[
  {
    "path": ".gitignore",
    "content": "*.img\n*.dtb\n*.lz4\n*.cpio\n*.zip\n*.pyc\nrd/bench.py\nrd/dhcpd.conf\nrd/init\nrd/usb.sh\nrd/config.sh\n"
  },
  {
    "path": "LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2020 Danny Lin <danny@kdrag0n.dev>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# freqbench\n\n![Power usage in mW per frequency per cluster for Qualcomm Snapdragon 835, 855, and 765G](https://user-images.githubusercontent.com/7930239/101429518-fb3a3a80-38b7-11eb-8005-5edf2d12a4d6.png)\n\nfreqbench is a comprehensive CPU benchmark that benchmarks each CPU frequency step on each frequency scaling domain (e.g. ARM DynamIQ/big.LITTLE cluster). It is based on a minimal Alpine Linux userspace with the [EEMBC CoreMark](https://www.eembc.org/coremark/) workload and a Python benchmark coordinator.\n\nResults include:\n\n- Performance (CoreMark scores)\n- Performance efficiency (CoreMarks per MHz)\n- Power usage (in milliwatts)\n- Energy usage (in millijoules and joules)\n- Energy efficiency (ULPMark-CM scores: iterations per second per millijoule of energy used)\n- Baseline power usage\n- Time elapsed\n- CPU frequency scaling stats during the benchmark (for validation)\n- Diagnostic data (logs, kernel version, kernel command line, interrupts, processes)\n- Raw power samples in machine-readable JSON format (for postprocessing)\n\n## Why?\n\nA benchmark like this can be useful for many reasons:\n\n- Creating energy models for EAS (Energy-Aware Scheduling)\n- Correcting inaccurate EAS energy models\n- Analyzing performance and power trends\n- Comparing efficiency across SoC and CPU generations\n- Improving performance and battery life of mobile devices by utilizing the race-to-idle phenomenon with efficient frequencies\n\n## Usage\n\nIt is possible to use freqbench with a stock kernel, but a custom kernel is **highly recommended** for accuracy. Stock OEM kernels are almost always missing features that the benchmark coordinator relies on for maximum accuracy. Custom kernel results are eligible for high accuracy classification, while stock kernel results are limited to low accuracy. Use a stock kernel at your own risk.\n\n### Custom kernel (recommended)\n\nSet the following kernel config options:\n\n```bash\nCONFIG_NO_HZ_FULL=y\nCONFIG_CPU_FREQ_TIMES=n  # may not exist\nCONFIG_CPU_FREQ_GOV_USERSPACE=y\nCONFIG_HZ_100=y\n```\n\nExample commit: [kirin_defconfig: Configure for freqbench](https://github.com/kdrag0n/proton_zf6/commit/59d24abf40dec)\n\nIf you have any commits that prevent userspace from controlling CPU affinities and utilization, frequencies, or anything of the sort, revert them for the benchmark to work properly. Here are some common examples of such commits in downstream kernels and their corresponding reverts:\n\n- [Performance-critical IRQs and kthreads](https://github.com/kdrag0n/proton_kernel_wahoo/commit/29b315cd5f3a6)\n- [Existing efficient frequency tables](https://github.com/kdrag0n/proton_kernel_wahoo/commit/9b98ee3fabd14)\n- [Preventing userspace from setting minimum CPU frequencies](https://github.com/kdrag0n/proton_kernel_wahoo/commit/d9d2fe54e87f9)\n- [Ratelimiting fuel gauge queries](https://github.com/kdrag0n/proton_kernel_wahoo/commit/87ac3f89c7392)\n\nExample freqbench kernel adaptations:\n\n- [Pixel 2, msm-4.4](https://github.com/kdrag0n/proton_kernel_wahoo/commits/alpine-fbench)\n- [ZenFone 6, msm-4.14](https://github.com/kdrag0n/proton_zf6/commits/alpine-fbench-basic-example)\n- [Pixel 5, msm-4.19](https://github.com/kdrag0n/proton_kernel_redbull/commits/alpine-fbench-basic-example) (this device uses boot image v3, so it follows the manual boot image guide below)\n\nCompile and flash your new kernel. Note that Android will not work properly on this kernel, so make sure you take a backup of your old boot image to restore later.\n\nIf necessary, adjust the config parameters in `config.sh`. Most modern devices will not need any changes. Run `pack-zip.sh` and flash `freqbench-installer.zip`.\n\nUnplug the device immediately, before the device starts booting. Do not try to wait for it to finish booting. Leaving the device plugged in will invalidate all power results.\n\nFinally, wait until the device reboots itself. Do not touch the device, any of its buttons, or plug/unplug it during the test. It will be frozen on the bootloader splash screen; do not assume that it is broken. The benchmark is expected to take a long time; 1 hour is reasonable for a slower CPU.\n\nOnce the benchmark is done, retrieve the results from `/cache/freqbench` if your device has a cache partition, or `/persist/freqbench` otherwise (newer devices with A/B partitions don't have a cache partition).\n\nIf you are able to retrieve results, **please consider [contributing your results](#contributing-results)!** It's very helpful for me to see how well freqbench is working, and enables anyone to analyze results across different SoCs that they don't have.\n\nIf you have any problems, check the troubleshooting section before opening an issue.\n\n### Manual boot image creation\n\nManually creating a new boot image with the kernel and ramdisk is only for advanced users. Use the AnyKernel3 installer unless you have good reason to do this.\n\nAdditional kernel config options:\n\n```bash\nCONFIG_CMDLINE=\"rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on\"\nCONFIG_CMDLINE_EXTEND=y\n```\n\nIf you don't have 8 CPU cores, adjust `0-7` to `0-<core count - 1>` and `1-7` to `1-<core count - 1>` where appropriate. Single-core CPUs are not supported. Be careful when adjusting the CPU sets as `rcu_nocbs` starts at CPU 0 while all other parameters start at CPU 1.\n\nCreate a boot image with your modified kernel and the freqbench ramdisk:\n\nFor boot image v0/v1 devices:\n\n```bash\ncd boot-v1\n./unpack.sh path/to/normal/boot.img\n./pack.sh\n# New boot image will be created as new.img\n```\n\nFor boot image v3 devices:\n\n```bash\n# Extract values from boot.img and update pack-img.sh accordingly\n./pack-img.sh\n# New boot image will be created as bench.img\n```\n\nAfter that, boot the modified image with `fastboot boot` if your device supports it, or flash it to the boot/recovery partition and boot that manually.\n\n## Results\n\nAfter the benchmark finishes, results can be found in `/cache/freqbench`, `/persist/freqbench`, or `/mnt/vendor/persist/freqbench`, in that order of preference. The first path that exists on your device will be used. Human-readable results, raw machine-readable JSON data, and diagnostic information are included for analysis.\n\nIf you got this far, please consider contributing your results to help freqbench evolve and gather data about different SoCs:\n\n### Contributing results\n\nIf you run the benchmark on a SoC that is not [already included](https://github.com/kdrag0n/freqbench/tree/master/results), **please contribute your results!** It's very helpful for me to see how well freqbench is working, and enables anyone to analyze results across different SoCs that they don't have.\n\nContributing your results is easy:\n\n1. [Fork this repository](https://github.com/kdrag0n/freqbench/)\n2. Add your **entire results folder** (not just one file from it) to `results/socname/main`, replacing `socname` with the model name of your SoC in lowercase\n3. [Open a pull request](https://github.com/kdrag0n/freqbench/compare)\n\nIf you don't know your SoC's model name, search the name of your SoC (e.g. [Snapdragon 855](https://www.qualcomm.com/products/snapdragon-855-mobile-platform)) and find the part number from the SoC manufacturer. You can also get it from your kernel source code and/or `device.txt` or `cpuinfo.txt` in the freqbench results. If you are still unsure, feel free to open an issue or guess the name.\n\nExample names:\n\n- `sm8150`\n- `sm8150ac`\n- `sm7250ab`\n- `exynos8895`\n- `mt6889`\n\nIdentifiable information such as the device serial number is automatically redacted by freqbench, so it should not be a problem.\n\nDon't worry about getting something wrong; I would much rather have results submitted with mistakes than nothing at all.\n\n## Post-processing\n\nSeveral post-processing scripts, all written in Python and some using `matplotlib`, are available:\n\n### Legacy energy model\n\nCreate a legacy EAS energy model for use with older kernels.\n\nOptional argument after path to results: `key_type/value_type`\n\nKey types:\n\n- Frequency (default) - looks like `652800` or `2323200`\n- Capacity - looks like `139` or `1024`\n\nYou must use the correct key type for your kernel. When in doubt, refer to your original energy model and check which one the numbers look more like.\n\nIn general, downstream Qualcomm kernels will use the following key types depending on version:\n\n- 3.18: capacity\n- 4.4: capacity\n- 4.9: frequency\n- 4.14: frequency\n- 4.19: N/A (uses simplified energy model instead)\n\nModifying your kernel to switch from one to the other is left as an exercise for the reader.\n\nValue types:\n\n- Power (default)\n- Energy (experimental, not recommended)\n\nDo not change the value type unless you know what you're doing. The energy type only exists for testing purposes; do not expect it to work properly.\n\nOnce you have a full energy model generated, pick out the parts you need and incorporate them into your SoC device tree. In general, kernels 4.19 need `capacity-dmips-mhz`, while older kernels need `efficiency` when it comes to the contents of the CPU sections.\n\nIf you have an existing energy model that you want to use for idle and cluster costs, add it as an argument.\n\nExample usage: `./legacy_energy_model.py results.json cap/power old_model.dtsi`\n\n### Simplified energy model\n\nCreate a simplified EAS energy model for use with newer kernels.\n\nBecause voltages defined by the CPU frequency scaling driver cannot easily be accessed from userspace, you will need to provide them. Pass the voltage for each frequency step as an argument: `cpu#.khz=microvolts`\n\nFor Qualcomm SoCs on the msm-4.19 kernel, voltages can be obtained by booting the kernel (with or without freqbench doesn't matter, as long as you can get kernel logs) with [this commit](https://github.com/kdrag0n/proton_kernel_redbull/commit/8db0557716a4) and searching for lines containing `volt=` in the kernel log.\n\nFor msm-4.9 and msm-4.14, the process is the same but with [this commit](https://github.com/kdrag0n/proton_zf6/commit/f7cc2d654f1b9) and searching for `open_loop_voltage` instead.\n\nExample usage: `./simplified_energy_model.py results.json 1.300000=580000 1.576000=580000 1.614400=580000 1.864000=644000 1.1075200=708000 1.1363200=788000 1.1516800=860000 1.1651200=888000 1.1804800=968000 6.652800=624000 6.940800=672000 6.1152000=704000 6.1478400=752000 6.1728000=820000 6.1900800=864000 6.2092800=916000 6.2208000=948000 7.806400=564000 7.1094400=624000 7.1401600=696000 7.1766400=776000 7.1996800=836000 7.2188800=888000 7.2304000=916000 7.2400000=940000`\n\n### Efficient frequencies (experimental)\n\nDerive a list of efficient frequencies for each cluster and create a new results.json with only those frequencies included.\n\nNote that this script is **experimental** and may not produce optimal results. Manual tuning of the resulting frequency tables is recommended.\n\nExample usage: `./efficient_freqs.py results.json eff_results.json`\n\n### Filter frequencies\n\nCreate a new results.json with only the specified frequencies included.\n\nExample usage: `./filter_freqs.py results.json filtered_results.json 1.1516800 1.1804800 6.1478400 6.1728000 6.2208000 7.1766400 7.2188800 7.2304000 7.2400000`\n\n### Cross-CPU cluster graph\n\n![Performance (iter/s) across 835, 855, and 765G](https://user-images.githubusercontent.com/7930239/101309012-19446400-3800-11eb-8418-bb9293b08871.png)\n\nGraph a value for each cluster across different SoCs/CPUs.\n\nArguments:\n\n- Add a SoC: `SoC-1:soc1/results.json`\n- Specify the value to graph: `load/value` (load is idle/active)\n- Set a flag: `+flagname` (soccolor, minscl)\n\nExample usage: `./cross_cpu_cluster_graph.py 835:results/p2/main/results.json 855:results/zf6/main/results.json 855+:results/rog2/main/results.json 765G:results/p5/new-final/results.json active/power_mean +soccolor +minscl`\n\n### Unified cluster graph\n\n![Performance (iter/s) across 765G little, big, and prime clusters](https://user-images.githubusercontent.com/7930239/101309506-712f9a80-3801-11eb-9ae6-8dba84f063d4.png)\n\nGraph a value for each cluster within the same SoC/CPU.\n\nExample usage: `./unified_cluster_graph.py results.json coremark_score`\n\n### Unified cluster column\n\nExtract a value for each cluster within the same SoC/CPU and write the results into a CSV file.\n\nExample usage: `./unified_cluster_csv.py results.json coremark_score cm_scores.csv`\n\n## Troubleshooting\n\n### Kernel panics on boot\n\nIf your kernel panics on boot, disable `CONFIG_CPU_FREQ_STAT`. If that causes the kernel to fail to compile, cherry-pick [cpufreq: Fix build with stats disabled](https://github.com/kdrag0n/proton_kernel_wahoo/commit/21e76d090e092).\n\n### Results vary too much\n\nCheck kernel.log, pre- and post-bench interrupts, running processes, and cpufreq stats from the results directory to diagnose the issue.\n\n### It's still running after an hour\n\nIf you have a slow CPU with a lot of frequency steps, this is not entirely unreasonable.\n\n### I want to debug it while it's running\n\nfreqbench offers interactive debugging via SSH over virtual USB Ethernet; the device acts as a USB Ethernet adapter and exposes an SSH server on the internal network. This feature can be enabled with the `USB_DEBUG` option in `config.sh`. It is disabled by default to avoid unnecessary USB setup that may influence benchmark results, so keeping it enabled for a final benchmark run is not recommended.\n\n`CONFIG_USB_CONFIGFS_RNDIS` must be enabled for this feature to work. If your kernel does not have or use configfs for USB configuration, it will not work regardless of whether you have the RNDIS function enabled.\n\nOnce it's enabled, connect your device to a computer over USB. You should see something like this in your kernel logs if you are running Linux:\n\n```log\n[7064379.627645] usb 7-3: new high-speed USB device number 114 using xhci_hcd\n[7064379.772208] usb 7-3: New USB device found, idVendor=0b05, idProduct=4daf, bcdDevice= 4.14\n[7064379.772210] usb 7-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3\n[7064379.772211] usb 7-3: Product: Alpine GNU/Linux\n[7064379.772211] usb 7-3: Manufacturer: Linux\n[7064379.772212] usb 7-3: SerialNumber: ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null root@10.15.19.82\n[7064379.818904] rndis_host 7-3:1.0 usb0: register 'rndis_host' at usb-0000:47:00.1-3, RNDIS device, da:34:ab:99:c5:81\n[7064379.870018] rndis_host 7-3:1.0 enp71s0f1u3: renamed from usb0\n```\n\nRun the SSH command in the serial number field to open a shell to the device. The password is empty, so just press enter when asked to provide a password.\n"
  },
  {
    "path": "anykernel/LICENSE",
    "content": "## AnyKernel3 (AK3), and AnyKernel2/AnyKernel 2.0 (AK2) Scripts License:\n\n    AnyKernel (versions 2.0/2 and later) Android image modifying scripts.\n    Copyright (c) 2019 Chris Renshaw (osm0sis @ xda-developers),\n    and additional contributors per readily available commit history/credits.\n    All rights reserved.\n\n    Redistribution and use in source and binary forms, with or without\n    modification, are permitted (subject to the limitations in the disclaimer\n    below) provided that the following conditions are met:\n\n       * Redistributions of source code must retain the above copyright notice,\n         this list of conditions and the following disclaimer.\n\n       * Redistributions in binary form must reproduce the above copyright\n         notice, this list of conditions and the following disclaimer in the\n         documentation and/or other materials provided with the distribution.\n\n       * Neither the name of the copyright holder nor the names of its\n         contributors may be used to endorse or promote products derived from this\n         software without specific prior written permission.\n\n    NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY\n    THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n    CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n    PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\n    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n    BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER\n    IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n    ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n    POSSIBILITY OF SUCH DAMAGE.\n\n\n## Included Binary Licenses:\n\nmagiskboot, magiskpolicy (Magisk): GPLv3+\n\n    Magisk, including all git submodules are free software:\n    you can redistribute it and/or modify it under the terms of the\n    GNU General Public License as published by the Free Software Foundation,\n    either version 3 of the License, or (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n    Per Section 6(d), official compiled binaries from unmodified source:\n    https://github.com/topjohnwu/Magisk\n\nbusybox: GPLv2\n\n    BusyBox is distributed under version 2 of the General Public\n    License. Version 2 is the only version of this license which this\n    version of BusyBox (or modified versions derived from this one) may\n    be distributed under.\n\n    This program is free software; you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    Per Section 3(b), self-compiled binary from modified source:\n    https://git.busybox.net/busybox/\n    https://github.com/osm0sis/android-busybox-ndk\n    (pre-patched source tree used to build available upon request)\n\n\n## Optional Binary Licenses:\n\nmkbootfs, mkbootimg: Apache License 2.0\nmkmtkhdr: Apache License 2.0, implied (AOSP mkbootimg derived)\nboot_signer*.jar: Apache License 2.0\n\n    Copyright (c) 2008 The Android Open Source Project\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n         http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n\n    Source not required, however, respective sources are provided:\n    https://github.com/osm0sis/mkbootfs\n    https://github.com/osm0sis/mkbootimg\n    https://github.com/osm0sis/mkmtkhdr\n    https://android.googlesource.com/platform/system/extras/+/master\n\nflash_erase, nanddump, nandwrite (mtd-utils): GPLv2\ndumpimage, mkimage (U-Boot): GPLv2+\nmboot: GPLv2 (Intel mboot.py derived)\n\n    Copyright their respective authors, (linked below).\n\n    This program is free software; you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    Per Section 3(b), self-compiled binaries from unmodified respective sources:\n    http://git.infradead.org/mtd-utils.git\n    https://gitlab.denx.de/u-boot/u-boot\n    https://github.com/osm0sis/mboot\n\nfutility: BSD 3-Clause License (Chromium OS)\nunpackelf, elftool: BSD 3-Clause License, implied (Sony mkelf.py derived)\n\n    Copyright their respective authors, (linked below).\n\n    Redistribution and use in source and binary forms, with or without\n    modification, are permitted provided that the following conditions are\n    met:\n       * Redistributions of source code must retain the above copyright\n         notice, this list of conditions and the following disclaimer.\n       * Redistributions in binary form must reproduce the above copyright\n         notice, this list of conditions and the following disclaimer in\n         the documentation and/or other materials provided with the\n         distribution.\n       * Neither the name of the copyright holder nor the names of its\n         contributors may be used to endorse or promote products derived\n         from this software without specific prior written permission.\n\n    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n    \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n    A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n    OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n    SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n    LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n    DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n    THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n    OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n    Source not required, however, respective sources are provided:\n    https://github.com/osm0sis/futility\n    https://github.com/osm0sis/unpackelf\n    https://github.com/osm0sis/elftool\n    (https://github.com/sonyxperiadev/device-sony-lt26/tree/master/tools)\n\nrkcrc: BSD 2-Clause License\n\n    Copyright (c) 2010, 2011 Fukaumi Naoki\n    Copyright (c) 2013 Ivo van Poorten\n    All rights reserved.\n\n    Redistribution and use in source and binary forms, with or without\n    modification, are permitted provided that the following conditions are\n    met:\n    1. Redistributions of source code must retain the above copyright\n       notice, this list of conditions and the following disclaimer.\n    2. Redistributions in binary form must reproduce the above copyright\n       notice, this list of conditions and the following disclaimer in the\n       documentation and/or other materials provided with the distribution.\n\n    THIS SOFTWARE IS PROVIDED BY THE AUTHOR \"AS IS\" AND ANY EXPRESS OR\n    IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n    OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n    IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n    INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n    NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n    DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n    THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n    THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n    Source not required, however, respective source is provided:\n    https://github.com/linux-rockchip/rkflashtool\n\n\n## Additional Build Scripts for Listed Binaries (where used):\n\nosm0sis' Odds and Ends Thread - Knowledge Base:\nhttps://forum.xda-developers.com/showthread.php?p=53554719\n\n"
  },
  {
    "path": "anykernel/META-INF/com/google/android/update-binary",
    "content": "#!/sbin/sh\n# AnyKernel3 Backend (DO NOT CHANGE)\n# osm0sis @ xda-developers\n\nOUTFD=/proc/self/fd/$2;\nZIPFILE=\"$3\";\n\nBOOTMODE=false;\nps | grep zygote | grep -v grep >/dev/null && BOOTMODE=true;\n$BOOTMODE || ps -A 2>/dev/null | grep zygote | grep -v grep >/dev/null && BOOTMODE=true;\n\nDIR=/sdcard;\n$BOOTMODE || DIR=$(dirname \"$ZIPFILE\");\n\n[ -d /postinstall/tmp ] && POSTINSTALL=/postinstall;\n[ \"$AKHOME\" ] || AKHOME=$POSTINSTALL/tmp/anykernel;\n[ \"$ANDROID_ROOT\" ] || ANDROID_ROOT=/system;\n\nui_print() {\n  until [ ! \"$1\" ]; do\n    echo \"ui_print $1\n      ui_print\" >> $OUTFD;\n    shift;\n  done;\n}\nui_printfile() {\n  while IFS='' read -r line || $BB [[ -n \"$line\" ]]; do\n    ui_print \"$line\";\n  done < $1;\n}\nshow_progress() { echo \"progress $1 $2\" >> $OUTFD; }\nfile_getprop() { $BB grep \"^$2=\" \"$1\" | $BB cut -d= -f2-; }\nfind_slot() {\n  local slot=$(getprop ro.boot.slot_suffix 2>/dev/null);\n  [ \"$slot\" ] || slot=$($BB grep -o 'androidboot.slot_suffix=.*$' /proc/cmdline | $BB cut -d\\  -f1 | $BB cut -d= -f2);\n  if [ ! \"$slot\" ]; then\n    slot=$(getprop ro.boot.slot 2>/dev/null);\n    [ \"$slot\" ] || slot=$($BB grep -o 'androidboot.slot=.*$' /proc/cmdline | $BB cut -d\\  -f1 | $BB cut -d= -f2);\n    [ \"$slot\" ] && slot=_$slot;\n  fi;\n  [ \"$slot\" ] && echo \"$slot\";\n}\nsetup_mountpoint() {\n  [ -L $1 ] && $BB mv -f $1 ${1}_link;\n  if [ ! -d $1 ]; then\n    rm -f $1;\n    mkdir -p $1;\n  fi;\n}\nis_mounted() { $BB mount | $BB grep -q \" $1 \"; }\nmount_apex() {\n  [ -d /system_root/system/apex ] || return 1;\n  local apex dest loop minorx num;\n  setup_mountpoint /apex;\n  minorx=1;\n  [ -e /dev/block/loop1 ] && minorx=$($BB ls -l /dev/block/loop1 | $BB awk '{ print $6 }');\n  num=0;\n  for apex in /system_root/system/apex/*; do\n    dest=/apex/$($BB basename $apex .apex);\n    [ \"$dest\" == /apex/com.android.runtime.release ] && dest=/apex/com.android.runtime;\n    $BB mkdir -p $dest;\n    case $apex in\n      *.apex)\n        $BB unzip -qo $apex apex_payload.img -d /apex;\n        $BB mv -f /apex/apex_payload.img $dest.img;\n        $BB mount -t ext4 -o ro,noatime $dest.img $dest 2>/dev/null;\n        if [ $? != 0 ]; then\n          while [ $num -lt 64 ]; do\n            loop=/dev/block/loop$num;\n            ($BB mknod $loop b 7 $((num * minorx));\n            $BB losetup $loop $dest.img) 2>/dev/null;\n            num=$((num + 1));\n            $BB losetup $loop | $BB grep -q $dest.img && break;\n          done;\n          $BB mount -t ext4 -o ro,loop,noatime $loop $dest;\n          if [ $? != 0 ]; then\n            $BB losetup -d $loop 2>/dev/null;\n          fi;\n        fi;\n      ;;\n      *) $BB mount -o bind $apex $dest;;\n    esac;\n  done;\n  export ANDROID_RUNTIME_ROOT=/apex/com.android.runtime;\n  export ANDROID_TZDATA_ROOT=/apex/com.android.tzdata;\n  export BOOTCLASSPATH=/apex/com.android.runtime/javalib/core-oj.jar:/apex/com.android.runtime/javalib/core-libart.jar:/apex/com.android.runtime/javalib/okhttp.jar:/apex/com.android.runtime/javalib/bouncycastle.jar:/apex/com.android.runtime/javalib/apache-xml.jar:/system/framework/framework.jar:/system/framework/ext.jar:/system/framework/telephony-common.jar:/system/framework/voip-common.jar:/system/framework/ims-common.jar:/system/framework/android.test.base.jar:/system/framework/telephony-ext.jar:/apex/com.android.conscrypt/javalib/conscrypt.jar:/apex/com.android.media/javalib/updatable-media.jar;\n}\numount_apex() {\n  [ -d /apex ] || return 1;\n  local dest loop;\n  for dest in $($BB find /apex -type d -mindepth 1 -maxdepth 1); do\n    if [ -f $dest.img ]; then\n      loop=$($BB mount | $BB grep $dest | $BB cut -d\\  -f1);\n    fi;\n    ($BB umount -l $dest;\n    $BB losetup -d $loop) 2>/dev/null;\n  done;\n  $BB rm -rf /apex 2>/dev/null;\n  unset ANDROID_RUNTIME_ROOT ANDROID_TZDATA_ROOT BOOTCLASSPATH;\n}\nmount_all() {\n  if ! is_mounted /cache; then\n    $BB mount /cache 2>/dev/null && UMOUNT_CACHE=1;\n  fi;\n  if ! is_mounted /data; then\n    $BB mount /data && UMOUNT_DATA=1;\n  fi;\n  ($BB mount -o ro -t auto /vendor;\n  $BB mount -o ro -t auto /product;\n  $BB mount -o ro -t auto /persist) 2>/dev/null;\n  setup_mountpoint $ANDROID_ROOT;\n  if ! is_mounted $ANDROID_ROOT; then\n    $BB mount -o ro -t auto $ANDROID_ROOT 2>/dev/null;\n  fi;\n  case $ANDROID_ROOT in\n    /system_root) setup_mountpoint /system;;\n    /system)\n      if ! is_mounted /system && ! is_mounted /system_root; then\n        setup_mountpoint /system_root;\n        $BB mount -o ro -t auto /system_root;\n      elif [ -f /system/system/build.prop ]; then\n        setup_mountpoint /system_root;\n        $BB mount --move /system /system_root;\n      fi;\n      if [ $? != 0 ]; then\n        ($BB umount /system;\n        $BB umount -l /system) 2>/dev/null;\n        if [ -d /dev/block/mapper ]; then\n          [ -e /dev/block/mapper/system ] || local slot=$(find_slot);\n          $BB mount -o ro -t auto /dev/block/mapper/vendor$slot /vendor;\n          $BB mount -o ro -t auto /dev/block/mapper/product$slot /product 2>/dev/null;\n          $BB mount -o ro -t auto /dev/block/mapper/system$slot /system_root;\n        else\n          [ -e /dev/block/bootdevice/by-name/system ] || local slot=$(find_slot);\n          ($BB mount -o ro -t auto /dev/block/bootdevice/by-name/vendor$slot /vendor;\n          $BB mount -o ro -t auto /dev/block/bootdevice/by-name/product$slot /product;\n          $BB mount -o ro -t auto /dev/block/bootdevice/by-name/persist$slot /persist) 2>/dev/null;\n          $BB mount -o ro -t auto /dev/block/bootdevice/by-name/system$slot /system_root;\n        fi;\n      fi;\n    ;;\n  esac;\n  if is_mounted /system_root; then\n    mount_apex;\n    if [ -f /system_root/build.prop ]; then\n      $BB mount -o bind /system_root /system;\n    else\n      $BB mount -o bind /system_root/system /system;\n    fi;\n  fi;\n}\numount_all() {\n  local mount;\n  (if [ ! -d /postinstall/tmp ]; then\n    $BB umount /system;\n    $BB umount -l /system;\n    if [ -e /system_root ]; then\n      $BB umount /system_root;\n      $BB umount -l /system_root;\n    fi;\n  fi;\n  umount_apex;\n  umount /vendor; # busybox umount /vendor breaks recovery on some devices\n  umount -l /vendor;\n  for mount in /mnt/system /mnt/vendor /product /mnt/product /persist; do\n    $BB umount $mount;\n    $BB umount -l $mount;\n  done;\n  if [ \"$UMOUNT_DATA\" ]; then\n    $BB umount /data;\n    $BB umount -l /data;\n  fi;\n  if [ \"$UMOUNT_CACHE\" ]; then\n    $BB umount /cache;\n    $BB umount -l /cache;\n  fi) 2>/dev/null;\n}\nsetup_env() {\n  $BOOTMODE && return 1;\n  $BB mount -o bind /dev/urandom /dev/random;\n  if [ -L /etc ]; then\n    setup_mountpoint /etc;\n    $BB cp -af /etc_link/* /etc;\n    $BB sed -i 's; / ; /system_root ;' /etc/fstab;\n  fi;\n  umount_all;\n  mount_all;\n  OLD_LD_PATH=$LD_LIBRARY_PATH;\n  OLD_LD_PRE=$LD_PRELOAD;\n  OLD_LD_CFG=$LD_CONFIG_FILE;\n  unset LD_LIBRARY_PATH LD_PRELOAD LD_CONFIG_FILE;\n  if [ ! \"$(getprop 2>/dev/null)\" ]; then\n    getprop() {\n      local propdir propfile propval;\n      for propdir in / /system_root /system /vendor /odm /product; do\n        for propfile in default.prop build.prop; do\n          if [ \"$propval\" ]; then\n            break 2;\n          else\n            propval=\"$(file_getprop $propdir/$propfile $1 2>/dev/null)\";\n          fi;\n        done;\n      done;\n      if [ \"$propval\" ]; then\n        echo \"$propval\";\n      else\n        echo \"\";\n      fi;\n    }\n  elif [ ! \"$(getprop ro.build.type 2>/dev/null)\" ]; then\n    getprop() {\n      ($(which getprop) | $BB grep \"$1\" | $BB cut -d[ -f3 | $BB cut -d] -f1) 2>/dev/null;\n    }\n  fi;\n}\nrestore_env() {\n  $BOOTMODE && return 1;\n  local dir;\n  unset -f getprop;\n  [ \"$OLD_LD_PATH\" ] && export LD_LIBRARY_PATH=$OLD_LD_PATH;\n  [ \"$OLD_LD_PRE\" ] && export LD_PRELOAD=$OLD_LD_PRE;\n  [ \"$OLD_LD_CFG\" ] && export LD_CONFIG_FILE=$OLD_LD_CFG;\n  umount_all;\n  [ -L /etc_link ] && $BB rm -rf /etc/*;\n  (for dir in /apex /system /system_root /etc; do\n    if [ -L \"${dir}_link\" ]; then\n      rmdir $dir;\n      $BB mv -f ${dir}_link $dir;\n    fi;\n  done;\n  $BB umount -l /dev/random) 2>/dev/null;\n}\ndebugging() {\n  case $(basename \"$ZIPFILE\" .zip) in\n    *-debugging)\n      ui_print \" \" \"Creating debugging archive in $DIR...\";\n      [ -f /tmp/recovery.log ] && local log=/tmp/recovery.log;\n      $BB tar -czf \"$DIR/anykernel3-$(date +%Y-%m-%d_%H%M%S)-debug.tgz\" $AKHOME $log;\n    ;;\n  esac;\n}\ncleanup() {\n  cd $(dirname $AKHOME);\n  rm -rf $AKHOME;\n}\nabort() {\n  ui_print \"$@\";\n  debugging;\n  restore_env;\n  if [ ! -f anykernel.sh -o \"$(file_getprop anykernel.sh do.cleanuponabort 2>/dev/null)\" == 1 ]; then\n    cleanup;\n  fi;\n  exit 1;\n}\ndo_devicecheck() {\n  [ \"$(file_getprop anykernel.sh do.devicecheck)\" == 1 ] || return 1;\n  local device devicename match product testname vendordevice vendorproduct;\n  ui_print \"Checking device...\";\n  device=$(getprop ro.product.device 2>/dev/null);\n  product=$(getprop ro.build.product 2>/dev/null);\n  vendordevice=$(getprop ro.product.vendor.device 2>/dev/null);\n  vendorproduct=$(getprop ro.vendor.product.device 2>/dev/null);\n  for testname in $(file_getprop anykernel.sh 'device.name.*'); do\n    for devicename in $device $product $vendordevice $vendorproduct; do\n      if [ \"$devicename\" == \"$testname\" ]; then\n        ui_print \"$testname\" \" \";\n        match=1;\n        break 2;\n      fi;\n    done;\n  done;\n  if [ ! \"$match\" ]; then\n    abort \" \" \"Unsupported device. Aborting...\";\n  fi;\n}\nint2ver() {\n  if $BB [ \"$1\" -eq \"$1\" ] 2>/dev/null; then\n    echo \"$1.0.0\";\n  elif [ ! \"$(echo \"$1\" | $BB cut -d. -f3)\" ]; then\n    echo \"$1.0\";\n  else\n    echo \"$1\";\n  fi;\n}\ndo_versioncheck() {\n  [ \"$(file_getprop anykernel.sh supported.versions)\" ] || return 1;\n  local android_ver hi_ver lo_ver parsed_ver supported supported_ver;\n  ui_print \"Checking Android version...\";\n  supported_ver=$(file_getprop anykernel.sh supported.versions | $BB tr -d '[:space:]');\n  android_ver=$(file_getprop /system/build.prop ro.build.version.release);\n  parsed_ver=$(int2ver $android_ver);\n  if echo $supported_ver | $BB grep -q '-'; then\n    lo_ver=$(int2ver \"$(echo $supported_ver | $BB cut -d- -f1)\");\n    hi_ver=$(int2ver \"$(echo $supported_ver | $BB cut -d- -f2)\");\n    if echo -e \"$hi_ver\\n$lo_ver\\n$parsed_ver\" | $BB sort -g | $BB grep -n \"$parsed_ver\" | $BB grep -q '^2:'; then\n      supported=1;\n    fi;\n  else\n    for ver in $(echo $supported_ver | $BB sed 's;,; ;g'); do\n      if [ \"$(int2ver $ver)\" == \"$parsed_ver\" ]; then\n        supported=1;\n        break;\n      fi;\n    done;\n  fi;\n  if [ \"$supported\" ]; then\n    ui_print \"$android_ver\" \" \";\n  else\n    abort \" \" \"Unsupported Android version. Aborting...\";\n  fi;\n}\ndo_levelcheck() {\n  [ \"$(file_getprop anykernel.sh supported.patchlevels)\" ] || return 1;\n  local android_lvl hi_lvl lo_lvl parsed_lvl supported_lvl;\n  ui_print \"Checking Android security patch level...\";\n  supported_lvl=$(file_getprop anykernel.sh supported.patchlevels | $BB grep -oE '[0-9]{4}-[0-9]{2}|-');\n  android_lvl=$(file_getprop /system/build.prop ro.build.version.security_patch);\n  parsed_lvl=$(echo $android_lvl | $BB grep -oE '[0-9]{4}-[0-9]{2}');\n  if echo $supported_lvl | $BB grep -q '^\\-'; then\n    lo_lvl=0000-00;\n    hi_lvl=$(echo $supported_lvl | $BB awk '{ print $2 }');\n  elif echo $supported_lvl | $BB grep -q ' - '; then\n    lo_lvl=$(echo $supported_lvl | $BB awk '{ print $1 }');\n    hi_lvl=$(echo $supported_lvl | $BB awk '{ print $3 }');\n  elif echo $supported_lvl | $BB grep -q '\\-$'; then\n    lo_lvl=$(echo $supported_lvl | $BB awk '{ print $1 }');\n    hi_lvl=9999-99;\n  fi;\n  if echo -e \"$hi_lvl\\n$lo_lvl\\n$parsed_lvl\" | $BB sort -g | $BB grep -n \"$parsed_lvl\" | $BB grep -q '^2:'; then\n    ui_print \"$android_lvl\" \" \";\n  else\n    abort \" \" \"Unsupported Android security patch level. Aborting...\";\n  fi;\n}\ndump_moduleinfo() {\ncat <<EOF > $1;\nname=AK3 Helper Module\nversion=$($BB awk '{ print $3 }' $AKHOME/vertmp) $($BB grep -oE '#.[0-9]' $AKHOME/vertmp)\nversionCode=1\nauthor=AnyKernel3\ndescription=$KERNEL_STRING\nEOF\n}\ndump_moduleremover() {\ncat <<'EOF' > $1;\n#!/system/bin/sh\nMODDIR=${0%/*};\nif [ \"$(cat /proc/version)\" != \"$(cat $MODDIR/version)\" ]; then\n  rm -rf $MODDIR;\nfi;\nEOF\n}\ndo_modules() {\n  [ \"$(file_getprop anykernel.sh do.modules)\" == 1 ] || return 1;\n  local block modcon moddir modtarget module slot umask;\n  if [ \"$(file_getprop anykernel.sh do.systemless)\" == 1 ]; then\n    cd $AKHOME/modules;\n    ui_print \" \" \"Creating kernel helper Magisk module...\";\n    if [ -d /data/adb/magisk -a -f $AKHOME/split_img/.magisk ]; then\n      umask=$(umask);\n      umask 022;\n      moddir=/data/adb/modules/ak3-helper;\n      rm -rf $moddir;\n      mkdir -p system $moddir;\n      ($BB mv -f product system;\n      $BB mv -f vendor system) 2>/dev/null;\n      $BB cp -rLf * $moddir;\n      dump_moduleinfo $moddir/module.prop;\n      dump_moduleremover $moddir/post-fs-data.sh;\n      cp -f $AKHOME/vertmp $moddir/version;\n      umask $umask;\n    else\n      ui_print \"Magisk installation not found. Skipped!\";\n    fi;\n  else\n    cd $AKHOME/modules;\n    ui_print \" \" \"Pushing modules...\";\n    if [ -d /dev/block/mapper ]; then\n      for block in system vendor product; do\n        for slot in \"\" _a _b; do\n          $BB blockdev --setrw /dev/block/mapper/$block$slot 2>/dev/null;\n        done;\n      done;\n    fi;\n    if [ ! -d /postinstall/tmp ]; then\n      $BB mount -o rw,remount -t auto /system;\n      ($BB mount -o rw,remount -t auto /vendor;\n      $BB mount -o rw,remount -t auto /product) 2>/dev/null;\n    fi;\n    for module in $(find . -name '*.ko'); do\n      modtarget=$POSTINSTALL$(echo $module | $BB cut -c2-);\n      if [ ! -e $modtarget ]; then\n        case $module in\n          */vendor/*) modcon=vendor;;\n          */product/*) modcon=product;;\n          *) modcon=system;;\n        esac;\n      fi;\n      if is_mounted $modtarget; then\n        $BB mount -o rw,remount -t auto $modtarget;\n      fi;\n      mkdir -p $(dirname $modtarget);\n      $BB cp -rLf $module $modtarget;\n      $BB chown 0:0 $modtarget;\n      $BB chmod 644 $modtarget;\n      if [ \"$modcon\" ]; then\n        chcon \"u:object_r:${modcon}_file:s0\" $modtarget;\n      fi;\n      if is_mounted $modtarget; then\n        $BB mount -o ro,remount -t auto $modtarget;\n      fi;\n    done;\n    if [ ! -d /postinstall/tmp ]; then\n      $BB mount -o ro,remount -t auto /system;\n      ($BB mount -o ro,remount -t auto /vendor;\n      $BB mount -o ro,remount -t auto /product) 2>/dev/null;\n    fi;\n  fi;\n  cd $AKHOME;\n}\n\nshow_progress 1.34 4;\nui_print \" \";\ncleanup;\nmkdir -p $AKHOME/bin;\ncd $AKHOME;\nunzip -o \"$ZIPFILE\";\nif [ $? != 0 -o ! \"$(ls tools)\" ]; then\n  abort \"Unzip failed. Aborting...\";\nfi;\nfor ARCH32 in x86 arm; do\n  if [ -d $AKHOME/tools/$ARCH32 ]; then\n    BB=$AKHOME/tools/$ARCH32/busybox;\n    chmod 755 $BB;\n    $BB >/dev/null 2>&1;\n    if [ $? == 0 ]; then\n      $BB mv -f $AKHOME/tools/$ARCH32/* $AKHOME/tools;\n      break;\n    fi;\n  fi;\ndone;\nBB=$AKHOME/tools/busybox;\nchmod 755 $BB;\n$BB chmod -R 755 tools bin;\n$BB --install -s bin;\nif [ $? != 0 -o -z \"$(ls bin)\" ]; then\n  abort \"Busybox setup failed. Aborting...\";\nfi;\n\nif [ -f banner ]; then\n  ui_printfile banner;\n  ui_print \" \" \" \";\nfi;\n\nKERNEL_STRING=\"$(file_getprop anykernel.sh kernel.string)\";\nui_print \"$KERNEL_STRING\";\nif [ -f version ]; then\n  ui_print \" \";\n  ui_printfile version;\n  ui_print \" \";\nfi;\nui_print \" \" \"AnyKernel3 by osm0sis @ xda-developers\" \" \" \" \";\n\nsetup_env;\n\ndo_devicecheck;\ndo_versioncheck;\ndo_levelcheck;\n\nui_print \"Installing...\";\nCORE=$($BB grep -oE 'ak.*core.sh' anykernel.sh);\n[ -f tools/$CORE ] || $BB ln -s $AKHOME/tools/ak*-core.sh $AKHOME/tools/$CORE;\nPATH=\"$AKHOME/bin:$PATH\" home=$AKHOME $BB ash anykernel.sh $2;\nif [ $? != 0 ]; then\n  abort;\nfi;\n\ndo_modules;\n\ndebugging;\nrestore_env;\n\nif [ \"$(file_getprop anykernel.sh do.cleanup)\" == 1 ]; then\n  cleanup;\nfi;\n\nui_print \" \" \" \" \"Done!\";\n"
  },
  {
    "path": "anykernel/META-INF/com/google/android/updater-script",
    "content": "#FLASHAFTERUPDATEV2\n# Dummy file; update-binary is a shell script.\n"
  },
  {
    "path": "anykernel/anykernel.sh",
    "content": "# AnyKernel3 Ramdisk Mod Script\n# osm0sis @ xda-developers\n\n## AnyKernel setup\n# begin properties\nproperties() { '\nkernel.string=freqbench - CPU benchmark by kdrag0n\ndo.devicecheck=0\ndo.modules=0\ndo.systemless=0\ndo.cleanup=1\ndo.cleanuponabort=0\nsupported.versions=\nsupported.patchlevels=\n'; } # end properties\n\n# shell variables\nblock=auto;\nis_slot_device=auto;\nramdisk_compression=auto;\n\n\n## AnyKernel methods (DO NOT CHANGE)\n# import patching functions/variables - see for reference\n. tools/ak3-core.sh;\n\n\n## AnyKernel install\nsplit_boot;\n\ncores=$(grep '^processor' /proc/cpuinfo | wc -l)\nall_cpus=0-$((cores - 1))\nbench_cpus=1-$((cores - 1))\npatch_cmdline rcu_nocbs rcu_nocbs=$all_cpus\npatch_cmdline isolcpus isolcpus=$bench_cpus\npatch_cmdline nohz_full nohz_full=$bench_cpus\npatch_cmdline loglevel loglevel=0\npatch_cmdline printk.devkmsg printk.devkmsg=on\npatch_cmdline skip_initramfs \"\"\n\nmv $home/rd-new.cpio.gz $home/ramdisk-new.cpio\n\nflash_boot;\n## end install\n\n"
  },
  {
    "path": "anykernel/tools/ak3-core.sh",
    "content": "### AnyKernel methods (DO NOT CHANGE)\n## osm0sis @ xda-developers\n\nOUTFD=$1;\n\n# set up working directory variables\n[ \"$home\" ] || home=$PWD;\nbootimg=$home/boot.img;\nbin=$home/tools;\npatch=$home/patch;\nramdisk=$home/ramdisk;\nsplit_img=$home/split_img;\n\n### output/testing functions:\n# ui_print \"<text>\" [...]\nui_print() {\n  until [ ! \"$1\" ]; do\n    echo \"ui_print $1\n      ui_print\" >> /proc/self/fd/$OUTFD;\n    shift;\n  done;\n}\n\n# abort [\"<text>\" [...]]\nabort() {\n  ui_print \" \" \"$@\";\n  exit 1;\n}\n\n# contains <string> <substring>\ncontains() {\n  [ \"${1#*$2}\" != \"$1\" ];\n}\n\n# file_getprop <file> <property>\nfile_getprop() {\n  grep \"^$2=\" \"$1\" | cut -d= -f2-;\n}\n###\n\n### file/directory attributes functions:\n# set_perm <owner> <group> <mode> <file> [<file2> ...]\nset_perm() {\n  local uid gid mod;\n  uid=$1; gid=$2; mod=$3;\n  shift 3;\n  chown $uid:$gid \"$@\" || chown $uid.$gid \"$@\";\n  chmod $mod \"$@\";\n}\n\n# set_perm_recursive <owner> <group> <dir_mode> <file_mode> <dir> [<dir2> ...]\nset_perm_recursive() {\n  local uid gid dmod fmod;\n  uid=$1; gid=$2; dmod=$3; fmod=$4;\n  shift 4;\n  while [ \"$1\" ]; do\n    chown -R $uid:$gid \"$1\" || chown -R $uid.$gid \"$1\";\n    find \"$1\" -type d -exec chmod $dmod {} +;\n    find \"$1\" -type f -exec chmod $fmod {} +;\n    shift;\n  done;\n}\n###\n\n### dump_boot functions:\n# split_boot (dump and split image only)\nsplit_boot() {\n  local dumpfail;\n\n  if [ ! -e \"$(echo $block | cut -d\\  -f1)\" ]; then\n    abort \"Invalid partition. Aborting...\";\n  fi;\n  if [ \"$(echo $block | grep ' ')\" ]; then\n    block=$(echo $block | cut -d\\  -f1);\n    customdd=$(echo $block | cut -d\\  -f2-);\n  elif [ ! \"$customdd\" ]; then\n    local customdd=\"bs=1048576\";\n  fi;\n  if [ -f \"$bin/nanddump\" ]; then\n    $bin/nanddump -f $bootimg $block;\n  else\n    dd if=$block of=$bootimg $customdd;\n  fi;\n  [ $? != 0 ] && dumpfail=1;\n\n  mkdir -p $split_img;\n  cd $split_img;\n  if [ -f \"$bin/unpackelf\" ] && $bin/unpackelf -i $bootimg -h -q 2>/dev/null; then\n    if [ -f \"$bin/elftool\" ]; then\n      mkdir elftool_out;\n      $bin/elftool unpack -i $bootimg -o elftool_out;\n    fi;\n    $bin/unpackelf -i $bootimg;\n    [ $? != 0 ] && dumpfail=1;\n    mv -f boot.img-zImage kernel.gz;\n    mv -f boot.img-ramdisk.cpio.gz ramdisk.cpio.gz;\n    mv -f boot.img-cmdline cmdline.txt 2>/dev/null;\n    if [ -f boot.img-dt -a ! -f \"$bin/elftool\" ]; then\n      case $(od -ta -An -N4 boot.img-dt | sed -e 's/ del//' -e 's/   //g') in\n        QCDT|ELF) mv -f boot.img-dt dt;;\n        *)\n          gzip -c kernel.gz > kernel.gz-dtb;\n          cat boot.img-dt >> kernel.gz-dtb;\n          rm -f boot.img-dt kernel.gz;\n        ;;\n      esac;\n    fi;\n  elif [ -f \"$bin/mboot\" ]; then\n    $bin/mboot -u -f $bootimg;\n  elif [ -f \"$bin/dumpimage\" ]; then\n    dd bs=$(($(printf '%d\\n' 0x$(hexdump -n 4 -s 12 -e '16/1 \"%02x\"\"\\n\"' $bootimg)) + 64)) count=1 conv=notrunc if=$bootimg of=boot-trimmed.img;\n    $bin/dumpimage -l boot-trimmed.img > header;\n    grep \"Name:\" header | cut -c15- > boot.img-name;\n    grep \"Type:\" header | cut -c15- | cut -d\\  -f1 > boot.img-arch;\n    grep \"Type:\" header | cut -c15- | cut -d\\  -f2 > boot.img-os;\n    grep \"Type:\" header | cut -c15- | cut -d\\  -f3 | cut -d- -f1 > boot.img-type;\n    grep \"Type:\" header | cut -d\\( -f2 | cut -d\\) -f1 | cut -d\\  -f1 | cut -d- -f1 > boot.img-comp;\n    grep \"Address:\" header | cut -c15- > boot.img-addr;\n    grep \"Point:\" header | cut -c15- > boot.img-ep;\n    $bin/dumpimage -p 0 -o kernel.gz boot-trimmed.img;\n    [ $? != 0 ] && dumpfail=1;\n    case $(cat boot.img-type) in\n      Multi) $bin/dumpimage -p 1 -o ramdisk.cpio.gz boot-trimmed.img;;\n      RAMDisk) mv -f kernel.gz ramdisk.cpio.gz;;\n    esac;\n  elif [ -f \"$bin/rkcrc\" ]; then\n    dd bs=4096 skip=8 iflag=skip_bytes conv=notrunc if=$bootimg of=ramdisk.cpio.gz;\n  else\n    $bin/magiskboot unpack -h $bootimg;\n    case $? in\n      1) dumpfail=1;;\n      2) touch chromeos;;\n    esac;\n  fi;\n\n  if [ $? != 0 -o \"$dumpfail\" ]; then\n    abort \"Dumping/splitting image failed. Aborting...\";\n  fi;\n  cd $home;\n}\n\n# unpack_ramdisk (extract ramdisk only)\nunpack_ramdisk() {\n  local comp;\n\n  cd $split_img;\n  if [ -f ramdisk.cpio.gz ]; then\n    if [ -f \"$bin/mkmtkhdr\" ]; then\n      mv -f ramdisk.cpio.gz ramdisk.cpio.gz-mtk;\n      dd bs=512 skip=1 conv=notrunc if=ramdisk.cpio.gz-mtk of=ramdisk.cpio.gz;\n    fi;\n    mv -f ramdisk.cpio.gz ramdisk.cpio;\n  fi;\n\n  if [ -f ramdisk.cpio ]; then\n    comp=$($bin/magiskboot decompress ramdisk.cpio 2>&1 | grep -v 'raw' | sed -n 's;.*\\[\\(.*\\)\\];\\1;p');\n  else\n    abort \"No ramdisk found to unpack. Aborting...\";\n  fi;\n  if [ \"$comp\" ]; then\n    mv -f ramdisk.cpio ramdisk.cpio.$comp;\n    $bin/magiskboot decompress ramdisk.cpio.$comp ramdisk.cpio;\n    if [ $? != 0 ]; then\n      echo \"Attempting ramdisk unpack with busybox $comp...\" >&2;\n      $comp -dc ramdisk.cpio.$comp > ramdisk.cpio;\n    fi;\n  fi;\n\n  [ -d $ramdisk ] && mv -f $ramdisk $home/rdtmp;\n  mkdir -p $ramdisk;\n  chmod 755 $ramdisk;\n\n  cd $ramdisk;\n  EXTRACT_UNSAFE_SYMLINKS=1 cpio -d -F $split_img/ramdisk.cpio -i;\n  if [ $? != 0 -o ! \"$(ls)\" ]; then\n    abort \"Unpacking ramdisk failed. Aborting...\";\n  fi;\n  if [ -d \"$home/rdtmp\" ]; then\n    cp -af $home/rdtmp/* .;\n  fi;\n}\n### dump_boot (dump and split image, then extract ramdisk)\ndump_boot() {\n  split_boot;\n  unpack_ramdisk;\n}\n###\n\n### write_boot functions:\n# repack_ramdisk (repack ramdisk only)\nrepack_ramdisk() {\n  local comp packfail mtktype;\n\n  cd $home;\n  case $ramdisk_compression in\n    auto|\"\") comp=$(ls $split_img/ramdisk.cpio.* 2>/dev/null | grep -v 'mtk' | rev | cut -d. -f1 | rev);;\n    none|cpio) comp=\"\";;\n    gz) comp=gzip;;\n    lzo) comp=lzop;;\n    bz2) comp=bzip2;;\n    lz4-l) comp=lz4_legacy;;\n    *) comp=$ramdisk_compression;;\n  esac;\n\n  if [ -f \"$bin/mkbootfs\" ]; then\n    $bin/mkbootfs $ramdisk > ramdisk-new.cpio;\n  else\n    cd $ramdisk;\n    find . | cpio -H newc -o > $home/ramdisk-new.cpio;\n  fi;\n  [ $? != 0 ] && packfail=1;\n\n  cd $home;\n  $bin/magiskboot cpio ramdisk-new.cpio test;\n  magisk_patched=$?;\n  [ $((magisk_patched & 3)) -eq 1 ] && $bin/magiskboot cpio ramdisk-new.cpio \"extract .backup/.magisk $split_img/.magisk\";\n  if [ \"$comp\" ]; then\n    $bin/magiskboot compress=$comp ramdisk-new.cpio;\n    if [ $? != 0 ]; then\n      echo \"Attempting ramdisk repack with busybox $comp...\" >&2;\n      $comp -9c ramdisk-new.cpio > ramdisk-new.cpio.$comp;\n      [ $? != 0 ] && packfail=1;\n      rm -f ramdisk-new.cpio;\n    fi;\n  fi;\n  if [ \"$packfail\" ]; then\n    abort \"Repacking ramdisk failed. Aborting...\";\n  fi;\n\n  if [ -f \"$bin/mkmtkhdr\" -a -f \"$split_img/boot.img-base\" ]; then\n    mtktype=$(od -ta -An -N8 -j8 $split_img/ramdisk.cpio.gz-mtk | sed -e 's/ nul//g' -e 's/   //g' | tr '[:upper:]' '[:lower:]');\n    case $mtktype in\n      rootfs|recovery) $bin/mkmtkhdr --$mtktype ramdisk-new.cpio*;;\n    esac;\n  fi;\n}\n\n# flash_boot (build, sign and write image only)\nflash_boot() {\n  local varlist i kernel ramdisk fdt cmdline comp part0 part1 nocompflag signfail pk8 cert avbtype;\n\n  cd $split_img;\n  if [ -f \"$bin/mkimage\" ]; then\n    varlist=\"name arch os type comp addr ep\";\n  elif [ -f \"$bin/mkbootimg\" -a -f \"$bin/unpackelf\" -a -f boot.img-base ]; then\n    mv -f cmdline.txt boot.img-cmdline 2>/dev/null;\n    varlist=\"cmdline base pagesize kernel_offset ramdisk_offset tags_offset\";\n  fi;\n  for i in $varlist; do\n    if [ -f boot.img-$i ]; then\n      eval local $i=\\\"$(cat boot.img-$i)\\\";\n    fi;\n  done;\n\n  cd $home;\n  for i in zImage zImage-dtb Image Image-dtb Image.gz Image.gz-dtb Image.bz2 Image.bz2-dtb Image.lzo Image.lzo-dtb Image.lzma Image.lzma-dtb Image.xz Image.xz-dtb Image.lz4 Image.lz4-dtb Image.fit; do\n    if [ -f $i ]; then\n      kernel=$home/$i;\n      break;\n    fi;\n  done;\n  if [ \"$kernel\" ]; then\n    if [ -f \"$bin/mkmtkhdr\" -a -f \"$split_img/boot.img-base\" ]; then\n      $bin/mkmtkhdr --kernel $kernel;\n      kernel=$kernel-mtk;\n    fi;\n  elif [ \"$(ls $split_img/kernel* 2>/dev/null)\" ]; then\n    kernel=$(ls $split_img/kernel* | grep -v 'kernel_dtb' | tail -n1);\n  fi;\n  if [ \"$(ls ramdisk-new.cpio* 2>/dev/null)\" ]; then\n    ramdisk=$home/$(ls ramdisk-new.cpio* | tail -n1);\n  elif [ -f \"$bin/mkmtkhdr\" -a -f \"$split_img/boot.img-base\" ]; then\n    ramdisk=$split_img/ramdisk.cpio.gz-mtk;\n  else\n    ramdisk=$(ls $split_img/ramdisk.cpio* 2>/dev/null | tail -n1);\n  fi;\n  for fdt in dt recovery_dtbo dtb; do\n    for i in $home/$fdt $home/$fdt.img $split_img/$fdt; do\n      if [ -f $i ]; then\n        eval local $fdt=$i;\n        break;\n      fi;\n    done;\n  done;\n\n  cd $split_img;\n  if [ -f \"$bin/mkimage\" ]; then\n    [ \"$comp\" == \"uncompressed\" ] && comp=none;\n    part0=$kernel;\n    case $type in\n      Multi) part1=\":$ramdisk\";;\n      RAMDisk) part0=$ramdisk;;\n    esac;\n    $bin/mkimage -A $arch -O $os -T $type -C $comp -a $addr -e $ep -n \"$name\" -d $part0$part1 $home/boot-new.img;\n  elif [ -f \"$bin/elftool\" ]; then\n    [ \"$dt\" ] && dt=\"$dt,rpm\";\n    [ -f cmdline.txt ] && cmdline=\"cmdline.txt@cmdline\";\n    $bin/elftool pack -o $home/boot-new.img header=elftool_out/header $kernel $ramdisk,ramdisk $dt $cmdline;\n  elif [ -f \"$bin/mboot\" ]; then\n    cp -f $kernel kernel;\n    cp -f $ramdisk ramdisk.cpio.gz;\n    $bin/mboot -d $split_img -f $home/boot-new.img;\n  elif [ -f \"$bin/rkcrc\" ]; then\n    $bin/rkcrc -k $ramdisk $home/boot-new.img;\n  elif [ -f \"$bin/mkbootimg\" -a -f \"$bin/unpackelf\" -a -f boot.img-base ]; then\n    [ \"$dt\" ] && dt=\"--dt $dt\";\n    $bin/mkbootimg --kernel $kernel --ramdisk $ramdisk --cmdline \"$cmdline\" --base $home --pagesize $pagesize --kernel_offset $kernel_offset --ramdisk_offset $ramdisk_offset --tags_offset \"$tags_offset\" $dt --output $home/boot-new.img;\n  else\n    [ \"$kernel\" ] && cp -f $kernel kernel;\n    [ \"$ramdisk\" ] && cp -f $ramdisk ramdisk.cpio;\n    [ \"$dt\" -a -f extra ] && cp -f $dt extra;\n    for i in dtb recovery_dtbo; do\n      [ \"$(eval echo \\$$i)\" -a -f $i ] && cp -f $(eval echo \\$$i) $i;\n    done;\n    case $kernel in\n      *Image*)\n        if [ ! \"$magisk_patched\" ]; then\n          $bin/magiskboot cpio ramdisk.cpio test;\n          magisk_patched=$?;\n        fi;\n        if [ $((magisk_patched & 3)) -eq 1 ]; then\n          ui_print \" \" \"Magisk detected! Patching kernel so reflashing Magisk is not necessary...\";\n          comp=$($bin/magiskboot decompress kernel 2>&1 | grep -v 'raw' | sed -n 's;.*\\[\\(.*\\)\\];\\1;p');\n          ($bin/magiskboot split $kernel || $bin/magiskboot decompress $kernel kernel) 2>/dev/null;\n          if [ $? != 0 -a \"$comp\" ]; then\n            echo \"Attempting kernel unpack with busybox $comp...\" >&2;\n            $comp -dc $kernel > kernel;\n          fi;\n          $bin/magiskboot hexpatch kernel 736B69705F696E697472616D667300 77616E745F696E697472616D667300;\n          if [ \"$(file_getprop $home/anykernel.sh do.systemless)\" == 1 ]; then\n            strings kernel | grep -E 'Linux version.*#' > $home/vertmp;\n          fi;\n          if [ \"$comp\" ]; then\n            $bin/magiskboot compress=$comp kernel kernel.$comp;\n            if [ $? != 0 ]; then\n              echo \"Attempting kernel repack with busybox $comp...\" >&2;\n              $comp -9c kernel > kernel.$comp;\n            fi;\n            mv -f kernel.$comp kernel;\n          fi;\n          [ ! -f .magisk ] && $bin/magiskboot cpio ramdisk.cpio \"extract .backup/.magisk .magisk\";\n          export $(cat .magisk);\n          [ $((magisk_patched & 8)) -ne 0 ] && export TWOSTAGEINIT=true;\n          for fdt in dtb extra kernel_dtb recovery_dtbo; do\n            [ -f $fdt ] && $bin/magiskboot dtb $fdt patch;\n          done;\n        else\n          case $kernel in\n            *-dtb) rm -f kernel_dtb;;\n          esac;\n        fi;\n        unset magisk_patched KEEPFORCEENCRYPT KEEPVERITY SHA1 TWOSTAGEINIT;\n      ;;\n    esac;\n    case $ramdisk_compression in\n      none|cpio) nocompflag=\"-n\";;\n    esac;\n    $bin/magiskboot repack $nocompflag $bootimg $home/boot-new.img;\n  fi;\n  if [ $? != 0 ]; then\n    abort \"Repacking image failed. Aborting...\";\n  fi;\n\n  cd $home;\n  if [ -f \"$bin/futility\" -a -d \"$bin/chromeos\" ]; then\n    if [ -f \"$split_img/chromeos\" ]; then\n      echo \"Signing with CHROMEOS...\" >&2;\n      $bin/futility vbutil_kernel --pack boot-new-signed.img --keyblock $bin/chromeos/kernel.keyblock --signprivate $bin/chromeos/kernel_data_key.vbprivk --version 1 --vmlinuz boot-new.img --bootloader $bin/chromeos/empty --config $bin/chromeos/empty --arch arm --flags 0x1;\n    fi;\n    [ $? != 0 ] && signfail=1;\n  fi;\n  if [ -f \"$bin/boot_signer-dexed.jar\" -a -d \"$bin/avb\" ]; then\n    pk8=$(ls $bin/avb/*.pk8);\n    cert=$(ls $bin/avb/*.x509.*);\n    case $block in\n      *recovery*|*SOS*) avbtype=recovery;;\n      *) avbtype=boot;;\n    esac;\n    if [ \"$(/system/bin/dalvikvm -Xnoimage-dex2oat -cp $bin/boot_signer-dexed.jar com.android.verity.BootSignature -verify boot.img 2>&1 | grep VALID)\" ]; then\n      echo \"Signing with AVBv1...\" >&2;\n      /system/bin/dalvikvm -Xnoimage-dex2oat -cp $bin/boot_signer-dexed.jar com.android.verity.BootSignature /$avbtype boot-new.img $pk8 $cert boot-new-signed.img;\n    fi;\n  fi;\n  if [ $? != 0 -o \"$signfail\" ]; then\n    abort \"Signing image failed. Aborting...\";\n  fi;\n  mv -f boot-new-signed.img boot-new.img 2>/dev/null;\n\n  if [ ! -f boot-new.img ]; then\n    abort \"No repacked image found to flash. Aborting...\";\n  elif [ \"$(wc -c < boot-new.img)\" -gt \"$(wc -c < boot.img)\" ]; then\n    abort \"New image larger than boot partition. Aborting...\";\n  fi;\n  blockdev --setrw $block 2>/dev/null;\n  if [ -f \"$bin/flash_erase\" -a -f \"$bin/nandwrite\" ]; then\n    $bin/flash_erase $block 0 0;\n    $bin/nandwrite -p $block boot-new.img;\n  elif [ \"$customdd\" ]; then\n    dd if=/dev/zero of=$block $customdd 2>/dev/null;\n    dd if=boot-new.img of=$block $customdd;\n  else\n    cat boot-new.img /dev/zero > $block 2>/dev/null || true;\n  fi;\n  if [ $? != 0 ]; then\n    abort \"Flashing image failed. Aborting...\";\n  fi;\n}\n\n# flash_dtbo (flash dtbo only)\nflash_dtbo() {\n  local i dtbo dtboblock;\n\n  cd $home;\n  for i in dtbo dtbo.img; do\n    if [ -f $i ]; then\n      dtbo=$i;\n      break;\n    fi;\n  done;\n\n  if [ \"$dtbo\" ]; then\n    dtboblock=/dev/block/bootdevice/by-name/dtbo$slot;\n    if [ ! -e \"$dtboblock\" ]; then\n      abort \"dtbo partition could not be found. Aborting...\";\n    fi;\n    blockdev --setrw $dtboblock 2>/dev/null;\n    if [ -f \"$bin/flash_erase\" -a -f \"$bin/nandwrite\" ]; then\n      $bin/flash_erase $dtboblock 0 0;\n      $bin/nandwrite -p $dtboblock $dtbo;\n    elif [ \"$customdd\" ]; then\n      dd if=/dev/zero of=$dtboblock 2>/dev/null;\n      dd if=$dtbo of=$dtboblock;\n    else\n      cat $dtbo /dev/zero > $dtboblock 2>/dev/null || true;\n    fi;\n    if [ $? != 0 ]; then\n      abort \"Flashing dtbo failed. Aborting...\";\n    fi;\n  fi;\n}\n### write_boot (repack ramdisk then build, sign and write image and dtbo)\nwrite_boot() {\n  repack_ramdisk;\n  flash_boot;\n  flash_dtbo;\n}\n###\n\n### file editing functions:\n# backup_file <file>\nbackup_file() { [ ! -f $1~ ] && cp -fp $1 $1~; }\n\n# restore_file <file>\nrestore_file() { [ -f $1~ ] && cp -fp $1~ $1; rm -f $1~; }\n\n# replace_string <file> <if search string> <original string> <replacement string> <scope>\nreplace_string() {\n  [ \"$5\" == \"global\" ] && local scope=g;\n  if ! grep -q \"$2\" $1; then\n    sed -i \"s;${3};${4};${scope}\" $1;\n  fi;\n}\n\n# replace_section <file> <begin search string> <end search string> <replacement string>\nreplace_section() {\n  local begin endstr last end;\n  begin=$(grep -n \"$2\" $1 | head -n1 | cut -d: -f1);\n  if [ \"$begin\" ]; then\n    if [ \"$3\" == \" \" -o ! \"$3\" ]; then\n      endstr='^[[:space:]]*$';\n      last=$(wc -l $1 | cut -d\\  -f1);\n    else\n      endstr=\"$3\";\n    fi;\n    for end in $(grep -n \"$endstr\" $1 | cut -d: -f1) $last; do\n      if [ \"$end\" ] && [ \"$begin\" -lt \"$end\" ]; then\n        sed -i \"${begin},${end}d\" $1;\n        [ \"$end\" == \"$last\" ] && echo >> $1;\n        sed -i \"${begin}s;^;${4}\\n;\" $1;\n        break;\n      fi;\n    done;\n  fi;\n}\n\n# remove_section <file> <begin search string> <end search string>\nremove_section() {\n  local begin endstr last end;\n  begin=$(grep -n \"$2\" $1 | head -n1 | cut -d: -f1);\n  if [ \"$begin\" ]; then\n    if [ \"$3\" == \" \" -o ! \"$3\" ]; then\n      endstr='^[[:space:]]*$';\n      last=$(wc -l $1 | cut -d\\  -f1);\n    else\n      endstr=\"$3\";\n    fi;\n    for end in $(grep -n \"$endstr\" $1 | cut -d: -f1) $last; do\n      if [ \"$end\" ] && [ \"$begin\" -lt \"$end\" ]; then\n        sed -i \"${begin},${end}d\" $1;\n        break;\n      fi;\n    done;\n  fi;\n}\n\n# insert_line <file> <if search string> <before|after> <line match string> <inserted line>\ninsert_line() {\n  local offset line;\n  if ! grep -q \"$2\" $1; then\n    case $3 in\n      before) offset=0;;\n      after) offset=1;;\n    esac;\n    line=$((`grep -n \"$4\" $1 | head -n1 | cut -d: -f1` + offset));\n    if [ -f $1 -a \"$line\" ] && [ \"$(wc -l $1 | cut -d\\  -f1)\" -lt \"$line\" ]; then\n      echo \"$5\" >> $1;\n    else\n      sed -i \"${line}s;^;${5}\\n;\" $1;\n    fi;\n  fi;\n}\n\n# replace_line <file> <line replace string> <replacement line> <scope>\nreplace_line() {\n  local lines line;\n  if grep -q \"$2\" $1; then\n    lines=$(grep -n \"$2\" $1 | cut -d: -f1 | sort -nr);\n    [ \"$4\" == \"global\" ] || lines=$(echo \"$lines\" | tail -n1);\n    for line in $lines; do\n      sed -i \"${line}s;.*;${3};\" $1;\n    done;\n  fi;\n}\n\n# remove_line <file> <line match string> <scope>\nremove_line() {\n  local lines line;\n  if grep -q \"$2\" $1; then\n    lines=$(grep -n \"$2\" $1 | cut -d: -f1 | sort -nr);\n    [ \"$3\" == \"global\" ] || lines=$(echo \"$lines\" | tail -n1);\n    for line in $lines; do\n      sed -i \"${line}d\" $1;\n    done;\n  fi;\n}\n\n# prepend_file <file> <if search string> <patch file>\nprepend_file() {\n  if ! grep -q \"$2\" $1; then\n    echo \"$(cat $patch/$3 $1)\" > $1;\n  fi;\n}\n\n# insert_file <file> <if search string> <before|after> <line match string> <patch file>\ninsert_file() {\n  local offset line;\n  if ! grep -q \"$2\" $1; then\n    case $3 in\n      before) offset=0;;\n      after) offset=1;;\n    esac;\n    line=$((`grep -n \"$4\" $1 | head -n1 | cut -d: -f1` + offset));\n    sed -i \"${line}s;^;\\n;\" $1;\n    sed -i \"$((line - 1))r $patch/$5\" $1;\n  fi;\n}\n\n# append_file <file> <if search string> <patch file>\nappend_file() {\n  if ! grep -q \"$2\" $1; then\n    echo -ne \"\\n\" >> $1;\n    cat $patch/$3 >> $1;\n    echo -ne \"\\n\" >> $1;\n  fi;\n}\n\n# replace_file <file> <permissions> <patch file>\nreplace_file() {\n  cp -pf $patch/$3 $1;\n  chmod $2 $1;\n}\n\n# patch_fstab <fstab file> <mount match name> <fs match type> block|mount|fstype|options|flags <original string> <replacement string>\npatch_fstab() {\n  local entry part newpart newentry;\n  entry=$(grep \"$2\" $1 | grep \"$3\");\n  if [ ! \"$(echo \"$entry\" | grep \"$6\")\" -o \"$6\" == \" \" -o ! \"$6\" ]; then\n    case $4 in\n      block) part=$(echo \"$entry\" | awk '{ print $1 }');;\n      mount) part=$(echo \"$entry\" | awk '{ print $2 }');;\n      fstype) part=$(echo \"$entry\" | awk '{ print $3 }');;\n      options) part=$(echo \"$entry\" | awk '{ print $4 }');;\n      flags) part=$(echo \"$entry\" | awk '{ print $5 }');;\n    esac;\n    newpart=$(echo \"$part\" | sed -e \"s;${5};${6};\" -e \"s; ;;g\" -e 's;,\\{2,\\};,;g' -e 's;,*$;;g' -e 's;^,;;g');\n    newentry=$(echo \"$entry\" | sed \"s;${part};${newpart};\");\n    sed -i \"s;${entry};${newentry};\" $1;\n  fi;\n}\n\n# patch_cmdline <cmdline entry name> <replacement string>\npatch_cmdline() {\n  local cmdfile cmdtmp match;\n  if [ -f \"$split_img/cmdline.txt\" ]; then\n    cmdfile=$split_img/cmdline.txt;\n  else\n    cmdfile=$home/cmdtmp;\n    grep \"^cmdline=\" $split_img/header | cut -d= -f2- > $cmdfile;\n  fi;\n  if ! grep -q \"$1\" $cmdfile; then\n    cmdtmp=$(cat $cmdfile);\n    echo \"$cmdtmp $2\" > $cmdfile;\n    sed -i -e 's;  *; ;g' -e 's;[ \\t]*$;;' $cmdfile;\n  else\n    match=$(grep -o \"$1.*$\" $cmdfile | cut -d\\  -f1);\n    sed -i -e \"s;${match};${2};\" -e 's;  *; ;g' -e 's;[ \\t]*$;;' $cmdfile;\n  fi;\n  if [ -f \"$home/cmdtmp\" ]; then\n    sed -i \"s|^cmdline=.*|cmdline=$(cat $cmdfile)|\" $split_img/header;\n    rm -f $cmdfile;\n  fi;\n}\n\n# patch_prop <prop file> <prop name> <new prop value>\npatch_prop() {\n  if ! grep -q \"^$2=\" $1; then\n    echo -ne \"\\n$2=$3\\n\" >> $1;\n  else\n    local line=$(grep -n \"^$2=\" $1 | head -n1 | cut -d: -f1);\n    sed -i \"${line}s;.*;${2}=${3};\" $1;\n  fi;\n}\n\n# patch_ueventd <ueventd file> <device node> <permissions> <chown> <chgrp>\npatch_ueventd() {\n  local file dev perm user group newentry line;\n  file=$1; dev=$2; perm=$3; user=$4;\n  shift 4;\n  group=\"$@\";\n  newentry=$(printf \"%-23s   %-4s   %-8s   %s\\n\" \"$dev\" \"$perm\" \"$user\" \"$group\");\n  line=$(grep -n \"$dev\" $file | head -n1 | cut -d: -f1);\n  if [ \"$line\" ]; then\n    sed -i \"${line}s;.*;${newentry};\" $file;\n  else\n    echo -ne \"\\n$newentry\\n\" >> $file;\n  fi;\n}\n###\n\n### configuration/setup functions:\n# reset_ak [keep]\nreset_ak() {\n  local current i;\n\n  current=$(dirname $home/*-files/current);\n  if [ -d \"$current\" ]; then\n    rm -rf $current/ramdisk;\n    for i in $bootimg boot-new.img; do\n      [ -e $i ] && cp -af $i $current;\n    done;\n  fi;\n  [ -d $split_img ] && rm -rf $ramdisk;\n  rm -rf $bootimg $split_img $home/*-new* $home/*-files/current;\n\n  if [ \"$1\" == \"keep\" ]; then\n    [ -d $home/rdtmp ] && mv -f $home/rdtmp $ramdisk;\n  else\n    rm -rf $patch $home/rdtmp;\n  fi;\n  setup_ak;\n}\n\n# setup_ak\nsetup_ak() {\n  local blockfiles parttype name part mtdmount mtdpart mtdname target;\n\n  # allow multi-partition ramdisk modifying configurations (using reset_ak)\n  if [ \"$block\" ] && [ ! -d \"$ramdisk\" -a ! -d \"$patch\" ]; then\n    blockfiles=$home/$(basename $block)-files;\n    if [ \"$(ls $blockfiles 2>/dev/null)\" ]; then\n      cp -af $blockfiles/* $home;\n    else\n      mkdir -p $blockfiles;\n    fi;\n    touch $blockfiles/current;\n  fi;\n\n  # slot detection enabled by is_slot_device=1 or auto (from anykernel.sh)\n  case $is_slot_device in\n    1|auto)\n      slot=$(getprop ro.boot.slot_suffix 2>/dev/null);\n      [ \"$slot\" ] || slot=$(grep -o 'androidboot.slot_suffix=.*$' /proc/cmdline | cut -d\\  -f1 | cut -d= -f2);\n      if [ ! \"$slot\" ]; then\n        slot=$(getprop ro.boot.slot 2>/dev/null);\n        [ \"$slot\" ] || slot=$(grep -o 'androidboot.slot=.*$' /proc/cmdline | cut -d\\  -f1 | cut -d= -f2);\n        [ \"$slot\" ] && slot=_$slot;\n      fi;\n      if [ \"$slot\" ]; then\n        if [ -d /postinstall/tmp -a ! \"$slot_select\" ]; then\n          slot_select=inactive;\n        fi;\n        case $slot_select in\n          inactive)\n            case $slot in\n              _a) slot=_b;;\n              _b) slot=_a;;\n            esac;\n          ;;\n        esac;\n      fi;\n      if [ ! \"$slot\" -a \"$is_slot_device\" == 1 ]; then\n        abort \"Unable to determine active boot slot. Aborting...\";\n      fi;\n    ;;\n  esac;\n\n  # target block partition detection enabled by block=boot recovery or auto (from anykernel.sh)\n  case $block in\n     auto|\"\") block=boot;;\n  esac;\n  case $block in\n    boot|recovery)\n      case $block in\n        boot) parttype=\"ramdisk boot BOOT LNX android_boot bootimg KERN-A kernel KERNEL\";;\n        recovery) parttype=\"ramdisk_recovery recovery RECOVERY SOS android_recovery\";;\n      esac;\n      for name in $parttype; do\n        for part in $name$slot $name; do\n          if [ \"$(grep -w \"$part\" /proc/mtd 2> /dev/null)\" ]; then\n            mtdmount=$(grep -w \"$part\" /proc/mtd);\n            mtdpart=$(echo $mtdmount | cut -d\\\" -f2);\n            if [ \"$mtdpart\" == \"$part\" ]; then\n              mtdname=$(echo $mtdmount | cut -d: -f1);\n            else\n              abort \"Unable to determine mtd $block partition. Aborting...\";\n            fi;\n            if [ -e /dev/mtd/$mtdname ]; then\n              target=/dev/mtd/$mtdname;\n            fi;\n          elif [ -e /dev/block/by-name/$part ]; then\n            target=/dev/block/by-name/$part;\n          elif [ -e /dev/block/bootdevice/by-name/$part ]; then\n            target=/dev/block/bootdevice/by-name/$part;\n          elif [ -e /dev/block/platform/*/by-name/$part ]; then\n            target=/dev/block/platform/*/by-name/$part;\n          elif [ -e /dev/block/platform/*/*/by-name/$part ]; then\n            target=/dev/block/platform/*/*/by-name/$part;\n          elif [ -e /dev/$part ]; then\n            target=/dev/$part;\n          fi;\n          [ \"$target\" ] && break 2;\n        done;\n      done;\n      if [ \"$target\" ]; then\n        block=$(ls $target 2>/dev/null);\n      else\n        abort \"Unable to determine $block partition. Aborting...\";\n      fi;\n    ;;\n    *)\n      if [ \"$slot\" ]; then\n        [ -e \"$block$slot\" ] && block=$block$slot;\n      fi;\n    ;;\n  esac;\n  if [ ! \"$no_block_display\" ]; then\n    ui_print \"$block\";\n  fi;\n}\n###\n\n### end methods\n\nsetup_ak;\n"
  },
  {
    "path": "bench.py",
    "content": "#!/usr/bin/env python3\n\nimport os\nimport sys\nimport time\nimport subprocess\nimport gc\nimport statistics\nimport json\nimport threading\nimport re\nimport csv\n\n# Need to avoid as much extra CPU usage as possible\ngc.disable()\n\n# sysfs power supply nodes for power sampling\nPOWER_SUPPLY = None\nPOWER_SUPPLY_NODES = [\n    # Qualcomm Battery Management System + fuel gauge: preferred when available for more info\n    \"/sys/class/power_supply/bms\",\n    # Most common\n    \"/sys/class/power_supply/battery\",\n    # Nexus 10\n    \"/sys/class/power_supply/ds2784-fuelgauge\",\n]\n# Some fuel gauges need current unit scaling\nPOWER_CURRENT_FACTOR = 1\nPOWER_CURRENT_NODES = [\n    # Exynos devices with Maxim PMICs report µA separately\n    \"batt_current_ua_now\",\n    # Standard µA node\n    \"current_now\",\n]\n# Full paths to final nodes\nPOWER_CURRENT_NODE = None\nPOWER_VOLTAGE_NODE = None\n\n# Default power sampling intervals\nPOWER_SAMPLE_INTERVAL = 1000  # ms\nPOWER_SAMPLE_FG_DEFAULT_INTERVALS = {\n    # qgauge updates every 100 ms, but sampling also uses power, so do it conservatively\n    \"qpnp,qg\": 250,\n    # qpnp-fg-gen3/4 update every 1000 ms\n    \"qpnp,fg\": 1000,\n    # SM8350+ aDSP fuel gauge updates every 1000 ms\n    \"qcom,pmic_glink\": 1000,\n}\n\n# Needs to match init and cmdline\nHOUSEKEEPING_CPU = 0\n\n# cpu0 is for housekeeping, so we can't benchmark it\n# Benchmark cpu1 instead, which is also in the little cluster\nREPLACE_CPUS = {\n    HOUSEKEEPING_CPU: 1,\n}\n\n# How long to idle at each freq and measure power before benchmarking\nFREQ_IDLE_TIME = 5  # sec\n\n# To reduce chances of an array realloc + copy during benchmark runs\nPREALLOC_SECONDS = 300  # seconds of power sampling\n\n# CoreMark PERFORMANCE_RUN params with 300,000 iterations\nCOREMARK_ITERATIONS = 300000\nCOREMARK_PERFORMANCE_RUN = [\"0x0\", \"0x0\", \"0x66\", str(COREMARK_ITERATIONS), \"7\", \"1\", \"2000\"]\n\n# Blank lines are for rounded corner & camera cutout protection\nBANNER = \"\"\"\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\"\"\"\n\nSYS_CPU = \"/sys/devices/system/cpu\"\n\n# \"Constants\" evaluated at runtime\nfor psy_node in POWER_SUPPLY_NODES:\n    if os.path.exists(psy_node):\n        POWER_SUPPLY = psy_node\n        break\n\nPOWER_VOLTAGE_NODE = f\"{POWER_SUPPLY}/voltage_now\"\nfor node in POWER_CURRENT_NODES:\n    path = f\"{POWER_SUPPLY}/{node}\"\n    if os.path.exists(path):\n        POWER_CURRENT_NODE = path\n        break\n\npsy_name = os.readlink(POWER_SUPPLY)\nfor fg_string, interval in POWER_SAMPLE_FG_DEFAULT_INTERVALS.items():\n    if fg_string in psy_name:\n        POWER_SAMPLE_INTERVAL = interval\n        break\n\nif len(sys.argv) > 1:\n    override_interval = int(sys.argv[1])\n    if override_interval > 0:\n        POWER_SAMPLE_INTERVAL = override_interval\n\n# Calculate prealloc slots now that the interval is known\nPREALLOC_SLOTS = int(PREALLOC_SECONDS / (POWER_SAMPLE_INTERVAL / 1000))\n\n_stop_power_mon = False\n_prealloc_samples = [-1] * PREALLOC_SLOTS\n_power_samples = _prealloc_samples\n\ndef pr_debug(*args, **kwargs):\n    if __debug__:\n        kwargs[\"flush\"] = True\n        print(*args, **kwargs)\n\ndef run_cmd(args):\n    pr_debug(f\"Running command: {args}\")\n    proc = subprocess.run(args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True)\n    pr_debug(f\"Command exited with return code {proc.returncode}\")\n    if proc.returncode == 0:\n        return proc.stdout\n    else:\n        raise ValueError(f\"Subprocess {args} failed with exit code {proc.returncode}:\\n{proc.stdout}\")\n\ndef sample_power():\n    ma = int(read_file(POWER_CURRENT_NODE)) * POWER_CURRENT_FACTOR / 1000\n    mv = int(read_file(POWER_VOLTAGE_NODE)) / 1000\n\n    mw = ma * mv / 1000\n    return ma, mv, abs(mw)\n\ndef start_power_thread(sample_interval=POWER_SAMPLE_INTERVAL):\n    def _power_thread():\n        global _power_samples\n\n        sample_dest = _prealloc_samples\n\n        count = 0\n        while True:\n            # Sleep before first sample to avoid a low first reading\n            time.sleep(sample_interval / 1000)\n\n            # Check stop flag immediately after sleep to avoid a low last reading\n            if _stop_power_mon:\n                pr_debug(\"Stopping power monitor due to global stop flag\")\n                break\n\n            current, voltage, power = sample_power()\n            pr_debug(f\"Power: {power} mW\\t(sample {count} from {current} mA * {voltage} mV)\")\n\n            try:\n                sample_dest[count] = power\n            except IndexError:\n                pr_debug(\"Pre-allocated sample slots exhausted, falling back to dynamic allocation\")\n                # If out of pre-allocated slots\n                sample_dest.append(power)\n\n            count += 1\n\n        if count < len(sample_dest):\n            pr_debug(f\"Truncating to first {count} samples from pre-allocated array\")\n            _power_samples = sample_dest[:count]\n\n    pr_debug(\"Starting power monitor thread\")\n    thread = threading.Thread(target=_power_thread, daemon=True)\n    thread.start()\n    return thread\n\ndef stop_power_thread(thread):\n    global _stop_power_mon\n\n    pr_debug(\"Setting flag to stop power monitor\")\n    _stop_power_mon = True\n    pr_debug(\"Waiting for power monitor to stop\")\n    thread.join()\n    _stop_power_mon = False\n\n    return _power_samples\n\ndef write_cpu(cpu, node, content):\n    pr_debug(f\"Writing CPU value: cpu{cpu}/{node} => {content}\")\n    with open(f\"{SYS_CPU}/cpu{cpu}/{node}\", \"w\") as f:\n        f.write(content)\n\ndef read_file(node):\n    with open(node, \"r\") as f:\n        content = f.read().strip()\n        pr_debug(f\"Reading file: {node} = {content}\")\n        return content\n\ndef create_power_stats(time_ns, samples):\n    sec = time_ns / 1e9\n\n    power = statistics.mean(samples)\n    mj = power * sec\n    joules = mj / 1000\n\n    return {\n        \"elapsed_sec\": sec,\n        \"elapsed_ns\": time_ns,\n        \"power_samples\": samples,\n        \"power_mean\": power,\n        \"energy_millijoules\": mj,\n        \"energy_joules\": joules,\n    }\n\ndef get_cpu_freqs(cpu):\n    raw_freqs = read_file(f\"{SYS_CPU}/cpu{cpu}/cpufreq/scaling_available_frequencies\").split(\" \")\n    boost_node = f\"{SYS_CPU}/cpu{cpu}/cpufreq/scaling_boost_frequencies\"\n    # Some devices have extra boost frequencies not in scaling_available_frequencies\n    if os.path.exists(boost_node):\n        raw_freqs += read_file(boost_node).split(\" \")\n\n    # Need to sort because different platforms have different orders\n    freqs = sorted(set(int(freq) for freq in raw_freqs if freq))\n\n    return freqs\n\ndef init_cpus():\n    print(\"Frequency domains: \", end=\"\", flush=True)\n    bench_cpus = []\n    for policy_dir in sorted(os.listdir(f\"{SYS_CPU}/cpufreq\")):\n        if policy_dir.startswith(\"policy\"):\n            first_cpu = int(policy_dir[len(\"policy\"):])\n            if first_cpu in REPLACE_CPUS:\n                first_cpu = REPLACE_CPUS[first_cpu]\n\n            print(f\"cpu{first_cpu}\", end=\" \", flush=True)\n            bench_cpus.append(first_cpu)\n        else:\n            pr_debug(f\"Unrecognized file/dir in cpufreq: {policy_dir}\")\n            continue\n    print()\n\n    print(\"Offline CPUs: \", end=\"\", flush=True)\n    cpu_count = len(re.findall(r'processor\\s+:\\s+\\d+', read_file(\"/proc/cpuinfo\")))\n\n    for cpu in range(cpu_count):\n        if cpu == HOUSEKEEPING_CPU:\n            continue\n\n        print(f\"cpu{cpu}\", end=\" \", flush=True)\n        write_cpu(cpu, \"online\", \"0\")\n    print(flush=True)\n\n    pr_debug(\"Minimizing frequency of housekeeping CPU\")\n    min_freq = min(get_cpu_freqs(HOUSEKEEPING_CPU))\n    pr_debug(f\"Minimum frequency for {HOUSEKEEPING_CPU}: {min_freq} kHz\")\n    write_cpu(HOUSEKEEPING_CPU, \"cpufreq/scaling_governor\", \"userspace\")\n    write_cpu(HOUSEKEEPING_CPU, \"cpufreq/scaling_setspeed\", str(min_freq))\n    pr_debug()\n\n    return bench_cpus, cpu_count\n\ndef check_charging(node, charging_value, charging_warned):\n    if os.path.exists(node):\n        psy_status = read_file(node)\n        pr_debug(f\"Power supply status at {node}: {psy_status}\")\n        if psy_status == charging_value and not charging_warned:\n            print()\n            print(\"=============== WARNING ===============\")\n            print(\"Detected power supply in charging state!\")\n            print(\"Power measurements will be invalid and benchmark results may be affected.\")\n            print(\"Unplug the device and restart the benchmark for valid results.\")\n            print(\"=============== WARNING ===============\")\n            print()\n            return True\n\n    return charging_warned\n\ndef init_power():\n    global POWER_CURRENT_FACTOR\n\n    pr_debug(f\"Using power supply: {POWER_SUPPLY}\")\n\n    charging_warned = False\n    charging_warned = check_charging(f\"{POWER_SUPPLY}/status\", \"Charging\", charging_warned)\n    charging_warned = check_charging(f\"/sys/class/power_supply/battery/status\", \"Charging\", charging_warned)\n    charging_warned = check_charging(f\"/sys/class/power_supply/usb/present\", \"1\", charging_warned)\n    charging_warned = check_charging(f\"/sys/class/power_supply/dc/present\", \"1\", charging_warned)\n\n    # Some PMICs may give unstable readings at this point\n    pr_debug(\"Waiting for power usage to settle for initial current measurement\")\n    time.sleep(5)\n    # Maxim PMICs used on Exynos devices report current in mA, not µA\n    ref_current = int(read_file(POWER_CURRENT_NODE))\n    # Assumption: will never be below 1 mA\n    if abs(ref_current) <= 1000:\n        POWER_CURRENT_FACTOR = 1000\n    pr_debug(f\"Scaling current by {POWER_CURRENT_FACTOR}x (derived from initial sample: {ref_current})\")\n\n    print(f\"Sampling power every {POWER_SAMPLE_INTERVAL} ms\")\n    pr_debug(f\"Pre-allocated {PREALLOC_SLOTS} sample slots for {PREALLOC_SECONDS} seconds\")\n    pr_debug(f\"Power sample interval adjusted for power supply: {psy_name}\")\n    print(\"Baseline power usage: \", end=\"\", flush=True)\n    pr_debug(\"Waiting for power usage to settle\")\n    time.sleep(15)\n    pr_debug()\n\n    pr_debug(\"Measuring base power usage with only housekeeping CPU\")\n    # The power used for sampling might affect results here, so sample less often\n    thread = start_power_thread(sample_interval=POWER_SAMPLE_INTERVAL * 2)\n    time.sleep(60)\n    base_power_samples = stop_power_thread(thread)\n    base_power = statistics.median(base_power_samples)\n    print(f\"{base_power:.0f} mW\")\n    print()\n\n    return base_power, base_power_samples\n\ndef main():\n    bench_start_time = time.time()\n\n    print(BANNER)\n    pr_debug(\"Running in debug mode\")\n\n    pr_debug(\"Initializing CPU states\")\n    bench_cpus, cpu_count = init_cpus()\n\n    pr_debug(\"Initializing power measurements\")\n    base_power, base_power_samples = init_power()\n\n    pr_debug(\"Starting benchmark\")\n    pr_debug()\n\n    cpus_data = {}\n    for cpu in bench_cpus:\n        print()\n        print(f\"===== CPU {cpu} =====\")\n\n        cpu_data = {\n            \"freqs\": {}\n        }\n        cpus_data[cpu] = cpu_data\n\n        pr_debug(\"Onlining CPU\")\n        write_cpu(cpu, \"online\", \"1\")\n\n        pr_debug(\"Setting governor\")\n        write_cpu(cpu, \"cpufreq/scaling_governor\", \"userspace\")\n\n        pr_debug(\"Getting frequencies\")\n        freqs = get_cpu_freqs(cpu)\n        print(\"Frequencies:\", \" \".join(str(int(freq / 1000)) for freq in freqs))\n        print()\n\n        # Some kernels may change the defaults\n        pr_debug(\"Setting frequency limits\")\n        write_cpu(cpu, \"cpufreq/scaling_min_freq\", str(min(freqs)))\n        write_cpu(cpu, \"cpufreq/scaling_max_freq\", str(max(freqs)))\n        # Sometimes, reading back the limits immediately may give an incorrect result\n        pr_debug(\"Waiting for frequency limits to take effect\")\n        time.sleep(1)\n\n        # Bail out if the kernel is clamping our values\n        pr_debug(\"Validating frequency limits\")\n        real_min_freq = int(read_file(f\"{SYS_CPU}/cpu{cpu}/cpufreq/scaling_min_freq\"))\n        if real_min_freq != min(freqs):\n            raise ValueError(f\"Minimum frequency setting {min(freqs)} rejected by kernel; got {real_min_freq}\")\n        real_max_freq = int(read_file(f\"{SYS_CPU}/cpu{cpu}/cpufreq/scaling_max_freq\"))\n        if real_max_freq != max(freqs):\n            raise ValueError(f\"Maximum frequency setting {max(freqs)} rejected by kernel; got {real_max_freq}\")\n\n        for freq in freqs:\n            mhz = freq / 1000\n            print(f\"{int(mhz):4d}: \", end=\"\", flush=True)\n            write_cpu(cpu, \"cpufreq/scaling_setspeed\", str(freq))\n\n            pr_debug(\"Waiting for frequency to settle\")\n            time.sleep(0.1)\n\n            pr_debug(\"Validating frequency\")\n            real_freq = int(read_file(f\"{SYS_CPU}/cpu{cpu}/cpufreq/scaling_cur_freq\"))\n            if real_freq != freq:\n                raise ValueError(f\"Frequency setting is {freq} but kernel is using {real_freq}\")\n\n            pr_debug(\"Waiting for power usage to settle\")\n            time.sleep(3)\n\n            pr_debug(\"Measuring idle power usage\")\n            thread = start_power_thread()\n            time.sleep(FREQ_IDLE_TIME)\n            idle_power_samples = stop_power_thread(thread)\n            idle_power = statistics.mean(idle_power_samples)\n            idle_mj = idle_power * FREQ_IDLE_TIME\n            idle_joules = idle_mj / 1000\n            pr_debug(f\"Idle: {idle_power:4.0f} mW    {idle_joules:4.1f} J\")\n\n            pr_debug(\"Running CoreMark...\")\n            thread = start_power_thread()\n            start_time = time.time_ns()\n            cm_out = run_cmd([\"taskset\", \"-c\", f\"{cpu}\", \"coremark\", *COREMARK_PERFORMANCE_RUN])\n            end_time = time.time_ns()\n            power_samples = stop_power_thread(thread)\n\n            pr_debug(cm_out)\n            elapsed_sec = (end_time - start_time) / 1e9\n\n            # Extract score and iterations\n            match = re.search(r'CoreMark 1\\.0 : ([0-9.]+?) / ', cm_out)\n            if not match.group(1):\n                if \"Must execute for at least 10 secs\" in cm_out:\n                    raise ValueError(\"Benchmark ran too fast; increase COREMARK_ITERATIONS and try again\")\n                else:\n                    print(cm_out, file=sys.stderr)\n                    raise ValueError(\"Failed to parse CoreMark output\")\n\n            score = float(match.group(1))\n            match = re.search(r'Iterations\\s+:\\s+(\\d+)', cm_out)\n            iters = float(match.group(1))\n\n            # Adjust for base power usage\n            power_samples = [sample - base_power for sample in power_samples]\n\n            # Calculate power values\n            power = statistics.mean(power_samples)\n            # CoreMarks/MHz as per EEMBC specs\n            cm_mhz = score / mhz\n            # mW * sec = mJ\n            mj = power * elapsed_sec\n            joules = mj / 1000\n            # ULPMark-CM score = iterations per millijoule\n            ulpmark_score = iters / mj\n\n            print(f\"{score:5.0f}     {cm_mhz:3.1f} C/MHz   {power:4.0f} mW   {joules:4.1f} J   {ulpmark_score:4.1f} I/mJ   {elapsed_sec:5.1f} s\")\n\n            cpu_data[\"freqs\"][freq] = {\n                \"active\": {\n                    **create_power_stats(end_time - start_time, power_samples),\n                    \"coremark_score\": score,\n                    \"coremarks_per_mhz\": cm_mhz,\n                    \"ulpmark_cm_score\": ulpmark_score\n                },\n                \"idle\": create_power_stats(int(FREQ_IDLE_TIME * 1e9), idle_power_samples),\n            }\n\n        # In case the CPU shares a freq domain with the housekeeping CPU, e.g. cpu1\n        pr_debug(f\"Minimizing frequency of CPU: {min(freqs)} kHz\")\n        write_cpu(cpu, \"cpufreq/scaling_setspeed\", str(min(freqs)))\n\n        pr_debug(\"Offlining CPU\")\n        write_cpu(cpu, \"online\", \"0\")\n        print()\n\n    # Make the rest run faster\n    pr_debug(\"Maxing housekeeping CPU frequency\")\n    max_hk_freq = max(get_cpu_freqs(HOUSEKEEPING_CPU))\n    write_cpu(HOUSEKEEPING_CPU, \"cpufreq/scaling_setspeed\", str(max_hk_freq))\n\n    # OK to GC beyond this point as all the benchmarking is done\n    pr_debug(\"Enabling Python GC\")\n    gc.enable()\n\n    print()\n    print(\"Benchmark finished!\")\n\n    bench_finish_time = time.time()\n\n    pr_debug(\"Writing JSON data\")\n    data = {\n        \"version\": 1,\n        \"total_elapsed_sec\": bench_finish_time - bench_start_time,\n        \"housekeeping\": create_power_stats(int(5 * 1e9), base_power_samples),\n        \"cpus\": cpus_data,\n        \"meta\": {\n            \"housekeeping_cpu\": HOUSEKEEPING_CPU,\n            \"power_sample_interval\": POWER_SAMPLE_INTERVAL,\n            \"cpu_count\": cpu_count,\n        },\n    }\n\n    pr_debug(\"Writing JSON results\")\n    results_json = json.dumps(data)\n    pr_debug(results_json)\n    with open(\"/tmp/results.json\", \"w+\") as f:\n        f.write(results_json)\n\n    pr_debug(\"Writing CSV results\")\n    with open(\"/tmp/results.csv\", \"w+\") as f:\n        fields = [\n            \"CPU\",\n            \"Frequency (kHz)\",\n            \"CoreMarks (iter/s)\",\n            \"CoreMarks/MHz\",\n            \"Power (mW)\",\n            \"Energy (J)\",\n            \"ULPMark-CM (iter/mJ)\",\n            \"Time (s)\"\n        ]\n\n        writer = csv.DictWriter(f, fieldnames=fields)\n        writer.writeheader()\n\n        for cpu, cpu_data in cpus_data.items():\n            for freq, freq_data in cpu_data[\"freqs\"].items():\n                freq_data = freq_data[\"active\"]\n\n                writer.writerow({\n                    \"CPU\": cpu,\n                    \"Frequency (kHz)\": freq,\n                    \"CoreMarks (iter/s)\": freq_data[\"coremark_score\"],\n                    \"CoreMarks/MHz\": freq_data[\"coremarks_per_mhz\"],\n                    \"Power (mW)\": freq_data[\"power_mean\"],\n                    \"Energy (J)\": freq_data[\"energy_joules\"],\n                    \"ULPMark-CM (iter/mJ)\": freq_data[\"ulpmark_cm_score\"],\n                    \"Time (s)\": freq_data[\"elapsed_sec\"],\n                })\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "boot-v1/.gitignore",
    "content": "*.img\nbase\nboard\ncmdline\ndtb\ndtb_offset\nhashtype\nheader_version\nkernel_offset\nos_patch_level\nos_version\npagesize\nramdisk.gz\nramdisk_offset\nsecond_offset\ntags_offset\nzImage\n"
  },
  {
    "path": "boot-v1/pack.sh",
    "content": "#!/usr/bin/env sh\n\ncd \"$(dirname \"$0\")\"\n\n../packrd-gz.sh\ncp ../rd-new.cpio.gz ramdisk.gz\n\nmkbootimg \\\n    --kernel zImage \\\n    --ramdisk ramdisk.gz \\\n    --cmdline \"$(cat cmdline)\" \\\n    --board \"$(cat board)\" \\\n    --base \"$(cat base)\" \\\n    --pagesize \"$(cat pagesize)\" \\\n    --kernel_offset \"$(cat kernel_offset)\" \\\n    --ramdisk_offset \"$(cat ramdisk_offset)\" \\\n    --second_offset \"$(cat second_offset)\" \\\n    --tags_offset \"$(cat tags_offset)\" \\\n    --os_version \"$(cat os_version)\" \\\n    --os_patch_level \"$(cat os_patch_level)\" \\\n    -o new.img\n"
  },
  {
    "path": "boot-v1/test.sh",
    "content": "#!/usr/bin/env sh\n\nset -eufo pipefail\n\ncd \"$(dirname \"$0\")\"\n\ncp ~/code/android/devices/zf6/proton/out/arch/arm64/boot/Image.gz-dtb zImage\n./pack.sh\nadb reboot bootloader || true\nfastboot boot new.img\n"
  },
  {
    "path": "boot-v1/unpack.sh",
    "content": "#!/usr/bin/env sh\n\ncd \"$(dirname \"$0\")\"\n\nunpackbootimg -i \"$1\"\nrename \"$1-\" \"\" \"$1-\"*\n"
  },
  {
    "path": "config.sh",
    "content": "# Common config options for freqbench\n\n# Whether to enable verbose debug logging during the benchmark\n# DO NOT ENABLE for final benchmarking!\n# The extra framebuffer memory copies caused by it will influence results.\nDEBUG=false\n\n# How often to sample power usage while benchmarking (in milliseconds)\n# 0 = auto (default is based on fuel gauge)\nPOWER_SAMPLE_INTERVAL=0\n\n# Whether to expose an SSH server for debugging over virtual USB Ethernet\n# Do not enable for final benchmarking\nUSB_DEBUG=false\n"
  },
  {
    "path": "dhcpd.conf",
    "content": "option domain-name-servers 8.8.8.8, 8.8.4.4;\noption subnet-mask 255.255.255.0;\nsubnet 10.15.19.0 netmask 255.255.255.0 {\n  range 10.15.19.100 10.15.19.254;\n}\n"
  },
  {
    "path": "init.sh",
    "content": "#!/usr/bin/env bash\n\nset -euo pipefail\n\n# Populate PATH and other basic env\nsource /etc/profile\n# For htop config\nexport HOME=/root\n\nsource /config.sh\n\n# Must be in /persist or /tmp\n# /persist will be mounted from the cache partition if it exists\nOUT_DIR=/persist/freqbench\n\nreboot_end() {\n    echo\n    echo \"Rebooting in 5 seconds...\"\n    # Rounded corner protection\n    echo\n    echo\n    sleep 5\n\n    # Wait for volume down keypress\n    #read -n1\n    # Wait for manual forced reboot\n    #sleep inf\n\n    reboot_with_cmd bootloader\n}\n\nsaving_logs=false\non_exit() {\n    if ! $saving_logs; then\n        save_logs\n    fi\n\n    echo\n    echo\n    echo \"ERROR!\"\n\n    reboot_end\n}\n\n# Set trap before mounting in case devtmpfs fails\ntrap on_exit EXIT\n\n# Mount essential pseudo-filesystems\nmount -t tmpfs tmpfs /dev\nmount -t proc proc /proc\nmount -t sysfs sysfs /sys\nmount -t tmpfs tmpfs /tmp\n\n# Populate /dev without devtmpfs\nmdev -s\n\n# Log to kernel log if no console is present\nif [[ ! -t 1 ]]; then\n    exec > /dev/kmsg 2>&1\nfi\n\n# Don't log anywhere\n#exec > /dev/null 2>&1\n\nfind_part_by_name() {\n    pinfo=\"$(blkid -l --match-token \"PARTLABEL=$1\"; blkid -l --match-token \"PARTLABEL=${1^^}\")\"\n\n    # Check for existence first\n    if [[ -z \"$pinfo\" ]]; then\n        return 1\n    fi\n\n    echo \"$pinfo\" | cut -d' ' -f1 | tr -d ':'\n}\n\nredact_arg() {\n    sed -E \"s/$1=[^ ]+/$1=REDACTED/\"\n}\n\nredact_args() {\n    redact_arg androidboot.serialno | \\\n        redact_arg androidboot.wifimacaddr | \\\n        redact_arg androidboot.btmacaddr | \\\n        redact_arg androidboot.uid | \\\n        redact_arg androidboot.ap_serial | \\\n        redact_arg androidboot.cpuid | \\\n        redact_arg LCD | \\\n        redact_arg androidboot.id.jtag | \\\n        redact_arg androidboot.em.did\n}\n\n# Add delay for error visibility\non_error() {\n    e=$?\n    sleep 5\n    return $e\n}\n\nsave_logs() {\n    saving_logs=true\n\n    # Gather system info\n    # This is best-effort and does not strictly need to be present, so suppress errors here.\n    set +e\n    cat /proc/interrupts > /tmp/post_bench_interrupts.txt\n    cat /proc/cmdline | redact_args > /tmp/cmdline.txt\n    cat /proc/cpuinfo > /tmp/cpuinfo.txt\n    dmesg | redact_args > /tmp/kernel.log\n    uptime > /tmp/uptime.txt\n    ps -A > /tmp/processes.txt\n    echo \"Kernel: $(cat /proc/version)\" > /tmp/versions.txt\n    echo \"Python: $(python3 --version)\" >> /tmp/versions.txt\n    echo \"Model: $(cat /sys/firmware/devicetree/base/model | tr '\\0' ';')\" > /tmp/device.txt\n    echo \"Compatible: $(cat /sys/firmware/devicetree/base/compatible | tr '\\0' ';')\" >> /tmp/device.txt\n\n    mkdir /tmp/cpufreq_stats\n    for policy in /sys/devices/system/cpu/cpufreq/policy*\n    do\n        pol_dir=\"/tmp/cpufreq_stats/$(basename \"$policy\" | sed 's/policy//')\"\n        mkdir \"$pol_dir\"\n        # Frequency domains with too many OPPs will fail here\n        cp \"$policy/stats/\"{time_in_state,total_trans,trans_table} \"$pol_dir\" 2> /dev/null || true\n    done\n    set -e\n\n    mkdir /persist\n    persist_part=\"$(find_part_by_name cache || find_part_by_name persist)\"\n\n    # We write everything to tmpfs and copy it to persist afterwards because writing to UFS will use power\n    echo\n    mount -o noatime \"$persist_part\" /persist\n\n    echo \"Writing logs and results to $OUT_DIR\"\n    rm -fr \"$OUT_DIR\"\n    cp -r /tmp \"$OUT_DIR\"\n    umount /persist\n    sync\n\n    # Saving logs multiple times is fine as long as we don't try to recurse\n    saving_logs=false\n}\n\ntry_write() {\n    { echo \"$2\" > \"$1\"; } > /dev/null 2>&1 || true\n}\n\n# SSH debug over USB RNDIS\nset +e\nif $USB_DEBUG; then\n    source /usb.sh\nfi\nset -e\n\n# Disable fbcon cursor blinking to reduce interference from its 1-second timer and memory ops\ntry_write /sys/devices/virtual/graphics/fbcon/cursor_blink 0\n\n# Disable hung task detection\ntry_write /proc/sys/kernel/hung_task_timeout_secs 0\n\n# Snapdragon: Enable cpuidle for more realistic conditions\ntry_write /sys/module/lpm_levels/parameters/sleep_disabled 0\ntry_write /sys/module/msm_pm/parameters/sleep_disabled 0\n\n# Exynos: Disable Exynos auto-hotplug to allow manual CPU control\ntry_write /sys/power/cpuhotplug/enabled 0\ntry_write /sys/power/cpuhp/enabled 0\n\n# Snapdragon: Decrease delay of qpnp_fg to 1000ms to get proper results\ntry_write /sys/module/qpnp_fg/parameters/sram_update_period_ms 1000\n\n# Snapdragon: Initialize aDSP for power supply on newer SoCs\n# On Snapdragon 888 (Qualcomm kernel 5.4) devices and newer, the DSP is\n# responsible for power and charging, so we need to initialize it before we can\n# read power usage from the fuel gauge.\nif uname -r | grep -q '^5\\.' && grep -q Qualcomm /proc/cpuinfo; then\n    # qrtr nameserver is required for DSP services to work properly\n    qrtr-ns &\n\n    echo \"Booting DSP...\"\n    echo -n 1 > /sys/kernel/boot_adsp/boot\n    sleep 3\n    if [[ \"$(cat /sys/class/subsys/subsys_adsp/device/subsys*/state)\" != \"ONLINE\" ]]; then\n        echo \"Failed to boot aDSP!\"\n        exit 1\n    fi\nfi\n\ncat /proc/interrupts > /tmp/pre_bench_interrupts.txt\n\npy_args=()\nif ! $DEBUG; then\n    py_args+=(-OO)\nfi\npy_args+=(/bench.py \"$POWER_SAMPLE_INTERVAL\")\ntime taskset 01 python3 \"${py_args[@]}\" 2>&1 | tee /tmp/run.log || on_error\n\nsave_logs\n\n# To debug system load\n#htop\n\nreboot_end\n"
  },
  {
    "path": "mkbootimg.py",
    "content": "#!/usr/bin/env python\n# Copyright 2015, The Android Open Source Project\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nfrom __future__ import print_function\n\nfrom argparse import ArgumentParser, FileType, Action\nfrom hashlib import sha1\nfrom os import fstat\nimport re\nfrom struct import pack\n\n\nBOOT_IMAGE_HEADER_V3_PAGESIZE = 4096\n\ndef filesize(f):\n    if f is None:\n        return 0\n    try:\n        return fstat(f.fileno()).st_size\n    except OSError:\n        return 0\n\n\ndef update_sha(sha, f):\n    if f:\n        sha.update(f.read())\n        f.seek(0)\n        sha.update(pack('I', filesize(f)))\n    else:\n        sha.update(pack('I', 0))\n\n\ndef pad_file(f, padding):\n    pad = (padding - (f.tell() & (padding - 1))) & (padding - 1)\n    f.write(pack(str(pad) + 'x'))\n\n\ndef get_number_of_pages(image_size, page_size):\n    \"\"\"calculates the number of pages required for the image\"\"\"\n    return (image_size + page_size - 1) / page_size\n\n\ndef get_recovery_dtbo_offset(args):\n    \"\"\"calculates the offset of recovery_dtbo image in the boot image\"\"\"\n    num_header_pages = 1 # header occupies a page\n    num_kernel_pages = get_number_of_pages(filesize(args.kernel), args.pagesize)\n    num_ramdisk_pages = get_number_of_pages(filesize(args.ramdisk), args.pagesize)\n    num_second_pages = get_number_of_pages(filesize(args.second), args.pagesize)\n    dtbo_offset = args.pagesize * (num_header_pages + num_kernel_pages +\n                                   num_ramdisk_pages + num_second_pages)\n    return dtbo_offset\n\n\ndef write_header_v3(args):\n    BOOT_IMAGE_HEADER_V3_SIZE = 1580\n    BOOT_MAGIC = 'ANDROID!'.encode()\n\n    args.output.write(pack('8s', BOOT_MAGIC))\n    args.output.write(pack(\n        '4I',\n        filesize(args.kernel),                          # kernel size in bytes\n        filesize(args.ramdisk),                         # ramdisk size in bytes\n        (args.os_version << 11) | args.os_patch_level,  # os version and patch level\n        BOOT_IMAGE_HEADER_V3_SIZE))\n\n    args.output.write(pack('4I', 0, 0, 0, 0))           # reserved\n\n    args.output.write(pack('I', args.header_version))   # version of bootimage header\n    args.output.write(pack('1536s', args.cmdline.encode()))\n    pad_file(args.output, BOOT_IMAGE_HEADER_V3_PAGESIZE)\n\ndef write_vendor_boot_header(args):\n    VENDOR_BOOT_IMAGE_HEADER_V3_SIZE = 2112\n    BOOT_MAGIC = 'VNDRBOOT'.encode()\n\n    args.vendor_boot.write(pack('8s', BOOT_MAGIC))\n    args.vendor_boot.write(pack(\n        '5I',\n        args.header_version,                            # version of header\n        args.pagesize,                                  # flash page size we assume\n        args.base + args.kernel_offset,                 # kernel physical load addr\n        args.base + args.ramdisk_offset,                # ramdisk physical load addr\n        filesize(args.vendor_ramdisk)))                 # vendor ramdisk size in bytes\n    args.vendor_boot.write(pack('2048s', args.vendor_cmdline.encode()))\n    args.vendor_boot.write(pack('I', args.base + args.tags_offset)) # physical addr for kernel tags\n    args.vendor_boot.write(pack('16s', args.board.encode())) # asciiz product name\n    args.vendor_boot.write(pack('I', VENDOR_BOOT_IMAGE_HEADER_V3_SIZE)) # header size in bytes\n    if filesize(args.dtb) == 0:\n        raise ValueError(\"DTB image must not be empty.\")\n    args.vendor_boot.write(pack('I', filesize(args.dtb)))   # size in bytes\n    args.vendor_boot.write(pack('Q', args.base + args.dtb_offset)) # dtb physical load address\n    pad_file(args.vendor_boot, args.pagesize)\n\ndef write_header(args):\n    BOOT_IMAGE_HEADER_V1_SIZE = 1648\n    BOOT_IMAGE_HEADER_V2_SIZE = 1660\n    BOOT_MAGIC = 'ANDROID!'.encode()\n\n    if args.header_version > 3:\n        raise ValueError('Boot header version %d not supported' % args.header_version)\n    elif args.header_version == 3:\n        return write_header_v3(args)\n\n    args.output.write(pack('8s', BOOT_MAGIC))\n    final_ramdisk_offset = (args.base + args.ramdisk_offset) if filesize(args.ramdisk) > 0 else 0\n    final_second_offset = (args.base + args.second_offset) if filesize(args.second) > 0 else 0\n    args.output.write(pack(\n        '10I',\n        filesize(args.kernel),                          # size in bytes\n        args.base + args.kernel_offset,                 # physical load addr\n        filesize(args.ramdisk),                         # size in bytes\n        final_ramdisk_offset,                           # physical load addr\n        filesize(args.second),                          # size in bytes\n        final_second_offset,                            # physical load addr\n        args.base + args.tags_offset,                   # physical addr for kernel tags\n        args.pagesize,                                  # flash page size we assume\n        args.header_version,                            # version of bootimage header\n        (args.os_version << 11) | args.os_patch_level)) # os version and patch level\n    args.output.write(pack('16s', args.board.encode())) # asciiz product name\n    args.output.write(pack('512s', args.cmdline[:512].encode()))\n\n    sha = sha1()\n    update_sha(sha, args.kernel)\n    update_sha(sha, args.ramdisk)\n    update_sha(sha, args.second)\n\n    if args.header_version > 0:\n        update_sha(sha, args.recovery_dtbo)\n    if args.header_version > 1:\n        update_sha(sha, args.dtb)\n\n    img_id = pack('32s', sha.digest())\n\n    args.output.write(img_id)\n    args.output.write(pack('1024s', args.cmdline[512:].encode()))\n\n    if args.header_version > 0:\n        args.output.write(pack('I', filesize(args.recovery_dtbo)))   # size in bytes\n        if args.recovery_dtbo:\n            args.output.write(pack('Q', get_recovery_dtbo_offset(args))) # recovery dtbo offset\n        else:\n            args.output.write(pack('Q', 0)) # Will be set to 0 for devices without a recovery dtbo\n\n    # Populate boot image header size for header versions 1 and 2.\n    if args.header_version == 1:\n        args.output.write(pack('I', BOOT_IMAGE_HEADER_V1_SIZE))\n    elif args.header_version == 2:\n        args.output.write(pack('I', BOOT_IMAGE_HEADER_V2_SIZE))\n\n    if args.header_version > 1:\n\n        if filesize(args.dtb) == 0:\n            raise ValueError(\"DTB image must not be empty.\")\n\n        args.output.write(pack('I', filesize(args.dtb)))   # size in bytes\n        args.output.write(pack('Q', args.base + args.dtb_offset)) # dtb physical load address\n    pad_file(args.output, args.pagesize)\n    return img_id\n\n\nclass ValidateStrLenAction(Action):\n    def __init__(self, option_strings, dest, nargs=None, **kwargs):\n        if 'maxlen' not in kwargs:\n            raise ValueError('maxlen must be set')\n        self.maxlen = int(kwargs['maxlen'])\n        del kwargs['maxlen']\n        super(ValidateStrLenAction, self).__init__(option_strings, dest, **kwargs)\n\n    def __call__(self, parser, namespace, values, option_string=None):\n        if len(values) > self.maxlen:\n            raise ValueError(\n                'String argument too long: max {0:d}, got {1:d}'.format(self.maxlen, len(values)))\n        setattr(namespace, self.dest, values)\n\n\ndef write_padded_file(f_out, f_in, padding):\n    if f_in is None:\n        return\n    f_out.write(f_in.read())\n    pad_file(f_out, padding)\n\n\ndef parse_int(x):\n    return int(x, 0)\n\n\ndef parse_os_version(x):\n    match = re.search(r'^(\\d{1,3})(?:\\.(\\d{1,3})(?:\\.(\\d{1,3}))?)?', x)\n    if match:\n        a = int(match.group(1))\n        b = c = 0\n        if match.lastindex >= 2:\n            b = int(match.group(2))\n        if match.lastindex == 3:\n            c = int(match.group(3))\n        # 7 bits allocated for each field\n        assert a < 128\n        assert b < 128\n        assert c < 128\n        return (a << 14) | (b << 7) | c\n    return 0\n\n\ndef parse_os_patch_level(x):\n    match = re.search(r'^(\\d{4})-(\\d{2})(?:-(\\d{2}))?', x)\n    if match:\n        y = int(match.group(1)) - 2000\n        m = int(match.group(2))\n        # 7 bits allocated for the year, 4 bits for the month\n        assert 0 <= y < 128\n        assert 0 < m <= 12\n        return (y << 4) | m\n    return 0\n\n\ndef parse_cmdline():\n    parser = ArgumentParser()\n    parser.add_argument('--kernel', help='path to the kernel', type=FileType('rb'))\n    parser.add_argument('--ramdisk', help='path to the ramdisk', type=FileType('rb'))\n    parser.add_argument('--second', help='path to the 2nd bootloader', type=FileType('rb'))\n    parser.add_argument('--dtb', help='path to dtb', type=FileType('rb'))\n    recovery_dtbo_group = parser.add_mutually_exclusive_group()\n    recovery_dtbo_group.add_argument('--recovery_dtbo', help='path to the recovery DTBO',\n                                     type=FileType('rb'))\n    recovery_dtbo_group.add_argument('--recovery_acpio', help='path to the recovery ACPIO',\n                                     type=FileType('rb'), metavar='RECOVERY_ACPIO',\n                                     dest='recovery_dtbo')\n    parser.add_argument('--cmdline', help='extra arguments to be passed on the '\n                        'kernel command line', default='', action=ValidateStrLenAction, maxlen=1536)\n    parser.add_argument('--vendor_cmdline',\n                        help='kernel command line arguments contained in vendor boot',\n                        default='', action=ValidateStrLenAction, maxlen=2048)\n    parser.add_argument('--base', help='base address', type=parse_int, default=0x10000000)\n    parser.add_argument('--kernel_offset', help='kernel offset', type=parse_int, default=0x00008000)\n    parser.add_argument('--ramdisk_offset', help='ramdisk offset', type=parse_int,\n                        default=0x01000000)\n    parser.add_argument('--second_offset', help='2nd bootloader offset', type=parse_int,\n                        default=0x00f00000)\n    parser.add_argument('--dtb_offset', help='dtb offset', type=parse_int, default=0x01f00000)\n\n    parser.add_argument('--os_version', help='operating system version', type=parse_os_version,\n                        default=0)\n    parser.add_argument('--os_patch_level', help='operating system patch level',\n                        type=parse_os_patch_level, default=0)\n    parser.add_argument('--tags_offset', help='tags offset', type=parse_int, default=0x00000100)\n    parser.add_argument('--board', help='board name', default='', action=ValidateStrLenAction,\n                        maxlen=16)\n    parser.add_argument('--pagesize', help='page size', type=parse_int,\n                        choices=[2**i for i in range(11, 15)], default=2048)\n    parser.add_argument('--id', help='print the image ID on standard output',\n                        action='store_true')\n    parser.add_argument('--header_version', help='boot image header version', type=parse_int,\n                        default=0)\n    parser.add_argument('-o', '--output', help='output file name', type=FileType('wb'))\n    parser.add_argument('--vendor_boot', help='vendor boot output file name', type=FileType('wb'))\n    parser.add_argument('--vendor_ramdisk', help='path to the vendor ramdisk', type=FileType('rb'))\n\n    return parser.parse_args()\n\n\ndef write_data(args, pagesize):\n    write_padded_file(args.output, args.kernel, pagesize)\n    write_padded_file(args.output, args.ramdisk, pagesize)\n    write_padded_file(args.output, args.second, pagesize)\n\n    if args.header_version > 0 and args.header_version < 3:\n        write_padded_file(args.output, args.recovery_dtbo, pagesize)\n    if args.header_version == 2:\n        write_padded_file(args.output, args.dtb, pagesize)\n\n\ndef write_vendor_boot_data(args):\n    write_padded_file(args.vendor_boot, args.vendor_ramdisk, args.pagesize)\n    write_padded_file(args.vendor_boot, args.dtb, args.pagesize)\n\n\ndef main():\n    args = parse_cmdline()\n    if args.vendor_boot is not None:\n        if args.header_version < 3:\n            raise ValueError('--vendor_boot not compatible with given header version')\n        if args.vendor_ramdisk is None:\n            raise ValueError('--vendor_ramdisk missing or invalid')\n        write_vendor_boot_header(args)\n        write_vendor_boot_data(args)\n    if args.output is not None:\n        if args.kernel is None:\n            raise ValueError('kernel must be supplied when creating a boot image')\n        if args.second is not None and args.header_version > 2:\n            raise ValueError('--second not compatible with given header version')\n        img_id = write_header(args)\n        if args.header_version > 2:\n            write_data(args, BOOT_IMAGE_HEADER_V3_PAGESIZE)\n        else:\n            write_data(args, args.pagesize)\n        if args.id and img_id is not None:\n            # Python 2's struct.pack returns a string, but py3 returns bytes.\n            if isinstance(img_id, str):\n                img_id = [ord(x) for x in img_id]\n            print('0x' + ''.join('{:02x}'.format(c) for c in img_id))\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "pack-img.sh",
    "content": "#!/usr/bin/env bash\n\noldwd=\"$PWD\"\ncd \"$(dirname \"$0\")\"\n\n./packrd-gz.sh\n\npython mkbootimg.py \\\n    --header_version 2 \\\n    --os_version 11.0.0 \\\n    --os_patch_level 2020-11 \\\n    --ramdisk rd-new.cpio.gz \\\n    --kernel alpine-Image.lz4 \\\n    --dtb alpine-dt.dtb \\\n    --cmdline 'console=ttyMSM0,115200n8 androidboot.console=ttyMSM0 printk.devkmsg=on msm_rtb.filter=0x237 ehci-hcd.park=3 service_locator.enable=1 androidboot.memcg=1 cgroup.memory=nokmem lpm_levels.sleep_disabled=1 usbcore.autosuspend=7 androidboot.usbcontroller=a600000.dwc3 swiotlb=2048 androidboot.boot_devices=soc/1d84000.ufshc loop.max_part=7 snd_soc_cs35l41_i2c.async_probe=1 i2c_qcom_geni.async_probe=1 st21nfc.async_probe=1 spmi_pmic_arb.async_probe=1 ufs_qcom.async_probe=1 buildvariant=user' \\\n    --kernel_offset 0x8000 \\\n    --ramdisk_offset 0x1000000 \\\n    --dtb_offset 0x1f00000 \\\n    --tags_offset 0x100 \\\n    --pagesize 4096 \\\n    --output \"$oldwd/${1:-bench.img}\"\n"
  },
  {
    "path": "pack-zip.sh",
    "content": "#!/usr/bin/env bash\n\noldwd=\"$PWD\"\ncd \"$(dirname \"$0\")\"\n\n./packrd-gz.sh\n\npushd anykernel\ncp ../rd-new.cpio.gz .\nrm -f \"$oldwd/freqbench-installer.zip\"\nzip -r0 \"$oldwd/freqbench-installer.zip\" .\npopd\n"
  },
  {
    "path": "packrd-gz.sh",
    "content": "#!/usr/bin/env bash\n\nset -eufo pipefail\n\ncd \"$(dirname \"$0\")\"\n\nif command -v pigz > /dev/null 2>&1; then\n    GZIP=\"pigz\"\nelse\n    GZIP=\"gzip\"\nfi\n\ncp -af init.sh rd/init\ncp -af config.sh usb.sh bench.py dhcpd.conf rd/\nmkdir -p rd/{tmp,sys,srv,run,root,proc,opt,mnt,home,dev}\nmkdir -p rd/var/{tmp,opt,mail,log,local,empty}\n\noldwd=\"$PWD\"\ncd rd\nfind . | cpio -o -H newc | \"$GZIP\" -9c > \"$oldwd/rd-new.cpio.gz\"\n"
  },
  {
    "path": "postprocess/cross_cpu_cluster_graph.py",
    "content": "#!/usr/bin/env python3\n\nimport json\nimport csv\nimport sys\nimport matplotlib.pyplot as plt\n\nCPU_LABELS = {\n    1: \"Little\",\n    4: \"Big\",\n    6: \"Big\",\n    7: \"Prime\"\n}\n\nCOL_LABELS = {\n    \"power_mean\": \"Power (mW)\",\n    \"coremark_score\": \"Performance (iter/s)\",\n    \"energy_joules\": \"Energy (J)\",\n    \"energy_millijoules\": \"Energy (mJ)\",\n    \"elapsed_sec\": \"Time (s)\",\n    \"coremarks_per_mhz\": \"CoreMarks/MHz\",\n    \"ulpmark_cm_score\": \"ULPMark-CM (iter/mJ)\",\n}\n\nflags = set()\nsocs = {}\nfreq_load = \"active\"\ncol_name = None\nfor i, arg in enumerate(sys.argv[1:]):\n    if \":\" in arg:\n        name, path = arg.split(\":\")\n        with open(path, \"r\") as f:\n            socs[name] = json.loads(f.read())\n    elif \"+\" in arg:\n        flag = arg[1:]\n        flags.add(flag)\n    elif \"/\" in arg:\n        freq_load, col_name = arg.split(\"/\")\n    else:\n        col_name = arg\n\ncol_label = COL_LABELS[col_name] if col_name in COL_LABELS else col_name\nplt.ylabel(col_label)\nplt.xlabel(\"Frequency (MHz)\")\nplt.title(col_label)\n\nfor soc_i, (soc, soc_data) in enumerate(socs.items()):\n    cpus_data = soc_data[\"cpus\"]\n    for cpu, cpu_data in cpus_data.items():\n        cpu = int(cpu)\n\n        freqs = [int(freq) / 1000 for freq in cpu_data[\"freqs\"].keys()]\n        raw_values = [freq_data[freq_load][col_name] for freq_data in cpu_data[\"freqs\"].values()]\n        values = []\n        for freq, freq_data in cpu_data[\"freqs\"].items():\n            if \"minscl\" in flags:\n                curv = freq_data[freq_load][col_name]\n                minv = min(raw_values)\n                values.append(curv - minv)\n            else:\n                values.append(freq_data[freq_load][col_name])\n\n        cpu_label = CPU_LABELS[cpu] if cpu in CPU_LABELS else f\"CPU {cpu}\"\n        val_label = f\"{soc} {cpu_label}\"\n        color = f\"C{soc_i}\"\n\n        if \"soccolor\" in flags:\n            plt.plot(freqs, values, color, label=val_label)\n        else:\n            plt.plot(freqs, values, label=val_label)\n\nplt.legend()\nplt.show()\n"
  },
  {
    "path": "postprocess/cross_cpu_voltage_graph.py",
    "content": "#!/usr/bin/env python3\n\nimport sys\nimport matplotlib.pyplot as plt\nimport re\nimport collections\n\nCPU_LABELS = {\n    1: \"Little\",\n    4: \"Big\",\n    6: \"Big\",\n    7: \"Prime\"\n}\n\nflags = set()\nsocs = {}\nfreq_load = \"active\"\ncol_name = None\nfor i, arg in enumerate(sys.argv[1:]):\n    if \":\" in arg:\n        name, path = arg.split(\":\")\n        with open(path, \"r\") as f:\n            socs[name] = [[int(v) for v in re.split(r\"[\\.=]\", opp)] for opp in f.read().strip().split(\" \")]\n    elif \"+\" in arg:\n        flag = arg[1:]\n        flags.add(flag)\n\nplt.ylabel(\"Voltage (mV)\")\nplt.xlabel(\"Frequency (MHz)\")\nplt.title(\"CPU Voltages\")\n\nfor soc_i, (soc, soc_data) in enumerate(socs.items()):\n    cpu_freqs = collections.defaultdict(list)\n    cpu_volts = collections.defaultdict(list)\n\n    for cpu, freq, volt in soc_data:\n        freq /= 1000\n        volt /= 1000\n\n        cpu_freqs[cpu].append(freq)\n        cpu_volts[cpu].append(volt)\n\n    for cpu, freqs in cpu_freqs.items():\n        volts = cpu_volts[cpu]\n\n        cpu_label = CPU_LABELS[cpu] if cpu in CPU_LABELS else f\"CPU {cpu}\"\n        val_label = f\"{soc} {cpu_label}\"\n        color = f\"C{soc_i}\"\n\n        if \"soccolor\" in flags:\n            plt.plot(freqs, volts, color, label=val_label)\n        else:\n            plt.plot(freqs, volts, label=val_label)\n\nplt.legend()\nplt.show()\n"
  },
  {
    "path": "postprocess/efficient_freqs.py",
    "content": "#!/usr/bin/env python3\n\nimport json\nimport sys\n\nwith open(sys.argv[1], \"r\") as f:\n    json_data = json.loads(f.read())\n\ncpus_data = json_data[\"cpus\"]\nfor cpu, cpu_data in cpus_data.items():\n    cpu = int(cpu)\n    print(f\"cpu{cpu}:\")\n\n    eff_freqs = set()\n\n    # Start with the most efficient freq\n    freqs = cpu_data[\"freqs\"]\n    max_eff_freq, max_eff = max(\n        ((int(freq), freq_data[\"active\"][\"ulpmark_cm_score\"]) for freq, freq_data in freqs.items()),\n        key=lambda opp: opp[1]\n    )\n    print((max_eff_freq, max_eff))\n    eff_freqs.add(max_eff_freq)\n\n    # Add the max freq\n    max_freq = max(int(freq) for freq in freqs.keys())\n    max_freq_eff = freqs[str(max_freq)][\"active\"][\"ulpmark_cm_score\"]\n    eff_freqs.add(max_freq)\n\n    # Add efficient intermediate freqs\n    last_freq = max_eff_freq\n    freq_keys = list(map(int, freqs.keys()))\n    for freq_i, (freq, freq_data) in enumerate(freqs.items()):\n        freq = int(freq)\n        eff = freq_data[\"active\"][\"ulpmark_cm_score\"]\n\n        # Clock compensation: if 500 MHz passed with no freq step\n        if freq - last_freq < 500000:\n            # Ignore freqs slower than most efficient\n            if freq < max_eff_freq:\n                continue\n\n            # Less efficient than max freq\n            if eff < max_freq_eff:\n                continue\n\n            # Less efficient than next freq\n            #next_freq = freq_keys[min(freq_keys.index(freq) + 1, len(freqs) - 1)]\n            #if freqs[str(next_freq)][\"active\"][\"ulpmark_cm_score\"] >= eff:\n            #    continue\n\n        last_freq = freq\n        eff_freqs.add(freq)\n        print(freq)\n\n    # Remove inefficient freqs\n    ineff_freqs = freqs.keys() - eff_freqs\n    for freq in ineff_freqs:\n        del freqs[str(freq)]\n\n    print()\n\nwith open(sys.argv[2], \"w+\") as f:\n    f.write(json.dumps(json_data))\n"
  },
  {
    "path": "postprocess/filter_freqs.py",
    "content": "#!/usr/bin/env python3\n\nimport json\nimport sys\n\nwith open(sys.argv[1], \"r\") as f:\n    json_data = json.loads(f.read())\n\nallowed_opps = set(tuple(int(v) for v in opp.split(\".\")) for opp in sys.argv[3:])\ncpus_data = json_data[\"cpus\"]\nfor cpu, cpu_data in cpus_data.items():\n    cpu = int(cpu)\n    freqs = cpu_data[\"freqs\"]\n\n    remove_freqs = freqs.keys() - set(str(freq) for opp_cpu, freq in allowed_opps if opp_cpu == cpu)\n    for freq in remove_freqs:\n        del freqs[str(freq)]\n\nwith open(sys.argv[2], \"w+\") as f:\n    f.write(json.dumps(json_data))\n"
  },
  {
    "path": "postprocess/idle_csv.py",
    "content": "#!/usr/bin/env python3\n\nimport json\nimport csv\nimport sys\n\nwith open(sys.argv[1], \"r\") as f:\n    json_data = json.loads(f.read())\n\ncpus_data = json_data[\"cpus\"]\n\nwith open(sys.argv[2], \"w+\") as f:\n    fields = [\n        \"CPU\",\n        \"Frequency (kHz)\",\n        \"Power (mW)\",\n        \"Energy (J)\"\n    ]\n\n    writer = csv.DictWriter(f, fieldnames=fields)\n    writer.writeheader()\n\n    for cpu, cpu_data in cpus_data.items():\n        for freq, freq_data in cpu_data[\"freqs\"].items():\n            freq_data = freq_data[\"idle\"]\n\n            writer.writerow({\n                \"CPU\": cpu,\n                \"Frequency (kHz)\": freq,\n                \"Power (mW)\": freq_data[\"power_mean\"],\n                \"Energy (J)\": freq_data[\"energy_joules\"],\n            })\n"
  },
  {
    "path": "postprocess/legacy_energy_model.py",
    "content": "#!/usr/bin/env python3\n\nimport json\nimport sys\nimport re\nimport statistics\n\nwith open(sys.argv[1], \"r\") as f:\n    json_data = json.loads(f.read())\n\nif len(sys.argv) > 2:\n    key_type, value_type = sys.argv[2].split(\"/\")\nelse:\n    key_type = \"freq\"\n    value_type = \"power\"\n\nif len(sys.argv) > 3:\n    old_model = {\"core\": [], \"cluster\": []}\n\n    # Example:\n    # {\n    #     \"core\": [\n    #         {\n    #             \"busy\": [1, 2, 3, 4, 5, 6],\n    #             \"idle\": [3, 2, 1],\n    #         },\n    #         {\n    #             \"busy\": [10, 20, 30, 40, 50, 60],\n    #             \"idle\": [5, 3, 2],\n    #         },\n    #     ],\n    #     \"cluster\": [\n    #         {\n    #             \"busy\": [1, 1, 1, 2, 3, 3],\n    #             \"idle\": [2, 2, 1],\n    #         },\n    #         {\n    #             \"busy\": [2, 2, 3, 4, 4, 5],\n    #             \"idle\": [4, 2, 1],\n    #         },\n    #     ],\n    # }\n\n    with open(sys.argv[3], \"r\") as f:\n        old_dtsi = f.read().split(\"\\n\")\n\n    # Rudimentary line-by-line DTS parser, will break with unexpected data\n    cpu_i = -1\n    data_block = None\n    cost_block = None\n    for line in old_dtsi:\n        match = re.search(r\"(core|cluster)-cost(\\d+)\\s+\\{\", line)\n        if match:\n            new_data_block = match.group(1)\n            if new_data_block == data_block:\n                cpu_i += 1\n            else:\n                cpu_i = 0\n\n            data_block = new_data_block\n            old_model[data_block].append({})\n            continue\n\n        match = re.search(r\"(busy|idle)-cost-data\\s+=\", line)\n        if match:\n            cost_block = match.group(1)\n            old_model[data_block][cpu_i][cost_block] = []\n            continue\n\n        if cost_block == \"busy\":\n            match = re.search(r\"^\\s*(\\d+)\\s+(\\d+)\\s*$\", line)\n            if match:\n                key = int(match.group(1))\n                value = int(match.group(2))\n\n                # Ignore keys (cap/freq) and use indices instead\n                # Assumption: all freqs are present in both\n                old_model[data_block][cpu_i][\"busy\"].append(value)\n        elif cost_block == \"idle\":\n            if re.match(r\"^\\s*(?:\\d+\\s*)+$\", line):\n                # Extend array to accomodate single-line costs, e.g. qcom format\n                idle_costs = [int(cost) for cost in re.split(r\"\\s+\", line.strip())]\n                old_model[data_block][cpu_i][\"idle\"] += idle_costs\n\n        if re.match(r\"^\\s*>;\\s*$\", line):\n            cost_block = None\nelse:\n    old_model = None\n\ncpus_data = json_data[\"cpus\"]\nDTS_HEADER = \"\"\"/*\n * Auto-generated legacy EAS energy model for incorporation in SoC device tree.\n * Generated by freqbench postprocessing scripts using freqbench results.\n * More info at https://github.com/kdrag0n/freqbench\n */\n\n/ {\n\\tcpus {\"\"\"\n\nprint(DTS_HEADER, end=\"\")\n\n# Performance efficiency\nunscaled_cpu_cm_mhz = {}\nfor cpu, cpu_data in cpus_data.items():\n    last_freq, last_freq_data = max(cpu_data[\"freqs\"].items(), key=lambda f: f[0])\n    cm_mhz = last_freq_data[\"active\"][\"coremarks_per_mhz\"]\n    unscaled_cpu_cm_mhz[int(cpu)] = cm_mhz\n\n# Scale performance efficiency\nmax_cm_mhz = max(unscaled_cpu_cm_mhz.values())\nscaled_cpu_cm_mhz = {\n    cpu: cm_mhz / max_cm_mhz * 1024\n    for cpu, cm_mhz in unscaled_cpu_cm_mhz.items()\n}\n\n# Pass 1: performance efficiency (for capacity scaling)\nfor cpu, cpu_data in cpus_data.items():\n    cpu = int(cpu)\n\n    cm_mhz_norm = scaled_cpu_cm_mhz[cpu]\n\n    lb = \"{\"\n    rb = \"}\"\n    print(f\"\"\"\n\\t\\tcpu@{0 if cpu == 1 else cpu} {lb}\n\\t\\t\\tefficiency = <{cm_mhz_norm:.0f}>;\n\\t\\t\\tcapacity-dmips-mhz = <{cm_mhz_norm:.0f}>;\n\\t\\t{rb};\"\"\")\n\nprint(\"\"\"\\t};\n\n\\tenergy_costs: energy-costs {\n\\t\\tcompatible = \"sched-energy\";\"\"\")\n\nmax_perf = max(\n    max(freq[\"active\"][\"coremark_score\"]\n    for freq in cpu[\"freqs\"].values()) for cpu in cpus_data.values()\n)\n\n# Pass 2: core costs\ncore_cost_keys = []\nfor cpu_i, (cpu, cpu_data) in enumerate(cpus_data.items()):\n    cpu = int(cpu)\n    core_cost_keys.append([])\n\n    lb = \"{\"\n    rb = \"}\"\n    print(f\"\"\"\n\\t\\tCPU_COST_{cpu_i}: core-cost{cpu_i} {lb}\n\\t\\t\\tbusy-cost-data = <\"\"\")\n\n    for freq, freq_data in cpu_data[\"freqs\"].items():\n        freq = int(freq)\n\n        if value_type == \"power\":\n            value = freq_data[\"active\"][\"power_mean\"]\n        elif value_type == \"energy\":\n            value = freq_data[\"active\"][\"energy_millijoules\"]\n\n        if key_type == \"freq\":\n            key = freq\n            print(f\"\\t\\t\\t\\t{key: 8.0f}{value: 5.0f}\")\n        elif key_type == \"cap\":\n            # Floor to match CPU integer math\n            key = freq_data[\"active\"][\"coremark_score\"] / max_perf * 1024\n            print(f\"\\t\\t\\t\\t{key: 5.0f}{value: 5.0f}\")\n\n        core_cost_keys[cpu_i].append(key)\n\n    if old_model:\n        idle_costs = \" \".join(map(str, old_model[\"core\"][cpu_i][\"idle\"]))\n    else:\n        # Placeholder in lieu of real data\n        idle_costs = \"3 2 1\"\n\n    print(f\"\"\"\\t\\t\\t>;\n\\t\\t\\tidle-cost-data = <\n\\t\\t\\t\\t{idle_costs}\n\\t\\t\\t>;\n\\t\\t{rb};\"\"\")\n\n# Pass 3: cluster costs\nif old_model:\n    for cpu_i, new_keys in enumerate(core_cost_keys):\n        lb = \"{\"\n        rb = \"}\"\n        print(f\"\"\"\n\\t\\tCLUSTER_COST_{cpu_i}: cluster-cost{cpu_i} {lb}\n\\t\\t\\tbusy-cost-data = <\"\"\")\n\n        for cost_i, cost in enumerate(old_model[\"cluster\"][cpu_i][\"busy\"]):\n            # Ignore silently for now instead of logging to stderr to make copy-pasting easier\n            # This happens with qcom speed bin differences on newer SoCs\n            if cost_i >= len(new_keys):\n                continue\n\n            key = new_keys[cost_i]\n            print(f\"\\t\\t\\t\\t{key: 5.0f}{cost: 5.0f}\")\n\n        idle_costs = \" \".join(map(str, old_model[\"cluster\"][cpu_i][\"idle\"]))\n\n        print(f\"\"\"\\t\\t\\t>;\n\\t\\t\\tidle-cost-data = <\n\\t\\t\\t\\t{idle_costs}\n\\t\\t\\t>;\n\\t\\t{rb};\"\"\")\n\nprint(\"\"\"\\t};\n};\"\"\")\n"
  },
  {
    "path": "postprocess/requirements.txt",
    "content": "matplotlib\n"
  },
  {
    "path": "postprocess/simplified_energy_model.py",
    "content": "#!/usr/bin/env python3\n\nimport json\nimport csv\nimport sys\nimport re\nimport statistics\n\nwith open(sys.argv[1], \"r\") as f:\n    json_data = json.loads(f.read())\n\ncpus_data = json_data[\"cpus\"]\nDTS_HEADER = \"\"\"/*\n * Auto-generated simplified EAS energy model for incorporation in SoC device tree.\n * Generated by freqbench postprocessing scripts using freqbench results.\n * More info at https://github.com/kdrag0n/freqbench\n */\n\n/ {\n\\tcpus {\"\"\"\n\nprint(DTS_HEADER)\n\nmode = \"power\"\nvoltages = {}\nfor arg in sys.argv[2:]:\n    cluster, freq, voltage = map(int, re.split(r\"\\.|=\", arg))\n    voltages[(cluster, freq)] = voltage\n\n# Performance efficiency\nunscaled_cpu_cm_mhz = {}\nfor cpu, cpu_data in cpus_data.items():\n    last_freq, last_freq_data = max(cpu_data[\"freqs\"].items(), key=lambda f: f[0])\n    cm_mhz = last_freq_data[\"active\"][\"coremarks_per_mhz\"]\n    unscaled_cpu_cm_mhz[int(cpu)] = cm_mhz\n\n# Scale performance efficiency\nmax_cm_mhz = max(unscaled_cpu_cm_mhz.values())\nscaled_cpu_cm_mhz = {\n    cpu: cm_mhz / max_cm_mhz * 1024\n    for cpu, cm_mhz in unscaled_cpu_cm_mhz.items()\n}\n\nfor cpu, cpu_data in cpus_data.items():\n    cpu = int(cpu)\n\n    dpcs = []\n    for freq, freq_data in cpu_data[\"freqs\"].items():\n        freq = int(freq)\n\n        if (cpu, freq) not in voltages:\n            continue\n\n        if mode == \"power\":\n            # µW\n            cost = freq_data[\"active\"][\"power_mean\"] * 1000\n        elif mode == \"energy\":\n            cost = freq_data[\"active\"][\"energy_millijoules\"] * 10\n\n        mhz = freq / 1000\n        v = voltages[(cpu, freq)] / 1_000_000\n\n        dpc = cost / mhz / v**2\n        dpcs.append(dpc)\n\n    cm_mhz_norm = scaled_cpu_cm_mhz[cpu]\n    if dpcs:\n        dpc = statistics.mean(dpcs)\n    else:\n        dpc = 0\n\n    lb = \"{\"\n    rb = \"}\"\n    print(f\"\"\"\\t\\tcpu@{0 if cpu == 1 else cpu} {lb}\n\\t\\t\\tefficiency = <{cm_mhz_norm:.0f}>;\n\\t\\t\\tcapacity-dmips-mhz = <{cm_mhz_norm:.0f}>;\n\\t\\t\\tdynamic-power-coefficient = <{dpc:.0f}>;\n\\t\\t{rb};\n\"\"\")\n\nprint(\"\"\"\\t};\n};\"\"\")\n"
  },
  {
    "path": "postprocess/unified_cluster_col.py",
    "content": "#!/usr/bin/env python3\n\nimport json\nimport csv\nimport sys\n\nwith open(sys.argv[1], \"r\") as f:\n    json_data = json.loads(f.read())\n\ncol_name = sys.argv[2]\ncpus_data = json_data[\"cpus\"]\n\nwith open(sys.argv[3], \"w+\") as f:\n    fields = [\n        \"Frequency (kHz)\",\n        *[f\"CPU {cpu} {col_name}\" for cpu in cpus_data.keys()]\n    ]\n\n    writer = csv.DictWriter(f, fieldnames=fields)\n    writer.writeheader()\n\n    freqs = []\n\n    for cpu, cpu_data in cpus_data.items():\n        freqs += cpu_data[\"freqs\"].keys()\n\n    freqs.sort(reverse=True)\n    for freq in freqs:\n        row = {\n            \"Frequency (kHz)\": freq\n        }\n\n        for cpu, cpu_data in cpus_data.items():\n            if freq in cpu_data[\"freqs\"]:\n                row[f\"CPU {cpu} {col_name}\"] = str(cpu_data[\"freqs\"][freq][\"active\"][col_name])\n            else:\n                row[f\"CPU {cpu} {col_name}\"] = \"\"\n\n        writer.writerow(row)\n"
  },
  {
    "path": "postprocess/unified_cluster_graph.py",
    "content": "#!/usr/bin/env python3\n\nimport json\nimport csv\nimport sys\nimport matplotlib.pyplot as plt\n\nwith open(sys.argv[1], \"r\") as f:\n    json_data = json.loads(f.read())\n\nCPU_LABELS = {\n    1: \"Little\",\n    4: \"Big\",\n    6: \"Big\",\n    7: \"Prime\"\n}\n\nCOL_LABELS = {\n    \"power_mean\": \"Power (mW)\",\n    \"coremark_score\": \"Performance (iter/s)\",\n    \"energy_joules\": \"Energy (J)\",\n    \"energy_millijoules\": \"Energy (mJ)\",\n    \"elapsed_sec\": \"Time (s)\",\n    \"coremarks_per_mhz\": \"CoreMarks/MHz\",\n    \"ulpmark_cm_score\": \"ULPMark-CM (iter/mJ)\",\n}\n\ncol_name = sys.argv[2]\ncpus_data = json_data[\"cpus\"]\n\ncol_label = COL_LABELS[col_name] if col_name in COL_LABELS else col_name\nplt.ylabel(col_label)\nplt.xlabel(\"Frequency (MHz)\")\nif len(sys.argv) > 3:\n    plt.title(sys.argv[3])\nelse:\n    plt.title(col_label)\n\nfor cpu, cpu_data in cpus_data.items():\n    cpu = int(cpu)\n\n    freqs = [int(freq) / 1000 for freq in cpu_data[\"freqs\"].keys()]\n    values = [freq_data[\"active\"][col_name] for freq_data in cpu_data[\"freqs\"].values()]\n    cpu_label = CPU_LABELS[cpu] if cpu in CPU_LABELS else f\"CPU {cpu}\"\n\n    plt.plot(freqs, values, label=cpu_label)\n\nplt.legend()\nplt.show()\n"
  },
  {
    "path": "rd/dev/null",
    "content": ""
  },
  {
    "path": "rd/etc/alpine-release",
    "content": "3.12.0\n"
  },
  {
    "path": "rd/etc/apk/arch",
    "content": "aarch64\n"
  },
  {
    "path": "rd/etc/apk/keys/alpine-devel@lists.alpinelinux.org-524d27bb.rsa.pub",
    "content": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr8s1q88XpuJWLCZALdKj\nlN8wg2ePB2T9aIcaxryYE/Jkmtu+ZQ5zKq6BT3y/udt5jAsMrhHTwroOjIsF9DeG\ne8Y3vjz+Hh4L8a7hZDaw8jy3CPag47L7nsZFwQOIo2Cl1SnzUc6/owoyjRU7ab0p\niWG5HK8IfiybRbZxnEbNAfT4R53hyI6z5FhyXGS2Ld8zCoU/R4E1P0CUuXKEN4p0\n64dyeUoOLXEWHjgKiU1mElIQj3k/IF02W89gDj285YgwqA49deLUM7QOd53QLnx+\nxrIrPv3A+eyXMFgexNwCKQU9ZdmWa00MjjHlegSGK8Y2NPnRoXhzqSP9T9i2HiXL\nVQIDAQAB\n-----END PUBLIC KEY-----\n"
  },
  {
    "path": "rd/etc/apk/keys/alpine-devel@lists.alpinelinux.org-58199dcc.rsa.pub",
    "content": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3v8/ye/V/t5xf4JiXLXa\nhWFRozsnmn3hobON20GdmkrzKzO/eUqPOKTpg2GtvBhK30fu5oY5uN2ORiv2Y2ht\neLiZ9HVz3XP8Fm9frha60B7KNu66FO5P2o3i+E+DWTPqqPcCG6t4Znk2BypILcit\nwiPKTsgbBQR2qo/cO01eLLdt6oOzAaF94NH0656kvRewdo6HG4urbO46tCAizvCR\nCA7KGFMyad8WdKkTjxh8YLDLoOCtoZmXmQAiwfRe9pKXRH/XXGop8SYptLqyVVQ+\ntegOD9wRs2tOlgcLx4F/uMzHN7uoho6okBPiifRX+Pf38Vx+ozXh056tjmdZkCaV\naQIDAQAB\n-----END PUBLIC KEY-----\n"
  },
  {
    "path": "rd/etc/apk/repositories",
    "content": "http://dl-cdn.alpinelinux.org/alpine/v3.12/main\nhttp://dl-cdn.alpinelinux.org/alpine/v3.12/community\n"
  },
  {
    "path": "rd/etc/apk/world",
    "content": "alpine-baselayout\nalpine-keys\napk-tools\nbash\nbusybox\ndhcp\ndropbear\nhtop\nlibc-utils\npython3\nsgdisk\nutil-linux\n"
  },
  {
    "path": "rd/etc/crontabs/root",
    "content": "# do daily/weekly/monthly maintenance\n# min\thour\tday\tmonth\tweekday\tcommand\n*/15\t*\t*\t*\t*\trun-parts /etc/periodic/15min\n0\t*\t*\t*\t*\trun-parts /etc/periodic/hourly\n0\t2\t*\t*\t*\trun-parts /etc/periodic/daily\n0\t3\t*\t*\t6\trun-parts /etc/periodic/weekly\n0\t5\t1\t*\t*\trun-parts /etc/periodic/monthly\n\n"
  },
  {
    "path": "rd/etc/dhcp/dhcpd.conf.example",
    "content": "# dhcpd.conf\n#\n# Sample configuration file for ISC dhcpd\n#\n\n# option definitions common to all supported networks...\noption domain-name \"example.org\";\noption domain-name-servers ns1.example.org, ns2.example.org;\n\ndefault-lease-time 600;\nmax-lease-time 7200;\n\n# Use this to enble / disable dynamic dns updates globally.\n#ddns-update-style none;\n\n# If this DHCP server is the official DHCP server for the local\n# network, the authoritative directive should be uncommented.\n#authoritative;\n\n# Use this to send dhcp log messages to a different log file (you also\n# have to hack syslog.conf to complete the redirection).\nlog-facility local7;\n\n# No service will be given on this subnet, but declaring it helps the \n# DHCP server to understand the network topology.\n\nsubnet 10.152.187.0 netmask 255.255.255.0 {\n}\n\n# This is a very basic subnet declaration.\n\nsubnet 10.254.239.0 netmask 255.255.255.224 {\n  range 10.254.239.10 10.254.239.20;\n  option routers rtr-239-0-1.example.org, rtr-239-0-2.example.org;\n}\n\n# This declaration allows BOOTP clients to get dynamic addresses,\n# which we don't really recommend.\n\nsubnet 10.254.239.32 netmask 255.255.255.224 {\n  range dynamic-bootp 10.254.239.40 10.254.239.60;\n  option broadcast-address 10.254.239.31;\n  option routers rtr-239-32-1.example.org;\n}\n\n# A slightly different configuration for an internal subnet.\nsubnet 10.5.5.0 netmask 255.255.255.224 {\n  range 10.5.5.26 10.5.5.30;\n  option domain-name-servers ns1.internal.example.org;\n  option domain-name \"internal.example.org\";\n  option routers 10.5.5.1;\n  option broadcast-address 10.5.5.31;\n  default-lease-time 600;\n  max-lease-time 7200;\n}\n\n# Hosts which require special configuration options can be listed in\n# host statements.   If no address is specified, the address will be\n# allocated dynamically (if possible), but the host-specific information\n# will still come from the host declaration.\n\nhost passacaglia {\n  hardware ethernet 0:0:c0:5d:bd:95;\n  filename \"vmunix.passacaglia\";\n  server-name \"toccata.example.com\";\n}\n\n# Fixed IP addresses can also be specified for hosts.   These addresses\n# should not also be listed as being available for dynamic assignment.\n# Hosts for which fixed IP addresses have been specified can boot using\n# BOOTP or DHCP.   Hosts for which no fixed address is specified can only\n# be booted with DHCP, unless there is an address range on the subnet\n# to which a BOOTP client is connected which has the dynamic-bootp flag\n# set.\nhost fantasia {\n  hardware ethernet 08:00:07:26:c0:a5;\n  fixed-address fantasia.example.com;\n}\n\n# You can declare a class of clients and then do address allocation\n# based on that.   The example below shows a case where all clients\n# in a certain class get addresses on the 10.17.224/24 subnet, and all\n# other clients get addresses on the 10.0.29/24 subnet.\n\nclass \"foo\" {\n  match if substring (option vendor-class-identifier, 0, 4) = \"SUNW\";\n}\n\nshared-network 224-29 {\n  subnet 10.17.224.0 netmask 255.255.255.0 {\n    option routers rtr-224.example.org;\n  }\n  subnet 10.0.29.0 netmask 255.255.255.0 {\n    option routers rtr-29.example.org;\n  }\n  pool {\n    allow members of \"foo\";\n    range 10.17.224.10 10.17.224.250;\n  }\n  pool {\n    deny members of \"foo\";\n    range 10.0.29.10 10.0.29.230;\n  }\n}\n"
  },
  {
    "path": "rd/etc/fstab",
    "content": "/dev/cdrom\t/media/cdrom\tiso9660\tnoauto,ro 0 0\n/dev/usbdisk\t/media/usb\tvfat\tnoauto,ro 0 0\n"
  },
  {
    "path": "rd/etc/group",
    "content": "root:x:0:root\nbin:x:1:root,bin,daemon\ndaemon:x:2:root,bin,daemon\nsys:x:3:root,bin,adm\nadm:x:4:root,adm,daemon\ntty:x:5:\ndisk:x:6:root,adm\nlp:x:7:lp\nmem:x:8:\nkmem:x:9:\nwheel:x:10:root\nfloppy:x:11:root\nmail:x:12:mail\nnews:x:13:news\nuucp:x:14:uucp\nman:x:15:man\ncron:x:16:cron\nconsole:x:17:\naudio:x:18:\ncdrom:x:19:\ndialout:x:20:root\nftp:x:21:\nsshd:x:22:\ninput:x:23:\nat:x:25:at\ntape:x:26:root\nvideo:x:27:root\nnetdev:x:28:\nreadproc:x:30:\nsquid:x:31:squid\nxfs:x:33:xfs\nkvm:x:34:kvm\ngames:x:35:\nshadow:x:42:\ncdrw:x:80:\nusb:x:85:\nvpopmail:x:89:\nusers:x:100:games\nntp:x:123:\nnofiles:x:200:\nsmmsp:x:209:smmsp\nlocate:x:245:\nabuild:x:300:\nutmp:x:406:\nping:x:999:\nnogroup:x:65533:\nnobody:x:65534:\ndhcp:x:101:dhcp\n"
  },
  {
    "path": "rd/etc/group-",
    "content": "root:x:0:root\nbin:x:1:root,bin,daemon\ndaemon:x:2:root,bin,daemon\nsys:x:3:root,bin,adm\nadm:x:4:root,adm,daemon\ntty:x:5:\ndisk:x:6:root,adm\nlp:x:7:lp\nmem:x:8:\nkmem:x:9:\nwheel:x:10:root\nfloppy:x:11:root\nmail:x:12:mail\nnews:x:13:news\nuucp:x:14:uucp\nman:x:15:man\ncron:x:16:cron\nconsole:x:17:\naudio:x:18:\ncdrom:x:19:\ndialout:x:20:root\nftp:x:21:\nsshd:x:22:\ninput:x:23:\nat:x:25:at\ntape:x:26:root\nvideo:x:27:root\nnetdev:x:28:\nreadproc:x:30:\nsquid:x:31:squid\nxfs:x:33:xfs\nkvm:x:34:kvm\ngames:x:35:\nshadow:x:42:\ncdrw:x:80:\nusb:x:85:\nvpopmail:x:89:\nusers:x:100:games\nntp:x:123:\nnofiles:x:200:\nsmmsp:x:209:smmsp\nlocate:x:245:\nabuild:x:300:\nutmp:x:406:\nping:x:999:\nnogroup:x:65533:\nnobody:x:65534:\ndhcp:x:101:\n"
  },
  {
    "path": "rd/etc/hostname",
    "content": "localhost\n"
  },
  {
    "path": "rd/etc/hosts",
    "content": "127.0.0.1\tlocalhost localhost.localdomain\n::1\t\tlocalhost localhost.localdomain\n"
  },
  {
    "path": "rd/etc/inittab",
    "content": "# /etc/inittab\n\n::sysinit:/sbin/openrc sysinit\n::sysinit:/sbin/openrc boot\n::wait:/sbin/openrc default\n\n# Set up a couple of getty's\ntty1::respawn:/sbin/getty 38400 tty1\ntty2::respawn:/sbin/getty 38400 tty2\ntty3::respawn:/sbin/getty 38400 tty3\ntty4::respawn:/sbin/getty 38400 tty4\ntty5::respawn:/sbin/getty 38400 tty5\ntty6::respawn:/sbin/getty 38400 tty6\n\n# Put a getty on the serial port\n#ttyS0::respawn:/sbin/getty -L ttyS0 115200 vt100\n\n# Stuff to do for the 3-finger salute\n::ctrlaltdel:/sbin/reboot\n\n# Stuff to do before rebooting\n::shutdown:/sbin/openrc shutdown\n\n"
  },
  {
    "path": "rd/etc/inputrc",
    "content": "# /etc/inputrc - global inputrc for libreadline\n# See readline(3readline) and `info rluserman' for more information.\n\n# Be 8 bit clean.\nset input-meta on\nset output-meta on\n\n# To allow the use of 8bit-characters like the german umlauts, uncomment\n# the line below. However this makes the meta key not work as a meta key,\n# which is annoying to those which don't need to type in 8-bit characters.\n\n# set convert-meta off\n\n# try to enable the application keypad when it is called.  Some systems\n# need this to enable the arrow keys.\n# set enable-keypad on\n\n# see /usr/share/doc/bash/inputrc.arrows for other codes of arrow keys\n\n# do not bell on tab-completion\n# set bell-style none\n# set bell-style visible\n\n# some defaults / modifications for the emacs mode\n$if mode=emacs\n\n# allow the use of the Home/End keys\n\"\\e[1~\": beginning-of-line\n\"\\e[4~\": end-of-line\n\n# allow the use of the Delete/Insert keys\n\"\\e[3~\": delete-char\n\"\\e[2~\": quoted-insert\n\n# mappings for \"page up\" and \"page down\" to step to the beginning/end\n# of the history\n# \"\\e[5~\": beginning-of-history\n# \"\\e[6~\": end-of-history\n\n# alternate mappings for \"page up\" and \"page down\" to search the history\n# \"\\e[5~\": history-search-backward\n# \"\\e[6~\": history-search-forward\n\n# mappings for Ctrl-left-arrow and Ctrl-right-arrow for word moving\n\"\\e[1;5C\": forward-word\n\"\\e[1;5D\": backward-word\n\"\\e[5C\": forward-word\n\"\\e[5D\": backward-word\n\"\\e\\e[C\": forward-word\n\"\\e\\e[D\": backward-word\n\n$if term=rxvt\n\"\\e[7~\": beginning-of-line\n\"\\e[8~\": end-of-line\n\"\\eOc\": forward-word\n\"\\eOd\": backward-word\n$endif\n\n# for non RH/Debian xterm, can't hurt for RH/Debian xterm\n# \"\\eOH\": beginning-of-line\n# \"\\eOF\": end-of-line\n\n# for freebsd console\n# \"\\e[H\": beginning-of-line\n# \"\\e[F\": end-of-line\n\n$endif\n"
  },
  {
    "path": "rd/etc/issue",
    "content": "Welcome to Alpine Linux 3.12\nKernel \\r on an \\m (\\l)\n\n"
  },
  {
    "path": "rd/etc/logrotate.d/acpid",
    "content": "/var/log/acpid.log {\n\tmissingok\n\tnotifempty\n\tsharedscripts\n\tpostrotate\n\t\t/etc/init.d/acpid --quiet --ifstarted restart || true\n\tendscript\n}\n"
  },
  {
    "path": "rd/etc/modprobe.d/aliases.conf",
    "content": "# Aliases to tell insmod/modprobe which modules to use\n\n# Uncomment the network protocols you don't want loaded:\n# alias net-pf-1 off\t\t# Unix\n# alias net-pf-2 off\t\t# IPv4\n# alias net-pf-3 off\t\t# Amateur Radio AX.25\n# alias net-pf-4 off\t\t# IPX\n# alias net-pf-5 off\t\t# DDP / appletalk\n# alias net-pf-6 off\t\t# Amateur Radio NET/ROM\n# alias net-pf-9 off\t\t# X.25\n# alias net-pf-10 off\t\t# IPv6\n# alias net-pf-11 off\t\t# ROSE / Amateur Radio X.25 PLP\n# alias net-pf-19 off\t\t# Acorn Econet\n\nalias char-major-10-175\tagpgart\nalias char-major-10-200\ttun\nalias char-major-81\tbttv\nalias char-major-108\tppp_generic\nalias /dev/ppp\t\tppp_generic\nalias tty-ldisc-3\tppp_async\nalias tty-ldisc-14\tppp_synctty\nalias ppp-compress-21\tbsd_comp\nalias ppp-compress-24\tppp_deflate\nalias ppp-compress-26\tppp_deflate\n\n# Crypto modules (see http://www.kerneli.org/)\nalias loop-xfer-gen-0\tloop_gen\nalias loop-xfer-3\tloop_fish2\nalias loop-xfer-gen-10\tloop_gen\nalias cipher-2\t\tdes\nalias cipher-3\t\tfish2\nalias cipher-4\t\tblowfish\nalias cipher-6\t\tidea\nalias cipher-7\t\tserp6f\nalias cipher-8\t\tmars6\nalias cipher-11\t\trc62\nalias cipher-15\t\tdfc2\nalias cipher-16\t\trijndael\nalias cipher-17\t\trc5\n\n# Support for i2c and lm_sensors\nalias char-major-89    i2c-dev\n\n# xfrm\nalias xfrm-type-2-4 xfrm4_tunnel\nalias xfrm-type-2-50 esp4\nalias xfrm-type-2-51 ah4\nalias xfrm-type-2-108 ipcomp\nalias xfrm-type-10-41 xfrm6_tunnel\nalias xfrm-type-10-50 esp6\nalias xfrm-type-10-51 ah6\nalias xfrm-type-10-108 ipcomp6\n\nalias sha1 sha1-generic\n# change to aes-i586 to boost performance\nalias aes aes-generic\n\n"
  },
  {
    "path": "rd/etc/modprobe.d/blacklist.conf",
    "content": "#\n# Listing a module here prevents the hotplug scripts from loading it.\n# Usually that'd be so that some other driver will bind it instead,\n# no matter which driver happens to get probed first.  Sometimes user\n# mode tools can also control driver binding.\n\n# tulip ... de4x5, xircom_tulip_cb, dmfe (...) handle same devices\nblacklist de4x5\n\n# At least 2.4.3 and later xircom_tulip doesn't have that conflict\n# xircom_tulip_cb\nblacklist dmfe\n\n#evbug is a debug tool and should be loaded explicitly\nblacklist evbug\n\n# Alternate 8139 driver.  Some 8139 cards need this specific driver,\n# though...\n# blacklist 8139cp\n\n# Ethernet over IEEE1394 module.  In too many cases this will load\n# when there's no eth1394 device present (just an IEEE1394 port)\nblacklist eth1394\n\n# This module causes many Intel motherboards to crash and reboot.\nblacklist i8xx-tco\n\n# The kernel lists this as \"experimental\", but for now it's \"broken\"\nblacklist via-ircc\n\n# ALSA modules to support sound modems.  These should be loaded manually\n# if needed.  For most people they just break sound support...\nblacklist snd-atiixp-modem\nblacklist snd-intel8x0m\nblacklist snd-via82xx-modem\n\n# we don't want use the pc speaker\nblacklist snd-pcsp\n\n# Alternative module to Orinoco Wireless Cards.\nblacklist hostap\nblacklist hostap_cs\n\n# framebuffer drivers\nblacklist aty128fb\nblacklist atyfb\nblacklist radeonfb\nblacklist i810fb\nblacklist cirrusfb\nblacklist intelfb\nblacklist kyrofb\nblacklist i2c-matroxfb\nblacklist hgafb\nblacklist nvidiafb\nblacklist rivafb\nblacklist savagefb\nblacklist sstfb\nblacklist neofb\nblacklist tridentfb\nblacklist tdfxfb\nblacklist viafb\nblacklist virgefb\nblacklist vga16fb\nblacklist matroxfb_base\nblacklist vt8623fb\n\n# blacklist 1394 drivers\nblacklist ohci1394\nblacklist video1394\nblacklist dv1394\n\n# blacklist mISDN dirver by default as we prefer dahdi drivers\nblacklist hfcmulti\nblacklist hfcpci\nblacklist hfcsusb\n\n# blacklist C7 cpu freq. use acpi-cpufreq instead\nblacklist e_powersaver\n\nblacklist microcode\n"
  },
  {
    "path": "rd/etc/modprobe.d/i386.conf",
    "content": "alias parport_lowlevel parport_pc\nalias char-major-10-144 nvram\nalias binfmt-0064 binfmt_aout\nalias char-major-10-135 rtc\n"
  },
  {
    "path": "rd/etc/modprobe.d/kms.conf",
    "content": "# enable modeset\noptions radeon modeset=1\noptions i915 modeset=1\noptions nouveau modeset=1\n"
  },
  {
    "path": "rd/etc/modules",
    "content": "af_packet\nipv6\n"
  },
  {
    "path": "rd/etc/motd",
    "content": "Welcome to Alpine!\n\nThe Alpine Wiki contains a large amount of how-to guides and general\ninformation about administrating Alpine systems.\nSee <http://wiki.alpinelinux.org/>.\n\nYou can setup the system with the command: setup-alpine\n\nYou may change this message by editing /etc/motd.\n\n"
  },
  {
    "path": "rd/etc/network/if-up.d/dad",
    "content": "#!/bin/sh\n\n# Block ifup until DAD completion\n# Copyright (c) 2016-2018 Kaarle Ritvanen\n\nhas_flag() {\n\tip address show dev $IFACE | grep -q \" $1 \"\n}\n\nwhile has_flag tentative && ! has_flag dadfailed; do\n\tsleep 0.2\ndone\n"
  },
  {
    "path": "rd/etc/os-release",
    "content": "NAME=\"Alpine Linux\"\nID=alpine\nVERSION_ID=3.12.0\nPRETTY_NAME=\"Alpine Linux v3.12\"\nHOME_URL=\"https://alpinelinux.org/\"\nBUG_REPORT_URL=\"https://bugs.alpinelinux.org/\"\n"
  },
  {
    "path": "rd/etc/passwd",
    "content": "root:x:0:0:root:/root:/bin/ash\nbin:x:1:1:bin:/bin:/sbin/nologin\ndaemon:x:2:2:daemon:/sbin:/sbin/nologin\nadm:x:3:4:adm:/var/adm:/sbin/nologin\nlp:x:4:7:lp:/var/spool/lpd:/sbin/nologin\nsync:x:5:0:sync:/sbin:/bin/sync\nshutdown:x:6:0:shutdown:/sbin:/sbin/shutdown\nhalt:x:7:0:halt:/sbin:/sbin/halt\nmail:x:8:12:mail:/var/mail:/sbin/nologin\nnews:x:9:13:news:/usr/lib/news:/sbin/nologin\nuucp:x:10:14:uucp:/var/spool/uucppublic:/sbin/nologin\noperator:x:11:0:operator:/root:/sbin/nologin\nman:x:13:15:man:/usr/man:/sbin/nologin\npostmaster:x:14:12:postmaster:/var/mail:/sbin/nologin\ncron:x:16:16:cron:/var/spool/cron:/sbin/nologin\nftp:x:21:21::/var/lib/ftp:/sbin/nologin\nsshd:x:22:22:sshd:/dev/null:/sbin/nologin\nat:x:25:25:at:/var/spool/cron/atjobs:/sbin/nologin\nsquid:x:31:31:Squid:/var/cache/squid:/sbin/nologin\nxfs:x:33:33:X Font Server:/etc/X11/fs:/sbin/nologin\ngames:x:35:35:games:/usr/games:/sbin/nologin\ncyrus:x:85:12::/usr/cyrus:/sbin/nologin\nvpopmail:x:89:89::/var/vpopmail:/sbin/nologin\nntp:x:123:123:NTP:/var/empty:/sbin/nologin\nsmmsp:x:209:209:smmsp:/var/spool/mqueue:/sbin/nologin\nguest:x:405:100:guest:/dev/null:/sbin/nologin\nnobody:x:65534:65534:nobody:/:/sbin/nologin\ndhcp:x:100:101:dhcp:/var/lib/dhcp:/sbin/nologin\n"
  },
  {
    "path": "rd/etc/passwd-",
    "content": "root:x:0:0:root:/root:/bin/ash\nbin:x:1:1:bin:/bin:/sbin/nologin\ndaemon:x:2:2:daemon:/sbin:/sbin/nologin\nadm:x:3:4:adm:/var/adm:/sbin/nologin\nlp:x:4:7:lp:/var/spool/lpd:/sbin/nologin\nsync:x:5:0:sync:/sbin:/bin/sync\nshutdown:x:6:0:shutdown:/sbin:/sbin/shutdown\nhalt:x:7:0:halt:/sbin:/sbin/halt\nmail:x:8:12:mail:/var/mail:/sbin/nologin\nnews:x:9:13:news:/usr/lib/news:/sbin/nologin\nuucp:x:10:14:uucp:/var/spool/uucppublic:/sbin/nologin\noperator:x:11:0:operator:/root:/sbin/nologin\nman:x:13:15:man:/usr/man:/sbin/nologin\npostmaster:x:14:12:postmaster:/var/mail:/sbin/nologin\ncron:x:16:16:cron:/var/spool/cron:/sbin/nologin\nftp:x:21:21::/var/lib/ftp:/sbin/nologin\nsshd:x:22:22:sshd:/dev/null:/sbin/nologin\nat:x:25:25:at:/var/spool/cron/atjobs:/sbin/nologin\nsquid:x:31:31:Squid:/var/cache/squid:/sbin/nologin\nxfs:x:33:33:X Font Server:/etc/X11/fs:/sbin/nologin\ngames:x:35:35:games:/usr/games:/sbin/nologin\ncyrus:x:85:12::/usr/cyrus:/sbin/nologin\nvpopmail:x:89:89::/var/vpopmail:/sbin/nologin\nntp:x:123:123:NTP:/var/empty:/sbin/nologin\nsmmsp:x:209:209:smmsp:/var/spool/mqueue:/sbin/nologin\nguest:x:405:100:guest:/dev/null:/sbin/nologin\nnobody:x:65534:65534:nobody:/:/sbin/nologin\ndhcp:x:100:101:dhcp:/var/lib/dhcp:/sbin/nologin\n"
  },
  {
    "path": "rd/etc/profile",
    "content": "export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\nexport PAGER=less\nexport PS1='\\h:\\w\\$ '\numask 022\n\nfor script in /etc/profile.d/*.sh ; do\n        if [ -r $script ] ; then\n                . $script\n        fi\ndone\n"
  },
  {
    "path": "rd/etc/profile.d/color_prompt",
    "content": "# Setup a red prompt for root and a green one for users.\n# rename this file to color_prompt.sh to actually enable it\nNORMAL=\"\\[\\e[0m\\]\"\nRED=\"\\[\\e[1;31m\\]\"\nGREEN=\"\\[\\e[1;32m\\]\"\nif [ \"$USER\" = root ]; then\n\tPS1=\"$RED\\h [$NORMAL\\w$RED]# $NORMAL\"\nelse\n\tPS1=\"$GREEN\\h [$NORMAL\\w$GREEN]\\$ $NORMAL\"\nfi\n"
  },
  {
    "path": "rd/etc/profile.d/locale",
    "content": "CHARSET=UTF-8\nLANG=C.UTF-8\nLC_COLLATE=C\n"
  },
  {
    "path": "rd/etc/protocols",
    "content": "# /etc/protocols:\n# $Id: protocols,v 1.1 2004/02/04 03:32:40 pebenito Exp $\n# $Header: /home/cvsroot/gentoo-projects/embedded/baselayout-lite/protocols,v 1.1 2004/02/04 03:32:40 pebenito Exp $\n#\n# Internet (IP) protocols\n#\n#\tfrom: @(#)protocols\t5.1 (Berkeley) 4/17/89\n#\n# Updated for NetBSD based on RFC 1340, Assigned Numbers (July 1992).\n\nip\t0\tIP\t\t# internet protocol, pseudo protocol number\nicmp\t1\tICMP\t\t# internet control message protocol\nigmp\t2\tIGMP\t\t# Internet Group Management\nggp\t3\tGGP\t\t# gateway-gateway protocol\nipencap\t4\tIP-ENCAP\t# IP encapsulated in IP (officially ``IP'')\nst\t5\tST\t\t# ST datagram mode\ntcp\t6\tTCP\t\t# transmission control protocol\negp\t8\tEGP\t\t# exterior gateway protocol\npup\t12\tPUP\t\t# PARC universal packet protocol\nudp\t17\tUDP\t\t# user datagram protocol\nhmp\t20\tHMP\t\t# host monitoring protocol\nxns-idp\t22\tXNS-IDP\t\t# Xerox NS IDP\nrdp\t27\tRDP\t\t# \"reliable datagram\" protocol\niso-tp4\t29\tISO-TP4\t\t# ISO Transport Protocol class 4\nxtp\t36\tXTP\t\t# Xpress Tranfer Protocol\nddp\t37\tDDP\t\t# Datagram Delivery Protocol\nidpr-cmtp 38\tIDPR-CMTP\t# IDPR Control Message Transport\nipv6\t41\tIPv6\t\t# IPv6\nipv6-route 43\tIPv6-Route\t# Routing Header for IPv6\nipv6-frag 44\tIPv6-Frag\t# Fragment Header for IPv6\nidrp\t45\tIDRP\t\t# Inter-Domain Routing Protocol\nrsvp\t46\tRSVP\t\t# Reservation Protocol\ngre\t47\tGRE\t\t# General Routing Encapsulation\nesp\t50\tESP\t\t# Encap Security Payload for IPv6\nah\t51\tAH\t\t# Authentication Header for IPv6\nskip\t57\tSKIP\t\t# SKIP\nipv6-icmp 58\tIPv6-ICMP\t# ICMP for IPv6\nipv6-nonxt 59\tIPv6-NoNxt\t# No Next Header for IPv6\nipv6-opts 60\tIPv6-Opts\t# Destination Options for IPv6\nrspf\t73\tRSPF\t\t# Radio Shortest Path First.\nvmtp\t81\tVMTP\t\t# Versatile Message Transport\nospf\t89\tOSPFIGP\t\t# Open Shortest Path First IGP\nipip\t94\tIPIP\t\t# IP-within-IP Encapsulation Protocol\nencap\t98\tENCAP\t\t# Yet Another IP encapsulation\npim\t103\tPIM\t\t# Protocol Independent Multicast\n"
  },
  {
    "path": "rd/etc/resolv.conf",
    "content": "nameserver 1.1.1.1\n"
  },
  {
    "path": "rd/etc/securetty",
    "content": "console\ntty1\ntty2\ntty3\ntty4\ntty5\ntty6\ntty7\ntty8\ntty9\ntty10\ntty11\n"
  },
  {
    "path": "rd/etc/services",
    "content": "# Network services, Internet style\n#\n# Note that it is presently the policy of IANA to assign a single well-known\n# port number for both TCP and UDP; hence, officially ports have two entries\n# even if the protocol doesn't support UDP operations.\n#\n# Updated from https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml .\n#\n# New ports will be added on request if they have been officially assigned\n# by IANA and used in the real-world or are needed by a debian package.\n# If you need a huge list of used numbers please install the nmap package.\n\ntcpmux\t\t1/tcp\t\t\t\t# TCP port service multiplexer\necho\t\t7/tcp\necho\t\t7/udp\ndiscard\t\t9/tcp\t\tsink null\ndiscard\t\t9/udp\t\tsink null\nsystat\t\t11/tcp\t\tusers\ndaytime\t\t13/tcp\ndaytime\t\t13/udp\nnetstat\t\t15/tcp\nqotd\t\t17/tcp\t\tquote\nchargen\t\t19/tcp\t\tttytst source\nchargen\t\t19/udp\t\tttytst source\nftp-data\t20/tcp\nftp\t\t21/tcp\nfsp\t\t21/udp\t\tfspd\nssh\t\t22/tcp\t\t\t\t# SSH Remote Login Protocol\ntelnet\t\t23/tcp\nsmtp\t\t25/tcp\t\tmail\ntime\t\t37/tcp\t\ttimserver\ntime\t\t37/udp\t\ttimserver\nwhois\t\t43/tcp\t\tnicname\ntacacs\t\t49/tcp\t\t\t\t# Login Host Protocol (TACACS)\ntacacs\t\t49/udp\ndomain\t\t53/tcp\t\t\t\t# Domain Name Server\ndomain\t\t53/udp\nbootps\t\t67/udp\nbootpc\t\t68/udp\ntftp\t\t69/udp\ngopher\t\t70/tcp\t\t\t\t# Internet Gopher\nfinger\t\t79/tcp\nhttp\t\t80/tcp\t\twww\t\t# WorldWideWeb HTTP\nkerberos\t88/tcp\t\tkerberos5 krb5 kerberos-sec\t# Kerberos v5\nkerberos\t88/udp\t\tkerberos5 krb5 kerberos-sec\t# Kerberos v5\niso-tsap\t102/tcp\t\ttsap\t\t# part of ISODE\nacr-nema\t104/tcp\t\tdicom\t\t# Digital Imag. & Comm. 300\npop3\t\t110/tcp\t\tpop-3\t\t# POP version 3\nsunrpc\t\t111/tcp\t\tportmapper\t# RPC 4.0 portmapper\nsunrpc\t\t111/udp\t\tportmapper\nauth\t\t113/tcp\t\tauthentication tap ident\nnntp\t\t119/tcp\t\treadnews untp\t# USENET News Transfer Protocol\nntp\t\t123/udp\t\t\t\t# Network Time Protocol\nepmap\t\t135/tcp\t\tloc-srv\t\t# DCE endpoint resolution\nnetbios-ns\t137/tcp\t\t\t\t# NETBIOS Name Service\nnetbios-ns\t137/udp\nnetbios-dgm\t138/tcp\t\t\t\t# NETBIOS Datagram Service\nnetbios-dgm\t138/udp\nnetbios-ssn\t139/tcp\t\t\t\t# NETBIOS session service\nnetbios-ssn\t139/udp\nimap2\t\t143/tcp\t\timap\t\t# Interim Mail Access P 2 and 4\nsnmp\t\t161/tcp\t\t\t\t# Simple Net Mgmt Protocol\nsnmp\t\t161/udp\nsnmp-trap\t162/tcp\t\tsnmptrap\t# Traps for SNMP\nsnmp-trap\t162/udp\t\tsnmptrap\ncmip-man\t163/tcp\t\t\t\t# ISO mgmt over IP (CMOT)\ncmip-man\t163/udp\ncmip-agent\t164/tcp\ncmip-agent\t164/udp\nmailq\t\t174/tcp\t\t\t# Mailer transport queue for Zmailer\nxdmcp\t\t177/udp\t\t\t# X Display Manager Control Protocol\nbgp\t\t179/tcp\t\t\t\t# Border Gateway Protocol\nsmux\t\t199/tcp\t\t\t\t# SNMP Unix Multiplexer\nqmtp\t\t209/tcp\t\t\t\t# Quick Mail Transfer Protocol\nz3950\t\t210/tcp\t\twais\t\t# NISO Z39.50 database\nipx\t\t213/udp\t\t\t\t# IPX [RFC1234]\nptp-event\t319/udp\nptp-general\t320/udp\npawserv\t\t345/tcp\t\t\t\t# Perf Analysis Workbench\nzserv\t\t346/tcp\t\t\t\t# Zebra server\nrpc2portmap\t369/tcp\nrpc2portmap\t369/udp\t\t\t\t# Coda portmapper\ncodaauth2\t370/tcp\ncodaauth2\t370/udp\t\t\t\t# Coda authentication server\nclearcase\t371/udp\t\tClearcase\nldap\t\t389/tcp\t\t\t# Lightweight Directory Access Protocol\nldap\t\t389/udp\nsvrloc\t\t427/tcp\t\t\t\t# Server Location\nsvrloc\t\t427/udp\nhttps\t\t443/tcp\t\t\t\t# http protocol over TLS/SSL\nsnpp\t\t444/tcp\t\t\t\t# Simple Network Paging Protocol\nmicrosoft-ds\t445/tcp\t\t\t\t# Microsoft Naked CIFS\nmicrosoft-ds\t445/udp\nkpasswd\t\t464/tcp\nkpasswd\t\t464/udp\nsubmissions\t465/tcp\t\tssmtp smtps urd # Submission over TLS [RFC8314]\nsaft\t\t487/tcp\t\t\t# Simple Asynchronous File Transfer\nisakmp\t\t500/udp\t\t\t\t# IPSEC key management\nrtsp\t\t554/tcp\t\t\t# Real Time Stream Control Protocol\nrtsp\t\t554/udp\nnqs\t\t607/tcp\t\t\t\t# Network Queuing system\nasf-rmcp\t623/udp\t\t# ASF Remote Management and Control Protocol\nqmqp\t\t628/tcp\nipp\t\t631/tcp\t\t\t\t# Internet Printing Protocol\n#\n# UNIX specific services\n#\nexec\t\t512/tcp\nbiff\t\t512/udp\t\tcomsat\nlogin\t\t513/tcp\nwho\t\t513/udp\t\twhod\nshell\t\t514/tcp\t\tcmd syslog\t# no passwords used\nsyslog\t\t514/udp\nprinter\t\t515/tcp\t\tspooler\t\t# line printer spooler\ntalk\t\t517/udp\nntalk\t\t518/udp\nroute\t\t520/udp\t\trouter routed\t# RIP\ngdomap\t\t538/tcp\t\t\t\t# GNUstep distributed objects\ngdomap\t\t538/udp\nuucp\t\t540/tcp\t\tuucpd\t\t# uucp daemon\nklogin\t\t543/tcp\t\t\t\t# Kerberized `rlogin' (v5)\nkshell\t\t544/tcp\t\tkrcmd\t\t# Kerberized `rsh' (v5)\ndhcpv6-client\t546/udp\ndhcpv6-server\t547/udp\nafpovertcp\t548/tcp\t\t\t\t# AFP over TCP\nnntps\t\t563/tcp\t\tsnntp\t\t# NNTP over SSL\nsubmission\t587/tcp\t\t\t\t# Submission [RFC4409]\nldaps\t\t636/tcp\t\t\t\t# LDAP over SSL\nldaps\t\t636/udp\ntinc\t\t655/tcp\t\t\t\t# tinc control port\ntinc\t\t655/udp\nsilc\t\t706/tcp\nkerberos-adm\t749/tcp\t\t\t\t# Kerberos `kadmin' (v5)\n#\ndomain-s\t853/tcp\t\t\t\t# DNS over TLS [RFC7858]\ndomain-s\t853/udp\t\t\t\t# DNS over DTLS [RFC8094]\nrsync\t\t873/tcp\nftps-data\t989/tcp\t\t\t\t# FTP over SSL (data)\nftps\t\t990/tcp\ntelnets\t\t992/tcp\t\t\t\t# Telnet over SSL\nimaps\t\t993/tcp\t\t\t\t# IMAP over SSL\npop3s\t\t995/tcp\t\t\t\t# POP-3 over SSL\n#\n# From ``Assigned Numbers'':\n#\n#> The Registered Ports are not controlled by the IANA and on most systems\n#> can be used by ordinary user processes or programs executed by ordinary\n#> users.\n#\n#> Ports are used in the TCP [45,106] to name the ends of logical\n#> connections which carry long term conversations.  For the purpose of\n#> providing services to unknown callers, a service contact port is\n#> defined.  This list specifies the port used by the server process as its\n#> contact port.  While the IANA can not control uses of these ports it\n#> does register or list uses of these ports as a convienence to the\n#> community.\n#\nsocks\t\t1080/tcp\t\t\t# socks proxy server\nproofd\t\t1093/tcp\nrootd\t\t1094/tcp\nopenvpn\t\t1194/tcp\nopenvpn\t\t1194/udp\nrmiregistry\t1099/tcp\t\t\t# Java RMI Registry\nlotusnote\t1352/tcp\tlotusnotes\t# Lotus Note\nms-sql-s\t1433/tcp\t\t\t# Microsoft SQL Server\nms-sql-s\t1433/udp\nms-sql-m\t1434/tcp\t\t\t# Microsoft SQL Monitor\nms-sql-m\t1434/udp\ningreslock\t1524/tcp\ndatametrics\t1645/tcp\told-radius\ndatametrics\t1645/udp\told-radius\nsa-msg-port\t1646/tcp\told-radacct\nsa-msg-port\t1646/udp\told-radacct\nkermit\t\t1649/tcp\ngroupwise\t1677/tcp\nl2f\t\t1701/udp\tl2tp\nradius\t\t1812/tcp\nradius\t\t1812/udp\nradius-acct\t1813/tcp\tradacct\t\t# Radius Accounting\nradius-acct\t1813/udp\tradacct\ncisco-sccp\t2000/tcp\t\t\t# Cisco SCCP\nnfs\t\t2049/tcp\t\t\t# Network File System\nnfs\t\t2049/udp\t\t\t# Network File System\ngnunet\t\t2086/tcp\ngnunet\t\t2086/udp\nrtcm-sc104\t2101/tcp\t\t\t# RTCM SC-104 IANA 1/29/99\nrtcm-sc104\t2101/udp\ngsigatekeeper\t2119/tcp\ngris\t\t2135/tcp\t\t# Grid Resource Information Server\ncvspserver\t2401/tcp\t\t\t# CVS client/server operations\nvenus\t\t2430/tcp\t\t\t# codacon port\nvenus\t\t2430/udp\t\t\t# Venus callback/wbc interface\nvenus-se\t2431/tcp\t\t\t# tcp side effects\nvenus-se\t2431/udp\t\t\t# udp sftp side effect\ncodasrv\t\t2432/tcp\t\t\t# not used\ncodasrv\t\t2432/udp\t\t\t# server port\ncodasrv-se\t2433/tcp\t\t\t# tcp side effects\ncodasrv-se\t2433/udp\t\t\t# udp sftp side effect\nmon\t\t2583/tcp\t\t\t# MON traps\nmon\t\t2583/udp\ndict\t\t2628/tcp\t\t\t# Dictionary server\nf5-globalsite\t2792/tcp\ngsiftp\t\t2811/tcp\ngpsd\t\t2947/tcp\ngds-db\t\t3050/tcp\tgds_db\t\t# InterBase server\nicpv2\t\t3130/tcp\ticp\t\t# Internet Cache Protocol\nicpv2\t\t3130/udp\ticp\nisns\t\t3205/tcp\t\t\t# iSNS Server Port\nisns\t\t3205/udp\t\t\t# iSNS Server Port\niscsi-target\t3260/tcp\nmysql\t\t3306/tcp\nms-wbt-server\t3389/tcp\nnut\t\t3493/tcp\t\t\t# Network UPS Tools\nnut\t\t3493/udp\ndistcc\t\t3632/tcp\t\t\t# distributed compiler\ndistcc\t\t3632/udp\ndaap\t\t3689/tcp\t\t\t# Digital Audio Access Protocol\ndaap\t\t3689/udp\nsvn\t\t3690/tcp\tsubversion\t# Subversion protocol\nsvn\t\t3690/udp\tsubversion\nsuucp\t\t4031/tcp\t\t\t# UUCP over SSL\nsuucp\t\t4031/udp\nsysrqd\t\t4094/tcp\t\t\t# sysrq daemon\nsysrqd\t\t4094/udp\nsieve\t\t4190/tcp\t\t\t# ManageSieve Protocol\nepmd\t\t4369/tcp\t\t\t# Erlang Port Mapper Daemon\nepmd\t\t4369/udp\nremctl\t\t4373/tcp\t\t# Remote Authenticated Command Service\nremctl\t\t4373/udp\nf5-iquery\t4353/tcp\t\t\t# F5 iQuery\nf5-iquery\t4353/udp\nipsec-nat-t\t4500/udp\t\t\t# IPsec NAT-Traversal [RFC3947]\niax\t\t4569/tcp\t\t\t# Inter-Asterisk eXchange\niax\t\t4569/udp\nmtn\t\t4691/tcp\t\t\t# monotone Netsync Protocol\nmtn\t\t4691/udp\nradmin-port\t4899/tcp\t\t\t# RAdmin Port\nradmin-port\t4899/udp\nsip\t\t5060/tcp\t\t\t# Session Initiation Protocol\nsip\t\t5060/udp\nsip-tls\t\t5061/tcp\nsip-tls\t\t5061/udp\nxmpp-client\t5222/tcp\tjabber-client\t# Jabber Client Connection\nxmpp-server\t5269/tcp\tjabber-server\t# Jabber Server Connection\ncfengine\t5308/tcp\nmdns\t\t5353/udp\t\t\t# Multicast DNS\npostgresql\t5432/tcp\tpostgres\t# PostgreSQL Database\nfreeciv\t\t5556/tcp\trptp\t\t# Freeciv gameplay\namqps\t\t5671/tcp\t\t\t# AMQP protocol over TLS/SSL\namqp\t\t5672/tcp\namqp\t\t5672/udp\namqp\t\t5672/sctp\nx11\t\t6000/tcp\tx11-0\t\t# X Window System\nx11-1\t\t6001/tcp\nx11-2\t\t6002/tcp\nx11-3\t\t6003/tcp\nx11-4\t\t6004/tcp\nx11-5\t\t6005/tcp\nx11-6\t\t6006/tcp\nx11-7\t\t6007/tcp\ngnutella-svc\t6346/tcp\t\t\t# gnutella\ngnutella-svc\t6346/udp\ngnutella-rtr\t6347/tcp\t\t\t# gnutella\ngnutella-rtr\t6347/udp\nsge-qmaster\t6444/tcp\tsge_qmaster\t# Grid Engine Qmaster Service\nsge-execd\t6445/tcp\tsge_execd\t# Grid Engine Execution Service\nmysql-proxy\t6446/tcp\t\t\t# MySQL Proxy\nbabel\t\t6696/udp\t\t\t# Babel Routing Protocol\nircs-u\t\t6697/tcp\t\t# Internet Relay Chat via TLS/SSL\nafs3-fileserver 7000/tcp\tbbs\t\t# file server itself\nafs3-fileserver 7000/udp\tbbs\nafs3-callback\t7001/tcp\t\t\t# callbacks to cache managers\nafs3-callback\t7001/udp\nafs3-prserver\t7002/tcp\t\t\t# users & groups database\nafs3-prserver\t7002/udp\nafs3-vlserver\t7003/tcp\t\t\t# volume location database\nafs3-vlserver\t7003/udp\nafs3-kaserver\t7004/tcp\t\t\t# AFS/Kerberos authentication\nafs3-kaserver\t7004/udp\nafs3-volser\t7005/tcp\t\t\t# volume managment server\nafs3-volser\t7005/udp\nafs3-errors\t7006/tcp\t\t\t# error interpretation service\nafs3-errors\t7006/udp\nafs3-bos\t7007/tcp\t\t\t# basic overseer process\nafs3-bos\t7007/udp\nafs3-update\t7008/tcp\t\t\t# server-to-server updater\nafs3-update\t7008/udp\nafs3-rmtsys\t7009/tcp\t\t\t# remote cache manager service\nafs3-rmtsys\t7009/udp\nfont-service\t7100/tcp\txfs\t\t# X Font Service\nhttp-alt\t8080/tcp\twebcache\t# WWW caching service\npuppet\t\t8140/tcp\t\t\t# The Puppet master service\nbacula-dir\t9101/tcp\t\t\t# Bacula Director\nbacula-fd\t9102/tcp\t\t\t# Bacula File Daemon\nbacula-sd\t9103/tcp\t\t\t# Bacula Storage Daemon\nxmms2\t\t9667/tcp\t# Cross-platform Music Multiplexing System\nnbd\t\t10809/tcp\t\t\t# Linux Network Block Device\nzabbix-agent\t10050/tcp\t\t\t# Zabbix Agent\nzabbix-trapper\t10051/tcp\t\t\t# Zabbix Trapper\namanda\t\t10080/tcp\t\t\t# amanda backup services\ndicom\t\t11112/tcp\nhkp\t\t11371/tcp\t\t\t# OpenPGP HTTP Keyserver\ndb-lsp\t\t17500/tcp\t\t\t# Dropbox LanSync Protocol\ndcap\t\t22125/tcp\t\t\t# dCache Access Protocol\ngsidcap\t\t22128/tcp\t\t\t# GSI dCache Access Protocol\nwnn6\t\t22273/tcp\t\t\t# wnn6\n\n#\n# Datagram Delivery Protocol services\n#\nrtmp\t\t1/ddp\t\t\t# Routing Table Maintenance Protocol\nnbp\t\t2/ddp\t\t\t# Name Binding Protocol\necho\t\t4/ddp\t\t\t# AppleTalk Echo Protocol\nzip\t\t6/ddp\t\t\t# Zone Information Protocol\n\n#=========================================================================\n# The remaining port numbers are not as allocated by IANA.\n#=========================================================================\n\n# Kerberos (Project Athena/MIT) services\nkerberos4\t750/udp\t\tkerberos-iv kdc\t# Kerberos (server)\nkerberos4\t750/tcp\t\tkerberos-iv kdc\nkerberos-master\t751/udp\t\tkerberos_master\t# Kerberos authentication\nkerberos-master\t751/tcp\npasswd-server\t752/udp\t\tpasswd_server\t# Kerberos passwd server\nkrb-prop\t754/tcp\t\tkrb_prop krb5_prop hprop # Kerberos slave propagation\nzephyr-srv\t2102/udp\t\t\t# Zephyr server\nzephyr-clt\t2103/udp\t\t\t# Zephyr serv-hm connection\nzephyr-hm\t2104/udp\t\t\t# Zephyr hostmanager\niprop\t\t2121/tcp\t\t\t# incremental propagation\nsupfilesrv\t871/tcp\t\t\t# Software Upgrade Protocol server\nsupfiledbg\t1127/tcp\t\t# Software Upgrade Protocol debugging\n\n#\n# Services added for the Debian GNU/Linux distribution\n#\npoppassd\t106/tcp\t\t\t\t# Eudora\npoppassd\t106/udp\nmoira-db\t775/tcp\t\tmoira_db\t# Moira database\nmoira-update\t777/tcp\t\tmoira_update\t# Moira update protocol\nmoira-ureg\t779/udp\t\tmoira_ureg\t# Moira user registration\nspamd\t\t783/tcp\t\t\t\t# spamassassin daemon\nskkserv\t\t1178/tcp\t\t\t# skk jisho server port\npredict\t\t1210/udp\t\t\t# predict -- satellite tracking\nrmtcfg\t\t1236/tcp\t\t\t# Gracilis Packeten remote config server\nxtel\t\t1313/tcp\t\t\t# french minitel\nxtelw\t\t1314/tcp\t\t\t# french minitel\nsupport\t\t1529/tcp\t\t\t# GNATS\ncfinger\t\t2003/tcp\t\t\t# GNU Finger\nfrox\t\t2121/tcp\t\t\t# frox: caching ftp proxy\nzebrasrv\t2600/tcp\t\t\t# zebra service\nzebra\t\t2601/tcp\t\t\t# zebra vty\nripd\t\t2602/tcp\t\t\t# ripd vty (zebra)\nripngd\t\t2603/tcp\t\t\t# ripngd vty (zebra)\nospfd\t\t2604/tcp\t\t\t# ospfd vty (zebra)\nbgpd\t\t2605/tcp\t\t\t# bgpd vty (zebra)\nospf6d\t\t2606/tcp\t\t\t# ospf6d vty (zebra)\nospfapi\t\t2607/tcp\t\t\t# OSPF-API\nisisd\t\t2608/tcp\t\t\t# ISISd vty (zebra)\nafbackup\t2988/tcp\t\t\t# Afbackup system\nafbackup\t2988/udp\nafmbackup\t2989/tcp\t\t\t# Afmbackup system\nafmbackup\t2989/udp\nfax\t\t4557/tcp\t\t\t# FAX transmission service (old)\nhylafax\t\t4559/tcp\t\t\t# HylaFAX client-server protocol (new)\ndistmp3\t\t4600/tcp\t\t\t# distmp3host daemon\nmunin\t\t4949/tcp\tlrrd\t\t# Munin\nenbd-cstatd\t5051/tcp\t\t\t# ENBD client statd\nenbd-sstatd\t5052/tcp\t\t\t# ENBD server statd\npcrd\t\t5151/tcp\t\t\t# PCR-1000 Daemon\nnoclog\t\t5354/tcp\t\t\t# noclogd with TCP (nocol)\nnoclog\t\t5354/udp\t\t\t# noclogd with UDP (nocol)\nhostmon\t\t5355/tcp\t\t\t# hostmon uses TCP (nocol)\nhostmon\t\t5355/udp\t\t\t# hostmon uses UDP (nocol)\nrplay\t\t5555/udp\t\t\t# RPlay audio service\nnrpe\t\t5666/tcp\t\t\t# Nagios Remote Plugin Executor\nnsca\t\t5667/tcp\t\t\t# Nagios Agent - NSCA\nmrtd\t\t5674/tcp\t\t\t# MRT Routing Daemon\nbgpsim\t\t5675/tcp\t\t\t# MRT Routing Simulator\ncanna\t\t5680/tcp\t\t\t# cannaserver\nsyslog-tls\t6514/tcp\t\t\t# Syslog over TLS [RFC5425]\nsane-port\t6566/tcp\tsane saned\t# SANE network scanner daemon\nircd\t\t6667/tcp\t\t\t# Internet Relay Chat\nzope-ftp\t8021/tcp\t\t\t# zope management by ftp\ntproxy\t\t8081/tcp\t\t\t# Transparent Proxy\nomniorb\t\t8088/tcp\t\t\t# OmniORB\nomniorb\t\t8088/udp\nclc-build-daemon 8990/tcp\t\t\t# Common lisp build daemon\nxinetd\t\t9098/tcp\nmandelspawn\t9359/udp\tmandelbrot\t# network mandelbrot\ngit\t\t9418/tcp\t\t\t# Git Version Control System\nzope\t\t9673/tcp\t\t\t# zope server\nwebmin\t\t10000/tcp\nkamanda\t\t10081/tcp\t\t\t# amanda backup services (Kerberos)\namandaidx\t10082/tcp\t\t\t# amanda backup services\namidxtape\t10083/tcp\t\t\t# amanda backup services\nsmsqp\t\t11201/tcp\t\t\t# Alamin SMS gateway\nsmsqp\t\t11201/udp\nxpilot\t\t15345/tcp\t\t\t# XPilot Contact Port\nxpilot\t\t15345/udp\nsgi-cmsd\t17001/udp\t\t# Cluster membership services daemon\nsgi-crsd\t17002/udp\nsgi-gcd\t\t17003/udp\t\t\t# SGI Group membership daemon\nsgi-cad\t\t17004/tcp\t\t\t# Cluster Admin daemon\nisdnlog\t\t20011/tcp\t\t\t# isdn logging system\nisdnlog\t\t20011/udp\nvboxd\t\t20012/tcp\t\t\t# voice box system\nvboxd\t\t20012/udp\nbinkp\t\t24554/tcp\t\t\t# binkp fidonet protocol\nasp\t\t27374/tcp\t\t\t# Address Search Protocol\nasp\t\t27374/udp\ncsync2\t\t30865/tcp\t\t\t# cluster synchronization tool\ndircproxy\t57000/tcp\t\t\t# Detachable IRC Proxy\ntfido\t\t60177/tcp\t\t\t# fidonet EMSI over telnet\nfido\t\t60179/tcp\t\t\t# fidonet EMSI over TCP\n\n# Local services\n"
  },
  {
    "path": "rd/etc/shadow",
    "content": "root:$6$gCnCIJyGxcPvde2g$pjwJC3FkxXHFXQMMFpd1q43THVEi7IdEh1/rwaJ9LzepagBndmdRFL.UOYHYL9k88rze.f5APeuQU82haHNOV1:18600:0:::::\nbin:!::0:::::\ndaemon:!::0:::::\nadm:!::0:::::\nlp:!::0:::::\nsync:!::0:::::\nshutdown:!::0:::::\nhalt:!::0:::::\nmail:!::0:::::\nnews:!::0:::::\nuucp:!::0:::::\noperator:!::0:::::\nman:!::0:::::\npostmaster:!::0:::::\ncron:!::0:::::\nftp:!::0:::::\nsshd:!::0:::::\nat:!::0:::::\nsquid:!::0:::::\nxfs:!::0:::::\ngames:!::0:::::\ncyrus:!::0:::::\nvpopmail:!::0:::::\nntp:!::0:::::\nsmmsp:!::0:::::\nguest:!::0:::::\nnobody:!::0:::::\ndhcp:!:18600:0:99999:7:::\n"
  },
  {
    "path": "rd/etc/shadow-",
    "content": "root:!::0:::::\nbin:!::0:::::\ndaemon:!::0:::::\nadm:!::0:::::\nlp:!::0:::::\nsync:!::0:::::\nshutdown:!::0:::::\nhalt:!::0:::::\nmail:!::0:::::\nnews:!::0:::::\nuucp:!::0:::::\noperator:!::0:::::\nman:!::0:::::\npostmaster:!::0:::::\ncron:!::0:::::\nftp:!::0:::::\nsshd:!::0:::::\nat:!::0:::::\nsquid:!::0:::::\nxfs:!::0:::::\ngames:!::0:::::\ncyrus:!::0:::::\nvpopmail:!::0:::::\nntp:!::0:::::\nsmmsp:!::0:::::\nguest:!::0:::::\nnobody:!::0:::::\ndhcp:!:18600:0:99999:7:::\n"
  },
  {
    "path": "rd/etc/shells",
    "content": "# valid login shells\n/bin/sh\n/bin/ash\n/bin/bash\n"
  },
  {
    "path": "rd/etc/sysctl.conf",
    "content": "# content of this file will override /etc/sysctl.d/*\n"
  },
  {
    "path": "rd/etc/udhcpd.conf",
    "content": "# Sample udhcpd configuration file (/etc/udhcpd.conf)\n# Values shown are defaults\n\n# The start and end of the IP lease block\nstart\t\t192.168.0.20\nend\t\t192.168.0.254\n\n# The interface that udhcpd will use\ninterface\teth0\n\n# The maximum number of leases (includes addresses reserved\n# by OFFER's, DECLINE's, and ARP conflicts). Will be corrected\n# if it's bigger than IP lease block, but it ok to make it\n# smaller than lease block.\n#max_leases\t254\n\n# The amount of time that an IP will be reserved (leased to nobody)\n# if a DHCP decline message is received (seconds)\n#decline_time\t3600\n\n# The amount of time that an IP will be reserved\n# if an ARP conflict occurs (seconds)\n#conflict_time\t3600\n\n# How long an offered address is reserved (seconds)\n#offer_time\t60\n\n# If client asks for lease below this value, it will be rounded up\n# to this value (seconds)\n#min_lease\t60\n\n# The location of the pid file\n#pidfile\t/var/run/udhcpd.pid\n\n# The location of the leases file\n#lease_file\t/var/lib/misc/udhcpd.leases\n\n# The time period at which udhcpd will write out leases file.\n# If this is 0, udhcpd will never automatically write leases file.\n# Specified in seconds.\n#auto_time\t7200\n\n# Every time udhcpd writes a leases file, the below script will be called\n#notify_file\t\t\t# default: no script\n#notify_file\tdumpleases\t# useful for debugging\n\n# The following are BOOTP specific options\n# next server to use in bootstrap\n#siaddr\t\t192.168.0.22\t# default: 0.0.0.0 (none)\n# tftp server name\n#sname\t\tzorak\t\t# default: none\n# tftp file to download (e.g. kernel image)\n#boot_file\t/var/nfs_root\t# default: none\n\n# NOTE: \"boot_file FILE\" and \"opt bootfile FILE\" are conceptually the same,\n# but \"boot_file\" goes into BOOTP-defined fixed-size field in the packet,\n# whereas \"opt bootfile\" goes into DHCP option 0x43.\n# Same for \"sname HOST\" and \"opt tftp HOST\".\n\n# Static leases map\n#static_lease 00:60:08:11:CE:4E 192.168.0.54\n#static_lease 00:60:08:11:CE:3E 192.168.0.44 optional_hostname\n\n# The remainder of options are DHCP options and can be specified with the\n# keyword 'opt' or 'option'. If an option can take multiple items, such\n# as the dns option, they can be listed on the same line, or multiple\n# lines.\n# Examples:\nopt\tdns\t192.168.10.2 192.168.10.10\noption\tsubnet\t255.255.255.0\nopt\trouter\t192.168.10.2\nopt\twins\t192.168.10.10\noption\tdns\t129.219.13.81\t# appended to above DNS servers for a total of 3\noption\tdomain\tlocal\noption\tlease\t864000\t\t# default: 10 days\noption\tmsstaticroutes\t10.0.0.0/8 10.127.0.1\t\t# single static route\noption\tstaticroutes\t10.0.0.0/8 10.127.0.1, 10.11.12.0/24 10.11.12.1\n# Arbitrary option in hex or string form:\noption\t0x08\t01020304\t# option 8: \"cookie server IP addr: 1.2.3.4\"\noption\t14\t\"dumpfile\"\n\n# Currently supported options [hex option value] (for more info, see options.c):\n#opt lease      NUM             # [0x33]\n#opt subnet     IP              # [0x01]\n#opt broadcast  IP              # [0x1c]\n#opt router     IP_LIST         # [0x03]\n#opt ipttl      NUM             # [0x17]\n#opt mtu        NUM             # [0x1a]\n#opt hostname   STRING          # [0x0c] client's hostname\n#opt domain     STRING          # [0x0f] client's domain suffix\n#opt search     STRING_LIST     # [0x77] search domains\n#opt nisdomain  STRING          # [0x28]\n#opt timezone   NUM             # [0x02] (localtime - UTC_time) in seconds. signed\n#opt tftp       STRING          # [0x42] tftp server name\n#opt bootfile   STRING          # [0x43] tftp file to download (e.g. kernel image)\n#opt bootsize   NUM             # [0x0d] size of that file\n#opt rootpath   STRING          # [0x11] (NFS) path to mount as root fs\n#opt wpad       STRING          # [0xfc] Web Proxy Auto Discovery Protocol\n#opt serverid   IP              # [0x36] default: server's IP\n#opt message    STRING          # [0x38] error message (udhcpd sends it on success too)\n#opt vlanid     NUM             # [0x84] 802.1P VLAN ID\n#opt vlanpriority NUM           # [0x85] 802.1Q VLAN priority\n# RFC 5071: PXELINUX Options\n#opt 0xd0       F100747E        # [0xd0] magic\n#opt pxeconffile STRING         # [0xd1]\n#opt pxepathprefix STRING       # [0xd2]\n#opt reboottime NUM             # [0xd3] bootstrap timeout\n# Options specifying server(s)\n#opt dns        IP_LIST         # [0x06]\n#opt wins       IP_LIST         # [0x2c]\n#opt nissrv     IP_LIST         # [0x29]\n#opt ntpsrv     IP_LIST         # [0x2a]\n#opt lprsrv     IP_LIST         # [0x09]\n#opt swapsrv    IP              # [0x10]\n# Options specifying routes\n#opt routes     IP_PAIR_LIST    # [0x21]\n#opt staticroutes   STATIC_ROUTES # [0x79] RFC 3442 classless static route option\n#opt msstaticroutes STATIC_ROUTES # [0xf9] same, using MS option number\n# Obsolete options, no longer supported\n#opt logsrv     IP_LIST # [0x07] 704/UDP log server (not syslog!)\n#opt namesrv    IP_LIST # [0x05] IEN 116 name server, obsolete (August 1979!!!)\n#opt cookiesrv  IP_LIST # [0x08] RFC 865 \"quote of the day\" server, rarely (never?) used\n#opt timesrv    IP_LIST # [0x04] RFC 868 time server, rarely (never?) used\n# TODO: in development\n#opt userclass  STRING          # [0x4d] RFC 3004. set of LASCII strings. \"I am a printer\" etc\n#opt sipsrv     STRING LIST     # [0x78] RFC 3361. flag byte, then: 0: domain names, 1: IP addrs\n#opt ip6rd ....                 # [0xd4] IPv6 rapid deployment\n"
  },
  {
    "path": "rd/lib/firmware/.gitignore",
    "content": "*\n!.gitignore\n"
  },
  {
    "path": "rd/root/.config/htop/htoprc",
    "content": "# Beware! This file is rewritten by htop when settings are changed in the interface.\n# The parser is also very primitive, and not human-friendly.\nfields=0 18 39 2 46 49 1\nsort_key=46\nsort_direction=1\nhide_threads=0\nhide_kernel_threads=0\nhide_userland_threads=0\nshadow_other_users=0\nshow_thread_names=0\nshow_program_path=1\nhighlight_base_name=0\nhighlight_megabytes=1\nhighlight_threads=1\ntree_view=0\nheader_margin=1\ndetailed_cpu_time=0\ncpu_count_from_zero=0\nupdate_process_names=0\naccount_guest_in_cpu_meter=0\ncolor_scheme=0\ndelay=15\nleft_meters=LeftCPUs2 Memory Swap\nleft_meter_modes=1 1 1\nright_meters=RightCPUs2 Tasks LoadAverage Uptime\nright_meter_modes=1 2 2 2\n"
  },
  {
    "path": "rd/sbin/ldconfig",
    "content": "#!/bin/sh\nscan_dirs() {\n\tscanelf -qS \"$@\" | while read SONAME FILE; do\n\t\tTARGET=\"${FILE##*/}\"\n\t\tLINK=\"${FILE%/*}/$SONAME\"\n\t\tcase \"$FILE\" in\n\t\t/lib/*|/usr/lib/*|/usr/local/lib/*) ;;\n\t\t*) [ -h \"$LINK\" -o ! -e \"$LINK\" ] && ln -sf \"$TARGET\" \"$LINK\"\n\t\tesac\n\tdone\n\treturn 0\n}\n# eat ldconfig options\nwhile getopts \"nNvXvf:C:r:\" opt; do\n\t:\ndone\nshift $(( $OPTIND - 1 ))\n[ $# -gt 0 ] && scan_dirs \"$@\"\n"
  },
  {
    "path": "rd/usr/bin/2to3-3.8",
    "content": "#!/usr/bin/python3.8\nimport sys\nfrom lib2to3.main import main\n\nsys.exit(main(\"lib2to3.fixes\"))\n"
  },
  {
    "path": "rd/usr/bin/ldd",
    "content": "#!/bin/sh\nexec /lib/ld-musl-aarch64.so.1 --list \"$@\"\n"
  },
  {
    "path": "rd/usr/bin/pydoc3.8",
    "content": "#!/usr/bin/python3.8\n\nimport pydoc\nif __name__ == '__main__':\n    pydoc.cli()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/LICENSE.txt",
    "content": "A. HISTORY OF THE SOFTWARE\n==========================\n\nPython was created in the early 1990s by Guido van Rossum at Stichting\nMathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands\nas a successor of a language called ABC.  Guido remains Python's\nprincipal author, although it includes many contributions from others.\n\nIn 1995, Guido continued his work on Python at the Corporation for\nNational Research Initiatives (CNRI, see http://www.cnri.reston.va.us)\nin Reston, Virginia where he released several versions of the\nsoftware.\n\nIn May 2000, Guido and the Python core development team moved to\nBeOpen.com to form the BeOpen PythonLabs team.  In October of the same\nyear, the PythonLabs team moved to Digital Creations, which became\nZope Corporation.  In 2001, the Python Software Foundation (PSF, see\nhttps://www.python.org/psf/) was formed, a non-profit organization\ncreated specifically to own Python-related Intellectual Property.\nZope Corporation was a sponsoring member of the PSF.\n\nAll Python releases are Open Source (see http://www.opensource.org for\nthe Open Source Definition).  Historically, most, but not all, Python\nreleases have also been GPL-compatible; the table below summarizes\nthe various releases.\n\n    Release         Derived     Year        Owner       GPL-\n                    from                                compatible? (1)\n\n    0.9.0 thru 1.2              1991-1995   CWI         yes\n    1.3 thru 1.5.2  1.2         1995-1999   CNRI        yes\n    1.6             1.5.2       2000        CNRI        no\n    2.0             1.6         2000        BeOpen.com  no\n    1.6.1           1.6         2001        CNRI        yes (2)\n    2.1             2.0+1.6.1   2001        PSF         no\n    2.0.1           2.0+1.6.1   2001        PSF         yes\n    2.1.1           2.1+2.0.1   2001        PSF         yes\n    2.1.2           2.1.1       2002        PSF         yes\n    2.1.3           2.1.2       2002        PSF         yes\n    2.2 and above   2.1.1       2001-now    PSF         yes\n\nFootnotes:\n\n(1) GPL-compatible doesn't mean that we're distributing Python under\n    the GPL.  All Python licenses, unlike the GPL, let you distribute\n    a modified version without making your changes open source.  The\n    GPL-compatible licenses make it possible to combine Python with\n    other software that is released under the GPL; the others don't.\n\n(2) According to Richard Stallman, 1.6.1 is not GPL-compatible,\n    because its license has a choice of law clause.  According to\n    CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1\n    is \"not incompatible\" with the GPL.\n\nThanks to the many outside volunteers who have worked under Guido's\ndirection to make these releases possible.\n\n\nB. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON\n===============================================================\n\nPYTHON SOFTWARE FOUNDATION LICENSE VERSION 2\n--------------------------------------------\n\n1. This LICENSE AGREEMENT is between the Python Software Foundation\n(\"PSF\"), and the Individual or Organization (\"Licensee\") accessing and\notherwise using this software (\"Python\") in source or binary form and\nits associated documentation.\n\n2. Subject to the terms and conditions of this License Agreement, PSF hereby\ngrants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,\nanalyze, test, perform and/or display publicly, prepare derivative works,\ndistribute, and otherwise use Python alone or in any derivative version,\nprovided, however, that PSF's License Agreement and PSF's notice of copyright,\ni.e., \"Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,\n2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Python Software Foundation;\nAll Rights Reserved\" are retained in Python alone or in any derivative version\nprepared by Licensee.\n\n3. In the event Licensee prepares a derivative work that is based on\nor incorporates Python or any part thereof, and wants to make\nthe derivative work available to others as provided herein, then\nLicensee hereby agrees to include in any such work a brief summary of\nthe changes made to Python.\n\n4. PSF is making Python available to Licensee on an \"AS IS\"\nbasis.  PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON\nFOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS\nA RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,\nOR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n6. This License Agreement will automatically terminate upon a material\nbreach of its terms and conditions.\n\n7. Nothing in this License Agreement shall be deemed to create any\nrelationship of agency, partnership, or joint venture between PSF and\nLicensee.  This License Agreement does not grant permission to use PSF\ntrademarks or trade name in a trademark sense to endorse or promote\nproducts or services of Licensee, or any third party.\n\n8. By copying, installing or otherwise using Python, Licensee\nagrees to be bound by the terms and conditions of this License\nAgreement.\n\n\nBEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0\n-------------------------------------------\n\nBEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1\n\n1. This LICENSE AGREEMENT is between BeOpen.com (\"BeOpen\"), having an\noffice at 160 Saratoga Avenue, Santa Clara, CA 95051, and the\nIndividual or Organization (\"Licensee\") accessing and otherwise using\nthis software in source or binary form and its associated\ndocumentation (\"the Software\").\n\n2. Subject to the terms and conditions of this BeOpen Python License\nAgreement, BeOpen hereby grants Licensee a non-exclusive,\nroyalty-free, world-wide license to reproduce, analyze, test, perform\nand/or display publicly, prepare derivative works, distribute, and\notherwise use the Software alone or in any derivative version,\nprovided, however, that the BeOpen Python License is retained in the\nSoftware, alone or in any derivative version prepared by Licensee.\n\n3. BeOpen is making the Software available to Licensee on an \"AS IS\"\nbasis.  BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE\nSOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS\nAS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY\nDERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n5. This License Agreement will automatically terminate upon a material\nbreach of its terms and conditions.\n\n6. This License Agreement shall be governed by and interpreted in all\nrespects by the law of the State of California, excluding conflict of\nlaw provisions.  Nothing in this License Agreement shall be deemed to\ncreate any relationship of agency, partnership, or joint venture\nbetween BeOpen and Licensee.  This License Agreement does not grant\npermission to use BeOpen trademarks or trade names in a trademark\nsense to endorse or promote products or services of Licensee, or any\nthird party.  As an exception, the \"BeOpen Python\" logos available at\nhttp://www.pythonlabs.com/logos.html may be used according to the\npermissions granted on that web page.\n\n7. By copying, installing or otherwise using the software, Licensee\nagrees to be bound by the terms and conditions of this License\nAgreement.\n\n\nCNRI LICENSE AGREEMENT FOR PYTHON 1.6.1\n---------------------------------------\n\n1. This LICENSE AGREEMENT is between the Corporation for National\nResearch Initiatives, having an office at 1895 Preston White Drive,\nReston, VA 20191 (\"CNRI\"), and the Individual or Organization\n(\"Licensee\") accessing and otherwise using Python 1.6.1 software in\nsource or binary form and its associated documentation.\n\n2. Subject to the terms and conditions of this License Agreement, CNRI\nhereby grants Licensee a nonexclusive, royalty-free, world-wide\nlicense to reproduce, analyze, test, perform and/or display publicly,\nprepare derivative works, distribute, and otherwise use Python 1.6.1\nalone or in any derivative version, provided, however, that CNRI's\nLicense Agreement and CNRI's notice of copyright, i.e., \"Copyright (c)\n1995-2001 Corporation for National Research Initiatives; All Rights\nReserved\" are retained in Python 1.6.1 alone or in any derivative\nversion prepared by Licensee.  Alternately, in lieu of CNRI's License\nAgreement, Licensee may substitute the following text (omitting the\nquotes): \"Python 1.6.1 is made available subject to the terms and\nconditions in CNRI's License Agreement.  This Agreement together with\nPython 1.6.1 may be located on the Internet using the following\nunique, persistent identifier (known as a handle): 1895.22/1013.  This\nAgreement may also be obtained from a proxy server on the Internet\nusing the following URL: http://hdl.handle.net/1895.22/1013\".\n\n3. In the event Licensee prepares a derivative work that is based on\nor incorporates Python 1.6.1 or any part thereof, and wants to make\nthe derivative work available to others as provided herein, then\nLicensee hereby agrees to include in any such work a brief summary of\nthe changes made to Python 1.6.1.\n\n4. CNRI is making Python 1.6.1 available to Licensee on an \"AS IS\"\nbasis.  CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON\n1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS\nA RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,\nOR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n6. This License Agreement will automatically terminate upon a material\nbreach of its terms and conditions.\n\n7. This License Agreement shall be governed by the federal\nintellectual property law of the United States, including without\nlimitation the federal copyright law, and, to the extent such\nU.S. federal law does not apply, by the law of the Commonwealth of\nVirginia, excluding Virginia's conflict of law provisions.\nNotwithstanding the foregoing, with regard to derivative works based\non Python 1.6.1 that incorporate non-separable material that was\npreviously distributed under the GNU General Public License (GPL), the\nlaw of the Commonwealth of Virginia shall govern this License\nAgreement only as to issues arising under or with respect to\nParagraphs 4, 5, and 7 of this License Agreement.  Nothing in this\nLicense Agreement shall be deemed to create any relationship of\nagency, partnership, or joint venture between CNRI and Licensee.  This\nLicense Agreement does not grant permission to use CNRI trademarks or\ntrade name in a trademark sense to endorse or promote products or\nservices of Licensee, or any third party.\n\n8. By clicking on the \"ACCEPT\" button where indicated, or by copying,\ninstalling or otherwise using Python 1.6.1, Licensee agrees to be\nbound by the terms and conditions of this License Agreement.\n\n        ACCEPT\n\n\nCWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2\n--------------------------------------------------\n\nCopyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,\nThe Netherlands.  All rights reserved.\n\nPermission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose and without fee is hereby granted,\nprovided that the above copyright notice appear in all copies and that\nboth that copyright notice and this permission notice appear in\nsupporting documentation, and that the name of Stichting Mathematisch\nCentrum or CWI not be used in advertising or publicity pertaining to\ndistribution of the software without specific, written prior\npermission.\n\nSTICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO\nTHIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE\nFOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT\nOF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n"
  },
  {
    "path": "rd/usr/lib/python3.8/__future__.py",
    "content": "\"\"\"Record of phased-in incompatible language changes.\n\nEach line is of the form:\n\n    FeatureName = \"_Feature(\" OptionalRelease \",\" MandatoryRelease \",\"\n                              CompilerFlag \")\"\n\nwhere, normally, OptionalRelease < MandatoryRelease, and both are 5-tuples\nof the same form as sys.version_info:\n\n    (PY_MAJOR_VERSION, # the 2 in 2.1.0a3; an int\n     PY_MINOR_VERSION, # the 1; an int\n     PY_MICRO_VERSION, # the 0; an int\n     PY_RELEASE_LEVEL, # \"alpha\", \"beta\", \"candidate\" or \"final\"; string\n     PY_RELEASE_SERIAL # the 3; an int\n    )\n\nOptionalRelease records the first release in which\n\n    from __future__ import FeatureName\n\nwas accepted.\n\nIn the case of MandatoryReleases that have not yet occurred,\nMandatoryRelease predicts the release in which the feature will become part\nof the language.\n\nElse MandatoryRelease records when the feature became part of the language;\nin releases at or after that, modules no longer need\n\n    from __future__ import FeatureName\n\nto use the feature in question, but may continue to use such imports.\n\nMandatoryRelease may also be None, meaning that a planned feature got\ndropped.\n\nInstances of class _Feature have two corresponding methods,\n.getOptionalRelease() and .getMandatoryRelease().\n\nCompilerFlag is the (bitfield) flag that should be passed in the fourth\nargument to the builtin function compile() to enable the feature in\ndynamically compiled code.  This flag is stored in the .compiler_flag\nattribute on _Future instances.  These values must match the appropriate\n#defines of CO_xxx flags in Include/compile.h.\n\nNo feature line is ever to be deleted from this file.\n\"\"\"\n\nall_feature_names = [\n    \"nested_scopes\",\n    \"generators\",\n    \"division\",\n    \"absolute_import\",\n    \"with_statement\",\n    \"print_function\",\n    \"unicode_literals\",\n    \"barry_as_FLUFL\",\n    \"generator_stop\",\n    \"annotations\",\n]\n\n__all__ = [\"all_feature_names\"] + all_feature_names\n\n# The CO_xxx symbols are defined here under the same names defined in\n# code.h and used by compile.h, so that an editor search will find them here.\n# However, they're not exported in __all__, because they don't really belong to\n# this module.\nCO_NESTED            = 0x0010   # nested_scopes\nCO_GENERATOR_ALLOWED = 0        # generators (obsolete, was 0x1000)\nCO_FUTURE_DIVISION   = 0x20000   # division\nCO_FUTURE_ABSOLUTE_IMPORT = 0x40000 # perform absolute imports by default\nCO_FUTURE_WITH_STATEMENT  = 0x80000   # with statement\nCO_FUTURE_PRINT_FUNCTION  = 0x100000   # print function\nCO_FUTURE_UNICODE_LITERALS = 0x200000 # unicode string literals\nCO_FUTURE_BARRY_AS_BDFL = 0x400000\nCO_FUTURE_GENERATOR_STOP  = 0x800000 # StopIteration becomes RuntimeError in generators\nCO_FUTURE_ANNOTATIONS     = 0x1000000  # annotations become strings at runtime\n\nclass _Feature:\n    def __init__(self, optionalRelease, mandatoryRelease, compiler_flag):\n        self.optional = optionalRelease\n        self.mandatory = mandatoryRelease\n        self.compiler_flag = compiler_flag\n\n    def getOptionalRelease(self):\n        \"\"\"Return first release in which this feature was recognized.\n\n        This is a 5-tuple, of the same form as sys.version_info.\n        \"\"\"\n\n        return self.optional\n\n    def getMandatoryRelease(self):\n        \"\"\"Return release in which this feature will become mandatory.\n\n        This is a 5-tuple, of the same form as sys.version_info, or, if\n        the feature was dropped, is None.\n        \"\"\"\n\n        return self.mandatory\n\n    def __repr__(self):\n        return \"_Feature\" + repr((self.optional,\n                                  self.mandatory,\n                                  self.compiler_flag))\n\nnested_scopes = _Feature((2, 1, 0, \"beta\",  1),\n                         (2, 2, 0, \"alpha\", 0),\n                         CO_NESTED)\n\ngenerators = _Feature((2, 2, 0, \"alpha\", 1),\n                      (2, 3, 0, \"final\", 0),\n                      CO_GENERATOR_ALLOWED)\n\ndivision = _Feature((2, 2, 0, \"alpha\", 2),\n                    (3, 0, 0, \"alpha\", 0),\n                    CO_FUTURE_DIVISION)\n\nabsolute_import = _Feature((2, 5, 0, \"alpha\", 1),\n                           (3, 0, 0, \"alpha\", 0),\n                           CO_FUTURE_ABSOLUTE_IMPORT)\n\nwith_statement = _Feature((2, 5, 0, \"alpha\", 1),\n                          (2, 6, 0, \"alpha\", 0),\n                          CO_FUTURE_WITH_STATEMENT)\n\nprint_function = _Feature((2, 6, 0, \"alpha\", 2),\n                          (3, 0, 0, \"alpha\", 0),\n                          CO_FUTURE_PRINT_FUNCTION)\n\nunicode_literals = _Feature((2, 6, 0, \"alpha\", 2),\n                            (3, 0, 0, \"alpha\", 0),\n                            CO_FUTURE_UNICODE_LITERALS)\n\nbarry_as_FLUFL = _Feature((3, 1, 0, \"alpha\", 2),\n                          (4, 0, 0, \"alpha\", 0),\n                          CO_FUTURE_BARRY_AS_BDFL)\n\ngenerator_stop = _Feature((3, 5, 0, \"beta\", 1),\n                          (3, 7, 0, \"alpha\", 0),\n                          CO_FUTURE_GENERATOR_STOP)\n\nannotations = _Feature((3, 7, 0, \"beta\", 1),\n                       (4, 0, 0, \"alpha\", 0),\n                       CO_FUTURE_ANNOTATIONS)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/__phello__.foo.py",
    "content": "# This file exists as a helper for the test.test_frozen module.\n"
  },
  {
    "path": "rd/usr/lib/python3.8/_bootlocale.py",
    "content": "\"\"\"A minimal subset of the locale module used at interpreter startup\n(imported by the _io module), in order to reduce startup time.\n\nDon't import directly from third-party code; use the `locale` module instead!\n\"\"\"\n\nimport sys\nimport _locale\n\nif sys.platform.startswith(\"win\"):\n    def getpreferredencoding(do_setlocale=True):\n        if sys.flags.utf8_mode:\n            return 'UTF-8'\n        return _locale._getdefaultlocale()[1]\nelse:\n    try:\n        _locale.CODESET\n    except AttributeError:\n        if hasattr(sys, 'getandroidapilevel'):\n            # On Android langinfo.h and CODESET are missing, and UTF-8 is\n            # always used in mbstowcs() and wcstombs().\n            def getpreferredencoding(do_setlocale=True):\n                return 'UTF-8'\n        else:\n            def getpreferredencoding(do_setlocale=True):\n                if sys.flags.utf8_mode:\n                    return 'UTF-8'\n                # This path for legacy systems needs the more complex\n                # getdefaultlocale() function, import the full locale module.\n                import locale\n                return locale.getpreferredencoding(do_setlocale)\n    else:\n        def getpreferredencoding(do_setlocale=True):\n            assert not do_setlocale\n            if sys.flags.utf8_mode:\n                return 'UTF-8'\n            result = _locale.nl_langinfo(_locale.CODESET)\n            if not result and sys.platform == 'darwin':\n                # nl_langinfo can return an empty string\n                # when the setting has an invalid value.\n                # Default to UTF-8 in that case because\n                # UTF-8 is the default charset on OSX and\n                # returning nothing will crash the\n                # interpreter.\n                result = 'UTF-8'\n            return result\n"
  },
  {
    "path": "rd/usr/lib/python3.8/_collections_abc.py",
    "content": "# Copyright 2007 Google, Inc. All Rights Reserved.\n# Licensed to PSF under a Contributor Agreement.\n\n\"\"\"Abstract Base Classes (ABCs) for collections, according to PEP 3119.\n\nUnit tests are in test_collections.\n\"\"\"\n\nfrom abc import ABCMeta, abstractmethod\nimport sys\n\n__all__ = [\"Awaitable\", \"Coroutine\",\n           \"AsyncIterable\", \"AsyncIterator\", \"AsyncGenerator\",\n           \"Hashable\", \"Iterable\", \"Iterator\", \"Generator\", \"Reversible\",\n           \"Sized\", \"Container\", \"Callable\", \"Collection\",\n           \"Set\", \"MutableSet\",\n           \"Mapping\", \"MutableMapping\",\n           \"MappingView\", \"KeysView\", \"ItemsView\", \"ValuesView\",\n           \"Sequence\", \"MutableSequence\",\n           \"ByteString\",\n           ]\n\n# This module has been renamed from collections.abc to _collections_abc to\n# speed up interpreter startup. Some of the types such as MutableMapping are\n# required early but collections module imports a lot of other modules.\n# See issue #19218\n__name__ = \"collections.abc\"\n\n# Private list of types that we want to register with the various ABCs\n# so that they will pass tests like:\n#       it = iter(somebytearray)\n#       assert isinstance(it, Iterable)\n# Note:  in other implementations, these types might not be distinct\n# and they may have their own implementation specific types that\n# are not included on this list.\nbytes_iterator = type(iter(b''))\nbytearray_iterator = type(iter(bytearray()))\n#callable_iterator = ???\ndict_keyiterator = type(iter({}.keys()))\ndict_valueiterator = type(iter({}.values()))\ndict_itemiterator = type(iter({}.items()))\nlist_iterator = type(iter([]))\nlist_reverseiterator = type(iter(reversed([])))\nrange_iterator = type(iter(range(0)))\nlongrange_iterator = type(iter(range(1 << 1000)))\nset_iterator = type(iter(set()))\nstr_iterator = type(iter(\"\"))\ntuple_iterator = type(iter(()))\nzip_iterator = type(iter(zip()))\n## views ##\ndict_keys = type({}.keys())\ndict_values = type({}.values())\ndict_items = type({}.items())\n## misc ##\nmappingproxy = type(type.__dict__)\ngenerator = type((lambda: (yield))())\n## coroutine ##\nasync def _coro(): pass\n_coro = _coro()\ncoroutine = type(_coro)\n_coro.close()  # Prevent ResourceWarning\ndel _coro\n## asynchronous generator ##\nasync def _ag(): yield\n_ag = _ag()\nasync_generator = type(_ag)\ndel _ag\n\n\n### ONE-TRICK PONIES ###\n\ndef _check_methods(C, *methods):\n    mro = C.__mro__\n    for method in methods:\n        for B in mro:\n            if method in B.__dict__:\n                if B.__dict__[method] is None:\n                    return NotImplemented\n                break\n        else:\n            return NotImplemented\n    return True\n\nclass Hashable(metaclass=ABCMeta):\n\n    __slots__ = ()\n\n    @abstractmethod\n    def __hash__(self):\n        return 0\n\n    @classmethod\n    def __subclasshook__(cls, C):\n        if cls is Hashable:\n            return _check_methods(C, \"__hash__\")\n        return NotImplemented\n\n\nclass Awaitable(metaclass=ABCMeta):\n\n    __slots__ = ()\n\n    @abstractmethod\n    def __await__(self):\n        yield\n\n    @classmethod\n    def __subclasshook__(cls, C):\n        if cls is Awaitable:\n            return _check_methods(C, \"__await__\")\n        return NotImplemented\n\n\nclass Coroutine(Awaitable):\n\n    __slots__ = ()\n\n    @abstractmethod\n    def send(self, value):\n        \"\"\"Send a value into the coroutine.\n        Return next yielded value or raise StopIteration.\n        \"\"\"\n        raise StopIteration\n\n    @abstractmethod\n    def throw(self, typ, val=None, tb=None):\n        \"\"\"Raise an exception in the coroutine.\n        Return next yielded value or raise StopIteration.\n        \"\"\"\n        if val is None:\n            if tb is None:\n                raise typ\n            val = typ()\n        if tb is not None:\n            val = val.with_traceback(tb)\n        raise val\n\n    def close(self):\n        \"\"\"Raise GeneratorExit inside coroutine.\n        \"\"\"\n        try:\n            self.throw(GeneratorExit)\n        except (GeneratorExit, StopIteration):\n            pass\n        else:\n            raise RuntimeError(\"coroutine ignored GeneratorExit\")\n\n    @classmethod\n    def __subclasshook__(cls, C):\n        if cls is Coroutine:\n            return _check_methods(C, '__await__', 'send', 'throw', 'close')\n        return NotImplemented\n\n\nCoroutine.register(coroutine)\n\n\nclass AsyncIterable(metaclass=ABCMeta):\n\n    __slots__ = ()\n\n    @abstractmethod\n    def __aiter__(self):\n        return AsyncIterator()\n\n    @classmethod\n    def __subclasshook__(cls, C):\n        if cls is AsyncIterable:\n            return _check_methods(C, \"__aiter__\")\n        return NotImplemented\n\n\nclass AsyncIterator(AsyncIterable):\n\n    __slots__ = ()\n\n    @abstractmethod\n    async def __anext__(self):\n        \"\"\"Return the next item or raise StopAsyncIteration when exhausted.\"\"\"\n        raise StopAsyncIteration\n\n    def __aiter__(self):\n        return self\n\n    @classmethod\n    def __subclasshook__(cls, C):\n        if cls is AsyncIterator:\n            return _check_methods(C, \"__anext__\", \"__aiter__\")\n        return NotImplemented\n\n\nclass AsyncGenerator(AsyncIterator):\n\n    __slots__ = ()\n\n    async def __anext__(self):\n        \"\"\"Return the next item from the asynchronous generator.\n        When exhausted, raise StopAsyncIteration.\n        \"\"\"\n        return await self.asend(None)\n\n    @abstractmethod\n    async def asend(self, value):\n        \"\"\"Send a value into the asynchronous generator.\n        Return next yielded value or raise StopAsyncIteration.\n        \"\"\"\n        raise StopAsyncIteration\n\n    @abstractmethod\n    async def athrow(self, typ, val=None, tb=None):\n        \"\"\"Raise an exception in the asynchronous generator.\n        Return next yielded value or raise StopAsyncIteration.\n        \"\"\"\n        if val is None:\n            if tb is None:\n                raise typ\n            val = typ()\n        if tb is not None:\n            val = val.with_traceback(tb)\n        raise val\n\n    async def aclose(self):\n        \"\"\"Raise GeneratorExit inside coroutine.\n        \"\"\"\n        try:\n            await self.athrow(GeneratorExit)\n        except (GeneratorExit, StopAsyncIteration):\n            pass\n        else:\n            raise RuntimeError(\"asynchronous generator ignored GeneratorExit\")\n\n    @classmethod\n    def __subclasshook__(cls, C):\n        if cls is AsyncGenerator:\n            return _check_methods(C, '__aiter__', '__anext__',\n                                  'asend', 'athrow', 'aclose')\n        return NotImplemented\n\n\nAsyncGenerator.register(async_generator)\n\n\nclass Iterable(metaclass=ABCMeta):\n\n    __slots__ = ()\n\n    @abstractmethod\n    def __iter__(self):\n        while False:\n            yield None\n\n    @classmethod\n    def __subclasshook__(cls, C):\n        if cls is Iterable:\n            return _check_methods(C, \"__iter__\")\n        return NotImplemented\n\n\nclass Iterator(Iterable):\n\n    __slots__ = ()\n\n    @abstractmethod\n    def __next__(self):\n        'Return the next item from the iterator. When exhausted, raise StopIteration'\n        raise StopIteration\n\n    def __iter__(self):\n        return self\n\n    @classmethod\n    def __subclasshook__(cls, C):\n        if cls is Iterator:\n            return _check_methods(C, '__iter__', '__next__')\n        return NotImplemented\n\nIterator.register(bytes_iterator)\nIterator.register(bytearray_iterator)\n#Iterator.register(callable_iterator)\nIterator.register(dict_keyiterator)\nIterator.register(dict_valueiterator)\nIterator.register(dict_itemiterator)\nIterator.register(list_iterator)\nIterator.register(list_reverseiterator)\nIterator.register(range_iterator)\nIterator.register(longrange_iterator)\nIterator.register(set_iterator)\nIterator.register(str_iterator)\nIterator.register(tuple_iterator)\nIterator.register(zip_iterator)\n\n\nclass Reversible(Iterable):\n\n    __slots__ = ()\n\n    @abstractmethod\n    def __reversed__(self):\n        while False:\n            yield None\n\n    @classmethod\n    def __subclasshook__(cls, C):\n        if cls is Reversible:\n            return _check_methods(C, \"__reversed__\", \"__iter__\")\n        return NotImplemented\n\n\nclass Generator(Iterator):\n\n    __slots__ = ()\n\n    def __next__(self):\n        \"\"\"Return the next item from the generator.\n        When exhausted, raise StopIteration.\n        \"\"\"\n        return self.send(None)\n\n    @abstractmethod\n    def send(self, value):\n        \"\"\"Send a value into the generator.\n        Return next yielded value or raise StopIteration.\n        \"\"\"\n        raise StopIteration\n\n    @abstractmethod\n    def throw(self, typ, val=None, tb=None):\n        \"\"\"Raise an exception in the generator.\n        Return next yielded value or raise StopIteration.\n        \"\"\"\n        if val is None:\n            if tb is None:\n                raise typ\n            val = typ()\n        if tb is not None:\n            val = val.with_traceback(tb)\n        raise val\n\n    def close(self):\n        \"\"\"Raise GeneratorExit inside generator.\n        \"\"\"\n        try:\n            self.throw(GeneratorExit)\n        except (GeneratorExit, StopIteration):\n            pass\n        else:\n            raise RuntimeError(\"generator ignored GeneratorExit\")\n\n    @classmethod\n    def __subclasshook__(cls, C):\n        if cls is Generator:\n            return _check_methods(C, '__iter__', '__next__',\n                                  'send', 'throw', 'close')\n        return NotImplemented\n\nGenerator.register(generator)\n\n\nclass Sized(metaclass=ABCMeta):\n\n    __slots__ = ()\n\n    @abstractmethod\n    def __len__(self):\n        return 0\n\n    @classmethod\n    def __subclasshook__(cls, C):\n        if cls is Sized:\n            return _check_methods(C, \"__len__\")\n        return NotImplemented\n\n\nclass Container(metaclass=ABCMeta):\n\n    __slots__ = ()\n\n    @abstractmethod\n    def __contains__(self, x):\n        return False\n\n    @classmethod\n    def __subclasshook__(cls, C):\n        if cls is Container:\n            return _check_methods(C, \"__contains__\")\n        return NotImplemented\n\nclass Collection(Sized, Iterable, Container):\n\n    __slots__ = ()\n\n    @classmethod\n    def __subclasshook__(cls, C):\n        if cls is Collection:\n            return _check_methods(C,  \"__len__\", \"__iter__\", \"__contains__\")\n        return NotImplemented\n\nclass Callable(metaclass=ABCMeta):\n\n    __slots__ = ()\n\n    @abstractmethod\n    def __call__(self, *args, **kwds):\n        return False\n\n    @classmethod\n    def __subclasshook__(cls, C):\n        if cls is Callable:\n            return _check_methods(C, \"__call__\")\n        return NotImplemented\n\n\n### SETS ###\n\n\nclass Set(Collection):\n\n    \"\"\"A set is a finite, iterable container.\n\n    This class provides concrete generic implementations of all\n    methods except for __contains__, __iter__ and __len__.\n\n    To override the comparisons (presumably for speed, as the\n    semantics are fixed), redefine __le__ and __ge__,\n    then the other operations will automatically follow suit.\n    \"\"\"\n\n    __slots__ = ()\n\n    def __le__(self, other):\n        if not isinstance(other, Set):\n            return NotImplemented\n        if len(self) > len(other):\n            return False\n        for elem in self:\n            if elem not in other:\n                return False\n        return True\n\n    def __lt__(self, other):\n        if not isinstance(other, Set):\n            return NotImplemented\n        return len(self) < len(other) and self.__le__(other)\n\n    def __gt__(self, other):\n        if not isinstance(other, Set):\n            return NotImplemented\n        return len(self) > len(other) and self.__ge__(other)\n\n    def __ge__(self, other):\n        if not isinstance(other, Set):\n            return NotImplemented\n        if len(self) < len(other):\n            return False\n        for elem in other:\n            if elem not in self:\n                return False\n        return True\n\n    def __eq__(self, other):\n        if not isinstance(other, Set):\n            return NotImplemented\n        return len(self) == len(other) and self.__le__(other)\n\n    @classmethod\n    def _from_iterable(cls, it):\n        '''Construct an instance of the class from any iterable input.\n\n        Must override this method if the class constructor signature\n        does not accept an iterable for an input.\n        '''\n        return cls(it)\n\n    def __and__(self, other):\n        if not isinstance(other, Iterable):\n            return NotImplemented\n        return self._from_iterable(value for value in other if value in self)\n\n    __rand__ = __and__\n\n    def isdisjoint(self, other):\n        'Return True if two sets have a null intersection.'\n        for value in other:\n            if value in self:\n                return False\n        return True\n\n    def __or__(self, other):\n        if not isinstance(other, Iterable):\n            return NotImplemented\n        chain = (e for s in (self, other) for e in s)\n        return self._from_iterable(chain)\n\n    __ror__ = __or__\n\n    def __sub__(self, other):\n        if not isinstance(other, Set):\n            if not isinstance(other, Iterable):\n                return NotImplemented\n            other = self._from_iterable(other)\n        return self._from_iterable(value for value in self\n                                   if value not in other)\n\n    def __rsub__(self, other):\n        if not isinstance(other, Set):\n            if not isinstance(other, Iterable):\n                return NotImplemented\n            other = self._from_iterable(other)\n        return self._from_iterable(value for value in other\n                                   if value not in self)\n\n    def __xor__(self, other):\n        if not isinstance(other, Set):\n            if not isinstance(other, Iterable):\n                return NotImplemented\n            other = self._from_iterable(other)\n        return (self - other) | (other - self)\n\n    __rxor__ = __xor__\n\n    def _hash(self):\n        \"\"\"Compute the hash value of a set.\n\n        Note that we don't define __hash__: not all sets are hashable.\n        But if you define a hashable set type, its __hash__ should\n        call this function.\n\n        This must be compatible __eq__.\n\n        All sets ought to compare equal if they contain the same\n        elements, regardless of how they are implemented, and\n        regardless of the order of the elements; so there's not much\n        freedom for __eq__ or __hash__.  We match the algorithm used\n        by the built-in frozenset type.\n        \"\"\"\n        MAX = sys.maxsize\n        MASK = 2 * MAX + 1\n        n = len(self)\n        h = 1927868237 * (n + 1)\n        h &= MASK\n        for x in self:\n            hx = hash(x)\n            h ^= (hx ^ (hx << 16) ^ 89869747)  * 3644798167\n            h &= MASK\n        h = h * 69069 + 907133923\n        h &= MASK\n        if h > MAX:\n            h -= MASK + 1\n        if h == -1:\n            h = 590923713\n        return h\n\nSet.register(frozenset)\n\n\nclass MutableSet(Set):\n    \"\"\"A mutable set is a finite, iterable container.\n\n    This class provides concrete generic implementations of all\n    methods except for __contains__, __iter__, __len__,\n    add(), and discard().\n\n    To override the comparisons (presumably for speed, as the\n    semantics are fixed), all you have to do is redefine __le__ and\n    then the other operations will automatically follow suit.\n    \"\"\"\n\n    __slots__ = ()\n\n    @abstractmethod\n    def add(self, value):\n        \"\"\"Add an element.\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def discard(self, value):\n        \"\"\"Remove an element.  Do not raise an exception if absent.\"\"\"\n        raise NotImplementedError\n\n    def remove(self, value):\n        \"\"\"Remove an element. If not a member, raise a KeyError.\"\"\"\n        if value not in self:\n            raise KeyError(value)\n        self.discard(value)\n\n    def pop(self):\n        \"\"\"Return the popped value.  Raise KeyError if empty.\"\"\"\n        it = iter(self)\n        try:\n            value = next(it)\n        except StopIteration:\n            raise KeyError from None\n        self.discard(value)\n        return value\n\n    def clear(self):\n        \"\"\"This is slow (creates N new iterators!) but effective.\"\"\"\n        try:\n            while True:\n                self.pop()\n        except KeyError:\n            pass\n\n    def __ior__(self, it):\n        for value in it:\n            self.add(value)\n        return self\n\n    def __iand__(self, it):\n        for value in (self - it):\n            self.discard(value)\n        return self\n\n    def __ixor__(self, it):\n        if it is self:\n            self.clear()\n        else:\n            if not isinstance(it, Set):\n                it = self._from_iterable(it)\n            for value in it:\n                if value in self:\n                    self.discard(value)\n                else:\n                    self.add(value)\n        return self\n\n    def __isub__(self, it):\n        if it is self:\n            self.clear()\n        else:\n            for value in it:\n                self.discard(value)\n        return self\n\nMutableSet.register(set)\n\n\n### MAPPINGS ###\n\n\nclass Mapping(Collection):\n\n    __slots__ = ()\n\n    \"\"\"A Mapping is a generic container for associating key/value\n    pairs.\n\n    This class provides concrete generic implementations of all\n    methods except for __getitem__, __iter__, and __len__.\n\n    \"\"\"\n\n    @abstractmethod\n    def __getitem__(self, key):\n        raise KeyError\n\n    def get(self, key, default=None):\n        'D.get(k[,d]) -> D[k] if k in D, else d.  d defaults to None.'\n        try:\n            return self[key]\n        except KeyError:\n            return default\n\n    def __contains__(self, key):\n        try:\n            self[key]\n        except KeyError:\n            return False\n        else:\n            return True\n\n    def keys(self):\n        \"D.keys() -> a set-like object providing a view on D's keys\"\n        return KeysView(self)\n\n    def items(self):\n        \"D.items() -> a set-like object providing a view on D's items\"\n        return ItemsView(self)\n\n    def values(self):\n        \"D.values() -> an object providing a view on D's values\"\n        return ValuesView(self)\n\n    def __eq__(self, other):\n        if not isinstance(other, Mapping):\n            return NotImplemented\n        return dict(self.items()) == dict(other.items())\n\n    __reversed__ = None\n\nMapping.register(mappingproxy)\n\n\nclass MappingView(Sized):\n\n    __slots__ = '_mapping',\n\n    def __init__(self, mapping):\n        self._mapping = mapping\n\n    def __len__(self):\n        return len(self._mapping)\n\n    def __repr__(self):\n        return '{0.__class__.__name__}({0._mapping!r})'.format(self)\n\n\nclass KeysView(MappingView, Set):\n\n    __slots__ = ()\n\n    @classmethod\n    def _from_iterable(self, it):\n        return set(it)\n\n    def __contains__(self, key):\n        return key in self._mapping\n\n    def __iter__(self):\n        yield from self._mapping\n\nKeysView.register(dict_keys)\n\n\nclass ItemsView(MappingView, Set):\n\n    __slots__ = ()\n\n    @classmethod\n    def _from_iterable(self, it):\n        return set(it)\n\n    def __contains__(self, item):\n        key, value = item\n        try:\n            v = self._mapping[key]\n        except KeyError:\n            return False\n        else:\n            return v is value or v == value\n\n    def __iter__(self):\n        for key in self._mapping:\n            yield (key, self._mapping[key])\n\nItemsView.register(dict_items)\n\n\nclass ValuesView(MappingView, Collection):\n\n    __slots__ = ()\n\n    def __contains__(self, value):\n        for key in self._mapping:\n            v = self._mapping[key]\n            if v is value or v == value:\n                return True\n        return False\n\n    def __iter__(self):\n        for key in self._mapping:\n            yield self._mapping[key]\n\nValuesView.register(dict_values)\n\n\nclass MutableMapping(Mapping):\n\n    __slots__ = ()\n\n    \"\"\"A MutableMapping is a generic container for associating\n    key/value pairs.\n\n    This class provides concrete generic implementations of all\n    methods except for __getitem__, __setitem__, __delitem__,\n    __iter__, and __len__.\n\n    \"\"\"\n\n    @abstractmethod\n    def __setitem__(self, key, value):\n        raise KeyError\n\n    @abstractmethod\n    def __delitem__(self, key):\n        raise KeyError\n\n    __marker = object()\n\n    def pop(self, key, default=__marker):\n        '''D.pop(k[,d]) -> v, remove specified key and return the corresponding value.\n          If key is not found, d is returned if given, otherwise KeyError is raised.\n        '''\n        try:\n            value = self[key]\n        except KeyError:\n            if default is self.__marker:\n                raise\n            return default\n        else:\n            del self[key]\n            return value\n\n    def popitem(self):\n        '''D.popitem() -> (k, v), remove and return some (key, value) pair\n           as a 2-tuple; but raise KeyError if D is empty.\n        '''\n        try:\n            key = next(iter(self))\n        except StopIteration:\n            raise KeyError from None\n        value = self[key]\n        del self[key]\n        return key, value\n\n    def clear(self):\n        'D.clear() -> None.  Remove all items from D.'\n        try:\n            while True:\n                self.popitem()\n        except KeyError:\n            pass\n\n    def update(self, other=(), /, **kwds):\n        ''' D.update([E, ]**F) -> None.  Update D from mapping/iterable E and F.\n            If E present and has a .keys() method, does:     for k in E: D[k] = E[k]\n            If E present and lacks .keys() method, does:     for (k, v) in E: D[k] = v\n            In either case, this is followed by: for k, v in F.items(): D[k] = v\n        '''\n        if isinstance(other, Mapping):\n            for key in other:\n                self[key] = other[key]\n        elif hasattr(other, \"keys\"):\n            for key in other.keys():\n                self[key] = other[key]\n        else:\n            for key, value in other:\n                self[key] = value\n        for key, value in kwds.items():\n            self[key] = value\n\n    def setdefault(self, key, default=None):\n        'D.setdefault(k[,d]) -> D.get(k,d), also set D[k]=d if k not in D'\n        try:\n            return self[key]\n        except KeyError:\n            self[key] = default\n        return default\n\nMutableMapping.register(dict)\n\n\n### SEQUENCES ###\n\n\nclass Sequence(Reversible, Collection):\n\n    \"\"\"All the operations on a read-only sequence.\n\n    Concrete subclasses must override __new__ or __init__,\n    __getitem__, and __len__.\n    \"\"\"\n\n    __slots__ = ()\n\n    @abstractmethod\n    def __getitem__(self, index):\n        raise IndexError\n\n    def __iter__(self):\n        i = 0\n        try:\n            while True:\n                v = self[i]\n                yield v\n                i += 1\n        except IndexError:\n            return\n\n    def __contains__(self, value):\n        for v in self:\n            if v is value or v == value:\n                return True\n        return False\n\n    def __reversed__(self):\n        for i in reversed(range(len(self))):\n            yield self[i]\n\n    def index(self, value, start=0, stop=None):\n        '''S.index(value, [start, [stop]]) -> integer -- return first index of value.\n           Raises ValueError if the value is not present.\n\n           Supporting start and stop arguments is optional, but\n           recommended.\n        '''\n        if start is not None and start < 0:\n            start = max(len(self) + start, 0)\n        if stop is not None and stop < 0:\n            stop += len(self)\n\n        i = start\n        while stop is None or i < stop:\n            try:\n                v = self[i]\n                if v is value or v == value:\n                    return i\n            except IndexError:\n                break\n            i += 1\n        raise ValueError\n\n    def count(self, value):\n        'S.count(value) -> integer -- return number of occurrences of value'\n        return sum(1 for v in self if v is value or v == value)\n\nSequence.register(tuple)\nSequence.register(str)\nSequence.register(range)\nSequence.register(memoryview)\n\n\nclass ByteString(Sequence):\n\n    \"\"\"This unifies bytes and bytearray.\n\n    XXX Should add all their methods.\n    \"\"\"\n\n    __slots__ = ()\n\nByteString.register(bytes)\nByteString.register(bytearray)\n\n\nclass MutableSequence(Sequence):\n\n    __slots__ = ()\n\n    \"\"\"All the operations on a read-write sequence.\n\n    Concrete subclasses must provide __new__ or __init__,\n    __getitem__, __setitem__, __delitem__, __len__, and insert().\n\n    \"\"\"\n\n    @abstractmethod\n    def __setitem__(self, index, value):\n        raise IndexError\n\n    @abstractmethod\n    def __delitem__(self, index):\n        raise IndexError\n\n    @abstractmethod\n    def insert(self, index, value):\n        'S.insert(index, value) -- insert value before index'\n        raise IndexError\n\n    def append(self, value):\n        'S.append(value) -- append value to the end of the sequence'\n        self.insert(len(self), value)\n\n    def clear(self):\n        'S.clear() -> None -- remove all items from S'\n        try:\n            while True:\n                self.pop()\n        except IndexError:\n            pass\n\n    def reverse(self):\n        'S.reverse() -- reverse *IN PLACE*'\n        n = len(self)\n        for i in range(n//2):\n            self[i], self[n-i-1] = self[n-i-1], self[i]\n\n    def extend(self, values):\n        'S.extend(iterable) -- extend sequence by appending elements from the iterable'\n        if values is self:\n            values = list(values)\n        for v in values:\n            self.append(v)\n\n    def pop(self, index=-1):\n        '''S.pop([index]) -> item -- remove and return item at index (default last).\n           Raise IndexError if list is empty or index is out of range.\n        '''\n        v = self[index]\n        del self[index]\n        return v\n\n    def remove(self, value):\n        '''S.remove(value) -- remove first occurrence of value.\n           Raise ValueError if the value is not present.\n        '''\n        del self[self.index(value)]\n\n    def __iadd__(self, values):\n        self.extend(values)\n        return self\n\nMutableSequence.register(list)\nMutableSequence.register(bytearray)  # Multiply inheriting, see ByteString\n"
  },
  {
    "path": "rd/usr/lib/python3.8/_compat_pickle.py",
    "content": "# This module is used to map the old Python 2 names to the new names used in\n# Python 3 for the pickle module.  This needed to make pickle streams\n# generated with Python 2 loadable by Python 3.\n\n# This is a copy of lib2to3.fixes.fix_imports.MAPPING.  We cannot import\n# lib2to3 and use the mapping defined there, because lib2to3 uses pickle.\n# Thus, this could cause the module to be imported recursively.\nIMPORT_MAPPING = {\n    '__builtin__' : 'builtins',\n    'copy_reg': 'copyreg',\n    'Queue': 'queue',\n    'SocketServer': 'socketserver',\n    'ConfigParser': 'configparser',\n    'repr': 'reprlib',\n    'tkFileDialog': 'tkinter.filedialog',\n    'tkSimpleDialog': 'tkinter.simpledialog',\n    'tkColorChooser': 'tkinter.colorchooser',\n    'tkCommonDialog': 'tkinter.commondialog',\n    'Dialog': 'tkinter.dialog',\n    'Tkdnd': 'tkinter.dnd',\n    'tkFont': 'tkinter.font',\n    'tkMessageBox': 'tkinter.messagebox',\n    'ScrolledText': 'tkinter.scrolledtext',\n    'Tkconstants': 'tkinter.constants',\n    'Tix': 'tkinter.tix',\n    'ttk': 'tkinter.ttk',\n    'Tkinter': 'tkinter',\n    'markupbase': '_markupbase',\n    '_winreg': 'winreg',\n    'thread': '_thread',\n    'dummy_thread': '_dummy_thread',\n    'dbhash': 'dbm.bsd',\n    'dumbdbm': 'dbm.dumb',\n    'dbm': 'dbm.ndbm',\n    'gdbm': 'dbm.gnu',\n    'xmlrpclib': 'xmlrpc.client',\n    'SimpleXMLRPCServer': 'xmlrpc.server',\n    'httplib': 'http.client',\n    'htmlentitydefs' : 'html.entities',\n    'HTMLParser' : 'html.parser',\n    'Cookie': 'http.cookies',\n    'cookielib': 'http.cookiejar',\n    'BaseHTTPServer': 'http.server',\n    'test.test_support': 'test.support',\n    'commands': 'subprocess',\n    'urlparse' : 'urllib.parse',\n    'robotparser' : 'urllib.robotparser',\n    'urllib2': 'urllib.request',\n    'anydbm': 'dbm',\n    '_abcoll' : 'collections.abc',\n}\n\n\n# This contains rename rules that are easy to handle.  We ignore the more\n# complex stuff (e.g. mapping the names in the urllib and types modules).\n# These rules should be run before import names are fixed.\nNAME_MAPPING = {\n    ('__builtin__', 'xrange'):     ('builtins', 'range'),\n    ('__builtin__', 'reduce'):     ('functools', 'reduce'),\n    ('__builtin__', 'intern'):     ('sys', 'intern'),\n    ('__builtin__', 'unichr'):     ('builtins', 'chr'),\n    ('__builtin__', 'unicode'):    ('builtins', 'str'),\n    ('__builtin__', 'long'):       ('builtins', 'int'),\n    ('itertools', 'izip'):         ('builtins', 'zip'),\n    ('itertools', 'imap'):         ('builtins', 'map'),\n    ('itertools', 'ifilter'):      ('builtins', 'filter'),\n    ('itertools', 'ifilterfalse'): ('itertools', 'filterfalse'),\n    ('itertools', 'izip_longest'): ('itertools', 'zip_longest'),\n    ('UserDict', 'IterableUserDict'): ('collections', 'UserDict'),\n    ('UserList', 'UserList'): ('collections', 'UserList'),\n    ('UserString', 'UserString'): ('collections', 'UserString'),\n    ('whichdb', 'whichdb'): ('dbm', 'whichdb'),\n    ('_socket', 'fromfd'): ('socket', 'fromfd'),\n    ('_multiprocessing', 'Connection'): ('multiprocessing.connection', 'Connection'),\n    ('multiprocessing.process', 'Process'): ('multiprocessing.context', 'Process'),\n    ('multiprocessing.forking', 'Popen'): ('multiprocessing.popen_fork', 'Popen'),\n    ('urllib', 'ContentTooShortError'): ('urllib.error', 'ContentTooShortError'),\n    ('urllib', 'getproxies'): ('urllib.request', 'getproxies'),\n    ('urllib', 'pathname2url'): ('urllib.request', 'pathname2url'),\n    ('urllib', 'quote_plus'): ('urllib.parse', 'quote_plus'),\n    ('urllib', 'quote'): ('urllib.parse', 'quote'),\n    ('urllib', 'unquote_plus'): ('urllib.parse', 'unquote_plus'),\n    ('urllib', 'unquote'): ('urllib.parse', 'unquote'),\n    ('urllib', 'url2pathname'): ('urllib.request', 'url2pathname'),\n    ('urllib', 'urlcleanup'): ('urllib.request', 'urlcleanup'),\n    ('urllib', 'urlencode'): ('urllib.parse', 'urlencode'),\n    ('urllib', 'urlopen'): ('urllib.request', 'urlopen'),\n    ('urllib', 'urlretrieve'): ('urllib.request', 'urlretrieve'),\n    ('urllib2', 'HTTPError'): ('urllib.error', 'HTTPError'),\n    ('urllib2', 'URLError'): ('urllib.error', 'URLError'),\n}\n\nPYTHON2_EXCEPTIONS = (\n    \"ArithmeticError\",\n    \"AssertionError\",\n    \"AttributeError\",\n    \"BaseException\",\n    \"BufferError\",\n    \"BytesWarning\",\n    \"DeprecationWarning\",\n    \"EOFError\",\n    \"EnvironmentError\",\n    \"Exception\",\n    \"FloatingPointError\",\n    \"FutureWarning\",\n    \"GeneratorExit\",\n    \"IOError\",\n    \"ImportError\",\n    \"ImportWarning\",\n    \"IndentationError\",\n    \"IndexError\",\n    \"KeyError\",\n    \"KeyboardInterrupt\",\n    \"LookupError\",\n    \"MemoryError\",\n    \"NameError\",\n    \"NotImplementedError\",\n    \"OSError\",\n    \"OverflowError\",\n    \"PendingDeprecationWarning\",\n    \"ReferenceError\",\n    \"RuntimeError\",\n    \"RuntimeWarning\",\n    # StandardError is gone in Python 3, so we map it to Exception\n    \"StopIteration\",\n    \"SyntaxError\",\n    \"SyntaxWarning\",\n    \"SystemError\",\n    \"SystemExit\",\n    \"TabError\",\n    \"TypeError\",\n    \"UnboundLocalError\",\n    \"UnicodeDecodeError\",\n    \"UnicodeEncodeError\",\n    \"UnicodeError\",\n    \"UnicodeTranslateError\",\n    \"UnicodeWarning\",\n    \"UserWarning\",\n    \"ValueError\",\n    \"Warning\",\n    \"ZeroDivisionError\",\n)\n\ntry:\n    WindowsError\nexcept NameError:\n    pass\nelse:\n    PYTHON2_EXCEPTIONS += (\"WindowsError\",)\n\nfor excname in PYTHON2_EXCEPTIONS:\n    NAME_MAPPING[(\"exceptions\", excname)] = (\"builtins\", excname)\n\nMULTIPROCESSING_EXCEPTIONS = (\n    'AuthenticationError',\n    'BufferTooShort',\n    'ProcessError',\n    'TimeoutError',\n)\n\nfor excname in MULTIPROCESSING_EXCEPTIONS:\n    NAME_MAPPING[(\"multiprocessing\", excname)] = (\"multiprocessing.context\", excname)\n\n# Same, but for 3.x to 2.x\nREVERSE_IMPORT_MAPPING = dict((v, k) for (k, v) in IMPORT_MAPPING.items())\nassert len(REVERSE_IMPORT_MAPPING) == len(IMPORT_MAPPING)\nREVERSE_NAME_MAPPING = dict((v, k) for (k, v) in NAME_MAPPING.items())\nassert len(REVERSE_NAME_MAPPING) == len(NAME_MAPPING)\n\n# Non-mutual mappings.\n\nIMPORT_MAPPING.update({\n    'cPickle': 'pickle',\n    '_elementtree': 'xml.etree.ElementTree',\n    'FileDialog': 'tkinter.filedialog',\n    'SimpleDialog': 'tkinter.simpledialog',\n    'DocXMLRPCServer': 'xmlrpc.server',\n    'SimpleHTTPServer': 'http.server',\n    'CGIHTTPServer': 'http.server',\n    # For compatibility with broken pickles saved in old Python 3 versions\n    'UserDict': 'collections',\n    'UserList': 'collections',\n    'UserString': 'collections',\n    'whichdb': 'dbm',\n    'StringIO':  'io',\n    'cStringIO': 'io',\n})\n\nREVERSE_IMPORT_MAPPING.update({\n    '_bz2': 'bz2',\n    '_dbm': 'dbm',\n    '_functools': 'functools',\n    '_gdbm': 'gdbm',\n    '_pickle': 'pickle',\n})\n\nNAME_MAPPING.update({\n    ('__builtin__', 'basestring'): ('builtins', 'str'),\n    ('exceptions', 'StandardError'): ('builtins', 'Exception'),\n    ('UserDict', 'UserDict'): ('collections', 'UserDict'),\n    ('socket', '_socketobject'): ('socket', 'SocketType'),\n})\n\nREVERSE_NAME_MAPPING.update({\n    ('_functools', 'reduce'): ('__builtin__', 'reduce'),\n    ('tkinter.filedialog', 'FileDialog'): ('FileDialog', 'FileDialog'),\n    ('tkinter.filedialog', 'LoadFileDialog'): ('FileDialog', 'LoadFileDialog'),\n    ('tkinter.filedialog', 'SaveFileDialog'): ('FileDialog', 'SaveFileDialog'),\n    ('tkinter.simpledialog', 'SimpleDialog'): ('SimpleDialog', 'SimpleDialog'),\n    ('xmlrpc.server', 'ServerHTMLDoc'): ('DocXMLRPCServer', 'ServerHTMLDoc'),\n    ('xmlrpc.server', 'XMLRPCDocGenerator'):\n        ('DocXMLRPCServer', 'XMLRPCDocGenerator'),\n    ('xmlrpc.server', 'DocXMLRPCRequestHandler'):\n        ('DocXMLRPCServer', 'DocXMLRPCRequestHandler'),\n    ('xmlrpc.server', 'DocXMLRPCServer'):\n        ('DocXMLRPCServer', 'DocXMLRPCServer'),\n    ('xmlrpc.server', 'DocCGIXMLRPCRequestHandler'):\n        ('DocXMLRPCServer', 'DocCGIXMLRPCRequestHandler'),\n    ('http.server', 'SimpleHTTPRequestHandler'):\n        ('SimpleHTTPServer', 'SimpleHTTPRequestHandler'),\n    ('http.server', 'CGIHTTPRequestHandler'):\n        ('CGIHTTPServer', 'CGIHTTPRequestHandler'),\n    ('_socket', 'socket'): ('socket', '_socketobject'),\n})\n\nPYTHON3_OSERROR_EXCEPTIONS = (\n    'BrokenPipeError',\n    'ChildProcessError',\n    'ConnectionAbortedError',\n    'ConnectionError',\n    'ConnectionRefusedError',\n    'ConnectionResetError',\n    'FileExistsError',\n    'FileNotFoundError',\n    'InterruptedError',\n    'IsADirectoryError',\n    'NotADirectoryError',\n    'PermissionError',\n    'ProcessLookupError',\n    'TimeoutError',\n)\n\nfor excname in PYTHON3_OSERROR_EXCEPTIONS:\n    REVERSE_NAME_MAPPING[('builtins', excname)] = ('exceptions', 'OSError')\n\nPYTHON3_IMPORTERROR_EXCEPTIONS = (\n    'ModuleNotFoundError',\n)\n\nfor excname in PYTHON3_IMPORTERROR_EXCEPTIONS:\n    REVERSE_NAME_MAPPING[('builtins', excname)] = ('exceptions', 'ImportError')\n"
  },
  {
    "path": "rd/usr/lib/python3.8/_compression.py",
    "content": "\"\"\"Internal classes used by the gzip, lzma and bz2 modules\"\"\"\n\nimport io\n\n\nBUFFER_SIZE = io.DEFAULT_BUFFER_SIZE  # Compressed data read chunk size\n\n\nclass BaseStream(io.BufferedIOBase):\n    \"\"\"Mode-checking helper functions.\"\"\"\n\n    def _check_not_closed(self):\n        if self.closed:\n            raise ValueError(\"I/O operation on closed file\")\n\n    def _check_can_read(self):\n        if not self.readable():\n            raise io.UnsupportedOperation(\"File not open for reading\")\n\n    def _check_can_write(self):\n        if not self.writable():\n            raise io.UnsupportedOperation(\"File not open for writing\")\n\n    def _check_can_seek(self):\n        if not self.readable():\n            raise io.UnsupportedOperation(\"Seeking is only supported \"\n                                          \"on files open for reading\")\n        if not self.seekable():\n            raise io.UnsupportedOperation(\"The underlying file object \"\n                                          \"does not support seeking\")\n\n\nclass DecompressReader(io.RawIOBase):\n    \"\"\"Adapts the decompressor API to a RawIOBase reader API\"\"\"\n\n    def readable(self):\n        return True\n\n    def __init__(self, fp, decomp_factory, trailing_error=(), **decomp_args):\n        self._fp = fp\n        self._eof = False\n        self._pos = 0  # Current offset in decompressed stream\n\n        # Set to size of decompressed stream once it is known, for SEEK_END\n        self._size = -1\n\n        # Save the decompressor factory and arguments.\n        # If the file contains multiple compressed streams, each\n        # stream will need a separate decompressor object. A new decompressor\n        # object is also needed when implementing a backwards seek().\n        self._decomp_factory = decomp_factory\n        self._decomp_args = decomp_args\n        self._decompressor = self._decomp_factory(**self._decomp_args)\n\n        # Exception class to catch from decompressor signifying invalid\n        # trailing data to ignore\n        self._trailing_error = trailing_error\n\n    def close(self):\n        self._decompressor = None\n        return super().close()\n\n    def seekable(self):\n        return self._fp.seekable()\n\n    def readinto(self, b):\n        with memoryview(b) as view, view.cast(\"B\") as byte_view:\n            data = self.read(len(byte_view))\n            byte_view[:len(data)] = data\n        return len(data)\n\n    def read(self, size=-1):\n        if size < 0:\n            return self.readall()\n\n        if not size or self._eof:\n            return b\"\"\n        data = None  # Default if EOF is encountered\n        # Depending on the input data, our call to the decompressor may not\n        # return any data. In this case, try again after reading another block.\n        while True:\n            if self._decompressor.eof:\n                rawblock = (self._decompressor.unused_data or\n                            self._fp.read(BUFFER_SIZE))\n                if not rawblock:\n                    break\n                # Continue to next stream.\n                self._decompressor = self._decomp_factory(\n                    **self._decomp_args)\n                try:\n                    data = self._decompressor.decompress(rawblock, size)\n                except self._trailing_error:\n                    # Trailing data isn't a valid compressed stream; ignore it.\n                    break\n            else:\n                if self._decompressor.needs_input:\n                    rawblock = self._fp.read(BUFFER_SIZE)\n                    if not rawblock:\n                        raise EOFError(\"Compressed file ended before the \"\n                                       \"end-of-stream marker was reached\")\n                else:\n                    rawblock = b\"\"\n                data = self._decompressor.decompress(rawblock, size)\n            if data:\n                break\n        if not data:\n            self._eof = True\n            self._size = self._pos\n            return b\"\"\n        self._pos += len(data)\n        return data\n\n    # Rewind the file to the beginning of the data stream.\n    def _rewind(self):\n        self._fp.seek(0)\n        self._eof = False\n        self._pos = 0\n        self._decompressor = self._decomp_factory(**self._decomp_args)\n\n    def seek(self, offset, whence=io.SEEK_SET):\n        # Recalculate offset as an absolute file position.\n        if whence == io.SEEK_SET:\n            pass\n        elif whence == io.SEEK_CUR:\n            offset = self._pos + offset\n        elif whence == io.SEEK_END:\n            # Seeking relative to EOF - we need to know the file's size.\n            if self._size < 0:\n                while self.read(io.DEFAULT_BUFFER_SIZE):\n                    pass\n            offset = self._size + offset\n        else:\n            raise ValueError(\"Invalid value for whence: {}\".format(whence))\n\n        # Make it so that offset is the number of bytes to skip forward.\n        if offset < self._pos:\n            self._rewind()\n        else:\n            offset -= self._pos\n\n        # Read and discard data until we reach the desired position.\n        while offset > 0:\n            data = self.read(min(io.DEFAULT_BUFFER_SIZE, offset))\n            if not data:\n                break\n            offset -= len(data)\n\n        return self._pos\n\n    def tell(self):\n        \"\"\"Return the current file position.\"\"\"\n        return self._pos\n"
  },
  {
    "path": "rd/usr/lib/python3.8/_dummy_thread.py",
    "content": "\"\"\"Drop-in replacement for the thread module.\n\nMeant to be used as a brain-dead substitute so that threaded code does\nnot need to be rewritten for when the thread module is not present.\n\nSuggested usage is::\n\n    try:\n        import _thread\n    except ImportError:\n        import _dummy_thread as _thread\n\n\"\"\"\n# Exports only things specified by thread documentation;\n# skipping obsolete synonyms allocate(), start_new(), exit_thread().\n__all__ = ['error', 'start_new_thread', 'exit', 'get_ident', 'allocate_lock',\n           'interrupt_main', 'LockType', 'RLock']\n\n# A dummy value\nTIMEOUT_MAX = 2**31\n\n# NOTE: this module can be imported early in the extension building process,\n# and so top level imports of other modules should be avoided.  Instead, all\n# imports are done when needed on a function-by-function basis.  Since threads\n# are disabled, the import lock should not be an issue anyway (??).\n\nerror = RuntimeError\n\ndef start_new_thread(function, args, kwargs={}):\n    \"\"\"Dummy implementation of _thread.start_new_thread().\n\n    Compatibility is maintained by making sure that ``args`` is a\n    tuple and ``kwargs`` is a dictionary.  If an exception is raised\n    and it is SystemExit (which can be done by _thread.exit()) it is\n    caught and nothing is done; all other exceptions are printed out\n    by using traceback.print_exc().\n\n    If the executed function calls interrupt_main the KeyboardInterrupt will be\n    raised when the function returns.\n\n    \"\"\"\n    if type(args) != type(tuple()):\n        raise TypeError(\"2nd arg must be a tuple\")\n    if type(kwargs) != type(dict()):\n        raise TypeError(\"3rd arg must be a dict\")\n    global _main\n    _main = False\n    try:\n        function(*args, **kwargs)\n    except SystemExit:\n        pass\n    except:\n        import traceback\n        traceback.print_exc()\n    _main = True\n    global _interrupt\n    if _interrupt:\n        _interrupt = False\n        raise KeyboardInterrupt\n\ndef exit():\n    \"\"\"Dummy implementation of _thread.exit().\"\"\"\n    raise SystemExit\n\ndef get_ident():\n    \"\"\"Dummy implementation of _thread.get_ident().\n\n    Since this module should only be used when _threadmodule is not\n    available, it is safe to assume that the current process is the\n    only thread.  Thus a constant can be safely returned.\n    \"\"\"\n    return 1\n\ndef allocate_lock():\n    \"\"\"Dummy implementation of _thread.allocate_lock().\"\"\"\n    return LockType()\n\ndef stack_size(size=None):\n    \"\"\"Dummy implementation of _thread.stack_size().\"\"\"\n    if size is not None:\n        raise error(\"setting thread stack size not supported\")\n    return 0\n\ndef _set_sentinel():\n    \"\"\"Dummy implementation of _thread._set_sentinel().\"\"\"\n    return LockType()\n\nclass LockType(object):\n    \"\"\"Class implementing dummy implementation of _thread.LockType.\n\n    Compatibility is maintained by maintaining self.locked_status\n    which is a boolean that stores the state of the lock.  Pickling of\n    the lock, though, should not be done since if the _thread module is\n    then used with an unpickled ``lock()`` from here problems could\n    occur from this class not having atomic methods.\n\n    \"\"\"\n\n    def __init__(self):\n        self.locked_status = False\n\n    def acquire(self, waitflag=None, timeout=-1):\n        \"\"\"Dummy implementation of acquire().\n\n        For blocking calls, self.locked_status is automatically set to\n        True and returned appropriately based on value of\n        ``waitflag``.  If it is non-blocking, then the value is\n        actually checked and not set if it is already acquired.  This\n        is all done so that threading.Condition's assert statements\n        aren't triggered and throw a little fit.\n\n        \"\"\"\n        if waitflag is None or waitflag:\n            self.locked_status = True\n            return True\n        else:\n            if not self.locked_status:\n                self.locked_status = True\n                return True\n            else:\n                if timeout > 0:\n                    import time\n                    time.sleep(timeout)\n                return False\n\n    __enter__ = acquire\n\n    def __exit__(self, typ, val, tb):\n        self.release()\n\n    def release(self):\n        \"\"\"Release the dummy lock.\"\"\"\n        # XXX Perhaps shouldn't actually bother to test?  Could lead\n        #     to problems for complex, threaded code.\n        if not self.locked_status:\n            raise error\n        self.locked_status = False\n        return True\n\n    def locked(self):\n        return self.locked_status\n\n    def __repr__(self):\n        return \"<%s %s.%s object at %s>\" % (\n            \"locked\" if self.locked_status else \"unlocked\",\n            self.__class__.__module__,\n            self.__class__.__qualname__,\n            hex(id(self))\n        )\n\n\nclass RLock(LockType):\n    \"\"\"Dummy implementation of threading._RLock.\n\n    Re-entrant lock can be aquired multiple times and needs to be released\n    just as many times. This dummy implemention does not check wheter the\n    current thread actually owns the lock, but does accounting on the call\n    counts.\n    \"\"\"\n    def __init__(self):\n        super().__init__()\n        self._levels = 0\n\n    def acquire(self, waitflag=None, timeout=-1):\n        \"\"\"Aquire the lock, can be called multiple times in succession.\n        \"\"\"\n        locked = super().acquire(waitflag, timeout)\n        if locked:\n            self._levels += 1\n        return locked\n\n    def release(self):\n        \"\"\"Release needs to be called once for every call to acquire().\n        \"\"\"\n        if self._levels == 0:\n            raise error\n        if self._levels == 1:\n            super().release()\n        self._levels -= 1\n\n# Used to signal that interrupt_main was called in a \"thread\"\n_interrupt = False\n# True when not executing in a \"thread\"\n_main = True\n\ndef interrupt_main():\n    \"\"\"Set _interrupt flag to True to have start_new_thread raise\n    KeyboardInterrupt upon exiting.\"\"\"\n    if _main:\n        raise KeyboardInterrupt\n    else:\n        global _interrupt\n        _interrupt = True\n"
  },
  {
    "path": "rd/usr/lib/python3.8/_markupbase.py",
    "content": "\"\"\"Shared support for scanning document type declarations in HTML and XHTML.\n\nThis module is used as a foundation for the html.parser module.  It has no\ndocumented public API and should not be used directly.\n\n\"\"\"\n\nimport re\n\n_declname_match = re.compile(r'[a-zA-Z][-_.a-zA-Z0-9]*\\s*').match\n_declstringlit_match = re.compile(r'(\\'[^\\']*\\'|\"[^\"]*\")\\s*').match\n_commentclose = re.compile(r'--\\s*>')\n_markedsectionclose = re.compile(r']\\s*]\\s*>')\n\n# An analysis of the MS-Word extensions is available at\n# http://www.planetpublish.com/xmlarena/xap/Thursday/WordtoXML.pdf\n\n_msmarkedsectionclose = re.compile(r']\\s*>')\n\ndel re\n\n\nclass ParserBase:\n    \"\"\"Parser base class which provides some common support methods used\n    by the SGML/HTML and XHTML parsers.\"\"\"\n\n    def __init__(self):\n        if self.__class__ is ParserBase:\n            raise RuntimeError(\n                \"_markupbase.ParserBase must be subclassed\")\n\n    def error(self, message):\n        raise NotImplementedError(\n            \"subclasses of ParserBase must override error()\")\n\n    def reset(self):\n        self.lineno = 1\n        self.offset = 0\n\n    def getpos(self):\n        \"\"\"Return current line number and offset.\"\"\"\n        return self.lineno, self.offset\n\n    # Internal -- update line number and offset.  This should be\n    # called for each piece of data exactly once, in order -- in other\n    # words the concatenation of all the input strings to this\n    # function should be exactly the entire input.\n    def updatepos(self, i, j):\n        if i >= j:\n            return j\n        rawdata = self.rawdata\n        nlines = rawdata.count(\"\\n\", i, j)\n        if nlines:\n            self.lineno = self.lineno + nlines\n            pos = rawdata.rindex(\"\\n\", i, j) # Should not fail\n            self.offset = j-(pos+1)\n        else:\n            self.offset = self.offset + j-i\n        return j\n\n    _decl_otherchars = ''\n\n    # Internal -- parse declaration (for use by subclasses).\n    def parse_declaration(self, i):\n        # This is some sort of declaration; in \"HTML as\n        # deployed,\" this should only be the document type\n        # declaration (\"<!DOCTYPE html...>\").\n        # ISO 8879:1986, however, has more complex\n        # declaration syntax for elements in <!...>, including:\n        # --comment--\n        # [marked section]\n        # name in the following list: ENTITY, DOCTYPE, ELEMENT,\n        # ATTLIST, NOTATION, SHORTREF, USEMAP,\n        # LINKTYPE, LINK, IDLINK, USELINK, SYSTEM\n        rawdata = self.rawdata\n        j = i + 2\n        assert rawdata[i:j] == \"<!\", \"unexpected call to parse_declaration\"\n        if rawdata[j:j+1] == \">\":\n            # the empty comment <!>\n            return j + 1\n        if rawdata[j:j+1] in (\"-\", \"\"):\n            # Start of comment followed by buffer boundary,\n            # or just a buffer boundary.\n            return -1\n        # A simple, practical version could look like: ((name|stringlit) S*) + '>'\n        n = len(rawdata)\n        if rawdata[j:j+2] == '--': #comment\n            # Locate --.*-- as the body of the comment\n            return self.parse_comment(i)\n        elif rawdata[j] == '[': #marked section\n            # Locate [statusWord [...arbitrary SGML...]] as the body of the marked section\n            # Where statusWord is one of TEMP, CDATA, IGNORE, INCLUDE, RCDATA\n            # Note that this is extended by Microsoft Office \"Save as Web\" function\n            # to include [if...] and [endif].\n            return self.parse_marked_section(i)\n        else: #all other declaration elements\n            decltype, j = self._scan_name(j, i)\n        if j < 0:\n            return j\n        if decltype == \"doctype\":\n            self._decl_otherchars = ''\n        while j < n:\n            c = rawdata[j]\n            if c == \">\":\n                # end of declaration syntax\n                data = rawdata[i+2:j]\n                if decltype == \"doctype\":\n                    self.handle_decl(data)\n                else:\n                    # According to the HTML5 specs sections \"8.2.4.44 Bogus\n                    # comment state\" and \"8.2.4.45 Markup declaration open\n                    # state\", a comment token should be emitted.\n                    # Calling unknown_decl provides more flexibility though.\n                    self.unknown_decl(data)\n                return j + 1\n            if c in \"\\\"'\":\n                m = _declstringlit_match(rawdata, j)\n                if not m:\n                    return -1 # incomplete\n                j = m.end()\n            elif c in \"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ\":\n                name, j = self._scan_name(j, i)\n            elif c in self._decl_otherchars:\n                j = j + 1\n            elif c == \"[\":\n                # this could be handled in a separate doctype parser\n                if decltype == \"doctype\":\n                    j = self._parse_doctype_subset(j + 1, i)\n                elif decltype in {\"attlist\", \"linktype\", \"link\", \"element\"}:\n                    # must tolerate []'d groups in a content model in an element declaration\n                    # also in data attribute specifications of attlist declaration\n                    # also link type declaration subsets in linktype declarations\n                    # also link attribute specification lists in link declarations\n                    self.error(\"unsupported '[' char in %s declaration\" % decltype)\n                else:\n                    self.error(\"unexpected '[' char in declaration\")\n            else:\n                self.error(\n                    \"unexpected %r char in declaration\" % rawdata[j])\n            if j < 0:\n                return j\n        return -1 # incomplete\n\n    # Internal -- parse a marked section\n    # Override this to handle MS-word extension syntax <![if word]>content<![endif]>\n    def parse_marked_section(self, i, report=1):\n        rawdata= self.rawdata\n        assert rawdata[i:i+3] == '<![', \"unexpected call to parse_marked_section()\"\n        sectName, j = self._scan_name( i+3, i )\n        if j < 0:\n            return j\n        if sectName in {\"temp\", \"cdata\", \"ignore\", \"include\", \"rcdata\"}:\n            # look for standard ]]> ending\n            match= _markedsectionclose.search(rawdata, i+3)\n        elif sectName in {\"if\", \"else\", \"endif\"}:\n            # look for MS Office ]> ending\n            match= _msmarkedsectionclose.search(rawdata, i+3)\n        else:\n            self.error('unknown status keyword %r in marked section' % rawdata[i+3:j])\n        if not match:\n            return -1\n        if report:\n            j = match.start(0)\n            self.unknown_decl(rawdata[i+3: j])\n        return match.end(0)\n\n    # Internal -- parse comment, return length or -1 if not terminated\n    def parse_comment(self, i, report=1):\n        rawdata = self.rawdata\n        if rawdata[i:i+4] != '<!--':\n            self.error('unexpected call to parse_comment()')\n        match = _commentclose.search(rawdata, i+4)\n        if not match:\n            return -1\n        if report:\n            j = match.start(0)\n            self.handle_comment(rawdata[i+4: j])\n        return match.end(0)\n\n    # Internal -- scan past the internal subset in a <!DOCTYPE declaration,\n    # returning the index just past any whitespace following the trailing ']'.\n    def _parse_doctype_subset(self, i, declstartpos):\n        rawdata = self.rawdata\n        n = len(rawdata)\n        j = i\n        while j < n:\n            c = rawdata[j]\n            if c == \"<\":\n                s = rawdata[j:j+2]\n                if s == \"<\":\n                    # end of buffer; incomplete\n                    return -1\n                if s != \"<!\":\n                    self.updatepos(declstartpos, j + 1)\n                    self.error(\"unexpected char in internal subset (in %r)\" % s)\n                if (j + 2) == n:\n                    # end of buffer; incomplete\n                    return -1\n                if (j + 4) > n:\n                    # end of buffer; incomplete\n                    return -1\n                if rawdata[j:j+4] == \"<!--\":\n                    j = self.parse_comment(j, report=0)\n                    if j < 0:\n                        return j\n                    continue\n                name, j = self._scan_name(j + 2, declstartpos)\n                if j == -1:\n                    return -1\n                if name not in {\"attlist\", \"element\", \"entity\", \"notation\"}:\n                    self.updatepos(declstartpos, j + 2)\n                    self.error(\n                        \"unknown declaration %r in internal subset\" % name)\n                # handle the individual names\n                meth = getattr(self, \"_parse_doctype_\" + name)\n                j = meth(j, declstartpos)\n                if j < 0:\n                    return j\n            elif c == \"%\":\n                # parameter entity reference\n                if (j + 1) == n:\n                    # end of buffer; incomplete\n                    return -1\n                s, j = self._scan_name(j + 1, declstartpos)\n                if j < 0:\n                    return j\n                if rawdata[j] == \";\":\n                    j = j + 1\n            elif c == \"]\":\n                j = j + 1\n                while j < n and rawdata[j].isspace():\n                    j = j + 1\n                if j < n:\n                    if rawdata[j] == \">\":\n                        return j\n                    self.updatepos(declstartpos, j)\n                    self.error(\"unexpected char after internal subset\")\n                else:\n                    return -1\n            elif c.isspace():\n                j = j + 1\n            else:\n                self.updatepos(declstartpos, j)\n                self.error(\"unexpected char %r in internal subset\" % c)\n        # end of buffer reached\n        return -1\n\n    # Internal -- scan past <!ELEMENT declarations\n    def _parse_doctype_element(self, i, declstartpos):\n        name, j = self._scan_name(i, declstartpos)\n        if j == -1:\n            return -1\n        # style content model; just skip until '>'\n        rawdata = self.rawdata\n        if '>' in rawdata[j:]:\n            return rawdata.find(\">\", j) + 1\n        return -1\n\n    # Internal -- scan past <!ATTLIST declarations\n    def _parse_doctype_attlist(self, i, declstartpos):\n        rawdata = self.rawdata\n        name, j = self._scan_name(i, declstartpos)\n        c = rawdata[j:j+1]\n        if c == \"\":\n            return -1\n        if c == \">\":\n            return j + 1\n        while 1:\n            # scan a series of attribute descriptions; simplified:\n            #   name type [value] [#constraint]\n            name, j = self._scan_name(j, declstartpos)\n            if j < 0:\n                return j\n            c = rawdata[j:j+1]\n            if c == \"\":\n                return -1\n            if c == \"(\":\n                # an enumerated type; look for ')'\n                if \")\" in rawdata[j:]:\n                    j = rawdata.find(\")\", j) + 1\n                else:\n                    return -1\n                while rawdata[j:j+1].isspace():\n                    j = j + 1\n                if not rawdata[j:]:\n                    # end of buffer, incomplete\n                    return -1\n            else:\n                name, j = self._scan_name(j, declstartpos)\n            c = rawdata[j:j+1]\n            if not c:\n                return -1\n            if c in \"'\\\"\":\n                m = _declstringlit_match(rawdata, j)\n                if m:\n                    j = m.end()\n                else:\n                    return -1\n                c = rawdata[j:j+1]\n                if not c:\n                    return -1\n            if c == \"#\":\n                if rawdata[j:] == \"#\":\n                    # end of buffer\n                    return -1\n                name, j = self._scan_name(j + 1, declstartpos)\n                if j < 0:\n                    return j\n                c = rawdata[j:j+1]\n                if not c:\n                    return -1\n            if c == '>':\n                # all done\n                return j + 1\n\n    # Internal -- scan past <!NOTATION declarations\n    def _parse_doctype_notation(self, i, declstartpos):\n        name, j = self._scan_name(i, declstartpos)\n        if j < 0:\n            return j\n        rawdata = self.rawdata\n        while 1:\n            c = rawdata[j:j+1]\n            if not c:\n                # end of buffer; incomplete\n                return -1\n            if c == '>':\n                return j + 1\n            if c in \"'\\\"\":\n                m = _declstringlit_match(rawdata, j)\n                if not m:\n                    return -1\n                j = m.end()\n            else:\n                name, j = self._scan_name(j, declstartpos)\n                if j < 0:\n                    return j\n\n    # Internal -- scan past <!ENTITY declarations\n    def _parse_doctype_entity(self, i, declstartpos):\n        rawdata = self.rawdata\n        if rawdata[i:i+1] == \"%\":\n            j = i + 1\n            while 1:\n                c = rawdata[j:j+1]\n                if not c:\n                    return -1\n                if c.isspace():\n                    j = j + 1\n                else:\n                    break\n        else:\n            j = i\n        name, j = self._scan_name(j, declstartpos)\n        if j < 0:\n            return j\n        while 1:\n            c = self.rawdata[j:j+1]\n            if not c:\n                return -1\n            if c in \"'\\\"\":\n                m = _declstringlit_match(rawdata, j)\n                if m:\n                    j = m.end()\n                else:\n                    return -1    # incomplete\n            elif c == \">\":\n                return j + 1\n            else:\n                name, j = self._scan_name(j, declstartpos)\n                if j < 0:\n                    return j\n\n    # Internal -- scan a name token and the new position and the token, or\n    # return -1 if we've reached the end of the buffer.\n    def _scan_name(self, i, declstartpos):\n        rawdata = self.rawdata\n        n = len(rawdata)\n        if i == n:\n            return None, -1\n        m = _declname_match(rawdata, i)\n        if m:\n            s = m.group()\n            name = s.strip()\n            if (i + len(s)) == n:\n                return None, -1  # end of buffer\n            return name.lower(), m.end()\n        else:\n            self.updatepos(declstartpos, i)\n            self.error(\"expected name token at %r\"\n                       % rawdata[declstartpos:declstartpos+20])\n\n    # To be overridden -- handlers for unknown objects\n    def unknown_decl(self, data):\n        pass\n"
  },
  {
    "path": "rd/usr/lib/python3.8/_osx_support.py",
    "content": "\"\"\"Shared OS X support functions.\"\"\"\n\nimport os\nimport re\nimport sys\n\n__all__ = [\n    'compiler_fixup',\n    'customize_config_vars',\n    'customize_compiler',\n    'get_platform_osx',\n]\n\n# configuration variables that may contain universal build flags,\n# like \"-arch\" or \"-isdkroot\", that may need customization for\n# the user environment\n_UNIVERSAL_CONFIG_VARS = ('CFLAGS', 'LDFLAGS', 'CPPFLAGS', 'BASECFLAGS',\n                            'BLDSHARED', 'LDSHARED', 'CC', 'CXX',\n                            'PY_CFLAGS', 'PY_LDFLAGS', 'PY_CPPFLAGS',\n                            'PY_CORE_CFLAGS', 'PY_CORE_LDFLAGS')\n\n# configuration variables that may contain compiler calls\n_COMPILER_CONFIG_VARS = ('BLDSHARED', 'LDSHARED', 'CC', 'CXX')\n\n# prefix added to original configuration variable names\n_INITPRE = '_OSX_SUPPORT_INITIAL_'\n\n\ndef _find_executable(executable, path=None):\n    \"\"\"Tries to find 'executable' in the directories listed in 'path'.\n\n    A string listing directories separated by 'os.pathsep'; defaults to\n    os.environ['PATH'].  Returns the complete filename or None if not found.\n    \"\"\"\n    if path is None:\n        path = os.environ['PATH']\n\n    paths = path.split(os.pathsep)\n    base, ext = os.path.splitext(executable)\n\n    if (sys.platform == 'win32') and (ext != '.exe'):\n        executable = executable + '.exe'\n\n    if not os.path.isfile(executable):\n        for p in paths:\n            f = os.path.join(p, executable)\n            if os.path.isfile(f):\n                # the file exists, we have a shot at spawn working\n                return f\n        return None\n    else:\n        return executable\n\n\ndef _read_output(commandstring):\n    \"\"\"Output from successful command execution or None\"\"\"\n    # Similar to os.popen(commandstring, \"r\").read(),\n    # but without actually using os.popen because that\n    # function is not usable during python bootstrap.\n    # tempfile is also not available then.\n    import contextlib\n    try:\n        import tempfile\n        fp = tempfile.NamedTemporaryFile()\n    except ImportError:\n        fp = open(\"/tmp/_osx_support.%s\"%(\n            os.getpid(),), \"w+b\")\n\n    with contextlib.closing(fp) as fp:\n        cmd = \"%s 2>/dev/null >'%s'\" % (commandstring, fp.name)\n        return fp.read().decode('utf-8').strip() if not os.system(cmd) else None\n\n\ndef _find_build_tool(toolname):\n    \"\"\"Find a build tool on current path or using xcrun\"\"\"\n    return (_find_executable(toolname)\n                or _read_output(\"/usr/bin/xcrun -find %s\" % (toolname,))\n                or ''\n            )\n\n_SYSTEM_VERSION = None\n\ndef _get_system_version():\n    \"\"\"Return the OS X system version as a string\"\"\"\n    # Reading this plist is a documented way to get the system\n    # version (see the documentation for the Gestalt Manager)\n    # We avoid using platform.mac_ver to avoid possible bootstrap issues during\n    # the build of Python itself (distutils is used to build standard library\n    # extensions).\n\n    global _SYSTEM_VERSION\n\n    if _SYSTEM_VERSION is None:\n        _SYSTEM_VERSION = ''\n        try:\n            f = open('/System/Library/CoreServices/SystemVersion.plist')\n        except OSError:\n            # We're on a plain darwin box, fall back to the default\n            # behaviour.\n            pass\n        else:\n            try:\n                m = re.search(r'<key>ProductUserVisibleVersion</key>\\s*'\n                              r'<string>(.*?)</string>', f.read())\n            finally:\n                f.close()\n            if m is not None:\n                _SYSTEM_VERSION = '.'.join(m.group(1).split('.')[:2])\n            # else: fall back to the default behaviour\n\n    return _SYSTEM_VERSION\n\ndef _remove_original_values(_config_vars):\n    \"\"\"Remove original unmodified values for testing\"\"\"\n    # This is needed for higher-level cross-platform tests of get_platform.\n    for k in list(_config_vars):\n        if k.startswith(_INITPRE):\n            del _config_vars[k]\n\ndef _save_modified_value(_config_vars, cv, newvalue):\n    \"\"\"Save modified and original unmodified value of configuration var\"\"\"\n\n    oldvalue = _config_vars.get(cv, '')\n    if (oldvalue != newvalue) and (_INITPRE + cv not in _config_vars):\n        _config_vars[_INITPRE + cv] = oldvalue\n    _config_vars[cv] = newvalue\n\ndef _supports_universal_builds():\n    \"\"\"Returns True if universal builds are supported on this system\"\"\"\n    # As an approximation, we assume that if we are running on 10.4 or above,\n    # then we are running with an Xcode environment that supports universal\n    # builds, in particular -isysroot and -arch arguments to the compiler. This\n    # is in support of allowing 10.4 universal builds to run on 10.3.x systems.\n\n    osx_version = _get_system_version()\n    if osx_version:\n        try:\n            osx_version = tuple(int(i) for i in osx_version.split('.'))\n        except ValueError:\n            osx_version = ''\n    return bool(osx_version >= (10, 4)) if osx_version else False\n\n\ndef _find_appropriate_compiler(_config_vars):\n    \"\"\"Find appropriate C compiler for extension module builds\"\"\"\n\n    # Issue #13590:\n    #    The OSX location for the compiler varies between OSX\n    #    (or rather Xcode) releases.  With older releases (up-to 10.5)\n    #    the compiler is in /usr/bin, with newer releases the compiler\n    #    can only be found inside Xcode.app if the \"Command Line Tools\"\n    #    are not installed.\n    #\n    #    Furthermore, the compiler that can be used varies between\n    #    Xcode releases. Up to Xcode 4 it was possible to use 'gcc-4.2'\n    #    as the compiler, after that 'clang' should be used because\n    #    gcc-4.2 is either not present, or a copy of 'llvm-gcc' that\n    #    miscompiles Python.\n\n    # skip checks if the compiler was overridden with a CC env variable\n    if 'CC' in os.environ:\n        return _config_vars\n\n    # The CC config var might contain additional arguments.\n    # Ignore them while searching.\n    cc = oldcc = _config_vars['CC'].split()[0]\n    if not _find_executable(cc):\n        # Compiler is not found on the shell search PATH.\n        # Now search for clang, first on PATH (if the Command LIne\n        # Tools have been installed in / or if the user has provided\n        # another location via CC).  If not found, try using xcrun\n        # to find an uninstalled clang (within a selected Xcode).\n\n        # NOTE: Cannot use subprocess here because of bootstrap\n        # issues when building Python itself (and os.popen is\n        # implemented on top of subprocess and is therefore not\n        # usable as well)\n\n        cc = _find_build_tool('clang')\n\n    elif os.path.basename(cc).startswith('gcc'):\n        # Compiler is GCC, check if it is LLVM-GCC\n        data = _read_output(\"'%s' --version\"\n                             % (cc.replace(\"'\", \"'\\\"'\\\"'\"),))\n        if data and 'llvm-gcc' in data:\n            # Found LLVM-GCC, fall back to clang\n            cc = _find_build_tool('clang')\n\n    if not cc:\n        raise SystemError(\n               \"Cannot locate working compiler\")\n\n    if cc != oldcc:\n        # Found a replacement compiler.\n        # Modify config vars using new compiler, if not already explicitly\n        # overridden by an env variable, preserving additional arguments.\n        for cv in _COMPILER_CONFIG_VARS:\n            if cv in _config_vars and cv not in os.environ:\n                cv_split = _config_vars[cv].split()\n                cv_split[0] = cc if cv != 'CXX' else cc + '++'\n                _save_modified_value(_config_vars, cv, ' '.join(cv_split))\n\n    return _config_vars\n\n\ndef _remove_universal_flags(_config_vars):\n    \"\"\"Remove all universal build arguments from config vars\"\"\"\n\n    for cv in _UNIVERSAL_CONFIG_VARS:\n        # Do not alter a config var explicitly overridden by env var\n        if cv in _config_vars and cv not in os.environ:\n            flags = _config_vars[cv]\n            flags = re.sub(r'-arch\\s+\\w+\\s', ' ', flags, flags=re.ASCII)\n            flags = re.sub(r'-isysroot\\s*\\S+', ' ', flags)\n            _save_modified_value(_config_vars, cv, flags)\n\n    return _config_vars\n\n\ndef _remove_unsupported_archs(_config_vars):\n    \"\"\"Remove any unsupported archs from config vars\"\"\"\n    # Different Xcode releases support different sets for '-arch'\n    # flags. In particular, Xcode 4.x no longer supports the\n    # PPC architectures.\n    #\n    # This code automatically removes '-arch ppc' and '-arch ppc64'\n    # when these are not supported. That makes it possible to\n    # build extensions on OSX 10.7 and later with the prebuilt\n    # 32-bit installer on the python.org website.\n\n    # skip checks if the compiler was overridden with a CC env variable\n    if 'CC' in os.environ:\n        return _config_vars\n\n    if re.search(r'-arch\\s+ppc', _config_vars['CFLAGS']) is not None:\n        # NOTE: Cannot use subprocess here because of bootstrap\n        # issues when building Python itself\n        status = os.system(\n            \"\"\"echo 'int main{};' | \"\"\"\n            \"\"\"'%s' -c -arch ppc -x c -o /dev/null /dev/null 2>/dev/null\"\"\"\n            %(_config_vars['CC'].replace(\"'\", \"'\\\"'\\\"'\"),))\n        if status:\n            # The compile failed for some reason.  Because of differences\n            # across Xcode and compiler versions, there is no reliable way\n            # to be sure why it failed.  Assume here it was due to lack of\n            # PPC support and remove the related '-arch' flags from each\n            # config variables not explicitly overridden by an environment\n            # variable.  If the error was for some other reason, we hope the\n            # failure will show up again when trying to compile an extension\n            # module.\n            for cv in _UNIVERSAL_CONFIG_VARS:\n                if cv in _config_vars and cv not in os.environ:\n                    flags = _config_vars[cv]\n                    flags = re.sub(r'-arch\\s+ppc\\w*\\s', ' ', flags)\n                    _save_modified_value(_config_vars, cv, flags)\n\n    return _config_vars\n\n\ndef _override_all_archs(_config_vars):\n    \"\"\"Allow override of all archs with ARCHFLAGS env var\"\"\"\n    # NOTE: This name was introduced by Apple in OSX 10.5 and\n    # is used by several scripting languages distributed with\n    # that OS release.\n    if 'ARCHFLAGS' in os.environ:\n        arch = os.environ['ARCHFLAGS']\n        for cv in _UNIVERSAL_CONFIG_VARS:\n            if cv in _config_vars and '-arch' in _config_vars[cv]:\n                flags = _config_vars[cv]\n                flags = re.sub(r'-arch\\s+\\w+\\s', ' ', flags)\n                flags = flags + ' ' + arch\n                _save_modified_value(_config_vars, cv, flags)\n\n    return _config_vars\n\n\ndef _check_for_unavailable_sdk(_config_vars):\n    \"\"\"Remove references to any SDKs not available\"\"\"\n    # If we're on OSX 10.5 or later and the user tries to\n    # compile an extension using an SDK that is not present\n    # on the current machine it is better to not use an SDK\n    # than to fail.  This is particularly important with\n    # the standalone Command Line Tools alternative to a\n    # full-blown Xcode install since the CLT packages do not\n    # provide SDKs.  If the SDK is not present, it is assumed\n    # that the header files and dev libs have been installed\n    # to /usr and /System/Library by either a standalone CLT\n    # package or the CLT component within Xcode.\n    cflags = _config_vars.get('CFLAGS', '')\n    m = re.search(r'-isysroot\\s*(\\S+)', cflags)\n    if m is not None:\n        sdk = m.group(1)\n        if not os.path.exists(sdk):\n            for cv in _UNIVERSAL_CONFIG_VARS:\n                # Do not alter a config var explicitly overridden by env var\n                if cv in _config_vars and cv not in os.environ:\n                    flags = _config_vars[cv]\n                    flags = re.sub(r'-isysroot\\s*\\S+(?:\\s|$)', ' ', flags)\n                    _save_modified_value(_config_vars, cv, flags)\n\n    return _config_vars\n\n\ndef compiler_fixup(compiler_so, cc_args):\n    \"\"\"\n    This function will strip '-isysroot PATH' and '-arch ARCH' from the\n    compile flags if the user has specified one them in extra_compile_flags.\n\n    This is needed because '-arch ARCH' adds another architecture to the\n    build, without a way to remove an architecture. Furthermore GCC will\n    barf if multiple '-isysroot' arguments are present.\n    \"\"\"\n    stripArch = stripSysroot = False\n\n    compiler_so = list(compiler_so)\n\n    if not _supports_universal_builds():\n        # OSX before 10.4.0, these don't support -arch and -isysroot at\n        # all.\n        stripArch = stripSysroot = True\n    else:\n        stripArch = '-arch' in cc_args\n        stripSysroot = any(arg for arg in cc_args if arg.startswith('-isysroot'))\n\n    if stripArch or 'ARCHFLAGS' in os.environ:\n        while True:\n            try:\n                index = compiler_so.index('-arch')\n                # Strip this argument and the next one:\n                del compiler_so[index:index+2]\n            except ValueError:\n                break\n\n    if 'ARCHFLAGS' in os.environ and not stripArch:\n        # User specified different -arch flags in the environ,\n        # see also distutils.sysconfig\n        compiler_so = compiler_so + os.environ['ARCHFLAGS'].split()\n\n    if stripSysroot:\n        while True:\n            indices = [i for i,x in enumerate(compiler_so) if x.startswith('-isysroot')]\n            if not indices:\n                break\n            index = indices[0]\n            if compiler_so[index] == '-isysroot':\n                # Strip this argument and the next one:\n                del compiler_so[index:index+2]\n            else:\n                # It's '-isysroot/some/path' in one arg\n                del compiler_so[index:index+1]\n\n    # Check if the SDK that is used during compilation actually exists,\n    # the universal build requires the usage of a universal SDK and not all\n    # users have that installed by default.\n    sysroot = None\n    argvar = cc_args\n    indices = [i for i,x in enumerate(cc_args) if x.startswith('-isysroot')]\n    if not indices:\n        argvar = compiler_so\n        indices = [i for i,x in enumerate(compiler_so) if x.startswith('-isysroot')]\n\n    for idx in indices:\n        if argvar[idx] == '-isysroot':\n            sysroot = argvar[idx+1]\n            break\n        else:\n            sysroot = argvar[idx][len('-isysroot'):]\n            break\n\n    if sysroot and not os.path.isdir(sysroot):\n        from distutils import log\n        log.warn(\"Compiling with an SDK that doesn't seem to exist: %s\",\n                sysroot)\n        log.warn(\"Please check your Xcode installation\")\n\n    return compiler_so\n\n\ndef customize_config_vars(_config_vars):\n    \"\"\"Customize Python build configuration variables.\n\n    Called internally from sysconfig with a mutable mapping\n    containing name/value pairs parsed from the configured\n    makefile used to build this interpreter.  Returns\n    the mapping updated as needed to reflect the environment\n    in which the interpreter is running; in the case of\n    a Python from a binary installer, the installed\n    environment may be very different from the build\n    environment, i.e. different OS levels, different\n    built tools, different available CPU architectures.\n\n    This customization is performed whenever\n    distutils.sysconfig.get_config_vars() is first\n    called.  It may be used in environments where no\n    compilers are present, i.e. when installing pure\n    Python dists.  Customization of compiler paths\n    and detection of unavailable archs is deferred\n    until the first extension module build is\n    requested (in distutils.sysconfig.customize_compiler).\n\n    Currently called from distutils.sysconfig\n    \"\"\"\n\n    if not _supports_universal_builds():\n        # On Mac OS X before 10.4, check if -arch and -isysroot\n        # are in CFLAGS or LDFLAGS and remove them if they are.\n        # This is needed when building extensions on a 10.3 system\n        # using a universal build of python.\n        _remove_universal_flags(_config_vars)\n\n    # Allow user to override all archs with ARCHFLAGS env var\n    _override_all_archs(_config_vars)\n\n    # Remove references to sdks that are not found\n    _check_for_unavailable_sdk(_config_vars)\n\n    return _config_vars\n\n\ndef customize_compiler(_config_vars):\n    \"\"\"Customize compiler path and configuration variables.\n\n    This customization is performed when the first\n    extension module build is requested\n    in distutils.sysconfig.customize_compiler).\n    \"\"\"\n\n    # Find a compiler to use for extension module builds\n    _find_appropriate_compiler(_config_vars)\n\n    # Remove ppc arch flags if not supported here\n    _remove_unsupported_archs(_config_vars)\n\n    # Allow user to override all archs with ARCHFLAGS env var\n    _override_all_archs(_config_vars)\n\n    return _config_vars\n\n\ndef get_platform_osx(_config_vars, osname, release, machine):\n    \"\"\"Filter values for get_platform()\"\"\"\n    # called from get_platform() in sysconfig and distutils.util\n    #\n    # For our purposes, we'll assume that the system version from\n    # distutils' perspective is what MACOSX_DEPLOYMENT_TARGET is set\n    # to. This makes the compatibility story a bit more sane because the\n    # machine is going to compile and link as if it were\n    # MACOSX_DEPLOYMENT_TARGET.\n\n    macver = _config_vars.get('MACOSX_DEPLOYMENT_TARGET', '')\n    macrelease = _get_system_version() or macver\n    macver = macver or macrelease\n\n    if macver:\n        release = macver\n        osname = \"macosx\"\n\n        # Use the original CFLAGS value, if available, so that we\n        # return the same machine type for the platform string.\n        # Otherwise, distutils may consider this a cross-compiling\n        # case and disallow installs.\n        cflags = _config_vars.get(_INITPRE+'CFLAGS',\n                                    _config_vars.get('CFLAGS', ''))\n        if macrelease:\n            try:\n                macrelease = tuple(int(i) for i in macrelease.split('.')[0:2])\n            except ValueError:\n                macrelease = (10, 0)\n        else:\n            # assume no universal support\n            macrelease = (10, 0)\n\n        if (macrelease >= (10, 4)) and '-arch' in cflags.strip():\n            # The universal build will build fat binaries, but not on\n            # systems before 10.4\n\n            machine = 'fat'\n\n            archs = re.findall(r'-arch\\s+(\\S+)', cflags)\n            archs = tuple(sorted(set(archs)))\n\n            if len(archs) == 1:\n                machine = archs[0]\n            elif archs == ('i386', 'ppc'):\n                machine = 'fat'\n            elif archs == ('i386', 'x86_64'):\n                machine = 'intel'\n            elif archs == ('i386', 'ppc', 'x86_64'):\n                machine = 'fat3'\n            elif archs == ('ppc64', 'x86_64'):\n                machine = 'fat64'\n            elif archs == ('i386', 'ppc', 'ppc64', 'x86_64'):\n                machine = 'universal'\n            else:\n                raise ValueError(\n                   \"Don't know machine value for archs=%r\" % (archs,))\n\n        elif machine == 'i386':\n            # On OSX the machine type returned by uname is always the\n            # 32-bit variant, even if the executable architecture is\n            # the 64-bit variant\n            if sys.maxsize >= 2**32:\n                machine = 'x86_64'\n\n        elif machine in ('PowerPC', 'Power_Macintosh'):\n            # Pick a sane name for the PPC architecture.\n            # See 'i386' case\n            if sys.maxsize >= 2**32:\n                machine = 'ppc64'\n            else:\n                machine = 'ppc'\n\n    return (osname, release, machine)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/_py_abc.py",
    "content": "from _weakrefset import WeakSet\n\n\ndef get_cache_token():\n    \"\"\"Returns the current ABC cache token.\n\n    The token is an opaque object (supporting equality testing) identifying the\n    current version of the ABC cache for virtual subclasses. The token changes\n    with every call to ``register()`` on any ABC.\n    \"\"\"\n    return ABCMeta._abc_invalidation_counter\n\n\nclass ABCMeta(type):\n    \"\"\"Metaclass for defining Abstract Base Classes (ABCs).\n\n    Use this metaclass to create an ABC.  An ABC can be subclassed\n    directly, and then acts as a mix-in class.  You can also register\n    unrelated concrete classes (even built-in classes) and unrelated\n    ABCs as 'virtual subclasses' -- these and their descendants will\n    be considered subclasses of the registering ABC by the built-in\n    issubclass() function, but the registering ABC won't show up in\n    their MRO (Method Resolution Order) nor will method\n    implementations defined by the registering ABC be callable (not\n    even via super()).\n    \"\"\"\n\n    # A global counter that is incremented each time a class is\n    # registered as a virtual subclass of anything.  It forces the\n    # negative cache to be cleared before its next use.\n    # Note: this counter is private. Use `abc.get_cache_token()` for\n    #       external code.\n    _abc_invalidation_counter = 0\n\n    def __new__(mcls, name, bases, namespace, /, **kwargs):\n        cls = super().__new__(mcls, name, bases, namespace, **kwargs)\n        # Compute set of abstract method names\n        abstracts = {name\n                     for name, value in namespace.items()\n                     if getattr(value, \"__isabstractmethod__\", False)}\n        for base in bases:\n            for name in getattr(base, \"__abstractmethods__\", set()):\n                value = getattr(cls, name, None)\n                if getattr(value, \"__isabstractmethod__\", False):\n                    abstracts.add(name)\n        cls.__abstractmethods__ = frozenset(abstracts)\n        # Set up inheritance registry\n        cls._abc_registry = WeakSet()\n        cls._abc_cache = WeakSet()\n        cls._abc_negative_cache = WeakSet()\n        cls._abc_negative_cache_version = ABCMeta._abc_invalidation_counter\n        return cls\n\n    def register(cls, subclass):\n        \"\"\"Register a virtual subclass of an ABC.\n\n        Returns the subclass, to allow usage as a class decorator.\n        \"\"\"\n        if not isinstance(subclass, type):\n            raise TypeError(\"Can only register classes\")\n        if issubclass(subclass, cls):\n            return subclass  # Already a subclass\n        # Subtle: test for cycles *after* testing for \"already a subclass\";\n        # this means we allow X.register(X) and interpret it as a no-op.\n        if issubclass(cls, subclass):\n            # This would create a cycle, which is bad for the algorithm below\n            raise RuntimeError(\"Refusing to create an inheritance cycle\")\n        cls._abc_registry.add(subclass)\n        ABCMeta._abc_invalidation_counter += 1  # Invalidate negative cache\n        return subclass\n\n    def _dump_registry(cls, file=None):\n        \"\"\"Debug helper to print the ABC registry.\"\"\"\n        print(f\"Class: {cls.__module__}.{cls.__qualname__}\", file=file)\n        print(f\"Inv. counter: {get_cache_token()}\", file=file)\n        for name in cls.__dict__:\n            if name.startswith(\"_abc_\"):\n                value = getattr(cls, name)\n                if isinstance(value, WeakSet):\n                    value = set(value)\n                print(f\"{name}: {value!r}\", file=file)\n\n    def _abc_registry_clear(cls):\n        \"\"\"Clear the registry (for debugging or testing).\"\"\"\n        cls._abc_registry.clear()\n\n    def _abc_caches_clear(cls):\n        \"\"\"Clear the caches (for debugging or testing).\"\"\"\n        cls._abc_cache.clear()\n        cls._abc_negative_cache.clear()\n\n    def __instancecheck__(cls, instance):\n        \"\"\"Override for isinstance(instance, cls).\"\"\"\n        # Inline the cache checking\n        subclass = instance.__class__\n        if subclass in cls._abc_cache:\n            return True\n        subtype = type(instance)\n        if subtype is subclass:\n            if (cls._abc_negative_cache_version ==\n                ABCMeta._abc_invalidation_counter and\n                subclass in cls._abc_negative_cache):\n                return False\n            # Fall back to the subclass check.\n            return cls.__subclasscheck__(subclass)\n        return any(cls.__subclasscheck__(c) for c in (subclass, subtype))\n\n    def __subclasscheck__(cls, subclass):\n        \"\"\"Override for issubclass(subclass, cls).\"\"\"\n        if not isinstance(subclass, type):\n            raise TypeError('issubclass() arg 1 must be a class')\n        # Check cache\n        if subclass in cls._abc_cache:\n            return True\n        # Check negative cache; may have to invalidate\n        if cls._abc_negative_cache_version < ABCMeta._abc_invalidation_counter:\n            # Invalidate the negative cache\n            cls._abc_negative_cache = WeakSet()\n            cls._abc_negative_cache_version = ABCMeta._abc_invalidation_counter\n        elif subclass in cls._abc_negative_cache:\n            return False\n        # Check the subclass hook\n        ok = cls.__subclasshook__(subclass)\n        if ok is not NotImplemented:\n            assert isinstance(ok, bool)\n            if ok:\n                cls._abc_cache.add(subclass)\n            else:\n                cls._abc_negative_cache.add(subclass)\n            return ok\n        # Check if it's a direct subclass\n        if cls in getattr(subclass, '__mro__', ()):\n            cls._abc_cache.add(subclass)\n            return True\n        # Check if it's a subclass of a registered class (recursive)\n        for rcls in cls._abc_registry:\n            if issubclass(subclass, rcls):\n                cls._abc_cache.add(subclass)\n                return True\n        # Check if it's a subclass of a subclass (recursive)\n        for scls in cls.__subclasses__():\n            if issubclass(subclass, scls):\n                cls._abc_cache.add(subclass)\n                return True\n        # No dice; update negative cache\n        cls._abc_negative_cache.add(subclass)\n        return False\n"
  },
  {
    "path": "rd/usr/lib/python3.8/_pydecimal.py",
    "content": "# Copyright (c) 2004 Python Software Foundation.\n# All rights reserved.\n\n# Written by Eric Price <eprice at tjhsst.edu>\n#    and Facundo Batista <facundo at taniquetil.com.ar>\n#    and Raymond Hettinger <python at rcn.com>\n#    and Aahz <aahz at pobox.com>\n#    and Tim Peters\n\n# This module should be kept in sync with the latest updates of the\n# IBM specification as it evolves.  Those updates will be treated\n# as bug fixes (deviation from the spec is a compatibility, usability\n# bug) and will be backported.  At this point the spec is stabilizing\n# and the updates are becoming fewer, smaller, and less significant.\n\n\"\"\"\nThis is an implementation of decimal floating point arithmetic based on\nthe General Decimal Arithmetic Specification:\n\n    http://speleotrove.com/decimal/decarith.html\n\nand IEEE standard 854-1987:\n\n    http://en.wikipedia.org/wiki/IEEE_854-1987\n\nDecimal floating point has finite precision with arbitrarily large bounds.\n\nThe purpose of this module is to support arithmetic using familiar\n\"schoolhouse\" rules and to avoid some of the tricky representation\nissues associated with binary floating point.  The package is especially\nuseful for financial applications or for contexts where users have\nexpectations that are at odds with binary floating point (for instance,\nin binary floating point, 1.00 % 0.1 gives 0.09999999999999995 instead\nof 0.0; Decimal('1.00') % Decimal('0.1') returns the expected\nDecimal('0.00')).\n\nHere are some examples of using the decimal module:\n\n>>> from decimal import *\n>>> setcontext(ExtendedContext)\n>>> Decimal(0)\nDecimal('0')\n>>> Decimal('1')\nDecimal('1')\n>>> Decimal('-.0123')\nDecimal('-0.0123')\n>>> Decimal(123456)\nDecimal('123456')\n>>> Decimal('123.45e12345678')\nDecimal('1.2345E+12345680')\n>>> Decimal('1.33') + Decimal('1.27')\nDecimal('2.60')\n>>> Decimal('12.34') + Decimal('3.87') - Decimal('18.41')\nDecimal('-2.20')\n>>> dig = Decimal(1)\n>>> print(dig / Decimal(3))\n0.333333333\n>>> getcontext().prec = 18\n>>> print(dig / Decimal(3))\n0.333333333333333333\n>>> print(dig.sqrt())\n1\n>>> print(Decimal(3).sqrt())\n1.73205080756887729\n>>> print(Decimal(3) ** 123)\n4.85192780976896427E+58\n>>> inf = Decimal(1) / Decimal(0)\n>>> print(inf)\nInfinity\n>>> neginf = Decimal(-1) / Decimal(0)\n>>> print(neginf)\n-Infinity\n>>> print(neginf + inf)\nNaN\n>>> print(neginf * inf)\n-Infinity\n>>> print(dig / 0)\nInfinity\n>>> getcontext().traps[DivisionByZero] = 1\n>>> print(dig / 0)\nTraceback (most recent call last):\n  ...\n  ...\n  ...\ndecimal.DivisionByZero: x / 0\n>>> c = Context()\n>>> c.traps[InvalidOperation] = 0\n>>> print(c.flags[InvalidOperation])\n0\n>>> c.divide(Decimal(0), Decimal(0))\nDecimal('NaN')\n>>> c.traps[InvalidOperation] = 1\n>>> print(c.flags[InvalidOperation])\n1\n>>> c.flags[InvalidOperation] = 0\n>>> print(c.flags[InvalidOperation])\n0\n>>> print(c.divide(Decimal(0), Decimal(0)))\nTraceback (most recent call last):\n  ...\n  ...\n  ...\ndecimal.InvalidOperation: 0 / 0\n>>> print(c.flags[InvalidOperation])\n1\n>>> c.flags[InvalidOperation] = 0\n>>> c.traps[InvalidOperation] = 0\n>>> print(c.divide(Decimal(0), Decimal(0)))\nNaN\n>>> print(c.flags[InvalidOperation])\n1\n>>>\n\"\"\"\n\n__all__ = [\n    # Two major classes\n    'Decimal', 'Context',\n\n    # Named tuple representation\n    'DecimalTuple',\n\n    # Contexts\n    'DefaultContext', 'BasicContext', 'ExtendedContext',\n\n    # Exceptions\n    'DecimalException', 'Clamped', 'InvalidOperation', 'DivisionByZero',\n    'Inexact', 'Rounded', 'Subnormal', 'Overflow', 'Underflow',\n    'FloatOperation',\n\n    # Exceptional conditions that trigger InvalidOperation\n    'DivisionImpossible', 'InvalidContext', 'ConversionSyntax', 'DivisionUndefined',\n\n    # Constants for use in setting up contexts\n    'ROUND_DOWN', 'ROUND_HALF_UP', 'ROUND_HALF_EVEN', 'ROUND_CEILING',\n    'ROUND_FLOOR', 'ROUND_UP', 'ROUND_HALF_DOWN', 'ROUND_05UP',\n\n    # Functions for manipulating contexts\n    'setcontext', 'getcontext', 'localcontext',\n\n    # Limits for the C version for compatibility\n    'MAX_PREC',  'MAX_EMAX', 'MIN_EMIN', 'MIN_ETINY',\n\n    # C version: compile time choice that enables the thread local context (deprecated, now always true)\n    'HAVE_THREADS',\n\n    # C version: compile time choice that enables the coroutine local context\n    'HAVE_CONTEXTVAR'\n]\n\n__xname__ = __name__    # sys.modules lookup (--without-threads)\n__name__ = 'decimal'    # For pickling\n__version__ = '1.70'    # Highest version of the spec this complies with\n                        # See http://speleotrove.com/decimal/\n__libmpdec_version__ = \"2.4.2\" # compatible libmpdec version\n\nimport math as _math\nimport numbers as _numbers\nimport sys\n\ntry:\n    from collections import namedtuple as _namedtuple\n    DecimalTuple = _namedtuple('DecimalTuple', 'sign digits exponent')\nexcept ImportError:\n    DecimalTuple = lambda *args: args\n\n# Rounding\nROUND_DOWN = 'ROUND_DOWN'\nROUND_HALF_UP = 'ROUND_HALF_UP'\nROUND_HALF_EVEN = 'ROUND_HALF_EVEN'\nROUND_CEILING = 'ROUND_CEILING'\nROUND_FLOOR = 'ROUND_FLOOR'\nROUND_UP = 'ROUND_UP'\nROUND_HALF_DOWN = 'ROUND_HALF_DOWN'\nROUND_05UP = 'ROUND_05UP'\n\n# Compatibility with the C version\nHAVE_THREADS = True\nHAVE_CONTEXTVAR = True\nif sys.maxsize == 2**63-1:\n    MAX_PREC = 999999999999999999\n    MAX_EMAX = 999999999999999999\n    MIN_EMIN = -999999999999999999\nelse:\n    MAX_PREC = 425000000\n    MAX_EMAX = 425000000\n    MIN_EMIN = -425000000\n\nMIN_ETINY = MIN_EMIN - (MAX_PREC-1)\n\n# Errors\n\nclass DecimalException(ArithmeticError):\n    \"\"\"Base exception class.\n\n    Used exceptions derive from this.\n    If an exception derives from another exception besides this (such as\n    Underflow (Inexact, Rounded, Subnormal) that indicates that it is only\n    called if the others are present.  This isn't actually used for\n    anything, though.\n\n    handle  -- Called when context._raise_error is called and the\n               trap_enabler is not set.  First argument is self, second is the\n               context.  More arguments can be given, those being after\n               the explanation in _raise_error (For example,\n               context._raise_error(NewError, '(-x)!', self._sign) would\n               call NewError().handle(context, self._sign).)\n\n    To define a new exception, it should be sufficient to have it derive\n    from DecimalException.\n    \"\"\"\n    def handle(self, context, *args):\n        pass\n\n\nclass Clamped(DecimalException):\n    \"\"\"Exponent of a 0 changed to fit bounds.\n\n    This occurs and signals clamped if the exponent of a result has been\n    altered in order to fit the constraints of a specific concrete\n    representation.  This may occur when the exponent of a zero result would\n    be outside the bounds of a representation, or when a large normal\n    number would have an encoded exponent that cannot be represented.  In\n    this latter case, the exponent is reduced to fit and the corresponding\n    number of zero digits are appended to the coefficient (\"fold-down\").\n    \"\"\"\n\nclass InvalidOperation(DecimalException):\n    \"\"\"An invalid operation was performed.\n\n    Various bad things cause this:\n\n    Something creates a signaling NaN\n    -INF + INF\n    0 * (+-)INF\n    (+-)INF / (+-)INF\n    x % 0\n    (+-)INF % x\n    x._rescale( non-integer )\n    sqrt(-x) , x > 0\n    0 ** 0\n    x ** (non-integer)\n    x ** (+-)INF\n    An operand is invalid\n\n    The result of the operation after these is a quiet positive NaN,\n    except when the cause is a signaling NaN, in which case the result is\n    also a quiet NaN, but with the original sign, and an optional\n    diagnostic information.\n    \"\"\"\n    def handle(self, context, *args):\n        if args:\n            ans = _dec_from_triple(args[0]._sign, args[0]._int, 'n', True)\n            return ans._fix_nan(context)\n        return _NaN\n\nclass ConversionSyntax(InvalidOperation):\n    \"\"\"Trying to convert badly formed string.\n\n    This occurs and signals invalid-operation if a string is being\n    converted to a number and it does not conform to the numeric string\n    syntax.  The result is [0,qNaN].\n    \"\"\"\n    def handle(self, context, *args):\n        return _NaN\n\nclass DivisionByZero(DecimalException, ZeroDivisionError):\n    \"\"\"Division by 0.\n\n    This occurs and signals division-by-zero if division of a finite number\n    by zero was attempted (during a divide-integer or divide operation, or a\n    power operation with negative right-hand operand), and the dividend was\n    not zero.\n\n    The result of the operation is [sign,inf], where sign is the exclusive\n    or of the signs of the operands for divide, or is 1 for an odd power of\n    -0, for power.\n    \"\"\"\n\n    def handle(self, context, sign, *args):\n        return _SignedInfinity[sign]\n\nclass DivisionImpossible(InvalidOperation):\n    \"\"\"Cannot perform the division adequately.\n\n    This occurs and signals invalid-operation if the integer result of a\n    divide-integer or remainder operation had too many digits (would be\n    longer than precision).  The result is [0,qNaN].\n    \"\"\"\n\n    def handle(self, context, *args):\n        return _NaN\n\nclass DivisionUndefined(InvalidOperation, ZeroDivisionError):\n    \"\"\"Undefined result of division.\n\n    This occurs and signals invalid-operation if division by zero was\n    attempted (during a divide-integer, divide, or remainder operation), and\n    the dividend is also zero.  The result is [0,qNaN].\n    \"\"\"\n\n    def handle(self, context, *args):\n        return _NaN\n\nclass Inexact(DecimalException):\n    \"\"\"Had to round, losing information.\n\n    This occurs and signals inexact whenever the result of an operation is\n    not exact (that is, it needed to be rounded and any discarded digits\n    were non-zero), or if an overflow or underflow condition occurs.  The\n    result in all cases is unchanged.\n\n    The inexact signal may be tested (or trapped) to determine if a given\n    operation (or sequence of operations) was inexact.\n    \"\"\"\n\nclass InvalidContext(InvalidOperation):\n    \"\"\"Invalid context.  Unknown rounding, for example.\n\n    This occurs and signals invalid-operation if an invalid context was\n    detected during an operation.  This can occur if contexts are not checked\n    on creation and either the precision exceeds the capability of the\n    underlying concrete representation or an unknown or unsupported rounding\n    was specified.  These aspects of the context need only be checked when\n    the values are required to be used.  The result is [0,qNaN].\n    \"\"\"\n\n    def handle(self, context, *args):\n        return _NaN\n\nclass Rounded(DecimalException):\n    \"\"\"Number got rounded (not  necessarily changed during rounding).\n\n    This occurs and signals rounded whenever the result of an operation is\n    rounded (that is, some zero or non-zero digits were discarded from the\n    coefficient), or if an overflow or underflow condition occurs.  The\n    result in all cases is unchanged.\n\n    The rounded signal may be tested (or trapped) to determine if a given\n    operation (or sequence of operations) caused a loss of precision.\n    \"\"\"\n\nclass Subnormal(DecimalException):\n    \"\"\"Exponent < Emin before rounding.\n\n    This occurs and signals subnormal whenever the result of a conversion or\n    operation is subnormal (that is, its adjusted exponent is less than\n    Emin, before any rounding).  The result in all cases is unchanged.\n\n    The subnormal signal may be tested (or trapped) to determine if a given\n    or operation (or sequence of operations) yielded a subnormal result.\n    \"\"\"\n\nclass Overflow(Inexact, Rounded):\n    \"\"\"Numerical overflow.\n\n    This occurs and signals overflow if the adjusted exponent of a result\n    (from a conversion or from an operation that is not an attempt to divide\n    by zero), after rounding, would be greater than the largest value that\n    can be handled by the implementation (the value Emax).\n\n    The result depends on the rounding mode:\n\n    For round-half-up and round-half-even (and for round-half-down and\n    round-up, if implemented), the result of the operation is [sign,inf],\n    where sign is the sign of the intermediate result.  For round-down, the\n    result is the largest finite number that can be represented in the\n    current precision, with the sign of the intermediate result.  For\n    round-ceiling, the result is the same as for round-down if the sign of\n    the intermediate result is 1, or is [0,inf] otherwise.  For round-floor,\n    the result is the same as for round-down if the sign of the intermediate\n    result is 0, or is [1,inf] otherwise.  In all cases, Inexact and Rounded\n    will also be raised.\n    \"\"\"\n\n    def handle(self, context, sign, *args):\n        if context.rounding in (ROUND_HALF_UP, ROUND_HALF_EVEN,\n                                ROUND_HALF_DOWN, ROUND_UP):\n            return _SignedInfinity[sign]\n        if sign == 0:\n            if context.rounding == ROUND_CEILING:\n                return _SignedInfinity[sign]\n            return _dec_from_triple(sign, '9'*context.prec,\n                            context.Emax-context.prec+1)\n        if sign == 1:\n            if context.rounding == ROUND_FLOOR:\n                return _SignedInfinity[sign]\n            return _dec_from_triple(sign, '9'*context.prec,\n                             context.Emax-context.prec+1)\n\n\nclass Underflow(Inexact, Rounded, Subnormal):\n    \"\"\"Numerical underflow with result rounded to 0.\n\n    This occurs and signals underflow if a result is inexact and the\n    adjusted exponent of the result would be smaller (more negative) than\n    the smallest value that can be handled by the implementation (the value\n    Emin).  That is, the result is both inexact and subnormal.\n\n    The result after an underflow will be a subnormal number rounded, if\n    necessary, so that its exponent is not less than Etiny.  This may result\n    in 0 with the sign of the intermediate result and an exponent of Etiny.\n\n    In all cases, Inexact, Rounded, and Subnormal will also be raised.\n    \"\"\"\n\nclass FloatOperation(DecimalException, TypeError):\n    \"\"\"Enable stricter semantics for mixing floats and Decimals.\n\n    If the signal is not trapped (default), mixing floats and Decimals is\n    permitted in the Decimal() constructor, context.create_decimal() and\n    all comparison operators. Both conversion and comparisons are exact.\n    Any occurrence of a mixed operation is silently recorded by setting\n    FloatOperation in the context flags.  Explicit conversions with\n    Decimal.from_float() or context.create_decimal_from_float() do not\n    set the flag.\n\n    Otherwise (the signal is trapped), only equality comparisons and explicit\n    conversions are silent. All other mixed operations raise FloatOperation.\n    \"\"\"\n\n# List of public traps and flags\n_signals = [Clamped, DivisionByZero, Inexact, Overflow, Rounded,\n            Underflow, InvalidOperation, Subnormal, FloatOperation]\n\n# Map conditions (per the spec) to signals\n_condition_map = {ConversionSyntax:InvalidOperation,\n                  DivisionImpossible:InvalidOperation,\n                  DivisionUndefined:InvalidOperation,\n                  InvalidContext:InvalidOperation}\n\n# Valid rounding modes\n_rounding_modes = (ROUND_DOWN, ROUND_HALF_UP, ROUND_HALF_EVEN, ROUND_CEILING,\n                   ROUND_FLOOR, ROUND_UP, ROUND_HALF_DOWN, ROUND_05UP)\n\n##### Context Functions ##################################################\n\n# The getcontext() and setcontext() function manage access to a thread-local\n# current context.\n\nimport contextvars\n\n_current_context_var = contextvars.ContextVar('decimal_context')\n\ndef getcontext():\n    \"\"\"Returns this thread's context.\n\n    If this thread does not yet have a context, returns\n    a new context and sets this thread's context.\n    New contexts are copies of DefaultContext.\n    \"\"\"\n    try:\n        return _current_context_var.get()\n    except LookupError:\n        context = Context()\n        _current_context_var.set(context)\n        return context\n\ndef setcontext(context):\n    \"\"\"Set this thread's context to context.\"\"\"\n    if context in (DefaultContext, BasicContext, ExtendedContext):\n        context = context.copy()\n        context.clear_flags()\n    _current_context_var.set(context)\n\ndel contextvars        # Don't contaminate the namespace\n\ndef localcontext(ctx=None):\n    \"\"\"Return a context manager for a copy of the supplied context\n\n    Uses a copy of the current context if no context is specified\n    The returned context manager creates a local decimal context\n    in a with statement:\n        def sin(x):\n             with localcontext() as ctx:\n                 ctx.prec += 2\n                 # Rest of sin calculation algorithm\n                 # uses a precision 2 greater than normal\n             return +s  # Convert result to normal precision\n\n         def sin(x):\n             with localcontext(ExtendedContext):\n                 # Rest of sin calculation algorithm\n                 # uses the Extended Context from the\n                 # General Decimal Arithmetic Specification\n             return +s  # Convert result to normal context\n\n    >>> setcontext(DefaultContext)\n    >>> print(getcontext().prec)\n    28\n    >>> with localcontext():\n    ...     ctx = getcontext()\n    ...     ctx.prec += 2\n    ...     print(ctx.prec)\n    ...\n    30\n    >>> with localcontext(ExtendedContext):\n    ...     print(getcontext().prec)\n    ...\n    9\n    >>> print(getcontext().prec)\n    28\n    \"\"\"\n    if ctx is None: ctx = getcontext()\n    return _ContextManager(ctx)\n\n\n##### Decimal class #######################################################\n\n# Do not subclass Decimal from numbers.Real and do not register it as such\n# (because Decimals are not interoperable with floats).  See the notes in\n# numbers.py for more detail.\n\nclass Decimal(object):\n    \"\"\"Floating point class for decimal arithmetic.\"\"\"\n\n    __slots__ = ('_exp','_int','_sign', '_is_special')\n    # Generally, the value of the Decimal instance is given by\n    #  (-1)**_sign * _int * 10**_exp\n    # Special values are signified by _is_special == True\n\n    # We're immutable, so use __new__ not __init__\n    def __new__(cls, value=\"0\", context=None):\n        \"\"\"Create a decimal point instance.\n\n        >>> Decimal('3.14')              # string input\n        Decimal('3.14')\n        >>> Decimal((0, (3, 1, 4), -2))  # tuple (sign, digit_tuple, exponent)\n        Decimal('3.14')\n        >>> Decimal(314)                 # int\n        Decimal('314')\n        >>> Decimal(Decimal(314))        # another decimal instance\n        Decimal('314')\n        >>> Decimal('  3.14  \\\\n')        # leading and trailing whitespace okay\n        Decimal('3.14')\n        \"\"\"\n\n        # Note that the coefficient, self._int, is actually stored as\n        # a string rather than as a tuple of digits.  This speeds up\n        # the \"digits to integer\" and \"integer to digits\" conversions\n        # that are used in almost every arithmetic operation on\n        # Decimals.  This is an internal detail: the as_tuple function\n        # and the Decimal constructor still deal with tuples of\n        # digits.\n\n        self = object.__new__(cls)\n\n        # From a string\n        # REs insist on real strings, so we can too.\n        if isinstance(value, str):\n            m = _parser(value.strip().replace(\"_\", \"\"))\n            if m is None:\n                if context is None:\n                    context = getcontext()\n                return context._raise_error(ConversionSyntax,\n                                \"Invalid literal for Decimal: %r\" % value)\n\n            if m.group('sign') == \"-\":\n                self._sign = 1\n            else:\n                self._sign = 0\n            intpart = m.group('int')\n            if intpart is not None:\n                # finite number\n                fracpart = m.group('frac') or ''\n                exp = int(m.group('exp') or '0')\n                self._int = str(int(intpart+fracpart))\n                self._exp = exp - len(fracpart)\n                self._is_special = False\n            else:\n                diag = m.group('diag')\n                if diag is not None:\n                    # NaN\n                    self._int = str(int(diag or '0')).lstrip('0')\n                    if m.group('signal'):\n                        self._exp = 'N'\n                    else:\n                        self._exp = 'n'\n                else:\n                    # infinity\n                    self._int = '0'\n                    self._exp = 'F'\n                self._is_special = True\n            return self\n\n        # From an integer\n        if isinstance(value, int):\n            if value >= 0:\n                self._sign = 0\n            else:\n                self._sign = 1\n            self._exp = 0\n            self._int = str(abs(value))\n            self._is_special = False\n            return self\n\n        # From another decimal\n        if isinstance(value, Decimal):\n            self._exp  = value._exp\n            self._sign = value._sign\n            self._int  = value._int\n            self._is_special  = value._is_special\n            return self\n\n        # From an internal working value\n        if isinstance(value, _WorkRep):\n            self._sign = value.sign\n            self._int = str(value.int)\n            self._exp = int(value.exp)\n            self._is_special = False\n            return self\n\n        # tuple/list conversion (possibly from as_tuple())\n        if isinstance(value, (list,tuple)):\n            if len(value) != 3:\n                raise ValueError('Invalid tuple size in creation of Decimal '\n                                 'from list or tuple.  The list or tuple '\n                                 'should have exactly three elements.')\n            # process sign.  The isinstance test rejects floats\n            if not (isinstance(value[0], int) and value[0] in (0,1)):\n                raise ValueError(\"Invalid sign.  The first value in the tuple \"\n                                 \"should be an integer; either 0 for a \"\n                                 \"positive number or 1 for a negative number.\")\n            self._sign = value[0]\n            if value[2] == 'F':\n                # infinity: value[1] is ignored\n                self._int = '0'\n                self._exp = value[2]\n                self._is_special = True\n            else:\n                # process and validate the digits in value[1]\n                digits = []\n                for digit in value[1]:\n                    if isinstance(digit, int) and 0 <= digit <= 9:\n                        # skip leading zeros\n                        if digits or digit != 0:\n                            digits.append(digit)\n                    else:\n                        raise ValueError(\"The second value in the tuple must \"\n                                         \"be composed of integers in the range \"\n                                         \"0 through 9.\")\n                if value[2] in ('n', 'N'):\n                    # NaN: digits form the diagnostic\n                    self._int = ''.join(map(str, digits))\n                    self._exp = value[2]\n                    self._is_special = True\n                elif isinstance(value[2], int):\n                    # finite number: digits give the coefficient\n                    self._int = ''.join(map(str, digits or [0]))\n                    self._exp = value[2]\n                    self._is_special = False\n                else:\n                    raise ValueError(\"The third value in the tuple must \"\n                                     \"be an integer, or one of the \"\n                                     \"strings 'F', 'n', 'N'.\")\n            return self\n\n        if isinstance(value, float):\n            if context is None:\n                context = getcontext()\n            context._raise_error(FloatOperation,\n                \"strict semantics for mixing floats and Decimals are \"\n                \"enabled\")\n            value = Decimal.from_float(value)\n            self._exp  = value._exp\n            self._sign = value._sign\n            self._int  = value._int\n            self._is_special  = value._is_special\n            return self\n\n        raise TypeError(\"Cannot convert %r to Decimal\" % value)\n\n    @classmethod\n    def from_float(cls, f):\n        \"\"\"Converts a float to a decimal number, exactly.\n\n        Note that Decimal.from_float(0.1) is not the same as Decimal('0.1').\n        Since 0.1 is not exactly representable in binary floating point, the\n        value is stored as the nearest representable value which is\n        0x1.999999999999ap-4.  The exact equivalent of the value in decimal\n        is 0.1000000000000000055511151231257827021181583404541015625.\n\n        >>> Decimal.from_float(0.1)\n        Decimal('0.1000000000000000055511151231257827021181583404541015625')\n        >>> Decimal.from_float(float('nan'))\n        Decimal('NaN')\n        >>> Decimal.from_float(float('inf'))\n        Decimal('Infinity')\n        >>> Decimal.from_float(-float('inf'))\n        Decimal('-Infinity')\n        >>> Decimal.from_float(-0.0)\n        Decimal('-0')\n\n        \"\"\"\n        if isinstance(f, int):                # handle integer inputs\n            sign = 0 if f >= 0 else 1\n            k = 0\n            coeff = str(abs(f))\n        elif isinstance(f, float):\n            if _math.isinf(f) or _math.isnan(f):\n                return cls(repr(f))\n            if _math.copysign(1.0, f) == 1.0:\n                sign = 0\n            else:\n                sign = 1\n            n, d = abs(f).as_integer_ratio()\n            k = d.bit_length() - 1\n            coeff = str(n*5**k)\n        else:\n            raise TypeError(\"argument must be int or float.\")\n\n        result = _dec_from_triple(sign, coeff, -k)\n        if cls is Decimal:\n            return result\n        else:\n            return cls(result)\n\n    def _isnan(self):\n        \"\"\"Returns whether the number is not actually one.\n\n        0 if a number\n        1 if NaN\n        2 if sNaN\n        \"\"\"\n        if self._is_special:\n            exp = self._exp\n            if exp == 'n':\n                return 1\n            elif exp == 'N':\n                return 2\n        return 0\n\n    def _isinfinity(self):\n        \"\"\"Returns whether the number is infinite\n\n        0 if finite or not a number\n        1 if +INF\n        -1 if -INF\n        \"\"\"\n        if self._exp == 'F':\n            if self._sign:\n                return -1\n            return 1\n        return 0\n\n    def _check_nans(self, other=None, context=None):\n        \"\"\"Returns whether the number is not actually one.\n\n        if self, other are sNaN, signal\n        if self, other are NaN return nan\n        return 0\n\n        Done before operations.\n        \"\"\"\n\n        self_is_nan = self._isnan()\n        if other is None:\n            other_is_nan = False\n        else:\n            other_is_nan = other._isnan()\n\n        if self_is_nan or other_is_nan:\n            if context is None:\n                context = getcontext()\n\n            if self_is_nan == 2:\n                return context._raise_error(InvalidOperation, 'sNaN',\n                                        self)\n            if other_is_nan == 2:\n                return context._raise_error(InvalidOperation, 'sNaN',\n                                        other)\n            if self_is_nan:\n                return self._fix_nan(context)\n\n            return other._fix_nan(context)\n        return 0\n\n    def _compare_check_nans(self, other, context):\n        \"\"\"Version of _check_nans used for the signaling comparisons\n        compare_signal, __le__, __lt__, __ge__, __gt__.\n\n        Signal InvalidOperation if either self or other is a (quiet\n        or signaling) NaN.  Signaling NaNs take precedence over quiet\n        NaNs.\n\n        Return 0 if neither operand is a NaN.\n\n        \"\"\"\n        if context is None:\n            context = getcontext()\n\n        if self._is_special or other._is_special:\n            if self.is_snan():\n                return context._raise_error(InvalidOperation,\n                                            'comparison involving sNaN',\n                                            self)\n            elif other.is_snan():\n                return context._raise_error(InvalidOperation,\n                                            'comparison involving sNaN',\n                                            other)\n            elif self.is_qnan():\n                return context._raise_error(InvalidOperation,\n                                            'comparison involving NaN',\n                                            self)\n            elif other.is_qnan():\n                return context._raise_error(InvalidOperation,\n                                            'comparison involving NaN',\n                                            other)\n        return 0\n\n    def __bool__(self):\n        \"\"\"Return True if self is nonzero; otherwise return False.\n\n        NaNs and infinities are considered nonzero.\n        \"\"\"\n        return self._is_special or self._int != '0'\n\n    def _cmp(self, other):\n        \"\"\"Compare the two non-NaN decimal instances self and other.\n\n        Returns -1 if self < other, 0 if self == other and 1\n        if self > other.  This routine is for internal use only.\"\"\"\n\n        if self._is_special or other._is_special:\n            self_inf = self._isinfinity()\n            other_inf = other._isinfinity()\n            if self_inf == other_inf:\n                return 0\n            elif self_inf < other_inf:\n                return -1\n            else:\n                return 1\n\n        # check for zeros;  Decimal('0') == Decimal('-0')\n        if not self:\n            if not other:\n                return 0\n            else:\n                return -((-1)**other._sign)\n        if not other:\n            return (-1)**self._sign\n\n        # If different signs, neg one is less\n        if other._sign < self._sign:\n            return -1\n        if self._sign < other._sign:\n            return 1\n\n        self_adjusted = self.adjusted()\n        other_adjusted = other.adjusted()\n        if self_adjusted == other_adjusted:\n            self_padded = self._int + '0'*(self._exp - other._exp)\n            other_padded = other._int + '0'*(other._exp - self._exp)\n            if self_padded == other_padded:\n                return 0\n            elif self_padded < other_padded:\n                return -(-1)**self._sign\n            else:\n                return (-1)**self._sign\n        elif self_adjusted > other_adjusted:\n            return (-1)**self._sign\n        else: # self_adjusted < other_adjusted\n            return -((-1)**self._sign)\n\n    # Note: The Decimal standard doesn't cover rich comparisons for\n    # Decimals.  In particular, the specification is silent on the\n    # subject of what should happen for a comparison involving a NaN.\n    # We take the following approach:\n    #\n    #   == comparisons involving a quiet NaN always return False\n    #   != comparisons involving a quiet NaN always return True\n    #   == or != comparisons involving a signaling NaN signal\n    #      InvalidOperation, and return False or True as above if the\n    #      InvalidOperation is not trapped.\n    #   <, >, <= and >= comparisons involving a (quiet or signaling)\n    #      NaN signal InvalidOperation, and return False if the\n    #      InvalidOperation is not trapped.\n    #\n    # This behavior is designed to conform as closely as possible to\n    # that specified by IEEE 754.\n\n    def __eq__(self, other, context=None):\n        self, other = _convert_for_comparison(self, other, equality_op=True)\n        if other is NotImplemented:\n            return other\n        if self._check_nans(other, context):\n            return False\n        return self._cmp(other) == 0\n\n    def __lt__(self, other, context=None):\n        self, other = _convert_for_comparison(self, other)\n        if other is NotImplemented:\n            return other\n        ans = self._compare_check_nans(other, context)\n        if ans:\n            return False\n        return self._cmp(other) < 0\n\n    def __le__(self, other, context=None):\n        self, other = _convert_for_comparison(self, other)\n        if other is NotImplemented:\n            return other\n        ans = self._compare_check_nans(other, context)\n        if ans:\n            return False\n        return self._cmp(other) <= 0\n\n    def __gt__(self, other, context=None):\n        self, other = _convert_for_comparison(self, other)\n        if other is NotImplemented:\n            return other\n        ans = self._compare_check_nans(other, context)\n        if ans:\n            return False\n        return self._cmp(other) > 0\n\n    def __ge__(self, other, context=None):\n        self, other = _convert_for_comparison(self, other)\n        if other is NotImplemented:\n            return other\n        ans = self._compare_check_nans(other, context)\n        if ans:\n            return False\n        return self._cmp(other) >= 0\n\n    def compare(self, other, context=None):\n        \"\"\"Compare self to other.  Return a decimal value:\n\n        a or b is a NaN ==> Decimal('NaN')\n        a < b           ==> Decimal('-1')\n        a == b          ==> Decimal('0')\n        a > b           ==> Decimal('1')\n        \"\"\"\n        other = _convert_other(other, raiseit=True)\n\n        # Compare(NaN, NaN) = NaN\n        if (self._is_special or other and other._is_special):\n            ans = self._check_nans(other, context)\n            if ans:\n                return ans\n\n        return Decimal(self._cmp(other))\n\n    def __hash__(self):\n        \"\"\"x.__hash__() <==> hash(x)\"\"\"\n\n        # In order to make sure that the hash of a Decimal instance\n        # agrees with the hash of a numerically equal integer, float\n        # or Fraction, we follow the rules for numeric hashes outlined\n        # in the documentation.  (See library docs, 'Built-in Types').\n        if self._is_special:\n            if self.is_snan():\n                raise TypeError('Cannot hash a signaling NaN value.')\n            elif self.is_nan():\n                return _PyHASH_NAN\n            else:\n                if self._sign:\n                    return -_PyHASH_INF\n                else:\n                    return _PyHASH_INF\n\n        if self._exp >= 0:\n            exp_hash = pow(10, self._exp, _PyHASH_MODULUS)\n        else:\n            exp_hash = pow(_PyHASH_10INV, -self._exp, _PyHASH_MODULUS)\n        hash_ = int(self._int) * exp_hash % _PyHASH_MODULUS\n        ans = hash_ if self >= 0 else -hash_\n        return -2 if ans == -1 else ans\n\n    def as_tuple(self):\n        \"\"\"Represents the number as a triple tuple.\n\n        To show the internals exactly as they are.\n        \"\"\"\n        return DecimalTuple(self._sign, tuple(map(int, self._int)), self._exp)\n\n    def as_integer_ratio(self):\n        \"\"\"Express a finite Decimal instance in the form n / d.\n\n        Returns a pair (n, d) of integers.  When called on an infinity\n        or NaN, raises OverflowError or ValueError respectively.\n\n        >>> Decimal('3.14').as_integer_ratio()\n        (157, 50)\n        >>> Decimal('-123e5').as_integer_ratio()\n        (-12300000, 1)\n        >>> Decimal('0.00').as_integer_ratio()\n        (0, 1)\n\n        \"\"\"\n        if self._is_special:\n            if self.is_nan():\n                raise ValueError(\"cannot convert NaN to integer ratio\")\n            else:\n                raise OverflowError(\"cannot convert Infinity to integer ratio\")\n\n        if not self:\n            return 0, 1\n\n        # Find n, d in lowest terms such that abs(self) == n / d;\n        # we'll deal with the sign later.\n        n = int(self._int)\n        if self._exp >= 0:\n            # self is an integer.\n            n, d = n * 10**self._exp, 1\n        else:\n            # Find d2, d5 such that abs(self) = n / (2**d2 * 5**d5).\n            d5 = -self._exp\n            while d5 > 0 and n % 5 == 0:\n                n //= 5\n                d5 -= 1\n\n            # (n & -n).bit_length() - 1 counts trailing zeros in binary\n            # representation of n (provided n is nonzero).\n            d2 = -self._exp\n            shift2 = min((n & -n).bit_length() - 1, d2)\n            if shift2:\n                n >>= shift2\n                d2 -= shift2\n\n            d = 5**d5 << d2\n\n        if self._sign:\n            n = -n\n        return n, d\n\n    def __repr__(self):\n        \"\"\"Represents the number as an instance of Decimal.\"\"\"\n        # Invariant:  eval(repr(d)) == d\n        return \"Decimal('%s')\" % str(self)\n\n    def __str__(self, eng=False, context=None):\n        \"\"\"Return string representation of the number in scientific notation.\n\n        Captures all of the information in the underlying representation.\n        \"\"\"\n\n        sign = ['', '-'][self._sign]\n        if self._is_special:\n            if self._exp == 'F':\n                return sign + 'Infinity'\n            elif self._exp == 'n':\n                return sign + 'NaN' + self._int\n            else: # self._exp == 'N'\n                return sign + 'sNaN' + self._int\n\n        # number of digits of self._int to left of decimal point\n        leftdigits = self._exp + len(self._int)\n\n        # dotplace is number of digits of self._int to the left of the\n        # decimal point in the mantissa of the output string (that is,\n        # after adjusting the exponent)\n        if self._exp <= 0 and leftdigits > -6:\n            # no exponent required\n            dotplace = leftdigits\n        elif not eng:\n            # usual scientific notation: 1 digit on left of the point\n            dotplace = 1\n        elif self._int == '0':\n            # engineering notation, zero\n            dotplace = (leftdigits + 1) % 3 - 1\n        else:\n            # engineering notation, nonzero\n            dotplace = (leftdigits - 1) % 3 + 1\n\n        if dotplace <= 0:\n            intpart = '0'\n            fracpart = '.' + '0'*(-dotplace) + self._int\n        elif dotplace >= len(self._int):\n            intpart = self._int+'0'*(dotplace-len(self._int))\n            fracpart = ''\n        else:\n            intpart = self._int[:dotplace]\n            fracpart = '.' + self._int[dotplace:]\n        if leftdigits == dotplace:\n            exp = ''\n        else:\n            if context is None:\n                context = getcontext()\n            exp = ['e', 'E'][context.capitals] + \"%+d\" % (leftdigits-dotplace)\n\n        return sign + intpart + fracpart + exp\n\n    def to_eng_string(self, context=None):\n        \"\"\"Convert to a string, using engineering notation if an exponent is needed.\n\n        Engineering notation has an exponent which is a multiple of 3.  This\n        can leave up to 3 digits to the left of the decimal place and may\n        require the addition of either one or two trailing zeros.\n        \"\"\"\n        return self.__str__(eng=True, context=context)\n\n    def __neg__(self, context=None):\n        \"\"\"Returns a copy with the sign switched.\n\n        Rounds, if it has reason.\n        \"\"\"\n        if self._is_special:\n            ans = self._check_nans(context=context)\n            if ans:\n                return ans\n\n        if context is None:\n            context = getcontext()\n\n        if not self and context.rounding != ROUND_FLOOR:\n            # -Decimal('0') is Decimal('0'), not Decimal('-0'), except\n            # in ROUND_FLOOR rounding mode.\n            ans = self.copy_abs()\n        else:\n            ans = self.copy_negate()\n\n        return ans._fix(context)\n\n    def __pos__(self, context=None):\n        \"\"\"Returns a copy, unless it is a sNaN.\n\n        Rounds the number (if more than precision digits)\n        \"\"\"\n        if self._is_special:\n            ans = self._check_nans(context=context)\n            if ans:\n                return ans\n\n        if context is None:\n            context = getcontext()\n\n        if not self and context.rounding != ROUND_FLOOR:\n            # + (-0) = 0, except in ROUND_FLOOR rounding mode.\n            ans = self.copy_abs()\n        else:\n            ans = Decimal(self)\n\n        return ans._fix(context)\n\n    def __abs__(self, round=True, context=None):\n        \"\"\"Returns the absolute value of self.\n\n        If the keyword argument 'round' is false, do not round.  The\n        expression self.__abs__(round=False) is equivalent to\n        self.copy_abs().\n        \"\"\"\n        if not round:\n            return self.copy_abs()\n\n        if self._is_special:\n            ans = self._check_nans(context=context)\n            if ans:\n                return ans\n\n        if self._sign:\n            ans = self.__neg__(context=context)\n        else:\n            ans = self.__pos__(context=context)\n\n        return ans\n\n    def __add__(self, other, context=None):\n        \"\"\"Returns self + other.\n\n        -INF + INF (or the reverse) cause InvalidOperation errors.\n        \"\"\"\n        other = _convert_other(other)\n        if other is NotImplemented:\n            return other\n\n        if context is None:\n            context = getcontext()\n\n        if self._is_special or other._is_special:\n            ans = self._check_nans(other, context)\n            if ans:\n                return ans\n\n            if self._isinfinity():\n                # If both INF, same sign => same as both, opposite => error.\n                if self._sign != other._sign and other._isinfinity():\n                    return context._raise_error(InvalidOperation, '-INF + INF')\n                return Decimal(self)\n            if other._isinfinity():\n                return Decimal(other)  # Can't both be infinity here\n\n        exp = min(self._exp, other._exp)\n        negativezero = 0\n        if context.rounding == ROUND_FLOOR and self._sign != other._sign:\n            # If the answer is 0, the sign should be negative, in this case.\n            negativezero = 1\n\n        if not self and not other:\n            sign = min(self._sign, other._sign)\n            if negativezero:\n                sign = 1\n            ans = _dec_from_triple(sign, '0', exp)\n            ans = ans._fix(context)\n            return ans\n        if not self:\n            exp = max(exp, other._exp - context.prec-1)\n            ans = other._rescale(exp, context.rounding)\n            ans = ans._fix(context)\n            return ans\n        if not other:\n            exp = max(exp, self._exp - context.prec-1)\n            ans = self._rescale(exp, context.rounding)\n            ans = ans._fix(context)\n            return ans\n\n        op1 = _WorkRep(self)\n        op2 = _WorkRep(other)\n        op1, op2 = _normalize(op1, op2, context.prec)\n\n        result = _WorkRep()\n        if op1.sign != op2.sign:\n            # Equal and opposite\n            if op1.int == op2.int:\n                ans = _dec_from_triple(negativezero, '0', exp)\n                ans = ans._fix(context)\n                return ans\n            if op1.int < op2.int:\n                op1, op2 = op2, op1\n                # OK, now abs(op1) > abs(op2)\n            if op1.sign == 1:\n                result.sign = 1\n                op1.sign, op2.sign = op2.sign, op1.sign\n            else:\n                result.sign = 0\n                # So we know the sign, and op1 > 0.\n        elif op1.sign == 1:\n            result.sign = 1\n            op1.sign, op2.sign = (0, 0)\n        else:\n            result.sign = 0\n        # Now, op1 > abs(op2) > 0\n\n        if op2.sign == 0:\n            result.int = op1.int + op2.int\n        else:\n            result.int = op1.int - op2.int\n\n        result.exp = op1.exp\n        ans = Decimal(result)\n        ans = ans._fix(context)\n        return ans\n\n    __radd__ = __add__\n\n    def __sub__(self, other, context=None):\n        \"\"\"Return self - other\"\"\"\n        other = _convert_other(other)\n        if other is NotImplemented:\n            return other\n\n        if self._is_special or other._is_special:\n            ans = self._check_nans(other, context=context)\n            if ans:\n                return ans\n\n        # self - other is computed as self + other.copy_negate()\n        return self.__add__(other.copy_negate(), context=context)\n\n    def __rsub__(self, other, context=None):\n        \"\"\"Return other - self\"\"\"\n        other = _convert_other(other)\n        if other is NotImplemented:\n            return other\n\n        return other.__sub__(self, context=context)\n\n    def __mul__(self, other, context=None):\n        \"\"\"Return self * other.\n\n        (+-) INF * 0 (or its reverse) raise InvalidOperation.\n        \"\"\"\n        other = _convert_other(other)\n        if other is NotImplemented:\n            return other\n\n        if context is None:\n            context = getcontext()\n\n        resultsign = self._sign ^ other._sign\n\n        if self._is_special or other._is_special:\n            ans = self._check_nans(other, context)\n            if ans:\n                return ans\n\n            if self._isinfinity():\n                if not other:\n                    return context._raise_error(InvalidOperation, '(+-)INF * 0')\n                return _SignedInfinity[resultsign]\n\n            if other._isinfinity():\n                if not self:\n                    return context._raise_error(InvalidOperation, '0 * (+-)INF')\n                return _SignedInfinity[resultsign]\n\n        resultexp = self._exp + other._exp\n\n        # Special case for multiplying by zero\n        if not self or not other:\n            ans = _dec_from_triple(resultsign, '0', resultexp)\n            # Fixing in case the exponent is out of bounds\n            ans = ans._fix(context)\n            return ans\n\n        # Special case for multiplying by power of 10\n        if self._int == '1':\n            ans = _dec_from_triple(resultsign, other._int, resultexp)\n            ans = ans._fix(context)\n            return ans\n        if other._int == '1':\n            ans = _dec_from_triple(resultsign, self._int, resultexp)\n            ans = ans._fix(context)\n            return ans\n\n        op1 = _WorkRep(self)\n        op2 = _WorkRep(other)\n\n        ans = _dec_from_triple(resultsign, str(op1.int * op2.int), resultexp)\n        ans = ans._fix(context)\n\n        return ans\n    __rmul__ = __mul__\n\n    def __truediv__(self, other, context=None):\n        \"\"\"Return self / other.\"\"\"\n        other = _convert_other(other)\n        if other is NotImplemented:\n            return NotImplemented\n\n        if context is None:\n            context = getcontext()\n\n        sign = self._sign ^ other._sign\n\n        if self._is_special or other._is_special:\n            ans = self._check_nans(other, context)\n            if ans:\n                return ans\n\n            if self._isinfinity() and other._isinfinity():\n                return context._raise_error(InvalidOperation, '(+-)INF/(+-)INF')\n\n            if self._isinfinity():\n                return _SignedInfinity[sign]\n\n            if other._isinfinity():\n                context._raise_error(Clamped, 'Division by infinity')\n                return _dec_from_triple(sign, '0', context.Etiny())\n\n        # Special cases for zeroes\n        if not other:\n            if not self:\n                return context._raise_error(DivisionUndefined, '0 / 0')\n            return context._raise_error(DivisionByZero, 'x / 0', sign)\n\n        if not self:\n            exp = self._exp - other._exp\n            coeff = 0\n        else:\n            # OK, so neither = 0, INF or NaN\n            shift = len(other._int) - len(self._int) + context.prec + 1\n            exp = self._exp - other._exp - shift\n            op1 = _WorkRep(self)\n            op2 = _WorkRep(other)\n            if shift >= 0:\n                coeff, remainder = divmod(op1.int * 10**shift, op2.int)\n            else:\n                coeff, remainder = divmod(op1.int, op2.int * 10**-shift)\n            if remainder:\n                # result is not exact; adjust to ensure correct rounding\n                if coeff % 5 == 0:\n                    coeff += 1\n            else:\n                # result is exact; get as close to ideal exponent as possible\n                ideal_exp = self._exp - other._exp\n                while exp < ideal_exp and coeff % 10 == 0:\n                    coeff //= 10\n                    exp += 1\n\n        ans = _dec_from_triple(sign, str(coeff), exp)\n        return ans._fix(context)\n\n    def _divide(self, other, context):\n        \"\"\"Return (self // other, self % other), to context.prec precision.\n\n        Assumes that neither self nor other is a NaN, that self is not\n        infinite and that other is nonzero.\n        \"\"\"\n        sign = self._sign ^ other._sign\n        if other._isinfinity():\n            ideal_exp = self._exp\n        else:\n            ideal_exp = min(self._exp, other._exp)\n\n        expdiff = self.adjusted() - other.adjusted()\n        if not self or other._isinfinity() or expdiff <= -2:\n            return (_dec_from_triple(sign, '0', 0),\n                    self._rescale(ideal_exp, context.rounding))\n        if expdiff <= context.prec:\n            op1 = _WorkRep(self)\n            op2 = _WorkRep(other)\n            if op1.exp >= op2.exp:\n                op1.int *= 10**(op1.exp - op2.exp)\n            else:\n                op2.int *= 10**(op2.exp - op1.exp)\n            q, r = divmod(op1.int, op2.int)\n            if q < 10**context.prec:\n                return (_dec_from_triple(sign, str(q), 0),\n                        _dec_from_triple(self._sign, str(r), ideal_exp))\n\n        # Here the quotient is too large to be representable\n        ans = context._raise_error(DivisionImpossible,\n                                   'quotient too large in //, % or divmod')\n        return ans, ans\n\n    def __rtruediv__(self, other, context=None):\n        \"\"\"Swaps self/other and returns __truediv__.\"\"\"\n        other = _convert_other(other)\n        if other is NotImplemented:\n            return other\n        return other.__truediv__(self, context=context)\n\n    def __divmod__(self, other, context=None):\n        \"\"\"\n        Return (self // other, self % other)\n        \"\"\"\n        other = _convert_other(other)\n        if other is NotImplemented:\n            return other\n\n        if context is None:\n            context = getcontext()\n\n        ans = self._check_nans(other, context)\n        if ans:\n            return (ans, ans)\n\n        sign = self._sign ^ other._sign\n        if self._isinfinity():\n            if other._isinfinity():\n                ans = context._raise_error(InvalidOperation, 'divmod(INF, INF)')\n                return ans, ans\n            else:\n                return (_SignedInfinity[sign],\n                        context._raise_error(InvalidOperation, 'INF % x'))\n\n        if not other:\n            if not self:\n                ans = context._raise_error(DivisionUndefined, 'divmod(0, 0)')\n                return ans, ans\n            else:\n                return (context._raise_error(DivisionByZero, 'x // 0', sign),\n                        context._raise_error(InvalidOperation, 'x % 0'))\n\n        quotient, remainder = self._divide(other, context)\n        remainder = remainder._fix(context)\n        return quotient, remainder\n\n    def __rdivmod__(self, other, context=None):\n        \"\"\"Swaps self/other and returns __divmod__.\"\"\"\n        other = _convert_other(other)\n        if other is NotImplemented:\n            return other\n        return other.__divmod__(self, context=context)\n\n    def __mod__(self, other, context=None):\n        \"\"\"\n        self % other\n        \"\"\"\n        other = _convert_other(other)\n        if other is NotImplemented:\n            return other\n\n        if context is None:\n            context = getcontext()\n\n        ans = self._check_nans(other, context)\n        if ans:\n            return ans\n\n        if self._isinfinity():\n            return context._raise_error(InvalidOperation, 'INF % x')\n        elif not other:\n            if self:\n                return context._raise_error(InvalidOperation, 'x % 0')\n            else:\n                return context._raise_error(DivisionUndefined, '0 % 0')\n\n        remainder = self._divide(other, context)[1]\n        remainder = remainder._fix(context)\n        return remainder\n\n    def __rmod__(self, other, context=None):\n        \"\"\"Swaps self/other and returns __mod__.\"\"\"\n        other = _convert_other(other)\n        if other is NotImplemented:\n            return other\n        return other.__mod__(self, context=context)\n\n    def remainder_near(self, other, context=None):\n        \"\"\"\n        Remainder nearest to 0-  abs(remainder-near) <= other/2\n        \"\"\"\n        if context is None:\n            context = getcontext()\n\n        other = _convert_other(other, raiseit=True)\n\n        ans = self._check_nans(other, context)\n        if ans:\n            return ans\n\n        # self == +/-infinity -> InvalidOperation\n        if self._isinfinity():\n            return context._raise_error(InvalidOperation,\n                                        'remainder_near(infinity, x)')\n\n        # other == 0 -> either InvalidOperation or DivisionUndefined\n        if not other:\n            if self:\n                return context._raise_error(InvalidOperation,\n                                            'remainder_near(x, 0)')\n            else:\n                return context._raise_error(DivisionUndefined,\n                                            'remainder_near(0, 0)')\n\n        # other = +/-infinity -> remainder = self\n        if other._isinfinity():\n            ans = Decimal(self)\n            return ans._fix(context)\n\n        # self = 0 -> remainder = self, with ideal exponent\n        ideal_exponent = min(self._exp, other._exp)\n        if not self:\n            ans = _dec_from_triple(self._sign, '0', ideal_exponent)\n            return ans._fix(context)\n\n        # catch most cases of large or small quotient\n        expdiff = self.adjusted() - other.adjusted()\n        if expdiff >= context.prec + 1:\n            # expdiff >= prec+1 => abs(self/other) > 10**prec\n            return context._raise_error(DivisionImpossible)\n        if expdiff <= -2:\n            # expdiff <= -2 => abs(self/other) < 0.1\n            ans = self._rescale(ideal_exponent, context.rounding)\n            return ans._fix(context)\n\n        # adjust both arguments to have the same exponent, then divide\n        op1 = _WorkRep(self)\n        op2 = _WorkRep(other)\n        if op1.exp >= op2.exp:\n            op1.int *= 10**(op1.exp - op2.exp)\n        else:\n            op2.int *= 10**(op2.exp - op1.exp)\n        q, r = divmod(op1.int, op2.int)\n        # remainder is r*10**ideal_exponent; other is +/-op2.int *\n        # 10**ideal_exponent.   Apply correction to ensure that\n        # abs(remainder) <= abs(other)/2\n        if 2*r + (q&1) > op2.int:\n            r -= op2.int\n            q += 1\n\n        if q >= 10**context.prec:\n            return context._raise_error(DivisionImpossible)\n\n        # result has same sign as self unless r is negative\n        sign = self._sign\n        if r < 0:\n            sign = 1-sign\n            r = -r\n\n        ans = _dec_from_triple(sign, str(r), ideal_exponent)\n        return ans._fix(context)\n\n    def __floordiv__(self, other, context=None):\n        \"\"\"self // other\"\"\"\n        other = _convert_other(other)\n        if other is NotImplemented:\n            return other\n\n        if context is None:\n            context = getcontext()\n\n        ans = self._check_nans(other, context)\n        if ans:\n            return ans\n\n        if self._isinfinity():\n            if other._isinfinity():\n                return context._raise_error(InvalidOperation, 'INF // INF')\n            else:\n                return _SignedInfinity[self._sign ^ other._sign]\n\n        if not other:\n            if self:\n                return context._raise_error(DivisionByZero, 'x // 0',\n                                            self._sign ^ other._sign)\n            else:\n                return context._raise_error(DivisionUndefined, '0 // 0')\n\n        return self._divide(other, context)[0]\n\n    def __rfloordiv__(self, other, context=None):\n        \"\"\"Swaps self/other and returns __floordiv__.\"\"\"\n        other = _convert_other(other)\n        if other is NotImplemented:\n            return other\n        return other.__floordiv__(self, context=context)\n\n    def __float__(self):\n        \"\"\"Float representation.\"\"\"\n        if self._isnan():\n            if self.is_snan():\n                raise ValueError(\"Cannot convert signaling NaN to float\")\n            s = \"-nan\" if self._sign else \"nan\"\n        else:\n            s = str(self)\n        return float(s)\n\n    def __int__(self):\n        \"\"\"Converts self to an int, truncating if necessary.\"\"\"\n        if self._is_special:\n            if self._isnan():\n                raise ValueError(\"Cannot convert NaN to integer\")\n            elif self._isinfinity():\n                raise OverflowError(\"Cannot convert infinity to integer\")\n        s = (-1)**self._sign\n        if self._exp >= 0:\n            return s*int(self._int)*10**self._exp\n        else:\n            return s*int(self._int[:self._exp] or '0')\n\n    __trunc__ = __int__\n\n    @property\n    def real(self):\n        return self\n\n    @property\n    def imag(self):\n        return Decimal(0)\n\n    def conjugate(self):\n        return self\n\n    def __complex__(self):\n        return complex(float(self))\n\n    def _fix_nan(self, context):\n        \"\"\"Decapitate the payload of a NaN to fit the context\"\"\"\n        payload = self._int\n\n        # maximum length of payload is precision if clamp=0,\n        # precision-1 if clamp=1.\n        max_payload_len = context.prec - context.clamp\n        if len(payload) > max_payload_len:\n            payload = payload[len(payload)-max_payload_len:].lstrip('0')\n            return _dec_from_triple(self._sign, payload, self._exp, True)\n        return Decimal(self)\n\n    def _fix(self, context):\n        \"\"\"Round if it is necessary to keep self within prec precision.\n\n        Rounds and fixes the exponent.  Does not raise on a sNaN.\n\n        Arguments:\n        self - Decimal instance\n        context - context used.\n        \"\"\"\n\n        if self._is_special:\n            if self._isnan():\n                # decapitate payload if necessary\n                return self._fix_nan(context)\n            else:\n                # self is +/-Infinity; return unaltered\n                return Decimal(self)\n\n        # if self is zero then exponent should be between Etiny and\n        # Emax if clamp==0, and between Etiny and Etop if clamp==1.\n        Etiny = context.Etiny()\n        Etop = context.Etop()\n        if not self:\n            exp_max = [context.Emax, Etop][context.clamp]\n            new_exp = min(max(self._exp, Etiny), exp_max)\n            if new_exp != self._exp:\n                context._raise_error(Clamped)\n                return _dec_from_triple(self._sign, '0', new_exp)\n            else:\n                return Decimal(self)\n\n        # exp_min is the smallest allowable exponent of the result,\n        # equal to max(self.adjusted()-context.prec+1, Etiny)\n        exp_min = len(self._int) + self._exp - context.prec\n        if exp_min > Etop:\n            # overflow: exp_min > Etop iff self.adjusted() > Emax\n            ans = context._raise_error(Overflow, 'above Emax', self._sign)\n            context._raise_error(Inexact)\n            context._raise_error(Rounded)\n            return ans\n\n        self_is_subnormal = exp_min < Etiny\n        if self_is_subnormal:\n            exp_min = Etiny\n\n        # round if self has too many digits\n        if self._exp < exp_min:\n            digits = len(self._int) + self._exp - exp_min\n            if digits < 0:\n                self = _dec_from_triple(self._sign, '1', exp_min-1)\n                digits = 0\n            rounding_method = self._pick_rounding_function[context.rounding]\n            changed = rounding_method(self, digits)\n            coeff = self._int[:digits] or '0'\n            if changed > 0:\n                coeff = str(int(coeff)+1)\n                if len(coeff) > context.prec:\n                    coeff = coeff[:-1]\n                    exp_min += 1\n\n            # check whether the rounding pushed the exponent out of range\n            if exp_min > Etop:\n                ans = context._raise_error(Overflow, 'above Emax', self._sign)\n            else:\n                ans = _dec_from_triple(self._sign, coeff, exp_min)\n\n            # raise the appropriate signals, taking care to respect\n            # the precedence described in the specification\n            if changed and self_is_subnormal:\n                context._raise_error(Underflow)\n            if self_is_subnormal:\n                context._raise_error(Subnormal)\n            if changed:\n                context._raise_error(Inexact)\n            context._raise_error(Rounded)\n            if not ans:\n                # raise Clamped on underflow to 0\n                context._raise_error(Clamped)\n            return ans\n\n        if self_is_subnormal:\n            context._raise_error(Subnormal)\n\n        # fold down if clamp == 1 and self has too few digits\n        if context.clamp == 1 and self._exp > Etop:\n            context._raise_error(Clamped)\n            self_padded = self._int + '0'*(self._exp - Etop)\n            return _dec_from_triple(self._sign, self_padded, Etop)\n\n        # here self was representable to begin with; return unchanged\n        return Decimal(self)\n\n    # for each of the rounding functions below:\n    #   self is a finite, nonzero Decimal\n    #   prec is an integer satisfying 0 <= prec < len(self._int)\n    #\n    # each function returns either -1, 0, or 1, as follows:\n    #   1 indicates that self should be rounded up (away from zero)\n    #   0 indicates that self should be truncated, and that all the\n    #     digits to be truncated are zeros (so the value is unchanged)\n    #  -1 indicates that there are nonzero digits to be truncated\n\n    def _round_down(self, prec):\n        \"\"\"Also known as round-towards-0, truncate.\"\"\"\n        if _all_zeros(self._int, prec):\n            return 0\n        else:\n            return -1\n\n    def _round_up(self, prec):\n        \"\"\"Rounds away from 0.\"\"\"\n        return -self._round_down(prec)\n\n    def _round_half_up(self, prec):\n        \"\"\"Rounds 5 up (away from 0)\"\"\"\n        if self._int[prec] in '56789':\n            return 1\n        elif _all_zeros(self._int, prec):\n            return 0\n        else:\n            return -1\n\n    def _round_half_down(self, prec):\n        \"\"\"Round 5 down\"\"\"\n        if _exact_half(self._int, prec):\n            return -1\n        else:\n            return self._round_half_up(prec)\n\n    def _round_half_even(self, prec):\n        \"\"\"Round 5 to even, rest to nearest.\"\"\"\n        if _exact_half(self._int, prec) and \\\n                (prec == 0 or self._int[prec-1] in '02468'):\n            return -1\n        else:\n            return self._round_half_up(prec)\n\n    def _round_ceiling(self, prec):\n        \"\"\"Rounds up (not away from 0 if negative.)\"\"\"\n        if self._sign:\n            return self._round_down(prec)\n        else:\n            return -self._round_down(prec)\n\n    def _round_floor(self, prec):\n        \"\"\"Rounds down (not towards 0 if negative)\"\"\"\n        if not self._sign:\n            return self._round_down(prec)\n        else:\n            return -self._round_down(prec)\n\n    def _round_05up(self, prec):\n        \"\"\"Round down unless digit prec-1 is 0 or 5.\"\"\"\n        if prec and self._int[prec-1] not in '05':\n            return self._round_down(prec)\n        else:\n            return -self._round_down(prec)\n\n    _pick_rounding_function = dict(\n        ROUND_DOWN = _round_down,\n        ROUND_UP = _round_up,\n        ROUND_HALF_UP = _round_half_up,\n        ROUND_HALF_DOWN = _round_half_down,\n        ROUND_HALF_EVEN = _round_half_even,\n        ROUND_CEILING = _round_ceiling,\n        ROUND_FLOOR = _round_floor,\n        ROUND_05UP = _round_05up,\n    )\n\n    def __round__(self, n=None):\n        \"\"\"Round self to the nearest integer, or to a given precision.\n\n        If only one argument is supplied, round a finite Decimal\n        instance self to the nearest integer.  If self is infinite or\n        a NaN then a Python exception is raised.  If self is finite\n        and lies exactly halfway between two integers then it is\n        rounded to the integer with even last digit.\n\n        >>> round(Decimal('123.456'))\n        123\n        >>> round(Decimal('-456.789'))\n        -457\n        >>> round(Decimal('-3.0'))\n        -3\n        >>> round(Decimal('2.5'))\n        2\n        >>> round(Decimal('3.5'))\n        4\n        >>> round(Decimal('Inf'))\n        Traceback (most recent call last):\n          ...\n        OverflowError: cannot round an infinity\n        >>> round(Decimal('NaN'))\n        Traceback (most recent call last):\n          ...\n        ValueError: cannot round a NaN\n\n        If a second argument n is supplied, self is rounded to n\n        decimal places using the rounding mode for the current\n        context.\n\n        For an integer n, round(self, -n) is exactly equivalent to\n        self.quantize(Decimal('1En')).\n\n        >>> round(Decimal('123.456'), 0)\n        Decimal('123')\n        >>> round(Decimal('123.456'), 2)\n        Decimal('123.46')\n        >>> round(Decimal('123.456'), -2)\n        Decimal('1E+2')\n        >>> round(Decimal('-Infinity'), 37)\n        Decimal('NaN')\n        >>> round(Decimal('sNaN123'), 0)\n        Decimal('NaN123')\n\n        \"\"\"\n        if n is not None:\n            # two-argument form: use the equivalent quantize call\n            if not isinstance(n, int):\n                raise TypeError('Second argument to round should be integral')\n            exp = _dec_from_triple(0, '1', -n)\n            return self.quantize(exp)\n\n        # one-argument form\n        if self._is_special:\n            if self.is_nan():\n                raise ValueError(\"cannot round a NaN\")\n            else:\n                raise OverflowError(\"cannot round an infinity\")\n        return int(self._rescale(0, ROUND_HALF_EVEN))\n\n    def __floor__(self):\n        \"\"\"Return the floor of self, as an integer.\n\n        For a finite Decimal instance self, return the greatest\n        integer n such that n <= self.  If self is infinite or a NaN\n        then a Python exception is raised.\n\n        \"\"\"\n        if self._is_special:\n            if self.is_nan():\n                raise ValueError(\"cannot round a NaN\")\n            else:\n                raise OverflowError(\"cannot round an infinity\")\n        return int(self._rescale(0, ROUND_FLOOR))\n\n    def __ceil__(self):\n        \"\"\"Return the ceiling of self, as an integer.\n\n        For a finite Decimal instance self, return the least integer n\n        such that n >= self.  If self is infinite or a NaN then a\n        Python exception is raised.\n\n        \"\"\"\n        if self._is_special:\n            if self.is_nan():\n                raise ValueError(\"cannot round a NaN\")\n            else:\n                raise OverflowError(\"cannot round an infinity\")\n        return int(self._rescale(0, ROUND_CEILING))\n\n    def fma(self, other, third, context=None):\n        \"\"\"Fused multiply-add.\n\n        Returns self*other+third with no rounding of the intermediate\n        product self*other.\n\n        self and other are multiplied together, with no rounding of\n        the result.  The third operand is then added to the result,\n        and a single final rounding is performed.\n        \"\"\"\n\n        other = _convert_other(other, raiseit=True)\n        third = _convert_other(third, raiseit=True)\n\n        # compute product; raise InvalidOperation if either operand is\n        # a signaling NaN or if the product is zero times infinity.\n        if self._is_special or other._is_special:\n            if context is None:\n                context = getcontext()\n            if self._exp == 'N':\n                return context._raise_error(InvalidOperation, 'sNaN', self)\n            if other._exp == 'N':\n                return context._raise_error(InvalidOperation, 'sNaN', other)\n            if self._exp == 'n':\n                product = self\n            elif other._exp == 'n':\n                product = other\n            elif self._exp == 'F':\n                if not other:\n                    return context._raise_error(InvalidOperation,\n                                                'INF * 0 in fma')\n                product = _SignedInfinity[self._sign ^ other._sign]\n            elif other._exp == 'F':\n                if not self:\n                    return context._raise_error(InvalidOperation,\n                                                '0 * INF in fma')\n                product = _SignedInfinity[self._sign ^ other._sign]\n        else:\n            product = _dec_from_triple(self._sign ^ other._sign,\n                                       str(int(self._int) * int(other._int)),\n                                       self._exp + other._exp)\n\n        return product.__add__(third, context)\n\n    def _power_modulo(self, other, modulo, context=None):\n        \"\"\"Three argument version of __pow__\"\"\"\n\n        other = _convert_other(other)\n        if other is NotImplemented:\n            return other\n        modulo = _convert_other(modulo)\n        if modulo is NotImplemented:\n            return modulo\n\n        if context is None:\n            context = getcontext()\n\n        # deal with NaNs: if there are any sNaNs then first one wins,\n        # (i.e. behaviour for NaNs is identical to that of fma)\n        self_is_nan = self._isnan()\n        other_is_nan = other._isnan()\n        modulo_is_nan = modulo._isnan()\n        if self_is_nan or other_is_nan or modulo_is_nan:\n            if self_is_nan == 2:\n                return context._raise_error(InvalidOperation, 'sNaN',\n                                        self)\n            if other_is_nan == 2:\n                return context._raise_error(InvalidOperation, 'sNaN',\n                                        other)\n            if modulo_is_nan == 2:\n                return context._raise_error(InvalidOperation, 'sNaN',\n                                        modulo)\n            if self_is_nan:\n                return self._fix_nan(context)\n            if other_is_nan:\n                return other._fix_nan(context)\n            return modulo._fix_nan(context)\n\n        # check inputs: we apply same restrictions as Python's pow()\n        if not (self._isinteger() and\n                other._isinteger() and\n                modulo._isinteger()):\n            return context._raise_error(InvalidOperation,\n                                        'pow() 3rd argument not allowed '\n                                        'unless all arguments are integers')\n        if other < 0:\n            return context._raise_error(InvalidOperation,\n                                        'pow() 2nd argument cannot be '\n                                        'negative when 3rd argument specified')\n        if not modulo:\n            return context._raise_error(InvalidOperation,\n                                        'pow() 3rd argument cannot be 0')\n\n        # additional restriction for decimal: the modulus must be less\n        # than 10**prec in absolute value\n        if modulo.adjusted() >= context.prec:\n            return context._raise_error(InvalidOperation,\n                                        'insufficient precision: pow() 3rd '\n                                        'argument must not have more than '\n                                        'precision digits')\n\n        # define 0**0 == NaN, for consistency with two-argument pow\n        # (even though it hurts!)\n        if not other and not self:\n            return context._raise_error(InvalidOperation,\n                                        'at least one of pow() 1st argument '\n                                        'and 2nd argument must be nonzero; '\n                                        '0**0 is not defined')\n\n        # compute sign of result\n        if other._iseven():\n            sign = 0\n        else:\n            sign = self._sign\n\n        # convert modulo to a Python integer, and self and other to\n        # Decimal integers (i.e. force their exponents to be >= 0)\n        modulo = abs(int(modulo))\n        base = _WorkRep(self.to_integral_value())\n        exponent = _WorkRep(other.to_integral_value())\n\n        # compute result using integer pow()\n        base = (base.int % modulo * pow(10, base.exp, modulo)) % modulo\n        for i in range(exponent.exp):\n            base = pow(base, 10, modulo)\n        base = pow(base, exponent.int, modulo)\n\n        return _dec_from_triple(sign, str(base), 0)\n\n    def _power_exact(self, other, p):\n        \"\"\"Attempt to compute self**other exactly.\n\n        Given Decimals self and other and an integer p, attempt to\n        compute an exact result for the power self**other, with p\n        digits of precision.  Return None if self**other is not\n        exactly representable in p digits.\n\n        Assumes that elimination of special cases has already been\n        performed: self and other must both be nonspecial; self must\n        be positive and not numerically equal to 1; other must be\n        nonzero.  For efficiency, other._exp should not be too large,\n        so that 10**abs(other._exp) is a feasible calculation.\"\"\"\n\n        # In the comments below, we write x for the value of self and y for the\n        # value of other.  Write x = xc*10**xe and abs(y) = yc*10**ye, with xc\n        # and yc positive integers not divisible by 10.\n\n        # The main purpose of this method is to identify the *failure*\n        # of x**y to be exactly representable with as little effort as\n        # possible.  So we look for cheap and easy tests that\n        # eliminate the possibility of x**y being exact.  Only if all\n        # these tests are passed do we go on to actually compute x**y.\n\n        # Here's the main idea.  Express y as a rational number m/n, with m and\n        # n relatively prime and n>0.  Then for x**y to be exactly\n        # representable (at *any* precision), xc must be the nth power of a\n        # positive integer and xe must be divisible by n.  If y is negative\n        # then additionally xc must be a power of either 2 or 5, hence a power\n        # of 2**n or 5**n.\n        #\n        # There's a limit to how small |y| can be: if y=m/n as above\n        # then:\n        #\n        #  (1) if xc != 1 then for the result to be representable we\n        #      need xc**(1/n) >= 2, and hence also xc**|y| >= 2.  So\n        #      if |y| <= 1/nbits(xc) then xc < 2**nbits(xc) <=\n        #      2**(1/|y|), hence xc**|y| < 2 and the result is not\n        #      representable.\n        #\n        #  (2) if xe != 0, |xe|*(1/n) >= 1, so |xe|*|y| >= 1.  Hence if\n        #      |y| < 1/|xe| then the result is not representable.\n        #\n        # Note that since x is not equal to 1, at least one of (1) and\n        # (2) must apply.  Now |y| < 1/nbits(xc) iff |yc|*nbits(xc) <\n        # 10**-ye iff len(str(|yc|*nbits(xc)) <= -ye.\n        #\n        # There's also a limit to how large y can be, at least if it's\n        # positive: the normalized result will have coefficient xc**y,\n        # so if it's representable then xc**y < 10**p, and y <\n        # p/log10(xc).  Hence if y*log10(xc) >= p then the result is\n        # not exactly representable.\n\n        # if len(str(abs(yc*xe)) <= -ye then abs(yc*xe) < 10**-ye,\n        # so |y| < 1/xe and the result is not representable.\n        # Similarly, len(str(abs(yc)*xc_bits)) <= -ye implies |y|\n        # < 1/nbits(xc).\n\n        x = _WorkRep(self)\n        xc, xe = x.int, x.exp\n        while xc % 10 == 0:\n            xc //= 10\n            xe += 1\n\n        y = _WorkRep(other)\n        yc, ye = y.int, y.exp\n        while yc % 10 == 0:\n            yc //= 10\n            ye += 1\n\n        # case where xc == 1: result is 10**(xe*y), with xe*y\n        # required to be an integer\n        if xc == 1:\n            xe *= yc\n            # result is now 10**(xe * 10**ye);  xe * 10**ye must be integral\n            while xe % 10 == 0:\n                xe //= 10\n                ye += 1\n            if ye < 0:\n                return None\n            exponent = xe * 10**ye\n            if y.sign == 1:\n                exponent = -exponent\n            # if other is a nonnegative integer, use ideal exponent\n            if other._isinteger() and other._sign == 0:\n                ideal_exponent = self._exp*int(other)\n                zeros = min(exponent-ideal_exponent, p-1)\n            else:\n                zeros = 0\n            return _dec_from_triple(0, '1' + '0'*zeros, exponent-zeros)\n\n        # case where y is negative: xc must be either a power\n        # of 2 or a power of 5.\n        if y.sign == 1:\n            last_digit = xc % 10\n            if last_digit in (2,4,6,8):\n                # quick test for power of 2\n                if xc & -xc != xc:\n                    return None\n                # now xc is a power of 2; e is its exponent\n                e = _nbits(xc)-1\n\n                # We now have:\n                #\n                #   x = 2**e * 10**xe, e > 0, and y < 0.\n                #\n                # The exact result is:\n                #\n                #   x**y = 5**(-e*y) * 10**(e*y + xe*y)\n                #\n                # provided that both e*y and xe*y are integers.  Note that if\n                # 5**(-e*y) >= 10**p, then the result can't be expressed\n                # exactly with p digits of precision.\n                #\n                # Using the above, we can guard against large values of ye.\n                # 93/65 is an upper bound for log(10)/log(5), so if\n                #\n                #   ye >= len(str(93*p//65))\n                #\n                # then\n                #\n                #   -e*y >= -y >= 10**ye > 93*p/65 > p*log(10)/log(5),\n                #\n                # so 5**(-e*y) >= 10**p, and the coefficient of the result\n                # can't be expressed in p digits.\n\n                # emax >= largest e such that 5**e < 10**p.\n                emax = p*93//65\n                if ye >= len(str(emax)):\n                    return None\n\n                # Find -e*y and -xe*y; both must be integers\n                e = _decimal_lshift_exact(e * yc, ye)\n                xe = _decimal_lshift_exact(xe * yc, ye)\n                if e is None or xe is None:\n                    return None\n\n                if e > emax:\n                    return None\n                xc = 5**e\n\n            elif last_digit == 5:\n                # e >= log_5(xc) if xc is a power of 5; we have\n                # equality all the way up to xc=5**2658\n                e = _nbits(xc)*28//65\n                xc, remainder = divmod(5**e, xc)\n                if remainder:\n                    return None\n                while xc % 5 == 0:\n                    xc //= 5\n                    e -= 1\n\n                # Guard against large values of ye, using the same logic as in\n                # the 'xc is a power of 2' branch.  10/3 is an upper bound for\n                # log(10)/log(2).\n                emax = p*10//3\n                if ye >= len(str(emax)):\n                    return None\n\n                e = _decimal_lshift_exact(e * yc, ye)\n                xe = _decimal_lshift_exact(xe * yc, ye)\n                if e is None or xe is None:\n                    return None\n\n                if e > emax:\n                    return None\n                xc = 2**e\n            else:\n                return None\n\n            if xc >= 10**p:\n                return None\n            xe = -e-xe\n            return _dec_from_triple(0, str(xc), xe)\n\n        # now y is positive; find m and n such that y = m/n\n        if ye >= 0:\n            m, n = yc*10**ye, 1\n        else:\n            if xe != 0 and len(str(abs(yc*xe))) <= -ye:\n                return None\n            xc_bits = _nbits(xc)\n            if xc != 1 and len(str(abs(yc)*xc_bits)) <= -ye:\n                return None\n            m, n = yc, 10**(-ye)\n            while m % 2 == n % 2 == 0:\n                m //= 2\n                n //= 2\n            while m % 5 == n % 5 == 0:\n                m //= 5\n                n //= 5\n\n        # compute nth root of xc*10**xe\n        if n > 1:\n            # if 1 < xc < 2**n then xc isn't an nth power\n            if xc != 1 and xc_bits <= n:\n                return None\n\n            xe, rem = divmod(xe, n)\n            if rem != 0:\n                return None\n\n            # compute nth root of xc using Newton's method\n            a = 1 << -(-_nbits(xc)//n) # initial estimate\n            while True:\n                q, r = divmod(xc, a**(n-1))\n                if a <= q:\n                    break\n                else:\n                    a = (a*(n-1) + q)//n\n            if not (a == q and r == 0):\n                return None\n            xc = a\n\n        # now xc*10**xe is the nth root of the original xc*10**xe\n        # compute mth power of xc*10**xe\n\n        # if m > p*100//_log10_lb(xc) then m > p/log10(xc), hence xc**m >\n        # 10**p and the result is not representable.\n        if xc > 1 and m > p*100//_log10_lb(xc):\n            return None\n        xc = xc**m\n        xe *= m\n        if xc > 10**p:\n            return None\n\n        # by this point the result *is* exactly representable\n        # adjust the exponent to get as close as possible to the ideal\n        # exponent, if necessary\n        str_xc = str(xc)\n        if other._isinteger() and other._sign == 0:\n            ideal_exponent = self._exp*int(other)\n            zeros = min(xe-ideal_exponent, p-len(str_xc))\n        else:\n            zeros = 0\n        return _dec_from_triple(0, str_xc+'0'*zeros, xe-zeros)\n\n    def __pow__(self, other, modulo=None, context=None):\n        \"\"\"Return self ** other [ % modulo].\n\n        With two arguments, compute self**other.\n\n        With three arguments, compute (self**other) % modulo.  For the\n        three argument form, the following restrictions on the\n        arguments hold:\n\n         - all three arguments must be integral\n         - other must be nonnegative\n         - either self or other (or both) must be nonzero\n         - modulo must be nonzero and must have at most p digits,\n           where p is the context precision.\n\n        If any of these restrictions is violated the InvalidOperation\n        flag is raised.\n\n        The result of pow(self, other, modulo) is identical to the\n        result that would be obtained by computing (self**other) %\n        modulo with unbounded precision, but is computed more\n        efficiently.  It is always exact.\n        \"\"\"\n\n        if modulo is not None:\n            return self._power_modulo(other, modulo, context)\n\n        other = _convert_other(other)\n        if other is NotImplemented:\n            return other\n\n        if context is None:\n            context = getcontext()\n\n        # either argument is a NaN => result is NaN\n        ans = self._check_nans(other, context)\n        if ans:\n            return ans\n\n        # 0**0 = NaN (!), x**0 = 1 for nonzero x (including +/-Infinity)\n        if not other:\n            if not self:\n                return context._raise_error(InvalidOperation, '0 ** 0')\n            else:\n                return _One\n\n        # result has sign 1 iff self._sign is 1 and other is an odd integer\n        result_sign = 0\n        if self._sign == 1:\n            if other._isinteger():\n                if not other._iseven():\n                    result_sign = 1\n            else:\n                # -ve**noninteger = NaN\n                # (-0)**noninteger = 0**noninteger\n                if self:\n                    return context._raise_error(InvalidOperation,\n                        'x ** y with x negative and y not an integer')\n            # negate self, without doing any unwanted rounding\n            self = self.copy_negate()\n\n        # 0**(+ve or Inf)= 0; 0**(-ve or -Inf) = Infinity\n        if not self:\n            if other._sign == 0:\n                return _dec_from_triple(result_sign, '0', 0)\n            else:\n                return _SignedInfinity[result_sign]\n\n        # Inf**(+ve or Inf) = Inf; Inf**(-ve or -Inf) = 0\n        if self._isinfinity():\n            if other._sign == 0:\n                return _SignedInfinity[result_sign]\n            else:\n                return _dec_from_triple(result_sign, '0', 0)\n\n        # 1**other = 1, but the choice of exponent and the flags\n        # depend on the exponent of self, and on whether other is a\n        # positive integer, a negative integer, or neither\n        if self == _One:\n            if other._isinteger():\n                # exp = max(self._exp*max(int(other), 0),\n                # 1-context.prec) but evaluating int(other) directly\n                # is dangerous until we know other is small (other\n                # could be 1e999999999)\n                if other._sign == 1:\n                    multiplier = 0\n                elif other > context.prec:\n                    multiplier = context.prec\n                else:\n                    multiplier = int(other)\n\n                exp = self._exp * multiplier\n                if exp < 1-context.prec:\n                    exp = 1-context.prec\n                    context._raise_error(Rounded)\n            else:\n                context._raise_error(Inexact)\n                context._raise_error(Rounded)\n                exp = 1-context.prec\n\n            return _dec_from_triple(result_sign, '1'+'0'*-exp, exp)\n\n        # compute adjusted exponent of self\n        self_adj = self.adjusted()\n\n        # self ** infinity is infinity if self > 1, 0 if self < 1\n        # self ** -infinity is infinity if self < 1, 0 if self > 1\n        if other._isinfinity():\n            if (other._sign == 0) == (self_adj < 0):\n                return _dec_from_triple(result_sign, '0', 0)\n            else:\n                return _SignedInfinity[result_sign]\n\n        # from here on, the result always goes through the call\n        # to _fix at the end of this function.\n        ans = None\n        exact = False\n\n        # crude test to catch cases of extreme overflow/underflow.  If\n        # log10(self)*other >= 10**bound and bound >= len(str(Emax))\n        # then 10**bound >= 10**len(str(Emax)) >= Emax+1 and hence\n        # self**other >= 10**(Emax+1), so overflow occurs.  The test\n        # for underflow is similar.\n        bound = self._log10_exp_bound() + other.adjusted()\n        if (self_adj >= 0) == (other._sign == 0):\n            # self > 1 and other +ve, or self < 1 and other -ve\n            # possibility of overflow\n            if bound >= len(str(context.Emax)):\n                ans = _dec_from_triple(result_sign, '1', context.Emax+1)\n        else:\n            # self > 1 and other -ve, or self < 1 and other +ve\n            # possibility of underflow to 0\n            Etiny = context.Etiny()\n            if bound >= len(str(-Etiny)):\n                ans = _dec_from_triple(result_sign, '1', Etiny-1)\n\n        # try for an exact result with precision +1\n        if ans is None:\n            ans = self._power_exact(other, context.prec + 1)\n            if ans is not None:\n                if result_sign == 1:\n                    ans = _dec_from_triple(1, ans._int, ans._exp)\n                exact = True\n\n        # usual case: inexact result, x**y computed directly as exp(y*log(x))\n        if ans is None:\n            p = context.prec\n            x = _WorkRep(self)\n            xc, xe = x.int, x.exp\n            y = _WorkRep(other)\n            yc, ye = y.int, y.exp\n            if y.sign == 1:\n                yc = -yc\n\n            # compute correctly rounded result:  start with precision +3,\n            # then increase precision until result is unambiguously roundable\n            extra = 3\n            while True:\n                coeff, exp = _dpower(xc, xe, yc, ye, p+extra)\n                if coeff % (5*10**(len(str(coeff))-p-1)):\n                    break\n                extra += 3\n\n            ans = _dec_from_triple(result_sign, str(coeff), exp)\n\n        # unlike exp, ln and log10, the power function respects the\n        # rounding mode; no need to switch to ROUND_HALF_EVEN here\n\n        # There's a difficulty here when 'other' is not an integer and\n        # the result is exact.  In this case, the specification\n        # requires that the Inexact flag be raised (in spite of\n        # exactness), but since the result is exact _fix won't do this\n        # for us.  (Correspondingly, the Underflow signal should also\n        # be raised for subnormal results.)  We can't directly raise\n        # these signals either before or after calling _fix, since\n        # that would violate the precedence for signals.  So we wrap\n        # the ._fix call in a temporary context, and reraise\n        # afterwards.\n        if exact and not other._isinteger():\n            # pad with zeros up to length context.prec+1 if necessary; this\n            # ensures that the Rounded signal will be raised.\n            if len(ans._int) <= context.prec:\n                expdiff = context.prec + 1 - len(ans._int)\n                ans = _dec_from_triple(ans._sign, ans._int+'0'*expdiff,\n                                       ans._exp-expdiff)\n\n            # create a copy of the current context, with cleared flags/traps\n            newcontext = context.copy()\n            newcontext.clear_flags()\n            for exception in _signals:\n                newcontext.traps[exception] = 0\n\n            # round in the new context\n            ans = ans._fix(newcontext)\n\n            # raise Inexact, and if necessary, Underflow\n            newcontext._raise_error(Inexact)\n            if newcontext.flags[Subnormal]:\n                newcontext._raise_error(Underflow)\n\n            # propagate signals to the original context; _fix could\n            # have raised any of Overflow, Underflow, Subnormal,\n            # Inexact, Rounded, Clamped.  Overflow needs the correct\n            # arguments.  Note that the order of the exceptions is\n            # important here.\n            if newcontext.flags[Overflow]:\n                context._raise_error(Overflow, 'above Emax', ans._sign)\n            for exception in Underflow, Subnormal, Inexact, Rounded, Clamped:\n                if newcontext.flags[exception]:\n                    context._raise_error(exception)\n\n        else:\n            ans = ans._fix(context)\n\n        return ans\n\n    def __rpow__(self, other, context=None):\n        \"\"\"Swaps self/other and returns __pow__.\"\"\"\n        other = _convert_other(other)\n        if other is NotImplemented:\n            return other\n        return other.__pow__(self, context=context)\n\n    def normalize(self, context=None):\n        \"\"\"Normalize- strip trailing 0s, change anything equal to 0 to 0e0\"\"\"\n\n        if context is None:\n            context = getcontext()\n\n        if self._is_special:\n            ans = self._check_nans(context=context)\n            if ans:\n                return ans\n\n        dup = self._fix(context)\n        if dup._isinfinity():\n            return dup\n\n        if not dup:\n            return _dec_from_triple(dup._sign, '0', 0)\n        exp_max = [context.Emax, context.Etop()][context.clamp]\n        end = len(dup._int)\n        exp = dup._exp\n        while dup._int[end-1] == '0' and exp < exp_max:\n            exp += 1\n            end -= 1\n        return _dec_from_triple(dup._sign, dup._int[:end], exp)\n\n    def quantize(self, exp, rounding=None, context=None):\n        \"\"\"Quantize self so its exponent is the same as that of exp.\n\n        Similar to self._rescale(exp._exp) but with error checking.\n        \"\"\"\n        exp = _convert_other(exp, raiseit=True)\n\n        if context is None:\n            context = getcontext()\n        if rounding is None:\n            rounding = context.rounding\n\n        if self._is_special or exp._is_special:\n            ans = self._check_nans(exp, context)\n            if ans:\n                return ans\n\n            if exp._isinfinity() or self._isinfinity():\n                if exp._isinfinity() and self._isinfinity():\n                    return Decimal(self)  # if both are inf, it is OK\n                return context._raise_error(InvalidOperation,\n                                        'quantize with one INF')\n\n        # exp._exp should be between Etiny and Emax\n        if not (context.Etiny() <= exp._exp <= context.Emax):\n            return context._raise_error(InvalidOperation,\n                   'target exponent out of bounds in quantize')\n\n        if not self:\n            ans = _dec_from_triple(self._sign, '0', exp._exp)\n            return ans._fix(context)\n\n        self_adjusted = self.adjusted()\n        if self_adjusted > context.Emax:\n            return context._raise_error(InvalidOperation,\n                                        'exponent of quantize result too large for current context')\n        if self_adjusted - exp._exp + 1 > context.prec:\n            return context._raise_error(InvalidOperation,\n                                        'quantize result has too many digits for current context')\n\n        ans = self._rescale(exp._exp, rounding)\n        if ans.adjusted() > context.Emax:\n            return context._raise_error(InvalidOperation,\n                                        'exponent of quantize result too large for current context')\n        if len(ans._int) > context.prec:\n            return context._raise_error(InvalidOperation,\n                                        'quantize result has too many digits for current context')\n\n        # raise appropriate flags\n        if ans and ans.adjusted() < context.Emin:\n            context._raise_error(Subnormal)\n        if ans._exp > self._exp:\n            if ans != self:\n                context._raise_error(Inexact)\n            context._raise_error(Rounded)\n\n        # call to fix takes care of any necessary folddown, and\n        # signals Clamped if necessary\n        ans = ans._fix(context)\n        return ans\n\n    def same_quantum(self, other, context=None):\n        \"\"\"Return True if self and other have the same exponent; otherwise\n        return False.\n\n        If either operand is a special value, the following rules are used:\n           * return True if both operands are infinities\n           * return True if both operands are NaNs\n           * otherwise, return False.\n        \"\"\"\n        other = _convert_other(other, raiseit=True)\n        if self._is_special or other._is_special:\n            return (self.is_nan() and other.is_nan() or\n                    self.is_infinite() and other.is_infinite())\n        return self._exp == other._exp\n\n    def _rescale(self, exp, rounding):\n        \"\"\"Rescale self so that the exponent is exp, either by padding with zeros\n        or by truncating digits, using the given rounding mode.\n\n        Specials are returned without change.  This operation is\n        quiet: it raises no flags, and uses no information from the\n        context.\n\n        exp = exp to scale to (an integer)\n        rounding = rounding mode\n        \"\"\"\n        if self._is_special:\n            return Decimal(self)\n        if not self:\n            return _dec_from_triple(self._sign, '0', exp)\n\n        if self._exp >= exp:\n            # pad answer with zeros if necessary\n            return _dec_from_triple(self._sign,\n                                        self._int + '0'*(self._exp - exp), exp)\n\n        # too many digits; round and lose data.  If self.adjusted() <\n        # exp-1, replace self by 10**(exp-1) before rounding\n        digits = len(self._int) + self._exp - exp\n        if digits < 0:\n            self = _dec_from_triple(self._sign, '1', exp-1)\n            digits = 0\n        this_function = self._pick_rounding_function[rounding]\n        changed = this_function(self, digits)\n        coeff = self._int[:digits] or '0'\n        if changed == 1:\n            coeff = str(int(coeff)+1)\n        return _dec_from_triple(self._sign, coeff, exp)\n\n    def _round(self, places, rounding):\n        \"\"\"Round a nonzero, nonspecial Decimal to a fixed number of\n        significant figures, using the given rounding mode.\n\n        Infinities, NaNs and zeros are returned unaltered.\n\n        This operation is quiet: it raises no flags, and uses no\n        information from the context.\n\n        \"\"\"\n        if places <= 0:\n            raise ValueError(\"argument should be at least 1 in _round\")\n        if self._is_special or not self:\n            return Decimal(self)\n        ans = self._rescale(self.adjusted()+1-places, rounding)\n        # it can happen that the rescale alters the adjusted exponent;\n        # for example when rounding 99.97 to 3 significant figures.\n        # When this happens we end up with an extra 0 at the end of\n        # the number; a second rescale fixes this.\n        if ans.adjusted() != self.adjusted():\n            ans = ans._rescale(ans.adjusted()+1-places, rounding)\n        return ans\n\n    def to_integral_exact(self, rounding=None, context=None):\n        \"\"\"Rounds to a nearby integer.\n\n        If no rounding mode is specified, take the rounding mode from\n        the context.  This method raises the Rounded and Inexact flags\n        when appropriate.\n\n        See also: to_integral_value, which does exactly the same as\n        this method except that it doesn't raise Inexact or Rounded.\n        \"\"\"\n        if self._is_special:\n            ans = self._check_nans(context=context)\n            if ans:\n                return ans\n            return Decimal(self)\n        if self._exp >= 0:\n            return Decimal(self)\n        if not self:\n            return _dec_from_triple(self._sign, '0', 0)\n        if context is None:\n            context = getcontext()\n        if rounding is None:\n            rounding = context.rounding\n        ans = self._rescale(0, rounding)\n        if ans != self:\n            context._raise_error(Inexact)\n        context._raise_error(Rounded)\n        return ans\n\n    def to_integral_value(self, rounding=None, context=None):\n        \"\"\"Rounds to the nearest integer, without raising inexact, rounded.\"\"\"\n        if context is None:\n            context = getcontext()\n        if rounding is None:\n            rounding = context.rounding\n        if self._is_special:\n            ans = self._check_nans(context=context)\n            if ans:\n                return ans\n            return Decimal(self)\n        if self._exp >= 0:\n            return Decimal(self)\n        else:\n            return self._rescale(0, rounding)\n\n    # the method name changed, but we provide also the old one, for compatibility\n    to_integral = to_integral_value\n\n    def sqrt(self, context=None):\n        \"\"\"Return the square root of self.\"\"\"\n        if context is None:\n            context = getcontext()\n\n        if self._is_special:\n            ans = self._check_nans(context=context)\n            if ans:\n                return ans\n\n            if self._isinfinity() and self._sign == 0:\n                return Decimal(self)\n\n        if not self:\n            # exponent = self._exp // 2.  sqrt(-0) = -0\n            ans = _dec_from_triple(self._sign, '0', self._exp // 2)\n            return ans._fix(context)\n\n        if self._sign == 1:\n            return context._raise_error(InvalidOperation, 'sqrt(-x), x > 0')\n\n        # At this point self represents a positive number.  Let p be\n        # the desired precision and express self in the form c*100**e\n        # with c a positive real number and e an integer, c and e\n        # being chosen so that 100**(p-1) <= c < 100**p.  Then the\n        # (exact) square root of self is sqrt(c)*10**e, and 10**(p-1)\n        # <= sqrt(c) < 10**p, so the closest representable Decimal at\n        # precision p is n*10**e where n = round_half_even(sqrt(c)),\n        # the closest integer to sqrt(c) with the even integer chosen\n        # in the case of a tie.\n        #\n        # To ensure correct rounding in all cases, we use the\n        # following trick: we compute the square root to an extra\n        # place (precision p+1 instead of precision p), rounding down.\n        # Then, if the result is inexact and its last digit is 0 or 5,\n        # we increase the last digit to 1 or 6 respectively; if it's\n        # exact we leave the last digit alone.  Now the final round to\n        # p places (or fewer in the case of underflow) will round\n        # correctly and raise the appropriate flags.\n\n        # use an extra digit of precision\n        prec = context.prec+1\n\n        # write argument in the form c*100**e where e = self._exp//2\n        # is the 'ideal' exponent, to be used if the square root is\n        # exactly representable.  l is the number of 'digits' of c in\n        # base 100, so that 100**(l-1) <= c < 100**l.\n        op = _WorkRep(self)\n        e = op.exp >> 1\n        if op.exp & 1:\n            c = op.int * 10\n            l = (len(self._int) >> 1) + 1\n        else:\n            c = op.int\n            l = len(self._int)+1 >> 1\n\n        # rescale so that c has exactly prec base 100 'digits'\n        shift = prec-l\n        if shift >= 0:\n            c *= 100**shift\n            exact = True\n        else:\n            c, remainder = divmod(c, 100**-shift)\n            exact = not remainder\n        e -= shift\n\n        # find n = floor(sqrt(c)) using Newton's method\n        n = 10**prec\n        while True:\n            q = c//n\n            if n <= q:\n                break\n            else:\n                n = n + q >> 1\n        exact = exact and n*n == c\n\n        if exact:\n            # result is exact; rescale to use ideal exponent e\n            if shift >= 0:\n                # assert n % 10**shift == 0\n                n //= 10**shift\n            else:\n                n *= 10**-shift\n            e += shift\n        else:\n            # result is not exact; fix last digit as described above\n            if n % 5 == 0:\n                n += 1\n\n        ans = _dec_from_triple(0, str(n), e)\n\n        # round, and fit to current context\n        context = context._shallow_copy()\n        rounding = context._set_rounding(ROUND_HALF_EVEN)\n        ans = ans._fix(context)\n        context.rounding = rounding\n\n        return ans\n\n    def max(self, other, context=None):\n        \"\"\"Returns the larger value.\n\n        Like max(self, other) except if one is not a number, returns\n        NaN (and signals if one is sNaN).  Also rounds.\n        \"\"\"\n        other = _convert_other(other, raiseit=True)\n\n        if context is None:\n            context = getcontext()\n\n        if self._is_special or other._is_special:\n            # If one operand is a quiet NaN and the other is number, then the\n            # number is always returned\n            sn = self._isnan()\n            on = other._isnan()\n            if sn or on:\n                if on == 1 and sn == 0:\n                    return self._fix(context)\n                if sn == 1 and on == 0:\n                    return other._fix(context)\n                return self._check_nans(other, context)\n\n        c = self._cmp(other)\n        if c == 0:\n            # If both operands are finite and equal in numerical value\n            # then an ordering is applied:\n            #\n            # If the signs differ then max returns the operand with the\n            # positive sign and min returns the operand with the negative sign\n            #\n            # If the signs are the same then the exponent is used to select\n            # the result.  This is exactly the ordering used in compare_total.\n            c = self.compare_total(other)\n\n        if c == -1:\n            ans = other\n        else:\n            ans = self\n\n        return ans._fix(context)\n\n    def min(self, other, context=None):\n        \"\"\"Returns the smaller value.\n\n        Like min(self, other) except if one is not a number, returns\n        NaN (and signals if one is sNaN).  Also rounds.\n        \"\"\"\n        other = _convert_other(other, raiseit=True)\n\n        if context is None:\n            context = getcontext()\n\n        if self._is_special or other._is_special:\n            # If one operand is a quiet NaN and the other is number, then the\n            # number is always returned\n            sn = self._isnan()\n            on = other._isnan()\n            if sn or on:\n                if on == 1 and sn == 0:\n                    return self._fix(context)\n                if sn == 1 and on == 0:\n                    return other._fix(context)\n                return self._check_nans(other, context)\n\n        c = self._cmp(other)\n        if c == 0:\n            c = self.compare_total(other)\n\n        if c == -1:\n            ans = self\n        else:\n            ans = other\n\n        return ans._fix(context)\n\n    def _isinteger(self):\n        \"\"\"Returns whether self is an integer\"\"\"\n        if self._is_special:\n            return False\n        if self._exp >= 0:\n            return True\n        rest = self._int[self._exp:]\n        return rest == '0'*len(rest)\n\n    def _iseven(self):\n        \"\"\"Returns True if self is even.  Assumes self is an integer.\"\"\"\n        if not self or self._exp > 0:\n            return True\n        return self._int[-1+self._exp] in '02468'\n\n    def adjusted(self):\n        \"\"\"Return the adjusted exponent of self\"\"\"\n        try:\n            return self._exp + len(self._int) - 1\n        # If NaN or Infinity, self._exp is string\n        except TypeError:\n            return 0\n\n    def canonical(self):\n        \"\"\"Returns the same Decimal object.\n\n        As we do not have different encodings for the same number, the\n        received object already is in its canonical form.\n        \"\"\"\n        return self\n\n    def compare_signal(self, other, context=None):\n        \"\"\"Compares self to the other operand numerically.\n\n        It's pretty much like compare(), but all NaNs signal, with signaling\n        NaNs taking precedence over quiet NaNs.\n        \"\"\"\n        other = _convert_other(other, raiseit = True)\n        ans = self._compare_check_nans(other, context)\n        if ans:\n            return ans\n        return self.compare(other, context=context)\n\n    def compare_total(self, other, context=None):\n        \"\"\"Compares self to other using the abstract representations.\n\n        This is not like the standard compare, which use their numerical\n        value. Note that a total ordering is defined for all possible abstract\n        representations.\n        \"\"\"\n        other = _convert_other(other, raiseit=True)\n\n        # if one is negative and the other is positive, it's easy\n        if self._sign and not other._sign:\n            return _NegativeOne\n        if not self._sign and other._sign:\n            return _One\n        sign = self._sign\n\n        # let's handle both NaN types\n        self_nan = self._isnan()\n        other_nan = other._isnan()\n        if self_nan or other_nan:\n            if self_nan == other_nan:\n                # compare payloads as though they're integers\n                self_key = len(self._int), self._int\n                other_key = len(other._int), other._int\n                if self_key < other_key:\n                    if sign:\n                        return _One\n                    else:\n                        return _NegativeOne\n                if self_key > other_key:\n                    if sign:\n                        return _NegativeOne\n                    else:\n                        return _One\n                return _Zero\n\n            if sign:\n                if self_nan == 1:\n                    return _NegativeOne\n                if other_nan == 1:\n                    return _One\n                if self_nan == 2:\n                    return _NegativeOne\n                if other_nan == 2:\n                    return _One\n            else:\n                if self_nan == 1:\n                    return _One\n                if other_nan == 1:\n                    return _NegativeOne\n                if self_nan == 2:\n                    return _One\n                if other_nan == 2:\n                    return _NegativeOne\n\n        if self < other:\n            return _NegativeOne\n        if self > other:\n            return _One\n\n        if self._exp < other._exp:\n            if sign:\n                return _One\n            else:\n                return _NegativeOne\n        if self._exp > other._exp:\n            if sign:\n                return _NegativeOne\n            else:\n                return _One\n        return _Zero\n\n\n    def compare_total_mag(self, other, context=None):\n        \"\"\"Compares self to other using abstract repr., ignoring sign.\n\n        Like compare_total, but with operand's sign ignored and assumed to be 0.\n        \"\"\"\n        other = _convert_other(other, raiseit=True)\n\n        s = self.copy_abs()\n        o = other.copy_abs()\n        return s.compare_total(o)\n\n    def copy_abs(self):\n        \"\"\"Returns a copy with the sign set to 0. \"\"\"\n        return _dec_from_triple(0, self._int, self._exp, self._is_special)\n\n    def copy_negate(self):\n        \"\"\"Returns a copy with the sign inverted.\"\"\"\n        if self._sign:\n            return _dec_from_triple(0, self._int, self._exp, self._is_special)\n        else:\n            return _dec_from_triple(1, self._int, self._exp, self._is_special)\n\n    def copy_sign(self, other, context=None):\n        \"\"\"Returns self with the sign of other.\"\"\"\n        other = _convert_other(other, raiseit=True)\n        return _dec_from_triple(other._sign, self._int,\n                                self._exp, self._is_special)\n\n    def exp(self, context=None):\n        \"\"\"Returns e ** self.\"\"\"\n\n        if context is None:\n            context = getcontext()\n\n        # exp(NaN) = NaN\n        ans = self._check_nans(context=context)\n        if ans:\n            return ans\n\n        # exp(-Infinity) = 0\n        if self._isinfinity() == -1:\n            return _Zero\n\n        # exp(0) = 1\n        if not self:\n            return _One\n\n        # exp(Infinity) = Infinity\n        if self._isinfinity() == 1:\n            return Decimal(self)\n\n        # the result is now guaranteed to be inexact (the true\n        # mathematical result is transcendental). There's no need to\n        # raise Rounded and Inexact here---they'll always be raised as\n        # a result of the call to _fix.\n        p = context.prec\n        adj = self.adjusted()\n\n        # we only need to do any computation for quite a small range\n        # of adjusted exponents---for example, -29 <= adj <= 10 for\n        # the default context.  For smaller exponent the result is\n        # indistinguishable from 1 at the given precision, while for\n        # larger exponent the result either overflows or underflows.\n        if self._sign == 0 and adj > len(str((context.Emax+1)*3)):\n            # overflow\n            ans = _dec_from_triple(0, '1', context.Emax+1)\n        elif self._sign == 1 and adj > len(str((-context.Etiny()+1)*3)):\n            # underflow to 0\n            ans = _dec_from_triple(0, '1', context.Etiny()-1)\n        elif self._sign == 0 and adj < -p:\n            # p+1 digits; final round will raise correct flags\n            ans = _dec_from_triple(0, '1' + '0'*(p-1) + '1', -p)\n        elif self._sign == 1 and adj < -p-1:\n            # p+1 digits; final round will raise correct flags\n            ans = _dec_from_triple(0, '9'*(p+1), -p-1)\n        # general case\n        else:\n            op = _WorkRep(self)\n            c, e = op.int, op.exp\n            if op.sign == 1:\n                c = -c\n\n            # compute correctly rounded result: increase precision by\n            # 3 digits at a time until we get an unambiguously\n            # roundable result\n            extra = 3\n            while True:\n                coeff, exp = _dexp(c, e, p+extra)\n                if coeff % (5*10**(len(str(coeff))-p-1)):\n                    break\n                extra += 3\n\n            ans = _dec_from_triple(0, str(coeff), exp)\n\n        # at this stage, ans should round correctly with *any*\n        # rounding mode, not just with ROUND_HALF_EVEN\n        context = context._shallow_copy()\n        rounding = context._set_rounding(ROUND_HALF_EVEN)\n        ans = ans._fix(context)\n        context.rounding = rounding\n\n        return ans\n\n    def is_canonical(self):\n        \"\"\"Return True if self is canonical; otherwise return False.\n\n        Currently, the encoding of a Decimal instance is always\n        canonical, so this method returns True for any Decimal.\n        \"\"\"\n        return True\n\n    def is_finite(self):\n        \"\"\"Return True if self is finite; otherwise return False.\n\n        A Decimal instance is considered finite if it is neither\n        infinite nor a NaN.\n        \"\"\"\n        return not self._is_special\n\n    def is_infinite(self):\n        \"\"\"Return True if self is infinite; otherwise return False.\"\"\"\n        return self._exp == 'F'\n\n    def is_nan(self):\n        \"\"\"Return True if self is a qNaN or sNaN; otherwise return False.\"\"\"\n        return self._exp in ('n', 'N')\n\n    def is_normal(self, context=None):\n        \"\"\"Return True if self is a normal number; otherwise return False.\"\"\"\n        if self._is_special or not self:\n            return False\n        if context is None:\n            context = getcontext()\n        return context.Emin <= self.adjusted()\n\n    def is_qnan(self):\n        \"\"\"Return True if self is a quiet NaN; otherwise return False.\"\"\"\n        return self._exp == 'n'\n\n    def is_signed(self):\n        \"\"\"Return True if self is negative; otherwise return False.\"\"\"\n        return self._sign == 1\n\n    def is_snan(self):\n        \"\"\"Return True if self is a signaling NaN; otherwise return False.\"\"\"\n        return self._exp == 'N'\n\n    def is_subnormal(self, context=None):\n        \"\"\"Return True if self is subnormal; otherwise return False.\"\"\"\n        if self._is_special or not self:\n            return False\n        if context is None:\n            context = getcontext()\n        return self.adjusted() < context.Emin\n\n    def is_zero(self):\n        \"\"\"Return True if self is a zero; otherwise return False.\"\"\"\n        return not self._is_special and self._int == '0'\n\n    def _ln_exp_bound(self):\n        \"\"\"Compute a lower bound for the adjusted exponent of self.ln().\n        In other words, compute r such that self.ln() >= 10**r.  Assumes\n        that self is finite and positive and that self != 1.\n        \"\"\"\n\n        # for 0.1 <= x <= 10 we use the inequalities 1-1/x <= ln(x) <= x-1\n        adj = self._exp + len(self._int) - 1\n        if adj >= 1:\n            # argument >= 10; we use 23/10 = 2.3 as a lower bound for ln(10)\n            return len(str(adj*23//10)) - 1\n        if adj <= -2:\n            # argument <= 0.1\n            return len(str((-1-adj)*23//10)) - 1\n        op = _WorkRep(self)\n        c, e = op.int, op.exp\n        if adj == 0:\n            # 1 < self < 10\n            num = str(c-10**-e)\n            den = str(c)\n            return len(num) - len(den) - (num < den)\n        # adj == -1, 0.1 <= self < 1\n        return e + len(str(10**-e - c)) - 1\n\n\n    def ln(self, context=None):\n        \"\"\"Returns the natural (base e) logarithm of self.\"\"\"\n\n        if context is None:\n            context = getcontext()\n\n        # ln(NaN) = NaN\n        ans = self._check_nans(context=context)\n        if ans:\n            return ans\n\n        # ln(0.0) == -Infinity\n        if not self:\n            return _NegativeInfinity\n\n        # ln(Infinity) = Infinity\n        if self._isinfinity() == 1:\n            return _Infinity\n\n        # ln(1.0) == 0.0\n        if self == _One:\n            return _Zero\n\n        # ln(negative) raises InvalidOperation\n        if self._sign == 1:\n            return context._raise_error(InvalidOperation,\n                                        'ln of a negative value')\n\n        # result is irrational, so necessarily inexact\n        op = _WorkRep(self)\n        c, e = op.int, op.exp\n        p = context.prec\n\n        # correctly rounded result: repeatedly increase precision by 3\n        # until we get an unambiguously roundable result\n        places = p - self._ln_exp_bound() + 2 # at least p+3 places\n        while True:\n            coeff = _dlog(c, e, places)\n            # assert len(str(abs(coeff)))-p >= 1\n            if coeff % (5*10**(len(str(abs(coeff)))-p-1)):\n                break\n            places += 3\n        ans = _dec_from_triple(int(coeff<0), str(abs(coeff)), -places)\n\n        context = context._shallow_copy()\n        rounding = context._set_rounding(ROUND_HALF_EVEN)\n        ans = ans._fix(context)\n        context.rounding = rounding\n        return ans\n\n    def _log10_exp_bound(self):\n        \"\"\"Compute a lower bound for the adjusted exponent of self.log10().\n        In other words, find r such that self.log10() >= 10**r.\n        Assumes that self is finite and positive and that self != 1.\n        \"\"\"\n\n        # For x >= 10 or x < 0.1 we only need a bound on the integer\n        # part of log10(self), and this comes directly from the\n        # exponent of x.  For 0.1 <= x <= 10 we use the inequalities\n        # 1-1/x <= log(x) <= x-1. If x > 1 we have |log10(x)| >\n        # (1-1/x)/2.31 > 0.  If x < 1 then |log10(x)| > (1-x)/2.31 > 0\n\n        adj = self._exp + len(self._int) - 1\n        if adj >= 1:\n            # self >= 10\n            return len(str(adj))-1\n        if adj <= -2:\n            # self < 0.1\n            return len(str(-1-adj))-1\n        op = _WorkRep(self)\n        c, e = op.int, op.exp\n        if adj == 0:\n            # 1 < self < 10\n            num = str(c-10**-e)\n            den = str(231*c)\n            return len(num) - len(den) - (num < den) + 2\n        # adj == -1, 0.1 <= self < 1\n        num = str(10**-e-c)\n        return len(num) + e - (num < \"231\") - 1\n\n    def log10(self, context=None):\n        \"\"\"Returns the base 10 logarithm of self.\"\"\"\n\n        if context is None:\n            context = getcontext()\n\n        # log10(NaN) = NaN\n        ans = self._check_nans(context=context)\n        if ans:\n            return ans\n\n        # log10(0.0) == -Infinity\n        if not self:\n            return _NegativeInfinity\n\n        # log10(Infinity) = Infinity\n        if self._isinfinity() == 1:\n            return _Infinity\n\n        # log10(negative or -Infinity) raises InvalidOperation\n        if self._sign == 1:\n            return context._raise_error(InvalidOperation,\n                                        'log10 of a negative value')\n\n        # log10(10**n) = n\n        if self._int[0] == '1' and self._int[1:] == '0'*(len(self._int) - 1):\n            # answer may need rounding\n            ans = Decimal(self._exp + len(self._int) - 1)\n        else:\n            # result is irrational, so necessarily inexact\n            op = _WorkRep(self)\n            c, e = op.int, op.exp\n            p = context.prec\n\n            # correctly rounded result: repeatedly increase precision\n            # until result is unambiguously roundable\n            places = p-self._log10_exp_bound()+2\n            while True:\n                coeff = _dlog10(c, e, places)\n                # assert len(str(abs(coeff)))-p >= 1\n                if coeff % (5*10**(len(str(abs(coeff)))-p-1)):\n                    break\n                places += 3\n            ans = _dec_from_triple(int(coeff<0), str(abs(coeff)), -places)\n\n        context = context._shallow_copy()\n        rounding = context._set_rounding(ROUND_HALF_EVEN)\n        ans = ans._fix(context)\n        context.rounding = rounding\n        return ans\n\n    def logb(self, context=None):\n        \"\"\" Returns the exponent of the magnitude of self's MSD.\n\n        The result is the integer which is the exponent of the magnitude\n        of the most significant digit of self (as though it were truncated\n        to a single digit while maintaining the value of that digit and\n        without limiting the resulting exponent).\n        \"\"\"\n        # logb(NaN) = NaN\n        ans = self._check_nans(context=context)\n        if ans:\n            return ans\n\n        if context is None:\n            context = getcontext()\n\n        # logb(+/-Inf) = +Inf\n        if self._isinfinity():\n            return _Infinity\n\n        # logb(0) = -Inf, DivisionByZero\n        if not self:\n            return context._raise_error(DivisionByZero, 'logb(0)', 1)\n\n        # otherwise, simply return the adjusted exponent of self, as a\n        # Decimal.  Note that no attempt is made to fit the result\n        # into the current context.\n        ans = Decimal(self.adjusted())\n        return ans._fix(context)\n\n    def _islogical(self):\n        \"\"\"Return True if self is a logical operand.\n\n        For being logical, it must be a finite number with a sign of 0,\n        an exponent of 0, and a coefficient whose digits must all be\n        either 0 or 1.\n        \"\"\"\n        if self._sign != 0 or self._exp != 0:\n            return False\n        for dig in self._int:\n            if dig not in '01':\n                return False\n        return True\n\n    def _fill_logical(self, context, opa, opb):\n        dif = context.prec - len(opa)\n        if dif > 0:\n            opa = '0'*dif + opa\n        elif dif < 0:\n            opa = opa[-context.prec:]\n        dif = context.prec - len(opb)\n        if dif > 0:\n            opb = '0'*dif + opb\n        elif dif < 0:\n            opb = opb[-context.prec:]\n        return opa, opb\n\n    def logical_and(self, other, context=None):\n        \"\"\"Applies an 'and' operation between self and other's digits.\"\"\"\n        if context is None:\n            context = getcontext()\n\n        other = _convert_other(other, raiseit=True)\n\n        if not self._islogical() or not other._islogical():\n            return context._raise_error(InvalidOperation)\n\n        # fill to context.prec\n        (opa, opb) = self._fill_logical(context, self._int, other._int)\n\n        # make the operation, and clean starting zeroes\n        result = \"\".join([str(int(a)&int(b)) for a,b in zip(opa,opb)])\n        return _dec_from_triple(0, result.lstrip('0') or '0', 0)\n\n    def logical_invert(self, context=None):\n        \"\"\"Invert all its digits.\"\"\"\n        if context is None:\n            context = getcontext()\n        return self.logical_xor(_dec_from_triple(0,'1'*context.prec,0),\n                                context)\n\n    def logical_or(self, other, context=None):\n        \"\"\"Applies an 'or' operation between self and other's digits.\"\"\"\n        if context is None:\n            context = getcontext()\n\n        other = _convert_other(other, raiseit=True)\n\n        if not self._islogical() or not other._islogical():\n            return context._raise_error(InvalidOperation)\n\n        # fill to context.prec\n        (opa, opb) = self._fill_logical(context, self._int, other._int)\n\n        # make the operation, and clean starting zeroes\n        result = \"\".join([str(int(a)|int(b)) for a,b in zip(opa,opb)])\n        return _dec_from_triple(0, result.lstrip('0') or '0', 0)\n\n    def logical_xor(self, other, context=None):\n        \"\"\"Applies an 'xor' operation between self and other's digits.\"\"\"\n        if context is None:\n            context = getcontext()\n\n        other = _convert_other(other, raiseit=True)\n\n        if not self._islogical() or not other._islogical():\n            return context._raise_error(InvalidOperation)\n\n        # fill to context.prec\n        (opa, opb) = self._fill_logical(context, self._int, other._int)\n\n        # make the operation, and clean starting zeroes\n        result = \"\".join([str(int(a)^int(b)) for a,b in zip(opa,opb)])\n        return _dec_from_triple(0, result.lstrip('0') or '0', 0)\n\n    def max_mag(self, other, context=None):\n        \"\"\"Compares the values numerically with their sign ignored.\"\"\"\n        other = _convert_other(other, raiseit=True)\n\n        if context is None:\n            context = getcontext()\n\n        if self._is_special or other._is_special:\n            # If one operand is a quiet NaN and the other is number, then the\n            # number is always returned\n            sn = self._isnan()\n            on = other._isnan()\n            if sn or on:\n                if on == 1 and sn == 0:\n                    return self._fix(context)\n                if sn == 1 and on == 0:\n                    return other._fix(context)\n                return self._check_nans(other, context)\n\n        c = self.copy_abs()._cmp(other.copy_abs())\n        if c == 0:\n            c = self.compare_total(other)\n\n        if c == -1:\n            ans = other\n        else:\n            ans = self\n\n        return ans._fix(context)\n\n    def min_mag(self, other, context=None):\n        \"\"\"Compares the values numerically with their sign ignored.\"\"\"\n        other = _convert_other(other, raiseit=True)\n\n        if context is None:\n            context = getcontext()\n\n        if self._is_special or other._is_special:\n            # If one operand is a quiet NaN and the other is number, then the\n            # number is always returned\n            sn = self._isnan()\n            on = other._isnan()\n            if sn or on:\n                if on == 1 and sn == 0:\n                    return self._fix(context)\n                if sn == 1 and on == 0:\n                    return other._fix(context)\n                return self._check_nans(other, context)\n\n        c = self.copy_abs()._cmp(other.copy_abs())\n        if c == 0:\n            c = self.compare_total(other)\n\n        if c == -1:\n            ans = self\n        else:\n            ans = other\n\n        return ans._fix(context)\n\n    def next_minus(self, context=None):\n        \"\"\"Returns the largest representable number smaller than itself.\"\"\"\n        if context is None:\n            context = getcontext()\n\n        ans = self._check_nans(context=context)\n        if ans:\n            return ans\n\n        if self._isinfinity() == -1:\n            return _NegativeInfinity\n        if self._isinfinity() == 1:\n            return _dec_from_triple(0, '9'*context.prec, context.Etop())\n\n        context = context.copy()\n        context._set_rounding(ROUND_FLOOR)\n        context._ignore_all_flags()\n        new_self = self._fix(context)\n        if new_self != self:\n            return new_self\n        return self.__sub__(_dec_from_triple(0, '1', context.Etiny()-1),\n                            context)\n\n    def next_plus(self, context=None):\n        \"\"\"Returns the smallest representable number larger than itself.\"\"\"\n        if context is None:\n            context = getcontext()\n\n        ans = self._check_nans(context=context)\n        if ans:\n            return ans\n\n        if self._isinfinity() == 1:\n            return _Infinity\n        if self._isinfinity() == -1:\n            return _dec_from_triple(1, '9'*context.prec, context.Etop())\n\n        context = context.copy()\n        context._set_rounding(ROUND_CEILING)\n        context._ignore_all_flags()\n        new_self = self._fix(context)\n        if new_self != self:\n            return new_self\n        return self.__add__(_dec_from_triple(0, '1', context.Etiny()-1),\n                            context)\n\n    def next_toward(self, other, context=None):\n        \"\"\"Returns the number closest to self, in the direction towards other.\n\n        The result is the closest representable number to self\n        (excluding self) that is in the direction towards other,\n        unless both have the same value.  If the two operands are\n        numerically equal, then the result is a copy of self with the\n        sign set to be the same as the sign of other.\n        \"\"\"\n        other = _convert_other(other, raiseit=True)\n\n        if context is None:\n            context = getcontext()\n\n        ans = self._check_nans(other, context)\n        if ans:\n            return ans\n\n        comparison = self._cmp(other)\n        if comparison == 0:\n            return self.copy_sign(other)\n\n        if comparison == -1:\n            ans = self.next_plus(context)\n        else: # comparison == 1\n            ans = self.next_minus(context)\n\n        # decide which flags to raise using value of ans\n        if ans._isinfinity():\n            context._raise_error(Overflow,\n                                 'Infinite result from next_toward',\n                                 ans._sign)\n            context._raise_error(Inexact)\n            context._raise_error(Rounded)\n        elif ans.adjusted() < context.Emin:\n            context._raise_error(Underflow)\n            context._raise_error(Subnormal)\n            context._raise_error(Inexact)\n            context._raise_error(Rounded)\n            # if precision == 1 then we don't raise Clamped for a\n            # result 0E-Etiny.\n            if not ans:\n                context._raise_error(Clamped)\n\n        return ans\n\n    def number_class(self, context=None):\n        \"\"\"Returns an indication of the class of self.\n\n        The class is one of the following strings:\n          sNaN\n          NaN\n          -Infinity\n          -Normal\n          -Subnormal\n          -Zero\n          +Zero\n          +Subnormal\n          +Normal\n          +Infinity\n        \"\"\"\n        if self.is_snan():\n            return \"sNaN\"\n        if self.is_qnan():\n            return \"NaN\"\n        inf = self._isinfinity()\n        if inf == 1:\n            return \"+Infinity\"\n        if inf == -1:\n            return \"-Infinity\"\n        if self.is_zero():\n            if self._sign:\n                return \"-Zero\"\n            else:\n                return \"+Zero\"\n        if context is None:\n            context = getcontext()\n        if self.is_subnormal(context=context):\n            if self._sign:\n                return \"-Subnormal\"\n            else:\n                return \"+Subnormal\"\n        # just a normal, regular, boring number, :)\n        if self._sign:\n            return \"-Normal\"\n        else:\n            return \"+Normal\"\n\n    def radix(self):\n        \"\"\"Just returns 10, as this is Decimal, :)\"\"\"\n        return Decimal(10)\n\n    def rotate(self, other, context=None):\n        \"\"\"Returns a rotated copy of self, value-of-other times.\"\"\"\n        if context is None:\n            context = getcontext()\n\n        other = _convert_other(other, raiseit=True)\n\n        ans = self._check_nans(other, context)\n        if ans:\n            return ans\n\n        if other._exp != 0:\n            return context._raise_error(InvalidOperation)\n        if not (-context.prec <= int(other) <= context.prec):\n            return context._raise_error(InvalidOperation)\n\n        if self._isinfinity():\n            return Decimal(self)\n\n        # get values, pad if necessary\n        torot = int(other)\n        rotdig = self._int\n        topad = context.prec - len(rotdig)\n        if topad > 0:\n            rotdig = '0'*topad + rotdig\n        elif topad < 0:\n            rotdig = rotdig[-topad:]\n\n        # let's rotate!\n        rotated = rotdig[torot:] + rotdig[:torot]\n        return _dec_from_triple(self._sign,\n                                rotated.lstrip('0') or '0', self._exp)\n\n    def scaleb(self, other, context=None):\n        \"\"\"Returns self operand after adding the second value to its exp.\"\"\"\n        if context is None:\n            context = getcontext()\n\n        other = _convert_other(other, raiseit=True)\n\n        ans = self._check_nans(other, context)\n        if ans:\n            return ans\n\n        if other._exp != 0:\n            return context._raise_error(InvalidOperation)\n        liminf = -2 * (context.Emax + context.prec)\n        limsup =  2 * (context.Emax + context.prec)\n        if not (liminf <= int(other) <= limsup):\n            return context._raise_error(InvalidOperation)\n\n        if self._isinfinity():\n            return Decimal(self)\n\n        d = _dec_from_triple(self._sign, self._int, self._exp + int(other))\n        d = d._fix(context)\n        return d\n\n    def shift(self, other, context=None):\n        \"\"\"Returns a shifted copy of self, value-of-other times.\"\"\"\n        if context is None:\n            context = getcontext()\n\n        other = _convert_other(other, raiseit=True)\n\n        ans = self._check_nans(other, context)\n        if ans:\n            return ans\n\n        if other._exp != 0:\n            return context._raise_error(InvalidOperation)\n        if not (-context.prec <= int(other) <= context.prec):\n            return context._raise_error(InvalidOperation)\n\n        if self._isinfinity():\n            return Decimal(self)\n\n        # get values, pad if necessary\n        torot = int(other)\n        rotdig = self._int\n        topad = context.prec - len(rotdig)\n        if topad > 0:\n            rotdig = '0'*topad + rotdig\n        elif topad < 0:\n            rotdig = rotdig[-topad:]\n\n        # let's shift!\n        if torot < 0:\n            shifted = rotdig[:torot]\n        else:\n            shifted = rotdig + '0'*torot\n            shifted = shifted[-context.prec:]\n\n        return _dec_from_triple(self._sign,\n                                    shifted.lstrip('0') or '0', self._exp)\n\n    # Support for pickling, copy, and deepcopy\n    def __reduce__(self):\n        return (self.__class__, (str(self),))\n\n    def __copy__(self):\n        if type(self) is Decimal:\n            return self     # I'm immutable; therefore I am my own clone\n        return self.__class__(str(self))\n\n    def __deepcopy__(self, memo):\n        if type(self) is Decimal:\n            return self     # My components are also immutable\n        return self.__class__(str(self))\n\n    # PEP 3101 support.  the _localeconv keyword argument should be\n    # considered private: it's provided for ease of testing only.\n    def __format__(self, specifier, context=None, _localeconv=None):\n        \"\"\"Format a Decimal instance according to the given specifier.\n\n        The specifier should be a standard format specifier, with the\n        form described in PEP 3101.  Formatting types 'e', 'E', 'f',\n        'F', 'g', 'G', 'n' and '%' are supported.  If the formatting\n        type is omitted it defaults to 'g' or 'G', depending on the\n        value of context.capitals.\n        \"\"\"\n\n        # Note: PEP 3101 says that if the type is not present then\n        # there should be at least one digit after the decimal point.\n        # We take the liberty of ignoring this requirement for\n        # Decimal---it's presumably there to make sure that\n        # format(float, '') behaves similarly to str(float).\n        if context is None:\n            context = getcontext()\n\n        spec = _parse_format_specifier(specifier, _localeconv=_localeconv)\n\n        # special values don't care about the type or precision\n        if self._is_special:\n            sign = _format_sign(self._sign, spec)\n            body = str(self.copy_abs())\n            if spec['type'] == '%':\n                body += '%'\n            return _format_align(sign, body, spec)\n\n        # a type of None defaults to 'g' or 'G', depending on context\n        if spec['type'] is None:\n            spec['type'] = ['g', 'G'][context.capitals]\n\n        # if type is '%', adjust exponent of self accordingly\n        if spec['type'] == '%':\n            self = _dec_from_triple(self._sign, self._int, self._exp+2)\n\n        # round if necessary, taking rounding mode from the context\n        rounding = context.rounding\n        precision = spec['precision']\n        if precision is not None:\n            if spec['type'] in 'eE':\n                self = self._round(precision+1, rounding)\n            elif spec['type'] in 'fF%':\n                self = self._rescale(-precision, rounding)\n            elif spec['type'] in 'gG' and len(self._int) > precision:\n                self = self._round(precision, rounding)\n        # special case: zeros with a positive exponent can't be\n        # represented in fixed point; rescale them to 0e0.\n        if not self and self._exp > 0 and spec['type'] in 'fF%':\n            self = self._rescale(0, rounding)\n\n        # figure out placement of the decimal point\n        leftdigits = self._exp + len(self._int)\n        if spec['type'] in 'eE':\n            if not self and precision is not None:\n                dotplace = 1 - precision\n            else:\n                dotplace = 1\n        elif spec['type'] in 'fF%':\n            dotplace = leftdigits\n        elif spec['type'] in 'gG':\n            if self._exp <= 0 and leftdigits > -6:\n                dotplace = leftdigits\n            else:\n                dotplace = 1\n\n        # find digits before and after decimal point, and get exponent\n        if dotplace < 0:\n            intpart = '0'\n            fracpart = '0'*(-dotplace) + self._int\n        elif dotplace > len(self._int):\n            intpart = self._int + '0'*(dotplace-len(self._int))\n            fracpart = ''\n        else:\n            intpart = self._int[:dotplace] or '0'\n            fracpart = self._int[dotplace:]\n        exp = leftdigits-dotplace\n\n        # done with the decimal-specific stuff;  hand over the rest\n        # of the formatting to the _format_number function\n        return _format_number(self._sign, intpart, fracpart, exp, spec)\n\ndef _dec_from_triple(sign, coefficient, exponent, special=False):\n    \"\"\"Create a decimal instance directly, without any validation,\n    normalization (e.g. removal of leading zeros) or argument\n    conversion.\n\n    This function is for *internal use only*.\n    \"\"\"\n\n    self = object.__new__(Decimal)\n    self._sign = sign\n    self._int = coefficient\n    self._exp = exponent\n    self._is_special = special\n\n    return self\n\n# Register Decimal as a kind of Number (an abstract base class).\n# However, do not register it as Real (because Decimals are not\n# interoperable with floats).\n_numbers.Number.register(Decimal)\n\n\n##### Context class #######################################################\n\nclass _ContextManager(object):\n    \"\"\"Context manager class to support localcontext().\n\n      Sets a copy of the supplied context in __enter__() and restores\n      the previous decimal context in __exit__()\n    \"\"\"\n    def __init__(self, new_context):\n        self.new_context = new_context.copy()\n    def __enter__(self):\n        self.saved_context = getcontext()\n        setcontext(self.new_context)\n        return self.new_context\n    def __exit__(self, t, v, tb):\n        setcontext(self.saved_context)\n\nclass Context(object):\n    \"\"\"Contains the context for a Decimal instance.\n\n    Contains:\n    prec - precision (for use in rounding, division, square roots..)\n    rounding - rounding type (how you round)\n    traps - If traps[exception] = 1, then the exception is\n                    raised when it is caused.  Otherwise, a value is\n                    substituted in.\n    flags  - When an exception is caused, flags[exception] is set.\n             (Whether or not the trap_enabler is set)\n             Should be reset by user of Decimal instance.\n    Emin -   Minimum exponent\n    Emax -   Maximum exponent\n    capitals -      If 1, 1*10^1 is printed as 1E+1.\n                    If 0, printed as 1e1\n    clamp -  If 1, change exponents if too high (Default 0)\n    \"\"\"\n\n    def __init__(self, prec=None, rounding=None, Emin=None, Emax=None,\n                       capitals=None, clamp=None, flags=None, traps=None,\n                       _ignored_flags=None):\n        # Set defaults; for everything except flags and _ignored_flags,\n        # inherit from DefaultContext.\n        try:\n            dc = DefaultContext\n        except NameError:\n            pass\n\n        self.prec = prec if prec is not None else dc.prec\n        self.rounding = rounding if rounding is not None else dc.rounding\n        self.Emin = Emin if Emin is not None else dc.Emin\n        self.Emax = Emax if Emax is not None else dc.Emax\n        self.capitals = capitals if capitals is not None else dc.capitals\n        self.clamp = clamp if clamp is not None else dc.clamp\n\n        if _ignored_flags is None:\n            self._ignored_flags = []\n        else:\n            self._ignored_flags = _ignored_flags\n\n        if traps is None:\n            self.traps = dc.traps.copy()\n        elif not isinstance(traps, dict):\n            self.traps = dict((s, int(s in traps)) for s in _signals + traps)\n        else:\n            self.traps = traps\n\n        if flags is None:\n            self.flags = dict.fromkeys(_signals, 0)\n        elif not isinstance(flags, dict):\n            self.flags = dict((s, int(s in flags)) for s in _signals + flags)\n        else:\n            self.flags = flags\n\n    def _set_integer_check(self, name, value, vmin, vmax):\n        if not isinstance(value, int):\n            raise TypeError(\"%s must be an integer\" % name)\n        if vmin == '-inf':\n            if value > vmax:\n                raise ValueError(\"%s must be in [%s, %d]. got: %s\" % (name, vmin, vmax, value))\n        elif vmax == 'inf':\n            if value < vmin:\n                raise ValueError(\"%s must be in [%d, %s]. got: %s\" % (name, vmin, vmax, value))\n        else:\n            if value < vmin or value > vmax:\n                raise ValueError(\"%s must be in [%d, %d]. got %s\" % (name, vmin, vmax, value))\n        return object.__setattr__(self, name, value)\n\n    def _set_signal_dict(self, name, d):\n        if not isinstance(d, dict):\n            raise TypeError(\"%s must be a signal dict\" % d)\n        for key in d:\n            if not key in _signals:\n                raise KeyError(\"%s is not a valid signal dict\" % d)\n        for key in _signals:\n            if not key in d:\n                raise KeyError(\"%s is not a valid signal dict\" % d)\n        return object.__setattr__(self, name, d)\n\n    def __setattr__(self, name, value):\n        if name == 'prec':\n            return self._set_integer_check(name, value, 1, 'inf')\n        elif name == 'Emin':\n            return self._set_integer_check(name, value, '-inf', 0)\n        elif name == 'Emax':\n            return self._set_integer_check(name, value, 0, 'inf')\n        elif name == 'capitals':\n            return self._set_integer_check(name, value, 0, 1)\n        elif name == 'clamp':\n            return self._set_integer_check(name, value, 0, 1)\n        elif name == 'rounding':\n            if not value in _rounding_modes:\n                # raise TypeError even for strings to have consistency\n                # among various implementations.\n                raise TypeError(\"%s: invalid rounding mode\" % value)\n            return object.__setattr__(self, name, value)\n        elif name == 'flags' or name == 'traps':\n            return self._set_signal_dict(name, value)\n        elif name == '_ignored_flags':\n            return object.__setattr__(self, name, value)\n        else:\n            raise AttributeError(\n                \"'decimal.Context' object has no attribute '%s'\" % name)\n\n    def __delattr__(self, name):\n        raise AttributeError(\"%s cannot be deleted\" % name)\n\n    # Support for pickling, copy, and deepcopy\n    def __reduce__(self):\n        flags = [sig for sig, v in self.flags.items() if v]\n        traps = [sig for sig, v in self.traps.items() if v]\n        return (self.__class__,\n                (self.prec, self.rounding, self.Emin, self.Emax,\n                 self.capitals, self.clamp, flags, traps))\n\n    def __repr__(self):\n        \"\"\"Show the current context.\"\"\"\n        s = []\n        s.append('Context(prec=%(prec)d, rounding=%(rounding)s, '\n                 'Emin=%(Emin)d, Emax=%(Emax)d, capitals=%(capitals)d, '\n                 'clamp=%(clamp)d'\n                 % vars(self))\n        names = [f.__name__ for f, v in self.flags.items() if v]\n        s.append('flags=[' + ', '.join(names) + ']')\n        names = [t.__name__ for t, v in self.traps.items() if v]\n        s.append('traps=[' + ', '.join(names) + ']')\n        return ', '.join(s) + ')'\n\n    def clear_flags(self):\n        \"\"\"Reset all flags to zero\"\"\"\n        for flag in self.flags:\n            self.flags[flag] = 0\n\n    def clear_traps(self):\n        \"\"\"Reset all traps to zero\"\"\"\n        for flag in self.traps:\n            self.traps[flag] = 0\n\n    def _shallow_copy(self):\n        \"\"\"Returns a shallow copy from self.\"\"\"\n        nc = Context(self.prec, self.rounding, self.Emin, self.Emax,\n                     self.capitals, self.clamp, self.flags, self.traps,\n                     self._ignored_flags)\n        return nc\n\n    def copy(self):\n        \"\"\"Returns a deep copy from self.\"\"\"\n        nc = Context(self.prec, self.rounding, self.Emin, self.Emax,\n                     self.capitals, self.clamp,\n                     self.flags.copy(), self.traps.copy(),\n                     self._ignored_flags)\n        return nc\n    __copy__ = copy\n\n    def _raise_error(self, condition, explanation = None, *args):\n        \"\"\"Handles an error\n\n        If the flag is in _ignored_flags, returns the default response.\n        Otherwise, it sets the flag, then, if the corresponding\n        trap_enabler is set, it reraises the exception.  Otherwise, it returns\n        the default value after setting the flag.\n        \"\"\"\n        error = _condition_map.get(condition, condition)\n        if error in self._ignored_flags:\n            # Don't touch the flag\n            return error().handle(self, *args)\n\n        self.flags[error] = 1\n        if not self.traps[error]:\n            # The errors define how to handle themselves.\n            return condition().handle(self, *args)\n\n        # Errors should only be risked on copies of the context\n        # self._ignored_flags = []\n        raise error(explanation)\n\n    def _ignore_all_flags(self):\n        \"\"\"Ignore all flags, if they are raised\"\"\"\n        return self._ignore_flags(*_signals)\n\n    def _ignore_flags(self, *flags):\n        \"\"\"Ignore the flags, if they are raised\"\"\"\n        # Do not mutate-- This way, copies of a context leave the original\n        # alone.\n        self._ignored_flags = (self._ignored_flags + list(flags))\n        return list(flags)\n\n    def _regard_flags(self, *flags):\n        \"\"\"Stop ignoring the flags, if they are raised\"\"\"\n        if flags and isinstance(flags[0], (tuple,list)):\n            flags = flags[0]\n        for flag in flags:\n            self._ignored_flags.remove(flag)\n\n    # We inherit object.__hash__, so we must deny this explicitly\n    __hash__ = None\n\n    def Etiny(self):\n        \"\"\"Returns Etiny (= Emin - prec + 1)\"\"\"\n        return int(self.Emin - self.prec + 1)\n\n    def Etop(self):\n        \"\"\"Returns maximum exponent (= Emax - prec + 1)\"\"\"\n        return int(self.Emax - self.prec + 1)\n\n    def _set_rounding(self, type):\n        \"\"\"Sets the rounding type.\n\n        Sets the rounding type, and returns the current (previous)\n        rounding type.  Often used like:\n\n        context = context.copy()\n        # so you don't change the calling context\n        # if an error occurs in the middle.\n        rounding = context._set_rounding(ROUND_UP)\n        val = self.__sub__(other, context=context)\n        context._set_rounding(rounding)\n\n        This will make it round up for that operation.\n        \"\"\"\n        rounding = self.rounding\n        self.rounding = type\n        return rounding\n\n    def create_decimal(self, num='0'):\n        \"\"\"Creates a new Decimal instance but using self as context.\n\n        This method implements the to-number operation of the\n        IBM Decimal specification.\"\"\"\n\n        if isinstance(num, str) and (num != num.strip() or '_' in num):\n            return self._raise_error(ConversionSyntax,\n                                     \"trailing or leading whitespace and \"\n                                     \"underscores are not permitted.\")\n\n        d = Decimal(num, context=self)\n        if d._isnan() and len(d._int) > self.prec - self.clamp:\n            return self._raise_error(ConversionSyntax,\n                                     \"diagnostic info too long in NaN\")\n        return d._fix(self)\n\n    def create_decimal_from_float(self, f):\n        \"\"\"Creates a new Decimal instance from a float but rounding using self\n        as the context.\n\n        >>> context = Context(prec=5, rounding=ROUND_DOWN)\n        >>> context.create_decimal_from_float(3.1415926535897932)\n        Decimal('3.1415')\n        >>> context = Context(prec=5, traps=[Inexact])\n        >>> context.create_decimal_from_float(3.1415926535897932)\n        Traceback (most recent call last):\n            ...\n        decimal.Inexact: None\n\n        \"\"\"\n        d = Decimal.from_float(f)       # An exact conversion\n        return d._fix(self)             # Apply the context rounding\n\n    # Methods\n    def abs(self, a):\n        \"\"\"Returns the absolute value of the operand.\n\n        If the operand is negative, the result is the same as using the minus\n        operation on the operand.  Otherwise, the result is the same as using\n        the plus operation on the operand.\n\n        >>> ExtendedContext.abs(Decimal('2.1'))\n        Decimal('2.1')\n        >>> ExtendedContext.abs(Decimal('-100'))\n        Decimal('100')\n        >>> ExtendedContext.abs(Decimal('101.5'))\n        Decimal('101.5')\n        >>> ExtendedContext.abs(Decimal('-101.5'))\n        Decimal('101.5')\n        >>> ExtendedContext.abs(-1)\n        Decimal('1')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.__abs__(context=self)\n\n    def add(self, a, b):\n        \"\"\"Return the sum of the two operands.\n\n        >>> ExtendedContext.add(Decimal('12'), Decimal('7.00'))\n        Decimal('19.00')\n        >>> ExtendedContext.add(Decimal('1E+2'), Decimal('1.01E+4'))\n        Decimal('1.02E+4')\n        >>> ExtendedContext.add(1, Decimal(2))\n        Decimal('3')\n        >>> ExtendedContext.add(Decimal(8), 5)\n        Decimal('13')\n        >>> ExtendedContext.add(5, 5)\n        Decimal('10')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        r = a.__add__(b, context=self)\n        if r is NotImplemented:\n            raise TypeError(\"Unable to convert %s to Decimal\" % b)\n        else:\n            return r\n\n    def _apply(self, a):\n        return str(a._fix(self))\n\n    def canonical(self, a):\n        \"\"\"Returns the same Decimal object.\n\n        As we do not have different encodings for the same number, the\n        received object already is in its canonical form.\n\n        >>> ExtendedContext.canonical(Decimal('2.50'))\n        Decimal('2.50')\n        \"\"\"\n        if not isinstance(a, Decimal):\n            raise TypeError(\"canonical requires a Decimal as an argument.\")\n        return a.canonical()\n\n    def compare(self, a, b):\n        \"\"\"Compares values numerically.\n\n        If the signs of the operands differ, a value representing each operand\n        ('-1' if the operand is less than zero, '0' if the operand is zero or\n        negative zero, or '1' if the operand is greater than zero) is used in\n        place of that operand for the comparison instead of the actual\n        operand.\n\n        The comparison is then effected by subtracting the second operand from\n        the first and then returning a value according to the result of the\n        subtraction: '-1' if the result is less than zero, '0' if the result is\n        zero or negative zero, or '1' if the result is greater than zero.\n\n        >>> ExtendedContext.compare(Decimal('2.1'), Decimal('3'))\n        Decimal('-1')\n        >>> ExtendedContext.compare(Decimal('2.1'), Decimal('2.1'))\n        Decimal('0')\n        >>> ExtendedContext.compare(Decimal('2.1'), Decimal('2.10'))\n        Decimal('0')\n        >>> ExtendedContext.compare(Decimal('3'), Decimal('2.1'))\n        Decimal('1')\n        >>> ExtendedContext.compare(Decimal('2.1'), Decimal('-3'))\n        Decimal('1')\n        >>> ExtendedContext.compare(Decimal('-3'), Decimal('2.1'))\n        Decimal('-1')\n        >>> ExtendedContext.compare(1, 2)\n        Decimal('-1')\n        >>> ExtendedContext.compare(Decimal(1), 2)\n        Decimal('-1')\n        >>> ExtendedContext.compare(1, Decimal(2))\n        Decimal('-1')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.compare(b, context=self)\n\n    def compare_signal(self, a, b):\n        \"\"\"Compares the values of the two operands numerically.\n\n        It's pretty much like compare(), but all NaNs signal, with signaling\n        NaNs taking precedence over quiet NaNs.\n\n        >>> c = ExtendedContext\n        >>> c.compare_signal(Decimal('2.1'), Decimal('3'))\n        Decimal('-1')\n        >>> c.compare_signal(Decimal('2.1'), Decimal('2.1'))\n        Decimal('0')\n        >>> c.flags[InvalidOperation] = 0\n        >>> print(c.flags[InvalidOperation])\n        0\n        >>> c.compare_signal(Decimal('NaN'), Decimal('2.1'))\n        Decimal('NaN')\n        >>> print(c.flags[InvalidOperation])\n        1\n        >>> c.flags[InvalidOperation] = 0\n        >>> print(c.flags[InvalidOperation])\n        0\n        >>> c.compare_signal(Decimal('sNaN'), Decimal('2.1'))\n        Decimal('NaN')\n        >>> print(c.flags[InvalidOperation])\n        1\n        >>> c.compare_signal(-1, 2)\n        Decimal('-1')\n        >>> c.compare_signal(Decimal(-1), 2)\n        Decimal('-1')\n        >>> c.compare_signal(-1, Decimal(2))\n        Decimal('-1')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.compare_signal(b, context=self)\n\n    def compare_total(self, a, b):\n        \"\"\"Compares two operands using their abstract representation.\n\n        This is not like the standard compare, which use their numerical\n        value. Note that a total ordering is defined for all possible abstract\n        representations.\n\n        >>> ExtendedContext.compare_total(Decimal('12.73'), Decimal('127.9'))\n        Decimal('-1')\n        >>> ExtendedContext.compare_total(Decimal('-127'),  Decimal('12'))\n        Decimal('-1')\n        >>> ExtendedContext.compare_total(Decimal('12.30'), Decimal('12.3'))\n        Decimal('-1')\n        >>> ExtendedContext.compare_total(Decimal('12.30'), Decimal('12.30'))\n        Decimal('0')\n        >>> ExtendedContext.compare_total(Decimal('12.3'),  Decimal('12.300'))\n        Decimal('1')\n        >>> ExtendedContext.compare_total(Decimal('12.3'),  Decimal('NaN'))\n        Decimal('-1')\n        >>> ExtendedContext.compare_total(1, 2)\n        Decimal('-1')\n        >>> ExtendedContext.compare_total(Decimal(1), 2)\n        Decimal('-1')\n        >>> ExtendedContext.compare_total(1, Decimal(2))\n        Decimal('-1')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.compare_total(b)\n\n    def compare_total_mag(self, a, b):\n        \"\"\"Compares two operands using their abstract representation ignoring sign.\n\n        Like compare_total, but with operand's sign ignored and assumed to be 0.\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.compare_total_mag(b)\n\n    def copy_abs(self, a):\n        \"\"\"Returns a copy of the operand with the sign set to 0.\n\n        >>> ExtendedContext.copy_abs(Decimal('2.1'))\n        Decimal('2.1')\n        >>> ExtendedContext.copy_abs(Decimal('-100'))\n        Decimal('100')\n        >>> ExtendedContext.copy_abs(-1)\n        Decimal('1')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.copy_abs()\n\n    def copy_decimal(self, a):\n        \"\"\"Returns a copy of the decimal object.\n\n        >>> ExtendedContext.copy_decimal(Decimal('2.1'))\n        Decimal('2.1')\n        >>> ExtendedContext.copy_decimal(Decimal('-1.00'))\n        Decimal('-1.00')\n        >>> ExtendedContext.copy_decimal(1)\n        Decimal('1')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return Decimal(a)\n\n    def copy_negate(self, a):\n        \"\"\"Returns a copy of the operand with the sign inverted.\n\n        >>> ExtendedContext.copy_negate(Decimal('101.5'))\n        Decimal('-101.5')\n        >>> ExtendedContext.copy_negate(Decimal('-101.5'))\n        Decimal('101.5')\n        >>> ExtendedContext.copy_negate(1)\n        Decimal('-1')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.copy_negate()\n\n    def copy_sign(self, a, b):\n        \"\"\"Copies the second operand's sign to the first one.\n\n        In detail, it returns a copy of the first operand with the sign\n        equal to the sign of the second operand.\n\n        >>> ExtendedContext.copy_sign(Decimal( '1.50'), Decimal('7.33'))\n        Decimal('1.50')\n        >>> ExtendedContext.copy_sign(Decimal('-1.50'), Decimal('7.33'))\n        Decimal('1.50')\n        >>> ExtendedContext.copy_sign(Decimal( '1.50'), Decimal('-7.33'))\n        Decimal('-1.50')\n        >>> ExtendedContext.copy_sign(Decimal('-1.50'), Decimal('-7.33'))\n        Decimal('-1.50')\n        >>> ExtendedContext.copy_sign(1, -2)\n        Decimal('-1')\n        >>> ExtendedContext.copy_sign(Decimal(1), -2)\n        Decimal('-1')\n        >>> ExtendedContext.copy_sign(1, Decimal(-2))\n        Decimal('-1')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.copy_sign(b)\n\n    def divide(self, a, b):\n        \"\"\"Decimal division in a specified context.\n\n        >>> ExtendedContext.divide(Decimal('1'), Decimal('3'))\n        Decimal('0.333333333')\n        >>> ExtendedContext.divide(Decimal('2'), Decimal('3'))\n        Decimal('0.666666667')\n        >>> ExtendedContext.divide(Decimal('5'), Decimal('2'))\n        Decimal('2.5')\n        >>> ExtendedContext.divide(Decimal('1'), Decimal('10'))\n        Decimal('0.1')\n        >>> ExtendedContext.divide(Decimal('12'), Decimal('12'))\n        Decimal('1')\n        >>> ExtendedContext.divide(Decimal('8.00'), Decimal('2'))\n        Decimal('4.00')\n        >>> ExtendedContext.divide(Decimal('2.400'), Decimal('2.0'))\n        Decimal('1.20')\n        >>> ExtendedContext.divide(Decimal('1000'), Decimal('100'))\n        Decimal('10')\n        >>> ExtendedContext.divide(Decimal('1000'), Decimal('1'))\n        Decimal('1000')\n        >>> ExtendedContext.divide(Decimal('2.40E+6'), Decimal('2'))\n        Decimal('1.20E+6')\n        >>> ExtendedContext.divide(5, 5)\n        Decimal('1')\n        >>> ExtendedContext.divide(Decimal(5), 5)\n        Decimal('1')\n        >>> ExtendedContext.divide(5, Decimal(5))\n        Decimal('1')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        r = a.__truediv__(b, context=self)\n        if r is NotImplemented:\n            raise TypeError(\"Unable to convert %s to Decimal\" % b)\n        else:\n            return r\n\n    def divide_int(self, a, b):\n        \"\"\"Divides two numbers and returns the integer part of the result.\n\n        >>> ExtendedContext.divide_int(Decimal('2'), Decimal('3'))\n        Decimal('0')\n        >>> ExtendedContext.divide_int(Decimal('10'), Decimal('3'))\n        Decimal('3')\n        >>> ExtendedContext.divide_int(Decimal('1'), Decimal('0.3'))\n        Decimal('3')\n        >>> ExtendedContext.divide_int(10, 3)\n        Decimal('3')\n        >>> ExtendedContext.divide_int(Decimal(10), 3)\n        Decimal('3')\n        >>> ExtendedContext.divide_int(10, Decimal(3))\n        Decimal('3')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        r = a.__floordiv__(b, context=self)\n        if r is NotImplemented:\n            raise TypeError(\"Unable to convert %s to Decimal\" % b)\n        else:\n            return r\n\n    def divmod(self, a, b):\n        \"\"\"Return (a // b, a % b).\n\n        >>> ExtendedContext.divmod(Decimal(8), Decimal(3))\n        (Decimal('2'), Decimal('2'))\n        >>> ExtendedContext.divmod(Decimal(8), Decimal(4))\n        (Decimal('2'), Decimal('0'))\n        >>> ExtendedContext.divmod(8, 4)\n        (Decimal('2'), Decimal('0'))\n        >>> ExtendedContext.divmod(Decimal(8), 4)\n        (Decimal('2'), Decimal('0'))\n        >>> ExtendedContext.divmod(8, Decimal(4))\n        (Decimal('2'), Decimal('0'))\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        r = a.__divmod__(b, context=self)\n        if r is NotImplemented:\n            raise TypeError(\"Unable to convert %s to Decimal\" % b)\n        else:\n            return r\n\n    def exp(self, a):\n        \"\"\"Returns e ** a.\n\n        >>> c = ExtendedContext.copy()\n        >>> c.Emin = -999\n        >>> c.Emax = 999\n        >>> c.exp(Decimal('-Infinity'))\n        Decimal('0')\n        >>> c.exp(Decimal('-1'))\n        Decimal('0.367879441')\n        >>> c.exp(Decimal('0'))\n        Decimal('1')\n        >>> c.exp(Decimal('1'))\n        Decimal('2.71828183')\n        >>> c.exp(Decimal('0.693147181'))\n        Decimal('2.00000000')\n        >>> c.exp(Decimal('+Infinity'))\n        Decimal('Infinity')\n        >>> c.exp(10)\n        Decimal('22026.4658')\n        \"\"\"\n        a =_convert_other(a, raiseit=True)\n        return a.exp(context=self)\n\n    def fma(self, a, b, c):\n        \"\"\"Returns a multiplied by b, plus c.\n\n        The first two operands are multiplied together, using multiply,\n        the third operand is then added to the result of that\n        multiplication, using add, all with only one final rounding.\n\n        >>> ExtendedContext.fma(Decimal('3'), Decimal('5'), Decimal('7'))\n        Decimal('22')\n        >>> ExtendedContext.fma(Decimal('3'), Decimal('-5'), Decimal('7'))\n        Decimal('-8')\n        >>> ExtendedContext.fma(Decimal('888565290'), Decimal('1557.96930'), Decimal('-86087.7578'))\n        Decimal('1.38435736E+12')\n        >>> ExtendedContext.fma(1, 3, 4)\n        Decimal('7')\n        >>> ExtendedContext.fma(1, Decimal(3), 4)\n        Decimal('7')\n        >>> ExtendedContext.fma(1, 3, Decimal(4))\n        Decimal('7')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.fma(b, c, context=self)\n\n    def is_canonical(self, a):\n        \"\"\"Return True if the operand is canonical; otherwise return False.\n\n        Currently, the encoding of a Decimal instance is always\n        canonical, so this method returns True for any Decimal.\n\n        >>> ExtendedContext.is_canonical(Decimal('2.50'))\n        True\n        \"\"\"\n        if not isinstance(a, Decimal):\n            raise TypeError(\"is_canonical requires a Decimal as an argument.\")\n        return a.is_canonical()\n\n    def is_finite(self, a):\n        \"\"\"Return True if the operand is finite; otherwise return False.\n\n        A Decimal instance is considered finite if it is neither\n        infinite nor a NaN.\n\n        >>> ExtendedContext.is_finite(Decimal('2.50'))\n        True\n        >>> ExtendedContext.is_finite(Decimal('-0.3'))\n        True\n        >>> ExtendedContext.is_finite(Decimal('0'))\n        True\n        >>> ExtendedContext.is_finite(Decimal('Inf'))\n        False\n        >>> ExtendedContext.is_finite(Decimal('NaN'))\n        False\n        >>> ExtendedContext.is_finite(1)\n        True\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.is_finite()\n\n    def is_infinite(self, a):\n        \"\"\"Return True if the operand is infinite; otherwise return False.\n\n        >>> ExtendedContext.is_infinite(Decimal('2.50'))\n        False\n        >>> ExtendedContext.is_infinite(Decimal('-Inf'))\n        True\n        >>> ExtendedContext.is_infinite(Decimal('NaN'))\n        False\n        >>> ExtendedContext.is_infinite(1)\n        False\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.is_infinite()\n\n    def is_nan(self, a):\n        \"\"\"Return True if the operand is a qNaN or sNaN;\n        otherwise return False.\n\n        >>> ExtendedContext.is_nan(Decimal('2.50'))\n        False\n        >>> ExtendedContext.is_nan(Decimal('NaN'))\n        True\n        >>> ExtendedContext.is_nan(Decimal('-sNaN'))\n        True\n        >>> ExtendedContext.is_nan(1)\n        False\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.is_nan()\n\n    def is_normal(self, a):\n        \"\"\"Return True if the operand is a normal number;\n        otherwise return False.\n\n        >>> c = ExtendedContext.copy()\n        >>> c.Emin = -999\n        >>> c.Emax = 999\n        >>> c.is_normal(Decimal('2.50'))\n        True\n        >>> c.is_normal(Decimal('0.1E-999'))\n        False\n        >>> c.is_normal(Decimal('0.00'))\n        False\n        >>> c.is_normal(Decimal('-Inf'))\n        False\n        >>> c.is_normal(Decimal('NaN'))\n        False\n        >>> c.is_normal(1)\n        True\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.is_normal(context=self)\n\n    def is_qnan(self, a):\n        \"\"\"Return True if the operand is a quiet NaN; otherwise return False.\n\n        >>> ExtendedContext.is_qnan(Decimal('2.50'))\n        False\n        >>> ExtendedContext.is_qnan(Decimal('NaN'))\n        True\n        >>> ExtendedContext.is_qnan(Decimal('sNaN'))\n        False\n        >>> ExtendedContext.is_qnan(1)\n        False\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.is_qnan()\n\n    def is_signed(self, a):\n        \"\"\"Return True if the operand is negative; otherwise return False.\n\n        >>> ExtendedContext.is_signed(Decimal('2.50'))\n        False\n        >>> ExtendedContext.is_signed(Decimal('-12'))\n        True\n        >>> ExtendedContext.is_signed(Decimal('-0'))\n        True\n        >>> ExtendedContext.is_signed(8)\n        False\n        >>> ExtendedContext.is_signed(-8)\n        True\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.is_signed()\n\n    def is_snan(self, a):\n        \"\"\"Return True if the operand is a signaling NaN;\n        otherwise return False.\n\n        >>> ExtendedContext.is_snan(Decimal('2.50'))\n        False\n        >>> ExtendedContext.is_snan(Decimal('NaN'))\n        False\n        >>> ExtendedContext.is_snan(Decimal('sNaN'))\n        True\n        >>> ExtendedContext.is_snan(1)\n        False\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.is_snan()\n\n    def is_subnormal(self, a):\n        \"\"\"Return True if the operand is subnormal; otherwise return False.\n\n        >>> c = ExtendedContext.copy()\n        >>> c.Emin = -999\n        >>> c.Emax = 999\n        >>> c.is_subnormal(Decimal('2.50'))\n        False\n        >>> c.is_subnormal(Decimal('0.1E-999'))\n        True\n        >>> c.is_subnormal(Decimal('0.00'))\n        False\n        >>> c.is_subnormal(Decimal('-Inf'))\n        False\n        >>> c.is_subnormal(Decimal('NaN'))\n        False\n        >>> c.is_subnormal(1)\n        False\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.is_subnormal(context=self)\n\n    def is_zero(self, a):\n        \"\"\"Return True if the operand is a zero; otherwise return False.\n\n        >>> ExtendedContext.is_zero(Decimal('0'))\n        True\n        >>> ExtendedContext.is_zero(Decimal('2.50'))\n        False\n        >>> ExtendedContext.is_zero(Decimal('-0E+2'))\n        True\n        >>> ExtendedContext.is_zero(1)\n        False\n        >>> ExtendedContext.is_zero(0)\n        True\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.is_zero()\n\n    def ln(self, a):\n        \"\"\"Returns the natural (base e) logarithm of the operand.\n\n        >>> c = ExtendedContext.copy()\n        >>> c.Emin = -999\n        >>> c.Emax = 999\n        >>> c.ln(Decimal('0'))\n        Decimal('-Infinity')\n        >>> c.ln(Decimal('1.000'))\n        Decimal('0')\n        >>> c.ln(Decimal('2.71828183'))\n        Decimal('1.00000000')\n        >>> c.ln(Decimal('10'))\n        Decimal('2.30258509')\n        >>> c.ln(Decimal('+Infinity'))\n        Decimal('Infinity')\n        >>> c.ln(1)\n        Decimal('0')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.ln(context=self)\n\n    def log10(self, a):\n        \"\"\"Returns the base 10 logarithm of the operand.\n\n        >>> c = ExtendedContext.copy()\n        >>> c.Emin = -999\n        >>> c.Emax = 999\n        >>> c.log10(Decimal('0'))\n        Decimal('-Infinity')\n        >>> c.log10(Decimal('0.001'))\n        Decimal('-3')\n        >>> c.log10(Decimal('1.000'))\n        Decimal('0')\n        >>> c.log10(Decimal('2'))\n        Decimal('0.301029996')\n        >>> c.log10(Decimal('10'))\n        Decimal('1')\n        >>> c.log10(Decimal('70'))\n        Decimal('1.84509804')\n        >>> c.log10(Decimal('+Infinity'))\n        Decimal('Infinity')\n        >>> c.log10(0)\n        Decimal('-Infinity')\n        >>> c.log10(1)\n        Decimal('0')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.log10(context=self)\n\n    def logb(self, a):\n        \"\"\" Returns the exponent of the magnitude of the operand's MSD.\n\n        The result is the integer which is the exponent of the magnitude\n        of the most significant digit of the operand (as though the\n        operand were truncated to a single digit while maintaining the\n        value of that digit and without limiting the resulting exponent).\n\n        >>> ExtendedContext.logb(Decimal('250'))\n        Decimal('2')\n        >>> ExtendedContext.logb(Decimal('2.50'))\n        Decimal('0')\n        >>> ExtendedContext.logb(Decimal('0.03'))\n        Decimal('-2')\n        >>> ExtendedContext.logb(Decimal('0'))\n        Decimal('-Infinity')\n        >>> ExtendedContext.logb(1)\n        Decimal('0')\n        >>> ExtendedContext.logb(10)\n        Decimal('1')\n        >>> ExtendedContext.logb(100)\n        Decimal('2')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.logb(context=self)\n\n    def logical_and(self, a, b):\n        \"\"\"Applies the logical operation 'and' between each operand's digits.\n\n        The operands must be both logical numbers.\n\n        >>> ExtendedContext.logical_and(Decimal('0'), Decimal('0'))\n        Decimal('0')\n        >>> ExtendedContext.logical_and(Decimal('0'), Decimal('1'))\n        Decimal('0')\n        >>> ExtendedContext.logical_and(Decimal('1'), Decimal('0'))\n        Decimal('0')\n        >>> ExtendedContext.logical_and(Decimal('1'), Decimal('1'))\n        Decimal('1')\n        >>> ExtendedContext.logical_and(Decimal('1100'), Decimal('1010'))\n        Decimal('1000')\n        >>> ExtendedContext.logical_and(Decimal('1111'), Decimal('10'))\n        Decimal('10')\n        >>> ExtendedContext.logical_and(110, 1101)\n        Decimal('100')\n        >>> ExtendedContext.logical_and(Decimal(110), 1101)\n        Decimal('100')\n        >>> ExtendedContext.logical_and(110, Decimal(1101))\n        Decimal('100')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.logical_and(b, context=self)\n\n    def logical_invert(self, a):\n        \"\"\"Invert all the digits in the operand.\n\n        The operand must be a logical number.\n\n        >>> ExtendedContext.logical_invert(Decimal('0'))\n        Decimal('111111111')\n        >>> ExtendedContext.logical_invert(Decimal('1'))\n        Decimal('111111110')\n        >>> ExtendedContext.logical_invert(Decimal('111111111'))\n        Decimal('0')\n        >>> ExtendedContext.logical_invert(Decimal('101010101'))\n        Decimal('10101010')\n        >>> ExtendedContext.logical_invert(1101)\n        Decimal('111110010')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.logical_invert(context=self)\n\n    def logical_or(self, a, b):\n        \"\"\"Applies the logical operation 'or' between each operand's digits.\n\n        The operands must be both logical numbers.\n\n        >>> ExtendedContext.logical_or(Decimal('0'), Decimal('0'))\n        Decimal('0')\n        >>> ExtendedContext.logical_or(Decimal('0'), Decimal('1'))\n        Decimal('1')\n        >>> ExtendedContext.logical_or(Decimal('1'), Decimal('0'))\n        Decimal('1')\n        >>> ExtendedContext.logical_or(Decimal('1'), Decimal('1'))\n        Decimal('1')\n        >>> ExtendedContext.logical_or(Decimal('1100'), Decimal('1010'))\n        Decimal('1110')\n        >>> ExtendedContext.logical_or(Decimal('1110'), Decimal('10'))\n        Decimal('1110')\n        >>> ExtendedContext.logical_or(110, 1101)\n        Decimal('1111')\n        >>> ExtendedContext.logical_or(Decimal(110), 1101)\n        Decimal('1111')\n        >>> ExtendedContext.logical_or(110, Decimal(1101))\n        Decimal('1111')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.logical_or(b, context=self)\n\n    def logical_xor(self, a, b):\n        \"\"\"Applies the logical operation 'xor' between each operand's digits.\n\n        The operands must be both logical numbers.\n\n        >>> ExtendedContext.logical_xor(Decimal('0'), Decimal('0'))\n        Decimal('0')\n        >>> ExtendedContext.logical_xor(Decimal('0'), Decimal('1'))\n        Decimal('1')\n        >>> ExtendedContext.logical_xor(Decimal('1'), Decimal('0'))\n        Decimal('1')\n        >>> ExtendedContext.logical_xor(Decimal('1'), Decimal('1'))\n        Decimal('0')\n        >>> ExtendedContext.logical_xor(Decimal('1100'), Decimal('1010'))\n        Decimal('110')\n        >>> ExtendedContext.logical_xor(Decimal('1111'), Decimal('10'))\n        Decimal('1101')\n        >>> ExtendedContext.logical_xor(110, 1101)\n        Decimal('1011')\n        >>> ExtendedContext.logical_xor(Decimal(110), 1101)\n        Decimal('1011')\n        >>> ExtendedContext.logical_xor(110, Decimal(1101))\n        Decimal('1011')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.logical_xor(b, context=self)\n\n    def max(self, a, b):\n        \"\"\"max compares two values numerically and returns the maximum.\n\n        If either operand is a NaN then the general rules apply.\n        Otherwise, the operands are compared as though by the compare\n        operation.  If they are numerically equal then the left-hand operand\n        is chosen as the result.  Otherwise the maximum (closer to positive\n        infinity) of the two operands is chosen as the result.\n\n        >>> ExtendedContext.max(Decimal('3'), Decimal('2'))\n        Decimal('3')\n        >>> ExtendedContext.max(Decimal('-10'), Decimal('3'))\n        Decimal('3')\n        >>> ExtendedContext.max(Decimal('1.0'), Decimal('1'))\n        Decimal('1')\n        >>> ExtendedContext.max(Decimal('7'), Decimal('NaN'))\n        Decimal('7')\n        >>> ExtendedContext.max(1, 2)\n        Decimal('2')\n        >>> ExtendedContext.max(Decimal(1), 2)\n        Decimal('2')\n        >>> ExtendedContext.max(1, Decimal(2))\n        Decimal('2')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.max(b, context=self)\n\n    def max_mag(self, a, b):\n        \"\"\"Compares the values numerically with their sign ignored.\n\n        >>> ExtendedContext.max_mag(Decimal('7'), Decimal('NaN'))\n        Decimal('7')\n        >>> ExtendedContext.max_mag(Decimal('7'), Decimal('-10'))\n        Decimal('-10')\n        >>> ExtendedContext.max_mag(1, -2)\n        Decimal('-2')\n        >>> ExtendedContext.max_mag(Decimal(1), -2)\n        Decimal('-2')\n        >>> ExtendedContext.max_mag(1, Decimal(-2))\n        Decimal('-2')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.max_mag(b, context=self)\n\n    def min(self, a, b):\n        \"\"\"min compares two values numerically and returns the minimum.\n\n        If either operand is a NaN then the general rules apply.\n        Otherwise, the operands are compared as though by the compare\n        operation.  If they are numerically equal then the left-hand operand\n        is chosen as the result.  Otherwise the minimum (closer to negative\n        infinity) of the two operands is chosen as the result.\n\n        >>> ExtendedContext.min(Decimal('3'), Decimal('2'))\n        Decimal('2')\n        >>> ExtendedContext.min(Decimal('-10'), Decimal('3'))\n        Decimal('-10')\n        >>> ExtendedContext.min(Decimal('1.0'), Decimal('1'))\n        Decimal('1.0')\n        >>> ExtendedContext.min(Decimal('7'), Decimal('NaN'))\n        Decimal('7')\n        >>> ExtendedContext.min(1, 2)\n        Decimal('1')\n        >>> ExtendedContext.min(Decimal(1), 2)\n        Decimal('1')\n        >>> ExtendedContext.min(1, Decimal(29))\n        Decimal('1')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.min(b, context=self)\n\n    def min_mag(self, a, b):\n        \"\"\"Compares the values numerically with their sign ignored.\n\n        >>> ExtendedContext.min_mag(Decimal('3'), Decimal('-2'))\n        Decimal('-2')\n        >>> ExtendedContext.min_mag(Decimal('-3'), Decimal('NaN'))\n        Decimal('-3')\n        >>> ExtendedContext.min_mag(1, -2)\n        Decimal('1')\n        >>> ExtendedContext.min_mag(Decimal(1), -2)\n        Decimal('1')\n        >>> ExtendedContext.min_mag(1, Decimal(-2))\n        Decimal('1')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.min_mag(b, context=self)\n\n    def minus(self, a):\n        \"\"\"Minus corresponds to unary prefix minus in Python.\n\n        The operation is evaluated using the same rules as subtract; the\n        operation minus(a) is calculated as subtract('0', a) where the '0'\n        has the same exponent as the operand.\n\n        >>> ExtendedContext.minus(Decimal('1.3'))\n        Decimal('-1.3')\n        >>> ExtendedContext.minus(Decimal('-1.3'))\n        Decimal('1.3')\n        >>> ExtendedContext.minus(1)\n        Decimal('-1')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.__neg__(context=self)\n\n    def multiply(self, a, b):\n        \"\"\"multiply multiplies two operands.\n\n        If either operand is a special value then the general rules apply.\n        Otherwise, the operands are multiplied together\n        ('long multiplication'), resulting in a number which may be as long as\n        the sum of the lengths of the two operands.\n\n        >>> ExtendedContext.multiply(Decimal('1.20'), Decimal('3'))\n        Decimal('3.60')\n        >>> ExtendedContext.multiply(Decimal('7'), Decimal('3'))\n        Decimal('21')\n        >>> ExtendedContext.multiply(Decimal('0.9'), Decimal('0.8'))\n        Decimal('0.72')\n        >>> ExtendedContext.multiply(Decimal('0.9'), Decimal('-0'))\n        Decimal('-0.0')\n        >>> ExtendedContext.multiply(Decimal('654321'), Decimal('654321'))\n        Decimal('4.28135971E+11')\n        >>> ExtendedContext.multiply(7, 7)\n        Decimal('49')\n        >>> ExtendedContext.multiply(Decimal(7), 7)\n        Decimal('49')\n        >>> ExtendedContext.multiply(7, Decimal(7))\n        Decimal('49')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        r = a.__mul__(b, context=self)\n        if r is NotImplemented:\n            raise TypeError(\"Unable to convert %s to Decimal\" % b)\n        else:\n            return r\n\n    def next_minus(self, a):\n        \"\"\"Returns the largest representable number smaller than a.\n\n        >>> c = ExtendedContext.copy()\n        >>> c.Emin = -999\n        >>> c.Emax = 999\n        >>> ExtendedContext.next_minus(Decimal('1'))\n        Decimal('0.999999999')\n        >>> c.next_minus(Decimal('1E-1007'))\n        Decimal('0E-1007')\n        >>> ExtendedContext.next_minus(Decimal('-1.00000003'))\n        Decimal('-1.00000004')\n        >>> c.next_minus(Decimal('Infinity'))\n        Decimal('9.99999999E+999')\n        >>> c.next_minus(1)\n        Decimal('0.999999999')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.next_minus(context=self)\n\n    def next_plus(self, a):\n        \"\"\"Returns the smallest representable number larger than a.\n\n        >>> c = ExtendedContext.copy()\n        >>> c.Emin = -999\n        >>> c.Emax = 999\n        >>> ExtendedContext.next_plus(Decimal('1'))\n        Decimal('1.00000001')\n        >>> c.next_plus(Decimal('-1E-1007'))\n        Decimal('-0E-1007')\n        >>> ExtendedContext.next_plus(Decimal('-1.00000003'))\n        Decimal('-1.00000002')\n        >>> c.next_plus(Decimal('-Infinity'))\n        Decimal('-9.99999999E+999')\n        >>> c.next_plus(1)\n        Decimal('1.00000001')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.next_plus(context=self)\n\n    def next_toward(self, a, b):\n        \"\"\"Returns the number closest to a, in direction towards b.\n\n        The result is the closest representable number from the first\n        operand (but not the first operand) that is in the direction\n        towards the second operand, unless the operands have the same\n        value.\n\n        >>> c = ExtendedContext.copy()\n        >>> c.Emin = -999\n        >>> c.Emax = 999\n        >>> c.next_toward(Decimal('1'), Decimal('2'))\n        Decimal('1.00000001')\n        >>> c.next_toward(Decimal('-1E-1007'), Decimal('1'))\n        Decimal('-0E-1007')\n        >>> c.next_toward(Decimal('-1.00000003'), Decimal('0'))\n        Decimal('-1.00000002')\n        >>> c.next_toward(Decimal('1'), Decimal('0'))\n        Decimal('0.999999999')\n        >>> c.next_toward(Decimal('1E-1007'), Decimal('-100'))\n        Decimal('0E-1007')\n        >>> c.next_toward(Decimal('-1.00000003'), Decimal('-10'))\n        Decimal('-1.00000004')\n        >>> c.next_toward(Decimal('0.00'), Decimal('-0.0000'))\n        Decimal('-0.00')\n        >>> c.next_toward(0, 1)\n        Decimal('1E-1007')\n        >>> c.next_toward(Decimal(0), 1)\n        Decimal('1E-1007')\n        >>> c.next_toward(0, Decimal(1))\n        Decimal('1E-1007')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.next_toward(b, context=self)\n\n    def normalize(self, a):\n        \"\"\"normalize reduces an operand to its simplest form.\n\n        Essentially a plus operation with all trailing zeros removed from the\n        result.\n\n        >>> ExtendedContext.normalize(Decimal('2.1'))\n        Decimal('2.1')\n        >>> ExtendedContext.normalize(Decimal('-2.0'))\n        Decimal('-2')\n        >>> ExtendedContext.normalize(Decimal('1.200'))\n        Decimal('1.2')\n        >>> ExtendedContext.normalize(Decimal('-120'))\n        Decimal('-1.2E+2')\n        >>> ExtendedContext.normalize(Decimal('120.00'))\n        Decimal('1.2E+2')\n        >>> ExtendedContext.normalize(Decimal('0.00'))\n        Decimal('0')\n        >>> ExtendedContext.normalize(6)\n        Decimal('6')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.normalize(context=self)\n\n    def number_class(self, a):\n        \"\"\"Returns an indication of the class of the operand.\n\n        The class is one of the following strings:\n          -sNaN\n          -NaN\n          -Infinity\n          -Normal\n          -Subnormal\n          -Zero\n          +Zero\n          +Subnormal\n          +Normal\n          +Infinity\n\n        >>> c = ExtendedContext.copy()\n        >>> c.Emin = -999\n        >>> c.Emax = 999\n        >>> c.number_class(Decimal('Infinity'))\n        '+Infinity'\n        >>> c.number_class(Decimal('1E-10'))\n        '+Normal'\n        >>> c.number_class(Decimal('2.50'))\n        '+Normal'\n        >>> c.number_class(Decimal('0.1E-999'))\n        '+Subnormal'\n        >>> c.number_class(Decimal('0'))\n        '+Zero'\n        >>> c.number_class(Decimal('-0'))\n        '-Zero'\n        >>> c.number_class(Decimal('-0.1E-999'))\n        '-Subnormal'\n        >>> c.number_class(Decimal('-1E-10'))\n        '-Normal'\n        >>> c.number_class(Decimal('-2.50'))\n        '-Normal'\n        >>> c.number_class(Decimal('-Infinity'))\n        '-Infinity'\n        >>> c.number_class(Decimal('NaN'))\n        'NaN'\n        >>> c.number_class(Decimal('-NaN'))\n        'NaN'\n        >>> c.number_class(Decimal('sNaN'))\n        'sNaN'\n        >>> c.number_class(123)\n        '+Normal'\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.number_class(context=self)\n\n    def plus(self, a):\n        \"\"\"Plus corresponds to unary prefix plus in Python.\n\n        The operation is evaluated using the same rules as add; the\n        operation plus(a) is calculated as add('0', a) where the '0'\n        has the same exponent as the operand.\n\n        >>> ExtendedContext.plus(Decimal('1.3'))\n        Decimal('1.3')\n        >>> ExtendedContext.plus(Decimal('-1.3'))\n        Decimal('-1.3')\n        >>> ExtendedContext.plus(-1)\n        Decimal('-1')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.__pos__(context=self)\n\n    def power(self, a, b, modulo=None):\n        \"\"\"Raises a to the power of b, to modulo if given.\n\n        With two arguments, compute a**b.  If a is negative then b\n        must be integral.  The result will be inexact unless b is\n        integral and the result is finite and can be expressed exactly\n        in 'precision' digits.\n\n        With three arguments, compute (a**b) % modulo.  For the\n        three argument form, the following restrictions on the\n        arguments hold:\n\n         - all three arguments must be integral\n         - b must be nonnegative\n         - at least one of a or b must be nonzero\n         - modulo must be nonzero and have at most 'precision' digits\n\n        The result of pow(a, b, modulo) is identical to the result\n        that would be obtained by computing (a**b) % modulo with\n        unbounded precision, but is computed more efficiently.  It is\n        always exact.\n\n        >>> c = ExtendedContext.copy()\n        >>> c.Emin = -999\n        >>> c.Emax = 999\n        >>> c.power(Decimal('2'), Decimal('3'))\n        Decimal('8')\n        >>> c.power(Decimal('-2'), Decimal('3'))\n        Decimal('-8')\n        >>> c.power(Decimal('2'), Decimal('-3'))\n        Decimal('0.125')\n        >>> c.power(Decimal('1.7'), Decimal('8'))\n        Decimal('69.7575744')\n        >>> c.power(Decimal('10'), Decimal('0.301029996'))\n        Decimal('2.00000000')\n        >>> c.power(Decimal('Infinity'), Decimal('-1'))\n        Decimal('0')\n        >>> c.power(Decimal('Infinity'), Decimal('0'))\n        Decimal('1')\n        >>> c.power(Decimal('Infinity'), Decimal('1'))\n        Decimal('Infinity')\n        >>> c.power(Decimal('-Infinity'), Decimal('-1'))\n        Decimal('-0')\n        >>> c.power(Decimal('-Infinity'), Decimal('0'))\n        Decimal('1')\n        >>> c.power(Decimal('-Infinity'), Decimal('1'))\n        Decimal('-Infinity')\n        >>> c.power(Decimal('-Infinity'), Decimal('2'))\n        Decimal('Infinity')\n        >>> c.power(Decimal('0'), Decimal('0'))\n        Decimal('NaN')\n\n        >>> c.power(Decimal('3'), Decimal('7'), Decimal('16'))\n        Decimal('11')\n        >>> c.power(Decimal('-3'), Decimal('7'), Decimal('16'))\n        Decimal('-11')\n        >>> c.power(Decimal('-3'), Decimal('8'), Decimal('16'))\n        Decimal('1')\n        >>> c.power(Decimal('3'), Decimal('7'), Decimal('-16'))\n        Decimal('11')\n        >>> c.power(Decimal('23E12345'), Decimal('67E189'), Decimal('123456789'))\n        Decimal('11729830')\n        >>> c.power(Decimal('-0'), Decimal('17'), Decimal('1729'))\n        Decimal('-0')\n        >>> c.power(Decimal('-23'), Decimal('0'), Decimal('65537'))\n        Decimal('1')\n        >>> ExtendedContext.power(7, 7)\n        Decimal('823543')\n        >>> ExtendedContext.power(Decimal(7), 7)\n        Decimal('823543')\n        >>> ExtendedContext.power(7, Decimal(7), 2)\n        Decimal('1')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        r = a.__pow__(b, modulo, context=self)\n        if r is NotImplemented:\n            raise TypeError(\"Unable to convert %s to Decimal\" % b)\n        else:\n            return r\n\n    def quantize(self, a, b):\n        \"\"\"Returns a value equal to 'a' (rounded), having the exponent of 'b'.\n\n        The coefficient of the result is derived from that of the left-hand\n        operand.  It may be rounded using the current rounding setting (if the\n        exponent is being increased), multiplied by a positive power of ten (if\n        the exponent is being decreased), or is unchanged (if the exponent is\n        already equal to that of the right-hand operand).\n\n        Unlike other operations, if the length of the coefficient after the\n        quantize operation would be greater than precision then an Invalid\n        operation condition is raised.  This guarantees that, unless there is\n        an error condition, the exponent of the result of a quantize is always\n        equal to that of the right-hand operand.\n\n        Also unlike other operations, quantize will never raise Underflow, even\n        if the result is subnormal and inexact.\n\n        >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('0.001'))\n        Decimal('2.170')\n        >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('0.01'))\n        Decimal('2.17')\n        >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('0.1'))\n        Decimal('2.2')\n        >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('1e+0'))\n        Decimal('2')\n        >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('1e+1'))\n        Decimal('0E+1')\n        >>> ExtendedContext.quantize(Decimal('-Inf'), Decimal('Infinity'))\n        Decimal('-Infinity')\n        >>> ExtendedContext.quantize(Decimal('2'), Decimal('Infinity'))\n        Decimal('NaN')\n        >>> ExtendedContext.quantize(Decimal('-0.1'), Decimal('1'))\n        Decimal('-0')\n        >>> ExtendedContext.quantize(Decimal('-0'), Decimal('1e+5'))\n        Decimal('-0E+5')\n        >>> ExtendedContext.quantize(Decimal('+35236450.6'), Decimal('1e-2'))\n        Decimal('NaN')\n        >>> ExtendedContext.quantize(Decimal('-35236450.6'), Decimal('1e-2'))\n        Decimal('NaN')\n        >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e-1'))\n        Decimal('217.0')\n        >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e-0'))\n        Decimal('217')\n        >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e+1'))\n        Decimal('2.2E+2')\n        >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e+2'))\n        Decimal('2E+2')\n        >>> ExtendedContext.quantize(1, 2)\n        Decimal('1')\n        >>> ExtendedContext.quantize(Decimal(1), 2)\n        Decimal('1')\n        >>> ExtendedContext.quantize(1, Decimal(2))\n        Decimal('1')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.quantize(b, context=self)\n\n    def radix(self):\n        \"\"\"Just returns 10, as this is Decimal, :)\n\n        >>> ExtendedContext.radix()\n        Decimal('10')\n        \"\"\"\n        return Decimal(10)\n\n    def remainder(self, a, b):\n        \"\"\"Returns the remainder from integer division.\n\n        The result is the residue of the dividend after the operation of\n        calculating integer division as described for divide-integer, rounded\n        to precision digits if necessary.  The sign of the result, if\n        non-zero, is the same as that of the original dividend.\n\n        This operation will fail under the same conditions as integer division\n        (that is, if integer division on the same two operands would fail, the\n        remainder cannot be calculated).\n\n        >>> ExtendedContext.remainder(Decimal('2.1'), Decimal('3'))\n        Decimal('2.1')\n        >>> ExtendedContext.remainder(Decimal('10'), Decimal('3'))\n        Decimal('1')\n        >>> ExtendedContext.remainder(Decimal('-10'), Decimal('3'))\n        Decimal('-1')\n        >>> ExtendedContext.remainder(Decimal('10.2'), Decimal('1'))\n        Decimal('0.2')\n        >>> ExtendedContext.remainder(Decimal('10'), Decimal('0.3'))\n        Decimal('0.1')\n        >>> ExtendedContext.remainder(Decimal('3.6'), Decimal('1.3'))\n        Decimal('1.0')\n        >>> ExtendedContext.remainder(22, 6)\n        Decimal('4')\n        >>> ExtendedContext.remainder(Decimal(22), 6)\n        Decimal('4')\n        >>> ExtendedContext.remainder(22, Decimal(6))\n        Decimal('4')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        r = a.__mod__(b, context=self)\n        if r is NotImplemented:\n            raise TypeError(\"Unable to convert %s to Decimal\" % b)\n        else:\n            return r\n\n    def remainder_near(self, a, b):\n        \"\"\"Returns to be \"a - b * n\", where n is the integer nearest the exact\n        value of \"x / b\" (if two integers are equally near then the even one\n        is chosen).  If the result is equal to 0 then its sign will be the\n        sign of a.\n\n        This operation will fail under the same conditions as integer division\n        (that is, if integer division on the same two operands would fail, the\n        remainder cannot be calculated).\n\n        >>> ExtendedContext.remainder_near(Decimal('2.1'), Decimal('3'))\n        Decimal('-0.9')\n        >>> ExtendedContext.remainder_near(Decimal('10'), Decimal('6'))\n        Decimal('-2')\n        >>> ExtendedContext.remainder_near(Decimal('10'), Decimal('3'))\n        Decimal('1')\n        >>> ExtendedContext.remainder_near(Decimal('-10'), Decimal('3'))\n        Decimal('-1')\n        >>> ExtendedContext.remainder_near(Decimal('10.2'), Decimal('1'))\n        Decimal('0.2')\n        >>> ExtendedContext.remainder_near(Decimal('10'), Decimal('0.3'))\n        Decimal('0.1')\n        >>> ExtendedContext.remainder_near(Decimal('3.6'), Decimal('1.3'))\n        Decimal('-0.3')\n        >>> ExtendedContext.remainder_near(3, 11)\n        Decimal('3')\n        >>> ExtendedContext.remainder_near(Decimal(3), 11)\n        Decimal('3')\n        >>> ExtendedContext.remainder_near(3, Decimal(11))\n        Decimal('3')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.remainder_near(b, context=self)\n\n    def rotate(self, a, b):\n        \"\"\"Returns a rotated copy of a, b times.\n\n        The coefficient of the result is a rotated copy of the digits in\n        the coefficient of the first operand.  The number of places of\n        rotation is taken from the absolute value of the second operand,\n        with the rotation being to the left if the second operand is\n        positive or to the right otherwise.\n\n        >>> ExtendedContext.rotate(Decimal('34'), Decimal('8'))\n        Decimal('400000003')\n        >>> ExtendedContext.rotate(Decimal('12'), Decimal('9'))\n        Decimal('12')\n        >>> ExtendedContext.rotate(Decimal('123456789'), Decimal('-2'))\n        Decimal('891234567')\n        >>> ExtendedContext.rotate(Decimal('123456789'), Decimal('0'))\n        Decimal('123456789')\n        >>> ExtendedContext.rotate(Decimal('123456789'), Decimal('+2'))\n        Decimal('345678912')\n        >>> ExtendedContext.rotate(1333333, 1)\n        Decimal('13333330')\n        >>> ExtendedContext.rotate(Decimal(1333333), 1)\n        Decimal('13333330')\n        >>> ExtendedContext.rotate(1333333, Decimal(1))\n        Decimal('13333330')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.rotate(b, context=self)\n\n    def same_quantum(self, a, b):\n        \"\"\"Returns True if the two operands have the same exponent.\n\n        The result is never affected by either the sign or the coefficient of\n        either operand.\n\n        >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('0.001'))\n        False\n        >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('0.01'))\n        True\n        >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('1'))\n        False\n        >>> ExtendedContext.same_quantum(Decimal('Inf'), Decimal('-Inf'))\n        True\n        >>> ExtendedContext.same_quantum(10000, -1)\n        True\n        >>> ExtendedContext.same_quantum(Decimal(10000), -1)\n        True\n        >>> ExtendedContext.same_quantum(10000, Decimal(-1))\n        True\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.same_quantum(b)\n\n    def scaleb (self, a, b):\n        \"\"\"Returns the first operand after adding the second value its exp.\n\n        >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('-2'))\n        Decimal('0.0750')\n        >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('0'))\n        Decimal('7.50')\n        >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('3'))\n        Decimal('7.50E+3')\n        >>> ExtendedContext.scaleb(1, 4)\n        Decimal('1E+4')\n        >>> ExtendedContext.scaleb(Decimal(1), 4)\n        Decimal('1E+4')\n        >>> ExtendedContext.scaleb(1, Decimal(4))\n        Decimal('1E+4')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.scaleb(b, context=self)\n\n    def shift(self, a, b):\n        \"\"\"Returns a shifted copy of a, b times.\n\n        The coefficient of the result is a shifted copy of the digits\n        in the coefficient of the first operand.  The number of places\n        to shift is taken from the absolute value of the second operand,\n        with the shift being to the left if the second operand is\n        positive or to the right otherwise.  Digits shifted into the\n        coefficient are zeros.\n\n        >>> ExtendedContext.shift(Decimal('34'), Decimal('8'))\n        Decimal('400000000')\n        >>> ExtendedContext.shift(Decimal('12'), Decimal('9'))\n        Decimal('0')\n        >>> ExtendedContext.shift(Decimal('123456789'), Decimal('-2'))\n        Decimal('1234567')\n        >>> ExtendedContext.shift(Decimal('123456789'), Decimal('0'))\n        Decimal('123456789')\n        >>> ExtendedContext.shift(Decimal('123456789'), Decimal('+2'))\n        Decimal('345678900')\n        >>> ExtendedContext.shift(88888888, 2)\n        Decimal('888888800')\n        >>> ExtendedContext.shift(Decimal(88888888), 2)\n        Decimal('888888800')\n        >>> ExtendedContext.shift(88888888, Decimal(2))\n        Decimal('888888800')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.shift(b, context=self)\n\n    def sqrt(self, a):\n        \"\"\"Square root of a non-negative number to context precision.\n\n        If the result must be inexact, it is rounded using the round-half-even\n        algorithm.\n\n        >>> ExtendedContext.sqrt(Decimal('0'))\n        Decimal('0')\n        >>> ExtendedContext.sqrt(Decimal('-0'))\n        Decimal('-0')\n        >>> ExtendedContext.sqrt(Decimal('0.39'))\n        Decimal('0.624499800')\n        >>> ExtendedContext.sqrt(Decimal('100'))\n        Decimal('10')\n        >>> ExtendedContext.sqrt(Decimal('1'))\n        Decimal('1')\n        >>> ExtendedContext.sqrt(Decimal('1.0'))\n        Decimal('1.0')\n        >>> ExtendedContext.sqrt(Decimal('1.00'))\n        Decimal('1.0')\n        >>> ExtendedContext.sqrt(Decimal('7'))\n        Decimal('2.64575131')\n        >>> ExtendedContext.sqrt(Decimal('10'))\n        Decimal('3.16227766')\n        >>> ExtendedContext.sqrt(2)\n        Decimal('1.41421356')\n        >>> ExtendedContext.prec\n        9\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.sqrt(context=self)\n\n    def subtract(self, a, b):\n        \"\"\"Return the difference between the two operands.\n\n        >>> ExtendedContext.subtract(Decimal('1.3'), Decimal('1.07'))\n        Decimal('0.23')\n        >>> ExtendedContext.subtract(Decimal('1.3'), Decimal('1.30'))\n        Decimal('0.00')\n        >>> ExtendedContext.subtract(Decimal('1.3'), Decimal('2.07'))\n        Decimal('-0.77')\n        >>> ExtendedContext.subtract(8, 5)\n        Decimal('3')\n        >>> ExtendedContext.subtract(Decimal(8), 5)\n        Decimal('3')\n        >>> ExtendedContext.subtract(8, Decimal(5))\n        Decimal('3')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        r = a.__sub__(b, context=self)\n        if r is NotImplemented:\n            raise TypeError(\"Unable to convert %s to Decimal\" % b)\n        else:\n            return r\n\n    def to_eng_string(self, a):\n        \"\"\"Convert to a string, using engineering notation if an exponent is needed.\n\n        Engineering notation has an exponent which is a multiple of 3.  This\n        can leave up to 3 digits to the left of the decimal place and may\n        require the addition of either one or two trailing zeros.\n\n        The operation is not affected by the context.\n\n        >>> ExtendedContext.to_eng_string(Decimal('123E+1'))\n        '1.23E+3'\n        >>> ExtendedContext.to_eng_string(Decimal('123E+3'))\n        '123E+3'\n        >>> ExtendedContext.to_eng_string(Decimal('123E-10'))\n        '12.3E-9'\n        >>> ExtendedContext.to_eng_string(Decimal('-123E-12'))\n        '-123E-12'\n        >>> ExtendedContext.to_eng_string(Decimal('7E-7'))\n        '700E-9'\n        >>> ExtendedContext.to_eng_string(Decimal('7E+1'))\n        '70'\n        >>> ExtendedContext.to_eng_string(Decimal('0E+1'))\n        '0.00E+3'\n\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.to_eng_string(context=self)\n\n    def to_sci_string(self, a):\n        \"\"\"Converts a number to a string, using scientific notation.\n\n        The operation is not affected by the context.\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.__str__(context=self)\n\n    def to_integral_exact(self, a):\n        \"\"\"Rounds to an integer.\n\n        When the operand has a negative exponent, the result is the same\n        as using the quantize() operation using the given operand as the\n        left-hand-operand, 1E+0 as the right-hand-operand, and the precision\n        of the operand as the precision setting; Inexact and Rounded flags\n        are allowed in this operation.  The rounding mode is taken from the\n        context.\n\n        >>> ExtendedContext.to_integral_exact(Decimal('2.1'))\n        Decimal('2')\n        >>> ExtendedContext.to_integral_exact(Decimal('100'))\n        Decimal('100')\n        >>> ExtendedContext.to_integral_exact(Decimal('100.0'))\n        Decimal('100')\n        >>> ExtendedContext.to_integral_exact(Decimal('101.5'))\n        Decimal('102')\n        >>> ExtendedContext.to_integral_exact(Decimal('-101.5'))\n        Decimal('-102')\n        >>> ExtendedContext.to_integral_exact(Decimal('10E+5'))\n        Decimal('1.0E+6')\n        >>> ExtendedContext.to_integral_exact(Decimal('7.89E+77'))\n        Decimal('7.89E+77')\n        >>> ExtendedContext.to_integral_exact(Decimal('-Inf'))\n        Decimal('-Infinity')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.to_integral_exact(context=self)\n\n    def to_integral_value(self, a):\n        \"\"\"Rounds to an integer.\n\n        When the operand has a negative exponent, the result is the same\n        as using the quantize() operation using the given operand as the\n        left-hand-operand, 1E+0 as the right-hand-operand, and the precision\n        of the operand as the precision setting, except that no flags will\n        be set.  The rounding mode is taken from the context.\n\n        >>> ExtendedContext.to_integral_value(Decimal('2.1'))\n        Decimal('2')\n        >>> ExtendedContext.to_integral_value(Decimal('100'))\n        Decimal('100')\n        >>> ExtendedContext.to_integral_value(Decimal('100.0'))\n        Decimal('100')\n        >>> ExtendedContext.to_integral_value(Decimal('101.5'))\n        Decimal('102')\n        >>> ExtendedContext.to_integral_value(Decimal('-101.5'))\n        Decimal('-102')\n        >>> ExtendedContext.to_integral_value(Decimal('10E+5'))\n        Decimal('1.0E+6')\n        >>> ExtendedContext.to_integral_value(Decimal('7.89E+77'))\n        Decimal('7.89E+77')\n        >>> ExtendedContext.to_integral_value(Decimal('-Inf'))\n        Decimal('-Infinity')\n        \"\"\"\n        a = _convert_other(a, raiseit=True)\n        return a.to_integral_value(context=self)\n\n    # the method name changed, but we provide also the old one, for compatibility\n    to_integral = to_integral_value\n\nclass _WorkRep(object):\n    __slots__ = ('sign','int','exp')\n    # sign: 0 or 1\n    # int:  int\n    # exp:  None, int, or string\n\n    def __init__(self, value=None):\n        if value is None:\n            self.sign = None\n            self.int = 0\n            self.exp = None\n        elif isinstance(value, Decimal):\n            self.sign = value._sign\n            self.int = int(value._int)\n            self.exp = value._exp\n        else:\n            # assert isinstance(value, tuple)\n            self.sign = value[0]\n            self.int = value[1]\n            self.exp = value[2]\n\n    def __repr__(self):\n        return \"(%r, %r, %r)\" % (self.sign, self.int, self.exp)\n\n\n\ndef _normalize(op1, op2, prec = 0):\n    \"\"\"Normalizes op1, op2 to have the same exp and length of coefficient.\n\n    Done during addition.\n    \"\"\"\n    if op1.exp < op2.exp:\n        tmp = op2\n        other = op1\n    else:\n        tmp = op1\n        other = op2\n\n    # Let exp = min(tmp.exp - 1, tmp.adjusted() - precision - 1).\n    # Then adding 10**exp to tmp has the same effect (after rounding)\n    # as adding any positive quantity smaller than 10**exp; similarly\n    # for subtraction.  So if other is smaller than 10**exp we replace\n    # it with 10**exp.  This avoids tmp.exp - other.exp getting too large.\n    tmp_len = len(str(tmp.int))\n    other_len = len(str(other.int))\n    exp = tmp.exp + min(-1, tmp_len - prec - 2)\n    if other_len + other.exp - 1 < exp:\n        other.int = 1\n        other.exp = exp\n\n    tmp.int *= 10 ** (tmp.exp - other.exp)\n    tmp.exp = other.exp\n    return op1, op2\n\n##### Integer arithmetic functions used by ln, log10, exp and __pow__ #####\n\n_nbits = int.bit_length\n\ndef _decimal_lshift_exact(n, e):\n    \"\"\" Given integers n and e, return n * 10**e if it's an integer, else None.\n\n    The computation is designed to avoid computing large powers of 10\n    unnecessarily.\n\n    >>> _decimal_lshift_exact(3, 4)\n    30000\n    >>> _decimal_lshift_exact(300, -999999999)  # returns None\n\n    \"\"\"\n    if n == 0:\n        return 0\n    elif e >= 0:\n        return n * 10**e\n    else:\n        # val_n = largest power of 10 dividing n.\n        str_n = str(abs(n))\n        val_n = len(str_n) - len(str_n.rstrip('0'))\n        return None if val_n < -e else n // 10**-e\n\ndef _sqrt_nearest(n, a):\n    \"\"\"Closest integer to the square root of the positive integer n.  a is\n    an initial approximation to the square root.  Any positive integer\n    will do for a, but the closer a is to the square root of n the\n    faster convergence will be.\n\n    \"\"\"\n    if n <= 0 or a <= 0:\n        raise ValueError(\"Both arguments to _sqrt_nearest should be positive.\")\n\n    b=0\n    while a != b:\n        b, a = a, a--n//a>>1\n    return a\n\ndef _rshift_nearest(x, shift):\n    \"\"\"Given an integer x and a nonnegative integer shift, return closest\n    integer to x / 2**shift; use round-to-even in case of a tie.\n\n    \"\"\"\n    b, q = 1 << shift, x >> shift\n    return q + (2*(x & (b-1)) + (q&1) > b)\n\ndef _div_nearest(a, b):\n    \"\"\"Closest integer to a/b, a and b positive integers; rounds to even\n    in the case of a tie.\n\n    \"\"\"\n    q, r = divmod(a, b)\n    return q + (2*r + (q&1) > b)\n\ndef _ilog(x, M, L = 8):\n    \"\"\"Integer approximation to M*log(x/M), with absolute error boundable\n    in terms only of x/M.\n\n    Given positive integers x and M, return an integer approximation to\n    M * log(x/M).  For L = 8 and 0.1 <= x/M <= 10 the difference\n    between the approximation and the exact result is at most 22.  For\n    L = 8 and 1.0 <= x/M <= 10.0 the difference is at most 15.  In\n    both cases these are upper bounds on the error; it will usually be\n    much smaller.\"\"\"\n\n    # The basic algorithm is the following: let log1p be the function\n    # log1p(x) = log(1+x).  Then log(x/M) = log1p((x-M)/M).  We use\n    # the reduction\n    #\n    #    log1p(y) = 2*log1p(y/(1+sqrt(1+y)))\n    #\n    # repeatedly until the argument to log1p is small (< 2**-L in\n    # absolute value).  For small y we can use the Taylor series\n    # expansion\n    #\n    #    log1p(y) ~ y - y**2/2 + y**3/3 - ... - (-y)**T/T\n    #\n    # truncating at T such that y**T is small enough.  The whole\n    # computation is carried out in a form of fixed-point arithmetic,\n    # with a real number z being represented by an integer\n    # approximation to z*M.  To avoid loss of precision, the y below\n    # is actually an integer approximation to 2**R*y*M, where R is the\n    # number of reductions performed so far.\n\n    y = x-M\n    # argument reduction; R = number of reductions performed\n    R = 0\n    while (R <= L and abs(y) << L-R >= M or\n           R > L and abs(y) >> R-L >= M):\n        y = _div_nearest((M*y) << 1,\n                         M + _sqrt_nearest(M*(M+_rshift_nearest(y, R)), M))\n        R += 1\n\n    # Taylor series with T terms\n    T = -int(-10*len(str(M))//(3*L))\n    yshift = _rshift_nearest(y, R)\n    w = _div_nearest(M, T)\n    for k in range(T-1, 0, -1):\n        w = _div_nearest(M, k) - _div_nearest(yshift*w, M)\n\n    return _div_nearest(w*y, M)\n\ndef _dlog10(c, e, p):\n    \"\"\"Given integers c, e and p with c > 0, p >= 0, compute an integer\n    approximation to 10**p * log10(c*10**e), with an absolute error of\n    at most 1.  Assumes that c*10**e is not exactly 1.\"\"\"\n\n    # increase precision by 2; compensate for this by dividing\n    # final result by 100\n    p += 2\n\n    # write c*10**e as d*10**f with either:\n    #   f >= 0 and 1 <= d <= 10, or\n    #   f <= 0 and 0.1 <= d <= 1.\n    # Thus for c*10**e close to 1, f = 0\n    l = len(str(c))\n    f = e+l - (e+l >= 1)\n\n    if p > 0:\n        M = 10**p\n        k = e+p-f\n        if k >= 0:\n            c *= 10**k\n        else:\n            c = _div_nearest(c, 10**-k)\n\n        log_d = _ilog(c, M) # error < 5 + 22 = 27\n        log_10 = _log10_digits(p) # error < 1\n        log_d = _div_nearest(log_d*M, log_10)\n        log_tenpower = f*M # exact\n    else:\n        log_d = 0  # error < 2.31\n        log_tenpower = _div_nearest(f, 10**-p) # error < 0.5\n\n    return _div_nearest(log_tenpower+log_d, 100)\n\ndef _dlog(c, e, p):\n    \"\"\"Given integers c, e and p with c > 0, compute an integer\n    approximation to 10**p * log(c*10**e), with an absolute error of\n    at most 1.  Assumes that c*10**e is not exactly 1.\"\"\"\n\n    # Increase precision by 2. The precision increase is compensated\n    # for at the end with a division by 100.\n    p += 2\n\n    # rewrite c*10**e as d*10**f with either f >= 0 and 1 <= d <= 10,\n    # or f <= 0 and 0.1 <= d <= 1.  Then we can compute 10**p * log(c*10**e)\n    # as 10**p * log(d) + 10**p*f * log(10).\n    l = len(str(c))\n    f = e+l - (e+l >= 1)\n\n    # compute approximation to 10**p*log(d), with error < 27\n    if p > 0:\n        k = e+p-f\n        if k >= 0:\n            c *= 10**k\n        else:\n            c = _div_nearest(c, 10**-k)  # error of <= 0.5 in c\n\n        # _ilog magnifies existing error in c by a factor of at most 10\n        log_d = _ilog(c, 10**p) # error < 5 + 22 = 27\n    else:\n        # p <= 0: just approximate the whole thing by 0; error < 2.31\n        log_d = 0\n\n    # compute approximation to f*10**p*log(10), with error < 11.\n    if f:\n        extra = len(str(abs(f)))-1\n        if p + extra >= 0:\n            # error in f * _log10_digits(p+extra) < |f| * 1 = |f|\n            # after division, error < |f|/10**extra + 0.5 < 10 + 0.5 < 11\n            f_log_ten = _div_nearest(f*_log10_digits(p+extra), 10**extra)\n        else:\n            f_log_ten = 0\n    else:\n        f_log_ten = 0\n\n    # error in sum < 11+27 = 38; error after division < 0.38 + 0.5 < 1\n    return _div_nearest(f_log_ten + log_d, 100)\n\nclass _Log10Memoize(object):\n    \"\"\"Class to compute, store, and allow retrieval of, digits of the\n    constant log(10) = 2.302585....  This constant is needed by\n    Decimal.ln, Decimal.log10, Decimal.exp and Decimal.__pow__.\"\"\"\n    def __init__(self):\n        self.digits = \"23025850929940456840179914546843642076011014886\"\n\n    def getdigits(self, p):\n        \"\"\"Given an integer p >= 0, return floor(10**p)*log(10).\n\n        For example, self.getdigits(3) returns 2302.\n        \"\"\"\n        # digits are stored as a string, for quick conversion to\n        # integer in the case that we've already computed enough\n        # digits; the stored digits should always be correct\n        # (truncated, not rounded to nearest).\n        if p < 0:\n            raise ValueError(\"p should be nonnegative\")\n\n        if p >= len(self.digits):\n            # compute p+3, p+6, p+9, ... digits; continue until at\n            # least one of the extra digits is nonzero\n            extra = 3\n            while True:\n                # compute p+extra digits, correct to within 1ulp\n                M = 10**(p+extra+2)\n                digits = str(_div_nearest(_ilog(10*M, M), 100))\n                if digits[-extra:] != '0'*extra:\n                    break\n                extra += 3\n            # keep all reliable digits so far; remove trailing zeros\n            # and next nonzero digit\n            self.digits = digits.rstrip('0')[:-1]\n        return int(self.digits[:p+1])\n\n_log10_digits = _Log10Memoize().getdigits\n\ndef _iexp(x, M, L=8):\n    \"\"\"Given integers x and M, M > 0, such that x/M is small in absolute\n    value, compute an integer approximation to M*exp(x/M).  For 0 <=\n    x/M <= 2.4, the absolute error in the result is bounded by 60 (and\n    is usually much smaller).\"\"\"\n\n    # Algorithm: to compute exp(z) for a real number z, first divide z\n    # by a suitable power R of 2 so that |z/2**R| < 2**-L.  Then\n    # compute expm1(z/2**R) = exp(z/2**R) - 1 using the usual Taylor\n    # series\n    #\n    #     expm1(x) = x + x**2/2! + x**3/3! + ...\n    #\n    # Now use the identity\n    #\n    #     expm1(2x) = expm1(x)*(expm1(x)+2)\n    #\n    # R times to compute the sequence expm1(z/2**R),\n    # expm1(z/2**(R-1)), ... , exp(z/2), exp(z).\n\n    # Find R such that x/2**R/M <= 2**-L\n    R = _nbits((x<<L)//M)\n\n    # Taylor series.  (2**L)**T > M\n    T = -int(-10*len(str(M))//(3*L))\n    y = _div_nearest(x, T)\n    Mshift = M<<R\n    for i in range(T-1, 0, -1):\n        y = _div_nearest(x*(Mshift + y), Mshift * i)\n\n    # Expansion\n    for k in range(R-1, -1, -1):\n        Mshift = M<<(k+2)\n        y = _div_nearest(y*(y+Mshift), Mshift)\n\n    return M+y\n\ndef _dexp(c, e, p):\n    \"\"\"Compute an approximation to exp(c*10**e), with p decimal places of\n    precision.\n\n    Returns integers d, f such that:\n\n      10**(p-1) <= d <= 10**p, and\n      (d-1)*10**f < exp(c*10**e) < (d+1)*10**f\n\n    In other words, d*10**f is an approximation to exp(c*10**e) with p\n    digits of precision, and with an error in d of at most 1.  This is\n    almost, but not quite, the same as the error being < 1ulp: when d\n    = 10**(p-1) the error could be up to 10 ulp.\"\"\"\n\n    # we'll call iexp with M = 10**(p+2), giving p+3 digits of precision\n    p += 2\n\n    # compute log(10) with extra precision = adjusted exponent of c*10**e\n    extra = max(0, e + len(str(c)) - 1)\n    q = p + extra\n\n    # compute quotient c*10**e/(log(10)) = c*10**(e+q)/(log(10)*10**q),\n    # rounding down\n    shift = e+q\n    if shift >= 0:\n        cshift = c*10**shift\n    else:\n        cshift = c//10**-shift\n    quot, rem = divmod(cshift, _log10_digits(q))\n\n    # reduce remainder back to original precision\n    rem = _div_nearest(rem, 10**extra)\n\n    # error in result of _iexp < 120;  error after division < 0.62\n    return _div_nearest(_iexp(rem, 10**p), 1000), quot - p + 3\n\ndef _dpower(xc, xe, yc, ye, p):\n    \"\"\"Given integers xc, xe, yc and ye representing Decimals x = xc*10**xe and\n    y = yc*10**ye, compute x**y.  Returns a pair of integers (c, e) such that:\n\n      10**(p-1) <= c <= 10**p, and\n      (c-1)*10**e < x**y < (c+1)*10**e\n\n    in other words, c*10**e is an approximation to x**y with p digits\n    of precision, and with an error in c of at most 1.  (This is\n    almost, but not quite, the same as the error being < 1ulp: when c\n    == 10**(p-1) we can only guarantee error < 10ulp.)\n\n    We assume that: x is positive and not equal to 1, and y is nonzero.\n    \"\"\"\n\n    # Find b such that 10**(b-1) <= |y| <= 10**b\n    b = len(str(abs(yc))) + ye\n\n    # log(x) = lxc*10**(-p-b-1), to p+b+1 places after the decimal point\n    lxc = _dlog(xc, xe, p+b+1)\n\n    # compute product y*log(x) = yc*lxc*10**(-p-b-1+ye) = pc*10**(-p-1)\n    shift = ye-b\n    if shift >= 0:\n        pc = lxc*yc*10**shift\n    else:\n        pc = _div_nearest(lxc*yc, 10**-shift)\n\n    if pc == 0:\n        # we prefer a result that isn't exactly 1; this makes it\n        # easier to compute a correctly rounded result in __pow__\n        if ((len(str(xc)) + xe >= 1) == (yc > 0)): # if x**y > 1:\n            coeff, exp = 10**(p-1)+1, 1-p\n        else:\n            coeff, exp = 10**p-1, -p\n    else:\n        coeff, exp = _dexp(pc, -(p+1), p+1)\n        coeff = _div_nearest(coeff, 10)\n        exp += 1\n\n    return coeff, exp\n\ndef _log10_lb(c, correction = {\n        '1': 100, '2': 70, '3': 53, '4': 40, '5': 31,\n        '6': 23, '7': 16, '8': 10, '9': 5}):\n    \"\"\"Compute a lower bound for 100*log10(c) for a positive integer c.\"\"\"\n    if c <= 0:\n        raise ValueError(\"The argument to _log10_lb should be nonnegative.\")\n    str_c = str(c)\n    return 100*len(str_c) - correction[str_c[0]]\n\n##### Helper Functions ####################################################\n\ndef _convert_other(other, raiseit=False, allow_float=False):\n    \"\"\"Convert other to Decimal.\n\n    Verifies that it's ok to use in an implicit construction.\n    If allow_float is true, allow conversion from float;  this\n    is used in the comparison methods (__eq__ and friends).\n\n    \"\"\"\n    if isinstance(other, Decimal):\n        return other\n    if isinstance(other, int):\n        return Decimal(other)\n    if allow_float and isinstance(other, float):\n        return Decimal.from_float(other)\n\n    if raiseit:\n        raise TypeError(\"Unable to convert %s to Decimal\" % other)\n    return NotImplemented\n\ndef _convert_for_comparison(self, other, equality_op=False):\n    \"\"\"Given a Decimal instance self and a Python object other, return\n    a pair (s, o) of Decimal instances such that \"s op o\" is\n    equivalent to \"self op other\" for any of the 6 comparison\n    operators \"op\".\n\n    \"\"\"\n    if isinstance(other, Decimal):\n        return self, other\n\n    # Comparison with a Rational instance (also includes integers):\n    # self op n/d <=> self*d op n (for n and d integers, d positive).\n    # A NaN or infinity can be left unchanged without affecting the\n    # comparison result.\n    if isinstance(other, _numbers.Rational):\n        if not self._is_special:\n            self = _dec_from_triple(self._sign,\n                                    str(int(self._int) * other.denominator),\n                                    self._exp)\n        return self, Decimal(other.numerator)\n\n    # Comparisons with float and complex types.  == and != comparisons\n    # with complex numbers should succeed, returning either True or False\n    # as appropriate.  Other comparisons return NotImplemented.\n    if equality_op and isinstance(other, _numbers.Complex) and other.imag == 0:\n        other = other.real\n    if isinstance(other, float):\n        context = getcontext()\n        if equality_op:\n            context.flags[FloatOperation] = 1\n        else:\n            context._raise_error(FloatOperation,\n                \"strict semantics for mixing floats and Decimals are enabled\")\n        return self, Decimal.from_float(other)\n    return NotImplemented, NotImplemented\n\n\n##### Setup Specific Contexts ############################################\n\n# The default context prototype used by Context()\n# Is mutable, so that new contexts can have different default values\n\nDefaultContext = Context(\n        prec=28, rounding=ROUND_HALF_EVEN,\n        traps=[DivisionByZero, Overflow, InvalidOperation],\n        flags=[],\n        Emax=999999,\n        Emin=-999999,\n        capitals=1,\n        clamp=0\n)\n\n# Pre-made alternate contexts offered by the specification\n# Don't change these; the user should be able to select these\n# contexts and be able to reproduce results from other implementations\n# of the spec.\n\nBasicContext = Context(\n        prec=9, rounding=ROUND_HALF_UP,\n        traps=[DivisionByZero, Overflow, InvalidOperation, Clamped, Underflow],\n        flags=[],\n)\n\nExtendedContext = Context(\n        prec=9, rounding=ROUND_HALF_EVEN,\n        traps=[],\n        flags=[],\n)\n\n\n##### crud for parsing strings #############################################\n#\n# Regular expression used for parsing numeric strings.  Additional\n# comments:\n#\n# 1. Uncomment the two '\\s*' lines to allow leading and/or trailing\n# whitespace.  But note that the specification disallows whitespace in\n# a numeric string.\n#\n# 2. For finite numbers (not infinities and NaNs) the body of the\n# number between the optional sign and the optional exponent must have\n# at least one decimal digit, possibly after the decimal point.  The\n# lookahead expression '(?=\\d|\\.\\d)' checks this.\n\nimport re\n_parser = re.compile(r\"\"\"        # A numeric string consists of:\n#    \\s*\n    (?P<sign>[-+])?              # an optional sign, followed by either...\n    (\n        (?=\\d|\\.\\d)              # ...a number (with at least one digit)\n        (?P<int>\\d*)             # having a (possibly empty) integer part\n        (\\.(?P<frac>\\d*))?       # followed by an optional fractional part\n        (E(?P<exp>[-+]?\\d+))?    # followed by an optional exponent, or...\n    |\n        Inf(inity)?              # ...an infinity, or...\n    |\n        (?P<signal>s)?           # ...an (optionally signaling)\n        NaN                      # NaN\n        (?P<diag>\\d*)            # with (possibly empty) diagnostic info.\n    )\n#    \\s*\n    \\Z\n\"\"\", re.VERBOSE | re.IGNORECASE).match\n\n_all_zeros = re.compile('0*$').match\n_exact_half = re.compile('50*$').match\n\n##### PEP3101 support functions ##############################################\n# The functions in this section have little to do with the Decimal\n# class, and could potentially be reused or adapted for other pure\n# Python numeric classes that want to implement __format__\n#\n# A format specifier for Decimal looks like:\n#\n#   [[fill]align][sign][#][0][minimumwidth][,][.precision][type]\n\n_parse_format_specifier_regex = re.compile(r\"\"\"\\A\n(?:\n   (?P<fill>.)?\n   (?P<align>[<>=^])\n)?\n(?P<sign>[-+ ])?\n(?P<alt>\\#)?\n(?P<zeropad>0)?\n(?P<minimumwidth>(?!0)\\d+)?\n(?P<thousands_sep>,)?\n(?:\\.(?P<precision>0|(?!0)\\d+))?\n(?P<type>[eEfFgGn%])?\n\\Z\n\"\"\", re.VERBOSE|re.DOTALL)\n\ndel re\n\n# The locale module is only needed for the 'n' format specifier.  The\n# rest of the PEP 3101 code functions quite happily without it, so we\n# don't care too much if locale isn't present.\ntry:\n    import locale as _locale\nexcept ImportError:\n    pass\n\ndef _parse_format_specifier(format_spec, _localeconv=None):\n    \"\"\"Parse and validate a format specifier.\n\n    Turns a standard numeric format specifier into a dict, with the\n    following entries:\n\n      fill: fill character to pad field to minimum width\n      align: alignment type, either '<', '>', '=' or '^'\n      sign: either '+', '-' or ' '\n      minimumwidth: nonnegative integer giving minimum width\n      zeropad: boolean, indicating whether to pad with zeros\n      thousands_sep: string to use as thousands separator, or ''\n      grouping: grouping for thousands separators, in format\n        used by localeconv\n      decimal_point: string to use for decimal point\n      precision: nonnegative integer giving precision, or None\n      type: one of the characters 'eEfFgG%', or None\n\n    \"\"\"\n    m = _parse_format_specifier_regex.match(format_spec)\n    if m is None:\n        raise ValueError(\"Invalid format specifier: \" + format_spec)\n\n    # get the dictionary\n    format_dict = m.groupdict()\n\n    # zeropad; defaults for fill and alignment.  If zero padding\n    # is requested, the fill and align fields should be absent.\n    fill = format_dict['fill']\n    align = format_dict['align']\n    format_dict['zeropad'] = (format_dict['zeropad'] is not None)\n    if format_dict['zeropad']:\n        if fill is not None:\n            raise ValueError(\"Fill character conflicts with '0'\"\n                             \" in format specifier: \" + format_spec)\n        if align is not None:\n            raise ValueError(\"Alignment conflicts with '0' in \"\n                             \"format specifier: \" + format_spec)\n    format_dict['fill'] = fill or ' '\n    # PEP 3101 originally specified that the default alignment should\n    # be left;  it was later agreed that right-aligned makes more sense\n    # for numeric types.  See http://bugs.python.org/issue6857.\n    format_dict['align'] = align or '>'\n\n    # default sign handling: '-' for negative, '' for positive\n    if format_dict['sign'] is None:\n        format_dict['sign'] = '-'\n\n    # minimumwidth defaults to 0; precision remains None if not given\n    format_dict['minimumwidth'] = int(format_dict['minimumwidth'] or '0')\n    if format_dict['precision'] is not None:\n        format_dict['precision'] = int(format_dict['precision'])\n\n    # if format type is 'g' or 'G' then a precision of 0 makes little\n    # sense; convert it to 1.  Same if format type is unspecified.\n    if format_dict['precision'] == 0:\n        if format_dict['type'] is None or format_dict['type'] in 'gGn':\n            format_dict['precision'] = 1\n\n    # determine thousands separator, grouping, and decimal separator, and\n    # add appropriate entries to format_dict\n    if format_dict['type'] == 'n':\n        # apart from separators, 'n' behaves just like 'g'\n        format_dict['type'] = 'g'\n        if _localeconv is None:\n            _localeconv = _locale.localeconv()\n        if format_dict['thousands_sep'] is not None:\n            raise ValueError(\"Explicit thousands separator conflicts with \"\n                             \"'n' type in format specifier: \" + format_spec)\n        format_dict['thousands_sep'] = _localeconv['thousands_sep']\n        format_dict['grouping'] = _localeconv['grouping']\n        format_dict['decimal_point'] = _localeconv['decimal_point']\n    else:\n        if format_dict['thousands_sep'] is None:\n            format_dict['thousands_sep'] = ''\n        format_dict['grouping'] = [3, 0]\n        format_dict['decimal_point'] = '.'\n\n    return format_dict\n\ndef _format_align(sign, body, spec):\n    \"\"\"Given an unpadded, non-aligned numeric string 'body' and sign\n    string 'sign', add padding and alignment conforming to the given\n    format specifier dictionary 'spec' (as produced by\n    parse_format_specifier).\n\n    \"\"\"\n    # how much extra space do we have to play with?\n    minimumwidth = spec['minimumwidth']\n    fill = spec['fill']\n    padding = fill*(minimumwidth - len(sign) - len(body))\n\n    align = spec['align']\n    if align == '<':\n        result = sign + body + padding\n    elif align == '>':\n        result = padding + sign + body\n    elif align == '=':\n        result = sign + padding + body\n    elif align == '^':\n        half = len(padding)//2\n        result = padding[:half] + sign + body + padding[half:]\n    else:\n        raise ValueError('Unrecognised alignment field')\n\n    return result\n\ndef _group_lengths(grouping):\n    \"\"\"Convert a localeconv-style grouping into a (possibly infinite)\n    iterable of integers representing group lengths.\n\n    \"\"\"\n    # The result from localeconv()['grouping'], and the input to this\n    # function, should be a list of integers in one of the\n    # following three forms:\n    #\n    #   (1) an empty list, or\n    #   (2) nonempty list of positive integers + [0]\n    #   (3) list of positive integers + [locale.CHAR_MAX], or\n\n    from itertools import chain, repeat\n    if not grouping:\n        return []\n    elif grouping[-1] == 0 and len(grouping) >= 2:\n        return chain(grouping[:-1], repeat(grouping[-2]))\n    elif grouping[-1] == _locale.CHAR_MAX:\n        return grouping[:-1]\n    else:\n        raise ValueError('unrecognised format for grouping')\n\ndef _insert_thousands_sep(digits, spec, min_width=1):\n    \"\"\"Insert thousands separators into a digit string.\n\n    spec is a dictionary whose keys should include 'thousands_sep' and\n    'grouping'; typically it's the result of parsing the format\n    specifier using _parse_format_specifier.\n\n    The min_width keyword argument gives the minimum length of the\n    result, which will be padded on the left with zeros if necessary.\n\n    If necessary, the zero padding adds an extra '0' on the left to\n    avoid a leading thousands separator.  For example, inserting\n    commas every three digits in '123456', with min_width=8, gives\n    '0,123,456', even though that has length 9.\n\n    \"\"\"\n\n    sep = spec['thousands_sep']\n    grouping = spec['grouping']\n\n    groups = []\n    for l in _group_lengths(grouping):\n        if l <= 0:\n            raise ValueError(\"group length should be positive\")\n        # max(..., 1) forces at least 1 digit to the left of a separator\n        l = min(max(len(digits), min_width, 1), l)\n        groups.append('0'*(l - len(digits)) + digits[-l:])\n        digits = digits[:-l]\n        min_width -= l\n        if not digits and min_width <= 0:\n            break\n        min_width -= len(sep)\n    else:\n        l = max(len(digits), min_width, 1)\n        groups.append('0'*(l - len(digits)) + digits[-l:])\n    return sep.join(reversed(groups))\n\ndef _format_sign(is_negative, spec):\n    \"\"\"Determine sign character.\"\"\"\n\n    if is_negative:\n        return '-'\n    elif spec['sign'] in ' +':\n        return spec['sign']\n    else:\n        return ''\n\ndef _format_number(is_negative, intpart, fracpart, exp, spec):\n    \"\"\"Format a number, given the following data:\n\n    is_negative: true if the number is negative, else false\n    intpart: string of digits that must appear before the decimal point\n    fracpart: string of digits that must come after the point\n    exp: exponent, as an integer\n    spec: dictionary resulting from parsing the format specifier\n\n    This function uses the information in spec to:\n      insert separators (decimal separator and thousands separators)\n      format the sign\n      format the exponent\n      add trailing '%' for the '%' type\n      zero-pad if necessary\n      fill and align if necessary\n    \"\"\"\n\n    sign = _format_sign(is_negative, spec)\n\n    if fracpart or spec['alt']:\n        fracpart = spec['decimal_point'] + fracpart\n\n    if exp != 0 or spec['type'] in 'eE':\n        echar = {'E': 'E', 'e': 'e', 'G': 'E', 'g': 'e'}[spec['type']]\n        fracpart += \"{0}{1:+}\".format(echar, exp)\n    if spec['type'] == '%':\n        fracpart += '%'\n\n    if spec['zeropad']:\n        min_width = spec['minimumwidth'] - len(fracpart) - len(sign)\n    else:\n        min_width = 0\n    intpart = _insert_thousands_sep(intpart, spec, min_width)\n\n    return _format_align(sign, intpart+fracpart, spec)\n\n\n##### Useful Constants (internal use only) ################################\n\n# Reusable defaults\n_Infinity = Decimal('Inf')\n_NegativeInfinity = Decimal('-Inf')\n_NaN = Decimal('NaN')\n_Zero = Decimal(0)\n_One = Decimal(1)\n_NegativeOne = Decimal(-1)\n\n# _SignedInfinity[sign] is infinity w/ that sign\n_SignedInfinity = (_Infinity, _NegativeInfinity)\n\n# Constants related to the hash implementation;  hash(x) is based\n# on the reduction of x modulo _PyHASH_MODULUS\n_PyHASH_MODULUS = sys.hash_info.modulus\n# hash values to use for positive and negative infinities, and nans\n_PyHASH_INF = sys.hash_info.inf\n_PyHASH_NAN = sys.hash_info.nan\n\n# _PyHASH_10INV is the inverse of 10 modulo the prime _PyHASH_MODULUS\n_PyHASH_10INV = pow(10, _PyHASH_MODULUS - 2, _PyHASH_MODULUS)\ndel sys\n"
  },
  {
    "path": "rd/usr/lib/python3.8/_pyio.py",
    "content": "\"\"\"\nPython implementation of the io module.\n\"\"\"\n\nimport os\nimport abc\nimport codecs\nimport errno\nimport stat\nimport sys\n# Import _thread instead of threading to reduce startup cost\nfrom _thread import allocate_lock as Lock\nif sys.platform in {'win32', 'cygwin'}:\n    from msvcrt import setmode as _setmode\nelse:\n    _setmode = None\n\nimport io\nfrom io import (__all__, SEEK_SET, SEEK_CUR, SEEK_END)\n\nvalid_seek_flags = {0, 1, 2}  # Hardwired values\nif hasattr(os, 'SEEK_HOLE') :\n    valid_seek_flags.add(os.SEEK_HOLE)\n    valid_seek_flags.add(os.SEEK_DATA)\n\n# open() uses st_blksize whenever we can\nDEFAULT_BUFFER_SIZE = 8 * 1024  # bytes\n\n# NOTE: Base classes defined here are registered with the \"official\" ABCs\n# defined in io.py. We don't use real inheritance though, because we don't want\n# to inherit the C implementations.\n\n# Rebind for compatibility\nBlockingIOError = BlockingIOError\n\n# Does io.IOBase finalizer log the exception if the close() method fails?\n# The exception is ignored silently by default in release build.\n_IOBASE_EMITS_UNRAISABLE = (hasattr(sys, \"gettotalrefcount\") or sys.flags.dev_mode)\n\n\ndef open(file, mode=\"r\", buffering=-1, encoding=None, errors=None,\n         newline=None, closefd=True, opener=None):\n\n    r\"\"\"Open file and return a stream.  Raise OSError upon failure.\n\n    file is either a text or byte string giving the name (and the path\n    if the file isn't in the current working directory) of the file to\n    be opened or an integer file descriptor of the file to be\n    wrapped. (If a file descriptor is given, it is closed when the\n    returned I/O object is closed, unless closefd is set to False.)\n\n    mode is an optional string that specifies the mode in which the file is\n    opened. It defaults to 'r' which means open for reading in text mode. Other\n    common values are 'w' for writing (truncating the file if it already\n    exists), 'x' for exclusive creation of a new file, and 'a' for appending\n    (which on some Unix systems, means that all writes append to the end of the\n    file regardless of the current seek position). In text mode, if encoding is\n    not specified the encoding used is platform dependent. (For reading and\n    writing raw bytes use binary mode and leave encoding unspecified.) The\n    available modes are:\n\n    ========= ===============================================================\n    Character Meaning\n    --------- ---------------------------------------------------------------\n    'r'       open for reading (default)\n    'w'       open for writing, truncating the file first\n    'x'       create a new file and open it for writing\n    'a'       open for writing, appending to the end of the file if it exists\n    'b'       binary mode\n    't'       text mode (default)\n    '+'       open a disk file for updating (reading and writing)\n    'U'       universal newline mode (deprecated)\n    ========= ===============================================================\n\n    The default mode is 'rt' (open for reading text). For binary random\n    access, the mode 'w+b' opens and truncates the file to 0 bytes, while\n    'r+b' opens the file without truncation. The 'x' mode implies 'w' and\n    raises an `FileExistsError` if the file already exists.\n\n    Python distinguishes between files opened in binary and text modes,\n    even when the underlying operating system doesn't. Files opened in\n    binary mode (appending 'b' to the mode argument) return contents as\n    bytes objects without any decoding. In text mode (the default, or when\n    't' is appended to the mode argument), the contents of the file are\n    returned as strings, the bytes having been first decoded using a\n    platform-dependent encoding or using the specified encoding if given.\n\n    'U' mode is deprecated and will raise an exception in future versions\n    of Python.  It has no effect in Python 3.  Use newline to control\n    universal newlines mode.\n\n    buffering is an optional integer used to set the buffering policy.\n    Pass 0 to switch buffering off (only allowed in binary mode), 1 to select\n    line buffering (only usable in text mode), and an integer > 1 to indicate\n    the size of a fixed-size chunk buffer.  When no buffering argument is\n    given, the default buffering policy works as follows:\n\n    * Binary files are buffered in fixed-size chunks; the size of the buffer\n      is chosen using a heuristic trying to determine the underlying device's\n      \"block size\" and falling back on `io.DEFAULT_BUFFER_SIZE`.\n      On many systems, the buffer will typically be 4096 or 8192 bytes long.\n\n    * \"Interactive\" text files (files for which isatty() returns True)\n      use line buffering.  Other text files use the policy described above\n      for binary files.\n\n    encoding is the str name of the encoding used to decode or encode the\n    file. This should only be used in text mode. The default encoding is\n    platform dependent, but any encoding supported by Python can be\n    passed.  See the codecs module for the list of supported encodings.\n\n    errors is an optional string that specifies how encoding errors are to\n    be handled---this argument should not be used in binary mode. Pass\n    'strict' to raise a ValueError exception if there is an encoding error\n    (the default of None has the same effect), or pass 'ignore' to ignore\n    errors. (Note that ignoring encoding errors can lead to data loss.)\n    See the documentation for codecs.register for a list of the permitted\n    encoding error strings.\n\n    newline is a string controlling how universal newlines works (it only\n    applies to text mode). It can be None, '', '\\n', '\\r', and '\\r\\n'.  It works\n    as follows:\n\n    * On input, if newline is None, universal newlines mode is\n      enabled. Lines in the input can end in '\\n', '\\r', or '\\r\\n', and\n      these are translated into '\\n' before being returned to the\n      caller. If it is '', universal newline mode is enabled, but line\n      endings are returned to the caller untranslated. If it has any of\n      the other legal values, input lines are only terminated by the given\n      string, and the line ending is returned to the caller untranslated.\n\n    * On output, if newline is None, any '\\n' characters written are\n      translated to the system default line separator, os.linesep. If\n      newline is '', no translation takes place. If newline is any of the\n      other legal values, any '\\n' characters written are translated to\n      the given string.\n\n    closedfd is a bool. If closefd is False, the underlying file descriptor will\n    be kept open when the file is closed. This does not work when a file name is\n    given and must be True in that case.\n\n    The newly created file is non-inheritable.\n\n    A custom opener can be used by passing a callable as *opener*. The\n    underlying file descriptor for the file object is then obtained by calling\n    *opener* with (*file*, *flags*). *opener* must return an open file\n    descriptor (passing os.open as *opener* results in functionality similar to\n    passing None).\n\n    open() returns a file object whose type depends on the mode, and\n    through which the standard file operations such as reading and writing\n    are performed. When open() is used to open a file in a text mode ('w',\n    'r', 'wt', 'rt', etc.), it returns a TextIOWrapper. When used to open\n    a file in a binary mode, the returned class varies: in read binary\n    mode, it returns a BufferedReader; in write binary and append binary\n    modes, it returns a BufferedWriter, and in read/write mode, it returns\n    a BufferedRandom.\n\n    It is also possible to use a string or bytearray as a file for both\n    reading and writing. For strings StringIO can be used like a file\n    opened in a text mode, and for bytes a BytesIO can be used like a file\n    opened in a binary mode.\n    \"\"\"\n    if not isinstance(file, int):\n        file = os.fspath(file)\n    if not isinstance(file, (str, bytes, int)):\n        raise TypeError(\"invalid file: %r\" % file)\n    if not isinstance(mode, str):\n        raise TypeError(\"invalid mode: %r\" % mode)\n    if not isinstance(buffering, int):\n        raise TypeError(\"invalid buffering: %r\" % buffering)\n    if encoding is not None and not isinstance(encoding, str):\n        raise TypeError(\"invalid encoding: %r\" % encoding)\n    if errors is not None and not isinstance(errors, str):\n        raise TypeError(\"invalid errors: %r\" % errors)\n    modes = set(mode)\n    if modes - set(\"axrwb+tU\") or len(mode) > len(modes):\n        raise ValueError(\"invalid mode: %r\" % mode)\n    creating = \"x\" in modes\n    reading = \"r\" in modes\n    writing = \"w\" in modes\n    appending = \"a\" in modes\n    updating = \"+\" in modes\n    text = \"t\" in modes\n    binary = \"b\" in modes\n    if \"U\" in modes:\n        if creating or writing or appending or updating:\n            raise ValueError(\"mode U cannot be combined with 'x', 'w', 'a', or '+'\")\n        import warnings\n        warnings.warn(\"'U' mode is deprecated\",\n                      DeprecationWarning, 2)\n        reading = True\n    if text and binary:\n        raise ValueError(\"can't have text and binary mode at once\")\n    if creating + reading + writing + appending > 1:\n        raise ValueError(\"can't have read/write/append mode at once\")\n    if not (creating or reading or writing or appending):\n        raise ValueError(\"must have exactly one of read/write/append mode\")\n    if binary and encoding is not None:\n        raise ValueError(\"binary mode doesn't take an encoding argument\")\n    if binary and errors is not None:\n        raise ValueError(\"binary mode doesn't take an errors argument\")\n    if binary and newline is not None:\n        raise ValueError(\"binary mode doesn't take a newline argument\")\n    if binary and buffering == 1:\n        import warnings\n        warnings.warn(\"line buffering (buffering=1) isn't supported in binary \"\n                      \"mode, the default buffer size will be used\",\n                      RuntimeWarning, 2)\n    raw = FileIO(file,\n                 (creating and \"x\" or \"\") +\n                 (reading and \"r\" or \"\") +\n                 (writing and \"w\" or \"\") +\n                 (appending and \"a\" or \"\") +\n                 (updating and \"+\" or \"\"),\n                 closefd, opener=opener)\n    result = raw\n    try:\n        line_buffering = False\n        if buffering == 1 or buffering < 0 and raw.isatty():\n            buffering = -1\n            line_buffering = True\n        if buffering < 0:\n            buffering = DEFAULT_BUFFER_SIZE\n            try:\n                bs = os.fstat(raw.fileno()).st_blksize\n            except (OSError, AttributeError):\n                pass\n            else:\n                if bs > 1:\n                    buffering = bs\n        if buffering < 0:\n            raise ValueError(\"invalid buffering size\")\n        if buffering == 0:\n            if binary:\n                return result\n            raise ValueError(\"can't have unbuffered text I/O\")\n        if updating:\n            buffer = BufferedRandom(raw, buffering)\n        elif creating or writing or appending:\n            buffer = BufferedWriter(raw, buffering)\n        elif reading:\n            buffer = BufferedReader(raw, buffering)\n        else:\n            raise ValueError(\"unknown mode: %r\" % mode)\n        result = buffer\n        if binary:\n            return result\n        text = TextIOWrapper(buffer, encoding, errors, newline, line_buffering)\n        result = text\n        text.mode = mode\n        return result\n    except:\n        result.close()\n        raise\n\n# Define a default pure-Python implementation for open_code()\n# that does not allow hooks. Warn on first use. Defined for tests.\ndef _open_code_with_warning(path):\n    \"\"\"Opens the provided file with mode ``'rb'``. This function\n    should be used when the intent is to treat the contents as\n    executable code.\n\n    ``path`` should be an absolute path.\n\n    When supported by the runtime, this function can be hooked\n    in order to allow embedders more control over code files.\n    This functionality is not supported on the current runtime.\n    \"\"\"\n    import warnings\n    warnings.warn(\"_pyio.open_code() may not be using hooks\",\n                  RuntimeWarning, 2)\n    return open(path, \"rb\")\n\ntry:\n    open_code = io.open_code\nexcept AttributeError:\n    open_code = _open_code_with_warning\n\n\nclass DocDescriptor:\n    \"\"\"Helper for builtins.open.__doc__\n    \"\"\"\n    def __get__(self, obj, typ=None):\n        return (\n            \"open(file, mode='r', buffering=-1, encoding=None, \"\n                 \"errors=None, newline=None, closefd=True)\\n\\n\" +\n            open.__doc__)\n\nclass OpenWrapper:\n    \"\"\"Wrapper for builtins.open\n\n    Trick so that open won't become a bound method when stored\n    as a class variable (as dbm.dumb does).\n\n    See initstdio() in Python/pylifecycle.c.\n    \"\"\"\n    __doc__ = DocDescriptor()\n\n    def __new__(cls, *args, **kwargs):\n        return open(*args, **kwargs)\n\n\n# In normal operation, both `UnsupportedOperation`s should be bound to the\n# same object.\ntry:\n    UnsupportedOperation = io.UnsupportedOperation\nexcept AttributeError:\n    class UnsupportedOperation(OSError, ValueError):\n        pass\n\n\nclass IOBase(metaclass=abc.ABCMeta):\n\n    \"\"\"The abstract base class for all I/O classes, acting on streams of\n    bytes. There is no public constructor.\n\n    This class provides dummy implementations for many methods that\n    derived classes can override selectively; the default implementations\n    represent a file that cannot be read, written or seeked.\n\n    Even though IOBase does not declare read or write because\n    their signatures will vary, implementations and clients should\n    consider those methods part of the interface. Also, implementations\n    may raise UnsupportedOperation when operations they do not support are\n    called.\n\n    The basic type used for binary data read from or written to a file is\n    bytes. Other bytes-like objects are accepted as method arguments too.\n    Text I/O classes work with str data.\n\n    Note that calling any method (even inquiries) on a closed stream is\n    undefined. Implementations may raise OSError in this case.\n\n    IOBase (and its subclasses) support the iterator protocol, meaning\n    that an IOBase object can be iterated over yielding the lines in a\n    stream.\n\n    IOBase also supports the :keyword:`with` statement. In this example,\n    fp is closed after the suite of the with statement is complete:\n\n    with open('spam.txt', 'r') as fp:\n        fp.write('Spam and eggs!')\n    \"\"\"\n\n    ### Internal ###\n\n    def _unsupported(self, name):\n        \"\"\"Internal: raise an OSError exception for unsupported operations.\"\"\"\n        raise UnsupportedOperation(\"%s.%s() not supported\" %\n                                   (self.__class__.__name__, name))\n\n    ### Positioning ###\n\n    def seek(self, pos, whence=0):\n        \"\"\"Change stream position.\n\n        Change the stream position to byte offset pos. Argument pos is\n        interpreted relative to the position indicated by whence.  Values\n        for whence are ints:\n\n        * 0 -- start of stream (the default); offset should be zero or positive\n        * 1 -- current stream position; offset may be negative\n        * 2 -- end of stream; offset is usually negative\n        Some operating systems / file systems could provide additional values.\n\n        Return an int indicating the new absolute position.\n        \"\"\"\n        self._unsupported(\"seek\")\n\n    def tell(self):\n        \"\"\"Return an int indicating the current stream position.\"\"\"\n        return self.seek(0, 1)\n\n    def truncate(self, pos=None):\n        \"\"\"Truncate file to size bytes.\n\n        Size defaults to the current IO position as reported by tell().  Return\n        the new size.\n        \"\"\"\n        self._unsupported(\"truncate\")\n\n    ### Flush and close ###\n\n    def flush(self):\n        \"\"\"Flush write buffers, if applicable.\n\n        This is not implemented for read-only and non-blocking streams.\n        \"\"\"\n        self._checkClosed()\n        # XXX Should this return the number of bytes written???\n\n    __closed = False\n\n    def close(self):\n        \"\"\"Flush and close the IO object.\n\n        This method has no effect if the file is already closed.\n        \"\"\"\n        if not self.__closed:\n            try:\n                self.flush()\n            finally:\n                self.__closed = True\n\n    def __del__(self):\n        \"\"\"Destructor.  Calls close().\"\"\"\n        try:\n            closed = self.closed\n        except AttributeError:\n            # If getting closed fails, then the object is probably\n            # in an unusable state, so ignore.\n            return\n\n        if closed:\n            return\n\n        if _IOBASE_EMITS_UNRAISABLE:\n            self.close()\n        else:\n            # The try/except block is in case this is called at program\n            # exit time, when it's possible that globals have already been\n            # deleted, and then the close() call might fail.  Since\n            # there's nothing we can do about such failures and they annoy\n            # the end users, we suppress the traceback.\n            try:\n                self.close()\n            except:\n                pass\n\n    ### Inquiries ###\n\n    def seekable(self):\n        \"\"\"Return a bool indicating whether object supports random access.\n\n        If False, seek(), tell() and truncate() will raise OSError.\n        This method may need to do a test seek().\n        \"\"\"\n        return False\n\n    def _checkSeekable(self, msg=None):\n        \"\"\"Internal: raise UnsupportedOperation if file is not seekable\n        \"\"\"\n        if not self.seekable():\n            raise UnsupportedOperation(\"File or stream is not seekable.\"\n                                       if msg is None else msg)\n\n    def readable(self):\n        \"\"\"Return a bool indicating whether object was opened for reading.\n\n        If False, read() will raise OSError.\n        \"\"\"\n        return False\n\n    def _checkReadable(self, msg=None):\n        \"\"\"Internal: raise UnsupportedOperation if file is not readable\n        \"\"\"\n        if not self.readable():\n            raise UnsupportedOperation(\"File or stream is not readable.\"\n                                       if msg is None else msg)\n\n    def writable(self):\n        \"\"\"Return a bool indicating whether object was opened for writing.\n\n        If False, write() and truncate() will raise OSError.\n        \"\"\"\n        return False\n\n    def _checkWritable(self, msg=None):\n        \"\"\"Internal: raise UnsupportedOperation if file is not writable\n        \"\"\"\n        if not self.writable():\n            raise UnsupportedOperation(\"File or stream is not writable.\"\n                                       if msg is None else msg)\n\n    @property\n    def closed(self):\n        \"\"\"closed: bool.  True iff the file has been closed.\n\n        For backwards compatibility, this is a property, not a predicate.\n        \"\"\"\n        return self.__closed\n\n    def _checkClosed(self, msg=None):\n        \"\"\"Internal: raise a ValueError if file is closed\n        \"\"\"\n        if self.closed:\n            raise ValueError(\"I/O operation on closed file.\"\n                             if msg is None else msg)\n\n    ### Context manager ###\n\n    def __enter__(self):  # That's a forward reference\n        \"\"\"Context management protocol.  Returns self (an instance of IOBase).\"\"\"\n        self._checkClosed()\n        return self\n\n    def __exit__(self, *args):\n        \"\"\"Context management protocol.  Calls close()\"\"\"\n        self.close()\n\n    ### Lower-level APIs ###\n\n    # XXX Should these be present even if unimplemented?\n\n    def fileno(self):\n        \"\"\"Returns underlying file descriptor (an int) if one exists.\n\n        An OSError is raised if the IO object does not use a file descriptor.\n        \"\"\"\n        self._unsupported(\"fileno\")\n\n    def isatty(self):\n        \"\"\"Return a bool indicating whether this is an 'interactive' stream.\n\n        Return False if it can't be determined.\n        \"\"\"\n        self._checkClosed()\n        return False\n\n    ### Readline[s] and writelines ###\n\n    def readline(self, size=-1):\n        r\"\"\"Read and return a line of bytes from the stream.\n\n        If size is specified, at most size bytes will be read.\n        Size should be an int.\n\n        The line terminator is always b'\\n' for binary files; for text\n        files, the newlines argument to open can be used to select the line\n        terminator(s) recognized.\n        \"\"\"\n        # For backwards compatibility, a (slowish) readline().\n        if hasattr(self, \"peek\"):\n            def nreadahead():\n                readahead = self.peek(1)\n                if not readahead:\n                    return 1\n                n = (readahead.find(b\"\\n\") + 1) or len(readahead)\n                if size >= 0:\n                    n = min(n, size)\n                return n\n        else:\n            def nreadahead():\n                return 1\n        if size is None:\n            size = -1\n        else:\n            try:\n                size_index = size.__index__\n            except AttributeError:\n                raise TypeError(f\"{size!r} is not an integer\")\n            else:\n                size = size_index()\n        res = bytearray()\n        while size < 0 or len(res) < size:\n            b = self.read(nreadahead())\n            if not b:\n                break\n            res += b\n            if res.endswith(b\"\\n\"):\n                break\n        return bytes(res)\n\n    def __iter__(self):\n        self._checkClosed()\n        return self\n\n    def __next__(self):\n        line = self.readline()\n        if not line:\n            raise StopIteration\n        return line\n\n    def readlines(self, hint=None):\n        \"\"\"Return a list of lines from the stream.\n\n        hint can be specified to control the number of lines read: no more\n        lines will be read if the total size (in bytes/characters) of all\n        lines so far exceeds hint.\n        \"\"\"\n        if hint is None or hint <= 0:\n            return list(self)\n        n = 0\n        lines = []\n        for line in self:\n            lines.append(line)\n            n += len(line)\n            if n >= hint:\n                break\n        return lines\n\n    def writelines(self, lines):\n        \"\"\"Write a list of lines to the stream.\n\n        Line separators are not added, so it is usual for each of the lines\n        provided to have a line separator at the end.\n        \"\"\"\n        self._checkClosed()\n        for line in lines:\n            self.write(line)\n\nio.IOBase.register(IOBase)\n\n\nclass RawIOBase(IOBase):\n\n    \"\"\"Base class for raw binary I/O.\"\"\"\n\n    # The read() method is implemented by calling readinto(); derived\n    # classes that want to support read() only need to implement\n    # readinto() as a primitive operation.  In general, readinto() can be\n    # more efficient than read().\n\n    # (It would be tempting to also provide an implementation of\n    # readinto() in terms of read(), in case the latter is a more suitable\n    # primitive operation, but that would lead to nasty recursion in case\n    # a subclass doesn't implement either.)\n\n    def read(self, size=-1):\n        \"\"\"Read and return up to size bytes, where size is an int.\n\n        Returns an empty bytes object on EOF, or None if the object is\n        set not to block and has no data to read.\n        \"\"\"\n        if size is None:\n            size = -1\n        if size < 0:\n            return self.readall()\n        b = bytearray(size.__index__())\n        n = self.readinto(b)\n        if n is None:\n            return None\n        del b[n:]\n        return bytes(b)\n\n    def readall(self):\n        \"\"\"Read until EOF, using multiple read() call.\"\"\"\n        res = bytearray()\n        while True:\n            data = self.read(DEFAULT_BUFFER_SIZE)\n            if not data:\n                break\n            res += data\n        if res:\n            return bytes(res)\n        else:\n            # b'' or None\n            return data\n\n    def readinto(self, b):\n        \"\"\"Read bytes into a pre-allocated bytes-like object b.\n\n        Returns an int representing the number of bytes read (0 for EOF), or\n        None if the object is set not to block and has no data to read.\n        \"\"\"\n        self._unsupported(\"readinto\")\n\n    def write(self, b):\n        \"\"\"Write the given buffer to the IO stream.\n\n        Returns the number of bytes written, which may be less than the\n        length of b in bytes.\n        \"\"\"\n        self._unsupported(\"write\")\n\nio.RawIOBase.register(RawIOBase)\nfrom _io import FileIO\nRawIOBase.register(FileIO)\n\n\nclass BufferedIOBase(IOBase):\n\n    \"\"\"Base class for buffered IO objects.\n\n    The main difference with RawIOBase is that the read() method\n    supports omitting the size argument, and does not have a default\n    implementation that defers to readinto().\n\n    In addition, read(), readinto() and write() may raise\n    BlockingIOError if the underlying raw stream is in non-blocking\n    mode and not ready; unlike their raw counterparts, they will never\n    return None.\n\n    A typical implementation should not inherit from a RawIOBase\n    implementation, but wrap one.\n    \"\"\"\n\n    def read(self, size=-1):\n        \"\"\"Read and return up to size bytes, where size is an int.\n\n        If the argument is omitted, None, or negative, reads and\n        returns all data until EOF.\n\n        If the argument is positive, and the underlying raw stream is\n        not 'interactive', multiple raw reads may be issued to satisfy\n        the byte count (unless EOF is reached first).  But for\n        interactive raw streams (XXX and for pipes?), at most one raw\n        read will be issued, and a short result does not imply that\n        EOF is imminent.\n\n        Returns an empty bytes array on EOF.\n\n        Raises BlockingIOError if the underlying raw stream has no\n        data at the moment.\n        \"\"\"\n        self._unsupported(\"read\")\n\n    def read1(self, size=-1):\n        \"\"\"Read up to size bytes with at most one read() system call,\n        where size is an int.\n        \"\"\"\n        self._unsupported(\"read1\")\n\n    def readinto(self, b):\n        \"\"\"Read bytes into a pre-allocated bytes-like object b.\n\n        Like read(), this may issue multiple reads to the underlying raw\n        stream, unless the latter is 'interactive'.\n\n        Returns an int representing the number of bytes read (0 for EOF).\n\n        Raises BlockingIOError if the underlying raw stream has no\n        data at the moment.\n        \"\"\"\n\n        return self._readinto(b, read1=False)\n\n    def readinto1(self, b):\n        \"\"\"Read bytes into buffer *b*, using at most one system call\n\n        Returns an int representing the number of bytes read (0 for EOF).\n\n        Raises BlockingIOError if the underlying raw stream has no\n        data at the moment.\n        \"\"\"\n\n        return self._readinto(b, read1=True)\n\n    def _readinto(self, b, read1):\n        if not isinstance(b, memoryview):\n            b = memoryview(b)\n        b = b.cast('B')\n\n        if read1:\n            data = self.read1(len(b))\n        else:\n            data = self.read(len(b))\n        n = len(data)\n\n        b[:n] = data\n\n        return n\n\n    def write(self, b):\n        \"\"\"Write the given bytes buffer to the IO stream.\n\n        Return the number of bytes written, which is always the length of b\n        in bytes.\n\n        Raises BlockingIOError if the buffer is full and the\n        underlying raw stream cannot accept more data at the moment.\n        \"\"\"\n        self._unsupported(\"write\")\n\n    def detach(self):\n        \"\"\"\n        Separate the underlying raw stream from the buffer and return it.\n\n        After the raw stream has been detached, the buffer is in an unusable\n        state.\n        \"\"\"\n        self._unsupported(\"detach\")\n\nio.BufferedIOBase.register(BufferedIOBase)\n\n\nclass _BufferedIOMixin(BufferedIOBase):\n\n    \"\"\"A mixin implementation of BufferedIOBase with an underlying raw stream.\n\n    This passes most requests on to the underlying raw stream.  It\n    does *not* provide implementations of read(), readinto() or\n    write().\n    \"\"\"\n\n    def __init__(self, raw):\n        self._raw = raw\n\n    ### Positioning ###\n\n    def seek(self, pos, whence=0):\n        new_position = self.raw.seek(pos, whence)\n        if new_position < 0:\n            raise OSError(\"seek() returned an invalid position\")\n        return new_position\n\n    def tell(self):\n        pos = self.raw.tell()\n        if pos < 0:\n            raise OSError(\"tell() returned an invalid position\")\n        return pos\n\n    def truncate(self, pos=None):\n        # Flush the stream.  We're mixing buffered I/O with lower-level I/O,\n        # and a flush may be necessary to synch both views of the current\n        # file state.\n        self.flush()\n\n        if pos is None:\n            pos = self.tell()\n        # XXX: Should seek() be used, instead of passing the position\n        # XXX  directly to truncate?\n        return self.raw.truncate(pos)\n\n    ### Flush and close ###\n\n    def flush(self):\n        if self.closed:\n            raise ValueError(\"flush on closed file\")\n        self.raw.flush()\n\n    def close(self):\n        if self.raw is not None and not self.closed:\n            try:\n                # may raise BlockingIOError or BrokenPipeError etc\n                self.flush()\n            finally:\n                self.raw.close()\n\n    def detach(self):\n        if self.raw is None:\n            raise ValueError(\"raw stream already detached\")\n        self.flush()\n        raw = self._raw\n        self._raw = None\n        return raw\n\n    ### Inquiries ###\n\n    def seekable(self):\n        return self.raw.seekable()\n\n    @property\n    def raw(self):\n        return self._raw\n\n    @property\n    def closed(self):\n        return self.raw.closed\n\n    @property\n    def name(self):\n        return self.raw.name\n\n    @property\n    def mode(self):\n        return self.raw.mode\n\n    def __getstate__(self):\n        raise TypeError(f\"cannot pickle {self.__class__.__name__!r} object\")\n\n    def __repr__(self):\n        modname = self.__class__.__module__\n        clsname = self.__class__.__qualname__\n        try:\n            name = self.name\n        except AttributeError:\n            return \"<{}.{}>\".format(modname, clsname)\n        else:\n            return \"<{}.{} name={!r}>\".format(modname, clsname, name)\n\n    ### Lower-level APIs ###\n\n    def fileno(self):\n        return self.raw.fileno()\n\n    def isatty(self):\n        return self.raw.isatty()\n\n\nclass BytesIO(BufferedIOBase):\n\n    \"\"\"Buffered I/O implementation using an in-memory bytes buffer.\"\"\"\n\n    # Initialize _buffer as soon as possible since it's used by __del__()\n    # which calls close()\n    _buffer = None\n\n    def __init__(self, initial_bytes=None):\n        buf = bytearray()\n        if initial_bytes is not None:\n            buf += initial_bytes\n        self._buffer = buf\n        self._pos = 0\n\n    def __getstate__(self):\n        if self.closed:\n            raise ValueError(\"__getstate__ on closed file\")\n        return self.__dict__.copy()\n\n    def getvalue(self):\n        \"\"\"Return the bytes value (contents) of the buffer\n        \"\"\"\n        if self.closed:\n            raise ValueError(\"getvalue on closed file\")\n        return bytes(self._buffer)\n\n    def getbuffer(self):\n        \"\"\"Return a readable and writable view of the buffer.\n        \"\"\"\n        if self.closed:\n            raise ValueError(\"getbuffer on closed file\")\n        return memoryview(self._buffer)\n\n    def close(self):\n        if self._buffer is not None:\n            self._buffer.clear()\n        super().close()\n\n    def read(self, size=-1):\n        if self.closed:\n            raise ValueError(\"read from closed file\")\n        if size is None:\n            size = -1\n        else:\n            try:\n                size_index = size.__index__\n            except AttributeError:\n                raise TypeError(f\"{size!r} is not an integer\")\n            else:\n                size = size_index()\n        if size < 0:\n            size = len(self._buffer)\n        if len(self._buffer) <= self._pos:\n            return b\"\"\n        newpos = min(len(self._buffer), self._pos + size)\n        b = self._buffer[self._pos : newpos]\n        self._pos = newpos\n        return bytes(b)\n\n    def read1(self, size=-1):\n        \"\"\"This is the same as read.\n        \"\"\"\n        return self.read(size)\n\n    def write(self, b):\n        if self.closed:\n            raise ValueError(\"write to closed file\")\n        if isinstance(b, str):\n            raise TypeError(\"can't write str to binary stream\")\n        with memoryview(b) as view:\n            n = view.nbytes  # Size of any bytes-like object\n        if n == 0:\n            return 0\n        pos = self._pos\n        if pos > len(self._buffer):\n            # Inserts null bytes between the current end of the file\n            # and the new write position.\n            padding = b'\\x00' * (pos - len(self._buffer))\n            self._buffer += padding\n        self._buffer[pos:pos + n] = b\n        self._pos += n\n        return n\n\n    def seek(self, pos, whence=0):\n        if self.closed:\n            raise ValueError(\"seek on closed file\")\n        try:\n            pos_index = pos.__index__\n        except AttributeError:\n            raise TypeError(f\"{pos!r} is not an integer\")\n        else:\n            pos = pos_index()\n        if whence == 0:\n            if pos < 0:\n                raise ValueError(\"negative seek position %r\" % (pos,))\n            self._pos = pos\n        elif whence == 1:\n            self._pos = max(0, self._pos + pos)\n        elif whence == 2:\n            self._pos = max(0, len(self._buffer) + pos)\n        else:\n            raise ValueError(\"unsupported whence value\")\n        return self._pos\n\n    def tell(self):\n        if self.closed:\n            raise ValueError(\"tell on closed file\")\n        return self._pos\n\n    def truncate(self, pos=None):\n        if self.closed:\n            raise ValueError(\"truncate on closed file\")\n        if pos is None:\n            pos = self._pos\n        else:\n            try:\n                pos_index = pos.__index__\n            except AttributeError:\n                raise TypeError(f\"{pos!r} is not an integer\")\n            else:\n                pos = pos_index()\n            if pos < 0:\n                raise ValueError(\"negative truncate position %r\" % (pos,))\n        del self._buffer[pos:]\n        return pos\n\n    def readable(self):\n        if self.closed:\n            raise ValueError(\"I/O operation on closed file.\")\n        return True\n\n    def writable(self):\n        if self.closed:\n            raise ValueError(\"I/O operation on closed file.\")\n        return True\n\n    def seekable(self):\n        if self.closed:\n            raise ValueError(\"I/O operation on closed file.\")\n        return True\n\n\nclass BufferedReader(_BufferedIOMixin):\n\n    \"\"\"BufferedReader(raw[, buffer_size])\n\n    A buffer for a readable, sequential BaseRawIO object.\n\n    The constructor creates a BufferedReader for the given readable raw\n    stream and buffer_size. If buffer_size is omitted, DEFAULT_BUFFER_SIZE\n    is used.\n    \"\"\"\n\n    def __init__(self, raw, buffer_size=DEFAULT_BUFFER_SIZE):\n        \"\"\"Create a new buffered reader using the given readable raw IO object.\n        \"\"\"\n        if not raw.readable():\n            raise OSError('\"raw\" argument must be readable.')\n\n        _BufferedIOMixin.__init__(self, raw)\n        if buffer_size <= 0:\n            raise ValueError(\"invalid buffer size\")\n        self.buffer_size = buffer_size\n        self._reset_read_buf()\n        self._read_lock = Lock()\n\n    def readable(self):\n        return self.raw.readable()\n\n    def _reset_read_buf(self):\n        self._read_buf = b\"\"\n        self._read_pos = 0\n\n    def read(self, size=None):\n        \"\"\"Read size bytes.\n\n        Returns exactly size bytes of data unless the underlying raw IO\n        stream reaches EOF or if the call would block in non-blocking\n        mode. If size is negative, read until EOF or until read() would\n        block.\n        \"\"\"\n        if size is not None and size < -1:\n            raise ValueError(\"invalid number of bytes to read\")\n        with self._read_lock:\n            return self._read_unlocked(size)\n\n    def _read_unlocked(self, n=None):\n        nodata_val = b\"\"\n        empty_values = (b\"\", None)\n        buf = self._read_buf\n        pos = self._read_pos\n\n        # Special case for when the number of bytes to read is unspecified.\n        if n is None or n == -1:\n            self._reset_read_buf()\n            if hasattr(self.raw, 'readall'):\n                chunk = self.raw.readall()\n                if chunk is None:\n                    return buf[pos:] or None\n                else:\n                    return buf[pos:] + chunk\n            chunks = [buf[pos:]]  # Strip the consumed bytes.\n            current_size = 0\n            while True:\n                # Read until EOF or until read() would block.\n                chunk = self.raw.read()\n                if chunk in empty_values:\n                    nodata_val = chunk\n                    break\n                current_size += len(chunk)\n                chunks.append(chunk)\n            return b\"\".join(chunks) or nodata_val\n\n        # The number of bytes to read is specified, return at most n bytes.\n        avail = len(buf) - pos  # Length of the available buffered data.\n        if n <= avail:\n            # Fast path: the data to read is fully buffered.\n            self._read_pos += n\n            return buf[pos:pos+n]\n        # Slow path: read from the stream until enough bytes are read,\n        # or until an EOF occurs or until read() would block.\n        chunks = [buf[pos:]]\n        wanted = max(self.buffer_size, n)\n        while avail < n:\n            chunk = self.raw.read(wanted)\n            if chunk in empty_values:\n                nodata_val = chunk\n                break\n            avail += len(chunk)\n            chunks.append(chunk)\n        # n is more than avail only when an EOF occurred or when\n        # read() would have blocked.\n        n = min(n, avail)\n        out = b\"\".join(chunks)\n        self._read_buf = out[n:]  # Save the extra data in the buffer.\n        self._read_pos = 0\n        return out[:n] if out else nodata_val\n\n    def peek(self, size=0):\n        \"\"\"Returns buffered bytes without advancing the position.\n\n        The argument indicates a desired minimal number of bytes; we\n        do at most one raw read to satisfy it.  We never return more\n        than self.buffer_size.\n        \"\"\"\n        with self._read_lock:\n            return self._peek_unlocked(size)\n\n    def _peek_unlocked(self, n=0):\n        want = min(n, self.buffer_size)\n        have = len(self._read_buf) - self._read_pos\n        if have < want or have <= 0:\n            to_read = self.buffer_size - have\n            current = self.raw.read(to_read)\n            if current:\n                self._read_buf = self._read_buf[self._read_pos:] + current\n                self._read_pos = 0\n        return self._read_buf[self._read_pos:]\n\n    def read1(self, size=-1):\n        \"\"\"Reads up to size bytes, with at most one read() system call.\"\"\"\n        # Returns up to size bytes.  If at least one byte is buffered, we\n        # only return buffered bytes.  Otherwise, we do one raw read.\n        if size < 0:\n            size = self.buffer_size\n        if size == 0:\n            return b\"\"\n        with self._read_lock:\n            self._peek_unlocked(1)\n            return self._read_unlocked(\n                min(size, len(self._read_buf) - self._read_pos))\n\n    # Implementing readinto() and readinto1() is not strictly necessary (we\n    # could rely on the base class that provides an implementation in terms of\n    # read() and read1()). We do it anyway to keep the _pyio implementation\n    # similar to the io implementation (which implements the methods for\n    # performance reasons).\n    def _readinto(self, buf, read1):\n        \"\"\"Read data into *buf* with at most one system call.\"\"\"\n\n        # Need to create a memoryview object of type 'b', otherwise\n        # we may not be able to assign bytes to it, and slicing it\n        # would create a new object.\n        if not isinstance(buf, memoryview):\n            buf = memoryview(buf)\n        if buf.nbytes == 0:\n            return 0\n        buf = buf.cast('B')\n\n        written = 0\n        with self._read_lock:\n            while written < len(buf):\n\n                # First try to read from internal buffer\n                avail = min(len(self._read_buf) - self._read_pos, len(buf))\n                if avail:\n                    buf[written:written+avail] = \\\n                        self._read_buf[self._read_pos:self._read_pos+avail]\n                    self._read_pos += avail\n                    written += avail\n                    if written == len(buf):\n                        break\n\n                # If remaining space in callers buffer is larger than\n                # internal buffer, read directly into callers buffer\n                if len(buf) - written > self.buffer_size:\n                    n = self.raw.readinto(buf[written:])\n                    if not n:\n                        break # eof\n                    written += n\n\n                # Otherwise refill internal buffer - unless we're\n                # in read1 mode and already got some data\n                elif not (read1 and written):\n                    if not self._peek_unlocked(1):\n                        break # eof\n\n                # In readinto1 mode, return as soon as we have some data\n                if read1 and written:\n                    break\n\n        return written\n\n    def tell(self):\n        return _BufferedIOMixin.tell(self) - len(self._read_buf) + self._read_pos\n\n    def seek(self, pos, whence=0):\n        if whence not in valid_seek_flags:\n            raise ValueError(\"invalid whence value\")\n        with self._read_lock:\n            if whence == 1:\n                pos -= len(self._read_buf) - self._read_pos\n            pos = _BufferedIOMixin.seek(self, pos, whence)\n            self._reset_read_buf()\n            return pos\n\nclass BufferedWriter(_BufferedIOMixin):\n\n    \"\"\"A buffer for a writeable sequential RawIO object.\n\n    The constructor creates a BufferedWriter for the given writeable raw\n    stream. If the buffer_size is not given, it defaults to\n    DEFAULT_BUFFER_SIZE.\n    \"\"\"\n\n    def __init__(self, raw, buffer_size=DEFAULT_BUFFER_SIZE):\n        if not raw.writable():\n            raise OSError('\"raw\" argument must be writable.')\n\n        _BufferedIOMixin.__init__(self, raw)\n        if buffer_size <= 0:\n            raise ValueError(\"invalid buffer size\")\n        self.buffer_size = buffer_size\n        self._write_buf = bytearray()\n        self._write_lock = Lock()\n\n    def writable(self):\n        return self.raw.writable()\n\n    def write(self, b):\n        if isinstance(b, str):\n            raise TypeError(\"can't write str to binary stream\")\n        with self._write_lock:\n            if self.closed:\n                raise ValueError(\"write to closed file\")\n            # XXX we can implement some more tricks to try and avoid\n            # partial writes\n            if len(self._write_buf) > self.buffer_size:\n                # We're full, so let's pre-flush the buffer.  (This may\n                # raise BlockingIOError with characters_written == 0.)\n                self._flush_unlocked()\n            before = len(self._write_buf)\n            self._write_buf.extend(b)\n            written = len(self._write_buf) - before\n            if len(self._write_buf) > self.buffer_size:\n                try:\n                    self._flush_unlocked()\n                except BlockingIOError as e:\n                    if len(self._write_buf) > self.buffer_size:\n                        # We've hit the buffer_size. We have to accept a partial\n                        # write and cut back our buffer.\n                        overage = len(self._write_buf) - self.buffer_size\n                        written -= overage\n                        self._write_buf = self._write_buf[:self.buffer_size]\n                        raise BlockingIOError(e.errno, e.strerror, written)\n            return written\n\n    def truncate(self, pos=None):\n        with self._write_lock:\n            self._flush_unlocked()\n            if pos is None:\n                pos = self.raw.tell()\n            return self.raw.truncate(pos)\n\n    def flush(self):\n        with self._write_lock:\n            self._flush_unlocked()\n\n    def _flush_unlocked(self):\n        if self.closed:\n            raise ValueError(\"flush on closed file\")\n        while self._write_buf:\n            try:\n                n = self.raw.write(self._write_buf)\n            except BlockingIOError:\n                raise RuntimeError(\"self.raw should implement RawIOBase: it \"\n                                   \"should not raise BlockingIOError\")\n            if n is None:\n                raise BlockingIOError(\n                    errno.EAGAIN,\n                    \"write could not complete without blocking\", 0)\n            if n > len(self._write_buf) or n < 0:\n                raise OSError(\"write() returned incorrect number of bytes\")\n            del self._write_buf[:n]\n\n    def tell(self):\n        return _BufferedIOMixin.tell(self) + len(self._write_buf)\n\n    def seek(self, pos, whence=0):\n        if whence not in valid_seek_flags:\n            raise ValueError(\"invalid whence value\")\n        with self._write_lock:\n            self._flush_unlocked()\n            return _BufferedIOMixin.seek(self, pos, whence)\n\n    def close(self):\n        with self._write_lock:\n            if self.raw is None or self.closed:\n                return\n        # We have to release the lock and call self.flush() (which will\n        # probably just re-take the lock) in case flush has been overridden in\n        # a subclass or the user set self.flush to something. This is the same\n        # behavior as the C implementation.\n        try:\n            # may raise BlockingIOError or BrokenPipeError etc\n            self.flush()\n        finally:\n            with self._write_lock:\n                self.raw.close()\n\n\nclass BufferedRWPair(BufferedIOBase):\n\n    \"\"\"A buffered reader and writer object together.\n\n    A buffered reader object and buffered writer object put together to\n    form a sequential IO object that can read and write. This is typically\n    used with a socket or two-way pipe.\n\n    reader and writer are RawIOBase objects that are readable and\n    writeable respectively. If the buffer_size is omitted it defaults to\n    DEFAULT_BUFFER_SIZE.\n    \"\"\"\n\n    # XXX The usefulness of this (compared to having two separate IO\n    # objects) is questionable.\n\n    def __init__(self, reader, writer, buffer_size=DEFAULT_BUFFER_SIZE):\n        \"\"\"Constructor.\n\n        The arguments are two RawIO instances.\n        \"\"\"\n        if not reader.readable():\n            raise OSError('\"reader\" argument must be readable.')\n\n        if not writer.writable():\n            raise OSError('\"writer\" argument must be writable.')\n\n        self.reader = BufferedReader(reader, buffer_size)\n        self.writer = BufferedWriter(writer, buffer_size)\n\n    def read(self, size=-1):\n        if size is None:\n            size = -1\n        return self.reader.read(size)\n\n    def readinto(self, b):\n        return self.reader.readinto(b)\n\n    def write(self, b):\n        return self.writer.write(b)\n\n    def peek(self, size=0):\n        return self.reader.peek(size)\n\n    def read1(self, size=-1):\n        return self.reader.read1(size)\n\n    def readinto1(self, b):\n        return self.reader.readinto1(b)\n\n    def readable(self):\n        return self.reader.readable()\n\n    def writable(self):\n        return self.writer.writable()\n\n    def flush(self):\n        return self.writer.flush()\n\n    def close(self):\n        try:\n            self.writer.close()\n        finally:\n            self.reader.close()\n\n    def isatty(self):\n        return self.reader.isatty() or self.writer.isatty()\n\n    @property\n    def closed(self):\n        return self.writer.closed\n\n\nclass BufferedRandom(BufferedWriter, BufferedReader):\n\n    \"\"\"A buffered interface to random access streams.\n\n    The constructor creates a reader and writer for a seekable stream,\n    raw, given in the first argument. If the buffer_size is omitted it\n    defaults to DEFAULT_BUFFER_SIZE.\n    \"\"\"\n\n    def __init__(self, raw, buffer_size=DEFAULT_BUFFER_SIZE):\n        raw._checkSeekable()\n        BufferedReader.__init__(self, raw, buffer_size)\n        BufferedWriter.__init__(self, raw, buffer_size)\n\n    def seek(self, pos, whence=0):\n        if whence not in valid_seek_flags:\n            raise ValueError(\"invalid whence value\")\n        self.flush()\n        if self._read_buf:\n            # Undo read ahead.\n            with self._read_lock:\n                self.raw.seek(self._read_pos - len(self._read_buf), 1)\n        # First do the raw seek, then empty the read buffer, so that\n        # if the raw seek fails, we don't lose buffered data forever.\n        pos = self.raw.seek(pos, whence)\n        with self._read_lock:\n            self._reset_read_buf()\n        if pos < 0:\n            raise OSError(\"seek() returned invalid position\")\n        return pos\n\n    def tell(self):\n        if self._write_buf:\n            return BufferedWriter.tell(self)\n        else:\n            return BufferedReader.tell(self)\n\n    def truncate(self, pos=None):\n        if pos is None:\n            pos = self.tell()\n        # Use seek to flush the read buffer.\n        return BufferedWriter.truncate(self, pos)\n\n    def read(self, size=None):\n        if size is None:\n            size = -1\n        self.flush()\n        return BufferedReader.read(self, size)\n\n    def readinto(self, b):\n        self.flush()\n        return BufferedReader.readinto(self, b)\n\n    def peek(self, size=0):\n        self.flush()\n        return BufferedReader.peek(self, size)\n\n    def read1(self, size=-1):\n        self.flush()\n        return BufferedReader.read1(self, size)\n\n    def readinto1(self, b):\n        self.flush()\n        return BufferedReader.readinto1(self, b)\n\n    def write(self, b):\n        if self._read_buf:\n            # Undo readahead\n            with self._read_lock:\n                self.raw.seek(self._read_pos - len(self._read_buf), 1)\n                self._reset_read_buf()\n        return BufferedWriter.write(self, b)\n\n\nclass FileIO(RawIOBase):\n    _fd = -1\n    _created = False\n    _readable = False\n    _writable = False\n    _appending = False\n    _seekable = None\n    _closefd = True\n\n    def __init__(self, file, mode='r', closefd=True, opener=None):\n        \"\"\"Open a file.  The mode can be 'r' (default), 'w', 'x' or 'a' for reading,\n        writing, exclusive creation or appending.  The file will be created if it\n        doesn't exist when opened for writing or appending; it will be truncated\n        when opened for writing.  A FileExistsError will be raised if it already\n        exists when opened for creating. Opening a file for creating implies\n        writing so this mode behaves in a similar way to 'w'. Add a '+' to the mode\n        to allow simultaneous reading and writing. A custom opener can be used by\n        passing a callable as *opener*. The underlying file descriptor for the file\n        object is then obtained by calling opener with (*name*, *flags*).\n        *opener* must return an open file descriptor (passing os.open as *opener*\n        results in functionality similar to passing None).\n        \"\"\"\n        if self._fd >= 0:\n            # Have to close the existing file first.\n            try:\n                if self._closefd:\n                    os.close(self._fd)\n            finally:\n                self._fd = -1\n\n        if isinstance(file, float):\n            raise TypeError('integer argument expected, got float')\n        if isinstance(file, int):\n            fd = file\n            if fd < 0:\n                raise ValueError('negative file descriptor')\n        else:\n            fd = -1\n\n        if not isinstance(mode, str):\n            raise TypeError('invalid mode: %s' % (mode,))\n        if not set(mode) <= set('xrwab+'):\n            raise ValueError('invalid mode: %s' % (mode,))\n        if sum(c in 'rwax' for c in mode) != 1 or mode.count('+') > 1:\n            raise ValueError('Must have exactly one of create/read/write/append '\n                             'mode and at most one plus')\n\n        if 'x' in mode:\n            self._created = True\n            self._writable = True\n            flags = os.O_EXCL | os.O_CREAT\n        elif 'r' in mode:\n            self._readable = True\n            flags = 0\n        elif 'w' in mode:\n            self._writable = True\n            flags = os.O_CREAT | os.O_TRUNC\n        elif 'a' in mode:\n            self._writable = True\n            self._appending = True\n            flags = os.O_APPEND | os.O_CREAT\n\n        if '+' in mode:\n            self._readable = True\n            self._writable = True\n\n        if self._readable and self._writable:\n            flags |= os.O_RDWR\n        elif self._readable:\n            flags |= os.O_RDONLY\n        else:\n            flags |= os.O_WRONLY\n\n        flags |= getattr(os, 'O_BINARY', 0)\n\n        noinherit_flag = (getattr(os, 'O_NOINHERIT', 0) or\n                          getattr(os, 'O_CLOEXEC', 0))\n        flags |= noinherit_flag\n\n        owned_fd = None\n        try:\n            if fd < 0:\n                if not closefd:\n                    raise ValueError('Cannot use closefd=False with file name')\n                if opener is None:\n                    fd = os.open(file, flags, 0o666)\n                else:\n                    fd = opener(file, flags)\n                    if not isinstance(fd, int):\n                        raise TypeError('expected integer from opener')\n                    if fd < 0:\n                        raise OSError('Negative file descriptor')\n                owned_fd = fd\n                if not noinherit_flag:\n                    os.set_inheritable(fd, False)\n\n            self._closefd = closefd\n            fdfstat = os.fstat(fd)\n            try:\n                if stat.S_ISDIR(fdfstat.st_mode):\n                    raise IsADirectoryError(errno.EISDIR,\n                                            os.strerror(errno.EISDIR), file)\n            except AttributeError:\n                # Ignore the AttribueError if stat.S_ISDIR or errno.EISDIR\n                # don't exist.\n                pass\n            self._blksize = getattr(fdfstat, 'st_blksize', 0)\n            if self._blksize <= 1:\n                self._blksize = DEFAULT_BUFFER_SIZE\n\n            if _setmode:\n                # don't translate newlines (\\r\\n <=> \\n)\n                _setmode(fd, os.O_BINARY)\n\n            self.name = file\n            if self._appending:\n                # For consistent behaviour, we explicitly seek to the\n                # end of file (otherwise, it might be done only on the\n                # first write()).\n                try:\n                    os.lseek(fd, 0, SEEK_END)\n                except OSError as e:\n                    if e.errno != errno.ESPIPE:\n                        raise\n        except:\n            if owned_fd is not None:\n                os.close(owned_fd)\n            raise\n        self._fd = fd\n\n    def __del__(self):\n        if self._fd >= 0 and self._closefd and not self.closed:\n            import warnings\n            warnings.warn('unclosed file %r' % (self,), ResourceWarning,\n                          stacklevel=2, source=self)\n            self.close()\n\n    def __getstate__(self):\n        raise TypeError(f\"cannot pickle {self.__class__.__name__!r} object\")\n\n    def __repr__(self):\n        class_name = '%s.%s' % (self.__class__.__module__,\n                                self.__class__.__qualname__)\n        if self.closed:\n            return '<%s [closed]>' % class_name\n        try:\n            name = self.name\n        except AttributeError:\n            return ('<%s fd=%d mode=%r closefd=%r>' %\n                    (class_name, self._fd, self.mode, self._closefd))\n        else:\n            return ('<%s name=%r mode=%r closefd=%r>' %\n                    (class_name, name, self.mode, self._closefd))\n\n    def _checkReadable(self):\n        if not self._readable:\n            raise UnsupportedOperation('File not open for reading')\n\n    def _checkWritable(self, msg=None):\n        if not self._writable:\n            raise UnsupportedOperation('File not open for writing')\n\n    def read(self, size=None):\n        \"\"\"Read at most size bytes, returned as bytes.\n\n        Only makes one system call, so less data may be returned than requested\n        In non-blocking mode, returns None if no data is available.\n        Return an empty bytes object at EOF.\n        \"\"\"\n        self._checkClosed()\n        self._checkReadable()\n        if size is None or size < 0:\n            return self.readall()\n        try:\n            return os.read(self._fd, size)\n        except BlockingIOError:\n            return None\n\n    def readall(self):\n        \"\"\"Read all data from the file, returned as bytes.\n\n        In non-blocking mode, returns as much as is immediately available,\n        or None if no data is available.  Return an empty bytes object at EOF.\n        \"\"\"\n        self._checkClosed()\n        self._checkReadable()\n        bufsize = DEFAULT_BUFFER_SIZE\n        try:\n            pos = os.lseek(self._fd, 0, SEEK_CUR)\n            end = os.fstat(self._fd).st_size\n            if end >= pos:\n                bufsize = end - pos + 1\n        except OSError:\n            pass\n\n        result = bytearray()\n        while True:\n            if len(result) >= bufsize:\n                bufsize = len(result)\n                bufsize += max(bufsize, DEFAULT_BUFFER_SIZE)\n            n = bufsize - len(result)\n            try:\n                chunk = os.read(self._fd, n)\n            except BlockingIOError:\n                if result:\n                    break\n                return None\n            if not chunk: # reached the end of the file\n                break\n            result += chunk\n\n        return bytes(result)\n\n    def readinto(self, b):\n        \"\"\"Same as RawIOBase.readinto().\"\"\"\n        m = memoryview(b).cast('B')\n        data = self.read(len(m))\n        n = len(data)\n        m[:n] = data\n        return n\n\n    def write(self, b):\n        \"\"\"Write bytes b to file, return number written.\n\n        Only makes one system call, so not all of the data may be written.\n        The number of bytes actually written is returned.  In non-blocking mode,\n        returns None if the write would block.\n        \"\"\"\n        self._checkClosed()\n        self._checkWritable()\n        try:\n            return os.write(self._fd, b)\n        except BlockingIOError:\n            return None\n\n    def seek(self, pos, whence=SEEK_SET):\n        \"\"\"Move to new file position.\n\n        Argument offset is a byte count.  Optional argument whence defaults to\n        SEEK_SET or 0 (offset from start of file, offset should be >= 0); other values\n        are SEEK_CUR or 1 (move relative to current position, positive or negative),\n        and SEEK_END or 2 (move relative to end of file, usually negative, although\n        many platforms allow seeking beyond the end of a file).\n\n        Note that not all file objects are seekable.\n        \"\"\"\n        if isinstance(pos, float):\n            raise TypeError('an integer is required')\n        self._checkClosed()\n        return os.lseek(self._fd, pos, whence)\n\n    def tell(self):\n        \"\"\"tell() -> int.  Current file position.\n\n        Can raise OSError for non seekable files.\"\"\"\n        self._checkClosed()\n        return os.lseek(self._fd, 0, SEEK_CUR)\n\n    def truncate(self, size=None):\n        \"\"\"Truncate the file to at most size bytes.\n\n        Size defaults to the current file position, as returned by tell().\n        The current file position is changed to the value of size.\n        \"\"\"\n        self._checkClosed()\n        self._checkWritable()\n        if size is None:\n            size = self.tell()\n        os.ftruncate(self._fd, size)\n        return size\n\n    def close(self):\n        \"\"\"Close the file.\n\n        A closed file cannot be used for further I/O operations.  close() may be\n        called more than once without error.\n        \"\"\"\n        if not self.closed:\n            try:\n                if self._closefd:\n                    os.close(self._fd)\n            finally:\n                super().close()\n\n    def seekable(self):\n        \"\"\"True if file supports random-access.\"\"\"\n        self._checkClosed()\n        if self._seekable is None:\n            try:\n                self.tell()\n            except OSError:\n                self._seekable = False\n            else:\n                self._seekable = True\n        return self._seekable\n\n    def readable(self):\n        \"\"\"True if file was opened in a read mode.\"\"\"\n        self._checkClosed()\n        return self._readable\n\n    def writable(self):\n        \"\"\"True if file was opened in a write mode.\"\"\"\n        self._checkClosed()\n        return self._writable\n\n    def fileno(self):\n        \"\"\"Return the underlying file descriptor (an integer).\"\"\"\n        self._checkClosed()\n        return self._fd\n\n    def isatty(self):\n        \"\"\"True if the file is connected to a TTY device.\"\"\"\n        self._checkClosed()\n        return os.isatty(self._fd)\n\n    @property\n    def closefd(self):\n        \"\"\"True if the file descriptor will be closed by close().\"\"\"\n        return self._closefd\n\n    @property\n    def mode(self):\n        \"\"\"String giving the file mode\"\"\"\n        if self._created:\n            if self._readable:\n                return 'xb+'\n            else:\n                return 'xb'\n        elif self._appending:\n            if self._readable:\n                return 'ab+'\n            else:\n                return 'ab'\n        elif self._readable:\n            if self._writable:\n                return 'rb+'\n            else:\n                return 'rb'\n        else:\n            return 'wb'\n\n\nclass TextIOBase(IOBase):\n\n    \"\"\"Base class for text I/O.\n\n    This class provides a character and line based interface to stream\n    I/O. There is no public constructor.\n    \"\"\"\n\n    def read(self, size=-1):\n        \"\"\"Read at most size characters from stream, where size is an int.\n\n        Read from underlying buffer until we have size characters or we hit EOF.\n        If size is negative or omitted, read until EOF.\n\n        Returns a string.\n        \"\"\"\n        self._unsupported(\"read\")\n\n    def write(self, s):\n        \"\"\"Write string s to stream and returning an int.\"\"\"\n        self._unsupported(\"write\")\n\n    def truncate(self, pos=None):\n        \"\"\"Truncate size to pos, where pos is an int.\"\"\"\n        self._unsupported(\"truncate\")\n\n    def readline(self):\n        \"\"\"Read until newline or EOF.\n\n        Returns an empty string if EOF is hit immediately.\n        \"\"\"\n        self._unsupported(\"readline\")\n\n    def detach(self):\n        \"\"\"\n        Separate the underlying buffer from the TextIOBase and return it.\n\n        After the underlying buffer has been detached, the TextIO is in an\n        unusable state.\n        \"\"\"\n        self._unsupported(\"detach\")\n\n    @property\n    def encoding(self):\n        \"\"\"Subclasses should override.\"\"\"\n        return None\n\n    @property\n    def newlines(self):\n        \"\"\"Line endings translated so far.\n\n        Only line endings translated during reading are considered.\n\n        Subclasses should override.\n        \"\"\"\n        return None\n\n    @property\n    def errors(self):\n        \"\"\"Error setting of the decoder or encoder.\n\n        Subclasses should override.\"\"\"\n        return None\n\nio.TextIOBase.register(TextIOBase)\n\n\nclass IncrementalNewlineDecoder(codecs.IncrementalDecoder):\n    r\"\"\"Codec used when reading a file in universal newlines mode.  It wraps\n    another incremental decoder, translating \\r\\n and \\r into \\n.  It also\n    records the types of newlines encountered.  When used with\n    translate=False, it ensures that the newline sequence is returned in\n    one piece.\n    \"\"\"\n    def __init__(self, decoder, translate, errors='strict'):\n        codecs.IncrementalDecoder.__init__(self, errors=errors)\n        self.translate = translate\n        self.decoder = decoder\n        self.seennl = 0\n        self.pendingcr = False\n\n    def decode(self, input, final=False):\n        # decode input (with the eventual \\r from a previous pass)\n        if self.decoder is None:\n            output = input\n        else:\n            output = self.decoder.decode(input, final=final)\n        if self.pendingcr and (output or final):\n            output = \"\\r\" + output\n            self.pendingcr = False\n\n        # retain last \\r even when not translating data:\n        # then readline() is sure to get \\r\\n in one pass\n        if output.endswith(\"\\r\") and not final:\n            output = output[:-1]\n            self.pendingcr = True\n\n        # Record which newlines are read\n        crlf = output.count('\\r\\n')\n        cr = output.count('\\r') - crlf\n        lf = output.count('\\n') - crlf\n        self.seennl |= (lf and self._LF) | (cr and self._CR) \\\n                    | (crlf and self._CRLF)\n\n        if self.translate:\n            if crlf:\n                output = output.replace(\"\\r\\n\", \"\\n\")\n            if cr:\n                output = output.replace(\"\\r\", \"\\n\")\n\n        return output\n\n    def getstate(self):\n        if self.decoder is None:\n            buf = b\"\"\n            flag = 0\n        else:\n            buf, flag = self.decoder.getstate()\n        flag <<= 1\n        if self.pendingcr:\n            flag |= 1\n        return buf, flag\n\n    def setstate(self, state):\n        buf, flag = state\n        self.pendingcr = bool(flag & 1)\n        if self.decoder is not None:\n            self.decoder.setstate((buf, flag >> 1))\n\n    def reset(self):\n        self.seennl = 0\n        self.pendingcr = False\n        if self.decoder is not None:\n            self.decoder.reset()\n\n    _LF = 1\n    _CR = 2\n    _CRLF = 4\n\n    @property\n    def newlines(self):\n        return (None,\n                \"\\n\",\n                \"\\r\",\n                (\"\\r\", \"\\n\"),\n                \"\\r\\n\",\n                (\"\\n\", \"\\r\\n\"),\n                (\"\\r\", \"\\r\\n\"),\n                (\"\\r\", \"\\n\", \"\\r\\n\")\n               )[self.seennl]\n\n\nclass TextIOWrapper(TextIOBase):\n\n    r\"\"\"Character and line based layer over a BufferedIOBase object, buffer.\n\n    encoding gives the name of the encoding that the stream will be\n    decoded or encoded with. It defaults to locale.getpreferredencoding(False).\n\n    errors determines the strictness of encoding and decoding (see the\n    codecs.register) and defaults to \"strict\".\n\n    newline can be None, '', '\\n', '\\r', or '\\r\\n'.  It controls the\n    handling of line endings. If it is None, universal newlines is\n    enabled.  With this enabled, on input, the lines endings '\\n', '\\r',\n    or '\\r\\n' are translated to '\\n' before being returned to the\n    caller. Conversely, on output, '\\n' is translated to the system\n    default line separator, os.linesep. If newline is any other of its\n    legal values, that newline becomes the newline when the file is read\n    and it is returned untranslated. On output, '\\n' is converted to the\n    newline.\n\n    If line_buffering is True, a call to flush is implied when a call to\n    write contains a newline character.\n    \"\"\"\n\n    _CHUNK_SIZE = 2048\n\n    # Initialize _buffer as soon as possible since it's used by __del__()\n    # which calls close()\n    _buffer = None\n\n    # The write_through argument has no effect here since this\n    # implementation always writes through.  The argument is present only\n    # so that the signature can match the signature of the C version.\n    def __init__(self, buffer, encoding=None, errors=None, newline=None,\n                 line_buffering=False, write_through=False):\n        self._check_newline(newline)\n        if encoding is None:\n            try:\n                encoding = os.device_encoding(buffer.fileno())\n            except (AttributeError, UnsupportedOperation):\n                pass\n            if encoding is None:\n                try:\n                    import locale\n                except ImportError:\n                    # Importing locale may fail if Python is being built\n                    encoding = \"ascii\"\n                else:\n                    encoding = locale.getpreferredencoding(False)\n\n        if not isinstance(encoding, str):\n            raise ValueError(\"invalid encoding: %r\" % encoding)\n\n        if not codecs.lookup(encoding)._is_text_encoding:\n            msg = (\"%r is not a text encoding; \"\n                   \"use codecs.open() to handle arbitrary codecs\")\n            raise LookupError(msg % encoding)\n\n        if errors is None:\n            errors = \"strict\"\n        else:\n            if not isinstance(errors, str):\n                raise ValueError(\"invalid errors: %r\" % errors)\n\n        self._buffer = buffer\n        self._decoded_chars = ''  # buffer for text returned from decoder\n        self._decoded_chars_used = 0  # offset into _decoded_chars for read()\n        self._snapshot = None  # info for reconstructing decoder state\n        self._seekable = self._telling = self.buffer.seekable()\n        self._has_read1 = hasattr(self.buffer, 'read1')\n        self._configure(encoding, errors, newline,\n                        line_buffering, write_through)\n\n    def _check_newline(self, newline):\n        if newline is not None and not isinstance(newline, str):\n            raise TypeError(\"illegal newline type: %r\" % (type(newline),))\n        if newline not in (None, \"\", \"\\n\", \"\\r\", \"\\r\\n\"):\n            raise ValueError(\"illegal newline value: %r\" % (newline,))\n\n    def _configure(self, encoding=None, errors=None, newline=None,\n                   line_buffering=False, write_through=False):\n        self._encoding = encoding\n        self._errors = errors\n        self._encoder = None\n        self._decoder = None\n        self._b2cratio = 0.0\n\n        self._readuniversal = not newline\n        self._readtranslate = newline is None\n        self._readnl = newline\n        self._writetranslate = newline != ''\n        self._writenl = newline or os.linesep\n\n        self._line_buffering = line_buffering\n        self._write_through = write_through\n\n        # don't write a BOM in the middle of a file\n        if self._seekable and self.writable():\n            position = self.buffer.tell()\n            if position != 0:\n                try:\n                    self._get_encoder().setstate(0)\n                except LookupError:\n                    # Sometimes the encoder doesn't exist\n                    pass\n\n    # self._snapshot is either None, or a tuple (dec_flags, next_input)\n    # where dec_flags is the second (integer) item of the decoder state\n    # and next_input is the chunk of input bytes that comes next after the\n    # snapshot point.  We use this to reconstruct decoder states in tell().\n\n    # Naming convention:\n    #   - \"bytes_...\" for integer variables that count input bytes\n    #   - \"chars_...\" for integer variables that count decoded characters\n\n    def __repr__(self):\n        result = \"<{}.{}\".format(self.__class__.__module__,\n                                 self.__class__.__qualname__)\n        try:\n            name = self.name\n        except AttributeError:\n            pass\n        else:\n            result += \" name={0!r}\".format(name)\n        try:\n            mode = self.mode\n        except AttributeError:\n            pass\n        else:\n            result += \" mode={0!r}\".format(mode)\n        return result + \" encoding={0!r}>\".format(self.encoding)\n\n    @property\n    def encoding(self):\n        return self._encoding\n\n    @property\n    def errors(self):\n        return self._errors\n\n    @property\n    def line_buffering(self):\n        return self._line_buffering\n\n    @property\n    def write_through(self):\n        return self._write_through\n\n    @property\n    def buffer(self):\n        return self._buffer\n\n    def reconfigure(self, *,\n                    encoding=None, errors=None, newline=Ellipsis,\n                    line_buffering=None, write_through=None):\n        \"\"\"Reconfigure the text stream with new parameters.\n\n        This also flushes the stream.\n        \"\"\"\n        if (self._decoder is not None\n                and (encoding is not None or errors is not None\n                     or newline is not Ellipsis)):\n            raise UnsupportedOperation(\n                \"It is not possible to set the encoding or newline of stream \"\n                \"after the first read\")\n\n        if errors is None:\n            if encoding is None:\n                errors = self._errors\n            else:\n                errors = 'strict'\n        elif not isinstance(errors, str):\n            raise TypeError(\"invalid errors: %r\" % errors)\n\n        if encoding is None:\n            encoding = self._encoding\n        else:\n            if not isinstance(encoding, str):\n                raise TypeError(\"invalid encoding: %r\" % encoding)\n\n        if newline is Ellipsis:\n            newline = self._readnl\n        self._check_newline(newline)\n\n        if line_buffering is None:\n            line_buffering = self.line_buffering\n        if write_through is None:\n            write_through = self.write_through\n\n        self.flush()\n        self._configure(encoding, errors, newline,\n                        line_buffering, write_through)\n\n    def seekable(self):\n        if self.closed:\n            raise ValueError(\"I/O operation on closed file.\")\n        return self._seekable\n\n    def readable(self):\n        return self.buffer.readable()\n\n    def writable(self):\n        return self.buffer.writable()\n\n    def flush(self):\n        self.buffer.flush()\n        self._telling = self._seekable\n\n    def close(self):\n        if self.buffer is not None and not self.closed:\n            try:\n                self.flush()\n            finally:\n                self.buffer.close()\n\n    @property\n    def closed(self):\n        return self.buffer.closed\n\n    @property\n    def name(self):\n        return self.buffer.name\n\n    def fileno(self):\n        return self.buffer.fileno()\n\n    def isatty(self):\n        return self.buffer.isatty()\n\n    def write(self, s):\n        'Write data, where s is a str'\n        if self.closed:\n            raise ValueError(\"write to closed file\")\n        if not isinstance(s, str):\n            raise TypeError(\"can't write %s to text stream\" %\n                            s.__class__.__name__)\n        length = len(s)\n        haslf = (self._writetranslate or self._line_buffering) and \"\\n\" in s\n        if haslf and self._writetranslate and self._writenl != \"\\n\":\n            s = s.replace(\"\\n\", self._writenl)\n        encoder = self._encoder or self._get_encoder()\n        # XXX What if we were just reading?\n        b = encoder.encode(s)\n        self.buffer.write(b)\n        if self._line_buffering and (haslf or \"\\r\" in s):\n            self.flush()\n        self._set_decoded_chars('')\n        self._snapshot = None\n        if self._decoder:\n            self._decoder.reset()\n        return length\n\n    def _get_encoder(self):\n        make_encoder = codecs.getincrementalencoder(self._encoding)\n        self._encoder = make_encoder(self._errors)\n        return self._encoder\n\n    def _get_decoder(self):\n        make_decoder = codecs.getincrementaldecoder(self._encoding)\n        decoder = make_decoder(self._errors)\n        if self._readuniversal:\n            decoder = IncrementalNewlineDecoder(decoder, self._readtranslate)\n        self._decoder = decoder\n        return decoder\n\n    # The following three methods implement an ADT for _decoded_chars.\n    # Text returned from the decoder is buffered here until the client\n    # requests it by calling our read() or readline() method.\n    def _set_decoded_chars(self, chars):\n        \"\"\"Set the _decoded_chars buffer.\"\"\"\n        self._decoded_chars = chars\n        self._decoded_chars_used = 0\n\n    def _get_decoded_chars(self, n=None):\n        \"\"\"Advance into the _decoded_chars buffer.\"\"\"\n        offset = self._decoded_chars_used\n        if n is None:\n            chars = self._decoded_chars[offset:]\n        else:\n            chars = self._decoded_chars[offset:offset + n]\n        self._decoded_chars_used += len(chars)\n        return chars\n\n    def _rewind_decoded_chars(self, n):\n        \"\"\"Rewind the _decoded_chars buffer.\"\"\"\n        if self._decoded_chars_used < n:\n            raise AssertionError(\"rewind decoded_chars out of bounds\")\n        self._decoded_chars_used -= n\n\n    def _read_chunk(self):\n        \"\"\"\n        Read and decode the next chunk of data from the BufferedReader.\n        \"\"\"\n\n        # The return value is True unless EOF was reached.  The decoded\n        # string is placed in self._decoded_chars (replacing its previous\n        # value).  The entire input chunk is sent to the decoder, though\n        # some of it may remain buffered in the decoder, yet to be\n        # converted.\n\n        if self._decoder is None:\n            raise ValueError(\"no decoder\")\n\n        if self._telling:\n            # To prepare for tell(), we need to snapshot a point in the\n            # file where the decoder's input buffer is empty.\n\n            dec_buffer, dec_flags = self._decoder.getstate()\n            # Given this, we know there was a valid snapshot point\n            # len(dec_buffer) bytes ago with decoder state (b'', dec_flags).\n\n        # Read a chunk, decode it, and put the result in self._decoded_chars.\n        if self._has_read1:\n            input_chunk = self.buffer.read1(self._CHUNK_SIZE)\n        else:\n            input_chunk = self.buffer.read(self._CHUNK_SIZE)\n        eof = not input_chunk\n        decoded_chars = self._decoder.decode(input_chunk, eof)\n        self._set_decoded_chars(decoded_chars)\n        if decoded_chars:\n            self._b2cratio = len(input_chunk) / len(self._decoded_chars)\n        else:\n            self._b2cratio = 0.0\n\n        if self._telling:\n            # At the snapshot point, len(dec_buffer) bytes before the read,\n            # the next input to be decoded is dec_buffer + input_chunk.\n            self._snapshot = (dec_flags, dec_buffer + input_chunk)\n\n        return not eof\n\n    def _pack_cookie(self, position, dec_flags=0,\n                           bytes_to_feed=0, need_eof=0, chars_to_skip=0):\n        # The meaning of a tell() cookie is: seek to position, set the\n        # decoder flags to dec_flags, read bytes_to_feed bytes, feed them\n        # into the decoder with need_eof as the EOF flag, then skip\n        # chars_to_skip characters of the decoded result.  For most simple\n        # decoders, tell() will often just give a byte offset in the file.\n        return (position | (dec_flags<<64) | (bytes_to_feed<<128) |\n               (chars_to_skip<<192) | bool(need_eof)<<256)\n\n    def _unpack_cookie(self, bigint):\n        rest, position = divmod(bigint, 1<<64)\n        rest, dec_flags = divmod(rest, 1<<64)\n        rest, bytes_to_feed = divmod(rest, 1<<64)\n        need_eof, chars_to_skip = divmod(rest, 1<<64)\n        return position, dec_flags, bytes_to_feed, need_eof, chars_to_skip\n\n    def tell(self):\n        if not self._seekable:\n            raise UnsupportedOperation(\"underlying stream is not seekable\")\n        if not self._telling:\n            raise OSError(\"telling position disabled by next() call\")\n        self.flush()\n        position = self.buffer.tell()\n        decoder = self._decoder\n        if decoder is None or self._snapshot is None:\n            if self._decoded_chars:\n                # This should never happen.\n                raise AssertionError(\"pending decoded text\")\n            return position\n\n        # Skip backward to the snapshot point (see _read_chunk).\n        dec_flags, next_input = self._snapshot\n        position -= len(next_input)\n\n        # How many decoded characters have been used up since the snapshot?\n        chars_to_skip = self._decoded_chars_used\n        if chars_to_skip == 0:\n            # We haven't moved from the snapshot point.\n            return self._pack_cookie(position, dec_flags)\n\n        # Starting from the snapshot position, we will walk the decoder\n        # forward until it gives us enough decoded characters.\n        saved_state = decoder.getstate()\n        try:\n            # Fast search for an acceptable start point, close to our\n            # current pos.\n            # Rationale: calling decoder.decode() has a large overhead\n            # regardless of chunk size; we want the number of such calls to\n            # be O(1) in most situations (common decoders, sensible input).\n            # Actually, it will be exactly 1 for fixed-size codecs (all\n            # 8-bit codecs, also UTF-16 and UTF-32).\n            skip_bytes = int(self._b2cratio * chars_to_skip)\n            skip_back = 1\n            assert skip_bytes <= len(next_input)\n            while skip_bytes > 0:\n                decoder.setstate((b'', dec_flags))\n                # Decode up to temptative start point\n                n = len(decoder.decode(next_input[:skip_bytes]))\n                if n <= chars_to_skip:\n                    b, d = decoder.getstate()\n                    if not b:\n                        # Before pos and no bytes buffered in decoder => OK\n                        dec_flags = d\n                        chars_to_skip -= n\n                        break\n                    # Skip back by buffered amount and reset heuristic\n                    skip_bytes -= len(b)\n                    skip_back = 1\n                else:\n                    # We're too far ahead, skip back a bit\n                    skip_bytes -= skip_back\n                    skip_back = skip_back * 2\n            else:\n                skip_bytes = 0\n                decoder.setstate((b'', dec_flags))\n\n            # Note our initial start point.\n            start_pos = position + skip_bytes\n            start_flags = dec_flags\n            if chars_to_skip == 0:\n                # We haven't moved from the start point.\n                return self._pack_cookie(start_pos, start_flags)\n\n            # Feed the decoder one byte at a time.  As we go, note the\n            # nearest \"safe start point\" before the current location\n            # (a point where the decoder has nothing buffered, so seek()\n            # can safely start from there and advance to this location).\n            bytes_fed = 0\n            need_eof = 0\n            # Chars decoded since `start_pos`\n            chars_decoded = 0\n            for i in range(skip_bytes, len(next_input)):\n                bytes_fed += 1\n                chars_decoded += len(decoder.decode(next_input[i:i+1]))\n                dec_buffer, dec_flags = decoder.getstate()\n                if not dec_buffer and chars_decoded <= chars_to_skip:\n                    # Decoder buffer is empty, so this is a safe start point.\n                    start_pos += bytes_fed\n                    chars_to_skip -= chars_decoded\n                    start_flags, bytes_fed, chars_decoded = dec_flags, 0, 0\n                if chars_decoded >= chars_to_skip:\n                    break\n            else:\n                # We didn't get enough decoded data; signal EOF to get more.\n                chars_decoded += len(decoder.decode(b'', final=True))\n                need_eof = 1\n                if chars_decoded < chars_to_skip:\n                    raise OSError(\"can't reconstruct logical file position\")\n\n            # The returned cookie corresponds to the last safe start point.\n            return self._pack_cookie(\n                start_pos, start_flags, bytes_fed, need_eof, chars_to_skip)\n        finally:\n            decoder.setstate(saved_state)\n\n    def truncate(self, pos=None):\n        self.flush()\n        if pos is None:\n            pos = self.tell()\n        return self.buffer.truncate(pos)\n\n    def detach(self):\n        if self.buffer is None:\n            raise ValueError(\"buffer is already detached\")\n        self.flush()\n        buffer = self._buffer\n        self._buffer = None\n        return buffer\n\n    def seek(self, cookie, whence=0):\n        def _reset_encoder(position):\n            \"\"\"Reset the encoder (merely useful for proper BOM handling)\"\"\"\n            try:\n                encoder = self._encoder or self._get_encoder()\n            except LookupError:\n                # Sometimes the encoder doesn't exist\n                pass\n            else:\n                if position != 0:\n                    encoder.setstate(0)\n                else:\n                    encoder.reset()\n\n        if self.closed:\n            raise ValueError(\"tell on closed file\")\n        if not self._seekable:\n            raise UnsupportedOperation(\"underlying stream is not seekable\")\n        if whence == SEEK_CUR:\n            if cookie != 0:\n                raise UnsupportedOperation(\"can't do nonzero cur-relative seeks\")\n            # Seeking to the current position should attempt to\n            # sync the underlying buffer with the current position.\n            whence = 0\n            cookie = self.tell()\n        elif whence == SEEK_END:\n            if cookie != 0:\n                raise UnsupportedOperation(\"can't do nonzero end-relative seeks\")\n            self.flush()\n            position = self.buffer.seek(0, whence)\n            self._set_decoded_chars('')\n            self._snapshot = None\n            if self._decoder:\n                self._decoder.reset()\n            _reset_encoder(position)\n            return position\n        if whence != 0:\n            raise ValueError(\"unsupported whence (%r)\" % (whence,))\n        if cookie < 0:\n            raise ValueError(\"negative seek position %r\" % (cookie,))\n        self.flush()\n\n        # The strategy of seek() is to go back to the safe start point\n        # and replay the effect of read(chars_to_skip) from there.\n        start_pos, dec_flags, bytes_to_feed, need_eof, chars_to_skip = \\\n            self._unpack_cookie(cookie)\n\n        # Seek back to the safe start point.\n        self.buffer.seek(start_pos)\n        self._set_decoded_chars('')\n        self._snapshot = None\n\n        # Restore the decoder to its state from the safe start point.\n        if cookie == 0 and self._decoder:\n            self._decoder.reset()\n        elif self._decoder or dec_flags or chars_to_skip:\n            self._decoder = self._decoder or self._get_decoder()\n            self._decoder.setstate((b'', dec_flags))\n            self._snapshot = (dec_flags, b'')\n\n        if chars_to_skip:\n            # Just like _read_chunk, feed the decoder and save a snapshot.\n            input_chunk = self.buffer.read(bytes_to_feed)\n            self._set_decoded_chars(\n                self._decoder.decode(input_chunk, need_eof))\n            self._snapshot = (dec_flags, input_chunk)\n\n            # Skip chars_to_skip of the decoded characters.\n            if len(self._decoded_chars) < chars_to_skip:\n                raise OSError(\"can't restore logical file position\")\n            self._decoded_chars_used = chars_to_skip\n\n        _reset_encoder(cookie)\n        return cookie\n\n    def read(self, size=None):\n        self._checkReadable()\n        if size is None:\n            size = -1\n        else:\n            try:\n                size_index = size.__index__\n            except AttributeError:\n                raise TypeError(f\"{size!r} is not an integer\")\n            else:\n                size = size_index()\n        decoder = self._decoder or self._get_decoder()\n        if size < 0:\n            # Read everything.\n            result = (self._get_decoded_chars() +\n                      decoder.decode(self.buffer.read(), final=True))\n            self._set_decoded_chars('')\n            self._snapshot = None\n            return result\n        else:\n            # Keep reading chunks until we have size characters to return.\n            eof = False\n            result = self._get_decoded_chars(size)\n            while len(result) < size and not eof:\n                eof = not self._read_chunk()\n                result += self._get_decoded_chars(size - len(result))\n            return result\n\n    def __next__(self):\n        self._telling = False\n        line = self.readline()\n        if not line:\n            self._snapshot = None\n            self._telling = self._seekable\n            raise StopIteration\n        return line\n\n    def readline(self, size=None):\n        if self.closed:\n            raise ValueError(\"read from closed file\")\n        if size is None:\n            size = -1\n        else:\n            try:\n                size_index = size.__index__\n            except AttributeError:\n                raise TypeError(f\"{size!r} is not an integer\")\n            else:\n                size = size_index()\n\n        # Grab all the decoded text (we will rewind any extra bits later).\n        line = self._get_decoded_chars()\n\n        start = 0\n        # Make the decoder if it doesn't already exist.\n        if not self._decoder:\n            self._get_decoder()\n\n        pos = endpos = None\n        while True:\n            if self._readtranslate:\n                # Newlines are already translated, only search for \\n\n                pos = line.find('\\n', start)\n                if pos >= 0:\n                    endpos = pos + 1\n                    break\n                else:\n                    start = len(line)\n\n            elif self._readuniversal:\n                # Universal newline search. Find any of \\r, \\r\\n, \\n\n                # The decoder ensures that \\r\\n are not split in two pieces\n\n                # In C we'd look for these in parallel of course.\n                nlpos = line.find(\"\\n\", start)\n                crpos = line.find(\"\\r\", start)\n                if crpos == -1:\n                    if nlpos == -1:\n                        # Nothing found\n                        start = len(line)\n                    else:\n                        # Found \\n\n                        endpos = nlpos + 1\n                        break\n                elif nlpos == -1:\n                    # Found lone \\r\n                    endpos = crpos + 1\n                    break\n                elif nlpos < crpos:\n                    # Found \\n\n                    endpos = nlpos + 1\n                    break\n                elif nlpos == crpos + 1:\n                    # Found \\r\\n\n                    endpos = crpos + 2\n                    break\n                else:\n                    # Found \\r\n                    endpos = crpos + 1\n                    break\n            else:\n                # non-universal\n                pos = line.find(self._readnl)\n                if pos >= 0:\n                    endpos = pos + len(self._readnl)\n                    break\n\n            if size >= 0 and len(line) >= size:\n                endpos = size  # reached length size\n                break\n\n            # No line ending seen yet - get more data'\n            while self._read_chunk():\n                if self._decoded_chars:\n                    break\n            if self._decoded_chars:\n                line += self._get_decoded_chars()\n            else:\n                # end of file\n                self._set_decoded_chars('')\n                self._snapshot = None\n                return line\n\n        if size >= 0 and endpos > size:\n            endpos = size  # don't exceed size\n\n        # Rewind _decoded_chars to just after the line ending we found.\n        self._rewind_decoded_chars(len(line) - endpos)\n        return line[:endpos]\n\n    @property\n    def newlines(self):\n        return self._decoder.newlines if self._decoder else None\n\n\nclass StringIO(TextIOWrapper):\n    \"\"\"Text I/O implementation using an in-memory buffer.\n\n    The initial_value argument sets the value of object.  The newline\n    argument is like the one of TextIOWrapper's constructor.\n    \"\"\"\n\n    def __init__(self, initial_value=\"\", newline=\"\\n\"):\n        super(StringIO, self).__init__(BytesIO(),\n                                       encoding=\"utf-8\",\n                                       errors=\"surrogatepass\",\n                                       newline=newline)\n        # Issue #5645: make universal newlines semantics the same as in the\n        # C version, even under Windows.\n        if newline is None:\n            self._writetranslate = False\n        if initial_value is not None:\n            if not isinstance(initial_value, str):\n                raise TypeError(\"initial_value must be str or None, not {0}\"\n                                .format(type(initial_value).__name__))\n            self.write(initial_value)\n            self.seek(0)\n\n    def getvalue(self):\n        self.flush()\n        decoder = self._decoder or self._get_decoder()\n        old_state = decoder.getstate()\n        decoder.reset()\n        try:\n            return decoder.decode(self.buffer.getvalue(), final=True)\n        finally:\n            decoder.setstate(old_state)\n\n    def __repr__(self):\n        # TextIOWrapper tells the encoding in its repr. In StringIO,\n        # that's an implementation detail.\n        return object.__repr__(self)\n\n    @property\n    def errors(self):\n        return None\n\n    @property\n    def encoding(self):\n        return None\n\n    def detach(self):\n        # This doesn't make sense on StringIO.\n        self._unsupported(\"detach\")\n"
  },
  {
    "path": "rd/usr/lib/python3.8/_sitebuiltins.py",
    "content": "\"\"\"\nThe objects used by the site module to add custom builtins.\n\"\"\"\n\n# Those objects are almost immortal and they keep a reference to their module\n# globals.  Defining them in the site module would keep too many references\n# alive.\n# Note this means this module should also avoid keep things alive in its\n# globals.\n\nimport sys\n\nclass Quitter(object):\n    def __init__(self, name, eof):\n        self.name = name\n        self.eof = eof\n    def __repr__(self):\n        return 'Use %s() or %s to exit' % (self.name, self.eof)\n    def __call__(self, code=None):\n        # Shells like IDLE catch the SystemExit, but listen when their\n        # stdin wrapper is closed.\n        try:\n            sys.stdin.close()\n        except:\n            pass\n        raise SystemExit(code)\n\n\nclass _Printer(object):\n    \"\"\"interactive prompt objects for printing the license text, a list of\n    contributors and the copyright notice.\"\"\"\n\n    MAXLINES = 23\n\n    def __init__(self, name, data, files=(), dirs=()):\n        import os\n        self.__name = name\n        self.__data = data\n        self.__lines = None\n        self.__filenames = [os.path.join(dir, filename)\n                            for dir in dirs\n                            for filename in files]\n\n    def __setup(self):\n        if self.__lines:\n            return\n        data = None\n        for filename in self.__filenames:\n            try:\n                with open(filename, \"r\") as fp:\n                    data = fp.read()\n                break\n            except OSError:\n                pass\n        if not data:\n            data = self.__data\n        self.__lines = data.split('\\n')\n        self.__linecnt = len(self.__lines)\n\n    def __repr__(self):\n        self.__setup()\n        if len(self.__lines) <= self.MAXLINES:\n            return \"\\n\".join(self.__lines)\n        else:\n            return \"Type %s() to see the full %s text\" % ((self.__name,)*2)\n\n    def __call__(self):\n        self.__setup()\n        prompt = 'Hit Return for more, or q (and Return) to quit: '\n        lineno = 0\n        while 1:\n            try:\n                for i in range(lineno, lineno + self.MAXLINES):\n                    print(self.__lines[i])\n            except IndexError:\n                break\n            else:\n                lineno += self.MAXLINES\n                key = None\n                while key is None:\n                    key = input(prompt)\n                    if key not in ('', 'q'):\n                        key = None\n                if key == 'q':\n                    break\n\n\nclass _Helper(object):\n    \"\"\"Define the builtin 'help'.\n\n    This is a wrapper around pydoc.help that provides a helpful message\n    when 'help' is typed at the Python interactive prompt.\n\n    Calling help() at the Python prompt starts an interactive help session.\n    Calling help(thing) prints help for the python object 'thing'.\n    \"\"\"\n\n    def __repr__(self):\n        return \"Type help() for interactive help, \" \\\n               \"or help(object) for help about object.\"\n    def __call__(self, *args, **kwds):\n        import pydoc\n        return pydoc.help(*args, **kwds)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/_strptime.py",
    "content": "\"\"\"Strptime-related classes and functions.\n\nCLASSES:\n    LocaleTime -- Discovers and stores locale-specific time information\n    TimeRE -- Creates regexes for pattern matching a string of text containing\n                time information\n\nFUNCTIONS:\n    _getlang -- Figure out what language is being used for the locale\n    strptime -- Calculates the time struct represented by the passed-in string\n\n\"\"\"\nimport time\nimport locale\nimport calendar\nfrom re import compile as re_compile\nfrom re import IGNORECASE\nfrom re import escape as re_escape\nfrom datetime import (date as datetime_date,\n                      timedelta as datetime_timedelta,\n                      timezone as datetime_timezone)\nfrom _thread import allocate_lock as _thread_allocate_lock\n\n__all__ = []\n\ndef _getlang():\n    # Figure out what the current language is set to.\n    return locale.getlocale(locale.LC_TIME)\n\nclass LocaleTime(object):\n    \"\"\"Stores and handles locale-specific information related to time.\n\n    ATTRIBUTES:\n        f_weekday -- full weekday names (7-item list)\n        a_weekday -- abbreviated weekday names (7-item list)\n        f_month -- full month names (13-item list; dummy value in [0], which\n                    is added by code)\n        a_month -- abbreviated month names (13-item list, dummy value in\n                    [0], which is added by code)\n        am_pm -- AM/PM representation (2-item list)\n        LC_date_time -- format string for date/time representation (string)\n        LC_date -- format string for date representation (string)\n        LC_time -- format string for time representation (string)\n        timezone -- daylight- and non-daylight-savings timezone representation\n                    (2-item list of sets)\n        lang -- Language used by instance (2-item tuple)\n    \"\"\"\n\n    def __init__(self):\n        \"\"\"Set all attributes.\n\n        Order of methods called matters for dependency reasons.\n\n        The locale language is set at the offset and then checked again before\n        exiting.  This is to make sure that the attributes were not set with a\n        mix of information from more than one locale.  This would most likely\n        happen when using threads where one thread calls a locale-dependent\n        function while another thread changes the locale while the function in\n        the other thread is still running.  Proper coding would call for\n        locks to prevent changing the locale while locale-dependent code is\n        running.  The check here is done in case someone does not think about\n        doing this.\n\n        Only other possible issue is if someone changed the timezone and did\n        not call tz.tzset .  That is an issue for the programmer, though,\n        since changing the timezone is worthless without that call.\n\n        \"\"\"\n        self.lang = _getlang()\n        self.__calc_weekday()\n        self.__calc_month()\n        self.__calc_am_pm()\n        self.__calc_timezone()\n        self.__calc_date_time()\n        if _getlang() != self.lang:\n            raise ValueError(\"locale changed during initialization\")\n        if time.tzname != self.tzname or time.daylight != self.daylight:\n            raise ValueError(\"timezone changed during initialization\")\n\n    def __calc_weekday(self):\n        # Set self.a_weekday and self.f_weekday using the calendar\n        # module.\n        a_weekday = [calendar.day_abbr[i].lower() for i in range(7)]\n        f_weekday = [calendar.day_name[i].lower() for i in range(7)]\n        self.a_weekday = a_weekday\n        self.f_weekday = f_weekday\n\n    def __calc_month(self):\n        # Set self.f_month and self.a_month using the calendar module.\n        a_month = [calendar.month_abbr[i].lower() for i in range(13)]\n        f_month = [calendar.month_name[i].lower() for i in range(13)]\n        self.a_month = a_month\n        self.f_month = f_month\n\n    def __calc_am_pm(self):\n        # Set self.am_pm by using time.strftime().\n\n        # The magic date (1999,3,17,hour,44,55,2,76,0) is not really that\n        # magical; just happened to have used it everywhere else where a\n        # static date was needed.\n        am_pm = []\n        for hour in (1, 22):\n            time_tuple = time.struct_time((1999,3,17,hour,44,55,2,76,0))\n            am_pm.append(time.strftime(\"%p\", time_tuple).lower())\n        self.am_pm = am_pm\n\n    def __calc_date_time(self):\n        # Set self.date_time, self.date, & self.time by using\n        # time.strftime().\n\n        # Use (1999,3,17,22,44,55,2,76,0) for magic date because the amount of\n        # overloaded numbers is minimized.  The order in which searches for\n        # values within the format string is very important; it eliminates\n        # possible ambiguity for what something represents.\n        time_tuple = time.struct_time((1999,3,17,22,44,55,2,76,0))\n        date_time = [None, None, None]\n        date_time[0] = time.strftime(\"%c\", time_tuple).lower()\n        date_time[1] = time.strftime(\"%x\", time_tuple).lower()\n        date_time[2] = time.strftime(\"%X\", time_tuple).lower()\n        replacement_pairs = [('%', '%%'), (self.f_weekday[2], '%A'),\n                    (self.f_month[3], '%B'), (self.a_weekday[2], '%a'),\n                    (self.a_month[3], '%b'), (self.am_pm[1], '%p'),\n                    ('1999', '%Y'), ('99', '%y'), ('22', '%H'),\n                    ('44', '%M'), ('55', '%S'), ('76', '%j'),\n                    ('17', '%d'), ('03', '%m'), ('3', '%m'),\n                    # '3' needed for when no leading zero.\n                    ('2', '%w'), ('10', '%I')]\n        replacement_pairs.extend([(tz, \"%Z\") for tz_values in self.timezone\n                                                for tz in tz_values])\n        for offset,directive in ((0,'%c'), (1,'%x'), (2,'%X')):\n            current_format = date_time[offset]\n            for old, new in replacement_pairs:\n                # Must deal with possible lack of locale info\n                # manifesting itself as the empty string (e.g., Swedish's\n                # lack of AM/PM info) or a platform returning a tuple of empty\n                # strings (e.g., MacOS 9 having timezone as ('','')).\n                if old:\n                    current_format = current_format.replace(old, new)\n            # If %W is used, then Sunday, 2005-01-03 will fall on week 0 since\n            # 2005-01-03 occurs before the first Monday of the year.  Otherwise\n            # %U is used.\n            time_tuple = time.struct_time((1999,1,3,1,1,1,6,3,0))\n            if '00' in time.strftime(directive, time_tuple):\n                U_W = '%W'\n            else:\n                U_W = '%U'\n            date_time[offset] = current_format.replace('11', U_W)\n        self.LC_date_time = date_time[0]\n        self.LC_date = date_time[1]\n        self.LC_time = date_time[2]\n\n    def __calc_timezone(self):\n        # Set self.timezone by using time.tzname.\n        # Do not worry about possibility of time.tzname[0] == time.tzname[1]\n        # and time.daylight; handle that in strptime.\n        try:\n            time.tzset()\n        except AttributeError:\n            pass\n        self.tzname = time.tzname\n        self.daylight = time.daylight\n        no_saving = frozenset({\"utc\", \"gmt\", self.tzname[0].lower()})\n        if self.daylight:\n            has_saving = frozenset({self.tzname[1].lower()})\n        else:\n            has_saving = frozenset()\n        self.timezone = (no_saving, has_saving)\n\n\nclass TimeRE(dict):\n    \"\"\"Handle conversion from format directives to regexes.\"\"\"\n\n    def __init__(self, locale_time=None):\n        \"\"\"Create keys/values.\n\n        Order of execution is important for dependency reasons.\n\n        \"\"\"\n        if locale_time:\n            self.locale_time = locale_time\n        else:\n            self.locale_time = LocaleTime()\n        base = super()\n        base.__init__({\n            # The \" \\d\" part of the regex is to make %c from ANSI C work\n            'd': r\"(?P<d>3[0-1]|[1-2]\\d|0[1-9]|[1-9]| [1-9])\",\n            'f': r\"(?P<f>[0-9]{1,6})\",\n            'H': r\"(?P<H>2[0-3]|[0-1]\\d|\\d)\",\n            'I': r\"(?P<I>1[0-2]|0[1-9]|[1-9])\",\n            'G': r\"(?P<G>\\d\\d\\d\\d)\",\n            'j': r\"(?P<j>36[0-6]|3[0-5]\\d|[1-2]\\d\\d|0[1-9]\\d|00[1-9]|[1-9]\\d|0[1-9]|[1-9])\",\n            'm': r\"(?P<m>1[0-2]|0[1-9]|[1-9])\",\n            'M': r\"(?P<M>[0-5]\\d|\\d)\",\n            'S': r\"(?P<S>6[0-1]|[0-5]\\d|\\d)\",\n            'U': r\"(?P<U>5[0-3]|[0-4]\\d|\\d)\",\n            'w': r\"(?P<w>[0-6])\",\n            'u': r\"(?P<u>[1-7])\",\n            'V': r\"(?P<V>5[0-3]|0[1-9]|[1-4]\\d|\\d)\",\n            # W is set below by using 'U'\n            'y': r\"(?P<y>\\d\\d)\",\n            #XXX: Does 'Y' need to worry about having less or more than\n            #     4 digits?\n            'Y': r\"(?P<Y>\\d\\d\\d\\d)\",\n            'z': r\"(?P<z>[+-]\\d\\d:?[0-5]\\d(:?[0-5]\\d(\\.\\d{1,6})?)?|Z)\",\n            'A': self.__seqToRE(self.locale_time.f_weekday, 'A'),\n            'a': self.__seqToRE(self.locale_time.a_weekday, 'a'),\n            'B': self.__seqToRE(self.locale_time.f_month[1:], 'B'),\n            'b': self.__seqToRE(self.locale_time.a_month[1:], 'b'),\n            'p': self.__seqToRE(self.locale_time.am_pm, 'p'),\n            'Z': self.__seqToRE((tz for tz_names in self.locale_time.timezone\n                                        for tz in tz_names),\n                                'Z'),\n            '%': '%'})\n        base.__setitem__('W', base.__getitem__('U').replace('U', 'W'))\n        base.__setitem__('c', self.pattern(self.locale_time.LC_date_time))\n        base.__setitem__('x', self.pattern(self.locale_time.LC_date))\n        base.__setitem__('X', self.pattern(self.locale_time.LC_time))\n\n    def __seqToRE(self, to_convert, directive):\n        \"\"\"Convert a list to a regex string for matching a directive.\n\n        Want possible matching values to be from longest to shortest.  This\n        prevents the possibility of a match occurring for a value that also\n        a substring of a larger value that should have matched (e.g., 'abc'\n        matching when 'abcdef' should have been the match).\n\n        \"\"\"\n        to_convert = sorted(to_convert, key=len, reverse=True)\n        for value in to_convert:\n            if value != '':\n                break\n        else:\n            return ''\n        regex = '|'.join(re_escape(stuff) for stuff in to_convert)\n        regex = '(?P<%s>%s' % (directive, regex)\n        return '%s)' % regex\n\n    def pattern(self, format):\n        \"\"\"Return regex pattern for the format string.\n\n        Need to make sure that any characters that might be interpreted as\n        regex syntax are escaped.\n\n        \"\"\"\n        processed_format = ''\n        # The sub() call escapes all characters that might be misconstrued\n        # as regex syntax.  Cannot use re.escape since we have to deal with\n        # format directives (%m, etc.).\n        regex_chars = re_compile(r\"([\\\\.^$*+?\\(\\){}\\[\\]|])\")\n        format = regex_chars.sub(r\"\\\\\\1\", format)\n        whitespace_replacement = re_compile(r'\\s+')\n        format = whitespace_replacement.sub(r'\\\\s+', format)\n        while '%' in format:\n            directive_index = format.index('%')+1\n            processed_format = \"%s%s%s\" % (processed_format,\n                                           format[:directive_index-1],\n                                           self[format[directive_index]])\n            format = format[directive_index+1:]\n        return \"%s%s\" % (processed_format, format)\n\n    def compile(self, format):\n        \"\"\"Return a compiled re object for the format string.\"\"\"\n        return re_compile(self.pattern(format), IGNORECASE)\n\n_cache_lock = _thread_allocate_lock()\n# DO NOT modify _TimeRE_cache or _regex_cache without acquiring the cache lock\n# first!\n_TimeRE_cache = TimeRE()\n_CACHE_MAX_SIZE = 5 # Max number of regexes stored in _regex_cache\n_regex_cache = {}\n\ndef _calc_julian_from_U_or_W(year, week_of_year, day_of_week, week_starts_Mon):\n    \"\"\"Calculate the Julian day based on the year, week of the year, and day of\n    the week, with week_start_day representing whether the week of the year\n    assumes the week starts on Sunday or Monday (6 or 0).\"\"\"\n    first_weekday = datetime_date(year, 1, 1).weekday()\n    # If we are dealing with the %U directive (week starts on Sunday), it's\n    # easier to just shift the view to Sunday being the first day of the\n    # week.\n    if not week_starts_Mon:\n        first_weekday = (first_weekday + 1) % 7\n        day_of_week = (day_of_week + 1) % 7\n    # Need to watch out for a week 0 (when the first day of the year is not\n    # the same as that specified by %U or %W).\n    week_0_length = (7 - first_weekday) % 7\n    if week_of_year == 0:\n        return 1 + day_of_week - first_weekday\n    else:\n        days_to_week = week_0_length + (7 * (week_of_year - 1))\n        return 1 + days_to_week + day_of_week\n\n\ndef _calc_julian_from_V(iso_year, iso_week, iso_weekday):\n    \"\"\"Calculate the Julian day based on the ISO 8601 year, week, and weekday.\n    ISO weeks start on Mondays, with week 01 being the week containing 4 Jan.\n    ISO week days range from 1 (Monday) to 7 (Sunday).\n    \"\"\"\n    correction = datetime_date(iso_year, 1, 4).isoweekday() + 3\n    ordinal = (iso_week * 7) + iso_weekday - correction\n    # ordinal may be negative or 0 now, which means the date is in the previous\n    # calendar year\n    if ordinal < 1:\n        ordinal += datetime_date(iso_year, 1, 1).toordinal()\n        iso_year -= 1\n        ordinal -= datetime_date(iso_year, 1, 1).toordinal()\n    return iso_year, ordinal\n\n\ndef _strptime(data_string, format=\"%a %b %d %H:%M:%S %Y\"):\n    \"\"\"Return a 2-tuple consisting of a time struct and an int containing\n    the number of microseconds based on the input string and the\n    format string.\"\"\"\n\n    for index, arg in enumerate([data_string, format]):\n        if not isinstance(arg, str):\n            msg = \"strptime() argument {} must be str, not {}\"\n            raise TypeError(msg.format(index, type(arg)))\n\n    global _TimeRE_cache, _regex_cache\n    with _cache_lock:\n        locale_time = _TimeRE_cache.locale_time\n        if (_getlang() != locale_time.lang or\n            time.tzname != locale_time.tzname or\n            time.daylight != locale_time.daylight):\n            _TimeRE_cache = TimeRE()\n            _regex_cache.clear()\n            locale_time = _TimeRE_cache.locale_time\n        if len(_regex_cache) > _CACHE_MAX_SIZE:\n            _regex_cache.clear()\n        format_regex = _regex_cache.get(format)\n        if not format_regex:\n            try:\n                format_regex = _TimeRE_cache.compile(format)\n            # KeyError raised when a bad format is found; can be specified as\n            # \\\\, in which case it was a stray % but with a space after it\n            except KeyError as err:\n                bad_directive = err.args[0]\n                if bad_directive == \"\\\\\":\n                    bad_directive = \"%\"\n                del err\n                raise ValueError(\"'%s' is a bad directive in format '%s'\" %\n                                    (bad_directive, format)) from None\n            # IndexError only occurs when the format string is \"%\"\n            except IndexError:\n                raise ValueError(\"stray %% in format '%s'\" % format) from None\n            _regex_cache[format] = format_regex\n    found = format_regex.match(data_string)\n    if not found:\n        raise ValueError(\"time data %r does not match format %r\" %\n                         (data_string, format))\n    if len(data_string) != found.end():\n        raise ValueError(\"unconverted data remains: %s\" %\n                          data_string[found.end():])\n\n    iso_year = year = None\n    month = day = 1\n    hour = minute = second = fraction = 0\n    tz = -1\n    gmtoff = None\n    gmtoff_fraction = 0\n    # Default to -1 to signify that values not known; not critical to have,\n    # though\n    iso_week = week_of_year = None\n    week_of_year_start = None\n    # weekday and julian defaulted to None so as to signal need to calculate\n    # values\n    weekday = julian = None\n    found_dict = found.groupdict()\n    for group_key in found_dict.keys():\n        # Directives not explicitly handled below:\n        #   c, x, X\n        #      handled by making out of other directives\n        #   U, W\n        #      worthless without day of the week\n        if group_key == 'y':\n            year = int(found_dict['y'])\n            # Open Group specification for strptime() states that a %y\n            #value in the range of [00, 68] is in the century 2000, while\n            #[69,99] is in the century 1900\n            if year <= 68:\n                year += 2000\n            else:\n                year += 1900\n        elif group_key == 'Y':\n            year = int(found_dict['Y'])\n        elif group_key == 'G':\n            iso_year = int(found_dict['G'])\n        elif group_key == 'm':\n            month = int(found_dict['m'])\n        elif group_key == 'B':\n            month = locale_time.f_month.index(found_dict['B'].lower())\n        elif group_key == 'b':\n            month = locale_time.a_month.index(found_dict['b'].lower())\n        elif group_key == 'd':\n            day = int(found_dict['d'])\n        elif group_key == 'H':\n            hour = int(found_dict['H'])\n        elif group_key == 'I':\n            hour = int(found_dict['I'])\n            ampm = found_dict.get('p', '').lower()\n            # If there was no AM/PM indicator, we'll treat this like AM\n            if ampm in ('', locale_time.am_pm[0]):\n                # We're in AM so the hour is correct unless we're\n                # looking at 12 midnight.\n                # 12 midnight == 12 AM == hour 0\n                if hour == 12:\n                    hour = 0\n            elif ampm == locale_time.am_pm[1]:\n                # We're in PM so we need to add 12 to the hour unless\n                # we're looking at 12 noon.\n                # 12 noon == 12 PM == hour 12\n                if hour != 12:\n                    hour += 12\n        elif group_key == 'M':\n            minute = int(found_dict['M'])\n        elif group_key == 'S':\n            second = int(found_dict['S'])\n        elif group_key == 'f':\n            s = found_dict['f']\n            # Pad to always return microseconds.\n            s += \"0\" * (6 - len(s))\n            fraction = int(s)\n        elif group_key == 'A':\n            weekday = locale_time.f_weekday.index(found_dict['A'].lower())\n        elif group_key == 'a':\n            weekday = locale_time.a_weekday.index(found_dict['a'].lower())\n        elif group_key == 'w':\n            weekday = int(found_dict['w'])\n            if weekday == 0:\n                weekday = 6\n            else:\n                weekday -= 1\n        elif group_key == 'u':\n            weekday = int(found_dict['u'])\n            weekday -= 1\n        elif group_key == 'j':\n            julian = int(found_dict['j'])\n        elif group_key in ('U', 'W'):\n            week_of_year = int(found_dict[group_key])\n            if group_key == 'U':\n                # U starts week on Sunday.\n                week_of_year_start = 6\n            else:\n                # W starts week on Monday.\n                week_of_year_start = 0\n        elif group_key == 'V':\n            iso_week = int(found_dict['V'])\n        elif group_key == 'z':\n            z = found_dict['z']\n            if z == 'Z':\n                gmtoff = 0\n            else:\n                if z[3] == ':':\n                    z = z[:3] + z[4:]\n                    if len(z) > 5:\n                        if z[5] != ':':\n                            msg = f\"Inconsistent use of : in {found_dict['z']}\"\n                            raise ValueError(msg)\n                        z = z[:5] + z[6:]\n                hours = int(z[1:3])\n                minutes = int(z[3:5])\n                seconds = int(z[5:7] or 0)\n                gmtoff = (hours * 60 * 60) + (minutes * 60) + seconds\n                gmtoff_remainder = z[8:]\n                # Pad to always return microseconds.\n                gmtoff_remainder_padding = \"0\" * (6 - len(gmtoff_remainder))\n                gmtoff_fraction = int(gmtoff_remainder + gmtoff_remainder_padding)\n                if z.startswith(\"-\"):\n                    gmtoff = -gmtoff\n                    gmtoff_fraction = -gmtoff_fraction\n        elif group_key == 'Z':\n            # Since -1 is default value only need to worry about setting tz if\n            # it can be something other than -1.\n            found_zone = found_dict['Z'].lower()\n            for value, tz_values in enumerate(locale_time.timezone):\n                if found_zone in tz_values:\n                    # Deal with bad locale setup where timezone names are the\n                    # same and yet time.daylight is true; too ambiguous to\n                    # be able to tell what timezone has daylight savings\n                    if (time.tzname[0] == time.tzname[1] and\n                       time.daylight and found_zone not in (\"utc\", \"gmt\")):\n                        break\n                    else:\n                        tz = value\n                        break\n    # Deal with the cases where ambiguities arize\n    # don't assume default values for ISO week/year\n    if year is None and iso_year is not None:\n        if iso_week is None or weekday is None:\n            raise ValueError(\"ISO year directive '%G' must be used with \"\n                             \"the ISO week directive '%V' and a weekday \"\n                             \"directive ('%A', '%a', '%w', or '%u').\")\n        if julian is not None:\n            raise ValueError(\"Day of the year directive '%j' is not \"\n                             \"compatible with ISO year directive '%G'. \"\n                             \"Use '%Y' instead.\")\n    elif week_of_year is None and iso_week is not None:\n        if weekday is None:\n            raise ValueError(\"ISO week directive '%V' must be used with \"\n                             \"the ISO year directive '%G' and a weekday \"\n                             \"directive ('%A', '%a', '%w', or '%u').\")\n        else:\n            raise ValueError(\"ISO week directive '%V' is incompatible with \"\n                             \"the year directive '%Y'. Use the ISO year '%G' \"\n                             \"instead.\")\n\n    leap_year_fix = False\n    if year is None and month == 2 and day == 29:\n        year = 1904  # 1904 is first leap year of 20th century\n        leap_year_fix = True\n    elif year is None:\n        year = 1900\n\n\n    # If we know the week of the year and what day of that week, we can figure\n    # out the Julian day of the year.\n    if julian is None and weekday is not None:\n        if week_of_year is not None:\n            week_starts_Mon = True if week_of_year_start == 0 else False\n            julian = _calc_julian_from_U_or_W(year, week_of_year, weekday,\n                                                week_starts_Mon)\n        elif iso_year is not None and iso_week is not None:\n            year, julian = _calc_julian_from_V(iso_year, iso_week, weekday + 1)\n        if julian is not None and julian <= 0:\n            year -= 1\n            yday = 366 if calendar.isleap(year) else 365\n            julian += yday\n\n    if julian is None:\n        # Cannot pre-calculate datetime_date() since can change in Julian\n        # calculation and thus could have different value for the day of\n        # the week calculation.\n        # Need to add 1 to result since first day of the year is 1, not 0.\n        julian = datetime_date(year, month, day).toordinal() - \\\n                  datetime_date(year, 1, 1).toordinal() + 1\n    else:  # Assume that if they bothered to include Julian day (or if it was\n           # calculated above with year/week/weekday) it will be accurate.\n        datetime_result = datetime_date.fromordinal(\n                            (julian - 1) +\n                            datetime_date(year, 1, 1).toordinal())\n        year = datetime_result.year\n        month = datetime_result.month\n        day = datetime_result.day\n    if weekday is None:\n        weekday = datetime_date(year, month, day).weekday()\n    # Add timezone info\n    tzname = found_dict.get(\"Z\")\n\n    if leap_year_fix:\n        # the caller didn't supply a year but asked for Feb 29th. We couldn't\n        # use the default of 1900 for computations. We set it back to ensure\n        # that February 29th is smaller than March 1st.\n        year = 1900\n\n    return (year, month, day,\n            hour, minute, second,\n            weekday, julian, tz, tzname, gmtoff), fraction, gmtoff_fraction\n\ndef _strptime_time(data_string, format=\"%a %b %d %H:%M:%S %Y\"):\n    \"\"\"Return a time struct based on the input string and the\n    format string.\"\"\"\n    tt = _strptime(data_string, format)[0]\n    return time.struct_time(tt[:time._STRUCT_TM_ITEMS])\n\ndef _strptime_datetime(cls, data_string, format=\"%a %b %d %H:%M:%S %Y\"):\n    \"\"\"Return a class cls instance based on the input string and the\n    format string.\"\"\"\n    tt, fraction, gmtoff_fraction = _strptime(data_string, format)\n    tzname, gmtoff = tt[-2:]\n    args = tt[:6] + (fraction,)\n    if gmtoff is not None:\n        tzdelta = datetime_timedelta(seconds=gmtoff, microseconds=gmtoff_fraction)\n        if tzname:\n            tz = datetime_timezone(tzdelta, tzname)\n        else:\n            tz = datetime_timezone(tzdelta)\n        args += (tz,)\n\n    return cls(*args)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/_sysconfigdata__linux_aarch64-linux-gnu.py",
    "content": "# system configuration generated and used by the sysconfig module\nbuild_time_vars = {'ABIFLAGS': '',\n 'AC_APPLE_UNIVERSAL_BUILD': 0,\n 'AIX_GENUINE_CPLUSPLUS': 0,\n 'ALT_SOABI': 0,\n 'ANDROID_API_LEVEL': 0,\n 'AR': 'ar',\n 'ARFLAGS': 'rcs',\n 'BASECFLAGS': '-Wno-unused-result -Wsign-compare',\n 'BASECPPFLAGS': '',\n 'BASEMODLIBS': '',\n 'BINDIR': '/usr/bin',\n 'BINLIBDEST': '/usr/lib/python3.8',\n 'BLDLIBRARY': '-L. -lpython3.8',\n 'BLDSHARED': 'gcc -shared',\n 'BUILDEXE': '',\n 'BUILDPYTHON': 'python',\n 'BUILD_GNU_TYPE': 'aarch64-unknown-linux-musl',\n 'BYTESTR_DEPS': '\\\\',\n 'CC': 'gcc',\n 'CCSHARED': '-fPIC',\n 'CFLAGS': '-Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -g '\n           '-fno-semantic-interposition  -g -fno-semantic-interposition -g '\n           '-fno-semantic-interposition -DTHREAD_STACK_SIZE=0x100000',\n 'CFLAGSFORSHARED': '-fPIC',\n 'CFLAGS_ALIASING': '',\n 'CONFIGFILES': 'configure configure.ac acconfig.h pyconfig.h.in '\n                'Makefile.pre.in',\n 'CONFIGURE_CFLAGS': '-g -fno-semantic-interposition',\n 'CONFIGURE_CFLAGS_NODIST': '-flto -fuse-linker-plugin -ffat-lto-objects '\n                            '-flto-partition=none -g -std=c99 -Wextra '\n                            '-Wno-unused-result -Wno-unused-parameter '\n                            '-Wno-missing-field-initializers '\n                            '-Werror=implicit-function-declaration',\n 'CONFIGURE_CPPFLAGS': '-Os',\n 'CONFIGURE_LDFLAGS': '',\n 'CONFIGURE_LDFLAGS_NODIST': '-flto -fuse-linker-plugin -ffat-lto-objects '\n                             '-flto-partition=none -g',\n 'CONFIG_ARGS': \"'--prefix=/usr' '--disable-rpath' '--enable-ipv6' \"\n                \"'--enable-loadable-sqlite-extensions' \"\n                \"'--enable-optimizations' '--enable-shared' '--with-lto' \"\n                \"'--with-computed-gotos' '--with-dbmliborder=gdbm:ndbm' \"\n                \"'--with-system-expat' '--with-system-ffi' '--with-threads' \"\n                \"'--without-ensurepip' \"\n                \"'--with-bluetoothdir=/home/buildozer/aports/main/python3/src/bluez-5.54' \"\n                \"'CC=gcc' 'CFLAGS= -g -fno-semantic-interposition' 'LDFLAGS=' \"\n                \"'CPPFLAGS=-Os'\",\n 'CONFINCLUDEDIR': '/usr/include',\n 'CONFINCLUDEPY': '/usr/include/python3.8',\n 'COREPYTHONPATH': '',\n 'COVERAGE_INFO': '/home/buildozer/aports/main/python3/src/Python-3.8.5/coverage.info',\n 'COVERAGE_REPORT': '/home/buildozer/aports/main/python3/src/Python-3.8.5/lcov-report',\n 'COVERAGE_REPORT_OPTIONS': '--no-branch-coverage --title \"CPython lcov '\n                            'report\"',\n 'CPPFLAGS': '-I. -I./Include -Os -Os',\n 'CXX': 'g++',\n 'DESTDIRS': '/usr /usr/lib /usr/lib/python3.8 /usr/lib/python3.8/lib-dynload',\n 'DESTLIB': '/usr/lib/python3.8',\n 'DESTPATH': '',\n 'DESTSHARED': '/usr/lib/python3.8/lib-dynload',\n 'DFLAGS': '',\n 'DIRMODE': 755,\n 'DIST': 'README.rst ChangeLog configure configure.ac acconfig.h pyconfig.h.in '\n         'Makefile.pre.in Include Lib Misc Ext-dummy',\n 'DISTDIRS': 'Include Lib Misc Ext-dummy',\n 'DISTFILES': 'README.rst ChangeLog configure configure.ac acconfig.h '\n              'pyconfig.h.in Makefile.pre.in',\n 'DLINCLDIR': '.',\n 'DLLLIBRARY': '',\n 'DOUBLE_IS_ARM_MIXED_ENDIAN_IEEE754': 0,\n 'DOUBLE_IS_BIG_ENDIAN_IEEE754': 0,\n 'DOUBLE_IS_LITTLE_ENDIAN_IEEE754': 1,\n 'DTRACE': '',\n 'DTRACE_DEPS': '\\\\',\n 'DTRACE_HEADERS': '',\n 'DTRACE_OBJS': '',\n 'DYNLOADFILE': 'dynload_shlib.o',\n 'ENABLE_IPV6': 1,\n 'ENSUREPIP': 'no',\n 'EXE': '',\n 'EXEMODE': 755,\n 'EXTRATESTOPTS': '',\n 'EXT_SUFFIX': '.cpython-38-aarch64-linux-gnu.so',\n 'FILEMODE': 644,\n 'FLOAT_WORDS_BIGENDIAN': 0,\n 'FLOCK_NEEDS_LIBBSD': 0,\n 'GETPGRP_HAVE_ARG': 0,\n 'GETTIMEOFDAY_NO_TZ': 0,\n 'GITBRANCH': '',\n 'GITTAG': '',\n 'GITVERSION': '',\n 'GNULD': 'yes',\n 'HAVE_ACCEPT4': 1,\n 'HAVE_ACOSH': 1,\n 'HAVE_ADDRINFO': 1,\n 'HAVE_ALARM': 1,\n 'HAVE_ALIGNED_REQUIRED': 0,\n 'HAVE_ALLOCA_H': 1,\n 'HAVE_ALTZONE': 0,\n 'HAVE_ASINH': 1,\n 'HAVE_ASM_TYPES_H': 1,\n 'HAVE_ATANH': 1,\n 'HAVE_BIND_TEXTDOMAIN_CODESET': 1,\n 'HAVE_BLUETOOTH_BLUETOOTH_H': 1,\n 'HAVE_BROKEN_MBSTOWCS': 0,\n 'HAVE_BROKEN_NICE': 0,\n 'HAVE_BROKEN_PIPE_BUF': 0,\n 'HAVE_BROKEN_POLL': 0,\n 'HAVE_BROKEN_POSIX_SEMAPHORES': 0,\n 'HAVE_BROKEN_PTHREAD_SIGMASK': 0,\n 'HAVE_BROKEN_SEM_GETVALUE': 0,\n 'HAVE_BROKEN_UNSETENV': 0,\n 'HAVE_BUILTIN_ATOMIC': 1,\n 'HAVE_CHFLAGS': 0,\n 'HAVE_CHOWN': 1,\n 'HAVE_CHROOT': 1,\n 'HAVE_CLOCK': 1,\n 'HAVE_CLOCK_GETRES': 1,\n 'HAVE_CLOCK_GETTIME': 1,\n 'HAVE_CLOCK_SETTIME': 1,\n 'HAVE_COMPUTED_GOTOS': 1,\n 'HAVE_CONFSTR': 1,\n 'HAVE_CONIO_H': 0,\n 'HAVE_COPYSIGN': 1,\n 'HAVE_COPY_FILE_RANGE': 1,\n 'HAVE_CRYPT_H': 1,\n 'HAVE_CRYPT_R': 1,\n 'HAVE_CTERMID': 1,\n 'HAVE_CTERMID_R': 0,\n 'HAVE_CURSES_FILTER': 1,\n 'HAVE_CURSES_H': 1,\n 'HAVE_CURSES_HAS_KEY': 1,\n 'HAVE_CURSES_IMMEDOK': 1,\n 'HAVE_CURSES_IS_PAD': 1,\n 'HAVE_CURSES_IS_TERM_RESIZED': 1,\n 'HAVE_CURSES_RESIZETERM': 1,\n 'HAVE_CURSES_RESIZE_TERM': 1,\n 'HAVE_CURSES_SYNCOK': 1,\n 'HAVE_CURSES_TYPEAHEAD': 1,\n 'HAVE_CURSES_USE_ENV': 1,\n 'HAVE_CURSES_WCHGAT': 1,\n 'HAVE_DECL_ISFINITE': 1,\n 'HAVE_DECL_ISINF': 1,\n 'HAVE_DECL_ISNAN': 1,\n 'HAVE_DECL_RTLD_DEEPBIND': 0,\n 'HAVE_DECL_RTLD_GLOBAL': 1,\n 'HAVE_DECL_RTLD_LAZY': 1,\n 'HAVE_DECL_RTLD_LOCAL': 1,\n 'HAVE_DECL_RTLD_MEMBER': 0,\n 'HAVE_DECL_RTLD_NODELETE': 1,\n 'HAVE_DECL_RTLD_NOLOAD': 1,\n 'HAVE_DECL_RTLD_NOW': 1,\n 'HAVE_DECL_TZNAME': 0,\n 'HAVE_DEVICE_MACROS': 1,\n 'HAVE_DEV_PTC': 0,\n 'HAVE_DEV_PTMX': 1,\n 'HAVE_DIRECT_H': 0,\n 'HAVE_DIRENT_D_TYPE': 1,\n 'HAVE_DIRENT_H': 1,\n 'HAVE_DIRFD': 1,\n 'HAVE_DLFCN_H': 1,\n 'HAVE_DLOPEN': 1,\n 'HAVE_DUP2': 1,\n 'HAVE_DUP3': 1,\n 'HAVE_DYNAMIC_LOADING': 1,\n 'HAVE_ENDIAN_H': 1,\n 'HAVE_EPOLL': 1,\n 'HAVE_EPOLL_CREATE1': 1,\n 'HAVE_ERF': 1,\n 'HAVE_ERFC': 1,\n 'HAVE_ERRNO_H': 1,\n 'HAVE_EXECV': 1,\n 'HAVE_EXPLICIT_BZERO': 1,\n 'HAVE_EXPLICIT_MEMSET': 0,\n 'HAVE_EXPM1': 1,\n 'HAVE_FACCESSAT': 1,\n 'HAVE_FCHDIR': 1,\n 'HAVE_FCHMOD': 1,\n 'HAVE_FCHMODAT': 1,\n 'HAVE_FCHOWN': 1,\n 'HAVE_FCHOWNAT': 1,\n 'HAVE_FCNTL_H': 1,\n 'HAVE_FDATASYNC': 1,\n 'HAVE_FDOPENDIR': 1,\n 'HAVE_FDWALK': 0,\n 'HAVE_FEXECVE': 1,\n 'HAVE_FINITE': 1,\n 'HAVE_FLOCK': 1,\n 'HAVE_FORK': 1,\n 'HAVE_FORKPTY': 1,\n 'HAVE_FPATHCONF': 1,\n 'HAVE_FSEEK64': 0,\n 'HAVE_FSEEKO': 1,\n 'HAVE_FSTATAT': 1,\n 'HAVE_FSTATVFS': 1,\n 'HAVE_FSYNC': 1,\n 'HAVE_FTELL64': 0,\n 'HAVE_FTELLO': 1,\n 'HAVE_FTIME': 1,\n 'HAVE_FTRUNCATE': 1,\n 'HAVE_FUTIMENS': 1,\n 'HAVE_FUTIMES': 1,\n 'HAVE_FUTIMESAT': 1,\n 'HAVE_GAI_STRERROR': 1,\n 'HAVE_GAMMA': 0,\n 'HAVE_GCC_ASM_FOR_MC68881': 0,\n 'HAVE_GCC_ASM_FOR_X64': 0,\n 'HAVE_GCC_ASM_FOR_X87': 0,\n 'HAVE_GCC_UINT128_T': 1,\n 'HAVE_GETADDRINFO': 1,\n 'HAVE_GETC_UNLOCKED': 1,\n 'HAVE_GETENTROPY': 1,\n 'HAVE_GETGRGID_R': 1,\n 'HAVE_GETGRNAM_R': 1,\n 'HAVE_GETGROUPLIST': 1,\n 'HAVE_GETGROUPS': 1,\n 'HAVE_GETHOSTBYNAME': 0,\n 'HAVE_GETHOSTBYNAME_R': 1,\n 'HAVE_GETHOSTBYNAME_R_3_ARG': 0,\n 'HAVE_GETHOSTBYNAME_R_5_ARG': 0,\n 'HAVE_GETHOSTBYNAME_R_6_ARG': 1,\n 'HAVE_GETITIMER': 1,\n 'HAVE_GETLOADAVG': 1,\n 'HAVE_GETLOGIN': 1,\n 'HAVE_GETNAMEINFO': 1,\n 'HAVE_GETPAGESIZE': 1,\n 'HAVE_GETPEERNAME': 1,\n 'HAVE_GETPGID': 1,\n 'HAVE_GETPGRP': 1,\n 'HAVE_GETPID': 1,\n 'HAVE_GETPRIORITY': 1,\n 'HAVE_GETPWENT': 1,\n 'HAVE_GETPWNAM_R': 1,\n 'HAVE_GETPWUID_R': 1,\n 'HAVE_GETRANDOM': 1,\n 'HAVE_GETRANDOM_SYSCALL': 1,\n 'HAVE_GETRESGID': 1,\n 'HAVE_GETRESUID': 1,\n 'HAVE_GETSID': 1,\n 'HAVE_GETSPENT': 1,\n 'HAVE_GETSPNAM': 1,\n 'HAVE_GETTIMEOFDAY': 1,\n 'HAVE_GETWD': 0,\n 'HAVE_GLIBC_MEMMOVE_BUG': 0,\n 'HAVE_GRP_H': 1,\n 'HAVE_HSTRERROR': 1,\n 'HAVE_HTOLE64': 1,\n 'HAVE_HYPOT': 1,\n 'HAVE_IEEEFP_H': 0,\n 'HAVE_IF_NAMEINDEX': 1,\n 'HAVE_INET_ATON': 1,\n 'HAVE_INET_PTON': 1,\n 'HAVE_INITGROUPS': 1,\n 'HAVE_INTTYPES_H': 1,\n 'HAVE_IO_H': 0,\n 'HAVE_IPA_PURE_CONST_BUG': 0,\n 'HAVE_KILL': 1,\n 'HAVE_KILLPG': 1,\n 'HAVE_KQUEUE': 0,\n 'HAVE_LANGINFO_H': 1,\n 'HAVE_LARGEFILE_SUPPORT': 0,\n 'HAVE_LCHFLAGS': 0,\n 'HAVE_LCHMOD': 0,\n 'HAVE_LCHOWN': 1,\n 'HAVE_LGAMMA': 1,\n 'HAVE_LIBDL': 1,\n 'HAVE_LIBDLD': 0,\n 'HAVE_LIBIEEE': 0,\n 'HAVE_LIBINTL_H': 0,\n 'HAVE_LIBREADLINE': 1,\n 'HAVE_LIBRESOLV': 0,\n 'HAVE_LIBSENDFILE': 0,\n 'HAVE_LIBUTIL_H': 0,\n 'HAVE_LINK': 1,\n 'HAVE_LINKAT': 1,\n 'HAVE_LINUX_CAN_BCM_H': 1,\n 'HAVE_LINUX_CAN_H': 1,\n 'HAVE_LINUX_CAN_RAW_FD_FRAMES': 1,\n 'HAVE_LINUX_CAN_RAW_H': 1,\n 'HAVE_LINUX_MEMFD_H': 1,\n 'HAVE_LINUX_NETLINK_H': 1,\n 'HAVE_LINUX_QRTR_H': 1,\n 'HAVE_LINUX_RANDOM_H': 1,\n 'HAVE_LINUX_TIPC_H': 1,\n 'HAVE_LINUX_VM_SOCKETS_H': 1,\n 'HAVE_LOCKF': 1,\n 'HAVE_LOG1P': 1,\n 'HAVE_LOG2': 1,\n 'HAVE_LONG_DOUBLE': 1,\n 'HAVE_LSTAT': 1,\n 'HAVE_LUTIMES': 1,\n 'HAVE_MADVISE': 1,\n 'HAVE_MAKEDEV': 1,\n 'HAVE_MBRTOWC': 1,\n 'HAVE_MEMFD_CREATE': 1,\n 'HAVE_MEMORY_H': 1,\n 'HAVE_MEMRCHR': 1,\n 'HAVE_MKDIRAT': 1,\n 'HAVE_MKFIFO': 1,\n 'HAVE_MKFIFOAT': 1,\n 'HAVE_MKNOD': 1,\n 'HAVE_MKNODAT': 1,\n 'HAVE_MKTIME': 1,\n 'HAVE_MMAP': 1,\n 'HAVE_MREMAP': 1,\n 'HAVE_NCURSES_H': 1,\n 'HAVE_NDIR_H': 0,\n 'HAVE_NETPACKET_PACKET_H': 1,\n 'HAVE_NET_IF_H': 1,\n 'HAVE_NICE': 1,\n 'HAVE_OPENAT': 1,\n 'HAVE_OPENPTY': 1,\n 'HAVE_PATHCONF': 1,\n 'HAVE_PAUSE': 1,\n 'HAVE_PIPE2': 1,\n 'HAVE_PLOCK': 0,\n 'HAVE_POLL': 1,\n 'HAVE_POLL_H': 1,\n 'HAVE_POSIX_FADVISE': 1,\n 'HAVE_POSIX_FALLOCATE': 1,\n 'HAVE_POSIX_SPAWN': 1,\n 'HAVE_POSIX_SPAWNP': 1,\n 'HAVE_PREAD': 1,\n 'HAVE_PREADV': 1,\n 'HAVE_PREADV2': 0,\n 'HAVE_PRLIMIT': 1,\n 'HAVE_PROCESS_H': 0,\n 'HAVE_PROTOTYPES': 1,\n 'HAVE_PTHREAD_CONDATTR_SETCLOCK': 1,\n 'HAVE_PTHREAD_DESTRUCTOR': 0,\n 'HAVE_PTHREAD_GETCPUCLOCKID': 1,\n 'HAVE_PTHREAD_H': 1,\n 'HAVE_PTHREAD_INIT': 0,\n 'HAVE_PTHREAD_KILL': 1,\n 'HAVE_PTHREAD_SIGMASK': 1,\n 'HAVE_PTY_H': 1,\n 'HAVE_PUTENV': 1,\n 'HAVE_PWRITE': 1,\n 'HAVE_PWRITEV': 1,\n 'HAVE_PWRITEV2': 0,\n 'HAVE_READLINK': 1,\n 'HAVE_READLINKAT': 1,\n 'HAVE_READV': 1,\n 'HAVE_REALPATH': 1,\n 'HAVE_RENAMEAT': 1,\n 'HAVE_RL_APPEND_HISTORY': 1,\n 'HAVE_RL_CATCH_SIGNAL': 1,\n 'HAVE_RL_COMPLETION_APPEND_CHARACTER': 1,\n 'HAVE_RL_COMPLETION_DISPLAY_MATCHES_HOOK': 1,\n 'HAVE_RL_COMPLETION_MATCHES': 1,\n 'HAVE_RL_COMPLETION_SUPPRESS_APPEND': 1,\n 'HAVE_RL_PRE_INPUT_HOOK': 1,\n 'HAVE_RL_RESIZE_TERMINAL': 1,\n 'HAVE_ROUND': 1,\n 'HAVE_RTPSPAWN': 0,\n 'HAVE_SCHED_GET_PRIORITY_MAX': 1,\n 'HAVE_SCHED_H': 1,\n 'HAVE_SCHED_RR_GET_INTERVAL': 1,\n 'HAVE_SCHED_SETAFFINITY': 1,\n 'HAVE_SCHED_SETPARAM': 1,\n 'HAVE_SCHED_SETSCHEDULER': 1,\n 'HAVE_SEM_GETVALUE': 1,\n 'HAVE_SEM_OPEN': 1,\n 'HAVE_SEM_TIMEDWAIT': 1,\n 'HAVE_SEM_UNLINK': 1,\n 'HAVE_SENDFILE': 1,\n 'HAVE_SETEGID': 1,\n 'HAVE_SETEUID': 1,\n 'HAVE_SETGID': 1,\n 'HAVE_SETGROUPS': 1,\n 'HAVE_SETHOSTNAME': 1,\n 'HAVE_SETITIMER': 1,\n 'HAVE_SETLOCALE': 1,\n 'HAVE_SETPGID': 1,\n 'HAVE_SETPGRP': 1,\n 'HAVE_SETPRIORITY': 1,\n 'HAVE_SETREGID': 1,\n 'HAVE_SETRESGID': 1,\n 'HAVE_SETRESUID': 1,\n 'HAVE_SETREUID': 1,\n 'HAVE_SETSID': 1,\n 'HAVE_SETUID': 1,\n 'HAVE_SETVBUF': 1,\n 'HAVE_SHADOW_H': 1,\n 'HAVE_SHM_OPEN': 1,\n 'HAVE_SHM_UNLINK': 1,\n 'HAVE_SIGACTION': 1,\n 'HAVE_SIGALTSTACK': 1,\n 'HAVE_SIGFILLSET': 1,\n 'HAVE_SIGINFO_T_SI_BAND': 1,\n 'HAVE_SIGINTERRUPT': 1,\n 'HAVE_SIGNAL_H': 1,\n 'HAVE_SIGPENDING': 1,\n 'HAVE_SIGRELSE': 1,\n 'HAVE_SIGTIMEDWAIT': 1,\n 'HAVE_SIGWAIT': 1,\n 'HAVE_SIGWAITINFO': 1,\n 'HAVE_SNPRINTF': 1,\n 'HAVE_SOCKADDR_ALG': 1,\n 'HAVE_SOCKADDR_SA_LEN': 0,\n 'HAVE_SOCKADDR_STORAGE': 1,\n 'HAVE_SOCKETPAIR': 1,\n 'HAVE_SPAWN_H': 1,\n 'HAVE_SSIZE_T': 1,\n 'HAVE_STATVFS': 1,\n 'HAVE_STAT_TV_NSEC': 1,\n 'HAVE_STAT_TV_NSEC2': 0,\n 'HAVE_STDARG_PROTOTYPES': 1,\n 'HAVE_STDINT_H': 1,\n 'HAVE_STDLIB_H': 1,\n 'HAVE_STD_ATOMIC': 1,\n 'HAVE_STRDUP': 1,\n 'HAVE_STRFTIME': 1,\n 'HAVE_STRINGS_H': 1,\n 'HAVE_STRING_H': 1,\n 'HAVE_STRLCPY': 1,\n 'HAVE_STROPTS_H': 1,\n 'HAVE_STRSIGNAL': 1,\n 'HAVE_STRUCT_PASSWD_PW_GECOS': 1,\n 'HAVE_STRUCT_PASSWD_PW_PASSWD': 1,\n 'HAVE_STRUCT_STAT_ST_BIRTHTIME': 0,\n 'HAVE_STRUCT_STAT_ST_BLKSIZE': 1,\n 'HAVE_STRUCT_STAT_ST_BLOCKS': 1,\n 'HAVE_STRUCT_STAT_ST_FLAGS': 0,\n 'HAVE_STRUCT_STAT_ST_GEN': 0,\n 'HAVE_STRUCT_STAT_ST_RDEV': 1,\n 'HAVE_STRUCT_TM_TM_ZONE': 1,\n 'HAVE_SYMLINK': 1,\n 'HAVE_SYMLINKAT': 1,\n 'HAVE_SYNC': 1,\n 'HAVE_SYSCONF': 1,\n 'HAVE_SYSEXITS_H': 1,\n 'HAVE_SYS_AUDIOIO_H': 0,\n 'HAVE_SYS_BSDTTY_H': 0,\n 'HAVE_SYS_DEVPOLL_H': 0,\n 'HAVE_SYS_DIR_H': 0,\n 'HAVE_SYS_ENDIAN_H': 0,\n 'HAVE_SYS_EPOLL_H': 1,\n 'HAVE_SYS_EVENT_H': 0,\n 'HAVE_SYS_FILE_H': 1,\n 'HAVE_SYS_IOCTL_H': 1,\n 'HAVE_SYS_KERN_CONTROL_H': 0,\n 'HAVE_SYS_LOADAVG_H': 0,\n 'HAVE_SYS_LOCK_H': 0,\n 'HAVE_SYS_MEMFD_H': 0,\n 'HAVE_SYS_MKDEV_H': 0,\n 'HAVE_SYS_MMAN_H': 1,\n 'HAVE_SYS_MODEM_H': 0,\n 'HAVE_SYS_NDIR_H': 0,\n 'HAVE_SYS_PARAM_H': 1,\n 'HAVE_SYS_POLL_H': 1,\n 'HAVE_SYS_RANDOM_H': 1,\n 'HAVE_SYS_RESOURCE_H': 1,\n 'HAVE_SYS_SELECT_H': 1,\n 'HAVE_SYS_SENDFILE_H': 1,\n 'HAVE_SYS_SOCKET_H': 1,\n 'HAVE_SYS_STATVFS_H': 1,\n 'HAVE_SYS_STAT_H': 1,\n 'HAVE_SYS_SYSCALL_H': 1,\n 'HAVE_SYS_SYSMACROS_H': 1,\n 'HAVE_SYS_SYS_DOMAIN_H': 0,\n 'HAVE_SYS_TERMIO_H': 0,\n 'HAVE_SYS_TIMES_H': 1,\n 'HAVE_SYS_TIME_H': 1,\n 'HAVE_SYS_TYPES_H': 1,\n 'HAVE_SYS_UIO_H': 1,\n 'HAVE_SYS_UN_H': 1,\n 'HAVE_SYS_UTSNAME_H': 1,\n 'HAVE_SYS_WAIT_H': 1,\n 'HAVE_SYS_XATTR_H': 1,\n 'HAVE_TCGETPGRP': 1,\n 'HAVE_TCSETPGRP': 1,\n 'HAVE_TEMPNAM': 1,\n 'HAVE_TERMIOS_H': 1,\n 'HAVE_TERM_H': 1,\n 'HAVE_TGAMMA': 1,\n 'HAVE_TIMEGM': 1,\n 'HAVE_TIMES': 1,\n 'HAVE_TMPFILE': 1,\n 'HAVE_TMPNAM': 1,\n 'HAVE_TMPNAM_R': 0,\n 'HAVE_TM_ZONE': 1,\n 'HAVE_TRUNCATE': 1,\n 'HAVE_TZNAME': 0,\n 'HAVE_UCS4_TCL': 0,\n 'HAVE_UNAME': 1,\n 'HAVE_UNISTD_H': 1,\n 'HAVE_UNLINKAT': 1,\n 'HAVE_UNSETENV': 1,\n 'HAVE_USABLE_WCHAR_T': 1,\n 'HAVE_UTIL_H': 0,\n 'HAVE_UTIMENSAT': 1,\n 'HAVE_UTIMES': 1,\n 'HAVE_UTIME_H': 1,\n 'HAVE_UUID_CREATE': 0,\n 'HAVE_UUID_ENC_BE': 0,\n 'HAVE_UUID_GENERATE_TIME_SAFE': 0,\n 'HAVE_UUID_H': 0,\n 'HAVE_UUID_UUID_H': 0,\n 'HAVE_WAIT3': 1,\n 'HAVE_WAIT4': 1,\n 'HAVE_WAITID': 1,\n 'HAVE_WAITPID': 1,\n 'HAVE_WCHAR_H': 1,\n 'HAVE_WCSCOLL': 1,\n 'HAVE_WCSFTIME': 1,\n 'HAVE_WCSXFRM': 1,\n 'HAVE_WMEMCMP': 1,\n 'HAVE_WORKING_TZSET': 1,\n 'HAVE_WRITEV': 1,\n 'HAVE_X509_VERIFY_PARAM_SET1_HOST': 1,\n 'HAVE_ZLIB_COPY': 1,\n 'HAVE__GETPTY': 0,\n 'HOST_GNU_TYPE': 'aarch64-unknown-linux-musl',\n 'INCLDIRSTOMAKE': '/usr/include /usr/include /usr/include/python3.8 '\n                   '/usr/include/python3.8',\n 'INCLUDEDIR': '/usr/include',\n 'INCLUDEPY': '/usr/include/python3.8',\n 'INSTALL': '/usr/bin/install -c',\n 'INSTALL_DATA': '/usr/bin/install -c -m 644',\n 'INSTALL_PROGRAM': '/usr/bin/install -c',\n 'INSTALL_SCRIPT': '/usr/bin/install -c',\n 'INSTALL_SHARED': '/usr/bin/install -c -m 755',\n 'INSTSONAME': 'libpython3.8.so.1.0',\n 'IO_H': 'Modules/_io/_iomodule.h',\n 'IO_OBJS': '\\\\',\n 'LDCXXSHARED': 'g++ -shared',\n 'LDFLAGS': '',\n 'LDLIBRARY': 'libpython3.8.so',\n 'LDLIBRARYDIR': '',\n 'LDSHARED': 'gcc -shared',\n 'LDVERSION': '3.8',\n 'LIBC': '',\n 'LIBDEST': '/usr/lib/python3.8',\n 'LIBDIR': '/usr/lib',\n 'LIBFFI_INCLUDEDIR': '',\n 'LIBM': '-lm',\n 'LIBOBJDIR': 'Python/',\n 'LIBOBJS': '',\n 'LIBPC': '/usr/lib/pkgconfig',\n 'LIBPL': '/usr/lib/python3.8/config-3.8-aarch64-linux-gnu',\n 'LIBPYTHON': '',\n 'LIBRARY': 'libpython3.8.a',\n 'LIBRARY_OBJS': '\\\\',\n 'LIBRARY_OBJS_OMIT_FROZEN': '\\\\',\n 'LIBS': '-ldl  -lm',\n 'LIBSUBDIRS': 'tkinter tkinter/test tkinter/test/test_tkinter \\\\',\n 'LINKCC': 'gcc',\n 'LINKFORSHARED': '-Xlinker -export-dynamic',\n 'LIPO_32BIT_FLAGS': '',\n 'LLVM_PROF_ERR': 'no',\n 'LLVM_PROF_FILE': '',\n 'LLVM_PROF_MERGER': 'true',\n 'LN': 'ln',\n 'LOCALMODLIBS': '',\n 'MACHDEP': 'linux',\n 'MACHDEP_OBJS': '',\n 'MACHDESTLIB': '/usr/lib/python3.8',\n 'MACOSX_DEPLOYMENT_TARGET': '',\n 'MAINCC': 'gcc',\n 'MAJOR_IN_MKDEV': 0,\n 'MAJOR_IN_SYSMACROS': 1,\n 'MAKESETUP': './Modules/makesetup',\n 'MANDIR': '/usr/share/man',\n 'MKDIR_P': './install-sh -c -d',\n 'MODBUILT_NAMES': 'posix  errno  pwd  _sre  _codecs  _weakref  _functools  '\n                   '_operator  _collections  _abc  itertools  atexit  _signal  '\n                   '_stat  time  _thread  _locale  _io  faulthandler  '\n                   '_tracemalloc  _symtable  xxsubtype',\n 'MODDISABLED_NAMES': '',\n 'MODLIBS': '',\n 'MODOBJS': 'Modules/posixmodule.o  Modules/errnomodule.o  '\n            'Modules/pwdmodule.o  Modules/_sre.o  Modules/_codecsmodule.o  '\n            'Modules/_weakref.o  Modules/_functoolsmodule.o  '\n            'Modules/_operator.o  Modules/_collectionsmodule.o  '\n            'Modules/_abc.o  Modules/itertoolsmodule.o  '\n            'Modules/atexitmodule.o  Modules/signalmodule.o  Modules/_stat.o  '\n            'Modules/timemodule.o  Modules/_threadmodule.o  '\n            'Modules/_localemodule.o  Modules/_iomodule.o Modules/iobase.o '\n            'Modules/fileio.o Modules/bytesio.o Modules/bufferedio.o '\n            'Modules/textio.o Modules/stringio.o  Modules/faulthandler.o  '\n            'Modules/_tracemalloc.o Modules/hashtable.o  '\n            'Modules/symtablemodule.o  Modules/xxsubtype.o',\n 'MODULE_OBJS': '\\\\',\n 'MULTIARCH': 'aarch64-linux-gnu',\n 'MULTIARCH_CPPFLAGS': '-DMULTIARCH=\\\\\"aarch64-linux-gnu\\\\\"',\n 'MVWDELCH_IS_EXPRESSION': 1,\n 'NO_AS_NEEDED': '-Wl,--no-as-needed',\n 'OBJECT_OBJS': '\\\\',\n 'OPENSSL_INCLUDES': '',\n 'OPENSSL_LDFLAGS': '',\n 'OPENSSL_LIBS': '-lssl -lcrypto',\n 'OPT': '-DNDEBUG -g -fwrapv -O3 -Wall',\n 'OTHER_LIBTOOL_OPT': '',\n 'PACKAGE_BUGREPORT': 0,\n 'PACKAGE_NAME': 0,\n 'PACKAGE_STRING': 0,\n 'PACKAGE_TARNAME': 0,\n 'PACKAGE_URL': 0,\n 'PACKAGE_VERSION': 0,\n 'PARSER_HEADERS': '\\\\',\n 'PARSER_OBJS': '\\\\ Parser/myreadline.o Parser/parsetok.o Parser/tokenizer.o',\n 'PGO_PROF_GEN_FLAG': '-fprofile-generate',\n 'PGO_PROF_USE_FLAG': '-fprofile-use -fprofile-correction',\n 'POBJS': '\\\\',\n 'POSIX_SEMAPHORES_NOT_ENABLED': 0,\n 'PROFILE_TASK': '-m test --pgo',\n 'PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT': 1,\n 'PTHREAD_SYSTEM_SCHED_SUPPORTED': 1,\n 'PURIFY': '',\n 'PY3LIBRARY': 'libpython3.so',\n 'PYLONG_BITS_IN_DIGIT': 0,\n 'PYTHON': 'python',\n 'PYTHONFRAMEWORK': '',\n 'PYTHONFRAMEWORKDIR': 'no-framework',\n 'PYTHONFRAMEWORKINSTALLDIR': '',\n 'PYTHONFRAMEWORKPREFIX': '',\n 'PYTHONPATH': '',\n 'PYTHON_FOR_BUILD': './python -E',\n 'PYTHON_FOR_REGEN': 'python3',\n 'PYTHON_HEADERS': '\\\\',\n 'PYTHON_OBJS': '\\\\',\n 'PY_BUILTIN_MODULE_CFLAGS': '-Wno-unused-result -Wsign-compare -DNDEBUG -g '\n                             '-fwrapv -O3 -Wall -g '\n                             '-fno-semantic-interposition  -g '\n                             '-fno-semantic-interposition -g '\n                             '-fno-semantic-interposition '\n                             '-DTHREAD_STACK_SIZE=0x100000 -flto '\n                             '-fuse-linker-plugin -ffat-lto-objects '\n                             '-flto-partition=none -g -std=c99 -Wextra '\n                             '-Wno-unused-result -Wno-unused-parameter '\n                             '-Wno-missing-field-initializers '\n                             '-Werror=implicit-function-declaration '\n                             '-fprofile-use -fprofile-correction '\n                             '-I./Include/internal -I. -I./Include -Os -Os '\n                             '-fPIC -DPy_BUILD_CORE_BUILTIN',\n 'PY_CFLAGS': '-Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall '\n              '-g -fno-semantic-interposition  -g -fno-semantic-interposition '\n              '-g -fno-semantic-interposition -DTHREAD_STACK_SIZE=0x100000',\n 'PY_CFLAGS_NODIST': '-flto -fuse-linker-plugin -ffat-lto-objects '\n                     '-flto-partition=none -g -std=c99 -Wextra '\n                     '-Wno-unused-result -Wno-unused-parameter '\n                     '-Wno-missing-field-initializers '\n                     '-Werror=implicit-function-declaration -fprofile-use '\n                     '-fprofile-correction -I./Include/internal',\n 'PY_COERCE_C_LOCALE': 1,\n 'PY_CORE_CFLAGS': '-Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 '\n                   '-Wall -g -fno-semantic-interposition  -g '\n                   '-fno-semantic-interposition -g -fno-semantic-interposition '\n                   '-DTHREAD_STACK_SIZE=0x100000 -flto -fuse-linker-plugin '\n                   '-ffat-lto-objects -flto-partition=none -g -std=c99 -Wextra '\n                   '-Wno-unused-result -Wno-unused-parameter '\n                   '-Wno-missing-field-initializers '\n                   '-Werror=implicit-function-declaration -fprofile-use '\n                   '-fprofile-correction -I./Include/internal -I. -I./Include '\n                   '-Os -Os -fPIC -DPy_BUILD_CORE',\n 'PY_CORE_LDFLAGS': '-flto -fuse-linker-plugin -ffat-lto-objects '\n                    '-flto-partition=none -g',\n 'PY_CPPFLAGS': '-I. -I./Include -Os -Os',\n 'PY_FORMAT_SIZE_T': '\"z\"',\n 'PY_LDFLAGS': '',\n 'PY_LDFLAGS_NODIST': '-flto -fuse-linker-plugin -ffat-lto-objects '\n                      '-flto-partition=none -g',\n 'PY_SSL_DEFAULT_CIPHERS': 1,\n 'PY_SSL_DEFAULT_CIPHER_STRING': 0,\n 'PY_STDMODULE_CFLAGS': '-Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv '\n                        '-O3 -Wall -g -fno-semantic-interposition  -g '\n                        '-fno-semantic-interposition -g '\n                        '-fno-semantic-interposition '\n                        '-DTHREAD_STACK_SIZE=0x100000 -flto '\n                        '-fuse-linker-plugin -ffat-lto-objects '\n                        '-flto-partition=none -g -std=c99 -Wextra '\n                        '-Wno-unused-result -Wno-unused-parameter '\n                        '-Wno-missing-field-initializers '\n                        '-Werror=implicit-function-declaration -fprofile-use '\n                        '-fprofile-correction -I./Include/internal -I. '\n                        '-I./Include -Os -Os -fPIC',\n 'Py_DEBUG': 0,\n 'Py_ENABLE_SHARED': 1,\n 'Py_HASH_ALGORITHM': 0,\n 'Py_TRACE_REFS': 0,\n 'QUICKTESTOPTS': '-x test_subprocess test_io test_lib2to3 \\\\',\n 'READELF': 'readelf',\n 'RESSRCDIR': 'Mac/Resources/framework',\n 'RETSIGTYPE': 'void',\n 'RUNSHARED': 'LD_LIBRARY_PATH=/home/buildozer/aports/main/python3/src/Python-3.8.5',\n 'SCRIPTDIR': '/usr/lib',\n 'SETPGRP_HAVE_ARG': 0,\n 'SGI_ABI': '@SGI_ABI@',\n 'SHELL': '/bin/sh',\n 'SHLIBS': '-ldl  -lm',\n 'SHLIB_SUFFIX': '.so',\n 'SHM_NEEDS_LIBRT': 0,\n 'SIGNED_RIGHT_SHIFT_ZERO_FILLS': 0,\n 'SITEPATH': '',\n 'SIZEOF_DOUBLE': 8,\n 'SIZEOF_FLOAT': 4,\n 'SIZEOF_FPOS_T': 16,\n 'SIZEOF_INT': 4,\n 'SIZEOF_LONG': 8,\n 'SIZEOF_LONG_DOUBLE': 16,\n 'SIZEOF_LONG_LONG': 8,\n 'SIZEOF_OFF_T': 8,\n 'SIZEOF_PID_T': 4,\n 'SIZEOF_PTHREAD_KEY_T': 4,\n 'SIZEOF_PTHREAD_T': 8,\n 'SIZEOF_SHORT': 2,\n 'SIZEOF_SIZE_T': 8,\n 'SIZEOF_TIME_T': 8,\n 'SIZEOF_UINTPTR_T': 8,\n 'SIZEOF_VOID_P': 8,\n 'SIZEOF_WCHAR_T': 4,\n 'SIZEOF__BOOL': 1,\n 'SOABI': 'cpython-38-aarch64-linux-gnu',\n 'SRCDIRS': 'Parser Objects Python Modules Modules/_io Programs',\n 'SRC_GDB_HOOKS': './Tools/gdb/libpython.py',\n 'STDC_HEADERS': 1,\n 'STRICT_SYSV_CURSES': \"/* Don't use ncurses extensions */\",\n 'STRIPFLAG': '-s',\n 'SUBDIRS': '',\n 'SUBDIRSTOO': 'Include Lib Misc',\n 'SYSLIBS': '-lm',\n 'SYS_SELECT_WITH_SYS_TIME': 1,\n 'TCLTK_INCLUDES': '',\n 'TCLTK_LIBS': '',\n 'TESTOPTS': '',\n 'TESTPATH': '',\n 'TESTPYTHON': 'LD_LIBRARY_PATH=/home/buildozer/aports/main/python3/src/Python-3.8.5 '\n               './python',\n 'TESTPYTHONOPTS': '',\n 'TESTRUNNER': 'LD_LIBRARY_PATH=/home/buildozer/aports/main/python3/src/Python-3.8.5 '\n               './python ./Tools/scripts/run_tests.py',\n 'TESTTIMEOUT': 1200,\n 'TIMEMODULE_LIB': 0,\n 'TIME_WITH_SYS_TIME': 1,\n 'TM_IN_SYS_TIME': 0,\n 'UNICODE_DEPS': '\\\\',\n 'UNIVERSALSDK': '',\n 'UPDATE_FILE': 'python3 ./Tools/scripts/update_file.py',\n 'USE_COMPUTED_GOTOS': 1,\n 'VERSION': '3.8',\n 'WINDOW_HAS_FLAGS': 1,\n 'WITH_DECIMAL_CONTEXTVAR': 1,\n 'WITH_DOC_STRINGS': 1,\n 'WITH_DTRACE': 0,\n 'WITH_DYLD': 0,\n 'WITH_LIBINTL': 0,\n 'WITH_NEXT_FRAMEWORK': 0,\n 'WITH_PYMALLOC': 1,\n 'WITH_VALGRIND': 0,\n 'X87_DOUBLE_ROUNDING': 0,\n 'XMLLIBSUBDIRS': 'xml xml/dom xml/etree xml/parsers xml/sax',\n 'abs_builddir': '/home/buildozer/aports/main/python3/src/Python-3.8.5',\n 'abs_srcdir': '/home/buildozer/aports/main/python3/src/Python-3.8.5',\n 'datarootdir': '/usr/share',\n 'exec_prefix': '/usr',\n 'prefix': '/usr',\n 'srcdir': '.'}\n"
  },
  {
    "path": "rd/usr/lib/python3.8/_threading_local.py",
    "content": "\"\"\"Thread-local objects.\n\n(Note that this module provides a Python version of the threading.local\n class.  Depending on the version of Python you're using, there may be a\n faster one available.  You should always import the `local` class from\n `threading`.)\n\nThread-local objects support the management of thread-local data.\nIf you have data that you want to be local to a thread, simply create\na thread-local object and use its attributes:\n\n  >>> mydata = local()\n  >>> mydata.number = 42\n  >>> mydata.number\n  42\n\nYou can also access the local-object's dictionary:\n\n  >>> mydata.__dict__\n  {'number': 42}\n  >>> mydata.__dict__.setdefault('widgets', [])\n  []\n  >>> mydata.widgets\n  []\n\nWhat's important about thread-local objects is that their data are\nlocal to a thread. If we access the data in a different thread:\n\n  >>> log = []\n  >>> def f():\n  ...     items = sorted(mydata.__dict__.items())\n  ...     log.append(items)\n  ...     mydata.number = 11\n  ...     log.append(mydata.number)\n\n  >>> import threading\n  >>> thread = threading.Thread(target=f)\n  >>> thread.start()\n  >>> thread.join()\n  >>> log\n  [[], 11]\n\nwe get different data.  Furthermore, changes made in the other thread\ndon't affect data seen in this thread:\n\n  >>> mydata.number\n  42\n\nOf course, values you get from a local object, including a __dict__\nattribute, are for whatever thread was current at the time the\nattribute was read.  For that reason, you generally don't want to save\nthese values across threads, as they apply only to the thread they\ncame from.\n\nYou can create custom local objects by subclassing the local class:\n\n  >>> class MyLocal(local):\n  ...     number = 2\n  ...     def __init__(self, /, **kw):\n  ...         self.__dict__.update(kw)\n  ...     def squared(self):\n  ...         return self.number ** 2\n\nThis can be useful to support default values, methods and\ninitialization.  Note that if you define an __init__ method, it will be\ncalled each time the local object is used in a separate thread.  This\nis necessary to initialize each thread's dictionary.\n\nNow if we create a local object:\n\n  >>> mydata = MyLocal(color='red')\n\nNow we have a default number:\n\n  >>> mydata.number\n  2\n\nan initial color:\n\n  >>> mydata.color\n  'red'\n  >>> del mydata.color\n\nAnd a method that operates on the data:\n\n  >>> mydata.squared()\n  4\n\nAs before, we can access the data in a separate thread:\n\n  >>> log = []\n  >>> thread = threading.Thread(target=f)\n  >>> thread.start()\n  >>> thread.join()\n  >>> log\n  [[('color', 'red')], 11]\n\nwithout affecting this thread's data:\n\n  >>> mydata.number\n  2\n  >>> mydata.color\n  Traceback (most recent call last):\n  ...\n  AttributeError: 'MyLocal' object has no attribute 'color'\n\nNote that subclasses can define slots, but they are not thread\nlocal. They are shared across threads:\n\n  >>> class MyLocal(local):\n  ...     __slots__ = 'number'\n\n  >>> mydata = MyLocal()\n  >>> mydata.number = 42\n  >>> mydata.color = 'red'\n\nSo, the separate thread:\n\n  >>> thread = threading.Thread(target=f)\n  >>> thread.start()\n  >>> thread.join()\n\naffects what we see:\n\n  >>> mydata.number\n  11\n\n>>> del mydata\n\"\"\"\n\nfrom weakref import ref\nfrom contextlib import contextmanager\n\n__all__ = [\"local\"]\n\n# We need to use objects from the threading module, but the threading\n# module may also want to use our `local` class, if support for locals\n# isn't compiled in to the `thread` module.  This creates potential problems\n# with circular imports.  For that reason, we don't import `threading`\n# until the bottom of this file (a hack sufficient to worm around the\n# potential problems).  Note that all platforms on CPython do have support\n# for locals in the `thread` module, and there is no circular import problem\n# then, so problems introduced by fiddling the order of imports here won't\n# manifest.\n\nclass _localimpl:\n    \"\"\"A class managing thread-local dicts\"\"\"\n    __slots__ = 'key', 'dicts', 'localargs', 'locallock', '__weakref__'\n\n    def __init__(self):\n        # The key used in the Thread objects' attribute dicts.\n        # We keep it a string for speed but make it unlikely to clash with\n        # a \"real\" attribute.\n        self.key = '_threading_local._localimpl.' + str(id(self))\n        # { id(Thread) -> (ref(Thread), thread-local dict) }\n        self.dicts = {}\n\n    def get_dict(self):\n        \"\"\"Return the dict for the current thread. Raises KeyError if none\n        defined.\"\"\"\n        thread = current_thread()\n        return self.dicts[id(thread)][1]\n\n    def create_dict(self):\n        \"\"\"Create a new dict for the current thread, and return it.\"\"\"\n        localdict = {}\n        key = self.key\n        thread = current_thread()\n        idt = id(thread)\n        def local_deleted(_, key=key):\n            # When the localimpl is deleted, remove the thread attribute.\n            thread = wrthread()\n            if thread is not None:\n                del thread.__dict__[key]\n        def thread_deleted(_, idt=idt):\n            # When the thread is deleted, remove the local dict.\n            # Note that this is suboptimal if the thread object gets\n            # caught in a reference loop. We would like to be called\n            # as soon as the OS-level thread ends instead.\n            local = wrlocal()\n            if local is not None:\n                dct = local.dicts.pop(idt)\n        wrlocal = ref(self, local_deleted)\n        wrthread = ref(thread, thread_deleted)\n        thread.__dict__[key] = wrlocal\n        self.dicts[idt] = wrthread, localdict\n        return localdict\n\n\n@contextmanager\ndef _patch(self):\n    impl = object.__getattribute__(self, '_local__impl')\n    try:\n        dct = impl.get_dict()\n    except KeyError:\n        dct = impl.create_dict()\n        args, kw = impl.localargs\n        self.__init__(*args, **kw)\n    with impl.locallock:\n        object.__setattr__(self, '__dict__', dct)\n        yield\n\n\nclass local:\n    __slots__ = '_local__impl', '__dict__'\n\n    def __new__(cls, /, *args, **kw):\n        if (args or kw) and (cls.__init__ is object.__init__):\n            raise TypeError(\"Initialization arguments are not supported\")\n        self = object.__new__(cls)\n        impl = _localimpl()\n        impl.localargs = (args, kw)\n        impl.locallock = RLock()\n        object.__setattr__(self, '_local__impl', impl)\n        # We need to create the thread dict in anticipation of\n        # __init__ being called, to make sure we don't call it\n        # again ourselves.\n        impl.create_dict()\n        return self\n\n    def __getattribute__(self, name):\n        with _patch(self):\n            return object.__getattribute__(self, name)\n\n    def __setattr__(self, name, value):\n        if name == '__dict__':\n            raise AttributeError(\n                \"%r object attribute '__dict__' is read-only\"\n                % self.__class__.__name__)\n        with _patch(self):\n            return object.__setattr__(self, name, value)\n\n    def __delattr__(self, name):\n        if name == '__dict__':\n            raise AttributeError(\n                \"%r object attribute '__dict__' is read-only\"\n                % self.__class__.__name__)\n        with _patch(self):\n            return object.__delattr__(self, name)\n\n\nfrom threading import current_thread, RLock\n"
  },
  {
    "path": "rd/usr/lib/python3.8/_weakrefset.py",
    "content": "# Access WeakSet through the weakref module.\n# This code is separated-out because it is needed\n# by abc.py to load everything else at startup.\n\nfrom _weakref import ref\n\n__all__ = ['WeakSet']\n\n\nclass _IterationGuard:\n    # This context manager registers itself in the current iterators of the\n    # weak container, such as to delay all removals until the context manager\n    # exits.\n    # This technique should be relatively thread-safe (since sets are).\n\n    def __init__(self, weakcontainer):\n        # Don't create cycles\n        self.weakcontainer = ref(weakcontainer)\n\n    def __enter__(self):\n        w = self.weakcontainer()\n        if w is not None:\n            w._iterating.add(self)\n        return self\n\n    def __exit__(self, e, t, b):\n        w = self.weakcontainer()\n        if w is not None:\n            s = w._iterating\n            s.remove(self)\n            if not s:\n                w._commit_removals()\n\n\nclass WeakSet:\n    def __init__(self, data=None):\n        self.data = set()\n        def _remove(item, selfref=ref(self)):\n            self = selfref()\n            if self is not None:\n                if self._iterating:\n                    self._pending_removals.append(item)\n                else:\n                    self.data.discard(item)\n        self._remove = _remove\n        # A list of keys to be removed\n        self._pending_removals = []\n        self._iterating = set()\n        if data is not None:\n            self.update(data)\n\n    def _commit_removals(self):\n        l = self._pending_removals\n        discard = self.data.discard\n        while l:\n            discard(l.pop())\n\n    def __iter__(self):\n        with _IterationGuard(self):\n            for itemref in self.data:\n                item = itemref()\n                if item is not None:\n                    # Caveat: the iterator will keep a strong reference to\n                    # `item` until it is resumed or closed.\n                    yield item\n\n    def __len__(self):\n        return len(self.data) - len(self._pending_removals)\n\n    def __contains__(self, item):\n        try:\n            wr = ref(item)\n        except TypeError:\n            return False\n        return wr in self.data\n\n    def __reduce__(self):\n        return (self.__class__, (list(self),),\n                getattr(self, '__dict__', None))\n\n    def add(self, item):\n        if self._pending_removals:\n            self._commit_removals()\n        self.data.add(ref(item, self._remove))\n\n    def clear(self):\n        if self._pending_removals:\n            self._commit_removals()\n        self.data.clear()\n\n    def copy(self):\n        return self.__class__(self)\n\n    def pop(self):\n        if self._pending_removals:\n            self._commit_removals()\n        while True:\n            try:\n                itemref = self.data.pop()\n            except KeyError:\n                raise KeyError('pop from empty WeakSet') from None\n            item = itemref()\n            if item is not None:\n                return item\n\n    def remove(self, item):\n        if self._pending_removals:\n            self._commit_removals()\n        self.data.remove(ref(item))\n\n    def discard(self, item):\n        if self._pending_removals:\n            self._commit_removals()\n        self.data.discard(ref(item))\n\n    def update(self, other):\n        if self._pending_removals:\n            self._commit_removals()\n        for element in other:\n            self.add(element)\n\n    def __ior__(self, other):\n        self.update(other)\n        return self\n\n    def difference(self, other):\n        newset = self.copy()\n        newset.difference_update(other)\n        return newset\n    __sub__ = difference\n\n    def difference_update(self, other):\n        self.__isub__(other)\n    def __isub__(self, other):\n        if self._pending_removals:\n            self._commit_removals()\n        if self is other:\n            self.data.clear()\n        else:\n            self.data.difference_update(ref(item) for item in other)\n        return self\n\n    def intersection(self, other):\n        return self.__class__(item for item in other if item in self)\n    __and__ = intersection\n\n    def intersection_update(self, other):\n        self.__iand__(other)\n    def __iand__(self, other):\n        if self._pending_removals:\n            self._commit_removals()\n        self.data.intersection_update(ref(item) for item in other)\n        return self\n\n    def issubset(self, other):\n        return self.data.issubset(ref(item) for item in other)\n    __le__ = issubset\n\n    def __lt__(self, other):\n        return self.data < set(map(ref, other))\n\n    def issuperset(self, other):\n        return self.data.issuperset(ref(item) for item in other)\n    __ge__ = issuperset\n\n    def __gt__(self, other):\n        return self.data > set(map(ref, other))\n\n    def __eq__(self, other):\n        if not isinstance(other, self.__class__):\n            return NotImplemented\n        return self.data == set(map(ref, other))\n\n    def symmetric_difference(self, other):\n        newset = self.copy()\n        newset.symmetric_difference_update(other)\n        return newset\n    __xor__ = symmetric_difference\n\n    def symmetric_difference_update(self, other):\n        self.__ixor__(other)\n    def __ixor__(self, other):\n        if self._pending_removals:\n            self._commit_removals()\n        if self is other:\n            self.data.clear()\n        else:\n            self.data.symmetric_difference_update(ref(item, self._remove) for item in other)\n        return self\n\n    def union(self, other):\n        return self.__class__(e for s in (self, other) for e in s)\n    __or__ = union\n\n    def isdisjoint(self, other):\n        return len(self.intersection(other)) == 0\n\n    def __repr__(self):\n        return repr(self.data)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/abc.py",
    "content": "# Copyright 2007 Google, Inc. All Rights Reserved.\n# Licensed to PSF under a Contributor Agreement.\n\n\"\"\"Abstract Base Classes (ABCs) according to PEP 3119.\"\"\"\n\n\ndef abstractmethod(funcobj):\n    \"\"\"A decorator indicating abstract methods.\n\n    Requires that the metaclass is ABCMeta or derived from it.  A\n    class that has a metaclass derived from ABCMeta cannot be\n    instantiated unless all of its abstract methods are overridden.\n    The abstract methods can be called using any of the normal\n    'super' call mechanisms.  abstractmethod() may be used to declare\n    abstract methods for properties and descriptors.\n\n    Usage:\n\n        class C(metaclass=ABCMeta):\n            @abstractmethod\n            def my_abstract_method(self, ...):\n                ...\n    \"\"\"\n    funcobj.__isabstractmethod__ = True\n    return funcobj\n\n\nclass abstractclassmethod(classmethod):\n    \"\"\"A decorator indicating abstract classmethods.\n\n    Deprecated, use 'classmethod' with 'abstractmethod' instead.\n    \"\"\"\n\n    __isabstractmethod__ = True\n\n    def __init__(self, callable):\n        callable.__isabstractmethod__ = True\n        super().__init__(callable)\n\n\nclass abstractstaticmethod(staticmethod):\n    \"\"\"A decorator indicating abstract staticmethods.\n\n    Deprecated, use 'staticmethod' with 'abstractmethod' instead.\n    \"\"\"\n\n    __isabstractmethod__ = True\n\n    def __init__(self, callable):\n        callable.__isabstractmethod__ = True\n        super().__init__(callable)\n\n\nclass abstractproperty(property):\n    \"\"\"A decorator indicating abstract properties.\n\n    Deprecated, use 'property' with 'abstractmethod' instead.\n    \"\"\"\n\n    __isabstractmethod__ = True\n\n\ntry:\n    from _abc import (get_cache_token, _abc_init, _abc_register,\n                      _abc_instancecheck, _abc_subclasscheck, _get_dump,\n                      _reset_registry, _reset_caches)\nexcept ImportError:\n    from _py_abc import ABCMeta, get_cache_token\n    ABCMeta.__module__ = 'abc'\nelse:\n    class ABCMeta(type):\n        \"\"\"Metaclass for defining Abstract Base Classes (ABCs).\n\n        Use this metaclass to create an ABC.  An ABC can be subclassed\n        directly, and then acts as a mix-in class.  You can also register\n        unrelated concrete classes (even built-in classes) and unrelated\n        ABCs as 'virtual subclasses' -- these and their descendants will\n        be considered subclasses of the registering ABC by the built-in\n        issubclass() function, but the registering ABC won't show up in\n        their MRO (Method Resolution Order) nor will method\n        implementations defined by the registering ABC be callable (not\n        even via super()).\n        \"\"\"\n        def __new__(mcls, name, bases, namespace, **kwargs):\n            cls = super().__new__(mcls, name, bases, namespace, **kwargs)\n            _abc_init(cls)\n            return cls\n\n        def register(cls, subclass):\n            \"\"\"Register a virtual subclass of an ABC.\n\n            Returns the subclass, to allow usage as a class decorator.\n            \"\"\"\n            return _abc_register(cls, subclass)\n\n        def __instancecheck__(cls, instance):\n            \"\"\"Override for isinstance(instance, cls).\"\"\"\n            return _abc_instancecheck(cls, instance)\n\n        def __subclasscheck__(cls, subclass):\n            \"\"\"Override for issubclass(subclass, cls).\"\"\"\n            return _abc_subclasscheck(cls, subclass)\n\n        def _dump_registry(cls, file=None):\n            \"\"\"Debug helper to print the ABC registry.\"\"\"\n            print(f\"Class: {cls.__module__}.{cls.__qualname__}\", file=file)\n            print(f\"Inv. counter: {get_cache_token()}\", file=file)\n            (_abc_registry, _abc_cache, _abc_negative_cache,\n             _abc_negative_cache_version) = _get_dump(cls)\n            print(f\"_abc_registry: {_abc_registry!r}\", file=file)\n            print(f\"_abc_cache: {_abc_cache!r}\", file=file)\n            print(f\"_abc_negative_cache: {_abc_negative_cache!r}\", file=file)\n            print(f\"_abc_negative_cache_version: {_abc_negative_cache_version!r}\",\n                  file=file)\n\n        def _abc_registry_clear(cls):\n            \"\"\"Clear the registry (for debugging or testing).\"\"\"\n            _reset_registry(cls)\n\n        def _abc_caches_clear(cls):\n            \"\"\"Clear the caches (for debugging or testing).\"\"\"\n            _reset_caches(cls)\n\n\nclass ABC(metaclass=ABCMeta):\n    \"\"\"Helper class that provides a standard way to create an ABC using\n    inheritance.\n    \"\"\"\n    __slots__ = ()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/aifc.py",
    "content": "\"\"\"Stuff to parse AIFF-C and AIFF files.\n\nUnless explicitly stated otherwise, the description below is true\nboth for AIFF-C files and AIFF files.\n\nAn AIFF-C file has the following structure.\n\n  +-----------------+\n  | FORM            |\n  +-----------------+\n  | <size>          |\n  +----+------------+\n  |    | AIFC       |\n  |    +------------+\n  |    | <chunks>   |\n  |    |    .       |\n  |    |    .       |\n  |    |    .       |\n  +----+------------+\n\nAn AIFF file has the string \"AIFF\" instead of \"AIFC\".\n\nA chunk consists of an identifier (4 bytes) followed by a size (4 bytes,\nbig endian order), followed by the data.  The size field does not include\nthe size of the 8 byte header.\n\nThe following chunk types are recognized.\n\n  FVER\n      <version number of AIFF-C defining document> (AIFF-C only).\n  MARK\n      <# of markers> (2 bytes)\n      list of markers:\n          <marker ID> (2 bytes, must be > 0)\n          <position> (4 bytes)\n          <marker name> (\"pstring\")\n  COMM\n      <# of channels> (2 bytes)\n      <# of sound frames> (4 bytes)\n      <size of the samples> (2 bytes)\n      <sampling frequency> (10 bytes, IEEE 80-bit extended\n          floating point)\n      in AIFF-C files only:\n      <compression type> (4 bytes)\n      <human-readable version of compression type> (\"pstring\")\n  SSND\n      <offset> (4 bytes, not used by this program)\n      <blocksize> (4 bytes, not used by this program)\n      <sound data>\n\nA pstring consists of 1 byte length, a string of characters, and 0 or 1\nbyte pad to make the total length even.\n\nUsage.\n\nReading AIFF files:\n  f = aifc.open(file, 'r')\nwhere file is either the name of a file or an open file pointer.\nThe open file pointer must have methods read(), seek(), and close().\nIn some types of audio files, if the setpos() method is not used,\nthe seek() method is not necessary.\n\nThis returns an instance of a class with the following public methods:\n  getnchannels()  -- returns number of audio channels (1 for\n             mono, 2 for stereo)\n  getsampwidth()  -- returns sample width in bytes\n  getframerate()  -- returns sampling frequency\n  getnframes()    -- returns number of audio frames\n  getcomptype()   -- returns compression type ('NONE' for AIFF files)\n  getcompname()   -- returns human-readable version of\n             compression type ('not compressed' for AIFF files)\n  getparams() -- returns a namedtuple consisting of all of the\n             above in the above order\n  getmarkers()    -- get the list of marks in the audio file or None\n             if there are no marks\n  getmark(id) -- get mark with the specified id (raises an error\n             if the mark does not exist)\n  readframes(n)   -- returns at most n frames of audio\n  rewind()    -- rewind to the beginning of the audio stream\n  setpos(pos) -- seek to the specified position\n  tell()      -- return the current position\n  close()     -- close the instance (make it unusable)\nThe position returned by tell(), the position given to setpos() and\nthe position of marks are all compatible and have nothing to do with\nthe actual position in the file.\nThe close() method is called automatically when the class instance\nis destroyed.\n\nWriting AIFF files:\n  f = aifc.open(file, 'w')\nwhere file is either the name of a file or an open file pointer.\nThe open file pointer must have methods write(), tell(), seek(), and\nclose().\n\nThis returns an instance of a class with the following public methods:\n  aiff()      -- create an AIFF file (AIFF-C default)\n  aifc()      -- create an AIFF-C file\n  setnchannels(n) -- set the number of channels\n  setsampwidth(n) -- set the sample width\n  setframerate(n) -- set the frame rate\n  setnframes(n)   -- set the number of frames\n  setcomptype(type, name)\n          -- set the compression type and the\n             human-readable compression type\n  setparams(tuple)\n          -- set all parameters at once\n  setmark(id, pos, name)\n          -- add specified mark to the list of marks\n  tell()      -- return current position in output file (useful\n             in combination with setmark())\n  writeframesraw(data)\n          -- write audio frames without pathing up the\n             file header\n  writeframes(data)\n          -- write audio frames and patch up the file header\n  close()     -- patch up the file header and close the\n             output file\nYou should set the parameters before the first writeframesraw or\nwriteframes.  The total number of frames does not need to be set,\nbut when it is set to the correct value, the header does not have to\nbe patched up.\nIt is best to first set all parameters, perhaps possibly the\ncompression type, and then write audio frames using writeframesraw.\nWhen all frames have been written, either call writeframes(b'') or\nclose() to patch up the sizes in the header.\nMarks can be added anytime.  If there are any marks, you must call\nclose() after all frames have been written.\nThe close() method is called automatically when the class instance\nis destroyed.\n\nWhen a file is opened with the extension '.aiff', an AIFF file is\nwritten, otherwise an AIFF-C file is written.  This default can be\nchanged by calling aiff() or aifc() before the first writeframes or\nwriteframesraw.\n\"\"\"\n\nimport struct\nimport builtins\nimport warnings\n\n__all__ = [\"Error\", \"open\", \"openfp\"]\n\nclass Error(Exception):\n    pass\n\n_AIFC_version = 0xA2805140     # Version 1 of AIFF-C\n\ndef _read_long(file):\n    try:\n        return struct.unpack('>l', file.read(4))[0]\n    except struct.error:\n        raise EOFError from None\n\ndef _read_ulong(file):\n    try:\n        return struct.unpack('>L', file.read(4))[0]\n    except struct.error:\n        raise EOFError from None\n\ndef _read_short(file):\n    try:\n        return struct.unpack('>h', file.read(2))[0]\n    except struct.error:\n        raise EOFError from None\n\ndef _read_ushort(file):\n    try:\n        return struct.unpack('>H', file.read(2))[0]\n    except struct.error:\n        raise EOFError from None\n\ndef _read_string(file):\n    length = ord(file.read(1))\n    if length == 0:\n        data = b''\n    else:\n        data = file.read(length)\n    if length & 1 == 0:\n        dummy = file.read(1)\n    return data\n\n_HUGE_VAL = 1.79769313486231e+308 # See <limits.h>\n\ndef _read_float(f): # 10 bytes\n    expon = _read_short(f) # 2 bytes\n    sign = 1\n    if expon < 0:\n        sign = -1\n        expon = expon + 0x8000\n    himant = _read_ulong(f) # 4 bytes\n    lomant = _read_ulong(f) # 4 bytes\n    if expon == himant == lomant == 0:\n        f = 0.0\n    elif expon == 0x7FFF:\n        f = _HUGE_VAL\n    else:\n        expon = expon - 16383\n        f = (himant * 0x100000000 + lomant) * pow(2.0, expon - 63)\n    return sign * f\n\ndef _write_short(f, x):\n    f.write(struct.pack('>h', x))\n\ndef _write_ushort(f, x):\n    f.write(struct.pack('>H', x))\n\ndef _write_long(f, x):\n    f.write(struct.pack('>l', x))\n\ndef _write_ulong(f, x):\n    f.write(struct.pack('>L', x))\n\ndef _write_string(f, s):\n    if len(s) > 255:\n        raise ValueError(\"string exceeds maximum pstring length\")\n    f.write(struct.pack('B', len(s)))\n    f.write(s)\n    if len(s) & 1 == 0:\n        f.write(b'\\x00')\n\ndef _write_float(f, x):\n    import math\n    if x < 0:\n        sign = 0x8000\n        x = x * -1\n    else:\n        sign = 0\n    if x == 0:\n        expon = 0\n        himant = 0\n        lomant = 0\n    else:\n        fmant, expon = math.frexp(x)\n        if expon > 16384 or fmant >= 1 or fmant != fmant: # Infinity or NaN\n            expon = sign|0x7FFF\n            himant = 0\n            lomant = 0\n        else:                   # Finite\n            expon = expon + 16382\n            if expon < 0:           # denormalized\n                fmant = math.ldexp(fmant, expon)\n                expon = 0\n            expon = expon | sign\n            fmant = math.ldexp(fmant, 32)\n            fsmant = math.floor(fmant)\n            himant = int(fsmant)\n            fmant = math.ldexp(fmant - fsmant, 32)\n            fsmant = math.floor(fmant)\n            lomant = int(fsmant)\n    _write_ushort(f, expon)\n    _write_ulong(f, himant)\n    _write_ulong(f, lomant)\n\nfrom chunk import Chunk\nfrom collections import namedtuple\n\n_aifc_params = namedtuple('_aifc_params',\n                          'nchannels sampwidth framerate nframes comptype compname')\n\n_aifc_params.nchannels.__doc__ = 'Number of audio channels (1 for mono, 2 for stereo)'\n_aifc_params.sampwidth.__doc__ = 'Sample width in bytes'\n_aifc_params.framerate.__doc__ = 'Sampling frequency'\n_aifc_params.nframes.__doc__ = 'Number of audio frames'\n_aifc_params.comptype.__doc__ = 'Compression type (\"NONE\" for AIFF files)'\n_aifc_params.compname.__doc__ = (\"\"\"\\\nA human-readable version of the compression type\n('not compressed' for AIFF files)\"\"\")\n\n\nclass Aifc_read:\n    # Variables used in this class:\n    #\n    # These variables are available to the user though appropriate\n    # methods of this class:\n    # _file -- the open file with methods read(), close(), and seek()\n    #       set through the __init__() method\n    # _nchannels -- the number of audio channels\n    #       available through the getnchannels() method\n    # _nframes -- the number of audio frames\n    #       available through the getnframes() method\n    # _sampwidth -- the number of bytes per audio sample\n    #       available through the getsampwidth() method\n    # _framerate -- the sampling frequency\n    #       available through the getframerate() method\n    # _comptype -- the AIFF-C compression type ('NONE' if AIFF)\n    #       available through the getcomptype() method\n    # _compname -- the human-readable AIFF-C compression type\n    #       available through the getcomptype() method\n    # _markers -- the marks in the audio file\n    #       available through the getmarkers() and getmark()\n    #       methods\n    # _soundpos -- the position in the audio stream\n    #       available through the tell() method, set through the\n    #       setpos() method\n    #\n    # These variables are used internally only:\n    # _version -- the AIFF-C version number\n    # _decomp -- the decompressor from builtin module cl\n    # _comm_chunk_read -- 1 iff the COMM chunk has been read\n    # _aifc -- 1 iff reading an AIFF-C file\n    # _ssnd_seek_needed -- 1 iff positioned correctly in audio\n    #       file for readframes()\n    # _ssnd_chunk -- instantiation of a chunk class for the SSND chunk\n    # _framesize -- size of one frame in the file\n\n    _file = None  # Set here since __del__ checks it\n\n    def initfp(self, file):\n        self._version = 0\n        self._convert = None\n        self._markers = []\n        self._soundpos = 0\n        self._file = file\n        chunk = Chunk(file)\n        if chunk.getname() != b'FORM':\n            raise Error('file does not start with FORM id')\n        formdata = chunk.read(4)\n        if formdata == b'AIFF':\n            self._aifc = 0\n        elif formdata == b'AIFC':\n            self._aifc = 1\n        else:\n            raise Error('not an AIFF or AIFF-C file')\n        self._comm_chunk_read = 0\n        self._ssnd_chunk = None\n        while 1:\n            self._ssnd_seek_needed = 1\n            try:\n                chunk = Chunk(self._file)\n            except EOFError:\n                break\n            chunkname = chunk.getname()\n            if chunkname == b'COMM':\n                self._read_comm_chunk(chunk)\n                self._comm_chunk_read = 1\n            elif chunkname == b'SSND':\n                self._ssnd_chunk = chunk\n                dummy = chunk.read(8)\n                self._ssnd_seek_needed = 0\n            elif chunkname == b'FVER':\n                self._version = _read_ulong(chunk)\n            elif chunkname == b'MARK':\n                self._readmark(chunk)\n            chunk.skip()\n        if not self._comm_chunk_read or not self._ssnd_chunk:\n            raise Error('COMM chunk and/or SSND chunk missing')\n\n    def __init__(self, f):\n        if isinstance(f, str):\n            file_object = builtins.open(f, 'rb')\n            try:\n                self.initfp(file_object)\n            except:\n                file_object.close()\n                raise\n        else:\n            # assume it is an open file object already\n            self.initfp(f)\n\n    def __enter__(self):\n        return self\n\n    def __exit__(self, *args):\n        self.close()\n\n    #\n    # User visible methods.\n    #\n    def getfp(self):\n        return self._file\n\n    def rewind(self):\n        self._ssnd_seek_needed = 1\n        self._soundpos = 0\n\n    def close(self):\n        file = self._file\n        if file is not None:\n            self._file = None\n            file.close()\n\n    def tell(self):\n        return self._soundpos\n\n    def getnchannels(self):\n        return self._nchannels\n\n    def getnframes(self):\n        return self._nframes\n\n    def getsampwidth(self):\n        return self._sampwidth\n\n    def getframerate(self):\n        return self._framerate\n\n    def getcomptype(self):\n        return self._comptype\n\n    def getcompname(self):\n        return self._compname\n\n##  def getversion(self):\n##      return self._version\n\n    def getparams(self):\n        return _aifc_params(self.getnchannels(), self.getsampwidth(),\n                            self.getframerate(), self.getnframes(),\n                            self.getcomptype(), self.getcompname())\n\n    def getmarkers(self):\n        if len(self._markers) == 0:\n            return None\n        return self._markers\n\n    def getmark(self, id):\n        for marker in self._markers:\n            if id == marker[0]:\n                return marker\n        raise Error('marker {0!r} does not exist'.format(id))\n\n    def setpos(self, pos):\n        if pos < 0 or pos > self._nframes:\n            raise Error('position not in range')\n        self._soundpos = pos\n        self._ssnd_seek_needed = 1\n\n    def readframes(self, nframes):\n        if self._ssnd_seek_needed:\n            self._ssnd_chunk.seek(0)\n            dummy = self._ssnd_chunk.read(8)\n            pos = self._soundpos * self._framesize\n            if pos:\n                self._ssnd_chunk.seek(pos + 8)\n            self._ssnd_seek_needed = 0\n        if nframes == 0:\n            return b''\n        data = self._ssnd_chunk.read(nframes * self._framesize)\n        if self._convert and data:\n            data = self._convert(data)\n        self._soundpos = self._soundpos + len(data) // (self._nchannels\n                                                        * self._sampwidth)\n        return data\n\n    #\n    # Internal methods.\n    #\n\n    def _alaw2lin(self, data):\n        import audioop\n        return audioop.alaw2lin(data, 2)\n\n    def _ulaw2lin(self, data):\n        import audioop\n        return audioop.ulaw2lin(data, 2)\n\n    def _adpcm2lin(self, data):\n        import audioop\n        if not hasattr(self, '_adpcmstate'):\n            # first time\n            self._adpcmstate = None\n        data, self._adpcmstate = audioop.adpcm2lin(data, 2, self._adpcmstate)\n        return data\n\n    def _read_comm_chunk(self, chunk):\n        self._nchannels = _read_short(chunk)\n        self._nframes = _read_long(chunk)\n        self._sampwidth = (_read_short(chunk) + 7) // 8\n        self._framerate = int(_read_float(chunk))\n        if self._sampwidth <= 0:\n            raise Error('bad sample width')\n        if self._nchannels <= 0:\n            raise Error('bad # of channels')\n        self._framesize = self._nchannels * self._sampwidth\n        if self._aifc:\n            #DEBUG: SGI's soundeditor produces a bad size :-(\n            kludge = 0\n            if chunk.chunksize == 18:\n                kludge = 1\n                warnings.warn('Warning: bad COMM chunk size')\n                chunk.chunksize = 23\n            #DEBUG end\n            self._comptype = chunk.read(4)\n            #DEBUG start\n            if kludge:\n                length = ord(chunk.file.read(1))\n                if length & 1 == 0:\n                    length = length + 1\n                chunk.chunksize = chunk.chunksize + length\n                chunk.file.seek(-1, 1)\n            #DEBUG end\n            self._compname = _read_string(chunk)\n            if self._comptype != b'NONE':\n                if self._comptype == b'G722':\n                    self._convert = self._adpcm2lin\n                elif self._comptype in (b'ulaw', b'ULAW'):\n                    self._convert = self._ulaw2lin\n                elif self._comptype in (b'alaw', b'ALAW'):\n                    self._convert = self._alaw2lin\n                else:\n                    raise Error('unsupported compression type')\n                self._sampwidth = 2\n        else:\n            self._comptype = b'NONE'\n            self._compname = b'not compressed'\n\n    def _readmark(self, chunk):\n        nmarkers = _read_short(chunk)\n        # Some files appear to contain invalid counts.\n        # Cope with this by testing for EOF.\n        try:\n            for i in range(nmarkers):\n                id = _read_short(chunk)\n                pos = _read_long(chunk)\n                name = _read_string(chunk)\n                if pos or name:\n                    # some files appear to have\n                    # dummy markers consisting of\n                    # a position 0 and name ''\n                    self._markers.append((id, pos, name))\n        except EOFError:\n            w = ('Warning: MARK chunk contains only %s marker%s instead of %s' %\n                 (len(self._markers), '' if len(self._markers) == 1 else 's',\n                  nmarkers))\n            warnings.warn(w)\n\nclass Aifc_write:\n    # Variables used in this class:\n    #\n    # These variables are user settable through appropriate methods\n    # of this class:\n    # _file -- the open file with methods write(), close(), tell(), seek()\n    #       set through the __init__() method\n    # _comptype -- the AIFF-C compression type ('NONE' in AIFF)\n    #       set through the setcomptype() or setparams() method\n    # _compname -- the human-readable AIFF-C compression type\n    #       set through the setcomptype() or setparams() method\n    # _nchannels -- the number of audio channels\n    #       set through the setnchannels() or setparams() method\n    # _sampwidth -- the number of bytes per audio sample\n    #       set through the setsampwidth() or setparams() method\n    # _framerate -- the sampling frequency\n    #       set through the setframerate() or setparams() method\n    # _nframes -- the number of audio frames written to the header\n    #       set through the setnframes() or setparams() method\n    # _aifc -- whether we're writing an AIFF-C file or an AIFF file\n    #       set through the aifc() method, reset through the\n    #       aiff() method\n    #\n    # These variables are used internally only:\n    # _version -- the AIFF-C version number\n    # _comp -- the compressor from builtin module cl\n    # _nframeswritten -- the number of audio frames actually written\n    # _datalength -- the size of the audio samples written to the header\n    # _datawritten -- the size of the audio samples actually written\n\n    _file = None  # Set here since __del__ checks it\n\n    def __init__(self, f):\n        if isinstance(f, str):\n            file_object = builtins.open(f, 'wb')\n            try:\n                self.initfp(file_object)\n            except:\n                file_object.close()\n                raise\n\n            # treat .aiff file extensions as non-compressed audio\n            if f.endswith('.aiff'):\n                self._aifc = 0\n        else:\n            # assume it is an open file object already\n            self.initfp(f)\n\n    def initfp(self, file):\n        self._file = file\n        self._version = _AIFC_version\n        self._comptype = b'NONE'\n        self._compname = b'not compressed'\n        self._convert = None\n        self._nchannels = 0\n        self._sampwidth = 0\n        self._framerate = 0\n        self._nframes = 0\n        self._nframeswritten = 0\n        self._datawritten = 0\n        self._datalength = 0\n        self._markers = []\n        self._marklength = 0\n        self._aifc = 1      # AIFF-C is default\n\n    def __del__(self):\n        self.close()\n\n    def __enter__(self):\n        return self\n\n    def __exit__(self, *args):\n        self.close()\n\n    #\n    # User visible methods.\n    #\n    def aiff(self):\n        if self._nframeswritten:\n            raise Error('cannot change parameters after starting to write')\n        self._aifc = 0\n\n    def aifc(self):\n        if self._nframeswritten:\n            raise Error('cannot change parameters after starting to write')\n        self._aifc = 1\n\n    def setnchannels(self, nchannels):\n        if self._nframeswritten:\n            raise Error('cannot change parameters after starting to write')\n        if nchannels < 1:\n            raise Error('bad # of channels')\n        self._nchannels = nchannels\n\n    def getnchannels(self):\n        if not self._nchannels:\n            raise Error('number of channels not set')\n        return self._nchannels\n\n    def setsampwidth(self, sampwidth):\n        if self._nframeswritten:\n            raise Error('cannot change parameters after starting to write')\n        if sampwidth < 1 or sampwidth > 4:\n            raise Error('bad sample width')\n        self._sampwidth = sampwidth\n\n    def getsampwidth(self):\n        if not self._sampwidth:\n            raise Error('sample width not set')\n        return self._sampwidth\n\n    def setframerate(self, framerate):\n        if self._nframeswritten:\n            raise Error('cannot change parameters after starting to write')\n        if framerate <= 0:\n            raise Error('bad frame rate')\n        self._framerate = framerate\n\n    def getframerate(self):\n        if not self._framerate:\n            raise Error('frame rate not set')\n        return self._framerate\n\n    def setnframes(self, nframes):\n        if self._nframeswritten:\n            raise Error('cannot change parameters after starting to write')\n        self._nframes = nframes\n\n    def getnframes(self):\n        return self._nframeswritten\n\n    def setcomptype(self, comptype, compname):\n        if self._nframeswritten:\n            raise Error('cannot change parameters after starting to write')\n        if comptype not in (b'NONE', b'ulaw', b'ULAW',\n                            b'alaw', b'ALAW', b'G722'):\n            raise Error('unsupported compression type')\n        self._comptype = comptype\n        self._compname = compname\n\n    def getcomptype(self):\n        return self._comptype\n\n    def getcompname(self):\n        return self._compname\n\n##  def setversion(self, version):\n##      if self._nframeswritten:\n##          raise Error, 'cannot change parameters after starting to write'\n##      self._version = version\n\n    def setparams(self, params):\n        nchannels, sampwidth, framerate, nframes, comptype, compname = params\n        if self._nframeswritten:\n            raise Error('cannot change parameters after starting to write')\n        if comptype not in (b'NONE', b'ulaw', b'ULAW',\n                            b'alaw', b'ALAW', b'G722'):\n            raise Error('unsupported compression type')\n        self.setnchannels(nchannels)\n        self.setsampwidth(sampwidth)\n        self.setframerate(framerate)\n        self.setnframes(nframes)\n        self.setcomptype(comptype, compname)\n\n    def getparams(self):\n        if not self._nchannels or not self._sampwidth or not self._framerate:\n            raise Error('not all parameters set')\n        return _aifc_params(self._nchannels, self._sampwidth, self._framerate,\n                            self._nframes, self._comptype, self._compname)\n\n    def setmark(self, id, pos, name):\n        if id <= 0:\n            raise Error('marker ID must be > 0')\n        if pos < 0:\n            raise Error('marker position must be >= 0')\n        if not isinstance(name, bytes):\n            raise Error('marker name must be bytes')\n        for i in range(len(self._markers)):\n            if id == self._markers[i][0]:\n                self._markers[i] = id, pos, name\n                return\n        self._markers.append((id, pos, name))\n\n    def getmark(self, id):\n        for marker in self._markers:\n            if id == marker[0]:\n                return marker\n        raise Error('marker {0!r} does not exist'.format(id))\n\n    def getmarkers(self):\n        if len(self._markers) == 0:\n            return None\n        return self._markers\n\n    def tell(self):\n        return self._nframeswritten\n\n    def writeframesraw(self, data):\n        if not isinstance(data, (bytes, bytearray)):\n            data = memoryview(data).cast('B')\n        self._ensure_header_written(len(data))\n        nframes = len(data) // (self._sampwidth * self._nchannels)\n        if self._convert:\n            data = self._convert(data)\n        self._file.write(data)\n        self._nframeswritten = self._nframeswritten + nframes\n        self._datawritten = self._datawritten + len(data)\n\n    def writeframes(self, data):\n        self.writeframesraw(data)\n        if self._nframeswritten != self._nframes or \\\n              self._datalength != self._datawritten:\n            self._patchheader()\n\n    def close(self):\n        if self._file is None:\n            return\n        try:\n            self._ensure_header_written(0)\n            if self._datawritten & 1:\n                # quick pad to even size\n                self._file.write(b'\\x00')\n                self._datawritten = self._datawritten + 1\n            self._writemarkers()\n            if self._nframeswritten != self._nframes or \\\n                  self._datalength != self._datawritten or \\\n                  self._marklength:\n                self._patchheader()\n        finally:\n            # Prevent ref cycles\n            self._convert = None\n            f = self._file\n            self._file = None\n            f.close()\n\n    #\n    # Internal methods.\n    #\n\n    def _lin2alaw(self, data):\n        import audioop\n        return audioop.lin2alaw(data, 2)\n\n    def _lin2ulaw(self, data):\n        import audioop\n        return audioop.lin2ulaw(data, 2)\n\n    def _lin2adpcm(self, data):\n        import audioop\n        if not hasattr(self, '_adpcmstate'):\n            self._adpcmstate = None\n        data, self._adpcmstate = audioop.lin2adpcm(data, 2, self._adpcmstate)\n        return data\n\n    def _ensure_header_written(self, datasize):\n        if not self._nframeswritten:\n            if self._comptype in (b'ULAW', b'ulaw', b'ALAW', b'alaw', b'G722'):\n                if not self._sampwidth:\n                    self._sampwidth = 2\n                if self._sampwidth != 2:\n                    raise Error('sample width must be 2 when compressing '\n                                'with ulaw/ULAW, alaw/ALAW or G7.22 (ADPCM)')\n            if not self._nchannels:\n                raise Error('# channels not specified')\n            if not self._sampwidth:\n                raise Error('sample width not specified')\n            if not self._framerate:\n                raise Error('sampling rate not specified')\n            self._write_header(datasize)\n\n    def _init_compression(self):\n        if self._comptype == b'G722':\n            self._convert = self._lin2adpcm\n        elif self._comptype in (b'ulaw', b'ULAW'):\n            self._convert = self._lin2ulaw\n        elif self._comptype in (b'alaw', b'ALAW'):\n            self._convert = self._lin2alaw\n\n    def _write_header(self, initlength):\n        if self._aifc and self._comptype != b'NONE':\n            self._init_compression()\n        self._file.write(b'FORM')\n        if not self._nframes:\n            self._nframes = initlength // (self._nchannels * self._sampwidth)\n        self._datalength = self._nframes * self._nchannels * self._sampwidth\n        if self._datalength & 1:\n            self._datalength = self._datalength + 1\n        if self._aifc:\n            if self._comptype in (b'ulaw', b'ULAW', b'alaw', b'ALAW'):\n                self._datalength = self._datalength // 2\n                if self._datalength & 1:\n                    self._datalength = self._datalength + 1\n            elif self._comptype == b'G722':\n                self._datalength = (self._datalength + 3) // 4\n                if self._datalength & 1:\n                    self._datalength = self._datalength + 1\n        try:\n            self._form_length_pos = self._file.tell()\n        except (AttributeError, OSError):\n            self._form_length_pos = None\n        commlength = self._write_form_length(self._datalength)\n        if self._aifc:\n            self._file.write(b'AIFC')\n            self._file.write(b'FVER')\n            _write_ulong(self._file, 4)\n            _write_ulong(self._file, self._version)\n        else:\n            self._file.write(b'AIFF')\n        self._file.write(b'COMM')\n        _write_ulong(self._file, commlength)\n        _write_short(self._file, self._nchannels)\n        if self._form_length_pos is not None:\n            self._nframes_pos = self._file.tell()\n        _write_ulong(self._file, self._nframes)\n        if self._comptype in (b'ULAW', b'ulaw', b'ALAW', b'alaw', b'G722'):\n            _write_short(self._file, 8)\n        else:\n            _write_short(self._file, self._sampwidth * 8)\n        _write_float(self._file, self._framerate)\n        if self._aifc:\n            self._file.write(self._comptype)\n            _write_string(self._file, self._compname)\n        self._file.write(b'SSND')\n        if self._form_length_pos is not None:\n            self._ssnd_length_pos = self._file.tell()\n        _write_ulong(self._file, self._datalength + 8)\n        _write_ulong(self._file, 0)\n        _write_ulong(self._file, 0)\n\n    def _write_form_length(self, datalength):\n        if self._aifc:\n            commlength = 18 + 5 + len(self._compname)\n            if commlength & 1:\n                commlength = commlength + 1\n            verslength = 12\n        else:\n            commlength = 18\n            verslength = 0\n        _write_ulong(self._file, 4 + verslength + self._marklength + \\\n                     8 + commlength + 16 + datalength)\n        return commlength\n\n    def _patchheader(self):\n        curpos = self._file.tell()\n        if self._datawritten & 1:\n            datalength = self._datawritten + 1\n            self._file.write(b'\\x00')\n        else:\n            datalength = self._datawritten\n        if datalength == self._datalength and \\\n              self._nframes == self._nframeswritten and \\\n              self._marklength == 0:\n            self._file.seek(curpos, 0)\n            return\n        self._file.seek(self._form_length_pos, 0)\n        dummy = self._write_form_length(datalength)\n        self._file.seek(self._nframes_pos, 0)\n        _write_ulong(self._file, self._nframeswritten)\n        self._file.seek(self._ssnd_length_pos, 0)\n        _write_ulong(self._file, datalength + 8)\n        self._file.seek(curpos, 0)\n        self._nframes = self._nframeswritten\n        self._datalength = datalength\n\n    def _writemarkers(self):\n        if len(self._markers) == 0:\n            return\n        self._file.write(b'MARK')\n        length = 2\n        for marker in self._markers:\n            id, pos, name = marker\n            length = length + len(name) + 1 + 6\n            if len(name) & 1 == 0:\n                length = length + 1\n        _write_ulong(self._file, length)\n        self._marklength = length + 8\n        _write_short(self._file, len(self._markers))\n        for marker in self._markers:\n            id, pos, name = marker\n            _write_short(self._file, id)\n            _write_ulong(self._file, pos)\n            _write_string(self._file, name)\n\ndef open(f, mode=None):\n    if mode is None:\n        if hasattr(f, 'mode'):\n            mode = f.mode\n        else:\n            mode = 'rb'\n    if mode in ('r', 'rb'):\n        return Aifc_read(f)\n    elif mode in ('w', 'wb'):\n        return Aifc_write(f)\n    else:\n        raise Error(\"mode must be 'r', 'rb', 'w', or 'wb'\")\n\ndef openfp(f, mode=None):\n    warnings.warn(\"aifc.openfp is deprecated since Python 3.7. \"\n                  \"Use aifc.open instead.\", DeprecationWarning, stacklevel=2)\n    return open(f, mode=mode)\n\nif __name__ == '__main__':\n    import sys\n    if not sys.argv[1:]:\n        sys.argv.append('/usr/demos/data/audio/bach.aiff')\n    fn = sys.argv[1]\n    with open(fn, 'r') as f:\n        print(\"Reading\", fn)\n        print(\"nchannels =\", f.getnchannels())\n        print(\"nframes   =\", f.getnframes())\n        print(\"sampwidth =\", f.getsampwidth())\n        print(\"framerate =\", f.getframerate())\n        print(\"comptype  =\", f.getcomptype())\n        print(\"compname  =\", f.getcompname())\n        if sys.argv[2:]:\n            gn = sys.argv[2]\n            print(\"Writing\", gn)\n            with open(gn, 'w') as g:\n                g.setparams(f.getparams())\n                while 1:\n                    data = f.readframes(1024)\n                    if not data:\n                        break\n                    g.writeframes(data)\n            print(\"Done.\")\n"
  },
  {
    "path": "rd/usr/lib/python3.8/antigravity.py",
    "content": "\nimport webbrowser\nimport hashlib\n\nwebbrowser.open(\"https://xkcd.com/353/\")\n\ndef geohash(latitude, longitude, datedow):\n    '''Compute geohash() using the Munroe algorithm.\n\n    >>> geohash(37.421542, -122.085589, b'2005-05-26-10458.68')\n    37.857713 -122.544543\n\n    '''\n    # https://xkcd.com/426/\n    h = hashlib.md5(datedow).hexdigest()\n    p, q = [('%f' % float.fromhex('0.' + x)) for x in (h[:16], h[16:32])]\n    print('%d%s %d%s' % (latitude, p[1:], longitude, q[1:]))\n"
  },
  {
    "path": "rd/usr/lib/python3.8/argparse.py",
    "content": "# Author: Steven J. Bethard <steven.bethard@gmail.com>.\n# New maintainer as of 29 August 2019:  Raymond Hettinger <raymond.hettinger@gmail.com>\n\n\"\"\"Command-line parsing library\n\nThis module is an optparse-inspired command-line parsing library that:\n\n    - handles both optional and positional arguments\n    - produces highly informative usage messages\n    - supports parsers that dispatch to sub-parsers\n\nThe following is a simple usage example that sums integers from the\ncommand-line and writes the result to a file::\n\n    parser = argparse.ArgumentParser(\n        description='sum the integers at the command line')\n    parser.add_argument(\n        'integers', metavar='int', nargs='+', type=int,\n        help='an integer to be summed')\n    parser.add_argument(\n        '--log', default=sys.stdout, type=argparse.FileType('w'),\n        help='the file where the sum should be written')\n    args = parser.parse_args()\n    args.log.write('%s' % sum(args.integers))\n    args.log.close()\n\nThe module contains the following public classes:\n\n    - ArgumentParser -- The main entry point for command-line parsing. As the\n        example above shows, the add_argument() method is used to populate\n        the parser with actions for optional and positional arguments. Then\n        the parse_args() method is invoked to convert the args at the\n        command-line into an object with attributes.\n\n    - ArgumentError -- The exception raised by ArgumentParser objects when\n        there are errors with the parser's actions. Errors raised while\n        parsing the command-line are caught by ArgumentParser and emitted\n        as command-line messages.\n\n    - FileType -- A factory for defining types of files to be created. As the\n        example above shows, instances of FileType are typically passed as\n        the type= argument of add_argument() calls.\n\n    - Action -- The base class for parser actions. Typically actions are\n        selected by passing strings like 'store_true' or 'append_const' to\n        the action= argument of add_argument(). However, for greater\n        customization of ArgumentParser actions, subclasses of Action may\n        be defined and passed as the action= argument.\n\n    - HelpFormatter, RawDescriptionHelpFormatter, RawTextHelpFormatter,\n        ArgumentDefaultsHelpFormatter -- Formatter classes which\n        may be passed as the formatter_class= argument to the\n        ArgumentParser constructor. HelpFormatter is the default,\n        RawDescriptionHelpFormatter and RawTextHelpFormatter tell the parser\n        not to change the formatting for help text, and\n        ArgumentDefaultsHelpFormatter adds information about argument defaults\n        to the help.\n\nAll other classes in this module are considered implementation details.\n(Also note that HelpFormatter and RawDescriptionHelpFormatter are only\nconsidered public as object names -- the API of the formatter objects is\nstill considered an implementation detail.)\n\"\"\"\n\n__version__ = '1.1'\n__all__ = [\n    'ArgumentParser',\n    'ArgumentError',\n    'ArgumentTypeError',\n    'FileType',\n    'HelpFormatter',\n    'ArgumentDefaultsHelpFormatter',\n    'RawDescriptionHelpFormatter',\n    'RawTextHelpFormatter',\n    'MetavarTypeHelpFormatter',\n    'Namespace',\n    'Action',\n    'ONE_OR_MORE',\n    'OPTIONAL',\n    'PARSER',\n    'REMAINDER',\n    'SUPPRESS',\n    'ZERO_OR_MORE',\n]\n\n\nimport os as _os\nimport re as _re\nimport shutil as _shutil\nimport sys as _sys\n\nfrom gettext import gettext as _, ngettext\n\nSUPPRESS = '==SUPPRESS=='\n\nOPTIONAL = '?'\nZERO_OR_MORE = '*'\nONE_OR_MORE = '+'\nPARSER = 'A...'\nREMAINDER = '...'\n_UNRECOGNIZED_ARGS_ATTR = '_unrecognized_args'\n\n# =============================\n# Utility functions and classes\n# =============================\n\nclass _AttributeHolder(object):\n    \"\"\"Abstract base class that provides __repr__.\n\n    The __repr__ method returns a string in the format::\n        ClassName(attr=name, attr=name, ...)\n    The attributes are determined either by a class-level attribute,\n    '_kwarg_names', or by inspecting the instance __dict__.\n    \"\"\"\n\n    def __repr__(self):\n        type_name = type(self).__name__\n        arg_strings = []\n        star_args = {}\n        for arg in self._get_args():\n            arg_strings.append(repr(arg))\n        for name, value in self._get_kwargs():\n            if name.isidentifier():\n                arg_strings.append('%s=%r' % (name, value))\n            else:\n                star_args[name] = value\n        if star_args:\n            arg_strings.append('**%s' % repr(star_args))\n        return '%s(%s)' % (type_name, ', '.join(arg_strings))\n\n    def _get_kwargs(self):\n        return sorted(self.__dict__.items())\n\n    def _get_args(self):\n        return []\n\n\ndef _copy_items(items):\n    if items is None:\n        return []\n    # The copy module is used only in the 'append' and 'append_const'\n    # actions, and it is needed only when the default value isn't a list.\n    # Delay its import for speeding up the common case.\n    if type(items) is list:\n        return items[:]\n    import copy\n    return copy.copy(items)\n\n\n# ===============\n# Formatting Help\n# ===============\n\nclass HelpFormatter(object):\n    \"\"\"Formatter for generating usage messages and argument help strings.\n\n    Only the name of this class is considered a public API. All the methods\n    provided by the class are considered an implementation detail.\n    \"\"\"\n\n    def __init__(self,\n                 prog,\n                 indent_increment=2,\n                 max_help_position=24,\n                 width=None):\n\n        # default setting for width\n        if width is None:\n            width = _shutil.get_terminal_size().columns\n            width -= 2\n\n        self._prog = prog\n        self._indent_increment = indent_increment\n        self._max_help_position = min(max_help_position,\n                                      max(width - 20, indent_increment * 2))\n        self._width = width\n\n        self._current_indent = 0\n        self._level = 0\n        self._action_max_length = 0\n\n        self._root_section = self._Section(self, None)\n        self._current_section = self._root_section\n\n        self._whitespace_matcher = _re.compile(r'\\s+', _re.ASCII)\n        self._long_break_matcher = _re.compile(r'\\n\\n\\n+')\n\n    # ===============================\n    # Section and indentation methods\n    # ===============================\n    def _indent(self):\n        self._current_indent += self._indent_increment\n        self._level += 1\n\n    def _dedent(self):\n        self._current_indent -= self._indent_increment\n        assert self._current_indent >= 0, 'Indent decreased below 0.'\n        self._level -= 1\n\n    class _Section(object):\n\n        def __init__(self, formatter, parent, heading=None):\n            self.formatter = formatter\n            self.parent = parent\n            self.heading = heading\n            self.items = []\n\n        def format_help(self):\n            # format the indented section\n            if self.parent is not None:\n                self.formatter._indent()\n            join = self.formatter._join_parts\n            item_help = join([func(*args) for func, args in self.items])\n            if self.parent is not None:\n                self.formatter._dedent()\n\n            # return nothing if the section was empty\n            if not item_help:\n                return ''\n\n            # add the heading if the section was non-empty\n            if self.heading is not SUPPRESS and self.heading is not None:\n                current_indent = self.formatter._current_indent\n                heading = '%*s%s:\\n' % (current_indent, '', self.heading)\n            else:\n                heading = ''\n\n            # join the section-initial newline, the heading and the help\n            return join(['\\n', heading, item_help, '\\n'])\n\n    def _add_item(self, func, args):\n        self._current_section.items.append((func, args))\n\n    # ========================\n    # Message building methods\n    # ========================\n    def start_section(self, heading):\n        self._indent()\n        section = self._Section(self, self._current_section, heading)\n        self._add_item(section.format_help, [])\n        self._current_section = section\n\n    def end_section(self):\n        self._current_section = self._current_section.parent\n        self._dedent()\n\n    def add_text(self, text):\n        if text is not SUPPRESS and text is not None:\n            self._add_item(self._format_text, [text])\n\n    def add_usage(self, usage, actions, groups, prefix=None):\n        if usage is not SUPPRESS:\n            args = usage, actions, groups, prefix\n            self._add_item(self._format_usage, args)\n\n    def add_argument(self, action):\n        if action.help is not SUPPRESS:\n\n            # find all invocations\n            get_invocation = self._format_action_invocation\n            invocations = [get_invocation(action)]\n            for subaction in self._iter_indented_subactions(action):\n                invocations.append(get_invocation(subaction))\n\n            # update the maximum item length\n            invocation_length = max([len(s) for s in invocations])\n            action_length = invocation_length + self._current_indent\n            self._action_max_length = max(self._action_max_length,\n                                          action_length)\n\n            # add the item to the list\n            self._add_item(self._format_action, [action])\n\n    def add_arguments(self, actions):\n        for action in actions:\n            self.add_argument(action)\n\n    # =======================\n    # Help-formatting methods\n    # =======================\n    def format_help(self):\n        help = self._root_section.format_help()\n        if help:\n            help = self._long_break_matcher.sub('\\n\\n', help)\n            help = help.strip('\\n') + '\\n'\n        return help\n\n    def _join_parts(self, part_strings):\n        return ''.join([part\n                        for part in part_strings\n                        if part and part is not SUPPRESS])\n\n    def _format_usage(self, usage, actions, groups, prefix):\n        if prefix is None:\n            prefix = _('usage: ')\n\n        # if usage is specified, use that\n        if usage is not None:\n            usage = usage % dict(prog=self._prog)\n\n        # if no optionals or positionals are available, usage is just prog\n        elif usage is None and not actions:\n            usage = '%(prog)s' % dict(prog=self._prog)\n\n        # if optionals and positionals are available, calculate usage\n        elif usage is None:\n            prog = '%(prog)s' % dict(prog=self._prog)\n\n            # split optionals from positionals\n            optionals = []\n            positionals = []\n            for action in actions:\n                if action.option_strings:\n                    optionals.append(action)\n                else:\n                    positionals.append(action)\n\n            # build full usage string\n            format = self._format_actions_usage\n            action_usage = format(optionals + positionals, groups)\n            usage = ' '.join([s for s in [prog, action_usage] if s])\n\n            # wrap the usage parts if it's too long\n            text_width = self._width - self._current_indent\n            if len(prefix) + len(usage) > text_width:\n\n                # break usage into wrappable parts\n                part_regexp = (\n                    r'\\(.*?\\)+(?=\\s|$)|'\n                    r'\\[.*?\\]+(?=\\s|$)|'\n                    r'\\S+'\n                )\n                opt_usage = format(optionals, groups)\n                pos_usage = format(positionals, groups)\n                opt_parts = _re.findall(part_regexp, opt_usage)\n                pos_parts = _re.findall(part_regexp, pos_usage)\n                assert ' '.join(opt_parts) == opt_usage\n                assert ' '.join(pos_parts) == pos_usage\n\n                # helper for wrapping lines\n                def get_lines(parts, indent, prefix=None):\n                    lines = []\n                    line = []\n                    if prefix is not None:\n                        line_len = len(prefix) - 1\n                    else:\n                        line_len = len(indent) - 1\n                    for part in parts:\n                        if line_len + 1 + len(part) > text_width and line:\n                            lines.append(indent + ' '.join(line))\n                            line = []\n                            line_len = len(indent) - 1\n                        line.append(part)\n                        line_len += len(part) + 1\n                    if line:\n                        lines.append(indent + ' '.join(line))\n                    if prefix is not None:\n                        lines[0] = lines[0][len(indent):]\n                    return lines\n\n                # if prog is short, follow it with optionals or positionals\n                if len(prefix) + len(prog) <= 0.75 * text_width:\n                    indent = ' ' * (len(prefix) + len(prog) + 1)\n                    if opt_parts:\n                        lines = get_lines([prog] + opt_parts, indent, prefix)\n                        lines.extend(get_lines(pos_parts, indent))\n                    elif pos_parts:\n                        lines = get_lines([prog] + pos_parts, indent, prefix)\n                    else:\n                        lines = [prog]\n\n                # if prog is long, put it on its own line\n                else:\n                    indent = ' ' * len(prefix)\n                    parts = opt_parts + pos_parts\n                    lines = get_lines(parts, indent)\n                    if len(lines) > 1:\n                        lines = []\n                        lines.extend(get_lines(opt_parts, indent))\n                        lines.extend(get_lines(pos_parts, indent))\n                    lines = [prog] + lines\n\n                # join lines into usage\n                usage = '\\n'.join(lines)\n\n        # prefix with 'usage:'\n        return '%s%s\\n\\n' % (prefix, usage)\n\n    def _format_actions_usage(self, actions, groups):\n        # find group indices and identify actions in groups\n        group_actions = set()\n        inserts = {}\n        for group in groups:\n            try:\n                start = actions.index(group._group_actions[0])\n            except ValueError:\n                continue\n            else:\n                end = start + len(group._group_actions)\n                if actions[start:end] == group._group_actions:\n                    for action in group._group_actions:\n                        group_actions.add(action)\n                    if not group.required:\n                        if start in inserts:\n                            inserts[start] += ' ['\n                        else:\n                            inserts[start] = '['\n                        if end in inserts:\n                            inserts[end] += ']'\n                        else:\n                            inserts[end] = ']'\n                    else:\n                        if start in inserts:\n                            inserts[start] += ' ('\n                        else:\n                            inserts[start] = '('\n                        if end in inserts:\n                            inserts[end] += ')'\n                        else:\n                            inserts[end] = ')'\n                    for i in range(start + 1, end):\n                        inserts[i] = '|'\n\n        # collect all actions format strings\n        parts = []\n        for i, action in enumerate(actions):\n\n            # suppressed arguments are marked with None\n            # remove | separators for suppressed arguments\n            if action.help is SUPPRESS:\n                parts.append(None)\n                if inserts.get(i) == '|':\n                    inserts.pop(i)\n                elif inserts.get(i + 1) == '|':\n                    inserts.pop(i + 1)\n\n            # produce all arg strings\n            elif not action.option_strings:\n                default = self._get_default_metavar_for_positional(action)\n                part = self._format_args(action, default)\n\n                # if it's in a group, strip the outer []\n                if action in group_actions:\n                    if part[0] == '[' and part[-1] == ']':\n                        part = part[1:-1]\n\n                # add the action string to the list\n                parts.append(part)\n\n            # produce the first way to invoke the option in brackets\n            else:\n                option_string = action.option_strings[0]\n\n                # if the Optional doesn't take a value, format is:\n                #    -s or --long\n                if action.nargs == 0:\n                    part = '%s' % option_string\n\n                # if the Optional takes a value, format is:\n                #    -s ARGS or --long ARGS\n                else:\n                    default = self._get_default_metavar_for_optional(action)\n                    args_string = self._format_args(action, default)\n                    part = '%s %s' % (option_string, args_string)\n\n                # make it look optional if it's not required or in a group\n                if not action.required and action not in group_actions:\n                    part = '[%s]' % part\n\n                # add the action string to the list\n                parts.append(part)\n\n        # insert things at the necessary indices\n        for i in sorted(inserts, reverse=True):\n            parts[i:i] = [inserts[i]]\n\n        # join all the action items with spaces\n        text = ' '.join([item for item in parts if item is not None])\n\n        # clean up separators for mutually exclusive groups\n        open = r'[\\[(]'\n        close = r'[\\])]'\n        text = _re.sub(r'(%s) ' % open, r'\\1', text)\n        text = _re.sub(r' (%s)' % close, r'\\1', text)\n        text = _re.sub(r'%s *%s' % (open, close), r'', text)\n        text = _re.sub(r'\\(([^|]*)\\)', r'\\1', text)\n        text = text.strip()\n\n        # return the text\n        return text\n\n    def _format_text(self, text):\n        if '%(prog)' in text:\n            text = text % dict(prog=self._prog)\n        text_width = max(self._width - self._current_indent, 11)\n        indent = ' ' * self._current_indent\n        return self._fill_text(text, text_width, indent) + '\\n\\n'\n\n    def _format_action(self, action):\n        # determine the required width and the entry label\n        help_position = min(self._action_max_length + 2,\n                            self._max_help_position)\n        help_width = max(self._width - help_position, 11)\n        action_width = help_position - self._current_indent - 2\n        action_header = self._format_action_invocation(action)\n\n        # no help; start on same line and add a final newline\n        if not action.help:\n            tup = self._current_indent, '', action_header\n            action_header = '%*s%s\\n' % tup\n\n        # short action name; start on the same line and pad two spaces\n        elif len(action_header) <= action_width:\n            tup = self._current_indent, '', action_width, action_header\n            action_header = '%*s%-*s  ' % tup\n            indent_first = 0\n\n        # long action name; start on the next line\n        else:\n            tup = self._current_indent, '', action_header\n            action_header = '%*s%s\\n' % tup\n            indent_first = help_position\n\n        # collect the pieces of the action help\n        parts = [action_header]\n\n        # if there was help for the action, add lines of help text\n        if action.help:\n            help_text = self._expand_help(action)\n            help_lines = self._split_lines(help_text, help_width)\n            parts.append('%*s%s\\n' % (indent_first, '', help_lines[0]))\n            for line in help_lines[1:]:\n                parts.append('%*s%s\\n' % (help_position, '', line))\n\n        # or add a newline if the description doesn't end with one\n        elif not action_header.endswith('\\n'):\n            parts.append('\\n')\n\n        # if there are any sub-actions, add their help as well\n        for subaction in self._iter_indented_subactions(action):\n            parts.append(self._format_action(subaction))\n\n        # return a single string\n        return self._join_parts(parts)\n\n    def _format_action_invocation(self, action):\n        if not action.option_strings:\n            default = self._get_default_metavar_for_positional(action)\n            metavar, = self._metavar_formatter(action, default)(1)\n            return metavar\n\n        else:\n            parts = []\n\n            # if the Optional doesn't take a value, format is:\n            #    -s, --long\n            if action.nargs == 0:\n                parts.extend(action.option_strings)\n\n            # if the Optional takes a value, format is:\n            #    -s ARGS, --long ARGS\n            else:\n                default = self._get_default_metavar_for_optional(action)\n                args_string = self._format_args(action, default)\n                for option_string in action.option_strings:\n                    parts.append('%s %s' % (option_string, args_string))\n\n            return ', '.join(parts)\n\n    def _metavar_formatter(self, action, default_metavar):\n        if action.metavar is not None:\n            result = action.metavar\n        elif action.choices is not None:\n            choice_strs = [str(choice) for choice in action.choices]\n            result = '{%s}' % ','.join(choice_strs)\n        else:\n            result = default_metavar\n\n        def format(tuple_size):\n            if isinstance(result, tuple):\n                return result\n            else:\n                return (result, ) * tuple_size\n        return format\n\n    def _format_args(self, action, default_metavar):\n        get_metavar = self._metavar_formatter(action, default_metavar)\n        if action.nargs is None:\n            result = '%s' % get_metavar(1)\n        elif action.nargs == OPTIONAL:\n            result = '[%s]' % get_metavar(1)\n        elif action.nargs == ZERO_OR_MORE:\n            result = '[%s [%s ...]]' % get_metavar(2)\n        elif action.nargs == ONE_OR_MORE:\n            result = '%s [%s ...]' % get_metavar(2)\n        elif action.nargs == REMAINDER:\n            result = '...'\n        elif action.nargs == PARSER:\n            result = '%s ...' % get_metavar(1)\n        elif action.nargs == SUPPRESS:\n            result = ''\n        else:\n            try:\n                formats = ['%s' for _ in range(action.nargs)]\n            except TypeError:\n                raise ValueError(\"invalid nargs value\") from None\n            result = ' '.join(formats) % get_metavar(action.nargs)\n        return result\n\n    def _expand_help(self, action):\n        params = dict(vars(action), prog=self._prog)\n        for name in list(params):\n            if params[name] is SUPPRESS:\n                del params[name]\n        for name in list(params):\n            if hasattr(params[name], '__name__'):\n                params[name] = params[name].__name__\n        if params.get('choices') is not None:\n            choices_str = ', '.join([str(c) for c in params['choices']])\n            params['choices'] = choices_str\n        return self._get_help_string(action) % params\n\n    def _iter_indented_subactions(self, action):\n        try:\n            get_subactions = action._get_subactions\n        except AttributeError:\n            pass\n        else:\n            self._indent()\n            yield from get_subactions()\n            self._dedent()\n\n    def _split_lines(self, text, width):\n        text = self._whitespace_matcher.sub(' ', text).strip()\n        # The textwrap module is used only for formatting help.\n        # Delay its import for speeding up the common usage of argparse.\n        import textwrap\n        return textwrap.wrap(text, width)\n\n    def _fill_text(self, text, width, indent):\n        text = self._whitespace_matcher.sub(' ', text).strip()\n        import textwrap\n        return textwrap.fill(text, width,\n                             initial_indent=indent,\n                             subsequent_indent=indent)\n\n    def _get_help_string(self, action):\n        return action.help\n\n    def _get_default_metavar_for_optional(self, action):\n        return action.dest.upper()\n\n    def _get_default_metavar_for_positional(self, action):\n        return action.dest\n\n\nclass RawDescriptionHelpFormatter(HelpFormatter):\n    \"\"\"Help message formatter which retains any formatting in descriptions.\n\n    Only the name of this class is considered a public API. All the methods\n    provided by the class are considered an implementation detail.\n    \"\"\"\n\n    def _fill_text(self, text, width, indent):\n        return ''.join(indent + line for line in text.splitlines(keepends=True))\n\n\nclass RawTextHelpFormatter(RawDescriptionHelpFormatter):\n    \"\"\"Help message formatter which retains formatting of all help text.\n\n    Only the name of this class is considered a public API. All the methods\n    provided by the class are considered an implementation detail.\n    \"\"\"\n\n    def _split_lines(self, text, width):\n        return text.splitlines()\n\n\nclass ArgumentDefaultsHelpFormatter(HelpFormatter):\n    \"\"\"Help message formatter which adds default values to argument help.\n\n    Only the name of this class is considered a public API. All the methods\n    provided by the class are considered an implementation detail.\n    \"\"\"\n\n    def _get_help_string(self, action):\n        help = action.help\n        if '%(default)' not in action.help:\n            if action.default is not SUPPRESS:\n                defaulting_nargs = [OPTIONAL, ZERO_OR_MORE]\n                if action.option_strings or action.nargs in defaulting_nargs:\n                    help += ' (default: %(default)s)'\n        return help\n\n\nclass MetavarTypeHelpFormatter(HelpFormatter):\n    \"\"\"Help message formatter which uses the argument 'type' as the default\n    metavar value (instead of the argument 'dest')\n\n    Only the name of this class is considered a public API. All the methods\n    provided by the class are considered an implementation detail.\n    \"\"\"\n\n    def _get_default_metavar_for_optional(self, action):\n        return action.type.__name__\n\n    def _get_default_metavar_for_positional(self, action):\n        return action.type.__name__\n\n\n\n# =====================\n# Options and Arguments\n# =====================\n\ndef _get_action_name(argument):\n    if argument is None:\n        return None\n    elif argument.option_strings:\n        return  '/'.join(argument.option_strings)\n    elif argument.metavar not in (None, SUPPRESS):\n        return argument.metavar\n    elif argument.dest not in (None, SUPPRESS):\n        return argument.dest\n    else:\n        return None\n\n\nclass ArgumentError(Exception):\n    \"\"\"An error from creating or using an argument (optional or positional).\n\n    The string value of this exception is the message, augmented with\n    information about the argument that caused it.\n    \"\"\"\n\n    def __init__(self, argument, message):\n        self.argument_name = _get_action_name(argument)\n        self.message = message\n\n    def __str__(self):\n        if self.argument_name is None:\n            format = '%(message)s'\n        else:\n            format = 'argument %(argument_name)s: %(message)s'\n        return format % dict(message=self.message,\n                             argument_name=self.argument_name)\n\n\nclass ArgumentTypeError(Exception):\n    \"\"\"An error from trying to convert a command line string to a type.\"\"\"\n    pass\n\n\n# ==============\n# Action classes\n# ==============\n\nclass Action(_AttributeHolder):\n    \"\"\"Information about how to convert command line strings to Python objects.\n\n    Action objects are used by an ArgumentParser to represent the information\n    needed to parse a single argument from one or more strings from the\n    command line. The keyword arguments to the Action constructor are also\n    all attributes of Action instances.\n\n    Keyword Arguments:\n\n        - option_strings -- A list of command-line option strings which\n            should be associated with this action.\n\n        - dest -- The name of the attribute to hold the created object(s)\n\n        - nargs -- The number of command-line arguments that should be\n            consumed. By default, one argument will be consumed and a single\n            value will be produced.  Other values include:\n                - N (an integer) consumes N arguments (and produces a list)\n                - '?' consumes zero or one arguments\n                - '*' consumes zero or more arguments (and produces a list)\n                - '+' consumes one or more arguments (and produces a list)\n            Note that the difference between the default and nargs=1 is that\n            with the default, a single value will be produced, while with\n            nargs=1, a list containing a single value will be produced.\n\n        - const -- The value to be produced if the option is specified and the\n            option uses an action that takes no values.\n\n        - default -- The value to be produced if the option is not specified.\n\n        - type -- A callable that accepts a single string argument, and\n            returns the converted value.  The standard Python types str, int,\n            float, and complex are useful examples of such callables.  If None,\n            str is used.\n\n        - choices -- A container of values that should be allowed. If not None,\n            after a command-line argument has been converted to the appropriate\n            type, an exception will be raised if it is not a member of this\n            collection.\n\n        - required -- True if the action must always be specified at the\n            command line. This is only meaningful for optional command-line\n            arguments.\n\n        - help -- The help string describing the argument.\n\n        - metavar -- The name to be used for the option's argument with the\n            help string. If None, the 'dest' value will be used as the name.\n    \"\"\"\n\n    def __init__(self,\n                 option_strings,\n                 dest,\n                 nargs=None,\n                 const=None,\n                 default=None,\n                 type=None,\n                 choices=None,\n                 required=False,\n                 help=None,\n                 metavar=None):\n        self.option_strings = option_strings\n        self.dest = dest\n        self.nargs = nargs\n        self.const = const\n        self.default = default\n        self.type = type\n        self.choices = choices\n        self.required = required\n        self.help = help\n        self.metavar = metavar\n\n    def _get_kwargs(self):\n        names = [\n            'option_strings',\n            'dest',\n            'nargs',\n            'const',\n            'default',\n            'type',\n            'choices',\n            'help',\n            'metavar',\n        ]\n        return [(name, getattr(self, name)) for name in names]\n\n    def __call__(self, parser, namespace, values, option_string=None):\n        raise NotImplementedError(_('.__call__() not defined'))\n\n\nclass _StoreAction(Action):\n\n    def __init__(self,\n                 option_strings,\n                 dest,\n                 nargs=None,\n                 const=None,\n                 default=None,\n                 type=None,\n                 choices=None,\n                 required=False,\n                 help=None,\n                 metavar=None):\n        if nargs == 0:\n            raise ValueError('nargs for store actions must be != 0; if you '\n                             'have nothing to store, actions such as store '\n                             'true or store const may be more appropriate')\n        if const is not None and nargs != OPTIONAL:\n            raise ValueError('nargs must be %r to supply const' % OPTIONAL)\n        super(_StoreAction, self).__init__(\n            option_strings=option_strings,\n            dest=dest,\n            nargs=nargs,\n            const=const,\n            default=default,\n            type=type,\n            choices=choices,\n            required=required,\n            help=help,\n            metavar=metavar)\n\n    def __call__(self, parser, namespace, values, option_string=None):\n        setattr(namespace, self.dest, values)\n\n\nclass _StoreConstAction(Action):\n\n    def __init__(self,\n                 option_strings,\n                 dest,\n                 const,\n                 default=None,\n                 required=False,\n                 help=None,\n                 metavar=None):\n        super(_StoreConstAction, self).__init__(\n            option_strings=option_strings,\n            dest=dest,\n            nargs=0,\n            const=const,\n            default=default,\n            required=required,\n            help=help)\n\n    def __call__(self, parser, namespace, values, option_string=None):\n        setattr(namespace, self.dest, self.const)\n\n\nclass _StoreTrueAction(_StoreConstAction):\n\n    def __init__(self,\n                 option_strings,\n                 dest,\n                 default=False,\n                 required=False,\n                 help=None):\n        super(_StoreTrueAction, self).__init__(\n            option_strings=option_strings,\n            dest=dest,\n            const=True,\n            default=default,\n            required=required,\n            help=help)\n\n\nclass _StoreFalseAction(_StoreConstAction):\n\n    def __init__(self,\n                 option_strings,\n                 dest,\n                 default=True,\n                 required=False,\n                 help=None):\n        super(_StoreFalseAction, self).__init__(\n            option_strings=option_strings,\n            dest=dest,\n            const=False,\n            default=default,\n            required=required,\n            help=help)\n\n\nclass _AppendAction(Action):\n\n    def __init__(self,\n                 option_strings,\n                 dest,\n                 nargs=None,\n                 const=None,\n                 default=None,\n                 type=None,\n                 choices=None,\n                 required=False,\n                 help=None,\n                 metavar=None):\n        if nargs == 0:\n            raise ValueError('nargs for append actions must be != 0; if arg '\n                             'strings are not supplying the value to append, '\n                             'the append const action may be more appropriate')\n        if const is not None and nargs != OPTIONAL:\n            raise ValueError('nargs must be %r to supply const' % OPTIONAL)\n        super(_AppendAction, self).__init__(\n            option_strings=option_strings,\n            dest=dest,\n            nargs=nargs,\n            const=const,\n            default=default,\n            type=type,\n            choices=choices,\n            required=required,\n            help=help,\n            metavar=metavar)\n\n    def __call__(self, parser, namespace, values, option_string=None):\n        items = getattr(namespace, self.dest, None)\n        items = _copy_items(items)\n        items.append(values)\n        setattr(namespace, self.dest, items)\n\n\nclass _AppendConstAction(Action):\n\n    def __init__(self,\n                 option_strings,\n                 dest,\n                 const,\n                 default=None,\n                 required=False,\n                 help=None,\n                 metavar=None):\n        super(_AppendConstAction, self).__init__(\n            option_strings=option_strings,\n            dest=dest,\n            nargs=0,\n            const=const,\n            default=default,\n            required=required,\n            help=help,\n            metavar=metavar)\n\n    def __call__(self, parser, namespace, values, option_string=None):\n        items = getattr(namespace, self.dest, None)\n        items = _copy_items(items)\n        items.append(self.const)\n        setattr(namespace, self.dest, items)\n\n\nclass _CountAction(Action):\n\n    def __init__(self,\n                 option_strings,\n                 dest,\n                 default=None,\n                 required=False,\n                 help=None):\n        super(_CountAction, self).__init__(\n            option_strings=option_strings,\n            dest=dest,\n            nargs=0,\n            default=default,\n            required=required,\n            help=help)\n\n    def __call__(self, parser, namespace, values, option_string=None):\n        count = getattr(namespace, self.dest, None)\n        if count is None:\n            count = 0\n        setattr(namespace, self.dest, count + 1)\n\n\nclass _HelpAction(Action):\n\n    def __init__(self,\n                 option_strings,\n                 dest=SUPPRESS,\n                 default=SUPPRESS,\n                 help=None):\n        super(_HelpAction, self).__init__(\n            option_strings=option_strings,\n            dest=dest,\n            default=default,\n            nargs=0,\n            help=help)\n\n    def __call__(self, parser, namespace, values, option_string=None):\n        parser.print_help()\n        parser.exit()\n\n\nclass _VersionAction(Action):\n\n    def __init__(self,\n                 option_strings,\n                 version=None,\n                 dest=SUPPRESS,\n                 default=SUPPRESS,\n                 help=\"show program's version number and exit\"):\n        super(_VersionAction, self).__init__(\n            option_strings=option_strings,\n            dest=dest,\n            default=default,\n            nargs=0,\n            help=help)\n        self.version = version\n\n    def __call__(self, parser, namespace, values, option_string=None):\n        version = self.version\n        if version is None:\n            version = parser.version\n        formatter = parser._get_formatter()\n        formatter.add_text(version)\n        parser._print_message(formatter.format_help(), _sys.stdout)\n        parser.exit()\n\n\nclass _SubParsersAction(Action):\n\n    class _ChoicesPseudoAction(Action):\n\n        def __init__(self, name, aliases, help):\n            metavar = dest = name\n            if aliases:\n                metavar += ' (%s)' % ', '.join(aliases)\n            sup = super(_SubParsersAction._ChoicesPseudoAction, self)\n            sup.__init__(option_strings=[], dest=dest, help=help,\n                         metavar=metavar)\n\n    def __init__(self,\n                 option_strings,\n                 prog,\n                 parser_class,\n                 dest=SUPPRESS,\n                 required=False,\n                 help=None,\n                 metavar=None):\n\n        self._prog_prefix = prog\n        self._parser_class = parser_class\n        self._name_parser_map = {}\n        self._choices_actions = []\n\n        super(_SubParsersAction, self).__init__(\n            option_strings=option_strings,\n            dest=dest,\n            nargs=PARSER,\n            choices=self._name_parser_map,\n            required=required,\n            help=help,\n            metavar=metavar)\n\n    def add_parser(self, name, **kwargs):\n        # set prog from the existing prefix\n        if kwargs.get('prog') is None:\n            kwargs['prog'] = '%s %s' % (self._prog_prefix, name)\n\n        aliases = kwargs.pop('aliases', ())\n\n        # create a pseudo-action to hold the choice help\n        if 'help' in kwargs:\n            help = kwargs.pop('help')\n            choice_action = self._ChoicesPseudoAction(name, aliases, help)\n            self._choices_actions.append(choice_action)\n\n        # create the parser and add it to the map\n        parser = self._parser_class(**kwargs)\n        self._name_parser_map[name] = parser\n\n        # make parser available under aliases also\n        for alias in aliases:\n            self._name_parser_map[alias] = parser\n\n        return parser\n\n    def _get_subactions(self):\n        return self._choices_actions\n\n    def __call__(self, parser, namespace, values, option_string=None):\n        parser_name = values[0]\n        arg_strings = values[1:]\n\n        # set the parser name if requested\n        if self.dest is not SUPPRESS:\n            setattr(namespace, self.dest, parser_name)\n\n        # select the parser\n        try:\n            parser = self._name_parser_map[parser_name]\n        except KeyError:\n            args = {'parser_name': parser_name,\n                    'choices': ', '.join(self._name_parser_map)}\n            msg = _('unknown parser %(parser_name)r (choices: %(choices)s)') % args\n            raise ArgumentError(self, msg)\n\n        # parse all the remaining options into the namespace\n        # store any unrecognized options on the object, so that the top\n        # level parser can decide what to do with them\n\n        # In case this subparser defines new defaults, we parse them\n        # in a new namespace object and then update the original\n        # namespace for the relevant parts.\n        subnamespace, arg_strings = parser.parse_known_args(arg_strings, None)\n        for key, value in vars(subnamespace).items():\n            setattr(namespace, key, value)\n\n        if arg_strings:\n            vars(namespace).setdefault(_UNRECOGNIZED_ARGS_ATTR, [])\n            getattr(namespace, _UNRECOGNIZED_ARGS_ATTR).extend(arg_strings)\n\nclass _ExtendAction(_AppendAction):\n    def __call__(self, parser, namespace, values, option_string=None):\n        items = getattr(namespace, self.dest, None)\n        items = _copy_items(items)\n        items.extend(values)\n        setattr(namespace, self.dest, items)\n\n# ==============\n# Type classes\n# ==============\n\nclass FileType(object):\n    \"\"\"Factory for creating file object types\n\n    Instances of FileType are typically passed as type= arguments to the\n    ArgumentParser add_argument() method.\n\n    Keyword Arguments:\n        - mode -- A string indicating how the file is to be opened. Accepts the\n            same values as the builtin open() function.\n        - bufsize -- The file's desired buffer size. Accepts the same values as\n            the builtin open() function.\n        - encoding -- The file's encoding. Accepts the same values as the\n            builtin open() function.\n        - errors -- A string indicating how encoding and decoding errors are to\n            be handled. Accepts the same value as the builtin open() function.\n    \"\"\"\n\n    def __init__(self, mode='r', bufsize=-1, encoding=None, errors=None):\n        self._mode = mode\n        self._bufsize = bufsize\n        self._encoding = encoding\n        self._errors = errors\n\n    def __call__(self, string):\n        # the special argument \"-\" means sys.std{in,out}\n        if string == '-':\n            if 'r' in self._mode:\n                return _sys.stdin\n            elif 'w' in self._mode:\n                return _sys.stdout\n            else:\n                msg = _('argument \"-\" with mode %r') % self._mode\n                raise ValueError(msg)\n\n        # all other arguments are used as file names\n        try:\n            return open(string, self._mode, self._bufsize, self._encoding,\n                        self._errors)\n        except OSError as e:\n            args = {'filename': string, 'error': e}\n            message = _(\"can't open '%(filename)s': %(error)s\")\n            raise ArgumentTypeError(message % args)\n\n    def __repr__(self):\n        args = self._mode, self._bufsize\n        kwargs = [('encoding', self._encoding), ('errors', self._errors)]\n        args_str = ', '.join([repr(arg) for arg in args if arg != -1] +\n                             ['%s=%r' % (kw, arg) for kw, arg in kwargs\n                              if arg is not None])\n        return '%s(%s)' % (type(self).__name__, args_str)\n\n# ===========================\n# Optional and Positional Parsing\n# ===========================\n\nclass Namespace(_AttributeHolder):\n    \"\"\"Simple object for storing attributes.\n\n    Implements equality by attribute names and values, and provides a simple\n    string representation.\n    \"\"\"\n\n    def __init__(self, **kwargs):\n        for name in kwargs:\n            setattr(self, name, kwargs[name])\n\n    def __eq__(self, other):\n        if not isinstance(other, Namespace):\n            return NotImplemented\n        return vars(self) == vars(other)\n\n    def __contains__(self, key):\n        return key in self.__dict__\n\n\nclass _ActionsContainer(object):\n\n    def __init__(self,\n                 description,\n                 prefix_chars,\n                 argument_default,\n                 conflict_handler):\n        super(_ActionsContainer, self).__init__()\n\n        self.description = description\n        self.argument_default = argument_default\n        self.prefix_chars = prefix_chars\n        self.conflict_handler = conflict_handler\n\n        # set up registries\n        self._registries = {}\n\n        # register actions\n        self.register('action', None, _StoreAction)\n        self.register('action', 'store', _StoreAction)\n        self.register('action', 'store_const', _StoreConstAction)\n        self.register('action', 'store_true', _StoreTrueAction)\n        self.register('action', 'store_false', _StoreFalseAction)\n        self.register('action', 'append', _AppendAction)\n        self.register('action', 'append_const', _AppendConstAction)\n        self.register('action', 'count', _CountAction)\n        self.register('action', 'help', _HelpAction)\n        self.register('action', 'version', _VersionAction)\n        self.register('action', 'parsers', _SubParsersAction)\n        self.register('action', 'extend', _ExtendAction)\n\n        # raise an exception if the conflict handler is invalid\n        self._get_handler()\n\n        # action storage\n        self._actions = []\n        self._option_string_actions = {}\n\n        # groups\n        self._action_groups = []\n        self._mutually_exclusive_groups = []\n\n        # defaults storage\n        self._defaults = {}\n\n        # determines whether an \"option\" looks like a negative number\n        self._negative_number_matcher = _re.compile(r'^-\\d+$|^-\\d*\\.\\d+$')\n\n        # whether or not there are any optionals that look like negative\n        # numbers -- uses a list so it can be shared and edited\n        self._has_negative_number_optionals = []\n\n    # ====================\n    # Registration methods\n    # ====================\n    def register(self, registry_name, value, object):\n        registry = self._registries.setdefault(registry_name, {})\n        registry[value] = object\n\n    def _registry_get(self, registry_name, value, default=None):\n        return self._registries[registry_name].get(value, default)\n\n    # ==================================\n    # Namespace default accessor methods\n    # ==================================\n    def set_defaults(self, **kwargs):\n        self._defaults.update(kwargs)\n\n        # if these defaults match any existing arguments, replace\n        # the previous default on the object with the new one\n        for action in self._actions:\n            if action.dest in kwargs:\n                action.default = kwargs[action.dest]\n\n    def get_default(self, dest):\n        for action in self._actions:\n            if action.dest == dest and action.default is not None:\n                return action.default\n        return self._defaults.get(dest, None)\n\n\n    # =======================\n    # Adding argument actions\n    # =======================\n    def add_argument(self, *args, **kwargs):\n        \"\"\"\n        add_argument(dest, ..., name=value, ...)\n        add_argument(option_string, option_string, ..., name=value, ...)\n        \"\"\"\n\n        # if no positional args are supplied or only one is supplied and\n        # it doesn't look like an option string, parse a positional\n        # argument\n        chars = self.prefix_chars\n        if not args or len(args) == 1 and args[0][0] not in chars:\n            if args and 'dest' in kwargs:\n                raise ValueError('dest supplied twice for positional argument')\n            kwargs = self._get_positional_kwargs(*args, **kwargs)\n\n        # otherwise, we're adding an optional argument\n        else:\n            kwargs = self._get_optional_kwargs(*args, **kwargs)\n\n        # if no default was supplied, use the parser-level default\n        if 'default' not in kwargs:\n            dest = kwargs['dest']\n            if dest in self._defaults:\n                kwargs['default'] = self._defaults[dest]\n            elif self.argument_default is not None:\n                kwargs['default'] = self.argument_default\n\n        # create the action object, and add it to the parser\n        action_class = self._pop_action_class(kwargs)\n        if not callable(action_class):\n            raise ValueError('unknown action \"%s\"' % (action_class,))\n        action = action_class(**kwargs)\n\n        # raise an error if the action type is not callable\n        type_func = self._registry_get('type', action.type, action.type)\n        if not callable(type_func):\n            raise ValueError('%r is not callable' % (type_func,))\n\n        if type_func is FileType:\n            raise ValueError('%r is a FileType class object, instance of it'\n                             ' must be passed' % (type_func,))\n\n        # raise an error if the metavar does not match the type\n        if hasattr(self, \"_get_formatter\"):\n            try:\n                self._get_formatter()._format_args(action, None)\n            except TypeError:\n                raise ValueError(\"length of metavar tuple does not match nargs\")\n\n        return self._add_action(action)\n\n    def add_argument_group(self, *args, **kwargs):\n        group = _ArgumentGroup(self, *args, **kwargs)\n        self._action_groups.append(group)\n        return group\n\n    def add_mutually_exclusive_group(self, **kwargs):\n        group = _MutuallyExclusiveGroup(self, **kwargs)\n        self._mutually_exclusive_groups.append(group)\n        return group\n\n    def _add_action(self, action):\n        # resolve any conflicts\n        self._check_conflict(action)\n\n        # add to actions list\n        self._actions.append(action)\n        action.container = self\n\n        # index the action by any option strings it has\n        for option_string in action.option_strings:\n            self._option_string_actions[option_string] = action\n\n        # set the flag if any option strings look like negative numbers\n        for option_string in action.option_strings:\n            if self._negative_number_matcher.match(option_string):\n                if not self._has_negative_number_optionals:\n                    self._has_negative_number_optionals.append(True)\n\n        # return the created action\n        return action\n\n    def _remove_action(self, action):\n        self._actions.remove(action)\n\n    def _add_container_actions(self, container):\n        # collect groups by titles\n        title_group_map = {}\n        for group in self._action_groups:\n            if group.title in title_group_map:\n                msg = _('cannot merge actions - two groups are named %r')\n                raise ValueError(msg % (group.title))\n            title_group_map[group.title] = group\n\n        # map each action to its group\n        group_map = {}\n        for group in container._action_groups:\n\n            # if a group with the title exists, use that, otherwise\n            # create a new group matching the container's group\n            if group.title not in title_group_map:\n                title_group_map[group.title] = self.add_argument_group(\n                    title=group.title,\n                    description=group.description,\n                    conflict_handler=group.conflict_handler)\n\n            # map the actions to their new group\n            for action in group._group_actions:\n                group_map[action] = title_group_map[group.title]\n\n        # add container's mutually exclusive groups\n        # NOTE: if add_mutually_exclusive_group ever gains title= and\n        # description= then this code will need to be expanded as above\n        for group in container._mutually_exclusive_groups:\n            mutex_group = self.add_mutually_exclusive_group(\n                required=group.required)\n\n            # map the actions to their new mutex group\n            for action in group._group_actions:\n                group_map[action] = mutex_group\n\n        # add all actions to this container or their group\n        for action in container._actions:\n            group_map.get(action, self)._add_action(action)\n\n    def _get_positional_kwargs(self, dest, **kwargs):\n        # make sure required is not specified\n        if 'required' in kwargs:\n            msg = _(\"'required' is an invalid argument for positionals\")\n            raise TypeError(msg)\n\n        # mark positional arguments as required if at least one is\n        # always required\n        if kwargs.get('nargs') not in [OPTIONAL, ZERO_OR_MORE]:\n            kwargs['required'] = True\n        if kwargs.get('nargs') == ZERO_OR_MORE and 'default' not in kwargs:\n            kwargs['required'] = True\n\n        # return the keyword arguments with no option strings\n        return dict(kwargs, dest=dest, option_strings=[])\n\n    def _get_optional_kwargs(self, *args, **kwargs):\n        # determine short and long option strings\n        option_strings = []\n        long_option_strings = []\n        for option_string in args:\n            # error on strings that don't start with an appropriate prefix\n            if not option_string[0] in self.prefix_chars:\n                args = {'option': option_string,\n                        'prefix_chars': self.prefix_chars}\n                msg = _('invalid option string %(option)r: '\n                        'must start with a character %(prefix_chars)r')\n                raise ValueError(msg % args)\n\n            # strings starting with two prefix characters are long options\n            option_strings.append(option_string)\n            if option_string[0] in self.prefix_chars:\n                if len(option_string) > 1:\n                    if option_string[1] in self.prefix_chars:\n                        long_option_strings.append(option_string)\n\n        # infer destination, '--foo-bar' -> 'foo_bar' and '-x' -> 'x'\n        dest = kwargs.pop('dest', None)\n        if dest is None:\n            if long_option_strings:\n                dest_option_string = long_option_strings[0]\n            else:\n                dest_option_string = option_strings[0]\n            dest = dest_option_string.lstrip(self.prefix_chars)\n            if not dest:\n                msg = _('dest= is required for options like %r')\n                raise ValueError(msg % option_string)\n            dest = dest.replace('-', '_')\n\n        # return the updated keyword arguments\n        return dict(kwargs, dest=dest, option_strings=option_strings)\n\n    def _pop_action_class(self, kwargs, default=None):\n        action = kwargs.pop('action', default)\n        return self._registry_get('action', action, action)\n\n    def _get_handler(self):\n        # determine function from conflict handler string\n        handler_func_name = '_handle_conflict_%s' % self.conflict_handler\n        try:\n            return getattr(self, handler_func_name)\n        except AttributeError:\n            msg = _('invalid conflict_resolution value: %r')\n            raise ValueError(msg % self.conflict_handler)\n\n    def _check_conflict(self, action):\n\n        # find all options that conflict with this option\n        confl_optionals = []\n        for option_string in action.option_strings:\n            if option_string in self._option_string_actions:\n                confl_optional = self._option_string_actions[option_string]\n                confl_optionals.append((option_string, confl_optional))\n\n        # resolve any conflicts\n        if confl_optionals:\n            conflict_handler = self._get_handler()\n            conflict_handler(action, confl_optionals)\n\n    def _handle_conflict_error(self, action, conflicting_actions):\n        message = ngettext('conflicting option string: %s',\n                           'conflicting option strings: %s',\n                           len(conflicting_actions))\n        conflict_string = ', '.join([option_string\n                                     for option_string, action\n                                     in conflicting_actions])\n        raise ArgumentError(action, message % conflict_string)\n\n    def _handle_conflict_resolve(self, action, conflicting_actions):\n\n        # remove all conflicting options\n        for option_string, action in conflicting_actions:\n\n            # remove the conflicting option\n            action.option_strings.remove(option_string)\n            self._option_string_actions.pop(option_string, None)\n\n            # if the option now has no option string, remove it from the\n            # container holding it\n            if not action.option_strings:\n                action.container._remove_action(action)\n\n\nclass _ArgumentGroup(_ActionsContainer):\n\n    def __init__(self, container, title=None, description=None, **kwargs):\n        # add any missing keyword arguments by checking the container\n        update = kwargs.setdefault\n        update('conflict_handler', container.conflict_handler)\n        update('prefix_chars', container.prefix_chars)\n        update('argument_default', container.argument_default)\n        super_init = super(_ArgumentGroup, self).__init__\n        super_init(description=description, **kwargs)\n\n        # group attributes\n        self.title = title\n        self._group_actions = []\n\n        # share most attributes with the container\n        self._registries = container._registries\n        self._actions = container._actions\n        self._option_string_actions = container._option_string_actions\n        self._defaults = container._defaults\n        self._has_negative_number_optionals = \\\n            container._has_negative_number_optionals\n        self._mutually_exclusive_groups = container._mutually_exclusive_groups\n\n    def _add_action(self, action):\n        action = super(_ArgumentGroup, self)._add_action(action)\n        self._group_actions.append(action)\n        return action\n\n    def _remove_action(self, action):\n        super(_ArgumentGroup, self)._remove_action(action)\n        self._group_actions.remove(action)\n\n\nclass _MutuallyExclusiveGroup(_ArgumentGroup):\n\n    def __init__(self, container, required=False):\n        super(_MutuallyExclusiveGroup, self).__init__(container)\n        self.required = required\n        self._container = container\n\n    def _add_action(self, action):\n        if action.required:\n            msg = _('mutually exclusive arguments must be optional')\n            raise ValueError(msg)\n        action = self._container._add_action(action)\n        self._group_actions.append(action)\n        return action\n\n    def _remove_action(self, action):\n        self._container._remove_action(action)\n        self._group_actions.remove(action)\n\n\nclass ArgumentParser(_AttributeHolder, _ActionsContainer):\n    \"\"\"Object for parsing command line strings into Python objects.\n\n    Keyword Arguments:\n        - prog -- The name of the program (default: sys.argv[0])\n        - usage -- A usage message (default: auto-generated from arguments)\n        - description -- A description of what the program does\n        - epilog -- Text following the argument descriptions\n        - parents -- Parsers whose arguments should be copied into this one\n        - formatter_class -- HelpFormatter class for printing help messages\n        - prefix_chars -- Characters that prefix optional arguments\n        - fromfile_prefix_chars -- Characters that prefix files containing\n            additional arguments\n        - argument_default -- The default value for all arguments\n        - conflict_handler -- String indicating how to handle conflicts\n        - add_help -- Add a -h/-help option\n        - allow_abbrev -- Allow long options to be abbreviated unambiguously\n    \"\"\"\n\n    def __init__(self,\n                 prog=None,\n                 usage=None,\n                 description=None,\n                 epilog=None,\n                 parents=[],\n                 formatter_class=HelpFormatter,\n                 prefix_chars='-',\n                 fromfile_prefix_chars=None,\n                 argument_default=None,\n                 conflict_handler='error',\n                 add_help=True,\n                 allow_abbrev=True):\n\n        superinit = super(ArgumentParser, self).__init__\n        superinit(description=description,\n                  prefix_chars=prefix_chars,\n                  argument_default=argument_default,\n                  conflict_handler=conflict_handler)\n\n        # default setting for prog\n        if prog is None:\n            prog = _os.path.basename(_sys.argv[0])\n\n        self.prog = prog\n        self.usage = usage\n        self.epilog = epilog\n        self.formatter_class = formatter_class\n        self.fromfile_prefix_chars = fromfile_prefix_chars\n        self.add_help = add_help\n        self.allow_abbrev = allow_abbrev\n\n        add_group = self.add_argument_group\n        self._positionals = add_group(_('positional arguments'))\n        self._optionals = add_group(_('optional arguments'))\n        self._subparsers = None\n\n        # register types\n        def identity(string):\n            return string\n        self.register('type', None, identity)\n\n        # add help argument if necessary\n        # (using explicit default to override global argument_default)\n        default_prefix = '-' if '-' in prefix_chars else prefix_chars[0]\n        if self.add_help:\n            self.add_argument(\n                default_prefix+'h', default_prefix*2+'help',\n                action='help', default=SUPPRESS,\n                help=_('show this help message and exit'))\n\n        # add parent arguments and defaults\n        for parent in parents:\n            self._add_container_actions(parent)\n            try:\n                defaults = parent._defaults\n            except AttributeError:\n                pass\n            else:\n                self._defaults.update(defaults)\n\n    # =======================\n    # Pretty __repr__ methods\n    # =======================\n    def _get_kwargs(self):\n        names = [\n            'prog',\n            'usage',\n            'description',\n            'formatter_class',\n            'conflict_handler',\n            'add_help',\n        ]\n        return [(name, getattr(self, name)) for name in names]\n\n    # ==================================\n    # Optional/Positional adding methods\n    # ==================================\n    def add_subparsers(self, **kwargs):\n        if self._subparsers is not None:\n            self.error(_('cannot have multiple subparser arguments'))\n\n        # add the parser class to the arguments if it's not present\n        kwargs.setdefault('parser_class', type(self))\n\n        if 'title' in kwargs or 'description' in kwargs:\n            title = _(kwargs.pop('title', 'subcommands'))\n            description = _(kwargs.pop('description', None))\n            self._subparsers = self.add_argument_group(title, description)\n        else:\n            self._subparsers = self._positionals\n\n        # prog defaults to the usage message of this parser, skipping\n        # optional arguments and with no \"usage:\" prefix\n        if kwargs.get('prog') is None:\n            formatter = self._get_formatter()\n            positionals = self._get_positional_actions()\n            groups = self._mutually_exclusive_groups\n            formatter.add_usage(self.usage, positionals, groups, '')\n            kwargs['prog'] = formatter.format_help().strip()\n\n        # create the parsers action and add it to the positionals list\n        parsers_class = self._pop_action_class(kwargs, 'parsers')\n        action = parsers_class(option_strings=[], **kwargs)\n        self._subparsers._add_action(action)\n\n        # return the created parsers action\n        return action\n\n    def _add_action(self, action):\n        if action.option_strings:\n            self._optionals._add_action(action)\n        else:\n            self._positionals._add_action(action)\n        return action\n\n    def _get_optional_actions(self):\n        return [action\n                for action in self._actions\n                if action.option_strings]\n\n    def _get_positional_actions(self):\n        return [action\n                for action in self._actions\n                if not action.option_strings]\n\n    # =====================================\n    # Command line argument parsing methods\n    # =====================================\n    def parse_args(self, args=None, namespace=None):\n        args, argv = self.parse_known_args(args, namespace)\n        if argv:\n            msg = _('unrecognized arguments: %s')\n            self.error(msg % ' '.join(argv))\n        return args\n\n    def parse_known_args(self, args=None, namespace=None):\n        if args is None:\n            # args default to the system args\n            args = _sys.argv[1:]\n        else:\n            # make sure that args are mutable\n            args = list(args)\n\n        # default Namespace built from parser defaults\n        if namespace is None:\n            namespace = Namespace()\n\n        # add any action defaults that aren't present\n        for action in self._actions:\n            if action.dest is not SUPPRESS:\n                if not hasattr(namespace, action.dest):\n                    if action.default is not SUPPRESS:\n                        setattr(namespace, action.dest, action.default)\n\n        # add any parser defaults that aren't present\n        for dest in self._defaults:\n            if not hasattr(namespace, dest):\n                setattr(namespace, dest, self._defaults[dest])\n\n        # parse the arguments and exit if there are any errors\n        try:\n            namespace, args = self._parse_known_args(args, namespace)\n            if hasattr(namespace, _UNRECOGNIZED_ARGS_ATTR):\n                args.extend(getattr(namespace, _UNRECOGNIZED_ARGS_ATTR))\n                delattr(namespace, _UNRECOGNIZED_ARGS_ATTR)\n            return namespace, args\n        except ArgumentError:\n            err = _sys.exc_info()[1]\n            self.error(str(err))\n\n    def _parse_known_args(self, arg_strings, namespace):\n        # replace arg strings that are file references\n        if self.fromfile_prefix_chars is not None:\n            arg_strings = self._read_args_from_files(arg_strings)\n\n        # map all mutually exclusive arguments to the other arguments\n        # they can't occur with\n        action_conflicts = {}\n        for mutex_group in self._mutually_exclusive_groups:\n            group_actions = mutex_group._group_actions\n            for i, mutex_action in enumerate(mutex_group._group_actions):\n                conflicts = action_conflicts.setdefault(mutex_action, [])\n                conflicts.extend(group_actions[:i])\n                conflicts.extend(group_actions[i + 1:])\n\n        # find all option indices, and determine the arg_string_pattern\n        # which has an 'O' if there is an option at an index,\n        # an 'A' if there is an argument, or a '-' if there is a '--'\n        option_string_indices = {}\n        arg_string_pattern_parts = []\n        arg_strings_iter = iter(arg_strings)\n        for i, arg_string in enumerate(arg_strings_iter):\n\n            # all args after -- are non-options\n            if arg_string == '--':\n                arg_string_pattern_parts.append('-')\n                for arg_string in arg_strings_iter:\n                    arg_string_pattern_parts.append('A')\n\n            # otherwise, add the arg to the arg strings\n            # and note the index if it was an option\n            else:\n                option_tuple = self._parse_optional(arg_string)\n                if option_tuple is None:\n                    pattern = 'A'\n                else:\n                    option_string_indices[i] = option_tuple\n                    pattern = 'O'\n                arg_string_pattern_parts.append(pattern)\n\n        # join the pieces together to form the pattern\n        arg_strings_pattern = ''.join(arg_string_pattern_parts)\n\n        # converts arg strings to the appropriate and then takes the action\n        seen_actions = set()\n        seen_non_default_actions = set()\n\n        def take_action(action, argument_strings, option_string=None):\n            seen_actions.add(action)\n            argument_values = self._get_values(action, argument_strings)\n\n            # error if this argument is not allowed with other previously\n            # seen arguments, assuming that actions that use the default\n            # value don't really count as \"present\"\n            if argument_values is not action.default:\n                seen_non_default_actions.add(action)\n                for conflict_action in action_conflicts.get(action, []):\n                    if conflict_action in seen_non_default_actions:\n                        msg = _('not allowed with argument %s')\n                        action_name = _get_action_name(conflict_action)\n                        raise ArgumentError(action, msg % action_name)\n\n            # take the action if we didn't receive a SUPPRESS value\n            # (e.g. from a default)\n            if argument_values is not SUPPRESS:\n                action(self, namespace, argument_values, option_string)\n\n        # function to convert arg_strings into an optional action\n        def consume_optional(start_index):\n\n            # get the optional identified at this index\n            option_tuple = option_string_indices[start_index]\n            action, option_string, explicit_arg = option_tuple\n\n            # identify additional optionals in the same arg string\n            # (e.g. -xyz is the same as -x -y -z if no args are required)\n            match_argument = self._match_argument\n            action_tuples = []\n            while True:\n\n                # if we found no optional action, skip it\n                if action is None:\n                    extras.append(arg_strings[start_index])\n                    return start_index + 1\n\n                # if there is an explicit argument, try to match the\n                # optional's string arguments to only this\n                if explicit_arg is not None:\n                    arg_count = match_argument(action, 'A')\n\n                    # if the action is a single-dash option and takes no\n                    # arguments, try to parse more single-dash options out\n                    # of the tail of the option string\n                    chars = self.prefix_chars\n                    if arg_count == 0 and option_string[1] not in chars:\n                        action_tuples.append((action, [], option_string))\n                        char = option_string[0]\n                        option_string = char + explicit_arg[0]\n                        new_explicit_arg = explicit_arg[1:] or None\n                        optionals_map = self._option_string_actions\n                        if option_string in optionals_map:\n                            action = optionals_map[option_string]\n                            explicit_arg = new_explicit_arg\n                        else:\n                            msg = _('ignored explicit argument %r')\n                            raise ArgumentError(action, msg % explicit_arg)\n\n                    # if the action expect exactly one argument, we've\n                    # successfully matched the option; exit the loop\n                    elif arg_count == 1:\n                        stop = start_index + 1\n                        args = [explicit_arg]\n                        action_tuples.append((action, args, option_string))\n                        break\n\n                    # error if a double-dash option did not use the\n                    # explicit argument\n                    else:\n                        msg = _('ignored explicit argument %r')\n                        raise ArgumentError(action, msg % explicit_arg)\n\n                # if there is no explicit argument, try to match the\n                # optional's string arguments with the following strings\n                # if successful, exit the loop\n                else:\n                    start = start_index + 1\n                    selected_patterns = arg_strings_pattern[start:]\n                    arg_count = match_argument(action, selected_patterns)\n                    stop = start + arg_count\n                    args = arg_strings[start:stop]\n                    action_tuples.append((action, args, option_string))\n                    break\n\n            # add the Optional to the list and return the index at which\n            # the Optional's string args stopped\n            assert action_tuples\n            for action, args, option_string in action_tuples:\n                take_action(action, args, option_string)\n            return stop\n\n        # the list of Positionals left to be parsed; this is modified\n        # by consume_positionals()\n        positionals = self._get_positional_actions()\n\n        # function to convert arg_strings into positional actions\n        def consume_positionals(start_index):\n            # match as many Positionals as possible\n            match_partial = self._match_arguments_partial\n            selected_pattern = arg_strings_pattern[start_index:]\n            arg_counts = match_partial(positionals, selected_pattern)\n\n            # slice off the appropriate arg strings for each Positional\n            # and add the Positional and its args to the list\n            for action, arg_count in zip(positionals, arg_counts):\n                args = arg_strings[start_index: start_index + arg_count]\n                start_index += arg_count\n                take_action(action, args)\n\n            # slice off the Positionals that we just parsed and return the\n            # index at which the Positionals' string args stopped\n            positionals[:] = positionals[len(arg_counts):]\n            return start_index\n\n        # consume Positionals and Optionals alternately, until we have\n        # passed the last option string\n        extras = []\n        start_index = 0\n        if option_string_indices:\n            max_option_string_index = max(option_string_indices)\n        else:\n            max_option_string_index = -1\n        while start_index <= max_option_string_index:\n\n            # consume any Positionals preceding the next option\n            next_option_string_index = min([\n                index\n                for index in option_string_indices\n                if index >= start_index])\n            if start_index != next_option_string_index:\n                positionals_end_index = consume_positionals(start_index)\n\n                # only try to parse the next optional if we didn't consume\n                # the option string during the positionals parsing\n                if positionals_end_index > start_index:\n                    start_index = positionals_end_index\n                    continue\n                else:\n                    start_index = positionals_end_index\n\n            # if we consumed all the positionals we could and we're not\n            # at the index of an option string, there were extra arguments\n            if start_index not in option_string_indices:\n                strings = arg_strings[start_index:next_option_string_index]\n                extras.extend(strings)\n                start_index = next_option_string_index\n\n            # consume the next optional and any arguments for it\n            start_index = consume_optional(start_index)\n\n        # consume any positionals following the last Optional\n        stop_index = consume_positionals(start_index)\n\n        # if we didn't consume all the argument strings, there were extras\n        extras.extend(arg_strings[stop_index:])\n\n        # make sure all required actions were present and also convert\n        # action defaults which were not given as arguments\n        required_actions = []\n        for action in self._actions:\n            if action not in seen_actions:\n                if action.required:\n                    required_actions.append(_get_action_name(action))\n                else:\n                    # Convert action default now instead of doing it before\n                    # parsing arguments to avoid calling convert functions\n                    # twice (which may fail) if the argument was given, but\n                    # only if it was defined already in the namespace\n                    if (action.default is not None and\n                        isinstance(action.default, str) and\n                        hasattr(namespace, action.dest) and\n                        action.default is getattr(namespace, action.dest)):\n                        setattr(namespace, action.dest,\n                                self._get_value(action, action.default))\n\n        if required_actions:\n            self.error(_('the following arguments are required: %s') %\n                       ', '.join(required_actions))\n\n        # make sure all required groups had one option present\n        for group in self._mutually_exclusive_groups:\n            if group.required:\n                for action in group._group_actions:\n                    if action in seen_non_default_actions:\n                        break\n\n                # if no actions were used, report the error\n                else:\n                    names = [_get_action_name(action)\n                             for action in group._group_actions\n                             if action.help is not SUPPRESS]\n                    msg = _('one of the arguments %s is required')\n                    self.error(msg % ' '.join(names))\n\n        # return the updated namespace and the extra arguments\n        return namespace, extras\n\n    def _read_args_from_files(self, arg_strings):\n        # expand arguments referencing files\n        new_arg_strings = []\n        for arg_string in arg_strings:\n\n            # for regular arguments, just add them back into the list\n            if not arg_string or arg_string[0] not in self.fromfile_prefix_chars:\n                new_arg_strings.append(arg_string)\n\n            # replace arguments referencing files with the file content\n            else:\n                try:\n                    with open(arg_string[1:]) as args_file:\n                        arg_strings = []\n                        for arg_line in args_file.read().splitlines():\n                            for arg in self.convert_arg_line_to_args(arg_line):\n                                arg_strings.append(arg)\n                        arg_strings = self._read_args_from_files(arg_strings)\n                        new_arg_strings.extend(arg_strings)\n                except OSError:\n                    err = _sys.exc_info()[1]\n                    self.error(str(err))\n\n        # return the modified argument list\n        return new_arg_strings\n\n    def convert_arg_line_to_args(self, arg_line):\n        return [arg_line]\n\n    def _match_argument(self, action, arg_strings_pattern):\n        # match the pattern for this action to the arg strings\n        nargs_pattern = self._get_nargs_pattern(action)\n        match = _re.match(nargs_pattern, arg_strings_pattern)\n\n        # raise an exception if we weren't able to find a match\n        if match is None:\n            nargs_errors = {\n                None: _('expected one argument'),\n                OPTIONAL: _('expected at most one argument'),\n                ONE_OR_MORE: _('expected at least one argument'),\n            }\n            msg = nargs_errors.get(action.nargs)\n            if msg is None:\n                msg = ngettext('expected %s argument',\n                               'expected %s arguments',\n                               action.nargs) % action.nargs\n            raise ArgumentError(action, msg)\n\n        # return the number of arguments matched\n        return len(match.group(1))\n\n    def _match_arguments_partial(self, actions, arg_strings_pattern):\n        # progressively shorten the actions list by slicing off the\n        # final actions until we find a match\n        result = []\n        for i in range(len(actions), 0, -1):\n            actions_slice = actions[:i]\n            pattern = ''.join([self._get_nargs_pattern(action)\n                               for action in actions_slice])\n            match = _re.match(pattern, arg_strings_pattern)\n            if match is not None:\n                result.extend([len(string) for string in match.groups()])\n                break\n\n        # return the list of arg string counts\n        return result\n\n    def _parse_optional(self, arg_string):\n        # if it's an empty string, it was meant to be a positional\n        if not arg_string:\n            return None\n\n        # if it doesn't start with a prefix, it was meant to be positional\n        if not arg_string[0] in self.prefix_chars:\n            return None\n\n        # if the option string is present in the parser, return the action\n        if arg_string in self._option_string_actions:\n            action = self._option_string_actions[arg_string]\n            return action, arg_string, None\n\n        # if it's just a single character, it was meant to be positional\n        if len(arg_string) == 1:\n            return None\n\n        # if the option string before the \"=\" is present, return the action\n        if '=' in arg_string:\n            option_string, explicit_arg = arg_string.split('=', 1)\n            if option_string in self._option_string_actions:\n                action = self._option_string_actions[option_string]\n                return action, option_string, explicit_arg\n\n        # search through all possible prefixes of the option string\n        # and all actions in the parser for possible interpretations\n        option_tuples = self._get_option_tuples(arg_string)\n\n        # if multiple actions match, the option string was ambiguous\n        if len(option_tuples) > 1:\n            options = ', '.join([option_string\n                for action, option_string, explicit_arg in option_tuples])\n            args = {'option': arg_string, 'matches': options}\n            msg = _('ambiguous option: %(option)s could match %(matches)s')\n            self.error(msg % args)\n\n        # if exactly one action matched, this segmentation is good,\n        # so return the parsed action\n        elif len(option_tuples) == 1:\n            option_tuple, = option_tuples\n            return option_tuple\n\n        # if it was not found as an option, but it looks like a negative\n        # number, it was meant to be positional\n        # unless there are negative-number-like options\n        if self._negative_number_matcher.match(arg_string):\n            if not self._has_negative_number_optionals:\n                return None\n\n        # if it contains a space, it was meant to be a positional\n        if ' ' in arg_string:\n            return None\n\n        # it was meant to be an optional but there is no such option\n        # in this parser (though it might be a valid option in a subparser)\n        return None, arg_string, None\n\n    def _get_option_tuples(self, option_string):\n        result = []\n\n        # option strings starting with two prefix characters are only\n        # split at the '='\n        chars = self.prefix_chars\n        if option_string[0] in chars and option_string[1] in chars:\n            if self.allow_abbrev:\n                if '=' in option_string:\n                    option_prefix, explicit_arg = option_string.split('=', 1)\n                else:\n                    option_prefix = option_string\n                    explicit_arg = None\n                for option_string in self._option_string_actions:\n                    if option_string.startswith(option_prefix):\n                        action = self._option_string_actions[option_string]\n                        tup = action, option_string, explicit_arg\n                        result.append(tup)\n\n        # single character options can be concatenated with their arguments\n        # but multiple character options always have to have their argument\n        # separate\n        elif option_string[0] in chars and option_string[1] not in chars:\n            option_prefix = option_string\n            explicit_arg = None\n            short_option_prefix = option_string[:2]\n            short_explicit_arg = option_string[2:]\n\n            for option_string in self._option_string_actions:\n                if option_string == short_option_prefix:\n                    action = self._option_string_actions[option_string]\n                    tup = action, option_string, short_explicit_arg\n                    result.append(tup)\n                elif option_string.startswith(option_prefix):\n                    action = self._option_string_actions[option_string]\n                    tup = action, option_string, explicit_arg\n                    result.append(tup)\n\n        # shouldn't ever get here\n        else:\n            self.error(_('unexpected option string: %s') % option_string)\n\n        # return the collected option tuples\n        return result\n\n    def _get_nargs_pattern(self, action):\n        # in all examples below, we have to allow for '--' args\n        # which are represented as '-' in the pattern\n        nargs = action.nargs\n\n        # the default (None) is assumed to be a single argument\n        if nargs is None:\n            nargs_pattern = '(-*A-*)'\n\n        # allow zero or one arguments\n        elif nargs == OPTIONAL:\n            nargs_pattern = '(-*A?-*)'\n\n        # allow zero or more arguments\n        elif nargs == ZERO_OR_MORE:\n            nargs_pattern = '(-*[A-]*)'\n\n        # allow one or more arguments\n        elif nargs == ONE_OR_MORE:\n            nargs_pattern = '(-*A[A-]*)'\n\n        # allow any number of options or arguments\n        elif nargs == REMAINDER:\n            nargs_pattern = '([-AO]*)'\n\n        # allow one argument followed by any number of options or arguments\n        elif nargs == PARSER:\n            nargs_pattern = '(-*A[-AO]*)'\n\n        # suppress action, like nargs=0\n        elif nargs == SUPPRESS:\n            nargs_pattern = '(-*-*)'\n\n        # all others should be integers\n        else:\n            nargs_pattern = '(-*%s-*)' % '-*'.join('A' * nargs)\n\n        # if this is an optional action, -- is not allowed\n        if action.option_strings:\n            nargs_pattern = nargs_pattern.replace('-*', '')\n            nargs_pattern = nargs_pattern.replace('-', '')\n\n        # return the pattern\n        return nargs_pattern\n\n    # ========================\n    # Alt command line argument parsing, allowing free intermix\n    # ========================\n\n    def parse_intermixed_args(self, args=None, namespace=None):\n        args, argv = self.parse_known_intermixed_args(args, namespace)\n        if argv:\n            msg = _('unrecognized arguments: %s')\n            self.error(msg % ' '.join(argv))\n        return args\n\n    def parse_known_intermixed_args(self, args=None, namespace=None):\n        # returns a namespace and list of extras\n        #\n        # positional can be freely intermixed with optionals.  optionals are\n        # first parsed with all positional arguments deactivated.  The 'extras'\n        # are then parsed.  If the parser definition is incompatible with the\n        # intermixed assumptions (e.g. use of REMAINDER, subparsers) a\n        # TypeError is raised.\n        #\n        # positionals are 'deactivated' by setting nargs and default to\n        # SUPPRESS.  This blocks the addition of that positional to the\n        # namespace\n\n        positionals = self._get_positional_actions()\n        a = [action for action in positionals\n             if action.nargs in [PARSER, REMAINDER]]\n        if a:\n            raise TypeError('parse_intermixed_args: positional arg'\n                            ' with nargs=%s'%a[0].nargs)\n\n        if [action.dest for group in self._mutually_exclusive_groups\n            for action in group._group_actions if action in positionals]:\n            raise TypeError('parse_intermixed_args: positional in'\n                            ' mutuallyExclusiveGroup')\n\n        try:\n            save_usage = self.usage\n            try:\n                if self.usage is None:\n                    # capture the full usage for use in error messages\n                    self.usage = self.format_usage()[7:]\n                for action in positionals:\n                    # deactivate positionals\n                    action.save_nargs = action.nargs\n                    # action.nargs = 0\n                    action.nargs = SUPPRESS\n                    action.save_default = action.default\n                    action.default = SUPPRESS\n                namespace, remaining_args = self.parse_known_args(args,\n                                                                  namespace)\n                for action in positionals:\n                    # remove the empty positional values from namespace\n                    if (hasattr(namespace, action.dest)\n                            and getattr(namespace, action.dest)==[]):\n                        from warnings import warn\n                        warn('Do not expect %s in %s' % (action.dest, namespace))\n                        delattr(namespace, action.dest)\n            finally:\n                # restore nargs and usage before exiting\n                for action in positionals:\n                    action.nargs = action.save_nargs\n                    action.default = action.save_default\n            optionals = self._get_optional_actions()\n            try:\n                # parse positionals.  optionals aren't normally required, but\n                # they could be, so make sure they aren't.\n                for action in optionals:\n                    action.save_required = action.required\n                    action.required = False\n                for group in self._mutually_exclusive_groups:\n                    group.save_required = group.required\n                    group.required = False\n                namespace, extras = self.parse_known_args(remaining_args,\n                                                          namespace)\n            finally:\n                # restore parser values before exiting\n                for action in optionals:\n                    action.required = action.save_required\n                for group in self._mutually_exclusive_groups:\n                    group.required = group.save_required\n        finally:\n            self.usage = save_usage\n        return namespace, extras\n\n    # ========================\n    # Value conversion methods\n    # ========================\n    def _get_values(self, action, arg_strings):\n        # for everything but PARSER, REMAINDER args, strip out first '--'\n        if action.nargs not in [PARSER, REMAINDER]:\n            try:\n                arg_strings.remove('--')\n            except ValueError:\n                pass\n\n        # optional argument produces a default when not present\n        if not arg_strings and action.nargs == OPTIONAL:\n            if action.option_strings:\n                value = action.const\n            else:\n                value = action.default\n            if isinstance(value, str):\n                value = self._get_value(action, value)\n                self._check_value(action, value)\n\n        # when nargs='*' on a positional, if there were no command-line\n        # args, use the default if it is anything other than None\n        elif (not arg_strings and action.nargs == ZERO_OR_MORE and\n              not action.option_strings):\n            if action.default is not None:\n                value = action.default\n            else:\n                value = arg_strings\n            self._check_value(action, value)\n\n        # single argument or optional argument produces a single value\n        elif len(arg_strings) == 1 and action.nargs in [None, OPTIONAL]:\n            arg_string, = arg_strings\n            value = self._get_value(action, arg_string)\n            self._check_value(action, value)\n\n        # REMAINDER arguments convert all values, checking none\n        elif action.nargs == REMAINDER:\n            value = [self._get_value(action, v) for v in arg_strings]\n\n        # PARSER arguments convert all values, but check only the first\n        elif action.nargs == PARSER:\n            value = [self._get_value(action, v) for v in arg_strings]\n            self._check_value(action, value[0])\n\n        # SUPPRESS argument does not put anything in the namespace\n        elif action.nargs == SUPPRESS:\n            value = SUPPRESS\n\n        # all other types of nargs produce a list\n        else:\n            value = [self._get_value(action, v) for v in arg_strings]\n            for v in value:\n                self._check_value(action, v)\n\n        # return the converted value\n        return value\n\n    def _get_value(self, action, arg_string):\n        type_func = self._registry_get('type', action.type, action.type)\n        if not callable(type_func):\n            msg = _('%r is not callable')\n            raise ArgumentError(action, msg % type_func)\n\n        # convert the value to the appropriate type\n        try:\n            result = type_func(arg_string)\n\n        # ArgumentTypeErrors indicate errors\n        except ArgumentTypeError:\n            name = getattr(action.type, '__name__', repr(action.type))\n            msg = str(_sys.exc_info()[1])\n            raise ArgumentError(action, msg)\n\n        # TypeErrors or ValueErrors also indicate errors\n        except (TypeError, ValueError):\n            name = getattr(action.type, '__name__', repr(action.type))\n            args = {'type': name, 'value': arg_string}\n            msg = _('invalid %(type)s value: %(value)r')\n            raise ArgumentError(action, msg % args)\n\n        # return the converted value\n        return result\n\n    def _check_value(self, action, value):\n        # converted value must be one of the choices (if specified)\n        if action.choices is not None and value not in action.choices:\n            args = {'value': value,\n                    'choices': ', '.join(map(repr, action.choices))}\n            msg = _('invalid choice: %(value)r (choose from %(choices)s)')\n            raise ArgumentError(action, msg % args)\n\n    # =======================\n    # Help-formatting methods\n    # =======================\n    def format_usage(self):\n        formatter = self._get_formatter()\n        formatter.add_usage(self.usage, self._actions,\n                            self._mutually_exclusive_groups)\n        return formatter.format_help()\n\n    def format_help(self):\n        formatter = self._get_formatter()\n\n        # usage\n        formatter.add_usage(self.usage, self._actions,\n                            self._mutually_exclusive_groups)\n\n        # description\n        formatter.add_text(self.description)\n\n        # positionals, optionals and user-defined groups\n        for action_group in self._action_groups:\n            formatter.start_section(action_group.title)\n            formatter.add_text(action_group.description)\n            formatter.add_arguments(action_group._group_actions)\n            formatter.end_section()\n\n        # epilog\n        formatter.add_text(self.epilog)\n\n        # determine help from format above\n        return formatter.format_help()\n\n    def _get_formatter(self):\n        return self.formatter_class(prog=self.prog)\n\n    # =====================\n    # Help-printing methods\n    # =====================\n    def print_usage(self, file=None):\n        if file is None:\n            file = _sys.stdout\n        self._print_message(self.format_usage(), file)\n\n    def print_help(self, file=None):\n        if file is None:\n            file = _sys.stdout\n        self._print_message(self.format_help(), file)\n\n    def _print_message(self, message, file=None):\n        if message:\n            if file is None:\n                file = _sys.stderr\n            file.write(message)\n\n    # ===============\n    # Exiting methods\n    # ===============\n    def exit(self, status=0, message=None):\n        if message:\n            self._print_message(message, _sys.stderr)\n        _sys.exit(status)\n\n    def error(self, message):\n        \"\"\"error(message: string)\n\n        Prints a usage message incorporating the message to stderr and\n        exits.\n\n        If you override this in a subclass, it should not return -- it\n        should either exit or raise an exception.\n        \"\"\"\n        self.print_usage(_sys.stderr)\n        args = {'prog': self.prog, 'message': message}\n        self.exit(2, _('%(prog)s: error: %(message)s\\n') % args)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/ast.py",
    "content": "\"\"\"\n    ast\n    ~~~\n\n    The `ast` module helps Python applications to process trees of the Python\n    abstract syntax grammar.  The abstract syntax itself might change with\n    each Python release; this module helps to find out programmatically what\n    the current grammar looks like and allows modifications of it.\n\n    An abstract syntax tree can be generated by passing `ast.PyCF_ONLY_AST` as\n    a flag to the `compile()` builtin function or by using the `parse()`\n    function from this module.  The result will be a tree of objects whose\n    classes all inherit from `ast.AST`.\n\n    A modified abstract syntax tree can be compiled into a Python code object\n    using the built-in `compile()` function.\n\n    Additionally various helper functions are provided that make working with\n    the trees simpler.  The main intention of the helper functions and this\n    module in general is to provide an easy to use interface for libraries\n    that work tightly with the python syntax (template engines for example).\n\n\n    :copyright: Copyright 2008 by Armin Ronacher.\n    :license: Python License.\n\"\"\"\nfrom _ast import *\n\n\ndef parse(source, filename='<unknown>', mode='exec', *,\n          type_comments=False, feature_version=None):\n    \"\"\"\n    Parse the source into an AST node.\n    Equivalent to compile(source, filename, mode, PyCF_ONLY_AST).\n    Pass type_comments=True to get back type comments where the syntax allows.\n    \"\"\"\n    flags = PyCF_ONLY_AST\n    if type_comments:\n        flags |= PyCF_TYPE_COMMENTS\n    if isinstance(feature_version, tuple):\n        major, minor = feature_version  # Should be a 2-tuple.\n        assert major == 3\n        feature_version = minor\n    elif feature_version is None:\n        feature_version = -1\n    # Else it should be an int giving the minor version for 3.x.\n    return compile(source, filename, mode, flags,\n                   _feature_version=feature_version)\n\n\ndef literal_eval(node_or_string):\n    \"\"\"\n    Safely evaluate an expression node or a string containing a Python\n    expression.  The string or node provided may only consist of the following\n    Python literal structures: strings, bytes, numbers, tuples, lists, dicts,\n    sets, booleans, and None.\n    \"\"\"\n    if isinstance(node_or_string, str):\n        node_or_string = parse(node_or_string, mode='eval')\n    if isinstance(node_or_string, Expression):\n        node_or_string = node_or_string.body\n    def _raise_malformed_node(node):\n        raise ValueError(f'malformed node or string: {node!r}')\n    def _convert_num(node):\n        if not isinstance(node, Constant) or type(node.value) not in (int, float, complex):\n            _raise_malformed_node(node)\n        return node.value\n    def _convert_signed_num(node):\n        if isinstance(node, UnaryOp) and isinstance(node.op, (UAdd, USub)):\n            operand = _convert_num(node.operand)\n            if isinstance(node.op, UAdd):\n                return + operand\n            else:\n                return - operand\n        return _convert_num(node)\n    def _convert(node):\n        if isinstance(node, Constant):\n            return node.value\n        elif isinstance(node, Tuple):\n            return tuple(map(_convert, node.elts))\n        elif isinstance(node, List):\n            return list(map(_convert, node.elts))\n        elif isinstance(node, Set):\n            return set(map(_convert, node.elts))\n        elif isinstance(node, Dict):\n            if len(node.keys) != len(node.values):\n                _raise_malformed_node(node)\n            return dict(zip(map(_convert, node.keys),\n                            map(_convert, node.values)))\n        elif isinstance(node, BinOp) and isinstance(node.op, (Add, Sub)):\n            left = _convert_signed_num(node.left)\n            right = _convert_num(node.right)\n            if isinstance(left, (int, float)) and isinstance(right, complex):\n                if isinstance(node.op, Add):\n                    return left + right\n                else:\n                    return left - right\n        return _convert_signed_num(node)\n    return _convert(node_or_string)\n\n\ndef dump(node, annotate_fields=True, include_attributes=False):\n    \"\"\"\n    Return a formatted dump of the tree in node.  This is mainly useful for\n    debugging purposes.  If annotate_fields is true (by default),\n    the returned string will show the names and the values for fields.\n    If annotate_fields is false, the result string will be more compact by\n    omitting unambiguous field names.  Attributes such as line\n    numbers and column offsets are not dumped by default.  If this is wanted,\n    include_attributes can be set to true.\n    \"\"\"\n    def _format(node):\n        if isinstance(node, AST):\n            args = []\n            keywords = annotate_fields\n            for field in node._fields:\n                try:\n                    value = getattr(node, field)\n                except AttributeError:\n                    keywords = True\n                else:\n                    if keywords:\n                        args.append('%s=%s' % (field, _format(value)))\n                    else:\n                        args.append(_format(value))\n            if include_attributes and node._attributes:\n                for a in node._attributes:\n                    try:\n                        args.append('%s=%s' % (a, _format(getattr(node, a))))\n                    except AttributeError:\n                        pass\n            return '%s(%s)' % (node.__class__.__name__, ', '.join(args))\n        elif isinstance(node, list):\n            return '[%s]' % ', '.join(_format(x) for x in node)\n        return repr(node)\n    if not isinstance(node, AST):\n        raise TypeError('expected AST, got %r' % node.__class__.__name__)\n    return _format(node)\n\n\ndef copy_location(new_node, old_node):\n    \"\"\"\n    Copy source location (`lineno`, `col_offset`, `end_lineno`, and `end_col_offset`\n    attributes) from *old_node* to *new_node* if possible, and return *new_node*.\n    \"\"\"\n    for attr in 'lineno', 'col_offset', 'end_lineno', 'end_col_offset':\n        if attr in old_node._attributes and attr in new_node._attributes \\\n           and hasattr(old_node, attr):\n            setattr(new_node, attr, getattr(old_node, attr))\n    return new_node\n\n\ndef fix_missing_locations(node):\n    \"\"\"\n    When you compile a node tree with compile(), the compiler expects lineno and\n    col_offset attributes for every node that supports them.  This is rather\n    tedious to fill in for generated nodes, so this helper adds these attributes\n    recursively where not already set, by setting them to the values of the\n    parent node.  It works recursively starting at *node*.\n    \"\"\"\n    def _fix(node, lineno, col_offset, end_lineno, end_col_offset):\n        if 'lineno' in node._attributes:\n            if not hasattr(node, 'lineno'):\n                node.lineno = lineno\n            else:\n                lineno = node.lineno\n        if 'end_lineno' in node._attributes:\n            if not hasattr(node, 'end_lineno'):\n                node.end_lineno = end_lineno\n            else:\n                end_lineno = node.end_lineno\n        if 'col_offset' in node._attributes:\n            if not hasattr(node, 'col_offset'):\n                node.col_offset = col_offset\n            else:\n                col_offset = node.col_offset\n        if 'end_col_offset' in node._attributes:\n            if not hasattr(node, 'end_col_offset'):\n                node.end_col_offset = end_col_offset\n            else:\n                end_col_offset = node.end_col_offset\n        for child in iter_child_nodes(node):\n            _fix(child, lineno, col_offset, end_lineno, end_col_offset)\n    _fix(node, 1, 0, 1, 0)\n    return node\n\n\ndef increment_lineno(node, n=1):\n    \"\"\"\n    Increment the line number and end line number of each node in the tree\n    starting at *node* by *n*. This is useful to \"move code\" to a different\n    location in a file.\n    \"\"\"\n    for child in walk(node):\n        if 'lineno' in child._attributes:\n            child.lineno = getattr(child, 'lineno', 0) + n\n        if 'end_lineno' in child._attributes:\n            child.end_lineno = getattr(child, 'end_lineno', 0) + n\n    return node\n\n\ndef iter_fields(node):\n    \"\"\"\n    Yield a tuple of ``(fieldname, value)`` for each field in ``node._fields``\n    that is present on *node*.\n    \"\"\"\n    for field in node._fields:\n        try:\n            yield field, getattr(node, field)\n        except AttributeError:\n            pass\n\n\ndef iter_child_nodes(node):\n    \"\"\"\n    Yield all direct child nodes of *node*, that is, all fields that are nodes\n    and all items of fields that are lists of nodes.\n    \"\"\"\n    for name, field in iter_fields(node):\n        if isinstance(field, AST):\n            yield field\n        elif isinstance(field, list):\n            for item in field:\n                if isinstance(item, AST):\n                    yield item\n\n\ndef get_docstring(node, clean=True):\n    \"\"\"\n    Return the docstring for the given node or None if no docstring can\n    be found.  If the node provided does not have docstrings a TypeError\n    will be raised.\n\n    If *clean* is `True`, all tabs are expanded to spaces and any whitespace\n    that can be uniformly removed from the second line onwards is removed.\n    \"\"\"\n    if not isinstance(node, (AsyncFunctionDef, FunctionDef, ClassDef, Module)):\n        raise TypeError(\"%r can't have docstrings\" % node.__class__.__name__)\n    if not(node.body and isinstance(node.body[0], Expr)):\n        return None\n    node = node.body[0].value\n    if isinstance(node, Str):\n        text = node.s\n    elif isinstance(node, Constant) and isinstance(node.value, str):\n        text = node.value\n    else:\n        return None\n    if clean:\n        import inspect\n        text = inspect.cleandoc(text)\n    return text\n\n\ndef _splitlines_no_ff(source):\n    \"\"\"Split a string into lines ignoring form feed and other chars.\n\n    This mimics how the Python parser splits source code.\n    \"\"\"\n    idx = 0\n    lines = []\n    next_line = ''\n    while idx < len(source):\n        c = source[idx]\n        next_line += c\n        idx += 1\n        # Keep \\r\\n together\n        if c == '\\r' and idx < len(source) and source[idx] == '\\n':\n            next_line += '\\n'\n            idx += 1\n        if c in '\\r\\n':\n            lines.append(next_line)\n            next_line = ''\n\n    if next_line:\n        lines.append(next_line)\n    return lines\n\n\ndef _pad_whitespace(source):\n    \"\"\"Replace all chars except '\\f\\t' in a line with spaces.\"\"\"\n    result = ''\n    for c in source:\n        if c in '\\f\\t':\n            result += c\n        else:\n            result += ' '\n    return result\n\n\ndef get_source_segment(source, node, *, padded=False):\n    \"\"\"Get source code segment of the *source* that generated *node*.\n\n    If some location information (`lineno`, `end_lineno`, `col_offset`,\n    or `end_col_offset`) is missing, return None.\n\n    If *padded* is `True`, the first line of a multi-line statement will\n    be padded with spaces to match its original position.\n    \"\"\"\n    try:\n        lineno = node.lineno - 1\n        end_lineno = node.end_lineno - 1\n        col_offset = node.col_offset\n        end_col_offset = node.end_col_offset\n    except AttributeError:\n        return None\n\n    lines = _splitlines_no_ff(source)\n    if end_lineno == lineno:\n        return lines[lineno].encode()[col_offset:end_col_offset].decode()\n\n    if padded:\n        padding = _pad_whitespace(lines[lineno].encode()[:col_offset].decode())\n    else:\n        padding = ''\n\n    first = padding + lines[lineno].encode()[col_offset:].decode()\n    last = lines[end_lineno].encode()[:end_col_offset].decode()\n    lines = lines[lineno+1:end_lineno]\n\n    lines.insert(0, first)\n    lines.append(last)\n    return ''.join(lines)\n\n\ndef walk(node):\n    \"\"\"\n    Recursively yield all descendant nodes in the tree starting at *node*\n    (including *node* itself), in no specified order.  This is useful if you\n    only want to modify nodes in place and don't care about the context.\n    \"\"\"\n    from collections import deque\n    todo = deque([node])\n    while todo:\n        node = todo.popleft()\n        todo.extend(iter_child_nodes(node))\n        yield node\n\n\nclass NodeVisitor(object):\n    \"\"\"\n    A node visitor base class that walks the abstract syntax tree and calls a\n    visitor function for every node found.  This function may return a value\n    which is forwarded by the `visit` method.\n\n    This class is meant to be subclassed, with the subclass adding visitor\n    methods.\n\n    Per default the visitor functions for the nodes are ``'visit_'`` +\n    class name of the node.  So a `TryFinally` node visit function would\n    be `visit_TryFinally`.  This behavior can be changed by overriding\n    the `visit` method.  If no visitor function exists for a node\n    (return value `None`) the `generic_visit` visitor is used instead.\n\n    Don't use the `NodeVisitor` if you want to apply changes to nodes during\n    traversing.  For this a special visitor exists (`NodeTransformer`) that\n    allows modifications.\n    \"\"\"\n\n    def visit(self, node):\n        \"\"\"Visit a node.\"\"\"\n        method = 'visit_' + node.__class__.__name__\n        visitor = getattr(self, method, self.generic_visit)\n        return visitor(node)\n\n    def generic_visit(self, node):\n        \"\"\"Called if no explicit visitor function exists for a node.\"\"\"\n        for field, value in iter_fields(node):\n            if isinstance(value, list):\n                for item in value:\n                    if isinstance(item, AST):\n                        self.visit(item)\n            elif isinstance(value, AST):\n                self.visit(value)\n\n    def visit_Constant(self, node):\n        value = node.value\n        type_name = _const_node_type_names.get(type(value))\n        if type_name is None:\n            for cls, name in _const_node_type_names.items():\n                if isinstance(value, cls):\n                    type_name = name\n                    break\n        if type_name is not None:\n            method = 'visit_' + type_name\n            try:\n                visitor = getattr(self, method)\n            except AttributeError:\n                pass\n            else:\n                import warnings\n                warnings.warn(f\"{method} is deprecated; add visit_Constant\",\n                              PendingDeprecationWarning, 2)\n                return visitor(node)\n        return self.generic_visit(node)\n\n\nclass NodeTransformer(NodeVisitor):\n    \"\"\"\n    A :class:`NodeVisitor` subclass that walks the abstract syntax tree and\n    allows modification of nodes.\n\n    The `NodeTransformer` will walk the AST and use the return value of the\n    visitor methods to replace or remove the old node.  If the return value of\n    the visitor method is ``None``, the node will be removed from its location,\n    otherwise it is replaced with the return value.  The return value may be the\n    original node in which case no replacement takes place.\n\n    Here is an example transformer that rewrites all occurrences of name lookups\n    (``foo``) to ``data['foo']``::\n\n       class RewriteName(NodeTransformer):\n\n           def visit_Name(self, node):\n               return Subscript(\n                   value=Name(id='data', ctx=Load()),\n                   slice=Index(value=Str(s=node.id)),\n                   ctx=node.ctx\n               )\n\n    Keep in mind that if the node you're operating on has child nodes you must\n    either transform the child nodes yourself or call the :meth:`generic_visit`\n    method for the node first.\n\n    For nodes that were part of a collection of statements (that applies to all\n    statement nodes), the visitor may also return a list of nodes rather than\n    just a single node.\n\n    Usually you use the transformer like this::\n\n       node = YourTransformer().visit(node)\n    \"\"\"\n\n    def generic_visit(self, node):\n        for field, old_value in iter_fields(node):\n            if isinstance(old_value, list):\n                new_values = []\n                for value in old_value:\n                    if isinstance(value, AST):\n                        value = self.visit(value)\n                        if value is None:\n                            continue\n                        elif not isinstance(value, AST):\n                            new_values.extend(value)\n                            continue\n                    new_values.append(value)\n                old_value[:] = new_values\n            elif isinstance(old_value, AST):\n                new_node = self.visit(old_value)\n                if new_node is None:\n                    delattr(node, field)\n                else:\n                    setattr(node, field, new_node)\n        return node\n\n\n# The following code is for backward compatibility.\n# It will be removed in future.\n\ndef _getter(self):\n    return self.value\n\ndef _setter(self, value):\n    self.value = value\n\nConstant.n = property(_getter, _setter)\nConstant.s = property(_getter, _setter)\n\nclass _ABC(type):\n\n    def __instancecheck__(cls, inst):\n        if not isinstance(inst, Constant):\n            return False\n        if cls in _const_types:\n            try:\n                value = inst.value\n            except AttributeError:\n                return False\n            else:\n                return (\n                    isinstance(value, _const_types[cls]) and\n                    not isinstance(value, _const_types_not.get(cls, ()))\n                )\n        return type.__instancecheck__(cls, inst)\n\ndef _new(cls, *args, **kwargs):\n    for key in kwargs:\n        if key not in cls._fields:\n            # arbitrary keyword arguments are accepted\n            continue\n        pos = cls._fields.index(key)\n        if pos < len(args):\n            raise TypeError(f\"{cls.__name__} got multiple values for argument {key!r}\")\n    if cls in _const_types:\n        return Constant(*args, **kwargs)\n    return Constant.__new__(cls, *args, **kwargs)\n\nclass Num(Constant, metaclass=_ABC):\n    _fields = ('n',)\n    __new__ = _new\n\nclass Str(Constant, metaclass=_ABC):\n    _fields = ('s',)\n    __new__ = _new\n\nclass Bytes(Constant, metaclass=_ABC):\n    _fields = ('s',)\n    __new__ = _new\n\nclass NameConstant(Constant, metaclass=_ABC):\n    __new__ = _new\n\nclass Ellipsis(Constant, metaclass=_ABC):\n    _fields = ()\n\n    def __new__(cls, *args, **kwargs):\n        if cls is Ellipsis:\n            return Constant(..., *args, **kwargs)\n        return Constant.__new__(cls, *args, **kwargs)\n\n_const_types = {\n    Num: (int, float, complex),\n    Str: (str,),\n    Bytes: (bytes,),\n    NameConstant: (type(None), bool),\n    Ellipsis: (type(...),),\n}\n_const_types_not = {\n    Num: (bool,),\n}\n_const_node_type_names = {\n    bool: 'NameConstant',  # should be before int\n    type(None): 'NameConstant',\n    int: 'Num',\n    float: 'Num',\n    complex: 'Num',\n    str: 'Str',\n    bytes: 'Bytes',\n    type(...): 'Ellipsis',\n}\n"
  },
  {
    "path": "rd/usr/lib/python3.8/asynchat.py",
    "content": "# -*- Mode: Python; tab-width: 4 -*-\n#       Id: asynchat.py,v 2.26 2000/09/07 22:29:26 rushing Exp\n#       Author: Sam Rushing <rushing@nightmare.com>\n\n# ======================================================================\n# Copyright 1996 by Sam Rushing\n#\n#                         All Rights Reserved\n#\n# Permission to use, copy, modify, and distribute this software and\n# its documentation for any purpose and without fee is hereby\n# granted, provided that the above copyright notice appear in all\n# copies and that both that copyright notice and this permission\n# notice appear in supporting documentation, and that the name of Sam\n# Rushing not be used in advertising or publicity pertaining to\n# distribution of the software without specific, written prior\n# permission.\n#\n# SAM RUSHING DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN\n# NO EVENT SHALL SAM RUSHING BE LIABLE FOR ANY SPECIAL, INDIRECT OR\n# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\n# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,\n# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN\n# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n# ======================================================================\n\nr\"\"\"A class supporting chat-style (command/response) protocols.\n\nThis class adds support for 'chat' style protocols - where one side\nsends a 'command', and the other sends a response (examples would be\nthe common internet protocols - smtp, nntp, ftp, etc..).\n\nThe handle_read() method looks at the input stream for the current\n'terminator' (usually '\\r\\n' for single-line responses, '\\r\\n.\\r\\n'\nfor multi-line output), calling self.found_terminator() on its\nreceipt.\n\nfor example:\nSay you build an async nntp client using this class.  At the start\nof the connection, you'll have self.terminator set to '\\r\\n', in\norder to process the single-line greeting.  Just before issuing a\n'LIST' command you'll set it to '\\r\\n.\\r\\n'.  The output of the LIST\ncommand will be accumulated (using your own 'collect_incoming_data'\nmethod) up to the terminator, and then control will be returned to\nyou - by calling your self.found_terminator() method.\n\"\"\"\nimport asyncore\nfrom collections import deque\n\n\nclass async_chat(asyncore.dispatcher):\n    \"\"\"This is an abstract class.  You must derive from this class, and add\n    the two methods collect_incoming_data() and found_terminator()\"\"\"\n\n    # these are overridable defaults\n\n    ac_in_buffer_size = 65536\n    ac_out_buffer_size = 65536\n\n    # we don't want to enable the use of encoding by default, because that is a\n    # sign of an application bug that we don't want to pass silently\n\n    use_encoding = 0\n    encoding = 'latin-1'\n\n    def __init__(self, sock=None, map=None):\n        # for string terminator matching\n        self.ac_in_buffer = b''\n\n        # we use a list here rather than io.BytesIO for a few reasons...\n        # del lst[:] is faster than bio.truncate(0)\n        # lst = [] is faster than bio.truncate(0)\n        self.incoming = []\n\n        # we toss the use of the \"simple producer\" and replace it with\n        # a pure deque, which the original fifo was a wrapping of\n        self.producer_fifo = deque()\n        asyncore.dispatcher.__init__(self, sock, map)\n\n    def collect_incoming_data(self, data):\n        raise NotImplementedError(\"must be implemented in subclass\")\n\n    def _collect_incoming_data(self, data):\n        self.incoming.append(data)\n\n    def _get_data(self):\n        d = b''.join(self.incoming)\n        del self.incoming[:]\n        return d\n\n    def found_terminator(self):\n        raise NotImplementedError(\"must be implemented in subclass\")\n\n    def set_terminator(self, term):\n        \"\"\"Set the input delimiter.\n\n        Can be a fixed string of any length, an integer, or None.\n        \"\"\"\n        if isinstance(term, str) and self.use_encoding:\n            term = bytes(term, self.encoding)\n        elif isinstance(term, int) and term < 0:\n            raise ValueError('the number of received bytes must be positive')\n        self.terminator = term\n\n    def get_terminator(self):\n        return self.terminator\n\n    # grab some more data from the socket,\n    # throw it to the collector method,\n    # check for the terminator,\n    # if found, transition to the next state.\n\n    def handle_read(self):\n\n        try:\n            data = self.recv(self.ac_in_buffer_size)\n        except BlockingIOError:\n            return\n        except OSError as why:\n            self.handle_error()\n            return\n\n        if isinstance(data, str) and self.use_encoding:\n            data = bytes(str, self.encoding)\n        self.ac_in_buffer = self.ac_in_buffer + data\n\n        # Continue to search for self.terminator in self.ac_in_buffer,\n        # while calling self.collect_incoming_data.  The while loop\n        # is necessary because we might read several data+terminator\n        # combos with a single recv(4096).\n\n        while self.ac_in_buffer:\n            lb = len(self.ac_in_buffer)\n            terminator = self.get_terminator()\n            if not terminator:\n                # no terminator, collect it all\n                self.collect_incoming_data(self.ac_in_buffer)\n                self.ac_in_buffer = b''\n            elif isinstance(terminator, int):\n                # numeric terminator\n                n = terminator\n                if lb < n:\n                    self.collect_incoming_data(self.ac_in_buffer)\n                    self.ac_in_buffer = b''\n                    self.terminator = self.terminator - lb\n                else:\n                    self.collect_incoming_data(self.ac_in_buffer[:n])\n                    self.ac_in_buffer = self.ac_in_buffer[n:]\n                    self.terminator = 0\n                    self.found_terminator()\n            else:\n                # 3 cases:\n                # 1) end of buffer matches terminator exactly:\n                #    collect data, transition\n                # 2) end of buffer matches some prefix:\n                #    collect data to the prefix\n                # 3) end of buffer does not match any prefix:\n                #    collect data\n                terminator_len = len(terminator)\n                index = self.ac_in_buffer.find(terminator)\n                if index != -1:\n                    # we found the terminator\n                    if index > 0:\n                        # don't bother reporting the empty string\n                        # (source of subtle bugs)\n                        self.collect_incoming_data(self.ac_in_buffer[:index])\n                    self.ac_in_buffer = self.ac_in_buffer[index+terminator_len:]\n                    # This does the Right Thing if the terminator\n                    # is changed here.\n                    self.found_terminator()\n                else:\n                    # check for a prefix of the terminator\n                    index = find_prefix_at_end(self.ac_in_buffer, terminator)\n                    if index:\n                        if index != lb:\n                            # we found a prefix, collect up to the prefix\n                            self.collect_incoming_data(self.ac_in_buffer[:-index])\n                            self.ac_in_buffer = self.ac_in_buffer[-index:]\n                        break\n                    else:\n                        # no prefix, collect it all\n                        self.collect_incoming_data(self.ac_in_buffer)\n                        self.ac_in_buffer = b''\n\n    def handle_write(self):\n        self.initiate_send()\n\n    def handle_close(self):\n        self.close()\n\n    def push(self, data):\n        if not isinstance(data, (bytes, bytearray, memoryview)):\n            raise TypeError('data argument must be byte-ish (%r)',\n                            type(data))\n        sabs = self.ac_out_buffer_size\n        if len(data) > sabs:\n            for i in range(0, len(data), sabs):\n                self.producer_fifo.append(data[i:i+sabs])\n        else:\n            self.producer_fifo.append(data)\n        self.initiate_send()\n\n    def push_with_producer(self, producer):\n        self.producer_fifo.append(producer)\n        self.initiate_send()\n\n    def readable(self):\n        \"predicate for inclusion in the readable for select()\"\n        # cannot use the old predicate, it violates the claim of the\n        # set_terminator method.\n\n        # return (len(self.ac_in_buffer) <= self.ac_in_buffer_size)\n        return 1\n\n    def writable(self):\n        \"predicate for inclusion in the writable for select()\"\n        return self.producer_fifo or (not self.connected)\n\n    def close_when_done(self):\n        \"automatically close this channel once the outgoing queue is empty\"\n        self.producer_fifo.append(None)\n\n    def initiate_send(self):\n        while self.producer_fifo and self.connected:\n            first = self.producer_fifo[0]\n            # handle empty string/buffer or None entry\n            if not first:\n                del self.producer_fifo[0]\n                if first is None:\n                    self.handle_close()\n                    return\n\n            # handle classic producer behavior\n            obs = self.ac_out_buffer_size\n            try:\n                data = first[:obs]\n            except TypeError:\n                data = first.more()\n                if data:\n                    self.producer_fifo.appendleft(data)\n                else:\n                    del self.producer_fifo[0]\n                continue\n\n            if isinstance(data, str) and self.use_encoding:\n                data = bytes(data, self.encoding)\n\n            # send the data\n            try:\n                num_sent = self.send(data)\n            except OSError:\n                self.handle_error()\n                return\n\n            if num_sent:\n                if num_sent < len(data) or obs < len(first):\n                    self.producer_fifo[0] = first[num_sent:]\n                else:\n                    del self.producer_fifo[0]\n            # we tried to send some actual data\n            return\n\n    def discard_buffers(self):\n        # Emergencies only!\n        self.ac_in_buffer = b''\n        del self.incoming[:]\n        self.producer_fifo.clear()\n\n\nclass simple_producer:\n\n    def __init__(self, data, buffer_size=512):\n        self.data = data\n        self.buffer_size = buffer_size\n\n    def more(self):\n        if len(self.data) > self.buffer_size:\n            result = self.data[:self.buffer_size]\n            self.data = self.data[self.buffer_size:]\n            return result\n        else:\n            result = self.data\n            self.data = b''\n            return result\n\n\n# Given 'haystack', see if any prefix of 'needle' is at its end.  This\n# assumes an exact match has already been checked.  Return the number of\n# characters matched.\n# for example:\n# f_p_a_e(\"qwerty\\r\", \"\\r\\n\") => 1\n# f_p_a_e(\"qwertydkjf\", \"\\r\\n\") => 0\n# f_p_a_e(\"qwerty\\r\\n\", \"\\r\\n\") => <undefined>\n\n# this could maybe be made faster with a computed regex?\n# [answer: no; circa Python-2.0, Jan 2001]\n# new python:   28961/s\n# old python:   18307/s\n# re:        12820/s\n# regex:     14035/s\n\ndef find_prefix_at_end(haystack, needle):\n    l = len(needle) - 1\n    while l and not haystack.endswith(needle[:l]):\n        l -= 1\n    return l\n"
  },
  {
    "path": "rd/usr/lib/python3.8/asyncore.py",
    "content": "# -*- Mode: Python -*-\n#   Id: asyncore.py,v 2.51 2000/09/07 22:29:26 rushing Exp\n#   Author: Sam Rushing <rushing@nightmare.com>\n\n# ======================================================================\n# Copyright 1996 by Sam Rushing\n#\n#                         All Rights Reserved\n#\n# Permission to use, copy, modify, and distribute this software and\n# its documentation for any purpose and without fee is hereby\n# granted, provided that the above copyright notice appear in all\n# copies and that both that copyright notice and this permission\n# notice appear in supporting documentation, and that the name of Sam\n# Rushing not be used in advertising or publicity pertaining to\n# distribution of the software without specific, written prior\n# permission.\n#\n# SAM RUSHING DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN\n# NO EVENT SHALL SAM RUSHING BE LIABLE FOR ANY SPECIAL, INDIRECT OR\n# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\n# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,\n# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN\n# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n# ======================================================================\n\n\"\"\"Basic infrastructure for asynchronous socket service clients and servers.\n\nThere are only two ways to have a program on a single processor do \"more\nthan one thing at a time\".  Multi-threaded programming is the simplest and\nmost popular way to do it, but there is another very different technique,\nthat lets you have nearly all the advantages of multi-threading, without\nactually using multiple threads. it's really only practical if your program\nis largely I/O bound. If your program is CPU bound, then pre-emptive\nscheduled threads are probably what you really need. Network servers are\nrarely CPU-bound, however.\n\nIf your operating system supports the select() system call in its I/O\nlibrary (and nearly all do), then you can use it to juggle multiple\ncommunication channels at once; doing other work while your I/O is taking\nplace in the \"background.\"  Although this strategy can seem strange and\ncomplex, especially at first, it is in many ways easier to understand and\ncontrol than multi-threaded programming. The module documented here solves\nmany of the difficult problems for you, making the task of building\nsophisticated high-performance network servers and clients a snap.\n\"\"\"\n\nimport select\nimport socket\nimport sys\nimport time\nimport warnings\n\nimport os\nfrom errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, EINVAL, \\\n     ENOTCONN, ESHUTDOWN, EISCONN, EBADF, ECONNABORTED, EPIPE, EAGAIN, \\\n     errorcode\n\n_DISCONNECTED = frozenset({ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED, EPIPE,\n                           EBADF})\n\ntry:\n    socket_map\nexcept NameError:\n    socket_map = {}\n\ndef _strerror(err):\n    try:\n        return os.strerror(err)\n    except (ValueError, OverflowError, NameError):\n        if err in errorcode:\n            return errorcode[err]\n        return \"Unknown error %s\" %err\n\nclass ExitNow(Exception):\n    pass\n\n_reraised_exceptions = (ExitNow, KeyboardInterrupt, SystemExit)\n\ndef read(obj):\n    try:\n        obj.handle_read_event()\n    except _reraised_exceptions:\n        raise\n    except:\n        obj.handle_error()\n\ndef write(obj):\n    try:\n        obj.handle_write_event()\n    except _reraised_exceptions:\n        raise\n    except:\n        obj.handle_error()\n\ndef _exception(obj):\n    try:\n        obj.handle_expt_event()\n    except _reraised_exceptions:\n        raise\n    except:\n        obj.handle_error()\n\ndef readwrite(obj, flags):\n    try:\n        if flags & select.POLLIN:\n            obj.handle_read_event()\n        if flags & select.POLLOUT:\n            obj.handle_write_event()\n        if flags & select.POLLPRI:\n            obj.handle_expt_event()\n        if flags & (select.POLLHUP | select.POLLERR | select.POLLNVAL):\n            obj.handle_close()\n    except OSError as e:\n        if e.args[0] not in _DISCONNECTED:\n            obj.handle_error()\n        else:\n            obj.handle_close()\n    except _reraised_exceptions:\n        raise\n    except:\n        obj.handle_error()\n\ndef poll(timeout=0.0, map=None):\n    if map is None:\n        map = socket_map\n    if map:\n        r = []; w = []; e = []\n        for fd, obj in list(map.items()):\n            is_r = obj.readable()\n            is_w = obj.writable()\n            if is_r:\n                r.append(fd)\n            # accepting sockets should not be writable\n            if is_w and not obj.accepting:\n                w.append(fd)\n            if is_r or is_w:\n                e.append(fd)\n        if [] == r == w == e:\n            time.sleep(timeout)\n            return\n\n        r, w, e = select.select(r, w, e, timeout)\n\n        for fd in r:\n            obj = map.get(fd)\n            if obj is None:\n                continue\n            read(obj)\n\n        for fd in w:\n            obj = map.get(fd)\n            if obj is None:\n                continue\n            write(obj)\n\n        for fd in e:\n            obj = map.get(fd)\n            if obj is None:\n                continue\n            _exception(obj)\n\ndef poll2(timeout=0.0, map=None):\n    # Use the poll() support added to the select module in Python 2.0\n    if map is None:\n        map = socket_map\n    if timeout is not None:\n        # timeout is in milliseconds\n        timeout = int(timeout*1000)\n    pollster = select.poll()\n    if map:\n        for fd, obj in list(map.items()):\n            flags = 0\n            if obj.readable():\n                flags |= select.POLLIN | select.POLLPRI\n            # accepting sockets should not be writable\n            if obj.writable() and not obj.accepting:\n                flags |= select.POLLOUT\n            if flags:\n                pollster.register(fd, flags)\n\n        r = pollster.poll(timeout)\n        for fd, flags in r:\n            obj = map.get(fd)\n            if obj is None:\n                continue\n            readwrite(obj, flags)\n\npoll3 = poll2                           # Alias for backward compatibility\n\ndef loop(timeout=30.0, use_poll=False, map=None, count=None):\n    if map is None:\n        map = socket_map\n\n    if use_poll and hasattr(select, 'poll'):\n        poll_fun = poll2\n    else:\n        poll_fun = poll\n\n    if count is None:\n        while map:\n            poll_fun(timeout, map)\n\n    else:\n        while map and count > 0:\n            poll_fun(timeout, map)\n            count = count - 1\n\nclass dispatcher:\n\n    debug = False\n    connected = False\n    accepting = False\n    connecting = False\n    closing = False\n    addr = None\n    ignore_log_types = frozenset({'warning'})\n\n    def __init__(self, sock=None, map=None):\n        if map is None:\n            self._map = socket_map\n        else:\n            self._map = map\n\n        self._fileno = None\n\n        if sock:\n            # Set to nonblocking just to make sure for cases where we\n            # get a socket from a blocking source.\n            sock.setblocking(0)\n            self.set_socket(sock, map)\n            self.connected = True\n            # The constructor no longer requires that the socket\n            # passed be connected.\n            try:\n                self.addr = sock.getpeername()\n            except OSError as err:\n                if err.args[0] in (ENOTCONN, EINVAL):\n                    # To handle the case where we got an unconnected\n                    # socket.\n                    self.connected = False\n                else:\n                    # The socket is broken in some unknown way, alert\n                    # the user and remove it from the map (to prevent\n                    # polling of broken sockets).\n                    self.del_channel(map)\n                    raise\n        else:\n            self.socket = None\n\n    def __repr__(self):\n        status = [self.__class__.__module__+\".\"+self.__class__.__qualname__]\n        if self.accepting and self.addr:\n            status.append('listening')\n        elif self.connected:\n            status.append('connected')\n        if self.addr is not None:\n            try:\n                status.append('%s:%d' % self.addr)\n            except TypeError:\n                status.append(repr(self.addr))\n        return '<%s at %#x>' % (' '.join(status), id(self))\n\n    def add_channel(self, map=None):\n        #self.log_info('adding channel %s' % self)\n        if map is None:\n            map = self._map\n        map[self._fileno] = self\n\n    def del_channel(self, map=None):\n        fd = self._fileno\n        if map is None:\n            map = self._map\n        if fd in map:\n            #self.log_info('closing channel %d:%s' % (fd, self))\n            del map[fd]\n        self._fileno = None\n\n    def create_socket(self, family=socket.AF_INET, type=socket.SOCK_STREAM):\n        self.family_and_type = family, type\n        sock = socket.socket(family, type)\n        sock.setblocking(0)\n        self.set_socket(sock)\n\n    def set_socket(self, sock, map=None):\n        self.socket = sock\n        self._fileno = sock.fileno()\n        self.add_channel(map)\n\n    def set_reuse_addr(self):\n        # try to re-use a server port if possible\n        try:\n            self.socket.setsockopt(\n                socket.SOL_SOCKET, socket.SO_REUSEADDR,\n                self.socket.getsockopt(socket.SOL_SOCKET,\n                                       socket.SO_REUSEADDR) | 1\n                )\n        except OSError:\n            pass\n\n    # ==================================================\n    # predicates for select()\n    # these are used as filters for the lists of sockets\n    # to pass to select().\n    # ==================================================\n\n    def readable(self):\n        return True\n\n    def writable(self):\n        return True\n\n    # ==================================================\n    # socket object methods.\n    # ==================================================\n\n    def listen(self, num):\n        self.accepting = True\n        if os.name == 'nt' and num > 5:\n            num = 5\n        return self.socket.listen(num)\n\n    def bind(self, addr):\n        self.addr = addr\n        return self.socket.bind(addr)\n\n    def connect(self, address):\n        self.connected = False\n        self.connecting = True\n        err = self.socket.connect_ex(address)\n        if err in (EINPROGRESS, EALREADY, EWOULDBLOCK) \\\n        or err == EINVAL and os.name == 'nt':\n            self.addr = address\n            return\n        if err in (0, EISCONN):\n            self.addr = address\n            self.handle_connect_event()\n        else:\n            raise OSError(err, errorcode[err])\n\n    def accept(self):\n        # XXX can return either an address pair or None\n        try:\n            conn, addr = self.socket.accept()\n        except TypeError:\n            return None\n        except OSError as why:\n            if why.args[0] in (EWOULDBLOCK, ECONNABORTED, EAGAIN):\n                return None\n            else:\n                raise\n        else:\n            return conn, addr\n\n    def send(self, data):\n        try:\n            result = self.socket.send(data)\n            return result\n        except OSError as why:\n            if why.args[0] == EWOULDBLOCK:\n                return 0\n            elif why.args[0] in _DISCONNECTED:\n                self.handle_close()\n                return 0\n            else:\n                raise\n\n    def recv(self, buffer_size):\n        try:\n            data = self.socket.recv(buffer_size)\n            if not data:\n                # a closed connection is indicated by signaling\n                # a read condition, and having recv() return 0.\n                self.handle_close()\n                return b''\n            else:\n                return data\n        except OSError as why:\n            # winsock sometimes raises ENOTCONN\n            if why.args[0] in _DISCONNECTED:\n                self.handle_close()\n                return b''\n            else:\n                raise\n\n    def close(self):\n        self.connected = False\n        self.accepting = False\n        self.connecting = False\n        self.del_channel()\n        if self.socket is not None:\n            try:\n                self.socket.close()\n            except OSError as why:\n                if why.args[0] not in (ENOTCONN, EBADF):\n                    raise\n\n    # log and log_info may be overridden to provide more sophisticated\n    # logging and warning methods. In general, log is for 'hit' logging\n    # and 'log_info' is for informational, warning and error logging.\n\n    def log(self, message):\n        sys.stderr.write('log: %s\\n' % str(message))\n\n    def log_info(self, message, type='info'):\n        if type not in self.ignore_log_types:\n            print('%s: %s' % (type, message))\n\n    def handle_read_event(self):\n        if self.accepting:\n            # accepting sockets are never connected, they \"spawn\" new\n            # sockets that are connected\n            self.handle_accept()\n        elif not self.connected:\n            if self.connecting:\n                self.handle_connect_event()\n            self.handle_read()\n        else:\n            self.handle_read()\n\n    def handle_connect_event(self):\n        err = self.socket.getsockopt(socket.SOL_SOCKET, socket.SO_ERROR)\n        if err != 0:\n            raise OSError(err, _strerror(err))\n        self.handle_connect()\n        self.connected = True\n        self.connecting = False\n\n    def handle_write_event(self):\n        if self.accepting:\n            # Accepting sockets shouldn't get a write event.\n            # We will pretend it didn't happen.\n            return\n\n        if not self.connected:\n            if self.connecting:\n                self.handle_connect_event()\n        self.handle_write()\n\n    def handle_expt_event(self):\n        # handle_expt_event() is called if there might be an error on the\n        # socket, or if there is OOB data\n        # check for the error condition first\n        err = self.socket.getsockopt(socket.SOL_SOCKET, socket.SO_ERROR)\n        if err != 0:\n            # we can get here when select.select() says that there is an\n            # exceptional condition on the socket\n            # since there is an error, we'll go ahead and close the socket\n            # like we would in a subclassed handle_read() that received no\n            # data\n            self.handle_close()\n        else:\n            self.handle_expt()\n\n    def handle_error(self):\n        nil, t, v, tbinfo = compact_traceback()\n\n        # sometimes a user repr method will crash.\n        try:\n            self_repr = repr(self)\n        except:\n            self_repr = '<__repr__(self) failed for object at %0x>' % id(self)\n\n        self.log_info(\n            'uncaptured python exception, closing channel %s (%s:%s %s)' % (\n                self_repr,\n                t,\n                v,\n                tbinfo\n                ),\n            'error'\n            )\n        self.handle_close()\n\n    def handle_expt(self):\n        self.log_info('unhandled incoming priority event', 'warning')\n\n    def handle_read(self):\n        self.log_info('unhandled read event', 'warning')\n\n    def handle_write(self):\n        self.log_info('unhandled write event', 'warning')\n\n    def handle_connect(self):\n        self.log_info('unhandled connect event', 'warning')\n\n    def handle_accept(self):\n        pair = self.accept()\n        if pair is not None:\n            self.handle_accepted(*pair)\n\n    def handle_accepted(self, sock, addr):\n        sock.close()\n        self.log_info('unhandled accepted event', 'warning')\n\n    def handle_close(self):\n        self.log_info('unhandled close event', 'warning')\n        self.close()\n\n# ---------------------------------------------------------------------------\n# adds simple buffered output capability, useful for simple clients.\n# [for more sophisticated usage use asynchat.async_chat]\n# ---------------------------------------------------------------------------\n\nclass dispatcher_with_send(dispatcher):\n\n    def __init__(self, sock=None, map=None):\n        dispatcher.__init__(self, sock, map)\n        self.out_buffer = b''\n\n    def initiate_send(self):\n        num_sent = 0\n        num_sent = dispatcher.send(self, self.out_buffer[:65536])\n        self.out_buffer = self.out_buffer[num_sent:]\n\n    def handle_write(self):\n        self.initiate_send()\n\n    def writable(self):\n        return (not self.connected) or len(self.out_buffer)\n\n    def send(self, data):\n        if self.debug:\n            self.log_info('sending %s' % repr(data))\n        self.out_buffer = self.out_buffer + data\n        self.initiate_send()\n\n# ---------------------------------------------------------------------------\n# used for debugging.\n# ---------------------------------------------------------------------------\n\ndef compact_traceback():\n    t, v, tb = sys.exc_info()\n    tbinfo = []\n    if not tb: # Must have a traceback\n        raise AssertionError(\"traceback does not exist\")\n    while tb:\n        tbinfo.append((\n            tb.tb_frame.f_code.co_filename,\n            tb.tb_frame.f_code.co_name,\n            str(tb.tb_lineno)\n            ))\n        tb = tb.tb_next\n\n    # just to be safe\n    del tb\n\n    file, function, line = tbinfo[-1]\n    info = ' '.join(['[%s|%s|%s]' % x for x in tbinfo])\n    return (file, function, line), t, v, info\n\ndef close_all(map=None, ignore_all=False):\n    if map is None:\n        map = socket_map\n    for x in list(map.values()):\n        try:\n            x.close()\n        except OSError as x:\n            if x.args[0] == EBADF:\n                pass\n            elif not ignore_all:\n                raise\n        except _reraised_exceptions:\n            raise\n        except:\n            if not ignore_all:\n                raise\n    map.clear()\n\n# Asynchronous File I/O:\n#\n# After a little research (reading man pages on various unixen, and\n# digging through the linux kernel), I've determined that select()\n# isn't meant for doing asynchronous file i/o.\n# Heartening, though - reading linux/mm/filemap.c shows that linux\n# supports asynchronous read-ahead.  So _MOST_ of the time, the data\n# will be sitting in memory for us already when we go to read it.\n#\n# What other OS's (besides NT) support async file i/o?  [VMS?]\n#\n# Regardless, this is useful for pipes, and stdin/stdout...\n\nif os.name == 'posix':\n    class file_wrapper:\n        # Here we override just enough to make a file\n        # look like a socket for the purposes of asyncore.\n        # The passed fd is automatically os.dup()'d\n\n        def __init__(self, fd):\n            self.fd = os.dup(fd)\n\n        def __del__(self):\n            if self.fd >= 0:\n                warnings.warn(\"unclosed file %r\" % self, ResourceWarning,\n                              source=self)\n            self.close()\n\n        def recv(self, *args):\n            return os.read(self.fd, *args)\n\n        def send(self, *args):\n            return os.write(self.fd, *args)\n\n        def getsockopt(self, level, optname, buflen=None):\n            if (level == socket.SOL_SOCKET and\n                optname == socket.SO_ERROR and\n                not buflen):\n                return 0\n            raise NotImplementedError(\"Only asyncore specific behaviour \"\n                                      \"implemented.\")\n\n        read = recv\n        write = send\n\n        def close(self):\n            if self.fd < 0:\n                return\n            fd = self.fd\n            self.fd = -1\n            os.close(fd)\n\n        def fileno(self):\n            return self.fd\n\n    class file_dispatcher(dispatcher):\n\n        def __init__(self, fd, map=None):\n            dispatcher.__init__(self, None, map)\n            self.connected = True\n            try:\n                fd = fd.fileno()\n            except AttributeError:\n                pass\n            self.set_file(fd)\n            # set it to non-blocking mode\n            os.set_blocking(fd, False)\n\n        def set_file(self, fd):\n            self.socket = file_wrapper(fd)\n            self._fileno = self.socket.fileno()\n            self.add_channel()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/base64.py",
    "content": "#! /usr/bin/env python3\n\n\"\"\"Base16, Base32, Base64 (RFC 3548), Base85 and Ascii85 data encodings\"\"\"\n\n# Modified 04-Oct-1995 by Jack Jansen to use binascii module\n# Modified 30-Dec-2003 by Barry Warsaw to add full RFC 3548 support\n# Modified 22-May-2007 by Guido van Rossum to use bytes everywhere\n\nimport re\nimport struct\nimport binascii\n\n\n__all__ = [\n    # Legacy interface exports traditional RFC 2045 Base64 encodings\n    'encode', 'decode', 'encodebytes', 'decodebytes',\n    # Generalized interface for other encodings\n    'b64encode', 'b64decode', 'b32encode', 'b32decode',\n    'b16encode', 'b16decode',\n    # Base85 and Ascii85 encodings\n    'b85encode', 'b85decode', 'a85encode', 'a85decode',\n    # Standard Base64 encoding\n    'standard_b64encode', 'standard_b64decode',\n    # Some common Base64 alternatives.  As referenced by RFC 3458, see thread\n    # starting at:\n    #\n    # http://zgp.org/pipermail/p2p-hackers/2001-September/000316.html\n    'urlsafe_b64encode', 'urlsafe_b64decode',\n    ]\n\n\nbytes_types = (bytes, bytearray)  # Types acceptable as binary data\n\ndef _bytes_from_decode_data(s):\n    if isinstance(s, str):\n        try:\n            return s.encode('ascii')\n        except UnicodeEncodeError:\n            raise ValueError('string argument should contain only ASCII characters')\n    if isinstance(s, bytes_types):\n        return s\n    try:\n        return memoryview(s).tobytes()\n    except TypeError:\n        raise TypeError(\"argument should be a bytes-like object or ASCII \"\n                        \"string, not %r\" % s.__class__.__name__) from None\n\n\n# Base64 encoding/decoding uses binascii\n\ndef b64encode(s, altchars=None):\n    \"\"\"Encode the bytes-like object s using Base64 and return a bytes object.\n\n    Optional altchars should be a byte string of length 2 which specifies an\n    alternative alphabet for the '+' and '/' characters.  This allows an\n    application to e.g. generate url or filesystem safe Base64 strings.\n    \"\"\"\n    encoded = binascii.b2a_base64(s, newline=False)\n    if altchars is not None:\n        assert len(altchars) == 2, repr(altchars)\n        return encoded.translate(bytes.maketrans(b'+/', altchars))\n    return encoded\n\n\ndef b64decode(s, altchars=None, validate=False):\n    \"\"\"Decode the Base64 encoded bytes-like object or ASCII string s.\n\n    Optional altchars must be a bytes-like object or ASCII string of length 2\n    which specifies the alternative alphabet used instead of the '+' and '/'\n    characters.\n\n    The result is returned as a bytes object.  A binascii.Error is raised if\n    s is incorrectly padded.\n\n    If validate is False (the default), characters that are neither in the\n    normal base-64 alphabet nor the alternative alphabet are discarded prior\n    to the padding check.  If validate is True, these non-alphabet characters\n    in the input result in a binascii.Error.\n    \"\"\"\n    s = _bytes_from_decode_data(s)\n    if altchars is not None:\n        altchars = _bytes_from_decode_data(altchars)\n        assert len(altchars) == 2, repr(altchars)\n        s = s.translate(bytes.maketrans(altchars, b'+/'))\n    if validate and not re.fullmatch(b'[A-Za-z0-9+/]*={0,2}', s):\n        raise binascii.Error('Non-base64 digit found')\n    return binascii.a2b_base64(s)\n\n\ndef standard_b64encode(s):\n    \"\"\"Encode bytes-like object s using the standard Base64 alphabet.\n\n    The result is returned as a bytes object.\n    \"\"\"\n    return b64encode(s)\n\ndef standard_b64decode(s):\n    \"\"\"Decode bytes encoded with the standard Base64 alphabet.\n\n    Argument s is a bytes-like object or ASCII string to decode.  The result\n    is returned as a bytes object.  A binascii.Error is raised if the input\n    is incorrectly padded.  Characters that are not in the standard alphabet\n    are discarded prior to the padding check.\n    \"\"\"\n    return b64decode(s)\n\n\n_urlsafe_encode_translation = bytes.maketrans(b'+/', b'-_')\n_urlsafe_decode_translation = bytes.maketrans(b'-_', b'+/')\n\ndef urlsafe_b64encode(s):\n    \"\"\"Encode bytes using the URL- and filesystem-safe Base64 alphabet.\n\n    Argument s is a bytes-like object to encode.  The result is returned as a\n    bytes object.  The alphabet uses '-' instead of '+' and '_' instead of\n    '/'.\n    \"\"\"\n    return b64encode(s).translate(_urlsafe_encode_translation)\n\ndef urlsafe_b64decode(s):\n    \"\"\"Decode bytes using the URL- and filesystem-safe Base64 alphabet.\n\n    Argument s is a bytes-like object or ASCII string to decode.  The result\n    is returned as a bytes object.  A binascii.Error is raised if the input\n    is incorrectly padded.  Characters that are not in the URL-safe base-64\n    alphabet, and are not a plus '+' or slash '/', are discarded prior to the\n    padding check.\n\n    The alphabet uses '-' instead of '+' and '_' instead of '/'.\n    \"\"\"\n    s = _bytes_from_decode_data(s)\n    s = s.translate(_urlsafe_decode_translation)\n    return b64decode(s)\n\n\n\n# Base32 encoding/decoding must be done in Python\n_b32alphabet = b'ABCDEFGHIJKLMNOPQRSTUVWXYZ234567'\n_b32tab2 = None\n_b32rev = None\n\ndef b32encode(s):\n    \"\"\"Encode the bytes-like object s using Base32 and return a bytes object.\n    \"\"\"\n    global _b32tab2\n    # Delay the initialization of the table to not waste memory\n    # if the function is never called\n    if _b32tab2 is None:\n        b32tab = [bytes((i,)) for i in _b32alphabet]\n        _b32tab2 = [a + b for a in b32tab for b in b32tab]\n        b32tab = None\n\n    if not isinstance(s, bytes_types):\n        s = memoryview(s).tobytes()\n    leftover = len(s) % 5\n    # Pad the last quantum with zero bits if necessary\n    if leftover:\n        s = s + b'\\0' * (5 - leftover)  # Don't use += !\n    encoded = bytearray()\n    from_bytes = int.from_bytes\n    b32tab2 = _b32tab2\n    for i in range(0, len(s), 5):\n        c = from_bytes(s[i: i + 5], 'big')\n        encoded += (b32tab2[c >> 30] +           # bits 1 - 10\n                    b32tab2[(c >> 20) & 0x3ff] + # bits 11 - 20\n                    b32tab2[(c >> 10) & 0x3ff] + # bits 21 - 30\n                    b32tab2[c & 0x3ff]           # bits 31 - 40\n                   )\n    # Adjust for any leftover partial quanta\n    if leftover == 1:\n        encoded[-6:] = b'======'\n    elif leftover == 2:\n        encoded[-4:] = b'===='\n    elif leftover == 3:\n        encoded[-3:] = b'==='\n    elif leftover == 4:\n        encoded[-1:] = b'='\n    return bytes(encoded)\n\ndef b32decode(s, casefold=False, map01=None):\n    \"\"\"Decode the Base32 encoded bytes-like object or ASCII string s.\n\n    Optional casefold is a flag specifying whether a lowercase alphabet is\n    acceptable as input.  For security purposes, the default is False.\n\n    RFC 3548 allows for optional mapping of the digit 0 (zero) to the\n    letter O (oh), and for optional mapping of the digit 1 (one) to\n    either the letter I (eye) or letter L (el).  The optional argument\n    map01 when not None, specifies which letter the digit 1 should be\n    mapped to (when map01 is not None, the digit 0 is always mapped to\n    the letter O).  For security purposes the default is None, so that\n    0 and 1 are not allowed in the input.\n\n    The result is returned as a bytes object.  A binascii.Error is raised if\n    the input is incorrectly padded or if there are non-alphabet\n    characters present in the input.\n    \"\"\"\n    global _b32rev\n    # Delay the initialization of the table to not waste memory\n    # if the function is never called\n    if _b32rev is None:\n        _b32rev = {v: k for k, v in enumerate(_b32alphabet)}\n    s = _bytes_from_decode_data(s)\n    if len(s) % 8:\n        raise binascii.Error('Incorrect padding')\n    # Handle section 2.4 zero and one mapping.  The flag map01 will be either\n    # False, or the character to map the digit 1 (one) to.  It should be\n    # either L (el) or I (eye).\n    if map01 is not None:\n        map01 = _bytes_from_decode_data(map01)\n        assert len(map01) == 1, repr(map01)\n        s = s.translate(bytes.maketrans(b'01', b'O' + map01))\n    if casefold:\n        s = s.upper()\n    # Strip off pad characters from the right.  We need to count the pad\n    # characters because this will tell us how many null bytes to remove from\n    # the end of the decoded string.\n    l = len(s)\n    s = s.rstrip(b'=')\n    padchars = l - len(s)\n    # Now decode the full quanta\n    decoded = bytearray()\n    b32rev = _b32rev\n    for i in range(0, len(s), 8):\n        quanta = s[i: i + 8]\n        acc = 0\n        try:\n            for c in quanta:\n                acc = (acc << 5) + b32rev[c]\n        except KeyError:\n            raise binascii.Error('Non-base32 digit found') from None\n        decoded += acc.to_bytes(5, 'big')\n    # Process the last, partial quanta\n    if l % 8 or padchars not in {0, 1, 3, 4, 6}:\n        raise binascii.Error('Incorrect padding')\n    if padchars and decoded:\n        acc <<= 5 * padchars\n        last = acc.to_bytes(5, 'big')\n        leftover = (43 - 5 * padchars) // 8  # 1: 4, 3: 3, 4: 2, 6: 1\n        decoded[-5:] = last[:leftover]\n    return bytes(decoded)\n\n\n# RFC 3548, Base 16 Alphabet specifies uppercase, but hexlify() returns\n# lowercase.  The RFC also recommends against accepting input case\n# insensitively.\ndef b16encode(s):\n    \"\"\"Encode the bytes-like object s using Base16 and return a bytes object.\n    \"\"\"\n    return binascii.hexlify(s).upper()\n\n\ndef b16decode(s, casefold=False):\n    \"\"\"Decode the Base16 encoded bytes-like object or ASCII string s.\n\n    Optional casefold is a flag specifying whether a lowercase alphabet is\n    acceptable as input.  For security purposes, the default is False.\n\n    The result is returned as a bytes object.  A binascii.Error is raised if\n    s is incorrectly padded or if there are non-alphabet characters present\n    in the input.\n    \"\"\"\n    s = _bytes_from_decode_data(s)\n    if casefold:\n        s = s.upper()\n    if re.search(b'[^0-9A-F]', s):\n        raise binascii.Error('Non-base16 digit found')\n    return binascii.unhexlify(s)\n\n#\n# Ascii85 encoding/decoding\n#\n\n_a85chars = None\n_a85chars2 = None\n_A85START = b\"<~\"\n_A85END = b\"~>\"\n\ndef _85encode(b, chars, chars2, pad=False, foldnuls=False, foldspaces=False):\n    # Helper function for a85encode and b85encode\n    if not isinstance(b, bytes_types):\n        b = memoryview(b).tobytes()\n\n    padding = (-len(b)) % 4\n    if padding:\n        b = b + b'\\0' * padding\n    words = struct.Struct('!%dI' % (len(b) // 4)).unpack(b)\n\n    chunks = [b'z' if foldnuls and not word else\n              b'y' if foldspaces and word == 0x20202020 else\n              (chars2[word // 614125] +\n               chars2[word // 85 % 7225] +\n               chars[word % 85])\n              for word in words]\n\n    if padding and not pad:\n        if chunks[-1] == b'z':\n            chunks[-1] = chars[0] * 5\n        chunks[-1] = chunks[-1][:-padding]\n\n    return b''.join(chunks)\n\ndef a85encode(b, *, foldspaces=False, wrapcol=0, pad=False, adobe=False):\n    \"\"\"Encode bytes-like object b using Ascii85 and return a bytes object.\n\n    foldspaces is an optional flag that uses the special short sequence 'y'\n    instead of 4 consecutive spaces (ASCII 0x20) as supported by 'btoa'. This\n    feature is not supported by the \"standard\" Adobe encoding.\n\n    wrapcol controls whether the output should have newline (b'\\\\n') characters\n    added to it. If this is non-zero, each output line will be at most this\n    many characters long.\n\n    pad controls whether the input is padded to a multiple of 4 before\n    encoding. Note that the btoa implementation always pads.\n\n    adobe controls whether the encoded byte sequence is framed with <~ and ~>,\n    which is used by the Adobe implementation.\n    \"\"\"\n    global _a85chars, _a85chars2\n    # Delay the initialization of tables to not waste memory\n    # if the function is never called\n    if _a85chars is None:\n        _a85chars = [bytes((i,)) for i in range(33, 118)]\n        _a85chars2 = [(a + b) for a in _a85chars for b in _a85chars]\n\n    result = _85encode(b, _a85chars, _a85chars2, pad, True, foldspaces)\n\n    if adobe:\n        result = _A85START + result\n    if wrapcol:\n        wrapcol = max(2 if adobe else 1, wrapcol)\n        chunks = [result[i: i + wrapcol]\n                  for i in range(0, len(result), wrapcol)]\n        if adobe:\n            if len(chunks[-1]) + 2 > wrapcol:\n                chunks.append(b'')\n        result = b'\\n'.join(chunks)\n    if adobe:\n        result += _A85END\n\n    return result\n\ndef a85decode(b, *, foldspaces=False, adobe=False, ignorechars=b' \\t\\n\\r\\v'):\n    \"\"\"Decode the Ascii85 encoded bytes-like object or ASCII string b.\n\n    foldspaces is a flag that specifies whether the 'y' short sequence should be\n    accepted as shorthand for 4 consecutive spaces (ASCII 0x20). This feature is\n    not supported by the \"standard\" Adobe encoding.\n\n    adobe controls whether the input sequence is in Adobe Ascii85 format (i.e.\n    is framed with <~ and ~>).\n\n    ignorechars should be a byte string containing characters to ignore from the\n    input. This should only contain whitespace characters, and by default\n    contains all whitespace characters in ASCII.\n\n    The result is returned as a bytes object.\n    \"\"\"\n    b = _bytes_from_decode_data(b)\n    if adobe:\n        if not b.endswith(_A85END):\n            raise ValueError(\n                \"Ascii85 encoded byte sequences must end \"\n                \"with {!r}\".format(_A85END)\n                )\n        if b.startswith(_A85START):\n            b = b[2:-2]  # Strip off start/end markers\n        else:\n            b = b[:-2]\n    #\n    # We have to go through this stepwise, so as to ignore spaces and handle\n    # special short sequences\n    #\n    packI = struct.Struct('!I').pack\n    decoded = []\n    decoded_append = decoded.append\n    curr = []\n    curr_append = curr.append\n    curr_clear = curr.clear\n    for x in b + b'u' * 4:\n        if b'!'[0] <= x <= b'u'[0]:\n            curr_append(x)\n            if len(curr) == 5:\n                acc = 0\n                for x in curr:\n                    acc = 85 * acc + (x - 33)\n                try:\n                    decoded_append(packI(acc))\n                except struct.error:\n                    raise ValueError('Ascii85 overflow') from None\n                curr_clear()\n        elif x == b'z'[0]:\n            if curr:\n                raise ValueError('z inside Ascii85 5-tuple')\n            decoded_append(b'\\0\\0\\0\\0')\n        elif foldspaces and x == b'y'[0]:\n            if curr:\n                raise ValueError('y inside Ascii85 5-tuple')\n            decoded_append(b'\\x20\\x20\\x20\\x20')\n        elif x in ignorechars:\n            # Skip whitespace\n            continue\n        else:\n            raise ValueError('Non-Ascii85 digit found: %c' % x)\n\n    result = b''.join(decoded)\n    padding = 4 - len(curr)\n    if padding:\n        # Throw away the extra padding\n        result = result[:-padding]\n    return result\n\n# The following code is originally taken (with permission) from Mercurial\n\n_b85alphabet = (b\"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ\"\n                b\"abcdefghijklmnopqrstuvwxyz!#$%&()*+-;<=>?@^_`{|}~\")\n_b85chars = None\n_b85chars2 = None\n_b85dec = None\n\ndef b85encode(b, pad=False):\n    \"\"\"Encode bytes-like object b in base85 format and return a bytes object.\n\n    If pad is true, the input is padded with b'\\\\0' so its length is a multiple of\n    4 bytes before encoding.\n    \"\"\"\n    global _b85chars, _b85chars2\n    # Delay the initialization of tables to not waste memory\n    # if the function is never called\n    if _b85chars is None:\n        _b85chars = [bytes((i,)) for i in _b85alphabet]\n        _b85chars2 = [(a + b) for a in _b85chars for b in _b85chars]\n    return _85encode(b, _b85chars, _b85chars2, pad)\n\ndef b85decode(b):\n    \"\"\"Decode the base85-encoded bytes-like object or ASCII string b\n\n    The result is returned as a bytes object.\n    \"\"\"\n    global _b85dec\n    # Delay the initialization of tables to not waste memory\n    # if the function is never called\n    if _b85dec is None:\n        _b85dec = [None] * 256\n        for i, c in enumerate(_b85alphabet):\n            _b85dec[c] = i\n\n    b = _bytes_from_decode_data(b)\n    padding = (-len(b)) % 5\n    b = b + b'~' * padding\n    out = []\n    packI = struct.Struct('!I').pack\n    for i in range(0, len(b), 5):\n        chunk = b[i:i + 5]\n        acc = 0\n        try:\n            for c in chunk:\n                acc = acc * 85 + _b85dec[c]\n        except TypeError:\n            for j, c in enumerate(chunk):\n                if _b85dec[c] is None:\n                    raise ValueError('bad base85 character at position %d'\n                                    % (i + j)) from None\n            raise\n        try:\n            out.append(packI(acc))\n        except struct.error:\n            raise ValueError('base85 overflow in hunk starting at byte %d'\n                             % i) from None\n\n    result = b''.join(out)\n    if padding:\n        result = result[:-padding]\n    return result\n\n# Legacy interface.  This code could be cleaned up since I don't believe\n# binascii has any line length limitations.  It just doesn't seem worth it\n# though.  The files should be opened in binary mode.\n\nMAXLINESIZE = 76 # Excluding the CRLF\nMAXBINSIZE = (MAXLINESIZE//4)*3\n\ndef encode(input, output):\n    \"\"\"Encode a file; input and output are binary files.\"\"\"\n    while True:\n        s = input.read(MAXBINSIZE)\n        if not s:\n            break\n        while len(s) < MAXBINSIZE:\n            ns = input.read(MAXBINSIZE-len(s))\n            if not ns:\n                break\n            s += ns\n        line = binascii.b2a_base64(s)\n        output.write(line)\n\n\ndef decode(input, output):\n    \"\"\"Decode a file; input and output are binary files.\"\"\"\n    while True:\n        line = input.readline()\n        if not line:\n            break\n        s = binascii.a2b_base64(line)\n        output.write(s)\n\ndef _input_type_check(s):\n    try:\n        m = memoryview(s)\n    except TypeError as err:\n        msg = \"expected bytes-like object, not %s\" % s.__class__.__name__\n        raise TypeError(msg) from err\n    if m.format not in ('c', 'b', 'B'):\n        msg = (\"expected single byte elements, not %r from %s\" %\n                                          (m.format, s.__class__.__name__))\n        raise TypeError(msg)\n    if m.ndim != 1:\n        msg = (\"expected 1-D data, not %d-D data from %s\" %\n                                          (m.ndim, s.__class__.__name__))\n        raise TypeError(msg)\n\n\ndef encodebytes(s):\n    \"\"\"Encode a bytestring into a bytes object containing multiple lines\n    of base-64 data.\"\"\"\n    _input_type_check(s)\n    pieces = []\n    for i in range(0, len(s), MAXBINSIZE):\n        chunk = s[i : i + MAXBINSIZE]\n        pieces.append(binascii.b2a_base64(chunk))\n    return b\"\".join(pieces)\n\ndef encodestring(s):\n    \"\"\"Legacy alias of encodebytes().\"\"\"\n    import warnings\n    warnings.warn(\"encodestring() is a deprecated alias since 3.1, \"\n                  \"use encodebytes()\",\n                  DeprecationWarning, 2)\n    return encodebytes(s)\n\n\ndef decodebytes(s):\n    \"\"\"Decode a bytestring of base-64 data into a bytes object.\"\"\"\n    _input_type_check(s)\n    return binascii.a2b_base64(s)\n\ndef decodestring(s):\n    \"\"\"Legacy alias of decodebytes().\"\"\"\n    import warnings\n    warnings.warn(\"decodestring() is a deprecated alias since Python 3.1, \"\n                  \"use decodebytes()\",\n                  DeprecationWarning, 2)\n    return decodebytes(s)\n\n\n# Usable as a script...\ndef main():\n    \"\"\"Small main program\"\"\"\n    import sys, getopt\n    try:\n        opts, args = getopt.getopt(sys.argv[1:], 'deut')\n    except getopt.error as msg:\n        sys.stdout = sys.stderr\n        print(msg)\n        print(\"\"\"usage: %s [-d|-e|-u|-t] [file|-]\n        -d, -u: decode\n        -e: encode (default)\n        -t: encode and decode string 'Aladdin:open sesame'\"\"\"%sys.argv[0])\n        sys.exit(2)\n    func = encode\n    for o, a in opts:\n        if o == '-e': func = encode\n        if o == '-d': func = decode\n        if o == '-u': func = decode\n        if o == '-t': test(); return\n    if args and args[0] != '-':\n        with open(args[0], 'rb') as f:\n            func(f, sys.stdout.buffer)\n    else:\n        func(sys.stdin.buffer, sys.stdout.buffer)\n\n\ndef test():\n    s0 = b\"Aladdin:open sesame\"\n    print(repr(s0))\n    s1 = encodebytes(s0)\n    print(repr(s1))\n    s2 = decodebytes(s1)\n    print(repr(s2))\n    assert s0 == s2\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/bdb.py",
    "content": "\"\"\"Debugger basics\"\"\"\n\nimport fnmatch\nimport sys\nimport os\nfrom inspect import CO_GENERATOR, CO_COROUTINE, CO_ASYNC_GENERATOR\n\n__all__ = [\"BdbQuit\", \"Bdb\", \"Breakpoint\"]\n\nGENERATOR_AND_COROUTINE_FLAGS = CO_GENERATOR | CO_COROUTINE | CO_ASYNC_GENERATOR\n\n\nclass BdbQuit(Exception):\n    \"\"\"Exception to give up completely.\"\"\"\n\n\nclass Bdb:\n    \"\"\"Generic Python debugger base class.\n\n    This class takes care of details of the trace facility;\n    a derived class should implement user interaction.\n    The standard debugger class (pdb.Pdb) is an example.\n\n    The optional skip argument must be an iterable of glob-style\n    module name patterns.  The debugger will not step into frames\n    that originate in a module that matches one of these patterns.\n    Whether a frame is considered to originate in a certain module\n    is determined by the __name__ in the frame globals.\n    \"\"\"\n\n    def __init__(self, skip=None):\n        self.skip = set(skip) if skip else None\n        self.breaks = {}\n        self.fncache = {}\n        self.frame_returning = None\n\n    def canonic(self, filename):\n        \"\"\"Return canonical form of filename.\n\n        For real filenames, the canonical form is a case-normalized (on\n        case insensitive filesystems) absolute path.  'Filenames' with\n        angle brackets, such as \"<stdin>\", generated in interactive\n        mode, are returned unchanged.\n        \"\"\"\n        if filename == \"<\" + filename[1:-1] + \">\":\n            return filename\n        canonic = self.fncache.get(filename)\n        if not canonic:\n            canonic = os.path.abspath(filename)\n            canonic = os.path.normcase(canonic)\n            self.fncache[filename] = canonic\n        return canonic\n\n    def reset(self):\n        \"\"\"Set values of attributes as ready to start debugging.\"\"\"\n        import linecache\n        linecache.checkcache()\n        self.botframe = None\n        self._set_stopinfo(None, None)\n\n    def trace_dispatch(self, frame, event, arg):\n        \"\"\"Dispatch a trace function for debugged frames based on the event.\n\n        This function is installed as the trace function for debugged\n        frames. Its return value is the new trace function, which is\n        usually itself. The default implementation decides how to\n        dispatch a frame, depending on the type of event (passed in as a\n        string) that is about to be executed.\n\n        The event can be one of the following:\n            line: A new line of code is going to be executed.\n            call: A function is about to be called or another code block\n                  is entered.\n            return: A function or other code block is about to return.\n            exception: An exception has occurred.\n            c_call: A C function is about to be called.\n            c_return: A C function has returned.\n            c_exception: A C function has raised an exception.\n\n        For the Python events, specialized functions (see the dispatch_*()\n        methods) are called.  For the C events, no action is taken.\n\n        The arg parameter depends on the previous event.\n        \"\"\"\n        if self.quitting:\n            return # None\n        if event == 'line':\n            return self.dispatch_line(frame)\n        if event == 'call':\n            return self.dispatch_call(frame, arg)\n        if event == 'return':\n            return self.dispatch_return(frame, arg)\n        if event == 'exception':\n            return self.dispatch_exception(frame, arg)\n        if event == 'c_call':\n            return self.trace_dispatch\n        if event == 'c_exception':\n            return self.trace_dispatch\n        if event == 'c_return':\n            return self.trace_dispatch\n        print('bdb.Bdb.dispatch: unknown debugging event:', repr(event))\n        return self.trace_dispatch\n\n    def dispatch_line(self, frame):\n        \"\"\"Invoke user function and return trace function for line event.\n\n        If the debugger stops on the current line, invoke\n        self.user_line(). Raise BdbQuit if self.quitting is set.\n        Return self.trace_dispatch to continue tracing in this scope.\n        \"\"\"\n        if self.stop_here(frame) or self.break_here(frame):\n            self.user_line(frame)\n            if self.quitting: raise BdbQuit\n        return self.trace_dispatch\n\n    def dispatch_call(self, frame, arg):\n        \"\"\"Invoke user function and return trace function for call event.\n\n        If the debugger stops on this function call, invoke\n        self.user_call(). Raise BbdQuit if self.quitting is set.\n        Return self.trace_dispatch to continue tracing in this scope.\n        \"\"\"\n        # XXX 'arg' is no longer used\n        if self.botframe is None:\n            # First call of dispatch since reset()\n            self.botframe = frame.f_back # (CT) Note that this may also be None!\n            return self.trace_dispatch\n        if not (self.stop_here(frame) or self.break_anywhere(frame)):\n            # No need to trace this function\n            return # None\n        # Ignore call events in generator except when stepping.\n        if self.stopframe and frame.f_code.co_flags & GENERATOR_AND_COROUTINE_FLAGS:\n            return self.trace_dispatch\n        self.user_call(frame, arg)\n        if self.quitting: raise BdbQuit\n        return self.trace_dispatch\n\n    def dispatch_return(self, frame, arg):\n        \"\"\"Invoke user function and return trace function for return event.\n\n        If the debugger stops on this function return, invoke\n        self.user_return(). Raise BdbQuit if self.quitting is set.\n        Return self.trace_dispatch to continue tracing in this scope.\n        \"\"\"\n        if self.stop_here(frame) or frame == self.returnframe:\n            # Ignore return events in generator except when stepping.\n            if self.stopframe and frame.f_code.co_flags & GENERATOR_AND_COROUTINE_FLAGS:\n                return self.trace_dispatch\n            try:\n                self.frame_returning = frame\n                self.user_return(frame, arg)\n            finally:\n                self.frame_returning = None\n            if self.quitting: raise BdbQuit\n            # The user issued a 'next' or 'until' command.\n            if self.stopframe is frame and self.stoplineno != -1:\n                self._set_stopinfo(None, None)\n        return self.trace_dispatch\n\n    def dispatch_exception(self, frame, arg):\n        \"\"\"Invoke user function and return trace function for exception event.\n\n        If the debugger stops on this exception, invoke\n        self.user_exception(). Raise BdbQuit if self.quitting is set.\n        Return self.trace_dispatch to continue tracing in this scope.\n        \"\"\"\n        if self.stop_here(frame):\n            # When stepping with next/until/return in a generator frame, skip\n            # the internal StopIteration exception (with no traceback)\n            # triggered by a subiterator run with the 'yield from' statement.\n            if not (frame.f_code.co_flags & GENERATOR_AND_COROUTINE_FLAGS\n                    and arg[0] is StopIteration and arg[2] is None):\n                self.user_exception(frame, arg)\n                if self.quitting: raise BdbQuit\n        # Stop at the StopIteration or GeneratorExit exception when the user\n        # has set stopframe in a generator by issuing a return command, or a\n        # next/until command at the last statement in the generator before the\n        # exception.\n        elif (self.stopframe and frame is not self.stopframe\n                and self.stopframe.f_code.co_flags & GENERATOR_AND_COROUTINE_FLAGS\n                and arg[0] in (StopIteration, GeneratorExit)):\n            self.user_exception(frame, arg)\n            if self.quitting: raise BdbQuit\n\n        return self.trace_dispatch\n\n    # Normally derived classes don't override the following\n    # methods, but they may if they want to redefine the\n    # definition of stopping and breakpoints.\n\n    def is_skipped_module(self, module_name):\n        \"Return True if module_name matches any skip pattern.\"\n        if module_name is None:  # some modules do not have names\n            return False\n        for pattern in self.skip:\n            if fnmatch.fnmatch(module_name, pattern):\n                return True\n        return False\n\n    def stop_here(self, frame):\n        \"Return True if frame is below the starting frame in the stack.\"\n        # (CT) stopframe may now also be None, see dispatch_call.\n        # (CT) the former test for None is therefore removed from here.\n        if self.skip and \\\n               self.is_skipped_module(frame.f_globals.get('__name__')):\n            return False\n        if frame is self.stopframe:\n            if self.stoplineno == -1:\n                return False\n            return frame.f_lineno >= self.stoplineno\n        if not self.stopframe:\n            return True\n        return False\n\n    def break_here(self, frame):\n        \"\"\"Return True if there is an effective breakpoint for this line.\n\n        Check for line or function breakpoint and if in effect.\n        Delete temporary breakpoints if effective() says to.\n        \"\"\"\n        filename = self.canonic(frame.f_code.co_filename)\n        if filename not in self.breaks:\n            return False\n        lineno = frame.f_lineno\n        if lineno not in self.breaks[filename]:\n            # The line itself has no breakpoint, but maybe the line is the\n            # first line of a function with breakpoint set by function name.\n            lineno = frame.f_code.co_firstlineno\n            if lineno not in self.breaks[filename]:\n                return False\n\n        # flag says ok to delete temp. bp\n        (bp, flag) = effective(filename, lineno, frame)\n        if bp:\n            self.currentbp = bp.number\n            if (flag and bp.temporary):\n                self.do_clear(str(bp.number))\n            return True\n        else:\n            return False\n\n    def do_clear(self, arg):\n        \"\"\"Remove temporary breakpoint.\n\n        Must implement in derived classes or get NotImplementedError.\n        \"\"\"\n        raise NotImplementedError(\"subclass of bdb must implement do_clear()\")\n\n    def break_anywhere(self, frame):\n        \"\"\"Return True if there is any breakpoint for frame's filename.\n        \"\"\"\n        return self.canonic(frame.f_code.co_filename) in self.breaks\n\n    # Derived classes should override the user_* methods\n    # to gain control.\n\n    def user_call(self, frame, argument_list):\n        \"\"\"Called if we might stop in a function.\"\"\"\n        pass\n\n    def user_line(self, frame):\n        \"\"\"Called when we stop or break at a line.\"\"\"\n        pass\n\n    def user_return(self, frame, return_value):\n        \"\"\"Called when a return trap is set here.\"\"\"\n        pass\n\n    def user_exception(self, frame, exc_info):\n        \"\"\"Called when we stop on an exception.\"\"\"\n        pass\n\n    def _set_stopinfo(self, stopframe, returnframe, stoplineno=0):\n        \"\"\"Set the attributes for stopping.\n\n        If stoplineno is greater than or equal to 0, then stop at line\n        greater than or equal to the stopline.  If stoplineno is -1, then\n        don't stop at all.\n        \"\"\"\n        self.stopframe = stopframe\n        self.returnframe = returnframe\n        self.quitting = False\n        # stoplineno >= 0 means: stop at line >= the stoplineno\n        # stoplineno -1 means: don't stop at all\n        self.stoplineno = stoplineno\n\n    # Derived classes and clients can call the following methods\n    # to affect the stepping state.\n\n    def set_until(self, frame, lineno=None):\n        \"\"\"Stop when the line with the lineno greater than the current one is\n        reached or when returning from current frame.\"\"\"\n        # the name \"until\" is borrowed from gdb\n        if lineno is None:\n            lineno = frame.f_lineno + 1\n        self._set_stopinfo(frame, frame, lineno)\n\n    def set_step(self):\n        \"\"\"Stop after one line of code.\"\"\"\n        # Issue #13183: pdb skips frames after hitting a breakpoint and running\n        # step commands.\n        # Restore the trace function in the caller (that may not have been set\n        # for performance reasons) when returning from the current frame.\n        if self.frame_returning:\n            caller_frame = self.frame_returning.f_back\n            if caller_frame and not caller_frame.f_trace:\n                caller_frame.f_trace = self.trace_dispatch\n        self._set_stopinfo(None, None)\n\n    def set_next(self, frame):\n        \"\"\"Stop on the next line in or below the given frame.\"\"\"\n        self._set_stopinfo(frame, None)\n\n    def set_return(self, frame):\n        \"\"\"Stop when returning from the given frame.\"\"\"\n        if frame.f_code.co_flags & GENERATOR_AND_COROUTINE_FLAGS:\n            self._set_stopinfo(frame, None, -1)\n        else:\n            self._set_stopinfo(frame.f_back, frame)\n\n    def set_trace(self, frame=None):\n        \"\"\"Start debugging from frame.\n\n        If frame is not specified, debugging starts from caller's frame.\n        \"\"\"\n        if frame is None:\n            frame = sys._getframe().f_back\n        self.reset()\n        while frame:\n            frame.f_trace = self.trace_dispatch\n            self.botframe = frame\n            frame = frame.f_back\n        self.set_step()\n        sys.settrace(self.trace_dispatch)\n\n    def set_continue(self):\n        \"\"\"Stop only at breakpoints or when finished.\n\n        If there are no breakpoints, set the system trace function to None.\n        \"\"\"\n        # Don't stop except at breakpoints or when finished\n        self._set_stopinfo(self.botframe, None, -1)\n        if not self.breaks:\n            # no breakpoints; run without debugger overhead\n            sys.settrace(None)\n            frame = sys._getframe().f_back\n            while frame and frame is not self.botframe:\n                del frame.f_trace\n                frame = frame.f_back\n\n    def set_quit(self):\n        \"\"\"Set quitting attribute to True.\n\n        Raises BdbQuit exception in the next call to a dispatch_*() method.\n        \"\"\"\n        self.stopframe = self.botframe\n        self.returnframe = None\n        self.quitting = True\n        sys.settrace(None)\n\n    # Derived classes and clients can call the following methods\n    # to manipulate breakpoints.  These methods return an\n    # error message if something went wrong, None if all is well.\n    # Set_break prints out the breakpoint line and file:lineno.\n    # Call self.get_*break*() to see the breakpoints or better\n    # for bp in Breakpoint.bpbynumber: if bp: bp.bpprint().\n\n    def set_break(self, filename, lineno, temporary=False, cond=None,\n                  funcname=None):\n        \"\"\"Set a new breakpoint for filename:lineno.\n\n        If lineno doesn't exist for the filename, return an error message.\n        The filename should be in canonical form.\n        \"\"\"\n        filename = self.canonic(filename)\n        import linecache # Import as late as possible\n        line = linecache.getline(filename, lineno)\n        if not line:\n            return 'Line %s:%d does not exist' % (filename, lineno)\n        list = self.breaks.setdefault(filename, [])\n        if lineno not in list:\n            list.append(lineno)\n        bp = Breakpoint(filename, lineno, temporary, cond, funcname)\n        return None\n\n    def _prune_breaks(self, filename, lineno):\n        \"\"\"Prune breakpoints for filename:lineno.\n\n        A list of breakpoints is maintained in the Bdb instance and in\n        the Breakpoint class.  If a breakpoint in the Bdb instance no\n        longer exists in the Breakpoint class, then it's removed from the\n        Bdb instance.\n        \"\"\"\n        if (filename, lineno) not in Breakpoint.bplist:\n            self.breaks[filename].remove(lineno)\n        if not self.breaks[filename]:\n            del self.breaks[filename]\n\n    def clear_break(self, filename, lineno):\n        \"\"\"Delete breakpoints for filename:lineno.\n\n        If no breakpoints were set, return an error message.\n        \"\"\"\n        filename = self.canonic(filename)\n        if filename not in self.breaks:\n            return 'There are no breakpoints in %s' % filename\n        if lineno not in self.breaks[filename]:\n            return 'There is no breakpoint at %s:%d' % (filename, lineno)\n        # If there's only one bp in the list for that file,line\n        # pair, then remove the breaks entry\n        for bp in Breakpoint.bplist[filename, lineno][:]:\n            bp.deleteMe()\n        self._prune_breaks(filename, lineno)\n        return None\n\n    def clear_bpbynumber(self, arg):\n        \"\"\"Delete a breakpoint by its index in Breakpoint.bpbynumber.\n\n        If arg is invalid, return an error message.\n        \"\"\"\n        try:\n            bp = self.get_bpbynumber(arg)\n        except ValueError as err:\n            return str(err)\n        bp.deleteMe()\n        self._prune_breaks(bp.file, bp.line)\n        return None\n\n    def clear_all_file_breaks(self, filename):\n        \"\"\"Delete all breakpoints in filename.\n\n        If none were set, return an error message.\n        \"\"\"\n        filename = self.canonic(filename)\n        if filename not in self.breaks:\n            return 'There are no breakpoints in %s' % filename\n        for line in self.breaks[filename]:\n            blist = Breakpoint.bplist[filename, line]\n            for bp in blist:\n                bp.deleteMe()\n        del self.breaks[filename]\n        return None\n\n    def clear_all_breaks(self):\n        \"\"\"Delete all existing breakpoints.\n\n        If none were set, return an error message.\n        \"\"\"\n        if not self.breaks:\n            return 'There are no breakpoints'\n        for bp in Breakpoint.bpbynumber:\n            if bp:\n                bp.deleteMe()\n        self.breaks = {}\n        return None\n\n    def get_bpbynumber(self, arg):\n        \"\"\"Return a breakpoint by its index in Breakpoint.bybpnumber.\n\n        For invalid arg values or if the breakpoint doesn't exist,\n        raise a ValueError.\n        \"\"\"\n        if not arg:\n            raise ValueError('Breakpoint number expected')\n        try:\n            number = int(arg)\n        except ValueError:\n            raise ValueError('Non-numeric breakpoint number %s' % arg) from None\n        try:\n            bp = Breakpoint.bpbynumber[number]\n        except IndexError:\n            raise ValueError('Breakpoint number %d out of range' % number) from None\n        if bp is None:\n            raise ValueError('Breakpoint %d already deleted' % number)\n        return bp\n\n    def get_break(self, filename, lineno):\n        \"\"\"Return True if there is a breakpoint for filename:lineno.\"\"\"\n        filename = self.canonic(filename)\n        return filename in self.breaks and \\\n            lineno in self.breaks[filename]\n\n    def get_breaks(self, filename, lineno):\n        \"\"\"Return all breakpoints for filename:lineno.\n\n        If no breakpoints are set, return an empty list.\n        \"\"\"\n        filename = self.canonic(filename)\n        return filename in self.breaks and \\\n            lineno in self.breaks[filename] and \\\n            Breakpoint.bplist[filename, lineno] or []\n\n    def get_file_breaks(self, filename):\n        \"\"\"Return all lines with breakpoints for filename.\n\n        If no breakpoints are set, return an empty list.\n        \"\"\"\n        filename = self.canonic(filename)\n        if filename in self.breaks:\n            return self.breaks[filename]\n        else:\n            return []\n\n    def get_all_breaks(self):\n        \"\"\"Return all breakpoints that are set.\"\"\"\n        return self.breaks\n\n    # Derived classes and clients can call the following method\n    # to get a data structure representing a stack trace.\n\n    def get_stack(self, f, t):\n        \"\"\"Return a list of (frame, lineno) in a stack trace and a size.\n\n        List starts with original calling frame, if there is one.\n        Size may be number of frames above or below f.\n        \"\"\"\n        stack = []\n        if t and t.tb_frame is f:\n            t = t.tb_next\n        while f is not None:\n            stack.append((f, f.f_lineno))\n            if f is self.botframe:\n                break\n            f = f.f_back\n        stack.reverse()\n        i = max(0, len(stack) - 1)\n        while t is not None:\n            stack.append((t.tb_frame, t.tb_lineno))\n            t = t.tb_next\n        if f is None:\n            i = max(0, len(stack) - 1)\n        return stack, i\n\n    def format_stack_entry(self, frame_lineno, lprefix=': '):\n        \"\"\"Return a string with information about a stack entry.\n\n        The stack entry frame_lineno is a (frame, lineno) tuple.  The\n        return string contains the canonical filename, the function name\n        or '<lambda>', the input arguments, the return value, and the\n        line of code (if it exists).\n\n        \"\"\"\n        import linecache, reprlib\n        frame, lineno = frame_lineno\n        filename = self.canonic(frame.f_code.co_filename)\n        s = '%s(%r)' % (filename, lineno)\n        if frame.f_code.co_name:\n            s += frame.f_code.co_name\n        else:\n            s += \"<lambda>\"\n        s += '()'\n        if '__return__' in frame.f_locals:\n            rv = frame.f_locals['__return__']\n            s += '->'\n            s += reprlib.repr(rv)\n        line = linecache.getline(filename, lineno, frame.f_globals)\n        if line:\n            s += lprefix + line.strip()\n        return s\n\n    # The following methods can be called by clients to use\n    # a debugger to debug a statement or an expression.\n    # Both can be given as a string, or a code object.\n\n    def run(self, cmd, globals=None, locals=None):\n        \"\"\"Debug a statement executed via the exec() function.\n\n        globals defaults to __main__.dict; locals defaults to globals.\n        \"\"\"\n        if globals is None:\n            import __main__\n            globals = __main__.__dict__\n        if locals is None:\n            locals = globals\n        self.reset()\n        if isinstance(cmd, str):\n            cmd = compile(cmd, \"<string>\", \"exec\")\n        sys.settrace(self.trace_dispatch)\n        try:\n            exec(cmd, globals, locals)\n        except BdbQuit:\n            pass\n        finally:\n            self.quitting = True\n            sys.settrace(None)\n\n    def runeval(self, expr, globals=None, locals=None):\n        \"\"\"Debug an expression executed via the eval() function.\n\n        globals defaults to __main__.dict; locals defaults to globals.\n        \"\"\"\n        if globals is None:\n            import __main__\n            globals = __main__.__dict__\n        if locals is None:\n            locals = globals\n        self.reset()\n        sys.settrace(self.trace_dispatch)\n        try:\n            return eval(expr, globals, locals)\n        except BdbQuit:\n            pass\n        finally:\n            self.quitting = True\n            sys.settrace(None)\n\n    def runctx(self, cmd, globals, locals):\n        \"\"\"For backwards-compatibility.  Defers to run().\"\"\"\n        # B/W compatibility\n        self.run(cmd, globals, locals)\n\n    # This method is more useful to debug a single function call.\n\n    def runcall(*args, **kwds):\n        \"\"\"Debug a single function call.\n\n        Return the result of the function call.\n        \"\"\"\n        if len(args) >= 2:\n            self, func, *args = args\n        elif not args:\n            raise TypeError(\"descriptor 'runcall' of 'Bdb' object \"\n                            \"needs an argument\")\n        elif 'func' in kwds:\n            func = kwds.pop('func')\n            self, *args = args\n            import warnings\n            warnings.warn(\"Passing 'func' as keyword argument is deprecated\",\n                          DeprecationWarning, stacklevel=2)\n        else:\n            raise TypeError('runcall expected at least 1 positional argument, '\n                            'got %d' % (len(args)-1))\n\n        self.reset()\n        sys.settrace(self.trace_dispatch)\n        res = None\n        try:\n            res = func(*args, **kwds)\n        except BdbQuit:\n            pass\n        finally:\n            self.quitting = True\n            sys.settrace(None)\n        return res\n    runcall.__text_signature__ = '($self, func, /, *args, **kwds)'\n\n\ndef set_trace():\n    \"\"\"Start debugging with a Bdb instance from the caller's frame.\"\"\"\n    Bdb().set_trace()\n\n\nclass Breakpoint:\n    \"\"\"Breakpoint class.\n\n    Implements temporary breakpoints, ignore counts, disabling and\n    (re)-enabling, and conditionals.\n\n    Breakpoints are indexed by number through bpbynumber and by\n    the (file, line) tuple using bplist.  The former points to a\n    single instance of class Breakpoint.  The latter points to a\n    list of such instances since there may be more than one\n    breakpoint per line.\n\n    When creating a breakpoint, its associated filename should be\n    in canonical form.  If funcname is defined, a breakpoint hit will be\n    counted when the first line of that function is executed.  A\n    conditional breakpoint always counts a hit.\n    \"\"\"\n\n    # XXX Keeping state in the class is a mistake -- this means\n    # you cannot have more than one active Bdb instance.\n\n    next = 1        # Next bp to be assigned\n    bplist = {}     # indexed by (file, lineno) tuple\n    bpbynumber = [None] # Each entry is None or an instance of Bpt\n                # index 0 is unused, except for marking an\n                # effective break .... see effective()\n\n    def __init__(self, file, line, temporary=False, cond=None, funcname=None):\n        self.funcname = funcname\n        # Needed if funcname is not None.\n        self.func_first_executable_line = None\n        self.file = file    # This better be in canonical form!\n        self.line = line\n        self.temporary = temporary\n        self.cond = cond\n        self.enabled = True\n        self.ignore = 0\n        self.hits = 0\n        self.number = Breakpoint.next\n        Breakpoint.next += 1\n        # Build the two lists\n        self.bpbynumber.append(self)\n        if (file, line) in self.bplist:\n            self.bplist[file, line].append(self)\n        else:\n            self.bplist[file, line] = [self]\n\n    def deleteMe(self):\n        \"\"\"Delete the breakpoint from the list associated to a file:line.\n\n        If it is the last breakpoint in that position, it also deletes\n        the entry for the file:line.\n        \"\"\"\n\n        index = (self.file, self.line)\n        self.bpbynumber[self.number] = None   # No longer in list\n        self.bplist[index].remove(self)\n        if not self.bplist[index]:\n            # No more bp for this f:l combo\n            del self.bplist[index]\n\n    def enable(self):\n        \"\"\"Mark the breakpoint as enabled.\"\"\"\n        self.enabled = True\n\n    def disable(self):\n        \"\"\"Mark the breakpoint as disabled.\"\"\"\n        self.enabled = False\n\n    def bpprint(self, out=None):\n        \"\"\"Print the output of bpformat().\n\n        The optional out argument directs where the output is sent\n        and defaults to standard output.\n        \"\"\"\n        if out is None:\n            out = sys.stdout\n        print(self.bpformat(), file=out)\n\n    def bpformat(self):\n        \"\"\"Return a string with information about the breakpoint.\n\n        The information includes the breakpoint number, temporary\n        status, file:line position, break condition, number of times to\n        ignore, and number of times hit.\n\n        \"\"\"\n        if self.temporary:\n            disp = 'del  '\n        else:\n            disp = 'keep '\n        if self.enabled:\n            disp = disp + 'yes  '\n        else:\n            disp = disp + 'no   '\n        ret = '%-4dbreakpoint   %s at %s:%d' % (self.number, disp,\n                                                self.file, self.line)\n        if self.cond:\n            ret += '\\n\\tstop only if %s' % (self.cond,)\n        if self.ignore:\n            ret += '\\n\\tignore next %d hits' % (self.ignore,)\n        if self.hits:\n            if self.hits > 1:\n                ss = 's'\n            else:\n                ss = ''\n            ret += '\\n\\tbreakpoint already hit %d time%s' % (self.hits, ss)\n        return ret\n\n    def __str__(self):\n        \"Return a condensed description of the breakpoint.\"\n        return 'breakpoint %s at %s:%s' % (self.number, self.file, self.line)\n\n# -----------end of Breakpoint class----------\n\n\ndef checkfuncname(b, frame):\n    \"\"\"Return True if break should happen here.\n\n    Whether a break should happen depends on the way that b (the breakpoint)\n    was set.  If it was set via line number, check if b.line is the same as\n    the one in the frame.  If it was set via function name, check if this is\n    the right function and if it is on the first executable line.\n    \"\"\"\n    if not b.funcname:\n        # Breakpoint was set via line number.\n        if b.line != frame.f_lineno:\n            # Breakpoint was set at a line with a def statement and the function\n            # defined is called: don't break.\n            return False\n        return True\n\n    # Breakpoint set via function name.\n    if frame.f_code.co_name != b.funcname:\n        # It's not a function call, but rather execution of def statement.\n        return False\n\n    # We are in the right frame.\n    if not b.func_first_executable_line:\n        # The function is entered for the 1st time.\n        b.func_first_executable_line = frame.f_lineno\n\n    if b.func_first_executable_line != frame.f_lineno:\n        # But we are not at the first line number: don't break.\n        return False\n    return True\n\n\n# Determines if there is an effective (active) breakpoint at this\n# line of code.  Returns breakpoint number or 0 if none\ndef effective(file, line, frame):\n    \"\"\"Determine which breakpoint for this file:line is to be acted upon.\n\n    Called only if we know there is a breakpoint at this location.  Return\n    the breakpoint that was triggered and a boolean that indicates if it is\n    ok to delete a temporary breakpoint.  Return (None, None) if there is no\n    matching breakpoint.\n    \"\"\"\n    possibles = Breakpoint.bplist[file, line]\n    for b in possibles:\n        if not b.enabled:\n            continue\n        if not checkfuncname(b, frame):\n            continue\n        # Count every hit when bp is enabled\n        b.hits += 1\n        if not b.cond:\n            # If unconditional, and ignoring go on to next, else break\n            if b.ignore > 0:\n                b.ignore -= 1\n                continue\n            else:\n                # breakpoint and marker that it's ok to delete if temporary\n                return (b, True)\n        else:\n            # Conditional bp.\n            # Ignore count applies only to those bpt hits where the\n            # condition evaluates to true.\n            try:\n                val = eval(b.cond, frame.f_globals, frame.f_locals)\n                if val:\n                    if b.ignore > 0:\n                        b.ignore -= 1\n                        # continue\n                    else:\n                        return (b, True)\n                # else:\n                #   continue\n            except:\n                # if eval fails, most conservative thing is to stop on\n                # breakpoint regardless of ignore count.  Don't delete\n                # temporary, as another hint to user.\n                return (b, False)\n    return (None, None)\n\n\n# -------------------- testing --------------------\n\nclass Tdb(Bdb):\n    def user_call(self, frame, args):\n        name = frame.f_code.co_name\n        if not name: name = '???'\n        print('+++ call', name, args)\n    def user_line(self, frame):\n        import linecache\n        name = frame.f_code.co_name\n        if not name: name = '???'\n        fn = self.canonic(frame.f_code.co_filename)\n        line = linecache.getline(fn, frame.f_lineno, frame.f_globals)\n        print('+++', fn, frame.f_lineno, name, ':', line.strip())\n    def user_return(self, frame, retval):\n        print('+++ return', retval)\n    def user_exception(self, frame, exc_stuff):\n        print('+++ exception', exc_stuff)\n        self.set_continue()\n\ndef foo(n):\n    print('foo(', n, ')')\n    x = bar(n*10)\n    print('bar returned', x)\n\ndef bar(a):\n    print('bar(', a, ')')\n    return a/2\n\ndef test():\n    t = Tdb()\n    t.run('import bdb; bdb.foo(10)')\n"
  },
  {
    "path": "rd/usr/lib/python3.8/binhex.py",
    "content": "\"\"\"Macintosh binhex compression/decompression.\n\neasy interface:\nbinhex(inputfilename, outputfilename)\nhexbin(inputfilename, outputfilename)\n\"\"\"\n\n#\n# Jack Jansen, CWI, August 1995.\n#\n# The module is supposed to be as compatible as possible. Especially the\n# easy interface should work \"as expected\" on any platform.\n# XXXX Note: currently, textfiles appear in mac-form on all platforms.\n# We seem to lack a simple character-translate in python.\n# (we should probably use ISO-Latin-1 on all but the mac platform).\n# XXXX The simple routines are too simple: they expect to hold the complete\n# files in-core. Should be fixed.\n# XXXX It would be nice to handle AppleDouble format on unix\n# (for servers serving macs).\n# XXXX I don't understand what happens when you get 0x90 times the same byte on\n# input. The resulting code (xx 90 90) would appear to be interpreted as an\n# escaped *value* of 0x90. All coders I've seen appear to ignore this nicety...\n#\nimport io\nimport os\nimport struct\nimport binascii\n\n__all__ = [\"binhex\",\"hexbin\",\"Error\"]\n\nclass Error(Exception):\n    pass\n\n# States (what have we written)\n_DID_HEADER = 0\n_DID_DATA = 1\n\n# Various constants\nREASONABLY_LARGE = 32768  # Minimal amount we pass the rle-coder\nLINELEN = 64\nRUNCHAR = b\"\\x90\"\n\n#\n# This code is no longer byte-order dependent\n\n\nclass FInfo:\n    def __init__(self):\n        self.Type = '????'\n        self.Creator = '????'\n        self.Flags = 0\n\ndef getfileinfo(name):\n    finfo = FInfo()\n    with io.open(name, 'rb') as fp:\n        # Quick check for textfile\n        data = fp.read(512)\n        if 0 not in data:\n            finfo.Type = 'TEXT'\n        fp.seek(0, 2)\n        dsize = fp.tell()\n    dir, file = os.path.split(name)\n    file = file.replace(':', '-', 1)\n    return file, finfo, dsize, 0\n\nclass openrsrc:\n    def __init__(self, *args):\n        pass\n\n    def read(self, *args):\n        return b''\n\n    def write(self, *args):\n        pass\n\n    def close(self):\n        pass\n\nclass _Hqxcoderengine:\n    \"\"\"Write data to the coder in 3-byte chunks\"\"\"\n\n    def __init__(self, ofp):\n        self.ofp = ofp\n        self.data = b''\n        self.hqxdata = b''\n        self.linelen = LINELEN - 1\n\n    def write(self, data):\n        self.data = self.data + data\n        datalen = len(self.data)\n        todo = (datalen // 3) * 3\n        data = self.data[:todo]\n        self.data = self.data[todo:]\n        if not data:\n            return\n        self.hqxdata = self.hqxdata + binascii.b2a_hqx(data)\n        self._flush(0)\n\n    def _flush(self, force):\n        first = 0\n        while first <= len(self.hqxdata) - self.linelen:\n            last = first + self.linelen\n            self.ofp.write(self.hqxdata[first:last] + b'\\n')\n            self.linelen = LINELEN\n            first = last\n        self.hqxdata = self.hqxdata[first:]\n        if force:\n            self.ofp.write(self.hqxdata + b':\\n')\n\n    def close(self):\n        if self.data:\n            self.hqxdata = self.hqxdata + binascii.b2a_hqx(self.data)\n        self._flush(1)\n        self.ofp.close()\n        del self.ofp\n\nclass _Rlecoderengine:\n    \"\"\"Write data to the RLE-coder in suitably large chunks\"\"\"\n\n    def __init__(self, ofp):\n        self.ofp = ofp\n        self.data = b''\n\n    def write(self, data):\n        self.data = self.data + data\n        if len(self.data) < REASONABLY_LARGE:\n            return\n        rledata = binascii.rlecode_hqx(self.data)\n        self.ofp.write(rledata)\n        self.data = b''\n\n    def close(self):\n        if self.data:\n            rledata = binascii.rlecode_hqx(self.data)\n            self.ofp.write(rledata)\n        self.ofp.close()\n        del self.ofp\n\nclass BinHex:\n    def __init__(self, name_finfo_dlen_rlen, ofp):\n        name, finfo, dlen, rlen = name_finfo_dlen_rlen\n        close_on_error = False\n        if isinstance(ofp, str):\n            ofname = ofp\n            ofp = io.open(ofname, 'wb')\n            close_on_error = True\n        try:\n            ofp.write(b'(This file must be converted with BinHex 4.0)\\r\\r:')\n            hqxer = _Hqxcoderengine(ofp)\n            self.ofp = _Rlecoderengine(hqxer)\n            self.crc = 0\n            if finfo is None:\n                finfo = FInfo()\n            self.dlen = dlen\n            self.rlen = rlen\n            self._writeinfo(name, finfo)\n            self.state = _DID_HEADER\n        except:\n            if close_on_error:\n                ofp.close()\n            raise\n\n    def _writeinfo(self, name, finfo):\n        nl = len(name)\n        if nl > 63:\n            raise Error('Filename too long')\n        d = bytes([nl]) + name.encode(\"latin-1\") + b'\\0'\n        tp, cr = finfo.Type, finfo.Creator\n        if isinstance(tp, str):\n            tp = tp.encode(\"latin-1\")\n        if isinstance(cr, str):\n            cr = cr.encode(\"latin-1\")\n        d2 = tp + cr\n\n        # Force all structs to be packed with big-endian\n        d3 = struct.pack('>h', finfo.Flags)\n        d4 = struct.pack('>ii', self.dlen, self.rlen)\n        info = d + d2 + d3 + d4\n        self._write(info)\n        self._writecrc()\n\n    def _write(self, data):\n        self.crc = binascii.crc_hqx(data, self.crc)\n        self.ofp.write(data)\n\n    def _writecrc(self):\n        # XXXX Should this be here??\n        # self.crc = binascii.crc_hqx('\\0\\0', self.crc)\n        if self.crc < 0:\n            fmt = '>h'\n        else:\n            fmt = '>H'\n        self.ofp.write(struct.pack(fmt, self.crc))\n        self.crc = 0\n\n    def write(self, data):\n        if self.state != _DID_HEADER:\n            raise Error('Writing data at the wrong time')\n        self.dlen = self.dlen - len(data)\n        self._write(data)\n\n    def close_data(self):\n        if self.dlen != 0:\n            raise Error('Incorrect data size, diff=%r' % (self.rlen,))\n        self._writecrc()\n        self.state = _DID_DATA\n\n    def write_rsrc(self, data):\n        if self.state < _DID_DATA:\n            self.close_data()\n        if self.state != _DID_DATA:\n            raise Error('Writing resource data at the wrong time')\n        self.rlen = self.rlen - len(data)\n        self._write(data)\n\n    def close(self):\n        if self.state is None:\n            return\n        try:\n            if self.state < _DID_DATA:\n                self.close_data()\n            if self.state != _DID_DATA:\n                raise Error('Close at the wrong time')\n            if self.rlen != 0:\n                raise Error(\"Incorrect resource-datasize, diff=%r\" % (self.rlen,))\n            self._writecrc()\n        finally:\n            self.state = None\n            ofp = self.ofp\n            del self.ofp\n            ofp.close()\n\ndef binhex(inp, out):\n    \"\"\"binhex(infilename, outfilename): create binhex-encoded copy of a file\"\"\"\n    finfo = getfileinfo(inp)\n    ofp = BinHex(finfo, out)\n\n    with io.open(inp, 'rb') as ifp:\n        # XXXX Do textfile translation on non-mac systems\n        while True:\n            d = ifp.read(128000)\n            if not d: break\n            ofp.write(d)\n        ofp.close_data()\n\n    ifp = openrsrc(inp, 'rb')\n    while True:\n        d = ifp.read(128000)\n        if not d: break\n        ofp.write_rsrc(d)\n    ofp.close()\n    ifp.close()\n\nclass _Hqxdecoderengine:\n    \"\"\"Read data via the decoder in 4-byte chunks\"\"\"\n\n    def __init__(self, ifp):\n        self.ifp = ifp\n        self.eof = 0\n\n    def read(self, totalwtd):\n        \"\"\"Read at least wtd bytes (or until EOF)\"\"\"\n        decdata = b''\n        wtd = totalwtd\n        #\n        # The loop here is convoluted, since we don't really now how\n        # much to decode: there may be newlines in the incoming data.\n        while wtd > 0:\n            if self.eof: return decdata\n            wtd = ((wtd + 2) // 3) * 4\n            data = self.ifp.read(wtd)\n            #\n            # Next problem: there may not be a complete number of\n            # bytes in what we pass to a2b. Solve by yet another\n            # loop.\n            #\n            while True:\n                try:\n                    decdatacur, self.eof = binascii.a2b_hqx(data)\n                    break\n                except binascii.Incomplete:\n                    pass\n                newdata = self.ifp.read(1)\n                if not newdata:\n                    raise Error('Premature EOF on binhex file')\n                data = data + newdata\n            decdata = decdata + decdatacur\n            wtd = totalwtd - len(decdata)\n            if not decdata and not self.eof:\n                raise Error('Premature EOF on binhex file')\n        return decdata\n\n    def close(self):\n        self.ifp.close()\n\nclass _Rledecoderengine:\n    \"\"\"Read data via the RLE-coder\"\"\"\n\n    def __init__(self, ifp):\n        self.ifp = ifp\n        self.pre_buffer = b''\n        self.post_buffer = b''\n        self.eof = 0\n\n    def read(self, wtd):\n        if wtd > len(self.post_buffer):\n            self._fill(wtd - len(self.post_buffer))\n        rv = self.post_buffer[:wtd]\n        self.post_buffer = self.post_buffer[wtd:]\n        return rv\n\n    def _fill(self, wtd):\n        self.pre_buffer = self.pre_buffer + self.ifp.read(wtd + 4)\n        if self.ifp.eof:\n            self.post_buffer = self.post_buffer + \\\n                binascii.rledecode_hqx(self.pre_buffer)\n            self.pre_buffer = b''\n            return\n\n        #\n        # Obfuscated code ahead. We have to take care that we don't\n        # end up with an orphaned RUNCHAR later on. So, we keep a couple\n        # of bytes in the buffer, depending on what the end of\n        # the buffer looks like:\n        # '\\220\\0\\220' - Keep 3 bytes: repeated \\220 (escaped as \\220\\0)\n        # '?\\220' - Keep 2 bytes: repeated something-else\n        # '\\220\\0' - Escaped \\220: Keep 2 bytes.\n        # '?\\220?' - Complete repeat sequence: decode all\n        # otherwise: keep 1 byte.\n        #\n        mark = len(self.pre_buffer)\n        if self.pre_buffer[-3:] == RUNCHAR + b'\\0' + RUNCHAR:\n            mark = mark - 3\n        elif self.pre_buffer[-1:] == RUNCHAR:\n            mark = mark - 2\n        elif self.pre_buffer[-2:] == RUNCHAR + b'\\0':\n            mark = mark - 2\n        elif self.pre_buffer[-2:-1] == RUNCHAR:\n            pass # Decode all\n        else:\n            mark = mark - 1\n\n        self.post_buffer = self.post_buffer + \\\n            binascii.rledecode_hqx(self.pre_buffer[:mark])\n        self.pre_buffer = self.pre_buffer[mark:]\n\n    def close(self):\n        self.ifp.close()\n\nclass HexBin:\n    def __init__(self, ifp):\n        if isinstance(ifp, str):\n            ifp = io.open(ifp, 'rb')\n        #\n        # Find initial colon.\n        #\n        while True:\n            ch = ifp.read(1)\n            if not ch:\n                raise Error(\"No binhex data found\")\n            # Cater for \\r\\n terminated lines (which show up as \\n\\r, hence\n            # all lines start with \\r)\n            if ch == b'\\r':\n                continue\n            if ch == b':':\n                break\n\n        hqxifp = _Hqxdecoderengine(ifp)\n        self.ifp = _Rledecoderengine(hqxifp)\n        self.crc = 0\n        self._readheader()\n\n    def _read(self, len):\n        data = self.ifp.read(len)\n        self.crc = binascii.crc_hqx(data, self.crc)\n        return data\n\n    def _checkcrc(self):\n        filecrc = struct.unpack('>h', self.ifp.read(2))[0] & 0xffff\n        #self.crc = binascii.crc_hqx('\\0\\0', self.crc)\n        # XXXX Is this needed??\n        self.crc = self.crc & 0xffff\n        if filecrc != self.crc:\n            raise Error('CRC error, computed %x, read %x'\n                        % (self.crc, filecrc))\n        self.crc = 0\n\n    def _readheader(self):\n        len = self._read(1)\n        fname = self._read(ord(len))\n        rest = self._read(1 + 4 + 4 + 2 + 4 + 4)\n        self._checkcrc()\n\n        type = rest[1:5]\n        creator = rest[5:9]\n        flags = struct.unpack('>h', rest[9:11])[0]\n        self.dlen = struct.unpack('>l', rest[11:15])[0]\n        self.rlen = struct.unpack('>l', rest[15:19])[0]\n\n        self.FName = fname\n        self.FInfo = FInfo()\n        self.FInfo.Creator = creator\n        self.FInfo.Type = type\n        self.FInfo.Flags = flags\n\n        self.state = _DID_HEADER\n\n    def read(self, *n):\n        if self.state != _DID_HEADER:\n            raise Error('Read data at wrong time')\n        if n:\n            n = n[0]\n            n = min(n, self.dlen)\n        else:\n            n = self.dlen\n        rv = b''\n        while len(rv) < n:\n            rv = rv + self._read(n-len(rv))\n        self.dlen = self.dlen - n\n        return rv\n\n    def close_data(self):\n        if self.state != _DID_HEADER:\n            raise Error('close_data at wrong time')\n        if self.dlen:\n            dummy = self._read(self.dlen)\n        self._checkcrc()\n        self.state = _DID_DATA\n\n    def read_rsrc(self, *n):\n        if self.state == _DID_HEADER:\n            self.close_data()\n        if self.state != _DID_DATA:\n            raise Error('Read resource data at wrong time')\n        if n:\n            n = n[0]\n            n = min(n, self.rlen)\n        else:\n            n = self.rlen\n        self.rlen = self.rlen - n\n        return self._read(n)\n\n    def close(self):\n        if self.state is None:\n            return\n        try:\n            if self.rlen:\n                dummy = self.read_rsrc(self.rlen)\n            self._checkcrc()\n        finally:\n            self.state = None\n            self.ifp.close()\n\ndef hexbin(inp, out):\n    \"\"\"hexbin(infilename, outfilename) - Decode binhexed file\"\"\"\n    ifp = HexBin(inp)\n    finfo = ifp.FInfo\n    if not out:\n        out = ifp.FName\n\n    with io.open(out, 'wb') as ofp:\n        # XXXX Do translation on non-mac systems\n        while True:\n            d = ifp.read(128000)\n            if not d: break\n            ofp.write(d)\n    ifp.close_data()\n\n    d = ifp.read_rsrc(128000)\n    if d:\n        ofp = openrsrc(out, 'wb')\n        ofp.write(d)\n        while True:\n            d = ifp.read_rsrc(128000)\n            if not d: break\n            ofp.write(d)\n        ofp.close()\n\n    ifp.close()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/bisect.py",
    "content": "\"\"\"Bisection algorithms.\"\"\"\n\ndef insort_right(a, x, lo=0, hi=None):\n    \"\"\"Insert item x in list a, and keep it sorted assuming a is sorted.\n\n    If x is already in a, insert it to the right of the rightmost x.\n\n    Optional args lo (default 0) and hi (default len(a)) bound the\n    slice of a to be searched.\n    \"\"\"\n\n    lo = bisect_right(a, x, lo, hi)\n    a.insert(lo, x)\n\ndef bisect_right(a, x, lo=0, hi=None):\n    \"\"\"Return the index where to insert item x in list a, assuming a is sorted.\n\n    The return value i is such that all e in a[:i] have e <= x, and all e in\n    a[i:] have e > x.  So if x already appears in the list, a.insert(x) will\n    insert just after the rightmost x already there.\n\n    Optional args lo (default 0) and hi (default len(a)) bound the\n    slice of a to be searched.\n    \"\"\"\n\n    if lo < 0:\n        raise ValueError('lo must be non-negative')\n    if hi is None:\n        hi = len(a)\n    while lo < hi:\n        mid = (lo+hi)//2\n        if x < a[mid]: hi = mid\n        else: lo = mid+1\n    return lo\n\ndef insort_left(a, x, lo=0, hi=None):\n    \"\"\"Insert item x in list a, and keep it sorted assuming a is sorted.\n\n    If x is already in a, insert it to the left of the leftmost x.\n\n    Optional args lo (default 0) and hi (default len(a)) bound the\n    slice of a to be searched.\n    \"\"\"\n\n    lo = bisect_left(a, x, lo, hi)\n    a.insert(lo, x)\n\n\ndef bisect_left(a, x, lo=0, hi=None):\n    \"\"\"Return the index where to insert item x in list a, assuming a is sorted.\n\n    The return value i is such that all e in a[:i] have e < x, and all e in\n    a[i:] have e >= x.  So if x already appears in the list, a.insert(x) will\n    insert just before the leftmost x already there.\n\n    Optional args lo (default 0) and hi (default len(a)) bound the\n    slice of a to be searched.\n    \"\"\"\n\n    if lo < 0:\n        raise ValueError('lo must be non-negative')\n    if hi is None:\n        hi = len(a)\n    while lo < hi:\n        mid = (lo+hi)//2\n        if a[mid] < x: lo = mid+1\n        else: hi = mid\n    return lo\n\n# Overwrite above definitions with a fast C implementation\ntry:\n    from _bisect import *\nexcept ImportError:\n    pass\n\n# Create aliases\nbisect = bisect_right\ninsort = insort_right\n"
  },
  {
    "path": "rd/usr/lib/python3.8/bz2.py",
    "content": "\"\"\"Interface to the libbzip2 compression library.\n\nThis module provides a file interface, classes for incremental\n(de)compression, and functions for one-shot (de)compression.\n\"\"\"\n\n__all__ = [\"BZ2File\", \"BZ2Compressor\", \"BZ2Decompressor\",\n           \"open\", \"compress\", \"decompress\"]\n\n__author__ = \"Nadeem Vawda <nadeem.vawda@gmail.com>\"\n\nfrom builtins import open as _builtin_open\nimport io\nimport os\nimport warnings\nimport _compression\nfrom threading import RLock\n\nfrom _bz2 import BZ2Compressor, BZ2Decompressor\n\n\n_MODE_CLOSED   = 0\n_MODE_READ     = 1\n# Value 2 no longer used\n_MODE_WRITE    = 3\n\n_sentinel = object()\n\n\nclass BZ2File(_compression.BaseStream):\n\n    \"\"\"A file object providing transparent bzip2 (de)compression.\n\n    A BZ2File can act as a wrapper for an existing file object, or refer\n    directly to a named file on disk.\n\n    Note that BZ2File provides a *binary* file interface - data read is\n    returned as bytes, and data to be written should be given as bytes.\n    \"\"\"\n\n    def __init__(self, filename, mode=\"r\", buffering=_sentinel, compresslevel=9):\n        \"\"\"Open a bzip2-compressed file.\n\n        If filename is a str, bytes, or PathLike object, it gives the\n        name of the file to be opened. Otherwise, it should be a file\n        object, which will be used to read or write the compressed data.\n\n        mode can be 'r' for reading (default), 'w' for (over)writing,\n        'x' for creating exclusively, or 'a' for appending. These can\n        equivalently be given as 'rb', 'wb', 'xb', and 'ab'.\n\n        buffering is ignored since Python 3.0. Its use is deprecated.\n\n        If mode is 'w', 'x' or 'a', compresslevel can be a number between 1\n        and 9 specifying the level of compression: 1 produces the least\n        compression, and 9 (default) produces the most compression.\n\n        If mode is 'r', the input file may be the concatenation of\n        multiple compressed streams.\n        \"\"\"\n        # This lock must be recursive, so that BufferedIOBase's\n        # writelines() does not deadlock.\n        self._lock = RLock()\n        self._fp = None\n        self._closefp = False\n        self._mode = _MODE_CLOSED\n\n        if buffering is not _sentinel:\n            warnings.warn(\"Use of 'buffering' argument is deprecated and ignored \"\n                          \"since Python 3.0.\",\n                          DeprecationWarning,\n                          stacklevel=2)\n\n        if not (1 <= compresslevel <= 9):\n            raise ValueError(\"compresslevel must be between 1 and 9\")\n\n        if mode in (\"\", \"r\", \"rb\"):\n            mode = \"rb\"\n            mode_code = _MODE_READ\n        elif mode in (\"w\", \"wb\"):\n            mode = \"wb\"\n            mode_code = _MODE_WRITE\n            self._compressor = BZ2Compressor(compresslevel)\n        elif mode in (\"x\", \"xb\"):\n            mode = \"xb\"\n            mode_code = _MODE_WRITE\n            self._compressor = BZ2Compressor(compresslevel)\n        elif mode in (\"a\", \"ab\"):\n            mode = \"ab\"\n            mode_code = _MODE_WRITE\n            self._compressor = BZ2Compressor(compresslevel)\n        else:\n            raise ValueError(\"Invalid mode: %r\" % (mode,))\n\n        if isinstance(filename, (str, bytes, os.PathLike)):\n            self._fp = _builtin_open(filename, mode)\n            self._closefp = True\n            self._mode = mode_code\n        elif hasattr(filename, \"read\") or hasattr(filename, \"write\"):\n            self._fp = filename\n            self._mode = mode_code\n        else:\n            raise TypeError(\"filename must be a str, bytes, file or PathLike object\")\n\n        if self._mode == _MODE_READ:\n            raw = _compression.DecompressReader(self._fp,\n                BZ2Decompressor, trailing_error=OSError)\n            self._buffer = io.BufferedReader(raw)\n        else:\n            self._pos = 0\n\n    def close(self):\n        \"\"\"Flush and close the file.\n\n        May be called more than once without error. Once the file is\n        closed, any other operation on it will raise a ValueError.\n        \"\"\"\n        with self._lock:\n            if self._mode == _MODE_CLOSED:\n                return\n            try:\n                if self._mode == _MODE_READ:\n                    self._buffer.close()\n                elif self._mode == _MODE_WRITE:\n                    self._fp.write(self._compressor.flush())\n                    self._compressor = None\n            finally:\n                try:\n                    if self._closefp:\n                        self._fp.close()\n                finally:\n                    self._fp = None\n                    self._closefp = False\n                    self._mode = _MODE_CLOSED\n                    self._buffer = None\n\n    @property\n    def closed(self):\n        \"\"\"True if this file is closed.\"\"\"\n        return self._mode == _MODE_CLOSED\n\n    def fileno(self):\n        \"\"\"Return the file descriptor for the underlying file.\"\"\"\n        self._check_not_closed()\n        return self._fp.fileno()\n\n    def seekable(self):\n        \"\"\"Return whether the file supports seeking.\"\"\"\n        return self.readable() and self._buffer.seekable()\n\n    def readable(self):\n        \"\"\"Return whether the file was opened for reading.\"\"\"\n        self._check_not_closed()\n        return self._mode == _MODE_READ\n\n    def writable(self):\n        \"\"\"Return whether the file was opened for writing.\"\"\"\n        self._check_not_closed()\n        return self._mode == _MODE_WRITE\n\n    def peek(self, n=0):\n        \"\"\"Return buffered data without advancing the file position.\n\n        Always returns at least one byte of data, unless at EOF.\n        The exact number of bytes returned is unspecified.\n        \"\"\"\n        with self._lock:\n            self._check_can_read()\n            # Relies on the undocumented fact that BufferedReader.peek()\n            # always returns at least one byte (except at EOF), independent\n            # of the value of n\n            return self._buffer.peek(n)\n\n    def read(self, size=-1):\n        \"\"\"Read up to size uncompressed bytes from the file.\n\n        If size is negative or omitted, read until EOF is reached.\n        Returns b'' if the file is already at EOF.\n        \"\"\"\n        with self._lock:\n            self._check_can_read()\n            return self._buffer.read(size)\n\n    def read1(self, size=-1):\n        \"\"\"Read up to size uncompressed bytes, while trying to avoid\n        making multiple reads from the underlying stream. Reads up to a\n        buffer's worth of data if size is negative.\n\n        Returns b'' if the file is at EOF.\n        \"\"\"\n        with self._lock:\n            self._check_can_read()\n            if size < 0:\n                size = io.DEFAULT_BUFFER_SIZE\n            return self._buffer.read1(size)\n\n    def readinto(self, b):\n        \"\"\"Read bytes into b.\n\n        Returns the number of bytes read (0 for EOF).\n        \"\"\"\n        with self._lock:\n            self._check_can_read()\n            return self._buffer.readinto(b)\n\n    def readline(self, size=-1):\n        \"\"\"Read a line of uncompressed bytes from the file.\n\n        The terminating newline (if present) is retained. If size is\n        non-negative, no more than size bytes will be read (in which\n        case the line may be incomplete). Returns b'' if already at EOF.\n        \"\"\"\n        if not isinstance(size, int):\n            if not hasattr(size, \"__index__\"):\n                raise TypeError(\"Integer argument expected\")\n            size = size.__index__()\n        with self._lock:\n            self._check_can_read()\n            return self._buffer.readline(size)\n\n    def readlines(self, size=-1):\n        \"\"\"Read a list of lines of uncompressed bytes from the file.\n\n        size can be specified to control the number of lines read: no\n        further lines will be read once the total size of the lines read\n        so far equals or exceeds size.\n        \"\"\"\n        if not isinstance(size, int):\n            if not hasattr(size, \"__index__\"):\n                raise TypeError(\"Integer argument expected\")\n            size = size.__index__()\n        with self._lock:\n            self._check_can_read()\n            return self._buffer.readlines(size)\n\n    def write(self, data):\n        \"\"\"Write a byte string to the file.\n\n        Returns the number of uncompressed bytes written, which is\n        always len(data). Note that due to buffering, the file on disk\n        may not reflect the data written until close() is called.\n        \"\"\"\n        with self._lock:\n            self._check_can_write()\n            compressed = self._compressor.compress(data)\n            self._fp.write(compressed)\n            self._pos += len(data)\n            return len(data)\n\n    def writelines(self, seq):\n        \"\"\"Write a sequence of byte strings to the file.\n\n        Returns the number of uncompressed bytes written.\n        seq can be any iterable yielding byte strings.\n\n        Line separators are not added between the written byte strings.\n        \"\"\"\n        with self._lock:\n            return _compression.BaseStream.writelines(self, seq)\n\n    def seek(self, offset, whence=io.SEEK_SET):\n        \"\"\"Change the file position.\n\n        The new position is specified by offset, relative to the\n        position indicated by whence. Values for whence are:\n\n            0: start of stream (default); offset must not be negative\n            1: current stream position\n            2: end of stream; offset must not be positive\n\n        Returns the new file position.\n\n        Note that seeking is emulated, so depending on the parameters,\n        this operation may be extremely slow.\n        \"\"\"\n        with self._lock:\n            self._check_can_seek()\n            return self._buffer.seek(offset, whence)\n\n    def tell(self):\n        \"\"\"Return the current file position.\"\"\"\n        with self._lock:\n            self._check_not_closed()\n            if self._mode == _MODE_READ:\n                return self._buffer.tell()\n            return self._pos\n\n\ndef open(filename, mode=\"rb\", compresslevel=9,\n         encoding=None, errors=None, newline=None):\n    \"\"\"Open a bzip2-compressed file in binary or text mode.\n\n    The filename argument can be an actual filename (a str, bytes, or\n    PathLike object), or an existing file object to read from or write\n    to.\n\n    The mode argument can be \"r\", \"rb\", \"w\", \"wb\", \"x\", \"xb\", \"a\" or\n    \"ab\" for binary mode, or \"rt\", \"wt\", \"xt\" or \"at\" for text mode.\n    The default mode is \"rb\", and the default compresslevel is 9.\n\n    For binary mode, this function is equivalent to the BZ2File\n    constructor: BZ2File(filename, mode, compresslevel). In this case,\n    the encoding, errors and newline arguments must not be provided.\n\n    For text mode, a BZ2File object is created, and wrapped in an\n    io.TextIOWrapper instance with the specified encoding, error\n    handling behavior, and line ending(s).\n\n    \"\"\"\n    if \"t\" in mode:\n        if \"b\" in mode:\n            raise ValueError(\"Invalid mode: %r\" % (mode,))\n    else:\n        if encoding is not None:\n            raise ValueError(\"Argument 'encoding' not supported in binary mode\")\n        if errors is not None:\n            raise ValueError(\"Argument 'errors' not supported in binary mode\")\n        if newline is not None:\n            raise ValueError(\"Argument 'newline' not supported in binary mode\")\n\n    bz_mode = mode.replace(\"t\", \"\")\n    binary_file = BZ2File(filename, bz_mode, compresslevel=compresslevel)\n\n    if \"t\" in mode:\n        return io.TextIOWrapper(binary_file, encoding, errors, newline)\n    else:\n        return binary_file\n\n\ndef compress(data, compresslevel=9):\n    \"\"\"Compress a block of data.\n\n    compresslevel, if given, must be a number between 1 and 9.\n\n    For incremental compression, use a BZ2Compressor object instead.\n    \"\"\"\n    comp = BZ2Compressor(compresslevel)\n    return comp.compress(data) + comp.flush()\n\n\ndef decompress(data):\n    \"\"\"Decompress a block of data.\n\n    For incremental decompression, use a BZ2Decompressor object instead.\n    \"\"\"\n    results = []\n    while data:\n        decomp = BZ2Decompressor()\n        try:\n            res = decomp.decompress(data)\n        except OSError:\n            if results:\n                break  # Leftover data is not a valid bzip2 stream; ignore it.\n            else:\n                raise  # Error on the first iteration; bail out.\n        results.append(res)\n        if not decomp.eof:\n            raise ValueError(\"Compressed data ended before the \"\n                             \"end-of-stream marker was reached\")\n        data = decomp.unused_data\n    return b\"\".join(results)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/cProfile.py",
    "content": "#! /usr/bin/env python3\n\n\"\"\"Python interface for the 'lsprof' profiler.\n   Compatible with the 'profile' module.\n\"\"\"\n\n__all__ = [\"run\", \"runctx\", \"Profile\"]\n\nimport _lsprof\nimport profile as _pyprofile\n\n# ____________________________________________________________\n# Simple interface\n\ndef run(statement, filename=None, sort=-1):\n    return _pyprofile._Utils(Profile).run(statement, filename, sort)\n\ndef runctx(statement, globals, locals, filename=None, sort=-1):\n    return _pyprofile._Utils(Profile).runctx(statement, globals, locals,\n                                             filename, sort)\n\nrun.__doc__ = _pyprofile.run.__doc__\nrunctx.__doc__ = _pyprofile.runctx.__doc__\n\n# ____________________________________________________________\n\nclass Profile(_lsprof.Profiler):\n    \"\"\"Profile(timer=None, timeunit=None, subcalls=True, builtins=True)\n\n    Builds a profiler object using the specified timer function.\n    The default timer is a fast built-in one based on real time.\n    For custom timer functions returning integers, timeunit can\n    be a float specifying a scale (i.e. how long each integer unit\n    is, in seconds).\n    \"\"\"\n\n    # Most of the functionality is in the base class.\n    # This subclass only adds convenient and backward-compatible methods.\n\n    def print_stats(self, sort=-1):\n        import pstats\n        pstats.Stats(self).strip_dirs().sort_stats(sort).print_stats()\n\n    def dump_stats(self, file):\n        import marshal\n        with open(file, 'wb') as f:\n            self.create_stats()\n            marshal.dump(self.stats, f)\n\n    def create_stats(self):\n        self.disable()\n        self.snapshot_stats()\n\n    def snapshot_stats(self):\n        entries = self.getstats()\n        self.stats = {}\n        callersdicts = {}\n        # call information\n        for entry in entries:\n            func = label(entry.code)\n            nc = entry.callcount         # ncalls column of pstats (before '/')\n            cc = nc - entry.reccallcount # ncalls column of pstats (after '/')\n            tt = entry.inlinetime        # tottime column of pstats\n            ct = entry.totaltime         # cumtime column of pstats\n            callers = {}\n            callersdicts[id(entry.code)] = callers\n            self.stats[func] = cc, nc, tt, ct, callers\n        # subcall information\n        for entry in entries:\n            if entry.calls:\n                func = label(entry.code)\n                for subentry in entry.calls:\n                    try:\n                        callers = callersdicts[id(subentry.code)]\n                    except KeyError:\n                        continue\n                    nc = subentry.callcount\n                    cc = nc - subentry.reccallcount\n                    tt = subentry.inlinetime\n                    ct = subentry.totaltime\n                    if func in callers:\n                        prev = callers[func]\n                        nc += prev[0]\n                        cc += prev[1]\n                        tt += prev[2]\n                        ct += prev[3]\n                    callers[func] = nc, cc, tt, ct\n\n    # The following two methods can be called by clients to use\n    # a profiler to profile a statement, given as a string.\n\n    def run(self, cmd):\n        import __main__\n        dict = __main__.__dict__\n        return self.runctx(cmd, dict, dict)\n\n    def runctx(self, cmd, globals, locals):\n        self.enable()\n        try:\n            exec(cmd, globals, locals)\n        finally:\n            self.disable()\n        return self\n\n    # This method is more useful to profile a single function call.\n    def runcall(*args, **kw):\n        if len(args) >= 2:\n            self, func, *args = args\n        elif not args:\n            raise TypeError(\"descriptor 'runcall' of 'Profile' object \"\n                            \"needs an argument\")\n        elif 'func' in kw:\n            func = kw.pop('func')\n            self, *args = args\n            import warnings\n            warnings.warn(\"Passing 'func' as keyword argument is deprecated\",\n                          DeprecationWarning, stacklevel=2)\n        else:\n            raise TypeError('runcall expected at least 1 positional argument, '\n                            'got %d' % (len(args)-1))\n\n        self.enable()\n        try:\n            return func(*args, **kw)\n        finally:\n            self.disable()\n    runcall.__text_signature__ = '($self, func, /, *args, **kw)'\n\n    def __enter__(self):\n        self.enable()\n        return self\n\n    def __exit__(self, *exc_info):\n        self.disable()\n\n# ____________________________________________________________\n\ndef label(code):\n    if isinstance(code, str):\n        return ('~', 0, code)    # built-in functions ('~' sorts at the end)\n    else:\n        return (code.co_filename, code.co_firstlineno, code.co_name)\n\n# ____________________________________________________________\n\ndef main():\n    import os\n    import sys\n    import runpy\n    import pstats\n    from optparse import OptionParser\n    usage = \"cProfile.py [-o output_file_path] [-s sort] [-m module | scriptfile] [arg] ...\"\n    parser = OptionParser(usage=usage)\n    parser.allow_interspersed_args = False\n    parser.add_option('-o', '--outfile', dest=\"outfile\",\n        help=\"Save stats to <outfile>\", default=None)\n    parser.add_option('-s', '--sort', dest=\"sort\",\n        help=\"Sort order when printing to stdout, based on pstats.Stats class\",\n        default=-1,\n        choices=sorted(pstats.Stats.sort_arg_dict_default))\n    parser.add_option('-m', dest=\"module\", action=\"store_true\",\n        help=\"Profile a library module\", default=False)\n\n    if not sys.argv[1:]:\n        parser.print_usage()\n        sys.exit(2)\n\n    (options, args) = parser.parse_args()\n    sys.argv[:] = args\n\n    if len(args) > 0:\n        if options.module:\n            code = \"run_module(modname, run_name='__main__')\"\n            globs = {\n                'run_module': runpy.run_module,\n                'modname': args[0]\n            }\n        else:\n            progname = args[0]\n            sys.path.insert(0, os.path.dirname(progname))\n            with open(progname, 'rb') as fp:\n                code = compile(fp.read(), progname, 'exec')\n            globs = {\n                '__file__': progname,\n                '__name__': '__main__',\n                '__package__': None,\n                '__cached__': None,\n            }\n        runctx(code, globs, None, options.outfile, options.sort)\n    else:\n        parser.print_usage()\n    return parser\n\n# When invoked as main program, invoke the profiler on a script\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/calendar.py",
    "content": "\"\"\"Calendar printing functions\n\nNote when comparing these calendars to the ones printed by cal(1): By\ndefault, these calendars have Monday as the first day of the week, and\nSunday as the last (the European convention). Use setfirstweekday() to\nset the first day of the week (0=Monday, 6=Sunday).\"\"\"\n\nimport sys\nimport datetime\nimport locale as _locale\nfrom itertools import repeat\n\n__all__ = [\"IllegalMonthError\", \"IllegalWeekdayError\", \"setfirstweekday\",\n           \"firstweekday\", \"isleap\", \"leapdays\", \"weekday\", \"monthrange\",\n           \"monthcalendar\", \"prmonth\", \"month\", \"prcal\", \"calendar\",\n           \"timegm\", \"month_name\", \"month_abbr\", \"day_name\", \"day_abbr\",\n           \"Calendar\", \"TextCalendar\", \"HTMLCalendar\", \"LocaleTextCalendar\",\n           \"LocaleHTMLCalendar\", \"weekheader\"]\n\n# Exception raised for bad input (with string parameter for details)\nerror = ValueError\n\n# Exceptions raised for bad input\nclass IllegalMonthError(ValueError):\n    def __init__(self, month):\n        self.month = month\n    def __str__(self):\n        return \"bad month number %r; must be 1-12\" % self.month\n\n\nclass IllegalWeekdayError(ValueError):\n    def __init__(self, weekday):\n        self.weekday = weekday\n    def __str__(self):\n        return \"bad weekday number %r; must be 0 (Monday) to 6 (Sunday)\" % self.weekday\n\n\n# Constants for months referenced later\nJanuary = 1\nFebruary = 2\n\n# Number of days per month (except for February in leap years)\nmdays = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]\n\n# This module used to have hard-coded lists of day and month names, as\n# English strings.  The classes following emulate a read-only version of\n# that, but supply localized names.  Note that the values are computed\n# fresh on each call, in case the user changes locale between calls.\n\nclass _localized_month:\n\n    _months = [datetime.date(2001, i+1, 1).strftime for i in range(12)]\n    _months.insert(0, lambda x: \"\")\n\n    def __init__(self, format):\n        self.format = format\n\n    def __getitem__(self, i):\n        funcs = self._months[i]\n        if isinstance(i, slice):\n            return [f(self.format) for f in funcs]\n        else:\n            return funcs(self.format)\n\n    def __len__(self):\n        return 13\n\n\nclass _localized_day:\n\n    # January 1, 2001, was a Monday.\n    _days = [datetime.date(2001, 1, i+1).strftime for i in range(7)]\n\n    def __init__(self, format):\n        self.format = format\n\n    def __getitem__(self, i):\n        funcs = self._days[i]\n        if isinstance(i, slice):\n            return [f(self.format) for f in funcs]\n        else:\n            return funcs(self.format)\n\n    def __len__(self):\n        return 7\n\n\n# Full and abbreviated names of weekdays\nday_name = _localized_day('%A')\nday_abbr = _localized_day('%a')\n\n# Full and abbreviated names of months (1-based arrays!!!)\nmonth_name = _localized_month('%B')\nmonth_abbr = _localized_month('%b')\n\n# Constants for weekdays\n(MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY) = range(7)\n\n\ndef isleap(year):\n    \"\"\"Return True for leap years, False for non-leap years.\"\"\"\n    return year % 4 == 0 and (year % 100 != 0 or year % 400 == 0)\n\n\ndef leapdays(y1, y2):\n    \"\"\"Return number of leap years in range [y1, y2).\n       Assume y1 <= y2.\"\"\"\n    y1 -= 1\n    y2 -= 1\n    return (y2//4 - y1//4) - (y2//100 - y1//100) + (y2//400 - y1//400)\n\n\ndef weekday(year, month, day):\n    \"\"\"Return weekday (0-6 ~ Mon-Sun) for year, month (1-12), day (1-31).\"\"\"\n    if not datetime.MINYEAR <= year <= datetime.MAXYEAR:\n        year = 2000 + year % 400\n    return datetime.date(year, month, day).weekday()\n\n\ndef monthrange(year, month):\n    \"\"\"Return weekday (0-6 ~ Mon-Sun) and number of days (28-31) for\n       year, month.\"\"\"\n    if not 1 <= month <= 12:\n        raise IllegalMonthError(month)\n    day1 = weekday(year, month, 1)\n    ndays = mdays[month] + (month == February and isleap(year))\n    return day1, ndays\n\n\ndef _monthlen(year, month):\n    return mdays[month] + (month == February and isleap(year))\n\n\ndef _prevmonth(year, month):\n    if month == 1:\n        return year-1, 12\n    else:\n        return year, month-1\n\n\ndef _nextmonth(year, month):\n    if month == 12:\n        return year+1, 1\n    else:\n        return year, month+1\n\n\nclass Calendar(object):\n    \"\"\"\n    Base calendar class. This class doesn't do any formatting. It simply\n    provides data to subclasses.\n    \"\"\"\n\n    def __init__(self, firstweekday=0):\n        self.firstweekday = firstweekday # 0 = Monday, 6 = Sunday\n\n    def getfirstweekday(self):\n        return self._firstweekday % 7\n\n    def setfirstweekday(self, firstweekday):\n        self._firstweekday = firstweekday\n\n    firstweekday = property(getfirstweekday, setfirstweekday)\n\n    def iterweekdays(self):\n        \"\"\"\n        Return an iterator for one week of weekday numbers starting with the\n        configured first one.\n        \"\"\"\n        for i in range(self.firstweekday, self.firstweekday + 7):\n            yield i%7\n\n    def itermonthdates(self, year, month):\n        \"\"\"\n        Return an iterator for one month. The iterator will yield datetime.date\n        values and will always iterate through complete weeks, so it will yield\n        dates outside the specified month.\n        \"\"\"\n        for y, m, d in self.itermonthdays3(year, month):\n            yield datetime.date(y, m, d)\n\n    def itermonthdays(self, year, month):\n        \"\"\"\n        Like itermonthdates(), but will yield day numbers. For days outside\n        the specified month the day number is 0.\n        \"\"\"\n        day1, ndays = monthrange(year, month)\n        days_before = (day1 - self.firstweekday) % 7\n        yield from repeat(0, days_before)\n        yield from range(1, ndays + 1)\n        days_after = (self.firstweekday - day1 - ndays) % 7\n        yield from repeat(0, days_after)\n\n    def itermonthdays2(self, year, month):\n        \"\"\"\n        Like itermonthdates(), but will yield (day number, weekday number)\n        tuples. For days outside the specified month the day number is 0.\n        \"\"\"\n        for i, d in enumerate(self.itermonthdays(year, month), self.firstweekday):\n            yield d, i % 7\n\n    def itermonthdays3(self, year, month):\n        \"\"\"\n        Like itermonthdates(), but will yield (year, month, day) tuples.  Can be\n        used for dates outside of datetime.date range.\n        \"\"\"\n        day1, ndays = monthrange(year, month)\n        days_before = (day1 - self.firstweekday) % 7\n        days_after = (self.firstweekday - day1 - ndays) % 7\n        y, m = _prevmonth(year, month)\n        end = _monthlen(y, m) + 1\n        for d in range(end-days_before, end):\n            yield y, m, d\n        for d in range(1, ndays + 1):\n            yield year, month, d\n        y, m = _nextmonth(year, month)\n        for d in range(1, days_after + 1):\n            yield y, m, d\n\n    def itermonthdays4(self, year, month):\n        \"\"\"\n        Like itermonthdates(), but will yield (year, month, day, day_of_week) tuples.\n        Can be used for dates outside of datetime.date range.\n        \"\"\"\n        for i, (y, m, d) in enumerate(self.itermonthdays3(year, month)):\n            yield y, m, d, (self.firstweekday + i) % 7\n\n    def monthdatescalendar(self, year, month):\n        \"\"\"\n        Return a matrix (list of lists) representing a month's calendar.\n        Each row represents a week; week entries are datetime.date values.\n        \"\"\"\n        dates = list(self.itermonthdates(year, month))\n        return [ dates[i:i+7] for i in range(0, len(dates), 7) ]\n\n    def monthdays2calendar(self, year, month):\n        \"\"\"\n        Return a matrix representing a month's calendar.\n        Each row represents a week; week entries are\n        (day number, weekday number) tuples. Day numbers outside this month\n        are zero.\n        \"\"\"\n        days = list(self.itermonthdays2(year, month))\n        return [ days[i:i+7] for i in range(0, len(days), 7) ]\n\n    def monthdayscalendar(self, year, month):\n        \"\"\"\n        Return a matrix representing a month's calendar.\n        Each row represents a week; days outside this month are zero.\n        \"\"\"\n        days = list(self.itermonthdays(year, month))\n        return [ days[i:i+7] for i in range(0, len(days), 7) ]\n\n    def yeardatescalendar(self, year, width=3):\n        \"\"\"\n        Return the data for the specified year ready for formatting. The return\n        value is a list of month rows. Each month row contains up to width months.\n        Each month contains between 4 and 6 weeks and each week contains 1-7\n        days. Days are datetime.date objects.\n        \"\"\"\n        months = [\n            self.monthdatescalendar(year, i)\n            for i in range(January, January+12)\n        ]\n        return [months[i:i+width] for i in range(0, len(months), width) ]\n\n    def yeardays2calendar(self, year, width=3):\n        \"\"\"\n        Return the data for the specified year ready for formatting (similar to\n        yeardatescalendar()). Entries in the week lists are\n        (day number, weekday number) tuples. Day numbers outside this month are\n        zero.\n        \"\"\"\n        months = [\n            self.monthdays2calendar(year, i)\n            for i in range(January, January+12)\n        ]\n        return [months[i:i+width] for i in range(0, len(months), width) ]\n\n    def yeardayscalendar(self, year, width=3):\n        \"\"\"\n        Return the data for the specified year ready for formatting (similar to\n        yeardatescalendar()). Entries in the week lists are day numbers.\n        Day numbers outside this month are zero.\n        \"\"\"\n        months = [\n            self.monthdayscalendar(year, i)\n            for i in range(January, January+12)\n        ]\n        return [months[i:i+width] for i in range(0, len(months), width) ]\n\n\nclass TextCalendar(Calendar):\n    \"\"\"\n    Subclass of Calendar that outputs a calendar as a simple plain text\n    similar to the UNIX program cal.\n    \"\"\"\n\n    def prweek(self, theweek, width):\n        \"\"\"\n        Print a single week (no newline).\n        \"\"\"\n        print(self.formatweek(theweek, width), end='')\n\n    def formatday(self, day, weekday, width):\n        \"\"\"\n        Returns a formatted day.\n        \"\"\"\n        if day == 0:\n            s = ''\n        else:\n            s = '%2i' % day             # right-align single-digit days\n        return s.center(width)\n\n    def formatweek(self, theweek, width):\n        \"\"\"\n        Returns a single week in a string (no newline).\n        \"\"\"\n        return ' '.join(self.formatday(d, wd, width) for (d, wd) in theweek)\n\n    def formatweekday(self, day, width):\n        \"\"\"\n        Returns a formatted week day name.\n        \"\"\"\n        if width >= 9:\n            names = day_name\n        else:\n            names = day_abbr\n        return names[day][:width].center(width)\n\n    def formatweekheader(self, width):\n        \"\"\"\n        Return a header for a week.\n        \"\"\"\n        return ' '.join(self.formatweekday(i, width) for i in self.iterweekdays())\n\n    def formatmonthname(self, theyear, themonth, width, withyear=True):\n        \"\"\"\n        Return a formatted month name.\n        \"\"\"\n        s = month_name[themonth]\n        if withyear:\n            s = \"%s %r\" % (s, theyear)\n        return s.center(width)\n\n    def prmonth(self, theyear, themonth, w=0, l=0):\n        \"\"\"\n        Print a month's calendar.\n        \"\"\"\n        print(self.formatmonth(theyear, themonth, w, l), end='')\n\n    def formatmonth(self, theyear, themonth, w=0, l=0):\n        \"\"\"\n        Return a month's calendar string (multi-line).\n        \"\"\"\n        w = max(2, w)\n        l = max(1, l)\n        s = self.formatmonthname(theyear, themonth, 7 * (w + 1) - 1)\n        s = s.rstrip()\n        s += '\\n' * l\n        s += self.formatweekheader(w).rstrip()\n        s += '\\n' * l\n        for week in self.monthdays2calendar(theyear, themonth):\n            s += self.formatweek(week, w).rstrip()\n            s += '\\n' * l\n        return s\n\n    def formatyear(self, theyear, w=2, l=1, c=6, m=3):\n        \"\"\"\n        Returns a year's calendar as a multi-line string.\n        \"\"\"\n        w = max(2, w)\n        l = max(1, l)\n        c = max(2, c)\n        colwidth = (w + 1) * 7 - 1\n        v = []\n        a = v.append\n        a(repr(theyear).center(colwidth*m+c*(m-1)).rstrip())\n        a('\\n'*l)\n        header = self.formatweekheader(w)\n        for (i, row) in enumerate(self.yeardays2calendar(theyear, m)):\n            # months in this row\n            months = range(m*i+1, min(m*(i+1)+1, 13))\n            a('\\n'*l)\n            names = (self.formatmonthname(theyear, k, colwidth, False)\n                     for k in months)\n            a(formatstring(names, colwidth, c).rstrip())\n            a('\\n'*l)\n            headers = (header for k in months)\n            a(formatstring(headers, colwidth, c).rstrip())\n            a('\\n'*l)\n            # max number of weeks for this row\n            height = max(len(cal) for cal in row)\n            for j in range(height):\n                weeks = []\n                for cal in row:\n                    if j >= len(cal):\n                        weeks.append('')\n                    else:\n                        weeks.append(self.formatweek(cal[j], w))\n                a(formatstring(weeks, colwidth, c).rstrip())\n                a('\\n' * l)\n        return ''.join(v)\n\n    def pryear(self, theyear, w=0, l=0, c=6, m=3):\n        \"\"\"Print a year's calendar.\"\"\"\n        print(self.formatyear(theyear, w, l, c, m), end='')\n\n\nclass HTMLCalendar(Calendar):\n    \"\"\"\n    This calendar returns complete HTML pages.\n    \"\"\"\n\n    # CSS classes for the day <td>s\n    cssclasses = [\"mon\", \"tue\", \"wed\", \"thu\", \"fri\", \"sat\", \"sun\"]\n\n    # CSS classes for the day <th>s\n    cssclasses_weekday_head = cssclasses\n\n    # CSS class for the days before and after current month\n    cssclass_noday = \"noday\"\n\n    # CSS class for the month's head\n    cssclass_month_head = \"month\"\n\n    # CSS class for the month\n    cssclass_month = \"month\"\n\n    # CSS class for the year's table head\n    cssclass_year_head = \"year\"\n\n    # CSS class for the whole year table\n    cssclass_year = \"year\"\n\n    def formatday(self, day, weekday):\n        \"\"\"\n        Return a day as a table cell.\n        \"\"\"\n        if day == 0:\n            # day outside month\n            return '<td class=\"%s\">&nbsp;</td>' % self.cssclass_noday\n        else:\n            return '<td class=\"%s\">%d</td>' % (self.cssclasses[weekday], day)\n\n    def formatweek(self, theweek):\n        \"\"\"\n        Return a complete week as a table row.\n        \"\"\"\n        s = ''.join(self.formatday(d, wd) for (d, wd) in theweek)\n        return '<tr>%s</tr>' % s\n\n    def formatweekday(self, day):\n        \"\"\"\n        Return a weekday name as a table header.\n        \"\"\"\n        return '<th class=\"%s\">%s</th>' % (\n            self.cssclasses_weekday_head[day], day_abbr[day])\n\n    def formatweekheader(self):\n        \"\"\"\n        Return a header for a week as a table row.\n        \"\"\"\n        s = ''.join(self.formatweekday(i) for i in self.iterweekdays())\n        return '<tr>%s</tr>' % s\n\n    def formatmonthname(self, theyear, themonth, withyear=True):\n        \"\"\"\n        Return a month name as a table row.\n        \"\"\"\n        if withyear:\n            s = '%s %s' % (month_name[themonth], theyear)\n        else:\n            s = '%s' % month_name[themonth]\n        return '<tr><th colspan=\"7\" class=\"%s\">%s</th></tr>' % (\n            self.cssclass_month_head, s)\n\n    def formatmonth(self, theyear, themonth, withyear=True):\n        \"\"\"\n        Return a formatted month as a table.\n        \"\"\"\n        v = []\n        a = v.append\n        a('<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"%s\">' % (\n            self.cssclass_month))\n        a('\\n')\n        a(self.formatmonthname(theyear, themonth, withyear=withyear))\n        a('\\n')\n        a(self.formatweekheader())\n        a('\\n')\n        for week in self.monthdays2calendar(theyear, themonth):\n            a(self.formatweek(week))\n            a('\\n')\n        a('</table>')\n        a('\\n')\n        return ''.join(v)\n\n    def formatyear(self, theyear, width=3):\n        \"\"\"\n        Return a formatted year as a table of tables.\n        \"\"\"\n        v = []\n        a = v.append\n        width = max(width, 1)\n        a('<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"%s\">' %\n          self.cssclass_year)\n        a('\\n')\n        a('<tr><th colspan=\"%d\" class=\"%s\">%s</th></tr>' % (\n            width, self.cssclass_year_head, theyear))\n        for i in range(January, January+12, width):\n            # months in this row\n            months = range(i, min(i+width, 13))\n            a('<tr>')\n            for m in months:\n                a('<td>')\n                a(self.formatmonth(theyear, m, withyear=False))\n                a('</td>')\n            a('</tr>')\n        a('</table>')\n        return ''.join(v)\n\n    def formatyearpage(self, theyear, width=3, css='calendar.css', encoding=None):\n        \"\"\"\n        Return a formatted year as a complete HTML page.\n        \"\"\"\n        if encoding is None:\n            encoding = sys.getdefaultencoding()\n        v = []\n        a = v.append\n        a('<?xml version=\"1.0\" encoding=\"%s\"?>\\n' % encoding)\n        a('<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\\n')\n        a('<html>\\n')\n        a('<head>\\n')\n        a('<meta http-equiv=\"Content-Type\" content=\"text/html; charset=%s\" />\\n' % encoding)\n        if css is not None:\n            a('<link rel=\"stylesheet\" type=\"text/css\" href=\"%s\" />\\n' % css)\n        a('<title>Calendar for %d</title>\\n' % theyear)\n        a('</head>\\n')\n        a('<body>\\n')\n        a(self.formatyear(theyear, width))\n        a('</body>\\n')\n        a('</html>\\n')\n        return ''.join(v).encode(encoding, \"xmlcharrefreplace\")\n\n\nclass different_locale:\n    def __init__(self, locale):\n        self.locale = locale\n\n    def __enter__(self):\n        self.oldlocale = _locale.getlocale(_locale.LC_TIME)\n        _locale.setlocale(_locale.LC_TIME, self.locale)\n\n    def __exit__(self, *args):\n        _locale.setlocale(_locale.LC_TIME, self.oldlocale)\n\n\nclass LocaleTextCalendar(TextCalendar):\n    \"\"\"\n    This class can be passed a locale name in the constructor and will return\n    month and weekday names in the specified locale. If this locale includes\n    an encoding all strings containing month and weekday names will be returned\n    as unicode.\n    \"\"\"\n\n    def __init__(self, firstweekday=0, locale=None):\n        TextCalendar.__init__(self, firstweekday)\n        if locale is None:\n            locale = _locale.getdefaultlocale()\n        self.locale = locale\n\n    def formatweekday(self, day, width):\n        with different_locale(self.locale):\n            if width >= 9:\n                names = day_name\n            else:\n                names = day_abbr\n            name = names[day]\n            return name[:width].center(width)\n\n    def formatmonthname(self, theyear, themonth, width, withyear=True):\n        with different_locale(self.locale):\n            s = month_name[themonth]\n            if withyear:\n                s = \"%s %r\" % (s, theyear)\n            return s.center(width)\n\n\nclass LocaleHTMLCalendar(HTMLCalendar):\n    \"\"\"\n    This class can be passed a locale name in the constructor and will return\n    month and weekday names in the specified locale. If this locale includes\n    an encoding all strings containing month and weekday names will be returned\n    as unicode.\n    \"\"\"\n    def __init__(self, firstweekday=0, locale=None):\n        HTMLCalendar.__init__(self, firstweekday)\n        if locale is None:\n            locale = _locale.getdefaultlocale()\n        self.locale = locale\n\n    def formatweekday(self, day):\n        with different_locale(self.locale):\n            s = day_abbr[day]\n            return '<th class=\"%s\">%s</th>' % (self.cssclasses[day], s)\n\n    def formatmonthname(self, theyear, themonth, withyear=True):\n        with different_locale(self.locale):\n            s = month_name[themonth]\n            if withyear:\n                s = '%s %s' % (s, theyear)\n            return '<tr><th colspan=\"7\" class=\"month\">%s</th></tr>' % s\n\n\n# Support for old module level interface\nc = TextCalendar()\n\nfirstweekday = c.getfirstweekday\n\ndef setfirstweekday(firstweekday):\n    if not MONDAY <= firstweekday <= SUNDAY:\n        raise IllegalWeekdayError(firstweekday)\n    c.firstweekday = firstweekday\n\nmonthcalendar = c.monthdayscalendar\nprweek = c.prweek\nweek = c.formatweek\nweekheader = c.formatweekheader\nprmonth = c.prmonth\nmonth = c.formatmonth\ncalendar = c.formatyear\nprcal = c.pryear\n\n\n# Spacing of month columns for multi-column year calendar\n_colwidth = 7*3 - 1         # Amount printed by prweek()\n_spacing = 6                # Number of spaces between columns\n\n\ndef format(cols, colwidth=_colwidth, spacing=_spacing):\n    \"\"\"Prints multi-column formatting for year calendars\"\"\"\n    print(formatstring(cols, colwidth, spacing))\n\n\ndef formatstring(cols, colwidth=_colwidth, spacing=_spacing):\n    \"\"\"Returns a string formatted from n strings, centered within n columns.\"\"\"\n    spacing *= ' '\n    return spacing.join(c.center(colwidth) for c in cols)\n\n\nEPOCH = 1970\n_EPOCH_ORD = datetime.date(EPOCH, 1, 1).toordinal()\n\n\ndef timegm(tuple):\n    \"\"\"Unrelated but handy function to calculate Unix timestamp from GMT.\"\"\"\n    year, month, day, hour, minute, second = tuple[:6]\n    days = datetime.date(year, month, 1).toordinal() - _EPOCH_ORD + day - 1\n    hours = days*24 + hour\n    minutes = hours*60 + minute\n    seconds = minutes*60 + second\n    return seconds\n\n\ndef main(args):\n    import argparse\n    parser = argparse.ArgumentParser()\n    textgroup = parser.add_argument_group('text only arguments')\n    htmlgroup = parser.add_argument_group('html only arguments')\n    textgroup.add_argument(\n        \"-w\", \"--width\",\n        type=int, default=2,\n        help=\"width of date column (default 2)\"\n    )\n    textgroup.add_argument(\n        \"-l\", \"--lines\",\n        type=int, default=1,\n        help=\"number of lines for each week (default 1)\"\n    )\n    textgroup.add_argument(\n        \"-s\", \"--spacing\",\n        type=int, default=6,\n        help=\"spacing between months (default 6)\"\n    )\n    textgroup.add_argument(\n        \"-m\", \"--months\",\n        type=int, default=3,\n        help=\"months per row (default 3)\"\n    )\n    htmlgroup.add_argument(\n        \"-c\", \"--css\",\n        default=\"calendar.css\",\n        help=\"CSS to use for page\"\n    )\n    parser.add_argument(\n        \"-L\", \"--locale\",\n        default=None,\n        help=\"locale to be used from month and weekday names\"\n    )\n    parser.add_argument(\n        \"-e\", \"--encoding\",\n        default=None,\n        help=\"encoding to use for output\"\n    )\n    parser.add_argument(\n        \"-t\", \"--type\",\n        default=\"text\",\n        choices=(\"text\", \"html\"),\n        help=\"output type (text or html)\"\n    )\n    parser.add_argument(\n        \"year\",\n        nargs='?', type=int,\n        help=\"year number (1-9999)\"\n    )\n    parser.add_argument(\n        \"month\",\n        nargs='?', type=int,\n        help=\"month number (1-12, text only)\"\n    )\n\n    options = parser.parse_args(args[1:])\n\n    if options.locale and not options.encoding:\n        parser.error(\"if --locale is specified --encoding is required\")\n        sys.exit(1)\n\n    locale = options.locale, options.encoding\n\n    if options.type == \"html\":\n        if options.locale:\n            cal = LocaleHTMLCalendar(locale=locale)\n        else:\n            cal = HTMLCalendar()\n        encoding = options.encoding\n        if encoding is None:\n            encoding = sys.getdefaultencoding()\n        optdict = dict(encoding=encoding, css=options.css)\n        write = sys.stdout.buffer.write\n        if options.year is None:\n            write(cal.formatyearpage(datetime.date.today().year, **optdict))\n        elif options.month is None:\n            write(cal.formatyearpage(options.year, **optdict))\n        else:\n            parser.error(\"incorrect number of arguments\")\n            sys.exit(1)\n    else:\n        if options.locale:\n            cal = LocaleTextCalendar(locale=locale)\n        else:\n            cal = TextCalendar()\n        optdict = dict(w=options.width, l=options.lines)\n        if options.month is None:\n            optdict[\"c\"] = options.spacing\n            optdict[\"m\"] = options.months\n        if options.year is None:\n            result = cal.formatyear(datetime.date.today().year, **optdict)\n        elif options.month is None:\n            result = cal.formatyear(options.year, **optdict)\n        else:\n            result = cal.formatmonth(options.year, options.month, **optdict)\n        write = sys.stdout.write\n        if options.encoding:\n            result = result.encode(options.encoding)\n            write = sys.stdout.buffer.write\n        write(result)\n\n\nif __name__ == \"__main__\":\n    main(sys.argv)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/cgi.py",
    "content": "#! /usr/local/bin/python\n\n# NOTE: the above \"/usr/local/bin/python\" is NOT a mistake.  It is\n# intentionally NOT \"/usr/bin/env python\".  On many systems\n# (e.g. Solaris), /usr/local/bin is not in $PATH as passed to CGI\n# scripts, and /usr/local/bin is the default directory where Python is\n# installed, so /usr/bin/env would be unable to find python.  Granted,\n# binary installations by Linux vendors often install Python in\n# /usr/bin.  So let those vendors patch cgi.py to match their choice\n# of installation.\n\n\"\"\"Support module for CGI (Common Gateway Interface) scripts.\n\nThis module defines a number of utilities for use by CGI scripts\nwritten in Python.\n\"\"\"\n\n# History\n# -------\n#\n# Michael McLay started this module.  Steve Majewski changed the\n# interface to SvFormContentDict and FormContentDict.  The multipart\n# parsing was inspired by code submitted by Andreas Paepcke.  Guido van\n# Rossum rewrote, reformatted and documented the module and is currently\n# responsible for its maintenance.\n#\n\n__version__ = \"2.6\"\n\n\n# Imports\n# =======\n\nfrom io import StringIO, BytesIO, TextIOWrapper\nfrom collections.abc import Mapping\nimport sys\nimport os\nimport urllib.parse\nfrom email.parser import FeedParser\nfrom email.message import Message\nimport html\nimport locale\nimport tempfile\n\n__all__ = [\"MiniFieldStorage\", \"FieldStorage\", \"parse\", \"parse_multipart\",\n           \"parse_header\", \"test\", \"print_exception\", \"print_environ\",\n           \"print_form\", \"print_directory\", \"print_arguments\",\n           \"print_environ_usage\"]\n\n# Logging support\n# ===============\n\nlogfile = \"\"            # Filename to log to, if not empty\nlogfp = None            # File object to log to, if not None\n\ndef initlog(*allargs):\n    \"\"\"Write a log message, if there is a log file.\n\n    Even though this function is called initlog(), you should always\n    use log(); log is a variable that is set either to initlog\n    (initially), to dolog (once the log file has been opened), or to\n    nolog (when logging is disabled).\n\n    The first argument is a format string; the remaining arguments (if\n    any) are arguments to the % operator, so e.g.\n        log(\"%s: %s\", \"a\", \"b\")\n    will write \"a: b\" to the log file, followed by a newline.\n\n    If the global logfp is not None, it should be a file object to\n    which log data is written.\n\n    If the global logfp is None, the global logfile may be a string\n    giving a filename to open, in append mode.  This file should be\n    world writable!!!  If the file can't be opened, logging is\n    silently disabled (since there is no safe place where we could\n    send an error message).\n\n    \"\"\"\n    global log, logfile, logfp\n    if logfile and not logfp:\n        try:\n            logfp = open(logfile, \"a\")\n        except OSError:\n            pass\n    if not logfp:\n        log = nolog\n    else:\n        log = dolog\n    log(*allargs)\n\ndef dolog(fmt, *args):\n    \"\"\"Write a log message to the log file.  See initlog() for docs.\"\"\"\n    logfp.write(fmt%args + \"\\n\")\n\ndef nolog(*allargs):\n    \"\"\"Dummy function, assigned to log when logging is disabled.\"\"\"\n    pass\n\ndef closelog():\n    \"\"\"Close the log file.\"\"\"\n    global log, logfile, logfp\n    logfile = ''\n    if logfp:\n        logfp.close()\n        logfp = None\n    log = initlog\n\nlog = initlog           # The current logging function\n\n\n# Parsing functions\n# =================\n\n# Maximum input we will accept when REQUEST_METHOD is POST\n# 0 ==> unlimited input\nmaxlen = 0\n\ndef parse(fp=None, environ=os.environ, keep_blank_values=0, strict_parsing=0):\n    \"\"\"Parse a query in the environment or from a file (default stdin)\n\n        Arguments, all optional:\n\n        fp              : file pointer; default: sys.stdin.buffer\n\n        environ         : environment dictionary; default: os.environ\n\n        keep_blank_values: flag indicating whether blank values in\n            percent-encoded forms should be treated as blank strings.\n            A true value indicates that blanks should be retained as\n            blank strings.  The default false value indicates that\n            blank values are to be ignored and treated as if they were\n            not included.\n\n        strict_parsing: flag indicating what to do with parsing errors.\n            If false (the default), errors are silently ignored.\n            If true, errors raise a ValueError exception.\n    \"\"\"\n    if fp is None:\n        fp = sys.stdin\n\n    # field keys and values (except for files) are returned as strings\n    # an encoding is required to decode the bytes read from self.fp\n    if hasattr(fp,'encoding'):\n        encoding = fp.encoding\n    else:\n        encoding = 'latin-1'\n\n    # fp.read() must return bytes\n    if isinstance(fp, TextIOWrapper):\n        fp = fp.buffer\n\n    if not 'REQUEST_METHOD' in environ:\n        environ['REQUEST_METHOD'] = 'GET'       # For testing stand-alone\n    if environ['REQUEST_METHOD'] == 'POST':\n        ctype, pdict = parse_header(environ['CONTENT_TYPE'])\n        if ctype == 'multipart/form-data':\n            return parse_multipart(fp, pdict)\n        elif ctype == 'application/x-www-form-urlencoded':\n            clength = int(environ['CONTENT_LENGTH'])\n            if maxlen and clength > maxlen:\n                raise ValueError('Maximum content length exceeded')\n            qs = fp.read(clength).decode(encoding)\n        else:\n            qs = ''                     # Unknown content-type\n        if 'QUERY_STRING' in environ:\n            if qs: qs = qs + '&'\n            qs = qs + environ['QUERY_STRING']\n        elif sys.argv[1:]:\n            if qs: qs = qs + '&'\n            qs = qs + sys.argv[1]\n        environ['QUERY_STRING'] = qs    # XXX Shouldn't, really\n    elif 'QUERY_STRING' in environ:\n        qs = environ['QUERY_STRING']\n    else:\n        if sys.argv[1:]:\n            qs = sys.argv[1]\n        else:\n            qs = \"\"\n        environ['QUERY_STRING'] = qs    # XXX Shouldn't, really\n    return urllib.parse.parse_qs(qs, keep_blank_values, strict_parsing,\n                                 encoding=encoding)\n\n\ndef parse_multipart(fp, pdict, encoding=\"utf-8\", errors=\"replace\"):\n    \"\"\"Parse multipart input.\n\n    Arguments:\n    fp   : input file\n    pdict: dictionary containing other parameters of content-type header\n    encoding, errors: request encoding and error handler, passed to\n        FieldStorage\n\n    Returns a dictionary just like parse_qs(): keys are the field names, each\n    value is a list of values for that field. For non-file fields, the value\n    is a list of strings.\n    \"\"\"\n    # RFC 2026, Section 5.1 : The \"multipart\" boundary delimiters are always\n    # represented as 7bit US-ASCII.\n    boundary = pdict['boundary'].decode('ascii')\n    ctype = \"multipart/form-data; boundary={}\".format(boundary)\n    headers = Message()\n    headers.set_type(ctype)\n    try:\n        headers['Content-Length'] = pdict['CONTENT-LENGTH']\n    except KeyError:\n        pass\n    fs = FieldStorage(fp, headers=headers, encoding=encoding, errors=errors,\n        environ={'REQUEST_METHOD': 'POST'})\n    return {k: fs.getlist(k) for k in fs}\n\ndef _parseparam(s):\n    while s[:1] == ';':\n        s = s[1:]\n        end = s.find(';')\n        while end > 0 and (s.count('\"', 0, end) - s.count('\\\\\"', 0, end)) % 2:\n            end = s.find(';', end + 1)\n        if end < 0:\n            end = len(s)\n        f = s[:end]\n        yield f.strip()\n        s = s[end:]\n\ndef parse_header(line):\n    \"\"\"Parse a Content-type like header.\n\n    Return the main content-type and a dictionary of options.\n\n    \"\"\"\n    parts = _parseparam(';' + line)\n    key = parts.__next__()\n    pdict = {}\n    for p in parts:\n        i = p.find('=')\n        if i >= 0:\n            name = p[:i].strip().lower()\n            value = p[i+1:].strip()\n            if len(value) >= 2 and value[0] == value[-1] == '\"':\n                value = value[1:-1]\n                value = value.replace('\\\\\\\\', '\\\\').replace('\\\\\"', '\"')\n            pdict[name] = value\n    return key, pdict\n\n\n# Classes for field storage\n# =========================\n\nclass MiniFieldStorage:\n\n    \"\"\"Like FieldStorage, for use when no file uploads are possible.\"\"\"\n\n    # Dummy attributes\n    filename = None\n    list = None\n    type = None\n    file = None\n    type_options = {}\n    disposition = None\n    disposition_options = {}\n    headers = {}\n\n    def __init__(self, name, value):\n        \"\"\"Constructor from field name and value.\"\"\"\n        self.name = name\n        self.value = value\n        # self.file = StringIO(value)\n\n    def __repr__(self):\n        \"\"\"Return printable representation.\"\"\"\n        return \"MiniFieldStorage(%r, %r)\" % (self.name, self.value)\n\n\nclass FieldStorage:\n\n    \"\"\"Store a sequence of fields, reading multipart/form-data.\n\n    This class provides naming, typing, files stored on disk, and\n    more.  At the top level, it is accessible like a dictionary, whose\n    keys are the field names.  (Note: None can occur as a field name.)\n    The items are either a Python list (if there's multiple values) or\n    another FieldStorage or MiniFieldStorage object.  If it's a single\n    object, it has the following attributes:\n\n    name: the field name, if specified; otherwise None\n\n    filename: the filename, if specified; otherwise None; this is the\n        client side filename, *not* the file name on which it is\n        stored (that's a temporary file you don't deal with)\n\n    value: the value as a *string*; for file uploads, this\n        transparently reads the file every time you request the value\n        and returns *bytes*\n\n    file: the file(-like) object from which you can read the data *as\n        bytes* ; None if the data is stored a simple string\n\n    type: the content-type, or None if not specified\n\n    type_options: dictionary of options specified on the content-type\n        line\n\n    disposition: content-disposition, or None if not specified\n\n    disposition_options: dictionary of corresponding options\n\n    headers: a dictionary(-like) object (sometimes email.message.Message or a\n        subclass thereof) containing *all* headers\n\n    The class is subclassable, mostly for the purpose of overriding\n    the make_file() method, which is called internally to come up with\n    a file open for reading and writing.  This makes it possible to\n    override the default choice of storing all files in a temporary\n    directory and unlinking them as soon as they have been opened.\n\n    \"\"\"\n    def __init__(self, fp=None, headers=None, outerboundary=b'',\n                 environ=os.environ, keep_blank_values=0, strict_parsing=0,\n                 limit=None, encoding='utf-8', errors='replace',\n                 max_num_fields=None):\n        \"\"\"Constructor.  Read multipart/* until last part.\n\n        Arguments, all optional:\n\n        fp              : file pointer; default: sys.stdin.buffer\n            (not used when the request method is GET)\n            Can be :\n            1. a TextIOWrapper object\n            2. an object whose read() and readline() methods return bytes\n\n        headers         : header dictionary-like object; default:\n            taken from environ as per CGI spec\n\n        outerboundary   : terminating multipart boundary\n            (for internal use only)\n\n        environ         : environment dictionary; default: os.environ\n\n        keep_blank_values: flag indicating whether blank values in\n            percent-encoded forms should be treated as blank strings.\n            A true value indicates that blanks should be retained as\n            blank strings.  The default false value indicates that\n            blank values are to be ignored and treated as if they were\n            not included.\n\n        strict_parsing: flag indicating what to do with parsing errors.\n            If false (the default), errors are silently ignored.\n            If true, errors raise a ValueError exception.\n\n        limit : used internally to read parts of multipart/form-data forms,\n            to exit from the reading loop when reached. It is the difference\n            between the form content-length and the number of bytes already\n            read\n\n        encoding, errors : the encoding and error handler used to decode the\n            binary stream to strings. Must be the same as the charset defined\n            for the page sending the form (content-type : meta http-equiv or\n            header)\n\n        max_num_fields: int. If set, then __init__ throws a ValueError\n            if there are more than n fields read by parse_qsl().\n\n        \"\"\"\n        method = 'GET'\n        self.keep_blank_values = keep_blank_values\n        self.strict_parsing = strict_parsing\n        self.max_num_fields = max_num_fields\n        if 'REQUEST_METHOD' in environ:\n            method = environ['REQUEST_METHOD'].upper()\n        self.qs_on_post = None\n        if method == 'GET' or method == 'HEAD':\n            if 'QUERY_STRING' in environ:\n                qs = environ['QUERY_STRING']\n            elif sys.argv[1:]:\n                qs = sys.argv[1]\n            else:\n                qs = \"\"\n            qs = qs.encode(locale.getpreferredencoding(), 'surrogateescape')\n            fp = BytesIO(qs)\n            if headers is None:\n                headers = {'content-type':\n                           \"application/x-www-form-urlencoded\"}\n        if headers is None:\n            headers = {}\n            if method == 'POST':\n                # Set default content-type for POST to what's traditional\n                headers['content-type'] = \"application/x-www-form-urlencoded\"\n            if 'CONTENT_TYPE' in environ:\n                headers['content-type'] = environ['CONTENT_TYPE']\n            if 'QUERY_STRING' in environ:\n                self.qs_on_post = environ['QUERY_STRING']\n            if 'CONTENT_LENGTH' in environ:\n                headers['content-length'] = environ['CONTENT_LENGTH']\n        else:\n            if not (isinstance(headers, (Mapping, Message))):\n                raise TypeError(\"headers must be mapping or an instance of \"\n                                \"email.message.Message\")\n        self.headers = headers\n        if fp is None:\n            self.fp = sys.stdin.buffer\n        # self.fp.read() must return bytes\n        elif isinstance(fp, TextIOWrapper):\n            self.fp = fp.buffer\n        else:\n            if not (hasattr(fp, 'read') and hasattr(fp, 'readline')):\n                raise TypeError(\"fp must be file pointer\")\n            self.fp = fp\n\n        self.encoding = encoding\n        self.errors = errors\n\n        if not isinstance(outerboundary, bytes):\n            raise TypeError('outerboundary must be bytes, not %s'\n                            % type(outerboundary).__name__)\n        self.outerboundary = outerboundary\n\n        self.bytes_read = 0\n        self.limit = limit\n\n        # Process content-disposition header\n        cdisp, pdict = \"\", {}\n        if 'content-disposition' in self.headers:\n            cdisp, pdict = parse_header(self.headers['content-disposition'])\n        self.disposition = cdisp\n        self.disposition_options = pdict\n        self.name = None\n        if 'name' in pdict:\n            self.name = pdict['name']\n        self.filename = None\n        if 'filename' in pdict:\n            self.filename = pdict['filename']\n        self._binary_file = self.filename is not None\n\n        # Process content-type header\n        #\n        # Honor any existing content-type header.  But if there is no\n        # content-type header, use some sensible defaults.  Assume\n        # outerboundary is \"\" at the outer level, but something non-false\n        # inside a multi-part.  The default for an inner part is text/plain,\n        # but for an outer part it should be urlencoded.  This should catch\n        # bogus clients which erroneously forget to include a content-type\n        # header.\n        #\n        # See below for what we do if there does exist a content-type header,\n        # but it happens to be something we don't understand.\n        if 'content-type' in self.headers:\n            ctype, pdict = parse_header(self.headers['content-type'])\n        elif self.outerboundary or method != 'POST':\n            ctype, pdict = \"text/plain\", {}\n        else:\n            ctype, pdict = 'application/x-www-form-urlencoded', {}\n        self.type = ctype\n        self.type_options = pdict\n        if 'boundary' in pdict:\n            self.innerboundary = pdict['boundary'].encode(self.encoding,\n                                                          self.errors)\n        else:\n            self.innerboundary = b\"\"\n\n        clen = -1\n        if 'content-length' in self.headers:\n            try:\n                clen = int(self.headers['content-length'])\n            except ValueError:\n                pass\n            if maxlen and clen > maxlen:\n                raise ValueError('Maximum content length exceeded')\n        self.length = clen\n        if self.limit is None and clen >= 0:\n            self.limit = clen\n\n        self.list = self.file = None\n        self.done = 0\n        if ctype == 'application/x-www-form-urlencoded':\n            self.read_urlencoded()\n        elif ctype[:10] == 'multipart/':\n            self.read_multi(environ, keep_blank_values, strict_parsing)\n        else:\n            self.read_single()\n\n    def __del__(self):\n        try:\n            self.file.close()\n        except AttributeError:\n            pass\n\n    def __enter__(self):\n        return self\n\n    def __exit__(self, *args):\n        self.file.close()\n\n    def __repr__(self):\n        \"\"\"Return a printable representation.\"\"\"\n        return \"FieldStorage(%r, %r, %r)\" % (\n                self.name, self.filename, self.value)\n\n    def __iter__(self):\n        return iter(self.keys())\n\n    def __getattr__(self, name):\n        if name != 'value':\n            raise AttributeError(name)\n        if self.file:\n            self.file.seek(0)\n            value = self.file.read()\n            self.file.seek(0)\n        elif self.list is not None:\n            value = self.list\n        else:\n            value = None\n        return value\n\n    def __getitem__(self, key):\n        \"\"\"Dictionary style indexing.\"\"\"\n        if self.list is None:\n            raise TypeError(\"not indexable\")\n        found = []\n        for item in self.list:\n            if item.name == key: found.append(item)\n        if not found:\n            raise KeyError(key)\n        if len(found) == 1:\n            return found[0]\n        else:\n            return found\n\n    def getvalue(self, key, default=None):\n        \"\"\"Dictionary style get() method, including 'value' lookup.\"\"\"\n        if key in self:\n            value = self[key]\n            if isinstance(value, list):\n                return [x.value for x in value]\n            else:\n                return value.value\n        else:\n            return default\n\n    def getfirst(self, key, default=None):\n        \"\"\" Return the first value received.\"\"\"\n        if key in self:\n            value = self[key]\n            if isinstance(value, list):\n                return value[0].value\n            else:\n                return value.value\n        else:\n            return default\n\n    def getlist(self, key):\n        \"\"\" Return list of received values.\"\"\"\n        if key in self:\n            value = self[key]\n            if isinstance(value, list):\n                return [x.value for x in value]\n            else:\n                return [value.value]\n        else:\n            return []\n\n    def keys(self):\n        \"\"\"Dictionary style keys() method.\"\"\"\n        if self.list is None:\n            raise TypeError(\"not indexable\")\n        return list(set(item.name for item in self.list))\n\n    def __contains__(self, key):\n        \"\"\"Dictionary style __contains__ method.\"\"\"\n        if self.list is None:\n            raise TypeError(\"not indexable\")\n        return any(item.name == key for item in self.list)\n\n    def __len__(self):\n        \"\"\"Dictionary style len(x) support.\"\"\"\n        return len(self.keys())\n\n    def __bool__(self):\n        if self.list is None:\n            raise TypeError(\"Cannot be converted to bool.\")\n        return bool(self.list)\n\n    def read_urlencoded(self):\n        \"\"\"Internal: read data in query string format.\"\"\"\n        qs = self.fp.read(self.length)\n        if not isinstance(qs, bytes):\n            raise ValueError(\"%s should return bytes, got %s\" \\\n                             % (self.fp, type(qs).__name__))\n        qs = qs.decode(self.encoding, self.errors)\n        if self.qs_on_post:\n            qs += '&' + self.qs_on_post\n        query = urllib.parse.parse_qsl(\n            qs, self.keep_blank_values, self.strict_parsing,\n            encoding=self.encoding, errors=self.errors,\n            max_num_fields=self.max_num_fields)\n        self.list = [MiniFieldStorage(key, value) for key, value in query]\n        self.skip_lines()\n\n    FieldStorageClass = None\n\n    def read_multi(self, environ, keep_blank_values, strict_parsing):\n        \"\"\"Internal: read a part that is itself multipart.\"\"\"\n        ib = self.innerboundary\n        if not valid_boundary(ib):\n            raise ValueError('Invalid boundary in multipart form: %r' % (ib,))\n        self.list = []\n        if self.qs_on_post:\n            query = urllib.parse.parse_qsl(\n                self.qs_on_post, self.keep_blank_values, self.strict_parsing,\n                encoding=self.encoding, errors=self.errors,\n                max_num_fields=self.max_num_fields)\n            self.list.extend(MiniFieldStorage(key, value) for key, value in query)\n\n        klass = self.FieldStorageClass or self.__class__\n        first_line = self.fp.readline() # bytes\n        if not isinstance(first_line, bytes):\n            raise ValueError(\"%s should return bytes, got %s\" \\\n                             % (self.fp, type(first_line).__name__))\n        self.bytes_read += len(first_line)\n\n        # Ensure that we consume the file until we've hit our inner boundary\n        while (first_line.strip() != (b\"--\" + self.innerboundary) and\n                first_line):\n            first_line = self.fp.readline()\n            self.bytes_read += len(first_line)\n\n        # Propagate max_num_fields into the sub class appropriately\n        max_num_fields = self.max_num_fields\n        if max_num_fields is not None:\n            max_num_fields -= len(self.list)\n\n        while True:\n            parser = FeedParser()\n            hdr_text = b\"\"\n            while True:\n                data = self.fp.readline()\n                hdr_text += data\n                if not data.strip():\n                    break\n            if not hdr_text:\n                break\n            # parser takes strings, not bytes\n            self.bytes_read += len(hdr_text)\n            parser.feed(hdr_text.decode(self.encoding, self.errors))\n            headers = parser.close()\n\n            # Some clients add Content-Length for part headers, ignore them\n            if 'content-length' in headers:\n                del headers['content-length']\n\n            limit = None if self.limit is None \\\n                else self.limit - self.bytes_read\n            part = klass(self.fp, headers, ib, environ, keep_blank_values,\n                         strict_parsing, limit,\n                         self.encoding, self.errors, max_num_fields)\n\n            if max_num_fields is not None:\n                max_num_fields -= 1\n                if part.list:\n                    max_num_fields -= len(part.list)\n                if max_num_fields < 0:\n                    raise ValueError('Max number of fields exceeded')\n\n            self.bytes_read += part.bytes_read\n            self.list.append(part)\n            if part.done or self.bytes_read >= self.length > 0:\n                break\n        self.skip_lines()\n\n    def read_single(self):\n        \"\"\"Internal: read an atomic part.\"\"\"\n        if self.length >= 0:\n            self.read_binary()\n            self.skip_lines()\n        else:\n            self.read_lines()\n        self.file.seek(0)\n\n    bufsize = 8*1024            # I/O buffering size for copy to file\n\n    def read_binary(self):\n        \"\"\"Internal: read binary data.\"\"\"\n        self.file = self.make_file()\n        todo = self.length\n        if todo >= 0:\n            while todo > 0:\n                data = self.fp.read(min(todo, self.bufsize)) # bytes\n                if not isinstance(data, bytes):\n                    raise ValueError(\"%s should return bytes, got %s\"\n                                     % (self.fp, type(data).__name__))\n                self.bytes_read += len(data)\n                if not data:\n                    self.done = -1\n                    break\n                self.file.write(data)\n                todo = todo - len(data)\n\n    def read_lines(self):\n        \"\"\"Internal: read lines until EOF or outerboundary.\"\"\"\n        if self._binary_file:\n            self.file = self.__file = BytesIO() # store data as bytes for files\n        else:\n            self.file = self.__file = StringIO() # as strings for other fields\n        if self.outerboundary:\n            self.read_lines_to_outerboundary()\n        else:\n            self.read_lines_to_eof()\n\n    def __write(self, line):\n        \"\"\"line is always bytes, not string\"\"\"\n        if self.__file is not None:\n            if self.__file.tell() + len(line) > 1000:\n                self.file = self.make_file()\n                data = self.__file.getvalue()\n                self.file.write(data)\n                self.__file = None\n        if self._binary_file:\n            # keep bytes\n            self.file.write(line)\n        else:\n            # decode to string\n            self.file.write(line.decode(self.encoding, self.errors))\n\n    def read_lines_to_eof(self):\n        \"\"\"Internal: read lines until EOF.\"\"\"\n        while 1:\n            line = self.fp.readline(1<<16) # bytes\n            self.bytes_read += len(line)\n            if not line:\n                self.done = -1\n                break\n            self.__write(line)\n\n    def read_lines_to_outerboundary(self):\n        \"\"\"Internal: read lines until outerboundary.\n        Data is read as bytes: boundaries and line ends must be converted\n        to bytes for comparisons.\n        \"\"\"\n        next_boundary = b\"--\" + self.outerboundary\n        last_boundary = next_boundary + b\"--\"\n        delim = b\"\"\n        last_line_lfend = True\n        _read = 0\n        while 1:\n\n            if self.limit is not None and 0 <= self.limit <= _read:\n                break\n            line = self.fp.readline(1<<16) # bytes\n            self.bytes_read += len(line)\n            _read += len(line)\n            if not line:\n                self.done = -1\n                break\n            if delim == b\"\\r\":\n                line = delim + line\n                delim = b\"\"\n            if line.startswith(b\"--\") and last_line_lfend:\n                strippedline = line.rstrip()\n                if strippedline == next_boundary:\n                    break\n                if strippedline == last_boundary:\n                    self.done = 1\n                    break\n            odelim = delim\n            if line.endswith(b\"\\r\\n\"):\n                delim = b\"\\r\\n\"\n                line = line[:-2]\n                last_line_lfend = True\n            elif line.endswith(b\"\\n\"):\n                delim = b\"\\n\"\n                line = line[:-1]\n                last_line_lfend = True\n            elif line.endswith(b\"\\r\"):\n                # We may interrupt \\r\\n sequences if they span the 2**16\n                # byte boundary\n                delim = b\"\\r\"\n                line = line[:-1]\n                last_line_lfend = False\n            else:\n                delim = b\"\"\n                last_line_lfend = False\n            self.__write(odelim + line)\n\n    def skip_lines(self):\n        \"\"\"Internal: skip lines until outer boundary if defined.\"\"\"\n        if not self.outerboundary or self.done:\n            return\n        next_boundary = b\"--\" + self.outerboundary\n        last_boundary = next_boundary + b\"--\"\n        last_line_lfend = True\n        while True:\n            line = self.fp.readline(1<<16)\n            self.bytes_read += len(line)\n            if not line:\n                self.done = -1\n                break\n            if line.endswith(b\"--\") and last_line_lfend:\n                strippedline = line.strip()\n                if strippedline == next_boundary:\n                    break\n                if strippedline == last_boundary:\n                    self.done = 1\n                    break\n            last_line_lfend = line.endswith(b'\\n')\n\n    def make_file(self):\n        \"\"\"Overridable: return a readable & writable file.\n\n        The file will be used as follows:\n        - data is written to it\n        - seek(0)\n        - data is read from it\n\n        The file is opened in binary mode for files, in text mode\n        for other fields\n\n        This version opens a temporary file for reading and writing,\n        and immediately deletes (unlinks) it.  The trick (on Unix!) is\n        that the file can still be used, but it can't be opened by\n        another process, and it will automatically be deleted when it\n        is closed or when the current process terminates.\n\n        If you want a more permanent file, you derive a class which\n        overrides this method.  If you want a visible temporary file\n        that is nevertheless automatically deleted when the script\n        terminates, try defining a __del__ method in a derived class\n        which unlinks the temporary files you have created.\n\n        \"\"\"\n        if self._binary_file:\n            return tempfile.TemporaryFile(\"wb+\")\n        else:\n            return tempfile.TemporaryFile(\"w+\",\n                encoding=self.encoding, newline = '\\n')\n\n\n# Test/debug code\n# ===============\n\ndef test(environ=os.environ):\n    \"\"\"Robust test CGI script, usable as main program.\n\n    Write minimal HTTP headers and dump all information provided to\n    the script in HTML form.\n\n    \"\"\"\n    print(\"Content-type: text/html\")\n    print()\n    sys.stderr = sys.stdout\n    try:\n        form = FieldStorage()   # Replace with other classes to test those\n        print_directory()\n        print_arguments()\n        print_form(form)\n        print_environ(environ)\n        print_environ_usage()\n        def f():\n            exec(\"testing print_exception() -- <I>italics?</I>\")\n        def g(f=f):\n            f()\n        print(\"<H3>What follows is a test, not an actual exception:</H3>\")\n        g()\n    except:\n        print_exception()\n\n    print(\"<H1>Second try with a small maxlen...</H1>\")\n\n    global maxlen\n    maxlen = 50\n    try:\n        form = FieldStorage()   # Replace with other classes to test those\n        print_directory()\n        print_arguments()\n        print_form(form)\n        print_environ(environ)\n    except:\n        print_exception()\n\ndef print_exception(type=None, value=None, tb=None, limit=None):\n    if type is None:\n        type, value, tb = sys.exc_info()\n    import traceback\n    print()\n    print(\"<H3>Traceback (most recent call last):</H3>\")\n    list = traceback.format_tb(tb, limit) + \\\n           traceback.format_exception_only(type, value)\n    print(\"<PRE>%s<B>%s</B></PRE>\" % (\n        html.escape(\"\".join(list[:-1])),\n        html.escape(list[-1]),\n        ))\n    del tb\n\ndef print_environ(environ=os.environ):\n    \"\"\"Dump the shell environment as HTML.\"\"\"\n    keys = sorted(environ.keys())\n    print()\n    print(\"<H3>Shell Environment:</H3>\")\n    print(\"<DL>\")\n    for key in keys:\n        print(\"<DT>\", html.escape(key), \"<DD>\", html.escape(environ[key]))\n    print(\"</DL>\")\n    print()\n\ndef print_form(form):\n    \"\"\"Dump the contents of a form as HTML.\"\"\"\n    keys = sorted(form.keys())\n    print()\n    print(\"<H3>Form Contents:</H3>\")\n    if not keys:\n        print(\"<P>No form fields.\")\n    print(\"<DL>\")\n    for key in keys:\n        print(\"<DT>\" + html.escape(key) + \":\", end=' ')\n        value = form[key]\n        print(\"<i>\" + html.escape(repr(type(value))) + \"</i>\")\n        print(\"<DD>\" + html.escape(repr(value)))\n    print(\"</DL>\")\n    print()\n\ndef print_directory():\n    \"\"\"Dump the current directory as HTML.\"\"\"\n    print()\n    print(\"<H3>Current Working Directory:</H3>\")\n    try:\n        pwd = os.getcwd()\n    except OSError as msg:\n        print(\"OSError:\", html.escape(str(msg)))\n    else:\n        print(html.escape(pwd))\n    print()\n\ndef print_arguments():\n    print()\n    print(\"<H3>Command Line Arguments:</H3>\")\n    print()\n    print(sys.argv)\n    print()\n\ndef print_environ_usage():\n    \"\"\"Dump a list of environment variables used by CGI as HTML.\"\"\"\n    print(\"\"\"\n<H3>These environment variables could have been set:</H3>\n<UL>\n<LI>AUTH_TYPE\n<LI>CONTENT_LENGTH\n<LI>CONTENT_TYPE\n<LI>DATE_GMT\n<LI>DATE_LOCAL\n<LI>DOCUMENT_NAME\n<LI>DOCUMENT_ROOT\n<LI>DOCUMENT_URI\n<LI>GATEWAY_INTERFACE\n<LI>LAST_MODIFIED\n<LI>PATH\n<LI>PATH_INFO\n<LI>PATH_TRANSLATED\n<LI>QUERY_STRING\n<LI>REMOTE_ADDR\n<LI>REMOTE_HOST\n<LI>REMOTE_IDENT\n<LI>REMOTE_USER\n<LI>REQUEST_METHOD\n<LI>SCRIPT_NAME\n<LI>SERVER_NAME\n<LI>SERVER_PORT\n<LI>SERVER_PROTOCOL\n<LI>SERVER_ROOT\n<LI>SERVER_SOFTWARE\n</UL>\nIn addition, HTTP headers sent by the server may be passed in the\nenvironment as well.  Here are some common variable names:\n<UL>\n<LI>HTTP_ACCEPT\n<LI>HTTP_CONNECTION\n<LI>HTTP_HOST\n<LI>HTTP_PRAGMA\n<LI>HTTP_REFERER\n<LI>HTTP_USER_AGENT\n</UL>\n\"\"\")\n\n\n# Utilities\n# =========\n\ndef valid_boundary(s):\n    import re\n    if isinstance(s, bytes):\n        _vb_pattern = b\"^[ -~]{0,200}[!-~]$\"\n    else:\n        _vb_pattern = \"^[ -~]{0,200}[!-~]$\"\n    return re.match(_vb_pattern, s)\n\n# Invoke mainline\n# ===============\n\n# Call test() when this file is run as a script (not imported as a module)\nif __name__ == '__main__':\n    test()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/cgitb.py",
    "content": "\"\"\"More comprehensive traceback formatting for Python scripts.\n\nTo enable this module, do:\n\n    import cgitb; cgitb.enable()\n\nat the top of your script.  The optional arguments to enable() are:\n\n    display     - if true, tracebacks are displayed in the web browser\n    logdir      - if set, tracebacks are written to files in this directory\n    context     - number of lines of source code to show for each stack frame\n    format      - 'text' or 'html' controls the output format\n\nBy default, tracebacks are displayed but not saved, the context is 5 lines\nand the output format is 'html' (for backwards compatibility with the\noriginal use of this module)\n\nAlternatively, if you have caught an exception and want cgitb to display it\nfor you, call cgitb.handler().  The optional argument to handler() is a\n3-item tuple (etype, evalue, etb) just like the value of sys.exc_info().\nThe default handler displays output as HTML.\n\n\"\"\"\nimport inspect\nimport keyword\nimport linecache\nimport os\nimport pydoc\nimport sys\nimport tempfile\nimport time\nimport tokenize\nimport traceback\n\ndef reset():\n    \"\"\"Return a string that resets the CGI and browser to a known state.\"\"\"\n    return '''<!--: spam\nContent-Type: text/html\n\n<body bgcolor=\"#f0f0f8\"><font color=\"#f0f0f8\" size=\"-5\"> -->\n<body bgcolor=\"#f0f0f8\"><font color=\"#f0f0f8\" size=\"-5\"> --> -->\n</font> </font> </font> </script> </object> </blockquote> </pre>\n</table> </table> </table> </table> </table> </font> </font> </font>'''\n\n__UNDEF__ = []                          # a special sentinel object\ndef small(text):\n    if text:\n        return '<small>' + text + '</small>'\n    else:\n        return ''\n\ndef strong(text):\n    if text:\n        return '<strong>' + text + '</strong>'\n    else:\n        return ''\n\ndef grey(text):\n    if text:\n        return '<font color=\"#909090\">' + text + '</font>'\n    else:\n        return ''\n\ndef lookup(name, frame, locals):\n    \"\"\"Find the value for a given name in the given environment.\"\"\"\n    if name in locals:\n        return 'local', locals[name]\n    if name in frame.f_globals:\n        return 'global', frame.f_globals[name]\n    if '__builtins__' in frame.f_globals:\n        builtins = frame.f_globals['__builtins__']\n        if type(builtins) is type({}):\n            if name in builtins:\n                return 'builtin', builtins[name]\n        else:\n            if hasattr(builtins, name):\n                return 'builtin', getattr(builtins, name)\n    return None, __UNDEF__\n\ndef scanvars(reader, frame, locals):\n    \"\"\"Scan one logical line of Python and look up values of variables used.\"\"\"\n    vars, lasttoken, parent, prefix, value = [], None, None, '', __UNDEF__\n    for ttype, token, start, end, line in tokenize.generate_tokens(reader):\n        if ttype == tokenize.NEWLINE: break\n        if ttype == tokenize.NAME and token not in keyword.kwlist:\n            if lasttoken == '.':\n                if parent is not __UNDEF__:\n                    value = getattr(parent, token, __UNDEF__)\n                    vars.append((prefix + token, prefix, value))\n            else:\n                where, value = lookup(token, frame, locals)\n                vars.append((token, where, value))\n        elif token == '.':\n            prefix += lasttoken + '.'\n            parent = value\n        else:\n            parent, prefix = None, ''\n        lasttoken = token\n    return vars\n\ndef html(einfo, context=5):\n    \"\"\"Return a nice HTML document describing a given traceback.\"\"\"\n    etype, evalue, etb = einfo\n    if isinstance(etype, type):\n        etype = etype.__name__\n    pyver = 'Python ' + sys.version.split()[0] + ': ' + sys.executable\n    date = time.ctime(time.time())\n    head = '<body bgcolor=\"#f0f0f8\">' + pydoc.html.heading(\n        '<big><big>%s</big></big>' %\n        strong(pydoc.html.escape(str(etype))),\n        '#ffffff', '#6622aa', pyver + '<br>' + date) + '''\n<p>A problem occurred in a Python script.  Here is the sequence of\nfunction calls leading up to the error, in the order they occurred.</p>'''\n\n    indent = '<tt>' + small('&nbsp;' * 5) + '&nbsp;</tt>'\n    frames = []\n    records = inspect.getinnerframes(etb, context)\n    for frame, file, lnum, func, lines, index in records:\n        if file:\n            file = os.path.abspath(file)\n            link = '<a href=\"file://%s\">%s</a>' % (file, pydoc.html.escape(file))\n        else:\n            file = link = '?'\n        args, varargs, varkw, locals = inspect.getargvalues(frame)\n        call = ''\n        if func != '?':\n            call = 'in ' + strong(pydoc.html.escape(func))\n            if func != \"<module>\":\n                call += inspect.formatargvalues(args, varargs, varkw, locals,\n                    formatvalue=lambda value: '=' + pydoc.html.repr(value))\n\n        highlight = {}\n        def reader(lnum=[lnum]):\n            highlight[lnum[0]] = 1\n            try: return linecache.getline(file, lnum[0])\n            finally: lnum[0] += 1\n        vars = scanvars(reader, frame, locals)\n\n        rows = ['<tr><td bgcolor=\"#d8bbff\">%s%s %s</td></tr>' %\n                ('<big>&nbsp;</big>', link, call)]\n        if index is not None:\n            i = lnum - index\n            for line in lines:\n                num = small('&nbsp;' * (5-len(str(i))) + str(i)) + '&nbsp;'\n                if i in highlight:\n                    line = '<tt>=&gt;%s%s</tt>' % (num, pydoc.html.preformat(line))\n                    rows.append('<tr><td bgcolor=\"#ffccee\">%s</td></tr>' % line)\n                else:\n                    line = '<tt>&nbsp;&nbsp;%s%s</tt>' % (num, pydoc.html.preformat(line))\n                    rows.append('<tr><td>%s</td></tr>' % grey(line))\n                i += 1\n\n        done, dump = {}, []\n        for name, where, value in vars:\n            if name in done: continue\n            done[name] = 1\n            if value is not __UNDEF__:\n                if where in ('global', 'builtin'):\n                    name = ('<em>%s</em> ' % where) + strong(name)\n                elif where == 'local':\n                    name = strong(name)\n                else:\n                    name = where + strong(name.split('.')[-1])\n                dump.append('%s&nbsp;= %s' % (name, pydoc.html.repr(value)))\n            else:\n                dump.append(name + ' <em>undefined</em>')\n\n        rows.append('<tr><td>%s</td></tr>' % small(grey(', '.join(dump))))\n        frames.append('''\n<table width=\"100%%\" cellspacing=0 cellpadding=0 border=0>\n%s</table>''' % '\\n'.join(rows))\n\n    exception = ['<p>%s: %s' % (strong(pydoc.html.escape(str(etype))),\n                                pydoc.html.escape(str(evalue)))]\n    for name in dir(evalue):\n        if name[:1] == '_': continue\n        value = pydoc.html.repr(getattr(evalue, name))\n        exception.append('\\n<br>%s%s&nbsp;=\\n%s' % (indent, name, value))\n\n    return head + ''.join(frames) + ''.join(exception) + '''\n\n\n<!-- The above is a description of an error in a Python program, formatted\n     for a Web browser because the 'cgitb' module was enabled.  In case you\n     are not reading this in a Web browser, here is the original traceback:\n\n%s\n-->\n''' % pydoc.html.escape(\n          ''.join(traceback.format_exception(etype, evalue, etb)))\n\ndef text(einfo, context=5):\n    \"\"\"Return a plain text document describing a given traceback.\"\"\"\n    etype, evalue, etb = einfo\n    if isinstance(etype, type):\n        etype = etype.__name__\n    pyver = 'Python ' + sys.version.split()[0] + ': ' + sys.executable\n    date = time.ctime(time.time())\n    head = \"%s\\n%s\\n%s\\n\" % (str(etype), pyver, date) + '''\nA problem occurred in a Python script.  Here is the sequence of\nfunction calls leading up to the error, in the order they occurred.\n'''\n\n    frames = []\n    records = inspect.getinnerframes(etb, context)\n    for frame, file, lnum, func, lines, index in records:\n        file = file and os.path.abspath(file) or '?'\n        args, varargs, varkw, locals = inspect.getargvalues(frame)\n        call = ''\n        if func != '?':\n            call = 'in ' + func\n            if func != \"<module>\":\n                call += inspect.formatargvalues(args, varargs, varkw, locals,\n                    formatvalue=lambda value: '=' + pydoc.text.repr(value))\n\n        highlight = {}\n        def reader(lnum=[lnum]):\n            highlight[lnum[0]] = 1\n            try: return linecache.getline(file, lnum[0])\n            finally: lnum[0] += 1\n        vars = scanvars(reader, frame, locals)\n\n        rows = [' %s %s' % (file, call)]\n        if index is not None:\n            i = lnum - index\n            for line in lines:\n                num = '%5d ' % i\n                rows.append(num+line.rstrip())\n                i += 1\n\n        done, dump = {}, []\n        for name, where, value in vars:\n            if name in done: continue\n            done[name] = 1\n            if value is not __UNDEF__:\n                if where == 'global': name = 'global ' + name\n                elif where != 'local': name = where + name.split('.')[-1]\n                dump.append('%s = %s' % (name, pydoc.text.repr(value)))\n            else:\n                dump.append(name + ' undefined')\n\n        rows.append('\\n'.join(dump))\n        frames.append('\\n%s\\n' % '\\n'.join(rows))\n\n    exception = ['%s: %s' % (str(etype), str(evalue))]\n    for name in dir(evalue):\n        value = pydoc.text.repr(getattr(evalue, name))\n        exception.append('\\n%s%s = %s' % (\" \"*4, name, value))\n\n    return head + ''.join(frames) + ''.join(exception) + '''\n\nThe above is a description of an error in a Python program.  Here is\nthe original traceback:\n\n%s\n''' % ''.join(traceback.format_exception(etype, evalue, etb))\n\nclass Hook:\n    \"\"\"A hook to replace sys.excepthook that shows tracebacks in HTML.\"\"\"\n\n    def __init__(self, display=1, logdir=None, context=5, file=None,\n                 format=\"html\"):\n        self.display = display          # send tracebacks to browser if true\n        self.logdir = logdir            # log tracebacks to files if not None\n        self.context = context          # number of source code lines per frame\n        self.file = file or sys.stdout  # place to send the output\n        self.format = format\n\n    def __call__(self, etype, evalue, etb):\n        self.handle((etype, evalue, etb))\n\n    def handle(self, info=None):\n        info = info or sys.exc_info()\n        if self.format == \"html\":\n            self.file.write(reset())\n\n        formatter = (self.format==\"html\") and html or text\n        plain = False\n        try:\n            doc = formatter(info, self.context)\n        except:                         # just in case something goes wrong\n            doc = ''.join(traceback.format_exception(*info))\n            plain = True\n\n        if self.display:\n            if plain:\n                doc = pydoc.html.escape(doc)\n                self.file.write('<pre>' + doc + '</pre>\\n')\n            else:\n                self.file.write(doc + '\\n')\n        else:\n            self.file.write('<p>A problem occurred in a Python script.\\n')\n\n        if self.logdir is not None:\n            suffix = ['.txt', '.html'][self.format==\"html\"]\n            (fd, path) = tempfile.mkstemp(suffix=suffix, dir=self.logdir)\n\n            try:\n                with os.fdopen(fd, 'w') as file:\n                    file.write(doc)\n                msg = '%s contains the description of this error.' % path\n            except:\n                msg = 'Tried to save traceback to %s, but failed.' % path\n\n            if self.format == 'html':\n                self.file.write('<p>%s</p>\\n' % msg)\n            else:\n                self.file.write(msg + '\\n')\n        try:\n            self.file.flush()\n        except: pass\n\nhandler = Hook().handle\ndef enable(display=1, logdir=None, context=5, format=\"html\"):\n    \"\"\"Install an exception handler that formats tracebacks as HTML.\n\n    The optional argument 'display' can be set to 0 to suppress sending the\n    traceback to the browser, and 'logdir' can be set to a directory to cause\n    tracebacks to be written to files there.\"\"\"\n    sys.excepthook = Hook(display=display, logdir=logdir,\n                          context=context, format=format)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/chunk.py",
    "content": "\"\"\"Simple class to read IFF chunks.\n\nAn IFF chunk (used in formats such as AIFF, TIFF, RMFF (RealMedia File\nFormat)) has the following structure:\n\n+----------------+\n| ID (4 bytes)   |\n+----------------+\n| size (4 bytes) |\n+----------------+\n| data           |\n| ...            |\n+----------------+\n\nThe ID is a 4-byte string which identifies the type of chunk.\n\nThe size field (a 32-bit value, encoded using big-endian byte order)\ngives the size of the whole chunk, including the 8-byte header.\n\nUsually an IFF-type file consists of one or more chunks.  The proposed\nusage of the Chunk class defined here is to instantiate an instance at\nthe start of each chunk and read from the instance until it reaches\nthe end, after which a new instance can be instantiated.  At the end\nof the file, creating a new instance will fail with an EOFError\nexception.\n\nUsage:\nwhile True:\n    try:\n        chunk = Chunk(file)\n    except EOFError:\n        break\n    chunktype = chunk.getname()\n    while True:\n        data = chunk.read(nbytes)\n        if not data:\n            pass\n        # do something with data\n\nThe interface is file-like.  The implemented methods are:\nread, close, seek, tell, isatty.\nExtra methods are: skip() (called by close, skips to the end of the chunk),\ngetname() (returns the name (ID) of the chunk)\n\nThe __init__ method has one required argument, a file-like object\n(including a chunk instance), and one optional argument, a flag which\nspecifies whether or not chunks are aligned on 2-byte boundaries.  The\ndefault is 1, i.e. aligned.\n\"\"\"\n\nclass Chunk:\n    def __init__(self, file, align=True, bigendian=True, inclheader=False):\n        import struct\n        self.closed = False\n        self.align = align      # whether to align to word (2-byte) boundaries\n        if bigendian:\n            strflag = '>'\n        else:\n            strflag = '<'\n        self.file = file\n        self.chunkname = file.read(4)\n        if len(self.chunkname) < 4:\n            raise EOFError\n        try:\n            self.chunksize = struct.unpack_from(strflag+'L', file.read(4))[0]\n        except struct.error:\n            raise EOFError from None\n        if inclheader:\n            self.chunksize = self.chunksize - 8 # subtract header\n        self.size_read = 0\n        try:\n            self.offset = self.file.tell()\n        except (AttributeError, OSError):\n            self.seekable = False\n        else:\n            self.seekable = True\n\n    def getname(self):\n        \"\"\"Return the name (ID) of the current chunk.\"\"\"\n        return self.chunkname\n\n    def getsize(self):\n        \"\"\"Return the size of the current chunk.\"\"\"\n        return self.chunksize\n\n    def close(self):\n        if not self.closed:\n            try:\n                self.skip()\n            finally:\n                self.closed = True\n\n    def isatty(self):\n        if self.closed:\n            raise ValueError(\"I/O operation on closed file\")\n        return False\n\n    def seek(self, pos, whence=0):\n        \"\"\"Seek to specified position into the chunk.\n        Default position is 0 (start of chunk).\n        If the file is not seekable, this will result in an error.\n        \"\"\"\n\n        if self.closed:\n            raise ValueError(\"I/O operation on closed file\")\n        if not self.seekable:\n            raise OSError(\"cannot seek\")\n        if whence == 1:\n            pos = pos + self.size_read\n        elif whence == 2:\n            pos = pos + self.chunksize\n        if pos < 0 or pos > self.chunksize:\n            raise RuntimeError\n        self.file.seek(self.offset + pos, 0)\n        self.size_read = pos\n\n    def tell(self):\n        if self.closed:\n            raise ValueError(\"I/O operation on closed file\")\n        return self.size_read\n\n    def read(self, size=-1):\n        \"\"\"Read at most size bytes from the chunk.\n        If size is omitted or negative, read until the end\n        of the chunk.\n        \"\"\"\n\n        if self.closed:\n            raise ValueError(\"I/O operation on closed file\")\n        if self.size_read >= self.chunksize:\n            return b''\n        if size < 0:\n            size = self.chunksize - self.size_read\n        if size > self.chunksize - self.size_read:\n            size = self.chunksize - self.size_read\n        data = self.file.read(size)\n        self.size_read = self.size_read + len(data)\n        if self.size_read == self.chunksize and \\\n           self.align and \\\n           (self.chunksize & 1):\n            dummy = self.file.read(1)\n            self.size_read = self.size_read + len(dummy)\n        return data\n\n    def skip(self):\n        \"\"\"Skip the rest of the chunk.\n        If you are not interested in the contents of the chunk,\n        this method should be called so that the file points to\n        the start of the next chunk.\n        \"\"\"\n\n        if self.closed:\n            raise ValueError(\"I/O operation on closed file\")\n        if self.seekable:\n            try:\n                n = self.chunksize - self.size_read\n                # maybe fix alignment\n                if self.align and (self.chunksize & 1):\n                    n = n + 1\n                self.file.seek(n, 1)\n                self.size_read = self.size_read + n\n                return\n            except OSError:\n                pass\n        while self.size_read < self.chunksize:\n            n = min(8192, self.chunksize - self.size_read)\n            dummy = self.read(n)\n            if not dummy:\n                raise EOFError\n"
  },
  {
    "path": "rd/usr/lib/python3.8/cmd.py",
    "content": "\"\"\"A generic class to build line-oriented command interpreters.\n\nInterpreters constructed with this class obey the following conventions:\n\n1. End of file on input is processed as the command 'EOF'.\n2. A command is parsed out of each line by collecting the prefix composed\n   of characters in the identchars member.\n3. A command `foo' is dispatched to a method 'do_foo()'; the do_ method\n   is passed a single argument consisting of the remainder of the line.\n4. Typing an empty line repeats the last command.  (Actually, it calls the\n   method `emptyline', which may be overridden in a subclass.)\n5. There is a predefined `help' method.  Given an argument `topic', it\n   calls the command `help_topic'.  With no arguments, it lists all topics\n   with defined help_ functions, broken into up to three topics; documented\n   commands, miscellaneous help topics, and undocumented commands.\n6. The command '?' is a synonym for `help'.  The command '!' is a synonym\n   for `shell', if a do_shell method exists.\n7. If completion is enabled, completing commands will be done automatically,\n   and completing of commands args is done by calling complete_foo() with\n   arguments text, line, begidx, endidx.  text is string we are matching\n   against, all returned matches must begin with it.  line is the current\n   input line (lstripped), begidx and endidx are the beginning and end\n   indexes of the text being matched, which could be used to provide\n   different completion depending upon which position the argument is in.\n\nThe `default' method may be overridden to intercept commands for which there\nis no do_ method.\n\nThe `completedefault' method may be overridden to intercept completions for\ncommands that have no complete_ method.\n\nThe data member `self.ruler' sets the character used to draw separator lines\nin the help messages.  If empty, no ruler line is drawn.  It defaults to \"=\".\n\nIf the value of `self.intro' is nonempty when the cmdloop method is called,\nit is printed out on interpreter startup.  This value may be overridden\nvia an optional argument to the cmdloop() method.\n\nThe data members `self.doc_header', `self.misc_header', and\n`self.undoc_header' set the headers used for the help function's\nlistings of documented functions, miscellaneous topics, and undocumented\nfunctions respectively.\n\"\"\"\n\nimport string, sys\n\n__all__ = [\"Cmd\"]\n\nPROMPT = '(Cmd) '\nIDENTCHARS = string.ascii_letters + string.digits + '_'\n\nclass Cmd:\n    \"\"\"A simple framework for writing line-oriented command interpreters.\n\n    These are often useful for test harnesses, administrative tools, and\n    prototypes that will later be wrapped in a more sophisticated interface.\n\n    A Cmd instance or subclass instance is a line-oriented interpreter\n    framework.  There is no good reason to instantiate Cmd itself; rather,\n    it's useful as a superclass of an interpreter class you define yourself\n    in order to inherit Cmd's methods and encapsulate action methods.\n\n    \"\"\"\n    prompt = PROMPT\n    identchars = IDENTCHARS\n    ruler = '='\n    lastcmd = ''\n    intro = None\n    doc_leader = \"\"\n    doc_header = \"Documented commands (type help <topic>):\"\n    misc_header = \"Miscellaneous help topics:\"\n    undoc_header = \"Undocumented commands:\"\n    nohelp = \"*** No help on %s\"\n    use_rawinput = 1\n\n    def __init__(self, completekey='tab', stdin=None, stdout=None):\n        \"\"\"Instantiate a line-oriented interpreter framework.\n\n        The optional argument 'completekey' is the readline name of a\n        completion key; it defaults to the Tab key. If completekey is\n        not None and the readline module is available, command completion\n        is done automatically. The optional arguments stdin and stdout\n        specify alternate input and output file objects; if not specified,\n        sys.stdin and sys.stdout are used.\n\n        \"\"\"\n        if stdin is not None:\n            self.stdin = stdin\n        else:\n            self.stdin = sys.stdin\n        if stdout is not None:\n            self.stdout = stdout\n        else:\n            self.stdout = sys.stdout\n        self.cmdqueue = []\n        self.completekey = completekey\n\n    def cmdloop(self, intro=None):\n        \"\"\"Repeatedly issue a prompt, accept input, parse an initial prefix\n        off the received input, and dispatch to action methods, passing them\n        the remainder of the line as argument.\n\n        \"\"\"\n\n        self.preloop()\n        if self.use_rawinput and self.completekey:\n            try:\n                import readline\n                self.old_completer = readline.get_completer()\n                readline.set_completer(self.complete)\n                readline.parse_and_bind(self.completekey+\": complete\")\n            except ImportError:\n                pass\n        try:\n            if intro is not None:\n                self.intro = intro\n            if self.intro:\n                self.stdout.write(str(self.intro)+\"\\n\")\n            stop = None\n            while not stop:\n                if self.cmdqueue:\n                    line = self.cmdqueue.pop(0)\n                else:\n                    if self.use_rawinput:\n                        try:\n                            line = input(self.prompt)\n                        except EOFError:\n                            line = 'EOF'\n                    else:\n                        self.stdout.write(self.prompt)\n                        self.stdout.flush()\n                        line = self.stdin.readline()\n                        if not len(line):\n                            line = 'EOF'\n                        else:\n                            line = line.rstrip('\\r\\n')\n                line = self.precmd(line)\n                stop = self.onecmd(line)\n                stop = self.postcmd(stop, line)\n            self.postloop()\n        finally:\n            if self.use_rawinput and self.completekey:\n                try:\n                    import readline\n                    readline.set_completer(self.old_completer)\n                except ImportError:\n                    pass\n\n\n    def precmd(self, line):\n        \"\"\"Hook method executed just before the command line is\n        interpreted, but after the input prompt is generated and issued.\n\n        \"\"\"\n        return line\n\n    def postcmd(self, stop, line):\n        \"\"\"Hook method executed just after a command dispatch is finished.\"\"\"\n        return stop\n\n    def preloop(self):\n        \"\"\"Hook method executed once when the cmdloop() method is called.\"\"\"\n        pass\n\n    def postloop(self):\n        \"\"\"Hook method executed once when the cmdloop() method is about to\n        return.\n\n        \"\"\"\n        pass\n\n    def parseline(self, line):\n        \"\"\"Parse the line into a command name and a string containing\n        the arguments.  Returns a tuple containing (command, args, line).\n        'command' and 'args' may be None if the line couldn't be parsed.\n        \"\"\"\n        line = line.strip()\n        if not line:\n            return None, None, line\n        elif line[0] == '?':\n            line = 'help ' + line[1:]\n        elif line[0] == '!':\n            if hasattr(self, 'do_shell'):\n                line = 'shell ' + line[1:]\n            else:\n                return None, None, line\n        i, n = 0, len(line)\n        while i < n and line[i] in self.identchars: i = i+1\n        cmd, arg = line[:i], line[i:].strip()\n        return cmd, arg, line\n\n    def onecmd(self, line):\n        \"\"\"Interpret the argument as though it had been typed in response\n        to the prompt.\n\n        This may be overridden, but should not normally need to be;\n        see the precmd() and postcmd() methods for useful execution hooks.\n        The return value is a flag indicating whether interpretation of\n        commands by the interpreter should stop.\n\n        \"\"\"\n        cmd, arg, line = self.parseline(line)\n        if not line:\n            return self.emptyline()\n        if cmd is None:\n            return self.default(line)\n        self.lastcmd = line\n        if line == 'EOF' :\n            self.lastcmd = ''\n        if cmd == '':\n            return self.default(line)\n        else:\n            try:\n                func = getattr(self, 'do_' + cmd)\n            except AttributeError:\n                return self.default(line)\n            return func(arg)\n\n    def emptyline(self):\n        \"\"\"Called when an empty line is entered in response to the prompt.\n\n        If this method is not overridden, it repeats the last nonempty\n        command entered.\n\n        \"\"\"\n        if self.lastcmd:\n            return self.onecmd(self.lastcmd)\n\n    def default(self, line):\n        \"\"\"Called on an input line when the command prefix is not recognized.\n\n        If this method is not overridden, it prints an error message and\n        returns.\n\n        \"\"\"\n        self.stdout.write('*** Unknown syntax: %s\\n'%line)\n\n    def completedefault(self, *ignored):\n        \"\"\"Method called to complete an input line when no command-specific\n        complete_*() method is available.\n\n        By default, it returns an empty list.\n\n        \"\"\"\n        return []\n\n    def completenames(self, text, *ignored):\n        dotext = 'do_'+text\n        return [a[3:] for a in self.get_names() if a.startswith(dotext)]\n\n    def complete(self, text, state):\n        \"\"\"Return the next possible completion for 'text'.\n\n        If a command has not been entered, then complete against command list.\n        Otherwise try to call complete_<command> to get list of completions.\n        \"\"\"\n        if state == 0:\n            import readline\n            origline = readline.get_line_buffer()\n            line = origline.lstrip()\n            stripped = len(origline) - len(line)\n            begidx = readline.get_begidx() - stripped\n            endidx = readline.get_endidx() - stripped\n            if begidx>0:\n                cmd, args, foo = self.parseline(line)\n                if cmd == '':\n                    compfunc = self.completedefault\n                else:\n                    try:\n                        compfunc = getattr(self, 'complete_' + cmd)\n                    except AttributeError:\n                        compfunc = self.completedefault\n            else:\n                compfunc = self.completenames\n            self.completion_matches = compfunc(text, line, begidx, endidx)\n        try:\n            return self.completion_matches[state]\n        except IndexError:\n            return None\n\n    def get_names(self):\n        # This method used to pull in base class attributes\n        # at a time dir() didn't do it yet.\n        return dir(self.__class__)\n\n    def complete_help(self, *args):\n        commands = set(self.completenames(*args))\n        topics = set(a[5:] for a in self.get_names()\n                     if a.startswith('help_' + args[0]))\n        return list(commands | topics)\n\n    def do_help(self, arg):\n        'List available commands with \"help\" or detailed help with \"help cmd\".'\n        if arg:\n            # XXX check arg syntax\n            try:\n                func = getattr(self, 'help_' + arg)\n            except AttributeError:\n                try:\n                    doc=getattr(self, 'do_' + arg).__doc__\n                    if doc:\n                        self.stdout.write(\"%s\\n\"%str(doc))\n                        return\n                except AttributeError:\n                    pass\n                self.stdout.write(\"%s\\n\"%str(self.nohelp % (arg,)))\n                return\n            func()\n        else:\n            names = self.get_names()\n            cmds_doc = []\n            cmds_undoc = []\n            help = {}\n            for name in names:\n                if name[:5] == 'help_':\n                    help[name[5:]]=1\n            names.sort()\n            # There can be duplicates if routines overridden\n            prevname = ''\n            for name in names:\n                if name[:3] == 'do_':\n                    if name == prevname:\n                        continue\n                    prevname = name\n                    cmd=name[3:]\n                    if cmd in help:\n                        cmds_doc.append(cmd)\n                        del help[cmd]\n                    elif getattr(self, name).__doc__:\n                        cmds_doc.append(cmd)\n                    else:\n                        cmds_undoc.append(cmd)\n            self.stdout.write(\"%s\\n\"%str(self.doc_leader))\n            self.print_topics(self.doc_header,   cmds_doc,   15,80)\n            self.print_topics(self.misc_header,  list(help.keys()),15,80)\n            self.print_topics(self.undoc_header, cmds_undoc, 15,80)\n\n    def print_topics(self, header, cmds, cmdlen, maxcol):\n        if cmds:\n            self.stdout.write(\"%s\\n\"%str(header))\n            if self.ruler:\n                self.stdout.write(\"%s\\n\"%str(self.ruler * len(header)))\n            self.columnize(cmds, maxcol-1)\n            self.stdout.write(\"\\n\")\n\n    def columnize(self, list, displaywidth=80):\n        \"\"\"Display a list of strings as a compact set of columns.\n\n        Each column is only as wide as necessary.\n        Columns are separated by two spaces (one was not legible enough).\n        \"\"\"\n        if not list:\n            self.stdout.write(\"<empty>\\n\")\n            return\n\n        nonstrings = [i for i in range(len(list))\n                        if not isinstance(list[i], str)]\n        if nonstrings:\n            raise TypeError(\"list[i] not a string for i in %s\"\n                            % \", \".join(map(str, nonstrings)))\n        size = len(list)\n        if size == 1:\n            self.stdout.write('%s\\n'%str(list[0]))\n            return\n        # Try every row count from 1 upwards\n        for nrows in range(1, len(list)):\n            ncols = (size+nrows-1) // nrows\n            colwidths = []\n            totwidth = -2\n            for col in range(ncols):\n                colwidth = 0\n                for row in range(nrows):\n                    i = row + nrows*col\n                    if i >= size:\n                        break\n                    x = list[i]\n                    colwidth = max(colwidth, len(x))\n                colwidths.append(colwidth)\n                totwidth += colwidth + 2\n                if totwidth > displaywidth:\n                    break\n            if totwidth <= displaywidth:\n                break\n        else:\n            nrows = len(list)\n            ncols = 1\n            colwidths = [0]\n        for row in range(nrows):\n            texts = []\n            for col in range(ncols):\n                i = row + nrows*col\n                if i >= size:\n                    x = \"\"\n                else:\n                    x = list[i]\n                texts.append(x)\n            while texts and not texts[-1]:\n                del texts[-1]\n            for col in range(len(texts)):\n                texts[col] = texts[col].ljust(colwidths[col])\n            self.stdout.write(\"%s\\n\"%str(\"  \".join(texts)))\n"
  },
  {
    "path": "rd/usr/lib/python3.8/code.py",
    "content": "\"\"\"Utilities needed to emulate Python's interactive interpreter.\n\n\"\"\"\n\n# Inspired by similar code by Jeff Epler and Fredrik Lundh.\n\n\nimport sys\nimport traceback\nfrom codeop import CommandCompiler, compile_command\n\n__all__ = [\"InteractiveInterpreter\", \"InteractiveConsole\", \"interact\",\n           \"compile_command\"]\n\nclass InteractiveInterpreter:\n    \"\"\"Base class for InteractiveConsole.\n\n    This class deals with parsing and interpreter state (the user's\n    namespace); it doesn't deal with input buffering or prompting or\n    input file naming (the filename is always passed in explicitly).\n\n    \"\"\"\n\n    def __init__(self, locals=None):\n        \"\"\"Constructor.\n\n        The optional 'locals' argument specifies the dictionary in\n        which code will be executed; it defaults to a newly created\n        dictionary with key \"__name__\" set to \"__console__\" and key\n        \"__doc__\" set to None.\n\n        \"\"\"\n        if locals is None:\n            locals = {\"__name__\": \"__console__\", \"__doc__\": None}\n        self.locals = locals\n        self.compile = CommandCompiler()\n\n    def runsource(self, source, filename=\"<input>\", symbol=\"single\"):\n        \"\"\"Compile and run some source in the interpreter.\n\n        Arguments are as for compile_command().\n\n        One of several things can happen:\n\n        1) The input is incorrect; compile_command() raised an\n        exception (SyntaxError or OverflowError).  A syntax traceback\n        will be printed by calling the showsyntaxerror() method.\n\n        2) The input is incomplete, and more input is required;\n        compile_command() returned None.  Nothing happens.\n\n        3) The input is complete; compile_command() returned a code\n        object.  The code is executed by calling self.runcode() (which\n        also handles run-time exceptions, except for SystemExit).\n\n        The return value is True in case 2, False in the other cases (unless\n        an exception is raised).  The return value can be used to\n        decide whether to use sys.ps1 or sys.ps2 to prompt the next\n        line.\n\n        \"\"\"\n        try:\n            code = self.compile(source, filename, symbol)\n        except (OverflowError, SyntaxError, ValueError):\n            # Case 1\n            self.showsyntaxerror(filename)\n            return False\n\n        if code is None:\n            # Case 2\n            return True\n\n        # Case 3\n        self.runcode(code)\n        return False\n\n    def runcode(self, code):\n        \"\"\"Execute a code object.\n\n        When an exception occurs, self.showtraceback() is called to\n        display a traceback.  All exceptions are caught except\n        SystemExit, which is reraised.\n\n        A note about KeyboardInterrupt: this exception may occur\n        elsewhere in this code, and may not always be caught.  The\n        caller should be prepared to deal with it.\n\n        \"\"\"\n        try:\n            exec(code, self.locals)\n        except SystemExit:\n            raise\n        except:\n            self.showtraceback()\n\n    def showsyntaxerror(self, filename=None):\n        \"\"\"Display the syntax error that just occurred.\n\n        This doesn't display a stack trace because there isn't one.\n\n        If a filename is given, it is stuffed in the exception instead\n        of what was there before (because Python's parser always uses\n        \"<string>\" when reading from a string).\n\n        The output is written by self.write(), below.\n\n        \"\"\"\n        type, value, tb = sys.exc_info()\n        sys.last_type = type\n        sys.last_value = value\n        sys.last_traceback = tb\n        if filename and type is SyntaxError:\n            # Work hard to stuff the correct filename in the exception\n            try:\n                msg, (dummy_filename, lineno, offset, line) = value.args\n            except ValueError:\n                # Not the format we expect; leave it alone\n                pass\n            else:\n                # Stuff in the right filename\n                value = SyntaxError(msg, (filename, lineno, offset, line))\n                sys.last_value = value\n        if sys.excepthook is sys.__excepthook__:\n            lines = traceback.format_exception_only(type, value)\n            self.write(''.join(lines))\n        else:\n            # If someone has set sys.excepthook, we let that take precedence\n            # over self.write\n            sys.excepthook(type, value, tb)\n\n    def showtraceback(self):\n        \"\"\"Display the exception that just occurred.\n\n        We remove the first stack item because it is our own code.\n\n        The output is written by self.write(), below.\n\n        \"\"\"\n        sys.last_type, sys.last_value, last_tb = ei = sys.exc_info()\n        sys.last_traceback = last_tb\n        try:\n            lines = traceback.format_exception(ei[0], ei[1], last_tb.tb_next)\n            if sys.excepthook is sys.__excepthook__:\n                self.write(''.join(lines))\n            else:\n                # If someone has set sys.excepthook, we let that take precedence\n                # over self.write\n                sys.excepthook(ei[0], ei[1], last_tb)\n        finally:\n            last_tb = ei = None\n\n    def write(self, data):\n        \"\"\"Write a string.\n\n        The base implementation writes to sys.stderr; a subclass may\n        replace this with a different implementation.\n\n        \"\"\"\n        sys.stderr.write(data)\n\n\nclass InteractiveConsole(InteractiveInterpreter):\n    \"\"\"Closely emulate the behavior of the interactive Python interpreter.\n\n    This class builds on InteractiveInterpreter and adds prompting\n    using the familiar sys.ps1 and sys.ps2, and input buffering.\n\n    \"\"\"\n\n    def __init__(self, locals=None, filename=\"<console>\"):\n        \"\"\"Constructor.\n\n        The optional locals argument will be passed to the\n        InteractiveInterpreter base class.\n\n        The optional filename argument should specify the (file)name\n        of the input stream; it will show up in tracebacks.\n\n        \"\"\"\n        InteractiveInterpreter.__init__(self, locals)\n        self.filename = filename\n        self.resetbuffer()\n\n    def resetbuffer(self):\n        \"\"\"Reset the input buffer.\"\"\"\n        self.buffer = []\n\n    def interact(self, banner=None, exitmsg=None):\n        \"\"\"Closely emulate the interactive Python console.\n\n        The optional banner argument specifies the banner to print\n        before the first interaction; by default it prints a banner\n        similar to the one printed by the real Python interpreter,\n        followed by the current class name in parentheses (so as not\n        to confuse this with the real interpreter -- since it's so\n        close!).\n\n        The optional exitmsg argument specifies the exit message\n        printed when exiting. Pass the empty string to suppress\n        printing an exit message. If exitmsg is not given or None,\n        a default message is printed.\n\n        \"\"\"\n        try:\n            sys.ps1\n        except AttributeError:\n            sys.ps1 = \">>> \"\n        try:\n            sys.ps2\n        except AttributeError:\n            sys.ps2 = \"... \"\n        cprt = 'Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.'\n        if banner is None:\n            self.write(\"Python %s on %s\\n%s\\n(%s)\\n\" %\n                       (sys.version, sys.platform, cprt,\n                        self.__class__.__name__))\n        elif banner:\n            self.write(\"%s\\n\" % str(banner))\n        more = 0\n        while 1:\n            try:\n                if more:\n                    prompt = sys.ps2\n                else:\n                    prompt = sys.ps1\n                try:\n                    line = self.raw_input(prompt)\n                except EOFError:\n                    self.write(\"\\n\")\n                    break\n                else:\n                    more = self.push(line)\n            except KeyboardInterrupt:\n                self.write(\"\\nKeyboardInterrupt\\n\")\n                self.resetbuffer()\n                more = 0\n        if exitmsg is None:\n            self.write('now exiting %s...\\n' % self.__class__.__name__)\n        elif exitmsg != '':\n            self.write('%s\\n' % exitmsg)\n\n    def push(self, line):\n        \"\"\"Push a line to the interpreter.\n\n        The line should not have a trailing newline; it may have\n        internal newlines.  The line is appended to a buffer and the\n        interpreter's runsource() method is called with the\n        concatenated contents of the buffer as source.  If this\n        indicates that the command was executed or invalid, the buffer\n        is reset; otherwise, the command is incomplete, and the buffer\n        is left as it was after the line was appended.  The return\n        value is 1 if more input is required, 0 if the line was dealt\n        with in some way (this is the same as runsource()).\n\n        \"\"\"\n        self.buffer.append(line)\n        source = \"\\n\".join(self.buffer)\n        more = self.runsource(source, self.filename)\n        if not more:\n            self.resetbuffer()\n        return more\n\n    def raw_input(self, prompt=\"\"):\n        \"\"\"Write a prompt and read a line.\n\n        The returned line does not include the trailing newline.\n        When the user enters the EOF key sequence, EOFError is raised.\n\n        The base implementation uses the built-in function\n        input(); a subclass may replace this with a different\n        implementation.\n\n        \"\"\"\n        return input(prompt)\n\n\n\ndef interact(banner=None, readfunc=None, local=None, exitmsg=None):\n    \"\"\"Closely emulate the interactive Python interpreter.\n\n    This is a backwards compatible interface to the InteractiveConsole\n    class.  When readfunc is not specified, it attempts to import the\n    readline module to enable GNU readline if it is available.\n\n    Arguments (all optional, all default to None):\n\n    banner -- passed to InteractiveConsole.interact()\n    readfunc -- if not None, replaces InteractiveConsole.raw_input()\n    local -- passed to InteractiveInterpreter.__init__()\n    exitmsg -- passed to InteractiveConsole.interact()\n\n    \"\"\"\n    console = InteractiveConsole(local)\n    if readfunc is not None:\n        console.raw_input = readfunc\n    else:\n        try:\n            import readline\n        except ImportError:\n            pass\n    console.interact(banner, exitmsg)\n\n\nif __name__ == \"__main__\":\n    import argparse\n\n    parser = argparse.ArgumentParser()\n    parser.add_argument('-q', action='store_true',\n                       help=\"don't print version and copyright messages\")\n    args = parser.parse_args()\n    if args.q or sys.flags.quiet:\n        banner = ''\n    else:\n        banner = None\n    interact(banner)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/codecs.py",
    "content": "\"\"\" codecs -- Python Codec Registry, API and helpers.\n\n\nWritten by Marc-Andre Lemburg (mal@lemburg.com).\n\n(c) Copyright CNRI, All Rights Reserved. NO WARRANTY.\n\n\"\"\"\n\nimport builtins\nimport sys\n\n### Registry and builtin stateless codec functions\n\ntry:\n    from _codecs import *\nexcept ImportError as why:\n    raise SystemError('Failed to load the builtin codecs: %s' % why)\n\n__all__ = [\"register\", \"lookup\", \"open\", \"EncodedFile\", \"BOM\", \"BOM_BE\",\n           \"BOM_LE\", \"BOM32_BE\", \"BOM32_LE\", \"BOM64_BE\", \"BOM64_LE\",\n           \"BOM_UTF8\", \"BOM_UTF16\", \"BOM_UTF16_LE\", \"BOM_UTF16_BE\",\n           \"BOM_UTF32\", \"BOM_UTF32_LE\", \"BOM_UTF32_BE\",\n           \"CodecInfo\", \"Codec\", \"IncrementalEncoder\", \"IncrementalDecoder\",\n           \"StreamReader\", \"StreamWriter\",\n           \"StreamReaderWriter\", \"StreamRecoder\",\n           \"getencoder\", \"getdecoder\", \"getincrementalencoder\",\n           \"getincrementaldecoder\", \"getreader\", \"getwriter\",\n           \"encode\", \"decode\", \"iterencode\", \"iterdecode\",\n           \"strict_errors\", \"ignore_errors\", \"replace_errors\",\n           \"xmlcharrefreplace_errors\",\n           \"backslashreplace_errors\", \"namereplace_errors\",\n           \"register_error\", \"lookup_error\"]\n\n### Constants\n\n#\n# Byte Order Mark (BOM = ZERO WIDTH NO-BREAK SPACE = U+FEFF)\n# and its possible byte string values\n# for UTF8/UTF16/UTF32 output and little/big endian machines\n#\n\n# UTF-8\nBOM_UTF8 = b'\\xef\\xbb\\xbf'\n\n# UTF-16, little endian\nBOM_LE = BOM_UTF16_LE = b'\\xff\\xfe'\n\n# UTF-16, big endian\nBOM_BE = BOM_UTF16_BE = b'\\xfe\\xff'\n\n# UTF-32, little endian\nBOM_UTF32_LE = b'\\xff\\xfe\\x00\\x00'\n\n# UTF-32, big endian\nBOM_UTF32_BE = b'\\x00\\x00\\xfe\\xff'\n\nif sys.byteorder == 'little':\n\n    # UTF-16, native endianness\n    BOM = BOM_UTF16 = BOM_UTF16_LE\n\n    # UTF-32, native endianness\n    BOM_UTF32 = BOM_UTF32_LE\n\nelse:\n\n    # UTF-16, native endianness\n    BOM = BOM_UTF16 = BOM_UTF16_BE\n\n    # UTF-32, native endianness\n    BOM_UTF32 = BOM_UTF32_BE\n\n# Old broken names (don't use in new code)\nBOM32_LE = BOM_UTF16_LE\nBOM32_BE = BOM_UTF16_BE\nBOM64_LE = BOM_UTF32_LE\nBOM64_BE = BOM_UTF32_BE\n\n\n### Codec base classes (defining the API)\n\nclass CodecInfo(tuple):\n    \"\"\"Codec details when looking up the codec registry\"\"\"\n\n    # Private API to allow Python 3.4 to blacklist the known non-Unicode\n    # codecs in the standard library. A more general mechanism to\n    # reliably distinguish test encodings from other codecs will hopefully\n    # be defined for Python 3.5\n    #\n    # See http://bugs.python.org/issue19619\n    _is_text_encoding = True # Assume codecs are text encodings by default\n\n    def __new__(cls, encode, decode, streamreader=None, streamwriter=None,\n        incrementalencoder=None, incrementaldecoder=None, name=None,\n        *, _is_text_encoding=None):\n        self = tuple.__new__(cls, (encode, decode, streamreader, streamwriter))\n        self.name = name\n        self.encode = encode\n        self.decode = decode\n        self.incrementalencoder = incrementalencoder\n        self.incrementaldecoder = incrementaldecoder\n        self.streamwriter = streamwriter\n        self.streamreader = streamreader\n        if _is_text_encoding is not None:\n            self._is_text_encoding = _is_text_encoding\n        return self\n\n    def __repr__(self):\n        return \"<%s.%s object for encoding %s at %#x>\" % \\\n                (self.__class__.__module__, self.__class__.__qualname__,\n                 self.name, id(self))\n\nclass Codec:\n\n    \"\"\" Defines the interface for stateless encoders/decoders.\n\n        The .encode()/.decode() methods may use different error\n        handling schemes by providing the errors argument. These\n        string values are predefined:\n\n         'strict' - raise a ValueError error (or a subclass)\n         'ignore' - ignore the character and continue with the next\n         'replace' - replace with a suitable replacement character;\n                    Python will use the official U+FFFD REPLACEMENT\n                    CHARACTER for the builtin Unicode codecs on\n                    decoding and '?' on encoding.\n         'surrogateescape' - replace with private code points U+DCnn.\n         'xmlcharrefreplace' - Replace with the appropriate XML\n                               character reference (only for encoding).\n         'backslashreplace'  - Replace with backslashed escape sequences.\n         'namereplace'       - Replace with \\\\N{...} escape sequences\n                               (only for encoding).\n\n        The set of allowed values can be extended via register_error.\n\n    \"\"\"\n    def encode(self, input, errors='strict'):\n\n        \"\"\" Encodes the object input and returns a tuple (output\n            object, length consumed).\n\n            errors defines the error handling to apply. It defaults to\n            'strict' handling.\n\n            The method may not store state in the Codec instance. Use\n            StreamWriter for codecs which have to keep state in order to\n            make encoding efficient.\n\n            The encoder must be able to handle zero length input and\n            return an empty object of the output object type in this\n            situation.\n\n        \"\"\"\n        raise NotImplementedError\n\n    def decode(self, input, errors='strict'):\n\n        \"\"\" Decodes the object input and returns a tuple (output\n            object, length consumed).\n\n            input must be an object which provides the bf_getreadbuf\n            buffer slot. Python strings, buffer objects and memory\n            mapped files are examples of objects providing this slot.\n\n            errors defines the error handling to apply. It defaults to\n            'strict' handling.\n\n            The method may not store state in the Codec instance. Use\n            StreamReader for codecs which have to keep state in order to\n            make decoding efficient.\n\n            The decoder must be able to handle zero length input and\n            return an empty object of the output object type in this\n            situation.\n\n        \"\"\"\n        raise NotImplementedError\n\nclass IncrementalEncoder(object):\n    \"\"\"\n    An IncrementalEncoder encodes an input in multiple steps. The input can\n    be passed piece by piece to the encode() method. The IncrementalEncoder\n    remembers the state of the encoding process between calls to encode().\n    \"\"\"\n    def __init__(self, errors='strict'):\n        \"\"\"\n        Creates an IncrementalEncoder instance.\n\n        The IncrementalEncoder may use different error handling schemes by\n        providing the errors keyword argument. See the module docstring\n        for a list of possible values.\n        \"\"\"\n        self.errors = errors\n        self.buffer = \"\"\n\n    def encode(self, input, final=False):\n        \"\"\"\n        Encodes input and returns the resulting object.\n        \"\"\"\n        raise NotImplementedError\n\n    def reset(self):\n        \"\"\"\n        Resets the encoder to the initial state.\n        \"\"\"\n\n    def getstate(self):\n        \"\"\"\n        Return the current state of the encoder.\n        \"\"\"\n        return 0\n\n    def setstate(self, state):\n        \"\"\"\n        Set the current state of the encoder. state must have been\n        returned by getstate().\n        \"\"\"\n\nclass BufferedIncrementalEncoder(IncrementalEncoder):\n    \"\"\"\n    This subclass of IncrementalEncoder can be used as the baseclass for an\n    incremental encoder if the encoder must keep some of the output in a\n    buffer between calls to encode().\n    \"\"\"\n    def __init__(self, errors='strict'):\n        IncrementalEncoder.__init__(self, errors)\n        # unencoded input that is kept between calls to encode()\n        self.buffer = \"\"\n\n    def _buffer_encode(self, input, errors, final):\n        # Overwrite this method in subclasses: It must encode input\n        # and return an (output, length consumed) tuple\n        raise NotImplementedError\n\n    def encode(self, input, final=False):\n        # encode input (taking the buffer into account)\n        data = self.buffer + input\n        (result, consumed) = self._buffer_encode(data, self.errors, final)\n        # keep unencoded input until the next call\n        self.buffer = data[consumed:]\n        return result\n\n    def reset(self):\n        IncrementalEncoder.reset(self)\n        self.buffer = \"\"\n\n    def getstate(self):\n        return self.buffer or 0\n\n    def setstate(self, state):\n        self.buffer = state or \"\"\n\nclass IncrementalDecoder(object):\n    \"\"\"\n    An IncrementalDecoder decodes an input in multiple steps. The input can\n    be passed piece by piece to the decode() method. The IncrementalDecoder\n    remembers the state of the decoding process between calls to decode().\n    \"\"\"\n    def __init__(self, errors='strict'):\n        \"\"\"\n        Create an IncrementalDecoder instance.\n\n        The IncrementalDecoder may use different error handling schemes by\n        providing the errors keyword argument. See the module docstring\n        for a list of possible values.\n        \"\"\"\n        self.errors = errors\n\n    def decode(self, input, final=False):\n        \"\"\"\n        Decode input and returns the resulting object.\n        \"\"\"\n        raise NotImplementedError\n\n    def reset(self):\n        \"\"\"\n        Reset the decoder to the initial state.\n        \"\"\"\n\n    def getstate(self):\n        \"\"\"\n        Return the current state of the decoder.\n\n        This must be a (buffered_input, additional_state_info) tuple.\n        buffered_input must be a bytes object containing bytes that\n        were passed to decode() that have not yet been converted.\n        additional_state_info must be a non-negative integer\n        representing the state of the decoder WITHOUT yet having\n        processed the contents of buffered_input.  In the initial state\n        and after reset(), getstate() must return (b\"\", 0).\n        \"\"\"\n        return (b\"\", 0)\n\n    def setstate(self, state):\n        \"\"\"\n        Set the current state of the decoder.\n\n        state must have been returned by getstate().  The effect of\n        setstate((b\"\", 0)) must be equivalent to reset().\n        \"\"\"\n\nclass BufferedIncrementalDecoder(IncrementalDecoder):\n    \"\"\"\n    This subclass of IncrementalDecoder can be used as the baseclass for an\n    incremental decoder if the decoder must be able to handle incomplete\n    byte sequences.\n    \"\"\"\n    def __init__(self, errors='strict'):\n        IncrementalDecoder.__init__(self, errors)\n        # undecoded input that is kept between calls to decode()\n        self.buffer = b\"\"\n\n    def _buffer_decode(self, input, errors, final):\n        # Overwrite this method in subclasses: It must decode input\n        # and return an (output, length consumed) tuple\n        raise NotImplementedError\n\n    def decode(self, input, final=False):\n        # decode input (taking the buffer into account)\n        data = self.buffer + input\n        (result, consumed) = self._buffer_decode(data, self.errors, final)\n        # keep undecoded input until the next call\n        self.buffer = data[consumed:]\n        return result\n\n    def reset(self):\n        IncrementalDecoder.reset(self)\n        self.buffer = b\"\"\n\n    def getstate(self):\n        # additional state info is always 0\n        return (self.buffer, 0)\n\n    def setstate(self, state):\n        # ignore additional state info\n        self.buffer = state[0]\n\n#\n# The StreamWriter and StreamReader class provide generic working\n# interfaces which can be used to implement new encoding submodules\n# very easily. See encodings/utf_8.py for an example on how this is\n# done.\n#\n\nclass StreamWriter(Codec):\n\n    def __init__(self, stream, errors='strict'):\n\n        \"\"\" Creates a StreamWriter instance.\n\n            stream must be a file-like object open for writing.\n\n            The StreamWriter may use different error handling\n            schemes by providing the errors keyword argument. These\n            parameters are predefined:\n\n             'strict' - raise a ValueError (or a subclass)\n             'ignore' - ignore the character and continue with the next\n             'replace'- replace with a suitable replacement character\n             'xmlcharrefreplace' - Replace with the appropriate XML\n                                   character reference.\n             'backslashreplace'  - Replace with backslashed escape\n                                   sequences.\n             'namereplace'       - Replace with \\\\N{...} escape sequences.\n\n            The set of allowed parameter values can be extended via\n            register_error.\n        \"\"\"\n        self.stream = stream\n        self.errors = errors\n\n    def write(self, object):\n\n        \"\"\" Writes the object's contents encoded to self.stream.\n        \"\"\"\n        data, consumed = self.encode(object, self.errors)\n        self.stream.write(data)\n\n    def writelines(self, list):\n\n        \"\"\" Writes the concatenated list of strings to the stream\n            using .write().\n        \"\"\"\n        self.write(''.join(list))\n\n    def reset(self):\n\n        \"\"\" Flushes and resets the codec buffers used for keeping state.\n\n            Calling this method should ensure that the data on the\n            output is put into a clean state, that allows appending\n            of new fresh data without having to rescan the whole\n            stream to recover state.\n\n        \"\"\"\n        pass\n\n    def seek(self, offset, whence=0):\n        self.stream.seek(offset, whence)\n        if whence == 0 and offset == 0:\n            self.reset()\n\n    def __getattr__(self, name,\n                    getattr=getattr):\n\n        \"\"\" Inherit all other methods from the underlying stream.\n        \"\"\"\n        return getattr(self.stream, name)\n\n    def __enter__(self):\n        return self\n\n    def __exit__(self, type, value, tb):\n        self.stream.close()\n\n###\n\nclass StreamReader(Codec):\n\n    charbuffertype = str\n\n    def __init__(self, stream, errors='strict'):\n\n        \"\"\" Creates a StreamReader instance.\n\n            stream must be a file-like object open for reading.\n\n            The StreamReader may use different error handling\n            schemes by providing the errors keyword argument. These\n            parameters are predefined:\n\n             'strict' - raise a ValueError (or a subclass)\n             'ignore' - ignore the character and continue with the next\n             'replace'- replace with a suitable replacement character\n             'backslashreplace' - Replace with backslashed escape sequences;\n\n            The set of allowed parameter values can be extended via\n            register_error.\n        \"\"\"\n        self.stream = stream\n        self.errors = errors\n        self.bytebuffer = b\"\"\n        self._empty_charbuffer = self.charbuffertype()\n        self.charbuffer = self._empty_charbuffer\n        self.linebuffer = None\n\n    def decode(self, input, errors='strict'):\n        raise NotImplementedError\n\n    def read(self, size=-1, chars=-1, firstline=False):\n\n        \"\"\" Decodes data from the stream self.stream and returns the\n            resulting object.\n\n            chars indicates the number of decoded code points or bytes to\n            return. read() will never return more data than requested,\n            but it might return less, if there is not enough available.\n\n            size indicates the approximate maximum number of decoded\n            bytes or code points to read for decoding. The decoder\n            can modify this setting as appropriate. The default value\n            -1 indicates to read and decode as much as possible.  size\n            is intended to prevent having to decode huge files in one\n            step.\n\n            If firstline is true, and a UnicodeDecodeError happens\n            after the first line terminator in the input only the first line\n            will be returned, the rest of the input will be kept until the\n            next call to read().\n\n            The method should use a greedy read strategy, meaning that\n            it should read as much data as is allowed within the\n            definition of the encoding and the given size, e.g.  if\n            optional encoding endings or state markers are available\n            on the stream, these should be read too.\n        \"\"\"\n        # If we have lines cached, first merge them back into characters\n        if self.linebuffer:\n            self.charbuffer = self._empty_charbuffer.join(self.linebuffer)\n            self.linebuffer = None\n\n        if chars < 0:\n            # For compatibility with other read() methods that take a\n            # single argument\n            chars = size\n\n        # read until we get the required number of characters (if available)\n        while True:\n            # can the request be satisfied from the character buffer?\n            if chars >= 0:\n                if len(self.charbuffer) >= chars:\n                    break\n            # we need more data\n            if size < 0:\n                newdata = self.stream.read()\n            else:\n                newdata = self.stream.read(size)\n            # decode bytes (those remaining from the last call included)\n            data = self.bytebuffer + newdata\n            if not data:\n                break\n            try:\n                newchars, decodedbytes = self.decode(data, self.errors)\n            except UnicodeDecodeError as exc:\n                if firstline:\n                    newchars, decodedbytes = \\\n                        self.decode(data[:exc.start], self.errors)\n                    lines = newchars.splitlines(keepends=True)\n                    if len(lines)<=1:\n                        raise\n                else:\n                    raise\n            # keep undecoded bytes until the next call\n            self.bytebuffer = data[decodedbytes:]\n            # put new characters in the character buffer\n            self.charbuffer += newchars\n            # there was no data available\n            if not newdata:\n                break\n        if chars < 0:\n            # Return everything we've got\n            result = self.charbuffer\n            self.charbuffer = self._empty_charbuffer\n        else:\n            # Return the first chars characters\n            result = self.charbuffer[:chars]\n            self.charbuffer = self.charbuffer[chars:]\n        return result\n\n    def readline(self, size=None, keepends=True):\n\n        \"\"\" Read one line from the input stream and return the\n            decoded data.\n\n            size, if given, is passed as size argument to the\n            read() method.\n\n        \"\"\"\n        # If we have lines cached from an earlier read, return\n        # them unconditionally\n        if self.linebuffer:\n            line = self.linebuffer[0]\n            del self.linebuffer[0]\n            if len(self.linebuffer) == 1:\n                # revert to charbuffer mode; we might need more data\n                # next time\n                self.charbuffer = self.linebuffer[0]\n                self.linebuffer = None\n            if not keepends:\n                line = line.splitlines(keepends=False)[0]\n            return line\n\n        readsize = size or 72\n        line = self._empty_charbuffer\n        # If size is given, we call read() only once\n        while True:\n            data = self.read(readsize, firstline=True)\n            if data:\n                # If we're at a \"\\r\" read one extra character (which might\n                # be a \"\\n\") to get a proper line ending. If the stream is\n                # temporarily exhausted we return the wrong line ending.\n                if (isinstance(data, str) and data.endswith(\"\\r\")) or \\\n                   (isinstance(data, bytes) and data.endswith(b\"\\r\")):\n                    data += self.read(size=1, chars=1)\n\n            line += data\n            lines = line.splitlines(keepends=True)\n            if lines:\n                if len(lines) > 1:\n                    # More than one line result; the first line is a full line\n                    # to return\n                    line = lines[0]\n                    del lines[0]\n                    if len(lines) > 1:\n                        # cache the remaining lines\n                        lines[-1] += self.charbuffer\n                        self.linebuffer = lines\n                        self.charbuffer = None\n                    else:\n                        # only one remaining line, put it back into charbuffer\n                        self.charbuffer = lines[0] + self.charbuffer\n                    if not keepends:\n                        line = line.splitlines(keepends=False)[0]\n                    break\n                line0withend = lines[0]\n                line0withoutend = lines[0].splitlines(keepends=False)[0]\n                if line0withend != line0withoutend: # We really have a line end\n                    # Put the rest back together and keep it until the next call\n                    self.charbuffer = self._empty_charbuffer.join(lines[1:]) + \\\n                                      self.charbuffer\n                    if keepends:\n                        line = line0withend\n                    else:\n                        line = line0withoutend\n                    break\n            # we didn't get anything or this was our only try\n            if not data or size is not None:\n                if line and not keepends:\n                    line = line.splitlines(keepends=False)[0]\n                break\n            if readsize < 8000:\n                readsize *= 2\n        return line\n\n    def readlines(self, sizehint=None, keepends=True):\n\n        \"\"\" Read all lines available on the input stream\n            and return them as a list.\n\n            Line breaks are implemented using the codec's decoder\n            method and are included in the list entries.\n\n            sizehint, if given, is ignored since there is no efficient\n            way to finding the true end-of-line.\n\n        \"\"\"\n        data = self.read()\n        return data.splitlines(keepends)\n\n    def reset(self):\n\n        \"\"\" Resets the codec buffers used for keeping state.\n\n            Note that no stream repositioning should take place.\n            This method is primarily intended to be able to recover\n            from decoding errors.\n\n        \"\"\"\n        self.bytebuffer = b\"\"\n        self.charbuffer = self._empty_charbuffer\n        self.linebuffer = None\n\n    def seek(self, offset, whence=0):\n        \"\"\" Set the input stream's current position.\n\n            Resets the codec buffers used for keeping state.\n        \"\"\"\n        self.stream.seek(offset, whence)\n        self.reset()\n\n    def __next__(self):\n\n        \"\"\" Return the next decoded line from the input stream.\"\"\"\n        line = self.readline()\n        if line:\n            return line\n        raise StopIteration\n\n    def __iter__(self):\n        return self\n\n    def __getattr__(self, name,\n                    getattr=getattr):\n\n        \"\"\" Inherit all other methods from the underlying stream.\n        \"\"\"\n        return getattr(self.stream, name)\n\n    def __enter__(self):\n        return self\n\n    def __exit__(self, type, value, tb):\n        self.stream.close()\n\n###\n\nclass StreamReaderWriter:\n\n    \"\"\" StreamReaderWriter instances allow wrapping streams which\n        work in both read and write modes.\n\n        The design is such that one can use the factory functions\n        returned by the codec.lookup() function to construct the\n        instance.\n\n    \"\"\"\n    # Optional attributes set by the file wrappers below\n    encoding = 'unknown'\n\n    def __init__(self, stream, Reader, Writer, errors='strict'):\n\n        \"\"\" Creates a StreamReaderWriter instance.\n\n            stream must be a Stream-like object.\n\n            Reader, Writer must be factory functions or classes\n            providing the StreamReader, StreamWriter interface resp.\n\n            Error handling is done in the same way as defined for the\n            StreamWriter/Readers.\n\n        \"\"\"\n        self.stream = stream\n        self.reader = Reader(stream, errors)\n        self.writer = Writer(stream, errors)\n        self.errors = errors\n\n    def read(self, size=-1):\n\n        return self.reader.read(size)\n\n    def readline(self, size=None):\n\n        return self.reader.readline(size)\n\n    def readlines(self, sizehint=None):\n\n        return self.reader.readlines(sizehint)\n\n    def __next__(self):\n\n        \"\"\" Return the next decoded line from the input stream.\"\"\"\n        return next(self.reader)\n\n    def __iter__(self):\n        return self\n\n    def write(self, data):\n\n        return self.writer.write(data)\n\n    def writelines(self, list):\n\n        return self.writer.writelines(list)\n\n    def reset(self):\n\n        self.reader.reset()\n        self.writer.reset()\n\n    def seek(self, offset, whence=0):\n        self.stream.seek(offset, whence)\n        self.reader.reset()\n        if whence == 0 and offset == 0:\n            self.writer.reset()\n\n    def __getattr__(self, name,\n                    getattr=getattr):\n\n        \"\"\" Inherit all other methods from the underlying stream.\n        \"\"\"\n        return getattr(self.stream, name)\n\n    # these are needed to make \"with StreamReaderWriter(...)\" work properly\n\n    def __enter__(self):\n        return self\n\n    def __exit__(self, type, value, tb):\n        self.stream.close()\n\n###\n\nclass StreamRecoder:\n\n    \"\"\" StreamRecoder instances translate data from one encoding to another.\n\n        They use the complete set of APIs returned by the\n        codecs.lookup() function to implement their task.\n\n        Data written to the StreamRecoder is first decoded into an\n        intermediate format (depending on the \"decode\" codec) and then\n        written to the underlying stream using an instance of the provided\n        Writer class.\n\n        In the other direction, data is read from the underlying stream using\n        a Reader instance and then encoded and returned to the caller.\n\n    \"\"\"\n    # Optional attributes set by the file wrappers below\n    data_encoding = 'unknown'\n    file_encoding = 'unknown'\n\n    def __init__(self, stream, encode, decode, Reader, Writer,\n                 errors='strict'):\n\n        \"\"\" Creates a StreamRecoder instance which implements a two-way\n            conversion: encode and decode work on the frontend (the\n            data visible to .read() and .write()) while Reader and Writer\n            work on the backend (the data in stream).\n\n            You can use these objects to do transparent\n            transcodings from e.g. latin-1 to utf-8 and back.\n\n            stream must be a file-like object.\n\n            encode and decode must adhere to the Codec interface; Reader and\n            Writer must be factory functions or classes providing the\n            StreamReader and StreamWriter interfaces resp.\n\n            Error handling is done in the same way as defined for the\n            StreamWriter/Readers.\n\n        \"\"\"\n        self.stream = stream\n        self.encode = encode\n        self.decode = decode\n        self.reader = Reader(stream, errors)\n        self.writer = Writer(stream, errors)\n        self.errors = errors\n\n    def read(self, size=-1):\n\n        data = self.reader.read(size)\n        data, bytesencoded = self.encode(data, self.errors)\n        return data\n\n    def readline(self, size=None):\n\n        if size is None:\n            data = self.reader.readline()\n        else:\n            data = self.reader.readline(size)\n        data, bytesencoded = self.encode(data, self.errors)\n        return data\n\n    def readlines(self, sizehint=None):\n\n        data = self.reader.read()\n        data, bytesencoded = self.encode(data, self.errors)\n        return data.splitlines(keepends=True)\n\n    def __next__(self):\n\n        \"\"\" Return the next decoded line from the input stream.\"\"\"\n        data = next(self.reader)\n        data, bytesencoded = self.encode(data, self.errors)\n        return data\n\n    def __iter__(self):\n        return self\n\n    def write(self, data):\n\n        data, bytesdecoded = self.decode(data, self.errors)\n        return self.writer.write(data)\n\n    def writelines(self, list):\n\n        data = b''.join(list)\n        data, bytesdecoded = self.decode(data, self.errors)\n        return self.writer.write(data)\n\n    def reset(self):\n\n        self.reader.reset()\n        self.writer.reset()\n\n    def seek(self, offset, whence=0):\n        # Seeks must be propagated to both the readers and writers\n        # as they might need to reset their internal buffers.\n        self.reader.seek(offset, whence)\n        self.writer.seek(offset, whence)\n\n    def __getattr__(self, name,\n                    getattr=getattr):\n\n        \"\"\" Inherit all other methods from the underlying stream.\n        \"\"\"\n        return getattr(self.stream, name)\n\n    def __enter__(self):\n        return self\n\n    def __exit__(self, type, value, tb):\n        self.stream.close()\n\n### Shortcuts\n\ndef open(filename, mode='r', encoding=None, errors='strict', buffering=-1):\n\n    \"\"\" Open an encoded file using the given mode and return\n        a wrapped version providing transparent encoding/decoding.\n\n        Note: The wrapped version will only accept the object format\n        defined by the codecs, i.e. Unicode objects for most builtin\n        codecs. Output is also codec dependent and will usually be\n        Unicode as well.\n\n        Underlying encoded files are always opened in binary mode.\n        The default file mode is 'r', meaning to open the file in read mode.\n\n        encoding specifies the encoding which is to be used for the\n        file.\n\n        errors may be given to define the error handling. It defaults\n        to 'strict' which causes ValueErrors to be raised in case an\n        encoding error occurs.\n\n        buffering has the same meaning as for the builtin open() API.\n        It defaults to -1 which means that the default buffer size will\n        be used.\n\n        The returned wrapped file object provides an extra attribute\n        .encoding which allows querying the used encoding. This\n        attribute is only available if an encoding was specified as\n        parameter.\n\n    \"\"\"\n    if encoding is not None and \\\n       'b' not in mode:\n        # Force opening of the file in binary mode\n        mode = mode + 'b'\n    file = builtins.open(filename, mode, buffering)\n    if encoding is None:\n        return file\n\n    try:\n        info = lookup(encoding)\n        srw = StreamReaderWriter(file, info.streamreader, info.streamwriter, errors)\n        # Add attributes to simplify introspection\n        srw.encoding = encoding\n        return srw\n    except:\n        file.close()\n        raise\n\ndef EncodedFile(file, data_encoding, file_encoding=None, errors='strict'):\n\n    \"\"\" Return a wrapped version of file which provides transparent\n        encoding translation.\n\n        Data written to the wrapped file is decoded according\n        to the given data_encoding and then encoded to the underlying\n        file using file_encoding. The intermediate data type\n        will usually be Unicode but depends on the specified codecs.\n\n        Bytes read from the file are decoded using file_encoding and then\n        passed back to the caller encoded using data_encoding.\n\n        If file_encoding is not given, it defaults to data_encoding.\n\n        errors may be given to define the error handling. It defaults\n        to 'strict' which causes ValueErrors to be raised in case an\n        encoding error occurs.\n\n        The returned wrapped file object provides two extra attributes\n        .data_encoding and .file_encoding which reflect the given\n        parameters of the same name. The attributes can be used for\n        introspection by Python programs.\n\n    \"\"\"\n    if file_encoding is None:\n        file_encoding = data_encoding\n    data_info = lookup(data_encoding)\n    file_info = lookup(file_encoding)\n    sr = StreamRecoder(file, data_info.encode, data_info.decode,\n                       file_info.streamreader, file_info.streamwriter, errors)\n    # Add attributes to simplify introspection\n    sr.data_encoding = data_encoding\n    sr.file_encoding = file_encoding\n    return sr\n\n### Helpers for codec lookup\n\ndef getencoder(encoding):\n\n    \"\"\" Lookup up the codec for the given encoding and return\n        its encoder function.\n\n        Raises a LookupError in case the encoding cannot be found.\n\n    \"\"\"\n    return lookup(encoding).encode\n\ndef getdecoder(encoding):\n\n    \"\"\" Lookup up the codec for the given encoding and return\n        its decoder function.\n\n        Raises a LookupError in case the encoding cannot be found.\n\n    \"\"\"\n    return lookup(encoding).decode\n\ndef getincrementalencoder(encoding):\n\n    \"\"\" Lookup up the codec for the given encoding and return\n        its IncrementalEncoder class or factory function.\n\n        Raises a LookupError in case the encoding cannot be found\n        or the codecs doesn't provide an incremental encoder.\n\n    \"\"\"\n    encoder = lookup(encoding).incrementalencoder\n    if encoder is None:\n        raise LookupError(encoding)\n    return encoder\n\ndef getincrementaldecoder(encoding):\n\n    \"\"\" Lookup up the codec for the given encoding and return\n        its IncrementalDecoder class or factory function.\n\n        Raises a LookupError in case the encoding cannot be found\n        or the codecs doesn't provide an incremental decoder.\n\n    \"\"\"\n    decoder = lookup(encoding).incrementaldecoder\n    if decoder is None:\n        raise LookupError(encoding)\n    return decoder\n\ndef getreader(encoding):\n\n    \"\"\" Lookup up the codec for the given encoding and return\n        its StreamReader class or factory function.\n\n        Raises a LookupError in case the encoding cannot be found.\n\n    \"\"\"\n    return lookup(encoding).streamreader\n\ndef getwriter(encoding):\n\n    \"\"\" Lookup up the codec for the given encoding and return\n        its StreamWriter class or factory function.\n\n        Raises a LookupError in case the encoding cannot be found.\n\n    \"\"\"\n    return lookup(encoding).streamwriter\n\ndef iterencode(iterator, encoding, errors='strict', **kwargs):\n    \"\"\"\n    Encoding iterator.\n\n    Encodes the input strings from the iterator using an IncrementalEncoder.\n\n    errors and kwargs are passed through to the IncrementalEncoder\n    constructor.\n    \"\"\"\n    encoder = getincrementalencoder(encoding)(errors, **kwargs)\n    for input in iterator:\n        output = encoder.encode(input)\n        if output:\n            yield output\n    output = encoder.encode(\"\", True)\n    if output:\n        yield output\n\ndef iterdecode(iterator, encoding, errors='strict', **kwargs):\n    \"\"\"\n    Decoding iterator.\n\n    Decodes the input strings from the iterator using an IncrementalDecoder.\n\n    errors and kwargs are passed through to the IncrementalDecoder\n    constructor.\n    \"\"\"\n    decoder = getincrementaldecoder(encoding)(errors, **kwargs)\n    for input in iterator:\n        output = decoder.decode(input)\n        if output:\n            yield output\n    output = decoder.decode(b\"\", True)\n    if output:\n        yield output\n\n### Helpers for charmap-based codecs\n\ndef make_identity_dict(rng):\n\n    \"\"\" make_identity_dict(rng) -> dict\n\n        Return a dictionary where elements of the rng sequence are\n        mapped to themselves.\n\n    \"\"\"\n    return {i:i for i in rng}\n\ndef make_encoding_map(decoding_map):\n\n    \"\"\" Creates an encoding map from a decoding map.\n\n        If a target mapping in the decoding map occurs multiple\n        times, then that target is mapped to None (undefined mapping),\n        causing an exception when encountered by the charmap codec\n        during translation.\n\n        One example where this happens is cp875.py which decodes\n        multiple character to \\\\u001a.\n\n    \"\"\"\n    m = {}\n    for k,v in decoding_map.items():\n        if not v in m:\n            m[v] = k\n        else:\n            m[v] = None\n    return m\n\n### error handlers\n\ntry:\n    strict_errors = lookup_error(\"strict\")\n    ignore_errors = lookup_error(\"ignore\")\n    replace_errors = lookup_error(\"replace\")\n    xmlcharrefreplace_errors = lookup_error(\"xmlcharrefreplace\")\n    backslashreplace_errors = lookup_error(\"backslashreplace\")\n    namereplace_errors = lookup_error(\"namereplace\")\nexcept LookupError:\n    # In --disable-unicode builds, these error handler are missing\n    strict_errors = None\n    ignore_errors = None\n    replace_errors = None\n    xmlcharrefreplace_errors = None\n    backslashreplace_errors = None\n    namereplace_errors = None\n\n# Tell modulefinder that using codecs probably needs the encodings\n# package\n_false = 0\nif _false:\n    import encodings\n\n### Tests\n\nif __name__ == '__main__':\n\n    # Make stdout translate Latin-1 output into UTF-8 output\n    sys.stdout = EncodedFile(sys.stdout, 'latin-1', 'utf-8')\n\n    # Have stdin translate Latin-1 input into UTF-8 input\n    sys.stdin = EncodedFile(sys.stdin, 'utf-8', 'latin-1')\n"
  },
  {
    "path": "rd/usr/lib/python3.8/codeop.py",
    "content": "r\"\"\"Utilities to compile possibly incomplete Python source code.\n\nThis module provides two interfaces, broadly similar to the builtin\nfunction compile(), which take program text, a filename and a 'mode'\nand:\n\n- Return code object if the command is complete and valid\n- Return None if the command is incomplete\n- Raise SyntaxError, ValueError or OverflowError if the command is a\n  syntax error (OverflowError and ValueError can be produced by\n  malformed literals).\n\nApproach:\n\nFirst, check if the source consists entirely of blank lines and\ncomments; if so, replace it with 'pass', because the built-in\nparser doesn't always do the right thing for these.\n\nCompile three times: as is, with \\n, and with \\n\\n appended.  If it\ncompiles as is, it's complete.  If it compiles with one \\n appended,\nwe expect more.  If it doesn't compile either way, we compare the\nerror we get when compiling with \\n or \\n\\n appended.  If the errors\nare the same, the code is broken.  But if the errors are different, we\nexpect more.  Not intuitive; not even guaranteed to hold in future\nreleases; but this matches the compiler's behavior from Python 1.4\nthrough 2.2, at least.\n\nCaveat:\n\nIt is possible (but not likely) that the parser stops parsing with a\nsuccessful outcome before reaching the end of the source; in this\ncase, trailing symbols may be ignored instead of causing an error.\nFor example, a backslash followed by two newlines may be followed by\narbitrary garbage.  This will be fixed once the API for the parser is\nbetter.\n\nThe two interfaces are:\n\ncompile_command(source, filename, symbol):\n\n    Compiles a single command in the manner described above.\n\nCommandCompiler():\n\n    Instances of this class have __call__ methods identical in\n    signature to compile_command; the difference is that if the\n    instance compiles program text containing a __future__ statement,\n    the instance 'remembers' and compiles all subsequent program texts\n    with the statement in force.\n\nThe module also provides another class:\n\nCompile():\n\n    Instances of this class act like the built-in function compile,\n    but with 'memory' in the sense described above.\n\"\"\"\n\nimport __future__\nimport warnings\n\n_features = [getattr(__future__, fname)\n             for fname in __future__.all_feature_names]\n\n__all__ = [\"compile_command\", \"Compile\", \"CommandCompiler\"]\n\nPyCF_DONT_IMPLY_DEDENT = 0x200          # Matches pythonrun.h\n\ndef _maybe_compile(compiler, source, filename, symbol):\n    # Check for source consisting of only blank lines and comments\n    for line in source.split(\"\\n\"):\n        line = line.strip()\n        if line and line[0] != '#':\n            break               # Leave it alone\n    else:\n        if symbol != \"eval\":\n            source = \"pass\"     # Replace it with a 'pass' statement\n\n    err = err1 = err2 = None\n    code = code1 = code2 = None\n\n    try:\n        code = compiler(source, filename, symbol)\n    except SyntaxError as err:\n        pass\n\n    # Suppress warnings after the first compile to avoid duplication.\n    with warnings.catch_warnings():\n        warnings.simplefilter(\"ignore\")\n        try:\n            code1 = compiler(source + \"\\n\", filename, symbol)\n        except SyntaxError as e:\n            err1 = e\n\n        try:\n            code2 = compiler(source + \"\\n\\n\", filename, symbol)\n        except SyntaxError as e:\n            err2 = e\n\n    try:\n        if code:\n            return code\n        if not code1 and repr(err1) == repr(err2):\n            raise err1\n    finally:\n        err1 = err2 = None\n\ndef _compile(source, filename, symbol):\n    return compile(source, filename, symbol, PyCF_DONT_IMPLY_DEDENT)\n\ndef compile_command(source, filename=\"<input>\", symbol=\"single\"):\n    r\"\"\"Compile a command and determine whether it is incomplete.\n\n    Arguments:\n\n    source -- the source string; may contain \\n characters\n    filename -- optional filename from which source was read; default\n                \"<input>\"\n    symbol -- optional grammar start symbol; \"single\" (default), \"exec\"\n              or \"eval\"\n\n    Return value / exceptions raised:\n\n    - Return a code object if the command is complete and valid\n    - Return None if the command is incomplete\n    - Raise SyntaxError, ValueError or OverflowError if the command is a\n      syntax error (OverflowError and ValueError can be produced by\n      malformed literals).\n    \"\"\"\n    return _maybe_compile(_compile, source, filename, symbol)\n\nclass Compile:\n    \"\"\"Instances of this class behave much like the built-in compile\n    function, but if one is used to compile text containing a future\n    statement, it \"remembers\" and compiles all subsequent program texts\n    with the statement in force.\"\"\"\n    def __init__(self):\n        self.flags = PyCF_DONT_IMPLY_DEDENT\n\n    def __call__(self, source, filename, symbol):\n        codeob = compile(source, filename, symbol, self.flags, 1)\n        for feature in _features:\n            if codeob.co_flags & feature.compiler_flag:\n                self.flags |= feature.compiler_flag\n        return codeob\n\nclass CommandCompiler:\n    \"\"\"Instances of this class have __call__ methods identical in\n    signature to compile_command; the difference is that if the\n    instance compiles program text containing a __future__ statement,\n    the instance 'remembers' and compiles all subsequent program texts\n    with the statement in force.\"\"\"\n\n    def __init__(self,):\n        self.compiler = Compile()\n\n    def __call__(self, source, filename=\"<input>\", symbol=\"single\"):\n        r\"\"\"Compile a command and determine whether it is incomplete.\n\n        Arguments:\n\n        source -- the source string; may contain \\n characters\n        filename -- optional filename from which source was read;\n                    default \"<input>\"\n        symbol -- optional grammar start symbol; \"single\" (default) or\n                  \"eval\"\n\n        Return value / exceptions raised:\n\n        - Return a code object if the command is complete and valid\n        - Return None if the command is incomplete\n        - Raise SyntaxError, ValueError or OverflowError if the command is a\n          syntax error (OverflowError and ValueError can be produced by\n          malformed literals).\n        \"\"\"\n        return _maybe_compile(self.compiler, source, filename, symbol)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/collections/__init__.py",
    "content": "'''This module implements specialized container datatypes providing\nalternatives to Python's general purpose built-in containers, dict,\nlist, set, and tuple.\n\n* namedtuple   factory function for creating tuple subclasses with named fields\n* deque        list-like container with fast appends and pops on either end\n* ChainMap     dict-like class for creating a single view of multiple mappings\n* Counter      dict subclass for counting hashable objects\n* OrderedDict  dict subclass that remembers the order entries were added\n* defaultdict  dict subclass that calls a factory function to supply missing values\n* UserDict     wrapper around dictionary objects for easier dict subclassing\n* UserList     wrapper around list objects for easier list subclassing\n* UserString   wrapper around string objects for easier string subclassing\n\n'''\n\n__all__ = ['deque', 'defaultdict', 'namedtuple', 'UserDict', 'UserList',\n            'UserString', 'Counter', 'OrderedDict', 'ChainMap']\n\nimport _collections_abc\nfrom operator import itemgetter as _itemgetter, eq as _eq\nfrom keyword import iskeyword as _iskeyword\nimport sys as _sys\nimport heapq as _heapq\nfrom _weakref import proxy as _proxy\nfrom itertools import repeat as _repeat, chain as _chain, starmap as _starmap\nfrom reprlib import recursive_repr as _recursive_repr\n\ntry:\n    from _collections import deque\nexcept ImportError:\n    pass\nelse:\n    _collections_abc.MutableSequence.register(deque)\n\ntry:\n    from _collections import defaultdict\nexcept ImportError:\n    pass\n\n\ndef __getattr__(name):\n    # For backwards compatibility, continue to make the collections ABCs\n    # through Python 3.6 available through the collections module.\n    # Note, no new collections ABCs were added in Python 3.7\n    if name in _collections_abc.__all__:\n        obj = getattr(_collections_abc, name)\n        import warnings\n        warnings.warn(\"Using or importing the ABCs from 'collections' instead \"\n                      \"of from 'collections.abc' is deprecated since Python 3.3, \"\n                      \"and in 3.9 it will stop working\",\n                      DeprecationWarning, stacklevel=2)\n        globals()[name] = obj\n        return obj\n    raise AttributeError(f'module {__name__!r} has no attribute {name!r}')\n\n################################################################################\n### OrderedDict\n################################################################################\n\nclass _OrderedDictKeysView(_collections_abc.KeysView):\n\n    def __reversed__(self):\n        yield from reversed(self._mapping)\n\nclass _OrderedDictItemsView(_collections_abc.ItemsView):\n\n    def __reversed__(self):\n        for key in reversed(self._mapping):\n            yield (key, self._mapping[key])\n\nclass _OrderedDictValuesView(_collections_abc.ValuesView):\n\n    def __reversed__(self):\n        for key in reversed(self._mapping):\n            yield self._mapping[key]\n\nclass _Link(object):\n    __slots__ = 'prev', 'next', 'key', '__weakref__'\n\nclass OrderedDict(dict):\n    'Dictionary that remembers insertion order'\n    # An inherited dict maps keys to values.\n    # The inherited dict provides __getitem__, __len__, __contains__, and get.\n    # The remaining methods are order-aware.\n    # Big-O running times for all methods are the same as regular dictionaries.\n\n    # The internal self.__map dict maps keys to links in a doubly linked list.\n    # The circular doubly linked list starts and ends with a sentinel element.\n    # The sentinel element never gets deleted (this simplifies the algorithm).\n    # The sentinel is in self.__hardroot with a weakref proxy in self.__root.\n    # The prev links are weakref proxies (to prevent circular references).\n    # Individual links are kept alive by the hard reference in self.__map.\n    # Those hard references disappear when a key is deleted from an OrderedDict.\n\n    def __init__(self, other=(), /, **kwds):\n        '''Initialize an ordered dictionary.  The signature is the same as\n        regular dictionaries.  Keyword argument order is preserved.\n        '''\n        try:\n            self.__root\n        except AttributeError:\n            self.__hardroot = _Link()\n            self.__root = root = _proxy(self.__hardroot)\n            root.prev = root.next = root\n            self.__map = {}\n        self.__update(other, **kwds)\n\n    def __setitem__(self, key, value,\n                    dict_setitem=dict.__setitem__, proxy=_proxy, Link=_Link):\n        'od.__setitem__(i, y) <==> od[i]=y'\n        # Setting a new item creates a new link at the end of the linked list,\n        # and the inherited dictionary is updated with the new key/value pair.\n        if key not in self:\n            self.__map[key] = link = Link()\n            root = self.__root\n            last = root.prev\n            link.prev, link.next, link.key = last, root, key\n            last.next = link\n            root.prev = proxy(link)\n        dict_setitem(self, key, value)\n\n    def __delitem__(self, key, dict_delitem=dict.__delitem__):\n        'od.__delitem__(y) <==> del od[y]'\n        # Deleting an existing item uses self.__map to find the link which gets\n        # removed by updating the links in the predecessor and successor nodes.\n        dict_delitem(self, key)\n        link = self.__map.pop(key)\n        link_prev = link.prev\n        link_next = link.next\n        link_prev.next = link_next\n        link_next.prev = link_prev\n        link.prev = None\n        link.next = None\n\n    def __iter__(self):\n        'od.__iter__() <==> iter(od)'\n        # Traverse the linked list in order.\n        root = self.__root\n        curr = root.next\n        while curr is not root:\n            yield curr.key\n            curr = curr.next\n\n    def __reversed__(self):\n        'od.__reversed__() <==> reversed(od)'\n        # Traverse the linked list in reverse order.\n        root = self.__root\n        curr = root.prev\n        while curr is not root:\n            yield curr.key\n            curr = curr.prev\n\n    def clear(self):\n        'od.clear() -> None.  Remove all items from od.'\n        root = self.__root\n        root.prev = root.next = root\n        self.__map.clear()\n        dict.clear(self)\n\n    def popitem(self, last=True):\n        '''Remove and return a (key, value) pair from the dictionary.\n\n        Pairs are returned in LIFO order if last is true or FIFO order if false.\n        '''\n        if not self:\n            raise KeyError('dictionary is empty')\n        root = self.__root\n        if last:\n            link = root.prev\n            link_prev = link.prev\n            link_prev.next = root\n            root.prev = link_prev\n        else:\n            link = root.next\n            link_next = link.next\n            root.next = link_next\n            link_next.prev = root\n        key = link.key\n        del self.__map[key]\n        value = dict.pop(self, key)\n        return key, value\n\n    def move_to_end(self, key, last=True):\n        '''Move an existing element to the end (or beginning if last is false).\n\n        Raise KeyError if the element does not exist.\n        '''\n        link = self.__map[key]\n        link_prev = link.prev\n        link_next = link.next\n        soft_link = link_next.prev\n        link_prev.next = link_next\n        link_next.prev = link_prev\n        root = self.__root\n        if last:\n            last = root.prev\n            link.prev = last\n            link.next = root\n            root.prev = soft_link\n            last.next = link\n        else:\n            first = root.next\n            link.prev = root\n            link.next = first\n            first.prev = soft_link\n            root.next = link\n\n    def __sizeof__(self):\n        sizeof = _sys.getsizeof\n        n = len(self) + 1                       # number of links including root\n        size = sizeof(self.__dict__)            # instance dictionary\n        size += sizeof(self.__map) * 2          # internal dict and inherited dict\n        size += sizeof(self.__hardroot) * n     # link objects\n        size += sizeof(self.__root) * n         # proxy objects\n        return size\n\n    update = __update = _collections_abc.MutableMapping.update\n\n    def keys(self):\n        \"D.keys() -> a set-like object providing a view on D's keys\"\n        return _OrderedDictKeysView(self)\n\n    def items(self):\n        \"D.items() -> a set-like object providing a view on D's items\"\n        return _OrderedDictItemsView(self)\n\n    def values(self):\n        \"D.values() -> an object providing a view on D's values\"\n        return _OrderedDictValuesView(self)\n\n    __ne__ = _collections_abc.MutableMapping.__ne__\n\n    __marker = object()\n\n    def pop(self, key, default=__marker):\n        '''od.pop(k[,d]) -> v, remove specified key and return the corresponding\n        value.  If key is not found, d is returned if given, otherwise KeyError\n        is raised.\n\n        '''\n        if key in self:\n            result = self[key]\n            del self[key]\n            return result\n        if default is self.__marker:\n            raise KeyError(key)\n        return default\n\n    def setdefault(self, key, default=None):\n        '''Insert key with a value of default if key is not in the dictionary.\n\n        Return the value for key if key is in the dictionary, else default.\n        '''\n        if key in self:\n            return self[key]\n        self[key] = default\n        return default\n\n    @_recursive_repr()\n    def __repr__(self):\n        'od.__repr__() <==> repr(od)'\n        if not self:\n            return '%s()' % (self.__class__.__name__,)\n        return '%s(%r)' % (self.__class__.__name__, list(self.items()))\n\n    def __reduce__(self):\n        'Return state information for pickling'\n        inst_dict = vars(self).copy()\n        for k in vars(OrderedDict()):\n            inst_dict.pop(k, None)\n        return self.__class__, (), inst_dict or None, None, iter(self.items())\n\n    def copy(self):\n        'od.copy() -> a shallow copy of od'\n        return self.__class__(self)\n\n    @classmethod\n    def fromkeys(cls, iterable, value=None):\n        '''Create a new ordered dictionary with keys from iterable and values set to value.\n        '''\n        self = cls()\n        for key in iterable:\n            self[key] = value\n        return self\n\n    def __eq__(self, other):\n        '''od.__eq__(y) <==> od==y.  Comparison to another OD is order-sensitive\n        while comparison to a regular mapping is order-insensitive.\n\n        '''\n        if isinstance(other, OrderedDict):\n            return dict.__eq__(self, other) and all(map(_eq, self, other))\n        return dict.__eq__(self, other)\n\n\ntry:\n    from _collections import OrderedDict\nexcept ImportError:\n    # Leave the pure Python version in place.\n    pass\n\n\n################################################################################\n### namedtuple\n################################################################################\n\ntry:\n    from _collections import _tuplegetter\nexcept ImportError:\n    _tuplegetter = lambda index, doc: property(_itemgetter(index), doc=doc)\n\ndef namedtuple(typename, field_names, *, rename=False, defaults=None, module=None):\n    \"\"\"Returns a new subclass of tuple with named fields.\n\n    >>> Point = namedtuple('Point', ['x', 'y'])\n    >>> Point.__doc__                   # docstring for the new class\n    'Point(x, y)'\n    >>> p = Point(11, y=22)             # instantiate with positional args or keywords\n    >>> p[0] + p[1]                     # indexable like a plain tuple\n    33\n    >>> x, y = p                        # unpack like a regular tuple\n    >>> x, y\n    (11, 22)\n    >>> p.x + p.y                       # fields also accessible by name\n    33\n    >>> d = p._asdict()                 # convert to a dictionary\n    >>> d['x']\n    11\n    >>> Point(**d)                      # convert from a dictionary\n    Point(x=11, y=22)\n    >>> p._replace(x=100)               # _replace() is like str.replace() but targets named fields\n    Point(x=100, y=22)\n\n    \"\"\"\n\n    # Validate the field names.  At the user's option, either generate an error\n    # message or automatically replace the field name with a valid name.\n    if isinstance(field_names, str):\n        field_names = field_names.replace(',', ' ').split()\n    field_names = list(map(str, field_names))\n    typename = _sys.intern(str(typename))\n\n    if rename:\n        seen = set()\n        for index, name in enumerate(field_names):\n            if (not name.isidentifier()\n                or _iskeyword(name)\n                or name.startswith('_')\n                or name in seen):\n                field_names[index] = f'_{index}'\n            seen.add(name)\n\n    for name in [typename] + field_names:\n        if type(name) is not str:\n            raise TypeError('Type names and field names must be strings')\n        if not name.isidentifier():\n            raise ValueError('Type names and field names must be valid '\n                             f'identifiers: {name!r}')\n        if _iskeyword(name):\n            raise ValueError('Type names and field names cannot be a '\n                             f'keyword: {name!r}')\n\n    seen = set()\n    for name in field_names:\n        if name.startswith('_') and not rename:\n            raise ValueError('Field names cannot start with an underscore: '\n                             f'{name!r}')\n        if name in seen:\n            raise ValueError(f'Encountered duplicate field name: {name!r}')\n        seen.add(name)\n\n    field_defaults = {}\n    if defaults is not None:\n        defaults = tuple(defaults)\n        if len(defaults) > len(field_names):\n            raise TypeError('Got more default values than field names')\n        field_defaults = dict(reversed(list(zip(reversed(field_names),\n                                                reversed(defaults)))))\n\n    # Variables used in the methods and docstrings\n    field_names = tuple(map(_sys.intern, field_names))\n    num_fields = len(field_names)\n    arg_list = repr(field_names).replace(\"'\", \"\")[1:-1]\n    repr_fmt = '(' + ', '.join(f'{name}=%r' for name in field_names) + ')'\n    tuple_new = tuple.__new__\n    _dict, _tuple, _len, _map, _zip = dict, tuple, len, map, zip\n\n    # Create all the named tuple methods to be added to the class namespace\n\n    s = f'def __new__(_cls, {arg_list}): return _tuple_new(_cls, ({arg_list}))'\n    namespace = {'_tuple_new': tuple_new, '__name__': f'namedtuple_{typename}'}\n    # Note: exec() has the side-effect of interning the field names\n    exec(s, namespace)\n    __new__ = namespace['__new__']\n    __new__.__doc__ = f'Create new instance of {typename}({arg_list})'\n    if defaults is not None:\n        __new__.__defaults__ = defaults\n\n    @classmethod\n    def _make(cls, iterable):\n        result = tuple_new(cls, iterable)\n        if _len(result) != num_fields:\n            raise TypeError(f'Expected {num_fields} arguments, got {len(result)}')\n        return result\n\n    _make.__func__.__doc__ = (f'Make a new {typename} object from a sequence '\n                              'or iterable')\n\n    def _replace(self, /, **kwds):\n        result = self._make(_map(kwds.pop, field_names, self))\n        if kwds:\n            raise ValueError(f'Got unexpected field names: {list(kwds)!r}')\n        return result\n\n    _replace.__doc__ = (f'Return a new {typename} object replacing specified '\n                        'fields with new values')\n\n    def __repr__(self):\n        'Return a nicely formatted representation string'\n        return self.__class__.__name__ + repr_fmt % self\n\n    def _asdict(self):\n        'Return a new dict which maps field names to their values.'\n        return _dict(_zip(self._fields, self))\n\n    def __getnewargs__(self):\n        'Return self as a plain tuple.  Used by copy and pickle.'\n        return _tuple(self)\n\n    # Modify function metadata to help with introspection and debugging\n    for method in (__new__, _make.__func__, _replace,\n                   __repr__, _asdict, __getnewargs__):\n        method.__qualname__ = f'{typename}.{method.__name__}'\n\n    # Build-up the class namespace dictionary\n    # and use type() to build the result class\n    class_namespace = {\n        '__doc__': f'{typename}({arg_list})',\n        '__slots__': (),\n        '_fields': field_names,\n        '_field_defaults': field_defaults,\n        # alternate spelling for backward compatibility\n        '_fields_defaults': field_defaults,\n        '__new__': __new__,\n        '_make': _make,\n        '_replace': _replace,\n        '__repr__': __repr__,\n        '_asdict': _asdict,\n        '__getnewargs__': __getnewargs__,\n    }\n    for index, name in enumerate(field_names):\n        doc = _sys.intern(f'Alias for field number {index}')\n        class_namespace[name] = _tuplegetter(index, doc)\n\n    result = type(typename, (tuple,), class_namespace)\n\n    # For pickling to work, the __module__ variable needs to be set to the frame\n    # where the named tuple is created.  Bypass this step in environments where\n    # sys._getframe is not defined (Jython for example) or sys._getframe is not\n    # defined for arguments greater than 0 (IronPython), or where the user has\n    # specified a particular module.\n    if module is None:\n        try:\n            module = _sys._getframe(1).f_globals.get('__name__', '__main__')\n        except (AttributeError, ValueError):\n            pass\n    if module is not None:\n        result.__module__ = module\n\n    return result\n\n\n########################################################################\n###  Counter\n########################################################################\n\ndef _count_elements(mapping, iterable):\n    'Tally elements from the iterable.'\n    mapping_get = mapping.get\n    for elem in iterable:\n        mapping[elem] = mapping_get(elem, 0) + 1\n\ntry:                                    # Load C helper function if available\n    from _collections import _count_elements\nexcept ImportError:\n    pass\n\nclass Counter(dict):\n    '''Dict subclass for counting hashable items.  Sometimes called a bag\n    or multiset.  Elements are stored as dictionary keys and their counts\n    are stored as dictionary values.\n\n    >>> c = Counter('abcdeabcdabcaba')  # count elements from a string\n\n    >>> c.most_common(3)                # three most common elements\n    [('a', 5), ('b', 4), ('c', 3)]\n    >>> sorted(c)                       # list all unique elements\n    ['a', 'b', 'c', 'd', 'e']\n    >>> ''.join(sorted(c.elements()))   # list elements with repetitions\n    'aaaaabbbbcccdde'\n    >>> sum(c.values())                 # total of all counts\n    15\n\n    >>> c['a']                          # count of letter 'a'\n    5\n    >>> for elem in 'shazam':           # update counts from an iterable\n    ...     c[elem] += 1                # by adding 1 to each element's count\n    >>> c['a']                          # now there are seven 'a'\n    7\n    >>> del c['b']                      # remove all 'b'\n    >>> c['b']                          # now there are zero 'b'\n    0\n\n    >>> d = Counter('simsalabim')       # make another counter\n    >>> c.update(d)                     # add in the second counter\n    >>> c['a']                          # now there are nine 'a'\n    9\n\n    >>> c.clear()                       # empty the counter\n    >>> c\n    Counter()\n\n    Note:  If a count is set to zero or reduced to zero, it will remain\n    in the counter until the entry is deleted or the counter is cleared:\n\n    >>> c = Counter('aaabbc')\n    >>> c['b'] -= 2                     # reduce the count of 'b' by two\n    >>> c.most_common()                 # 'b' is still in, but its count is zero\n    [('a', 3), ('c', 1), ('b', 0)]\n\n    '''\n    # References:\n    #   http://en.wikipedia.org/wiki/Multiset\n    #   http://www.gnu.org/software/smalltalk/manual-base/html_node/Bag.html\n    #   http://www.demo2s.com/Tutorial/Cpp/0380__set-multiset/Catalog0380__set-multiset.htm\n    #   http://code.activestate.com/recipes/259174/\n    #   Knuth, TAOCP Vol. II section 4.6.3\n\n    def __init__(self, iterable=None, /, **kwds):\n        '''Create a new, empty Counter object.  And if given, count elements\n        from an input iterable.  Or, initialize the count from another mapping\n        of elements to their counts.\n\n        >>> c = Counter()                           # a new, empty counter\n        >>> c = Counter('gallahad')                 # a new counter from an iterable\n        >>> c = Counter({'a': 4, 'b': 2})           # a new counter from a mapping\n        >>> c = Counter(a=4, b=2)                   # a new counter from keyword args\n\n        '''\n        super(Counter, self).__init__()\n        self.update(iterable, **kwds)\n\n    def __missing__(self, key):\n        'The count of elements not in the Counter is zero.'\n        # Needed so that self[missing_item] does not raise KeyError\n        return 0\n\n    def most_common(self, n=None):\n        '''List the n most common elements and their counts from the most\n        common to the least.  If n is None, then list all element counts.\n\n        >>> Counter('abracadabra').most_common(3)\n        [('a', 5), ('b', 2), ('r', 2)]\n\n        '''\n        # Emulate Bag.sortedByCount from Smalltalk\n        if n is None:\n            return sorted(self.items(), key=_itemgetter(1), reverse=True)\n        return _heapq.nlargest(n, self.items(), key=_itemgetter(1))\n\n    def elements(self):\n        '''Iterator over elements repeating each as many times as its count.\n\n        >>> c = Counter('ABCABC')\n        >>> sorted(c.elements())\n        ['A', 'A', 'B', 'B', 'C', 'C']\n\n        # Knuth's example for prime factors of 1836:  2**2 * 3**3 * 17**1\n        >>> prime_factors = Counter({2: 2, 3: 3, 17: 1})\n        >>> product = 1\n        >>> for factor in prime_factors.elements():     # loop over factors\n        ...     product *= factor                       # and multiply them\n        >>> product\n        1836\n\n        Note, if an element's count has been set to zero or is a negative\n        number, elements() will ignore it.\n\n        '''\n        # Emulate Bag.do from Smalltalk and Multiset.begin from C++.\n        return _chain.from_iterable(_starmap(_repeat, self.items()))\n\n    # Override dict methods where necessary\n\n    @classmethod\n    def fromkeys(cls, iterable, v=None):\n        # There is no equivalent method for counters because the semantics\n        # would be ambiguous in cases such as Counter.fromkeys('aaabbc', v=2).\n        # Initializing counters to zero values isn't necessary because zero\n        # is already the default value for counter lookups.  Initializing\n        # to one is easily accomplished with Counter(set(iterable)).  For\n        # more exotic cases, create a dictionary first using a dictionary\n        # comprehension or dict.fromkeys().\n        raise NotImplementedError(\n            'Counter.fromkeys() is undefined.  Use Counter(iterable) instead.')\n\n    def update(self, iterable=None, /, **kwds):\n        '''Like dict.update() but add counts instead of replacing them.\n\n        Source can be an iterable, a dictionary, or another Counter instance.\n\n        >>> c = Counter('which')\n        >>> c.update('witch')           # add elements from another iterable\n        >>> d = Counter('watch')\n        >>> c.update(d)                 # add elements from another counter\n        >>> c['h']                      # four 'h' in which, witch, and watch\n        4\n\n        '''\n        # The regular dict.update() operation makes no sense here because the\n        # replace behavior results in the some of original untouched counts\n        # being mixed-in with all of the other counts for a mismash that\n        # doesn't have a straight-forward interpretation in most counting\n        # contexts.  Instead, we implement straight-addition.  Both the inputs\n        # and outputs are allowed to contain zero and negative counts.\n\n        if iterable is not None:\n            if isinstance(iterable, _collections_abc.Mapping):\n                if self:\n                    self_get = self.get\n                    for elem, count in iterable.items():\n                        self[elem] = count + self_get(elem, 0)\n                else:\n                    super(Counter, self).update(iterable) # fast path when counter is empty\n            else:\n                _count_elements(self, iterable)\n        if kwds:\n            self.update(kwds)\n\n    def subtract(self, iterable=None, /, **kwds):\n        '''Like dict.update() but subtracts counts instead of replacing them.\n        Counts can be reduced below zero.  Both the inputs and outputs are\n        allowed to contain zero and negative counts.\n\n        Source can be an iterable, a dictionary, or another Counter instance.\n\n        >>> c = Counter('which')\n        >>> c.subtract('witch')             # subtract elements from another iterable\n        >>> c.subtract(Counter('watch'))    # subtract elements from another counter\n        >>> c['h']                          # 2 in which, minus 1 in witch, minus 1 in watch\n        0\n        >>> c['w']                          # 1 in which, minus 1 in witch, minus 1 in watch\n        -1\n\n        '''\n        if iterable is not None:\n            self_get = self.get\n            if isinstance(iterable, _collections_abc.Mapping):\n                for elem, count in iterable.items():\n                    self[elem] = self_get(elem, 0) - count\n            else:\n                for elem in iterable:\n                    self[elem] = self_get(elem, 0) - 1\n        if kwds:\n            self.subtract(kwds)\n\n    def copy(self):\n        'Return a shallow copy.'\n        return self.__class__(self)\n\n    def __reduce__(self):\n        return self.__class__, (dict(self),)\n\n    def __delitem__(self, elem):\n        'Like dict.__delitem__() but does not raise KeyError for missing values.'\n        if elem in self:\n            super().__delitem__(elem)\n\n    def __repr__(self):\n        if not self:\n            return '%s()' % self.__class__.__name__\n        try:\n            items = ', '.join(map('%r: %r'.__mod__, self.most_common()))\n            return '%s({%s})' % (self.__class__.__name__, items)\n        except TypeError:\n            # handle case where values are not orderable\n            return '{0}({1!r})'.format(self.__class__.__name__, dict(self))\n\n    # Multiset-style mathematical operations discussed in:\n    #       Knuth TAOCP Volume II section 4.6.3 exercise 19\n    #       and at http://en.wikipedia.org/wiki/Multiset\n    #\n    # Outputs guaranteed to only include positive counts.\n    #\n    # To strip negative and zero counts, add-in an empty counter:\n    #       c += Counter()\n    #\n    # Rich comparison operators for multiset subset and superset tests\n    # are deliberately omitted due to semantic conflicts with the\n    # existing inherited dict equality method.  Subset and superset\n    # semantics ignore zero counts and require that p≤q ∧ p≥q → p=q;\n    # however, that would not be the case for p=Counter(a=1, b=0)\n    # and q=Counter(a=1) where the dictionaries are not equal.\n\n    def __add__(self, other):\n        '''Add counts from two counters.\n\n        >>> Counter('abbb') + Counter('bcc')\n        Counter({'b': 4, 'c': 2, 'a': 1})\n\n        '''\n        if not isinstance(other, Counter):\n            return NotImplemented\n        result = Counter()\n        for elem, count in self.items():\n            newcount = count + other[elem]\n            if newcount > 0:\n                result[elem] = newcount\n        for elem, count in other.items():\n            if elem not in self and count > 0:\n                result[elem] = count\n        return result\n\n    def __sub__(self, other):\n        ''' Subtract count, but keep only results with positive counts.\n\n        >>> Counter('abbbc') - Counter('bccd')\n        Counter({'b': 2, 'a': 1})\n\n        '''\n        if not isinstance(other, Counter):\n            return NotImplemented\n        result = Counter()\n        for elem, count in self.items():\n            newcount = count - other[elem]\n            if newcount > 0:\n                result[elem] = newcount\n        for elem, count in other.items():\n            if elem not in self and count < 0:\n                result[elem] = 0 - count\n        return result\n\n    def __or__(self, other):\n        '''Union is the maximum of value in either of the input counters.\n\n        >>> Counter('abbb') | Counter('bcc')\n        Counter({'b': 3, 'c': 2, 'a': 1})\n\n        '''\n        if not isinstance(other, Counter):\n            return NotImplemented\n        result = Counter()\n        for elem, count in self.items():\n            other_count = other[elem]\n            newcount = other_count if count < other_count else count\n            if newcount > 0:\n                result[elem] = newcount\n        for elem, count in other.items():\n            if elem not in self and count > 0:\n                result[elem] = count\n        return result\n\n    def __and__(self, other):\n        ''' Intersection is the minimum of corresponding counts.\n\n        >>> Counter('abbb') & Counter('bcc')\n        Counter({'b': 1})\n\n        '''\n        if not isinstance(other, Counter):\n            return NotImplemented\n        result = Counter()\n        for elem, count in self.items():\n            other_count = other[elem]\n            newcount = count if count < other_count else other_count\n            if newcount > 0:\n                result[elem] = newcount\n        return result\n\n    def __pos__(self):\n        'Adds an empty counter, effectively stripping negative and zero counts'\n        result = Counter()\n        for elem, count in self.items():\n            if count > 0:\n                result[elem] = count\n        return result\n\n    def __neg__(self):\n        '''Subtracts from an empty counter.  Strips positive and zero counts,\n        and flips the sign on negative counts.\n\n        '''\n        result = Counter()\n        for elem, count in self.items():\n            if count < 0:\n                result[elem] = 0 - count\n        return result\n\n    def _keep_positive(self):\n        '''Internal method to strip elements with a negative or zero count'''\n        nonpositive = [elem for elem, count in self.items() if not count > 0]\n        for elem in nonpositive:\n            del self[elem]\n        return self\n\n    def __iadd__(self, other):\n        '''Inplace add from another counter, keeping only positive counts.\n\n        >>> c = Counter('abbb')\n        >>> c += Counter('bcc')\n        >>> c\n        Counter({'b': 4, 'c': 2, 'a': 1})\n\n        '''\n        for elem, count in other.items():\n            self[elem] += count\n        return self._keep_positive()\n\n    def __isub__(self, other):\n        '''Inplace subtract counter, but keep only results with positive counts.\n\n        >>> c = Counter('abbbc')\n        >>> c -= Counter('bccd')\n        >>> c\n        Counter({'b': 2, 'a': 1})\n\n        '''\n        for elem, count in other.items():\n            self[elem] -= count\n        return self._keep_positive()\n\n    def __ior__(self, other):\n        '''Inplace union is the maximum of value from either counter.\n\n        >>> c = Counter('abbb')\n        >>> c |= Counter('bcc')\n        >>> c\n        Counter({'b': 3, 'c': 2, 'a': 1})\n\n        '''\n        for elem, other_count in other.items():\n            count = self[elem]\n            if other_count > count:\n                self[elem] = other_count\n        return self._keep_positive()\n\n    def __iand__(self, other):\n        '''Inplace intersection is the minimum of corresponding counts.\n\n        >>> c = Counter('abbb')\n        >>> c &= Counter('bcc')\n        >>> c\n        Counter({'b': 1})\n\n        '''\n        for elem, count in self.items():\n            other_count = other[elem]\n            if other_count < count:\n                self[elem] = other_count\n        return self._keep_positive()\n\n\n########################################################################\n###  ChainMap\n########################################################################\n\nclass ChainMap(_collections_abc.MutableMapping):\n    ''' A ChainMap groups multiple dicts (or other mappings) together\n    to create a single, updateable view.\n\n    The underlying mappings are stored in a list.  That list is public and can\n    be accessed or updated using the *maps* attribute.  There is no other\n    state.\n\n    Lookups search the underlying mappings successively until a key is found.\n    In contrast, writes, updates, and deletions only operate on the first\n    mapping.\n\n    '''\n\n    def __init__(self, *maps):\n        '''Initialize a ChainMap by setting *maps* to the given mappings.\n        If no mappings are provided, a single empty dictionary is used.\n\n        '''\n        self.maps = list(maps) or [{}]          # always at least one map\n\n    def __missing__(self, key):\n        raise KeyError(key)\n\n    def __getitem__(self, key):\n        for mapping in self.maps:\n            try:\n                return mapping[key]             # can't use 'key in mapping' with defaultdict\n            except KeyError:\n                pass\n        return self.__missing__(key)            # support subclasses that define __missing__\n\n    def get(self, key, default=None):\n        return self[key] if key in self else default\n\n    def __len__(self):\n        return len(set().union(*self.maps))     # reuses stored hash values if possible\n\n    def __iter__(self):\n        d = {}\n        for mapping in reversed(self.maps):\n            d.update(mapping)                   # reuses stored hash values if possible\n        return iter(d)\n\n    def __contains__(self, key):\n        return any(key in m for m in self.maps)\n\n    def __bool__(self):\n        return any(self.maps)\n\n    @_recursive_repr()\n    def __repr__(self):\n        return f'{self.__class__.__name__}({\", \".join(map(repr, self.maps))})'\n\n    @classmethod\n    def fromkeys(cls, iterable, *args):\n        'Create a ChainMap with a single dict created from the iterable.'\n        return cls(dict.fromkeys(iterable, *args))\n\n    def copy(self):\n        'New ChainMap or subclass with a new copy of maps[0] and refs to maps[1:]'\n        return self.__class__(self.maps[0].copy(), *self.maps[1:])\n\n    __copy__ = copy\n\n    def new_child(self, m=None):                # like Django's Context.push()\n        '''New ChainMap with a new map followed by all previous maps.\n        If no map is provided, an empty dict is used.\n        '''\n        if m is None:\n            m = {}\n        return self.__class__(m, *self.maps)\n\n    @property\n    def parents(self):                          # like Django's Context.pop()\n        'New ChainMap from maps[1:].'\n        return self.__class__(*self.maps[1:])\n\n    def __setitem__(self, key, value):\n        self.maps[0][key] = value\n\n    def __delitem__(self, key):\n        try:\n            del self.maps[0][key]\n        except KeyError:\n            raise KeyError('Key not found in the first mapping: {!r}'.format(key))\n\n    def popitem(self):\n        'Remove and return an item pair from maps[0]. Raise KeyError is maps[0] is empty.'\n        try:\n            return self.maps[0].popitem()\n        except KeyError:\n            raise KeyError('No keys found in the first mapping.')\n\n    def pop(self, key, *args):\n        'Remove *key* from maps[0] and return its value. Raise KeyError if *key* not in maps[0].'\n        try:\n            return self.maps[0].pop(key, *args)\n        except KeyError:\n            raise KeyError('Key not found in the first mapping: {!r}'.format(key))\n\n    def clear(self):\n        'Clear maps[0], leaving maps[1:] intact.'\n        self.maps[0].clear()\n\n\n################################################################################\n### UserDict\n################################################################################\n\nclass UserDict(_collections_abc.MutableMapping):\n\n    # Start by filling-out the abstract methods\n    def __init__(*args, **kwargs):\n        if not args:\n            raise TypeError(\"descriptor '__init__' of 'UserDict' object \"\n                            \"needs an argument\")\n        self, *args = args\n        if len(args) > 1:\n            raise TypeError('expected at most 1 arguments, got %d' % len(args))\n        if args:\n            dict = args[0]\n        elif 'dict' in kwargs:\n            dict = kwargs.pop('dict')\n            import warnings\n            warnings.warn(\"Passing 'dict' as keyword argument is deprecated\",\n                          DeprecationWarning, stacklevel=2)\n        else:\n            dict = None\n        self.data = {}\n        if dict is not None:\n            self.update(dict)\n        if kwargs:\n            self.update(kwargs)\n    __init__.__text_signature__ = '($self, dict=None, /, **kwargs)'\n\n    def __len__(self): return len(self.data)\n    def __getitem__(self, key):\n        if key in self.data:\n            return self.data[key]\n        if hasattr(self.__class__, \"__missing__\"):\n            return self.__class__.__missing__(self, key)\n        raise KeyError(key)\n    def __setitem__(self, key, item): self.data[key] = item\n    def __delitem__(self, key): del self.data[key]\n    def __iter__(self):\n        return iter(self.data)\n\n    # Modify __contains__ to work correctly when __missing__ is present\n    def __contains__(self, key):\n        return key in self.data\n\n    # Now, add the methods in dicts but not in MutableMapping\n    def __repr__(self): return repr(self.data)\n    def __copy__(self):\n        inst = self.__class__.__new__(self.__class__)\n        inst.__dict__.update(self.__dict__)\n        # Create a copy and avoid triggering descriptors\n        inst.__dict__[\"data\"] = self.__dict__[\"data\"].copy()\n        return inst\n\n    def copy(self):\n        if self.__class__ is UserDict:\n            return UserDict(self.data.copy())\n        import copy\n        data = self.data\n        try:\n            self.data = {}\n            c = copy.copy(self)\n        finally:\n            self.data = data\n        c.update(self)\n        return c\n\n    @classmethod\n    def fromkeys(cls, iterable, value=None):\n        d = cls()\n        for key in iterable:\n            d[key] = value\n        return d\n\n\n\n################################################################################\n### UserList\n################################################################################\n\nclass UserList(_collections_abc.MutableSequence):\n    \"\"\"A more or less complete user-defined wrapper around list objects.\"\"\"\n    def __init__(self, initlist=None):\n        self.data = []\n        if initlist is not None:\n            # XXX should this accept an arbitrary sequence?\n            if type(initlist) == type(self.data):\n                self.data[:] = initlist\n            elif isinstance(initlist, UserList):\n                self.data[:] = initlist.data[:]\n            else:\n                self.data = list(initlist)\n    def __repr__(self): return repr(self.data)\n    def __lt__(self, other): return self.data <  self.__cast(other)\n    def __le__(self, other): return self.data <= self.__cast(other)\n    def __eq__(self, other): return self.data == self.__cast(other)\n    def __gt__(self, other): return self.data >  self.__cast(other)\n    def __ge__(self, other): return self.data >= self.__cast(other)\n    def __cast(self, other):\n        return other.data if isinstance(other, UserList) else other\n    def __contains__(self, item): return item in self.data\n    def __len__(self): return len(self.data)\n    def __getitem__(self, i):\n        if isinstance(i, slice):\n            return self.__class__(self.data[i])\n        else:\n            return self.data[i]\n    def __setitem__(self, i, item): self.data[i] = item\n    def __delitem__(self, i): del self.data[i]\n    def __add__(self, other):\n        if isinstance(other, UserList):\n            return self.__class__(self.data + other.data)\n        elif isinstance(other, type(self.data)):\n            return self.__class__(self.data + other)\n        return self.__class__(self.data + list(other))\n    def __radd__(self, other):\n        if isinstance(other, UserList):\n            return self.__class__(other.data + self.data)\n        elif isinstance(other, type(self.data)):\n            return self.__class__(other + self.data)\n        return self.__class__(list(other) + self.data)\n    def __iadd__(self, other):\n        if isinstance(other, UserList):\n            self.data += other.data\n        elif isinstance(other, type(self.data)):\n            self.data += other\n        else:\n            self.data += list(other)\n        return self\n    def __mul__(self, n):\n        return self.__class__(self.data*n)\n    __rmul__ = __mul__\n    def __imul__(self, n):\n        self.data *= n\n        return self\n    def __copy__(self):\n        inst = self.__class__.__new__(self.__class__)\n        inst.__dict__.update(self.__dict__)\n        # Create a copy and avoid triggering descriptors\n        inst.__dict__[\"data\"] = self.__dict__[\"data\"][:]\n        return inst\n    def append(self, item): self.data.append(item)\n    def insert(self, i, item): self.data.insert(i, item)\n    def pop(self, i=-1): return self.data.pop(i)\n    def remove(self, item): self.data.remove(item)\n    def clear(self): self.data.clear()\n    def copy(self): return self.__class__(self)\n    def count(self, item): return self.data.count(item)\n    def index(self, item, *args): return self.data.index(item, *args)\n    def reverse(self): self.data.reverse()\n    def sort(self, /, *args, **kwds): self.data.sort(*args, **kwds)\n    def extend(self, other):\n        if isinstance(other, UserList):\n            self.data.extend(other.data)\n        else:\n            self.data.extend(other)\n\n\n\n################################################################################\n### UserString\n################################################################################\n\nclass UserString(_collections_abc.Sequence):\n    def __init__(self, seq):\n        if isinstance(seq, str):\n            self.data = seq\n        elif isinstance(seq, UserString):\n            self.data = seq.data[:]\n        else:\n            self.data = str(seq)\n    def __str__(self): return str(self.data)\n    def __repr__(self): return repr(self.data)\n    def __int__(self): return int(self.data)\n    def __float__(self): return float(self.data)\n    def __complex__(self): return complex(self.data)\n    def __hash__(self): return hash(self.data)\n    def __getnewargs__(self):\n        return (self.data[:],)\n\n    def __eq__(self, string):\n        if isinstance(string, UserString):\n            return self.data == string.data\n        return self.data == string\n    def __lt__(self, string):\n        if isinstance(string, UserString):\n            return self.data < string.data\n        return self.data < string\n    def __le__(self, string):\n        if isinstance(string, UserString):\n            return self.data <= string.data\n        return self.data <= string\n    def __gt__(self, string):\n        if isinstance(string, UserString):\n            return self.data > string.data\n        return self.data > string\n    def __ge__(self, string):\n        if isinstance(string, UserString):\n            return self.data >= string.data\n        return self.data >= string\n\n    def __contains__(self, char):\n        if isinstance(char, UserString):\n            char = char.data\n        return char in self.data\n\n    def __len__(self): return len(self.data)\n    def __getitem__(self, index): return self.__class__(self.data[index])\n    def __add__(self, other):\n        if isinstance(other, UserString):\n            return self.__class__(self.data + other.data)\n        elif isinstance(other, str):\n            return self.__class__(self.data + other)\n        return self.__class__(self.data + str(other))\n    def __radd__(self, other):\n        if isinstance(other, str):\n            return self.__class__(other + self.data)\n        return self.__class__(str(other) + self.data)\n    def __mul__(self, n):\n        return self.__class__(self.data*n)\n    __rmul__ = __mul__\n    def __mod__(self, args):\n        return self.__class__(self.data % args)\n    def __rmod__(self, template):\n        return self.__class__(str(template) % self)\n    # the following methods are defined in alphabetical order:\n    def capitalize(self): return self.__class__(self.data.capitalize())\n    def casefold(self):\n        return self.__class__(self.data.casefold())\n    def center(self, width, *args):\n        return self.__class__(self.data.center(width, *args))\n    def count(self, sub, start=0, end=_sys.maxsize):\n        if isinstance(sub, UserString):\n            sub = sub.data\n        return self.data.count(sub, start, end)\n    def encode(self, encoding='utf-8', errors='strict'):\n        encoding = 'utf-8' if encoding is None else encoding\n        errors = 'strict' if errors is None else errors\n        return self.data.encode(encoding, errors)\n    def endswith(self, suffix, start=0, end=_sys.maxsize):\n        return self.data.endswith(suffix, start, end)\n    def expandtabs(self, tabsize=8):\n        return self.__class__(self.data.expandtabs(tabsize))\n    def find(self, sub, start=0, end=_sys.maxsize):\n        if isinstance(sub, UserString):\n            sub = sub.data\n        return self.data.find(sub, start, end)\n    def format(self, /, *args, **kwds):\n        return self.data.format(*args, **kwds)\n    def format_map(self, mapping):\n        return self.data.format_map(mapping)\n    def index(self, sub, start=0, end=_sys.maxsize):\n        return self.data.index(sub, start, end)\n    def isalpha(self): return self.data.isalpha()\n    def isalnum(self): return self.data.isalnum()\n    def isascii(self): return self.data.isascii()\n    def isdecimal(self): return self.data.isdecimal()\n    def isdigit(self): return self.data.isdigit()\n    def isidentifier(self): return self.data.isidentifier()\n    def islower(self): return self.data.islower()\n    def isnumeric(self): return self.data.isnumeric()\n    def isprintable(self): return self.data.isprintable()\n    def isspace(self): return self.data.isspace()\n    def istitle(self): return self.data.istitle()\n    def isupper(self): return self.data.isupper()\n    def join(self, seq): return self.data.join(seq)\n    def ljust(self, width, *args):\n        return self.__class__(self.data.ljust(width, *args))\n    def lower(self): return self.__class__(self.data.lower())\n    def lstrip(self, chars=None): return self.__class__(self.data.lstrip(chars))\n    maketrans = str.maketrans\n    def partition(self, sep):\n        return self.data.partition(sep)\n    def replace(self, old, new, maxsplit=-1):\n        if isinstance(old, UserString):\n            old = old.data\n        if isinstance(new, UserString):\n            new = new.data\n        return self.__class__(self.data.replace(old, new, maxsplit))\n    def rfind(self, sub, start=0, end=_sys.maxsize):\n        if isinstance(sub, UserString):\n            sub = sub.data\n        return self.data.rfind(sub, start, end)\n    def rindex(self, sub, start=0, end=_sys.maxsize):\n        return self.data.rindex(sub, start, end)\n    def rjust(self, width, *args):\n        return self.__class__(self.data.rjust(width, *args))\n    def rpartition(self, sep):\n        return self.data.rpartition(sep)\n    def rstrip(self, chars=None):\n        return self.__class__(self.data.rstrip(chars))\n    def split(self, sep=None, maxsplit=-1):\n        return self.data.split(sep, maxsplit)\n    def rsplit(self, sep=None, maxsplit=-1):\n        return self.data.rsplit(sep, maxsplit)\n    def splitlines(self, keepends=False): return self.data.splitlines(keepends)\n    def startswith(self, prefix, start=0, end=_sys.maxsize):\n        return self.data.startswith(prefix, start, end)\n    def strip(self, chars=None): return self.__class__(self.data.strip(chars))\n    def swapcase(self): return self.__class__(self.data.swapcase())\n    def title(self): return self.__class__(self.data.title())\n    def translate(self, *args):\n        return self.__class__(self.data.translate(*args))\n    def upper(self): return self.__class__(self.data.upper())\n    def zfill(self, width): return self.__class__(self.data.zfill(width))\n"
  },
  {
    "path": "rd/usr/lib/python3.8/collections/abc.py",
    "content": "from _collections_abc import *\nfrom _collections_abc import __all__\n"
  },
  {
    "path": "rd/usr/lib/python3.8/colorsys.py",
    "content": "\"\"\"Conversion functions between RGB and other color systems.\n\nThis modules provides two functions for each color system ABC:\n\n  rgb_to_abc(r, g, b) --> a, b, c\n  abc_to_rgb(a, b, c) --> r, g, b\n\nAll inputs and outputs are triples of floats in the range [0.0...1.0]\n(with the exception of I and Q, which covers a slightly larger range).\nInputs outside the valid range may cause exceptions or invalid outputs.\n\nSupported color systems:\nRGB: Red, Green, Blue components\nYIQ: Luminance, Chrominance (used by composite video signals)\nHLS: Hue, Luminance, Saturation\nHSV: Hue, Saturation, Value\n\"\"\"\n\n# References:\n# http://en.wikipedia.org/wiki/YIQ\n# http://en.wikipedia.org/wiki/HLS_color_space\n# http://en.wikipedia.org/wiki/HSV_color_space\n\n__all__ = [\"rgb_to_yiq\",\"yiq_to_rgb\",\"rgb_to_hls\",\"hls_to_rgb\",\n           \"rgb_to_hsv\",\"hsv_to_rgb\"]\n\n# Some floating point constants\n\nONE_THIRD = 1.0/3.0\nONE_SIXTH = 1.0/6.0\nTWO_THIRD = 2.0/3.0\n\n# YIQ: used by composite video signals (linear combinations of RGB)\n# Y: perceived grey level (0.0 == black, 1.0 == white)\n# I, Q: color components\n#\n# There are a great many versions of the constants used in these formulae.\n# The ones in this library uses constants from the FCC version of NTSC.\n\ndef rgb_to_yiq(r, g, b):\n    y = 0.30*r + 0.59*g + 0.11*b\n    i = 0.74*(r-y) - 0.27*(b-y)\n    q = 0.48*(r-y) + 0.41*(b-y)\n    return (y, i, q)\n\ndef yiq_to_rgb(y, i, q):\n    # r = y + (0.27*q + 0.41*i) / (0.74*0.41 + 0.27*0.48)\n    # b = y + (0.74*q - 0.48*i) / (0.74*0.41 + 0.27*0.48)\n    # g = y - (0.30*(r-y) + 0.11*(b-y)) / 0.59\n\n    r = y + 0.9468822170900693*i + 0.6235565819861433*q\n    g = y - 0.27478764629897834*i - 0.6356910791873801*q\n    b = y - 1.1085450346420322*i + 1.7090069284064666*q\n\n    if r < 0.0:\n        r = 0.0\n    if g < 0.0:\n        g = 0.0\n    if b < 0.0:\n        b = 0.0\n    if r > 1.0:\n        r = 1.0\n    if g > 1.0:\n        g = 1.0\n    if b > 1.0:\n        b = 1.0\n    return (r, g, b)\n\n\n# HLS: Hue, Luminance, Saturation\n# H: position in the spectrum\n# L: color lightness\n# S: color saturation\n\ndef rgb_to_hls(r, g, b):\n    maxc = max(r, g, b)\n    minc = min(r, g, b)\n    # XXX Can optimize (maxc+minc) and (maxc-minc)\n    l = (minc+maxc)/2.0\n    if minc == maxc:\n        return 0.0, l, 0.0\n    if l <= 0.5:\n        s = (maxc-minc) / (maxc+minc)\n    else:\n        s = (maxc-minc) / (2.0-maxc-minc)\n    rc = (maxc-r) / (maxc-minc)\n    gc = (maxc-g) / (maxc-minc)\n    bc = (maxc-b) / (maxc-minc)\n    if r == maxc:\n        h = bc-gc\n    elif g == maxc:\n        h = 2.0+rc-bc\n    else:\n        h = 4.0+gc-rc\n    h = (h/6.0) % 1.0\n    return h, l, s\n\ndef hls_to_rgb(h, l, s):\n    if s == 0.0:\n        return l, l, l\n    if l <= 0.5:\n        m2 = l * (1.0+s)\n    else:\n        m2 = l+s-(l*s)\n    m1 = 2.0*l - m2\n    return (_v(m1, m2, h+ONE_THIRD), _v(m1, m2, h), _v(m1, m2, h-ONE_THIRD))\n\ndef _v(m1, m2, hue):\n    hue = hue % 1.0\n    if hue < ONE_SIXTH:\n        return m1 + (m2-m1)*hue*6.0\n    if hue < 0.5:\n        return m2\n    if hue < TWO_THIRD:\n        return m1 + (m2-m1)*(TWO_THIRD-hue)*6.0\n    return m1\n\n\n# HSV: Hue, Saturation, Value\n# H: position in the spectrum\n# S: color saturation (\"purity\")\n# V: color brightness\n\ndef rgb_to_hsv(r, g, b):\n    maxc = max(r, g, b)\n    minc = min(r, g, b)\n    v = maxc\n    if minc == maxc:\n        return 0.0, 0.0, v\n    s = (maxc-minc) / maxc\n    rc = (maxc-r) / (maxc-minc)\n    gc = (maxc-g) / (maxc-minc)\n    bc = (maxc-b) / (maxc-minc)\n    if r == maxc:\n        h = bc-gc\n    elif g == maxc:\n        h = 2.0+rc-bc\n    else:\n        h = 4.0+gc-rc\n    h = (h/6.0) % 1.0\n    return h, s, v\n\ndef hsv_to_rgb(h, s, v):\n    if s == 0.0:\n        return v, v, v\n    i = int(h*6.0) # XXX assume int() truncates!\n    f = (h*6.0) - i\n    p = v*(1.0 - s)\n    q = v*(1.0 - s*f)\n    t = v*(1.0 - s*(1.0-f))\n    i = i%6\n    if i == 0:\n        return v, t, p\n    if i == 1:\n        return q, v, p\n    if i == 2:\n        return p, v, t\n    if i == 3:\n        return p, q, v\n    if i == 4:\n        return t, p, v\n    if i == 5:\n        return v, p, q\n    # Cannot get here\n"
  },
  {
    "path": "rd/usr/lib/python3.8/compileall.py",
    "content": "\"\"\"Module/script to byte-compile all .py files to .pyc files.\n\nWhen called as a script with arguments, this compiles the directories\ngiven as arguments recursively; the -l option prevents it from\nrecursing into directories.\n\nWithout arguments, if compiles all modules on sys.path, without\nrecursing into subdirectories.  (Even though it should do so for\npackages -- for now, you'll have to deal with packages separately.)\n\nSee module py_compile for details of the actual byte-compilation.\n\"\"\"\nimport os\nimport sys\nimport importlib.util\nimport py_compile\nimport struct\n\nfrom functools import partial\n\n__all__ = [\"compile_dir\",\"compile_file\",\"compile_path\"]\n\ndef _walk_dir(dir, ddir=None, maxlevels=10, quiet=0):\n    if quiet < 2 and isinstance(dir, os.PathLike):\n        dir = os.fspath(dir)\n    if not quiet:\n        print('Listing {!r}...'.format(dir))\n    try:\n        names = os.listdir(dir)\n    except OSError:\n        if quiet < 2:\n            print(\"Can't list {!r}\".format(dir))\n        names = []\n    names.sort()\n    for name in names:\n        if name == '__pycache__':\n            continue\n        fullname = os.path.join(dir, name)\n        if ddir is not None:\n            dfile = os.path.join(ddir, name)\n        else:\n            dfile = None\n        if not os.path.isdir(fullname):\n            yield fullname, ddir\n        elif (maxlevels > 0 and name != os.curdir and name != os.pardir and\n              os.path.isdir(fullname) and not os.path.islink(fullname)):\n            yield from _walk_dir(fullname, ddir=dfile,\n                                 maxlevels=maxlevels - 1, quiet=quiet)\n\ndef compile_dir(dir, maxlevels=10, ddir=None, force=False, rx=None,\n                quiet=0, legacy=False, optimize=-1, workers=1,\n                invalidation_mode=None):\n    \"\"\"Byte-compile all modules in the given directory tree.\n\n    Arguments (only dir is required):\n\n    dir:       the directory to byte-compile\n    maxlevels: maximum recursion level (default 10)\n    ddir:      the directory that will be prepended to the path to the\n               file as it is compiled into each byte-code file.\n    force:     if True, force compilation, even if timestamps are up-to-date\n    quiet:     full output with False or 0, errors only with 1,\n               no output with 2\n    legacy:    if True, produce legacy pyc paths instead of PEP 3147 paths\n    optimize:  optimization level or -1 for level of the interpreter\n    workers:   maximum number of parallel workers\n    invalidation_mode: how the up-to-dateness of the pyc will be checked\n    \"\"\"\n    ProcessPoolExecutor = None\n    if workers < 0:\n        raise ValueError('workers must be greater or equal to 0')\n    if workers != 1:\n        try:\n            # Only import when needed, as low resource platforms may\n            # fail to import it\n            from concurrent.futures import ProcessPoolExecutor\n        except ImportError:\n            workers = 1\n    files_and_ddirs = _walk_dir(dir, quiet=quiet, maxlevels=maxlevels,\n                                ddir=ddir)\n    success = True\n    if workers != 1 and ProcessPoolExecutor is not None:\n        # If workers == 0, let ProcessPoolExecutor choose\n        workers = workers or None\n        with ProcessPoolExecutor(max_workers=workers) as executor:\n            results = executor.map(\n                    partial(_compile_file_tuple,\n                            force=force, rx=rx, quiet=quiet,\n                            legacy=legacy, optimize=optimize,\n                            invalidation_mode=invalidation_mode,\n                        ),\n                    files_and_ddirs)\n            success = min(results, default=True)\n    else:\n        for file, dfile in files_and_ddirs:\n            if not compile_file(file, dfile, force, rx, quiet,\n                                legacy, optimize, invalidation_mode):\n                success = False\n    return success\n\ndef _compile_file_tuple(file_and_dfile, **kwargs):\n    \"\"\"Needs to be toplevel for ProcessPoolExecutor.\"\"\"\n    file, dfile = file_and_dfile\n    return compile_file(file, dfile, **kwargs)\n\ndef compile_file(fullname, ddir=None, force=False, rx=None, quiet=0,\n                 legacy=False, optimize=-1,\n                 invalidation_mode=None):\n    \"\"\"Byte-compile one file.\n\n    Arguments (only fullname is required):\n\n    fullname:  the file to byte-compile\n    ddir:      if given, the directory name compiled in to the\n               byte-code file.\n    force:     if True, force compilation, even if timestamps are up-to-date\n    quiet:     full output with False or 0, errors only with 1,\n               no output with 2\n    legacy:    if True, produce legacy pyc paths instead of PEP 3147 paths\n    optimize:  optimization level or -1 for level of the interpreter\n    invalidation_mode: how the up-to-dateness of the pyc will be checked\n    \"\"\"\n    success = True\n    if quiet < 2 and isinstance(fullname, os.PathLike):\n        fullname = os.fspath(fullname)\n    name = os.path.basename(fullname)\n    if ddir is not None:\n        dfile = os.path.join(ddir, name)\n    else:\n        dfile = None\n    if rx is not None:\n        mo = rx.search(fullname)\n        if mo:\n            return success\n    if os.path.isfile(fullname):\n        if legacy:\n            cfile = fullname + 'c'\n        else:\n            if optimize >= 0:\n                opt = optimize if optimize >= 1 else ''\n                cfile = importlib.util.cache_from_source(\n                                fullname, optimization=opt)\n            else:\n                cfile = importlib.util.cache_from_source(fullname)\n            cache_dir = os.path.dirname(cfile)\n        head, tail = name[:-3], name[-3:]\n        if tail == '.py':\n            if not force:\n                try:\n                    mtime = int(os.stat(fullname).st_mtime)\n                    expect = struct.pack('<4sll', importlib.util.MAGIC_NUMBER,\n                                         0, mtime)\n                    with open(cfile, 'rb') as chandle:\n                        actual = chandle.read(12)\n                    if expect == actual:\n                        return success\n                except OSError:\n                    pass\n            if not quiet:\n                print('Compiling {!r}...'.format(fullname))\n            try:\n                ok = py_compile.compile(fullname, cfile, dfile, True,\n                                        optimize=optimize,\n                                        invalidation_mode=invalidation_mode)\n            except py_compile.PyCompileError as err:\n                success = False\n                if quiet >= 2:\n                    return success\n                elif quiet:\n                    print('*** Error compiling {!r}...'.format(fullname))\n                else:\n                    print('*** ', end='')\n                # escape non-printable characters in msg\n                msg = err.msg.encode(sys.stdout.encoding,\n                                     errors='backslashreplace')\n                msg = msg.decode(sys.stdout.encoding)\n                print(msg)\n            except (SyntaxError, UnicodeError, OSError) as e:\n                success = False\n                if quiet >= 2:\n                    return success\n                elif quiet:\n                    print('*** Error compiling {!r}...'.format(fullname))\n                else:\n                    print('*** ', end='')\n                print(e.__class__.__name__ + ':', e)\n            else:\n                if ok == 0:\n                    success = False\n    return success\n\ndef compile_path(skip_curdir=1, maxlevels=0, force=False, quiet=0,\n                 legacy=False, optimize=-1,\n                 invalidation_mode=None):\n    \"\"\"Byte-compile all module on sys.path.\n\n    Arguments (all optional):\n\n    skip_curdir: if true, skip current directory (default True)\n    maxlevels:   max recursion level (default 0)\n    force: as for compile_dir() (default False)\n    quiet: as for compile_dir() (default 0)\n    legacy: as for compile_dir() (default False)\n    optimize: as for compile_dir() (default -1)\n    invalidation_mode: as for compiler_dir()\n    \"\"\"\n    success = True\n    for dir in sys.path:\n        if (not dir or dir == os.curdir) and skip_curdir:\n            if quiet < 2:\n                print('Skipping current directory')\n        else:\n            success = success and compile_dir(\n                dir,\n                maxlevels,\n                None,\n                force,\n                quiet=quiet,\n                legacy=legacy,\n                optimize=optimize,\n                invalidation_mode=invalidation_mode,\n            )\n    return success\n\n\ndef main():\n    \"\"\"Script main program.\"\"\"\n    import argparse\n\n    parser = argparse.ArgumentParser(\n        description='Utilities to support installing Python libraries.')\n    parser.add_argument('-l', action='store_const', const=0,\n                        default=10, dest='maxlevels',\n                        help=\"don't recurse into subdirectories\")\n    parser.add_argument('-r', type=int, dest='recursion',\n                        help=('control the maximum recursion level. '\n                              'if `-l` and `-r` options are specified, '\n                              'then `-r` takes precedence.'))\n    parser.add_argument('-f', action='store_true', dest='force',\n                        help='force rebuild even if timestamps are up to date')\n    parser.add_argument('-q', action='count', dest='quiet', default=0,\n                        help='output only error messages; -qq will suppress '\n                             'the error messages as well.')\n    parser.add_argument('-b', action='store_true', dest='legacy',\n                        help='use legacy (pre-PEP3147) compiled file locations')\n    parser.add_argument('-d', metavar='DESTDIR',  dest='ddir', default=None,\n                        help=('directory to prepend to file paths for use in '\n                              'compile-time tracebacks and in runtime '\n                              'tracebacks in cases where the source file is '\n                              'unavailable'))\n    parser.add_argument('-x', metavar='REGEXP', dest='rx', default=None,\n                        help=('skip files matching the regular expression; '\n                              'the regexp is searched for in the full path '\n                              'of each file considered for compilation'))\n    parser.add_argument('-i', metavar='FILE', dest='flist',\n                        help=('add all the files and directories listed in '\n                              'FILE to the list considered for compilation; '\n                              'if \"-\", names are read from stdin'))\n    parser.add_argument('compile_dest', metavar='FILE|DIR', nargs='*',\n                        help=('zero or more file and directory names '\n                              'to compile; if no arguments given, defaults '\n                              'to the equivalent of -l sys.path'))\n    parser.add_argument('-j', '--workers', default=1,\n                        type=int, help='Run compileall concurrently')\n    invalidation_modes = [mode.name.lower().replace('_', '-')\n                          for mode in py_compile.PycInvalidationMode]\n    parser.add_argument('--invalidation-mode',\n                        choices=sorted(invalidation_modes),\n                        help=('set .pyc invalidation mode; defaults to '\n                              '\"checked-hash\" if the SOURCE_DATE_EPOCH '\n                              'environment variable is set, and '\n                              '\"timestamp\" otherwise.'))\n\n    args = parser.parse_args()\n    compile_dests = args.compile_dest\n\n    if args.rx:\n        import re\n        args.rx = re.compile(args.rx)\n\n\n    if args.recursion is not None:\n        maxlevels = args.recursion\n    else:\n        maxlevels = args.maxlevels\n\n    # if flist is provided then load it\n    if args.flist:\n        try:\n            with (sys.stdin if args.flist=='-' else open(args.flist)) as f:\n                for line in f:\n                    compile_dests.append(line.strip())\n        except OSError:\n            if args.quiet < 2:\n                print(\"Error reading file list {}\".format(args.flist))\n            return False\n\n    if args.invalidation_mode:\n        ivl_mode = args.invalidation_mode.replace('-', '_').upper()\n        invalidation_mode = py_compile.PycInvalidationMode[ivl_mode]\n    else:\n        invalidation_mode = None\n\n    success = True\n    try:\n        if compile_dests:\n            for dest in compile_dests:\n                if os.path.isfile(dest):\n                    if not compile_file(dest, args.ddir, args.force, args.rx,\n                                        args.quiet, args.legacy,\n                                        invalidation_mode=invalidation_mode):\n                        success = False\n                else:\n                    if not compile_dir(dest, maxlevels, args.ddir,\n                                       args.force, args.rx, args.quiet,\n                                       args.legacy, workers=args.workers,\n                                       invalidation_mode=invalidation_mode):\n                        success = False\n            return success\n        else:\n            return compile_path(legacy=args.legacy, force=args.force,\n                                quiet=args.quiet,\n                                invalidation_mode=invalidation_mode)\n    except KeyboardInterrupt:\n        if args.quiet < 2:\n            print(\"\\n[interrupted]\")\n        return False\n    return True\n\n\nif __name__ == '__main__':\n    exit_status = int(not main())\n    sys.exit(exit_status)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/configparser.py",
    "content": "\"\"\"Configuration file parser.\n\nA configuration file consists of sections, lead by a \"[section]\" header,\nand followed by \"name: value\" entries, with continuations and such in\nthe style of RFC 822.\n\nIntrinsic defaults can be specified by passing them into the\nConfigParser constructor as a dictionary.\n\nclass:\n\nConfigParser -- responsible for parsing a list of\n                    configuration files, and managing the parsed database.\n\n    methods:\n\n    __init__(defaults=None, dict_type=_default_dict, allow_no_value=False,\n             delimiters=('=', ':'), comment_prefixes=('#', ';'),\n             inline_comment_prefixes=None, strict=True,\n             empty_lines_in_values=True, default_section='DEFAULT',\n             interpolation=<unset>, converters=<unset>):\n        Create the parser. When `defaults' is given, it is initialized into the\n        dictionary or intrinsic defaults. The keys must be strings, the values\n        must be appropriate for %()s string interpolation.\n\n        When `dict_type' is given, it will be used to create the dictionary\n        objects for the list of sections, for the options within a section, and\n        for the default values.\n\n        When `delimiters' is given, it will be used as the set of substrings\n        that divide keys from values.\n\n        When `comment_prefixes' is given, it will be used as the set of\n        substrings that prefix comments in empty lines. Comments can be\n        indented.\n\n        When `inline_comment_prefixes' is given, it will be used as the set of\n        substrings that prefix comments in non-empty lines.\n\n        When `strict` is True, the parser won't allow for any section or option\n        duplicates while reading from a single source (file, string or\n        dictionary). Default is True.\n\n        When `empty_lines_in_values' is False (default: True), each empty line\n        marks the end of an option. Otherwise, internal empty lines of\n        a multiline option are kept as part of the value.\n\n        When `allow_no_value' is True (default: False), options without\n        values are accepted; the value presented for these is None.\n\n        When `default_section' is given, the name of the special section is\n        named accordingly. By default it is called ``\"DEFAULT\"`` but this can\n        be customized to point to any other valid section name. Its current\n        value can be retrieved using the ``parser_instance.default_section``\n        attribute and may be modified at runtime.\n\n        When `interpolation` is given, it should be an Interpolation subclass\n        instance. It will be used as the handler for option value\n        pre-processing when using getters. RawConfigParser objects don't do\n        any sort of interpolation, whereas ConfigParser uses an instance of\n        BasicInterpolation. The library also provides a ``zc.buildbot``\n        inspired ExtendedInterpolation implementation.\n\n        When `converters` is given, it should be a dictionary where each key\n        represents the name of a type converter and each value is a callable\n        implementing the conversion from string to the desired datatype. Every\n        converter gets its corresponding get*() method on the parser object and\n        section proxies.\n\n    sections()\n        Return all the configuration section names, sans DEFAULT.\n\n    has_section(section)\n        Return whether the given section exists.\n\n    has_option(section, option)\n        Return whether the given option exists in the given section.\n\n    options(section)\n        Return list of configuration options for the named section.\n\n    read(filenames, encoding=None)\n        Read and parse the iterable of named configuration files, given by\n        name.  A single filename is also allowed.  Non-existing files\n        are ignored.  Return list of successfully read files.\n\n    read_file(f, filename=None)\n        Read and parse one configuration file, given as a file object.\n        The filename defaults to f.name; it is only used in error\n        messages (if f has no `name' attribute, the string `<???>' is used).\n\n    read_string(string)\n        Read configuration from a given string.\n\n    read_dict(dictionary)\n        Read configuration from a dictionary. Keys are section names,\n        values are dictionaries with keys and values that should be present\n        in the section. If the used dictionary type preserves order, sections\n        and their keys will be added in order. Values are automatically\n        converted to strings.\n\n    get(section, option, raw=False, vars=None, fallback=_UNSET)\n        Return a string value for the named option.  All % interpolations are\n        expanded in the return values, based on the defaults passed into the\n        constructor and the DEFAULT section.  Additional substitutions may be\n        provided using the `vars' argument, which must be a dictionary whose\n        contents override any pre-existing defaults. If `option' is a key in\n        `vars', the value from `vars' is used.\n\n    getint(section, options, raw=False, vars=None, fallback=_UNSET)\n        Like get(), but convert value to an integer.\n\n    getfloat(section, options, raw=False, vars=None, fallback=_UNSET)\n        Like get(), but convert value to a float.\n\n    getboolean(section, options, raw=False, vars=None, fallback=_UNSET)\n        Like get(), but convert value to a boolean (currently case\n        insensitively defined as 0, false, no, off for False, and 1, true,\n        yes, on for True).  Returns False or True.\n\n    items(section=_UNSET, raw=False, vars=None)\n        If section is given, return a list of tuples with (name, value) for\n        each option in the section. Otherwise, return a list of tuples with\n        (section_name, section_proxy) for each section, including DEFAULTSECT.\n\n    remove_section(section)\n        Remove the given file section and all its options.\n\n    remove_option(section, option)\n        Remove the given option from the given section.\n\n    set(section, option, value)\n        Set the given option.\n\n    write(fp, space_around_delimiters=True)\n        Write the configuration state in .ini format. If\n        `space_around_delimiters' is True (the default), delimiters\n        between keys and values are surrounded by spaces.\n\"\"\"\n\nfrom collections.abc import MutableMapping\nfrom collections import ChainMap as _ChainMap\nimport functools\nimport io\nimport itertools\nimport os\nimport re\nimport sys\nimport warnings\n\n__all__ = [\"NoSectionError\", \"DuplicateOptionError\", \"DuplicateSectionError\",\n           \"NoOptionError\", \"InterpolationError\", \"InterpolationDepthError\",\n           \"InterpolationMissingOptionError\", \"InterpolationSyntaxError\",\n           \"ParsingError\", \"MissingSectionHeaderError\",\n           \"ConfigParser\", \"SafeConfigParser\", \"RawConfigParser\",\n           \"Interpolation\", \"BasicInterpolation\",  \"ExtendedInterpolation\",\n           \"LegacyInterpolation\", \"SectionProxy\", \"ConverterMapping\",\n           \"DEFAULTSECT\", \"MAX_INTERPOLATION_DEPTH\"]\n\n_default_dict = dict\nDEFAULTSECT = \"DEFAULT\"\n\nMAX_INTERPOLATION_DEPTH = 10\n\n\n\n# exception classes\nclass Error(Exception):\n    \"\"\"Base class for ConfigParser exceptions.\"\"\"\n\n    def __init__(self, msg=''):\n        self.message = msg\n        Exception.__init__(self, msg)\n\n    def __repr__(self):\n        return self.message\n\n    __str__ = __repr__\n\n\nclass NoSectionError(Error):\n    \"\"\"Raised when no section matches a requested option.\"\"\"\n\n    def __init__(self, section):\n        Error.__init__(self, 'No section: %r' % (section,))\n        self.section = section\n        self.args = (section, )\n\n\nclass DuplicateSectionError(Error):\n    \"\"\"Raised when a section is repeated in an input source.\n\n    Possible repetitions that raise this exception are: multiple creation\n    using the API or in strict parsers when a section is found more than once\n    in a single input file, string or dictionary.\n    \"\"\"\n\n    def __init__(self, section, source=None, lineno=None):\n        msg = [repr(section), \" already exists\"]\n        if source is not None:\n            message = [\"While reading from \", repr(source)]\n            if lineno is not None:\n                message.append(\" [line {0:2d}]\".format(lineno))\n            message.append(\": section \")\n            message.extend(msg)\n            msg = message\n        else:\n            msg.insert(0, \"Section \")\n        Error.__init__(self, \"\".join(msg))\n        self.section = section\n        self.source = source\n        self.lineno = lineno\n        self.args = (section, source, lineno)\n\n\nclass DuplicateOptionError(Error):\n    \"\"\"Raised by strict parsers when an option is repeated in an input source.\n\n    Current implementation raises this exception only when an option is found\n    more than once in a single file, string or dictionary.\n    \"\"\"\n\n    def __init__(self, section, option, source=None, lineno=None):\n        msg = [repr(option), \" in section \", repr(section),\n               \" already exists\"]\n        if source is not None:\n            message = [\"While reading from \", repr(source)]\n            if lineno is not None:\n                message.append(\" [line {0:2d}]\".format(lineno))\n            message.append(\": option \")\n            message.extend(msg)\n            msg = message\n        else:\n            msg.insert(0, \"Option \")\n        Error.__init__(self, \"\".join(msg))\n        self.section = section\n        self.option = option\n        self.source = source\n        self.lineno = lineno\n        self.args = (section, option, source, lineno)\n\n\nclass NoOptionError(Error):\n    \"\"\"A requested option was not found.\"\"\"\n\n    def __init__(self, option, section):\n        Error.__init__(self, \"No option %r in section: %r\" %\n                       (option, section))\n        self.option = option\n        self.section = section\n        self.args = (option, section)\n\n\nclass InterpolationError(Error):\n    \"\"\"Base class for interpolation-related exceptions.\"\"\"\n\n    def __init__(self, option, section, msg):\n        Error.__init__(self, msg)\n        self.option = option\n        self.section = section\n        self.args = (option, section, msg)\n\n\nclass InterpolationMissingOptionError(InterpolationError):\n    \"\"\"A string substitution required a setting which was not available.\"\"\"\n\n    def __init__(self, option, section, rawval, reference):\n        msg = (\"Bad value substitution: option {!r} in section {!r} contains \"\n               \"an interpolation key {!r} which is not a valid option name. \"\n               \"Raw value: {!r}\".format(option, section, reference, rawval))\n        InterpolationError.__init__(self, option, section, msg)\n        self.reference = reference\n        self.args = (option, section, rawval, reference)\n\n\nclass InterpolationSyntaxError(InterpolationError):\n    \"\"\"Raised when the source text contains invalid syntax.\n\n    Current implementation raises this exception when the source text into\n    which substitutions are made does not conform to the required syntax.\n    \"\"\"\n\n\nclass InterpolationDepthError(InterpolationError):\n    \"\"\"Raised when substitutions are nested too deeply.\"\"\"\n\n    def __init__(self, option, section, rawval):\n        msg = (\"Recursion limit exceeded in value substitution: option {!r} \"\n               \"in section {!r} contains an interpolation key which \"\n               \"cannot be substituted in {} steps. Raw value: {!r}\"\n               \"\".format(option, section, MAX_INTERPOLATION_DEPTH,\n                         rawval))\n        InterpolationError.__init__(self, option, section, msg)\n        self.args = (option, section, rawval)\n\n\nclass ParsingError(Error):\n    \"\"\"Raised when a configuration file does not follow legal syntax.\"\"\"\n\n    def __init__(self, source=None, filename=None):\n        # Exactly one of `source'/`filename' arguments has to be given.\n        # `filename' kept for compatibility.\n        if filename and source:\n            raise ValueError(\"Cannot specify both `filename' and `source'. \"\n                             \"Use `source'.\")\n        elif not filename and not source:\n            raise ValueError(\"Required argument `source' not given.\")\n        elif filename:\n            source = filename\n        Error.__init__(self, 'Source contains parsing errors: %r' % source)\n        self.source = source\n        self.errors = []\n        self.args = (source, )\n\n    @property\n    def filename(self):\n        \"\"\"Deprecated, use `source'.\"\"\"\n        warnings.warn(\n            \"The 'filename' attribute will be removed in future versions.  \"\n            \"Use 'source' instead.\",\n            DeprecationWarning, stacklevel=2\n        )\n        return self.source\n\n    @filename.setter\n    def filename(self, value):\n        \"\"\"Deprecated, user `source'.\"\"\"\n        warnings.warn(\n            \"The 'filename' attribute will be removed in future versions.  \"\n            \"Use 'source' instead.\",\n            DeprecationWarning, stacklevel=2\n        )\n        self.source = value\n\n    def append(self, lineno, line):\n        self.errors.append((lineno, line))\n        self.message += '\\n\\t[line %2d]: %s' % (lineno, line)\n\n\nclass MissingSectionHeaderError(ParsingError):\n    \"\"\"Raised when a key-value pair is found before any section header.\"\"\"\n\n    def __init__(self, filename, lineno, line):\n        Error.__init__(\n            self,\n            'File contains no section headers.\\nfile: %r, line: %d\\n%r' %\n            (filename, lineno, line))\n        self.source = filename\n        self.lineno = lineno\n        self.line = line\n        self.args = (filename, lineno, line)\n\n\n# Used in parser getters to indicate the default behaviour when a specific\n# option is not found it to raise an exception. Created to enable `None' as\n# a valid fallback value.\n_UNSET = object()\n\n\nclass Interpolation:\n    \"\"\"Dummy interpolation that passes the value through with no changes.\"\"\"\n\n    def before_get(self, parser, section, option, value, defaults):\n        return value\n\n    def before_set(self, parser, section, option, value):\n        return value\n\n    def before_read(self, parser, section, option, value):\n        return value\n\n    def before_write(self, parser, section, option, value):\n        return value\n\n\nclass BasicInterpolation(Interpolation):\n    \"\"\"Interpolation as implemented in the classic ConfigParser.\n\n    The option values can contain format strings which refer to other values in\n    the same section, or values in the special default section.\n\n    For example:\n\n        something: %(dir)s/whatever\n\n    would resolve the \"%(dir)s\" to the value of dir.  All reference\n    expansions are done late, on demand. If a user needs to use a bare % in\n    a configuration file, she can escape it by writing %%. Other % usage\n    is considered a user error and raises `InterpolationSyntaxError'.\"\"\"\n\n    _KEYCRE = re.compile(r\"%\\(([^)]+)\\)s\")\n\n    def before_get(self, parser, section, option, value, defaults):\n        L = []\n        self._interpolate_some(parser, option, L, value, section, defaults, 1)\n        return ''.join(L)\n\n    def before_set(self, parser, section, option, value):\n        tmp_value = value.replace('%%', '') # escaped percent signs\n        tmp_value = self._KEYCRE.sub('', tmp_value) # valid syntax\n        if '%' in tmp_value:\n            raise ValueError(\"invalid interpolation syntax in %r at \"\n                             \"position %d\" % (value, tmp_value.find('%')))\n        return value\n\n    def _interpolate_some(self, parser, option, accum, rest, section, map,\n                          depth):\n        rawval = parser.get(section, option, raw=True, fallback=rest)\n        if depth > MAX_INTERPOLATION_DEPTH:\n            raise InterpolationDepthError(option, section, rawval)\n        while rest:\n            p = rest.find(\"%\")\n            if p < 0:\n                accum.append(rest)\n                return\n            if p > 0:\n                accum.append(rest[:p])\n                rest = rest[p:]\n            # p is no longer used\n            c = rest[1:2]\n            if c == \"%\":\n                accum.append(\"%\")\n                rest = rest[2:]\n            elif c == \"(\":\n                m = self._KEYCRE.match(rest)\n                if m is None:\n                    raise InterpolationSyntaxError(option, section,\n                        \"bad interpolation variable reference %r\" % rest)\n                var = parser.optionxform(m.group(1))\n                rest = rest[m.end():]\n                try:\n                    v = map[var]\n                except KeyError:\n                    raise InterpolationMissingOptionError(\n                        option, section, rawval, var) from None\n                if \"%\" in v:\n                    self._interpolate_some(parser, option, accum, v,\n                                           section, map, depth + 1)\n                else:\n                    accum.append(v)\n            else:\n                raise InterpolationSyntaxError(\n                    option, section,\n                    \"'%%' must be followed by '%%' or '(', \"\n                    \"found: %r\" % (rest,))\n\n\nclass ExtendedInterpolation(Interpolation):\n    \"\"\"Advanced variant of interpolation, supports the syntax used by\n    `zc.buildout'. Enables interpolation between sections.\"\"\"\n\n    _KEYCRE = re.compile(r\"\\$\\{([^}]+)\\}\")\n\n    def before_get(self, parser, section, option, value, defaults):\n        L = []\n        self._interpolate_some(parser, option, L, value, section, defaults, 1)\n        return ''.join(L)\n\n    def before_set(self, parser, section, option, value):\n        tmp_value = value.replace('$$', '') # escaped dollar signs\n        tmp_value = self._KEYCRE.sub('', tmp_value) # valid syntax\n        if '$' in tmp_value:\n            raise ValueError(\"invalid interpolation syntax in %r at \"\n                             \"position %d\" % (value, tmp_value.find('$')))\n        return value\n\n    def _interpolate_some(self, parser, option, accum, rest, section, map,\n                          depth):\n        rawval = parser.get(section, option, raw=True, fallback=rest)\n        if depth > MAX_INTERPOLATION_DEPTH:\n            raise InterpolationDepthError(option, section, rawval)\n        while rest:\n            p = rest.find(\"$\")\n            if p < 0:\n                accum.append(rest)\n                return\n            if p > 0:\n                accum.append(rest[:p])\n                rest = rest[p:]\n            # p is no longer used\n            c = rest[1:2]\n            if c == \"$\":\n                accum.append(\"$\")\n                rest = rest[2:]\n            elif c == \"{\":\n                m = self._KEYCRE.match(rest)\n                if m is None:\n                    raise InterpolationSyntaxError(option, section,\n                        \"bad interpolation variable reference %r\" % rest)\n                path = m.group(1).split(':')\n                rest = rest[m.end():]\n                sect = section\n                opt = option\n                try:\n                    if len(path) == 1:\n                        opt = parser.optionxform(path[0])\n                        v = map[opt]\n                    elif len(path) == 2:\n                        sect = path[0]\n                        opt = parser.optionxform(path[1])\n                        v = parser.get(sect, opt, raw=True)\n                    else:\n                        raise InterpolationSyntaxError(\n                            option, section,\n                            \"More than one ':' found: %r\" % (rest,))\n                except (KeyError, NoSectionError, NoOptionError):\n                    raise InterpolationMissingOptionError(\n                        option, section, rawval, \":\".join(path)) from None\n                if \"$\" in v:\n                    self._interpolate_some(parser, opt, accum, v, sect,\n                                           dict(parser.items(sect, raw=True)),\n                                           depth + 1)\n                else:\n                    accum.append(v)\n            else:\n                raise InterpolationSyntaxError(\n                    option, section,\n                    \"'$' must be followed by '$' or '{', \"\n                    \"found: %r\" % (rest,))\n\n\nclass LegacyInterpolation(Interpolation):\n    \"\"\"Deprecated interpolation used in old versions of ConfigParser.\n    Use BasicInterpolation or ExtendedInterpolation instead.\"\"\"\n\n    _KEYCRE = re.compile(r\"%\\(([^)]*)\\)s|.\")\n\n    def before_get(self, parser, section, option, value, vars):\n        rawval = value\n        depth = MAX_INTERPOLATION_DEPTH\n        while depth:                    # Loop through this until it's done\n            depth -= 1\n            if value and \"%(\" in value:\n                replace = functools.partial(self._interpolation_replace,\n                                            parser=parser)\n                value = self._KEYCRE.sub(replace, value)\n                try:\n                    value = value % vars\n                except KeyError as e:\n                    raise InterpolationMissingOptionError(\n                        option, section, rawval, e.args[0]) from None\n            else:\n                break\n        if value and \"%(\" in value:\n            raise InterpolationDepthError(option, section, rawval)\n        return value\n\n    def before_set(self, parser, section, option, value):\n        return value\n\n    @staticmethod\n    def _interpolation_replace(match, parser):\n        s = match.group(1)\n        if s is None:\n            return match.group()\n        else:\n            return \"%%(%s)s\" % parser.optionxform(s)\n\n\nclass RawConfigParser(MutableMapping):\n    \"\"\"ConfigParser that does not do interpolation.\"\"\"\n\n    # Regular expressions for parsing section headers and options\n    _SECT_TMPL = r\"\"\"\n        \\[                                 # [\n        (?P<header>[^]]+)                  # very permissive!\n        \\]                                 # ]\n        \"\"\"\n    _OPT_TMPL = r\"\"\"\n        (?P<option>.*?)                    # very permissive!\n        \\s*(?P<vi>{delim})\\s*              # any number of space/tab,\n                                           # followed by any of the\n                                           # allowed delimiters,\n                                           # followed by any space/tab\n        (?P<value>.*)$                     # everything up to eol\n        \"\"\"\n    _OPT_NV_TMPL = r\"\"\"\n        (?P<option>.*?)                    # very permissive!\n        \\s*(?:                             # any number of space/tab,\n        (?P<vi>{delim})\\s*                 # optionally followed by\n                                           # any of the allowed\n                                           # delimiters, followed by any\n                                           # space/tab\n        (?P<value>.*))?$                   # everything up to eol\n        \"\"\"\n    # Interpolation algorithm to be used if the user does not specify another\n    _DEFAULT_INTERPOLATION = Interpolation()\n    # Compiled regular expression for matching sections\n    SECTCRE = re.compile(_SECT_TMPL, re.VERBOSE)\n    # Compiled regular expression for matching options with typical separators\n    OPTCRE = re.compile(_OPT_TMPL.format(delim=\"=|:\"), re.VERBOSE)\n    # Compiled regular expression for matching options with optional values\n    # delimited using typical separators\n    OPTCRE_NV = re.compile(_OPT_NV_TMPL.format(delim=\"=|:\"), re.VERBOSE)\n    # Compiled regular expression for matching leading whitespace in a line\n    NONSPACECRE = re.compile(r\"\\S\")\n    # Possible boolean values in the configuration.\n    BOOLEAN_STATES = {'1': True, 'yes': True, 'true': True, 'on': True,\n                      '0': False, 'no': False, 'false': False, 'off': False}\n\n    def __init__(self, defaults=None, dict_type=_default_dict,\n                 allow_no_value=False, *, delimiters=('=', ':'),\n                 comment_prefixes=('#', ';'), inline_comment_prefixes=None,\n                 strict=True, empty_lines_in_values=True,\n                 default_section=DEFAULTSECT,\n                 interpolation=_UNSET, converters=_UNSET):\n\n        self._dict = dict_type\n        self._sections = self._dict()\n        self._defaults = self._dict()\n        self._converters = ConverterMapping(self)\n        self._proxies = self._dict()\n        self._proxies[default_section] = SectionProxy(self, default_section)\n        self._delimiters = tuple(delimiters)\n        if delimiters == ('=', ':'):\n            self._optcre = self.OPTCRE_NV if allow_no_value else self.OPTCRE\n        else:\n            d = \"|\".join(re.escape(d) for d in delimiters)\n            if allow_no_value:\n                self._optcre = re.compile(self._OPT_NV_TMPL.format(delim=d),\n                                          re.VERBOSE)\n            else:\n                self._optcre = re.compile(self._OPT_TMPL.format(delim=d),\n                                          re.VERBOSE)\n        self._comment_prefixes = tuple(comment_prefixes or ())\n        self._inline_comment_prefixes = tuple(inline_comment_prefixes or ())\n        self._strict = strict\n        self._allow_no_value = allow_no_value\n        self._empty_lines_in_values = empty_lines_in_values\n        self.default_section=default_section\n        self._interpolation = interpolation\n        if self._interpolation is _UNSET:\n            self._interpolation = self._DEFAULT_INTERPOLATION\n        if self._interpolation is None:\n            self._interpolation = Interpolation()\n        if converters is not _UNSET:\n            self._converters.update(converters)\n        if defaults:\n            self._read_defaults(defaults)\n\n    def defaults(self):\n        return self._defaults\n\n    def sections(self):\n        \"\"\"Return a list of section names, excluding [DEFAULT]\"\"\"\n        # self._sections will never have [DEFAULT] in it\n        return list(self._sections.keys())\n\n    def add_section(self, section):\n        \"\"\"Create a new section in the configuration.\n\n        Raise DuplicateSectionError if a section by the specified name\n        already exists. Raise ValueError if name is DEFAULT.\n        \"\"\"\n        if section == self.default_section:\n            raise ValueError('Invalid section name: %r' % section)\n\n        if section in self._sections:\n            raise DuplicateSectionError(section)\n        self._sections[section] = self._dict()\n        self._proxies[section] = SectionProxy(self, section)\n\n    def has_section(self, section):\n        \"\"\"Indicate whether the named section is present in the configuration.\n\n        The DEFAULT section is not acknowledged.\n        \"\"\"\n        return section in self._sections\n\n    def options(self, section):\n        \"\"\"Return a list of option names for the given section name.\"\"\"\n        try:\n            opts = self._sections[section].copy()\n        except KeyError:\n            raise NoSectionError(section) from None\n        opts.update(self._defaults)\n        return list(opts.keys())\n\n    def read(self, filenames, encoding=None):\n        \"\"\"Read and parse a filename or an iterable of filenames.\n\n        Files that cannot be opened are silently ignored; this is\n        designed so that you can specify an iterable of potential\n        configuration file locations (e.g. current directory, user's\n        home directory, systemwide directory), and all existing\n        configuration files in the iterable will be read.  A single\n        filename may also be given.\n\n        Return list of successfully read files.\n        \"\"\"\n        if isinstance(filenames, (str, bytes, os.PathLike)):\n            filenames = [filenames]\n        read_ok = []\n        for filename in filenames:\n            try:\n                with open(filename, encoding=encoding) as fp:\n                    self._read(fp, filename)\n            except OSError:\n                continue\n            if isinstance(filename, os.PathLike):\n                filename = os.fspath(filename)\n            read_ok.append(filename)\n        return read_ok\n\n    def read_file(self, f, source=None):\n        \"\"\"Like read() but the argument must be a file-like object.\n\n        The `f' argument must be iterable, returning one line at a time.\n        Optional second argument is the `source' specifying the name of the\n        file being read. If not given, it is taken from f.name. If `f' has no\n        `name' attribute, `<???>' is used.\n        \"\"\"\n        if source is None:\n            try:\n                source = f.name\n            except AttributeError:\n                source = '<???>'\n        self._read(f, source)\n\n    def read_string(self, string, source='<string>'):\n        \"\"\"Read configuration from a given string.\"\"\"\n        sfile = io.StringIO(string)\n        self.read_file(sfile, source)\n\n    def read_dict(self, dictionary, source='<dict>'):\n        \"\"\"Read configuration from a dictionary.\n\n        Keys are section names, values are dictionaries with keys and values\n        that should be present in the section. If the used dictionary type\n        preserves order, sections and their keys will be added in order.\n\n        All types held in the dictionary are converted to strings during\n        reading, including section names, option names and keys.\n\n        Optional second argument is the `source' specifying the name of the\n        dictionary being read.\n        \"\"\"\n        elements_added = set()\n        for section, keys in dictionary.items():\n            section = str(section)\n            try:\n                self.add_section(section)\n            except (DuplicateSectionError, ValueError):\n                if self._strict and section in elements_added:\n                    raise\n            elements_added.add(section)\n            for key, value in keys.items():\n                key = self.optionxform(str(key))\n                if value is not None:\n                    value = str(value)\n                if self._strict and (section, key) in elements_added:\n                    raise DuplicateOptionError(section, key, source)\n                elements_added.add((section, key))\n                self.set(section, key, value)\n\n    def readfp(self, fp, filename=None):\n        \"\"\"Deprecated, use read_file instead.\"\"\"\n        warnings.warn(\n            \"This method will be removed in future versions.  \"\n            \"Use 'parser.read_file()' instead.\",\n            DeprecationWarning, stacklevel=2\n        )\n        self.read_file(fp, source=filename)\n\n    def get(self, section, option, *, raw=False, vars=None, fallback=_UNSET):\n        \"\"\"Get an option value for a given section.\n\n        If `vars' is provided, it must be a dictionary. The option is looked up\n        in `vars' (if provided), `section', and in `DEFAULTSECT' in that order.\n        If the key is not found and `fallback' is provided, it is used as\n        a fallback value. `None' can be provided as a `fallback' value.\n\n        If interpolation is enabled and the optional argument `raw' is False,\n        all interpolations are expanded in the return values.\n\n        Arguments `raw', `vars', and `fallback' are keyword only.\n\n        The section DEFAULT is special.\n        \"\"\"\n        try:\n            d = self._unify_values(section, vars)\n        except NoSectionError:\n            if fallback is _UNSET:\n                raise\n            else:\n                return fallback\n        option = self.optionxform(option)\n        try:\n            value = d[option]\n        except KeyError:\n            if fallback is _UNSET:\n                raise NoOptionError(option, section)\n            else:\n                return fallback\n\n        if raw or value is None:\n            return value\n        else:\n            return self._interpolation.before_get(self, section, option, value,\n                                                  d)\n\n    def _get(self, section, conv, option, **kwargs):\n        return conv(self.get(section, option, **kwargs))\n\n    def _get_conv(self, section, option, conv, *, raw=False, vars=None,\n                  fallback=_UNSET, **kwargs):\n        try:\n            return self._get(section, conv, option, raw=raw, vars=vars,\n                             **kwargs)\n        except (NoSectionError, NoOptionError):\n            if fallback is _UNSET:\n                raise\n            return fallback\n\n    # getint, getfloat and getboolean provided directly for backwards compat\n    def getint(self, section, option, *, raw=False, vars=None,\n               fallback=_UNSET, **kwargs):\n        return self._get_conv(section, option, int, raw=raw, vars=vars,\n                              fallback=fallback, **kwargs)\n\n    def getfloat(self, section, option, *, raw=False, vars=None,\n                 fallback=_UNSET, **kwargs):\n        return self._get_conv(section, option, float, raw=raw, vars=vars,\n                              fallback=fallback, **kwargs)\n\n    def getboolean(self, section, option, *, raw=False, vars=None,\n                   fallback=_UNSET, **kwargs):\n        return self._get_conv(section, option, self._convert_to_boolean,\n                              raw=raw, vars=vars, fallback=fallback, **kwargs)\n\n    def items(self, section=_UNSET, raw=False, vars=None):\n        \"\"\"Return a list of (name, value) tuples for each option in a section.\n\n        All % interpolations are expanded in the return values, based on the\n        defaults passed into the constructor, unless the optional argument\n        `raw' is true.  Additional substitutions may be provided using the\n        `vars' argument, which must be a dictionary whose contents overrides\n        any pre-existing defaults.\n\n        The section DEFAULT is special.\n        \"\"\"\n        if section is _UNSET:\n            return super().items()\n        d = self._defaults.copy()\n        try:\n            d.update(self._sections[section])\n        except KeyError:\n            if section != self.default_section:\n                raise NoSectionError(section)\n        orig_keys = list(d.keys())\n        # Update with the entry specific variables\n        if vars:\n            for key, value in vars.items():\n                d[self.optionxform(key)] = value\n        value_getter = lambda option: self._interpolation.before_get(self,\n            section, option, d[option], d)\n        if raw:\n            value_getter = lambda option: d[option]\n        return [(option, value_getter(option)) for option in orig_keys]\n\n    def popitem(self):\n        \"\"\"Remove a section from the parser and return it as\n        a (section_name, section_proxy) tuple. If no section is present, raise\n        KeyError.\n\n        The section DEFAULT is never returned because it cannot be removed.\n        \"\"\"\n        for key in self.sections():\n            value = self[key]\n            del self[key]\n            return key, value\n        raise KeyError\n\n    def optionxform(self, optionstr):\n        return optionstr.lower()\n\n    def has_option(self, section, option):\n        \"\"\"Check for the existence of a given option in a given section.\n        If the specified `section' is None or an empty string, DEFAULT is\n        assumed. If the specified `section' does not exist, returns False.\"\"\"\n        if not section or section == self.default_section:\n            option = self.optionxform(option)\n            return option in self._defaults\n        elif section not in self._sections:\n            return False\n        else:\n            option = self.optionxform(option)\n            return (option in self._sections[section]\n                    or option in self._defaults)\n\n    def set(self, section, option, value=None):\n        \"\"\"Set an option.\"\"\"\n        if value:\n            value = self._interpolation.before_set(self, section, option,\n                                                   value)\n        if not section or section == self.default_section:\n            sectdict = self._defaults\n        else:\n            try:\n                sectdict = self._sections[section]\n            except KeyError:\n                raise NoSectionError(section) from None\n        sectdict[self.optionxform(option)] = value\n\n    def write(self, fp, space_around_delimiters=True):\n        \"\"\"Write an .ini-format representation of the configuration state.\n\n        If `space_around_delimiters' is True (the default), delimiters\n        between keys and values are surrounded by spaces.\n        \"\"\"\n        if space_around_delimiters:\n            d = \" {} \".format(self._delimiters[0])\n        else:\n            d = self._delimiters[0]\n        if self._defaults:\n            self._write_section(fp, self.default_section,\n                                    self._defaults.items(), d)\n        for section in self._sections:\n            self._write_section(fp, section,\n                                self._sections[section].items(), d)\n\n    def _write_section(self, fp, section_name, section_items, delimiter):\n        \"\"\"Write a single section to the specified `fp'.\"\"\"\n        fp.write(\"[{}]\\n\".format(section_name))\n        for key, value in section_items:\n            value = self._interpolation.before_write(self, section_name, key,\n                                                     value)\n            if value is not None or not self._allow_no_value:\n                value = delimiter + str(value).replace('\\n', '\\n\\t')\n            else:\n                value = \"\"\n            fp.write(\"{}{}\\n\".format(key, value))\n        fp.write(\"\\n\")\n\n    def remove_option(self, section, option):\n        \"\"\"Remove an option.\"\"\"\n        if not section or section == self.default_section:\n            sectdict = self._defaults\n        else:\n            try:\n                sectdict = self._sections[section]\n            except KeyError:\n                raise NoSectionError(section) from None\n        option = self.optionxform(option)\n        existed = option in sectdict\n        if existed:\n            del sectdict[option]\n        return existed\n\n    def remove_section(self, section):\n        \"\"\"Remove a file section.\"\"\"\n        existed = section in self._sections\n        if existed:\n            del self._sections[section]\n            del self._proxies[section]\n        return existed\n\n    def __getitem__(self, key):\n        if key != self.default_section and not self.has_section(key):\n            raise KeyError(key)\n        return self._proxies[key]\n\n    def __setitem__(self, key, value):\n        # To conform with the mapping protocol, overwrites existing values in\n        # the section.\n        if key in self and self[key] is value:\n            return\n        # XXX this is not atomic if read_dict fails at any point. Then again,\n        # no update method in configparser is atomic in this implementation.\n        if key == self.default_section:\n            self._defaults.clear()\n        elif key in self._sections:\n            self._sections[key].clear()\n        self.read_dict({key: value})\n\n    def __delitem__(self, key):\n        if key == self.default_section:\n            raise ValueError(\"Cannot remove the default section.\")\n        if not self.has_section(key):\n            raise KeyError(key)\n        self.remove_section(key)\n\n    def __contains__(self, key):\n        return key == self.default_section or self.has_section(key)\n\n    def __len__(self):\n        return len(self._sections) + 1 # the default section\n\n    def __iter__(self):\n        # XXX does it break when underlying container state changed?\n        return itertools.chain((self.default_section,), self._sections.keys())\n\n    def _read(self, fp, fpname):\n        \"\"\"Parse a sectioned configuration file.\n\n        Each section in a configuration file contains a header, indicated by\n        a name in square brackets (`[]'), plus key/value options, indicated by\n        `name' and `value' delimited with a specific substring (`=' or `:' by\n        default).\n\n        Values can span multiple lines, as long as they are indented deeper\n        than the first line of the value. Depending on the parser's mode, blank\n        lines may be treated as parts of multiline values or ignored.\n\n        Configuration files may include comments, prefixed by specific\n        characters (`#' and `;' by default). Comments may appear on their own\n        in an otherwise empty line or may be entered in lines holding values or\n        section names.\n        \"\"\"\n        elements_added = set()\n        cursect = None                        # None, or a dictionary\n        sectname = None\n        optname = None\n        lineno = 0\n        indent_level = 0\n        e = None                              # None, or an exception\n        for lineno, line in enumerate(fp, start=1):\n            comment_start = sys.maxsize\n            # strip inline comments\n            inline_prefixes = {p: -1 for p in self._inline_comment_prefixes}\n            while comment_start == sys.maxsize and inline_prefixes:\n                next_prefixes = {}\n                for prefix, index in inline_prefixes.items():\n                    index = line.find(prefix, index+1)\n                    if index == -1:\n                        continue\n                    next_prefixes[prefix] = index\n                    if index == 0 or (index > 0 and line[index-1].isspace()):\n                        comment_start = min(comment_start, index)\n                inline_prefixes = next_prefixes\n            # strip full line comments\n            for prefix in self._comment_prefixes:\n                if line.strip().startswith(prefix):\n                    comment_start = 0\n                    break\n            if comment_start == sys.maxsize:\n                comment_start = None\n            value = line[:comment_start].strip()\n            if not value:\n                if self._empty_lines_in_values:\n                    # add empty line to the value, but only if there was no\n                    # comment on the line\n                    if (comment_start is None and\n                        cursect is not None and\n                        optname and\n                        cursect[optname] is not None):\n                        cursect[optname].append('') # newlines added at join\n                else:\n                    # empty line marks end of value\n                    indent_level = sys.maxsize\n                continue\n            # continuation line?\n            first_nonspace = self.NONSPACECRE.search(line)\n            cur_indent_level = first_nonspace.start() if first_nonspace else 0\n            if (cursect is not None and optname and\n                cur_indent_level > indent_level):\n                cursect[optname].append(value)\n            # a section header or option header?\n            else:\n                indent_level = cur_indent_level\n                # is it a section header?\n                mo = self.SECTCRE.match(value)\n                if mo:\n                    sectname = mo.group('header')\n                    if sectname in self._sections:\n                        if self._strict and sectname in elements_added:\n                            raise DuplicateSectionError(sectname, fpname,\n                                                        lineno)\n                        cursect = self._sections[sectname]\n                        elements_added.add(sectname)\n                    elif sectname == self.default_section:\n                        cursect = self._defaults\n                    else:\n                        cursect = self._dict()\n                        self._sections[sectname] = cursect\n                        self._proxies[sectname] = SectionProxy(self, sectname)\n                        elements_added.add(sectname)\n                    # So sections can't start with a continuation line\n                    optname = None\n                # no section header in the file?\n                elif cursect is None:\n                    raise MissingSectionHeaderError(fpname, lineno, line)\n                # an option line?\n                else:\n                    mo = self._optcre.match(value)\n                    if mo:\n                        optname, vi, optval = mo.group('option', 'vi', 'value')\n                        if not optname:\n                            e = self._handle_error(e, fpname, lineno, line)\n                        optname = self.optionxform(optname.rstrip())\n                        if (self._strict and\n                            (sectname, optname) in elements_added):\n                            raise DuplicateOptionError(sectname, optname,\n                                                       fpname, lineno)\n                        elements_added.add((sectname, optname))\n                        # This check is fine because the OPTCRE cannot\n                        # match if it would set optval to None\n                        if optval is not None:\n                            optval = optval.strip()\n                            cursect[optname] = [optval]\n                        else:\n                            # valueless option handling\n                            cursect[optname] = None\n                    else:\n                        # a non-fatal parsing error occurred. set up the\n                        # exception but keep going. the exception will be\n                        # raised at the end of the file and will contain a\n                        # list of all bogus lines\n                        e = self._handle_error(e, fpname, lineno, line)\n        self._join_multiline_values()\n        # if any parsing errors occurred, raise an exception\n        if e:\n            raise e\n\n    def _join_multiline_values(self):\n        defaults = self.default_section, self._defaults\n        all_sections = itertools.chain((defaults,),\n                                       self._sections.items())\n        for section, options in all_sections:\n            for name, val in options.items():\n                if isinstance(val, list):\n                    val = '\\n'.join(val).rstrip()\n                options[name] = self._interpolation.before_read(self,\n                                                                section,\n                                                                name, val)\n\n    def _read_defaults(self, defaults):\n        \"\"\"Read the defaults passed in the initializer.\n        Note: values can be non-string.\"\"\"\n        for key, value in defaults.items():\n            self._defaults[self.optionxform(key)] = value\n\n    def _handle_error(self, exc, fpname, lineno, line):\n        if not exc:\n            exc = ParsingError(fpname)\n        exc.append(lineno, repr(line))\n        return exc\n\n    def _unify_values(self, section, vars):\n        \"\"\"Create a sequence of lookups with 'vars' taking priority over\n        the 'section' which takes priority over the DEFAULTSECT.\n\n        \"\"\"\n        sectiondict = {}\n        try:\n            sectiondict = self._sections[section]\n        except KeyError:\n            if section != self.default_section:\n                raise NoSectionError(section) from None\n        # Update with the entry specific variables\n        vardict = {}\n        if vars:\n            for key, value in vars.items():\n                if value is not None:\n                    value = str(value)\n                vardict[self.optionxform(key)] = value\n        return _ChainMap(vardict, sectiondict, self._defaults)\n\n    def _convert_to_boolean(self, value):\n        \"\"\"Return a boolean value translating from other types if necessary.\n        \"\"\"\n        if value.lower() not in self.BOOLEAN_STATES:\n            raise ValueError('Not a boolean: %s' % value)\n        return self.BOOLEAN_STATES[value.lower()]\n\n    def _validate_value_types(self, *, section=\"\", option=\"\", value=\"\"):\n        \"\"\"Raises a TypeError for non-string values.\n\n        The only legal non-string value if we allow valueless\n        options is None, so we need to check if the value is a\n        string if:\n        - we do not allow valueless options, or\n        - we allow valueless options but the value is not None\n\n        For compatibility reasons this method is not used in classic set()\n        for RawConfigParsers. It is invoked in every case for mapping protocol\n        access and in ConfigParser.set().\n        \"\"\"\n        if not isinstance(section, str):\n            raise TypeError(\"section names must be strings\")\n        if not isinstance(option, str):\n            raise TypeError(\"option keys must be strings\")\n        if not self._allow_no_value or value:\n            if not isinstance(value, str):\n                raise TypeError(\"option values must be strings\")\n\n    @property\n    def converters(self):\n        return self._converters\n\n\nclass ConfigParser(RawConfigParser):\n    \"\"\"ConfigParser implementing interpolation.\"\"\"\n\n    _DEFAULT_INTERPOLATION = BasicInterpolation()\n\n    def set(self, section, option, value=None):\n        \"\"\"Set an option.  Extends RawConfigParser.set by validating type and\n        interpolation syntax on the value.\"\"\"\n        self._validate_value_types(option=option, value=value)\n        super().set(section, option, value)\n\n    def add_section(self, section):\n        \"\"\"Create a new section in the configuration.  Extends\n        RawConfigParser.add_section by validating if the section name is\n        a string.\"\"\"\n        self._validate_value_types(section=section)\n        super().add_section(section)\n\n    def _read_defaults(self, defaults):\n        \"\"\"Reads the defaults passed in the initializer, implicitly converting\n        values to strings like the rest of the API.\n\n        Does not perform interpolation for backwards compatibility.\n        \"\"\"\n        try:\n            hold_interpolation = self._interpolation\n            self._interpolation = Interpolation()\n            self.read_dict({self.default_section: defaults})\n        finally:\n            self._interpolation = hold_interpolation\n\n\nclass SafeConfigParser(ConfigParser):\n    \"\"\"ConfigParser alias for backwards compatibility purposes.\"\"\"\n\n    def __init__(self, *args, **kwargs):\n        super().__init__(*args, **kwargs)\n        warnings.warn(\n            \"The SafeConfigParser class has been renamed to ConfigParser \"\n            \"in Python 3.2. This alias will be removed in future versions.\"\n            \" Use ConfigParser directly instead.\",\n            DeprecationWarning, stacklevel=2\n        )\n\n\nclass SectionProxy(MutableMapping):\n    \"\"\"A proxy for a single section from a parser.\"\"\"\n\n    def __init__(self, parser, name):\n        \"\"\"Creates a view on a section of the specified `name` in `parser`.\"\"\"\n        self._parser = parser\n        self._name = name\n        for conv in parser.converters:\n            key = 'get' + conv\n            getter = functools.partial(self.get, _impl=getattr(parser, key))\n            setattr(self, key, getter)\n\n    def __repr__(self):\n        return '<Section: {}>'.format(self._name)\n\n    def __getitem__(self, key):\n        if not self._parser.has_option(self._name, key):\n            raise KeyError(key)\n        return self._parser.get(self._name, key)\n\n    def __setitem__(self, key, value):\n        self._parser._validate_value_types(option=key, value=value)\n        return self._parser.set(self._name, key, value)\n\n    def __delitem__(self, key):\n        if not (self._parser.has_option(self._name, key) and\n                self._parser.remove_option(self._name, key)):\n            raise KeyError(key)\n\n    def __contains__(self, key):\n        return self._parser.has_option(self._name, key)\n\n    def __len__(self):\n        return len(self._options())\n\n    def __iter__(self):\n        return self._options().__iter__()\n\n    def _options(self):\n        if self._name != self._parser.default_section:\n            return self._parser.options(self._name)\n        else:\n            return self._parser.defaults()\n\n    @property\n    def parser(self):\n        # The parser object of the proxy is read-only.\n        return self._parser\n\n    @property\n    def name(self):\n        # The name of the section on a proxy is read-only.\n        return self._name\n\n    def get(self, option, fallback=None, *, raw=False, vars=None,\n            _impl=None, **kwargs):\n        \"\"\"Get an option value.\n\n        Unless `fallback` is provided, `None` will be returned if the option\n        is not found.\n\n        \"\"\"\n        # If `_impl` is provided, it should be a getter method on the parser\n        # object that provides the desired type conversion.\n        if not _impl:\n            _impl = self._parser.get\n        return _impl(self._name, option, raw=raw, vars=vars,\n                     fallback=fallback, **kwargs)\n\n\nclass ConverterMapping(MutableMapping):\n    \"\"\"Enables reuse of get*() methods between the parser and section proxies.\n\n    If a parser class implements a getter directly, the value for the given\n    key will be ``None``. The presence of the converter name here enables\n    section proxies to find and use the implementation on the parser class.\n    \"\"\"\n\n    GETTERCRE = re.compile(r\"^get(?P<name>.+)$\")\n\n    def __init__(self, parser):\n        self._parser = parser\n        self._data = {}\n        for getter in dir(self._parser):\n            m = self.GETTERCRE.match(getter)\n            if not m or not callable(getattr(self._parser, getter)):\n                continue\n            self._data[m.group('name')] = None   # See class docstring.\n\n    def __getitem__(self, key):\n        return self._data[key]\n\n    def __setitem__(self, key, value):\n        try:\n            k = 'get' + key\n        except TypeError:\n            raise ValueError('Incompatible key: {} (type: {})'\n                             ''.format(key, type(key)))\n        if k == 'get':\n            raise ValueError('Incompatible key: cannot use \"\" as a name')\n        self._data[key] = value\n        func = functools.partial(self._parser._get_conv, conv=value)\n        func.converter = value\n        setattr(self._parser, k, func)\n        for proxy in self._parser.values():\n            getter = functools.partial(proxy.get, _impl=func)\n            setattr(proxy, k, getter)\n\n    def __delitem__(self, key):\n        try:\n            k = 'get' + (key or None)\n        except TypeError:\n            raise KeyError(key)\n        del self._data[key]\n        for inst in itertools.chain((self._parser,), self._parser.values()):\n            try:\n                delattr(inst, k)\n            except AttributeError:\n                # don't raise since the entry was present in _data, silently\n                # clean up\n                continue\n\n    def __iter__(self):\n        return iter(self._data)\n\n    def __len__(self):\n        return len(self._data)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/contextlib.py",
    "content": "\"\"\"Utilities for with-statement contexts.  See PEP 343.\"\"\"\nimport abc\nimport sys\nimport _collections_abc\nfrom collections import deque\nfrom functools import wraps\nfrom types import MethodType\n\n__all__ = [\"asynccontextmanager\", \"contextmanager\", \"closing\", \"nullcontext\",\n           \"AbstractContextManager\", \"AbstractAsyncContextManager\",\n           \"AsyncExitStack\", \"ContextDecorator\", \"ExitStack\",\n           \"redirect_stdout\", \"redirect_stderr\", \"suppress\"]\n\n\nclass AbstractContextManager(abc.ABC):\n\n    \"\"\"An abstract base class for context managers.\"\"\"\n\n    def __enter__(self):\n        \"\"\"Return `self` upon entering the runtime context.\"\"\"\n        return self\n\n    @abc.abstractmethod\n    def __exit__(self, exc_type, exc_value, traceback):\n        \"\"\"Raise any exception triggered within the runtime context.\"\"\"\n        return None\n\n    @classmethod\n    def __subclasshook__(cls, C):\n        if cls is AbstractContextManager:\n            return _collections_abc._check_methods(C, \"__enter__\", \"__exit__\")\n        return NotImplemented\n\n\nclass AbstractAsyncContextManager(abc.ABC):\n\n    \"\"\"An abstract base class for asynchronous context managers.\"\"\"\n\n    async def __aenter__(self):\n        \"\"\"Return `self` upon entering the runtime context.\"\"\"\n        return self\n\n    @abc.abstractmethod\n    async def __aexit__(self, exc_type, exc_value, traceback):\n        \"\"\"Raise any exception triggered within the runtime context.\"\"\"\n        return None\n\n    @classmethod\n    def __subclasshook__(cls, C):\n        if cls is AbstractAsyncContextManager:\n            return _collections_abc._check_methods(C, \"__aenter__\",\n                                                   \"__aexit__\")\n        return NotImplemented\n\n\nclass ContextDecorator(object):\n    \"A base class or mixin that enables context managers to work as decorators.\"\n\n    def _recreate_cm(self):\n        \"\"\"Return a recreated instance of self.\n\n        Allows an otherwise one-shot context manager like\n        _GeneratorContextManager to support use as\n        a decorator via implicit recreation.\n\n        This is a private interface just for _GeneratorContextManager.\n        See issue #11647 for details.\n        \"\"\"\n        return self\n\n    def __call__(self, func):\n        @wraps(func)\n        def inner(*args, **kwds):\n            with self._recreate_cm():\n                return func(*args, **kwds)\n        return inner\n\n\nclass _GeneratorContextManagerBase:\n    \"\"\"Shared functionality for @contextmanager and @asynccontextmanager.\"\"\"\n\n    def __init__(self, func, args, kwds):\n        self.gen = func(*args, **kwds)\n        self.func, self.args, self.kwds = func, args, kwds\n        # Issue 19330: ensure context manager instances have good docstrings\n        doc = getattr(func, \"__doc__\", None)\n        if doc is None:\n            doc = type(self).__doc__\n        self.__doc__ = doc\n        # Unfortunately, this still doesn't provide good help output when\n        # inspecting the created context manager instances, since pydoc\n        # currently bypasses the instance docstring and shows the docstring\n        # for the class instead.\n        # See http://bugs.python.org/issue19404 for more details.\n\n\nclass _GeneratorContextManager(_GeneratorContextManagerBase,\n                               AbstractContextManager,\n                               ContextDecorator):\n    \"\"\"Helper for @contextmanager decorator.\"\"\"\n\n    def _recreate_cm(self):\n        # _GCM instances are one-shot context managers, so the\n        # CM must be recreated each time a decorated function is\n        # called\n        return self.__class__(self.func, self.args, self.kwds)\n\n    def __enter__(self):\n        # do not keep args and kwds alive unnecessarily\n        # they are only needed for recreation, which is not possible anymore\n        del self.args, self.kwds, self.func\n        try:\n            return next(self.gen)\n        except StopIteration:\n            raise RuntimeError(\"generator didn't yield\") from None\n\n    def __exit__(self, type, value, traceback):\n        if type is None:\n            try:\n                next(self.gen)\n            except StopIteration:\n                return False\n            else:\n                raise RuntimeError(\"generator didn't stop\")\n        else:\n            if value is None:\n                # Need to force instantiation so we can reliably\n                # tell if we get the same exception back\n                value = type()\n            try:\n                self.gen.throw(type, value, traceback)\n            except StopIteration as exc:\n                # Suppress StopIteration *unless* it's the same exception that\n                # was passed to throw().  This prevents a StopIteration\n                # raised inside the \"with\" statement from being suppressed.\n                return exc is not value\n            except RuntimeError as exc:\n                # Don't re-raise the passed in exception. (issue27122)\n                if exc is value:\n                    return False\n                # Likewise, avoid suppressing if a StopIteration exception\n                # was passed to throw() and later wrapped into a RuntimeError\n                # (see PEP 479).\n                if type is StopIteration and exc.__cause__ is value:\n                    return False\n                raise\n            except:\n                # only re-raise if it's *not* the exception that was\n                # passed to throw(), because __exit__() must not raise\n                # an exception unless __exit__() itself failed.  But throw()\n                # has to raise the exception to signal propagation, so this\n                # fixes the impedance mismatch between the throw() protocol\n                # and the __exit__() protocol.\n                #\n                # This cannot use 'except BaseException as exc' (as in the\n                # async implementation) to maintain compatibility with\n                # Python 2, where old-style class exceptions are not caught\n                # by 'except BaseException'.\n                if sys.exc_info()[1] is value:\n                    return False\n                raise\n            raise RuntimeError(\"generator didn't stop after throw()\")\n\n\nclass _AsyncGeneratorContextManager(_GeneratorContextManagerBase,\n                                    AbstractAsyncContextManager):\n    \"\"\"Helper for @asynccontextmanager.\"\"\"\n\n    async def __aenter__(self):\n        try:\n            return await self.gen.__anext__()\n        except StopAsyncIteration:\n            raise RuntimeError(\"generator didn't yield\") from None\n\n    async def __aexit__(self, typ, value, traceback):\n        if typ is None:\n            try:\n                await self.gen.__anext__()\n            except StopAsyncIteration:\n                return\n            else:\n                raise RuntimeError(\"generator didn't stop\")\n        else:\n            if value is None:\n                value = typ()\n            # See _GeneratorContextManager.__exit__ for comments on subtleties\n            # in this implementation\n            try:\n                await self.gen.athrow(typ, value, traceback)\n                raise RuntimeError(\"generator didn't stop after athrow()\")\n            except StopAsyncIteration as exc:\n                return exc is not value\n            except RuntimeError as exc:\n                if exc is value:\n                    return False\n                # Avoid suppressing if a StopIteration exception\n                # was passed to throw() and later wrapped into a RuntimeError\n                # (see PEP 479 for sync generators; async generators also\n                # have this behavior). But do this only if the exception wrapped\n                # by the RuntimeError is actully Stop(Async)Iteration (see\n                # issue29692).\n                if isinstance(value, (StopIteration, StopAsyncIteration)):\n                    if exc.__cause__ is value:\n                        return False\n                raise\n            except BaseException as exc:\n                if exc is not value:\n                    raise\n\n\ndef contextmanager(func):\n    \"\"\"@contextmanager decorator.\n\n    Typical usage:\n\n        @contextmanager\n        def some_generator(<arguments>):\n            <setup>\n            try:\n                yield <value>\n            finally:\n                <cleanup>\n\n    This makes this:\n\n        with some_generator(<arguments>) as <variable>:\n            <body>\n\n    equivalent to this:\n\n        <setup>\n        try:\n            <variable> = <value>\n            <body>\n        finally:\n            <cleanup>\n    \"\"\"\n    @wraps(func)\n    def helper(*args, **kwds):\n        return _GeneratorContextManager(func, args, kwds)\n    return helper\n\n\ndef asynccontextmanager(func):\n    \"\"\"@asynccontextmanager decorator.\n\n    Typical usage:\n\n        @asynccontextmanager\n        async def some_async_generator(<arguments>):\n            <setup>\n            try:\n                yield <value>\n            finally:\n                <cleanup>\n\n    This makes this:\n\n        async with some_async_generator(<arguments>) as <variable>:\n            <body>\n\n    equivalent to this:\n\n        <setup>\n        try:\n            <variable> = <value>\n            <body>\n        finally:\n            <cleanup>\n    \"\"\"\n    @wraps(func)\n    def helper(*args, **kwds):\n        return _AsyncGeneratorContextManager(func, args, kwds)\n    return helper\n\n\nclass closing(AbstractContextManager):\n    \"\"\"Context to automatically close something at the end of a block.\n\n    Code like this:\n\n        with closing(<module>.open(<arguments>)) as f:\n            <block>\n\n    is equivalent to this:\n\n        f = <module>.open(<arguments>)\n        try:\n            <block>\n        finally:\n            f.close()\n\n    \"\"\"\n    def __init__(self, thing):\n        self.thing = thing\n    def __enter__(self):\n        return self.thing\n    def __exit__(self, *exc_info):\n        self.thing.close()\n\n\nclass _RedirectStream(AbstractContextManager):\n\n    _stream = None\n\n    def __init__(self, new_target):\n        self._new_target = new_target\n        # We use a list of old targets to make this CM re-entrant\n        self._old_targets = []\n\n    def __enter__(self):\n        self._old_targets.append(getattr(sys, self._stream))\n        setattr(sys, self._stream, self._new_target)\n        return self._new_target\n\n    def __exit__(self, exctype, excinst, exctb):\n        setattr(sys, self._stream, self._old_targets.pop())\n\n\nclass redirect_stdout(_RedirectStream):\n    \"\"\"Context manager for temporarily redirecting stdout to another file.\n\n        # How to send help() to stderr\n        with redirect_stdout(sys.stderr):\n            help(dir)\n\n        # How to write help() to a file\n        with open('help.txt', 'w') as f:\n            with redirect_stdout(f):\n                help(pow)\n    \"\"\"\n\n    _stream = \"stdout\"\n\n\nclass redirect_stderr(_RedirectStream):\n    \"\"\"Context manager for temporarily redirecting stderr to another file.\"\"\"\n\n    _stream = \"stderr\"\n\n\nclass suppress(AbstractContextManager):\n    \"\"\"Context manager to suppress specified exceptions\n\n    After the exception is suppressed, execution proceeds with the next\n    statement following the with statement.\n\n         with suppress(FileNotFoundError):\n             os.remove(somefile)\n         # Execution still resumes here if the file was already removed\n    \"\"\"\n\n    def __init__(self, *exceptions):\n        self._exceptions = exceptions\n\n    def __enter__(self):\n        pass\n\n    def __exit__(self, exctype, excinst, exctb):\n        # Unlike isinstance and issubclass, CPython exception handling\n        # currently only looks at the concrete type hierarchy (ignoring\n        # the instance and subclass checking hooks). While Guido considers\n        # that a bug rather than a feature, it's a fairly hard one to fix\n        # due to various internal implementation details. suppress provides\n        # the simpler issubclass based semantics, rather than trying to\n        # exactly reproduce the limitations of the CPython interpreter.\n        #\n        # See http://bugs.python.org/issue12029 for more details\n        return exctype is not None and issubclass(exctype, self._exceptions)\n\n\nclass _BaseExitStack:\n    \"\"\"A base class for ExitStack and AsyncExitStack.\"\"\"\n\n    @staticmethod\n    def _create_exit_wrapper(cm, cm_exit):\n        return MethodType(cm_exit, cm)\n\n    @staticmethod\n    def _create_cb_wrapper(callback, /, *args, **kwds):\n        def _exit_wrapper(exc_type, exc, tb):\n            callback(*args, **kwds)\n        return _exit_wrapper\n\n    def __init__(self):\n        self._exit_callbacks = deque()\n\n    def pop_all(self):\n        \"\"\"Preserve the context stack by transferring it to a new instance.\"\"\"\n        new_stack = type(self)()\n        new_stack._exit_callbacks = self._exit_callbacks\n        self._exit_callbacks = deque()\n        return new_stack\n\n    def push(self, exit):\n        \"\"\"Registers a callback with the standard __exit__ method signature.\n\n        Can suppress exceptions the same way __exit__ method can.\n        Also accepts any object with an __exit__ method (registering a call\n        to the method instead of the object itself).\n        \"\"\"\n        # We use an unbound method rather than a bound method to follow\n        # the standard lookup behaviour for special methods.\n        _cb_type = type(exit)\n\n        try:\n            exit_method = _cb_type.__exit__\n        except AttributeError:\n            # Not a context manager, so assume it's a callable.\n            self._push_exit_callback(exit)\n        else:\n            self._push_cm_exit(exit, exit_method)\n        return exit  # Allow use as a decorator.\n\n    def enter_context(self, cm):\n        \"\"\"Enters the supplied context manager.\n\n        If successful, also pushes its __exit__ method as a callback and\n        returns the result of the __enter__ method.\n        \"\"\"\n        # We look up the special methods on the type to match the with\n        # statement.\n        _cm_type = type(cm)\n        _exit = _cm_type.__exit__\n        result = _cm_type.__enter__(cm)\n        self._push_cm_exit(cm, _exit)\n        return result\n\n    def callback(*args, **kwds):\n        \"\"\"Registers an arbitrary callback and arguments.\n\n        Cannot suppress exceptions.\n        \"\"\"\n        if len(args) >= 2:\n            self, callback, *args = args\n        elif not args:\n            raise TypeError(\"descriptor 'callback' of '_BaseExitStack' object \"\n                            \"needs an argument\")\n        elif 'callback' in kwds:\n            callback = kwds.pop('callback')\n            self, *args = args\n            import warnings\n            warnings.warn(\"Passing 'callback' as keyword argument is deprecated\",\n                          DeprecationWarning, stacklevel=2)\n        else:\n            raise TypeError('callback expected at least 1 positional argument, '\n                            'got %d' % (len(args)-1))\n\n        _exit_wrapper = self._create_cb_wrapper(callback, *args, **kwds)\n\n        # We changed the signature, so using @wraps is not appropriate, but\n        # setting __wrapped__ may still help with introspection.\n        _exit_wrapper.__wrapped__ = callback\n        self._push_exit_callback(_exit_wrapper)\n        return callback  # Allow use as a decorator\n    callback.__text_signature__ = '($self, callback, /, *args, **kwds)'\n\n    def _push_cm_exit(self, cm, cm_exit):\n        \"\"\"Helper to correctly register callbacks to __exit__ methods.\"\"\"\n        _exit_wrapper = self._create_exit_wrapper(cm, cm_exit)\n        self._push_exit_callback(_exit_wrapper, True)\n\n    def _push_exit_callback(self, callback, is_sync=True):\n        self._exit_callbacks.append((is_sync, callback))\n\n\n# Inspired by discussions on http://bugs.python.org/issue13585\nclass ExitStack(_BaseExitStack, AbstractContextManager):\n    \"\"\"Context manager for dynamic management of a stack of exit callbacks.\n\n    For example:\n        with ExitStack() as stack:\n            files = [stack.enter_context(open(fname)) for fname in filenames]\n            # All opened files will automatically be closed at the end of\n            # the with statement, even if attempts to open files later\n            # in the list raise an exception.\n    \"\"\"\n\n    def __enter__(self):\n        return self\n\n    def __exit__(self, *exc_details):\n        received_exc = exc_details[0] is not None\n\n        # We manipulate the exception state so it behaves as though\n        # we were actually nesting multiple with statements\n        frame_exc = sys.exc_info()[1]\n        def _fix_exception_context(new_exc, old_exc):\n            # Context may not be correct, so find the end of the chain\n            while 1:\n                exc_context = new_exc.__context__\n                if exc_context is old_exc:\n                    # Context is already set correctly (see issue 20317)\n                    return\n                if exc_context is None or exc_context is frame_exc:\n                    break\n                new_exc = exc_context\n            # Change the end of the chain to point to the exception\n            # we expect it to reference\n            new_exc.__context__ = old_exc\n\n        # Callbacks are invoked in LIFO order to match the behaviour of\n        # nested context managers\n        suppressed_exc = False\n        pending_raise = False\n        while self._exit_callbacks:\n            is_sync, cb = self._exit_callbacks.pop()\n            assert is_sync\n            try:\n                if cb(*exc_details):\n                    suppressed_exc = True\n                    pending_raise = False\n                    exc_details = (None, None, None)\n            except:\n                new_exc_details = sys.exc_info()\n                # simulate the stack of exceptions by setting the context\n                _fix_exception_context(new_exc_details[1], exc_details[1])\n                pending_raise = True\n                exc_details = new_exc_details\n        if pending_raise:\n            try:\n                # bare \"raise exc_details[1]\" replaces our carefully\n                # set-up context\n                fixed_ctx = exc_details[1].__context__\n                raise exc_details[1]\n            except BaseException:\n                exc_details[1].__context__ = fixed_ctx\n                raise\n        return received_exc and suppressed_exc\n\n    def close(self):\n        \"\"\"Immediately unwind the context stack.\"\"\"\n        self.__exit__(None, None, None)\n\n\n# Inspired by discussions on https://bugs.python.org/issue29302\nclass AsyncExitStack(_BaseExitStack, AbstractAsyncContextManager):\n    \"\"\"Async context manager for dynamic management of a stack of exit\n    callbacks.\n\n    For example:\n        async with AsyncExitStack() as stack:\n            connections = [await stack.enter_async_context(get_connection())\n                for i in range(5)]\n            # All opened connections will automatically be released at the\n            # end of the async with statement, even if attempts to open a\n            # connection later in the list raise an exception.\n    \"\"\"\n\n    @staticmethod\n    def _create_async_exit_wrapper(cm, cm_exit):\n        return MethodType(cm_exit, cm)\n\n    @staticmethod\n    def _create_async_cb_wrapper(callback, /, *args, **kwds):\n        async def _exit_wrapper(exc_type, exc, tb):\n            await callback(*args, **kwds)\n        return _exit_wrapper\n\n    async def enter_async_context(self, cm):\n        \"\"\"Enters the supplied async context manager.\n\n        If successful, also pushes its __aexit__ method as a callback and\n        returns the result of the __aenter__ method.\n        \"\"\"\n        _cm_type = type(cm)\n        _exit = _cm_type.__aexit__\n        result = await _cm_type.__aenter__(cm)\n        self._push_async_cm_exit(cm, _exit)\n        return result\n\n    def push_async_exit(self, exit):\n        \"\"\"Registers a coroutine function with the standard __aexit__ method\n        signature.\n\n        Can suppress exceptions the same way __aexit__ method can.\n        Also accepts any object with an __aexit__ method (registering a call\n        to the method instead of the object itself).\n        \"\"\"\n        _cb_type = type(exit)\n        try:\n            exit_method = _cb_type.__aexit__\n        except AttributeError:\n            # Not an async context manager, so assume it's a coroutine function\n            self._push_exit_callback(exit, False)\n        else:\n            self._push_async_cm_exit(exit, exit_method)\n        return exit  # Allow use as a decorator\n\n    def push_async_callback(*args, **kwds):\n        \"\"\"Registers an arbitrary coroutine function and arguments.\n\n        Cannot suppress exceptions.\n        \"\"\"\n        if len(args) >= 2:\n            self, callback, *args = args\n        elif not args:\n            raise TypeError(\"descriptor 'push_async_callback' of \"\n                            \"'AsyncExitStack' object needs an argument\")\n        elif 'callback' in kwds:\n            callback = kwds.pop('callback')\n            self, *args = args\n            import warnings\n            warnings.warn(\"Passing 'callback' as keyword argument is deprecated\",\n                          DeprecationWarning, stacklevel=2)\n        else:\n            raise TypeError('push_async_callback expected at least 1 '\n                            'positional argument, got %d' % (len(args)-1))\n\n        _exit_wrapper = self._create_async_cb_wrapper(callback, *args, **kwds)\n\n        # We changed the signature, so using @wraps is not appropriate, but\n        # setting __wrapped__ may still help with introspection.\n        _exit_wrapper.__wrapped__ = callback\n        self._push_exit_callback(_exit_wrapper, False)\n        return callback  # Allow use as a decorator\n    push_async_callback.__text_signature__ = '($self, callback, /, *args, **kwds)'\n\n    async def aclose(self):\n        \"\"\"Immediately unwind the context stack.\"\"\"\n        await self.__aexit__(None, None, None)\n\n    def _push_async_cm_exit(self, cm, cm_exit):\n        \"\"\"Helper to correctly register coroutine function to __aexit__\n        method.\"\"\"\n        _exit_wrapper = self._create_async_exit_wrapper(cm, cm_exit)\n        self._push_exit_callback(_exit_wrapper, False)\n\n    async def __aenter__(self):\n        return self\n\n    async def __aexit__(self, *exc_details):\n        received_exc = exc_details[0] is not None\n\n        # We manipulate the exception state so it behaves as though\n        # we were actually nesting multiple with statements\n        frame_exc = sys.exc_info()[1]\n        def _fix_exception_context(new_exc, old_exc):\n            # Context may not be correct, so find the end of the chain\n            while 1:\n                exc_context = new_exc.__context__\n                if exc_context is old_exc:\n                    # Context is already set correctly (see issue 20317)\n                    return\n                if exc_context is None or exc_context is frame_exc:\n                    break\n                new_exc = exc_context\n            # Change the end of the chain to point to the exception\n            # we expect it to reference\n            new_exc.__context__ = old_exc\n\n        # Callbacks are invoked in LIFO order to match the behaviour of\n        # nested context managers\n        suppressed_exc = False\n        pending_raise = False\n        while self._exit_callbacks:\n            is_sync, cb = self._exit_callbacks.pop()\n            try:\n                if is_sync:\n                    cb_suppress = cb(*exc_details)\n                else:\n                    cb_suppress = await cb(*exc_details)\n\n                if cb_suppress:\n                    suppressed_exc = True\n                    pending_raise = False\n                    exc_details = (None, None, None)\n            except:\n                new_exc_details = sys.exc_info()\n                # simulate the stack of exceptions by setting the context\n                _fix_exception_context(new_exc_details[1], exc_details[1])\n                pending_raise = True\n                exc_details = new_exc_details\n        if pending_raise:\n            try:\n                # bare \"raise exc_details[1]\" replaces our carefully\n                # set-up context\n                fixed_ctx = exc_details[1].__context__\n                raise exc_details[1]\n            except BaseException:\n                exc_details[1].__context__ = fixed_ctx\n                raise\n        return received_exc and suppressed_exc\n\n\nclass nullcontext(AbstractContextManager):\n    \"\"\"Context manager that does no additional processing.\n\n    Used as a stand-in for a normal context manager, when a particular\n    block of code is only sometimes used with a normal context manager:\n\n    cm = optional_cm if condition else nullcontext()\n    with cm:\n        # Perform operation, using optional_cm if condition is True\n    \"\"\"\n\n    def __init__(self, enter_result=None):\n        self.enter_result = enter_result\n\n    def __enter__(self):\n        return self.enter_result\n\n    def __exit__(self, *excinfo):\n        pass\n"
  },
  {
    "path": "rd/usr/lib/python3.8/contextvars.py",
    "content": "from _contextvars import Context, ContextVar, Token, copy_context\n\n\n__all__ = ('Context', 'ContextVar', 'Token', 'copy_context')\n"
  },
  {
    "path": "rd/usr/lib/python3.8/copy.py",
    "content": "\"\"\"Generic (shallow and deep) copying operations.\n\nInterface summary:\n\n        import copy\n\n        x = copy.copy(y)        # make a shallow copy of y\n        x = copy.deepcopy(y)    # make a deep copy of y\n\nFor module specific errors, copy.Error is raised.\n\nThe difference between shallow and deep copying is only relevant for\ncompound objects (objects that contain other objects, like lists or\nclass instances).\n\n- A shallow copy constructs a new compound object and then (to the\n  extent possible) inserts *the same objects* into it that the\n  original contains.\n\n- A deep copy constructs a new compound object and then, recursively,\n  inserts *copies* into it of the objects found in the original.\n\nTwo problems often exist with deep copy operations that don't exist\nwith shallow copy operations:\n\n a) recursive objects (compound objects that, directly or indirectly,\n    contain a reference to themselves) may cause a recursive loop\n\n b) because deep copy copies *everything* it may copy too much, e.g.\n    administrative data structures that should be shared even between\n    copies\n\nPython's deep copy operation avoids these problems by:\n\n a) keeping a table of objects already copied during the current\n    copying pass\n\n b) letting user-defined classes override the copying operation or the\n    set of components copied\n\nThis version does not copy types like module, class, function, method,\nnor stack trace, stack frame, nor file, socket, window, nor array, nor\nany similar types.\n\nClasses can use the same interfaces to control copying that they use\nto control pickling: they can define methods called __getinitargs__(),\n__getstate__() and __setstate__().  See the documentation for module\n\"pickle\" for information on these methods.\n\"\"\"\n\nimport types\nimport weakref\nfrom copyreg import dispatch_table\n\nclass Error(Exception):\n    pass\nerror = Error   # backward compatibility\n\ntry:\n    from org.python.core import PyStringMap\nexcept ImportError:\n    PyStringMap = None\n\n__all__ = [\"Error\", \"copy\", \"deepcopy\"]\n\ndef copy(x):\n    \"\"\"Shallow copy operation on arbitrary Python objects.\n\n    See the module's __doc__ string for more info.\n    \"\"\"\n\n    cls = type(x)\n\n    copier = _copy_dispatch.get(cls)\n    if copier:\n        return copier(x)\n\n    if issubclass(cls, type):\n        # treat it as a regular class:\n        return _copy_immutable(x)\n\n    copier = getattr(cls, \"__copy__\", None)\n    if copier is not None:\n        return copier(x)\n\n    reductor = dispatch_table.get(cls)\n    if reductor is not None:\n        rv = reductor(x)\n    else:\n        reductor = getattr(x, \"__reduce_ex__\", None)\n        if reductor is not None:\n            rv = reductor(4)\n        else:\n            reductor = getattr(x, \"__reduce__\", None)\n            if reductor:\n                rv = reductor()\n            else:\n                raise Error(\"un(shallow)copyable object of type %s\" % cls)\n\n    if isinstance(rv, str):\n        return x\n    return _reconstruct(x, None, *rv)\n\n\n_copy_dispatch = d = {}\n\ndef _copy_immutable(x):\n    return x\nfor t in (type(None), int, float, bool, complex, str, tuple,\n          bytes, frozenset, type, range, slice, property,\n          types.BuiltinFunctionType, type(Ellipsis), type(NotImplemented),\n          types.FunctionType, weakref.ref):\n    d[t] = _copy_immutable\nt = getattr(types, \"CodeType\", None)\nif t is not None:\n    d[t] = _copy_immutable\n\nd[list] = list.copy\nd[dict] = dict.copy\nd[set] = set.copy\nd[bytearray] = bytearray.copy\n\nif PyStringMap is not None:\n    d[PyStringMap] = PyStringMap.copy\n\ndel d, t\n\ndef deepcopy(x, memo=None, _nil=[]):\n    \"\"\"Deep copy operation on arbitrary Python objects.\n\n    See the module's __doc__ string for more info.\n    \"\"\"\n\n    if memo is None:\n        memo = {}\n\n    d = id(x)\n    y = memo.get(d, _nil)\n    if y is not _nil:\n        return y\n\n    cls = type(x)\n\n    copier = _deepcopy_dispatch.get(cls)\n    if copier is not None:\n        y = copier(x, memo)\n    else:\n        if issubclass(cls, type):\n            y = _deepcopy_atomic(x, memo)\n        else:\n            copier = getattr(x, \"__deepcopy__\", None)\n            if copier is not None:\n                y = copier(memo)\n            else:\n                reductor = dispatch_table.get(cls)\n                if reductor:\n                    rv = reductor(x)\n                else:\n                    reductor = getattr(x, \"__reduce_ex__\", None)\n                    if reductor is not None:\n                        rv = reductor(4)\n                    else:\n                        reductor = getattr(x, \"__reduce__\", None)\n                        if reductor:\n                            rv = reductor()\n                        else:\n                            raise Error(\n                                \"un(deep)copyable object of type %s\" % cls)\n                if isinstance(rv, str):\n                    y = x\n                else:\n                    y = _reconstruct(x, memo, *rv)\n\n    # If is its own copy, don't memoize.\n    if y is not x:\n        memo[d] = y\n        _keep_alive(x, memo) # Make sure x lives at least as long as d\n    return y\n\n_deepcopy_dispatch = d = {}\n\ndef _deepcopy_atomic(x, memo):\n    return x\nd[type(None)] = _deepcopy_atomic\nd[type(Ellipsis)] = _deepcopy_atomic\nd[type(NotImplemented)] = _deepcopy_atomic\nd[int] = _deepcopy_atomic\nd[float] = _deepcopy_atomic\nd[bool] = _deepcopy_atomic\nd[complex] = _deepcopy_atomic\nd[bytes] = _deepcopy_atomic\nd[str] = _deepcopy_atomic\nd[types.CodeType] = _deepcopy_atomic\nd[type] = _deepcopy_atomic\nd[types.BuiltinFunctionType] = _deepcopy_atomic\nd[types.FunctionType] = _deepcopy_atomic\nd[weakref.ref] = _deepcopy_atomic\nd[property] = _deepcopy_atomic\n\ndef _deepcopy_list(x, memo, deepcopy=deepcopy):\n    y = []\n    memo[id(x)] = y\n    append = y.append\n    for a in x:\n        append(deepcopy(a, memo))\n    return y\nd[list] = _deepcopy_list\n\ndef _deepcopy_tuple(x, memo, deepcopy=deepcopy):\n    y = [deepcopy(a, memo) for a in x]\n    # We're not going to put the tuple in the memo, but it's still important we\n    # check for it, in case the tuple contains recursive mutable structures.\n    try:\n        return memo[id(x)]\n    except KeyError:\n        pass\n    for k, j in zip(x, y):\n        if k is not j:\n            y = tuple(y)\n            break\n    else:\n        y = x\n    return y\nd[tuple] = _deepcopy_tuple\n\ndef _deepcopy_dict(x, memo, deepcopy=deepcopy):\n    y = {}\n    memo[id(x)] = y\n    for key, value in x.items():\n        y[deepcopy(key, memo)] = deepcopy(value, memo)\n    return y\nd[dict] = _deepcopy_dict\nif PyStringMap is not None:\n    d[PyStringMap] = _deepcopy_dict\n\ndef _deepcopy_method(x, memo): # Copy instance methods\n    return type(x)(x.__func__, deepcopy(x.__self__, memo))\nd[types.MethodType] = _deepcopy_method\n\ndel d\n\ndef _keep_alive(x, memo):\n    \"\"\"Keeps a reference to the object x in the memo.\n\n    Because we remember objects by their id, we have\n    to assure that possibly temporary objects are kept\n    alive by referencing them.\n    We store a reference at the id of the memo, which should\n    normally not be used unless someone tries to deepcopy\n    the memo itself...\n    \"\"\"\n    try:\n        memo[id(memo)].append(x)\n    except KeyError:\n        # aha, this is the first one :-)\n        memo[id(memo)]=[x]\n\ndef _reconstruct(x, memo, func, args,\n                 state=None, listiter=None, dictiter=None,\n                 deepcopy=deepcopy):\n    deep = memo is not None\n    if deep and args:\n        args = (deepcopy(arg, memo) for arg in args)\n    y = func(*args)\n    if deep:\n        memo[id(x)] = y\n\n    if state is not None:\n        if deep:\n            state = deepcopy(state, memo)\n        if hasattr(y, '__setstate__'):\n            y.__setstate__(state)\n        else:\n            if isinstance(state, tuple) and len(state) == 2:\n                state, slotstate = state\n            else:\n                slotstate = None\n            if state is not None:\n                y.__dict__.update(state)\n            if slotstate is not None:\n                for key, value in slotstate.items():\n                    setattr(y, key, value)\n\n    if listiter is not None:\n        if deep:\n            for item in listiter:\n                item = deepcopy(item, memo)\n                y.append(item)\n        else:\n            for item in listiter:\n                y.append(item)\n    if dictiter is not None:\n        if deep:\n            for key, value in dictiter:\n                key = deepcopy(key, memo)\n                value = deepcopy(value, memo)\n                y[key] = value\n        else:\n            for key, value in dictiter:\n                y[key] = value\n    return y\n\ndel types, weakref, PyStringMap\n"
  },
  {
    "path": "rd/usr/lib/python3.8/copyreg.py",
    "content": "\"\"\"Helper to provide extensibility for pickle.\n\nThis is only useful to add pickle support for extension types defined in\nC, not for instances of user-defined classes.\n\"\"\"\n\n__all__ = [\"pickle\", \"constructor\",\n           \"add_extension\", \"remove_extension\", \"clear_extension_cache\"]\n\ndispatch_table = {}\n\ndef pickle(ob_type, pickle_function, constructor_ob=None):\n    if not callable(pickle_function):\n        raise TypeError(\"reduction functions must be callable\")\n    dispatch_table[ob_type] = pickle_function\n\n    # The constructor_ob function is a vestige of safe for unpickling.\n    # There is no reason for the caller to pass it anymore.\n    if constructor_ob is not None:\n        constructor(constructor_ob)\n\ndef constructor(object):\n    if not callable(object):\n        raise TypeError(\"constructors must be callable\")\n\n# Example: provide pickling support for complex numbers.\n\ntry:\n    complex\nexcept NameError:\n    pass\nelse:\n\n    def pickle_complex(c):\n        return complex, (c.real, c.imag)\n\n    pickle(complex, pickle_complex, complex)\n\n# Support for pickling new-style objects\n\ndef _reconstructor(cls, base, state):\n    if base is object:\n        obj = object.__new__(cls)\n    else:\n        obj = base.__new__(cls, state)\n        if base.__init__ != object.__init__:\n            base.__init__(obj, state)\n    return obj\n\n_HEAPTYPE = 1<<9\n\n# Python code for object.__reduce_ex__ for protocols 0 and 1\n\ndef _reduce_ex(self, proto):\n    assert proto < 2\n    cls = self.__class__\n    for base in cls.__mro__:\n        if hasattr(base, '__flags__') and not base.__flags__ & _HEAPTYPE:\n            break\n    else:\n        base = object # not really reachable\n    if base is object:\n        state = None\n    else:\n        if base is cls:\n            raise TypeError(f\"cannot pickle {cls.__name__!r} object\")\n        state = base(self)\n    args = (cls, base, state)\n    try:\n        getstate = self.__getstate__\n    except AttributeError:\n        if getattr(self, \"__slots__\", None):\n            raise TypeError(f\"cannot pickle {cls.__name__!r} object: \"\n                            f\"a class that defines __slots__ without \"\n                            f\"defining __getstate__ cannot be pickled \"\n                            f\"with protocol {proto}\") from None\n        try:\n            dict = self.__dict__\n        except AttributeError:\n            dict = None\n    else:\n        dict = getstate()\n    if dict:\n        return _reconstructor, args, dict\n    else:\n        return _reconstructor, args\n\n# Helper for __reduce_ex__ protocol 2\n\ndef __newobj__(cls, *args):\n    return cls.__new__(cls, *args)\n\ndef __newobj_ex__(cls, args, kwargs):\n    \"\"\"Used by pickle protocol 4, instead of __newobj__ to allow classes with\n    keyword-only arguments to be pickled correctly.\n    \"\"\"\n    return cls.__new__(cls, *args, **kwargs)\n\ndef _slotnames(cls):\n    \"\"\"Return a list of slot names for a given class.\n\n    This needs to find slots defined by the class and its bases, so we\n    can't simply return the __slots__ attribute.  We must walk down\n    the Method Resolution Order and concatenate the __slots__ of each\n    class found there.  (This assumes classes don't modify their\n    __slots__ attribute to misrepresent their slots after the class is\n    defined.)\n    \"\"\"\n\n    # Get the value from a cache in the class if possible\n    names = cls.__dict__.get(\"__slotnames__\")\n    if names is not None:\n        return names\n\n    # Not cached -- calculate the value\n    names = []\n    if not hasattr(cls, \"__slots__\"):\n        # This class has no slots\n        pass\n    else:\n        # Slots found -- gather slot names from all base classes\n        for c in cls.__mro__:\n            if \"__slots__\" in c.__dict__:\n                slots = c.__dict__['__slots__']\n                # if class has a single slot, it can be given as a string\n                if isinstance(slots, str):\n                    slots = (slots,)\n                for name in slots:\n                    # special descriptors\n                    if name in (\"__dict__\", \"__weakref__\"):\n                        continue\n                    # mangled names\n                    elif name.startswith('__') and not name.endswith('__'):\n                        stripped = c.__name__.lstrip('_')\n                        if stripped:\n                            names.append('_%s%s' % (stripped, name))\n                        else:\n                            names.append(name)\n                    else:\n                        names.append(name)\n\n    # Cache the outcome in the class if at all possible\n    try:\n        cls.__slotnames__ = names\n    except:\n        pass # But don't die if we can't\n\n    return names\n\n# A registry of extension codes.  This is an ad-hoc compression\n# mechanism.  Whenever a global reference to <module>, <name> is about\n# to be pickled, the (<module>, <name>) tuple is looked up here to see\n# if it is a registered extension code for it.  Extension codes are\n# universal, so that the meaning of a pickle does not depend on\n# context.  (There are also some codes reserved for local use that\n# don't have this restriction.)  Codes are positive ints; 0 is\n# reserved.\n\n_extension_registry = {}                # key -> code\n_inverted_registry = {}                 # code -> key\n_extension_cache = {}                   # code -> object\n# Don't ever rebind those names:  pickling grabs a reference to them when\n# it's initialized, and won't see a rebinding.\n\ndef add_extension(module, name, code):\n    \"\"\"Register an extension code.\"\"\"\n    code = int(code)\n    if not 1 <= code <= 0x7fffffff:\n        raise ValueError(\"code out of range\")\n    key = (module, name)\n    if (_extension_registry.get(key) == code and\n        _inverted_registry.get(code) == key):\n        return # Redundant registrations are benign\n    if key in _extension_registry:\n        raise ValueError(\"key %s is already registered with code %s\" %\n                         (key, _extension_registry[key]))\n    if code in _inverted_registry:\n        raise ValueError(\"code %s is already in use for key %s\" %\n                         (code, _inverted_registry[code]))\n    _extension_registry[key] = code\n    _inverted_registry[code] = key\n\ndef remove_extension(module, name, code):\n    \"\"\"Unregister an extension code.  For testing only.\"\"\"\n    key = (module, name)\n    if (_extension_registry.get(key) != code or\n        _inverted_registry.get(code) != key):\n        raise ValueError(\"key %s is not registered with code %s\" %\n                         (key, code))\n    del _extension_registry[key]\n    del _inverted_registry[code]\n    if code in _extension_cache:\n        del _extension_cache[code]\n\ndef clear_extension_cache():\n    _extension_cache.clear()\n\n# Standard extension code assignments\n\n# Reserved ranges\n\n# First  Last Count  Purpose\n#     1   127   127  Reserved for Python standard library\n#   128   191    64  Reserved for Zope\n#   192   239    48  Reserved for 3rd parties\n#   240   255    16  Reserved for private use (will never be assigned)\n#   256   Inf   Inf  Reserved for future assignment\n\n# Extension codes are assigned by the Python Software Foundation.\n"
  },
  {
    "path": "rd/usr/lib/python3.8/crypt.py",
    "content": "\"\"\"Wrapper to the POSIX crypt library call and associated functionality.\"\"\"\n\nimport sys as _sys\n\ntry:\n    import _crypt\nexcept ModuleNotFoundError:\n    if _sys.platform == 'win32':\n        raise ImportError(\"The crypt module is not supported on Windows\")\n    else:\n        raise ImportError(\"The required _crypt module was not built as part of CPython\")\n\nimport string as _string\nfrom random import SystemRandom as _SystemRandom\nfrom collections import namedtuple as _namedtuple\n\n\n_saltchars = _string.ascii_letters + _string.digits + './'\n_sr = _SystemRandom()\n\n\nclass _Method(_namedtuple('_Method', 'name ident salt_chars total_size')):\n\n    \"\"\"Class representing a salt method per the Modular Crypt Format or the\n    legacy 2-character crypt method.\"\"\"\n\n    def __repr__(self):\n        return '<crypt.METHOD_{}>'.format(self.name)\n\n\ndef mksalt(method=None, *, rounds=None):\n    \"\"\"Generate a salt for the specified method.\n\n    If not specified, the strongest available method will be used.\n\n    \"\"\"\n    if method is None:\n        method = methods[0]\n    if rounds is not None and not isinstance(rounds, int):\n        raise TypeError(f'{rounds.__class__.__name__} object cannot be '\n                        f'interpreted as an integer')\n    if not method.ident:  # traditional\n        s = ''\n    else:  # modular\n        s = f'${method.ident}$'\n\n    if method.ident and method.ident[0] == '2':  # Blowfish variants\n        if rounds is None:\n            log_rounds = 12\n        else:\n            log_rounds = int.bit_length(rounds-1)\n            if rounds != 1 << log_rounds:\n                raise ValueError('rounds must be a power of 2')\n            if not 4 <= log_rounds <= 31:\n                raise ValueError('rounds out of the range 2**4 to 2**31')\n        s += f'{log_rounds:02d}$'\n    elif method.ident in ('5', '6'):  # SHA-2\n        if rounds is not None:\n            if not 1000 <= rounds <= 999_999_999:\n                raise ValueError('rounds out of the range 1000 to 999_999_999')\n            s += f'rounds={rounds}$'\n    elif rounds is not None:\n        raise ValueError(f\"{method} doesn't support the rounds argument\")\n\n    s += ''.join(_sr.choice(_saltchars) for char in range(method.salt_chars))\n    return s\n\n\ndef crypt(word, salt=None):\n    \"\"\"Return a string representing the one-way hash of a password, with a salt\n    prepended.\n\n    If ``salt`` is not specified or is ``None``, the strongest\n    available method will be selected and a salt generated.  Otherwise,\n    ``salt`` may be one of the ``crypt.METHOD_*`` values, or a string as\n    returned by ``crypt.mksalt()``.\n\n    \"\"\"\n    if salt is None or isinstance(salt, _Method):\n        salt = mksalt(salt)\n    return _crypt.crypt(word, salt)\n\n\n#  available salting/crypto methods\nmethods = []\n\ndef _add_method(name, *args, rounds=None):\n    method = _Method(name, *args)\n    globals()['METHOD_' + name] = method\n    salt = mksalt(method, rounds=rounds)\n    result = crypt('', salt)\n    if result and len(result) == method.total_size:\n        methods.append(method)\n        return True\n    return False\n\n_add_method('SHA512', '6', 16, 106)\n_add_method('SHA256', '5', 16, 63)\n\n# Choose the strongest supported version of Blowfish hashing.\n# Early versions have flaws.  Version 'a' fixes flaws of\n# the initial implementation, 'b' fixes flaws of 'a'.\n# 'y' is the same as 'b', for compatibility\n# with openwall crypt_blowfish.\nfor _v in 'b', 'y', 'a', '':\n    if _add_method('BLOWFISH', '2' + _v, 22, 59 + len(_v), rounds=1<<4):\n        break\n\n_add_method('MD5', '1', 8, 34)\n_add_method('CRYPT', None, 2, 13)\n\ndel _v, _add_method\n"
  },
  {
    "path": "rd/usr/lib/python3.8/csv.py",
    "content": "\n\"\"\"\ncsv.py - read/write/investigate CSV files\n\"\"\"\n\nimport re\nfrom _csv import Error, __version__, writer, reader, register_dialect, \\\n                 unregister_dialect, get_dialect, list_dialects, \\\n                 field_size_limit, \\\n                 QUOTE_MINIMAL, QUOTE_ALL, QUOTE_NONNUMERIC, QUOTE_NONE, \\\n                 __doc__\nfrom _csv import Dialect as _Dialect\n\nfrom io import StringIO\n\n__all__ = [\"QUOTE_MINIMAL\", \"QUOTE_ALL\", \"QUOTE_NONNUMERIC\", \"QUOTE_NONE\",\n           \"Error\", \"Dialect\", \"__doc__\", \"excel\", \"excel_tab\",\n           \"field_size_limit\", \"reader\", \"writer\",\n           \"register_dialect\", \"get_dialect\", \"list_dialects\", \"Sniffer\",\n           \"unregister_dialect\", \"__version__\", \"DictReader\", \"DictWriter\",\n           \"unix_dialect\"]\n\nclass Dialect:\n    \"\"\"Describe a CSV dialect.\n\n    This must be subclassed (see csv.excel).  Valid attributes are:\n    delimiter, quotechar, escapechar, doublequote, skipinitialspace,\n    lineterminator, quoting.\n\n    \"\"\"\n    _name = \"\"\n    _valid = False\n    # placeholders\n    delimiter = None\n    quotechar = None\n    escapechar = None\n    doublequote = None\n    skipinitialspace = None\n    lineterminator = None\n    quoting = None\n\n    def __init__(self):\n        if self.__class__ != Dialect:\n            self._valid = True\n        self._validate()\n\n    def _validate(self):\n        try:\n            _Dialect(self)\n        except TypeError as e:\n            # We do this for compatibility with py2.3\n            raise Error(str(e))\n\nclass excel(Dialect):\n    \"\"\"Describe the usual properties of Excel-generated CSV files.\"\"\"\n    delimiter = ','\n    quotechar = '\"'\n    doublequote = True\n    skipinitialspace = False\n    lineterminator = '\\r\\n'\n    quoting = QUOTE_MINIMAL\nregister_dialect(\"excel\", excel)\n\nclass excel_tab(excel):\n    \"\"\"Describe the usual properties of Excel-generated TAB-delimited files.\"\"\"\n    delimiter = '\\t'\nregister_dialect(\"excel-tab\", excel_tab)\n\nclass unix_dialect(Dialect):\n    \"\"\"Describe the usual properties of Unix-generated CSV files.\"\"\"\n    delimiter = ','\n    quotechar = '\"'\n    doublequote = True\n    skipinitialspace = False\n    lineterminator = '\\n'\n    quoting = QUOTE_ALL\nregister_dialect(\"unix\", unix_dialect)\n\n\nclass DictReader:\n    def __init__(self, f, fieldnames=None, restkey=None, restval=None,\n                 dialect=\"excel\", *args, **kwds):\n        self._fieldnames = fieldnames   # list of keys for the dict\n        self.restkey = restkey          # key to catch long rows\n        self.restval = restval          # default value for short rows\n        self.reader = reader(f, dialect, *args, **kwds)\n        self.dialect = dialect\n        self.line_num = 0\n\n    def __iter__(self):\n        return self\n\n    @property\n    def fieldnames(self):\n        if self._fieldnames is None:\n            try:\n                self._fieldnames = next(self.reader)\n            except StopIteration:\n                pass\n        self.line_num = self.reader.line_num\n        return self._fieldnames\n\n    @fieldnames.setter\n    def fieldnames(self, value):\n        self._fieldnames = value\n\n    def __next__(self):\n        if self.line_num == 0:\n            # Used only for its side effect.\n            self.fieldnames\n        row = next(self.reader)\n        self.line_num = self.reader.line_num\n\n        # unlike the basic reader, we prefer not to return blanks,\n        # because we will typically wind up with a dict full of None\n        # values\n        while row == []:\n            row = next(self.reader)\n        d = dict(zip(self.fieldnames, row))\n        lf = len(self.fieldnames)\n        lr = len(row)\n        if lf < lr:\n            d[self.restkey] = row[lf:]\n        elif lf > lr:\n            for key in self.fieldnames[lr:]:\n                d[key] = self.restval\n        return d\n\n\nclass DictWriter:\n    def __init__(self, f, fieldnames, restval=\"\", extrasaction=\"raise\",\n                 dialect=\"excel\", *args, **kwds):\n        self.fieldnames = fieldnames    # list of keys for the dict\n        self.restval = restval          # for writing short dicts\n        if extrasaction.lower() not in (\"raise\", \"ignore\"):\n            raise ValueError(\"extrasaction (%s) must be 'raise' or 'ignore'\"\n                             % extrasaction)\n        self.extrasaction = extrasaction\n        self.writer = writer(f, dialect, *args, **kwds)\n\n    def writeheader(self):\n        header = dict(zip(self.fieldnames, self.fieldnames))\n        return self.writerow(header)\n\n    def _dict_to_list(self, rowdict):\n        if self.extrasaction == \"raise\":\n            wrong_fields = rowdict.keys() - self.fieldnames\n            if wrong_fields:\n                raise ValueError(\"dict contains fields not in fieldnames: \"\n                                 + \", \".join([repr(x) for x in wrong_fields]))\n        return (rowdict.get(key, self.restval) for key in self.fieldnames)\n\n    def writerow(self, rowdict):\n        return self.writer.writerow(self._dict_to_list(rowdict))\n\n    def writerows(self, rowdicts):\n        return self.writer.writerows(map(self._dict_to_list, rowdicts))\n\n# Guard Sniffer's type checking against builds that exclude complex()\ntry:\n    complex\nexcept NameError:\n    complex = float\n\nclass Sniffer:\n    '''\n    \"Sniffs\" the format of a CSV file (i.e. delimiter, quotechar)\n    Returns a Dialect object.\n    '''\n    def __init__(self):\n        # in case there is more than one possible delimiter\n        self.preferred = [',', '\\t', ';', ' ', ':']\n\n\n    def sniff(self, sample, delimiters=None):\n        \"\"\"\n        Returns a dialect (or None) corresponding to the sample\n        \"\"\"\n\n        quotechar, doublequote, delimiter, skipinitialspace = \\\n                   self._guess_quote_and_delimiter(sample, delimiters)\n        if not delimiter:\n            delimiter, skipinitialspace = self._guess_delimiter(sample,\n                                                                delimiters)\n\n        if not delimiter:\n            raise Error(\"Could not determine delimiter\")\n\n        class dialect(Dialect):\n            _name = \"sniffed\"\n            lineterminator = '\\r\\n'\n            quoting = QUOTE_MINIMAL\n            # escapechar = ''\n\n        dialect.doublequote = doublequote\n        dialect.delimiter = delimiter\n        # _csv.reader won't accept a quotechar of ''\n        dialect.quotechar = quotechar or '\"'\n        dialect.skipinitialspace = skipinitialspace\n\n        return dialect\n\n\n    def _guess_quote_and_delimiter(self, data, delimiters):\n        \"\"\"\n        Looks for text enclosed between two identical quotes\n        (the probable quotechar) which are preceded and followed\n        by the same character (the probable delimiter).\n        For example:\n                         ,'some text',\n        The quote with the most wins, same with the delimiter.\n        If there is no quotechar the delimiter can't be determined\n        this way.\n        \"\"\"\n\n        matches = []\n        for restr in (r'(?P<delim>[^\\w\\n\"\\'])(?P<space> ?)(?P<quote>[\"\\']).*?(?P=quote)(?P=delim)', # ,\".*?\",\n                      r'(?:^|\\n)(?P<quote>[\"\\']).*?(?P=quote)(?P<delim>[^\\w\\n\"\\'])(?P<space> ?)',   #  \".*?\",\n                      r'(?P<delim>[^\\w\\n\"\\'])(?P<space> ?)(?P<quote>[\"\\']).*?(?P=quote)(?:$|\\n)',   # ,\".*?\"\n                      r'(?:^|\\n)(?P<quote>[\"\\']).*?(?P=quote)(?:$|\\n)'):                            #  \".*?\" (no delim, no space)\n            regexp = re.compile(restr, re.DOTALL | re.MULTILINE)\n            matches = regexp.findall(data)\n            if matches:\n                break\n\n        if not matches:\n            # (quotechar, doublequote, delimiter, skipinitialspace)\n            return ('', False, None, 0)\n        quotes = {}\n        delims = {}\n        spaces = 0\n        groupindex = regexp.groupindex\n        for m in matches:\n            n = groupindex['quote'] - 1\n            key = m[n]\n            if key:\n                quotes[key] = quotes.get(key, 0) + 1\n            try:\n                n = groupindex['delim'] - 1\n                key = m[n]\n            except KeyError:\n                continue\n            if key and (delimiters is None or key in delimiters):\n                delims[key] = delims.get(key, 0) + 1\n            try:\n                n = groupindex['space'] - 1\n            except KeyError:\n                continue\n            if m[n]:\n                spaces += 1\n\n        quotechar = max(quotes, key=quotes.get)\n\n        if delims:\n            delim = max(delims, key=delims.get)\n            skipinitialspace = delims[delim] == spaces\n            if delim == '\\n': # most likely a file with a single column\n                delim = ''\n        else:\n            # there is *no* delimiter, it's a single column of quoted data\n            delim = ''\n            skipinitialspace = 0\n\n        # if we see an extra quote between delimiters, we've got a\n        # double quoted format\n        dq_regexp = re.compile(\n                               r\"((%(delim)s)|^)\\W*%(quote)s[^%(delim)s\\n]*%(quote)s[^%(delim)s\\n]*%(quote)s\\W*((%(delim)s)|$)\" % \\\n                               {'delim':re.escape(delim), 'quote':quotechar}, re.MULTILINE)\n\n\n\n        if dq_regexp.search(data):\n            doublequote = True\n        else:\n            doublequote = False\n\n        return (quotechar, doublequote, delim, skipinitialspace)\n\n\n    def _guess_delimiter(self, data, delimiters):\n        \"\"\"\n        The delimiter /should/ occur the same number of times on\n        each row. However, due to malformed data, it may not. We don't want\n        an all or nothing approach, so we allow for small variations in this\n        number.\n          1) build a table of the frequency of each character on every line.\n          2) build a table of frequencies of this frequency (meta-frequency?),\n             e.g.  'x occurred 5 times in 10 rows, 6 times in 1000 rows,\n             7 times in 2 rows'\n          3) use the mode of the meta-frequency to determine the /expected/\n             frequency for that character\n          4) find out how often the character actually meets that goal\n          5) the character that best meets its goal is the delimiter\n        For performance reasons, the data is evaluated in chunks, so it can\n        try and evaluate the smallest portion of the data possible, evaluating\n        additional chunks as necessary.\n        \"\"\"\n\n        data = list(filter(None, data.split('\\n')))\n\n        ascii = [chr(c) for c in range(127)] # 7-bit ASCII\n\n        # build frequency tables\n        chunkLength = min(10, len(data))\n        iteration = 0\n        charFrequency = {}\n        modes = {}\n        delims = {}\n        start, end = 0, chunkLength\n        while start < len(data):\n            iteration += 1\n            for line in data[start:end]:\n                for char in ascii:\n                    metaFrequency = charFrequency.get(char, {})\n                    # must count even if frequency is 0\n                    freq = line.count(char)\n                    # value is the mode\n                    metaFrequency[freq] = metaFrequency.get(freq, 0) + 1\n                    charFrequency[char] = metaFrequency\n\n            for char in charFrequency.keys():\n                items = list(charFrequency[char].items())\n                if len(items) == 1 and items[0][0] == 0:\n                    continue\n                # get the mode of the frequencies\n                if len(items) > 1:\n                    modes[char] = max(items, key=lambda x: x[1])\n                    # adjust the mode - subtract the sum of all\n                    # other frequencies\n                    items.remove(modes[char])\n                    modes[char] = (modes[char][0], modes[char][1]\n                                   - sum(item[1] for item in items))\n                else:\n                    modes[char] = items[0]\n\n            # build a list of possible delimiters\n            modeList = modes.items()\n            total = float(min(chunkLength * iteration, len(data)))\n            # (rows of consistent data) / (number of rows) = 100%\n            consistency = 1.0\n            # minimum consistency threshold\n            threshold = 0.9\n            while len(delims) == 0 and consistency >= threshold:\n                for k, v in modeList:\n                    if v[0] > 0 and v[1] > 0:\n                        if ((v[1]/total) >= consistency and\n                            (delimiters is None or k in delimiters)):\n                            delims[k] = v\n                consistency -= 0.01\n\n            if len(delims) == 1:\n                delim = list(delims.keys())[0]\n                skipinitialspace = (data[0].count(delim) ==\n                                    data[0].count(\"%c \" % delim))\n                return (delim, skipinitialspace)\n\n            # analyze another chunkLength lines\n            start = end\n            end += chunkLength\n\n        if not delims:\n            return ('', 0)\n\n        # if there's more than one, fall back to a 'preferred' list\n        if len(delims) > 1:\n            for d in self.preferred:\n                if d in delims.keys():\n                    skipinitialspace = (data[0].count(d) ==\n                                        data[0].count(\"%c \" % d))\n                    return (d, skipinitialspace)\n\n        # nothing else indicates a preference, pick the character that\n        # dominates(?)\n        items = [(v,k) for (k,v) in delims.items()]\n        items.sort()\n        delim = items[-1][1]\n\n        skipinitialspace = (data[0].count(delim) ==\n                            data[0].count(\"%c \" % delim))\n        return (delim, skipinitialspace)\n\n\n    def has_header(self, sample):\n        # Creates a dictionary of types of data in each column. If any\n        # column is of a single type (say, integers), *except* for the first\n        # row, then the first row is presumed to be labels. If the type\n        # can't be determined, it is assumed to be a string in which case\n        # the length of the string is the determining factor: if all of the\n        # rows except for the first are the same length, it's a header.\n        # Finally, a 'vote' is taken at the end for each column, adding or\n        # subtracting from the likelihood of the first row being a header.\n\n        rdr = reader(StringIO(sample), self.sniff(sample))\n\n        header = next(rdr) # assume first row is header\n\n        columns = len(header)\n        columnTypes = {}\n        for i in range(columns): columnTypes[i] = None\n\n        checked = 0\n        for row in rdr:\n            # arbitrary number of rows to check, to keep it sane\n            if checked > 20:\n                break\n            checked += 1\n\n            if len(row) != columns:\n                continue # skip rows that have irregular number of columns\n\n            for col in list(columnTypes.keys()):\n\n                for thisType in [int, float, complex]:\n                    try:\n                        thisType(row[col])\n                        break\n                    except (ValueError, OverflowError):\n                        pass\n                else:\n                    # fallback to length of string\n                    thisType = len(row[col])\n\n                if thisType != columnTypes[col]:\n                    if columnTypes[col] is None: # add new column type\n                        columnTypes[col] = thisType\n                    else:\n                        # type is inconsistent, remove column from\n                        # consideration\n                        del columnTypes[col]\n\n        # finally, compare results against first row and \"vote\"\n        # on whether it's a header\n        hasHeader = 0\n        for col, colType in columnTypes.items():\n            if type(colType) == type(0): # it's a length\n                if len(header[col]) != colType:\n                    hasHeader += 1\n                else:\n                    hasHeader -= 1\n            else: # attempt typecast\n                try:\n                    colType(header[col])\n                except (ValueError, TypeError):\n                    hasHeader += 1\n                else:\n                    hasHeader -= 1\n\n        return hasHeader > 0\n"
  },
  {
    "path": "rd/usr/lib/python3.8/curses/__init__.py",
    "content": "\"\"\"curses\n\nThe main package for curses support for Python.  Normally used by importing\nthe package, and perhaps a particular module inside it.\n\n   import curses\n   from curses import textpad\n   curses.initscr()\n   ...\n\n\"\"\"\n\nfrom _curses import *\nimport os as _os\nimport sys as _sys\n\n# Some constants, most notably the ACS_* ones, are only added to the C\n# _curses module's dictionary after initscr() is called.  (Some\n# versions of SGI's curses don't define values for those constants\n# until initscr() has been called.)  This wrapper function calls the\n# underlying C initscr(), and then copies the constants from the\n# _curses module to the curses package's dictionary.  Don't do 'from\n# curses import *' if you'll be needing the ACS_* constants.\n\ndef initscr():\n    import _curses, curses\n    # we call setupterm() here because it raises an error\n    # instead of calling exit() in error cases.\n    setupterm(term=_os.environ.get(\"TERM\", \"unknown\"),\n              fd=_sys.__stdout__.fileno())\n    stdscr = _curses.initscr()\n    for key, value in _curses.__dict__.items():\n        if key[0:4] == 'ACS_' or key in ('LINES', 'COLS'):\n            setattr(curses, key, value)\n\n    return stdscr\n\n# This is a similar wrapper for start_color(), which adds the COLORS and\n# COLOR_PAIRS variables which are only available after start_color() is\n# called.\n\ndef start_color():\n    import _curses, curses\n    retval = _curses.start_color()\n    if hasattr(_curses, 'COLORS'):\n        curses.COLORS = _curses.COLORS\n    if hasattr(_curses, 'COLOR_PAIRS'):\n        curses.COLOR_PAIRS = _curses.COLOR_PAIRS\n    return retval\n\n# Import Python has_key() implementation if _curses doesn't contain has_key()\n\ntry:\n    has_key\nexcept NameError:\n    from .has_key import has_key\n\n# Wrapper for the entire curses-based application.  Runs a function which\n# should be the rest of your curses-based application.  If the application\n# raises an exception, wrapper() will restore the terminal to a sane state so\n# you can read the resulting traceback.\n\ndef wrapper(*args, **kwds):\n    \"\"\"Wrapper function that initializes curses and calls another function,\n    restoring normal keyboard/screen behavior on error.\n    The callable object 'func' is then passed the main window 'stdscr'\n    as its first argument, followed by any other arguments passed to\n    wrapper().\n    \"\"\"\n\n    if args:\n        func, *args = args\n    elif 'func' in kwds:\n        func = kwds.pop('func')\n        import warnings\n        warnings.warn(\"Passing 'func' as keyword argument is deprecated\",\n                      DeprecationWarning, stacklevel=2)\n    else:\n        raise TypeError('wrapper expected at least 1 positional argument, '\n                        'got %d' % len(args))\n\n    try:\n        # Initialize curses\n        stdscr = initscr()\n\n        # Turn off echoing of keys, and enter cbreak mode,\n        # where no buffering is performed on keyboard input\n        noecho()\n        cbreak()\n\n        # In keypad mode, escape sequences for special keys\n        # (like the cursor keys) will be interpreted and\n        # a special value like curses.KEY_LEFT will be returned\n        stdscr.keypad(1)\n\n        # Start color, too.  Harmless if the terminal doesn't have\n        # color; user can test with has_color() later on.  The try/catch\n        # works around a minor bit of over-conscientiousness in the curses\n        # module -- the error return from C start_color() is ignorable.\n        try:\n            start_color()\n        except:\n            pass\n\n        return func(stdscr, *args, **kwds)\n    finally:\n        # Set everything back to normal\n        if 'stdscr' in locals():\n            stdscr.keypad(0)\n            echo()\n            nocbreak()\n            endwin()\nwrapper.__text_signature__ = '(func, /, *args, **kwds)'\n"
  },
  {
    "path": "rd/usr/lib/python3.8/curses/ascii.py",
    "content": "\"\"\"Constants and membership tests for ASCII characters\"\"\"\n\nNUL     = 0x00  # ^@\nSOH     = 0x01  # ^A\nSTX     = 0x02  # ^B\nETX     = 0x03  # ^C\nEOT     = 0x04  # ^D\nENQ     = 0x05  # ^E\nACK     = 0x06  # ^F\nBEL     = 0x07  # ^G\nBS      = 0x08  # ^H\nTAB     = 0x09  # ^I\nHT      = 0x09  # ^I\nLF      = 0x0a  # ^J\nNL      = 0x0a  # ^J\nVT      = 0x0b  # ^K\nFF      = 0x0c  # ^L\nCR      = 0x0d  # ^M\nSO      = 0x0e  # ^N\nSI      = 0x0f  # ^O\nDLE     = 0x10  # ^P\nDC1     = 0x11  # ^Q\nDC2     = 0x12  # ^R\nDC3     = 0x13  # ^S\nDC4     = 0x14  # ^T\nNAK     = 0x15  # ^U\nSYN     = 0x16  # ^V\nETB     = 0x17  # ^W\nCAN     = 0x18  # ^X\nEM      = 0x19  # ^Y\nSUB     = 0x1a  # ^Z\nESC     = 0x1b  # ^[\nFS      = 0x1c  # ^\\\nGS      = 0x1d  # ^]\nRS      = 0x1e  # ^^\nUS      = 0x1f  # ^_\nSP      = 0x20  # space\nDEL     = 0x7f  # delete\n\ncontrolnames = [\n\"NUL\", \"SOH\", \"STX\", \"ETX\", \"EOT\", \"ENQ\", \"ACK\", \"BEL\",\n\"BS\",  \"HT\",  \"LF\",  \"VT\",  \"FF\",  \"CR\",  \"SO\",  \"SI\",\n\"DLE\", \"DC1\", \"DC2\", \"DC3\", \"DC4\", \"NAK\", \"SYN\", \"ETB\",\n\"CAN\", \"EM\",  \"SUB\", \"ESC\", \"FS\",  \"GS\",  \"RS\",  \"US\",\n\"SP\"\n]\n\ndef _ctoi(c):\n    if type(c) == type(\"\"):\n        return ord(c)\n    else:\n        return c\n\ndef isalnum(c): return isalpha(c) or isdigit(c)\ndef isalpha(c): return isupper(c) or islower(c)\ndef isascii(c): return 0 <= _ctoi(c) <= 127          # ?\ndef isblank(c): return _ctoi(c) in (9, 32)\ndef iscntrl(c): return 0 <= _ctoi(c) <= 31 or _ctoi(c) == 127\ndef isdigit(c): return 48 <= _ctoi(c) <= 57\ndef isgraph(c): return 33 <= _ctoi(c) <= 126\ndef islower(c): return 97 <= _ctoi(c) <= 122\ndef isprint(c): return 32 <= _ctoi(c) <= 126\ndef ispunct(c): return isgraph(c) and not isalnum(c)\ndef isspace(c): return _ctoi(c) in (9, 10, 11, 12, 13, 32)\ndef isupper(c): return 65 <= _ctoi(c) <= 90\ndef isxdigit(c): return isdigit(c) or \\\n    (65 <= _ctoi(c) <= 70) or (97 <= _ctoi(c) <= 102)\ndef isctrl(c): return 0 <= _ctoi(c) < 32\ndef ismeta(c): return _ctoi(c) > 127\n\ndef ascii(c):\n    if type(c) == type(\"\"):\n        return chr(_ctoi(c) & 0x7f)\n    else:\n        return _ctoi(c) & 0x7f\n\ndef ctrl(c):\n    if type(c) == type(\"\"):\n        return chr(_ctoi(c) & 0x1f)\n    else:\n        return _ctoi(c) & 0x1f\n\ndef alt(c):\n    if type(c) == type(\"\"):\n        return chr(_ctoi(c) | 0x80)\n    else:\n        return _ctoi(c) | 0x80\n\ndef unctrl(c):\n    bits = _ctoi(c)\n    if bits == 0x7f:\n        rep = \"^?\"\n    elif isprint(bits & 0x7f):\n        rep = chr(bits & 0x7f)\n    else:\n        rep = \"^\" + chr(((bits & 0x7f) | 0x20) + 0x20)\n    if bits & 0x80:\n        return \"!\" + rep\n    return rep\n"
  },
  {
    "path": "rd/usr/lib/python3.8/curses/has_key.py",
    "content": "\n#\n# Emulation of has_key() function for platforms that don't use ncurses\n#\n\nimport _curses\n\n# Table mapping curses keys to the terminfo capability name\n\n_capability_names = {\n    _curses.KEY_A1: 'ka1',\n    _curses.KEY_A3: 'ka3',\n    _curses.KEY_B2: 'kb2',\n    _curses.KEY_BACKSPACE: 'kbs',\n    _curses.KEY_BEG: 'kbeg',\n    _curses.KEY_BTAB: 'kcbt',\n    _curses.KEY_C1: 'kc1',\n    _curses.KEY_C3: 'kc3',\n    _curses.KEY_CANCEL: 'kcan',\n    _curses.KEY_CATAB: 'ktbc',\n    _curses.KEY_CLEAR: 'kclr',\n    _curses.KEY_CLOSE: 'kclo',\n    _curses.KEY_COMMAND: 'kcmd',\n    _curses.KEY_COPY: 'kcpy',\n    _curses.KEY_CREATE: 'kcrt',\n    _curses.KEY_CTAB: 'kctab',\n    _curses.KEY_DC: 'kdch1',\n    _curses.KEY_DL: 'kdl1',\n    _curses.KEY_DOWN: 'kcud1',\n    _curses.KEY_EIC: 'krmir',\n    _curses.KEY_END: 'kend',\n    _curses.KEY_ENTER: 'kent',\n    _curses.KEY_EOL: 'kel',\n    _curses.KEY_EOS: 'ked',\n    _curses.KEY_EXIT: 'kext',\n    _curses.KEY_F0: 'kf0',\n    _curses.KEY_F1: 'kf1',\n    _curses.KEY_F10: 'kf10',\n    _curses.KEY_F11: 'kf11',\n    _curses.KEY_F12: 'kf12',\n    _curses.KEY_F13: 'kf13',\n    _curses.KEY_F14: 'kf14',\n    _curses.KEY_F15: 'kf15',\n    _curses.KEY_F16: 'kf16',\n    _curses.KEY_F17: 'kf17',\n    _curses.KEY_F18: 'kf18',\n    _curses.KEY_F19: 'kf19',\n    _curses.KEY_F2: 'kf2',\n    _curses.KEY_F20: 'kf20',\n    _curses.KEY_F21: 'kf21',\n    _curses.KEY_F22: 'kf22',\n    _curses.KEY_F23: 'kf23',\n    _curses.KEY_F24: 'kf24',\n    _curses.KEY_F25: 'kf25',\n    _curses.KEY_F26: 'kf26',\n    _curses.KEY_F27: 'kf27',\n    _curses.KEY_F28: 'kf28',\n    _curses.KEY_F29: 'kf29',\n    _curses.KEY_F3: 'kf3',\n    _curses.KEY_F30: 'kf30',\n    _curses.KEY_F31: 'kf31',\n    _curses.KEY_F32: 'kf32',\n    _curses.KEY_F33: 'kf33',\n    _curses.KEY_F34: 'kf34',\n    _curses.KEY_F35: 'kf35',\n    _curses.KEY_F36: 'kf36',\n    _curses.KEY_F37: 'kf37',\n    _curses.KEY_F38: 'kf38',\n    _curses.KEY_F39: 'kf39',\n    _curses.KEY_F4: 'kf4',\n    _curses.KEY_F40: 'kf40',\n    _curses.KEY_F41: 'kf41',\n    _curses.KEY_F42: 'kf42',\n    _curses.KEY_F43: 'kf43',\n    _curses.KEY_F44: 'kf44',\n    _curses.KEY_F45: 'kf45',\n    _curses.KEY_F46: 'kf46',\n    _curses.KEY_F47: 'kf47',\n    _curses.KEY_F48: 'kf48',\n    _curses.KEY_F49: 'kf49',\n    _curses.KEY_F5: 'kf5',\n    _curses.KEY_F50: 'kf50',\n    _curses.KEY_F51: 'kf51',\n    _curses.KEY_F52: 'kf52',\n    _curses.KEY_F53: 'kf53',\n    _curses.KEY_F54: 'kf54',\n    _curses.KEY_F55: 'kf55',\n    _curses.KEY_F56: 'kf56',\n    _curses.KEY_F57: 'kf57',\n    _curses.KEY_F58: 'kf58',\n    _curses.KEY_F59: 'kf59',\n    _curses.KEY_F6: 'kf6',\n    _curses.KEY_F60: 'kf60',\n    _curses.KEY_F61: 'kf61',\n    _curses.KEY_F62: 'kf62',\n    _curses.KEY_F63: 'kf63',\n    _curses.KEY_F7: 'kf7',\n    _curses.KEY_F8: 'kf8',\n    _curses.KEY_F9: 'kf9',\n    _curses.KEY_FIND: 'kfnd',\n    _curses.KEY_HELP: 'khlp',\n    _curses.KEY_HOME: 'khome',\n    _curses.KEY_IC: 'kich1',\n    _curses.KEY_IL: 'kil1',\n    _curses.KEY_LEFT: 'kcub1',\n    _curses.KEY_LL: 'kll',\n    _curses.KEY_MARK: 'kmrk',\n    _curses.KEY_MESSAGE: 'kmsg',\n    _curses.KEY_MOVE: 'kmov',\n    _curses.KEY_NEXT: 'knxt',\n    _curses.KEY_NPAGE: 'knp',\n    _curses.KEY_OPEN: 'kopn',\n    _curses.KEY_OPTIONS: 'kopt',\n    _curses.KEY_PPAGE: 'kpp',\n    _curses.KEY_PREVIOUS: 'kprv',\n    _curses.KEY_PRINT: 'kprt',\n    _curses.KEY_REDO: 'krdo',\n    _curses.KEY_REFERENCE: 'kref',\n    _curses.KEY_REFRESH: 'krfr',\n    _curses.KEY_REPLACE: 'krpl',\n    _curses.KEY_RESTART: 'krst',\n    _curses.KEY_RESUME: 'kres',\n    _curses.KEY_RIGHT: 'kcuf1',\n    _curses.KEY_SAVE: 'ksav',\n    _curses.KEY_SBEG: 'kBEG',\n    _curses.KEY_SCANCEL: 'kCAN',\n    _curses.KEY_SCOMMAND: 'kCMD',\n    _curses.KEY_SCOPY: 'kCPY',\n    _curses.KEY_SCREATE: 'kCRT',\n    _curses.KEY_SDC: 'kDC',\n    _curses.KEY_SDL: 'kDL',\n    _curses.KEY_SELECT: 'kslt',\n    _curses.KEY_SEND: 'kEND',\n    _curses.KEY_SEOL: 'kEOL',\n    _curses.KEY_SEXIT: 'kEXT',\n    _curses.KEY_SF: 'kind',\n    _curses.KEY_SFIND: 'kFND',\n    _curses.KEY_SHELP: 'kHLP',\n    _curses.KEY_SHOME: 'kHOM',\n    _curses.KEY_SIC: 'kIC',\n    _curses.KEY_SLEFT: 'kLFT',\n    _curses.KEY_SMESSAGE: 'kMSG',\n    _curses.KEY_SMOVE: 'kMOV',\n    _curses.KEY_SNEXT: 'kNXT',\n    _curses.KEY_SOPTIONS: 'kOPT',\n    _curses.KEY_SPREVIOUS: 'kPRV',\n    _curses.KEY_SPRINT: 'kPRT',\n    _curses.KEY_SR: 'kri',\n    _curses.KEY_SREDO: 'kRDO',\n    _curses.KEY_SREPLACE: 'kRPL',\n    _curses.KEY_SRIGHT: 'kRIT',\n    _curses.KEY_SRSUME: 'kRES',\n    _curses.KEY_SSAVE: 'kSAV',\n    _curses.KEY_SSUSPEND: 'kSPD',\n    _curses.KEY_STAB: 'khts',\n    _curses.KEY_SUNDO: 'kUND',\n    _curses.KEY_SUSPEND: 'kspd',\n    _curses.KEY_UNDO: 'kund',\n    _curses.KEY_UP: 'kcuu1'\n    }\n\ndef has_key(ch):\n    if isinstance(ch, str):\n        ch = ord(ch)\n\n    # Figure out the correct capability name for the keycode.\n    capability_name = _capability_names.get(ch)\n    if capability_name is None:\n        return False\n\n    #Check the current terminal description for that capability;\n    #if present, return true, else return false.\n    if _curses.tigetstr( capability_name ):\n        return True\n    else:\n        return False\n\nif __name__ == '__main__':\n    # Compare the output of this implementation and the ncurses has_key,\n    # on platforms where has_key is already available\n    try:\n        L = []\n        _curses.initscr()\n        for key in _capability_names.keys():\n            system = _curses.has_key(key)\n            python = has_key(key)\n            if system != python:\n                L.append( 'Mismatch for key %s, system=%i, Python=%i'\n                          % (_curses.keyname( key ), system, python) )\n    finally:\n        _curses.endwin()\n        for i in L: print(i)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/curses/panel.py",
    "content": "\"\"\"curses.panel\n\nModule for using panels with curses.\n\"\"\"\n\nfrom _curses_panel import *\n"
  },
  {
    "path": "rd/usr/lib/python3.8/curses/textpad.py",
    "content": "\"\"\"Simple textbox editing widget with Emacs-like keybindings.\"\"\"\n\nimport curses\nimport curses.ascii\n\ndef rectangle(win, uly, ulx, lry, lrx):\n    \"\"\"Draw a rectangle with corners at the provided upper-left\n    and lower-right coordinates.\n    \"\"\"\n    win.vline(uly+1, ulx, curses.ACS_VLINE, lry - uly - 1)\n    win.hline(uly, ulx+1, curses.ACS_HLINE, lrx - ulx - 1)\n    win.hline(lry, ulx+1, curses.ACS_HLINE, lrx - ulx - 1)\n    win.vline(uly+1, lrx, curses.ACS_VLINE, lry - uly - 1)\n    win.addch(uly, ulx, curses.ACS_ULCORNER)\n    win.addch(uly, lrx, curses.ACS_URCORNER)\n    win.addch(lry, lrx, curses.ACS_LRCORNER)\n    win.addch(lry, ulx, curses.ACS_LLCORNER)\n\nclass Textbox:\n    \"\"\"Editing widget using the interior of a window object.\n     Supports the following Emacs-like key bindings:\n\n    Ctrl-A      Go to left edge of window.\n    Ctrl-B      Cursor left, wrapping to previous line if appropriate.\n    Ctrl-D      Delete character under cursor.\n    Ctrl-E      Go to right edge (stripspaces off) or end of line (stripspaces on).\n    Ctrl-F      Cursor right, wrapping to next line when appropriate.\n    Ctrl-G      Terminate, returning the window contents.\n    Ctrl-H      Delete character backward.\n    Ctrl-J      Terminate if the window is 1 line, otherwise insert newline.\n    Ctrl-K      If line is blank, delete it, otherwise clear to end of line.\n    Ctrl-L      Refresh screen.\n    Ctrl-N      Cursor down; move down one line.\n    Ctrl-O      Insert a blank line at cursor location.\n    Ctrl-P      Cursor up; move up one line.\n\n    Move operations do nothing if the cursor is at an edge where the movement\n    is not possible.  The following synonyms are supported where possible:\n\n    KEY_LEFT = Ctrl-B, KEY_RIGHT = Ctrl-F, KEY_UP = Ctrl-P, KEY_DOWN = Ctrl-N\n    KEY_BACKSPACE = Ctrl-h\n    \"\"\"\n    def __init__(self, win, insert_mode=False):\n        self.win = win\n        self.insert_mode = insert_mode\n        self._update_max_yx()\n        self.stripspaces = 1\n        self.lastcmd = None\n        win.keypad(1)\n\n    def _update_max_yx(self):\n        maxy, maxx = self.win.getmaxyx()\n        self.maxy = maxy - 1\n        self.maxx = maxx - 1\n\n    def _end_of_line(self, y):\n        \"\"\"Go to the location of the first blank on the given line,\n        returning the index of the last non-blank character.\"\"\"\n        self._update_max_yx()\n        last = self.maxx\n        while True:\n            if curses.ascii.ascii(self.win.inch(y, last)) != curses.ascii.SP:\n                last = min(self.maxx, last+1)\n                break\n            elif last == 0:\n                break\n            last = last - 1\n        return last\n\n    def _insert_printable_char(self, ch):\n        self._update_max_yx()\n        (y, x) = self.win.getyx()\n        backyx = None\n        while y < self.maxy or x < self.maxx:\n            if self.insert_mode:\n                oldch = self.win.inch()\n            # The try-catch ignores the error we trigger from some curses\n            # versions by trying to write into the lowest-rightmost spot\n            # in the window.\n            try:\n                self.win.addch(ch)\n            except curses.error:\n                pass\n            if not self.insert_mode or not curses.ascii.isprint(oldch):\n                break\n            ch = oldch\n            (y, x) = self.win.getyx()\n            # Remember where to put the cursor back since we are in insert_mode\n            if backyx is None:\n                backyx = y, x\n\n        if backyx is not None:\n            self.win.move(*backyx)\n\n    def do_command(self, ch):\n        \"Process a single editing command.\"\n        self._update_max_yx()\n        (y, x) = self.win.getyx()\n        self.lastcmd = ch\n        if curses.ascii.isprint(ch):\n            if y < self.maxy or x < self.maxx:\n                self._insert_printable_char(ch)\n        elif ch == curses.ascii.SOH:                           # ^a\n            self.win.move(y, 0)\n        elif ch in (curses.ascii.STX,curses.KEY_LEFT, curses.ascii.BS,curses.KEY_BACKSPACE):\n            if x > 0:\n                self.win.move(y, x-1)\n            elif y == 0:\n                pass\n            elif self.stripspaces:\n                self.win.move(y-1, self._end_of_line(y-1))\n            else:\n                self.win.move(y-1, self.maxx)\n            if ch in (curses.ascii.BS, curses.KEY_BACKSPACE):\n                self.win.delch()\n        elif ch == curses.ascii.EOT:                           # ^d\n            self.win.delch()\n        elif ch == curses.ascii.ENQ:                           # ^e\n            if self.stripspaces:\n                self.win.move(y, self._end_of_line(y))\n            else:\n                self.win.move(y, self.maxx)\n        elif ch in (curses.ascii.ACK, curses.KEY_RIGHT):       # ^f\n            if x < self.maxx:\n                self.win.move(y, x+1)\n            elif y == self.maxy:\n                pass\n            else:\n                self.win.move(y+1, 0)\n        elif ch == curses.ascii.BEL:                           # ^g\n            return 0\n        elif ch == curses.ascii.NL:                            # ^j\n            if self.maxy == 0:\n                return 0\n            elif y < self.maxy:\n                self.win.move(y+1, 0)\n        elif ch == curses.ascii.VT:                            # ^k\n            if x == 0 and self._end_of_line(y) == 0:\n                self.win.deleteln()\n            else:\n                # first undo the effect of self._end_of_line\n                self.win.move(y, x)\n                self.win.clrtoeol()\n        elif ch == curses.ascii.FF:                            # ^l\n            self.win.refresh()\n        elif ch in (curses.ascii.SO, curses.KEY_DOWN):         # ^n\n            if y < self.maxy:\n                self.win.move(y+1, x)\n                if x > self._end_of_line(y+1):\n                    self.win.move(y+1, self._end_of_line(y+1))\n        elif ch == curses.ascii.SI:                            # ^o\n            self.win.insertln()\n        elif ch in (curses.ascii.DLE, curses.KEY_UP):          # ^p\n            if y > 0:\n                self.win.move(y-1, x)\n                if x > self._end_of_line(y-1):\n                    self.win.move(y-1, self._end_of_line(y-1))\n        return 1\n\n    def gather(self):\n        \"Collect and return the contents of the window.\"\n        result = \"\"\n        self._update_max_yx()\n        for y in range(self.maxy+1):\n            self.win.move(y, 0)\n            stop = self._end_of_line(y)\n            if stop == 0 and self.stripspaces:\n                continue\n            for x in range(self.maxx+1):\n                if self.stripspaces and x > stop:\n                    break\n                result = result + chr(curses.ascii.ascii(self.win.inch(y, x)))\n            if self.maxy > 0:\n                result = result + \"\\n\"\n        return result\n\n    def edit(self, validate=None):\n        \"Edit in the widget window and collect the results.\"\n        while 1:\n            ch = self.win.getch()\n            if validate:\n                ch = validate(ch)\n            if not ch:\n                continue\n            if not self.do_command(ch):\n                break\n            self.win.refresh()\n        return self.gather()\n\nif __name__ == '__main__':\n    def test_editbox(stdscr):\n        ncols, nlines = 9, 4\n        uly, ulx = 15, 20\n        stdscr.addstr(uly-2, ulx, \"Use Ctrl-G to end editing.\")\n        win = curses.newwin(nlines, ncols, uly, ulx)\n        rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols)\n        stdscr.refresh()\n        return Textbox(win).edit()\n\n    str = curses.wrapper(test_editbox)\n    print('Contents of text box:', repr(str))\n"
  },
  {
    "path": "rd/usr/lib/python3.8/dataclasses.py",
    "content": "import re\nimport sys\nimport copy\nimport types\nimport inspect\nimport keyword\nimport builtins\nimport functools\nimport _thread\n\n\n__all__ = ['dataclass',\n           'field',\n           'Field',\n           'FrozenInstanceError',\n           'InitVar',\n           'MISSING',\n\n           # Helper functions.\n           'fields',\n           'asdict',\n           'astuple',\n           'make_dataclass',\n           'replace',\n           'is_dataclass',\n           ]\n\n# Conditions for adding methods.  The boxes indicate what action the\n# dataclass decorator takes.  For all of these tables, when I talk\n# about init=, repr=, eq=, order=, unsafe_hash=, or frozen=, I'm\n# referring to the arguments to the @dataclass decorator.  When\n# checking if a dunder method already exists, I mean check for an\n# entry in the class's __dict__.  I never check to see if an attribute\n# is defined in a base class.\n\n# Key:\n# +=========+=========================================+\n# + Value   | Meaning                                 |\n# +=========+=========================================+\n# | <blank> | No action: no method is added.          |\n# +---------+-----------------------------------------+\n# | add     | Generated method is added.              |\n# +---------+-----------------------------------------+\n# | raise   | TypeError is raised.                    |\n# +---------+-----------------------------------------+\n# | None    | Attribute is set to None.               |\n# +=========+=========================================+\n\n# __init__\n#\n#   +--- init= parameter\n#   |\n#   v     |       |       |\n#         |  no   |  yes  |  <--- class has __init__ in __dict__?\n# +=======+=======+=======+\n# | False |       |       |\n# +-------+-------+-------+\n# | True  | add   |       |  <- the default\n# +=======+=======+=======+\n\n# __repr__\n#\n#    +--- repr= parameter\n#    |\n#    v    |       |       |\n#         |  no   |  yes  |  <--- class has __repr__ in __dict__?\n# +=======+=======+=======+\n# | False |       |       |\n# +-------+-------+-------+\n# | True  | add   |       |  <- the default\n# +=======+=======+=======+\n\n\n# __setattr__\n# __delattr__\n#\n#    +--- frozen= parameter\n#    |\n#    v    |       |       |\n#         |  no   |  yes  |  <--- class has __setattr__ or __delattr__ in __dict__?\n# +=======+=======+=======+\n# | False |       |       |  <- the default\n# +-------+-------+-------+\n# | True  | add   | raise |\n# +=======+=======+=======+\n# Raise because not adding these methods would break the \"frozen-ness\"\n# of the class.\n\n# __eq__\n#\n#    +--- eq= parameter\n#    |\n#    v    |       |       |\n#         |  no   |  yes  |  <--- class has __eq__ in __dict__?\n# +=======+=======+=======+\n# | False |       |       |\n# +-------+-------+-------+\n# | True  | add   |       |  <- the default\n# +=======+=======+=======+\n\n# __lt__\n# __le__\n# __gt__\n# __ge__\n#\n#    +--- order= parameter\n#    |\n#    v    |       |       |\n#         |  no   |  yes  |  <--- class has any comparison method in __dict__?\n# +=======+=======+=======+\n# | False |       |       |  <- the default\n# +-------+-------+-------+\n# | True  | add   | raise |\n# +=======+=======+=======+\n# Raise because to allow this case would interfere with using\n# functools.total_ordering.\n\n# __hash__\n\n#    +------------------- unsafe_hash= parameter\n#    |       +----------- eq= parameter\n#    |       |       +--- frozen= parameter\n#    |       |       |\n#    v       v       v    |        |        |\n#                         |   no   |  yes   |  <--- class has explicitly defined __hash__\n# +=======+=======+=======+========+========+\n# | False | False | False |        |        | No __eq__, use the base class __hash__\n# +-------+-------+-------+--------+--------+\n# | False | False | True  |        |        | No __eq__, use the base class __hash__\n# +-------+-------+-------+--------+--------+\n# | False | True  | False | None   |        | <-- the default, not hashable\n# +-------+-------+-------+--------+--------+\n# | False | True  | True  | add    |        | Frozen, so hashable, allows override\n# +-------+-------+-------+--------+--------+\n# | True  | False | False | add    | raise  | Has no __eq__, but hashable\n# +-------+-------+-------+--------+--------+\n# | True  | False | True  | add    | raise  | Has no __eq__, but hashable\n# +-------+-------+-------+--------+--------+\n# | True  | True  | False | add    | raise  | Not frozen, but hashable\n# +-------+-------+-------+--------+--------+\n# | True  | True  | True  | add    | raise  | Frozen, so hashable\n# +=======+=======+=======+========+========+\n# For boxes that are blank, __hash__ is untouched and therefore\n# inherited from the base class.  If the base is object, then\n# id-based hashing is used.\n#\n# Note that a class may already have __hash__=None if it specified an\n# __eq__ method in the class body (not one that was created by\n# @dataclass).\n#\n# See _hash_action (below) for a coded version of this table.\n\n\n# Raised when an attempt is made to modify a frozen class.\nclass FrozenInstanceError(AttributeError): pass\n\n# A sentinel object for default values to signal that a default\n# factory will be used.  This is given a nice repr() which will appear\n# in the function signature of dataclasses' constructors.\nclass _HAS_DEFAULT_FACTORY_CLASS:\n    def __repr__(self):\n        return '<factory>'\n_HAS_DEFAULT_FACTORY = _HAS_DEFAULT_FACTORY_CLASS()\n\n# A sentinel object to detect if a parameter is supplied or not.  Use\n# a class to give it a better repr.\nclass _MISSING_TYPE:\n    pass\nMISSING = _MISSING_TYPE()\n\n# Since most per-field metadata will be unused, create an empty\n# read-only proxy that can be shared among all fields.\n_EMPTY_METADATA = types.MappingProxyType({})\n\n# Markers for the various kinds of fields and pseudo-fields.\nclass _FIELD_BASE:\n    def __init__(self, name):\n        self.name = name\n    def __repr__(self):\n        return self.name\n_FIELD = _FIELD_BASE('_FIELD')\n_FIELD_CLASSVAR = _FIELD_BASE('_FIELD_CLASSVAR')\n_FIELD_INITVAR = _FIELD_BASE('_FIELD_INITVAR')\n\n# The name of an attribute on the class where we store the Field\n# objects.  Also used to check if a class is a Data Class.\n_FIELDS = '__dataclass_fields__'\n\n# The name of an attribute on the class that stores the parameters to\n# @dataclass.\n_PARAMS = '__dataclass_params__'\n\n# The name of the function, that if it exists, is called at the end of\n# __init__.\n_POST_INIT_NAME = '__post_init__'\n\n# String regex that string annotations for ClassVar or InitVar must match.\n# Allows \"identifier.identifier[\" or \"identifier[\".\n# https://bugs.python.org/issue33453 for details.\n_MODULE_IDENTIFIER_RE = re.compile(r'^(?:\\s*(\\w+)\\s*\\.)?\\s*(\\w+)')\n\nclass _InitVarMeta(type):\n    def __getitem__(self, params):\n        return InitVar(params)\n\nclass InitVar(metaclass=_InitVarMeta):\n    __slots__ = ('type', )\n\n    def __init__(self, type):\n        self.type = type\n\n    def __repr__(self):\n        if isinstance(self.type, type):\n            type_name = self.type.__name__\n        else:\n            # typing objects, e.g. List[int]\n            type_name = repr(self.type)\n        return f'dataclasses.InitVar[{type_name}]'\n\n\n# Instances of Field are only ever created from within this module,\n# and only from the field() function, although Field instances are\n# exposed externally as (conceptually) read-only objects.\n#\n# name and type are filled in after the fact, not in __init__.\n# They're not known at the time this class is instantiated, but it's\n# convenient if they're available later.\n#\n# When cls._FIELDS is filled in with a list of Field objects, the name\n# and type fields will have been populated.\nclass Field:\n    __slots__ = ('name',\n                 'type',\n                 'default',\n                 'default_factory',\n                 'repr',\n                 'hash',\n                 'init',\n                 'compare',\n                 'metadata',\n                 '_field_type',  # Private: not to be used by user code.\n                 )\n\n    def __init__(self, default, default_factory, init, repr, hash, compare,\n                 metadata):\n        self.name = None\n        self.type = None\n        self.default = default\n        self.default_factory = default_factory\n        self.init = init\n        self.repr = repr\n        self.hash = hash\n        self.compare = compare\n        self.metadata = (_EMPTY_METADATA\n                         if metadata is None else\n                         types.MappingProxyType(metadata))\n        self._field_type = None\n\n    def __repr__(self):\n        return ('Field('\n                f'name={self.name!r},'\n                f'type={self.type!r},'\n                f'default={self.default!r},'\n                f'default_factory={self.default_factory!r},'\n                f'init={self.init!r},'\n                f'repr={self.repr!r},'\n                f'hash={self.hash!r},'\n                f'compare={self.compare!r},'\n                f'metadata={self.metadata!r},'\n                f'_field_type={self._field_type}'\n                ')')\n\n    # This is used to support the PEP 487 __set_name__ protocol in the\n    # case where we're using a field that contains a descriptor as a\n    # default value.  For details on __set_name__, see\n    # https://www.python.org/dev/peps/pep-0487/#implementation-details.\n    #\n    # Note that in _process_class, this Field object is overwritten\n    # with the default value, so the end result is a descriptor that\n    # had __set_name__ called on it at the right time.\n    def __set_name__(self, owner, name):\n        func = getattr(type(self.default), '__set_name__', None)\n        if func:\n            # There is a __set_name__ method on the descriptor, call\n            # it.\n            func(self.default, owner, name)\n\n\nclass _DataclassParams:\n    __slots__ = ('init',\n                 'repr',\n                 'eq',\n                 'order',\n                 'unsafe_hash',\n                 'frozen',\n                 )\n\n    def __init__(self, init, repr, eq, order, unsafe_hash, frozen):\n        self.init = init\n        self.repr = repr\n        self.eq = eq\n        self.order = order\n        self.unsafe_hash = unsafe_hash\n        self.frozen = frozen\n\n    def __repr__(self):\n        return ('_DataclassParams('\n                f'init={self.init!r},'\n                f'repr={self.repr!r},'\n                f'eq={self.eq!r},'\n                f'order={self.order!r},'\n                f'unsafe_hash={self.unsafe_hash!r},'\n                f'frozen={self.frozen!r}'\n                ')')\n\n\n# This function is used instead of exposing Field creation directly,\n# so that a type checker can be told (via overloads) that this is a\n# function whose type depends on its parameters.\ndef field(*, default=MISSING, default_factory=MISSING, init=True, repr=True,\n          hash=None, compare=True, metadata=None):\n    \"\"\"Return an object to identify dataclass fields.\n\n    default is the default value of the field.  default_factory is a\n    0-argument function called to initialize a field's value.  If init\n    is True, the field will be a parameter to the class's __init__()\n    function.  If repr is True, the field will be included in the\n    object's repr().  If hash is True, the field will be included in\n    the object's hash().  If compare is True, the field will be used\n    in comparison functions.  metadata, if specified, must be a\n    mapping which is stored but not otherwise examined by dataclass.\n\n    It is an error to specify both default and default_factory.\n    \"\"\"\n\n    if default is not MISSING and default_factory is not MISSING:\n        raise ValueError('cannot specify both default and default_factory')\n    return Field(default, default_factory, init, repr, hash, compare,\n                 metadata)\n\n\ndef _tuple_str(obj_name, fields):\n    # Return a string representing each field of obj_name as a tuple\n    # member.  So, if fields is ['x', 'y'] and obj_name is \"self\",\n    # return \"(self.x,self.y)\".\n\n    # Special case for the 0-tuple.\n    if not fields:\n        return '()'\n    # Note the trailing comma, needed if this turns out to be a 1-tuple.\n    return f'({\",\".join([f\"{obj_name}.{f.name}\" for f in fields])},)'\n\n\n# This function's logic is copied from \"recursive_repr\" function in\n# reprlib module to avoid dependency.\ndef _recursive_repr(user_function):\n    # Decorator to make a repr function return \"...\" for a recursive\n    # call.\n    repr_running = set()\n\n    @functools.wraps(user_function)\n    def wrapper(self):\n        key = id(self), _thread.get_ident()\n        if key in repr_running:\n            return '...'\n        repr_running.add(key)\n        try:\n            result = user_function(self)\n        finally:\n            repr_running.discard(key)\n        return result\n    return wrapper\n\n\ndef _create_fn(name, args, body, *, globals=None, locals=None,\n               return_type=MISSING):\n    # Note that we mutate locals when exec() is called.  Caller\n    # beware!  The only callers are internal to this module, so no\n    # worries about external callers.\n    if locals is None:\n        locals = {}\n    if 'BUILTINS' not in locals:\n        locals['BUILTINS'] = builtins\n    return_annotation = ''\n    if return_type is not MISSING:\n        locals['_return_type'] = return_type\n        return_annotation = '->_return_type'\n    args = ','.join(args)\n    body = '\\n'.join(f'  {b}' for b in body)\n\n    # Compute the text of the entire function.\n    txt = f' def {name}({args}){return_annotation}:\\n{body}'\n\n    local_vars = ', '.join(locals.keys())\n    txt = f\"def __create_fn__({local_vars}):\\n{txt}\\n return {name}\"\n\n    ns = {}\n    exec(txt, globals, ns)\n    return ns['__create_fn__'](**locals)\n\n\ndef _field_assign(frozen, name, value, self_name):\n    # If we're a frozen class, then assign to our fields in __init__\n    # via object.__setattr__.  Otherwise, just use a simple\n    # assignment.\n    #\n    # self_name is what \"self\" is called in this function: don't\n    # hard-code \"self\", since that might be a field name.\n    if frozen:\n        return f'BUILTINS.object.__setattr__({self_name},{name!r},{value})'\n    return f'{self_name}.{name}={value}'\n\n\ndef _field_init(f, frozen, globals, self_name):\n    # Return the text of the line in the body of __init__ that will\n    # initialize this field.\n\n    default_name = f'_dflt_{f.name}'\n    if f.default_factory is not MISSING:\n        if f.init:\n            # This field has a default factory.  If a parameter is\n            # given, use it.  If not, call the factory.\n            globals[default_name] = f.default_factory\n            value = (f'{default_name}() '\n                     f'if {f.name} is _HAS_DEFAULT_FACTORY '\n                     f'else {f.name}')\n        else:\n            # This is a field that's not in the __init__ params, but\n            # has a default factory function.  It needs to be\n            # initialized here by calling the factory function,\n            # because there's no other way to initialize it.\n\n            # For a field initialized with a default=defaultvalue, the\n            # class dict just has the default value\n            # (cls.fieldname=defaultvalue).  But that won't work for a\n            # default factory, the factory must be called in __init__\n            # and we must assign that to self.fieldname.  We can't\n            # fall back to the class dict's value, both because it's\n            # not set, and because it might be different per-class\n            # (which, after all, is why we have a factory function!).\n\n            globals[default_name] = f.default_factory\n            value = f'{default_name}()'\n    else:\n        # No default factory.\n        if f.init:\n            if f.default is MISSING:\n                # There's no default, just do an assignment.\n                value = f.name\n            elif f.default is not MISSING:\n                globals[default_name] = f.default\n                value = f.name\n        else:\n            # This field does not need initialization.  Signify that\n            # to the caller by returning None.\n            return None\n\n    # Only test this now, so that we can create variables for the\n    # default.  However, return None to signify that we're not going\n    # to actually do the assignment statement for InitVars.\n    if f._field_type is _FIELD_INITVAR:\n        return None\n\n    # Now, actually generate the field assignment.\n    return _field_assign(frozen, f.name, value, self_name)\n\n\ndef _init_param(f):\n    # Return the __init__ parameter string for this field.  For\n    # example, the equivalent of 'x:int=3' (except instead of 'int',\n    # reference a variable set to int, and instead of '3', reference a\n    # variable set to 3).\n    if f.default is MISSING and f.default_factory is MISSING:\n        # There's no default, and no default_factory, just output the\n        # variable name and type.\n        default = ''\n    elif f.default is not MISSING:\n        # There's a default, this will be the name that's used to look\n        # it up.\n        default = f'=_dflt_{f.name}'\n    elif f.default_factory is not MISSING:\n        # There's a factory function.  Set a marker.\n        default = '=_HAS_DEFAULT_FACTORY'\n    return f'{f.name}:_type_{f.name}{default}'\n\n\ndef _init_fn(fields, frozen, has_post_init, self_name, globals):\n    # fields contains both real fields and InitVar pseudo-fields.\n\n    # Make sure we don't have fields without defaults following fields\n    # with defaults.  This actually would be caught when exec-ing the\n    # function source code, but catching it here gives a better error\n    # message, and future-proofs us in case we build up the function\n    # using ast.\n    seen_default = False\n    for f in fields:\n        # Only consider fields in the __init__ call.\n        if f.init:\n            if not (f.default is MISSING and f.default_factory is MISSING):\n                seen_default = True\n            elif seen_default:\n                raise TypeError(f'non-default argument {f.name!r} '\n                                'follows default argument')\n\n    locals = {f'_type_{f.name}': f.type for f in fields}\n    locals.update({\n        'MISSING': MISSING,\n        '_HAS_DEFAULT_FACTORY': _HAS_DEFAULT_FACTORY,\n    })\n\n    body_lines = []\n    for f in fields:\n        line = _field_init(f, frozen, locals, self_name)\n        # line is None means that this field doesn't require\n        # initialization (it's a pseudo-field).  Just skip it.\n        if line:\n            body_lines.append(line)\n\n    # Does this class have a post-init function?\n    if has_post_init:\n        params_str = ','.join(f.name for f in fields\n                              if f._field_type is _FIELD_INITVAR)\n        body_lines.append(f'{self_name}.{_POST_INIT_NAME}({params_str})')\n\n    # If no body lines, use 'pass'.\n    if not body_lines:\n        body_lines = ['pass']\n\n    return _create_fn('__init__',\n                      [self_name] + [_init_param(f) for f in fields if f.init],\n                      body_lines,\n                      locals=locals,\n                      globals=globals,\n                      return_type=None)\n\n\ndef _repr_fn(fields, globals):\n    fn = _create_fn('__repr__',\n                    ('self',),\n                    ['return self.__class__.__qualname__ + f\"(' +\n                     ', '.join([f\"{f.name}={{self.{f.name}!r}}\"\n                                for f in fields]) +\n                     ')\"'],\n                     globals=globals)\n    return _recursive_repr(fn)\n\n\ndef _frozen_get_del_attr(cls, fields, globals):\n    locals = {'cls': cls,\n              'FrozenInstanceError': FrozenInstanceError}\n    if fields:\n        fields_str = '(' + ','.join(repr(f.name) for f in fields) + ',)'\n    else:\n        # Special case for the zero-length tuple.\n        fields_str = '()'\n    return (_create_fn('__setattr__',\n                      ('self', 'name', 'value'),\n                      (f'if type(self) is cls or name in {fields_str}:',\n                        ' raise FrozenInstanceError(f\"cannot assign to field {name!r}\")',\n                       f'super(cls, self).__setattr__(name, value)'),\n                       locals=locals,\n                       globals=globals),\n            _create_fn('__delattr__',\n                      ('self', 'name'),\n                      (f'if type(self) is cls or name in {fields_str}:',\n                        ' raise FrozenInstanceError(f\"cannot delete field {name!r}\")',\n                       f'super(cls, self).__delattr__(name)'),\n                       locals=locals,\n                       globals=globals),\n            )\n\n\ndef _cmp_fn(name, op, self_tuple, other_tuple, globals):\n    # Create a comparison function.  If the fields in the object are\n    # named 'x' and 'y', then self_tuple is the string\n    # '(self.x,self.y)' and other_tuple is the string\n    # '(other.x,other.y)'.\n\n    return _create_fn(name,\n                      ('self', 'other'),\n                      [ 'if other.__class__ is self.__class__:',\n                       f' return {self_tuple}{op}{other_tuple}',\n                        'return NotImplemented'],\n                      globals=globals)\n\n\ndef _hash_fn(fields, globals):\n    self_tuple = _tuple_str('self', fields)\n    return _create_fn('__hash__',\n                      ('self',),\n                      [f'return hash({self_tuple})'],\n                      globals=globals)\n\n\ndef _is_classvar(a_type, typing):\n    # This test uses a typing internal class, but it's the best way to\n    # test if this is a ClassVar.\n    return (a_type is typing.ClassVar\n            or (type(a_type) is typing._GenericAlias\n                and a_type.__origin__ is typing.ClassVar))\n\n\ndef _is_initvar(a_type, dataclasses):\n    # The module we're checking against is the module we're\n    # currently in (dataclasses.py).\n    return (a_type is dataclasses.InitVar\n            or type(a_type) is dataclasses.InitVar)\n\n\ndef _is_type(annotation, cls, a_module, a_type, is_type_predicate):\n    # Given a type annotation string, does it refer to a_type in\n    # a_module?  For example, when checking that annotation denotes a\n    # ClassVar, then a_module is typing, and a_type is\n    # typing.ClassVar.\n\n    # It's possible to look up a_module given a_type, but it involves\n    # looking in sys.modules (again!), and seems like a waste since\n    # the caller already knows a_module.\n\n    # - annotation is a string type annotation\n    # - cls is the class that this annotation was found in\n    # - a_module is the module we want to match\n    # - a_type is the type in that module we want to match\n    # - is_type_predicate is a function called with (obj, a_module)\n    #   that determines if obj is of the desired type.\n\n    # Since this test does not do a local namespace lookup (and\n    # instead only a module (global) lookup), there are some things it\n    # gets wrong.\n\n    # With string annotations, cv0 will be detected as a ClassVar:\n    #   CV = ClassVar\n    #   @dataclass\n    #   class C0:\n    #     cv0: CV\n\n    # But in this example cv1 will not be detected as a ClassVar:\n    #   @dataclass\n    #   class C1:\n    #     CV = ClassVar\n    #     cv1: CV\n\n    # In C1, the code in this function (_is_type) will look up \"CV\" in\n    # the module and not find it, so it will not consider cv1 as a\n    # ClassVar.  This is a fairly obscure corner case, and the best\n    # way to fix it would be to eval() the string \"CV\" with the\n    # correct global and local namespaces.  However that would involve\n    # a eval() penalty for every single field of every dataclass\n    # that's defined.  It was judged not worth it.\n\n    match = _MODULE_IDENTIFIER_RE.match(annotation)\n    if match:\n        ns = None\n        module_name = match.group(1)\n        if not module_name:\n            # No module name, assume the class's module did\n            # \"from dataclasses import InitVar\".\n            ns = sys.modules.get(cls.__module__).__dict__\n        else:\n            # Look up module_name in the class's module.\n            module = sys.modules.get(cls.__module__)\n            if module and module.__dict__.get(module_name) is a_module:\n                ns = sys.modules.get(a_type.__module__).__dict__\n        if ns and is_type_predicate(ns.get(match.group(2)), a_module):\n            return True\n    return False\n\n\ndef _get_field(cls, a_name, a_type):\n    # Return a Field object for this field name and type.  ClassVars\n    # and InitVars are also returned, but marked as such (see\n    # f._field_type).\n\n    # If the default value isn't derived from Field, then it's only a\n    # normal default value.  Convert it to a Field().\n    default = getattr(cls, a_name, MISSING)\n    if isinstance(default, Field):\n        f = default\n    else:\n        if isinstance(default, types.MemberDescriptorType):\n            # This is a field in __slots__, so it has no default value.\n            default = MISSING\n        f = field(default=default)\n\n    # Only at this point do we know the name and the type.  Set them.\n    f.name = a_name\n    f.type = a_type\n\n    # Assume it's a normal field until proven otherwise.  We're next\n    # going to decide if it's a ClassVar or InitVar, everything else\n    # is just a normal field.\n    f._field_type = _FIELD\n\n    # In addition to checking for actual types here, also check for\n    # string annotations.  get_type_hints() won't always work for us\n    # (see https://github.com/python/typing/issues/508 for example),\n    # plus it's expensive and would require an eval for every stirng\n    # annotation.  So, make a best effort to see if this is a ClassVar\n    # or InitVar using regex's and checking that the thing referenced\n    # is actually of the correct type.\n\n    # For the complete discussion, see https://bugs.python.org/issue33453\n\n    # If typing has not been imported, then it's impossible for any\n    # annotation to be a ClassVar.  So, only look for ClassVar if\n    # typing has been imported by any module (not necessarily cls's\n    # module).\n    typing = sys.modules.get('typing')\n    if typing:\n        if (_is_classvar(a_type, typing)\n            or (isinstance(f.type, str)\n                and _is_type(f.type, cls, typing, typing.ClassVar,\n                             _is_classvar))):\n            f._field_type = _FIELD_CLASSVAR\n\n    # If the type is InitVar, or if it's a matching string annotation,\n    # then it's an InitVar.\n    if f._field_type is _FIELD:\n        # The module we're checking against is the module we're\n        # currently in (dataclasses.py).\n        dataclasses = sys.modules[__name__]\n        if (_is_initvar(a_type, dataclasses)\n            or (isinstance(f.type, str)\n                and _is_type(f.type, cls, dataclasses, dataclasses.InitVar,\n                             _is_initvar))):\n            f._field_type = _FIELD_INITVAR\n\n    # Validations for individual fields.  This is delayed until now,\n    # instead of in the Field() constructor, since only here do we\n    # know the field name, which allows for better error reporting.\n\n    # Special restrictions for ClassVar and InitVar.\n    if f._field_type in (_FIELD_CLASSVAR, _FIELD_INITVAR):\n        if f.default_factory is not MISSING:\n            raise TypeError(f'field {f.name} cannot have a '\n                            'default factory')\n        # Should I check for other field settings? default_factory\n        # seems the most serious to check for.  Maybe add others.  For\n        # example, how about init=False (or really,\n        # init=<not-the-default-init-value>)?  It makes no sense for\n        # ClassVar and InitVar to specify init=<anything>.\n\n    # For real fields, disallow mutable defaults for known types.\n    if f._field_type is _FIELD and isinstance(f.default, (list, dict, set)):\n        raise ValueError(f'mutable default {type(f.default)} for field '\n                         f'{f.name} is not allowed: use default_factory')\n\n    return f\n\n\ndef _set_new_attribute(cls, name, value):\n    # Never overwrites an existing attribute.  Returns True if the\n    # attribute already exists.\n    if name in cls.__dict__:\n        return True\n    setattr(cls, name, value)\n    return False\n\n\n# Decide if/how we're going to create a hash function.  Key is\n# (unsafe_hash, eq, frozen, does-hash-exist).  Value is the action to\n# take.  The common case is to do nothing, so instead of providing a\n# function that is a no-op, use None to signify that.\n\ndef _hash_set_none(cls, fields, globals):\n    return None\n\ndef _hash_add(cls, fields, globals):\n    flds = [f for f in fields if (f.compare if f.hash is None else f.hash)]\n    return _hash_fn(flds, globals)\n\ndef _hash_exception(cls, fields, globals):\n    # Raise an exception.\n    raise TypeError(f'Cannot overwrite attribute __hash__ '\n                    f'in class {cls.__name__}')\n\n#\n#                +-------------------------------------- unsafe_hash?\n#                |      +------------------------------- eq?\n#                |      |      +------------------------ frozen?\n#                |      |      |      +----------------  has-explicit-hash?\n#                |      |      |      |\n#                |      |      |      |        +-------  action\n#                |      |      |      |        |\n#                v      v      v      v        v\n_hash_action = {(False, False, False, False): None,\n                (False, False, False, True ): None,\n                (False, False, True,  False): None,\n                (False, False, True,  True ): None,\n                (False, True,  False, False): _hash_set_none,\n                (False, True,  False, True ): None,\n                (False, True,  True,  False): _hash_add,\n                (False, True,  True,  True ): None,\n                (True,  False, False, False): _hash_add,\n                (True,  False, False, True ): _hash_exception,\n                (True,  False, True,  False): _hash_add,\n                (True,  False, True,  True ): _hash_exception,\n                (True,  True,  False, False): _hash_add,\n                (True,  True,  False, True ): _hash_exception,\n                (True,  True,  True,  False): _hash_add,\n                (True,  True,  True,  True ): _hash_exception,\n                }\n# See https://bugs.python.org/issue32929#msg312829 for an if-statement\n# version of this table.\n\n\ndef _process_class(cls, init, repr, eq, order, unsafe_hash, frozen):\n    # Now that dicts retain insertion order, there's no reason to use\n    # an ordered dict.  I am leveraging that ordering here, because\n    # derived class fields overwrite base class fields, but the order\n    # is defined by the base class, which is found first.\n    fields = {}\n\n    if cls.__module__ in sys.modules:\n        globals = sys.modules[cls.__module__].__dict__\n    else:\n        # Theoretically this can happen if someone writes\n        # a custom string to cls.__module__.  In which case\n        # such dataclass won't be fully introspectable\n        # (w.r.t. typing.get_type_hints) but will still function\n        # correctly.\n        globals = {}\n\n    setattr(cls, _PARAMS, _DataclassParams(init, repr, eq, order,\n                                           unsafe_hash, frozen))\n\n    # Find our base classes in reverse MRO order, and exclude\n    # ourselves.  In reversed order so that more derived classes\n    # override earlier field definitions in base classes.  As long as\n    # we're iterating over them, see if any are frozen.\n    any_frozen_base = False\n    has_dataclass_bases = False\n    for b in cls.__mro__[-1:0:-1]:\n        # Only process classes that have been processed by our\n        # decorator.  That is, they have a _FIELDS attribute.\n        base_fields = getattr(b, _FIELDS, None)\n        if base_fields:\n            has_dataclass_bases = True\n            for f in base_fields.values():\n                fields[f.name] = f\n            if getattr(b, _PARAMS).frozen:\n                any_frozen_base = True\n\n    # Annotations that are defined in this class (not in base\n    # classes).  If __annotations__ isn't present, then this class\n    # adds no new annotations.  We use this to compute fields that are\n    # added by this class.\n    #\n    # Fields are found from cls_annotations, which is guaranteed to be\n    # ordered.  Default values are from class attributes, if a field\n    # has a default.  If the default value is a Field(), then it\n    # contains additional info beyond (and possibly including) the\n    # actual default value.  Pseudo-fields ClassVars and InitVars are\n    # included, despite the fact that they're not real fields.  That's\n    # dealt with later.\n    cls_annotations = cls.__dict__.get('__annotations__', {})\n\n    # Now find fields in our class.  While doing so, validate some\n    # things, and set the default values (as class attributes) where\n    # we can.\n    cls_fields = [_get_field(cls, name, type)\n                  for name, type in cls_annotations.items()]\n    for f in cls_fields:\n        fields[f.name] = f\n\n        # If the class attribute (which is the default value for this\n        # field) exists and is of type 'Field', replace it with the\n        # real default.  This is so that normal class introspection\n        # sees a real default value, not a Field.\n        if isinstance(getattr(cls, f.name, None), Field):\n            if f.default is MISSING:\n                # If there's no default, delete the class attribute.\n                # This happens if we specify field(repr=False), for\n                # example (that is, we specified a field object, but\n                # no default value).  Also if we're using a default\n                # factory.  The class attribute should not be set at\n                # all in the post-processed class.\n                delattr(cls, f.name)\n            else:\n                setattr(cls, f.name, f.default)\n\n    # Do we have any Field members that don't also have annotations?\n    for name, value in cls.__dict__.items():\n        if isinstance(value, Field) and not name in cls_annotations:\n            raise TypeError(f'{name!r} is a field but has no type annotation')\n\n    # Check rules that apply if we are derived from any dataclasses.\n    if has_dataclass_bases:\n        # Raise an exception if any of our bases are frozen, but we're not.\n        if any_frozen_base and not frozen:\n            raise TypeError('cannot inherit non-frozen dataclass from a '\n                            'frozen one')\n\n        # Raise an exception if we're frozen, but none of our bases are.\n        if not any_frozen_base and frozen:\n            raise TypeError('cannot inherit frozen dataclass from a '\n                            'non-frozen one')\n\n    # Remember all of the fields on our class (including bases).  This\n    # also marks this class as being a dataclass.\n    setattr(cls, _FIELDS, fields)\n\n    # Was this class defined with an explicit __hash__?  Note that if\n    # __eq__ is defined in this class, then python will automatically\n    # set __hash__ to None.  This is a heuristic, as it's possible\n    # that such a __hash__ == None was not auto-generated, but it\n    # close enough.\n    class_hash = cls.__dict__.get('__hash__', MISSING)\n    has_explicit_hash = not (class_hash is MISSING or\n                             (class_hash is None and '__eq__' in cls.__dict__))\n\n    # If we're generating ordering methods, we must be generating the\n    # eq methods.\n    if order and not eq:\n        raise ValueError('eq must be true if order is true')\n\n    if init:\n        # Does this class have a post-init function?\n        has_post_init = hasattr(cls, _POST_INIT_NAME)\n\n        # Include InitVars and regular fields (so, not ClassVars).\n        flds = [f for f in fields.values()\n                if f._field_type in (_FIELD, _FIELD_INITVAR)]\n        _set_new_attribute(cls, '__init__',\n                           _init_fn(flds,\n                                    frozen,\n                                    has_post_init,\n                                    # The name to use for the \"self\"\n                                    # param in __init__.  Use \"self\"\n                                    # if possible.\n                                    '__dataclass_self__' if 'self' in fields\n                                            else 'self',\n                                    globals,\n                          ))\n\n    # Get the fields as a list, and include only real fields.  This is\n    # used in all of the following methods.\n    field_list = [f for f in fields.values() if f._field_type is _FIELD]\n\n    if repr:\n        flds = [f for f in field_list if f.repr]\n        _set_new_attribute(cls, '__repr__', _repr_fn(flds, globals))\n\n    if eq:\n        # Create _eq__ method.  There's no need for a __ne__ method,\n        # since python will call __eq__ and negate it.\n        flds = [f for f in field_list if f.compare]\n        self_tuple = _tuple_str('self', flds)\n        other_tuple = _tuple_str('other', flds)\n        _set_new_attribute(cls, '__eq__',\n                           _cmp_fn('__eq__', '==',\n                                   self_tuple, other_tuple,\n                                   globals=globals))\n\n    if order:\n        # Create and set the ordering methods.\n        flds = [f for f in field_list if f.compare]\n        self_tuple = _tuple_str('self', flds)\n        other_tuple = _tuple_str('other', flds)\n        for name, op in [('__lt__', '<'),\n                         ('__le__', '<='),\n                         ('__gt__', '>'),\n                         ('__ge__', '>='),\n                         ]:\n            if _set_new_attribute(cls, name,\n                                  _cmp_fn(name, op, self_tuple, other_tuple,\n                                          globals=globals)):\n                raise TypeError(f'Cannot overwrite attribute {name} '\n                                f'in class {cls.__name__}. Consider using '\n                                'functools.total_ordering')\n\n    if frozen:\n        for fn in _frozen_get_del_attr(cls, field_list, globals):\n            if _set_new_attribute(cls, fn.__name__, fn):\n                raise TypeError(f'Cannot overwrite attribute {fn.__name__} '\n                                f'in class {cls.__name__}')\n\n    # Decide if/how we're going to create a hash function.\n    hash_action = _hash_action[bool(unsafe_hash),\n                               bool(eq),\n                               bool(frozen),\n                               has_explicit_hash]\n    if hash_action:\n        # No need to call _set_new_attribute here, since by the time\n        # we're here the overwriting is unconditional.\n        cls.__hash__ = hash_action(cls, field_list, globals)\n\n    if not getattr(cls, '__doc__'):\n        # Create a class doc-string.\n        cls.__doc__ = (cls.__name__ +\n                       str(inspect.signature(cls)).replace(' -> None', ''))\n\n    return cls\n\n\ndef dataclass(cls=None, /, *, init=True, repr=True, eq=True, order=False,\n              unsafe_hash=False, frozen=False):\n    \"\"\"Returns the same class as was passed in, with dunder methods\n    added based on the fields defined in the class.\n\n    Examines PEP 526 __annotations__ to determine fields.\n\n    If init is true, an __init__() method is added to the class. If\n    repr is true, a __repr__() method is added. If order is true, rich\n    comparison dunder methods are added. If unsafe_hash is true, a\n    __hash__() method function is added. If frozen is true, fields may\n    not be assigned to after instance creation.\n    \"\"\"\n\n    def wrap(cls):\n        return _process_class(cls, init, repr, eq, order, unsafe_hash, frozen)\n\n    # See if we're being called as @dataclass or @dataclass().\n    if cls is None:\n        # We're called with parens.\n        return wrap\n\n    # We're called as @dataclass without parens.\n    return wrap(cls)\n\n\ndef fields(class_or_instance):\n    \"\"\"Return a tuple describing the fields of this dataclass.\n\n    Accepts a dataclass or an instance of one. Tuple elements are of\n    type Field.\n    \"\"\"\n\n    # Might it be worth caching this, per class?\n    try:\n        fields = getattr(class_or_instance, _FIELDS)\n    except AttributeError:\n        raise TypeError('must be called with a dataclass type or instance')\n\n    # Exclude pseudo-fields.  Note that fields is sorted by insertion\n    # order, so the order of the tuple is as the fields were defined.\n    return tuple(f for f in fields.values() if f._field_type is _FIELD)\n\n\ndef _is_dataclass_instance(obj):\n    \"\"\"Returns True if obj is an instance of a dataclass.\"\"\"\n    return hasattr(type(obj), _FIELDS)\n\n\ndef is_dataclass(obj):\n    \"\"\"Returns True if obj is a dataclass or an instance of a\n    dataclass.\"\"\"\n    cls = obj if isinstance(obj, type) else type(obj)\n    return hasattr(cls, _FIELDS)\n\n\ndef asdict(obj, *, dict_factory=dict):\n    \"\"\"Return the fields of a dataclass instance as a new dictionary mapping\n    field names to field values.\n\n    Example usage:\n\n      @dataclass\n      class C:\n          x: int\n          y: int\n\n      c = C(1, 2)\n      assert asdict(c) == {'x': 1, 'y': 2}\n\n    If given, 'dict_factory' will be used instead of built-in dict.\n    The function applies recursively to field values that are\n    dataclass instances. This will also look into built-in containers:\n    tuples, lists, and dicts.\n    \"\"\"\n    if not _is_dataclass_instance(obj):\n        raise TypeError(\"asdict() should be called on dataclass instances\")\n    return _asdict_inner(obj, dict_factory)\n\n\ndef _asdict_inner(obj, dict_factory):\n    if _is_dataclass_instance(obj):\n        result = []\n        for f in fields(obj):\n            value = _asdict_inner(getattr(obj, f.name), dict_factory)\n            result.append((f.name, value))\n        return dict_factory(result)\n    elif isinstance(obj, tuple) and hasattr(obj, '_fields'):\n        # obj is a namedtuple.  Recurse into it, but the returned\n        # object is another namedtuple of the same type.  This is\n        # similar to how other list- or tuple-derived classes are\n        # treated (see below), but we just need to create them\n        # differently because a namedtuple's __init__ needs to be\n        # called differently (see bpo-34363).\n\n        # I'm not using namedtuple's _asdict()\n        # method, because:\n        # - it does not recurse in to the namedtuple fields and\n        #   convert them to dicts (using dict_factory).\n        # - I don't actually want to return a dict here.  The main\n        #   use case here is json.dumps, and it handles converting\n        #   namedtuples to lists.  Admittedly we're losing some\n        #   information here when we produce a json list instead of a\n        #   dict.  Note that if we returned dicts here instead of\n        #   namedtuples, we could no longer call asdict() on a data\n        #   structure where a namedtuple was used as a dict key.\n\n        return type(obj)(*[_asdict_inner(v, dict_factory) for v in obj])\n    elif isinstance(obj, (list, tuple)):\n        # Assume we can create an object of this type by passing in a\n        # generator (which is not true for namedtuples, handled\n        # above).\n        return type(obj)(_asdict_inner(v, dict_factory) for v in obj)\n    elif isinstance(obj, dict):\n        return type(obj)((_asdict_inner(k, dict_factory),\n                          _asdict_inner(v, dict_factory))\n                         for k, v in obj.items())\n    else:\n        return copy.deepcopy(obj)\n\n\ndef astuple(obj, *, tuple_factory=tuple):\n    \"\"\"Return the fields of a dataclass instance as a new tuple of field values.\n\n    Example usage::\n\n      @dataclass\n      class C:\n          x: int\n          y: int\n\n    c = C(1, 2)\n    assert astuple(c) == (1, 2)\n\n    If given, 'tuple_factory' will be used instead of built-in tuple.\n    The function applies recursively to field values that are\n    dataclass instances. This will also look into built-in containers:\n    tuples, lists, and dicts.\n    \"\"\"\n\n    if not _is_dataclass_instance(obj):\n        raise TypeError(\"astuple() should be called on dataclass instances\")\n    return _astuple_inner(obj, tuple_factory)\n\n\ndef _astuple_inner(obj, tuple_factory):\n    if _is_dataclass_instance(obj):\n        result = []\n        for f in fields(obj):\n            value = _astuple_inner(getattr(obj, f.name), tuple_factory)\n            result.append(value)\n        return tuple_factory(result)\n    elif isinstance(obj, tuple) and hasattr(obj, '_fields'):\n        # obj is a namedtuple.  Recurse into it, but the returned\n        # object is another namedtuple of the same type.  This is\n        # similar to how other list- or tuple-derived classes are\n        # treated (see below), but we just need to create them\n        # differently because a namedtuple's __init__ needs to be\n        # called differently (see bpo-34363).\n        return type(obj)(*[_astuple_inner(v, tuple_factory) for v in obj])\n    elif isinstance(obj, (list, tuple)):\n        # Assume we can create an object of this type by passing in a\n        # generator (which is not true for namedtuples, handled\n        # above).\n        return type(obj)(_astuple_inner(v, tuple_factory) for v in obj)\n    elif isinstance(obj, dict):\n        return type(obj)((_astuple_inner(k, tuple_factory), _astuple_inner(v, tuple_factory))\n                          for k, v in obj.items())\n    else:\n        return copy.deepcopy(obj)\n\n\ndef make_dataclass(cls_name, fields, *, bases=(), namespace=None, init=True,\n                   repr=True, eq=True, order=False, unsafe_hash=False,\n                   frozen=False):\n    \"\"\"Return a new dynamically created dataclass.\n\n    The dataclass name will be 'cls_name'.  'fields' is an iterable\n    of either (name), (name, type) or (name, type, Field) objects. If type is\n    omitted, use the string 'typing.Any'.  Field objects are created by\n    the equivalent of calling 'field(name, type [, Field-info])'.\n\n      C = make_dataclass('C', ['x', ('y', int), ('z', int, field(init=False))], bases=(Base,))\n\n    is equivalent to:\n\n      @dataclass\n      class C(Base):\n          x: 'typing.Any'\n          y: int\n          z: int = field(init=False)\n\n    For the bases and namespace parameters, see the builtin type() function.\n\n    The parameters init, repr, eq, order, unsafe_hash, and frozen are passed to\n    dataclass().\n    \"\"\"\n\n    if namespace is None:\n        namespace = {}\n    else:\n        # Copy namespace since we're going to mutate it.\n        namespace = namespace.copy()\n\n    # While we're looking through the field names, validate that they\n    # are identifiers, are not keywords, and not duplicates.\n    seen = set()\n    anns = {}\n    for item in fields:\n        if isinstance(item, str):\n            name = item\n            tp = 'typing.Any'\n        elif len(item) == 2:\n            name, tp, = item\n        elif len(item) == 3:\n            name, tp, spec = item\n            namespace[name] = spec\n        else:\n            raise TypeError(f'Invalid field: {item!r}')\n\n        if not isinstance(name, str) or not name.isidentifier():\n            raise TypeError(f'Field names must be valid identifiers: {name!r}')\n        if keyword.iskeyword(name):\n            raise TypeError(f'Field names must not be keywords: {name!r}')\n        if name in seen:\n            raise TypeError(f'Field name duplicated: {name!r}')\n\n        seen.add(name)\n        anns[name] = tp\n\n    namespace['__annotations__'] = anns\n    # We use `types.new_class()` instead of simply `type()` to allow dynamic creation\n    # of generic dataclassses.\n    cls = types.new_class(cls_name, bases, {}, lambda ns: ns.update(namespace))\n    return dataclass(cls, init=init, repr=repr, eq=eq, order=order,\n                     unsafe_hash=unsafe_hash, frozen=frozen)\n\n\ndef replace(*args, **changes):\n    \"\"\"Return a new object replacing specified fields with new values.\n\n    This is especially useful for frozen classes.  Example usage:\n\n      @dataclass(frozen=True)\n      class C:\n          x: int\n          y: int\n\n      c = C(1, 2)\n      c1 = replace(c, x=3)\n      assert c1.x == 3 and c1.y == 2\n      \"\"\"\n    if len(args) > 1:\n        raise TypeError(f'replace() takes 1 positional argument but {len(args)} were given')\n    if args:\n        obj, = args\n    elif 'obj' in changes:\n        obj = changes.pop('obj')\n        import warnings\n        warnings.warn(\"Passing 'obj' as keyword argument is deprecated\",\n                      DeprecationWarning, stacklevel=2)\n    else:\n        raise TypeError(\"replace() missing 1 required positional argument: 'obj'\")\n\n    # We're going to mutate 'changes', but that's okay because it's a\n    # new dict, even if called with 'replace(obj, **my_changes)'.\n\n    if not _is_dataclass_instance(obj):\n        raise TypeError(\"replace() should be called on dataclass instances\")\n\n    # It's an error to have init=False fields in 'changes'.\n    # If a field is not in 'changes', read its value from the provided obj.\n\n    for f in getattr(obj, _FIELDS).values():\n        # Only consider normal fields or InitVars.\n        if f._field_type is _FIELD_CLASSVAR:\n            continue\n\n        if not f.init:\n            # Error if this field is specified in changes.\n            if f.name in changes:\n                raise ValueError(f'field {f.name} is declared with '\n                                 'init=False, it cannot be specified with '\n                                 'replace()')\n            continue\n\n        if f.name not in changes:\n            if f._field_type is _FIELD_INITVAR:\n                raise ValueError(f\"InitVar {f.name!r} \"\n                                 'must be specified with replace()')\n            changes[f.name] = getattr(obj, f.name)\n\n    # Create the new object, which calls __init__() and\n    # __post_init__() (if defined), using all of the init fields we've\n    # added and/or left in 'changes'.  If there are values supplied in\n    # changes that aren't fields, this will correctly raise a\n    # TypeError.\n    return obj.__class__(**changes)\nreplace.__text_signature__ = '(obj, /, **kwargs)'\n"
  },
  {
    "path": "rd/usr/lib/python3.8/datetime.py",
    "content": "\"\"\"Concrete date/time and related types.\n\nSee http://www.iana.org/time-zones/repository/tz-link.html for\ntime zone and DST data sources.\n\"\"\"\n\nimport time as _time\nimport math as _math\nimport sys\n\ndef _cmp(x, y):\n    return 0 if x == y else 1 if x > y else -1\n\nMINYEAR = 1\nMAXYEAR = 9999\n_MAXORDINAL = 3652059  # date.max.toordinal()\n\n# Utility functions, adapted from Python's Demo/classes/Dates.py, which\n# also assumes the current Gregorian calendar indefinitely extended in\n# both directions.  Difference:  Dates.py calls January 1 of year 0 day\n# number 1.  The code here calls January 1 of year 1 day number 1.  This is\n# to match the definition of the \"proleptic Gregorian\" calendar in Dershowitz\n# and Reingold's \"Calendrical Calculations\", where it's the base calendar\n# for all computations.  See the book for algorithms for converting between\n# proleptic Gregorian ordinals and many other calendar systems.\n\n# -1 is a placeholder for indexing purposes.\n_DAYS_IN_MONTH = [-1, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]\n\n_DAYS_BEFORE_MONTH = [-1]  # -1 is a placeholder for indexing purposes.\ndbm = 0\nfor dim in _DAYS_IN_MONTH[1:]:\n    _DAYS_BEFORE_MONTH.append(dbm)\n    dbm += dim\ndel dbm, dim\n\ndef _is_leap(year):\n    \"year -> 1 if leap year, else 0.\"\n    return year % 4 == 0 and (year % 100 != 0 or year % 400 == 0)\n\ndef _days_before_year(year):\n    \"year -> number of days before January 1st of year.\"\n    y = year - 1\n    return y*365 + y//4 - y//100 + y//400\n\ndef _days_in_month(year, month):\n    \"year, month -> number of days in that month in that year.\"\n    assert 1 <= month <= 12, month\n    if month == 2 and _is_leap(year):\n        return 29\n    return _DAYS_IN_MONTH[month]\n\ndef _days_before_month(year, month):\n    \"year, month -> number of days in year preceding first day of month.\"\n    assert 1 <= month <= 12, 'month must be in 1..12'\n    return _DAYS_BEFORE_MONTH[month] + (month > 2 and _is_leap(year))\n\ndef _ymd2ord(year, month, day):\n    \"year, month, day -> ordinal, considering 01-Jan-0001 as day 1.\"\n    assert 1 <= month <= 12, 'month must be in 1..12'\n    dim = _days_in_month(year, month)\n    assert 1 <= day <= dim, ('day must be in 1..%d' % dim)\n    return (_days_before_year(year) +\n            _days_before_month(year, month) +\n            day)\n\n_DI400Y = _days_before_year(401)    # number of days in 400 years\n_DI100Y = _days_before_year(101)    #    \"    \"   \"   \" 100   \"\n_DI4Y   = _days_before_year(5)      #    \"    \"   \"   \"   4   \"\n\n# A 4-year cycle has an extra leap day over what we'd get from pasting\n# together 4 single years.\nassert _DI4Y == 4 * 365 + 1\n\n# Similarly, a 400-year cycle has an extra leap day over what we'd get from\n# pasting together 4 100-year cycles.\nassert _DI400Y == 4 * _DI100Y + 1\n\n# OTOH, a 100-year cycle has one fewer leap day than we'd get from\n# pasting together 25 4-year cycles.\nassert _DI100Y == 25 * _DI4Y - 1\n\ndef _ord2ymd(n):\n    \"ordinal -> (year, month, day), considering 01-Jan-0001 as day 1.\"\n\n    # n is a 1-based index, starting at 1-Jan-1.  The pattern of leap years\n    # repeats exactly every 400 years.  The basic strategy is to find the\n    # closest 400-year boundary at or before n, then work with the offset\n    # from that boundary to n.  Life is much clearer if we subtract 1 from\n    # n first -- then the values of n at 400-year boundaries are exactly\n    # those divisible by _DI400Y:\n    #\n    #     D  M   Y            n              n-1\n    #     -- --- ----        ----------     ----------------\n    #     31 Dec -400        -_DI400Y       -_DI400Y -1\n    #      1 Jan -399         -_DI400Y +1   -_DI400Y      400-year boundary\n    #     ...\n    #     30 Dec  000        -1             -2\n    #     31 Dec  000         0             -1\n    #      1 Jan  001         1              0            400-year boundary\n    #      2 Jan  001         2              1\n    #      3 Jan  001         3              2\n    #     ...\n    #     31 Dec  400         _DI400Y        _DI400Y -1\n    #      1 Jan  401         _DI400Y +1     _DI400Y      400-year boundary\n    n -= 1\n    n400, n = divmod(n, _DI400Y)\n    year = n400 * 400 + 1   # ..., -399, 1, 401, ...\n\n    # Now n is the (non-negative) offset, in days, from January 1 of year, to\n    # the desired date.  Now compute how many 100-year cycles precede n.\n    # Note that it's possible for n100 to equal 4!  In that case 4 full\n    # 100-year cycles precede the desired day, which implies the desired\n    # day is December 31 at the end of a 400-year cycle.\n    n100, n = divmod(n, _DI100Y)\n\n    # Now compute how many 4-year cycles precede it.\n    n4, n = divmod(n, _DI4Y)\n\n    # And now how many single years.  Again n1 can be 4, and again meaning\n    # that the desired day is December 31 at the end of the 4-year cycle.\n    n1, n = divmod(n, 365)\n\n    year += n100 * 100 + n4 * 4 + n1\n    if n1 == 4 or n100 == 4:\n        assert n == 0\n        return year-1, 12, 31\n\n    # Now the year is correct, and n is the offset from January 1.  We find\n    # the month via an estimate that's either exact or one too large.\n    leapyear = n1 == 3 and (n4 != 24 or n100 == 3)\n    assert leapyear == _is_leap(year)\n    month = (n + 50) >> 5\n    preceding = _DAYS_BEFORE_MONTH[month] + (month > 2 and leapyear)\n    if preceding > n:  # estimate is too large\n        month -= 1\n        preceding -= _DAYS_IN_MONTH[month] + (month == 2 and leapyear)\n    n -= preceding\n    assert 0 <= n < _days_in_month(year, month)\n\n    # Now the year and month are correct, and n is the offset from the\n    # start of that month:  we're done!\n    return year, month, n+1\n\n# Month and day names.  For localized versions, see the calendar module.\n_MONTHNAMES = [None, \"Jan\", \"Feb\", \"Mar\", \"Apr\", \"May\", \"Jun\",\n                     \"Jul\", \"Aug\", \"Sep\", \"Oct\", \"Nov\", \"Dec\"]\n_DAYNAMES = [None, \"Mon\", \"Tue\", \"Wed\", \"Thu\", \"Fri\", \"Sat\", \"Sun\"]\n\n\ndef _build_struct_time(y, m, d, hh, mm, ss, dstflag):\n    wday = (_ymd2ord(y, m, d) + 6) % 7\n    dnum = _days_before_month(y, m) + d\n    return _time.struct_time((y, m, d, hh, mm, ss, wday, dnum, dstflag))\n\ndef _format_time(hh, mm, ss, us, timespec='auto'):\n    specs = {\n        'hours': '{:02d}',\n        'minutes': '{:02d}:{:02d}',\n        'seconds': '{:02d}:{:02d}:{:02d}',\n        'milliseconds': '{:02d}:{:02d}:{:02d}.{:03d}',\n        'microseconds': '{:02d}:{:02d}:{:02d}.{:06d}'\n    }\n\n    if timespec == 'auto':\n        # Skip trailing microseconds when us==0.\n        timespec = 'microseconds' if us else 'seconds'\n    elif timespec == 'milliseconds':\n        us //= 1000\n    try:\n        fmt = specs[timespec]\n    except KeyError:\n        raise ValueError('Unknown timespec value')\n    else:\n        return fmt.format(hh, mm, ss, us)\n\ndef _format_offset(off):\n    s = ''\n    if off is not None:\n        if off.days < 0:\n            sign = \"-\"\n            off = -off\n        else:\n            sign = \"+\"\n        hh, mm = divmod(off, timedelta(hours=1))\n        mm, ss = divmod(mm, timedelta(minutes=1))\n        s += \"%s%02d:%02d\" % (sign, hh, mm)\n        if ss or ss.microseconds:\n            s += \":%02d\" % ss.seconds\n\n            if ss.microseconds:\n                s += '.%06d' % ss.microseconds\n    return s\n\n# Correctly substitute for %z and %Z escapes in strftime formats.\ndef _wrap_strftime(object, format, timetuple):\n    # Don't call utcoffset() or tzname() unless actually needed.\n    freplace = None  # the string to use for %f\n    zreplace = None  # the string to use for %z\n    Zreplace = None  # the string to use for %Z\n\n    # Scan format for %z and %Z escapes, replacing as needed.\n    newformat = []\n    push = newformat.append\n    i, n = 0, len(format)\n    while i < n:\n        ch = format[i]\n        i += 1\n        if ch == '%':\n            if i < n:\n                ch = format[i]\n                i += 1\n                if ch == 'f':\n                    if freplace is None:\n                        freplace = '%06d' % getattr(object,\n                                                    'microsecond', 0)\n                    newformat.append(freplace)\n                elif ch == 'z':\n                    if zreplace is None:\n                        zreplace = \"\"\n                        if hasattr(object, \"utcoffset\"):\n                            offset = object.utcoffset()\n                            if offset is not None:\n                                sign = '+'\n                                if offset.days < 0:\n                                    offset = -offset\n                                    sign = '-'\n                                h, rest = divmod(offset, timedelta(hours=1))\n                                m, rest = divmod(rest, timedelta(minutes=1))\n                                s = rest.seconds\n                                u = offset.microseconds\n                                if u:\n                                    zreplace = '%c%02d%02d%02d.%06d' % (sign, h, m, s, u)\n                                elif s:\n                                    zreplace = '%c%02d%02d%02d' % (sign, h, m, s)\n                                else:\n                                    zreplace = '%c%02d%02d' % (sign, h, m)\n                    assert '%' not in zreplace\n                    newformat.append(zreplace)\n                elif ch == 'Z':\n                    if Zreplace is None:\n                        Zreplace = \"\"\n                        if hasattr(object, \"tzname\"):\n                            s = object.tzname()\n                            if s is not None:\n                                # strftime is going to have at this: escape %\n                                Zreplace = s.replace('%', '%%')\n                    newformat.append(Zreplace)\n                else:\n                    push('%')\n                    push(ch)\n            else:\n                push('%')\n        else:\n            push(ch)\n    newformat = \"\".join(newformat)\n    return _time.strftime(newformat, timetuple)\n\n# Helpers for parsing the result of isoformat()\ndef _parse_isoformat_date(dtstr):\n    # It is assumed that this function will only be called with a\n    # string of length exactly 10, and (though this is not used) ASCII-only\n    year = int(dtstr[0:4])\n    if dtstr[4] != '-':\n        raise ValueError('Invalid date separator: %s' % dtstr[4])\n\n    month = int(dtstr[5:7])\n\n    if dtstr[7] != '-':\n        raise ValueError('Invalid date separator')\n\n    day = int(dtstr[8:10])\n\n    return [year, month, day]\n\ndef _parse_hh_mm_ss_ff(tstr):\n    # Parses things of the form HH[:MM[:SS[.fff[fff]]]]\n    len_str = len(tstr)\n\n    time_comps = [0, 0, 0, 0]\n    pos = 0\n    for comp in range(0, 3):\n        if (len_str - pos) < 2:\n            raise ValueError('Incomplete time component')\n\n        time_comps[comp] = int(tstr[pos:pos+2])\n\n        pos += 2\n        next_char = tstr[pos:pos+1]\n\n        if not next_char or comp >= 2:\n            break\n\n        if next_char != ':':\n            raise ValueError('Invalid time separator: %c' % next_char)\n\n        pos += 1\n\n    if pos < len_str:\n        if tstr[pos] != '.':\n            raise ValueError('Invalid microsecond component')\n        else:\n            pos += 1\n\n            len_remainder = len_str - pos\n            if len_remainder not in (3, 6):\n                raise ValueError('Invalid microsecond component')\n\n            time_comps[3] = int(tstr[pos:])\n            if len_remainder == 3:\n                time_comps[3] *= 1000\n\n    return time_comps\n\ndef _parse_isoformat_time(tstr):\n    # Format supported is HH[:MM[:SS[.fff[fff]]]][+HH:MM[:SS[.ffffff]]]\n    len_str = len(tstr)\n    if len_str < 2:\n        raise ValueError('Isoformat time too short')\n\n    # This is equivalent to re.search('[+-]', tstr), but faster\n    tz_pos = (tstr.find('-') + 1 or tstr.find('+') + 1)\n    timestr = tstr[:tz_pos-1] if tz_pos > 0 else tstr\n\n    time_comps = _parse_hh_mm_ss_ff(timestr)\n\n    tzi = None\n    if tz_pos > 0:\n        tzstr = tstr[tz_pos:]\n\n        # Valid time zone strings are:\n        # HH:MM               len: 5\n        # HH:MM:SS            len: 8\n        # HH:MM:SS.ffffff     len: 15\n\n        if len(tzstr) not in (5, 8, 15):\n            raise ValueError('Malformed time zone string')\n\n        tz_comps = _parse_hh_mm_ss_ff(tzstr)\n        if all(x == 0 for x in tz_comps):\n            tzi = timezone.utc\n        else:\n            tzsign = -1 if tstr[tz_pos - 1] == '-' else 1\n\n            td = timedelta(hours=tz_comps[0], minutes=tz_comps[1],\n                           seconds=tz_comps[2], microseconds=tz_comps[3])\n\n            tzi = timezone(tzsign * td)\n\n    time_comps.append(tzi)\n\n    return time_comps\n\n\n# Just raise TypeError if the arg isn't None or a string.\ndef _check_tzname(name):\n    if name is not None and not isinstance(name, str):\n        raise TypeError(\"tzinfo.tzname() must return None or string, \"\n                        \"not '%s'\" % type(name))\n\n# name is the offset-producing method, \"utcoffset\" or \"dst\".\n# offset is what it returned.\n# If offset isn't None or timedelta, raises TypeError.\n# If offset is None, returns None.\n# Else offset is checked for being in range.\n# If it is, its integer value is returned.  Else ValueError is raised.\ndef _check_utc_offset(name, offset):\n    assert name in (\"utcoffset\", \"dst\")\n    if offset is None:\n        return\n    if not isinstance(offset, timedelta):\n        raise TypeError(\"tzinfo.%s() must return None \"\n                        \"or timedelta, not '%s'\" % (name, type(offset)))\n    if not -timedelta(1) < offset < timedelta(1):\n        raise ValueError(\"%s()=%s, must be strictly between \"\n                         \"-timedelta(hours=24) and timedelta(hours=24)\" %\n                         (name, offset))\n\ndef _check_int_field(value):\n    if isinstance(value, int):\n        return value\n    if isinstance(value, float):\n        raise TypeError('integer argument expected, got float')\n    try:\n        value = value.__index__()\n    except AttributeError:\n        pass\n    else:\n        if not isinstance(value, int):\n            raise TypeError('__index__ returned non-int (type %s)' %\n                            type(value).__name__)\n        return value\n    orig = value\n    try:\n        value = value.__int__()\n    except AttributeError:\n        pass\n    else:\n        if not isinstance(value, int):\n            raise TypeError('__int__ returned non-int (type %s)' %\n                            type(value).__name__)\n        import warnings\n        warnings.warn(\"an integer is required (got type %s)\"  %\n                      type(orig).__name__,\n                      DeprecationWarning,\n                      stacklevel=2)\n        return value\n    raise TypeError('an integer is required (got type %s)' %\n                    type(value).__name__)\n\ndef _check_date_fields(year, month, day):\n    year = _check_int_field(year)\n    month = _check_int_field(month)\n    day = _check_int_field(day)\n    if not MINYEAR <= year <= MAXYEAR:\n        raise ValueError('year must be in %d..%d' % (MINYEAR, MAXYEAR), year)\n    if not 1 <= month <= 12:\n        raise ValueError('month must be in 1..12', month)\n    dim = _days_in_month(year, month)\n    if not 1 <= day <= dim:\n        raise ValueError('day must be in 1..%d' % dim, day)\n    return year, month, day\n\ndef _check_time_fields(hour, minute, second, microsecond, fold):\n    hour = _check_int_field(hour)\n    minute = _check_int_field(minute)\n    second = _check_int_field(second)\n    microsecond = _check_int_field(microsecond)\n    if not 0 <= hour <= 23:\n        raise ValueError('hour must be in 0..23', hour)\n    if not 0 <= minute <= 59:\n        raise ValueError('minute must be in 0..59', minute)\n    if not 0 <= second <= 59:\n        raise ValueError('second must be in 0..59', second)\n    if not 0 <= microsecond <= 999999:\n        raise ValueError('microsecond must be in 0..999999', microsecond)\n    if fold not in (0, 1):\n        raise ValueError('fold must be either 0 or 1', fold)\n    return hour, minute, second, microsecond, fold\n\ndef _check_tzinfo_arg(tz):\n    if tz is not None and not isinstance(tz, tzinfo):\n        raise TypeError(\"tzinfo argument must be None or of a tzinfo subclass\")\n\ndef _cmperror(x, y):\n    raise TypeError(\"can't compare '%s' to '%s'\" % (\n                    type(x).__name__, type(y).__name__))\n\ndef _divide_and_round(a, b):\n    \"\"\"divide a by b and round result to the nearest integer\n\n    When the ratio is exactly half-way between two integers,\n    the even integer is returned.\n    \"\"\"\n    # Based on the reference implementation for divmod_near\n    # in Objects/longobject.c.\n    q, r = divmod(a, b)\n    # round up if either r / b > 0.5, or r / b == 0.5 and q is odd.\n    # The expression r / b > 0.5 is equivalent to 2 * r > b if b is\n    # positive, 2 * r < b if b negative.\n    r *= 2\n    greater_than_half = r > b if b > 0 else r < b\n    if greater_than_half or r == b and q % 2 == 1:\n        q += 1\n\n    return q\n\n\nclass timedelta:\n    \"\"\"Represent the difference between two datetime objects.\n\n    Supported operators:\n\n    - add, subtract timedelta\n    - unary plus, minus, abs\n    - compare to timedelta\n    - multiply, divide by int\n\n    In addition, datetime supports subtraction of two datetime objects\n    returning a timedelta, and addition or subtraction of a datetime\n    and a timedelta giving a datetime.\n\n    Representation: (days, seconds, microseconds).  Why?  Because I\n    felt like it.\n    \"\"\"\n    __slots__ = '_days', '_seconds', '_microseconds', '_hashcode'\n\n    def __new__(cls, days=0, seconds=0, microseconds=0,\n                milliseconds=0, minutes=0, hours=0, weeks=0):\n        # Doing this efficiently and accurately in C is going to be difficult\n        # and error-prone, due to ubiquitous overflow possibilities, and that\n        # C double doesn't have enough bits of precision to represent\n        # microseconds over 10K years faithfully.  The code here tries to make\n        # explicit where go-fast assumptions can be relied on, in order to\n        # guide the C implementation; it's way more convoluted than speed-\n        # ignoring auto-overflow-to-long idiomatic Python could be.\n\n        # XXX Check that all inputs are ints or floats.\n\n        # Final values, all integer.\n        # s and us fit in 32-bit signed ints; d isn't bounded.\n        d = s = us = 0\n\n        # Normalize everything to days, seconds, microseconds.\n        days += weeks*7\n        seconds += minutes*60 + hours*3600\n        microseconds += milliseconds*1000\n\n        # Get rid of all fractions, and normalize s and us.\n        # Take a deep breath <wink>.\n        if isinstance(days, float):\n            dayfrac, days = _math.modf(days)\n            daysecondsfrac, daysecondswhole = _math.modf(dayfrac * (24.*3600.))\n            assert daysecondswhole == int(daysecondswhole)  # can't overflow\n            s = int(daysecondswhole)\n            assert days == int(days)\n            d = int(days)\n        else:\n            daysecondsfrac = 0.0\n            d = days\n        assert isinstance(daysecondsfrac, float)\n        assert abs(daysecondsfrac) <= 1.0\n        assert isinstance(d, int)\n        assert abs(s) <= 24 * 3600\n        # days isn't referenced again before redefinition\n\n        if isinstance(seconds, float):\n            secondsfrac, seconds = _math.modf(seconds)\n            assert seconds == int(seconds)\n            seconds = int(seconds)\n            secondsfrac += daysecondsfrac\n            assert abs(secondsfrac) <= 2.0\n        else:\n            secondsfrac = daysecondsfrac\n        # daysecondsfrac isn't referenced again\n        assert isinstance(secondsfrac, float)\n        assert abs(secondsfrac) <= 2.0\n\n        assert isinstance(seconds, int)\n        days, seconds = divmod(seconds, 24*3600)\n        d += days\n        s += int(seconds)    # can't overflow\n        assert isinstance(s, int)\n        assert abs(s) <= 2 * 24 * 3600\n        # seconds isn't referenced again before redefinition\n\n        usdouble = secondsfrac * 1e6\n        assert abs(usdouble) < 2.1e6    # exact value not critical\n        # secondsfrac isn't referenced again\n\n        if isinstance(microseconds, float):\n            microseconds = round(microseconds + usdouble)\n            seconds, microseconds = divmod(microseconds, 1000000)\n            days, seconds = divmod(seconds, 24*3600)\n            d += days\n            s += seconds\n        else:\n            microseconds = int(microseconds)\n            seconds, microseconds = divmod(microseconds, 1000000)\n            days, seconds = divmod(seconds, 24*3600)\n            d += days\n            s += seconds\n            microseconds = round(microseconds + usdouble)\n        assert isinstance(s, int)\n        assert isinstance(microseconds, int)\n        assert abs(s) <= 3 * 24 * 3600\n        assert abs(microseconds) < 3.1e6\n\n        # Just a little bit of carrying possible for microseconds and seconds.\n        seconds, us = divmod(microseconds, 1000000)\n        s += seconds\n        days, s = divmod(s, 24*3600)\n        d += days\n\n        assert isinstance(d, int)\n        assert isinstance(s, int) and 0 <= s < 24*3600\n        assert isinstance(us, int) and 0 <= us < 1000000\n\n        if abs(d) > 999999999:\n            raise OverflowError(\"timedelta # of days is too large: %d\" % d)\n\n        self = object.__new__(cls)\n        self._days = d\n        self._seconds = s\n        self._microseconds = us\n        self._hashcode = -1\n        return self\n\n    def __repr__(self):\n        args = []\n        if self._days:\n            args.append(\"days=%d\" % self._days)\n        if self._seconds:\n            args.append(\"seconds=%d\" % self._seconds)\n        if self._microseconds:\n            args.append(\"microseconds=%d\" % self._microseconds)\n        if not args:\n            args.append('0')\n        return \"%s.%s(%s)\" % (self.__class__.__module__,\n                              self.__class__.__qualname__,\n                              ', '.join(args))\n\n    def __str__(self):\n        mm, ss = divmod(self._seconds, 60)\n        hh, mm = divmod(mm, 60)\n        s = \"%d:%02d:%02d\" % (hh, mm, ss)\n        if self._days:\n            def plural(n):\n                return n, abs(n) != 1 and \"s\" or \"\"\n            s = (\"%d day%s, \" % plural(self._days)) + s\n        if self._microseconds:\n            s = s + \".%06d\" % self._microseconds\n        return s\n\n    def total_seconds(self):\n        \"\"\"Total seconds in the duration.\"\"\"\n        return ((self.days * 86400 + self.seconds) * 10**6 +\n                self.microseconds) / 10**6\n\n    # Read-only field accessors\n    @property\n    def days(self):\n        \"\"\"days\"\"\"\n        return self._days\n\n    @property\n    def seconds(self):\n        \"\"\"seconds\"\"\"\n        return self._seconds\n\n    @property\n    def microseconds(self):\n        \"\"\"microseconds\"\"\"\n        return self._microseconds\n\n    def __add__(self, other):\n        if isinstance(other, timedelta):\n            # for CPython compatibility, we cannot use\n            # our __class__ here, but need a real timedelta\n            return timedelta(self._days + other._days,\n                             self._seconds + other._seconds,\n                             self._microseconds + other._microseconds)\n        return NotImplemented\n\n    __radd__ = __add__\n\n    def __sub__(self, other):\n        if isinstance(other, timedelta):\n            # for CPython compatibility, we cannot use\n            # our __class__ here, but need a real timedelta\n            return timedelta(self._days - other._days,\n                             self._seconds - other._seconds,\n                             self._microseconds - other._microseconds)\n        return NotImplemented\n\n    def __rsub__(self, other):\n        if isinstance(other, timedelta):\n            return -self + other\n        return NotImplemented\n\n    def __neg__(self):\n        # for CPython compatibility, we cannot use\n        # our __class__ here, but need a real timedelta\n        return timedelta(-self._days,\n                         -self._seconds,\n                         -self._microseconds)\n\n    def __pos__(self):\n        return self\n\n    def __abs__(self):\n        if self._days < 0:\n            return -self\n        else:\n            return self\n\n    def __mul__(self, other):\n        if isinstance(other, int):\n            # for CPython compatibility, we cannot use\n            # our __class__ here, but need a real timedelta\n            return timedelta(self._days * other,\n                             self._seconds * other,\n                             self._microseconds * other)\n        if isinstance(other, float):\n            usec = self._to_microseconds()\n            a, b = other.as_integer_ratio()\n            return timedelta(0, 0, _divide_and_round(usec * a, b))\n        return NotImplemented\n\n    __rmul__ = __mul__\n\n    def _to_microseconds(self):\n        return ((self._days * (24*3600) + self._seconds) * 1000000 +\n                self._microseconds)\n\n    def __floordiv__(self, other):\n        if not isinstance(other, (int, timedelta)):\n            return NotImplemented\n        usec = self._to_microseconds()\n        if isinstance(other, timedelta):\n            return usec // other._to_microseconds()\n        if isinstance(other, int):\n            return timedelta(0, 0, usec // other)\n\n    def __truediv__(self, other):\n        if not isinstance(other, (int, float, timedelta)):\n            return NotImplemented\n        usec = self._to_microseconds()\n        if isinstance(other, timedelta):\n            return usec / other._to_microseconds()\n        if isinstance(other, int):\n            return timedelta(0, 0, _divide_and_round(usec, other))\n        if isinstance(other, float):\n            a, b = other.as_integer_ratio()\n            return timedelta(0, 0, _divide_and_round(b * usec, a))\n\n    def __mod__(self, other):\n        if isinstance(other, timedelta):\n            r = self._to_microseconds() % other._to_microseconds()\n            return timedelta(0, 0, r)\n        return NotImplemented\n\n    def __divmod__(self, other):\n        if isinstance(other, timedelta):\n            q, r = divmod(self._to_microseconds(),\n                          other._to_microseconds())\n            return q, timedelta(0, 0, r)\n        return NotImplemented\n\n    # Comparisons of timedelta objects with other.\n\n    def __eq__(self, other):\n        if isinstance(other, timedelta):\n            return self._cmp(other) == 0\n        else:\n            return NotImplemented\n\n    def __le__(self, other):\n        if isinstance(other, timedelta):\n            return self._cmp(other) <= 0\n        else:\n            return NotImplemented\n\n    def __lt__(self, other):\n        if isinstance(other, timedelta):\n            return self._cmp(other) < 0\n        else:\n            return NotImplemented\n\n    def __ge__(self, other):\n        if isinstance(other, timedelta):\n            return self._cmp(other) >= 0\n        else:\n            return NotImplemented\n\n    def __gt__(self, other):\n        if isinstance(other, timedelta):\n            return self._cmp(other) > 0\n        else:\n            return NotImplemented\n\n    def _cmp(self, other):\n        assert isinstance(other, timedelta)\n        return _cmp(self._getstate(), other._getstate())\n\n    def __hash__(self):\n        if self._hashcode == -1:\n            self._hashcode = hash(self._getstate())\n        return self._hashcode\n\n    def __bool__(self):\n        return (self._days != 0 or\n                self._seconds != 0 or\n                self._microseconds != 0)\n\n    # Pickle support.\n\n    def _getstate(self):\n        return (self._days, self._seconds, self._microseconds)\n\n    def __reduce__(self):\n        return (self.__class__, self._getstate())\n\ntimedelta.min = timedelta(-999999999)\ntimedelta.max = timedelta(days=999999999, hours=23, minutes=59, seconds=59,\n                          microseconds=999999)\ntimedelta.resolution = timedelta(microseconds=1)\n\nclass date:\n    \"\"\"Concrete date type.\n\n    Constructors:\n\n    __new__()\n    fromtimestamp()\n    today()\n    fromordinal()\n\n    Operators:\n\n    __repr__, __str__\n    __eq__, __le__, __lt__, __ge__, __gt__, __hash__\n    __add__, __radd__, __sub__ (add/radd only with timedelta arg)\n\n    Methods:\n\n    timetuple()\n    toordinal()\n    weekday()\n    isoweekday(), isocalendar(), isoformat()\n    ctime()\n    strftime()\n\n    Properties (readonly):\n    year, month, day\n    \"\"\"\n    __slots__ = '_year', '_month', '_day', '_hashcode'\n\n    def __new__(cls, year, month=None, day=None):\n        \"\"\"Constructor.\n\n        Arguments:\n\n        year, month, day (required, base 1)\n        \"\"\"\n        if (month is None and\n            isinstance(year, (bytes, str)) and len(year) == 4 and\n            1 <= ord(year[2:3]) <= 12):\n            # Pickle support\n            if isinstance(year, str):\n                try:\n                    year = year.encode('latin1')\n                except UnicodeEncodeError:\n                    # More informative error message.\n                    raise ValueError(\n                        \"Failed to encode latin1 string when unpickling \"\n                        \"a date object. \"\n                        \"pickle.load(data, encoding='latin1') is assumed.\")\n            self = object.__new__(cls)\n            self.__setstate(year)\n            self._hashcode = -1\n            return self\n        year, month, day = _check_date_fields(year, month, day)\n        self = object.__new__(cls)\n        self._year = year\n        self._month = month\n        self._day = day\n        self._hashcode = -1\n        return self\n\n    # Additional constructors\n\n    @classmethod\n    def fromtimestamp(cls, t):\n        \"Construct a date from a POSIX timestamp (like time.time()).\"\n        y, m, d, hh, mm, ss, weekday, jday, dst = _time.localtime(t)\n        return cls(y, m, d)\n\n    @classmethod\n    def today(cls):\n        \"Construct a date from time.time().\"\n        t = _time.time()\n        return cls.fromtimestamp(t)\n\n    @classmethod\n    def fromordinal(cls, n):\n        \"\"\"Construct a date from a proleptic Gregorian ordinal.\n\n        January 1 of year 1 is day 1.  Only the year, month and day are\n        non-zero in the result.\n        \"\"\"\n        y, m, d = _ord2ymd(n)\n        return cls(y, m, d)\n\n    @classmethod\n    def fromisoformat(cls, date_string):\n        \"\"\"Construct a date from the output of date.isoformat().\"\"\"\n        if not isinstance(date_string, str):\n            raise TypeError('fromisoformat: argument must be str')\n\n        try:\n            assert len(date_string) == 10\n            return cls(*_parse_isoformat_date(date_string))\n        except Exception:\n            raise ValueError(f'Invalid isoformat string: {date_string!r}')\n\n    @classmethod\n    def fromisocalendar(cls, year, week, day):\n        \"\"\"Construct a date from the ISO year, week number and weekday.\n\n        This is the inverse of the date.isocalendar() function\"\"\"\n        # Year is bounded this way because 9999-12-31 is (9999, 52, 5)\n        if not MINYEAR <= year <= MAXYEAR:\n            raise ValueError(f\"Year is out of range: {year}\")\n\n        if not 0 < week < 53:\n            out_of_range = True\n\n            if week == 53:\n                # ISO years have 53 weeks in them on years starting with a\n                # Thursday and leap years starting on a Wednesday\n                first_weekday = _ymd2ord(year, 1, 1) % 7\n                if (first_weekday == 4 or (first_weekday == 3 and\n                                           _is_leap(year))):\n                    out_of_range = False\n\n            if out_of_range:\n                raise ValueError(f\"Invalid week: {week}\")\n\n        if not 0 < day < 8:\n            raise ValueError(f\"Invalid weekday: {day} (range is [1, 7])\")\n\n        # Now compute the offset from (Y, 1, 1) in days:\n        day_offset = (week - 1) * 7 + (day - 1)\n\n        # Calculate the ordinal day for monday, week 1\n        day_1 = _isoweek1monday(year)\n        ord_day = day_1 + day_offset\n\n        return cls(*_ord2ymd(ord_day))\n\n    # Conversions to string\n\n    def __repr__(self):\n        \"\"\"Convert to formal string, for repr().\n\n        >>> dt = datetime(2010, 1, 1)\n        >>> repr(dt)\n        'datetime.datetime(2010, 1, 1, 0, 0)'\n\n        >>> dt = datetime(2010, 1, 1, tzinfo=timezone.utc)\n        >>> repr(dt)\n        'datetime.datetime(2010, 1, 1, 0, 0, tzinfo=datetime.timezone.utc)'\n        \"\"\"\n        return \"%s.%s(%d, %d, %d)\" % (self.__class__.__module__,\n                                      self.__class__.__qualname__,\n                                      self._year,\n                                      self._month,\n                                      self._day)\n    # XXX These shouldn't depend on time.localtime(), because that\n    # clips the usable dates to [1970 .. 2038).  At least ctime() is\n    # easily done without using strftime() -- that's better too because\n    # strftime(\"%c\", ...) is locale specific.\n\n\n    def ctime(self):\n        \"Return ctime() style string.\"\n        weekday = self.toordinal() % 7 or 7\n        return \"%s %s %2d 00:00:00 %04d\" % (\n            _DAYNAMES[weekday],\n            _MONTHNAMES[self._month],\n            self._day, self._year)\n\n    def strftime(self, fmt):\n        \"Format using strftime().\"\n        return _wrap_strftime(self, fmt, self.timetuple())\n\n    def __format__(self, fmt):\n        if not isinstance(fmt, str):\n            raise TypeError(\"must be str, not %s\" % type(fmt).__name__)\n        if len(fmt) != 0:\n            return self.strftime(fmt)\n        return str(self)\n\n    def isoformat(self):\n        \"\"\"Return the date formatted according to ISO.\n\n        This is 'YYYY-MM-DD'.\n\n        References:\n        - http://www.w3.org/TR/NOTE-datetime\n        - http://www.cl.cam.ac.uk/~mgk25/iso-time.html\n        \"\"\"\n        return \"%04d-%02d-%02d\" % (self._year, self._month, self._day)\n\n    __str__ = isoformat\n\n    # Read-only field accessors\n    @property\n    def year(self):\n        \"\"\"year (1-9999)\"\"\"\n        return self._year\n\n    @property\n    def month(self):\n        \"\"\"month (1-12)\"\"\"\n        return self._month\n\n    @property\n    def day(self):\n        \"\"\"day (1-31)\"\"\"\n        return self._day\n\n    # Standard conversions, __eq__, __le__, __lt__, __ge__, __gt__,\n    # __hash__ (and helpers)\n\n    def timetuple(self):\n        \"Return local time tuple compatible with time.localtime().\"\n        return _build_struct_time(self._year, self._month, self._day,\n                                  0, 0, 0, -1)\n\n    def toordinal(self):\n        \"\"\"Return proleptic Gregorian ordinal for the year, month and day.\n\n        January 1 of year 1 is day 1.  Only the year, month and day values\n        contribute to the result.\n        \"\"\"\n        return _ymd2ord(self._year, self._month, self._day)\n\n    def replace(self, year=None, month=None, day=None):\n        \"\"\"Return a new date with new values for the specified fields.\"\"\"\n        if year is None:\n            year = self._year\n        if month is None:\n            month = self._month\n        if day is None:\n            day = self._day\n        return type(self)(year, month, day)\n\n    # Comparisons of date objects with other.\n\n    def __eq__(self, other):\n        if isinstance(other, date):\n            return self._cmp(other) == 0\n        return NotImplemented\n\n    def __le__(self, other):\n        if isinstance(other, date):\n            return self._cmp(other) <= 0\n        return NotImplemented\n\n    def __lt__(self, other):\n        if isinstance(other, date):\n            return self._cmp(other) < 0\n        return NotImplemented\n\n    def __ge__(self, other):\n        if isinstance(other, date):\n            return self._cmp(other) >= 0\n        return NotImplemented\n\n    def __gt__(self, other):\n        if isinstance(other, date):\n            return self._cmp(other) > 0\n        return NotImplemented\n\n    def _cmp(self, other):\n        assert isinstance(other, date)\n        y, m, d = self._year, self._month, self._day\n        y2, m2, d2 = other._year, other._month, other._day\n        return _cmp((y, m, d), (y2, m2, d2))\n\n    def __hash__(self):\n        \"Hash.\"\n        if self._hashcode == -1:\n            self._hashcode = hash(self._getstate())\n        return self._hashcode\n\n    # Computations\n\n    def __add__(self, other):\n        \"Add a date to a timedelta.\"\n        if isinstance(other, timedelta):\n            o = self.toordinal() + other.days\n            if 0 < o <= _MAXORDINAL:\n                return type(self).fromordinal(o)\n            raise OverflowError(\"result out of range\")\n        return NotImplemented\n\n    __radd__ = __add__\n\n    def __sub__(self, other):\n        \"\"\"Subtract two dates, or a date and a timedelta.\"\"\"\n        if isinstance(other, timedelta):\n            return self + timedelta(-other.days)\n        if isinstance(other, date):\n            days1 = self.toordinal()\n            days2 = other.toordinal()\n            return timedelta(days1 - days2)\n        return NotImplemented\n\n    def weekday(self):\n        \"Return day of the week, where Monday == 0 ... Sunday == 6.\"\n        return (self.toordinal() + 6) % 7\n\n    # Day-of-the-week and week-of-the-year, according to ISO\n\n    def isoweekday(self):\n        \"Return day of the week, where Monday == 1 ... Sunday == 7.\"\n        # 1-Jan-0001 is a Monday\n        return self.toordinal() % 7 or 7\n\n    def isocalendar(self):\n        \"\"\"Return a 3-tuple containing ISO year, week number, and weekday.\n\n        The first ISO week of the year is the (Mon-Sun) week\n        containing the year's first Thursday; everything else derives\n        from that.\n\n        The first week is 1; Monday is 1 ... Sunday is 7.\n\n        ISO calendar algorithm taken from\n        http://www.phys.uu.nl/~vgent/calendar/isocalendar.htm\n        (used with permission)\n        \"\"\"\n        year = self._year\n        week1monday = _isoweek1monday(year)\n        today = _ymd2ord(self._year, self._month, self._day)\n        # Internally, week and day have origin 0\n        week, day = divmod(today - week1monday, 7)\n        if week < 0:\n            year -= 1\n            week1monday = _isoweek1monday(year)\n            week, day = divmod(today - week1monday, 7)\n        elif week >= 52:\n            if today >= _isoweek1monday(year+1):\n                year += 1\n                week = 0\n        return year, week+1, day+1\n\n    # Pickle support.\n\n    def _getstate(self):\n        yhi, ylo = divmod(self._year, 256)\n        return bytes([yhi, ylo, self._month, self._day]),\n\n    def __setstate(self, string):\n        yhi, ylo, self._month, self._day = string\n        self._year = yhi * 256 + ylo\n\n    def __reduce__(self):\n        return (self.__class__, self._getstate())\n\n_date_class = date  # so functions w/ args named \"date\" can get at the class\n\ndate.min = date(1, 1, 1)\ndate.max = date(9999, 12, 31)\ndate.resolution = timedelta(days=1)\n\n\nclass tzinfo:\n    \"\"\"Abstract base class for time zone info classes.\n\n    Subclasses must override the name(), utcoffset() and dst() methods.\n    \"\"\"\n    __slots__ = ()\n\n    def tzname(self, dt):\n        \"datetime -> string name of time zone.\"\n        raise NotImplementedError(\"tzinfo subclass must override tzname()\")\n\n    def utcoffset(self, dt):\n        \"datetime -> timedelta, positive for east of UTC, negative for west of UTC\"\n        raise NotImplementedError(\"tzinfo subclass must override utcoffset()\")\n\n    def dst(self, dt):\n        \"\"\"datetime -> DST offset as timedelta, positive for east of UTC.\n\n        Return 0 if DST not in effect.  utcoffset() must include the DST\n        offset.\n        \"\"\"\n        raise NotImplementedError(\"tzinfo subclass must override dst()\")\n\n    def fromutc(self, dt):\n        \"datetime in UTC -> datetime in local time.\"\n\n        if not isinstance(dt, datetime):\n            raise TypeError(\"fromutc() requires a datetime argument\")\n        if dt.tzinfo is not self:\n            raise ValueError(\"dt.tzinfo is not self\")\n\n        dtoff = dt.utcoffset()\n        if dtoff is None:\n            raise ValueError(\"fromutc() requires a non-None utcoffset() \"\n                             \"result\")\n\n        # See the long comment block at the end of this file for an\n        # explanation of this algorithm.\n        dtdst = dt.dst()\n        if dtdst is None:\n            raise ValueError(\"fromutc() requires a non-None dst() result\")\n        delta = dtoff - dtdst\n        if delta:\n            dt += delta\n            dtdst = dt.dst()\n            if dtdst is None:\n                raise ValueError(\"fromutc(): dt.dst gave inconsistent \"\n                                 \"results; cannot convert\")\n        return dt + dtdst\n\n    # Pickle support.\n\n    def __reduce__(self):\n        getinitargs = getattr(self, \"__getinitargs__\", None)\n        if getinitargs:\n            args = getinitargs()\n        else:\n            args = ()\n        getstate = getattr(self, \"__getstate__\", None)\n        if getstate:\n            state = getstate()\n        else:\n            state = getattr(self, \"__dict__\", None) or None\n        if state is None:\n            return (self.__class__, args)\n        else:\n            return (self.__class__, args, state)\n\n_tzinfo_class = tzinfo\n\nclass time:\n    \"\"\"Time with time zone.\n\n    Constructors:\n\n    __new__()\n\n    Operators:\n\n    __repr__, __str__\n    __eq__, __le__, __lt__, __ge__, __gt__, __hash__\n\n    Methods:\n\n    strftime()\n    isoformat()\n    utcoffset()\n    tzname()\n    dst()\n\n    Properties (readonly):\n    hour, minute, second, microsecond, tzinfo, fold\n    \"\"\"\n    __slots__ = '_hour', '_minute', '_second', '_microsecond', '_tzinfo', '_hashcode', '_fold'\n\n    def __new__(cls, hour=0, minute=0, second=0, microsecond=0, tzinfo=None, *, fold=0):\n        \"\"\"Constructor.\n\n        Arguments:\n\n        hour, minute (required)\n        second, microsecond (default to zero)\n        tzinfo (default to None)\n        fold (keyword only, default to zero)\n        \"\"\"\n        if (isinstance(hour, (bytes, str)) and len(hour) == 6 and\n            ord(hour[0:1])&0x7F < 24):\n            # Pickle support\n            if isinstance(hour, str):\n                try:\n                    hour = hour.encode('latin1')\n                except UnicodeEncodeError:\n                    # More informative error message.\n                    raise ValueError(\n                        \"Failed to encode latin1 string when unpickling \"\n                        \"a time object. \"\n                        \"pickle.load(data, encoding='latin1') is assumed.\")\n            self = object.__new__(cls)\n            self.__setstate(hour, minute or None)\n            self._hashcode = -1\n            return self\n        hour, minute, second, microsecond, fold = _check_time_fields(\n            hour, minute, second, microsecond, fold)\n        _check_tzinfo_arg(tzinfo)\n        self = object.__new__(cls)\n        self._hour = hour\n        self._minute = minute\n        self._second = second\n        self._microsecond = microsecond\n        self._tzinfo = tzinfo\n        self._hashcode = -1\n        self._fold = fold\n        return self\n\n    # Read-only field accessors\n    @property\n    def hour(self):\n        \"\"\"hour (0-23)\"\"\"\n        return self._hour\n\n    @property\n    def minute(self):\n        \"\"\"minute (0-59)\"\"\"\n        return self._minute\n\n    @property\n    def second(self):\n        \"\"\"second (0-59)\"\"\"\n        return self._second\n\n    @property\n    def microsecond(self):\n        \"\"\"microsecond (0-999999)\"\"\"\n        return self._microsecond\n\n    @property\n    def tzinfo(self):\n        \"\"\"timezone info object\"\"\"\n        return self._tzinfo\n\n    @property\n    def fold(self):\n        return self._fold\n\n    # Standard conversions, __hash__ (and helpers)\n\n    # Comparisons of time objects with other.\n\n    def __eq__(self, other):\n        if isinstance(other, time):\n            return self._cmp(other, allow_mixed=True) == 0\n        else:\n            return NotImplemented\n\n    def __le__(self, other):\n        if isinstance(other, time):\n            return self._cmp(other) <= 0\n        else:\n            return NotImplemented\n\n    def __lt__(self, other):\n        if isinstance(other, time):\n            return self._cmp(other) < 0\n        else:\n            return NotImplemented\n\n    def __ge__(self, other):\n        if isinstance(other, time):\n            return self._cmp(other) >= 0\n        else:\n            return NotImplemented\n\n    def __gt__(self, other):\n        if isinstance(other, time):\n            return self._cmp(other) > 0\n        else:\n            return NotImplemented\n\n    def _cmp(self, other, allow_mixed=False):\n        assert isinstance(other, time)\n        mytz = self._tzinfo\n        ottz = other._tzinfo\n        myoff = otoff = None\n\n        if mytz is ottz:\n            base_compare = True\n        else:\n            myoff = self.utcoffset()\n            otoff = other.utcoffset()\n            base_compare = myoff == otoff\n\n        if base_compare:\n            return _cmp((self._hour, self._minute, self._second,\n                         self._microsecond),\n                        (other._hour, other._minute, other._second,\n                         other._microsecond))\n        if myoff is None or otoff is None:\n            if allow_mixed:\n                return 2 # arbitrary non-zero value\n            else:\n                raise TypeError(\"cannot compare naive and aware times\")\n        myhhmm = self._hour * 60 + self._minute - myoff//timedelta(minutes=1)\n        othhmm = other._hour * 60 + other._minute - otoff//timedelta(minutes=1)\n        return _cmp((myhhmm, self._second, self._microsecond),\n                    (othhmm, other._second, other._microsecond))\n\n    def __hash__(self):\n        \"\"\"Hash.\"\"\"\n        if self._hashcode == -1:\n            if self.fold:\n                t = self.replace(fold=0)\n            else:\n                t = self\n            tzoff = t.utcoffset()\n            if not tzoff:  # zero or None\n                self._hashcode = hash(t._getstate()[0])\n            else:\n                h, m = divmod(timedelta(hours=self.hour, minutes=self.minute) - tzoff,\n                              timedelta(hours=1))\n                assert not m % timedelta(minutes=1), \"whole minute\"\n                m //= timedelta(minutes=1)\n                if 0 <= h < 24:\n                    self._hashcode = hash(time(h, m, self.second, self.microsecond))\n                else:\n                    self._hashcode = hash((h, m, self.second, self.microsecond))\n        return self._hashcode\n\n    # Conversion to string\n\n    def _tzstr(self):\n        \"\"\"Return formatted timezone offset (+xx:xx) or an empty string.\"\"\"\n        off = self.utcoffset()\n        return _format_offset(off)\n\n    def __repr__(self):\n        \"\"\"Convert to formal string, for repr().\"\"\"\n        if self._microsecond != 0:\n            s = \", %d, %d\" % (self._second, self._microsecond)\n        elif self._second != 0:\n            s = \", %d\" % self._second\n        else:\n            s = \"\"\n        s= \"%s.%s(%d, %d%s)\" % (self.__class__.__module__,\n                                self.__class__.__qualname__,\n                                self._hour, self._minute, s)\n        if self._tzinfo is not None:\n            assert s[-1:] == \")\"\n            s = s[:-1] + \", tzinfo=%r\" % self._tzinfo + \")\"\n        if self._fold:\n            assert s[-1:] == \")\"\n            s = s[:-1] + \", fold=1)\"\n        return s\n\n    def isoformat(self, timespec='auto'):\n        \"\"\"Return the time formatted according to ISO.\n\n        The full format is 'HH:MM:SS.mmmmmm+zz:zz'. By default, the fractional\n        part is omitted if self.microsecond == 0.\n\n        The optional argument timespec specifies the number of additional\n        terms of the time to include.\n        \"\"\"\n        s = _format_time(self._hour, self._minute, self._second,\n                          self._microsecond, timespec)\n        tz = self._tzstr()\n        if tz:\n            s += tz\n        return s\n\n    __str__ = isoformat\n\n    @classmethod\n    def fromisoformat(cls, time_string):\n        \"\"\"Construct a time from the output of isoformat().\"\"\"\n        if not isinstance(time_string, str):\n            raise TypeError('fromisoformat: argument must be str')\n\n        try:\n            return cls(*_parse_isoformat_time(time_string))\n        except Exception:\n            raise ValueError(f'Invalid isoformat string: {time_string!r}')\n\n\n    def strftime(self, fmt):\n        \"\"\"Format using strftime().  The date part of the timestamp passed\n        to underlying strftime should not be used.\n        \"\"\"\n        # The year must be >= 1000 else Python's strftime implementation\n        # can raise a bogus exception.\n        timetuple = (1900, 1, 1,\n                     self._hour, self._minute, self._second,\n                     0, 1, -1)\n        return _wrap_strftime(self, fmt, timetuple)\n\n    def __format__(self, fmt):\n        if not isinstance(fmt, str):\n            raise TypeError(\"must be str, not %s\" % type(fmt).__name__)\n        if len(fmt) != 0:\n            return self.strftime(fmt)\n        return str(self)\n\n    # Timezone functions\n\n    def utcoffset(self):\n        \"\"\"Return the timezone offset as timedelta, positive east of UTC\n         (negative west of UTC).\"\"\"\n        if self._tzinfo is None:\n            return None\n        offset = self._tzinfo.utcoffset(None)\n        _check_utc_offset(\"utcoffset\", offset)\n        return offset\n\n    def tzname(self):\n        \"\"\"Return the timezone name.\n\n        Note that the name is 100% informational -- there's no requirement that\n        it mean anything in particular. For example, \"GMT\", \"UTC\", \"-500\",\n        \"-5:00\", \"EDT\", \"US/Eastern\", \"America/New York\" are all valid replies.\n        \"\"\"\n        if self._tzinfo is None:\n            return None\n        name = self._tzinfo.tzname(None)\n        _check_tzname(name)\n        return name\n\n    def dst(self):\n        \"\"\"Return 0 if DST is not in effect, or the DST offset (as timedelta\n        positive eastward) if DST is in effect.\n\n        This is purely informational; the DST offset has already been added to\n        the UTC offset returned by utcoffset() if applicable, so there's no\n        need to consult dst() unless you're interested in displaying the DST\n        info.\n        \"\"\"\n        if self._tzinfo is None:\n            return None\n        offset = self._tzinfo.dst(None)\n        _check_utc_offset(\"dst\", offset)\n        return offset\n\n    def replace(self, hour=None, minute=None, second=None, microsecond=None,\n                tzinfo=True, *, fold=None):\n        \"\"\"Return a new time with new values for the specified fields.\"\"\"\n        if hour is None:\n            hour = self.hour\n        if minute is None:\n            minute = self.minute\n        if second is None:\n            second = self.second\n        if microsecond is None:\n            microsecond = self.microsecond\n        if tzinfo is True:\n            tzinfo = self.tzinfo\n        if fold is None:\n            fold = self._fold\n        return type(self)(hour, minute, second, microsecond, tzinfo, fold=fold)\n\n    # Pickle support.\n\n    def _getstate(self, protocol=3):\n        us2, us3 = divmod(self._microsecond, 256)\n        us1, us2 = divmod(us2, 256)\n        h = self._hour\n        if self._fold and protocol > 3:\n            h += 128\n        basestate = bytes([h, self._minute, self._second,\n                           us1, us2, us3])\n        if self._tzinfo is None:\n            return (basestate,)\n        else:\n            return (basestate, self._tzinfo)\n\n    def __setstate(self, string, tzinfo):\n        if tzinfo is not None and not isinstance(tzinfo, _tzinfo_class):\n            raise TypeError(\"bad tzinfo state arg\")\n        h, self._minute, self._second, us1, us2, us3 = string\n        if h > 127:\n            self._fold = 1\n            self._hour = h - 128\n        else:\n            self._fold = 0\n            self._hour = h\n        self._microsecond = (((us1 << 8) | us2) << 8) | us3\n        self._tzinfo = tzinfo\n\n    def __reduce_ex__(self, protocol):\n        return (time, self._getstate(protocol))\n\n    def __reduce__(self):\n        return self.__reduce_ex__(2)\n\n_time_class = time  # so functions w/ args named \"time\" can get at the class\n\ntime.min = time(0, 0, 0)\ntime.max = time(23, 59, 59, 999999)\ntime.resolution = timedelta(microseconds=1)\n\nclass datetime(date):\n    \"\"\"datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]])\n\n    The year, month and day arguments are required. tzinfo may be None, or an\n    instance of a tzinfo subclass. The remaining arguments may be ints.\n    \"\"\"\n    __slots__ = date.__slots__ + time.__slots__\n\n    def __new__(cls, year, month=None, day=None, hour=0, minute=0, second=0,\n                microsecond=0, tzinfo=None, *, fold=0):\n        if (isinstance(year, (bytes, str)) and len(year) == 10 and\n            1 <= ord(year[2:3])&0x7F <= 12):\n            # Pickle support\n            if isinstance(year, str):\n                try:\n                    year = bytes(year, 'latin1')\n                except UnicodeEncodeError:\n                    # More informative error message.\n                    raise ValueError(\n                        \"Failed to encode latin1 string when unpickling \"\n                        \"a datetime object. \"\n                        \"pickle.load(data, encoding='latin1') is assumed.\")\n            self = object.__new__(cls)\n            self.__setstate(year, month)\n            self._hashcode = -1\n            return self\n        year, month, day = _check_date_fields(year, month, day)\n        hour, minute, second, microsecond, fold = _check_time_fields(\n            hour, minute, second, microsecond, fold)\n        _check_tzinfo_arg(tzinfo)\n        self = object.__new__(cls)\n        self._year = year\n        self._month = month\n        self._day = day\n        self._hour = hour\n        self._minute = minute\n        self._second = second\n        self._microsecond = microsecond\n        self._tzinfo = tzinfo\n        self._hashcode = -1\n        self._fold = fold\n        return self\n\n    # Read-only field accessors\n    @property\n    def hour(self):\n        \"\"\"hour (0-23)\"\"\"\n        return self._hour\n\n    @property\n    def minute(self):\n        \"\"\"minute (0-59)\"\"\"\n        return self._minute\n\n    @property\n    def second(self):\n        \"\"\"second (0-59)\"\"\"\n        return self._second\n\n    @property\n    def microsecond(self):\n        \"\"\"microsecond (0-999999)\"\"\"\n        return self._microsecond\n\n    @property\n    def tzinfo(self):\n        \"\"\"timezone info object\"\"\"\n        return self._tzinfo\n\n    @property\n    def fold(self):\n        return self._fold\n\n    @classmethod\n    def _fromtimestamp(cls, t, utc, tz):\n        \"\"\"Construct a datetime from a POSIX timestamp (like time.time()).\n\n        A timezone info object may be passed in as well.\n        \"\"\"\n        frac, t = _math.modf(t)\n        us = round(frac * 1e6)\n        if us >= 1000000:\n            t += 1\n            us -= 1000000\n        elif us < 0:\n            t -= 1\n            us += 1000000\n\n        converter = _time.gmtime if utc else _time.localtime\n        y, m, d, hh, mm, ss, weekday, jday, dst = converter(t)\n        ss = min(ss, 59)    # clamp out leap seconds if the platform has them\n        result = cls(y, m, d, hh, mm, ss, us, tz)\n        if tz is None:\n            # As of version 2015f max fold in IANA database is\n            # 23 hours at 1969-09-30 13:00:00 in Kwajalein.\n            # Let's probe 24 hours in the past to detect a transition:\n            max_fold_seconds = 24 * 3600\n\n            # On Windows localtime_s throws an OSError for negative values,\n            # thus we can't perform fold detection for values of time less\n            # than the max time fold. See comments in _datetimemodule's\n            # version of this method for more details.\n            if t < max_fold_seconds and sys.platform.startswith(\"win\"):\n                return result\n\n            y, m, d, hh, mm, ss = converter(t - max_fold_seconds)[:6]\n            probe1 = cls(y, m, d, hh, mm, ss, us, tz)\n            trans = result - probe1 - timedelta(0, max_fold_seconds)\n            if trans.days < 0:\n                y, m, d, hh, mm, ss = converter(t + trans // timedelta(0, 1))[:6]\n                probe2 = cls(y, m, d, hh, mm, ss, us, tz)\n                if probe2 == result:\n                    result._fold = 1\n        else:\n            result = tz.fromutc(result)\n        return result\n\n    @classmethod\n    def fromtimestamp(cls, t, tz=None):\n        \"\"\"Construct a datetime from a POSIX timestamp (like time.time()).\n\n        A timezone info object may be passed in as well.\n        \"\"\"\n        _check_tzinfo_arg(tz)\n\n        return cls._fromtimestamp(t, tz is not None, tz)\n\n    @classmethod\n    def utcfromtimestamp(cls, t):\n        \"\"\"Construct a naive UTC datetime from a POSIX timestamp.\"\"\"\n        return cls._fromtimestamp(t, True, None)\n\n    @classmethod\n    def now(cls, tz=None):\n        \"Construct a datetime from time.time() and optional time zone info.\"\n        t = _time.time()\n        return cls.fromtimestamp(t, tz)\n\n    @classmethod\n    def utcnow(cls):\n        \"Construct a UTC datetime from time.time().\"\n        t = _time.time()\n        return cls.utcfromtimestamp(t)\n\n    @classmethod\n    def combine(cls, date, time, tzinfo=True):\n        \"Construct a datetime from a given date and a given time.\"\n        if not isinstance(date, _date_class):\n            raise TypeError(\"date argument must be a date instance\")\n        if not isinstance(time, _time_class):\n            raise TypeError(\"time argument must be a time instance\")\n        if tzinfo is True:\n            tzinfo = time.tzinfo\n        return cls(date.year, date.month, date.day,\n                   time.hour, time.minute, time.second, time.microsecond,\n                   tzinfo, fold=time.fold)\n\n    @classmethod\n    def fromisoformat(cls, date_string):\n        \"\"\"Construct a datetime from the output of datetime.isoformat().\"\"\"\n        if not isinstance(date_string, str):\n            raise TypeError('fromisoformat: argument must be str')\n\n        # Split this at the separator\n        dstr = date_string[0:10]\n        tstr = date_string[11:]\n\n        try:\n            date_components = _parse_isoformat_date(dstr)\n        except ValueError:\n            raise ValueError(f'Invalid isoformat string: {date_string!r}')\n\n        if tstr:\n            try:\n                time_components = _parse_isoformat_time(tstr)\n            except ValueError:\n                raise ValueError(f'Invalid isoformat string: {date_string!r}')\n        else:\n            time_components = [0, 0, 0, 0, None]\n\n        return cls(*(date_components + time_components))\n\n    def timetuple(self):\n        \"Return local time tuple compatible with time.localtime().\"\n        dst = self.dst()\n        if dst is None:\n            dst = -1\n        elif dst:\n            dst = 1\n        else:\n            dst = 0\n        return _build_struct_time(self.year, self.month, self.day,\n                                  self.hour, self.minute, self.second,\n                                  dst)\n\n    def _mktime(self):\n        \"\"\"Return integer POSIX timestamp.\"\"\"\n        epoch = datetime(1970, 1, 1)\n        max_fold_seconds = 24 * 3600\n        t = (self - epoch) // timedelta(0, 1)\n        def local(u):\n            y, m, d, hh, mm, ss = _time.localtime(u)[:6]\n            return (datetime(y, m, d, hh, mm, ss) - epoch) // timedelta(0, 1)\n\n        # Our goal is to solve t = local(u) for u.\n        a = local(t) - t\n        u1 = t - a\n        t1 = local(u1)\n        if t1 == t:\n            # We found one solution, but it may not be the one we need.\n            # Look for an earlier solution (if `fold` is 0), or a\n            # later one (if `fold` is 1).\n            u2 = u1 + (-max_fold_seconds, max_fold_seconds)[self.fold]\n            b = local(u2) - u2\n            if a == b:\n                return u1\n        else:\n            b = t1 - u1\n            assert a != b\n        u2 = t - b\n        t2 = local(u2)\n        if t2 == t:\n            return u2\n        if t1 == t:\n            return u1\n        # We have found both offsets a and b, but neither t - a nor t - b is\n        # a solution.  This means t is in the gap.\n        return (max, min)[self.fold](u1, u2)\n\n\n    def timestamp(self):\n        \"Return POSIX timestamp as float\"\n        if self._tzinfo is None:\n            s = self._mktime()\n            return s + self.microsecond / 1e6\n        else:\n            return (self - _EPOCH).total_seconds()\n\n    def utctimetuple(self):\n        \"Return UTC time tuple compatible with time.gmtime().\"\n        offset = self.utcoffset()\n        if offset:\n            self -= offset\n        y, m, d = self.year, self.month, self.day\n        hh, mm, ss = self.hour, self.minute, self.second\n        return _build_struct_time(y, m, d, hh, mm, ss, 0)\n\n    def date(self):\n        \"Return the date part.\"\n        return date(self._year, self._month, self._day)\n\n    def time(self):\n        \"Return the time part, with tzinfo None.\"\n        return time(self.hour, self.minute, self.second, self.microsecond, fold=self.fold)\n\n    def timetz(self):\n        \"Return the time part, with same tzinfo.\"\n        return time(self.hour, self.minute, self.second, self.microsecond,\n                    self._tzinfo, fold=self.fold)\n\n    def replace(self, year=None, month=None, day=None, hour=None,\n                minute=None, second=None, microsecond=None, tzinfo=True,\n                *, fold=None):\n        \"\"\"Return a new datetime with new values for the specified fields.\"\"\"\n        if year is None:\n            year = self.year\n        if month is None:\n            month = self.month\n        if day is None:\n            day = self.day\n        if hour is None:\n            hour = self.hour\n        if minute is None:\n            minute = self.minute\n        if second is None:\n            second = self.second\n        if microsecond is None:\n            microsecond = self.microsecond\n        if tzinfo is True:\n            tzinfo = self.tzinfo\n        if fold is None:\n            fold = self.fold\n        return type(self)(year, month, day, hour, minute, second,\n                          microsecond, tzinfo, fold=fold)\n\n    def _local_timezone(self):\n        if self.tzinfo is None:\n            ts = self._mktime()\n        else:\n            ts = (self - _EPOCH) // timedelta(seconds=1)\n        localtm = _time.localtime(ts)\n        local = datetime(*localtm[:6])\n        # Extract TZ data\n        gmtoff = localtm.tm_gmtoff\n        zone = localtm.tm_zone\n        return timezone(timedelta(seconds=gmtoff), zone)\n\n    def astimezone(self, tz=None):\n        if tz is None:\n            tz = self._local_timezone()\n        elif not isinstance(tz, tzinfo):\n            raise TypeError(\"tz argument must be an instance of tzinfo\")\n\n        mytz = self.tzinfo\n        if mytz is None:\n            mytz = self._local_timezone()\n            myoffset = mytz.utcoffset(self)\n        else:\n            myoffset = mytz.utcoffset(self)\n            if myoffset is None:\n                mytz = self.replace(tzinfo=None)._local_timezone()\n                myoffset = mytz.utcoffset(self)\n\n        if tz is mytz:\n            return self\n\n        # Convert self to UTC, and attach the new time zone object.\n        utc = (self - myoffset).replace(tzinfo=tz)\n\n        # Convert from UTC to tz's local time.\n        return tz.fromutc(utc)\n\n    # Ways to produce a string.\n\n    def ctime(self):\n        \"Return ctime() style string.\"\n        weekday = self.toordinal() % 7 or 7\n        return \"%s %s %2d %02d:%02d:%02d %04d\" % (\n            _DAYNAMES[weekday],\n            _MONTHNAMES[self._month],\n            self._day,\n            self._hour, self._minute, self._second,\n            self._year)\n\n    def isoformat(self, sep='T', timespec='auto'):\n        \"\"\"Return the time formatted according to ISO.\n\n        The full format looks like 'YYYY-MM-DD HH:MM:SS.mmmmmm'.\n        By default, the fractional part is omitted if self.microsecond == 0.\n\n        If self.tzinfo is not None, the UTC offset is also attached, giving\n        giving a full format of 'YYYY-MM-DD HH:MM:SS.mmmmmm+HH:MM'.\n\n        Optional argument sep specifies the separator between date and\n        time, default 'T'.\n\n        The optional argument timespec specifies the number of additional\n        terms of the time to include.\n        \"\"\"\n        s = (\"%04d-%02d-%02d%c\" % (self._year, self._month, self._day, sep) +\n             _format_time(self._hour, self._minute, self._second,\n                          self._microsecond, timespec))\n\n        off = self.utcoffset()\n        tz = _format_offset(off)\n        if tz:\n            s += tz\n\n        return s\n\n    def __repr__(self):\n        \"\"\"Convert to formal string, for repr().\"\"\"\n        L = [self._year, self._month, self._day,  # These are never zero\n             self._hour, self._minute, self._second, self._microsecond]\n        if L[-1] == 0:\n            del L[-1]\n        if L[-1] == 0:\n            del L[-1]\n        s = \"%s.%s(%s)\" % (self.__class__.__module__,\n                           self.__class__.__qualname__,\n                           \", \".join(map(str, L)))\n        if self._tzinfo is not None:\n            assert s[-1:] == \")\"\n            s = s[:-1] + \", tzinfo=%r\" % self._tzinfo + \")\"\n        if self._fold:\n            assert s[-1:] == \")\"\n            s = s[:-1] + \", fold=1)\"\n        return s\n\n    def __str__(self):\n        \"Convert to string, for str().\"\n        return self.isoformat(sep=' ')\n\n    @classmethod\n    def strptime(cls, date_string, format):\n        'string, format -> new datetime parsed from a string (like time.strptime()).'\n        import _strptime\n        return _strptime._strptime_datetime(cls, date_string, format)\n\n    def utcoffset(self):\n        \"\"\"Return the timezone offset as timedelta positive east of UTC (negative west of\n        UTC).\"\"\"\n        if self._tzinfo is None:\n            return None\n        offset = self._tzinfo.utcoffset(self)\n        _check_utc_offset(\"utcoffset\", offset)\n        return offset\n\n    def tzname(self):\n        \"\"\"Return the timezone name.\n\n        Note that the name is 100% informational -- there's no requirement that\n        it mean anything in particular. For example, \"GMT\", \"UTC\", \"-500\",\n        \"-5:00\", \"EDT\", \"US/Eastern\", \"America/New York\" are all valid replies.\n        \"\"\"\n        if self._tzinfo is None:\n            return None\n        name = self._tzinfo.tzname(self)\n        _check_tzname(name)\n        return name\n\n    def dst(self):\n        \"\"\"Return 0 if DST is not in effect, or the DST offset (as timedelta\n        positive eastward) if DST is in effect.\n\n        This is purely informational; the DST offset has already been added to\n        the UTC offset returned by utcoffset() if applicable, so there's no\n        need to consult dst() unless you're interested in displaying the DST\n        info.\n        \"\"\"\n        if self._tzinfo is None:\n            return None\n        offset = self._tzinfo.dst(self)\n        _check_utc_offset(\"dst\", offset)\n        return offset\n\n    # Comparisons of datetime objects with other.\n\n    def __eq__(self, other):\n        if isinstance(other, datetime):\n            return self._cmp(other, allow_mixed=True) == 0\n        elif not isinstance(other, date):\n            return NotImplemented\n        else:\n            return False\n\n    def __le__(self, other):\n        if isinstance(other, datetime):\n            return self._cmp(other) <= 0\n        elif not isinstance(other, date):\n            return NotImplemented\n        else:\n            _cmperror(self, other)\n\n    def __lt__(self, other):\n        if isinstance(other, datetime):\n            return self._cmp(other) < 0\n        elif not isinstance(other, date):\n            return NotImplemented\n        else:\n            _cmperror(self, other)\n\n    def __ge__(self, other):\n        if isinstance(other, datetime):\n            return self._cmp(other) >= 0\n        elif not isinstance(other, date):\n            return NotImplemented\n        else:\n            _cmperror(self, other)\n\n    def __gt__(self, other):\n        if isinstance(other, datetime):\n            return self._cmp(other) > 0\n        elif not isinstance(other, date):\n            return NotImplemented\n        else:\n            _cmperror(self, other)\n\n    def _cmp(self, other, allow_mixed=False):\n        assert isinstance(other, datetime)\n        mytz = self._tzinfo\n        ottz = other._tzinfo\n        myoff = otoff = None\n\n        if mytz is ottz:\n            base_compare = True\n        else:\n            myoff = self.utcoffset()\n            otoff = other.utcoffset()\n            # Assume that allow_mixed means that we are called from __eq__\n            if allow_mixed:\n                if myoff != self.replace(fold=not self.fold).utcoffset():\n                    return 2\n                if otoff != other.replace(fold=not other.fold).utcoffset():\n                    return 2\n            base_compare = myoff == otoff\n\n        if base_compare:\n            return _cmp((self._year, self._month, self._day,\n                         self._hour, self._minute, self._second,\n                         self._microsecond),\n                        (other._year, other._month, other._day,\n                         other._hour, other._minute, other._second,\n                         other._microsecond))\n        if myoff is None or otoff is None:\n            if allow_mixed:\n                return 2 # arbitrary non-zero value\n            else:\n                raise TypeError(\"cannot compare naive and aware datetimes\")\n        # XXX What follows could be done more efficiently...\n        diff = self - other     # this will take offsets into account\n        if diff.days < 0:\n            return -1\n        return diff and 1 or 0\n\n    def __add__(self, other):\n        \"Add a datetime and a timedelta.\"\n        if not isinstance(other, timedelta):\n            return NotImplemented\n        delta = timedelta(self.toordinal(),\n                          hours=self._hour,\n                          minutes=self._minute,\n                          seconds=self._second,\n                          microseconds=self._microsecond)\n        delta += other\n        hour, rem = divmod(delta.seconds, 3600)\n        minute, second = divmod(rem, 60)\n        if 0 < delta.days <= _MAXORDINAL:\n            return type(self).combine(date.fromordinal(delta.days),\n                                      time(hour, minute, second,\n                                           delta.microseconds,\n                                           tzinfo=self._tzinfo))\n        raise OverflowError(\"result out of range\")\n\n    __radd__ = __add__\n\n    def __sub__(self, other):\n        \"Subtract two datetimes, or a datetime and a timedelta.\"\n        if not isinstance(other, datetime):\n            if isinstance(other, timedelta):\n                return self + -other\n            return NotImplemented\n\n        days1 = self.toordinal()\n        days2 = other.toordinal()\n        secs1 = self._second + self._minute * 60 + self._hour * 3600\n        secs2 = other._second + other._minute * 60 + other._hour * 3600\n        base = timedelta(days1 - days2,\n                         secs1 - secs2,\n                         self._microsecond - other._microsecond)\n        if self._tzinfo is other._tzinfo:\n            return base\n        myoff = self.utcoffset()\n        otoff = other.utcoffset()\n        if myoff == otoff:\n            return base\n        if myoff is None or otoff is None:\n            raise TypeError(\"cannot mix naive and timezone-aware time\")\n        return base + otoff - myoff\n\n    def __hash__(self):\n        if self._hashcode == -1:\n            if self.fold:\n                t = self.replace(fold=0)\n            else:\n                t = self\n            tzoff = t.utcoffset()\n            if tzoff is None:\n                self._hashcode = hash(t._getstate()[0])\n            else:\n                days = _ymd2ord(self.year, self.month, self.day)\n                seconds = self.hour * 3600 + self.minute * 60 + self.second\n                self._hashcode = hash(timedelta(days, seconds, self.microsecond) - tzoff)\n        return self._hashcode\n\n    # Pickle support.\n\n    def _getstate(self, protocol=3):\n        yhi, ylo = divmod(self._year, 256)\n        us2, us3 = divmod(self._microsecond, 256)\n        us1, us2 = divmod(us2, 256)\n        m = self._month\n        if self._fold and protocol > 3:\n            m += 128\n        basestate = bytes([yhi, ylo, m, self._day,\n                           self._hour, self._minute, self._second,\n                           us1, us2, us3])\n        if self._tzinfo is None:\n            return (basestate,)\n        else:\n            return (basestate, self._tzinfo)\n\n    def __setstate(self, string, tzinfo):\n        if tzinfo is not None and not isinstance(tzinfo, _tzinfo_class):\n            raise TypeError(\"bad tzinfo state arg\")\n        (yhi, ylo, m, self._day, self._hour,\n         self._minute, self._second, us1, us2, us3) = string\n        if m > 127:\n            self._fold = 1\n            self._month = m - 128\n        else:\n            self._fold = 0\n            self._month = m\n        self._year = yhi * 256 + ylo\n        self._microsecond = (((us1 << 8) | us2) << 8) | us3\n        self._tzinfo = tzinfo\n\n    def __reduce_ex__(self, protocol):\n        return (self.__class__, self._getstate(protocol))\n\n    def __reduce__(self):\n        return self.__reduce_ex__(2)\n\n\ndatetime.min = datetime(1, 1, 1)\ndatetime.max = datetime(9999, 12, 31, 23, 59, 59, 999999)\ndatetime.resolution = timedelta(microseconds=1)\n\n\ndef _isoweek1monday(year):\n    # Helper to calculate the day number of the Monday starting week 1\n    # XXX This could be done more efficiently\n    THURSDAY = 3\n    firstday = _ymd2ord(year, 1, 1)\n    firstweekday = (firstday + 6) % 7  # See weekday() above\n    week1monday = firstday - firstweekday\n    if firstweekday > THURSDAY:\n        week1monday += 7\n    return week1monday\n\n\nclass timezone(tzinfo):\n    __slots__ = '_offset', '_name'\n\n    # Sentinel value to disallow None\n    _Omitted = object()\n    def __new__(cls, offset, name=_Omitted):\n        if not isinstance(offset, timedelta):\n            raise TypeError(\"offset must be a timedelta\")\n        if name is cls._Omitted:\n            if not offset:\n                return cls.utc\n            name = None\n        elif not isinstance(name, str):\n            raise TypeError(\"name must be a string\")\n        if not cls._minoffset <= offset <= cls._maxoffset:\n            raise ValueError(\"offset must be a timedelta \"\n                             \"strictly between -timedelta(hours=24) and \"\n                             \"timedelta(hours=24).\")\n        return cls._create(offset, name)\n\n    @classmethod\n    def _create(cls, offset, name=None):\n        self = tzinfo.__new__(cls)\n        self._offset = offset\n        self._name = name\n        return self\n\n    def __getinitargs__(self):\n        \"\"\"pickle support\"\"\"\n        if self._name is None:\n            return (self._offset,)\n        return (self._offset, self._name)\n\n    def __eq__(self, other):\n        if isinstance(other, timezone):\n            return self._offset == other._offset\n        return NotImplemented\n\n    def __hash__(self):\n        return hash(self._offset)\n\n    def __repr__(self):\n        \"\"\"Convert to formal string, for repr().\n\n        >>> tz = timezone.utc\n        >>> repr(tz)\n        'datetime.timezone.utc'\n        >>> tz = timezone(timedelta(hours=-5), 'EST')\n        >>> repr(tz)\n        \"datetime.timezone(datetime.timedelta(-1, 68400), 'EST')\"\n        \"\"\"\n        if self is self.utc:\n            return 'datetime.timezone.utc'\n        if self._name is None:\n            return \"%s.%s(%r)\" % (self.__class__.__module__,\n                                  self.__class__.__qualname__,\n                                  self._offset)\n        return \"%s.%s(%r, %r)\" % (self.__class__.__module__,\n                                  self.__class__.__qualname__,\n                                  self._offset, self._name)\n\n    def __str__(self):\n        return self.tzname(None)\n\n    def utcoffset(self, dt):\n        if isinstance(dt, datetime) or dt is None:\n            return self._offset\n        raise TypeError(\"utcoffset() argument must be a datetime instance\"\n                        \" or None\")\n\n    def tzname(self, dt):\n        if isinstance(dt, datetime) or dt is None:\n            if self._name is None:\n                return self._name_from_offset(self._offset)\n            return self._name\n        raise TypeError(\"tzname() argument must be a datetime instance\"\n                        \" or None\")\n\n    def dst(self, dt):\n        if isinstance(dt, datetime) or dt is None:\n            return None\n        raise TypeError(\"dst() argument must be a datetime instance\"\n                        \" or None\")\n\n    def fromutc(self, dt):\n        if isinstance(dt, datetime):\n            if dt.tzinfo is not self:\n                raise ValueError(\"fromutc: dt.tzinfo \"\n                                 \"is not self\")\n            return dt + self._offset\n        raise TypeError(\"fromutc() argument must be a datetime instance\"\n                        \" or None\")\n\n    _maxoffset = timedelta(hours=24, microseconds=-1)\n    _minoffset = -_maxoffset\n\n    @staticmethod\n    def _name_from_offset(delta):\n        if not delta:\n            return 'UTC'\n        if delta < timedelta(0):\n            sign = '-'\n            delta = -delta\n        else:\n            sign = '+'\n        hours, rest = divmod(delta, timedelta(hours=1))\n        minutes, rest = divmod(rest, timedelta(minutes=1))\n        seconds = rest.seconds\n        microseconds = rest.microseconds\n        if microseconds:\n            return (f'UTC{sign}{hours:02d}:{minutes:02d}:{seconds:02d}'\n                    f'.{microseconds:06d}')\n        if seconds:\n            return f'UTC{sign}{hours:02d}:{minutes:02d}:{seconds:02d}'\n        return f'UTC{sign}{hours:02d}:{minutes:02d}'\n\ntimezone.utc = timezone._create(timedelta(0))\n# bpo-37642: These attributes are rounded to the nearest minute for backwards\n# compatibility, even though the constructor will accept a wider range of\n# values. This may change in the future.\ntimezone.min = timezone._create(-timedelta(hours=23, minutes=59))\ntimezone.max = timezone._create(timedelta(hours=23, minutes=59))\n_EPOCH = datetime(1970, 1, 1, tzinfo=timezone.utc)\n\n# Some time zone algebra.  For a datetime x, let\n#     x.n = x stripped of its timezone -- its naive time.\n#     x.o = x.utcoffset(), and assuming that doesn't raise an exception or\n#           return None\n#     x.d = x.dst(), and assuming that doesn't raise an exception or\n#           return None\n#     x.s = x's standard offset, x.o - x.d\n#\n# Now some derived rules, where k is a duration (timedelta).\n#\n# 1. x.o = x.s + x.d\n#    This follows from the definition of x.s.\n#\n# 2. If x and y have the same tzinfo member, x.s = y.s.\n#    This is actually a requirement, an assumption we need to make about\n#    sane tzinfo classes.\n#\n# 3. The naive UTC time corresponding to x is x.n - x.o.\n#    This is again a requirement for a sane tzinfo class.\n#\n# 4. (x+k).s = x.s\n#    This follows from #2, and that datimetimetz+timedelta preserves tzinfo.\n#\n# 5. (x+k).n = x.n + k\n#    Again follows from how arithmetic is defined.\n#\n# Now we can explain tz.fromutc(x).  Let's assume it's an interesting case\n# (meaning that the various tzinfo methods exist, and don't blow up or return\n# None when called).\n#\n# The function wants to return a datetime y with timezone tz, equivalent to x.\n# x is already in UTC.\n#\n# By #3, we want\n#\n#     y.n - y.o = x.n                             [1]\n#\n# The algorithm starts by attaching tz to x.n, and calling that y.  So\n# x.n = y.n at the start.  Then it wants to add a duration k to y, so that [1]\n# becomes true; in effect, we want to solve [2] for k:\n#\n#    (y+k).n - (y+k).o = x.n                      [2]\n#\n# By #1, this is the same as\n#\n#    (y+k).n - ((y+k).s + (y+k).d) = x.n          [3]\n#\n# By #5, (y+k).n = y.n + k, which equals x.n + k because x.n=y.n at the start.\n# Substituting that into [3],\n#\n#    x.n + k - (y+k).s - (y+k).d = x.n; the x.n terms cancel, leaving\n#    k - (y+k).s - (y+k).d = 0; rearranging,\n#    k = (y+k).s - (y+k).d; by #4, (y+k).s == y.s, so\n#    k = y.s - (y+k).d\n#\n# On the RHS, (y+k).d can't be computed directly, but y.s can be, and we\n# approximate k by ignoring the (y+k).d term at first.  Note that k can't be\n# very large, since all offset-returning methods return a duration of magnitude\n# less than 24 hours.  For that reason, if y is firmly in std time, (y+k).d must\n# be 0, so ignoring it has no consequence then.\n#\n# In any case, the new value is\n#\n#     z = y + y.s                                 [4]\n#\n# It's helpful to step back at look at [4] from a higher level:  it's simply\n# mapping from UTC to tz's standard time.\n#\n# At this point, if\n#\n#     z.n - z.o = x.n                             [5]\n#\n# we have an equivalent time, and are almost done.  The insecurity here is\n# at the start of daylight time.  Picture US Eastern for concreteness.  The wall\n# time jumps from 1:59 to 3:00, and wall hours of the form 2:MM don't make good\n# sense then.  The docs ask that an Eastern tzinfo class consider such a time to\n# be EDT (because it's \"after 2\"), which is a redundant spelling of 1:MM EST\n# on the day DST starts.  We want to return the 1:MM EST spelling because that's\n# the only spelling that makes sense on the local wall clock.\n#\n# In fact, if [5] holds at this point, we do have the standard-time spelling,\n# but that takes a bit of proof.  We first prove a stronger result.  What's the\n# difference between the LHS and RHS of [5]?  Let\n#\n#     diff = x.n - (z.n - z.o)                    [6]\n#\n# Now\n#     z.n =                       by [4]\n#     (y + y.s).n =               by #5\n#     y.n + y.s =                 since y.n = x.n\n#     x.n + y.s =                 since z and y are have the same tzinfo member,\n#                                     y.s = z.s by #2\n#     x.n + z.s\n#\n# Plugging that back into [6] gives\n#\n#     diff =\n#     x.n - ((x.n + z.s) - z.o) =     expanding\n#     x.n - x.n - z.s + z.o =         cancelling\n#     - z.s + z.o =                   by #2\n#     z.d\n#\n# So diff = z.d.\n#\n# If [5] is true now, diff = 0, so z.d = 0 too, and we have the standard-time\n# spelling we wanted in the endcase described above.  We're done.  Contrarily,\n# if z.d = 0, then we have a UTC equivalent, and are also done.\n#\n# If [5] is not true now, diff = z.d != 0, and z.d is the offset we need to\n# add to z (in effect, z is in tz's standard time, and we need to shift the\n# local clock into tz's daylight time).\n#\n# Let\n#\n#     z' = z + z.d = z + diff                     [7]\n#\n# and we can again ask whether\n#\n#     z'.n - z'.o = x.n                           [8]\n#\n# If so, we're done.  If not, the tzinfo class is insane, according to the\n# assumptions we've made.  This also requires a bit of proof.  As before, let's\n# compute the difference between the LHS and RHS of [8] (and skipping some of\n# the justifications for the kinds of substitutions we've done several times\n# already):\n#\n#     diff' = x.n - (z'.n - z'.o) =           replacing z'.n via [7]\n#             x.n  - (z.n + diff - z'.o) =    replacing diff via [6]\n#             x.n - (z.n + x.n - (z.n - z.o) - z'.o) =\n#             x.n - z.n - x.n + z.n - z.o + z'.o =    cancel x.n\n#             - z.n + z.n - z.o + z'.o =              cancel z.n\n#             - z.o + z'.o =                      #1 twice\n#             -z.s - z.d + z'.s + z'.d =          z and z' have same tzinfo\n#             z'.d - z.d\n#\n# So z' is UTC-equivalent to x iff z'.d = z.d at this point.  If they are equal,\n# we've found the UTC-equivalent so are done.  In fact, we stop with [7] and\n# return z', not bothering to compute z'.d.\n#\n# How could z.d and z'd differ?  z' = z + z.d [7], so merely moving z' by\n# a dst() offset, and starting *from* a time already in DST (we know z.d != 0),\n# would have to change the result dst() returns:  we start in DST, and moving\n# a little further into it takes us out of DST.\n#\n# There isn't a sane case where this can happen.  The closest it gets is at\n# the end of DST, where there's an hour in UTC with no spelling in a hybrid\n# tzinfo class.  In US Eastern, that's 5:MM UTC = 0:MM EST = 1:MM EDT.  During\n# that hour, on an Eastern clock 1:MM is taken as being in standard time (6:MM\n# UTC) because the docs insist on that, but 0:MM is taken as being in daylight\n# time (4:MM UTC).  There is no local time mapping to 5:MM UTC.  The local\n# clock jumps from 1:59 back to 1:00 again, and repeats the 1:MM hour in\n# standard time.  Since that's what the local clock *does*, we want to map both\n# UTC hours 5:MM and 6:MM to 1:MM Eastern.  The result is ambiguous\n# in local time, but so it goes -- it's the way the local clock works.\n#\n# When x = 5:MM UTC is the input to this algorithm, x.o=0, y.o=-5 and y.d=0,\n# so z=0:MM.  z.d=60 (minutes) then, so [5] doesn't hold and we keep going.\n# z' = z + z.d = 1:MM then, and z'.d=0, and z'.d - z.d = -60 != 0 so [8]\n# (correctly) concludes that z' is not UTC-equivalent to x.\n#\n# Because we know z.d said z was in daylight time (else [5] would have held and\n# we would have stopped then), and we know z.d != z'.d (else [8] would have held\n# and we have stopped then), and there are only 2 possible values dst() can\n# return in Eastern, it follows that z'.d must be 0 (which it is in the example,\n# but the reasoning doesn't depend on the example -- it depends on there being\n# two possible dst() outcomes, one zero and the other non-zero).  Therefore\n# z' must be in standard time, and is the spelling we want in this case.\n#\n# Note again that z' is not UTC-equivalent as far as the hybrid tzinfo class is\n# concerned (because it takes z' as being in standard time rather than the\n# daylight time we intend here), but returning it gives the real-life \"local\n# clock repeats an hour\" behavior when mapping the \"unspellable\" UTC hour into\n# tz.\n#\n# When the input is 6:MM, z=1:MM and z.d=0, and we stop at once, again with\n# the 1:MM standard time spelling we want.\n#\n# So how can this break?  One of the assumptions must be violated.  Two\n# possibilities:\n#\n# 1) [2] effectively says that y.s is invariant across all y belong to a given\n#    time zone.  This isn't true if, for political reasons or continental drift,\n#    a region decides to change its base offset from UTC.\n#\n# 2) There may be versions of \"double daylight\" time where the tail end of\n#    the analysis gives up a step too early.  I haven't thought about that\n#    enough to say.\n#\n# In any case, it's clear that the default fromutc() is strong enough to handle\n# \"almost all\" time zones:  so long as the standard offset is invariant, it\n# doesn't matter if daylight time transition points change from year to year, or\n# if daylight time is skipped in some years; it doesn't matter how large or\n# small dst() may get within its bounds; and it doesn't even matter if some\n# perverse time zone returns a negative dst()).  So a breaking case must be\n# pretty bizarre, and a tzinfo subclass can override fromutc() if it is.\n\ntry:\n    from _datetime import *\nexcept ImportError:\n    pass\nelse:\n    # Clean up unused names\n    del (_DAYNAMES, _DAYS_BEFORE_MONTH, _DAYS_IN_MONTH, _DI100Y, _DI400Y,\n         _DI4Y, _EPOCH, _MAXORDINAL, _MONTHNAMES, _build_struct_time,\n         _check_date_fields, _check_int_field, _check_time_fields,\n         _check_tzinfo_arg, _check_tzname, _check_utc_offset, _cmp, _cmperror,\n         _date_class, _days_before_month, _days_before_year, _days_in_month,\n         _format_time, _format_offset, _is_leap, _isoweek1monday, _math,\n         _ord2ymd, _time, _time_class, _tzinfo_class, _wrap_strftime, _ymd2ord,\n         _divide_and_round, _parse_isoformat_date, _parse_isoformat_time,\n         _parse_hh_mm_ss_ff)\n    # XXX Since import * above excludes names that start with _,\n    # docstring does not get overwritten. In the future, it may be\n    # appropriate to maintain a single module level docstring and\n    # remove the following line.\n    from _datetime import __doc__\n"
  },
  {
    "path": "rd/usr/lib/python3.8/dbm/__init__.py",
    "content": "\"\"\"Generic interface to all dbm clones.\n\nUse\n\n        import dbm\n        d = dbm.open(file, 'w', 0o666)\n\nThe returned object is a dbm.gnu, dbm.ndbm or dbm.dumb object, dependent on the\ntype of database being opened (determined by the whichdb function) in the case\nof an existing dbm. If the dbm does not exist and the create or new flag ('c'\nor 'n') was specified, the dbm type will be determined by the availability of\nthe modules (tested in the above order).\n\nIt has the following interface (key and data are strings):\n\n        d[key] = data   # store data at key (may override data at\n                        # existing key)\n        data = d[key]   # retrieve data at key (raise KeyError if no\n                        # such key)\n        del d[key]      # delete data stored at key (raises KeyError\n                        # if no such key)\n        flag = key in d # true if the key exists\n        list = d.keys() # return a list of all existing keys (slow!)\n\nFuture versions may change the order in which implementations are\ntested for existence, and add interfaces to other dbm-like\nimplementations.\n\"\"\"\n\n__all__ = ['open', 'whichdb', 'error']\n\nimport io\nimport os\nimport struct\nimport sys\n\n\nclass error(Exception):\n    pass\n\n_names = ['dbm.gnu', 'dbm.ndbm', 'dbm.dumb']\n_defaultmod = None\n_modules = {}\n\nerror = (error, OSError)\n\ntry:\n    from dbm import ndbm\nexcept ImportError:\n    ndbm = None\n\n\ndef open(file, flag='r', mode=0o666):\n    \"\"\"Open or create database at path given by *file*.\n\n    Optional argument *flag* can be 'r' (default) for read-only access, 'w'\n    for read-write access of an existing database, 'c' for read-write access\n    to a new or existing database, and 'n' for read-write access to a new\n    database.\n\n    Note: 'r' and 'w' fail if the database doesn't exist; 'c' creates it\n    only if it doesn't exist; and 'n' always creates a new database.\n    \"\"\"\n    global _defaultmod\n    if _defaultmod is None:\n        for name in _names:\n            try:\n                mod = __import__(name, fromlist=['open'])\n            except ImportError:\n                continue\n            if not _defaultmod:\n                _defaultmod = mod\n            _modules[name] = mod\n        if not _defaultmod:\n            raise ImportError(\"no dbm clone found; tried %s\" % _names)\n\n    # guess the type of an existing database, if not creating a new one\n    result = whichdb(file) if 'n' not in flag else None\n    if result is None:\n        # db doesn't exist or 'n' flag was specified to create a new db\n        if 'c' in flag or 'n' in flag:\n            # file doesn't exist and the new flag was used so use default type\n            mod = _defaultmod\n        else:\n            raise error[0](\"db file doesn't exist; \"\n                           \"use 'c' or 'n' flag to create a new db\")\n    elif result == \"\":\n        # db type cannot be determined\n        raise error[0](\"db type could not be determined\")\n    elif result not in _modules:\n        raise error[0](\"db type is {0}, but the module is not \"\n                       \"available\".format(result))\n    else:\n        mod = _modules[result]\n    return mod.open(file, flag, mode)\n\n\ndef whichdb(filename):\n    \"\"\"Guess which db package to use to open a db file.\n\n    Return values:\n\n    - None if the database file can't be read;\n    - empty string if the file can be read but can't be recognized\n    - the name of the dbm submodule (e.g. \"ndbm\" or \"gnu\") if recognized.\n\n    Importing the given module may still fail, and opening the\n    database using that module may still fail.\n    \"\"\"\n\n    # Check for ndbm first -- this has a .pag and a .dir file\n    try:\n        f = io.open(filename + \".pag\", \"rb\")\n        f.close()\n        f = io.open(filename + \".dir\", \"rb\")\n        f.close()\n        return \"dbm.ndbm\"\n    except OSError:\n        # some dbm emulations based on Berkeley DB generate a .db file\n        # some do not, but they should be caught by the bsd checks\n        try:\n            f = io.open(filename + \".db\", \"rb\")\n            f.close()\n            # guarantee we can actually open the file using dbm\n            # kind of overkill, but since we are dealing with emulations\n            # it seems like a prudent step\n            if ndbm is not None:\n                d = ndbm.open(filename)\n                d.close()\n                return \"dbm.ndbm\"\n        except OSError:\n            pass\n\n    # Check for dumbdbm next -- this has a .dir and a .dat file\n    try:\n        # First check for presence of files\n        os.stat(filename + \".dat\")\n        size = os.stat(filename + \".dir\").st_size\n        # dumbdbm files with no keys are empty\n        if size == 0:\n            return \"dbm.dumb\"\n        f = io.open(filename + \".dir\", \"rb\")\n        try:\n            if f.read(1) in (b\"'\", b'\"'):\n                return \"dbm.dumb\"\n        finally:\n            f.close()\n    except OSError:\n        pass\n\n    # See if the file exists, return None if not\n    try:\n        f = io.open(filename, \"rb\")\n    except OSError:\n        return None\n\n    with f:\n        # Read the start of the file -- the magic number\n        s16 = f.read(16)\n    s = s16[0:4]\n\n    # Return \"\" if not at least 4 bytes\n    if len(s) != 4:\n        return \"\"\n\n    # Convert to 4-byte int in native byte order -- return \"\" if impossible\n    try:\n        (magic,) = struct.unpack(\"=l\", s)\n    except struct.error:\n        return \"\"\n\n    # Check for GNU dbm\n    if magic in (0x13579ace, 0x13579acd, 0x13579acf):\n        return \"dbm.gnu\"\n\n    # Later versions of Berkeley db hash file have a 12-byte pad in\n    # front of the file type\n    try:\n        (magic,) = struct.unpack(\"=l\", s16[-4:])\n    except struct.error:\n        return \"\"\n\n    # Unknown\n    return \"\"\n\n\nif __name__ == \"__main__\":\n    for filename in sys.argv[1:]:\n        print(whichdb(filename) or \"UNKNOWN\", filename)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/dbm/dumb.py",
    "content": "\"\"\"A dumb and slow but simple dbm clone.\n\nFor database spam, spam.dir contains the index (a text file),\nspam.bak *may* contain a backup of the index (also a text file),\nwhile spam.dat contains the data (a binary file).\n\nXXX TO DO:\n\n- seems to contain a bug when updating...\n\n- reclaim free space (currently, space once occupied by deleted or expanded\nitems is never reused)\n\n- support concurrent access (currently, if two processes take turns making\nupdates, they can mess up the index)\n\n- support efficient access to large databases (currently, the whole index\nis read when the database is opened, and some updates rewrite the whole index)\n\n- support opening for read-only (flag = 'm')\n\n\"\"\"\n\nimport ast as _ast\nimport io as _io\nimport os as _os\nimport collections.abc\n\n__all__ = [\"error\", \"open\"]\n\n_BLOCKSIZE = 512\n\nerror = OSError\n\nclass _Database(collections.abc.MutableMapping):\n\n    # The on-disk directory and data files can remain in mutually\n    # inconsistent states for an arbitrarily long time (see comments\n    # at the end of __setitem__).  This is only repaired when _commit()\n    # gets called.  One place _commit() gets called is from __del__(),\n    # and if that occurs at program shutdown time, module globals may\n    # already have gotten rebound to None.  Since it's crucial that\n    # _commit() finish successfully, we can't ignore shutdown races\n    # here, and _commit() must not reference any globals.\n    _os = _os       # for _commit()\n    _io = _io       # for _commit()\n\n    def __init__(self, filebasename, mode, flag='c'):\n        self._mode = mode\n        self._readonly = (flag == 'r')\n\n        # The directory file is a text file.  Each line looks like\n        #    \"%r, (%d, %d)\\n\" % (key, pos, siz)\n        # where key is the string key, pos is the offset into the dat\n        # file of the associated value's first byte, and siz is the number\n        # of bytes in the associated value.\n        self._dirfile = filebasename + '.dir'\n\n        # The data file is a binary file pointed into by the directory\n        # file, and holds the values associated with keys.  Each value\n        # begins at a _BLOCKSIZE-aligned byte offset, and is a raw\n        # binary 8-bit string value.\n        self._datfile = filebasename + '.dat'\n        self._bakfile = filebasename + '.bak'\n\n        # The index is an in-memory dict, mirroring the directory file.\n        self._index = None  # maps keys to (pos, siz) pairs\n\n        # Handle the creation\n        self._create(flag)\n        self._update(flag)\n\n    def _create(self, flag):\n        if flag == 'n':\n            for filename in (self._datfile, self._bakfile, self._dirfile):\n                try:\n                    _os.remove(filename)\n                except OSError:\n                    pass\n        # Mod by Jack: create data file if needed\n        try:\n            f = _io.open(self._datfile, 'r', encoding=\"Latin-1\")\n        except OSError:\n            if flag not in ('c', 'n'):\n                raise\n            with _io.open(self._datfile, 'w', encoding=\"Latin-1\") as f:\n                self._chmod(self._datfile)\n        else:\n            f.close()\n\n    # Read directory file into the in-memory index dict.\n    def _update(self, flag):\n        self._modified = False\n        self._index = {}\n        try:\n            f = _io.open(self._dirfile, 'r', encoding=\"Latin-1\")\n        except OSError:\n            if flag not in ('c', 'n'):\n                raise\n            self._modified = True\n        else:\n            with f:\n                for line in f:\n                    line = line.rstrip()\n                    key, pos_and_siz_pair = _ast.literal_eval(line)\n                    key = key.encode('Latin-1')\n                    self._index[key] = pos_and_siz_pair\n\n    # Write the index dict to the directory file.  The original directory\n    # file (if any) is renamed with a .bak extension first.  If a .bak\n    # file currently exists, it's deleted.\n    def _commit(self):\n        # CAUTION:  It's vital that _commit() succeed, and _commit() can\n        # be called from __del__().  Therefore we must never reference a\n        # global in this routine.\n        if self._index is None or not self._modified:\n            return  # nothing to do\n\n        try:\n            self._os.unlink(self._bakfile)\n        except OSError:\n            pass\n\n        try:\n            self._os.rename(self._dirfile, self._bakfile)\n        except OSError:\n            pass\n\n        with self._io.open(self._dirfile, 'w', encoding=\"Latin-1\") as f:\n            self._chmod(self._dirfile)\n            for key, pos_and_siz_pair in self._index.items():\n                # Use Latin-1 since it has no qualms with any value in any\n                # position; UTF-8, though, does care sometimes.\n                entry = \"%r, %r\\n\" % (key.decode('Latin-1'), pos_and_siz_pair)\n                f.write(entry)\n\n    sync = _commit\n\n    def _verify_open(self):\n        if self._index is None:\n            raise error('DBM object has already been closed')\n\n    def __getitem__(self, key):\n        if isinstance(key, str):\n            key = key.encode('utf-8')\n        self._verify_open()\n        pos, siz = self._index[key]     # may raise KeyError\n        with _io.open(self._datfile, 'rb') as f:\n            f.seek(pos)\n            dat = f.read(siz)\n        return dat\n\n    # Append val to the data file, starting at a _BLOCKSIZE-aligned\n    # offset.  The data file is first padded with NUL bytes (if needed)\n    # to get to an aligned offset.  Return pair\n    #     (starting offset of val, len(val))\n    def _addval(self, val):\n        with _io.open(self._datfile, 'rb+') as f:\n            f.seek(0, 2)\n            pos = int(f.tell())\n            npos = ((pos + _BLOCKSIZE - 1) // _BLOCKSIZE) * _BLOCKSIZE\n            f.write(b'\\0'*(npos-pos))\n            pos = npos\n            f.write(val)\n        return (pos, len(val))\n\n    # Write val to the data file, starting at offset pos.  The caller\n    # is responsible for ensuring that there's enough room starting at\n    # pos to hold val, without overwriting some other value.  Return\n    # pair (pos, len(val)).\n    def _setval(self, pos, val):\n        with _io.open(self._datfile, 'rb+') as f:\n            f.seek(pos)\n            f.write(val)\n        return (pos, len(val))\n\n    # key is a new key whose associated value starts in the data file\n    # at offset pos and with length siz.  Add an index record to\n    # the in-memory index dict, and append one to the directory file.\n    def _addkey(self, key, pos_and_siz_pair):\n        self._index[key] = pos_and_siz_pair\n        with _io.open(self._dirfile, 'a', encoding=\"Latin-1\") as f:\n            self._chmod(self._dirfile)\n            f.write(\"%r, %r\\n\" % (key.decode(\"Latin-1\"), pos_and_siz_pair))\n\n    def __setitem__(self, key, val):\n        if self._readonly:\n            raise error('The database is opened for reading only')\n        if isinstance(key, str):\n            key = key.encode('utf-8')\n        elif not isinstance(key, (bytes, bytearray)):\n            raise TypeError(\"keys must be bytes or strings\")\n        if isinstance(val, str):\n            val = val.encode('utf-8')\n        elif not isinstance(val, (bytes, bytearray)):\n            raise TypeError(\"values must be bytes or strings\")\n        self._verify_open()\n        self._modified = True\n        if key not in self._index:\n            self._addkey(key, self._addval(val))\n        else:\n            # See whether the new value is small enough to fit in the\n            # (padded) space currently occupied by the old value.\n            pos, siz = self._index[key]\n            oldblocks = (siz + _BLOCKSIZE - 1) // _BLOCKSIZE\n            newblocks = (len(val) + _BLOCKSIZE - 1) // _BLOCKSIZE\n            if newblocks <= oldblocks:\n                self._index[key] = self._setval(pos, val)\n            else:\n                # The new value doesn't fit in the (padded) space used\n                # by the old value.  The blocks used by the old value are\n                # forever lost.\n                self._index[key] = self._addval(val)\n\n            # Note that _index may be out of synch with the directory\n            # file now:  _setval() and _addval() don't update the directory\n            # file.  This also means that the on-disk directory and data\n            # files are in a mutually inconsistent state, and they'll\n            # remain that way until _commit() is called.  Note that this\n            # is a disaster (for the database) if the program crashes\n            # (so that _commit() never gets called).\n\n    def __delitem__(self, key):\n        if self._readonly:\n            raise error('The database is opened for reading only')\n        if isinstance(key, str):\n            key = key.encode('utf-8')\n        self._verify_open()\n        self._modified = True\n        # The blocks used by the associated value are lost.\n        del self._index[key]\n        # XXX It's unclear why we do a _commit() here (the code always\n        # XXX has, so I'm not changing it).  __setitem__ doesn't try to\n        # XXX keep the directory file in synch.  Why should we?  Or\n        # XXX why shouldn't __setitem__?\n        self._commit()\n\n    def keys(self):\n        try:\n            return list(self._index)\n        except TypeError:\n            raise error('DBM object has already been closed') from None\n\n    def items(self):\n        self._verify_open()\n        return [(key, self[key]) for key in self._index.keys()]\n\n    def __contains__(self, key):\n        if isinstance(key, str):\n            key = key.encode('utf-8')\n        try:\n            return key in self._index\n        except TypeError:\n            if self._index is None:\n                raise error('DBM object has already been closed') from None\n            else:\n                raise\n\n    def iterkeys(self):\n        try:\n            return iter(self._index)\n        except TypeError:\n            raise error('DBM object has already been closed') from None\n    __iter__ = iterkeys\n\n    def __len__(self):\n        try:\n            return len(self._index)\n        except TypeError:\n            raise error('DBM object has already been closed') from None\n\n    def close(self):\n        try:\n            self._commit()\n        finally:\n            self._index = self._datfile = self._dirfile = self._bakfile = None\n\n    __del__ = close\n\n    def _chmod(self, file):\n        self._os.chmod(file, self._mode)\n\n    def __enter__(self):\n        return self\n\n    def __exit__(self, *args):\n        self.close()\n\n\ndef open(file, flag='c', mode=0o666):\n    \"\"\"Open the database file, filename, and return corresponding object.\n\n    The flag argument, used to control how the database is opened in the\n    other DBM implementations, supports only the semantics of 'c' and 'n'\n    values.  Other values will default to the semantics of 'c' value:\n    the database will always opened for update and will be created if it\n    does not exist.\n\n    The optional mode argument is the UNIX mode of the file, used only when\n    the database has to be created.  It defaults to octal code 0o666 (and\n    will be modified by the prevailing umask).\n\n    \"\"\"\n\n    # Modify mode depending on the umask\n    try:\n        um = _os.umask(0)\n        _os.umask(um)\n    except AttributeError:\n        pass\n    else:\n        # Turn off any bits that are set in the umask\n        mode = mode & (~um)\n    if flag not in ('r', 'w', 'c', 'n'):\n        raise ValueError(\"Flag must be one of 'r', 'w', 'c', or 'n'\")\n    return _Database(file, mode, flag=flag)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/dbm/gnu.py",
    "content": "\"\"\"Provide the _gdbm module as a dbm submodule.\"\"\"\n\nfrom _gdbm import *\n"
  },
  {
    "path": "rd/usr/lib/python3.8/dbm/ndbm.py",
    "content": "\"\"\"Provide the _dbm module as a dbm submodule.\"\"\"\n\nfrom _dbm import *\n"
  },
  {
    "path": "rd/usr/lib/python3.8/decimal.py",
    "content": "\ntry:\n    from _decimal import *\n    from _decimal import __doc__\n    from _decimal import __version__\n    from _decimal import __libmpdec_version__\nexcept ImportError:\n    from _pydecimal import *\n    from _pydecimal import __doc__\n    from _pydecimal import __version__\n    from _pydecimal import __libmpdec_version__\n"
  },
  {
    "path": "rd/usr/lib/python3.8/dis.py",
    "content": "\"\"\"Disassembler of Python byte code into mnemonics.\"\"\"\n\nimport sys\nimport types\nimport collections\nimport io\n\nfrom opcode import *\nfrom opcode import __all__ as _opcodes_all\n\n__all__ = [\"code_info\", \"dis\", \"disassemble\", \"distb\", \"disco\",\n           \"findlinestarts\", \"findlabels\", \"show_code\",\n           \"get_instructions\", \"Instruction\", \"Bytecode\"] + _opcodes_all\ndel _opcodes_all\n\n_have_code = (types.MethodType, types.FunctionType, types.CodeType,\n              classmethod, staticmethod, type)\n\nFORMAT_VALUE = opmap['FORMAT_VALUE']\nFORMAT_VALUE_CONVERTERS = (\n    (None, ''),\n    (str, 'str'),\n    (repr, 'repr'),\n    (ascii, 'ascii'),\n)\nMAKE_FUNCTION = opmap['MAKE_FUNCTION']\nMAKE_FUNCTION_FLAGS = ('defaults', 'kwdefaults', 'annotations', 'closure')\n\n\ndef _try_compile(source, name):\n    \"\"\"Attempts to compile the given source, first as an expression and\n       then as a statement if the first approach fails.\n\n       Utility function to accept strings in functions that otherwise\n       expect code objects\n    \"\"\"\n    try:\n        c = compile(source, name, 'eval')\n    except SyntaxError:\n        c = compile(source, name, 'exec')\n    return c\n\ndef dis(x=None, *, file=None, depth=None):\n    \"\"\"Disassemble classes, methods, functions, and other compiled objects.\n\n    With no argument, disassemble the last traceback.\n\n    Compiled objects currently include generator objects, async generator\n    objects, and coroutine objects, all of which store their code object\n    in a special attribute.\n    \"\"\"\n    if x is None:\n        distb(file=file)\n        return\n    # Extract functions from methods.\n    if hasattr(x, '__func__'):\n        x = x.__func__\n    # Extract compiled code objects from...\n    if hasattr(x, '__code__'):  # ...a function, or\n        x = x.__code__\n    elif hasattr(x, 'gi_code'):  #...a generator object, or\n        x = x.gi_code\n    elif hasattr(x, 'ag_code'):  #...an asynchronous generator object, or\n        x = x.ag_code\n    elif hasattr(x, 'cr_code'):  #...a coroutine.\n        x = x.cr_code\n    # Perform the disassembly.\n    if hasattr(x, '__dict__'):  # Class or module\n        items = sorted(x.__dict__.items())\n        for name, x1 in items:\n            if isinstance(x1, _have_code):\n                print(\"Disassembly of %s:\" % name, file=file)\n                try:\n                    dis(x1, file=file, depth=depth)\n                except TypeError as msg:\n                    print(\"Sorry:\", msg, file=file)\n                print(file=file)\n    elif hasattr(x, 'co_code'): # Code object\n        _disassemble_recursive(x, file=file, depth=depth)\n    elif isinstance(x, (bytes, bytearray)): # Raw bytecode\n        _disassemble_bytes(x, file=file)\n    elif isinstance(x, str):    # Source code\n        _disassemble_str(x, file=file, depth=depth)\n    else:\n        raise TypeError(\"don't know how to disassemble %s objects\" %\n                        type(x).__name__)\n\ndef distb(tb=None, *, file=None):\n    \"\"\"Disassemble a traceback (default: last traceback).\"\"\"\n    if tb is None:\n        try:\n            tb = sys.last_traceback\n        except AttributeError:\n            raise RuntimeError(\"no last traceback to disassemble\") from None\n        while tb.tb_next: tb = tb.tb_next\n    disassemble(tb.tb_frame.f_code, tb.tb_lasti, file=file)\n\n# The inspect module interrogates this dictionary to build its\n# list of CO_* constants. It is also used by pretty_flags to\n# turn the co_flags field into a human readable list.\nCOMPILER_FLAG_NAMES = {\n     1: \"OPTIMIZED\",\n     2: \"NEWLOCALS\",\n     4: \"VARARGS\",\n     8: \"VARKEYWORDS\",\n    16: \"NESTED\",\n    32: \"GENERATOR\",\n    64: \"NOFREE\",\n   128: \"COROUTINE\",\n   256: \"ITERABLE_COROUTINE\",\n   512: \"ASYNC_GENERATOR\",\n}\n\ndef pretty_flags(flags):\n    \"\"\"Return pretty representation of code flags.\"\"\"\n    names = []\n    for i in range(32):\n        flag = 1<<i\n        if flags & flag:\n            names.append(COMPILER_FLAG_NAMES.get(flag, hex(flag)))\n            flags ^= flag\n            if not flags:\n                break\n    else:\n        names.append(hex(flags))\n    return \", \".join(names)\n\ndef _get_code_object(x):\n    \"\"\"Helper to handle methods, compiled or raw code objects, and strings.\"\"\"\n    # Extract functions from methods.\n    if hasattr(x, '__func__'):\n        x = x.__func__\n    # Extract compiled code objects from...\n    if hasattr(x, '__code__'):  # ...a function, or\n        x = x.__code__\n    elif hasattr(x, 'gi_code'):  #...a generator object, or\n        x = x.gi_code\n    elif hasattr(x, 'ag_code'):  #...an asynchronous generator object, or\n        x = x.ag_code\n    elif hasattr(x, 'cr_code'):  #...a coroutine.\n        x = x.cr_code\n    # Handle source code.\n    if isinstance(x, str):\n        x = _try_compile(x, \"<disassembly>\")\n    # By now, if we don't have a code object, we can't disassemble x.\n    if hasattr(x, 'co_code'):\n        return x\n    raise TypeError(\"don't know how to disassemble %s objects\" %\n                    type(x).__name__)\n\ndef code_info(x):\n    \"\"\"Formatted details of methods, functions, or code.\"\"\"\n    return _format_code_info(_get_code_object(x))\n\ndef _format_code_info(co):\n    lines = []\n    lines.append(\"Name:              %s\" % co.co_name)\n    lines.append(\"Filename:          %s\" % co.co_filename)\n    lines.append(\"Argument count:    %s\" % co.co_argcount)\n    lines.append(\"Positional-only arguments: %s\" % co.co_posonlyargcount)\n    lines.append(\"Kw-only arguments: %s\" % co.co_kwonlyargcount)\n    lines.append(\"Number of locals:  %s\" % co.co_nlocals)\n    lines.append(\"Stack size:        %s\" % co.co_stacksize)\n    lines.append(\"Flags:             %s\" % pretty_flags(co.co_flags))\n    if co.co_consts:\n        lines.append(\"Constants:\")\n        for i_c in enumerate(co.co_consts):\n            lines.append(\"%4d: %r\" % i_c)\n    if co.co_names:\n        lines.append(\"Names:\")\n        for i_n in enumerate(co.co_names):\n            lines.append(\"%4d: %s\" % i_n)\n    if co.co_varnames:\n        lines.append(\"Variable names:\")\n        for i_n in enumerate(co.co_varnames):\n            lines.append(\"%4d: %s\" % i_n)\n    if co.co_freevars:\n        lines.append(\"Free variables:\")\n        for i_n in enumerate(co.co_freevars):\n            lines.append(\"%4d: %s\" % i_n)\n    if co.co_cellvars:\n        lines.append(\"Cell variables:\")\n        for i_n in enumerate(co.co_cellvars):\n            lines.append(\"%4d: %s\" % i_n)\n    return \"\\n\".join(lines)\n\ndef show_code(co, *, file=None):\n    \"\"\"Print details of methods, functions, or code to *file*.\n\n    If *file* is not provided, the output is printed on stdout.\n    \"\"\"\n    print(code_info(co), file=file)\n\n_Instruction = collections.namedtuple(\"_Instruction\",\n     \"opname opcode arg argval argrepr offset starts_line is_jump_target\")\n\n_Instruction.opname.__doc__ = \"Human readable name for operation\"\n_Instruction.opcode.__doc__ = \"Numeric code for operation\"\n_Instruction.arg.__doc__ = \"Numeric argument to operation (if any), otherwise None\"\n_Instruction.argval.__doc__ = \"Resolved arg value (if known), otherwise same as arg\"\n_Instruction.argrepr.__doc__ = \"Human readable description of operation argument\"\n_Instruction.offset.__doc__ = \"Start index of operation within bytecode sequence\"\n_Instruction.starts_line.__doc__ = \"Line started by this opcode (if any), otherwise None\"\n_Instruction.is_jump_target.__doc__ = \"True if other code jumps to here, otherwise False\"\n\n_OPNAME_WIDTH = 20\n_OPARG_WIDTH = 5\n\nclass Instruction(_Instruction):\n    \"\"\"Details for a bytecode operation\n\n       Defined fields:\n         opname - human readable name for operation\n         opcode - numeric code for operation\n         arg - numeric argument to operation (if any), otherwise None\n         argval - resolved arg value (if known), otherwise same as arg\n         argrepr - human readable description of operation argument\n         offset - start index of operation within bytecode sequence\n         starts_line - line started by this opcode (if any), otherwise None\n         is_jump_target - True if other code jumps to here, otherwise False\n    \"\"\"\n\n    def _disassemble(self, lineno_width=3, mark_as_current=False, offset_width=4):\n        \"\"\"Format instruction details for inclusion in disassembly output\n\n        *lineno_width* sets the width of the line number field (0 omits it)\n        *mark_as_current* inserts a '-->' marker arrow as part of the line\n        *offset_width* sets the width of the instruction offset field\n        \"\"\"\n        fields = []\n        # Column: Source code line number\n        if lineno_width:\n            if self.starts_line is not None:\n                lineno_fmt = \"%%%dd\" % lineno_width\n                fields.append(lineno_fmt % self.starts_line)\n            else:\n                fields.append(' ' * lineno_width)\n        # Column: Current instruction indicator\n        if mark_as_current:\n            fields.append('-->')\n        else:\n            fields.append('   ')\n        # Column: Jump target marker\n        if self.is_jump_target:\n            fields.append('>>')\n        else:\n            fields.append('  ')\n        # Column: Instruction offset from start of code sequence\n        fields.append(repr(self.offset).rjust(offset_width))\n        # Column: Opcode name\n        fields.append(self.opname.ljust(_OPNAME_WIDTH))\n        # Column: Opcode argument\n        if self.arg is not None:\n            fields.append(repr(self.arg).rjust(_OPARG_WIDTH))\n            # Column: Opcode argument details\n            if self.argrepr:\n                fields.append('(' + self.argrepr + ')')\n        return ' '.join(fields).rstrip()\n\n\ndef get_instructions(x, *, first_line=None):\n    \"\"\"Iterator for the opcodes in methods, functions or code\n\n    Generates a series of Instruction named tuples giving the details of\n    each operations in the supplied code.\n\n    If *first_line* is not None, it indicates the line number that should\n    be reported for the first source line in the disassembled code.\n    Otherwise, the source line information (if any) is taken directly from\n    the disassembled code object.\n    \"\"\"\n    co = _get_code_object(x)\n    cell_names = co.co_cellvars + co.co_freevars\n    linestarts = dict(findlinestarts(co))\n    if first_line is not None:\n        line_offset = first_line - co.co_firstlineno\n    else:\n        line_offset = 0\n    return _get_instructions_bytes(co.co_code, co.co_varnames, co.co_names,\n                                   co.co_consts, cell_names, linestarts,\n                                   line_offset)\n\ndef _get_const_info(const_index, const_list):\n    \"\"\"Helper to get optional details about const references\n\n       Returns the dereferenced constant and its repr if the constant\n       list is defined.\n       Otherwise returns the constant index and its repr().\n    \"\"\"\n    argval = const_index\n    if const_list is not None:\n        argval = const_list[const_index]\n    return argval, repr(argval)\n\ndef _get_name_info(name_index, name_list):\n    \"\"\"Helper to get optional details about named references\n\n       Returns the dereferenced name as both value and repr if the name\n       list is defined.\n       Otherwise returns the name index and its repr().\n    \"\"\"\n    argval = name_index\n    if name_list is not None:\n        argval = name_list[name_index]\n        argrepr = argval\n    else:\n        argrepr = repr(argval)\n    return argval, argrepr\n\n\ndef _get_instructions_bytes(code, varnames=None, names=None, constants=None,\n                      cells=None, linestarts=None, line_offset=0):\n    \"\"\"Iterate over the instructions in a bytecode string.\n\n    Generates a sequence of Instruction namedtuples giving the details of each\n    opcode.  Additional information about the code's runtime environment\n    (e.g. variable names, constants) can be specified using optional\n    arguments.\n\n    \"\"\"\n    labels = findlabels(code)\n    starts_line = None\n    for offset, op, arg in _unpack_opargs(code):\n        if linestarts is not None:\n            starts_line = linestarts.get(offset, None)\n            if starts_line is not None:\n                starts_line += line_offset\n        is_jump_target = offset in labels\n        argval = None\n        argrepr = ''\n        if arg is not None:\n            #  Set argval to the dereferenced value of the argument when\n            #  available, and argrepr to the string representation of argval.\n            #    _disassemble_bytes needs the string repr of the\n            #    raw name index for LOAD_GLOBAL, LOAD_CONST, etc.\n            argval = arg\n            if op in hasconst:\n                argval, argrepr = _get_const_info(arg, constants)\n            elif op in hasname:\n                argval, argrepr = _get_name_info(arg, names)\n            elif op in hasjrel:\n                argval = offset + 2 + arg\n                argrepr = \"to \" + repr(argval)\n            elif op in haslocal:\n                argval, argrepr = _get_name_info(arg, varnames)\n            elif op in hascompare:\n                argval = cmp_op[arg]\n                argrepr = argval\n            elif op in hasfree:\n                argval, argrepr = _get_name_info(arg, cells)\n            elif op == FORMAT_VALUE:\n                argval, argrepr = FORMAT_VALUE_CONVERTERS[arg & 0x3]\n                argval = (argval, bool(arg & 0x4))\n                if argval[1]:\n                    if argrepr:\n                        argrepr += ', '\n                    argrepr += 'with format'\n            elif op == MAKE_FUNCTION:\n                argrepr = ', '.join(s for i, s in enumerate(MAKE_FUNCTION_FLAGS)\n                                    if arg & (1<<i))\n        yield Instruction(opname[op], op,\n                          arg, argval, argrepr,\n                          offset, starts_line, is_jump_target)\n\ndef disassemble(co, lasti=-1, *, file=None):\n    \"\"\"Disassemble a code object.\"\"\"\n    cell_names = co.co_cellvars + co.co_freevars\n    linestarts = dict(findlinestarts(co))\n    _disassemble_bytes(co.co_code, lasti, co.co_varnames, co.co_names,\n                       co.co_consts, cell_names, linestarts, file=file)\n\ndef _disassemble_recursive(co, *, file=None, depth=None):\n    disassemble(co, file=file)\n    if depth is None or depth > 0:\n        if depth is not None:\n            depth = depth - 1\n        for x in co.co_consts:\n            if hasattr(x, 'co_code'):\n                print(file=file)\n                print(\"Disassembly of %r:\" % (x,), file=file)\n                _disassemble_recursive(x, file=file, depth=depth)\n\ndef _disassemble_bytes(code, lasti=-1, varnames=None, names=None,\n                       constants=None, cells=None, linestarts=None,\n                       *, file=None, line_offset=0):\n    # Omit the line number column entirely if we have no line number info\n    show_lineno = linestarts is not None\n    if show_lineno:\n        maxlineno = max(linestarts.values()) + line_offset\n        if maxlineno >= 1000:\n            lineno_width = len(str(maxlineno))\n        else:\n            lineno_width = 3\n    else:\n        lineno_width = 0\n    maxoffset = len(code) - 2\n    if maxoffset >= 10000:\n        offset_width = len(str(maxoffset))\n    else:\n        offset_width = 4\n    for instr in _get_instructions_bytes(code, varnames, names,\n                                         constants, cells, linestarts,\n                                         line_offset=line_offset):\n        new_source_line = (show_lineno and\n                           instr.starts_line is not None and\n                           instr.offset > 0)\n        if new_source_line:\n            print(file=file)\n        is_current_instr = instr.offset == lasti\n        print(instr._disassemble(lineno_width, is_current_instr, offset_width),\n              file=file)\n\ndef _disassemble_str(source, **kwargs):\n    \"\"\"Compile the source string, then disassemble the code object.\"\"\"\n    _disassemble_recursive(_try_compile(source, '<dis>'), **kwargs)\n\ndisco = disassemble                     # XXX For backwards compatibility\n\ndef _unpack_opargs(code):\n    extended_arg = 0\n    for i in range(0, len(code), 2):\n        op = code[i]\n        if op >= HAVE_ARGUMENT:\n            arg = code[i+1] | extended_arg\n            extended_arg = (arg << 8) if op == EXTENDED_ARG else 0\n        else:\n            arg = None\n        yield (i, op, arg)\n\ndef findlabels(code):\n    \"\"\"Detect all offsets in a byte code which are jump targets.\n\n    Return the list of offsets.\n\n    \"\"\"\n    labels = []\n    for offset, op, arg in _unpack_opargs(code):\n        if arg is not None:\n            if op in hasjrel:\n                label = offset + 2 + arg\n            elif op in hasjabs:\n                label = arg\n            else:\n                continue\n            if label not in labels:\n                labels.append(label)\n    return labels\n\ndef findlinestarts(code):\n    \"\"\"Find the offsets in a byte code which are start of lines in the source.\n\n    Generate pairs (offset, lineno) as described in Python/compile.c.\n\n    \"\"\"\n    byte_increments = code.co_lnotab[0::2]\n    line_increments = code.co_lnotab[1::2]\n    bytecode_len = len(code.co_code)\n\n    lastlineno = None\n    lineno = code.co_firstlineno\n    addr = 0\n    for byte_incr, line_incr in zip(byte_increments, line_increments):\n        if byte_incr:\n            if lineno != lastlineno:\n                yield (addr, lineno)\n                lastlineno = lineno\n            addr += byte_incr\n            if addr >= bytecode_len:\n                # The rest of the lnotab byte offsets are past the end of\n                # the bytecode, so the lines were optimized away.\n                return\n        if line_incr >= 0x80:\n            # line_increments is an array of 8-bit signed integers\n            line_incr -= 0x100\n        lineno += line_incr\n    if lineno != lastlineno:\n        yield (addr, lineno)\n\nclass Bytecode:\n    \"\"\"The bytecode operations of a piece of code\n\n    Instantiate this with a function, method, other compiled object, string of\n    code, or a code object (as returned by compile()).\n\n    Iterating over this yields the bytecode operations as Instruction instances.\n    \"\"\"\n    def __init__(self, x, *, first_line=None, current_offset=None):\n        self.codeobj = co = _get_code_object(x)\n        if first_line is None:\n            self.first_line = co.co_firstlineno\n            self._line_offset = 0\n        else:\n            self.first_line = first_line\n            self._line_offset = first_line - co.co_firstlineno\n        self._cell_names = co.co_cellvars + co.co_freevars\n        self._linestarts = dict(findlinestarts(co))\n        self._original_object = x\n        self.current_offset = current_offset\n\n    def __iter__(self):\n        co = self.codeobj\n        return _get_instructions_bytes(co.co_code, co.co_varnames, co.co_names,\n                                       co.co_consts, self._cell_names,\n                                       self._linestarts,\n                                       line_offset=self._line_offset)\n\n    def __repr__(self):\n        return \"{}({!r})\".format(self.__class__.__name__,\n                                 self._original_object)\n\n    @classmethod\n    def from_traceback(cls, tb):\n        \"\"\" Construct a Bytecode from the given traceback \"\"\"\n        while tb.tb_next:\n            tb = tb.tb_next\n        return cls(tb.tb_frame.f_code, current_offset=tb.tb_lasti)\n\n    def info(self):\n        \"\"\"Return formatted information about the code object.\"\"\"\n        return _format_code_info(self.codeobj)\n\n    def dis(self):\n        \"\"\"Return a formatted view of the bytecode operations.\"\"\"\n        co = self.codeobj\n        if self.current_offset is not None:\n            offset = self.current_offset\n        else:\n            offset = -1\n        with io.StringIO() as output:\n            _disassemble_bytes(co.co_code, varnames=co.co_varnames,\n                               names=co.co_names, constants=co.co_consts,\n                               cells=self._cell_names,\n                               linestarts=self._linestarts,\n                               line_offset=self._line_offset,\n                               file=output,\n                               lasti=offset)\n            return output.getvalue()\n\n\ndef _test():\n    \"\"\"Simple test program to disassemble a file.\"\"\"\n    import argparse\n\n    parser = argparse.ArgumentParser()\n    parser.add_argument('infile', type=argparse.FileType(), nargs='?', default='-')\n    args = parser.parse_args()\n    with args.infile as infile:\n        source = infile.read()\n    code = compile(source, args.infile.name, \"exec\")\n    dis(code)\n\nif __name__ == \"__main__\":\n    _test()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/dummy_threading.py",
    "content": "\"\"\"Faux ``threading`` version using ``dummy_thread`` instead of ``thread``.\n\nThe module ``_dummy_threading`` is added to ``sys.modules`` in order\nto not have ``threading`` considered imported.  Had ``threading`` been\ndirectly imported it would have made all subsequent imports succeed\nregardless of whether ``_thread`` was available which is not desired.\n\n\"\"\"\nfrom sys import modules as sys_modules\n\nimport _dummy_thread\n\n# Declaring now so as to not have to nest ``try``s to get proper clean-up.\nholding_thread = False\nholding_threading = False\nholding__threading_local = False\n\ntry:\n    # Could have checked if ``_thread`` was not in sys.modules and gone\n    # a different route, but decided to mirror technique used with\n    # ``threading`` below.\n    if '_thread' in sys_modules:\n        held_thread = sys_modules['_thread']\n        holding_thread = True\n    # Must have some module named ``_thread`` that implements its API\n    # in order to initially import ``threading``.\n    sys_modules['_thread'] = sys_modules['_dummy_thread']\n\n    if 'threading' in sys_modules:\n        # If ``threading`` is already imported, might as well prevent\n        # trying to import it more than needed by saving it if it is\n        # already imported before deleting it.\n        held_threading = sys_modules['threading']\n        holding_threading = True\n        del sys_modules['threading']\n\n    if '_threading_local' in sys_modules:\n        # If ``_threading_local`` is already imported, might as well prevent\n        # trying to import it more than needed by saving it if it is\n        # already imported before deleting it.\n        held__threading_local = sys_modules['_threading_local']\n        holding__threading_local = True\n        del sys_modules['_threading_local']\n\n    import threading\n    # Need a copy of the code kept somewhere...\n    sys_modules['_dummy_threading'] = sys_modules['threading']\n    del sys_modules['threading']\n    sys_modules['_dummy__threading_local'] = sys_modules['_threading_local']\n    del sys_modules['_threading_local']\n    from _dummy_threading import *\n    from _dummy_threading import __all__\n\nfinally:\n    # Put back ``threading`` if we overwrote earlier\n\n    if holding_threading:\n        sys_modules['threading'] = held_threading\n        del held_threading\n    del holding_threading\n\n    # Put back ``_threading_local`` if we overwrote earlier\n\n    if holding__threading_local:\n        sys_modules['_threading_local'] = held__threading_local\n        del held__threading_local\n    del holding__threading_local\n\n    # Put back ``thread`` if we overwrote, else del the entry we made\n    if holding_thread:\n        sys_modules['_thread'] = held_thread\n        del held_thread\n    else:\n        del sys_modules['_thread']\n    del holding_thread\n\n    del _dummy_thread\n    del sys_modules\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/__init__.py",
    "content": "\"\"\" Standard \"encodings\" Package\n\n    Standard Python encoding modules are stored in this package\n    directory.\n\n    Codec modules must have names corresponding to normalized encoding\n    names as defined in the normalize_encoding() function below, e.g.\n    'utf-8' must be implemented by the module 'utf_8.py'.\n\n    Each codec module must export the following interface:\n\n    * getregentry() -> codecs.CodecInfo object\n    The getregentry() API must return a CodecInfo object with encoder, decoder,\n    incrementalencoder, incrementaldecoder, streamwriter and streamreader\n    attributes which adhere to the Python Codec Interface Standard.\n\n    In addition, a module may optionally also define the following\n    APIs which are then used by the package's codec search function:\n\n    * getaliases() -> sequence of encoding name strings to use as aliases\n\n    Alias names returned by getaliases() must be normalized encoding\n    names as defined by normalize_encoding().\n\nWritten by Marc-Andre Lemburg (mal@lemburg.com).\n\n(c) Copyright CNRI, All Rights Reserved. NO WARRANTY.\n\n\"\"\"#\"\n\nimport codecs\nimport sys\nfrom . import aliases\n\n_cache = {}\n_unknown = '--unknown--'\n_import_tail = ['*']\n_aliases = aliases.aliases\n\nclass CodecRegistryError(LookupError, SystemError):\n    pass\n\ndef normalize_encoding(encoding):\n\n    \"\"\" Normalize an encoding name.\n\n        Normalization works as follows: all non-alphanumeric\n        characters except the dot used for Python package names are\n        collapsed and replaced with a single underscore, e.g. '  -;#'\n        becomes '_'. Leading and trailing underscores are removed.\n\n        Note that encoding names should be ASCII only.\n\n    \"\"\"\n    if isinstance(encoding, bytes):\n        encoding = str(encoding, \"ascii\")\n\n    chars = []\n    punct = False\n    for c in encoding:\n        if c.isalnum() or c == '.':\n            if punct and chars:\n                chars.append('_')\n            chars.append(c)\n            punct = False\n        else:\n            punct = True\n    return ''.join(chars)\n\ndef search_function(encoding):\n\n    # Cache lookup\n    entry = _cache.get(encoding, _unknown)\n    if entry is not _unknown:\n        return entry\n\n    # Import the module:\n    #\n    # First try to find an alias for the normalized encoding\n    # name and lookup the module using the aliased name, then try to\n    # lookup the module using the standard import scheme, i.e. first\n    # try in the encodings package, then at top-level.\n    #\n    norm_encoding = normalize_encoding(encoding)\n    aliased_encoding = _aliases.get(norm_encoding) or \\\n                       _aliases.get(norm_encoding.replace('.', '_'))\n    if aliased_encoding is not None:\n        modnames = [aliased_encoding,\n                    norm_encoding]\n    else:\n        modnames = [norm_encoding]\n    for modname in modnames:\n        if not modname or '.' in modname:\n            continue\n        try:\n            # Import is absolute to prevent the possibly malicious import of a\n            # module with side-effects that is not in the 'encodings' package.\n            mod = __import__('encodings.' + modname, fromlist=_import_tail,\n                             level=0)\n        except ImportError:\n            # ImportError may occur because 'encodings.(modname)' does not exist,\n            # or because it imports a name that does not exist (see mbcs and oem)\n            pass\n        else:\n            break\n    else:\n        mod = None\n\n    try:\n        getregentry = mod.getregentry\n    except AttributeError:\n        # Not a codec module\n        mod = None\n\n    if mod is None:\n        # Cache misses\n        _cache[encoding] = None\n        return None\n\n    # Now ask the module for the registry entry\n    entry = getregentry()\n    if not isinstance(entry, codecs.CodecInfo):\n        if not 4 <= len(entry) <= 7:\n            raise CodecRegistryError('module \"%s\" (%s) failed to register'\n                                     % (mod.__name__, mod.__file__))\n        if not callable(entry[0]) or not callable(entry[1]) or \\\n           (entry[2] is not None and not callable(entry[2])) or \\\n           (entry[3] is not None and not callable(entry[3])) or \\\n           (len(entry) > 4 and entry[4] is not None and not callable(entry[4])) or \\\n           (len(entry) > 5 and entry[5] is not None and not callable(entry[5])):\n            raise CodecRegistryError('incompatible codecs in module \"%s\" (%s)'\n                                     % (mod.__name__, mod.__file__))\n        if len(entry)<7 or entry[6] is None:\n            entry += (None,)*(6-len(entry)) + (mod.__name__.split(\".\", 1)[1],)\n        entry = codecs.CodecInfo(*entry)\n\n    # Cache the codec registry entry\n    _cache[encoding] = entry\n\n    # Register its aliases (without overwriting previously registered\n    # aliases)\n    try:\n        codecaliases = mod.getaliases()\n    except AttributeError:\n        pass\n    else:\n        for alias in codecaliases:\n            if alias not in _aliases:\n                _aliases[alias] = modname\n\n    # Return the registry entry\n    return entry\n\n# Register the search_function in the Python codec registry\ncodecs.register(search_function)\n\nif sys.platform == 'win32':\n    def _alias_mbcs(encoding):\n        try:\n            import _winapi\n            ansi_code_page = \"cp%s\" % _winapi.GetACP()\n            if encoding == ansi_code_page:\n                import encodings.mbcs\n                return encodings.mbcs.getregentry()\n        except ImportError:\n            # Imports may fail while we are shutting down\n            pass\n\n    codecs.register(_alias_mbcs)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/aliases.py",
    "content": "\"\"\" Encoding Aliases Support\n\n    This module is used by the encodings package search function to\n    map encodings names to module names.\n\n    Note that the search function normalizes the encoding names before\n    doing the lookup, so the mapping will have to map normalized\n    encoding names to module names.\n\n    Contents:\n\n        The following aliases dictionary contains mappings of all IANA\n        character set names for which the Python core library provides\n        codecs. In addition to these, a few Python specific codec\n        aliases have also been added.\n\n\"\"\"\naliases = {\n\n    # Please keep this list sorted alphabetically by value !\n\n    # ascii codec\n    '646'                : 'ascii',\n    'ansi_x3.4_1968'     : 'ascii',\n    'ansi_x3_4_1968'     : 'ascii', # some email headers use this non-standard name\n    'ansi_x3.4_1986'     : 'ascii',\n    'cp367'              : 'ascii',\n    'csascii'            : 'ascii',\n    'ibm367'             : 'ascii',\n    'iso646_us'          : 'ascii',\n    'iso_646.irv_1991'   : 'ascii',\n    'iso_ir_6'           : 'ascii',\n    'us'                 : 'ascii',\n    'us_ascii'           : 'ascii',\n\n    # base64_codec codec\n    'base64'             : 'base64_codec',\n    'base_64'            : 'base64_codec',\n\n    # big5 codec\n    'big5_tw'            : 'big5',\n    'csbig5'             : 'big5',\n\n    # big5hkscs codec\n    'big5_hkscs'         : 'big5hkscs',\n    'hkscs'              : 'big5hkscs',\n\n    # bz2_codec codec\n    'bz2'                : 'bz2_codec',\n\n    # cp037 codec\n    '037'                : 'cp037',\n    'csibm037'           : 'cp037',\n    'ebcdic_cp_ca'       : 'cp037',\n    'ebcdic_cp_nl'       : 'cp037',\n    'ebcdic_cp_us'       : 'cp037',\n    'ebcdic_cp_wt'       : 'cp037',\n    'ibm037'             : 'cp037',\n    'ibm039'             : 'cp037',\n\n    # cp1026 codec\n    '1026'               : 'cp1026',\n    'csibm1026'          : 'cp1026',\n    'ibm1026'            : 'cp1026',\n\n    # cp1125 codec\n    '1125'                : 'cp1125',\n    'ibm1125'             : 'cp1125',\n    'cp866u'              : 'cp1125',\n    'ruscii'              : 'cp1125',\n\n    # cp1140 codec\n    '1140'               : 'cp1140',\n    'ibm1140'            : 'cp1140',\n\n    # cp1250 codec\n    '1250'               : 'cp1250',\n    'windows_1250'       : 'cp1250',\n\n    # cp1251 codec\n    '1251'               : 'cp1251',\n    'windows_1251'       : 'cp1251',\n\n    # cp1252 codec\n    '1252'               : 'cp1252',\n    'windows_1252'       : 'cp1252',\n\n    # cp1253 codec\n    '1253'               : 'cp1253',\n    'windows_1253'       : 'cp1253',\n\n    # cp1254 codec\n    '1254'               : 'cp1254',\n    'windows_1254'       : 'cp1254',\n\n    # cp1255 codec\n    '1255'               : 'cp1255',\n    'windows_1255'       : 'cp1255',\n\n    # cp1256 codec\n    '1256'               : 'cp1256',\n    'windows_1256'       : 'cp1256',\n\n    # cp1257 codec\n    '1257'               : 'cp1257',\n    'windows_1257'       : 'cp1257',\n\n    # cp1258 codec\n    '1258'               : 'cp1258',\n    'windows_1258'       : 'cp1258',\n\n    # cp273 codec\n    '273'                : 'cp273',\n    'ibm273'             : 'cp273',\n    'csibm273'           : 'cp273',\n\n    # cp424 codec\n    '424'                : 'cp424',\n    'csibm424'           : 'cp424',\n    'ebcdic_cp_he'       : 'cp424',\n    'ibm424'             : 'cp424',\n\n    # cp437 codec\n    '437'                : 'cp437',\n    'cspc8codepage437'   : 'cp437',\n    'ibm437'             : 'cp437',\n\n    # cp500 codec\n    '500'                : 'cp500',\n    'csibm500'           : 'cp500',\n    'ebcdic_cp_be'       : 'cp500',\n    'ebcdic_cp_ch'       : 'cp500',\n    'ibm500'             : 'cp500',\n\n    # cp775 codec\n    '775'                : 'cp775',\n    'cspc775baltic'      : 'cp775',\n    'ibm775'             : 'cp775',\n\n    # cp850 codec\n    '850'                : 'cp850',\n    'cspc850multilingual' : 'cp850',\n    'ibm850'             : 'cp850',\n\n    # cp852 codec\n    '852'                : 'cp852',\n    'cspcp852'           : 'cp852',\n    'ibm852'             : 'cp852',\n\n    # cp855 codec\n    '855'                : 'cp855',\n    'csibm855'           : 'cp855',\n    'ibm855'             : 'cp855',\n\n    # cp857 codec\n    '857'                : 'cp857',\n    'csibm857'           : 'cp857',\n    'ibm857'             : 'cp857',\n\n    # cp858 codec\n    '858'                : 'cp858',\n    'csibm858'           : 'cp858',\n    'ibm858'             : 'cp858',\n\n    # cp860 codec\n    '860'                : 'cp860',\n    'csibm860'           : 'cp860',\n    'ibm860'             : 'cp860',\n\n    # cp861 codec\n    '861'                : 'cp861',\n    'cp_is'              : 'cp861',\n    'csibm861'           : 'cp861',\n    'ibm861'             : 'cp861',\n\n    # cp862 codec\n    '862'                : 'cp862',\n    'cspc862latinhebrew' : 'cp862',\n    'ibm862'             : 'cp862',\n\n    # cp863 codec\n    '863'                : 'cp863',\n    'csibm863'           : 'cp863',\n    'ibm863'             : 'cp863',\n\n    # cp864 codec\n    '864'                : 'cp864',\n    'csibm864'           : 'cp864',\n    'ibm864'             : 'cp864',\n\n    # cp865 codec\n    '865'                : 'cp865',\n    'csibm865'           : 'cp865',\n    'ibm865'             : 'cp865',\n\n    # cp866 codec\n    '866'                : 'cp866',\n    'csibm866'           : 'cp866',\n    'ibm866'             : 'cp866',\n\n    # cp869 codec\n    '869'                : 'cp869',\n    'cp_gr'              : 'cp869',\n    'csibm869'           : 'cp869',\n    'ibm869'             : 'cp869',\n\n    # cp932 codec\n    '932'                : 'cp932',\n    'ms932'              : 'cp932',\n    'mskanji'            : 'cp932',\n    'ms_kanji'           : 'cp932',\n\n    # cp949 codec\n    '949'                : 'cp949',\n    'ms949'              : 'cp949',\n    'uhc'                : 'cp949',\n\n    # cp950 codec\n    '950'                : 'cp950',\n    'ms950'              : 'cp950',\n\n    # euc_jis_2004 codec\n    'jisx0213'           : 'euc_jis_2004',\n    'eucjis2004'         : 'euc_jis_2004',\n    'euc_jis2004'        : 'euc_jis_2004',\n\n    # euc_jisx0213 codec\n    'eucjisx0213'        : 'euc_jisx0213',\n\n    # euc_jp codec\n    'eucjp'              : 'euc_jp',\n    'ujis'               : 'euc_jp',\n    'u_jis'              : 'euc_jp',\n\n    # euc_kr codec\n    'euckr'              : 'euc_kr',\n    'korean'             : 'euc_kr',\n    'ksc5601'            : 'euc_kr',\n    'ks_c_5601'          : 'euc_kr',\n    'ks_c_5601_1987'     : 'euc_kr',\n    'ksx1001'            : 'euc_kr',\n    'ks_x_1001'          : 'euc_kr',\n\n    # gb18030 codec\n    'gb18030_2000'       : 'gb18030',\n\n    # gb2312 codec\n    'chinese'            : 'gb2312',\n    'csiso58gb231280'    : 'gb2312',\n    'euc_cn'             : 'gb2312',\n    'euccn'              : 'gb2312',\n    'eucgb2312_cn'       : 'gb2312',\n    'gb2312_1980'        : 'gb2312',\n    'gb2312_80'          : 'gb2312',\n    'iso_ir_58'          : 'gb2312',\n\n    # gbk codec\n    '936'                : 'gbk',\n    'cp936'              : 'gbk',\n    'ms936'              : 'gbk',\n\n    # hex_codec codec\n    'hex'                : 'hex_codec',\n\n    # hp_roman8 codec\n    'roman8'             : 'hp_roman8',\n    'r8'                 : 'hp_roman8',\n    'csHPRoman8'         : 'hp_roman8',\n    'cp1051'             : 'hp_roman8',\n    'ibm1051'            : 'hp_roman8',\n\n    # hz codec\n    'hzgb'               : 'hz',\n    'hz_gb'              : 'hz',\n    'hz_gb_2312'         : 'hz',\n\n    # iso2022_jp codec\n    'csiso2022jp'        : 'iso2022_jp',\n    'iso2022jp'          : 'iso2022_jp',\n    'iso_2022_jp'        : 'iso2022_jp',\n\n    # iso2022_jp_1 codec\n    'iso2022jp_1'        : 'iso2022_jp_1',\n    'iso_2022_jp_1'      : 'iso2022_jp_1',\n\n    # iso2022_jp_2 codec\n    'iso2022jp_2'        : 'iso2022_jp_2',\n    'iso_2022_jp_2'      : 'iso2022_jp_2',\n\n    # iso2022_jp_2004 codec\n    'iso_2022_jp_2004'   : 'iso2022_jp_2004',\n    'iso2022jp_2004'     : 'iso2022_jp_2004',\n\n    # iso2022_jp_3 codec\n    'iso2022jp_3'        : 'iso2022_jp_3',\n    'iso_2022_jp_3'      : 'iso2022_jp_3',\n\n    # iso2022_jp_ext codec\n    'iso2022jp_ext'      : 'iso2022_jp_ext',\n    'iso_2022_jp_ext'    : 'iso2022_jp_ext',\n\n    # iso2022_kr codec\n    'csiso2022kr'        : 'iso2022_kr',\n    'iso2022kr'          : 'iso2022_kr',\n    'iso_2022_kr'        : 'iso2022_kr',\n\n    # iso8859_10 codec\n    'csisolatin6'        : 'iso8859_10',\n    'iso_8859_10'        : 'iso8859_10',\n    'iso_8859_10_1992'   : 'iso8859_10',\n    'iso_ir_157'         : 'iso8859_10',\n    'l6'                 : 'iso8859_10',\n    'latin6'             : 'iso8859_10',\n\n    # iso8859_11 codec\n    'thai'               : 'iso8859_11',\n    'iso_8859_11'        : 'iso8859_11',\n    'iso_8859_11_2001'   : 'iso8859_11',\n\n    # iso8859_13 codec\n    'iso_8859_13'        : 'iso8859_13',\n    'l7'                 : 'iso8859_13',\n    'latin7'             : 'iso8859_13',\n\n    # iso8859_14 codec\n    'iso_8859_14'        : 'iso8859_14',\n    'iso_8859_14_1998'   : 'iso8859_14',\n    'iso_celtic'         : 'iso8859_14',\n    'iso_ir_199'         : 'iso8859_14',\n    'l8'                 : 'iso8859_14',\n    'latin8'             : 'iso8859_14',\n\n    # iso8859_15 codec\n    'iso_8859_15'        : 'iso8859_15',\n    'l9'                 : 'iso8859_15',\n    'latin9'             : 'iso8859_15',\n\n    # iso8859_16 codec\n    'iso_8859_16'        : 'iso8859_16',\n    'iso_8859_16_2001'   : 'iso8859_16',\n    'iso_ir_226'         : 'iso8859_16',\n    'l10'                : 'iso8859_16',\n    'latin10'            : 'iso8859_16',\n\n    # iso8859_2 codec\n    'csisolatin2'        : 'iso8859_2',\n    'iso_8859_2'         : 'iso8859_2',\n    'iso_8859_2_1987'    : 'iso8859_2',\n    'iso_ir_101'         : 'iso8859_2',\n    'l2'                 : 'iso8859_2',\n    'latin2'             : 'iso8859_2',\n\n    # iso8859_3 codec\n    'csisolatin3'        : 'iso8859_3',\n    'iso_8859_3'         : 'iso8859_3',\n    'iso_8859_3_1988'    : 'iso8859_3',\n    'iso_ir_109'         : 'iso8859_3',\n    'l3'                 : 'iso8859_3',\n    'latin3'             : 'iso8859_3',\n\n    # iso8859_4 codec\n    'csisolatin4'        : 'iso8859_4',\n    'iso_8859_4'         : 'iso8859_4',\n    'iso_8859_4_1988'    : 'iso8859_4',\n    'iso_ir_110'         : 'iso8859_4',\n    'l4'                 : 'iso8859_4',\n    'latin4'             : 'iso8859_4',\n\n    # iso8859_5 codec\n    'csisolatincyrillic' : 'iso8859_5',\n    'cyrillic'           : 'iso8859_5',\n    'iso_8859_5'         : 'iso8859_5',\n    'iso_8859_5_1988'    : 'iso8859_5',\n    'iso_ir_144'         : 'iso8859_5',\n\n    # iso8859_6 codec\n    'arabic'             : 'iso8859_6',\n    'asmo_708'           : 'iso8859_6',\n    'csisolatinarabic'   : 'iso8859_6',\n    'ecma_114'           : 'iso8859_6',\n    'iso_8859_6'         : 'iso8859_6',\n    'iso_8859_6_1987'    : 'iso8859_6',\n    'iso_ir_127'         : 'iso8859_6',\n\n    # iso8859_7 codec\n    'csisolatingreek'    : 'iso8859_7',\n    'ecma_118'           : 'iso8859_7',\n    'elot_928'           : 'iso8859_7',\n    'greek'              : 'iso8859_7',\n    'greek8'             : 'iso8859_7',\n    'iso_8859_7'         : 'iso8859_7',\n    'iso_8859_7_1987'    : 'iso8859_7',\n    'iso_ir_126'         : 'iso8859_7',\n\n    # iso8859_8 codec\n    'csisolatinhebrew'   : 'iso8859_8',\n    'hebrew'             : 'iso8859_8',\n    'iso_8859_8'         : 'iso8859_8',\n    'iso_8859_8_1988'    : 'iso8859_8',\n    'iso_ir_138'         : 'iso8859_8',\n\n    # iso8859_9 codec\n    'csisolatin5'        : 'iso8859_9',\n    'iso_8859_9'         : 'iso8859_9',\n    'iso_8859_9_1989'    : 'iso8859_9',\n    'iso_ir_148'         : 'iso8859_9',\n    'l5'                 : 'iso8859_9',\n    'latin5'             : 'iso8859_9',\n\n    # johab codec\n    'cp1361'             : 'johab',\n    'ms1361'             : 'johab',\n\n    # koi8_r codec\n    'cskoi8r'            : 'koi8_r',\n\n    # kz1048 codec\n    'kz_1048'           : 'kz1048',\n    'rk1048'            : 'kz1048',\n    'strk1048_2002'     : 'kz1048',\n\n    # latin_1 codec\n    #\n    # Note that the latin_1 codec is implemented internally in C and a\n    # lot faster than the charmap codec iso8859_1 which uses the same\n    # encoding. This is why we discourage the use of the iso8859_1\n    # codec and alias it to latin_1 instead.\n    #\n    '8859'               : 'latin_1',\n    'cp819'              : 'latin_1',\n    'csisolatin1'        : 'latin_1',\n    'ibm819'             : 'latin_1',\n    'iso8859'            : 'latin_1',\n    'iso8859_1'          : 'latin_1',\n    'iso_8859_1'         : 'latin_1',\n    'iso_8859_1_1987'    : 'latin_1',\n    'iso_ir_100'         : 'latin_1',\n    'l1'                 : 'latin_1',\n    'latin'              : 'latin_1',\n    'latin1'             : 'latin_1',\n\n    # mac_cyrillic codec\n    'maccyrillic'        : 'mac_cyrillic',\n\n    # mac_greek codec\n    'macgreek'           : 'mac_greek',\n\n    # mac_iceland codec\n    'maciceland'         : 'mac_iceland',\n\n    # mac_latin2 codec\n    'maccentraleurope'   : 'mac_latin2',\n    'maclatin2'          : 'mac_latin2',\n\n    # mac_roman codec\n    'macintosh'          : 'mac_roman',\n    'macroman'           : 'mac_roman',\n\n    # mac_turkish codec\n    'macturkish'         : 'mac_turkish',\n\n    # mbcs codec\n    'ansi'               : 'mbcs',\n    'dbcs'               : 'mbcs',\n\n    # ptcp154 codec\n    'csptcp154'          : 'ptcp154',\n    'pt154'              : 'ptcp154',\n    'cp154'              : 'ptcp154',\n    'cyrillic_asian'     : 'ptcp154',\n\n    # quopri_codec codec\n    'quopri'             : 'quopri_codec',\n    'quoted_printable'   : 'quopri_codec',\n    'quotedprintable'    : 'quopri_codec',\n\n    # rot_13 codec\n    'rot13'              : 'rot_13',\n\n    # shift_jis codec\n    'csshiftjis'         : 'shift_jis',\n    'shiftjis'           : 'shift_jis',\n    'sjis'               : 'shift_jis',\n    's_jis'              : 'shift_jis',\n\n    # shift_jis_2004 codec\n    'shiftjis2004'       : 'shift_jis_2004',\n    'sjis_2004'          : 'shift_jis_2004',\n    's_jis_2004'         : 'shift_jis_2004',\n\n    # shift_jisx0213 codec\n    'shiftjisx0213'      : 'shift_jisx0213',\n    'sjisx0213'          : 'shift_jisx0213',\n    's_jisx0213'         : 'shift_jisx0213',\n\n    # tactis codec\n    'tis260'             : 'tactis',\n\n    # tis_620 codec\n    'tis620'             : 'tis_620',\n    'tis_620_0'          : 'tis_620',\n    'tis_620_2529_0'     : 'tis_620',\n    'tis_620_2529_1'     : 'tis_620',\n    'iso_ir_166'         : 'tis_620',\n\n    # utf_16 codec\n    'u16'                : 'utf_16',\n    'utf16'              : 'utf_16',\n\n    # utf_16_be codec\n    'unicodebigunmarked' : 'utf_16_be',\n    'utf_16be'           : 'utf_16_be',\n\n    # utf_16_le codec\n    'unicodelittleunmarked' : 'utf_16_le',\n    'utf_16le'           : 'utf_16_le',\n\n    # utf_32 codec\n    'u32'                : 'utf_32',\n    'utf32'              : 'utf_32',\n\n    # utf_32_be codec\n    'utf_32be'           : 'utf_32_be',\n\n    # utf_32_le codec\n    'utf_32le'           : 'utf_32_le',\n\n    # utf_7 codec\n    'u7'                 : 'utf_7',\n    'utf7'               : 'utf_7',\n    'unicode_1_1_utf_7'  : 'utf_7',\n\n    # utf_8 codec\n    'u8'                 : 'utf_8',\n    'utf'                : 'utf_8',\n    'utf8'               : 'utf_8',\n    'utf8_ucs2'          : 'utf_8',\n    'utf8_ucs4'          : 'utf_8',\n    'cp65001'            : 'utf_8',\n\n    # uu_codec codec\n    'uu'                 : 'uu_codec',\n\n    # zlib_codec codec\n    'zip'                : 'zlib_codec',\n    'zlib'               : 'zlib_codec',\n\n    # temporary mac CJK aliases, will be replaced by proper codecs in 3.1\n    'x_mac_japanese'      : 'shift_jis',\n    'x_mac_korean'        : 'euc_kr',\n    'x_mac_simp_chinese'  : 'gb2312',\n    'x_mac_trad_chinese'  : 'big5',\n}\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/ascii.py",
    "content": "\"\"\" Python 'ascii' Codec\n\n\nWritten by Marc-Andre Lemburg (mal@lemburg.com).\n\n(c) Copyright CNRI, All Rights Reserved. NO WARRANTY.\n\n\"\"\"\nimport codecs\n\n### Codec APIs\n\nclass Codec(codecs.Codec):\n\n    # Note: Binding these as C functions will result in the class not\n    # converting them to methods. This is intended.\n    encode = codecs.ascii_encode\n    decode = codecs.ascii_decode\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def encode(self, input, final=False):\n        return codecs.ascii_encode(input, self.errors)[0]\n\nclass IncrementalDecoder(codecs.IncrementalDecoder):\n    def decode(self, input, final=False):\n        return codecs.ascii_decode(input, self.errors)[0]\n\nclass StreamWriter(Codec,codecs.StreamWriter):\n    pass\n\nclass StreamReader(Codec,codecs.StreamReader):\n    pass\n\nclass StreamConverter(StreamWriter,StreamReader):\n\n    encode = codecs.ascii_decode\n    decode = codecs.ascii_encode\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='ascii',\n        encode=Codec.encode,\n        decode=Codec.decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamwriter=StreamWriter,\n        streamreader=StreamReader,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/base64_codec.py",
    "content": "\"\"\"Python 'base64_codec' Codec - base64 content transfer encoding.\n\nThis codec de/encodes from bytes to bytes.\n\nWritten by Marc-Andre Lemburg (mal@lemburg.com).\n\"\"\"\n\nimport codecs\nimport base64\n\n### Codec APIs\n\ndef base64_encode(input, errors='strict'):\n    assert errors == 'strict'\n    return (base64.encodebytes(input), len(input))\n\ndef base64_decode(input, errors='strict'):\n    assert errors == 'strict'\n    return (base64.decodebytes(input), len(input))\n\nclass Codec(codecs.Codec):\n    def encode(self, input, errors='strict'):\n        return base64_encode(input, errors)\n    def decode(self, input, errors='strict'):\n        return base64_decode(input, errors)\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def encode(self, input, final=False):\n        assert self.errors == 'strict'\n        return base64.encodebytes(input)\n\nclass IncrementalDecoder(codecs.IncrementalDecoder):\n    def decode(self, input, final=False):\n        assert self.errors == 'strict'\n        return base64.decodebytes(input)\n\nclass StreamWriter(Codec, codecs.StreamWriter):\n    charbuffertype = bytes\n\nclass StreamReader(Codec, codecs.StreamReader):\n    charbuffertype = bytes\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='base64',\n        encode=base64_encode,\n        decode=base64_decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamwriter=StreamWriter,\n        streamreader=StreamReader,\n        _is_text_encoding=False,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/big5.py",
    "content": "#\n# big5.py: Python Unicode Codec for BIG5\n#\n# Written by Hye-Shik Chang <perky@FreeBSD.org>\n#\n\nimport _codecs_tw, codecs\nimport _multibytecodec as mbc\n\ncodec = _codecs_tw.getcodec('big5')\n\nclass Codec(codecs.Codec):\n    encode = codec.encode\n    decode = codec.decode\n\nclass IncrementalEncoder(mbc.MultibyteIncrementalEncoder,\n                         codecs.IncrementalEncoder):\n    codec = codec\n\nclass IncrementalDecoder(mbc.MultibyteIncrementalDecoder,\n                         codecs.IncrementalDecoder):\n    codec = codec\n\nclass StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):\n    codec = codec\n\nclass StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):\n    codec = codec\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='big5',\n        encode=Codec().encode,\n        decode=Codec().decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamreader=StreamReader,\n        streamwriter=StreamWriter,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/bz2_codec.py",
    "content": "\"\"\"Python 'bz2_codec' Codec - bz2 compression encoding.\n\nThis codec de/encodes from bytes to bytes and is therefore usable with\nbytes.transform() and bytes.untransform().\n\nAdapted by Raymond Hettinger from zlib_codec.py which was written\nby Marc-Andre Lemburg (mal@lemburg.com).\n\"\"\"\n\nimport codecs\nimport bz2 # this codec needs the optional bz2 module !\n\n### Codec APIs\n\ndef bz2_encode(input, errors='strict'):\n    assert errors == 'strict'\n    return (bz2.compress(input), len(input))\n\ndef bz2_decode(input, errors='strict'):\n    assert errors == 'strict'\n    return (bz2.decompress(input), len(input))\n\nclass Codec(codecs.Codec):\n    def encode(self, input, errors='strict'):\n        return bz2_encode(input, errors)\n    def decode(self, input, errors='strict'):\n        return bz2_decode(input, errors)\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def __init__(self, errors='strict'):\n        assert errors == 'strict'\n        self.errors = errors\n        self.compressobj = bz2.BZ2Compressor()\n\n    def encode(self, input, final=False):\n        if final:\n            c = self.compressobj.compress(input)\n            return c + self.compressobj.flush()\n        else:\n            return self.compressobj.compress(input)\n\n    def reset(self):\n        self.compressobj = bz2.BZ2Compressor()\n\nclass IncrementalDecoder(codecs.IncrementalDecoder):\n    def __init__(self, errors='strict'):\n        assert errors == 'strict'\n        self.errors = errors\n        self.decompressobj = bz2.BZ2Decompressor()\n\n    def decode(self, input, final=False):\n        try:\n            return self.decompressobj.decompress(input)\n        except EOFError:\n            return ''\n\n    def reset(self):\n        self.decompressobj = bz2.BZ2Decompressor()\n\nclass StreamWriter(Codec, codecs.StreamWriter):\n    charbuffertype = bytes\n\nclass StreamReader(Codec, codecs.StreamReader):\n    charbuffertype = bytes\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name=\"bz2\",\n        encode=bz2_encode,\n        decode=bz2_decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamwriter=StreamWriter,\n        streamreader=StreamReader,\n        _is_text_encoding=False,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/charmap.py",
    "content": "\"\"\" Generic Python Character Mapping Codec.\n\n    Use this codec directly rather than through the automatic\n    conversion mechanisms supplied by unicode() and .encode().\n\n\nWritten by Marc-Andre Lemburg (mal@lemburg.com).\n\n(c) Copyright CNRI, All Rights Reserved. NO WARRANTY.\n\n\"\"\"#\"\n\nimport codecs\n\n### Codec APIs\n\nclass Codec(codecs.Codec):\n\n    # Note: Binding these as C functions will result in the class not\n    # converting them to methods. This is intended.\n    encode = codecs.charmap_encode\n    decode = codecs.charmap_decode\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def __init__(self, errors='strict', mapping=None):\n        codecs.IncrementalEncoder.__init__(self, errors)\n        self.mapping = mapping\n\n    def encode(self, input, final=False):\n        return codecs.charmap_encode(input, self.errors, self.mapping)[0]\n\nclass IncrementalDecoder(codecs.IncrementalDecoder):\n    def __init__(self, errors='strict', mapping=None):\n        codecs.IncrementalDecoder.__init__(self, errors)\n        self.mapping = mapping\n\n    def decode(self, input, final=False):\n        return codecs.charmap_decode(input, self.errors, self.mapping)[0]\n\nclass StreamWriter(Codec,codecs.StreamWriter):\n\n    def __init__(self,stream,errors='strict',mapping=None):\n        codecs.StreamWriter.__init__(self,stream,errors)\n        self.mapping = mapping\n\n    def encode(self,input,errors='strict'):\n        return Codec.encode(input,errors,self.mapping)\n\nclass StreamReader(Codec,codecs.StreamReader):\n\n    def __init__(self,stream,errors='strict',mapping=None):\n        codecs.StreamReader.__init__(self,stream,errors)\n        self.mapping = mapping\n\n    def decode(self,input,errors='strict'):\n        return Codec.decode(input,errors,self.mapping)\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='charmap',\n        encode=Codec.encode,\n        decode=Codec.decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamwriter=StreamWriter,\n        streamreader=StreamReader,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/gbk.py",
    "content": "#\n# gbk.py: Python Unicode Codec for GBK\n#\n# Written by Hye-Shik Chang <perky@FreeBSD.org>\n#\n\nimport _codecs_cn, codecs\nimport _multibytecodec as mbc\n\ncodec = _codecs_cn.getcodec('gbk')\n\nclass Codec(codecs.Codec):\n    encode = codec.encode\n    decode = codec.decode\n\nclass IncrementalEncoder(mbc.MultibyteIncrementalEncoder,\n                         codecs.IncrementalEncoder):\n    codec = codec\n\nclass IncrementalDecoder(mbc.MultibyteIncrementalDecoder,\n                         codecs.IncrementalDecoder):\n    codec = codec\n\nclass StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):\n    codec = codec\n\nclass StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):\n    codec = codec\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='gbk',\n        encode=Codec().encode,\n        decode=Codec().decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamreader=StreamReader,\n        streamwriter=StreamWriter,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/hex_codec.py",
    "content": "\"\"\"Python 'hex_codec' Codec - 2-digit hex content transfer encoding.\n\nThis codec de/encodes from bytes to bytes.\n\nWritten by Marc-Andre Lemburg (mal@lemburg.com).\n\"\"\"\n\nimport codecs\nimport binascii\n\n### Codec APIs\n\ndef hex_encode(input, errors='strict'):\n    assert errors == 'strict'\n    return (binascii.b2a_hex(input), len(input))\n\ndef hex_decode(input, errors='strict'):\n    assert errors == 'strict'\n    return (binascii.a2b_hex(input), len(input))\n\nclass Codec(codecs.Codec):\n    def encode(self, input, errors='strict'):\n        return hex_encode(input, errors)\n    def decode(self, input, errors='strict'):\n        return hex_decode(input, errors)\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def encode(self, input, final=False):\n        assert self.errors == 'strict'\n        return binascii.b2a_hex(input)\n\nclass IncrementalDecoder(codecs.IncrementalDecoder):\n    def decode(self, input, final=False):\n        assert self.errors == 'strict'\n        return binascii.a2b_hex(input)\n\nclass StreamWriter(Codec, codecs.StreamWriter):\n    charbuffertype = bytes\n\nclass StreamReader(Codec, codecs.StreamReader):\n    charbuffertype = bytes\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='hex',\n        encode=hex_encode,\n        decode=hex_decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamwriter=StreamWriter,\n        streamreader=StreamReader,\n        _is_text_encoding=False,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/hz.py",
    "content": "#\n# hz.py: Python Unicode Codec for HZ\n#\n# Written by Hye-Shik Chang <perky@FreeBSD.org>\n#\n\nimport _codecs_cn, codecs\nimport _multibytecodec as mbc\n\ncodec = _codecs_cn.getcodec('hz')\n\nclass Codec(codecs.Codec):\n    encode = codec.encode\n    decode = codec.decode\n\nclass IncrementalEncoder(mbc.MultibyteIncrementalEncoder,\n                         codecs.IncrementalEncoder):\n    codec = codec\n\nclass IncrementalDecoder(mbc.MultibyteIncrementalDecoder,\n                         codecs.IncrementalDecoder):\n    codec = codec\n\nclass StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):\n    codec = codec\n\nclass StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):\n    codec = codec\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='hz',\n        encode=Codec().encode,\n        decode=Codec().decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamreader=StreamReader,\n        streamwriter=StreamWriter,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/idna.py",
    "content": "# This module implements the RFCs 3490 (IDNA) and 3491 (Nameprep)\n\nimport stringprep, re, codecs\nfrom unicodedata import ucd_3_2_0 as unicodedata\n\n# IDNA section 3.1\ndots = re.compile(\"[\\u002E\\u3002\\uFF0E\\uFF61]\")\n\n# IDNA section 5\nace_prefix = b\"xn--\"\nsace_prefix = \"xn--\"\n\n# This assumes query strings, so AllowUnassigned is true\ndef nameprep(label):\n    # Map\n    newlabel = []\n    for c in label:\n        if stringprep.in_table_b1(c):\n            # Map to nothing\n            continue\n        newlabel.append(stringprep.map_table_b2(c))\n    label = \"\".join(newlabel)\n\n    # Normalize\n    label = unicodedata.normalize(\"NFKC\", label)\n\n    # Prohibit\n    for c in label:\n        if stringprep.in_table_c12(c) or \\\n           stringprep.in_table_c22(c) or \\\n           stringprep.in_table_c3(c) or \\\n           stringprep.in_table_c4(c) or \\\n           stringprep.in_table_c5(c) or \\\n           stringprep.in_table_c6(c) or \\\n           stringprep.in_table_c7(c) or \\\n           stringprep.in_table_c8(c) or \\\n           stringprep.in_table_c9(c):\n            raise UnicodeError(\"Invalid character %r\" % c)\n\n    # Check bidi\n    RandAL = [stringprep.in_table_d1(x) for x in label]\n    for c in RandAL:\n        if c:\n            # There is a RandAL char in the string. Must perform further\n            # tests:\n            # 1) The characters in section 5.8 MUST be prohibited.\n            # This is table C.8, which was already checked\n            # 2) If a string contains any RandALCat character, the string\n            # MUST NOT contain any LCat character.\n            if any(stringprep.in_table_d2(x) for x in label):\n                raise UnicodeError(\"Violation of BIDI requirement 2\")\n\n            # 3) If a string contains any RandALCat character, a\n            # RandALCat character MUST be the first character of the\n            # string, and a RandALCat character MUST be the last\n            # character of the string.\n            if not RandAL[0] or not RandAL[-1]:\n                raise UnicodeError(\"Violation of BIDI requirement 3\")\n\n    return label\n\ndef ToASCII(label):\n    try:\n        # Step 1: try ASCII\n        label = label.encode(\"ascii\")\n    except UnicodeError:\n        pass\n    else:\n        # Skip to step 3: UseSTD3ASCIIRules is false, so\n        # Skip to step 8.\n        if 0 < len(label) < 64:\n            return label\n        raise UnicodeError(\"label empty or too long\")\n\n    # Step 2: nameprep\n    label = nameprep(label)\n\n    # Step 3: UseSTD3ASCIIRules is false\n    # Step 4: try ASCII\n    try:\n        label = label.encode(\"ascii\")\n    except UnicodeError:\n        pass\n    else:\n        # Skip to step 8.\n        if 0 < len(label) < 64:\n            return label\n        raise UnicodeError(\"label empty or too long\")\n\n    # Step 5: Check ACE prefix\n    if label.startswith(sace_prefix):\n        raise UnicodeError(\"Label starts with ACE prefix\")\n\n    # Step 6: Encode with PUNYCODE\n    label = label.encode(\"punycode\")\n\n    # Step 7: Prepend ACE prefix\n    label = ace_prefix + label\n\n    # Step 8: Check size\n    if 0 < len(label) < 64:\n        return label\n    raise UnicodeError(\"label empty or too long\")\n\ndef ToUnicode(label):\n    # Step 1: Check for ASCII\n    if isinstance(label, bytes):\n        pure_ascii = True\n    else:\n        try:\n            label = label.encode(\"ascii\")\n            pure_ascii = True\n        except UnicodeError:\n            pure_ascii = False\n    if not pure_ascii:\n        # Step 2: Perform nameprep\n        label = nameprep(label)\n        # It doesn't say this, but apparently, it should be ASCII now\n        try:\n            label = label.encode(\"ascii\")\n        except UnicodeError:\n            raise UnicodeError(\"Invalid character in IDN label\")\n    # Step 3: Check for ACE prefix\n    if not label.startswith(ace_prefix):\n        return str(label, \"ascii\")\n\n    # Step 4: Remove ACE prefix\n    label1 = label[len(ace_prefix):]\n\n    # Step 5: Decode using PUNYCODE\n    result = label1.decode(\"punycode\")\n\n    # Step 6: Apply ToASCII\n    label2 = ToASCII(result)\n\n    # Step 7: Compare the result of step 6 with the one of step 3\n    # label2 will already be in lower case.\n    if str(label, \"ascii\").lower() != str(label2, \"ascii\"):\n        raise UnicodeError(\"IDNA does not round-trip\", label, label2)\n\n    # Step 8: return the result of step 5\n    return result\n\n### Codec APIs\n\nclass Codec(codecs.Codec):\n    def encode(self, input, errors='strict'):\n\n        if errors != 'strict':\n            # IDNA is quite clear that implementations must be strict\n            raise UnicodeError(\"unsupported error handling \"+errors)\n\n        if not input:\n            return b'', 0\n\n        try:\n            result = input.encode('ascii')\n        except UnicodeEncodeError:\n            pass\n        else:\n            # ASCII name: fast path\n            labels = result.split(b'.')\n            for label in labels[:-1]:\n                if not (0 < len(label) < 64):\n                    raise UnicodeError(\"label empty or too long\")\n            if len(labels[-1]) >= 64:\n                raise UnicodeError(\"label too long\")\n            return result, len(input)\n\n        result = bytearray()\n        labels = dots.split(input)\n        if labels and not labels[-1]:\n            trailing_dot = b'.'\n            del labels[-1]\n        else:\n            trailing_dot = b''\n        for label in labels:\n            if result:\n                # Join with U+002E\n                result.extend(b'.')\n            result.extend(ToASCII(label))\n        return bytes(result+trailing_dot), len(input)\n\n    def decode(self, input, errors='strict'):\n\n        if errors != 'strict':\n            raise UnicodeError(\"Unsupported error handling \"+errors)\n\n        if not input:\n            return \"\", 0\n\n        # IDNA allows decoding to operate on Unicode strings, too.\n        if not isinstance(input, bytes):\n            # XXX obviously wrong, see #3232\n            input = bytes(input)\n\n        if ace_prefix not in input:\n            # Fast path\n            try:\n                return input.decode('ascii'), len(input)\n            except UnicodeDecodeError:\n                pass\n\n        labels = input.split(b\".\")\n\n        if labels and len(labels[-1]) == 0:\n            trailing_dot = '.'\n            del labels[-1]\n        else:\n            trailing_dot = ''\n\n        result = []\n        for label in labels:\n            result.append(ToUnicode(label))\n\n        return \".\".join(result)+trailing_dot, len(input)\n\nclass IncrementalEncoder(codecs.BufferedIncrementalEncoder):\n    def _buffer_encode(self, input, errors, final):\n        if errors != 'strict':\n            # IDNA is quite clear that implementations must be strict\n            raise UnicodeError(\"unsupported error handling \"+errors)\n\n        if not input:\n            return (b'', 0)\n\n        labels = dots.split(input)\n        trailing_dot = b''\n        if labels:\n            if not labels[-1]:\n                trailing_dot = b'.'\n                del labels[-1]\n            elif not final:\n                # Keep potentially unfinished label until the next call\n                del labels[-1]\n                if labels:\n                    trailing_dot = b'.'\n\n        result = bytearray()\n        size = 0\n        for label in labels:\n            if size:\n                # Join with U+002E\n                result.extend(b'.')\n                size += 1\n            result.extend(ToASCII(label))\n            size += len(label)\n\n        result += trailing_dot\n        size += len(trailing_dot)\n        return (bytes(result), size)\n\nclass IncrementalDecoder(codecs.BufferedIncrementalDecoder):\n    def _buffer_decode(self, input, errors, final):\n        if errors != 'strict':\n            raise UnicodeError(\"Unsupported error handling \"+errors)\n\n        if not input:\n            return (\"\", 0)\n\n        # IDNA allows decoding to operate on Unicode strings, too.\n        if isinstance(input, str):\n            labels = dots.split(input)\n        else:\n            # Must be ASCII string\n            input = str(input, \"ascii\")\n            labels = input.split(\".\")\n\n        trailing_dot = ''\n        if labels:\n            if not labels[-1]:\n                trailing_dot = '.'\n                del labels[-1]\n            elif not final:\n                # Keep potentially unfinished label until the next call\n                del labels[-1]\n                if labels:\n                    trailing_dot = '.'\n\n        result = []\n        size = 0\n        for label in labels:\n            result.append(ToUnicode(label))\n            if size:\n                size += 1\n            size += len(label)\n\n        result = \".\".join(result) + trailing_dot\n        size += len(trailing_dot)\n        return (result, size)\n\nclass StreamWriter(Codec,codecs.StreamWriter):\n    pass\n\nclass StreamReader(Codec,codecs.StreamReader):\n    pass\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='idna',\n        encode=Codec().encode,\n        decode=Codec().decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamwriter=StreamWriter,\n        streamreader=StreamReader,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/iso8859_1.py",
    "content": "\"\"\" Python Character Mapping Codec iso8859_1 generated from 'MAPPINGS/ISO8859/8859-1.TXT' with gencodec.py.\n\n\"\"\"#\"\n\nimport codecs\n\n### Codec APIs\n\nclass Codec(codecs.Codec):\n\n    def encode(self,input,errors='strict'):\n        return codecs.charmap_encode(input,errors,encoding_table)\n\n    def decode(self,input,errors='strict'):\n        return codecs.charmap_decode(input,errors,decoding_table)\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def encode(self, input, final=False):\n        return codecs.charmap_encode(input,self.errors,encoding_table)[0]\n\nclass IncrementalDecoder(codecs.IncrementalDecoder):\n    def decode(self, input, final=False):\n        return codecs.charmap_decode(input,self.errors,decoding_table)[0]\n\nclass StreamWriter(Codec,codecs.StreamWriter):\n    pass\n\nclass StreamReader(Codec,codecs.StreamReader):\n    pass\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='iso8859-1',\n        encode=Codec().encode,\n        decode=Codec().decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamreader=StreamReader,\n        streamwriter=StreamWriter,\n    )\n\n\n### Decoding Table\n\ndecoding_table = (\n    '\\x00'     #  0x00 -> NULL\n    '\\x01'     #  0x01 -> START OF HEADING\n    '\\x02'     #  0x02 -> START OF TEXT\n    '\\x03'     #  0x03 -> END OF TEXT\n    '\\x04'     #  0x04 -> END OF TRANSMISSION\n    '\\x05'     #  0x05 -> ENQUIRY\n    '\\x06'     #  0x06 -> ACKNOWLEDGE\n    '\\x07'     #  0x07 -> BELL\n    '\\x08'     #  0x08 -> BACKSPACE\n    '\\t'       #  0x09 -> HORIZONTAL TABULATION\n    '\\n'       #  0x0A -> LINE FEED\n    '\\x0b'     #  0x0B -> VERTICAL TABULATION\n    '\\x0c'     #  0x0C -> FORM FEED\n    '\\r'       #  0x0D -> CARRIAGE RETURN\n    '\\x0e'     #  0x0E -> SHIFT OUT\n    '\\x0f'     #  0x0F -> SHIFT IN\n    '\\x10'     #  0x10 -> DATA LINK ESCAPE\n    '\\x11'     #  0x11 -> DEVICE CONTROL ONE\n    '\\x12'     #  0x12 -> DEVICE CONTROL TWO\n    '\\x13'     #  0x13 -> DEVICE CONTROL THREE\n    '\\x14'     #  0x14 -> DEVICE CONTROL FOUR\n    '\\x15'     #  0x15 -> NEGATIVE ACKNOWLEDGE\n    '\\x16'     #  0x16 -> SYNCHRONOUS IDLE\n    '\\x17'     #  0x17 -> END OF TRANSMISSION BLOCK\n    '\\x18'     #  0x18 -> CANCEL\n    '\\x19'     #  0x19 -> END OF MEDIUM\n    '\\x1a'     #  0x1A -> SUBSTITUTE\n    '\\x1b'     #  0x1B -> ESCAPE\n    '\\x1c'     #  0x1C -> FILE SEPARATOR\n    '\\x1d'     #  0x1D -> GROUP SEPARATOR\n    '\\x1e'     #  0x1E -> RECORD SEPARATOR\n    '\\x1f'     #  0x1F -> UNIT SEPARATOR\n    ' '        #  0x20 -> SPACE\n    '!'        #  0x21 -> EXCLAMATION MARK\n    '\"'        #  0x22 -> QUOTATION MARK\n    '#'        #  0x23 -> NUMBER SIGN\n    '$'        #  0x24 -> DOLLAR SIGN\n    '%'        #  0x25 -> PERCENT SIGN\n    '&'        #  0x26 -> AMPERSAND\n    \"'\"        #  0x27 -> APOSTROPHE\n    '('        #  0x28 -> LEFT PARENTHESIS\n    ')'        #  0x29 -> RIGHT PARENTHESIS\n    '*'        #  0x2A -> ASTERISK\n    '+'        #  0x2B -> PLUS SIGN\n    ','        #  0x2C -> COMMA\n    '-'        #  0x2D -> HYPHEN-MINUS\n    '.'        #  0x2E -> FULL STOP\n    '/'        #  0x2F -> SOLIDUS\n    '0'        #  0x30 -> DIGIT ZERO\n    '1'        #  0x31 -> DIGIT ONE\n    '2'        #  0x32 -> DIGIT TWO\n    '3'        #  0x33 -> DIGIT THREE\n    '4'        #  0x34 -> DIGIT FOUR\n    '5'        #  0x35 -> DIGIT FIVE\n    '6'        #  0x36 -> DIGIT SIX\n    '7'        #  0x37 -> DIGIT SEVEN\n    '8'        #  0x38 -> DIGIT EIGHT\n    '9'        #  0x39 -> DIGIT NINE\n    ':'        #  0x3A -> COLON\n    ';'        #  0x3B -> SEMICOLON\n    '<'        #  0x3C -> LESS-THAN SIGN\n    '='        #  0x3D -> EQUALS SIGN\n    '>'        #  0x3E -> GREATER-THAN SIGN\n    '?'        #  0x3F -> QUESTION MARK\n    '@'        #  0x40 -> COMMERCIAL AT\n    'A'        #  0x41 -> LATIN CAPITAL LETTER A\n    'B'        #  0x42 -> LATIN CAPITAL LETTER B\n    'C'        #  0x43 -> LATIN CAPITAL LETTER C\n    'D'        #  0x44 -> LATIN CAPITAL LETTER D\n    'E'        #  0x45 -> LATIN CAPITAL LETTER E\n    'F'        #  0x46 -> LATIN CAPITAL LETTER F\n    'G'        #  0x47 -> LATIN CAPITAL LETTER G\n    'H'        #  0x48 -> LATIN CAPITAL LETTER H\n    'I'        #  0x49 -> LATIN CAPITAL LETTER I\n    'J'        #  0x4A -> LATIN CAPITAL LETTER J\n    'K'        #  0x4B -> LATIN CAPITAL LETTER K\n    'L'        #  0x4C -> LATIN CAPITAL LETTER L\n    'M'        #  0x4D -> LATIN CAPITAL LETTER M\n    'N'        #  0x4E -> LATIN CAPITAL LETTER N\n    'O'        #  0x4F -> LATIN CAPITAL LETTER O\n    'P'        #  0x50 -> LATIN CAPITAL LETTER P\n    'Q'        #  0x51 -> LATIN CAPITAL LETTER Q\n    'R'        #  0x52 -> LATIN CAPITAL LETTER R\n    'S'        #  0x53 -> LATIN CAPITAL LETTER S\n    'T'        #  0x54 -> LATIN CAPITAL LETTER T\n    'U'        #  0x55 -> LATIN CAPITAL LETTER U\n    'V'        #  0x56 -> LATIN CAPITAL LETTER V\n    'W'        #  0x57 -> LATIN CAPITAL LETTER W\n    'X'        #  0x58 -> LATIN CAPITAL LETTER X\n    'Y'        #  0x59 -> LATIN CAPITAL LETTER Y\n    'Z'        #  0x5A -> LATIN CAPITAL LETTER Z\n    '['        #  0x5B -> LEFT SQUARE BRACKET\n    '\\\\'       #  0x5C -> REVERSE SOLIDUS\n    ']'        #  0x5D -> RIGHT SQUARE BRACKET\n    '^'        #  0x5E -> CIRCUMFLEX ACCENT\n    '_'        #  0x5F -> LOW LINE\n    '`'        #  0x60 -> GRAVE ACCENT\n    'a'        #  0x61 -> LATIN SMALL LETTER A\n    'b'        #  0x62 -> LATIN SMALL LETTER B\n    'c'        #  0x63 -> LATIN SMALL LETTER C\n    'd'        #  0x64 -> LATIN SMALL LETTER D\n    'e'        #  0x65 -> LATIN SMALL LETTER E\n    'f'        #  0x66 -> LATIN SMALL LETTER F\n    'g'        #  0x67 -> LATIN SMALL LETTER G\n    'h'        #  0x68 -> LATIN SMALL LETTER H\n    'i'        #  0x69 -> LATIN SMALL LETTER I\n    'j'        #  0x6A -> LATIN SMALL LETTER J\n    'k'        #  0x6B -> LATIN SMALL LETTER K\n    'l'        #  0x6C -> LATIN SMALL LETTER L\n    'm'        #  0x6D -> LATIN SMALL LETTER M\n    'n'        #  0x6E -> LATIN SMALL LETTER N\n    'o'        #  0x6F -> LATIN SMALL LETTER O\n    'p'        #  0x70 -> LATIN SMALL LETTER P\n    'q'        #  0x71 -> LATIN SMALL LETTER Q\n    'r'        #  0x72 -> LATIN SMALL LETTER R\n    's'        #  0x73 -> LATIN SMALL LETTER S\n    't'        #  0x74 -> LATIN SMALL LETTER T\n    'u'        #  0x75 -> LATIN SMALL LETTER U\n    'v'        #  0x76 -> LATIN SMALL LETTER V\n    'w'        #  0x77 -> LATIN SMALL LETTER W\n    'x'        #  0x78 -> LATIN SMALL LETTER X\n    'y'        #  0x79 -> LATIN SMALL LETTER Y\n    'z'        #  0x7A -> LATIN SMALL LETTER Z\n    '{'        #  0x7B -> LEFT CURLY BRACKET\n    '|'        #  0x7C -> VERTICAL LINE\n    '}'        #  0x7D -> RIGHT CURLY BRACKET\n    '~'        #  0x7E -> TILDE\n    '\\x7f'     #  0x7F -> DELETE\n    '\\x80'     #  0x80 -> <control>\n    '\\x81'     #  0x81 -> <control>\n    '\\x82'     #  0x82 -> <control>\n    '\\x83'     #  0x83 -> <control>\n    '\\x84'     #  0x84 -> <control>\n    '\\x85'     #  0x85 -> <control>\n    '\\x86'     #  0x86 -> <control>\n    '\\x87'     #  0x87 -> <control>\n    '\\x88'     #  0x88 -> <control>\n    '\\x89'     #  0x89 -> <control>\n    '\\x8a'     #  0x8A -> <control>\n    '\\x8b'     #  0x8B -> <control>\n    '\\x8c'     #  0x8C -> <control>\n    '\\x8d'     #  0x8D -> <control>\n    '\\x8e'     #  0x8E -> <control>\n    '\\x8f'     #  0x8F -> <control>\n    '\\x90'     #  0x90 -> <control>\n    '\\x91'     #  0x91 -> <control>\n    '\\x92'     #  0x92 -> <control>\n    '\\x93'     #  0x93 -> <control>\n    '\\x94'     #  0x94 -> <control>\n    '\\x95'     #  0x95 -> <control>\n    '\\x96'     #  0x96 -> <control>\n    '\\x97'     #  0x97 -> <control>\n    '\\x98'     #  0x98 -> <control>\n    '\\x99'     #  0x99 -> <control>\n    '\\x9a'     #  0x9A -> <control>\n    '\\x9b'     #  0x9B -> <control>\n    '\\x9c'     #  0x9C -> <control>\n    '\\x9d'     #  0x9D -> <control>\n    '\\x9e'     #  0x9E -> <control>\n    '\\x9f'     #  0x9F -> <control>\n    '\\xa0'     #  0xA0 -> NO-BREAK SPACE\n    '\\xa1'     #  0xA1 -> INVERTED EXCLAMATION MARK\n    '\\xa2'     #  0xA2 -> CENT SIGN\n    '\\xa3'     #  0xA3 -> POUND SIGN\n    '\\xa4'     #  0xA4 -> CURRENCY SIGN\n    '\\xa5'     #  0xA5 -> YEN SIGN\n    '\\xa6'     #  0xA6 -> BROKEN BAR\n    '\\xa7'     #  0xA7 -> SECTION SIGN\n    '\\xa8'     #  0xA8 -> DIAERESIS\n    '\\xa9'     #  0xA9 -> COPYRIGHT SIGN\n    '\\xaa'     #  0xAA -> FEMININE ORDINAL INDICATOR\n    '\\xab'     #  0xAB -> LEFT-POINTING DOUBLE ANGLE QUOTATION MARK\n    '\\xac'     #  0xAC -> NOT SIGN\n    '\\xad'     #  0xAD -> SOFT HYPHEN\n    '\\xae'     #  0xAE -> REGISTERED SIGN\n    '\\xaf'     #  0xAF -> MACRON\n    '\\xb0'     #  0xB0 -> DEGREE SIGN\n    '\\xb1'     #  0xB1 -> PLUS-MINUS SIGN\n    '\\xb2'     #  0xB2 -> SUPERSCRIPT TWO\n    '\\xb3'     #  0xB3 -> SUPERSCRIPT THREE\n    '\\xb4'     #  0xB4 -> ACUTE ACCENT\n    '\\xb5'     #  0xB5 -> MICRO SIGN\n    '\\xb6'     #  0xB6 -> PILCROW SIGN\n    '\\xb7'     #  0xB7 -> MIDDLE DOT\n    '\\xb8'     #  0xB8 -> CEDILLA\n    '\\xb9'     #  0xB9 -> SUPERSCRIPT ONE\n    '\\xba'     #  0xBA -> MASCULINE ORDINAL INDICATOR\n    '\\xbb'     #  0xBB -> RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK\n    '\\xbc'     #  0xBC -> VULGAR FRACTION ONE QUARTER\n    '\\xbd'     #  0xBD -> VULGAR FRACTION ONE HALF\n    '\\xbe'     #  0xBE -> VULGAR FRACTION THREE QUARTERS\n    '\\xbf'     #  0xBF -> INVERTED QUESTION MARK\n    '\\xc0'     #  0xC0 -> LATIN CAPITAL LETTER A WITH GRAVE\n    '\\xc1'     #  0xC1 -> LATIN CAPITAL LETTER A WITH ACUTE\n    '\\xc2'     #  0xC2 -> LATIN CAPITAL LETTER A WITH CIRCUMFLEX\n    '\\xc3'     #  0xC3 -> LATIN CAPITAL LETTER A WITH TILDE\n    '\\xc4'     #  0xC4 -> LATIN CAPITAL LETTER A WITH DIAERESIS\n    '\\xc5'     #  0xC5 -> LATIN CAPITAL LETTER A WITH RING ABOVE\n    '\\xc6'     #  0xC6 -> LATIN CAPITAL LETTER AE\n    '\\xc7'     #  0xC7 -> LATIN CAPITAL LETTER C WITH CEDILLA\n    '\\xc8'     #  0xC8 -> LATIN CAPITAL LETTER E WITH GRAVE\n    '\\xc9'     #  0xC9 -> LATIN CAPITAL LETTER E WITH ACUTE\n    '\\xca'     #  0xCA -> LATIN CAPITAL LETTER E WITH CIRCUMFLEX\n    '\\xcb'     #  0xCB -> LATIN CAPITAL LETTER E WITH DIAERESIS\n    '\\xcc'     #  0xCC -> LATIN CAPITAL LETTER I WITH GRAVE\n    '\\xcd'     #  0xCD -> LATIN CAPITAL LETTER I WITH ACUTE\n    '\\xce'     #  0xCE -> LATIN CAPITAL LETTER I WITH CIRCUMFLEX\n    '\\xcf'     #  0xCF -> LATIN CAPITAL LETTER I WITH DIAERESIS\n    '\\xd0'     #  0xD0 -> LATIN CAPITAL LETTER ETH (Icelandic)\n    '\\xd1'     #  0xD1 -> LATIN CAPITAL LETTER N WITH TILDE\n    '\\xd2'     #  0xD2 -> LATIN CAPITAL LETTER O WITH GRAVE\n    '\\xd3'     #  0xD3 -> LATIN CAPITAL LETTER O WITH ACUTE\n    '\\xd4'     #  0xD4 -> LATIN CAPITAL LETTER O WITH CIRCUMFLEX\n    '\\xd5'     #  0xD5 -> LATIN CAPITAL LETTER O WITH TILDE\n    '\\xd6'     #  0xD6 -> LATIN CAPITAL LETTER O WITH DIAERESIS\n    '\\xd7'     #  0xD7 -> MULTIPLICATION SIGN\n    '\\xd8'     #  0xD8 -> LATIN CAPITAL LETTER O WITH STROKE\n    '\\xd9'     #  0xD9 -> LATIN CAPITAL LETTER U WITH GRAVE\n    '\\xda'     #  0xDA -> LATIN CAPITAL LETTER U WITH ACUTE\n    '\\xdb'     #  0xDB -> LATIN CAPITAL LETTER U WITH CIRCUMFLEX\n    '\\xdc'     #  0xDC -> LATIN CAPITAL LETTER U WITH DIAERESIS\n    '\\xdd'     #  0xDD -> LATIN CAPITAL LETTER Y WITH ACUTE\n    '\\xde'     #  0xDE -> LATIN CAPITAL LETTER THORN (Icelandic)\n    '\\xdf'     #  0xDF -> LATIN SMALL LETTER SHARP S (German)\n    '\\xe0'     #  0xE0 -> LATIN SMALL LETTER A WITH GRAVE\n    '\\xe1'     #  0xE1 -> LATIN SMALL LETTER A WITH ACUTE\n    '\\xe2'     #  0xE2 -> LATIN SMALL LETTER A WITH CIRCUMFLEX\n    '\\xe3'     #  0xE3 -> LATIN SMALL LETTER A WITH TILDE\n    '\\xe4'     #  0xE4 -> LATIN SMALL LETTER A WITH DIAERESIS\n    '\\xe5'     #  0xE5 -> LATIN SMALL LETTER A WITH RING ABOVE\n    '\\xe6'     #  0xE6 -> LATIN SMALL LETTER AE\n    '\\xe7'     #  0xE7 -> LATIN SMALL LETTER C WITH CEDILLA\n    '\\xe8'     #  0xE8 -> LATIN SMALL LETTER E WITH GRAVE\n    '\\xe9'     #  0xE9 -> LATIN SMALL LETTER E WITH ACUTE\n    '\\xea'     #  0xEA -> LATIN SMALL LETTER E WITH CIRCUMFLEX\n    '\\xeb'     #  0xEB -> LATIN SMALL LETTER E WITH DIAERESIS\n    '\\xec'     #  0xEC -> LATIN SMALL LETTER I WITH GRAVE\n    '\\xed'     #  0xED -> LATIN SMALL LETTER I WITH ACUTE\n    '\\xee'     #  0xEE -> LATIN SMALL LETTER I WITH CIRCUMFLEX\n    '\\xef'     #  0xEF -> LATIN SMALL LETTER I WITH DIAERESIS\n    '\\xf0'     #  0xF0 -> LATIN SMALL LETTER ETH (Icelandic)\n    '\\xf1'     #  0xF1 -> LATIN SMALL LETTER N WITH TILDE\n    '\\xf2'     #  0xF2 -> LATIN SMALL LETTER O WITH GRAVE\n    '\\xf3'     #  0xF3 -> LATIN SMALL LETTER O WITH ACUTE\n    '\\xf4'     #  0xF4 -> LATIN SMALL LETTER O WITH CIRCUMFLEX\n    '\\xf5'     #  0xF5 -> LATIN SMALL LETTER O WITH TILDE\n    '\\xf6'     #  0xF6 -> LATIN SMALL LETTER O WITH DIAERESIS\n    '\\xf7'     #  0xF7 -> DIVISION SIGN\n    '\\xf8'     #  0xF8 -> LATIN SMALL LETTER O WITH STROKE\n    '\\xf9'     #  0xF9 -> LATIN SMALL LETTER U WITH GRAVE\n    '\\xfa'     #  0xFA -> LATIN SMALL LETTER U WITH ACUTE\n    '\\xfb'     #  0xFB -> LATIN SMALL LETTER U WITH CIRCUMFLEX\n    '\\xfc'     #  0xFC -> LATIN SMALL LETTER U WITH DIAERESIS\n    '\\xfd'     #  0xFD -> LATIN SMALL LETTER Y WITH ACUTE\n    '\\xfe'     #  0xFE -> LATIN SMALL LETTER THORN (Icelandic)\n    '\\xff'     #  0xFF -> LATIN SMALL LETTER Y WITH DIAERESIS\n)\n\n### Encoding table\nencoding_table=codecs.charmap_build(decoding_table)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/latin_1.py",
    "content": "\"\"\" Python 'latin-1' Codec\n\n\nWritten by Marc-Andre Lemburg (mal@lemburg.com).\n\n(c) Copyright CNRI, All Rights Reserved. NO WARRANTY.\n\n\"\"\"\nimport codecs\n\n### Codec APIs\n\nclass Codec(codecs.Codec):\n\n    # Note: Binding these as C functions will result in the class not\n    # converting them to methods. This is intended.\n    encode = codecs.latin_1_encode\n    decode = codecs.latin_1_decode\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def encode(self, input, final=False):\n        return codecs.latin_1_encode(input,self.errors)[0]\n\nclass IncrementalDecoder(codecs.IncrementalDecoder):\n    def decode(self, input, final=False):\n        return codecs.latin_1_decode(input,self.errors)[0]\n\nclass StreamWriter(Codec,codecs.StreamWriter):\n    pass\n\nclass StreamReader(Codec,codecs.StreamReader):\n    pass\n\nclass StreamConverter(StreamWriter,StreamReader):\n\n    encode = codecs.latin_1_decode\n    decode = codecs.latin_1_encode\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='iso8859-1',\n        encode=Codec.encode,\n        decode=Codec.decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamreader=StreamReader,\n        streamwriter=StreamWriter,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/mbcs.py",
    "content": "\"\"\" Python 'mbcs' Codec for Windows\n\n\nCloned by Mark Hammond (mhammond@skippinet.com.au) from ascii.py,\nwhich was written by Marc-Andre Lemburg (mal@lemburg.com).\n\n(c) Copyright CNRI, All Rights Reserved. NO WARRANTY.\n\n\"\"\"\n# Import them explicitly to cause an ImportError\n# on non-Windows systems\nfrom codecs import mbcs_encode, mbcs_decode\n# for IncrementalDecoder, IncrementalEncoder, ...\nimport codecs\n\n### Codec APIs\n\nencode = mbcs_encode\n\ndef decode(input, errors='strict'):\n    return mbcs_decode(input, errors, True)\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def encode(self, input, final=False):\n        return mbcs_encode(input, self.errors)[0]\n\nclass IncrementalDecoder(codecs.BufferedIncrementalDecoder):\n    _buffer_decode = mbcs_decode\n\nclass StreamWriter(codecs.StreamWriter):\n    encode = mbcs_encode\n\nclass StreamReader(codecs.StreamReader):\n    decode = mbcs_decode\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='mbcs',\n        encode=encode,\n        decode=decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamreader=StreamReader,\n        streamwriter=StreamWriter,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/oem.py",
    "content": "\"\"\" Python 'oem' Codec for Windows\n\n\"\"\"\n# Import them explicitly to cause an ImportError\n# on non-Windows systems\nfrom codecs import oem_encode, oem_decode\n# for IncrementalDecoder, IncrementalEncoder, ...\nimport codecs\n\n### Codec APIs\n\nencode = oem_encode\n\ndef decode(input, errors='strict'):\n    return oem_decode(input, errors, True)\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def encode(self, input, final=False):\n        return oem_encode(input, self.errors)[0]\n\nclass IncrementalDecoder(codecs.BufferedIncrementalDecoder):\n    _buffer_decode = oem_decode\n\nclass StreamWriter(codecs.StreamWriter):\n    encode = oem_encode\n\nclass StreamReader(codecs.StreamReader):\n    decode = oem_decode\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='oem',\n        encode=encode,\n        decode=decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamreader=StreamReader,\n        streamwriter=StreamWriter,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/quopri_codec.py",
    "content": "\"\"\"Codec for quoted-printable encoding.\n\nThis codec de/encodes from bytes to bytes.\n\"\"\"\n\nimport codecs\nimport quopri\nfrom io import BytesIO\n\ndef quopri_encode(input, errors='strict'):\n    assert errors == 'strict'\n    f = BytesIO(input)\n    g = BytesIO()\n    quopri.encode(f, g, quotetabs=True)\n    return (g.getvalue(), len(input))\n\ndef quopri_decode(input, errors='strict'):\n    assert errors == 'strict'\n    f = BytesIO(input)\n    g = BytesIO()\n    quopri.decode(f, g)\n    return (g.getvalue(), len(input))\n\nclass Codec(codecs.Codec):\n    def encode(self, input, errors='strict'):\n        return quopri_encode(input, errors)\n    def decode(self, input, errors='strict'):\n        return quopri_decode(input, errors)\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def encode(self, input, final=False):\n        return quopri_encode(input, self.errors)[0]\n\nclass IncrementalDecoder(codecs.IncrementalDecoder):\n    def decode(self, input, final=False):\n        return quopri_decode(input, self.errors)[0]\n\nclass StreamWriter(Codec, codecs.StreamWriter):\n    charbuffertype = bytes\n\nclass StreamReader(Codec, codecs.StreamReader):\n    charbuffertype = bytes\n\n# encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='quopri',\n        encode=quopri_encode,\n        decode=quopri_decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamwriter=StreamWriter,\n        streamreader=StreamReader,\n        _is_text_encoding=False,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/raw_unicode_escape.py",
    "content": "\"\"\" Python 'raw-unicode-escape' Codec\n\n\nWritten by Marc-Andre Lemburg (mal@lemburg.com).\n\n(c) Copyright CNRI, All Rights Reserved. NO WARRANTY.\n\n\"\"\"\nimport codecs\n\n### Codec APIs\n\nclass Codec(codecs.Codec):\n\n    # Note: Binding these as C functions will result in the class not\n    # converting them to methods. This is intended.\n    encode = codecs.raw_unicode_escape_encode\n    decode = codecs.raw_unicode_escape_decode\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def encode(self, input, final=False):\n        return codecs.raw_unicode_escape_encode(input, self.errors)[0]\n\nclass IncrementalDecoder(codecs.IncrementalDecoder):\n    def decode(self, input, final=False):\n        return codecs.raw_unicode_escape_decode(input, self.errors)[0]\n\nclass StreamWriter(Codec,codecs.StreamWriter):\n    pass\n\nclass StreamReader(Codec,codecs.StreamReader):\n    pass\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='raw-unicode-escape',\n        encode=Codec.encode,\n        decode=Codec.decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamwriter=StreamWriter,\n        streamreader=StreamReader,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/rot_13.py",
    "content": "#!/usr/bin/env python\n\"\"\" Python Character Mapping Codec for ROT13.\n\nThis codec de/encodes from str to str.\n\nWritten by Marc-Andre Lemburg (mal@lemburg.com).\n\"\"\"\n\nimport codecs\n\n### Codec APIs\n\nclass Codec(codecs.Codec):\n    def encode(self, input, errors='strict'):\n        return (str.translate(input, rot13_map), len(input))\n\n    def decode(self, input, errors='strict'):\n        return (str.translate(input, rot13_map), len(input))\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def encode(self, input, final=False):\n        return str.translate(input, rot13_map)\n\nclass IncrementalDecoder(codecs.IncrementalDecoder):\n    def decode(self, input, final=False):\n        return str.translate(input, rot13_map)\n\nclass StreamWriter(Codec,codecs.StreamWriter):\n    pass\n\nclass StreamReader(Codec,codecs.StreamReader):\n    pass\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='rot-13',\n        encode=Codec().encode,\n        decode=Codec().decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamwriter=StreamWriter,\n        streamreader=StreamReader,\n        _is_text_encoding=False,\n    )\n\n### Map\n\nrot13_map = codecs.make_identity_dict(range(256))\nrot13_map.update({\n   0x0041: 0x004e,\n   0x0042: 0x004f,\n   0x0043: 0x0050,\n   0x0044: 0x0051,\n   0x0045: 0x0052,\n   0x0046: 0x0053,\n   0x0047: 0x0054,\n   0x0048: 0x0055,\n   0x0049: 0x0056,\n   0x004a: 0x0057,\n   0x004b: 0x0058,\n   0x004c: 0x0059,\n   0x004d: 0x005a,\n   0x004e: 0x0041,\n   0x004f: 0x0042,\n   0x0050: 0x0043,\n   0x0051: 0x0044,\n   0x0052: 0x0045,\n   0x0053: 0x0046,\n   0x0054: 0x0047,\n   0x0055: 0x0048,\n   0x0056: 0x0049,\n   0x0057: 0x004a,\n   0x0058: 0x004b,\n   0x0059: 0x004c,\n   0x005a: 0x004d,\n   0x0061: 0x006e,\n   0x0062: 0x006f,\n   0x0063: 0x0070,\n   0x0064: 0x0071,\n   0x0065: 0x0072,\n   0x0066: 0x0073,\n   0x0067: 0x0074,\n   0x0068: 0x0075,\n   0x0069: 0x0076,\n   0x006a: 0x0077,\n   0x006b: 0x0078,\n   0x006c: 0x0079,\n   0x006d: 0x007a,\n   0x006e: 0x0061,\n   0x006f: 0x0062,\n   0x0070: 0x0063,\n   0x0071: 0x0064,\n   0x0072: 0x0065,\n   0x0073: 0x0066,\n   0x0074: 0x0067,\n   0x0075: 0x0068,\n   0x0076: 0x0069,\n   0x0077: 0x006a,\n   0x0078: 0x006b,\n   0x0079: 0x006c,\n   0x007a: 0x006d,\n})\n\n### Filter API\n\ndef rot13(infile, outfile):\n    outfile.write(codecs.encode(infile.read(), 'rot-13'))\n\nif __name__ == '__main__':\n    import sys\n    rot13(sys.stdin, sys.stdout)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/undefined.py",
    "content": "\"\"\" Python 'undefined' Codec\n\n    This codec will always raise a ValueError exception when being\n    used. It is intended for use by the site.py file to switch off\n    automatic string to Unicode coercion.\n\nWritten by Marc-Andre Lemburg (mal@lemburg.com).\n\n(c) Copyright CNRI, All Rights Reserved. NO WARRANTY.\n\n\"\"\"\nimport codecs\n\n### Codec APIs\n\nclass Codec(codecs.Codec):\n\n    def encode(self,input,errors='strict'):\n        raise UnicodeError(\"undefined encoding\")\n\n    def decode(self,input,errors='strict'):\n        raise UnicodeError(\"undefined encoding\")\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def encode(self, input, final=False):\n        raise UnicodeError(\"undefined encoding\")\n\nclass IncrementalDecoder(codecs.IncrementalDecoder):\n    def decode(self, input, final=False):\n        raise UnicodeError(\"undefined encoding\")\n\nclass StreamWriter(Codec,codecs.StreamWriter):\n    pass\n\nclass StreamReader(Codec,codecs.StreamReader):\n    pass\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='undefined',\n        encode=Codec().encode,\n        decode=Codec().decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamwriter=StreamWriter,\n        streamreader=StreamReader,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/unicode_escape.py",
    "content": "\"\"\" Python 'unicode-escape' Codec\n\n\nWritten by Marc-Andre Lemburg (mal@lemburg.com).\n\n(c) Copyright CNRI, All Rights Reserved. NO WARRANTY.\n\n\"\"\"\nimport codecs\n\n### Codec APIs\n\nclass Codec(codecs.Codec):\n\n    # Note: Binding these as C functions will result in the class not\n    # converting them to methods. This is intended.\n    encode = codecs.unicode_escape_encode\n    decode = codecs.unicode_escape_decode\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def encode(self, input, final=False):\n        return codecs.unicode_escape_encode(input, self.errors)[0]\n\nclass IncrementalDecoder(codecs.IncrementalDecoder):\n    def decode(self, input, final=False):\n        return codecs.unicode_escape_decode(input, self.errors)[0]\n\nclass StreamWriter(Codec,codecs.StreamWriter):\n    pass\n\nclass StreamReader(Codec,codecs.StreamReader):\n    pass\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='unicode-escape',\n        encode=Codec.encode,\n        decode=Codec.decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamwriter=StreamWriter,\n        streamreader=StreamReader,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/utf_16.py",
    "content": "\"\"\" Python 'utf-16' Codec\n\n\nWritten by Marc-Andre Lemburg (mal@lemburg.com).\n\n(c) Copyright CNRI, All Rights Reserved. NO WARRANTY.\n\n\"\"\"\nimport codecs, sys\n\n### Codec APIs\n\nencode = codecs.utf_16_encode\n\ndef decode(input, errors='strict'):\n    return codecs.utf_16_decode(input, errors, True)\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def __init__(self, errors='strict'):\n        codecs.IncrementalEncoder.__init__(self, errors)\n        self.encoder = None\n\n    def encode(self, input, final=False):\n        if self.encoder is None:\n            result = codecs.utf_16_encode(input, self.errors)[0]\n            if sys.byteorder == 'little':\n                self.encoder = codecs.utf_16_le_encode\n            else:\n                self.encoder = codecs.utf_16_be_encode\n            return result\n        return self.encoder(input, self.errors)[0]\n\n    def reset(self):\n        codecs.IncrementalEncoder.reset(self)\n        self.encoder = None\n\n    def getstate(self):\n        # state info we return to the caller:\n        # 0: stream is in natural order for this platform\n        # 2: endianness hasn't been determined yet\n        # (we're never writing in unnatural order)\n        return (2 if self.encoder is None else 0)\n\n    def setstate(self, state):\n        if state:\n            self.encoder = None\n        else:\n            if sys.byteorder == 'little':\n                self.encoder = codecs.utf_16_le_encode\n            else:\n                self.encoder = codecs.utf_16_be_encode\n\nclass IncrementalDecoder(codecs.BufferedIncrementalDecoder):\n    def __init__(self, errors='strict'):\n        codecs.BufferedIncrementalDecoder.__init__(self, errors)\n        self.decoder = None\n\n    def _buffer_decode(self, input, errors, final):\n        if self.decoder is None:\n            (output, consumed, byteorder) = \\\n                codecs.utf_16_ex_decode(input, errors, 0, final)\n            if byteorder == -1:\n                self.decoder = codecs.utf_16_le_decode\n            elif byteorder == 1:\n                self.decoder = codecs.utf_16_be_decode\n            elif consumed >= 2:\n                raise UnicodeError(\"UTF-16 stream does not start with BOM\")\n            return (output, consumed)\n        return self.decoder(input, self.errors, final)\n\n    def reset(self):\n        codecs.BufferedIncrementalDecoder.reset(self)\n        self.decoder = None\n\n    def getstate(self):\n        # additional state info from the base class must be None here,\n        # as it isn't passed along to the caller\n        state = codecs.BufferedIncrementalDecoder.getstate(self)[0]\n        # additional state info we pass to the caller:\n        # 0: stream is in natural order for this platform\n        # 1: stream is in unnatural order\n        # 2: endianness hasn't been determined yet\n        if self.decoder is None:\n            return (state, 2)\n        addstate = int((sys.byteorder == \"big\") !=\n                       (self.decoder is codecs.utf_16_be_decode))\n        return (state, addstate)\n\n    def setstate(self, state):\n        # state[1] will be ignored by BufferedIncrementalDecoder.setstate()\n        codecs.BufferedIncrementalDecoder.setstate(self, state)\n        state = state[1]\n        if state == 0:\n            self.decoder = (codecs.utf_16_be_decode\n                            if sys.byteorder == \"big\"\n                            else codecs.utf_16_le_decode)\n        elif state == 1:\n            self.decoder = (codecs.utf_16_le_decode\n                            if sys.byteorder == \"big\"\n                            else codecs.utf_16_be_decode)\n        else:\n            self.decoder = None\n\nclass StreamWriter(codecs.StreamWriter):\n    def __init__(self, stream, errors='strict'):\n        codecs.StreamWriter.__init__(self, stream, errors)\n        self.encoder = None\n\n    def reset(self):\n        codecs.StreamWriter.reset(self)\n        self.encoder = None\n\n    def encode(self, input, errors='strict'):\n        if self.encoder is None:\n            result = codecs.utf_16_encode(input, errors)\n            if sys.byteorder == 'little':\n                self.encoder = codecs.utf_16_le_encode\n            else:\n                self.encoder = codecs.utf_16_be_encode\n            return result\n        else:\n            return self.encoder(input, errors)\n\nclass StreamReader(codecs.StreamReader):\n\n    def reset(self):\n        codecs.StreamReader.reset(self)\n        try:\n            del self.decode\n        except AttributeError:\n            pass\n\n    def decode(self, input, errors='strict'):\n        (object, consumed, byteorder) = \\\n            codecs.utf_16_ex_decode(input, errors, 0, False)\n        if byteorder == -1:\n            self.decode = codecs.utf_16_le_decode\n        elif byteorder == 1:\n            self.decode = codecs.utf_16_be_decode\n        elif consumed>=2:\n            raise UnicodeError(\"UTF-16 stream does not start with BOM\")\n        return (object, consumed)\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='utf-16',\n        encode=encode,\n        decode=decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamreader=StreamReader,\n        streamwriter=StreamWriter,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/utf_16_be.py",
    "content": "\"\"\" Python 'utf-16-be' Codec\n\n\nWritten by Marc-Andre Lemburg (mal@lemburg.com).\n\n(c) Copyright CNRI, All Rights Reserved. NO WARRANTY.\n\n\"\"\"\nimport codecs\n\n### Codec APIs\n\nencode = codecs.utf_16_be_encode\n\ndef decode(input, errors='strict'):\n    return codecs.utf_16_be_decode(input, errors, True)\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def encode(self, input, final=False):\n        return codecs.utf_16_be_encode(input, self.errors)[0]\n\nclass IncrementalDecoder(codecs.BufferedIncrementalDecoder):\n    _buffer_decode = codecs.utf_16_be_decode\n\nclass StreamWriter(codecs.StreamWriter):\n    encode = codecs.utf_16_be_encode\n\nclass StreamReader(codecs.StreamReader):\n    decode = codecs.utf_16_be_decode\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='utf-16-be',\n        encode=encode,\n        decode=decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamreader=StreamReader,\n        streamwriter=StreamWriter,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/utf_16_le.py",
    "content": "\"\"\" Python 'utf-16-le' Codec\n\n\nWritten by Marc-Andre Lemburg (mal@lemburg.com).\n\n(c) Copyright CNRI, All Rights Reserved. NO WARRANTY.\n\n\"\"\"\nimport codecs\n\n### Codec APIs\n\nencode = codecs.utf_16_le_encode\n\ndef decode(input, errors='strict'):\n    return codecs.utf_16_le_decode(input, errors, True)\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def encode(self, input, final=False):\n        return codecs.utf_16_le_encode(input, self.errors)[0]\n\nclass IncrementalDecoder(codecs.BufferedIncrementalDecoder):\n    _buffer_decode = codecs.utf_16_le_decode\n\nclass StreamWriter(codecs.StreamWriter):\n    encode = codecs.utf_16_le_encode\n\nclass StreamReader(codecs.StreamReader):\n    decode = codecs.utf_16_le_decode\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='utf-16-le',\n        encode=encode,\n        decode=decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamreader=StreamReader,\n        streamwriter=StreamWriter,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/utf_32.py",
    "content": "\"\"\"\nPython 'utf-32' Codec\n\"\"\"\nimport codecs, sys\n\n### Codec APIs\n\nencode = codecs.utf_32_encode\n\ndef decode(input, errors='strict'):\n    return codecs.utf_32_decode(input, errors, True)\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def __init__(self, errors='strict'):\n        codecs.IncrementalEncoder.__init__(self, errors)\n        self.encoder = None\n\n    def encode(self, input, final=False):\n        if self.encoder is None:\n            result = codecs.utf_32_encode(input, self.errors)[0]\n            if sys.byteorder == 'little':\n                self.encoder = codecs.utf_32_le_encode\n            else:\n                self.encoder = codecs.utf_32_be_encode\n            return result\n        return self.encoder(input, self.errors)[0]\n\n    def reset(self):\n        codecs.IncrementalEncoder.reset(self)\n        self.encoder = None\n\n    def getstate(self):\n        # state info we return to the caller:\n        # 0: stream is in natural order for this platform\n        # 2: endianness hasn't been determined yet\n        # (we're never writing in unnatural order)\n        return (2 if self.encoder is None else 0)\n\n    def setstate(self, state):\n        if state:\n            self.encoder = None\n        else:\n            if sys.byteorder == 'little':\n                self.encoder = codecs.utf_32_le_encode\n            else:\n                self.encoder = codecs.utf_32_be_encode\n\nclass IncrementalDecoder(codecs.BufferedIncrementalDecoder):\n    def __init__(self, errors='strict'):\n        codecs.BufferedIncrementalDecoder.__init__(self, errors)\n        self.decoder = None\n\n    def _buffer_decode(self, input, errors, final):\n        if self.decoder is None:\n            (output, consumed, byteorder) = \\\n                codecs.utf_32_ex_decode(input, errors, 0, final)\n            if byteorder == -1:\n                self.decoder = codecs.utf_32_le_decode\n            elif byteorder == 1:\n                self.decoder = codecs.utf_32_be_decode\n            elif consumed >= 4:\n                raise UnicodeError(\"UTF-32 stream does not start with BOM\")\n            return (output, consumed)\n        return self.decoder(input, self.errors, final)\n\n    def reset(self):\n        codecs.BufferedIncrementalDecoder.reset(self)\n        self.decoder = None\n\n    def getstate(self):\n        # additional state info from the base class must be None here,\n        # as it isn't passed along to the caller\n        state = codecs.BufferedIncrementalDecoder.getstate(self)[0]\n        # additional state info we pass to the caller:\n        # 0: stream is in natural order for this platform\n        # 1: stream is in unnatural order\n        # 2: endianness hasn't been determined yet\n        if self.decoder is None:\n            return (state, 2)\n        addstate = int((sys.byteorder == \"big\") !=\n                       (self.decoder is codecs.utf_32_be_decode))\n        return (state, addstate)\n\n    def setstate(self, state):\n        # state[1] will be ignored by BufferedIncrementalDecoder.setstate()\n        codecs.BufferedIncrementalDecoder.setstate(self, state)\n        state = state[1]\n        if state == 0:\n            self.decoder = (codecs.utf_32_be_decode\n                            if sys.byteorder == \"big\"\n                            else codecs.utf_32_le_decode)\n        elif state == 1:\n            self.decoder = (codecs.utf_32_le_decode\n                            if sys.byteorder == \"big\"\n                            else codecs.utf_32_be_decode)\n        else:\n            self.decoder = None\n\nclass StreamWriter(codecs.StreamWriter):\n    def __init__(self, stream, errors='strict'):\n        self.encoder = None\n        codecs.StreamWriter.__init__(self, stream, errors)\n\n    def reset(self):\n        codecs.StreamWriter.reset(self)\n        self.encoder = None\n\n    def encode(self, input, errors='strict'):\n        if self.encoder is None:\n            result = codecs.utf_32_encode(input, errors)\n            if sys.byteorder == 'little':\n                self.encoder = codecs.utf_32_le_encode\n            else:\n                self.encoder = codecs.utf_32_be_encode\n            return result\n        else:\n            return self.encoder(input, errors)\n\nclass StreamReader(codecs.StreamReader):\n\n    def reset(self):\n        codecs.StreamReader.reset(self)\n        try:\n            del self.decode\n        except AttributeError:\n            pass\n\n    def decode(self, input, errors='strict'):\n        (object, consumed, byteorder) = \\\n            codecs.utf_32_ex_decode(input, errors, 0, False)\n        if byteorder == -1:\n            self.decode = codecs.utf_32_le_decode\n        elif byteorder == 1:\n            self.decode = codecs.utf_32_be_decode\n        elif consumed>=4:\n            raise UnicodeError(\"UTF-32 stream does not start with BOM\")\n        return (object, consumed)\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='utf-32',\n        encode=encode,\n        decode=decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamreader=StreamReader,\n        streamwriter=StreamWriter,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/utf_32_be.py",
    "content": "\"\"\"\nPython 'utf-32-be' Codec\n\"\"\"\nimport codecs\n\n### Codec APIs\n\nencode = codecs.utf_32_be_encode\n\ndef decode(input, errors='strict'):\n    return codecs.utf_32_be_decode(input, errors, True)\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def encode(self, input, final=False):\n        return codecs.utf_32_be_encode(input, self.errors)[0]\n\nclass IncrementalDecoder(codecs.BufferedIncrementalDecoder):\n    _buffer_decode = codecs.utf_32_be_decode\n\nclass StreamWriter(codecs.StreamWriter):\n    encode = codecs.utf_32_be_encode\n\nclass StreamReader(codecs.StreamReader):\n    decode = codecs.utf_32_be_decode\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='utf-32-be',\n        encode=encode,\n        decode=decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamreader=StreamReader,\n        streamwriter=StreamWriter,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/utf_32_le.py",
    "content": "\"\"\"\nPython 'utf-32-le' Codec\n\"\"\"\nimport codecs\n\n### Codec APIs\n\nencode = codecs.utf_32_le_encode\n\ndef decode(input, errors='strict'):\n    return codecs.utf_32_le_decode(input, errors, True)\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def encode(self, input, final=False):\n        return codecs.utf_32_le_encode(input, self.errors)[0]\n\nclass IncrementalDecoder(codecs.BufferedIncrementalDecoder):\n    _buffer_decode = codecs.utf_32_le_decode\n\nclass StreamWriter(codecs.StreamWriter):\n    encode = codecs.utf_32_le_encode\n\nclass StreamReader(codecs.StreamReader):\n    decode = codecs.utf_32_le_decode\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='utf-32-le',\n        encode=encode,\n        decode=decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamreader=StreamReader,\n        streamwriter=StreamWriter,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/utf_7.py",
    "content": "\"\"\" Python 'utf-7' Codec\n\nWritten by Brian Quinlan (brian@sweetapp.com).\n\"\"\"\nimport codecs\n\n### Codec APIs\n\nencode = codecs.utf_7_encode\n\ndef decode(input, errors='strict'):\n    return codecs.utf_7_decode(input, errors, True)\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def encode(self, input, final=False):\n        return codecs.utf_7_encode(input, self.errors)[0]\n\nclass IncrementalDecoder(codecs.BufferedIncrementalDecoder):\n    _buffer_decode = codecs.utf_7_decode\n\nclass StreamWriter(codecs.StreamWriter):\n    encode = codecs.utf_7_encode\n\nclass StreamReader(codecs.StreamReader):\n    decode = codecs.utf_7_decode\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='utf-7',\n        encode=encode,\n        decode=decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamreader=StreamReader,\n        streamwriter=StreamWriter,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/utf_8.py",
    "content": "\"\"\" Python 'utf-8' Codec\n\n\nWritten by Marc-Andre Lemburg (mal@lemburg.com).\n\n(c) Copyright CNRI, All Rights Reserved. NO WARRANTY.\n\n\"\"\"\nimport codecs\n\n### Codec APIs\n\nencode = codecs.utf_8_encode\n\ndef decode(input, errors='strict'):\n    return codecs.utf_8_decode(input, errors, True)\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def encode(self, input, final=False):\n        return codecs.utf_8_encode(input, self.errors)[0]\n\nclass IncrementalDecoder(codecs.BufferedIncrementalDecoder):\n    _buffer_decode = codecs.utf_8_decode\n\nclass StreamWriter(codecs.StreamWriter):\n    encode = codecs.utf_8_encode\n\nclass StreamReader(codecs.StreamReader):\n    decode = codecs.utf_8_decode\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='utf-8',\n        encode=encode,\n        decode=decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamreader=StreamReader,\n        streamwriter=StreamWriter,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/utf_8_sig.py",
    "content": "\"\"\" Python 'utf-8-sig' Codec\nThis work similar to UTF-8 with the following changes:\n\n* On encoding/writing a UTF-8 encoded BOM will be prepended/written as the\n  first three bytes.\n\n* On decoding/reading if the first three bytes are a UTF-8 encoded BOM, these\n  bytes will be skipped.\n\"\"\"\nimport codecs\n\n### Codec APIs\n\ndef encode(input, errors='strict'):\n    return (codecs.BOM_UTF8 + codecs.utf_8_encode(input, errors)[0],\n            len(input))\n\ndef decode(input, errors='strict'):\n    prefix = 0\n    if input[:3] == codecs.BOM_UTF8:\n        input = input[3:]\n        prefix = 3\n    (output, consumed) = codecs.utf_8_decode(input, errors, True)\n    return (output, consumed+prefix)\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def __init__(self, errors='strict'):\n        codecs.IncrementalEncoder.__init__(self, errors)\n        self.first = 1\n\n    def encode(self, input, final=False):\n        if self.first:\n            self.first = 0\n            return codecs.BOM_UTF8 + \\\n                   codecs.utf_8_encode(input, self.errors)[0]\n        else:\n            return codecs.utf_8_encode(input, self.errors)[0]\n\n    def reset(self):\n        codecs.IncrementalEncoder.reset(self)\n        self.first = 1\n\n    def getstate(self):\n        return self.first\n\n    def setstate(self, state):\n        self.first = state\n\nclass IncrementalDecoder(codecs.BufferedIncrementalDecoder):\n    def __init__(self, errors='strict'):\n        codecs.BufferedIncrementalDecoder.__init__(self, errors)\n        self.first = 1\n\n    def _buffer_decode(self, input, errors, final):\n        if self.first:\n            if len(input) < 3:\n                if codecs.BOM_UTF8.startswith(input):\n                    # not enough data to decide if this really is a BOM\n                    # => try again on the next call\n                    return (\"\", 0)\n                else:\n                    self.first = 0\n            else:\n                self.first = 0\n                if input[:3] == codecs.BOM_UTF8:\n                    (output, consumed) = \\\n                       codecs.utf_8_decode(input[3:], errors, final)\n                    return (output, consumed+3)\n        return codecs.utf_8_decode(input, errors, final)\n\n    def reset(self):\n        codecs.BufferedIncrementalDecoder.reset(self)\n        self.first = 1\n\n    def getstate(self):\n        state = codecs.BufferedIncrementalDecoder.getstate(self)\n        # state[1] must be 0 here, as it isn't passed along to the caller\n        return (state[0], self.first)\n\n    def setstate(self, state):\n        # state[1] will be ignored by BufferedIncrementalDecoder.setstate()\n        codecs.BufferedIncrementalDecoder.setstate(self, state)\n        self.first = state[1]\n\nclass StreamWriter(codecs.StreamWriter):\n    def reset(self):\n        codecs.StreamWriter.reset(self)\n        try:\n            del self.encode\n        except AttributeError:\n            pass\n\n    def encode(self, input, errors='strict'):\n        self.encode = codecs.utf_8_encode\n        return encode(input, errors)\n\nclass StreamReader(codecs.StreamReader):\n    def reset(self):\n        codecs.StreamReader.reset(self)\n        try:\n            del self.decode\n        except AttributeError:\n            pass\n\n    def decode(self, input, errors='strict'):\n        if len(input) < 3:\n            if codecs.BOM_UTF8.startswith(input):\n                # not enough data to decide if this is a BOM\n                # => try again on the next call\n                return (\"\", 0)\n        elif input[:3] == codecs.BOM_UTF8:\n            self.decode = codecs.utf_8_decode\n            (output, consumed) = codecs.utf_8_decode(input[3:],errors)\n            return (output, consumed+3)\n        # (else) no BOM present\n        self.decode = codecs.utf_8_decode\n        return codecs.utf_8_decode(input, errors)\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='utf-8-sig',\n        encode=encode,\n        decode=decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamreader=StreamReader,\n        streamwriter=StreamWriter,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/uu_codec.py",
    "content": "\"\"\"Python 'uu_codec' Codec - UU content transfer encoding.\n\nThis codec de/encodes from bytes to bytes.\n\nWritten by Marc-Andre Lemburg (mal@lemburg.com). Some details were\nadapted from uu.py which was written by Lance Ellinghouse and\nmodified by Jack Jansen and Fredrik Lundh.\n\"\"\"\n\nimport codecs\nimport binascii\nfrom io import BytesIO\n\n### Codec APIs\n\ndef uu_encode(input, errors='strict', filename='<data>', mode=0o666):\n    assert errors == 'strict'\n    infile = BytesIO(input)\n    outfile = BytesIO()\n    read = infile.read\n    write = outfile.write\n\n    # Remove newline chars from filename\n    filename = filename.replace('\\n','\\\\n')\n    filename = filename.replace('\\r','\\\\r')\n\n    # Encode\n    write(('begin %o %s\\n' % (mode & 0o777, filename)).encode('ascii'))\n    chunk = read(45)\n    while chunk:\n        write(binascii.b2a_uu(chunk))\n        chunk = read(45)\n    write(b' \\nend\\n')\n\n    return (outfile.getvalue(), len(input))\n\ndef uu_decode(input, errors='strict'):\n    assert errors == 'strict'\n    infile = BytesIO(input)\n    outfile = BytesIO()\n    readline = infile.readline\n    write = outfile.write\n\n    # Find start of encoded data\n    while 1:\n        s = readline()\n        if not s:\n            raise ValueError('Missing \"begin\" line in input data')\n        if s[:5] == b'begin':\n            break\n\n    # Decode\n    while True:\n        s = readline()\n        if not s or s == b'end\\n':\n            break\n        try:\n            data = binascii.a2b_uu(s)\n        except binascii.Error as v:\n            # Workaround for broken uuencoders by /Fredrik Lundh\n            nbytes = (((s[0]-32) & 63) * 4 + 5) // 3\n            data = binascii.a2b_uu(s[:nbytes])\n            #sys.stderr.write(\"Warning: %s\\n\" % str(v))\n        write(data)\n    if not s:\n        raise ValueError('Truncated input data')\n\n    return (outfile.getvalue(), len(input))\n\nclass Codec(codecs.Codec):\n    def encode(self, input, errors='strict'):\n        return uu_encode(input, errors)\n\n    def decode(self, input, errors='strict'):\n        return uu_decode(input, errors)\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def encode(self, input, final=False):\n        return uu_encode(input, self.errors)[0]\n\nclass IncrementalDecoder(codecs.IncrementalDecoder):\n    def decode(self, input, final=False):\n        return uu_decode(input, self.errors)[0]\n\nclass StreamWriter(Codec, codecs.StreamWriter):\n    charbuffertype = bytes\n\nclass StreamReader(Codec, codecs.StreamReader):\n    charbuffertype = bytes\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='uu',\n        encode=uu_encode,\n        decode=uu_decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamreader=StreamReader,\n        streamwriter=StreamWriter,\n        _is_text_encoding=False,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/encodings/zlib_codec.py",
    "content": "\"\"\"Python 'zlib_codec' Codec - zlib compression encoding.\n\nThis codec de/encodes from bytes to bytes.\n\nWritten by Marc-Andre Lemburg (mal@lemburg.com).\n\"\"\"\n\nimport codecs\nimport zlib # this codec needs the optional zlib module !\n\n### Codec APIs\n\ndef zlib_encode(input, errors='strict'):\n    assert errors == 'strict'\n    return (zlib.compress(input), len(input))\n\ndef zlib_decode(input, errors='strict'):\n    assert errors == 'strict'\n    return (zlib.decompress(input), len(input))\n\nclass Codec(codecs.Codec):\n    def encode(self, input, errors='strict'):\n        return zlib_encode(input, errors)\n    def decode(self, input, errors='strict'):\n        return zlib_decode(input, errors)\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n    def __init__(self, errors='strict'):\n        assert errors == 'strict'\n        self.errors = errors\n        self.compressobj = zlib.compressobj()\n\n    def encode(self, input, final=False):\n        if final:\n            c = self.compressobj.compress(input)\n            return c + self.compressobj.flush()\n        else:\n            return self.compressobj.compress(input)\n\n    def reset(self):\n        self.compressobj = zlib.compressobj()\n\nclass IncrementalDecoder(codecs.IncrementalDecoder):\n    def __init__(self, errors='strict'):\n        assert errors == 'strict'\n        self.errors = errors\n        self.decompressobj = zlib.decompressobj()\n\n    def decode(self, input, final=False):\n        if final:\n            c = self.decompressobj.decompress(input)\n            return c + self.decompressobj.flush()\n        else:\n            return self.decompressobj.decompress(input)\n\n    def reset(self):\n        self.decompressobj = zlib.decompressobj()\n\nclass StreamWriter(Codec, codecs.StreamWriter):\n    charbuffertype = bytes\n\nclass StreamReader(Codec, codecs.StreamReader):\n    charbuffertype = bytes\n\n### encodings module API\n\ndef getregentry():\n    return codecs.CodecInfo(\n        name='zlib',\n        encode=zlib_encode,\n        decode=zlib_decode,\n        incrementalencoder=IncrementalEncoder,\n        incrementaldecoder=IncrementalDecoder,\n        streamreader=StreamReader,\n        streamwriter=StreamWriter,\n        _is_text_encoding=False,\n    )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/enum.py",
    "content": "import sys\nfrom types import MappingProxyType, DynamicClassAttribute\n\n\n__all__ = [\n        'EnumMeta',\n        'Enum', 'IntEnum', 'Flag', 'IntFlag',\n        'auto', 'unique',\n        ]\n\n\ndef _is_descriptor(obj):\n    \"\"\"Returns True if obj is a descriptor, False otherwise.\"\"\"\n    return (\n            hasattr(obj, '__get__') or\n            hasattr(obj, '__set__') or\n            hasattr(obj, '__delete__'))\n\n\ndef _is_dunder(name):\n    \"\"\"Returns True if a __dunder__ name, False otherwise.\"\"\"\n    return (len(name) > 4 and\n            name[:2] == name[-2:] == '__' and\n            name[2] != '_' and\n            name[-3] != '_')\n\n\ndef _is_sunder(name):\n    \"\"\"Returns True if a _sunder_ name, False otherwise.\"\"\"\n    return (len(name) > 2 and\n            name[0] == name[-1] == '_' and\n            name[1:2] != '_' and\n            name[-2:-1] != '_')\n\n\ndef _make_class_unpicklable(cls):\n    \"\"\"Make the given class un-picklable.\"\"\"\n    def _break_on_call_reduce(self, proto):\n        raise TypeError('%r cannot be pickled' % self)\n    cls.__reduce_ex__ = _break_on_call_reduce\n    cls.__module__ = '<unknown>'\n\n_auto_null = object()\nclass auto:\n    \"\"\"\n    Instances are replaced with an appropriate value in Enum class suites.\n    \"\"\"\n    value = _auto_null\n\n\nclass _EnumDict(dict):\n    \"\"\"Track enum member order and ensure member names are not reused.\n\n    EnumMeta will use the names found in self._member_names as the\n    enumeration member names.\n\n    \"\"\"\n    def __init__(self):\n        super().__init__()\n        self._member_names = []\n        self._last_values = []\n        self._ignore = []\n        self._auto_called = False\n\n    def __setitem__(self, key, value):\n        \"\"\"Changes anything not dundered or not a descriptor.\n\n        If an enum member name is used twice, an error is raised; duplicate\n        values are not checked for.\n\n        Single underscore (sunder) names are reserved.\n\n        \"\"\"\n        if _is_sunder(key):\n            if key not in (\n                    '_order_', '_create_pseudo_member_',\n                    '_generate_next_value_', '_missing_', '_ignore_',\n                    ):\n                raise ValueError('_names_ are reserved for future Enum use')\n            if key == '_generate_next_value_':\n                # check if members already defined as auto()\n                if self._auto_called:\n                    raise TypeError(\"_generate_next_value_ must be defined before members\")\n                setattr(self, '_generate_next_value', value)\n            elif key == '_ignore_':\n                if isinstance(value, str):\n                    value = value.replace(',',' ').split()\n                else:\n                    value = list(value)\n                self._ignore = value\n                already = set(value) & set(self._member_names)\n                if already:\n                    raise ValueError('_ignore_ cannot specify already set names: %r' % (already, ))\n        elif _is_dunder(key):\n            if key == '__order__':\n                key = '_order_'\n        elif key in self._member_names:\n            # descriptor overwriting an enum?\n            raise TypeError('Attempted to reuse key: %r' % key)\n        elif key in self._ignore:\n            pass\n        elif not _is_descriptor(value):\n            if key in self:\n                # enum overwriting a descriptor?\n                raise TypeError('%r already defined as: %r' % (key, self[key]))\n            if isinstance(value, auto):\n                self._auto_called = True\n                if value.value == _auto_null:\n                    value.value = self._generate_next_value(key, 1, len(self._member_names), self._last_values[:])\n                value = value.value\n            self._member_names.append(key)\n            self._last_values.append(value)\n        super().__setitem__(key, value)\n\n\n# Dummy value for Enum as EnumMeta explicitly checks for it, but of course\n# until EnumMeta finishes running the first time the Enum class doesn't exist.\n# This is also why there are checks in EnumMeta like `if Enum is not None`\nEnum = None\n\n\nclass EnumMeta(type):\n    \"\"\"Metaclass for Enum\"\"\"\n    @classmethod\n    def __prepare__(metacls, cls, bases):\n        # create the namespace dict\n        enum_dict = _EnumDict()\n        # inherit previous flags and _generate_next_value_ function\n        member_type, first_enum = metacls._get_mixins_(bases)\n        if first_enum is not None:\n            enum_dict['_generate_next_value_'] = getattr(first_enum, '_generate_next_value_', None)\n        return enum_dict\n\n    def __new__(metacls, cls, bases, classdict):\n        # an Enum class is final once enumeration items have been defined; it\n        # cannot be mixed with other types (int, float, etc.) if it has an\n        # inherited __new__ unless a new __new__ is defined (or the resulting\n        # class will fail).\n        #\n        # remove any keys listed in _ignore_\n        classdict.setdefault('_ignore_', []).append('_ignore_')\n        ignore = classdict['_ignore_']\n        for key in ignore:\n            classdict.pop(key, None)\n        member_type, first_enum = metacls._get_mixins_(bases)\n        __new__, save_new, use_args = metacls._find_new_(classdict, member_type,\n                                                        first_enum)\n\n        # save enum items into separate mapping so they don't get baked into\n        # the new class\n        enum_members = {k: classdict[k] for k in classdict._member_names}\n        for name in classdict._member_names:\n            del classdict[name]\n\n        # adjust the sunders\n        _order_ = classdict.pop('_order_', None)\n\n        # check for illegal enum names (any others?)\n        invalid_names = set(enum_members) & {'mro', ''}\n        if invalid_names:\n            raise ValueError('Invalid enum member name: {0}'.format(\n                ','.join(invalid_names)))\n\n        # create a default docstring if one has not been provided\n        if '__doc__' not in classdict:\n            classdict['__doc__'] = 'An enumeration.'\n\n        # create our new Enum type\n        enum_class = super().__new__(metacls, cls, bases, classdict)\n        enum_class._member_names_ = []               # names in definition order\n        enum_class._member_map_ = {}                 # name->value map\n        enum_class._member_type_ = member_type\n\n        # save DynamicClassAttribute attributes from super classes so we know\n        # if we can take the shortcut of storing members in the class dict\n        dynamic_attributes = {k for c in enum_class.mro()\n                              for k, v in c.__dict__.items()\n                              if isinstance(v, DynamicClassAttribute)}\n\n        # Reverse value->name map for hashable values.\n        enum_class._value2member_map_ = {}\n\n        # If a custom type is mixed into the Enum, and it does not know how\n        # to pickle itself, pickle.dumps will succeed but pickle.loads will\n        # fail.  Rather than have the error show up later and possibly far\n        # from the source, sabotage the pickle protocol for this class so\n        # that pickle.dumps also fails.\n        #\n        # However, if the new class implements its own __reduce_ex__, do not\n        # sabotage -- it's on them to make sure it works correctly.  We use\n        # __reduce_ex__ instead of any of the others as it is preferred by\n        # pickle over __reduce__, and it handles all pickle protocols.\n        if '__reduce_ex__' not in classdict:\n            if member_type is not object:\n                methods = ('__getnewargs_ex__', '__getnewargs__',\n                        '__reduce_ex__', '__reduce__')\n                if not any(m in member_type.__dict__ for m in methods):\n                    _make_class_unpicklable(enum_class)\n\n        # instantiate them, checking for duplicates as we go\n        # we instantiate first instead of checking for duplicates first in case\n        # a custom __new__ is doing something funky with the values -- such as\n        # auto-numbering ;)\n        for member_name in classdict._member_names:\n            value = enum_members[member_name]\n            if not isinstance(value, tuple):\n                args = (value, )\n            else:\n                args = value\n            if member_type is tuple:   # special case for tuple enums\n                args = (args, )     # wrap it one more time\n            if not use_args:\n                enum_member = __new__(enum_class)\n                if not hasattr(enum_member, '_value_'):\n                    enum_member._value_ = value\n            else:\n                enum_member = __new__(enum_class, *args)\n                if not hasattr(enum_member, '_value_'):\n                    if member_type is object:\n                        enum_member._value_ = value\n                    else:\n                        enum_member._value_ = member_type(*args)\n            value = enum_member._value_\n            enum_member._name_ = member_name\n            enum_member.__objclass__ = enum_class\n            enum_member.__init__(*args)\n            # If another member with the same value was already defined, the\n            # new member becomes an alias to the existing one.\n            for name, canonical_member in enum_class._member_map_.items():\n                if canonical_member._value_ == enum_member._value_:\n                    enum_member = canonical_member\n                    break\n            else:\n                # Aliases don't appear in member names (only in __members__).\n                enum_class._member_names_.append(member_name)\n            # performance boost for any member that would not shadow\n            # a DynamicClassAttribute\n            if member_name not in dynamic_attributes:\n                setattr(enum_class, member_name, enum_member)\n            # now add to _member_map_\n            enum_class._member_map_[member_name] = enum_member\n            try:\n                # This may fail if value is not hashable. We can't add the value\n                # to the map, and by-value lookups for this value will be\n                # linear.\n                enum_class._value2member_map_[value] = enum_member\n            except TypeError:\n                pass\n\n        # double check that repr and friends are not the mixin's or various\n        # things break (such as pickle)\n        for name in ('__repr__', '__str__', '__format__', '__reduce_ex__'):\n            class_method = getattr(enum_class, name)\n            obj_method = getattr(member_type, name, None)\n            enum_method = getattr(first_enum, name, None)\n            if obj_method is not None and obj_method is class_method:\n                setattr(enum_class, name, enum_method)\n\n        # replace any other __new__ with our own (as long as Enum is not None,\n        # anyway) -- again, this is to support pickle\n        if Enum is not None:\n            # if the user defined their own __new__, save it before it gets\n            # clobbered in case they subclass later\n            if save_new:\n                enum_class.__new_member__ = __new__\n            enum_class.__new__ = Enum.__new__\n\n        # py3 support for definition order (helps keep py2/py3 code in sync)\n        if _order_ is not None:\n            if isinstance(_order_, str):\n                _order_ = _order_.replace(',', ' ').split()\n            if _order_ != enum_class._member_names_:\n                raise TypeError('member order does not match _order_')\n\n        return enum_class\n\n    def __bool__(self):\n        \"\"\"\n        classes/types should always be True.\n        \"\"\"\n        return True\n\n    def __call__(cls, value, names=None, *, module=None, qualname=None, type=None, start=1):\n        \"\"\"Either returns an existing member, or creates a new enum class.\n\n        This method is used both when an enum class is given a value to match\n        to an enumeration member (i.e. Color(3)) and for the functional API\n        (i.e. Color = Enum('Color', names='RED GREEN BLUE')).\n\n        When used for the functional API:\n\n        `value` will be the name of the new class.\n\n        `names` should be either a string of white-space/comma delimited names\n        (values will start at `start`), or an iterator/mapping of name, value pairs.\n\n        `module` should be set to the module this class is being created in;\n        if it is not set, an attempt to find that module will be made, but if\n        it fails the class will not be picklable.\n\n        `qualname` should be set to the actual location this class can be found\n        at in its module; by default it is set to the global scope.  If this is\n        not correct, unpickling will fail in some circumstances.\n\n        `type`, if set, will be mixed in as the first base class.\n\n        \"\"\"\n        if names is None:  # simple value lookup\n            return cls.__new__(cls, value)\n        # otherwise, functional API: we're creating a new Enum type\n        return cls._create_(value, names, module=module, qualname=qualname, type=type, start=start)\n\n    def __contains__(cls, member):\n        if not isinstance(member, Enum):\n            raise TypeError(\n                \"unsupported operand type(s) for 'in': '%s' and '%s'\" % (\n                    type(member).__qualname__, cls.__class__.__qualname__))\n        return isinstance(member, cls) and member._name_ in cls._member_map_\n\n    def __delattr__(cls, attr):\n        # nicer error message when someone tries to delete an attribute\n        # (see issue19025).\n        if attr in cls._member_map_:\n            raise AttributeError(\n                    \"%s: cannot delete Enum member.\" % cls.__name__)\n        super().__delattr__(attr)\n\n    def __dir__(self):\n        return (['__class__', '__doc__', '__members__', '__module__'] +\n                self._member_names_)\n\n    def __getattr__(cls, name):\n        \"\"\"Return the enum member matching `name`\n\n        We use __getattr__ instead of descriptors or inserting into the enum\n        class' __dict__ in order to support `name` and `value` being both\n        properties for enum members (which live in the class' __dict__) and\n        enum members themselves.\n\n        \"\"\"\n        if _is_dunder(name):\n            raise AttributeError(name)\n        try:\n            return cls._member_map_[name]\n        except KeyError:\n            raise AttributeError(name) from None\n\n    def __getitem__(cls, name):\n        return cls._member_map_[name]\n\n    def __iter__(cls):\n        return (cls._member_map_[name] for name in cls._member_names_)\n\n    def __len__(cls):\n        return len(cls._member_names_)\n\n    @property\n    def __members__(cls):\n        \"\"\"Returns a mapping of member name->value.\n\n        This mapping lists all enum members, including aliases. Note that this\n        is a read-only view of the internal mapping.\n\n        \"\"\"\n        return MappingProxyType(cls._member_map_)\n\n    def __repr__(cls):\n        return \"<enum %r>\" % cls.__name__\n\n    def __reversed__(cls):\n        return (cls._member_map_[name] for name in reversed(cls._member_names_))\n\n    def __setattr__(cls, name, value):\n        \"\"\"Block attempts to reassign Enum members.\n\n        A simple assignment to the class namespace only changes one of the\n        several possible ways to get an Enum member from the Enum class,\n        resulting in an inconsistent Enumeration.\n\n        \"\"\"\n        member_map = cls.__dict__.get('_member_map_', {})\n        if name in member_map:\n            raise AttributeError('Cannot reassign members.')\n        super().__setattr__(name, value)\n\n    def _create_(cls, class_name, names, *, module=None, qualname=None, type=None, start=1):\n        \"\"\"Convenience method to create a new Enum class.\n\n        `names` can be:\n\n        * A string containing member names, separated either with spaces or\n          commas.  Values are incremented by 1 from `start`.\n        * An iterable of member names.  Values are incremented by 1 from `start`.\n        * An iterable of (member name, value) pairs.\n        * A mapping of member name -> value pairs.\n\n        \"\"\"\n        metacls = cls.__class__\n        bases = (cls, ) if type is None else (type, cls)\n        _, first_enum = cls._get_mixins_(bases)\n        classdict = metacls.__prepare__(class_name, bases)\n\n        # special processing needed for names?\n        if isinstance(names, str):\n            names = names.replace(',', ' ').split()\n        if isinstance(names, (tuple, list)) and names and isinstance(names[0], str):\n            original_names, names = names, []\n            last_values = []\n            for count, name in enumerate(original_names):\n                value = first_enum._generate_next_value_(name, start, count, last_values[:])\n                last_values.append(value)\n                names.append((name, value))\n\n        # Here, names is either an iterable of (name, value) or a mapping.\n        for item in names:\n            if isinstance(item, str):\n                member_name, member_value = item, names[item]\n            else:\n                member_name, member_value = item\n            classdict[member_name] = member_value\n        enum_class = metacls.__new__(metacls, class_name, bases, classdict)\n\n        # TODO: replace the frame hack if a blessed way to know the calling\n        # module is ever developed\n        if module is None:\n            try:\n                module = sys._getframe(2).f_globals['__name__']\n            except (AttributeError, ValueError, KeyError) as exc:\n                pass\n        if module is None:\n            _make_class_unpicklable(enum_class)\n        else:\n            enum_class.__module__ = module\n        if qualname is not None:\n            enum_class.__qualname__ = qualname\n\n        return enum_class\n\n    def _convert_(cls, name, module, filter, source=None):\n        \"\"\"\n        Create a new Enum subclass that replaces a collection of global constants\n        \"\"\"\n        # convert all constants from source (or module) that pass filter() to\n        # a new Enum called name, and export the enum and its members back to\n        # module;\n        # also, replace the __reduce_ex__ method so unpickling works in\n        # previous Python versions\n        module_globals = vars(sys.modules[module])\n        if source:\n            source = vars(source)\n        else:\n            source = module_globals\n        # _value2member_map_ is populated in the same order every time\n        # for a consistent reverse mapping of number to name when there\n        # are multiple names for the same number.\n        members = [\n                (name, value)\n                for name, value in source.items()\n                if filter(name)]\n        try:\n            # sort by value\n            members.sort(key=lambda t: (t[1], t[0]))\n        except TypeError:\n            # unless some values aren't comparable, in which case sort by name\n            members.sort(key=lambda t: t[0])\n        cls = cls(name, members, module=module)\n        cls.__reduce_ex__ = _reduce_ex_by_name\n        module_globals.update(cls.__members__)\n        module_globals[name] = cls\n        return cls\n\n    def _convert(cls, *args, **kwargs):\n        import warnings\n        warnings.warn(\"_convert is deprecated and will be removed in 3.9, use \"\n                      \"_convert_ instead.\", DeprecationWarning, stacklevel=2)\n        return cls._convert_(*args, **kwargs)\n\n    @staticmethod\n    def _get_mixins_(bases):\n        \"\"\"Returns the type for creating enum members, and the first inherited\n        enum class.\n\n        bases: the tuple of bases that was given to __new__\n\n        \"\"\"\n        if not bases:\n            return object, Enum\n\n        def _find_data_type(bases):\n            for chain in bases:\n                for base in chain.__mro__:\n                    if base is object:\n                        continue\n                    elif '__new__' in base.__dict__:\n                        if issubclass(base, Enum):\n                            continue\n                        return base\n\n        # ensure final parent class is an Enum derivative, find any concrete\n        # data type, and check that Enum has no members\n        first_enum = bases[-1]\n        if not issubclass(first_enum, Enum):\n            raise TypeError(\"new enumerations should be created as \"\n                    \"`EnumName([mixin_type, ...] [data_type,] enum_type)`\")\n        member_type = _find_data_type(bases) or object\n        if first_enum._member_names_:\n            raise TypeError(\"Cannot extend enumerations\")\n        return member_type, first_enum\n\n    @staticmethod\n    def _find_new_(classdict, member_type, first_enum):\n        \"\"\"Returns the __new__ to be used for creating the enum members.\n\n        classdict: the class dictionary given to __new__\n        member_type: the data type whose __new__ will be used by default\n        first_enum: enumeration to check for an overriding __new__\n\n        \"\"\"\n        # now find the correct __new__, checking to see of one was defined\n        # by the user; also check earlier enum classes in case a __new__ was\n        # saved as __new_member__\n        __new__ = classdict.get('__new__', None)\n\n        # should __new__ be saved as __new_member__ later?\n        save_new = __new__ is not None\n\n        if __new__ is None:\n            # check all possibles for __new_member__ before falling back to\n            # __new__\n            for method in ('__new_member__', '__new__'):\n                for possible in (member_type, first_enum):\n                    target = getattr(possible, method, None)\n                    if target not in {\n                            None,\n                            None.__new__,\n                            object.__new__,\n                            Enum.__new__,\n                            }:\n                        __new__ = target\n                        break\n                if __new__ is not None:\n                    break\n            else:\n                __new__ = object.__new__\n\n        # if a non-object.__new__ is used then whatever value/tuple was\n        # assigned to the enum member name will be passed to __new__ and to the\n        # new enum member's __init__\n        if __new__ is object.__new__:\n            use_args = False\n        else:\n            use_args = True\n        return __new__, save_new, use_args\n\n\nclass Enum(metaclass=EnumMeta):\n    \"\"\"Generic enumeration.\n\n    Derive from this class to define new enumerations.\n\n    \"\"\"\n    def __new__(cls, value):\n        # all enum instances are actually created during class construction\n        # without calling this method; this method is called by the metaclass'\n        # __call__ (i.e. Color(3) ), and by pickle\n        if type(value) is cls:\n            # For lookups like Color(Color.RED)\n            return value\n        # by-value search for a matching enum member\n        # see if it's in the reverse mapping (for hashable values)\n        try:\n            return cls._value2member_map_[value]\n        except KeyError:\n            # Not found, no need to do long O(n) search\n            pass\n        except TypeError:\n            # not there, now do long search -- O(n) behavior\n            for member in cls._member_map_.values():\n                if member._value_ == value:\n                    return member\n        # still not found -- try _missing_ hook\n        try:\n            exc = None\n            result = cls._missing_(value)\n        except Exception as e:\n            exc = e\n            result = None\n        if isinstance(result, cls):\n            return result\n        else:\n            ve_exc = ValueError(\"%r is not a valid %s\" % (value, cls.__name__))\n            if result is None and exc is None:\n                raise ve_exc\n            elif exc is None:\n                exc = TypeError(\n                        'error in %s._missing_: returned %r instead of None or a valid member'\n                        % (cls.__name__, result)\n                        )\n            exc.__context__ = ve_exc\n            raise exc\n\n    def _generate_next_value_(name, start, count, last_values):\n        for last_value in reversed(last_values):\n            try:\n                return last_value + 1\n            except TypeError:\n                pass\n        else:\n            return start\n\n    @classmethod\n    def _missing_(cls, value):\n        raise ValueError(\"%r is not a valid %s\" % (value, cls.__name__))\n\n    def __repr__(self):\n        return \"<%s.%s: %r>\" % (\n                self.__class__.__name__, self._name_, self._value_)\n\n    def __str__(self):\n        return \"%s.%s\" % (self.__class__.__name__, self._name_)\n\n    def __dir__(self):\n        added_behavior = [\n                m\n                for cls in self.__class__.mro()\n                for m in cls.__dict__\n                if m[0] != '_' and m not in self._member_map_\n                ]\n        return (['__class__', '__doc__', '__module__'] + added_behavior)\n\n    def __format__(self, format_spec):\n        # mixed-in Enums should use the mixed-in type's __format__, otherwise\n        # we can get strange results with the Enum name showing up instead of\n        # the value\n\n        # pure Enum branch\n        if self._member_type_ is object:\n            cls = str\n            val = str(self)\n        # mix-in branch\n        else:\n            cls = self._member_type_\n            val = self._value_\n        return cls.__format__(val, format_spec)\n\n    def __hash__(self):\n        return hash(self._name_)\n\n    def __reduce_ex__(self, proto):\n        return self.__class__, (self._value_, )\n\n    # DynamicClassAttribute is used to provide access to the `name` and\n    # `value` properties of enum members while keeping some measure of\n    # protection from modification, while still allowing for an enumeration\n    # to have members named `name` and `value`.  This works because enumeration\n    # members are not set directly on the enum class -- __getattr__ is\n    # used to look them up.\n\n    @DynamicClassAttribute\n    def name(self):\n        \"\"\"The name of the Enum member.\"\"\"\n        return self._name_\n\n    @DynamicClassAttribute\n    def value(self):\n        \"\"\"The value of the Enum member.\"\"\"\n        return self._value_\n\n\nclass IntEnum(int, Enum):\n    \"\"\"Enum where members are also (and must be) ints\"\"\"\n\n\ndef _reduce_ex_by_name(self, proto):\n    return self.name\n\nclass Flag(Enum):\n    \"\"\"Support for flags\"\"\"\n\n    def _generate_next_value_(name, start, count, last_values):\n        \"\"\"\n        Generate the next value when not given.\n\n        name: the name of the member\n        start: the initial start value or None\n        count: the number of existing members\n        last_value: the last value assigned or None\n        \"\"\"\n        if not count:\n            return start if start is not None else 1\n        for last_value in reversed(last_values):\n            try:\n                high_bit = _high_bit(last_value)\n                break\n            except Exception:\n                raise TypeError('Invalid Flag value: %r' % last_value) from None\n        return 2 ** (high_bit+1)\n\n    @classmethod\n    def _missing_(cls, value):\n        original_value = value\n        if value < 0:\n            value = ~value\n        possible_member = cls._create_pseudo_member_(value)\n        if original_value < 0:\n            possible_member = ~possible_member\n        return possible_member\n\n    @classmethod\n    def _create_pseudo_member_(cls, value):\n        \"\"\"\n        Create a composite member iff value contains only members.\n        \"\"\"\n        pseudo_member = cls._value2member_map_.get(value, None)\n        if pseudo_member is None:\n            # verify all bits are accounted for\n            _, extra_flags = _decompose(cls, value)\n            if extra_flags:\n                raise ValueError(\"%r is not a valid %s\" % (value, cls.__name__))\n            # construct a singleton enum pseudo-member\n            pseudo_member = object.__new__(cls)\n            pseudo_member._name_ = None\n            pseudo_member._value_ = value\n            # use setdefault in case another thread already created a composite\n            # with this value\n            pseudo_member = cls._value2member_map_.setdefault(value, pseudo_member)\n        return pseudo_member\n\n    def __contains__(self, other):\n        if not isinstance(other, self.__class__):\n            raise TypeError(\n                \"unsupported operand type(s) for 'in': '%s' and '%s'\" % (\n                    type(other).__qualname__, self.__class__.__qualname__))\n        return other._value_ & self._value_ == other._value_\n\n    def __repr__(self):\n        cls = self.__class__\n        if self._name_ is not None:\n            return '<%s.%s: %r>' % (cls.__name__, self._name_, self._value_)\n        members, uncovered = _decompose(cls, self._value_)\n        return '<%s.%s: %r>' % (\n                cls.__name__,\n                '|'.join([str(m._name_ or m._value_) for m in members]),\n                self._value_,\n                )\n\n    def __str__(self):\n        cls = self.__class__\n        if self._name_ is not None:\n            return '%s.%s' % (cls.__name__, self._name_)\n        members, uncovered = _decompose(cls, self._value_)\n        if len(members) == 1 and members[0]._name_ is None:\n            return '%s.%r' % (cls.__name__, members[0]._value_)\n        else:\n            return '%s.%s' % (\n                    cls.__name__,\n                    '|'.join([str(m._name_ or m._value_) for m in members]),\n                    )\n\n    def __bool__(self):\n        return bool(self._value_)\n\n    def __or__(self, other):\n        if not isinstance(other, self.__class__):\n            return NotImplemented\n        return self.__class__(self._value_ | other._value_)\n\n    def __and__(self, other):\n        if not isinstance(other, self.__class__):\n            return NotImplemented\n        return self.__class__(self._value_ & other._value_)\n\n    def __xor__(self, other):\n        if not isinstance(other, self.__class__):\n            return NotImplemented\n        return self.__class__(self._value_ ^ other._value_)\n\n    def __invert__(self):\n        members, uncovered = _decompose(self.__class__, self._value_)\n        inverted = self.__class__(0)\n        for m in self.__class__:\n            if m not in members and not (m._value_ & self._value_):\n                inverted = inverted | m\n        return self.__class__(inverted)\n\n\nclass IntFlag(int, Flag):\n    \"\"\"Support for integer-based Flags\"\"\"\n\n    @classmethod\n    def _missing_(cls, value):\n        if not isinstance(value, int):\n            raise ValueError(\"%r is not a valid %s\" % (value, cls.__name__))\n        new_member = cls._create_pseudo_member_(value)\n        return new_member\n\n    @classmethod\n    def _create_pseudo_member_(cls, value):\n        pseudo_member = cls._value2member_map_.get(value, None)\n        if pseudo_member is None:\n            need_to_create = [value]\n            # get unaccounted for bits\n            _, extra_flags = _decompose(cls, value)\n            # timer = 10\n            while extra_flags:\n                # timer -= 1\n                bit = _high_bit(extra_flags)\n                flag_value = 2 ** bit\n                if (flag_value not in cls._value2member_map_ and\n                        flag_value not in need_to_create\n                        ):\n                    need_to_create.append(flag_value)\n                if extra_flags == -flag_value:\n                    extra_flags = 0\n                else:\n                    extra_flags ^= flag_value\n            for value in reversed(need_to_create):\n                # construct singleton pseudo-members\n                pseudo_member = int.__new__(cls, value)\n                pseudo_member._name_ = None\n                pseudo_member._value_ = value\n                # use setdefault in case another thread already created a composite\n                # with this value\n                pseudo_member = cls._value2member_map_.setdefault(value, pseudo_member)\n        return pseudo_member\n\n    def __or__(self, other):\n        if not isinstance(other, (self.__class__, int)):\n            return NotImplemented\n        result = self.__class__(self._value_ | self.__class__(other)._value_)\n        return result\n\n    def __and__(self, other):\n        if not isinstance(other, (self.__class__, int)):\n            return NotImplemented\n        return self.__class__(self._value_ & self.__class__(other)._value_)\n\n    def __xor__(self, other):\n        if not isinstance(other, (self.__class__, int)):\n            return NotImplemented\n        return self.__class__(self._value_ ^ self.__class__(other)._value_)\n\n    __ror__ = __or__\n    __rand__ = __and__\n    __rxor__ = __xor__\n\n    def __invert__(self):\n        result = self.__class__(~self._value_)\n        return result\n\n\ndef _high_bit(value):\n    \"\"\"returns index of highest bit, or -1 if value is zero or negative\"\"\"\n    return value.bit_length() - 1\n\ndef unique(enumeration):\n    \"\"\"Class decorator for enumerations ensuring unique member values.\"\"\"\n    duplicates = []\n    for name, member in enumeration.__members__.items():\n        if name != member.name:\n            duplicates.append((name, member.name))\n    if duplicates:\n        alias_details = ', '.join(\n                [\"%s -> %s\" % (alias, name) for (alias, name) in duplicates])\n        raise ValueError('duplicate values found in %r: %s' %\n                (enumeration, alias_details))\n    return enumeration\n\ndef _decompose(flag, value):\n    \"\"\"Extract all members from the value.\"\"\"\n    # _decompose is only called if the value is not named\n    not_covered = value\n    negative = value < 0\n    # issue29167: wrap accesses to _value2member_map_ in a list to avoid race\n    #             conditions between iterating over it and having more pseudo-\n    #             members added to it\n    if negative:\n        # only check for named flags\n        flags_to_check = [\n                (m, v)\n                for v, m in list(flag._value2member_map_.items())\n                if m.name is not None\n                ]\n    else:\n        # check for named flags and powers-of-two flags\n        flags_to_check = [\n                (m, v)\n                for v, m in list(flag._value2member_map_.items())\n                if m.name is not None or _power_of_two(v)\n                ]\n    members = []\n    for member, member_value in flags_to_check:\n        if member_value and member_value & value == member_value:\n            members.append(member)\n            not_covered &= ~member_value\n    if not members and value in flag._value2member_map_:\n        members.append(flag._value2member_map_[value])\n    members.sort(key=lambda m: m._value_, reverse=True)\n    if len(members) > 1 and members[0].value == value:\n        # we have the breakdown, don't need the value member itself\n        members.pop(0)\n    return members, not_covered\n\ndef _power_of_two(value):\n    if value < 1:\n        return False\n    return value == 2 ** _high_bit(value)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/filecmp.py",
    "content": "\"\"\"Utilities for comparing files and directories.\n\nClasses:\n    dircmp\n\nFunctions:\n    cmp(f1, f2, shallow=True) -> int\n    cmpfiles(a, b, common) -> ([], [], [])\n    clear_cache()\n\n\"\"\"\n\nimport os\nimport stat\nfrom itertools import filterfalse\n\n__all__ = ['clear_cache', 'cmp', 'dircmp', 'cmpfiles', 'DEFAULT_IGNORES']\n\n_cache = {}\nBUFSIZE = 8*1024\n\nDEFAULT_IGNORES = [\n    'RCS', 'CVS', 'tags', '.git', '.hg', '.bzr', '_darcs', '__pycache__']\n\ndef clear_cache():\n    \"\"\"Clear the filecmp cache.\"\"\"\n    _cache.clear()\n\ndef cmp(f1, f2, shallow=True):\n    \"\"\"Compare two files.\n\n    Arguments:\n\n    f1 -- First file name\n\n    f2 -- Second file name\n\n    shallow -- Just check stat signature (do not read the files).\n               defaults to True.\n\n    Return value:\n\n    True if the files are the same, False otherwise.\n\n    This function uses a cache for past comparisons and the results,\n    with cache entries invalidated if their stat information\n    changes.  The cache may be cleared by calling clear_cache().\n\n    \"\"\"\n\n    s1 = _sig(os.stat(f1))\n    s2 = _sig(os.stat(f2))\n    if s1[0] != stat.S_IFREG or s2[0] != stat.S_IFREG:\n        return False\n    if shallow and s1 == s2:\n        return True\n    if s1[1] != s2[1]:\n        return False\n\n    outcome = _cache.get((f1, f2, s1, s2))\n    if outcome is None:\n        outcome = _do_cmp(f1, f2)\n        if len(_cache) > 100:      # limit the maximum size of the cache\n            clear_cache()\n        _cache[f1, f2, s1, s2] = outcome\n    return outcome\n\ndef _sig(st):\n    return (stat.S_IFMT(st.st_mode),\n            st.st_size,\n            st.st_mtime)\n\ndef _do_cmp(f1, f2):\n    bufsize = BUFSIZE\n    with open(f1, 'rb') as fp1, open(f2, 'rb') as fp2:\n        while True:\n            b1 = fp1.read(bufsize)\n            b2 = fp2.read(bufsize)\n            if b1 != b2:\n                return False\n            if not b1:\n                return True\n\n# Directory comparison class.\n#\nclass dircmp:\n    \"\"\"A class that manages the comparison of 2 directories.\n\n    dircmp(a, b, ignore=None, hide=None)\n      A and B are directories.\n      IGNORE is a list of names to ignore,\n        defaults to DEFAULT_IGNORES.\n      HIDE is a list of names to hide,\n        defaults to [os.curdir, os.pardir].\n\n    High level usage:\n      x = dircmp(dir1, dir2)\n      x.report() -> prints a report on the differences between dir1 and dir2\n       or\n      x.report_partial_closure() -> prints report on differences between dir1\n            and dir2, and reports on common immediate subdirectories.\n      x.report_full_closure() -> like report_partial_closure,\n            but fully recursive.\n\n    Attributes:\n     left_list, right_list: The files in dir1 and dir2,\n        filtered by hide and ignore.\n     common: a list of names in both dir1 and dir2.\n     left_only, right_only: names only in dir1, dir2.\n     common_dirs: subdirectories in both dir1 and dir2.\n     common_files: files in both dir1 and dir2.\n     common_funny: names in both dir1 and dir2 where the type differs between\n        dir1 and dir2, or the name is not stat-able.\n     same_files: list of identical files.\n     diff_files: list of filenames which differ.\n     funny_files: list of files which could not be compared.\n     subdirs: a dictionary of dircmp objects, keyed by names in common_dirs.\n     \"\"\"\n\n    def __init__(self, a, b, ignore=None, hide=None): # Initialize\n        self.left = a\n        self.right = b\n        if hide is None:\n            self.hide = [os.curdir, os.pardir] # Names never to be shown\n        else:\n            self.hide = hide\n        if ignore is None:\n            self.ignore = DEFAULT_IGNORES\n        else:\n            self.ignore = ignore\n\n    def phase0(self): # Compare everything except common subdirectories\n        self.left_list = _filter(os.listdir(self.left),\n                                 self.hide+self.ignore)\n        self.right_list = _filter(os.listdir(self.right),\n                                  self.hide+self.ignore)\n        self.left_list.sort()\n        self.right_list.sort()\n\n    def phase1(self): # Compute common names\n        a = dict(zip(map(os.path.normcase, self.left_list), self.left_list))\n        b = dict(zip(map(os.path.normcase, self.right_list), self.right_list))\n        self.common = list(map(a.__getitem__, filter(b.__contains__, a)))\n        self.left_only = list(map(a.__getitem__, filterfalse(b.__contains__, a)))\n        self.right_only = list(map(b.__getitem__, filterfalse(a.__contains__, b)))\n\n    def phase2(self): # Distinguish files, directories, funnies\n        self.common_dirs = []\n        self.common_files = []\n        self.common_funny = []\n\n        for x in self.common:\n            a_path = os.path.join(self.left, x)\n            b_path = os.path.join(self.right, x)\n\n            ok = 1\n            try:\n                a_stat = os.stat(a_path)\n            except OSError as why:\n                # print('Can\\'t stat', a_path, ':', why.args[1])\n                ok = 0\n            try:\n                b_stat = os.stat(b_path)\n            except OSError as why:\n                # print('Can\\'t stat', b_path, ':', why.args[1])\n                ok = 0\n\n            if ok:\n                a_type = stat.S_IFMT(a_stat.st_mode)\n                b_type = stat.S_IFMT(b_stat.st_mode)\n                if a_type != b_type:\n                    self.common_funny.append(x)\n                elif stat.S_ISDIR(a_type):\n                    self.common_dirs.append(x)\n                elif stat.S_ISREG(a_type):\n                    self.common_files.append(x)\n                else:\n                    self.common_funny.append(x)\n            else:\n                self.common_funny.append(x)\n\n    def phase3(self): # Find out differences between common files\n        xx = cmpfiles(self.left, self.right, self.common_files)\n        self.same_files, self.diff_files, self.funny_files = xx\n\n    def phase4(self): # Find out differences between common subdirectories\n        # A new dircmp object is created for each common subdirectory,\n        # these are stored in a dictionary indexed by filename.\n        # The hide and ignore properties are inherited from the parent\n        self.subdirs = {}\n        for x in self.common_dirs:\n            a_x = os.path.join(self.left, x)\n            b_x = os.path.join(self.right, x)\n            self.subdirs[x]  = dircmp(a_x, b_x, self.ignore, self.hide)\n\n    def phase4_closure(self): # Recursively call phase4() on subdirectories\n        self.phase4()\n        for sd in self.subdirs.values():\n            sd.phase4_closure()\n\n    def report(self): # Print a report on the differences between a and b\n        # Output format is purposely lousy\n        print('diff', self.left, self.right)\n        if self.left_only:\n            self.left_only.sort()\n            print('Only in', self.left, ':', self.left_only)\n        if self.right_only:\n            self.right_only.sort()\n            print('Only in', self.right, ':', self.right_only)\n        if self.same_files:\n            self.same_files.sort()\n            print('Identical files :', self.same_files)\n        if self.diff_files:\n            self.diff_files.sort()\n            print('Differing files :', self.diff_files)\n        if self.funny_files:\n            self.funny_files.sort()\n            print('Trouble with common files :', self.funny_files)\n        if self.common_dirs:\n            self.common_dirs.sort()\n            print('Common subdirectories :', self.common_dirs)\n        if self.common_funny:\n            self.common_funny.sort()\n            print('Common funny cases :', self.common_funny)\n\n    def report_partial_closure(self): # Print reports on self and on subdirs\n        self.report()\n        for sd in self.subdirs.values():\n            print()\n            sd.report()\n\n    def report_full_closure(self): # Report on self and subdirs recursively\n        self.report()\n        for sd in self.subdirs.values():\n            print()\n            sd.report_full_closure()\n\n    methodmap = dict(subdirs=phase4,\n                     same_files=phase3, diff_files=phase3, funny_files=phase3,\n                     common_dirs = phase2, common_files=phase2, common_funny=phase2,\n                     common=phase1, left_only=phase1, right_only=phase1,\n                     left_list=phase0, right_list=phase0)\n\n    def __getattr__(self, attr):\n        if attr not in self.methodmap:\n            raise AttributeError(attr)\n        self.methodmap[attr](self)\n        return getattr(self, attr)\n\ndef cmpfiles(a, b, common, shallow=True):\n    \"\"\"Compare common files in two directories.\n\n    a, b -- directory names\n    common -- list of file names found in both directories\n    shallow -- if true, do comparison based solely on stat() information\n\n    Returns a tuple of three lists:\n      files that compare equal\n      files that are different\n      filenames that aren't regular files.\n\n    \"\"\"\n    res = ([], [], [])\n    for x in common:\n        ax = os.path.join(a, x)\n        bx = os.path.join(b, x)\n        res[_cmp(ax, bx, shallow)].append(x)\n    return res\n\n\n# Compare two files.\n# Return:\n#       0 for equal\n#       1 for different\n#       2 for funny cases (can't stat, etc.)\n#\ndef _cmp(a, b, sh, abs=abs, cmp=cmp):\n    try:\n        return not abs(cmp(a, b, sh))\n    except OSError:\n        return 2\n\n\n# Return a copy with items that occur in skip removed.\n#\ndef _filter(flist, skip):\n    return list(filterfalse(skip.__contains__, flist))\n\n\n# Demonstration and testing.\n#\ndef demo():\n    import sys\n    import getopt\n    options, args = getopt.getopt(sys.argv[1:], 'r')\n    if len(args) != 2:\n        raise getopt.GetoptError('need exactly two args', None)\n    dd = dircmp(args[0], args[1])\n    if ('-r', '') in options:\n        dd.report_full_closure()\n    else:\n        dd.report()\n\nif __name__ == '__main__':\n    demo()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/fileinput.py",
    "content": "\"\"\"Helper class to quickly write a loop over all standard input files.\n\nTypical use is:\n\n    import fileinput\n    for line in fileinput.input():\n        process(line)\n\nThis iterates over the lines of all files listed in sys.argv[1:],\ndefaulting to sys.stdin if the list is empty.  If a filename is '-' it\nis also replaced by sys.stdin and the optional arguments mode and\nopenhook are ignored.  To specify an alternative list of filenames,\npass it as the argument to input().  A single file name is also allowed.\n\nFunctions filename(), lineno() return the filename and cumulative line\nnumber of the line that has just been read; filelineno() returns its\nline number in the current file; isfirstline() returns true iff the\nline just read is the first line of its file; isstdin() returns true\niff the line was read from sys.stdin.  Function nextfile() closes the\ncurrent file so that the next iteration will read the first line from\nthe next file (if any); lines not read from the file will not count\ntowards the cumulative line count; the filename is not changed until\nafter the first line of the next file has been read.  Function close()\ncloses the sequence.\n\nBefore any lines have been read, filename() returns None and both line\nnumbers are zero; nextfile() has no effect.  After all lines have been\nread, filename() and the line number functions return the values\npertaining to the last line read; nextfile() has no effect.\n\nAll files are opened in text mode by default, you can override this by\nsetting the mode parameter to input() or FileInput.__init__().\nIf an I/O error occurs during opening or reading a file, the OSError\nexception is raised.\n\nIf sys.stdin is used more than once, the second and further use will\nreturn no lines, except perhaps for interactive use, or if it has been\nexplicitly reset (e.g. using sys.stdin.seek(0)).\n\nEmpty files are opened and immediately closed; the only time their\npresence in the list of filenames is noticeable at all is when the\nlast file opened is empty.\n\nIt is possible that the last line of a file doesn't end in a newline\ncharacter; otherwise lines are returned including the trailing\nnewline.\n\nClass FileInput is the implementation; its methods filename(),\nlineno(), fileline(), isfirstline(), isstdin(), nextfile() and close()\ncorrespond to the functions in the module.  In addition it has a\nreadline() method which returns the next input line, and a\n__getitem__() method which implements the sequence behavior.  The\nsequence must be accessed in strictly sequential order; sequence\naccess and readline() cannot be mixed.\n\nOptional in-place filtering: if the keyword argument inplace=1 is\npassed to input() or to the FileInput constructor, the file is moved\nto a backup file and standard output is directed to the input file.\nThis makes it possible to write a filter that rewrites its input file\nin place.  If the keyword argument backup=\".<some extension>\" is also\ngiven, it specifies the extension for the backup file, and the backup\nfile remains around; by default, the extension is \".bak\" and it is\ndeleted when the output file is closed.  In-place filtering is\ndisabled when standard input is read.  XXX The current implementation\ndoes not work for MS-DOS 8+3 filesystems.\n\nXXX Possible additions:\n\n- optional getopt argument processing\n- isatty()\n- read(), read(size), even readlines()\n\n\"\"\"\n\nimport sys, os\n\n__all__ = [\"input\", \"close\", \"nextfile\", \"filename\", \"lineno\", \"filelineno\",\n           \"fileno\", \"isfirstline\", \"isstdin\", \"FileInput\", \"hook_compressed\",\n           \"hook_encoded\"]\n\n_state = None\n\ndef input(files=None, inplace=False, backup=\"\", *, mode=\"r\", openhook=None):\n    \"\"\"Return an instance of the FileInput class, which can be iterated.\n\n    The parameters are passed to the constructor of the FileInput class.\n    The returned instance, in addition to being an iterator,\n    keeps global state for the functions of this module,.\n    \"\"\"\n    global _state\n    if _state and _state._file:\n        raise RuntimeError(\"input() already active\")\n    _state = FileInput(files, inplace, backup, mode=mode, openhook=openhook)\n    return _state\n\ndef close():\n    \"\"\"Close the sequence.\"\"\"\n    global _state\n    state = _state\n    _state = None\n    if state:\n        state.close()\n\ndef nextfile():\n    \"\"\"\n    Close the current file so that the next iteration will read the first\n    line from the next file (if any); lines not read from the file will\n    not count towards the cumulative line count. The filename is not\n    changed until after the first line of the next file has been read.\n    Before the first line has been read, this function has no effect;\n    it cannot be used to skip the first file. After the last line of the\n    last file has been read, this function has no effect.\n    \"\"\"\n    if not _state:\n        raise RuntimeError(\"no active input()\")\n    return _state.nextfile()\n\ndef filename():\n    \"\"\"\n    Return the name of the file currently being read.\n    Before the first line has been read, returns None.\n    \"\"\"\n    if not _state:\n        raise RuntimeError(\"no active input()\")\n    return _state.filename()\n\ndef lineno():\n    \"\"\"\n    Return the cumulative line number of the line that has just been read.\n    Before the first line has been read, returns 0. After the last line\n    of the last file has been read, returns the line number of that line.\n    \"\"\"\n    if not _state:\n        raise RuntimeError(\"no active input()\")\n    return _state.lineno()\n\ndef filelineno():\n    \"\"\"\n    Return the line number in the current file. Before the first line\n    has been read, returns 0. After the last line of the last file has\n    been read, returns the line number of that line within the file.\n    \"\"\"\n    if not _state:\n        raise RuntimeError(\"no active input()\")\n    return _state.filelineno()\n\ndef fileno():\n    \"\"\"\n    Return the file number of the current file. When no file is currently\n    opened, returns -1.\n    \"\"\"\n    if not _state:\n        raise RuntimeError(\"no active input()\")\n    return _state.fileno()\n\ndef isfirstline():\n    \"\"\"\n    Returns true the line just read is the first line of its file,\n    otherwise returns false.\n    \"\"\"\n    if not _state:\n        raise RuntimeError(\"no active input()\")\n    return _state.isfirstline()\n\ndef isstdin():\n    \"\"\"\n    Returns true if the last line was read from sys.stdin,\n    otherwise returns false.\n    \"\"\"\n    if not _state:\n        raise RuntimeError(\"no active input()\")\n    return _state.isstdin()\n\nclass FileInput:\n    \"\"\"FileInput([files[, inplace[, backup]]], *, mode=None, openhook=None)\n\n    Class FileInput is the implementation of the module; its methods\n    filename(), lineno(), fileline(), isfirstline(), isstdin(), fileno(),\n    nextfile() and close() correspond to the functions of the same name\n    in the module.\n    In addition it has a readline() method which returns the next\n    input line, and a __getitem__() method which implements the\n    sequence behavior. The sequence must be accessed in strictly\n    sequential order; random access and readline() cannot be mixed.\n    \"\"\"\n\n    def __init__(self, files=None, inplace=False, backup=\"\", *,\n                 mode=\"r\", openhook=None):\n        if isinstance(files, str):\n            files = (files,)\n        elif isinstance(files, os.PathLike):\n            files = (os.fspath(files), )\n        else:\n            if files is None:\n                files = sys.argv[1:]\n            if not files:\n                files = ('-',)\n            else:\n                files = tuple(files)\n        self._files = files\n        self._inplace = inplace\n        self._backup = backup\n        self._savestdout = None\n        self._output = None\n        self._filename = None\n        self._startlineno = 0\n        self._filelineno = 0\n        self._file = None\n        self._isstdin = False\n        self._backupfilename = None\n        # restrict mode argument to reading modes\n        if mode not in ('r', 'rU', 'U', 'rb'):\n            raise ValueError(\"FileInput opening mode must be one of \"\n                             \"'r', 'rU', 'U' and 'rb'\")\n        if 'U' in mode:\n            import warnings\n            warnings.warn(\"'U' mode is deprecated\",\n                          DeprecationWarning, 2)\n        self._mode = mode\n        self._write_mode = mode.replace('r', 'w') if 'U' not in mode else 'w'\n        if openhook:\n            if inplace:\n                raise ValueError(\"FileInput cannot use an opening hook in inplace mode\")\n            if not callable(openhook):\n                raise ValueError(\"FileInput openhook must be callable\")\n        self._openhook = openhook\n\n    def __del__(self):\n        self.close()\n\n    def close(self):\n        try:\n            self.nextfile()\n        finally:\n            self._files = ()\n\n    def __enter__(self):\n        return self\n\n    def __exit__(self, type, value, traceback):\n        self.close()\n\n    def __iter__(self):\n        return self\n\n    def __next__(self):\n        while True:\n            line = self._readline()\n            if line:\n                self._filelineno += 1\n                return line\n            if not self._file:\n                raise StopIteration\n            self.nextfile()\n            # repeat with next file\n\n    def __getitem__(self, i):\n        import warnings\n        warnings.warn(\n            \"Support for indexing FileInput objects is deprecated. \"\n            \"Use iterator protocol instead.\",\n            DeprecationWarning,\n            stacklevel=2\n        )\n        if i != self.lineno():\n            raise RuntimeError(\"accessing lines out of order\")\n        try:\n            return self.__next__()\n        except StopIteration:\n            raise IndexError(\"end of input reached\")\n\n    def nextfile(self):\n        savestdout = self._savestdout\n        self._savestdout = None\n        if savestdout:\n            sys.stdout = savestdout\n\n        output = self._output\n        self._output = None\n        try:\n            if output:\n                output.close()\n        finally:\n            file = self._file\n            self._file = None\n            try:\n                del self._readline  # restore FileInput._readline\n            except AttributeError:\n                pass\n            try:\n                if file and not self._isstdin:\n                    file.close()\n            finally:\n                backupfilename = self._backupfilename\n                self._backupfilename = None\n                if backupfilename and not self._backup:\n                    try: os.unlink(backupfilename)\n                    except OSError: pass\n\n                self._isstdin = False\n\n    def readline(self):\n        while True:\n            line = self._readline()\n            if line:\n                self._filelineno += 1\n                return line\n            if not self._file:\n                return line\n            self.nextfile()\n            # repeat with next file\n\n    def _readline(self):\n        if not self._files:\n            if 'b' in self._mode:\n                return b''\n            else:\n                return ''\n        self._filename = self._files[0]\n        self._files = self._files[1:]\n        self._startlineno = self.lineno()\n        self._filelineno = 0\n        self._file = None\n        self._isstdin = False\n        self._backupfilename = 0\n        if self._filename == '-':\n            self._filename = '<stdin>'\n            if 'b' in self._mode:\n                self._file = getattr(sys.stdin, 'buffer', sys.stdin)\n            else:\n                self._file = sys.stdin\n            self._isstdin = True\n        else:\n            if self._inplace:\n                self._backupfilename = (\n                    os.fspath(self._filename) + (self._backup or \".bak\"))\n                try:\n                    os.unlink(self._backupfilename)\n                except OSError:\n                    pass\n                # The next few lines may raise OSError\n                os.rename(self._filename, self._backupfilename)\n                self._file = open(self._backupfilename, self._mode)\n                try:\n                    perm = os.fstat(self._file.fileno()).st_mode\n                except OSError:\n                    self._output = open(self._filename, self._write_mode)\n                else:\n                    mode = os.O_CREAT | os.O_WRONLY | os.O_TRUNC\n                    if hasattr(os, 'O_BINARY'):\n                        mode |= os.O_BINARY\n\n                    fd = os.open(self._filename, mode, perm)\n                    self._output = os.fdopen(fd, self._write_mode)\n                    try:\n                        os.chmod(self._filename, perm)\n                    except OSError:\n                        pass\n                self._savestdout = sys.stdout\n                sys.stdout = self._output\n            else:\n                # This may raise OSError\n                if self._openhook:\n                    self._file = self._openhook(self._filename, self._mode)\n                else:\n                    self._file = open(self._filename, self._mode)\n        self._readline = self._file.readline  # hide FileInput._readline\n        return self._readline()\n\n    def filename(self):\n        return self._filename\n\n    def lineno(self):\n        return self._startlineno + self._filelineno\n\n    def filelineno(self):\n        return self._filelineno\n\n    def fileno(self):\n        if self._file:\n            try:\n                return self._file.fileno()\n            except ValueError:\n                return -1\n        else:\n            return -1\n\n    def isfirstline(self):\n        return self._filelineno == 1\n\n    def isstdin(self):\n        return self._isstdin\n\n\ndef hook_compressed(filename, mode):\n    ext = os.path.splitext(filename)[1]\n    if ext == '.gz':\n        import gzip\n        return gzip.open(filename, mode)\n    elif ext == '.bz2':\n        import bz2\n        return bz2.BZ2File(filename, mode)\n    else:\n        return open(filename, mode)\n\n\ndef hook_encoded(encoding, errors=None):\n    def openhook(filename, mode):\n        return open(filename, mode, encoding=encoding, errors=errors)\n    return openhook\n\n\ndef _test():\n    import getopt\n    inplace = False\n    backup = False\n    opts, args = getopt.getopt(sys.argv[1:], \"ib:\")\n    for o, a in opts:\n        if o == '-i': inplace = True\n        if o == '-b': backup = a\n    for line in input(args, inplace=inplace, backup=backup):\n        if line[-1:] == '\\n': line = line[:-1]\n        if line[-1:] == '\\r': line = line[:-1]\n        print(\"%d: %s[%d]%s %s\" % (lineno(), filename(), filelineno(),\n                                   isfirstline() and \"*\" or \"\", line))\n    print(\"%d: %s[%d]\" % (lineno(), filename(), filelineno()))\n\nif __name__ == '__main__':\n    _test()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/fnmatch.py",
    "content": "\"\"\"Filename matching with shell patterns.\n\nfnmatch(FILENAME, PATTERN) matches according to the local convention.\nfnmatchcase(FILENAME, PATTERN) always takes case in account.\n\nThe functions operate by translating the pattern into a regular\nexpression.  They cache the compiled regular expressions for speed.\n\nThe function translate(PATTERN) returns a regular expression\ncorresponding to PATTERN.  (It does not compile it.)\n\"\"\"\nimport os\nimport posixpath\nimport re\nimport functools\n\n__all__ = [\"filter\", \"fnmatch\", \"fnmatchcase\", \"translate\"]\n\ndef fnmatch(name, pat):\n    \"\"\"Test whether FILENAME matches PATTERN.\n\n    Patterns are Unix shell style:\n\n    *       matches everything\n    ?       matches any single character\n    [seq]   matches any character in seq\n    [!seq]  matches any char not in seq\n\n    An initial period in FILENAME is not special.\n    Both FILENAME and PATTERN are first case-normalized\n    if the operating system requires it.\n    If you don't want this, use fnmatchcase(FILENAME, PATTERN).\n    \"\"\"\n    name = os.path.normcase(name)\n    pat = os.path.normcase(pat)\n    return fnmatchcase(name, pat)\n\n@functools.lru_cache(maxsize=256, typed=True)\ndef _compile_pattern(pat):\n    if isinstance(pat, bytes):\n        pat_str = str(pat, 'ISO-8859-1')\n        res_str = translate(pat_str)\n        res = bytes(res_str, 'ISO-8859-1')\n    else:\n        res = translate(pat)\n    return re.compile(res).match\n\ndef filter(names, pat):\n    \"\"\"Return the subset of the list NAMES that match PAT.\"\"\"\n    result = []\n    pat = os.path.normcase(pat)\n    match = _compile_pattern(pat)\n    if os.path is posixpath:\n        # normcase on posix is NOP. Optimize it away from the loop.\n        for name in names:\n            if match(name):\n                result.append(name)\n    else:\n        for name in names:\n            if match(os.path.normcase(name)):\n                result.append(name)\n    return result\n\ndef fnmatchcase(name, pat):\n    \"\"\"Test whether FILENAME matches PATTERN, including case.\n\n    This is a version of fnmatch() which doesn't case-normalize\n    its arguments.\n    \"\"\"\n    match = _compile_pattern(pat)\n    return match(name) is not None\n\n\ndef translate(pat):\n    \"\"\"Translate a shell PATTERN to a regular expression.\n\n    There is no way to quote meta-characters.\n    \"\"\"\n\n    i, n = 0, len(pat)\n    res = ''\n    while i < n:\n        c = pat[i]\n        i = i+1\n        if c == '*':\n            res = res + '.*'\n        elif c == '?':\n            res = res + '.'\n        elif c == '[':\n            j = i\n            if j < n and pat[j] == '!':\n                j = j+1\n            if j < n and pat[j] == ']':\n                j = j+1\n            while j < n and pat[j] != ']':\n                j = j+1\n            if j >= n:\n                res = res + '\\\\['\n            else:\n                stuff = pat[i:j]\n                if '--' not in stuff:\n                    stuff = stuff.replace('\\\\', r'\\\\')\n                else:\n                    chunks = []\n                    k = i+2 if pat[i] == '!' else i+1\n                    while True:\n                        k = pat.find('-', k, j)\n                        if k < 0:\n                            break\n                        chunks.append(pat[i:k])\n                        i = k+1\n                        k = k+3\n                    chunks.append(pat[i:j])\n                    # Escape backslashes and hyphens for set difference (--).\n                    # Hyphens that create ranges shouldn't be escaped.\n                    stuff = '-'.join(s.replace('\\\\', r'\\\\').replace('-', r'\\-')\n                                     for s in chunks)\n                # Escape set operations (&&, ~~ and ||).\n                stuff = re.sub(r'([&~|])', r'\\\\\\1', stuff)\n                i = j+1\n                if stuff[0] == '!':\n                    stuff = '^' + stuff[1:]\n                elif stuff[0] in ('^', '['):\n                    stuff = '\\\\' + stuff\n                res = '%s[%s]' % (res, stuff)\n        else:\n            res = res + re.escape(c)\n    return r'(?s:%s)\\Z' % res\n"
  },
  {
    "path": "rd/usr/lib/python3.8/formatter.py",
    "content": "\"\"\"Generic output formatting.\n\nFormatter objects transform an abstract flow of formatting events into\nspecific output events on writer objects. Formatters manage several stack\nstructures to allow various properties of a writer object to be changed and\nrestored; writers need not be able to handle relative changes nor any sort\nof ``change back'' operation. Specific writer properties which may be\ncontrolled via formatter objects are horizontal alignment, font, and left\nmargin indentations. A mechanism is provided which supports providing\narbitrary, non-exclusive style settings to a writer as well. Additional\ninterfaces facilitate formatting events which are not reversible, such as\nparagraph separation.\n\nWriter objects encapsulate device interfaces. Abstract devices, such as\nfile formats, are supported as well as physical devices. The provided\nimplementations all work with abstract devices. The interface makes\navailable mechanisms for setting the properties which formatter objects\nmanage and inserting data into the output.\n\"\"\"\n\nimport sys\nimport warnings\nwarnings.warn('the formatter module is deprecated', DeprecationWarning,\n              stacklevel=2)\n\n\nAS_IS = None\n\n\nclass NullFormatter:\n    \"\"\"A formatter which does nothing.\n\n    If the writer parameter is omitted, a NullWriter instance is created.\n    No methods of the writer are called by NullFormatter instances.\n\n    Implementations should inherit from this class if implementing a writer\n    interface but don't need to inherit any implementation.\n\n    \"\"\"\n\n    def __init__(self, writer=None):\n        if writer is None:\n            writer = NullWriter()\n        self.writer = writer\n    def end_paragraph(self, blankline): pass\n    def add_line_break(self): pass\n    def add_hor_rule(self, *args, **kw): pass\n    def add_label_data(self, format, counter, blankline=None): pass\n    def add_flowing_data(self, data): pass\n    def add_literal_data(self, data): pass\n    def flush_softspace(self): pass\n    def push_alignment(self, align): pass\n    def pop_alignment(self): pass\n    def push_font(self, x): pass\n    def pop_font(self): pass\n    def push_margin(self, margin): pass\n    def pop_margin(self): pass\n    def set_spacing(self, spacing): pass\n    def push_style(self, *styles): pass\n    def pop_style(self, n=1): pass\n    def assert_line_data(self, flag=1): pass\n\n\nclass AbstractFormatter:\n    \"\"\"The standard formatter.\n\n    This implementation has demonstrated wide applicability to many writers,\n    and may be used directly in most circumstances.  It has been used to\n    implement a full-featured World Wide Web browser.\n\n    \"\"\"\n\n    #  Space handling policy:  blank spaces at the boundary between elements\n    #  are handled by the outermost context.  \"Literal\" data is not checked\n    #  to determine context, so spaces in literal data are handled directly\n    #  in all circumstances.\n\n    def __init__(self, writer):\n        self.writer = writer            # Output device\n        self.align = None               # Current alignment\n        self.align_stack = []           # Alignment stack\n        self.font_stack = []            # Font state\n        self.margin_stack = []          # Margin state\n        self.spacing = None             # Vertical spacing state\n        self.style_stack = []           # Other state, e.g. color\n        self.nospace = 1                # Should leading space be suppressed\n        self.softspace = 0              # Should a space be inserted\n        self.para_end = 1               # Just ended a paragraph\n        self.parskip = 0                # Skipped space between paragraphs?\n        self.hard_break = 1             # Have a hard break\n        self.have_label = 0\n\n    def end_paragraph(self, blankline):\n        if not self.hard_break:\n            self.writer.send_line_break()\n            self.have_label = 0\n        if self.parskip < blankline and not self.have_label:\n            self.writer.send_paragraph(blankline - self.parskip)\n            self.parskip = blankline\n            self.have_label = 0\n        self.hard_break = self.nospace = self.para_end = 1\n        self.softspace = 0\n\n    def add_line_break(self):\n        if not (self.hard_break or self.para_end):\n            self.writer.send_line_break()\n            self.have_label = self.parskip = 0\n        self.hard_break = self.nospace = 1\n        self.softspace = 0\n\n    def add_hor_rule(self, *args, **kw):\n        if not self.hard_break:\n            self.writer.send_line_break()\n        self.writer.send_hor_rule(*args, **kw)\n        self.hard_break = self.nospace = 1\n        self.have_label = self.para_end = self.softspace = self.parskip = 0\n\n    def add_label_data(self, format, counter, blankline = None):\n        if self.have_label or not self.hard_break:\n            self.writer.send_line_break()\n        if not self.para_end:\n            self.writer.send_paragraph((blankline and 1) or 0)\n        if isinstance(format, str):\n            self.writer.send_label_data(self.format_counter(format, counter))\n        else:\n            self.writer.send_label_data(format)\n        self.nospace = self.have_label = self.hard_break = self.para_end = 1\n        self.softspace = self.parskip = 0\n\n    def format_counter(self, format, counter):\n        label = ''\n        for c in format:\n            if c == '1':\n                label = label + ('%d' % counter)\n            elif c in 'aA':\n                if counter > 0:\n                    label = label + self.format_letter(c, counter)\n            elif c in 'iI':\n                if counter > 0:\n                    label = label + self.format_roman(c, counter)\n            else:\n                label = label + c\n        return label\n\n    def format_letter(self, case, counter):\n        label = ''\n        while counter > 0:\n            counter, x = divmod(counter-1, 26)\n            # This makes a strong assumption that lowercase letters\n            # and uppercase letters form two contiguous blocks, with\n            # letters in order!\n            s = chr(ord(case) + x)\n            label = s + label\n        return label\n\n    def format_roman(self, case, counter):\n        ones = ['i', 'x', 'c', 'm']\n        fives = ['v', 'l', 'd']\n        label, index = '', 0\n        # This will die of IndexError when counter is too big\n        while counter > 0:\n            counter, x = divmod(counter, 10)\n            if x == 9:\n                label = ones[index] + ones[index+1] + label\n            elif x == 4:\n                label = ones[index] + fives[index] + label\n            else:\n                if x >= 5:\n                    s = fives[index]\n                    x = x-5\n                else:\n                    s = ''\n                s = s + ones[index]*x\n                label = s + label\n            index = index + 1\n        if case == 'I':\n            return label.upper()\n        return label\n\n    def add_flowing_data(self, data):\n        if not data: return\n        prespace = data[:1].isspace()\n        postspace = data[-1:].isspace()\n        data = \" \".join(data.split())\n        if self.nospace and not data:\n            return\n        elif prespace or self.softspace:\n            if not data:\n                if not self.nospace:\n                    self.softspace = 1\n                    self.parskip = 0\n                return\n            if not self.nospace:\n                data = ' ' + data\n        self.hard_break = self.nospace = self.para_end = \\\n                          self.parskip = self.have_label = 0\n        self.softspace = postspace\n        self.writer.send_flowing_data(data)\n\n    def add_literal_data(self, data):\n        if not data: return\n        if self.softspace:\n            self.writer.send_flowing_data(\" \")\n        self.hard_break = data[-1:] == '\\n'\n        self.nospace = self.para_end = self.softspace = \\\n                       self.parskip = self.have_label = 0\n        self.writer.send_literal_data(data)\n\n    def flush_softspace(self):\n        if self.softspace:\n            self.hard_break = self.para_end = self.parskip = \\\n                              self.have_label = self.softspace = 0\n            self.nospace = 1\n            self.writer.send_flowing_data(' ')\n\n    def push_alignment(self, align):\n        if align and align != self.align:\n            self.writer.new_alignment(align)\n            self.align = align\n            self.align_stack.append(align)\n        else:\n            self.align_stack.append(self.align)\n\n    def pop_alignment(self):\n        if self.align_stack:\n            del self.align_stack[-1]\n        if self.align_stack:\n            self.align = align = self.align_stack[-1]\n            self.writer.new_alignment(align)\n        else:\n            self.align = None\n            self.writer.new_alignment(None)\n\n    def push_font(self, font):\n        size, i, b, tt = font\n        if self.softspace:\n            self.hard_break = self.para_end = self.softspace = 0\n            self.nospace = 1\n            self.writer.send_flowing_data(' ')\n        if self.font_stack:\n            csize, ci, cb, ctt = self.font_stack[-1]\n            if size is AS_IS: size = csize\n            if i is AS_IS: i = ci\n            if b is AS_IS: b = cb\n            if tt is AS_IS: tt = ctt\n        font = (size, i, b, tt)\n        self.font_stack.append(font)\n        self.writer.new_font(font)\n\n    def pop_font(self):\n        if self.font_stack:\n            del self.font_stack[-1]\n        if self.font_stack:\n            font = self.font_stack[-1]\n        else:\n            font = None\n        self.writer.new_font(font)\n\n    def push_margin(self, margin):\n        self.margin_stack.append(margin)\n        fstack = [m for m in self.margin_stack if m]\n        if not margin and fstack:\n            margin = fstack[-1]\n        self.writer.new_margin(margin, len(fstack))\n\n    def pop_margin(self):\n        if self.margin_stack:\n            del self.margin_stack[-1]\n        fstack = [m for m in self.margin_stack if m]\n        if fstack:\n            margin = fstack[-1]\n        else:\n            margin = None\n        self.writer.new_margin(margin, len(fstack))\n\n    def set_spacing(self, spacing):\n        self.spacing = spacing\n        self.writer.new_spacing(spacing)\n\n    def push_style(self, *styles):\n        if self.softspace:\n            self.hard_break = self.para_end = self.softspace = 0\n            self.nospace = 1\n            self.writer.send_flowing_data(' ')\n        for style in styles:\n            self.style_stack.append(style)\n        self.writer.new_styles(tuple(self.style_stack))\n\n    def pop_style(self, n=1):\n        del self.style_stack[-n:]\n        self.writer.new_styles(tuple(self.style_stack))\n\n    def assert_line_data(self, flag=1):\n        self.nospace = self.hard_break = not flag\n        self.para_end = self.parskip = self.have_label = 0\n\n\nclass NullWriter:\n    \"\"\"Minimal writer interface to use in testing & inheritance.\n\n    A writer which only provides the interface definition; no actions are\n    taken on any methods.  This should be the base class for all writers\n    which do not need to inherit any implementation methods.\n\n    \"\"\"\n    def __init__(self): pass\n    def flush(self): pass\n    def new_alignment(self, align): pass\n    def new_font(self, font): pass\n    def new_margin(self, margin, level): pass\n    def new_spacing(self, spacing): pass\n    def new_styles(self, styles): pass\n    def send_paragraph(self, blankline): pass\n    def send_line_break(self): pass\n    def send_hor_rule(self, *args, **kw): pass\n    def send_label_data(self, data): pass\n    def send_flowing_data(self, data): pass\n    def send_literal_data(self, data): pass\n\n\nclass AbstractWriter(NullWriter):\n    \"\"\"A writer which can be used in debugging formatters, but not much else.\n\n    Each method simply announces itself by printing its name and\n    arguments on standard output.\n\n    \"\"\"\n\n    def new_alignment(self, align):\n        print(\"new_alignment(%r)\" % (align,))\n\n    def new_font(self, font):\n        print(\"new_font(%r)\" % (font,))\n\n    def new_margin(self, margin, level):\n        print(\"new_margin(%r, %d)\" % (margin, level))\n\n    def new_spacing(self, spacing):\n        print(\"new_spacing(%r)\" % (spacing,))\n\n    def new_styles(self, styles):\n        print(\"new_styles(%r)\" % (styles,))\n\n    def send_paragraph(self, blankline):\n        print(\"send_paragraph(%r)\" % (blankline,))\n\n    def send_line_break(self):\n        print(\"send_line_break()\")\n\n    def send_hor_rule(self, *args, **kw):\n        print(\"send_hor_rule()\")\n\n    def send_label_data(self, data):\n        print(\"send_label_data(%r)\" % (data,))\n\n    def send_flowing_data(self, data):\n        print(\"send_flowing_data(%r)\" % (data,))\n\n    def send_literal_data(self, data):\n        print(\"send_literal_data(%r)\" % (data,))\n\n\nclass DumbWriter(NullWriter):\n    \"\"\"Simple writer class which writes output on the file object passed in\n    as the file parameter or, if file is omitted, on standard output.  The\n    output is simply word-wrapped to the number of columns specified by\n    the maxcol parameter.  This class is suitable for reflowing a sequence\n    of paragraphs.\n\n    \"\"\"\n\n    def __init__(self, file=None, maxcol=72):\n        self.file = file or sys.stdout\n        self.maxcol = maxcol\n        NullWriter.__init__(self)\n        self.reset()\n\n    def reset(self):\n        self.col = 0\n        self.atbreak = 0\n\n    def send_paragraph(self, blankline):\n        self.file.write('\\n'*blankline)\n        self.col = 0\n        self.atbreak = 0\n\n    def send_line_break(self):\n        self.file.write('\\n')\n        self.col = 0\n        self.atbreak = 0\n\n    def send_hor_rule(self, *args, **kw):\n        self.file.write('\\n')\n        self.file.write('-'*self.maxcol)\n        self.file.write('\\n')\n        self.col = 0\n        self.atbreak = 0\n\n    def send_literal_data(self, data):\n        self.file.write(data)\n        i = data.rfind('\\n')\n        if i >= 0:\n            self.col = 0\n            data = data[i+1:]\n        data = data.expandtabs()\n        self.col = self.col + len(data)\n        self.atbreak = 0\n\n    def send_flowing_data(self, data):\n        if not data: return\n        atbreak = self.atbreak or data[0].isspace()\n        col = self.col\n        maxcol = self.maxcol\n        write = self.file.write\n        for word in data.split():\n            if atbreak:\n                if col + len(word) >= maxcol:\n                    write('\\n')\n                    col = 0\n                else:\n                    write(' ')\n                    col = col + 1\n            write(word)\n            col = col + len(word)\n            atbreak = 1\n        self.col = col\n        self.atbreak = data[-1].isspace()\n\n\ndef test(file = None):\n    w = DumbWriter()\n    f = AbstractFormatter(w)\n    if file is not None:\n        fp = open(file)\n    elif sys.argv[1:]:\n        fp = open(sys.argv[1])\n    else:\n        fp = sys.stdin\n    try:\n        for line in fp:\n            if line == '\\n':\n                f.end_paragraph(1)\n            else:\n                f.add_flowing_data(line)\n    finally:\n        if fp is not sys.stdin:\n            fp.close()\n    f.end_paragraph(0)\n\n\nif __name__ == '__main__':\n    test()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/fractions.py",
    "content": "# Originally contributed by Sjoerd Mullender.\n# Significantly modified by Jeffrey Yasskin <jyasskin at gmail.com>.\n\n\"\"\"Fraction, infinite-precision, real numbers.\"\"\"\n\nfrom decimal import Decimal\nimport math\nimport numbers\nimport operator\nimport re\nimport sys\n\n__all__ = ['Fraction', 'gcd']\n\n\n\ndef gcd(a, b):\n    \"\"\"Calculate the Greatest Common Divisor of a and b.\n\n    Unless b==0, the result will have the same sign as b (so that when\n    b is divided by it, the result comes out positive).\n    \"\"\"\n    import warnings\n    warnings.warn('fractions.gcd() is deprecated. Use math.gcd() instead.',\n                  DeprecationWarning, 2)\n    if type(a) is int is type(b):\n        if (b or a) < 0:\n            return -math.gcd(a, b)\n        return math.gcd(a, b)\n    return _gcd(a, b)\n\ndef _gcd(a, b):\n    # Supports non-integers for backward compatibility.\n    while b:\n        a, b = b, a%b\n    return a\n\n# Constants related to the hash implementation;  hash(x) is based\n# on the reduction of x modulo the prime _PyHASH_MODULUS.\n_PyHASH_MODULUS = sys.hash_info.modulus\n# Value to be used for rationals that reduce to infinity modulo\n# _PyHASH_MODULUS.\n_PyHASH_INF = sys.hash_info.inf\n\n_RATIONAL_FORMAT = re.compile(r\"\"\"\n    \\A\\s*                      # optional whitespace at the start, then\n    (?P<sign>[-+]?)            # an optional sign, then\n    (?=\\d|\\.\\d)                # lookahead for digit or .digit\n    (?P<num>\\d*)               # numerator (possibly empty)\n    (?:                        # followed by\n       (?:/(?P<denom>\\d+))?    # an optional denominator\n    |                          # or\n       (?:\\.(?P<decimal>\\d*))? # an optional fractional part\n       (?:E(?P<exp>[-+]?\\d+))? # and optional exponent\n    )\n    \\s*\\Z                      # and optional whitespace to finish\n\"\"\", re.VERBOSE | re.IGNORECASE)\n\n\nclass Fraction(numbers.Rational):\n    \"\"\"This class implements rational numbers.\n\n    In the two-argument form of the constructor, Fraction(8, 6) will\n    produce a rational number equivalent to 4/3. Both arguments must\n    be Rational. The numerator defaults to 0 and the denominator\n    defaults to 1 so that Fraction(3) == 3 and Fraction() == 0.\n\n    Fractions can also be constructed from:\n\n      - numeric strings similar to those accepted by the\n        float constructor (for example, '-2.3' or '1e10')\n\n      - strings of the form '123/456'\n\n      - float and Decimal instances\n\n      - other Rational instances (including integers)\n\n    \"\"\"\n\n    __slots__ = ('_numerator', '_denominator')\n\n    # We're immutable, so use __new__ not __init__\n    def __new__(cls, numerator=0, denominator=None, *, _normalize=True):\n        \"\"\"Constructs a Rational.\n\n        Takes a string like '3/2' or '1.5', another Rational instance, a\n        numerator/denominator pair, or a float.\n\n        Examples\n        --------\n\n        >>> Fraction(10, -8)\n        Fraction(-5, 4)\n        >>> Fraction(Fraction(1, 7), 5)\n        Fraction(1, 35)\n        >>> Fraction(Fraction(1, 7), Fraction(2, 3))\n        Fraction(3, 14)\n        >>> Fraction('314')\n        Fraction(314, 1)\n        >>> Fraction('-35/4')\n        Fraction(-35, 4)\n        >>> Fraction('3.1415') # conversion from numeric string\n        Fraction(6283, 2000)\n        >>> Fraction('-47e-2') # string may include a decimal exponent\n        Fraction(-47, 100)\n        >>> Fraction(1.47)  # direct construction from float (exact conversion)\n        Fraction(6620291452234629, 4503599627370496)\n        >>> Fraction(2.25)\n        Fraction(9, 4)\n        >>> Fraction(Decimal('1.47'))\n        Fraction(147, 100)\n\n        \"\"\"\n        self = super(Fraction, cls).__new__(cls)\n\n        if denominator is None:\n            if type(numerator) is int:\n                self._numerator = numerator\n                self._denominator = 1\n                return self\n\n            elif isinstance(numerator, numbers.Rational):\n                self._numerator = numerator.numerator\n                self._denominator = numerator.denominator\n                return self\n\n            elif isinstance(numerator, (float, Decimal)):\n                # Exact conversion\n                self._numerator, self._denominator = numerator.as_integer_ratio()\n                return self\n\n            elif isinstance(numerator, str):\n                # Handle construction from strings.\n                m = _RATIONAL_FORMAT.match(numerator)\n                if m is None:\n                    raise ValueError('Invalid literal for Fraction: %r' %\n                                     numerator)\n                numerator = int(m.group('num') or '0')\n                denom = m.group('denom')\n                if denom:\n                    denominator = int(denom)\n                else:\n                    denominator = 1\n                    decimal = m.group('decimal')\n                    if decimal:\n                        scale = 10**len(decimal)\n                        numerator = numerator * scale + int(decimal)\n                        denominator *= scale\n                    exp = m.group('exp')\n                    if exp:\n                        exp = int(exp)\n                        if exp >= 0:\n                            numerator *= 10**exp\n                        else:\n                            denominator *= 10**-exp\n                if m.group('sign') == '-':\n                    numerator = -numerator\n\n            else:\n                raise TypeError(\"argument should be a string \"\n                                \"or a Rational instance\")\n\n        elif type(numerator) is int is type(denominator):\n            pass # *very* normal case\n\n        elif (isinstance(numerator, numbers.Rational) and\n            isinstance(denominator, numbers.Rational)):\n            numerator, denominator = (\n                numerator.numerator * denominator.denominator,\n                denominator.numerator * numerator.denominator\n                )\n        else:\n            raise TypeError(\"both arguments should be \"\n                            \"Rational instances\")\n\n        if denominator == 0:\n            raise ZeroDivisionError('Fraction(%s, 0)' % numerator)\n        if _normalize:\n            if type(numerator) is int is type(denominator):\n                # *very* normal case\n                g = math.gcd(numerator, denominator)\n                if denominator < 0:\n                    g = -g\n            else:\n                g = _gcd(numerator, denominator)\n            numerator //= g\n            denominator //= g\n        self._numerator = numerator\n        self._denominator = denominator\n        return self\n\n    @classmethod\n    def from_float(cls, f):\n        \"\"\"Converts a finite float to a rational number, exactly.\n\n        Beware that Fraction.from_float(0.3) != Fraction(3, 10).\n\n        \"\"\"\n        if isinstance(f, numbers.Integral):\n            return cls(f)\n        elif not isinstance(f, float):\n            raise TypeError(\"%s.from_float() only takes floats, not %r (%s)\" %\n                            (cls.__name__, f, type(f).__name__))\n        return cls(*f.as_integer_ratio())\n\n    @classmethod\n    def from_decimal(cls, dec):\n        \"\"\"Converts a finite Decimal instance to a rational number, exactly.\"\"\"\n        from decimal import Decimal\n        if isinstance(dec, numbers.Integral):\n            dec = Decimal(int(dec))\n        elif not isinstance(dec, Decimal):\n            raise TypeError(\n                \"%s.from_decimal() only takes Decimals, not %r (%s)\" %\n                (cls.__name__, dec, type(dec).__name__))\n        return cls(*dec.as_integer_ratio())\n\n    def as_integer_ratio(self):\n        \"\"\"Return the integer ratio as a tuple.\n\n        Return a tuple of two integers, whose ratio is equal to the\n        Fraction and with a positive denominator.\n        \"\"\"\n        return (self._numerator, self._denominator)\n\n    def limit_denominator(self, max_denominator=1000000):\n        \"\"\"Closest Fraction to self with denominator at most max_denominator.\n\n        >>> Fraction('3.141592653589793').limit_denominator(10)\n        Fraction(22, 7)\n        >>> Fraction('3.141592653589793').limit_denominator(100)\n        Fraction(311, 99)\n        >>> Fraction(4321, 8765).limit_denominator(10000)\n        Fraction(4321, 8765)\n\n        \"\"\"\n        # Algorithm notes: For any real number x, define a *best upper\n        # approximation* to x to be a rational number p/q such that:\n        #\n        #   (1) p/q >= x, and\n        #   (2) if p/q > r/s >= x then s > q, for any rational r/s.\n        #\n        # Define *best lower approximation* similarly.  Then it can be\n        # proved that a rational number is a best upper or lower\n        # approximation to x if, and only if, it is a convergent or\n        # semiconvergent of the (unique shortest) continued fraction\n        # associated to x.\n        #\n        # To find a best rational approximation with denominator <= M,\n        # we find the best upper and lower approximations with\n        # denominator <= M and take whichever of these is closer to x.\n        # In the event of a tie, the bound with smaller denominator is\n        # chosen.  If both denominators are equal (which can happen\n        # only when max_denominator == 1 and self is midway between\n        # two integers) the lower bound---i.e., the floor of self, is\n        # taken.\n\n        if max_denominator < 1:\n            raise ValueError(\"max_denominator should be at least 1\")\n        if self._denominator <= max_denominator:\n            return Fraction(self)\n\n        p0, q0, p1, q1 = 0, 1, 1, 0\n        n, d = self._numerator, self._denominator\n        while True:\n            a = n//d\n            q2 = q0+a*q1\n            if q2 > max_denominator:\n                break\n            p0, q0, p1, q1 = p1, q1, p0+a*p1, q2\n            n, d = d, n-a*d\n\n        k = (max_denominator-q0)//q1\n        bound1 = Fraction(p0+k*p1, q0+k*q1)\n        bound2 = Fraction(p1, q1)\n        if abs(bound2 - self) <= abs(bound1-self):\n            return bound2\n        else:\n            return bound1\n\n    @property\n    def numerator(a):\n        return a._numerator\n\n    @property\n    def denominator(a):\n        return a._denominator\n\n    def __repr__(self):\n        \"\"\"repr(self)\"\"\"\n        return '%s(%s, %s)' % (self.__class__.__name__,\n                               self._numerator, self._denominator)\n\n    def __str__(self):\n        \"\"\"str(self)\"\"\"\n        if self._denominator == 1:\n            return str(self._numerator)\n        else:\n            return '%s/%s' % (self._numerator, self._denominator)\n\n    def _operator_fallbacks(monomorphic_operator, fallback_operator):\n        \"\"\"Generates forward and reverse operators given a purely-rational\n        operator and a function from the operator module.\n\n        Use this like:\n        __op__, __rop__ = _operator_fallbacks(just_rational_op, operator.op)\n\n        In general, we want to implement the arithmetic operations so\n        that mixed-mode operations either call an implementation whose\n        author knew about the types of both arguments, or convert both\n        to the nearest built in type and do the operation there. In\n        Fraction, that means that we define __add__ and __radd__ as:\n\n            def __add__(self, other):\n                # Both types have numerators/denominator attributes,\n                # so do the operation directly\n                if isinstance(other, (int, Fraction)):\n                    return Fraction(self.numerator * other.denominator +\n                                    other.numerator * self.denominator,\n                                    self.denominator * other.denominator)\n                # float and complex don't have those operations, but we\n                # know about those types, so special case them.\n                elif isinstance(other, float):\n                    return float(self) + other\n                elif isinstance(other, complex):\n                    return complex(self) + other\n                # Let the other type take over.\n                return NotImplemented\n\n            def __radd__(self, other):\n                # radd handles more types than add because there's\n                # nothing left to fall back to.\n                if isinstance(other, numbers.Rational):\n                    return Fraction(self.numerator * other.denominator +\n                                    other.numerator * self.denominator,\n                                    self.denominator * other.denominator)\n                elif isinstance(other, Real):\n                    return float(other) + float(self)\n                elif isinstance(other, Complex):\n                    return complex(other) + complex(self)\n                return NotImplemented\n\n\n        There are 5 different cases for a mixed-type addition on\n        Fraction. I'll refer to all of the above code that doesn't\n        refer to Fraction, float, or complex as \"boilerplate\". 'r'\n        will be an instance of Fraction, which is a subtype of\n        Rational (r : Fraction <: Rational), and b : B <:\n        Complex. The first three involve 'r + b':\n\n            1. If B <: Fraction, int, float, or complex, we handle\n               that specially, and all is well.\n            2. If Fraction falls back to the boilerplate code, and it\n               were to return a value from __add__, we'd miss the\n               possibility that B defines a more intelligent __radd__,\n               so the boilerplate should return NotImplemented from\n               __add__. In particular, we don't handle Rational\n               here, even though we could get an exact answer, in case\n               the other type wants to do something special.\n            3. If B <: Fraction, Python tries B.__radd__ before\n               Fraction.__add__. This is ok, because it was\n               implemented with knowledge of Fraction, so it can\n               handle those instances before delegating to Real or\n               Complex.\n\n        The next two situations describe 'b + r'. We assume that b\n        didn't know about Fraction in its implementation, and that it\n        uses similar boilerplate code:\n\n            4. If B <: Rational, then __radd_ converts both to the\n               builtin rational type (hey look, that's us) and\n               proceeds.\n            5. Otherwise, __radd__ tries to find the nearest common\n               base ABC, and fall back to its builtin type. Since this\n               class doesn't subclass a concrete type, there's no\n               implementation to fall back to, so we need to try as\n               hard as possible to return an actual value, or the user\n               will get a TypeError.\n\n        \"\"\"\n        def forward(a, b):\n            if isinstance(b, (int, Fraction)):\n                return monomorphic_operator(a, b)\n            elif isinstance(b, float):\n                return fallback_operator(float(a), b)\n            elif isinstance(b, complex):\n                return fallback_operator(complex(a), b)\n            else:\n                return NotImplemented\n        forward.__name__ = '__' + fallback_operator.__name__ + '__'\n        forward.__doc__ = monomorphic_operator.__doc__\n\n        def reverse(b, a):\n            if isinstance(a, numbers.Rational):\n                # Includes ints.\n                return monomorphic_operator(a, b)\n            elif isinstance(a, numbers.Real):\n                return fallback_operator(float(a), float(b))\n            elif isinstance(a, numbers.Complex):\n                return fallback_operator(complex(a), complex(b))\n            else:\n                return NotImplemented\n        reverse.__name__ = '__r' + fallback_operator.__name__ + '__'\n        reverse.__doc__ = monomorphic_operator.__doc__\n\n        return forward, reverse\n\n    def _add(a, b):\n        \"\"\"a + b\"\"\"\n        da, db = a.denominator, b.denominator\n        return Fraction(a.numerator * db + b.numerator * da,\n                        da * db)\n\n    __add__, __radd__ = _operator_fallbacks(_add, operator.add)\n\n    def _sub(a, b):\n        \"\"\"a - b\"\"\"\n        da, db = a.denominator, b.denominator\n        return Fraction(a.numerator * db - b.numerator * da,\n                        da * db)\n\n    __sub__, __rsub__ = _operator_fallbacks(_sub, operator.sub)\n\n    def _mul(a, b):\n        \"\"\"a * b\"\"\"\n        return Fraction(a.numerator * b.numerator, a.denominator * b.denominator)\n\n    __mul__, __rmul__ = _operator_fallbacks(_mul, operator.mul)\n\n    def _div(a, b):\n        \"\"\"a / b\"\"\"\n        return Fraction(a.numerator * b.denominator,\n                        a.denominator * b.numerator)\n\n    __truediv__, __rtruediv__ = _operator_fallbacks(_div, operator.truediv)\n\n    def _floordiv(a, b):\n        \"\"\"a // b\"\"\"\n        return (a.numerator * b.denominator) // (a.denominator * b.numerator)\n\n    __floordiv__, __rfloordiv__ = _operator_fallbacks(_floordiv, operator.floordiv)\n\n    def _divmod(a, b):\n        \"\"\"(a // b, a % b)\"\"\"\n        da, db = a.denominator, b.denominator\n        div, n_mod = divmod(a.numerator * db, da * b.numerator)\n        return div, Fraction(n_mod, da * db)\n\n    __divmod__, __rdivmod__ = _operator_fallbacks(_divmod, divmod)\n\n    def _mod(a, b):\n        \"\"\"a % b\"\"\"\n        da, db = a.denominator, b.denominator\n        return Fraction((a.numerator * db) % (b.numerator * da), da * db)\n\n    __mod__, __rmod__ = _operator_fallbacks(_mod, operator.mod)\n\n    def __pow__(a, b):\n        \"\"\"a ** b\n\n        If b is not an integer, the result will be a float or complex\n        since roots are generally irrational. If b is an integer, the\n        result will be rational.\n\n        \"\"\"\n        if isinstance(b, numbers.Rational):\n            if b.denominator == 1:\n                power = b.numerator\n                if power >= 0:\n                    return Fraction(a._numerator ** power,\n                                    a._denominator ** power,\n                                    _normalize=False)\n                elif a._numerator >= 0:\n                    return Fraction(a._denominator ** -power,\n                                    a._numerator ** -power,\n                                    _normalize=False)\n                else:\n                    return Fraction((-a._denominator) ** -power,\n                                    (-a._numerator) ** -power,\n                                    _normalize=False)\n            else:\n                # A fractional power will generally produce an\n                # irrational number.\n                return float(a) ** float(b)\n        else:\n            return float(a) ** b\n\n    def __rpow__(b, a):\n        \"\"\"a ** b\"\"\"\n        if b._denominator == 1 and b._numerator >= 0:\n            # If a is an int, keep it that way if possible.\n            return a ** b._numerator\n\n        if isinstance(a, numbers.Rational):\n            return Fraction(a.numerator, a.denominator) ** b\n\n        if b._denominator == 1:\n            return a ** b._numerator\n\n        return a ** float(b)\n\n    def __pos__(a):\n        \"\"\"+a: Coerces a subclass instance to Fraction\"\"\"\n        return Fraction(a._numerator, a._denominator, _normalize=False)\n\n    def __neg__(a):\n        \"\"\"-a\"\"\"\n        return Fraction(-a._numerator, a._denominator, _normalize=False)\n\n    def __abs__(a):\n        \"\"\"abs(a)\"\"\"\n        return Fraction(abs(a._numerator), a._denominator, _normalize=False)\n\n    def __trunc__(a):\n        \"\"\"trunc(a)\"\"\"\n        if a._numerator < 0:\n            return -(-a._numerator // a._denominator)\n        else:\n            return a._numerator // a._denominator\n\n    def __floor__(a):\n        \"\"\"math.floor(a)\"\"\"\n        return a.numerator // a.denominator\n\n    def __ceil__(a):\n        \"\"\"math.ceil(a)\"\"\"\n        # The negations cleverly convince floordiv to return the ceiling.\n        return -(-a.numerator // a.denominator)\n\n    def __round__(self, ndigits=None):\n        \"\"\"round(self, ndigits)\n\n        Rounds half toward even.\n        \"\"\"\n        if ndigits is None:\n            floor, remainder = divmod(self.numerator, self.denominator)\n            if remainder * 2 < self.denominator:\n                return floor\n            elif remainder * 2 > self.denominator:\n                return floor + 1\n            # Deal with the half case:\n            elif floor % 2 == 0:\n                return floor\n            else:\n                return floor + 1\n        shift = 10**abs(ndigits)\n        # See _operator_fallbacks.forward to check that the results of\n        # these operations will always be Fraction and therefore have\n        # round().\n        if ndigits > 0:\n            return Fraction(round(self * shift), shift)\n        else:\n            return Fraction(round(self / shift) * shift)\n\n    def __hash__(self):\n        \"\"\"hash(self)\"\"\"\n\n        # XXX since this method is expensive, consider caching the result\n\n        # In order to make sure that the hash of a Fraction agrees\n        # with the hash of a numerically equal integer, float or\n        # Decimal instance, we follow the rules for numeric hashes\n        # outlined in the documentation.  (See library docs, 'Built-in\n        # Types').\n\n        # dinv is the inverse of self._denominator modulo the prime\n        # _PyHASH_MODULUS, or 0 if self._denominator is divisible by\n        # _PyHASH_MODULUS.\n        dinv = pow(self._denominator, _PyHASH_MODULUS - 2, _PyHASH_MODULUS)\n        if not dinv:\n            hash_ = _PyHASH_INF\n        else:\n            hash_ = abs(self._numerator) * dinv % _PyHASH_MODULUS\n        result = hash_ if self >= 0 else -hash_\n        return -2 if result == -1 else result\n\n    def __eq__(a, b):\n        \"\"\"a == b\"\"\"\n        if type(b) is int:\n            return a._numerator == b and a._denominator == 1\n        if isinstance(b, numbers.Rational):\n            return (a._numerator == b.numerator and\n                    a._denominator == b.denominator)\n        if isinstance(b, numbers.Complex) and b.imag == 0:\n            b = b.real\n        if isinstance(b, float):\n            if math.isnan(b) or math.isinf(b):\n                # comparisons with an infinity or nan should behave in\n                # the same way for any finite a, so treat a as zero.\n                return 0.0 == b\n            else:\n                return a == a.from_float(b)\n        else:\n            # Since a doesn't know how to compare with b, let's give b\n            # a chance to compare itself with a.\n            return NotImplemented\n\n    def _richcmp(self, other, op):\n        \"\"\"Helper for comparison operators, for internal use only.\n\n        Implement comparison between a Rational instance `self`, and\n        either another Rational instance or a float `other`.  If\n        `other` is not a Rational instance or a float, return\n        NotImplemented. `op` should be one of the six standard\n        comparison operators.\n\n        \"\"\"\n        # convert other to a Rational instance where reasonable.\n        if isinstance(other, numbers.Rational):\n            return op(self._numerator * other.denominator,\n                      self._denominator * other.numerator)\n        if isinstance(other, float):\n            if math.isnan(other) or math.isinf(other):\n                return op(0.0, other)\n            else:\n                return op(self, self.from_float(other))\n        else:\n            return NotImplemented\n\n    def __lt__(a, b):\n        \"\"\"a < b\"\"\"\n        return a._richcmp(b, operator.lt)\n\n    def __gt__(a, b):\n        \"\"\"a > b\"\"\"\n        return a._richcmp(b, operator.gt)\n\n    def __le__(a, b):\n        \"\"\"a <= b\"\"\"\n        return a._richcmp(b, operator.le)\n\n    def __ge__(a, b):\n        \"\"\"a >= b\"\"\"\n        return a._richcmp(b, operator.ge)\n\n    def __bool__(a):\n        \"\"\"a != 0\"\"\"\n        # bpo-39274: Use bool() because (a._numerator != 0) can return an\n        # object which is not a bool.\n        return bool(a._numerator)\n\n    # support for pickling, copy, and deepcopy\n\n    def __reduce__(self):\n        return (self.__class__, (str(self),))\n\n    def __copy__(self):\n        if type(self) == Fraction:\n            return self     # I'm immutable; therefore I am my own clone\n        return self.__class__(self._numerator, self._denominator)\n\n    def __deepcopy__(self, memo):\n        if type(self) == Fraction:\n            return self     # My components are also immutable\n        return self.__class__(self._numerator, self._denominator)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/ftplib.py",
    "content": "\"\"\"An FTP client class and some helper functions.\n\nBased on RFC 959: File Transfer Protocol (FTP), by J. Postel and J. Reynolds\n\nExample:\n\n>>> from ftplib import FTP\n>>> ftp = FTP('ftp.python.org') # connect to host, default port\n>>> ftp.login() # default, i.e.: user anonymous, passwd anonymous@\n'230 Guest login ok, access restrictions apply.'\n>>> ftp.retrlines('LIST') # list directory contents\ntotal 9\ndrwxr-xr-x   8 root     wheel        1024 Jan  3  1994 .\ndrwxr-xr-x   8 root     wheel        1024 Jan  3  1994 ..\ndrwxr-xr-x   2 root     wheel        1024 Jan  3  1994 bin\ndrwxr-xr-x   2 root     wheel        1024 Jan  3  1994 etc\nd-wxrwxr-x   2 ftp      wheel        1024 Sep  5 13:43 incoming\ndrwxr-xr-x   2 root     wheel        1024 Nov 17  1993 lib\ndrwxr-xr-x   6 1094     wheel        1024 Sep 13 19:07 pub\ndrwxr-xr-x   3 root     wheel        1024 Jan  3  1994 usr\n-rw-r--r--   1 root     root          312 Aug  1  1994 welcome.msg\n'226 Transfer complete.'\n>>> ftp.quit()\n'221 Goodbye.'\n>>>\n\nA nice test that reveals some of the network dialogue would be:\npython ftplib.py -d localhost -l -p -l\n\"\"\"\n\n#\n# Changes and improvements suggested by Steve Majewski.\n# Modified by Jack to work on the mac.\n# Modified by Siebren to support docstrings and PASV.\n# Modified by Phil Schwartz to add storbinary and storlines callbacks.\n# Modified by Giampaolo Rodola' to add TLS support.\n#\n\nimport sys\nimport socket\nfrom socket import _GLOBAL_DEFAULT_TIMEOUT\n\n__all__ = [\"FTP\", \"error_reply\", \"error_temp\", \"error_perm\", \"error_proto\",\n           \"all_errors\"]\n\n# Magic number from <socket.h>\nMSG_OOB = 0x1                           # Process data out of band\n\n\n# The standard FTP server control port\nFTP_PORT = 21\n# The sizehint parameter passed to readline() calls\nMAXLINE = 8192\n\n\n# Exception raised when an error or invalid response is received\nclass Error(Exception): pass\nclass error_reply(Error): pass          # unexpected [123]xx reply\nclass error_temp(Error): pass           # 4xx errors\nclass error_perm(Error): pass           # 5xx errors\nclass error_proto(Error): pass          # response does not begin with [1-5]\n\n\n# All exceptions (hopefully) that may be raised here and that aren't\n# (always) programming errors on our side\nall_errors = (Error, OSError, EOFError)\n\n\n# Line terminators (we always output CRLF, but accept any of CRLF, CR, LF)\nCRLF = '\\r\\n'\nB_CRLF = b'\\r\\n'\n\n# The class itself\nclass FTP:\n\n    '''An FTP client class.\n\n    To create a connection, call the class using these arguments:\n            host, user, passwd, acct, timeout\n\n    The first four arguments are all strings, and have default value ''.\n    timeout must be numeric and defaults to None if not passed,\n    meaning that no timeout will be set on any ftp socket(s)\n    If a timeout is passed, then this is now the default timeout for all ftp\n    socket operations for this instance.\n\n    Then use self.connect() with optional host and port argument.\n\n    To download a file, use ftp.retrlines('RETR ' + filename),\n    or ftp.retrbinary() with slightly different arguments.\n    To upload a file, use ftp.storlines() or ftp.storbinary(),\n    which have an open file as argument (see their definitions\n    below for details).\n    The download/upload functions first issue appropriate TYPE\n    and PORT or PASV commands.\n    '''\n\n    debugging = 0\n    host = ''\n    port = FTP_PORT\n    maxline = MAXLINE\n    sock = None\n    file = None\n    welcome = None\n    passiveserver = 1\n    encoding = \"latin-1\"\n\n    # Initialization method (called by class instantiation).\n    # Initialize host to localhost, port to standard ftp port\n    # Optional arguments are host (for connect()),\n    # and user, passwd, acct (for login())\n    def __init__(self, host='', user='', passwd='', acct='',\n                 timeout=_GLOBAL_DEFAULT_TIMEOUT, source_address=None):\n        self.source_address = source_address\n        self.timeout = timeout\n        if host:\n            self.connect(host)\n            if user:\n                self.login(user, passwd, acct)\n\n    def __enter__(self):\n        return self\n\n    # Context management protocol: try to quit() if active\n    def __exit__(self, *args):\n        if self.sock is not None:\n            try:\n                self.quit()\n            except (OSError, EOFError):\n                pass\n            finally:\n                if self.sock is not None:\n                    self.close()\n\n    def connect(self, host='', port=0, timeout=-999, source_address=None):\n        '''Connect to host.  Arguments are:\n         - host: hostname to connect to (string, default previous host)\n         - port: port to connect to (integer, default previous port)\n         - timeout: the timeout to set against the ftp socket(s)\n         - source_address: a 2-tuple (host, port) for the socket to bind\n           to as its source address before connecting.\n        '''\n        if host != '':\n            self.host = host\n        if port > 0:\n            self.port = port\n        if timeout != -999:\n            self.timeout = timeout\n        if source_address is not None:\n            self.source_address = source_address\n        sys.audit(\"ftplib.connect\", self, self.host, self.port)\n        self.sock = socket.create_connection((self.host, self.port), self.timeout,\n                                             source_address=self.source_address)\n        self.af = self.sock.family\n        self.file = self.sock.makefile('r', encoding=self.encoding)\n        self.welcome = self.getresp()\n        return self.welcome\n\n    def getwelcome(self):\n        '''Get the welcome message from the server.\n        (this is read and squirreled away by connect())'''\n        if self.debugging:\n            print('*welcome*', self.sanitize(self.welcome))\n        return self.welcome\n\n    def set_debuglevel(self, level):\n        '''Set the debugging level.\n        The required argument level means:\n        0: no debugging output (default)\n        1: print commands and responses but not body text etc.\n        2: also print raw lines read and sent before stripping CR/LF'''\n        self.debugging = level\n    debug = set_debuglevel\n\n    def set_pasv(self, val):\n        '''Use passive or active mode for data transfers.\n        With a false argument, use the normal PORT mode,\n        With a true argument, use the PASV command.'''\n        self.passiveserver = val\n\n    # Internal: \"sanitize\" a string for printing\n    def sanitize(self, s):\n        if s[:5] in {'pass ', 'PASS '}:\n            i = len(s.rstrip('\\r\\n'))\n            s = s[:5] + '*'*(i-5) + s[i:]\n        return repr(s)\n\n    # Internal: send one line to the server, appending CRLF\n    def putline(self, line):\n        if '\\r' in line or '\\n' in line:\n            raise ValueError('an illegal newline character should not be contained')\n        sys.audit(\"ftplib.sendcmd\", self, line)\n        line = line + CRLF\n        if self.debugging > 1:\n            print('*put*', self.sanitize(line))\n        self.sock.sendall(line.encode(self.encoding))\n\n    # Internal: send one command to the server (through putline())\n    def putcmd(self, line):\n        if self.debugging: print('*cmd*', self.sanitize(line))\n        self.putline(line)\n\n    # Internal: return one line from the server, stripping CRLF.\n    # Raise EOFError if the connection is closed\n    def getline(self):\n        line = self.file.readline(self.maxline + 1)\n        if len(line) > self.maxline:\n            raise Error(\"got more than %d bytes\" % self.maxline)\n        if self.debugging > 1:\n            print('*get*', self.sanitize(line))\n        if not line:\n            raise EOFError\n        if line[-2:] == CRLF:\n            line = line[:-2]\n        elif line[-1:] in CRLF:\n            line = line[:-1]\n        return line\n\n    # Internal: get a response from the server, which may possibly\n    # consist of multiple lines.  Return a single string with no\n    # trailing CRLF.  If the response consists of multiple lines,\n    # these are separated by '\\n' characters in the string\n    def getmultiline(self):\n        line = self.getline()\n        if line[3:4] == '-':\n            code = line[:3]\n            while 1:\n                nextline = self.getline()\n                line = line + ('\\n' + nextline)\n                if nextline[:3] == code and \\\n                        nextline[3:4] != '-':\n                    break\n        return line\n\n    # Internal: get a response from the server.\n    # Raise various errors if the response indicates an error\n    def getresp(self):\n        resp = self.getmultiline()\n        if self.debugging:\n            print('*resp*', self.sanitize(resp))\n        self.lastresp = resp[:3]\n        c = resp[:1]\n        if c in {'1', '2', '3'}:\n            return resp\n        if c == '4':\n            raise error_temp(resp)\n        if c == '5':\n            raise error_perm(resp)\n        raise error_proto(resp)\n\n    def voidresp(self):\n        \"\"\"Expect a response beginning with '2'.\"\"\"\n        resp = self.getresp()\n        if resp[:1] != '2':\n            raise error_reply(resp)\n        return resp\n\n    def abort(self):\n        '''Abort a file transfer.  Uses out-of-band data.\n        This does not follow the procedure from the RFC to send Telnet\n        IP and Synch; that doesn't seem to work with the servers I've\n        tried.  Instead, just send the ABOR command as OOB data.'''\n        line = b'ABOR' + B_CRLF\n        if self.debugging > 1:\n            print('*put urgent*', self.sanitize(line))\n        self.sock.sendall(line, MSG_OOB)\n        resp = self.getmultiline()\n        if resp[:3] not in {'426', '225', '226'}:\n            raise error_proto(resp)\n        return resp\n\n    def sendcmd(self, cmd):\n        '''Send a command and return the response.'''\n        self.putcmd(cmd)\n        return self.getresp()\n\n    def voidcmd(self, cmd):\n        \"\"\"Send a command and expect a response beginning with '2'.\"\"\"\n        self.putcmd(cmd)\n        return self.voidresp()\n\n    def sendport(self, host, port):\n        '''Send a PORT command with the current host and the given\n        port number.\n        '''\n        hbytes = host.split('.')\n        pbytes = [repr(port//256), repr(port%256)]\n        bytes = hbytes + pbytes\n        cmd = 'PORT ' + ','.join(bytes)\n        return self.voidcmd(cmd)\n\n    def sendeprt(self, host, port):\n        '''Send an EPRT command with the current host and the given port number.'''\n        af = 0\n        if self.af == socket.AF_INET:\n            af = 1\n        if self.af == socket.AF_INET6:\n            af = 2\n        if af == 0:\n            raise error_proto('unsupported address family')\n        fields = ['', repr(af), host, repr(port), '']\n        cmd = 'EPRT ' + '|'.join(fields)\n        return self.voidcmd(cmd)\n\n    def makeport(self):\n        '''Create a new socket and send a PORT command for it.'''\n        sock = socket.create_server((\"\", 0), family=self.af, backlog=1)\n        port = sock.getsockname()[1] # Get proper port\n        host = self.sock.getsockname()[0] # Get proper host\n        if self.af == socket.AF_INET:\n            resp = self.sendport(host, port)\n        else:\n            resp = self.sendeprt(host, port)\n        if self.timeout is not _GLOBAL_DEFAULT_TIMEOUT:\n            sock.settimeout(self.timeout)\n        return sock\n\n    def makepasv(self):\n        if self.af == socket.AF_INET:\n            host, port = parse227(self.sendcmd('PASV'))\n        else:\n            host, port = parse229(self.sendcmd('EPSV'), self.sock.getpeername())\n        return host, port\n\n    def ntransfercmd(self, cmd, rest=None):\n        \"\"\"Initiate a transfer over the data connection.\n\n        If the transfer is active, send a port command and the\n        transfer command, and accept the connection.  If the server is\n        passive, send a pasv command, connect to it, and start the\n        transfer command.  Either way, return the socket for the\n        connection and the expected size of the transfer.  The\n        expected size may be None if it could not be determined.\n\n        Optional `rest' argument can be a string that is sent as the\n        argument to a REST command.  This is essentially a server\n        marker used to tell the server to skip over any data up to the\n        given marker.\n        \"\"\"\n        size = None\n        if self.passiveserver:\n            host, port = self.makepasv()\n            conn = socket.create_connection((host, port), self.timeout,\n                                            source_address=self.source_address)\n            try:\n                if rest is not None:\n                    self.sendcmd(\"REST %s\" % rest)\n                resp = self.sendcmd(cmd)\n                # Some servers apparently send a 200 reply to\n                # a LIST or STOR command, before the 150 reply\n                # (and way before the 226 reply). This seems to\n                # be in violation of the protocol (which only allows\n                # 1xx or error messages for LIST), so we just discard\n                # this response.\n                if resp[0] == '2':\n                    resp = self.getresp()\n                if resp[0] != '1':\n                    raise error_reply(resp)\n            except:\n                conn.close()\n                raise\n        else:\n            with self.makeport() as sock:\n                if rest is not None:\n                    self.sendcmd(\"REST %s\" % rest)\n                resp = self.sendcmd(cmd)\n                # See above.\n                if resp[0] == '2':\n                    resp = self.getresp()\n                if resp[0] != '1':\n                    raise error_reply(resp)\n                conn, sockaddr = sock.accept()\n                if self.timeout is not _GLOBAL_DEFAULT_TIMEOUT:\n                    conn.settimeout(self.timeout)\n        if resp[:3] == '150':\n            # this is conditional in case we received a 125\n            size = parse150(resp)\n        return conn, size\n\n    def transfercmd(self, cmd, rest=None):\n        \"\"\"Like ntransfercmd() but returns only the socket.\"\"\"\n        return self.ntransfercmd(cmd, rest)[0]\n\n    def login(self, user = '', passwd = '', acct = ''):\n        '''Login, default anonymous.'''\n        if not user:\n            user = 'anonymous'\n        if not passwd:\n            passwd = ''\n        if not acct:\n            acct = ''\n        if user == 'anonymous' and passwd in {'', '-'}:\n            # If there is no anonymous ftp password specified\n            # then we'll just use anonymous@\n            # We don't send any other thing because:\n            # - We want to remain anonymous\n            # - We want to stop SPAM\n            # - We don't want to let ftp sites to discriminate by the user,\n            #   host or country.\n            passwd = passwd + 'anonymous@'\n        resp = self.sendcmd('USER ' + user)\n        if resp[0] == '3':\n            resp = self.sendcmd('PASS ' + passwd)\n        if resp[0] == '3':\n            resp = self.sendcmd('ACCT ' + acct)\n        if resp[0] != '2':\n            raise error_reply(resp)\n        return resp\n\n    def retrbinary(self, cmd, callback, blocksize=8192, rest=None):\n        \"\"\"Retrieve data in binary mode.  A new port is created for you.\n\n        Args:\n          cmd: A RETR command.\n          callback: A single parameter callable to be called on each\n                    block of data read.\n          blocksize: The maximum number of bytes to read from the\n                     socket at one time.  [default: 8192]\n          rest: Passed to transfercmd().  [default: None]\n\n        Returns:\n          The response code.\n        \"\"\"\n        self.voidcmd('TYPE I')\n        with self.transfercmd(cmd, rest) as conn:\n            while 1:\n                data = conn.recv(blocksize)\n                if not data:\n                    break\n                callback(data)\n            # shutdown ssl layer\n            if _SSLSocket is not None and isinstance(conn, _SSLSocket):\n                conn.unwrap()\n        return self.voidresp()\n\n    def retrlines(self, cmd, callback = None):\n        \"\"\"Retrieve data in line mode.  A new port is created for you.\n\n        Args:\n          cmd: A RETR, LIST, or NLST command.\n          callback: An optional single parameter callable that is called\n                    for each line with the trailing CRLF stripped.\n                    [default: print_line()]\n\n        Returns:\n          The response code.\n        \"\"\"\n        if callback is None:\n            callback = print_line\n        resp = self.sendcmd('TYPE A')\n        with self.transfercmd(cmd) as conn, \\\n                 conn.makefile('r', encoding=self.encoding) as fp:\n            while 1:\n                line = fp.readline(self.maxline + 1)\n                if len(line) > self.maxline:\n                    raise Error(\"got more than %d bytes\" % self.maxline)\n                if self.debugging > 2:\n                    print('*retr*', repr(line))\n                if not line:\n                    break\n                if line[-2:] == CRLF:\n                    line = line[:-2]\n                elif line[-1:] == '\\n':\n                    line = line[:-1]\n                callback(line)\n            # shutdown ssl layer\n            if _SSLSocket is not None and isinstance(conn, _SSLSocket):\n                conn.unwrap()\n        return self.voidresp()\n\n    def storbinary(self, cmd, fp, blocksize=8192, callback=None, rest=None):\n        \"\"\"Store a file in binary mode.  A new port is created for you.\n\n        Args:\n          cmd: A STOR command.\n          fp: A file-like object with a read(num_bytes) method.\n          blocksize: The maximum data size to read from fp and send over\n                     the connection at once.  [default: 8192]\n          callback: An optional single parameter callable that is called on\n                    each block of data after it is sent.  [default: None]\n          rest: Passed to transfercmd().  [default: None]\n\n        Returns:\n          The response code.\n        \"\"\"\n        self.voidcmd('TYPE I')\n        with self.transfercmd(cmd, rest) as conn:\n            while 1:\n                buf = fp.read(blocksize)\n                if not buf:\n                    break\n                conn.sendall(buf)\n                if callback:\n                    callback(buf)\n            # shutdown ssl layer\n            if _SSLSocket is not None and isinstance(conn, _SSLSocket):\n                conn.unwrap()\n        return self.voidresp()\n\n    def storlines(self, cmd, fp, callback=None):\n        \"\"\"Store a file in line mode.  A new port is created for you.\n\n        Args:\n          cmd: A STOR command.\n          fp: A file-like object with a readline() method.\n          callback: An optional single parameter callable that is called on\n                    each line after it is sent.  [default: None]\n\n        Returns:\n          The response code.\n        \"\"\"\n        self.voidcmd('TYPE A')\n        with self.transfercmd(cmd) as conn:\n            while 1:\n                buf = fp.readline(self.maxline + 1)\n                if len(buf) > self.maxline:\n                    raise Error(\"got more than %d bytes\" % self.maxline)\n                if not buf:\n                    break\n                if buf[-2:] != B_CRLF:\n                    if buf[-1] in B_CRLF: buf = buf[:-1]\n                    buf = buf + B_CRLF\n                conn.sendall(buf)\n                if callback:\n                    callback(buf)\n            # shutdown ssl layer\n            if _SSLSocket is not None and isinstance(conn, _SSLSocket):\n                conn.unwrap()\n        return self.voidresp()\n\n    def acct(self, password):\n        '''Send new account name.'''\n        cmd = 'ACCT ' + password\n        return self.voidcmd(cmd)\n\n    def nlst(self, *args):\n        '''Return a list of files in a given directory (default the current).'''\n        cmd = 'NLST'\n        for arg in args:\n            cmd = cmd + (' ' + arg)\n        files = []\n        self.retrlines(cmd, files.append)\n        return files\n\n    def dir(self, *args):\n        '''List a directory in long form.\n        By default list current directory to stdout.\n        Optional last argument is callback function; all\n        non-empty arguments before it are concatenated to the\n        LIST command.  (This *should* only be used for a pathname.)'''\n        cmd = 'LIST'\n        func = None\n        if args[-1:] and type(args[-1]) != type(''):\n            args, func = args[:-1], args[-1]\n        for arg in args:\n            if arg:\n                cmd = cmd + (' ' + arg)\n        self.retrlines(cmd, func)\n\n    def mlsd(self, path=\"\", facts=[]):\n        '''List a directory in a standardized format by using MLSD\n        command (RFC-3659). If path is omitted the current directory\n        is assumed. \"facts\" is a list of strings representing the type\n        of information desired (e.g. [\"type\", \"size\", \"perm\"]).\n\n        Return a generator object yielding a tuple of two elements\n        for every file found in path.\n        First element is the file name, the second one is a dictionary\n        including a variable number of \"facts\" depending on the server\n        and whether \"facts\" argument has been provided.\n        '''\n        if facts:\n            self.sendcmd(\"OPTS MLST \" + \";\".join(facts) + \";\")\n        if path:\n            cmd = \"MLSD %s\" % path\n        else:\n            cmd = \"MLSD\"\n        lines = []\n        self.retrlines(cmd, lines.append)\n        for line in lines:\n            facts_found, _, name = line.rstrip(CRLF).partition(' ')\n            entry = {}\n            for fact in facts_found[:-1].split(\";\"):\n                key, _, value = fact.partition(\"=\")\n                entry[key.lower()] = value\n            yield (name, entry)\n\n    def rename(self, fromname, toname):\n        '''Rename a file.'''\n        resp = self.sendcmd('RNFR ' + fromname)\n        if resp[0] != '3':\n            raise error_reply(resp)\n        return self.voidcmd('RNTO ' + toname)\n\n    def delete(self, filename):\n        '''Delete a file.'''\n        resp = self.sendcmd('DELE ' + filename)\n        if resp[:3] in {'250', '200'}:\n            return resp\n        else:\n            raise error_reply(resp)\n\n    def cwd(self, dirname):\n        '''Change to a directory.'''\n        if dirname == '..':\n            try:\n                return self.voidcmd('CDUP')\n            except error_perm as msg:\n                if msg.args[0][:3] != '500':\n                    raise\n        elif dirname == '':\n            dirname = '.'  # does nothing, but could return error\n        cmd = 'CWD ' + dirname\n        return self.voidcmd(cmd)\n\n    def size(self, filename):\n        '''Retrieve the size of a file.'''\n        # The SIZE command is defined in RFC-3659\n        resp = self.sendcmd('SIZE ' + filename)\n        if resp[:3] == '213':\n            s = resp[3:].strip()\n            return int(s)\n\n    def mkd(self, dirname):\n        '''Make a directory, return its full pathname.'''\n        resp = self.voidcmd('MKD ' + dirname)\n        # fix around non-compliant implementations such as IIS shipped\n        # with Windows server 2003\n        if not resp.startswith('257'):\n            return ''\n        return parse257(resp)\n\n    def rmd(self, dirname):\n        '''Remove a directory.'''\n        return self.voidcmd('RMD ' + dirname)\n\n    def pwd(self):\n        '''Return current working directory.'''\n        resp = self.voidcmd('PWD')\n        # fix around non-compliant implementations such as IIS shipped\n        # with Windows server 2003\n        if not resp.startswith('257'):\n            return ''\n        return parse257(resp)\n\n    def quit(self):\n        '''Quit, and close the connection.'''\n        resp = self.voidcmd('QUIT')\n        self.close()\n        return resp\n\n    def close(self):\n        '''Close the connection without assuming anything about it.'''\n        try:\n            file = self.file\n            self.file = None\n            if file is not None:\n                file.close()\n        finally:\n            sock = self.sock\n            self.sock = None\n            if sock is not None:\n                sock.close()\n\ntry:\n    import ssl\nexcept ImportError:\n    _SSLSocket = None\nelse:\n    _SSLSocket = ssl.SSLSocket\n\n    class FTP_TLS(FTP):\n        '''A FTP subclass which adds TLS support to FTP as described\n        in RFC-4217.\n\n        Connect as usual to port 21 implicitly securing the FTP control\n        connection before authenticating.\n\n        Securing the data connection requires user to explicitly ask\n        for it by calling prot_p() method.\n\n        Usage example:\n        >>> from ftplib import FTP_TLS\n        >>> ftps = FTP_TLS('ftp.python.org')\n        >>> ftps.login()  # login anonymously previously securing control channel\n        '230 Guest login ok, access restrictions apply.'\n        >>> ftps.prot_p()  # switch to secure data connection\n        '200 Protection level set to P'\n        >>> ftps.retrlines('LIST')  # list directory content securely\n        total 9\n        drwxr-xr-x   8 root     wheel        1024 Jan  3  1994 .\n        drwxr-xr-x   8 root     wheel        1024 Jan  3  1994 ..\n        drwxr-xr-x   2 root     wheel        1024 Jan  3  1994 bin\n        drwxr-xr-x   2 root     wheel        1024 Jan  3  1994 etc\n        d-wxrwxr-x   2 ftp      wheel        1024 Sep  5 13:43 incoming\n        drwxr-xr-x   2 root     wheel        1024 Nov 17  1993 lib\n        drwxr-xr-x   6 1094     wheel        1024 Sep 13 19:07 pub\n        drwxr-xr-x   3 root     wheel        1024 Jan  3  1994 usr\n        -rw-r--r--   1 root     root          312 Aug  1  1994 welcome.msg\n        '226 Transfer complete.'\n        >>> ftps.quit()\n        '221 Goodbye.'\n        >>>\n        '''\n        ssl_version = ssl.PROTOCOL_TLS_CLIENT\n\n        def __init__(self, host='', user='', passwd='', acct='', keyfile=None,\n                     certfile=None, context=None,\n                     timeout=_GLOBAL_DEFAULT_TIMEOUT, source_address=None):\n            if context is not None and keyfile is not None:\n                raise ValueError(\"context and keyfile arguments are mutually \"\n                                 \"exclusive\")\n            if context is not None and certfile is not None:\n                raise ValueError(\"context and certfile arguments are mutually \"\n                                 \"exclusive\")\n            if keyfile is not None or certfile is not None:\n                import warnings\n                warnings.warn(\"keyfile and certfile are deprecated, use a \"\n                              \"custom context instead\", DeprecationWarning, 2)\n            self.keyfile = keyfile\n            self.certfile = certfile\n            if context is None:\n                context = ssl._create_stdlib_context(self.ssl_version,\n                                                     certfile=certfile,\n                                                     keyfile=keyfile)\n            self.context = context\n            self._prot_p = False\n            FTP.__init__(self, host, user, passwd, acct, timeout, source_address)\n\n        def login(self, user='', passwd='', acct='', secure=True):\n            if secure and not isinstance(self.sock, ssl.SSLSocket):\n                self.auth()\n            return FTP.login(self, user, passwd, acct)\n\n        def auth(self):\n            '''Set up secure control connection by using TLS/SSL.'''\n            if isinstance(self.sock, ssl.SSLSocket):\n                raise ValueError(\"Already using TLS\")\n            if self.ssl_version >= ssl.PROTOCOL_TLS:\n                resp = self.voidcmd('AUTH TLS')\n            else:\n                resp = self.voidcmd('AUTH SSL')\n            self.sock = self.context.wrap_socket(self.sock,\n                                                 server_hostname=self.host)\n            self.file = self.sock.makefile(mode='r', encoding=self.encoding)\n            return resp\n\n        def ccc(self):\n            '''Switch back to a clear-text control connection.'''\n            if not isinstance(self.sock, ssl.SSLSocket):\n                raise ValueError(\"not using TLS\")\n            resp = self.voidcmd('CCC')\n            self.sock = self.sock.unwrap()\n            return resp\n\n        def prot_p(self):\n            '''Set up secure data connection.'''\n            # PROT defines whether or not the data channel is to be protected.\n            # Though RFC-2228 defines four possible protection levels,\n            # RFC-4217 only recommends two, Clear and Private.\n            # Clear (PROT C) means that no security is to be used on the\n            # data-channel, Private (PROT P) means that the data-channel\n            # should be protected by TLS.\n            # PBSZ command MUST still be issued, but must have a parameter of\n            # '0' to indicate that no buffering is taking place and the data\n            # connection should not be encapsulated.\n            self.voidcmd('PBSZ 0')\n            resp = self.voidcmd('PROT P')\n            self._prot_p = True\n            return resp\n\n        def prot_c(self):\n            '''Set up clear text data connection.'''\n            resp = self.voidcmd('PROT C')\n            self._prot_p = False\n            return resp\n\n        # --- Overridden FTP methods\n\n        def ntransfercmd(self, cmd, rest=None):\n            conn, size = FTP.ntransfercmd(self, cmd, rest)\n            if self._prot_p:\n                conn = self.context.wrap_socket(conn,\n                                                server_hostname=self.host)\n            return conn, size\n\n        def abort(self):\n            # overridden as we can't pass MSG_OOB flag to sendall()\n            line = b'ABOR' + B_CRLF\n            self.sock.sendall(line)\n            resp = self.getmultiline()\n            if resp[:3] not in {'426', '225', '226'}:\n                raise error_proto(resp)\n            return resp\n\n    __all__.append('FTP_TLS')\n    all_errors = (Error, OSError, EOFError, ssl.SSLError)\n\n\n_150_re = None\n\ndef parse150(resp):\n    '''Parse the '150' response for a RETR request.\n    Returns the expected transfer size or None; size is not guaranteed to\n    be present in the 150 message.\n    '''\n    if resp[:3] != '150':\n        raise error_reply(resp)\n    global _150_re\n    if _150_re is None:\n        import re\n        _150_re = re.compile(\n            r\"150 .* \\((\\d+) bytes\\)\", re.IGNORECASE | re.ASCII)\n    m = _150_re.match(resp)\n    if not m:\n        return None\n    return int(m.group(1))\n\n\n_227_re = None\n\ndef parse227(resp):\n    '''Parse the '227' response for a PASV request.\n    Raises error_proto if it does not contain '(h1,h2,h3,h4,p1,p2)'\n    Return ('host.addr.as.numbers', port#) tuple.'''\n\n    if resp[:3] != '227':\n        raise error_reply(resp)\n    global _227_re\n    if _227_re is None:\n        import re\n        _227_re = re.compile(r'(\\d+),(\\d+),(\\d+),(\\d+),(\\d+),(\\d+)', re.ASCII)\n    m = _227_re.search(resp)\n    if not m:\n        raise error_proto(resp)\n    numbers = m.groups()\n    host = '.'.join(numbers[:4])\n    port = (int(numbers[4]) << 8) + int(numbers[5])\n    return host, port\n\n\ndef parse229(resp, peer):\n    '''Parse the '229' response for an EPSV request.\n    Raises error_proto if it does not contain '(|||port|)'\n    Return ('host.addr.as.numbers', port#) tuple.'''\n\n    if resp[:3] != '229':\n        raise error_reply(resp)\n    left = resp.find('(')\n    if left < 0: raise error_proto(resp)\n    right = resp.find(')', left + 1)\n    if right < 0:\n        raise error_proto(resp) # should contain '(|||port|)'\n    if resp[left + 1] != resp[right - 1]:\n        raise error_proto(resp)\n    parts = resp[left + 1:right].split(resp[left+1])\n    if len(parts) != 5:\n        raise error_proto(resp)\n    host = peer[0]\n    port = int(parts[3])\n    return host, port\n\n\ndef parse257(resp):\n    '''Parse the '257' response for a MKD or PWD request.\n    This is a response to a MKD or PWD request: a directory name.\n    Returns the directoryname in the 257 reply.'''\n\n    if resp[:3] != '257':\n        raise error_reply(resp)\n    if resp[3:5] != ' \"':\n        return '' # Not compliant to RFC 959, but UNIX ftpd does this\n    dirname = ''\n    i = 5\n    n = len(resp)\n    while i < n:\n        c = resp[i]\n        i = i+1\n        if c == '\"':\n            if i >= n or resp[i] != '\"':\n                break\n            i = i+1\n        dirname = dirname + c\n    return dirname\n\n\ndef print_line(line):\n    '''Default retrlines callback to print a line.'''\n    print(line)\n\n\ndef ftpcp(source, sourcename, target, targetname = '', type = 'I'):\n    '''Copy file from one FTP-instance to another.'''\n    if not targetname:\n        targetname = sourcename\n    type = 'TYPE ' + type\n    source.voidcmd(type)\n    target.voidcmd(type)\n    sourcehost, sourceport = parse227(source.sendcmd('PASV'))\n    target.sendport(sourcehost, sourceport)\n    # RFC 959: the user must \"listen\" [...] BEFORE sending the\n    # transfer request.\n    # So: STOR before RETR, because here the target is a \"user\".\n    treply = target.sendcmd('STOR ' + targetname)\n    if treply[:3] not in {'125', '150'}:\n        raise error_proto  # RFC 959\n    sreply = source.sendcmd('RETR ' + sourcename)\n    if sreply[:3] not in {'125', '150'}:\n        raise error_proto  # RFC 959\n    source.voidresp()\n    target.voidresp()\n\n\ndef test():\n    '''Test program.\n    Usage: ftp [-d] [-r[file]] host [-l[dir]] [-d[dir]] [-p] [file] ...\n\n    -d dir\n    -l list\n    -p password\n    '''\n\n    if len(sys.argv) < 2:\n        print(test.__doc__)\n        sys.exit(0)\n\n    import netrc\n\n    debugging = 0\n    rcfile = None\n    while sys.argv[1] == '-d':\n        debugging = debugging+1\n        del sys.argv[1]\n    if sys.argv[1][:2] == '-r':\n        # get name of alternate ~/.netrc file:\n        rcfile = sys.argv[1][2:]\n        del sys.argv[1]\n    host = sys.argv[1]\n    ftp = FTP(host)\n    ftp.set_debuglevel(debugging)\n    userid = passwd = acct = ''\n    try:\n        netrcobj = netrc.netrc(rcfile)\n    except OSError:\n        if rcfile is not None:\n            sys.stderr.write(\"Could not open account file\"\n                             \" -- using anonymous login.\")\n    else:\n        try:\n            userid, acct, passwd = netrcobj.authenticators(host)\n        except KeyError:\n            # no account for host\n            sys.stderr.write(\n                    \"No account -- using anonymous login.\")\n    ftp.login(userid, passwd, acct)\n    for file in sys.argv[2:]:\n        if file[:2] == '-l':\n            ftp.dir(file[2:])\n        elif file[:2] == '-d':\n            cmd = 'CWD'\n            if file[2:]: cmd = cmd + ' ' + file[2:]\n            resp = ftp.sendcmd(cmd)\n        elif file == '-p':\n            ftp.set_pasv(not ftp.passiveserver)\n        else:\n            ftp.retrbinary('RETR ' + file, \\\n                           sys.stdout.write, 1024)\n    ftp.quit()\n\n\nif __name__ == '__main__':\n    test()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/functools.py",
    "content": "\"\"\"functools.py - Tools for working with functions and callable objects\n\"\"\"\n# Python module wrapper for _functools C module\n# to allow utilities written in Python to be added\n# to the functools module.\n# Written by Nick Coghlan <ncoghlan at gmail.com>,\n# Raymond Hettinger <python at rcn.com>,\n# and Łukasz Langa <lukasz at langa.pl>.\n#   Copyright (C) 2006-2013 Python Software Foundation.\n# See C source code for _functools credits/copyright\n\n__all__ = ['update_wrapper', 'wraps', 'WRAPPER_ASSIGNMENTS', 'WRAPPER_UPDATES',\n           'total_ordering', 'cmp_to_key', 'lru_cache', 'reduce', 'partial',\n           'partialmethod', 'singledispatch', 'singledispatchmethod',\n           \"cached_property\"]\n\nfrom abc import get_cache_token\nfrom collections import namedtuple\n# import types, weakref  # Deferred to single_dispatch()\nfrom reprlib import recursive_repr\nfrom _thread import RLock\n\n\n################################################################################\n### update_wrapper() and wraps() decorator\n################################################################################\n\n# update_wrapper() and wraps() are tools to help write\n# wrapper functions that can handle naive introspection\n\nWRAPPER_ASSIGNMENTS = ('__module__', '__name__', '__qualname__', '__doc__',\n                       '__annotations__')\nWRAPPER_UPDATES = ('__dict__',)\ndef update_wrapper(wrapper,\n                   wrapped,\n                   assigned = WRAPPER_ASSIGNMENTS,\n                   updated = WRAPPER_UPDATES):\n    \"\"\"Update a wrapper function to look like the wrapped function\n\n       wrapper is the function to be updated\n       wrapped is the original function\n       assigned is a tuple naming the attributes assigned directly\n       from the wrapped function to the wrapper function (defaults to\n       functools.WRAPPER_ASSIGNMENTS)\n       updated is a tuple naming the attributes of the wrapper that\n       are updated with the corresponding attribute from the wrapped\n       function (defaults to functools.WRAPPER_UPDATES)\n    \"\"\"\n    for attr in assigned:\n        try:\n            value = getattr(wrapped, attr)\n        except AttributeError:\n            pass\n        else:\n            setattr(wrapper, attr, value)\n    for attr in updated:\n        getattr(wrapper, attr).update(getattr(wrapped, attr, {}))\n    # Issue #17482: set __wrapped__ last so we don't inadvertently copy it\n    # from the wrapped function when updating __dict__\n    wrapper.__wrapped__ = wrapped\n    # Return the wrapper so this can be used as a decorator via partial()\n    return wrapper\n\ndef wraps(wrapped,\n          assigned = WRAPPER_ASSIGNMENTS,\n          updated = WRAPPER_UPDATES):\n    \"\"\"Decorator factory to apply update_wrapper() to a wrapper function\n\n       Returns a decorator that invokes update_wrapper() with the decorated\n       function as the wrapper argument and the arguments to wraps() as the\n       remaining arguments. Default arguments are as for update_wrapper().\n       This is a convenience function to simplify applying partial() to\n       update_wrapper().\n    \"\"\"\n    return partial(update_wrapper, wrapped=wrapped,\n                   assigned=assigned, updated=updated)\n\n\n################################################################################\n### total_ordering class decorator\n################################################################################\n\n# The total ordering functions all invoke the root magic method directly\n# rather than using the corresponding operator.  This avoids possible\n# infinite recursion that could occur when the operator dispatch logic\n# detects a NotImplemented result and then calls a reflected method.\n\ndef _gt_from_lt(self, other, NotImplemented=NotImplemented):\n    'Return a > b.  Computed by @total_ordering from (not a < b) and (a != b).'\n    op_result = self.__lt__(other)\n    if op_result is NotImplemented:\n        return op_result\n    return not op_result and self != other\n\ndef _le_from_lt(self, other, NotImplemented=NotImplemented):\n    'Return a <= b.  Computed by @total_ordering from (a < b) or (a == b).'\n    op_result = self.__lt__(other)\n    return op_result or self == other\n\ndef _ge_from_lt(self, other, NotImplemented=NotImplemented):\n    'Return a >= b.  Computed by @total_ordering from (not a < b).'\n    op_result = self.__lt__(other)\n    if op_result is NotImplemented:\n        return op_result\n    return not op_result\n\ndef _ge_from_le(self, other, NotImplemented=NotImplemented):\n    'Return a >= b.  Computed by @total_ordering from (not a <= b) or (a == b).'\n    op_result = self.__le__(other)\n    if op_result is NotImplemented:\n        return op_result\n    return not op_result or self == other\n\ndef _lt_from_le(self, other, NotImplemented=NotImplemented):\n    'Return a < b.  Computed by @total_ordering from (a <= b) and (a != b).'\n    op_result = self.__le__(other)\n    if op_result is NotImplemented:\n        return op_result\n    return op_result and self != other\n\ndef _gt_from_le(self, other, NotImplemented=NotImplemented):\n    'Return a > b.  Computed by @total_ordering from (not a <= b).'\n    op_result = self.__le__(other)\n    if op_result is NotImplemented:\n        return op_result\n    return not op_result\n\ndef _lt_from_gt(self, other, NotImplemented=NotImplemented):\n    'Return a < b.  Computed by @total_ordering from (not a > b) and (a != b).'\n    op_result = self.__gt__(other)\n    if op_result is NotImplemented:\n        return op_result\n    return not op_result and self != other\n\ndef _ge_from_gt(self, other, NotImplemented=NotImplemented):\n    'Return a >= b.  Computed by @total_ordering from (a > b) or (a == b).'\n    op_result = self.__gt__(other)\n    return op_result or self == other\n\ndef _le_from_gt(self, other, NotImplemented=NotImplemented):\n    'Return a <= b.  Computed by @total_ordering from (not a > b).'\n    op_result = self.__gt__(other)\n    if op_result is NotImplemented:\n        return op_result\n    return not op_result\n\ndef _le_from_ge(self, other, NotImplemented=NotImplemented):\n    'Return a <= b.  Computed by @total_ordering from (not a >= b) or (a == b).'\n    op_result = self.__ge__(other)\n    if op_result is NotImplemented:\n        return op_result\n    return not op_result or self == other\n\ndef _gt_from_ge(self, other, NotImplemented=NotImplemented):\n    'Return a > b.  Computed by @total_ordering from (a >= b) and (a != b).'\n    op_result = self.__ge__(other)\n    if op_result is NotImplemented:\n        return op_result\n    return op_result and self != other\n\ndef _lt_from_ge(self, other, NotImplemented=NotImplemented):\n    'Return a < b.  Computed by @total_ordering from (not a >= b).'\n    op_result = self.__ge__(other)\n    if op_result is NotImplemented:\n        return op_result\n    return not op_result\n\n_convert = {\n    '__lt__': [('__gt__', _gt_from_lt),\n               ('__le__', _le_from_lt),\n               ('__ge__', _ge_from_lt)],\n    '__le__': [('__ge__', _ge_from_le),\n               ('__lt__', _lt_from_le),\n               ('__gt__', _gt_from_le)],\n    '__gt__': [('__lt__', _lt_from_gt),\n               ('__ge__', _ge_from_gt),\n               ('__le__', _le_from_gt)],\n    '__ge__': [('__le__', _le_from_ge),\n               ('__gt__', _gt_from_ge),\n               ('__lt__', _lt_from_ge)]\n}\n\ndef total_ordering(cls):\n    \"\"\"Class decorator that fills in missing ordering methods\"\"\"\n    # Find user-defined comparisons (not those inherited from object).\n    roots = {op for op in _convert if getattr(cls, op, None) is not getattr(object, op, None)}\n    if not roots:\n        raise ValueError('must define at least one ordering operation: < > <= >=')\n    root = max(roots)       # prefer __lt__ to __le__ to __gt__ to __ge__\n    for opname, opfunc in _convert[root]:\n        if opname not in roots:\n            opfunc.__name__ = opname\n            setattr(cls, opname, opfunc)\n    return cls\n\n\n################################################################################\n### cmp_to_key() function converter\n################################################################################\n\ndef cmp_to_key(mycmp):\n    \"\"\"Convert a cmp= function into a key= function\"\"\"\n    class K(object):\n        __slots__ = ['obj']\n        def __init__(self, obj):\n            self.obj = obj\n        def __lt__(self, other):\n            return mycmp(self.obj, other.obj) < 0\n        def __gt__(self, other):\n            return mycmp(self.obj, other.obj) > 0\n        def __eq__(self, other):\n            return mycmp(self.obj, other.obj) == 0\n        def __le__(self, other):\n            return mycmp(self.obj, other.obj) <= 0\n        def __ge__(self, other):\n            return mycmp(self.obj, other.obj) >= 0\n        __hash__ = None\n    return K\n\ntry:\n    from _functools import cmp_to_key\nexcept ImportError:\n    pass\n\n\n################################################################################\n### reduce() sequence to a single item\n################################################################################\n\n_initial_missing = object()\n\ndef reduce(function, sequence, initial=_initial_missing):\n    \"\"\"\n    reduce(function, sequence[, initial]) -> value\n\n    Apply a function of two arguments cumulatively to the items of a sequence,\n    from left to right, so as to reduce the sequence to a single value.\n    For example, reduce(lambda x, y: x+y, [1, 2, 3, 4, 5]) calculates\n    ((((1+2)+3)+4)+5).  If initial is present, it is placed before the items\n    of the sequence in the calculation, and serves as a default when the\n    sequence is empty.\n    \"\"\"\n\n    it = iter(sequence)\n\n    if initial is _initial_missing:\n        try:\n            value = next(it)\n        except StopIteration:\n            raise TypeError(\"reduce() of empty sequence with no initial value\") from None\n    else:\n        value = initial\n\n    for element in it:\n        value = function(value, element)\n\n    return value\n\ntry:\n    from _functools import reduce\nexcept ImportError:\n    pass\n\n\n################################################################################\n### partial() argument application\n################################################################################\n\n# Purely functional, no descriptor behaviour\nclass partial:\n    \"\"\"New function with partial application of the given arguments\n    and keywords.\n    \"\"\"\n\n    __slots__ = \"func\", \"args\", \"keywords\", \"__dict__\", \"__weakref__\"\n\n    def __new__(cls, func, /, *args, **keywords):\n        if not callable(func):\n            raise TypeError(\"the first argument must be callable\")\n\n        if hasattr(func, \"func\"):\n            args = func.args + args\n            keywords = {**func.keywords, **keywords}\n            func = func.func\n\n        self = super(partial, cls).__new__(cls)\n\n        self.func = func\n        self.args = args\n        self.keywords = keywords\n        return self\n\n    def __call__(self, /, *args, **keywords):\n        keywords = {**self.keywords, **keywords}\n        return self.func(*self.args, *args, **keywords)\n\n    @recursive_repr()\n    def __repr__(self):\n        qualname = type(self).__qualname__\n        args = [repr(self.func)]\n        args.extend(repr(x) for x in self.args)\n        args.extend(f\"{k}={v!r}\" for (k, v) in self.keywords.items())\n        if type(self).__module__ == \"functools\":\n            return f\"functools.{qualname}({', '.join(args)})\"\n        return f\"{qualname}({', '.join(args)})\"\n\n    def __reduce__(self):\n        return type(self), (self.func,), (self.func, self.args,\n               self.keywords or None, self.__dict__ or None)\n\n    def __setstate__(self, state):\n        if not isinstance(state, tuple):\n            raise TypeError(\"argument to __setstate__ must be a tuple\")\n        if len(state) != 4:\n            raise TypeError(f\"expected 4 items in state, got {len(state)}\")\n        func, args, kwds, namespace = state\n        if (not callable(func) or not isinstance(args, tuple) or\n           (kwds is not None and not isinstance(kwds, dict)) or\n           (namespace is not None and not isinstance(namespace, dict))):\n            raise TypeError(\"invalid partial state\")\n\n        args = tuple(args) # just in case it's a subclass\n        if kwds is None:\n            kwds = {}\n        elif type(kwds) is not dict: # XXX does it need to be *exactly* dict?\n            kwds = dict(kwds)\n        if namespace is None:\n            namespace = {}\n\n        self.__dict__ = namespace\n        self.func = func\n        self.args = args\n        self.keywords = kwds\n\ntry:\n    from _functools import partial\nexcept ImportError:\n    pass\n\n# Descriptor version\nclass partialmethod(object):\n    \"\"\"Method descriptor with partial application of the given arguments\n    and keywords.\n\n    Supports wrapping existing descriptors and handles non-descriptor\n    callables as instance methods.\n    \"\"\"\n\n    def __init__(*args, **keywords):\n        if len(args) >= 2:\n            self, func, *args = args\n        elif not args:\n            raise TypeError(\"descriptor '__init__' of partialmethod \"\n                            \"needs an argument\")\n        elif 'func' in keywords:\n            func = keywords.pop('func')\n            self, *args = args\n            import warnings\n            warnings.warn(\"Passing 'func' as keyword argument is deprecated\",\n                          DeprecationWarning, stacklevel=2)\n        else:\n            raise TypeError(\"type 'partialmethod' takes at least one argument, \"\n                            \"got %d\" % (len(args)-1))\n        args = tuple(args)\n\n        if not callable(func) and not hasattr(func, \"__get__\"):\n            raise TypeError(\"{!r} is not callable or a descriptor\"\n                                 .format(func))\n\n        # func could be a descriptor like classmethod which isn't callable,\n        # so we can't inherit from partial (it verifies func is callable)\n        if isinstance(func, partialmethod):\n            # flattening is mandatory in order to place cls/self before all\n            # other arguments\n            # it's also more efficient since only one function will be called\n            self.func = func.func\n            self.args = func.args + args\n            self.keywords = {**func.keywords, **keywords}\n        else:\n            self.func = func\n            self.args = args\n            self.keywords = keywords\n    __init__.__text_signature__ = '($self, func, /, *args, **keywords)'\n\n    def __repr__(self):\n        args = \", \".join(map(repr, self.args))\n        keywords = \", \".join(\"{}={!r}\".format(k, v)\n                                 for k, v in self.keywords.items())\n        format_string = \"{module}.{cls}({func}, {args}, {keywords})\"\n        return format_string.format(module=self.__class__.__module__,\n                                    cls=self.__class__.__qualname__,\n                                    func=self.func,\n                                    args=args,\n                                    keywords=keywords)\n\n    def _make_unbound_method(self):\n        def _method(cls_or_self, /, *args, **keywords):\n            keywords = {**self.keywords, **keywords}\n            return self.func(cls_or_self, *self.args, *args, **keywords)\n        _method.__isabstractmethod__ = self.__isabstractmethod__\n        _method._partialmethod = self\n        return _method\n\n    def __get__(self, obj, cls=None):\n        get = getattr(self.func, \"__get__\", None)\n        result = None\n        if get is not None:\n            new_func = get(obj, cls)\n            if new_func is not self.func:\n                # Assume __get__ returning something new indicates the\n                # creation of an appropriate callable\n                result = partial(new_func, *self.args, **self.keywords)\n                try:\n                    result.__self__ = new_func.__self__\n                except AttributeError:\n                    pass\n        if result is None:\n            # If the underlying descriptor didn't do anything, treat this\n            # like an instance method\n            result = self._make_unbound_method().__get__(obj, cls)\n        return result\n\n    @property\n    def __isabstractmethod__(self):\n        return getattr(self.func, \"__isabstractmethod__\", False)\n\n# Helper functions\n\ndef _unwrap_partial(func):\n    while isinstance(func, partial):\n        func = func.func\n    return func\n\n################################################################################\n### LRU Cache function decorator\n################################################################################\n\n_CacheInfo = namedtuple(\"CacheInfo\", [\"hits\", \"misses\", \"maxsize\", \"currsize\"])\n\nclass _HashedSeq(list):\n    \"\"\" This class guarantees that hash() will be called no more than once\n        per element.  This is important because the lru_cache() will hash\n        the key multiple times on a cache miss.\n\n    \"\"\"\n\n    __slots__ = 'hashvalue'\n\n    def __init__(self, tup, hash=hash):\n        self[:] = tup\n        self.hashvalue = hash(tup)\n\n    def __hash__(self):\n        return self.hashvalue\n\ndef _make_key(args, kwds, typed,\n             kwd_mark = (object(),),\n             fasttypes = {int, str},\n             tuple=tuple, type=type, len=len):\n    \"\"\"Make a cache key from optionally typed positional and keyword arguments\n\n    The key is constructed in a way that is flat as possible rather than\n    as a nested structure that would take more memory.\n\n    If there is only a single argument and its data type is known to cache\n    its hash value, then that argument is returned without a wrapper.  This\n    saves space and improves lookup speed.\n\n    \"\"\"\n    # All of code below relies on kwds preserving the order input by the user.\n    # Formerly, we sorted() the kwds before looping.  The new way is *much*\n    # faster; however, it means that f(x=1, y=2) will now be treated as a\n    # distinct call from f(y=2, x=1) which will be cached separately.\n    key = args\n    if kwds:\n        key += kwd_mark\n        for item in kwds.items():\n            key += item\n    if typed:\n        key += tuple(type(v) for v in args)\n        if kwds:\n            key += tuple(type(v) for v in kwds.values())\n    elif len(key) == 1 and type(key[0]) in fasttypes:\n        return key[0]\n    return _HashedSeq(key)\n\ndef lru_cache(maxsize=128, typed=False):\n    \"\"\"Least-recently-used cache decorator.\n\n    If *maxsize* is set to None, the LRU features are disabled and the cache\n    can grow without bound.\n\n    If *typed* is True, arguments of different types will be cached separately.\n    For example, f(3.0) and f(3) will be treated as distinct calls with\n    distinct results.\n\n    Arguments to the cached function must be hashable.\n\n    View the cache statistics named tuple (hits, misses, maxsize, currsize)\n    with f.cache_info().  Clear the cache and statistics with f.cache_clear().\n    Access the underlying function with f.__wrapped__.\n\n    See:  http://en.wikipedia.org/wiki/Cache_replacement_policies#Least_recently_used_(LRU)\n\n    \"\"\"\n\n    # Users should only access the lru_cache through its public API:\n    #       cache_info, cache_clear, and f.__wrapped__\n    # The internals of the lru_cache are encapsulated for thread safety and\n    # to allow the implementation to change (including a possible C version).\n\n    if isinstance(maxsize, int):\n        # Negative maxsize is treated as 0\n        if maxsize < 0:\n            maxsize = 0\n    elif callable(maxsize) and isinstance(typed, bool):\n        # The user_function was passed in directly via the maxsize argument\n        user_function, maxsize = maxsize, 128\n        wrapper = _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo)\n        return update_wrapper(wrapper, user_function)\n    elif maxsize is not None:\n        raise TypeError(\n            'Expected first argument to be an integer, a callable, or None')\n\n    def decorating_function(user_function):\n        wrapper = _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo)\n        return update_wrapper(wrapper, user_function)\n\n    return decorating_function\n\ndef _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo):\n    # Constants shared by all lru cache instances:\n    sentinel = object()          # unique object used to signal cache misses\n    make_key = _make_key         # build a key from the function arguments\n    PREV, NEXT, KEY, RESULT = 0, 1, 2, 3   # names for the link fields\n\n    cache = {}\n    hits = misses = 0\n    full = False\n    cache_get = cache.get    # bound method to lookup a key or return None\n    cache_len = cache.__len__  # get cache size without calling len()\n    lock = RLock()           # because linkedlist updates aren't threadsafe\n    root = []                # root of the circular doubly linked list\n    root[:] = [root, root, None, None]     # initialize by pointing to self\n\n    if maxsize == 0:\n\n        def wrapper(*args, **kwds):\n            # No caching -- just a statistics update\n            nonlocal misses\n            misses += 1\n            result = user_function(*args, **kwds)\n            return result\n\n    elif maxsize is None:\n\n        def wrapper(*args, **kwds):\n            # Simple caching without ordering or size limit\n            nonlocal hits, misses\n            key = make_key(args, kwds, typed)\n            result = cache_get(key, sentinel)\n            if result is not sentinel:\n                hits += 1\n                return result\n            misses += 1\n            result = user_function(*args, **kwds)\n            cache[key] = result\n            return result\n\n    else:\n\n        def wrapper(*args, **kwds):\n            # Size limited caching that tracks accesses by recency\n            nonlocal root, hits, misses, full\n            key = make_key(args, kwds, typed)\n            with lock:\n                link = cache_get(key)\n                if link is not None:\n                    # Move the link to the front of the circular queue\n                    link_prev, link_next, _key, result = link\n                    link_prev[NEXT] = link_next\n                    link_next[PREV] = link_prev\n                    last = root[PREV]\n                    last[NEXT] = root[PREV] = link\n                    link[PREV] = last\n                    link[NEXT] = root\n                    hits += 1\n                    return result\n                misses += 1\n            result = user_function(*args, **kwds)\n            with lock:\n                if key in cache:\n                    # Getting here means that this same key was added to the\n                    # cache while the lock was released.  Since the link\n                    # update is already done, we need only return the\n                    # computed result and update the count of misses.\n                    pass\n                elif full:\n                    # Use the old root to store the new key and result.\n                    oldroot = root\n                    oldroot[KEY] = key\n                    oldroot[RESULT] = result\n                    # Empty the oldest link and make it the new root.\n                    # Keep a reference to the old key and old result to\n                    # prevent their ref counts from going to zero during the\n                    # update. That will prevent potentially arbitrary object\n                    # clean-up code (i.e. __del__) from running while we're\n                    # still adjusting the links.\n                    root = oldroot[NEXT]\n                    oldkey = root[KEY]\n                    oldresult = root[RESULT]\n                    root[KEY] = root[RESULT] = None\n                    # Now update the cache dictionary.\n                    del cache[oldkey]\n                    # Save the potentially reentrant cache[key] assignment\n                    # for last, after the root and links have been put in\n                    # a consistent state.\n                    cache[key] = oldroot\n                else:\n                    # Put result in a new link at the front of the queue.\n                    last = root[PREV]\n                    link = [last, root, key, result]\n                    last[NEXT] = root[PREV] = cache[key] = link\n                    # Use the cache_len bound method instead of the len() function\n                    # which could potentially be wrapped in an lru_cache itself.\n                    full = (cache_len() >= maxsize)\n            return result\n\n    def cache_info():\n        \"\"\"Report cache statistics\"\"\"\n        with lock:\n            return _CacheInfo(hits, misses, maxsize, cache_len())\n\n    def cache_clear():\n        \"\"\"Clear the cache and cache statistics\"\"\"\n        nonlocal hits, misses, full\n        with lock:\n            cache.clear()\n            root[:] = [root, root, None, None]\n            hits = misses = 0\n            full = False\n\n    wrapper.cache_info = cache_info\n    wrapper.cache_clear = cache_clear\n    return wrapper\n\ntry:\n    from _functools import _lru_cache_wrapper\nexcept ImportError:\n    pass\n\n\n################################################################################\n### singledispatch() - single-dispatch generic function decorator\n################################################################################\n\ndef _c3_merge(sequences):\n    \"\"\"Merges MROs in *sequences* to a single MRO using the C3 algorithm.\n\n    Adapted from http://www.python.org/download/releases/2.3/mro/.\n\n    \"\"\"\n    result = []\n    while True:\n        sequences = [s for s in sequences if s]   # purge empty sequences\n        if not sequences:\n            return result\n        for s1 in sequences:   # find merge candidates among seq heads\n            candidate = s1[0]\n            for s2 in sequences:\n                if candidate in s2[1:]:\n                    candidate = None\n                    break      # reject the current head, it appears later\n            else:\n                break\n        if candidate is None:\n            raise RuntimeError(\"Inconsistent hierarchy\")\n        result.append(candidate)\n        # remove the chosen candidate\n        for seq in sequences:\n            if seq[0] == candidate:\n                del seq[0]\n\ndef _c3_mro(cls, abcs=None):\n    \"\"\"Computes the method resolution order using extended C3 linearization.\n\n    If no *abcs* are given, the algorithm works exactly like the built-in C3\n    linearization used for method resolution.\n\n    If given, *abcs* is a list of abstract base classes that should be inserted\n    into the resulting MRO. Unrelated ABCs are ignored and don't end up in the\n    result. The algorithm inserts ABCs where their functionality is introduced,\n    i.e. issubclass(cls, abc) returns True for the class itself but returns\n    False for all its direct base classes. Implicit ABCs for a given class\n    (either registered or inferred from the presence of a special method like\n    __len__) are inserted directly after the last ABC explicitly listed in the\n    MRO of said class. If two implicit ABCs end up next to each other in the\n    resulting MRO, their ordering depends on the order of types in *abcs*.\n\n    \"\"\"\n    for i, base in enumerate(reversed(cls.__bases__)):\n        if hasattr(base, '__abstractmethods__'):\n            boundary = len(cls.__bases__) - i\n            break   # Bases up to the last explicit ABC are considered first.\n    else:\n        boundary = 0\n    abcs = list(abcs) if abcs else []\n    explicit_bases = list(cls.__bases__[:boundary])\n    abstract_bases = []\n    other_bases = list(cls.__bases__[boundary:])\n    for base in abcs:\n        if issubclass(cls, base) and not any(\n                issubclass(b, base) for b in cls.__bases__\n            ):\n            # If *cls* is the class that introduces behaviour described by\n            # an ABC *base*, insert said ABC to its MRO.\n            abstract_bases.append(base)\n    for base in abstract_bases:\n        abcs.remove(base)\n    explicit_c3_mros = [_c3_mro(base, abcs=abcs) for base in explicit_bases]\n    abstract_c3_mros = [_c3_mro(base, abcs=abcs) for base in abstract_bases]\n    other_c3_mros = [_c3_mro(base, abcs=abcs) for base in other_bases]\n    return _c3_merge(\n        [[cls]] +\n        explicit_c3_mros + abstract_c3_mros + other_c3_mros +\n        [explicit_bases] + [abstract_bases] + [other_bases]\n    )\n\ndef _compose_mro(cls, types):\n    \"\"\"Calculates the method resolution order for a given class *cls*.\n\n    Includes relevant abstract base classes (with their respective bases) from\n    the *types* iterable. Uses a modified C3 linearization algorithm.\n\n    \"\"\"\n    bases = set(cls.__mro__)\n    # Remove entries which are already present in the __mro__ or unrelated.\n    def is_related(typ):\n        return (typ not in bases and hasattr(typ, '__mro__')\n                                 and issubclass(cls, typ))\n    types = [n for n in types if is_related(n)]\n    # Remove entries which are strict bases of other entries (they will end up\n    # in the MRO anyway.\n    def is_strict_base(typ):\n        for other in types:\n            if typ != other and typ in other.__mro__:\n                return True\n        return False\n    types = [n for n in types if not is_strict_base(n)]\n    # Subclasses of the ABCs in *types* which are also implemented by\n    # *cls* can be used to stabilize ABC ordering.\n    type_set = set(types)\n    mro = []\n    for typ in types:\n        found = []\n        for sub in typ.__subclasses__():\n            if sub not in bases and issubclass(cls, sub):\n                found.append([s for s in sub.__mro__ if s in type_set])\n        if not found:\n            mro.append(typ)\n            continue\n        # Favor subclasses with the biggest number of useful bases\n        found.sort(key=len, reverse=True)\n        for sub in found:\n            for subcls in sub:\n                if subcls not in mro:\n                    mro.append(subcls)\n    return _c3_mro(cls, abcs=mro)\n\ndef _find_impl(cls, registry):\n    \"\"\"Returns the best matching implementation from *registry* for type *cls*.\n\n    Where there is no registered implementation for a specific type, its method\n    resolution order is used to find a more generic implementation.\n\n    Note: if *registry* does not contain an implementation for the base\n    *object* type, this function may return None.\n\n    \"\"\"\n    mro = _compose_mro(cls, registry.keys())\n    match = None\n    for t in mro:\n        if match is not None:\n            # If *match* is an implicit ABC but there is another unrelated,\n            # equally matching implicit ABC, refuse the temptation to guess.\n            if (t in registry and t not in cls.__mro__\n                              and match not in cls.__mro__\n                              and not issubclass(match, t)):\n                raise RuntimeError(\"Ambiguous dispatch: {} or {}\".format(\n                    match, t))\n            break\n        if t in registry:\n            match = t\n    return registry.get(match)\n\ndef singledispatch(func):\n    \"\"\"Single-dispatch generic function decorator.\n\n    Transforms a function into a generic function, which can have different\n    behaviours depending upon the type of its first argument. The decorated\n    function acts as the default implementation, and additional\n    implementations can be registered using the register() attribute of the\n    generic function.\n    \"\"\"\n    # There are many programs that use functools without singledispatch, so we\n    # trade-off making singledispatch marginally slower for the benefit of\n    # making start-up of such applications slightly faster.\n    import types, weakref\n\n    registry = {}\n    dispatch_cache = weakref.WeakKeyDictionary()\n    cache_token = None\n\n    def dispatch(cls):\n        \"\"\"generic_func.dispatch(cls) -> <function implementation>\n\n        Runs the dispatch algorithm to return the best available implementation\n        for the given *cls* registered on *generic_func*.\n\n        \"\"\"\n        nonlocal cache_token\n        if cache_token is not None:\n            current_token = get_cache_token()\n            if cache_token != current_token:\n                dispatch_cache.clear()\n                cache_token = current_token\n        try:\n            impl = dispatch_cache[cls]\n        except KeyError:\n            try:\n                impl = registry[cls]\n            except KeyError:\n                impl = _find_impl(cls, registry)\n            dispatch_cache[cls] = impl\n        return impl\n\n    def register(cls, func=None):\n        \"\"\"generic_func.register(cls, func) -> func\n\n        Registers a new implementation for the given *cls* on a *generic_func*.\n\n        \"\"\"\n        nonlocal cache_token\n        if func is None:\n            if isinstance(cls, type):\n                return lambda f: register(cls, f)\n            ann = getattr(cls, '__annotations__', {})\n            if not ann:\n                raise TypeError(\n                    f\"Invalid first argument to `register()`: {cls!r}. \"\n                    f\"Use either `@register(some_class)` or plain `@register` \"\n                    f\"on an annotated function.\"\n                )\n            func = cls\n\n            # only import typing if annotation parsing is necessary\n            from typing import get_type_hints\n            argname, cls = next(iter(get_type_hints(func).items()))\n            if not isinstance(cls, type):\n                raise TypeError(\n                    f\"Invalid annotation for {argname!r}. \"\n                    f\"{cls!r} is not a class.\"\n                )\n        registry[cls] = func\n        if cache_token is None and hasattr(cls, '__abstractmethods__'):\n            cache_token = get_cache_token()\n        dispatch_cache.clear()\n        return func\n\n    def wrapper(*args, **kw):\n        if not args:\n            raise TypeError(f'{funcname} requires at least '\n                            '1 positional argument')\n\n        return dispatch(args[0].__class__)(*args, **kw)\n\n    funcname = getattr(func, '__name__', 'singledispatch function')\n    registry[object] = func\n    wrapper.register = register\n    wrapper.dispatch = dispatch\n    wrapper.registry = types.MappingProxyType(registry)\n    wrapper._clear_cache = dispatch_cache.clear\n    update_wrapper(wrapper, func)\n    return wrapper\n\n\n# Descriptor version\nclass singledispatchmethod:\n    \"\"\"Single-dispatch generic method descriptor.\n\n    Supports wrapping existing descriptors and handles non-descriptor\n    callables as instance methods.\n    \"\"\"\n\n    def __init__(self, func):\n        if not callable(func) and not hasattr(func, \"__get__\"):\n            raise TypeError(f\"{func!r} is not callable or a descriptor\")\n\n        self.dispatcher = singledispatch(func)\n        self.func = func\n\n    def register(self, cls, method=None):\n        \"\"\"generic_method.register(cls, func) -> func\n\n        Registers a new implementation for the given *cls* on a *generic_method*.\n        \"\"\"\n        return self.dispatcher.register(cls, func=method)\n\n    def __get__(self, obj, cls=None):\n        def _method(*args, **kwargs):\n            method = self.dispatcher.dispatch(args[0].__class__)\n            return method.__get__(obj, cls)(*args, **kwargs)\n\n        _method.__isabstractmethod__ = self.__isabstractmethod__\n        _method.register = self.register\n        update_wrapper(_method, self.func)\n        return _method\n\n    @property\n    def __isabstractmethod__(self):\n        return getattr(self.func, '__isabstractmethod__', False)\n\n\n################################################################################\n### cached_property() - computed once per instance, cached as attribute\n################################################################################\n\n_NOT_FOUND = object()\n\n\nclass cached_property:\n    def __init__(self, func):\n        self.func = func\n        self.attrname = None\n        self.__doc__ = func.__doc__\n        self.lock = RLock()\n\n    def __set_name__(self, owner, name):\n        if self.attrname is None:\n            self.attrname = name\n        elif name != self.attrname:\n            raise TypeError(\n                \"Cannot assign the same cached_property to two different names \"\n                f\"({self.attrname!r} and {name!r}).\"\n            )\n\n    def __get__(self, instance, owner=None):\n        if instance is None:\n            return self\n        if self.attrname is None:\n            raise TypeError(\n                \"Cannot use cached_property instance without calling __set_name__ on it.\")\n        try:\n            cache = instance.__dict__\n        except AttributeError:  # not all objects have __dict__ (e.g. class defines slots)\n            msg = (\n                f\"No '__dict__' attribute on {type(instance).__name__!r} \"\n                f\"instance to cache {self.attrname!r} property.\"\n            )\n            raise TypeError(msg) from None\n        val = cache.get(self.attrname, _NOT_FOUND)\n        if val is _NOT_FOUND:\n            with self.lock:\n                # check if another thread filled cache while we awaited lock\n                val = cache.get(self.attrname, _NOT_FOUND)\n                if val is _NOT_FOUND:\n                    val = self.func(instance)\n                    try:\n                        cache[self.attrname] = val\n                    except TypeError:\n                        msg = (\n                            f\"The '__dict__' attribute on {type(instance).__name__!r} instance \"\n                            f\"does not support item assignment for caching {self.attrname!r} property.\"\n                        )\n                        raise TypeError(msg) from None\n        return val\n"
  },
  {
    "path": "rd/usr/lib/python3.8/genericpath.py",
    "content": "\"\"\"\nPath operations common to more than one OS\nDo not use directly.  The OS specific modules import the appropriate\nfunctions from this module themselves.\n\"\"\"\nimport os\nimport stat\n\n__all__ = ['commonprefix', 'exists', 'getatime', 'getctime', 'getmtime',\n           'getsize', 'isdir', 'isfile', 'samefile', 'sameopenfile',\n           'samestat']\n\n\n# Does a path exist?\n# This is false for dangling symbolic links on systems that support them.\ndef exists(path):\n    \"\"\"Test whether a path exists.  Returns False for broken symbolic links\"\"\"\n    try:\n        os.stat(path)\n    except (OSError, ValueError):\n        return False\n    return True\n\n\n# This follows symbolic links, so both islink() and isdir() can be true\n# for the same path on systems that support symlinks\ndef isfile(path):\n    \"\"\"Test whether a path is a regular file\"\"\"\n    try:\n        st = os.stat(path)\n    except (OSError, ValueError):\n        return False\n    return stat.S_ISREG(st.st_mode)\n\n\n# Is a path a directory?\n# This follows symbolic links, so both islink() and isdir()\n# can be true for the same path on systems that support symlinks\ndef isdir(s):\n    \"\"\"Return true if the pathname refers to an existing directory.\"\"\"\n    try:\n        st = os.stat(s)\n    except (OSError, ValueError):\n        return False\n    return stat.S_ISDIR(st.st_mode)\n\n\ndef getsize(filename):\n    \"\"\"Return the size of a file, reported by os.stat().\"\"\"\n    return os.stat(filename).st_size\n\n\ndef getmtime(filename):\n    \"\"\"Return the last modification time of a file, reported by os.stat().\"\"\"\n    return os.stat(filename).st_mtime\n\n\ndef getatime(filename):\n    \"\"\"Return the last access time of a file, reported by os.stat().\"\"\"\n    return os.stat(filename).st_atime\n\n\ndef getctime(filename):\n    \"\"\"Return the metadata change time of a file, reported by os.stat().\"\"\"\n    return os.stat(filename).st_ctime\n\n\n# Return the longest prefix of all list elements.\ndef commonprefix(m):\n    \"Given a list of pathnames, returns the longest common leading component\"\n    if not m: return ''\n    # Some people pass in a list of pathname parts to operate in an OS-agnostic\n    # fashion; don't try to translate in that case as that's an abuse of the\n    # API and they are already doing what they need to be OS-agnostic and so\n    # they most likely won't be using an os.PathLike object in the sublists.\n    if not isinstance(m[0], (list, tuple)):\n        m = tuple(map(os.fspath, m))\n    s1 = min(m)\n    s2 = max(m)\n    for i, c in enumerate(s1):\n        if c != s2[i]:\n            return s1[:i]\n    return s1\n\n# Are two stat buffers (obtained from stat, fstat or lstat)\n# describing the same file?\ndef samestat(s1, s2):\n    \"\"\"Test whether two stat buffers reference the same file\"\"\"\n    return (s1.st_ino == s2.st_ino and\n            s1.st_dev == s2.st_dev)\n\n\n# Are two filenames really pointing to the same file?\ndef samefile(f1, f2):\n    \"\"\"Test whether two pathnames reference the same actual file or directory\n\n    This is determined by the device number and i-node number and\n    raises an exception if an os.stat() call on either pathname fails.\n    \"\"\"\n    s1 = os.stat(f1)\n    s2 = os.stat(f2)\n    return samestat(s1, s2)\n\n\n# Are two open files really referencing the same file?\n# (Not necessarily the same file descriptor!)\ndef sameopenfile(fp1, fp2):\n    \"\"\"Test whether two open file objects reference the same file\"\"\"\n    s1 = os.fstat(fp1)\n    s2 = os.fstat(fp2)\n    return samestat(s1, s2)\n\n\n# Split a path in root and extension.\n# The extension is everything starting at the last dot in the last\n# pathname component; the root is everything before that.\n# It is always true that root + ext == p.\n\n# Generic implementation of splitext, to be parametrized with\n# the separators\ndef _splitext(p, sep, altsep, extsep):\n    \"\"\"Split the extension from a pathname.\n\n    Extension is everything from the last dot to the end, ignoring\n    leading dots.  Returns \"(root, ext)\"; ext may be empty.\"\"\"\n    # NOTE: This code must work for text and bytes strings.\n\n    sepIndex = p.rfind(sep)\n    if altsep:\n        altsepIndex = p.rfind(altsep)\n        sepIndex = max(sepIndex, altsepIndex)\n\n    dotIndex = p.rfind(extsep)\n    if dotIndex > sepIndex:\n        # skip all leading dots\n        filenameIndex = sepIndex + 1\n        while filenameIndex < dotIndex:\n            if p[filenameIndex:filenameIndex+1] != extsep:\n                return p[:dotIndex], p[dotIndex:]\n            filenameIndex += 1\n\n    return p, p[:0]\n\ndef _check_arg_types(funcname, *args):\n    hasstr = hasbytes = False\n    for s in args:\n        if isinstance(s, str):\n            hasstr = True\n        elif isinstance(s, bytes):\n            hasbytes = True\n        else:\n            raise TypeError(f'{funcname}() argument must be str, bytes, or '\n                            f'os.PathLike object, not {s.__class__.__name__!r}') from None\n    if hasstr and hasbytes:\n        raise TypeError(\"Can't mix strings and bytes in path components\") from None\n"
  },
  {
    "path": "rd/usr/lib/python3.8/getopt.py",
    "content": "\"\"\"Parser for command line options.\n\nThis module helps scripts to parse the command line arguments in\nsys.argv.  It supports the same conventions as the Unix getopt()\nfunction (including the special meanings of arguments of the form `-'\nand `--').  Long options similar to those supported by GNU software\nmay be used as well via an optional third argument.  This module\nprovides two functions and an exception:\n\ngetopt() -- Parse command line options\ngnu_getopt() -- Like getopt(), but allow option and non-option arguments\nto be intermixed.\nGetoptError -- exception (class) raised with 'opt' attribute, which is the\noption involved with the exception.\n\"\"\"\n\n# Long option support added by Lars Wirzenius <liw@iki.fi>.\n#\n# Gerrit Holl <gerrit@nl.linux.org> moved the string-based exceptions\n# to class-based exceptions.\n#\n# Peter Åstrand <astrand@lysator.liu.se> added gnu_getopt().\n#\n# TODO for gnu_getopt():\n#\n# - GNU getopt_long_only mechanism\n# - allow the caller to specify ordering\n# - RETURN_IN_ORDER option\n# - GNU extension with '-' as first character of option string\n# - optional arguments, specified by double colons\n# - an option string with a W followed by semicolon should\n#   treat \"-W foo\" as \"--foo\"\n\n__all__ = [\"GetoptError\",\"error\",\"getopt\",\"gnu_getopt\"]\n\nimport os\ntry:\n    from gettext import gettext as _\nexcept ImportError:\n    # Bootstrapping Python: gettext's dependencies not built yet\n    def _(s): return s\n\nclass GetoptError(Exception):\n    opt = ''\n    msg = ''\n    def __init__(self, msg, opt=''):\n        self.msg = msg\n        self.opt = opt\n        Exception.__init__(self, msg, opt)\n\n    def __str__(self):\n        return self.msg\n\nerror = GetoptError # backward compatibility\n\ndef getopt(args, shortopts, longopts = []):\n    \"\"\"getopt(args, options[, long_options]) -> opts, args\n\n    Parses command line options and parameter list.  args is the\n    argument list to be parsed, without the leading reference to the\n    running program.  Typically, this means \"sys.argv[1:]\".  shortopts\n    is the string of option letters that the script wants to\n    recognize, with options that require an argument followed by a\n    colon (i.e., the same format that Unix getopt() uses).  If\n    specified, longopts is a list of strings with the names of the\n    long options which should be supported.  The leading '--'\n    characters should not be included in the option name.  Options\n    which require an argument should be followed by an equal sign\n    ('=').\n\n    The return value consists of two elements: the first is a list of\n    (option, value) pairs; the second is the list of program arguments\n    left after the option list was stripped (this is a trailing slice\n    of the first argument).  Each option-and-value pair returned has\n    the option as its first element, prefixed with a hyphen (e.g.,\n    '-x'), and the option argument as its second element, or an empty\n    string if the option has no argument.  The options occur in the\n    list in the same order in which they were found, thus allowing\n    multiple occurrences.  Long and short options may be mixed.\n\n    \"\"\"\n\n    opts = []\n    if type(longopts) == type(\"\"):\n        longopts = [longopts]\n    else:\n        longopts = list(longopts)\n    while args and args[0].startswith('-') and args[0] != '-':\n        if args[0] == '--':\n            args = args[1:]\n            break\n        if args[0].startswith('--'):\n            opts, args = do_longs(opts, args[0][2:], longopts, args[1:])\n        else:\n            opts, args = do_shorts(opts, args[0][1:], shortopts, args[1:])\n\n    return opts, args\n\ndef gnu_getopt(args, shortopts, longopts = []):\n    \"\"\"getopt(args, options[, long_options]) -> opts, args\n\n    This function works like getopt(), except that GNU style scanning\n    mode is used by default. This means that option and non-option\n    arguments may be intermixed. The getopt() function stops\n    processing options as soon as a non-option argument is\n    encountered.\n\n    If the first character of the option string is `+', or if the\n    environment variable POSIXLY_CORRECT is set, then option\n    processing stops as soon as a non-option argument is encountered.\n\n    \"\"\"\n\n    opts = []\n    prog_args = []\n    if isinstance(longopts, str):\n        longopts = [longopts]\n    else:\n        longopts = list(longopts)\n\n    # Allow options after non-option arguments?\n    if shortopts.startswith('+'):\n        shortopts = shortopts[1:]\n        all_options_first = True\n    elif os.environ.get(\"POSIXLY_CORRECT\"):\n        all_options_first = True\n    else:\n        all_options_first = False\n\n    while args:\n        if args[0] == '--':\n            prog_args += args[1:]\n            break\n\n        if args[0][:2] == '--':\n            opts, args = do_longs(opts, args[0][2:], longopts, args[1:])\n        elif args[0][:1] == '-' and args[0] != '-':\n            opts, args = do_shorts(opts, args[0][1:], shortopts, args[1:])\n        else:\n            if all_options_first:\n                prog_args += args\n                break\n            else:\n                prog_args.append(args[0])\n                args = args[1:]\n\n    return opts, prog_args\n\ndef do_longs(opts, opt, longopts, args):\n    try:\n        i = opt.index('=')\n    except ValueError:\n        optarg = None\n    else:\n        opt, optarg = opt[:i], opt[i+1:]\n\n    has_arg, opt = long_has_args(opt, longopts)\n    if has_arg:\n        if optarg is None:\n            if not args:\n                raise GetoptError(_('option --%s requires argument') % opt, opt)\n            optarg, args = args[0], args[1:]\n    elif optarg is not None:\n        raise GetoptError(_('option --%s must not have an argument') % opt, opt)\n    opts.append(('--' + opt, optarg or ''))\n    return opts, args\n\n# Return:\n#   has_arg?\n#   full option name\ndef long_has_args(opt, longopts):\n    possibilities = [o for o in longopts if o.startswith(opt)]\n    if not possibilities:\n        raise GetoptError(_('option --%s not recognized') % opt, opt)\n    # Is there an exact match?\n    if opt in possibilities:\n        return False, opt\n    elif opt + '=' in possibilities:\n        return True, opt\n    # No exact match, so better be unique.\n    if len(possibilities) > 1:\n        # XXX since possibilities contains all valid continuations, might be\n        # nice to work them into the error msg\n        raise GetoptError(_('option --%s not a unique prefix') % opt, opt)\n    assert len(possibilities) == 1\n    unique_match = possibilities[0]\n    has_arg = unique_match.endswith('=')\n    if has_arg:\n        unique_match = unique_match[:-1]\n    return has_arg, unique_match\n\ndef do_shorts(opts, optstring, shortopts, args):\n    while optstring != '':\n        opt, optstring = optstring[0], optstring[1:]\n        if short_has_arg(opt, shortopts):\n            if optstring == '':\n                if not args:\n                    raise GetoptError(_('option -%s requires argument') % opt,\n                                      opt)\n                optstring, args = args[0], args[1:]\n            optarg, optstring = optstring, ''\n        else:\n            optarg = ''\n        opts.append(('-' + opt, optarg))\n    return opts, args\n\ndef short_has_arg(opt, shortopts):\n    for i in range(len(shortopts)):\n        if opt == shortopts[i] != ':':\n            return shortopts.startswith(':', i+1)\n    raise GetoptError(_('option -%s not recognized') % opt, opt)\n\nif __name__ == '__main__':\n    import sys\n    print(getopt(sys.argv[1:], \"a:b\", [\"alpha=\", \"beta\"]))\n"
  },
  {
    "path": "rd/usr/lib/python3.8/getpass.py",
    "content": "\"\"\"Utilities to get a password and/or the current user name.\n\ngetpass(prompt[, stream]) - Prompt for a password, with echo turned off.\ngetuser() - Get the user name from the environment or password database.\n\nGetPassWarning - This UserWarning is issued when getpass() cannot prevent\n                 echoing of the password contents while reading.\n\nOn Windows, the msvcrt module will be used.\n\n\"\"\"\n\n# Authors: Piers Lauder (original)\n#          Guido van Rossum (Windows support and cleanup)\n#          Gregory P. Smith (tty support & GetPassWarning)\n\nimport contextlib\nimport io\nimport os\nimport sys\nimport warnings\n\n__all__ = [\"getpass\",\"getuser\",\"GetPassWarning\"]\n\n\nclass GetPassWarning(UserWarning): pass\n\n\ndef unix_getpass(prompt='Password: ', stream=None):\n    \"\"\"Prompt for a password, with echo turned off.\n\n    Args:\n      prompt: Written on stream to ask for the input.  Default: 'Password: '\n      stream: A writable file object to display the prompt.  Defaults to\n              the tty.  If no tty is available defaults to sys.stderr.\n    Returns:\n      The seKr3t input.\n    Raises:\n      EOFError: If our input tty or stdin was closed.\n      GetPassWarning: When we were unable to turn echo off on the input.\n\n    Always restores terminal settings before returning.\n    \"\"\"\n    passwd = None\n    with contextlib.ExitStack() as stack:\n        try:\n            # Always try reading and writing directly on the tty first.\n            fd = os.open('/dev/tty', os.O_RDWR|os.O_NOCTTY)\n            tty = io.FileIO(fd, 'w+')\n            stack.enter_context(tty)\n            input = io.TextIOWrapper(tty)\n            stack.enter_context(input)\n            if not stream:\n                stream = input\n        except OSError as e:\n            # If that fails, see if stdin can be controlled.\n            stack.close()\n            try:\n                fd = sys.stdin.fileno()\n            except (AttributeError, ValueError):\n                fd = None\n                passwd = fallback_getpass(prompt, stream)\n            input = sys.stdin\n            if not stream:\n                stream = sys.stderr\n\n        if fd is not None:\n            try:\n                old = termios.tcgetattr(fd)     # a copy to save\n                new = old[:]\n                new[3] &= ~termios.ECHO  # 3 == 'lflags'\n                tcsetattr_flags = termios.TCSAFLUSH\n                if hasattr(termios, 'TCSASOFT'):\n                    tcsetattr_flags |= termios.TCSASOFT\n                try:\n                    termios.tcsetattr(fd, tcsetattr_flags, new)\n                    passwd = _raw_input(prompt, stream, input=input)\n                finally:\n                    termios.tcsetattr(fd, tcsetattr_flags, old)\n                    stream.flush()  # issue7208\n            except termios.error:\n                if passwd is not None:\n                    # _raw_input succeeded.  The final tcsetattr failed.  Reraise\n                    # instead of leaving the terminal in an unknown state.\n                    raise\n                # We can't control the tty or stdin.  Give up and use normal IO.\n                # fallback_getpass() raises an appropriate warning.\n                if stream is not input:\n                    # clean up unused file objects before blocking\n                    stack.close()\n                passwd = fallback_getpass(prompt, stream)\n\n        stream.write('\\n')\n        return passwd\n\n\ndef win_getpass(prompt='Password: ', stream=None):\n    \"\"\"Prompt for password with echo off, using Windows getch().\"\"\"\n    if sys.stdin is not sys.__stdin__:\n        return fallback_getpass(prompt, stream)\n\n    for c in prompt:\n        msvcrt.putwch(c)\n    pw = \"\"\n    while 1:\n        c = msvcrt.getwch()\n        if c == '\\r' or c == '\\n':\n            break\n        if c == '\\003':\n            raise KeyboardInterrupt\n        if c == '\\b':\n            pw = pw[:-1]\n        else:\n            pw = pw + c\n    msvcrt.putwch('\\r')\n    msvcrt.putwch('\\n')\n    return pw\n\n\ndef fallback_getpass(prompt='Password: ', stream=None):\n    warnings.warn(\"Can not control echo on the terminal.\", GetPassWarning,\n                  stacklevel=2)\n    if not stream:\n        stream = sys.stderr\n    print(\"Warning: Password input may be echoed.\", file=stream)\n    return _raw_input(prompt, stream)\n\n\ndef _raw_input(prompt=\"\", stream=None, input=None):\n    # This doesn't save the string in the GNU readline history.\n    if not stream:\n        stream = sys.stderr\n    if not input:\n        input = sys.stdin\n    prompt = str(prompt)\n    if prompt:\n        try:\n            stream.write(prompt)\n        except UnicodeEncodeError:\n            # Use replace error handler to get as much as possible printed.\n            prompt = prompt.encode(stream.encoding, 'replace')\n            prompt = prompt.decode(stream.encoding)\n            stream.write(prompt)\n        stream.flush()\n    # NOTE: The Python C API calls flockfile() (and unlock) during readline.\n    line = input.readline()\n    if not line:\n        raise EOFError\n    if line[-1] == '\\n':\n        line = line[:-1]\n    return line\n\n\ndef getuser():\n    \"\"\"Get the username from the environment or password database.\n\n    First try various environment variables, then the password\n    database.  This works on Windows as long as USERNAME is set.\n\n    \"\"\"\n\n    for name in ('LOGNAME', 'USER', 'LNAME', 'USERNAME'):\n        user = os.environ.get(name)\n        if user:\n            return user\n\n    # If this fails, the exception will \"explain\" why\n    import pwd\n    return pwd.getpwuid(os.getuid())[0]\n\n# Bind the name getpass to the appropriate function\ntry:\n    import termios\n    # it's possible there is an incompatible termios from the\n    # McMillan Installer, make sure we have a UNIX-compatible termios\n    termios.tcgetattr, termios.tcsetattr\nexcept (ImportError, AttributeError):\n    try:\n        import msvcrt\n    except ImportError:\n        getpass = fallback_getpass\n    else:\n        getpass = win_getpass\nelse:\n    getpass = unix_getpass\n"
  },
  {
    "path": "rd/usr/lib/python3.8/gettext.py",
    "content": "\"\"\"Internationalization and localization support.\n\nThis module provides internationalization (I18N) and localization (L10N)\nsupport for your Python programs by providing an interface to the GNU gettext\nmessage catalog library.\n\nI18N refers to the operation by which a program is made aware of multiple\nlanguages.  L10N refers to the adaptation of your program, once\ninternationalized, to the local language and cultural habits.\n\n\"\"\"\n\n# This module represents the integration of work, contributions, feedback, and\n# suggestions from the following people:\n#\n# Martin von Loewis, who wrote the initial implementation of the underlying\n# C-based libintlmodule (later renamed _gettext), along with a skeletal\n# gettext.py implementation.\n#\n# Peter Funk, who wrote fintl.py, a fairly complete wrapper around intlmodule,\n# which also included a pure-Python implementation to read .mo files if\n# intlmodule wasn't available.\n#\n# James Henstridge, who also wrote a gettext.py module, which has some\n# interesting, but currently unsupported experimental features: the notion of\n# a Catalog class and instances, and the ability to add to a catalog file via\n# a Python API.\n#\n# Barry Warsaw integrated these modules, wrote the .install() API and code,\n# and conformed all C and Python code to Python's coding standards.\n#\n# Francois Pinard and Marc-Andre Lemburg also contributed valuably to this\n# module.\n#\n# J. David Ibanez implemented plural forms. Bruno Haible fixed some bugs.\n#\n# TODO:\n# - Lazy loading of .mo files.  Currently the entire catalog is loaded into\n#   memory, but that's probably bad for large translated programs.  Instead,\n#   the lexical sort of original strings in GNU .mo files should be exploited\n#   to do binary searches and lazy initializations.  Or you might want to use\n#   the undocumented double-hash algorithm for .mo files with hash tables, but\n#   you'll need to study the GNU gettext code to do this.\n#\n# - Support Solaris .mo file formats.  Unfortunately, we've been unable to\n#   find this format documented anywhere.\n\n\nimport locale\nimport os\nimport re\nimport sys\n\n\n__all__ = ['NullTranslations', 'GNUTranslations', 'Catalog',\n           'find', 'translation', 'install', 'textdomain', 'bindtextdomain',\n           'bind_textdomain_codeset',\n           'dgettext', 'dngettext', 'gettext', 'lgettext', 'ldgettext',\n           'ldngettext', 'lngettext', 'ngettext',\n           'pgettext', 'dpgettext', 'npgettext', 'dnpgettext',\n           ]\n\n_default_localedir = os.path.join(sys.base_prefix, 'share', 'locale')\n\n# Expression parsing for plural form selection.\n#\n# The gettext library supports a small subset of C syntax.  The only\n# incompatible difference is that integer literals starting with zero are\n# decimal.\n#\n# https://www.gnu.org/software/gettext/manual/gettext.html#Plural-forms\n# http://git.savannah.gnu.org/cgit/gettext.git/tree/gettext-runtime/intl/plural.y\n\n_token_pattern = re.compile(r\"\"\"\n        (?P<WHITESPACES>[ \\t]+)                    | # spaces and horizontal tabs\n        (?P<NUMBER>[0-9]+\\b)                       | # decimal integer\n        (?P<NAME>n\\b)                              | # only n is allowed\n        (?P<PARENTHESIS>[()])                      |\n        (?P<OPERATOR>[-*/%+?:]|[><!]=?|==|&&|\\|\\|) | # !, *, /, %, +, -, <, >,\n                                                     # <=, >=, ==, !=, &&, ||,\n                                                     # ? :\n                                                     # unary and bitwise ops\n                                                     # not allowed\n        (?P<INVALID>\\w+|.)                           # invalid token\n    \"\"\", re.VERBOSE|re.DOTALL)\n\ndef _tokenize(plural):\n    for mo in re.finditer(_token_pattern, plural):\n        kind = mo.lastgroup\n        if kind == 'WHITESPACES':\n            continue\n        value = mo.group(kind)\n        if kind == 'INVALID':\n            raise ValueError('invalid token in plural form: %s' % value)\n        yield value\n    yield ''\n\ndef _error(value):\n    if value:\n        return ValueError('unexpected token in plural form: %s' % value)\n    else:\n        return ValueError('unexpected end of plural form')\n\n_binary_ops = (\n    ('||',),\n    ('&&',),\n    ('==', '!='),\n    ('<', '>', '<=', '>='),\n    ('+', '-'),\n    ('*', '/', '%'),\n)\n_binary_ops = {op: i for i, ops in enumerate(_binary_ops, 1) for op in ops}\n_c2py_ops = {'||': 'or', '&&': 'and', '/': '//'}\n\ndef _parse(tokens, priority=-1):\n    result = ''\n    nexttok = next(tokens)\n    while nexttok == '!':\n        result += 'not '\n        nexttok = next(tokens)\n\n    if nexttok == '(':\n        sub, nexttok = _parse(tokens)\n        result = '%s(%s)' % (result, sub)\n        if nexttok != ')':\n            raise ValueError('unbalanced parenthesis in plural form')\n    elif nexttok == 'n':\n        result = '%s%s' % (result, nexttok)\n    else:\n        try:\n            value = int(nexttok, 10)\n        except ValueError:\n            raise _error(nexttok) from None\n        result = '%s%d' % (result, value)\n    nexttok = next(tokens)\n\n    j = 100\n    while nexttok in _binary_ops:\n        i = _binary_ops[nexttok]\n        if i < priority:\n            break\n        # Break chained comparisons\n        if i in (3, 4) and j in (3, 4):  # '==', '!=', '<', '>', '<=', '>='\n            result = '(%s)' % result\n        # Replace some C operators by their Python equivalents\n        op = _c2py_ops.get(nexttok, nexttok)\n        right, nexttok = _parse(tokens, i + 1)\n        result = '%s %s %s' % (result, op, right)\n        j = i\n    if j == priority == 4:  # '<', '>', '<=', '>='\n        result = '(%s)' % result\n\n    if nexttok == '?' and priority <= 0:\n        if_true, nexttok = _parse(tokens, 0)\n        if nexttok != ':':\n            raise _error(nexttok)\n        if_false, nexttok = _parse(tokens)\n        result = '%s if %s else %s' % (if_true, result, if_false)\n        if priority == 0:\n            result = '(%s)' % result\n\n    return result, nexttok\n\ndef _as_int(n):\n    try:\n        i = round(n)\n    except TypeError:\n        raise TypeError('Plural value must be an integer, got %s' %\n                        (n.__class__.__name__,)) from None\n    import warnings\n    warnings.warn('Plural value must be an integer, got %s' %\n                  (n.__class__.__name__,),\n                  DeprecationWarning, 4)\n    return n\n\ndef c2py(plural):\n    \"\"\"Gets a C expression as used in PO files for plural forms and returns a\n    Python function that implements an equivalent expression.\n    \"\"\"\n\n    if len(plural) > 1000:\n        raise ValueError('plural form expression is too long')\n    try:\n        result, nexttok = _parse(_tokenize(plural))\n        if nexttok:\n            raise _error(nexttok)\n\n        depth = 0\n        for c in result:\n            if c == '(':\n                depth += 1\n                if depth > 20:\n                    # Python compiler limit is about 90.\n                    # The most complex example has 2.\n                    raise ValueError('plural form expression is too complex')\n            elif c == ')':\n                depth -= 1\n\n        ns = {'_as_int': _as_int}\n        exec('''if True:\n            def func(n):\n                if not isinstance(n, int):\n                    n = _as_int(n)\n                return int(%s)\n            ''' % result, ns)\n        return ns['func']\n    except RecursionError:\n        # Recursion error can be raised in _parse() or exec().\n        raise ValueError('plural form expression is too complex')\n\n\ndef _expand_lang(loc):\n    loc = locale.normalize(loc)\n    COMPONENT_CODESET   = 1 << 0\n    COMPONENT_TERRITORY = 1 << 1\n    COMPONENT_MODIFIER  = 1 << 2\n    # split up the locale into its base components\n    mask = 0\n    pos = loc.find('@')\n    if pos >= 0:\n        modifier = loc[pos:]\n        loc = loc[:pos]\n        mask |= COMPONENT_MODIFIER\n    else:\n        modifier = ''\n    pos = loc.find('.')\n    if pos >= 0:\n        codeset = loc[pos:]\n        loc = loc[:pos]\n        mask |= COMPONENT_CODESET\n    else:\n        codeset = ''\n    pos = loc.find('_')\n    if pos >= 0:\n        territory = loc[pos:]\n        loc = loc[:pos]\n        mask |= COMPONENT_TERRITORY\n    else:\n        territory = ''\n    language = loc\n    ret = []\n    for i in range(mask+1):\n        if not (i & ~mask):  # if all components for this combo exist ...\n            val = language\n            if i & COMPONENT_TERRITORY: val += territory\n            if i & COMPONENT_CODESET:   val += codeset\n            if i & COMPONENT_MODIFIER:  val += modifier\n            ret.append(val)\n    ret.reverse()\n    return ret\n\n\n\nclass NullTranslations:\n    def __init__(self, fp=None):\n        self._info = {}\n        self._charset = None\n        self._output_charset = None\n        self._fallback = None\n        if fp is not None:\n            self._parse(fp)\n\n    def _parse(self, fp):\n        pass\n\n    def add_fallback(self, fallback):\n        if self._fallback:\n            self._fallback.add_fallback(fallback)\n        else:\n            self._fallback = fallback\n\n    def gettext(self, message):\n        if self._fallback:\n            return self._fallback.gettext(message)\n        return message\n\n    def lgettext(self, message):\n        import warnings\n        warnings.warn('lgettext() is deprecated, use gettext() instead',\n                      DeprecationWarning, 2)\n        if self._fallback:\n            with warnings.catch_warnings():\n                warnings.filterwarnings('ignore', r'.*\\blgettext\\b.*',\n                                        DeprecationWarning)\n                return self._fallback.lgettext(message)\n        if self._output_charset:\n            return message.encode(self._output_charset)\n        return message.encode(locale.getpreferredencoding())\n\n    def ngettext(self, msgid1, msgid2, n):\n        if self._fallback:\n            return self._fallback.ngettext(msgid1, msgid2, n)\n        if n == 1:\n            return msgid1\n        else:\n            return msgid2\n\n    def lngettext(self, msgid1, msgid2, n):\n        import warnings\n        warnings.warn('lngettext() is deprecated, use ngettext() instead',\n                      DeprecationWarning, 2)\n        if self._fallback:\n            with warnings.catch_warnings():\n                warnings.filterwarnings('ignore', r'.*\\blngettext\\b.*',\n                                        DeprecationWarning)\n                return self._fallback.lngettext(msgid1, msgid2, n)\n        if n == 1:\n            tmsg = msgid1\n        else:\n            tmsg = msgid2\n        if self._output_charset:\n            return tmsg.encode(self._output_charset)\n        return tmsg.encode(locale.getpreferredencoding())\n\n    def pgettext(self, context, message):\n        if self._fallback:\n            return self._fallback.pgettext(context, message)\n        return message\n\n    def npgettext(self, context, msgid1, msgid2, n):\n        if self._fallback:\n            return self._fallback.npgettext(context, msgid1, msgid2, n)\n        if n == 1:\n            return msgid1\n        else:\n            return msgid2\n\n    def info(self):\n        return self._info\n\n    def charset(self):\n        return self._charset\n\n    def output_charset(self):\n        import warnings\n        warnings.warn('output_charset() is deprecated',\n                      DeprecationWarning, 2)\n        return self._output_charset\n\n    def set_output_charset(self, charset):\n        import warnings\n        warnings.warn('set_output_charset() is deprecated',\n                      DeprecationWarning, 2)\n        self._output_charset = charset\n\n    def install(self, names=None):\n        import builtins\n        builtins.__dict__['_'] = self.gettext\n        if names is not None:\n            allowed = {'gettext', 'lgettext', 'lngettext',\n                       'ngettext', 'npgettext', 'pgettext'}\n            for name in allowed & set(names):\n                builtins.__dict__[name] = getattr(self, name)\n\n\nclass GNUTranslations(NullTranslations):\n    # Magic number of .mo files\n    LE_MAGIC = 0x950412de\n    BE_MAGIC = 0xde120495\n\n    # The encoding of a msgctxt and a msgid in a .mo file is\n    # msgctxt + \"\\x04\" + msgid (gettext version >= 0.15)\n    CONTEXT = \"%s\\x04%s\"\n\n    # Acceptable .mo versions\n    VERSIONS = (0, 1)\n\n    def _get_versions(self, version):\n        \"\"\"Returns a tuple of major version, minor version\"\"\"\n        return (version >> 16, version & 0xffff)\n\n    def _parse(self, fp):\n        \"\"\"Override this method to support alternative .mo formats.\"\"\"\n        # Delay struct import for speeding up gettext import when .mo files\n        # are not used.\n        from struct import unpack\n        filename = getattr(fp, 'name', '')\n        # Parse the .mo file header, which consists of 5 little endian 32\n        # bit words.\n        self._catalog = catalog = {}\n        self.plural = lambda n: int(n != 1) # germanic plural by default\n        buf = fp.read()\n        buflen = len(buf)\n        # Are we big endian or little endian?\n        magic = unpack('<I', buf[:4])[0]\n        if magic == self.LE_MAGIC:\n            version, msgcount, masteridx, transidx = unpack('<4I', buf[4:20])\n            ii = '<II'\n        elif magic == self.BE_MAGIC:\n            version, msgcount, masteridx, transidx = unpack('>4I', buf[4:20])\n            ii = '>II'\n        else:\n            raise OSError(0, 'Bad magic number', filename)\n\n        major_version, minor_version = self._get_versions(version)\n\n        if major_version not in self.VERSIONS:\n            raise OSError(0, 'Bad version number ' + str(major_version), filename)\n\n        # Now put all messages from the .mo file buffer into the catalog\n        # dictionary.\n        for i in range(0, msgcount):\n            mlen, moff = unpack(ii, buf[masteridx:masteridx+8])\n            mend = moff + mlen\n            tlen, toff = unpack(ii, buf[transidx:transidx+8])\n            tend = toff + tlen\n            if mend < buflen and tend < buflen:\n                msg = buf[moff:mend]\n                tmsg = buf[toff:tend]\n            else:\n                raise OSError(0, 'File is corrupt', filename)\n            # See if we're looking at GNU .mo conventions for metadata\n            if mlen == 0:\n                # Catalog description\n                lastk = None\n                for b_item in tmsg.split(b'\\n'):\n                    item = b_item.decode().strip()\n                    if not item:\n                        continue\n                    # Skip over comment lines:\n                    if item.startswith('#-#-#-#-#') and item.endswith('#-#-#-#-#'):\n                        continue\n                    k = v = None\n                    if ':' in item:\n                        k, v = item.split(':', 1)\n                        k = k.strip().lower()\n                        v = v.strip()\n                        self._info[k] = v\n                        lastk = k\n                    elif lastk:\n                        self._info[lastk] += '\\n' + item\n                    if k == 'content-type':\n                        self._charset = v.split('charset=')[1]\n                    elif k == 'plural-forms':\n                        v = v.split(';')\n                        plural = v[1].split('plural=')[1]\n                        self.plural = c2py(plural)\n            # Note: we unconditionally convert both msgids and msgstrs to\n            # Unicode using the character encoding specified in the charset\n            # parameter of the Content-Type header.  The gettext documentation\n            # strongly encourages msgids to be us-ascii, but some applications\n            # require alternative encodings (e.g. Zope's ZCML and ZPT).  For\n            # traditional gettext applications, the msgid conversion will\n            # cause no problems since us-ascii should always be a subset of\n            # the charset encoding.  We may want to fall back to 8-bit msgids\n            # if the Unicode conversion fails.\n            charset = self._charset or 'ascii'\n            if b'\\x00' in msg:\n                # Plural forms\n                msgid1, msgid2 = msg.split(b'\\x00')\n                tmsg = tmsg.split(b'\\x00')\n                msgid1 = str(msgid1, charset)\n                for i, x in enumerate(tmsg):\n                    catalog[(msgid1, i)] = str(x, charset)\n            else:\n                catalog[str(msg, charset)] = str(tmsg, charset)\n            # advance to next entry in the seek tables\n            masteridx += 8\n            transidx += 8\n\n    def lgettext(self, message):\n        import warnings\n        warnings.warn('lgettext() is deprecated, use gettext() instead',\n                      DeprecationWarning, 2)\n        missing = object()\n        tmsg = self._catalog.get(message, missing)\n        if tmsg is missing:\n            if self._fallback:\n                return self._fallback.lgettext(message)\n            tmsg = message\n        if self._output_charset:\n            return tmsg.encode(self._output_charset)\n        return tmsg.encode(locale.getpreferredencoding())\n\n    def lngettext(self, msgid1, msgid2, n):\n        import warnings\n        warnings.warn('lngettext() is deprecated, use ngettext() instead',\n                      DeprecationWarning, 2)\n        try:\n            tmsg = self._catalog[(msgid1, self.plural(n))]\n        except KeyError:\n            if self._fallback:\n                return self._fallback.lngettext(msgid1, msgid2, n)\n            if n == 1:\n                tmsg = msgid1\n            else:\n                tmsg = msgid2\n        if self._output_charset:\n            return tmsg.encode(self._output_charset)\n        return tmsg.encode(locale.getpreferredencoding())\n\n    def gettext(self, message):\n        missing = object()\n        tmsg = self._catalog.get(message, missing)\n        if tmsg is missing:\n            if self._fallback:\n                return self._fallback.gettext(message)\n            return message\n        return tmsg\n\n    def ngettext(self, msgid1, msgid2, n):\n        try:\n            tmsg = self._catalog[(msgid1, self.plural(n))]\n        except KeyError:\n            if self._fallback:\n                return self._fallback.ngettext(msgid1, msgid2, n)\n            if n == 1:\n                tmsg = msgid1\n            else:\n                tmsg = msgid2\n        return tmsg\n\n    def pgettext(self, context, message):\n        ctxt_msg_id = self.CONTEXT % (context, message)\n        missing = object()\n        tmsg = self._catalog.get(ctxt_msg_id, missing)\n        if tmsg is missing:\n            if self._fallback:\n                return self._fallback.pgettext(context, message)\n            return message\n        return tmsg\n\n    def npgettext(self, context, msgid1, msgid2, n):\n        ctxt_msg_id = self.CONTEXT % (context, msgid1)\n        try:\n            tmsg = self._catalog[ctxt_msg_id, self.plural(n)]\n        except KeyError:\n            if self._fallback:\n                return self._fallback.npgettext(context, msgid1, msgid2, n)\n            if n == 1:\n                tmsg = msgid1\n            else:\n                tmsg = msgid2\n        return tmsg\n\n\n# Locate a .mo file using the gettext strategy\ndef find(domain, localedir=None, languages=None, all=False):\n    # Get some reasonable defaults for arguments that were not supplied\n    if localedir is None:\n        localedir = _default_localedir\n    if languages is None:\n        languages = []\n        for envar in ('LANGUAGE', 'LC_ALL', 'LC_MESSAGES', 'LANG'):\n            val = os.environ.get(envar)\n            if val:\n                languages = val.split(':')\n                break\n        if 'C' not in languages:\n            languages.append('C')\n    # now normalize and expand the languages\n    nelangs = []\n    for lang in languages:\n        for nelang in _expand_lang(lang):\n            if nelang not in nelangs:\n                nelangs.append(nelang)\n    # select a language\n    if all:\n        result = []\n    else:\n        result = None\n    for lang in nelangs:\n        if lang == 'C':\n            break\n        mofile = os.path.join(localedir, lang, 'LC_MESSAGES', '%s.mo' % domain)\n        if os.path.exists(mofile):\n            if all:\n                result.append(mofile)\n            else:\n                return mofile\n    return result\n\n\n\n# a mapping between absolute .mo file path and Translation object\n_translations = {}\n_unspecified = ['unspecified']\n\ndef translation(domain, localedir=None, languages=None,\n                class_=None, fallback=False, codeset=_unspecified):\n    if class_ is None:\n        class_ = GNUTranslations\n    mofiles = find(domain, localedir, languages, all=True)\n    if not mofiles:\n        if fallback:\n            return NullTranslations()\n        from errno import ENOENT\n        raise FileNotFoundError(ENOENT,\n                                'No translation file found for domain', domain)\n    # Avoid opening, reading, and parsing the .mo file after it's been done\n    # once.\n    result = None\n    for mofile in mofiles:\n        key = (class_, os.path.abspath(mofile))\n        t = _translations.get(key)\n        if t is None:\n            with open(mofile, 'rb') as fp:\n                t = _translations.setdefault(key, class_(fp))\n        # Copy the translation object to allow setting fallbacks and\n        # output charset. All other instance data is shared with the\n        # cached object.\n        # Delay copy import for speeding up gettext import when .mo files\n        # are not used.\n        import copy\n        t = copy.copy(t)\n        if codeset is not _unspecified:\n            import warnings\n            warnings.warn('parameter codeset is deprecated',\n                          DeprecationWarning, 2)\n            if codeset:\n                with warnings.catch_warnings():\n                    warnings.filterwarnings('ignore', r'.*\\bset_output_charset\\b.*',\n                                            DeprecationWarning)\n                    t.set_output_charset(codeset)\n        if result is None:\n            result = t\n        else:\n            result.add_fallback(t)\n    return result\n\n\ndef install(domain, localedir=None, codeset=_unspecified, names=None):\n    t = translation(domain, localedir, fallback=True, codeset=codeset)\n    t.install(names)\n\n\n\n# a mapping b/w domains and locale directories\n_localedirs = {}\n# a mapping b/w domains and codesets\n_localecodesets = {}\n# current global domain, `messages' used for compatibility w/ GNU gettext\n_current_domain = 'messages'\n\n\ndef textdomain(domain=None):\n    global _current_domain\n    if domain is not None:\n        _current_domain = domain\n    return _current_domain\n\n\ndef bindtextdomain(domain, localedir=None):\n    global _localedirs\n    if localedir is not None:\n        _localedirs[domain] = localedir\n    return _localedirs.get(domain, _default_localedir)\n\n\ndef bind_textdomain_codeset(domain, codeset=None):\n    import warnings\n    warnings.warn('bind_textdomain_codeset() is deprecated',\n                  DeprecationWarning, 2)\n    global _localecodesets\n    if codeset is not None:\n        _localecodesets[domain] = codeset\n    return _localecodesets.get(domain)\n\n\ndef dgettext(domain, message):\n    try:\n        t = translation(domain, _localedirs.get(domain, None))\n    except OSError:\n        return message\n    return t.gettext(message)\n\ndef ldgettext(domain, message):\n    import warnings\n    warnings.warn('ldgettext() is deprecated, use dgettext() instead',\n                  DeprecationWarning, 2)\n    codeset = _localecodesets.get(domain)\n    try:\n        with warnings.catch_warnings():\n            warnings.filterwarnings('ignore', r'.*\\bparameter codeset\\b.*',\n                                    DeprecationWarning)\n            t = translation(domain, _localedirs.get(domain, None), codeset=codeset)\n    except OSError:\n        return message.encode(codeset or locale.getpreferredencoding())\n    with warnings.catch_warnings():\n        warnings.filterwarnings('ignore', r'.*\\blgettext\\b.*',\n                                DeprecationWarning)\n        return t.lgettext(message)\n\ndef dngettext(domain, msgid1, msgid2, n):\n    try:\n        t = translation(domain, _localedirs.get(domain, None))\n    except OSError:\n        if n == 1:\n            return msgid1\n        else:\n            return msgid2\n    return t.ngettext(msgid1, msgid2, n)\n\ndef ldngettext(domain, msgid1, msgid2, n):\n    import warnings\n    warnings.warn('ldngettext() is deprecated, use dngettext() instead',\n                  DeprecationWarning, 2)\n    codeset = _localecodesets.get(domain)\n    try:\n        with warnings.catch_warnings():\n            warnings.filterwarnings('ignore', r'.*\\bparameter codeset\\b.*',\n                                    DeprecationWarning)\n            t = translation(domain, _localedirs.get(domain, None), codeset=codeset)\n    except OSError:\n        if n == 1:\n            tmsg = msgid1\n        else:\n            tmsg = msgid2\n        return tmsg.encode(codeset or locale.getpreferredencoding())\n    with warnings.catch_warnings():\n        warnings.filterwarnings('ignore', r'.*\\blngettext\\b.*',\n                                DeprecationWarning)\n        return t.lngettext(msgid1, msgid2, n)\n\n\ndef dpgettext(domain, context, message):\n    try:\n        t = translation(domain, _localedirs.get(domain, None))\n    except OSError:\n        return message\n    return t.pgettext(context, message)\n\n\ndef dnpgettext(domain, context, msgid1, msgid2, n):\n    try:\n        t = translation(domain, _localedirs.get(domain, None))\n    except OSError:\n        if n == 1:\n            return msgid1\n        else:\n            return msgid2\n    return t.npgettext(context, msgid1, msgid2, n)\n\n\ndef gettext(message):\n    return dgettext(_current_domain, message)\n\ndef lgettext(message):\n    import warnings\n    warnings.warn('lgettext() is deprecated, use gettext() instead',\n                  DeprecationWarning, 2)\n    with warnings.catch_warnings():\n        warnings.filterwarnings('ignore', r'.*\\bldgettext\\b.*',\n                                DeprecationWarning)\n        return ldgettext(_current_domain, message)\n\ndef ngettext(msgid1, msgid2, n):\n    return dngettext(_current_domain, msgid1, msgid2, n)\n\ndef lngettext(msgid1, msgid2, n):\n    import warnings\n    warnings.warn('lngettext() is deprecated, use ngettext() instead',\n                  DeprecationWarning, 2)\n    with warnings.catch_warnings():\n        warnings.filterwarnings('ignore', r'.*\\bldngettext\\b.*',\n                                DeprecationWarning)\n        return ldngettext(_current_domain, msgid1, msgid2, n)\n\n\ndef pgettext(context, message):\n    return dpgettext(_current_domain, context, message)\n\n\ndef npgettext(context, msgid1, msgid2, n):\n    return dnpgettext(_current_domain, context, msgid1, msgid2, n)\n\n\n# dcgettext() has been deemed unnecessary and is not implemented.\n\n# James Henstridge's Catalog constructor from GNOME gettext.  Documented usage\n# was:\n#\n#    import gettext\n#    cat = gettext.Catalog(PACKAGE, localedir=LOCALEDIR)\n#    _ = cat.gettext\n#    print _('Hello World')\n\n# The resulting catalog object currently don't support access through a\n# dictionary API, which was supported (but apparently unused) in GNOME\n# gettext.\n\nCatalog = translation\n"
  },
  {
    "path": "rd/usr/lib/python3.8/glob.py",
    "content": "\"\"\"Filename globbing utility.\"\"\"\n\nimport os\nimport re\nimport fnmatch\nimport sys\n\n__all__ = [\"glob\", \"iglob\", \"escape\"]\n\ndef glob(pathname, *, recursive=False):\n    \"\"\"Return a list of paths matching a pathname pattern.\n\n    The pattern may contain simple shell-style wildcards a la\n    fnmatch. However, unlike fnmatch, filenames starting with a\n    dot are special cases that are not matched by '*' and '?'\n    patterns.\n\n    If recursive is true, the pattern '**' will match any files and\n    zero or more directories and subdirectories.\n    \"\"\"\n    return list(iglob(pathname, recursive=recursive))\n\ndef iglob(pathname, *, recursive=False):\n    \"\"\"Return an iterator which yields the paths matching a pathname pattern.\n\n    The pattern may contain simple shell-style wildcards a la\n    fnmatch. However, unlike fnmatch, filenames starting with a\n    dot are special cases that are not matched by '*' and '?'\n    patterns.\n\n    If recursive is true, the pattern '**' will match any files and\n    zero or more directories and subdirectories.\n    \"\"\"\n    sys.audit(\"glob.glob\", pathname, recursive)\n    it = _iglob(pathname, recursive, False)\n    if recursive and _isrecursive(pathname):\n        s = next(it)  # skip empty string\n        assert not s\n    return it\n\ndef _iglob(pathname, recursive, dironly):\n    dirname, basename = os.path.split(pathname)\n    if not has_magic(pathname):\n        assert not dironly\n        if basename:\n            if os.path.lexists(pathname):\n                yield pathname\n        else:\n            # Patterns ending with a slash should match only directories\n            if os.path.isdir(dirname):\n                yield pathname\n        return\n    if not dirname:\n        if recursive and _isrecursive(basename):\n            yield from _glob2(dirname, basename, dironly)\n        else:\n            yield from _glob1(dirname, basename, dironly)\n        return\n    # `os.path.split()` returns the argument itself as a dirname if it is a\n    # drive or UNC path.  Prevent an infinite recursion if a drive or UNC path\n    # contains magic characters (i.e. r'\\\\?\\C:').\n    if dirname != pathname and has_magic(dirname):\n        dirs = _iglob(dirname, recursive, True)\n    else:\n        dirs = [dirname]\n    if has_magic(basename):\n        if recursive and _isrecursive(basename):\n            glob_in_dir = _glob2\n        else:\n            glob_in_dir = _glob1\n    else:\n        glob_in_dir = _glob0\n    for dirname in dirs:\n        for name in glob_in_dir(dirname, basename, dironly):\n            yield os.path.join(dirname, name)\n\n# These 2 helper functions non-recursively glob inside a literal directory.\n# They return a list of basenames.  _glob1 accepts a pattern while _glob0\n# takes a literal basename (so it only has to check for its existence).\n\ndef _glob1(dirname, pattern, dironly):\n    names = list(_iterdir(dirname, dironly))\n    if not _ishidden(pattern):\n        names = (x for x in names if not _ishidden(x))\n    return fnmatch.filter(names, pattern)\n\ndef _glob0(dirname, basename, dironly):\n    if not basename:\n        # `os.path.split()` returns an empty basename for paths ending with a\n        # directory separator.  'q*x/' should match only directories.\n        if os.path.isdir(dirname):\n            return [basename]\n    else:\n        if os.path.lexists(os.path.join(dirname, basename)):\n            return [basename]\n    return []\n\n# Following functions are not public but can be used by third-party code.\n\ndef glob0(dirname, pattern):\n    return _glob0(dirname, pattern, False)\n\ndef glob1(dirname, pattern):\n    return _glob1(dirname, pattern, False)\n\n# This helper function recursively yields relative pathnames inside a literal\n# directory.\n\ndef _glob2(dirname, pattern, dironly):\n    assert _isrecursive(pattern)\n    yield pattern[:0]\n    yield from _rlistdir(dirname, dironly)\n\n# If dironly is false, yields all file names inside a directory.\n# If dironly is true, yields only directory names.\ndef _iterdir(dirname, dironly):\n    if not dirname:\n        if isinstance(dirname, bytes):\n            dirname = bytes(os.curdir, 'ASCII')\n        else:\n            dirname = os.curdir\n    try:\n        with os.scandir(dirname) as it:\n            for entry in it:\n                try:\n                    if not dironly or entry.is_dir():\n                        yield entry.name\n                except OSError:\n                    pass\n    except OSError:\n        return\n\n# Recursively yields relative pathnames inside a literal directory.\ndef _rlistdir(dirname, dironly):\n    names = list(_iterdir(dirname, dironly))\n    for x in names:\n        if not _ishidden(x):\n            yield x\n            path = os.path.join(dirname, x) if dirname else x\n            for y in _rlistdir(path, dironly):\n                yield os.path.join(x, y)\n\n\nmagic_check = re.compile('([*?[])')\nmagic_check_bytes = re.compile(b'([*?[])')\n\ndef has_magic(s):\n    if isinstance(s, bytes):\n        match = magic_check_bytes.search(s)\n    else:\n        match = magic_check.search(s)\n    return match is not None\n\ndef _ishidden(path):\n    return path[0] in ('.', b'.'[0])\n\ndef _isrecursive(pattern):\n    if isinstance(pattern, bytes):\n        return pattern == b'**'\n    else:\n        return pattern == '**'\n\ndef escape(pathname):\n    \"\"\"Escape all special characters.\n    \"\"\"\n    # Escaping is done by wrapping any of \"*?[\" between square brackets.\n    # Metacharacters do not work in the drive part and shouldn't be escaped.\n    drive, pathname = os.path.splitdrive(pathname)\n    if isinstance(pathname, bytes):\n        pathname = magic_check_bytes.sub(br'[\\1]', pathname)\n    else:\n        pathname = magic_check.sub(r'[\\1]', pathname)\n    return drive + pathname\n"
  },
  {
    "path": "rd/usr/lib/python3.8/gzip.py",
    "content": "\"\"\"Functions that read and write gzipped files.\n\nThe user of the file doesn't have to worry about the compression,\nbut random access is not allowed.\"\"\"\n\n# based on Andrew Kuchling's minigzip.py distributed with the zlib module\n\nimport struct, sys, time, os\nimport zlib\nimport builtins\nimport io\nimport _compression\n\n__all__ = [\"BadGzipFile\", \"GzipFile\", \"open\", \"compress\", \"decompress\"]\n\nFTEXT, FHCRC, FEXTRA, FNAME, FCOMMENT = 1, 2, 4, 8, 16\n\nREAD, WRITE = 1, 2\n\n_COMPRESS_LEVEL_FAST = 1\n_COMPRESS_LEVEL_TRADEOFF = 6\n_COMPRESS_LEVEL_BEST = 9\n\n\ndef open(filename, mode=\"rb\", compresslevel=_COMPRESS_LEVEL_BEST,\n         encoding=None, errors=None, newline=None):\n    \"\"\"Open a gzip-compressed file in binary or text mode.\n\n    The filename argument can be an actual filename (a str or bytes object), or\n    an existing file object to read from or write to.\n\n    The mode argument can be \"r\", \"rb\", \"w\", \"wb\", \"x\", \"xb\", \"a\" or \"ab\" for\n    binary mode, or \"rt\", \"wt\", \"xt\" or \"at\" for text mode. The default mode is\n    \"rb\", and the default compresslevel is 9.\n\n    For binary mode, this function is equivalent to the GzipFile constructor:\n    GzipFile(filename, mode, compresslevel). In this case, the encoding, errors\n    and newline arguments must not be provided.\n\n    For text mode, a GzipFile object is created, and wrapped in an\n    io.TextIOWrapper instance with the specified encoding, error handling\n    behavior, and line ending(s).\n\n    \"\"\"\n    if \"t\" in mode:\n        if \"b\" in mode:\n            raise ValueError(\"Invalid mode: %r\" % (mode,))\n    else:\n        if encoding is not None:\n            raise ValueError(\"Argument 'encoding' not supported in binary mode\")\n        if errors is not None:\n            raise ValueError(\"Argument 'errors' not supported in binary mode\")\n        if newline is not None:\n            raise ValueError(\"Argument 'newline' not supported in binary mode\")\n\n    gz_mode = mode.replace(\"t\", \"\")\n    if isinstance(filename, (str, bytes, os.PathLike)):\n        binary_file = GzipFile(filename, gz_mode, compresslevel)\n    elif hasattr(filename, \"read\") or hasattr(filename, \"write\"):\n        binary_file = GzipFile(None, gz_mode, compresslevel, filename)\n    else:\n        raise TypeError(\"filename must be a str or bytes object, or a file\")\n\n    if \"t\" in mode:\n        return io.TextIOWrapper(binary_file, encoding, errors, newline)\n    else:\n        return binary_file\n\ndef write32u(output, value):\n    # The L format writes the bit pattern correctly whether signed\n    # or unsigned.\n    output.write(struct.pack(\"<L\", value))\n\nclass _PaddedFile:\n    \"\"\"Minimal read-only file object that prepends a string to the contents\n    of an actual file. Shouldn't be used outside of gzip.py, as it lacks\n    essential functionality.\"\"\"\n\n    def __init__(self, f, prepend=b''):\n        self._buffer = prepend\n        self._length = len(prepend)\n        self.file = f\n        self._read = 0\n\n    def read(self, size):\n        if self._read is None:\n            return self.file.read(size)\n        if self._read + size <= self._length:\n            read = self._read\n            self._read += size\n            return self._buffer[read:self._read]\n        else:\n            read = self._read\n            self._read = None\n            return self._buffer[read:] + \\\n                   self.file.read(size-self._length+read)\n\n    def prepend(self, prepend=b''):\n        if self._read is None:\n            self._buffer = prepend\n        else:  # Assume data was read since the last prepend() call\n            self._read -= len(prepend)\n            return\n        self._length = len(self._buffer)\n        self._read = 0\n\n    def seek(self, off):\n        self._read = None\n        self._buffer = None\n        return self.file.seek(off)\n\n    def seekable(self):\n        return True  # Allows fast-forwarding even in unseekable streams\n\n\nclass BadGzipFile(OSError):\n    \"\"\"Exception raised in some cases for invalid gzip files.\"\"\"\n\n\nclass GzipFile(_compression.BaseStream):\n    \"\"\"The GzipFile class simulates most of the methods of a file object with\n    the exception of the truncate() method.\n\n    This class only supports opening files in binary mode. If you need to open a\n    compressed file in text mode, use the gzip.open() function.\n\n    \"\"\"\n\n    # Overridden with internal file object to be closed, if only a filename\n    # is passed in\n    myfileobj = None\n\n    def __init__(self, filename=None, mode=None,\n                 compresslevel=_COMPRESS_LEVEL_BEST, fileobj=None, mtime=None):\n        \"\"\"Constructor for the GzipFile class.\n\n        At least one of fileobj and filename must be given a\n        non-trivial value.\n\n        The new class instance is based on fileobj, which can be a regular\n        file, an io.BytesIO object, or any other object which simulates a file.\n        It defaults to None, in which case filename is opened to provide\n        a file object.\n\n        When fileobj is not None, the filename argument is only used to be\n        included in the gzip file header, which may include the original\n        filename of the uncompressed file.  It defaults to the filename of\n        fileobj, if discernible; otherwise, it defaults to the empty string,\n        and in this case the original filename is not included in the header.\n\n        The mode argument can be any of 'r', 'rb', 'a', 'ab', 'w', 'wb', 'x', or\n        'xb' depending on whether the file will be read or written.  The default\n        is the mode of fileobj if discernible; otherwise, the default is 'rb'.\n        A mode of 'r' is equivalent to one of 'rb', and similarly for 'w' and\n        'wb', 'a' and 'ab', and 'x' and 'xb'.\n\n        The compresslevel argument is an integer from 0 to 9 controlling the\n        level of compression; 1 is fastest and produces the least compression,\n        and 9 is slowest and produces the most compression. 0 is no compression\n        at all. The default is 9.\n\n        The mtime argument is an optional numeric timestamp to be written\n        to the last modification time field in the stream when compressing.\n        If omitted or None, the current time is used.\n\n        \"\"\"\n\n        if mode and ('t' in mode or 'U' in mode):\n            raise ValueError(\"Invalid mode: {!r}\".format(mode))\n        if mode and 'b' not in mode:\n            mode += 'b'\n        if fileobj is None:\n            fileobj = self.myfileobj = builtins.open(filename, mode or 'rb')\n        if filename is None:\n            filename = getattr(fileobj, 'name', '')\n            if not isinstance(filename, (str, bytes)):\n                filename = ''\n        else:\n            filename = os.fspath(filename)\n        if mode is None:\n            mode = getattr(fileobj, 'mode', 'rb')\n\n        if mode.startswith('r'):\n            self.mode = READ\n            raw = _GzipReader(fileobj)\n            self._buffer = io.BufferedReader(raw)\n            self.name = filename\n\n        elif mode.startswith(('w', 'a', 'x')):\n            self.mode = WRITE\n            self._init_write(filename)\n            self.compress = zlib.compressobj(compresslevel,\n                                             zlib.DEFLATED,\n                                             -zlib.MAX_WBITS,\n                                             zlib.DEF_MEM_LEVEL,\n                                             0)\n            self._write_mtime = mtime\n        else:\n            raise ValueError(\"Invalid mode: {!r}\".format(mode))\n\n        self.fileobj = fileobj\n\n        if self.mode == WRITE:\n            self._write_gzip_header(compresslevel)\n\n    @property\n    def filename(self):\n        import warnings\n        warnings.warn(\"use the name attribute\", DeprecationWarning, 2)\n        if self.mode == WRITE and self.name[-3:] != \".gz\":\n            return self.name + \".gz\"\n        return self.name\n\n    @property\n    def mtime(self):\n        \"\"\"Last modification time read from stream, or None\"\"\"\n        return self._buffer.raw._last_mtime\n\n    def __repr__(self):\n        s = repr(self.fileobj)\n        return '<gzip ' + s[1:-1] + ' ' + hex(id(self)) + '>'\n\n    def _init_write(self, filename):\n        self.name = filename\n        self.crc = zlib.crc32(b\"\")\n        self.size = 0\n        self.writebuf = []\n        self.bufsize = 0\n        self.offset = 0  # Current file offset for seek(), tell(), etc\n\n    def _write_gzip_header(self, compresslevel):\n        self.fileobj.write(b'\\037\\213')             # magic header\n        self.fileobj.write(b'\\010')                 # compression method\n        try:\n            # RFC 1952 requires the FNAME field to be Latin-1. Do not\n            # include filenames that cannot be represented that way.\n            fname = os.path.basename(self.name)\n            if not isinstance(fname, bytes):\n                fname = fname.encode('latin-1')\n            if fname.endswith(b'.gz'):\n                fname = fname[:-3]\n        except UnicodeEncodeError:\n            fname = b''\n        flags = 0\n        if fname:\n            flags = FNAME\n        self.fileobj.write(chr(flags).encode('latin-1'))\n        mtime = self._write_mtime\n        if mtime is None:\n            mtime = time.time()\n        write32u(self.fileobj, int(mtime))\n        if compresslevel == _COMPRESS_LEVEL_BEST:\n            xfl = b'\\002'\n        elif compresslevel == _COMPRESS_LEVEL_FAST:\n            xfl = b'\\004'\n        else:\n            xfl = b'\\000'\n        self.fileobj.write(xfl)\n        self.fileobj.write(b'\\377')\n        if fname:\n            self.fileobj.write(fname + b'\\000')\n\n    def write(self,data):\n        self._check_not_closed()\n        if self.mode != WRITE:\n            import errno\n            raise OSError(errno.EBADF, \"write() on read-only GzipFile object\")\n\n        if self.fileobj is None:\n            raise ValueError(\"write() on closed GzipFile object\")\n\n        if isinstance(data, bytes):\n            length = len(data)\n        else:\n            # accept any data that supports the buffer protocol\n            data = memoryview(data)\n            length = data.nbytes\n\n        if length > 0:\n            self.fileobj.write(self.compress.compress(data))\n            self.size += length\n            self.crc = zlib.crc32(data, self.crc)\n            self.offset += length\n\n        return length\n\n    def read(self, size=-1):\n        self._check_not_closed()\n        if self.mode != READ:\n            import errno\n            raise OSError(errno.EBADF, \"read() on write-only GzipFile object\")\n        return self._buffer.read(size)\n\n    def read1(self, size=-1):\n        \"\"\"Implements BufferedIOBase.read1()\n\n        Reads up to a buffer's worth of data if size is negative.\"\"\"\n        self._check_not_closed()\n        if self.mode != READ:\n            import errno\n            raise OSError(errno.EBADF, \"read1() on write-only GzipFile object\")\n\n        if size < 0:\n            size = io.DEFAULT_BUFFER_SIZE\n        return self._buffer.read1(size)\n\n    def peek(self, n):\n        self._check_not_closed()\n        if self.mode != READ:\n            import errno\n            raise OSError(errno.EBADF, \"peek() on write-only GzipFile object\")\n        return self._buffer.peek(n)\n\n    @property\n    def closed(self):\n        return self.fileobj is None\n\n    def close(self):\n        fileobj = self.fileobj\n        if fileobj is None:\n            return\n        self.fileobj = None\n        try:\n            if self.mode == WRITE:\n                fileobj.write(self.compress.flush())\n                write32u(fileobj, self.crc)\n                # self.size may exceed 2 GiB, or even 4 GiB\n                write32u(fileobj, self.size & 0xffffffff)\n            elif self.mode == READ:\n                self._buffer.close()\n        finally:\n            myfileobj = self.myfileobj\n            if myfileobj:\n                self.myfileobj = None\n                myfileobj.close()\n\n    def flush(self,zlib_mode=zlib.Z_SYNC_FLUSH):\n        self._check_not_closed()\n        if self.mode == WRITE:\n            # Ensure the compressor's buffer is flushed\n            self.fileobj.write(self.compress.flush(zlib_mode))\n            self.fileobj.flush()\n\n    def fileno(self):\n        \"\"\"Invoke the underlying file object's fileno() method.\n\n        This will raise AttributeError if the underlying file object\n        doesn't support fileno().\n        \"\"\"\n        return self.fileobj.fileno()\n\n    def rewind(self):\n        '''Return the uncompressed stream file position indicator to the\n        beginning of the file'''\n        if self.mode != READ:\n            raise OSError(\"Can't rewind in write mode\")\n        self._buffer.seek(0)\n\n    def readable(self):\n        return self.mode == READ\n\n    def writable(self):\n        return self.mode == WRITE\n\n    def seekable(self):\n        return True\n\n    def seek(self, offset, whence=io.SEEK_SET):\n        if self.mode == WRITE:\n            if whence != io.SEEK_SET:\n                if whence == io.SEEK_CUR:\n                    offset = self.offset + offset\n                else:\n                    raise ValueError('Seek from end not supported')\n            if offset < self.offset:\n                raise OSError('Negative seek in write mode')\n            count = offset - self.offset\n            chunk = b'\\0' * 1024\n            for i in range(count // 1024):\n                self.write(chunk)\n            self.write(b'\\0' * (count % 1024))\n        elif self.mode == READ:\n            self._check_not_closed()\n            return self._buffer.seek(offset, whence)\n\n        return self.offset\n\n    def readline(self, size=-1):\n        self._check_not_closed()\n        return self._buffer.readline(size)\n\n\nclass _GzipReader(_compression.DecompressReader):\n    def __init__(self, fp):\n        super().__init__(_PaddedFile(fp), zlib.decompressobj,\n                         wbits=-zlib.MAX_WBITS)\n        # Set flag indicating start of a new member\n        self._new_member = True\n        self._last_mtime = None\n\n    def _init_read(self):\n        self._crc = zlib.crc32(b\"\")\n        self._stream_size = 0  # Decompressed size of unconcatenated stream\n\n    def _read_exact(self, n):\n        '''Read exactly *n* bytes from `self._fp`\n\n        This method is required because self._fp may be unbuffered,\n        i.e. return short reads.\n        '''\n\n        data = self._fp.read(n)\n        while len(data) < n:\n            b = self._fp.read(n - len(data))\n            if not b:\n                raise EOFError(\"Compressed file ended before the \"\n                               \"end-of-stream marker was reached\")\n            data += b\n        return data\n\n    def _read_gzip_header(self):\n        magic = self._fp.read(2)\n        if magic == b'':\n            return False\n\n        if magic != b'\\037\\213':\n            raise BadGzipFile('Not a gzipped file (%r)' % magic)\n\n        (method, flag,\n         self._last_mtime) = struct.unpack(\"<BBIxx\", self._read_exact(8))\n        if method != 8:\n            raise BadGzipFile('Unknown compression method')\n\n        if flag & FEXTRA:\n            # Read & discard the extra field, if present\n            extra_len, = struct.unpack(\"<H\", self._read_exact(2))\n            self._read_exact(extra_len)\n        if flag & FNAME:\n            # Read and discard a null-terminated string containing the filename\n            while True:\n                s = self._fp.read(1)\n                if not s or s==b'\\000':\n                    break\n        if flag & FCOMMENT:\n            # Read and discard a null-terminated string containing a comment\n            while True:\n                s = self._fp.read(1)\n                if not s or s==b'\\000':\n                    break\n        if flag & FHCRC:\n            self._read_exact(2)     # Read & discard the 16-bit header CRC\n        return True\n\n    def read(self, size=-1):\n        if size < 0:\n            return self.readall()\n        # size=0 is special because decompress(max_length=0) is not supported\n        if not size:\n            return b\"\"\n\n        # For certain input data, a single\n        # call to decompress() may not return\n        # any data. In this case, retry until we get some data or reach EOF.\n        while True:\n            if self._decompressor.eof:\n                # Ending case: we've come to the end of a member in the file,\n                # so finish up this member, and read a new gzip header.\n                # Check the CRC and file size, and set the flag so we read\n                # a new member\n                self._read_eof()\n                self._new_member = True\n                self._decompressor = self._decomp_factory(\n                    **self._decomp_args)\n\n            if self._new_member:\n                # If the _new_member flag is set, we have to\n                # jump to the next member, if there is one.\n                self._init_read()\n                if not self._read_gzip_header():\n                    self._size = self._pos\n                    return b\"\"\n                self._new_member = False\n\n            # Read a chunk of data from the file\n            buf = self._fp.read(io.DEFAULT_BUFFER_SIZE)\n\n            uncompress = self._decompressor.decompress(buf, size)\n            if self._decompressor.unconsumed_tail != b\"\":\n                self._fp.prepend(self._decompressor.unconsumed_tail)\n            elif self._decompressor.unused_data != b\"\":\n                # Prepend the already read bytes to the fileobj so they can\n                # be seen by _read_eof() and _read_gzip_header()\n                self._fp.prepend(self._decompressor.unused_data)\n\n            if uncompress != b\"\":\n                break\n            if buf == b\"\":\n                raise EOFError(\"Compressed file ended before the \"\n                               \"end-of-stream marker was reached\")\n\n        self._add_read_data( uncompress )\n        self._pos += len(uncompress)\n        return uncompress\n\n    def _add_read_data(self, data):\n        self._crc = zlib.crc32(data, self._crc)\n        self._stream_size = self._stream_size + len(data)\n\n    def _read_eof(self):\n        # We've read to the end of the file\n        # We check the that the computed CRC and size of the\n        # uncompressed data matches the stored values.  Note that the size\n        # stored is the true file size mod 2**32.\n        crc32, isize = struct.unpack(\"<II\", self._read_exact(8))\n        if crc32 != self._crc:\n            raise BadGzipFile(\"CRC check failed %s != %s\" % (hex(crc32),\n                                                             hex(self._crc)))\n        elif isize != (self._stream_size & 0xffffffff):\n            raise BadGzipFile(\"Incorrect length of data produced\")\n\n        # Gzip files can be padded with zeroes and still have archives.\n        # Consume all zero bytes and set the file position to the first\n        # non-zero byte. See http://www.gzip.org/#faq8\n        c = b\"\\x00\"\n        while c == b\"\\x00\":\n            c = self._fp.read(1)\n        if c:\n            self._fp.prepend(c)\n\n    def _rewind(self):\n        super()._rewind()\n        self._new_member = True\n\ndef compress(data, compresslevel=_COMPRESS_LEVEL_BEST, *, mtime=None):\n    \"\"\"Compress data in one shot and return the compressed string.\n    Optional argument is the compression level, in range of 0-9.\n    \"\"\"\n    buf = io.BytesIO()\n    with GzipFile(fileobj=buf, mode='wb', compresslevel=compresslevel, mtime=mtime) as f:\n        f.write(data)\n    return buf.getvalue()\n\ndef decompress(data):\n    \"\"\"Decompress a gzip compressed string in one shot.\n    Return the decompressed string.\n    \"\"\"\n    with GzipFile(fileobj=io.BytesIO(data)) as f:\n        return f.read()\n\n\ndef main():\n    from argparse import ArgumentParser\n    parser = ArgumentParser(description=\n        \"A simple command line interface for the gzip module: act like gzip, \"\n        \"but do not delete the input file.\")\n    group = parser.add_mutually_exclusive_group()\n    group.add_argument('--fast', action='store_true', help='compress faster')\n    group.add_argument('--best', action='store_true', help='compress better')\n    group.add_argument(\"-d\", \"--decompress\", action=\"store_true\",\n                        help=\"act like gunzip instead of gzip\")\n\n    parser.add_argument(\"args\", nargs=\"*\", default=[\"-\"], metavar='file')\n    args = parser.parse_args()\n\n    compresslevel = _COMPRESS_LEVEL_TRADEOFF\n    if args.fast:\n        compresslevel = _COMPRESS_LEVEL_FAST\n    elif args.best:\n        compresslevel = _COMPRESS_LEVEL_BEST\n\n    for arg in args.args:\n        if args.decompress:\n            if arg == \"-\":\n                f = GzipFile(filename=\"\", mode=\"rb\", fileobj=sys.stdin.buffer)\n                g = sys.stdout.buffer\n            else:\n                if arg[-3:] != \".gz\":\n                    print(\"filename doesn't end in .gz:\", repr(arg))\n                    continue\n                f = open(arg, \"rb\")\n                g = builtins.open(arg[:-3], \"wb\")\n        else:\n            if arg == \"-\":\n                f = sys.stdin.buffer\n                g = GzipFile(filename=\"\", mode=\"wb\", fileobj=sys.stdout.buffer,\n                             compresslevel=compresslevel)\n            else:\n                f = builtins.open(arg, \"rb\")\n                g = open(arg + \".gz\", \"wb\")\n        while True:\n            chunk = f.read(1024)\n            if not chunk:\n                break\n            g.write(chunk)\n        if g is not sys.stdout.buffer:\n            g.close()\n        if f is not sys.stdin.buffer:\n            f.close()\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/hashlib.py",
    "content": "#.  Copyright (C) 2005-2010   Gregory P. Smith (greg@krypto.org)\n#  Licensed to PSF under a Contributor Agreement.\n#\n\n__doc__ = \"\"\"hashlib module - A common interface to many hash functions.\n\nnew(name, data=b'', **kwargs) - returns a new hash object implementing the\n                                given hash function; initializing the hash\n                                using the given binary data.\n\nNamed constructor functions are also available, these are faster\nthan using new(name):\n\nmd5(), sha1(), sha224(), sha256(), sha384(), sha512(), blake2b(), blake2s(),\nsha3_224, sha3_256, sha3_384, sha3_512, shake_128, and shake_256.\n\nMore algorithms may be available on your platform but the above are guaranteed\nto exist.  See the algorithms_guaranteed and algorithms_available attributes\nto find out what algorithm names can be passed to new().\n\nNOTE: If you want the adler32 or crc32 hash functions they are available in\nthe zlib module.\n\nChoose your hash function wisely.  Some have known collision weaknesses.\nsha384 and sha512 will be slow on 32 bit platforms.\n\nHash objects have these methods:\n - update(data): Update the hash object with the bytes in data. Repeated calls\n                 are equivalent to a single call with the concatenation of all\n                 the arguments.\n - digest():     Return the digest of the bytes passed to the update() method\n                 so far as a bytes object.\n - hexdigest():  Like digest() except the digest is returned as a string\n                 of double length, containing only hexadecimal digits.\n - copy():       Return a copy (clone) of the hash object. This can be used to\n                 efficiently compute the digests of datas that share a common\n                 initial substring.\n\nFor example, to obtain the digest of the byte string 'Nobody inspects the\nspammish repetition':\n\n    >>> import hashlib\n    >>> m = hashlib.md5()\n    >>> m.update(b\"Nobody inspects\")\n    >>> m.update(b\" the spammish repetition\")\n    >>> m.digest()\n    b'\\\\xbbd\\\\x9c\\\\x83\\\\xdd\\\\x1e\\\\xa5\\\\xc9\\\\xd9\\\\xde\\\\xc9\\\\xa1\\\\x8d\\\\xf0\\\\xff\\\\xe9'\n\nMore condensed:\n\n    >>> hashlib.sha224(b\"Nobody inspects the spammish repetition\").hexdigest()\n    'a4337bc45a8fc544c03f52dc550cd6e1e87021bc896588bd79e901e2'\n\n\"\"\"\n\n# This tuple and __get_builtin_constructor() must be modified if a new\n# always available algorithm is added.\n__always_supported = ('md5', 'sha1', 'sha224', 'sha256', 'sha384', 'sha512',\n                      'blake2b', 'blake2s',\n                      'sha3_224', 'sha3_256', 'sha3_384', 'sha3_512',\n                      'shake_128', 'shake_256')\n\n\nalgorithms_guaranteed = set(__always_supported)\nalgorithms_available = set(__always_supported)\n\n__all__ = __always_supported + ('new', 'algorithms_guaranteed',\n                                'algorithms_available', 'pbkdf2_hmac')\n\n\n__builtin_constructor_cache = {}\n\n__block_openssl_constructor = {\n    'sha3_224', 'sha3_256', 'sha3_384', 'sha3_512',\n    'shake_128', 'shake_256',\n    'blake2b', 'blake2s',\n}\n\ndef __get_builtin_constructor(name):\n    cache = __builtin_constructor_cache\n    constructor = cache.get(name)\n    if constructor is not None:\n        return constructor\n    try:\n        if name in {'SHA1', 'sha1'}:\n            import _sha1\n            cache['SHA1'] = cache['sha1'] = _sha1.sha1\n        elif name in {'MD5', 'md5'}:\n            import _md5\n            cache['MD5'] = cache['md5'] = _md5.md5\n        elif name in {'SHA256', 'sha256', 'SHA224', 'sha224'}:\n            import _sha256\n            cache['SHA224'] = cache['sha224'] = _sha256.sha224\n            cache['SHA256'] = cache['sha256'] = _sha256.sha256\n        elif name in {'SHA512', 'sha512', 'SHA384', 'sha384'}:\n            import _sha512\n            cache['SHA384'] = cache['sha384'] = _sha512.sha384\n            cache['SHA512'] = cache['sha512'] = _sha512.sha512\n        elif name in {'blake2b', 'blake2s'}:\n            import _blake2\n            cache['blake2b'] = _blake2.blake2b\n            cache['blake2s'] = _blake2.blake2s\n        elif name in {'sha3_224', 'sha3_256', 'sha3_384', 'sha3_512'}:\n            import _sha3\n            cache['sha3_224'] = _sha3.sha3_224\n            cache['sha3_256'] = _sha3.sha3_256\n            cache['sha3_384'] = _sha3.sha3_384\n            cache['sha3_512'] = _sha3.sha3_512\n        elif name in {'shake_128', 'shake_256'}:\n            import _sha3\n            cache['shake_128'] = _sha3.shake_128\n            cache['shake_256'] = _sha3.shake_256\n    except ImportError:\n        pass  # no extension module, this hash is unsupported.\n\n    constructor = cache.get(name)\n    if constructor is not None:\n        return constructor\n\n    raise ValueError('unsupported hash type ' + name)\n\n\ndef __get_openssl_constructor(name):\n    if name in __block_openssl_constructor:\n        # Prefer our blake2 and sha3 implementation.\n        return __get_builtin_constructor(name)\n    try:\n        f = getattr(_hashlib, 'openssl_' + name)\n        # Allow the C module to raise ValueError.  The function will be\n        # defined but the hash not actually available thanks to OpenSSL.\n        f()\n        # Use the C function directly (very fast)\n        return f\n    except (AttributeError, ValueError):\n        return __get_builtin_constructor(name)\n\n\ndef __py_new(name, data=b'', **kwargs):\n    \"\"\"new(name, data=b'', **kwargs) - Return a new hashing object using the\n    named algorithm; optionally initialized with data (which must be\n    a bytes-like object).\n    \"\"\"\n    return __get_builtin_constructor(name)(data, **kwargs)\n\n\ndef __hash_new(name, data=b'', **kwargs):\n    \"\"\"new(name, data=b'') - Return a new hashing object using the named algorithm;\n    optionally initialized with data (which must be a bytes-like object).\n    \"\"\"\n    if name in __block_openssl_constructor:\n        # Prefer our blake2 and sha3 implementation\n        # OpenSSL 1.1.0 comes with a limited implementation of blake2b/s.\n        # It does neither support keyed blake2 nor advanced features like\n        # salt, personal, tree hashing or SSE.\n        return __get_builtin_constructor(name)(data, **kwargs)\n    try:\n        return _hashlib.new(name, data)\n    except ValueError:\n        # If the _hashlib module (OpenSSL) doesn't support the named\n        # hash, try using our builtin implementations.\n        # This allows for SHA224/256 and SHA384/512 support even though\n        # the OpenSSL library prior to 0.9.8 doesn't provide them.\n        return __get_builtin_constructor(name)(data)\n\n\ntry:\n    import _hashlib\n    new = __hash_new\n    __get_hash = __get_openssl_constructor\n    algorithms_available = algorithms_available.union(\n            _hashlib.openssl_md_meth_names)\nexcept ImportError:\n    new = __py_new\n    __get_hash = __get_builtin_constructor\n\ntry:\n    # OpenSSL's PKCS5_PBKDF2_HMAC requires OpenSSL 1.0+ with HMAC and SHA\n    from _hashlib import pbkdf2_hmac\nexcept ImportError:\n    _trans_5C = bytes((x ^ 0x5C) for x in range(256))\n    _trans_36 = bytes((x ^ 0x36) for x in range(256))\n\n    def pbkdf2_hmac(hash_name, password, salt, iterations, dklen=None):\n        \"\"\"Password based key derivation function 2 (PKCS #5 v2.0)\n\n        This Python implementations based on the hmac module about as fast\n        as OpenSSL's PKCS5_PBKDF2_HMAC for short passwords and much faster\n        for long passwords.\n        \"\"\"\n        if not isinstance(hash_name, str):\n            raise TypeError(hash_name)\n\n        if not isinstance(password, (bytes, bytearray)):\n            password = bytes(memoryview(password))\n        if not isinstance(salt, (bytes, bytearray)):\n            salt = bytes(memoryview(salt))\n\n        # Fast inline HMAC implementation\n        inner = new(hash_name)\n        outer = new(hash_name)\n        blocksize = getattr(inner, 'block_size', 64)\n        if len(password) > blocksize:\n            password = new(hash_name, password).digest()\n        password = password + b'\\x00' * (blocksize - len(password))\n        inner.update(password.translate(_trans_36))\n        outer.update(password.translate(_trans_5C))\n\n        def prf(msg, inner=inner, outer=outer):\n            # PBKDF2_HMAC uses the password as key. We can re-use the same\n            # digest objects and just update copies to skip initialization.\n            icpy = inner.copy()\n            ocpy = outer.copy()\n            icpy.update(msg)\n            ocpy.update(icpy.digest())\n            return ocpy.digest()\n\n        if iterations < 1:\n            raise ValueError(iterations)\n        if dklen is None:\n            dklen = outer.digest_size\n        if dklen < 1:\n            raise ValueError(dklen)\n\n        dkey = b''\n        loop = 1\n        from_bytes = int.from_bytes\n        while len(dkey) < dklen:\n            prev = prf(salt + loop.to_bytes(4, 'big'))\n            # endianness doesn't matter here as long to / from use the same\n            rkey = int.from_bytes(prev, 'big')\n            for i in range(iterations - 1):\n                prev = prf(prev)\n                # rkey = rkey ^ prev\n                rkey ^= from_bytes(prev, 'big')\n            loop += 1\n            dkey += rkey.to_bytes(inner.digest_size, 'big')\n\n        return dkey[:dklen]\n\ntry:\n    # OpenSSL's scrypt requires OpenSSL 1.1+\n    from _hashlib import scrypt\nexcept ImportError:\n    pass\n\n\nfor __func_name in __always_supported:\n    # try them all, some may not work due to the OpenSSL\n    # version not supporting that algorithm.\n    try:\n        globals()[__func_name] = __get_hash(__func_name)\n    except ValueError:\n        import logging\n        logging.exception('code for hash %s was not found.', __func_name)\n\n\n# Cleanup locals()\ndel __always_supported, __func_name, __get_hash\ndel __py_new, __hash_new, __get_openssl_constructor\n"
  },
  {
    "path": "rd/usr/lib/python3.8/heapq.py",
    "content": "\"\"\"Heap queue algorithm (a.k.a. priority queue).\n\nHeaps are arrays for which a[k] <= a[2*k+1] and a[k] <= a[2*k+2] for\nall k, counting elements from 0.  For the sake of comparison,\nnon-existing elements are considered to be infinite.  The interesting\nproperty of a heap is that a[0] is always its smallest element.\n\nUsage:\n\nheap = []            # creates an empty heap\nheappush(heap, item) # pushes a new item on the heap\nitem = heappop(heap) # pops the smallest item from the heap\nitem = heap[0]       # smallest item on the heap without popping it\nheapify(x)           # transforms list into a heap, in-place, in linear time\nitem = heapreplace(heap, item) # pops and returns smallest item, and adds\n                               # new item; the heap size is unchanged\n\nOur API differs from textbook heap algorithms as follows:\n\n- We use 0-based indexing.  This makes the relationship between the\n  index for a node and the indexes for its children slightly less\n  obvious, but is more suitable since Python uses 0-based indexing.\n\n- Our heappop() method returns the smallest item, not the largest.\n\nThese two make it possible to view the heap as a regular Python list\nwithout surprises: heap[0] is the smallest item, and heap.sort()\nmaintains the heap invariant!\n\"\"\"\n\n# Original code by Kevin O'Connor, augmented by Tim Peters and Raymond Hettinger\n\n__about__ = \"\"\"Heap queues\n\n[explanation by François Pinard]\n\nHeaps are arrays for which a[k] <= a[2*k+1] and a[k] <= a[2*k+2] for\nall k, counting elements from 0.  For the sake of comparison,\nnon-existing elements are considered to be infinite.  The interesting\nproperty of a heap is that a[0] is always its smallest element.\n\nThe strange invariant above is meant to be an efficient memory\nrepresentation for a tournament.  The numbers below are `k', not a[k]:\n\n                                   0\n\n                  1                                 2\n\n          3               4                5               6\n\n      7       8       9       10      11      12      13      14\n\n    15 16   17 18   19 20   21 22   23 24   25 26   27 28   29 30\n\n\nIn the tree above, each cell `k' is topping `2*k+1' and `2*k+2'.  In\na usual binary tournament we see in sports, each cell is the winner\nover the two cells it tops, and we can trace the winner down the tree\nto see all opponents s/he had.  However, in many computer applications\nof such tournaments, we do not need to trace the history of a winner.\nTo be more memory efficient, when a winner is promoted, we try to\nreplace it by something else at a lower level, and the rule becomes\nthat a cell and the two cells it tops contain three different items,\nbut the top cell \"wins\" over the two topped cells.\n\nIf this heap invariant is protected at all time, index 0 is clearly\nthe overall winner.  The simplest algorithmic way to remove it and\nfind the \"next\" winner is to move some loser (let's say cell 30 in the\ndiagram above) into the 0 position, and then percolate this new 0 down\nthe tree, exchanging values, until the invariant is re-established.\nThis is clearly logarithmic on the total number of items in the tree.\nBy iterating over all items, you get an O(n ln n) sort.\n\nA nice feature of this sort is that you can efficiently insert new\nitems while the sort is going on, provided that the inserted items are\nnot \"better\" than the last 0'th element you extracted.  This is\nespecially useful in simulation contexts, where the tree holds all\nincoming events, and the \"win\" condition means the smallest scheduled\ntime.  When an event schedule other events for execution, they are\nscheduled into the future, so they can easily go into the heap.  So, a\nheap is a good structure for implementing schedulers (this is what I\nused for my MIDI sequencer :-).\n\nVarious structures for implementing schedulers have been extensively\nstudied, and heaps are good for this, as they are reasonably speedy,\nthe speed is almost constant, and the worst case is not much different\nthan the average case.  However, there are other representations which\nare more efficient overall, yet the worst cases might be terrible.\n\nHeaps are also very useful in big disk sorts.  You most probably all\nknow that a big sort implies producing \"runs\" (which are pre-sorted\nsequences, which size is usually related to the amount of CPU memory),\nfollowed by a merging passes for these runs, which merging is often\nvery cleverly organised[1].  It is very important that the initial\nsort produces the longest runs possible.  Tournaments are a good way\nto that.  If, using all the memory available to hold a tournament, you\nreplace and percolate items that happen to fit the current run, you'll\nproduce runs which are twice the size of the memory for random input,\nand much better for input fuzzily ordered.\n\nMoreover, if you output the 0'th item on disk and get an input which\nmay not fit in the current tournament (because the value \"wins\" over\nthe last output value), it cannot fit in the heap, so the size of the\nheap decreases.  The freed memory could be cleverly reused immediately\nfor progressively building a second heap, which grows at exactly the\nsame rate the first heap is melting.  When the first heap completely\nvanishes, you switch heaps and start a new run.  Clever and quite\neffective!\n\nIn a word, heaps are useful memory structures to know.  I use them in\na few applications, and I think it is good to keep a `heap' module\naround. :-)\n\n--------------------\n[1] The disk balancing algorithms which are current, nowadays, are\nmore annoying than clever, and this is a consequence of the seeking\ncapabilities of the disks.  On devices which cannot seek, like big\ntape drives, the story was quite different, and one had to be very\nclever to ensure (far in advance) that each tape movement will be the\nmost effective possible (that is, will best participate at\n\"progressing\" the merge).  Some tapes were even able to read\nbackwards, and this was also used to avoid the rewinding time.\nBelieve me, real good tape sorts were quite spectacular to watch!\nFrom all times, sorting has always been a Great Art! :-)\n\"\"\"\n\n__all__ = ['heappush', 'heappop', 'heapify', 'heapreplace', 'merge',\n           'nlargest', 'nsmallest', 'heappushpop']\n\ndef heappush(heap, item):\n    \"\"\"Push item onto heap, maintaining the heap invariant.\"\"\"\n    heap.append(item)\n    _siftdown(heap, 0, len(heap)-1)\n\ndef heappop(heap):\n    \"\"\"Pop the smallest item off the heap, maintaining the heap invariant.\"\"\"\n    lastelt = heap.pop()    # raises appropriate IndexError if heap is empty\n    if heap:\n        returnitem = heap[0]\n        heap[0] = lastelt\n        _siftup(heap, 0)\n        return returnitem\n    return lastelt\n\ndef heapreplace(heap, item):\n    \"\"\"Pop and return the current smallest value, and add the new item.\n\n    This is more efficient than heappop() followed by heappush(), and can be\n    more appropriate when using a fixed-size heap.  Note that the value\n    returned may be larger than item!  That constrains reasonable uses of\n    this routine unless written as part of a conditional replacement:\n\n        if item > heap[0]:\n            item = heapreplace(heap, item)\n    \"\"\"\n    returnitem = heap[0]    # raises appropriate IndexError if heap is empty\n    heap[0] = item\n    _siftup(heap, 0)\n    return returnitem\n\ndef heappushpop(heap, item):\n    \"\"\"Fast version of a heappush followed by a heappop.\"\"\"\n    if heap and heap[0] < item:\n        item, heap[0] = heap[0], item\n        _siftup(heap, 0)\n    return item\n\ndef heapify(x):\n    \"\"\"Transform list into a heap, in-place, in O(len(x)) time.\"\"\"\n    n = len(x)\n    # Transform bottom-up.  The largest index there's any point to looking at\n    # is the largest with a child index in-range, so must have 2*i + 1 < n,\n    # or i < (n-1)/2.  If n is even = 2*j, this is (2*j-1)/2 = j-1/2 so\n    # j-1 is the largest, which is n//2 - 1.  If n is odd = 2*j+1, this is\n    # (2*j+1-1)/2 = j so j-1 is the largest, and that's again n//2-1.\n    for i in reversed(range(n//2)):\n        _siftup(x, i)\n\ndef _heappop_max(heap):\n    \"\"\"Maxheap version of a heappop.\"\"\"\n    lastelt = heap.pop()    # raises appropriate IndexError if heap is empty\n    if heap:\n        returnitem = heap[0]\n        heap[0] = lastelt\n        _siftup_max(heap, 0)\n        return returnitem\n    return lastelt\n\ndef _heapreplace_max(heap, item):\n    \"\"\"Maxheap version of a heappop followed by a heappush.\"\"\"\n    returnitem = heap[0]    # raises appropriate IndexError if heap is empty\n    heap[0] = item\n    _siftup_max(heap, 0)\n    return returnitem\n\ndef _heapify_max(x):\n    \"\"\"Transform list into a maxheap, in-place, in O(len(x)) time.\"\"\"\n    n = len(x)\n    for i in reversed(range(n//2)):\n        _siftup_max(x, i)\n\n# 'heap' is a heap at all indices >= startpos, except possibly for pos.  pos\n# is the index of a leaf with a possibly out-of-order value.  Restore the\n# heap invariant.\ndef _siftdown(heap, startpos, pos):\n    newitem = heap[pos]\n    # Follow the path to the root, moving parents down until finding a place\n    # newitem fits.\n    while pos > startpos:\n        parentpos = (pos - 1) >> 1\n        parent = heap[parentpos]\n        if newitem < parent:\n            heap[pos] = parent\n            pos = parentpos\n            continue\n        break\n    heap[pos] = newitem\n\n# The child indices of heap index pos are already heaps, and we want to make\n# a heap at index pos too.  We do this by bubbling the smaller child of\n# pos up (and so on with that child's children, etc) until hitting a leaf,\n# then using _siftdown to move the oddball originally at index pos into place.\n#\n# We *could* break out of the loop as soon as we find a pos where newitem <=\n# both its children, but turns out that's not a good idea, and despite that\n# many books write the algorithm that way.  During a heap pop, the last array\n# element is sifted in, and that tends to be large, so that comparing it\n# against values starting from the root usually doesn't pay (= usually doesn't\n# get us out of the loop early).  See Knuth, Volume 3, where this is\n# explained and quantified in an exercise.\n#\n# Cutting the # of comparisons is important, since these routines have no\n# way to extract \"the priority\" from an array element, so that intelligence\n# is likely to be hiding in custom comparison methods, or in array elements\n# storing (priority, record) tuples.  Comparisons are thus potentially\n# expensive.\n#\n# On random arrays of length 1000, making this change cut the number of\n# comparisons made by heapify() a little, and those made by exhaustive\n# heappop() a lot, in accord with theory.  Here are typical results from 3\n# runs (3 just to demonstrate how small the variance is):\n#\n# Compares needed by heapify     Compares needed by 1000 heappops\n# --------------------------     --------------------------------\n# 1837 cut to 1663               14996 cut to 8680\n# 1855 cut to 1659               14966 cut to 8678\n# 1847 cut to 1660               15024 cut to 8703\n#\n# Building the heap by using heappush() 1000 times instead required\n# 2198, 2148, and 2219 compares:  heapify() is more efficient, when\n# you can use it.\n#\n# The total compares needed by list.sort() on the same lists were 8627,\n# 8627, and 8632 (this should be compared to the sum of heapify() and\n# heappop() compares):  list.sort() is (unsurprisingly!) more efficient\n# for sorting.\n\ndef _siftup(heap, pos):\n    endpos = len(heap)\n    startpos = pos\n    newitem = heap[pos]\n    # Bubble up the smaller child until hitting a leaf.\n    childpos = 2*pos + 1    # leftmost child position\n    while childpos < endpos:\n        # Set childpos to index of smaller child.\n        rightpos = childpos + 1\n        if rightpos < endpos and not heap[childpos] < heap[rightpos]:\n            childpos = rightpos\n        # Move the smaller child up.\n        heap[pos] = heap[childpos]\n        pos = childpos\n        childpos = 2*pos + 1\n    # The leaf at pos is empty now.  Put newitem there, and bubble it up\n    # to its final resting place (by sifting its parents down).\n    heap[pos] = newitem\n    _siftdown(heap, startpos, pos)\n\ndef _siftdown_max(heap, startpos, pos):\n    'Maxheap variant of _siftdown'\n    newitem = heap[pos]\n    # Follow the path to the root, moving parents down until finding a place\n    # newitem fits.\n    while pos > startpos:\n        parentpos = (pos - 1) >> 1\n        parent = heap[parentpos]\n        if parent < newitem:\n            heap[pos] = parent\n            pos = parentpos\n            continue\n        break\n    heap[pos] = newitem\n\ndef _siftup_max(heap, pos):\n    'Maxheap variant of _siftup'\n    endpos = len(heap)\n    startpos = pos\n    newitem = heap[pos]\n    # Bubble up the larger child until hitting a leaf.\n    childpos = 2*pos + 1    # leftmost child position\n    while childpos < endpos:\n        # Set childpos to index of larger child.\n        rightpos = childpos + 1\n        if rightpos < endpos and not heap[rightpos] < heap[childpos]:\n            childpos = rightpos\n        # Move the larger child up.\n        heap[pos] = heap[childpos]\n        pos = childpos\n        childpos = 2*pos + 1\n    # The leaf at pos is empty now.  Put newitem there, and bubble it up\n    # to its final resting place (by sifting its parents down).\n    heap[pos] = newitem\n    _siftdown_max(heap, startpos, pos)\n\ndef merge(*iterables, key=None, reverse=False):\n    '''Merge multiple sorted inputs into a single sorted output.\n\n    Similar to sorted(itertools.chain(*iterables)) but returns a generator,\n    does not pull the data into memory all at once, and assumes that each of\n    the input streams is already sorted (smallest to largest).\n\n    >>> list(merge([1,3,5,7], [0,2,4,8], [5,10,15,20], [], [25]))\n    [0, 1, 2, 3, 4, 5, 5, 7, 8, 10, 15, 20, 25]\n\n    If *key* is not None, applies a key function to each element to determine\n    its sort order.\n\n    >>> list(merge(['dog', 'horse'], ['cat', 'fish', 'kangaroo'], key=len))\n    ['dog', 'cat', 'fish', 'horse', 'kangaroo']\n\n    '''\n\n    h = []\n    h_append = h.append\n\n    if reverse:\n        _heapify = _heapify_max\n        _heappop = _heappop_max\n        _heapreplace = _heapreplace_max\n        direction = -1\n    else:\n        _heapify = heapify\n        _heappop = heappop\n        _heapreplace = heapreplace\n        direction = 1\n\n    if key is None:\n        for order, it in enumerate(map(iter, iterables)):\n            try:\n                next = it.__next__\n                h_append([next(), order * direction, next])\n            except StopIteration:\n                pass\n        _heapify(h)\n        while len(h) > 1:\n            try:\n                while True:\n                    value, order, next = s = h[0]\n                    yield value\n                    s[0] = next()           # raises StopIteration when exhausted\n                    _heapreplace(h, s)      # restore heap condition\n            except StopIteration:\n                _heappop(h)                 # remove empty iterator\n        if h:\n            # fast case when only a single iterator remains\n            value, order, next = h[0]\n            yield value\n            yield from next.__self__\n        return\n\n    for order, it in enumerate(map(iter, iterables)):\n        try:\n            next = it.__next__\n            value = next()\n            h_append([key(value), order * direction, value, next])\n        except StopIteration:\n            pass\n    _heapify(h)\n    while len(h) > 1:\n        try:\n            while True:\n                key_value, order, value, next = s = h[0]\n                yield value\n                value = next()\n                s[0] = key(value)\n                s[2] = value\n                _heapreplace(h, s)\n        except StopIteration:\n            _heappop(h)\n    if h:\n        key_value, order, value, next = h[0]\n        yield value\n        yield from next.__self__\n\n\n# Algorithm notes for nlargest() and nsmallest()\n# ==============================================\n#\n# Make a single pass over the data while keeping the k most extreme values\n# in a heap.  Memory consumption is limited to keeping k values in a list.\n#\n# Measured performance for random inputs:\n#\n#                                   number of comparisons\n#    n inputs     k-extreme values  (average of 5 trials)   % more than min()\n# -------------   ----------------  ---------------------   -----------------\n#      1,000           100                  3,317               231.7%\n#     10,000           100                 14,046                40.5%\n#    100,000           100                105,749                 5.7%\n#  1,000,000           100              1,007,751                 0.8%\n# 10,000,000           100             10,009,401                 0.1%\n#\n# Theoretical number of comparisons for k smallest of n random inputs:\n#\n# Step   Comparisons                  Action\n# ----   --------------------------   ---------------------------\n#  1     1.66 * k                     heapify the first k-inputs\n#  2     n - k                        compare remaining elements to top of heap\n#  3     k * (1 + lg2(k)) * ln(n/k)   replace the topmost value on the heap\n#  4     k * lg2(k) - (k/2)           final sort of the k most extreme values\n#\n# Combining and simplifying for a rough estimate gives:\n#\n#        comparisons = n + k * (log(k, 2) * log(n/k) + log(k, 2) + log(n/k))\n#\n# Computing the number of comparisons for step 3:\n# -----------------------------------------------\n# * For the i-th new value from the iterable, the probability of being in the\n#   k most extreme values is k/i.  For example, the probability of the 101st\n#   value seen being in the 100 most extreme values is 100/101.\n# * If the value is a new extreme value, the cost of inserting it into the\n#   heap is 1 + log(k, 2).\n# * The probability times the cost gives:\n#            (k/i) * (1 + log(k, 2))\n# * Summing across the remaining n-k elements gives:\n#            sum((k/i) * (1 + log(k, 2)) for i in range(k+1, n+1))\n# * This reduces to:\n#            (H(n) - H(k)) * k * (1 + log(k, 2))\n# * Where H(n) is the n-th harmonic number estimated by:\n#            gamma = 0.5772156649\n#            H(n) = log(n, e) + gamma + 1 / (2 * n)\n#   http://en.wikipedia.org/wiki/Harmonic_series_(mathematics)#Rate_of_divergence\n# * Substituting the H(n) formula:\n#            comparisons = k * (1 + log(k, 2)) * (log(n/k, e) + (1/n - 1/k) / 2)\n#\n# Worst-case for step 3:\n# ----------------------\n# In the worst case, the input data is reversed sorted so that every new element\n# must be inserted in the heap:\n#\n#             comparisons = 1.66 * k + log(k, 2) * (n - k)\n#\n# Alternative Algorithms\n# ----------------------\n# Other algorithms were not used because they:\n# 1) Took much more auxiliary memory,\n# 2) Made multiple passes over the data.\n# 3) Made more comparisons in common cases (small k, large n, semi-random input).\n# See the more detailed comparison of approach at:\n# http://code.activestate.com/recipes/577573-compare-algorithms-for-heapqsmallest\n\ndef nsmallest(n, iterable, key=None):\n    \"\"\"Find the n smallest elements in a dataset.\n\n    Equivalent to:  sorted(iterable, key=key)[:n]\n    \"\"\"\n\n    # Short-cut for n==1 is to use min()\n    if n == 1:\n        it = iter(iterable)\n        sentinel = object()\n        result = min(it, default=sentinel, key=key)\n        return [] if result is sentinel else [result]\n\n    # When n>=size, it's faster to use sorted()\n    try:\n        size = len(iterable)\n    except (TypeError, AttributeError):\n        pass\n    else:\n        if n >= size:\n            return sorted(iterable, key=key)[:n]\n\n    # When key is none, use simpler decoration\n    if key is None:\n        it = iter(iterable)\n        # put the range(n) first so that zip() doesn't\n        # consume one too many elements from the iterator\n        result = [(elem, i) for i, elem in zip(range(n), it)]\n        if not result:\n            return result\n        _heapify_max(result)\n        top = result[0][0]\n        order = n\n        _heapreplace = _heapreplace_max\n        for elem in it:\n            if elem < top:\n                _heapreplace(result, (elem, order))\n                top, _order = result[0]\n                order += 1\n        result.sort()\n        return [elem for (elem, order) in result]\n\n    # General case, slowest method\n    it = iter(iterable)\n    result = [(key(elem), i, elem) for i, elem in zip(range(n), it)]\n    if not result:\n        return result\n    _heapify_max(result)\n    top = result[0][0]\n    order = n\n    _heapreplace = _heapreplace_max\n    for elem in it:\n        k = key(elem)\n        if k < top:\n            _heapreplace(result, (k, order, elem))\n            top, _order, _elem = result[0]\n            order += 1\n    result.sort()\n    return [elem for (k, order, elem) in result]\n\ndef nlargest(n, iterable, key=None):\n    \"\"\"Find the n largest elements in a dataset.\n\n    Equivalent to:  sorted(iterable, key=key, reverse=True)[:n]\n    \"\"\"\n\n    # Short-cut for n==1 is to use max()\n    if n == 1:\n        it = iter(iterable)\n        sentinel = object()\n        result = max(it, default=sentinel, key=key)\n        return [] if result is sentinel else [result]\n\n    # When n>=size, it's faster to use sorted()\n    try:\n        size = len(iterable)\n    except (TypeError, AttributeError):\n        pass\n    else:\n        if n >= size:\n            return sorted(iterable, key=key, reverse=True)[:n]\n\n    # When key is none, use simpler decoration\n    if key is None:\n        it = iter(iterable)\n        result = [(elem, i) for i, elem in zip(range(0, -n, -1), it)]\n        if not result:\n            return result\n        heapify(result)\n        top = result[0][0]\n        order = -n\n        _heapreplace = heapreplace\n        for elem in it:\n            if top < elem:\n                _heapreplace(result, (elem, order))\n                top, _order = result[0]\n                order -= 1\n        result.sort(reverse=True)\n        return [elem for (elem, order) in result]\n\n    # General case, slowest method\n    it = iter(iterable)\n    result = [(key(elem), i, elem) for i, elem in zip(range(0, -n, -1), it)]\n    if not result:\n        return result\n    heapify(result)\n    top = result[0][0]\n    order = -n\n    _heapreplace = heapreplace\n    for elem in it:\n        k = key(elem)\n        if top < k:\n            _heapreplace(result, (k, order, elem))\n            top, _order, _elem = result[0]\n            order -= 1\n    result.sort(reverse=True)\n    return [elem for (k, order, elem) in result]\n\n# If available, use C implementation\ntry:\n    from _heapq import *\nexcept ImportError:\n    pass\ntry:\n    from _heapq import _heapreplace_max\nexcept ImportError:\n    pass\ntry:\n    from _heapq import _heapify_max\nexcept ImportError:\n    pass\ntry:\n    from _heapq import _heappop_max\nexcept ImportError:\n    pass\n\n\nif __name__ == \"__main__\":\n\n    import doctest # pragma: no cover\n    print(doctest.testmod()) # pragma: no cover\n"
  },
  {
    "path": "rd/usr/lib/python3.8/hmac.py",
    "content": "\"\"\"HMAC (Keyed-Hashing for Message Authentication) module.\n\nImplements the HMAC algorithm as described by RFC 2104.\n\"\"\"\n\nimport warnings as _warnings\nfrom _operator import _compare_digest as compare_digest\ntry:\n    import _hashlib as _hashopenssl\nexcept ImportError:\n    _hashopenssl = None\n    _openssl_md_meths = None\nelse:\n    _openssl_md_meths = frozenset(_hashopenssl.openssl_md_meth_names)\nimport hashlib as _hashlib\n\ntrans_5C = bytes((x ^ 0x5C) for x in range(256))\ntrans_36 = bytes((x ^ 0x36) for x in range(256))\n\n# The size of the digests returned by HMAC depends on the underlying\n# hashing module used.  Use digest_size from the instance of HMAC instead.\ndigest_size = None\n\n\n\nclass HMAC:\n    \"\"\"RFC 2104 HMAC class.  Also complies with RFC 4231.\n\n    This supports the API for Cryptographic Hash Functions (PEP 247).\n    \"\"\"\n    blocksize = 64  # 512-bit HMAC; can be changed in subclasses.\n\n    def __init__(self, key, msg=None, digestmod=''):\n        \"\"\"Create a new HMAC object.\n\n        key: bytes or buffer, key for the keyed hash object.\n        msg: bytes or buffer, Initial input for the hash or None.\n        digestmod: A hash name suitable for hashlib.new(). *OR*\n                   A hashlib constructor returning a new hash object. *OR*\n                   A module supporting PEP 247.\n\n                   Required as of 3.8, despite its position after the optional\n                   msg argument.  Passing it as a keyword argument is\n                   recommended, though not required for legacy API reasons.\n        \"\"\"\n\n        if not isinstance(key, (bytes, bytearray)):\n            raise TypeError(\"key: expected bytes or bytearray, but got %r\" % type(key).__name__)\n\n        if not digestmod:\n            raise TypeError(\"Missing required parameter 'digestmod'.\")\n\n        if callable(digestmod):\n            self.digest_cons = digestmod\n        elif isinstance(digestmod, str):\n            self.digest_cons = lambda d=b'': _hashlib.new(digestmod, d)\n        else:\n            self.digest_cons = lambda d=b'': digestmod.new(d)\n\n        self.outer = self.digest_cons()\n        self.inner = self.digest_cons()\n        self.digest_size = self.inner.digest_size\n\n        if hasattr(self.inner, 'block_size'):\n            blocksize = self.inner.block_size\n            if blocksize < 16:\n                _warnings.warn('block_size of %d seems too small; using our '\n                               'default of %d.' % (blocksize, self.blocksize),\n                               RuntimeWarning, 2)\n                blocksize = self.blocksize\n        else:\n            _warnings.warn('No block_size attribute on given digest object; '\n                           'Assuming %d.' % (self.blocksize),\n                           RuntimeWarning, 2)\n            blocksize = self.blocksize\n\n        # self.blocksize is the default blocksize. self.block_size is\n        # effective block size as well as the public API attribute.\n        self.block_size = blocksize\n\n        if len(key) > blocksize:\n            key = self.digest_cons(key).digest()\n\n        key = key.ljust(blocksize, b'\\0')\n        self.outer.update(key.translate(trans_5C))\n        self.inner.update(key.translate(trans_36))\n        if msg is not None:\n            self.update(msg)\n\n    @property\n    def name(self):\n        return \"hmac-\" + self.inner.name\n\n    def update(self, msg):\n        \"\"\"Feed data from msg into this hashing object.\"\"\"\n        self.inner.update(msg)\n\n    def copy(self):\n        \"\"\"Return a separate copy of this hashing object.\n\n        An update to this copy won't affect the original object.\n        \"\"\"\n        # Call __new__ directly to avoid the expensive __init__.\n        other = self.__class__.__new__(self.__class__)\n        other.digest_cons = self.digest_cons\n        other.digest_size = self.digest_size\n        other.inner = self.inner.copy()\n        other.outer = self.outer.copy()\n        return other\n\n    def _current(self):\n        \"\"\"Return a hash object for the current state.\n\n        To be used only internally with digest() and hexdigest().\n        \"\"\"\n        h = self.outer.copy()\n        h.update(self.inner.digest())\n        return h\n\n    def digest(self):\n        \"\"\"Return the hash value of this hashing object.\n\n        This returns the hmac value as bytes.  The object is\n        not altered in any way by this function; you can continue\n        updating the object after calling this function.\n        \"\"\"\n        h = self._current()\n        return h.digest()\n\n    def hexdigest(self):\n        \"\"\"Like digest(), but returns a string of hexadecimal digits instead.\n        \"\"\"\n        h = self._current()\n        return h.hexdigest()\n\ndef new(key, msg=None, digestmod=''):\n    \"\"\"Create a new hashing object and return it.\n\n    key: bytes or buffer, The starting key for the hash.\n    msg: bytes or buffer, Initial input for the hash, or None.\n    digestmod: A hash name suitable for hashlib.new(). *OR*\n               A hashlib constructor returning a new hash object. *OR*\n               A module supporting PEP 247.\n\n               Required as of 3.8, despite its position after the optional\n               msg argument.  Passing it as a keyword argument is\n               recommended, though not required for legacy API reasons.\n\n    You can now feed arbitrary bytes into the object using its update()\n    method, and can ask for the hash value at any time by calling its digest()\n    or hexdigest() methods.\n    \"\"\"\n    return HMAC(key, msg, digestmod)\n\n\ndef digest(key, msg, digest):\n    \"\"\"Fast inline implementation of HMAC.\n\n    key: bytes or buffer, The key for the keyed hash object.\n    msg: bytes or buffer, Input message.\n    digest: A hash name suitable for hashlib.new() for best performance. *OR*\n            A hashlib constructor returning a new hash object. *OR*\n            A module supporting PEP 247.\n    \"\"\"\n    if (_hashopenssl is not None and\n            isinstance(digest, str) and digest in _openssl_md_meths):\n        return _hashopenssl.hmac_digest(key, msg, digest)\n\n    if callable(digest):\n        digest_cons = digest\n    elif isinstance(digest, str):\n        digest_cons = lambda d=b'': _hashlib.new(digest, d)\n    else:\n        digest_cons = lambda d=b'': digest.new(d)\n\n    inner = digest_cons()\n    outer = digest_cons()\n    blocksize = getattr(inner, 'block_size', 64)\n    if len(key) > blocksize:\n        key = digest_cons(key).digest()\n    key = key + b'\\x00' * (blocksize - len(key))\n    inner.update(key.translate(trans_36))\n    outer.update(key.translate(trans_5C))\n    inner.update(msg)\n    outer.update(inner.digest())\n    return outer.digest()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/imghdr.py",
    "content": "\"\"\"Recognize image file formats based on their first few bytes.\"\"\"\n\nfrom os import PathLike\n\n__all__ = [\"what\"]\n\n#-------------------------#\n# Recognize image headers #\n#-------------------------#\n\ndef what(file, h=None):\n    f = None\n    try:\n        if h is None:\n            if isinstance(file, (str, PathLike)):\n                f = open(file, 'rb')\n                h = f.read(32)\n            else:\n                location = file.tell()\n                h = file.read(32)\n                file.seek(location)\n        for tf in tests:\n            res = tf(h, f)\n            if res:\n                return res\n    finally:\n        if f: f.close()\n    return None\n\n\n#---------------------------------#\n# Subroutines per image file type #\n#---------------------------------#\n\ntests = []\n\ndef test_jpeg(h, f):\n    \"\"\"JPEG data in JFIF or Exif format\"\"\"\n    if h[6:10] in (b'JFIF', b'Exif'):\n        return 'jpeg'\n\ntests.append(test_jpeg)\n\ndef test_png(h, f):\n    if h.startswith(b'\\211PNG\\r\\n\\032\\n'):\n        return 'png'\n\ntests.append(test_png)\n\ndef test_gif(h, f):\n    \"\"\"GIF ('87 and '89 variants)\"\"\"\n    if h[:6] in (b'GIF87a', b'GIF89a'):\n        return 'gif'\n\ntests.append(test_gif)\n\ndef test_tiff(h, f):\n    \"\"\"TIFF (can be in Motorola or Intel byte order)\"\"\"\n    if h[:2] in (b'MM', b'II'):\n        return 'tiff'\n\ntests.append(test_tiff)\n\ndef test_rgb(h, f):\n    \"\"\"SGI image library\"\"\"\n    if h.startswith(b'\\001\\332'):\n        return 'rgb'\n\ntests.append(test_rgb)\n\ndef test_pbm(h, f):\n    \"\"\"PBM (portable bitmap)\"\"\"\n    if len(h) >= 3 and \\\n        h[0] == ord(b'P') and h[1] in b'14' and h[2] in b' \\t\\n\\r':\n        return 'pbm'\n\ntests.append(test_pbm)\n\ndef test_pgm(h, f):\n    \"\"\"PGM (portable graymap)\"\"\"\n    if len(h) >= 3 and \\\n        h[0] == ord(b'P') and h[1] in b'25' and h[2] in b' \\t\\n\\r':\n        return 'pgm'\n\ntests.append(test_pgm)\n\ndef test_ppm(h, f):\n    \"\"\"PPM (portable pixmap)\"\"\"\n    if len(h) >= 3 and \\\n        h[0] == ord(b'P') and h[1] in b'36' and h[2] in b' \\t\\n\\r':\n        return 'ppm'\n\ntests.append(test_ppm)\n\ndef test_rast(h, f):\n    \"\"\"Sun raster file\"\"\"\n    if h.startswith(b'\\x59\\xA6\\x6A\\x95'):\n        return 'rast'\n\ntests.append(test_rast)\n\ndef test_xbm(h, f):\n    \"\"\"X bitmap (X10 or X11)\"\"\"\n    if h.startswith(b'#define '):\n        return 'xbm'\n\ntests.append(test_xbm)\n\ndef test_bmp(h, f):\n    if h.startswith(b'BM'):\n        return 'bmp'\n\ntests.append(test_bmp)\n\ndef test_webp(h, f):\n    if h.startswith(b'RIFF') and h[8:12] == b'WEBP':\n        return 'webp'\n\ntests.append(test_webp)\n\ndef test_exr(h, f):\n    if h.startswith(b'\\x76\\x2f\\x31\\x01'):\n        return 'exr'\n\ntests.append(test_exr)\n\n#--------------------#\n# Small test program #\n#--------------------#\n\ndef test():\n    import sys\n    recursive = 0\n    if sys.argv[1:] and sys.argv[1] == '-r':\n        del sys.argv[1:2]\n        recursive = 1\n    try:\n        if sys.argv[1:]:\n            testall(sys.argv[1:], recursive, 1)\n        else:\n            testall(['.'], recursive, 1)\n    except KeyboardInterrupt:\n        sys.stderr.write('\\n[Interrupted]\\n')\n        sys.exit(1)\n\ndef testall(list, recursive, toplevel):\n    import sys\n    import os\n    for filename in list:\n        if os.path.isdir(filename):\n            print(filename + '/:', end=' ')\n            if recursive or toplevel:\n                print('recursing down:')\n                import glob\n                names = glob.glob(os.path.join(glob.escape(filename), '*'))\n                testall(names, recursive, 0)\n            else:\n                print('*** directory (use -r) ***')\n        else:\n            print(filename + ':', end=' ')\n            sys.stdout.flush()\n            try:\n                print(what(filename))\n            except OSError:\n                print('*** not found ***')\n\nif __name__ == '__main__':\n    test()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/imp.py",
    "content": "\"\"\"This module provides the components needed to build your own __import__\nfunction.  Undocumented functions are obsolete.\n\nIn most cases it is preferred you consider using the importlib module's\nfunctionality over this module.\n\n\"\"\"\n# (Probably) need to stay in _imp\nfrom _imp import (lock_held, acquire_lock, release_lock,\n                  get_frozen_object, is_frozen_package,\n                  init_frozen, is_builtin, is_frozen,\n                  _fix_co_filename)\ntry:\n    from _imp import create_dynamic\nexcept ImportError:\n    # Platform doesn't support dynamic loading.\n    create_dynamic = None\n\nfrom importlib._bootstrap import _ERR_MSG, _exec, _load, _builtin_from_name\nfrom importlib._bootstrap_external import SourcelessFileLoader\n\nfrom importlib import machinery\nfrom importlib import util\nimport importlib\nimport os\nimport sys\nimport tokenize\nimport types\nimport warnings\n\nwarnings.warn(\"the imp module is deprecated in favour of importlib; \"\n              \"see the module's documentation for alternative uses\",\n              DeprecationWarning, stacklevel=2)\n\n# DEPRECATED\nSEARCH_ERROR = 0\nPY_SOURCE = 1\nPY_COMPILED = 2\nC_EXTENSION = 3\nPY_RESOURCE = 4\nPKG_DIRECTORY = 5\nC_BUILTIN = 6\nPY_FROZEN = 7\nPY_CODERESOURCE = 8\nIMP_HOOK = 9\n\n\ndef new_module(name):\n    \"\"\"**DEPRECATED**\n\n    Create a new module.\n\n    The module is not entered into sys.modules.\n\n    \"\"\"\n    return types.ModuleType(name)\n\n\ndef get_magic():\n    \"\"\"**DEPRECATED**\n\n    Return the magic number for .pyc files.\n    \"\"\"\n    return util.MAGIC_NUMBER\n\n\ndef get_tag():\n    \"\"\"Return the magic tag for .pyc files.\"\"\"\n    return sys.implementation.cache_tag\n\n\ndef cache_from_source(path, debug_override=None):\n    \"\"\"**DEPRECATED**\n\n    Given the path to a .py file, return the path to its .pyc file.\n\n    The .py file does not need to exist; this simply returns the path to the\n    .pyc file calculated as if the .py file were imported.\n\n    If debug_override is not None, then it must be a boolean and is used in\n    place of sys.flags.optimize.\n\n    If sys.implementation.cache_tag is None then NotImplementedError is raised.\n\n    \"\"\"\n    with warnings.catch_warnings():\n        warnings.simplefilter('ignore')\n        return util.cache_from_source(path, debug_override)\n\n\ndef source_from_cache(path):\n    \"\"\"**DEPRECATED**\n\n    Given the path to a .pyc. file, return the path to its .py file.\n\n    The .pyc file does not need to exist; this simply returns the path to\n    the .py file calculated to correspond to the .pyc file.  If path does\n    not conform to PEP 3147 format, ValueError will be raised. If\n    sys.implementation.cache_tag is None then NotImplementedError is raised.\n\n    \"\"\"\n    return util.source_from_cache(path)\n\n\ndef get_suffixes():\n    \"\"\"**DEPRECATED**\"\"\"\n    extensions = [(s, 'rb', C_EXTENSION) for s in machinery.EXTENSION_SUFFIXES]\n    source = [(s, 'r', PY_SOURCE) for s in machinery.SOURCE_SUFFIXES]\n    bytecode = [(s, 'rb', PY_COMPILED) for s in machinery.BYTECODE_SUFFIXES]\n\n    return extensions + source + bytecode\n\n\nclass NullImporter:\n\n    \"\"\"**DEPRECATED**\n\n    Null import object.\n\n    \"\"\"\n\n    def __init__(self, path):\n        if path == '':\n            raise ImportError('empty pathname', path='')\n        elif os.path.isdir(path):\n            raise ImportError('existing directory', path=path)\n\n    def find_module(self, fullname):\n        \"\"\"Always returns None.\"\"\"\n        return None\n\n\nclass _HackedGetData:\n\n    \"\"\"Compatibility support for 'file' arguments of various load_*()\n    functions.\"\"\"\n\n    def __init__(self, fullname, path, file=None):\n        super().__init__(fullname, path)\n        self.file = file\n\n    def get_data(self, path):\n        \"\"\"Gross hack to contort loader to deal w/ load_*()'s bad API.\"\"\"\n        if self.file and path == self.path:\n            # The contract of get_data() requires us to return bytes. Reopen the\n            # file in binary mode if needed.\n            if not self.file.closed:\n                file = self.file\n                if 'b' not in file.mode:\n                    file.close()\n            if self.file.closed:\n                self.file = file = open(self.path, 'rb')\n\n            with file:\n                return file.read()\n        else:\n            return super().get_data(path)\n\n\nclass _LoadSourceCompatibility(_HackedGetData, machinery.SourceFileLoader):\n\n    \"\"\"Compatibility support for implementing load_source().\"\"\"\n\n\ndef load_source(name, pathname, file=None):\n    loader = _LoadSourceCompatibility(name, pathname, file)\n    spec = util.spec_from_file_location(name, pathname, loader=loader)\n    if name in sys.modules:\n        module = _exec(spec, sys.modules[name])\n    else:\n        module = _load(spec)\n    # To allow reloading to potentially work, use a non-hacked loader which\n    # won't rely on a now-closed file object.\n    module.__loader__ = machinery.SourceFileLoader(name, pathname)\n    module.__spec__.loader = module.__loader__\n    return module\n\n\nclass _LoadCompiledCompatibility(_HackedGetData, SourcelessFileLoader):\n\n    \"\"\"Compatibility support for implementing load_compiled().\"\"\"\n\n\ndef load_compiled(name, pathname, file=None):\n    \"\"\"**DEPRECATED**\"\"\"\n    loader = _LoadCompiledCompatibility(name, pathname, file)\n    spec = util.spec_from_file_location(name, pathname, loader=loader)\n    if name in sys.modules:\n        module = _exec(spec, sys.modules[name])\n    else:\n        module = _load(spec)\n    # To allow reloading to potentially work, use a non-hacked loader which\n    # won't rely on a now-closed file object.\n    module.__loader__ = SourcelessFileLoader(name, pathname)\n    module.__spec__.loader = module.__loader__\n    return module\n\n\ndef load_package(name, path):\n    \"\"\"**DEPRECATED**\"\"\"\n    if os.path.isdir(path):\n        extensions = (machinery.SOURCE_SUFFIXES[:] +\n                      machinery.BYTECODE_SUFFIXES[:])\n        for extension in extensions:\n            init_path = os.path.join(path, '__init__' + extension)\n            if os.path.exists(init_path):\n                path = init_path\n                break\n        else:\n            raise ValueError('{!r} is not a package'.format(path))\n    spec = util.spec_from_file_location(name, path,\n                                        submodule_search_locations=[])\n    if name in sys.modules:\n        return _exec(spec, sys.modules[name])\n    else:\n        return _load(spec)\n\n\ndef load_module(name, file, filename, details):\n    \"\"\"**DEPRECATED**\n\n    Load a module, given information returned by find_module().\n\n    The module name must include the full package name, if any.\n\n    \"\"\"\n    suffix, mode, type_ = details\n    if mode and (not mode.startswith(('r', 'U')) or '+' in mode):\n        raise ValueError('invalid file open mode {!r}'.format(mode))\n    elif file is None and type_ in {PY_SOURCE, PY_COMPILED}:\n        msg = 'file object required for import (type code {})'.format(type_)\n        raise ValueError(msg)\n    elif type_ == PY_SOURCE:\n        return load_source(name, filename, file)\n    elif type_ == PY_COMPILED:\n        return load_compiled(name, filename, file)\n    elif type_ == C_EXTENSION and load_dynamic is not None:\n        if file is None:\n            with open(filename, 'rb') as opened_file:\n                return load_dynamic(name, filename, opened_file)\n        else:\n            return load_dynamic(name, filename, file)\n    elif type_ == PKG_DIRECTORY:\n        return load_package(name, filename)\n    elif type_ == C_BUILTIN:\n        return init_builtin(name)\n    elif type_ == PY_FROZEN:\n        return init_frozen(name)\n    else:\n        msg =  \"Don't know how to import {} (type code {})\".format(name, type_)\n        raise ImportError(msg, name=name)\n\n\ndef find_module(name, path=None):\n    \"\"\"**DEPRECATED**\n\n    Search for a module.\n\n    If path is omitted or None, search for a built-in, frozen or special\n    module and continue search in sys.path. The module name cannot\n    contain '.'; to search for a submodule of a package, pass the\n    submodule name and the package's __path__.\n\n    \"\"\"\n    if not isinstance(name, str):\n        raise TypeError(\"'name' must be a str, not {}\".format(type(name)))\n    elif not isinstance(path, (type(None), list)):\n        # Backwards-compatibility\n        raise RuntimeError(\"'path' must be None or a list, \"\n                           \"not {}\".format(type(path)))\n\n    if path is None:\n        if is_builtin(name):\n            return None, None, ('', '', C_BUILTIN)\n        elif is_frozen(name):\n            return None, None, ('', '', PY_FROZEN)\n        else:\n            path = sys.path\n\n    for entry in path:\n        package_directory = os.path.join(entry, name)\n        for suffix in ['.py', machinery.BYTECODE_SUFFIXES[0]]:\n            package_file_name = '__init__' + suffix\n            file_path = os.path.join(package_directory, package_file_name)\n            if os.path.isfile(file_path):\n                return None, package_directory, ('', '', PKG_DIRECTORY)\n        for suffix, mode, type_ in get_suffixes():\n            file_name = name + suffix\n            file_path = os.path.join(entry, file_name)\n            if os.path.isfile(file_path):\n                break\n        else:\n            continue\n        break  # Break out of outer loop when breaking out of inner loop.\n    else:\n        raise ImportError(_ERR_MSG.format(name), name=name)\n\n    encoding = None\n    if 'b' not in mode:\n        with open(file_path, 'rb') as file:\n            encoding = tokenize.detect_encoding(file.readline)[0]\n    file = open(file_path, mode, encoding=encoding)\n    return file, file_path, (suffix, mode, type_)\n\n\ndef reload(module):\n    \"\"\"**DEPRECATED**\n\n    Reload the module and return it.\n\n    The module must have been successfully imported before.\n\n    \"\"\"\n    return importlib.reload(module)\n\n\ndef init_builtin(name):\n    \"\"\"**DEPRECATED**\n\n    Load and return a built-in module by name, or None is such module doesn't\n    exist\n    \"\"\"\n    try:\n        return _builtin_from_name(name)\n    except ImportError:\n        return None\n\n\nif create_dynamic:\n    def load_dynamic(name, path, file=None):\n        \"\"\"**DEPRECATED**\n\n        Load an extension module.\n        \"\"\"\n        import importlib.machinery\n        loader = importlib.machinery.ExtensionFileLoader(name, path)\n\n        # Issue #24748: Skip the sys.modules check in _load_module_shim;\n        # always load new extension\n        spec = importlib.machinery.ModuleSpec(\n            name=name, loader=loader, origin=path)\n        return _load(spec)\n\nelse:\n    load_dynamic = None\n"
  },
  {
    "path": "rd/usr/lib/python3.8/importlib/__init__.py",
    "content": "\"\"\"A pure Python implementation of import.\"\"\"\n__all__ = ['__import__', 'import_module', 'invalidate_caches', 'reload']\n\n# Bootstrap help #####################################################\n\n# Until bootstrapping is complete, DO NOT import any modules that attempt\n# to import importlib._bootstrap (directly or indirectly). Since this\n# partially initialised package would be present in sys.modules, those\n# modules would get an uninitialised copy of the source version, instead\n# of a fully initialised version (either the frozen one or the one\n# initialised below if the frozen one is not available).\nimport _imp  # Just the builtin component, NOT the full Python module\nimport sys\n\ntry:\n    import _frozen_importlib as _bootstrap\nexcept ImportError:\n    from . import _bootstrap\n    _bootstrap._setup(sys, _imp)\nelse:\n    # importlib._bootstrap is the built-in import, ensure we don't create\n    # a second copy of the module.\n    _bootstrap.__name__ = 'importlib._bootstrap'\n    _bootstrap.__package__ = 'importlib'\n    try:\n        _bootstrap.__file__ = __file__.replace('__init__.py', '_bootstrap.py')\n    except NameError:\n        # __file__ is not guaranteed to be defined, e.g. if this code gets\n        # frozen by a tool like cx_Freeze.\n        pass\n    sys.modules['importlib._bootstrap'] = _bootstrap\n\ntry:\n    import _frozen_importlib_external as _bootstrap_external\nexcept ImportError:\n    from . import _bootstrap_external\n    _bootstrap_external._setup(_bootstrap)\n    _bootstrap._bootstrap_external = _bootstrap_external\nelse:\n    _bootstrap_external.__name__ = 'importlib._bootstrap_external'\n    _bootstrap_external.__package__ = 'importlib'\n    try:\n        _bootstrap_external.__file__ = __file__.replace('__init__.py', '_bootstrap_external.py')\n    except NameError:\n        # __file__ is not guaranteed to be defined, e.g. if this code gets\n        # frozen by a tool like cx_Freeze.\n        pass\n    sys.modules['importlib._bootstrap_external'] = _bootstrap_external\n\n# To simplify imports in test code\n_pack_uint32 = _bootstrap_external._pack_uint32\n_unpack_uint32 = _bootstrap_external._unpack_uint32\n\n# Fully bootstrapped at this point, import whatever you like, circular\n# dependencies and startup overhead minimisation permitting :)\n\nimport types\nimport warnings\n\n\n# Public API #########################################################\n\nfrom ._bootstrap import __import__\n\n\ndef invalidate_caches():\n    \"\"\"Call the invalidate_caches() method on all meta path finders stored in\n    sys.meta_path (where implemented).\"\"\"\n    for finder in sys.meta_path:\n        if hasattr(finder, 'invalidate_caches'):\n            finder.invalidate_caches()\n\n\ndef find_loader(name, path=None):\n    \"\"\"Return the loader for the specified module.\n\n    This is a backward-compatible wrapper around find_spec().\n\n    This function is deprecated in favor of importlib.util.find_spec().\n\n    \"\"\"\n    warnings.warn('Deprecated since Python 3.4. '\n                  'Use importlib.util.find_spec() instead.',\n                  DeprecationWarning, stacklevel=2)\n    try:\n        loader = sys.modules[name].__loader__\n        if loader is None:\n            raise ValueError('{}.__loader__ is None'.format(name))\n        else:\n            return loader\n    except KeyError:\n        pass\n    except AttributeError:\n        raise ValueError('{}.__loader__ is not set'.format(name)) from None\n\n    spec = _bootstrap._find_spec(name, path)\n    # We won't worry about malformed specs (missing attributes).\n    if spec is None:\n        return None\n    if spec.loader is None:\n        if spec.submodule_search_locations is None:\n            raise ImportError('spec for {} missing loader'.format(name),\n                              name=name)\n        raise ImportError('namespace packages do not have loaders',\n                          name=name)\n    return spec.loader\n\n\ndef import_module(name, package=None):\n    \"\"\"Import a module.\n\n    The 'package' argument is required when performing a relative import. It\n    specifies the package to use as the anchor point from which to resolve the\n    relative import to an absolute import.\n\n    \"\"\"\n    level = 0\n    if name.startswith('.'):\n        if not package:\n            msg = (\"the 'package' argument is required to perform a relative \"\n                   \"import for {!r}\")\n            raise TypeError(msg.format(name))\n        for character in name:\n            if character != '.':\n                break\n            level += 1\n    return _bootstrap._gcd_import(name[level:], package, level)\n\n\n_RELOADING = {}\n\n\ndef reload(module):\n    \"\"\"Reload the module and return it.\n\n    The module must have been successfully imported before.\n\n    \"\"\"\n    if not module or not isinstance(module, types.ModuleType):\n        raise TypeError(\"reload() argument must be a module\")\n    try:\n        name = module.__spec__.name\n    except AttributeError:\n        name = module.__name__\n\n    if sys.modules.get(name) is not module:\n        msg = \"module {} not in sys.modules\"\n        raise ImportError(msg.format(name), name=name)\n    if name in _RELOADING:\n        return _RELOADING[name]\n    _RELOADING[name] = module\n    try:\n        parent_name = name.rpartition('.')[0]\n        if parent_name:\n            try:\n                parent = sys.modules[parent_name]\n            except KeyError:\n                msg = \"parent {!r} not in sys.modules\"\n                raise ImportError(msg.format(parent_name),\n                                  name=parent_name) from None\n            else:\n                pkgpath = parent.__path__\n        else:\n            pkgpath = None\n        target = module\n        spec = module.__spec__ = _bootstrap._find_spec(name, pkgpath, target)\n        if spec is None:\n            raise ModuleNotFoundError(f\"spec not found for the module {name!r}\", name=name)\n        _bootstrap._exec(spec, module)\n        # The module may have replaced itself in sys.modules!\n        return sys.modules[name]\n    finally:\n        try:\n            del _RELOADING[name]\n        except KeyError:\n            pass\n"
  },
  {
    "path": "rd/usr/lib/python3.8/importlib/_bootstrap.py",
    "content": "\"\"\"Core implementation of import.\n\nThis module is NOT meant to be directly imported! It has been designed such\nthat it can be bootstrapped into Python as the implementation of import. As\nsuch it requires the injection of specific modules and attributes in order to\nwork. One should use importlib as the public-facing version of this module.\n\n\"\"\"\n#\n# IMPORTANT: Whenever making changes to this module, be sure to run a top-level\n# `make regen-importlib` followed by `make` in order to get the frozen version\n# of the module updated. Not doing so will result in the Makefile to fail for\n# all others who don't have a ./python around to freeze the module\n# in the early stages of compilation.\n#\n\n# See importlib._setup() for what is injected into the global namespace.\n\n# When editing this code be aware that code executed at import time CANNOT\n# reference any injected objects! This includes not only global code but also\n# anything specified at the class level.\n\n# Bootstrap-related code ######################################################\n\n_bootstrap_external = None\n\ndef _wrap(new, old):\n    \"\"\"Simple substitute for functools.update_wrapper.\"\"\"\n    for replace in ['__module__', '__name__', '__qualname__', '__doc__']:\n        if hasattr(old, replace):\n            setattr(new, replace, getattr(old, replace))\n    new.__dict__.update(old.__dict__)\n\n\ndef _new_module(name):\n    return type(sys)(name)\n\n\n# Module-level locking ########################################################\n\n# A dict mapping module names to weakrefs of _ModuleLock instances\n# Dictionary protected by the global import lock\n_module_locks = {}\n# A dict mapping thread ids to _ModuleLock instances\n_blocking_on = {}\n\n\nclass _DeadlockError(RuntimeError):\n    pass\n\n\nclass _ModuleLock:\n    \"\"\"A recursive lock implementation which is able to detect deadlocks\n    (e.g. thread 1 trying to take locks A then B, and thread 2 trying to\n    take locks B then A).\n    \"\"\"\n\n    def __init__(self, name):\n        self.lock = _thread.allocate_lock()\n        self.wakeup = _thread.allocate_lock()\n        self.name = name\n        self.owner = None\n        self.count = 0\n        self.waiters = 0\n\n    def has_deadlock(self):\n        # Deadlock avoidance for concurrent circular imports.\n        me = _thread.get_ident()\n        tid = self.owner\n        while True:\n            lock = _blocking_on.get(tid)\n            if lock is None:\n                return False\n            tid = lock.owner\n            if tid == me:\n                return True\n\n    def acquire(self):\n        \"\"\"\n        Acquire the module lock.  If a potential deadlock is detected,\n        a _DeadlockError is raised.\n        Otherwise, the lock is always acquired and True is returned.\n        \"\"\"\n        tid = _thread.get_ident()\n        _blocking_on[tid] = self\n        try:\n            while True:\n                with self.lock:\n                    if self.count == 0 or self.owner == tid:\n                        self.owner = tid\n                        self.count += 1\n                        return True\n                    if self.has_deadlock():\n                        raise _DeadlockError('deadlock detected by %r' % self)\n                    if self.wakeup.acquire(False):\n                        self.waiters += 1\n                # Wait for a release() call\n                self.wakeup.acquire()\n                self.wakeup.release()\n        finally:\n            del _blocking_on[tid]\n\n    def release(self):\n        tid = _thread.get_ident()\n        with self.lock:\n            if self.owner != tid:\n                raise RuntimeError('cannot release un-acquired lock')\n            assert self.count > 0\n            self.count -= 1\n            if self.count == 0:\n                self.owner = None\n                if self.waiters:\n                    self.waiters -= 1\n                    self.wakeup.release()\n\n    def __repr__(self):\n        return '_ModuleLock({!r}) at {}'.format(self.name, id(self))\n\n\nclass _DummyModuleLock:\n    \"\"\"A simple _ModuleLock equivalent for Python builds without\n    multi-threading support.\"\"\"\n\n    def __init__(self, name):\n        self.name = name\n        self.count = 0\n\n    def acquire(self):\n        self.count += 1\n        return True\n\n    def release(self):\n        if self.count == 0:\n            raise RuntimeError('cannot release un-acquired lock')\n        self.count -= 1\n\n    def __repr__(self):\n        return '_DummyModuleLock({!r}) at {}'.format(self.name, id(self))\n\n\nclass _ModuleLockManager:\n\n    def __init__(self, name):\n        self._name = name\n        self._lock = None\n\n    def __enter__(self):\n        self._lock = _get_module_lock(self._name)\n        self._lock.acquire()\n\n    def __exit__(self, *args, **kwargs):\n        self._lock.release()\n\n\n# The following two functions are for consumption by Python/import.c.\n\ndef _get_module_lock(name):\n    \"\"\"Get or create the module lock for a given module name.\n\n    Acquire/release internally the global import lock to protect\n    _module_locks.\"\"\"\n\n    _imp.acquire_lock()\n    try:\n        try:\n            lock = _module_locks[name]()\n        except KeyError:\n            lock = None\n\n        if lock is None:\n            if _thread is None:\n                lock = _DummyModuleLock(name)\n            else:\n                lock = _ModuleLock(name)\n\n            def cb(ref, name=name):\n                _imp.acquire_lock()\n                try:\n                    # bpo-31070: Check if another thread created a new lock\n                    # after the previous lock was destroyed\n                    # but before the weakref callback was called.\n                    if _module_locks.get(name) is ref:\n                        del _module_locks[name]\n                finally:\n                    _imp.release_lock()\n\n            _module_locks[name] = _weakref.ref(lock, cb)\n    finally:\n        _imp.release_lock()\n\n    return lock\n\n\ndef _lock_unlock_module(name):\n    \"\"\"Acquires then releases the module lock for a given module name.\n\n    This is used to ensure a module is completely initialized, in the\n    event it is being imported by another thread.\n    \"\"\"\n    lock = _get_module_lock(name)\n    try:\n        lock.acquire()\n    except _DeadlockError:\n        # Concurrent circular import, we'll accept a partially initialized\n        # module object.\n        pass\n    else:\n        lock.release()\n\n# Frame stripping magic ###############################################\ndef _call_with_frames_removed(f, *args, **kwds):\n    \"\"\"remove_importlib_frames in import.c will always remove sequences\n    of importlib frames that end with a call to this function\n\n    Use it instead of a normal call in places where including the importlib\n    frames introduces unwanted noise into the traceback (e.g. when executing\n    module code)\n    \"\"\"\n    return f(*args, **kwds)\n\n\ndef _verbose_message(message, *args, verbosity=1):\n    \"\"\"Print the message to stderr if -v/PYTHONVERBOSE is turned on.\"\"\"\n    if sys.flags.verbose >= verbosity:\n        if not message.startswith(('#', 'import ')):\n            message = '# ' + message\n        print(message.format(*args), file=sys.stderr)\n\n\ndef _requires_builtin(fxn):\n    \"\"\"Decorator to verify the named module is built-in.\"\"\"\n    def _requires_builtin_wrapper(self, fullname):\n        if fullname not in sys.builtin_module_names:\n            raise ImportError('{!r} is not a built-in module'.format(fullname),\n                              name=fullname)\n        return fxn(self, fullname)\n    _wrap(_requires_builtin_wrapper, fxn)\n    return _requires_builtin_wrapper\n\n\ndef _requires_frozen(fxn):\n    \"\"\"Decorator to verify the named module is frozen.\"\"\"\n    def _requires_frozen_wrapper(self, fullname):\n        if not _imp.is_frozen(fullname):\n            raise ImportError('{!r} is not a frozen module'.format(fullname),\n                              name=fullname)\n        return fxn(self, fullname)\n    _wrap(_requires_frozen_wrapper, fxn)\n    return _requires_frozen_wrapper\n\n\n# Typically used by loader classes as a method replacement.\ndef _load_module_shim(self, fullname):\n    \"\"\"Load the specified module into sys.modules and return it.\n\n    This method is deprecated.  Use loader.exec_module instead.\n\n    \"\"\"\n    spec = spec_from_loader(fullname, self)\n    if fullname in sys.modules:\n        module = sys.modules[fullname]\n        _exec(spec, module)\n        return sys.modules[fullname]\n    else:\n        return _load(spec)\n\n# Module specifications #######################################################\n\ndef _module_repr(module):\n    # The implementation of ModuleType.__repr__().\n    loader = getattr(module, '__loader__', None)\n    if hasattr(loader, 'module_repr'):\n        # As soon as BuiltinImporter, FrozenImporter, and NamespaceLoader\n        # drop their implementations for module_repr. we can add a\n        # deprecation warning here.\n        try:\n            return loader.module_repr(module)\n        except Exception:\n            pass\n    try:\n        spec = module.__spec__\n    except AttributeError:\n        pass\n    else:\n        if spec is not None:\n            return _module_repr_from_spec(spec)\n\n    # We could use module.__class__.__name__ instead of 'module' in the\n    # various repr permutations.\n    try:\n        name = module.__name__\n    except AttributeError:\n        name = '?'\n    try:\n        filename = module.__file__\n    except AttributeError:\n        if loader is None:\n            return '<module {!r}>'.format(name)\n        else:\n            return '<module {!r} ({!r})>'.format(name, loader)\n    else:\n        return '<module {!r} from {!r}>'.format(name, filename)\n\n\nclass ModuleSpec:\n    \"\"\"The specification for a module, used for loading.\n\n    A module's spec is the source for information about the module.  For\n    data associated with the module, including source, use the spec's\n    loader.\n\n    `name` is the absolute name of the module.  `loader` is the loader\n    to use when loading the module.  `parent` is the name of the\n    package the module is in.  The parent is derived from the name.\n\n    `is_package` determines if the module is considered a package or\n    not.  On modules this is reflected by the `__path__` attribute.\n\n    `origin` is the specific location used by the loader from which to\n    load the module, if that information is available.  When filename is\n    set, origin will match.\n\n    `has_location` indicates that a spec's \"origin\" reflects a location.\n    When this is True, `__file__` attribute of the module is set.\n\n    `cached` is the location of the cached bytecode file, if any.  It\n    corresponds to the `__cached__` attribute.\n\n    `submodule_search_locations` is the sequence of path entries to\n    search when importing submodules.  If set, is_package should be\n    True--and False otherwise.\n\n    Packages are simply modules that (may) have submodules.  If a spec\n    has a non-None value in `submodule_search_locations`, the import\n    system will consider modules loaded from the spec as packages.\n\n    Only finders (see importlib.abc.MetaPathFinder and\n    importlib.abc.PathEntryFinder) should modify ModuleSpec instances.\n\n    \"\"\"\n\n    def __init__(self, name, loader, *, origin=None, loader_state=None,\n                 is_package=None):\n        self.name = name\n        self.loader = loader\n        self.origin = origin\n        self.loader_state = loader_state\n        self.submodule_search_locations = [] if is_package else None\n\n        # file-location attributes\n        self._set_fileattr = False\n        self._cached = None\n\n    def __repr__(self):\n        args = ['name={!r}'.format(self.name),\n                'loader={!r}'.format(self.loader)]\n        if self.origin is not None:\n            args.append('origin={!r}'.format(self.origin))\n        if self.submodule_search_locations is not None:\n            args.append('submodule_search_locations={}'\n                        .format(self.submodule_search_locations))\n        return '{}({})'.format(self.__class__.__name__, ', '.join(args))\n\n    def __eq__(self, other):\n        smsl = self.submodule_search_locations\n        try:\n            return (self.name == other.name and\n                    self.loader == other.loader and\n                    self.origin == other.origin and\n                    smsl == other.submodule_search_locations and\n                    self.cached == other.cached and\n                    self.has_location == other.has_location)\n        except AttributeError:\n            return False\n\n    @property\n    def cached(self):\n        if self._cached is None:\n            if self.origin is not None and self._set_fileattr:\n                if _bootstrap_external is None:\n                    raise NotImplementedError\n                self._cached = _bootstrap_external._get_cached(self.origin)\n        return self._cached\n\n    @cached.setter\n    def cached(self, cached):\n        self._cached = cached\n\n    @property\n    def parent(self):\n        \"\"\"The name of the module's parent.\"\"\"\n        if self.submodule_search_locations is None:\n            return self.name.rpartition('.')[0]\n        else:\n            return self.name\n\n    @property\n    def has_location(self):\n        return self._set_fileattr\n\n    @has_location.setter\n    def has_location(self, value):\n        self._set_fileattr = bool(value)\n\n\ndef spec_from_loader(name, loader, *, origin=None, is_package=None):\n    \"\"\"Return a module spec based on various loader methods.\"\"\"\n    if hasattr(loader, 'get_filename'):\n        if _bootstrap_external is None:\n            raise NotImplementedError\n        spec_from_file_location = _bootstrap_external.spec_from_file_location\n\n        if is_package is None:\n            return spec_from_file_location(name, loader=loader)\n        search = [] if is_package else None\n        return spec_from_file_location(name, loader=loader,\n                                       submodule_search_locations=search)\n\n    if is_package is None:\n        if hasattr(loader, 'is_package'):\n            try:\n                is_package = loader.is_package(name)\n            except ImportError:\n                is_package = None  # aka, undefined\n        else:\n            # the default\n            is_package = False\n\n    return ModuleSpec(name, loader, origin=origin, is_package=is_package)\n\n\ndef _spec_from_module(module, loader=None, origin=None):\n    # This function is meant for use in _setup().\n    try:\n        spec = module.__spec__\n    except AttributeError:\n        pass\n    else:\n        if spec is not None:\n            return spec\n\n    name = module.__name__\n    if loader is None:\n        try:\n            loader = module.__loader__\n        except AttributeError:\n            # loader will stay None.\n            pass\n    try:\n        location = module.__file__\n    except AttributeError:\n        location = None\n    if origin is None:\n        if location is None:\n            try:\n                origin = loader._ORIGIN\n            except AttributeError:\n                origin = None\n        else:\n            origin = location\n    try:\n        cached = module.__cached__\n    except AttributeError:\n        cached = None\n    try:\n        submodule_search_locations = list(module.__path__)\n    except AttributeError:\n        submodule_search_locations = None\n\n    spec = ModuleSpec(name, loader, origin=origin)\n    spec._set_fileattr = False if location is None else True\n    spec.cached = cached\n    spec.submodule_search_locations = submodule_search_locations\n    return spec\n\n\ndef _init_module_attrs(spec, module, *, override=False):\n    # The passed-in module may be not support attribute assignment,\n    # in which case we simply don't set the attributes.\n    # __name__\n    if (override or getattr(module, '__name__', None) is None):\n        try:\n            module.__name__ = spec.name\n        except AttributeError:\n            pass\n    # __loader__\n    if override or getattr(module, '__loader__', None) is None:\n        loader = spec.loader\n        if loader is None:\n            # A backward compatibility hack.\n            if spec.submodule_search_locations is not None:\n                if _bootstrap_external is None:\n                    raise NotImplementedError\n                _NamespaceLoader = _bootstrap_external._NamespaceLoader\n\n                loader = _NamespaceLoader.__new__(_NamespaceLoader)\n                loader._path = spec.submodule_search_locations\n                spec.loader = loader\n                # While the docs say that module.__file__ is not set for\n                # built-in modules, and the code below will avoid setting it if\n                # spec.has_location is false, this is incorrect for namespace\n                # packages.  Namespace packages have no location, but their\n                # __spec__.origin is None, and thus their module.__file__\n                # should also be None for consistency.  While a bit of a hack,\n                # this is the best place to ensure this consistency.\n                #\n                # See # https://docs.python.org/3/library/importlib.html#importlib.abc.Loader.load_module\n                # and bpo-32305\n                module.__file__ = None\n        try:\n            module.__loader__ = loader\n        except AttributeError:\n            pass\n    # __package__\n    if override or getattr(module, '__package__', None) is None:\n        try:\n            module.__package__ = spec.parent\n        except AttributeError:\n            pass\n    # __spec__\n    try:\n        module.__spec__ = spec\n    except AttributeError:\n        pass\n    # __path__\n    if override or getattr(module, '__path__', None) is None:\n        if spec.submodule_search_locations is not None:\n            try:\n                module.__path__ = spec.submodule_search_locations\n            except AttributeError:\n                pass\n    # __file__/__cached__\n    if spec.has_location:\n        if override or getattr(module, '__file__', None) is None:\n            try:\n                module.__file__ = spec.origin\n            except AttributeError:\n                pass\n\n        if override or getattr(module, '__cached__', None) is None:\n            if spec.cached is not None:\n                try:\n                    module.__cached__ = spec.cached\n                except AttributeError:\n                    pass\n    return module\n\n\ndef module_from_spec(spec):\n    \"\"\"Create a module based on the provided spec.\"\"\"\n    # Typically loaders will not implement create_module().\n    module = None\n    if hasattr(spec.loader, 'create_module'):\n        # If create_module() returns `None` then it means default\n        # module creation should be used.\n        module = spec.loader.create_module(spec)\n    elif hasattr(spec.loader, 'exec_module'):\n        raise ImportError('loaders that define exec_module() '\n                          'must also define create_module()')\n    if module is None:\n        module = _new_module(spec.name)\n    _init_module_attrs(spec, module)\n    return module\n\n\ndef _module_repr_from_spec(spec):\n    \"\"\"Return the repr to use for the module.\"\"\"\n    # We mostly replicate _module_repr() using the spec attributes.\n    name = '?' if spec.name is None else spec.name\n    if spec.origin is None:\n        if spec.loader is None:\n            return '<module {!r}>'.format(name)\n        else:\n            return '<module {!r} ({!r})>'.format(name, spec.loader)\n    else:\n        if spec.has_location:\n            return '<module {!r} from {!r}>'.format(name, spec.origin)\n        else:\n            return '<module {!r} ({})>'.format(spec.name, spec.origin)\n\n\n# Used by importlib.reload() and _load_module_shim().\ndef _exec(spec, module):\n    \"\"\"Execute the spec's specified module in an existing module's namespace.\"\"\"\n    name = spec.name\n    with _ModuleLockManager(name):\n        if sys.modules.get(name) is not module:\n            msg = 'module {!r} not in sys.modules'.format(name)\n            raise ImportError(msg, name=name)\n        try:\n            if spec.loader is None:\n                if spec.submodule_search_locations is None:\n                    raise ImportError('missing loader', name=spec.name)\n                # Namespace package.\n                _init_module_attrs(spec, module, override=True)\n            else:\n                _init_module_attrs(spec, module, override=True)\n                if not hasattr(spec.loader, 'exec_module'):\n                    # (issue19713) Once BuiltinImporter and ExtensionFileLoader\n                    # have exec_module() implemented, we can add a deprecation\n                    # warning here.\n                    spec.loader.load_module(name)\n                else:\n                    spec.loader.exec_module(module)\n        finally:\n            # Update the order of insertion into sys.modules for module\n            # clean-up at shutdown.\n            module = sys.modules.pop(spec.name)\n            sys.modules[spec.name] = module\n    return module\n\n\ndef _load_backward_compatible(spec):\n    # (issue19713) Once BuiltinImporter and ExtensionFileLoader\n    # have exec_module() implemented, we can add a deprecation\n    # warning here.\n    try:\n        spec.loader.load_module(spec.name)\n    except:\n        if spec.name in sys.modules:\n            module = sys.modules.pop(spec.name)\n            sys.modules[spec.name] = module\n        raise\n    # The module must be in sys.modules at this point!\n    # Move it to the end of sys.modules.\n    module = sys.modules.pop(spec.name)\n    sys.modules[spec.name] = module\n    if getattr(module, '__loader__', None) is None:\n        try:\n            module.__loader__ = spec.loader\n        except AttributeError:\n            pass\n    if getattr(module, '__package__', None) is None:\n        try:\n            # Since module.__path__ may not line up with\n            # spec.submodule_search_paths, we can't necessarily rely\n            # on spec.parent here.\n            module.__package__ = module.__name__\n            if not hasattr(module, '__path__'):\n                module.__package__ = spec.name.rpartition('.')[0]\n        except AttributeError:\n            pass\n    if getattr(module, '__spec__', None) is None:\n        try:\n            module.__spec__ = spec\n        except AttributeError:\n            pass\n    return module\n\ndef _load_unlocked(spec):\n    # A helper for direct use by the import system.\n    if spec.loader is not None:\n        # Not a namespace package.\n        if not hasattr(spec.loader, 'exec_module'):\n            return _load_backward_compatible(spec)\n\n    module = module_from_spec(spec)\n\n    # This must be done before putting the module in sys.modules\n    # (otherwise an optimization shortcut in import.c becomes\n    # wrong).\n    spec._initializing = True\n    try:\n        sys.modules[spec.name] = module\n        try:\n            if spec.loader is None:\n                if spec.submodule_search_locations is None:\n                    raise ImportError('missing loader', name=spec.name)\n                # A namespace package so do nothing.\n            else:\n                spec.loader.exec_module(module)\n        except:\n            try:\n                del sys.modules[spec.name]\n            except KeyError:\n                pass\n            raise\n        # Move the module to the end of sys.modules.\n        # We don't ensure that the import-related module attributes get\n        # set in the sys.modules replacement case.  Such modules are on\n        # their own.\n        module = sys.modules.pop(spec.name)\n        sys.modules[spec.name] = module\n        _verbose_message('import {!r} # {!r}', spec.name, spec.loader)\n    finally:\n        spec._initializing = False\n\n    return module\n\n# A method used during testing of _load_unlocked() and by\n# _load_module_shim().\ndef _load(spec):\n    \"\"\"Return a new module object, loaded by the spec's loader.\n\n    The module is not added to its parent.\n\n    If a module is already in sys.modules, that existing module gets\n    clobbered.\n\n    \"\"\"\n    with _ModuleLockManager(spec.name):\n        return _load_unlocked(spec)\n\n\n# Loaders #####################################################################\n\nclass BuiltinImporter:\n\n    \"\"\"Meta path import for built-in modules.\n\n    All methods are either class or static methods to avoid the need to\n    instantiate the class.\n\n    \"\"\"\n\n    @staticmethod\n    def module_repr(module):\n        \"\"\"Return repr for the module.\n\n        The method is deprecated.  The import machinery does the job itself.\n\n        \"\"\"\n        return '<module {!r} (built-in)>'.format(module.__name__)\n\n    @classmethod\n    def find_spec(cls, fullname, path=None, target=None):\n        if path is not None:\n            return None\n        if _imp.is_builtin(fullname):\n            return spec_from_loader(fullname, cls, origin='built-in')\n        else:\n            return None\n\n    @classmethod\n    def find_module(cls, fullname, path=None):\n        \"\"\"Find the built-in module.\n\n        If 'path' is ever specified then the search is considered a failure.\n\n        This method is deprecated.  Use find_spec() instead.\n\n        \"\"\"\n        spec = cls.find_spec(fullname, path)\n        return spec.loader if spec is not None else None\n\n    @classmethod\n    def create_module(self, spec):\n        \"\"\"Create a built-in module\"\"\"\n        if spec.name not in sys.builtin_module_names:\n            raise ImportError('{!r} is not a built-in module'.format(spec.name),\n                              name=spec.name)\n        return _call_with_frames_removed(_imp.create_builtin, spec)\n\n    @classmethod\n    def exec_module(self, module):\n        \"\"\"Exec a built-in module\"\"\"\n        _call_with_frames_removed(_imp.exec_builtin, module)\n\n    @classmethod\n    @_requires_builtin\n    def get_code(cls, fullname):\n        \"\"\"Return None as built-in modules do not have code objects.\"\"\"\n        return None\n\n    @classmethod\n    @_requires_builtin\n    def get_source(cls, fullname):\n        \"\"\"Return None as built-in modules do not have source code.\"\"\"\n        return None\n\n    @classmethod\n    @_requires_builtin\n    def is_package(cls, fullname):\n        \"\"\"Return False as built-in modules are never packages.\"\"\"\n        return False\n\n    load_module = classmethod(_load_module_shim)\n\n\nclass FrozenImporter:\n\n    \"\"\"Meta path import for frozen modules.\n\n    All methods are either class or static methods to avoid the need to\n    instantiate the class.\n\n    \"\"\"\n\n    _ORIGIN = \"frozen\"\n\n    @staticmethod\n    def module_repr(m):\n        \"\"\"Return repr for the module.\n\n        The method is deprecated.  The import machinery does the job itself.\n\n        \"\"\"\n        return '<module {!r} ({})>'.format(m.__name__, FrozenImporter._ORIGIN)\n\n    @classmethod\n    def find_spec(cls, fullname, path=None, target=None):\n        if _imp.is_frozen(fullname):\n            return spec_from_loader(fullname, cls, origin=cls._ORIGIN)\n        else:\n            return None\n\n    @classmethod\n    def find_module(cls, fullname, path=None):\n        \"\"\"Find a frozen module.\n\n        This method is deprecated.  Use find_spec() instead.\n\n        \"\"\"\n        return cls if _imp.is_frozen(fullname) else None\n\n    @classmethod\n    def create_module(cls, spec):\n        \"\"\"Use default semantics for module creation.\"\"\"\n\n    @staticmethod\n    def exec_module(module):\n        name = module.__spec__.name\n        if not _imp.is_frozen(name):\n            raise ImportError('{!r} is not a frozen module'.format(name),\n                              name=name)\n        code = _call_with_frames_removed(_imp.get_frozen_object, name)\n        exec(code, module.__dict__)\n\n    @classmethod\n    def load_module(cls, fullname):\n        \"\"\"Load a frozen module.\n\n        This method is deprecated.  Use exec_module() instead.\n\n        \"\"\"\n        return _load_module_shim(cls, fullname)\n\n    @classmethod\n    @_requires_frozen\n    def get_code(cls, fullname):\n        \"\"\"Return the code object for the frozen module.\"\"\"\n        return _imp.get_frozen_object(fullname)\n\n    @classmethod\n    @_requires_frozen\n    def get_source(cls, fullname):\n        \"\"\"Return None as frozen modules do not have source code.\"\"\"\n        return None\n\n    @classmethod\n    @_requires_frozen\n    def is_package(cls, fullname):\n        \"\"\"Return True if the frozen module is a package.\"\"\"\n        return _imp.is_frozen_package(fullname)\n\n\n# Import itself ###############################################################\n\nclass _ImportLockContext:\n\n    \"\"\"Context manager for the import lock.\"\"\"\n\n    def __enter__(self):\n        \"\"\"Acquire the import lock.\"\"\"\n        _imp.acquire_lock()\n\n    def __exit__(self, exc_type, exc_value, exc_traceback):\n        \"\"\"Release the import lock regardless of any raised exceptions.\"\"\"\n        _imp.release_lock()\n\n\ndef _resolve_name(name, package, level):\n    \"\"\"Resolve a relative module name to an absolute one.\"\"\"\n    bits = package.rsplit('.', level - 1)\n    if len(bits) < level:\n        raise ValueError('attempted relative import beyond top-level package')\n    base = bits[0]\n    return '{}.{}'.format(base, name) if name else base\n\n\ndef _find_spec_legacy(finder, name, path):\n    # This would be a good place for a DeprecationWarning if\n    # we ended up going that route.\n    loader = finder.find_module(name, path)\n    if loader is None:\n        return None\n    return spec_from_loader(name, loader)\n\n\ndef _find_spec(name, path, target=None):\n    \"\"\"Find a module's spec.\"\"\"\n    meta_path = sys.meta_path\n    if meta_path is None:\n        # PyImport_Cleanup() is running or has been called.\n        raise ImportError(\"sys.meta_path is None, Python is likely \"\n                          \"shutting down\")\n\n    if not meta_path:\n        _warnings.warn('sys.meta_path is empty', ImportWarning)\n\n    # We check sys.modules here for the reload case.  While a passed-in\n    # target will usually indicate a reload there is no guarantee, whereas\n    # sys.modules provides one.\n    is_reload = name in sys.modules\n    for finder in meta_path:\n        with _ImportLockContext():\n            try:\n                find_spec = finder.find_spec\n            except AttributeError:\n                spec = _find_spec_legacy(finder, name, path)\n                if spec is None:\n                    continue\n            else:\n                spec = find_spec(name, path, target)\n        if spec is not None:\n            # The parent import may have already imported this module.\n            if not is_reload and name in sys.modules:\n                module = sys.modules[name]\n                try:\n                    __spec__ = module.__spec__\n                except AttributeError:\n                    # We use the found spec since that is the one that\n                    # we would have used if the parent module hadn't\n                    # beaten us to the punch.\n                    return spec\n                else:\n                    if __spec__ is None:\n                        return spec\n                    else:\n                        return __spec__\n            else:\n                return spec\n    else:\n        return None\n\n\ndef _sanity_check(name, package, level):\n    \"\"\"Verify arguments are \"sane\".\"\"\"\n    if not isinstance(name, str):\n        raise TypeError('module name must be str, not {}'.format(type(name)))\n    if level < 0:\n        raise ValueError('level must be >= 0')\n    if level > 0:\n        if not isinstance(package, str):\n            raise TypeError('__package__ not set to a string')\n        elif not package:\n            raise ImportError('attempted relative import with no known parent '\n                              'package')\n    if not name and level == 0:\n        raise ValueError('Empty module name')\n\n\n_ERR_MSG_PREFIX = 'No module named '\n_ERR_MSG = _ERR_MSG_PREFIX + '{!r}'\n\ndef _find_and_load_unlocked(name, import_):\n    path = None\n    parent = name.rpartition('.')[0]\n    if parent:\n        if parent not in sys.modules:\n            _call_with_frames_removed(import_, parent)\n        # Crazy side-effects!\n        if name in sys.modules:\n            return sys.modules[name]\n        parent_module = sys.modules[parent]\n        try:\n            path = parent_module.__path__\n        except AttributeError:\n            msg = (_ERR_MSG + '; {!r} is not a package').format(name, parent)\n            raise ModuleNotFoundError(msg, name=name) from None\n    spec = _find_spec(name, path)\n    if spec is None:\n        raise ModuleNotFoundError(_ERR_MSG.format(name), name=name)\n    else:\n        module = _load_unlocked(spec)\n    if parent:\n        # Set the module as an attribute on its parent.\n        parent_module = sys.modules[parent]\n        setattr(parent_module, name.rpartition('.')[2], module)\n    return module\n\n\n_NEEDS_LOADING = object()\n\n\ndef _find_and_load(name, import_):\n    \"\"\"Find and load the module.\"\"\"\n    with _ModuleLockManager(name):\n        module = sys.modules.get(name, _NEEDS_LOADING)\n        if module is _NEEDS_LOADING:\n            return _find_and_load_unlocked(name, import_)\n\n    if module is None:\n        message = ('import of {} halted; '\n                   'None in sys.modules'.format(name))\n        raise ModuleNotFoundError(message, name=name)\n\n    _lock_unlock_module(name)\n    return module\n\n\ndef _gcd_import(name, package=None, level=0):\n    \"\"\"Import and return the module based on its name, the package the call is\n    being made from, and the level adjustment.\n\n    This function represents the greatest common denominator of functionality\n    between import_module and __import__. This includes setting __package__ if\n    the loader did not.\n\n    \"\"\"\n    _sanity_check(name, package, level)\n    if level > 0:\n        name = _resolve_name(name, package, level)\n    return _find_and_load(name, _gcd_import)\n\n\ndef _handle_fromlist(module, fromlist, import_, *, recursive=False):\n    \"\"\"Figure out what __import__ should return.\n\n    The import_ parameter is a callable which takes the name of module to\n    import. It is required to decouple the function from assuming importlib's\n    import implementation is desired.\n\n    \"\"\"\n    # The hell that is fromlist ...\n    # If a package was imported, try to import stuff from fromlist.\n    for x in fromlist:\n        if not isinstance(x, str):\n            if recursive:\n                where = module.__name__ + '.__all__'\n            else:\n                where = \"``from list''\"\n            raise TypeError(f\"Item in {where} must be str, \"\n                            f\"not {type(x).__name__}\")\n        elif x == '*':\n            if not recursive and hasattr(module, '__all__'):\n                _handle_fromlist(module, module.__all__, import_,\n                                 recursive=True)\n        elif not hasattr(module, x):\n            from_name = '{}.{}'.format(module.__name__, x)\n            try:\n                _call_with_frames_removed(import_, from_name)\n            except ModuleNotFoundError as exc:\n                # Backwards-compatibility dictates we ignore failed\n                # imports triggered by fromlist for modules that don't\n                # exist.\n                if (exc.name == from_name and\n                    sys.modules.get(from_name, _NEEDS_LOADING) is not None):\n                    continue\n                raise\n    return module\n\n\ndef _calc___package__(globals):\n    \"\"\"Calculate what __package__ should be.\n\n    __package__ is not guaranteed to be defined or could be set to None\n    to represent that its proper value is unknown.\n\n    \"\"\"\n    package = globals.get('__package__')\n    spec = globals.get('__spec__')\n    if package is not None:\n        if spec is not None and package != spec.parent:\n            _warnings.warn(\"__package__ != __spec__.parent \"\n                           f\"({package!r} != {spec.parent!r})\",\n                           ImportWarning, stacklevel=3)\n        return package\n    elif spec is not None:\n        return spec.parent\n    else:\n        _warnings.warn(\"can't resolve package from __spec__ or __package__, \"\n                       \"falling back on __name__ and __path__\",\n                       ImportWarning, stacklevel=3)\n        package = globals['__name__']\n        if '__path__' not in globals:\n            package = package.rpartition('.')[0]\n    return package\n\n\ndef __import__(name, globals=None, locals=None, fromlist=(), level=0):\n    \"\"\"Import a module.\n\n    The 'globals' argument is used to infer where the import is occurring from\n    to handle relative imports. The 'locals' argument is ignored. The\n    'fromlist' argument specifies what should exist as attributes on the module\n    being imported (e.g. ``from module import <fromlist>``).  The 'level'\n    argument represents the package location to import from in a relative\n    import (e.g. ``from ..pkg import mod`` would have a 'level' of 2).\n\n    \"\"\"\n    if level == 0:\n        module = _gcd_import(name)\n    else:\n        globals_ = globals if globals is not None else {}\n        package = _calc___package__(globals_)\n        module = _gcd_import(name, package, level)\n    if not fromlist:\n        # Return up to the first dot in 'name'. This is complicated by the fact\n        # that 'name' may be relative.\n        if level == 0:\n            return _gcd_import(name.partition('.')[0])\n        elif not name:\n            return module\n        else:\n            # Figure out where to slice the module's name up to the first dot\n            # in 'name'.\n            cut_off = len(name) - len(name.partition('.')[0])\n            # Slice end needs to be positive to alleviate need to special-case\n            # when ``'.' not in name``.\n            return sys.modules[module.__name__[:len(module.__name__)-cut_off]]\n    elif hasattr(module, '__path__'):\n        return _handle_fromlist(module, fromlist, _gcd_import)\n    else:\n        return module\n\n\ndef _builtin_from_name(name):\n    spec = BuiltinImporter.find_spec(name)\n    if spec is None:\n        raise ImportError('no built-in module named ' + name)\n    return _load_unlocked(spec)\n\n\ndef _setup(sys_module, _imp_module):\n    \"\"\"Setup importlib by importing needed built-in modules and injecting them\n    into the global namespace.\n\n    As sys is needed for sys.modules access and _imp is needed to load built-in\n    modules, those two modules must be explicitly passed in.\n\n    \"\"\"\n    global _imp, sys\n    _imp = _imp_module\n    sys = sys_module\n\n    # Set up the spec for existing builtin/frozen modules.\n    module_type = type(sys)\n    for name, module in sys.modules.items():\n        if isinstance(module, module_type):\n            if name in sys.builtin_module_names:\n                loader = BuiltinImporter\n            elif _imp.is_frozen(name):\n                loader = FrozenImporter\n            else:\n                continue\n            spec = _spec_from_module(module, loader)\n            _init_module_attrs(spec, module)\n\n    # Directly load built-in modules needed during bootstrap.\n    self_module = sys.modules[__name__]\n    for builtin_name in ('_thread', '_warnings', '_weakref'):\n        if builtin_name not in sys.modules:\n            builtin_module = _builtin_from_name(builtin_name)\n        else:\n            builtin_module = sys.modules[builtin_name]\n        setattr(self_module, builtin_name, builtin_module)\n\n\ndef _install(sys_module, _imp_module):\n    \"\"\"Install importers for builtin and frozen modules\"\"\"\n    _setup(sys_module, _imp_module)\n\n    sys.meta_path.append(BuiltinImporter)\n    sys.meta_path.append(FrozenImporter)\n\n\ndef _install_external_importers():\n    \"\"\"Install importers that require external filesystem access\"\"\"\n    global _bootstrap_external\n    import _frozen_importlib_external\n    _bootstrap_external = _frozen_importlib_external\n    _frozen_importlib_external._install(sys.modules[__name__])\n"
  },
  {
    "path": "rd/usr/lib/python3.8/importlib/_bootstrap_external.py",
    "content": "\"\"\"Core implementation of path-based import.\n\nThis module is NOT meant to be directly imported! It has been designed such\nthat it can be bootstrapped into Python as the implementation of import. As\nsuch it requires the injection of specific modules and attributes in order to\nwork. One should use importlib as the public-facing version of this module.\n\n\"\"\"\n# IMPORTANT: Whenever making changes to this module, be sure to run a top-level\n# `make regen-importlib` followed by `make` in order to get the frozen version\n# of the module updated. Not doing so will result in the Makefile to fail for\n# all others who don't have a ./python around to freeze the module in the early\n# stages of compilation.\n#\n\n# See importlib._setup() for what is injected into the global namespace.\n\n# When editing this code be aware that code executed at import time CANNOT\n# reference any injected objects! This includes not only global code but also\n# anything specified at the class level.\n\n# Bootstrap-related code ######################################################\n_CASE_INSENSITIVE_PLATFORMS_STR_KEY = 'win',\n_CASE_INSENSITIVE_PLATFORMS_BYTES_KEY = 'cygwin', 'darwin'\n_CASE_INSENSITIVE_PLATFORMS =  (_CASE_INSENSITIVE_PLATFORMS_BYTES_KEY\n                                + _CASE_INSENSITIVE_PLATFORMS_STR_KEY)\n\n\ndef _make_relax_case():\n    if sys.platform.startswith(_CASE_INSENSITIVE_PLATFORMS):\n        if sys.platform.startswith(_CASE_INSENSITIVE_PLATFORMS_STR_KEY):\n            key = 'PYTHONCASEOK'\n        else:\n            key = b'PYTHONCASEOK'\n\n        def _relax_case():\n            \"\"\"True if filenames must be checked case-insensitively.\"\"\"\n            return key in _os.environ\n    else:\n        def _relax_case():\n            \"\"\"True if filenames must be checked case-insensitively.\"\"\"\n            return False\n    return _relax_case\n\n\ndef _pack_uint32(x):\n    \"\"\"Convert a 32-bit integer to little-endian.\"\"\"\n    return (int(x) & 0xFFFFFFFF).to_bytes(4, 'little')\n\n\ndef _unpack_uint32(data):\n    \"\"\"Convert 4 bytes in little-endian to an integer.\"\"\"\n    assert len(data) == 4\n    return int.from_bytes(data, 'little')\n\ndef _unpack_uint16(data):\n    \"\"\"Convert 2 bytes in little-endian to an integer.\"\"\"\n    assert len(data) == 2\n    return int.from_bytes(data, 'little')\n\n\ndef _path_join(*path_parts):\n    \"\"\"Replacement for os.path.join().\"\"\"\n    return path_sep.join([part.rstrip(path_separators)\n                          for part in path_parts if part])\n\n\ndef _path_split(path):\n    \"\"\"Replacement for os.path.split().\"\"\"\n    if len(path_separators) == 1:\n        front, _, tail = path.rpartition(path_sep)\n        return front, tail\n    for x in reversed(path):\n        if x in path_separators:\n            front, tail = path.rsplit(x, maxsplit=1)\n            return front, tail\n    return '', path\n\n\ndef _path_stat(path):\n    \"\"\"Stat the path.\n\n    Made a separate function to make it easier to override in experiments\n    (e.g. cache stat results).\n\n    \"\"\"\n    return _os.stat(path)\n\n\ndef _path_is_mode_type(path, mode):\n    \"\"\"Test whether the path is the specified mode type.\"\"\"\n    try:\n        stat_info = _path_stat(path)\n    except OSError:\n        return False\n    return (stat_info.st_mode & 0o170000) == mode\n\n\ndef _path_isfile(path):\n    \"\"\"Replacement for os.path.isfile.\"\"\"\n    return _path_is_mode_type(path, 0o100000)\n\n\ndef _path_isdir(path):\n    \"\"\"Replacement for os.path.isdir.\"\"\"\n    if not path:\n        path = _os.getcwd()\n    return _path_is_mode_type(path, 0o040000)\n\n\ndef _path_isabs(path):\n    \"\"\"Replacement for os.path.isabs.\n\n    Considers a Windows drive-relative path (no drive, but starts with slash) to\n    still be \"absolute\".\n    \"\"\"\n    return path.startswith(path_separators) or path[1:3] in _pathseps_with_colon\n\n\ndef _write_atomic(path, data, mode=0o666):\n    \"\"\"Best-effort function to write data to a path atomically.\n    Be prepared to handle a FileExistsError if concurrent writing of the\n    temporary file is attempted.\"\"\"\n    # id() is used to generate a pseudo-random filename.\n    path_tmp = '{}.{}'.format(path, id(path))\n    fd = _os.open(path_tmp,\n                  _os.O_EXCL | _os.O_CREAT | _os.O_WRONLY, mode & 0o666)\n    try:\n        # We first write data to a temporary file, and then use os.replace() to\n        # perform an atomic rename.\n        with _io.FileIO(fd, 'wb') as file:\n            file.write(data)\n        _os.replace(path_tmp, path)\n    except OSError:\n        try:\n            _os.unlink(path_tmp)\n        except OSError:\n            pass\n        raise\n\n\n_code_type = type(_write_atomic.__code__)\n\n\n# Finder/loader utility code ###############################################\n\n# Magic word to reject .pyc files generated by other Python versions.\n# It should change for each incompatible change to the bytecode.\n#\n# The value of CR and LF is incorporated so if you ever read or write\n# a .pyc file in text mode the magic number will be wrong; also, the\n# Apple MPW compiler swaps their values, botching string constants.\n#\n# There were a variety of old schemes for setting the magic number.\n# The current working scheme is to increment the previous value by\n# 10.\n#\n# Starting with the adoption of PEP 3147 in Python 3.2, every bump in magic\n# number also includes a new \"magic tag\", i.e. a human readable string used\n# to represent the magic number in __pycache__ directories.  When you change\n# the magic number, you must also set a new unique magic tag.  Generally this\n# can be named after the Python major version of the magic number bump, but\n# it can really be anything, as long as it's different than anything else\n# that's come before.  The tags are included in the following table, starting\n# with Python 3.2a0.\n#\n# Known values:\n#  Python 1.5:   20121\n#  Python 1.5.1: 20121\n#     Python 1.5.2: 20121\n#     Python 1.6:   50428\n#     Python 2.0:   50823\n#     Python 2.0.1: 50823\n#     Python 2.1:   60202\n#     Python 2.1.1: 60202\n#     Python 2.1.2: 60202\n#     Python 2.2:   60717\n#     Python 2.3a0: 62011\n#     Python 2.3a0: 62021\n#     Python 2.3a0: 62011 (!)\n#     Python 2.4a0: 62041\n#     Python 2.4a3: 62051\n#     Python 2.4b1: 62061\n#     Python 2.5a0: 62071\n#     Python 2.5a0: 62081 (ast-branch)\n#     Python 2.5a0: 62091 (with)\n#     Python 2.5a0: 62092 (changed WITH_CLEANUP opcode)\n#     Python 2.5b3: 62101 (fix wrong code: for x, in ...)\n#     Python 2.5b3: 62111 (fix wrong code: x += yield)\n#     Python 2.5c1: 62121 (fix wrong lnotab with for loops and\n#                          storing constants that should have been removed)\n#     Python 2.5c2: 62131 (fix wrong code: for x, in ... in listcomp/genexp)\n#     Python 2.6a0: 62151 (peephole optimizations and STORE_MAP opcode)\n#     Python 2.6a1: 62161 (WITH_CLEANUP optimization)\n#     Python 2.7a0: 62171 (optimize list comprehensions/change LIST_APPEND)\n#     Python 2.7a0: 62181 (optimize conditional branches:\n#                          introduce POP_JUMP_IF_FALSE and POP_JUMP_IF_TRUE)\n#     Python 2.7a0  62191 (introduce SETUP_WITH)\n#     Python 2.7a0  62201 (introduce BUILD_SET)\n#     Python 2.7a0  62211 (introduce MAP_ADD and SET_ADD)\n#     Python 3000:   3000\n#                    3010 (removed UNARY_CONVERT)\n#                    3020 (added BUILD_SET)\n#                    3030 (added keyword-only parameters)\n#                    3040 (added signature annotations)\n#                    3050 (print becomes a function)\n#                    3060 (PEP 3115 metaclass syntax)\n#                    3061 (string literals become unicode)\n#                    3071 (PEP 3109 raise changes)\n#                    3081 (PEP 3137 make __file__ and __name__ unicode)\n#                    3091 (kill str8 interning)\n#                    3101 (merge from 2.6a0, see 62151)\n#                    3103 (__file__ points to source file)\n#     Python 3.0a4: 3111 (WITH_CLEANUP optimization).\n#     Python 3.0b1: 3131 (lexical exception stacking, including POP_EXCEPT\n                          #3021)\n#     Python 3.1a1: 3141 (optimize list, set and dict comprehensions:\n#                         change LIST_APPEND and SET_ADD, add MAP_ADD #2183)\n#     Python 3.1a1: 3151 (optimize conditional branches:\n#                         introduce POP_JUMP_IF_FALSE and POP_JUMP_IF_TRUE\n                          #4715)\n#     Python 3.2a1: 3160 (add SETUP_WITH #6101)\n#                   tag: cpython-32\n#     Python 3.2a2: 3170 (add DUP_TOP_TWO, remove DUP_TOPX and ROT_FOUR #9225)\n#                   tag: cpython-32\n#     Python 3.2a3  3180 (add DELETE_DEREF #4617)\n#     Python 3.3a1  3190 (__class__ super closure changed)\n#     Python 3.3a1  3200 (PEP 3155 __qualname__ added #13448)\n#     Python 3.3a1  3210 (added size modulo 2**32 to the pyc header #13645)\n#     Python 3.3a2  3220 (changed PEP 380 implementation #14230)\n#     Python 3.3a4  3230 (revert changes to implicit __class__ closure #14857)\n#     Python 3.4a1  3250 (evaluate positional default arguments before\n#                        keyword-only defaults #16967)\n#     Python 3.4a1  3260 (add LOAD_CLASSDEREF; allow locals of class to override\n#                        free vars #17853)\n#     Python 3.4a1  3270 (various tweaks to the __class__ closure #12370)\n#     Python 3.4a1  3280 (remove implicit class argument)\n#     Python 3.4a4  3290 (changes to __qualname__ computation #19301)\n#     Python 3.4a4  3300 (more changes to __qualname__ computation #19301)\n#     Python 3.4rc2 3310 (alter __qualname__ computation #20625)\n#     Python 3.5a1  3320 (PEP 465: Matrix multiplication operator #21176)\n#     Python 3.5b1  3330 (PEP 448: Additional Unpacking Generalizations #2292)\n#     Python 3.5b2  3340 (fix dictionary display evaluation order #11205)\n#     Python 3.5b3  3350 (add GET_YIELD_FROM_ITER opcode #24400)\n#     Python 3.5.2  3351 (fix BUILD_MAP_UNPACK_WITH_CALL opcode #27286)\n#     Python 3.6a0  3360 (add FORMAT_VALUE opcode #25483)\n#     Python 3.6a1  3361 (lineno delta of code.co_lnotab becomes signed #26107)\n#     Python 3.6a2  3370 (16 bit wordcode #26647)\n#     Python 3.6a2  3371 (add BUILD_CONST_KEY_MAP opcode #27140)\n#     Python 3.6a2  3372 (MAKE_FUNCTION simplification, remove MAKE_CLOSURE\n#                         #27095)\n#     Python 3.6b1  3373 (add BUILD_STRING opcode #27078)\n#     Python 3.6b1  3375 (add SETUP_ANNOTATIONS and STORE_ANNOTATION opcodes\n#                         #27985)\n#     Python 3.6b1  3376 (simplify CALL_FUNCTIONs & BUILD_MAP_UNPACK_WITH_CALL\n                          #27213)\n#     Python 3.6b1  3377 (set __class__ cell from type.__new__ #23722)\n#     Python 3.6b2  3378 (add BUILD_TUPLE_UNPACK_WITH_CALL #28257)\n#     Python 3.6rc1 3379 (more thorough __class__ validation #23722)\n#     Python 3.7a1  3390 (add LOAD_METHOD and CALL_METHOD opcodes #26110)\n#     Python 3.7a2  3391 (update GET_AITER #31709)\n#     Python 3.7a4  3392 (PEP 552: Deterministic pycs #31650)\n#     Python 3.7b1  3393 (remove STORE_ANNOTATION opcode #32550)\n#     Python 3.7b5  3394 (restored docstring as the first stmt in the body;\n#                         this might affected the first line number #32911)\n#     Python 3.8a1  3400 (move frame block handling to compiler #17611)\n#     Python 3.8a1  3401 (add END_ASYNC_FOR #33041)\n#     Python 3.8a1  3410 (PEP570 Python Positional-Only Parameters #36540)\n#     Python 3.8b2  3411 (Reverse evaluation order of key: value in dict\n#                         comprehensions #35224)\n#     Python 3.8b2  3412 (Swap the position of positional args and positional\n#                         only args in ast.arguments #37593)\n#     Python 3.8b4  3413 (Fix \"break\" and \"continue\" in \"finally\" #37830)\n#\n# MAGIC must change whenever the bytecode emitted by the compiler may no\n# longer be understood by older implementations of the eval loop (usually\n# due to the addition of new opcodes).\n#\n# Whenever MAGIC_NUMBER is changed, the ranges in the magic_values array\n# in PC/launcher.c must also be updated.\n\nMAGIC_NUMBER = (3413).to_bytes(2, 'little') + b'\\r\\n'\n_RAW_MAGIC_NUMBER = int.from_bytes(MAGIC_NUMBER, 'little')  # For import.c\n\n_PYCACHE = '__pycache__'\n_OPT = 'opt-'\n\nSOURCE_SUFFIXES = ['.py']  # _setup() adds .pyw as needed.\n\nBYTECODE_SUFFIXES = ['.pyc']\n# Deprecated.\nDEBUG_BYTECODE_SUFFIXES = OPTIMIZED_BYTECODE_SUFFIXES = BYTECODE_SUFFIXES\n\ndef cache_from_source(path, debug_override=None, *, optimization=None):\n    \"\"\"Given the path to a .py file, return the path to its .pyc file.\n\n    The .py file does not need to exist; this simply returns the path to the\n    .pyc file calculated as if the .py file were imported.\n\n    The 'optimization' parameter controls the presumed optimization level of\n    the bytecode file. If 'optimization' is not None, the string representation\n    of the argument is taken and verified to be alphanumeric (else ValueError\n    is raised).\n\n    The debug_override parameter is deprecated. If debug_override is not None,\n    a True value is the same as setting 'optimization' to the empty string\n    while a False value is equivalent to setting 'optimization' to '1'.\n\n    If sys.implementation.cache_tag is None then NotImplementedError is raised.\n\n    \"\"\"\n    if debug_override is not None:\n        _warnings.warn('the debug_override parameter is deprecated; use '\n                       \"'optimization' instead\", DeprecationWarning)\n        if optimization is not None:\n            message = 'debug_override or optimization must be set to None'\n            raise TypeError(message)\n        optimization = '' if debug_override else 1\n    path = _os.fspath(path)\n    head, tail = _path_split(path)\n    base, sep, rest = tail.rpartition('.')\n    tag = sys.implementation.cache_tag\n    if tag is None:\n        raise NotImplementedError('sys.implementation.cache_tag is None')\n    almost_filename = ''.join([(base if base else rest), sep, tag])\n    if optimization is None:\n        if sys.flags.optimize == 0:\n            optimization = ''\n        else:\n            optimization = sys.flags.optimize\n    optimization = str(optimization)\n    if optimization != '':\n        if not optimization.isalnum():\n            raise ValueError('{!r} is not alphanumeric'.format(optimization))\n        almost_filename = '{}.{}{}'.format(almost_filename, _OPT, optimization)\n    filename = almost_filename + BYTECODE_SUFFIXES[0]\n    if sys.pycache_prefix is not None:\n        # We need an absolute path to the py file to avoid the possibility of\n        # collisions within sys.pycache_prefix, if someone has two different\n        # `foo/bar.py` on their system and they import both of them using the\n        # same sys.pycache_prefix. Let's say sys.pycache_prefix is\n        # `C:\\Bytecode`; the idea here is that if we get `Foo\\Bar`, we first\n        # make it absolute (`C:\\Somewhere\\Foo\\Bar`), then make it root-relative\n        # (`Somewhere\\Foo\\Bar`), so we end up placing the bytecode file in an\n        # unambiguous `C:\\Bytecode\\Somewhere\\Foo\\Bar\\`.\n        if not _path_isabs(head):\n            head = _path_join(_os.getcwd(), head)\n\n        # Strip initial drive from a Windows path. We know we have an absolute\n        # path here, so the second part of the check rules out a POSIX path that\n        # happens to contain a colon at the second character.\n        if head[1] == ':' and head[0] not in path_separators:\n            head = head[2:]\n\n        # Strip initial path separator from `head` to complete the conversion\n        # back to a root-relative path before joining.\n        return _path_join(\n            sys.pycache_prefix,\n            head.lstrip(path_separators),\n            filename,\n        )\n    return _path_join(head, _PYCACHE, filename)\n\n\ndef source_from_cache(path):\n    \"\"\"Given the path to a .pyc. file, return the path to its .py file.\n\n    The .pyc file does not need to exist; this simply returns the path to\n    the .py file calculated to correspond to the .pyc file.  If path does\n    not conform to PEP 3147/488 format, ValueError will be raised. If\n    sys.implementation.cache_tag is None then NotImplementedError is raised.\n\n    \"\"\"\n    if sys.implementation.cache_tag is None:\n        raise NotImplementedError('sys.implementation.cache_tag is None')\n    path = _os.fspath(path)\n    head, pycache_filename = _path_split(path)\n    found_in_pycache_prefix = False\n    if sys.pycache_prefix is not None:\n        stripped_path = sys.pycache_prefix.rstrip(path_separators)\n        if head.startswith(stripped_path + path_sep):\n            head = head[len(stripped_path):]\n            found_in_pycache_prefix = True\n    if not found_in_pycache_prefix:\n        head, pycache = _path_split(head)\n        if pycache != _PYCACHE:\n            raise ValueError(f'{_PYCACHE} not bottom-level directory in '\n                             f'{path!r}')\n    dot_count = pycache_filename.count('.')\n    if dot_count not in {2, 3}:\n        raise ValueError(f'expected only 2 or 3 dots in {pycache_filename!r}')\n    elif dot_count == 3:\n        optimization = pycache_filename.rsplit('.', 2)[-2]\n        if not optimization.startswith(_OPT):\n            raise ValueError(\"optimization portion of filename does not start \"\n                             f\"with {_OPT!r}\")\n        opt_level = optimization[len(_OPT):]\n        if not opt_level.isalnum():\n            raise ValueError(f\"optimization level {optimization!r} is not an \"\n                             \"alphanumeric value\")\n    base_filename = pycache_filename.partition('.')[0]\n    return _path_join(head, base_filename + SOURCE_SUFFIXES[0])\n\n\ndef _get_sourcefile(bytecode_path):\n    \"\"\"Convert a bytecode file path to a source path (if possible).\n\n    This function exists purely for backwards-compatibility for\n    PyImport_ExecCodeModuleWithFilenames() in the C API.\n\n    \"\"\"\n    if len(bytecode_path) == 0:\n        return None\n    rest, _, extension = bytecode_path.rpartition('.')\n    if not rest or extension.lower()[-3:-1] != 'py':\n        return bytecode_path\n    try:\n        source_path = source_from_cache(bytecode_path)\n    except (NotImplementedError, ValueError):\n        source_path = bytecode_path[:-1]\n    return source_path if _path_isfile(source_path) else bytecode_path\n\n\ndef _get_cached(filename):\n    if filename.endswith(tuple(SOURCE_SUFFIXES)):\n        try:\n            return cache_from_source(filename)\n        except NotImplementedError:\n            pass\n    elif filename.endswith(tuple(BYTECODE_SUFFIXES)):\n        return filename\n    else:\n        return None\n\n\ndef _calc_mode(path):\n    \"\"\"Calculate the mode permissions for a bytecode file.\"\"\"\n    try:\n        mode = _path_stat(path).st_mode\n    except OSError:\n        mode = 0o666\n    # We always ensure write access so we can update cached files\n    # later even when the source files are read-only on Windows (#6074)\n    mode |= 0o200\n    return mode\n\n\ndef _check_name(method):\n    \"\"\"Decorator to verify that the module being requested matches the one the\n    loader can handle.\n\n    The first argument (self) must define _name which the second argument is\n    compared against. If the comparison fails then ImportError is raised.\n\n    \"\"\"\n    def _check_name_wrapper(self, name=None, *args, **kwargs):\n        if name is None:\n            name = self.name\n        elif self.name != name:\n            raise ImportError('loader for %s cannot handle %s' %\n                                (self.name, name), name=name)\n        return method(self, name, *args, **kwargs)\n    try:\n        _wrap = _bootstrap._wrap\n    except NameError:\n        # XXX yuck\n        def _wrap(new, old):\n            for replace in ['__module__', '__name__', '__qualname__', '__doc__']:\n                if hasattr(old, replace):\n                    setattr(new, replace, getattr(old, replace))\n            new.__dict__.update(old.__dict__)\n    _wrap(_check_name_wrapper, method)\n    return _check_name_wrapper\n\n\ndef _find_module_shim(self, fullname):\n    \"\"\"Try to find a loader for the specified module by delegating to\n    self.find_loader().\n\n    This method is deprecated in favor of finder.find_spec().\n\n    \"\"\"\n    # Call find_loader(). If it returns a string (indicating this\n    # is a namespace package portion), generate a warning and\n    # return None.\n    loader, portions = self.find_loader(fullname)\n    if loader is None and len(portions):\n        msg = 'Not importing directory {}: missing __init__'\n        _warnings.warn(msg.format(portions[0]), ImportWarning)\n    return loader\n\n\ndef _classify_pyc(data, name, exc_details):\n    \"\"\"Perform basic validity checking of a pyc header and return the flags field,\n    which determines how the pyc should be further validated against the source.\n\n    *data* is the contents of the pyc file. (Only the first 16 bytes are\n    required, though.)\n\n    *name* is the name of the module being imported. It is used for logging.\n\n    *exc_details* is a dictionary passed to ImportError if it raised for\n    improved debugging.\n\n    ImportError is raised when the magic number is incorrect or when the flags\n    field is invalid. EOFError is raised when the data is found to be truncated.\n\n    \"\"\"\n    magic = data[:4]\n    if magic != MAGIC_NUMBER:\n        message = f'bad magic number in {name!r}: {magic!r}'\n        _bootstrap._verbose_message('{}', message)\n        raise ImportError(message, **exc_details)\n    if len(data) < 16:\n        message = f'reached EOF while reading pyc header of {name!r}'\n        _bootstrap._verbose_message('{}', message)\n        raise EOFError(message)\n    flags = _unpack_uint32(data[4:8])\n    # Only the first two flags are defined.\n    if flags & ~0b11:\n        message = f'invalid flags {flags!r} in {name!r}'\n        raise ImportError(message, **exc_details)\n    return flags\n\n\ndef _validate_timestamp_pyc(data, source_mtime, source_size, name,\n                            exc_details):\n    \"\"\"Validate a pyc against the source last-modified time.\n\n    *data* is the contents of the pyc file. (Only the first 16 bytes are\n    required.)\n\n    *source_mtime* is the last modified timestamp of the source file.\n\n    *source_size* is None or the size of the source file in bytes.\n\n    *name* is the name of the module being imported. It is used for logging.\n\n    *exc_details* is a dictionary passed to ImportError if it raised for\n    improved debugging.\n\n    An ImportError is raised if the bytecode is stale.\n\n    \"\"\"\n    if _unpack_uint32(data[8:12]) != (source_mtime & 0xFFFFFFFF):\n        message = f'bytecode is stale for {name!r}'\n        _bootstrap._verbose_message('{}', message)\n        raise ImportError(message, **exc_details)\n    if (source_size is not None and\n        _unpack_uint32(data[12:16]) != (source_size & 0xFFFFFFFF)):\n        raise ImportError(f'bytecode is stale for {name!r}', **exc_details)\n\n\ndef _validate_hash_pyc(data, source_hash, name, exc_details):\n    \"\"\"Validate a hash-based pyc by checking the real source hash against the one in\n    the pyc header.\n\n    *data* is the contents of the pyc file. (Only the first 16 bytes are\n    required.)\n\n    *source_hash* is the importlib.util.source_hash() of the source file.\n\n    *name* is the name of the module being imported. It is used for logging.\n\n    *exc_details* is a dictionary passed to ImportError if it raised for\n    improved debugging.\n\n    An ImportError is raised if the bytecode is stale.\n\n    \"\"\"\n    if data[8:16] != source_hash:\n        raise ImportError(\n            f'hash in bytecode doesn\\'t match hash of source {name!r}',\n            **exc_details,\n        )\n\n\ndef _compile_bytecode(data, name=None, bytecode_path=None, source_path=None):\n    \"\"\"Compile bytecode as found in a pyc.\"\"\"\n    code = marshal.loads(data)\n    if isinstance(code, _code_type):\n        _bootstrap._verbose_message('code object from {!r}', bytecode_path)\n        if source_path is not None:\n            _imp._fix_co_filename(code, source_path)\n        return code\n    else:\n        raise ImportError('Non-code object in {!r}'.format(bytecode_path),\n                          name=name, path=bytecode_path)\n\n\ndef _code_to_timestamp_pyc(code, mtime=0, source_size=0):\n    \"Produce the data for a timestamp-based pyc.\"\n    data = bytearray(MAGIC_NUMBER)\n    data.extend(_pack_uint32(0))\n    data.extend(_pack_uint32(mtime))\n    data.extend(_pack_uint32(source_size))\n    data.extend(marshal.dumps(code))\n    return data\n\n\ndef _code_to_hash_pyc(code, source_hash, checked=True):\n    \"Produce the data for a hash-based pyc.\"\n    data = bytearray(MAGIC_NUMBER)\n    flags = 0b1 | checked << 1\n    data.extend(_pack_uint32(flags))\n    assert len(source_hash) == 8\n    data.extend(source_hash)\n    data.extend(marshal.dumps(code))\n    return data\n\n\ndef decode_source(source_bytes):\n    \"\"\"Decode bytes representing source code and return the string.\n\n    Universal newline support is used in the decoding.\n    \"\"\"\n    import tokenize  # To avoid bootstrap issues.\n    source_bytes_readline = _io.BytesIO(source_bytes).readline\n    encoding = tokenize.detect_encoding(source_bytes_readline)\n    newline_decoder = _io.IncrementalNewlineDecoder(None, True)\n    return newline_decoder.decode(source_bytes.decode(encoding[0]))\n\n\n# Module specifications #######################################################\n\n_POPULATE = object()\n\n\ndef spec_from_file_location(name, location=None, *, loader=None,\n                            submodule_search_locations=_POPULATE):\n    \"\"\"Return a module spec based on a file location.\n\n    To indicate that the module is a package, set\n    submodule_search_locations to a list of directory paths.  An\n    empty list is sufficient, though its not otherwise useful to the\n    import system.\n\n    The loader must take a spec as its only __init__() arg.\n\n    \"\"\"\n    if location is None:\n        # The caller may simply want a partially populated location-\n        # oriented spec.  So we set the location to a bogus value and\n        # fill in as much as we can.\n        location = '<unknown>'\n        if hasattr(loader, 'get_filename'):\n            # ExecutionLoader\n            try:\n                location = loader.get_filename(name)\n            except ImportError:\n                pass\n    else:\n        location = _os.fspath(location)\n\n    # If the location is on the filesystem, but doesn't actually exist,\n    # we could return None here, indicating that the location is not\n    # valid.  However, we don't have a good way of testing since an\n    # indirect location (e.g. a zip file or URL) will look like a\n    # non-existent file relative to the filesystem.\n\n    spec = _bootstrap.ModuleSpec(name, loader, origin=location)\n    spec._set_fileattr = True\n\n    # Pick a loader if one wasn't provided.\n    if loader is None:\n        for loader_class, suffixes in _get_supported_file_loaders():\n            if location.endswith(tuple(suffixes)):\n                loader = loader_class(name, location)\n                spec.loader = loader\n                break\n        else:\n            return None\n\n    # Set submodule_search_paths appropriately.\n    if submodule_search_locations is _POPULATE:\n        # Check the loader.\n        if hasattr(loader, 'is_package'):\n            try:\n                is_package = loader.is_package(name)\n            except ImportError:\n                pass\n            else:\n                if is_package:\n                    spec.submodule_search_locations = []\n    else:\n        spec.submodule_search_locations = submodule_search_locations\n    if spec.submodule_search_locations == []:\n        if location:\n            dirname = _path_split(location)[0]\n            spec.submodule_search_locations.append(dirname)\n\n    return spec\n\n\n# Loaders #####################################################################\n\nclass WindowsRegistryFinder:\n\n    \"\"\"Meta path finder for modules declared in the Windows registry.\"\"\"\n\n    REGISTRY_KEY = (\n        'Software\\\\Python\\\\PythonCore\\\\{sys_version}'\n        '\\\\Modules\\\\{fullname}')\n    REGISTRY_KEY_DEBUG = (\n        'Software\\\\Python\\\\PythonCore\\\\{sys_version}'\n        '\\\\Modules\\\\{fullname}\\\\Debug')\n    DEBUG_BUILD = False  # Changed in _setup()\n\n    @classmethod\n    def _open_registry(cls, key):\n        try:\n            return _winreg.OpenKey(_winreg.HKEY_CURRENT_USER, key)\n        except OSError:\n            return _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE, key)\n\n    @classmethod\n    def _search_registry(cls, fullname):\n        if cls.DEBUG_BUILD:\n            registry_key = cls.REGISTRY_KEY_DEBUG\n        else:\n            registry_key = cls.REGISTRY_KEY\n        key = registry_key.format(fullname=fullname,\n                                  sys_version='%d.%d' % sys.version_info[:2])\n        try:\n            with cls._open_registry(key) as hkey:\n                filepath = _winreg.QueryValue(hkey, '')\n        except OSError:\n            return None\n        return filepath\n\n    @classmethod\n    def find_spec(cls, fullname, path=None, target=None):\n        filepath = cls._search_registry(fullname)\n        if filepath is None:\n            return None\n        try:\n            _path_stat(filepath)\n        except OSError:\n            return None\n        for loader, suffixes in _get_supported_file_loaders():\n            if filepath.endswith(tuple(suffixes)):\n                spec = _bootstrap.spec_from_loader(fullname,\n                                                   loader(fullname, filepath),\n                                                   origin=filepath)\n                return spec\n\n    @classmethod\n    def find_module(cls, fullname, path=None):\n        \"\"\"Find module named in the registry.\n\n        This method is deprecated.  Use exec_module() instead.\n\n        \"\"\"\n        spec = cls.find_spec(fullname, path)\n        if spec is not None:\n            return spec.loader\n        else:\n            return None\n\n\nclass _LoaderBasics:\n\n    \"\"\"Base class of common code needed by both SourceLoader and\n    SourcelessFileLoader.\"\"\"\n\n    def is_package(self, fullname):\n        \"\"\"Concrete implementation of InspectLoader.is_package by checking if\n        the path returned by get_filename has a filename of '__init__.py'.\"\"\"\n        filename = _path_split(self.get_filename(fullname))[1]\n        filename_base = filename.rsplit('.', 1)[0]\n        tail_name = fullname.rpartition('.')[2]\n        return filename_base == '__init__' and tail_name != '__init__'\n\n    def create_module(self, spec):\n        \"\"\"Use default semantics for module creation.\"\"\"\n\n    def exec_module(self, module):\n        \"\"\"Execute the module.\"\"\"\n        code = self.get_code(module.__name__)\n        if code is None:\n            raise ImportError('cannot load module {!r} when get_code() '\n                              'returns None'.format(module.__name__))\n        _bootstrap._call_with_frames_removed(exec, code, module.__dict__)\n\n    def load_module(self, fullname):\n        \"\"\"This module is deprecated.\"\"\"\n        return _bootstrap._load_module_shim(self, fullname)\n\n\nclass SourceLoader(_LoaderBasics):\n\n    def path_mtime(self, path):\n        \"\"\"Optional method that returns the modification time (an int) for the\n        specified path (a str).\n\n        Raises OSError when the path cannot be handled.\n        \"\"\"\n        raise OSError\n\n    def path_stats(self, path):\n        \"\"\"Optional method returning a metadata dict for the specified\n        path (a str).\n\n        Possible keys:\n        - 'mtime' (mandatory) is the numeric timestamp of last source\n          code modification;\n        - 'size' (optional) is the size in bytes of the source code.\n\n        Implementing this method allows the loader to read bytecode files.\n        Raises OSError when the path cannot be handled.\n        \"\"\"\n        return {'mtime': self.path_mtime(path)}\n\n    def _cache_bytecode(self, source_path, cache_path, data):\n        \"\"\"Optional method which writes data (bytes) to a file path (a str).\n\n        Implementing this method allows for the writing of bytecode files.\n\n        The source path is needed in order to correctly transfer permissions\n        \"\"\"\n        # For backwards compatibility, we delegate to set_data()\n        return self.set_data(cache_path, data)\n\n    def set_data(self, path, data):\n        \"\"\"Optional method which writes data (bytes) to a file path (a str).\n\n        Implementing this method allows for the writing of bytecode files.\n        \"\"\"\n\n\n    def get_source(self, fullname):\n        \"\"\"Concrete implementation of InspectLoader.get_source.\"\"\"\n        path = self.get_filename(fullname)\n        try:\n            source_bytes = self.get_data(path)\n        except OSError as exc:\n            raise ImportError('source not available through get_data()',\n                              name=fullname) from exc\n        return decode_source(source_bytes)\n\n    def source_to_code(self, data, path, *, _optimize=-1):\n        \"\"\"Return the code object compiled from source.\n\n        The 'data' argument can be any object type that compile() supports.\n        \"\"\"\n        return _bootstrap._call_with_frames_removed(compile, data, path, 'exec',\n                                        dont_inherit=True, optimize=_optimize)\n\n    def get_code(self, fullname):\n        \"\"\"Concrete implementation of InspectLoader.get_code.\n\n        Reading of bytecode requires path_stats to be implemented. To write\n        bytecode, set_data must also be implemented.\n\n        \"\"\"\n        source_path = self.get_filename(fullname)\n        source_mtime = None\n        source_bytes = None\n        source_hash = None\n        hash_based = False\n        check_source = True\n        try:\n            bytecode_path = cache_from_source(source_path)\n        except NotImplementedError:\n            bytecode_path = None\n        else:\n            try:\n                st = self.path_stats(source_path)\n            except OSError:\n                pass\n            else:\n                source_mtime = int(st['mtime'])\n                try:\n                    data = self.get_data(bytecode_path)\n                except OSError:\n                    pass\n                else:\n                    exc_details = {\n                        'name': fullname,\n                        'path': bytecode_path,\n                    }\n                    try:\n                        flags = _classify_pyc(data, fullname, exc_details)\n                        bytes_data = memoryview(data)[16:]\n                        hash_based = flags & 0b1 != 0\n                        if hash_based:\n                            check_source = flags & 0b10 != 0\n                            if (_imp.check_hash_based_pycs != 'never' and\n                                (check_source or\n                                 _imp.check_hash_based_pycs == 'always')):\n                                source_bytes = self.get_data(source_path)\n                                source_hash = _imp.source_hash(\n                                    _RAW_MAGIC_NUMBER,\n                                    source_bytes,\n                                )\n                                _validate_hash_pyc(data, source_hash, fullname,\n                                                   exc_details)\n                        else:\n                            _validate_timestamp_pyc(\n                                data,\n                                source_mtime,\n                                st['size'],\n                                fullname,\n                                exc_details,\n                            )\n                    except (ImportError, EOFError):\n                        pass\n                    else:\n                        _bootstrap._verbose_message('{} matches {}', bytecode_path,\n                                                    source_path)\n                        return _compile_bytecode(bytes_data, name=fullname,\n                                                 bytecode_path=bytecode_path,\n                                                 source_path=source_path)\n        if source_bytes is None:\n            source_bytes = self.get_data(source_path)\n        code_object = self.source_to_code(source_bytes, source_path)\n        _bootstrap._verbose_message('code object from {}', source_path)\n        if (not sys.dont_write_bytecode and bytecode_path is not None and\n                source_mtime is not None):\n            if hash_based:\n                if source_hash is None:\n                    source_hash = _imp.source_hash(source_bytes)\n                data = _code_to_hash_pyc(code_object, source_hash, check_source)\n            else:\n                data = _code_to_timestamp_pyc(code_object, source_mtime,\n                                              len(source_bytes))\n            try:\n                self._cache_bytecode(source_path, bytecode_path, data)\n            except NotImplementedError:\n                pass\n        return code_object\n\n\nclass FileLoader:\n\n    \"\"\"Base file loader class which implements the loader protocol methods that\n    require file system usage.\"\"\"\n\n    def __init__(self, fullname, path):\n        \"\"\"Cache the module name and the path to the file found by the\n        finder.\"\"\"\n        self.name = fullname\n        self.path = path\n\n    def __eq__(self, other):\n        return (self.__class__ == other.__class__ and\n                self.__dict__ == other.__dict__)\n\n    def __hash__(self):\n        return hash(self.name) ^ hash(self.path)\n\n    @_check_name\n    def load_module(self, fullname):\n        \"\"\"Load a module from a file.\n\n        This method is deprecated.  Use exec_module() instead.\n\n        \"\"\"\n        # The only reason for this method is for the name check.\n        # Issue #14857: Avoid the zero-argument form of super so the implementation\n        # of that form can be updated without breaking the frozen module\n        return super(FileLoader, self).load_module(fullname)\n\n    @_check_name\n    def get_filename(self, fullname):\n        \"\"\"Return the path to the source file as found by the finder.\"\"\"\n        return self.path\n\n    def get_data(self, path):\n        \"\"\"Return the data from path as raw bytes.\"\"\"\n        if isinstance(self, (SourceLoader, ExtensionFileLoader)):\n            with _io.open_code(str(path)) as file:\n                return file.read()\n        else:\n            with _io.FileIO(path, 'r') as file:\n                return file.read()\n\n    # ResourceReader ABC API.\n\n    @_check_name\n    def get_resource_reader(self, module):\n        if self.is_package(module):\n            return self\n        return None\n\n    def open_resource(self, resource):\n        path = _path_join(_path_split(self.path)[0], resource)\n        return _io.FileIO(path, 'r')\n\n    def resource_path(self, resource):\n        if not self.is_resource(resource):\n            raise FileNotFoundError\n        path = _path_join(_path_split(self.path)[0], resource)\n        return path\n\n    def is_resource(self, name):\n        if path_sep in name:\n            return False\n        path = _path_join(_path_split(self.path)[0], name)\n        return _path_isfile(path)\n\n    def contents(self):\n        return iter(_os.listdir(_path_split(self.path)[0]))\n\n\nclass SourceFileLoader(FileLoader, SourceLoader):\n\n    \"\"\"Concrete implementation of SourceLoader using the file system.\"\"\"\n\n    def path_stats(self, path):\n        \"\"\"Return the metadata for the path.\"\"\"\n        st = _path_stat(path)\n        return {'mtime': st.st_mtime, 'size': st.st_size}\n\n    def _cache_bytecode(self, source_path, bytecode_path, data):\n        # Adapt between the two APIs\n        mode = _calc_mode(source_path)\n        return self.set_data(bytecode_path, data, _mode=mode)\n\n    def set_data(self, path, data, *, _mode=0o666):\n        \"\"\"Write bytes data to a file.\"\"\"\n        parent, filename = _path_split(path)\n        path_parts = []\n        # Figure out what directories are missing.\n        while parent and not _path_isdir(parent):\n            parent, part = _path_split(parent)\n            path_parts.append(part)\n        # Create needed directories.\n        for part in reversed(path_parts):\n            parent = _path_join(parent, part)\n            try:\n                _os.mkdir(parent)\n            except FileExistsError:\n                # Probably another Python process already created the dir.\n                continue\n            except OSError as exc:\n                # Could be a permission error, read-only filesystem: just forget\n                # about writing the data.\n                _bootstrap._verbose_message('could not create {!r}: {!r}',\n                                            parent, exc)\n                return\n        try:\n            _write_atomic(path, data, _mode)\n            _bootstrap._verbose_message('created {!r}', path)\n        except OSError as exc:\n            # Same as above: just don't write the bytecode.\n            _bootstrap._verbose_message('could not create {!r}: {!r}', path,\n                                        exc)\n\n\nclass SourcelessFileLoader(FileLoader, _LoaderBasics):\n\n    \"\"\"Loader which handles sourceless file imports.\"\"\"\n\n    def get_code(self, fullname):\n        path = self.get_filename(fullname)\n        data = self.get_data(path)\n        # Call _classify_pyc to do basic validation of the pyc but ignore the\n        # result. There's no source to check against.\n        exc_details = {\n            'name': fullname,\n            'path': path,\n        }\n        _classify_pyc(data, fullname, exc_details)\n        return _compile_bytecode(\n            memoryview(data)[16:],\n            name=fullname,\n            bytecode_path=path,\n        )\n\n    def get_source(self, fullname):\n        \"\"\"Return None as there is no source code.\"\"\"\n        return None\n\n\n# Filled in by _setup().\nEXTENSION_SUFFIXES = []\n\n\nclass ExtensionFileLoader(FileLoader, _LoaderBasics):\n\n    \"\"\"Loader for extension modules.\n\n    The constructor is designed to work with FileFinder.\n\n    \"\"\"\n\n    def __init__(self, name, path):\n        self.name = name\n        self.path = path\n\n    def __eq__(self, other):\n        return (self.__class__ == other.__class__ and\n                self.__dict__ == other.__dict__)\n\n    def __hash__(self):\n        return hash(self.name) ^ hash(self.path)\n\n    def create_module(self, spec):\n        \"\"\"Create an unitialized extension module\"\"\"\n        module = _bootstrap._call_with_frames_removed(\n            _imp.create_dynamic, spec)\n        _bootstrap._verbose_message('extension module {!r} loaded from {!r}',\n                         spec.name, self.path)\n        return module\n\n    def exec_module(self, module):\n        \"\"\"Initialize an extension module\"\"\"\n        _bootstrap._call_with_frames_removed(_imp.exec_dynamic, module)\n        _bootstrap._verbose_message('extension module {!r} executed from {!r}',\n                         self.name, self.path)\n\n    def is_package(self, fullname):\n        \"\"\"Return True if the extension module is a package.\"\"\"\n        file_name = _path_split(self.path)[1]\n        return any(file_name == '__init__' + suffix\n                   for suffix in EXTENSION_SUFFIXES)\n\n    def get_code(self, fullname):\n        \"\"\"Return None as an extension module cannot create a code object.\"\"\"\n        return None\n\n    def get_source(self, fullname):\n        \"\"\"Return None as extension modules have no source code.\"\"\"\n        return None\n\n    @_check_name\n    def get_filename(self, fullname):\n        \"\"\"Return the path to the source file as found by the finder.\"\"\"\n        return self.path\n\n\nclass _NamespacePath:\n    \"\"\"Represents a namespace package's path.  It uses the module name\n    to find its parent module, and from there it looks up the parent's\n    __path__.  When this changes, the module's own path is recomputed,\n    using path_finder.  For top-level modules, the parent module's path\n    is sys.path.\"\"\"\n\n    def __init__(self, name, path, path_finder):\n        self._name = name\n        self._path = path\n        self._last_parent_path = tuple(self._get_parent_path())\n        self._path_finder = path_finder\n\n    def _find_parent_path_names(self):\n        \"\"\"Returns a tuple of (parent-module-name, parent-path-attr-name)\"\"\"\n        parent, dot, me = self._name.rpartition('.')\n        if dot == '':\n            # This is a top-level module. sys.path contains the parent path.\n            return 'sys', 'path'\n        # Not a top-level module. parent-module.__path__ contains the\n        #  parent path.\n        return parent, '__path__'\n\n    def _get_parent_path(self):\n        parent_module_name, path_attr_name = self._find_parent_path_names()\n        return getattr(sys.modules[parent_module_name], path_attr_name)\n\n    def _recalculate(self):\n        # If the parent's path has changed, recalculate _path\n        parent_path = tuple(self._get_parent_path()) # Make a copy\n        if parent_path != self._last_parent_path:\n            spec = self._path_finder(self._name, parent_path)\n            # Note that no changes are made if a loader is returned, but we\n            #  do remember the new parent path\n            if spec is not None and spec.loader is None:\n                if spec.submodule_search_locations:\n                    self._path = spec.submodule_search_locations\n            self._last_parent_path = parent_path     # Save the copy\n        return self._path\n\n    def __iter__(self):\n        return iter(self._recalculate())\n\n    def __getitem__(self, index):\n        return self._recalculate()[index]\n\n    def __setitem__(self, index, path):\n        self._path[index] = path\n\n    def __len__(self):\n        return len(self._recalculate())\n\n    def __repr__(self):\n        return '_NamespacePath({!r})'.format(self._path)\n\n    def __contains__(self, item):\n        return item in self._recalculate()\n\n    def append(self, item):\n        self._path.append(item)\n\n\n# We use this exclusively in module_from_spec() for backward-compatibility.\nclass _NamespaceLoader:\n    def __init__(self, name, path, path_finder):\n        self._path = _NamespacePath(name, path, path_finder)\n\n    @classmethod\n    def module_repr(cls, module):\n        \"\"\"Return repr for the module.\n\n        The method is deprecated.  The import machinery does the job itself.\n\n        \"\"\"\n        return '<module {!r} (namespace)>'.format(module.__name__)\n\n    def is_package(self, fullname):\n        return True\n\n    def get_source(self, fullname):\n        return ''\n\n    def get_code(self, fullname):\n        return compile('', '<string>', 'exec', dont_inherit=True)\n\n    def create_module(self, spec):\n        \"\"\"Use default semantics for module creation.\"\"\"\n\n    def exec_module(self, module):\n        pass\n\n    def load_module(self, fullname):\n        \"\"\"Load a namespace module.\n\n        This method is deprecated.  Use exec_module() instead.\n\n        \"\"\"\n        # The import system never calls this method.\n        _bootstrap._verbose_message('namespace module loaded with path {!r}',\n                                    self._path)\n        return _bootstrap._load_module_shim(self, fullname)\n\n\n# Finders #####################################################################\n\nclass PathFinder:\n\n    \"\"\"Meta path finder for sys.path and package __path__ attributes.\"\"\"\n\n    @classmethod\n    def invalidate_caches(cls):\n        \"\"\"Call the invalidate_caches() method on all path entry finders\n        stored in sys.path_importer_caches (where implemented).\"\"\"\n        for name, finder in list(sys.path_importer_cache.items()):\n            if finder is None:\n                del sys.path_importer_cache[name]\n            elif hasattr(finder, 'invalidate_caches'):\n                finder.invalidate_caches()\n\n    @classmethod\n    def _path_hooks(cls, path):\n        \"\"\"Search sys.path_hooks for a finder for 'path'.\"\"\"\n        if sys.path_hooks is not None and not sys.path_hooks:\n            _warnings.warn('sys.path_hooks is empty', ImportWarning)\n        for hook in sys.path_hooks:\n            try:\n                return hook(path)\n            except ImportError:\n                continue\n        else:\n            return None\n\n    @classmethod\n    def _path_importer_cache(cls, path):\n        \"\"\"Get the finder for the path entry from sys.path_importer_cache.\n\n        If the path entry is not in the cache, find the appropriate finder\n        and cache it. If no finder is available, store None.\n\n        \"\"\"\n        if path == '':\n            try:\n                path = _os.getcwd()\n            except FileNotFoundError:\n                # Don't cache the failure as the cwd can easily change to\n                # a valid directory later on.\n                return None\n        try:\n            finder = sys.path_importer_cache[path]\n        except KeyError:\n            finder = cls._path_hooks(path)\n            sys.path_importer_cache[path] = finder\n        return finder\n\n    @classmethod\n    def _legacy_get_spec(cls, fullname, finder):\n        # This would be a good place for a DeprecationWarning if\n        # we ended up going that route.\n        if hasattr(finder, 'find_loader'):\n            loader, portions = finder.find_loader(fullname)\n        else:\n            loader = finder.find_module(fullname)\n            portions = []\n        if loader is not None:\n            return _bootstrap.spec_from_loader(fullname, loader)\n        spec = _bootstrap.ModuleSpec(fullname, None)\n        spec.submodule_search_locations = portions\n        return spec\n\n    @classmethod\n    def _get_spec(cls, fullname, path, target=None):\n        \"\"\"Find the loader or namespace_path for this module/package name.\"\"\"\n        # If this ends up being a namespace package, namespace_path is\n        #  the list of paths that will become its __path__\n        namespace_path = []\n        for entry in path:\n            if not isinstance(entry, (str, bytes)):\n                continue\n            finder = cls._path_importer_cache(entry)\n            if finder is not None:\n                if hasattr(finder, 'find_spec'):\n                    spec = finder.find_spec(fullname, target)\n                else:\n                    spec = cls._legacy_get_spec(fullname, finder)\n                if spec is None:\n                    continue\n                if spec.loader is not None:\n                    return spec\n                portions = spec.submodule_search_locations\n                if portions is None:\n                    raise ImportError('spec missing loader')\n                # This is possibly part of a namespace package.\n                #  Remember these path entries (if any) for when we\n                #  create a namespace package, and continue iterating\n                #  on path.\n                namespace_path.extend(portions)\n        else:\n            spec = _bootstrap.ModuleSpec(fullname, None)\n            spec.submodule_search_locations = namespace_path\n            return spec\n\n    @classmethod\n    def find_spec(cls, fullname, path=None, target=None):\n        \"\"\"Try to find a spec for 'fullname' on sys.path or 'path'.\n\n        The search is based on sys.path_hooks and sys.path_importer_cache.\n        \"\"\"\n        if path is None:\n            path = sys.path\n        spec = cls._get_spec(fullname, path, target)\n        if spec is None:\n            return None\n        elif spec.loader is None:\n            namespace_path = spec.submodule_search_locations\n            if namespace_path:\n                # We found at least one namespace path.  Return a spec which\n                # can create the namespace package.\n                spec.origin = None\n                spec.submodule_search_locations = _NamespacePath(fullname, namespace_path, cls._get_spec)\n                return spec\n            else:\n                return None\n        else:\n            return spec\n\n    @classmethod\n    def find_module(cls, fullname, path=None):\n        \"\"\"find the module on sys.path or 'path' based on sys.path_hooks and\n        sys.path_importer_cache.\n\n        This method is deprecated.  Use find_spec() instead.\n\n        \"\"\"\n        spec = cls.find_spec(fullname, path)\n        if spec is None:\n            return None\n        return spec.loader\n\n    @classmethod\n    def find_distributions(cls, *args, **kwargs):\n        \"\"\"\n        Find distributions.\n\n        Return an iterable of all Distribution instances capable of\n        loading the metadata for packages matching ``context.name``\n        (or all names if ``None`` indicated) along the paths in the list\n        of directories ``context.path``.\n        \"\"\"\n        from importlib.metadata import MetadataPathFinder\n        return MetadataPathFinder.find_distributions(*args, **kwargs)\n\n\nclass FileFinder:\n\n    \"\"\"File-based finder.\n\n    Interactions with the file system are cached for performance, being\n    refreshed when the directory the finder is handling has been modified.\n\n    \"\"\"\n\n    def __init__(self, path, *loader_details):\n        \"\"\"Initialize with the path to search on and a variable number of\n        2-tuples containing the loader and the file suffixes the loader\n        recognizes.\"\"\"\n        loaders = []\n        for loader, suffixes in loader_details:\n            loaders.extend((suffix, loader) for suffix in suffixes)\n        self._loaders = loaders\n        # Base (directory) path\n        self.path = path or '.'\n        self._path_mtime = -1\n        self._path_cache = set()\n        self._relaxed_path_cache = set()\n\n    def invalidate_caches(self):\n        \"\"\"Invalidate the directory mtime.\"\"\"\n        self._path_mtime = -1\n\n    find_module = _find_module_shim\n\n    def find_loader(self, fullname):\n        \"\"\"Try to find a loader for the specified module, or the namespace\n        package portions. Returns (loader, list-of-portions).\n\n        This method is deprecated.  Use find_spec() instead.\n\n        \"\"\"\n        spec = self.find_spec(fullname)\n        if spec is None:\n            return None, []\n        return spec.loader, spec.submodule_search_locations or []\n\n    def _get_spec(self, loader_class, fullname, path, smsl, target):\n        loader = loader_class(fullname, path)\n        return spec_from_file_location(fullname, path, loader=loader,\n                                       submodule_search_locations=smsl)\n\n    def find_spec(self, fullname, target=None):\n        \"\"\"Try to find a spec for the specified module.\n\n        Returns the matching spec, or None if not found.\n        \"\"\"\n        is_namespace = False\n        tail_module = fullname.rpartition('.')[2]\n        try:\n            mtime = _path_stat(self.path or _os.getcwd()).st_mtime\n        except OSError:\n            mtime = -1\n        if mtime != self._path_mtime:\n            self._fill_cache()\n            self._path_mtime = mtime\n        # tail_module keeps the original casing, for __file__ and friends\n        if _relax_case():\n            cache = self._relaxed_path_cache\n            cache_module = tail_module.lower()\n        else:\n            cache = self._path_cache\n            cache_module = tail_module\n        # Check if the module is the name of a directory (and thus a package).\n        if cache_module in cache:\n            base_path = _path_join(self.path, tail_module)\n            for suffix, loader_class in self._loaders:\n                init_filename = '__init__' + suffix\n                full_path = _path_join(base_path, init_filename)\n                if _path_isfile(full_path):\n                    return self._get_spec(loader_class, fullname, full_path, [base_path], target)\n            else:\n                # If a namespace package, return the path if we don't\n                #  find a module in the next section.\n                is_namespace = _path_isdir(base_path)\n        # Check for a file w/ a proper suffix exists.\n        for suffix, loader_class in self._loaders:\n            full_path = _path_join(self.path, tail_module + suffix)\n            _bootstrap._verbose_message('trying {}', full_path, verbosity=2)\n            if cache_module + suffix in cache:\n                if _path_isfile(full_path):\n                    return self._get_spec(loader_class, fullname, full_path,\n                                          None, target)\n        if is_namespace:\n            _bootstrap._verbose_message('possible namespace for {}', base_path)\n            spec = _bootstrap.ModuleSpec(fullname, None)\n            spec.submodule_search_locations = [base_path]\n            return spec\n        return None\n\n    def _fill_cache(self):\n        \"\"\"Fill the cache of potential modules and packages for this directory.\"\"\"\n        path = self.path\n        try:\n            contents = _os.listdir(path or _os.getcwd())\n        except (FileNotFoundError, PermissionError, NotADirectoryError):\n            # Directory has either been removed, turned into a file, or made\n            # unreadable.\n            contents = []\n        # We store two cached versions, to handle runtime changes of the\n        # PYTHONCASEOK environment variable.\n        if not sys.platform.startswith('win'):\n            self._path_cache = set(contents)\n        else:\n            # Windows users can import modules with case-insensitive file\n            # suffixes (for legacy reasons). Make the suffix lowercase here\n            # so it's done once instead of for every import. This is safe as\n            # the specified suffixes to check against are always specified in a\n            # case-sensitive manner.\n            lower_suffix_contents = set()\n            for item in contents:\n                name, dot, suffix = item.partition('.')\n                if dot:\n                    new_name = '{}.{}'.format(name, suffix.lower())\n                else:\n                    new_name = name\n                lower_suffix_contents.add(new_name)\n            self._path_cache = lower_suffix_contents\n        if sys.platform.startswith(_CASE_INSENSITIVE_PLATFORMS):\n            self._relaxed_path_cache = {fn.lower() for fn in contents}\n\n    @classmethod\n    def path_hook(cls, *loader_details):\n        \"\"\"A class method which returns a closure to use on sys.path_hook\n        which will return an instance using the specified loaders and the path\n        called on the closure.\n\n        If the path called on the closure is not a directory, ImportError is\n        raised.\n\n        \"\"\"\n        def path_hook_for_FileFinder(path):\n            \"\"\"Path hook for importlib.machinery.FileFinder.\"\"\"\n            if not _path_isdir(path):\n                raise ImportError('only directories are supported', path=path)\n            return cls(path, *loader_details)\n\n        return path_hook_for_FileFinder\n\n    def __repr__(self):\n        return 'FileFinder({!r})'.format(self.path)\n\n\n# Import setup ###############################################################\n\ndef _fix_up_module(ns, name, pathname, cpathname=None):\n    # This function is used by PyImport_ExecCodeModuleObject().\n    loader = ns.get('__loader__')\n    spec = ns.get('__spec__')\n    if not loader:\n        if spec:\n            loader = spec.loader\n        elif pathname == cpathname:\n            loader = SourcelessFileLoader(name, pathname)\n        else:\n            loader = SourceFileLoader(name, pathname)\n    if not spec:\n        spec = spec_from_file_location(name, pathname, loader=loader)\n    try:\n        ns['__spec__'] = spec\n        ns['__loader__'] = loader\n        ns['__file__'] = pathname\n        ns['__cached__'] = cpathname\n    except Exception:\n        # Not important enough to report.\n        pass\n\n\ndef _get_supported_file_loaders():\n    \"\"\"Returns a list of file-based module loaders.\n\n    Each item is a tuple (loader, suffixes).\n    \"\"\"\n    extensions = ExtensionFileLoader, _imp.extension_suffixes()\n    source = SourceFileLoader, SOURCE_SUFFIXES\n    bytecode = SourcelessFileLoader, BYTECODE_SUFFIXES\n    return [extensions, source, bytecode]\n\n\ndef _setup(_bootstrap_module):\n    \"\"\"Setup the path-based importers for importlib by importing needed\n    built-in modules and injecting them into the global namespace.\n\n    Other components are extracted from the core bootstrap module.\n\n    \"\"\"\n    global sys, _imp, _bootstrap\n    _bootstrap = _bootstrap_module\n    sys = _bootstrap.sys\n    _imp = _bootstrap._imp\n\n    # Directly load built-in modules needed during bootstrap.\n    self_module = sys.modules[__name__]\n    for builtin_name in ('_io', '_warnings', 'builtins', 'marshal'):\n        if builtin_name not in sys.modules:\n            builtin_module = _bootstrap._builtin_from_name(builtin_name)\n        else:\n            builtin_module = sys.modules[builtin_name]\n        setattr(self_module, builtin_name, builtin_module)\n\n    # Directly load the os module (needed during bootstrap).\n    os_details = ('posix', ['/']), ('nt', ['\\\\', '/'])\n    for builtin_os, path_separators in os_details:\n        # Assumption made in _path_join()\n        assert all(len(sep) == 1 for sep in path_separators)\n        path_sep = path_separators[0]\n        if builtin_os in sys.modules:\n            os_module = sys.modules[builtin_os]\n            break\n        else:\n            try:\n                os_module = _bootstrap._builtin_from_name(builtin_os)\n                break\n            except ImportError:\n                continue\n    else:\n        raise ImportError('importlib requires posix or nt')\n    setattr(self_module, '_os', os_module)\n    setattr(self_module, 'path_sep', path_sep)\n    setattr(self_module, 'path_separators', ''.join(path_separators))\n    setattr(self_module, '_pathseps_with_colon', {f':{s}' for s in path_separators})\n\n    # Directly load the _thread module (needed during bootstrap).\n    thread_module = _bootstrap._builtin_from_name('_thread')\n    setattr(self_module, '_thread', thread_module)\n\n    # Directly load the _weakref module (needed during bootstrap).\n    weakref_module = _bootstrap._builtin_from_name('_weakref')\n    setattr(self_module, '_weakref', weakref_module)\n\n    # Directly load the winreg module (needed during bootstrap).\n    if builtin_os == 'nt':\n        winreg_module = _bootstrap._builtin_from_name('winreg')\n        setattr(self_module, '_winreg', winreg_module)\n\n    # Constants\n    setattr(self_module, '_relax_case', _make_relax_case())\n    EXTENSION_SUFFIXES.extend(_imp.extension_suffixes())\n    if builtin_os == 'nt':\n        SOURCE_SUFFIXES.append('.pyw')\n        if '_d.pyd' in EXTENSION_SUFFIXES:\n            WindowsRegistryFinder.DEBUG_BUILD = True\n\n\ndef _install(_bootstrap_module):\n    \"\"\"Install the path-based import components.\"\"\"\n    _setup(_bootstrap_module)\n    supported_loaders = _get_supported_file_loaders()\n    sys.path_hooks.extend([FileFinder.path_hook(*supported_loaders)])\n    sys.meta_path.append(PathFinder)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/importlib/abc.py",
    "content": "\"\"\"Abstract base classes related to import.\"\"\"\nfrom . import _bootstrap\nfrom . import _bootstrap_external\nfrom . import machinery\ntry:\n    import _frozen_importlib\nexcept ImportError as exc:\n    if exc.name != '_frozen_importlib':\n        raise\n    _frozen_importlib = None\ntry:\n    import _frozen_importlib_external\nexcept ImportError as exc:\n    _frozen_importlib_external = _bootstrap_external\nimport abc\nimport warnings\n\n\ndef _register(abstract_cls, *classes):\n    for cls in classes:\n        abstract_cls.register(cls)\n        if _frozen_importlib is not None:\n            try:\n                frozen_cls = getattr(_frozen_importlib, cls.__name__)\n            except AttributeError:\n                frozen_cls = getattr(_frozen_importlib_external, cls.__name__)\n            abstract_cls.register(frozen_cls)\n\n\nclass Finder(metaclass=abc.ABCMeta):\n\n    \"\"\"Legacy abstract base class for import finders.\n\n    It may be subclassed for compatibility with legacy third party\n    reimplementations of the import system.  Otherwise, finder\n    implementations should derive from the more specific MetaPathFinder\n    or PathEntryFinder ABCs.\n\n    Deprecated since Python 3.3\n    \"\"\"\n\n    @abc.abstractmethod\n    def find_module(self, fullname, path=None):\n        \"\"\"An abstract method that should find a module.\n        The fullname is a str and the optional path is a str or None.\n        Returns a Loader object or None.\n        \"\"\"\n\n\nclass MetaPathFinder(Finder):\n\n    \"\"\"Abstract base class for import finders on sys.meta_path.\"\"\"\n\n    # We don't define find_spec() here since that would break\n    # hasattr checks we do to support backward compatibility.\n\n    def find_module(self, fullname, path):\n        \"\"\"Return a loader for the module.\n\n        If no module is found, return None.  The fullname is a str and\n        the path is a list of strings or None.\n\n        This method is deprecated since Python 3.4 in favor of\n        finder.find_spec(). If find_spec() exists then backwards-compatible\n        functionality is provided for this method.\n\n        \"\"\"\n        warnings.warn(\"MetaPathFinder.find_module() is deprecated since Python \"\n                      \"3.4 in favor of MetaPathFinder.find_spec() \"\n                      \"(available since 3.4)\",\n                      DeprecationWarning,\n                      stacklevel=2)\n        if not hasattr(self, 'find_spec'):\n            return None\n        found = self.find_spec(fullname, path)\n        return found.loader if found is not None else None\n\n    def invalidate_caches(self):\n        \"\"\"An optional method for clearing the finder's cache, if any.\n        This method is used by importlib.invalidate_caches().\n        \"\"\"\n\n_register(MetaPathFinder, machinery.BuiltinImporter, machinery.FrozenImporter,\n          machinery.PathFinder, machinery.WindowsRegistryFinder)\n\n\nclass PathEntryFinder(Finder):\n\n    \"\"\"Abstract base class for path entry finders used by PathFinder.\"\"\"\n\n    # We don't define find_spec() here since that would break\n    # hasattr checks we do to support backward compatibility.\n\n    def find_loader(self, fullname):\n        \"\"\"Return (loader, namespace portion) for the path entry.\n\n        The fullname is a str.  The namespace portion is a sequence of\n        path entries contributing to part of a namespace package. The\n        sequence may be empty.  If loader is not None, the portion will\n        be ignored.\n\n        The portion will be discarded if another path entry finder\n        locates the module as a normal module or package.\n\n        This method is deprecated since Python 3.4 in favor of\n        finder.find_spec(). If find_spec() is provided than backwards-compatible\n        functionality is provided.\n        \"\"\"\n        warnings.warn(\"PathEntryFinder.find_loader() is deprecated since Python \"\n                      \"3.4 in favor of PathEntryFinder.find_spec() \"\n                      \"(available since 3.4)\",\n                      DeprecationWarning,\n                      stacklevel=2)\n        if not hasattr(self, 'find_spec'):\n            return None, []\n        found = self.find_spec(fullname)\n        if found is not None:\n            if not found.submodule_search_locations:\n                portions = []\n            else:\n                portions = found.submodule_search_locations\n            return found.loader, portions\n        else:\n            return None, []\n\n    find_module = _bootstrap_external._find_module_shim\n\n    def invalidate_caches(self):\n        \"\"\"An optional method for clearing the finder's cache, if any.\n        This method is used by PathFinder.invalidate_caches().\n        \"\"\"\n\n_register(PathEntryFinder, machinery.FileFinder)\n\n\nclass Loader(metaclass=abc.ABCMeta):\n\n    \"\"\"Abstract base class for import loaders.\"\"\"\n\n    def create_module(self, spec):\n        \"\"\"Return a module to initialize and into which to load.\n\n        This method should raise ImportError if anything prevents it\n        from creating a new module.  It may return None to indicate\n        that the spec should create the new module.\n        \"\"\"\n        # By default, defer to default semantics for the new module.\n        return None\n\n    # We don't define exec_module() here since that would break\n    # hasattr checks we do to support backward compatibility.\n\n    def load_module(self, fullname):\n        \"\"\"Return the loaded module.\n\n        The module must be added to sys.modules and have import-related\n        attributes set properly.  The fullname is a str.\n\n        ImportError is raised on failure.\n\n        This method is deprecated in favor of loader.exec_module(). If\n        exec_module() exists then it is used to provide a backwards-compatible\n        functionality for this method.\n\n        \"\"\"\n        if not hasattr(self, 'exec_module'):\n            raise ImportError\n        return _bootstrap._load_module_shim(self, fullname)\n\n    def module_repr(self, module):\n        \"\"\"Return a module's repr.\n\n        Used by the module type when the method does not raise\n        NotImplementedError.\n\n        This method is deprecated.\n\n        \"\"\"\n        # The exception will cause ModuleType.__repr__ to ignore this method.\n        raise NotImplementedError\n\n\nclass ResourceLoader(Loader):\n\n    \"\"\"Abstract base class for loaders which can return data from their\n    back-end storage.\n\n    This ABC represents one of the optional protocols specified by PEP 302.\n\n    \"\"\"\n\n    @abc.abstractmethod\n    def get_data(self, path):\n        \"\"\"Abstract method which when implemented should return the bytes for\n        the specified path.  The path must be a str.\"\"\"\n        raise OSError\n\n\nclass InspectLoader(Loader):\n\n    \"\"\"Abstract base class for loaders which support inspection about the\n    modules they can load.\n\n    This ABC represents one of the optional protocols specified by PEP 302.\n\n    \"\"\"\n\n    def is_package(self, fullname):\n        \"\"\"Optional method which when implemented should return whether the\n        module is a package.  The fullname is a str.  Returns a bool.\n\n        Raises ImportError if the module cannot be found.\n        \"\"\"\n        raise ImportError\n\n    def get_code(self, fullname):\n        \"\"\"Method which returns the code object for the module.\n\n        The fullname is a str.  Returns a types.CodeType if possible, else\n        returns None if a code object does not make sense\n        (e.g. built-in module). Raises ImportError if the module cannot be\n        found.\n        \"\"\"\n        source = self.get_source(fullname)\n        if source is None:\n            return None\n        return self.source_to_code(source)\n\n    @abc.abstractmethod\n    def get_source(self, fullname):\n        \"\"\"Abstract method which should return the source code for the\n        module.  The fullname is a str.  Returns a str.\n\n        Raises ImportError if the module cannot be found.\n        \"\"\"\n        raise ImportError\n\n    @staticmethod\n    def source_to_code(data, path='<string>'):\n        \"\"\"Compile 'data' into a code object.\n\n        The 'data' argument can be anything that compile() can handle. The'path'\n        argument should be where the data was retrieved (when applicable).\"\"\"\n        return compile(data, path, 'exec', dont_inherit=True)\n\n    exec_module = _bootstrap_external._LoaderBasics.exec_module\n    load_module = _bootstrap_external._LoaderBasics.load_module\n\n_register(InspectLoader, machinery.BuiltinImporter, machinery.FrozenImporter)\n\n\nclass ExecutionLoader(InspectLoader):\n\n    \"\"\"Abstract base class for loaders that wish to support the execution of\n    modules as scripts.\n\n    This ABC represents one of the optional protocols specified in PEP 302.\n\n    \"\"\"\n\n    @abc.abstractmethod\n    def get_filename(self, fullname):\n        \"\"\"Abstract method which should return the value that __file__ is to be\n        set to.\n\n        Raises ImportError if the module cannot be found.\n        \"\"\"\n        raise ImportError\n\n    def get_code(self, fullname):\n        \"\"\"Method to return the code object for fullname.\n\n        Should return None if not applicable (e.g. built-in module).\n        Raise ImportError if the module cannot be found.\n        \"\"\"\n        source = self.get_source(fullname)\n        if source is None:\n            return None\n        try:\n            path = self.get_filename(fullname)\n        except ImportError:\n            return self.source_to_code(source)\n        else:\n            return self.source_to_code(source, path)\n\n_register(ExecutionLoader, machinery.ExtensionFileLoader)\n\n\nclass FileLoader(_bootstrap_external.FileLoader, ResourceLoader, ExecutionLoader):\n\n    \"\"\"Abstract base class partially implementing the ResourceLoader and\n    ExecutionLoader ABCs.\"\"\"\n\n_register(FileLoader, machinery.SourceFileLoader,\n            machinery.SourcelessFileLoader)\n\n\nclass SourceLoader(_bootstrap_external.SourceLoader, ResourceLoader, ExecutionLoader):\n\n    \"\"\"Abstract base class for loading source code (and optionally any\n    corresponding bytecode).\n\n    To support loading from source code, the abstractmethods inherited from\n    ResourceLoader and ExecutionLoader need to be implemented. To also support\n    loading from bytecode, the optional methods specified directly by this ABC\n    is required.\n\n    Inherited abstractmethods not implemented in this ABC:\n\n        * ResourceLoader.get_data\n        * ExecutionLoader.get_filename\n\n    \"\"\"\n\n    def path_mtime(self, path):\n        \"\"\"Return the (int) modification time for the path (str).\"\"\"\n        if self.path_stats.__func__ is SourceLoader.path_stats:\n            raise OSError\n        return int(self.path_stats(path)['mtime'])\n\n    def path_stats(self, path):\n        \"\"\"Return a metadata dict for the source pointed to by the path (str).\n        Possible keys:\n        - 'mtime' (mandatory) is the numeric timestamp of last source\n          code modification;\n        - 'size' (optional) is the size in bytes of the source code.\n        \"\"\"\n        if self.path_mtime.__func__ is SourceLoader.path_mtime:\n            raise OSError\n        return {'mtime': self.path_mtime(path)}\n\n    def set_data(self, path, data):\n        \"\"\"Write the bytes to the path (if possible).\n\n        Accepts a str path and data as bytes.\n\n        Any needed intermediary directories are to be created. If for some\n        reason the file cannot be written because of permissions, fail\n        silently.\n        \"\"\"\n\n_register(SourceLoader, machinery.SourceFileLoader)\n\n\nclass ResourceReader(metaclass=abc.ABCMeta):\n\n    \"\"\"Abstract base class to provide resource-reading support.\n\n    Loaders that support resource reading are expected to implement\n    the ``get_resource_reader(fullname)`` method and have it either return None\n    or an object compatible with this ABC.\n    \"\"\"\n\n    @abc.abstractmethod\n    def open_resource(self, resource):\n        \"\"\"Return an opened, file-like object for binary reading.\n\n        The 'resource' argument is expected to represent only a file name\n        and thus not contain any subdirectory components.\n\n        If the resource cannot be found, FileNotFoundError is raised.\n        \"\"\"\n        raise FileNotFoundError\n\n    @abc.abstractmethod\n    def resource_path(self, resource):\n        \"\"\"Return the file system path to the specified resource.\n\n        The 'resource' argument is expected to represent only a file name\n        and thus not contain any subdirectory components.\n\n        If the resource does not exist on the file system, raise\n        FileNotFoundError.\n        \"\"\"\n        raise FileNotFoundError\n\n    @abc.abstractmethod\n    def is_resource(self, name):\n        \"\"\"Return True if the named 'name' is consider a resource.\"\"\"\n        raise FileNotFoundError\n\n    @abc.abstractmethod\n    def contents(self):\n        \"\"\"Return an iterable of strings over the contents of the package.\"\"\"\n        return []\n\n\n_register(ResourceReader, machinery.SourceFileLoader)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/importlib/machinery.py",
    "content": "\"\"\"The machinery of importlib: finders, loaders, hooks, etc.\"\"\"\n\nimport _imp\n\nfrom ._bootstrap import ModuleSpec\nfrom ._bootstrap import BuiltinImporter\nfrom ._bootstrap import FrozenImporter\nfrom ._bootstrap_external import (SOURCE_SUFFIXES, DEBUG_BYTECODE_SUFFIXES,\n                     OPTIMIZED_BYTECODE_SUFFIXES, BYTECODE_SUFFIXES,\n                     EXTENSION_SUFFIXES)\nfrom ._bootstrap_external import WindowsRegistryFinder\nfrom ._bootstrap_external import PathFinder\nfrom ._bootstrap_external import FileFinder\nfrom ._bootstrap_external import SourceFileLoader\nfrom ._bootstrap_external import SourcelessFileLoader\nfrom ._bootstrap_external import ExtensionFileLoader\n\n\ndef all_suffixes():\n    \"\"\"Returns a list of all recognized module suffixes for this process\"\"\"\n    return SOURCE_SUFFIXES + BYTECODE_SUFFIXES + EXTENSION_SUFFIXES\n"
  },
  {
    "path": "rd/usr/lib/python3.8/importlib/metadata.py",
    "content": "import io\nimport os\nimport re\nimport abc\nimport csv\nimport sys\nimport email\nimport pathlib\nimport zipfile\nimport operator\nimport functools\nimport itertools\nimport posixpath\nimport collections\n\nfrom configparser import ConfigParser\nfrom contextlib import suppress\nfrom importlib import import_module\nfrom importlib.abc import MetaPathFinder\nfrom itertools import starmap\n\n\n__all__ = [\n    'Distribution',\n    'DistributionFinder',\n    'PackageNotFoundError',\n    'distribution',\n    'distributions',\n    'entry_points',\n    'files',\n    'metadata',\n    'requires',\n    'version',\n    ]\n\n\nclass PackageNotFoundError(ModuleNotFoundError):\n    \"\"\"The package was not found.\"\"\"\n\n\nclass EntryPoint(\n        collections.namedtuple('EntryPointBase', 'name value group')):\n    \"\"\"An entry point as defined by Python packaging conventions.\n\n    See `the packaging docs on entry points\n    <https://packaging.python.org/specifications/entry-points/>`_\n    for more information.\n    \"\"\"\n\n    pattern = re.compile(\n        r'(?P<module>[\\w.]+)\\s*'\n        r'(:\\s*(?P<attr>[\\w.]+))?\\s*'\n        r'(?P<extras>\\[.*\\])?\\s*$'\n        )\n    \"\"\"\n    A regular expression describing the syntax for an entry point,\n    which might look like:\n\n        - module\n        - package.module\n        - package.module:attribute\n        - package.module:object.attribute\n        - package.module:attr [extra1, extra2]\n\n    Other combinations are possible as well.\n\n    The expression is lenient about whitespace around the ':',\n    following the attr, and following any extras.\n    \"\"\"\n\n    def load(self):\n        \"\"\"Load the entry point from its definition. If only a module\n        is indicated by the value, return that module. Otherwise,\n        return the named object.\n        \"\"\"\n        match = self.pattern.match(self.value)\n        module = import_module(match.group('module'))\n        attrs = filter(None, (match.group('attr') or '').split('.'))\n        return functools.reduce(getattr, attrs, module)\n\n    @property\n    def extras(self):\n        match = self.pattern.match(self.value)\n        return list(re.finditer(r'\\w+', match.group('extras') or ''))\n\n    @classmethod\n    def _from_config(cls, config):\n        return [\n            cls(name, value, group)\n            for group in config.sections()\n            for name, value in config.items(group)\n            ]\n\n    @classmethod\n    def _from_text(cls, text):\n        config = ConfigParser(delimiters='=')\n        # case sensitive: https://stackoverflow.com/q/1611799/812183\n        config.optionxform = str\n        try:\n            config.read_string(text)\n        except AttributeError:  # pragma: nocover\n            # Python 2 has no read_string\n            config.readfp(io.StringIO(text))\n        return EntryPoint._from_config(config)\n\n    def __iter__(self):\n        \"\"\"\n        Supply iter so one may construct dicts of EntryPoints easily.\n        \"\"\"\n        return iter((self.name, self))\n\n    def __reduce__(self):\n        return (\n            self.__class__,\n            (self.name, self.value, self.group),\n            )\n\n\nclass PackagePath(pathlib.PurePosixPath):\n    \"\"\"A reference to a path in a package\"\"\"\n\n    def read_text(self, encoding='utf-8'):\n        with self.locate().open(encoding=encoding) as stream:\n            return stream.read()\n\n    def read_binary(self):\n        with self.locate().open('rb') as stream:\n            return stream.read()\n\n    def locate(self):\n        \"\"\"Return a path-like object for this path\"\"\"\n        return self.dist.locate_file(self)\n\n\nclass FileHash:\n    def __init__(self, spec):\n        self.mode, _, self.value = spec.partition('=')\n\n    def __repr__(self):\n        return '<FileHash mode: {} value: {}>'.format(self.mode, self.value)\n\n\nclass Distribution:\n    \"\"\"A Python distribution package.\"\"\"\n\n    @abc.abstractmethod\n    def read_text(self, filename):\n        \"\"\"Attempt to load metadata file given by the name.\n\n        :param filename: The name of the file in the distribution info.\n        :return: The text if found, otherwise None.\n        \"\"\"\n\n    @abc.abstractmethod\n    def locate_file(self, path):\n        \"\"\"\n        Given a path to a file in this distribution, return a path\n        to it.\n        \"\"\"\n\n    @classmethod\n    def from_name(cls, name):\n        \"\"\"Return the Distribution for the given package name.\n\n        :param name: The name of the distribution package to search for.\n        :return: The Distribution instance (or subclass thereof) for the named\n            package, if found.\n        :raises PackageNotFoundError: When the named package's distribution\n            metadata cannot be found.\n        \"\"\"\n        for resolver in cls._discover_resolvers():\n            dists = resolver(DistributionFinder.Context(name=name))\n            dist = next(dists, None)\n            if dist is not None:\n                return dist\n        else:\n            raise PackageNotFoundError(name)\n\n    @classmethod\n    def discover(cls, **kwargs):\n        \"\"\"Return an iterable of Distribution objects for all packages.\n\n        Pass a ``context`` or pass keyword arguments for constructing\n        a context.\n\n        :context: A ``DistributionFinder.Context`` object.\n        :return: Iterable of Distribution objects for all packages.\n        \"\"\"\n        context = kwargs.pop('context', None)\n        if context and kwargs:\n            raise ValueError(\"cannot accept context and kwargs\")\n        context = context or DistributionFinder.Context(**kwargs)\n        return itertools.chain.from_iterable(\n            resolver(context)\n            for resolver in cls._discover_resolvers()\n            )\n\n    @staticmethod\n    def at(path):\n        \"\"\"Return a Distribution for the indicated metadata path\n\n        :param path: a string or path-like object\n        :return: a concrete Distribution instance for the path\n        \"\"\"\n        return PathDistribution(pathlib.Path(path))\n\n    @staticmethod\n    def _discover_resolvers():\n        \"\"\"Search the meta_path for resolvers.\"\"\"\n        declared = (\n            getattr(finder, 'find_distributions', None)\n            for finder in sys.meta_path\n            )\n        return filter(None, declared)\n\n    @property\n    def metadata(self):\n        \"\"\"Return the parsed metadata for this Distribution.\n\n        The returned object will have keys that name the various bits of\n        metadata.  See PEP 566 for details.\n        \"\"\"\n        text = (\n            self.read_text('METADATA')\n            or self.read_text('PKG-INFO')\n            # This last clause is here to support old egg-info files.  Its\n            # effect is to just end up using the PathDistribution's self._path\n            # (which points to the egg-info file) attribute unchanged.\n            or self.read_text('')\n            )\n        return email.message_from_string(text)\n\n    @property\n    def version(self):\n        \"\"\"Return the 'Version' metadata for the distribution package.\"\"\"\n        return self.metadata['Version']\n\n    @property\n    def entry_points(self):\n        return EntryPoint._from_text(self.read_text('entry_points.txt'))\n\n    @property\n    def files(self):\n        \"\"\"Files in this distribution.\n\n        :return: List of PackagePath for this distribution or None\n\n        Result is `None` if the metadata file that enumerates files\n        (i.e. RECORD for dist-info or SOURCES.txt for egg-info) is\n        missing.\n        Result may be empty if the metadata exists but is empty.\n        \"\"\"\n        file_lines = self._read_files_distinfo() or self._read_files_egginfo()\n\n        def make_file(name, hash=None, size_str=None):\n            result = PackagePath(name)\n            result.hash = FileHash(hash) if hash else None\n            result.size = int(size_str) if size_str else None\n            result.dist = self\n            return result\n\n        return file_lines and list(starmap(make_file, csv.reader(file_lines)))\n\n    def _read_files_distinfo(self):\n        \"\"\"\n        Read the lines of RECORD\n        \"\"\"\n        text = self.read_text('RECORD')\n        return text and text.splitlines()\n\n    def _read_files_egginfo(self):\n        \"\"\"\n        SOURCES.txt might contain literal commas, so wrap each line\n        in quotes.\n        \"\"\"\n        text = self.read_text('SOURCES.txt')\n        return text and map('\"{}\"'.format, text.splitlines())\n\n    @property\n    def requires(self):\n        \"\"\"Generated requirements specified for this Distribution\"\"\"\n        reqs = self._read_dist_info_reqs() or self._read_egg_info_reqs()\n        return reqs and list(reqs)\n\n    def _read_dist_info_reqs(self):\n        return self.metadata.get_all('Requires-Dist')\n\n    def _read_egg_info_reqs(self):\n        source = self.read_text('requires.txt')\n        return source and self._deps_from_requires_text(source)\n\n    @classmethod\n    def _deps_from_requires_text(cls, source):\n        section_pairs = cls._read_sections(source.splitlines())\n        sections = {\n            section: list(map(operator.itemgetter('line'), results))\n            for section, results in\n            itertools.groupby(section_pairs, operator.itemgetter('section'))\n            }\n        return cls._convert_egg_info_reqs_to_simple_reqs(sections)\n\n    @staticmethod\n    def _read_sections(lines):\n        section = None\n        for line in filter(None, lines):\n            section_match = re.match(r'\\[(.*)\\]$', line)\n            if section_match:\n                section = section_match.group(1)\n                continue\n            yield locals()\n\n    @staticmethod\n    def _convert_egg_info_reqs_to_simple_reqs(sections):\n        \"\"\"\n        Historically, setuptools would solicit and store 'extra'\n        requirements, including those with environment markers,\n        in separate sections. More modern tools expect each\n        dependency to be defined separately, with any relevant\n        extras and environment markers attached directly to that\n        requirement. This method converts the former to the\n        latter. See _test_deps_from_requires_text for an example.\n        \"\"\"\n        def make_condition(name):\n            return name and 'extra == \"{name}\"'.format(name=name)\n\n        def parse_condition(section):\n            section = section or ''\n            extra, sep, markers = section.partition(':')\n            if extra and markers:\n                markers = '({markers})'.format(markers=markers)\n            conditions = list(filter(None, [markers, make_condition(extra)]))\n            return '; ' + ' and '.join(conditions) if conditions else ''\n\n        for section, deps in sections.items():\n            for dep in deps:\n                yield dep + parse_condition(section)\n\n\nclass DistributionFinder(MetaPathFinder):\n    \"\"\"\n    A MetaPathFinder capable of discovering installed distributions.\n    \"\"\"\n\n    class Context:\n        \"\"\"\n        Keyword arguments presented by the caller to\n        ``distributions()`` or ``Distribution.discover()``\n        to narrow the scope of a search for distributions\n        in all DistributionFinders.\n\n        Each DistributionFinder may expect any parameters\n        and should attempt to honor the canonical\n        parameters defined below when appropriate.\n        \"\"\"\n\n        name = None\n        \"\"\"\n        Specific name for which a distribution finder should match.\n        A name of ``None`` matches all distributions.\n        \"\"\"\n\n        def __init__(self, **kwargs):\n            vars(self).update(kwargs)\n\n        @property\n        def path(self):\n            \"\"\"\n            The path that a distribution finder should search.\n\n            Typically refers to Python package paths and defaults\n            to ``sys.path``.\n            \"\"\"\n            return vars(self).get('path', sys.path)\n\n    @abc.abstractmethod\n    def find_distributions(self, context=Context()):\n        \"\"\"\n        Find distributions.\n\n        Return an iterable of all Distribution instances capable of\n        loading the metadata for packages matching the ``context``,\n        a DistributionFinder.Context instance.\n        \"\"\"\n\n\nclass FastPath:\n    \"\"\"\n    Micro-optimized class for searching a path for\n    children.\n    \"\"\"\n\n    def __init__(self, root):\n        self.root = root\n        self.base = os.path.basename(root).lower()\n\n    def joinpath(self, child):\n        return pathlib.Path(self.root, child)\n\n    def children(self):\n        with suppress(Exception):\n            return os.listdir(self.root or '')\n        with suppress(Exception):\n            return self.zip_children()\n        return []\n\n    def zip_children(self):\n        zip_path = zipfile.Path(self.root)\n        names = zip_path.root.namelist()\n        self.joinpath = zip_path.joinpath\n\n        return (\n            posixpath.split(child)[0]\n            for child in names\n            )\n\n    def is_egg(self, search):\n        base = self.base\n        return (\n            base == search.versionless_egg_name\n            or base.startswith(search.prefix)\n            and base.endswith('.egg'))\n\n    def search(self, name):\n        for child in self.children():\n            n_low = child.lower()\n            if (n_low in name.exact_matches\n                    or n_low.startswith(name.prefix)\n                    and n_low.endswith(name.suffixes)\n                    # legacy case:\n                    or self.is_egg(name) and n_low == 'egg-info'):\n                yield self.joinpath(child)\n\n\nclass Prepared:\n    \"\"\"\n    A prepared search for metadata on a possibly-named package.\n    \"\"\"\n    normalized = ''\n    prefix = ''\n    suffixes = '.dist-info', '.egg-info'\n    exact_matches = [''][:0]\n    versionless_egg_name = ''\n\n    def __init__(self, name):\n        self.name = name\n        if name is None:\n            return\n        self.normalized = name.lower().replace('-', '_')\n        self.prefix = self.normalized + '-'\n        self.exact_matches = [\n            self.normalized + suffix for suffix in self.suffixes]\n        self.versionless_egg_name = self.normalized + '.egg'\n\n\nclass MetadataPathFinder(DistributionFinder):\n    @classmethod\n    def find_distributions(cls, context=DistributionFinder.Context()):\n        \"\"\"\n        Find distributions.\n\n        Return an iterable of all Distribution instances capable of\n        loading the metadata for packages matching ``context.name``\n        (or all names if ``None`` indicated) along the paths in the list\n        of directories ``context.path``.\n        \"\"\"\n        found = cls._search_paths(context.name, context.path)\n        return map(PathDistribution, found)\n\n    @classmethod\n    def _search_paths(cls, name, paths):\n        \"\"\"Find metadata directories in paths heuristically.\"\"\"\n        return itertools.chain.from_iterable(\n            path.search(Prepared(name))\n            for path in map(FastPath, paths)\n            )\n\n\n\nclass PathDistribution(Distribution):\n    def __init__(self, path):\n        \"\"\"Construct a distribution from a path to the metadata directory.\n\n        :param path: A pathlib.Path or similar object supporting\n                     .joinpath(), __div__, .parent, and .read_text().\n        \"\"\"\n        self._path = path\n\n    def read_text(self, filename):\n        with suppress(FileNotFoundError, IsADirectoryError, KeyError,\n                      NotADirectoryError, PermissionError):\n            return self._path.joinpath(filename).read_text(encoding='utf-8')\n    read_text.__doc__ = Distribution.read_text.__doc__\n\n    def locate_file(self, path):\n        return self._path.parent / path\n\n\ndef distribution(distribution_name):\n    \"\"\"Get the ``Distribution`` instance for the named package.\n\n    :param distribution_name: The name of the distribution package as a string.\n    :return: A ``Distribution`` instance (or subclass thereof).\n    \"\"\"\n    return Distribution.from_name(distribution_name)\n\n\ndef distributions(**kwargs):\n    \"\"\"Get all ``Distribution`` instances in the current environment.\n\n    :return: An iterable of ``Distribution`` instances.\n    \"\"\"\n    return Distribution.discover(**kwargs)\n\n\ndef metadata(distribution_name):\n    \"\"\"Get the metadata for the named package.\n\n    :param distribution_name: The name of the distribution package to query.\n    :return: An email.Message containing the parsed metadata.\n    \"\"\"\n    return Distribution.from_name(distribution_name).metadata\n\n\ndef version(distribution_name):\n    \"\"\"Get the version string for the named package.\n\n    :param distribution_name: The name of the distribution package to query.\n    :return: The version string for the package as defined in the package's\n        \"Version\" metadata key.\n    \"\"\"\n    return distribution(distribution_name).version\n\n\ndef entry_points():\n    \"\"\"Return EntryPoint objects for all installed packages.\n\n    :return: EntryPoint objects for all installed packages.\n    \"\"\"\n    eps = itertools.chain.from_iterable(\n        dist.entry_points for dist in distributions())\n    by_group = operator.attrgetter('group')\n    ordered = sorted(eps, key=by_group)\n    grouped = itertools.groupby(ordered, by_group)\n    return {\n        group: tuple(eps)\n        for group, eps in grouped\n        }\n\n\ndef files(distribution_name):\n    \"\"\"Return a list of files for the named package.\n\n    :param distribution_name: The name of the distribution package to query.\n    :return: List of files composing the distribution.\n    \"\"\"\n    return distribution(distribution_name).files\n\n\ndef requires(distribution_name):\n    \"\"\"\n    Return a list of requirements for the named package.\n\n    :return: An iterator of requirements, suitable for\n    packaging.requirement.Requirement.\n    \"\"\"\n    return distribution(distribution_name).requires\n"
  },
  {
    "path": "rd/usr/lib/python3.8/importlib/resources.py",
    "content": "import os\nimport tempfile\n\nfrom . import abc as resources_abc\nfrom contextlib import contextmanager, suppress\nfrom importlib import import_module\nfrom importlib.abc import ResourceLoader\nfrom io import BytesIO, TextIOWrapper\nfrom pathlib import Path\nfrom types import ModuleType\nfrom typing import Iterable, Iterator, Optional, Set, Union   # noqa: F401\nfrom typing import cast\nfrom typing.io import BinaryIO, TextIO\nfrom zipimport import ZipImportError\n\n\n__all__ = [\n    'Package',\n    'Resource',\n    'contents',\n    'is_resource',\n    'open_binary',\n    'open_text',\n    'path',\n    'read_binary',\n    'read_text',\n    ]\n\n\nPackage = Union[str, ModuleType]\nResource = Union[str, os.PathLike]\n\n\ndef _get_package(package) -> ModuleType:\n    \"\"\"Take a package name or module object and return the module.\n\n    If a name, the module is imported.  If the passed or imported module\n    object is not a package, raise an exception.\n    \"\"\"\n    if hasattr(package, '__spec__'):\n        if package.__spec__.submodule_search_locations is None:\n            raise TypeError('{!r} is not a package'.format(\n                package.__spec__.name))\n        else:\n            return package\n    else:\n        module = import_module(package)\n        if module.__spec__.submodule_search_locations is None:\n            raise TypeError('{!r} is not a package'.format(package))\n        else:\n            return module\n\n\ndef _normalize_path(path) -> str:\n    \"\"\"Normalize a path by ensuring it is a string.\n\n    If the resulting string contains path separators, an exception is raised.\n    \"\"\"\n    parent, file_name = os.path.split(path)\n    if parent:\n        raise ValueError('{!r} must be only a file name'.format(path))\n    else:\n        return file_name\n\n\ndef _get_resource_reader(\n        package: ModuleType) -> Optional[resources_abc.ResourceReader]:\n    # Return the package's loader if it's a ResourceReader.  We can't use\n    # a issubclass() check here because apparently abc.'s __subclasscheck__()\n    # hook wants to create a weak reference to the object, but\n    # zipimport.zipimporter does not support weak references, resulting in a\n    # TypeError.  That seems terrible.\n    spec = package.__spec__\n    if hasattr(spec.loader, 'get_resource_reader'):\n        return cast(resources_abc.ResourceReader,\n                    spec.loader.get_resource_reader(spec.name))\n    return None\n\n\ndef _check_location(package):\n    if package.__spec__.origin is None or not package.__spec__.has_location:\n        raise FileNotFoundError(f'Package has no location {package!r}')\n\n\ndef open_binary(package: Package, resource: Resource) -> BinaryIO:\n    \"\"\"Return a file-like object opened for binary reading of the resource.\"\"\"\n    resource = _normalize_path(resource)\n    package = _get_package(package)\n    reader = _get_resource_reader(package)\n    if reader is not None:\n        return reader.open_resource(resource)\n    _check_location(package)\n    absolute_package_path = os.path.abspath(package.__spec__.origin)\n    package_path = os.path.dirname(absolute_package_path)\n    full_path = os.path.join(package_path, resource)\n    try:\n        return open(full_path, mode='rb')\n    except OSError:\n        # Just assume the loader is a resource loader; all the relevant\n        # importlib.machinery loaders are and an AttributeError for\n        # get_data() will make it clear what is needed from the loader.\n        loader = cast(ResourceLoader, package.__spec__.loader)\n        data = None\n        if hasattr(package.__spec__.loader, 'get_data'):\n            with suppress(OSError):\n                data = loader.get_data(full_path)\n        if data is None:\n            package_name = package.__spec__.name\n            message = '{!r} resource not found in {!r}'.format(\n                resource, package_name)\n            raise FileNotFoundError(message)\n        else:\n            return BytesIO(data)\n\n\ndef open_text(package: Package,\n              resource: Resource,\n              encoding: str = 'utf-8',\n              errors: str = 'strict') -> TextIO:\n    \"\"\"Return a file-like object opened for text reading of the resource.\"\"\"\n    resource = _normalize_path(resource)\n    package = _get_package(package)\n    reader = _get_resource_reader(package)\n    if reader is not None:\n        return TextIOWrapper(reader.open_resource(resource), encoding, errors)\n    _check_location(package)\n    absolute_package_path = os.path.abspath(package.__spec__.origin)\n    package_path = os.path.dirname(absolute_package_path)\n    full_path = os.path.join(package_path, resource)\n    try:\n        return open(full_path, mode='r', encoding=encoding, errors=errors)\n    except OSError:\n        # Just assume the loader is a resource loader; all the relevant\n        # importlib.machinery loaders are and an AttributeError for\n        # get_data() will make it clear what is needed from the loader.\n        loader = cast(ResourceLoader, package.__spec__.loader)\n        data = None\n        if hasattr(package.__spec__.loader, 'get_data'):\n            with suppress(OSError):\n                data = loader.get_data(full_path)\n        if data is None:\n            package_name = package.__spec__.name\n            message = '{!r} resource not found in {!r}'.format(\n                resource, package_name)\n            raise FileNotFoundError(message)\n        else:\n            return TextIOWrapper(BytesIO(data), encoding, errors)\n\n\ndef read_binary(package: Package, resource: Resource) -> bytes:\n    \"\"\"Return the binary contents of the resource.\"\"\"\n    resource = _normalize_path(resource)\n    package = _get_package(package)\n    with open_binary(package, resource) as fp:\n        return fp.read()\n\n\ndef read_text(package: Package,\n              resource: Resource,\n              encoding: str = 'utf-8',\n              errors: str = 'strict') -> str:\n    \"\"\"Return the decoded string of the resource.\n\n    The decoding-related arguments have the same semantics as those of\n    bytes.decode().\n    \"\"\"\n    resource = _normalize_path(resource)\n    package = _get_package(package)\n    with open_text(package, resource, encoding, errors) as fp:\n        return fp.read()\n\n\n@contextmanager\ndef path(package: Package, resource: Resource) -> Iterator[Path]:\n    \"\"\"A context manager providing a file path object to the resource.\n\n    If the resource does not already exist on its own on the file system,\n    a temporary file will be created. If the file was created, the file\n    will be deleted upon exiting the context manager (no exception is\n    raised if the file was deleted prior to the context manager\n    exiting).\n    \"\"\"\n    resource = _normalize_path(resource)\n    package = _get_package(package)\n    reader = _get_resource_reader(package)\n    if reader is not None:\n        try:\n            yield Path(reader.resource_path(resource))\n            return\n        except FileNotFoundError:\n            pass\n    else:\n        _check_location(package)\n    # Fall-through for both the lack of resource_path() *and* if\n    # resource_path() raises FileNotFoundError.\n    package_directory = Path(package.__spec__.origin).parent\n    file_path = package_directory / resource\n    if file_path.exists():\n        yield file_path\n    else:\n        with open_binary(package, resource) as fp:\n            data = fp.read()\n        # Not using tempfile.NamedTemporaryFile as it leads to deeper 'try'\n        # blocks due to the need to close the temporary file to work on\n        # Windows properly.\n        fd, raw_path = tempfile.mkstemp()\n        try:\n            os.write(fd, data)\n            os.close(fd)\n            yield Path(raw_path)\n        finally:\n            try:\n                os.remove(raw_path)\n            except FileNotFoundError:\n                pass\n\n\ndef is_resource(package: Package, name: str) -> bool:\n    \"\"\"True if 'name' is a resource inside 'package'.\n\n    Directories are *not* resources.\n    \"\"\"\n    package = _get_package(package)\n    _normalize_path(name)\n    reader = _get_resource_reader(package)\n    if reader is not None:\n        return reader.is_resource(name)\n    try:\n        package_contents = set(contents(package))\n    except (NotADirectoryError, FileNotFoundError):\n        return False\n    if name not in package_contents:\n        return False\n    # Just because the given file_name lives as an entry in the package's\n    # contents doesn't necessarily mean it's a resource.  Directories are not\n    # resources, so let's try to find out if it's a directory or not.\n    path = Path(package.__spec__.origin).parent / name\n    return path.is_file()\n\n\ndef contents(package: Package) -> Iterable[str]:\n    \"\"\"Return an iterable of entries in 'package'.\n\n    Note that not all entries are resources.  Specifically, directories are\n    not considered resources.  Use `is_resource()` on each entry returned here\n    to check if it is a resource or not.\n    \"\"\"\n    package = _get_package(package)\n    reader = _get_resource_reader(package)\n    if reader is not None:\n        return reader.contents()\n    # Is the package a namespace package?  By definition, namespace packages\n    # cannot have resources.  We could use _check_location() and catch the\n    # exception, but that's extra work, so just inline the check.\n    elif package.__spec__.origin is None or not package.__spec__.has_location:\n        return ()\n    else:\n        package_directory = Path(package.__spec__.origin).parent\n        return os.listdir(package_directory)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/importlib/util.py",
    "content": "\"\"\"Utility code for constructing importers, etc.\"\"\"\nfrom . import abc\nfrom ._bootstrap import module_from_spec\nfrom ._bootstrap import _resolve_name\nfrom ._bootstrap import spec_from_loader\nfrom ._bootstrap import _find_spec\nfrom ._bootstrap_external import MAGIC_NUMBER\nfrom ._bootstrap_external import _RAW_MAGIC_NUMBER\nfrom ._bootstrap_external import cache_from_source\nfrom ._bootstrap_external import decode_source\nfrom ._bootstrap_external import source_from_cache\nfrom ._bootstrap_external import spec_from_file_location\n\nfrom contextlib import contextmanager\nimport _imp\nimport functools\nimport sys\nimport types\nimport warnings\n\n\ndef source_hash(source_bytes):\n    \"Return the hash of *source_bytes* as used in hash-based pyc files.\"\n    return _imp.source_hash(_RAW_MAGIC_NUMBER, source_bytes)\n\n\ndef resolve_name(name, package):\n    \"\"\"Resolve a relative module name to an absolute one.\"\"\"\n    if not name.startswith('.'):\n        return name\n    elif not package:\n        raise ValueError(f'no package specified for {repr(name)} '\n                         '(required for relative module names)')\n    level = 0\n    for character in name:\n        if character != '.':\n            break\n        level += 1\n    return _resolve_name(name[level:], package, level)\n\n\ndef _find_spec_from_path(name, path=None):\n    \"\"\"Return the spec for the specified module.\n\n    First, sys.modules is checked to see if the module was already imported. If\n    so, then sys.modules[name].__spec__ is returned. If that happens to be\n    set to None, then ValueError is raised. If the module is not in\n    sys.modules, then sys.meta_path is searched for a suitable spec with the\n    value of 'path' given to the finders. None is returned if no spec could\n    be found.\n\n    Dotted names do not have their parent packages implicitly imported. You will\n    most likely need to explicitly import all parent packages in the proper\n    order for a submodule to get the correct spec.\n\n    \"\"\"\n    if name not in sys.modules:\n        return _find_spec(name, path)\n    else:\n        module = sys.modules[name]\n        if module is None:\n            return None\n        try:\n            spec = module.__spec__\n        except AttributeError:\n            raise ValueError('{}.__spec__ is not set'.format(name)) from None\n        else:\n            if spec is None:\n                raise ValueError('{}.__spec__ is None'.format(name))\n            return spec\n\n\ndef find_spec(name, package=None):\n    \"\"\"Return the spec for the specified module.\n\n    First, sys.modules is checked to see if the module was already imported. If\n    so, then sys.modules[name].__spec__ is returned. If that happens to be\n    set to None, then ValueError is raised. If the module is not in\n    sys.modules, then sys.meta_path is searched for a suitable spec with the\n    value of 'path' given to the finders. None is returned if no spec could\n    be found.\n\n    If the name is for submodule (contains a dot), the parent module is\n    automatically imported.\n\n    The name and package arguments work the same as importlib.import_module().\n    In other words, relative module names (with leading dots) work.\n\n    \"\"\"\n    fullname = resolve_name(name, package) if name.startswith('.') else name\n    if fullname not in sys.modules:\n        parent_name = fullname.rpartition('.')[0]\n        if parent_name:\n            parent = __import__(parent_name, fromlist=['__path__'])\n            try:\n                parent_path = parent.__path__\n            except AttributeError as e:\n                raise ModuleNotFoundError(\n                    f\"__path__ attribute not found on {parent_name!r} \"\n                    f\"while trying to find {fullname!r}\", name=fullname) from e\n        else:\n            parent_path = None\n        return _find_spec(fullname, parent_path)\n    else:\n        module = sys.modules[fullname]\n        if module is None:\n            return None\n        try:\n            spec = module.__spec__\n        except AttributeError:\n            raise ValueError('{}.__spec__ is not set'.format(name)) from None\n        else:\n            if spec is None:\n                raise ValueError('{}.__spec__ is None'.format(name))\n            return spec\n\n\n@contextmanager\ndef _module_to_load(name):\n    is_reload = name in sys.modules\n\n    module = sys.modules.get(name)\n    if not is_reload:\n        # This must be done before open() is called as the 'io' module\n        # implicitly imports 'locale' and would otherwise trigger an\n        # infinite loop.\n        module = type(sys)(name)\n        # This must be done before putting the module in sys.modules\n        # (otherwise an optimization shortcut in import.c becomes wrong)\n        module.__initializing__ = True\n        sys.modules[name] = module\n    try:\n        yield module\n    except Exception:\n        if not is_reload:\n            try:\n                del sys.modules[name]\n            except KeyError:\n                pass\n    finally:\n        module.__initializing__ = False\n\n\ndef set_package(fxn):\n    \"\"\"Set __package__ on the returned module.\n\n    This function is deprecated.\n\n    \"\"\"\n    @functools.wraps(fxn)\n    def set_package_wrapper(*args, **kwargs):\n        warnings.warn('The import system now takes care of this automatically.',\n                      DeprecationWarning, stacklevel=2)\n        module = fxn(*args, **kwargs)\n        if getattr(module, '__package__', None) is None:\n            module.__package__ = module.__name__\n            if not hasattr(module, '__path__'):\n                module.__package__ = module.__package__.rpartition('.')[0]\n        return module\n    return set_package_wrapper\n\n\ndef set_loader(fxn):\n    \"\"\"Set __loader__ on the returned module.\n\n    This function is deprecated.\n\n    \"\"\"\n    @functools.wraps(fxn)\n    def set_loader_wrapper(self, *args, **kwargs):\n        warnings.warn('The import system now takes care of this automatically.',\n                      DeprecationWarning, stacklevel=2)\n        module = fxn(self, *args, **kwargs)\n        if getattr(module, '__loader__', None) is None:\n            module.__loader__ = self\n        return module\n    return set_loader_wrapper\n\n\ndef module_for_loader(fxn):\n    \"\"\"Decorator to handle selecting the proper module for loaders.\n\n    The decorated function is passed the module to use instead of the module\n    name. The module passed in to the function is either from sys.modules if\n    it already exists or is a new module. If the module is new, then __name__\n    is set the first argument to the method, __loader__ is set to self, and\n    __package__ is set accordingly (if self.is_package() is defined) will be set\n    before it is passed to the decorated function (if self.is_package() does\n    not work for the module it will be set post-load).\n\n    If an exception is raised and the decorator created the module it is\n    subsequently removed from sys.modules.\n\n    The decorator assumes that the decorated function takes the module name as\n    the second argument.\n\n    \"\"\"\n    warnings.warn('The import system now takes care of this automatically.',\n                  DeprecationWarning, stacklevel=2)\n    @functools.wraps(fxn)\n    def module_for_loader_wrapper(self, fullname, *args, **kwargs):\n        with _module_to_load(fullname) as module:\n            module.__loader__ = self\n            try:\n                is_package = self.is_package(fullname)\n            except (ImportError, AttributeError):\n                pass\n            else:\n                if is_package:\n                    module.__package__ = fullname\n                else:\n                    module.__package__ = fullname.rpartition('.')[0]\n            # If __package__ was not set above, __import__() will do it later.\n            return fxn(self, module, *args, **kwargs)\n\n    return module_for_loader_wrapper\n\n\nclass _LazyModule(types.ModuleType):\n\n    \"\"\"A subclass of the module type which triggers loading upon attribute access.\"\"\"\n\n    def __getattribute__(self, attr):\n        \"\"\"Trigger the load of the module and return the attribute.\"\"\"\n        # All module metadata must be garnered from __spec__ in order to avoid\n        # using mutated values.\n        # Stop triggering this method.\n        self.__class__ = types.ModuleType\n        # Get the original name to make sure no object substitution occurred\n        # in sys.modules.\n        original_name = self.__spec__.name\n        # Figure out exactly what attributes were mutated between the creation\n        # of the module and now.\n        attrs_then = self.__spec__.loader_state['__dict__']\n        original_type = self.__spec__.loader_state['__class__']\n        attrs_now = self.__dict__\n        attrs_updated = {}\n        for key, value in attrs_now.items():\n            # Code that set the attribute may have kept a reference to the\n            # assigned object, making identity more important than equality.\n            if key not in attrs_then:\n                attrs_updated[key] = value\n            elif id(attrs_now[key]) != id(attrs_then[key]):\n                attrs_updated[key] = value\n        self.__spec__.loader.exec_module(self)\n        # If exec_module() was used directly there is no guarantee the module\n        # object was put into sys.modules.\n        if original_name in sys.modules:\n            if id(self) != id(sys.modules[original_name]):\n                raise ValueError(f\"module object for {original_name!r} \"\n                                  \"substituted in sys.modules during a lazy \"\n                                  \"load\")\n        # Update after loading since that's what would happen in an eager\n        # loading situation.\n        self.__dict__.update(attrs_updated)\n        return getattr(self, attr)\n\n    def __delattr__(self, attr):\n        \"\"\"Trigger the load and then perform the deletion.\"\"\"\n        # To trigger the load and raise an exception if the attribute\n        # doesn't exist.\n        self.__getattribute__(attr)\n        delattr(self, attr)\n\n\nclass LazyLoader(abc.Loader):\n\n    \"\"\"A loader that creates a module which defers loading until attribute access.\"\"\"\n\n    @staticmethod\n    def __check_eager_loader(loader):\n        if not hasattr(loader, 'exec_module'):\n            raise TypeError('loader must define exec_module()')\n\n    @classmethod\n    def factory(cls, loader):\n        \"\"\"Construct a callable which returns the eager loader made lazy.\"\"\"\n        cls.__check_eager_loader(loader)\n        return lambda *args, **kwargs: cls(loader(*args, **kwargs))\n\n    def __init__(self, loader):\n        self.__check_eager_loader(loader)\n        self.loader = loader\n\n    def create_module(self, spec):\n        return self.loader.create_module(spec)\n\n    def exec_module(self, module):\n        \"\"\"Make the module load lazily.\"\"\"\n        module.__spec__.loader = self.loader\n        module.__loader__ = self.loader\n        # Don't need to worry about deep-copying as trying to set an attribute\n        # on an object would have triggered the load,\n        # e.g. ``module.__spec__.loader = None`` would trigger a load from\n        # trying to access module.__spec__.\n        loader_state = {}\n        loader_state['__dict__'] = module.__dict__.copy()\n        loader_state['__class__'] = module.__class__\n        module.__spec__.loader_state = loader_state\n        module.__class__ = _LazyModule\n"
  },
  {
    "path": "rd/usr/lib/python3.8/inspect.py",
    "content": "\"\"\"Get useful information from live Python objects.\n\nThis module encapsulates the interface provided by the internal special\nattributes (co_*, im_*, tb_*, etc.) in a friendlier fashion.\nIt also provides some help for examining source code and class layout.\n\nHere are some of the useful functions provided by this module:\n\n    ismodule(), isclass(), ismethod(), isfunction(), isgeneratorfunction(),\n        isgenerator(), istraceback(), isframe(), iscode(), isbuiltin(),\n        isroutine() - check object types\n    getmembers() - get members of an object that satisfy a given condition\n\n    getfile(), getsourcefile(), getsource() - find an object's source code\n    getdoc(), getcomments() - get documentation on an object\n    getmodule() - determine the module that an object came from\n    getclasstree() - arrange classes so as to represent their hierarchy\n\n    getargvalues(), getcallargs() - get info about function arguments\n    getfullargspec() - same, with support for Python 3 features\n    formatargvalues() - format an argument spec\n    getouterframes(), getinnerframes() - get info about frames\n    currentframe() - get the current stack frame\n    stack(), trace() - get info about frames on the stack or in a traceback\n\n    signature() - get a Signature object for the callable\n\"\"\"\n\n# This module is in the public domain.  No warranties.\n\n__author__ = ('Ka-Ping Yee <ping@lfw.org>',\n              'Yury Selivanov <yselivanov@sprymix.com>')\n\nimport abc\nimport dis\nimport collections.abc\nimport enum\nimport importlib.machinery\nimport itertools\nimport linecache\nimport os\nimport re\nimport sys\nimport tokenize\nimport token\nimport types\nimport warnings\nimport functools\nimport builtins\nfrom operator import attrgetter\nfrom collections import namedtuple, OrderedDict\n\n# Create constants for the compiler flags in Include/code.h\n# We try to get them from dis to avoid duplication\nmod_dict = globals()\nfor k, v in dis.COMPILER_FLAG_NAMES.items():\n    mod_dict[\"CO_\" + v] = k\n\n# See Include/object.h\nTPFLAGS_IS_ABSTRACT = 1 << 20\n\n# ----------------------------------------------------------- type-checking\ndef ismodule(object):\n    \"\"\"Return true if the object is a module.\n\n    Module objects provide these attributes:\n        __cached__      pathname to byte compiled file\n        __doc__         documentation string\n        __file__        filename (missing for built-in modules)\"\"\"\n    return isinstance(object, types.ModuleType)\n\ndef isclass(object):\n    \"\"\"Return true if the object is a class.\n\n    Class objects provide these attributes:\n        __doc__         documentation string\n        __module__      name of module in which this class was defined\"\"\"\n    return isinstance(object, type)\n\ndef ismethod(object):\n    \"\"\"Return true if the object is an instance method.\n\n    Instance method objects provide these attributes:\n        __doc__         documentation string\n        __name__        name with which this method was defined\n        __func__        function object containing implementation of method\n        __self__        instance to which this method is bound\"\"\"\n    return isinstance(object, types.MethodType)\n\ndef ismethoddescriptor(object):\n    \"\"\"Return true if the object is a method descriptor.\n\n    But not if ismethod() or isclass() or isfunction() are true.\n\n    This is new in Python 2.2, and, for example, is true of int.__add__.\n    An object passing this test has a __get__ attribute but not a __set__\n    attribute, but beyond that the set of attributes varies.  __name__ is\n    usually sensible, and __doc__ often is.\n\n    Methods implemented via descriptors that also pass one of the other\n    tests return false from the ismethoddescriptor() test, simply because\n    the other tests promise more -- you can, e.g., count on having the\n    __func__ attribute (etc) when an object passes ismethod().\"\"\"\n    if isclass(object) or ismethod(object) or isfunction(object):\n        # mutual exclusion\n        return False\n    tp = type(object)\n    return hasattr(tp, \"__get__\") and not hasattr(tp, \"__set__\")\n\ndef isdatadescriptor(object):\n    \"\"\"Return true if the object is a data descriptor.\n\n    Data descriptors have a __set__ or a __delete__ attribute.  Examples are\n    properties (defined in Python) and getsets and members (defined in C).\n    Typically, data descriptors will also have __name__ and __doc__ attributes\n    (properties, getsets, and members have both of these attributes), but this\n    is not guaranteed.\"\"\"\n    if isclass(object) or ismethod(object) or isfunction(object):\n        # mutual exclusion\n        return False\n    tp = type(object)\n    return hasattr(tp, \"__set__\") or hasattr(tp, \"__delete__\")\n\nif hasattr(types, 'MemberDescriptorType'):\n    # CPython and equivalent\n    def ismemberdescriptor(object):\n        \"\"\"Return true if the object is a member descriptor.\n\n        Member descriptors are specialized descriptors defined in extension\n        modules.\"\"\"\n        return isinstance(object, types.MemberDescriptorType)\nelse:\n    # Other implementations\n    def ismemberdescriptor(object):\n        \"\"\"Return true if the object is a member descriptor.\n\n        Member descriptors are specialized descriptors defined in extension\n        modules.\"\"\"\n        return False\n\nif hasattr(types, 'GetSetDescriptorType'):\n    # CPython and equivalent\n    def isgetsetdescriptor(object):\n        \"\"\"Return true if the object is a getset descriptor.\n\n        getset descriptors are specialized descriptors defined in extension\n        modules.\"\"\"\n        return isinstance(object, types.GetSetDescriptorType)\nelse:\n    # Other implementations\n    def isgetsetdescriptor(object):\n        \"\"\"Return true if the object is a getset descriptor.\n\n        getset descriptors are specialized descriptors defined in extension\n        modules.\"\"\"\n        return False\n\ndef isfunction(object):\n    \"\"\"Return true if the object is a user-defined function.\n\n    Function objects provide these attributes:\n        __doc__         documentation string\n        __name__        name with which this function was defined\n        __code__        code object containing compiled function bytecode\n        __defaults__    tuple of any default values for arguments\n        __globals__     global namespace in which this function was defined\n        __annotations__ dict of parameter annotations\n        __kwdefaults__  dict of keyword only parameters with defaults\"\"\"\n    return isinstance(object, types.FunctionType)\n\ndef _has_code_flag(f, flag):\n    \"\"\"Return true if ``f`` is a function (or a method or functools.partial\n    wrapper wrapping a function) whose code object has the given ``flag``\n    set in its flags.\"\"\"\n    while ismethod(f):\n        f = f.__func__\n    f = functools._unwrap_partial(f)\n    if not isfunction(f):\n        return False\n    return bool(f.__code__.co_flags & flag)\n\ndef isgeneratorfunction(obj):\n    \"\"\"Return true if the object is a user-defined generator function.\n\n    Generator function objects provide the same attributes as functions.\n    See help(isfunction) for a list of attributes.\"\"\"\n    return _has_code_flag(obj, CO_GENERATOR)\n\ndef iscoroutinefunction(obj):\n    \"\"\"Return true if the object is a coroutine function.\n\n    Coroutine functions are defined with \"async def\" syntax.\n    \"\"\"\n    return _has_code_flag(obj, CO_COROUTINE)\n\ndef isasyncgenfunction(obj):\n    \"\"\"Return true if the object is an asynchronous generator function.\n\n    Asynchronous generator functions are defined with \"async def\"\n    syntax and have \"yield\" expressions in their body.\n    \"\"\"\n    return _has_code_flag(obj, CO_ASYNC_GENERATOR)\n\ndef isasyncgen(object):\n    \"\"\"Return true if the object is an asynchronous generator.\"\"\"\n    return isinstance(object, types.AsyncGeneratorType)\n\ndef isgenerator(object):\n    \"\"\"Return true if the object is a generator.\n\n    Generator objects provide these attributes:\n        __iter__        defined to support iteration over container\n        close           raises a new GeneratorExit exception inside the\n                        generator to terminate the iteration\n        gi_code         code object\n        gi_frame        frame object or possibly None once the generator has\n                        been exhausted\n        gi_running      set to 1 when generator is executing, 0 otherwise\n        next            return the next item from the container\n        send            resumes the generator and \"sends\" a value that becomes\n                        the result of the current yield-expression\n        throw           used to raise an exception inside the generator\"\"\"\n    return isinstance(object, types.GeneratorType)\n\ndef iscoroutine(object):\n    \"\"\"Return true if the object is a coroutine.\"\"\"\n    return isinstance(object, types.CoroutineType)\n\ndef isawaitable(object):\n    \"\"\"Return true if object can be passed to an ``await`` expression.\"\"\"\n    return (isinstance(object, types.CoroutineType) or\n            isinstance(object, types.GeneratorType) and\n                bool(object.gi_code.co_flags & CO_ITERABLE_COROUTINE) or\n            isinstance(object, collections.abc.Awaitable))\n\ndef istraceback(object):\n    \"\"\"Return true if the object is a traceback.\n\n    Traceback objects provide these attributes:\n        tb_frame        frame object at this level\n        tb_lasti        index of last attempted instruction in bytecode\n        tb_lineno       current line number in Python source code\n        tb_next         next inner traceback object (called by this level)\"\"\"\n    return isinstance(object, types.TracebackType)\n\ndef isframe(object):\n    \"\"\"Return true if the object is a frame object.\n\n    Frame objects provide these attributes:\n        f_back          next outer frame object (this frame's caller)\n        f_builtins      built-in namespace seen by this frame\n        f_code          code object being executed in this frame\n        f_globals       global namespace seen by this frame\n        f_lasti         index of last attempted instruction in bytecode\n        f_lineno        current line number in Python source code\n        f_locals        local namespace seen by this frame\n        f_trace         tracing function for this frame, or None\"\"\"\n    return isinstance(object, types.FrameType)\n\ndef iscode(object):\n    \"\"\"Return true if the object is a code object.\n\n    Code objects provide these attributes:\n        co_argcount         number of arguments (not including *, ** args\n                            or keyword only arguments)\n        co_code             string of raw compiled bytecode\n        co_cellvars         tuple of names of cell variables\n        co_consts           tuple of constants used in the bytecode\n        co_filename         name of file in which this code object was created\n        co_firstlineno      number of first line in Python source code\n        co_flags            bitmap: 1=optimized | 2=newlocals | 4=*arg | 8=**arg\n                            | 16=nested | 32=generator | 64=nofree | 128=coroutine\n                            | 256=iterable_coroutine | 512=async_generator\n        co_freevars         tuple of names of free variables\n        co_posonlyargcount  number of positional only arguments\n        co_kwonlyargcount   number of keyword only arguments (not including ** arg)\n        co_lnotab           encoded mapping of line numbers to bytecode indices\n        co_name             name with which this code object was defined\n        co_names            tuple of names of local variables\n        co_nlocals          number of local variables\n        co_stacksize        virtual machine stack space required\n        co_varnames         tuple of names of arguments and local variables\"\"\"\n    return isinstance(object, types.CodeType)\n\ndef isbuiltin(object):\n    \"\"\"Return true if the object is a built-in function or method.\n\n    Built-in functions and methods provide these attributes:\n        __doc__         documentation string\n        __name__        original name of this function or method\n        __self__        instance to which a method is bound, or None\"\"\"\n    return isinstance(object, types.BuiltinFunctionType)\n\ndef isroutine(object):\n    \"\"\"Return true if the object is any kind of function or method.\"\"\"\n    return (isbuiltin(object)\n            or isfunction(object)\n            or ismethod(object)\n            or ismethoddescriptor(object))\n\ndef isabstract(object):\n    \"\"\"Return true if the object is an abstract base class (ABC).\"\"\"\n    if not isinstance(object, type):\n        return False\n    if object.__flags__ & TPFLAGS_IS_ABSTRACT:\n        return True\n    if not issubclass(type(object), abc.ABCMeta):\n        return False\n    if hasattr(object, '__abstractmethods__'):\n        # It looks like ABCMeta.__new__ has finished running;\n        # TPFLAGS_IS_ABSTRACT should have been accurate.\n        return False\n    # It looks like ABCMeta.__new__ has not finished running yet; we're\n    # probably in __init_subclass__. We'll look for abstractmethods manually.\n    for name, value in object.__dict__.items():\n        if getattr(value, \"__isabstractmethod__\", False):\n            return True\n    for base in object.__bases__:\n        for name in getattr(base, \"__abstractmethods__\", ()):\n            value = getattr(object, name, None)\n            if getattr(value, \"__isabstractmethod__\", False):\n                return True\n    return False\n\ndef getmembers(object, predicate=None):\n    \"\"\"Return all members of an object as (name, value) pairs sorted by name.\n    Optionally, only return members that satisfy a given predicate.\"\"\"\n    if isclass(object):\n        mro = (object,) + getmro(object)\n    else:\n        mro = ()\n    results = []\n    processed = set()\n    names = dir(object)\n    # :dd any DynamicClassAttributes to the list of names if object is a class;\n    # this may result in duplicate entries if, for example, a virtual\n    # attribute with the same name as a DynamicClassAttribute exists\n    try:\n        for base in object.__bases__:\n            for k, v in base.__dict__.items():\n                if isinstance(v, types.DynamicClassAttribute):\n                    names.append(k)\n    except AttributeError:\n        pass\n    for key in names:\n        # First try to get the value via getattr.  Some descriptors don't\n        # like calling their __get__ (see bug #1785), so fall back to\n        # looking in the __dict__.\n        try:\n            value = getattr(object, key)\n            # handle the duplicate key\n            if key in processed:\n                raise AttributeError\n        except AttributeError:\n            for base in mro:\n                if key in base.__dict__:\n                    value = base.__dict__[key]\n                    break\n            else:\n                # could be a (currently) missing slot member, or a buggy\n                # __dir__; discard and move on\n                continue\n        if not predicate or predicate(value):\n            results.append((key, value))\n        processed.add(key)\n    results.sort(key=lambda pair: pair[0])\n    return results\n\nAttribute = namedtuple('Attribute', 'name kind defining_class object')\n\ndef classify_class_attrs(cls):\n    \"\"\"Return list of attribute-descriptor tuples.\n\n    For each name in dir(cls), the return list contains a 4-tuple\n    with these elements:\n\n        0. The name (a string).\n\n        1. The kind of attribute this is, one of these strings:\n               'class method'    created via classmethod()\n               'static method'   created via staticmethod()\n               'property'        created via property()\n               'method'          any other flavor of method or descriptor\n               'data'            not a method\n\n        2. The class which defined this attribute (a class).\n\n        3. The object as obtained by calling getattr; if this fails, or if the\n           resulting object does not live anywhere in the class' mro (including\n           metaclasses) then the object is looked up in the defining class's\n           dict (found by walking the mro).\n\n    If one of the items in dir(cls) is stored in the metaclass it will now\n    be discovered and not have None be listed as the class in which it was\n    defined.  Any items whose home class cannot be discovered are skipped.\n    \"\"\"\n\n    mro = getmro(cls)\n    metamro = getmro(type(cls)) # for attributes stored in the metaclass\n    metamro = tuple(cls for cls in metamro if cls not in (type, object))\n    class_bases = (cls,) + mro\n    all_bases = class_bases + metamro\n    names = dir(cls)\n    # :dd any DynamicClassAttributes to the list of names;\n    # this may result in duplicate entries if, for example, a virtual\n    # attribute with the same name as a DynamicClassAttribute exists.\n    for base in mro:\n        for k, v in base.__dict__.items():\n            if isinstance(v, types.DynamicClassAttribute):\n                names.append(k)\n    result = []\n    processed = set()\n\n    for name in names:\n        # Get the object associated with the name, and where it was defined.\n        # Normal objects will be looked up with both getattr and directly in\n        # its class' dict (in case getattr fails [bug #1785], and also to look\n        # for a docstring).\n        # For DynamicClassAttributes on the second pass we only look in the\n        # class's dict.\n        #\n        # Getting an obj from the __dict__ sometimes reveals more than\n        # using getattr.  Static and class methods are dramatic examples.\n        homecls = None\n        get_obj = None\n        dict_obj = None\n        if name not in processed:\n            try:\n                if name == '__dict__':\n                    raise Exception(\"__dict__ is special, don't want the proxy\")\n                get_obj = getattr(cls, name)\n            except Exception as exc:\n                pass\n            else:\n                homecls = getattr(get_obj, \"__objclass__\", homecls)\n                if homecls not in class_bases:\n                    # if the resulting object does not live somewhere in the\n                    # mro, drop it and search the mro manually\n                    homecls = None\n                    last_cls = None\n                    # first look in the classes\n                    for srch_cls in class_bases:\n                        srch_obj = getattr(srch_cls, name, None)\n                        if srch_obj is get_obj:\n                            last_cls = srch_cls\n                    # then check the metaclasses\n                    for srch_cls in metamro:\n                        try:\n                            srch_obj = srch_cls.__getattr__(cls, name)\n                        except AttributeError:\n                            continue\n                        if srch_obj is get_obj:\n                            last_cls = srch_cls\n                    if last_cls is not None:\n                        homecls = last_cls\n        for base in all_bases:\n            if name in base.__dict__:\n                dict_obj = base.__dict__[name]\n                if homecls not in metamro:\n                    homecls = base\n                break\n        if homecls is None:\n            # unable to locate the attribute anywhere, most likely due to\n            # buggy custom __dir__; discard and move on\n            continue\n        obj = get_obj if get_obj is not None else dict_obj\n        # Classify the object or its descriptor.\n        if isinstance(dict_obj, (staticmethod, types.BuiltinMethodType)):\n            kind = \"static method\"\n            obj = dict_obj\n        elif isinstance(dict_obj, (classmethod, types.ClassMethodDescriptorType)):\n            kind = \"class method\"\n            obj = dict_obj\n        elif isinstance(dict_obj, property):\n            kind = \"property\"\n            obj = dict_obj\n        elif isroutine(obj):\n            kind = \"method\"\n        else:\n            kind = \"data\"\n        result.append(Attribute(name, kind, homecls, obj))\n        processed.add(name)\n    return result\n\n# ----------------------------------------------------------- class helpers\n\ndef getmro(cls):\n    \"Return tuple of base classes (including cls) in method resolution order.\"\n    return cls.__mro__\n\n# -------------------------------------------------------- function helpers\n\ndef unwrap(func, *, stop=None):\n    \"\"\"Get the object wrapped by *func*.\n\n   Follows the chain of :attr:`__wrapped__` attributes returning the last\n   object in the chain.\n\n   *stop* is an optional callback accepting an object in the wrapper chain\n   as its sole argument that allows the unwrapping to be terminated early if\n   the callback returns a true value. If the callback never returns a true\n   value, the last object in the chain is returned as usual. For example,\n   :func:`signature` uses this to stop unwrapping if any object in the\n   chain has a ``__signature__`` attribute defined.\n\n   :exc:`ValueError` is raised if a cycle is encountered.\n\n    \"\"\"\n    if stop is None:\n        def _is_wrapper(f):\n            return hasattr(f, '__wrapped__')\n    else:\n        def _is_wrapper(f):\n            return hasattr(f, '__wrapped__') and not stop(f)\n    f = func  # remember the original func for error reporting\n    # Memoise by id to tolerate non-hashable objects, but store objects to\n    # ensure they aren't destroyed, which would allow their IDs to be reused.\n    memo = {id(f): f}\n    recursion_limit = sys.getrecursionlimit()\n    while _is_wrapper(func):\n        func = func.__wrapped__\n        id_func = id(func)\n        if (id_func in memo) or (len(memo) >= recursion_limit):\n            raise ValueError('wrapper loop when unwrapping {!r}'.format(f))\n        memo[id_func] = func\n    return func\n\n# -------------------------------------------------- source code extraction\ndef indentsize(line):\n    \"\"\"Return the indent size, in spaces, at the start of a line of text.\"\"\"\n    expline = line.expandtabs()\n    return len(expline) - len(expline.lstrip())\n\ndef _findclass(func):\n    cls = sys.modules.get(func.__module__)\n    if cls is None:\n        return None\n    for name in func.__qualname__.split('.')[:-1]:\n        cls = getattr(cls, name)\n    if not isclass(cls):\n        return None\n    return cls\n\ndef _finddoc(obj):\n    if isclass(obj):\n        for base in obj.__mro__:\n            if base is not object:\n                try:\n                    doc = base.__doc__\n                except AttributeError:\n                    continue\n                if doc is not None:\n                    return doc\n        return None\n\n    if ismethod(obj):\n        name = obj.__func__.__name__\n        self = obj.__self__\n        if (isclass(self) and\n            getattr(getattr(self, name, None), '__func__') is obj.__func__):\n            # classmethod\n            cls = self\n        else:\n            cls = self.__class__\n    elif isfunction(obj):\n        name = obj.__name__\n        cls = _findclass(obj)\n        if cls is None or getattr(cls, name) is not obj:\n            return None\n    elif isbuiltin(obj):\n        name = obj.__name__\n        self = obj.__self__\n        if (isclass(self) and\n            self.__qualname__ + '.' + name == obj.__qualname__):\n            # classmethod\n            cls = self\n        else:\n            cls = self.__class__\n    # Should be tested before isdatadescriptor().\n    elif isinstance(obj, property):\n        func = obj.fget\n        name = func.__name__\n        cls = _findclass(func)\n        if cls is None or getattr(cls, name) is not obj:\n            return None\n    elif ismethoddescriptor(obj) or isdatadescriptor(obj):\n        name = obj.__name__\n        cls = obj.__objclass__\n        if getattr(cls, name) is not obj:\n            return None\n        if ismemberdescriptor(obj):\n            slots = getattr(cls, '__slots__', None)\n            if isinstance(slots, dict) and name in slots:\n                return slots[name]\n    else:\n        return None\n    for base in cls.__mro__:\n        try:\n            doc = getattr(base, name).__doc__\n        except AttributeError:\n            continue\n        if doc is not None:\n            return doc\n    return None\n\ndef getdoc(object):\n    \"\"\"Get the documentation string for an object.\n\n    All tabs are expanded to spaces.  To clean up docstrings that are\n    indented to line up with blocks of code, any whitespace than can be\n    uniformly removed from the second line onwards is removed.\"\"\"\n    try:\n        doc = object.__doc__\n    except AttributeError:\n        return None\n    if doc is None:\n        try:\n            doc = _finddoc(object)\n        except (AttributeError, TypeError):\n            return None\n    if not isinstance(doc, str):\n        return None\n    return cleandoc(doc)\n\ndef cleandoc(doc):\n    \"\"\"Clean up indentation from docstrings.\n\n    Any whitespace that can be uniformly removed from the second line\n    onwards is removed.\"\"\"\n    try:\n        lines = doc.expandtabs().split('\\n')\n    except UnicodeError:\n        return None\n    else:\n        # Find minimum indentation of any non-blank lines after first line.\n        margin = sys.maxsize\n        for line in lines[1:]:\n            content = len(line.lstrip())\n            if content:\n                indent = len(line) - content\n                margin = min(margin, indent)\n        # Remove indentation.\n        if lines:\n            lines[0] = lines[0].lstrip()\n        if margin < sys.maxsize:\n            for i in range(1, len(lines)): lines[i] = lines[i][margin:]\n        # Remove any trailing or leading blank lines.\n        while lines and not lines[-1]:\n            lines.pop()\n        while lines and not lines[0]:\n            lines.pop(0)\n        return '\\n'.join(lines)\n\ndef getfile(object):\n    \"\"\"Work out which source or compiled file an object was defined in.\"\"\"\n    if ismodule(object):\n        if getattr(object, '__file__', None):\n            return object.__file__\n        raise TypeError('{!r} is a built-in module'.format(object))\n    if isclass(object):\n        if hasattr(object, '__module__'):\n            module = sys.modules.get(object.__module__)\n            if getattr(module, '__file__', None):\n                return module.__file__\n        raise TypeError('{!r} is a built-in class'.format(object))\n    if ismethod(object):\n        object = object.__func__\n    if isfunction(object):\n        object = object.__code__\n    if istraceback(object):\n        object = object.tb_frame\n    if isframe(object):\n        object = object.f_code\n    if iscode(object):\n        return object.co_filename\n    raise TypeError('module, class, method, function, traceback, frame, or '\n                    'code object was expected, got {}'.format(\n                    type(object).__name__))\n\ndef getmodulename(path):\n    \"\"\"Return the module name for a given file, or None.\"\"\"\n    fname = os.path.basename(path)\n    # Check for paths that look like an actual module file\n    suffixes = [(-len(suffix), suffix)\n                    for suffix in importlib.machinery.all_suffixes()]\n    suffixes.sort() # try longest suffixes first, in case they overlap\n    for neglen, suffix in suffixes:\n        if fname.endswith(suffix):\n            return fname[:neglen]\n    return None\n\ndef getsourcefile(object):\n    \"\"\"Return the filename that can be used to locate an object's source.\n    Return None if no way can be identified to get the source.\n    \"\"\"\n    filename = getfile(object)\n    all_bytecode_suffixes = importlib.machinery.DEBUG_BYTECODE_SUFFIXES[:]\n    all_bytecode_suffixes += importlib.machinery.OPTIMIZED_BYTECODE_SUFFIXES[:]\n    if any(filename.endswith(s) for s in all_bytecode_suffixes):\n        filename = (os.path.splitext(filename)[0] +\n                    importlib.machinery.SOURCE_SUFFIXES[0])\n    elif any(filename.endswith(s) for s in\n                 importlib.machinery.EXTENSION_SUFFIXES):\n        return None\n    if os.path.exists(filename):\n        return filename\n    # only return a non-existent filename if the module has a PEP 302 loader\n    if getattr(getmodule(object, filename), '__loader__', None) is not None:\n        return filename\n    # or it is in the linecache\n    if filename in linecache.cache:\n        return filename\n\ndef getabsfile(object, _filename=None):\n    \"\"\"Return an absolute path to the source or compiled file for an object.\n\n    The idea is for each object to have a unique origin, so this routine\n    normalizes the result as much as possible.\"\"\"\n    if _filename is None:\n        _filename = getsourcefile(object) or getfile(object)\n    return os.path.normcase(os.path.abspath(_filename))\n\nmodulesbyfile = {}\n_filesbymodname = {}\n\ndef getmodule(object, _filename=None):\n    \"\"\"Return the module an object was defined in, or None if not found.\"\"\"\n    if ismodule(object):\n        return object\n    if hasattr(object, '__module__'):\n        return sys.modules.get(object.__module__)\n    # Try the filename to modulename cache\n    if _filename is not None and _filename in modulesbyfile:\n        return sys.modules.get(modulesbyfile[_filename])\n    # Try the cache again with the absolute file name\n    try:\n        file = getabsfile(object, _filename)\n    except TypeError:\n        return None\n    if file in modulesbyfile:\n        return sys.modules.get(modulesbyfile[file])\n    # Update the filename to module name cache and check yet again\n    # Copy sys.modules in order to cope with changes while iterating\n    for modname, module in sys.modules.copy().items():\n        if ismodule(module) and hasattr(module, '__file__'):\n            f = module.__file__\n            if f == _filesbymodname.get(modname, None):\n                # Have already mapped this module, so skip it\n                continue\n            _filesbymodname[modname] = f\n            f = getabsfile(module)\n            # Always map to the name the module knows itself by\n            modulesbyfile[f] = modulesbyfile[\n                os.path.realpath(f)] = module.__name__\n    if file in modulesbyfile:\n        return sys.modules.get(modulesbyfile[file])\n    # Check the main module\n    main = sys.modules['__main__']\n    if not hasattr(object, '__name__'):\n        return None\n    if hasattr(main, object.__name__):\n        mainobject = getattr(main, object.__name__)\n        if mainobject is object:\n            return main\n    # Check builtins\n    builtin = sys.modules['builtins']\n    if hasattr(builtin, object.__name__):\n        builtinobject = getattr(builtin, object.__name__)\n        if builtinobject is object:\n            return builtin\n\ndef findsource(object):\n    \"\"\"Return the entire source file and starting line number for an object.\n\n    The argument may be a module, class, method, function, traceback, frame,\n    or code object.  The source code is returned as a list of all the lines\n    in the file and the line number indexes a line in that list.  An OSError\n    is raised if the source code cannot be retrieved.\"\"\"\n\n    file = getsourcefile(object)\n    if file:\n        # Invalidate cache if needed.\n        linecache.checkcache(file)\n    else:\n        file = getfile(object)\n        # Allow filenames in form of \"<something>\" to pass through.\n        # `doctest` monkeypatches `linecache` module to enable\n        # inspection, so let `linecache.getlines` to be called.\n        if not (file.startswith('<') and file.endswith('>')):\n            raise OSError('source code not available')\n\n    module = getmodule(object, file)\n    if module:\n        lines = linecache.getlines(file, module.__dict__)\n    else:\n        lines = linecache.getlines(file)\n    if not lines:\n        raise OSError('could not get source code')\n\n    if ismodule(object):\n        return lines, 0\n\n    if isclass(object):\n        name = object.__name__\n        pat = re.compile(r'^(\\s*)class\\s*' + name + r'\\b')\n        # make some effort to find the best matching class definition:\n        # use the one with the least indentation, which is the one\n        # that's most probably not inside a function definition.\n        candidates = []\n        for i in range(len(lines)):\n            match = pat.match(lines[i])\n            if match:\n                # if it's at toplevel, it's already the best one\n                if lines[i][0] == 'c':\n                    return lines, i\n                # else add whitespace to candidate list\n                candidates.append((match.group(1), i))\n        if candidates:\n            # this will sort by whitespace, and by line number,\n            # less whitespace first\n            candidates.sort()\n            return lines, candidates[0][1]\n        else:\n            raise OSError('could not find class definition')\n\n    if ismethod(object):\n        object = object.__func__\n    if isfunction(object):\n        object = object.__code__\n    if istraceback(object):\n        object = object.tb_frame\n    if isframe(object):\n        object = object.f_code\n    if iscode(object):\n        if not hasattr(object, 'co_firstlineno'):\n            raise OSError('could not find function definition')\n        lnum = object.co_firstlineno - 1\n        pat = re.compile(r'^(\\s*def\\s)|(\\s*async\\s+def\\s)|(.*(?<!\\w)lambda(:|\\s))|^(\\s*@)')\n        while lnum > 0:\n            if pat.match(lines[lnum]): break\n            lnum = lnum - 1\n        return lines, lnum\n    raise OSError('could not find code object')\n\ndef getcomments(object):\n    \"\"\"Get lines of comments immediately preceding an object's source code.\n\n    Returns None when source can't be found.\n    \"\"\"\n    try:\n        lines, lnum = findsource(object)\n    except (OSError, TypeError):\n        return None\n\n    if ismodule(object):\n        # Look for a comment block at the top of the file.\n        start = 0\n        if lines and lines[0][:2] == '#!': start = 1\n        while start < len(lines) and lines[start].strip() in ('', '#'):\n            start = start + 1\n        if start < len(lines) and lines[start][:1] == '#':\n            comments = []\n            end = start\n            while end < len(lines) and lines[end][:1] == '#':\n                comments.append(lines[end].expandtabs())\n                end = end + 1\n            return ''.join(comments)\n\n    # Look for a preceding block of comments at the same indentation.\n    elif lnum > 0:\n        indent = indentsize(lines[lnum])\n        end = lnum - 1\n        if end >= 0 and lines[end].lstrip()[:1] == '#' and \\\n            indentsize(lines[end]) == indent:\n            comments = [lines[end].expandtabs().lstrip()]\n            if end > 0:\n                end = end - 1\n                comment = lines[end].expandtabs().lstrip()\n                while comment[:1] == '#' and indentsize(lines[end]) == indent:\n                    comments[:0] = [comment]\n                    end = end - 1\n                    if end < 0: break\n                    comment = lines[end].expandtabs().lstrip()\n            while comments and comments[0].strip() == '#':\n                comments[:1] = []\n            while comments and comments[-1].strip() == '#':\n                comments[-1:] = []\n            return ''.join(comments)\n\nclass EndOfBlock(Exception): pass\n\nclass BlockFinder:\n    \"\"\"Provide a tokeneater() method to detect the end of a code block.\"\"\"\n    def __init__(self):\n        self.indent = 0\n        self.islambda = False\n        self.started = False\n        self.passline = False\n        self.indecorator = False\n        self.decoratorhasargs = False\n        self.last = 1\n\n    def tokeneater(self, type, token, srowcol, erowcol, line):\n        if not self.started and not self.indecorator:\n            # skip any decorators\n            if token == \"@\":\n                self.indecorator = True\n            # look for the first \"def\", \"class\" or \"lambda\"\n            elif token in (\"def\", \"class\", \"lambda\"):\n                if token == \"lambda\":\n                    self.islambda = True\n                self.started = True\n            self.passline = True    # skip to the end of the line\n        elif token == \"(\":\n            if self.indecorator:\n                self.decoratorhasargs = True\n        elif token == \")\":\n            if self.indecorator:\n                self.indecorator = False\n                self.decoratorhasargs = False\n        elif type == tokenize.NEWLINE:\n            self.passline = False   # stop skipping when a NEWLINE is seen\n            self.last = srowcol[0]\n            if self.islambda:       # lambdas always end at the first NEWLINE\n                raise EndOfBlock\n            # hitting a NEWLINE when in a decorator without args\n            # ends the decorator\n            if self.indecorator and not self.decoratorhasargs:\n                self.indecorator = False\n        elif self.passline:\n            pass\n        elif type == tokenize.INDENT:\n            self.indent = self.indent + 1\n            self.passline = True\n        elif type == tokenize.DEDENT:\n            self.indent = self.indent - 1\n            # the end of matching indent/dedent pairs end a block\n            # (note that this only works for \"def\"/\"class\" blocks,\n            #  not e.g. for \"if: else:\" or \"try: finally:\" blocks)\n            if self.indent <= 0:\n                raise EndOfBlock\n        elif self.indent == 0 and type not in (tokenize.COMMENT, tokenize.NL):\n            # any other token on the same indentation level end the previous\n            # block as well, except the pseudo-tokens COMMENT and NL.\n            raise EndOfBlock\n\ndef getblock(lines):\n    \"\"\"Extract the block of code at the top of the given list of lines.\"\"\"\n    blockfinder = BlockFinder()\n    try:\n        tokens = tokenize.generate_tokens(iter(lines).__next__)\n        for _token in tokens:\n            blockfinder.tokeneater(*_token)\n    except (EndOfBlock, IndentationError):\n        pass\n    return lines[:blockfinder.last]\n\ndef getsourcelines(object):\n    \"\"\"Return a list of source lines and starting line number for an object.\n\n    The argument may be a module, class, method, function, traceback, frame,\n    or code object.  The source code is returned as a list of the lines\n    corresponding to the object and the line number indicates where in the\n    original source file the first line of code was found.  An OSError is\n    raised if the source code cannot be retrieved.\"\"\"\n    object = unwrap(object)\n    lines, lnum = findsource(object)\n\n    if istraceback(object):\n        object = object.tb_frame\n\n    # for module or frame that corresponds to module, return all source lines\n    if (ismodule(object) or\n        (isframe(object) and object.f_code.co_name == \"<module>\")):\n        return lines, 0\n    else:\n        return getblock(lines[lnum:]), lnum + 1\n\ndef getsource(object):\n    \"\"\"Return the text of the source code for an object.\n\n    The argument may be a module, class, method, function, traceback, frame,\n    or code object.  The source code is returned as a single string.  An\n    OSError is raised if the source code cannot be retrieved.\"\"\"\n    lines, lnum = getsourcelines(object)\n    return ''.join(lines)\n\n# --------------------------------------------------- class tree extraction\ndef walktree(classes, children, parent):\n    \"\"\"Recursive helper function for getclasstree().\"\"\"\n    results = []\n    classes.sort(key=attrgetter('__module__', '__name__'))\n    for c in classes:\n        results.append((c, c.__bases__))\n        if c in children:\n            results.append(walktree(children[c], children, c))\n    return results\n\ndef getclasstree(classes, unique=False):\n    \"\"\"Arrange the given list of classes into a hierarchy of nested lists.\n\n    Where a nested list appears, it contains classes derived from the class\n    whose entry immediately precedes the list.  Each entry is a 2-tuple\n    containing a class and a tuple of its base classes.  If the 'unique'\n    argument is true, exactly one entry appears in the returned structure\n    for each class in the given list.  Otherwise, classes using multiple\n    inheritance and their descendants will appear multiple times.\"\"\"\n    children = {}\n    roots = []\n    for c in classes:\n        if c.__bases__:\n            for parent in c.__bases__:\n                if parent not in children:\n                    children[parent] = []\n                if c not in children[parent]:\n                    children[parent].append(c)\n                if unique and parent in classes: break\n        elif c not in roots:\n            roots.append(c)\n    for parent in children:\n        if parent not in classes:\n            roots.append(parent)\n    return walktree(roots, children, None)\n\n# ------------------------------------------------ argument list extraction\nArguments = namedtuple('Arguments', 'args, varargs, varkw')\n\ndef getargs(co):\n    \"\"\"Get information about the arguments accepted by a code object.\n\n    Three things are returned: (args, varargs, varkw), where\n    'args' is the list of argument names. Keyword-only arguments are\n    appended. 'varargs' and 'varkw' are the names of the * and **\n    arguments or None.\"\"\"\n    if not iscode(co):\n        raise TypeError('{!r} is not a code object'.format(co))\n\n    names = co.co_varnames\n    nargs = co.co_argcount\n    nkwargs = co.co_kwonlyargcount\n    args = list(names[:nargs])\n    kwonlyargs = list(names[nargs:nargs+nkwargs])\n    step = 0\n\n    nargs += nkwargs\n    varargs = None\n    if co.co_flags & CO_VARARGS:\n        varargs = co.co_varnames[nargs]\n        nargs = nargs + 1\n    varkw = None\n    if co.co_flags & CO_VARKEYWORDS:\n        varkw = co.co_varnames[nargs]\n    return Arguments(args + kwonlyargs, varargs, varkw)\n\nArgSpec = namedtuple('ArgSpec', 'args varargs keywords defaults')\n\ndef getargspec(func):\n    \"\"\"Get the names and default values of a function's parameters.\n\n    A tuple of four things is returned: (args, varargs, keywords, defaults).\n    'args' is a list of the argument names, including keyword-only argument names.\n    'varargs' and 'keywords' are the names of the * and ** parameters or None.\n    'defaults' is an n-tuple of the default values of the last n parameters.\n\n    This function is deprecated, as it does not support annotations or\n    keyword-only parameters and will raise ValueError if either is present\n    on the supplied callable.\n\n    For a more structured introspection API, use inspect.signature() instead.\n\n    Alternatively, use getfullargspec() for an API with a similar namedtuple\n    based interface, but full support for annotations and keyword-only\n    parameters.\n\n    Deprecated since Python 3.5, use `inspect.getfullargspec()`.\n    \"\"\"\n    warnings.warn(\"inspect.getargspec() is deprecated since Python 3.0, \"\n                  \"use inspect.signature() or inspect.getfullargspec()\",\n                  DeprecationWarning, stacklevel=2)\n    args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, ann = \\\n        getfullargspec(func)\n    if kwonlyargs or ann:\n        raise ValueError(\"Function has keyword-only parameters or annotations\"\n                         \", use inspect.signature() API which can support them\")\n    return ArgSpec(args, varargs, varkw, defaults)\n\nFullArgSpec = namedtuple('FullArgSpec',\n    'args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations')\n\ndef getfullargspec(func):\n    \"\"\"Get the names and default values of a callable object's parameters.\n\n    A tuple of seven things is returned:\n    (args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations).\n    'args' is a list of the parameter names.\n    'varargs' and 'varkw' are the names of the * and ** parameters or None.\n    'defaults' is an n-tuple of the default values of the last n parameters.\n    'kwonlyargs' is a list of keyword-only parameter names.\n    'kwonlydefaults' is a dictionary mapping names from kwonlyargs to defaults.\n    'annotations' is a dictionary mapping parameter names to annotations.\n\n    Notable differences from inspect.signature():\n      - the \"self\" parameter is always reported, even for bound methods\n      - wrapper chains defined by __wrapped__ *not* unwrapped automatically\n    \"\"\"\n    try:\n        # Re: `skip_bound_arg=False`\n        #\n        # There is a notable difference in behaviour between getfullargspec\n        # and Signature: the former always returns 'self' parameter for bound\n        # methods, whereas the Signature always shows the actual calling\n        # signature of the passed object.\n        #\n        # To simulate this behaviour, we \"unbind\" bound methods, to trick\n        # inspect.signature to always return their first parameter (\"self\",\n        # usually)\n\n        # Re: `follow_wrapper_chains=False`\n        #\n        # getfullargspec() historically ignored __wrapped__ attributes,\n        # so we ensure that remains the case in 3.3+\n\n        sig = _signature_from_callable(func,\n                                       follow_wrapper_chains=False,\n                                       skip_bound_arg=False,\n                                       sigcls=Signature)\n    except Exception as ex:\n        # Most of the times 'signature' will raise ValueError.\n        # But, it can also raise AttributeError, and, maybe something\n        # else. So to be fully backwards compatible, we catch all\n        # possible exceptions here, and reraise a TypeError.\n        raise TypeError('unsupported callable') from ex\n\n    args = []\n    varargs = None\n    varkw = None\n    posonlyargs = []\n    kwonlyargs = []\n    defaults = ()\n    annotations = {}\n    defaults = ()\n    kwdefaults = {}\n\n    if sig.return_annotation is not sig.empty:\n        annotations['return'] = sig.return_annotation\n\n    for param in sig.parameters.values():\n        kind = param.kind\n        name = param.name\n\n        if kind is _POSITIONAL_ONLY:\n            posonlyargs.append(name)\n            if param.default is not param.empty:\n                defaults += (param.default,)\n        elif kind is _POSITIONAL_OR_KEYWORD:\n            args.append(name)\n            if param.default is not param.empty:\n                defaults += (param.default,)\n        elif kind is _VAR_POSITIONAL:\n            varargs = name\n        elif kind is _KEYWORD_ONLY:\n            kwonlyargs.append(name)\n            if param.default is not param.empty:\n                kwdefaults[name] = param.default\n        elif kind is _VAR_KEYWORD:\n            varkw = name\n\n        if param.annotation is not param.empty:\n            annotations[name] = param.annotation\n\n    if not kwdefaults:\n        # compatibility with 'func.__kwdefaults__'\n        kwdefaults = None\n\n    if not defaults:\n        # compatibility with 'func.__defaults__'\n        defaults = None\n\n    return FullArgSpec(posonlyargs + args, varargs, varkw, defaults,\n                       kwonlyargs, kwdefaults, annotations)\n\n\nArgInfo = namedtuple('ArgInfo', 'args varargs keywords locals')\n\ndef getargvalues(frame):\n    \"\"\"Get information about arguments passed into a particular frame.\n\n    A tuple of four things is returned: (args, varargs, varkw, locals).\n    'args' is a list of the argument names.\n    'varargs' and 'varkw' are the names of the * and ** arguments or None.\n    'locals' is the locals dictionary of the given frame.\"\"\"\n    args, varargs, varkw = getargs(frame.f_code)\n    return ArgInfo(args, varargs, varkw, frame.f_locals)\n\ndef formatannotation(annotation, base_module=None):\n    if getattr(annotation, '__module__', None) == 'typing':\n        return repr(annotation).replace('typing.', '')\n    if isinstance(annotation, type):\n        if annotation.__module__ in ('builtins', base_module):\n            return annotation.__qualname__\n        return annotation.__module__+'.'+annotation.__qualname__\n    return repr(annotation)\n\ndef formatannotationrelativeto(object):\n    module = getattr(object, '__module__', None)\n    def _formatannotation(annotation):\n        return formatannotation(annotation, module)\n    return _formatannotation\n\ndef formatargspec(args, varargs=None, varkw=None, defaults=None,\n                  kwonlyargs=(), kwonlydefaults={}, annotations={},\n                  formatarg=str,\n                  formatvarargs=lambda name: '*' + name,\n                  formatvarkw=lambda name: '**' + name,\n                  formatvalue=lambda value: '=' + repr(value),\n                  formatreturns=lambda text: ' -> ' + text,\n                  formatannotation=formatannotation):\n    \"\"\"Format an argument spec from the values returned by getfullargspec.\n\n    The first seven arguments are (args, varargs, varkw, defaults,\n    kwonlyargs, kwonlydefaults, annotations).  The other five arguments\n    are the corresponding optional formatting functions that are called to\n    turn names and values into strings.  The last argument is an optional\n    function to format the sequence of arguments.\n\n    Deprecated since Python 3.5: use the `signature` function and `Signature`\n    objects.\n    \"\"\"\n\n    from warnings import warn\n\n    warn(\"`formatargspec` is deprecated since Python 3.5. Use `signature` and \"\n         \"the `Signature` object directly\",\n         DeprecationWarning,\n         stacklevel=2)\n\n    def formatargandannotation(arg):\n        result = formatarg(arg)\n        if arg in annotations:\n            result += ': ' + formatannotation(annotations[arg])\n        return result\n    specs = []\n    if defaults:\n        firstdefault = len(args) - len(defaults)\n    for i, arg in enumerate(args):\n        spec = formatargandannotation(arg)\n        if defaults and i >= firstdefault:\n            spec = spec + formatvalue(defaults[i - firstdefault])\n        specs.append(spec)\n    if varargs is not None:\n        specs.append(formatvarargs(formatargandannotation(varargs)))\n    else:\n        if kwonlyargs:\n            specs.append('*')\n    if kwonlyargs:\n        for kwonlyarg in kwonlyargs:\n            spec = formatargandannotation(kwonlyarg)\n            if kwonlydefaults and kwonlyarg in kwonlydefaults:\n                spec += formatvalue(kwonlydefaults[kwonlyarg])\n            specs.append(spec)\n    if varkw is not None:\n        specs.append(formatvarkw(formatargandannotation(varkw)))\n    result = '(' + ', '.join(specs) + ')'\n    if 'return' in annotations:\n        result += formatreturns(formatannotation(annotations['return']))\n    return result\n\ndef formatargvalues(args, varargs, varkw, locals,\n                    formatarg=str,\n                    formatvarargs=lambda name: '*' + name,\n                    formatvarkw=lambda name: '**' + name,\n                    formatvalue=lambda value: '=' + repr(value)):\n    \"\"\"Format an argument spec from the 4 values returned by getargvalues.\n\n    The first four arguments are (args, varargs, varkw, locals).  The\n    next four arguments are the corresponding optional formatting functions\n    that are called to turn names and values into strings.  The ninth\n    argument is an optional function to format the sequence of arguments.\"\"\"\n    def convert(name, locals=locals,\n                formatarg=formatarg, formatvalue=formatvalue):\n        return formatarg(name) + formatvalue(locals[name])\n    specs = []\n    for i in range(len(args)):\n        specs.append(convert(args[i]))\n    if varargs:\n        specs.append(formatvarargs(varargs) + formatvalue(locals[varargs]))\n    if varkw:\n        specs.append(formatvarkw(varkw) + formatvalue(locals[varkw]))\n    return '(' + ', '.join(specs) + ')'\n\ndef _missing_arguments(f_name, argnames, pos, values):\n    names = [repr(name) for name in argnames if name not in values]\n    missing = len(names)\n    if missing == 1:\n        s = names[0]\n    elif missing == 2:\n        s = \"{} and {}\".format(*names)\n    else:\n        tail = \", {} and {}\".format(*names[-2:])\n        del names[-2:]\n        s = \", \".join(names) + tail\n    raise TypeError(\"%s() missing %i required %s argument%s: %s\" %\n                    (f_name, missing,\n                      \"positional\" if pos else \"keyword-only\",\n                      \"\" if missing == 1 else \"s\", s))\n\ndef _too_many(f_name, args, kwonly, varargs, defcount, given, values):\n    atleast = len(args) - defcount\n    kwonly_given = len([arg for arg in kwonly if arg in values])\n    if varargs:\n        plural = atleast != 1\n        sig = \"at least %d\" % (atleast,)\n    elif defcount:\n        plural = True\n        sig = \"from %d to %d\" % (atleast, len(args))\n    else:\n        plural = len(args) != 1\n        sig = str(len(args))\n    kwonly_sig = \"\"\n    if kwonly_given:\n        msg = \" positional argument%s (and %d keyword-only argument%s)\"\n        kwonly_sig = (msg % (\"s\" if given != 1 else \"\", kwonly_given,\n                             \"s\" if kwonly_given != 1 else \"\"))\n    raise TypeError(\"%s() takes %s positional argument%s but %d%s %s given\" %\n            (f_name, sig, \"s\" if plural else \"\", given, kwonly_sig,\n             \"was\" if given == 1 and not kwonly_given else \"were\"))\n\ndef getcallargs(func, /, *positional, **named):\n    \"\"\"Get the mapping of arguments to values.\n\n    A dict is returned, with keys the function argument names (including the\n    names of the * and ** arguments, if any), and values the respective bound\n    values from 'positional' and 'named'.\"\"\"\n    spec = getfullargspec(func)\n    args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, ann = spec\n    f_name = func.__name__\n    arg2value = {}\n\n\n    if ismethod(func) and func.__self__ is not None:\n        # implicit 'self' (or 'cls' for classmethods) argument\n        positional = (func.__self__,) + positional\n    num_pos = len(positional)\n    num_args = len(args)\n    num_defaults = len(defaults) if defaults else 0\n\n    n = min(num_pos, num_args)\n    for i in range(n):\n        arg2value[args[i]] = positional[i]\n    if varargs:\n        arg2value[varargs] = tuple(positional[n:])\n    possible_kwargs = set(args + kwonlyargs)\n    if varkw:\n        arg2value[varkw] = {}\n    for kw, value in named.items():\n        if kw not in possible_kwargs:\n            if not varkw:\n                raise TypeError(\"%s() got an unexpected keyword argument %r\" %\n                                (f_name, kw))\n            arg2value[varkw][kw] = value\n            continue\n        if kw in arg2value:\n            raise TypeError(\"%s() got multiple values for argument %r\" %\n                            (f_name, kw))\n        arg2value[kw] = value\n    if num_pos > num_args and not varargs:\n        _too_many(f_name, args, kwonlyargs, varargs, num_defaults,\n                   num_pos, arg2value)\n    if num_pos < num_args:\n        req = args[:num_args - num_defaults]\n        for arg in req:\n            if arg not in arg2value:\n                _missing_arguments(f_name, req, True, arg2value)\n        for i, arg in enumerate(args[num_args - num_defaults:]):\n            if arg not in arg2value:\n                arg2value[arg] = defaults[i]\n    missing = 0\n    for kwarg in kwonlyargs:\n        if kwarg not in arg2value:\n            if kwonlydefaults and kwarg in kwonlydefaults:\n                arg2value[kwarg] = kwonlydefaults[kwarg]\n            else:\n                missing += 1\n    if missing:\n        _missing_arguments(f_name, kwonlyargs, False, arg2value)\n    return arg2value\n\nClosureVars = namedtuple('ClosureVars', 'nonlocals globals builtins unbound')\n\ndef getclosurevars(func):\n    \"\"\"\n    Get the mapping of free variables to their current values.\n\n    Returns a named tuple of dicts mapping the current nonlocal, global\n    and builtin references as seen by the body of the function. A final\n    set of unbound names that could not be resolved is also provided.\n    \"\"\"\n\n    if ismethod(func):\n        func = func.__func__\n\n    if not isfunction(func):\n        raise TypeError(\"{!r} is not a Python function\".format(func))\n\n    code = func.__code__\n    # Nonlocal references are named in co_freevars and resolved\n    # by looking them up in __closure__ by positional index\n    if func.__closure__ is None:\n        nonlocal_vars = {}\n    else:\n        nonlocal_vars = {\n            var : cell.cell_contents\n            for var, cell in zip(code.co_freevars, func.__closure__)\n       }\n\n    # Global and builtin references are named in co_names and resolved\n    # by looking them up in __globals__ or __builtins__\n    global_ns = func.__globals__\n    builtin_ns = global_ns.get(\"__builtins__\", builtins.__dict__)\n    if ismodule(builtin_ns):\n        builtin_ns = builtin_ns.__dict__\n    global_vars = {}\n    builtin_vars = {}\n    unbound_names = set()\n    for name in code.co_names:\n        if name in (\"None\", \"True\", \"False\"):\n            # Because these used to be builtins instead of keywords, they\n            # may still show up as name references. We ignore them.\n            continue\n        try:\n            global_vars[name] = global_ns[name]\n        except KeyError:\n            try:\n                builtin_vars[name] = builtin_ns[name]\n            except KeyError:\n                unbound_names.add(name)\n\n    return ClosureVars(nonlocal_vars, global_vars,\n                       builtin_vars, unbound_names)\n\n# -------------------------------------------------- stack frame extraction\n\nTraceback = namedtuple('Traceback', 'filename lineno function code_context index')\n\ndef getframeinfo(frame, context=1):\n    \"\"\"Get information about a frame or traceback object.\n\n    A tuple of five things is returned: the filename, the line number of\n    the current line, the function name, a list of lines of context from\n    the source code, and the index of the current line within that list.\n    The optional second argument specifies the number of lines of context\n    to return, which are centered around the current line.\"\"\"\n    if istraceback(frame):\n        lineno = frame.tb_lineno\n        frame = frame.tb_frame\n    else:\n        lineno = frame.f_lineno\n    if not isframe(frame):\n        raise TypeError('{!r} is not a frame or traceback object'.format(frame))\n\n    filename = getsourcefile(frame) or getfile(frame)\n    if context > 0:\n        start = lineno - 1 - context//2\n        try:\n            lines, lnum = findsource(frame)\n        except OSError:\n            lines = index = None\n        else:\n            start = max(0, min(start, len(lines) - context))\n            lines = lines[start:start+context]\n            index = lineno - 1 - start\n    else:\n        lines = index = None\n\n    return Traceback(filename, lineno, frame.f_code.co_name, lines, index)\n\ndef getlineno(frame):\n    \"\"\"Get the line number from a frame object, allowing for optimization.\"\"\"\n    # FrameType.f_lineno is now a descriptor that grovels co_lnotab\n    return frame.f_lineno\n\nFrameInfo = namedtuple('FrameInfo', ('frame',) + Traceback._fields)\n\ndef getouterframes(frame, context=1):\n    \"\"\"Get a list of records for a frame and all higher (calling) frames.\n\n    Each record contains a frame object, filename, line number, function\n    name, a list of lines of context, and index within the context.\"\"\"\n    framelist = []\n    while frame:\n        frameinfo = (frame,) + getframeinfo(frame, context)\n        framelist.append(FrameInfo(*frameinfo))\n        frame = frame.f_back\n    return framelist\n\ndef getinnerframes(tb, context=1):\n    \"\"\"Get a list of records for a traceback's frame and all lower frames.\n\n    Each record contains a frame object, filename, line number, function\n    name, a list of lines of context, and index within the context.\"\"\"\n    framelist = []\n    while tb:\n        frameinfo = (tb.tb_frame,) + getframeinfo(tb, context)\n        framelist.append(FrameInfo(*frameinfo))\n        tb = tb.tb_next\n    return framelist\n\ndef currentframe():\n    \"\"\"Return the frame of the caller or None if this is not possible.\"\"\"\n    return sys._getframe(1) if hasattr(sys, \"_getframe\") else None\n\ndef stack(context=1):\n    \"\"\"Return a list of records for the stack above the caller's frame.\"\"\"\n    return getouterframes(sys._getframe(1), context)\n\ndef trace(context=1):\n    \"\"\"Return a list of records for the stack below the current exception.\"\"\"\n    return getinnerframes(sys.exc_info()[2], context)\n\n\n# ------------------------------------------------ static version of getattr\n\n_sentinel = object()\n\ndef _static_getmro(klass):\n    return type.__dict__['__mro__'].__get__(klass)\n\ndef _check_instance(obj, attr):\n    instance_dict = {}\n    try:\n        instance_dict = object.__getattribute__(obj, \"__dict__\")\n    except AttributeError:\n        pass\n    return dict.get(instance_dict, attr, _sentinel)\n\n\ndef _check_class(klass, attr):\n    for entry in _static_getmro(klass):\n        if _shadowed_dict(type(entry)) is _sentinel:\n            try:\n                return entry.__dict__[attr]\n            except KeyError:\n                pass\n    return _sentinel\n\ndef _is_type(obj):\n    try:\n        _static_getmro(obj)\n    except TypeError:\n        return False\n    return True\n\ndef _shadowed_dict(klass):\n    dict_attr = type.__dict__[\"__dict__\"]\n    for entry in _static_getmro(klass):\n        try:\n            class_dict = dict_attr.__get__(entry)[\"__dict__\"]\n        except KeyError:\n            pass\n        else:\n            if not (type(class_dict) is types.GetSetDescriptorType and\n                    class_dict.__name__ == \"__dict__\" and\n                    class_dict.__objclass__ is entry):\n                return class_dict\n    return _sentinel\n\ndef getattr_static(obj, attr, default=_sentinel):\n    \"\"\"Retrieve attributes without triggering dynamic lookup via the\n       descriptor protocol,  __getattr__ or __getattribute__.\n\n       Note: this function may not be able to retrieve all attributes\n       that getattr can fetch (like dynamically created attributes)\n       and may find attributes that getattr can't (like descriptors\n       that raise AttributeError). It can also return descriptor objects\n       instead of instance members in some cases. See the\n       documentation for details.\n    \"\"\"\n    instance_result = _sentinel\n    if not _is_type(obj):\n        klass = type(obj)\n        dict_attr = _shadowed_dict(klass)\n        if (dict_attr is _sentinel or\n            type(dict_attr) is types.MemberDescriptorType):\n            instance_result = _check_instance(obj, attr)\n    else:\n        klass = obj\n\n    klass_result = _check_class(klass, attr)\n\n    if instance_result is not _sentinel and klass_result is not _sentinel:\n        if (_check_class(type(klass_result), '__get__') is not _sentinel and\n            _check_class(type(klass_result), '__set__') is not _sentinel):\n            return klass_result\n\n    if instance_result is not _sentinel:\n        return instance_result\n    if klass_result is not _sentinel:\n        return klass_result\n\n    if obj is klass:\n        # for types we check the metaclass too\n        for entry in _static_getmro(type(klass)):\n            if _shadowed_dict(type(entry)) is _sentinel:\n                try:\n                    return entry.__dict__[attr]\n                except KeyError:\n                    pass\n    if default is not _sentinel:\n        return default\n    raise AttributeError(attr)\n\n\n# ------------------------------------------------ generator introspection\n\nGEN_CREATED = 'GEN_CREATED'\nGEN_RUNNING = 'GEN_RUNNING'\nGEN_SUSPENDED = 'GEN_SUSPENDED'\nGEN_CLOSED = 'GEN_CLOSED'\n\ndef getgeneratorstate(generator):\n    \"\"\"Get current state of a generator-iterator.\n\n    Possible states are:\n      GEN_CREATED: Waiting to start execution.\n      GEN_RUNNING: Currently being executed by the interpreter.\n      GEN_SUSPENDED: Currently suspended at a yield expression.\n      GEN_CLOSED: Execution has completed.\n    \"\"\"\n    if generator.gi_running:\n        return GEN_RUNNING\n    if generator.gi_frame is None:\n        return GEN_CLOSED\n    if generator.gi_frame.f_lasti == -1:\n        return GEN_CREATED\n    return GEN_SUSPENDED\n\n\ndef getgeneratorlocals(generator):\n    \"\"\"\n    Get the mapping of generator local variables to their current values.\n\n    A dict is returned, with the keys the local variable names and values the\n    bound values.\"\"\"\n\n    if not isgenerator(generator):\n        raise TypeError(\"{!r} is not a Python generator\".format(generator))\n\n    frame = getattr(generator, \"gi_frame\", None)\n    if frame is not None:\n        return generator.gi_frame.f_locals\n    else:\n        return {}\n\n\n# ------------------------------------------------ coroutine introspection\n\nCORO_CREATED = 'CORO_CREATED'\nCORO_RUNNING = 'CORO_RUNNING'\nCORO_SUSPENDED = 'CORO_SUSPENDED'\nCORO_CLOSED = 'CORO_CLOSED'\n\ndef getcoroutinestate(coroutine):\n    \"\"\"Get current state of a coroutine object.\n\n    Possible states are:\n      CORO_CREATED: Waiting to start execution.\n      CORO_RUNNING: Currently being executed by the interpreter.\n      CORO_SUSPENDED: Currently suspended at an await expression.\n      CORO_CLOSED: Execution has completed.\n    \"\"\"\n    if coroutine.cr_running:\n        return CORO_RUNNING\n    if coroutine.cr_frame is None:\n        return CORO_CLOSED\n    if coroutine.cr_frame.f_lasti == -1:\n        return CORO_CREATED\n    return CORO_SUSPENDED\n\n\ndef getcoroutinelocals(coroutine):\n    \"\"\"\n    Get the mapping of coroutine local variables to their current values.\n\n    A dict is returned, with the keys the local variable names and values the\n    bound values.\"\"\"\n    frame = getattr(coroutine, \"cr_frame\", None)\n    if frame is not None:\n        return frame.f_locals\n    else:\n        return {}\n\n\n###############################################################################\n### Function Signature Object (PEP 362)\n###############################################################################\n\n\n_WrapperDescriptor = type(type.__call__)\n_MethodWrapper = type(all.__call__)\n_ClassMethodWrapper = type(int.__dict__['from_bytes'])\n\n_NonUserDefinedCallables = (_WrapperDescriptor,\n                            _MethodWrapper,\n                            _ClassMethodWrapper,\n                            types.BuiltinFunctionType)\n\n\ndef _signature_get_user_defined_method(cls, method_name):\n    \"\"\"Private helper. Checks if ``cls`` has an attribute\n    named ``method_name`` and returns it only if it is a\n    pure python function.\n    \"\"\"\n    try:\n        meth = getattr(cls, method_name)\n    except AttributeError:\n        return\n    else:\n        if not isinstance(meth, _NonUserDefinedCallables):\n            # Once '__signature__' will be added to 'C'-level\n            # callables, this check won't be necessary\n            return meth\n\n\ndef _signature_get_partial(wrapped_sig, partial, extra_args=()):\n    \"\"\"Private helper to calculate how 'wrapped_sig' signature will\n    look like after applying a 'functools.partial' object (or alike)\n    on it.\n    \"\"\"\n\n    old_params = wrapped_sig.parameters\n    new_params = OrderedDict(old_params.items())\n\n    partial_args = partial.args or ()\n    partial_keywords = partial.keywords or {}\n\n    if extra_args:\n        partial_args = extra_args + partial_args\n\n    try:\n        ba = wrapped_sig.bind_partial(*partial_args, **partial_keywords)\n    except TypeError as ex:\n        msg = 'partial object {!r} has incorrect arguments'.format(partial)\n        raise ValueError(msg) from ex\n\n\n    transform_to_kwonly = False\n    for param_name, param in old_params.items():\n        try:\n            arg_value = ba.arguments[param_name]\n        except KeyError:\n            pass\n        else:\n            if param.kind is _POSITIONAL_ONLY:\n                # If positional-only parameter is bound by partial,\n                # it effectively disappears from the signature\n                new_params.pop(param_name)\n                continue\n\n            if param.kind is _POSITIONAL_OR_KEYWORD:\n                if param_name in partial_keywords:\n                    # This means that this parameter, and all parameters\n                    # after it should be keyword-only (and var-positional\n                    # should be removed). Here's why. Consider the following\n                    # function:\n                    #     foo(a, b, *args, c):\n                    #         pass\n                    #\n                    # \"partial(foo, a='spam')\" will have the following\n                    # signature: \"(*, a='spam', b, c)\". Because attempting\n                    # to call that partial with \"(10, 20)\" arguments will\n                    # raise a TypeError, saying that \"a\" argument received\n                    # multiple values.\n                    transform_to_kwonly = True\n                    # Set the new default value\n                    new_params[param_name] = param.replace(default=arg_value)\n                else:\n                    # was passed as a positional argument\n                    new_params.pop(param.name)\n                    continue\n\n            if param.kind is _KEYWORD_ONLY:\n                # Set the new default value\n                new_params[param_name] = param.replace(default=arg_value)\n\n        if transform_to_kwonly:\n            assert param.kind is not _POSITIONAL_ONLY\n\n            if param.kind is _POSITIONAL_OR_KEYWORD:\n                new_param = new_params[param_name].replace(kind=_KEYWORD_ONLY)\n                new_params[param_name] = new_param\n                new_params.move_to_end(param_name)\n            elif param.kind in (_KEYWORD_ONLY, _VAR_KEYWORD):\n                new_params.move_to_end(param_name)\n            elif param.kind is _VAR_POSITIONAL:\n                new_params.pop(param.name)\n\n    return wrapped_sig.replace(parameters=new_params.values())\n\n\ndef _signature_bound_method(sig):\n    \"\"\"Private helper to transform signatures for unbound\n    functions to bound methods.\n    \"\"\"\n\n    params = tuple(sig.parameters.values())\n\n    if not params or params[0].kind in (_VAR_KEYWORD, _KEYWORD_ONLY):\n        raise ValueError('invalid method signature')\n\n    kind = params[0].kind\n    if kind in (_POSITIONAL_OR_KEYWORD, _POSITIONAL_ONLY):\n        # Drop first parameter:\n        # '(p1, p2[, ...])' -> '(p2[, ...])'\n        params = params[1:]\n    else:\n        if kind is not _VAR_POSITIONAL:\n            # Unless we add a new parameter type we never\n            # get here\n            raise ValueError('invalid argument type')\n        # It's a var-positional parameter.\n        # Do nothing. '(*args[, ...])' -> '(*args[, ...])'\n\n    return sig.replace(parameters=params)\n\n\ndef _signature_is_builtin(obj):\n    \"\"\"Private helper to test if `obj` is a callable that might\n    support Argument Clinic's __text_signature__ protocol.\n    \"\"\"\n    return (isbuiltin(obj) or\n            ismethoddescriptor(obj) or\n            isinstance(obj, _NonUserDefinedCallables) or\n            # Can't test 'isinstance(type)' here, as it would\n            # also be True for regular python classes\n            obj in (type, object))\n\n\ndef _signature_is_functionlike(obj):\n    \"\"\"Private helper to test if `obj` is a duck type of FunctionType.\n    A good example of such objects are functions compiled with\n    Cython, which have all attributes that a pure Python function\n    would have, but have their code statically compiled.\n    \"\"\"\n\n    if not callable(obj) or isclass(obj):\n        # All function-like objects are obviously callables,\n        # and not classes.\n        return False\n\n    name = getattr(obj, '__name__', None)\n    code = getattr(obj, '__code__', None)\n    defaults = getattr(obj, '__defaults__', _void) # Important to use _void ...\n    kwdefaults = getattr(obj, '__kwdefaults__', _void) # ... and not None here\n    annotations = getattr(obj, '__annotations__', None)\n\n    return (isinstance(code, types.CodeType) and\n            isinstance(name, str) and\n            (defaults is None or isinstance(defaults, tuple)) and\n            (kwdefaults is None or isinstance(kwdefaults, dict)) and\n            isinstance(annotations, dict))\n\n\ndef _signature_get_bound_param(spec):\n    \"\"\" Private helper to get first parameter name from a\n    __text_signature__ of a builtin method, which should\n    be in the following format: '($param1, ...)'.\n    Assumptions are that the first argument won't have\n    a default value or an annotation.\n    \"\"\"\n\n    assert spec.startswith('($')\n\n    pos = spec.find(',')\n    if pos == -1:\n        pos = spec.find(')')\n\n    cpos = spec.find(':')\n    assert cpos == -1 or cpos > pos\n\n    cpos = spec.find('=')\n    assert cpos == -1 or cpos > pos\n\n    return spec[2:pos]\n\n\ndef _signature_strip_non_python_syntax(signature):\n    \"\"\"\n    Private helper function. Takes a signature in Argument Clinic's\n    extended signature format.\n\n    Returns a tuple of three things:\n      * that signature re-rendered in standard Python syntax,\n      * the index of the \"self\" parameter (generally 0), or None if\n        the function does not have a \"self\" parameter, and\n      * the index of the last \"positional only\" parameter,\n        or None if the signature has no positional-only parameters.\n    \"\"\"\n\n    if not signature:\n        return signature, None, None\n\n    self_parameter = None\n    last_positional_only = None\n\n    lines = [l.encode('ascii') for l in signature.split('\\n')]\n    generator = iter(lines).__next__\n    token_stream = tokenize.tokenize(generator)\n\n    delayed_comma = False\n    skip_next_comma = False\n    text = []\n    add = text.append\n\n    current_parameter = 0\n    OP = token.OP\n    ERRORTOKEN = token.ERRORTOKEN\n\n    # token stream always starts with ENCODING token, skip it\n    t = next(token_stream)\n    assert t.type == tokenize.ENCODING\n\n    for t in token_stream:\n        type, string = t.type, t.string\n\n        if type == OP:\n            if string == ',':\n                if skip_next_comma:\n                    skip_next_comma = False\n                else:\n                    assert not delayed_comma\n                    delayed_comma = True\n                    current_parameter += 1\n                continue\n\n            if string == '/':\n                assert not skip_next_comma\n                assert last_positional_only is None\n                skip_next_comma = True\n                last_positional_only = current_parameter - 1\n                continue\n\n        if (type == ERRORTOKEN) and (string == '$'):\n            assert self_parameter is None\n            self_parameter = current_parameter\n            continue\n\n        if delayed_comma:\n            delayed_comma = False\n            if not ((type == OP) and (string == ')')):\n                add(', ')\n        add(string)\n        if (string == ','):\n            add(' ')\n    clean_signature = ''.join(text)\n    return clean_signature, self_parameter, last_positional_only\n\n\ndef _signature_fromstr(cls, obj, s, skip_bound_arg=True):\n    \"\"\"Private helper to parse content of '__text_signature__'\n    and return a Signature based on it.\n    \"\"\"\n    # Lazy import ast because it's relatively heavy and\n    # it's not used for other than this function.\n    import ast\n\n    Parameter = cls._parameter_cls\n\n    clean_signature, self_parameter, last_positional_only = \\\n        _signature_strip_non_python_syntax(s)\n\n    program = \"def foo\" + clean_signature + \": pass\"\n\n    try:\n        module = ast.parse(program)\n    except SyntaxError:\n        module = None\n\n    if not isinstance(module, ast.Module):\n        raise ValueError(\"{!r} builtin has invalid signature\".format(obj))\n\n    f = module.body[0]\n\n    parameters = []\n    empty = Parameter.empty\n    invalid = object()\n\n    module = None\n    module_dict = {}\n    module_name = getattr(obj, '__module__', None)\n    if module_name:\n        module = sys.modules.get(module_name, None)\n        if module:\n            module_dict = module.__dict__\n    sys_module_dict = sys.modules.copy()\n\n    def parse_name(node):\n        assert isinstance(node, ast.arg)\n        if node.annotation is not None:\n            raise ValueError(\"Annotations are not currently supported\")\n        return node.arg\n\n    def wrap_value(s):\n        try:\n            value = eval(s, module_dict)\n        except NameError:\n            try:\n                value = eval(s, sys_module_dict)\n            except NameError:\n                raise RuntimeError()\n\n        if isinstance(value, (str, int, float, bytes, bool, type(None))):\n            return ast.Constant(value)\n        raise RuntimeError()\n\n    class RewriteSymbolics(ast.NodeTransformer):\n        def visit_Attribute(self, node):\n            a = []\n            n = node\n            while isinstance(n, ast.Attribute):\n                a.append(n.attr)\n                n = n.value\n            if not isinstance(n, ast.Name):\n                raise RuntimeError()\n            a.append(n.id)\n            value = \".\".join(reversed(a))\n            return wrap_value(value)\n\n        def visit_Name(self, node):\n            if not isinstance(node.ctx, ast.Load):\n                raise ValueError()\n            return wrap_value(node.id)\n\n    def p(name_node, default_node, default=empty):\n        name = parse_name(name_node)\n        if name is invalid:\n            return None\n        if default_node and default_node is not _empty:\n            try:\n                default_node = RewriteSymbolics().visit(default_node)\n                o = ast.literal_eval(default_node)\n            except ValueError:\n                o = invalid\n            if o is invalid:\n                return None\n            default = o if o is not invalid else default\n        parameters.append(Parameter(name, kind, default=default, annotation=empty))\n\n    # non-keyword-only parameters\n    args = reversed(f.args.args)\n    defaults = reversed(f.args.defaults)\n    iter = itertools.zip_longest(args, defaults, fillvalue=None)\n    if last_positional_only is not None:\n        kind = Parameter.POSITIONAL_ONLY\n    else:\n        kind = Parameter.POSITIONAL_OR_KEYWORD\n    for i, (name, default) in enumerate(reversed(list(iter))):\n        p(name, default)\n        if i == last_positional_only:\n            kind = Parameter.POSITIONAL_OR_KEYWORD\n\n    # *args\n    if f.args.vararg:\n        kind = Parameter.VAR_POSITIONAL\n        p(f.args.vararg, empty)\n\n    # keyword-only arguments\n    kind = Parameter.KEYWORD_ONLY\n    for name, default in zip(f.args.kwonlyargs, f.args.kw_defaults):\n        p(name, default)\n\n    # **kwargs\n    if f.args.kwarg:\n        kind = Parameter.VAR_KEYWORD\n        p(f.args.kwarg, empty)\n\n    if self_parameter is not None:\n        # Possibly strip the bound argument:\n        #    - We *always* strip first bound argument if\n        #      it is a module.\n        #    - We don't strip first bound argument if\n        #      skip_bound_arg is False.\n        assert parameters\n        _self = getattr(obj, '__self__', None)\n        self_isbound = _self is not None\n        self_ismodule = ismodule(_self)\n        if self_isbound and (self_ismodule or skip_bound_arg):\n            parameters.pop(0)\n        else:\n            # for builtins, self parameter is always positional-only!\n            p = parameters[0].replace(kind=Parameter.POSITIONAL_ONLY)\n            parameters[0] = p\n\n    return cls(parameters, return_annotation=cls.empty)\n\n\ndef _signature_from_builtin(cls, func, skip_bound_arg=True):\n    \"\"\"Private helper function to get signature for\n    builtin callables.\n    \"\"\"\n\n    if not _signature_is_builtin(func):\n        raise TypeError(\"{!r} is not a Python builtin \"\n                        \"function\".format(func))\n\n    s = getattr(func, \"__text_signature__\", None)\n    if not s:\n        raise ValueError(\"no signature found for builtin {!r}\".format(func))\n\n    return _signature_fromstr(cls, func, s, skip_bound_arg)\n\n\ndef _signature_from_function(cls, func, skip_bound_arg=True):\n    \"\"\"Private helper: constructs Signature for the given python function.\"\"\"\n\n    is_duck_function = False\n    if not isfunction(func):\n        if _signature_is_functionlike(func):\n            is_duck_function = True\n        else:\n            # If it's not a pure Python function, and not a duck type\n            # of pure function:\n            raise TypeError('{!r} is not a Python function'.format(func))\n\n    s = getattr(func, \"__text_signature__\", None)\n    if s:\n        return _signature_fromstr(cls, func, s, skip_bound_arg)\n\n    Parameter = cls._parameter_cls\n\n    # Parameter information.\n    func_code = func.__code__\n    pos_count = func_code.co_argcount\n    arg_names = func_code.co_varnames\n    posonly_count = func_code.co_posonlyargcount\n    positional = arg_names[:pos_count]\n    keyword_only_count = func_code.co_kwonlyargcount\n    keyword_only = arg_names[pos_count:pos_count + keyword_only_count]\n    annotations = func.__annotations__\n    defaults = func.__defaults__\n    kwdefaults = func.__kwdefaults__\n\n    if defaults:\n        pos_default_count = len(defaults)\n    else:\n        pos_default_count = 0\n\n    parameters = []\n\n    non_default_count = pos_count - pos_default_count\n    posonly_left = posonly_count\n\n    # Non-keyword-only parameters w/o defaults.\n    for name in positional[:non_default_count]:\n        kind = _POSITIONAL_ONLY if posonly_left else _POSITIONAL_OR_KEYWORD\n        annotation = annotations.get(name, _empty)\n        parameters.append(Parameter(name, annotation=annotation,\n                                    kind=kind))\n        if posonly_left:\n            posonly_left -= 1\n\n    # ... w/ defaults.\n    for offset, name in enumerate(positional[non_default_count:]):\n        kind = _POSITIONAL_ONLY if posonly_left else _POSITIONAL_OR_KEYWORD\n        annotation = annotations.get(name, _empty)\n        parameters.append(Parameter(name, annotation=annotation,\n                                    kind=kind,\n                                    default=defaults[offset]))\n        if posonly_left:\n            posonly_left -= 1\n\n    # *args\n    if func_code.co_flags & CO_VARARGS:\n        name = arg_names[pos_count + keyword_only_count]\n        annotation = annotations.get(name, _empty)\n        parameters.append(Parameter(name, annotation=annotation,\n                                    kind=_VAR_POSITIONAL))\n\n    # Keyword-only parameters.\n    for name in keyword_only:\n        default = _empty\n        if kwdefaults is not None:\n            default = kwdefaults.get(name, _empty)\n\n        annotation = annotations.get(name, _empty)\n        parameters.append(Parameter(name, annotation=annotation,\n                                    kind=_KEYWORD_ONLY,\n                                    default=default))\n    # **kwargs\n    if func_code.co_flags & CO_VARKEYWORDS:\n        index = pos_count + keyword_only_count\n        if func_code.co_flags & CO_VARARGS:\n            index += 1\n\n        name = arg_names[index]\n        annotation = annotations.get(name, _empty)\n        parameters.append(Parameter(name, annotation=annotation,\n                                    kind=_VAR_KEYWORD))\n\n    # Is 'func' is a pure Python function - don't validate the\n    # parameters list (for correct order and defaults), it should be OK.\n    return cls(parameters,\n               return_annotation=annotations.get('return', _empty),\n               __validate_parameters__=is_duck_function)\n\n\ndef _signature_from_callable(obj, *,\n                             follow_wrapper_chains=True,\n                             skip_bound_arg=True,\n                             sigcls):\n\n    \"\"\"Private helper function to get signature for arbitrary\n    callable objects.\n    \"\"\"\n\n    if not callable(obj):\n        raise TypeError('{!r} is not a callable object'.format(obj))\n\n    if isinstance(obj, types.MethodType):\n        # In this case we skip the first parameter of the underlying\n        # function (usually `self` or `cls`).\n        sig = _signature_from_callable(\n            obj.__func__,\n            follow_wrapper_chains=follow_wrapper_chains,\n            skip_bound_arg=skip_bound_arg,\n            sigcls=sigcls)\n\n        if skip_bound_arg:\n            return _signature_bound_method(sig)\n        else:\n            return sig\n\n    # Was this function wrapped by a decorator?\n    if follow_wrapper_chains:\n        obj = unwrap(obj, stop=(lambda f: hasattr(f, \"__signature__\")))\n        if isinstance(obj, types.MethodType):\n            # If the unwrapped object is a *method*, we might want to\n            # skip its first parameter (self).\n            # See test_signature_wrapped_bound_method for details.\n            return _signature_from_callable(\n                obj,\n                follow_wrapper_chains=follow_wrapper_chains,\n                skip_bound_arg=skip_bound_arg,\n                sigcls=sigcls)\n\n    try:\n        sig = obj.__signature__\n    except AttributeError:\n        pass\n    else:\n        if sig is not None:\n            if not isinstance(sig, Signature):\n                raise TypeError(\n                    'unexpected object {!r} in __signature__ '\n                    'attribute'.format(sig))\n            return sig\n\n    try:\n        partialmethod = obj._partialmethod\n    except AttributeError:\n        pass\n    else:\n        if isinstance(partialmethod, functools.partialmethod):\n            # Unbound partialmethod (see functools.partialmethod)\n            # This means, that we need to calculate the signature\n            # as if it's a regular partial object, but taking into\n            # account that the first positional argument\n            # (usually `self`, or `cls`) will not be passed\n            # automatically (as for boundmethods)\n\n            wrapped_sig = _signature_from_callable(\n                partialmethod.func,\n                follow_wrapper_chains=follow_wrapper_chains,\n                skip_bound_arg=skip_bound_arg,\n                sigcls=sigcls)\n\n            sig = _signature_get_partial(wrapped_sig, partialmethod, (None,))\n            first_wrapped_param = tuple(wrapped_sig.parameters.values())[0]\n            if first_wrapped_param.kind is Parameter.VAR_POSITIONAL:\n                # First argument of the wrapped callable is `*args`, as in\n                # `partialmethod(lambda *args)`.\n                return sig\n            else:\n                sig_params = tuple(sig.parameters.values())\n                assert (not sig_params or\n                        first_wrapped_param is not sig_params[0])\n                new_params = (first_wrapped_param,) + sig_params\n                return sig.replace(parameters=new_params)\n\n    if isfunction(obj) or _signature_is_functionlike(obj):\n        # If it's a pure Python function, or an object that is duck type\n        # of a Python function (Cython functions, for instance), then:\n        return _signature_from_function(sigcls, obj,\n                                        skip_bound_arg=skip_bound_arg)\n\n    if _signature_is_builtin(obj):\n        return _signature_from_builtin(sigcls, obj,\n                                       skip_bound_arg=skip_bound_arg)\n\n    if isinstance(obj, functools.partial):\n        wrapped_sig = _signature_from_callable(\n            obj.func,\n            follow_wrapper_chains=follow_wrapper_chains,\n            skip_bound_arg=skip_bound_arg,\n            sigcls=sigcls)\n        return _signature_get_partial(wrapped_sig, obj)\n\n    sig = None\n    if isinstance(obj, type):\n        # obj is a class or a metaclass\n\n        # First, let's see if it has an overloaded __call__ defined\n        # in its metaclass\n        call = _signature_get_user_defined_method(type(obj), '__call__')\n        if call is not None:\n            sig = _signature_from_callable(\n                call,\n                follow_wrapper_chains=follow_wrapper_chains,\n                skip_bound_arg=skip_bound_arg,\n                sigcls=sigcls)\n        else:\n            # Now we check if the 'obj' class has a '__new__' method\n            new = _signature_get_user_defined_method(obj, '__new__')\n            if new is not None:\n                sig = _signature_from_callable(\n                    new,\n                    follow_wrapper_chains=follow_wrapper_chains,\n                    skip_bound_arg=skip_bound_arg,\n                    sigcls=sigcls)\n            else:\n                # Finally, we should have at least __init__ implemented\n                init = _signature_get_user_defined_method(obj, '__init__')\n                if init is not None:\n                    sig = _signature_from_callable(\n                        init,\n                        follow_wrapper_chains=follow_wrapper_chains,\n                        skip_bound_arg=skip_bound_arg,\n                        sigcls=sigcls)\n\n        if sig is None:\n            # At this point we know, that `obj` is a class, with no user-\n            # defined '__init__', '__new__', or class-level '__call__'\n\n            for base in obj.__mro__[:-1]:\n                # Since '__text_signature__' is implemented as a\n                # descriptor that extracts text signature from the\n                # class docstring, if 'obj' is derived from a builtin\n                # class, its own '__text_signature__' may be 'None'.\n                # Therefore, we go through the MRO (except the last\n                # class in there, which is 'object') to find the first\n                # class with non-empty text signature.\n                try:\n                    text_sig = base.__text_signature__\n                except AttributeError:\n                    pass\n                else:\n                    if text_sig:\n                        # If 'obj' class has a __text_signature__ attribute:\n                        # return a signature based on it\n                        return _signature_fromstr(sigcls, obj, text_sig)\n\n            # No '__text_signature__' was found for the 'obj' class.\n            # Last option is to check if its '__init__' is\n            # object.__init__ or type.__init__.\n            if type not in obj.__mro__:\n                # We have a class (not metaclass), but no user-defined\n                # __init__ or __new__ for it\n                if (obj.__init__ is object.__init__ and\n                    obj.__new__ is object.__new__):\n                    # Return a signature of 'object' builtin.\n                    return sigcls.from_callable(object)\n                else:\n                    raise ValueError(\n                        'no signature found for builtin type {!r}'.format(obj))\n\n    elif not isinstance(obj, _NonUserDefinedCallables):\n        # An object with __call__\n        # We also check that the 'obj' is not an instance of\n        # _WrapperDescriptor or _MethodWrapper to avoid\n        # infinite recursion (and even potential segfault)\n        call = _signature_get_user_defined_method(type(obj), '__call__')\n        if call is not None:\n            try:\n                sig = _signature_from_callable(\n                    call,\n                    follow_wrapper_chains=follow_wrapper_chains,\n                    skip_bound_arg=skip_bound_arg,\n                    sigcls=sigcls)\n            except ValueError as ex:\n                msg = 'no signature found for {!r}'.format(obj)\n                raise ValueError(msg) from ex\n\n    if sig is not None:\n        # For classes and objects we skip the first parameter of their\n        # __call__, __new__, or __init__ methods\n        if skip_bound_arg:\n            return _signature_bound_method(sig)\n        else:\n            return sig\n\n    if isinstance(obj, types.BuiltinFunctionType):\n        # Raise a nicer error message for builtins\n        msg = 'no signature found for builtin function {!r}'.format(obj)\n        raise ValueError(msg)\n\n    raise ValueError('callable {!r} is not supported by signature'.format(obj))\n\n\nclass _void:\n    \"\"\"A private marker - used in Parameter & Signature.\"\"\"\n\n\nclass _empty:\n    \"\"\"Marker object for Signature.empty and Parameter.empty.\"\"\"\n\n\nclass _ParameterKind(enum.IntEnum):\n    POSITIONAL_ONLY = 0\n    POSITIONAL_OR_KEYWORD = 1\n    VAR_POSITIONAL = 2\n    KEYWORD_ONLY = 3\n    VAR_KEYWORD = 4\n\n    def __str__(self):\n        return self._name_\n\n    @property\n    def description(self):\n        return _PARAM_NAME_MAPPING[self]\n\n_POSITIONAL_ONLY         = _ParameterKind.POSITIONAL_ONLY\n_POSITIONAL_OR_KEYWORD   = _ParameterKind.POSITIONAL_OR_KEYWORD\n_VAR_POSITIONAL          = _ParameterKind.VAR_POSITIONAL\n_KEYWORD_ONLY            = _ParameterKind.KEYWORD_ONLY\n_VAR_KEYWORD             = _ParameterKind.VAR_KEYWORD\n\n_PARAM_NAME_MAPPING = {\n    _POSITIONAL_ONLY: 'positional-only',\n    _POSITIONAL_OR_KEYWORD: 'positional or keyword',\n    _VAR_POSITIONAL: 'variadic positional',\n    _KEYWORD_ONLY: 'keyword-only',\n    _VAR_KEYWORD: 'variadic keyword'\n}\n\n\nclass Parameter:\n    \"\"\"Represents a parameter in a function signature.\n\n    Has the following public attributes:\n\n    * name : str\n        The name of the parameter as a string.\n    * default : object\n        The default value for the parameter if specified.  If the\n        parameter has no default value, this attribute is set to\n        `Parameter.empty`.\n    * annotation\n        The annotation for the parameter if specified.  If the\n        parameter has no annotation, this attribute is set to\n        `Parameter.empty`.\n    * kind : str\n        Describes how argument values are bound to the parameter.\n        Possible values: `Parameter.POSITIONAL_ONLY`,\n        `Parameter.POSITIONAL_OR_KEYWORD`, `Parameter.VAR_POSITIONAL`,\n        `Parameter.KEYWORD_ONLY`, `Parameter.VAR_KEYWORD`.\n    \"\"\"\n\n    __slots__ = ('_name', '_kind', '_default', '_annotation')\n\n    POSITIONAL_ONLY         = _POSITIONAL_ONLY\n    POSITIONAL_OR_KEYWORD   = _POSITIONAL_OR_KEYWORD\n    VAR_POSITIONAL          = _VAR_POSITIONAL\n    KEYWORD_ONLY            = _KEYWORD_ONLY\n    VAR_KEYWORD             = _VAR_KEYWORD\n\n    empty = _empty\n\n    def __init__(self, name, kind, *, default=_empty, annotation=_empty):\n        try:\n            self._kind = _ParameterKind(kind)\n        except ValueError:\n            raise ValueError(f'value {kind!r} is not a valid Parameter.kind')\n        if default is not _empty:\n            if self._kind in (_VAR_POSITIONAL, _VAR_KEYWORD):\n                msg = '{} parameters cannot have default values'\n                msg = msg.format(self._kind.description)\n                raise ValueError(msg)\n        self._default = default\n        self._annotation = annotation\n\n        if name is _empty:\n            raise ValueError('name is a required attribute for Parameter')\n\n        if not isinstance(name, str):\n            msg = 'name must be a str, not a {}'.format(type(name).__name__)\n            raise TypeError(msg)\n\n        if name[0] == '.' and name[1:].isdigit():\n            # These are implicit arguments generated by comprehensions. In\n            # order to provide a friendlier interface to users, we recast\n            # their name as \"implicitN\" and treat them as positional-only.\n            # See issue 19611.\n            if self._kind != _POSITIONAL_OR_KEYWORD:\n                msg = (\n                    'implicit arguments must be passed as '\n                    'positional or keyword arguments, not {}'\n                )\n                msg = msg.format(self._kind.description)\n                raise ValueError(msg)\n            self._kind = _POSITIONAL_ONLY\n            name = 'implicit{}'.format(name[1:])\n\n        if not name.isidentifier():\n            raise ValueError('{!r} is not a valid parameter name'.format(name))\n\n        self._name = name\n\n    def __reduce__(self):\n        return (type(self),\n                (self._name, self._kind),\n                {'_default': self._default,\n                 '_annotation': self._annotation})\n\n    def __setstate__(self, state):\n        self._default = state['_default']\n        self._annotation = state['_annotation']\n\n    @property\n    def name(self):\n        return self._name\n\n    @property\n    def default(self):\n        return self._default\n\n    @property\n    def annotation(self):\n        return self._annotation\n\n    @property\n    def kind(self):\n        return self._kind\n\n    def replace(self, *, name=_void, kind=_void,\n                annotation=_void, default=_void):\n        \"\"\"Creates a customized copy of the Parameter.\"\"\"\n\n        if name is _void:\n            name = self._name\n\n        if kind is _void:\n            kind = self._kind\n\n        if annotation is _void:\n            annotation = self._annotation\n\n        if default is _void:\n            default = self._default\n\n        return type(self)(name, kind, default=default, annotation=annotation)\n\n    def __str__(self):\n        kind = self.kind\n        formatted = self._name\n\n        # Add annotation and default value\n        if self._annotation is not _empty:\n            formatted = '{}: {}'.format(formatted,\n                                       formatannotation(self._annotation))\n\n        if self._default is not _empty:\n            if self._annotation is not _empty:\n                formatted = '{} = {}'.format(formatted, repr(self._default))\n            else:\n                formatted = '{}={}'.format(formatted, repr(self._default))\n\n        if kind == _VAR_POSITIONAL:\n            formatted = '*' + formatted\n        elif kind == _VAR_KEYWORD:\n            formatted = '**' + formatted\n\n        return formatted\n\n    def __repr__(self):\n        return '<{} \"{}\">'.format(self.__class__.__name__, self)\n\n    def __hash__(self):\n        return hash((self.name, self.kind, self.annotation, self.default))\n\n    def __eq__(self, other):\n        if self is other:\n            return True\n        if not isinstance(other, Parameter):\n            return NotImplemented\n        return (self._name == other._name and\n                self._kind == other._kind and\n                self._default == other._default and\n                self._annotation == other._annotation)\n\n\nclass BoundArguments:\n    \"\"\"Result of `Signature.bind` call.  Holds the mapping of arguments\n    to the function's parameters.\n\n    Has the following public attributes:\n\n    * arguments : OrderedDict\n        An ordered mutable mapping of parameters' names to arguments' values.\n        Does not contain arguments' default values.\n    * signature : Signature\n        The Signature object that created this instance.\n    * args : tuple\n        Tuple of positional arguments values.\n    * kwargs : dict\n        Dict of keyword arguments values.\n    \"\"\"\n\n    __slots__ = ('arguments', '_signature', '__weakref__')\n\n    def __init__(self, signature, arguments):\n        self.arguments = arguments\n        self._signature = signature\n\n    @property\n    def signature(self):\n        return self._signature\n\n    @property\n    def args(self):\n        args = []\n        for param_name, param in self._signature.parameters.items():\n            if param.kind in (_VAR_KEYWORD, _KEYWORD_ONLY):\n                break\n\n            try:\n                arg = self.arguments[param_name]\n            except KeyError:\n                # We're done here. Other arguments\n                # will be mapped in 'BoundArguments.kwargs'\n                break\n            else:\n                if param.kind == _VAR_POSITIONAL:\n                    # *args\n                    args.extend(arg)\n                else:\n                    # plain argument\n                    args.append(arg)\n\n        return tuple(args)\n\n    @property\n    def kwargs(self):\n        kwargs = {}\n        kwargs_started = False\n        for param_name, param in self._signature.parameters.items():\n            if not kwargs_started:\n                if param.kind in (_VAR_KEYWORD, _KEYWORD_ONLY):\n                    kwargs_started = True\n                else:\n                    if param_name not in self.arguments:\n                        kwargs_started = True\n                        continue\n\n            if not kwargs_started:\n                continue\n\n            try:\n                arg = self.arguments[param_name]\n            except KeyError:\n                pass\n            else:\n                if param.kind == _VAR_KEYWORD:\n                    # **kwargs\n                    kwargs.update(arg)\n                else:\n                    # plain keyword argument\n                    kwargs[param_name] = arg\n\n        return kwargs\n\n    def apply_defaults(self):\n        \"\"\"Set default values for missing arguments.\n\n        For variable-positional arguments (*args) the default is an\n        empty tuple.\n\n        For variable-keyword arguments (**kwargs) the default is an\n        empty dict.\n        \"\"\"\n        arguments = self.arguments\n        new_arguments = []\n        for name, param in self._signature.parameters.items():\n            try:\n                new_arguments.append((name, arguments[name]))\n            except KeyError:\n                if param.default is not _empty:\n                    val = param.default\n                elif param.kind is _VAR_POSITIONAL:\n                    val = ()\n                elif param.kind is _VAR_KEYWORD:\n                    val = {}\n                else:\n                    # This BoundArguments was likely produced by\n                    # Signature.bind_partial().\n                    continue\n                new_arguments.append((name, val))\n        self.arguments = OrderedDict(new_arguments)\n\n    def __eq__(self, other):\n        if self is other:\n            return True\n        if not isinstance(other, BoundArguments):\n            return NotImplemented\n        return (self.signature == other.signature and\n                self.arguments == other.arguments)\n\n    def __setstate__(self, state):\n        self._signature = state['_signature']\n        self.arguments = state['arguments']\n\n    def __getstate__(self):\n        return {'_signature': self._signature, 'arguments': self.arguments}\n\n    def __repr__(self):\n        args = []\n        for arg, value in self.arguments.items():\n            args.append('{}={!r}'.format(arg, value))\n        return '<{} ({})>'.format(self.__class__.__name__, ', '.join(args))\n\n\nclass Signature:\n    \"\"\"A Signature object represents the overall signature of a function.\n    It stores a Parameter object for each parameter accepted by the\n    function, as well as information specific to the function itself.\n\n    A Signature object has the following public attributes and methods:\n\n    * parameters : OrderedDict\n        An ordered mapping of parameters' names to the corresponding\n        Parameter objects (keyword-only arguments are in the same order\n        as listed in `code.co_varnames`).\n    * return_annotation : object\n        The annotation for the return type of the function if specified.\n        If the function has no annotation for its return type, this\n        attribute is set to `Signature.empty`.\n    * bind(*args, **kwargs) -> BoundArguments\n        Creates a mapping from positional and keyword arguments to\n        parameters.\n    * bind_partial(*args, **kwargs) -> BoundArguments\n        Creates a partial mapping from positional and keyword arguments\n        to parameters (simulating 'functools.partial' behavior.)\n    \"\"\"\n\n    __slots__ = ('_return_annotation', '_parameters')\n\n    _parameter_cls = Parameter\n    _bound_arguments_cls = BoundArguments\n\n    empty = _empty\n\n    def __init__(self, parameters=None, *, return_annotation=_empty,\n                 __validate_parameters__=True):\n        \"\"\"Constructs Signature from the given list of Parameter\n        objects and 'return_annotation'.  All arguments are optional.\n        \"\"\"\n\n        if parameters is None:\n            params = OrderedDict()\n        else:\n            if __validate_parameters__:\n                params = OrderedDict()\n                top_kind = _POSITIONAL_ONLY\n                kind_defaults = False\n\n                for idx, param in enumerate(parameters):\n                    kind = param.kind\n                    name = param.name\n\n                    if kind < top_kind:\n                        msg = (\n                            'wrong parameter order: {} parameter before {} '\n                            'parameter'\n                        )\n                        msg = msg.format(top_kind.description,\n                                         kind.description)\n                        raise ValueError(msg)\n                    elif kind > top_kind:\n                        kind_defaults = False\n                        top_kind = kind\n\n                    if kind in (_POSITIONAL_ONLY, _POSITIONAL_OR_KEYWORD):\n                        if param.default is _empty:\n                            if kind_defaults:\n                                # No default for this parameter, but the\n                                # previous parameter of the same kind had\n                                # a default\n                                msg = 'non-default argument follows default ' \\\n                                      'argument'\n                                raise ValueError(msg)\n                        else:\n                            # There is a default for this parameter.\n                            kind_defaults = True\n\n                    if name in params:\n                        msg = 'duplicate parameter name: {!r}'.format(name)\n                        raise ValueError(msg)\n\n                    params[name] = param\n            else:\n                params = OrderedDict(((param.name, param)\n                                                for param in parameters))\n\n        self._parameters = types.MappingProxyType(params)\n        self._return_annotation = return_annotation\n\n    @classmethod\n    def from_function(cls, func):\n        \"\"\"Constructs Signature for the given python function.\n\n        Deprecated since Python 3.5, use `Signature.from_callable()`.\n        \"\"\"\n\n        warnings.warn(\"inspect.Signature.from_function() is deprecated since \"\n                      \"Python 3.5, use Signature.from_callable()\",\n                      DeprecationWarning, stacklevel=2)\n        return _signature_from_function(cls, func)\n\n    @classmethod\n    def from_builtin(cls, func):\n        \"\"\"Constructs Signature for the given builtin function.\n\n        Deprecated since Python 3.5, use `Signature.from_callable()`.\n        \"\"\"\n\n        warnings.warn(\"inspect.Signature.from_builtin() is deprecated since \"\n                      \"Python 3.5, use Signature.from_callable()\",\n                      DeprecationWarning, stacklevel=2)\n        return _signature_from_builtin(cls, func)\n\n    @classmethod\n    def from_callable(cls, obj, *, follow_wrapped=True):\n        \"\"\"Constructs Signature for the given callable object.\"\"\"\n        return _signature_from_callable(obj, sigcls=cls,\n                                        follow_wrapper_chains=follow_wrapped)\n\n    @property\n    def parameters(self):\n        return self._parameters\n\n    @property\n    def return_annotation(self):\n        return self._return_annotation\n\n    def replace(self, *, parameters=_void, return_annotation=_void):\n        \"\"\"Creates a customized copy of the Signature.\n        Pass 'parameters' and/or 'return_annotation' arguments\n        to override them in the new copy.\n        \"\"\"\n\n        if parameters is _void:\n            parameters = self.parameters.values()\n\n        if return_annotation is _void:\n            return_annotation = self._return_annotation\n\n        return type(self)(parameters,\n                          return_annotation=return_annotation)\n\n    def _hash_basis(self):\n        params = tuple(param for param in self.parameters.values()\n                             if param.kind != _KEYWORD_ONLY)\n\n        kwo_params = {param.name: param for param in self.parameters.values()\n                                        if param.kind == _KEYWORD_ONLY}\n\n        return params, kwo_params, self.return_annotation\n\n    def __hash__(self):\n        params, kwo_params, return_annotation = self._hash_basis()\n        kwo_params = frozenset(kwo_params.values())\n        return hash((params, kwo_params, return_annotation))\n\n    def __eq__(self, other):\n        if self is other:\n            return True\n        if not isinstance(other, Signature):\n            return NotImplemented\n        return self._hash_basis() == other._hash_basis()\n\n    def _bind(self, args, kwargs, *, partial=False):\n        \"\"\"Private method. Don't use directly.\"\"\"\n\n        arguments = OrderedDict()\n\n        parameters = iter(self.parameters.values())\n        parameters_ex = ()\n        arg_vals = iter(args)\n\n        while True:\n            # Let's iterate through the positional arguments and corresponding\n            # parameters\n            try:\n                arg_val = next(arg_vals)\n            except StopIteration:\n                # No more positional arguments\n                try:\n                    param = next(parameters)\n                except StopIteration:\n                    # No more parameters. That's it. Just need to check that\n                    # we have no `kwargs` after this while loop\n                    break\n                else:\n                    if param.kind == _VAR_POSITIONAL:\n                        # That's OK, just empty *args.  Let's start parsing\n                        # kwargs\n                        break\n                    elif param.name in kwargs:\n                        if param.kind == _POSITIONAL_ONLY:\n                            msg = '{arg!r} parameter is positional only, ' \\\n                                  'but was passed as a keyword'\n                            msg = msg.format(arg=param.name)\n                            raise TypeError(msg) from None\n                        parameters_ex = (param,)\n                        break\n                    elif (param.kind == _VAR_KEYWORD or\n                                                param.default is not _empty):\n                        # That's fine too - we have a default value for this\n                        # parameter.  So, lets start parsing `kwargs`, starting\n                        # with the current parameter\n                        parameters_ex = (param,)\n                        break\n                    else:\n                        # No default, not VAR_KEYWORD, not VAR_POSITIONAL,\n                        # not in `kwargs`\n                        if partial:\n                            parameters_ex = (param,)\n                            break\n                        else:\n                            msg = 'missing a required argument: {arg!r}'\n                            msg = msg.format(arg=param.name)\n                            raise TypeError(msg) from None\n            else:\n                # We have a positional argument to process\n                try:\n                    param = next(parameters)\n                except StopIteration:\n                    raise TypeError('too many positional arguments') from None\n                else:\n                    if param.kind in (_VAR_KEYWORD, _KEYWORD_ONLY):\n                        # Looks like we have no parameter for this positional\n                        # argument\n                        raise TypeError(\n                            'too many positional arguments') from None\n\n                    if param.kind == _VAR_POSITIONAL:\n                        # We have an '*args'-like argument, let's fill it with\n                        # all positional arguments we have left and move on to\n                        # the next phase\n                        values = [arg_val]\n                        values.extend(arg_vals)\n                        arguments[param.name] = tuple(values)\n                        break\n\n                    if param.name in kwargs and param.kind != _POSITIONAL_ONLY:\n                        raise TypeError(\n                            'multiple values for argument {arg!r}'.format(\n                                arg=param.name)) from None\n\n                    arguments[param.name] = arg_val\n\n        # Now, we iterate through the remaining parameters to process\n        # keyword arguments\n        kwargs_param = None\n        for param in itertools.chain(parameters_ex, parameters):\n            if param.kind == _VAR_KEYWORD:\n                # Memorize that we have a '**kwargs'-like parameter\n                kwargs_param = param\n                continue\n\n            if param.kind == _VAR_POSITIONAL:\n                # Named arguments don't refer to '*args'-like parameters.\n                # We only arrive here if the positional arguments ended\n                # before reaching the last parameter before *args.\n                continue\n\n            param_name = param.name\n            try:\n                arg_val = kwargs.pop(param_name)\n            except KeyError:\n                # We have no value for this parameter.  It's fine though,\n                # if it has a default value, or it is an '*args'-like\n                # parameter, left alone by the processing of positional\n                # arguments.\n                if (not partial and param.kind != _VAR_POSITIONAL and\n                                                    param.default is _empty):\n                    raise TypeError('missing a required argument: {arg!r}'. \\\n                                    format(arg=param_name)) from None\n\n            else:\n                if param.kind == _POSITIONAL_ONLY:\n                    # This should never happen in case of a properly built\n                    # Signature object (but let's have this check here\n                    # to ensure correct behaviour just in case)\n                    raise TypeError('{arg!r} parameter is positional only, '\n                                    'but was passed as a keyword'. \\\n                                    format(arg=param.name))\n\n                arguments[param_name] = arg_val\n\n        if kwargs:\n            if kwargs_param is not None:\n                # Process our '**kwargs'-like parameter\n                arguments[kwargs_param.name] = kwargs\n            else:\n                raise TypeError(\n                    'got an unexpected keyword argument {arg!r}'.format(\n                        arg=next(iter(kwargs))))\n\n        return self._bound_arguments_cls(self, arguments)\n\n    def bind(self, /, *args, **kwargs):\n        \"\"\"Get a BoundArguments object, that maps the passed `args`\n        and `kwargs` to the function's signature.  Raises `TypeError`\n        if the passed arguments can not be bound.\n        \"\"\"\n        return self._bind(args, kwargs)\n\n    def bind_partial(self, /, *args, **kwargs):\n        \"\"\"Get a BoundArguments object, that partially maps the\n        passed `args` and `kwargs` to the function's signature.\n        Raises `TypeError` if the passed arguments can not be bound.\n        \"\"\"\n        return self._bind(args, kwargs, partial=True)\n\n    def __reduce__(self):\n        return (type(self),\n                (tuple(self._parameters.values()),),\n                {'_return_annotation': self._return_annotation})\n\n    def __setstate__(self, state):\n        self._return_annotation = state['_return_annotation']\n\n    def __repr__(self):\n        return '<{} {}>'.format(self.__class__.__name__, self)\n\n    def __str__(self):\n        result = []\n        render_pos_only_separator = False\n        render_kw_only_separator = True\n        for param in self.parameters.values():\n            formatted = str(param)\n\n            kind = param.kind\n\n            if kind == _POSITIONAL_ONLY:\n                render_pos_only_separator = True\n            elif render_pos_only_separator:\n                # It's not a positional-only parameter, and the flag\n                # is set to 'True' (there were pos-only params before.)\n                result.append('/')\n                render_pos_only_separator = False\n\n            if kind == _VAR_POSITIONAL:\n                # OK, we have an '*args'-like parameter, so we won't need\n                # a '*' to separate keyword-only arguments\n                render_kw_only_separator = False\n            elif kind == _KEYWORD_ONLY and render_kw_only_separator:\n                # We have a keyword-only parameter to render and we haven't\n                # rendered an '*args'-like parameter before, so add a '*'\n                # separator to the parameters list (\"foo(arg1, *, arg2)\" case)\n                result.append('*')\n                # This condition should be only triggered once, so\n                # reset the flag\n                render_kw_only_separator = False\n\n            result.append(formatted)\n\n        if render_pos_only_separator:\n            # There were only positional-only parameters, hence the\n            # flag was not reset to 'False'\n            result.append('/')\n\n        rendered = '({})'.format(', '.join(result))\n\n        if self.return_annotation is not _empty:\n            anno = formatannotation(self.return_annotation)\n            rendered += ' -> {}'.format(anno)\n\n        return rendered\n\n\ndef signature(obj, *, follow_wrapped=True):\n    \"\"\"Get a signature object for the passed callable.\"\"\"\n    return Signature.from_callable(obj, follow_wrapped=follow_wrapped)\n\n\ndef _main():\n    \"\"\" Logic for inspecting an object given at command line \"\"\"\n    import argparse\n    import importlib\n\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\n        'object',\n         help=\"The object to be analysed. \"\n              \"It supports the 'module:qualname' syntax\")\n    parser.add_argument(\n        '-d', '--details', action='store_true',\n        help='Display info about the module rather than its source code')\n\n    args = parser.parse_args()\n\n    target = args.object\n    mod_name, has_attrs, attrs = target.partition(\":\")\n    try:\n        obj = module = importlib.import_module(mod_name)\n    except Exception as exc:\n        msg = \"Failed to import {} ({}: {})\".format(mod_name,\n                                                    type(exc).__name__,\n                                                    exc)\n        print(msg, file=sys.stderr)\n        sys.exit(2)\n\n    if has_attrs:\n        parts = attrs.split(\".\")\n        obj = module\n        for part in parts:\n            obj = getattr(obj, part)\n\n    if module.__name__ in sys.builtin_module_names:\n        print(\"Can't get info for builtin modules.\", file=sys.stderr)\n        sys.exit(1)\n\n    if args.details:\n        print('Target: {}'.format(target))\n        print('Origin: {}'.format(getsourcefile(module)))\n        print('Cached: {}'.format(module.__cached__))\n        if obj is module:\n            print('Loader: {}'.format(repr(module.__loader__)))\n            if hasattr(module, '__path__'):\n                print('Submodule search path: {}'.format(module.__path__))\n        else:\n            try:\n                __, lineno = findsource(obj)\n            except Exception:\n                pass\n            else:\n                print('Line: {}'.format(lineno))\n\n        print('\\n')\n    else:\n        print(getsource(obj))\n\n\nif __name__ == \"__main__\":\n    _main()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/io.py",
    "content": "\"\"\"The io module provides the Python interfaces to stream handling. The\nbuiltin open function is defined in this module.\n\nAt the top of the I/O hierarchy is the abstract base class IOBase. It\ndefines the basic interface to a stream. Note, however, that there is no\nseparation between reading and writing to streams; implementations are\nallowed to raise an OSError if they do not support a given operation.\n\nExtending IOBase is RawIOBase which deals simply with the reading and\nwriting of raw bytes to a stream. FileIO subclasses RawIOBase to provide\nan interface to OS files.\n\nBufferedIOBase deals with buffering on a raw byte stream (RawIOBase). Its\nsubclasses, BufferedWriter, BufferedReader, and BufferedRWPair buffer\nstreams that are readable, writable, and both respectively.\nBufferedRandom provides a buffered interface to random access\nstreams. BytesIO is a simple stream of in-memory bytes.\n\nAnother IOBase subclass, TextIOBase, deals with the encoding and decoding\nof streams into text. TextIOWrapper, which extends it, is a buffered text\ninterface to a buffered raw stream (`BufferedIOBase`). Finally, StringIO\nis an in-memory stream for text.\n\nArgument names are not part of the specification, and only the arguments\nof open() are intended to be used as keyword arguments.\n\ndata:\n\nDEFAULT_BUFFER_SIZE\n\n   An int containing the default buffer size used by the module's buffered\n   I/O classes. open() uses the file's blksize (as obtained by os.stat) if\n   possible.\n\"\"\"\n# New I/O library conforming to PEP 3116.\n\n__author__ = (\"Guido van Rossum <guido@python.org>, \"\n              \"Mike Verdone <mike.verdone@gmail.com>, \"\n              \"Mark Russell <mark.russell@zen.co.uk>, \"\n              \"Antoine Pitrou <solipsis@pitrou.net>, \"\n              \"Amaury Forgeot d'Arc <amauryfa@gmail.com>, \"\n              \"Benjamin Peterson <benjamin@python.org>\")\n\n__all__ = [\"BlockingIOError\", \"open\", \"open_code\", \"IOBase\", \"RawIOBase\",\n           \"FileIO\", \"BytesIO\", \"StringIO\", \"BufferedIOBase\",\n           \"BufferedReader\", \"BufferedWriter\", \"BufferedRWPair\",\n           \"BufferedRandom\", \"TextIOBase\", \"TextIOWrapper\",\n           \"UnsupportedOperation\", \"SEEK_SET\", \"SEEK_CUR\", \"SEEK_END\"]\n\n\nimport _io\nimport abc\n\nfrom _io import (DEFAULT_BUFFER_SIZE, BlockingIOError, UnsupportedOperation,\n                 open, open_code, FileIO, BytesIO, StringIO, BufferedReader,\n                 BufferedWriter, BufferedRWPair, BufferedRandom,\n                 IncrementalNewlineDecoder, TextIOWrapper)\n\nOpenWrapper = _io.open # for compatibility with _pyio\n\n# Pretend this exception was created here.\nUnsupportedOperation.__module__ = \"io\"\n\n# for seek()\nSEEK_SET = 0\nSEEK_CUR = 1\nSEEK_END = 2\n\n# Declaring ABCs in C is tricky so we do it here.\n# Method descriptions and default implementations are inherited from the C\n# version however.\nclass IOBase(_io._IOBase, metaclass=abc.ABCMeta):\n    __doc__ = _io._IOBase.__doc__\n\nclass RawIOBase(_io._RawIOBase, IOBase):\n    __doc__ = _io._RawIOBase.__doc__\n\nclass BufferedIOBase(_io._BufferedIOBase, IOBase):\n    __doc__ = _io._BufferedIOBase.__doc__\n\nclass TextIOBase(_io._TextIOBase, IOBase):\n    __doc__ = _io._TextIOBase.__doc__\n\nRawIOBase.register(FileIO)\n\nfor klass in (BytesIO, BufferedReader, BufferedWriter, BufferedRandom,\n              BufferedRWPair):\n    BufferedIOBase.register(klass)\n\nfor klass in (StringIO, TextIOWrapper):\n    TextIOBase.register(klass)\ndel klass\n\ntry:\n    from _io import _WindowsConsoleIO\nexcept ImportError:\n    pass\nelse:\n    RawIOBase.register(_WindowsConsoleIO)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/ipaddress.py",
    "content": "# Copyright 2007 Google Inc.\n#  Licensed to PSF under a Contributor Agreement.\n\n\"\"\"A fast, lightweight IPv4/IPv6 manipulation library in Python.\n\nThis library is used to create/poke/manipulate IPv4 and IPv6 addresses\nand networks.\n\n\"\"\"\n\n__version__ = '1.0'\n\n\nimport functools\n\nIPV4LENGTH = 32\nIPV6LENGTH = 128\n\nclass AddressValueError(ValueError):\n    \"\"\"A Value Error related to the address.\"\"\"\n\n\nclass NetmaskValueError(ValueError):\n    \"\"\"A Value Error related to the netmask.\"\"\"\n\n\ndef ip_address(address):\n    \"\"\"Take an IP string/int and return an object of the correct type.\n\n    Args:\n        address: A string or integer, the IP address.  Either IPv4 or\n          IPv6 addresses may be supplied; integers less than 2**32 will\n          be considered to be IPv4 by default.\n\n    Returns:\n        An IPv4Address or IPv6Address object.\n\n    Raises:\n        ValueError: if the *address* passed isn't either a v4 or a v6\n          address\n\n    \"\"\"\n    try:\n        return IPv4Address(address)\n    except (AddressValueError, NetmaskValueError):\n        pass\n\n    try:\n        return IPv6Address(address)\n    except (AddressValueError, NetmaskValueError):\n        pass\n\n    raise ValueError('%r does not appear to be an IPv4 or IPv6 address' %\n                     address)\n\n\ndef ip_network(address, strict=True):\n    \"\"\"Take an IP string/int and return an object of the correct type.\n\n    Args:\n        address: A string or integer, the IP network.  Either IPv4 or\n          IPv6 networks may be supplied; integers less than 2**32 will\n          be considered to be IPv4 by default.\n\n    Returns:\n        An IPv4Network or IPv6Network object.\n\n    Raises:\n        ValueError: if the string passed isn't either a v4 or a v6\n          address. Or if the network has host bits set.\n\n    \"\"\"\n    try:\n        return IPv4Network(address, strict)\n    except (AddressValueError, NetmaskValueError):\n        pass\n\n    try:\n        return IPv6Network(address, strict)\n    except (AddressValueError, NetmaskValueError):\n        pass\n\n    raise ValueError('%r does not appear to be an IPv4 or IPv6 network' %\n                     address)\n\n\ndef ip_interface(address):\n    \"\"\"Take an IP string/int and return an object of the correct type.\n\n    Args:\n        address: A string or integer, the IP address.  Either IPv4 or\n          IPv6 addresses may be supplied; integers less than 2**32 will\n          be considered to be IPv4 by default.\n\n    Returns:\n        An IPv4Interface or IPv6Interface object.\n\n    Raises:\n        ValueError: if the string passed isn't either a v4 or a v6\n          address.\n\n    Notes:\n        The IPv?Interface classes describe an Address on a particular\n        Network, so they're basically a combination of both the Address\n        and Network classes.\n\n    \"\"\"\n    try:\n        return IPv4Interface(address)\n    except (AddressValueError, NetmaskValueError):\n        pass\n\n    try:\n        return IPv6Interface(address)\n    except (AddressValueError, NetmaskValueError):\n        pass\n\n    raise ValueError('%r does not appear to be an IPv4 or IPv6 interface' %\n                     address)\n\n\ndef v4_int_to_packed(address):\n    \"\"\"Represent an address as 4 packed bytes in network (big-endian) order.\n\n    Args:\n        address: An integer representation of an IPv4 IP address.\n\n    Returns:\n        The integer address packed as 4 bytes in network (big-endian) order.\n\n    Raises:\n        ValueError: If the integer is negative or too large to be an\n          IPv4 IP address.\n\n    \"\"\"\n    try:\n        return address.to_bytes(4, 'big')\n    except OverflowError:\n        raise ValueError(\"Address negative or too large for IPv4\")\n\n\ndef v6_int_to_packed(address):\n    \"\"\"Represent an address as 16 packed bytes in network (big-endian) order.\n\n    Args:\n        address: An integer representation of an IPv6 IP address.\n\n    Returns:\n        The integer address packed as 16 bytes in network (big-endian) order.\n\n    \"\"\"\n    try:\n        return address.to_bytes(16, 'big')\n    except OverflowError:\n        raise ValueError(\"Address negative or too large for IPv6\")\n\n\ndef _split_optional_netmask(address):\n    \"\"\"Helper to split the netmask and raise AddressValueError if needed\"\"\"\n    addr = str(address).split('/')\n    if len(addr) > 2:\n        raise AddressValueError(\"Only one '/' permitted in %r\" % address)\n    return addr\n\n\ndef _find_address_range(addresses):\n    \"\"\"Find a sequence of sorted deduplicated IPv#Address.\n\n    Args:\n        addresses: a list of IPv#Address objects.\n\n    Yields:\n        A tuple containing the first and last IP addresses in the sequence.\n\n    \"\"\"\n    it = iter(addresses)\n    first = last = next(it)\n    for ip in it:\n        if ip._ip != last._ip + 1:\n            yield first, last\n            first = ip\n        last = ip\n    yield first, last\n\n\ndef _count_righthand_zero_bits(number, bits):\n    \"\"\"Count the number of zero bits on the right hand side.\n\n    Args:\n        number: an integer.\n        bits: maximum number of bits to count.\n\n    Returns:\n        The number of zero bits on the right hand side of the number.\n\n    \"\"\"\n    if number == 0:\n        return bits\n    return min(bits, (~number & (number-1)).bit_length())\n\n\ndef summarize_address_range(first, last):\n    \"\"\"Summarize a network range given the first and last IP addresses.\n\n    Example:\n        >>> list(summarize_address_range(IPv4Address('192.0.2.0'),\n        ...                              IPv4Address('192.0.2.130')))\n        ...                                #doctest: +NORMALIZE_WHITESPACE\n        [IPv4Network('192.0.2.0/25'), IPv4Network('192.0.2.128/31'),\n         IPv4Network('192.0.2.130/32')]\n\n    Args:\n        first: the first IPv4Address or IPv6Address in the range.\n        last: the last IPv4Address or IPv6Address in the range.\n\n    Returns:\n        An iterator of the summarized IPv(4|6) network objects.\n\n    Raise:\n        TypeError:\n            If the first and last objects are not IP addresses.\n            If the first and last objects are not the same version.\n        ValueError:\n            If the last object is not greater than the first.\n            If the version of the first address is not 4 or 6.\n\n    \"\"\"\n    if (not (isinstance(first, _BaseAddress) and\n             isinstance(last, _BaseAddress))):\n        raise TypeError('first and last must be IP addresses, not networks')\n    if first.version != last.version:\n        raise TypeError(\"%s and %s are not of the same version\" % (\n                         first, last))\n    if first > last:\n        raise ValueError('last IP address must be greater than first')\n\n    if first.version == 4:\n        ip = IPv4Network\n    elif first.version == 6:\n        ip = IPv6Network\n    else:\n        raise ValueError('unknown IP version')\n\n    ip_bits = first._max_prefixlen\n    first_int = first._ip\n    last_int = last._ip\n    while first_int <= last_int:\n        nbits = min(_count_righthand_zero_bits(first_int, ip_bits),\n                    (last_int - first_int + 1).bit_length() - 1)\n        net = ip((first_int, ip_bits - nbits))\n        yield net\n        first_int += 1 << nbits\n        if first_int - 1 == ip._ALL_ONES:\n            break\n\n\ndef _collapse_addresses_internal(addresses):\n    \"\"\"Loops through the addresses, collapsing concurrent netblocks.\n\n    Example:\n\n        ip1 = IPv4Network('192.0.2.0/26')\n        ip2 = IPv4Network('192.0.2.64/26')\n        ip3 = IPv4Network('192.0.2.128/26')\n        ip4 = IPv4Network('192.0.2.192/26')\n\n        _collapse_addresses_internal([ip1, ip2, ip3, ip4]) ->\n          [IPv4Network('192.0.2.0/24')]\n\n        This shouldn't be called directly; it is called via\n          collapse_addresses([]).\n\n    Args:\n        addresses: A list of IPv4Network's or IPv6Network's\n\n    Returns:\n        A list of IPv4Network's or IPv6Network's depending on what we were\n        passed.\n\n    \"\"\"\n    # First merge\n    to_merge = list(addresses)\n    subnets = {}\n    while to_merge:\n        net = to_merge.pop()\n        supernet = net.supernet()\n        existing = subnets.get(supernet)\n        if existing is None:\n            subnets[supernet] = net\n        elif existing != net:\n            # Merge consecutive subnets\n            del subnets[supernet]\n            to_merge.append(supernet)\n    # Then iterate over resulting networks, skipping subsumed subnets\n    last = None\n    for net in sorted(subnets.values()):\n        if last is not None:\n            # Since they are sorted, last.network_address <= net.network_address\n            # is a given.\n            if last.broadcast_address >= net.broadcast_address:\n                continue\n        yield net\n        last = net\n\n\ndef collapse_addresses(addresses):\n    \"\"\"Collapse a list of IP objects.\n\n    Example:\n        collapse_addresses([IPv4Network('192.0.2.0/25'),\n                            IPv4Network('192.0.2.128/25')]) ->\n                           [IPv4Network('192.0.2.0/24')]\n\n    Args:\n        addresses: An iterator of IPv4Network or IPv6Network objects.\n\n    Returns:\n        An iterator of the collapsed IPv(4|6)Network objects.\n\n    Raises:\n        TypeError: If passed a list of mixed version objects.\n\n    \"\"\"\n    addrs = []\n    ips = []\n    nets = []\n\n    # split IP addresses and networks\n    for ip in addresses:\n        if isinstance(ip, _BaseAddress):\n            if ips and ips[-1]._version != ip._version:\n                raise TypeError(\"%s and %s are not of the same version\" % (\n                                 ip, ips[-1]))\n            ips.append(ip)\n        elif ip._prefixlen == ip._max_prefixlen:\n            if ips and ips[-1]._version != ip._version:\n                raise TypeError(\"%s and %s are not of the same version\" % (\n                                 ip, ips[-1]))\n            try:\n                ips.append(ip.ip)\n            except AttributeError:\n                ips.append(ip.network_address)\n        else:\n            if nets and nets[-1]._version != ip._version:\n                raise TypeError(\"%s and %s are not of the same version\" % (\n                                 ip, nets[-1]))\n            nets.append(ip)\n\n    # sort and dedup\n    ips = sorted(set(ips))\n\n    # find consecutive address ranges in the sorted sequence and summarize them\n    if ips:\n        for first, last in _find_address_range(ips):\n            addrs.extend(summarize_address_range(first, last))\n\n    return _collapse_addresses_internal(addrs + nets)\n\n\ndef get_mixed_type_key(obj):\n    \"\"\"Return a key suitable for sorting between networks and addresses.\n\n    Address and Network objects are not sortable by default; they're\n    fundamentally different so the expression\n\n        IPv4Address('192.0.2.0') <= IPv4Network('192.0.2.0/24')\n\n    doesn't make any sense.  There are some times however, where you may wish\n    to have ipaddress sort these for you anyway. If you need to do this, you\n    can use this function as the key= argument to sorted().\n\n    Args:\n      obj: either a Network or Address object.\n    Returns:\n      appropriate key.\n\n    \"\"\"\n    if isinstance(obj, _BaseNetwork):\n        return obj._get_networks_key()\n    elif isinstance(obj, _BaseAddress):\n        return obj._get_address_key()\n    return NotImplemented\n\n\nclass _IPAddressBase:\n\n    \"\"\"The mother class.\"\"\"\n\n    __slots__ = ()\n\n    @property\n    def exploded(self):\n        \"\"\"Return the longhand version of the IP address as a string.\"\"\"\n        return self._explode_shorthand_ip_string()\n\n    @property\n    def compressed(self):\n        \"\"\"Return the shorthand version of the IP address as a string.\"\"\"\n        return str(self)\n\n    @property\n    def reverse_pointer(self):\n        \"\"\"The name of the reverse DNS pointer for the IP address, e.g.:\n            >>> ipaddress.ip_address(\"127.0.0.1\").reverse_pointer\n            '1.0.0.127.in-addr.arpa'\n            >>> ipaddress.ip_address(\"2001:db8::1\").reverse_pointer\n            '1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.b.d.0.1.0.0.2.ip6.arpa'\n\n        \"\"\"\n        return self._reverse_pointer()\n\n    @property\n    def version(self):\n        msg = '%200s has no version specified' % (type(self),)\n        raise NotImplementedError(msg)\n\n    def _check_int_address(self, address):\n        if address < 0:\n            msg = \"%d (< 0) is not permitted as an IPv%d address\"\n            raise AddressValueError(msg % (address, self._version))\n        if address > self._ALL_ONES:\n            msg = \"%d (>= 2**%d) is not permitted as an IPv%d address\"\n            raise AddressValueError(msg % (address, self._max_prefixlen,\n                                           self._version))\n\n    def _check_packed_address(self, address, expected_len):\n        address_len = len(address)\n        if address_len != expected_len:\n            msg = \"%r (len %d != %d) is not permitted as an IPv%d address\"\n            raise AddressValueError(msg % (address, address_len,\n                                           expected_len, self._version))\n\n    @classmethod\n    def _ip_int_from_prefix(cls, prefixlen):\n        \"\"\"Turn the prefix length into a bitwise netmask\n\n        Args:\n            prefixlen: An integer, the prefix length.\n\n        Returns:\n            An integer.\n\n        \"\"\"\n        return cls._ALL_ONES ^ (cls._ALL_ONES >> prefixlen)\n\n    @classmethod\n    def _prefix_from_ip_int(cls, ip_int):\n        \"\"\"Return prefix length from the bitwise netmask.\n\n        Args:\n            ip_int: An integer, the netmask in expanded bitwise format\n\n        Returns:\n            An integer, the prefix length.\n\n        Raises:\n            ValueError: If the input intermingles zeroes & ones\n        \"\"\"\n        trailing_zeroes = _count_righthand_zero_bits(ip_int,\n                                                     cls._max_prefixlen)\n        prefixlen = cls._max_prefixlen - trailing_zeroes\n        leading_ones = ip_int >> trailing_zeroes\n        all_ones = (1 << prefixlen) - 1\n        if leading_ones != all_ones:\n            byteslen = cls._max_prefixlen // 8\n            details = ip_int.to_bytes(byteslen, 'big')\n            msg = 'Netmask pattern %r mixes zeroes & ones'\n            raise ValueError(msg % details)\n        return prefixlen\n\n    @classmethod\n    def _report_invalid_netmask(cls, netmask_str):\n        msg = '%r is not a valid netmask' % netmask_str\n        raise NetmaskValueError(msg) from None\n\n    @classmethod\n    def _prefix_from_prefix_string(cls, prefixlen_str):\n        \"\"\"Return prefix length from a numeric string\n\n        Args:\n            prefixlen_str: The string to be converted\n\n        Returns:\n            An integer, the prefix length.\n\n        Raises:\n            NetmaskValueError: If the input is not a valid netmask\n        \"\"\"\n        # int allows a leading +/- as well as surrounding whitespace,\n        # so we ensure that isn't the case\n        if not (prefixlen_str.isascii() and prefixlen_str.isdigit()):\n            cls._report_invalid_netmask(prefixlen_str)\n        try:\n            prefixlen = int(prefixlen_str)\n        except ValueError:\n            cls._report_invalid_netmask(prefixlen_str)\n        if not (0 <= prefixlen <= cls._max_prefixlen):\n            cls._report_invalid_netmask(prefixlen_str)\n        return prefixlen\n\n    @classmethod\n    def _prefix_from_ip_string(cls, ip_str):\n        \"\"\"Turn a netmask/hostmask string into a prefix length\n\n        Args:\n            ip_str: The netmask/hostmask to be converted\n\n        Returns:\n            An integer, the prefix length.\n\n        Raises:\n            NetmaskValueError: If the input is not a valid netmask/hostmask\n        \"\"\"\n        # Parse the netmask/hostmask like an IP address.\n        try:\n            ip_int = cls._ip_int_from_string(ip_str)\n        except AddressValueError:\n            cls._report_invalid_netmask(ip_str)\n\n        # Try matching a netmask (this would be /1*0*/ as a bitwise regexp).\n        # Note that the two ambiguous cases (all-ones and all-zeroes) are\n        # treated as netmasks.\n        try:\n            return cls._prefix_from_ip_int(ip_int)\n        except ValueError:\n            pass\n\n        # Invert the bits, and try matching a /0+1+/ hostmask instead.\n        ip_int ^= cls._ALL_ONES\n        try:\n            return cls._prefix_from_ip_int(ip_int)\n        except ValueError:\n            cls._report_invalid_netmask(ip_str)\n\n    @classmethod\n    def _split_addr_prefix(cls, address):\n        \"\"\"Helper function to parse address of Network/Interface.\n\n        Arg:\n            address: Argument of Network/Interface.\n\n        Returns:\n            (addr, prefix) tuple.\n        \"\"\"\n        # a packed address or integer\n        if isinstance(address, (bytes, int)):\n            return address, cls._max_prefixlen\n\n        if not isinstance(address, tuple):\n            # Assume input argument to be string or any object representation\n            # which converts into a formatted IP prefix string.\n            address = _split_optional_netmask(address)\n\n        # Constructing from a tuple (addr, [mask])\n        if len(address) > 1:\n            return address\n        return address[0], cls._max_prefixlen\n\n    def __reduce__(self):\n        return self.__class__, (str(self),)\n\n\n@functools.total_ordering\nclass _BaseAddress(_IPAddressBase):\n\n    \"\"\"A generic IP object.\n\n    This IP class contains the version independent methods which are\n    used by single IP addresses.\n    \"\"\"\n\n    __slots__ = ()\n\n    def __int__(self):\n        return self._ip\n\n    def __eq__(self, other):\n        try:\n            return (self._ip == other._ip\n                    and self._version == other._version)\n        except AttributeError:\n            return NotImplemented\n\n    def __lt__(self, other):\n        if not isinstance(other, _BaseAddress):\n            return NotImplemented\n        if self._version != other._version:\n            raise TypeError('%s and %s are not of the same version' % (\n                             self, other))\n        if self._ip != other._ip:\n            return self._ip < other._ip\n        return False\n\n    # Shorthand for Integer addition and subtraction. This is not\n    # meant to ever support addition/subtraction of addresses.\n    def __add__(self, other):\n        if not isinstance(other, int):\n            return NotImplemented\n        return self.__class__(int(self) + other)\n\n    def __sub__(self, other):\n        if not isinstance(other, int):\n            return NotImplemented\n        return self.__class__(int(self) - other)\n\n    def __repr__(self):\n        return '%s(%r)' % (self.__class__.__name__, str(self))\n\n    def __str__(self):\n        return str(self._string_from_ip_int(self._ip))\n\n    def __hash__(self):\n        return hash(hex(int(self._ip)))\n\n    def _get_address_key(self):\n        return (self._version, self)\n\n    def __reduce__(self):\n        return self.__class__, (self._ip,)\n\n\n@functools.total_ordering\nclass _BaseNetwork(_IPAddressBase):\n    \"\"\"A generic IP network object.\n\n    This IP class contains the version independent methods which are\n    used by networks.\n    \"\"\"\n\n    def __repr__(self):\n        return '%s(%r)' % (self.__class__.__name__, str(self))\n\n    def __str__(self):\n        return '%s/%d' % (self.network_address, self.prefixlen)\n\n    def hosts(self):\n        \"\"\"Generate Iterator over usable hosts in a network.\n\n        This is like __iter__ except it doesn't return the network\n        or broadcast addresses.\n\n        \"\"\"\n        network = int(self.network_address)\n        broadcast = int(self.broadcast_address)\n        for x in range(network + 1, broadcast):\n            yield self._address_class(x)\n\n    def __iter__(self):\n        network = int(self.network_address)\n        broadcast = int(self.broadcast_address)\n        for x in range(network, broadcast + 1):\n            yield self._address_class(x)\n\n    def __getitem__(self, n):\n        network = int(self.network_address)\n        broadcast = int(self.broadcast_address)\n        if n >= 0:\n            if network + n > broadcast:\n                raise IndexError('address out of range')\n            return self._address_class(network + n)\n        else:\n            n += 1\n            if broadcast + n < network:\n                raise IndexError('address out of range')\n            return self._address_class(broadcast + n)\n\n    def __lt__(self, other):\n        if not isinstance(other, _BaseNetwork):\n            return NotImplemented\n        if self._version != other._version:\n            raise TypeError('%s and %s are not of the same version' % (\n                             self, other))\n        if self.network_address != other.network_address:\n            return self.network_address < other.network_address\n        if self.netmask != other.netmask:\n            return self.netmask < other.netmask\n        return False\n\n    def __eq__(self, other):\n        try:\n            return (self._version == other._version and\n                    self.network_address == other.network_address and\n                    int(self.netmask) == int(other.netmask))\n        except AttributeError:\n            return NotImplemented\n\n    def __hash__(self):\n        return hash(int(self.network_address) ^ int(self.netmask))\n\n    def __contains__(self, other):\n        # always false if one is v4 and the other is v6.\n        if self._version != other._version:\n            return False\n        # dealing with another network.\n        if isinstance(other, _BaseNetwork):\n            return False\n        # dealing with another address\n        else:\n            # address\n            return other._ip & self.netmask._ip == self.network_address._ip\n\n    def overlaps(self, other):\n        \"\"\"Tell if self is partly contained in other.\"\"\"\n        return self.network_address in other or (\n            self.broadcast_address in other or (\n                other.network_address in self or (\n                    other.broadcast_address in self)))\n\n    @functools.cached_property\n    def broadcast_address(self):\n        return self._address_class(int(self.network_address) |\n                                   int(self.hostmask))\n\n    @functools.cached_property\n    def hostmask(self):\n        return self._address_class(int(self.netmask) ^ self._ALL_ONES)\n\n    @property\n    def with_prefixlen(self):\n        return '%s/%d' % (self.network_address, self._prefixlen)\n\n    @property\n    def with_netmask(self):\n        return '%s/%s' % (self.network_address, self.netmask)\n\n    @property\n    def with_hostmask(self):\n        return '%s/%s' % (self.network_address, self.hostmask)\n\n    @property\n    def num_addresses(self):\n        \"\"\"Number of hosts in the current subnet.\"\"\"\n        return int(self.broadcast_address) - int(self.network_address) + 1\n\n    @property\n    def _address_class(self):\n        # Returning bare address objects (rather than interfaces) allows for\n        # more consistent behaviour across the network address, broadcast\n        # address and individual host addresses.\n        msg = '%200s has no associated address class' % (type(self),)\n        raise NotImplementedError(msg)\n\n    @property\n    def prefixlen(self):\n        return self._prefixlen\n\n    def address_exclude(self, other):\n        \"\"\"Remove an address from a larger block.\n\n        For example:\n\n            addr1 = ip_network('192.0.2.0/28')\n            addr2 = ip_network('192.0.2.1/32')\n            list(addr1.address_exclude(addr2)) =\n                [IPv4Network('192.0.2.0/32'), IPv4Network('192.0.2.2/31'),\n                 IPv4Network('192.0.2.4/30'), IPv4Network('192.0.2.8/29')]\n\n        or IPv6:\n\n            addr1 = ip_network('2001:db8::1/32')\n            addr2 = ip_network('2001:db8::1/128')\n            list(addr1.address_exclude(addr2)) =\n                [ip_network('2001:db8::1/128'),\n                 ip_network('2001:db8::2/127'),\n                 ip_network('2001:db8::4/126'),\n                 ip_network('2001:db8::8/125'),\n                 ...\n                 ip_network('2001:db8:8000::/33')]\n\n        Args:\n            other: An IPv4Network or IPv6Network object of the same type.\n\n        Returns:\n            An iterator of the IPv(4|6)Network objects which is self\n            minus other.\n\n        Raises:\n            TypeError: If self and other are of differing address\n              versions, or if other is not a network object.\n            ValueError: If other is not completely contained by self.\n\n        \"\"\"\n        if not self._version == other._version:\n            raise TypeError(\"%s and %s are not of the same version\" % (\n                             self, other))\n\n        if not isinstance(other, _BaseNetwork):\n            raise TypeError(\"%s is not a network object\" % other)\n\n        if not other.subnet_of(self):\n            raise ValueError('%s not contained in %s' % (other, self))\n        if other == self:\n            return\n\n        # Make sure we're comparing the network of other.\n        other = other.__class__('%s/%s' % (other.network_address,\n                                           other.prefixlen))\n\n        s1, s2 = self.subnets()\n        while s1 != other and s2 != other:\n            if other.subnet_of(s1):\n                yield s2\n                s1, s2 = s1.subnets()\n            elif other.subnet_of(s2):\n                yield s1\n                s1, s2 = s2.subnets()\n            else:\n                # If we got here, there's a bug somewhere.\n                raise AssertionError('Error performing exclusion: '\n                                     's1: %s s2: %s other: %s' %\n                                     (s1, s2, other))\n        if s1 == other:\n            yield s2\n        elif s2 == other:\n            yield s1\n        else:\n            # If we got here, there's a bug somewhere.\n            raise AssertionError('Error performing exclusion: '\n                                 's1: %s s2: %s other: %s' %\n                                 (s1, s2, other))\n\n    def compare_networks(self, other):\n        \"\"\"Compare two IP objects.\n\n        This is only concerned about the comparison of the integer\n        representation of the network addresses.  This means that the\n        host bits aren't considered at all in this method.  If you want\n        to compare host bits, you can easily enough do a\n        'HostA._ip < HostB._ip'\n\n        Args:\n            other: An IP object.\n\n        Returns:\n            If the IP versions of self and other are the same, returns:\n\n            -1 if self < other:\n              eg: IPv4Network('192.0.2.0/25') < IPv4Network('192.0.2.128/25')\n              IPv6Network('2001:db8::1000/124') <\n                  IPv6Network('2001:db8::2000/124')\n            0 if self == other\n              eg: IPv4Network('192.0.2.0/24') == IPv4Network('192.0.2.0/24')\n              IPv6Network('2001:db8::1000/124') ==\n                  IPv6Network('2001:db8::1000/124')\n            1 if self > other\n              eg: IPv4Network('192.0.2.128/25') > IPv4Network('192.0.2.0/25')\n                  IPv6Network('2001:db8::2000/124') >\n                      IPv6Network('2001:db8::1000/124')\n\n          Raises:\n              TypeError if the IP versions are different.\n\n        \"\"\"\n        # does this need to raise a ValueError?\n        if self._version != other._version:\n            raise TypeError('%s and %s are not of the same type' % (\n                             self, other))\n        # self._version == other._version below here:\n        if self.network_address < other.network_address:\n            return -1\n        if self.network_address > other.network_address:\n            return 1\n        # self.network_address == other.network_address below here:\n        if self.netmask < other.netmask:\n            return -1\n        if self.netmask > other.netmask:\n            return 1\n        return 0\n\n    def _get_networks_key(self):\n        \"\"\"Network-only key function.\n\n        Returns an object that identifies this address' network and\n        netmask. This function is a suitable \"key\" argument for sorted()\n        and list.sort().\n\n        \"\"\"\n        return (self._version, self.network_address, self.netmask)\n\n    def subnets(self, prefixlen_diff=1, new_prefix=None):\n        \"\"\"The subnets which join to make the current subnet.\n\n        In the case that self contains only one IP\n        (self._prefixlen == 32 for IPv4 or self._prefixlen == 128\n        for IPv6), yield an iterator with just ourself.\n\n        Args:\n            prefixlen_diff: An integer, the amount the prefix length\n              should be increased by. This should not be set if\n              new_prefix is also set.\n            new_prefix: The desired new prefix length. This must be a\n              larger number (smaller prefix) than the existing prefix.\n              This should not be set if prefixlen_diff is also set.\n\n        Returns:\n            An iterator of IPv(4|6) objects.\n\n        Raises:\n            ValueError: The prefixlen_diff is too small or too large.\n                OR\n            prefixlen_diff and new_prefix are both set or new_prefix\n              is a smaller number than the current prefix (smaller\n              number means a larger network)\n\n        \"\"\"\n        if self._prefixlen == self._max_prefixlen:\n            yield self\n            return\n\n        if new_prefix is not None:\n            if new_prefix < self._prefixlen:\n                raise ValueError('new prefix must be longer')\n            if prefixlen_diff != 1:\n                raise ValueError('cannot set prefixlen_diff and new_prefix')\n            prefixlen_diff = new_prefix - self._prefixlen\n\n        if prefixlen_diff < 0:\n            raise ValueError('prefix length diff must be > 0')\n        new_prefixlen = self._prefixlen + prefixlen_diff\n\n        if new_prefixlen > self._max_prefixlen:\n            raise ValueError(\n                'prefix length diff %d is invalid for netblock %s' % (\n                    new_prefixlen, self))\n\n        start = int(self.network_address)\n        end = int(self.broadcast_address) + 1\n        step = (int(self.hostmask) + 1) >> prefixlen_diff\n        for new_addr in range(start, end, step):\n            current = self.__class__((new_addr, new_prefixlen))\n            yield current\n\n    def supernet(self, prefixlen_diff=1, new_prefix=None):\n        \"\"\"The supernet containing the current network.\n\n        Args:\n            prefixlen_diff: An integer, the amount the prefix length of\n              the network should be decreased by.  For example, given a\n              /24 network and a prefixlen_diff of 3, a supernet with a\n              /21 netmask is returned.\n\n        Returns:\n            An IPv4 network object.\n\n        Raises:\n            ValueError: If self.prefixlen - prefixlen_diff < 0. I.e., you have\n              a negative prefix length.\n                OR\n            If prefixlen_diff and new_prefix are both set or new_prefix is a\n              larger number than the current prefix (larger number means a\n              smaller network)\n\n        \"\"\"\n        if self._prefixlen == 0:\n            return self\n\n        if new_prefix is not None:\n            if new_prefix > self._prefixlen:\n                raise ValueError('new prefix must be shorter')\n            if prefixlen_diff != 1:\n                raise ValueError('cannot set prefixlen_diff and new_prefix')\n            prefixlen_diff = self._prefixlen - new_prefix\n\n        new_prefixlen = self.prefixlen - prefixlen_diff\n        if new_prefixlen < 0:\n            raise ValueError(\n                'current prefixlen is %d, cannot have a prefixlen_diff of %d' %\n                (self.prefixlen, prefixlen_diff))\n        return self.__class__((\n            int(self.network_address) & (int(self.netmask) << prefixlen_diff),\n            new_prefixlen\n            ))\n\n    @property\n    def is_multicast(self):\n        \"\"\"Test if the address is reserved for multicast use.\n\n        Returns:\n            A boolean, True if the address is a multicast address.\n            See RFC 2373 2.7 for details.\n\n        \"\"\"\n        return (self.network_address.is_multicast and\n                self.broadcast_address.is_multicast)\n\n    @staticmethod\n    def _is_subnet_of(a, b):\n        try:\n            # Always false if one is v4 and the other is v6.\n            if a._version != b._version:\n                raise TypeError(f\"{a} and {b} are not of the same version\")\n            return (b.network_address <= a.network_address and\n                    b.broadcast_address >= a.broadcast_address)\n        except AttributeError:\n            raise TypeError(f\"Unable to test subnet containment \"\n                            f\"between {a} and {b}\")\n\n    def subnet_of(self, other):\n        \"\"\"Return True if this network is a subnet of other.\"\"\"\n        return self._is_subnet_of(self, other)\n\n    def supernet_of(self, other):\n        \"\"\"Return True if this network is a supernet of other.\"\"\"\n        return self._is_subnet_of(other, self)\n\n    @property\n    def is_reserved(self):\n        \"\"\"Test if the address is otherwise IETF reserved.\n\n        Returns:\n            A boolean, True if the address is within one of the\n            reserved IPv6 Network ranges.\n\n        \"\"\"\n        return (self.network_address.is_reserved and\n                self.broadcast_address.is_reserved)\n\n    @property\n    def is_link_local(self):\n        \"\"\"Test if the address is reserved for link-local.\n\n        Returns:\n            A boolean, True if the address is reserved per RFC 4291.\n\n        \"\"\"\n        return (self.network_address.is_link_local and\n                self.broadcast_address.is_link_local)\n\n    @property\n    def is_private(self):\n        \"\"\"Test if this address is allocated for private networks.\n\n        Returns:\n            A boolean, True if the address is reserved per\n            iana-ipv4-special-registry or iana-ipv6-special-registry.\n\n        \"\"\"\n        return (self.network_address.is_private and\n                self.broadcast_address.is_private)\n\n    @property\n    def is_global(self):\n        \"\"\"Test if this address is allocated for public networks.\n\n        Returns:\n            A boolean, True if the address is not reserved per\n            iana-ipv4-special-registry or iana-ipv6-special-registry.\n\n        \"\"\"\n        return not self.is_private\n\n    @property\n    def is_unspecified(self):\n        \"\"\"Test if the address is unspecified.\n\n        Returns:\n            A boolean, True if this is the unspecified address as defined in\n            RFC 2373 2.5.2.\n\n        \"\"\"\n        return (self.network_address.is_unspecified and\n                self.broadcast_address.is_unspecified)\n\n    @property\n    def is_loopback(self):\n        \"\"\"Test if the address is a loopback address.\n\n        Returns:\n            A boolean, True if the address is a loopback address as defined in\n            RFC 2373 2.5.3.\n\n        \"\"\"\n        return (self.network_address.is_loopback and\n                self.broadcast_address.is_loopback)\n\n\nclass _BaseV4:\n\n    \"\"\"Base IPv4 object.\n\n    The following methods are used by IPv4 objects in both single IP\n    addresses and networks.\n\n    \"\"\"\n\n    __slots__ = ()\n    _version = 4\n    # Equivalent to 255.255.255.255 or 32 bits of 1's.\n    _ALL_ONES = (2**IPV4LENGTH) - 1\n\n    _max_prefixlen = IPV4LENGTH\n    # There are only a handful of valid v4 netmasks, so we cache them all\n    # when constructed (see _make_netmask()).\n    _netmask_cache = {}\n\n    def _explode_shorthand_ip_string(self):\n        return str(self)\n\n    @classmethod\n    def _make_netmask(cls, arg):\n        \"\"\"Make a (netmask, prefix_len) tuple from the given argument.\n\n        Argument can be:\n        - an integer (the prefix length)\n        - a string representing the prefix length (e.g. \"24\")\n        - a string representing the prefix netmask (e.g. \"255.255.255.0\")\n        \"\"\"\n        if arg not in cls._netmask_cache:\n            if isinstance(arg, int):\n                prefixlen = arg\n                if not (0 <= prefixlen <= cls._max_prefixlen):\n                    cls._report_invalid_netmask(prefixlen)\n            else:\n                try:\n                    # Check for a netmask in prefix length form\n                    prefixlen = cls._prefix_from_prefix_string(arg)\n                except NetmaskValueError:\n                    # Check for a netmask or hostmask in dotted-quad form.\n                    # This may raise NetmaskValueError.\n                    prefixlen = cls._prefix_from_ip_string(arg)\n            netmask = IPv4Address(cls._ip_int_from_prefix(prefixlen))\n            cls._netmask_cache[arg] = netmask, prefixlen\n        return cls._netmask_cache[arg]\n\n    @classmethod\n    def _ip_int_from_string(cls, ip_str):\n        \"\"\"Turn the given IP string into an integer for comparison.\n\n        Args:\n            ip_str: A string, the IP ip_str.\n\n        Returns:\n            The IP ip_str as an integer.\n\n        Raises:\n            AddressValueError: if ip_str isn't a valid IPv4 Address.\n\n        \"\"\"\n        if not ip_str:\n            raise AddressValueError('Address cannot be empty')\n\n        octets = ip_str.split('.')\n        if len(octets) != 4:\n            raise AddressValueError(\"Expected 4 octets in %r\" % ip_str)\n\n        try:\n            return int.from_bytes(map(cls._parse_octet, octets), 'big')\n        except ValueError as exc:\n            raise AddressValueError(\"%s in %r\" % (exc, ip_str)) from None\n\n    @classmethod\n    def _parse_octet(cls, octet_str):\n        \"\"\"Convert a decimal octet into an integer.\n\n        Args:\n            octet_str: A string, the number to parse.\n\n        Returns:\n            The octet as an integer.\n\n        Raises:\n            ValueError: if the octet isn't strictly a decimal from [0..255].\n\n        \"\"\"\n        if not octet_str:\n            raise ValueError(\"Empty octet not permitted\")\n        # Whitelist the characters, since int() allows a lot of bizarre stuff.\n        if not (octet_str.isascii() and octet_str.isdigit()):\n            msg = \"Only decimal digits permitted in %r\"\n            raise ValueError(msg % octet_str)\n        # We do the length check second, since the invalid character error\n        # is likely to be more informative for the user\n        if len(octet_str) > 3:\n            msg = \"At most 3 characters permitted in %r\"\n            raise ValueError(msg % octet_str)\n        # Convert to integer (we know digits are legal)\n        octet_int = int(octet_str, 10)\n        if octet_int > 255:\n            raise ValueError(\"Octet %d (> 255) not permitted\" % octet_int)\n        return octet_int\n\n    @classmethod\n    def _string_from_ip_int(cls, ip_int):\n        \"\"\"Turns a 32-bit integer into dotted decimal notation.\n\n        Args:\n            ip_int: An integer, the IP address.\n\n        Returns:\n            The IP address as a string in dotted decimal notation.\n\n        \"\"\"\n        return '.'.join(map(str, ip_int.to_bytes(4, 'big')))\n\n    def _reverse_pointer(self):\n        \"\"\"Return the reverse DNS pointer name for the IPv4 address.\n\n        This implements the method described in RFC1035 3.5.\n\n        \"\"\"\n        reverse_octets = str(self).split('.')[::-1]\n        return '.'.join(reverse_octets) + '.in-addr.arpa'\n\n    @property\n    def max_prefixlen(self):\n        return self._max_prefixlen\n\n    @property\n    def version(self):\n        return self._version\n\n\nclass IPv4Address(_BaseV4, _BaseAddress):\n\n    \"\"\"Represent and manipulate single IPv4 Addresses.\"\"\"\n\n    __slots__ = ('_ip', '__weakref__')\n\n    def __init__(self, address):\n\n        \"\"\"\n        Args:\n            address: A string or integer representing the IP\n\n              Additionally, an integer can be passed, so\n              IPv4Address('192.0.2.1') == IPv4Address(3221225985).\n              or, more generally\n              IPv4Address(int(IPv4Address('192.0.2.1'))) ==\n                IPv4Address('192.0.2.1')\n\n        Raises:\n            AddressValueError: If ipaddress isn't a valid IPv4 address.\n\n        \"\"\"\n        # Efficient constructor from integer.\n        if isinstance(address, int):\n            self._check_int_address(address)\n            self._ip = address\n            return\n\n        # Constructing from a packed address\n        if isinstance(address, bytes):\n            self._check_packed_address(address, 4)\n            self._ip = int.from_bytes(address, 'big')\n            return\n\n        # Assume input argument to be string or any object representation\n        # which converts into a formatted IP string.\n        addr_str = str(address)\n        if '/' in addr_str:\n            raise AddressValueError(\"Unexpected '/' in %r\" % address)\n        self._ip = self._ip_int_from_string(addr_str)\n\n    @property\n    def packed(self):\n        \"\"\"The binary representation of this address.\"\"\"\n        return v4_int_to_packed(self._ip)\n\n    @property\n    def is_reserved(self):\n        \"\"\"Test if the address is otherwise IETF reserved.\n\n         Returns:\n             A boolean, True if the address is within the\n             reserved IPv4 Network range.\n\n        \"\"\"\n        return self in self._constants._reserved_network\n\n    @property\n    @functools.lru_cache()\n    def is_private(self):\n        \"\"\"Test if this address is allocated for private networks.\n\n        Returns:\n            A boolean, True if the address is reserved per\n            iana-ipv4-special-registry.\n\n        \"\"\"\n        return any(self in net for net in self._constants._private_networks)\n\n    @property\n    @functools.lru_cache()\n    def is_global(self):\n        return self not in self._constants._public_network and not self.is_private\n\n    @property\n    def is_multicast(self):\n        \"\"\"Test if the address is reserved for multicast use.\n\n        Returns:\n            A boolean, True if the address is multicast.\n            See RFC 3171 for details.\n\n        \"\"\"\n        return self in self._constants._multicast_network\n\n    @property\n    def is_unspecified(self):\n        \"\"\"Test if the address is unspecified.\n\n        Returns:\n            A boolean, True if this is the unspecified address as defined in\n            RFC 5735 3.\n\n        \"\"\"\n        return self == self._constants._unspecified_address\n\n    @property\n    def is_loopback(self):\n        \"\"\"Test if the address is a loopback address.\n\n        Returns:\n            A boolean, True if the address is a loopback per RFC 3330.\n\n        \"\"\"\n        return self in self._constants._loopback_network\n\n    @property\n    def is_link_local(self):\n        \"\"\"Test if the address is reserved for link-local.\n\n        Returns:\n            A boolean, True if the address is link-local per RFC 3927.\n\n        \"\"\"\n        return self in self._constants._linklocal_network\n\n\nclass IPv4Interface(IPv4Address):\n\n    def __init__(self, address):\n        addr, mask = self._split_addr_prefix(address)\n\n        IPv4Address.__init__(self, addr)\n        self.network = IPv4Network((addr, mask), strict=False)\n        self.netmask = self.network.netmask\n        self._prefixlen = self.network._prefixlen\n\n    @functools.cached_property\n    def hostmask(self):\n        return self.network.hostmask\n\n    def __str__(self):\n        return '%s/%d' % (self._string_from_ip_int(self._ip),\n                          self._prefixlen)\n\n    def __eq__(self, other):\n        address_equal = IPv4Address.__eq__(self, other)\n        if not address_equal or address_equal is NotImplemented:\n            return address_equal\n        try:\n            return self.network == other.network\n        except AttributeError:\n            # An interface with an associated network is NOT the\n            # same as an unassociated address. That's why the hash\n            # takes the extra info into account.\n            return False\n\n    def __lt__(self, other):\n        address_less = IPv4Address.__lt__(self, other)\n        if address_less is NotImplemented:\n            return NotImplemented\n        try:\n            return (self.network < other.network or\n                    self.network == other.network and address_less)\n        except AttributeError:\n            # We *do* allow addresses and interfaces to be sorted. The\n            # unassociated address is considered less than all interfaces.\n            return False\n\n    def __hash__(self):\n        return hash((self._ip, self._prefixlen, int(self.network.network_address)))\n\n    __reduce__ = _IPAddressBase.__reduce__\n\n    @property\n    def ip(self):\n        return IPv4Address(self._ip)\n\n    @property\n    def with_prefixlen(self):\n        return '%s/%s' % (self._string_from_ip_int(self._ip),\n                          self._prefixlen)\n\n    @property\n    def with_netmask(self):\n        return '%s/%s' % (self._string_from_ip_int(self._ip),\n                          self.netmask)\n\n    @property\n    def with_hostmask(self):\n        return '%s/%s' % (self._string_from_ip_int(self._ip),\n                          self.hostmask)\n\n\nclass IPv4Network(_BaseV4, _BaseNetwork):\n\n    \"\"\"This class represents and manipulates 32-bit IPv4 network + addresses..\n\n    Attributes: [examples for IPv4Network('192.0.2.0/27')]\n        .network_address: IPv4Address('192.0.2.0')\n        .hostmask: IPv4Address('0.0.0.31')\n        .broadcast_address: IPv4Address('192.0.2.32')\n        .netmask: IPv4Address('255.255.255.224')\n        .prefixlen: 27\n\n    \"\"\"\n    # Class to use when creating address objects\n    _address_class = IPv4Address\n\n    def __init__(self, address, strict=True):\n        \"\"\"Instantiate a new IPv4 network object.\n\n        Args:\n            address: A string or integer representing the IP [& network].\n              '192.0.2.0/24'\n              '192.0.2.0/255.255.255.0'\n              '192.0.0.2/0.0.0.255'\n              are all functionally the same in IPv4. Similarly,\n              '192.0.2.1'\n              '192.0.2.1/255.255.255.255'\n              '192.0.2.1/32'\n              are also functionally equivalent. That is to say, failing to\n              provide a subnetmask will create an object with a mask of /32.\n\n              If the mask (portion after the / in the argument) is given in\n              dotted quad form, it is treated as a netmask if it starts with a\n              non-zero field (e.g. /255.0.0.0 == /8) and as a hostmask if it\n              starts with a zero field (e.g. 0.255.255.255 == /8), with the\n              single exception of an all-zero mask which is treated as a\n              netmask == /0. If no mask is given, a default of /32 is used.\n\n              Additionally, an integer can be passed, so\n              IPv4Network('192.0.2.1') == IPv4Network(3221225985)\n              or, more generally\n              IPv4Interface(int(IPv4Interface('192.0.2.1'))) ==\n                IPv4Interface('192.0.2.1')\n\n        Raises:\n            AddressValueError: If ipaddress isn't a valid IPv4 address.\n            NetmaskValueError: If the netmask isn't valid for\n              an IPv4 address.\n            ValueError: If strict is True and a network address is not\n              supplied.\n        \"\"\"\n        addr, mask = self._split_addr_prefix(address)\n\n        self.network_address = IPv4Address(addr)\n        self.netmask, self._prefixlen = self._make_netmask(mask)\n        packed = int(self.network_address)\n        if packed & int(self.netmask) != packed:\n            if strict:\n                raise ValueError('%s has host bits set' % self)\n            else:\n                self.network_address = IPv4Address(packed &\n                                                   int(self.netmask))\n\n        if self._prefixlen == (self._max_prefixlen - 1):\n            self.hosts = self.__iter__\n\n    @property\n    @functools.lru_cache()\n    def is_global(self):\n        \"\"\"Test if this address is allocated for public networks.\n\n        Returns:\n            A boolean, True if the address is not reserved per\n            iana-ipv4-special-registry.\n\n        \"\"\"\n        return (not (self.network_address in IPv4Network('100.64.0.0/10') and\n                    self.broadcast_address in IPv4Network('100.64.0.0/10')) and\n                not self.is_private)\n\n\nclass _IPv4Constants:\n    _linklocal_network = IPv4Network('169.254.0.0/16')\n\n    _loopback_network = IPv4Network('127.0.0.0/8')\n\n    _multicast_network = IPv4Network('224.0.0.0/4')\n\n    _public_network = IPv4Network('100.64.0.0/10')\n\n    _private_networks = [\n        IPv4Network('0.0.0.0/8'),\n        IPv4Network('10.0.0.0/8'),\n        IPv4Network('127.0.0.0/8'),\n        IPv4Network('169.254.0.0/16'),\n        IPv4Network('172.16.0.0/12'),\n        IPv4Network('192.0.0.0/29'),\n        IPv4Network('192.0.0.170/31'),\n        IPv4Network('192.0.2.0/24'),\n        IPv4Network('192.168.0.0/16'),\n        IPv4Network('198.18.0.0/15'),\n        IPv4Network('198.51.100.0/24'),\n        IPv4Network('203.0.113.0/24'),\n        IPv4Network('240.0.0.0/4'),\n        IPv4Network('255.255.255.255/32'),\n        ]\n\n    _reserved_network = IPv4Network('240.0.0.0/4')\n\n    _unspecified_address = IPv4Address('0.0.0.0')\n\n\nIPv4Address._constants = _IPv4Constants\n\n\nclass _BaseV6:\n\n    \"\"\"Base IPv6 object.\n\n    The following methods are used by IPv6 objects in both single IP\n    addresses and networks.\n\n    \"\"\"\n\n    __slots__ = ()\n    _version = 6\n    _ALL_ONES = (2**IPV6LENGTH) - 1\n    _HEXTET_COUNT = 8\n    _HEX_DIGITS = frozenset('0123456789ABCDEFabcdef')\n    _max_prefixlen = IPV6LENGTH\n\n    # There are only a bunch of valid v6 netmasks, so we cache them all\n    # when constructed (see _make_netmask()).\n    _netmask_cache = {}\n\n    @classmethod\n    def _make_netmask(cls, arg):\n        \"\"\"Make a (netmask, prefix_len) tuple from the given argument.\n\n        Argument can be:\n        - an integer (the prefix length)\n        - a string representing the prefix length (e.g. \"24\")\n        - a string representing the prefix netmask (e.g. \"255.255.255.0\")\n        \"\"\"\n        if arg not in cls._netmask_cache:\n            if isinstance(arg, int):\n                prefixlen = arg\n                if not (0 <= prefixlen <= cls._max_prefixlen):\n                    cls._report_invalid_netmask(prefixlen)\n            else:\n                prefixlen = cls._prefix_from_prefix_string(arg)\n            netmask = IPv6Address(cls._ip_int_from_prefix(prefixlen))\n            cls._netmask_cache[arg] = netmask, prefixlen\n        return cls._netmask_cache[arg]\n\n    @classmethod\n    def _ip_int_from_string(cls, ip_str):\n        \"\"\"Turn an IPv6 ip_str into an integer.\n\n        Args:\n            ip_str: A string, the IPv6 ip_str.\n\n        Returns:\n            An int, the IPv6 address\n\n        Raises:\n            AddressValueError: if ip_str isn't a valid IPv6 Address.\n\n        \"\"\"\n        if not ip_str:\n            raise AddressValueError('Address cannot be empty')\n\n        parts = ip_str.split(':')\n\n        # An IPv6 address needs at least 2 colons (3 parts).\n        _min_parts = 3\n        if len(parts) < _min_parts:\n            msg = \"At least %d parts expected in %r\" % (_min_parts, ip_str)\n            raise AddressValueError(msg)\n\n        # If the address has an IPv4-style suffix, convert it to hexadecimal.\n        if '.' in parts[-1]:\n            try:\n                ipv4_int = IPv4Address(parts.pop())._ip\n            except AddressValueError as exc:\n                raise AddressValueError(\"%s in %r\" % (exc, ip_str)) from None\n            parts.append('%x' % ((ipv4_int >> 16) & 0xFFFF))\n            parts.append('%x' % (ipv4_int & 0xFFFF))\n\n        # An IPv6 address can't have more than 8 colons (9 parts).\n        # The extra colon comes from using the \"::\" notation for a single\n        # leading or trailing zero part.\n        _max_parts = cls._HEXTET_COUNT + 1\n        if len(parts) > _max_parts:\n            msg = \"At most %d colons permitted in %r\" % (_max_parts-1, ip_str)\n            raise AddressValueError(msg)\n\n        # Disregarding the endpoints, find '::' with nothing in between.\n        # This indicates that a run of zeroes has been skipped.\n        skip_index = None\n        for i in range(1, len(parts) - 1):\n            if not parts[i]:\n                if skip_index is not None:\n                    # Can't have more than one '::'\n                    msg = \"At most one '::' permitted in %r\" % ip_str\n                    raise AddressValueError(msg)\n                skip_index = i\n\n        # parts_hi is the number of parts to copy from above/before the '::'\n        # parts_lo is the number of parts to copy from below/after the '::'\n        if skip_index is not None:\n            # If we found a '::', then check if it also covers the endpoints.\n            parts_hi = skip_index\n            parts_lo = len(parts) - skip_index - 1\n            if not parts[0]:\n                parts_hi -= 1\n                if parts_hi:\n                    msg = \"Leading ':' only permitted as part of '::' in %r\"\n                    raise AddressValueError(msg % ip_str)  # ^: requires ^::\n            if not parts[-1]:\n                parts_lo -= 1\n                if parts_lo:\n                    msg = \"Trailing ':' only permitted as part of '::' in %r\"\n                    raise AddressValueError(msg % ip_str)  # :$ requires ::$\n            parts_skipped = cls._HEXTET_COUNT - (parts_hi + parts_lo)\n            if parts_skipped < 1:\n                msg = \"Expected at most %d other parts with '::' in %r\"\n                raise AddressValueError(msg % (cls._HEXTET_COUNT-1, ip_str))\n        else:\n            # Otherwise, allocate the entire address to parts_hi.  The\n            # endpoints could still be empty, but _parse_hextet() will check\n            # for that.\n            if len(parts) != cls._HEXTET_COUNT:\n                msg = \"Exactly %d parts expected without '::' in %r\"\n                raise AddressValueError(msg % (cls._HEXTET_COUNT, ip_str))\n            if not parts[0]:\n                msg = \"Leading ':' only permitted as part of '::' in %r\"\n                raise AddressValueError(msg % ip_str)  # ^: requires ^::\n            if not parts[-1]:\n                msg = \"Trailing ':' only permitted as part of '::' in %r\"\n                raise AddressValueError(msg % ip_str)  # :$ requires ::$\n            parts_hi = len(parts)\n            parts_lo = 0\n            parts_skipped = 0\n\n        try:\n            # Now, parse the hextets into a 128-bit integer.\n            ip_int = 0\n            for i in range(parts_hi):\n                ip_int <<= 16\n                ip_int |= cls._parse_hextet(parts[i])\n            ip_int <<= 16 * parts_skipped\n            for i in range(-parts_lo, 0):\n                ip_int <<= 16\n                ip_int |= cls._parse_hextet(parts[i])\n            return ip_int\n        except ValueError as exc:\n            raise AddressValueError(\"%s in %r\" % (exc, ip_str)) from None\n\n    @classmethod\n    def _parse_hextet(cls, hextet_str):\n        \"\"\"Convert an IPv6 hextet string into an integer.\n\n        Args:\n            hextet_str: A string, the number to parse.\n\n        Returns:\n            The hextet as an integer.\n\n        Raises:\n            ValueError: if the input isn't strictly a hex number from\n              [0..FFFF].\n\n        \"\"\"\n        # Whitelist the characters, since int() allows a lot of bizarre stuff.\n        if not cls._HEX_DIGITS.issuperset(hextet_str):\n            raise ValueError(\"Only hex digits permitted in %r\" % hextet_str)\n        # We do the length check second, since the invalid character error\n        # is likely to be more informative for the user\n        if len(hextet_str) > 4:\n            msg = \"At most 4 characters permitted in %r\"\n            raise ValueError(msg % hextet_str)\n        # Length check means we can skip checking the integer value\n        return int(hextet_str, 16)\n\n    @classmethod\n    def _compress_hextets(cls, hextets):\n        \"\"\"Compresses a list of hextets.\n\n        Compresses a list of strings, replacing the longest continuous\n        sequence of \"0\" in the list with \"\" and adding empty strings at\n        the beginning or at the end of the string such that subsequently\n        calling \":\".join(hextets) will produce the compressed version of\n        the IPv6 address.\n\n        Args:\n            hextets: A list of strings, the hextets to compress.\n\n        Returns:\n            A list of strings.\n\n        \"\"\"\n        best_doublecolon_start = -1\n        best_doublecolon_len = 0\n        doublecolon_start = -1\n        doublecolon_len = 0\n        for index, hextet in enumerate(hextets):\n            if hextet == '0':\n                doublecolon_len += 1\n                if doublecolon_start == -1:\n                    # Start of a sequence of zeros.\n                    doublecolon_start = index\n                if doublecolon_len > best_doublecolon_len:\n                    # This is the longest sequence of zeros so far.\n                    best_doublecolon_len = doublecolon_len\n                    best_doublecolon_start = doublecolon_start\n            else:\n                doublecolon_len = 0\n                doublecolon_start = -1\n\n        if best_doublecolon_len > 1:\n            best_doublecolon_end = (best_doublecolon_start +\n                                    best_doublecolon_len)\n            # For zeros at the end of the address.\n            if best_doublecolon_end == len(hextets):\n                hextets += ['']\n            hextets[best_doublecolon_start:best_doublecolon_end] = ['']\n            # For zeros at the beginning of the address.\n            if best_doublecolon_start == 0:\n                hextets = [''] + hextets\n\n        return hextets\n\n    @classmethod\n    def _string_from_ip_int(cls, ip_int=None):\n        \"\"\"Turns a 128-bit integer into hexadecimal notation.\n\n        Args:\n            ip_int: An integer, the IP address.\n\n        Returns:\n            A string, the hexadecimal representation of the address.\n\n        Raises:\n            ValueError: The address is bigger than 128 bits of all ones.\n\n        \"\"\"\n        if ip_int is None:\n            ip_int = int(cls._ip)\n\n        if ip_int > cls._ALL_ONES:\n            raise ValueError('IPv6 address is too large')\n\n        hex_str = '%032x' % ip_int\n        hextets = ['%x' % int(hex_str[x:x+4], 16) for x in range(0, 32, 4)]\n\n        hextets = cls._compress_hextets(hextets)\n        return ':'.join(hextets)\n\n    def _explode_shorthand_ip_string(self):\n        \"\"\"Expand a shortened IPv6 address.\n\n        Args:\n            ip_str: A string, the IPv6 address.\n\n        Returns:\n            A string, the expanded IPv6 address.\n\n        \"\"\"\n        if isinstance(self, IPv6Network):\n            ip_str = str(self.network_address)\n        elif isinstance(self, IPv6Interface):\n            ip_str = str(self.ip)\n        else:\n            ip_str = str(self)\n\n        ip_int = self._ip_int_from_string(ip_str)\n        hex_str = '%032x' % ip_int\n        parts = [hex_str[x:x+4] for x in range(0, 32, 4)]\n        if isinstance(self, (_BaseNetwork, IPv6Interface)):\n            return '%s/%d' % (':'.join(parts), self._prefixlen)\n        return ':'.join(parts)\n\n    def _reverse_pointer(self):\n        \"\"\"Return the reverse DNS pointer name for the IPv6 address.\n\n        This implements the method described in RFC3596 2.5.\n\n        \"\"\"\n        reverse_chars = self.exploded[::-1].replace(':', '')\n        return '.'.join(reverse_chars) + '.ip6.arpa'\n\n    @property\n    def max_prefixlen(self):\n        return self._max_prefixlen\n\n    @property\n    def version(self):\n        return self._version\n\n\nclass IPv6Address(_BaseV6, _BaseAddress):\n\n    \"\"\"Represent and manipulate single IPv6 Addresses.\"\"\"\n\n    __slots__ = ('_ip', '__weakref__')\n\n    def __init__(self, address):\n        \"\"\"Instantiate a new IPv6 address object.\n\n        Args:\n            address: A string or integer representing the IP\n\n              Additionally, an integer can be passed, so\n              IPv6Address('2001:db8::') ==\n                IPv6Address(42540766411282592856903984951653826560)\n              or, more generally\n              IPv6Address(int(IPv6Address('2001:db8::'))) ==\n                IPv6Address('2001:db8::')\n\n        Raises:\n            AddressValueError: If address isn't a valid IPv6 address.\n\n        \"\"\"\n        # Efficient constructor from integer.\n        if isinstance(address, int):\n            self._check_int_address(address)\n            self._ip = address\n            return\n\n        # Constructing from a packed address\n        if isinstance(address, bytes):\n            self._check_packed_address(address, 16)\n            self._ip = int.from_bytes(address, 'big')\n            return\n\n        # Assume input argument to be string or any object representation\n        # which converts into a formatted IP string.\n        addr_str = str(address)\n        if '/' in addr_str:\n            raise AddressValueError(\"Unexpected '/' in %r\" % address)\n        self._ip = self._ip_int_from_string(addr_str)\n\n    @property\n    def packed(self):\n        \"\"\"The binary representation of this address.\"\"\"\n        return v6_int_to_packed(self._ip)\n\n    @property\n    def is_multicast(self):\n        \"\"\"Test if the address is reserved for multicast use.\n\n        Returns:\n            A boolean, True if the address is a multicast address.\n            See RFC 2373 2.7 for details.\n\n        \"\"\"\n        return self in self._constants._multicast_network\n\n    @property\n    def is_reserved(self):\n        \"\"\"Test if the address is otherwise IETF reserved.\n\n        Returns:\n            A boolean, True if the address is within one of the\n            reserved IPv6 Network ranges.\n\n        \"\"\"\n        return any(self in x for x in self._constants._reserved_networks)\n\n    @property\n    def is_link_local(self):\n        \"\"\"Test if the address is reserved for link-local.\n\n        Returns:\n            A boolean, True if the address is reserved per RFC 4291.\n\n        \"\"\"\n        return self in self._constants._linklocal_network\n\n    @property\n    def is_site_local(self):\n        \"\"\"Test if the address is reserved for site-local.\n\n        Note that the site-local address space has been deprecated by RFC 3879.\n        Use is_private to test if this address is in the space of unique local\n        addresses as defined by RFC 4193.\n\n        Returns:\n            A boolean, True if the address is reserved per RFC 3513 2.5.6.\n\n        \"\"\"\n        return self in self._constants._sitelocal_network\n\n    @property\n    @functools.lru_cache()\n    def is_private(self):\n        \"\"\"Test if this address is allocated for private networks.\n\n        Returns:\n            A boolean, True if the address is reserved per\n            iana-ipv6-special-registry.\n\n        \"\"\"\n        return any(self in net for net in self._constants._private_networks)\n\n    @property\n    def is_global(self):\n        \"\"\"Test if this address is allocated for public networks.\n\n        Returns:\n            A boolean, true if the address is not reserved per\n            iana-ipv6-special-registry.\n\n        \"\"\"\n        return not self.is_private\n\n    @property\n    def is_unspecified(self):\n        \"\"\"Test if the address is unspecified.\n\n        Returns:\n            A boolean, True if this is the unspecified address as defined in\n            RFC 2373 2.5.2.\n\n        \"\"\"\n        return self._ip == 0\n\n    @property\n    def is_loopback(self):\n        \"\"\"Test if the address is a loopback address.\n\n        Returns:\n            A boolean, True if the address is a loopback address as defined in\n            RFC 2373 2.5.3.\n\n        \"\"\"\n        return self._ip == 1\n\n    @property\n    def ipv4_mapped(self):\n        \"\"\"Return the IPv4 mapped address.\n\n        Returns:\n            If the IPv6 address is a v4 mapped address, return the\n            IPv4 mapped address. Return None otherwise.\n\n        \"\"\"\n        if (self._ip >> 32) != 0xFFFF:\n            return None\n        return IPv4Address(self._ip & 0xFFFFFFFF)\n\n    @property\n    def teredo(self):\n        \"\"\"Tuple of embedded teredo IPs.\n\n        Returns:\n            Tuple of the (server, client) IPs or None if the address\n            doesn't appear to be a teredo address (doesn't start with\n            2001::/32)\n\n        \"\"\"\n        if (self._ip >> 96) != 0x20010000:\n            return None\n        return (IPv4Address((self._ip >> 64) & 0xFFFFFFFF),\n                IPv4Address(~self._ip & 0xFFFFFFFF))\n\n    @property\n    def sixtofour(self):\n        \"\"\"Return the IPv4 6to4 embedded address.\n\n        Returns:\n            The IPv4 6to4-embedded address if present or None if the\n            address doesn't appear to contain a 6to4 embedded address.\n\n        \"\"\"\n        if (self._ip >> 112) != 0x2002:\n            return None\n        return IPv4Address((self._ip >> 80) & 0xFFFFFFFF)\n\n\nclass IPv6Interface(IPv6Address):\n\n    def __init__(self, address):\n        addr, mask = self._split_addr_prefix(address)\n\n        IPv6Address.__init__(self, addr)\n        self.network = IPv6Network((addr, mask), strict=False)\n        self.netmask = self.network.netmask\n        self._prefixlen = self.network._prefixlen\n\n    @functools.cached_property\n    def hostmask(self):\n        return self.network.hostmask\n\n    def __str__(self):\n        return '%s/%d' % (self._string_from_ip_int(self._ip),\n                          self._prefixlen)\n\n    def __eq__(self, other):\n        address_equal = IPv6Address.__eq__(self, other)\n        if not address_equal or address_equal is NotImplemented:\n            return address_equal\n        try:\n            return self.network == other.network\n        except AttributeError:\n            # An interface with an associated network is NOT the\n            # same as an unassociated address. That's why the hash\n            # takes the extra info into account.\n            return False\n\n    def __lt__(self, other):\n        address_less = IPv6Address.__lt__(self, other)\n        if address_less is NotImplemented:\n            return NotImplemented\n        try:\n            return (self.network < other.network or\n                    self.network == other.network and address_less)\n        except AttributeError:\n            # We *do* allow addresses and interfaces to be sorted. The\n            # unassociated address is considered less than all interfaces.\n            return False\n\n    def __hash__(self):\n        return hash((self._ip, self._prefixlen, int(self.network.network_address)))\n\n    __reduce__ = _IPAddressBase.__reduce__\n\n    @property\n    def ip(self):\n        return IPv6Address(self._ip)\n\n    @property\n    def with_prefixlen(self):\n        return '%s/%s' % (self._string_from_ip_int(self._ip),\n                          self._prefixlen)\n\n    @property\n    def with_netmask(self):\n        return '%s/%s' % (self._string_from_ip_int(self._ip),\n                          self.netmask)\n\n    @property\n    def with_hostmask(self):\n        return '%s/%s' % (self._string_from_ip_int(self._ip),\n                          self.hostmask)\n\n    @property\n    def is_unspecified(self):\n        return self._ip == 0 and self.network.is_unspecified\n\n    @property\n    def is_loopback(self):\n        return self._ip == 1 and self.network.is_loopback\n\n\nclass IPv6Network(_BaseV6, _BaseNetwork):\n\n    \"\"\"This class represents and manipulates 128-bit IPv6 networks.\n\n    Attributes: [examples for IPv6('2001:db8::1000/124')]\n        .network_address: IPv6Address('2001:db8::1000')\n        .hostmask: IPv6Address('::f')\n        .broadcast_address: IPv6Address('2001:db8::100f')\n        .netmask: IPv6Address('ffff:ffff:ffff:ffff:ffff:ffff:ffff:fff0')\n        .prefixlen: 124\n\n    \"\"\"\n\n    # Class to use when creating address objects\n    _address_class = IPv6Address\n\n    def __init__(self, address, strict=True):\n        \"\"\"Instantiate a new IPv6 Network object.\n\n        Args:\n            address: A string or integer representing the IPv6 network or the\n              IP and prefix/netmask.\n              '2001:db8::/128'\n              '2001:db8:0000:0000:0000:0000:0000:0000/128'\n              '2001:db8::'\n              are all functionally the same in IPv6.  That is to say,\n              failing to provide a subnetmask will create an object with\n              a mask of /128.\n\n              Additionally, an integer can be passed, so\n              IPv6Network('2001:db8::') ==\n                IPv6Network(42540766411282592856903984951653826560)\n              or, more generally\n              IPv6Network(int(IPv6Network('2001:db8::'))) ==\n                IPv6Network('2001:db8::')\n\n            strict: A boolean. If true, ensure that we have been passed\n              A true network address, eg, 2001:db8::1000/124 and not an\n              IP address on a network, eg, 2001:db8::1/124.\n\n        Raises:\n            AddressValueError: If address isn't a valid IPv6 address.\n            NetmaskValueError: If the netmask isn't valid for\n              an IPv6 address.\n            ValueError: If strict was True and a network address was not\n              supplied.\n        \"\"\"\n        addr, mask = self._split_addr_prefix(address)\n\n        self.network_address = IPv6Address(addr)\n        self.netmask, self._prefixlen = self._make_netmask(mask)\n        packed = int(self.network_address)\n        if packed & int(self.netmask) != packed:\n            if strict:\n                raise ValueError('%s has host bits set' % self)\n            else:\n                self.network_address = IPv6Address(packed &\n                                                   int(self.netmask))\n\n        if self._prefixlen == (self._max_prefixlen - 1):\n            self.hosts = self.__iter__\n\n    def hosts(self):\n        \"\"\"Generate Iterator over usable hosts in a network.\n\n          This is like __iter__ except it doesn't return the\n          Subnet-Router anycast address.\n\n        \"\"\"\n        network = int(self.network_address)\n        broadcast = int(self.broadcast_address)\n        for x in range(network + 1, broadcast + 1):\n            yield self._address_class(x)\n\n    @property\n    def is_site_local(self):\n        \"\"\"Test if the address is reserved for site-local.\n\n        Note that the site-local address space has been deprecated by RFC 3879.\n        Use is_private to test if this address is in the space of unique local\n        addresses as defined by RFC 4193.\n\n        Returns:\n            A boolean, True if the address is reserved per RFC 3513 2.5.6.\n\n        \"\"\"\n        return (self.network_address.is_site_local and\n                self.broadcast_address.is_site_local)\n\n\nclass _IPv6Constants:\n\n    _linklocal_network = IPv6Network('fe80::/10')\n\n    _multicast_network = IPv6Network('ff00::/8')\n\n    _private_networks = [\n        IPv6Network('::1/128'),\n        IPv6Network('::/128'),\n        IPv6Network('::ffff:0:0/96'),\n        IPv6Network('100::/64'),\n        IPv6Network('2001::/23'),\n        IPv6Network('2001:2::/48'),\n        IPv6Network('2001:db8::/32'),\n        IPv6Network('2001:10::/28'),\n        IPv6Network('fc00::/7'),\n        IPv6Network('fe80::/10'),\n        ]\n\n    _reserved_networks = [\n        IPv6Network('::/8'), IPv6Network('100::/8'),\n        IPv6Network('200::/7'), IPv6Network('400::/6'),\n        IPv6Network('800::/5'), IPv6Network('1000::/4'),\n        IPv6Network('4000::/3'), IPv6Network('6000::/3'),\n        IPv6Network('8000::/3'), IPv6Network('A000::/3'),\n        IPv6Network('C000::/3'), IPv6Network('E000::/4'),\n        IPv6Network('F000::/5'), IPv6Network('F800::/6'),\n        IPv6Network('FE00::/9'),\n    ]\n\n    _sitelocal_network = IPv6Network('fec0::/10')\n\n\nIPv6Address._constants = _IPv6Constants\n"
  },
  {
    "path": "rd/usr/lib/python3.8/json/__init__.py",
    "content": "r\"\"\"JSON (JavaScript Object Notation) <http://json.org> is a subset of\nJavaScript syntax (ECMA-262 3rd edition) used as a lightweight data\ninterchange format.\n\n:mod:`json` exposes an API familiar to users of the standard library\n:mod:`marshal` and :mod:`pickle` modules.  It is derived from a\nversion of the externally maintained simplejson library.\n\nEncoding basic Python object hierarchies::\n\n    >>> import json\n    >>> json.dumps(['foo', {'bar': ('baz', None, 1.0, 2)}])\n    '[\"foo\", {\"bar\": [\"baz\", null, 1.0, 2]}]'\n    >>> print(json.dumps(\"\\\"foo\\bar\"))\n    \"\\\"foo\\bar\"\n    >>> print(json.dumps('\\u1234'))\n    \"\\u1234\"\n    >>> print(json.dumps('\\\\'))\n    \"\\\\\"\n    >>> print(json.dumps({\"c\": 0, \"b\": 0, \"a\": 0}, sort_keys=True))\n    {\"a\": 0, \"b\": 0, \"c\": 0}\n    >>> from io import StringIO\n    >>> io = StringIO()\n    >>> json.dump(['streaming API'], io)\n    >>> io.getvalue()\n    '[\"streaming API\"]'\n\nCompact encoding::\n\n    >>> import json\n    >>> mydict = {'4': 5, '6': 7}\n    >>> json.dumps([1,2,3,mydict], separators=(',', ':'))\n    '[1,2,3,{\"4\":5,\"6\":7}]'\n\nPretty printing::\n\n    >>> import json\n    >>> print(json.dumps({'4': 5, '6': 7}, sort_keys=True, indent=4))\n    {\n        \"4\": 5,\n        \"6\": 7\n    }\n\nDecoding JSON::\n\n    >>> import json\n    >>> obj = ['foo', {'bar': ['baz', None, 1.0, 2]}]\n    >>> json.loads('[\"foo\", {\"bar\":[\"baz\", null, 1.0, 2]}]') == obj\n    True\n    >>> json.loads('\"\\\\\"foo\\\\bar\"') == '\"foo\\x08ar'\n    True\n    >>> from io import StringIO\n    >>> io = StringIO('[\"streaming API\"]')\n    >>> json.load(io)[0] == 'streaming API'\n    True\n\nSpecializing JSON object decoding::\n\n    >>> import json\n    >>> def as_complex(dct):\n    ...     if '__complex__' in dct:\n    ...         return complex(dct['real'], dct['imag'])\n    ...     return dct\n    ...\n    >>> json.loads('{\"__complex__\": true, \"real\": 1, \"imag\": 2}',\n    ...     object_hook=as_complex)\n    (1+2j)\n    >>> from decimal import Decimal\n    >>> json.loads('1.1', parse_float=Decimal) == Decimal('1.1')\n    True\n\nSpecializing JSON object encoding::\n\n    >>> import json\n    >>> def encode_complex(obj):\n    ...     if isinstance(obj, complex):\n    ...         return [obj.real, obj.imag]\n    ...     raise TypeError(f'Object of type {obj.__class__.__name__} '\n    ...                     f'is not JSON serializable')\n    ...\n    >>> json.dumps(2 + 1j, default=encode_complex)\n    '[2.0, 1.0]'\n    >>> json.JSONEncoder(default=encode_complex).encode(2 + 1j)\n    '[2.0, 1.0]'\n    >>> ''.join(json.JSONEncoder(default=encode_complex).iterencode(2 + 1j))\n    '[2.0, 1.0]'\n\n\nUsing json.tool from the shell to validate and pretty-print::\n\n    $ echo '{\"json\":\"obj\"}' | python -m json.tool\n    {\n        \"json\": \"obj\"\n    }\n    $ echo '{ 1.2:3.4}' | python -m json.tool\n    Expecting property name enclosed in double quotes: line 1 column 3 (char 2)\n\"\"\"\n__version__ = '2.0.9'\n__all__ = [\n    'dump', 'dumps', 'load', 'loads',\n    'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',\n]\n\n__author__ = 'Bob Ippolito <bob@redivi.com>'\n\nfrom .decoder import JSONDecoder, JSONDecodeError\nfrom .encoder import JSONEncoder\nimport codecs\n\n_default_encoder = JSONEncoder(\n    skipkeys=False,\n    ensure_ascii=True,\n    check_circular=True,\n    allow_nan=True,\n    indent=None,\n    separators=None,\n    default=None,\n)\n\ndef dump(obj, fp, *, skipkeys=False, ensure_ascii=True, check_circular=True,\n        allow_nan=True, cls=None, indent=None, separators=None,\n        default=None, sort_keys=False, **kw):\n    \"\"\"Serialize ``obj`` as a JSON formatted stream to ``fp`` (a\n    ``.write()``-supporting file-like object).\n\n    If ``skipkeys`` is true then ``dict`` keys that are not basic types\n    (``str``, ``int``, ``float``, ``bool``, ``None``) will be skipped\n    instead of raising a ``TypeError``.\n\n    If ``ensure_ascii`` is false, then the strings written to ``fp`` can\n    contain non-ASCII characters if they appear in strings contained in\n    ``obj``. Otherwise, all such characters are escaped in JSON strings.\n\n    If ``check_circular`` is false, then the circular reference check\n    for container types will be skipped and a circular reference will\n    result in an ``OverflowError`` (or worse).\n\n    If ``allow_nan`` is false, then it will be a ``ValueError`` to\n    serialize out of range ``float`` values (``nan``, ``inf``, ``-inf``)\n    in strict compliance of the JSON specification, instead of using the\n    JavaScript equivalents (``NaN``, ``Infinity``, ``-Infinity``).\n\n    If ``indent`` is a non-negative integer, then JSON array elements and\n    object members will be pretty-printed with that indent level. An indent\n    level of 0 will only insert newlines. ``None`` is the most compact\n    representation.\n\n    If specified, ``separators`` should be an ``(item_separator, key_separator)``\n    tuple.  The default is ``(', ', ': ')`` if *indent* is ``None`` and\n    ``(',', ': ')`` otherwise.  To get the most compact JSON representation,\n    you should specify ``(',', ':')`` to eliminate whitespace.\n\n    ``default(obj)`` is a function that should return a serializable version\n    of obj or raise TypeError. The default simply raises TypeError.\n\n    If *sort_keys* is true (default: ``False``), then the output of\n    dictionaries will be sorted by key.\n\n    To use a custom ``JSONEncoder`` subclass (e.g. one that overrides the\n    ``.default()`` method to serialize additional types), specify it with\n    the ``cls`` kwarg; otherwise ``JSONEncoder`` is used.\n\n    \"\"\"\n    # cached encoder\n    if (not skipkeys and ensure_ascii and\n        check_circular and allow_nan and\n        cls is None and indent is None and separators is None and\n        default is None and not sort_keys and not kw):\n        iterable = _default_encoder.iterencode(obj)\n    else:\n        if cls is None:\n            cls = JSONEncoder\n        iterable = cls(skipkeys=skipkeys, ensure_ascii=ensure_ascii,\n            check_circular=check_circular, allow_nan=allow_nan, indent=indent,\n            separators=separators,\n            default=default, sort_keys=sort_keys, **kw).iterencode(obj)\n    # could accelerate with writelines in some versions of Python, at\n    # a debuggability cost\n    for chunk in iterable:\n        fp.write(chunk)\n\n\ndef dumps(obj, *, skipkeys=False, ensure_ascii=True, check_circular=True,\n        allow_nan=True, cls=None, indent=None, separators=None,\n        default=None, sort_keys=False, **kw):\n    \"\"\"Serialize ``obj`` to a JSON formatted ``str``.\n\n    If ``skipkeys`` is true then ``dict`` keys that are not basic types\n    (``str``, ``int``, ``float``, ``bool``, ``None``) will be skipped\n    instead of raising a ``TypeError``.\n\n    If ``ensure_ascii`` is false, then the return value can contain non-ASCII\n    characters if they appear in strings contained in ``obj``. Otherwise, all\n    such characters are escaped in JSON strings.\n\n    If ``check_circular`` is false, then the circular reference check\n    for container types will be skipped and a circular reference will\n    result in an ``OverflowError`` (or worse).\n\n    If ``allow_nan`` is false, then it will be a ``ValueError`` to\n    serialize out of range ``float`` values (``nan``, ``inf``, ``-inf``) in\n    strict compliance of the JSON specification, instead of using the\n    JavaScript equivalents (``NaN``, ``Infinity``, ``-Infinity``).\n\n    If ``indent`` is a non-negative integer, then JSON array elements and\n    object members will be pretty-printed with that indent level. An indent\n    level of 0 will only insert newlines. ``None`` is the most compact\n    representation.\n\n    If specified, ``separators`` should be an ``(item_separator, key_separator)``\n    tuple.  The default is ``(', ', ': ')`` if *indent* is ``None`` and\n    ``(',', ': ')`` otherwise.  To get the most compact JSON representation,\n    you should specify ``(',', ':')`` to eliminate whitespace.\n\n    ``default(obj)`` is a function that should return a serializable version\n    of obj or raise TypeError. The default simply raises TypeError.\n\n    If *sort_keys* is true (default: ``False``), then the output of\n    dictionaries will be sorted by key.\n\n    To use a custom ``JSONEncoder`` subclass (e.g. one that overrides the\n    ``.default()`` method to serialize additional types), specify it with\n    the ``cls`` kwarg; otherwise ``JSONEncoder`` is used.\n\n    \"\"\"\n    # cached encoder\n    if (not skipkeys and ensure_ascii and\n        check_circular and allow_nan and\n        cls is None and indent is None and separators is None and\n        default is None and not sort_keys and not kw):\n        return _default_encoder.encode(obj)\n    if cls is None:\n        cls = JSONEncoder\n    return cls(\n        skipkeys=skipkeys, ensure_ascii=ensure_ascii,\n        check_circular=check_circular, allow_nan=allow_nan, indent=indent,\n        separators=separators, default=default, sort_keys=sort_keys,\n        **kw).encode(obj)\n\n\n_default_decoder = JSONDecoder(object_hook=None, object_pairs_hook=None)\n\n\ndef detect_encoding(b):\n    bstartswith = b.startswith\n    if bstartswith((codecs.BOM_UTF32_BE, codecs.BOM_UTF32_LE)):\n        return 'utf-32'\n    if bstartswith((codecs.BOM_UTF16_BE, codecs.BOM_UTF16_LE)):\n        return 'utf-16'\n    if bstartswith(codecs.BOM_UTF8):\n        return 'utf-8-sig'\n\n    if len(b) >= 4:\n        if not b[0]:\n            # 00 00 -- -- - utf-32-be\n            # 00 XX -- -- - utf-16-be\n            return 'utf-16-be' if b[1] else 'utf-32-be'\n        if not b[1]:\n            # XX 00 00 00 - utf-32-le\n            # XX 00 00 XX - utf-16-le\n            # XX 00 XX -- - utf-16-le\n            return 'utf-16-le' if b[2] or b[3] else 'utf-32-le'\n    elif len(b) == 2:\n        if not b[0]:\n            # 00 XX - utf-16-be\n            return 'utf-16-be'\n        if not b[1]:\n            # XX 00 - utf-16-le\n            return 'utf-16-le'\n    # default\n    return 'utf-8'\n\n\ndef load(fp, *, cls=None, object_hook=None, parse_float=None,\n        parse_int=None, parse_constant=None, object_pairs_hook=None, **kw):\n    \"\"\"Deserialize ``fp`` (a ``.read()``-supporting file-like object containing\n    a JSON document) to a Python object.\n\n    ``object_hook`` is an optional function that will be called with the\n    result of any object literal decode (a ``dict``). The return value of\n    ``object_hook`` will be used instead of the ``dict``. This feature\n    can be used to implement custom decoders (e.g. JSON-RPC class hinting).\n\n    ``object_pairs_hook`` is an optional function that will be called with the\n    result of any object literal decoded with an ordered list of pairs.  The\n    return value of ``object_pairs_hook`` will be used instead of the ``dict``.\n    This feature can be used to implement custom decoders.  If ``object_hook``\n    is also defined, the ``object_pairs_hook`` takes priority.\n\n    To use a custom ``JSONDecoder`` subclass, specify it with the ``cls``\n    kwarg; otherwise ``JSONDecoder`` is used.\n    \"\"\"\n    return loads(fp.read(),\n        cls=cls, object_hook=object_hook,\n        parse_float=parse_float, parse_int=parse_int,\n        parse_constant=parse_constant, object_pairs_hook=object_pairs_hook, **kw)\n\n\ndef loads(s, *, cls=None, object_hook=None, parse_float=None,\n        parse_int=None, parse_constant=None, object_pairs_hook=None, **kw):\n    \"\"\"Deserialize ``s`` (a ``str``, ``bytes`` or ``bytearray`` instance\n    containing a JSON document) to a Python object.\n\n    ``object_hook`` is an optional function that will be called with the\n    result of any object literal decode (a ``dict``). The return value of\n    ``object_hook`` will be used instead of the ``dict``. This feature\n    can be used to implement custom decoders (e.g. JSON-RPC class hinting).\n\n    ``object_pairs_hook`` is an optional function that will be called with the\n    result of any object literal decoded with an ordered list of pairs.  The\n    return value of ``object_pairs_hook`` will be used instead of the ``dict``.\n    This feature can be used to implement custom decoders.  If ``object_hook``\n    is also defined, the ``object_pairs_hook`` takes priority.\n\n    ``parse_float``, if specified, will be called with the string\n    of every JSON float to be decoded. By default this is equivalent to\n    float(num_str). This can be used to use another datatype or parser\n    for JSON floats (e.g. decimal.Decimal).\n\n    ``parse_int``, if specified, will be called with the string\n    of every JSON int to be decoded. By default this is equivalent to\n    int(num_str). This can be used to use another datatype or parser\n    for JSON integers (e.g. float).\n\n    ``parse_constant``, if specified, will be called with one of the\n    following strings: -Infinity, Infinity, NaN.\n    This can be used to raise an exception if invalid JSON numbers\n    are encountered.\n\n    To use a custom ``JSONDecoder`` subclass, specify it with the ``cls``\n    kwarg; otherwise ``JSONDecoder`` is used.\n\n    The ``encoding`` argument is ignored and deprecated since Python 3.1.\n    \"\"\"\n    if isinstance(s, str):\n        if s.startswith('\\ufeff'):\n            raise JSONDecodeError(\"Unexpected UTF-8 BOM (decode using utf-8-sig)\",\n                                  s, 0)\n    else:\n        if not isinstance(s, (bytes, bytearray)):\n            raise TypeError(f'the JSON object must be str, bytes or bytearray, '\n                            f'not {s.__class__.__name__}')\n        s = s.decode(detect_encoding(s), 'surrogatepass')\n\n    if \"encoding\" in kw:\n        import warnings\n        warnings.warn(\n            \"'encoding' is ignored and deprecated. It will be removed in Python 3.9\",\n            DeprecationWarning,\n            stacklevel=2\n        )\n        del kw['encoding']\n\n    if (cls is None and object_hook is None and\n            parse_int is None and parse_float is None and\n            parse_constant is None and object_pairs_hook is None and not kw):\n        return _default_decoder.decode(s)\n    if cls is None:\n        cls = JSONDecoder\n    if object_hook is not None:\n        kw['object_hook'] = object_hook\n    if object_pairs_hook is not None:\n        kw['object_pairs_hook'] = object_pairs_hook\n    if parse_float is not None:\n        kw['parse_float'] = parse_float\n    if parse_int is not None:\n        kw['parse_int'] = parse_int\n    if parse_constant is not None:\n        kw['parse_constant'] = parse_constant\n    return cls(**kw).decode(s)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/json/decoder.py",
    "content": "\"\"\"Implementation of JSONDecoder\n\"\"\"\nimport re\n\nfrom json import scanner\ntry:\n    from _json import scanstring as c_scanstring\nexcept ImportError:\n    c_scanstring = None\n\n__all__ = ['JSONDecoder', 'JSONDecodeError']\n\nFLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL\n\nNaN = float('nan')\nPosInf = float('inf')\nNegInf = float('-inf')\n\n\nclass JSONDecodeError(ValueError):\n    \"\"\"Subclass of ValueError with the following additional properties:\n\n    msg: The unformatted error message\n    doc: The JSON document being parsed\n    pos: The start index of doc where parsing failed\n    lineno: The line corresponding to pos\n    colno: The column corresponding to pos\n\n    \"\"\"\n    # Note that this exception is used from _json\n    def __init__(self, msg, doc, pos):\n        lineno = doc.count('\\n', 0, pos) + 1\n        colno = pos - doc.rfind('\\n', 0, pos)\n        errmsg = '%s: line %d column %d (char %d)' % (msg, lineno, colno, pos)\n        ValueError.__init__(self, errmsg)\n        self.msg = msg\n        self.doc = doc\n        self.pos = pos\n        self.lineno = lineno\n        self.colno = colno\n\n    def __reduce__(self):\n        return self.__class__, (self.msg, self.doc, self.pos)\n\n\n_CONSTANTS = {\n    '-Infinity': NegInf,\n    'Infinity': PosInf,\n    'NaN': NaN,\n}\n\n\nSTRINGCHUNK = re.compile(r'(.*?)([\"\\\\\\x00-\\x1f])', FLAGS)\nBACKSLASH = {\n    '\"': '\"', '\\\\': '\\\\', '/': '/',\n    'b': '\\b', 'f': '\\f', 'n': '\\n', 'r': '\\r', 't': '\\t',\n}\n\ndef _decode_uXXXX(s, pos):\n    esc = s[pos + 1:pos + 5]\n    if len(esc) == 4 and esc[1] not in 'xX':\n        try:\n            return int(esc, 16)\n        except ValueError:\n            pass\n    msg = \"Invalid \\\\uXXXX escape\"\n    raise JSONDecodeError(msg, s, pos)\n\ndef py_scanstring(s, end, strict=True,\n        _b=BACKSLASH, _m=STRINGCHUNK.match):\n    \"\"\"Scan the string s for a JSON string. End is the index of the\n    character in s after the quote that started the JSON string.\n    Unescapes all valid JSON string escape sequences and raises ValueError\n    on attempt to decode an invalid string. If strict is False then literal\n    control characters are allowed in the string.\n\n    Returns a tuple of the decoded string and the index of the character in s\n    after the end quote.\"\"\"\n    chunks = []\n    _append = chunks.append\n    begin = end - 1\n    while 1:\n        chunk = _m(s, end)\n        if chunk is None:\n            raise JSONDecodeError(\"Unterminated string starting at\", s, begin)\n        end = chunk.end()\n        content, terminator = chunk.groups()\n        # Content is contains zero or more unescaped string characters\n        if content:\n            _append(content)\n        # Terminator is the end of string, a literal control character,\n        # or a backslash denoting that an escape sequence follows\n        if terminator == '\"':\n            break\n        elif terminator != '\\\\':\n            if strict:\n                #msg = \"Invalid control character %r at\" % (terminator,)\n                msg = \"Invalid control character {0!r} at\".format(terminator)\n                raise JSONDecodeError(msg, s, end)\n            else:\n                _append(terminator)\n                continue\n        try:\n            esc = s[end]\n        except IndexError:\n            raise JSONDecodeError(\"Unterminated string starting at\",\n                                  s, begin) from None\n        # If not a unicode escape sequence, must be in the lookup table\n        if esc != 'u':\n            try:\n                char = _b[esc]\n            except KeyError:\n                msg = \"Invalid \\\\escape: {0!r}\".format(esc)\n                raise JSONDecodeError(msg, s, end)\n            end += 1\n        else:\n            uni = _decode_uXXXX(s, end)\n            end += 5\n            if 0xd800 <= uni <= 0xdbff and s[end:end + 2] == '\\\\u':\n                uni2 = _decode_uXXXX(s, end + 1)\n                if 0xdc00 <= uni2 <= 0xdfff:\n                    uni = 0x10000 + (((uni - 0xd800) << 10) | (uni2 - 0xdc00))\n                    end += 6\n            char = chr(uni)\n        _append(char)\n    return ''.join(chunks), end\n\n\n# Use speedup if available\nscanstring = c_scanstring or py_scanstring\n\nWHITESPACE = re.compile(r'[ \\t\\n\\r]*', FLAGS)\nWHITESPACE_STR = ' \\t\\n\\r'\n\n\ndef JSONObject(s_and_end, strict, scan_once, object_hook, object_pairs_hook,\n               memo=None, _w=WHITESPACE.match, _ws=WHITESPACE_STR):\n    s, end = s_and_end\n    pairs = []\n    pairs_append = pairs.append\n    # Backwards compatibility\n    if memo is None:\n        memo = {}\n    memo_get = memo.setdefault\n    # Use a slice to prevent IndexError from being raised, the following\n    # check will raise a more specific ValueError if the string is empty\n    nextchar = s[end:end + 1]\n    # Normally we expect nextchar == '\"'\n    if nextchar != '\"':\n        if nextchar in _ws:\n            end = _w(s, end).end()\n            nextchar = s[end:end + 1]\n        # Trivial empty object\n        if nextchar == '}':\n            if object_pairs_hook is not None:\n                result = object_pairs_hook(pairs)\n                return result, end + 1\n            pairs = {}\n            if object_hook is not None:\n                pairs = object_hook(pairs)\n            return pairs, end + 1\n        elif nextchar != '\"':\n            raise JSONDecodeError(\n                \"Expecting property name enclosed in double quotes\", s, end)\n    end += 1\n    while True:\n        key, end = scanstring(s, end, strict)\n        key = memo_get(key, key)\n        # To skip some function call overhead we optimize the fast paths where\n        # the JSON key separator is \": \" or just \":\".\n        if s[end:end + 1] != ':':\n            end = _w(s, end).end()\n            if s[end:end + 1] != ':':\n                raise JSONDecodeError(\"Expecting ':' delimiter\", s, end)\n        end += 1\n\n        try:\n            if s[end] in _ws:\n                end += 1\n                if s[end] in _ws:\n                    end = _w(s, end + 1).end()\n        except IndexError:\n            pass\n\n        try:\n            value, end = scan_once(s, end)\n        except StopIteration as err:\n            raise JSONDecodeError(\"Expecting value\", s, err.value) from None\n        pairs_append((key, value))\n        try:\n            nextchar = s[end]\n            if nextchar in _ws:\n                end = _w(s, end + 1).end()\n                nextchar = s[end]\n        except IndexError:\n            nextchar = ''\n        end += 1\n\n        if nextchar == '}':\n            break\n        elif nextchar != ',':\n            raise JSONDecodeError(\"Expecting ',' delimiter\", s, end - 1)\n        end = _w(s, end).end()\n        nextchar = s[end:end + 1]\n        end += 1\n        if nextchar != '\"':\n            raise JSONDecodeError(\n                \"Expecting property name enclosed in double quotes\", s, end - 1)\n    if object_pairs_hook is not None:\n        result = object_pairs_hook(pairs)\n        return result, end\n    pairs = dict(pairs)\n    if object_hook is not None:\n        pairs = object_hook(pairs)\n    return pairs, end\n\ndef JSONArray(s_and_end, scan_once, _w=WHITESPACE.match, _ws=WHITESPACE_STR):\n    s, end = s_and_end\n    values = []\n    nextchar = s[end:end + 1]\n    if nextchar in _ws:\n        end = _w(s, end + 1).end()\n        nextchar = s[end:end + 1]\n    # Look-ahead for trivial empty array\n    if nextchar == ']':\n        return values, end + 1\n    _append = values.append\n    while True:\n        try:\n            value, end = scan_once(s, end)\n        except StopIteration as err:\n            raise JSONDecodeError(\"Expecting value\", s, err.value) from None\n        _append(value)\n        nextchar = s[end:end + 1]\n        if nextchar in _ws:\n            end = _w(s, end + 1).end()\n            nextchar = s[end:end + 1]\n        end += 1\n        if nextchar == ']':\n            break\n        elif nextchar != ',':\n            raise JSONDecodeError(\"Expecting ',' delimiter\", s, end - 1)\n        try:\n            if s[end] in _ws:\n                end += 1\n                if s[end] in _ws:\n                    end = _w(s, end + 1).end()\n        except IndexError:\n            pass\n\n    return values, end\n\n\nclass JSONDecoder(object):\n    \"\"\"Simple JSON <http://json.org> decoder\n\n    Performs the following translations in decoding by default:\n\n    +---------------+-------------------+\n    | JSON          | Python            |\n    +===============+===================+\n    | object        | dict              |\n    +---------------+-------------------+\n    | array         | list              |\n    +---------------+-------------------+\n    | string        | str               |\n    +---------------+-------------------+\n    | number (int)  | int               |\n    +---------------+-------------------+\n    | number (real) | float             |\n    +---------------+-------------------+\n    | true          | True              |\n    +---------------+-------------------+\n    | false         | False             |\n    +---------------+-------------------+\n    | null          | None              |\n    +---------------+-------------------+\n\n    It also understands ``NaN``, ``Infinity``, and ``-Infinity`` as\n    their corresponding ``float`` values, which is outside the JSON spec.\n\n    \"\"\"\n\n    def __init__(self, *, object_hook=None, parse_float=None,\n            parse_int=None, parse_constant=None, strict=True,\n            object_pairs_hook=None):\n        \"\"\"``object_hook``, if specified, will be called with the result\n        of every JSON object decoded and its return value will be used in\n        place of the given ``dict``.  This can be used to provide custom\n        deserializations (e.g. to support JSON-RPC class hinting).\n\n        ``object_pairs_hook``, if specified will be called with the result of\n        every JSON object decoded with an ordered list of pairs.  The return\n        value of ``object_pairs_hook`` will be used instead of the ``dict``.\n        This feature can be used to implement custom decoders.\n        If ``object_hook`` is also defined, the ``object_pairs_hook`` takes\n        priority.\n\n        ``parse_float``, if specified, will be called with the string\n        of every JSON float to be decoded. By default this is equivalent to\n        float(num_str). This can be used to use another datatype or parser\n        for JSON floats (e.g. decimal.Decimal).\n\n        ``parse_int``, if specified, will be called with the string\n        of every JSON int to be decoded. By default this is equivalent to\n        int(num_str). This can be used to use another datatype or parser\n        for JSON integers (e.g. float).\n\n        ``parse_constant``, if specified, will be called with one of the\n        following strings: -Infinity, Infinity, NaN.\n        This can be used to raise an exception if invalid JSON numbers\n        are encountered.\n\n        If ``strict`` is false (true is the default), then control\n        characters will be allowed inside strings.  Control characters in\n        this context are those with character codes in the 0-31 range,\n        including ``'\\\\t'`` (tab), ``'\\\\n'``, ``'\\\\r'`` and ``'\\\\0'``.\n        \"\"\"\n        self.object_hook = object_hook\n        self.parse_float = parse_float or float\n        self.parse_int = parse_int or int\n        self.parse_constant = parse_constant or _CONSTANTS.__getitem__\n        self.strict = strict\n        self.object_pairs_hook = object_pairs_hook\n        self.parse_object = JSONObject\n        self.parse_array = JSONArray\n        self.parse_string = scanstring\n        self.memo = {}\n        self.scan_once = scanner.make_scanner(self)\n\n\n    def decode(self, s, _w=WHITESPACE.match):\n        \"\"\"Return the Python representation of ``s`` (a ``str`` instance\n        containing a JSON document).\n\n        \"\"\"\n        obj, end = self.raw_decode(s, idx=_w(s, 0).end())\n        end = _w(s, end).end()\n        if end != len(s):\n            raise JSONDecodeError(\"Extra data\", s, end)\n        return obj\n\n    def raw_decode(self, s, idx=0):\n        \"\"\"Decode a JSON document from ``s`` (a ``str`` beginning with\n        a JSON document) and return a 2-tuple of the Python\n        representation and the index in ``s`` where the document ended.\n\n        This can be used to decode a JSON document from a string that may\n        have extraneous data at the end.\n\n        \"\"\"\n        try:\n            obj, end = self.scan_once(s, idx)\n        except StopIteration as err:\n            raise JSONDecodeError(\"Expecting value\", s, err.value) from None\n        return obj, end\n"
  },
  {
    "path": "rd/usr/lib/python3.8/json/encoder.py",
    "content": "\"\"\"Implementation of JSONEncoder\n\"\"\"\nimport re\n\ntry:\n    from _json import encode_basestring_ascii as c_encode_basestring_ascii\nexcept ImportError:\n    c_encode_basestring_ascii = None\ntry:\n    from _json import encode_basestring as c_encode_basestring\nexcept ImportError:\n    c_encode_basestring = None\ntry:\n    from _json import make_encoder as c_make_encoder\nexcept ImportError:\n    c_make_encoder = None\n\nESCAPE = re.compile(r'[\\x00-\\x1f\\\\\"\\b\\f\\n\\r\\t]')\nESCAPE_ASCII = re.compile(r'([\\\\\"]|[^\\ -~])')\nHAS_UTF8 = re.compile(b'[\\x80-\\xff]')\nESCAPE_DCT = {\n    '\\\\': '\\\\\\\\',\n    '\"': '\\\\\"',\n    '\\b': '\\\\b',\n    '\\f': '\\\\f',\n    '\\n': '\\\\n',\n    '\\r': '\\\\r',\n    '\\t': '\\\\t',\n}\nfor i in range(0x20):\n    ESCAPE_DCT.setdefault(chr(i), '\\\\u{0:04x}'.format(i))\n    #ESCAPE_DCT.setdefault(chr(i), '\\\\u%04x' % (i,))\n\nINFINITY = float('inf')\n\ndef py_encode_basestring(s):\n    \"\"\"Return a JSON representation of a Python string\n\n    \"\"\"\n    def replace(match):\n        return ESCAPE_DCT[match.group(0)]\n    return '\"' + ESCAPE.sub(replace, s) + '\"'\n\n\nencode_basestring = (c_encode_basestring or py_encode_basestring)\n\n\ndef py_encode_basestring_ascii(s):\n    \"\"\"Return an ASCII-only JSON representation of a Python string\n\n    \"\"\"\n    def replace(match):\n        s = match.group(0)\n        try:\n            return ESCAPE_DCT[s]\n        except KeyError:\n            n = ord(s)\n            if n < 0x10000:\n                return '\\\\u{0:04x}'.format(n)\n                #return '\\\\u%04x' % (n,)\n            else:\n                # surrogate pair\n                n -= 0x10000\n                s1 = 0xd800 | ((n >> 10) & 0x3ff)\n                s2 = 0xdc00 | (n & 0x3ff)\n                return '\\\\u{0:04x}\\\\u{1:04x}'.format(s1, s2)\n    return '\"' + ESCAPE_ASCII.sub(replace, s) + '\"'\n\n\nencode_basestring_ascii = (\n    c_encode_basestring_ascii or py_encode_basestring_ascii)\n\nclass JSONEncoder(object):\n    \"\"\"Extensible JSON <http://json.org> encoder for Python data structures.\n\n    Supports the following objects and types by default:\n\n    +-------------------+---------------+\n    | Python            | JSON          |\n    +===================+===============+\n    | dict              | object        |\n    +-------------------+---------------+\n    | list, tuple       | array         |\n    +-------------------+---------------+\n    | str               | string        |\n    +-------------------+---------------+\n    | int, float        | number        |\n    +-------------------+---------------+\n    | True              | true          |\n    +-------------------+---------------+\n    | False             | false         |\n    +-------------------+---------------+\n    | None              | null          |\n    +-------------------+---------------+\n\n    To extend this to recognize other objects, subclass and implement a\n    ``.default()`` method with another method that returns a serializable\n    object for ``o`` if possible, otherwise it should call the superclass\n    implementation (to raise ``TypeError``).\n\n    \"\"\"\n    item_separator = ', '\n    key_separator = ': '\n    def __init__(self, *, skipkeys=False, ensure_ascii=True,\n            check_circular=True, allow_nan=True, sort_keys=False,\n            indent=None, separators=None, default=None):\n        \"\"\"Constructor for JSONEncoder, with sensible defaults.\n\n        If skipkeys is false, then it is a TypeError to attempt\n        encoding of keys that are not str, int, float or None.  If\n        skipkeys is True, such items are simply skipped.\n\n        If ensure_ascii is true, the output is guaranteed to be str\n        objects with all incoming non-ASCII characters escaped.  If\n        ensure_ascii is false, the output can contain non-ASCII characters.\n\n        If check_circular is true, then lists, dicts, and custom encoded\n        objects will be checked for circular references during encoding to\n        prevent an infinite recursion (which would cause an OverflowError).\n        Otherwise, no such check takes place.\n\n        If allow_nan is true, then NaN, Infinity, and -Infinity will be\n        encoded as such.  This behavior is not JSON specification compliant,\n        but is consistent with most JavaScript based encoders and decoders.\n        Otherwise, it will be a ValueError to encode such floats.\n\n        If sort_keys is true, then the output of dictionaries will be\n        sorted by key; this is useful for regression tests to ensure\n        that JSON serializations can be compared on a day-to-day basis.\n\n        If indent is a non-negative integer, then JSON array\n        elements and object members will be pretty-printed with that\n        indent level.  An indent level of 0 will only insert newlines.\n        None is the most compact representation.\n\n        If specified, separators should be an (item_separator, key_separator)\n        tuple.  The default is (', ', ': ') if *indent* is ``None`` and\n        (',', ': ') otherwise.  To get the most compact JSON representation,\n        you should specify (',', ':') to eliminate whitespace.\n\n        If specified, default is a function that gets called for objects\n        that can't otherwise be serialized.  It should return a JSON encodable\n        version of the object or raise a ``TypeError``.\n\n        \"\"\"\n\n        self.skipkeys = skipkeys\n        self.ensure_ascii = ensure_ascii\n        self.check_circular = check_circular\n        self.allow_nan = allow_nan\n        self.sort_keys = sort_keys\n        self.indent = indent\n        if separators is not None:\n            self.item_separator, self.key_separator = separators\n        elif indent is not None:\n            self.item_separator = ','\n        if default is not None:\n            self.default = default\n\n    def default(self, o):\n        \"\"\"Implement this method in a subclass such that it returns\n        a serializable object for ``o``, or calls the base implementation\n        (to raise a ``TypeError``).\n\n        For example, to support arbitrary iterators, you could\n        implement default like this::\n\n            def default(self, o):\n                try:\n                    iterable = iter(o)\n                except TypeError:\n                    pass\n                else:\n                    return list(iterable)\n                # Let the base class default method raise the TypeError\n                return JSONEncoder.default(self, o)\n\n        \"\"\"\n        raise TypeError(f'Object of type {o.__class__.__name__} '\n                        f'is not JSON serializable')\n\n    def encode(self, o):\n        \"\"\"Return a JSON string representation of a Python data structure.\n\n        >>> from json.encoder import JSONEncoder\n        >>> JSONEncoder().encode({\"foo\": [\"bar\", \"baz\"]})\n        '{\"foo\": [\"bar\", \"baz\"]}'\n\n        \"\"\"\n        # This is for extremely simple cases and benchmarks.\n        if isinstance(o, str):\n            if self.ensure_ascii:\n                return encode_basestring_ascii(o)\n            else:\n                return encode_basestring(o)\n        # This doesn't pass the iterator directly to ''.join() because the\n        # exceptions aren't as detailed.  The list call should be roughly\n        # equivalent to the PySequence_Fast that ''.join() would do.\n        chunks = self.iterencode(o, _one_shot=True)\n        if not isinstance(chunks, (list, tuple)):\n            chunks = list(chunks)\n        return ''.join(chunks)\n\n    def iterencode(self, o, _one_shot=False):\n        \"\"\"Encode the given object and yield each string\n        representation as available.\n\n        For example::\n\n            for chunk in JSONEncoder().iterencode(bigobject):\n                mysocket.write(chunk)\n\n        \"\"\"\n        if self.check_circular:\n            markers = {}\n        else:\n            markers = None\n        if self.ensure_ascii:\n            _encoder = encode_basestring_ascii\n        else:\n            _encoder = encode_basestring\n\n        def floatstr(o, allow_nan=self.allow_nan,\n                _repr=float.__repr__, _inf=INFINITY, _neginf=-INFINITY):\n            # Check for specials.  Note that this type of test is processor\n            # and/or platform-specific, so do tests which don't depend on the\n            # internals.\n\n            if o != o:\n                text = 'NaN'\n            elif o == _inf:\n                text = 'Infinity'\n            elif o == _neginf:\n                text = '-Infinity'\n            else:\n                return _repr(o)\n\n            if not allow_nan:\n                raise ValueError(\n                    \"Out of range float values are not JSON compliant: \" +\n                    repr(o))\n\n            return text\n\n\n        if (_one_shot and c_make_encoder is not None\n                and self.indent is None):\n            _iterencode = c_make_encoder(\n                markers, self.default, _encoder, self.indent,\n                self.key_separator, self.item_separator, self.sort_keys,\n                self.skipkeys, self.allow_nan)\n        else:\n            _iterencode = _make_iterencode(\n                markers, self.default, _encoder, self.indent, floatstr,\n                self.key_separator, self.item_separator, self.sort_keys,\n                self.skipkeys, _one_shot)\n        return _iterencode(o, 0)\n\ndef _make_iterencode(markers, _default, _encoder, _indent, _floatstr,\n        _key_separator, _item_separator, _sort_keys, _skipkeys, _one_shot,\n        ## HACK: hand-optimized bytecode; turn globals into locals\n        ValueError=ValueError,\n        dict=dict,\n        float=float,\n        id=id,\n        int=int,\n        isinstance=isinstance,\n        list=list,\n        str=str,\n        tuple=tuple,\n        _intstr=int.__repr__,\n    ):\n\n    if _indent is not None and not isinstance(_indent, str):\n        _indent = ' ' * _indent\n\n    def _iterencode_list(lst, _current_indent_level):\n        if not lst:\n            yield '[]'\n            return\n        if markers is not None:\n            markerid = id(lst)\n            if markerid in markers:\n                raise ValueError(\"Circular reference detected\")\n            markers[markerid] = lst\n        buf = '['\n        if _indent is not None:\n            _current_indent_level += 1\n            newline_indent = '\\n' + _indent * _current_indent_level\n            separator = _item_separator + newline_indent\n            buf += newline_indent\n        else:\n            newline_indent = None\n            separator = _item_separator\n        first = True\n        for value in lst:\n            if first:\n                first = False\n            else:\n                buf = separator\n            if isinstance(value, str):\n                yield buf + _encoder(value)\n            elif value is None:\n                yield buf + 'null'\n            elif value is True:\n                yield buf + 'true'\n            elif value is False:\n                yield buf + 'false'\n            elif isinstance(value, int):\n                # Subclasses of int/float may override __repr__, but we still\n                # want to encode them as integers/floats in JSON. One example\n                # within the standard library is IntEnum.\n                yield buf + _intstr(value)\n            elif isinstance(value, float):\n                # see comment above for int\n                yield buf + _floatstr(value)\n            else:\n                yield buf\n                if isinstance(value, (list, tuple)):\n                    chunks = _iterencode_list(value, _current_indent_level)\n                elif isinstance(value, dict):\n                    chunks = _iterencode_dict(value, _current_indent_level)\n                else:\n                    chunks = _iterencode(value, _current_indent_level)\n                yield from chunks\n        if newline_indent is not None:\n            _current_indent_level -= 1\n            yield '\\n' + _indent * _current_indent_level\n        yield ']'\n        if markers is not None:\n            del markers[markerid]\n\n    def _iterencode_dict(dct, _current_indent_level):\n        if not dct:\n            yield '{}'\n            return\n        if markers is not None:\n            markerid = id(dct)\n            if markerid in markers:\n                raise ValueError(\"Circular reference detected\")\n            markers[markerid] = dct\n        yield '{'\n        if _indent is not None:\n            _current_indent_level += 1\n            newline_indent = '\\n' + _indent * _current_indent_level\n            item_separator = _item_separator + newline_indent\n            yield newline_indent\n        else:\n            newline_indent = None\n            item_separator = _item_separator\n        first = True\n        if _sort_keys:\n            items = sorted(dct.items())\n        else:\n            items = dct.items()\n        for key, value in items:\n            if isinstance(key, str):\n                pass\n            # JavaScript is weakly typed for these, so it makes sense to\n            # also allow them.  Many encoders seem to do something like this.\n            elif isinstance(key, float):\n                # see comment for int/float in _make_iterencode\n                key = _floatstr(key)\n            elif key is True:\n                key = 'true'\n            elif key is False:\n                key = 'false'\n            elif key is None:\n                key = 'null'\n            elif isinstance(key, int):\n                # see comment for int/float in _make_iterencode\n                key = _intstr(key)\n            elif _skipkeys:\n                continue\n            else:\n                raise TypeError(f'keys must be str, int, float, bool or None, '\n                                f'not {key.__class__.__name__}')\n            if first:\n                first = False\n            else:\n                yield item_separator\n            yield _encoder(key)\n            yield _key_separator\n            if isinstance(value, str):\n                yield _encoder(value)\n            elif value is None:\n                yield 'null'\n            elif value is True:\n                yield 'true'\n            elif value is False:\n                yield 'false'\n            elif isinstance(value, int):\n                # see comment for int/float in _make_iterencode\n                yield _intstr(value)\n            elif isinstance(value, float):\n                # see comment for int/float in _make_iterencode\n                yield _floatstr(value)\n            else:\n                if isinstance(value, (list, tuple)):\n                    chunks = _iterencode_list(value, _current_indent_level)\n                elif isinstance(value, dict):\n                    chunks = _iterencode_dict(value, _current_indent_level)\n                else:\n                    chunks = _iterencode(value, _current_indent_level)\n                yield from chunks\n        if newline_indent is not None:\n            _current_indent_level -= 1\n            yield '\\n' + _indent * _current_indent_level\n        yield '}'\n        if markers is not None:\n            del markers[markerid]\n\n    def _iterencode(o, _current_indent_level):\n        if isinstance(o, str):\n            yield _encoder(o)\n        elif o is None:\n            yield 'null'\n        elif o is True:\n            yield 'true'\n        elif o is False:\n            yield 'false'\n        elif isinstance(o, int):\n            # see comment for int/float in _make_iterencode\n            yield _intstr(o)\n        elif isinstance(o, float):\n            # see comment for int/float in _make_iterencode\n            yield _floatstr(o)\n        elif isinstance(o, (list, tuple)):\n            yield from _iterencode_list(o, _current_indent_level)\n        elif isinstance(o, dict):\n            yield from _iterencode_dict(o, _current_indent_level)\n        else:\n            if markers is not None:\n                markerid = id(o)\n                if markerid in markers:\n                    raise ValueError(\"Circular reference detected\")\n                markers[markerid] = o\n            o = _default(o)\n            yield from _iterencode(o, _current_indent_level)\n            if markers is not None:\n                del markers[markerid]\n    return _iterencode\n"
  },
  {
    "path": "rd/usr/lib/python3.8/json/scanner.py",
    "content": "\"\"\"JSON token scanner\n\"\"\"\nimport re\ntry:\n    from _json import make_scanner as c_make_scanner\nexcept ImportError:\n    c_make_scanner = None\n\n__all__ = ['make_scanner']\n\nNUMBER_RE = re.compile(\n    r'(-?(?:0|[1-9]\\d*))(\\.\\d+)?([eE][-+]?\\d+)?',\n    (re.VERBOSE | re.MULTILINE | re.DOTALL))\n\ndef py_make_scanner(context):\n    parse_object = context.parse_object\n    parse_array = context.parse_array\n    parse_string = context.parse_string\n    match_number = NUMBER_RE.match\n    strict = context.strict\n    parse_float = context.parse_float\n    parse_int = context.parse_int\n    parse_constant = context.parse_constant\n    object_hook = context.object_hook\n    object_pairs_hook = context.object_pairs_hook\n    memo = context.memo\n\n    def _scan_once(string, idx):\n        try:\n            nextchar = string[idx]\n        except IndexError:\n            raise StopIteration(idx) from None\n\n        if nextchar == '\"':\n            return parse_string(string, idx + 1, strict)\n        elif nextchar == '{':\n            return parse_object((string, idx + 1), strict,\n                _scan_once, object_hook, object_pairs_hook, memo)\n        elif nextchar == '[':\n            return parse_array((string, idx + 1), _scan_once)\n        elif nextchar == 'n' and string[idx:idx + 4] == 'null':\n            return None, idx + 4\n        elif nextchar == 't' and string[idx:idx + 4] == 'true':\n            return True, idx + 4\n        elif nextchar == 'f' and string[idx:idx + 5] == 'false':\n            return False, idx + 5\n\n        m = match_number(string, idx)\n        if m is not None:\n            integer, frac, exp = m.groups()\n            if frac or exp:\n                res = parse_float(integer + (frac or '') + (exp or ''))\n            else:\n                res = parse_int(integer)\n            return res, m.end()\n        elif nextchar == 'N' and string[idx:idx + 3] == 'NaN':\n            return parse_constant('NaN'), idx + 3\n        elif nextchar == 'I' and string[idx:idx + 8] == 'Infinity':\n            return parse_constant('Infinity'), idx + 8\n        elif nextchar == '-' and string[idx:idx + 9] == '-Infinity':\n            return parse_constant('-Infinity'), idx + 9\n        else:\n            raise StopIteration(idx)\n\n    def scan_once(string, idx):\n        try:\n            return _scan_once(string, idx)\n        finally:\n            memo.clear()\n\n    return scan_once\n\nmake_scanner = c_make_scanner or py_make_scanner\n"
  },
  {
    "path": "rd/usr/lib/python3.8/json/tool.py",
    "content": "r\"\"\"Command-line tool to validate and pretty-print JSON\n\nUsage::\n\n    $ echo '{\"json\":\"obj\"}' | python -m json.tool\n    {\n        \"json\": \"obj\"\n    }\n    $ echo '{ 1.2:3.4}' | python -m json.tool\n    Expecting property name enclosed in double quotes: line 1 column 3 (char 2)\n\n\"\"\"\nimport argparse\nimport json\nimport sys\n\n\ndef main():\n    prog = 'python -m json.tool'\n    description = ('A simple command line interface for json module '\n                   'to validate and pretty-print JSON objects.')\n    parser = argparse.ArgumentParser(prog=prog, description=description)\n    parser.add_argument('infile', nargs='?',\n                        type=argparse.FileType(encoding=\"utf-8\"),\n                        help='a JSON file to be validated or pretty-printed',\n                        default=sys.stdin)\n    parser.add_argument('outfile', nargs='?',\n                        type=argparse.FileType('w', encoding=\"utf-8\"),\n                        help='write the output of infile to outfile',\n                        default=sys.stdout)\n    parser.add_argument('--sort-keys', action='store_true', default=False,\n                        help='sort the output of dictionaries alphabetically by key')\n    parser.add_argument('--json-lines', action='store_true', default=False,\n                        help='parse input using the jsonlines format')\n    options = parser.parse_args()\n\n    infile = options.infile\n    outfile = options.outfile\n    sort_keys = options.sort_keys\n    json_lines = options.json_lines\n    with infile, outfile:\n        try:\n            if json_lines:\n                objs = (json.loads(line) for line in infile)\n            else:\n                objs = (json.load(infile), )\n            for obj in objs:\n                json.dump(obj, outfile, sort_keys=sort_keys, indent=4)\n                outfile.write('\\n')\n        except ValueError as e:\n            raise SystemExit(e)\n\n\nif __name__ == '__main__':\n    try:\n        main()\n    except BrokenPipeError as exc:\n        sys.exit(exc.errno)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/keyword.py",
    "content": "\"\"\"Keywords (from \"Grammar/Grammar\")\n\nThis file is automatically generated; please don't muck it up!\n\nTo update the symbols in this file, 'cd' to the top directory of\nthe python source tree and run:\n\n    python3 -m Parser.pgen.keywordgen Grammar/Grammar \\\n                                      Grammar/Tokens \\\n                                      Lib/keyword.py\n\nAlternatively, you can run 'make regen-keyword'.\n\"\"\"\n\n__all__ = [\"iskeyword\", \"kwlist\"]\n\nkwlist = [\n    'False',\n    'None',\n    'True',\n    'and',\n    'as',\n    'assert',\n    'async',\n    'await',\n    'break',\n    'class',\n    'continue',\n    'def',\n    'del',\n    'elif',\n    'else',\n    'except',\n    'finally',\n    'for',\n    'from',\n    'global',\n    'if',\n    'import',\n    'in',\n    'is',\n    'lambda',\n    'nonlocal',\n    'not',\n    'or',\n    'pass',\n    'raise',\n    'return',\n    'try',\n    'while',\n    'with',\n    'yield'\n]\n\niskeyword = frozenset(kwlist).__contains__\n"
  },
  {
    "path": "rd/usr/lib/python3.8/linecache.py",
    "content": "\"\"\"Cache lines from Python source files.\n\nThis is intended to read lines from modules imported -- hence if a filename\nis not found, it will look down the module search path for a file by\nthat name.\n\"\"\"\n\nimport functools\nimport sys\nimport os\nimport tokenize\n\n__all__ = [\"getline\", \"clearcache\", \"checkcache\"]\n\ndef getline(filename, lineno, module_globals=None):\n    lines = getlines(filename, module_globals)\n    if 1 <= lineno <= len(lines):\n        return lines[lineno-1]\n    else:\n        return ''\n\n\n# The cache\n\n# The cache. Maps filenames to either a thunk which will provide source code,\n# or a tuple (size, mtime, lines, fullname) once loaded.\ncache = {}\n\n\ndef clearcache():\n    \"\"\"Clear the cache entirely.\"\"\"\n\n    global cache\n    cache = {}\n\n\ndef getlines(filename, module_globals=None):\n    \"\"\"Get the lines for a Python source file from the cache.\n    Update the cache if it doesn't contain an entry for this file already.\"\"\"\n\n    if filename in cache:\n        entry = cache[filename]\n        if len(entry) != 1:\n            return cache[filename][2]\n\n    try:\n        return updatecache(filename, module_globals)\n    except MemoryError:\n        clearcache()\n        return []\n\n\ndef checkcache(filename=None):\n    \"\"\"Discard cache entries that are out of date.\n    (This is not checked upon each call!)\"\"\"\n\n    if filename is None:\n        filenames = list(cache.keys())\n    else:\n        if filename in cache:\n            filenames = [filename]\n        else:\n            return\n\n    for filename in filenames:\n        entry = cache[filename]\n        if len(entry) == 1:\n            # lazy cache entry, leave it lazy.\n            continue\n        size, mtime, lines, fullname = entry\n        if mtime is None:\n            continue   # no-op for files loaded via a __loader__\n        try:\n            stat = os.stat(fullname)\n        except OSError:\n            cache.pop(filename, None)\n            continue\n        if size != stat.st_size or mtime != stat.st_mtime:\n            cache.pop(filename, None)\n\n\ndef updatecache(filename, module_globals=None):\n    \"\"\"Update a cache entry and return its list of lines.\n    If something's wrong, print a message, discard the cache entry,\n    and return an empty list.\"\"\"\n\n    if filename in cache:\n        if len(cache[filename]) != 1:\n            cache.pop(filename, None)\n    if not filename or (filename.startswith('<') and filename.endswith('>')):\n        return []\n\n    fullname = filename\n    try:\n        stat = os.stat(fullname)\n    except OSError:\n        basename = filename\n\n        # Realise a lazy loader based lookup if there is one\n        # otherwise try to lookup right now.\n        if lazycache(filename, module_globals):\n            try:\n                data = cache[filename][0]()\n            except (ImportError, OSError):\n                pass\n            else:\n                if data is None:\n                    # No luck, the PEP302 loader cannot find the source\n                    # for this module.\n                    return []\n                cache[filename] = (\n                    len(data), None,\n                    [line+'\\n' for line in data.splitlines()], fullname\n                )\n                return cache[filename][2]\n\n        # Try looking through the module search path, which is only useful\n        # when handling a relative filename.\n        if os.path.isabs(filename):\n            return []\n\n        for dirname in sys.path:\n            try:\n                fullname = os.path.join(dirname, basename)\n            except (TypeError, AttributeError):\n                # Not sufficiently string-like to do anything useful with.\n                continue\n            try:\n                stat = os.stat(fullname)\n                break\n            except OSError:\n                pass\n        else:\n            return []\n    try:\n        with tokenize.open(fullname) as fp:\n            lines = fp.readlines()\n    except OSError:\n        return []\n    if lines and not lines[-1].endswith('\\n'):\n        lines[-1] += '\\n'\n    size, mtime = stat.st_size, stat.st_mtime\n    cache[filename] = size, mtime, lines, fullname\n    return lines\n\n\ndef lazycache(filename, module_globals):\n    \"\"\"Seed the cache for filename with module_globals.\n\n    The module loader will be asked for the source only when getlines is\n    called, not immediately.\n\n    If there is an entry in the cache already, it is not altered.\n\n    :return: True if a lazy load is registered in the cache,\n        otherwise False. To register such a load a module loader with a\n        get_source method must be found, the filename must be a cachable\n        filename, and the filename must not be already cached.\n    \"\"\"\n    if filename in cache:\n        if len(cache[filename]) == 1:\n            return True\n        else:\n            return False\n    if not filename or (filename.startswith('<') and filename.endswith('>')):\n        return False\n    # Try for a __loader__, if available\n    if module_globals and '__loader__' in module_globals:\n        name = module_globals.get('__name__')\n        loader = module_globals['__loader__']\n        get_source = getattr(loader, 'get_source', None)\n\n        if name and get_source:\n            get_lines = functools.partial(get_source, name)\n            cache[filename] = (get_lines,)\n            return True\n    return False\n"
  },
  {
    "path": "rd/usr/lib/python3.8/locale.py",
    "content": "\"\"\"Locale support module.\n\nThe module provides low-level access to the C lib's locale APIs and adds high\nlevel number formatting APIs as well as a locale aliasing engine to complement\nthese.\n\nThe aliasing engine includes support for many commonly used locale names and\nmaps them to values suitable for passing to the C lib's setlocale() function. It\nalso includes default encodings for all supported locale names.\n\n\"\"\"\n\nimport sys\nimport encodings\nimport encodings.aliases\nimport re\nimport _collections_abc\nfrom builtins import str as _builtin_str\nimport functools\n\n# Try importing the _locale module.\n#\n# If this fails, fall back on a basic 'C' locale emulation.\n\n# Yuck:  LC_MESSAGES is non-standard:  can't tell whether it exists before\n# trying the import.  So __all__ is also fiddled at the end of the file.\n__all__ = [\"getlocale\", \"getdefaultlocale\", \"getpreferredencoding\", \"Error\",\n           \"setlocale\", \"resetlocale\", \"localeconv\", \"strcoll\", \"strxfrm\",\n           \"str\", \"atof\", \"atoi\", \"format\", \"format_string\", \"currency\",\n           \"normalize\", \"LC_CTYPE\", \"LC_COLLATE\", \"LC_TIME\", \"LC_MONETARY\",\n           \"LC_NUMERIC\", \"LC_ALL\", \"CHAR_MAX\"]\n\ndef _strcoll(a,b):\n    \"\"\" strcoll(string,string) -> int.\n        Compares two strings according to the locale.\n    \"\"\"\n    return (a > b) - (a < b)\n\ndef _strxfrm(s):\n    \"\"\" strxfrm(string) -> string.\n        Returns a string that behaves for cmp locale-aware.\n    \"\"\"\n    return s\n\ntry:\n\n    from _locale import *\n\nexcept ImportError:\n\n    # Locale emulation\n\n    CHAR_MAX = 127\n    LC_ALL = 6\n    LC_COLLATE = 3\n    LC_CTYPE = 0\n    LC_MESSAGES = 5\n    LC_MONETARY = 4\n    LC_NUMERIC = 1\n    LC_TIME = 2\n    Error = ValueError\n\n    def localeconv():\n        \"\"\" localeconv() -> dict.\n            Returns numeric and monetary locale-specific parameters.\n        \"\"\"\n        # 'C' locale default values\n        return {'grouping': [127],\n                'currency_symbol': '',\n                'n_sign_posn': 127,\n                'p_cs_precedes': 127,\n                'n_cs_precedes': 127,\n                'mon_grouping': [],\n                'n_sep_by_space': 127,\n                'decimal_point': '.',\n                'negative_sign': '',\n                'positive_sign': '',\n                'p_sep_by_space': 127,\n                'int_curr_symbol': '',\n                'p_sign_posn': 127,\n                'thousands_sep': '',\n                'mon_thousands_sep': '',\n                'frac_digits': 127,\n                'mon_decimal_point': '',\n                'int_frac_digits': 127}\n\n    def setlocale(category, value=None):\n        \"\"\" setlocale(integer,string=None) -> string.\n            Activates/queries locale processing.\n        \"\"\"\n        if value not in (None, '', 'C'):\n            raise Error('_locale emulation only supports \"C\" locale')\n        return 'C'\n\n# These may or may not exist in _locale, so be sure to set them.\nif 'strxfrm' not in globals():\n    strxfrm = _strxfrm\nif 'strcoll' not in globals():\n    strcoll = _strcoll\n\n\n_localeconv = localeconv\n\n# With this dict, you can override some items of localeconv's return value.\n# This is useful for testing purposes.\n_override_localeconv = {}\n\n@functools.wraps(_localeconv)\ndef localeconv():\n    d = _localeconv()\n    if _override_localeconv:\n        d.update(_override_localeconv)\n    return d\n\n\n### Number formatting APIs\n\n# Author: Martin von Loewis\n# improved by Georg Brandl\n\n# Iterate over grouping intervals\ndef _grouping_intervals(grouping):\n    last_interval = None\n    for interval in grouping:\n        # if grouping is -1, we are done\n        if interval == CHAR_MAX:\n            return\n        # 0: re-use last group ad infinitum\n        if interval == 0:\n            if last_interval is None:\n                raise ValueError(\"invalid grouping\")\n            while True:\n                yield last_interval\n        yield interval\n        last_interval = interval\n\n#perform the grouping from right to left\ndef _group(s, monetary=False):\n    conv = localeconv()\n    thousands_sep = conv[monetary and 'mon_thousands_sep' or 'thousands_sep']\n    grouping = conv[monetary and 'mon_grouping' or 'grouping']\n    if not grouping:\n        return (s, 0)\n    if s[-1] == ' ':\n        stripped = s.rstrip()\n        right_spaces = s[len(stripped):]\n        s = stripped\n    else:\n        right_spaces = ''\n    left_spaces = ''\n    groups = []\n    for interval in _grouping_intervals(grouping):\n        if not s or s[-1] not in \"0123456789\":\n            # only non-digit characters remain (sign, spaces)\n            left_spaces = s\n            s = ''\n            break\n        groups.append(s[-interval:])\n        s = s[:-interval]\n    if s:\n        groups.append(s)\n    groups.reverse()\n    return (\n        left_spaces + thousands_sep.join(groups) + right_spaces,\n        len(thousands_sep) * (len(groups) - 1)\n    )\n\n# Strip a given amount of excess padding from the given string\ndef _strip_padding(s, amount):\n    lpos = 0\n    while amount and s[lpos] == ' ':\n        lpos += 1\n        amount -= 1\n    rpos = len(s) - 1\n    while amount and s[rpos] == ' ':\n        rpos -= 1\n        amount -= 1\n    return s[lpos:rpos+1]\n\n_percent_re = re.compile(r'%(?:\\((?P<key>.*?)\\))?'\n                         r'(?P<modifiers>[-#0-9 +*.hlL]*?)[eEfFgGdiouxXcrs%]')\n\ndef _format(percent, value, grouping=False, monetary=False, *additional):\n    if additional:\n        formatted = percent % ((value,) + additional)\n    else:\n        formatted = percent % value\n    # floats and decimal ints need special action!\n    if percent[-1] in 'eEfFgG':\n        seps = 0\n        parts = formatted.split('.')\n        if grouping:\n            parts[0], seps = _group(parts[0], monetary=monetary)\n        decimal_point = localeconv()[monetary and 'mon_decimal_point'\n                                              or 'decimal_point']\n        formatted = decimal_point.join(parts)\n        if seps:\n            formatted = _strip_padding(formatted, seps)\n    elif percent[-1] in 'diu':\n        seps = 0\n        if grouping:\n            formatted, seps = _group(formatted, monetary=monetary)\n        if seps:\n            formatted = _strip_padding(formatted, seps)\n    return formatted\n\ndef format_string(f, val, grouping=False, monetary=False):\n    \"\"\"Formats a string in the same way that the % formatting would use,\n    but takes the current locale into account.\n\n    Grouping is applied if the third parameter is true.\n    Conversion uses monetary thousands separator and grouping strings if\n    forth parameter monetary is true.\"\"\"\n    percents = list(_percent_re.finditer(f))\n    new_f = _percent_re.sub('%s', f)\n\n    if isinstance(val, _collections_abc.Mapping):\n        new_val = []\n        for perc in percents:\n            if perc.group()[-1]=='%':\n                new_val.append('%')\n            else:\n                new_val.append(_format(perc.group(), val, grouping, monetary))\n    else:\n        if not isinstance(val, tuple):\n            val = (val,)\n        new_val = []\n        i = 0\n        for perc in percents:\n            if perc.group()[-1]=='%':\n                new_val.append('%')\n            else:\n                starcount = perc.group('modifiers').count('*')\n                new_val.append(_format(perc.group(),\n                                      val[i],\n                                      grouping,\n                                      monetary,\n                                      *val[i+1:i+1+starcount]))\n                i += (1 + starcount)\n    val = tuple(new_val)\n\n    return new_f % val\n\ndef format(percent, value, grouping=False, monetary=False, *additional):\n    \"\"\"Deprecated, use format_string instead.\"\"\"\n    import warnings\n    warnings.warn(\n        \"This method will be removed in a future version of Python. \"\n        \"Use 'locale.format_string()' instead.\",\n        DeprecationWarning, stacklevel=2\n    )\n\n    match = _percent_re.match(percent)\n    if not match or len(match.group())!= len(percent):\n        raise ValueError((\"format() must be given exactly one %%char \"\n                         \"format specifier, %s not valid\") % repr(percent))\n    return _format(percent, value, grouping, monetary, *additional)\n\ndef currency(val, symbol=True, grouping=False, international=False):\n    \"\"\"Formats val according to the currency settings\n    in the current locale.\"\"\"\n    conv = localeconv()\n\n    # check for illegal values\n    digits = conv[international and 'int_frac_digits' or 'frac_digits']\n    if digits == 127:\n        raise ValueError(\"Currency formatting is not possible using \"\n                         \"the 'C' locale.\")\n\n    s = _format('%%.%if' % digits, abs(val), grouping, monetary=True)\n    # '<' and '>' are markers if the sign must be inserted between symbol and value\n    s = '<' + s + '>'\n\n    if symbol:\n        smb = conv[international and 'int_curr_symbol' or 'currency_symbol']\n        precedes = conv[val<0 and 'n_cs_precedes' or 'p_cs_precedes']\n        separated = conv[val<0 and 'n_sep_by_space' or 'p_sep_by_space']\n\n        if precedes:\n            s = smb + (separated and ' ' or '') + s\n        else:\n            s = s + (separated and ' ' or '') + smb\n\n    sign_pos = conv[val<0 and 'n_sign_posn' or 'p_sign_posn']\n    sign = conv[val<0 and 'negative_sign' or 'positive_sign']\n\n    if sign_pos == 0:\n        s = '(' + s + ')'\n    elif sign_pos == 1:\n        s = sign + s\n    elif sign_pos == 2:\n        s = s + sign\n    elif sign_pos == 3:\n        s = s.replace('<', sign)\n    elif sign_pos == 4:\n        s = s.replace('>', sign)\n    else:\n        # the default if nothing specified;\n        # this should be the most fitting sign position\n        s = sign + s\n\n    return s.replace('<', '').replace('>', '')\n\ndef str(val):\n    \"\"\"Convert float to string, taking the locale into account.\"\"\"\n    return _format(\"%.12g\", val)\n\ndef delocalize(string):\n    \"Parses a string as a normalized number according to the locale settings.\"\n\n    conv = localeconv()\n\n    #First, get rid of the grouping\n    ts = conv['thousands_sep']\n    if ts:\n        string = string.replace(ts, '')\n\n    #next, replace the decimal point with a dot\n    dd = conv['decimal_point']\n    if dd:\n        string = string.replace(dd, '.')\n    return string\n\ndef atof(string, func=float):\n    \"Parses a string as a float according to the locale settings.\"\n    return func(delocalize(string))\n\ndef atoi(string):\n    \"Converts a string to an integer according to the locale settings.\"\n    return int(delocalize(string))\n\ndef _test():\n    setlocale(LC_ALL, \"\")\n    #do grouping\n    s1 = format_string(\"%d\", 123456789,1)\n    print(s1, \"is\", atoi(s1))\n    #standard formatting\n    s1 = str(3.14)\n    print(s1, \"is\", atof(s1))\n\n### Locale name aliasing engine\n\n# Author: Marc-Andre Lemburg, mal@lemburg.com\n# Various tweaks by Fredrik Lundh <fredrik@pythonware.com>\n\n# store away the low-level version of setlocale (it's\n# overridden below)\n_setlocale = setlocale\n\ndef _replace_encoding(code, encoding):\n    if '.' in code:\n        langname = code[:code.index('.')]\n    else:\n        langname = code\n    # Convert the encoding to a C lib compatible encoding string\n    norm_encoding = encodings.normalize_encoding(encoding)\n    #print('norm encoding: %r' % norm_encoding)\n    norm_encoding = encodings.aliases.aliases.get(norm_encoding.lower(),\n                                                  norm_encoding)\n    #print('aliased encoding: %r' % norm_encoding)\n    encoding = norm_encoding\n    norm_encoding = norm_encoding.lower()\n    if norm_encoding in locale_encoding_alias:\n        encoding = locale_encoding_alias[norm_encoding]\n    else:\n        norm_encoding = norm_encoding.replace('_', '')\n        norm_encoding = norm_encoding.replace('-', '')\n        if norm_encoding in locale_encoding_alias:\n            encoding = locale_encoding_alias[norm_encoding]\n    #print('found encoding %r' % encoding)\n    return langname + '.' + encoding\n\ndef _append_modifier(code, modifier):\n    if modifier == 'euro':\n        if '.' not in code:\n            return code + '.ISO8859-15'\n        _, _, encoding = code.partition('.')\n        if encoding in ('ISO8859-15', 'UTF-8'):\n            return code\n        if encoding == 'ISO8859-1':\n            return _replace_encoding(code, 'ISO8859-15')\n    return code + '@' + modifier\n\ndef normalize(localename):\n\n    \"\"\" Returns a normalized locale code for the given locale\n        name.\n\n        The returned locale code is formatted for use with\n        setlocale().\n\n        If normalization fails, the original name is returned\n        unchanged.\n\n        If the given encoding is not known, the function defaults to\n        the default encoding for the locale code just like setlocale()\n        does.\n\n    \"\"\"\n    # Normalize the locale name and extract the encoding and modifier\n    code = localename.lower()\n    if ':' in code:\n        # ':' is sometimes used as encoding delimiter.\n        code = code.replace(':', '.')\n    if '@' in code:\n        code, modifier = code.split('@', 1)\n    else:\n        modifier = ''\n    if '.' in code:\n        langname, encoding = code.split('.')[:2]\n    else:\n        langname = code\n        encoding = ''\n\n    # First lookup: fullname (possibly with encoding and modifier)\n    lang_enc = langname\n    if encoding:\n        norm_encoding = encoding.replace('-', '')\n        norm_encoding = norm_encoding.replace('_', '')\n        lang_enc += '.' + norm_encoding\n    lookup_name = lang_enc\n    if modifier:\n        lookup_name += '@' + modifier\n    code = locale_alias.get(lookup_name, None)\n    if code is not None:\n        return code\n    #print('first lookup failed')\n\n    if modifier:\n        # Second try: fullname without modifier (possibly with encoding)\n        code = locale_alias.get(lang_enc, None)\n        if code is not None:\n            #print('lookup without modifier succeeded')\n            if '@' not in code:\n                return _append_modifier(code, modifier)\n            if code.split('@', 1)[1].lower() == modifier:\n                return code\n        #print('second lookup failed')\n\n    if encoding:\n        # Third try: langname (without encoding, possibly with modifier)\n        lookup_name = langname\n        if modifier:\n            lookup_name += '@' + modifier\n        code = locale_alias.get(lookup_name, None)\n        if code is not None:\n            #print('lookup without encoding succeeded')\n            if '@' not in code:\n                return _replace_encoding(code, encoding)\n            code, modifier = code.split('@', 1)\n            return _replace_encoding(code, encoding) + '@' + modifier\n\n        if modifier:\n            # Fourth try: langname (without encoding and modifier)\n            code = locale_alias.get(langname, None)\n            if code is not None:\n                #print('lookup without modifier and encoding succeeded')\n                if '@' not in code:\n                    code = _replace_encoding(code, encoding)\n                    return _append_modifier(code, modifier)\n                code, defmod = code.split('@', 1)\n                if defmod.lower() == modifier:\n                    return _replace_encoding(code, encoding) + '@' + defmod\n\n    return localename\n\ndef _parse_localename(localename):\n\n    \"\"\" Parses the locale code for localename and returns the\n        result as tuple (language code, encoding).\n\n        The localename is normalized and passed through the locale\n        alias engine. A ValueError is raised in case the locale name\n        cannot be parsed.\n\n        The language code corresponds to RFC 1766.  code and encoding\n        can be None in case the values cannot be determined or are\n        unknown to this implementation.\n\n    \"\"\"\n    code = normalize(localename)\n    if '@' in code:\n        # Deal with locale modifiers\n        code, modifier = code.split('@', 1)\n        if modifier == 'euro' and '.' not in code:\n            # Assume Latin-9 for @euro locales. This is bogus,\n            # since some systems may use other encodings for these\n            # locales. Also, we ignore other modifiers.\n            return code, 'iso-8859-15'\n\n    if '.' in code:\n        return tuple(code.split('.')[:2])\n    elif code == 'C':\n        return None, None\n    elif code == 'UTF-8':\n        # On macOS \"LC_CTYPE=UTF-8\" is a valid locale setting\n        # for getting UTF-8 handling for text.\n        return None, 'UTF-8'\n    raise ValueError('unknown locale: %s' % localename)\n\ndef _build_localename(localetuple):\n\n    \"\"\" Builds a locale code from the given tuple (language code,\n        encoding).\n\n        No aliasing or normalizing takes place.\n\n    \"\"\"\n    try:\n        language, encoding = localetuple\n\n        if language is None:\n            language = 'C'\n        if encoding is None:\n            return language\n        else:\n            return language + '.' + encoding\n    except (TypeError, ValueError):\n        raise TypeError('Locale must be None, a string, or an iterable of '\n                        'two strings -- language code, encoding.') from None\n\ndef getdefaultlocale(envvars=('LC_ALL', 'LC_CTYPE', 'LANG', 'LANGUAGE')):\n\n    \"\"\" Tries to determine the default locale settings and returns\n        them as tuple (language code, encoding).\n\n        According to POSIX, a program which has not called\n        setlocale(LC_ALL, \"\") runs using the portable 'C' locale.\n        Calling setlocale(LC_ALL, \"\") lets it use the default locale as\n        defined by the LANG variable. Since we don't want to interfere\n        with the current locale setting we thus emulate the behavior\n        in the way described above.\n\n        To maintain compatibility with other platforms, not only the\n        LANG variable is tested, but a list of variables given as\n        envvars parameter. The first found to be defined will be\n        used. envvars defaults to the search path used in GNU gettext;\n        it must always contain the variable name 'LANG'.\n\n        Except for the code 'C', the language code corresponds to RFC\n        1766.  code and encoding can be None in case the values cannot\n        be determined.\n\n    \"\"\"\n\n    try:\n        # check if it's supported by the _locale module\n        import _locale\n        code, encoding = _locale._getdefaultlocale()\n    except (ImportError, AttributeError):\n        pass\n    else:\n        # make sure the code/encoding values are valid\n        if sys.platform == \"win32\" and code and code[:2] == \"0x\":\n            # map windows language identifier to language name\n            code = windows_locale.get(int(code, 0))\n        # ...add other platform-specific processing here, if\n        # necessary...\n        return code, encoding\n\n    # fall back on POSIX behaviour\n    import os\n    lookup = os.environ.get\n    for variable in envvars:\n        localename = lookup(variable,None)\n        if localename:\n            if variable == 'LANGUAGE':\n                localename = localename.split(':')[0]\n            break\n    else:\n        localename = 'C'\n    return _parse_localename(localename)\n\n\ndef getlocale(category=LC_CTYPE):\n\n    \"\"\" Returns the current setting for the given locale category as\n        tuple (language code, encoding).\n\n        category may be one of the LC_* value except LC_ALL. It\n        defaults to LC_CTYPE.\n\n        Except for the code 'C', the language code corresponds to RFC\n        1766.  code and encoding can be None in case the values cannot\n        be determined.\n\n    \"\"\"\n    localename = _setlocale(category)\n    if category == LC_ALL and ';' in localename:\n        raise TypeError('category LC_ALL is not supported')\n    return _parse_localename(localename)\n\ndef setlocale(category, locale=None):\n\n    \"\"\" Set the locale for the given category.  The locale can be\n        a string, an iterable of two strings (language code and encoding),\n        or None.\n\n        Iterables are converted to strings using the locale aliasing\n        engine.  Locale strings are passed directly to the C lib.\n\n        category may be given as one of the LC_* values.\n\n    \"\"\"\n    if locale and not isinstance(locale, _builtin_str):\n        # convert to string\n        locale = normalize(_build_localename(locale))\n    return _setlocale(category, locale)\n\ndef resetlocale(category=LC_ALL):\n\n    \"\"\" Sets the locale for category to the default setting.\n\n        The default setting is determined by calling\n        getdefaultlocale(). category defaults to LC_ALL.\n\n    \"\"\"\n    _setlocale(category, _build_localename(getdefaultlocale()))\n\nif sys.platform.startswith(\"win\"):\n    # On Win32, this will return the ANSI code page\n    def getpreferredencoding(do_setlocale = True):\n        \"\"\"Return the charset that the user is likely using.\"\"\"\n        if sys.flags.utf8_mode:\n            return 'UTF-8'\n        import _bootlocale\n        return _bootlocale.getpreferredencoding(False)\nelse:\n    # On Unix, if CODESET is available, use that.\n    try:\n        CODESET\n    except NameError:\n        if hasattr(sys, 'getandroidapilevel'):\n            # On Android langinfo.h and CODESET are missing, and UTF-8 is\n            # always used in mbstowcs() and wcstombs().\n            def getpreferredencoding(do_setlocale = True):\n                return 'UTF-8'\n        else:\n            # Fall back to parsing environment variables :-(\n            def getpreferredencoding(do_setlocale = True):\n                \"\"\"Return the charset that the user is likely using,\n                by looking at environment variables.\"\"\"\n                if sys.flags.utf8_mode:\n                    return 'UTF-8'\n                res = getdefaultlocale()[1]\n                if res is None:\n                    # LANG not set, default conservatively to ASCII\n                    res = 'ascii'\n                return res\n    else:\n        def getpreferredencoding(do_setlocale = True):\n            \"\"\"Return the charset that the user is likely using,\n            according to the system configuration.\"\"\"\n            if sys.flags.utf8_mode:\n                return 'UTF-8'\n            import _bootlocale\n            if do_setlocale:\n                oldloc = setlocale(LC_CTYPE)\n                try:\n                    setlocale(LC_CTYPE, \"\")\n                except Error:\n                    pass\n            result = _bootlocale.getpreferredencoding(False)\n            if do_setlocale:\n                setlocale(LC_CTYPE, oldloc)\n            return result\n\n\n### Database\n#\n# The following data was extracted from the locale.alias file which\n# comes with X11 and then hand edited removing the explicit encoding\n# definitions and adding some more aliases. The file is usually\n# available as /usr/lib/X11/locale/locale.alias.\n#\n\n#\n# The local_encoding_alias table maps lowercase encoding alias names\n# to C locale encoding names (case-sensitive). Note that normalize()\n# first looks up the encoding in the encodings.aliases dictionary and\n# then applies this mapping to find the correct C lib name for the\n# encoding.\n#\nlocale_encoding_alias = {\n\n    # Mappings for non-standard encoding names used in locale names\n    '437':                          'C',\n    'c':                            'C',\n    'en':                           'ISO8859-1',\n    'jis':                          'JIS7',\n    'jis7':                         'JIS7',\n    'ajec':                         'eucJP',\n    'koi8c':                        'KOI8-C',\n    'microsoftcp1251':              'CP1251',\n    'microsoftcp1255':              'CP1255',\n    'microsoftcp1256':              'CP1256',\n    '88591':                        'ISO8859-1',\n    '88592':                        'ISO8859-2',\n    '88595':                        'ISO8859-5',\n    '885915':                       'ISO8859-15',\n\n    # Mappings from Python codec names to C lib encoding names\n    'ascii':                        'ISO8859-1',\n    'latin_1':                      'ISO8859-1',\n    'iso8859_1':                    'ISO8859-1',\n    'iso8859_10':                   'ISO8859-10',\n    'iso8859_11':                   'ISO8859-11',\n    'iso8859_13':                   'ISO8859-13',\n    'iso8859_14':                   'ISO8859-14',\n    'iso8859_15':                   'ISO8859-15',\n    'iso8859_16':                   'ISO8859-16',\n    'iso8859_2':                    'ISO8859-2',\n    'iso8859_3':                    'ISO8859-3',\n    'iso8859_4':                    'ISO8859-4',\n    'iso8859_5':                    'ISO8859-5',\n    'iso8859_6':                    'ISO8859-6',\n    'iso8859_7':                    'ISO8859-7',\n    'iso8859_8':                    'ISO8859-8',\n    'iso8859_9':                    'ISO8859-9',\n    'iso2022_jp':                   'JIS7',\n    'shift_jis':                    'SJIS',\n    'tactis':                       'TACTIS',\n    'euc_jp':                       'eucJP',\n    'euc_kr':                       'eucKR',\n    'utf_8':                        'UTF-8',\n    'koi8_r':                       'KOI8-R',\n    'koi8_t':                       'KOI8-T',\n    'koi8_u':                       'KOI8-U',\n    'kz1048':                       'RK1048',\n    'cp1251':                       'CP1251',\n    'cp1255':                       'CP1255',\n    'cp1256':                       'CP1256',\n\n    # XXX This list is still incomplete. If you know more\n    # mappings, please file a bug report. Thanks.\n}\n\nfor k, v in sorted(locale_encoding_alias.items()):\n    k = k.replace('_', '')\n    locale_encoding_alias.setdefault(k, v)\n\n#\n# The locale_alias table maps lowercase alias names to C locale names\n# (case-sensitive). Encodings are always separated from the locale\n# name using a dot ('.'); they should only be given in case the\n# language name is needed to interpret the given encoding alias\n# correctly (CJK codes often have this need).\n#\n# Note that the normalize() function which uses this tables\n# removes '_' and '-' characters from the encoding part of the\n# locale name before doing the lookup. This saves a lot of\n# space in the table.\n#\n# MAL 2004-12-10:\n# Updated alias mapping to most recent locale.alias file\n# from X.org distribution using makelocalealias.py.\n#\n# These are the differences compared to the old mapping (Python 2.4\n# and older):\n#\n#    updated 'bg' -> 'bg_BG.ISO8859-5' to 'bg_BG.CP1251'\n#    updated 'bg_bg' -> 'bg_BG.ISO8859-5' to 'bg_BG.CP1251'\n#    updated 'bulgarian' -> 'bg_BG.ISO8859-5' to 'bg_BG.CP1251'\n#    updated 'cz' -> 'cz_CZ.ISO8859-2' to 'cs_CZ.ISO8859-2'\n#    updated 'cz_cz' -> 'cz_CZ.ISO8859-2' to 'cs_CZ.ISO8859-2'\n#    updated 'czech' -> 'cs_CS.ISO8859-2' to 'cs_CZ.ISO8859-2'\n#    updated 'dutch' -> 'nl_BE.ISO8859-1' to 'nl_NL.ISO8859-1'\n#    updated 'et' -> 'et_EE.ISO8859-4' to 'et_EE.ISO8859-15'\n#    updated 'et_ee' -> 'et_EE.ISO8859-4' to 'et_EE.ISO8859-15'\n#    updated 'fi' -> 'fi_FI.ISO8859-1' to 'fi_FI.ISO8859-15'\n#    updated 'fi_fi' -> 'fi_FI.ISO8859-1' to 'fi_FI.ISO8859-15'\n#    updated 'iw' -> 'iw_IL.ISO8859-8' to 'he_IL.ISO8859-8'\n#    updated 'iw_il' -> 'iw_IL.ISO8859-8' to 'he_IL.ISO8859-8'\n#    updated 'japanese' -> 'ja_JP.SJIS' to 'ja_JP.eucJP'\n#    updated 'lt' -> 'lt_LT.ISO8859-4' to 'lt_LT.ISO8859-13'\n#    updated 'lv' -> 'lv_LV.ISO8859-4' to 'lv_LV.ISO8859-13'\n#    updated 'sl' -> 'sl_CS.ISO8859-2' to 'sl_SI.ISO8859-2'\n#    updated 'slovene' -> 'sl_CS.ISO8859-2' to 'sl_SI.ISO8859-2'\n#    updated 'th_th' -> 'th_TH.TACTIS' to 'th_TH.ISO8859-11'\n#    updated 'zh_cn' -> 'zh_CN.eucCN' to 'zh_CN.gb2312'\n#    updated 'zh_cn.big5' -> 'zh_TW.eucTW' to 'zh_TW.big5'\n#    updated 'zh_tw' -> 'zh_TW.eucTW' to 'zh_TW.big5'\n#\n# MAL 2008-05-30:\n# Updated alias mapping to most recent locale.alias file\n# from X.org distribution using makelocalealias.py.\n#\n# These are the differences compared to the old mapping (Python 2.5\n# and older):\n#\n#    updated 'cs_cs.iso88592' -> 'cs_CZ.ISO8859-2' to 'cs_CS.ISO8859-2'\n#    updated 'serbocroatian' -> 'sh_YU.ISO8859-2' to 'sr_CS.ISO8859-2'\n#    updated 'sh' -> 'sh_YU.ISO8859-2' to 'sr_CS.ISO8859-2'\n#    updated 'sh_hr.iso88592' -> 'sh_HR.ISO8859-2' to 'hr_HR.ISO8859-2'\n#    updated 'sh_sp' -> 'sh_YU.ISO8859-2' to 'sr_CS.ISO8859-2'\n#    updated 'sh_yu' -> 'sh_YU.ISO8859-2' to 'sr_CS.ISO8859-2'\n#    updated 'sp' -> 'sp_YU.ISO8859-5' to 'sr_CS.ISO8859-5'\n#    updated 'sp_yu' -> 'sp_YU.ISO8859-5' to 'sr_CS.ISO8859-5'\n#    updated 'sr' -> 'sr_YU.ISO8859-5' to 'sr_CS.ISO8859-5'\n#    updated 'sr@cyrillic' -> 'sr_YU.ISO8859-5' to 'sr_CS.ISO8859-5'\n#    updated 'sr_sp' -> 'sr_SP.ISO8859-2' to 'sr_CS.ISO8859-2'\n#    updated 'sr_yu' -> 'sr_YU.ISO8859-5' to 'sr_CS.ISO8859-5'\n#    updated 'sr_yu.cp1251@cyrillic' -> 'sr_YU.CP1251' to 'sr_CS.CP1251'\n#    updated 'sr_yu.iso88592' -> 'sr_YU.ISO8859-2' to 'sr_CS.ISO8859-2'\n#    updated 'sr_yu.iso88595' -> 'sr_YU.ISO8859-5' to 'sr_CS.ISO8859-5'\n#    updated 'sr_yu.iso88595@cyrillic' -> 'sr_YU.ISO8859-5' to 'sr_CS.ISO8859-5'\n#    updated 'sr_yu.microsoftcp1251@cyrillic' -> 'sr_YU.CP1251' to 'sr_CS.CP1251'\n#    updated 'sr_yu.utf8@cyrillic' -> 'sr_YU.UTF-8' to 'sr_CS.UTF-8'\n#    updated 'sr_yu@cyrillic' -> 'sr_YU.ISO8859-5' to 'sr_CS.ISO8859-5'\n#\n# AP 2010-04-12:\n# Updated alias mapping to most recent locale.alias file\n# from X.org distribution using makelocalealias.py.\n#\n# These are the differences compared to the old mapping (Python 2.6.5\n# and older):\n#\n#    updated 'ru' -> 'ru_RU.ISO8859-5' to 'ru_RU.UTF-8'\n#    updated 'ru_ru' -> 'ru_RU.ISO8859-5' to 'ru_RU.UTF-8'\n#    updated 'serbocroatian' -> 'sr_CS.ISO8859-2' to 'sr_RS.UTF-8@latin'\n#    updated 'sh' -> 'sr_CS.ISO8859-2' to 'sr_RS.UTF-8@latin'\n#    updated 'sh_yu' -> 'sr_CS.ISO8859-2' to 'sr_RS.UTF-8@latin'\n#    updated 'sr' -> 'sr_CS.ISO8859-5' to 'sr_RS.UTF-8'\n#    updated 'sr@cyrillic' -> 'sr_CS.ISO8859-5' to 'sr_RS.UTF-8'\n#    updated 'sr@latn' -> 'sr_CS.ISO8859-2' to 'sr_RS.UTF-8@latin'\n#    updated 'sr_cs.utf8@latn' -> 'sr_CS.UTF-8' to 'sr_RS.UTF-8@latin'\n#    updated 'sr_cs@latn' -> 'sr_CS.ISO8859-2' to 'sr_RS.UTF-8@latin'\n#    updated 'sr_yu' -> 'sr_CS.ISO8859-5' to 'sr_RS.UTF-8@latin'\n#    updated 'sr_yu.utf8@cyrillic' -> 'sr_CS.UTF-8' to 'sr_RS.UTF-8'\n#    updated 'sr_yu@cyrillic' -> 'sr_CS.ISO8859-5' to 'sr_RS.UTF-8'\n#\n# SS 2013-12-20:\n# Updated alias mapping to most recent locale.alias file\n# from X.org distribution using makelocalealias.py.\n#\n# These are the differences compared to the old mapping (Python 3.3.3\n# and older):\n#\n#    updated 'a3' -> 'a3_AZ.KOI8-C' to 'az_AZ.KOI8-C'\n#    updated 'a3_az' -> 'a3_AZ.KOI8-C' to 'az_AZ.KOI8-C'\n#    updated 'a3_az.koi8c' -> 'a3_AZ.KOI8-C' to 'az_AZ.KOI8-C'\n#    updated 'cs_cs.iso88592' -> 'cs_CS.ISO8859-2' to 'cs_CZ.ISO8859-2'\n#    updated 'hebrew' -> 'iw_IL.ISO8859-8' to 'he_IL.ISO8859-8'\n#    updated 'hebrew.iso88598' -> 'iw_IL.ISO8859-8' to 'he_IL.ISO8859-8'\n#    updated 'sd' -> 'sd_IN@devanagari.UTF-8' to 'sd_IN.UTF-8'\n#    updated 'sr@latn' -> 'sr_RS.UTF-8@latin' to 'sr_CS.UTF-8@latin'\n#    updated 'sr_cs' -> 'sr_RS.UTF-8' to 'sr_CS.UTF-8'\n#    updated 'sr_cs.utf8@latn' -> 'sr_RS.UTF-8@latin' to 'sr_CS.UTF-8@latin'\n#    updated 'sr_cs@latn' -> 'sr_RS.UTF-8@latin' to 'sr_CS.UTF-8@latin'\n#\n# SS 2014-10-01:\n# Updated alias mapping with glibc 2.19 supported locales.\n#\n# SS 2018-05-05:\n# Updated alias mapping with glibc 2.27 supported locales.\n#\n# These are the differences compared to the old mapping (Python 3.6.5\n# and older):\n#\n#    updated 'ca_es@valencia' -> 'ca_ES.ISO8859-15@valencia' to 'ca_ES.UTF-8@valencia'\n#    updated 'kk_kz' -> 'kk_KZ.RK1048' to 'kk_KZ.ptcp154'\n#    updated 'russian' -> 'ru_RU.ISO8859-5' to 'ru_RU.KOI8-R'\n\nlocale_alias = {\n    'a3':                                   'az_AZ.KOI8-C',\n    'a3_az':                                'az_AZ.KOI8-C',\n    'a3_az.koic':                           'az_AZ.KOI8-C',\n    'aa_dj':                                'aa_DJ.ISO8859-1',\n    'aa_er':                                'aa_ER.UTF-8',\n    'aa_et':                                'aa_ET.UTF-8',\n    'af':                                   'af_ZA.ISO8859-1',\n    'af_za':                                'af_ZA.ISO8859-1',\n    'agr_pe':                               'agr_PE.UTF-8',\n    'ak_gh':                                'ak_GH.UTF-8',\n    'am':                                   'am_ET.UTF-8',\n    'am_et':                                'am_ET.UTF-8',\n    'american':                             'en_US.ISO8859-1',\n    'an_es':                                'an_ES.ISO8859-15',\n    'anp_in':                               'anp_IN.UTF-8',\n    'ar':                                   'ar_AA.ISO8859-6',\n    'ar_aa':                                'ar_AA.ISO8859-6',\n    'ar_ae':                                'ar_AE.ISO8859-6',\n    'ar_bh':                                'ar_BH.ISO8859-6',\n    'ar_dz':                                'ar_DZ.ISO8859-6',\n    'ar_eg':                                'ar_EG.ISO8859-6',\n    'ar_in':                                'ar_IN.UTF-8',\n    'ar_iq':                                'ar_IQ.ISO8859-6',\n    'ar_jo':                                'ar_JO.ISO8859-6',\n    'ar_kw':                                'ar_KW.ISO8859-6',\n    'ar_lb':                                'ar_LB.ISO8859-6',\n    'ar_ly':                                'ar_LY.ISO8859-6',\n    'ar_ma':                                'ar_MA.ISO8859-6',\n    'ar_om':                                'ar_OM.ISO8859-6',\n    'ar_qa':                                'ar_QA.ISO8859-6',\n    'ar_sa':                                'ar_SA.ISO8859-6',\n    'ar_sd':                                'ar_SD.ISO8859-6',\n    'ar_ss':                                'ar_SS.UTF-8',\n    'ar_sy':                                'ar_SY.ISO8859-6',\n    'ar_tn':                                'ar_TN.ISO8859-6',\n    'ar_ye':                                'ar_YE.ISO8859-6',\n    'arabic':                               'ar_AA.ISO8859-6',\n    'as':                                   'as_IN.UTF-8',\n    'as_in':                                'as_IN.UTF-8',\n    'ast_es':                               'ast_ES.ISO8859-15',\n    'ayc_pe':                               'ayc_PE.UTF-8',\n    'az':                                   'az_AZ.ISO8859-9E',\n    'az_az':                                'az_AZ.ISO8859-9E',\n    'az_az.iso88599e':                      'az_AZ.ISO8859-9E',\n    'az_ir':                                'az_IR.UTF-8',\n    'be':                                   'be_BY.CP1251',\n    'be@latin':                             'be_BY.UTF-8@latin',\n    'be_bg.utf8':                           'bg_BG.UTF-8',\n    'be_by':                                'be_BY.CP1251',\n    'be_by@latin':                          'be_BY.UTF-8@latin',\n    'bem_zm':                               'bem_ZM.UTF-8',\n    'ber_dz':                               'ber_DZ.UTF-8',\n    'ber_ma':                               'ber_MA.UTF-8',\n    'bg':                                   'bg_BG.CP1251',\n    'bg_bg':                                'bg_BG.CP1251',\n    'bhb_in.utf8':                          'bhb_IN.UTF-8',\n    'bho_in':                               'bho_IN.UTF-8',\n    'bho_np':                               'bho_NP.UTF-8',\n    'bi_vu':                                'bi_VU.UTF-8',\n    'bn_bd':                                'bn_BD.UTF-8',\n    'bn_in':                                'bn_IN.UTF-8',\n    'bo_cn':                                'bo_CN.UTF-8',\n    'bo_in':                                'bo_IN.UTF-8',\n    'bokmal':                               'nb_NO.ISO8859-1',\n    'bokm\\xe5l':                            'nb_NO.ISO8859-1',\n    'br':                                   'br_FR.ISO8859-1',\n    'br_fr':                                'br_FR.ISO8859-1',\n    'brx_in':                               'brx_IN.UTF-8',\n    'bs':                                   'bs_BA.ISO8859-2',\n    'bs_ba':                                'bs_BA.ISO8859-2',\n    'bulgarian':                            'bg_BG.CP1251',\n    'byn_er':                               'byn_ER.UTF-8',\n    'c':                                    'C',\n    'c-french':                             'fr_CA.ISO8859-1',\n    'c.ascii':                              'C',\n    'c.en':                                 'C',\n    'c.iso88591':                           'en_US.ISO8859-1',\n    'c.utf8':                               'en_US.UTF-8',\n    'c_c':                                  'C',\n    'c_c.c':                                'C',\n    'ca':                                   'ca_ES.ISO8859-1',\n    'ca_ad':                                'ca_AD.ISO8859-1',\n    'ca_es':                                'ca_ES.ISO8859-1',\n    'ca_es@valencia':                       'ca_ES.UTF-8@valencia',\n    'ca_fr':                                'ca_FR.ISO8859-1',\n    'ca_it':                                'ca_IT.ISO8859-1',\n    'catalan':                              'ca_ES.ISO8859-1',\n    'ce_ru':                                'ce_RU.UTF-8',\n    'cextend':                              'en_US.ISO8859-1',\n    'chinese-s':                            'zh_CN.eucCN',\n    'chinese-t':                            'zh_TW.eucTW',\n    'chr_us':                               'chr_US.UTF-8',\n    'ckb_iq':                               'ckb_IQ.UTF-8',\n    'cmn_tw':                               'cmn_TW.UTF-8',\n    'crh_ua':                               'crh_UA.UTF-8',\n    'croatian':                             'hr_HR.ISO8859-2',\n    'cs':                                   'cs_CZ.ISO8859-2',\n    'cs_cs':                                'cs_CZ.ISO8859-2',\n    'cs_cz':                                'cs_CZ.ISO8859-2',\n    'csb_pl':                               'csb_PL.UTF-8',\n    'cv_ru':                                'cv_RU.UTF-8',\n    'cy':                                   'cy_GB.ISO8859-1',\n    'cy_gb':                                'cy_GB.ISO8859-1',\n    'cz':                                   'cs_CZ.ISO8859-2',\n    'cz_cz':                                'cs_CZ.ISO8859-2',\n    'czech':                                'cs_CZ.ISO8859-2',\n    'da':                                   'da_DK.ISO8859-1',\n    'da_dk':                                'da_DK.ISO8859-1',\n    'danish':                               'da_DK.ISO8859-1',\n    'dansk':                                'da_DK.ISO8859-1',\n    'de':                                   'de_DE.ISO8859-1',\n    'de_at':                                'de_AT.ISO8859-1',\n    'de_be':                                'de_BE.ISO8859-1',\n    'de_ch':                                'de_CH.ISO8859-1',\n    'de_de':                                'de_DE.ISO8859-1',\n    'de_it':                                'de_IT.ISO8859-1',\n    'de_li.utf8':                           'de_LI.UTF-8',\n    'de_lu':                                'de_LU.ISO8859-1',\n    'deutsch':                              'de_DE.ISO8859-1',\n    'doi_in':                               'doi_IN.UTF-8',\n    'dutch':                                'nl_NL.ISO8859-1',\n    'dutch.iso88591':                       'nl_BE.ISO8859-1',\n    'dv_mv':                                'dv_MV.UTF-8',\n    'dz_bt':                                'dz_BT.UTF-8',\n    'ee':                                   'ee_EE.ISO8859-4',\n    'ee_ee':                                'ee_EE.ISO8859-4',\n    'eesti':                                'et_EE.ISO8859-1',\n    'el':                                   'el_GR.ISO8859-7',\n    'el_cy':                                'el_CY.ISO8859-7',\n    'el_gr':                                'el_GR.ISO8859-7',\n    'el_gr@euro':                           'el_GR.ISO8859-15',\n    'en':                                   'en_US.ISO8859-1',\n    'en_ag':                                'en_AG.UTF-8',\n    'en_au':                                'en_AU.ISO8859-1',\n    'en_be':                                'en_BE.ISO8859-1',\n    'en_bw':                                'en_BW.ISO8859-1',\n    'en_ca':                                'en_CA.ISO8859-1',\n    'en_dk':                                'en_DK.ISO8859-1',\n    'en_dl.utf8':                           'en_DL.UTF-8',\n    'en_gb':                                'en_GB.ISO8859-1',\n    'en_hk':                                'en_HK.ISO8859-1',\n    'en_ie':                                'en_IE.ISO8859-1',\n    'en_il':                                'en_IL.UTF-8',\n    'en_in':                                'en_IN.ISO8859-1',\n    'en_ng':                                'en_NG.UTF-8',\n    'en_nz':                                'en_NZ.ISO8859-1',\n    'en_ph':                                'en_PH.ISO8859-1',\n    'en_sc.utf8':                           'en_SC.UTF-8',\n    'en_sg':                                'en_SG.ISO8859-1',\n    'en_uk':                                'en_GB.ISO8859-1',\n    'en_us':                                'en_US.ISO8859-1',\n    'en_us@euro@euro':                      'en_US.ISO8859-15',\n    'en_za':                                'en_ZA.ISO8859-1',\n    'en_zm':                                'en_ZM.UTF-8',\n    'en_zw':                                'en_ZW.ISO8859-1',\n    'en_zw.utf8':                           'en_ZS.UTF-8',\n    'eng_gb':                               'en_GB.ISO8859-1',\n    'english':                              'en_EN.ISO8859-1',\n    'english.iso88591':                     'en_US.ISO8859-1',\n    'english_uk':                           'en_GB.ISO8859-1',\n    'english_united-states':                'en_US.ISO8859-1',\n    'english_united-states.437':            'C',\n    'english_us':                           'en_US.ISO8859-1',\n    'eo':                                   'eo_XX.ISO8859-3',\n    'eo.utf8':                              'eo.UTF-8',\n    'eo_eo':                                'eo_EO.ISO8859-3',\n    'eo_us.utf8':                           'eo_US.UTF-8',\n    'eo_xx':                                'eo_XX.ISO8859-3',\n    'es':                                   'es_ES.ISO8859-1',\n    'es_ar':                                'es_AR.ISO8859-1',\n    'es_bo':                                'es_BO.ISO8859-1',\n    'es_cl':                                'es_CL.ISO8859-1',\n    'es_co':                                'es_CO.ISO8859-1',\n    'es_cr':                                'es_CR.ISO8859-1',\n    'es_cu':                                'es_CU.UTF-8',\n    'es_do':                                'es_DO.ISO8859-1',\n    'es_ec':                                'es_EC.ISO8859-1',\n    'es_es':                                'es_ES.ISO8859-1',\n    'es_gt':                                'es_GT.ISO8859-1',\n    'es_hn':                                'es_HN.ISO8859-1',\n    'es_mx':                                'es_MX.ISO8859-1',\n    'es_ni':                                'es_NI.ISO8859-1',\n    'es_pa':                                'es_PA.ISO8859-1',\n    'es_pe':                                'es_PE.ISO8859-1',\n    'es_pr':                                'es_PR.ISO8859-1',\n    'es_py':                                'es_PY.ISO8859-1',\n    'es_sv':                                'es_SV.ISO8859-1',\n    'es_us':                                'es_US.ISO8859-1',\n    'es_uy':                                'es_UY.ISO8859-1',\n    'es_ve':                                'es_VE.ISO8859-1',\n    'estonian':                             'et_EE.ISO8859-1',\n    'et':                                   'et_EE.ISO8859-15',\n    'et_ee':                                'et_EE.ISO8859-15',\n    'eu':                                   'eu_ES.ISO8859-1',\n    'eu_es':                                'eu_ES.ISO8859-1',\n    'eu_fr':                                'eu_FR.ISO8859-1',\n    'fa':                                   'fa_IR.UTF-8',\n    'fa_ir':                                'fa_IR.UTF-8',\n    'fa_ir.isiri3342':                      'fa_IR.ISIRI-3342',\n    'ff_sn':                                'ff_SN.UTF-8',\n    'fi':                                   'fi_FI.ISO8859-15',\n    'fi_fi':                                'fi_FI.ISO8859-15',\n    'fil_ph':                               'fil_PH.UTF-8',\n    'finnish':                              'fi_FI.ISO8859-1',\n    'fo':                                   'fo_FO.ISO8859-1',\n    'fo_fo':                                'fo_FO.ISO8859-1',\n    'fr':                                   'fr_FR.ISO8859-1',\n    'fr_be':                                'fr_BE.ISO8859-1',\n    'fr_ca':                                'fr_CA.ISO8859-1',\n    'fr_ch':                                'fr_CH.ISO8859-1',\n    'fr_fr':                                'fr_FR.ISO8859-1',\n    'fr_lu':                                'fr_LU.ISO8859-1',\n    'fran\\xe7ais':                          'fr_FR.ISO8859-1',\n    'fre_fr':                               'fr_FR.ISO8859-1',\n    'french':                               'fr_FR.ISO8859-1',\n    'french.iso88591':                      'fr_CH.ISO8859-1',\n    'french_france':                        'fr_FR.ISO8859-1',\n    'fur_it':                               'fur_IT.UTF-8',\n    'fy_de':                                'fy_DE.UTF-8',\n    'fy_nl':                                'fy_NL.UTF-8',\n    'ga':                                   'ga_IE.ISO8859-1',\n    'ga_ie':                                'ga_IE.ISO8859-1',\n    'galego':                               'gl_ES.ISO8859-1',\n    'galician':                             'gl_ES.ISO8859-1',\n    'gd':                                   'gd_GB.ISO8859-1',\n    'gd_gb':                                'gd_GB.ISO8859-1',\n    'ger_de':                               'de_DE.ISO8859-1',\n    'german':                               'de_DE.ISO8859-1',\n    'german.iso88591':                      'de_CH.ISO8859-1',\n    'german_germany':                       'de_DE.ISO8859-1',\n    'gez_er':                               'gez_ER.UTF-8',\n    'gez_et':                               'gez_ET.UTF-8',\n    'gl':                                   'gl_ES.ISO8859-1',\n    'gl_es':                                'gl_ES.ISO8859-1',\n    'greek':                                'el_GR.ISO8859-7',\n    'gu_in':                                'gu_IN.UTF-8',\n    'gv':                                   'gv_GB.ISO8859-1',\n    'gv_gb':                                'gv_GB.ISO8859-1',\n    'ha_ng':                                'ha_NG.UTF-8',\n    'hak_tw':                               'hak_TW.UTF-8',\n    'he':                                   'he_IL.ISO8859-8',\n    'he_il':                                'he_IL.ISO8859-8',\n    'hebrew':                               'he_IL.ISO8859-8',\n    'hi':                                   'hi_IN.ISCII-DEV',\n    'hi_in':                                'hi_IN.ISCII-DEV',\n    'hi_in.isciidev':                       'hi_IN.ISCII-DEV',\n    'hif_fj':                               'hif_FJ.UTF-8',\n    'hne':                                  'hne_IN.UTF-8',\n    'hne_in':                               'hne_IN.UTF-8',\n    'hr':                                   'hr_HR.ISO8859-2',\n    'hr_hr':                                'hr_HR.ISO8859-2',\n    'hrvatski':                             'hr_HR.ISO8859-2',\n    'hsb_de':                               'hsb_DE.ISO8859-2',\n    'ht_ht':                                'ht_HT.UTF-8',\n    'hu':                                   'hu_HU.ISO8859-2',\n    'hu_hu':                                'hu_HU.ISO8859-2',\n    'hungarian':                            'hu_HU.ISO8859-2',\n    'hy_am':                                'hy_AM.UTF-8',\n    'hy_am.armscii8':                       'hy_AM.ARMSCII_8',\n    'ia':                                   'ia.UTF-8',\n    'ia_fr':                                'ia_FR.UTF-8',\n    'icelandic':                            'is_IS.ISO8859-1',\n    'id':                                   'id_ID.ISO8859-1',\n    'id_id':                                'id_ID.ISO8859-1',\n    'ig_ng':                                'ig_NG.UTF-8',\n    'ik_ca':                                'ik_CA.UTF-8',\n    'in':                                   'id_ID.ISO8859-1',\n    'in_id':                                'id_ID.ISO8859-1',\n    'is':                                   'is_IS.ISO8859-1',\n    'is_is':                                'is_IS.ISO8859-1',\n    'iso-8859-1':                           'en_US.ISO8859-1',\n    'iso-8859-15':                          'en_US.ISO8859-15',\n    'iso8859-1':                            'en_US.ISO8859-1',\n    'iso8859-15':                           'en_US.ISO8859-15',\n    'iso_8859_1':                           'en_US.ISO8859-1',\n    'iso_8859_15':                          'en_US.ISO8859-15',\n    'it':                                   'it_IT.ISO8859-1',\n    'it_ch':                                'it_CH.ISO8859-1',\n    'it_it':                                'it_IT.ISO8859-1',\n    'italian':                              'it_IT.ISO8859-1',\n    'iu':                                   'iu_CA.NUNACOM-8',\n    'iu_ca':                                'iu_CA.NUNACOM-8',\n    'iu_ca.nunacom8':                       'iu_CA.NUNACOM-8',\n    'iw':                                   'he_IL.ISO8859-8',\n    'iw_il':                                'he_IL.ISO8859-8',\n    'iw_il.utf8':                           'iw_IL.UTF-8',\n    'ja':                                   'ja_JP.eucJP',\n    'ja_jp':                                'ja_JP.eucJP',\n    'ja_jp.euc':                            'ja_JP.eucJP',\n    'ja_jp.mscode':                         'ja_JP.SJIS',\n    'ja_jp.pck':                            'ja_JP.SJIS',\n    'japan':                                'ja_JP.eucJP',\n    'japanese':                             'ja_JP.eucJP',\n    'japanese-euc':                         'ja_JP.eucJP',\n    'japanese.euc':                         'ja_JP.eucJP',\n    'jp_jp':                                'ja_JP.eucJP',\n    'ka':                                   'ka_GE.GEORGIAN-ACADEMY',\n    'ka_ge':                                'ka_GE.GEORGIAN-ACADEMY',\n    'ka_ge.georgianacademy':                'ka_GE.GEORGIAN-ACADEMY',\n    'ka_ge.georgianps':                     'ka_GE.GEORGIAN-PS',\n    'ka_ge.georgianrs':                     'ka_GE.GEORGIAN-ACADEMY',\n    'kab_dz':                               'kab_DZ.UTF-8',\n    'kk_kz':                                'kk_KZ.ptcp154',\n    'kl':                                   'kl_GL.ISO8859-1',\n    'kl_gl':                                'kl_GL.ISO8859-1',\n    'km_kh':                                'km_KH.UTF-8',\n    'kn':                                   'kn_IN.UTF-8',\n    'kn_in':                                'kn_IN.UTF-8',\n    'ko':                                   'ko_KR.eucKR',\n    'ko_kr':                                'ko_KR.eucKR',\n    'ko_kr.euc':                            'ko_KR.eucKR',\n    'kok_in':                               'kok_IN.UTF-8',\n    'korean':                               'ko_KR.eucKR',\n    'korean.euc':                           'ko_KR.eucKR',\n    'ks':                                   'ks_IN.UTF-8',\n    'ks_in':                                'ks_IN.UTF-8',\n    'ks_in@devanagari.utf8':                'ks_IN.UTF-8@devanagari',\n    'ku_tr':                                'ku_TR.ISO8859-9',\n    'kw':                                   'kw_GB.ISO8859-1',\n    'kw_gb':                                'kw_GB.ISO8859-1',\n    'ky':                                   'ky_KG.UTF-8',\n    'ky_kg':                                'ky_KG.UTF-8',\n    'lb_lu':                                'lb_LU.UTF-8',\n    'lg_ug':                                'lg_UG.ISO8859-10',\n    'li_be':                                'li_BE.UTF-8',\n    'li_nl':                                'li_NL.UTF-8',\n    'lij_it':                               'lij_IT.UTF-8',\n    'lithuanian':                           'lt_LT.ISO8859-13',\n    'ln_cd':                                'ln_CD.UTF-8',\n    'lo':                                   'lo_LA.MULELAO-1',\n    'lo_la':                                'lo_LA.MULELAO-1',\n    'lo_la.cp1133':                         'lo_LA.IBM-CP1133',\n    'lo_la.ibmcp1133':                      'lo_LA.IBM-CP1133',\n    'lo_la.mulelao1':                       'lo_LA.MULELAO-1',\n    'lt':                                   'lt_LT.ISO8859-13',\n    'lt_lt':                                'lt_LT.ISO8859-13',\n    'lv':                                   'lv_LV.ISO8859-13',\n    'lv_lv':                                'lv_LV.ISO8859-13',\n    'lzh_tw':                               'lzh_TW.UTF-8',\n    'mag_in':                               'mag_IN.UTF-8',\n    'mai':                                  'mai_IN.UTF-8',\n    'mai_in':                               'mai_IN.UTF-8',\n    'mai_np':                               'mai_NP.UTF-8',\n    'mfe_mu':                               'mfe_MU.UTF-8',\n    'mg_mg':                                'mg_MG.ISO8859-15',\n    'mhr_ru':                               'mhr_RU.UTF-8',\n    'mi':                                   'mi_NZ.ISO8859-1',\n    'mi_nz':                                'mi_NZ.ISO8859-1',\n    'miq_ni':                               'miq_NI.UTF-8',\n    'mjw_in':                               'mjw_IN.UTF-8',\n    'mk':                                   'mk_MK.ISO8859-5',\n    'mk_mk':                                'mk_MK.ISO8859-5',\n    'ml':                                   'ml_IN.UTF-8',\n    'ml_in':                                'ml_IN.UTF-8',\n    'mn_mn':                                'mn_MN.UTF-8',\n    'mni_in':                               'mni_IN.UTF-8',\n    'mr':                                   'mr_IN.UTF-8',\n    'mr_in':                                'mr_IN.UTF-8',\n    'ms':                                   'ms_MY.ISO8859-1',\n    'ms_my':                                'ms_MY.ISO8859-1',\n    'mt':                                   'mt_MT.ISO8859-3',\n    'mt_mt':                                'mt_MT.ISO8859-3',\n    'my_mm':                                'my_MM.UTF-8',\n    'nan_tw':                               'nan_TW.UTF-8',\n    'nb':                                   'nb_NO.ISO8859-1',\n    'nb_no':                                'nb_NO.ISO8859-1',\n    'nds_de':                               'nds_DE.UTF-8',\n    'nds_nl':                               'nds_NL.UTF-8',\n    'ne_np':                                'ne_NP.UTF-8',\n    'nhn_mx':                               'nhn_MX.UTF-8',\n    'niu_nu':                               'niu_NU.UTF-8',\n    'niu_nz':                               'niu_NZ.UTF-8',\n    'nl':                                   'nl_NL.ISO8859-1',\n    'nl_aw':                                'nl_AW.UTF-8',\n    'nl_be':                                'nl_BE.ISO8859-1',\n    'nl_nl':                                'nl_NL.ISO8859-1',\n    'nn':                                   'nn_NO.ISO8859-1',\n    'nn_no':                                'nn_NO.ISO8859-1',\n    'no':                                   'no_NO.ISO8859-1',\n    'no@nynorsk':                           'ny_NO.ISO8859-1',\n    'no_no':                                'no_NO.ISO8859-1',\n    'no_no.iso88591@bokmal':                'no_NO.ISO8859-1',\n    'no_no.iso88591@nynorsk':               'no_NO.ISO8859-1',\n    'norwegian':                            'no_NO.ISO8859-1',\n    'nr':                                   'nr_ZA.ISO8859-1',\n    'nr_za':                                'nr_ZA.ISO8859-1',\n    'nso':                                  'nso_ZA.ISO8859-15',\n    'nso_za':                               'nso_ZA.ISO8859-15',\n    'ny':                                   'ny_NO.ISO8859-1',\n    'ny_no':                                'ny_NO.ISO8859-1',\n    'nynorsk':                              'nn_NO.ISO8859-1',\n    'oc':                                   'oc_FR.ISO8859-1',\n    'oc_fr':                                'oc_FR.ISO8859-1',\n    'om_et':                                'om_ET.UTF-8',\n    'om_ke':                                'om_KE.ISO8859-1',\n    'or':                                   'or_IN.UTF-8',\n    'or_in':                                'or_IN.UTF-8',\n    'os_ru':                                'os_RU.UTF-8',\n    'pa':                                   'pa_IN.UTF-8',\n    'pa_in':                                'pa_IN.UTF-8',\n    'pa_pk':                                'pa_PK.UTF-8',\n    'pap_an':                               'pap_AN.UTF-8',\n    'pap_aw':                               'pap_AW.UTF-8',\n    'pap_cw':                               'pap_CW.UTF-8',\n    'pd':                                   'pd_US.ISO8859-1',\n    'pd_de':                                'pd_DE.ISO8859-1',\n    'pd_us':                                'pd_US.ISO8859-1',\n    'ph':                                   'ph_PH.ISO8859-1',\n    'ph_ph':                                'ph_PH.ISO8859-1',\n    'pl':                                   'pl_PL.ISO8859-2',\n    'pl_pl':                                'pl_PL.ISO8859-2',\n    'polish':                               'pl_PL.ISO8859-2',\n    'portuguese':                           'pt_PT.ISO8859-1',\n    'portuguese_brazil':                    'pt_BR.ISO8859-1',\n    'posix':                                'C',\n    'posix-utf2':                           'C',\n    'pp':                                   'pp_AN.ISO8859-1',\n    'pp_an':                                'pp_AN.ISO8859-1',\n    'ps_af':                                'ps_AF.UTF-8',\n    'pt':                                   'pt_PT.ISO8859-1',\n    'pt_br':                                'pt_BR.ISO8859-1',\n    'pt_pt':                                'pt_PT.ISO8859-1',\n    'quz_pe':                               'quz_PE.UTF-8',\n    'raj_in':                               'raj_IN.UTF-8',\n    'ro':                                   'ro_RO.ISO8859-2',\n    'ro_ro':                                'ro_RO.ISO8859-2',\n    'romanian':                             'ro_RO.ISO8859-2',\n    'ru':                                   'ru_RU.UTF-8',\n    'ru_ru':                                'ru_RU.UTF-8',\n    'ru_ua':                                'ru_UA.KOI8-U',\n    'rumanian':                             'ro_RO.ISO8859-2',\n    'russian':                              'ru_RU.KOI8-R',\n    'rw':                                   'rw_RW.ISO8859-1',\n    'rw_rw':                                'rw_RW.ISO8859-1',\n    'sa_in':                                'sa_IN.UTF-8',\n    'sat_in':                               'sat_IN.UTF-8',\n    'sc_it':                                'sc_IT.UTF-8',\n    'sd':                                   'sd_IN.UTF-8',\n    'sd_in':                                'sd_IN.UTF-8',\n    'sd_in@devanagari.utf8':                'sd_IN.UTF-8@devanagari',\n    'sd_pk':                                'sd_PK.UTF-8',\n    'se_no':                                'se_NO.UTF-8',\n    'serbocroatian':                        'sr_RS.UTF-8@latin',\n    'sgs_lt':                               'sgs_LT.UTF-8',\n    'sh':                                   'sr_RS.UTF-8@latin',\n    'sh_ba.iso88592@bosnia':                'sr_CS.ISO8859-2',\n    'sh_hr':                                'sh_HR.ISO8859-2',\n    'sh_hr.iso88592':                       'hr_HR.ISO8859-2',\n    'sh_sp':                                'sr_CS.ISO8859-2',\n    'sh_yu':                                'sr_RS.UTF-8@latin',\n    'shn_mm':                               'shn_MM.UTF-8',\n    'shs_ca':                               'shs_CA.UTF-8',\n    'si':                                   'si_LK.UTF-8',\n    'si_lk':                                'si_LK.UTF-8',\n    'sid_et':                               'sid_ET.UTF-8',\n    'sinhala':                              'si_LK.UTF-8',\n    'sk':                                   'sk_SK.ISO8859-2',\n    'sk_sk':                                'sk_SK.ISO8859-2',\n    'sl':                                   'sl_SI.ISO8859-2',\n    'sl_cs':                                'sl_CS.ISO8859-2',\n    'sl_si':                                'sl_SI.ISO8859-2',\n    'slovak':                               'sk_SK.ISO8859-2',\n    'slovene':                              'sl_SI.ISO8859-2',\n    'slovenian':                            'sl_SI.ISO8859-2',\n    'sm_ws':                                'sm_WS.UTF-8',\n    'so_dj':                                'so_DJ.ISO8859-1',\n    'so_et':                                'so_ET.UTF-8',\n    'so_ke':                                'so_KE.ISO8859-1',\n    'so_so':                                'so_SO.ISO8859-1',\n    'sp':                                   'sr_CS.ISO8859-5',\n    'sp_yu':                                'sr_CS.ISO8859-5',\n    'spanish':                              'es_ES.ISO8859-1',\n    'spanish_spain':                        'es_ES.ISO8859-1',\n    'sq':                                   'sq_AL.ISO8859-2',\n    'sq_al':                                'sq_AL.ISO8859-2',\n    'sq_mk':                                'sq_MK.UTF-8',\n    'sr':                                   'sr_RS.UTF-8',\n    'sr@cyrillic':                          'sr_RS.UTF-8',\n    'sr@latn':                              'sr_CS.UTF-8@latin',\n    'sr_cs':                                'sr_CS.UTF-8',\n    'sr_cs.iso88592@latn':                  'sr_CS.ISO8859-2',\n    'sr_cs@latn':                           'sr_CS.UTF-8@latin',\n    'sr_me':                                'sr_ME.UTF-8',\n    'sr_rs':                                'sr_RS.UTF-8',\n    'sr_rs@latn':                           'sr_RS.UTF-8@latin',\n    'sr_sp':                                'sr_CS.ISO8859-2',\n    'sr_yu':                                'sr_RS.UTF-8@latin',\n    'sr_yu.cp1251@cyrillic':                'sr_CS.CP1251',\n    'sr_yu.iso88592':                       'sr_CS.ISO8859-2',\n    'sr_yu.iso88595':                       'sr_CS.ISO8859-5',\n    'sr_yu.iso88595@cyrillic':              'sr_CS.ISO8859-5',\n    'sr_yu.microsoftcp1251@cyrillic':       'sr_CS.CP1251',\n    'sr_yu.utf8':                           'sr_RS.UTF-8',\n    'sr_yu.utf8@cyrillic':                  'sr_RS.UTF-8',\n    'sr_yu@cyrillic':                       'sr_RS.UTF-8',\n    'ss':                                   'ss_ZA.ISO8859-1',\n    'ss_za':                                'ss_ZA.ISO8859-1',\n    'st':                                   'st_ZA.ISO8859-1',\n    'st_za':                                'st_ZA.ISO8859-1',\n    'sv':                                   'sv_SE.ISO8859-1',\n    'sv_fi':                                'sv_FI.ISO8859-1',\n    'sv_se':                                'sv_SE.ISO8859-1',\n    'sw_ke':                                'sw_KE.UTF-8',\n    'sw_tz':                                'sw_TZ.UTF-8',\n    'swedish':                              'sv_SE.ISO8859-1',\n    'szl_pl':                               'szl_PL.UTF-8',\n    'ta':                                   'ta_IN.TSCII-0',\n    'ta_in':                                'ta_IN.TSCII-0',\n    'ta_in.tscii':                          'ta_IN.TSCII-0',\n    'ta_in.tscii0':                         'ta_IN.TSCII-0',\n    'ta_lk':                                'ta_LK.UTF-8',\n    'tcy_in.utf8':                          'tcy_IN.UTF-8',\n    'te':                                   'te_IN.UTF-8',\n    'te_in':                                'te_IN.UTF-8',\n    'tg':                                   'tg_TJ.KOI8-C',\n    'tg_tj':                                'tg_TJ.KOI8-C',\n    'th':                                   'th_TH.ISO8859-11',\n    'th_th':                                'th_TH.ISO8859-11',\n    'th_th.tactis':                         'th_TH.TIS620',\n    'th_th.tis620':                         'th_TH.TIS620',\n    'thai':                                 'th_TH.ISO8859-11',\n    'the_np':                               'the_NP.UTF-8',\n    'ti_er':                                'ti_ER.UTF-8',\n    'ti_et':                                'ti_ET.UTF-8',\n    'tig_er':                               'tig_ER.UTF-8',\n    'tk_tm':                                'tk_TM.UTF-8',\n    'tl':                                   'tl_PH.ISO8859-1',\n    'tl_ph':                                'tl_PH.ISO8859-1',\n    'tn':                                   'tn_ZA.ISO8859-15',\n    'tn_za':                                'tn_ZA.ISO8859-15',\n    'to_to':                                'to_TO.UTF-8',\n    'tpi_pg':                               'tpi_PG.UTF-8',\n    'tr':                                   'tr_TR.ISO8859-9',\n    'tr_cy':                                'tr_CY.ISO8859-9',\n    'tr_tr':                                'tr_TR.ISO8859-9',\n    'ts':                                   'ts_ZA.ISO8859-1',\n    'ts_za':                                'ts_ZA.ISO8859-1',\n    'tt':                                   'tt_RU.TATAR-CYR',\n    'tt_ru':                                'tt_RU.TATAR-CYR',\n    'tt_ru.tatarcyr':                       'tt_RU.TATAR-CYR',\n    'tt_ru@iqtelif':                        'tt_RU.UTF-8@iqtelif',\n    'turkish':                              'tr_TR.ISO8859-9',\n    'ug_cn':                                'ug_CN.UTF-8',\n    'uk':                                   'uk_UA.KOI8-U',\n    'uk_ua':                                'uk_UA.KOI8-U',\n    'univ':                                 'en_US.utf',\n    'universal':                            'en_US.utf',\n    'universal.utf8@ucs4':                  'en_US.UTF-8',\n    'unm_us':                               'unm_US.UTF-8',\n    'ur':                                   'ur_PK.CP1256',\n    'ur_in':                                'ur_IN.UTF-8',\n    'ur_pk':                                'ur_PK.CP1256',\n    'uz':                                   'uz_UZ.UTF-8',\n    'uz_uz':                                'uz_UZ.UTF-8',\n    'uz_uz@cyrillic':                       'uz_UZ.UTF-8',\n    've':                                   've_ZA.UTF-8',\n    've_za':                                've_ZA.UTF-8',\n    'vi':                                   'vi_VN.TCVN',\n    'vi_vn':                                'vi_VN.TCVN',\n    'vi_vn.tcvn':                           'vi_VN.TCVN',\n    'vi_vn.tcvn5712':                       'vi_VN.TCVN',\n    'vi_vn.viscii':                         'vi_VN.VISCII',\n    'vi_vn.viscii111':                      'vi_VN.VISCII',\n    'wa':                                   'wa_BE.ISO8859-1',\n    'wa_be':                                'wa_BE.ISO8859-1',\n    'wae_ch':                               'wae_CH.UTF-8',\n    'wal_et':                               'wal_ET.UTF-8',\n    'wo_sn':                                'wo_SN.UTF-8',\n    'xh':                                   'xh_ZA.ISO8859-1',\n    'xh_za':                                'xh_ZA.ISO8859-1',\n    'yi':                                   'yi_US.CP1255',\n    'yi_us':                                'yi_US.CP1255',\n    'yo_ng':                                'yo_NG.UTF-8',\n    'yue_hk':                               'yue_HK.UTF-8',\n    'yuw_pg':                               'yuw_PG.UTF-8',\n    'zh':                                   'zh_CN.eucCN',\n    'zh_cn':                                'zh_CN.gb2312',\n    'zh_cn.big5':                           'zh_TW.big5',\n    'zh_cn.euc':                            'zh_CN.eucCN',\n    'zh_hk':                                'zh_HK.big5hkscs',\n    'zh_hk.big5hk':                         'zh_HK.big5hkscs',\n    'zh_sg':                                'zh_SG.GB2312',\n    'zh_sg.gbk':                            'zh_SG.GBK',\n    'zh_tw':                                'zh_TW.big5',\n    'zh_tw.euc':                            'zh_TW.eucTW',\n    'zh_tw.euctw':                          'zh_TW.eucTW',\n    'zu':                                   'zu_ZA.ISO8859-1',\n    'zu_za':                                'zu_ZA.ISO8859-1',\n}\n\n#\n# This maps Windows language identifiers to locale strings.\n#\n# This list has been updated from\n# http://msdn.microsoft.com/library/default.asp?url=/library/en-us/intl/nls_238z.asp\n# to include every locale up to Windows Vista.\n#\n# NOTE: this mapping is incomplete.  If your language is missing, please\n# submit a bug report to the Python bug tracker at http://bugs.python.org/\n# Make sure you include the missing language identifier and the suggested\n# locale code.\n#\n\nwindows_locale = {\n    0x0436: \"af_ZA\", # Afrikaans\n    0x041c: \"sq_AL\", # Albanian\n    0x0484: \"gsw_FR\",# Alsatian - France\n    0x045e: \"am_ET\", # Amharic - Ethiopia\n    0x0401: \"ar_SA\", # Arabic - Saudi Arabia\n    0x0801: \"ar_IQ\", # Arabic - Iraq\n    0x0c01: \"ar_EG\", # Arabic - Egypt\n    0x1001: \"ar_LY\", # Arabic - Libya\n    0x1401: \"ar_DZ\", # Arabic - Algeria\n    0x1801: \"ar_MA\", # Arabic - Morocco\n    0x1c01: \"ar_TN\", # Arabic - Tunisia\n    0x2001: \"ar_OM\", # Arabic - Oman\n    0x2401: \"ar_YE\", # Arabic - Yemen\n    0x2801: \"ar_SY\", # Arabic - Syria\n    0x2c01: \"ar_JO\", # Arabic - Jordan\n    0x3001: \"ar_LB\", # Arabic - Lebanon\n    0x3401: \"ar_KW\", # Arabic - Kuwait\n    0x3801: \"ar_AE\", # Arabic - United Arab Emirates\n    0x3c01: \"ar_BH\", # Arabic - Bahrain\n    0x4001: \"ar_QA\", # Arabic - Qatar\n    0x042b: \"hy_AM\", # Armenian\n    0x044d: \"as_IN\", # Assamese - India\n    0x042c: \"az_AZ\", # Azeri - Latin\n    0x082c: \"az_AZ\", # Azeri - Cyrillic\n    0x046d: \"ba_RU\", # Bashkir\n    0x042d: \"eu_ES\", # Basque - Russia\n    0x0423: \"be_BY\", # Belarusian\n    0x0445: \"bn_IN\", # Begali\n    0x201a: \"bs_BA\", # Bosnian - Cyrillic\n    0x141a: \"bs_BA\", # Bosnian - Latin\n    0x047e: \"br_FR\", # Breton - France\n    0x0402: \"bg_BG\", # Bulgarian\n#    0x0455: \"my_MM\", # Burmese - Not supported\n    0x0403: \"ca_ES\", # Catalan\n    0x0004: \"zh_CHS\",# Chinese - Simplified\n    0x0404: \"zh_TW\", # Chinese - Taiwan\n    0x0804: \"zh_CN\", # Chinese - PRC\n    0x0c04: \"zh_HK\", # Chinese - Hong Kong S.A.R.\n    0x1004: \"zh_SG\", # Chinese - Singapore\n    0x1404: \"zh_MO\", # Chinese - Macao S.A.R.\n    0x7c04: \"zh_CHT\",# Chinese - Traditional\n    0x0483: \"co_FR\", # Corsican - France\n    0x041a: \"hr_HR\", # Croatian\n    0x101a: \"hr_BA\", # Croatian - Bosnia\n    0x0405: \"cs_CZ\", # Czech\n    0x0406: \"da_DK\", # Danish\n    0x048c: \"gbz_AF\",# Dari - Afghanistan\n    0x0465: \"div_MV\",# Divehi - Maldives\n    0x0413: \"nl_NL\", # Dutch - The Netherlands\n    0x0813: \"nl_BE\", # Dutch - Belgium\n    0x0409: \"en_US\", # English - United States\n    0x0809: \"en_GB\", # English - United Kingdom\n    0x0c09: \"en_AU\", # English - Australia\n    0x1009: \"en_CA\", # English - Canada\n    0x1409: \"en_NZ\", # English - New Zealand\n    0x1809: \"en_IE\", # English - Ireland\n    0x1c09: \"en_ZA\", # English - South Africa\n    0x2009: \"en_JA\", # English - Jamaica\n    0x2409: \"en_CB\", # English - Caribbean\n    0x2809: \"en_BZ\", # English - Belize\n    0x2c09: \"en_TT\", # English - Trinidad\n    0x3009: \"en_ZW\", # English - Zimbabwe\n    0x3409: \"en_PH\", # English - Philippines\n    0x4009: \"en_IN\", # English - India\n    0x4409: \"en_MY\", # English - Malaysia\n    0x4809: \"en_IN\", # English - Singapore\n    0x0425: \"et_EE\", # Estonian\n    0x0438: \"fo_FO\", # Faroese\n    0x0464: \"fil_PH\",# Filipino\n    0x040b: \"fi_FI\", # Finnish\n    0x040c: \"fr_FR\", # French - France\n    0x080c: \"fr_BE\", # French - Belgium\n    0x0c0c: \"fr_CA\", # French - Canada\n    0x100c: \"fr_CH\", # French - Switzerland\n    0x140c: \"fr_LU\", # French - Luxembourg\n    0x180c: \"fr_MC\", # French - Monaco\n    0x0462: \"fy_NL\", # Frisian - Netherlands\n    0x0456: \"gl_ES\", # Galician\n    0x0437: \"ka_GE\", # Georgian\n    0x0407: \"de_DE\", # German - Germany\n    0x0807: \"de_CH\", # German - Switzerland\n    0x0c07: \"de_AT\", # German - Austria\n    0x1007: \"de_LU\", # German - Luxembourg\n    0x1407: \"de_LI\", # German - Liechtenstein\n    0x0408: \"el_GR\", # Greek\n    0x046f: \"kl_GL\", # Greenlandic - Greenland\n    0x0447: \"gu_IN\", # Gujarati\n    0x0468: \"ha_NG\", # Hausa - Latin\n    0x040d: \"he_IL\", # Hebrew\n    0x0439: \"hi_IN\", # Hindi\n    0x040e: \"hu_HU\", # Hungarian\n    0x040f: \"is_IS\", # Icelandic\n    0x0421: \"id_ID\", # Indonesian\n    0x045d: \"iu_CA\", # Inuktitut - Syllabics\n    0x085d: \"iu_CA\", # Inuktitut - Latin\n    0x083c: \"ga_IE\", # Irish - Ireland\n    0x0410: \"it_IT\", # Italian - Italy\n    0x0810: \"it_CH\", # Italian - Switzerland\n    0x0411: \"ja_JP\", # Japanese\n    0x044b: \"kn_IN\", # Kannada - India\n    0x043f: \"kk_KZ\", # Kazakh\n    0x0453: \"kh_KH\", # Khmer - Cambodia\n    0x0486: \"qut_GT\",# K'iche - Guatemala\n    0x0487: \"rw_RW\", # Kinyarwanda - Rwanda\n    0x0457: \"kok_IN\",# Konkani\n    0x0412: \"ko_KR\", # Korean\n    0x0440: \"ky_KG\", # Kyrgyz\n    0x0454: \"lo_LA\", # Lao - Lao PDR\n    0x0426: \"lv_LV\", # Latvian\n    0x0427: \"lt_LT\", # Lithuanian\n    0x082e: \"dsb_DE\",# Lower Sorbian - Germany\n    0x046e: \"lb_LU\", # Luxembourgish\n    0x042f: \"mk_MK\", # FYROM Macedonian\n    0x043e: \"ms_MY\", # Malay - Malaysia\n    0x083e: \"ms_BN\", # Malay - Brunei Darussalam\n    0x044c: \"ml_IN\", # Malayalam - India\n    0x043a: \"mt_MT\", # Maltese\n    0x0481: \"mi_NZ\", # Maori\n    0x047a: \"arn_CL\",# Mapudungun\n    0x044e: \"mr_IN\", # Marathi\n    0x047c: \"moh_CA\",# Mohawk - Canada\n    0x0450: \"mn_MN\", # Mongolian - Cyrillic\n    0x0850: \"mn_CN\", # Mongolian - PRC\n    0x0461: \"ne_NP\", # Nepali\n    0x0414: \"nb_NO\", # Norwegian - Bokmal\n    0x0814: \"nn_NO\", # Norwegian - Nynorsk\n    0x0482: \"oc_FR\", # Occitan - France\n    0x0448: \"or_IN\", # Oriya - India\n    0x0463: \"ps_AF\", # Pashto - Afghanistan\n    0x0429: \"fa_IR\", # Persian\n    0x0415: \"pl_PL\", # Polish\n    0x0416: \"pt_BR\", # Portuguese - Brazil\n    0x0816: \"pt_PT\", # Portuguese - Portugal\n    0x0446: \"pa_IN\", # Punjabi\n    0x046b: \"quz_BO\",# Quechua (Bolivia)\n    0x086b: \"quz_EC\",# Quechua (Ecuador)\n    0x0c6b: \"quz_PE\",# Quechua (Peru)\n    0x0418: \"ro_RO\", # Romanian - Romania\n    0x0417: \"rm_CH\", # Romansh\n    0x0419: \"ru_RU\", # Russian\n    0x243b: \"smn_FI\",# Sami Finland\n    0x103b: \"smj_NO\",# Sami Norway\n    0x143b: \"smj_SE\",# Sami Sweden\n    0x043b: \"se_NO\", # Sami Northern Norway\n    0x083b: \"se_SE\", # Sami Northern Sweden\n    0x0c3b: \"se_FI\", # Sami Northern Finland\n    0x203b: \"sms_FI\",# Sami Skolt\n    0x183b: \"sma_NO\",# Sami Southern Norway\n    0x1c3b: \"sma_SE\",# Sami Southern Sweden\n    0x044f: \"sa_IN\", # Sanskrit\n    0x0c1a: \"sr_SP\", # Serbian - Cyrillic\n    0x1c1a: \"sr_BA\", # Serbian - Bosnia Cyrillic\n    0x081a: \"sr_SP\", # Serbian - Latin\n    0x181a: \"sr_BA\", # Serbian - Bosnia Latin\n    0x045b: \"si_LK\", # Sinhala - Sri Lanka\n    0x046c: \"ns_ZA\", # Northern Sotho\n    0x0432: \"tn_ZA\", # Setswana - Southern Africa\n    0x041b: \"sk_SK\", # Slovak\n    0x0424: \"sl_SI\", # Slovenian\n    0x040a: \"es_ES\", # Spanish - Spain\n    0x080a: \"es_MX\", # Spanish - Mexico\n    0x0c0a: \"es_ES\", # Spanish - Spain (Modern)\n    0x100a: \"es_GT\", # Spanish - Guatemala\n    0x140a: \"es_CR\", # Spanish - Costa Rica\n    0x180a: \"es_PA\", # Spanish - Panama\n    0x1c0a: \"es_DO\", # Spanish - Dominican Republic\n    0x200a: \"es_VE\", # Spanish - Venezuela\n    0x240a: \"es_CO\", # Spanish - Colombia\n    0x280a: \"es_PE\", # Spanish - Peru\n    0x2c0a: \"es_AR\", # Spanish - Argentina\n    0x300a: \"es_EC\", # Spanish - Ecuador\n    0x340a: \"es_CL\", # Spanish - Chile\n    0x380a: \"es_UR\", # Spanish - Uruguay\n    0x3c0a: \"es_PY\", # Spanish - Paraguay\n    0x400a: \"es_BO\", # Spanish - Bolivia\n    0x440a: \"es_SV\", # Spanish - El Salvador\n    0x480a: \"es_HN\", # Spanish - Honduras\n    0x4c0a: \"es_NI\", # Spanish - Nicaragua\n    0x500a: \"es_PR\", # Spanish - Puerto Rico\n    0x540a: \"es_US\", # Spanish - United States\n#    0x0430: \"\", # Sutu - Not supported\n    0x0441: \"sw_KE\", # Swahili\n    0x041d: \"sv_SE\", # Swedish - Sweden\n    0x081d: \"sv_FI\", # Swedish - Finland\n    0x045a: \"syr_SY\",# Syriac\n    0x0428: \"tg_TJ\", # Tajik - Cyrillic\n    0x085f: \"tmz_DZ\",# Tamazight - Latin\n    0x0449: \"ta_IN\", # Tamil\n    0x0444: \"tt_RU\", # Tatar\n    0x044a: \"te_IN\", # Telugu\n    0x041e: \"th_TH\", # Thai\n    0x0851: \"bo_BT\", # Tibetan - Bhutan\n    0x0451: \"bo_CN\", # Tibetan - PRC\n    0x041f: \"tr_TR\", # Turkish\n    0x0442: \"tk_TM\", # Turkmen - Cyrillic\n    0x0480: \"ug_CN\", # Uighur - Arabic\n    0x0422: \"uk_UA\", # Ukrainian\n    0x042e: \"wen_DE\",# Upper Sorbian - Germany\n    0x0420: \"ur_PK\", # Urdu\n    0x0820: \"ur_IN\", # Urdu - India\n    0x0443: \"uz_UZ\", # Uzbek - Latin\n    0x0843: \"uz_UZ\", # Uzbek - Cyrillic\n    0x042a: \"vi_VN\", # Vietnamese\n    0x0452: \"cy_GB\", # Welsh\n    0x0488: \"wo_SN\", # Wolof - Senegal\n    0x0434: \"xh_ZA\", # Xhosa - South Africa\n    0x0485: \"sah_RU\",# Yakut - Cyrillic\n    0x0478: \"ii_CN\", # Yi - PRC\n    0x046a: \"yo_NG\", # Yoruba - Nigeria\n    0x0435: \"zu_ZA\", # Zulu\n}\n\ndef _print_locale():\n\n    \"\"\" Test function.\n    \"\"\"\n    categories = {}\n    def _init_categories(categories=categories):\n        for k,v in globals().items():\n            if k[:3] == 'LC_':\n                categories[k] = v\n    _init_categories()\n    del categories['LC_ALL']\n\n    print('Locale defaults as determined by getdefaultlocale():')\n    print('-'*72)\n    lang, enc = getdefaultlocale()\n    print('Language: ', lang or '(undefined)')\n    print('Encoding: ', enc or '(undefined)')\n    print()\n\n    print('Locale settings on startup:')\n    print('-'*72)\n    for name,category in categories.items():\n        print(name, '...')\n        lang, enc = getlocale(category)\n        print('   Language: ', lang or '(undefined)')\n        print('   Encoding: ', enc or '(undefined)')\n        print()\n\n    print()\n    print('Locale settings after calling resetlocale():')\n    print('-'*72)\n    resetlocale()\n    for name,category in categories.items():\n        print(name, '...')\n        lang, enc = getlocale(category)\n        print('   Language: ', lang or '(undefined)')\n        print('   Encoding: ', enc or '(undefined)')\n        print()\n\n    try:\n        setlocale(LC_ALL, \"\")\n    except:\n        print('NOTE:')\n        print('setlocale(LC_ALL, \"\") does not support the default locale')\n        print('given in the OS environment variables.')\n    else:\n        print()\n        print('Locale settings after calling setlocale(LC_ALL, \"\"):')\n        print('-'*72)\n        for name,category in categories.items():\n            print(name, '...')\n            lang, enc = getlocale(category)\n            print('   Language: ', lang or '(undefined)')\n            print('   Encoding: ', enc or '(undefined)')\n            print()\n\n###\n\ntry:\n    LC_MESSAGES\nexcept NameError:\n    pass\nelse:\n    __all__.append(\"LC_MESSAGES\")\n\nif __name__=='__main__':\n    print('Locale aliasing:')\n    print()\n    _print_locale()\n    print()\n    print('Number formatting:')\n    print()\n    _test()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/lzma.py",
    "content": "\"\"\"Interface to the liblzma compression library.\n\nThis module provides a class for reading and writing compressed files,\nclasses for incremental (de)compression, and convenience functions for\none-shot (de)compression.\n\nThese classes and functions support both the XZ and legacy LZMA\ncontainer formats, as well as raw compressed data streams.\n\"\"\"\n\n__all__ = [\n    \"CHECK_NONE\", \"CHECK_CRC32\", \"CHECK_CRC64\", \"CHECK_SHA256\",\n    \"CHECK_ID_MAX\", \"CHECK_UNKNOWN\",\n    \"FILTER_LZMA1\", \"FILTER_LZMA2\", \"FILTER_DELTA\", \"FILTER_X86\", \"FILTER_IA64\",\n    \"FILTER_ARM\", \"FILTER_ARMTHUMB\", \"FILTER_POWERPC\", \"FILTER_SPARC\",\n    \"FORMAT_AUTO\", \"FORMAT_XZ\", \"FORMAT_ALONE\", \"FORMAT_RAW\",\n    \"MF_HC3\", \"MF_HC4\", \"MF_BT2\", \"MF_BT3\", \"MF_BT4\",\n    \"MODE_FAST\", \"MODE_NORMAL\", \"PRESET_DEFAULT\", \"PRESET_EXTREME\",\n\n    \"LZMACompressor\", \"LZMADecompressor\", \"LZMAFile\", \"LZMAError\",\n    \"open\", \"compress\", \"decompress\", \"is_check_supported\",\n]\n\nimport builtins\nimport io\nimport os\nfrom _lzma import *\nfrom _lzma import _encode_filter_properties, _decode_filter_properties\nimport _compression\n\n\n_MODE_CLOSED   = 0\n_MODE_READ     = 1\n# Value 2 no longer used\n_MODE_WRITE    = 3\n\n\nclass LZMAFile(_compression.BaseStream):\n\n    \"\"\"A file object providing transparent LZMA (de)compression.\n\n    An LZMAFile can act as a wrapper for an existing file object, or\n    refer directly to a named file on disk.\n\n    Note that LZMAFile provides a *binary* file interface - data read\n    is returned as bytes, and data to be written must be given as bytes.\n    \"\"\"\n\n    def __init__(self, filename=None, mode=\"r\", *,\n                 format=None, check=-1, preset=None, filters=None):\n        \"\"\"Open an LZMA-compressed file in binary mode.\n\n        filename can be either an actual file name (given as a str,\n        bytes, or PathLike object), in which case the named file is\n        opened, or it can be an existing file object to read from or\n        write to.\n\n        mode can be \"r\" for reading (default), \"w\" for (over)writing,\n        \"x\" for creating exclusively, or \"a\" for appending. These can\n        equivalently be given as \"rb\", \"wb\", \"xb\" and \"ab\" respectively.\n\n        format specifies the container format to use for the file.\n        If mode is \"r\", this defaults to FORMAT_AUTO. Otherwise, the\n        default is FORMAT_XZ.\n\n        check specifies the integrity check to use. This argument can\n        only be used when opening a file for writing. For FORMAT_XZ,\n        the default is CHECK_CRC64. FORMAT_ALONE and FORMAT_RAW do not\n        support integrity checks - for these formats, check must be\n        omitted, or be CHECK_NONE.\n\n        When opening a file for reading, the *preset* argument is not\n        meaningful, and should be omitted. The *filters* argument should\n        also be omitted, except when format is FORMAT_RAW (in which case\n        it is required).\n\n        When opening a file for writing, the settings used by the\n        compressor can be specified either as a preset compression\n        level (with the *preset* argument), or in detail as a custom\n        filter chain (with the *filters* argument). For FORMAT_XZ and\n        FORMAT_ALONE, the default is to use the PRESET_DEFAULT preset\n        level. For FORMAT_RAW, the caller must always specify a filter\n        chain; the raw compressor does not support preset compression\n        levels.\n\n        preset (if provided) should be an integer in the range 0-9,\n        optionally OR-ed with the constant PRESET_EXTREME.\n\n        filters (if provided) should be a sequence of dicts. Each dict\n        should have an entry for \"id\" indicating ID of the filter, plus\n        additional entries for options to the filter.\n        \"\"\"\n        self._fp = None\n        self._closefp = False\n        self._mode = _MODE_CLOSED\n\n        if mode in (\"r\", \"rb\"):\n            if check != -1:\n                raise ValueError(\"Cannot specify an integrity check \"\n                                 \"when opening a file for reading\")\n            if preset is not None:\n                raise ValueError(\"Cannot specify a preset compression \"\n                                 \"level when opening a file for reading\")\n            if format is None:\n                format = FORMAT_AUTO\n            mode_code = _MODE_READ\n        elif mode in (\"w\", \"wb\", \"a\", \"ab\", \"x\", \"xb\"):\n            if format is None:\n                format = FORMAT_XZ\n            mode_code = _MODE_WRITE\n            self._compressor = LZMACompressor(format=format, check=check,\n                                              preset=preset, filters=filters)\n            self._pos = 0\n        else:\n            raise ValueError(\"Invalid mode: {!r}\".format(mode))\n\n        if isinstance(filename, (str, bytes, os.PathLike)):\n            if \"b\" not in mode:\n                mode += \"b\"\n            self._fp = builtins.open(filename, mode)\n            self._closefp = True\n            self._mode = mode_code\n        elif hasattr(filename, \"read\") or hasattr(filename, \"write\"):\n            self._fp = filename\n            self._mode = mode_code\n        else:\n            raise TypeError(\"filename must be a str, bytes, file or PathLike object\")\n\n        if self._mode == _MODE_READ:\n            raw = _compression.DecompressReader(self._fp, LZMADecompressor,\n                trailing_error=LZMAError, format=format, filters=filters)\n            self._buffer = io.BufferedReader(raw)\n\n    def close(self):\n        \"\"\"Flush and close the file.\n\n        May be called more than once without error. Once the file is\n        closed, any other operation on it will raise a ValueError.\n        \"\"\"\n        if self._mode == _MODE_CLOSED:\n            return\n        try:\n            if self._mode == _MODE_READ:\n                self._buffer.close()\n                self._buffer = None\n            elif self._mode == _MODE_WRITE:\n                self._fp.write(self._compressor.flush())\n                self._compressor = None\n        finally:\n            try:\n                if self._closefp:\n                    self._fp.close()\n            finally:\n                self._fp = None\n                self._closefp = False\n                self._mode = _MODE_CLOSED\n\n    @property\n    def closed(self):\n        \"\"\"True if this file is closed.\"\"\"\n        return self._mode == _MODE_CLOSED\n\n    def fileno(self):\n        \"\"\"Return the file descriptor for the underlying file.\"\"\"\n        self._check_not_closed()\n        return self._fp.fileno()\n\n    def seekable(self):\n        \"\"\"Return whether the file supports seeking.\"\"\"\n        return self.readable() and self._buffer.seekable()\n\n    def readable(self):\n        \"\"\"Return whether the file was opened for reading.\"\"\"\n        self._check_not_closed()\n        return self._mode == _MODE_READ\n\n    def writable(self):\n        \"\"\"Return whether the file was opened for writing.\"\"\"\n        self._check_not_closed()\n        return self._mode == _MODE_WRITE\n\n    def peek(self, size=-1):\n        \"\"\"Return buffered data without advancing the file position.\n\n        Always returns at least one byte of data, unless at EOF.\n        The exact number of bytes returned is unspecified.\n        \"\"\"\n        self._check_can_read()\n        # Relies on the undocumented fact that BufferedReader.peek() always\n        # returns at least one byte (except at EOF)\n        return self._buffer.peek(size)\n\n    def read(self, size=-1):\n        \"\"\"Read up to size uncompressed bytes from the file.\n\n        If size is negative or omitted, read until EOF is reached.\n        Returns b\"\" if the file is already at EOF.\n        \"\"\"\n        self._check_can_read()\n        return self._buffer.read(size)\n\n    def read1(self, size=-1):\n        \"\"\"Read up to size uncompressed bytes, while trying to avoid\n        making multiple reads from the underlying stream. Reads up to a\n        buffer's worth of data if size is negative.\n\n        Returns b\"\" if the file is at EOF.\n        \"\"\"\n        self._check_can_read()\n        if size < 0:\n            size = io.DEFAULT_BUFFER_SIZE\n        return self._buffer.read1(size)\n\n    def readline(self, size=-1):\n        \"\"\"Read a line of uncompressed bytes from the file.\n\n        The terminating newline (if present) is retained. If size is\n        non-negative, no more than size bytes will be read (in which\n        case the line may be incomplete). Returns b'' if already at EOF.\n        \"\"\"\n        self._check_can_read()\n        return self._buffer.readline(size)\n\n    def write(self, data):\n        \"\"\"Write a bytes object to the file.\n\n        Returns the number of uncompressed bytes written, which is\n        always len(data). Note that due to buffering, the file on disk\n        may not reflect the data written until close() is called.\n        \"\"\"\n        self._check_can_write()\n        compressed = self._compressor.compress(data)\n        self._fp.write(compressed)\n        self._pos += len(data)\n        return len(data)\n\n    def seek(self, offset, whence=io.SEEK_SET):\n        \"\"\"Change the file position.\n\n        The new position is specified by offset, relative to the\n        position indicated by whence. Possible values for whence are:\n\n            0: start of stream (default): offset must not be negative\n            1: current stream position\n            2: end of stream; offset must not be positive\n\n        Returns the new file position.\n\n        Note that seeking is emulated, so depending on the parameters,\n        this operation may be extremely slow.\n        \"\"\"\n        self._check_can_seek()\n        return self._buffer.seek(offset, whence)\n\n    def tell(self):\n        \"\"\"Return the current file position.\"\"\"\n        self._check_not_closed()\n        if self._mode == _MODE_READ:\n            return self._buffer.tell()\n        return self._pos\n\n\ndef open(filename, mode=\"rb\", *,\n         format=None, check=-1, preset=None, filters=None,\n         encoding=None, errors=None, newline=None):\n    \"\"\"Open an LZMA-compressed file in binary or text mode.\n\n    filename can be either an actual file name (given as a str, bytes,\n    or PathLike object), in which case the named file is opened, or it\n    can be an existing file object to read from or write to.\n\n    The mode argument can be \"r\", \"rb\" (default), \"w\", \"wb\", \"x\", \"xb\",\n    \"a\", or \"ab\" for binary mode, or \"rt\", \"wt\", \"xt\", or \"at\" for text\n    mode.\n\n    The format, check, preset and filters arguments specify the\n    compression settings, as for LZMACompressor, LZMADecompressor and\n    LZMAFile.\n\n    For binary mode, this function is equivalent to the LZMAFile\n    constructor: LZMAFile(filename, mode, ...). In this case, the\n    encoding, errors and newline arguments must not be provided.\n\n    For text mode, an LZMAFile object is created, and wrapped in an\n    io.TextIOWrapper instance with the specified encoding, error\n    handling behavior, and line ending(s).\n\n    \"\"\"\n    if \"t\" in mode:\n        if \"b\" in mode:\n            raise ValueError(\"Invalid mode: %r\" % (mode,))\n    else:\n        if encoding is not None:\n            raise ValueError(\"Argument 'encoding' not supported in binary mode\")\n        if errors is not None:\n            raise ValueError(\"Argument 'errors' not supported in binary mode\")\n        if newline is not None:\n            raise ValueError(\"Argument 'newline' not supported in binary mode\")\n\n    lz_mode = mode.replace(\"t\", \"\")\n    binary_file = LZMAFile(filename, lz_mode, format=format, check=check,\n                           preset=preset, filters=filters)\n\n    if \"t\" in mode:\n        return io.TextIOWrapper(binary_file, encoding, errors, newline)\n    else:\n        return binary_file\n\n\ndef compress(data, format=FORMAT_XZ, check=-1, preset=None, filters=None):\n    \"\"\"Compress a block of data.\n\n    Refer to LZMACompressor's docstring for a description of the\n    optional arguments *format*, *check*, *preset* and *filters*.\n\n    For incremental compression, use an LZMACompressor instead.\n    \"\"\"\n    comp = LZMACompressor(format, check, preset, filters)\n    return comp.compress(data) + comp.flush()\n\n\ndef decompress(data, format=FORMAT_AUTO, memlimit=None, filters=None):\n    \"\"\"Decompress a block of data.\n\n    Refer to LZMADecompressor's docstring for a description of the\n    optional arguments *format*, *check* and *filters*.\n\n    For incremental decompression, use an LZMADecompressor instead.\n    \"\"\"\n    results = []\n    while True:\n        decomp = LZMADecompressor(format, memlimit, filters)\n        try:\n            res = decomp.decompress(data)\n        except LZMAError:\n            if results:\n                break  # Leftover data is not a valid LZMA/XZ stream; ignore it.\n            else:\n                raise  # Error on the first iteration; bail out.\n        results.append(res)\n        if not decomp.eof:\n            raise LZMAError(\"Compressed data ended before the \"\n                            \"end-of-stream marker was reached\")\n        data = decomp.unused_data\n        if not data:\n            break\n    return b\"\".join(results)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/mailcap.py",
    "content": "\"\"\"Mailcap file handling.  See RFC 1524.\"\"\"\n\nimport os\nimport warnings\n\n__all__ = [\"getcaps\",\"findmatch\"]\n\n\ndef lineno_sort_key(entry):\n    # Sort in ascending order, with unspecified entries at the end\n    if 'lineno' in entry:\n        return 0, entry['lineno']\n    else:\n        return 1, 0\n\n\n# Part 1: top-level interface.\n\ndef getcaps():\n    \"\"\"Return a dictionary containing the mailcap database.\n\n    The dictionary maps a MIME type (in all lowercase, e.g. 'text/plain')\n    to a list of dictionaries corresponding to mailcap entries.  The list\n    collects all the entries for that MIME type from all available mailcap\n    files.  Each dictionary contains key-value pairs for that MIME type,\n    where the viewing command is stored with the key \"view\".\n\n    \"\"\"\n    caps = {}\n    lineno = 0\n    for mailcap in listmailcapfiles():\n        try:\n            fp = open(mailcap, 'r')\n        except OSError:\n            continue\n        with fp:\n            morecaps, lineno = _readmailcapfile(fp, lineno)\n        for key, value in morecaps.items():\n            if not key in caps:\n                caps[key] = value\n            else:\n                caps[key] = caps[key] + value\n    return caps\n\ndef listmailcapfiles():\n    \"\"\"Return a list of all mailcap files found on the system.\"\"\"\n    # This is mostly a Unix thing, but we use the OS path separator anyway\n    if 'MAILCAPS' in os.environ:\n        pathstr = os.environ['MAILCAPS']\n        mailcaps = pathstr.split(os.pathsep)\n    else:\n        if 'HOME' in os.environ:\n            home = os.environ['HOME']\n        else:\n            # Don't bother with getpwuid()\n            home = '.' # Last resort\n        mailcaps = [home + '/.mailcap', '/etc/mailcap',\n                '/usr/etc/mailcap', '/usr/local/etc/mailcap']\n    return mailcaps\n\n\n# Part 2: the parser.\ndef readmailcapfile(fp):\n    \"\"\"Read a mailcap file and return a dictionary keyed by MIME type.\"\"\"\n    warnings.warn('readmailcapfile is deprecated, use getcaps instead',\n                  DeprecationWarning, 2)\n    caps, _ = _readmailcapfile(fp, None)\n    return caps\n\n\ndef _readmailcapfile(fp, lineno):\n    \"\"\"Read a mailcap file and return a dictionary keyed by MIME type.\n\n    Each MIME type is mapped to an entry consisting of a list of\n    dictionaries; the list will contain more than one such dictionary\n    if a given MIME type appears more than once in the mailcap file.\n    Each dictionary contains key-value pairs for that MIME type, where\n    the viewing command is stored with the key \"view\".\n    \"\"\"\n    caps = {}\n    while 1:\n        line = fp.readline()\n        if not line: break\n        # Ignore comments and blank lines\n        if line[0] == '#' or line.strip() == '':\n            continue\n        nextline = line\n        # Join continuation lines\n        while nextline[-2:] == '\\\\\\n':\n            nextline = fp.readline()\n            if not nextline: nextline = '\\n'\n            line = line[:-2] + nextline\n        # Parse the line\n        key, fields = parseline(line)\n        if not (key and fields):\n            continue\n        if lineno is not None:\n            fields['lineno'] = lineno\n            lineno += 1\n        # Normalize the key\n        types = key.split('/')\n        for j in range(len(types)):\n            types[j] = types[j].strip()\n        key = '/'.join(types).lower()\n        # Update the database\n        if key in caps:\n            caps[key].append(fields)\n        else:\n            caps[key] = [fields]\n    return caps, lineno\n\ndef parseline(line):\n    \"\"\"Parse one entry in a mailcap file and return a dictionary.\n\n    The viewing command is stored as the value with the key \"view\",\n    and the rest of the fields produce key-value pairs in the dict.\n    \"\"\"\n    fields = []\n    i, n = 0, len(line)\n    while i < n:\n        field, i = parsefield(line, i, n)\n        fields.append(field)\n        i = i+1 # Skip semicolon\n    if len(fields) < 2:\n        return None, None\n    key, view, rest = fields[0], fields[1], fields[2:]\n    fields = {'view': view}\n    for field in rest:\n        i = field.find('=')\n        if i < 0:\n            fkey = field\n            fvalue = \"\"\n        else:\n            fkey = field[:i].strip()\n            fvalue = field[i+1:].strip()\n        if fkey in fields:\n            # Ignore it\n            pass\n        else:\n            fields[fkey] = fvalue\n    return key, fields\n\ndef parsefield(line, i, n):\n    \"\"\"Separate one key-value pair in a mailcap entry.\"\"\"\n    start = i\n    while i < n:\n        c = line[i]\n        if c == ';':\n            break\n        elif c == '\\\\':\n            i = i+2\n        else:\n            i = i+1\n    return line[start:i].strip(), i\n\n\n# Part 3: using the database.\n\ndef findmatch(caps, MIMEtype, key='view', filename=\"/dev/null\", plist=[]):\n    \"\"\"Find a match for a mailcap entry.\n\n    Return a tuple containing the command line, and the mailcap entry\n    used; (None, None) if no match is found.  This may invoke the\n    'test' command of several matching entries before deciding which\n    entry to use.\n\n    \"\"\"\n    entries = lookup(caps, MIMEtype, key)\n    # XXX This code should somehow check for the needsterminal flag.\n    for e in entries:\n        if 'test' in e:\n            test = subst(e['test'], filename, plist)\n            if test and os.system(test) != 0:\n                continue\n        command = subst(e[key], MIMEtype, filename, plist)\n        return command, e\n    return None, None\n\ndef lookup(caps, MIMEtype, key=None):\n    entries = []\n    if MIMEtype in caps:\n        entries = entries + caps[MIMEtype]\n    MIMEtypes = MIMEtype.split('/')\n    MIMEtype = MIMEtypes[0] + '/*'\n    if MIMEtype in caps:\n        entries = entries + caps[MIMEtype]\n    if key is not None:\n        entries = [e for e in entries if key in e]\n    entries = sorted(entries, key=lineno_sort_key)\n    return entries\n\ndef subst(field, MIMEtype, filename, plist=[]):\n    # XXX Actually, this is Unix-specific\n    res = ''\n    i, n = 0, len(field)\n    while i < n:\n        c = field[i]; i = i+1\n        if c != '%':\n            if c == '\\\\':\n                c = field[i:i+1]; i = i+1\n            res = res + c\n        else:\n            c = field[i]; i = i+1\n            if c == '%':\n                res = res + c\n            elif c == 's':\n                res = res + filename\n            elif c == 't':\n                res = res + MIMEtype\n            elif c == '{':\n                start = i\n                while i < n and field[i] != '}':\n                    i = i+1\n                name = field[start:i]\n                i = i+1\n                res = res + findparam(name, plist)\n            # XXX To do:\n            # %n == number of parts if type is multipart/*\n            # %F == list of alternating type and filename for parts\n            else:\n                res = res + '%' + c\n    return res\n\ndef findparam(name, plist):\n    name = name.lower() + '='\n    n = len(name)\n    for p in plist:\n        if p[:n].lower() == name:\n            return p[n:]\n    return ''\n\n\n# Part 4: test program.\n\ndef test():\n    import sys\n    caps = getcaps()\n    if not sys.argv[1:]:\n        show(caps)\n        return\n    for i in range(1, len(sys.argv), 2):\n        args = sys.argv[i:i+2]\n        if len(args) < 2:\n            print(\"usage: mailcap [MIMEtype file] ...\")\n            return\n        MIMEtype = args[0]\n        file = args[1]\n        command, e = findmatch(caps, MIMEtype, 'view', file)\n        if not command:\n            print(\"No viewer found for\", type)\n        else:\n            print(\"Executing:\", command)\n            sts = os.system(command)\n            if sts:\n                print(\"Exit status:\", sts)\n\ndef show(caps):\n    print(\"Mailcap files:\")\n    for fn in listmailcapfiles(): print(\"\\t\" + fn)\n    print()\n    if not caps: caps = getcaps()\n    print(\"Mailcap entries:\")\n    print()\n    ckeys = sorted(caps)\n    for type in ckeys:\n        print(type)\n        entries = caps[type]\n        for e in entries:\n            keys = sorted(e)\n            for k in keys:\n                print(\"  %-15s\" % k, e[k])\n            print()\n\nif __name__ == '__main__':\n    test()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/mimetypes.py",
    "content": "\"\"\"Guess the MIME type of a file.\n\nThis module defines two useful functions:\n\nguess_type(url, strict=True) -- guess the MIME type and encoding of a URL.\n\nguess_extension(type, strict=True) -- guess the extension for a given MIME type.\n\nIt also contains the following, for tuning the behavior:\n\nData:\n\nknownfiles -- list of files to parse\ninited -- flag set when init() has been called\nsuffix_map -- dictionary mapping suffixes to suffixes\nencodings_map -- dictionary mapping suffixes to encodings\ntypes_map -- dictionary mapping suffixes to types\n\nFunctions:\n\ninit([files]) -- parse a list of files, default knownfiles (on Windows, the\n  default values are taken from the registry)\nread_mime_types(file) -- parse one file, return a dictionary or None\n\"\"\"\n\nimport os\nimport sys\nimport posixpath\nimport urllib.parse\ntry:\n    import winreg as _winreg\nexcept ImportError:\n    _winreg = None\n\n__all__ = [\n    \"knownfiles\", \"inited\", \"MimeTypes\",\n    \"guess_type\", \"guess_all_extensions\", \"guess_extension\",\n    \"add_type\", \"init\", \"read_mime_types\",\n    \"suffix_map\", \"encodings_map\", \"types_map\", \"common_types\"\n]\n\nknownfiles = [\n    \"/etc/mime.types\",\n    \"/etc/httpd/mime.types\",                    # Mac OS X\n    \"/etc/httpd/conf/mime.types\",               # Apache\n    \"/etc/apache/mime.types\",                   # Apache 1\n    \"/etc/apache2/mime.types\",                  # Apache 2\n    \"/usr/local/etc/httpd/conf/mime.types\",\n    \"/usr/local/lib/netscape/mime.types\",\n    \"/usr/local/etc/httpd/conf/mime.types\",     # Apache 1.2\n    \"/usr/local/etc/mime.types\",                # Apache 1.3\n    ]\n\ninited = False\n_db = None\n\n\nclass MimeTypes:\n    \"\"\"MIME-types datastore.\n\n    This datastore can handle information from mime.types-style files\n    and supports basic determination of MIME type from a filename or\n    URL, and can guess a reasonable extension given a MIME type.\n    \"\"\"\n\n    def __init__(self, filenames=(), strict=True):\n        if not inited:\n            init()\n        self.encodings_map = _encodings_map_default.copy()\n        self.suffix_map = _suffix_map_default.copy()\n        self.types_map = ({}, {}) # dict for (non-strict, strict)\n        self.types_map_inv = ({}, {})\n        for (ext, type) in _types_map_default.items():\n            self.add_type(type, ext, True)\n        for (ext, type) in _common_types_default.items():\n            self.add_type(type, ext, False)\n        for name in filenames:\n            self.read(name, strict)\n\n    def add_type(self, type, ext, strict=True):\n        \"\"\"Add a mapping between a type and an extension.\n\n        When the extension is already known, the new\n        type will replace the old one. When the type\n        is already known the extension will be added\n        to the list of known extensions.\n\n        If strict is true, information will be added to\n        list of standard types, else to the list of non-standard\n        types.\n        \"\"\"\n        self.types_map[strict][ext] = type\n        exts = self.types_map_inv[strict].setdefault(type, [])\n        if ext not in exts:\n            exts.append(ext)\n\n    def guess_type(self, url, strict=True):\n        \"\"\"Guess the type of a file which is either a URL or a path-like object.\n\n        Return value is a tuple (type, encoding) where type is None if\n        the type can't be guessed (no or unknown suffix) or a string\n        of the form type/subtype, usable for a MIME Content-type\n        header; and encoding is None for no encoding or the name of\n        the program used to encode (e.g. compress or gzip).  The\n        mappings are table driven.  Encoding suffixes are case\n        sensitive; type suffixes are first tried case sensitive, then\n        case insensitive.\n\n        The suffixes .tgz, .taz and .tz (case sensitive!) are all\n        mapped to '.tar.gz'.  (This is table-driven too, using the\n        dictionary suffix_map.)\n\n        Optional `strict' argument when False adds a bunch of commonly found,\n        but non-standard types.\n        \"\"\"\n        url = os.fspath(url)\n        scheme, url = urllib.parse._splittype(url)\n        if scheme == 'data':\n            # syntax of data URLs:\n            # dataurl   := \"data:\" [ mediatype ] [ \";base64\" ] \",\" data\n            # mediatype := [ type \"/\" subtype ] *( \";\" parameter )\n            # data      := *urlchar\n            # parameter := attribute \"=\" value\n            # type/subtype defaults to \"text/plain\"\n            comma = url.find(',')\n            if comma < 0:\n                # bad data URL\n                return None, None\n            semi = url.find(';', 0, comma)\n            if semi >= 0:\n                type = url[:semi]\n            else:\n                type = url[:comma]\n            if '=' in type or '/' not in type:\n                type = 'text/plain'\n            return type, None           # never compressed, so encoding is None\n        base, ext = posixpath.splitext(url)\n        while ext in self.suffix_map:\n            base, ext = posixpath.splitext(base + self.suffix_map[ext])\n        if ext in self.encodings_map:\n            encoding = self.encodings_map[ext]\n            base, ext = posixpath.splitext(base)\n        else:\n            encoding = None\n        types_map = self.types_map[True]\n        if ext in types_map:\n            return types_map[ext], encoding\n        elif ext.lower() in types_map:\n            return types_map[ext.lower()], encoding\n        elif strict:\n            return None, encoding\n        types_map = self.types_map[False]\n        if ext in types_map:\n            return types_map[ext], encoding\n        elif ext.lower() in types_map:\n            return types_map[ext.lower()], encoding\n        else:\n            return None, encoding\n\n    def guess_all_extensions(self, type, strict=True):\n        \"\"\"Guess the extensions for a file based on its MIME type.\n\n        Return value is a list of strings giving the possible filename\n        extensions, including the leading dot ('.').  The extension is not\n        guaranteed to have been associated with any particular data stream,\n        but would be mapped to the MIME type `type' by guess_type().\n\n        Optional `strict' argument when false adds a bunch of commonly found,\n        but non-standard types.\n        \"\"\"\n        type = type.lower()\n        extensions = self.types_map_inv[True].get(type, [])\n        if not strict:\n            for ext in self.types_map_inv[False].get(type, []):\n                if ext not in extensions:\n                    extensions.append(ext)\n        return extensions\n\n    def guess_extension(self, type, strict=True):\n        \"\"\"Guess the extension for a file based on its MIME type.\n\n        Return value is a string giving a filename extension,\n        including the leading dot ('.').  The extension is not\n        guaranteed to have been associated with any particular data\n        stream, but would be mapped to the MIME type `type' by\n        guess_type().  If no extension can be guessed for `type', None\n        is returned.\n\n        Optional `strict' argument when false adds a bunch of commonly found,\n        but non-standard types.\n        \"\"\"\n        extensions = self.guess_all_extensions(type, strict)\n        if not extensions:\n            return None\n        return extensions[0]\n\n    def read(self, filename, strict=True):\n        \"\"\"\n        Read a single mime.types-format file, specified by pathname.\n\n        If strict is true, information will be added to\n        list of standard types, else to the list of non-standard\n        types.\n        \"\"\"\n        with open(filename, encoding='utf-8') as fp:\n            self.readfp(fp, strict)\n\n    def readfp(self, fp, strict=True):\n        \"\"\"\n        Read a single mime.types-format file.\n\n        If strict is true, information will be added to\n        list of standard types, else to the list of non-standard\n        types.\n        \"\"\"\n        while 1:\n            line = fp.readline()\n            if not line:\n                break\n            words = line.split()\n            for i in range(len(words)):\n                if words[i][0] == '#':\n                    del words[i:]\n                    break\n            if not words:\n                continue\n            type, suffixes = words[0], words[1:]\n            for suff in suffixes:\n                self.add_type(type, '.' + suff, strict)\n\n    def read_windows_registry(self, strict=True):\n        \"\"\"\n        Load the MIME types database from Windows registry.\n\n        If strict is true, information will be added to\n        list of standard types, else to the list of non-standard\n        types.\n        \"\"\"\n\n        # Windows only\n        if not _winreg:\n            return\n\n        def enum_types(mimedb):\n            i = 0\n            while True:\n                try:\n                    ctype = _winreg.EnumKey(mimedb, i)\n                except OSError:\n                    break\n                else:\n                    if '\\0' not in ctype:\n                        yield ctype\n                i += 1\n\n        with _winreg.OpenKey(_winreg.HKEY_CLASSES_ROOT, '') as hkcr:\n            for subkeyname in enum_types(hkcr):\n                try:\n                    with _winreg.OpenKey(hkcr, subkeyname) as subkey:\n                        # Only check file extensions\n                        if not subkeyname.startswith(\".\"):\n                            continue\n                        # raises OSError if no 'Content Type' value\n                        mimetype, datatype = _winreg.QueryValueEx(\n                            subkey, 'Content Type')\n                        if datatype != _winreg.REG_SZ:\n                            continue\n                        self.add_type(mimetype, subkeyname, strict)\n                except OSError:\n                    continue\n\ndef guess_type(url, strict=True):\n    \"\"\"Guess the type of a file based on its URL.\n\n    Return value is a tuple (type, encoding) where type is None if the\n    type can't be guessed (no or unknown suffix) or a string of the\n    form type/subtype, usable for a MIME Content-type header; and\n    encoding is None for no encoding or the name of the program used\n    to encode (e.g. compress or gzip).  The mappings are table\n    driven.  Encoding suffixes are case sensitive; type suffixes are\n    first tried case sensitive, then case insensitive.\n\n    The suffixes .tgz, .taz and .tz (case sensitive!) are all mapped\n    to \".tar.gz\".  (This is table-driven too, using the dictionary\n    suffix_map).\n\n    Optional `strict' argument when false adds a bunch of commonly found, but\n    non-standard types.\n    \"\"\"\n    if _db is None:\n        init()\n    return _db.guess_type(url, strict)\n\n\ndef guess_all_extensions(type, strict=True):\n    \"\"\"Guess the extensions for a file based on its MIME type.\n\n    Return value is a list of strings giving the possible filename\n    extensions, including the leading dot ('.').  The extension is not\n    guaranteed to have been associated with any particular data\n    stream, but would be mapped to the MIME type `type' by\n    guess_type().  If no extension can be guessed for `type', None\n    is returned.\n\n    Optional `strict' argument when false adds a bunch of commonly found,\n    but non-standard types.\n    \"\"\"\n    if _db is None:\n        init()\n    return _db.guess_all_extensions(type, strict)\n\ndef guess_extension(type, strict=True):\n    \"\"\"Guess the extension for a file based on its MIME type.\n\n    Return value is a string giving a filename extension, including the\n    leading dot ('.').  The extension is not guaranteed to have been\n    associated with any particular data stream, but would be mapped to the\n    MIME type `type' by guess_type().  If no extension can be guessed for\n    `type', None is returned.\n\n    Optional `strict' argument when false adds a bunch of commonly found,\n    but non-standard types.\n    \"\"\"\n    if _db is None:\n        init()\n    return _db.guess_extension(type, strict)\n\ndef add_type(type, ext, strict=True):\n    \"\"\"Add a mapping between a type and an extension.\n\n    When the extension is already known, the new\n    type will replace the old one. When the type\n    is already known the extension will be added\n    to the list of known extensions.\n\n    If strict is true, information will be added to\n    list of standard types, else to the list of non-standard\n    types.\n    \"\"\"\n    if _db is None:\n        init()\n    return _db.add_type(type, ext, strict)\n\n\ndef init(files=None):\n    global suffix_map, types_map, encodings_map, common_types\n    global inited, _db\n    inited = True    # so that MimeTypes.__init__() doesn't call us again\n\n    if files is None or _db is None:\n        db = MimeTypes()\n        if _winreg:\n            db.read_windows_registry()\n\n        if files is None:\n            files = knownfiles\n        else:\n            files = knownfiles + list(files)\n    else:\n        db = _db\n\n    for file in files:\n        if os.path.isfile(file):\n            db.read(file)\n    encodings_map = db.encodings_map\n    suffix_map = db.suffix_map\n    types_map = db.types_map[True]\n    common_types = db.types_map[False]\n    # Make the DB a global variable now that it is fully initialized\n    _db = db\n\n\ndef read_mime_types(file):\n    try:\n        f = open(file, encoding='utf-8')\n    except OSError:\n        return None\n    with f:\n        db = MimeTypes()\n        db.readfp(f, True)\n        return db.types_map[True]\n\n\ndef _default_mime_types():\n    global suffix_map, _suffix_map_default\n    global encodings_map, _encodings_map_default\n    global types_map, _types_map_default\n    global common_types, _common_types_default\n\n    suffix_map = _suffix_map_default = {\n        '.svgz': '.svg.gz',\n        '.tgz': '.tar.gz',\n        '.taz': '.tar.gz',\n        '.tz': '.tar.gz',\n        '.tbz2': '.tar.bz2',\n        '.txz': '.tar.xz',\n        }\n\n    encodings_map = _encodings_map_default = {\n        '.gz': 'gzip',\n        '.Z': 'compress',\n        '.bz2': 'bzip2',\n        '.xz': 'xz',\n        }\n\n    # Before adding new types, make sure they are either registered with IANA,\n    # at http://www.iana.org/assignments/media-types\n    # or extensions, i.e. using the x- prefix\n\n    # If you add to these, please keep them sorted by mime type.\n    # Make sure the entry with the preferred file extension for a particular mime type\n    # appears before any others of the same mimetype.\n    types_map = _types_map_default = {\n        '.js'     : 'application/javascript',\n        '.mjs'    : 'application/javascript',\n        '.json'   : 'application/json',\n        '.webmanifest': 'application/manifest+json',\n        '.doc'    : 'application/msword',\n        '.dot'    : 'application/msword',\n        '.wiz'    : 'application/msword',\n        '.bin'    : 'application/octet-stream',\n        '.a'      : 'application/octet-stream',\n        '.dll'    : 'application/octet-stream',\n        '.exe'    : 'application/octet-stream',\n        '.o'      : 'application/octet-stream',\n        '.obj'    : 'application/octet-stream',\n        '.so'     : 'application/octet-stream',\n        '.oda'    : 'application/oda',\n        '.pdf'    : 'application/pdf',\n        '.p7c'    : 'application/pkcs7-mime',\n        '.ps'     : 'application/postscript',\n        '.ai'     : 'application/postscript',\n        '.eps'    : 'application/postscript',\n        '.m3u'    : 'application/vnd.apple.mpegurl',\n        '.m3u8'   : 'application/vnd.apple.mpegurl',\n        '.xls'    : 'application/vnd.ms-excel',\n        '.xlb'    : 'application/vnd.ms-excel',\n        '.ppt'    : 'application/vnd.ms-powerpoint',\n        '.pot'    : 'application/vnd.ms-powerpoint',\n        '.ppa'    : 'application/vnd.ms-powerpoint',\n        '.pps'    : 'application/vnd.ms-powerpoint',\n        '.pwz'    : 'application/vnd.ms-powerpoint',\n        '.wasm'   : 'application/wasm',\n        '.bcpio'  : 'application/x-bcpio',\n        '.cpio'   : 'application/x-cpio',\n        '.csh'    : 'application/x-csh',\n        '.dvi'    : 'application/x-dvi',\n        '.gtar'   : 'application/x-gtar',\n        '.hdf'    : 'application/x-hdf',\n        '.h5'     : 'application/x-hdf5',\n        '.latex'  : 'application/x-latex',\n        '.mif'    : 'application/x-mif',\n        '.cdf'    : 'application/x-netcdf',\n        '.nc'     : 'application/x-netcdf',\n        '.p12'    : 'application/x-pkcs12',\n        '.pfx'    : 'application/x-pkcs12',\n        '.ram'    : 'application/x-pn-realaudio',\n        '.pyc'    : 'application/x-python-code',\n        '.pyo'    : 'application/x-python-code',\n        '.sh'     : 'application/x-sh',\n        '.shar'   : 'application/x-shar',\n        '.swf'    : 'application/x-shockwave-flash',\n        '.sv4cpio': 'application/x-sv4cpio',\n        '.sv4crc' : 'application/x-sv4crc',\n        '.tar'    : 'application/x-tar',\n        '.tcl'    : 'application/x-tcl',\n        '.tex'    : 'application/x-tex',\n        '.texi'   : 'application/x-texinfo',\n        '.texinfo': 'application/x-texinfo',\n        '.roff'   : 'application/x-troff',\n        '.t'      : 'application/x-troff',\n        '.tr'     : 'application/x-troff',\n        '.man'    : 'application/x-troff-man',\n        '.me'     : 'application/x-troff-me',\n        '.ms'     : 'application/x-troff-ms',\n        '.ustar'  : 'application/x-ustar',\n        '.src'    : 'application/x-wais-source',\n        '.xsl'    : 'application/xml',\n        '.rdf'    : 'application/xml',\n        '.wsdl'   : 'application/xml',\n        '.xpdl'   : 'application/xml',\n        '.zip'    : 'application/zip',\n        '.au'     : 'audio/basic',\n        '.snd'    : 'audio/basic',\n        '.mp3'    : 'audio/mpeg',\n        '.mp2'    : 'audio/mpeg',\n        '.aif'    : 'audio/x-aiff',\n        '.aifc'   : 'audio/x-aiff',\n        '.aiff'   : 'audio/x-aiff',\n        '.ra'     : 'audio/x-pn-realaudio',\n        '.wav'    : 'audio/x-wav',\n        '.bmp'    : 'image/bmp',\n        '.gif'    : 'image/gif',\n        '.ief'    : 'image/ief',\n        '.jpg'    : 'image/jpeg',\n        '.jpe'    : 'image/jpeg',\n        '.jpeg'   : 'image/jpeg',\n        '.png'    : 'image/png',\n        '.svg'    : 'image/svg+xml',\n        '.tiff'   : 'image/tiff',\n        '.tif'    : 'image/tiff',\n        '.ico'    : 'image/vnd.microsoft.icon',\n        '.ras'    : 'image/x-cmu-raster',\n        '.bmp'    : 'image/x-ms-bmp',\n        '.pnm'    : 'image/x-portable-anymap',\n        '.pbm'    : 'image/x-portable-bitmap',\n        '.pgm'    : 'image/x-portable-graymap',\n        '.ppm'    : 'image/x-portable-pixmap',\n        '.rgb'    : 'image/x-rgb',\n        '.xbm'    : 'image/x-xbitmap',\n        '.xpm'    : 'image/x-xpixmap',\n        '.xwd'    : 'image/x-xwindowdump',\n        '.eml'    : 'message/rfc822',\n        '.mht'    : 'message/rfc822',\n        '.mhtml'  : 'message/rfc822',\n        '.nws'    : 'message/rfc822',\n        '.css'    : 'text/css',\n        '.csv'    : 'text/csv',\n        '.html'   : 'text/html',\n        '.htm'    : 'text/html',\n        '.txt'    : 'text/plain',\n        '.bat'    : 'text/plain',\n        '.c'      : 'text/plain',\n        '.h'      : 'text/plain',\n        '.ksh'    : 'text/plain',\n        '.pl'     : 'text/plain',\n        '.rtx'    : 'text/richtext',\n        '.tsv'    : 'text/tab-separated-values',\n        '.py'     : 'text/x-python',\n        '.etx'    : 'text/x-setext',\n        '.sgm'    : 'text/x-sgml',\n        '.sgml'   : 'text/x-sgml',\n        '.vcf'    : 'text/x-vcard',\n        '.xml'    : 'text/xml',\n        '.mp4'    : 'video/mp4',\n        '.mpeg'   : 'video/mpeg',\n        '.m1v'    : 'video/mpeg',\n        '.mpa'    : 'video/mpeg',\n        '.mpe'    : 'video/mpeg',\n        '.mpg'    : 'video/mpeg',\n        '.mov'    : 'video/quicktime',\n        '.qt'     : 'video/quicktime',\n        '.webm'   : 'video/webm',\n        '.avi'    : 'video/x-msvideo',\n        '.movie'  : 'video/x-sgi-movie',\n        }\n\n    # These are non-standard types, commonly found in the wild.  They will\n    # only match if strict=0 flag is given to the API methods.\n\n    # Please sort these too\n    common_types = _common_types_default = {\n        '.rtf' : 'application/rtf',\n        '.midi': 'audio/midi',\n        '.mid' : 'audio/midi',\n        '.jpg' : 'image/jpg',\n        '.pict': 'image/pict',\n        '.pct' : 'image/pict',\n        '.pic' : 'image/pict',\n        '.xul' : 'text/xul',\n        }\n\n\n_default_mime_types()\n\n\ndef _main():\n    import getopt\n\n    USAGE = \"\"\"\\\nUsage: mimetypes.py [options] type\n\nOptions:\n    --help / -h       -- print this message and exit\n    --lenient / -l    -- additionally search of some common, but non-standard\n                         types.\n    --extension / -e  -- guess extension instead of type\n\nMore than one type argument may be given.\n\"\"\"\n\n    def usage(code, msg=''):\n        print(USAGE)\n        if msg: print(msg)\n        sys.exit(code)\n\n    try:\n        opts, args = getopt.getopt(sys.argv[1:], 'hle',\n                                   ['help', 'lenient', 'extension'])\n    except getopt.error as msg:\n        usage(1, msg)\n\n    strict = 1\n    extension = 0\n    for opt, arg in opts:\n        if opt in ('-h', '--help'):\n            usage(0)\n        elif opt in ('-l', '--lenient'):\n            strict = 0\n        elif opt in ('-e', '--extension'):\n            extension = 1\n    for gtype in args:\n        if extension:\n            guess = guess_extension(gtype, strict)\n            if not guess: print(\"I don't know anything about type\", gtype)\n            else: print(guess)\n        else:\n            guess, encoding = guess_type(gtype, strict)\n            if not guess: print(\"I don't know anything about type\", gtype)\n            else: print('type:', guess, 'encoding:', encoding)\n\n\nif __name__ == '__main__':\n    _main()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/modulefinder.py",
    "content": "\"\"\"Find modules used by a script, using introspection.\"\"\"\n\nimport dis\nimport importlib._bootstrap_external\nimport importlib.machinery\nimport marshal\nimport os\nimport io\nimport sys\nimport types\nimport warnings\n\n\nLOAD_CONST = dis.opmap['LOAD_CONST']\nIMPORT_NAME = dis.opmap['IMPORT_NAME']\nSTORE_NAME = dis.opmap['STORE_NAME']\nSTORE_GLOBAL = dis.opmap['STORE_GLOBAL']\nSTORE_OPS = STORE_NAME, STORE_GLOBAL\nEXTENDED_ARG = dis.EXTENDED_ARG\n\n# Old imp constants:\n\n_SEARCH_ERROR = 0\n_PY_SOURCE = 1\n_PY_COMPILED = 2\n_C_EXTENSION = 3\n_PKG_DIRECTORY = 5\n_C_BUILTIN = 6\n_PY_FROZEN = 7\n\n# Modulefinder does a good job at simulating Python's, but it can not\n# handle __path__ modifications packages make at runtime.  Therefore there\n# is a mechanism whereby you can register extra paths in this map for a\n# package, and it will be honored.\n\n# Note this is a mapping is lists of paths.\npackagePathMap = {}\n\n# A Public interface\ndef AddPackagePath(packagename, path):\n    packagePathMap.setdefault(packagename, []).append(path)\n\nreplacePackageMap = {}\n\n# This ReplacePackage mechanism allows modulefinder to work around\n# situations in which a package injects itself under the name\n# of another package into sys.modules at runtime by calling\n# ReplacePackage(\"real_package_name\", \"faked_package_name\")\n# before running ModuleFinder.\n\ndef ReplacePackage(oldname, newname):\n    replacePackageMap[oldname] = newname\n\n\ndef _find_module(name, path=None):\n    \"\"\"An importlib reimplementation of imp.find_module (for our purposes).\"\"\"\n\n    # It's necessary to clear the caches for our Finder first, in case any\n    # modules are being added/deleted/modified at runtime. In particular,\n    # test_modulefinder.py changes file tree contents in a cache-breaking way:\n\n    importlib.machinery.PathFinder.invalidate_caches()\n\n    spec = importlib.machinery.PathFinder.find_spec(name, path)\n\n    if spec is None:\n        raise ImportError(\"No module named {name!r}\".format(name=name), name=name)\n\n    # Some special cases:\n\n    if spec.loader is importlib.machinery.BuiltinImporter:\n        return None, None, (\"\", \"\", _C_BUILTIN)\n\n    if spec.loader is importlib.machinery.FrozenImporter:\n        return None, None, (\"\", \"\", _PY_FROZEN)\n\n    file_path = spec.origin\n\n    if spec.loader.is_package(name):\n        return None, os.path.dirname(file_path), (\"\", \"\", _PKG_DIRECTORY)\n\n    if isinstance(spec.loader, importlib.machinery.SourceFileLoader):\n        kind = _PY_SOURCE\n\n    elif isinstance(spec.loader, importlib.machinery.ExtensionFileLoader):\n        kind = _C_EXTENSION\n\n    elif isinstance(spec.loader, importlib.machinery.SourcelessFileLoader):\n        kind = _PY_COMPILED\n\n    else:  # Should never happen.\n        return None, None, (\"\", \"\", _SEARCH_ERROR)\n\n    file = io.open_code(file_path)\n    suffix = os.path.splitext(file_path)[-1]\n\n    return file, file_path, (suffix, \"rb\", kind)\n\n\nclass Module:\n\n    def __init__(self, name, file=None, path=None):\n        self.__name__ = name\n        self.__file__ = file\n        self.__path__ = path\n        self.__code__ = None\n        # The set of global names that are assigned to in the module.\n        # This includes those names imported through starimports of\n        # Python modules.\n        self.globalnames = {}\n        # The set of starimports this module did that could not be\n        # resolved, ie. a starimport from a non-Python module.\n        self.starimports = {}\n\n    def __repr__(self):\n        s = \"Module(%r\" % (self.__name__,)\n        if self.__file__ is not None:\n            s = s + \", %r\" % (self.__file__,)\n        if self.__path__ is not None:\n            s = s + \", %r\" % (self.__path__,)\n        s = s + \")\"\n        return s\n\nclass ModuleFinder:\n\n    def __init__(self, path=None, debug=0, excludes=None, replace_paths=None):\n        if path is None:\n            path = sys.path\n        self.path = path\n        self.modules = {}\n        self.badmodules = {}\n        self.debug = debug\n        self.indent = 0\n        self.excludes = excludes if excludes is not None else []\n        self.replace_paths = replace_paths if replace_paths is not None else []\n        self.processed_paths = []   # Used in debugging only\n\n    def msg(self, level, str, *args):\n        if level <= self.debug:\n            for i in range(self.indent):\n                print(\"   \", end=' ')\n            print(str, end=' ')\n            for arg in args:\n                print(repr(arg), end=' ')\n            print()\n\n    def msgin(self, *args):\n        level = args[0]\n        if level <= self.debug:\n            self.indent = self.indent + 1\n            self.msg(*args)\n\n    def msgout(self, *args):\n        level = args[0]\n        if level <= self.debug:\n            self.indent = self.indent - 1\n            self.msg(*args)\n\n    def run_script(self, pathname):\n        self.msg(2, \"run_script\", pathname)\n        with io.open_code(pathname) as fp:\n            stuff = (\"\", \"rb\", _PY_SOURCE)\n            self.load_module('__main__', fp, pathname, stuff)\n\n    def load_file(self, pathname):\n        dir, name = os.path.split(pathname)\n        name, ext = os.path.splitext(name)\n        with io.open_code(pathname) as fp:\n            stuff = (ext, \"rb\", _PY_SOURCE)\n            self.load_module(name, fp, pathname, stuff)\n\n    def import_hook(self, name, caller=None, fromlist=None, level=-1):\n        self.msg(3, \"import_hook\", name, caller, fromlist, level)\n        parent = self.determine_parent(caller, level=level)\n        q, tail = self.find_head_package(parent, name)\n        m = self.load_tail(q, tail)\n        if not fromlist:\n            return q\n        if m.__path__:\n            self.ensure_fromlist(m, fromlist)\n        return None\n\n    def determine_parent(self, caller, level=-1):\n        self.msgin(4, \"determine_parent\", caller, level)\n        if not caller or level == 0:\n            self.msgout(4, \"determine_parent -> None\")\n            return None\n        pname = caller.__name__\n        if level >= 1: # relative import\n            if caller.__path__:\n                level -= 1\n            if level == 0:\n                parent = self.modules[pname]\n                assert parent is caller\n                self.msgout(4, \"determine_parent ->\", parent)\n                return parent\n            if pname.count(\".\") < level:\n                raise ImportError(\"relative importpath too deep\")\n            pname = \".\".join(pname.split(\".\")[:-level])\n            parent = self.modules[pname]\n            self.msgout(4, \"determine_parent ->\", parent)\n            return parent\n        if caller.__path__:\n            parent = self.modules[pname]\n            assert caller is parent\n            self.msgout(4, \"determine_parent ->\", parent)\n            return parent\n        if '.' in pname:\n            i = pname.rfind('.')\n            pname = pname[:i]\n            parent = self.modules[pname]\n            assert parent.__name__ == pname\n            self.msgout(4, \"determine_parent ->\", parent)\n            return parent\n        self.msgout(4, \"determine_parent -> None\")\n        return None\n\n    def find_head_package(self, parent, name):\n        self.msgin(4, \"find_head_package\", parent, name)\n        if '.' in name:\n            i = name.find('.')\n            head = name[:i]\n            tail = name[i+1:]\n        else:\n            head = name\n            tail = \"\"\n        if parent:\n            qname = \"%s.%s\" % (parent.__name__, head)\n        else:\n            qname = head\n        q = self.import_module(head, qname, parent)\n        if q:\n            self.msgout(4, \"find_head_package ->\", (q, tail))\n            return q, tail\n        if parent:\n            qname = head\n            parent = None\n            q = self.import_module(head, qname, parent)\n            if q:\n                self.msgout(4, \"find_head_package ->\", (q, tail))\n                return q, tail\n        self.msgout(4, \"raise ImportError: No module named\", qname)\n        raise ImportError(\"No module named \" + qname)\n\n    def load_tail(self, q, tail):\n        self.msgin(4, \"load_tail\", q, tail)\n        m = q\n        while tail:\n            i = tail.find('.')\n            if i < 0: i = len(tail)\n            head, tail = tail[:i], tail[i+1:]\n            mname = \"%s.%s\" % (m.__name__, head)\n            m = self.import_module(head, mname, m)\n            if not m:\n                self.msgout(4, \"raise ImportError: No module named\", mname)\n                raise ImportError(\"No module named \" + mname)\n        self.msgout(4, \"load_tail ->\", m)\n        return m\n\n    def ensure_fromlist(self, m, fromlist, recursive=0):\n        self.msg(4, \"ensure_fromlist\", m, fromlist, recursive)\n        for sub in fromlist:\n            if sub == \"*\":\n                if not recursive:\n                    all = self.find_all_submodules(m)\n                    if all:\n                        self.ensure_fromlist(m, all, 1)\n            elif not hasattr(m, sub):\n                subname = \"%s.%s\" % (m.__name__, sub)\n                submod = self.import_module(sub, subname, m)\n                if not submod:\n                    raise ImportError(\"No module named \" + subname)\n\n    def find_all_submodules(self, m):\n        if not m.__path__:\n            return\n        modules = {}\n        # 'suffixes' used to be a list hardcoded to [\".py\", \".pyc\"].\n        # But we must also collect Python extension modules - although\n        # we cannot separate normal dlls from Python extensions.\n        suffixes = []\n        suffixes += importlib.machinery.EXTENSION_SUFFIXES[:]\n        suffixes += importlib.machinery.SOURCE_SUFFIXES[:]\n        suffixes += importlib.machinery.BYTECODE_SUFFIXES[:]\n        for dir in m.__path__:\n            try:\n                names = os.listdir(dir)\n            except OSError:\n                self.msg(2, \"can't list directory\", dir)\n                continue\n            for name in names:\n                mod = None\n                for suff in suffixes:\n                    n = len(suff)\n                    if name[-n:] == suff:\n                        mod = name[:-n]\n                        break\n                if mod and mod != \"__init__\":\n                    modules[mod] = mod\n        return modules.keys()\n\n    def import_module(self, partname, fqname, parent):\n        self.msgin(3, \"import_module\", partname, fqname, parent)\n        try:\n            m = self.modules[fqname]\n        except KeyError:\n            pass\n        else:\n            self.msgout(3, \"import_module ->\", m)\n            return m\n        if fqname in self.badmodules:\n            self.msgout(3, \"import_module -> None\")\n            return None\n        if parent and parent.__path__ is None:\n            self.msgout(3, \"import_module -> None\")\n            return None\n        try:\n            fp, pathname, stuff = self.find_module(partname,\n                                                   parent and parent.__path__, parent)\n        except ImportError:\n            self.msgout(3, \"import_module ->\", None)\n            return None\n\n        try:\n            m = self.load_module(fqname, fp, pathname, stuff)\n        finally:\n            if fp:\n                fp.close()\n        if parent:\n            setattr(parent, partname, m)\n        self.msgout(3, \"import_module ->\", m)\n        return m\n\n    def load_module(self, fqname, fp, pathname, file_info):\n        suffix, mode, type = file_info\n        self.msgin(2, \"load_module\", fqname, fp and \"fp\", pathname)\n        if type == _PKG_DIRECTORY:\n            m = self.load_package(fqname, pathname)\n            self.msgout(2, \"load_module ->\", m)\n            return m\n        if type == _PY_SOURCE:\n            co = compile(fp.read(), pathname, 'exec')\n        elif type == _PY_COMPILED:\n            try:\n                data = fp.read()\n                importlib._bootstrap_external._classify_pyc(data, fqname, {})\n            except ImportError as exc:\n                self.msgout(2, \"raise ImportError: \" + str(exc), pathname)\n                raise\n            co = marshal.loads(memoryview(data)[16:])\n        else:\n            co = None\n        m = self.add_module(fqname)\n        m.__file__ = pathname\n        if co:\n            if self.replace_paths:\n                co = self.replace_paths_in_code(co)\n            m.__code__ = co\n            self.scan_code(co, m)\n        self.msgout(2, \"load_module ->\", m)\n        return m\n\n    def _add_badmodule(self, name, caller):\n        if name not in self.badmodules:\n            self.badmodules[name] = {}\n        if caller:\n            self.badmodules[name][caller.__name__] = 1\n        else:\n            self.badmodules[name][\"-\"] = 1\n\n    def _safe_import_hook(self, name, caller, fromlist, level=-1):\n        # wrapper for self.import_hook() that won't raise ImportError\n        if name in self.badmodules:\n            self._add_badmodule(name, caller)\n            return\n        try:\n            self.import_hook(name, caller, level=level)\n        except ImportError as msg:\n            self.msg(2, \"ImportError:\", str(msg))\n            self._add_badmodule(name, caller)\n        except SyntaxError as msg:\n            self.msg(2, \"SyntaxError:\", str(msg))\n            self._add_badmodule(name, caller)\n        else:\n            if fromlist:\n                for sub in fromlist:\n                    fullname = name + \".\" + sub\n                    if fullname in self.badmodules:\n                        self._add_badmodule(fullname, caller)\n                        continue\n                    try:\n                        self.import_hook(name, caller, [sub], level=level)\n                    except ImportError as msg:\n                        self.msg(2, \"ImportError:\", str(msg))\n                        self._add_badmodule(fullname, caller)\n\n    def scan_opcodes(self, co):\n        # Scan the code, and yield 'interesting' opcode combinations\n        code = co.co_code\n        names = co.co_names\n        consts = co.co_consts\n        opargs = [(op, arg) for _, op, arg in dis._unpack_opargs(code)\n                  if op != EXTENDED_ARG]\n        for i, (op, oparg) in enumerate(opargs):\n            if op in STORE_OPS:\n                yield \"store\", (names[oparg],)\n                continue\n            if (op == IMPORT_NAME and i >= 2\n                    and opargs[i-1][0] == opargs[i-2][0] == LOAD_CONST):\n                level = consts[opargs[i-2][1]]\n                fromlist = consts[opargs[i-1][1]]\n                if level == 0: # absolute import\n                    yield \"absolute_import\", (fromlist, names[oparg])\n                else: # relative import\n                    yield \"relative_import\", (level, fromlist, names[oparg])\n                continue\n\n    def scan_code(self, co, m):\n        code = co.co_code\n        scanner = self.scan_opcodes\n        for what, args in scanner(co):\n            if what == \"store\":\n                name, = args\n                m.globalnames[name] = 1\n            elif what == \"absolute_import\":\n                fromlist, name = args\n                have_star = 0\n                if fromlist is not None:\n                    if \"*\" in fromlist:\n                        have_star = 1\n                    fromlist = [f for f in fromlist if f != \"*\"]\n                self._safe_import_hook(name, m, fromlist, level=0)\n                if have_star:\n                    # We've encountered an \"import *\". If it is a Python module,\n                    # the code has already been parsed and we can suck out the\n                    # global names.\n                    mm = None\n                    if m.__path__:\n                        # At this point we don't know whether 'name' is a\n                        # submodule of 'm' or a global module. Let's just try\n                        # the full name first.\n                        mm = self.modules.get(m.__name__ + \".\" + name)\n                    if mm is None:\n                        mm = self.modules.get(name)\n                    if mm is not None:\n                        m.globalnames.update(mm.globalnames)\n                        m.starimports.update(mm.starimports)\n                        if mm.__code__ is None:\n                            m.starimports[name] = 1\n                    else:\n                        m.starimports[name] = 1\n            elif what == \"relative_import\":\n                level, fromlist, name = args\n                if name:\n                    self._safe_import_hook(name, m, fromlist, level=level)\n                else:\n                    parent = self.determine_parent(m, level=level)\n                    self._safe_import_hook(parent.__name__, None, fromlist, level=0)\n            else:\n                # We don't expect anything else from the generator.\n                raise RuntimeError(what)\n\n        for c in co.co_consts:\n            if isinstance(c, type(co)):\n                self.scan_code(c, m)\n\n    def load_package(self, fqname, pathname):\n        self.msgin(2, \"load_package\", fqname, pathname)\n        newname = replacePackageMap.get(fqname)\n        if newname:\n            fqname = newname\n        m = self.add_module(fqname)\n        m.__file__ = pathname\n        m.__path__ = [pathname]\n\n        # As per comment at top of file, simulate runtime __path__ additions.\n        m.__path__ = m.__path__ + packagePathMap.get(fqname, [])\n\n        fp, buf, stuff = self.find_module(\"__init__\", m.__path__)\n        try:\n            self.load_module(fqname, fp, buf, stuff)\n            self.msgout(2, \"load_package ->\", m)\n            return m\n        finally:\n            if fp:\n                fp.close()\n\n    def add_module(self, fqname):\n        if fqname in self.modules:\n            return self.modules[fqname]\n        self.modules[fqname] = m = Module(fqname)\n        return m\n\n    def find_module(self, name, path, parent=None):\n        if parent is not None:\n            # assert path is not None\n            fullname = parent.__name__+'.'+name\n        else:\n            fullname = name\n        if fullname in self.excludes:\n            self.msgout(3, \"find_module -> Excluded\", fullname)\n            raise ImportError(name)\n\n        if path is None:\n            if name in sys.builtin_module_names:\n                return (None, None, (\"\", \"\", _C_BUILTIN))\n\n            path = self.path\n\n        return _find_module(name, path)\n\n    def report(self):\n        \"\"\"Print a report to stdout, listing the found modules with their\n        paths, as well as modules that are missing, or seem to be missing.\n        \"\"\"\n        print()\n        print(\"  %-25s %s\" % (\"Name\", \"File\"))\n        print(\"  %-25s %s\" % (\"----\", \"----\"))\n        # Print modules found\n        keys = sorted(self.modules.keys())\n        for key in keys:\n            m = self.modules[key]\n            if m.__path__:\n                print(\"P\", end=' ')\n            else:\n                print(\"m\", end=' ')\n            print(\"%-25s\" % key, m.__file__ or \"\")\n\n        # Print missing modules\n        missing, maybe = self.any_missing_maybe()\n        if missing:\n            print()\n            print(\"Missing modules:\")\n            for name in missing:\n                mods = sorted(self.badmodules[name].keys())\n                print(\"?\", name, \"imported from\", ', '.join(mods))\n        # Print modules that may be missing, but then again, maybe not...\n        if maybe:\n            print()\n            print(\"Submodules that appear to be missing, but could also be\", end=' ')\n            print(\"global names in the parent package:\")\n            for name in maybe:\n                mods = sorted(self.badmodules[name].keys())\n                print(\"?\", name, \"imported from\", ', '.join(mods))\n\n    def any_missing(self):\n        \"\"\"Return a list of modules that appear to be missing. Use\n        any_missing_maybe() if you want to know which modules are\n        certain to be missing, and which *may* be missing.\n        \"\"\"\n        missing, maybe = self.any_missing_maybe()\n        return missing + maybe\n\n    def any_missing_maybe(self):\n        \"\"\"Return two lists, one with modules that are certainly missing\n        and one with modules that *may* be missing. The latter names could\n        either be submodules *or* just global names in the package.\n\n        The reason it can't always be determined is that it's impossible to\n        tell which names are imported when \"from module import *\" is done\n        with an extension module, short of actually importing it.\n        \"\"\"\n        missing = []\n        maybe = []\n        for name in self.badmodules:\n            if name in self.excludes:\n                continue\n            i = name.rfind(\".\")\n            if i < 0:\n                missing.append(name)\n                continue\n            subname = name[i+1:]\n            pkgname = name[:i]\n            pkg = self.modules.get(pkgname)\n            if pkg is not None:\n                if pkgname in self.badmodules[name]:\n                    # The package tried to import this module itself and\n                    # failed. It's definitely missing.\n                    missing.append(name)\n                elif subname in pkg.globalnames:\n                    # It's a global in the package: definitely not missing.\n                    pass\n                elif pkg.starimports:\n                    # It could be missing, but the package did an \"import *\"\n                    # from a non-Python module, so we simply can't be sure.\n                    maybe.append(name)\n                else:\n                    # It's not a global in the package, the package didn't\n                    # do funny star imports, it's very likely to be missing.\n                    # The symbol could be inserted into the package from the\n                    # outside, but since that's not good style we simply list\n                    # it missing.\n                    missing.append(name)\n            else:\n                missing.append(name)\n        missing.sort()\n        maybe.sort()\n        return missing, maybe\n\n    def replace_paths_in_code(self, co):\n        new_filename = original_filename = os.path.normpath(co.co_filename)\n        for f, r in self.replace_paths:\n            if original_filename.startswith(f):\n                new_filename = r + original_filename[len(f):]\n                break\n\n        if self.debug and original_filename not in self.processed_paths:\n            if new_filename != original_filename:\n                self.msgout(2, \"co_filename %r changed to %r\" \\\n                                    % (original_filename,new_filename,))\n            else:\n                self.msgout(2, \"co_filename %r remains unchanged\" \\\n                                    % (original_filename,))\n            self.processed_paths.append(original_filename)\n\n        consts = list(co.co_consts)\n        for i in range(len(consts)):\n            if isinstance(consts[i], type(co)):\n                consts[i] = self.replace_paths_in_code(consts[i])\n\n        return co.replace(co_consts=tuple(consts), co_filename=new_filename)\n\n\ndef test():\n    # Parse command line\n    import getopt\n    try:\n        opts, args = getopt.getopt(sys.argv[1:], \"dmp:qx:\")\n    except getopt.error as msg:\n        print(msg)\n        return\n\n    # Process options\n    debug = 1\n    domods = 0\n    addpath = []\n    exclude = []\n    for o, a in opts:\n        if o == '-d':\n            debug = debug + 1\n        if o == '-m':\n            domods = 1\n        if o == '-p':\n            addpath = addpath + a.split(os.pathsep)\n        if o == '-q':\n            debug = 0\n        if o == '-x':\n            exclude.append(a)\n\n    # Provide default arguments\n    if not args:\n        script = \"hello.py\"\n    else:\n        script = args[0]\n\n    # Set the path based on sys.path and the script directory\n    path = sys.path[:]\n    path[0] = os.path.dirname(script)\n    path = addpath + path\n    if debug > 1:\n        print(\"path:\")\n        for item in path:\n            print(\"   \", repr(item))\n\n    # Create the module finder and turn its crank\n    mf = ModuleFinder(path, debug, exclude)\n    for arg in args[1:]:\n        if arg == '-m':\n            domods = 1\n            continue\n        if domods:\n            if arg[-2:] == '.*':\n                mf.import_hook(arg[:-2], None, [\"*\"])\n            else:\n                mf.import_hook(arg)\n        else:\n            mf.load_file(arg)\n    mf.run_script(script)\n    mf.report()\n    return mf  # for -i debugging\n\n\nif __name__ == '__main__':\n    try:\n        mf = test()\n    except KeyboardInterrupt:\n        print(\"\\n[interrupted]\")\n"
  },
  {
    "path": "rd/usr/lib/python3.8/netrc.py",
    "content": "\"\"\"An object-oriented interface to .netrc files.\"\"\"\n\n# Module and documentation by Eric S. Raymond, 21 Dec 1998\n\nimport os, shlex, stat\n\n__all__ = [\"netrc\", \"NetrcParseError\"]\n\n\nclass NetrcParseError(Exception):\n    \"\"\"Exception raised on syntax errors in the .netrc file.\"\"\"\n    def __init__(self, msg, filename=None, lineno=None):\n        self.filename = filename\n        self.lineno = lineno\n        self.msg = msg\n        Exception.__init__(self, msg)\n\n    def __str__(self):\n        return \"%s (%s, line %s)\" % (self.msg, self.filename, self.lineno)\n\n\nclass netrc:\n    def __init__(self, file=None):\n        default_netrc = file is None\n        if file is None:\n            file = os.path.join(os.path.expanduser(\"~\"), \".netrc\")\n        self.hosts = {}\n        self.macros = {}\n        with open(file) as fp:\n            self._parse(file, fp, default_netrc)\n\n    def _parse(self, file, fp, default_netrc):\n        lexer = shlex.shlex(fp)\n        lexer.wordchars += r\"\"\"!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~\"\"\"\n        lexer.commenters = lexer.commenters.replace('#', '')\n        while 1:\n            # Look for a machine, default, or macdef top-level keyword\n            saved_lineno = lexer.lineno\n            toplevel = tt = lexer.get_token()\n            if not tt:\n                break\n            elif tt[0] == '#':\n                if lexer.lineno == saved_lineno and len(tt) == 1:\n                    lexer.instream.readline()\n                continue\n            elif tt == 'machine':\n                entryname = lexer.get_token()\n            elif tt == 'default':\n                entryname = 'default'\n            elif tt == 'macdef':                # Just skip to end of macdefs\n                entryname = lexer.get_token()\n                self.macros[entryname] = []\n                lexer.whitespace = ' \\t'\n                while 1:\n                    line = lexer.instream.readline()\n                    if not line or line == '\\012':\n                        lexer.whitespace = ' \\t\\r\\n'\n                        break\n                    self.macros[entryname].append(line)\n                continue\n            else:\n                raise NetrcParseError(\n                    \"bad toplevel token %r\" % tt, file, lexer.lineno)\n\n            # We're looking at start of an entry for a named machine or default.\n            login = ''\n            account = password = None\n            self.hosts[entryname] = {}\n            while 1:\n                tt = lexer.get_token()\n                if (tt.startswith('#') or\n                    tt in {'', 'machine', 'default', 'macdef'}):\n                    if password:\n                        self.hosts[entryname] = (login, account, password)\n                        lexer.push_token(tt)\n                        break\n                    else:\n                        raise NetrcParseError(\n                            \"malformed %s entry %s terminated by %s\"\n                            % (toplevel, entryname, repr(tt)),\n                            file, lexer.lineno)\n                elif tt == 'login' or tt == 'user':\n                    login = lexer.get_token()\n                elif tt == 'account':\n                    account = lexer.get_token()\n                elif tt == 'password':\n                    if os.name == 'posix' and default_netrc:\n                        prop = os.fstat(fp.fileno())\n                        if prop.st_uid != os.getuid():\n                            import pwd\n                            try:\n                                fowner = pwd.getpwuid(prop.st_uid)[0]\n                            except KeyError:\n                                fowner = 'uid %s' % prop.st_uid\n                            try:\n                                user = pwd.getpwuid(os.getuid())[0]\n                            except KeyError:\n                                user = 'uid %s' % os.getuid()\n                            raise NetrcParseError(\n                                (\"~/.netrc file owner (%s) does not match\"\n                                 \" current user (%s)\") % (fowner, user),\n                                file, lexer.lineno)\n                        if (prop.st_mode & (stat.S_IRWXG | stat.S_IRWXO)):\n                            raise NetrcParseError(\n                               \"~/.netrc access too permissive: access\"\n                               \" permissions must restrict access to only\"\n                               \" the owner\", file, lexer.lineno)\n                    password = lexer.get_token()\n                else:\n                    raise NetrcParseError(\"bad follower token %r\" % tt,\n                                          file, lexer.lineno)\n\n    def authenticators(self, host):\n        \"\"\"Return a (user, account, password) tuple for given host.\"\"\"\n        if host in self.hosts:\n            return self.hosts[host]\n        elif 'default' in self.hosts:\n            return self.hosts['default']\n        else:\n            return None\n\n    def __repr__(self):\n        \"\"\"Dump the class data in the format of a .netrc file.\"\"\"\n        rep = \"\"\n        for host in self.hosts.keys():\n            attrs = self.hosts[host]\n            rep += f\"machine {host}\\n\\tlogin {attrs[0]}\\n\"\n            if attrs[1]:\n                rep += f\"\\taccount {attrs[1]}\\n\"\n            rep += f\"\\tpassword {attrs[2]}\\n\"\n        for macro in self.macros.keys():\n            rep += f\"macdef {macro}\\n\"\n            for line in self.macros[macro]:\n                rep += line\n            rep += \"\\n\"\n        return rep\n\nif __name__ == '__main__':\n    print(netrc())\n"
  },
  {
    "path": "rd/usr/lib/python3.8/ntpath.py",
    "content": "# Module 'ntpath' -- common operations on WinNT/Win95 pathnames\n\"\"\"Common pathname manipulations, WindowsNT/95 version.\n\nInstead of importing this module directly, import os and refer to this\nmodule as os.path.\n\"\"\"\n\n# strings representing various path-related bits and pieces\n# These are primarily for export; internally, they are hardcoded.\n# Should be set before imports for resolving cyclic dependency.\ncurdir = '.'\npardir = '..'\nextsep = '.'\nsep = '\\\\'\npathsep = ';'\naltsep = '/'\ndefpath = '.;C:\\\\bin'\ndevnull = 'nul'\n\nimport os\nimport sys\nimport stat\nimport genericpath\nfrom genericpath import *\n\n__all__ = [\"normcase\",\"isabs\",\"join\",\"splitdrive\",\"split\",\"splitext\",\n           \"basename\",\"dirname\",\"commonprefix\",\"getsize\",\"getmtime\",\n           \"getatime\",\"getctime\", \"islink\",\"exists\",\"lexists\",\"isdir\",\"isfile\",\n           \"ismount\", \"expanduser\",\"expandvars\",\"normpath\",\"abspath\",\n           \"curdir\",\"pardir\",\"sep\",\"pathsep\",\"defpath\",\"altsep\",\n           \"extsep\",\"devnull\",\"realpath\",\"supports_unicode_filenames\",\"relpath\",\n           \"samefile\", \"sameopenfile\", \"samestat\", \"commonpath\"]\n\ndef _get_bothseps(path):\n    if isinstance(path, bytes):\n        return b'\\\\/'\n    else:\n        return '\\\\/'\n\n# Normalize the case of a pathname and map slashes to backslashes.\n# Other normalizations (such as optimizing '../' away) are not done\n# (this is done by normpath).\n\ndef normcase(s):\n    \"\"\"Normalize case of pathname.\n\n    Makes all characters lowercase and all slashes into backslashes.\"\"\"\n    s = os.fspath(s)\n    if isinstance(s, bytes):\n        return s.replace(b'/', b'\\\\').lower()\n    else:\n        return s.replace('/', '\\\\').lower()\n\n\n# Return whether a path is absolute.\n# Trivial in Posix, harder on Windows.\n# For Windows it is absolute if it starts with a slash or backslash (current\n# volume), or if a pathname after the volume-letter-and-colon or UNC-resource\n# starts with a slash or backslash.\n\ndef isabs(s):\n    \"\"\"Test whether a path is absolute\"\"\"\n    s = os.fspath(s)\n    # Paths beginning with \\\\?\\ are always absolute, but do not\n    # necessarily contain a drive.\n    if isinstance(s, bytes):\n        if s.replace(b'/', b'\\\\').startswith(b'\\\\\\\\?\\\\'):\n            return True\n    else:\n        if s.replace('/', '\\\\').startswith('\\\\\\\\?\\\\'):\n            return True\n    s = splitdrive(s)[1]\n    return len(s) > 0 and s[0] in _get_bothseps(s)\n\n\n# Join two (or more) paths.\ndef join(path, *paths):\n    path = os.fspath(path)\n    if isinstance(path, bytes):\n        sep = b'\\\\'\n        seps = b'\\\\/'\n        colon = b':'\n    else:\n        sep = '\\\\'\n        seps = '\\\\/'\n        colon = ':'\n    try:\n        if not paths:\n            path[:0] + sep  #23780: Ensure compatible data type even if p is null.\n        result_drive, result_path = splitdrive(path)\n        for p in map(os.fspath, paths):\n            p_drive, p_path = splitdrive(p)\n            if p_path and p_path[0] in seps:\n                # Second path is absolute\n                if p_drive or not result_drive:\n                    result_drive = p_drive\n                result_path = p_path\n                continue\n            elif p_drive and p_drive != result_drive:\n                if p_drive.lower() != result_drive.lower():\n                    # Different drives => ignore the first path entirely\n                    result_drive = p_drive\n                    result_path = p_path\n                    continue\n                # Same drive in different case\n                result_drive = p_drive\n            # Second path is relative to the first\n            if result_path and result_path[-1] not in seps:\n                result_path = result_path + sep\n            result_path = result_path + p_path\n        ## add separator between UNC and non-absolute path\n        if (result_path and result_path[0] not in seps and\n            result_drive and result_drive[-1:] != colon):\n            return result_drive + sep + result_path\n        return result_drive + result_path\n    except (TypeError, AttributeError, BytesWarning):\n        genericpath._check_arg_types('join', path, *paths)\n        raise\n\n\n# Split a path in a drive specification (a drive letter followed by a\n# colon) and the path specification.\n# It is always true that drivespec + pathspec == p\ndef splitdrive(p):\n    \"\"\"Split a pathname into drive/UNC sharepoint and relative path specifiers.\n    Returns a 2-tuple (drive_or_unc, path); either part may be empty.\n\n    If you assign\n        result = splitdrive(p)\n    It is always true that:\n        result[0] + result[1] == p\n\n    If the path contained a drive letter, drive_or_unc will contain everything\n    up to and including the colon.  e.g. splitdrive(\"c:/dir\") returns (\"c:\", \"/dir\")\n\n    If the path contained a UNC path, the drive_or_unc will contain the host name\n    and share up to but not including the fourth directory separator character.\n    e.g. splitdrive(\"//host/computer/dir\") returns (\"//host/computer\", \"/dir\")\n\n    Paths cannot contain both a drive letter and a UNC path.\n\n    \"\"\"\n    p = os.fspath(p)\n    if len(p) >= 2:\n        if isinstance(p, bytes):\n            sep = b'\\\\'\n            altsep = b'/'\n            colon = b':'\n        else:\n            sep = '\\\\'\n            altsep = '/'\n            colon = ':'\n        normp = p.replace(altsep, sep)\n        if (normp[0:2] == sep*2) and (normp[2:3] != sep):\n            # is a UNC path:\n            # vvvvvvvvvvvvvvvvvvvv drive letter or UNC path\n            # \\\\machine\\mountpoint\\directory\\etc\\...\n            #           directory ^^^^^^^^^^^^^^^\n            index = normp.find(sep, 2)\n            if index == -1:\n                return p[:0], p\n            index2 = normp.find(sep, index + 1)\n            # a UNC path can't have two slashes in a row\n            # (after the initial two)\n            if index2 == index + 1:\n                return p[:0], p\n            if index2 == -1:\n                index2 = len(p)\n            return p[:index2], p[index2:]\n        if normp[1:2] == colon:\n            return p[:2], p[2:]\n    return p[:0], p\n\n\n# Split a path in head (everything up to the last '/') and tail (the\n# rest).  After the trailing '/' is stripped, the invariant\n# join(head, tail) == p holds.\n# The resulting head won't end in '/' unless it is the root.\n\ndef split(p):\n    \"\"\"Split a pathname.\n\n    Return tuple (head, tail) where tail is everything after the final slash.\n    Either part may be empty.\"\"\"\n    p = os.fspath(p)\n    seps = _get_bothseps(p)\n    d, p = splitdrive(p)\n    # set i to index beyond p's last slash\n    i = len(p)\n    while i and p[i-1] not in seps:\n        i -= 1\n    head, tail = p[:i], p[i:]  # now tail has no slashes\n    # remove trailing slashes from head, unless it's all slashes\n    head = head.rstrip(seps) or head\n    return d + head, tail\n\n\n# Split a path in root and extension.\n# The extension is everything starting at the last dot in the last\n# pathname component; the root is everything before that.\n# It is always true that root + ext == p.\n\ndef splitext(p):\n    p = os.fspath(p)\n    if isinstance(p, bytes):\n        return genericpath._splitext(p, b'\\\\', b'/', b'.')\n    else:\n        return genericpath._splitext(p, '\\\\', '/', '.')\nsplitext.__doc__ = genericpath._splitext.__doc__\n\n\n# Return the tail (basename) part of a path.\n\ndef basename(p):\n    \"\"\"Returns the final component of a pathname\"\"\"\n    return split(p)[1]\n\n\n# Return the head (dirname) part of a path.\n\ndef dirname(p):\n    \"\"\"Returns the directory component of a pathname\"\"\"\n    return split(p)[0]\n\n# Is a path a symbolic link?\n# This will always return false on systems where os.lstat doesn't exist.\n\ndef islink(path):\n    \"\"\"Test whether a path is a symbolic link.\n    This will always return false for Windows prior to 6.0.\n    \"\"\"\n    try:\n        st = os.lstat(path)\n    except (OSError, ValueError, AttributeError):\n        return False\n    return stat.S_ISLNK(st.st_mode)\n\n# Being true for dangling symbolic links is also useful.\n\ndef lexists(path):\n    \"\"\"Test whether a path exists.  Returns True for broken symbolic links\"\"\"\n    try:\n        st = os.lstat(path)\n    except (OSError, ValueError):\n        return False\n    return True\n\n# Is a path a mount point?\n# Any drive letter root (eg c:\\)\n# Any share UNC (eg \\\\server\\share)\n# Any volume mounted on a filesystem folder\n#\n# No one method detects all three situations. Historically we've lexically\n# detected drive letter roots and share UNCs. The canonical approach to\n# detecting mounted volumes (querying the reparse tag) fails for the most\n# common case: drive letter roots. The alternative which uses GetVolumePathName\n# fails if the drive letter is the result of a SUBST.\ntry:\n    from nt import _getvolumepathname\nexcept ImportError:\n    _getvolumepathname = None\ndef ismount(path):\n    \"\"\"Test whether a path is a mount point (a drive root, the root of a\n    share, or a mounted volume)\"\"\"\n    path = os.fspath(path)\n    seps = _get_bothseps(path)\n    path = abspath(path)\n    root, rest = splitdrive(path)\n    if root and root[0] in seps:\n        return (not rest) or (rest in seps)\n    if rest in seps:\n        return True\n\n    if _getvolumepathname:\n        return path.rstrip(seps) == _getvolumepathname(path).rstrip(seps)\n    else:\n        return False\n\n\n# Expand paths beginning with '~' or '~user'.\n# '~' means $HOME; '~user' means that user's home directory.\n# If the path doesn't begin with '~', or if the user or $HOME is unknown,\n# the path is returned unchanged (leaving error reporting to whatever\n# function is called with the expanded path as argument).\n# See also module 'glob' for expansion of *, ? and [...] in pathnames.\n# (A function should also be defined to do full *sh-style environment\n# variable expansion.)\n\ndef expanduser(path):\n    \"\"\"Expand ~ and ~user constructs.\n\n    If user or $HOME is unknown, do nothing.\"\"\"\n    path = os.fspath(path)\n    if isinstance(path, bytes):\n        tilde = b'~'\n    else:\n        tilde = '~'\n    if not path.startswith(tilde):\n        return path\n    i, n = 1, len(path)\n    while i < n and path[i] not in _get_bothseps(path):\n        i += 1\n\n    if 'USERPROFILE' in os.environ:\n        userhome = os.environ['USERPROFILE']\n    elif not 'HOMEPATH' in os.environ:\n        return path\n    else:\n        try:\n            drive = os.environ['HOMEDRIVE']\n        except KeyError:\n            drive = ''\n        userhome = join(drive, os.environ['HOMEPATH'])\n\n    if isinstance(path, bytes):\n        userhome = os.fsencode(userhome)\n\n    if i != 1: #~user\n        userhome = join(dirname(userhome), path[1:i])\n\n    return userhome + path[i:]\n\n\n# Expand paths containing shell variable substitutions.\n# The following rules apply:\n#       - no expansion within single quotes\n#       - '$$' is translated into '$'\n#       - '%%' is translated into '%' if '%%' are not seen in %var1%%var2%\n#       - ${varname} is accepted.\n#       - $varname is accepted.\n#       - %varname% is accepted.\n#       - varnames can be made out of letters, digits and the characters '_-'\n#         (though is not verified in the ${varname} and %varname% cases)\n# XXX With COMMAND.COM you can use any characters in a variable name,\n# XXX except '^|<>='.\n\ndef expandvars(path):\n    \"\"\"Expand shell variables of the forms $var, ${var} and %var%.\n\n    Unknown variables are left unchanged.\"\"\"\n    path = os.fspath(path)\n    if isinstance(path, bytes):\n        if b'$' not in path and b'%' not in path:\n            return path\n        import string\n        varchars = bytes(string.ascii_letters + string.digits + '_-', 'ascii')\n        quote = b'\\''\n        percent = b'%'\n        brace = b'{'\n        rbrace = b'}'\n        dollar = b'$'\n        environ = getattr(os, 'environb', None)\n    else:\n        if '$' not in path and '%' not in path:\n            return path\n        import string\n        varchars = string.ascii_letters + string.digits + '_-'\n        quote = '\\''\n        percent = '%'\n        brace = '{'\n        rbrace = '}'\n        dollar = '$'\n        environ = os.environ\n    res = path[:0]\n    index = 0\n    pathlen = len(path)\n    while index < pathlen:\n        c = path[index:index+1]\n        if c == quote:   # no expansion within single quotes\n            path = path[index + 1:]\n            pathlen = len(path)\n            try:\n                index = path.index(c)\n                res += c + path[:index + 1]\n            except ValueError:\n                res += c + path\n                index = pathlen - 1\n        elif c == percent:  # variable or '%'\n            if path[index + 1:index + 2] == percent:\n                res += c\n                index += 1\n            else:\n                path = path[index+1:]\n                pathlen = len(path)\n                try:\n                    index = path.index(percent)\n                except ValueError:\n                    res += percent + path\n                    index = pathlen - 1\n                else:\n                    var = path[:index]\n                    try:\n                        if environ is None:\n                            value = os.fsencode(os.environ[os.fsdecode(var)])\n                        else:\n                            value = environ[var]\n                    except KeyError:\n                        value = percent + var + percent\n                    res += value\n        elif c == dollar:  # variable or '$$'\n            if path[index + 1:index + 2] == dollar:\n                res += c\n                index += 1\n            elif path[index + 1:index + 2] == brace:\n                path = path[index+2:]\n                pathlen = len(path)\n                try:\n                    index = path.index(rbrace)\n                except ValueError:\n                    res += dollar + brace + path\n                    index = pathlen - 1\n                else:\n                    var = path[:index]\n                    try:\n                        if environ is None:\n                            value = os.fsencode(os.environ[os.fsdecode(var)])\n                        else:\n                            value = environ[var]\n                    except KeyError:\n                        value = dollar + brace + var + rbrace\n                    res += value\n            else:\n                var = path[:0]\n                index += 1\n                c = path[index:index + 1]\n                while c and c in varchars:\n                    var += c\n                    index += 1\n                    c = path[index:index + 1]\n                try:\n                    if environ is None:\n                        value = os.fsencode(os.environ[os.fsdecode(var)])\n                    else:\n                        value = environ[var]\n                except KeyError:\n                    value = dollar + var\n                res += value\n                if c:\n                    index -= 1\n        else:\n            res += c\n        index += 1\n    return res\n\n\n# Normalize a path, e.g. A//B, A/./B and A/foo/../B all become A\\B.\n# Previously, this function also truncated pathnames to 8+3 format,\n# but as this module is called \"ntpath\", that's obviously wrong!\n\ndef normpath(path):\n    \"\"\"Normalize path, eliminating double slashes, etc.\"\"\"\n    path = os.fspath(path)\n    if isinstance(path, bytes):\n        sep = b'\\\\'\n        altsep = b'/'\n        curdir = b'.'\n        pardir = b'..'\n        special_prefixes = (b'\\\\\\\\.\\\\', b'\\\\\\\\?\\\\')\n    else:\n        sep = '\\\\'\n        altsep = '/'\n        curdir = '.'\n        pardir = '..'\n        special_prefixes = ('\\\\\\\\.\\\\', '\\\\\\\\?\\\\')\n    if path.startswith(special_prefixes):\n        # in the case of paths with these prefixes:\n        # \\\\.\\ -> device names\n        # \\\\?\\ -> literal paths\n        # do not do any normalization, but return the path\n        # unchanged apart from the call to os.fspath()\n        return path\n    path = path.replace(altsep, sep)\n    prefix, path = splitdrive(path)\n\n    # collapse initial backslashes\n    if path.startswith(sep):\n        prefix += sep\n        path = path.lstrip(sep)\n\n    comps = path.split(sep)\n    i = 0\n    while i < len(comps):\n        if not comps[i] or comps[i] == curdir:\n            del comps[i]\n        elif comps[i] == pardir:\n            if i > 0 and comps[i-1] != pardir:\n                del comps[i-1:i+1]\n                i -= 1\n            elif i == 0 and prefix.endswith(sep):\n                del comps[i]\n            else:\n                i += 1\n        else:\n            i += 1\n    # If the path is now empty, substitute '.'\n    if not prefix and not comps:\n        comps.append(curdir)\n    return prefix + sep.join(comps)\n\ndef _abspath_fallback(path):\n    \"\"\"Return the absolute version of a path as a fallback function in case\n    `nt._getfullpathname` is not available or raises OSError. See bpo-31047 for\n    more.\n\n    \"\"\"\n\n    path = os.fspath(path)\n    if not isabs(path):\n        if isinstance(path, bytes):\n            cwd = os.getcwdb()\n        else:\n            cwd = os.getcwd()\n        path = join(cwd, path)\n    return normpath(path)\n\n# Return an absolute path.\ntry:\n    from nt import _getfullpathname\n\nexcept ImportError: # not running on Windows - mock up something sensible\n    abspath = _abspath_fallback\n\nelse:  # use native Windows method on Windows\n    def abspath(path):\n        \"\"\"Return the absolute version of a path.\"\"\"\n        try:\n            return normpath(_getfullpathname(path))\n        except (OSError, ValueError):\n            return _abspath_fallback(path)\n\ntry:\n    from nt import _getfinalpathname, readlink as _nt_readlink\nexcept ImportError:\n    # realpath is a no-op on systems without _getfinalpathname support.\n    realpath = abspath\nelse:\n    def _readlink_deep(path):\n        # These error codes indicate that we should stop reading links and\n        # return the path we currently have.\n        # 1: ERROR_INVALID_FUNCTION\n        # 2: ERROR_FILE_NOT_FOUND\n        # 3: ERROR_DIRECTORY_NOT_FOUND\n        # 5: ERROR_ACCESS_DENIED\n        # 21: ERROR_NOT_READY (implies drive with no media)\n        # 32: ERROR_SHARING_VIOLATION (probably an NTFS paging file)\n        # 50: ERROR_NOT_SUPPORTED (implies no support for reparse points)\n        # 67: ERROR_BAD_NET_NAME (implies remote server unavailable)\n        # 87: ERROR_INVALID_PARAMETER\n        # 4390: ERROR_NOT_A_REPARSE_POINT\n        # 4392: ERROR_INVALID_REPARSE_DATA\n        # 4393: ERROR_REPARSE_TAG_INVALID\n        allowed_winerror = 1, 2, 3, 5, 21, 32, 50, 67, 87, 4390, 4392, 4393\n\n        seen = set()\n        while normcase(path) not in seen:\n            seen.add(normcase(path))\n            try:\n                old_path = path\n                path = _nt_readlink(path)\n                # Links may be relative, so resolve them against their\n                # own location\n                if not isabs(path):\n                    # If it's something other than a symlink, we don't know\n                    # what it's actually going to be resolved against, so\n                    # just return the old path.\n                    if not islink(old_path):\n                        path = old_path\n                        break\n                    path = normpath(join(dirname(old_path), path))\n            except OSError as ex:\n                if ex.winerror in allowed_winerror:\n                    break\n                raise\n            except ValueError:\n                # Stop on reparse points that are not symlinks\n                break\n        return path\n\n    def _getfinalpathname_nonstrict(path):\n        # These error codes indicate that we should stop resolving the path\n        # and return the value we currently have.\n        # 1: ERROR_INVALID_FUNCTION\n        # 2: ERROR_FILE_NOT_FOUND\n        # 3: ERROR_DIRECTORY_NOT_FOUND\n        # 5: ERROR_ACCESS_DENIED\n        # 21: ERROR_NOT_READY (implies drive with no media)\n        # 32: ERROR_SHARING_VIOLATION (probably an NTFS paging file)\n        # 50: ERROR_NOT_SUPPORTED\n        # 67: ERROR_BAD_NET_NAME (implies remote server unavailable)\n        # 87: ERROR_INVALID_PARAMETER\n        # 123: ERROR_INVALID_NAME\n        # 1920: ERROR_CANT_ACCESS_FILE\n        # 1921: ERROR_CANT_RESOLVE_FILENAME (implies unfollowable symlink)\n        allowed_winerror = 1, 2, 3, 5, 21, 32, 50, 67, 87, 123, 1920, 1921\n\n        # Non-strict algorithm is to find as much of the target directory\n        # as we can and join the rest.\n        tail = ''\n        while path:\n            try:\n                path = _getfinalpathname(path)\n                return join(path, tail) if tail else path\n            except OSError as ex:\n                if ex.winerror not in allowed_winerror:\n                    raise\n                try:\n                    # The OS could not resolve this path fully, so we attempt\n                    # to follow the link ourselves. If we succeed, join the tail\n                    # and return.\n                    new_path = _readlink_deep(path)\n                    if new_path != path:\n                        return join(new_path, tail) if tail else new_path\n                except OSError:\n                    # If we fail to readlink(), let's keep traversing\n                    pass\n                path, name = split(path)\n                # TODO (bpo-38186): Request the real file name from the directory\n                # entry using FindFirstFileW. For now, we will return the path\n                # as best we have it\n                if path and not name:\n                    return path + tail\n                tail = join(name, tail) if tail else name\n        return tail\n\n    def realpath(path):\n        path = normpath(path)\n        if isinstance(path, bytes):\n            prefix = b'\\\\\\\\?\\\\'\n            unc_prefix = b'\\\\\\\\?\\\\UNC\\\\'\n            new_unc_prefix = b'\\\\\\\\'\n            cwd = os.getcwdb()\n            # bpo-38081: Special case for realpath(b'nul')\n            if normcase(path) == normcase(os.fsencode(devnull)):\n                return b'\\\\\\\\.\\\\NUL'\n        else:\n            prefix = '\\\\\\\\?\\\\'\n            unc_prefix = '\\\\\\\\?\\\\UNC\\\\'\n            new_unc_prefix = '\\\\\\\\'\n            cwd = os.getcwd()\n            # bpo-38081: Special case for realpath('nul')\n            if normcase(path) == normcase(devnull):\n                return '\\\\\\\\.\\\\NUL'\n        had_prefix = path.startswith(prefix)\n        if not had_prefix and not isabs(path):\n            path = join(cwd, path)\n        try:\n            path = _getfinalpathname(path)\n            initial_winerror = 0\n        except OSError as ex:\n            initial_winerror = ex.winerror\n            path = _getfinalpathname_nonstrict(path)\n        # The path returned by _getfinalpathname will always start with \\\\?\\ -\n        # strip off that prefix unless it was already provided on the original\n        # path.\n        if not had_prefix and path.startswith(prefix):\n            # For UNC paths, the prefix will actually be \\\\?\\UNC\\\n            # Handle that case as well.\n            if path.startswith(unc_prefix):\n                spath = new_unc_prefix + path[len(unc_prefix):]\n            else:\n                spath = path[len(prefix):]\n            # Ensure that the non-prefixed path resolves to the same path\n            try:\n                if _getfinalpathname(spath) == path:\n                    path = spath\n            except OSError as ex:\n                # If the path does not exist and originally did not exist, then\n                # strip the prefix anyway.\n                if ex.winerror == initial_winerror:\n                    path = spath\n        return path\n\n\n# Win9x family and earlier have no Unicode filename support.\nsupports_unicode_filenames = (hasattr(sys, \"getwindowsversion\") and\n                              sys.getwindowsversion()[3] >= 2)\n\ndef relpath(path, start=None):\n    \"\"\"Return a relative version of a path\"\"\"\n    path = os.fspath(path)\n    if isinstance(path, bytes):\n        sep = b'\\\\'\n        curdir = b'.'\n        pardir = b'..'\n    else:\n        sep = '\\\\'\n        curdir = '.'\n        pardir = '..'\n\n    if start is None:\n        start = curdir\n\n    if not path:\n        raise ValueError(\"no path specified\")\n\n    start = os.fspath(start)\n    try:\n        start_abs = abspath(normpath(start))\n        path_abs = abspath(normpath(path))\n        start_drive, start_rest = splitdrive(start_abs)\n        path_drive, path_rest = splitdrive(path_abs)\n        if normcase(start_drive) != normcase(path_drive):\n            raise ValueError(\"path is on mount %r, start on mount %r\" % (\n                path_drive, start_drive))\n\n        start_list = [x for x in start_rest.split(sep) if x]\n        path_list = [x for x in path_rest.split(sep) if x]\n        # Work out how much of the filepath is shared by start and path.\n        i = 0\n        for e1, e2 in zip(start_list, path_list):\n            if normcase(e1) != normcase(e2):\n                break\n            i += 1\n\n        rel_list = [pardir] * (len(start_list)-i) + path_list[i:]\n        if not rel_list:\n            return curdir\n        return join(*rel_list)\n    except (TypeError, ValueError, AttributeError, BytesWarning, DeprecationWarning):\n        genericpath._check_arg_types('relpath', path, start)\n        raise\n\n\n# Return the longest common sub-path of the sequence of paths given as input.\n# The function is case-insensitive and 'separator-insensitive', i.e. if the\n# only difference between two paths is the use of '\\' versus '/' as separator,\n# they are deemed to be equal.\n#\n# However, the returned path will have the standard '\\' separator (even if the\n# given paths had the alternative '/' separator) and will have the case of the\n# first path given in the sequence. Additionally, any trailing separator is\n# stripped from the returned path.\n\ndef commonpath(paths):\n    \"\"\"Given a sequence of path names, returns the longest common sub-path.\"\"\"\n\n    if not paths:\n        raise ValueError('commonpath() arg is an empty sequence')\n\n    paths = tuple(map(os.fspath, paths))\n    if isinstance(paths[0], bytes):\n        sep = b'\\\\'\n        altsep = b'/'\n        curdir = b'.'\n    else:\n        sep = '\\\\'\n        altsep = '/'\n        curdir = '.'\n\n    try:\n        drivesplits = [splitdrive(p.replace(altsep, sep).lower()) for p in paths]\n        split_paths = [p.split(sep) for d, p in drivesplits]\n\n        try:\n            isabs, = set(p[:1] == sep for d, p in drivesplits)\n        except ValueError:\n            raise ValueError(\"Can't mix absolute and relative paths\") from None\n\n        # Check that all drive letters or UNC paths match. The check is made only\n        # now otherwise type errors for mixing strings and bytes would not be\n        # caught.\n        if len(set(d for d, p in drivesplits)) != 1:\n            raise ValueError(\"Paths don't have the same drive\")\n\n        drive, path = splitdrive(paths[0].replace(altsep, sep))\n        common = path.split(sep)\n        common = [c for c in common if c and c != curdir]\n\n        split_paths = [[c for c in s if c and c != curdir] for s in split_paths]\n        s1 = min(split_paths)\n        s2 = max(split_paths)\n        for i, c in enumerate(s1):\n            if c != s2[i]:\n                common = common[:i]\n                break\n        else:\n            common = common[:len(s1)]\n\n        prefix = drive + sep if isabs else drive\n        return prefix + sep.join(common)\n    except (TypeError, AttributeError):\n        genericpath._check_arg_types('commonpath', *paths)\n        raise\n\n\ntry:\n    # The genericpath.isdir implementation uses os.stat and checks the mode\n    # attribute to tell whether or not the path is a directory.\n    # This is overkill on Windows - just pass the path to GetFileAttributes\n    # and check the attribute from there.\n    from nt import _isdir as isdir\nexcept ImportError:\n    # Use genericpath.isdir as imported above.\n    pass\n"
  },
  {
    "path": "rd/usr/lib/python3.8/nturl2path.py",
    "content": "\"\"\"Convert a NT pathname to a file URL and vice versa.\n\nThis module only exists to provide OS-specific code\nfor urllib.requests, thus do not use directly.\n\"\"\"\n# Testing is done through test_urllib.\n\ndef url2pathname(url):\n    \"\"\"OS-specific conversion from a relative URL of the 'file' scheme\n    to a file system path; not recommended for general use.\"\"\"\n    # e.g.\n    #   ///C|/foo/bar/spam.foo\n    # and\n    #   ///C:/foo/bar/spam.foo\n    # become\n    #   C:\\foo\\bar\\spam.foo\n    import string, urllib.parse\n    # Windows itself uses \":\" even in URLs.\n    url = url.replace(':', '|')\n    if not '|' in url:\n        # No drive specifier, just convert slashes\n        if url[:4] == '////':\n            # path is something like ////host/path/on/remote/host\n            # convert this to \\\\host\\path\\on\\remote\\host\n            # (notice halving of slashes at the start of the path)\n            url = url[2:]\n        components = url.split('/')\n        # make sure not to convert quoted slashes :-)\n        return urllib.parse.unquote('\\\\'.join(components))\n    comp = url.split('|')\n    if len(comp) != 2 or comp[0][-1] not in string.ascii_letters:\n        error = 'Bad URL: ' + url\n        raise OSError(error)\n    drive = comp[0][-1].upper()\n    components = comp[1].split('/')\n    path = drive + ':'\n    for comp in components:\n        if comp:\n            path = path + '\\\\' + urllib.parse.unquote(comp)\n    # Issue #11474 - handing url such as |c/|\n    if path.endswith(':') and url.endswith('/'):\n        path += '\\\\'\n    return path\n\ndef pathname2url(p):\n    \"\"\"OS-specific conversion from a file system path to a relative URL\n    of the 'file' scheme; not recommended for general use.\"\"\"\n    # e.g.\n    #   C:\\foo\\bar\\spam.foo\n    # becomes\n    #   ///C:/foo/bar/spam.foo\n    import urllib.parse\n    if not ':' in p:\n        # No drive specifier, just convert slashes and quote the name\n        if p[:2] == '\\\\\\\\':\n        # path is something like \\\\host\\path\\on\\remote\\host\n        # convert this to ////host/path/on/remote/host\n        # (notice doubling of slashes at the start of the path)\n            p = '\\\\\\\\' + p\n        components = p.split('\\\\')\n        return urllib.parse.quote('/'.join(components))\n    comp = p.split(':')\n    if len(comp) != 2 or len(comp[0]) > 1:\n        error = 'Bad path: ' + p\n        raise OSError(error)\n\n    drive = urllib.parse.quote(comp[0].upper())\n    components = comp[1].split('\\\\')\n    path = '///' + drive + ':'\n    for comp in components:\n        if comp:\n            path = path + '/' + urllib.parse.quote(comp)\n    return path\n"
  },
  {
    "path": "rd/usr/lib/python3.8/numbers.py",
    "content": "# Copyright 2007 Google, Inc. All Rights Reserved.\n# Licensed to PSF under a Contributor Agreement.\n\n\"\"\"Abstract Base Classes (ABCs) for numbers, according to PEP 3141.\n\nTODO: Fill out more detailed documentation on the operators.\"\"\"\n\nfrom abc import ABCMeta, abstractmethod\n\n__all__ = [\"Number\", \"Complex\", \"Real\", \"Rational\", \"Integral\"]\n\nclass Number(metaclass=ABCMeta):\n    \"\"\"All numbers inherit from this class.\n\n    If you just want to check if an argument x is a number, without\n    caring what kind, use isinstance(x, Number).\n    \"\"\"\n    __slots__ = ()\n\n    # Concrete numeric types must provide their own hash implementation\n    __hash__ = None\n\n\n## Notes on Decimal\n## ----------------\n## Decimal has all of the methods specified by the Real abc, but it should\n## not be registered as a Real because decimals do not interoperate with\n## binary floats (i.e.  Decimal('3.14') + 2.71828 is undefined).  But,\n## abstract reals are expected to interoperate (i.e. R1 + R2 should be\n## expected to work if R1 and R2 are both Reals).\n\nclass Complex(Number):\n    \"\"\"Complex defines the operations that work on the builtin complex type.\n\n    In short, those are: a conversion to complex, .real, .imag, +, -,\n    *, /, abs(), .conjugate, ==, and !=.\n\n    If it is given heterogeneous arguments, and doesn't have special\n    knowledge about them, it should fall back to the builtin complex\n    type as described below.\n    \"\"\"\n\n    __slots__ = ()\n\n    @abstractmethod\n    def __complex__(self):\n        \"\"\"Return a builtin complex instance. Called for complex(self).\"\"\"\n\n    def __bool__(self):\n        \"\"\"True if self != 0. Called for bool(self).\"\"\"\n        return self != 0\n\n    @property\n    @abstractmethod\n    def real(self):\n        \"\"\"Retrieve the real component of this number.\n\n        This should subclass Real.\n        \"\"\"\n        raise NotImplementedError\n\n    @property\n    @abstractmethod\n    def imag(self):\n        \"\"\"Retrieve the imaginary component of this number.\n\n        This should subclass Real.\n        \"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __add__(self, other):\n        \"\"\"self + other\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __radd__(self, other):\n        \"\"\"other + self\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __neg__(self):\n        \"\"\"-self\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __pos__(self):\n        \"\"\"+self\"\"\"\n        raise NotImplementedError\n\n    def __sub__(self, other):\n        \"\"\"self - other\"\"\"\n        return self + -other\n\n    def __rsub__(self, other):\n        \"\"\"other - self\"\"\"\n        return -self + other\n\n    @abstractmethod\n    def __mul__(self, other):\n        \"\"\"self * other\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __rmul__(self, other):\n        \"\"\"other * self\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __truediv__(self, other):\n        \"\"\"self / other: Should promote to float when necessary.\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __rtruediv__(self, other):\n        \"\"\"other / self\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __pow__(self, exponent):\n        \"\"\"self**exponent; should promote to float or complex when necessary.\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __rpow__(self, base):\n        \"\"\"base ** self\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __abs__(self):\n        \"\"\"Returns the Real distance from 0. Called for abs(self).\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def conjugate(self):\n        \"\"\"(x+y*i).conjugate() returns (x-y*i).\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __eq__(self, other):\n        \"\"\"self == other\"\"\"\n        raise NotImplementedError\n\nComplex.register(complex)\n\n\nclass Real(Complex):\n    \"\"\"To Complex, Real adds the operations that work on real numbers.\n\n    In short, those are: a conversion to float, trunc(), divmod,\n    %, <, <=, >, and >=.\n\n    Real also provides defaults for the derived operations.\n    \"\"\"\n\n    __slots__ = ()\n\n    @abstractmethod\n    def __float__(self):\n        \"\"\"Any Real can be converted to a native float object.\n\n        Called for float(self).\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __trunc__(self):\n        \"\"\"trunc(self): Truncates self to an Integral.\n\n        Returns an Integral i such that:\n          * i>0 iff self>0;\n          * abs(i) <= abs(self);\n          * for any Integral j satisfying the first two conditions,\n            abs(i) >= abs(j) [i.e. i has \"maximal\" abs among those].\n        i.e. \"truncate towards 0\".\n        \"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __floor__(self):\n        \"\"\"Finds the greatest Integral <= self.\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __ceil__(self):\n        \"\"\"Finds the least Integral >= self.\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __round__(self, ndigits=None):\n        \"\"\"Rounds self to ndigits decimal places, defaulting to 0.\n\n        If ndigits is omitted or None, returns an Integral, otherwise\n        returns a Real. Rounds half toward even.\n        \"\"\"\n        raise NotImplementedError\n\n    def __divmod__(self, other):\n        \"\"\"divmod(self, other): The pair (self // other, self % other).\n\n        Sometimes this can be computed faster than the pair of\n        operations.\n        \"\"\"\n        return (self // other, self % other)\n\n    def __rdivmod__(self, other):\n        \"\"\"divmod(other, self): The pair (self // other, self % other).\n\n        Sometimes this can be computed faster than the pair of\n        operations.\n        \"\"\"\n        return (other // self, other % self)\n\n    @abstractmethod\n    def __floordiv__(self, other):\n        \"\"\"self // other: The floor() of self/other.\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __rfloordiv__(self, other):\n        \"\"\"other // self: The floor() of other/self.\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __mod__(self, other):\n        \"\"\"self % other\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __rmod__(self, other):\n        \"\"\"other % self\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __lt__(self, other):\n        \"\"\"self < other\n\n        < on Reals defines a total ordering, except perhaps for NaN.\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __le__(self, other):\n        \"\"\"self <= other\"\"\"\n        raise NotImplementedError\n\n    # Concrete implementations of Complex abstract methods.\n    def __complex__(self):\n        \"\"\"complex(self) == complex(float(self), 0)\"\"\"\n        return complex(float(self))\n\n    @property\n    def real(self):\n        \"\"\"Real numbers are their real component.\"\"\"\n        return +self\n\n    @property\n    def imag(self):\n        \"\"\"Real numbers have no imaginary component.\"\"\"\n        return 0\n\n    def conjugate(self):\n        \"\"\"Conjugate is a no-op for Reals.\"\"\"\n        return +self\n\nReal.register(float)\n\n\nclass Rational(Real):\n    \"\"\".numerator and .denominator should be in lowest terms.\"\"\"\n\n    __slots__ = ()\n\n    @property\n    @abstractmethod\n    def numerator(self):\n        raise NotImplementedError\n\n    @property\n    @abstractmethod\n    def denominator(self):\n        raise NotImplementedError\n\n    # Concrete implementation of Real's conversion to float.\n    def __float__(self):\n        \"\"\"float(self) = self.numerator / self.denominator\n\n        It's important that this conversion use the integer's \"true\"\n        division rather than casting one side to float before dividing\n        so that ratios of huge integers convert without overflowing.\n\n        \"\"\"\n        return self.numerator / self.denominator\n\n\nclass Integral(Rational):\n    \"\"\"Integral adds a conversion to int and the bit-string operations.\"\"\"\n\n    __slots__ = ()\n\n    @abstractmethod\n    def __int__(self):\n        \"\"\"int(self)\"\"\"\n        raise NotImplementedError\n\n    def __index__(self):\n        \"\"\"Called whenever an index is needed, such as in slicing\"\"\"\n        return int(self)\n\n    @abstractmethod\n    def __pow__(self, exponent, modulus=None):\n        \"\"\"self ** exponent % modulus, but maybe faster.\n\n        Accept the modulus argument if you want to support the\n        3-argument version of pow(). Raise a TypeError if exponent < 0\n        or any argument isn't Integral. Otherwise, just implement the\n        2-argument version described in Complex.\n        \"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __lshift__(self, other):\n        \"\"\"self << other\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __rlshift__(self, other):\n        \"\"\"other << self\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __rshift__(self, other):\n        \"\"\"self >> other\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __rrshift__(self, other):\n        \"\"\"other >> self\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __and__(self, other):\n        \"\"\"self & other\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __rand__(self, other):\n        \"\"\"other & self\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __xor__(self, other):\n        \"\"\"self ^ other\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __rxor__(self, other):\n        \"\"\"other ^ self\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __or__(self, other):\n        \"\"\"self | other\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __ror__(self, other):\n        \"\"\"other | self\"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def __invert__(self):\n        \"\"\"~self\"\"\"\n        raise NotImplementedError\n\n    # Concrete implementations of Rational and Real abstract methods.\n    def __float__(self):\n        \"\"\"float(self) == float(int(self))\"\"\"\n        return float(int(self))\n\n    @property\n    def numerator(self):\n        \"\"\"Integers are their own numerators.\"\"\"\n        return +self\n\n    @property\n    def denominator(self):\n        \"\"\"Integers have a denominator of 1.\"\"\"\n        return 1\n\nIntegral.register(int)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/opcode.py",
    "content": "\n\"\"\"\nopcode module - potentially shared between dis and other modules which\noperate on bytecodes (e.g. peephole optimizers).\n\"\"\"\n\n__all__ = [\"cmp_op\", \"hasconst\", \"hasname\", \"hasjrel\", \"hasjabs\",\n           \"haslocal\", \"hascompare\", \"hasfree\", \"opname\", \"opmap\",\n           \"HAVE_ARGUMENT\", \"EXTENDED_ARG\", \"hasnargs\"]\n\n# It's a chicken-and-egg I'm afraid:\n# We're imported before _opcode's made.\n# With exception unheeded\n# (stack_effect is not needed)\n# Both our chickens and eggs are allayed.\n#     --Larry Hastings, 2013/11/23\n\ntry:\n    from _opcode import stack_effect\n    __all__.append('stack_effect')\nexcept ImportError:\n    pass\n\ncmp_op = ('<', '<=', '==', '!=', '>', '>=', 'in', 'not in', 'is',\n        'is not', 'exception match', 'BAD')\n\nhasconst = []\nhasname = []\nhasjrel = []\nhasjabs = []\nhaslocal = []\nhascompare = []\nhasfree = []\nhasnargs = [] # unused\n\nopmap = {}\nopname = ['<%r>' % (op,) for op in range(256)]\n\ndef def_op(name, op):\n    opname[op] = name\n    opmap[name] = op\n\ndef name_op(name, op):\n    def_op(name, op)\n    hasname.append(op)\n\ndef jrel_op(name, op):\n    def_op(name, op)\n    hasjrel.append(op)\n\ndef jabs_op(name, op):\n    def_op(name, op)\n    hasjabs.append(op)\n\n# Instruction opcodes for compiled code\n# Blank lines correspond to available opcodes\n\ndef_op('POP_TOP', 1)\ndef_op('ROT_TWO', 2)\ndef_op('ROT_THREE', 3)\ndef_op('DUP_TOP', 4)\ndef_op('DUP_TOP_TWO', 5)\ndef_op('ROT_FOUR', 6)\n\ndef_op('NOP', 9)\ndef_op('UNARY_POSITIVE', 10)\ndef_op('UNARY_NEGATIVE', 11)\ndef_op('UNARY_NOT', 12)\n\ndef_op('UNARY_INVERT', 15)\n\ndef_op('BINARY_MATRIX_MULTIPLY', 16)\ndef_op('INPLACE_MATRIX_MULTIPLY', 17)\n\ndef_op('BINARY_POWER', 19)\ndef_op('BINARY_MULTIPLY', 20)\n\ndef_op('BINARY_MODULO', 22)\ndef_op('BINARY_ADD', 23)\ndef_op('BINARY_SUBTRACT', 24)\ndef_op('BINARY_SUBSCR', 25)\ndef_op('BINARY_FLOOR_DIVIDE', 26)\ndef_op('BINARY_TRUE_DIVIDE', 27)\ndef_op('INPLACE_FLOOR_DIVIDE', 28)\ndef_op('INPLACE_TRUE_DIVIDE', 29)\n\ndef_op('GET_AITER', 50)\ndef_op('GET_ANEXT', 51)\ndef_op('BEFORE_ASYNC_WITH', 52)\ndef_op('BEGIN_FINALLY', 53)\ndef_op('END_ASYNC_FOR', 54)\ndef_op('INPLACE_ADD', 55)\ndef_op('INPLACE_SUBTRACT', 56)\ndef_op('INPLACE_MULTIPLY', 57)\n\ndef_op('INPLACE_MODULO', 59)\ndef_op('STORE_SUBSCR', 60)\ndef_op('DELETE_SUBSCR', 61)\ndef_op('BINARY_LSHIFT', 62)\ndef_op('BINARY_RSHIFT', 63)\ndef_op('BINARY_AND', 64)\ndef_op('BINARY_XOR', 65)\ndef_op('BINARY_OR', 66)\ndef_op('INPLACE_POWER', 67)\ndef_op('GET_ITER', 68)\ndef_op('GET_YIELD_FROM_ITER', 69)\n\ndef_op('PRINT_EXPR', 70)\ndef_op('LOAD_BUILD_CLASS', 71)\ndef_op('YIELD_FROM', 72)\ndef_op('GET_AWAITABLE', 73)\n\ndef_op('INPLACE_LSHIFT', 75)\ndef_op('INPLACE_RSHIFT', 76)\ndef_op('INPLACE_AND', 77)\ndef_op('INPLACE_XOR', 78)\ndef_op('INPLACE_OR', 79)\ndef_op('WITH_CLEANUP_START', 81)\ndef_op('WITH_CLEANUP_FINISH', 82)\ndef_op('RETURN_VALUE', 83)\ndef_op('IMPORT_STAR', 84)\ndef_op('SETUP_ANNOTATIONS', 85)\ndef_op('YIELD_VALUE', 86)\ndef_op('POP_BLOCK', 87)\ndef_op('END_FINALLY', 88)\ndef_op('POP_EXCEPT', 89)\n\nHAVE_ARGUMENT = 90              # Opcodes from here have an argument:\n\nname_op('STORE_NAME', 90)       # Index in name list\nname_op('DELETE_NAME', 91)      # \"\"\ndef_op('UNPACK_SEQUENCE', 92)   # Number of tuple items\njrel_op('FOR_ITER', 93)\ndef_op('UNPACK_EX', 94)\nname_op('STORE_ATTR', 95)       # Index in name list\nname_op('DELETE_ATTR', 96)      # \"\"\nname_op('STORE_GLOBAL', 97)     # \"\"\nname_op('DELETE_GLOBAL', 98)    # \"\"\ndef_op('LOAD_CONST', 100)       # Index in const list\nhasconst.append(100)\nname_op('LOAD_NAME', 101)       # Index in name list\ndef_op('BUILD_TUPLE', 102)      # Number of tuple items\ndef_op('BUILD_LIST', 103)       # Number of list items\ndef_op('BUILD_SET', 104)        # Number of set items\ndef_op('BUILD_MAP', 105)        # Number of dict entries\nname_op('LOAD_ATTR', 106)       # Index in name list\ndef_op('COMPARE_OP', 107)       # Comparison operator\nhascompare.append(107)\nname_op('IMPORT_NAME', 108)     # Index in name list\nname_op('IMPORT_FROM', 109)     # Index in name list\n\njrel_op('JUMP_FORWARD', 110)    # Number of bytes to skip\njabs_op('JUMP_IF_FALSE_OR_POP', 111) # Target byte offset from beginning of code\njabs_op('JUMP_IF_TRUE_OR_POP', 112)  # \"\"\njabs_op('JUMP_ABSOLUTE', 113)        # \"\"\njabs_op('POP_JUMP_IF_FALSE', 114)    # \"\"\njabs_op('POP_JUMP_IF_TRUE', 115)     # \"\"\n\nname_op('LOAD_GLOBAL', 116)     # Index in name list\n\njrel_op('SETUP_FINALLY', 122)   # Distance to target address\n\ndef_op('LOAD_FAST', 124)        # Local variable number\nhaslocal.append(124)\ndef_op('STORE_FAST', 125)       # Local variable number\nhaslocal.append(125)\ndef_op('DELETE_FAST', 126)      # Local variable number\nhaslocal.append(126)\n\ndef_op('RAISE_VARARGS', 130)    # Number of raise arguments (1, 2, or 3)\ndef_op('CALL_FUNCTION', 131)    # #args\ndef_op('MAKE_FUNCTION', 132)    # Flags\ndef_op('BUILD_SLICE', 133)      # Number of items\ndef_op('LOAD_CLOSURE', 135)\nhasfree.append(135)\ndef_op('LOAD_DEREF', 136)\nhasfree.append(136)\ndef_op('STORE_DEREF', 137)\nhasfree.append(137)\ndef_op('DELETE_DEREF', 138)\nhasfree.append(138)\n\ndef_op('CALL_FUNCTION_KW', 141)  # #args + #kwargs\ndef_op('CALL_FUNCTION_EX', 142)  # Flags\n\njrel_op('SETUP_WITH', 143)\n\ndef_op('LIST_APPEND', 145)\ndef_op('SET_ADD', 146)\ndef_op('MAP_ADD', 147)\n\ndef_op('LOAD_CLASSDEREF', 148)\nhasfree.append(148)\n\ndef_op('EXTENDED_ARG', 144)\nEXTENDED_ARG = 144\n\ndef_op('BUILD_LIST_UNPACK', 149)\ndef_op('BUILD_MAP_UNPACK', 150)\ndef_op('BUILD_MAP_UNPACK_WITH_CALL', 151)\ndef_op('BUILD_TUPLE_UNPACK', 152)\ndef_op('BUILD_SET_UNPACK', 153)\n\njrel_op('SETUP_ASYNC_WITH', 154)\n\ndef_op('FORMAT_VALUE', 155)\ndef_op('BUILD_CONST_KEY_MAP', 156)\ndef_op('BUILD_STRING', 157)\ndef_op('BUILD_TUPLE_UNPACK_WITH_CALL', 158)\n\nname_op('LOAD_METHOD', 160)\ndef_op('CALL_METHOD', 161)\njrel_op('CALL_FINALLY', 162)\ndef_op('POP_FINALLY', 163)\n\ndel def_op, name_op, jrel_op, jabs_op\n"
  },
  {
    "path": "rd/usr/lib/python3.8/operator.py",
    "content": "\"\"\"\nOperator Interface\n\nThis module exports a set of functions corresponding to the intrinsic\noperators of Python.  For example, operator.add(x, y) is equivalent\nto the expression x+y.  The function names are those used for special\nmethods; variants without leading and trailing '__' are also provided\nfor convenience.\n\nThis is the pure Python implementation of the module.\n\"\"\"\n\n__all__ = ['abs', 'add', 'and_', 'attrgetter', 'concat', 'contains', 'countOf',\n           'delitem', 'eq', 'floordiv', 'ge', 'getitem', 'gt', 'iadd', 'iand',\n           'iconcat', 'ifloordiv', 'ilshift', 'imatmul', 'imod', 'imul',\n           'index', 'indexOf', 'inv', 'invert', 'ior', 'ipow', 'irshift',\n           'is_', 'is_not', 'isub', 'itemgetter', 'itruediv', 'ixor', 'le',\n           'length_hint', 'lshift', 'lt', 'matmul', 'methodcaller', 'mod',\n           'mul', 'ne', 'neg', 'not_', 'or_', 'pos', 'pow', 'rshift',\n           'setitem', 'sub', 'truediv', 'truth', 'xor']\n\nfrom builtins import abs as _abs\n\n\n# Comparison Operations *******************************************************#\n\ndef lt(a, b):\n    \"Same as a < b.\"\n    return a < b\n\ndef le(a, b):\n    \"Same as a <= b.\"\n    return a <= b\n\ndef eq(a, b):\n    \"Same as a == b.\"\n    return a == b\n\ndef ne(a, b):\n    \"Same as a != b.\"\n    return a != b\n\ndef ge(a, b):\n    \"Same as a >= b.\"\n    return a >= b\n\ndef gt(a, b):\n    \"Same as a > b.\"\n    return a > b\n\n# Logical Operations **********************************************************#\n\ndef not_(a):\n    \"Same as not a.\"\n    return not a\n\ndef truth(a):\n    \"Return True if a is true, False otherwise.\"\n    return True if a else False\n\ndef is_(a, b):\n    \"Same as a is b.\"\n    return a is b\n\ndef is_not(a, b):\n    \"Same as a is not b.\"\n    return a is not b\n\n# Mathematical/Bitwise Operations *********************************************#\n\ndef abs(a):\n    \"Same as abs(a).\"\n    return _abs(a)\n\ndef add(a, b):\n    \"Same as a + b.\"\n    return a + b\n\ndef and_(a, b):\n    \"Same as a & b.\"\n    return a & b\n\ndef floordiv(a, b):\n    \"Same as a // b.\"\n    return a // b\n\ndef index(a):\n    \"Same as a.__index__().\"\n    return a.__index__()\n\ndef inv(a):\n    \"Same as ~a.\"\n    return ~a\ninvert = inv\n\ndef lshift(a, b):\n    \"Same as a << b.\"\n    return a << b\n\ndef mod(a, b):\n    \"Same as a % b.\"\n    return a % b\n\ndef mul(a, b):\n    \"Same as a * b.\"\n    return a * b\n\ndef matmul(a, b):\n    \"Same as a @ b.\"\n    return a @ b\n\ndef neg(a):\n    \"Same as -a.\"\n    return -a\n\ndef or_(a, b):\n    \"Same as a | b.\"\n    return a | b\n\ndef pos(a):\n    \"Same as +a.\"\n    return +a\n\ndef pow(a, b):\n    \"Same as a ** b.\"\n    return a ** b\n\ndef rshift(a, b):\n    \"Same as a >> b.\"\n    return a >> b\n\ndef sub(a, b):\n    \"Same as a - b.\"\n    return a - b\n\ndef truediv(a, b):\n    \"Same as a / b.\"\n    return a / b\n\ndef xor(a, b):\n    \"Same as a ^ b.\"\n    return a ^ b\n\n# Sequence Operations *********************************************************#\n\ndef concat(a, b):\n    \"Same as a + b, for a and b sequences.\"\n    if not hasattr(a, '__getitem__'):\n        msg = \"'%s' object can't be concatenated\" % type(a).__name__\n        raise TypeError(msg)\n    return a + b\n\ndef contains(a, b):\n    \"Same as b in a (note reversed operands).\"\n    return b in a\n\ndef countOf(a, b):\n    \"Return the number of times b occurs in a.\"\n    count = 0\n    for i in a:\n        if i == b:\n            count += 1\n    return count\n\ndef delitem(a, b):\n    \"Same as del a[b].\"\n    del a[b]\n\ndef getitem(a, b):\n    \"Same as a[b].\"\n    return a[b]\n\ndef indexOf(a, b):\n    \"Return the first index of b in a.\"\n    for i, j in enumerate(a):\n        if j == b:\n            return i\n    else:\n        raise ValueError('sequence.index(x): x not in sequence')\n\ndef setitem(a, b, c):\n    \"Same as a[b] = c.\"\n    a[b] = c\n\ndef length_hint(obj, default=0):\n    \"\"\"\n    Return an estimate of the number of items in obj.\n    This is useful for presizing containers when building from an iterable.\n\n    If the object supports len(), the result will be exact. Otherwise, it may\n    over- or under-estimate by an arbitrary amount. The result will be an\n    integer >= 0.\n    \"\"\"\n    if not isinstance(default, int):\n        msg = (\"'%s' object cannot be interpreted as an integer\" %\n               type(default).__name__)\n        raise TypeError(msg)\n\n    try:\n        return len(obj)\n    except TypeError:\n        pass\n\n    try:\n        hint = type(obj).__length_hint__\n    except AttributeError:\n        return default\n\n    try:\n        val = hint(obj)\n    except TypeError:\n        return default\n    if val is NotImplemented:\n        return default\n    if not isinstance(val, int):\n        msg = ('__length_hint__ must be integer, not %s' %\n               type(val).__name__)\n        raise TypeError(msg)\n    if val < 0:\n        msg = '__length_hint__() should return >= 0'\n        raise ValueError(msg)\n    return val\n\n# Generalized Lookup Objects **************************************************#\n\nclass attrgetter:\n    \"\"\"\n    Return a callable object that fetches the given attribute(s) from its operand.\n    After f = attrgetter('name'), the call f(r) returns r.name.\n    After g = attrgetter('name', 'date'), the call g(r) returns (r.name, r.date).\n    After h = attrgetter('name.first', 'name.last'), the call h(r) returns\n    (r.name.first, r.name.last).\n    \"\"\"\n    __slots__ = ('_attrs', '_call')\n\n    def __init__(self, attr, *attrs):\n        if not attrs:\n            if not isinstance(attr, str):\n                raise TypeError('attribute name must be a string')\n            self._attrs = (attr,)\n            names = attr.split('.')\n            def func(obj):\n                for name in names:\n                    obj = getattr(obj, name)\n                return obj\n            self._call = func\n        else:\n            self._attrs = (attr,) + attrs\n            getters = tuple(map(attrgetter, self._attrs))\n            def func(obj):\n                return tuple(getter(obj) for getter in getters)\n            self._call = func\n\n    def __call__(self, obj):\n        return self._call(obj)\n\n    def __repr__(self):\n        return '%s.%s(%s)' % (self.__class__.__module__,\n                              self.__class__.__qualname__,\n                              ', '.join(map(repr, self._attrs)))\n\n    def __reduce__(self):\n        return self.__class__, self._attrs\n\nclass itemgetter:\n    \"\"\"\n    Return a callable object that fetches the given item(s) from its operand.\n    After f = itemgetter(2), the call f(r) returns r[2].\n    After g = itemgetter(2, 5, 3), the call g(r) returns (r[2], r[5], r[3])\n    \"\"\"\n    __slots__ = ('_items', '_call')\n\n    def __init__(self, item, *items):\n        if not items:\n            self._items = (item,)\n            def func(obj):\n                return obj[item]\n            self._call = func\n        else:\n            self._items = items = (item,) + items\n            def func(obj):\n                return tuple(obj[i] for i in items)\n            self._call = func\n\n    def __call__(self, obj):\n        return self._call(obj)\n\n    def __repr__(self):\n        return '%s.%s(%s)' % (self.__class__.__module__,\n                              self.__class__.__name__,\n                              ', '.join(map(repr, self._items)))\n\n    def __reduce__(self):\n        return self.__class__, self._items\n\nclass methodcaller:\n    \"\"\"\n    Return a callable object that calls the given method on its operand.\n    After f = methodcaller('name'), the call f(r) returns r.name().\n    After g = methodcaller('name', 'date', foo=1), the call g(r) returns\n    r.name('date', foo=1).\n    \"\"\"\n    __slots__ = ('_name', '_args', '_kwargs')\n\n    def __init__(self, name, /, *args, **kwargs):\n        self._name = name\n        if not isinstance(self._name, str):\n            raise TypeError('method name must be a string')\n        self._args = args\n        self._kwargs = kwargs\n\n    def __call__(self, obj):\n        return getattr(obj, self._name)(*self._args, **self._kwargs)\n\n    def __repr__(self):\n        args = [repr(self._name)]\n        args.extend(map(repr, self._args))\n        args.extend('%s=%r' % (k, v) for k, v in self._kwargs.items())\n        return '%s.%s(%s)' % (self.__class__.__module__,\n                              self.__class__.__name__,\n                              ', '.join(args))\n\n    def __reduce__(self):\n        if not self._kwargs:\n            return self.__class__, (self._name,) + self._args\n        else:\n            from functools import partial\n            return partial(self.__class__, self._name, **self._kwargs), self._args\n\n\n# In-place Operations *********************************************************#\n\ndef iadd(a, b):\n    \"Same as a += b.\"\n    a += b\n    return a\n\ndef iand(a, b):\n    \"Same as a &= b.\"\n    a &= b\n    return a\n\ndef iconcat(a, b):\n    \"Same as a += b, for a and b sequences.\"\n    if not hasattr(a, '__getitem__'):\n        msg = \"'%s' object can't be concatenated\" % type(a).__name__\n        raise TypeError(msg)\n    a += b\n    return a\n\ndef ifloordiv(a, b):\n    \"Same as a //= b.\"\n    a //= b\n    return a\n\ndef ilshift(a, b):\n    \"Same as a <<= b.\"\n    a <<= b\n    return a\n\ndef imod(a, b):\n    \"Same as a %= b.\"\n    a %= b\n    return a\n\ndef imul(a, b):\n    \"Same as a *= b.\"\n    a *= b\n    return a\n\ndef imatmul(a, b):\n    \"Same as a @= b.\"\n    a @= b\n    return a\n\ndef ior(a, b):\n    \"Same as a |= b.\"\n    a |= b\n    return a\n\ndef ipow(a, b):\n    \"Same as a **= b.\"\n    a **=b\n    return a\n\ndef irshift(a, b):\n    \"Same as a >>= b.\"\n    a >>= b\n    return a\n\ndef isub(a, b):\n    \"Same as a -= b.\"\n    a -= b\n    return a\n\ndef itruediv(a, b):\n    \"Same as a /= b.\"\n    a /= b\n    return a\n\ndef ixor(a, b):\n    \"Same as a ^= b.\"\n    a ^= b\n    return a\n\n\ntry:\n    from _operator import *\nexcept ImportError:\n    pass\nelse:\n    from _operator import __doc__\n\n# All of these \"__func__ = func\" assignments have to happen after importing\n# from _operator to make sure they're set to the right function\n__lt__ = lt\n__le__ = le\n__eq__ = eq\n__ne__ = ne\n__ge__ = ge\n__gt__ = gt\n__not__ = not_\n__abs__ = abs\n__add__ = add\n__and__ = and_\n__floordiv__ = floordiv\n__index__ = index\n__inv__ = inv\n__invert__ = invert\n__lshift__ = lshift\n__mod__ = mod\n__mul__ = mul\n__matmul__ = matmul\n__neg__ = neg\n__or__ = or_\n__pos__ = pos\n__pow__ = pow\n__rshift__ = rshift\n__sub__ = sub\n__truediv__ = truediv\n__xor__ = xor\n__concat__ = concat\n__contains__ = contains\n__delitem__ = delitem\n__getitem__ = getitem\n__setitem__ = setitem\n__iadd__ = iadd\n__iand__ = iand\n__iconcat__ = iconcat\n__ifloordiv__ = ifloordiv\n__ilshift__ = ilshift\n__imod__ = imod\n__imul__ = imul\n__imatmul__ = imatmul\n__ior__ = ior\n__ipow__ = ipow\n__irshift__ = irshift\n__isub__ = isub\n__itruediv__ = itruediv\n__ixor__ = ixor\n"
  },
  {
    "path": "rd/usr/lib/python3.8/optparse.py",
    "content": "\"\"\"A powerful, extensible, and easy-to-use option parser.\n\nBy Greg Ward <gward@python.net>\n\nOriginally distributed as Optik.\n\nFor support, use the optik-users@lists.sourceforge.net mailing list\n(http://lists.sourceforge.net/lists/listinfo/optik-users).\n\nSimple usage example:\n\n   from optparse import OptionParser\n\n   parser = OptionParser()\n   parser.add_option(\"-f\", \"--file\", dest=\"filename\",\n                     help=\"write report to FILE\", metavar=\"FILE\")\n   parser.add_option(\"-q\", \"--quiet\",\n                     action=\"store_false\", dest=\"verbose\", default=True,\n                     help=\"don't print status messages to stdout\")\n\n   (options, args) = parser.parse_args()\n\"\"\"\n\n__version__ = \"1.5.3\"\n\n__all__ = ['Option',\n           'make_option',\n           'SUPPRESS_HELP',\n           'SUPPRESS_USAGE',\n           'Values',\n           'OptionContainer',\n           'OptionGroup',\n           'OptionParser',\n           'HelpFormatter',\n           'IndentedHelpFormatter',\n           'TitledHelpFormatter',\n           'OptParseError',\n           'OptionError',\n           'OptionConflictError',\n           'OptionValueError',\n           'BadOptionError',\n           'check_choice']\n\n__copyright__ = \"\"\"\nCopyright (c) 2001-2006 Gregory P. Ward.  All rights reserved.\nCopyright (c) 2002-2006 Python Software Foundation.  All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n  * Redistributions of source code must retain the above copyright\n    notice, this list of conditions and the following disclaimer.\n\n  * Redistributions in binary form must reproduce the above copyright\n    notice, this list of conditions and the following disclaimer in the\n    documentation and/or other materials provided with the distribution.\n\n  * Neither the name of the author nor the names of its\n    contributors may be used to endorse or promote products derived from\n    this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\nIS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\nTO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\"\"\"\n\nimport sys, os\nimport textwrap\n\ndef _repr(self):\n    return \"<%s at 0x%x: %s>\" % (self.__class__.__name__, id(self), self)\n\n\n# This file was generated from:\n#   Id: option_parser.py 527 2006-07-23 15:21:30Z greg\n#   Id: option.py 522 2006-06-11 16:22:03Z gward\n#   Id: help.py 527 2006-07-23 15:21:30Z greg\n#   Id: errors.py 509 2006-04-20 00:58:24Z gward\n\ntry:\n    from gettext import gettext, ngettext\nexcept ImportError:\n    def gettext(message):\n        return message\n\n    def ngettext(singular, plural, n):\n        if n == 1:\n            return singular\n        return plural\n\n_ = gettext\n\n\nclass OptParseError (Exception):\n    def __init__(self, msg):\n        self.msg = msg\n\n    def __str__(self):\n        return self.msg\n\n\nclass OptionError (OptParseError):\n    \"\"\"\n    Raised if an Option instance is created with invalid or\n    inconsistent arguments.\n    \"\"\"\n\n    def __init__(self, msg, option):\n        self.msg = msg\n        self.option_id = str(option)\n\n    def __str__(self):\n        if self.option_id:\n            return \"option %s: %s\" % (self.option_id, self.msg)\n        else:\n            return self.msg\n\nclass OptionConflictError (OptionError):\n    \"\"\"\n    Raised if conflicting options are added to an OptionParser.\n    \"\"\"\n\nclass OptionValueError (OptParseError):\n    \"\"\"\n    Raised if an invalid option value is encountered on the command\n    line.\n    \"\"\"\n\nclass BadOptionError (OptParseError):\n    \"\"\"\n    Raised if an invalid option is seen on the command line.\n    \"\"\"\n    def __init__(self, opt_str):\n        self.opt_str = opt_str\n\n    def __str__(self):\n        return _(\"no such option: %s\") % self.opt_str\n\nclass AmbiguousOptionError (BadOptionError):\n    \"\"\"\n    Raised if an ambiguous option is seen on the command line.\n    \"\"\"\n    def __init__(self, opt_str, possibilities):\n        BadOptionError.__init__(self, opt_str)\n        self.possibilities = possibilities\n\n    def __str__(self):\n        return (_(\"ambiguous option: %s (%s?)\")\n                % (self.opt_str, \", \".join(self.possibilities)))\n\n\nclass HelpFormatter:\n\n    \"\"\"\n    Abstract base class for formatting option help.  OptionParser\n    instances should use one of the HelpFormatter subclasses for\n    formatting help; by default IndentedHelpFormatter is used.\n\n    Instance attributes:\n      parser : OptionParser\n        the controlling OptionParser instance\n      indent_increment : int\n        the number of columns to indent per nesting level\n      max_help_position : int\n        the maximum starting column for option help text\n      help_position : int\n        the calculated starting column for option help text;\n        initially the same as the maximum\n      width : int\n        total number of columns for output (pass None to constructor for\n        this value to be taken from the $COLUMNS environment variable)\n      level : int\n        current indentation level\n      current_indent : int\n        current indentation level (in columns)\n      help_width : int\n        number of columns available for option help text (calculated)\n      default_tag : str\n        text to replace with each option's default value, \"%default\"\n        by default.  Set to false value to disable default value expansion.\n      option_strings : { Option : str }\n        maps Option instances to the snippet of help text explaining\n        the syntax of that option, e.g. \"-h, --help\" or\n        \"-fFILE, --file=FILE\"\n      _short_opt_fmt : str\n        format string controlling how short options with values are\n        printed in help text.  Must be either \"%s%s\" (\"-fFILE\") or\n        \"%s %s\" (\"-f FILE\"), because those are the two syntaxes that\n        Optik supports.\n      _long_opt_fmt : str\n        similar but for long options; must be either \"%s %s\" (\"--file FILE\")\n        or \"%s=%s\" (\"--file=FILE\").\n    \"\"\"\n\n    NO_DEFAULT_VALUE = \"none\"\n\n    def __init__(self,\n                 indent_increment,\n                 max_help_position,\n                 width,\n                 short_first):\n        self.parser = None\n        self.indent_increment = indent_increment\n        if width is None:\n            try:\n                width = int(os.environ['COLUMNS'])\n            except (KeyError, ValueError):\n                width = 80\n            width -= 2\n        self.width = width\n        self.help_position = self.max_help_position = \\\n                min(max_help_position, max(width - 20, indent_increment * 2))\n        self.current_indent = 0\n        self.level = 0\n        self.help_width = None          # computed later\n        self.short_first = short_first\n        self.default_tag = \"%default\"\n        self.option_strings = {}\n        self._short_opt_fmt = \"%s %s\"\n        self._long_opt_fmt = \"%s=%s\"\n\n    def set_parser(self, parser):\n        self.parser = parser\n\n    def set_short_opt_delimiter(self, delim):\n        if delim not in (\"\", \" \"):\n            raise ValueError(\n                \"invalid metavar delimiter for short options: %r\" % delim)\n        self._short_opt_fmt = \"%s\" + delim + \"%s\"\n\n    def set_long_opt_delimiter(self, delim):\n        if delim not in (\"=\", \" \"):\n            raise ValueError(\n                \"invalid metavar delimiter for long options: %r\" % delim)\n        self._long_opt_fmt = \"%s\" + delim + \"%s\"\n\n    def indent(self):\n        self.current_indent += self.indent_increment\n        self.level += 1\n\n    def dedent(self):\n        self.current_indent -= self.indent_increment\n        assert self.current_indent >= 0, \"Indent decreased below 0.\"\n        self.level -= 1\n\n    def format_usage(self, usage):\n        raise NotImplementedError(\"subclasses must implement\")\n\n    def format_heading(self, heading):\n        raise NotImplementedError(\"subclasses must implement\")\n\n    def _format_text(self, text):\n        \"\"\"\n        Format a paragraph of free-form text for inclusion in the\n        help output at the current indentation level.\n        \"\"\"\n        text_width = max(self.width - self.current_indent, 11)\n        indent = \" \"*self.current_indent\n        return textwrap.fill(text,\n                             text_width,\n                             initial_indent=indent,\n                             subsequent_indent=indent)\n\n    def format_description(self, description):\n        if description:\n            return self._format_text(description) + \"\\n\"\n        else:\n            return \"\"\n\n    def format_epilog(self, epilog):\n        if epilog:\n            return \"\\n\" + self._format_text(epilog) + \"\\n\"\n        else:\n            return \"\"\n\n\n    def expand_default(self, option):\n        if self.parser is None or not self.default_tag:\n            return option.help\n\n        default_value = self.parser.defaults.get(option.dest)\n        if default_value is NO_DEFAULT or default_value is None:\n            default_value = self.NO_DEFAULT_VALUE\n\n        return option.help.replace(self.default_tag, str(default_value))\n\n    def format_option(self, option):\n        # The help for each option consists of two parts:\n        #   * the opt strings and metavars\n        #     eg. (\"-x\", or \"-fFILENAME, --file=FILENAME\")\n        #   * the user-supplied help string\n        #     eg. (\"turn on expert mode\", \"read data from FILENAME\")\n        #\n        # If possible, we write both of these on the same line:\n        #   -x      turn on expert mode\n        #\n        # But if the opt string list is too long, we put the help\n        # string on a second line, indented to the same column it would\n        # start in if it fit on the first line.\n        #   -fFILENAME, --file=FILENAME\n        #           read data from FILENAME\n        result = []\n        opts = self.option_strings[option]\n        opt_width = self.help_position - self.current_indent - 2\n        if len(opts) > opt_width:\n            opts = \"%*s%s\\n\" % (self.current_indent, \"\", opts)\n            indent_first = self.help_position\n        else:                       # start help on same line as opts\n            opts = \"%*s%-*s  \" % (self.current_indent, \"\", opt_width, opts)\n            indent_first = 0\n        result.append(opts)\n        if option.help:\n            help_text = self.expand_default(option)\n            help_lines = textwrap.wrap(help_text, self.help_width)\n            result.append(\"%*s%s\\n\" % (indent_first, \"\", help_lines[0]))\n            result.extend([\"%*s%s\\n\" % (self.help_position, \"\", line)\n                           for line in help_lines[1:]])\n        elif opts[-1] != \"\\n\":\n            result.append(\"\\n\")\n        return \"\".join(result)\n\n    def store_option_strings(self, parser):\n        self.indent()\n        max_len = 0\n        for opt in parser.option_list:\n            strings = self.format_option_strings(opt)\n            self.option_strings[opt] = strings\n            max_len = max(max_len, len(strings) + self.current_indent)\n        self.indent()\n        for group in parser.option_groups:\n            for opt in group.option_list:\n                strings = self.format_option_strings(opt)\n                self.option_strings[opt] = strings\n                max_len = max(max_len, len(strings) + self.current_indent)\n        self.dedent()\n        self.dedent()\n        self.help_position = min(max_len + 2, self.max_help_position)\n        self.help_width = max(self.width - self.help_position, 11)\n\n    def format_option_strings(self, option):\n        \"\"\"Return a comma-separated list of option strings & metavariables.\"\"\"\n        if option.takes_value():\n            metavar = option.metavar or option.dest.upper()\n            short_opts = [self._short_opt_fmt % (sopt, metavar)\n                          for sopt in option._short_opts]\n            long_opts = [self._long_opt_fmt % (lopt, metavar)\n                         for lopt in option._long_opts]\n        else:\n            short_opts = option._short_opts\n            long_opts = option._long_opts\n\n        if self.short_first:\n            opts = short_opts + long_opts\n        else:\n            opts = long_opts + short_opts\n\n        return \", \".join(opts)\n\nclass IndentedHelpFormatter (HelpFormatter):\n    \"\"\"Format help with indented section bodies.\n    \"\"\"\n\n    def __init__(self,\n                 indent_increment=2,\n                 max_help_position=24,\n                 width=None,\n                 short_first=1):\n        HelpFormatter.__init__(\n            self, indent_increment, max_help_position, width, short_first)\n\n    def format_usage(self, usage):\n        return _(\"Usage: %s\\n\") % usage\n\n    def format_heading(self, heading):\n        return \"%*s%s:\\n\" % (self.current_indent, \"\", heading)\n\n\nclass TitledHelpFormatter (HelpFormatter):\n    \"\"\"Format help with underlined section headers.\n    \"\"\"\n\n    def __init__(self,\n                 indent_increment=0,\n                 max_help_position=24,\n                 width=None,\n                 short_first=0):\n        HelpFormatter.__init__ (\n            self, indent_increment, max_help_position, width, short_first)\n\n    def format_usage(self, usage):\n        return \"%s  %s\\n\" % (self.format_heading(_(\"Usage\")), usage)\n\n    def format_heading(self, heading):\n        return \"%s\\n%s\\n\" % (heading, \"=-\"[self.level] * len(heading))\n\n\ndef _parse_num(val, type):\n    if val[:2].lower() == \"0x\":         # hexadecimal\n        radix = 16\n    elif val[:2].lower() == \"0b\":       # binary\n        radix = 2\n        val = val[2:] or \"0\"            # have to remove \"0b\" prefix\n    elif val[:1] == \"0\":                # octal\n        radix = 8\n    else:                               # decimal\n        radix = 10\n\n    return type(val, radix)\n\ndef _parse_int(val):\n    return _parse_num(val, int)\n\n_builtin_cvt = { \"int\" : (_parse_int, _(\"integer\")),\n                 \"long\" : (_parse_int, _(\"integer\")),\n                 \"float\" : (float, _(\"floating-point\")),\n                 \"complex\" : (complex, _(\"complex\")) }\n\ndef check_builtin(option, opt, value):\n    (cvt, what) = _builtin_cvt[option.type]\n    try:\n        return cvt(value)\n    except ValueError:\n        raise OptionValueError(\n            _(\"option %s: invalid %s value: %r\") % (opt, what, value))\n\ndef check_choice(option, opt, value):\n    if value in option.choices:\n        return value\n    else:\n        choices = \", \".join(map(repr, option.choices))\n        raise OptionValueError(\n            _(\"option %s: invalid choice: %r (choose from %s)\")\n            % (opt, value, choices))\n\n# Not supplying a default is different from a default of None,\n# so we need an explicit \"not supplied\" value.\nNO_DEFAULT = (\"NO\", \"DEFAULT\")\n\n\nclass Option:\n    \"\"\"\n    Instance attributes:\n      _short_opts : [string]\n      _long_opts : [string]\n\n      action : string\n      type : string\n      dest : string\n      default : any\n      nargs : int\n      const : any\n      choices : [string]\n      callback : function\n      callback_args : (any*)\n      callback_kwargs : { string : any }\n      help : string\n      metavar : string\n    \"\"\"\n\n    # The list of instance attributes that may be set through\n    # keyword args to the constructor.\n    ATTRS = ['action',\n             'type',\n             'dest',\n             'default',\n             'nargs',\n             'const',\n             'choices',\n             'callback',\n             'callback_args',\n             'callback_kwargs',\n             'help',\n             'metavar']\n\n    # The set of actions allowed by option parsers.  Explicitly listed\n    # here so the constructor can validate its arguments.\n    ACTIONS = (\"store\",\n               \"store_const\",\n               \"store_true\",\n               \"store_false\",\n               \"append\",\n               \"append_const\",\n               \"count\",\n               \"callback\",\n               \"help\",\n               \"version\")\n\n    # The set of actions that involve storing a value somewhere;\n    # also listed just for constructor argument validation.  (If\n    # the action is one of these, there must be a destination.)\n    STORE_ACTIONS = (\"store\",\n                     \"store_const\",\n                     \"store_true\",\n                     \"store_false\",\n                     \"append\",\n                     \"append_const\",\n                     \"count\")\n\n    # The set of actions for which it makes sense to supply a value\n    # type, ie. which may consume an argument from the command line.\n    TYPED_ACTIONS = (\"store\",\n                     \"append\",\n                     \"callback\")\n\n    # The set of actions which *require* a value type, ie. that\n    # always consume an argument from the command line.\n    ALWAYS_TYPED_ACTIONS = (\"store\",\n                            \"append\")\n\n    # The set of actions which take a 'const' attribute.\n    CONST_ACTIONS = (\"store_const\",\n                     \"append_const\")\n\n    # The set of known types for option parsers.  Again, listed here for\n    # constructor argument validation.\n    TYPES = (\"string\", \"int\", \"long\", \"float\", \"complex\", \"choice\")\n\n    # Dictionary of argument checking functions, which convert and\n    # validate option arguments according to the option type.\n    #\n    # Signature of checking functions is:\n    #   check(option : Option, opt : string, value : string) -> any\n    # where\n    #   option is the Option instance calling the checker\n    #   opt is the actual option seen on the command-line\n    #     (eg. \"-a\", \"--file\")\n    #   value is the option argument seen on the command-line\n    #\n    # The return value should be in the appropriate Python type\n    # for option.type -- eg. an integer if option.type == \"int\".\n    #\n    # If no checker is defined for a type, arguments will be\n    # unchecked and remain strings.\n    TYPE_CHECKER = { \"int\"    : check_builtin,\n                     \"long\"   : check_builtin,\n                     \"float\"  : check_builtin,\n                     \"complex\": check_builtin,\n                     \"choice\" : check_choice,\n                   }\n\n\n    # CHECK_METHODS is a list of unbound method objects; they are called\n    # by the constructor, in order, after all attributes are\n    # initialized.  The list is created and filled in later, after all\n    # the methods are actually defined.  (I just put it here because I\n    # like to define and document all class attributes in the same\n    # place.)  Subclasses that add another _check_*() method should\n    # define their own CHECK_METHODS list that adds their check method\n    # to those from this class.\n    CHECK_METHODS = None\n\n\n    # -- Constructor/initialization methods ----------------------------\n\n    def __init__(self, *opts, **attrs):\n        # Set _short_opts, _long_opts attrs from 'opts' tuple.\n        # Have to be set now, in case no option strings are supplied.\n        self._short_opts = []\n        self._long_opts = []\n        opts = self._check_opt_strings(opts)\n        self._set_opt_strings(opts)\n\n        # Set all other attrs (action, type, etc.) from 'attrs' dict\n        self._set_attrs(attrs)\n\n        # Check all the attributes we just set.  There are lots of\n        # complicated interdependencies, but luckily they can be farmed\n        # out to the _check_*() methods listed in CHECK_METHODS -- which\n        # could be handy for subclasses!  The one thing these all share\n        # is that they raise OptionError if they discover a problem.\n        for checker in self.CHECK_METHODS:\n            checker(self)\n\n    def _check_opt_strings(self, opts):\n        # Filter out None because early versions of Optik had exactly\n        # one short option and one long option, either of which\n        # could be None.\n        opts = [opt for opt in opts if opt]\n        if not opts:\n            raise TypeError(\"at least one option string must be supplied\")\n        return opts\n\n    def _set_opt_strings(self, opts):\n        for opt in opts:\n            if len(opt) < 2:\n                raise OptionError(\n                    \"invalid option string %r: \"\n                    \"must be at least two characters long\" % opt, self)\n            elif len(opt) == 2:\n                if not (opt[0] == \"-\" and opt[1] != \"-\"):\n                    raise OptionError(\n                        \"invalid short option string %r: \"\n                        \"must be of the form -x, (x any non-dash char)\" % opt,\n                        self)\n                self._short_opts.append(opt)\n            else:\n                if not (opt[0:2] == \"--\" and opt[2] != \"-\"):\n                    raise OptionError(\n                        \"invalid long option string %r: \"\n                        \"must start with --, followed by non-dash\" % opt,\n                        self)\n                self._long_opts.append(opt)\n\n    def _set_attrs(self, attrs):\n        for attr in self.ATTRS:\n            if attr in attrs:\n                setattr(self, attr, attrs[attr])\n                del attrs[attr]\n            else:\n                if attr == 'default':\n                    setattr(self, attr, NO_DEFAULT)\n                else:\n                    setattr(self, attr, None)\n        if attrs:\n            attrs = sorted(attrs.keys())\n            raise OptionError(\n                \"invalid keyword arguments: %s\" % \", \".join(attrs),\n                self)\n\n\n    # -- Constructor validation methods --------------------------------\n\n    def _check_action(self):\n        if self.action is None:\n            self.action = \"store\"\n        elif self.action not in self.ACTIONS:\n            raise OptionError(\"invalid action: %r\" % self.action, self)\n\n    def _check_type(self):\n        if self.type is None:\n            if self.action in self.ALWAYS_TYPED_ACTIONS:\n                if self.choices is not None:\n                    # The \"choices\" attribute implies \"choice\" type.\n                    self.type = \"choice\"\n                else:\n                    # No type given?  \"string\" is the most sensible default.\n                    self.type = \"string\"\n        else:\n            # Allow type objects or builtin type conversion functions\n            # (int, str, etc.) as an alternative to their names.\n            if isinstance(self.type, type):\n                self.type = self.type.__name__\n\n            if self.type == \"str\":\n                self.type = \"string\"\n\n            if self.type not in self.TYPES:\n                raise OptionError(\"invalid option type: %r\" % self.type, self)\n            if self.action not in self.TYPED_ACTIONS:\n                raise OptionError(\n                    \"must not supply a type for action %r\" % self.action, self)\n\n    def _check_choice(self):\n        if self.type == \"choice\":\n            if self.choices is None:\n                raise OptionError(\n                    \"must supply a list of choices for type 'choice'\", self)\n            elif not isinstance(self.choices, (tuple, list)):\n                raise OptionError(\n                    \"choices must be a list of strings ('%s' supplied)\"\n                    % str(type(self.choices)).split(\"'\")[1], self)\n        elif self.choices is not None:\n            raise OptionError(\n                \"must not supply choices for type %r\" % self.type, self)\n\n    def _check_dest(self):\n        # No destination given, and we need one for this action.  The\n        # self.type check is for callbacks that take a value.\n        takes_value = (self.action in self.STORE_ACTIONS or\n                       self.type is not None)\n        if self.dest is None and takes_value:\n\n            # Glean a destination from the first long option string,\n            # or from the first short option string if no long options.\n            if self._long_opts:\n                # eg. \"--foo-bar\" -> \"foo_bar\"\n                self.dest = self._long_opts[0][2:].replace('-', '_')\n            else:\n                self.dest = self._short_opts[0][1]\n\n    def _check_const(self):\n        if self.action not in self.CONST_ACTIONS and self.const is not None:\n            raise OptionError(\n                \"'const' must not be supplied for action %r\" % self.action,\n                self)\n\n    def _check_nargs(self):\n        if self.action in self.TYPED_ACTIONS:\n            if self.nargs is None:\n                self.nargs = 1\n        elif self.nargs is not None:\n            raise OptionError(\n                \"'nargs' must not be supplied for action %r\" % self.action,\n                self)\n\n    def _check_callback(self):\n        if self.action == \"callback\":\n            if not callable(self.callback):\n                raise OptionError(\n                    \"callback not callable: %r\" % self.callback, self)\n            if (self.callback_args is not None and\n                not isinstance(self.callback_args, tuple)):\n                raise OptionError(\n                    \"callback_args, if supplied, must be a tuple: not %r\"\n                    % self.callback_args, self)\n            if (self.callback_kwargs is not None and\n                not isinstance(self.callback_kwargs, dict)):\n                raise OptionError(\n                    \"callback_kwargs, if supplied, must be a dict: not %r\"\n                    % self.callback_kwargs, self)\n        else:\n            if self.callback is not None:\n                raise OptionError(\n                    \"callback supplied (%r) for non-callback option\"\n                    % self.callback, self)\n            if self.callback_args is not None:\n                raise OptionError(\n                    \"callback_args supplied for non-callback option\", self)\n            if self.callback_kwargs is not None:\n                raise OptionError(\n                    \"callback_kwargs supplied for non-callback option\", self)\n\n\n    CHECK_METHODS = [_check_action,\n                     _check_type,\n                     _check_choice,\n                     _check_dest,\n                     _check_const,\n                     _check_nargs,\n                     _check_callback]\n\n\n    # -- Miscellaneous methods -----------------------------------------\n\n    def __str__(self):\n        return \"/\".join(self._short_opts + self._long_opts)\n\n    __repr__ = _repr\n\n    def takes_value(self):\n        return self.type is not None\n\n    def get_opt_string(self):\n        if self._long_opts:\n            return self._long_opts[0]\n        else:\n            return self._short_opts[0]\n\n\n    # -- Processing methods --------------------------------------------\n\n    def check_value(self, opt, value):\n        checker = self.TYPE_CHECKER.get(self.type)\n        if checker is None:\n            return value\n        else:\n            return checker(self, opt, value)\n\n    def convert_value(self, opt, value):\n        if value is not None:\n            if self.nargs == 1:\n                return self.check_value(opt, value)\n            else:\n                return tuple([self.check_value(opt, v) for v in value])\n\n    def process(self, opt, value, values, parser):\n\n        # First, convert the value(s) to the right type.  Howl if any\n        # value(s) are bogus.\n        value = self.convert_value(opt, value)\n\n        # And then take whatever action is expected of us.\n        # This is a separate method to make life easier for\n        # subclasses to add new actions.\n        return self.take_action(\n            self.action, self.dest, opt, value, values, parser)\n\n    def take_action(self, action, dest, opt, value, values, parser):\n        if action == \"store\":\n            setattr(values, dest, value)\n        elif action == \"store_const\":\n            setattr(values, dest, self.const)\n        elif action == \"store_true\":\n            setattr(values, dest, True)\n        elif action == \"store_false\":\n            setattr(values, dest, False)\n        elif action == \"append\":\n            values.ensure_value(dest, []).append(value)\n        elif action == \"append_const\":\n            values.ensure_value(dest, []).append(self.const)\n        elif action == \"count\":\n            setattr(values, dest, values.ensure_value(dest, 0) + 1)\n        elif action == \"callback\":\n            args = self.callback_args or ()\n            kwargs = self.callback_kwargs or {}\n            self.callback(self, opt, value, parser, *args, **kwargs)\n        elif action == \"help\":\n            parser.print_help()\n            parser.exit()\n        elif action == \"version\":\n            parser.print_version()\n            parser.exit()\n        else:\n            raise ValueError(\"unknown action %r\" % self.action)\n\n        return 1\n\n# class Option\n\n\nSUPPRESS_HELP = \"SUPPRESS\"+\"HELP\"\nSUPPRESS_USAGE = \"SUPPRESS\"+\"USAGE\"\n\nclass Values:\n\n    def __init__(self, defaults=None):\n        if defaults:\n            for (attr, val) in defaults.items():\n                setattr(self, attr, val)\n\n    def __str__(self):\n        return str(self.__dict__)\n\n    __repr__ = _repr\n\n    def __eq__(self, other):\n        if isinstance(other, Values):\n            return self.__dict__ == other.__dict__\n        elif isinstance(other, dict):\n            return self.__dict__ == other\n        else:\n            return NotImplemented\n\n    def _update_careful(self, dict):\n        \"\"\"\n        Update the option values from an arbitrary dictionary, but only\n        use keys from dict that already have a corresponding attribute\n        in self.  Any keys in dict without a corresponding attribute\n        are silently ignored.\n        \"\"\"\n        for attr in dir(self):\n            if attr in dict:\n                dval = dict[attr]\n                if dval is not None:\n                    setattr(self, attr, dval)\n\n    def _update_loose(self, dict):\n        \"\"\"\n        Update the option values from an arbitrary dictionary,\n        using all keys from the dictionary regardless of whether\n        they have a corresponding attribute in self or not.\n        \"\"\"\n        self.__dict__.update(dict)\n\n    def _update(self, dict, mode):\n        if mode == \"careful\":\n            self._update_careful(dict)\n        elif mode == \"loose\":\n            self._update_loose(dict)\n        else:\n            raise ValueError(\"invalid update mode: %r\" % mode)\n\n    def read_module(self, modname, mode=\"careful\"):\n        __import__(modname)\n        mod = sys.modules[modname]\n        self._update(vars(mod), mode)\n\n    def read_file(self, filename, mode=\"careful\"):\n        vars = {}\n        exec(open(filename).read(), vars)\n        self._update(vars, mode)\n\n    def ensure_value(self, attr, value):\n        if not hasattr(self, attr) or getattr(self, attr) is None:\n            setattr(self, attr, value)\n        return getattr(self, attr)\n\n\nclass OptionContainer:\n\n    \"\"\"\n    Abstract base class.\n\n    Class attributes:\n      standard_option_list : [Option]\n        list of standard options that will be accepted by all instances\n        of this parser class (intended to be overridden by subclasses).\n\n    Instance attributes:\n      option_list : [Option]\n        the list of Option objects contained by this OptionContainer\n      _short_opt : { string : Option }\n        dictionary mapping short option strings, eg. \"-f\" or \"-X\",\n        to the Option instances that implement them.  If an Option\n        has multiple short option strings, it will appear in this\n        dictionary multiple times. [1]\n      _long_opt : { string : Option }\n        dictionary mapping long option strings, eg. \"--file\" or\n        \"--exclude\", to the Option instances that implement them.\n        Again, a given Option can occur multiple times in this\n        dictionary. [1]\n      defaults : { string : any }\n        dictionary mapping option destination names to default\n        values for each destination [1]\n\n    [1] These mappings are common to (shared by) all components of the\n        controlling OptionParser, where they are initially created.\n\n    \"\"\"\n\n    def __init__(self, option_class, conflict_handler, description):\n        # Initialize the option list and related data structures.\n        # This method must be provided by subclasses, and it must\n        # initialize at least the following instance attributes:\n        # option_list, _short_opt, _long_opt, defaults.\n        self._create_option_list()\n\n        self.option_class = option_class\n        self.set_conflict_handler(conflict_handler)\n        self.set_description(description)\n\n    def _create_option_mappings(self):\n        # For use by OptionParser constructor -- create the main\n        # option mappings used by this OptionParser and all\n        # OptionGroups that it owns.\n        self._short_opt = {}            # single letter -> Option instance\n        self._long_opt = {}             # long option -> Option instance\n        self.defaults = {}              # maps option dest -> default value\n\n\n    def _share_option_mappings(self, parser):\n        # For use by OptionGroup constructor -- use shared option\n        # mappings from the OptionParser that owns this OptionGroup.\n        self._short_opt = parser._short_opt\n        self._long_opt = parser._long_opt\n        self.defaults = parser.defaults\n\n    def set_conflict_handler(self, handler):\n        if handler not in (\"error\", \"resolve\"):\n            raise ValueError(\"invalid conflict_resolution value %r\" % handler)\n        self.conflict_handler = handler\n\n    def set_description(self, description):\n        self.description = description\n\n    def get_description(self):\n        return self.description\n\n\n    def destroy(self):\n        \"\"\"see OptionParser.destroy().\"\"\"\n        del self._short_opt\n        del self._long_opt\n        del self.defaults\n\n\n    # -- Option-adding methods -----------------------------------------\n\n    def _check_conflict(self, option):\n        conflict_opts = []\n        for opt in option._short_opts:\n            if opt in self._short_opt:\n                conflict_opts.append((opt, self._short_opt[opt]))\n        for opt in option._long_opts:\n            if opt in self._long_opt:\n                conflict_opts.append((opt, self._long_opt[opt]))\n\n        if conflict_opts:\n            handler = self.conflict_handler\n            if handler == \"error\":\n                raise OptionConflictError(\n                    \"conflicting option string(s): %s\"\n                    % \", \".join([co[0] for co in conflict_opts]),\n                    option)\n            elif handler == \"resolve\":\n                for (opt, c_option) in conflict_opts:\n                    if opt.startswith(\"--\"):\n                        c_option._long_opts.remove(opt)\n                        del self._long_opt[opt]\n                    else:\n                        c_option._short_opts.remove(opt)\n                        del self._short_opt[opt]\n                    if not (c_option._short_opts or c_option._long_opts):\n                        c_option.container.option_list.remove(c_option)\n\n    def add_option(self, *args, **kwargs):\n        \"\"\"add_option(Option)\n           add_option(opt_str, ..., kwarg=val, ...)\n        \"\"\"\n        if isinstance(args[0], str):\n            option = self.option_class(*args, **kwargs)\n        elif len(args) == 1 and not kwargs:\n            option = args[0]\n            if not isinstance(option, Option):\n                raise TypeError(\"not an Option instance: %r\" % option)\n        else:\n            raise TypeError(\"invalid arguments\")\n\n        self._check_conflict(option)\n\n        self.option_list.append(option)\n        option.container = self\n        for opt in option._short_opts:\n            self._short_opt[opt] = option\n        for opt in option._long_opts:\n            self._long_opt[opt] = option\n\n        if option.dest is not None:     # option has a dest, we need a default\n            if option.default is not NO_DEFAULT:\n                self.defaults[option.dest] = option.default\n            elif option.dest not in self.defaults:\n                self.defaults[option.dest] = None\n\n        return option\n\n    def add_options(self, option_list):\n        for option in option_list:\n            self.add_option(option)\n\n    # -- Option query/removal methods ----------------------------------\n\n    def get_option(self, opt_str):\n        return (self._short_opt.get(opt_str) or\n                self._long_opt.get(opt_str))\n\n    def has_option(self, opt_str):\n        return (opt_str in self._short_opt or\n                opt_str in self._long_opt)\n\n    def remove_option(self, opt_str):\n        option = self._short_opt.get(opt_str)\n        if option is None:\n            option = self._long_opt.get(opt_str)\n        if option is None:\n            raise ValueError(\"no such option %r\" % opt_str)\n\n        for opt in option._short_opts:\n            del self._short_opt[opt]\n        for opt in option._long_opts:\n            del self._long_opt[opt]\n        option.container.option_list.remove(option)\n\n\n    # -- Help-formatting methods ---------------------------------------\n\n    def format_option_help(self, formatter):\n        if not self.option_list:\n            return \"\"\n        result = []\n        for option in self.option_list:\n            if not option.help is SUPPRESS_HELP:\n                result.append(formatter.format_option(option))\n        return \"\".join(result)\n\n    def format_description(self, formatter):\n        return formatter.format_description(self.get_description())\n\n    def format_help(self, formatter):\n        result = []\n        if self.description:\n            result.append(self.format_description(formatter))\n        if self.option_list:\n            result.append(self.format_option_help(formatter))\n        return \"\\n\".join(result)\n\n\nclass OptionGroup (OptionContainer):\n\n    def __init__(self, parser, title, description=None):\n        self.parser = parser\n        OptionContainer.__init__(\n            self, parser.option_class, parser.conflict_handler, description)\n        self.title = title\n\n    def _create_option_list(self):\n        self.option_list = []\n        self._share_option_mappings(self.parser)\n\n    def set_title(self, title):\n        self.title = title\n\n    def destroy(self):\n        \"\"\"see OptionParser.destroy().\"\"\"\n        OptionContainer.destroy(self)\n        del self.option_list\n\n    # -- Help-formatting methods ---------------------------------------\n\n    def format_help(self, formatter):\n        result = formatter.format_heading(self.title)\n        formatter.indent()\n        result += OptionContainer.format_help(self, formatter)\n        formatter.dedent()\n        return result\n\n\nclass OptionParser (OptionContainer):\n\n    \"\"\"\n    Class attributes:\n      standard_option_list : [Option]\n        list of standard options that will be accepted by all instances\n        of this parser class (intended to be overridden by subclasses).\n\n    Instance attributes:\n      usage : string\n        a usage string for your program.  Before it is displayed\n        to the user, \"%prog\" will be expanded to the name of\n        your program (self.prog or os.path.basename(sys.argv[0])).\n      prog : string\n        the name of the current program (to override\n        os.path.basename(sys.argv[0])).\n      description : string\n        A paragraph of text giving a brief overview of your program.\n        optparse reformats this paragraph to fit the current terminal\n        width and prints it when the user requests help (after usage,\n        but before the list of options).\n      epilog : string\n        paragraph of help text to print after option help\n\n      option_groups : [OptionGroup]\n        list of option groups in this parser (option groups are\n        irrelevant for parsing the command-line, but very useful\n        for generating help)\n\n      allow_interspersed_args : bool = true\n        if true, positional arguments may be interspersed with options.\n        Assuming -a and -b each take a single argument, the command-line\n          -ablah foo bar -bboo baz\n        will be interpreted the same as\n          -ablah -bboo -- foo bar baz\n        If this flag were false, that command line would be interpreted as\n          -ablah -- foo bar -bboo baz\n        -- ie. we stop processing options as soon as we see the first\n        non-option argument.  (This is the tradition followed by\n        Python's getopt module, Perl's Getopt::Std, and other argument-\n        parsing libraries, but it is generally annoying to users.)\n\n      process_default_values : bool = true\n        if true, option default values are processed similarly to option\n        values from the command line: that is, they are passed to the\n        type-checking function for the option's type (as long as the\n        default value is a string).  (This really only matters if you\n        have defined custom types; see SF bug #955889.)  Set it to false\n        to restore the behaviour of Optik 1.4.1 and earlier.\n\n      rargs : [string]\n        the argument list currently being parsed.  Only set when\n        parse_args() is active, and continually trimmed down as\n        we consume arguments.  Mainly there for the benefit of\n        callback options.\n      largs : [string]\n        the list of leftover arguments that we have skipped while\n        parsing options.  If allow_interspersed_args is false, this\n        list is always empty.\n      values : Values\n        the set of option values currently being accumulated.  Only\n        set when parse_args() is active.  Also mainly for callbacks.\n\n    Because of the 'rargs', 'largs', and 'values' attributes,\n    OptionParser is not thread-safe.  If, for some perverse reason, you\n    need to parse command-line arguments simultaneously in different\n    threads, use different OptionParser instances.\n\n    \"\"\"\n\n    standard_option_list = []\n\n    def __init__(self,\n                 usage=None,\n                 option_list=None,\n                 option_class=Option,\n                 version=None,\n                 conflict_handler=\"error\",\n                 description=None,\n                 formatter=None,\n                 add_help_option=True,\n                 prog=None,\n                 epilog=None):\n        OptionContainer.__init__(\n            self, option_class, conflict_handler, description)\n        self.set_usage(usage)\n        self.prog = prog\n        self.version = version\n        self.allow_interspersed_args = True\n        self.process_default_values = True\n        if formatter is None:\n            formatter = IndentedHelpFormatter()\n        self.formatter = formatter\n        self.formatter.set_parser(self)\n        self.epilog = epilog\n\n        # Populate the option list; initial sources are the\n        # standard_option_list class attribute, the 'option_list'\n        # argument, and (if applicable) the _add_version_option() and\n        # _add_help_option() methods.\n        self._populate_option_list(option_list,\n                                   add_help=add_help_option)\n\n        self._init_parsing_state()\n\n\n    def destroy(self):\n        \"\"\"\n        Declare that you are done with this OptionParser.  This cleans up\n        reference cycles so the OptionParser (and all objects referenced by\n        it) can be garbage-collected promptly.  After calling destroy(), the\n        OptionParser is unusable.\n        \"\"\"\n        OptionContainer.destroy(self)\n        for group in self.option_groups:\n            group.destroy()\n        del self.option_list\n        del self.option_groups\n        del self.formatter\n\n\n    # -- Private methods -----------------------------------------------\n    # (used by our or OptionContainer's constructor)\n\n    def _create_option_list(self):\n        self.option_list = []\n        self.option_groups = []\n        self._create_option_mappings()\n\n    def _add_help_option(self):\n        self.add_option(\"-h\", \"--help\",\n                        action=\"help\",\n                        help=_(\"show this help message and exit\"))\n\n    def _add_version_option(self):\n        self.add_option(\"--version\",\n                        action=\"version\",\n                        help=_(\"show program's version number and exit\"))\n\n    def _populate_option_list(self, option_list, add_help=True):\n        if self.standard_option_list:\n            self.add_options(self.standard_option_list)\n        if option_list:\n            self.add_options(option_list)\n        if self.version:\n            self._add_version_option()\n        if add_help:\n            self._add_help_option()\n\n    def _init_parsing_state(self):\n        # These are set in parse_args() for the convenience of callbacks.\n        self.rargs = None\n        self.largs = None\n        self.values = None\n\n\n    # -- Simple modifier methods ---------------------------------------\n\n    def set_usage(self, usage):\n        if usage is None:\n            self.usage = _(\"%prog [options]\")\n        elif usage is SUPPRESS_USAGE:\n            self.usage = None\n        # For backwards compatibility with Optik 1.3 and earlier.\n        elif usage.lower().startswith(\"usage: \"):\n            self.usage = usage[7:]\n        else:\n            self.usage = usage\n\n    def enable_interspersed_args(self):\n        \"\"\"Set parsing to not stop on the first non-option, allowing\n        interspersing switches with command arguments. This is the\n        default behavior. See also disable_interspersed_args() and the\n        class documentation description of the attribute\n        allow_interspersed_args.\"\"\"\n        self.allow_interspersed_args = True\n\n    def disable_interspersed_args(self):\n        \"\"\"Set parsing to stop on the first non-option. Use this if\n        you have a command processor which runs another command that\n        has options of its own and you want to make sure these options\n        don't get confused.\n        \"\"\"\n        self.allow_interspersed_args = False\n\n    def set_process_default_values(self, process):\n        self.process_default_values = process\n\n    def set_default(self, dest, value):\n        self.defaults[dest] = value\n\n    def set_defaults(self, **kwargs):\n        self.defaults.update(kwargs)\n\n    def _get_all_options(self):\n        options = self.option_list[:]\n        for group in self.option_groups:\n            options.extend(group.option_list)\n        return options\n\n    def get_default_values(self):\n        if not self.process_default_values:\n            # Old, pre-Optik 1.5 behaviour.\n            return Values(self.defaults)\n\n        defaults = self.defaults.copy()\n        for option in self._get_all_options():\n            default = defaults.get(option.dest)\n            if isinstance(default, str):\n                opt_str = option.get_opt_string()\n                defaults[option.dest] = option.check_value(opt_str, default)\n\n        return Values(defaults)\n\n\n    # -- OptionGroup methods -------------------------------------------\n\n    def add_option_group(self, *args, **kwargs):\n        # XXX lots of overlap with OptionContainer.add_option()\n        if isinstance(args[0], str):\n            group = OptionGroup(self, *args, **kwargs)\n        elif len(args) == 1 and not kwargs:\n            group = args[0]\n            if not isinstance(group, OptionGroup):\n                raise TypeError(\"not an OptionGroup instance: %r\" % group)\n            if group.parser is not self:\n                raise ValueError(\"invalid OptionGroup (wrong parser)\")\n        else:\n            raise TypeError(\"invalid arguments\")\n\n        self.option_groups.append(group)\n        return group\n\n    def get_option_group(self, opt_str):\n        option = (self._short_opt.get(opt_str) or\n                  self._long_opt.get(opt_str))\n        if option and option.container is not self:\n            return option.container\n        return None\n\n\n    # -- Option-parsing methods ----------------------------------------\n\n    def _get_args(self, args):\n        if args is None:\n            return sys.argv[1:]\n        else:\n            return args[:]              # don't modify caller's list\n\n    def parse_args(self, args=None, values=None):\n        \"\"\"\n        parse_args(args : [string] = sys.argv[1:],\n                   values : Values = None)\n        -> (values : Values, args : [string])\n\n        Parse the command-line options found in 'args' (default:\n        sys.argv[1:]).  Any errors result in a call to 'error()', which\n        by default prints the usage message to stderr and calls\n        sys.exit() with an error message.  On success returns a pair\n        (values, args) where 'values' is a Values instance (with all\n        your option values) and 'args' is the list of arguments left\n        over after parsing options.\n        \"\"\"\n        rargs = self._get_args(args)\n        if values is None:\n            values = self.get_default_values()\n\n        # Store the halves of the argument list as attributes for the\n        # convenience of callbacks:\n        #   rargs\n        #     the rest of the command-line (the \"r\" stands for\n        #     \"remaining\" or \"right-hand\")\n        #   largs\n        #     the leftover arguments -- ie. what's left after removing\n        #     options and their arguments (the \"l\" stands for \"leftover\"\n        #     or \"left-hand\")\n        self.rargs = rargs\n        self.largs = largs = []\n        self.values = values\n\n        try:\n            stop = self._process_args(largs, rargs, values)\n        except (BadOptionError, OptionValueError) as err:\n            self.error(str(err))\n\n        args = largs + rargs\n        return self.check_values(values, args)\n\n    def check_values(self, values, args):\n        \"\"\"\n        check_values(values : Values, args : [string])\n        -> (values : Values, args : [string])\n\n        Check that the supplied option values and leftover arguments are\n        valid.  Returns the option values and leftover arguments\n        (possibly adjusted, possibly completely new -- whatever you\n        like).  Default implementation just returns the passed-in\n        values; subclasses may override as desired.\n        \"\"\"\n        return (values, args)\n\n    def _process_args(self, largs, rargs, values):\n        \"\"\"_process_args(largs : [string],\n                         rargs : [string],\n                         values : Values)\n\n        Process command-line arguments and populate 'values', consuming\n        options and arguments from 'rargs'.  If 'allow_interspersed_args' is\n        false, stop at the first non-option argument.  If true, accumulate any\n        interspersed non-option arguments in 'largs'.\n        \"\"\"\n        while rargs:\n            arg = rargs[0]\n            # We handle bare \"--\" explicitly, and bare \"-\" is handled by the\n            # standard arg handler since the short arg case ensures that the\n            # len of the opt string is greater than 1.\n            if arg == \"--\":\n                del rargs[0]\n                return\n            elif arg[0:2] == \"--\":\n                # process a single long option (possibly with value(s))\n                self._process_long_opt(rargs, values)\n            elif arg[:1] == \"-\" and len(arg) > 1:\n                # process a cluster of short options (possibly with\n                # value(s) for the last one only)\n                self._process_short_opts(rargs, values)\n            elif self.allow_interspersed_args:\n                largs.append(arg)\n                del rargs[0]\n            else:\n                return                  # stop now, leave this arg in rargs\n\n        # Say this is the original argument list:\n        # [arg0, arg1, ..., arg(i-1), arg(i), arg(i+1), ..., arg(N-1)]\n        #                            ^\n        # (we are about to process arg(i)).\n        #\n        # Then rargs is [arg(i), ..., arg(N-1)] and largs is a *subset* of\n        # [arg0, ..., arg(i-1)] (any options and their arguments will have\n        # been removed from largs).\n        #\n        # The while loop will usually consume 1 or more arguments per pass.\n        # If it consumes 1 (eg. arg is an option that takes no arguments),\n        # then after _process_arg() is done the situation is:\n        #\n        #   largs = subset of [arg0, ..., arg(i)]\n        #   rargs = [arg(i+1), ..., arg(N-1)]\n        #\n        # If allow_interspersed_args is false, largs will always be\n        # *empty* -- still a subset of [arg0, ..., arg(i-1)], but\n        # not a very interesting subset!\n\n    def _match_long_opt(self, opt):\n        \"\"\"_match_long_opt(opt : string) -> string\n\n        Determine which long option string 'opt' matches, ie. which one\n        it is an unambiguous abbreviation for.  Raises BadOptionError if\n        'opt' doesn't unambiguously match any long option string.\n        \"\"\"\n        return _match_abbrev(opt, self._long_opt)\n\n    def _process_long_opt(self, rargs, values):\n        arg = rargs.pop(0)\n\n        # Value explicitly attached to arg?  Pretend it's the next\n        # argument.\n        if \"=\" in arg:\n            (opt, next_arg) = arg.split(\"=\", 1)\n            rargs.insert(0, next_arg)\n            had_explicit_value = True\n        else:\n            opt = arg\n            had_explicit_value = False\n\n        opt = self._match_long_opt(opt)\n        option = self._long_opt[opt]\n        if option.takes_value():\n            nargs = option.nargs\n            if len(rargs) < nargs:\n                self.error(ngettext(\n                    \"%(option)s option requires %(number)d argument\",\n                    \"%(option)s option requires %(number)d arguments\",\n                    nargs) % {\"option\": opt, \"number\": nargs})\n            elif nargs == 1:\n                value = rargs.pop(0)\n            else:\n                value = tuple(rargs[0:nargs])\n                del rargs[0:nargs]\n\n        elif had_explicit_value:\n            self.error(_(\"%s option does not take a value\") % opt)\n\n        else:\n            value = None\n\n        option.process(opt, value, values, self)\n\n    def _process_short_opts(self, rargs, values):\n        arg = rargs.pop(0)\n        stop = False\n        i = 1\n        for ch in arg[1:]:\n            opt = \"-\" + ch\n            option = self._short_opt.get(opt)\n            i += 1                      # we have consumed a character\n\n            if not option:\n                raise BadOptionError(opt)\n            if option.takes_value():\n                # Any characters left in arg?  Pretend they're the\n                # next arg, and stop consuming characters of arg.\n                if i < len(arg):\n                    rargs.insert(0, arg[i:])\n                    stop = True\n\n                nargs = option.nargs\n                if len(rargs) < nargs:\n                    self.error(ngettext(\n                        \"%(option)s option requires %(number)d argument\",\n                        \"%(option)s option requires %(number)d arguments\",\n                        nargs) % {\"option\": opt, \"number\": nargs})\n                elif nargs == 1:\n                    value = rargs.pop(0)\n                else:\n                    value = tuple(rargs[0:nargs])\n                    del rargs[0:nargs]\n\n            else:                       # option doesn't take a value\n                value = None\n\n            option.process(opt, value, values, self)\n\n            if stop:\n                break\n\n\n    # -- Feedback methods ----------------------------------------------\n\n    def get_prog_name(self):\n        if self.prog is None:\n            return os.path.basename(sys.argv[0])\n        else:\n            return self.prog\n\n    def expand_prog_name(self, s):\n        return s.replace(\"%prog\", self.get_prog_name())\n\n    def get_description(self):\n        return self.expand_prog_name(self.description)\n\n    def exit(self, status=0, msg=None):\n        if msg:\n            sys.stderr.write(msg)\n        sys.exit(status)\n\n    def error(self, msg):\n        \"\"\"error(msg : string)\n\n        Print a usage message incorporating 'msg' to stderr and exit.\n        If you override this in a subclass, it should not return -- it\n        should either exit or raise an exception.\n        \"\"\"\n        self.print_usage(sys.stderr)\n        self.exit(2, \"%s: error: %s\\n\" % (self.get_prog_name(), msg))\n\n    def get_usage(self):\n        if self.usage:\n            return self.formatter.format_usage(\n                self.expand_prog_name(self.usage))\n        else:\n            return \"\"\n\n    def print_usage(self, file=None):\n        \"\"\"print_usage(file : file = stdout)\n\n        Print the usage message for the current program (self.usage) to\n        'file' (default stdout).  Any occurrence of the string \"%prog\" in\n        self.usage is replaced with the name of the current program\n        (basename of sys.argv[0]).  Does nothing if self.usage is empty\n        or not defined.\n        \"\"\"\n        if self.usage:\n            print(self.get_usage(), file=file)\n\n    def get_version(self):\n        if self.version:\n            return self.expand_prog_name(self.version)\n        else:\n            return \"\"\n\n    def print_version(self, file=None):\n        \"\"\"print_version(file : file = stdout)\n\n        Print the version message for this program (self.version) to\n        'file' (default stdout).  As with print_usage(), any occurrence\n        of \"%prog\" in self.version is replaced by the current program's\n        name.  Does nothing if self.version is empty or undefined.\n        \"\"\"\n        if self.version:\n            print(self.get_version(), file=file)\n\n    def format_option_help(self, formatter=None):\n        if formatter is None:\n            formatter = self.formatter\n        formatter.store_option_strings(self)\n        result = []\n        result.append(formatter.format_heading(_(\"Options\")))\n        formatter.indent()\n        if self.option_list:\n            result.append(OptionContainer.format_option_help(self, formatter))\n            result.append(\"\\n\")\n        for group in self.option_groups:\n            result.append(group.format_help(formatter))\n            result.append(\"\\n\")\n        formatter.dedent()\n        # Drop the last \"\\n\", or the header if no options or option groups:\n        return \"\".join(result[:-1])\n\n    def format_epilog(self, formatter):\n        return formatter.format_epilog(self.epilog)\n\n    def format_help(self, formatter=None):\n        if formatter is None:\n            formatter = self.formatter\n        result = []\n        if self.usage:\n            result.append(self.get_usage() + \"\\n\")\n        if self.description:\n            result.append(self.format_description(formatter) + \"\\n\")\n        result.append(self.format_option_help(formatter))\n        result.append(self.format_epilog(formatter))\n        return \"\".join(result)\n\n    def print_help(self, file=None):\n        \"\"\"print_help(file : file = stdout)\n\n        Print an extended help message, listing all options and any\n        help text provided with them, to 'file' (default stdout).\n        \"\"\"\n        if file is None:\n            file = sys.stdout\n        file.write(self.format_help())\n\n# class OptionParser\n\n\ndef _match_abbrev(s, wordmap):\n    \"\"\"_match_abbrev(s : string, wordmap : {string : Option}) -> string\n\n    Return the string key in 'wordmap' for which 's' is an unambiguous\n    abbreviation.  If 's' is found to be ambiguous or doesn't match any of\n    'words', raise BadOptionError.\n    \"\"\"\n    # Is there an exact match?\n    if s in wordmap:\n        return s\n    else:\n        # Isolate all words with s as a prefix.\n        possibilities = [word for word in wordmap.keys()\n                         if word.startswith(s)]\n        # No exact match, so there had better be just one possibility.\n        if len(possibilities) == 1:\n            return possibilities[0]\n        elif not possibilities:\n            raise BadOptionError(s)\n        else:\n            # More than one possible completion: ambiguous prefix.\n            possibilities.sort()\n            raise AmbiguousOptionError(s, possibilities)\n\n\n# Some day, there might be many Option classes.  As of Optik 1.3, the\n# preferred way to instantiate Options is indirectly, via make_option(),\n# which will become a factory function when there are many Option\n# classes.\nmake_option = Option\n"
  },
  {
    "path": "rd/usr/lib/python3.8/os.py",
    "content": "r\"\"\"OS routines for NT or Posix depending on what system we're on.\n\nThis exports:\n  - all functions from posix or nt, e.g. unlink, stat, etc.\n  - os.path is either posixpath or ntpath\n  - os.name is either 'posix' or 'nt'\n  - os.curdir is a string representing the current directory (always '.')\n  - os.pardir is a string representing the parent directory (always '..')\n  - os.sep is the (or a most common) pathname separator ('/' or '\\\\')\n  - os.extsep is the extension separator (always '.')\n  - os.altsep is the alternate pathname separator (None or '/')\n  - os.pathsep is the component separator used in $PATH etc\n  - os.linesep is the line separator in text files ('\\r' or '\\n' or '\\r\\n')\n  - os.defpath is the default search path for executables\n  - os.devnull is the file path of the null device ('/dev/null', etc.)\n\nPrograms that import and use 'os' stand a better chance of being\nportable between different platforms.  Of course, they must then\nonly use functions that are defined by all platforms (e.g., unlink\nand opendir), and leave all pathname manipulation to os.path\n(e.g., split and join).\n\"\"\"\n\n#'\nimport abc\nimport sys\nimport stat as st\n\nfrom _collections_abc import _check_methods\n\n_names = sys.builtin_module_names\n\n# Note:  more names are added to __all__ later.\n__all__ = [\"altsep\", \"curdir\", \"pardir\", \"sep\", \"pathsep\", \"linesep\",\n           \"defpath\", \"name\", \"path\", \"devnull\", \"SEEK_SET\", \"SEEK_CUR\",\n           \"SEEK_END\", \"fsencode\", \"fsdecode\", \"get_exec_path\", \"fdopen\",\n           \"popen\", \"extsep\"]\n\ndef _exists(name):\n    return name in globals()\n\ndef _get_exports_list(module):\n    try:\n        return list(module.__all__)\n    except AttributeError:\n        return [n for n in dir(module) if n[0] != '_']\n\n# Any new dependencies of the os module and/or changes in path separator\n# requires updating importlib as well.\nif 'posix' in _names:\n    name = 'posix'\n    linesep = '\\n'\n    from posix import *\n    try:\n        from posix import _exit\n        __all__.append('_exit')\n    except ImportError:\n        pass\n    import posixpath as path\n\n    try:\n        from posix import _have_functions\n    except ImportError:\n        pass\n\n    import posix\n    __all__.extend(_get_exports_list(posix))\n    del posix\n\nelif 'nt' in _names:\n    name = 'nt'\n    linesep = '\\r\\n'\n    from nt import *\n    try:\n        from nt import _exit\n        __all__.append('_exit')\n    except ImportError:\n        pass\n    import ntpath as path\n\n    import nt\n    __all__.extend(_get_exports_list(nt))\n    del nt\n\n    try:\n        from nt import _have_functions\n    except ImportError:\n        pass\n\nelse:\n    raise ImportError('no os specific module found')\n\nsys.modules['os.path'] = path\nfrom os.path import (curdir, pardir, sep, pathsep, defpath, extsep, altsep,\n    devnull)\n\ndel _names\n\n\nif _exists(\"_have_functions\"):\n    _globals = globals()\n    def _add(str, fn):\n        if (fn in _globals) and (str in _have_functions):\n            _set.add(_globals[fn])\n\n    _set = set()\n    _add(\"HAVE_FACCESSAT\",  \"access\")\n    _add(\"HAVE_FCHMODAT\",   \"chmod\")\n    _add(\"HAVE_FCHOWNAT\",   \"chown\")\n    _add(\"HAVE_FSTATAT\",    \"stat\")\n    _add(\"HAVE_FUTIMESAT\",  \"utime\")\n    _add(\"HAVE_LINKAT\",     \"link\")\n    _add(\"HAVE_MKDIRAT\",    \"mkdir\")\n    _add(\"HAVE_MKFIFOAT\",   \"mkfifo\")\n    _add(\"HAVE_MKNODAT\",    \"mknod\")\n    _add(\"HAVE_OPENAT\",     \"open\")\n    _add(\"HAVE_READLINKAT\", \"readlink\")\n    _add(\"HAVE_RENAMEAT\",   \"rename\")\n    _add(\"HAVE_SYMLINKAT\",  \"symlink\")\n    _add(\"HAVE_UNLINKAT\",   \"unlink\")\n    _add(\"HAVE_UNLINKAT\",   \"rmdir\")\n    _add(\"HAVE_UTIMENSAT\",  \"utime\")\n    supports_dir_fd = _set\n\n    _set = set()\n    _add(\"HAVE_FACCESSAT\",  \"access\")\n    supports_effective_ids = _set\n\n    _set = set()\n    _add(\"HAVE_FCHDIR\",     \"chdir\")\n    _add(\"HAVE_FCHMOD\",     \"chmod\")\n    _add(\"HAVE_FCHOWN\",     \"chown\")\n    _add(\"HAVE_FDOPENDIR\",  \"listdir\")\n    _add(\"HAVE_FDOPENDIR\",  \"scandir\")\n    _add(\"HAVE_FEXECVE\",    \"execve\")\n    _set.add(stat) # fstat always works\n    _add(\"HAVE_FTRUNCATE\",  \"truncate\")\n    _add(\"HAVE_FUTIMENS\",   \"utime\")\n    _add(\"HAVE_FUTIMES\",    \"utime\")\n    _add(\"HAVE_FPATHCONF\",  \"pathconf\")\n    if _exists(\"statvfs\") and _exists(\"fstatvfs\"): # mac os x10.3\n        _add(\"HAVE_FSTATVFS\", \"statvfs\")\n    supports_fd = _set\n\n    _set = set()\n    _add(\"HAVE_FACCESSAT\",  \"access\")\n    # Some platforms don't support lchmod().  Often the function exists\n    # anyway, as a stub that always returns ENOSUP or perhaps EOPNOTSUPP.\n    # (No, I don't know why that's a good design.)  ./configure will detect\n    # this and reject it--so HAVE_LCHMOD still won't be defined on such\n    # platforms.  This is Very Helpful.\n    #\n    # However, sometimes platforms without a working lchmod() *do* have\n    # fchmodat().  (Examples: Linux kernel 3.2 with glibc 2.15,\n    # OpenIndiana 3.x.)  And fchmodat() has a flag that theoretically makes\n    # it behave like lchmod().  So in theory it would be a suitable\n    # replacement for lchmod().  But when lchmod() doesn't work, fchmodat()'s\n    # flag doesn't work *either*.  Sadly ./configure isn't sophisticated\n    # enough to detect this condition--it only determines whether or not\n    # fchmodat() minimally works.\n    #\n    # Therefore we simply ignore fchmodat() when deciding whether or not\n    # os.chmod supports follow_symlinks.  Just checking lchmod() is\n    # sufficient.  After all--if you have a working fchmodat(), your\n    # lchmod() almost certainly works too.\n    #\n    # _add(\"HAVE_FCHMODAT\",   \"chmod\")\n    _add(\"HAVE_FCHOWNAT\",   \"chown\")\n    _add(\"HAVE_FSTATAT\",    \"stat\")\n    _add(\"HAVE_LCHFLAGS\",   \"chflags\")\n    _add(\"HAVE_LCHMOD\",     \"chmod\")\n    if _exists(\"lchown\"): # mac os x10.3\n        _add(\"HAVE_LCHOWN\", \"chown\")\n    _add(\"HAVE_LINKAT\",     \"link\")\n    _add(\"HAVE_LUTIMES\",    \"utime\")\n    _add(\"HAVE_LSTAT\",      \"stat\")\n    _add(\"HAVE_FSTATAT\",    \"stat\")\n    _add(\"HAVE_UTIMENSAT\",  \"utime\")\n    _add(\"MS_WINDOWS\",      \"stat\")\n    supports_follow_symlinks = _set\n\n    del _set\n    del _have_functions\n    del _globals\n    del _add\n\n\n# Python uses fixed values for the SEEK_ constants; they are mapped\n# to native constants if necessary in posixmodule.c\n# Other possible SEEK values are directly imported from posixmodule.c\nSEEK_SET = 0\nSEEK_CUR = 1\nSEEK_END = 2\n\n# Super directory utilities.\n# (Inspired by Eric Raymond; the doc strings are mostly his)\n\ndef makedirs(name, mode=0o777, exist_ok=False):\n    \"\"\"makedirs(name [, mode=0o777][, exist_ok=False])\n\n    Super-mkdir; create a leaf directory and all intermediate ones.  Works like\n    mkdir, except that any intermediate path segment (not just the rightmost)\n    will be created if it does not exist. If the target directory already\n    exists, raise an OSError if exist_ok is False. Otherwise no exception is\n    raised.  This is recursive.\n\n    \"\"\"\n    head, tail = path.split(name)\n    if not tail:\n        head, tail = path.split(head)\n    if head and tail and not path.exists(head):\n        try:\n            makedirs(head, exist_ok=exist_ok)\n        except FileExistsError:\n            # Defeats race condition when another thread created the path\n            pass\n        cdir = curdir\n        if isinstance(tail, bytes):\n            cdir = bytes(curdir, 'ASCII')\n        if tail == cdir:           # xxx/newdir/. exists if xxx/newdir exists\n            return\n    try:\n        mkdir(name, mode)\n    except OSError:\n        # Cannot rely on checking for EEXIST, since the operating system\n        # could give priority to other errors like EACCES or EROFS\n        if not exist_ok or not path.isdir(name):\n            raise\n\ndef removedirs(name):\n    \"\"\"removedirs(name)\n\n    Super-rmdir; remove a leaf directory and all empty intermediate\n    ones.  Works like rmdir except that, if the leaf directory is\n    successfully removed, directories corresponding to rightmost path\n    segments will be pruned away until either the whole path is\n    consumed or an error occurs.  Errors during this latter phase are\n    ignored -- they generally mean that a directory was not empty.\n\n    \"\"\"\n    rmdir(name)\n    head, tail = path.split(name)\n    if not tail:\n        head, tail = path.split(head)\n    while head and tail:\n        try:\n            rmdir(head)\n        except OSError:\n            break\n        head, tail = path.split(head)\n\ndef renames(old, new):\n    \"\"\"renames(old, new)\n\n    Super-rename; create directories as necessary and delete any left\n    empty.  Works like rename, except creation of any intermediate\n    directories needed to make the new pathname good is attempted\n    first.  After the rename, directories corresponding to rightmost\n    path segments of the old name will be pruned until either the\n    whole path is consumed or a nonempty directory is found.\n\n    Note: this function can fail with the new directory structure made\n    if you lack permissions needed to unlink the leaf directory or\n    file.\n\n    \"\"\"\n    head, tail = path.split(new)\n    if head and tail and not path.exists(head):\n        makedirs(head)\n    rename(old, new)\n    head, tail = path.split(old)\n    if head and tail:\n        try:\n            removedirs(head)\n        except OSError:\n            pass\n\n__all__.extend([\"makedirs\", \"removedirs\", \"renames\"])\n\ndef walk(top, topdown=True, onerror=None, followlinks=False):\n    \"\"\"Directory tree generator.\n\n    For each directory in the directory tree rooted at top (including top\n    itself, but excluding '.' and '..'), yields a 3-tuple\n\n        dirpath, dirnames, filenames\n\n    dirpath is a string, the path to the directory.  dirnames is a list of\n    the names of the subdirectories in dirpath (excluding '.' and '..').\n    filenames is a list of the names of the non-directory files in dirpath.\n    Note that the names in the lists are just names, with no path components.\n    To get a full path (which begins with top) to a file or directory in\n    dirpath, do os.path.join(dirpath, name).\n\n    If optional arg 'topdown' is true or not specified, the triple for a\n    directory is generated before the triples for any of its subdirectories\n    (directories are generated top down).  If topdown is false, the triple\n    for a directory is generated after the triples for all of its\n    subdirectories (directories are generated bottom up).\n\n    When topdown is true, the caller can modify the dirnames list in-place\n    (e.g., via del or slice assignment), and walk will only recurse into the\n    subdirectories whose names remain in dirnames; this can be used to prune the\n    search, or to impose a specific order of visiting.  Modifying dirnames when\n    topdown is false has no effect on the behavior of os.walk(), since the\n    directories in dirnames have already been generated by the time dirnames\n    itself is generated. No matter the value of topdown, the list of\n    subdirectories is retrieved before the tuples for the directory and its\n    subdirectories are generated.\n\n    By default errors from the os.scandir() call are ignored.  If\n    optional arg 'onerror' is specified, it should be a function; it\n    will be called with one argument, an OSError instance.  It can\n    report the error to continue with the walk, or raise the exception\n    to abort the walk.  Note that the filename is available as the\n    filename attribute of the exception object.\n\n    By default, os.walk does not follow symbolic links to subdirectories on\n    systems that support them.  In order to get this functionality, set the\n    optional argument 'followlinks' to true.\n\n    Caution:  if you pass a relative pathname for top, don't change the\n    current working directory between resumptions of walk.  walk never\n    changes the current directory, and assumes that the client doesn't\n    either.\n\n    Example:\n\n    import os\n    from os.path import join, getsize\n    for root, dirs, files in os.walk('python/Lib/email'):\n        print(root, \"consumes\", end=\"\")\n        print(sum(getsize(join(root, name)) for name in files), end=\"\")\n        print(\"bytes in\", len(files), \"non-directory files\")\n        if 'CVS' in dirs:\n            dirs.remove('CVS')  # don't visit CVS directories\n\n    \"\"\"\n    top = fspath(top)\n    dirs = []\n    nondirs = []\n    walk_dirs = []\n\n    # We may not have read permission for top, in which case we can't\n    # get a list of the files the directory contains.  os.walk\n    # always suppressed the exception then, rather than blow up for a\n    # minor reason when (say) a thousand readable directories are still\n    # left to visit.  That logic is copied here.\n    try:\n        # Note that scandir is global in this module due\n        # to earlier import-*.\n        scandir_it = scandir(top)\n    except OSError as error:\n        if onerror is not None:\n            onerror(error)\n        return\n\n    with scandir_it:\n        while True:\n            try:\n                try:\n                    entry = next(scandir_it)\n                except StopIteration:\n                    break\n            except OSError as error:\n                if onerror is not None:\n                    onerror(error)\n                return\n\n            try:\n                is_dir = entry.is_dir()\n            except OSError:\n                # If is_dir() raises an OSError, consider that the entry is not\n                # a directory, same behaviour than os.path.isdir().\n                is_dir = False\n\n            if is_dir:\n                dirs.append(entry.name)\n            else:\n                nondirs.append(entry.name)\n\n            if not topdown and is_dir:\n                # Bottom-up: recurse into sub-directory, but exclude symlinks to\n                # directories if followlinks is False\n                if followlinks:\n                    walk_into = True\n                else:\n                    try:\n                        is_symlink = entry.is_symlink()\n                    except OSError:\n                        # If is_symlink() raises an OSError, consider that the\n                        # entry is not a symbolic link, same behaviour than\n                        # os.path.islink().\n                        is_symlink = False\n                    walk_into = not is_symlink\n\n                if walk_into:\n                    walk_dirs.append(entry.path)\n\n    # Yield before recursion if going top down\n    if topdown:\n        yield top, dirs, nondirs\n\n        # Recurse into sub-directories\n        islink, join = path.islink, path.join\n        for dirname in dirs:\n            new_path = join(top, dirname)\n            # Issue #23605: os.path.islink() is used instead of caching\n            # entry.is_symlink() result during the loop on os.scandir() because\n            # the caller can replace the directory entry during the \"yield\"\n            # above.\n            if followlinks or not islink(new_path):\n                yield from walk(new_path, topdown, onerror, followlinks)\n    else:\n        # Recurse into sub-directories\n        for new_path in walk_dirs:\n            yield from walk(new_path, topdown, onerror, followlinks)\n        # Yield after recursion if going bottom up\n        yield top, dirs, nondirs\n\n__all__.append(\"walk\")\n\nif {open, stat} <= supports_dir_fd and {scandir, stat} <= supports_fd:\n\n    def fwalk(top=\".\", topdown=True, onerror=None, *, follow_symlinks=False, dir_fd=None):\n        \"\"\"Directory tree generator.\n\n        This behaves exactly like walk(), except that it yields a 4-tuple\n\n            dirpath, dirnames, filenames, dirfd\n\n        `dirpath`, `dirnames` and `filenames` are identical to walk() output,\n        and `dirfd` is a file descriptor referring to the directory `dirpath`.\n\n        The advantage of fwalk() over walk() is that it's safe against symlink\n        races (when follow_symlinks is False).\n\n        If dir_fd is not None, it should be a file descriptor open to a directory,\n          and top should be relative; top will then be relative to that directory.\n          (dir_fd is always supported for fwalk.)\n\n        Caution:\n        Since fwalk() yields file descriptors, those are only valid until the\n        next iteration step, so you should dup() them if you want to keep them\n        for a longer period.\n\n        Example:\n\n        import os\n        for root, dirs, files, rootfd in os.fwalk('python/Lib/email'):\n            print(root, \"consumes\", end=\"\")\n            print(sum(os.stat(name, dir_fd=rootfd).st_size for name in files),\n                  end=\"\")\n            print(\"bytes in\", len(files), \"non-directory files\")\n            if 'CVS' in dirs:\n                dirs.remove('CVS')  # don't visit CVS directories\n        \"\"\"\n        if not isinstance(top, int) or not hasattr(top, '__index__'):\n            top = fspath(top)\n        # Note: To guard against symlink races, we use the standard\n        # lstat()/open()/fstat() trick.\n        if not follow_symlinks:\n            orig_st = stat(top, follow_symlinks=False, dir_fd=dir_fd)\n        topfd = open(top, O_RDONLY, dir_fd=dir_fd)\n        try:\n            if (follow_symlinks or (st.S_ISDIR(orig_st.st_mode) and\n                                    path.samestat(orig_st, stat(topfd)))):\n                yield from _fwalk(topfd, top, isinstance(top, bytes),\n                                  topdown, onerror, follow_symlinks)\n        finally:\n            close(topfd)\n\n    def _fwalk(topfd, toppath, isbytes, topdown, onerror, follow_symlinks):\n        # Note: This uses O(depth of the directory tree) file descriptors: if\n        # necessary, it can be adapted to only require O(1) FDs, see issue\n        # #13734.\n\n        scandir_it = scandir(topfd)\n        dirs = []\n        nondirs = []\n        entries = None if topdown or follow_symlinks else []\n        for entry in scandir_it:\n            name = entry.name\n            if isbytes:\n                name = fsencode(name)\n            try:\n                if entry.is_dir():\n                    dirs.append(name)\n                    if entries is not None:\n                        entries.append(entry)\n                else:\n                    nondirs.append(name)\n            except OSError:\n                try:\n                    # Add dangling symlinks, ignore disappeared files\n                    if entry.is_symlink():\n                        nondirs.append(name)\n                except OSError:\n                    pass\n\n        if topdown:\n            yield toppath, dirs, nondirs, topfd\n\n        for name in dirs if entries is None else zip(dirs, entries):\n            try:\n                if not follow_symlinks:\n                    if topdown:\n                        orig_st = stat(name, dir_fd=topfd, follow_symlinks=False)\n                    else:\n                        assert entries is not None\n                        name, entry = name\n                        orig_st = entry.stat(follow_symlinks=False)\n                dirfd = open(name, O_RDONLY, dir_fd=topfd)\n            except OSError as err:\n                if onerror is not None:\n                    onerror(err)\n                continue\n            try:\n                if follow_symlinks or path.samestat(orig_st, stat(dirfd)):\n                    dirpath = path.join(toppath, name)\n                    yield from _fwalk(dirfd, dirpath, isbytes,\n                                      topdown, onerror, follow_symlinks)\n            finally:\n                close(dirfd)\n\n        if not topdown:\n            yield toppath, dirs, nondirs, topfd\n\n    __all__.append(\"fwalk\")\n\ndef execl(file, *args):\n    \"\"\"execl(file, *args)\n\n    Execute the executable file with argument list args, replacing the\n    current process. \"\"\"\n    execv(file, args)\n\ndef execle(file, *args):\n    \"\"\"execle(file, *args, env)\n\n    Execute the executable file with argument list args and\n    environment env, replacing the current process. \"\"\"\n    env = args[-1]\n    execve(file, args[:-1], env)\n\ndef execlp(file, *args):\n    \"\"\"execlp(file, *args)\n\n    Execute the executable file (which is searched for along $PATH)\n    with argument list args, replacing the current process. \"\"\"\n    execvp(file, args)\n\ndef execlpe(file, *args):\n    \"\"\"execlpe(file, *args, env)\n\n    Execute the executable file (which is searched for along $PATH)\n    with argument list args and environment env, replacing the current\n    process. \"\"\"\n    env = args[-1]\n    execvpe(file, args[:-1], env)\n\ndef execvp(file, args):\n    \"\"\"execvp(file, args)\n\n    Execute the executable file (which is searched for along $PATH)\n    with argument list args, replacing the current process.\n    args may be a list or tuple of strings. \"\"\"\n    _execvpe(file, args)\n\ndef execvpe(file, args, env):\n    \"\"\"execvpe(file, args, env)\n\n    Execute the executable file (which is searched for along $PATH)\n    with argument list args and environment env, replacing the\n    current process.\n    args may be a list or tuple of strings. \"\"\"\n    _execvpe(file, args, env)\n\n__all__.extend([\"execl\",\"execle\",\"execlp\",\"execlpe\",\"execvp\",\"execvpe\"])\n\ndef _execvpe(file, args, env=None):\n    if env is not None:\n        exec_func = execve\n        argrest = (args, env)\n    else:\n        exec_func = execv\n        argrest = (args,)\n        env = environ\n\n    if path.dirname(file):\n        exec_func(file, *argrest)\n        return\n    saved_exc = None\n    path_list = get_exec_path(env)\n    if name != 'nt':\n        file = fsencode(file)\n        path_list = map(fsencode, path_list)\n    for dir in path_list:\n        fullname = path.join(dir, file)\n        try:\n            exec_func(fullname, *argrest)\n        except (FileNotFoundError, NotADirectoryError) as e:\n            last_exc = e\n        except OSError as e:\n            last_exc = e\n            if saved_exc is None:\n                saved_exc = e\n    if saved_exc is not None:\n        raise saved_exc\n    raise last_exc\n\n\ndef get_exec_path(env=None):\n    \"\"\"Returns the sequence of directories that will be searched for the\n    named executable (similar to a shell) when launching a process.\n\n    *env* must be an environment variable dict or None.  If *env* is None,\n    os.environ will be used.\n    \"\"\"\n    # Use a local import instead of a global import to limit the number of\n    # modules loaded at startup: the os module is always loaded at startup by\n    # Python. It may also avoid a bootstrap issue.\n    import warnings\n\n    if env is None:\n        env = environ\n\n    # {b'PATH': ...}.get('PATH') and {'PATH': ...}.get(b'PATH') emit a\n    # BytesWarning when using python -b or python -bb: ignore the warning\n    with warnings.catch_warnings():\n        warnings.simplefilter(\"ignore\", BytesWarning)\n\n        try:\n            path_list = env.get('PATH')\n        except TypeError:\n            path_list = None\n\n        if supports_bytes_environ:\n            try:\n                path_listb = env[b'PATH']\n            except (KeyError, TypeError):\n                pass\n            else:\n                if path_list is not None:\n                    raise ValueError(\n                        \"env cannot contain 'PATH' and b'PATH' keys\")\n                path_list = path_listb\n\n            if path_list is not None and isinstance(path_list, bytes):\n                path_list = fsdecode(path_list)\n\n    if path_list is None:\n        path_list = defpath\n    return path_list.split(pathsep)\n\n\n# Change environ to automatically call putenv(), unsetenv if they exist.\nfrom _collections_abc import MutableMapping\n\nclass _Environ(MutableMapping):\n    def __init__(self, data, encodekey, decodekey, encodevalue, decodevalue, putenv, unsetenv):\n        self.encodekey = encodekey\n        self.decodekey = decodekey\n        self.encodevalue = encodevalue\n        self.decodevalue = decodevalue\n        self.putenv = putenv\n        self.unsetenv = unsetenv\n        self._data = data\n\n    def __getitem__(self, key):\n        try:\n            value = self._data[self.encodekey(key)]\n        except KeyError:\n            # raise KeyError with the original key value\n            raise KeyError(key) from None\n        return self.decodevalue(value)\n\n    def __setitem__(self, key, value):\n        key = self.encodekey(key)\n        value = self.encodevalue(value)\n        self.putenv(key, value)\n        self._data[key] = value\n\n    def __delitem__(self, key):\n        encodedkey = self.encodekey(key)\n        self.unsetenv(encodedkey)\n        try:\n            del self._data[encodedkey]\n        except KeyError:\n            # raise KeyError with the original key value\n            raise KeyError(key) from None\n\n    def __iter__(self):\n        # list() from dict object is an atomic operation\n        keys = list(self._data)\n        for key in keys:\n            yield self.decodekey(key)\n\n    def __len__(self):\n        return len(self._data)\n\n    def __repr__(self):\n        return 'environ({{{}}})'.format(', '.join(\n            ('{!r}: {!r}'.format(self.decodekey(key), self.decodevalue(value))\n            for key, value in self._data.items())))\n\n    def copy(self):\n        return dict(self)\n\n    def setdefault(self, key, value):\n        if key not in self:\n            self[key] = value\n        return self[key]\n\ntry:\n    _putenv = putenv\nexcept NameError:\n    _putenv = lambda key, value: None\nelse:\n    if \"putenv\" not in __all__:\n        __all__.append(\"putenv\")\n\ntry:\n    _unsetenv = unsetenv\nexcept NameError:\n    _unsetenv = lambda key: _putenv(key, \"\")\nelse:\n    if \"unsetenv\" not in __all__:\n        __all__.append(\"unsetenv\")\n\ndef _createenviron():\n    if name == 'nt':\n        # Where Env Var Names Must Be UPPERCASE\n        def check_str(value):\n            if not isinstance(value, str):\n                raise TypeError(\"str expected, not %s\" % type(value).__name__)\n            return value\n        encode = check_str\n        decode = str\n        def encodekey(key):\n            return encode(key).upper()\n        data = {}\n        for key, value in environ.items():\n            data[encodekey(key)] = value\n    else:\n        # Where Env Var Names Can Be Mixed Case\n        encoding = sys.getfilesystemencoding()\n        def encode(value):\n            if not isinstance(value, str):\n                raise TypeError(\"str expected, not %s\" % type(value).__name__)\n            return value.encode(encoding, 'surrogateescape')\n        def decode(value):\n            return value.decode(encoding, 'surrogateescape')\n        encodekey = encode\n        data = environ\n    return _Environ(data,\n        encodekey, decode,\n        encode, decode,\n        _putenv, _unsetenv)\n\n# unicode environ\nenviron = _createenviron()\ndel _createenviron\n\n\ndef getenv(key, default=None):\n    \"\"\"Get an environment variable, return None if it doesn't exist.\n    The optional second argument can specify an alternate default.\n    key, default and the result are str.\"\"\"\n    return environ.get(key, default)\n\nsupports_bytes_environ = (name != 'nt')\n__all__.extend((\"getenv\", \"supports_bytes_environ\"))\n\nif supports_bytes_environ:\n    def _check_bytes(value):\n        if not isinstance(value, bytes):\n            raise TypeError(\"bytes expected, not %s\" % type(value).__name__)\n        return value\n\n    # bytes environ\n    environb = _Environ(environ._data,\n        _check_bytes, bytes,\n        _check_bytes, bytes,\n        _putenv, _unsetenv)\n    del _check_bytes\n\n    def getenvb(key, default=None):\n        \"\"\"Get an environment variable, return None if it doesn't exist.\n        The optional second argument can specify an alternate default.\n        key, default and the result are bytes.\"\"\"\n        return environb.get(key, default)\n\n    __all__.extend((\"environb\", \"getenvb\"))\n\ndef _fscodec():\n    encoding = sys.getfilesystemencoding()\n    errors = sys.getfilesystemencodeerrors()\n\n    def fsencode(filename):\n        \"\"\"Encode filename (an os.PathLike, bytes, or str) to the filesystem\n        encoding with 'surrogateescape' error handler, return bytes unchanged.\n        On Windows, use 'strict' error handler if the file system encoding is\n        'mbcs' (which is the default encoding).\n        \"\"\"\n        filename = fspath(filename)  # Does type-checking of `filename`.\n        if isinstance(filename, str):\n            return filename.encode(encoding, errors)\n        else:\n            return filename\n\n    def fsdecode(filename):\n        \"\"\"Decode filename (an os.PathLike, bytes, or str) from the filesystem\n        encoding with 'surrogateescape' error handler, return str unchanged. On\n        Windows, use 'strict' error handler if the file system encoding is\n        'mbcs' (which is the default encoding).\n        \"\"\"\n        filename = fspath(filename)  # Does type-checking of `filename`.\n        if isinstance(filename, bytes):\n            return filename.decode(encoding, errors)\n        else:\n            return filename\n\n    return fsencode, fsdecode\n\nfsencode, fsdecode = _fscodec()\ndel _fscodec\n\n# Supply spawn*() (probably only for Unix)\nif _exists(\"fork\") and not _exists(\"spawnv\") and _exists(\"execv\"):\n\n    P_WAIT = 0\n    P_NOWAIT = P_NOWAITO = 1\n\n    __all__.extend([\"P_WAIT\", \"P_NOWAIT\", \"P_NOWAITO\"])\n\n    # XXX Should we support P_DETACH?  I suppose it could fork()**2\n    # and close the std I/O streams.  Also, P_OVERLAY is the same\n    # as execv*()?\n\n    def _spawnvef(mode, file, args, env, func):\n        # Internal helper; func is the exec*() function to use\n        if not isinstance(args, (tuple, list)):\n            raise TypeError('argv must be a tuple or a list')\n        if not args or not args[0]:\n            raise ValueError('argv first element cannot be empty')\n        pid = fork()\n        if not pid:\n            # Child\n            try:\n                if env is None:\n                    func(file, args)\n                else:\n                    func(file, args, env)\n            except:\n                _exit(127)\n        else:\n            # Parent\n            if mode == P_NOWAIT:\n                return pid # Caller is responsible for waiting!\n            while 1:\n                wpid, sts = waitpid(pid, 0)\n                if WIFSTOPPED(sts):\n                    continue\n                elif WIFSIGNALED(sts):\n                    return -WTERMSIG(sts)\n                elif WIFEXITED(sts):\n                    return WEXITSTATUS(sts)\n                else:\n                    raise OSError(\"Not stopped, signaled or exited???\")\n\n    def spawnv(mode, file, args):\n        \"\"\"spawnv(mode, file, args) -> integer\n\nExecute file with arguments from args in a subprocess.\nIf mode == P_NOWAIT return the pid of the process.\nIf mode == P_WAIT return the process's exit code if it exits normally;\notherwise return -SIG, where SIG is the signal that killed it. \"\"\"\n        return _spawnvef(mode, file, args, None, execv)\n\n    def spawnve(mode, file, args, env):\n        \"\"\"spawnve(mode, file, args, env) -> integer\n\nExecute file with arguments from args in a subprocess with the\nspecified environment.\nIf mode == P_NOWAIT return the pid of the process.\nIf mode == P_WAIT return the process's exit code if it exits normally;\notherwise return -SIG, where SIG is the signal that killed it. \"\"\"\n        return _spawnvef(mode, file, args, env, execve)\n\n    # Note: spawnvp[e] isn't currently supported on Windows\n\n    def spawnvp(mode, file, args):\n        \"\"\"spawnvp(mode, file, args) -> integer\n\nExecute file (which is looked for along $PATH) with arguments from\nargs in a subprocess.\nIf mode == P_NOWAIT return the pid of the process.\nIf mode == P_WAIT return the process's exit code if it exits normally;\notherwise return -SIG, where SIG is the signal that killed it. \"\"\"\n        return _spawnvef(mode, file, args, None, execvp)\n\n    def spawnvpe(mode, file, args, env):\n        \"\"\"spawnvpe(mode, file, args, env) -> integer\n\nExecute file (which is looked for along $PATH) with arguments from\nargs in a subprocess with the supplied environment.\nIf mode == P_NOWAIT return the pid of the process.\nIf mode == P_WAIT return the process's exit code if it exits normally;\notherwise return -SIG, where SIG is the signal that killed it. \"\"\"\n        return _spawnvef(mode, file, args, env, execvpe)\n\n\n    __all__.extend([\"spawnv\", \"spawnve\", \"spawnvp\", \"spawnvpe\"])\n\n\nif _exists(\"spawnv\"):\n    # These aren't supplied by the basic Windows code\n    # but can be easily implemented in Python\n\n    def spawnl(mode, file, *args):\n        \"\"\"spawnl(mode, file, *args) -> integer\n\nExecute file with arguments from args in a subprocess.\nIf mode == P_NOWAIT return the pid of the process.\nIf mode == P_WAIT return the process's exit code if it exits normally;\notherwise return -SIG, where SIG is the signal that killed it. \"\"\"\n        return spawnv(mode, file, args)\n\n    def spawnle(mode, file, *args):\n        \"\"\"spawnle(mode, file, *args, env) -> integer\n\nExecute file with arguments from args in a subprocess with the\nsupplied environment.\nIf mode == P_NOWAIT return the pid of the process.\nIf mode == P_WAIT return the process's exit code if it exits normally;\notherwise return -SIG, where SIG is the signal that killed it. \"\"\"\n        env = args[-1]\n        return spawnve(mode, file, args[:-1], env)\n\n\n    __all__.extend([\"spawnl\", \"spawnle\"])\n\n\nif _exists(\"spawnvp\"):\n    # At the moment, Windows doesn't implement spawnvp[e],\n    # so it won't have spawnlp[e] either.\n    def spawnlp(mode, file, *args):\n        \"\"\"spawnlp(mode, file, *args) -> integer\n\nExecute file (which is looked for along $PATH) with arguments from\nargs in a subprocess with the supplied environment.\nIf mode == P_NOWAIT return the pid of the process.\nIf mode == P_WAIT return the process's exit code if it exits normally;\notherwise return -SIG, where SIG is the signal that killed it. \"\"\"\n        return spawnvp(mode, file, args)\n\n    def spawnlpe(mode, file, *args):\n        \"\"\"spawnlpe(mode, file, *args, env) -> integer\n\nExecute file (which is looked for along $PATH) with arguments from\nargs in a subprocess with the supplied environment.\nIf mode == P_NOWAIT return the pid of the process.\nIf mode == P_WAIT return the process's exit code if it exits normally;\notherwise return -SIG, where SIG is the signal that killed it. \"\"\"\n        env = args[-1]\n        return spawnvpe(mode, file, args[:-1], env)\n\n\n    __all__.extend([\"spawnlp\", \"spawnlpe\"])\n\n\n# Supply os.popen()\ndef popen(cmd, mode=\"r\", buffering=-1):\n    if not isinstance(cmd, str):\n        raise TypeError(\"invalid cmd type (%s, expected string)\" % type(cmd))\n    if mode not in (\"r\", \"w\"):\n        raise ValueError(\"invalid mode %r\" % mode)\n    if buffering == 0 or buffering is None:\n        raise ValueError(\"popen() does not support unbuffered streams\")\n    import subprocess, io\n    if mode == \"r\":\n        proc = subprocess.Popen(cmd,\n                                shell=True,\n                                stdout=subprocess.PIPE,\n                                bufsize=buffering)\n        return _wrap_close(io.TextIOWrapper(proc.stdout), proc)\n    else:\n        proc = subprocess.Popen(cmd,\n                                shell=True,\n                                stdin=subprocess.PIPE,\n                                bufsize=buffering)\n        return _wrap_close(io.TextIOWrapper(proc.stdin), proc)\n\n# Helper for popen() -- a proxy for a file whose close waits for the process\nclass _wrap_close:\n    def __init__(self, stream, proc):\n        self._stream = stream\n        self._proc = proc\n    def close(self):\n        self._stream.close()\n        returncode = self._proc.wait()\n        if returncode == 0:\n            return None\n        if name == 'nt':\n            return returncode\n        else:\n            return returncode << 8  # Shift left to match old behavior\n    def __enter__(self):\n        return self\n    def __exit__(self, *args):\n        self.close()\n    def __getattr__(self, name):\n        return getattr(self._stream, name)\n    def __iter__(self):\n        return iter(self._stream)\n\n# Supply os.fdopen()\ndef fdopen(fd, *args, **kwargs):\n    if not isinstance(fd, int):\n        raise TypeError(\"invalid fd type (%s, expected integer)\" % type(fd))\n    import io\n    return io.open(fd, *args, **kwargs)\n\n\n# For testing purposes, make sure the function is available when the C\n# implementation exists.\ndef _fspath(path):\n    \"\"\"Return the path representation of a path-like object.\n\n    If str or bytes is passed in, it is returned unchanged. Otherwise the\n    os.PathLike interface is used to get the path representation. If the\n    path representation is not str or bytes, TypeError is raised. If the\n    provided path is not str, bytes, or os.PathLike, TypeError is raised.\n    \"\"\"\n    if isinstance(path, (str, bytes)):\n        return path\n\n    # Work from the object's type to match method resolution of other magic\n    # methods.\n    path_type = type(path)\n    try:\n        path_repr = path_type.__fspath__(path)\n    except AttributeError:\n        if hasattr(path_type, '__fspath__'):\n            raise\n        else:\n            raise TypeError(\"expected str, bytes or os.PathLike object, \"\n                            \"not \" + path_type.__name__)\n    if isinstance(path_repr, (str, bytes)):\n        return path_repr\n    else:\n        raise TypeError(\"expected {}.__fspath__() to return str or bytes, \"\n                        \"not {}\".format(path_type.__name__,\n                                        type(path_repr).__name__))\n\n# If there is no C implementation, make the pure Python version the\n# implementation as transparently as possible.\nif not _exists('fspath'):\n    fspath = _fspath\n    fspath.__name__ = \"fspath\"\n\n\nclass PathLike(abc.ABC):\n\n    \"\"\"Abstract base class for implementing the file system path protocol.\"\"\"\n\n    @abc.abstractmethod\n    def __fspath__(self):\n        \"\"\"Return the file system path representation of the object.\"\"\"\n        raise NotImplementedError\n\n    @classmethod\n    def __subclasshook__(cls, subclass):\n        if cls is PathLike:\n            return _check_methods(subclass, '__fspath__')\n        return NotImplemented\n\n\nif name == 'nt':\n    class _AddedDllDirectory:\n        def __init__(self, path, cookie, remove_dll_directory):\n            self.path = path\n            self._cookie = cookie\n            self._remove_dll_directory = remove_dll_directory\n        def close(self):\n            self._remove_dll_directory(self._cookie)\n            self.path = None\n        def __enter__(self):\n            return self\n        def __exit__(self, *args):\n            self.close()\n        def __repr__(self):\n            if self.path:\n                return \"<AddedDllDirectory({!r})>\".format(self.path)\n            return \"<AddedDllDirectory()>\"\n\n    def add_dll_directory(path):\n        \"\"\"Add a path to the DLL search path.\n\n        This search path is used when resolving dependencies for imported\n        extension modules (the module itself is resolved through sys.path),\n        and also by ctypes.\n\n        Remove the directory by calling close() on the returned object or\n        using it in a with statement.\n        \"\"\"\n        import nt\n        cookie = nt._add_dll_directory(path)\n        return _AddedDllDirectory(\n            path,\n            cookie,\n            nt._remove_dll_directory\n        )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/pathlib.py",
    "content": "import fnmatch\nimport functools\nimport io\nimport ntpath\nimport os\nimport posixpath\nimport re\nimport sys\nfrom _collections_abc import Sequence\nfrom errno import EINVAL, ENOENT, ENOTDIR, EBADF, ELOOP\nfrom operator import attrgetter\nfrom stat import S_ISDIR, S_ISLNK, S_ISREG, S_ISSOCK, S_ISBLK, S_ISCHR, S_ISFIFO\nfrom urllib.parse import quote_from_bytes as urlquote_from_bytes\n\n\nsupports_symlinks = True\nif os.name == 'nt':\n    import nt\n    if sys.getwindowsversion()[:2] >= (6, 0):\n        from nt import _getfinalpathname\n    else:\n        supports_symlinks = False\n        _getfinalpathname = None\nelse:\n    nt = None\n\n\n__all__ = [\n    \"PurePath\", \"PurePosixPath\", \"PureWindowsPath\",\n    \"Path\", \"PosixPath\", \"WindowsPath\",\n    ]\n\n#\n# Internals\n#\n\n# EBADF - guard against macOS `stat` throwing EBADF\n_IGNORED_ERROS = (ENOENT, ENOTDIR, EBADF, ELOOP)\n\n_IGNORED_WINERRORS = (\n    21,  # ERROR_NOT_READY - drive exists but is not accessible\n    1921,  # ERROR_CANT_RESOLVE_FILENAME - fix for broken symlink pointing to itself\n)\n\ndef _ignore_error(exception):\n    return (getattr(exception, 'errno', None) in _IGNORED_ERROS or\n            getattr(exception, 'winerror', None) in _IGNORED_WINERRORS)\n\n\ndef _is_wildcard_pattern(pat):\n    # Whether this pattern needs actual matching using fnmatch, or can\n    # be looked up directly as a file.\n    return \"*\" in pat or \"?\" in pat or \"[\" in pat\n\n\nclass _Flavour(object):\n    \"\"\"A flavour implements a particular (platform-specific) set of path\n    semantics.\"\"\"\n\n    def __init__(self):\n        self.join = self.sep.join\n\n    def parse_parts(self, parts):\n        parsed = []\n        sep = self.sep\n        altsep = self.altsep\n        drv = root = ''\n        it = reversed(parts)\n        for part in it:\n            if not part:\n                continue\n            if altsep:\n                part = part.replace(altsep, sep)\n            drv, root, rel = self.splitroot(part)\n            if sep in rel:\n                for x in reversed(rel.split(sep)):\n                    if x and x != '.':\n                        parsed.append(sys.intern(x))\n            else:\n                if rel and rel != '.':\n                    parsed.append(sys.intern(rel))\n            if drv or root:\n                if not drv:\n                    # If no drive is present, try to find one in the previous\n                    # parts. This makes the result of parsing e.g.\n                    # (\"C:\", \"/\", \"a\") reasonably intuitive.\n                    for part in it:\n                        if not part:\n                            continue\n                        if altsep:\n                            part = part.replace(altsep, sep)\n                        drv = self.splitroot(part)[0]\n                        if drv:\n                            break\n                break\n        if drv or root:\n            parsed.append(drv + root)\n        parsed.reverse()\n        return drv, root, parsed\n\n    def join_parsed_parts(self, drv, root, parts, drv2, root2, parts2):\n        \"\"\"\n        Join the two paths represented by the respective\n        (drive, root, parts) tuples.  Return a new (drive, root, parts) tuple.\n        \"\"\"\n        if root2:\n            if not drv2 and drv:\n                return drv, root2, [drv + root2] + parts2[1:]\n        elif drv2:\n            if drv2 == drv or self.casefold(drv2) == self.casefold(drv):\n                # Same drive => second path is relative to the first\n                return drv, root, parts + parts2[1:]\n        else:\n            # Second path is non-anchored (common case)\n            return drv, root, parts + parts2\n        return drv2, root2, parts2\n\n\nclass _WindowsFlavour(_Flavour):\n    # Reference for Windows paths can be found at\n    # http://msdn.microsoft.com/en-us/library/aa365247%28v=vs.85%29.aspx\n\n    sep = '\\\\'\n    altsep = '/'\n    has_drv = True\n    pathmod = ntpath\n\n    is_supported = (os.name == 'nt')\n\n    drive_letters = set('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ')\n    ext_namespace_prefix = '\\\\\\\\?\\\\'\n\n    reserved_names = (\n        {'CON', 'PRN', 'AUX', 'NUL'} |\n        {'COM%d' % i for i in range(1, 10)} |\n        {'LPT%d' % i for i in range(1, 10)}\n        )\n\n    # Interesting findings about extended paths:\n    # - '\\\\?\\c:\\a', '//?/c:\\a' and '//?/c:/a' are all supported\n    #   but '\\\\?\\c:/a' is not\n    # - extended paths are always absolute; \"relative\" extended paths will\n    #   fail.\n\n    def splitroot(self, part, sep=sep):\n        first = part[0:1]\n        second = part[1:2]\n        if (second == sep and first == sep):\n            # XXX extended paths should also disable the collapsing of \".\"\n            # components (according to MSDN docs).\n            prefix, part = self._split_extended_path(part)\n            first = part[0:1]\n            second = part[1:2]\n        else:\n            prefix = ''\n        third = part[2:3]\n        if (second == sep and first == sep and third != sep):\n            # is a UNC path:\n            # vvvvvvvvvvvvvvvvvvvvv root\n            # \\\\machine\\mountpoint\\directory\\etc\\...\n            #            directory ^^^^^^^^^^^^^^\n            index = part.find(sep, 2)\n            if index != -1:\n                index2 = part.find(sep, index + 1)\n                # a UNC path can't have two slashes in a row\n                # (after the initial two)\n                if index2 != index + 1:\n                    if index2 == -1:\n                        index2 = len(part)\n                    if prefix:\n                        return prefix + part[1:index2], sep, part[index2+1:]\n                    else:\n                        return part[:index2], sep, part[index2+1:]\n        drv = root = ''\n        if second == ':' and first in self.drive_letters:\n            drv = part[:2]\n            part = part[2:]\n            first = third\n        if first == sep:\n            root = first\n            part = part.lstrip(sep)\n        return prefix + drv, root, part\n\n    def casefold(self, s):\n        return s.lower()\n\n    def casefold_parts(self, parts):\n        return [p.lower() for p in parts]\n\n    def compile_pattern(self, pattern):\n        return re.compile(fnmatch.translate(pattern), re.IGNORECASE).fullmatch\n\n    def resolve(self, path, strict=False):\n        s = str(path)\n        if not s:\n            return os.getcwd()\n        previous_s = None\n        if _getfinalpathname is not None:\n            if strict:\n                return self._ext_to_normal(_getfinalpathname(s))\n            else:\n                tail_parts = []  # End of the path after the first one not found\n                while True:\n                    try:\n                        s = self._ext_to_normal(_getfinalpathname(s))\n                    except FileNotFoundError:\n                        previous_s = s\n                        s, tail = os.path.split(s)\n                        tail_parts.append(tail)\n                        if previous_s == s:\n                            return path\n                    else:\n                        return os.path.join(s, *reversed(tail_parts))\n        # Means fallback on absolute\n        return None\n\n    def _split_extended_path(self, s, ext_prefix=ext_namespace_prefix):\n        prefix = ''\n        if s.startswith(ext_prefix):\n            prefix = s[:4]\n            s = s[4:]\n            if s.startswith('UNC\\\\'):\n                prefix += s[:3]\n                s = '\\\\' + s[3:]\n        return prefix, s\n\n    def _ext_to_normal(self, s):\n        # Turn back an extended path into a normal DOS-like path\n        return self._split_extended_path(s)[1]\n\n    def is_reserved(self, parts):\n        # NOTE: the rules for reserved names seem somewhat complicated\n        # (e.g. r\"..\\NUL\" is reserved but not r\"foo\\NUL\").\n        # We err on the side of caution and return True for paths which are\n        # not considered reserved by Windows.\n        if not parts:\n            return False\n        if parts[0].startswith('\\\\\\\\'):\n            # UNC paths are never reserved\n            return False\n        return parts[-1].partition('.')[0].upper() in self.reserved_names\n\n    def make_uri(self, path):\n        # Under Windows, file URIs use the UTF-8 encoding.\n        drive = path.drive\n        if len(drive) == 2 and drive[1] == ':':\n            # It's a path on a local drive => 'file:///c:/a/b'\n            rest = path.as_posix()[2:].lstrip('/')\n            return 'file:///%s/%s' % (\n                drive, urlquote_from_bytes(rest.encode('utf-8')))\n        else:\n            # It's a path on a network drive => 'file://host/share/a/b'\n            return 'file:' + urlquote_from_bytes(path.as_posix().encode('utf-8'))\n\n    def gethomedir(self, username):\n        if 'USERPROFILE' in os.environ:\n            userhome = os.environ['USERPROFILE']\n        elif 'HOMEPATH' in os.environ:\n            try:\n                drv = os.environ['HOMEDRIVE']\n            except KeyError:\n                drv = ''\n            userhome = drv + os.environ['HOMEPATH']\n        else:\n            raise RuntimeError(\"Can't determine home directory\")\n\n        if username:\n            # Try to guess user home directory.  By default all users\n            # directories are located in the same place and are named by\n            # corresponding usernames.  If current user home directory points\n            # to nonstandard place, this guess is likely wrong.\n            if os.environ['USERNAME'] != username:\n                drv, root, parts = self.parse_parts((userhome,))\n                if parts[-1] != os.environ['USERNAME']:\n                    raise RuntimeError(\"Can't determine home directory \"\n                                       \"for %r\" % username)\n                parts[-1] = username\n                if drv or root:\n                    userhome = drv + root + self.join(parts[1:])\n                else:\n                    userhome = self.join(parts)\n        return userhome\n\nclass _PosixFlavour(_Flavour):\n    sep = '/'\n    altsep = ''\n    has_drv = False\n    pathmod = posixpath\n\n    is_supported = (os.name != 'nt')\n\n    def splitroot(self, part, sep=sep):\n        if part and part[0] == sep:\n            stripped_part = part.lstrip(sep)\n            # According to POSIX path resolution:\n            # http://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap04.html#tag_04_11\n            # \"A pathname that begins with two successive slashes may be\n            # interpreted in an implementation-defined manner, although more\n            # than two leading slashes shall be treated as a single slash\".\n            if len(part) - len(stripped_part) == 2:\n                return '', sep * 2, stripped_part\n            else:\n                return '', sep, stripped_part\n        else:\n            return '', '', part\n\n    def casefold(self, s):\n        return s\n\n    def casefold_parts(self, parts):\n        return parts\n\n    def compile_pattern(self, pattern):\n        return re.compile(fnmatch.translate(pattern)).fullmatch\n\n    def resolve(self, path, strict=False):\n        sep = self.sep\n        accessor = path._accessor\n        seen = {}\n        def _resolve(path, rest):\n            if rest.startswith(sep):\n                path = ''\n\n            for name in rest.split(sep):\n                if not name or name == '.':\n                    # current dir\n                    continue\n                if name == '..':\n                    # parent dir\n                    path, _, _ = path.rpartition(sep)\n                    continue\n                newpath = path + sep + name\n                if newpath in seen:\n                    # Already seen this path\n                    path = seen[newpath]\n                    if path is not None:\n                        # use cached value\n                        continue\n                    # The symlink is not resolved, so we must have a symlink loop.\n                    raise RuntimeError(\"Symlink loop from %r\" % newpath)\n                # Resolve the symbolic link\n                try:\n                    target = accessor.readlink(newpath)\n                except OSError as e:\n                    if e.errno != EINVAL and strict:\n                        raise\n                    # Not a symlink, or non-strict mode. We just leave the path\n                    # untouched.\n                    path = newpath\n                else:\n                    seen[newpath] = None # not resolved symlink\n                    path = _resolve(path, target)\n                    seen[newpath] = path # resolved symlink\n\n            return path\n        # NOTE: according to POSIX, getcwd() cannot contain path components\n        # which are symlinks.\n        base = '' if path.is_absolute() else os.getcwd()\n        return _resolve(base, str(path)) or sep\n\n    def is_reserved(self, parts):\n        return False\n\n    def make_uri(self, path):\n        # We represent the path using the local filesystem encoding,\n        # for portability to other applications.\n        bpath = bytes(path)\n        return 'file://' + urlquote_from_bytes(bpath)\n\n    def gethomedir(self, username):\n        if not username:\n            try:\n                return os.environ['HOME']\n            except KeyError:\n                import pwd\n                return pwd.getpwuid(os.getuid()).pw_dir\n        else:\n            import pwd\n            try:\n                return pwd.getpwnam(username).pw_dir\n            except KeyError:\n                raise RuntimeError(\"Can't determine home directory \"\n                                   \"for %r\" % username)\n\n\n_windows_flavour = _WindowsFlavour()\n_posix_flavour = _PosixFlavour()\n\n\nclass _Accessor:\n    \"\"\"An accessor implements a particular (system-specific or not) way of\n    accessing paths on the filesystem.\"\"\"\n\n\nclass _NormalAccessor(_Accessor):\n\n    stat = os.stat\n\n    lstat = os.lstat\n\n    open = os.open\n\n    listdir = os.listdir\n\n    scandir = os.scandir\n\n    chmod = os.chmod\n\n    if hasattr(os, \"lchmod\"):\n        lchmod = os.lchmod\n    else:\n        def lchmod(self, pathobj, mode):\n            raise NotImplementedError(\"lchmod() not available on this system\")\n\n    mkdir = os.mkdir\n\n    unlink = os.unlink\n\n    if hasattr(os, \"link\"):\n        link_to = os.link\n    else:\n        @staticmethod\n        def link_to(self, target):\n            raise NotImplementedError(\"os.link() not available on this system\")\n\n    rmdir = os.rmdir\n\n    rename = os.rename\n\n    replace = os.replace\n\n    if nt:\n        if supports_symlinks:\n            symlink = os.symlink\n        else:\n            def symlink(a, b, target_is_directory):\n                raise NotImplementedError(\"symlink() not available on this system\")\n    else:\n        # Under POSIX, os.symlink() takes two args\n        @staticmethod\n        def symlink(a, b, target_is_directory):\n            return os.symlink(a, b)\n\n    utime = os.utime\n\n    # Helper for resolve()\n    def readlink(self, path):\n        return os.readlink(path)\n\n\n_normal_accessor = _NormalAccessor()\n\n\n#\n# Globbing helpers\n#\n\ndef _make_selector(pattern_parts, flavour):\n    pat = pattern_parts[0]\n    child_parts = pattern_parts[1:]\n    if pat == '**':\n        cls = _RecursiveWildcardSelector\n    elif '**' in pat:\n        raise ValueError(\"Invalid pattern: '**' can only be an entire path component\")\n    elif _is_wildcard_pattern(pat):\n        cls = _WildcardSelector\n    else:\n        cls = _PreciseSelector\n    return cls(pat, child_parts, flavour)\n\nif hasattr(functools, \"lru_cache\"):\n    _make_selector = functools.lru_cache()(_make_selector)\n\n\nclass _Selector:\n    \"\"\"A selector matches a specific glob pattern part against the children\n    of a given path.\"\"\"\n\n    def __init__(self, child_parts, flavour):\n        self.child_parts = child_parts\n        if child_parts:\n            self.successor = _make_selector(child_parts, flavour)\n            self.dironly = True\n        else:\n            self.successor = _TerminatingSelector()\n            self.dironly = False\n\n    def select_from(self, parent_path):\n        \"\"\"Iterate over all child paths of `parent_path` matched by this\n        selector.  This can contain parent_path itself.\"\"\"\n        path_cls = type(parent_path)\n        is_dir = path_cls.is_dir\n        exists = path_cls.exists\n        scandir = parent_path._accessor.scandir\n        if not is_dir(parent_path):\n            return iter([])\n        return self._select_from(parent_path, is_dir, exists, scandir)\n\n\nclass _TerminatingSelector:\n\n    def _select_from(self, parent_path, is_dir, exists, scandir):\n        yield parent_path\n\n\nclass _PreciseSelector(_Selector):\n\n    def __init__(self, name, child_parts, flavour):\n        self.name = name\n        _Selector.__init__(self, child_parts, flavour)\n\n    def _select_from(self, parent_path, is_dir, exists, scandir):\n        try:\n            path = parent_path._make_child_relpath(self.name)\n            if (is_dir if self.dironly else exists)(path):\n                for p in self.successor._select_from(path, is_dir, exists, scandir):\n                    yield p\n        except PermissionError:\n            return\n\n\nclass _WildcardSelector(_Selector):\n\n    def __init__(self, pat, child_parts, flavour):\n        self.match = flavour.compile_pattern(pat)\n        _Selector.__init__(self, child_parts, flavour)\n\n    def _select_from(self, parent_path, is_dir, exists, scandir):\n        try:\n            with scandir(parent_path) as scandir_it:\n                entries = list(scandir_it)\n            for entry in entries:\n                if self.dironly:\n                    try:\n                        # \"entry.is_dir()\" can raise PermissionError\n                        # in some cases (see bpo-38894), which is not\n                        # among the errors ignored by _ignore_error()\n                        if not entry.is_dir():\n                            continue\n                    except OSError as e:\n                        if not _ignore_error(e):\n                            raise\n                        continue\n                name = entry.name\n                if self.match(name):\n                    path = parent_path._make_child_relpath(name)\n                    for p in self.successor._select_from(path, is_dir, exists, scandir):\n                        yield p\n        except PermissionError:\n            return\n\n\nclass _RecursiveWildcardSelector(_Selector):\n\n    def __init__(self, pat, child_parts, flavour):\n        _Selector.__init__(self, child_parts, flavour)\n\n    def _iterate_directories(self, parent_path, is_dir, scandir):\n        yield parent_path\n        try:\n            with scandir(parent_path) as scandir_it:\n                entries = list(scandir_it)\n            for entry in entries:\n                entry_is_dir = False\n                try:\n                    entry_is_dir = entry.is_dir()\n                except OSError as e:\n                    if not _ignore_error(e):\n                        raise\n                if entry_is_dir and not entry.is_symlink():\n                    path = parent_path._make_child_relpath(entry.name)\n                    for p in self._iterate_directories(path, is_dir, scandir):\n                        yield p\n        except PermissionError:\n            return\n\n    def _select_from(self, parent_path, is_dir, exists, scandir):\n        try:\n            yielded = set()\n            try:\n                successor_select = self.successor._select_from\n                for starting_point in self._iterate_directories(parent_path, is_dir, scandir):\n                    for p in successor_select(starting_point, is_dir, exists, scandir):\n                        if p not in yielded:\n                            yield p\n                            yielded.add(p)\n            finally:\n                yielded.clear()\n        except PermissionError:\n            return\n\n\n#\n# Public API\n#\n\nclass _PathParents(Sequence):\n    \"\"\"This object provides sequence-like access to the logical ancestors\n    of a path.  Don't try to construct it yourself.\"\"\"\n    __slots__ = ('_pathcls', '_drv', '_root', '_parts')\n\n    def __init__(self, path):\n        # We don't store the instance to avoid reference cycles\n        self._pathcls = type(path)\n        self._drv = path._drv\n        self._root = path._root\n        self._parts = path._parts\n\n    def __len__(self):\n        if self._drv or self._root:\n            return len(self._parts) - 1\n        else:\n            return len(self._parts)\n\n    def __getitem__(self, idx):\n        if idx < 0 or idx >= len(self):\n            raise IndexError(idx)\n        return self._pathcls._from_parsed_parts(self._drv, self._root,\n                                                self._parts[:-idx - 1])\n\n    def __repr__(self):\n        return \"<{}.parents>\".format(self._pathcls.__name__)\n\n\nclass PurePath(object):\n    \"\"\"Base class for manipulating paths without I/O.\n\n    PurePath represents a filesystem path and offers operations which\n    don't imply any actual filesystem I/O.  Depending on your system,\n    instantiating a PurePath will return either a PurePosixPath or a\n    PureWindowsPath object.  You can also instantiate either of these classes\n    directly, regardless of your system.\n    \"\"\"\n    __slots__ = (\n        '_drv', '_root', '_parts',\n        '_str', '_hash', '_pparts', '_cached_cparts',\n    )\n\n    def __new__(cls, *args):\n        \"\"\"Construct a PurePath from one or several strings and or existing\n        PurePath objects.  The strings and path objects are combined so as\n        to yield a canonicalized path, which is incorporated into the\n        new PurePath object.\n        \"\"\"\n        if cls is PurePath:\n            cls = PureWindowsPath if os.name == 'nt' else PurePosixPath\n        return cls._from_parts(args)\n\n    def __reduce__(self):\n        # Using the parts tuple helps share interned path parts\n        # when pickling related paths.\n        return (self.__class__, tuple(self._parts))\n\n    @classmethod\n    def _parse_args(cls, args):\n        # This is useful when you don't want to create an instance, just\n        # canonicalize some constructor arguments.\n        parts = []\n        for a in args:\n            if isinstance(a, PurePath):\n                parts += a._parts\n            else:\n                a = os.fspath(a)\n                if isinstance(a, str):\n                    # Force-cast str subclasses to str (issue #21127)\n                    parts.append(str(a))\n                else:\n                    raise TypeError(\n                        \"argument should be a str object or an os.PathLike \"\n                        \"object returning str, not %r\"\n                        % type(a))\n        return cls._flavour.parse_parts(parts)\n\n    @classmethod\n    def _from_parts(cls, args, init=True):\n        # We need to call _parse_args on the instance, so as to get the\n        # right flavour.\n        self = object.__new__(cls)\n        drv, root, parts = self._parse_args(args)\n        self._drv = drv\n        self._root = root\n        self._parts = parts\n        if init:\n            self._init()\n        return self\n\n    @classmethod\n    def _from_parsed_parts(cls, drv, root, parts, init=True):\n        self = object.__new__(cls)\n        self._drv = drv\n        self._root = root\n        self._parts = parts\n        if init:\n            self._init()\n        return self\n\n    @classmethod\n    def _format_parsed_parts(cls, drv, root, parts):\n        if drv or root:\n            return drv + root + cls._flavour.join(parts[1:])\n        else:\n            return cls._flavour.join(parts)\n\n    def _init(self):\n        # Overridden in concrete Path\n        pass\n\n    def _make_child(self, args):\n        drv, root, parts = self._parse_args(args)\n        drv, root, parts = self._flavour.join_parsed_parts(\n            self._drv, self._root, self._parts, drv, root, parts)\n        return self._from_parsed_parts(drv, root, parts)\n\n    def __str__(self):\n        \"\"\"Return the string representation of the path, suitable for\n        passing to system calls.\"\"\"\n        try:\n            return self._str\n        except AttributeError:\n            self._str = self._format_parsed_parts(self._drv, self._root,\n                                                  self._parts) or '.'\n            return self._str\n\n    def __fspath__(self):\n        return str(self)\n\n    def as_posix(self):\n        \"\"\"Return the string representation of the path with forward (/)\n        slashes.\"\"\"\n        f = self._flavour\n        return str(self).replace(f.sep, '/')\n\n    def __bytes__(self):\n        \"\"\"Return the bytes representation of the path.  This is only\n        recommended to use under Unix.\"\"\"\n        return os.fsencode(self)\n\n    def __repr__(self):\n        return \"{}({!r})\".format(self.__class__.__name__, self.as_posix())\n\n    def as_uri(self):\n        \"\"\"Return the path as a 'file' URI.\"\"\"\n        if not self.is_absolute():\n            raise ValueError(\"relative path can't be expressed as a file URI\")\n        return self._flavour.make_uri(self)\n\n    @property\n    def _cparts(self):\n        # Cached casefolded parts, for hashing and comparison\n        try:\n            return self._cached_cparts\n        except AttributeError:\n            self._cached_cparts = self._flavour.casefold_parts(self._parts)\n            return self._cached_cparts\n\n    def __eq__(self, other):\n        if not isinstance(other, PurePath):\n            return NotImplemented\n        return self._cparts == other._cparts and self._flavour is other._flavour\n\n    def __hash__(self):\n        try:\n            return self._hash\n        except AttributeError:\n            self._hash = hash(tuple(self._cparts))\n            return self._hash\n\n    def __lt__(self, other):\n        if not isinstance(other, PurePath) or self._flavour is not other._flavour:\n            return NotImplemented\n        return self._cparts < other._cparts\n\n    def __le__(self, other):\n        if not isinstance(other, PurePath) or self._flavour is not other._flavour:\n            return NotImplemented\n        return self._cparts <= other._cparts\n\n    def __gt__(self, other):\n        if not isinstance(other, PurePath) or self._flavour is not other._flavour:\n            return NotImplemented\n        return self._cparts > other._cparts\n\n    def __ge__(self, other):\n        if not isinstance(other, PurePath) or self._flavour is not other._flavour:\n            return NotImplemented\n        return self._cparts >= other._cparts\n\n    drive = property(attrgetter('_drv'),\n                     doc=\"\"\"The drive prefix (letter or UNC path), if any.\"\"\")\n\n    root = property(attrgetter('_root'),\n                    doc=\"\"\"The root of the path, if any.\"\"\")\n\n    @property\n    def anchor(self):\n        \"\"\"The concatenation of the drive and root, or ''.\"\"\"\n        anchor = self._drv + self._root\n        return anchor\n\n    @property\n    def name(self):\n        \"\"\"The final path component, if any.\"\"\"\n        parts = self._parts\n        if len(parts) == (1 if (self._drv or self._root) else 0):\n            return ''\n        return parts[-1]\n\n    @property\n    def suffix(self):\n        \"\"\"\n        The final component's last suffix, if any.\n\n        This includes the leading period. For example: '.txt'\n        \"\"\"\n        name = self.name\n        i = name.rfind('.')\n        if 0 < i < len(name) - 1:\n            return name[i:]\n        else:\n            return ''\n\n    @property\n    def suffixes(self):\n        \"\"\"\n        A list of the final component's suffixes, if any.\n\n        These include the leading periods. For example: ['.tar', '.gz']\n        \"\"\"\n        name = self.name\n        if name.endswith('.'):\n            return []\n        name = name.lstrip('.')\n        return ['.' + suffix for suffix in name.split('.')[1:]]\n\n    @property\n    def stem(self):\n        \"\"\"The final path component, minus its last suffix.\"\"\"\n        name = self.name\n        i = name.rfind('.')\n        if 0 < i < len(name) - 1:\n            return name[:i]\n        else:\n            return name\n\n    def with_name(self, name):\n        \"\"\"Return a new path with the file name changed.\"\"\"\n        if not self.name:\n            raise ValueError(\"%r has an empty name\" % (self,))\n        drv, root, parts = self._flavour.parse_parts((name,))\n        if (not name or name[-1] in [self._flavour.sep, self._flavour.altsep]\n            or drv or root or len(parts) != 1):\n            raise ValueError(\"Invalid name %r\" % (name))\n        return self._from_parsed_parts(self._drv, self._root,\n                                       self._parts[:-1] + [name])\n\n    def with_suffix(self, suffix):\n        \"\"\"Return a new path with the file suffix changed.  If the path\n        has no suffix, add given suffix.  If the given suffix is an empty\n        string, remove the suffix from the path.\n        \"\"\"\n        f = self._flavour\n        if f.sep in suffix or f.altsep and f.altsep in suffix:\n            raise ValueError(\"Invalid suffix %r\" % (suffix,))\n        if suffix and not suffix.startswith('.') or suffix == '.':\n            raise ValueError(\"Invalid suffix %r\" % (suffix))\n        name = self.name\n        if not name:\n            raise ValueError(\"%r has an empty name\" % (self,))\n        old_suffix = self.suffix\n        if not old_suffix:\n            name = name + suffix\n        else:\n            name = name[:-len(old_suffix)] + suffix\n        return self._from_parsed_parts(self._drv, self._root,\n                                       self._parts[:-1] + [name])\n\n    def relative_to(self, *other):\n        \"\"\"Return the relative path to another path identified by the passed\n        arguments.  If the operation is not possible (because this is not\n        a subpath of the other path), raise ValueError.\n        \"\"\"\n        # For the purpose of this method, drive and root are considered\n        # separate parts, i.e.:\n        #   Path('c:/').relative_to('c:')  gives Path('/')\n        #   Path('c:/').relative_to('/')   raise ValueError\n        if not other:\n            raise TypeError(\"need at least one argument\")\n        parts = self._parts\n        drv = self._drv\n        root = self._root\n        if root:\n            abs_parts = [drv, root] + parts[1:]\n        else:\n            abs_parts = parts\n        to_drv, to_root, to_parts = self._parse_args(other)\n        if to_root:\n            to_abs_parts = [to_drv, to_root] + to_parts[1:]\n        else:\n            to_abs_parts = to_parts\n        n = len(to_abs_parts)\n        cf = self._flavour.casefold_parts\n        if (root or drv) if n == 0 else cf(abs_parts[:n]) != cf(to_abs_parts):\n            formatted = self._format_parsed_parts(to_drv, to_root, to_parts)\n            raise ValueError(\"{!r} does not start with {!r}\"\n                             .format(str(self), str(formatted)))\n        return self._from_parsed_parts('', root if n == 1 else '',\n                                       abs_parts[n:])\n\n    @property\n    def parts(self):\n        \"\"\"An object providing sequence-like access to the\n        components in the filesystem path.\"\"\"\n        # We cache the tuple to avoid building a new one each time .parts\n        # is accessed.  XXX is this necessary?\n        try:\n            return self._pparts\n        except AttributeError:\n            self._pparts = tuple(self._parts)\n            return self._pparts\n\n    def joinpath(self, *args):\n        \"\"\"Combine this path with one or several arguments, and return a\n        new path representing either a subpath (if all arguments are relative\n        paths) or a totally different path (if one of the arguments is\n        anchored).\n        \"\"\"\n        return self._make_child(args)\n\n    def __truediv__(self, key):\n        try:\n            return self._make_child((key,))\n        except TypeError:\n            return NotImplemented\n\n    def __rtruediv__(self, key):\n        try:\n            return self._from_parts([key] + self._parts)\n        except TypeError:\n            return NotImplemented\n\n    @property\n    def parent(self):\n        \"\"\"The logical parent of the path.\"\"\"\n        drv = self._drv\n        root = self._root\n        parts = self._parts\n        if len(parts) == 1 and (drv or root):\n            return self\n        return self._from_parsed_parts(drv, root, parts[:-1])\n\n    @property\n    def parents(self):\n        \"\"\"A sequence of this path's logical parents.\"\"\"\n        return _PathParents(self)\n\n    def is_absolute(self):\n        \"\"\"True if the path is absolute (has both a root and, if applicable,\n        a drive).\"\"\"\n        if not self._root:\n            return False\n        return not self._flavour.has_drv or bool(self._drv)\n\n    def is_reserved(self):\n        \"\"\"Return True if the path contains one of the special names reserved\n        by the system, if any.\"\"\"\n        return self._flavour.is_reserved(self._parts)\n\n    def match(self, path_pattern):\n        \"\"\"\n        Return True if this path matches the given pattern.\n        \"\"\"\n        cf = self._flavour.casefold\n        path_pattern = cf(path_pattern)\n        drv, root, pat_parts = self._flavour.parse_parts((path_pattern,))\n        if not pat_parts:\n            raise ValueError(\"empty pattern\")\n        if drv and drv != cf(self._drv):\n            return False\n        if root and root != cf(self._root):\n            return False\n        parts = self._cparts\n        if drv or root:\n            if len(pat_parts) != len(parts):\n                return False\n            pat_parts = pat_parts[1:]\n        elif len(pat_parts) > len(parts):\n            return False\n        for part, pat in zip(reversed(parts), reversed(pat_parts)):\n            if not fnmatch.fnmatchcase(part, pat):\n                return False\n        return True\n\n# Can't subclass os.PathLike from PurePath and keep the constructor\n# optimizations in PurePath._parse_args().\nos.PathLike.register(PurePath)\n\n\nclass PurePosixPath(PurePath):\n    \"\"\"PurePath subclass for non-Windows systems.\n\n    On a POSIX system, instantiating a PurePath should return this object.\n    However, you can also instantiate it directly on any system.\n    \"\"\"\n    _flavour = _posix_flavour\n    __slots__ = ()\n\n\nclass PureWindowsPath(PurePath):\n    \"\"\"PurePath subclass for Windows systems.\n\n    On a Windows system, instantiating a PurePath should return this object.\n    However, you can also instantiate it directly on any system.\n    \"\"\"\n    _flavour = _windows_flavour\n    __slots__ = ()\n\n\n# Filesystem-accessing classes\n\n\nclass Path(PurePath):\n    \"\"\"PurePath subclass that can make system calls.\n\n    Path represents a filesystem path but unlike PurePath, also offers\n    methods to do system calls on path objects. Depending on your system,\n    instantiating a Path will return either a PosixPath or a WindowsPath\n    object. You can also instantiate a PosixPath or WindowsPath directly,\n    but cannot instantiate a WindowsPath on a POSIX system or vice versa.\n    \"\"\"\n    __slots__ = (\n        '_accessor',\n        '_closed',\n    )\n\n    def __new__(cls, *args, **kwargs):\n        if cls is Path:\n            cls = WindowsPath if os.name == 'nt' else PosixPath\n        self = cls._from_parts(args, init=False)\n        if not self._flavour.is_supported:\n            raise NotImplementedError(\"cannot instantiate %r on your system\"\n                                      % (cls.__name__,))\n        self._init()\n        return self\n\n    def _init(self,\n              # Private non-constructor arguments\n              template=None,\n              ):\n        self._closed = False\n        if template is not None:\n            self._accessor = template._accessor\n        else:\n            self._accessor = _normal_accessor\n\n    def _make_child_relpath(self, part):\n        # This is an optimization used for dir walking.  `part` must be\n        # a single part relative to this path.\n        parts = self._parts + [part]\n        return self._from_parsed_parts(self._drv, self._root, parts)\n\n    def __enter__(self):\n        if self._closed:\n            self._raise_closed()\n        return self\n\n    def __exit__(self, t, v, tb):\n        self._closed = True\n\n    def _raise_closed(self):\n        raise ValueError(\"I/O operation on closed path\")\n\n    def _opener(self, name, flags, mode=0o666):\n        # A stub for the opener argument to built-in open()\n        return self._accessor.open(self, flags, mode)\n\n    def _raw_open(self, flags, mode=0o777):\n        \"\"\"\n        Open the file pointed by this path and return a file descriptor,\n        as os.open() does.\n        \"\"\"\n        if self._closed:\n            self._raise_closed()\n        return self._accessor.open(self, flags, mode)\n\n    # Public API\n\n    @classmethod\n    def cwd(cls):\n        \"\"\"Return a new path pointing to the current working directory\n        (as returned by os.getcwd()).\n        \"\"\"\n        return cls(os.getcwd())\n\n    @classmethod\n    def home(cls):\n        \"\"\"Return a new path pointing to the user's home directory (as\n        returned by os.path.expanduser('~')).\n        \"\"\"\n        return cls(cls()._flavour.gethomedir(None))\n\n    def samefile(self, other_path):\n        \"\"\"Return whether other_path is the same or not as this file\n        (as returned by os.path.samefile()).\n        \"\"\"\n        st = self.stat()\n        try:\n            other_st = other_path.stat()\n        except AttributeError:\n            other_st = os.stat(other_path)\n        return os.path.samestat(st, other_st)\n\n    def iterdir(self):\n        \"\"\"Iterate over the files in this directory.  Does not yield any\n        result for the special paths '.' and '..'.\n        \"\"\"\n        if self._closed:\n            self._raise_closed()\n        for name in self._accessor.listdir(self):\n            if name in {'.', '..'}:\n                # Yielding a path object for these makes little sense\n                continue\n            yield self._make_child_relpath(name)\n            if self._closed:\n                self._raise_closed()\n\n    def glob(self, pattern):\n        \"\"\"Iterate over this subtree and yield all existing files (of any\n        kind, including directories) matching the given relative pattern.\n        \"\"\"\n        if not pattern:\n            raise ValueError(\"Unacceptable pattern: {!r}\".format(pattern))\n        drv, root, pattern_parts = self._flavour.parse_parts((pattern,))\n        if drv or root:\n            raise NotImplementedError(\"Non-relative patterns are unsupported\")\n        selector = _make_selector(tuple(pattern_parts), self._flavour)\n        for p in selector.select_from(self):\n            yield p\n\n    def rglob(self, pattern):\n        \"\"\"Recursively yield all existing files (of any kind, including\n        directories) matching the given relative pattern, anywhere in\n        this subtree.\n        \"\"\"\n        drv, root, pattern_parts = self._flavour.parse_parts((pattern,))\n        if drv or root:\n            raise NotImplementedError(\"Non-relative patterns are unsupported\")\n        selector = _make_selector((\"**\",) + tuple(pattern_parts), self._flavour)\n        for p in selector.select_from(self):\n            yield p\n\n    def absolute(self):\n        \"\"\"Return an absolute version of this path.  This function works\n        even if the path doesn't point to anything.\n\n        No normalization is done, i.e. all '.' and '..' will be kept along.\n        Use resolve() to get the canonical path to a file.\n        \"\"\"\n        # XXX untested yet!\n        if self._closed:\n            self._raise_closed()\n        if self.is_absolute():\n            return self\n        # FIXME this must defer to the specific flavour (and, under Windows,\n        # use nt._getfullpathname())\n        obj = self._from_parts([os.getcwd()] + self._parts, init=False)\n        obj._init(template=self)\n        return obj\n\n    def resolve(self, strict=False):\n        \"\"\"\n        Make the path absolute, resolving all symlinks on the way and also\n        normalizing it (for example turning slashes into backslashes under\n        Windows).\n        \"\"\"\n        if self._closed:\n            self._raise_closed()\n        s = self._flavour.resolve(self, strict=strict)\n        if s is None:\n            # No symlink resolution => for consistency, raise an error if\n            # the path doesn't exist or is forbidden\n            self.stat()\n            s = str(self.absolute())\n        # Now we have no symlinks in the path, it's safe to normalize it.\n        normed = self._flavour.pathmod.normpath(s)\n        obj = self._from_parts((normed,), init=False)\n        obj._init(template=self)\n        return obj\n\n    def stat(self):\n        \"\"\"\n        Return the result of the stat() system call on this path, like\n        os.stat() does.\n        \"\"\"\n        return self._accessor.stat(self)\n\n    def owner(self):\n        \"\"\"\n        Return the login name of the file owner.\n        \"\"\"\n        import pwd\n        return pwd.getpwuid(self.stat().st_uid).pw_name\n\n    def group(self):\n        \"\"\"\n        Return the group name of the file gid.\n        \"\"\"\n        import grp\n        return grp.getgrgid(self.stat().st_gid).gr_name\n\n    def open(self, mode='r', buffering=-1, encoding=None,\n             errors=None, newline=None):\n        \"\"\"\n        Open the file pointed by this path and return a file object, as\n        the built-in open() function does.\n        \"\"\"\n        if self._closed:\n            self._raise_closed()\n        return io.open(self, mode, buffering, encoding, errors, newline,\n                       opener=self._opener)\n\n    def read_bytes(self):\n        \"\"\"\n        Open the file in bytes mode, read it, and close the file.\n        \"\"\"\n        with self.open(mode='rb') as f:\n            return f.read()\n\n    def read_text(self, encoding=None, errors=None):\n        \"\"\"\n        Open the file in text mode, read it, and close the file.\n        \"\"\"\n        with self.open(mode='r', encoding=encoding, errors=errors) as f:\n            return f.read()\n\n    def write_bytes(self, data):\n        \"\"\"\n        Open the file in bytes mode, write to it, and close the file.\n        \"\"\"\n        # type-check for the buffer interface before truncating the file\n        view = memoryview(data)\n        with self.open(mode='wb') as f:\n            return f.write(view)\n\n    def write_text(self, data, encoding=None, errors=None):\n        \"\"\"\n        Open the file in text mode, write to it, and close the file.\n        \"\"\"\n        if not isinstance(data, str):\n            raise TypeError('data must be str, not %s' %\n                            data.__class__.__name__)\n        with self.open(mode='w', encoding=encoding, errors=errors) as f:\n            return f.write(data)\n\n    def touch(self, mode=0o666, exist_ok=True):\n        \"\"\"\n        Create this file with the given access mode, if it doesn't exist.\n        \"\"\"\n        if self._closed:\n            self._raise_closed()\n        if exist_ok:\n            # First try to bump modification time\n            # Implementation note: GNU touch uses the UTIME_NOW option of\n            # the utimensat() / futimens() functions.\n            try:\n                self._accessor.utime(self, None)\n            except OSError:\n                # Avoid exception chaining\n                pass\n            else:\n                return\n        flags = os.O_CREAT | os.O_WRONLY\n        if not exist_ok:\n            flags |= os.O_EXCL\n        fd = self._raw_open(flags, mode)\n        os.close(fd)\n\n    def mkdir(self, mode=0o777, parents=False, exist_ok=False):\n        \"\"\"\n        Create a new directory at this given path.\n        \"\"\"\n        if self._closed:\n            self._raise_closed()\n        try:\n            self._accessor.mkdir(self, mode)\n        except FileNotFoundError:\n            if not parents or self.parent == self:\n                raise\n            self.parent.mkdir(parents=True, exist_ok=True)\n            self.mkdir(mode, parents=False, exist_ok=exist_ok)\n        except OSError:\n            # Cannot rely on checking for EEXIST, since the operating system\n            # could give priority to other errors like EACCES or EROFS\n            if not exist_ok or not self.is_dir():\n                raise\n\n    def chmod(self, mode):\n        \"\"\"\n        Change the permissions of the path, like os.chmod().\n        \"\"\"\n        if self._closed:\n            self._raise_closed()\n        self._accessor.chmod(self, mode)\n\n    def lchmod(self, mode):\n        \"\"\"\n        Like chmod(), except if the path points to a symlink, the symlink's\n        permissions are changed, rather than its target's.\n        \"\"\"\n        if self._closed:\n            self._raise_closed()\n        self._accessor.lchmod(self, mode)\n\n    def unlink(self, missing_ok=False):\n        \"\"\"\n        Remove this file or link.\n        If the path is a directory, use rmdir() instead.\n        \"\"\"\n        if self._closed:\n            self._raise_closed()\n        try:\n            self._accessor.unlink(self)\n        except FileNotFoundError:\n            if not missing_ok:\n                raise\n\n    def rmdir(self):\n        \"\"\"\n        Remove this directory.  The directory must be empty.\n        \"\"\"\n        if self._closed:\n            self._raise_closed()\n        self._accessor.rmdir(self)\n\n    def lstat(self):\n        \"\"\"\n        Like stat(), except if the path points to a symlink, the symlink's\n        status information is returned, rather than its target's.\n        \"\"\"\n        if self._closed:\n            self._raise_closed()\n        return self._accessor.lstat(self)\n\n    def link_to(self, target):\n        \"\"\"\n        Create a hard link pointing to a path named target.\n        \"\"\"\n        if self._closed:\n            self._raise_closed()\n        self._accessor.link_to(self, target)\n\n    def rename(self, target):\n        \"\"\"\n        Rename this path to the given path,\n        and return a new Path instance pointing to the given path.\n        \"\"\"\n        if self._closed:\n            self._raise_closed()\n        self._accessor.rename(self, target)\n        return self.__class__(target)\n\n    def replace(self, target):\n        \"\"\"\n        Rename this path to the given path, clobbering the existing\n        destination if it exists, and return a new Path instance\n        pointing to the given path.\n        \"\"\"\n        if self._closed:\n            self._raise_closed()\n        self._accessor.replace(self, target)\n        return self.__class__(target)\n\n    def symlink_to(self, target, target_is_directory=False):\n        \"\"\"\n        Make this path a symlink pointing to the given path.\n        Note the order of arguments (self, target) is the reverse of os.symlink's.\n        \"\"\"\n        if self._closed:\n            self._raise_closed()\n        self._accessor.symlink(target, self, target_is_directory)\n\n    # Convenience functions for querying the stat results\n\n    def exists(self):\n        \"\"\"\n        Whether this path exists.\n        \"\"\"\n        try:\n            self.stat()\n        except OSError as e:\n            if not _ignore_error(e):\n                raise\n            return False\n        except ValueError:\n            # Non-encodable path\n            return False\n        return True\n\n    def is_dir(self):\n        \"\"\"\n        Whether this path is a directory.\n        \"\"\"\n        try:\n            return S_ISDIR(self.stat().st_mode)\n        except OSError as e:\n            if not _ignore_error(e):\n                raise\n            # Path doesn't exist or is a broken symlink\n            # (see https://bitbucket.org/pitrou/pathlib/issue/12/)\n            return False\n        except ValueError:\n            # Non-encodable path\n            return False\n\n    def is_file(self):\n        \"\"\"\n        Whether this path is a regular file (also True for symlinks pointing\n        to regular files).\n        \"\"\"\n        try:\n            return S_ISREG(self.stat().st_mode)\n        except OSError as e:\n            if not _ignore_error(e):\n                raise\n            # Path doesn't exist or is a broken symlink\n            # (see https://bitbucket.org/pitrou/pathlib/issue/12/)\n            return False\n        except ValueError:\n            # Non-encodable path\n            return False\n\n    def is_mount(self):\n        \"\"\"\n        Check if this path is a POSIX mount point\n        \"\"\"\n        # Need to exist and be a dir\n        if not self.exists() or not self.is_dir():\n            return False\n\n        parent = Path(self.parent)\n        try:\n            parent_dev = parent.stat().st_dev\n        except OSError:\n            return False\n\n        dev = self.stat().st_dev\n        if dev != parent_dev:\n            return True\n        ino = self.stat().st_ino\n        parent_ino = parent.stat().st_ino\n        return ino == parent_ino\n\n    def is_symlink(self):\n        \"\"\"\n        Whether this path is a symbolic link.\n        \"\"\"\n        try:\n            return S_ISLNK(self.lstat().st_mode)\n        except OSError as e:\n            if not _ignore_error(e):\n                raise\n            # Path doesn't exist\n            return False\n        except ValueError:\n            # Non-encodable path\n            return False\n\n    def is_block_device(self):\n        \"\"\"\n        Whether this path is a block device.\n        \"\"\"\n        try:\n            return S_ISBLK(self.stat().st_mode)\n        except OSError as e:\n            if not _ignore_error(e):\n                raise\n            # Path doesn't exist or is a broken symlink\n            # (see https://bitbucket.org/pitrou/pathlib/issue/12/)\n            return False\n        except ValueError:\n            # Non-encodable path\n            return False\n\n    def is_char_device(self):\n        \"\"\"\n        Whether this path is a character device.\n        \"\"\"\n        try:\n            return S_ISCHR(self.stat().st_mode)\n        except OSError as e:\n            if not _ignore_error(e):\n                raise\n            # Path doesn't exist or is a broken symlink\n            # (see https://bitbucket.org/pitrou/pathlib/issue/12/)\n            return False\n        except ValueError:\n            # Non-encodable path\n            return False\n\n    def is_fifo(self):\n        \"\"\"\n        Whether this path is a FIFO.\n        \"\"\"\n        try:\n            return S_ISFIFO(self.stat().st_mode)\n        except OSError as e:\n            if not _ignore_error(e):\n                raise\n            # Path doesn't exist or is a broken symlink\n            # (see https://bitbucket.org/pitrou/pathlib/issue/12/)\n            return False\n        except ValueError:\n            # Non-encodable path\n            return False\n\n    def is_socket(self):\n        \"\"\"\n        Whether this path is a socket.\n        \"\"\"\n        try:\n            return S_ISSOCK(self.stat().st_mode)\n        except OSError as e:\n            if not _ignore_error(e):\n                raise\n            # Path doesn't exist or is a broken symlink\n            # (see https://bitbucket.org/pitrou/pathlib/issue/12/)\n            return False\n        except ValueError:\n            # Non-encodable path\n            return False\n\n    def expanduser(self):\n        \"\"\" Return a new path with expanded ~ and ~user constructs\n        (as returned by os.path.expanduser)\n        \"\"\"\n        if (not (self._drv or self._root) and\n            self._parts and self._parts[0][:1] == '~'):\n            homedir = self._flavour.gethomedir(self._parts[0][1:])\n            return self._from_parts([homedir] + self._parts[1:])\n\n        return self\n\n\nclass PosixPath(Path, PurePosixPath):\n    \"\"\"Path subclass for non-Windows systems.\n\n    On a POSIX system, instantiating a Path should return this object.\n    \"\"\"\n    __slots__ = ()\n\nclass WindowsPath(Path, PureWindowsPath):\n    \"\"\"Path subclass for Windows systems.\n\n    On a Windows system, instantiating a Path should return this object.\n    \"\"\"\n    __slots__ = ()\n\n    def owner(self):\n        raise NotImplementedError(\"Path.owner() is unsupported on this system\")\n\n    def group(self):\n        raise NotImplementedError(\"Path.group() is unsupported on this system\")\n\n    def is_mount(self):\n        raise NotImplementedError(\"Path.is_mount() is unsupported on this system\")\n"
  },
  {
    "path": "rd/usr/lib/python3.8/pipes.py",
    "content": "\"\"\"Conversion pipeline templates.\n\nThe problem:\n------------\n\nSuppose you have some data that you want to convert to another format,\nsuch as from GIF image format to PPM image format.  Maybe the\nconversion involves several steps (e.g. piping it through compress or\nuuencode).  Some of the conversion steps may require that their input\nis a disk file, others may be able to read standard input; similar for\ntheir output.  The input to the entire conversion may also be read\nfrom a disk file or from an open file, and similar for its output.\n\nThe module lets you construct a pipeline template by sticking one or\nmore conversion steps together.  It will take care of creating and\nremoving temporary files if they are necessary to hold intermediate\ndata.  You can then use the template to do conversions from many\ndifferent sources to many different destinations.  The temporary\nfile names used are different each time the template is used.\n\nThe templates are objects so you can create templates for many\ndifferent conversion steps and store them in a dictionary, for\ninstance.\n\n\nDirections:\n-----------\n\nTo create a template:\n    t = Template()\n\nTo add a conversion step to a template:\n   t.append(command, kind)\nwhere kind is a string of two characters: the first is '-' if the\ncommand reads its standard input or 'f' if it requires a file; the\nsecond likewise for the output. The command must be valid /bin/sh\nsyntax.  If input or output files are required, they are passed as\n$IN and $OUT; otherwise, it must be  possible to use the command in\na pipeline.\n\nTo add a conversion step at the beginning:\n   t.prepend(command, kind)\n\nTo convert a file to another file using a template:\n  sts = t.copy(infile, outfile)\nIf infile or outfile are the empty string, standard input is read or\nstandard output is written, respectively.  The return value is the\nexit status of the conversion pipeline.\n\nTo open a file for reading or writing through a conversion pipeline:\n   fp = t.open(file, mode)\nwhere mode is 'r' to read the file, or 'w' to write it -- just like\nfor the built-in function open() or for os.popen().\n\nTo create a new template object initialized to a given one:\n   t2 = t.clone()\n\"\"\"                                     # '\n\n\nimport re\nimport os\nimport tempfile\n# we import the quote function rather than the module for backward compat\n# (quote used to be an undocumented but used function in pipes)\nfrom shlex import quote\n\n__all__ = [\"Template\"]\n\n# Conversion step kinds\n\nFILEIN_FILEOUT = 'ff'                   # Must read & write real files\nSTDIN_FILEOUT  = '-f'                   # Must write a real file\nFILEIN_STDOUT  = 'f-'                   # Must read a real file\nSTDIN_STDOUT   = '--'                   # Normal pipeline element\nSOURCE         = '.-'                   # Must be first, writes stdout\nSINK           = '-.'                   # Must be last, reads stdin\n\nstepkinds = [FILEIN_FILEOUT, STDIN_FILEOUT, FILEIN_STDOUT, STDIN_STDOUT, \\\n             SOURCE, SINK]\n\n\nclass Template:\n    \"\"\"Class representing a pipeline template.\"\"\"\n\n    def __init__(self):\n        \"\"\"Template() returns a fresh pipeline template.\"\"\"\n        self.debugging = 0\n        self.reset()\n\n    def __repr__(self):\n        \"\"\"t.__repr__() implements repr(t).\"\"\"\n        return '<Template instance, steps=%r>' % (self.steps,)\n\n    def reset(self):\n        \"\"\"t.reset() restores a pipeline template to its initial state.\"\"\"\n        self.steps = []\n\n    def clone(self):\n        \"\"\"t.clone() returns a new pipeline template with identical\n        initial state as the current one.\"\"\"\n        t = Template()\n        t.steps = self.steps[:]\n        t.debugging = self.debugging\n        return t\n\n    def debug(self, flag):\n        \"\"\"t.debug(flag) turns debugging on or off.\"\"\"\n        self.debugging = flag\n\n    def append(self, cmd, kind):\n        \"\"\"t.append(cmd, kind) adds a new step at the end.\"\"\"\n        if type(cmd) is not type(''):\n            raise TypeError('Template.append: cmd must be a string')\n        if kind not in stepkinds:\n            raise ValueError('Template.append: bad kind %r' % (kind,))\n        if kind == SOURCE:\n            raise ValueError('Template.append: SOURCE can only be prepended')\n        if self.steps and self.steps[-1][1] == SINK:\n            raise ValueError('Template.append: already ends with SINK')\n        if kind[0] == 'f' and not re.search(r'\\$IN\\b', cmd):\n            raise ValueError('Template.append: missing $IN in cmd')\n        if kind[1] == 'f' and not re.search(r'\\$OUT\\b', cmd):\n            raise ValueError('Template.append: missing $OUT in cmd')\n        self.steps.append((cmd, kind))\n\n    def prepend(self, cmd, kind):\n        \"\"\"t.prepend(cmd, kind) adds a new step at the front.\"\"\"\n        if type(cmd) is not type(''):\n            raise TypeError('Template.prepend: cmd must be a string')\n        if kind not in stepkinds:\n            raise ValueError('Template.prepend: bad kind %r' % (kind,))\n        if kind == SINK:\n            raise ValueError('Template.prepend: SINK can only be appended')\n        if self.steps and self.steps[0][1] == SOURCE:\n            raise ValueError('Template.prepend: already begins with SOURCE')\n        if kind[0] == 'f' and not re.search(r'\\$IN\\b', cmd):\n            raise ValueError('Template.prepend: missing $IN in cmd')\n        if kind[1] == 'f' and not re.search(r'\\$OUT\\b', cmd):\n            raise ValueError('Template.prepend: missing $OUT in cmd')\n        self.steps.insert(0, (cmd, kind))\n\n    def open(self, file, rw):\n        \"\"\"t.open(file, rw) returns a pipe or file object open for\n        reading or writing; the file is the other end of the pipeline.\"\"\"\n        if rw == 'r':\n            return self.open_r(file)\n        if rw == 'w':\n            return self.open_w(file)\n        raise ValueError('Template.open: rw must be \\'r\\' or \\'w\\', not %r'\n                         % (rw,))\n\n    def open_r(self, file):\n        \"\"\"t.open_r(file) and t.open_w(file) implement\n        t.open(file, 'r') and t.open(file, 'w') respectively.\"\"\"\n        if not self.steps:\n            return open(file, 'r')\n        if self.steps[-1][1] == SINK:\n            raise ValueError('Template.open_r: pipeline ends width SINK')\n        cmd = self.makepipeline(file, '')\n        return os.popen(cmd, 'r')\n\n    def open_w(self, file):\n        if not self.steps:\n            return open(file, 'w')\n        if self.steps[0][1] == SOURCE:\n            raise ValueError('Template.open_w: pipeline begins with SOURCE')\n        cmd = self.makepipeline('', file)\n        return os.popen(cmd, 'w')\n\n    def copy(self, infile, outfile):\n        return os.system(self.makepipeline(infile, outfile))\n\n    def makepipeline(self, infile, outfile):\n        cmd = makepipeline(infile, self.steps, outfile)\n        if self.debugging:\n            print(cmd)\n            cmd = 'set -x; ' + cmd\n        return cmd\n\n\ndef makepipeline(infile, steps, outfile):\n    # Build a list with for each command:\n    # [input filename or '', command string, kind, output filename or '']\n\n    list = []\n    for cmd, kind in steps:\n        list.append(['', cmd, kind, ''])\n    #\n    # Make sure there is at least one step\n    #\n    if not list:\n        list.append(['', 'cat', '--', ''])\n    #\n    # Take care of the input and output ends\n    #\n    [cmd, kind] = list[0][1:3]\n    if kind[0] == 'f' and not infile:\n        list.insert(0, ['', 'cat', '--', ''])\n    list[0][0] = infile\n    #\n    [cmd, kind] = list[-1][1:3]\n    if kind[1] == 'f' and not outfile:\n        list.append(['', 'cat', '--', ''])\n    list[-1][-1] = outfile\n    #\n    # Invent temporary files to connect stages that need files\n    #\n    garbage = []\n    for i in range(1, len(list)):\n        lkind = list[i-1][2]\n        rkind = list[i][2]\n        if lkind[1] == 'f' or rkind[0] == 'f':\n            (fd, temp) = tempfile.mkstemp()\n            os.close(fd)\n            garbage.append(temp)\n            list[i-1][-1] = list[i][0] = temp\n    #\n    for item in list:\n        [inf, cmd, kind, outf] = item\n        if kind[1] == 'f':\n            cmd = 'OUT=' + quote(outf) + '; ' + cmd\n        if kind[0] == 'f':\n            cmd = 'IN=' + quote(inf) + '; ' + cmd\n        if kind[0] == '-' and inf:\n            cmd = cmd + ' <' + quote(inf)\n        if kind[1] == '-' and outf:\n            cmd = cmd + ' >' + quote(outf)\n        item[1] = cmd\n    #\n    cmdlist = list[0][1]\n    for item in list[1:]:\n        [cmd, kind] = item[1:3]\n        if item[0] == '':\n            if 'f' in kind:\n                cmd = '{ ' + cmd + '; }'\n            cmdlist = cmdlist + ' |\\n' + cmd\n        else:\n            cmdlist = cmdlist + '\\n' + cmd\n    #\n    if garbage:\n        rmcmd = 'rm -f'\n        for file in garbage:\n            rmcmd = rmcmd + ' ' + quote(file)\n        trapcmd = 'trap ' + quote(rmcmd + '; exit') + ' 1 2 3 13 14 15'\n        cmdlist = trapcmd + '\\n' + cmdlist + '\\n' + rmcmd\n    #\n    return cmdlist\n"
  },
  {
    "path": "rd/usr/lib/python3.8/pkgutil.py",
    "content": "\"\"\"Utilities to support packages.\"\"\"\n\nfrom collections import namedtuple\nfrom functools import singledispatch as simplegeneric\nimport importlib\nimport importlib.util\nimport importlib.machinery\nimport os\nimport os.path\nimport sys\nfrom types import ModuleType\nimport warnings\n\n__all__ = [\n    'get_importer', 'iter_importers', 'get_loader', 'find_loader',\n    'walk_packages', 'iter_modules', 'get_data',\n    'ImpImporter', 'ImpLoader', 'read_code', 'extend_path',\n    'ModuleInfo',\n]\n\n\nModuleInfo = namedtuple('ModuleInfo', 'module_finder name ispkg')\nModuleInfo.__doc__ = 'A namedtuple with minimal info about a module.'\n\n\ndef _get_spec(finder, name):\n    \"\"\"Return the finder-specific module spec.\"\"\"\n    # Works with legacy finders.\n    try:\n        find_spec = finder.find_spec\n    except AttributeError:\n        loader = finder.find_module(name)\n        if loader is None:\n            return None\n        return importlib.util.spec_from_loader(name, loader)\n    else:\n        return find_spec(name)\n\n\ndef read_code(stream):\n    # This helper is needed in order for the PEP 302 emulation to\n    # correctly handle compiled files\n    import marshal\n\n    magic = stream.read(4)\n    if magic != importlib.util.MAGIC_NUMBER:\n        return None\n\n    stream.read(12) # Skip rest of the header\n    return marshal.load(stream)\n\n\ndef walk_packages(path=None, prefix='', onerror=None):\n    \"\"\"Yields ModuleInfo for all modules recursively\n    on path, or, if path is None, all accessible modules.\n\n    'path' should be either None or a list of paths to look for\n    modules in.\n\n    'prefix' is a string to output on the front of every module name\n    on output.\n\n    Note that this function must import all *packages* (NOT all\n    modules!) on the given path, in order to access the __path__\n    attribute to find submodules.\n\n    'onerror' is a function which gets called with one argument (the\n    name of the package which was being imported) if any exception\n    occurs while trying to import a package.  If no onerror function is\n    supplied, ImportErrors are caught and ignored, while all other\n    exceptions are propagated, terminating the search.\n\n    Examples:\n\n    # list all modules python can access\n    walk_packages()\n\n    # list all submodules of ctypes\n    walk_packages(ctypes.__path__, ctypes.__name__+'.')\n    \"\"\"\n\n    def seen(p, m={}):\n        if p in m:\n            return True\n        m[p] = True\n\n    for info in iter_modules(path, prefix):\n        yield info\n\n        if info.ispkg:\n            try:\n                __import__(info.name)\n            except ImportError:\n                if onerror is not None:\n                    onerror(info.name)\n            except Exception:\n                if onerror is not None:\n                    onerror(info.name)\n                else:\n                    raise\n            else:\n                path = getattr(sys.modules[info.name], '__path__', None) or []\n\n                # don't traverse path items we've seen before\n                path = [p for p in path if not seen(p)]\n\n                yield from walk_packages(path, info.name+'.', onerror)\n\n\ndef iter_modules(path=None, prefix=''):\n    \"\"\"Yields ModuleInfo for all submodules on path,\n    or, if path is None, all top-level modules on sys.path.\n\n    'path' should be either None or a list of paths to look for\n    modules in.\n\n    'prefix' is a string to output on the front of every module name\n    on output.\n    \"\"\"\n    if path is None:\n        importers = iter_importers()\n    elif isinstance(path, str):\n        raise ValueError(\"path must be None or list of paths to look for \"\n                        \"modules in\")\n    else:\n        importers = map(get_importer, path)\n\n    yielded = {}\n    for i in importers:\n        for name, ispkg in iter_importer_modules(i, prefix):\n            if name not in yielded:\n                yielded[name] = 1\n                yield ModuleInfo(i, name, ispkg)\n\n\n@simplegeneric\ndef iter_importer_modules(importer, prefix=''):\n    if not hasattr(importer, 'iter_modules'):\n        return []\n    return importer.iter_modules(prefix)\n\n\n# Implement a file walker for the normal importlib path hook\ndef _iter_file_finder_modules(importer, prefix=''):\n    if importer.path is None or not os.path.isdir(importer.path):\n        return\n\n    yielded = {}\n    import inspect\n    try:\n        filenames = os.listdir(importer.path)\n    except OSError:\n        # ignore unreadable directories like import does\n        filenames = []\n    filenames.sort()  # handle packages before same-named modules\n\n    for fn in filenames:\n        modname = inspect.getmodulename(fn)\n        if modname=='__init__' or modname in yielded:\n            continue\n\n        path = os.path.join(importer.path, fn)\n        ispkg = False\n\n        if not modname and os.path.isdir(path) and '.' not in fn:\n            modname = fn\n            try:\n                dircontents = os.listdir(path)\n            except OSError:\n                # ignore unreadable directories like import does\n                dircontents = []\n            for fn in dircontents:\n                subname = inspect.getmodulename(fn)\n                if subname=='__init__':\n                    ispkg = True\n                    break\n            else:\n                continue    # not a package\n\n        if modname and '.' not in modname:\n            yielded[modname] = 1\n            yield prefix + modname, ispkg\n\niter_importer_modules.register(\n    importlib.machinery.FileFinder, _iter_file_finder_modules)\n\n\ndef _import_imp():\n    global imp\n    with warnings.catch_warnings():\n        warnings.simplefilter('ignore', DeprecationWarning)\n        imp = importlib.import_module('imp')\n\nclass ImpImporter:\n    \"\"\"PEP 302 Finder that wraps Python's \"classic\" import algorithm\n\n    ImpImporter(dirname) produces a PEP 302 finder that searches that\n    directory.  ImpImporter(None) produces a PEP 302 finder that searches\n    the current sys.path, plus any modules that are frozen or built-in.\n\n    Note that ImpImporter does not currently support being used by placement\n    on sys.meta_path.\n    \"\"\"\n\n    def __init__(self, path=None):\n        global imp\n        warnings.warn(\"This emulation is deprecated, use 'importlib' instead\",\n             DeprecationWarning)\n        _import_imp()\n        self.path = path\n\n    def find_module(self, fullname, path=None):\n        # Note: we ignore 'path' argument since it is only used via meta_path\n        subname = fullname.split(\".\")[-1]\n        if subname != fullname and self.path is None:\n            return None\n        if self.path is None:\n            path = None\n        else:\n            path = [os.path.realpath(self.path)]\n        try:\n            file, filename, etc = imp.find_module(subname, path)\n        except ImportError:\n            return None\n        return ImpLoader(fullname, file, filename, etc)\n\n    def iter_modules(self, prefix=''):\n        if self.path is None or not os.path.isdir(self.path):\n            return\n\n        yielded = {}\n        import inspect\n        try:\n            filenames = os.listdir(self.path)\n        except OSError:\n            # ignore unreadable directories like import does\n            filenames = []\n        filenames.sort()  # handle packages before same-named modules\n\n        for fn in filenames:\n            modname = inspect.getmodulename(fn)\n            if modname=='__init__' or modname in yielded:\n                continue\n\n            path = os.path.join(self.path, fn)\n            ispkg = False\n\n            if not modname and os.path.isdir(path) and '.' not in fn:\n                modname = fn\n                try:\n                    dircontents = os.listdir(path)\n                except OSError:\n                    # ignore unreadable directories like import does\n                    dircontents = []\n                for fn in dircontents:\n                    subname = inspect.getmodulename(fn)\n                    if subname=='__init__':\n                        ispkg = True\n                        break\n                else:\n                    continue    # not a package\n\n            if modname and '.' not in modname:\n                yielded[modname] = 1\n                yield prefix + modname, ispkg\n\n\nclass ImpLoader:\n    \"\"\"PEP 302 Loader that wraps Python's \"classic\" import algorithm\n    \"\"\"\n    code = source = None\n\n    def __init__(self, fullname, file, filename, etc):\n        warnings.warn(\"This emulation is deprecated, use 'importlib' instead\",\n                      DeprecationWarning)\n        _import_imp()\n        self.file = file\n        self.filename = filename\n        self.fullname = fullname\n        self.etc = etc\n\n    def load_module(self, fullname):\n        self._reopen()\n        try:\n            mod = imp.load_module(fullname, self.file, self.filename, self.etc)\n        finally:\n            if self.file:\n                self.file.close()\n        # Note: we don't set __loader__ because we want the module to look\n        # normal; i.e. this is just a wrapper for standard import machinery\n        return mod\n\n    def get_data(self, pathname):\n        with open(pathname, \"rb\") as file:\n            return file.read()\n\n    def _reopen(self):\n        if self.file and self.file.closed:\n            mod_type = self.etc[2]\n            if mod_type==imp.PY_SOURCE:\n                self.file = open(self.filename, 'r')\n            elif mod_type in (imp.PY_COMPILED, imp.C_EXTENSION):\n                self.file = open(self.filename, 'rb')\n\n    def _fix_name(self, fullname):\n        if fullname is None:\n            fullname = self.fullname\n        elif fullname != self.fullname:\n            raise ImportError(\"Loader for module %s cannot handle \"\n                              \"module %s\" % (self.fullname, fullname))\n        return fullname\n\n    def is_package(self, fullname):\n        fullname = self._fix_name(fullname)\n        return self.etc[2]==imp.PKG_DIRECTORY\n\n    def get_code(self, fullname=None):\n        fullname = self._fix_name(fullname)\n        if self.code is None:\n            mod_type = self.etc[2]\n            if mod_type==imp.PY_SOURCE:\n                source = self.get_source(fullname)\n                self.code = compile(source, self.filename, 'exec')\n            elif mod_type==imp.PY_COMPILED:\n                self._reopen()\n                try:\n                    self.code = read_code(self.file)\n                finally:\n                    self.file.close()\n            elif mod_type==imp.PKG_DIRECTORY:\n                self.code = self._get_delegate().get_code()\n        return self.code\n\n    def get_source(self, fullname=None):\n        fullname = self._fix_name(fullname)\n        if self.source is None:\n            mod_type = self.etc[2]\n            if mod_type==imp.PY_SOURCE:\n                self._reopen()\n                try:\n                    self.source = self.file.read()\n                finally:\n                    self.file.close()\n            elif mod_type==imp.PY_COMPILED:\n                if os.path.exists(self.filename[:-1]):\n                    with open(self.filename[:-1], 'r') as f:\n                        self.source = f.read()\n            elif mod_type==imp.PKG_DIRECTORY:\n                self.source = self._get_delegate().get_source()\n        return self.source\n\n    def _get_delegate(self):\n        finder = ImpImporter(self.filename)\n        spec = _get_spec(finder, '__init__')\n        return spec.loader\n\n    def get_filename(self, fullname=None):\n        fullname = self._fix_name(fullname)\n        mod_type = self.etc[2]\n        if mod_type==imp.PKG_DIRECTORY:\n            return self._get_delegate().get_filename()\n        elif mod_type in (imp.PY_SOURCE, imp.PY_COMPILED, imp.C_EXTENSION):\n            return self.filename\n        return None\n\n\ntry:\n    import zipimport\n    from zipimport import zipimporter\n\n    def iter_zipimport_modules(importer, prefix=''):\n        dirlist = sorted(zipimport._zip_directory_cache[importer.archive])\n        _prefix = importer.prefix\n        plen = len(_prefix)\n        yielded = {}\n        import inspect\n        for fn in dirlist:\n            if not fn.startswith(_prefix):\n                continue\n\n            fn = fn[plen:].split(os.sep)\n\n            if len(fn)==2 and fn[1].startswith('__init__.py'):\n                if fn[0] not in yielded:\n                    yielded[fn[0]] = 1\n                    yield prefix + fn[0], True\n\n            if len(fn)!=1:\n                continue\n\n            modname = inspect.getmodulename(fn[0])\n            if modname=='__init__':\n                continue\n\n            if modname and '.' not in modname and modname not in yielded:\n                yielded[modname] = 1\n                yield prefix + modname, False\n\n    iter_importer_modules.register(zipimporter, iter_zipimport_modules)\n\nexcept ImportError:\n    pass\n\n\ndef get_importer(path_item):\n    \"\"\"Retrieve a finder for the given path item\n\n    The returned finder is cached in sys.path_importer_cache\n    if it was newly created by a path hook.\n\n    The cache (or part of it) can be cleared manually if a\n    rescan of sys.path_hooks is necessary.\n    \"\"\"\n    try:\n        importer = sys.path_importer_cache[path_item]\n    except KeyError:\n        for path_hook in sys.path_hooks:\n            try:\n                importer = path_hook(path_item)\n                sys.path_importer_cache.setdefault(path_item, importer)\n                break\n            except ImportError:\n                pass\n        else:\n            importer = None\n    return importer\n\n\ndef iter_importers(fullname=\"\"):\n    \"\"\"Yield finders for the given module name\n\n    If fullname contains a '.', the finders will be for the package\n    containing fullname, otherwise they will be all registered top level\n    finders (i.e. those on both sys.meta_path and sys.path_hooks).\n\n    If the named module is in a package, that package is imported as a side\n    effect of invoking this function.\n\n    If no module name is specified, all top level finders are produced.\n    \"\"\"\n    if fullname.startswith('.'):\n        msg = \"Relative module name {!r} not supported\".format(fullname)\n        raise ImportError(msg)\n    if '.' in fullname:\n        # Get the containing package's __path__\n        pkg_name = fullname.rpartition(\".\")[0]\n        pkg = importlib.import_module(pkg_name)\n        path = getattr(pkg, '__path__', None)\n        if path is None:\n            return\n    else:\n        yield from sys.meta_path\n        path = sys.path\n    for item in path:\n        yield get_importer(item)\n\n\ndef get_loader(module_or_name):\n    \"\"\"Get a \"loader\" object for module_or_name\n\n    Returns None if the module cannot be found or imported.\n    If the named module is not already imported, its containing package\n    (if any) is imported, in order to establish the package __path__.\n    \"\"\"\n    if module_or_name in sys.modules:\n        module_or_name = sys.modules[module_or_name]\n        if module_or_name is None:\n            return None\n    if isinstance(module_or_name, ModuleType):\n        module = module_or_name\n        loader = getattr(module, '__loader__', None)\n        if loader is not None:\n            return loader\n        if getattr(module, '__spec__', None) is None:\n            return None\n        fullname = module.__name__\n    else:\n        fullname = module_or_name\n    return find_loader(fullname)\n\n\ndef find_loader(fullname):\n    \"\"\"Find a \"loader\" object for fullname\n\n    This is a backwards compatibility wrapper around\n    importlib.util.find_spec that converts most failures to ImportError\n    and only returns the loader rather than the full spec\n    \"\"\"\n    if fullname.startswith('.'):\n        msg = \"Relative module name {!r} not supported\".format(fullname)\n        raise ImportError(msg)\n    try:\n        spec = importlib.util.find_spec(fullname)\n    except (ImportError, AttributeError, TypeError, ValueError) as ex:\n        # This hack fixes an impedance mismatch between pkgutil and\n        # importlib, where the latter raises other errors for cases where\n        # pkgutil previously raised ImportError\n        msg = \"Error while finding loader for {!r} ({}: {})\"\n        raise ImportError(msg.format(fullname, type(ex), ex)) from ex\n    return spec.loader if spec is not None else None\n\n\ndef extend_path(path, name):\n    \"\"\"Extend a package's path.\n\n    Intended use is to place the following code in a package's __init__.py:\n\n        from pkgutil import extend_path\n        __path__ = extend_path(__path__, __name__)\n\n    This will add to the package's __path__ all subdirectories of\n    directories on sys.path named after the package.  This is useful\n    if one wants to distribute different parts of a single logical\n    package as multiple directories.\n\n    It also looks for *.pkg files beginning where * matches the name\n    argument.  This feature is similar to *.pth files (see site.py),\n    except that it doesn't special-case lines starting with 'import'.\n    A *.pkg file is trusted at face value: apart from checking for\n    duplicates, all entries found in a *.pkg file are added to the\n    path, regardless of whether they are exist the filesystem.  (This\n    is a feature.)\n\n    If the input path is not a list (as is the case for frozen\n    packages) it is returned unchanged.  The input path is not\n    modified; an extended copy is returned.  Items are only appended\n    to the copy at the end.\n\n    It is assumed that sys.path is a sequence.  Items of sys.path that\n    are not (unicode or 8-bit) strings referring to existing\n    directories are ignored.  Unicode items of sys.path that cause\n    errors when used as filenames may cause this function to raise an\n    exception (in line with os.path.isdir() behavior).\n    \"\"\"\n\n    if not isinstance(path, list):\n        # This could happen e.g. when this is called from inside a\n        # frozen package.  Return the path unchanged in that case.\n        return path\n\n    sname_pkg = name + \".pkg\"\n\n    path = path[:] # Start with a copy of the existing path\n\n    parent_package, _, final_name = name.rpartition('.')\n    if parent_package:\n        try:\n            search_path = sys.modules[parent_package].__path__\n        except (KeyError, AttributeError):\n            # We can't do anything: find_loader() returns None when\n            # passed a dotted name.\n            return path\n    else:\n        search_path = sys.path\n\n    for dir in search_path:\n        if not isinstance(dir, str):\n            continue\n\n        finder = get_importer(dir)\n        if finder is not None:\n            portions = []\n            if hasattr(finder, 'find_spec'):\n                spec = finder.find_spec(final_name)\n                if spec is not None:\n                    portions = spec.submodule_search_locations or []\n            # Is this finder PEP 420 compliant?\n            elif hasattr(finder, 'find_loader'):\n                _, portions = finder.find_loader(final_name)\n\n            for portion in portions:\n                # XXX This may still add duplicate entries to path on\n                # case-insensitive filesystems\n                if portion not in path:\n                    path.append(portion)\n\n        # XXX Is this the right thing for subpackages like zope.app?\n        # It looks for a file named \"zope.app.pkg\"\n        pkgfile = os.path.join(dir, sname_pkg)\n        if os.path.isfile(pkgfile):\n            try:\n                f = open(pkgfile)\n            except OSError as msg:\n                sys.stderr.write(\"Can't open %s: %s\\n\" %\n                                 (pkgfile, msg))\n            else:\n                with f:\n                    for line in f:\n                        line = line.rstrip('\\n')\n                        if not line or line.startswith('#'):\n                            continue\n                        path.append(line) # Don't check for existence!\n\n    return path\n\n\ndef get_data(package, resource):\n    \"\"\"Get a resource from a package.\n\n    This is a wrapper round the PEP 302 loader get_data API. The package\n    argument should be the name of a package, in standard module format\n    (foo.bar). The resource argument should be in the form of a relative\n    filename, using '/' as the path separator. The parent directory name '..'\n    is not allowed, and nor is a rooted name (starting with a '/').\n\n    The function returns a binary string, which is the contents of the\n    specified resource.\n\n    For packages located in the filesystem, which have already been imported,\n    this is the rough equivalent of\n\n        d = os.path.dirname(sys.modules[package].__file__)\n        data = open(os.path.join(d, resource), 'rb').read()\n\n    If the package cannot be located or loaded, or it uses a PEP 302 loader\n    which does not support get_data(), then None is returned.\n    \"\"\"\n\n    spec = importlib.util.find_spec(package)\n    if spec is None:\n        return None\n    loader = spec.loader\n    if loader is None or not hasattr(loader, 'get_data'):\n        return None\n    # XXX needs test\n    mod = (sys.modules.get(package) or\n           importlib._bootstrap._load(spec))\n    if mod is None or not hasattr(mod, '__file__'):\n        return None\n\n    # Modify the resource name to be compatible with the loader.get_data\n    # signature - an os.path format \"filename\" starting with the dirname of\n    # the package's __file__\n    parts = resource.split('/')\n    parts.insert(0, os.path.dirname(mod.__file__))\n    resource_name = os.path.join(*parts)\n    return loader.get_data(resource_name)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/platform.py",
    "content": "#!/usr/bin/env python3\n\n\"\"\" This module tries to retrieve as much platform-identifying data as\n    possible. It makes this information available via function APIs.\n\n    If called from the command line, it prints the platform\n    information concatenated as single string to stdout. The output\n    format is useable as part of a filename.\n\n\"\"\"\n#    This module is maintained by Marc-Andre Lemburg <mal@egenix.com>.\n#    If you find problems, please submit bug reports/patches via the\n#    Python bug tracker (http://bugs.python.org) and assign them to \"lemburg\".\n#\n#    Still needed:\n#    * support for MS-DOS (PythonDX ?)\n#    * support for Amiga and other still unsupported platforms running Python\n#    * support for additional Linux distributions\n#\n#    Many thanks to all those who helped adding platform-specific\n#    checks (in no particular order):\n#\n#      Charles G Waldman, David Arnold, Gordon McMillan, Ben Darnell,\n#      Jeff Bauer, Cliff Crawford, Ivan Van Laningham, Josef\n#      Betancourt, Randall Hopper, Karl Putland, John Farrell, Greg\n#      Andruk, Just van Rossum, Thomas Heller, Mark R. Levinson, Mark\n#      Hammond, Bill Tutt, Hans Nowak, Uwe Zessin (OpenVMS support),\n#      Colin Kong, Trent Mick, Guido van Rossum, Anthony Baxter, Steve\n#      Dower\n#\n#    History:\n#\n#    <see CVS and SVN checkin messages for history>\n#\n#    1.0.8 - changed Windows support to read version from kernel32.dll\n#    1.0.7 - added DEV_NULL\n#    1.0.6 - added linux_distribution()\n#    1.0.5 - fixed Java support to allow running the module on Jython\n#    1.0.4 - added IronPython support\n#    1.0.3 - added normalization of Windows system name\n#    1.0.2 - added more Windows support\n#    1.0.1 - reformatted to make doc.py happy\n#    1.0.0 - reformatted a bit and checked into Python CVS\n#    0.8.0 - added sys.version parser and various new access\n#            APIs (python_version(), python_compiler(), etc.)\n#    0.7.2 - fixed architecture() to use sizeof(pointer) where available\n#    0.7.1 - added support for Caldera OpenLinux\n#    0.7.0 - some fixes for WinCE; untabified the source file\n#    0.6.2 - support for OpenVMS - requires version 1.5.2-V006 or higher and\n#            vms_lib.getsyi() configured\n#    0.6.1 - added code to prevent 'uname -p' on platforms which are\n#            known not to support it\n#    0.6.0 - fixed win32_ver() to hopefully work on Win95,98,NT and Win2k;\n#            did some cleanup of the interfaces - some APIs have changed\n#    0.5.5 - fixed another type in the MacOS code... should have\n#            used more coffee today ;-)\n#    0.5.4 - fixed a few typos in the MacOS code\n#    0.5.3 - added experimental MacOS support; added better popen()\n#            workarounds in _syscmd_ver() -- still not 100% elegant\n#            though\n#    0.5.2 - fixed uname() to return '' instead of 'unknown' in all\n#            return values (the system uname command tends to return\n#            'unknown' instead of just leaving the field empty)\n#    0.5.1 - included code for slackware dist; added exception handlers\n#            to cover up situations where platforms don't have os.popen\n#            (e.g. Mac) or fail on socket.gethostname(); fixed libc\n#            detection RE\n#    0.5.0 - changed the API names referring to system commands to *syscmd*;\n#            added java_ver(); made syscmd_ver() a private\n#            API (was system_ver() in previous versions) -- use uname()\n#            instead; extended the win32_ver() to also return processor\n#            type information\n#    0.4.0 - added win32_ver() and modified the platform() output for WinXX\n#    0.3.4 - fixed a bug in _follow_symlinks()\n#    0.3.3 - fixed popen() and \"file\" command invocation bugs\n#    0.3.2 - added architecture() API and support for it in platform()\n#    0.3.1 - fixed syscmd_ver() RE to support Windows NT\n#    0.3.0 - added system alias support\n#    0.2.3 - removed 'wince' again... oh well.\n#    0.2.2 - added 'wince' to syscmd_ver() supported platforms\n#    0.2.1 - added cache logic and changed the platform string format\n#    0.2.0 - changed the API to use functions instead of module globals\n#            since some action take too long to be run on module import\n#    0.1.0 - first release\n#\n#    You can always get the latest version of this module at:\n#\n#             http://www.egenix.com/files/python/platform.py\n#\n#    If that URL should fail, try contacting the author.\n\n__copyright__ = \"\"\"\n    Copyright (c) 1999-2000, Marc-Andre Lemburg; mailto:mal@lemburg.com\n    Copyright (c) 2000-2010, eGenix.com Software GmbH; mailto:info@egenix.com\n\n    Permission to use, copy, modify, and distribute this software and its\n    documentation for any purpose and without fee or royalty is hereby granted,\n    provided that the above copyright notice appear in all copies and that\n    both that copyright notice and this permission notice appear in\n    supporting documentation or portions thereof, including modifications,\n    that you make.\n\n    EGENIX.COM SOFTWARE GMBH DISCLAIMS ALL WARRANTIES WITH REGARD TO\n    THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\n    FITNESS, IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL,\n    INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING\n    FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,\n    NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION\n    WITH THE USE OR PERFORMANCE OF THIS SOFTWARE !\n\n\"\"\"\n\n__version__ = '1.0.8'\n\nimport collections\nimport os\nimport re\nimport sys\n\n### Globals & Constants\n\n# Helper for comparing two version number strings.\n# Based on the description of the PHP's version_compare():\n# http://php.net/manual/en/function.version-compare.php\n\n_ver_stages = {\n    # any string not found in this dict, will get 0 assigned\n    'dev': 10,\n    'alpha': 20, 'a': 20,\n    'beta': 30, 'b': 30,\n    'c': 40,\n    'RC': 50, 'rc': 50,\n    # number, will get 100 assigned\n    'pl': 200, 'p': 200,\n}\n\n_component_re = re.compile(r'([0-9]+|[._+-])')\n\ndef _comparable_version(version):\n    result = []\n    for v in _component_re.split(version):\n        if v not in '._+-':\n            try:\n                v = int(v, 10)\n                t = 100\n            except ValueError:\n                t = _ver_stages.get(v, 0)\n            result.extend((t, v))\n    return result\n\n### Platform specific APIs\n\n_libc_search = re.compile(b'(__libc_init)'\n                          b'|'\n                          b'(GLIBC_([0-9.]+))'\n                          b'|'\n                          br'(libc(_\\w+)?\\.so(?:\\.(\\d[0-9.]*))?)', re.ASCII)\n\ndef libc_ver(executable=None, lib='', version='', chunksize=16384):\n\n    \"\"\" Tries to determine the libc version that the file executable\n        (which defaults to the Python interpreter) is linked against.\n\n        Returns a tuple of strings (lib,version) which default to the\n        given parameters in case the lookup fails.\n\n        Note that the function has intimate knowledge of how different\n        libc versions add symbols to the executable and thus is probably\n        only useable for executables compiled using gcc.\n\n        The file is read and scanned in chunks of chunksize bytes.\n\n    \"\"\"\n    if executable is None:\n        try:\n            ver = os.confstr('CS_GNU_LIBC_VERSION')\n            # parse 'glibc 2.28' as ('glibc', '2.28')\n            parts = ver.split(maxsplit=1)\n            if len(parts) == 2:\n                return tuple(parts)\n        except (AttributeError, ValueError, OSError):\n            # os.confstr() or CS_GNU_LIBC_VERSION value not available\n            pass\n\n        executable = sys.executable\n\n    V = _comparable_version\n    if hasattr(os.path, 'realpath'):\n        # Python 2.2 introduced os.path.realpath(); it is used\n        # here to work around problems with Cygwin not being\n        # able to open symlinks for reading\n        executable = os.path.realpath(executable)\n    with open(executable, 'rb') as f:\n        binary = f.read(chunksize)\n        pos = 0\n        while pos < len(binary):\n            if b'libc' in binary or b'GLIBC' in binary:\n                m = _libc_search.search(binary, pos)\n            else:\n                m = None\n            if not m or m.end() == len(binary):\n                chunk = f.read(chunksize)\n                if chunk:\n                    binary = binary[max(pos, len(binary) - 1000):] + chunk\n                    pos = 0\n                    continue\n                if not m:\n                    break\n            libcinit, glibc, glibcversion, so, threads, soversion = [\n                s.decode('latin1') if s is not None else s\n                for s in m.groups()]\n            if libcinit and not lib:\n                lib = 'libc'\n            elif glibc:\n                if lib != 'glibc':\n                    lib = 'glibc'\n                    version = glibcversion\n                elif V(glibcversion) > V(version):\n                    version = glibcversion\n            elif so:\n                if lib != 'glibc':\n                    lib = 'libc'\n                    if soversion and (not version or V(soversion) > V(version)):\n                        version = soversion\n                    if threads and version[-len(threads):] != threads:\n                        version = version + threads\n            pos = m.end()\n    return lib, version\n\ndef _norm_version(version, build=''):\n\n    \"\"\" Normalize the version and build strings and return a single\n        version string using the format major.minor.build (or patchlevel).\n    \"\"\"\n    l = version.split('.')\n    if build:\n        l.append(build)\n    try:\n        ints = map(int, l)\n    except ValueError:\n        strings = l\n    else:\n        strings = list(map(str, ints))\n    version = '.'.join(strings[:3])\n    return version\n\n_ver_output = re.compile(r'(?:([\\w ]+) ([\\w.]+) '\n                         r'.*'\n                         r'\\[.* ([\\d.]+)\\])')\n\n# Examples of VER command output:\n#\n#   Windows 2000:  Microsoft Windows 2000 [Version 5.00.2195]\n#   Windows XP:    Microsoft Windows XP [Version 5.1.2600]\n#   Windows Vista: Microsoft Windows [Version 6.0.6002]\n#\n# Note that the \"Version\" string gets localized on different\n# Windows versions.\n\ndef _syscmd_ver(system='', release='', version='',\n\n               supported_platforms=('win32', 'win16', 'dos')):\n\n    \"\"\" Tries to figure out the OS version used and returns\n        a tuple (system, release, version).\n\n        It uses the \"ver\" shell command for this which is known\n        to exists on Windows, DOS. XXX Others too ?\n\n        In case this fails, the given parameters are used as\n        defaults.\n\n    \"\"\"\n    if sys.platform not in supported_platforms:\n        return system, release, version\n\n    # Try some common cmd strings\n    import subprocess\n    for cmd in ('ver', 'command /c ver', 'cmd /c ver'):\n        try:\n            info = subprocess.check_output(cmd,\n                                           stderr=subprocess.DEVNULL,\n                                           text=True,\n                                           shell=True)\n        except (OSError, subprocess.CalledProcessError) as why:\n            #print('Command %s failed: %s' % (cmd, why))\n            continue\n        else:\n            break\n    else:\n        return system, release, version\n\n    # Parse the output\n    info = info.strip()\n    m = _ver_output.match(info)\n    if m is not None:\n        system, release, version = m.groups()\n        # Strip trailing dots from version and release\n        if release[-1] == '.':\n            release = release[:-1]\n        if version[-1] == '.':\n            version = version[:-1]\n        # Normalize the version and build strings (eliminating additional\n        # zeros)\n        version = _norm_version(version)\n    return system, release, version\n\n_WIN32_CLIENT_RELEASES = {\n    (5, 0): \"2000\",\n    (5, 1): \"XP\",\n    # Strictly, 5.2 client is XP 64-bit, but platform.py historically\n    # has always called it 2003 Server\n    (5, 2): \"2003Server\",\n    (5, None): \"post2003\",\n\n    (6, 0): \"Vista\",\n    (6, 1): \"7\",\n    (6, 2): \"8\",\n    (6, 3): \"8.1\",\n    (6, None): \"post8.1\",\n\n    (10, 0): \"10\",\n    (10, None): \"post10\",\n}\n\n# Server release name lookup will default to client names if necessary\n_WIN32_SERVER_RELEASES = {\n    (5, 2): \"2003Server\",\n\n    (6, 0): \"2008Server\",\n    (6, 1): \"2008ServerR2\",\n    (6, 2): \"2012Server\",\n    (6, 3): \"2012ServerR2\",\n    (6, None): \"post2012ServerR2\",\n}\n\ndef win32_is_iot():\n    return win32_edition() in ('IoTUAP', 'NanoServer', 'WindowsCoreHeadless', 'IoTEdgeOS')\n\ndef win32_edition():\n    try:\n        try:\n            import winreg\n        except ImportError:\n            import _winreg as winreg\n    except ImportError:\n        pass\n    else:\n        try:\n            cvkey = r'SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n            with winreg.OpenKeyEx(winreg.HKEY_LOCAL_MACHINE, cvkey) as key:\n                return winreg.QueryValueEx(key, 'EditionId')[0]\n        except OSError:\n            pass\n\n    return None\n\ndef win32_ver(release='', version='', csd='', ptype=''):\n    try:\n        from sys import getwindowsversion\n    except ImportError:\n        return release, version, csd, ptype\n\n    winver = getwindowsversion()\n    maj, min, build = winver.platform_version or winver[:3]\n    version = '{0}.{1}.{2}'.format(maj, min, build)\n\n    release = (_WIN32_CLIENT_RELEASES.get((maj, min)) or\n               _WIN32_CLIENT_RELEASES.get((maj, None)) or\n               release)\n\n    # getwindowsversion() reflect the compatibility mode Python is\n    # running under, and so the service pack value is only going to be\n    # valid if the versions match.\n    if winver[:2] == (maj, min):\n        try:\n            csd = 'SP{}'.format(winver.service_pack_major)\n        except AttributeError:\n            if csd[:13] == 'Service Pack ':\n                csd = 'SP' + csd[13:]\n\n    # VER_NT_SERVER = 3\n    if getattr(winver, 'product_type', None) == 3:\n        release = (_WIN32_SERVER_RELEASES.get((maj, min)) or\n                   _WIN32_SERVER_RELEASES.get((maj, None)) or\n                   release)\n\n    try:\n        try:\n            import winreg\n        except ImportError:\n            import _winreg as winreg\n    except ImportError:\n        pass\n    else:\n        try:\n            cvkey = r'SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n            with winreg.OpenKeyEx(winreg.HKEY_LOCAL_MACHINE, cvkey) as key:\n                ptype = winreg.QueryValueEx(key, 'CurrentType')[0]\n        except OSError:\n            pass\n\n    return release, version, csd, ptype\n\n\ndef _mac_ver_xml():\n    fn = '/System/Library/CoreServices/SystemVersion.plist'\n    if not os.path.exists(fn):\n        return None\n\n    try:\n        import plistlib\n    except ImportError:\n        return None\n\n    with open(fn, 'rb') as f:\n        pl = plistlib.load(f)\n    release = pl['ProductVersion']\n    versioninfo = ('', '', '')\n    machine = os.uname().machine\n    if machine in ('ppc', 'Power Macintosh'):\n        # Canonical name\n        machine = 'PowerPC'\n\n    return release, versioninfo, machine\n\n\ndef mac_ver(release='', versioninfo=('', '', ''), machine=''):\n\n    \"\"\" Get macOS version information and return it as tuple (release,\n        versioninfo, machine) with versioninfo being a tuple (version,\n        dev_stage, non_release_version).\n\n        Entries which cannot be determined are set to the parameter values\n        which default to ''. All tuple entries are strings.\n    \"\"\"\n\n    # First try reading the information from an XML file which should\n    # always be present\n    info = _mac_ver_xml()\n    if info is not None:\n        return info\n\n    # If that also doesn't work return the default values\n    return release, versioninfo, machine\n\ndef _java_getprop(name, default):\n\n    from java.lang import System\n    try:\n        value = System.getProperty(name)\n        if value is None:\n            return default\n        return value\n    except AttributeError:\n        return default\n\ndef java_ver(release='', vendor='', vminfo=('', '', ''), osinfo=('', '', '')):\n\n    \"\"\" Version interface for Jython.\n\n        Returns a tuple (release, vendor, vminfo, osinfo) with vminfo being\n        a tuple (vm_name, vm_release, vm_vendor) and osinfo being a\n        tuple (os_name, os_version, os_arch).\n\n        Values which cannot be determined are set to the defaults\n        given as parameters (which all default to '').\n\n    \"\"\"\n    # Import the needed APIs\n    try:\n        import java.lang\n    except ImportError:\n        return release, vendor, vminfo, osinfo\n\n    vendor = _java_getprop('java.vendor', vendor)\n    release = _java_getprop('java.version', release)\n    vm_name, vm_release, vm_vendor = vminfo\n    vm_name = _java_getprop('java.vm.name', vm_name)\n    vm_vendor = _java_getprop('java.vm.vendor', vm_vendor)\n    vm_release = _java_getprop('java.vm.version', vm_release)\n    vminfo = vm_name, vm_release, vm_vendor\n    os_name, os_version, os_arch = osinfo\n    os_arch = _java_getprop('java.os.arch', os_arch)\n    os_name = _java_getprop('java.os.name', os_name)\n    os_version = _java_getprop('java.os.version', os_version)\n    osinfo = os_name, os_version, os_arch\n\n    return release, vendor, vminfo, osinfo\n\n### System name aliasing\n\ndef system_alias(system, release, version):\n\n    \"\"\" Returns (system, release, version) aliased to common\n        marketing names used for some systems.\n\n        It also does some reordering of the information in some cases\n        where it would otherwise cause confusion.\n\n    \"\"\"\n    if system == 'SunOS':\n        # Sun's OS\n        if release < '5':\n            # These releases use the old name SunOS\n            return system, release, version\n        # Modify release (marketing release = SunOS release - 3)\n        l = release.split('.')\n        if l:\n            try:\n                major = int(l[0])\n            except ValueError:\n                pass\n            else:\n                major = major - 3\n                l[0] = str(major)\n                release = '.'.join(l)\n        if release < '6':\n            system = 'Solaris'\n        else:\n            # XXX Whatever the new SunOS marketing name is...\n            system = 'Solaris'\n\n    elif system == 'IRIX64':\n        # IRIX reports IRIX64 on platforms with 64-bit support; yet it\n        # is really a version and not a different platform, since 32-bit\n        # apps are also supported..\n        system = 'IRIX'\n        if version:\n            version = version + ' (64bit)'\n        else:\n            version = '64bit'\n\n    elif system in ('win32', 'win16'):\n        # In case one of the other tricks\n        system = 'Windows'\n\n    # bpo-35516: Don't replace Darwin with macOS since input release and\n    # version arguments can be different than the currently running version.\n\n    return system, release, version\n\n### Various internal helpers\n\ndef _platform(*args):\n\n    \"\"\" Helper to format the platform string in a filename\n        compatible format e.g. \"system-version-machine\".\n    \"\"\"\n    # Format the platform string\n    platform = '-'.join(x.strip() for x in filter(len, args))\n\n    # Cleanup some possible filename obstacles...\n    platform = platform.replace(' ', '_')\n    platform = platform.replace('/', '-')\n    platform = platform.replace('\\\\', '-')\n    platform = platform.replace(':', '-')\n    platform = platform.replace(';', '-')\n    platform = platform.replace('\"', '-')\n    platform = platform.replace('(', '-')\n    platform = platform.replace(')', '-')\n\n    # No need to report 'unknown' information...\n    platform = platform.replace('unknown', '')\n\n    # Fold '--'s and remove trailing '-'\n    while 1:\n        cleaned = platform.replace('--', '-')\n        if cleaned == platform:\n            break\n        platform = cleaned\n    while platform[-1] == '-':\n        platform = platform[:-1]\n\n    return platform\n\ndef _node(default=''):\n\n    \"\"\" Helper to determine the node name of this machine.\n    \"\"\"\n    try:\n        import socket\n    except ImportError:\n        # No sockets...\n        return default\n    try:\n        return socket.gethostname()\n    except OSError:\n        # Still not working...\n        return default\n\ndef _follow_symlinks(filepath):\n\n    \"\"\" In case filepath is a symlink, follow it until a\n        real file is reached.\n    \"\"\"\n    filepath = os.path.abspath(filepath)\n    while os.path.islink(filepath):\n        filepath = os.path.normpath(\n            os.path.join(os.path.dirname(filepath), os.readlink(filepath)))\n    return filepath\n\ndef _syscmd_uname(option, default=''):\n\n    \"\"\" Interface to the system's uname command.\n    \"\"\"\n    if sys.platform in ('dos', 'win32', 'win16'):\n        # XXX Others too ?\n        return default\n\n    import subprocess\n    try:\n        output = subprocess.check_output(('uname', option),\n                                         stderr=subprocess.DEVNULL,\n                                         text=True)\n    except (OSError, subprocess.CalledProcessError):\n        return default\n    return (output.strip() or default)\n\ndef _syscmd_file(target, default=''):\n\n    \"\"\" Interface to the system's file command.\n\n        The function uses the -b option of the file command to have it\n        omit the filename in its output. Follow the symlinks. It returns\n        default in case the command should fail.\n\n    \"\"\"\n    if sys.platform in ('dos', 'win32', 'win16'):\n        # XXX Others too ?\n        return default\n\n    import subprocess\n    target = _follow_symlinks(target)\n    # \"file\" output is locale dependent: force the usage of the C locale\n    # to get deterministic behavior.\n    env = dict(os.environ, LC_ALL='C')\n    try:\n        # -b: do not prepend filenames to output lines (brief mode)\n        output = subprocess.check_output(['file', '-b', target],\n                                         stderr=subprocess.DEVNULL,\n                                         env=env)\n    except (OSError, subprocess.CalledProcessError):\n        return default\n    if not output:\n        return default\n    # With the C locale, the output should be mostly ASCII-compatible.\n    # Decode from Latin-1 to prevent Unicode decode error.\n    return output.decode('latin-1')\n\n### Information about the used architecture\n\n# Default values for architecture; non-empty strings override the\n# defaults given as parameters\n_default_architecture = {\n    'win32': ('', 'WindowsPE'),\n    'win16': ('', 'Windows'),\n    'dos': ('', 'MSDOS'),\n}\n\ndef architecture(executable=sys.executable, bits='', linkage=''):\n\n    \"\"\" Queries the given executable (defaults to the Python interpreter\n        binary) for various architecture information.\n\n        Returns a tuple (bits, linkage) which contains information about\n        the bit architecture and the linkage format used for the\n        executable. Both values are returned as strings.\n\n        Values that cannot be determined are returned as given by the\n        parameter presets. If bits is given as '', the sizeof(pointer)\n        (or sizeof(long) on Python version < 1.5.2) is used as\n        indicator for the supported pointer size.\n\n        The function relies on the system's \"file\" command to do the\n        actual work. This is available on most if not all Unix\n        platforms. On some non-Unix platforms where the \"file\" command\n        does not exist and the executable is set to the Python interpreter\n        binary defaults from _default_architecture are used.\n\n    \"\"\"\n    # Use the sizeof(pointer) as default number of bits if nothing\n    # else is given as default.\n    if not bits:\n        import struct\n        size = struct.calcsize('P')\n        bits = str(size * 8) + 'bit'\n\n    # Get data from the 'file' system command\n    if executable:\n        fileout = _syscmd_file(executable, '')\n    else:\n        fileout = ''\n\n    if not fileout and \\\n       executable == sys.executable:\n        # \"file\" command did not return anything; we'll try to provide\n        # some sensible defaults then...\n        if sys.platform in _default_architecture:\n            b, l = _default_architecture[sys.platform]\n            if b:\n                bits = b\n            if l:\n                linkage = l\n        return bits, linkage\n\n    if 'executable' not in fileout and 'shared object' not in fileout:\n        # Format not supported\n        return bits, linkage\n\n    # Bits\n    if '32-bit' in fileout:\n        bits = '32bit'\n    elif 'N32' in fileout:\n        # On Irix only\n        bits = 'n32bit'\n    elif '64-bit' in fileout:\n        bits = '64bit'\n\n    # Linkage\n    if 'ELF' in fileout:\n        linkage = 'ELF'\n    elif 'PE' in fileout:\n        # E.g. Windows uses this format\n        if 'Windows' in fileout:\n            linkage = 'WindowsPE'\n        else:\n            linkage = 'PE'\n    elif 'COFF' in fileout:\n        linkage = 'COFF'\n    elif 'MS-DOS' in fileout:\n        linkage = 'MSDOS'\n    else:\n        # XXX the A.OUT format also falls under this class...\n        pass\n\n    return bits, linkage\n\n### Portable uname() interface\n\nuname_result = collections.namedtuple(\"uname_result\",\n                    \"system node release version machine processor\")\n\n_uname_cache = None\n\ndef uname():\n\n    \"\"\" Fairly portable uname interface. Returns a tuple\n        of strings (system, node, release, version, machine, processor)\n        identifying the underlying platform.\n\n        Note that unlike the os.uname function this also returns\n        possible processor information as an additional tuple entry.\n\n        Entries which cannot be determined are set to ''.\n\n    \"\"\"\n    global _uname_cache\n    no_os_uname = 0\n\n    if _uname_cache is not None:\n        return _uname_cache\n\n    processor = ''\n\n    # Get some infos from the builtin os.uname API...\n    try:\n        system, node, release, version, machine = os.uname()\n    except AttributeError:\n        no_os_uname = 1\n\n    if no_os_uname or not list(filter(None, (system, node, release, version, machine))):\n        # Hmm, no there is either no uname or uname has returned\n        #'unknowns'... we'll have to poke around the system then.\n        if no_os_uname:\n            system = sys.platform\n            release = ''\n            version = ''\n            node = _node()\n            machine = ''\n\n        use_syscmd_ver = 1\n\n        # Try win32_ver() on win32 platforms\n        if system == 'win32':\n            release, version, csd, ptype = win32_ver()\n            if release and version:\n                use_syscmd_ver = 0\n            # Try to use the PROCESSOR_* environment variables\n            # available on Win XP and later; see\n            # http://support.microsoft.com/kb/888731 and\n            # http://www.geocities.com/rick_lively/MANUALS/ENV/MSWIN/PROCESSI.HTM\n            if not machine:\n                # WOW64 processes mask the native architecture\n                if \"PROCESSOR_ARCHITEW6432\" in os.environ:\n                    machine = os.environ.get(\"PROCESSOR_ARCHITEW6432\", '')\n                else:\n                    machine = os.environ.get('PROCESSOR_ARCHITECTURE', '')\n            if not processor:\n                processor = os.environ.get('PROCESSOR_IDENTIFIER', machine)\n\n        # Try the 'ver' system command available on some\n        # platforms\n        if use_syscmd_ver:\n            system, release, version = _syscmd_ver(system)\n            # Normalize system to what win32_ver() normally returns\n            # (_syscmd_ver() tends to return the vendor name as well)\n            if system == 'Microsoft Windows':\n                system = 'Windows'\n            elif system == 'Microsoft' and release == 'Windows':\n                # Under Windows Vista and Windows Server 2008,\n                # Microsoft changed the output of the ver command. The\n                # release is no longer printed.  This causes the\n                # system and release to be misidentified.\n                system = 'Windows'\n                if '6.0' == version[:3]:\n                    release = 'Vista'\n                else:\n                    release = ''\n\n        # In case we still don't know anything useful, we'll try to\n        # help ourselves\n        if system in ('win32', 'win16'):\n            if not version:\n                if system == 'win32':\n                    version = '32bit'\n                else:\n                    version = '16bit'\n            system = 'Windows'\n\n        elif system[:4] == 'java':\n            release, vendor, vminfo, osinfo = java_ver()\n            system = 'Java'\n            version = ', '.join(vminfo)\n            if not version:\n                version = vendor\n\n    # System specific extensions\n    if system == 'OpenVMS':\n        # OpenVMS seems to have release and version mixed up\n        if not release or release == '0':\n            release = version\n            version = ''\n        # Get processor information\n        try:\n            import vms_lib\n        except ImportError:\n            pass\n        else:\n            csid, cpu_number = vms_lib.getsyi('SYI$_CPU', 0)\n            if (cpu_number >= 128):\n                processor = 'Alpha'\n            else:\n                processor = 'VAX'\n    if not processor:\n        # Get processor information from the uname system command\n        processor = _syscmd_uname('-p', '')\n\n    #If any unknowns still exist, replace them with ''s, which are more portable\n    if system == 'unknown':\n        system = ''\n    if node == 'unknown':\n        node = ''\n    if release == 'unknown':\n        release = ''\n    if version == 'unknown':\n        version = ''\n    if machine == 'unknown':\n        machine = ''\n    if processor == 'unknown':\n        processor = ''\n\n    #  normalize name\n    if system == 'Microsoft' and release == 'Windows':\n        system = 'Windows'\n        release = 'Vista'\n\n    _uname_cache = uname_result(system, node, release, version,\n                                machine, processor)\n    return _uname_cache\n\n### Direct interfaces to some of the uname() return values\n\ndef system():\n\n    \"\"\" Returns the system/OS name, e.g. 'Linux', 'Windows' or 'Java'.\n\n        An empty string is returned if the value cannot be determined.\n\n    \"\"\"\n    return uname().system\n\ndef node():\n\n    \"\"\" Returns the computer's network name (which may not be fully\n        qualified)\n\n        An empty string is returned if the value cannot be determined.\n\n    \"\"\"\n    return uname().node\n\ndef release():\n\n    \"\"\" Returns the system's release, e.g. '2.2.0' or 'NT'\n\n        An empty string is returned if the value cannot be determined.\n\n    \"\"\"\n    return uname().release\n\ndef version():\n\n    \"\"\" Returns the system's release version, e.g. '#3 on degas'\n\n        An empty string is returned if the value cannot be determined.\n\n    \"\"\"\n    return uname().version\n\ndef machine():\n\n    \"\"\" Returns the machine type, e.g. 'i386'\n\n        An empty string is returned if the value cannot be determined.\n\n    \"\"\"\n    return uname().machine\n\ndef processor():\n\n    \"\"\" Returns the (true) processor name, e.g. 'amdk6'\n\n        An empty string is returned if the value cannot be\n        determined. Note that many platforms do not provide this\n        information or simply return the same value as for machine(),\n        e.g.  NetBSD does this.\n\n    \"\"\"\n    return uname().processor\n\n### Various APIs for extracting information from sys.version\n\n_sys_version_parser = re.compile(\n    r'([\\w.+]+)\\s*'  # \"version<space>\"\n    r'\\(#?([^,]+)'  # \"(#buildno\"\n    r'(?:,\\s*([\\w ]*)'  # \", builddate\"\n    r'(?:,\\s*([\\w :]*))?)?\\)\\s*'  # \", buildtime)<space>\"\n    r'\\[([^\\]]+)\\]?', re.ASCII)  # \"[compiler]\"\n\n_ironpython_sys_version_parser = re.compile(\n    r'IronPython\\s*'\n    r'([\\d\\.]+)'\n    r'(?: \\(([\\d\\.]+)\\))?'\n    r' on (.NET [\\d\\.]+)', re.ASCII)\n\n# IronPython covering 2.6 and 2.7\n_ironpython26_sys_version_parser = re.compile(\n    r'([\\d.]+)\\s*'\n    r'\\(IronPython\\s*'\n    r'[\\d.]+\\s*'\n    r'\\(([\\d.]+)\\) on ([\\w.]+ [\\d.]+(?: \\(\\d+-bit\\))?)\\)'\n)\n\n_pypy_sys_version_parser = re.compile(\n    r'([\\w.+]+)\\s*'\n    r'\\(#?([^,]+),\\s*([\\w ]+),\\s*([\\w :]+)\\)\\s*'\n    r'\\[PyPy [^\\]]+\\]?')\n\n_sys_version_cache = {}\n\ndef _sys_version(sys_version=None):\n\n    \"\"\" Returns a parsed version of Python's sys.version as tuple\n        (name, version, branch, revision, buildno, builddate, compiler)\n        referring to the Python implementation name, version, branch,\n        revision, build number, build date/time as string and the compiler\n        identification string.\n\n        Note that unlike the Python sys.version, the returned value\n        for the Python version will always include the patchlevel (it\n        defaults to '.0').\n\n        The function returns empty strings for tuple entries that\n        cannot be determined.\n\n        sys_version may be given to parse an alternative version\n        string, e.g. if the version was read from a different Python\n        interpreter.\n\n    \"\"\"\n    # Get the Python version\n    if sys_version is None:\n        sys_version = sys.version\n\n    # Try the cache first\n    result = _sys_version_cache.get(sys_version, None)\n    if result is not None:\n        return result\n\n    # Parse it\n    if 'IronPython' in sys_version:\n        # IronPython\n        name = 'IronPython'\n        if sys_version.startswith('IronPython'):\n            match = _ironpython_sys_version_parser.match(sys_version)\n        else:\n            match = _ironpython26_sys_version_parser.match(sys_version)\n\n        if match is None:\n            raise ValueError(\n                'failed to parse IronPython sys.version: %s' %\n                repr(sys_version))\n\n        version, alt_version, compiler = match.groups()\n        buildno = ''\n        builddate = ''\n\n    elif sys.platform.startswith('java'):\n        # Jython\n        name = 'Jython'\n        match = _sys_version_parser.match(sys_version)\n        if match is None:\n            raise ValueError(\n                'failed to parse Jython sys.version: %s' %\n                repr(sys_version))\n        version, buildno, builddate, buildtime, _ = match.groups()\n        if builddate is None:\n            builddate = ''\n        compiler = sys.platform\n\n    elif \"PyPy\" in sys_version:\n        # PyPy\n        name = \"PyPy\"\n        match = _pypy_sys_version_parser.match(sys_version)\n        if match is None:\n            raise ValueError(\"failed to parse PyPy sys.version: %s\" %\n                             repr(sys_version))\n        version, buildno, builddate, buildtime = match.groups()\n        compiler = \"\"\n\n    else:\n        # CPython\n        match = _sys_version_parser.match(sys_version)\n        if match is None:\n            raise ValueError(\n                'failed to parse CPython sys.version: %s' %\n                repr(sys_version))\n        version, buildno, builddate, buildtime, compiler = \\\n              match.groups()\n        name = 'CPython'\n        if builddate is None:\n            builddate = ''\n        elif buildtime:\n            builddate = builddate + ' ' + buildtime\n\n    if hasattr(sys, '_git'):\n        _, branch, revision = sys._git\n    elif hasattr(sys, '_mercurial'):\n        _, branch, revision = sys._mercurial\n    else:\n        branch = ''\n        revision = ''\n\n    # Add the patchlevel version if missing\n    l = version.split('.')\n    if len(l) == 2:\n        l.append('0')\n        version = '.'.join(l)\n\n    # Build and cache the result\n    result = (name, version, branch, revision, buildno, builddate, compiler)\n    _sys_version_cache[sys_version] = result\n    return result\n\ndef python_implementation():\n\n    \"\"\" Returns a string identifying the Python implementation.\n\n        Currently, the following implementations are identified:\n          'CPython' (C implementation of Python),\n          'IronPython' (.NET implementation of Python),\n          'Jython' (Java implementation of Python),\n          'PyPy' (Python implementation of Python).\n\n    \"\"\"\n    return _sys_version()[0]\n\ndef python_version():\n\n    \"\"\" Returns the Python version as string 'major.minor.patchlevel'\n\n        Note that unlike the Python sys.version, the returned value\n        will always include the patchlevel (it defaults to 0).\n\n    \"\"\"\n    return _sys_version()[1]\n\ndef python_version_tuple():\n\n    \"\"\" Returns the Python version as tuple (major, minor, patchlevel)\n        of strings.\n\n        Note that unlike the Python sys.version, the returned value\n        will always include the patchlevel (it defaults to 0).\n\n    \"\"\"\n    return tuple(_sys_version()[1].split('.'))\n\ndef python_branch():\n\n    \"\"\" Returns a string identifying the Python implementation\n        branch.\n\n        For CPython this is the SCM branch from which the\n        Python binary was built.\n\n        If not available, an empty string is returned.\n\n    \"\"\"\n\n    return _sys_version()[2]\n\ndef python_revision():\n\n    \"\"\" Returns a string identifying the Python implementation\n        revision.\n\n        For CPython this is the SCM revision from which the\n        Python binary was built.\n\n        If not available, an empty string is returned.\n\n    \"\"\"\n    return _sys_version()[3]\n\ndef python_build():\n\n    \"\"\" Returns a tuple (buildno, builddate) stating the Python\n        build number and date as strings.\n\n    \"\"\"\n    return _sys_version()[4:6]\n\ndef python_compiler():\n\n    \"\"\" Returns a string identifying the compiler used for compiling\n        Python.\n\n    \"\"\"\n    return _sys_version()[6]\n\n### The Opus Magnum of platform strings :-)\n\n_platform_cache = {}\n\ndef platform(aliased=0, terse=0):\n\n    \"\"\" Returns a single string identifying the underlying platform\n        with as much useful information as possible (but no more :).\n\n        The output is intended to be human readable rather than\n        machine parseable. It may look different on different\n        platforms and this is intended.\n\n        If \"aliased\" is true, the function will use aliases for\n        various platforms that report system names which differ from\n        their common names, e.g. SunOS will be reported as\n        Solaris. The system_alias() function is used to implement\n        this.\n\n        Setting terse to true causes the function to return only the\n        absolute minimum information needed to identify the platform.\n\n    \"\"\"\n    result = _platform_cache.get((aliased, terse), None)\n    if result is not None:\n        return result\n\n    # Get uname information and then apply platform specific cosmetics\n    # to it...\n    system, node, release, version, machine, processor = uname()\n    if machine == processor:\n        processor = ''\n    if aliased:\n        system, release, version = system_alias(system, release, version)\n\n    if system == 'Darwin':\n        # macOS (darwin kernel)\n        macos_release = mac_ver()[0]\n        if macos_release:\n            system = 'macOS'\n            release = macos_release\n\n    if system == 'Windows':\n        # MS platforms\n        rel, vers, csd, ptype = win32_ver(version)\n        if terse:\n            platform = _platform(system, release)\n        else:\n            platform = _platform(system, release, version, csd)\n\n    elif system in ('Linux',):\n        # check for libc vs. glibc\n        libcname, libcversion = libc_ver(sys.executable)\n        platform = _platform(system, release, machine, processor,\n                             'with',\n                             libcname+libcversion)\n    elif system == 'Java':\n        # Java platforms\n        r, v, vminfo, (os_name, os_version, os_arch) = java_ver()\n        if terse or not os_name:\n            platform = _platform(system, release, version)\n        else:\n            platform = _platform(system, release, version,\n                                 'on',\n                                 os_name, os_version, os_arch)\n\n    else:\n        # Generic handler\n        if terse:\n            platform = _platform(system, release)\n        else:\n            bits, linkage = architecture(sys.executable)\n            platform = _platform(system, release, machine,\n                                 processor, bits, linkage)\n\n    _platform_cache[(aliased, terse)] = platform\n    return platform\n\n### Command line interface\n\nif __name__ == '__main__':\n    # Default is to print the aliased verbose platform string\n    terse = ('terse' in sys.argv or '--terse' in sys.argv)\n    aliased = (not 'nonaliased' in sys.argv and not '--nonaliased' in sys.argv)\n    print(platform(aliased, terse))\n    sys.exit(0)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/plistlib.py",
    "content": "r\"\"\"plistlib.py -- a tool to generate and parse MacOSX .plist files.\n\nThe property list (.plist) file format is a simple XML pickle supporting\nbasic object types, like dictionaries, lists, numbers and strings.\nUsually the top level object is a dictionary.\n\nTo write out a plist file, use the dump(value, file)\nfunction. 'value' is the top level object, 'file' is\na (writable) file object.\n\nTo parse a plist from a file, use the load(file) function,\nwith a (readable) file object as the only argument. It\nreturns the top level object (again, usually a dictionary).\n\nTo work with plist data in bytes objects, you can use loads()\nand dumps().\n\nValues can be strings, integers, floats, booleans, tuples, lists,\ndictionaries (but only with string keys), Data, bytes, bytearray, or\ndatetime.datetime objects.\n\nGenerate Plist example:\n\n    pl = dict(\n        aString = \"Doodah\",\n        aList = [\"A\", \"B\", 12, 32.1, [1, 2, 3]],\n        aFloat = 0.1,\n        anInt = 728,\n        aDict = dict(\n            anotherString = \"<hello & hi there!>\",\n            aUnicodeValue = \"M\\xe4ssig, Ma\\xdf\",\n            aTrueValue = True,\n            aFalseValue = False,\n        ),\n        someData = b\"<binary gunk>\",\n        someMoreData = b\"<lots of binary gunk>\" * 10,\n        aDate = datetime.datetime.fromtimestamp(time.mktime(time.gmtime())),\n    )\n    with open(fileName, 'wb') as fp:\n        dump(pl, fp)\n\nParse Plist example:\n\n    with open(fileName, 'rb') as fp:\n        pl = load(fp)\n    print(pl[\"aKey\"])\n\"\"\"\n__all__ = [\n    \"readPlist\", \"writePlist\", \"readPlistFromBytes\", \"writePlistToBytes\",\n    \"Data\", \"InvalidFileException\", \"FMT_XML\", \"FMT_BINARY\",\n    \"load\", \"dump\", \"loads\", \"dumps\", \"UID\"\n]\n\nimport binascii\nimport codecs\nimport contextlib\nimport datetime\nimport enum\nfrom io import BytesIO\nimport itertools\nimport os\nimport re\nimport struct\nfrom warnings import warn\nfrom xml.parsers.expat import ParserCreate\n\n\nPlistFormat = enum.Enum('PlistFormat', 'FMT_XML FMT_BINARY', module=__name__)\nglobals().update(PlistFormat.__members__)\n\n\n#\n#\n# Deprecated functionality\n#\n#\n\n\n@contextlib.contextmanager\ndef _maybe_open(pathOrFile, mode):\n    if isinstance(pathOrFile, str):\n        with open(pathOrFile, mode) as fp:\n            yield fp\n\n    else:\n        yield pathOrFile\n\n\ndef readPlist(pathOrFile):\n    \"\"\"\n    Read a .plist from a path or file. pathOrFile should either\n    be a file name, or a readable binary file object.\n\n    This function is deprecated, use load instead.\n    \"\"\"\n    warn(\"The readPlist function is deprecated, use load() instead\",\n        DeprecationWarning, 2)\n\n    with _maybe_open(pathOrFile, 'rb') as fp:\n        return load(fp, fmt=None, use_builtin_types=False)\n\ndef writePlist(value, pathOrFile):\n    \"\"\"\n    Write 'value' to a .plist file. 'pathOrFile' may either be a\n    file name or a (writable) file object.\n\n    This function is deprecated, use dump instead.\n    \"\"\"\n    warn(\"The writePlist function is deprecated, use dump() instead\",\n        DeprecationWarning, 2)\n    with _maybe_open(pathOrFile, 'wb') as fp:\n        dump(value, fp, fmt=FMT_XML, sort_keys=True, skipkeys=False)\n\n\ndef readPlistFromBytes(data):\n    \"\"\"\n    Read a plist data from a bytes object. Return the root object.\n\n    This function is deprecated, use loads instead.\n    \"\"\"\n    warn(\"The readPlistFromBytes function is deprecated, use loads() instead\",\n        DeprecationWarning, 2)\n    return load(BytesIO(data), fmt=None, use_builtin_types=False)\n\n\ndef writePlistToBytes(value):\n    \"\"\"\n    Return 'value' as a plist-formatted bytes object.\n\n    This function is deprecated, use dumps instead.\n    \"\"\"\n    warn(\"The writePlistToBytes function is deprecated, use dumps() instead\",\n        DeprecationWarning, 2)\n    f = BytesIO()\n    dump(value, f, fmt=FMT_XML, sort_keys=True, skipkeys=False)\n    return f.getvalue()\n\n\nclass Data:\n    \"\"\"\n    Wrapper for binary data.\n\n    This class is deprecated, use a bytes object instead.\n    \"\"\"\n\n    def __init__(self, data):\n        if not isinstance(data, bytes):\n            raise TypeError(\"data must be as bytes\")\n        self.data = data\n\n    @classmethod\n    def fromBase64(cls, data):\n        # base64.decodebytes just calls binascii.a2b_base64;\n        # it seems overkill to use both base64 and binascii.\n        return cls(_decode_base64(data))\n\n    def asBase64(self, maxlinelength=76):\n        return _encode_base64(self.data, maxlinelength)\n\n    def __eq__(self, other):\n        if isinstance(other, self.__class__):\n            return self.data == other.data\n        elif isinstance(other, bytes):\n            return self.data == other\n        else:\n            return NotImplemented\n\n    def __repr__(self):\n        return \"%s(%s)\" % (self.__class__.__name__, repr(self.data))\n\n#\n#\n# End of deprecated functionality\n#\n#\n\n\nclass UID:\n    def __init__(self, data):\n        if not isinstance(data, int):\n            raise TypeError(\"data must be an int\")\n        if data >= 1 << 64:\n            raise ValueError(\"UIDs cannot be >= 2**64\")\n        if data < 0:\n            raise ValueError(\"UIDs must be positive\")\n        self.data = data\n\n    def __index__(self):\n        return self.data\n\n    def __repr__(self):\n        return \"%s(%s)\" % (self.__class__.__name__, repr(self.data))\n\n    def __reduce__(self):\n        return self.__class__, (self.data,)\n\n    def __eq__(self, other):\n        if not isinstance(other, UID):\n            return NotImplemented\n        return self.data == other.data\n\n    def __hash__(self):\n        return hash(self.data)\n\n\n#\n# XML support\n#\n\n\n# XML 'header'\nPLISTHEADER = b\"\"\"\\\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n\"\"\"\n\n\n# Regex to find any control chars, except for \\t \\n and \\r\n_controlCharPat = re.compile(\n    r\"[\\x00\\x01\\x02\\x03\\x04\\x05\\x06\\x07\\x08\\x0b\\x0c\\x0e\\x0f\"\n    r\"\\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17\\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f]\")\n\ndef _encode_base64(s, maxlinelength=76):\n    # copied from base64.encodebytes(), with added maxlinelength argument\n    maxbinsize = (maxlinelength//4)*3\n    pieces = []\n    for i in range(0, len(s), maxbinsize):\n        chunk = s[i : i + maxbinsize]\n        pieces.append(binascii.b2a_base64(chunk))\n    return b''.join(pieces)\n\ndef _decode_base64(s):\n    if isinstance(s, str):\n        return binascii.a2b_base64(s.encode(\"utf-8\"))\n\n    else:\n        return binascii.a2b_base64(s)\n\n# Contents should conform to a subset of ISO 8601\n# (in particular, YYYY '-' MM '-' DD 'T' HH ':' MM ':' SS 'Z'.  Smaller units\n# may be omitted with #  a loss of precision)\n_dateParser = re.compile(r\"(?P<year>\\d\\d\\d\\d)(?:-(?P<month>\\d\\d)(?:-(?P<day>\\d\\d)(?:T(?P<hour>\\d\\d)(?::(?P<minute>\\d\\d)(?::(?P<second>\\d\\d))?)?)?)?)?Z\", re.ASCII)\n\n\ndef _date_from_string(s):\n    order = ('year', 'month', 'day', 'hour', 'minute', 'second')\n    gd = _dateParser.match(s).groupdict()\n    lst = []\n    for key in order:\n        val = gd[key]\n        if val is None:\n            break\n        lst.append(int(val))\n    return datetime.datetime(*lst)\n\n\ndef _date_to_string(d):\n    return '%04d-%02d-%02dT%02d:%02d:%02dZ' % (\n        d.year, d.month, d.day,\n        d.hour, d.minute, d.second\n    )\n\ndef _escape(text):\n    m = _controlCharPat.search(text)\n    if m is not None:\n        raise ValueError(\"strings can't contains control characters; \"\n                         \"use bytes instead\")\n    text = text.replace(\"\\r\\n\", \"\\n\")       # convert DOS line endings\n    text = text.replace(\"\\r\", \"\\n\")         # convert Mac line endings\n    text = text.replace(\"&\", \"&amp;\")       # escape '&'\n    text = text.replace(\"<\", \"&lt;\")        # escape '<'\n    text = text.replace(\">\", \"&gt;\")        # escape '>'\n    return text\n\nclass _PlistParser:\n    def __init__(self, use_builtin_types, dict_type):\n        self.stack = []\n        self.current_key = None\n        self.root = None\n        self._use_builtin_types = use_builtin_types\n        self._dict_type = dict_type\n\n    def parse(self, fileobj):\n        self.parser = ParserCreate()\n        self.parser.StartElementHandler = self.handle_begin_element\n        self.parser.EndElementHandler = self.handle_end_element\n        self.parser.CharacterDataHandler = self.handle_data\n        self.parser.ParseFile(fileobj)\n        return self.root\n\n    def handle_begin_element(self, element, attrs):\n        self.data = []\n        handler = getattr(self, \"begin_\" + element, None)\n        if handler is not None:\n            handler(attrs)\n\n    def handle_end_element(self, element):\n        handler = getattr(self, \"end_\" + element, None)\n        if handler is not None:\n            handler()\n\n    def handle_data(self, data):\n        self.data.append(data)\n\n    def add_object(self, value):\n        if self.current_key is not None:\n            if not isinstance(self.stack[-1], type({})):\n                raise ValueError(\"unexpected element at line %d\" %\n                                 self.parser.CurrentLineNumber)\n            self.stack[-1][self.current_key] = value\n            self.current_key = None\n        elif not self.stack:\n            # this is the root object\n            self.root = value\n        else:\n            if not isinstance(self.stack[-1], type([])):\n                raise ValueError(\"unexpected element at line %d\" %\n                                 self.parser.CurrentLineNumber)\n            self.stack[-1].append(value)\n\n    def get_data(self):\n        data = ''.join(self.data)\n        self.data = []\n        return data\n\n    # element handlers\n\n    def begin_dict(self, attrs):\n        d = self._dict_type()\n        self.add_object(d)\n        self.stack.append(d)\n\n    def end_dict(self):\n        if self.current_key:\n            raise ValueError(\"missing value for key '%s' at line %d\" %\n                             (self.current_key,self.parser.CurrentLineNumber))\n        self.stack.pop()\n\n    def end_key(self):\n        if self.current_key or not isinstance(self.stack[-1], type({})):\n            raise ValueError(\"unexpected key at line %d\" %\n                             self.parser.CurrentLineNumber)\n        self.current_key = self.get_data()\n\n    def begin_array(self, attrs):\n        a = []\n        self.add_object(a)\n        self.stack.append(a)\n\n    def end_array(self):\n        self.stack.pop()\n\n    def end_true(self):\n        self.add_object(True)\n\n    def end_false(self):\n        self.add_object(False)\n\n    def end_integer(self):\n        self.add_object(int(self.get_data()))\n\n    def end_real(self):\n        self.add_object(float(self.get_data()))\n\n    def end_string(self):\n        self.add_object(self.get_data())\n\n    def end_data(self):\n        if self._use_builtin_types:\n            self.add_object(_decode_base64(self.get_data()))\n\n        else:\n            self.add_object(Data.fromBase64(self.get_data()))\n\n    def end_date(self):\n        self.add_object(_date_from_string(self.get_data()))\n\n\nclass _DumbXMLWriter:\n    def __init__(self, file, indent_level=0, indent=\"\\t\"):\n        self.file = file\n        self.stack = []\n        self._indent_level = indent_level\n        self.indent = indent\n\n    def begin_element(self, element):\n        self.stack.append(element)\n        self.writeln(\"<%s>\" % element)\n        self._indent_level += 1\n\n    def end_element(self, element):\n        assert self._indent_level > 0\n        assert self.stack.pop() == element\n        self._indent_level -= 1\n        self.writeln(\"</%s>\" % element)\n\n    def simple_element(self, element, value=None):\n        if value is not None:\n            value = _escape(value)\n            self.writeln(\"<%s>%s</%s>\" % (element, value, element))\n\n        else:\n            self.writeln(\"<%s/>\" % element)\n\n    def writeln(self, line):\n        if line:\n            # plist has fixed encoding of utf-8\n\n            # XXX: is this test needed?\n            if isinstance(line, str):\n                line = line.encode('utf-8')\n            self.file.write(self._indent_level * self.indent)\n            self.file.write(line)\n        self.file.write(b'\\n')\n\n\nclass _PlistWriter(_DumbXMLWriter):\n    def __init__(\n            self, file, indent_level=0, indent=b\"\\t\", writeHeader=1,\n            sort_keys=True, skipkeys=False):\n\n        if writeHeader:\n            file.write(PLISTHEADER)\n        _DumbXMLWriter.__init__(self, file, indent_level, indent)\n        self._sort_keys = sort_keys\n        self._skipkeys = skipkeys\n\n    def write(self, value):\n        self.writeln(\"<plist version=\\\"1.0\\\">\")\n        self.write_value(value)\n        self.writeln(\"</plist>\")\n\n    def write_value(self, value):\n        if isinstance(value, str):\n            self.simple_element(\"string\", value)\n\n        elif value is True:\n            self.simple_element(\"true\")\n\n        elif value is False:\n            self.simple_element(\"false\")\n\n        elif isinstance(value, int):\n            if -1 << 63 <= value < 1 << 64:\n                self.simple_element(\"integer\", \"%d\" % value)\n            else:\n                raise OverflowError(value)\n\n        elif isinstance(value, float):\n            self.simple_element(\"real\", repr(value))\n\n        elif isinstance(value, dict):\n            self.write_dict(value)\n\n        elif isinstance(value, Data):\n            self.write_data(value)\n\n        elif isinstance(value, (bytes, bytearray)):\n            self.write_bytes(value)\n\n        elif isinstance(value, datetime.datetime):\n            self.simple_element(\"date\", _date_to_string(value))\n\n        elif isinstance(value, (tuple, list)):\n            self.write_array(value)\n\n        else:\n            raise TypeError(\"unsupported type: %s\" % type(value))\n\n    def write_data(self, data):\n        self.write_bytes(data.data)\n\n    def write_bytes(self, data):\n        self.begin_element(\"data\")\n        self._indent_level -= 1\n        maxlinelength = max(\n            16,\n            76 - len(self.indent.replace(b\"\\t\", b\" \" * 8) * self._indent_level))\n\n        for line in _encode_base64(data, maxlinelength).split(b\"\\n\"):\n            if line:\n                self.writeln(line)\n        self._indent_level += 1\n        self.end_element(\"data\")\n\n    def write_dict(self, d):\n        if d:\n            self.begin_element(\"dict\")\n            if self._sort_keys:\n                items = sorted(d.items())\n            else:\n                items = d.items()\n\n            for key, value in items:\n                if not isinstance(key, str):\n                    if self._skipkeys:\n                        continue\n                    raise TypeError(\"keys must be strings\")\n                self.simple_element(\"key\", key)\n                self.write_value(value)\n            self.end_element(\"dict\")\n\n        else:\n            self.simple_element(\"dict\")\n\n    def write_array(self, array):\n        if array:\n            self.begin_element(\"array\")\n            for value in array:\n                self.write_value(value)\n            self.end_element(\"array\")\n\n        else:\n            self.simple_element(\"array\")\n\n\ndef _is_fmt_xml(header):\n    prefixes = (b'<?xml', b'<plist')\n\n    for pfx in prefixes:\n        if header.startswith(pfx):\n            return True\n\n    # Also check for alternative XML encodings, this is slightly\n    # overkill because the Apple tools (and plistlib) will not\n    # generate files with these encodings.\n    for bom, encoding in (\n                (codecs.BOM_UTF8, \"utf-8\"),\n                (codecs.BOM_UTF16_BE, \"utf-16-be\"),\n                (codecs.BOM_UTF16_LE, \"utf-16-le\"),\n                # expat does not support utf-32\n                #(codecs.BOM_UTF32_BE, \"utf-32-be\"),\n                #(codecs.BOM_UTF32_LE, \"utf-32-le\"),\n            ):\n        if not header.startswith(bom):\n            continue\n\n        for start in prefixes:\n            prefix = bom + start.decode('ascii').encode(encoding)\n            if header[:len(prefix)] == prefix:\n                return True\n\n    return False\n\n#\n# Binary Plist\n#\n\n\nclass InvalidFileException (ValueError):\n    def __init__(self, message=\"Invalid file\"):\n        ValueError.__init__(self, message)\n\n_BINARY_FORMAT = {1: 'B', 2: 'H', 4: 'L', 8: 'Q'}\n\n_undefined = object()\n\nclass _BinaryPlistParser:\n    \"\"\"\n    Read or write a binary plist file, following the description of the binary\n    format.  Raise InvalidFileException in case of error, otherwise return the\n    root object.\n\n    see also: http://opensource.apple.com/source/CF/CF-744.18/CFBinaryPList.c\n    \"\"\"\n    def __init__(self, use_builtin_types, dict_type):\n        self._use_builtin_types = use_builtin_types\n        self._dict_type = dict_type\n\n    def parse(self, fp):\n        try:\n            # The basic file format:\n            # HEADER\n            # object...\n            # refid->offset...\n            # TRAILER\n            self._fp = fp\n            self._fp.seek(-32, os.SEEK_END)\n            trailer = self._fp.read(32)\n            if len(trailer) != 32:\n                raise InvalidFileException()\n            (\n                offset_size, self._ref_size, num_objects, top_object,\n                offset_table_offset\n            ) = struct.unpack('>6xBBQQQ', trailer)\n            self._fp.seek(offset_table_offset)\n            self._object_offsets = self._read_ints(num_objects, offset_size)\n            self._objects = [_undefined] * num_objects\n            return self._read_object(top_object)\n\n        except (OSError, IndexError, struct.error, OverflowError,\n                UnicodeDecodeError):\n            raise InvalidFileException()\n\n    def _get_size(self, tokenL):\n        \"\"\" return the size of the next object.\"\"\"\n        if tokenL == 0xF:\n            m = self._fp.read(1)[0] & 0x3\n            s = 1 << m\n            f = '>' + _BINARY_FORMAT[s]\n            return struct.unpack(f, self._fp.read(s))[0]\n\n        return tokenL\n\n    def _read_ints(self, n, size):\n        data = self._fp.read(size * n)\n        if size in _BINARY_FORMAT:\n            return struct.unpack('>' + _BINARY_FORMAT[size] * n, data)\n        else:\n            if not size or len(data) != size * n:\n                raise InvalidFileException()\n            return tuple(int.from_bytes(data[i: i + size], 'big')\n                         for i in range(0, size * n, size))\n\n    def _read_refs(self, n):\n        return self._read_ints(n, self._ref_size)\n\n    def _read_object(self, ref):\n        \"\"\"\n        read the object by reference.\n\n        May recursively read sub-objects (content of an array/dict/set)\n        \"\"\"\n        result = self._objects[ref]\n        if result is not _undefined:\n            return result\n\n        offset = self._object_offsets[ref]\n        self._fp.seek(offset)\n        token = self._fp.read(1)[0]\n        tokenH, tokenL = token & 0xF0, token & 0x0F\n\n        if token == 0x00:\n            result = None\n\n        elif token == 0x08:\n            result = False\n\n        elif token == 0x09:\n            result = True\n\n        # The referenced source code also mentions URL (0x0c, 0x0d) and\n        # UUID (0x0e), but neither can be generated using the Cocoa libraries.\n\n        elif token == 0x0f:\n            result = b''\n\n        elif tokenH == 0x10:  # int\n            result = int.from_bytes(self._fp.read(1 << tokenL),\n                                    'big', signed=tokenL >= 3)\n\n        elif token == 0x22: # real\n            result = struct.unpack('>f', self._fp.read(4))[0]\n\n        elif token == 0x23: # real\n            result = struct.unpack('>d', self._fp.read(8))[0]\n\n        elif token == 0x33:  # date\n            f = struct.unpack('>d', self._fp.read(8))[0]\n            # timestamp 0 of binary plists corresponds to 1/1/2001\n            # (year of Mac OS X 10.0), instead of 1/1/1970.\n            result = (datetime.datetime(2001, 1, 1) +\n                      datetime.timedelta(seconds=f))\n\n        elif tokenH == 0x40:  # data\n            s = self._get_size(tokenL)\n            if self._use_builtin_types:\n                result = self._fp.read(s)\n            else:\n                result = Data(self._fp.read(s))\n\n        elif tokenH == 0x50:  # ascii string\n            s = self._get_size(tokenL)\n            result =  self._fp.read(s).decode('ascii')\n\n        elif tokenH == 0x60:  # unicode string\n            s = self._get_size(tokenL)\n            result = self._fp.read(s * 2).decode('utf-16be')\n\n        elif tokenH == 0x80:  # UID\n            # used by Key-Archiver plist files\n            result = UID(int.from_bytes(self._fp.read(1 + tokenL), 'big'))\n\n        elif tokenH == 0xA0:  # array\n            s = self._get_size(tokenL)\n            obj_refs = self._read_refs(s)\n            result = []\n            self._objects[ref] = result\n            result.extend(self._read_object(x) for x in obj_refs)\n\n        # tokenH == 0xB0 is documented as 'ordset', but is not actually\n        # implemented in the Apple reference code.\n\n        # tokenH == 0xC0 is documented as 'set', but sets cannot be used in\n        # plists.\n\n        elif tokenH == 0xD0:  # dict\n            s = self._get_size(tokenL)\n            key_refs = self._read_refs(s)\n            obj_refs = self._read_refs(s)\n            result = self._dict_type()\n            self._objects[ref] = result\n            for k, o in zip(key_refs, obj_refs):\n                result[self._read_object(k)] = self._read_object(o)\n\n        else:\n            raise InvalidFileException()\n\n        self._objects[ref] = result\n        return result\n\ndef _count_to_size(count):\n    if count < 1 << 8:\n        return 1\n\n    elif count < 1 << 16:\n        return 2\n\n    elif count << 1 << 32:\n        return 4\n\n    else:\n        return 8\n\n_scalars = (str, int, float, datetime.datetime, bytes)\n\nclass _BinaryPlistWriter (object):\n    def __init__(self, fp, sort_keys, skipkeys):\n        self._fp = fp\n        self._sort_keys = sort_keys\n        self._skipkeys = skipkeys\n\n    def write(self, value):\n\n        # Flattened object list:\n        self._objlist = []\n\n        # Mappings from object->objectid\n        # First dict has (type(object), object) as the key,\n        # second dict is used when object is not hashable and\n        # has id(object) as the key.\n        self._objtable = {}\n        self._objidtable = {}\n\n        # Create list of all objects in the plist\n        self._flatten(value)\n\n        # Size of object references in serialized containers\n        # depends on the number of objects in the plist.\n        num_objects = len(self._objlist)\n        self._object_offsets = [0]*num_objects\n        self._ref_size = _count_to_size(num_objects)\n\n        self._ref_format = _BINARY_FORMAT[self._ref_size]\n\n        # Write file header\n        self._fp.write(b'bplist00')\n\n        # Write object list\n        for obj in self._objlist:\n            self._write_object(obj)\n\n        # Write refnum->object offset table\n        top_object = self._getrefnum(value)\n        offset_table_offset = self._fp.tell()\n        offset_size = _count_to_size(offset_table_offset)\n        offset_format = '>' + _BINARY_FORMAT[offset_size] * num_objects\n        self._fp.write(struct.pack(offset_format, *self._object_offsets))\n\n        # Write trailer\n        sort_version = 0\n        trailer = (\n            sort_version, offset_size, self._ref_size, num_objects,\n            top_object, offset_table_offset\n        )\n        self._fp.write(struct.pack('>5xBBBQQQ', *trailer))\n\n    def _flatten(self, value):\n        # First check if the object is in the object table, not used for\n        # containers to ensure that two subcontainers with the same contents\n        # will be serialized as distinct values.\n        if isinstance(value, _scalars):\n            if (type(value), value) in self._objtable:\n                return\n\n        elif isinstance(value, Data):\n            if (type(value.data), value.data) in self._objtable:\n                return\n\n        elif id(value) in self._objidtable:\n            return\n\n        # Add to objectreference map\n        refnum = len(self._objlist)\n        self._objlist.append(value)\n        if isinstance(value, _scalars):\n            self._objtable[(type(value), value)] = refnum\n        elif isinstance(value, Data):\n            self._objtable[(type(value.data), value.data)] = refnum\n        else:\n            self._objidtable[id(value)] = refnum\n\n        # And finally recurse into containers\n        if isinstance(value, dict):\n            keys = []\n            values = []\n            items = value.items()\n            if self._sort_keys:\n                items = sorted(items)\n\n            for k, v in items:\n                if not isinstance(k, str):\n                    if self._skipkeys:\n                        continue\n                    raise TypeError(\"keys must be strings\")\n                keys.append(k)\n                values.append(v)\n\n            for o in itertools.chain(keys, values):\n                self._flatten(o)\n\n        elif isinstance(value, (list, tuple)):\n            for o in value:\n                self._flatten(o)\n\n    def _getrefnum(self, value):\n        if isinstance(value, _scalars):\n            return self._objtable[(type(value), value)]\n        elif isinstance(value, Data):\n            return self._objtable[(type(value.data), value.data)]\n        else:\n            return self._objidtable[id(value)]\n\n    def _write_size(self, token, size):\n        if size < 15:\n            self._fp.write(struct.pack('>B', token | size))\n\n        elif size < 1 << 8:\n            self._fp.write(struct.pack('>BBB', token | 0xF, 0x10, size))\n\n        elif size < 1 << 16:\n            self._fp.write(struct.pack('>BBH', token | 0xF, 0x11, size))\n\n        elif size < 1 << 32:\n            self._fp.write(struct.pack('>BBL', token | 0xF, 0x12, size))\n\n        else:\n            self._fp.write(struct.pack('>BBQ', token | 0xF, 0x13, size))\n\n    def _write_object(self, value):\n        ref = self._getrefnum(value)\n        self._object_offsets[ref] = self._fp.tell()\n        if value is None:\n            self._fp.write(b'\\x00')\n\n        elif value is False:\n            self._fp.write(b'\\x08')\n\n        elif value is True:\n            self._fp.write(b'\\x09')\n\n        elif isinstance(value, int):\n            if value < 0:\n                try:\n                    self._fp.write(struct.pack('>Bq', 0x13, value))\n                except struct.error:\n                    raise OverflowError(value) from None\n            elif value < 1 << 8:\n                self._fp.write(struct.pack('>BB', 0x10, value))\n            elif value < 1 << 16:\n                self._fp.write(struct.pack('>BH', 0x11, value))\n            elif value < 1 << 32:\n                self._fp.write(struct.pack('>BL', 0x12, value))\n            elif value < 1 << 63:\n                self._fp.write(struct.pack('>BQ', 0x13, value))\n            elif value < 1 << 64:\n                self._fp.write(b'\\x14' + value.to_bytes(16, 'big', signed=True))\n            else:\n                raise OverflowError(value)\n\n        elif isinstance(value, float):\n            self._fp.write(struct.pack('>Bd', 0x23, value))\n\n        elif isinstance(value, datetime.datetime):\n            f = (value - datetime.datetime(2001, 1, 1)).total_seconds()\n            self._fp.write(struct.pack('>Bd', 0x33, f))\n\n        elif isinstance(value, Data):\n            self._write_size(0x40, len(value.data))\n            self._fp.write(value.data)\n\n        elif isinstance(value, (bytes, bytearray)):\n            self._write_size(0x40, len(value))\n            self._fp.write(value)\n\n        elif isinstance(value, str):\n            try:\n                t = value.encode('ascii')\n                self._write_size(0x50, len(value))\n            except UnicodeEncodeError:\n                t = value.encode('utf-16be')\n                self._write_size(0x60, len(t) // 2)\n\n            self._fp.write(t)\n\n        elif isinstance(value, UID):\n            if value.data < 0:\n                raise ValueError(\"UIDs must be positive\")\n            elif value.data < 1 << 8:\n                self._fp.write(struct.pack('>BB', 0x80, value))\n            elif value.data < 1 << 16:\n                self._fp.write(struct.pack('>BH', 0x81, value))\n            elif value.data < 1 << 32:\n                self._fp.write(struct.pack('>BL', 0x83, value))\n            elif value.data < 1 << 64:\n                self._fp.write(struct.pack('>BQ', 0x87, value))\n            else:\n                raise OverflowError(value)\n\n        elif isinstance(value, (list, tuple)):\n            refs = [self._getrefnum(o) for o in value]\n            s = len(refs)\n            self._write_size(0xA0, s)\n            self._fp.write(struct.pack('>' + self._ref_format * s, *refs))\n\n        elif isinstance(value, dict):\n            keyRefs, valRefs = [], []\n\n            if self._sort_keys:\n                rootItems = sorted(value.items())\n            else:\n                rootItems = value.items()\n\n            for k, v in rootItems:\n                if not isinstance(k, str):\n                    if self._skipkeys:\n                        continue\n                    raise TypeError(\"keys must be strings\")\n                keyRefs.append(self._getrefnum(k))\n                valRefs.append(self._getrefnum(v))\n\n            s = len(keyRefs)\n            self._write_size(0xD0, s)\n            self._fp.write(struct.pack('>' + self._ref_format * s, *keyRefs))\n            self._fp.write(struct.pack('>' + self._ref_format * s, *valRefs))\n\n        else:\n            raise TypeError(value)\n\n\ndef _is_fmt_binary(header):\n    return header[:8] == b'bplist00'\n\n\n#\n# Generic bits\n#\n\n_FORMATS={\n    FMT_XML: dict(\n        detect=_is_fmt_xml,\n        parser=_PlistParser,\n        writer=_PlistWriter,\n    ),\n    FMT_BINARY: dict(\n        detect=_is_fmt_binary,\n        parser=_BinaryPlistParser,\n        writer=_BinaryPlistWriter,\n    )\n}\n\n\ndef load(fp, *, fmt=None, use_builtin_types=True, dict_type=dict):\n    \"\"\"Read a .plist file. 'fp' should be a readable and binary file object.\n    Return the unpacked root object (which usually is a dictionary).\n    \"\"\"\n    if fmt is None:\n        header = fp.read(32)\n        fp.seek(0)\n        for info in _FORMATS.values():\n            if info['detect'](header):\n                P = info['parser']\n                break\n\n        else:\n            raise InvalidFileException()\n\n    else:\n        P = _FORMATS[fmt]['parser']\n\n    p = P(use_builtin_types=use_builtin_types, dict_type=dict_type)\n    return p.parse(fp)\n\n\ndef loads(value, *, fmt=None, use_builtin_types=True, dict_type=dict):\n    \"\"\"Read a .plist file from a bytes object.\n    Return the unpacked root object (which usually is a dictionary).\n    \"\"\"\n    fp = BytesIO(value)\n    return load(\n        fp, fmt=fmt, use_builtin_types=use_builtin_types, dict_type=dict_type)\n\n\ndef dump(value, fp, *, fmt=FMT_XML, sort_keys=True, skipkeys=False):\n    \"\"\"Write 'value' to a .plist file. 'fp' should be a writable,\n    binary file object.\n    \"\"\"\n    if fmt not in _FORMATS:\n        raise ValueError(\"Unsupported format: %r\"%(fmt,))\n\n    writer = _FORMATS[fmt][\"writer\"](fp, sort_keys=sort_keys, skipkeys=skipkeys)\n    writer.write(value)\n\n\ndef dumps(value, *, fmt=FMT_XML, skipkeys=False, sort_keys=True):\n    \"\"\"Return a bytes object with the contents for a .plist file.\n    \"\"\"\n    fp = BytesIO()\n    dump(value, fp, fmt=fmt, skipkeys=skipkeys, sort_keys=sort_keys)\n    return fp.getvalue()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/poplib.py",
    "content": "\"\"\"A POP3 client class.\n\nBased on the J. Myers POP3 draft, Jan. 96\n\"\"\"\n\n# Author: David Ascher <david_ascher@brown.edu>\n#         [heavily stealing from nntplib.py]\n# Updated: Piers Lauder <piers@cs.su.oz.au> [Jul '97]\n# String method conversion and test jig improvements by ESR, February 2001.\n# Added the POP3_SSL class. Methods loosely based on IMAP_SSL. Hector Urtubia <urtubia@mrbook.org> Aug 2003\n\n# Example (see the test function at the end of this file)\n\n# Imports\n\nimport errno\nimport re\nimport socket\nimport sys\n\ntry:\n    import ssl\n    HAVE_SSL = True\nexcept ImportError:\n    HAVE_SSL = False\n\n__all__ = [\"POP3\",\"error_proto\"]\n\n# Exception raised when an error or invalid response is received:\n\nclass error_proto(Exception): pass\n\n# Standard Port\nPOP3_PORT = 110\n\n# POP SSL PORT\nPOP3_SSL_PORT = 995\n\n# Line terminators (we always output CRLF, but accept any of CRLF, LFCR, LF)\nCR = b'\\r'\nLF = b'\\n'\nCRLF = CR+LF\n\n# maximal line length when calling readline(). This is to prevent\n# reading arbitrary length lines. RFC 1939 limits POP3 line length to\n# 512 characters, including CRLF. We have selected 2048 just to be on\n# the safe side.\n_MAXLINE = 2048\n\n\nclass POP3:\n\n    \"\"\"This class supports both the minimal and optional command sets.\n    Arguments can be strings or integers (where appropriate)\n    (e.g.: retr(1) and retr('1') both work equally well.\n\n    Minimal Command Set:\n            USER name               user(name)\n            PASS string             pass_(string)\n            STAT                    stat()\n            LIST [msg]              list(msg = None)\n            RETR msg                retr(msg)\n            DELE msg                dele(msg)\n            NOOP                    noop()\n            RSET                    rset()\n            QUIT                    quit()\n\n    Optional Commands (some servers support these):\n            RPOP name               rpop(name)\n            APOP name digest        apop(name, digest)\n            TOP msg n               top(msg, n)\n            UIDL [msg]              uidl(msg = None)\n            CAPA                    capa()\n            STLS                    stls()\n            UTF8                    utf8()\n\n    Raises one exception: 'error_proto'.\n\n    Instantiate with:\n            POP3(hostname, port=110)\n\n    NB:     the POP protocol locks the mailbox from user\n            authorization until QUIT, so be sure to get in, suck\n            the messages, and quit, each time you access the\n            mailbox.\n\n            POP is a line-based protocol, which means large mail\n            messages consume lots of python cycles reading them\n            line-by-line.\n\n            If it's available on your mail server, use IMAP4\n            instead, it doesn't suffer from the two problems\n            above.\n    \"\"\"\n\n    encoding = 'UTF-8'\n\n    def __init__(self, host, port=POP3_PORT,\n                 timeout=socket._GLOBAL_DEFAULT_TIMEOUT):\n        self.host = host\n        self.port = port\n        self._tls_established = False\n        sys.audit(\"poplib.connect\", self, host, port)\n        self.sock = self._create_socket(timeout)\n        self.file = self.sock.makefile('rb')\n        self._debugging = 0\n        self.welcome = self._getresp()\n\n    def _create_socket(self, timeout):\n        return socket.create_connection((self.host, self.port), timeout)\n\n    def _putline(self, line):\n        if self._debugging > 1: print('*put*', repr(line))\n        sys.audit(\"poplib.putline\", self, line)\n        self.sock.sendall(line + CRLF)\n\n\n    # Internal: send one command to the server (through _putline())\n\n    def _putcmd(self, line):\n        if self._debugging: print('*cmd*', repr(line))\n        line = bytes(line, self.encoding)\n        self._putline(line)\n\n\n    # Internal: return one line from the server, stripping CRLF.\n    # This is where all the CPU time of this module is consumed.\n    # Raise error_proto('-ERR EOF') if the connection is closed.\n\n    def _getline(self):\n        line = self.file.readline(_MAXLINE + 1)\n        if len(line) > _MAXLINE:\n            raise error_proto('line too long')\n\n        if self._debugging > 1: print('*get*', repr(line))\n        if not line: raise error_proto('-ERR EOF')\n        octets = len(line)\n        # server can send any combination of CR & LF\n        # however, 'readline()' returns lines ending in LF\n        # so only possibilities are ...LF, ...CRLF, CR...LF\n        if line[-2:] == CRLF:\n            return line[:-2], octets\n        if line[:1] == CR:\n            return line[1:-1], octets\n        return line[:-1], octets\n\n\n    # Internal: get a response from the server.\n    # Raise 'error_proto' if the response doesn't start with '+'.\n\n    def _getresp(self):\n        resp, o = self._getline()\n        if self._debugging > 1: print('*resp*', repr(resp))\n        if not resp.startswith(b'+'):\n            raise error_proto(resp)\n        return resp\n\n\n    # Internal: get a response plus following text from the server.\n\n    def _getlongresp(self):\n        resp = self._getresp()\n        list = []; octets = 0\n        line, o = self._getline()\n        while line != b'.':\n            if line.startswith(b'..'):\n                o = o-1\n                line = line[1:]\n            octets = octets + o\n            list.append(line)\n            line, o = self._getline()\n        return resp, list, octets\n\n\n    # Internal: send a command and get the response\n\n    def _shortcmd(self, line):\n        self._putcmd(line)\n        return self._getresp()\n\n\n    # Internal: send a command and get the response plus following text\n\n    def _longcmd(self, line):\n        self._putcmd(line)\n        return self._getlongresp()\n\n\n    # These can be useful:\n\n    def getwelcome(self):\n        return self.welcome\n\n\n    def set_debuglevel(self, level):\n        self._debugging = level\n\n\n    # Here are all the POP commands:\n\n    def user(self, user):\n        \"\"\"Send user name, return response\n\n        (should indicate password required).\n        \"\"\"\n        return self._shortcmd('USER %s' % user)\n\n\n    def pass_(self, pswd):\n        \"\"\"Send password, return response\n\n        (response includes message count, mailbox size).\n\n        NB: mailbox is locked by server from here to 'quit()'\n        \"\"\"\n        return self._shortcmd('PASS %s' % pswd)\n\n\n    def stat(self):\n        \"\"\"Get mailbox status.\n\n        Result is tuple of 2 ints (message count, mailbox size)\n        \"\"\"\n        retval = self._shortcmd('STAT')\n        rets = retval.split()\n        if self._debugging: print('*stat*', repr(rets))\n        numMessages = int(rets[1])\n        sizeMessages = int(rets[2])\n        return (numMessages, sizeMessages)\n\n\n    def list(self, which=None):\n        \"\"\"Request listing, return result.\n\n        Result without a message number argument is in form\n        ['response', ['mesg_num octets', ...], octets].\n\n        Result when a message number argument is given is a\n        single response: the \"scan listing\" for that message.\n        \"\"\"\n        if which is not None:\n            return self._shortcmd('LIST %s' % which)\n        return self._longcmd('LIST')\n\n\n    def retr(self, which):\n        \"\"\"Retrieve whole message number 'which'.\n\n        Result is in form ['response', ['line', ...], octets].\n        \"\"\"\n        return self._longcmd('RETR %s' % which)\n\n\n    def dele(self, which):\n        \"\"\"Delete message number 'which'.\n\n        Result is 'response'.\n        \"\"\"\n        return self._shortcmd('DELE %s' % which)\n\n\n    def noop(self):\n        \"\"\"Does nothing.\n\n        One supposes the response indicates the server is alive.\n        \"\"\"\n        return self._shortcmd('NOOP')\n\n\n    def rset(self):\n        \"\"\"Unmark all messages marked for deletion.\"\"\"\n        return self._shortcmd('RSET')\n\n\n    def quit(self):\n        \"\"\"Signoff: commit changes on server, unlock mailbox, close connection.\"\"\"\n        resp = self._shortcmd('QUIT')\n        self.close()\n        return resp\n\n    def close(self):\n        \"\"\"Close the connection without assuming anything about it.\"\"\"\n        try:\n            file = self.file\n            self.file = None\n            if file is not None:\n                file.close()\n        finally:\n            sock = self.sock\n            self.sock = None\n            if sock is not None:\n                try:\n                    sock.shutdown(socket.SHUT_RDWR)\n                except OSError as exc:\n                    # The server might already have closed the connection.\n                    # On Windows, this may result in WSAEINVAL (error 10022):\n                    # An invalid operation was attempted.\n                    if (exc.errno != errno.ENOTCONN\n                       and getattr(exc, 'winerror', 0) != 10022):\n                        raise\n                finally:\n                    sock.close()\n\n    #__del__ = quit\n\n\n    # optional commands:\n\n    def rpop(self, user):\n        \"\"\"Not sure what this does.\"\"\"\n        return self._shortcmd('RPOP %s' % user)\n\n\n    timestamp = re.compile(br'\\+OK.[^<]*(<.*>)')\n\n    def apop(self, user, password):\n        \"\"\"Authorisation\n\n        - only possible if server has supplied a timestamp in initial greeting.\n\n        Args:\n                user     - mailbox user;\n                password - mailbox password.\n\n        NB: mailbox is locked by server from here to 'quit()'\n        \"\"\"\n        secret = bytes(password, self.encoding)\n        m = self.timestamp.match(self.welcome)\n        if not m:\n            raise error_proto('-ERR APOP not supported by server')\n        import hashlib\n        digest = m.group(1)+secret\n        digest = hashlib.md5(digest).hexdigest()\n        return self._shortcmd('APOP %s %s' % (user, digest))\n\n\n    def top(self, which, howmuch):\n        \"\"\"Retrieve message header of message number 'which'\n        and first 'howmuch' lines of message body.\n\n        Result is in form ['response', ['line', ...], octets].\n        \"\"\"\n        return self._longcmd('TOP %s %s' % (which, howmuch))\n\n\n    def uidl(self, which=None):\n        \"\"\"Return message digest (unique id) list.\n\n        If 'which', result contains unique id for that message\n        in the form 'response mesgnum uid', otherwise result is\n        the list ['response', ['mesgnum uid', ...], octets]\n        \"\"\"\n        if which is not None:\n            return self._shortcmd('UIDL %s' % which)\n        return self._longcmd('UIDL')\n\n\n    def utf8(self):\n        \"\"\"Try to enter UTF-8 mode (see RFC 6856). Returns server response.\n        \"\"\"\n        return self._shortcmd('UTF8')\n\n\n    def capa(self):\n        \"\"\"Return server capabilities (RFC 2449) as a dictionary\n        >>> c=poplib.POP3('localhost')\n        >>> c.capa()\n        {'IMPLEMENTATION': ['Cyrus', 'POP3', 'server', 'v2.2.12'],\n         'TOP': [], 'LOGIN-DELAY': ['0'], 'AUTH-RESP-CODE': [],\n         'EXPIRE': ['NEVER'], 'USER': [], 'STLS': [], 'PIPELINING': [],\n         'UIDL': [], 'RESP-CODES': []}\n        >>>\n\n        Really, according to RFC 2449, the cyrus folks should avoid\n        having the implementation split into multiple arguments...\n        \"\"\"\n        def _parsecap(line):\n            lst = line.decode('ascii').split()\n            return lst[0], lst[1:]\n\n        caps = {}\n        try:\n            resp = self._longcmd('CAPA')\n            rawcaps = resp[1]\n            for capline in rawcaps:\n                capnm, capargs = _parsecap(capline)\n                caps[capnm] = capargs\n        except error_proto as _err:\n            raise error_proto('-ERR CAPA not supported by server')\n        return caps\n\n\n    def stls(self, context=None):\n        \"\"\"Start a TLS session on the active connection as specified in RFC 2595.\n\n                context - a ssl.SSLContext\n        \"\"\"\n        if not HAVE_SSL:\n            raise error_proto('-ERR TLS support missing')\n        if self._tls_established:\n            raise error_proto('-ERR TLS session already established')\n        caps = self.capa()\n        if not 'STLS' in caps:\n            raise error_proto('-ERR STLS not supported by server')\n        if context is None:\n            context = ssl._create_stdlib_context()\n        resp = self._shortcmd('STLS')\n        self.sock = context.wrap_socket(self.sock,\n                                        server_hostname=self.host)\n        self.file = self.sock.makefile('rb')\n        self._tls_established = True\n        return resp\n\n\nif HAVE_SSL:\n\n    class POP3_SSL(POP3):\n        \"\"\"POP3 client class over SSL connection\n\n        Instantiate with: POP3_SSL(hostname, port=995, keyfile=None, certfile=None,\n                                   context=None)\n\n               hostname - the hostname of the pop3 over ssl server\n               port - port number\n               keyfile - PEM formatted file that contains your private key\n               certfile - PEM formatted certificate chain file\n               context - a ssl.SSLContext\n\n        See the methods of the parent class POP3 for more documentation.\n        \"\"\"\n\n        def __init__(self, host, port=POP3_SSL_PORT, keyfile=None, certfile=None,\n                     timeout=socket._GLOBAL_DEFAULT_TIMEOUT, context=None):\n            if context is not None and keyfile is not None:\n                raise ValueError(\"context and keyfile arguments are mutually \"\n                                 \"exclusive\")\n            if context is not None and certfile is not None:\n                raise ValueError(\"context and certfile arguments are mutually \"\n                                 \"exclusive\")\n            if keyfile is not None or certfile is not None:\n                import warnings\n                warnings.warn(\"keyfile and certfile are deprecated, use a \"\n                              \"custom context instead\", DeprecationWarning, 2)\n            self.keyfile = keyfile\n            self.certfile = certfile\n            if context is None:\n                context = ssl._create_stdlib_context(certfile=certfile,\n                                                     keyfile=keyfile)\n            self.context = context\n            POP3.__init__(self, host, port, timeout)\n\n        def _create_socket(self, timeout):\n            sock = POP3._create_socket(self, timeout)\n            sock = self.context.wrap_socket(sock,\n                                            server_hostname=self.host)\n            return sock\n\n        def stls(self, keyfile=None, certfile=None, context=None):\n            \"\"\"The method unconditionally raises an exception since the\n            STLS command doesn't make any sense on an already established\n            SSL/TLS session.\n            \"\"\"\n            raise error_proto('-ERR TLS session already established')\n\n    __all__.append(\"POP3_SSL\")\n\nif __name__ == \"__main__\":\n    import sys\n    a = POP3(sys.argv[1])\n    print(a.getwelcome())\n    a.user(sys.argv[2])\n    a.pass_(sys.argv[3])\n    a.list()\n    (numMsgs, totalSize) = a.stat()\n    for i in range(1, numMsgs + 1):\n        (header, msg, octets) = a.retr(i)\n        print(\"Message %d:\" % i)\n        for line in msg:\n            print('   ' + line)\n        print('-----------------------')\n    a.quit()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/posixpath.py",
    "content": "\"\"\"Common operations on Posix pathnames.\n\nInstead of importing this module directly, import os and refer to\nthis module as os.path.  The \"os.path\" name is an alias for this\nmodule on Posix systems; on other systems (e.g. Windows),\nos.path provides the same operations in a manner specific to that\nplatform, and is an alias to another module (e.g. ntpath).\n\nSome of this can actually be useful on non-Posix systems too, e.g.\nfor manipulation of the pathname component of URLs.\n\"\"\"\n\n# Strings representing various path-related bits and pieces.\n# These are primarily for export; internally, they are hardcoded.\n# Should be set before imports for resolving cyclic dependency.\ncurdir = '.'\npardir = '..'\nextsep = '.'\nsep = '/'\npathsep = ':'\ndefpath = '/bin:/usr/bin'\naltsep = None\ndevnull = '/dev/null'\n\nimport os\nimport sys\nimport stat\nimport genericpath\nfrom genericpath import *\n\n__all__ = [\"normcase\",\"isabs\",\"join\",\"splitdrive\",\"split\",\"splitext\",\n           \"basename\",\"dirname\",\"commonprefix\",\"getsize\",\"getmtime\",\n           \"getatime\",\"getctime\",\"islink\",\"exists\",\"lexists\",\"isdir\",\"isfile\",\n           \"ismount\", \"expanduser\",\"expandvars\",\"normpath\",\"abspath\",\n           \"samefile\",\"sameopenfile\",\"samestat\",\n           \"curdir\",\"pardir\",\"sep\",\"pathsep\",\"defpath\",\"altsep\",\"extsep\",\n           \"devnull\",\"realpath\",\"supports_unicode_filenames\",\"relpath\",\n           \"commonpath\"]\n\n\ndef _get_sep(path):\n    if isinstance(path, bytes):\n        return b'/'\n    else:\n        return '/'\n\n# Normalize the case of a pathname.  Trivial in Posix, string.lower on Mac.\n# On MS-DOS this may also turn slashes into backslashes; however, other\n# normalizations (such as optimizing '../' away) are not allowed\n# (another function should be defined to do that).\n\ndef normcase(s):\n    \"\"\"Normalize case of pathname.  Has no effect under Posix\"\"\"\n    return os.fspath(s)\n\n\n# Return whether a path is absolute.\n# Trivial in Posix, harder on the Mac or MS-DOS.\n\ndef isabs(s):\n    \"\"\"Test whether a path is absolute\"\"\"\n    s = os.fspath(s)\n    sep = _get_sep(s)\n    return s.startswith(sep)\n\n\n# Join pathnames.\n# Ignore the previous parts if a part is absolute.\n# Insert a '/' unless the first part is empty or already ends in '/'.\n\ndef join(a, *p):\n    \"\"\"Join two or more pathname components, inserting '/' as needed.\n    If any component is an absolute path, all previous path components\n    will be discarded.  An empty last part will result in a path that\n    ends with a separator.\"\"\"\n    a = os.fspath(a)\n    sep = _get_sep(a)\n    path = a\n    try:\n        if not p:\n            path[:0] + sep  #23780: Ensure compatible data type even if p is null.\n        for b in map(os.fspath, p):\n            if b.startswith(sep):\n                path = b\n            elif not path or path.endswith(sep):\n                path += b\n            else:\n                path += sep + b\n    except (TypeError, AttributeError, BytesWarning):\n        genericpath._check_arg_types('join', a, *p)\n        raise\n    return path\n\n\n# Split a path in head (everything up to the last '/') and tail (the\n# rest).  If the path ends in '/', tail will be empty.  If there is no\n# '/' in the path, head  will be empty.\n# Trailing '/'es are stripped from head unless it is the root.\n\ndef split(p):\n    \"\"\"Split a pathname.  Returns tuple \"(head, tail)\" where \"tail\" is\n    everything after the final slash.  Either part may be empty.\"\"\"\n    p = os.fspath(p)\n    sep = _get_sep(p)\n    i = p.rfind(sep) + 1\n    head, tail = p[:i], p[i:]\n    if head and head != sep*len(head):\n        head = head.rstrip(sep)\n    return head, tail\n\n\n# Split a path in root and extension.\n# The extension is everything starting at the last dot in the last\n# pathname component; the root is everything before that.\n# It is always true that root + ext == p.\n\ndef splitext(p):\n    p = os.fspath(p)\n    if isinstance(p, bytes):\n        sep = b'/'\n        extsep = b'.'\n    else:\n        sep = '/'\n        extsep = '.'\n    return genericpath._splitext(p, sep, None, extsep)\nsplitext.__doc__ = genericpath._splitext.__doc__\n\n# Split a pathname into a drive specification and the rest of the\n# path.  Useful on DOS/Windows/NT; on Unix, the drive is always empty.\n\ndef splitdrive(p):\n    \"\"\"Split a pathname into drive and path. On Posix, drive is always\n    empty.\"\"\"\n    p = os.fspath(p)\n    return p[:0], p\n\n\n# Return the tail (basename) part of a path, same as split(path)[1].\n\ndef basename(p):\n    \"\"\"Returns the final component of a pathname\"\"\"\n    p = os.fspath(p)\n    sep = _get_sep(p)\n    i = p.rfind(sep) + 1\n    return p[i:]\n\n\n# Return the head (dirname) part of a path, same as split(path)[0].\n\ndef dirname(p):\n    \"\"\"Returns the directory component of a pathname\"\"\"\n    p = os.fspath(p)\n    sep = _get_sep(p)\n    i = p.rfind(sep) + 1\n    head = p[:i]\n    if head and head != sep*len(head):\n        head = head.rstrip(sep)\n    return head\n\n\n# Is a path a symbolic link?\n# This will always return false on systems where os.lstat doesn't exist.\n\ndef islink(path):\n    \"\"\"Test whether a path is a symbolic link\"\"\"\n    try:\n        st = os.lstat(path)\n    except (OSError, ValueError, AttributeError):\n        return False\n    return stat.S_ISLNK(st.st_mode)\n\n# Being true for dangling symbolic links is also useful.\n\ndef lexists(path):\n    \"\"\"Test whether a path exists.  Returns True for broken symbolic links\"\"\"\n    try:\n        os.lstat(path)\n    except (OSError, ValueError):\n        return False\n    return True\n\n\n# Is a path a mount point?\n# (Does this work for all UNIXes?  Is it even guaranteed to work by Posix?)\n\ndef ismount(path):\n    \"\"\"Test whether a path is a mount point\"\"\"\n    try:\n        s1 = os.lstat(path)\n    except (OSError, ValueError):\n        # It doesn't exist -- so not a mount point. :-)\n        return False\n    else:\n        # A symlink can never be a mount point\n        if stat.S_ISLNK(s1.st_mode):\n            return False\n\n    if isinstance(path, bytes):\n        parent = join(path, b'..')\n    else:\n        parent = join(path, '..')\n    parent = realpath(parent)\n    try:\n        s2 = os.lstat(parent)\n    except (OSError, ValueError):\n        return False\n\n    dev1 = s1.st_dev\n    dev2 = s2.st_dev\n    if dev1 != dev2:\n        return True     # path/.. on a different device as path\n    ino1 = s1.st_ino\n    ino2 = s2.st_ino\n    if ino1 == ino2:\n        return True     # path/.. is the same i-node as path\n    return False\n\n\n# Expand paths beginning with '~' or '~user'.\n# '~' means $HOME; '~user' means that user's home directory.\n# If the path doesn't begin with '~', or if the user or $HOME is unknown,\n# the path is returned unchanged (leaving error reporting to whatever\n# function is called with the expanded path as argument).\n# See also module 'glob' for expansion of *, ? and [...] in pathnames.\n# (A function should also be defined to do full *sh-style environment\n# variable expansion.)\n\ndef expanduser(path):\n    \"\"\"Expand ~ and ~user constructions.  If user or $HOME is unknown,\n    do nothing.\"\"\"\n    path = os.fspath(path)\n    if isinstance(path, bytes):\n        tilde = b'~'\n    else:\n        tilde = '~'\n    if not path.startswith(tilde):\n        return path\n    sep = _get_sep(path)\n    i = path.find(sep, 1)\n    if i < 0:\n        i = len(path)\n    if i == 1:\n        if 'HOME' not in os.environ:\n            import pwd\n            try:\n                userhome = pwd.getpwuid(os.getuid()).pw_dir\n            except KeyError:\n                # bpo-10496: if the current user identifier doesn't exist in the\n                # password database, return the path unchanged\n                return path\n        else:\n            userhome = os.environ['HOME']\n    else:\n        import pwd\n        name = path[1:i]\n        if isinstance(name, bytes):\n            name = str(name, 'ASCII')\n        try:\n            pwent = pwd.getpwnam(name)\n        except KeyError:\n            # bpo-10496: if the user name from the path doesn't exist in the\n            # password database, return the path unchanged\n            return path\n        userhome = pwent.pw_dir\n    if isinstance(path, bytes):\n        userhome = os.fsencode(userhome)\n        root = b'/'\n    else:\n        root = '/'\n    userhome = userhome.rstrip(root)\n    return (userhome + path[i:]) or root\n\n\n# Expand paths containing shell variable substitutions.\n# This expands the forms $variable and ${variable} only.\n# Non-existent variables are left unchanged.\n\n_varprog = None\n_varprogb = None\n\ndef expandvars(path):\n    \"\"\"Expand shell variables of form $var and ${var}.  Unknown variables\n    are left unchanged.\"\"\"\n    path = os.fspath(path)\n    global _varprog, _varprogb\n    if isinstance(path, bytes):\n        if b'$' not in path:\n            return path\n        if not _varprogb:\n            import re\n            _varprogb = re.compile(br'\\$(\\w+|\\{[^}]*\\})', re.ASCII)\n        search = _varprogb.search\n        start = b'{'\n        end = b'}'\n        environ = getattr(os, 'environb', None)\n    else:\n        if '$' not in path:\n            return path\n        if not _varprog:\n            import re\n            _varprog = re.compile(r'\\$(\\w+|\\{[^}]*\\})', re.ASCII)\n        search = _varprog.search\n        start = '{'\n        end = '}'\n        environ = os.environ\n    i = 0\n    while True:\n        m = search(path, i)\n        if not m:\n            break\n        i, j = m.span(0)\n        name = m.group(1)\n        if name.startswith(start) and name.endswith(end):\n            name = name[1:-1]\n        try:\n            if environ is None:\n                value = os.fsencode(os.environ[os.fsdecode(name)])\n            else:\n                value = environ[name]\n        except KeyError:\n            i = j\n        else:\n            tail = path[j:]\n            path = path[:i] + value\n            i = len(path)\n            path += tail\n    return path\n\n\n# Normalize a path, e.g. A//B, A/./B and A/foo/../B all become A/B.\n# It should be understood that this may change the meaning of the path\n# if it contains symbolic links!\n\ndef normpath(path):\n    \"\"\"Normalize path, eliminating double slashes, etc.\"\"\"\n    path = os.fspath(path)\n    if isinstance(path, bytes):\n        sep = b'/'\n        empty = b''\n        dot = b'.'\n        dotdot = b'..'\n    else:\n        sep = '/'\n        empty = ''\n        dot = '.'\n        dotdot = '..'\n    if path == empty:\n        return dot\n    initial_slashes = path.startswith(sep)\n    # POSIX allows one or two initial slashes, but treats three or more\n    # as single slash.\n    if (initial_slashes and\n        path.startswith(sep*2) and not path.startswith(sep*3)):\n        initial_slashes = 2\n    comps = path.split(sep)\n    new_comps = []\n    for comp in comps:\n        if comp in (empty, dot):\n            continue\n        if (comp != dotdot or (not initial_slashes and not new_comps) or\n             (new_comps and new_comps[-1] == dotdot)):\n            new_comps.append(comp)\n        elif new_comps:\n            new_comps.pop()\n    comps = new_comps\n    path = sep.join(comps)\n    if initial_slashes:\n        path = sep*initial_slashes + path\n    return path or dot\n\n\ndef abspath(path):\n    \"\"\"Return an absolute path.\"\"\"\n    path = os.fspath(path)\n    if not isabs(path):\n        if isinstance(path, bytes):\n            cwd = os.getcwdb()\n        else:\n            cwd = os.getcwd()\n        path = join(cwd, path)\n    return normpath(path)\n\n\n# Return a canonical path (i.e. the absolute location of a file on the\n# filesystem).\n\ndef realpath(filename):\n    \"\"\"Return the canonical path of the specified filename, eliminating any\nsymbolic links encountered in the path.\"\"\"\n    filename = os.fspath(filename)\n    path, ok = _joinrealpath(filename[:0], filename, {})\n    return abspath(path)\n\n# Join two paths, normalizing and eliminating any symbolic links\n# encountered in the second path.\ndef _joinrealpath(path, rest, seen):\n    if isinstance(path, bytes):\n        sep = b'/'\n        curdir = b'.'\n        pardir = b'..'\n    else:\n        sep = '/'\n        curdir = '.'\n        pardir = '..'\n\n    if isabs(rest):\n        rest = rest[1:]\n        path = sep\n\n    while rest:\n        name, _, rest = rest.partition(sep)\n        if not name or name == curdir:\n            # current dir\n            continue\n        if name == pardir:\n            # parent dir\n            if path:\n                path, name = split(path)\n                if name == pardir:\n                    path = join(path, pardir, pardir)\n            else:\n                path = pardir\n            continue\n        newpath = join(path, name)\n        if not islink(newpath):\n            path = newpath\n            continue\n        # Resolve the symbolic link\n        if newpath in seen:\n            # Already seen this path\n            path = seen[newpath]\n            if path is not None:\n                # use cached value\n                continue\n            # The symlink is not resolved, so we must have a symlink loop.\n            # Return already resolved part + rest of the path unchanged.\n            return join(newpath, rest), False\n        seen[newpath] = None # not resolved symlink\n        path, ok = _joinrealpath(path, os.readlink(newpath), seen)\n        if not ok:\n            return join(path, rest), False\n        seen[newpath] = path # resolved symlink\n\n    return path, True\n\n\nsupports_unicode_filenames = (sys.platform == 'darwin')\n\ndef relpath(path, start=None):\n    \"\"\"Return a relative version of a path\"\"\"\n\n    if not path:\n        raise ValueError(\"no path specified\")\n\n    path = os.fspath(path)\n    if isinstance(path, bytes):\n        curdir = b'.'\n        sep = b'/'\n        pardir = b'..'\n    else:\n        curdir = '.'\n        sep = '/'\n        pardir = '..'\n\n    if start is None:\n        start = curdir\n    else:\n        start = os.fspath(start)\n\n    try:\n        start_list = [x for x in abspath(start).split(sep) if x]\n        path_list = [x for x in abspath(path).split(sep) if x]\n        # Work out how much of the filepath is shared by start and path.\n        i = len(commonprefix([start_list, path_list]))\n\n        rel_list = [pardir] * (len(start_list)-i) + path_list[i:]\n        if not rel_list:\n            return curdir\n        return join(*rel_list)\n    except (TypeError, AttributeError, BytesWarning, DeprecationWarning):\n        genericpath._check_arg_types('relpath', path, start)\n        raise\n\n\n# Return the longest common sub-path of the sequence of paths given as input.\n# The paths are not normalized before comparing them (this is the\n# responsibility of the caller). Any trailing separator is stripped from the\n# returned path.\n\ndef commonpath(paths):\n    \"\"\"Given a sequence of path names, returns the longest common sub-path.\"\"\"\n\n    if not paths:\n        raise ValueError('commonpath() arg is an empty sequence')\n\n    paths = tuple(map(os.fspath, paths))\n    if isinstance(paths[0], bytes):\n        sep = b'/'\n        curdir = b'.'\n    else:\n        sep = '/'\n        curdir = '.'\n\n    try:\n        split_paths = [path.split(sep) for path in paths]\n\n        try:\n            isabs, = set(p[:1] == sep for p in paths)\n        except ValueError:\n            raise ValueError(\"Can't mix absolute and relative paths\") from None\n\n        split_paths = [[c for c in s if c and c != curdir] for s in split_paths]\n        s1 = min(split_paths)\n        s2 = max(split_paths)\n        common = s1\n        for i, c in enumerate(s1):\n            if c != s2[i]:\n                common = s1[:i]\n                break\n\n        prefix = sep if isabs else sep[:0]\n        return prefix + sep.join(common)\n    except (TypeError, AttributeError):\n        genericpath._check_arg_types('commonpath', *paths)\n        raise\n"
  },
  {
    "path": "rd/usr/lib/python3.8/pprint.py",
    "content": "#  Author:      Fred L. Drake, Jr.\n#               fdrake@acm.org\n#\n#  This is a simple little module I wrote to make life easier.  I didn't\n#  see anything quite like it in the library, though I may have overlooked\n#  something.  I wrote this when I was trying to read some heavily nested\n#  tuples with fairly non-descriptive content.  This is modeled very much\n#  after Lisp/Scheme - style pretty-printing of lists.  If you find it\n#  useful, thank small children who sleep at night.\n\n\"\"\"Support to pretty-print lists, tuples, & dictionaries recursively.\n\nVery simple, but useful, especially in debugging data structures.\n\nClasses\n-------\n\nPrettyPrinter()\n    Handle pretty-printing operations onto a stream using a configured\n    set of formatting parameters.\n\nFunctions\n---------\n\npformat()\n    Format a Python object into a pretty-printed representation.\n\npprint()\n    Pretty-print a Python object to a stream [default is sys.stdout].\n\nsaferepr()\n    Generate a 'standard' repr()-like value, but protect against recursive\n    data structures.\n\n\"\"\"\n\nimport collections as _collections\nimport re\nimport sys as _sys\nimport types as _types\nfrom io import StringIO as _StringIO\n\n__all__ = [\"pprint\",\"pformat\",\"isreadable\",\"isrecursive\",\"saferepr\",\n           \"PrettyPrinter\", \"pp\"]\n\n\ndef pprint(object, stream=None, indent=1, width=80, depth=None, *,\n           compact=False, sort_dicts=True):\n    \"\"\"Pretty-print a Python object to a stream [default is sys.stdout].\"\"\"\n    printer = PrettyPrinter(\n        stream=stream, indent=indent, width=width, depth=depth,\n        compact=compact, sort_dicts=sort_dicts)\n    printer.pprint(object)\n\ndef pformat(object, indent=1, width=80, depth=None, *,\n            compact=False, sort_dicts=True):\n    \"\"\"Format a Python object into a pretty-printed representation.\"\"\"\n    return PrettyPrinter(indent=indent, width=width, depth=depth,\n                         compact=compact, sort_dicts=sort_dicts).pformat(object)\n\ndef pp(object, *args, sort_dicts=False, **kwargs):\n    \"\"\"Pretty-print a Python object\"\"\"\n    pprint(object, *args, sort_dicts=sort_dicts, **kwargs)\n\ndef saferepr(object):\n    \"\"\"Version of repr() which can handle recursive data structures.\"\"\"\n    return _safe_repr(object, {}, None, 0, True)[0]\n\ndef isreadable(object):\n    \"\"\"Determine if saferepr(object) is readable by eval().\"\"\"\n    return _safe_repr(object, {}, None, 0, True)[1]\n\ndef isrecursive(object):\n    \"\"\"Determine if object requires a recursive representation.\"\"\"\n    return _safe_repr(object, {}, None, 0, True)[2]\n\nclass _safe_key:\n    \"\"\"Helper function for key functions when sorting unorderable objects.\n\n    The wrapped-object will fallback to a Py2.x style comparison for\n    unorderable types (sorting first comparing the type name and then by\n    the obj ids).  Does not work recursively, so dict.items() must have\n    _safe_key applied to both the key and the value.\n\n    \"\"\"\n\n    __slots__ = ['obj']\n\n    def __init__(self, obj):\n        self.obj = obj\n\n    def __lt__(self, other):\n        try:\n            return self.obj < other.obj\n        except TypeError:\n            return ((str(type(self.obj)), id(self.obj)) < \\\n                    (str(type(other.obj)), id(other.obj)))\n\ndef _safe_tuple(t):\n    \"Helper function for comparing 2-tuples\"\n    return _safe_key(t[0]), _safe_key(t[1])\n\nclass PrettyPrinter:\n    def __init__(self, indent=1, width=80, depth=None, stream=None, *,\n                 compact=False, sort_dicts=True):\n        \"\"\"Handle pretty printing operations onto a stream using a set of\n        configured parameters.\n\n        indent\n            Number of spaces to indent for each level of nesting.\n\n        width\n            Attempted maximum number of columns in the output.\n\n        depth\n            The maximum depth to print out nested structures.\n\n        stream\n            The desired output stream.  If omitted (or false), the standard\n            output stream available at construction will be used.\n\n        compact\n            If true, several items will be combined in one line.\n\n        sort_dicts\n            If true, dict keys are sorted.\n\n        \"\"\"\n        indent = int(indent)\n        width = int(width)\n        if indent < 0:\n            raise ValueError('indent must be >= 0')\n        if depth is not None and depth <= 0:\n            raise ValueError('depth must be > 0')\n        if not width:\n            raise ValueError('width must be != 0')\n        self._depth = depth\n        self._indent_per_level = indent\n        self._width = width\n        if stream is not None:\n            self._stream = stream\n        else:\n            self._stream = _sys.stdout\n        self._compact = bool(compact)\n        self._sort_dicts = sort_dicts\n\n    def pprint(self, object):\n        self._format(object, self._stream, 0, 0, {}, 0)\n        self._stream.write(\"\\n\")\n\n    def pformat(self, object):\n        sio = _StringIO()\n        self._format(object, sio, 0, 0, {}, 0)\n        return sio.getvalue()\n\n    def isrecursive(self, object):\n        return self.format(object, {}, 0, 0)[2]\n\n    def isreadable(self, object):\n        s, readable, recursive = self.format(object, {}, 0, 0)\n        return readable and not recursive\n\n    def _format(self, object, stream, indent, allowance, context, level):\n        objid = id(object)\n        if objid in context:\n            stream.write(_recursion(object))\n            self._recursive = True\n            self._readable = False\n            return\n        rep = self._repr(object, context, level)\n        max_width = self._width - indent - allowance\n        if len(rep) > max_width:\n            p = self._dispatch.get(type(object).__repr__, None)\n            if p is not None:\n                context[objid] = 1\n                p(self, object, stream, indent, allowance, context, level + 1)\n                del context[objid]\n                return\n            elif isinstance(object, dict):\n                context[objid] = 1\n                self._pprint_dict(object, stream, indent, allowance,\n                                  context, level + 1)\n                del context[objid]\n                return\n        stream.write(rep)\n\n    _dispatch = {}\n\n    def _pprint_dict(self, object, stream, indent, allowance, context, level):\n        write = stream.write\n        write('{')\n        if self._indent_per_level > 1:\n            write((self._indent_per_level - 1) * ' ')\n        length = len(object)\n        if length:\n            if self._sort_dicts:\n                items = sorted(object.items(), key=_safe_tuple)\n            else:\n                items = object.items()\n            self._format_dict_items(items, stream, indent, allowance + 1,\n                                    context, level)\n        write('}')\n\n    _dispatch[dict.__repr__] = _pprint_dict\n\n    def _pprint_ordered_dict(self, object, stream, indent, allowance, context, level):\n        if not len(object):\n            stream.write(repr(object))\n            return\n        cls = object.__class__\n        stream.write(cls.__name__ + '(')\n        self._format(list(object.items()), stream,\n                     indent + len(cls.__name__) + 1, allowance + 1,\n                     context, level)\n        stream.write(')')\n\n    _dispatch[_collections.OrderedDict.__repr__] = _pprint_ordered_dict\n\n    def _pprint_list(self, object, stream, indent, allowance, context, level):\n        stream.write('[')\n        self._format_items(object, stream, indent, allowance + 1,\n                           context, level)\n        stream.write(']')\n\n    _dispatch[list.__repr__] = _pprint_list\n\n    def _pprint_tuple(self, object, stream, indent, allowance, context, level):\n        stream.write('(')\n        endchar = ',)' if len(object) == 1 else ')'\n        self._format_items(object, stream, indent, allowance + len(endchar),\n                           context, level)\n        stream.write(endchar)\n\n    _dispatch[tuple.__repr__] = _pprint_tuple\n\n    def _pprint_set(self, object, stream, indent, allowance, context, level):\n        if not len(object):\n            stream.write(repr(object))\n            return\n        typ = object.__class__\n        if typ is set:\n            stream.write('{')\n            endchar = '}'\n        else:\n            stream.write(typ.__name__ + '({')\n            endchar = '})'\n            indent += len(typ.__name__) + 1\n        object = sorted(object, key=_safe_key)\n        self._format_items(object, stream, indent, allowance + len(endchar),\n                           context, level)\n        stream.write(endchar)\n\n    _dispatch[set.__repr__] = _pprint_set\n    _dispatch[frozenset.__repr__] = _pprint_set\n\n    def _pprint_str(self, object, stream, indent, allowance, context, level):\n        write = stream.write\n        if not len(object):\n            write(repr(object))\n            return\n        chunks = []\n        lines = object.splitlines(True)\n        if level == 1:\n            indent += 1\n            allowance += 1\n        max_width1 = max_width = self._width - indent\n        for i, line in enumerate(lines):\n            rep = repr(line)\n            if i == len(lines) - 1:\n                max_width1 -= allowance\n            if len(rep) <= max_width1:\n                chunks.append(rep)\n            else:\n                # A list of alternating (non-space, space) strings\n                parts = re.findall(r'\\S*\\s*', line)\n                assert parts\n                assert not parts[-1]\n                parts.pop()  # drop empty last part\n                max_width2 = max_width\n                current = ''\n                for j, part in enumerate(parts):\n                    candidate = current + part\n                    if j == len(parts) - 1 and i == len(lines) - 1:\n                        max_width2 -= allowance\n                    if len(repr(candidate)) > max_width2:\n                        if current:\n                            chunks.append(repr(current))\n                        current = part\n                    else:\n                        current = candidate\n                if current:\n                    chunks.append(repr(current))\n        if len(chunks) == 1:\n            write(rep)\n            return\n        if level == 1:\n            write('(')\n        for i, rep in enumerate(chunks):\n            if i > 0:\n                write('\\n' + ' '*indent)\n            write(rep)\n        if level == 1:\n            write(')')\n\n    _dispatch[str.__repr__] = _pprint_str\n\n    def _pprint_bytes(self, object, stream, indent, allowance, context, level):\n        write = stream.write\n        if len(object) <= 4:\n            write(repr(object))\n            return\n        parens = level == 1\n        if parens:\n            indent += 1\n            allowance += 1\n            write('(')\n        delim = ''\n        for rep in _wrap_bytes_repr(object, self._width - indent, allowance):\n            write(delim)\n            write(rep)\n            if not delim:\n                delim = '\\n' + ' '*indent\n        if parens:\n            write(')')\n\n    _dispatch[bytes.__repr__] = _pprint_bytes\n\n    def _pprint_bytearray(self, object, stream, indent, allowance, context, level):\n        write = stream.write\n        write('bytearray(')\n        self._pprint_bytes(bytes(object), stream, indent + 10,\n                           allowance + 1, context, level + 1)\n        write(')')\n\n    _dispatch[bytearray.__repr__] = _pprint_bytearray\n\n    def _pprint_mappingproxy(self, object, stream, indent, allowance, context, level):\n        stream.write('mappingproxy(')\n        self._format(object.copy(), stream, indent + 13, allowance + 1,\n                     context, level)\n        stream.write(')')\n\n    _dispatch[_types.MappingProxyType.__repr__] = _pprint_mappingproxy\n\n    def _format_dict_items(self, items, stream, indent, allowance, context,\n                           level):\n        write = stream.write\n        indent += self._indent_per_level\n        delimnl = ',\\n' + ' ' * indent\n        last_index = len(items) - 1\n        for i, (key, ent) in enumerate(items):\n            last = i == last_index\n            rep = self._repr(key, context, level)\n            write(rep)\n            write(': ')\n            self._format(ent, stream, indent + len(rep) + 2,\n                         allowance if last else 1,\n                         context, level)\n            if not last:\n                write(delimnl)\n\n    def _format_items(self, items, stream, indent, allowance, context, level):\n        write = stream.write\n        indent += self._indent_per_level\n        if self._indent_per_level > 1:\n            write((self._indent_per_level - 1) * ' ')\n        delimnl = ',\\n' + ' ' * indent\n        delim = ''\n        width = max_width = self._width - indent + 1\n        it = iter(items)\n        try:\n            next_ent = next(it)\n        except StopIteration:\n            return\n        last = False\n        while not last:\n            ent = next_ent\n            try:\n                next_ent = next(it)\n            except StopIteration:\n                last = True\n                max_width -= allowance\n                width -= allowance\n            if self._compact:\n                rep = self._repr(ent, context, level)\n                w = len(rep) + 2\n                if width < w:\n                    width = max_width\n                    if delim:\n                        delim = delimnl\n                if width >= w:\n                    width -= w\n                    write(delim)\n                    delim = ', '\n                    write(rep)\n                    continue\n            write(delim)\n            delim = delimnl\n            self._format(ent, stream, indent,\n                         allowance if last else 1,\n                         context, level)\n\n    def _repr(self, object, context, level):\n        repr, readable, recursive = self.format(object, context.copy(),\n                                                self._depth, level)\n        if not readable:\n            self._readable = False\n        if recursive:\n            self._recursive = True\n        return repr\n\n    def format(self, object, context, maxlevels, level):\n        \"\"\"Format object for a specific context, returning a string\n        and flags indicating whether the representation is 'readable'\n        and whether the object represents a recursive construct.\n        \"\"\"\n        return _safe_repr(object, context, maxlevels, level, self._sort_dicts)\n\n    def _pprint_default_dict(self, object, stream, indent, allowance, context, level):\n        if not len(object):\n            stream.write(repr(object))\n            return\n        rdf = self._repr(object.default_factory, context, level)\n        cls = object.__class__\n        indent += len(cls.__name__) + 1\n        stream.write('%s(%s,\\n%s' % (cls.__name__, rdf, ' ' * indent))\n        self._pprint_dict(object, stream, indent, allowance + 1, context, level)\n        stream.write(')')\n\n    _dispatch[_collections.defaultdict.__repr__] = _pprint_default_dict\n\n    def _pprint_counter(self, object, stream, indent, allowance, context, level):\n        if not len(object):\n            stream.write(repr(object))\n            return\n        cls = object.__class__\n        stream.write(cls.__name__ + '({')\n        if self._indent_per_level > 1:\n            stream.write((self._indent_per_level - 1) * ' ')\n        items = object.most_common()\n        self._format_dict_items(items, stream,\n                                indent + len(cls.__name__) + 1, allowance + 2,\n                                context, level)\n        stream.write('})')\n\n    _dispatch[_collections.Counter.__repr__] = _pprint_counter\n\n    def _pprint_chain_map(self, object, stream, indent, allowance, context, level):\n        if not len(object.maps):\n            stream.write(repr(object))\n            return\n        cls = object.__class__\n        stream.write(cls.__name__ + '(')\n        indent += len(cls.__name__) + 1\n        for i, m in enumerate(object.maps):\n            if i == len(object.maps) - 1:\n                self._format(m, stream, indent, allowance + 1, context, level)\n                stream.write(')')\n            else:\n                self._format(m, stream, indent, 1, context, level)\n                stream.write(',\\n' + ' ' * indent)\n\n    _dispatch[_collections.ChainMap.__repr__] = _pprint_chain_map\n\n    def _pprint_deque(self, object, stream, indent, allowance, context, level):\n        if not len(object):\n            stream.write(repr(object))\n            return\n        cls = object.__class__\n        stream.write(cls.__name__ + '(')\n        indent += len(cls.__name__) + 1\n        stream.write('[')\n        if object.maxlen is None:\n            self._format_items(object, stream, indent, allowance + 2,\n                               context, level)\n            stream.write('])')\n        else:\n            self._format_items(object, stream, indent, 2,\n                               context, level)\n            rml = self._repr(object.maxlen, context, level)\n            stream.write('],\\n%smaxlen=%s)' % (' ' * indent, rml))\n\n    _dispatch[_collections.deque.__repr__] = _pprint_deque\n\n    def _pprint_user_dict(self, object, stream, indent, allowance, context, level):\n        self._format(object.data, stream, indent, allowance, context, level - 1)\n\n    _dispatch[_collections.UserDict.__repr__] = _pprint_user_dict\n\n    def _pprint_user_list(self, object, stream, indent, allowance, context, level):\n        self._format(object.data, stream, indent, allowance, context, level - 1)\n\n    _dispatch[_collections.UserList.__repr__] = _pprint_user_list\n\n    def _pprint_user_string(self, object, stream, indent, allowance, context, level):\n        self._format(object.data, stream, indent, allowance, context, level - 1)\n\n    _dispatch[_collections.UserString.__repr__] = _pprint_user_string\n\n# Return triple (repr_string, isreadable, isrecursive).\n\ndef _safe_repr(object, context, maxlevels, level, sort_dicts):\n    typ = type(object)\n    if typ in _builtin_scalars:\n        return repr(object), True, False\n\n    r = getattr(typ, \"__repr__\", None)\n    if issubclass(typ, dict) and r is dict.__repr__:\n        if not object:\n            return \"{}\", True, False\n        objid = id(object)\n        if maxlevels and level >= maxlevels:\n            return \"{...}\", False, objid in context\n        if objid in context:\n            return _recursion(object), False, True\n        context[objid] = 1\n        readable = True\n        recursive = False\n        components = []\n        append = components.append\n        level += 1\n        if sort_dicts:\n            items = sorted(object.items(), key=_safe_tuple)\n        else:\n            items = object.items()\n        for k, v in items:\n            krepr, kreadable, krecur = _safe_repr(k, context, maxlevels, level, sort_dicts)\n            vrepr, vreadable, vrecur = _safe_repr(v, context, maxlevels, level, sort_dicts)\n            append(\"%s: %s\" % (krepr, vrepr))\n            readable = readable and kreadable and vreadable\n            if krecur or vrecur:\n                recursive = True\n        del context[objid]\n        return \"{%s}\" % \", \".join(components), readable, recursive\n\n    if (issubclass(typ, list) and r is list.__repr__) or \\\n       (issubclass(typ, tuple) and r is tuple.__repr__):\n        if issubclass(typ, list):\n            if not object:\n                return \"[]\", True, False\n            format = \"[%s]\"\n        elif len(object) == 1:\n            format = \"(%s,)\"\n        else:\n            if not object:\n                return \"()\", True, False\n            format = \"(%s)\"\n        objid = id(object)\n        if maxlevels and level >= maxlevels:\n            return format % \"...\", False, objid in context\n        if objid in context:\n            return _recursion(object), False, True\n        context[objid] = 1\n        readable = True\n        recursive = False\n        components = []\n        append = components.append\n        level += 1\n        for o in object:\n            orepr, oreadable, orecur = _safe_repr(o, context, maxlevels, level, sort_dicts)\n            append(orepr)\n            if not oreadable:\n                readable = False\n            if orecur:\n                recursive = True\n        del context[objid]\n        return format % \", \".join(components), readable, recursive\n\n    rep = repr(object)\n    return rep, (rep and not rep.startswith('<')), False\n\n_builtin_scalars = frozenset({str, bytes, bytearray, int, float, complex,\n                              bool, type(None)})\n\ndef _recursion(object):\n    return (\"<Recursion on %s with id=%s>\"\n            % (type(object).__name__, id(object)))\n\n\ndef _perfcheck(object=None):\n    import time\n    if object is None:\n        object = [(\"string\", (1, 2), [3, 4], {5: 6, 7: 8})] * 100000\n    p = PrettyPrinter()\n    t1 = time.perf_counter()\n    _safe_repr(object, {}, None, 0, True)\n    t2 = time.perf_counter()\n    p.pformat(object)\n    t3 = time.perf_counter()\n    print(\"_safe_repr:\", t2 - t1)\n    print(\"pformat:\", t3 - t2)\n\ndef _wrap_bytes_repr(object, width, allowance):\n    current = b''\n    last = len(object) // 4 * 4\n    for i in range(0, len(object), 4):\n        part = object[i: i+4]\n        candidate = current + part\n        if i == last:\n            width -= allowance\n        if len(repr(candidate)) > width:\n            if current:\n                yield repr(current)\n            current = part\n        else:\n            current = candidate\n    if current:\n        yield repr(current)\n\nif __name__ == \"__main__\":\n    _perfcheck()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/profile.py",
    "content": "#! /usr/bin/env python3\n#\n# Class for profiling python code. rev 1.0  6/2/94\n#\n# Written by James Roskind\n# Based on prior profile module by Sjoerd Mullender...\n#   which was hacked somewhat by: Guido van Rossum\n\n\"\"\"Class for profiling Python code.\"\"\"\n\n# Copyright Disney Enterprises, Inc.  All Rights Reserved.\n# Licensed to PSF under a Contributor Agreement\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\n# either express or implied.  See the License for the specific language\n# governing permissions and limitations under the License.\n\n\nimport sys\nimport time\nimport marshal\n\n__all__ = [\"run\", \"runctx\", \"Profile\"]\n\n# Sample timer for use with\n#i_count = 0\n#def integer_timer():\n#       global i_count\n#       i_count = i_count + 1\n#       return i_count\n#itimes = integer_timer # replace with C coded timer returning integers\n\nclass _Utils:\n    \"\"\"Support class for utility functions which are shared by\n    profile.py and cProfile.py modules.\n    Not supposed to be used directly.\n    \"\"\"\n\n    def __init__(self, profiler):\n        self.profiler = profiler\n\n    def run(self, statement, filename, sort):\n        prof = self.profiler()\n        try:\n            prof.run(statement)\n        except SystemExit:\n            pass\n        finally:\n            self._show(prof, filename, sort)\n\n    def runctx(self, statement, globals, locals, filename, sort):\n        prof = self.profiler()\n        try:\n            prof.runctx(statement, globals, locals)\n        except SystemExit:\n            pass\n        finally:\n            self._show(prof, filename, sort)\n\n    def _show(self, prof, filename, sort):\n        if filename is not None:\n            prof.dump_stats(filename)\n        else:\n            prof.print_stats(sort)\n\n\n#**************************************************************************\n# The following are the static member functions for the profiler class\n# Note that an instance of Profile() is *not* needed to call them.\n#**************************************************************************\n\ndef run(statement, filename=None, sort=-1):\n    \"\"\"Run statement under profiler optionally saving results in filename\n\n    This function takes a single argument that can be passed to the\n    \"exec\" statement, and an optional file name.  In all cases this\n    routine attempts to \"exec\" its first argument and gather profiling\n    statistics from the execution. If no file name is present, then this\n    function automatically prints a simple profiling report, sorted by the\n    standard name string (file/line/function-name) that is presented in\n    each line.\n    \"\"\"\n    return _Utils(Profile).run(statement, filename, sort)\n\ndef runctx(statement, globals, locals, filename=None, sort=-1):\n    \"\"\"Run statement under profiler, supplying your own globals and locals,\n    optionally saving results in filename.\n\n    statement and filename have the same semantics as profile.run\n    \"\"\"\n    return _Utils(Profile).runctx(statement, globals, locals, filename, sort)\n\n\nclass Profile:\n    \"\"\"Profiler class.\n\n    self.cur is always a tuple.  Each such tuple corresponds to a stack\n    frame that is currently active (self.cur[-2]).  The following are the\n    definitions of its members.  We use this external \"parallel stack\" to\n    avoid contaminating the program that we are profiling. (old profiler\n    used to write into the frames local dictionary!!) Derived classes\n    can change the definition of some entries, as long as they leave\n    [-2:] intact (frame and previous tuple).  In case an internal error is\n    detected, the -3 element is used as the function name.\n\n    [ 0] = Time that needs to be charged to the parent frame's function.\n           It is used so that a function call will not have to access the\n           timing data for the parent frame.\n    [ 1] = Total time spent in this frame's function, excluding time in\n           subfunctions (this latter is tallied in cur[2]).\n    [ 2] = Total time spent in subfunctions, excluding time executing the\n           frame's function (this latter is tallied in cur[1]).\n    [-3] = Name of the function that corresponds to this frame.\n    [-2] = Actual frame that we correspond to (used to sync exception handling).\n    [-1] = Our parent 6-tuple (corresponds to frame.f_back).\n\n    Timing data for each function is stored as a 5-tuple in the dictionary\n    self.timings[].  The index is always the name stored in self.cur[-3].\n    The following are the definitions of the members:\n\n    [0] = The number of times this function was called, not counting direct\n          or indirect recursion,\n    [1] = Number of times this function appears on the stack, minus one\n    [2] = Total time spent internal to this function\n    [3] = Cumulative time that this function was present on the stack.  In\n          non-recursive functions, this is the total execution time from start\n          to finish of each invocation of a function, including time spent in\n          all subfunctions.\n    [4] = A dictionary indicating for each function name, the number of times\n          it was called by us.\n    \"\"\"\n\n    bias = 0  # calibration constant\n\n    def __init__(self, timer=None, bias=None):\n        self.timings = {}\n        self.cur = None\n        self.cmd = \"\"\n        self.c_func_name = \"\"\n\n        if bias is None:\n            bias = self.bias\n        self.bias = bias     # Materialize in local dict for lookup speed.\n\n        if not timer:\n            self.timer = self.get_time = time.process_time\n            self.dispatcher = self.trace_dispatch_i\n        else:\n            self.timer = timer\n            t = self.timer() # test out timer function\n            try:\n                length = len(t)\n            except TypeError:\n                self.get_time = timer\n                self.dispatcher = self.trace_dispatch_i\n            else:\n                if length == 2:\n                    self.dispatcher = self.trace_dispatch\n                else:\n                    self.dispatcher = self.trace_dispatch_l\n                # This get_time() implementation needs to be defined\n                # here to capture the passed-in timer in the parameter\n                # list (for performance).  Note that we can't assume\n                # the timer() result contains two values in all\n                # cases.\n                def get_time_timer(timer=timer, sum=sum):\n                    return sum(timer())\n                self.get_time = get_time_timer\n        self.t = self.get_time()\n        self.simulate_call('profiler')\n\n    # Heavily optimized dispatch routine for time.process_time() timer\n\n    def trace_dispatch(self, frame, event, arg):\n        timer = self.timer\n        t = timer()\n        t = t[0] + t[1] - self.t - self.bias\n\n        if event == \"c_call\":\n            self.c_func_name = arg.__name__\n\n        if self.dispatch[event](self, frame,t):\n            t = timer()\n            self.t = t[0] + t[1]\n        else:\n            r = timer()\n            self.t = r[0] + r[1] - t # put back unrecorded delta\n\n    # Dispatch routine for best timer program (return = scalar, fastest if\n    # an integer but float works too -- and time.process_time() relies on that).\n\n    def trace_dispatch_i(self, frame, event, arg):\n        timer = self.timer\n        t = timer() - self.t - self.bias\n\n        if event == \"c_call\":\n            self.c_func_name = arg.__name__\n\n        if self.dispatch[event](self, frame, t):\n            self.t = timer()\n        else:\n            self.t = timer() - t  # put back unrecorded delta\n\n    # Dispatch routine for macintosh (timer returns time in ticks of\n    # 1/60th second)\n\n    def trace_dispatch_mac(self, frame, event, arg):\n        timer = self.timer\n        t = timer()/60.0 - self.t - self.bias\n\n        if event == \"c_call\":\n            self.c_func_name = arg.__name__\n\n        if self.dispatch[event](self, frame, t):\n            self.t = timer()/60.0\n        else:\n            self.t = timer()/60.0 - t  # put back unrecorded delta\n\n    # SLOW generic dispatch routine for timer returning lists of numbers\n\n    def trace_dispatch_l(self, frame, event, arg):\n        get_time = self.get_time\n        t = get_time() - self.t - self.bias\n\n        if event == \"c_call\":\n            self.c_func_name = arg.__name__\n\n        if self.dispatch[event](self, frame, t):\n            self.t = get_time()\n        else:\n            self.t = get_time() - t # put back unrecorded delta\n\n    # In the event handlers, the first 3 elements of self.cur are unpacked\n    # into vrbls w/ 3-letter names.  The last two characters are meant to be\n    # mnemonic:\n    #     _pt  self.cur[0] \"parent time\"   time to be charged to parent frame\n    #     _it  self.cur[1] \"internal time\" time spent directly in the function\n    #     _et  self.cur[2] \"external time\" time spent in subfunctions\n\n    def trace_dispatch_exception(self, frame, t):\n        rpt, rit, ret, rfn, rframe, rcur = self.cur\n        if (rframe is not frame) and rcur:\n            return self.trace_dispatch_return(rframe, t)\n        self.cur = rpt, rit+t, ret, rfn, rframe, rcur\n        return 1\n\n\n    def trace_dispatch_call(self, frame, t):\n        if self.cur and frame.f_back is not self.cur[-2]:\n            rpt, rit, ret, rfn, rframe, rcur = self.cur\n            if not isinstance(rframe, Profile.fake_frame):\n                assert rframe.f_back is frame.f_back, (\"Bad call\", rfn,\n                                                       rframe, rframe.f_back,\n                                                       frame, frame.f_back)\n                self.trace_dispatch_return(rframe, 0)\n                assert (self.cur is None or \\\n                        frame.f_back is self.cur[-2]), (\"Bad call\",\n                                                        self.cur[-3])\n        fcode = frame.f_code\n        fn = (fcode.co_filename, fcode.co_firstlineno, fcode.co_name)\n        self.cur = (t, 0, 0, fn, frame, self.cur)\n        timings = self.timings\n        if fn in timings:\n            cc, ns, tt, ct, callers = timings[fn]\n            timings[fn] = cc, ns + 1, tt, ct, callers\n        else:\n            timings[fn] = 0, 0, 0, 0, {}\n        return 1\n\n    def trace_dispatch_c_call (self, frame, t):\n        fn = (\"\", 0, self.c_func_name)\n        self.cur = (t, 0, 0, fn, frame, self.cur)\n        timings = self.timings\n        if fn in timings:\n            cc, ns, tt, ct, callers = timings[fn]\n            timings[fn] = cc, ns+1, tt, ct, callers\n        else:\n            timings[fn] = 0, 0, 0, 0, {}\n        return 1\n\n    def trace_dispatch_return(self, frame, t):\n        if frame is not self.cur[-2]:\n            assert frame is self.cur[-2].f_back, (\"Bad return\", self.cur[-3])\n            self.trace_dispatch_return(self.cur[-2], 0)\n\n        # Prefix \"r\" means part of the Returning or exiting frame.\n        # Prefix \"p\" means part of the Previous or Parent or older frame.\n\n        rpt, rit, ret, rfn, frame, rcur = self.cur\n        rit = rit + t\n        frame_total = rit + ret\n\n        ppt, pit, pet, pfn, pframe, pcur = rcur\n        self.cur = ppt, pit + rpt, pet + frame_total, pfn, pframe, pcur\n\n        timings = self.timings\n        cc, ns, tt, ct, callers = timings[rfn]\n        if not ns:\n            # This is the only occurrence of the function on the stack.\n            # Else this is a (directly or indirectly) recursive call, and\n            # its cumulative time will get updated when the topmost call to\n            # it returns.\n            ct = ct + frame_total\n            cc = cc + 1\n\n        if pfn in callers:\n            callers[pfn] = callers[pfn] + 1  # hack: gather more\n            # stats such as the amount of time added to ct courtesy\n            # of this specific call, and the contribution to cc\n            # courtesy of this call.\n        else:\n            callers[pfn] = 1\n\n        timings[rfn] = cc, ns - 1, tt + rit, ct, callers\n\n        return 1\n\n\n    dispatch = {\n        \"call\": trace_dispatch_call,\n        \"exception\": trace_dispatch_exception,\n        \"return\": trace_dispatch_return,\n        \"c_call\": trace_dispatch_c_call,\n        \"c_exception\": trace_dispatch_return,  # the C function returned\n        \"c_return\": trace_dispatch_return,\n        }\n\n\n    # The next few functions play with self.cmd. By carefully preloading\n    # our parallel stack, we can force the profiled result to include\n    # an arbitrary string as the name of the calling function.\n    # We use self.cmd as that string, and the resulting stats look\n    # very nice :-).\n\n    def set_cmd(self, cmd):\n        if self.cur[-1]: return   # already set\n        self.cmd = cmd\n        self.simulate_call(cmd)\n\n    class fake_code:\n        def __init__(self, filename, line, name):\n            self.co_filename = filename\n            self.co_line = line\n            self.co_name = name\n            self.co_firstlineno = 0\n\n        def __repr__(self):\n            return repr((self.co_filename, self.co_line, self.co_name))\n\n    class fake_frame:\n        def __init__(self, code, prior):\n            self.f_code = code\n            self.f_back = prior\n\n    def simulate_call(self, name):\n        code = self.fake_code('profile', 0, name)\n        if self.cur:\n            pframe = self.cur[-2]\n        else:\n            pframe = None\n        frame = self.fake_frame(code, pframe)\n        self.dispatch['call'](self, frame, 0)\n\n    # collect stats from pending stack, including getting final\n    # timings for self.cmd frame.\n\n    def simulate_cmd_complete(self):\n        get_time = self.get_time\n        t = get_time() - self.t\n        while self.cur[-1]:\n            # We *can* cause assertion errors here if\n            # dispatch_trace_return checks for a frame match!\n            self.dispatch['return'](self, self.cur[-2], t)\n            t = 0\n        self.t = get_time() - t\n\n\n    def print_stats(self, sort=-1):\n        import pstats\n        pstats.Stats(self).strip_dirs().sort_stats(sort). \\\n                  print_stats()\n\n    def dump_stats(self, file):\n        with open(file, 'wb') as f:\n            self.create_stats()\n            marshal.dump(self.stats, f)\n\n    def create_stats(self):\n        self.simulate_cmd_complete()\n        self.snapshot_stats()\n\n    def snapshot_stats(self):\n        self.stats = {}\n        for func, (cc, ns, tt, ct, callers) in self.timings.items():\n            callers = callers.copy()\n            nc = 0\n            for callcnt in callers.values():\n                nc += callcnt\n            self.stats[func] = cc, nc, tt, ct, callers\n\n\n    # The following two methods can be called by clients to use\n    # a profiler to profile a statement, given as a string.\n\n    def run(self, cmd):\n        import __main__\n        dict = __main__.__dict__\n        return self.runctx(cmd, dict, dict)\n\n    def runctx(self, cmd, globals, locals):\n        self.set_cmd(cmd)\n        sys.setprofile(self.dispatcher)\n        try:\n            exec(cmd, globals, locals)\n        finally:\n            sys.setprofile(None)\n        return self\n\n    # This method is more useful to profile a single function call.\n    def runcall(*args, **kw):\n        if len(args) >= 2:\n            self, func, *args = args\n        elif not args:\n            raise TypeError(\"descriptor 'runcall' of 'Profile' object \"\n                            \"needs an argument\")\n        elif 'func' in kw:\n            func = kw.pop('func')\n            self, *args = args\n            import warnings\n            warnings.warn(\"Passing 'func' as keyword argument is deprecated\",\n                          DeprecationWarning, stacklevel=2)\n        else:\n            raise TypeError('runcall expected at least 1 positional argument, '\n                            'got %d' % (len(args)-1))\n\n        self.set_cmd(repr(func))\n        sys.setprofile(self.dispatcher)\n        try:\n            return func(*args, **kw)\n        finally:\n            sys.setprofile(None)\n    runcall.__text_signature__ = '($self, func, /, *args, **kw)'\n\n\n    #******************************************************************\n    # The following calculates the overhead for using a profiler.  The\n    # problem is that it takes a fair amount of time for the profiler\n    # to stop the stopwatch (from the time it receives an event).\n    # Similarly, there is a delay from the time that the profiler\n    # re-starts the stopwatch before the user's code really gets to\n    # continue.  The following code tries to measure the difference on\n    # a per-event basis.\n    #\n    # Note that this difference is only significant if there are a lot of\n    # events, and relatively little user code per event.  For example,\n    # code with small functions will typically benefit from having the\n    # profiler calibrated for the current platform.  This *could* be\n    # done on the fly during init() time, but it is not worth the\n    # effort.  Also note that if too large a value specified, then\n    # execution time on some functions will actually appear as a\n    # negative number.  It is *normal* for some functions (with very\n    # low call counts) to have such negative stats, even if the\n    # calibration figure is \"correct.\"\n    #\n    # One alternative to profile-time calibration adjustments (i.e.,\n    # adding in the magic little delta during each event) is to track\n    # more carefully the number of events (and cumulatively, the number\n    # of events during sub functions) that are seen.  If this were\n    # done, then the arithmetic could be done after the fact (i.e., at\n    # display time).  Currently, we track only call/return events.\n    # These values can be deduced by examining the callees and callers\n    # vectors for each functions.  Hence we *can* almost correct the\n    # internal time figure at print time (note that we currently don't\n    # track exception event processing counts).  Unfortunately, there\n    # is currently no similar information for cumulative sub-function\n    # time.  It would not be hard to \"get all this info\" at profiler\n    # time.  Specifically, we would have to extend the tuples to keep\n    # counts of this in each frame, and then extend the defs of timing\n    # tuples to include the significant two figures. I'm a bit fearful\n    # that this additional feature will slow the heavily optimized\n    # event/time ratio (i.e., the profiler would run slower, fur a very\n    # low \"value added\" feature.)\n    #**************************************************************\n\n    def calibrate(self, m, verbose=0):\n        if self.__class__ is not Profile:\n            raise TypeError(\"Subclasses must override .calibrate().\")\n\n        saved_bias = self.bias\n        self.bias = 0\n        try:\n            return self._calibrate_inner(m, verbose)\n        finally:\n            self.bias = saved_bias\n\n    def _calibrate_inner(self, m, verbose):\n        get_time = self.get_time\n\n        # Set up a test case to be run with and without profiling.  Include\n        # lots of calls, because we're trying to quantify stopwatch overhead.\n        # Do not raise any exceptions, though, because we want to know\n        # exactly how many profile events are generated (one call event, +\n        # one return event, per Python-level call).\n\n        def f1(n):\n            for i in range(n):\n                x = 1\n\n        def f(m, f1=f1):\n            for i in range(m):\n                f1(100)\n\n        f(m)    # warm up the cache\n\n        # elapsed_noprofile <- time f(m) takes without profiling.\n        t0 = get_time()\n        f(m)\n        t1 = get_time()\n        elapsed_noprofile = t1 - t0\n        if verbose:\n            print(\"elapsed time without profiling =\", elapsed_noprofile)\n\n        # elapsed_profile <- time f(m) takes with profiling.  The difference\n        # is profiling overhead, only some of which the profiler subtracts\n        # out on its own.\n        p = Profile()\n        t0 = get_time()\n        p.runctx('f(m)', globals(), locals())\n        t1 = get_time()\n        elapsed_profile = t1 - t0\n        if verbose:\n            print(\"elapsed time with profiling =\", elapsed_profile)\n\n        # reported_time <- \"CPU seconds\" the profiler charged to f and f1.\n        total_calls = 0.0\n        reported_time = 0.0\n        for (filename, line, funcname), (cc, ns, tt, ct, callers) in \\\n                p.timings.items():\n            if funcname in (\"f\", \"f1\"):\n                total_calls += cc\n                reported_time += tt\n\n        if verbose:\n            print(\"'CPU seconds' profiler reported =\", reported_time)\n            print(\"total # calls =\", total_calls)\n        if total_calls != m + 1:\n            raise ValueError(\"internal error: total calls = %d\" % total_calls)\n\n        # reported_time - elapsed_noprofile = overhead the profiler wasn't\n        # able to measure.  Divide by twice the number of calls (since there\n        # are two profiler events per call in this test) to get the hidden\n        # overhead per event.\n        mean = (reported_time - elapsed_noprofile) / 2.0 / total_calls\n        if verbose:\n            print(\"mean stopwatch overhead per profile event =\", mean)\n        return mean\n\n#****************************************************************************\n\ndef main():\n    import os\n    from optparse import OptionParser\n\n    usage = \"profile.py [-o output_file_path] [-s sort] [-m module | scriptfile] [arg] ...\"\n    parser = OptionParser(usage=usage)\n    parser.allow_interspersed_args = False\n    parser.add_option('-o', '--outfile', dest=\"outfile\",\n        help=\"Save stats to <outfile>\", default=None)\n    parser.add_option('-m', dest=\"module\", action=\"store_true\",\n        help=\"Profile a library module.\", default=False)\n    parser.add_option('-s', '--sort', dest=\"sort\",\n        help=\"Sort order when printing to stdout, based on pstats.Stats class\",\n        default=-1)\n\n    if not sys.argv[1:]:\n        parser.print_usage()\n        sys.exit(2)\n\n    (options, args) = parser.parse_args()\n    sys.argv[:] = args\n\n    if len(args) > 0:\n        if options.module:\n            import runpy\n            code = \"run_module(modname, run_name='__main__')\"\n            globs = {\n                'run_module': runpy.run_module,\n                'modname': args[0]\n            }\n        else:\n            progname = args[0]\n            sys.path.insert(0, os.path.dirname(progname))\n            with open(progname, 'rb') as fp:\n                code = compile(fp.read(), progname, 'exec')\n            globs = {\n                '__file__': progname,\n                '__name__': '__main__',\n                '__package__': None,\n                '__cached__': None,\n            }\n        runctx(code, globs, None, options.outfile, options.sort)\n    else:\n        parser.print_usage()\n    return parser\n\n# When invoked as main program, invoke the profiler on a script\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/pstats.py",
    "content": "\"\"\"Class for printing reports on profiled python code.\"\"\"\n\n# Written by James Roskind\n# Based on prior profile module by Sjoerd Mullender...\n#   which was hacked somewhat by: Guido van Rossum\n\n# Copyright Disney Enterprises, Inc.  All Rights Reserved.\n# Licensed to PSF under a Contributor Agreement\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\n# either express or implied.  See the License for the specific language\n# governing permissions and limitations under the License.\n\n\nimport sys\nimport os\nimport time\nimport marshal\nimport re\nfrom enum import Enum\nfrom functools import cmp_to_key\n\n__all__ = [\"Stats\", \"SortKey\"]\n\n\nclass SortKey(str, Enum):\n    CALLS = 'calls', 'ncalls'\n    CUMULATIVE = 'cumulative', 'cumtime'\n    FILENAME = 'filename', 'module'\n    LINE = 'line'\n    NAME = 'name'\n    NFL = 'nfl'\n    PCALLS = 'pcalls'\n    STDNAME = 'stdname'\n    TIME = 'time', 'tottime'\n\n    def __new__(cls, *values):\n        obj = str.__new__(cls)\n\n        obj._value_ = values[0]\n        for other_value in values[1:]:\n            cls._value2member_map_[other_value] = obj\n        obj._all_values = values\n        return obj\n\n\nclass Stats:\n    \"\"\"This class is used for creating reports from data generated by the\n    Profile class.  It is a \"friend\" of that class, and imports data either\n    by direct access to members of Profile class, or by reading in a dictionary\n    that was emitted (via marshal) from the Profile class.\n\n    The big change from the previous Profiler (in terms of raw functionality)\n    is that an \"add()\" method has been provided to combine Stats from\n    several distinct profile runs.  Both the constructor and the add()\n    method now take arbitrarily many file names as arguments.\n\n    All the print methods now take an argument that indicates how many lines\n    to print.  If the arg is a floating point number between 0 and 1.0, then\n    it is taken as a decimal percentage of the available lines to be printed\n    (e.g., .1 means print 10% of all available lines).  If it is an integer,\n    it is taken to mean the number of lines of data that you wish to have\n    printed.\n\n    The sort_stats() method now processes some additional options (i.e., in\n    addition to the old -1, 0, 1, or 2 that are respectively interpreted as\n    'stdname', 'calls', 'time', and 'cumulative').  It takes either an\n    arbitrary number of quoted strings or SortKey enum to select the sort\n    order.\n\n    For example sort_stats('time', 'name') or sort_stats(SortKey.TIME,\n    SortKey.NAME) sorts on the major key of 'internal function time', and on\n    the minor key of 'the name of the function'.  Look at the two tables in\n    sort_stats() and get_sort_arg_defs(self) for more examples.\n\n    All methods return self, so you can string together commands like:\n        Stats('foo', 'goo').strip_dirs().sort_stats('calls').\\\n                            print_stats(5).print_callers(5)\n    \"\"\"\n\n    def __init__(self, *args, stream=None):\n        self.stream = stream or sys.stdout\n        if not len(args):\n            arg = None\n        else:\n            arg = args[0]\n            args = args[1:]\n        self.init(arg)\n        self.add(*args)\n\n    def init(self, arg):\n        self.all_callees = None  # calc only if needed\n        self.files = []\n        self.fcn_list = None\n        self.total_tt = 0\n        self.total_calls = 0\n        self.prim_calls = 0\n        self.max_name_len = 0\n        self.top_level = set()\n        self.stats = {}\n        self.sort_arg_dict = {}\n        self.load_stats(arg)\n        try:\n            self.get_top_level_stats()\n        except Exception:\n            print(\"Invalid timing data %s\" %\n                  (self.files[-1] if self.files else ''), file=self.stream)\n            raise\n\n    def load_stats(self, arg):\n        if arg is None:\n            self.stats = {}\n            return\n        elif isinstance(arg, str):\n            with open(arg, 'rb') as f:\n                self.stats = marshal.load(f)\n            try:\n                file_stats = os.stat(arg)\n                arg = time.ctime(file_stats.st_mtime) + \"    \" + arg\n            except:  # in case this is not unix\n                pass\n            self.files = [arg]\n        elif hasattr(arg, 'create_stats'):\n            arg.create_stats()\n            self.stats = arg.stats\n            arg.stats = {}\n        if not self.stats:\n            raise TypeError(\"Cannot create or construct a %r object from %r\"\n                            % (self.__class__, arg))\n        return\n\n    def get_top_level_stats(self):\n        for func, (cc, nc, tt, ct, callers) in self.stats.items():\n            self.total_calls += nc\n            self.prim_calls  += cc\n            self.total_tt    += tt\n            if (\"jprofile\", 0, \"profiler\") in callers:\n                self.top_level.add(func)\n            if len(func_std_string(func)) > self.max_name_len:\n                self.max_name_len = len(func_std_string(func))\n\n    def add(self, *arg_list):\n        if not arg_list:\n            return self\n        for item in reversed(arg_list):\n            if type(self) != type(item):\n                item = Stats(item)\n            self.files += item.files\n            self.total_calls += item.total_calls\n            self.prim_calls += item.prim_calls\n            self.total_tt += item.total_tt\n            for func in item.top_level:\n                self.top_level.add(func)\n\n            if self.max_name_len < item.max_name_len:\n                self.max_name_len = item.max_name_len\n\n            self.fcn_list = None\n\n            for func, stat in item.stats.items():\n                if func in self.stats:\n                    old_func_stat = self.stats[func]\n                else:\n                    old_func_stat = (0, 0, 0, 0, {},)\n                self.stats[func] = add_func_stats(old_func_stat, stat)\n        return self\n\n    def dump_stats(self, filename):\n        \"\"\"Write the profile data to a file we know how to load back.\"\"\"\n        with open(filename, 'wb') as f:\n            marshal.dump(self.stats, f)\n\n    # list the tuple indices and directions for sorting,\n    # along with some printable description\n    sort_arg_dict_default = {\n              \"calls\"     : (((1,-1),              ), \"call count\"),\n              \"ncalls\"    : (((1,-1),              ), \"call count\"),\n              \"cumtime\"   : (((3,-1),              ), \"cumulative time\"),\n              \"cumulative\": (((3,-1),              ), \"cumulative time\"),\n              \"filename\"  : (((4, 1),              ), \"file name\"),\n              \"line\"      : (((5, 1),              ), \"line number\"),\n              \"module\"    : (((4, 1),              ), \"file name\"),\n              \"name\"      : (((6, 1),              ), \"function name\"),\n              \"nfl\"       : (((6, 1),(4, 1),(5, 1),), \"name/file/line\"),\n              \"pcalls\"    : (((0,-1),              ), \"primitive call count\"),\n              \"stdname\"   : (((7, 1),              ), \"standard name\"),\n              \"time\"      : (((2,-1),              ), \"internal time\"),\n              \"tottime\"   : (((2,-1),              ), \"internal time\"),\n              }\n\n    def get_sort_arg_defs(self):\n        \"\"\"Expand all abbreviations that are unique.\"\"\"\n        if not self.sort_arg_dict:\n            self.sort_arg_dict = dict = {}\n            bad_list = {}\n            for word, tup in self.sort_arg_dict_default.items():\n                fragment = word\n                while fragment:\n                    if not fragment:\n                        break\n                    if fragment in dict:\n                        bad_list[fragment] = 0\n                        break\n                    dict[fragment] = tup\n                    fragment = fragment[:-1]\n            for word in bad_list:\n                del dict[word]\n        return self.sort_arg_dict\n\n    def sort_stats(self, *field):\n        if not field:\n            self.fcn_list = 0\n            return self\n        if len(field) == 1 and isinstance(field[0], int):\n            # Be compatible with old profiler\n            field = [ {-1: \"stdname\",\n                       0:  \"calls\",\n                       1:  \"time\",\n                       2:  \"cumulative\"}[field[0]] ]\n        elif len(field) >= 2:\n            for arg in field[1:]:\n                if type(arg) != type(field[0]):\n                    raise TypeError(\"Can't have mixed argument type\")\n\n        sort_arg_defs = self.get_sort_arg_defs()\n\n        sort_tuple = ()\n        self.sort_type = \"\"\n        connector = \"\"\n        for word in field:\n            if isinstance(word, SortKey):\n                word = word.value\n            sort_tuple = sort_tuple + sort_arg_defs[word][0]\n            self.sort_type += connector + sort_arg_defs[word][1]\n            connector = \", \"\n\n        stats_list = []\n        for func, (cc, nc, tt, ct, callers) in self.stats.items():\n            stats_list.append((cc, nc, tt, ct) + func +\n                              (func_std_string(func), func))\n\n        stats_list.sort(key=cmp_to_key(TupleComp(sort_tuple).compare))\n\n        self.fcn_list = fcn_list = []\n        for tuple in stats_list:\n            fcn_list.append(tuple[-1])\n        return self\n\n    def reverse_order(self):\n        if self.fcn_list:\n            self.fcn_list.reverse()\n        return self\n\n    def strip_dirs(self):\n        oldstats = self.stats\n        self.stats = newstats = {}\n        max_name_len = 0\n        for func, (cc, nc, tt, ct, callers) in oldstats.items():\n            newfunc = func_strip_path(func)\n            if len(func_std_string(newfunc)) > max_name_len:\n                max_name_len = len(func_std_string(newfunc))\n            newcallers = {}\n            for func2, caller in callers.items():\n                newcallers[func_strip_path(func2)] = caller\n\n            if newfunc in newstats:\n                newstats[newfunc] = add_func_stats(\n                                        newstats[newfunc],\n                                        (cc, nc, tt, ct, newcallers))\n            else:\n                newstats[newfunc] = (cc, nc, tt, ct, newcallers)\n        old_top = self.top_level\n        self.top_level = new_top = set()\n        for func in old_top:\n            new_top.add(func_strip_path(func))\n\n        self.max_name_len = max_name_len\n\n        self.fcn_list = None\n        self.all_callees = None\n        return self\n\n    def calc_callees(self):\n        if self.all_callees:\n            return\n        self.all_callees = all_callees = {}\n        for func, (cc, nc, tt, ct, callers) in self.stats.items():\n            if not func in all_callees:\n                all_callees[func] = {}\n            for func2, caller in callers.items():\n                if not func2 in all_callees:\n                    all_callees[func2] = {}\n                all_callees[func2][func]  = caller\n        return\n\n    #******************************************************************\n    # The following functions support actual printing of reports\n    #******************************************************************\n\n    # Optional \"amount\" is either a line count, or a percentage of lines.\n\n    def eval_print_amount(self, sel, list, msg):\n        new_list = list\n        if isinstance(sel, str):\n            try:\n                rex = re.compile(sel)\n            except re.error:\n                msg += \"   <Invalid regular expression %r>\\n\" % sel\n                return new_list, msg\n            new_list = []\n            for func in list:\n                if rex.search(func_std_string(func)):\n                    new_list.append(func)\n        else:\n            count = len(list)\n            if isinstance(sel, float) and 0.0 <= sel < 1.0:\n                count = int(count * sel + .5)\n                new_list = list[:count]\n            elif isinstance(sel, int) and 0 <= sel < count:\n                count = sel\n                new_list = list[:count]\n        if len(list) != len(new_list):\n            msg += \"   List reduced from %r to %r due to restriction <%r>\\n\" % (\n                len(list), len(new_list), sel)\n\n        return new_list, msg\n\n    def get_print_list(self, sel_list):\n        width = self.max_name_len\n        if self.fcn_list:\n            stat_list = self.fcn_list[:]\n            msg = \"   Ordered by: \" + self.sort_type + '\\n'\n        else:\n            stat_list = list(self.stats.keys())\n            msg = \"   Random listing order was used\\n\"\n\n        for selection in sel_list:\n            stat_list, msg = self.eval_print_amount(selection, stat_list, msg)\n\n        count = len(stat_list)\n\n        if not stat_list:\n            return 0, stat_list\n        print(msg, file=self.stream)\n        if count < len(self.stats):\n            width = 0\n            for func in stat_list:\n                if  len(func_std_string(func)) > width:\n                    width = len(func_std_string(func))\n        return width+2, stat_list\n\n    def print_stats(self, *amount):\n        for filename in self.files:\n            print(filename, file=self.stream)\n        if self.files:\n            print(file=self.stream)\n        indent = ' ' * 8\n        for func in self.top_level:\n            print(indent, func_get_function_name(func), file=self.stream)\n\n        print(indent, self.total_calls, \"function calls\", end=' ', file=self.stream)\n        if self.total_calls != self.prim_calls:\n            print(\"(%d primitive calls)\" % self.prim_calls, end=' ', file=self.stream)\n        print(\"in %.3f seconds\" % self.total_tt, file=self.stream)\n        print(file=self.stream)\n        width, list = self.get_print_list(amount)\n        if list:\n            self.print_title()\n            for func in list:\n                self.print_line(func)\n            print(file=self.stream)\n            print(file=self.stream)\n        return self\n\n    def print_callees(self, *amount):\n        width, list = self.get_print_list(amount)\n        if list:\n            self.calc_callees()\n\n            self.print_call_heading(width, \"called...\")\n            for func in list:\n                if func in self.all_callees:\n                    self.print_call_line(width, func, self.all_callees[func])\n                else:\n                    self.print_call_line(width, func, {})\n            print(file=self.stream)\n            print(file=self.stream)\n        return self\n\n    def print_callers(self, *amount):\n        width, list = self.get_print_list(amount)\n        if list:\n            self.print_call_heading(width, \"was called by...\")\n            for func in list:\n                cc, nc, tt, ct, callers = self.stats[func]\n                self.print_call_line(width, func, callers, \"<-\")\n            print(file=self.stream)\n            print(file=self.stream)\n        return self\n\n    def print_call_heading(self, name_size, column_title):\n        print(\"Function \".ljust(name_size) + column_title, file=self.stream)\n        # print sub-header only if we have new-style callers\n        subheader = False\n        for cc, nc, tt, ct, callers in self.stats.values():\n            if callers:\n                value = next(iter(callers.values()))\n                subheader = isinstance(value, tuple)\n                break\n        if subheader:\n            print(\" \"*name_size + \"    ncalls  tottime  cumtime\", file=self.stream)\n\n    def print_call_line(self, name_size, source, call_dict, arrow=\"->\"):\n        print(func_std_string(source).ljust(name_size) + arrow, end=' ', file=self.stream)\n        if not call_dict:\n            print(file=self.stream)\n            return\n        clist = sorted(call_dict.keys())\n        indent = \"\"\n        for func in clist:\n            name = func_std_string(func)\n            value = call_dict[func]\n            if isinstance(value, tuple):\n                nc, cc, tt, ct = value\n                if nc != cc:\n                    substats = '%d/%d' % (nc, cc)\n                else:\n                    substats = '%d' % (nc,)\n                substats = '%s %s %s  %s' % (substats.rjust(7+2*len(indent)),\n                                             f8(tt), f8(ct), name)\n                left_width = name_size + 1\n            else:\n                substats = '%s(%r) %s' % (name, value, f8(self.stats[func][3]))\n                left_width = name_size + 3\n            print(indent*left_width + substats, file=self.stream)\n            indent = \" \"\n\n    def print_title(self):\n        print('   ncalls  tottime  percall  cumtime  percall', end=' ', file=self.stream)\n        print('filename:lineno(function)', file=self.stream)\n\n    def print_line(self, func):  # hack: should print percentages\n        cc, nc, tt, ct, callers = self.stats[func]\n        c = str(nc)\n        if nc != cc:\n            c = c + '/' + str(cc)\n        print(c.rjust(9), end=' ', file=self.stream)\n        print(f8(tt), end=' ', file=self.stream)\n        if nc == 0:\n            print(' '*8, end=' ', file=self.stream)\n        else:\n            print(f8(tt/nc), end=' ', file=self.stream)\n        print(f8(ct), end=' ', file=self.stream)\n        if cc == 0:\n            print(' '*8, end=' ', file=self.stream)\n        else:\n            print(f8(ct/cc), end=' ', file=self.stream)\n        print(func_std_string(func), file=self.stream)\n\nclass TupleComp:\n    \"\"\"This class provides a generic function for comparing any two tuples.\n    Each instance records a list of tuple-indices (from most significant\n    to least significant), and sort direction (ascending or decending) for\n    each tuple-index.  The compare functions can then be used as the function\n    argument to the system sort() function when a list of tuples need to be\n    sorted in the instances order.\"\"\"\n\n    def __init__(self, comp_select_list):\n        self.comp_select_list = comp_select_list\n\n    def compare (self, left, right):\n        for index, direction in self.comp_select_list:\n            l = left[index]\n            r = right[index]\n            if l < r:\n                return -direction\n            if l > r:\n                return direction\n        return 0\n\n\n#**************************************************************************\n# func_name is a triple (file:string, line:int, name:string)\n\ndef func_strip_path(func_name):\n    filename, line, name = func_name\n    return os.path.basename(filename), line, name\n\ndef func_get_function_name(func):\n    return func[2]\n\ndef func_std_string(func_name): # match what old profile produced\n    if func_name[:2] == ('~', 0):\n        # special case for built-in functions\n        name = func_name[2]\n        if name.startswith('<') and name.endswith('>'):\n            return '{%s}' % name[1:-1]\n        else:\n            return name\n    else:\n        return \"%s:%d(%s)\" % func_name\n\n#**************************************************************************\n# The following functions combine statistics for pairs functions.\n# The bulk of the processing involves correctly handling \"call\" lists,\n# such as callers and callees.\n#**************************************************************************\n\ndef add_func_stats(target, source):\n    \"\"\"Add together all the stats for two profile entries.\"\"\"\n    cc, nc, tt, ct, callers = source\n    t_cc, t_nc, t_tt, t_ct, t_callers = target\n    return (cc+t_cc, nc+t_nc, tt+t_tt, ct+t_ct,\n              add_callers(t_callers, callers))\n\ndef add_callers(target, source):\n    \"\"\"Combine two caller lists in a single list.\"\"\"\n    new_callers = {}\n    for func, caller in target.items():\n        new_callers[func] = caller\n    for func, caller in source.items():\n        if func in new_callers:\n            if isinstance(caller, tuple):\n                # format used by cProfile\n                new_callers[func] = tuple(i + j for i, j in zip(caller, new_callers[func]))\n            else:\n                # format used by profile\n                new_callers[func] += caller\n        else:\n            new_callers[func] = caller\n    return new_callers\n\ndef count_calls(callers):\n    \"\"\"Sum the caller statistics to get total number of calls received.\"\"\"\n    nc = 0\n    for calls in callers.values():\n        nc += calls\n    return nc\n\n#**************************************************************************\n# The following functions support printing of reports\n#**************************************************************************\n\ndef f8(x):\n    return \"%8.3f\" % x\n\n#**************************************************************************\n# Statistics browser added by ESR, April 2001\n#**************************************************************************\n\nif __name__ == '__main__':\n    import cmd\n    try:\n        import readline\n    except ImportError:\n        pass\n\n    class ProfileBrowser(cmd.Cmd):\n        def __init__(self, profile=None):\n            cmd.Cmd.__init__(self)\n            self.prompt = \"% \"\n            self.stats = None\n            self.stream = sys.stdout\n            if profile is not None:\n                self.do_read(profile)\n\n        def generic(self, fn, line):\n            args = line.split()\n            processed = []\n            for term in args:\n                try:\n                    processed.append(int(term))\n                    continue\n                except ValueError:\n                    pass\n                try:\n                    frac = float(term)\n                    if frac > 1 or frac < 0:\n                        print(\"Fraction argument must be in [0, 1]\", file=self.stream)\n                        continue\n                    processed.append(frac)\n                    continue\n                except ValueError:\n                    pass\n                processed.append(term)\n            if self.stats:\n                getattr(self.stats, fn)(*processed)\n            else:\n                print(\"No statistics object is loaded.\", file=self.stream)\n            return 0\n        def generic_help(self):\n            print(\"Arguments may be:\", file=self.stream)\n            print(\"* An integer maximum number of entries to print.\", file=self.stream)\n            print(\"* A decimal fractional number between 0 and 1, controlling\", file=self.stream)\n            print(\"  what fraction of selected entries to print.\", file=self.stream)\n            print(\"* A regular expression; only entries with function names\", file=self.stream)\n            print(\"  that match it are printed.\", file=self.stream)\n\n        def do_add(self, line):\n            if self.stats:\n                try:\n                    self.stats.add(line)\n                except OSError as e:\n                    print(\"Failed to load statistics for %s: %s\" % (line, e), file=self.stream)\n            else:\n                print(\"No statistics object is loaded.\", file=self.stream)\n            return 0\n        def help_add(self):\n            print(\"Add profile info from given file to current statistics object.\", file=self.stream)\n\n        def do_callees(self, line):\n            return self.generic('print_callees', line)\n        def help_callees(self):\n            print(\"Print callees statistics from the current stat object.\", file=self.stream)\n            self.generic_help()\n\n        def do_callers(self, line):\n            return self.generic('print_callers', line)\n        def help_callers(self):\n            print(\"Print callers statistics from the current stat object.\", file=self.stream)\n            self.generic_help()\n\n        def do_EOF(self, line):\n            print(\"\", file=self.stream)\n            return 1\n        def help_EOF(self):\n            print(\"Leave the profile browser.\", file=self.stream)\n\n        def do_quit(self, line):\n            return 1\n        def help_quit(self):\n            print(\"Leave the profile browser.\", file=self.stream)\n\n        def do_read(self, line):\n            if line:\n                try:\n                    self.stats = Stats(line)\n                except OSError as err:\n                    print(err.args[1], file=self.stream)\n                    return\n                except Exception as err:\n                    print(err.__class__.__name__ + ':', err, file=self.stream)\n                    return\n                self.prompt = line + \"% \"\n            elif len(self.prompt) > 2:\n                line = self.prompt[:-2]\n                self.do_read(line)\n            else:\n                print(\"No statistics object is current -- cannot reload.\", file=self.stream)\n            return 0\n        def help_read(self):\n            print(\"Read in profile data from a specified file.\", file=self.stream)\n            print(\"Without argument, reload the current file.\", file=self.stream)\n\n        def do_reverse(self, line):\n            if self.stats:\n                self.stats.reverse_order()\n            else:\n                print(\"No statistics object is loaded.\", file=self.stream)\n            return 0\n        def help_reverse(self):\n            print(\"Reverse the sort order of the profiling report.\", file=self.stream)\n\n        def do_sort(self, line):\n            if not self.stats:\n                print(\"No statistics object is loaded.\", file=self.stream)\n                return\n            abbrevs = self.stats.get_sort_arg_defs()\n            if line and all((x in abbrevs) for x in line.split()):\n                self.stats.sort_stats(*line.split())\n            else:\n                print(\"Valid sort keys (unique prefixes are accepted):\", file=self.stream)\n                for (key, value) in Stats.sort_arg_dict_default.items():\n                    print(\"%s -- %s\" % (key, value[1]), file=self.stream)\n            return 0\n        def help_sort(self):\n            print(\"Sort profile data according to specified keys.\", file=self.stream)\n            print(\"(Typing `sort' without arguments lists valid keys.)\", file=self.stream)\n        def complete_sort(self, text, *args):\n            return [a for a in Stats.sort_arg_dict_default if a.startswith(text)]\n\n        def do_stats(self, line):\n            return self.generic('print_stats', line)\n        def help_stats(self):\n            print(\"Print statistics from the current stat object.\", file=self.stream)\n            self.generic_help()\n\n        def do_strip(self, line):\n            if self.stats:\n                self.stats.strip_dirs()\n            else:\n                print(\"No statistics object is loaded.\", file=self.stream)\n        def help_strip(self):\n            print(\"Strip leading path information from filenames in the report.\", file=self.stream)\n\n        def help_help(self):\n            print(\"Show help for a given command.\", file=self.stream)\n\n        def postcmd(self, stop, line):\n            if stop:\n                return stop\n            return None\n\n    if len(sys.argv) > 1:\n        initprofile = sys.argv[1]\n    else:\n        initprofile = None\n    try:\n        browser = ProfileBrowser(initprofile)\n        for profile in sys.argv[2:]:\n            browser.do_add(profile)\n        print(\"Welcome to the profile statistics browser.\", file=browser.stream)\n        browser.cmdloop()\n        print(\"Goodbye.\", file=browser.stream)\n    except KeyboardInterrupt:\n        pass\n\n# That's all, folks.\n"
  },
  {
    "path": "rd/usr/lib/python3.8/pty.py",
    "content": "\"\"\"Pseudo terminal utilities.\"\"\"\n\n# Bugs: No signal handling.  Doesn't set slave termios and window size.\n#       Only tested on Linux.\n# See:  W. Richard Stevens. 1992.  Advanced Programming in the\n#       UNIX Environment.  Chapter 19.\n# Author: Steen Lumholt -- with additions by Guido.\n\nfrom select import select\nimport os\nimport sys\nimport tty\n\n__all__ = [\"openpty\",\"fork\",\"spawn\"]\n\nSTDIN_FILENO = 0\nSTDOUT_FILENO = 1\nSTDERR_FILENO = 2\n\nCHILD = 0\n\ndef openpty():\n    \"\"\"openpty() -> (master_fd, slave_fd)\n    Open a pty master/slave pair, using os.openpty() if possible.\"\"\"\n\n    try:\n        return os.openpty()\n    except (AttributeError, OSError):\n        pass\n    master_fd, slave_name = _open_terminal()\n    slave_fd = slave_open(slave_name)\n    return master_fd, slave_fd\n\ndef master_open():\n    \"\"\"master_open() -> (master_fd, slave_name)\n    Open a pty master and return the fd, and the filename of the slave end.\n    Deprecated, use openpty() instead.\"\"\"\n\n    try:\n        master_fd, slave_fd = os.openpty()\n    except (AttributeError, OSError):\n        pass\n    else:\n        slave_name = os.ttyname(slave_fd)\n        os.close(slave_fd)\n        return master_fd, slave_name\n\n    return _open_terminal()\n\ndef _open_terminal():\n    \"\"\"Open pty master and return (master_fd, tty_name).\"\"\"\n    for x in 'pqrstuvwxyzPQRST':\n        for y in '0123456789abcdef':\n            pty_name = '/dev/pty' + x + y\n            try:\n                fd = os.open(pty_name, os.O_RDWR)\n            except OSError:\n                continue\n            return (fd, '/dev/tty' + x + y)\n    raise OSError('out of pty devices')\n\ndef slave_open(tty_name):\n    \"\"\"slave_open(tty_name) -> slave_fd\n    Open the pty slave and acquire the controlling terminal, returning\n    opened filedescriptor.\n    Deprecated, use openpty() instead.\"\"\"\n\n    result = os.open(tty_name, os.O_RDWR)\n    try:\n        from fcntl import ioctl, I_PUSH\n    except ImportError:\n        return result\n    try:\n        ioctl(result, I_PUSH, \"ptem\")\n        ioctl(result, I_PUSH, \"ldterm\")\n    except OSError:\n        pass\n    return result\n\ndef fork():\n    \"\"\"fork() -> (pid, master_fd)\n    Fork and make the child a session leader with a controlling terminal.\"\"\"\n\n    try:\n        pid, fd = os.forkpty()\n    except (AttributeError, OSError):\n        pass\n    else:\n        if pid == CHILD:\n            try:\n                os.setsid()\n            except OSError:\n                # os.forkpty() already set us session leader\n                pass\n        return pid, fd\n\n    master_fd, slave_fd = openpty()\n    pid = os.fork()\n    if pid == CHILD:\n        # Establish a new session.\n        os.setsid()\n        os.close(master_fd)\n\n        # Slave becomes stdin/stdout/stderr of child.\n        os.dup2(slave_fd, STDIN_FILENO)\n        os.dup2(slave_fd, STDOUT_FILENO)\n        os.dup2(slave_fd, STDERR_FILENO)\n        if (slave_fd > STDERR_FILENO):\n            os.close (slave_fd)\n\n        # Explicitly open the tty to make it become a controlling tty.\n        tmp_fd = os.open(os.ttyname(STDOUT_FILENO), os.O_RDWR)\n        os.close(tmp_fd)\n    else:\n        os.close(slave_fd)\n\n    # Parent and child process.\n    return pid, master_fd\n\ndef _writen(fd, data):\n    \"\"\"Write all the data to a descriptor.\"\"\"\n    while data:\n        n = os.write(fd, data)\n        data = data[n:]\n\ndef _read(fd):\n    \"\"\"Default read function.\"\"\"\n    return os.read(fd, 1024)\n\ndef _copy(master_fd, master_read=_read, stdin_read=_read):\n    \"\"\"Parent copy loop.\n    Copies\n            pty master -> standard output   (master_read)\n            standard input -> pty master    (stdin_read)\"\"\"\n    fds = [master_fd, STDIN_FILENO]\n    while True:\n        rfds, wfds, xfds = select(fds, [], [])\n        if master_fd in rfds:\n            data = master_read(master_fd)\n            if not data:  # Reached EOF.\n                fds.remove(master_fd)\n            else:\n                os.write(STDOUT_FILENO, data)\n        if STDIN_FILENO in rfds:\n            data = stdin_read(STDIN_FILENO)\n            if not data:\n                fds.remove(STDIN_FILENO)\n            else:\n                _writen(master_fd, data)\n\ndef spawn(argv, master_read=_read, stdin_read=_read):\n    \"\"\"Create a spawned process.\"\"\"\n    if type(argv) == type(''):\n        argv = (argv,)\n    sys.audit('pty.spawn', argv)\n    pid, master_fd = fork()\n    if pid == CHILD:\n        os.execlp(argv[0], *argv)\n    try:\n        mode = tty.tcgetattr(STDIN_FILENO)\n        tty.setraw(STDIN_FILENO)\n        restore = 1\n    except tty.error:    # This is the same as termios.error\n        restore = 0\n    try:\n        _copy(master_fd, master_read, stdin_read)\n    except OSError:\n        if restore:\n            tty.tcsetattr(STDIN_FILENO, tty.TCSAFLUSH, mode)\n\n    os.close(master_fd)\n    return os.waitpid(pid, 0)[1]\n"
  },
  {
    "path": "rd/usr/lib/python3.8/py_compile.py",
    "content": "\"\"\"Routine to \"compile\" a .py file to a .pyc file.\n\nThis module has intimate knowledge of the format of .pyc files.\n\"\"\"\n\nimport enum\nimport importlib._bootstrap_external\nimport importlib.machinery\nimport importlib.util\nimport os\nimport os.path\nimport sys\nimport traceback\n\n__all__ = [\"compile\", \"main\", \"PyCompileError\", \"PycInvalidationMode\"]\n\n\nclass PyCompileError(Exception):\n    \"\"\"Exception raised when an error occurs while attempting to\n    compile the file.\n\n    To raise this exception, use\n\n        raise PyCompileError(exc_type,exc_value,file[,msg])\n\n    where\n\n        exc_type:   exception type to be used in error message\n                    type name can be accesses as class variable\n                    'exc_type_name'\n\n        exc_value:  exception value to be used in error message\n                    can be accesses as class variable 'exc_value'\n\n        file:       name of file being compiled to be used in error message\n                    can be accesses as class variable 'file'\n\n        msg:        string message to be written as error message\n                    If no value is given, a default exception message will be\n                    given, consistent with 'standard' py_compile output.\n                    message (or default) can be accesses as class variable\n                    'msg'\n\n    \"\"\"\n\n    def __init__(self, exc_type, exc_value, file, msg=''):\n        exc_type_name = exc_type.__name__\n        if exc_type is SyntaxError:\n            tbtext = ''.join(traceback.format_exception_only(\n                exc_type, exc_value))\n            errmsg = tbtext.replace('File \"<string>\"', 'File \"%s\"' % file)\n        else:\n            errmsg = \"Sorry: %s: %s\" % (exc_type_name,exc_value)\n\n        Exception.__init__(self,msg or errmsg,exc_type_name,exc_value,file)\n\n        self.exc_type_name = exc_type_name\n        self.exc_value = exc_value\n        self.file = file\n        self.msg = msg or errmsg\n\n    def __str__(self):\n        return self.msg\n\n\nclass PycInvalidationMode(enum.Enum):\n    TIMESTAMP = 1\n    CHECKED_HASH = 2\n    UNCHECKED_HASH = 3\n\n\ndef _get_default_invalidation_mode():\n    if os.environ.get('SOURCE_DATE_EPOCH'):\n        return PycInvalidationMode.CHECKED_HASH\n    else:\n        return PycInvalidationMode.TIMESTAMP\n\n\ndef compile(file, cfile=None, dfile=None, doraise=False, optimize=-1,\n            invalidation_mode=None, quiet=0):\n    \"\"\"Byte-compile one Python source file to Python bytecode.\n\n    :param file: The source file name.\n    :param cfile: The target byte compiled file name.  When not given, this\n        defaults to the PEP 3147/PEP 488 location.\n    :param dfile: Purported file name, i.e. the file name that shows up in\n        error messages.  Defaults to the source file name.\n    :param doraise: Flag indicating whether or not an exception should be\n        raised when a compile error is found.  If an exception occurs and this\n        flag is set to False, a string indicating the nature of the exception\n        will be printed, and the function will return to the caller. If an\n        exception occurs and this flag is set to True, a PyCompileError\n        exception will be raised.\n    :param optimize: The optimization level for the compiler.  Valid values\n        are -1, 0, 1 and 2.  A value of -1 means to use the optimization\n        level of the current interpreter, as given by -O command line options.\n    :param invalidation_mode:\n    :param quiet: Return full output with False or 0, errors only with 1,\n        and no output with 2.\n\n    :return: Path to the resulting byte compiled file.\n\n    Note that it isn't necessary to byte-compile Python modules for\n    execution efficiency -- Python itself byte-compiles a module when\n    it is loaded, and if it can, writes out the bytecode to the\n    corresponding .pyc file.\n\n    However, if a Python installation is shared between users, it is a\n    good idea to byte-compile all modules upon installation, since\n    other users may not be able to write in the source directories,\n    and thus they won't be able to write the .pyc file, and then\n    they would be byte-compiling every module each time it is loaded.\n    This can slow down program start-up considerably.\n\n    See compileall.py for a script/module that uses this module to\n    byte-compile all installed files (or all files in selected\n    directories).\n\n    Do note that FileExistsError is raised if cfile ends up pointing at a\n    non-regular file or symlink. Because the compilation uses a file renaming,\n    the resulting file would be regular and thus not the same type of file as\n    it was previously.\n    \"\"\"\n    if invalidation_mode is None:\n        invalidation_mode = _get_default_invalidation_mode()\n    if cfile is None:\n        if optimize >= 0:\n            optimization = optimize if optimize >= 1 else ''\n            cfile = importlib.util.cache_from_source(file,\n                                                     optimization=optimization)\n        else:\n            cfile = importlib.util.cache_from_source(file)\n    if os.path.islink(cfile):\n        msg = ('{} is a symlink and will be changed into a regular file if '\n               'import writes a byte-compiled file to it')\n        raise FileExistsError(msg.format(cfile))\n    elif os.path.exists(cfile) and not os.path.isfile(cfile):\n        msg = ('{} is a non-regular file and will be changed into a regular '\n               'one if import writes a byte-compiled file to it')\n        raise FileExistsError(msg.format(cfile))\n    loader = importlib.machinery.SourceFileLoader('<py_compile>', file)\n    source_bytes = loader.get_data(file)\n    try:\n        code = loader.source_to_code(source_bytes, dfile or file,\n                                     _optimize=optimize)\n    except Exception as err:\n        py_exc = PyCompileError(err.__class__, err, dfile or file)\n        if quiet < 2:\n            if doraise:\n                raise py_exc\n            else:\n                sys.stderr.write(py_exc.msg + '\\n')\n        return\n    try:\n        dirname = os.path.dirname(cfile)\n        if dirname:\n            os.makedirs(dirname)\n    except FileExistsError:\n        pass\n    if invalidation_mode == PycInvalidationMode.TIMESTAMP:\n        source_stats = loader.path_stats(file)\n        bytecode = importlib._bootstrap_external._code_to_timestamp_pyc(\n            code, source_stats['mtime'], source_stats['size'])\n    else:\n        source_hash = importlib.util.source_hash(source_bytes)\n        bytecode = importlib._bootstrap_external._code_to_hash_pyc(\n            code,\n            source_hash,\n            (invalidation_mode == PycInvalidationMode.CHECKED_HASH),\n        )\n    mode = importlib._bootstrap_external._calc_mode(file)\n    importlib._bootstrap_external._write_atomic(cfile, bytecode, mode)\n    return cfile\n\n\ndef main(args=None):\n    \"\"\"Compile several source files.\n\n    The files named in 'args' (or on the command line, if 'args' is\n    not specified) are compiled and the resulting bytecode is cached\n    in the normal manner.  This function does not search a directory\n    structure to locate source files; it only compiles files named\n    explicitly.  If '-' is the only parameter in args, the list of\n    files is taken from standard input.\n\n    \"\"\"\n    if args is None:\n        args = sys.argv[1:]\n    rv = 0\n    if args == ['-']:\n        while True:\n            filename = sys.stdin.readline()\n            if not filename:\n                break\n            filename = filename.rstrip('\\n')\n            try:\n                compile(filename, doraise=True)\n            except PyCompileError as error:\n                rv = 1\n                if quiet < 2:\n                    sys.stderr.write(\"%s\\n\" % error.msg)\n            except OSError as error:\n                rv = 1\n                if quiet < 2:\n                    sys.stderr.write(\"%s\\n\" % error)\n    else:\n        for filename in args:\n            try:\n                compile(filename, doraise=True)\n            except PyCompileError as error:\n                # return value to indicate at least one failure\n                rv = 1\n                if quiet < 2:\n                    sys.stderr.write(\"%s\\n\" % error.msg)\n    return rv\n\nif __name__ == \"__main__\":\n    sys.exit(main())\n"
  },
  {
    "path": "rd/usr/lib/python3.8/pyclbr.py",
    "content": "\"\"\"Parse a Python module and describe its classes and functions.\n\nParse enough of a Python file to recognize imports and class and\nfunction definitions, and to find out the superclasses of a class.\n\nThe interface consists of a single function:\n    readmodule_ex(module, path=None)\nwhere module is the name of a Python module, and path is an optional\nlist of directories where the module is to be searched.  If present,\npath is prepended to the system search path sys.path.  The return value\nis a dictionary.  The keys of the dictionary are the names of the\nclasses and functions defined in the module (including classes that are\ndefined via the from XXX import YYY construct).  The values are\ninstances of classes Class and Function.  One special key/value pair is\npresent for packages: the key '__path__' has a list as its value which\ncontains the package search path.\n\nClasses and Functions have a common superclass: _Object.  Every instance\nhas the following attributes:\n    module  -- name of the module;\n    name    -- name of the object;\n    file    -- file in which the object is defined;\n    lineno  -- line in the file where the object's definition starts;\n    parent  -- parent of this object, if any;\n    children -- nested objects contained in this object.\nThe 'children' attribute is a dictionary mapping names to objects.\n\nInstances of Function describe functions with the attributes from _Object.\n\nInstances of Class describe classes with the attributes from _Object,\nplus the following:\n    super   -- list of super classes (Class instances if possible);\n    methods -- mapping of method names to beginning line numbers.\nIf the name of a super class is not recognized, the corresponding\nentry in the list of super classes is not a class instance but a\nstring giving the name of the super class.  Since import statements\nare recognized and imported modules are scanned as well, this\nshouldn't happen often.\n\"\"\"\n\nimport io\nimport sys\nimport importlib.util\nimport tokenize\nfrom token import NAME, DEDENT, OP\n\n__all__ = [\"readmodule\", \"readmodule_ex\", \"Class\", \"Function\"]\n\n_modules = {}  # Initialize cache of modules we've seen.\n\n\nclass _Object:\n    \"Information about Python class or function.\"\n    def __init__(self, module, name, file, lineno, parent):\n        self.module = module\n        self.name = name\n        self.file = file\n        self.lineno = lineno\n        self.parent = parent\n        self.children = {}\n\n    def _addchild(self, name, obj):\n        self.children[name] = obj\n\n\nclass Function(_Object):\n    \"Information about a Python function, including methods.\"\n    def __init__(self, module, name, file, lineno, parent=None):\n        _Object.__init__(self, module, name, file, lineno, parent)\n\n\nclass Class(_Object):\n    \"Information about a Python class.\"\n    def __init__(self, module, name, super, file, lineno, parent=None):\n        _Object.__init__(self, module, name, file, lineno, parent)\n        self.super = [] if super is None else super\n        self.methods = {}\n\n    def _addmethod(self, name, lineno):\n        self.methods[name] = lineno\n\n\ndef _nest_function(ob, func_name, lineno):\n    \"Return a Function after nesting within ob.\"\n    newfunc = Function(ob.module, func_name, ob.file, lineno, ob)\n    ob._addchild(func_name, newfunc)\n    if isinstance(ob, Class):\n        ob._addmethod(func_name, lineno)\n    return newfunc\n\ndef _nest_class(ob, class_name, lineno, super=None):\n    \"Return a Class after nesting within ob.\"\n    newclass = Class(ob.module, class_name, super, ob.file, lineno, ob)\n    ob._addchild(class_name, newclass)\n    return newclass\n\ndef readmodule(module, path=None):\n    \"\"\"Return Class objects for the top-level classes in module.\n\n    This is the original interface, before Functions were added.\n    \"\"\"\n\n    res = {}\n    for key, value in _readmodule(module, path or []).items():\n        if isinstance(value, Class):\n            res[key] = value\n    return res\n\ndef readmodule_ex(module, path=None):\n    \"\"\"Return a dictionary with all functions and classes in module.\n\n    Search for module in PATH + sys.path.\n    If possible, include imported superclasses.\n    Do this by reading source, without importing (and executing) it.\n    \"\"\"\n    return _readmodule(module, path or [])\n\ndef _readmodule(module, path, inpackage=None):\n    \"\"\"Do the hard work for readmodule[_ex].\n\n    If inpackage is given, it must be the dotted name of the package in\n    which we are searching for a submodule, and then PATH must be the\n    package search path; otherwise, we are searching for a top-level\n    module, and path is combined with sys.path.\n    \"\"\"\n    # Compute the full module name (prepending inpackage if set).\n    if inpackage is not None:\n        fullmodule = \"%s.%s\" % (inpackage, module)\n    else:\n        fullmodule = module\n\n    # Check in the cache.\n    if fullmodule in _modules:\n        return _modules[fullmodule]\n\n    # Initialize the dict for this module's contents.\n    tree = {}\n\n    # Check if it is a built-in module; we don't do much for these.\n    if module in sys.builtin_module_names and inpackage is None:\n        _modules[module] = tree\n        return tree\n\n    # Check for a dotted module name.\n    i = module.rfind('.')\n    if i >= 0:\n        package = module[:i]\n        submodule = module[i+1:]\n        parent = _readmodule(package, path, inpackage)\n        if inpackage is not None:\n            package = \"%s.%s\" % (inpackage, package)\n        if not '__path__' in parent:\n            raise ImportError('No package named {}'.format(package))\n        return _readmodule(submodule, parent['__path__'], package)\n\n    # Search the path for the module.\n    f = None\n    if inpackage is not None:\n        search_path = path\n    else:\n        search_path = path + sys.path\n    spec = importlib.util._find_spec_from_path(fullmodule, search_path)\n    if spec is None:\n        raise ModuleNotFoundError(f\"no module named {fullmodule!r}\", name=fullmodule)\n    _modules[fullmodule] = tree\n    # Is module a package?\n    if spec.submodule_search_locations is not None:\n        tree['__path__'] = spec.submodule_search_locations\n    try:\n        source = spec.loader.get_source(fullmodule)\n    except (AttributeError, ImportError):\n        # If module is not Python source, we cannot do anything.\n        return tree\n    else:\n        if source is None:\n            return tree\n\n    fname = spec.loader.get_filename(fullmodule)\n    return _create_tree(fullmodule, path, fname, source, tree, inpackage)\n\n\ndef _create_tree(fullmodule, path, fname, source, tree, inpackage):\n    \"\"\"Return the tree for a particular module.\n\n    fullmodule (full module name), inpackage+module, becomes o.module.\n    path is passed to recursive calls of _readmodule.\n    fname becomes o.file.\n    source is tokenized.  Imports cause recursive calls to _readmodule.\n    tree is {} or {'__path__': <submodule search locations>}.\n    inpackage, None or string, is passed to recursive calls of _readmodule.\n\n    The effect of recursive calls is mutation of global _modules.\n    \"\"\"\n    f = io.StringIO(source)\n\n    stack = [] # Initialize stack of (class, indent) pairs.\n\n    g = tokenize.generate_tokens(f.readline)\n    try:\n        for tokentype, token, start, _end, _line in g:\n            if tokentype == DEDENT:\n                lineno, thisindent = start\n                # Close previous nested classes and defs.\n                while stack and stack[-1][1] >= thisindent:\n                    del stack[-1]\n            elif token == 'def':\n                lineno, thisindent = start\n                # Close previous nested classes and defs.\n                while stack and stack[-1][1] >= thisindent:\n                    del stack[-1]\n                tokentype, func_name, start = next(g)[0:3]\n                if tokentype != NAME:\n                    continue  # Skip def with syntax error.\n                cur_func = None\n                if stack:\n                    cur_obj = stack[-1][0]\n                    cur_func = _nest_function(cur_obj, func_name, lineno)\n                else:\n                    # It is just a function.\n                    cur_func = Function(fullmodule, func_name, fname, lineno)\n                    tree[func_name] = cur_func\n                stack.append((cur_func, thisindent))\n            elif token == 'class':\n                lineno, thisindent = start\n                # Close previous nested classes and defs.\n                while stack and stack[-1][1] >= thisindent:\n                    del stack[-1]\n                tokentype, class_name, start = next(g)[0:3]\n                if tokentype != NAME:\n                    continue # Skip class with syntax error.\n                # Parse what follows the class name.\n                tokentype, token, start = next(g)[0:3]\n                inherit = None\n                if token == '(':\n                    names = [] # Initialize list of superclasses.\n                    level = 1\n                    super = [] # Tokens making up current superclass.\n                    while True:\n                        tokentype, token, start = next(g)[0:3]\n                        if token in (')', ',') and level == 1:\n                            n = \"\".join(super)\n                            if n in tree:\n                                # We know this super class.\n                                n = tree[n]\n                            else:\n                                c = n.split('.')\n                                if len(c) > 1:\n                                    # Super class form is module.class:\n                                    # look in module for class.\n                                    m = c[-2]\n                                    c = c[-1]\n                                    if m in _modules:\n                                        d = _modules[m]\n                                        if c in d:\n                                            n = d[c]\n                            names.append(n)\n                            super = []\n                        if token == '(':\n                            level += 1\n                        elif token == ')':\n                            level -= 1\n                            if level == 0:\n                                break\n                        elif token == ',' and level == 1:\n                            pass\n                        # Only use NAME and OP (== dot) tokens for type name.\n                        elif tokentype in (NAME, OP) and level == 1:\n                            super.append(token)\n                        # Expressions in the base list are not supported.\n                    inherit = names\n                if stack:\n                    cur_obj = stack[-1][0]\n                    cur_class = _nest_class(\n                            cur_obj, class_name, lineno, inherit)\n                else:\n                    cur_class = Class(fullmodule, class_name, inherit,\n                                      fname, lineno)\n                    tree[class_name] = cur_class\n                stack.append((cur_class, thisindent))\n            elif token == 'import' and start[1] == 0:\n                modules = _getnamelist(g)\n                for mod, _mod2 in modules:\n                    try:\n                        # Recursively read the imported module.\n                        if inpackage is None:\n                            _readmodule(mod, path)\n                        else:\n                            try:\n                                _readmodule(mod, path, inpackage)\n                            except ImportError:\n                                _readmodule(mod, [])\n                    except:\n                        # If we can't find or parse the imported module,\n                        # too bad -- don't die here.\n                        pass\n            elif token == 'from' and start[1] == 0:\n                mod, token = _getname(g)\n                if not mod or token != \"import\":\n                    continue\n                names = _getnamelist(g)\n                try:\n                    # Recursively read the imported module.\n                    d = _readmodule(mod, path, inpackage)\n                except:\n                    # If we can't find or parse the imported module,\n                    # too bad -- don't die here.\n                    continue\n                # Add any classes that were defined in the imported module\n                # to our name space if they were mentioned in the list.\n                for n, n2 in names:\n                    if n in d:\n                        tree[n2 or n] = d[n]\n                    elif n == '*':\n                        # Don't add names that start with _.\n                        for n in d:\n                            if n[0] != '_':\n                                tree[n] = d[n]\n    except StopIteration:\n        pass\n\n    f.close()\n    return tree\n\n\ndef _getnamelist(g):\n    \"\"\"Return list of (dotted-name, as-name or None) tuples for token source g.\n\n    An as-name is the name that follows 'as' in an as clause.\n    \"\"\"\n    names = []\n    while True:\n        name, token = _getname(g)\n        if not name:\n            break\n        if token == 'as':\n            name2, token = _getname(g)\n        else:\n            name2 = None\n        names.append((name, name2))\n        while token != \",\" and \"\\n\" not in token:\n            token = next(g)[1]\n        if token != \",\":\n            break\n    return names\n\n\ndef _getname(g):\n    \"Return (dotted-name or None, next-token) tuple for token source g.\"\n    parts = []\n    tokentype, token = next(g)[0:2]\n    if tokentype != NAME and token != '*':\n        return (None, token)\n    parts.append(token)\n    while True:\n        tokentype, token = next(g)[0:2]\n        if token != '.':\n            break\n        tokentype, token = next(g)[0:2]\n        if tokentype != NAME:\n            break\n        parts.append(token)\n    return (\".\".join(parts), token)\n\n\ndef _main():\n    \"Print module output (default this file) for quick visual check.\"\n    import os\n    try:\n        mod = sys.argv[1]\n    except:\n        mod = __file__\n    if os.path.exists(mod):\n        path = [os.path.dirname(mod)]\n        mod = os.path.basename(mod)\n        if mod.lower().endswith(\".py\"):\n            mod = mod[:-3]\n    else:\n        path = []\n    tree = readmodule_ex(mod, path)\n    lineno_key = lambda a: getattr(a, 'lineno', 0)\n    objs = sorted(tree.values(), key=lineno_key, reverse=True)\n    indent_level = 2\n    while objs:\n        obj = objs.pop()\n        if isinstance(obj, list):\n            # Value is a __path__ key.\n            continue\n        if not hasattr(obj, 'indent'):\n            obj.indent = 0\n\n        if isinstance(obj, _Object):\n            new_objs = sorted(obj.children.values(),\n                              key=lineno_key, reverse=True)\n            for ob in new_objs:\n                ob.indent = obj.indent + indent_level\n            objs.extend(new_objs)\n        if isinstance(obj, Class):\n            print(\"{}class {} {} {}\"\n                  .format(' ' * obj.indent, obj.name, obj.super, obj.lineno))\n        elif isinstance(obj, Function):\n            print(\"{}def {} {}\".format(' ' * obj.indent, obj.name, obj.lineno))\n\nif __name__ == \"__main__\":\n    _main()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/queue.py",
    "content": "'''A multi-producer, multi-consumer queue.'''\n\nimport threading\nfrom collections import deque\nfrom heapq import heappush, heappop\nfrom time import monotonic as time\ntry:\n    from _queue import SimpleQueue\nexcept ImportError:\n    SimpleQueue = None\n\n__all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue', 'SimpleQueue']\n\n\ntry:\n    from _queue import Empty\nexcept ImportError:\n    class Empty(Exception):\n        'Exception raised by Queue.get(block=0)/get_nowait().'\n        pass\n\nclass Full(Exception):\n    'Exception raised by Queue.put(block=0)/put_nowait().'\n    pass\n\n\nclass Queue:\n    '''Create a queue object with a given maximum size.\n\n    If maxsize is <= 0, the queue size is infinite.\n    '''\n\n    def __init__(self, maxsize=0):\n        self.maxsize = maxsize\n        self._init(maxsize)\n\n        # mutex must be held whenever the queue is mutating.  All methods\n        # that acquire mutex must release it before returning.  mutex\n        # is shared between the three conditions, so acquiring and\n        # releasing the conditions also acquires and releases mutex.\n        self.mutex = threading.Lock()\n\n        # Notify not_empty whenever an item is added to the queue; a\n        # thread waiting to get is notified then.\n        self.not_empty = threading.Condition(self.mutex)\n\n        # Notify not_full whenever an item is removed from the queue;\n        # a thread waiting to put is notified then.\n        self.not_full = threading.Condition(self.mutex)\n\n        # Notify all_tasks_done whenever the number of unfinished tasks\n        # drops to zero; thread waiting to join() is notified to resume\n        self.all_tasks_done = threading.Condition(self.mutex)\n        self.unfinished_tasks = 0\n\n    def task_done(self):\n        '''Indicate that a formerly enqueued task is complete.\n\n        Used by Queue consumer threads.  For each get() used to fetch a task,\n        a subsequent call to task_done() tells the queue that the processing\n        on the task is complete.\n\n        If a join() is currently blocking, it will resume when all items\n        have been processed (meaning that a task_done() call was received\n        for every item that had been put() into the queue).\n\n        Raises a ValueError if called more times than there were items\n        placed in the queue.\n        '''\n        with self.all_tasks_done:\n            unfinished = self.unfinished_tasks - 1\n            if unfinished <= 0:\n                if unfinished < 0:\n                    raise ValueError('task_done() called too many times')\n                self.all_tasks_done.notify_all()\n            self.unfinished_tasks = unfinished\n\n    def join(self):\n        '''Blocks until all items in the Queue have been gotten and processed.\n\n        The count of unfinished tasks goes up whenever an item is added to the\n        queue. The count goes down whenever a consumer thread calls task_done()\n        to indicate the item was retrieved and all work on it is complete.\n\n        When the count of unfinished tasks drops to zero, join() unblocks.\n        '''\n        with self.all_tasks_done:\n            while self.unfinished_tasks:\n                self.all_tasks_done.wait()\n\n    def qsize(self):\n        '''Return the approximate size of the queue (not reliable!).'''\n        with self.mutex:\n            return self._qsize()\n\n    def empty(self):\n        '''Return True if the queue is empty, False otherwise (not reliable!).\n\n        This method is likely to be removed at some point.  Use qsize() == 0\n        as a direct substitute, but be aware that either approach risks a race\n        condition where a queue can grow before the result of empty() or\n        qsize() can be used.\n\n        To create code that needs to wait for all queued tasks to be\n        completed, the preferred technique is to use the join() method.\n        '''\n        with self.mutex:\n            return not self._qsize()\n\n    def full(self):\n        '''Return True if the queue is full, False otherwise (not reliable!).\n\n        This method is likely to be removed at some point.  Use qsize() >= n\n        as a direct substitute, but be aware that either approach risks a race\n        condition where a queue can shrink before the result of full() or\n        qsize() can be used.\n        '''\n        with self.mutex:\n            return 0 < self.maxsize <= self._qsize()\n\n    def put(self, item, block=True, timeout=None):\n        '''Put an item into the queue.\n\n        If optional args 'block' is true and 'timeout' is None (the default),\n        block if necessary until a free slot is available. If 'timeout' is\n        a non-negative number, it blocks at most 'timeout' seconds and raises\n        the Full exception if no free slot was available within that time.\n        Otherwise ('block' is false), put an item on the queue if a free slot\n        is immediately available, else raise the Full exception ('timeout'\n        is ignored in that case).\n        '''\n        with self.not_full:\n            if self.maxsize > 0:\n                if not block:\n                    if self._qsize() >= self.maxsize:\n                        raise Full\n                elif timeout is None:\n                    while self._qsize() >= self.maxsize:\n                        self.not_full.wait()\n                elif timeout < 0:\n                    raise ValueError(\"'timeout' must be a non-negative number\")\n                else:\n                    endtime = time() + timeout\n                    while self._qsize() >= self.maxsize:\n                        remaining = endtime - time()\n                        if remaining <= 0.0:\n                            raise Full\n                        self.not_full.wait(remaining)\n            self._put(item)\n            self.unfinished_tasks += 1\n            self.not_empty.notify()\n\n    def get(self, block=True, timeout=None):\n        '''Remove and return an item from the queue.\n\n        If optional args 'block' is true and 'timeout' is None (the default),\n        block if necessary until an item is available. If 'timeout' is\n        a non-negative number, it blocks at most 'timeout' seconds and raises\n        the Empty exception if no item was available within that time.\n        Otherwise ('block' is false), return an item if one is immediately\n        available, else raise the Empty exception ('timeout' is ignored\n        in that case).\n        '''\n        with self.not_empty:\n            if not block:\n                if not self._qsize():\n                    raise Empty\n            elif timeout is None:\n                while not self._qsize():\n                    self.not_empty.wait()\n            elif timeout < 0:\n                raise ValueError(\"'timeout' must be a non-negative number\")\n            else:\n                endtime = time() + timeout\n                while not self._qsize():\n                    remaining = endtime - time()\n                    if remaining <= 0.0:\n                        raise Empty\n                    self.not_empty.wait(remaining)\n            item = self._get()\n            self.not_full.notify()\n            return item\n\n    def put_nowait(self, item):\n        '''Put an item into the queue without blocking.\n\n        Only enqueue the item if a free slot is immediately available.\n        Otherwise raise the Full exception.\n        '''\n        return self.put(item, block=False)\n\n    def get_nowait(self):\n        '''Remove and return an item from the queue without blocking.\n\n        Only get an item if one is immediately available. Otherwise\n        raise the Empty exception.\n        '''\n        return self.get(block=False)\n\n    # Override these methods to implement other queue organizations\n    # (e.g. stack or priority queue).\n    # These will only be called with appropriate locks held\n\n    # Initialize the queue representation\n    def _init(self, maxsize):\n        self.queue = deque()\n\n    def _qsize(self):\n        return len(self.queue)\n\n    # Put a new item in the queue\n    def _put(self, item):\n        self.queue.append(item)\n\n    # Get an item from the queue\n    def _get(self):\n        return self.queue.popleft()\n\n\nclass PriorityQueue(Queue):\n    '''Variant of Queue that retrieves open entries in priority order (lowest first).\n\n    Entries are typically tuples of the form:  (priority number, data).\n    '''\n\n    def _init(self, maxsize):\n        self.queue = []\n\n    def _qsize(self):\n        return len(self.queue)\n\n    def _put(self, item):\n        heappush(self.queue, item)\n\n    def _get(self):\n        return heappop(self.queue)\n\n\nclass LifoQueue(Queue):\n    '''Variant of Queue that retrieves most recently added entries first.'''\n\n    def _init(self, maxsize):\n        self.queue = []\n\n    def _qsize(self):\n        return len(self.queue)\n\n    def _put(self, item):\n        self.queue.append(item)\n\n    def _get(self):\n        return self.queue.pop()\n\n\nclass _PySimpleQueue:\n    '''Simple, unbounded FIFO queue.\n\n    This pure Python implementation is not reentrant.\n    '''\n    # Note: while this pure Python version provides fairness\n    # (by using a threading.Semaphore which is itself fair, being based\n    #  on threading.Condition), fairness is not part of the API contract.\n    # This allows the C version to use a different implementation.\n\n    def __init__(self):\n        self._queue = deque()\n        self._count = threading.Semaphore(0)\n\n    def put(self, item, block=True, timeout=None):\n        '''Put the item on the queue.\n\n        The optional 'block' and 'timeout' arguments are ignored, as this method\n        never blocks.  They are provided for compatibility with the Queue class.\n        '''\n        self._queue.append(item)\n        self._count.release()\n\n    def get(self, block=True, timeout=None):\n        '''Remove and return an item from the queue.\n\n        If optional args 'block' is true and 'timeout' is None (the default),\n        block if necessary until an item is available. If 'timeout' is\n        a non-negative number, it blocks at most 'timeout' seconds and raises\n        the Empty exception if no item was available within that time.\n        Otherwise ('block' is false), return an item if one is immediately\n        available, else raise the Empty exception ('timeout' is ignored\n        in that case).\n        '''\n        if timeout is not None and timeout < 0:\n            raise ValueError(\"'timeout' must be a non-negative number\")\n        if not self._count.acquire(block, timeout):\n            raise Empty\n        return self._queue.popleft()\n\n    def put_nowait(self, item):\n        '''Put an item into the queue without blocking.\n\n        This is exactly equivalent to `put(item)` and is only provided\n        for compatibility with the Queue class.\n        '''\n        return self.put(item, block=False)\n\n    def get_nowait(self):\n        '''Remove and return an item from the queue without blocking.\n\n        Only get an item if one is immediately available. Otherwise\n        raise the Empty exception.\n        '''\n        return self.get(block=False)\n\n    def empty(self):\n        '''Return True if the queue is empty, False otherwise (not reliable!).'''\n        return len(self._queue) == 0\n\n    def qsize(self):\n        '''Return the approximate size of the queue (not reliable!).'''\n        return len(self._queue)\n\n\nif SimpleQueue is None:\n    SimpleQueue = _PySimpleQueue\n"
  },
  {
    "path": "rd/usr/lib/python3.8/quopri.py",
    "content": "#! /usr/bin/env python3\n\n\"\"\"Conversions to/from quoted-printable transport encoding as per RFC 1521.\"\"\"\n\n# (Dec 1991 version).\n\n__all__ = [\"encode\", \"decode\", \"encodestring\", \"decodestring\"]\n\nESCAPE = b'='\nMAXLINESIZE = 76\nHEX = b'0123456789ABCDEF'\nEMPTYSTRING = b''\n\ntry:\n    from binascii import a2b_qp, b2a_qp\nexcept ImportError:\n    a2b_qp = None\n    b2a_qp = None\n\n\ndef needsquoting(c, quotetabs, header):\n    \"\"\"Decide whether a particular byte ordinal needs to be quoted.\n\n    The 'quotetabs' flag indicates whether embedded tabs and spaces should be\n    quoted.  Note that line-ending tabs and spaces are always encoded, as per\n    RFC 1521.\n    \"\"\"\n    assert isinstance(c, bytes)\n    if c in b' \\t':\n        return quotetabs\n    # if header, we have to escape _ because _ is used to escape space\n    if c == b'_':\n        return header\n    return c == ESCAPE or not (b' ' <= c <= b'~')\n\ndef quote(c):\n    \"\"\"Quote a single character.\"\"\"\n    assert isinstance(c, bytes) and len(c)==1\n    c = ord(c)\n    return ESCAPE + bytes((HEX[c//16], HEX[c%16]))\n\n\n\ndef encode(input, output, quotetabs, header=False):\n    \"\"\"Read 'input', apply quoted-printable encoding, and write to 'output'.\n\n    'input' and 'output' are binary file objects. The 'quotetabs' flag\n    indicates whether embedded tabs and spaces should be quoted. Note that\n    line-ending tabs and spaces are always encoded, as per RFC 1521.\n    The 'header' flag indicates whether we are encoding spaces as _ as per RFC\n    1522.\"\"\"\n\n    if b2a_qp is not None:\n        data = input.read()\n        odata = b2a_qp(data, quotetabs=quotetabs, header=header)\n        output.write(odata)\n        return\n\n    def write(s, output=output, lineEnd=b'\\n'):\n        # RFC 1521 requires that the line ending in a space or tab must have\n        # that trailing character encoded.\n        if s and s[-1:] in b' \\t':\n            output.write(s[:-1] + quote(s[-1:]) + lineEnd)\n        elif s == b'.':\n            output.write(quote(s) + lineEnd)\n        else:\n            output.write(s + lineEnd)\n\n    prevline = None\n    while 1:\n        line = input.readline()\n        if not line:\n            break\n        outline = []\n        # Strip off any readline induced trailing newline\n        stripped = b''\n        if line[-1:] == b'\\n':\n            line = line[:-1]\n            stripped = b'\\n'\n        # Calculate the un-length-limited encoded line\n        for c in line:\n            c = bytes((c,))\n            if needsquoting(c, quotetabs, header):\n                c = quote(c)\n            if header and c == b' ':\n                outline.append(b'_')\n            else:\n                outline.append(c)\n        # First, write out the previous line\n        if prevline is not None:\n            write(prevline)\n        # Now see if we need any soft line breaks because of RFC-imposed\n        # length limitations.  Then do the thisline->prevline dance.\n        thisline = EMPTYSTRING.join(outline)\n        while len(thisline) > MAXLINESIZE:\n            # Don't forget to include the soft line break `=' sign in the\n            # length calculation!\n            write(thisline[:MAXLINESIZE-1], lineEnd=b'=\\n')\n            thisline = thisline[MAXLINESIZE-1:]\n        # Write out the current line\n        prevline = thisline\n    # Write out the last line, without a trailing newline\n    if prevline is not None:\n        write(prevline, lineEnd=stripped)\n\ndef encodestring(s, quotetabs=False, header=False):\n    if b2a_qp is not None:\n        return b2a_qp(s, quotetabs=quotetabs, header=header)\n    from io import BytesIO\n    infp = BytesIO(s)\n    outfp = BytesIO()\n    encode(infp, outfp, quotetabs, header)\n    return outfp.getvalue()\n\n\n\ndef decode(input, output, header=False):\n    \"\"\"Read 'input', apply quoted-printable decoding, and write to 'output'.\n    'input' and 'output' are binary file objects.\n    If 'header' is true, decode underscore as space (per RFC 1522).\"\"\"\n\n    if a2b_qp is not None:\n        data = input.read()\n        odata = a2b_qp(data, header=header)\n        output.write(odata)\n        return\n\n    new = b''\n    while 1:\n        line = input.readline()\n        if not line: break\n        i, n = 0, len(line)\n        if n > 0 and line[n-1:n] == b'\\n':\n            partial = 0; n = n-1\n            # Strip trailing whitespace\n            while n > 0 and line[n-1:n] in b\" \\t\\r\":\n                n = n-1\n        else:\n            partial = 1\n        while i < n:\n            c = line[i:i+1]\n            if c == b'_' and header:\n                new = new + b' '; i = i+1\n            elif c != ESCAPE:\n                new = new + c; i = i+1\n            elif i+1 == n and not partial:\n                partial = 1; break\n            elif i+1 < n and line[i+1:i+2] == ESCAPE:\n                new = new + ESCAPE; i = i+2\n            elif i+2 < n and ishex(line[i+1:i+2]) and ishex(line[i+2:i+3]):\n                new = new + bytes((unhex(line[i+1:i+3]),)); i = i+3\n            else: # Bad escape sequence -- leave it in\n                new = new + c; i = i+1\n        if not partial:\n            output.write(new + b'\\n')\n            new = b''\n    if new:\n        output.write(new)\n\ndef decodestring(s, header=False):\n    if a2b_qp is not None:\n        return a2b_qp(s, header=header)\n    from io import BytesIO\n    infp = BytesIO(s)\n    outfp = BytesIO()\n    decode(infp, outfp, header=header)\n    return outfp.getvalue()\n\n\n\n# Other helper functions\ndef ishex(c):\n    \"\"\"Return true if the byte ordinal 'c' is a hexadecimal digit in ASCII.\"\"\"\n    assert isinstance(c, bytes)\n    return b'0' <= c <= b'9' or b'a' <= c <= b'f' or b'A' <= c <= b'F'\n\ndef unhex(s):\n    \"\"\"Get the integer value of a hexadecimal number.\"\"\"\n    bits = 0\n    for c in s:\n        c = bytes((c,))\n        if b'0' <= c <= b'9':\n            i = ord('0')\n        elif b'a' <= c <= b'f':\n            i = ord('a')-10\n        elif b'A' <= c <= b'F':\n            i = ord(b'A')-10\n        else:\n            assert False, \"non-hex digit \"+repr(c)\n        bits = bits*16 + (ord(c) - i)\n    return bits\n\n\n\ndef main():\n    import sys\n    import getopt\n    try:\n        opts, args = getopt.getopt(sys.argv[1:], 'td')\n    except getopt.error as msg:\n        sys.stdout = sys.stderr\n        print(msg)\n        print(\"usage: quopri [-t | -d] [file] ...\")\n        print(\"-t: quote tabs\")\n        print(\"-d: decode; default encode\")\n        sys.exit(2)\n    deco = 0\n    tabs = 0\n    for o, a in opts:\n        if o == '-t': tabs = 1\n        if o == '-d': deco = 1\n    if tabs and deco:\n        sys.stdout = sys.stderr\n        print(\"-t and -d are mutually exclusive\")\n        sys.exit(2)\n    if not args: args = ['-']\n    sts = 0\n    for file in args:\n        if file == '-':\n            fp = sys.stdin.buffer\n        else:\n            try:\n                fp = open(file, \"rb\")\n            except OSError as msg:\n                sys.stderr.write(\"%s: can't open (%s)\\n\" % (file, msg))\n                sts = 1\n                continue\n        try:\n            if deco:\n                decode(fp, sys.stdout.buffer)\n            else:\n                encode(fp, sys.stdout.buffer, tabs)\n        finally:\n            if file != '-':\n                fp.close()\n    if sts:\n        sys.exit(sts)\n\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/random.py",
    "content": "\"\"\"Random variable generators.\n\n    integers\n    --------\n           uniform within range\n\n    sequences\n    ---------\n           pick random element\n           pick random sample\n           pick weighted random sample\n           generate random permutation\n\n    distributions on the real line:\n    ------------------------------\n           uniform\n           triangular\n           normal (Gaussian)\n           lognormal\n           negative exponential\n           gamma\n           beta\n           pareto\n           Weibull\n\n    distributions on the circle (angles 0 to 2pi)\n    ---------------------------------------------\n           circular uniform\n           von Mises\n\nGeneral notes on the underlying Mersenne Twister core generator:\n\n* The period is 2**19937-1.\n* It is one of the most extensively tested generators in existence.\n* The random() method is implemented in C, executes in a single Python step,\n  and is, therefore, threadsafe.\n\n\"\"\"\n\nfrom warnings import warn as _warn\nfrom math import log as _log, exp as _exp, pi as _pi, e as _e, ceil as _ceil\nfrom math import sqrt as _sqrt, acos as _acos, cos as _cos, sin as _sin\nfrom os import urandom as _urandom\nfrom _collections_abc import Set as _Set, Sequence as _Sequence\nfrom itertools import accumulate as _accumulate, repeat as _repeat\nfrom bisect import bisect as _bisect\nimport os as _os\n\ntry:\n    # hashlib is pretty heavy to load, try lean internal module first\n    from _sha512 import sha512 as _sha512\nexcept ImportError:\n    # fallback to official implementation\n    from hashlib import sha512 as _sha512\n\n\n__all__ = [\"Random\",\"seed\",\"random\",\"uniform\",\"randint\",\"choice\",\"sample\",\n           \"randrange\",\"shuffle\",\"normalvariate\",\"lognormvariate\",\n           \"expovariate\",\"vonmisesvariate\",\"gammavariate\",\"triangular\",\n           \"gauss\",\"betavariate\",\"paretovariate\",\"weibullvariate\",\n           \"getstate\",\"setstate\", \"getrandbits\", \"choices\",\n           \"SystemRandom\"]\n\nNV_MAGICCONST = 4 * _exp(-0.5)/_sqrt(2.0)\nTWOPI = 2.0*_pi\nLOG4 = _log(4.0)\nSG_MAGICCONST = 1.0 + _log(4.5)\nBPF = 53        # Number of bits in a float\nRECIP_BPF = 2**-BPF\n\n\n# Translated by Guido van Rossum from C source provided by\n# Adrian Baddeley.  Adapted by Raymond Hettinger for use with\n# the Mersenne Twister  and os.urandom() core generators.\n\nimport _random\n\nclass Random(_random.Random):\n    \"\"\"Random number generator base class used by bound module functions.\n\n    Used to instantiate instances of Random to get generators that don't\n    share state.\n\n    Class Random can also be subclassed if you want to use a different basic\n    generator of your own devising: in that case, override the following\n    methods:  random(), seed(), getstate(), and setstate().\n    Optionally, implement a getrandbits() method so that randrange()\n    can cover arbitrarily large ranges.\n\n    \"\"\"\n\n    VERSION = 3     # used by getstate/setstate\n\n    def __init__(self, x=None):\n        \"\"\"Initialize an instance.\n\n        Optional argument x controls seeding, as for Random.seed().\n        \"\"\"\n\n        self.seed(x)\n        self.gauss_next = None\n\n    def __init_subclass__(cls, /, **kwargs):\n        \"\"\"Control how subclasses generate random integers.\n\n        The algorithm a subclass can use depends on the random() and/or\n        getrandbits() implementation available to it and determines\n        whether it can generate random integers from arbitrarily large\n        ranges.\n        \"\"\"\n\n        for c in cls.__mro__:\n            if '_randbelow' in c.__dict__:\n                # just inherit it\n                break\n            if 'getrandbits' in c.__dict__:\n                cls._randbelow = cls._randbelow_with_getrandbits\n                break\n            if 'random' in c.__dict__:\n                cls._randbelow = cls._randbelow_without_getrandbits\n                break\n\n    def seed(self, a=None, version=2):\n        \"\"\"Initialize internal state from hashable object.\n\n        None or no argument seeds from current time or from an operating\n        system specific randomness source if available.\n\n        If *a* is an int, all bits are used.\n\n        For version 2 (the default), all of the bits are used if *a* is a str,\n        bytes, or bytearray.  For version 1 (provided for reproducing random\n        sequences from older versions of Python), the algorithm for str and\n        bytes generates a narrower range of seeds.\n\n        \"\"\"\n\n        if version == 1 and isinstance(a, (str, bytes)):\n            a = a.decode('latin-1') if isinstance(a, bytes) else a\n            x = ord(a[0]) << 7 if a else 0\n            for c in map(ord, a):\n                x = ((1000003 * x) ^ c) & 0xFFFFFFFFFFFFFFFF\n            x ^= len(a)\n            a = -2 if x == -1 else x\n\n        if version == 2 and isinstance(a, (str, bytes, bytearray)):\n            if isinstance(a, str):\n                a = a.encode()\n            a += _sha512(a).digest()\n            a = int.from_bytes(a, 'big')\n\n        super().seed(a)\n        self.gauss_next = None\n\n    def getstate(self):\n        \"\"\"Return internal state; can be passed to setstate() later.\"\"\"\n        return self.VERSION, super().getstate(), self.gauss_next\n\n    def setstate(self, state):\n        \"\"\"Restore internal state from object returned by getstate().\"\"\"\n        version = state[0]\n        if version == 3:\n            version, internalstate, self.gauss_next = state\n            super().setstate(internalstate)\n        elif version == 2:\n            version, internalstate, self.gauss_next = state\n            # In version 2, the state was saved as signed ints, which causes\n            #   inconsistencies between 32/64-bit systems. The state is\n            #   really unsigned 32-bit ints, so we convert negative ints from\n            #   version 2 to positive longs for version 3.\n            try:\n                internalstate = tuple(x % (2**32) for x in internalstate)\n            except ValueError as e:\n                raise TypeError from e\n            super().setstate(internalstate)\n        else:\n            raise ValueError(\"state with version %s passed to \"\n                             \"Random.setstate() of version %s\" %\n                             (version, self.VERSION))\n\n## ---- Methods below this point do not need to be overridden when\n## ---- subclassing for the purpose of using a different core generator.\n\n## -------------------- pickle support  -------------------\n\n    # Issue 17489: Since __reduce__ was defined to fix #759889 this is no\n    # longer called; we leave it here because it has been here since random was\n    # rewritten back in 2001 and why risk breaking something.\n    def __getstate__(self): # for pickle\n        return self.getstate()\n\n    def __setstate__(self, state):  # for pickle\n        self.setstate(state)\n\n    def __reduce__(self):\n        return self.__class__, (), self.getstate()\n\n## -------------------- integer methods  -------------------\n\n    def randrange(self, start, stop=None, step=1, _int=int):\n        \"\"\"Choose a random item from range(start, stop[, step]).\n\n        This fixes the problem with randint() which includes the\n        endpoint; in Python this is usually not what you want.\n\n        \"\"\"\n\n        # This code is a bit messy to make it fast for the\n        # common case while still doing adequate error checking.\n        istart = _int(start)\n        if istart != start:\n            raise ValueError(\"non-integer arg 1 for randrange()\")\n        if stop is None:\n            if istart > 0:\n                return self._randbelow(istart)\n            raise ValueError(\"empty range for randrange()\")\n\n        # stop argument supplied.\n        istop = _int(stop)\n        if istop != stop:\n            raise ValueError(\"non-integer stop for randrange()\")\n        width = istop - istart\n        if step == 1 and width > 0:\n            return istart + self._randbelow(width)\n        if step == 1:\n            raise ValueError(\"empty range for randrange() (%d, %d, %d)\" % (istart, istop, width))\n\n        # Non-unit step argument supplied.\n        istep = _int(step)\n        if istep != step:\n            raise ValueError(\"non-integer step for randrange()\")\n        if istep > 0:\n            n = (width + istep - 1) // istep\n        elif istep < 0:\n            n = (width + istep + 1) // istep\n        else:\n            raise ValueError(\"zero step for randrange()\")\n\n        if n <= 0:\n            raise ValueError(\"empty range for randrange()\")\n\n        return istart + istep*self._randbelow(n)\n\n    def randint(self, a, b):\n        \"\"\"Return random integer in range [a, b], including both end points.\n        \"\"\"\n\n        return self.randrange(a, b+1)\n\n    def _randbelow_with_getrandbits(self, n):\n        \"Return a random int in the range [0,n).  Raises ValueError if n==0.\"\n\n        getrandbits = self.getrandbits\n        k = n.bit_length()  # don't use (n-1) here because n can be 1\n        r = getrandbits(k)          # 0 <= r < 2**k\n        while r >= n:\n            r = getrandbits(k)\n        return r\n\n    def _randbelow_without_getrandbits(self, n, int=int, maxsize=1<<BPF):\n        \"\"\"Return a random int in the range [0,n).  Raises ValueError if n==0.\n\n        The implementation does not use getrandbits, but only random.\n        \"\"\"\n\n        random = self.random\n        if n >= maxsize:\n            _warn(\"Underlying random() generator does not supply \\n\"\n                \"enough bits to choose from a population range this large.\\n\"\n                \"To remove the range limitation, add a getrandbits() method.\")\n            return int(random() * n)\n        if n == 0:\n            raise ValueError(\"Boundary cannot be zero\")\n        rem = maxsize % n\n        limit = (maxsize - rem) / maxsize   # int(limit * maxsize) % n == 0\n        r = random()\n        while r >= limit:\n            r = random()\n        return int(r*maxsize) % n\n\n    _randbelow = _randbelow_with_getrandbits\n\n## -------------------- sequence methods  -------------------\n\n    def choice(self, seq):\n        \"\"\"Choose a random element from a non-empty sequence.\"\"\"\n        try:\n            i = self._randbelow(len(seq))\n        except ValueError:\n            raise IndexError('Cannot choose from an empty sequence') from None\n        return seq[i]\n\n    def shuffle(self, x, random=None):\n        \"\"\"Shuffle list x in place, and return None.\n\n        Optional argument random is a 0-argument function returning a\n        random float in [0.0, 1.0); if it is the default None, the\n        standard random.random will be used.\n\n        \"\"\"\n\n        if random is None:\n            randbelow = self._randbelow\n            for i in reversed(range(1, len(x))):\n                # pick an element in x[:i+1] with which to exchange x[i]\n                j = randbelow(i+1)\n                x[i], x[j] = x[j], x[i]\n        else:\n            _int = int\n            for i in reversed(range(1, len(x))):\n                # pick an element in x[:i+1] with which to exchange x[i]\n                j = _int(random() * (i+1))\n                x[i], x[j] = x[j], x[i]\n\n    def sample(self, population, k):\n        \"\"\"Chooses k unique random elements from a population sequence or set.\n\n        Returns a new list containing elements from the population while\n        leaving the original population unchanged.  The resulting list is\n        in selection order so that all sub-slices will also be valid random\n        samples.  This allows raffle winners (the sample) to be partitioned\n        into grand prize and second place winners (the subslices).\n\n        Members of the population need not be hashable or unique.  If the\n        population contains repeats, then each occurrence is a possible\n        selection in the sample.\n\n        To choose a sample in a range of integers, use range as an argument.\n        This is especially fast and space efficient for sampling from a\n        large population:   sample(range(10000000), 60)\n        \"\"\"\n\n        # Sampling without replacement entails tracking either potential\n        # selections (the pool) in a list or previous selections in a set.\n\n        # When the number of selections is small compared to the\n        # population, then tracking selections is efficient, requiring\n        # only a small set and an occasional reselection.  For\n        # a larger number of selections, the pool tracking method is\n        # preferred since the list takes less space than the\n        # set and it doesn't suffer from frequent reselections.\n\n        # The number of calls to _randbelow() is kept at or near k, the\n        # theoretical minimum.  This is important because running time\n        # is dominated by _randbelow() and because it extracts the\n        # least entropy from the underlying random number generators.\n\n        # Memory requirements are kept to the smaller of a k-length\n        # set or an n-length list.\n\n        # There are other sampling algorithms that do not require\n        # auxiliary memory, but they were rejected because they made\n        # too many calls to _randbelow(), making them slower and\n        # causing them to eat more entropy than necessary.\n\n        if isinstance(population, _Set):\n            population = tuple(population)\n        if not isinstance(population, _Sequence):\n            raise TypeError(\"Population must be a sequence or set.  For dicts, use list(d).\")\n        randbelow = self._randbelow\n        n = len(population)\n        if not 0 <= k <= n:\n            raise ValueError(\"Sample larger than population or is negative\")\n        result = [None] * k\n        setsize = 21        # size of a small set minus size of an empty list\n        if k > 5:\n            setsize += 4 ** _ceil(_log(k * 3, 4)) # table size for big sets\n        if n <= setsize:\n            # An n-length list is smaller than a k-length set\n            pool = list(population)\n            for i in range(k):         # invariant:  non-selected at [0,n-i)\n                j = randbelow(n-i)\n                result[i] = pool[j]\n                pool[j] = pool[n-i-1]   # move non-selected item into vacancy\n        else:\n            selected = set()\n            selected_add = selected.add\n            for i in range(k):\n                j = randbelow(n)\n                while j in selected:\n                    j = randbelow(n)\n                selected_add(j)\n                result[i] = population[j]\n        return result\n\n    def choices(self, population, weights=None, *, cum_weights=None, k=1):\n        \"\"\"Return a k sized list of population elements chosen with replacement.\n\n        If the relative weights or cumulative weights are not specified,\n        the selections are made with equal probability.\n\n        \"\"\"\n        random = self.random\n        n = len(population)\n        if cum_weights is None:\n            if weights is None:\n                _int = int\n                n += 0.0    # convert to float for a small speed improvement\n                return [population[_int(random() * n)] for i in _repeat(None, k)]\n            cum_weights = list(_accumulate(weights))\n        elif weights is not None:\n            raise TypeError('Cannot specify both weights and cumulative weights')\n        if len(cum_weights) != n:\n            raise ValueError('The number of weights does not match the population')\n        bisect = _bisect\n        total = cum_weights[-1] + 0.0   # convert to float\n        hi = n - 1\n        return [population[bisect(cum_weights, random() * total, 0, hi)]\n                for i in _repeat(None, k)]\n\n## -------------------- real-valued distributions  -------------------\n\n## -------------------- uniform distribution -------------------\n\n    def uniform(self, a, b):\n        \"Get a random number in the range [a, b) or [a, b] depending on rounding.\"\n        return a + (b-a) * self.random()\n\n## -------------------- triangular --------------------\n\n    def triangular(self, low=0.0, high=1.0, mode=None):\n        \"\"\"Triangular distribution.\n\n        Continuous distribution bounded by given lower and upper limits,\n        and having a given mode value in-between.\n\n        http://en.wikipedia.org/wiki/Triangular_distribution\n\n        \"\"\"\n        u = self.random()\n        try:\n            c = 0.5 if mode is None else (mode - low) / (high - low)\n        except ZeroDivisionError:\n            return low\n        if u > c:\n            u = 1.0 - u\n            c = 1.0 - c\n            low, high = high, low\n        return low + (high - low) * _sqrt(u * c)\n\n## -------------------- normal distribution --------------------\n\n    def normalvariate(self, mu, sigma):\n        \"\"\"Normal distribution.\n\n        mu is the mean, and sigma is the standard deviation.\n\n        \"\"\"\n        # mu = mean, sigma = standard deviation\n\n        # Uses Kinderman and Monahan method. Reference: Kinderman,\n        # A.J. and Monahan, J.F., \"Computer generation of random\n        # variables using the ratio of uniform deviates\", ACM Trans\n        # Math Software, 3, (1977), pp257-260.\n\n        random = self.random\n        while 1:\n            u1 = random()\n            u2 = 1.0 - random()\n            z = NV_MAGICCONST*(u1-0.5)/u2\n            zz = z*z/4.0\n            if zz <= -_log(u2):\n                break\n        return mu + z*sigma\n\n## -------------------- lognormal distribution --------------------\n\n    def lognormvariate(self, mu, sigma):\n        \"\"\"Log normal distribution.\n\n        If you take the natural logarithm of this distribution, you'll get a\n        normal distribution with mean mu and standard deviation sigma.\n        mu can have any value, and sigma must be greater than zero.\n\n        \"\"\"\n        return _exp(self.normalvariate(mu, sigma))\n\n## -------------------- exponential distribution --------------------\n\n    def expovariate(self, lambd):\n        \"\"\"Exponential distribution.\n\n        lambd is 1.0 divided by the desired mean.  It should be\n        nonzero.  (The parameter would be called \"lambda\", but that is\n        a reserved word in Python.)  Returned values range from 0 to\n        positive infinity if lambd is positive, and from negative\n        infinity to 0 if lambd is negative.\n\n        \"\"\"\n        # lambd: rate lambd = 1/mean\n        # ('lambda' is a Python reserved word)\n\n        # we use 1-random() instead of random() to preclude the\n        # possibility of taking the log of zero.\n        return -_log(1.0 - self.random())/lambd\n\n## -------------------- von Mises distribution --------------------\n\n    def vonmisesvariate(self, mu, kappa):\n        \"\"\"Circular data distribution.\n\n        mu is the mean angle, expressed in radians between 0 and 2*pi, and\n        kappa is the concentration parameter, which must be greater than or\n        equal to zero.  If kappa is equal to zero, this distribution reduces\n        to a uniform random angle over the range 0 to 2*pi.\n\n        \"\"\"\n        # mu:    mean angle (in radians between 0 and 2*pi)\n        # kappa: concentration parameter kappa (>= 0)\n        # if kappa = 0 generate uniform random angle\n\n        # Based upon an algorithm published in: Fisher, N.I.,\n        # \"Statistical Analysis of Circular Data\", Cambridge\n        # University Press, 1993.\n\n        # Thanks to Magnus Kessler for a correction to the\n        # implementation of step 4.\n\n        random = self.random\n        if kappa <= 1e-6:\n            return TWOPI * random()\n\n        s = 0.5 / kappa\n        r = s + _sqrt(1.0 + s * s)\n\n        while 1:\n            u1 = random()\n            z = _cos(_pi * u1)\n\n            d = z / (r + z)\n            u2 = random()\n            if u2 < 1.0 - d * d or u2 <= (1.0 - d) * _exp(d):\n                break\n\n        q = 1.0 / r\n        f = (q + z) / (1.0 + q * z)\n        u3 = random()\n        if u3 > 0.5:\n            theta = (mu + _acos(f)) % TWOPI\n        else:\n            theta = (mu - _acos(f)) % TWOPI\n\n        return theta\n\n## -------------------- gamma distribution --------------------\n\n    def gammavariate(self, alpha, beta):\n        \"\"\"Gamma distribution.  Not the gamma function!\n\n        Conditions on the parameters are alpha > 0 and beta > 0.\n\n        The probability distribution function is:\n\n                    x ** (alpha - 1) * math.exp(-x / beta)\n          pdf(x) =  --------------------------------------\n                      math.gamma(alpha) * beta ** alpha\n\n        \"\"\"\n\n        # alpha > 0, beta > 0, mean is alpha*beta, variance is alpha*beta**2\n\n        # Warning: a few older sources define the gamma distribution in terms\n        # of alpha > -1.0\n        if alpha <= 0.0 or beta <= 0.0:\n            raise ValueError('gammavariate: alpha and beta must be > 0.0')\n\n        random = self.random\n        if alpha > 1.0:\n\n            # Uses R.C.H. Cheng, \"The generation of Gamma\n            # variables with non-integral shape parameters\",\n            # Applied Statistics, (1977), 26, No. 1, p71-74\n\n            ainv = _sqrt(2.0 * alpha - 1.0)\n            bbb = alpha - LOG4\n            ccc = alpha + ainv\n\n            while 1:\n                u1 = random()\n                if not 1e-7 < u1 < .9999999:\n                    continue\n                u2 = 1.0 - random()\n                v = _log(u1/(1.0-u1))/ainv\n                x = alpha*_exp(v)\n                z = u1*u1*u2\n                r = bbb+ccc*v-x\n                if r + SG_MAGICCONST - 4.5*z >= 0.0 or r >= _log(z):\n                    return x * beta\n\n        elif alpha == 1.0:\n            # expovariate(1/beta)\n            return -_log(1.0 - random()) * beta\n\n        else:   # alpha is between 0 and 1 (exclusive)\n\n            # Uses ALGORITHM GS of Statistical Computing - Kennedy & Gentle\n\n            while 1:\n                u = random()\n                b = (_e + alpha)/_e\n                p = b*u\n                if p <= 1.0:\n                    x = p ** (1.0/alpha)\n                else:\n                    x = -_log((b-p)/alpha)\n                u1 = random()\n                if p > 1.0:\n                    if u1 <= x ** (alpha - 1.0):\n                        break\n                elif u1 <= _exp(-x):\n                    break\n            return x * beta\n\n## -------------------- Gauss (faster alternative) --------------------\n\n    def gauss(self, mu, sigma):\n        \"\"\"Gaussian distribution.\n\n        mu is the mean, and sigma is the standard deviation.  This is\n        slightly faster than the normalvariate() function.\n\n        Not thread-safe without a lock around calls.\n\n        \"\"\"\n\n        # When x and y are two variables from [0, 1), uniformly\n        # distributed, then\n        #\n        #    cos(2*pi*x)*sqrt(-2*log(1-y))\n        #    sin(2*pi*x)*sqrt(-2*log(1-y))\n        #\n        # are two *independent* variables with normal distribution\n        # (mu = 0, sigma = 1).\n        # (Lambert Meertens)\n        # (corrected version; bug discovered by Mike Miller, fixed by LM)\n\n        # Multithreading note: When two threads call this function\n        # simultaneously, it is possible that they will receive the\n        # same return value.  The window is very small though.  To\n        # avoid this, you have to use a lock around all calls.  (I\n        # didn't want to slow this down in the serial case by using a\n        # lock here.)\n\n        random = self.random\n        z = self.gauss_next\n        self.gauss_next = None\n        if z is None:\n            x2pi = random() * TWOPI\n            g2rad = _sqrt(-2.0 * _log(1.0 - random()))\n            z = _cos(x2pi) * g2rad\n            self.gauss_next = _sin(x2pi) * g2rad\n\n        return mu + z*sigma\n\n## -------------------- beta --------------------\n## See\n## http://mail.python.org/pipermail/python-bugs-list/2001-January/003752.html\n## for Ivan Frohne's insightful analysis of why the original implementation:\n##\n##    def betavariate(self, alpha, beta):\n##        # Discrete Event Simulation in C, pp 87-88.\n##\n##        y = self.expovariate(alpha)\n##        z = self.expovariate(1.0/beta)\n##        return z/(y+z)\n##\n## was dead wrong, and how it probably got that way.\n\n    def betavariate(self, alpha, beta):\n        \"\"\"Beta distribution.\n\n        Conditions on the parameters are alpha > 0 and beta > 0.\n        Returned values range between 0 and 1.\n\n        \"\"\"\n\n        # This version due to Janne Sinkkonen, and matches all the std\n        # texts (e.g., Knuth Vol 2 Ed 3 pg 134 \"the beta distribution\").\n        y = self.gammavariate(alpha, 1.0)\n        if y == 0:\n            return 0.0\n        else:\n            return y / (y + self.gammavariate(beta, 1.0))\n\n## -------------------- Pareto --------------------\n\n    def paretovariate(self, alpha):\n        \"\"\"Pareto distribution.  alpha is the shape parameter.\"\"\"\n        # Jain, pg. 495\n\n        u = 1.0 - self.random()\n        return 1.0 / u ** (1.0/alpha)\n\n## -------------------- Weibull --------------------\n\n    def weibullvariate(self, alpha, beta):\n        \"\"\"Weibull distribution.\n\n        alpha is the scale parameter and beta is the shape parameter.\n\n        \"\"\"\n        # Jain, pg. 499; bug fix courtesy Bill Arms\n\n        u = 1.0 - self.random()\n        return alpha * (-_log(u)) ** (1.0/beta)\n\n## --------------- Operating System Random Source  ------------------\n\nclass SystemRandom(Random):\n    \"\"\"Alternate random number generator using sources provided\n    by the operating system (such as /dev/urandom on Unix or\n    CryptGenRandom on Windows).\n\n     Not available on all systems (see os.urandom() for details).\n    \"\"\"\n\n    def random(self):\n        \"\"\"Get the next random number in the range [0.0, 1.0).\"\"\"\n        return (int.from_bytes(_urandom(7), 'big') >> 3) * RECIP_BPF\n\n    def getrandbits(self, k):\n        \"\"\"getrandbits(k) -> x.  Generates an int with k random bits.\"\"\"\n        if k <= 0:\n            raise ValueError('number of bits must be greater than zero')\n        numbytes = (k + 7) // 8                       # bits / 8 and rounded up\n        x = int.from_bytes(_urandom(numbytes), 'big')\n        return x >> (numbytes * 8 - k)                # trim excess bits\n\n    def seed(self, *args, **kwds):\n        \"Stub method.  Not used for a system random number generator.\"\n        return None\n\n    def _notimplemented(self, *args, **kwds):\n        \"Method should not be called for a system random number generator.\"\n        raise NotImplementedError('System entropy source does not have state.')\n    getstate = setstate = _notimplemented\n\n## -------------------- test program --------------------\n\ndef _test_generator(n, func, args):\n    import time\n    print(n, 'times', func.__name__)\n    total = 0.0\n    sqsum = 0.0\n    smallest = 1e10\n    largest = -1e10\n    t0 = time.perf_counter()\n    for i in range(n):\n        x = func(*args)\n        total += x\n        sqsum = sqsum + x*x\n        smallest = min(x, smallest)\n        largest = max(x, largest)\n    t1 = time.perf_counter()\n    print(round(t1-t0, 3), 'sec,', end=' ')\n    avg = total/n\n    stddev = _sqrt(sqsum/n - avg*avg)\n    print('avg %g, stddev %g, min %g, max %g\\n' % \\\n              (avg, stddev, smallest, largest))\n\n\ndef _test(N=2000):\n    _test_generator(N, random, ())\n    _test_generator(N, normalvariate, (0.0, 1.0))\n    _test_generator(N, lognormvariate, (0.0, 1.0))\n    _test_generator(N, vonmisesvariate, (0.0, 1.0))\n    _test_generator(N, gammavariate, (0.01, 1.0))\n    _test_generator(N, gammavariate, (0.1, 1.0))\n    _test_generator(N, gammavariate, (0.1, 2.0))\n    _test_generator(N, gammavariate, (0.5, 1.0))\n    _test_generator(N, gammavariate, (0.9, 1.0))\n    _test_generator(N, gammavariate, (1.0, 1.0))\n    _test_generator(N, gammavariate, (2.0, 1.0))\n    _test_generator(N, gammavariate, (20.0, 1.0))\n    _test_generator(N, gammavariate, (200.0, 1.0))\n    _test_generator(N, gauss, (0.0, 1.0))\n    _test_generator(N, betavariate, (3.0, 3.0))\n    _test_generator(N, triangular, (0.0, 1.0, 1.0/3.0))\n\n# Create one instance, seeded from current time, and export its methods\n# as module-level functions.  The functions share state across all uses\n#(both in the user's code and in the Python libraries), but that's fine\n# for most programs and is easier for the casual user than making them\n# instantiate their own Random() instance.\n\n_inst = Random()\nseed = _inst.seed\nrandom = _inst.random\nuniform = _inst.uniform\ntriangular = _inst.triangular\nrandint = _inst.randint\nchoice = _inst.choice\nrandrange = _inst.randrange\nsample = _inst.sample\nshuffle = _inst.shuffle\nchoices = _inst.choices\nnormalvariate = _inst.normalvariate\nlognormvariate = _inst.lognormvariate\nexpovariate = _inst.expovariate\nvonmisesvariate = _inst.vonmisesvariate\ngammavariate = _inst.gammavariate\ngauss = _inst.gauss\nbetavariate = _inst.betavariate\nparetovariate = _inst.paretovariate\nweibullvariate = _inst.weibullvariate\ngetstate = _inst.getstate\nsetstate = _inst.setstate\ngetrandbits = _inst.getrandbits\n\nif hasattr(_os, \"fork\"):\n    _os.register_at_fork(after_in_child=_inst.seed)\n\n\nif __name__ == '__main__':\n    _test()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/re.py",
    "content": "#\n# Secret Labs' Regular Expression Engine\n#\n# re-compatible interface for the sre matching engine\n#\n# Copyright (c) 1998-2001 by Secret Labs AB.  All rights reserved.\n#\n# This version of the SRE library can be redistributed under CNRI's\n# Python 1.6 license.  For any other use, please contact Secret Labs\n# AB (info@pythonware.com).\n#\n# Portions of this engine have been developed in cooperation with\n# CNRI.  Hewlett-Packard provided funding for 1.6 integration and\n# other compatibility work.\n#\n\nr\"\"\"Support for regular expressions (RE).\n\nThis module provides regular expression matching operations similar to\nthose found in Perl.  It supports both 8-bit and Unicode strings; both\nthe pattern and the strings being processed can contain null bytes and\ncharacters outside the US ASCII range.\n\nRegular expressions can contain both special and ordinary characters.\nMost ordinary characters, like \"A\", \"a\", or \"0\", are the simplest\nregular expressions; they simply match themselves.  You can\nconcatenate ordinary characters, so last matches the string 'last'.\n\nThe special characters are:\n    \".\"      Matches any character except a newline.\n    \"^\"      Matches the start of the string.\n    \"$\"      Matches the end of the string or just before the newline at\n             the end of the string.\n    \"*\"      Matches 0 or more (greedy) repetitions of the preceding RE.\n             Greedy means that it will match as many repetitions as possible.\n    \"+\"      Matches 1 or more (greedy) repetitions of the preceding RE.\n    \"?\"      Matches 0 or 1 (greedy) of the preceding RE.\n    *?,+?,?? Non-greedy versions of the previous three special characters.\n    {m,n}    Matches from m to n repetitions of the preceding RE.\n    {m,n}?   Non-greedy version of the above.\n    \"\\\\\"     Either escapes special characters or signals a special sequence.\n    []       Indicates a set of characters.\n             A \"^\" as the first character indicates a complementing set.\n    \"|\"      A|B, creates an RE that will match either A or B.\n    (...)    Matches the RE inside the parentheses.\n             The contents can be retrieved or matched later in the string.\n    (?aiLmsux) The letters set the corresponding flags defined below.\n    (?:...)  Non-grouping version of regular parentheses.\n    (?P<name>...) The substring matched by the group is accessible by name.\n    (?P=name)     Matches the text matched earlier by the group named name.\n    (?#...)  A comment; ignored.\n    (?=...)  Matches if ... matches next, but doesn't consume the string.\n    (?!...)  Matches if ... doesn't match next.\n    (?<=...) Matches if preceded by ... (must be fixed length).\n    (?<!...) Matches if not preceded by ... (must be fixed length).\n    (?(id/name)yes|no) Matches yes pattern if the group with id/name matched,\n                       the (optional) no pattern otherwise.\n\nThe special sequences consist of \"\\\\\" and a character from the list\nbelow.  If the ordinary character is not on the list, then the\nresulting RE will match the second character.\n    \\number  Matches the contents of the group of the same number.\n    \\A       Matches only at the start of the string.\n    \\Z       Matches only at the end of the string.\n    \\b       Matches the empty string, but only at the start or end of a word.\n    \\B       Matches the empty string, but not at the start or end of a word.\n    \\d       Matches any decimal digit; equivalent to the set [0-9] in\n             bytes patterns or string patterns with the ASCII flag.\n             In string patterns without the ASCII flag, it will match the whole\n             range of Unicode digits.\n    \\D       Matches any non-digit character; equivalent to [^\\d].\n    \\s       Matches any whitespace character; equivalent to [ \\t\\n\\r\\f\\v] in\n             bytes patterns or string patterns with the ASCII flag.\n             In string patterns without the ASCII flag, it will match the whole\n             range of Unicode whitespace characters.\n    \\S       Matches any non-whitespace character; equivalent to [^\\s].\n    \\w       Matches any alphanumeric character; equivalent to [a-zA-Z0-9_]\n             in bytes patterns or string patterns with the ASCII flag.\n             In string patterns without the ASCII flag, it will match the\n             range of Unicode alphanumeric characters (letters plus digits\n             plus underscore).\n             With LOCALE, it will match the set [0-9_] plus characters defined\n             as letters for the current locale.\n    \\W       Matches the complement of \\w.\n    \\\\       Matches a literal backslash.\n\nThis module exports the following functions:\n    match     Match a regular expression pattern to the beginning of a string.\n    fullmatch Match a regular expression pattern to all of a string.\n    search    Search a string for the presence of a pattern.\n    sub       Substitute occurrences of a pattern found in a string.\n    subn      Same as sub, but also return the number of substitutions made.\n    split     Split a string by the occurrences of a pattern.\n    findall   Find all occurrences of a pattern in a string.\n    finditer  Return an iterator yielding a Match object for each match.\n    compile   Compile a pattern into a Pattern object.\n    purge     Clear the regular expression cache.\n    escape    Backslash all non-alphanumerics in a string.\n\nEach function other than purge and escape can take an optional 'flags' argument\nconsisting of one or more of the following module constants, joined by \"|\".\nA, L, and U are mutually exclusive.\n    A  ASCII       For string patterns, make \\w, \\W, \\b, \\B, \\d, \\D\n                   match the corresponding ASCII character categories\n                   (rather than the whole Unicode categories, which is the\n                   default).\n                   For bytes patterns, this flag is the only available\n                   behaviour and needn't be specified.\n    I  IGNORECASE  Perform case-insensitive matching.\n    L  LOCALE      Make \\w, \\W, \\b, \\B, dependent on the current locale.\n    M  MULTILINE   \"^\" matches the beginning of lines (after a newline)\n                   as well as the string.\n                   \"$\" matches the end of lines (before a newline) as well\n                   as the end of the string.\n    S  DOTALL      \".\" matches any character at all, including the newline.\n    X  VERBOSE     Ignore whitespace and comments for nicer looking RE's.\n    U  UNICODE     For compatibility only. Ignored for string patterns (it\n                   is the default), and forbidden for bytes patterns.\n\nThis module also defines an exception 'error'.\n\n\"\"\"\n\nimport enum\nimport sre_compile\nimport sre_parse\nimport functools\ntry:\n    import _locale\nexcept ImportError:\n    _locale = None\n\n\n# public symbols\n__all__ = [\n    \"match\", \"fullmatch\", \"search\", \"sub\", \"subn\", \"split\",\n    \"findall\", \"finditer\", \"compile\", \"purge\", \"template\", \"escape\",\n    \"error\", \"Pattern\", \"Match\", \"A\", \"I\", \"L\", \"M\", \"S\", \"X\", \"U\",\n    \"ASCII\", \"IGNORECASE\", \"LOCALE\", \"MULTILINE\", \"DOTALL\", \"VERBOSE\",\n    \"UNICODE\",\n]\n\n__version__ = \"2.2.1\"\n\nclass RegexFlag(enum.IntFlag):\n    ASCII = A = sre_compile.SRE_FLAG_ASCII # assume ascii \"locale\"\n    IGNORECASE = I = sre_compile.SRE_FLAG_IGNORECASE # ignore case\n    LOCALE = L = sre_compile.SRE_FLAG_LOCALE # assume current 8-bit locale\n    UNICODE = U = sre_compile.SRE_FLAG_UNICODE # assume unicode \"locale\"\n    MULTILINE = M = sre_compile.SRE_FLAG_MULTILINE # make anchors look for newline\n    DOTALL = S = sre_compile.SRE_FLAG_DOTALL # make dot match newline\n    VERBOSE = X = sre_compile.SRE_FLAG_VERBOSE # ignore whitespace and comments\n    # sre extensions (experimental, don't rely on these)\n    TEMPLATE = T = sre_compile.SRE_FLAG_TEMPLATE # disable backtracking\n    DEBUG = sre_compile.SRE_FLAG_DEBUG # dump pattern after compilation\n\n    def __repr__(self):\n        if self._name_ is not None:\n            return f're.{self._name_}'\n        value = self._value_\n        members = []\n        negative = value < 0\n        if negative:\n            value = ~value\n        for m in self.__class__:\n            if value & m._value_:\n                value &= ~m._value_\n                members.append(f're.{m._name_}')\n        if value:\n            members.append(hex(value))\n        res = '|'.join(members)\n        if negative:\n            if len(members) > 1:\n                res = f'~({res})'\n            else:\n                res = f'~{res}'\n        return res\n    __str__ = object.__str__\n\nglobals().update(RegexFlag.__members__)\n\n# sre exception\nerror = sre_compile.error\n\n# --------------------------------------------------------------------\n# public interface\n\ndef match(pattern, string, flags=0):\n    \"\"\"Try to apply the pattern at the start of the string, returning\n    a Match object, or None if no match was found.\"\"\"\n    return _compile(pattern, flags).match(string)\n\ndef fullmatch(pattern, string, flags=0):\n    \"\"\"Try to apply the pattern to all of the string, returning\n    a Match object, or None if no match was found.\"\"\"\n    return _compile(pattern, flags).fullmatch(string)\n\ndef search(pattern, string, flags=0):\n    \"\"\"Scan through string looking for a match to the pattern, returning\n    a Match object, or None if no match was found.\"\"\"\n    return _compile(pattern, flags).search(string)\n\ndef sub(pattern, repl, string, count=0, flags=0):\n    \"\"\"Return the string obtained by replacing the leftmost\n    non-overlapping occurrences of the pattern in string by the\n    replacement repl.  repl can be either a string or a callable;\n    if a string, backslash escapes in it are processed.  If it is\n    a callable, it's passed the Match object and must return\n    a replacement string to be used.\"\"\"\n    return _compile(pattern, flags).sub(repl, string, count)\n\ndef subn(pattern, repl, string, count=0, flags=0):\n    \"\"\"Return a 2-tuple containing (new_string, number).\n    new_string is the string obtained by replacing the leftmost\n    non-overlapping occurrences of the pattern in the source\n    string by the replacement repl.  number is the number of\n    substitutions that were made. repl can be either a string or a\n    callable; if a string, backslash escapes in it are processed.\n    If it is a callable, it's passed the Match object and must\n    return a replacement string to be used.\"\"\"\n    return _compile(pattern, flags).subn(repl, string, count)\n\ndef split(pattern, string, maxsplit=0, flags=0):\n    \"\"\"Split the source string by the occurrences of the pattern,\n    returning a list containing the resulting substrings.  If\n    capturing parentheses are used in pattern, then the text of all\n    groups in the pattern are also returned as part of the resulting\n    list.  If maxsplit is nonzero, at most maxsplit splits occur,\n    and the remainder of the string is returned as the final element\n    of the list.\"\"\"\n    return _compile(pattern, flags).split(string, maxsplit)\n\ndef findall(pattern, string, flags=0):\n    \"\"\"Return a list of all non-overlapping matches in the string.\n\n    If one or more capturing groups are present in the pattern, return\n    a list of groups; this will be a list of tuples if the pattern\n    has more than one group.\n\n    Empty matches are included in the result.\"\"\"\n    return _compile(pattern, flags).findall(string)\n\ndef finditer(pattern, string, flags=0):\n    \"\"\"Return an iterator over all non-overlapping matches in the\n    string.  For each match, the iterator returns a Match object.\n\n    Empty matches are included in the result.\"\"\"\n    return _compile(pattern, flags).finditer(string)\n\ndef compile(pattern, flags=0):\n    \"Compile a regular expression pattern, returning a Pattern object.\"\n    return _compile(pattern, flags)\n\ndef purge():\n    \"Clear the regular expression caches\"\n    _cache.clear()\n    _compile_repl.cache_clear()\n\ndef template(pattern, flags=0):\n    \"Compile a template pattern, returning a Pattern object\"\n    return _compile(pattern, flags|T)\n\n# SPECIAL_CHARS\n# closing ')', '}' and ']'\n# '-' (a range in character set)\n# '&', '~', (extended character set operations)\n# '#' (comment) and WHITESPACE (ignored) in verbose mode\n_special_chars_map = {i: '\\\\' + chr(i) for i in b'()[]{}?*+-|^$\\\\.&~# \\t\\n\\r\\v\\f'}\n\ndef escape(pattern):\n    \"\"\"\n    Escape special characters in a string.\n    \"\"\"\n    if isinstance(pattern, str):\n        return pattern.translate(_special_chars_map)\n    else:\n        pattern = str(pattern, 'latin1')\n        return pattern.translate(_special_chars_map).encode('latin1')\n\nPattern = type(sre_compile.compile('', 0))\nMatch = type(sre_compile.compile('', 0).match(''))\n\n# --------------------------------------------------------------------\n# internals\n\n_cache = {}  # ordered!\n\n_MAXCACHE = 512\ndef _compile(pattern, flags):\n    # internal: compile pattern\n    if isinstance(flags, RegexFlag):\n        flags = flags.value\n    try:\n        return _cache[type(pattern), pattern, flags]\n    except KeyError:\n        pass\n    if isinstance(pattern, Pattern):\n        if flags:\n            raise ValueError(\n                \"cannot process flags argument with a compiled pattern\")\n        return pattern\n    if not sre_compile.isstring(pattern):\n        raise TypeError(\"first argument must be string or compiled pattern\")\n    p = sre_compile.compile(pattern, flags)\n    if not (flags & DEBUG):\n        if len(_cache) >= _MAXCACHE:\n            # Drop the oldest item\n            try:\n                del _cache[next(iter(_cache))]\n            except (StopIteration, RuntimeError, KeyError):\n                pass\n        _cache[type(pattern), pattern, flags] = p\n    return p\n\n@functools.lru_cache(_MAXCACHE)\ndef _compile_repl(repl, pattern):\n    # internal: compile replacement pattern\n    return sre_parse.parse_template(repl, pattern)\n\ndef _expand(pattern, match, template):\n    # internal: Match.expand implementation hook\n    template = sre_parse.parse_template(template, pattern)\n    return sre_parse.expand_template(template, match)\n\ndef _subx(pattern, template):\n    # internal: Pattern.sub/subn implementation helper\n    template = _compile_repl(template, pattern)\n    if not template[0] and len(template[1]) == 1:\n        # literal replacement\n        return template[1][0]\n    def filter(match, template=template):\n        return sre_parse.expand_template(template, match)\n    return filter\n\n# register myself for pickling\n\nimport copyreg\n\ndef _pickle(p):\n    return _compile, (p.pattern, p.flags)\n\ncopyreg.pickle(Pattern, _pickle, _compile)\n\n# --------------------------------------------------------------------\n# experimental stuff (see python-dev discussions for details)\n\nclass Scanner:\n    def __init__(self, lexicon, flags=0):\n        from sre_constants import BRANCH, SUBPATTERN\n        if isinstance(flags, RegexFlag):\n            flags = flags.value\n        self.lexicon = lexicon\n        # combine phrases into a compound pattern\n        p = []\n        s = sre_parse.State()\n        s.flags = flags\n        for phrase, action in lexicon:\n            gid = s.opengroup()\n            p.append(sre_parse.SubPattern(s, [\n                (SUBPATTERN, (gid, 0, 0, sre_parse.parse(phrase, flags))),\n                ]))\n            s.closegroup(gid, p[-1])\n        p = sre_parse.SubPattern(s, [(BRANCH, (None, p))])\n        self.scanner = sre_compile.compile(p)\n    def scan(self, string):\n        result = []\n        append = result.append\n        match = self.scanner.scanner(string).match\n        i = 0\n        while True:\n            m = match()\n            if not m:\n                break\n            j = m.end()\n            if i == j:\n                break\n            action = self.lexicon[m.lastindex-1][1]\n            if callable(action):\n                self.match = m\n                action = action(self, m.group())\n            if action is not None:\n                append(action)\n            i = j\n        return result, string[i:]\n"
  },
  {
    "path": "rd/usr/lib/python3.8/reprlib.py",
    "content": "\"\"\"Redo the builtin repr() (representation) but with limits on most sizes.\"\"\"\n\n__all__ = [\"Repr\", \"repr\", \"recursive_repr\"]\n\nimport builtins\nfrom itertools import islice\nfrom _thread import get_ident\n\ndef recursive_repr(fillvalue='...'):\n    'Decorator to make a repr function return fillvalue for a recursive call'\n\n    def decorating_function(user_function):\n        repr_running = set()\n\n        def wrapper(self):\n            key = id(self), get_ident()\n            if key in repr_running:\n                return fillvalue\n            repr_running.add(key)\n            try:\n                result = user_function(self)\n            finally:\n                repr_running.discard(key)\n            return result\n\n        # Can't use functools.wraps() here because of bootstrap issues\n        wrapper.__module__ = getattr(user_function, '__module__')\n        wrapper.__doc__ = getattr(user_function, '__doc__')\n        wrapper.__name__ = getattr(user_function, '__name__')\n        wrapper.__qualname__ = getattr(user_function, '__qualname__')\n        wrapper.__annotations__ = getattr(user_function, '__annotations__', {})\n        return wrapper\n\n    return decorating_function\n\nclass Repr:\n\n    def __init__(self):\n        self.maxlevel = 6\n        self.maxtuple = 6\n        self.maxlist = 6\n        self.maxarray = 5\n        self.maxdict = 4\n        self.maxset = 6\n        self.maxfrozenset = 6\n        self.maxdeque = 6\n        self.maxstring = 30\n        self.maxlong = 40\n        self.maxother = 30\n\n    def repr(self, x):\n        return self.repr1(x, self.maxlevel)\n\n    def repr1(self, x, level):\n        typename = type(x).__name__\n        if ' ' in typename:\n            parts = typename.split()\n            typename = '_'.join(parts)\n        if hasattr(self, 'repr_' + typename):\n            return getattr(self, 'repr_' + typename)(x, level)\n        else:\n            return self.repr_instance(x, level)\n\n    def _repr_iterable(self, x, level, left, right, maxiter, trail=''):\n        n = len(x)\n        if level <= 0 and n:\n            s = '...'\n        else:\n            newlevel = level - 1\n            repr1 = self.repr1\n            pieces = [repr1(elem, newlevel) for elem in islice(x, maxiter)]\n            if n > maxiter:  pieces.append('...')\n            s = ', '.join(pieces)\n            if n == 1 and trail:  right = trail + right\n        return '%s%s%s' % (left, s, right)\n\n    def repr_tuple(self, x, level):\n        return self._repr_iterable(x, level, '(', ')', self.maxtuple, ',')\n\n    def repr_list(self, x, level):\n        return self._repr_iterable(x, level, '[', ']', self.maxlist)\n\n    def repr_array(self, x, level):\n        if not x:\n            return \"array('%s')\" % x.typecode\n        header = \"array('%s', [\" % x.typecode\n        return self._repr_iterable(x, level, header, '])', self.maxarray)\n\n    def repr_set(self, x, level):\n        if not x:\n            return 'set()'\n        x = _possibly_sorted(x)\n        return self._repr_iterable(x, level, '{', '}', self.maxset)\n\n    def repr_frozenset(self, x, level):\n        if not x:\n            return 'frozenset()'\n        x = _possibly_sorted(x)\n        return self._repr_iterable(x, level, 'frozenset({', '})',\n                                   self.maxfrozenset)\n\n    def repr_deque(self, x, level):\n        return self._repr_iterable(x, level, 'deque([', '])', self.maxdeque)\n\n    def repr_dict(self, x, level):\n        n = len(x)\n        if n == 0: return '{}'\n        if level <= 0: return '{...}'\n        newlevel = level - 1\n        repr1 = self.repr1\n        pieces = []\n        for key in islice(_possibly_sorted(x), self.maxdict):\n            keyrepr = repr1(key, newlevel)\n            valrepr = repr1(x[key], newlevel)\n            pieces.append('%s: %s' % (keyrepr, valrepr))\n        if n > self.maxdict: pieces.append('...')\n        s = ', '.join(pieces)\n        return '{%s}' % (s,)\n\n    def repr_str(self, x, level):\n        s = builtins.repr(x[:self.maxstring])\n        if len(s) > self.maxstring:\n            i = max(0, (self.maxstring-3)//2)\n            j = max(0, self.maxstring-3-i)\n            s = builtins.repr(x[:i] + x[len(x)-j:])\n            s = s[:i] + '...' + s[len(s)-j:]\n        return s\n\n    def repr_int(self, x, level):\n        s = builtins.repr(x) # XXX Hope this isn't too slow...\n        if len(s) > self.maxlong:\n            i = max(0, (self.maxlong-3)//2)\n            j = max(0, self.maxlong-3-i)\n            s = s[:i] + '...' + s[len(s)-j:]\n        return s\n\n    def repr_instance(self, x, level):\n        try:\n            s = builtins.repr(x)\n            # Bugs in x.__repr__() can cause arbitrary\n            # exceptions -- then make up something\n        except Exception:\n            return '<%s instance at %#x>' % (x.__class__.__name__, id(x))\n        if len(s) > self.maxother:\n            i = max(0, (self.maxother-3)//2)\n            j = max(0, self.maxother-3-i)\n            s = s[:i] + '...' + s[len(s)-j:]\n        return s\n\n\ndef _possibly_sorted(x):\n    # Since not all sequences of items can be sorted and comparison\n    # functions may raise arbitrary exceptions, return an unsorted\n    # sequence in that case.\n    try:\n        return sorted(x)\n    except Exception:\n        return list(x)\n\naRepr = Repr()\nrepr = aRepr.repr\n"
  },
  {
    "path": "rd/usr/lib/python3.8/rlcompleter.py",
    "content": "\"\"\"Word completion for GNU readline.\n\nThe completer completes keywords, built-ins and globals in a selectable\nnamespace (which defaults to __main__); when completing NAME.NAME..., it\nevaluates (!) the expression up to the last dot and completes its attributes.\n\nIt's very cool to do \"import sys\" type \"sys.\", hit the completion key (twice),\nand see the list of names defined by the sys module!\n\nTip: to use the tab key as the completion key, call\n\n    readline.parse_and_bind(\"tab: complete\")\n\nNotes:\n\n- Exceptions raised by the completer function are *ignored* (and generally cause\n  the completion to fail).  This is a feature -- since readline sets the tty\n  device in raw (or cbreak) mode, printing a traceback wouldn't work well\n  without some complicated hoopla to save, reset and restore the tty state.\n\n- The evaluation of the NAME.NAME... form may cause arbitrary application\n  defined code to be executed if an object with a __getattr__ hook is found.\n  Since it is the responsibility of the application (or the user) to enable this\n  feature, I consider this an acceptable risk.  More complicated expressions\n  (e.g. function calls or indexing operations) are *not* evaluated.\n\n- When the original stdin is not a tty device, GNU readline is never\n  used, and this module (and the readline module) are silently inactive.\n\n\"\"\"\n\nimport atexit\nimport builtins\nimport __main__\n\n__all__ = [\"Completer\"]\n\nclass Completer:\n    def __init__(self, namespace = None):\n        \"\"\"Create a new completer for the command line.\n\n        Completer([namespace]) -> completer instance.\n\n        If unspecified, the default namespace where completions are performed\n        is __main__ (technically, __main__.__dict__). Namespaces should be\n        given as dictionaries.\n\n        Completer instances should be used as the completion mechanism of\n        readline via the set_completer() call:\n\n        readline.set_completer(Completer(my_namespace).complete)\n        \"\"\"\n\n        if namespace and not isinstance(namespace, dict):\n            raise TypeError('namespace must be a dictionary')\n\n        # Don't bind to namespace quite yet, but flag whether the user wants a\n        # specific namespace or to use __main__.__dict__. This will allow us\n        # to bind to __main__.__dict__ at completion time, not now.\n        if namespace is None:\n            self.use_main_ns = 1\n        else:\n            self.use_main_ns = 0\n            self.namespace = namespace\n\n    def complete(self, text, state):\n        \"\"\"Return the next possible completion for 'text'.\n\n        This is called successively with state == 0, 1, 2, ... until it\n        returns None.  The completion should begin with 'text'.\n\n        \"\"\"\n        if self.use_main_ns:\n            self.namespace = __main__.__dict__\n\n        if not text.strip():\n            if state == 0:\n                if _readline_available:\n                    readline.insert_text('\\t')\n                    readline.redisplay()\n                    return ''\n                else:\n                    return '\\t'\n            else:\n                return None\n\n        if state == 0:\n            if \".\" in text:\n                self.matches = self.attr_matches(text)\n            else:\n                self.matches = self.global_matches(text)\n        try:\n            return self.matches[state]\n        except IndexError:\n            return None\n\n    def _callable_postfix(self, val, word):\n        if callable(val):\n            word = word + \"(\"\n        return word\n\n    def global_matches(self, text):\n        \"\"\"Compute matches when text is a simple name.\n\n        Return a list of all keywords, built-in functions and names currently\n        defined in self.namespace that match.\n\n        \"\"\"\n        import keyword\n        matches = []\n        seen = {\"__builtins__\"}\n        n = len(text)\n        for word in keyword.kwlist:\n            if word[:n] == text:\n                seen.add(word)\n                if word in {'finally', 'try'}:\n                    word = word + ':'\n                elif word not in {'False', 'None', 'True',\n                                  'break', 'continue', 'pass',\n                                  'else'}:\n                    word = word + ' '\n                matches.append(word)\n        for nspace in [self.namespace, builtins.__dict__]:\n            for word, val in nspace.items():\n                if word[:n] == text and word not in seen:\n                    seen.add(word)\n                    matches.append(self._callable_postfix(val, word))\n        return matches\n\n    def attr_matches(self, text):\n        \"\"\"Compute matches when text contains a dot.\n\n        Assuming the text is of the form NAME.NAME....[NAME], and is\n        evaluable in self.namespace, it will be evaluated and its attributes\n        (as revealed by dir()) are used as possible completions.  (For class\n        instances, class members are also considered.)\n\n        WARNING: this can still invoke arbitrary C code, if an object\n        with a __getattr__ hook is evaluated.\n\n        \"\"\"\n        import re\n        m = re.match(r\"(\\w+(\\.\\w+)*)\\.(\\w*)\", text)\n        if not m:\n            return []\n        expr, attr = m.group(1, 3)\n        try:\n            thisobject = eval(expr, self.namespace)\n        except Exception:\n            return []\n\n        # get the content of the object, except __builtins__\n        words = set(dir(thisobject))\n        words.discard(\"__builtins__\")\n\n        if hasattr(thisobject, '__class__'):\n            words.add('__class__')\n            words.update(get_class_members(thisobject.__class__))\n        matches = []\n        n = len(attr)\n        if attr == '':\n            noprefix = '_'\n        elif attr == '_':\n            noprefix = '__'\n        else:\n            noprefix = None\n        while True:\n            for word in words:\n                if (word[:n] == attr and\n                    not (noprefix and word[:n+1] == noprefix)):\n                    match = \"%s.%s\" % (expr, word)\n                    try:\n                        val = getattr(thisobject, word)\n                    except Exception:\n                        pass  # Include even if attribute not set\n                    else:\n                        match = self._callable_postfix(val, match)\n                    matches.append(match)\n            if matches or not noprefix:\n                break\n            if noprefix == '_':\n                noprefix = '__'\n            else:\n                noprefix = None\n        matches.sort()\n        return matches\n\ndef get_class_members(klass):\n    ret = dir(klass)\n    if hasattr(klass,'__bases__'):\n        for base in klass.__bases__:\n            ret = ret + get_class_members(base)\n    return ret\n\ntry:\n    import readline\nexcept ImportError:\n    _readline_available = False\nelse:\n    readline.set_completer(Completer().complete)\n    # Release references early at shutdown (the readline module's\n    # contents are quasi-immortal, and the completer function holds a\n    # reference to globals).\n    atexit.register(lambda: readline.set_completer(None))\n    _readline_available = True\n"
  },
  {
    "path": "rd/usr/lib/python3.8/runpy.py",
    "content": "\"\"\"runpy.py - locating and running Python code using the module namespace\n\nProvides support for locating and running Python scripts using the Python\nmodule namespace instead of the native filesystem.\n\nThis allows Python code to play nicely with non-filesystem based PEP 302\nimporters when locating support scripts as well as when importing modules.\n\"\"\"\n# Written by Nick Coghlan <ncoghlan at gmail.com>\n#    to implement PEP 338 (Executing Modules as Scripts)\n\n\nimport sys\nimport importlib.machinery # importlib first so we can test #15386 via -m\nimport importlib.util\nimport io\nimport types\nimport os\nfrom pkgutil import read_code, get_importer\n\n__all__ = [\n    \"run_module\", \"run_path\",\n]\n\nclass _TempModule(object):\n    \"\"\"Temporarily replace a module in sys.modules with an empty namespace\"\"\"\n    def __init__(self, mod_name):\n        self.mod_name = mod_name\n        self.module = types.ModuleType(mod_name)\n        self._saved_module = []\n\n    def __enter__(self):\n        mod_name = self.mod_name\n        try:\n            self._saved_module.append(sys.modules[mod_name])\n        except KeyError:\n            pass\n        sys.modules[mod_name] = self.module\n        return self\n\n    def __exit__(self, *args):\n        if self._saved_module:\n            sys.modules[self.mod_name] = self._saved_module[0]\n        else:\n            del sys.modules[self.mod_name]\n        self._saved_module = []\n\nclass _ModifiedArgv0(object):\n    def __init__(self, value):\n        self.value = value\n        self._saved_value = self._sentinel = object()\n\n    def __enter__(self):\n        if self._saved_value is not self._sentinel:\n            raise RuntimeError(\"Already preserving saved value\")\n        self._saved_value = sys.argv[0]\n        sys.argv[0] = self.value\n\n    def __exit__(self, *args):\n        self.value = self._sentinel\n        sys.argv[0] = self._saved_value\n\n# TODO: Replace these helpers with importlib._bootstrap_external functions.\ndef _run_code(code, run_globals, init_globals=None,\n              mod_name=None, mod_spec=None,\n              pkg_name=None, script_name=None):\n    \"\"\"Helper to run code in nominated namespace\"\"\"\n    if init_globals is not None:\n        run_globals.update(init_globals)\n    if mod_spec is None:\n        loader = None\n        fname = script_name\n        cached = None\n    else:\n        loader = mod_spec.loader\n        fname = mod_spec.origin\n        cached = mod_spec.cached\n        if pkg_name is None:\n            pkg_name = mod_spec.parent\n    run_globals.update(__name__ = mod_name,\n                       __file__ = fname,\n                       __cached__ = cached,\n                       __doc__ = None,\n                       __loader__ = loader,\n                       __package__ = pkg_name,\n                       __spec__ = mod_spec)\n    exec(code, run_globals)\n    return run_globals\n\ndef _run_module_code(code, init_globals=None,\n                    mod_name=None, mod_spec=None,\n                    pkg_name=None, script_name=None):\n    \"\"\"Helper to run code in new namespace with sys modified\"\"\"\n    fname = script_name if mod_spec is None else mod_spec.origin\n    with _TempModule(mod_name) as temp_module, _ModifiedArgv0(fname):\n        mod_globals = temp_module.module.__dict__\n        _run_code(code, mod_globals, init_globals,\n                  mod_name, mod_spec, pkg_name, script_name)\n    # Copy the globals of the temporary module, as they\n    # may be cleared when the temporary module goes away\n    return mod_globals.copy()\n\n# Helper to get the full name, spec and code for a module\ndef _get_module_details(mod_name, error=ImportError):\n    if mod_name.startswith(\".\"):\n        raise error(\"Relative module names not supported\")\n    pkg_name, _, _ = mod_name.rpartition(\".\")\n    if pkg_name:\n        # Try importing the parent to avoid catching initialization errors\n        try:\n            __import__(pkg_name)\n        except ImportError as e:\n            # If the parent or higher ancestor package is missing, let the\n            # error be raised by find_spec() below and then be caught. But do\n            # not allow other errors to be caught.\n            if e.name is None or (e.name != pkg_name and\n                    not pkg_name.startswith(e.name + \".\")):\n                raise\n        # Warn if the module has already been imported under its normal name\n        existing = sys.modules.get(mod_name)\n        if existing is not None and not hasattr(existing, \"__path__\"):\n            from warnings import warn\n            msg = \"{mod_name!r} found in sys.modules after import of \" \\\n                \"package {pkg_name!r}, but prior to execution of \" \\\n                \"{mod_name!r}; this may result in unpredictable \" \\\n                \"behaviour\".format(mod_name=mod_name, pkg_name=pkg_name)\n            warn(RuntimeWarning(msg))\n\n    try:\n        spec = importlib.util.find_spec(mod_name)\n    except (ImportError, AttributeError, TypeError, ValueError) as ex:\n        # This hack fixes an impedance mismatch between pkgutil and\n        # importlib, where the latter raises other errors for cases where\n        # pkgutil previously raised ImportError\n        msg = \"Error while finding module specification for {!r} ({}: {})\"\n        raise error(msg.format(mod_name, type(ex).__name__, ex)) from ex\n    if spec is None:\n        raise error(\"No module named %s\" % mod_name)\n    if spec.submodule_search_locations is not None:\n        if mod_name == \"__main__\" or mod_name.endswith(\".__main__\"):\n            raise error(\"Cannot use package as __main__ module\")\n        try:\n            pkg_main_name = mod_name + \".__main__\"\n            return _get_module_details(pkg_main_name, error)\n        except error as e:\n            if mod_name not in sys.modules:\n                raise  # No module loaded; being a package is irrelevant\n            raise error((\"%s; %r is a package and cannot \" +\n                               \"be directly executed\") %(e, mod_name))\n    loader = spec.loader\n    if loader is None:\n        raise error(\"%r is a namespace package and cannot be executed\"\n                                                                 % mod_name)\n    try:\n        code = loader.get_code(mod_name)\n    except ImportError as e:\n        raise error(format(e)) from e\n    if code is None:\n        raise error(\"No code object available for %s\" % mod_name)\n    return mod_name, spec, code\n\nclass _Error(Exception):\n    \"\"\"Error that _run_module_as_main() should report without a traceback\"\"\"\n\n# XXX ncoghlan: Should this be documented and made public?\n# (Current thoughts: don't repeat the mistake that lead to its\n# creation when run_module() no longer met the needs of\n# mainmodule.c, but couldn't be changed because it was public)\ndef _run_module_as_main(mod_name, alter_argv=True):\n    \"\"\"Runs the designated module in the __main__ namespace\n\n       Note that the executed module will have full access to the\n       __main__ namespace. If this is not desirable, the run_module()\n       function should be used to run the module code in a fresh namespace.\n\n       At the very least, these variables in __main__ will be overwritten:\n           __name__\n           __file__\n           __cached__\n           __loader__\n           __package__\n    \"\"\"\n    try:\n        if alter_argv or mod_name != \"__main__\": # i.e. -m switch\n            mod_name, mod_spec, code = _get_module_details(mod_name, _Error)\n        else:          # i.e. directory or zipfile execution\n            mod_name, mod_spec, code = _get_main_module_details(_Error)\n    except _Error as exc:\n        msg = \"%s: %s\" % (sys.executable, exc)\n        sys.exit(msg)\n    main_globals = sys.modules[\"__main__\"].__dict__\n    if alter_argv:\n        sys.argv[0] = mod_spec.origin\n    return _run_code(code, main_globals, None,\n                     \"__main__\", mod_spec)\n\ndef run_module(mod_name, init_globals=None,\n               run_name=None, alter_sys=False):\n    \"\"\"Execute a module's code without importing it\n\n       Returns the resulting top level namespace dictionary\n    \"\"\"\n    mod_name, mod_spec, code = _get_module_details(mod_name)\n    if run_name is None:\n        run_name = mod_name\n    if alter_sys:\n        return _run_module_code(code, init_globals, run_name, mod_spec)\n    else:\n        # Leave the sys module alone\n        return _run_code(code, {}, init_globals, run_name, mod_spec)\n\ndef _get_main_module_details(error=ImportError):\n    # Helper that gives a nicer error message when attempting to\n    # execute a zipfile or directory by invoking __main__.py\n    # Also moves the standard __main__ out of the way so that the\n    # preexisting __loader__ entry doesn't cause issues\n    main_name = \"__main__\"\n    saved_main = sys.modules[main_name]\n    del sys.modules[main_name]\n    try:\n        return _get_module_details(main_name)\n    except ImportError as exc:\n        if main_name in str(exc):\n            raise error(\"can't find %r module in %r\" %\n                              (main_name, sys.path[0])) from exc\n        raise\n    finally:\n        sys.modules[main_name] = saved_main\n\n\ndef _get_code_from_file(run_name, fname):\n    # Check for a compiled file first\n    decoded_path = os.path.abspath(os.fsdecode(fname))\n    with io.open_code(decoded_path) as f:\n        code = read_code(f)\n    if code is None:\n        # That didn't work, so try it as normal source code\n        with io.open_code(decoded_path) as f:\n            code = compile(f.read(), fname, 'exec')\n    return code, fname\n\ndef run_path(path_name, init_globals=None, run_name=None):\n    \"\"\"Execute code located at the specified filesystem location\n\n       Returns the resulting top level namespace dictionary\n\n       The file path may refer directly to a Python script (i.e.\n       one that could be directly executed with execfile) or else\n       it may refer to a zipfile or directory containing a top\n       level __main__.py script.\n    \"\"\"\n    if run_name is None:\n        run_name = \"<run_path>\"\n    pkg_name = run_name.rpartition(\".\")[0]\n    importer = get_importer(path_name)\n    # Trying to avoid importing imp so as to not consume the deprecation warning.\n    is_NullImporter = False\n    if type(importer).__module__ == 'imp':\n        if type(importer).__name__ == 'NullImporter':\n            is_NullImporter = True\n    if isinstance(importer, type(None)) or is_NullImporter:\n        # Not a valid sys.path entry, so run the code directly\n        # execfile() doesn't help as we want to allow compiled files\n        code, fname = _get_code_from_file(run_name, path_name)\n        return _run_module_code(code, init_globals, run_name,\n                                pkg_name=pkg_name, script_name=fname)\n    else:\n        # Finder is defined for path, so add it to\n        # the start of sys.path\n        sys.path.insert(0, path_name)\n        try:\n            # Here's where things are a little different from the run_module\n            # case. There, we only had to replace the module in sys while the\n            # code was running and doing so was somewhat optional. Here, we\n            # have no choice and we have to remove it even while we read the\n            # code. If we don't do this, a __loader__ attribute in the\n            # existing __main__ module may prevent location of the new module.\n            mod_name, mod_spec, code = _get_main_module_details()\n            with _TempModule(run_name) as temp_module, \\\n                 _ModifiedArgv0(path_name):\n                mod_globals = temp_module.module.__dict__\n                return _run_code(code, mod_globals, init_globals,\n                                    run_name, mod_spec, pkg_name).copy()\n        finally:\n            try:\n                sys.path.remove(path_name)\n            except ValueError:\n                pass\n\n\nif __name__ == \"__main__\":\n    # Run the module specified as the next command line argument\n    if len(sys.argv) < 2:\n        print(\"No module specified for execution\", file=sys.stderr)\n    else:\n        del sys.argv[0] # Make the requested module sys.argv[0]\n        _run_module_as_main(sys.argv[0])\n"
  },
  {
    "path": "rd/usr/lib/python3.8/sched.py",
    "content": "\"\"\"A generally useful event scheduler class.\n\nEach instance of this class manages its own queue.\nNo multi-threading is implied; you are supposed to hack that\nyourself, or use a single instance per application.\n\nEach instance is parametrized with two functions, one that is\nsupposed to return the current time, one that is supposed to\nimplement a delay.  You can implement real-time scheduling by\nsubstituting time and sleep from built-in module time, or you can\nimplement simulated time by writing your own functions.  This can\nalso be used to integrate scheduling with STDWIN events; the delay\nfunction is allowed to modify the queue.  Time can be expressed as\nintegers or floating point numbers, as long as it is consistent.\n\nEvents are specified by tuples (time, priority, action, argument, kwargs).\nAs in UNIX, lower priority numbers mean higher priority; in this\nway the queue can be maintained as a priority queue.  Execution of the\nevent means calling the action function, passing it the argument\nsequence in \"argument\" (remember that in Python, multiple function\narguments are be packed in a sequence) and keyword parameters in \"kwargs\".\nThe action function may be an instance method so it\nhas another way to reference private data (besides global variables).\n\"\"\"\n\nimport time\nimport heapq\nfrom collections import namedtuple\nimport threading\nfrom time import monotonic as _time\n\n__all__ = [\"scheduler\"]\n\nclass Event(namedtuple('Event', 'time, priority, action, argument, kwargs')):\n    __slots__ = []\n    def __eq__(s, o): return (s.time, s.priority) == (o.time, o.priority)\n    def __lt__(s, o): return (s.time, s.priority) <  (o.time, o.priority)\n    def __le__(s, o): return (s.time, s.priority) <= (o.time, o.priority)\n    def __gt__(s, o): return (s.time, s.priority) >  (o.time, o.priority)\n    def __ge__(s, o): return (s.time, s.priority) >= (o.time, o.priority)\n\nEvent.time.__doc__ = ('''Numeric type compatible with the return value of the\ntimefunc function passed to the constructor.''')\nEvent.priority.__doc__ = ('''Events scheduled for the same time will be executed\nin the order of their priority.''')\nEvent.action.__doc__ = ('''Executing the event means executing\naction(*argument, **kwargs)''')\nEvent.argument.__doc__ = ('''argument is a sequence holding the positional\narguments for the action.''')\nEvent.kwargs.__doc__ = ('''kwargs is a dictionary holding the keyword\narguments for the action.''')\n\n_sentinel = object()\n\nclass scheduler:\n\n    def __init__(self, timefunc=_time, delayfunc=time.sleep):\n        \"\"\"Initialize a new instance, passing the time and delay\n        functions\"\"\"\n        self._queue = []\n        self._lock = threading.RLock()\n        self.timefunc = timefunc\n        self.delayfunc = delayfunc\n\n    def enterabs(self, time, priority, action, argument=(), kwargs=_sentinel):\n        \"\"\"Enter a new event in the queue at an absolute time.\n\n        Returns an ID for the event which can be used to remove it,\n        if necessary.\n\n        \"\"\"\n        if kwargs is _sentinel:\n            kwargs = {}\n        event = Event(time, priority, action, argument, kwargs)\n        with self._lock:\n            heapq.heappush(self._queue, event)\n        return event # The ID\n\n    def enter(self, delay, priority, action, argument=(), kwargs=_sentinel):\n        \"\"\"A variant that specifies the time as a relative time.\n\n        This is actually the more commonly used interface.\n\n        \"\"\"\n        time = self.timefunc() + delay\n        return self.enterabs(time, priority, action, argument, kwargs)\n\n    def cancel(self, event):\n        \"\"\"Remove an event from the queue.\n\n        This must be presented the ID as returned by enter().\n        If the event is not in the queue, this raises ValueError.\n\n        \"\"\"\n        with self._lock:\n            self._queue.remove(event)\n            heapq.heapify(self._queue)\n\n    def empty(self):\n        \"\"\"Check whether the queue is empty.\"\"\"\n        with self._lock:\n            return not self._queue\n\n    def run(self, blocking=True):\n        \"\"\"Execute events until the queue is empty.\n        If blocking is False executes the scheduled events due to\n        expire soonest (if any) and then return the deadline of the\n        next scheduled call in the scheduler.\n\n        When there is a positive delay until the first event, the\n        delay function is called and the event is left in the queue;\n        otherwise, the event is removed from the queue and executed\n        (its action function is called, passing it the argument).  If\n        the delay function returns prematurely, it is simply\n        restarted.\n\n        It is legal for both the delay function and the action\n        function to modify the queue or to raise an exception;\n        exceptions are not caught but the scheduler's state remains\n        well-defined so run() may be called again.\n\n        A questionable hack is added to allow other threads to run:\n        just after an event is executed, a delay of 0 is executed, to\n        avoid monopolizing the CPU when other threads are also\n        runnable.\n\n        \"\"\"\n        # localize variable access to minimize overhead\n        # and to improve thread safety\n        lock = self._lock\n        q = self._queue\n        delayfunc = self.delayfunc\n        timefunc = self.timefunc\n        pop = heapq.heappop\n        while True:\n            with lock:\n                if not q:\n                    break\n                time, priority, action, argument, kwargs = q[0]\n                now = timefunc()\n                if time > now:\n                    delay = True\n                else:\n                    delay = False\n                    pop(q)\n            if delay:\n                if not blocking:\n                    return time - now\n                delayfunc(time - now)\n            else:\n                action(*argument, **kwargs)\n                delayfunc(0)   # Let other threads run\n\n    @property\n    def queue(self):\n        \"\"\"An ordered list of upcoming events.\n\n        Events are named tuples with fields for:\n            time, priority, action, arguments, kwargs\n\n        \"\"\"\n        # Use heapq to sort the queue rather than using 'sorted(self._queue)'.\n        # With heapq, two events scheduled at the same time will show in\n        # the actual order they would be retrieved.\n        with self._lock:\n            events = self._queue[:]\n        return list(map(heapq.heappop, [events]*len(events)))\n"
  },
  {
    "path": "rd/usr/lib/python3.8/secrets.py",
    "content": "\"\"\"Generate cryptographically strong pseudo-random numbers suitable for\nmanaging secrets such as account authentication, tokens, and similar.\n\nSee PEP 506 for more information.\nhttps://www.python.org/dev/peps/pep-0506/\n\n\"\"\"\n\n__all__ = ['choice', 'randbelow', 'randbits', 'SystemRandom',\n           'token_bytes', 'token_hex', 'token_urlsafe',\n           'compare_digest',\n           ]\n\n\nimport base64\nimport binascii\nimport os\n\nfrom hmac import compare_digest\nfrom random import SystemRandom\n\n_sysrand = SystemRandom()\n\nrandbits = _sysrand.getrandbits\nchoice = _sysrand.choice\n\ndef randbelow(exclusive_upper_bound):\n    \"\"\"Return a random int in the range [0, n).\"\"\"\n    if exclusive_upper_bound <= 0:\n        raise ValueError(\"Upper bound must be positive.\")\n    return _sysrand._randbelow(exclusive_upper_bound)\n\nDEFAULT_ENTROPY = 32  # number of bytes to return by default\n\ndef token_bytes(nbytes=None):\n    \"\"\"Return a random byte string containing *nbytes* bytes.\n\n    If *nbytes* is ``None`` or not supplied, a reasonable\n    default is used.\n\n    >>> token_bytes(16)  #doctest:+SKIP\n    b'\\\\xebr\\\\x17D*t\\\\xae\\\\xd4\\\\xe3S\\\\xb6\\\\xe2\\\\xebP1\\\\x8b'\n\n    \"\"\"\n    if nbytes is None:\n        nbytes = DEFAULT_ENTROPY\n    return os.urandom(nbytes)\n\ndef token_hex(nbytes=None):\n    \"\"\"Return a random text string, in hexadecimal.\n\n    The string has *nbytes* random bytes, each byte converted to two\n    hex digits.  If *nbytes* is ``None`` or not supplied, a reasonable\n    default is used.\n\n    >>> token_hex(16)  #doctest:+SKIP\n    'f9bf78b9a18ce6d46a0cd2b0b86df9da'\n\n    \"\"\"\n    return binascii.hexlify(token_bytes(nbytes)).decode('ascii')\n\ndef token_urlsafe(nbytes=None):\n    \"\"\"Return a random URL-safe text string, in Base64 encoding.\n\n    The string has *nbytes* random bytes.  If *nbytes* is ``None``\n    or not supplied, a reasonable default is used.\n\n    >>> token_urlsafe(16)  #doctest:+SKIP\n    'Drmhze6EPcv0fN_81Bj-nA'\n\n    \"\"\"\n    tok = token_bytes(nbytes)\n    return base64.urlsafe_b64encode(tok).rstrip(b'=').decode('ascii')\n"
  },
  {
    "path": "rd/usr/lib/python3.8/selectors.py",
    "content": "\"\"\"Selectors module.\n\nThis module allows high-level and efficient I/O multiplexing, built upon the\n`select` module primitives.\n\"\"\"\n\n\nfrom abc import ABCMeta, abstractmethod\nfrom collections import namedtuple\nfrom collections.abc import Mapping\nimport math\nimport select\nimport sys\n\n\n# generic events, that must be mapped to implementation-specific ones\nEVENT_READ = (1 << 0)\nEVENT_WRITE = (1 << 1)\n\n\ndef _fileobj_to_fd(fileobj):\n    \"\"\"Return a file descriptor from a file object.\n\n    Parameters:\n    fileobj -- file object or file descriptor\n\n    Returns:\n    corresponding file descriptor\n\n    Raises:\n    ValueError if the object is invalid\n    \"\"\"\n    if isinstance(fileobj, int):\n        fd = fileobj\n    else:\n        try:\n            fd = int(fileobj.fileno())\n        except (AttributeError, TypeError, ValueError):\n            raise ValueError(\"Invalid file object: \"\n                             \"{!r}\".format(fileobj)) from None\n    if fd < 0:\n        raise ValueError(\"Invalid file descriptor: {}\".format(fd))\n    return fd\n\n\nSelectorKey = namedtuple('SelectorKey', ['fileobj', 'fd', 'events', 'data'])\n\nSelectorKey.__doc__ = \"\"\"SelectorKey(fileobj, fd, events, data)\n\n    Object used to associate a file object to its backing\n    file descriptor, selected event mask, and attached data.\n\"\"\"\nif sys.version_info >= (3, 5):\n    SelectorKey.fileobj.__doc__ = 'File object registered.'\n    SelectorKey.fd.__doc__ = 'Underlying file descriptor.'\n    SelectorKey.events.__doc__ = 'Events that must be waited for on this file object.'\n    SelectorKey.data.__doc__ = ('''Optional opaque data associated to this file object.\n    For example, this could be used to store a per-client session ID.''')\n\nclass _SelectorMapping(Mapping):\n    \"\"\"Mapping of file objects to selector keys.\"\"\"\n\n    def __init__(self, selector):\n        self._selector = selector\n\n    def __len__(self):\n        return len(self._selector._fd_to_key)\n\n    def __getitem__(self, fileobj):\n        try:\n            fd = self._selector._fileobj_lookup(fileobj)\n            return self._selector._fd_to_key[fd]\n        except KeyError:\n            raise KeyError(\"{!r} is not registered\".format(fileobj)) from None\n\n    def __iter__(self):\n        return iter(self._selector._fd_to_key)\n\n\nclass BaseSelector(metaclass=ABCMeta):\n    \"\"\"Selector abstract base class.\n\n    A selector supports registering file objects to be monitored for specific\n    I/O events.\n\n    A file object is a file descriptor or any object with a `fileno()` method.\n    An arbitrary object can be attached to the file object, which can be used\n    for example to store context information, a callback, etc.\n\n    A selector can use various implementations (select(), poll(), epoll()...)\n    depending on the platform. The default `Selector` class uses the most\n    efficient implementation on the current platform.\n    \"\"\"\n\n    @abstractmethod\n    def register(self, fileobj, events, data=None):\n        \"\"\"Register a file object.\n\n        Parameters:\n        fileobj -- file object or file descriptor\n        events  -- events to monitor (bitwise mask of EVENT_READ|EVENT_WRITE)\n        data    -- attached data\n\n        Returns:\n        SelectorKey instance\n\n        Raises:\n        ValueError if events is invalid\n        KeyError if fileobj is already registered\n        OSError if fileobj is closed or otherwise is unacceptable to\n                the underlying system call (if a system call is made)\n\n        Note:\n        OSError may or may not be raised\n        \"\"\"\n        raise NotImplementedError\n\n    @abstractmethod\n    def unregister(self, fileobj):\n        \"\"\"Unregister a file object.\n\n        Parameters:\n        fileobj -- file object or file descriptor\n\n        Returns:\n        SelectorKey instance\n\n        Raises:\n        KeyError if fileobj is not registered\n\n        Note:\n        If fileobj is registered but has since been closed this does\n        *not* raise OSError (even if the wrapped syscall does)\n        \"\"\"\n        raise NotImplementedError\n\n    def modify(self, fileobj, events, data=None):\n        \"\"\"Change a registered file object monitored events or attached data.\n\n        Parameters:\n        fileobj -- file object or file descriptor\n        events  -- events to monitor (bitwise mask of EVENT_READ|EVENT_WRITE)\n        data    -- attached data\n\n        Returns:\n        SelectorKey instance\n\n        Raises:\n        Anything that unregister() or register() raises\n        \"\"\"\n        self.unregister(fileobj)\n        return self.register(fileobj, events, data)\n\n    @abstractmethod\n    def select(self, timeout=None):\n        \"\"\"Perform the actual selection, until some monitored file objects are\n        ready or a timeout expires.\n\n        Parameters:\n        timeout -- if timeout > 0, this specifies the maximum wait time, in\n                   seconds\n                   if timeout <= 0, the select() call won't block, and will\n                   report the currently ready file objects\n                   if timeout is None, select() will block until a monitored\n                   file object becomes ready\n\n        Returns:\n        list of (key, events) for ready file objects\n        `events` is a bitwise mask of EVENT_READ|EVENT_WRITE\n        \"\"\"\n        raise NotImplementedError\n\n    def close(self):\n        \"\"\"Close the selector.\n\n        This must be called to make sure that any underlying resource is freed.\n        \"\"\"\n        pass\n\n    def get_key(self, fileobj):\n        \"\"\"Return the key associated to a registered file object.\n\n        Returns:\n        SelectorKey for this file object\n        \"\"\"\n        mapping = self.get_map()\n        if mapping is None:\n            raise RuntimeError('Selector is closed')\n        try:\n            return mapping[fileobj]\n        except KeyError:\n            raise KeyError(\"{!r} is not registered\".format(fileobj)) from None\n\n    @abstractmethod\n    def get_map(self):\n        \"\"\"Return a mapping of file objects to selector keys.\"\"\"\n        raise NotImplementedError\n\n    def __enter__(self):\n        return self\n\n    def __exit__(self, *args):\n        self.close()\n\n\nclass _BaseSelectorImpl(BaseSelector):\n    \"\"\"Base selector implementation.\"\"\"\n\n    def __init__(self):\n        # this maps file descriptors to keys\n        self._fd_to_key = {}\n        # read-only mapping returned by get_map()\n        self._map = _SelectorMapping(self)\n\n    def _fileobj_lookup(self, fileobj):\n        \"\"\"Return a file descriptor from a file object.\n\n        This wraps _fileobj_to_fd() to do an exhaustive search in case\n        the object is invalid but we still have it in our map.  This\n        is used by unregister() so we can unregister an object that\n        was previously registered even if it is closed.  It is also\n        used by _SelectorMapping.\n        \"\"\"\n        try:\n            return _fileobj_to_fd(fileobj)\n        except ValueError:\n            # Do an exhaustive search.\n            for key in self._fd_to_key.values():\n                if key.fileobj is fileobj:\n                    return key.fd\n            # Raise ValueError after all.\n            raise\n\n    def register(self, fileobj, events, data=None):\n        if (not events) or (events & ~(EVENT_READ | EVENT_WRITE)):\n            raise ValueError(\"Invalid events: {!r}\".format(events))\n\n        key = SelectorKey(fileobj, self._fileobj_lookup(fileobj), events, data)\n\n        if key.fd in self._fd_to_key:\n            raise KeyError(\"{!r} (FD {}) is already registered\"\n                           .format(fileobj, key.fd))\n\n        self._fd_to_key[key.fd] = key\n        return key\n\n    def unregister(self, fileobj):\n        try:\n            key = self._fd_to_key.pop(self._fileobj_lookup(fileobj))\n        except KeyError:\n            raise KeyError(\"{!r} is not registered\".format(fileobj)) from None\n        return key\n\n    def modify(self, fileobj, events, data=None):\n        try:\n            key = self._fd_to_key[self._fileobj_lookup(fileobj)]\n        except KeyError:\n            raise KeyError(\"{!r} is not registered\".format(fileobj)) from None\n        if events != key.events:\n            self.unregister(fileobj)\n            key = self.register(fileobj, events, data)\n        elif data != key.data:\n            # Use a shortcut to update the data.\n            key = key._replace(data=data)\n            self._fd_to_key[key.fd] = key\n        return key\n\n    def close(self):\n        self._fd_to_key.clear()\n        self._map = None\n\n    def get_map(self):\n        return self._map\n\n    def _key_from_fd(self, fd):\n        \"\"\"Return the key associated to a given file descriptor.\n\n        Parameters:\n        fd -- file descriptor\n\n        Returns:\n        corresponding key, or None if not found\n        \"\"\"\n        try:\n            return self._fd_to_key[fd]\n        except KeyError:\n            return None\n\n\nclass SelectSelector(_BaseSelectorImpl):\n    \"\"\"Select-based selector.\"\"\"\n\n    def __init__(self):\n        super().__init__()\n        self._readers = set()\n        self._writers = set()\n\n    def register(self, fileobj, events, data=None):\n        key = super().register(fileobj, events, data)\n        if events & EVENT_READ:\n            self._readers.add(key.fd)\n        if events & EVENT_WRITE:\n            self._writers.add(key.fd)\n        return key\n\n    def unregister(self, fileobj):\n        key = super().unregister(fileobj)\n        self._readers.discard(key.fd)\n        self._writers.discard(key.fd)\n        return key\n\n    if sys.platform == 'win32':\n        def _select(self, r, w, _, timeout=None):\n            r, w, x = select.select(r, w, w, timeout)\n            return r, w + x, []\n    else:\n        _select = select.select\n\n    def select(self, timeout=None):\n        timeout = None if timeout is None else max(timeout, 0)\n        ready = []\n        try:\n            r, w, _ = self._select(self._readers, self._writers, [], timeout)\n        except InterruptedError:\n            return ready\n        r = set(r)\n        w = set(w)\n        for fd in r | w:\n            events = 0\n            if fd in r:\n                events |= EVENT_READ\n            if fd in w:\n                events |= EVENT_WRITE\n\n            key = self._key_from_fd(fd)\n            if key:\n                ready.append((key, events & key.events))\n        return ready\n\n\nclass _PollLikeSelector(_BaseSelectorImpl):\n    \"\"\"Base class shared between poll, epoll and devpoll selectors.\"\"\"\n    _selector_cls = None\n    _EVENT_READ = None\n    _EVENT_WRITE = None\n\n    def __init__(self):\n        super().__init__()\n        self._selector = self._selector_cls()\n\n    def register(self, fileobj, events, data=None):\n        key = super().register(fileobj, events, data)\n        poller_events = 0\n        if events & EVENT_READ:\n            poller_events |= self._EVENT_READ\n        if events & EVENT_WRITE:\n            poller_events |= self._EVENT_WRITE\n        try:\n            self._selector.register(key.fd, poller_events)\n        except:\n            super().unregister(fileobj)\n            raise\n        return key\n\n    def unregister(self, fileobj):\n        key = super().unregister(fileobj)\n        try:\n            self._selector.unregister(key.fd)\n        except OSError:\n            # This can happen if the FD was closed since it\n            # was registered.\n            pass\n        return key\n\n    def modify(self, fileobj, events, data=None):\n        try:\n            key = self._fd_to_key[self._fileobj_lookup(fileobj)]\n        except KeyError:\n            raise KeyError(f\"{fileobj!r} is not registered\") from None\n\n        changed = False\n        if events != key.events:\n            selector_events = 0\n            if events & EVENT_READ:\n                selector_events |= self._EVENT_READ\n            if events & EVENT_WRITE:\n                selector_events |= self._EVENT_WRITE\n            try:\n                self._selector.modify(key.fd, selector_events)\n            except:\n                super().unregister(fileobj)\n                raise\n            changed = True\n        if data != key.data:\n            changed = True\n\n        if changed:\n            key = key._replace(events=events, data=data)\n            self._fd_to_key[key.fd] = key\n        return key\n\n    def select(self, timeout=None):\n        # This is shared between poll() and epoll().\n        # epoll() has a different signature and handling of timeout parameter.\n        if timeout is None:\n            timeout = None\n        elif timeout <= 0:\n            timeout = 0\n        else:\n            # poll() has a resolution of 1 millisecond, round away from\n            # zero to wait *at least* timeout seconds.\n            timeout = math.ceil(timeout * 1e3)\n        ready = []\n        try:\n            fd_event_list = self._selector.poll(timeout)\n        except InterruptedError:\n            return ready\n        for fd, event in fd_event_list:\n            events = 0\n            if event & ~self._EVENT_READ:\n                events |= EVENT_WRITE\n            if event & ~self._EVENT_WRITE:\n                events |= EVENT_READ\n\n            key = self._key_from_fd(fd)\n            if key:\n                ready.append((key, events & key.events))\n        return ready\n\n\nif hasattr(select, 'poll'):\n\n    class PollSelector(_PollLikeSelector):\n        \"\"\"Poll-based selector.\"\"\"\n        _selector_cls = select.poll\n        _EVENT_READ = select.POLLIN\n        _EVENT_WRITE = select.POLLOUT\n\n\nif hasattr(select, 'epoll'):\n\n    class EpollSelector(_PollLikeSelector):\n        \"\"\"Epoll-based selector.\"\"\"\n        _selector_cls = select.epoll\n        _EVENT_READ = select.EPOLLIN\n        _EVENT_WRITE = select.EPOLLOUT\n\n        def fileno(self):\n            return self._selector.fileno()\n\n        def select(self, timeout=None):\n            if timeout is None:\n                timeout = -1\n            elif timeout <= 0:\n                timeout = 0\n            else:\n                # epoll_wait() has a resolution of 1 millisecond, round away\n                # from zero to wait *at least* timeout seconds.\n                timeout = math.ceil(timeout * 1e3) * 1e-3\n\n            # epoll_wait() expects `maxevents` to be greater than zero;\n            # we want to make sure that `select()` can be called when no\n            # FD is registered.\n            max_ev = max(len(self._fd_to_key), 1)\n\n            ready = []\n            try:\n                fd_event_list = self._selector.poll(timeout, max_ev)\n            except InterruptedError:\n                return ready\n            for fd, event in fd_event_list:\n                events = 0\n                if event & ~select.EPOLLIN:\n                    events |= EVENT_WRITE\n                if event & ~select.EPOLLOUT:\n                    events |= EVENT_READ\n\n                key = self._key_from_fd(fd)\n                if key:\n                    ready.append((key, events & key.events))\n            return ready\n\n        def close(self):\n            self._selector.close()\n            super().close()\n\n\nif hasattr(select, 'devpoll'):\n\n    class DevpollSelector(_PollLikeSelector):\n        \"\"\"Solaris /dev/poll selector.\"\"\"\n        _selector_cls = select.devpoll\n        _EVENT_READ = select.POLLIN\n        _EVENT_WRITE = select.POLLOUT\n\n        def fileno(self):\n            return self._selector.fileno()\n\n        def close(self):\n            self._selector.close()\n            super().close()\n\n\nif hasattr(select, 'kqueue'):\n\n    class KqueueSelector(_BaseSelectorImpl):\n        \"\"\"Kqueue-based selector.\"\"\"\n\n        def __init__(self):\n            super().__init__()\n            self._selector = select.kqueue()\n\n        def fileno(self):\n            return self._selector.fileno()\n\n        def register(self, fileobj, events, data=None):\n            key = super().register(fileobj, events, data)\n            try:\n                if events & EVENT_READ:\n                    kev = select.kevent(key.fd, select.KQ_FILTER_READ,\n                                        select.KQ_EV_ADD)\n                    self._selector.control([kev], 0, 0)\n                if events & EVENT_WRITE:\n                    kev = select.kevent(key.fd, select.KQ_FILTER_WRITE,\n                                        select.KQ_EV_ADD)\n                    self._selector.control([kev], 0, 0)\n            except:\n                super().unregister(fileobj)\n                raise\n            return key\n\n        def unregister(self, fileobj):\n            key = super().unregister(fileobj)\n            if key.events & EVENT_READ:\n                kev = select.kevent(key.fd, select.KQ_FILTER_READ,\n                                    select.KQ_EV_DELETE)\n                try:\n                    self._selector.control([kev], 0, 0)\n                except OSError:\n                    # This can happen if the FD was closed since it\n                    # was registered.\n                    pass\n            if key.events & EVENT_WRITE:\n                kev = select.kevent(key.fd, select.KQ_FILTER_WRITE,\n                                    select.KQ_EV_DELETE)\n                try:\n                    self._selector.control([kev], 0, 0)\n                except OSError:\n                    # See comment above.\n                    pass\n            return key\n\n        def select(self, timeout=None):\n            timeout = None if timeout is None else max(timeout, 0)\n            max_ev = len(self._fd_to_key)\n            ready = []\n            try:\n                kev_list = self._selector.control(None, max_ev, timeout)\n            except InterruptedError:\n                return ready\n            for kev in kev_list:\n                fd = kev.ident\n                flag = kev.filter\n                events = 0\n                if flag == select.KQ_FILTER_READ:\n                    events |= EVENT_READ\n                if flag == select.KQ_FILTER_WRITE:\n                    events |= EVENT_WRITE\n\n                key = self._key_from_fd(fd)\n                if key:\n                    ready.append((key, events & key.events))\n            return ready\n\n        def close(self):\n            self._selector.close()\n            super().close()\n\n\n# Choose the best implementation, roughly:\n#    epoll|kqueue|devpoll > poll > select.\n# select() also can't accept a FD > FD_SETSIZE (usually around 1024)\nif 'KqueueSelector' in globals():\n    DefaultSelector = KqueueSelector\nelif 'EpollSelector' in globals():\n    DefaultSelector = EpollSelector\nelif 'DevpollSelector' in globals():\n    DefaultSelector = DevpollSelector\nelif 'PollSelector' in globals():\n    DefaultSelector = PollSelector\nelse:\n    DefaultSelector = SelectSelector\n"
  },
  {
    "path": "rd/usr/lib/python3.8/shelve.py",
    "content": "\"\"\"Manage shelves of pickled objects.\n\nA \"shelf\" is a persistent, dictionary-like object.  The difference\nwith dbm databases is that the values (not the keys!) in a shelf can\nbe essentially arbitrary Python objects -- anything that the \"pickle\"\nmodule can handle.  This includes most class instances, recursive data\ntypes, and objects containing lots of shared sub-objects.  The keys\nare ordinary strings.\n\nTo summarize the interface (key is a string, data is an arbitrary\nobject):\n\n        import shelve\n        d = shelve.open(filename) # open, with (g)dbm filename -- no suffix\n\n        d[key] = data   # store data at key (overwrites old data if\n                        # using an existing key)\n        data = d[key]   # retrieve a COPY of the data at key (raise\n                        # KeyError if no such key) -- NOTE that this\n                        # access returns a *copy* of the entry!\n        del d[key]      # delete data stored at key (raises KeyError\n                        # if no such key)\n        flag = key in d # true if the key exists\n        list = d.keys() # a list of all existing keys (slow!)\n\n        d.close()       # close it\n\nDependent on the implementation, closing a persistent dictionary may\nor may not be necessary to flush changes to disk.\n\nNormally, d[key] returns a COPY of the entry.  This needs care when\nmutable entries are mutated: for example, if d[key] is a list,\n        d[key].append(anitem)\ndoes NOT modify the entry d[key] itself, as stored in the persistent\nmapping -- it only modifies the copy, which is then immediately\ndiscarded, so that the append has NO effect whatsoever.  To append an\nitem to d[key] in a way that will affect the persistent mapping, use:\n        data = d[key]\n        data.append(anitem)\n        d[key] = data\n\nTo avoid the problem with mutable entries, you may pass the keyword\nargument writeback=True in the call to shelve.open.  When you use:\n        d = shelve.open(filename, writeback=True)\nthen d keeps a cache of all entries you access, and writes them all back\nto the persistent mapping when you call d.close().  This ensures that\nsuch usage as d[key].append(anitem) works as intended.\n\nHowever, using keyword argument writeback=True may consume vast amount\nof memory for the cache, and it may make d.close() very slow, if you\naccess many of d's entries after opening it in this way: d has no way to\ncheck which of the entries you access are mutable and/or which ones you\nactually mutate, so it must cache, and write back at close, all of the\nentries that you access.  You can call d.sync() to write back all the\nentries in the cache, and empty the cache (d.sync() also synchronizes\nthe persistent dictionary on disk, if feasible).\n\"\"\"\n\nfrom pickle import Pickler, Unpickler\nfrom io import BytesIO\n\nimport collections.abc\n\n__all__ = [\"Shelf\", \"BsdDbShelf\", \"DbfilenameShelf\", \"open\"]\n\nclass _ClosedDict(collections.abc.MutableMapping):\n    'Marker for a closed dict.  Access attempts raise a ValueError.'\n\n    def closed(self, *args):\n        raise ValueError('invalid operation on closed shelf')\n    __iter__ = __len__ = __getitem__ = __setitem__ = __delitem__ = keys = closed\n\n    def __repr__(self):\n        return '<Closed Dictionary>'\n\n\nclass Shelf(collections.abc.MutableMapping):\n    \"\"\"Base class for shelf implementations.\n\n    This is initialized with a dictionary-like object.\n    See the module's __doc__ string for an overview of the interface.\n    \"\"\"\n\n    def __init__(self, dict, protocol=None, writeback=False,\n                 keyencoding=\"utf-8\"):\n        self.dict = dict\n        if protocol is None:\n            protocol = 3\n        self._protocol = protocol\n        self.writeback = writeback\n        self.cache = {}\n        self.keyencoding = keyencoding\n\n    def __iter__(self):\n        for k in self.dict.keys():\n            yield k.decode(self.keyencoding)\n\n    def __len__(self):\n        return len(self.dict)\n\n    def __contains__(self, key):\n        return key.encode(self.keyencoding) in self.dict\n\n    def get(self, key, default=None):\n        if key.encode(self.keyencoding) in self.dict:\n            return self[key]\n        return default\n\n    def __getitem__(self, key):\n        try:\n            value = self.cache[key]\n        except KeyError:\n            f = BytesIO(self.dict[key.encode(self.keyencoding)])\n            value = Unpickler(f).load()\n            if self.writeback:\n                self.cache[key] = value\n        return value\n\n    def __setitem__(self, key, value):\n        if self.writeback:\n            self.cache[key] = value\n        f = BytesIO()\n        p = Pickler(f, self._protocol)\n        p.dump(value)\n        self.dict[key.encode(self.keyencoding)] = f.getvalue()\n\n    def __delitem__(self, key):\n        del self.dict[key.encode(self.keyencoding)]\n        try:\n            del self.cache[key]\n        except KeyError:\n            pass\n\n    def __enter__(self):\n        return self\n\n    def __exit__(self, type, value, traceback):\n        self.close()\n\n    def close(self):\n        if self.dict is None:\n            return\n        try:\n            self.sync()\n            try:\n                self.dict.close()\n            except AttributeError:\n                pass\n        finally:\n            # Catch errors that may happen when close is called from __del__\n            # because CPython is in interpreter shutdown.\n            try:\n                self.dict = _ClosedDict()\n            except:\n                self.dict = None\n\n    def __del__(self):\n        if not hasattr(self, 'writeback'):\n            # __init__ didn't succeed, so don't bother closing\n            # see http://bugs.python.org/issue1339007 for details\n            return\n        self.close()\n\n    def sync(self):\n        if self.writeback and self.cache:\n            self.writeback = False\n            for key, entry in self.cache.items():\n                self[key] = entry\n            self.writeback = True\n            self.cache = {}\n        if hasattr(self.dict, 'sync'):\n            self.dict.sync()\n\n\nclass BsdDbShelf(Shelf):\n    \"\"\"Shelf implementation using the \"BSD\" db interface.\n\n    This adds methods first(), next(), previous(), last() and\n    set_location() that have no counterpart in [g]dbm databases.\n\n    The actual database must be opened using one of the \"bsddb\"\n    modules \"open\" routines (i.e. bsddb.hashopen, bsddb.btopen or\n    bsddb.rnopen) and passed to the constructor.\n\n    See the module's __doc__ string for an overview of the interface.\n    \"\"\"\n\n    def __init__(self, dict, protocol=None, writeback=False,\n                 keyencoding=\"utf-8\"):\n        Shelf.__init__(self, dict, protocol, writeback, keyencoding)\n\n    def set_location(self, key):\n        (key, value) = self.dict.set_location(key)\n        f = BytesIO(value)\n        return (key.decode(self.keyencoding), Unpickler(f).load())\n\n    def next(self):\n        (key, value) = next(self.dict)\n        f = BytesIO(value)\n        return (key.decode(self.keyencoding), Unpickler(f).load())\n\n    def previous(self):\n        (key, value) = self.dict.previous()\n        f = BytesIO(value)\n        return (key.decode(self.keyencoding), Unpickler(f).load())\n\n    def first(self):\n        (key, value) = self.dict.first()\n        f = BytesIO(value)\n        return (key.decode(self.keyencoding), Unpickler(f).load())\n\n    def last(self):\n        (key, value) = self.dict.last()\n        f = BytesIO(value)\n        return (key.decode(self.keyencoding), Unpickler(f).load())\n\n\nclass DbfilenameShelf(Shelf):\n    \"\"\"Shelf implementation using the \"dbm\" generic dbm interface.\n\n    This is initialized with the filename for the dbm database.\n    See the module's __doc__ string for an overview of the interface.\n    \"\"\"\n\n    def __init__(self, filename, flag='c', protocol=None, writeback=False):\n        import dbm\n        Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)\n\n\ndef open(filename, flag='c', protocol=None, writeback=False):\n    \"\"\"Open a persistent dictionary for reading and writing.\n\n    The filename parameter is the base filename for the underlying\n    database.  As a side-effect, an extension may be added to the\n    filename and more than one file may be created.  The optional flag\n    parameter has the same interpretation as the flag parameter of\n    dbm.open(). The optional protocol parameter specifies the\n    version of the pickle protocol.\n\n    See the module's __doc__ string for an overview of the interface.\n    \"\"\"\n\n    return DbfilenameShelf(filename, flag, protocol, writeback)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/shlex.py",
    "content": "\"\"\"A lexical analyzer class for simple shell-like syntaxes.\"\"\"\n\n# Module and documentation by Eric S. Raymond, 21 Dec 1998\n# Input stacking and error message cleanup added by ESR, March 2000\n# push_source() and pop_source() made explicit by ESR, January 2001.\n# Posix compliance, split(), string arguments, and\n# iterator interface by Gustavo Niemeyer, April 2003.\n# changes to tokenize more like Posix shells by Vinay Sajip, July 2016.\n\nimport os\nimport re\nimport sys\nfrom collections import deque\n\nfrom io import StringIO\n\n__all__ = [\"shlex\", \"split\", \"quote\", \"join\"]\n\nclass shlex:\n    \"A lexical analyzer class for simple shell-like syntaxes.\"\n    def __init__(self, instream=None, infile=None, posix=False,\n                 punctuation_chars=False):\n        if isinstance(instream, str):\n            instream = StringIO(instream)\n        if instream is not None:\n            self.instream = instream\n            self.infile = infile\n        else:\n            self.instream = sys.stdin\n            self.infile = None\n        self.posix = posix\n        if posix:\n            self.eof = None\n        else:\n            self.eof = ''\n        self.commenters = '#'\n        self.wordchars = ('abcdfeghijklmnopqrstuvwxyz'\n                          'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_')\n        if self.posix:\n            self.wordchars += ('ßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ'\n                               'ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞ')\n        self.whitespace = ' \\t\\r\\n'\n        self.whitespace_split = False\n        self.quotes = '\\'\"'\n        self.escape = '\\\\'\n        self.escapedquotes = '\"'\n        self.state = ' '\n        self.pushback = deque()\n        self.lineno = 1\n        self.debug = 0\n        self.token = ''\n        self.filestack = deque()\n        self.source = None\n        if not punctuation_chars:\n            punctuation_chars = ''\n        elif punctuation_chars is True:\n            punctuation_chars = '();<>|&'\n        self._punctuation_chars = punctuation_chars\n        if punctuation_chars:\n            # _pushback_chars is a push back queue used by lookahead logic\n            self._pushback_chars = deque()\n            # these chars added because allowed in file names, args, wildcards\n            self.wordchars += '~-./*?='\n            #remove any punctuation chars from wordchars\n            t = self.wordchars.maketrans(dict.fromkeys(punctuation_chars))\n            self.wordchars = self.wordchars.translate(t)\n\n    @property\n    def punctuation_chars(self):\n        return self._punctuation_chars\n\n    def push_token(self, tok):\n        \"Push a token onto the stack popped by the get_token method\"\n        if self.debug >= 1:\n            print(\"shlex: pushing token \" + repr(tok))\n        self.pushback.appendleft(tok)\n\n    def push_source(self, newstream, newfile=None):\n        \"Push an input source onto the lexer's input source stack.\"\n        if isinstance(newstream, str):\n            newstream = StringIO(newstream)\n        self.filestack.appendleft((self.infile, self.instream, self.lineno))\n        self.infile = newfile\n        self.instream = newstream\n        self.lineno = 1\n        if self.debug:\n            if newfile is not None:\n                print('shlex: pushing to file %s' % (self.infile,))\n            else:\n                print('shlex: pushing to stream %s' % (self.instream,))\n\n    def pop_source(self):\n        \"Pop the input source stack.\"\n        self.instream.close()\n        (self.infile, self.instream, self.lineno) = self.filestack.popleft()\n        if self.debug:\n            print('shlex: popping to %s, line %d' \\\n                  % (self.instream, self.lineno))\n        self.state = ' '\n\n    def get_token(self):\n        \"Get a token from the input stream (or from stack if it's nonempty)\"\n        if self.pushback:\n            tok = self.pushback.popleft()\n            if self.debug >= 1:\n                print(\"shlex: popping token \" + repr(tok))\n            return tok\n        # No pushback.  Get a token.\n        raw = self.read_token()\n        # Handle inclusions\n        if self.source is not None:\n            while raw == self.source:\n                spec = self.sourcehook(self.read_token())\n                if spec:\n                    (newfile, newstream) = spec\n                    self.push_source(newstream, newfile)\n                raw = self.get_token()\n        # Maybe we got EOF instead?\n        while raw == self.eof:\n            if not self.filestack:\n                return self.eof\n            else:\n                self.pop_source()\n                raw = self.get_token()\n        # Neither inclusion nor EOF\n        if self.debug >= 1:\n            if raw != self.eof:\n                print(\"shlex: token=\" + repr(raw))\n            else:\n                print(\"shlex: token=EOF\")\n        return raw\n\n    def read_token(self):\n        quoted = False\n        escapedstate = ' '\n        while True:\n            if self.punctuation_chars and self._pushback_chars:\n                nextchar = self._pushback_chars.pop()\n            else:\n                nextchar = self.instream.read(1)\n            if nextchar == '\\n':\n                self.lineno += 1\n            if self.debug >= 3:\n                print(\"shlex: in state %r I see character: %r\" % (self.state,\n                                                                  nextchar))\n            if self.state is None:\n                self.token = ''        # past end of file\n                break\n            elif self.state == ' ':\n                if not nextchar:\n                    self.state = None  # end of file\n                    break\n                elif nextchar in self.whitespace:\n                    if self.debug >= 2:\n                        print(\"shlex: I see whitespace in whitespace state\")\n                    if self.token or (self.posix and quoted):\n                        break   # emit current token\n                    else:\n                        continue\n                elif nextchar in self.commenters:\n                    self.instream.readline()\n                    self.lineno += 1\n                elif self.posix and nextchar in self.escape:\n                    escapedstate = 'a'\n                    self.state = nextchar\n                elif nextchar in self.wordchars:\n                    self.token = nextchar\n                    self.state = 'a'\n                elif nextchar in self.punctuation_chars:\n                    self.token = nextchar\n                    self.state = 'c'\n                elif nextchar in self.quotes:\n                    if not self.posix:\n                        self.token = nextchar\n                    self.state = nextchar\n                elif self.whitespace_split:\n                    self.token = nextchar\n                    self.state = 'a'\n                else:\n                    self.token = nextchar\n                    if self.token or (self.posix and quoted):\n                        break   # emit current token\n                    else:\n                        continue\n            elif self.state in self.quotes:\n                quoted = True\n                if not nextchar:      # end of file\n                    if self.debug >= 2:\n                        print(\"shlex: I see EOF in quotes state\")\n                    # XXX what error should be raised here?\n                    raise ValueError(\"No closing quotation\")\n                if nextchar == self.state:\n                    if not self.posix:\n                        self.token += nextchar\n                        self.state = ' '\n                        break\n                    else:\n                        self.state = 'a'\n                elif (self.posix and nextchar in self.escape and self.state\n                      in self.escapedquotes):\n                    escapedstate = self.state\n                    self.state = nextchar\n                else:\n                    self.token += nextchar\n            elif self.state in self.escape:\n                if not nextchar:      # end of file\n                    if self.debug >= 2:\n                        print(\"shlex: I see EOF in escape state\")\n                    # XXX what error should be raised here?\n                    raise ValueError(\"No escaped character\")\n                # In posix shells, only the quote itself or the escape\n                # character may be escaped within quotes.\n                if (escapedstate in self.quotes and\n                        nextchar != self.state and nextchar != escapedstate):\n                    self.token += self.state\n                self.token += nextchar\n                self.state = escapedstate\n            elif self.state in ('a', 'c'):\n                if not nextchar:\n                    self.state = None   # end of file\n                    break\n                elif nextchar in self.whitespace:\n                    if self.debug >= 2:\n                        print(\"shlex: I see whitespace in word state\")\n                    self.state = ' '\n                    if self.token or (self.posix and quoted):\n                        break   # emit current token\n                    else:\n                        continue\n                elif nextchar in self.commenters:\n                    self.instream.readline()\n                    self.lineno += 1\n                    if self.posix:\n                        self.state = ' '\n                        if self.token or (self.posix and quoted):\n                            break   # emit current token\n                        else:\n                            continue\n                elif self.state == 'c':\n                    if nextchar in self.punctuation_chars:\n                        self.token += nextchar\n                    else:\n                        if nextchar not in self.whitespace:\n                            self._pushback_chars.append(nextchar)\n                        self.state = ' '\n                        break\n                elif self.posix and nextchar in self.quotes:\n                    self.state = nextchar\n                elif self.posix and nextchar in self.escape:\n                    escapedstate = 'a'\n                    self.state = nextchar\n                elif (nextchar in self.wordchars or nextchar in self.quotes\n                      or (self.whitespace_split and\n                          nextchar not in self.punctuation_chars)):\n                    self.token += nextchar\n                else:\n                    if self.punctuation_chars:\n                        self._pushback_chars.append(nextchar)\n                    else:\n                        self.pushback.appendleft(nextchar)\n                    if self.debug >= 2:\n                        print(\"shlex: I see punctuation in word state\")\n                    self.state = ' '\n                    if self.token or (self.posix and quoted):\n                        break   # emit current token\n                    else:\n                        continue\n        result = self.token\n        self.token = ''\n        if self.posix and not quoted and result == '':\n            result = None\n        if self.debug > 1:\n            if result:\n                print(\"shlex: raw token=\" + repr(result))\n            else:\n                print(\"shlex: raw token=EOF\")\n        return result\n\n    def sourcehook(self, newfile):\n        \"Hook called on a filename to be sourced.\"\n        if newfile[0] == '\"':\n            newfile = newfile[1:-1]\n        # This implements cpp-like semantics for relative-path inclusion.\n        if isinstance(self.infile, str) and not os.path.isabs(newfile):\n            newfile = os.path.join(os.path.dirname(self.infile), newfile)\n        return (newfile, open(newfile, \"r\"))\n\n    def error_leader(self, infile=None, lineno=None):\n        \"Emit a C-compiler-like, Emacs-friendly error-message leader.\"\n        if infile is None:\n            infile = self.infile\n        if lineno is None:\n            lineno = self.lineno\n        return \"\\\"%s\\\", line %d: \" % (infile, lineno)\n\n    def __iter__(self):\n        return self\n\n    def __next__(self):\n        token = self.get_token()\n        if token == self.eof:\n            raise StopIteration\n        return token\n\ndef split(s, comments=False, posix=True):\n    \"\"\"Split the string *s* using shell-like syntax.\"\"\"\n    lex = shlex(s, posix=posix)\n    lex.whitespace_split = True\n    if not comments:\n        lex.commenters = ''\n    return list(lex)\n\n\ndef join(split_command):\n    \"\"\"Return a shell-escaped string from *split_command*.\"\"\"\n    return ' '.join(quote(arg) for arg in split_command)\n\n\n_find_unsafe = re.compile(r'[^\\w@%+=:,./-]', re.ASCII).search\n\ndef quote(s):\n    \"\"\"Return a shell-escaped version of the string *s*.\"\"\"\n    if not s:\n        return \"''\"\n    if _find_unsafe(s) is None:\n        return s\n\n    # use single quotes, and put single quotes into double quotes\n    # the string $'b is then quoted as '$'\"'\"'b'\n    return \"'\" + s.replace(\"'\", \"'\\\"'\\\"'\") + \"'\"\n\n\ndef _print_tokens(lexer):\n    while 1:\n        tt = lexer.get_token()\n        if not tt:\n            break\n        print(\"Token: \" + repr(tt))\n\nif __name__ == '__main__':\n    if len(sys.argv) == 1:\n        _print_tokens(shlex())\n    else:\n        fn = sys.argv[1]\n        with open(fn) as f:\n            _print_tokens(shlex(f, fn))\n"
  },
  {
    "path": "rd/usr/lib/python3.8/shutil.py",
    "content": "\"\"\"Utility functions for copying and archiving files and directory trees.\n\nXXX The functions here don't copy the resource fork or other metadata on Mac.\n\n\"\"\"\n\nimport os\nimport sys\nimport stat\nimport fnmatch\nimport collections\nimport errno\n\ntry:\n    import zlib\n    del zlib\n    _ZLIB_SUPPORTED = True\nexcept ImportError:\n    _ZLIB_SUPPORTED = False\n\ntry:\n    import bz2\n    del bz2\n    _BZ2_SUPPORTED = True\nexcept ImportError:\n    _BZ2_SUPPORTED = False\n\ntry:\n    import lzma\n    del lzma\n    _LZMA_SUPPORTED = True\nexcept ImportError:\n    _LZMA_SUPPORTED = False\n\ntry:\n    from pwd import getpwnam\nexcept ImportError:\n    getpwnam = None\n\ntry:\n    from grp import getgrnam\nexcept ImportError:\n    getgrnam = None\n\n_WINDOWS = os.name == 'nt'\nposix = nt = None\nif os.name == 'posix':\n    import posix\nelif _WINDOWS:\n    import nt\n\nCOPY_BUFSIZE = 1024 * 1024 if _WINDOWS else 64 * 1024\n_USE_CP_SENDFILE = hasattr(os, \"sendfile\") and sys.platform.startswith(\"linux\")\n_HAS_FCOPYFILE = posix and hasattr(posix, \"_fcopyfile\")  # macOS\n\n__all__ = [\"copyfileobj\", \"copyfile\", \"copymode\", \"copystat\", \"copy\", \"copy2\",\n           \"copytree\", \"move\", \"rmtree\", \"Error\", \"SpecialFileError\",\n           \"ExecError\", \"make_archive\", \"get_archive_formats\",\n           \"register_archive_format\", \"unregister_archive_format\",\n           \"get_unpack_formats\", \"register_unpack_format\",\n           \"unregister_unpack_format\", \"unpack_archive\",\n           \"ignore_patterns\", \"chown\", \"which\", \"get_terminal_size\",\n           \"SameFileError\"]\n           # disk_usage is added later, if available on the platform\n\nclass Error(OSError):\n    pass\n\nclass SameFileError(Error):\n    \"\"\"Raised when source and destination are the same file.\"\"\"\n\nclass SpecialFileError(OSError):\n    \"\"\"Raised when trying to do a kind of operation (e.g. copying) which is\n    not supported on a special file (e.g. a named pipe)\"\"\"\n\nclass ExecError(OSError):\n    \"\"\"Raised when a command could not be executed\"\"\"\n\nclass ReadError(OSError):\n    \"\"\"Raised when an archive cannot be read\"\"\"\n\nclass RegistryError(Exception):\n    \"\"\"Raised when a registry operation with the archiving\n    and unpacking registries fails\"\"\"\n\nclass _GiveupOnFastCopy(Exception):\n    \"\"\"Raised as a signal to fallback on using raw read()/write()\n    file copy when fast-copy functions fail to do so.\n    \"\"\"\n\ndef _fastcopy_fcopyfile(fsrc, fdst, flags):\n    \"\"\"Copy a regular file content or metadata by using high-performance\n    fcopyfile(3) syscall (macOS).\n    \"\"\"\n    try:\n        infd = fsrc.fileno()\n        outfd = fdst.fileno()\n    except Exception as err:\n        raise _GiveupOnFastCopy(err)  # not a regular file\n\n    try:\n        posix._fcopyfile(infd, outfd, flags)\n    except OSError as err:\n        err.filename = fsrc.name\n        err.filename2 = fdst.name\n        if err.errno in {errno.EINVAL, errno.ENOTSUP}:\n            raise _GiveupOnFastCopy(err)\n        else:\n            raise err from None\n\ndef _fastcopy_sendfile(fsrc, fdst):\n    \"\"\"Copy data from one regular mmap-like fd to another by using\n    high-performance sendfile(2) syscall.\n    This should work on Linux >= 2.6.33 only.\n    \"\"\"\n    # Note: copyfileobj() is left alone in order to not introduce any\n    # unexpected breakage. Possible risks by using zero-copy calls\n    # in copyfileobj() are:\n    # - fdst cannot be open in \"a\"(ppend) mode\n    # - fsrc and fdst may be open in \"t\"(ext) mode\n    # - fsrc may be a BufferedReader (which hides unread data in a buffer),\n    #   GzipFile (which decompresses data), HTTPResponse (which decodes\n    #   chunks).\n    # - possibly others (e.g. encrypted fs/partition?)\n    global _USE_CP_SENDFILE\n    try:\n        infd = fsrc.fileno()\n        outfd = fdst.fileno()\n    except Exception as err:\n        raise _GiveupOnFastCopy(err)  # not a regular file\n\n    # Hopefully the whole file will be copied in a single call.\n    # sendfile() is called in a loop 'till EOF is reached (0 return)\n    # so a bufsize smaller or bigger than the actual file size\n    # should not make any difference, also in case the file content\n    # changes while being copied.\n    try:\n        blocksize = max(os.fstat(infd).st_size, 2 ** 23)  # min 8MiB\n    except OSError:\n        blocksize = 2 ** 27  # 128MiB\n    # On 32-bit architectures truncate to 1GiB to avoid OverflowError,\n    # see bpo-38319.\n    if sys.maxsize < 2 ** 32:\n        blocksize = min(blocksize, 2 ** 30)\n\n    offset = 0\n    while True:\n        try:\n            sent = os.sendfile(outfd, infd, offset, blocksize)\n        except OSError as err:\n            # ...in oder to have a more informative exception.\n            err.filename = fsrc.name\n            err.filename2 = fdst.name\n\n            if err.errno == errno.ENOTSOCK:\n                # sendfile() on this platform (probably Linux < 2.6.33)\n                # does not support copies between regular files (only\n                # sockets).\n                _USE_CP_SENDFILE = False\n                raise _GiveupOnFastCopy(err)\n\n            if err.errno == errno.ENOSPC:  # filesystem is full\n                raise err from None\n\n            # Give up on first call and if no data was copied.\n            if offset == 0 and os.lseek(outfd, 0, os.SEEK_CUR) == 0:\n                raise _GiveupOnFastCopy(err)\n\n            raise err\n        else:\n            if sent == 0:\n                break  # EOF\n            offset += sent\n\ndef _copyfileobj_readinto(fsrc, fdst, length=COPY_BUFSIZE):\n    \"\"\"readinto()/memoryview() based variant of copyfileobj().\n    *fsrc* must support readinto() method and both files must be\n    open in binary mode.\n    \"\"\"\n    # Localize variable access to minimize overhead.\n    fsrc_readinto = fsrc.readinto\n    fdst_write = fdst.write\n    with memoryview(bytearray(length)) as mv:\n        while True:\n            n = fsrc_readinto(mv)\n            if not n:\n                break\n            elif n < length:\n                with mv[:n] as smv:\n                    fdst.write(smv)\n            else:\n                fdst_write(mv)\n\ndef copyfileobj(fsrc, fdst, length=0):\n    \"\"\"copy data from file-like object fsrc to file-like object fdst\"\"\"\n    # Localize variable access to minimize overhead.\n    if not length:\n        length = COPY_BUFSIZE\n    fsrc_read = fsrc.read\n    fdst_write = fdst.write\n    while True:\n        buf = fsrc_read(length)\n        if not buf:\n            break\n        fdst_write(buf)\n\ndef _samefile(src, dst):\n    # Macintosh, Unix.\n    if isinstance(src, os.DirEntry) and hasattr(os.path, 'samestat'):\n        try:\n            return os.path.samestat(src.stat(), os.stat(dst))\n        except OSError:\n            return False\n\n    if hasattr(os.path, 'samefile'):\n        try:\n            return os.path.samefile(src, dst)\n        except OSError:\n            return False\n\n    # All other platforms: check for same pathname.\n    return (os.path.normcase(os.path.abspath(src)) ==\n            os.path.normcase(os.path.abspath(dst)))\n\ndef _stat(fn):\n    return fn.stat() if isinstance(fn, os.DirEntry) else os.stat(fn)\n\ndef _islink(fn):\n    return fn.is_symlink() if isinstance(fn, os.DirEntry) else os.path.islink(fn)\n\ndef copyfile(src, dst, *, follow_symlinks=True):\n    \"\"\"Copy data from src to dst in the most efficient way possible.\n\n    If follow_symlinks is not set and src is a symbolic link, a new\n    symlink will be created instead of copying the file it points to.\n\n    \"\"\"\n    sys.audit(\"shutil.copyfile\", src, dst)\n\n    if _samefile(src, dst):\n        raise SameFileError(\"{!r} and {!r} are the same file\".format(src, dst))\n\n    file_size = 0\n    for i, fn in enumerate([src, dst]):\n        try:\n            st = _stat(fn)\n        except OSError:\n            # File most likely does not exist\n            pass\n        else:\n            # XXX What about other special files? (sockets, devices...)\n            if stat.S_ISFIFO(st.st_mode):\n                fn = fn.path if isinstance(fn, os.DirEntry) else fn\n                raise SpecialFileError(\"`%s` is a named pipe\" % fn)\n            if _WINDOWS and i == 0:\n                file_size = st.st_size\n\n    if not follow_symlinks and _islink(src):\n        os.symlink(os.readlink(src), dst)\n    else:\n        with open(src, 'rb') as fsrc, open(dst, 'wb') as fdst:\n            # macOS\n            if _HAS_FCOPYFILE:\n                try:\n                    _fastcopy_fcopyfile(fsrc, fdst, posix._COPYFILE_DATA)\n                    return dst\n                except _GiveupOnFastCopy:\n                    pass\n            # Linux\n            elif _USE_CP_SENDFILE:\n                try:\n                    _fastcopy_sendfile(fsrc, fdst)\n                    return dst\n                except _GiveupOnFastCopy:\n                    pass\n            # Windows, see:\n            # https://github.com/python/cpython/pull/7160#discussion_r195405230\n            elif _WINDOWS and file_size > 0:\n                _copyfileobj_readinto(fsrc, fdst, min(file_size, COPY_BUFSIZE))\n                return dst\n\n            copyfileobj(fsrc, fdst)\n\n    return dst\n\ndef copymode(src, dst, *, follow_symlinks=True):\n    \"\"\"Copy mode bits from src to dst.\n\n    If follow_symlinks is not set, symlinks aren't followed if and only\n    if both `src` and `dst` are symlinks.  If `lchmod` isn't available\n    (e.g. Linux) this method does nothing.\n\n    \"\"\"\n    sys.audit(\"shutil.copymode\", src, dst)\n\n    if not follow_symlinks and _islink(src) and os.path.islink(dst):\n        if hasattr(os, 'lchmod'):\n            stat_func, chmod_func = os.lstat, os.lchmod\n        else:\n            return\n    else:\n        stat_func, chmod_func = _stat, os.chmod\n\n    st = stat_func(src)\n    chmod_func(dst, stat.S_IMODE(st.st_mode))\n\nif hasattr(os, 'listxattr'):\n    def _copyxattr(src, dst, *, follow_symlinks=True):\n        \"\"\"Copy extended filesystem attributes from `src` to `dst`.\n\n        Overwrite existing attributes.\n\n        If `follow_symlinks` is false, symlinks won't be followed.\n\n        \"\"\"\n\n        try:\n            names = os.listxattr(src, follow_symlinks=follow_symlinks)\n        except OSError as e:\n            if e.errno not in (errno.ENOTSUP, errno.ENODATA, errno.EINVAL):\n                raise\n            return\n        for name in names:\n            try:\n                value = os.getxattr(src, name, follow_symlinks=follow_symlinks)\n                os.setxattr(dst, name, value, follow_symlinks=follow_symlinks)\n            except OSError as e:\n                if e.errno not in (errno.EPERM, errno.ENOTSUP, errno.ENODATA,\n                                   errno.EINVAL):\n                    raise\nelse:\n    def _copyxattr(*args, **kwargs):\n        pass\n\ndef copystat(src, dst, *, follow_symlinks=True):\n    \"\"\"Copy file metadata\n\n    Copy the permission bits, last access time, last modification time, and\n    flags from `src` to `dst`. On Linux, copystat() also copies the \"extended\n    attributes\" where possible. The file contents, owner, and group are\n    unaffected. `src` and `dst` are path-like objects or path names given as\n    strings.\n\n    If the optional flag `follow_symlinks` is not set, symlinks aren't\n    followed if and only if both `src` and `dst` are symlinks.\n    \"\"\"\n    sys.audit(\"shutil.copystat\", src, dst)\n\n    def _nop(*args, ns=None, follow_symlinks=None):\n        pass\n\n    # follow symlinks (aka don't not follow symlinks)\n    follow = follow_symlinks or not (_islink(src) and os.path.islink(dst))\n    if follow:\n        # use the real function if it exists\n        def lookup(name):\n            return getattr(os, name, _nop)\n    else:\n        # use the real function only if it exists\n        # *and* it supports follow_symlinks\n        def lookup(name):\n            fn = getattr(os, name, _nop)\n            if fn in os.supports_follow_symlinks:\n                return fn\n            return _nop\n\n    if isinstance(src, os.DirEntry):\n        st = src.stat(follow_symlinks=follow)\n    else:\n        st = lookup(\"stat\")(src, follow_symlinks=follow)\n    mode = stat.S_IMODE(st.st_mode)\n    lookup(\"utime\")(dst, ns=(st.st_atime_ns, st.st_mtime_ns),\n        follow_symlinks=follow)\n    # We must copy extended attributes before the file is (potentially)\n    # chmod()'ed read-only, otherwise setxattr() will error with -EACCES.\n    _copyxattr(src, dst, follow_symlinks=follow)\n    try:\n        lookup(\"chmod\")(dst, mode, follow_symlinks=follow)\n    except NotImplementedError:\n        # if we got a NotImplementedError, it's because\n        #   * follow_symlinks=False,\n        #   * lchown() is unavailable, and\n        #   * either\n        #       * fchownat() is unavailable or\n        #       * fchownat() doesn't implement AT_SYMLINK_NOFOLLOW.\n        #         (it returned ENOSUP.)\n        # therefore we're out of options--we simply cannot chown the\n        # symlink.  give up, suppress the error.\n        # (which is what shutil always did in this circumstance.)\n        pass\n    if hasattr(st, 'st_flags'):\n        try:\n            lookup(\"chflags\")(dst, st.st_flags, follow_symlinks=follow)\n        except OSError as why:\n            for err in 'EOPNOTSUPP', 'ENOTSUP':\n                if hasattr(errno, err) and why.errno == getattr(errno, err):\n                    break\n            else:\n                raise\n\ndef copy(src, dst, *, follow_symlinks=True):\n    \"\"\"Copy data and mode bits (\"cp src dst\"). Return the file's destination.\n\n    The destination may be a directory.\n\n    If follow_symlinks is false, symlinks won't be followed. This\n    resembles GNU's \"cp -P src dst\".\n\n    If source and destination are the same file, a SameFileError will be\n    raised.\n\n    \"\"\"\n    if os.path.isdir(dst):\n        dst = os.path.join(dst, os.path.basename(src))\n    copyfile(src, dst, follow_symlinks=follow_symlinks)\n    copymode(src, dst, follow_symlinks=follow_symlinks)\n    return dst\n\ndef copy2(src, dst, *, follow_symlinks=True):\n    \"\"\"Copy data and metadata. Return the file's destination.\n\n    Metadata is copied with copystat(). Please see the copystat function\n    for more information.\n\n    The destination may be a directory.\n\n    If follow_symlinks is false, symlinks won't be followed. This\n    resembles GNU's \"cp -P src dst\".\n    \"\"\"\n    if os.path.isdir(dst):\n        dst = os.path.join(dst, os.path.basename(src))\n    copyfile(src, dst, follow_symlinks=follow_symlinks)\n    copystat(src, dst, follow_symlinks=follow_symlinks)\n    return dst\n\ndef ignore_patterns(*patterns):\n    \"\"\"Function that can be used as copytree() ignore parameter.\n\n    Patterns is a sequence of glob-style patterns\n    that are used to exclude files\"\"\"\n    def _ignore_patterns(path, names):\n        ignored_names = []\n        for pattern in patterns:\n            ignored_names.extend(fnmatch.filter(names, pattern))\n        return set(ignored_names)\n    return _ignore_patterns\n\ndef _copytree(entries, src, dst, symlinks, ignore, copy_function,\n              ignore_dangling_symlinks, dirs_exist_ok=False):\n    if ignore is not None:\n        ignored_names = ignore(os.fspath(src), [x.name for x in entries])\n    else:\n        ignored_names = set()\n\n    os.makedirs(dst, exist_ok=dirs_exist_ok)\n    errors = []\n    use_srcentry = copy_function is copy2 or copy_function is copy\n\n    for srcentry in entries:\n        if srcentry.name in ignored_names:\n            continue\n        srcname = os.path.join(src, srcentry.name)\n        dstname = os.path.join(dst, srcentry.name)\n        srcobj = srcentry if use_srcentry else srcname\n        try:\n            is_symlink = srcentry.is_symlink()\n            if is_symlink and os.name == 'nt':\n                # Special check for directory junctions, which appear as\n                # symlinks but we want to recurse.\n                lstat = srcentry.stat(follow_symlinks=False)\n                if lstat.st_reparse_tag == stat.IO_REPARSE_TAG_MOUNT_POINT:\n                    is_symlink = False\n            if is_symlink:\n                linkto = os.readlink(srcname)\n                if symlinks:\n                    # We can't just leave it to `copy_function` because legacy\n                    # code with a custom `copy_function` may rely on copytree\n                    # doing the right thing.\n                    os.symlink(linkto, dstname)\n                    copystat(srcobj, dstname, follow_symlinks=not symlinks)\n                else:\n                    # ignore dangling symlink if the flag is on\n                    if not os.path.exists(linkto) and ignore_dangling_symlinks:\n                        continue\n                    # otherwise let the copy occur. copy2 will raise an error\n                    if srcentry.is_dir():\n                        copytree(srcobj, dstname, symlinks, ignore,\n                                 copy_function, dirs_exist_ok=dirs_exist_ok)\n                    else:\n                        copy_function(srcobj, dstname)\n            elif srcentry.is_dir():\n                copytree(srcobj, dstname, symlinks, ignore, copy_function,\n                         dirs_exist_ok=dirs_exist_ok)\n            else:\n                # Will raise a SpecialFileError for unsupported file types\n                copy_function(srcobj, dstname)\n        # catch the Error from the recursive copytree so that we can\n        # continue with other files\n        except Error as err:\n            errors.extend(err.args[0])\n        except OSError as why:\n            errors.append((srcname, dstname, str(why)))\n    try:\n        copystat(src, dst)\n    except OSError as why:\n        # Copying file access times may fail on Windows\n        if getattr(why, 'winerror', None) is None:\n            errors.append((src, dst, str(why)))\n    if errors:\n        raise Error(errors)\n    return dst\n\ndef copytree(src, dst, symlinks=False, ignore=None, copy_function=copy2,\n             ignore_dangling_symlinks=False, dirs_exist_ok=False):\n    \"\"\"Recursively copy a directory tree and return the destination directory.\n\n    dirs_exist_ok dictates whether to raise an exception in case dst or any\n    missing parent directory already exists.\n\n    If exception(s) occur, an Error is raised with a list of reasons.\n\n    If the optional symlinks flag is true, symbolic links in the\n    source tree result in symbolic links in the destination tree; if\n    it is false, the contents of the files pointed to by symbolic\n    links are copied. If the file pointed by the symlink doesn't\n    exist, an exception will be added in the list of errors raised in\n    an Error exception at the end of the copy process.\n\n    You can set the optional ignore_dangling_symlinks flag to true if you\n    want to silence this exception. Notice that this has no effect on\n    platforms that don't support os.symlink.\n\n    The optional ignore argument is a callable. If given, it\n    is called with the `src` parameter, which is the directory\n    being visited by copytree(), and `names` which is the list of\n    `src` contents, as returned by os.listdir():\n\n        callable(src, names) -> ignored_names\n\n    Since copytree() is called recursively, the callable will be\n    called once for each directory that is copied. It returns a\n    list of names relative to the `src` directory that should\n    not be copied.\n\n    The optional copy_function argument is a callable that will be used\n    to copy each file. It will be called with the source path and the\n    destination path as arguments. By default, copy2() is used, but any\n    function that supports the same signature (like copy()) can be used.\n\n    \"\"\"\n    sys.audit(\"shutil.copytree\", src, dst)\n    with os.scandir(src) as itr:\n        entries = list(itr)\n    return _copytree(entries=entries, src=src, dst=dst, symlinks=symlinks,\n                     ignore=ignore, copy_function=copy_function,\n                     ignore_dangling_symlinks=ignore_dangling_symlinks,\n                     dirs_exist_ok=dirs_exist_ok)\n\nif hasattr(os.stat_result, 'st_file_attributes'):\n    # Special handling for directory junctions to make them behave like\n    # symlinks for shutil.rmtree, since in general they do not appear as\n    # regular links.\n    def _rmtree_isdir(entry):\n        try:\n            st = entry.stat(follow_symlinks=False)\n            return (stat.S_ISDIR(st.st_mode) and not\n                (st.st_file_attributes & stat.FILE_ATTRIBUTE_REPARSE_POINT\n                 and st.st_reparse_tag == stat.IO_REPARSE_TAG_MOUNT_POINT))\n        except OSError:\n            return False\n\n    def _rmtree_islink(path):\n        try:\n            st = os.lstat(path)\n            return (stat.S_ISLNK(st.st_mode) or\n                (st.st_file_attributes & stat.FILE_ATTRIBUTE_REPARSE_POINT\n                 and st.st_reparse_tag == stat.IO_REPARSE_TAG_MOUNT_POINT))\n        except OSError:\n            return False\nelse:\n    def _rmtree_isdir(entry):\n        try:\n            return entry.is_dir(follow_symlinks=False)\n        except OSError:\n            return False\n\n    def _rmtree_islink(path):\n        return os.path.islink(path)\n\n# version vulnerable to race conditions\ndef _rmtree_unsafe(path, onerror):\n    try:\n        with os.scandir(path) as scandir_it:\n            entries = list(scandir_it)\n    except OSError:\n        onerror(os.scandir, path, sys.exc_info())\n        entries = []\n    for entry in entries:\n        fullname = entry.path\n        if _rmtree_isdir(entry):\n            try:\n                if entry.is_symlink():\n                    # This can only happen if someone replaces\n                    # a directory with a symlink after the call to\n                    # os.scandir or entry.is_dir above.\n                    raise OSError(\"Cannot call rmtree on a symbolic link\")\n            except OSError:\n                onerror(os.path.islink, fullname, sys.exc_info())\n                continue\n            _rmtree_unsafe(fullname, onerror)\n        else:\n            try:\n                os.unlink(fullname)\n            except OSError:\n                onerror(os.unlink, fullname, sys.exc_info())\n    try:\n        os.rmdir(path)\n    except OSError:\n        onerror(os.rmdir, path, sys.exc_info())\n\n# Version using fd-based APIs to protect against races\ndef _rmtree_safe_fd(topfd, path, onerror):\n    try:\n        with os.scandir(topfd) as scandir_it:\n            entries = list(scandir_it)\n    except OSError as err:\n        err.filename = path\n        onerror(os.scandir, path, sys.exc_info())\n        return\n    for entry in entries:\n        fullname = os.path.join(path, entry.name)\n        try:\n            is_dir = entry.is_dir(follow_symlinks=False)\n        except OSError:\n            is_dir = False\n        else:\n            if is_dir:\n                try:\n                    orig_st = entry.stat(follow_symlinks=False)\n                    is_dir = stat.S_ISDIR(orig_st.st_mode)\n                except OSError:\n                    onerror(os.lstat, fullname, sys.exc_info())\n                    continue\n        if is_dir:\n            try:\n                dirfd = os.open(entry.name, os.O_RDONLY, dir_fd=topfd)\n            except OSError:\n                onerror(os.open, fullname, sys.exc_info())\n            else:\n                try:\n                    if os.path.samestat(orig_st, os.fstat(dirfd)):\n                        _rmtree_safe_fd(dirfd, fullname, onerror)\n                        try:\n                            os.rmdir(entry.name, dir_fd=topfd)\n                        except OSError:\n                            onerror(os.rmdir, fullname, sys.exc_info())\n                    else:\n                        try:\n                            # This can only happen if someone replaces\n                            # a directory with a symlink after the call to\n                            # os.scandir or stat.S_ISDIR above.\n                            raise OSError(\"Cannot call rmtree on a symbolic \"\n                                          \"link\")\n                        except OSError:\n                            onerror(os.path.islink, fullname, sys.exc_info())\n                finally:\n                    os.close(dirfd)\n        else:\n            try:\n                os.unlink(entry.name, dir_fd=topfd)\n            except OSError:\n                onerror(os.unlink, fullname, sys.exc_info())\n\n_use_fd_functions = ({os.open, os.stat, os.unlink, os.rmdir} <=\n                     os.supports_dir_fd and\n                     os.scandir in os.supports_fd and\n                     os.stat in os.supports_follow_symlinks)\n\ndef rmtree(path, ignore_errors=False, onerror=None):\n    \"\"\"Recursively delete a directory tree.\n\n    If ignore_errors is set, errors are ignored; otherwise, if onerror\n    is set, it is called to handle the error with arguments (func,\n    path, exc_info) where func is platform and implementation dependent;\n    path is the argument to that function that caused it to fail; and\n    exc_info is a tuple returned by sys.exc_info().  If ignore_errors\n    is false and onerror is None, an exception is raised.\n\n    \"\"\"\n    sys.audit(\"shutil.rmtree\", path)\n    if ignore_errors:\n        def onerror(*args):\n            pass\n    elif onerror is None:\n        def onerror(*args):\n            raise\n    if _use_fd_functions:\n        # While the unsafe rmtree works fine on bytes, the fd based does not.\n        if isinstance(path, bytes):\n            path = os.fsdecode(path)\n        # Note: To guard against symlink races, we use the standard\n        # lstat()/open()/fstat() trick.\n        try:\n            orig_st = os.lstat(path)\n        except Exception:\n            onerror(os.lstat, path, sys.exc_info())\n            return\n        try:\n            fd = os.open(path, os.O_RDONLY)\n        except Exception:\n            onerror(os.lstat, path, sys.exc_info())\n            return\n        try:\n            if os.path.samestat(orig_st, os.fstat(fd)):\n                _rmtree_safe_fd(fd, path, onerror)\n                try:\n                    os.rmdir(path)\n                except OSError:\n                    onerror(os.rmdir, path, sys.exc_info())\n            else:\n                try:\n                    # symlinks to directories are forbidden, see bug #1669\n                    raise OSError(\"Cannot call rmtree on a symbolic link\")\n                except OSError:\n                    onerror(os.path.islink, path, sys.exc_info())\n        finally:\n            os.close(fd)\n    else:\n        try:\n            if _rmtree_islink(path):\n                # symlinks to directories are forbidden, see bug #1669\n                raise OSError(\"Cannot call rmtree on a symbolic link\")\n        except OSError:\n            onerror(os.path.islink, path, sys.exc_info())\n            # can't continue even if onerror hook returns\n            return\n        return _rmtree_unsafe(path, onerror)\n\n# Allow introspection of whether or not the hardening against symlink\n# attacks is supported on the current platform\nrmtree.avoids_symlink_attacks = _use_fd_functions\n\ndef _basename(path):\n    # A basename() variant which first strips the trailing slash, if present.\n    # Thus we always get the last component of the path, even for directories.\n    sep = os.path.sep + (os.path.altsep or '')\n    return os.path.basename(path.rstrip(sep))\n\ndef move(src, dst, copy_function=copy2):\n    \"\"\"Recursively move a file or directory to another location. This is\n    similar to the Unix \"mv\" command. Return the file or directory's\n    destination.\n\n    If the destination is a directory or a symlink to a directory, the source\n    is moved inside the directory. The destination path must not already\n    exist.\n\n    If the destination already exists but is not a directory, it may be\n    overwritten depending on os.rename() semantics.\n\n    If the destination is on our current filesystem, then rename() is used.\n    Otherwise, src is copied to the destination and then removed. Symlinks are\n    recreated under the new name if os.rename() fails because of cross\n    filesystem renames.\n\n    The optional `copy_function` argument is a callable that will be used\n    to copy the source or it will be delegated to `copytree`.\n    By default, copy2() is used, but any function that supports the same\n    signature (like copy()) can be used.\n\n    A lot more could be done here...  A look at a mv.c shows a lot of\n    the issues this implementation glosses over.\n\n    \"\"\"\n    sys.audit(\"shutil.move\", src, dst)\n    real_dst = dst\n    if os.path.isdir(dst):\n        if _samefile(src, dst):\n            # We might be on a case insensitive filesystem,\n            # perform the rename anyway.\n            os.rename(src, dst)\n            return\n\n        real_dst = os.path.join(dst, _basename(src))\n        if os.path.exists(real_dst):\n            raise Error(\"Destination path '%s' already exists\" % real_dst)\n    try:\n        os.rename(src, real_dst)\n    except OSError:\n        if os.path.islink(src):\n            linkto = os.readlink(src)\n            os.symlink(linkto, real_dst)\n            os.unlink(src)\n        elif os.path.isdir(src):\n            if _destinsrc(src, dst):\n                raise Error(\"Cannot move a directory '%s' into itself\"\n                            \" '%s'.\" % (src, dst))\n            copytree(src, real_dst, copy_function=copy_function,\n                     symlinks=True)\n            rmtree(src)\n        else:\n            copy_function(src, real_dst)\n            os.unlink(src)\n    return real_dst\n\ndef _destinsrc(src, dst):\n    src = os.path.abspath(src)\n    dst = os.path.abspath(dst)\n    if not src.endswith(os.path.sep):\n        src += os.path.sep\n    if not dst.endswith(os.path.sep):\n        dst += os.path.sep\n    return dst.startswith(src)\n\ndef _get_gid(name):\n    \"\"\"Returns a gid, given a group name.\"\"\"\n    if getgrnam is None or name is None:\n        return None\n    try:\n        result = getgrnam(name)\n    except KeyError:\n        result = None\n    if result is not None:\n        return result[2]\n    return None\n\ndef _get_uid(name):\n    \"\"\"Returns an uid, given a user name.\"\"\"\n    if getpwnam is None or name is None:\n        return None\n    try:\n        result = getpwnam(name)\n    except KeyError:\n        result = None\n    if result is not None:\n        return result[2]\n    return None\n\ndef _make_tarball(base_name, base_dir, compress=\"gzip\", verbose=0, dry_run=0,\n                  owner=None, group=None, logger=None):\n    \"\"\"Create a (possibly compressed) tar file from all the files under\n    'base_dir'.\n\n    'compress' must be \"gzip\" (the default), \"bzip2\", \"xz\", or None.\n\n    'owner' and 'group' can be used to define an owner and a group for the\n    archive that is being built. If not provided, the current owner and group\n    will be used.\n\n    The output tar file will be named 'base_name' +  \".tar\", possibly plus\n    the appropriate compression extension (\".gz\", \".bz2\", or \".xz\").\n\n    Returns the output filename.\n    \"\"\"\n    if compress is None:\n        tar_compression = ''\n    elif _ZLIB_SUPPORTED and compress == 'gzip':\n        tar_compression = 'gz'\n    elif _BZ2_SUPPORTED and compress == 'bzip2':\n        tar_compression = 'bz2'\n    elif _LZMA_SUPPORTED and compress == 'xz':\n        tar_compression = 'xz'\n    else:\n        raise ValueError(\"bad value for 'compress', or compression format not \"\n                         \"supported : {0}\".format(compress))\n\n    import tarfile  # late import for breaking circular dependency\n\n    compress_ext = '.' + tar_compression if compress else ''\n    archive_name = base_name + '.tar' + compress_ext\n    archive_dir = os.path.dirname(archive_name)\n\n    if archive_dir and not os.path.exists(archive_dir):\n        if logger is not None:\n            logger.info(\"creating %s\", archive_dir)\n        if not dry_run:\n            os.makedirs(archive_dir)\n\n    # creating the tarball\n    if logger is not None:\n        logger.info('Creating tar archive')\n\n    uid = _get_uid(owner)\n    gid = _get_gid(group)\n\n    def _set_uid_gid(tarinfo):\n        if gid is not None:\n            tarinfo.gid = gid\n            tarinfo.gname = group\n        if uid is not None:\n            tarinfo.uid = uid\n            tarinfo.uname = owner\n        return tarinfo\n\n    if not dry_run:\n        tar = tarfile.open(archive_name, 'w|%s' % tar_compression)\n        try:\n            tar.add(base_dir, filter=_set_uid_gid)\n        finally:\n            tar.close()\n\n    return archive_name\n\ndef _make_zipfile(base_name, base_dir, verbose=0, dry_run=0, logger=None):\n    \"\"\"Create a zip file from all the files under 'base_dir'.\n\n    The output zip file will be named 'base_name' + \".zip\".  Returns the\n    name of the output zip file.\n    \"\"\"\n    import zipfile  # late import for breaking circular dependency\n\n    zip_filename = base_name + \".zip\"\n    archive_dir = os.path.dirname(base_name)\n\n    if archive_dir and not os.path.exists(archive_dir):\n        if logger is not None:\n            logger.info(\"creating %s\", archive_dir)\n        if not dry_run:\n            os.makedirs(archive_dir)\n\n    if logger is not None:\n        logger.info(\"creating '%s' and adding '%s' to it\",\n                    zip_filename, base_dir)\n\n    if not dry_run:\n        with zipfile.ZipFile(zip_filename, \"w\",\n                             compression=zipfile.ZIP_DEFLATED) as zf:\n            path = os.path.normpath(base_dir)\n            if path != os.curdir:\n                zf.write(path, path)\n                if logger is not None:\n                    logger.info(\"adding '%s'\", path)\n            for dirpath, dirnames, filenames in os.walk(base_dir):\n                for name in sorted(dirnames):\n                    path = os.path.normpath(os.path.join(dirpath, name))\n                    zf.write(path, path)\n                    if logger is not None:\n                        logger.info(\"adding '%s'\", path)\n                for name in filenames:\n                    path = os.path.normpath(os.path.join(dirpath, name))\n                    if os.path.isfile(path):\n                        zf.write(path, path)\n                        if logger is not None:\n                            logger.info(\"adding '%s'\", path)\n\n    return zip_filename\n\n_ARCHIVE_FORMATS = {\n    'tar':   (_make_tarball, [('compress', None)], \"uncompressed tar file\"),\n}\n\nif _ZLIB_SUPPORTED:\n    _ARCHIVE_FORMATS['gztar'] = (_make_tarball, [('compress', 'gzip')],\n                                \"gzip'ed tar-file\")\n    _ARCHIVE_FORMATS['zip'] = (_make_zipfile, [], \"ZIP file\")\n\nif _BZ2_SUPPORTED:\n    _ARCHIVE_FORMATS['bztar'] = (_make_tarball, [('compress', 'bzip2')],\n                                \"bzip2'ed tar-file\")\n\nif _LZMA_SUPPORTED:\n    _ARCHIVE_FORMATS['xztar'] = (_make_tarball, [('compress', 'xz')],\n                                \"xz'ed tar-file\")\n\ndef get_archive_formats():\n    \"\"\"Returns a list of supported formats for archiving and unarchiving.\n\n    Each element of the returned sequence is a tuple (name, description)\n    \"\"\"\n    formats = [(name, registry[2]) for name, registry in\n               _ARCHIVE_FORMATS.items()]\n    formats.sort()\n    return formats\n\ndef register_archive_format(name, function, extra_args=None, description=''):\n    \"\"\"Registers an archive format.\n\n    name is the name of the format. function is the callable that will be\n    used to create archives. If provided, extra_args is a sequence of\n    (name, value) tuples that will be passed as arguments to the callable.\n    description can be provided to describe the format, and will be returned\n    by the get_archive_formats() function.\n    \"\"\"\n    if extra_args is None:\n        extra_args = []\n    if not callable(function):\n        raise TypeError('The %s object is not callable' % function)\n    if not isinstance(extra_args, (tuple, list)):\n        raise TypeError('extra_args needs to be a sequence')\n    for element in extra_args:\n        if not isinstance(element, (tuple, list)) or len(element) !=2:\n            raise TypeError('extra_args elements are : (arg_name, value)')\n\n    _ARCHIVE_FORMATS[name] = (function, extra_args, description)\n\ndef unregister_archive_format(name):\n    del _ARCHIVE_FORMATS[name]\n\ndef make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0,\n                 dry_run=0, owner=None, group=None, logger=None):\n    \"\"\"Create an archive file (eg. zip or tar).\n\n    'base_name' is the name of the file to create, minus any format-specific\n    extension; 'format' is the archive format: one of \"zip\", \"tar\", \"gztar\",\n    \"bztar\", or \"xztar\".  Or any other registered format.\n\n    'root_dir' is a directory that will be the root directory of the\n    archive; ie. we typically chdir into 'root_dir' before creating the\n    archive.  'base_dir' is the directory where we start archiving from;\n    ie. 'base_dir' will be the common prefix of all files and\n    directories in the archive.  'root_dir' and 'base_dir' both default\n    to the current directory.  Returns the name of the archive file.\n\n    'owner' and 'group' are used when creating a tar archive. By default,\n    uses the current owner and group.\n    \"\"\"\n    sys.audit(\"shutil.make_archive\", base_name, format, root_dir, base_dir)\n    save_cwd = os.getcwd()\n    if root_dir is not None:\n        if logger is not None:\n            logger.debug(\"changing into '%s'\", root_dir)\n        base_name = os.path.abspath(base_name)\n        if not dry_run:\n            os.chdir(root_dir)\n\n    if base_dir is None:\n        base_dir = os.curdir\n\n    kwargs = {'dry_run': dry_run, 'logger': logger}\n\n    try:\n        format_info = _ARCHIVE_FORMATS[format]\n    except KeyError:\n        raise ValueError(\"unknown archive format '%s'\" % format) from None\n\n    func = format_info[0]\n    for arg, val in format_info[1]:\n        kwargs[arg] = val\n\n    if format != 'zip':\n        kwargs['owner'] = owner\n        kwargs['group'] = group\n\n    try:\n        filename = func(base_name, base_dir, **kwargs)\n    finally:\n        if root_dir is not None:\n            if logger is not None:\n                logger.debug(\"changing back to '%s'\", save_cwd)\n            os.chdir(save_cwd)\n\n    return filename\n\n\ndef get_unpack_formats():\n    \"\"\"Returns a list of supported formats for unpacking.\n\n    Each element of the returned sequence is a tuple\n    (name, extensions, description)\n    \"\"\"\n    formats = [(name, info[0], info[3]) for name, info in\n               _UNPACK_FORMATS.items()]\n    formats.sort()\n    return formats\n\ndef _check_unpack_options(extensions, function, extra_args):\n    \"\"\"Checks what gets registered as an unpacker.\"\"\"\n    # first make sure no other unpacker is registered for this extension\n    existing_extensions = {}\n    for name, info in _UNPACK_FORMATS.items():\n        for ext in info[0]:\n            existing_extensions[ext] = name\n\n    for extension in extensions:\n        if extension in existing_extensions:\n            msg = '%s is already registered for \"%s\"'\n            raise RegistryError(msg % (extension,\n                                       existing_extensions[extension]))\n\n    if not callable(function):\n        raise TypeError('The registered function must be a callable')\n\n\ndef register_unpack_format(name, extensions, function, extra_args=None,\n                           description=''):\n    \"\"\"Registers an unpack format.\n\n    `name` is the name of the format. `extensions` is a list of extensions\n    corresponding to the format.\n\n    `function` is the callable that will be\n    used to unpack archives. The callable will receive archives to unpack.\n    If it's unable to handle an archive, it needs to raise a ReadError\n    exception.\n\n    If provided, `extra_args` is a sequence of\n    (name, value) tuples that will be passed as arguments to the callable.\n    description can be provided to describe the format, and will be returned\n    by the get_unpack_formats() function.\n    \"\"\"\n    if extra_args is None:\n        extra_args = []\n    _check_unpack_options(extensions, function, extra_args)\n    _UNPACK_FORMATS[name] = extensions, function, extra_args, description\n\ndef unregister_unpack_format(name):\n    \"\"\"Removes the pack format from the registry.\"\"\"\n    del _UNPACK_FORMATS[name]\n\ndef _ensure_directory(path):\n    \"\"\"Ensure that the parent directory of `path` exists\"\"\"\n    dirname = os.path.dirname(path)\n    if not os.path.isdir(dirname):\n        os.makedirs(dirname)\n\ndef _unpack_zipfile(filename, extract_dir):\n    \"\"\"Unpack zip `filename` to `extract_dir`\n    \"\"\"\n    import zipfile  # late import for breaking circular dependency\n\n    if not zipfile.is_zipfile(filename):\n        raise ReadError(\"%s is not a zip file\" % filename)\n\n    zip = zipfile.ZipFile(filename)\n    try:\n        for info in zip.infolist():\n            name = info.filename\n\n            # don't extract absolute paths or ones with .. in them\n            if name.startswith('/') or '..' in name:\n                continue\n\n            target = os.path.join(extract_dir, *name.split('/'))\n            if not target:\n                continue\n\n            _ensure_directory(target)\n            if not name.endswith('/'):\n                # file\n                data = zip.read(info.filename)\n                f = open(target, 'wb')\n                try:\n                    f.write(data)\n                finally:\n                    f.close()\n                    del data\n    finally:\n        zip.close()\n\ndef _unpack_tarfile(filename, extract_dir):\n    \"\"\"Unpack tar/tar.gz/tar.bz2/tar.xz `filename` to `extract_dir`\n    \"\"\"\n    import tarfile  # late import for breaking circular dependency\n    try:\n        tarobj = tarfile.open(filename)\n    except tarfile.TarError:\n        raise ReadError(\n            \"%s is not a compressed or uncompressed tar file\" % filename)\n    try:\n        tarobj.extractall(extract_dir)\n    finally:\n        tarobj.close()\n\n_UNPACK_FORMATS = {\n    'tar':   (['.tar'], _unpack_tarfile, [], \"uncompressed tar file\"),\n    'zip':   (['.zip'], _unpack_zipfile, [], \"ZIP file\"),\n}\n\nif _ZLIB_SUPPORTED:\n    _UNPACK_FORMATS['gztar'] = (['.tar.gz', '.tgz'], _unpack_tarfile, [],\n                                \"gzip'ed tar-file\")\n\nif _BZ2_SUPPORTED:\n    _UNPACK_FORMATS['bztar'] = (['.tar.bz2', '.tbz2'], _unpack_tarfile, [],\n                                \"bzip2'ed tar-file\")\n\nif _LZMA_SUPPORTED:\n    _UNPACK_FORMATS['xztar'] = (['.tar.xz', '.txz'], _unpack_tarfile, [],\n                                \"xz'ed tar-file\")\n\ndef _find_unpack_format(filename):\n    for name, info in _UNPACK_FORMATS.items():\n        for extension in info[0]:\n            if filename.endswith(extension):\n                return name\n    return None\n\ndef unpack_archive(filename, extract_dir=None, format=None):\n    \"\"\"Unpack an archive.\n\n    `filename` is the name of the archive.\n\n    `extract_dir` is the name of the target directory, where the archive\n    is unpacked. If not provided, the current working directory is used.\n\n    `format` is the archive format: one of \"zip\", \"tar\", \"gztar\", \"bztar\",\n    or \"xztar\".  Or any other registered format.  If not provided,\n    unpack_archive will use the filename extension and see if an unpacker\n    was registered for that extension.\n\n    In case none is found, a ValueError is raised.\n    \"\"\"\n    sys.audit(\"shutil.unpack_archive\", filename, extract_dir, format)\n\n    if extract_dir is None:\n        extract_dir = os.getcwd()\n\n    extract_dir = os.fspath(extract_dir)\n    filename = os.fspath(filename)\n\n    if format is not None:\n        try:\n            format_info = _UNPACK_FORMATS[format]\n        except KeyError:\n            raise ValueError(\"Unknown unpack format '{0}'\".format(format)) from None\n\n        func = format_info[1]\n        func(filename, extract_dir, **dict(format_info[2]))\n    else:\n        # we need to look at the registered unpackers supported extensions\n        format = _find_unpack_format(filename)\n        if format is None:\n            raise ReadError(\"Unknown archive format '{0}'\".format(filename))\n\n        func = _UNPACK_FORMATS[format][1]\n        kwargs = dict(_UNPACK_FORMATS[format][2])\n        func(filename, extract_dir, **kwargs)\n\n\nif hasattr(os, 'statvfs'):\n\n    __all__.append('disk_usage')\n    _ntuple_diskusage = collections.namedtuple('usage', 'total used free')\n    _ntuple_diskusage.total.__doc__ = 'Total space in bytes'\n    _ntuple_diskusage.used.__doc__ = 'Used space in bytes'\n    _ntuple_diskusage.free.__doc__ = 'Free space in bytes'\n\n    def disk_usage(path):\n        \"\"\"Return disk usage statistics about the given path.\n\n        Returned value is a named tuple with attributes 'total', 'used' and\n        'free', which are the amount of total, used and free space, in bytes.\n        \"\"\"\n        st = os.statvfs(path)\n        free = st.f_bavail * st.f_frsize\n        total = st.f_blocks * st.f_frsize\n        used = (st.f_blocks - st.f_bfree) * st.f_frsize\n        return _ntuple_diskusage(total, used, free)\n\nelif _WINDOWS:\n\n    __all__.append('disk_usage')\n    _ntuple_diskusage = collections.namedtuple('usage', 'total used free')\n\n    def disk_usage(path):\n        \"\"\"Return disk usage statistics about the given path.\n\n        Returned values is a named tuple with attributes 'total', 'used' and\n        'free', which are the amount of total, used and free space, in bytes.\n        \"\"\"\n        total, free = nt._getdiskusage(path)\n        used = total - free\n        return _ntuple_diskusage(total, used, free)\n\n\ndef chown(path, user=None, group=None):\n    \"\"\"Change owner user and group of the given path.\n\n    user and group can be the uid/gid or the user/group names, and in that case,\n    they are converted to their respective uid/gid.\n    \"\"\"\n    sys.audit('shutil.chown', path, user, group)\n\n    if user is None and group is None:\n        raise ValueError(\"user and/or group must be set\")\n\n    _user = user\n    _group = group\n\n    # -1 means don't change it\n    if user is None:\n        _user = -1\n    # user can either be an int (the uid) or a string (the system username)\n    elif isinstance(user, str):\n        _user = _get_uid(user)\n        if _user is None:\n            raise LookupError(\"no such user: {!r}\".format(user))\n\n    if group is None:\n        _group = -1\n    elif not isinstance(group, int):\n        _group = _get_gid(group)\n        if _group is None:\n            raise LookupError(\"no such group: {!r}\".format(group))\n\n    os.chown(path, _user, _group)\n\ndef get_terminal_size(fallback=(80, 24)):\n    \"\"\"Get the size of the terminal window.\n\n    For each of the two dimensions, the environment variable, COLUMNS\n    and LINES respectively, is checked. If the variable is defined and\n    the value is a positive integer, it is used.\n\n    When COLUMNS or LINES is not defined, which is the common case,\n    the terminal connected to sys.__stdout__ is queried\n    by invoking os.get_terminal_size.\n\n    If the terminal size cannot be successfully queried, either because\n    the system doesn't support querying, or because we are not\n    connected to a terminal, the value given in fallback parameter\n    is used. Fallback defaults to (80, 24) which is the default\n    size used by many terminal emulators.\n\n    The value returned is a named tuple of type os.terminal_size.\n    \"\"\"\n    # columns, lines are the working values\n    try:\n        columns = int(os.environ['COLUMNS'])\n    except (KeyError, ValueError):\n        columns = 0\n\n    try:\n        lines = int(os.environ['LINES'])\n    except (KeyError, ValueError):\n        lines = 0\n\n    # only query if necessary\n    if columns <= 0 or lines <= 0:\n        try:\n            size = os.get_terminal_size(sys.__stdout__.fileno())\n        except (AttributeError, ValueError, OSError):\n            # stdout is None, closed, detached, or not a terminal, or\n            # os.get_terminal_size() is unsupported\n            size = os.terminal_size(fallback)\n        if columns <= 0:\n            columns = size.columns\n        if lines <= 0:\n            lines = size.lines\n\n    return os.terminal_size((columns, lines))\n\n\n# Check that a given file can be accessed with the correct mode.\n# Additionally check that `file` is not a directory, as on Windows\n# directories pass the os.access check.\ndef _access_check(fn, mode):\n    return (os.path.exists(fn) and os.access(fn, mode)\n            and not os.path.isdir(fn))\n\n\ndef which(cmd, mode=os.F_OK | os.X_OK, path=None):\n    \"\"\"Given a command, mode, and a PATH string, return the path which\n    conforms to the given mode on the PATH, or None if there is no such\n    file.\n\n    `mode` defaults to os.F_OK | os.X_OK. `path` defaults to the result\n    of os.environ.get(\"PATH\"), or can be overridden with a custom search\n    path.\n\n    \"\"\"\n    # If we're given a path with a directory part, look it up directly rather\n    # than referring to PATH directories. This includes checking relative to the\n    # current directory, e.g. ./script\n    if os.path.dirname(cmd):\n        if _access_check(cmd, mode):\n            return cmd\n        return None\n\n    use_bytes = isinstance(cmd, bytes)\n\n    if path is None:\n        path = os.environ.get(\"PATH\", None)\n        if path is None:\n            try:\n                path = os.confstr(\"CS_PATH\")\n            except (AttributeError, ValueError):\n                # os.confstr() or CS_PATH is not available\n                path = os.defpath\n        # bpo-35755: Don't use os.defpath if the PATH environment variable is\n        # set to an empty string\n\n    # PATH='' doesn't match, whereas PATH=':' looks in the current directory\n    if not path:\n        return None\n\n    if use_bytes:\n        path = os.fsencode(path)\n        path = path.split(os.fsencode(os.pathsep))\n    else:\n        path = os.fsdecode(path)\n        path = path.split(os.pathsep)\n\n    if sys.platform == \"win32\":\n        # The current directory takes precedence on Windows.\n        curdir = os.curdir\n        if use_bytes:\n            curdir = os.fsencode(curdir)\n        if curdir not in path:\n            path.insert(0, curdir)\n\n        # PATHEXT is necessary to check on Windows.\n        pathext = os.environ.get(\"PATHEXT\", \"\").split(os.pathsep)\n        if use_bytes:\n            pathext = [os.fsencode(ext) for ext in pathext]\n        # See if the given file matches any of the expected path extensions.\n        # This will allow us to short circuit when given \"python.exe\".\n        # If it does match, only test that one, otherwise we have to try\n        # others.\n        if any(cmd.lower().endswith(ext.lower()) for ext in pathext):\n            files = [cmd]\n        else:\n            files = [cmd + ext for ext in pathext]\n    else:\n        # On other platforms you don't have things like PATHEXT to tell you\n        # what file suffixes are executable, so just pass on cmd as-is.\n        files = [cmd]\n\n    seen = set()\n    for dir in path:\n        normdir = os.path.normcase(dir)\n        if not normdir in seen:\n            seen.add(normdir)\n            for thefile in files:\n                name = os.path.join(dir, thefile)\n                if _access_check(name, mode):\n                    return name\n    return None\n"
  },
  {
    "path": "rd/usr/lib/python3.8/signal.py",
    "content": "import _signal\nfrom _signal import *\nfrom functools import wraps as _wraps\nfrom enum import IntEnum as _IntEnum\n\n_globals = globals()\n\n_IntEnum._convert_(\n        'Signals', __name__,\n        lambda name:\n            name.isupper()\n            and (name.startswith('SIG') and not name.startswith('SIG_'))\n            or name.startswith('CTRL_'))\n\n_IntEnum._convert_(\n        'Handlers', __name__,\n        lambda name: name in ('SIG_DFL', 'SIG_IGN'))\n\nif 'pthread_sigmask' in _globals:\n    _IntEnum._convert_(\n            'Sigmasks', __name__,\n            lambda name: name in ('SIG_BLOCK', 'SIG_UNBLOCK', 'SIG_SETMASK'))\n\n\ndef _int_to_enum(value, enum_klass):\n    \"\"\"Convert a numeric value to an IntEnum member.\n    If it's not a known member, return the numeric value itself.\n    \"\"\"\n    try:\n        return enum_klass(value)\n    except ValueError:\n        return value\n\n\ndef _enum_to_int(value):\n    \"\"\"Convert an IntEnum member to a numeric value.\n    If it's not an IntEnum member return the value itself.\n    \"\"\"\n    try:\n        return int(value)\n    except (ValueError, TypeError):\n        return value\n\n\n@_wraps(_signal.signal)\ndef signal(signalnum, handler):\n    handler = _signal.signal(_enum_to_int(signalnum), _enum_to_int(handler))\n    return _int_to_enum(handler, Handlers)\n\n\n@_wraps(_signal.getsignal)\ndef getsignal(signalnum):\n    handler = _signal.getsignal(signalnum)\n    return _int_to_enum(handler, Handlers)\n\n\nif 'pthread_sigmask' in _globals:\n    @_wraps(_signal.pthread_sigmask)\n    def pthread_sigmask(how, mask):\n        sigs_set = _signal.pthread_sigmask(how, mask)\n        return set(_int_to_enum(x, Signals) for x in sigs_set)\n    pthread_sigmask.__doc__ = _signal.pthread_sigmask.__doc__\n\n\nif 'sigpending' in _globals:\n    @_wraps(_signal.sigpending)\n    def sigpending():\n        return {_int_to_enum(x, Signals) for x in _signal.sigpending()}\n\n\nif 'sigwait' in _globals:\n    @_wraps(_signal.sigwait)\n    def sigwait(sigset):\n        retsig = _signal.sigwait(sigset)\n        return _int_to_enum(retsig, Signals)\n    sigwait.__doc__ = _signal.sigwait\n\n\nif 'valid_signals' in _globals:\n    @_wraps(_signal.valid_signals)\n    def valid_signals():\n        return {_int_to_enum(x, Signals) for x in _signal.valid_signals()}\n\n\ndel _globals, _wraps\n"
  },
  {
    "path": "rd/usr/lib/python3.8/site-packages/README.txt",
    "content": "This directory exists so that 3rd party packages can be installed\nhere.  Read the source for site.py for more details.\n"
  },
  {
    "path": "rd/usr/lib/python3.8/site.py",
    "content": "\"\"\"Append module search paths for third-party packages to sys.path.\n\n****************************************************************\n* This module is automatically imported during initialization. *\n****************************************************************\n\nThis will append site-specific paths to the module search path.  On\nUnix (including Mac OSX), it starts with sys.prefix and\nsys.exec_prefix (if different) and appends\nlib/python<version>/site-packages.\nOn other platforms (such as Windows), it tries each of the\nprefixes directly, as well as with lib/site-packages appended.  The\nresulting directories, if they exist, are appended to sys.path, and\nalso inspected for path configuration files.\n\nIf a file named \"pyvenv.cfg\" exists one directory above sys.executable,\nsys.prefix and sys.exec_prefix are set to that directory and\nit is also checked for site-packages (sys.base_prefix and\nsys.base_exec_prefix will always be the \"real\" prefixes of the Python\ninstallation). If \"pyvenv.cfg\" (a bootstrap configuration file) contains\nthe key \"include-system-site-packages\" set to anything other than \"false\"\n(case-insensitive), the system-level prefixes will still also be\nsearched for site-packages; otherwise they won't.\n\nAll of the resulting site-specific directories, if they exist, are\nappended to sys.path, and also inspected for path configuration\nfiles.\n\nA path configuration file is a file whose name has the form\n<package>.pth; its contents are additional directories (one per line)\nto be added to sys.path.  Non-existing directories (or\nnon-directories) are never added to sys.path; no directory is added to\nsys.path more than once.  Blank lines and lines beginning with\n'#' are skipped. Lines starting with 'import' are executed.\n\nFor example, suppose sys.prefix and sys.exec_prefix are set to\n/usr/local and there is a directory /usr/local/lib/python2.5/site-packages\nwith three subdirectories, foo, bar and spam, and two path\nconfiguration files, foo.pth and bar.pth.  Assume foo.pth contains the\nfollowing:\n\n  # foo package configuration\n  foo\n  bar\n  bletch\n\nand bar.pth contains:\n\n  # bar package configuration\n  bar\n\nThen the following directories are added to sys.path, in this order:\n\n  /usr/local/lib/python2.5/site-packages/bar\n  /usr/local/lib/python2.5/site-packages/foo\n\nNote that bletch is omitted because it doesn't exist; bar precedes foo\nbecause bar.pth comes alphabetically before foo.pth; and spam is\nomitted because it is not mentioned in either path configuration file.\n\nThe readline module is also automatically configured to enable\ncompletion for systems that support it.  This can be overridden in\nsitecustomize, usercustomize or PYTHONSTARTUP.  Starting Python in\nisolated mode (-I) disables automatic readline configuration.\n\nAfter these operations, an attempt is made to import a module\nnamed sitecustomize, which can perform arbitrary additional\nsite-specific customizations.  If this import fails with an\nImportError exception, it is silently ignored.\n\"\"\"\n\nimport sys\nimport os\nimport builtins\nimport _sitebuiltins\nimport io\n\n# Prefixes for site-packages; add additional prefixes like /usr/local here\nPREFIXES = [sys.prefix, sys.exec_prefix]\n# Enable per user site-packages directory\n# set it to False to disable the feature or True to force the feature\nENABLE_USER_SITE = None\n\n# for distutils.commands.install\n# These values are initialized by the getuserbase() and getusersitepackages()\n# functions, through the main() function when Python starts.\nUSER_SITE = None\nUSER_BASE = None\n\n\ndef makepath(*paths):\n    dir = os.path.join(*paths)\n    try:\n        dir = os.path.abspath(dir)\n    except OSError:\n        pass\n    return dir, os.path.normcase(dir)\n\n\ndef abs_paths():\n    \"\"\"Set all module __file__ and __cached__ attributes to an absolute path\"\"\"\n    for m in set(sys.modules.values()):\n        if (getattr(getattr(m, '__loader__', None), '__module__', None) not in\n                ('_frozen_importlib', '_frozen_importlib_external')):\n            continue   # don't mess with a PEP 302-supplied __file__\n        try:\n            m.__file__ = os.path.abspath(m.__file__)\n        except (AttributeError, OSError, TypeError):\n            pass\n        try:\n            m.__cached__ = os.path.abspath(m.__cached__)\n        except (AttributeError, OSError, TypeError):\n            pass\n\n\ndef removeduppaths():\n    \"\"\" Remove duplicate entries from sys.path along with making them\n    absolute\"\"\"\n    # This ensures that the initial path provided by the interpreter contains\n    # only absolute pathnames, even if we're running from the build directory.\n    L = []\n    known_paths = set()\n    for dir in sys.path:\n        # Filter out duplicate paths (on case-insensitive file systems also\n        # if they only differ in case); turn relative paths into absolute\n        # paths.\n        dir, dircase = makepath(dir)\n        if dircase not in known_paths:\n            L.append(dir)\n            known_paths.add(dircase)\n    sys.path[:] = L\n    return known_paths\n\n\ndef _init_pathinfo():\n    \"\"\"Return a set containing all existing file system items from sys.path.\"\"\"\n    d = set()\n    for item in sys.path:\n        try:\n            if os.path.exists(item):\n                _, itemcase = makepath(item)\n                d.add(itemcase)\n        except TypeError:\n            continue\n    return d\n\n\ndef addpackage(sitedir, name, known_paths):\n    \"\"\"Process a .pth file within the site-packages directory:\n       For each line in the file, either combine it with sitedir to a path\n       and add that to known_paths, or execute it if it starts with 'import '.\n    \"\"\"\n    if known_paths is None:\n        known_paths = _init_pathinfo()\n        reset = True\n    else:\n        reset = False\n    fullname = os.path.join(sitedir, name)\n    try:\n        f = io.TextIOWrapper(io.open_code(fullname))\n    except OSError:\n        return\n    with f:\n        for n, line in enumerate(f):\n            if line.startswith(\"#\"):\n                continue\n            try:\n                if line.startswith((\"import \", \"import\\t\")):\n                    exec(line)\n                    continue\n                line = line.rstrip()\n                dir, dircase = makepath(sitedir, line)\n                if not dircase in known_paths and os.path.exists(dir):\n                    sys.path.append(dir)\n                    known_paths.add(dircase)\n            except Exception:\n                print(\"Error processing line {:d} of {}:\\n\".format(n+1, fullname),\n                      file=sys.stderr)\n                import traceback\n                for record in traceback.format_exception(*sys.exc_info()):\n                    for line in record.splitlines():\n                        print('  '+line, file=sys.stderr)\n                print(\"\\nRemainder of file ignored\", file=sys.stderr)\n                break\n    if reset:\n        known_paths = None\n    return known_paths\n\n\ndef addsitedir(sitedir, known_paths=None):\n    \"\"\"Add 'sitedir' argument to sys.path if missing and handle .pth files in\n    'sitedir'\"\"\"\n    if known_paths is None:\n        known_paths = _init_pathinfo()\n        reset = True\n    else:\n        reset = False\n    sitedir, sitedircase = makepath(sitedir)\n    if not sitedircase in known_paths:\n        sys.path.append(sitedir)        # Add path component\n        known_paths.add(sitedircase)\n    try:\n        names = os.listdir(sitedir)\n    except OSError:\n        return\n    names = [name for name in names if name.endswith(\".pth\")]\n    for name in sorted(names):\n        addpackage(sitedir, name, known_paths)\n    if reset:\n        known_paths = None\n    return known_paths\n\n\ndef check_enableusersite():\n    \"\"\"Check if user site directory is safe for inclusion\n\n    The function tests for the command line flag (including environment var),\n    process uid/gid equal to effective uid/gid.\n\n    None: Disabled for security reasons\n    False: Disabled by user (command line option)\n    True: Safe and enabled\n    \"\"\"\n    if sys.flags.no_user_site:\n        return False\n\n    if hasattr(os, \"getuid\") and hasattr(os, \"geteuid\"):\n        # check process uid == effective uid\n        if os.geteuid() != os.getuid():\n            return None\n    if hasattr(os, \"getgid\") and hasattr(os, \"getegid\"):\n        # check process gid == effective gid\n        if os.getegid() != os.getgid():\n            return None\n\n    return True\n\n\n# NOTE: sysconfig and it's dependencies are relatively large but site module\n# needs very limited part of them.\n# To speedup startup time, we have copy of them.\n#\n# See https://bugs.python.org/issue29585\n\n# Copy of sysconfig._getuserbase()\ndef _getuserbase():\n    env_base = os.environ.get(\"PYTHONUSERBASE\", None)\n    if env_base:\n        return env_base\n\n    def joinuser(*args):\n        return os.path.expanduser(os.path.join(*args))\n\n    if os.name == \"nt\":\n        base = os.environ.get(\"APPDATA\") or \"~\"\n        return joinuser(base, \"Python\")\n\n    if sys.platform == \"darwin\" and sys._framework:\n        return joinuser(\"~\", \"Library\", sys._framework,\n                        \"%d.%d\" % sys.version_info[:2])\n\n    return joinuser(\"~\", \".local\")\n\n\n# Same to sysconfig.get_path('purelib', os.name+'_user')\ndef _get_path(userbase):\n    version = sys.version_info\n\n    if os.name == 'nt':\n        return f'{userbase}\\\\Python{version[0]}{version[1]}\\\\site-packages'\n\n    if sys.platform == 'darwin' and sys._framework:\n        return f'{userbase}/lib/python/site-packages'\n\n    return f'{userbase}/lib/python{version[0]}.{version[1]}/site-packages'\n\n\ndef getuserbase():\n    \"\"\"Returns the `user base` directory path.\n\n    The `user base` directory can be used to store data. If the global\n    variable ``USER_BASE`` is not initialized yet, this function will also set\n    it.\n    \"\"\"\n    global USER_BASE\n    if USER_BASE is None:\n        USER_BASE = _getuserbase()\n    return USER_BASE\n\n\ndef getusersitepackages():\n    \"\"\"Returns the user-specific site-packages directory path.\n\n    If the global variable ``USER_SITE`` is not initialized yet, this\n    function will also set it.\n    \"\"\"\n    global USER_SITE\n    userbase = getuserbase() # this will also set USER_BASE\n\n    if USER_SITE is None:\n        USER_SITE = _get_path(userbase)\n\n    return USER_SITE\n\ndef addusersitepackages(known_paths):\n    \"\"\"Add a per user site-package to sys.path\n\n    Each user has its own python directory with site-packages in the\n    home directory.\n    \"\"\"\n    # get the per user site-package path\n    # this call will also make sure USER_BASE and USER_SITE are set\n    user_site = getusersitepackages()\n\n    if ENABLE_USER_SITE and os.path.isdir(user_site):\n        addsitedir(user_site, known_paths)\n    return known_paths\n\ndef getsitepackages(prefixes=None):\n    \"\"\"Returns a list containing all global site-packages directories.\n\n    For each directory present in ``prefixes`` (or the global ``PREFIXES``),\n    this function will find its `site-packages` subdirectory depending on the\n    system environment, and will return a list of full paths.\n    \"\"\"\n    sitepackages = []\n    seen = set()\n\n    if prefixes is None:\n        prefixes = PREFIXES\n\n    for prefix in prefixes:\n        if not prefix or prefix in seen:\n            continue\n        seen.add(prefix)\n\n        if os.sep == '/':\n            sitepackages.append(os.path.join(prefix, \"lib\",\n                                        \"python%d.%d\" % sys.version_info[:2],\n                                        \"site-packages\"))\n        else:\n            sitepackages.append(prefix)\n            sitepackages.append(os.path.join(prefix, \"lib\", \"site-packages\"))\n    return sitepackages\n\ndef addsitepackages(known_paths, prefixes=None):\n    \"\"\"Add site-packages to sys.path\"\"\"\n    for sitedir in getsitepackages(prefixes):\n        if os.path.isdir(sitedir):\n            addsitedir(sitedir, known_paths)\n\n    return known_paths\n\ndef setquit():\n    \"\"\"Define new builtins 'quit' and 'exit'.\n\n    These are objects which make the interpreter exit when called.\n    The repr of each object contains a hint at how it works.\n\n    \"\"\"\n    if os.sep == '\\\\':\n        eof = 'Ctrl-Z plus Return'\n    else:\n        eof = 'Ctrl-D (i.e. EOF)'\n\n    builtins.quit = _sitebuiltins.Quitter('quit', eof)\n    builtins.exit = _sitebuiltins.Quitter('exit', eof)\n\n\ndef setcopyright():\n    \"\"\"Set 'copyright' and 'credits' in builtins\"\"\"\n    builtins.copyright = _sitebuiltins._Printer(\"copyright\", sys.copyright)\n    if sys.platform[:4] == 'java':\n        builtins.credits = _sitebuiltins._Printer(\n            \"credits\",\n            \"Jython is maintained by the Jython developers (www.jython.org).\")\n    else:\n        builtins.credits = _sitebuiltins._Printer(\"credits\", \"\"\"\\\n    Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands\n    for supporting Python development.  See www.python.org for more information.\"\"\")\n    files, dirs = [], []\n    # Not all modules are required to have a __file__ attribute.  See\n    # PEP 420 for more details.\n    if hasattr(os, '__file__'):\n        here = os.path.dirname(os.__file__)\n        files.extend([\"LICENSE.txt\", \"LICENSE\"])\n        dirs.extend([os.path.join(here, os.pardir), here, os.curdir])\n    builtins.license = _sitebuiltins._Printer(\n        \"license\",\n        \"See https://www.python.org/psf/license/\",\n        files, dirs)\n\n\ndef sethelper():\n    builtins.help = _sitebuiltins._Helper()\n\ndef enablerlcompleter():\n    \"\"\"Enable default readline configuration on interactive prompts, by\n    registering a sys.__interactivehook__.\n\n    If the readline module can be imported, the hook will set the Tab key\n    as completion key and register ~/.python_history as history file.\n    This can be overridden in the sitecustomize or usercustomize module,\n    or in a PYTHONSTARTUP file.\n    \"\"\"\n    def register_readline():\n        import atexit\n        try:\n            import readline\n            import rlcompleter\n        except ImportError:\n            return\n\n        # Reading the initialization (config) file may not be enough to set a\n        # completion key, so we set one first and then read the file.\n        readline_doc = getattr(readline, '__doc__', '')\n        if readline_doc is not None and 'libedit' in readline_doc:\n            readline.parse_and_bind('bind ^I rl_complete')\n        else:\n            readline.parse_and_bind('tab: complete')\n\n        try:\n            readline.read_init_file()\n        except OSError:\n            # An OSError here could have many causes, but the most likely one\n            # is that there's no .inputrc file (or .editrc file in the case of\n            # Mac OS X + libedit) in the expected location.  In that case, we\n            # want to ignore the exception.\n            pass\n\n        if readline.get_current_history_length() == 0:\n            # If no history was loaded, default to .python_history.\n            # The guard is necessary to avoid doubling history size at\n            # each interpreter exit when readline was already configured\n            # through a PYTHONSTARTUP hook, see:\n            # http://bugs.python.org/issue5845#msg198636\n            history = os.path.join(os.path.expanduser('~'),\n                                   '.python_history')\n            try:\n                readline.read_history_file(history)\n            except OSError:\n                pass\n\n            def write_history():\n                try:\n                    readline.write_history_file(history)\n                except OSError:\n                    # bpo-19891, bpo-41193: Home directory does not exist\n                    # or is not writable, or the filesystem is read-only.\n                    pass\n\n            atexit.register(write_history)\n\n    sys.__interactivehook__ = register_readline\n\ndef venv(known_paths):\n    global PREFIXES, ENABLE_USER_SITE\n\n    env = os.environ\n    if sys.platform == 'darwin' and '__PYVENV_LAUNCHER__' in env:\n        executable = sys._base_executable = os.environ['__PYVENV_LAUNCHER__']\n    else:\n        executable = sys.executable\n    exe_dir, _ = os.path.split(os.path.abspath(executable))\n    site_prefix = os.path.dirname(exe_dir)\n    sys._home = None\n    conf_basename = 'pyvenv.cfg'\n    candidate_confs = [\n        conffile for conffile in (\n            os.path.join(exe_dir, conf_basename),\n            os.path.join(site_prefix, conf_basename)\n            )\n        if os.path.isfile(conffile)\n        ]\n\n    if candidate_confs:\n        virtual_conf = candidate_confs[0]\n        system_site = \"true\"\n        # Issue 25185: Use UTF-8, as that's what the venv module uses when\n        # writing the file.\n        with open(virtual_conf, encoding='utf-8') as f:\n            for line in f:\n                if '=' in line:\n                    key, _, value = line.partition('=')\n                    key = key.strip().lower()\n                    value = value.strip()\n                    if key == 'include-system-site-packages':\n                        system_site = value.lower()\n                    elif key == 'home':\n                        sys._home = value\n\n        sys.prefix = sys.exec_prefix = site_prefix\n\n        # Doing this here ensures venv takes precedence over user-site\n        addsitepackages(known_paths, [sys.prefix])\n\n        # addsitepackages will process site_prefix again if its in PREFIXES,\n        # but that's ok; known_paths will prevent anything being added twice\n        if system_site == \"true\":\n            PREFIXES.insert(0, sys.prefix)\n        else:\n            PREFIXES = [sys.prefix]\n            ENABLE_USER_SITE = False\n\n    return known_paths\n\n\ndef execsitecustomize():\n    \"\"\"Run custom site specific code, if available.\"\"\"\n    try:\n        try:\n            import sitecustomize\n        except ImportError as exc:\n            if exc.name == 'sitecustomize':\n                pass\n            else:\n                raise\n    except Exception as err:\n        if sys.flags.verbose:\n            sys.excepthook(*sys.exc_info())\n        else:\n            sys.stderr.write(\n                \"Error in sitecustomize; set PYTHONVERBOSE for traceback:\\n\"\n                \"%s: %s\\n\" %\n                (err.__class__.__name__, err))\n\n\ndef execusercustomize():\n    \"\"\"Run custom user specific code, if available.\"\"\"\n    try:\n        try:\n            import usercustomize\n        except ImportError as exc:\n            if exc.name == 'usercustomize':\n                pass\n            else:\n                raise\n    except Exception as err:\n        if sys.flags.verbose:\n            sys.excepthook(*sys.exc_info())\n        else:\n            sys.stderr.write(\n                \"Error in usercustomize; set PYTHONVERBOSE for traceback:\\n\"\n                \"%s: %s\\n\" %\n                (err.__class__.__name__, err))\n\n\ndef main():\n    \"\"\"Add standard site-specific directories to the module search path.\n\n    This function is called automatically when this module is imported,\n    unless the python interpreter was started with the -S flag.\n    \"\"\"\n    global ENABLE_USER_SITE\n\n    orig_path = sys.path[:]\n    known_paths = removeduppaths()\n    if orig_path != sys.path:\n        # removeduppaths() might make sys.path absolute.\n        # fix __file__ and __cached__ of already imported modules too.\n        abs_paths()\n\n    known_paths = venv(known_paths)\n    if ENABLE_USER_SITE is None:\n        ENABLE_USER_SITE = check_enableusersite()\n    known_paths = addusersitepackages(known_paths)\n    known_paths = addsitepackages(known_paths)\n    setquit()\n    setcopyright()\n    sethelper()\n    if not sys.flags.isolated:\n        enablerlcompleter()\n    execsitecustomize()\n    if ENABLE_USER_SITE:\n        execusercustomize()\n\n# Prevent extending of sys.path when python was started with -S and\n# site is imported later.\nif not sys.flags.no_site:\n    main()\n\ndef _script():\n    help = \"\"\"\\\n    %s [--user-base] [--user-site]\n\n    Without arguments print some useful information\n    With arguments print the value of USER_BASE and/or USER_SITE separated\n    by '%s'.\n\n    Exit codes with --user-base or --user-site:\n      0 - user site directory is enabled\n      1 - user site directory is disabled by user\n      2 - uses site directory is disabled by super user\n          or for security reasons\n     >2 - unknown error\n    \"\"\"\n    args = sys.argv[1:]\n    if not args:\n        user_base = getuserbase()\n        user_site = getusersitepackages()\n        print(\"sys.path = [\")\n        for dir in sys.path:\n            print(\"    %r,\" % (dir,))\n        print(\"]\")\n        print(\"USER_BASE: %r (%s)\" % (user_base,\n            \"exists\" if os.path.isdir(user_base) else \"doesn't exist\"))\n        print(\"USER_SITE: %r (%s)\" % (user_site,\n            \"exists\" if os.path.isdir(user_site) else \"doesn't exist\"))\n        print(\"ENABLE_USER_SITE: %r\" %  ENABLE_USER_SITE)\n        sys.exit(0)\n\n    buffer = []\n    if '--user-base' in args:\n        buffer.append(USER_BASE)\n    if '--user-site' in args:\n        buffer.append(USER_SITE)\n\n    if buffer:\n        print(os.pathsep.join(buffer))\n        if ENABLE_USER_SITE:\n            sys.exit(0)\n        elif ENABLE_USER_SITE is False:\n            sys.exit(1)\n        elif ENABLE_USER_SITE is None:\n            sys.exit(2)\n        else:\n            sys.exit(3)\n    else:\n        import textwrap\n        print(textwrap.dedent(help % (sys.argv[0], os.pathsep)))\n        sys.exit(10)\n\nif __name__ == '__main__':\n    _script()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/smtpd.py",
    "content": "#! /usr/bin/env python3\n\"\"\"An RFC 5321 smtp proxy with optional RFC 1870 and RFC 6531 extensions.\n\nUsage: %(program)s [options] [localhost:localport [remotehost:remoteport]]\n\nOptions:\n\n    --nosetuid\n    -n\n        This program generally tries to setuid `nobody', unless this flag is\n        set.  The setuid call will fail if this program is not run as root (in\n        which case, use this flag).\n\n    --version\n    -V\n        Print the version number and exit.\n\n    --class classname\n    -c classname\n        Use `classname' as the concrete SMTP proxy class.  Uses `PureProxy' by\n        default.\n\n    --size limit\n    -s limit\n        Restrict the total size of the incoming message to \"limit\" number of\n        bytes via the RFC 1870 SIZE extension.  Defaults to 33554432 bytes.\n\n    --smtputf8\n    -u\n        Enable the SMTPUTF8 extension and behave as an RFC 6531 smtp proxy.\n\n    --debug\n    -d\n        Turn on debugging prints.\n\n    --help\n    -h\n        Print this message and exit.\n\nVersion: %(__version__)s\n\nIf localhost is not given then `localhost' is used, and if localport is not\ngiven then 8025 is used.  If remotehost is not given then `localhost' is used,\nand if remoteport is not given, then 25 is used.\n\"\"\"\n\n# Overview:\n#\n# This file implements the minimal SMTP protocol as defined in RFC 5321.  It\n# has a hierarchy of classes which implement the backend functionality for the\n# smtpd.  A number of classes are provided:\n#\n#   SMTPServer - the base class for the backend.  Raises NotImplementedError\n#   if you try to use it.\n#\n#   DebuggingServer - simply prints each message it receives on stdout.\n#\n#   PureProxy - Proxies all messages to a real smtpd which does final\n#   delivery.  One known problem with this class is that it doesn't handle\n#   SMTP errors from the backend server at all.  This should be fixed\n#   (contributions are welcome!).\n#\n#   MailmanProxy - An experimental hack to work with GNU Mailman\n#   <www.list.org>.  Using this server as your real incoming smtpd, your\n#   mailhost will automatically recognize and accept mail destined to Mailman\n#   lists when those lists are created.  Every message not destined for a list\n#   gets forwarded to a real backend smtpd, as with PureProxy.  Again, errors\n#   are not handled correctly yet.\n#\n#\n# Author: Barry Warsaw <barry@python.org>\n#\n# TODO:\n#\n# - support mailbox delivery\n# - alias files\n# - Handle more ESMTP extensions\n# - handle error codes from the backend smtpd\n\nimport sys\nimport os\nimport errno\nimport getopt\nimport time\nimport socket\nimport asyncore\nimport asynchat\nimport collections\nfrom warnings import warn\nfrom email._header_value_parser import get_addr_spec, get_angle_addr\n\n__all__ = [\n    \"SMTPChannel\", \"SMTPServer\", \"DebuggingServer\", \"PureProxy\",\n    \"MailmanProxy\",\n]\n\nprogram = sys.argv[0]\n__version__ = 'Python SMTP proxy version 0.3'\n\n\nclass Devnull:\n    def write(self, msg): pass\n    def flush(self): pass\n\n\nDEBUGSTREAM = Devnull()\nNEWLINE = '\\n'\nCOMMASPACE = ', '\nDATA_SIZE_DEFAULT = 33554432\n\n\ndef usage(code, msg=''):\n    print(__doc__ % globals(), file=sys.stderr)\n    if msg:\n        print(msg, file=sys.stderr)\n    sys.exit(code)\n\n\nclass SMTPChannel(asynchat.async_chat):\n    COMMAND = 0\n    DATA = 1\n\n    command_size_limit = 512\n    command_size_limits = collections.defaultdict(lambda x=command_size_limit: x)\n\n    @property\n    def max_command_size_limit(self):\n        try:\n            return max(self.command_size_limits.values())\n        except ValueError:\n            return self.command_size_limit\n\n    def __init__(self, server, conn, addr, data_size_limit=DATA_SIZE_DEFAULT,\n                 map=None, enable_SMTPUTF8=False, decode_data=False):\n        asynchat.async_chat.__init__(self, conn, map=map)\n        self.smtp_server = server\n        self.conn = conn\n        self.addr = addr\n        self.data_size_limit = data_size_limit\n        self.enable_SMTPUTF8 = enable_SMTPUTF8\n        self._decode_data = decode_data\n        if enable_SMTPUTF8 and decode_data:\n            raise ValueError(\"decode_data and enable_SMTPUTF8 cannot\"\n                             \" be set to True at the same time\")\n        if decode_data:\n            self._emptystring = ''\n            self._linesep = '\\r\\n'\n            self._dotsep = '.'\n            self._newline = NEWLINE\n        else:\n            self._emptystring = b''\n            self._linesep = b'\\r\\n'\n            self._dotsep = ord(b'.')\n            self._newline = b'\\n'\n        self._set_rset_state()\n        self.seen_greeting = ''\n        self.extended_smtp = False\n        self.command_size_limits.clear()\n        self.fqdn = socket.getfqdn()\n        try:\n            self.peer = conn.getpeername()\n        except OSError as err:\n            # a race condition  may occur if the other end is closing\n            # before we can get the peername\n            self.close()\n            if err.args[0] != errno.ENOTCONN:\n                raise\n            return\n        print('Peer:', repr(self.peer), file=DEBUGSTREAM)\n        self.push('220 %s %s' % (self.fqdn, __version__))\n\n    def _set_post_data_state(self):\n        \"\"\"Reset state variables to their post-DATA state.\"\"\"\n        self.smtp_state = self.COMMAND\n        self.mailfrom = None\n        self.rcpttos = []\n        self.require_SMTPUTF8 = False\n        self.num_bytes = 0\n        self.set_terminator(b'\\r\\n')\n\n    def _set_rset_state(self):\n        \"\"\"Reset all state variables except the greeting.\"\"\"\n        self._set_post_data_state()\n        self.received_data = ''\n        self.received_lines = []\n\n\n    # properties for backwards-compatibility\n    @property\n    def __server(self):\n        warn(\"Access to __server attribute on SMTPChannel is deprecated, \"\n            \"use 'smtp_server' instead\", DeprecationWarning, 2)\n        return self.smtp_server\n    @__server.setter\n    def __server(self, value):\n        warn(\"Setting __server attribute on SMTPChannel is deprecated, \"\n            \"set 'smtp_server' instead\", DeprecationWarning, 2)\n        self.smtp_server = value\n\n    @property\n    def __line(self):\n        warn(\"Access to __line attribute on SMTPChannel is deprecated, \"\n            \"use 'received_lines' instead\", DeprecationWarning, 2)\n        return self.received_lines\n    @__line.setter\n    def __line(self, value):\n        warn(\"Setting __line attribute on SMTPChannel is deprecated, \"\n            \"set 'received_lines' instead\", DeprecationWarning, 2)\n        self.received_lines = value\n\n    @property\n    def __state(self):\n        warn(\"Access to __state attribute on SMTPChannel is deprecated, \"\n            \"use 'smtp_state' instead\", DeprecationWarning, 2)\n        return self.smtp_state\n    @__state.setter\n    def __state(self, value):\n        warn(\"Setting __state attribute on SMTPChannel is deprecated, \"\n            \"set 'smtp_state' instead\", DeprecationWarning, 2)\n        self.smtp_state = value\n\n    @property\n    def __greeting(self):\n        warn(\"Access to __greeting attribute on SMTPChannel is deprecated, \"\n            \"use 'seen_greeting' instead\", DeprecationWarning, 2)\n        return self.seen_greeting\n    @__greeting.setter\n    def __greeting(self, value):\n        warn(\"Setting __greeting attribute on SMTPChannel is deprecated, \"\n            \"set 'seen_greeting' instead\", DeprecationWarning, 2)\n        self.seen_greeting = value\n\n    @property\n    def __mailfrom(self):\n        warn(\"Access to __mailfrom attribute on SMTPChannel is deprecated, \"\n            \"use 'mailfrom' instead\", DeprecationWarning, 2)\n        return self.mailfrom\n    @__mailfrom.setter\n    def __mailfrom(self, value):\n        warn(\"Setting __mailfrom attribute on SMTPChannel is deprecated, \"\n            \"set 'mailfrom' instead\", DeprecationWarning, 2)\n        self.mailfrom = value\n\n    @property\n    def __rcpttos(self):\n        warn(\"Access to __rcpttos attribute on SMTPChannel is deprecated, \"\n            \"use 'rcpttos' instead\", DeprecationWarning, 2)\n        return self.rcpttos\n    @__rcpttos.setter\n    def __rcpttos(self, value):\n        warn(\"Setting __rcpttos attribute on SMTPChannel is deprecated, \"\n            \"set 'rcpttos' instead\", DeprecationWarning, 2)\n        self.rcpttos = value\n\n    @property\n    def __data(self):\n        warn(\"Access to __data attribute on SMTPChannel is deprecated, \"\n            \"use 'received_data' instead\", DeprecationWarning, 2)\n        return self.received_data\n    @__data.setter\n    def __data(self, value):\n        warn(\"Setting __data attribute on SMTPChannel is deprecated, \"\n            \"set 'received_data' instead\", DeprecationWarning, 2)\n        self.received_data = value\n\n    @property\n    def __fqdn(self):\n        warn(\"Access to __fqdn attribute on SMTPChannel is deprecated, \"\n            \"use 'fqdn' instead\", DeprecationWarning, 2)\n        return self.fqdn\n    @__fqdn.setter\n    def __fqdn(self, value):\n        warn(\"Setting __fqdn attribute on SMTPChannel is deprecated, \"\n            \"set 'fqdn' instead\", DeprecationWarning, 2)\n        self.fqdn = value\n\n    @property\n    def __peer(self):\n        warn(\"Access to __peer attribute on SMTPChannel is deprecated, \"\n            \"use 'peer' instead\", DeprecationWarning, 2)\n        return self.peer\n    @__peer.setter\n    def __peer(self, value):\n        warn(\"Setting __peer attribute on SMTPChannel is deprecated, \"\n            \"set 'peer' instead\", DeprecationWarning, 2)\n        self.peer = value\n\n    @property\n    def __conn(self):\n        warn(\"Access to __conn attribute on SMTPChannel is deprecated, \"\n            \"use 'conn' instead\", DeprecationWarning, 2)\n        return self.conn\n    @__conn.setter\n    def __conn(self, value):\n        warn(\"Setting __conn attribute on SMTPChannel is deprecated, \"\n            \"set 'conn' instead\", DeprecationWarning, 2)\n        self.conn = value\n\n    @property\n    def __addr(self):\n        warn(\"Access to __addr attribute on SMTPChannel is deprecated, \"\n            \"use 'addr' instead\", DeprecationWarning, 2)\n        return self.addr\n    @__addr.setter\n    def __addr(self, value):\n        warn(\"Setting __addr attribute on SMTPChannel is deprecated, \"\n            \"set 'addr' instead\", DeprecationWarning, 2)\n        self.addr = value\n\n    # Overrides base class for convenience.\n    def push(self, msg):\n        asynchat.async_chat.push(self, bytes(\n            msg + '\\r\\n', 'utf-8' if self.require_SMTPUTF8 else 'ascii'))\n\n    # Implementation of base class abstract method\n    def collect_incoming_data(self, data):\n        limit = None\n        if self.smtp_state == self.COMMAND:\n            limit = self.max_command_size_limit\n        elif self.smtp_state == self.DATA:\n            limit = self.data_size_limit\n        if limit and self.num_bytes > limit:\n            return\n        elif limit:\n            self.num_bytes += len(data)\n        if self._decode_data:\n            self.received_lines.append(str(data, 'utf-8'))\n        else:\n            self.received_lines.append(data)\n\n    # Implementation of base class abstract method\n    def found_terminator(self):\n        line = self._emptystring.join(self.received_lines)\n        print('Data:', repr(line), file=DEBUGSTREAM)\n        self.received_lines = []\n        if self.smtp_state == self.COMMAND:\n            sz, self.num_bytes = self.num_bytes, 0\n            if not line:\n                self.push('500 Error: bad syntax')\n                return\n            if not self._decode_data:\n                line = str(line, 'utf-8')\n            i = line.find(' ')\n            if i < 0:\n                command = line.upper()\n                arg = None\n            else:\n                command = line[:i].upper()\n                arg = line[i+1:].strip()\n            max_sz = (self.command_size_limits[command]\n                        if self.extended_smtp else self.command_size_limit)\n            if sz > max_sz:\n                self.push('500 Error: line too long')\n                return\n            method = getattr(self, 'smtp_' + command, None)\n            if not method:\n                self.push('500 Error: command \"%s\" not recognized' % command)\n                return\n            method(arg)\n            return\n        else:\n            if self.smtp_state != self.DATA:\n                self.push('451 Internal confusion')\n                self.num_bytes = 0\n                return\n            if self.data_size_limit and self.num_bytes > self.data_size_limit:\n                self.push('552 Error: Too much mail data')\n                self.num_bytes = 0\n                return\n            # Remove extraneous carriage returns and de-transparency according\n            # to RFC 5321, Section 4.5.2.\n            data = []\n            for text in line.split(self._linesep):\n                if text and text[0] == self._dotsep:\n                    data.append(text[1:])\n                else:\n                    data.append(text)\n            self.received_data = self._newline.join(data)\n            args = (self.peer, self.mailfrom, self.rcpttos, self.received_data)\n            kwargs = {}\n            if not self._decode_data:\n                kwargs = {\n                    'mail_options': self.mail_options,\n                    'rcpt_options': self.rcpt_options,\n                }\n            status = self.smtp_server.process_message(*args, **kwargs)\n            self._set_post_data_state()\n            if not status:\n                self.push('250 OK')\n            else:\n                self.push(status)\n\n    # SMTP and ESMTP commands\n    def smtp_HELO(self, arg):\n        if not arg:\n            self.push('501 Syntax: HELO hostname')\n            return\n        # See issue #21783 for a discussion of this behavior.\n        if self.seen_greeting:\n            self.push('503 Duplicate HELO/EHLO')\n            return\n        self._set_rset_state()\n        self.seen_greeting = arg\n        self.push('250 %s' % self.fqdn)\n\n    def smtp_EHLO(self, arg):\n        if not arg:\n            self.push('501 Syntax: EHLO hostname')\n            return\n        # See issue #21783 for a discussion of this behavior.\n        if self.seen_greeting:\n            self.push('503 Duplicate HELO/EHLO')\n            return\n        self._set_rset_state()\n        self.seen_greeting = arg\n        self.extended_smtp = True\n        self.push('250-%s' % self.fqdn)\n        if self.data_size_limit:\n            self.push('250-SIZE %s' % self.data_size_limit)\n            self.command_size_limits['MAIL'] += 26\n        if not self._decode_data:\n            self.push('250-8BITMIME')\n        if self.enable_SMTPUTF8:\n            self.push('250-SMTPUTF8')\n            self.command_size_limits['MAIL'] += 10\n        self.push('250 HELP')\n\n    def smtp_NOOP(self, arg):\n        if arg:\n            self.push('501 Syntax: NOOP')\n        else:\n            self.push('250 OK')\n\n    def smtp_QUIT(self, arg):\n        # args is ignored\n        self.push('221 Bye')\n        self.close_when_done()\n\n    def _strip_command_keyword(self, keyword, arg):\n        keylen = len(keyword)\n        if arg[:keylen].upper() == keyword:\n            return arg[keylen:].strip()\n        return ''\n\n    def _getaddr(self, arg):\n        if not arg:\n            return '', ''\n        if arg.lstrip().startswith('<'):\n            address, rest = get_angle_addr(arg)\n        else:\n            address, rest = get_addr_spec(arg)\n        if not address:\n            return address, rest\n        return address.addr_spec, rest\n\n    def _getparams(self, params):\n        # Return params as dictionary. Return None if not all parameters\n        # appear to be syntactically valid according to RFC 1869.\n        result = {}\n        for param in params:\n            param, eq, value = param.partition('=')\n            if not param.isalnum() or eq and not value:\n                return None\n            result[param] = value if eq else True\n        return result\n\n    def smtp_HELP(self, arg):\n        if arg:\n            extended = ' [SP <mail-parameters>]'\n            lc_arg = arg.upper()\n            if lc_arg == 'EHLO':\n                self.push('250 Syntax: EHLO hostname')\n            elif lc_arg == 'HELO':\n                self.push('250 Syntax: HELO hostname')\n            elif lc_arg == 'MAIL':\n                msg = '250 Syntax: MAIL FROM: <address>'\n                if self.extended_smtp:\n                    msg += extended\n                self.push(msg)\n            elif lc_arg == 'RCPT':\n                msg = '250 Syntax: RCPT TO: <address>'\n                if self.extended_smtp:\n                    msg += extended\n                self.push(msg)\n            elif lc_arg == 'DATA':\n                self.push('250 Syntax: DATA')\n            elif lc_arg == 'RSET':\n                self.push('250 Syntax: RSET')\n            elif lc_arg == 'NOOP':\n                self.push('250 Syntax: NOOP')\n            elif lc_arg == 'QUIT':\n                self.push('250 Syntax: QUIT')\n            elif lc_arg == 'VRFY':\n                self.push('250 Syntax: VRFY <address>')\n            else:\n                self.push('501 Supported commands: EHLO HELO MAIL RCPT '\n                          'DATA RSET NOOP QUIT VRFY')\n        else:\n            self.push('250 Supported commands: EHLO HELO MAIL RCPT DATA '\n                      'RSET NOOP QUIT VRFY')\n\n    def smtp_VRFY(self, arg):\n        if arg:\n            address, params = self._getaddr(arg)\n            if address:\n                self.push('252 Cannot VRFY user, but will accept message '\n                          'and attempt delivery')\n            else:\n                self.push('502 Could not VRFY %s' % arg)\n        else:\n            self.push('501 Syntax: VRFY <address>')\n\n    def smtp_MAIL(self, arg):\n        if not self.seen_greeting:\n            self.push('503 Error: send HELO first')\n            return\n        print('===> MAIL', arg, file=DEBUGSTREAM)\n        syntaxerr = '501 Syntax: MAIL FROM: <address>'\n        if self.extended_smtp:\n            syntaxerr += ' [SP <mail-parameters>]'\n        if arg is None:\n            self.push(syntaxerr)\n            return\n        arg = self._strip_command_keyword('FROM:', arg)\n        address, params = self._getaddr(arg)\n        if not address:\n            self.push(syntaxerr)\n            return\n        if not self.extended_smtp and params:\n            self.push(syntaxerr)\n            return\n        if self.mailfrom:\n            self.push('503 Error: nested MAIL command')\n            return\n        self.mail_options = params.upper().split()\n        params = self._getparams(self.mail_options)\n        if params is None:\n            self.push(syntaxerr)\n            return\n        if not self._decode_data:\n            body = params.pop('BODY', '7BIT')\n            if body not in ['7BIT', '8BITMIME']:\n                self.push('501 Error: BODY can only be one of 7BIT, 8BITMIME')\n                return\n        if self.enable_SMTPUTF8:\n            smtputf8 = params.pop('SMTPUTF8', False)\n            if smtputf8 is True:\n                self.require_SMTPUTF8 = True\n            elif smtputf8 is not False:\n                self.push('501 Error: SMTPUTF8 takes no arguments')\n                return\n        size = params.pop('SIZE', None)\n        if size:\n            if not size.isdigit():\n                self.push(syntaxerr)\n                return\n            elif self.data_size_limit and int(size) > self.data_size_limit:\n                self.push('552 Error: message size exceeds fixed maximum message size')\n                return\n        if len(params.keys()) > 0:\n            self.push('555 MAIL FROM parameters not recognized or not implemented')\n            return\n        self.mailfrom = address\n        print('sender:', self.mailfrom, file=DEBUGSTREAM)\n        self.push('250 OK')\n\n    def smtp_RCPT(self, arg):\n        if not self.seen_greeting:\n            self.push('503 Error: send HELO first');\n            return\n        print('===> RCPT', arg, file=DEBUGSTREAM)\n        if not self.mailfrom:\n            self.push('503 Error: need MAIL command')\n            return\n        syntaxerr = '501 Syntax: RCPT TO: <address>'\n        if self.extended_smtp:\n            syntaxerr += ' [SP <mail-parameters>]'\n        if arg is None:\n            self.push(syntaxerr)\n            return\n        arg = self._strip_command_keyword('TO:', arg)\n        address, params = self._getaddr(arg)\n        if not address:\n            self.push(syntaxerr)\n            return\n        if not self.extended_smtp and params:\n            self.push(syntaxerr)\n            return\n        self.rcpt_options = params.upper().split()\n        params = self._getparams(self.rcpt_options)\n        if params is None:\n            self.push(syntaxerr)\n            return\n        # XXX currently there are no options we recognize.\n        if len(params.keys()) > 0:\n            self.push('555 RCPT TO parameters not recognized or not implemented')\n            return\n        self.rcpttos.append(address)\n        print('recips:', self.rcpttos, file=DEBUGSTREAM)\n        self.push('250 OK')\n\n    def smtp_RSET(self, arg):\n        if arg:\n            self.push('501 Syntax: RSET')\n            return\n        self._set_rset_state()\n        self.push('250 OK')\n\n    def smtp_DATA(self, arg):\n        if not self.seen_greeting:\n            self.push('503 Error: send HELO first');\n            return\n        if not self.rcpttos:\n            self.push('503 Error: need RCPT command')\n            return\n        if arg:\n            self.push('501 Syntax: DATA')\n            return\n        self.smtp_state = self.DATA\n        self.set_terminator(b'\\r\\n.\\r\\n')\n        self.push('354 End data with <CR><LF>.<CR><LF>')\n\n    # Commands that have not been implemented\n    def smtp_EXPN(self, arg):\n        self.push('502 EXPN not implemented')\n\n\nclass SMTPServer(asyncore.dispatcher):\n    # SMTPChannel class to use for managing client connections\n    channel_class = SMTPChannel\n\n    def __init__(self, localaddr, remoteaddr,\n                 data_size_limit=DATA_SIZE_DEFAULT, map=None,\n                 enable_SMTPUTF8=False, decode_data=False):\n        self._localaddr = localaddr\n        self._remoteaddr = remoteaddr\n        self.data_size_limit = data_size_limit\n        self.enable_SMTPUTF8 = enable_SMTPUTF8\n        self._decode_data = decode_data\n        if enable_SMTPUTF8 and decode_data:\n            raise ValueError(\"decode_data and enable_SMTPUTF8 cannot\"\n                             \" be set to True at the same time\")\n        asyncore.dispatcher.__init__(self, map=map)\n        try:\n            gai_results = socket.getaddrinfo(*localaddr,\n                                             type=socket.SOCK_STREAM)\n            self.create_socket(gai_results[0][0], gai_results[0][1])\n            # try to re-use a server port if possible\n            self.set_reuse_addr()\n            self.bind(localaddr)\n            self.listen(5)\n        except:\n            self.close()\n            raise\n        else:\n            print('%s started at %s\\n\\tLocal addr: %s\\n\\tRemote addr:%s' % (\n                self.__class__.__name__, time.ctime(time.time()),\n                localaddr, remoteaddr), file=DEBUGSTREAM)\n\n    def handle_accepted(self, conn, addr):\n        print('Incoming connection from %s' % repr(addr), file=DEBUGSTREAM)\n        channel = self.channel_class(self,\n                                     conn,\n                                     addr,\n                                     self.data_size_limit,\n                                     self._map,\n                                     self.enable_SMTPUTF8,\n                                     self._decode_data)\n\n    # API for \"doing something useful with the message\"\n    def process_message(self, peer, mailfrom, rcpttos, data, **kwargs):\n        \"\"\"Override this abstract method to handle messages from the client.\n\n        peer is a tuple containing (ipaddr, port) of the client that made the\n        socket connection to our smtp port.\n\n        mailfrom is the raw address the client claims the message is coming\n        from.\n\n        rcpttos is a list of raw addresses the client wishes to deliver the\n        message to.\n\n        data is a string containing the entire full text of the message,\n        headers (if supplied) and all.  It has been `de-transparencied'\n        according to RFC 821, Section 4.5.2.  In other words, a line\n        containing a `.' followed by other text has had the leading dot\n        removed.\n\n        kwargs is a dictionary containing additional information.  It is\n        empty if decode_data=True was given as init parameter, otherwise\n        it will contain the following keys:\n            'mail_options': list of parameters to the mail command.  All\n                            elements are uppercase strings.  Example:\n                            ['BODY=8BITMIME', 'SMTPUTF8'].\n            'rcpt_options': same, for the rcpt command.\n\n        This function should return None for a normal `250 Ok' response;\n        otherwise, it should return the desired response string in RFC 821\n        format.\n\n        \"\"\"\n        raise NotImplementedError\n\n\nclass DebuggingServer(SMTPServer):\n\n    def _print_message_content(self, peer, data):\n        inheaders = 1\n        lines = data.splitlines()\n        for line in lines:\n            # headers first\n            if inheaders and not line:\n                peerheader = 'X-Peer: ' + peer[0]\n                if not isinstance(data, str):\n                    # decoded_data=false; make header match other binary output\n                    peerheader = repr(peerheader.encode('utf-8'))\n                print(peerheader)\n                inheaders = 0\n            if not isinstance(data, str):\n                # Avoid spurious 'str on bytes instance' warning.\n                line = repr(line)\n            print(line)\n\n    def process_message(self, peer, mailfrom, rcpttos, data, **kwargs):\n        print('---------- MESSAGE FOLLOWS ----------')\n        if kwargs:\n            if kwargs.get('mail_options'):\n                print('mail options: %s' % kwargs['mail_options'])\n            if kwargs.get('rcpt_options'):\n                print('rcpt options: %s\\n' % kwargs['rcpt_options'])\n        self._print_message_content(peer, data)\n        print('------------ END MESSAGE ------------')\n\n\nclass PureProxy(SMTPServer):\n    def __init__(self, *args, **kwargs):\n        if 'enable_SMTPUTF8' in kwargs and kwargs['enable_SMTPUTF8']:\n            raise ValueError(\"PureProxy does not support SMTPUTF8.\")\n        super(PureProxy, self).__init__(*args, **kwargs)\n\n    def process_message(self, peer, mailfrom, rcpttos, data):\n        lines = data.split('\\n')\n        # Look for the last header\n        i = 0\n        for line in lines:\n            if not line:\n                break\n            i += 1\n        lines.insert(i, 'X-Peer: %s' % peer[0])\n        data = NEWLINE.join(lines)\n        refused = self._deliver(mailfrom, rcpttos, data)\n        # TBD: what to do with refused addresses?\n        print('we got some refusals:', refused, file=DEBUGSTREAM)\n\n    def _deliver(self, mailfrom, rcpttos, data):\n        import smtplib\n        refused = {}\n        try:\n            s = smtplib.SMTP()\n            s.connect(self._remoteaddr[0], self._remoteaddr[1])\n            try:\n                refused = s.sendmail(mailfrom, rcpttos, data)\n            finally:\n                s.quit()\n        except smtplib.SMTPRecipientsRefused as e:\n            print('got SMTPRecipientsRefused', file=DEBUGSTREAM)\n            refused = e.recipients\n        except (OSError, smtplib.SMTPException) as e:\n            print('got', e.__class__, file=DEBUGSTREAM)\n            # All recipients were refused.  If the exception had an associated\n            # error code, use it.  Otherwise,fake it with a non-triggering\n            # exception code.\n            errcode = getattr(e, 'smtp_code', -1)\n            errmsg = getattr(e, 'smtp_error', 'ignore')\n            for r in rcpttos:\n                refused[r] = (errcode, errmsg)\n        return refused\n\n\nclass MailmanProxy(PureProxy):\n    def __init__(self, *args, **kwargs):\n        if 'enable_SMTPUTF8' in kwargs and kwargs['enable_SMTPUTF8']:\n            raise ValueError(\"MailmanProxy does not support SMTPUTF8.\")\n        super(PureProxy, self).__init__(*args, **kwargs)\n\n    def process_message(self, peer, mailfrom, rcpttos, data):\n        from io import StringIO\n        from Mailman import Utils\n        from Mailman import Message\n        from Mailman import MailList\n        # If the message is to a Mailman mailing list, then we'll invoke the\n        # Mailman script directly, without going through the real smtpd.\n        # Otherwise we'll forward it to the local proxy for disposition.\n        listnames = []\n        for rcpt in rcpttos:\n            local = rcpt.lower().split('@')[0]\n            # We allow the following variations on the theme\n            #   listname\n            #   listname-admin\n            #   listname-owner\n            #   listname-request\n            #   listname-join\n            #   listname-leave\n            parts = local.split('-')\n            if len(parts) > 2:\n                continue\n            listname = parts[0]\n            if len(parts) == 2:\n                command = parts[1]\n            else:\n                command = ''\n            if not Utils.list_exists(listname) or command not in (\n                    '', 'admin', 'owner', 'request', 'join', 'leave'):\n                continue\n            listnames.append((rcpt, listname, command))\n        # Remove all list recipients from rcpttos and forward what we're not\n        # going to take care of ourselves.  Linear removal should be fine\n        # since we don't expect a large number of recipients.\n        for rcpt, listname, command in listnames:\n            rcpttos.remove(rcpt)\n        # If there's any non-list destined recipients left,\n        print('forwarding recips:', ' '.join(rcpttos), file=DEBUGSTREAM)\n        if rcpttos:\n            refused = self._deliver(mailfrom, rcpttos, data)\n            # TBD: what to do with refused addresses?\n            print('we got refusals:', refused, file=DEBUGSTREAM)\n        # Now deliver directly to the list commands\n        mlists = {}\n        s = StringIO(data)\n        msg = Message.Message(s)\n        # These headers are required for the proper execution of Mailman.  All\n        # MTAs in existence seem to add these if the original message doesn't\n        # have them.\n        if not msg.get('from'):\n            msg['From'] = mailfrom\n        if not msg.get('date'):\n            msg['Date'] = time.ctime(time.time())\n        for rcpt, listname, command in listnames:\n            print('sending message to', rcpt, file=DEBUGSTREAM)\n            mlist = mlists.get(listname)\n            if not mlist:\n                mlist = MailList.MailList(listname, lock=0)\n                mlists[listname] = mlist\n            # dispatch on the type of command\n            if command == '':\n                # post\n                msg.Enqueue(mlist, tolist=1)\n            elif command == 'admin':\n                msg.Enqueue(mlist, toadmin=1)\n            elif command == 'owner':\n                msg.Enqueue(mlist, toowner=1)\n            elif command == 'request':\n                msg.Enqueue(mlist, torequest=1)\n            elif command in ('join', 'leave'):\n                # TBD: this is a hack!\n                if command == 'join':\n                    msg['Subject'] = 'subscribe'\n                else:\n                    msg['Subject'] = 'unsubscribe'\n                msg.Enqueue(mlist, torequest=1)\n\n\nclass Options:\n    setuid = True\n    classname = 'PureProxy'\n    size_limit = None\n    enable_SMTPUTF8 = False\n\n\ndef parseargs():\n    global DEBUGSTREAM\n    try:\n        opts, args = getopt.getopt(\n            sys.argv[1:], 'nVhc:s:du',\n            ['class=', 'nosetuid', 'version', 'help', 'size=', 'debug',\n             'smtputf8'])\n    except getopt.error as e:\n        usage(1, e)\n\n    options = Options()\n    for opt, arg in opts:\n        if opt in ('-h', '--help'):\n            usage(0)\n        elif opt in ('-V', '--version'):\n            print(__version__)\n            sys.exit(0)\n        elif opt in ('-n', '--nosetuid'):\n            options.setuid = False\n        elif opt in ('-c', '--class'):\n            options.classname = arg\n        elif opt in ('-d', '--debug'):\n            DEBUGSTREAM = sys.stderr\n        elif opt in ('-u', '--smtputf8'):\n            options.enable_SMTPUTF8 = True\n        elif opt in ('-s', '--size'):\n            try:\n                int_size = int(arg)\n                options.size_limit = int_size\n            except:\n                print('Invalid size: ' + arg, file=sys.stderr)\n                sys.exit(1)\n\n    # parse the rest of the arguments\n    if len(args) < 1:\n        localspec = 'localhost:8025'\n        remotespec = 'localhost:25'\n    elif len(args) < 2:\n        localspec = args[0]\n        remotespec = 'localhost:25'\n    elif len(args) < 3:\n        localspec = args[0]\n        remotespec = args[1]\n    else:\n        usage(1, 'Invalid arguments: %s' % COMMASPACE.join(args))\n\n    # split into host/port pairs\n    i = localspec.find(':')\n    if i < 0:\n        usage(1, 'Bad local spec: %s' % localspec)\n    options.localhost = localspec[:i]\n    try:\n        options.localport = int(localspec[i+1:])\n    except ValueError:\n        usage(1, 'Bad local port: %s' % localspec)\n    i = remotespec.find(':')\n    if i < 0:\n        usage(1, 'Bad remote spec: %s' % remotespec)\n    options.remotehost = remotespec[:i]\n    try:\n        options.remoteport = int(remotespec[i+1:])\n    except ValueError:\n        usage(1, 'Bad remote port: %s' % remotespec)\n    return options\n\n\nif __name__ == '__main__':\n    options = parseargs()\n    # Become nobody\n    classname = options.classname\n    if \".\" in classname:\n        lastdot = classname.rfind(\".\")\n        mod = __import__(classname[:lastdot], globals(), locals(), [\"\"])\n        classname = classname[lastdot+1:]\n    else:\n        import __main__ as mod\n    class_ = getattr(mod, classname)\n    proxy = class_((options.localhost, options.localport),\n                   (options.remotehost, options.remoteport),\n                   options.size_limit, enable_SMTPUTF8=options.enable_SMTPUTF8)\n    if options.setuid:\n        try:\n            import pwd\n        except ImportError:\n            print('Cannot import module \"pwd\"; try running with -n option.', file=sys.stderr)\n            sys.exit(1)\n        nobody = pwd.getpwnam('nobody')[2]\n        try:\n            os.setuid(nobody)\n        except PermissionError:\n            print('Cannot setuid \"nobody\"; try running with -n option.', file=sys.stderr)\n            sys.exit(1)\n    try:\n        asyncore.loop()\n    except KeyboardInterrupt:\n        pass\n"
  },
  {
    "path": "rd/usr/lib/python3.8/sndhdr.py",
    "content": "\"\"\"Routines to help recognizing sound files.\n\nFunction whathdr() recognizes various types of sound file headers.\nIt understands almost all headers that SOX can decode.\n\nThe return tuple contains the following items, in this order:\n- file type (as SOX understands it)\n- sampling rate (0 if unknown or hard to decode)\n- number of channels (0 if unknown or hard to decode)\n- number of frames in the file (-1 if unknown or hard to decode)\n- number of bits/sample, or 'U' for U-LAW, or 'A' for A-LAW\n\nIf the file doesn't have a recognizable type, it returns None.\nIf the file can't be opened, OSError is raised.\n\nTo compute the total time, divide the number of frames by the\nsampling rate (a frame contains a sample for each channel).\n\nFunction what() calls whathdr().  (It used to also use some\nheuristics for raw data, but this doesn't work very well.)\n\nFinally, the function test() is a simple main program that calls\nwhat() for all files mentioned on the argument list.  For directory\narguments it calls what() for all files in that directory.  Default\nargument is \".\" (testing all files in the current directory).  The\noption -r tells it to recurse down directories found inside\nexplicitly given directories.\n\"\"\"\n\n# The file structure is top-down except that the test program and its\n# subroutine come last.\n\n__all__ = ['what', 'whathdr']\n\nfrom collections import namedtuple\n\nSndHeaders = namedtuple('SndHeaders',\n                        'filetype framerate nchannels nframes sampwidth')\n\nSndHeaders.filetype.__doc__ = (\"\"\"The value for type indicates the data type\nand will be one of the strings 'aifc', 'aiff', 'au','hcom',\n'sndr', 'sndt', 'voc', 'wav', '8svx', 'sb', 'ub', or 'ul'.\"\"\")\nSndHeaders.framerate.__doc__ = (\"\"\"The sampling_rate will be either the actual\nvalue or 0 if unknown or difficult to decode.\"\"\")\nSndHeaders.nchannels.__doc__ = (\"\"\"The number of channels or 0 if it cannot be\ndetermined or if the value is difficult to decode.\"\"\")\nSndHeaders.nframes.__doc__ = (\"\"\"The value for frames will be either the number\nof frames or -1.\"\"\")\nSndHeaders.sampwidth.__doc__ = (\"\"\"Either the sample size in bits or\n'A' for A-LAW or 'U' for u-LAW.\"\"\")\n\ndef what(filename):\n    \"\"\"Guess the type of a sound file.\"\"\"\n    res = whathdr(filename)\n    return res\n\n\ndef whathdr(filename):\n    \"\"\"Recognize sound headers.\"\"\"\n    with open(filename, 'rb') as f:\n        h = f.read(512)\n        for tf in tests:\n            res = tf(h, f)\n            if res:\n                return SndHeaders(*res)\n        return None\n\n\n#-----------------------------------#\n# Subroutines per sound header type #\n#-----------------------------------#\n\ntests = []\n\ndef test_aifc(h, f):\n    import aifc\n    if not h.startswith(b'FORM'):\n        return None\n    if h[8:12] == b'AIFC':\n        fmt = 'aifc'\n    elif h[8:12] == b'AIFF':\n        fmt = 'aiff'\n    else:\n        return None\n    f.seek(0)\n    try:\n        a = aifc.open(f, 'r')\n    except (EOFError, aifc.Error):\n        return None\n    return (fmt, a.getframerate(), a.getnchannels(),\n            a.getnframes(), 8 * a.getsampwidth())\n\ntests.append(test_aifc)\n\n\ndef test_au(h, f):\n    if h.startswith(b'.snd'):\n        func = get_long_be\n    elif h[:4] in (b'\\0ds.', b'dns.'):\n        func = get_long_le\n    else:\n        return None\n    filetype = 'au'\n    hdr_size = func(h[4:8])\n    data_size = func(h[8:12])\n    encoding = func(h[12:16])\n    rate = func(h[16:20])\n    nchannels = func(h[20:24])\n    sample_size = 1 # default\n    if encoding == 1:\n        sample_bits = 'U'\n    elif encoding == 2:\n        sample_bits = 8\n    elif encoding == 3:\n        sample_bits = 16\n        sample_size = 2\n    else:\n        sample_bits = '?'\n    frame_size = sample_size * nchannels\n    if frame_size:\n        nframe = data_size / frame_size\n    else:\n        nframe = -1\n    return filetype, rate, nchannels, nframe, sample_bits\n\ntests.append(test_au)\n\n\ndef test_hcom(h, f):\n    if h[65:69] != b'FSSD' or h[128:132] != b'HCOM':\n        return None\n    divisor = get_long_be(h[144:148])\n    if divisor:\n        rate = 22050 / divisor\n    else:\n        rate = 0\n    return 'hcom', rate, 1, -1, 8\n\ntests.append(test_hcom)\n\n\ndef test_voc(h, f):\n    if not h.startswith(b'Creative Voice File\\032'):\n        return None\n    sbseek = get_short_le(h[20:22])\n    rate = 0\n    if 0 <= sbseek < 500 and h[sbseek] == 1:\n        ratecode = 256 - h[sbseek+4]\n        if ratecode:\n            rate = int(1000000.0 / ratecode)\n    return 'voc', rate, 1, -1, 8\n\ntests.append(test_voc)\n\n\ndef test_wav(h, f):\n    import wave\n    # 'RIFF' <len> 'WAVE' 'fmt ' <len>\n    if not h.startswith(b'RIFF') or h[8:12] != b'WAVE' or h[12:16] != b'fmt ':\n        return None\n    f.seek(0)\n    try:\n        w = wave.open(f, 'r')\n    except (EOFError, wave.Error):\n        return None\n    return ('wav', w.getframerate(), w.getnchannels(),\n                   w.getnframes(), 8*w.getsampwidth())\n\ntests.append(test_wav)\n\n\ndef test_8svx(h, f):\n    if not h.startswith(b'FORM') or h[8:12] != b'8SVX':\n        return None\n    # Should decode it to get #channels -- assume always 1\n    return '8svx', 0, 1, 0, 8\n\ntests.append(test_8svx)\n\n\ndef test_sndt(h, f):\n    if h.startswith(b'SOUND'):\n        nsamples = get_long_le(h[8:12])\n        rate = get_short_le(h[20:22])\n        return 'sndt', rate, 1, nsamples, 8\n\ntests.append(test_sndt)\n\n\ndef test_sndr(h, f):\n    if h.startswith(b'\\0\\0'):\n        rate = get_short_le(h[2:4])\n        if 4000 <= rate <= 25000:\n            return 'sndr', rate, 1, -1, 8\n\ntests.append(test_sndr)\n\n\n#-------------------------------------------#\n# Subroutines to extract numbers from bytes #\n#-------------------------------------------#\n\ndef get_long_be(b):\n    return (b[0] << 24) | (b[1] << 16) | (b[2] << 8) | b[3]\n\ndef get_long_le(b):\n    return (b[3] << 24) | (b[2] << 16) | (b[1] << 8) | b[0]\n\ndef get_short_be(b):\n    return (b[0] << 8) | b[1]\n\ndef get_short_le(b):\n    return (b[1] << 8) | b[0]\n\n\n#--------------------#\n# Small test program #\n#--------------------#\n\ndef test():\n    import sys\n    recursive = 0\n    if sys.argv[1:] and sys.argv[1] == '-r':\n        del sys.argv[1:2]\n        recursive = 1\n    try:\n        if sys.argv[1:]:\n            testall(sys.argv[1:], recursive, 1)\n        else:\n            testall(['.'], recursive, 1)\n    except KeyboardInterrupt:\n        sys.stderr.write('\\n[Interrupted]\\n')\n        sys.exit(1)\n\ndef testall(list, recursive, toplevel):\n    import sys\n    import os\n    for filename in list:\n        if os.path.isdir(filename):\n            print(filename + '/:', end=' ')\n            if recursive or toplevel:\n                print('recursing down:')\n                import glob\n                names = glob.glob(os.path.join(glob.escape(filename), '*'))\n                testall(names, recursive, 0)\n            else:\n                print('*** directory (use -r) ***')\n        else:\n            print(filename + ':', end=' ')\n            sys.stdout.flush()\n            try:\n                print(what(filename))\n            except OSError:\n                print('*** not found ***')\n\nif __name__ == '__main__':\n    test()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/socket.py",
    "content": "# Wrapper module for _socket, providing some additional facilities\n# implemented in Python.\n\n\"\"\"\\\nThis module provides socket operations and some related functions.\nOn Unix, it supports IP (Internet Protocol) and Unix domain sockets.\nOn other systems, it only supports IP. Functions specific for a\nsocket are available as methods of the socket object.\n\nFunctions:\n\nsocket() -- create a new socket object\nsocketpair() -- create a pair of new socket objects [*]\nfromfd() -- create a socket object from an open file descriptor [*]\nfromshare() -- create a socket object from data received from socket.share() [*]\ngethostname() -- return the current hostname\ngethostbyname() -- map a hostname to its IP number\ngethostbyaddr() -- map an IP number or hostname to DNS info\ngetservbyname() -- map a service name and a protocol name to a port number\ngetprotobyname() -- map a protocol name (e.g. 'tcp') to a number\nntohs(), ntohl() -- convert 16, 32 bit int from network to host byte order\nhtons(), htonl() -- convert 16, 32 bit int from host to network byte order\ninet_aton() -- convert IP addr string (123.45.67.89) to 32-bit packed format\ninet_ntoa() -- convert 32-bit packed format IP to string (123.45.67.89)\nsocket.getdefaulttimeout() -- get the default timeout value\nsocket.setdefaulttimeout() -- set the default timeout value\ncreate_connection() -- connects to an address, with an optional timeout and\n                       optional source address.\n\n [*] not available on all platforms!\n\nSpecial objects:\n\nSocketType -- type object for socket objects\nerror -- exception raised for I/O errors\nhas_ipv6 -- boolean value indicating if IPv6 is supported\n\nIntEnum constants:\n\nAF_INET, AF_UNIX -- socket domains (first argument to socket() call)\nSOCK_STREAM, SOCK_DGRAM, SOCK_RAW -- socket types (second argument)\n\nInteger constants:\n\nMany other constants may be defined; these may be used in calls to\nthe setsockopt() and getsockopt() methods.\n\"\"\"\n\nimport _socket\nfrom _socket import *\n\nimport os, sys, io, selectors\nfrom enum import IntEnum, IntFlag\n\ntry:\n    import errno\nexcept ImportError:\n    errno = None\nEBADF = getattr(errno, 'EBADF', 9)\nEAGAIN = getattr(errno, 'EAGAIN', 11)\nEWOULDBLOCK = getattr(errno, 'EWOULDBLOCK', 11)\n\n__all__ = [\"fromfd\", \"getfqdn\", \"create_connection\", \"create_server\",\n           \"has_dualstack_ipv6\", \"AddressFamily\", \"SocketKind\"]\n__all__.extend(os._get_exports_list(_socket))\n\n# Set up the socket.AF_* socket.SOCK_* constants as members of IntEnums for\n# nicer string representations.\n# Note that _socket only knows about the integer values. The public interface\n# in this module understands the enums and translates them back from integers\n# where needed (e.g. .family property of a socket object).\n\nIntEnum._convert_(\n        'AddressFamily',\n        __name__,\n        lambda C: C.isupper() and C.startswith('AF_'))\n\nIntEnum._convert_(\n        'SocketKind',\n        __name__,\n        lambda C: C.isupper() and C.startswith('SOCK_'))\n\nIntFlag._convert_(\n        'MsgFlag',\n        __name__,\n        lambda C: C.isupper() and C.startswith('MSG_'))\n\nIntFlag._convert_(\n        'AddressInfo',\n        __name__,\n        lambda C: C.isupper() and C.startswith('AI_'))\n\n_LOCALHOST    = '127.0.0.1'\n_LOCALHOST_V6 = '::1'\n\n\ndef _intenum_converter(value, enum_klass):\n    \"\"\"Convert a numeric family value to an IntEnum member.\n\n    If it's not a known member, return the numeric value itself.\n    \"\"\"\n    try:\n        return enum_klass(value)\n    except ValueError:\n        return value\n\n_realsocket = socket\n\n# WSA error codes\nif sys.platform.lower().startswith(\"win\"):\n    errorTab = {}\n    errorTab[6] = \"Specified event object handle is invalid.\"\n    errorTab[8] = \"Insufficient memory available.\"\n    errorTab[87] = \"One or more parameters are invalid.\"\n    errorTab[995] = \"Overlapped operation aborted.\"\n    errorTab[996] = \"Overlapped I/O event object not in signaled state.\"\n    errorTab[997] = \"Overlapped operation will complete later.\"\n    errorTab[10004] = \"The operation was interrupted.\"\n    errorTab[10009] = \"A bad file handle was passed.\"\n    errorTab[10013] = \"Permission denied.\"\n    errorTab[10014] = \"A fault occurred on the network??\"  # WSAEFAULT\n    errorTab[10022] = \"An invalid operation was attempted.\"\n    errorTab[10024] = \"Too many open files.\"\n    errorTab[10035] = \"The socket operation would block\"\n    errorTab[10036] = \"A blocking operation is already in progress.\"\n    errorTab[10037] = \"Operation already in progress.\"\n    errorTab[10038] = \"Socket operation on nonsocket.\"\n    errorTab[10039] = \"Destination address required.\"\n    errorTab[10040] = \"Message too long.\"\n    errorTab[10041] = \"Protocol wrong type for socket.\"\n    errorTab[10042] = \"Bad protocol option.\"\n    errorTab[10043] = \"Protocol not supported.\"\n    errorTab[10044] = \"Socket type not supported.\"\n    errorTab[10045] = \"Operation not supported.\"\n    errorTab[10046] = \"Protocol family not supported.\"\n    errorTab[10047] = \"Address family not supported by protocol family.\"\n    errorTab[10048] = \"The network address is in use.\"\n    errorTab[10049] = \"Cannot assign requested address.\"\n    errorTab[10050] = \"Network is down.\"\n    errorTab[10051] = \"Network is unreachable.\"\n    errorTab[10052] = \"Network dropped connection on reset.\"\n    errorTab[10053] = \"Software caused connection abort.\"\n    errorTab[10054] = \"The connection has been reset.\"\n    errorTab[10055] = \"No buffer space available.\"\n    errorTab[10056] = \"Socket is already connected.\"\n    errorTab[10057] = \"Socket is not connected.\"\n    errorTab[10058] = \"The network has been shut down.\"\n    errorTab[10059] = \"Too many references.\"\n    errorTab[10060] = \"The operation timed out.\"\n    errorTab[10061] = \"Connection refused.\"\n    errorTab[10062] = \"Cannot translate name.\"\n    errorTab[10063] = \"The name is too long.\"\n    errorTab[10064] = \"The host is down.\"\n    errorTab[10065] = \"The host is unreachable.\"\n    errorTab[10066] = \"Directory not empty.\"\n    errorTab[10067] = \"Too many processes.\"\n    errorTab[10068] = \"User quota exceeded.\"\n    errorTab[10069] = \"Disk quota exceeded.\"\n    errorTab[10070] = \"Stale file handle reference.\"\n    errorTab[10071] = \"Item is remote.\"\n    errorTab[10091] = \"Network subsystem is unavailable.\"\n    errorTab[10092] = \"Winsock.dll version out of range.\"\n    errorTab[10093] = \"Successful WSAStartup not yet performed.\"\n    errorTab[10101] = \"Graceful shutdown in progress.\"\n    errorTab[10102] = \"No more results from WSALookupServiceNext.\"\n    errorTab[10103] = \"Call has been canceled.\"\n    errorTab[10104] = \"Procedure call table is invalid.\"\n    errorTab[10105] = \"Service provider is invalid.\"\n    errorTab[10106] = \"Service provider failed to initialize.\"\n    errorTab[10107] = \"System call failure.\"\n    errorTab[10108] = \"Service not found.\"\n    errorTab[10109] = \"Class type not found.\"\n    errorTab[10110] = \"No more results from WSALookupServiceNext.\"\n    errorTab[10111] = \"Call was canceled.\"\n    errorTab[10112] = \"Database query was refused.\"\n    errorTab[11001] = \"Host not found.\"\n    errorTab[11002] = \"Nonauthoritative host not found.\"\n    errorTab[11003] = \"This is a nonrecoverable error.\"\n    errorTab[11004] = \"Valid name, no data record requested type.\"\n    errorTab[11005] = \"QoS receivers.\"\n    errorTab[11006] = \"QoS senders.\"\n    errorTab[11007] = \"No QoS senders.\"\n    errorTab[11008] = \"QoS no receivers.\"\n    errorTab[11009] = \"QoS request confirmed.\"\n    errorTab[11010] = \"QoS admission error.\"\n    errorTab[11011] = \"QoS policy failure.\"\n    errorTab[11012] = \"QoS bad style.\"\n    errorTab[11013] = \"QoS bad object.\"\n    errorTab[11014] = \"QoS traffic control error.\"\n    errorTab[11015] = \"QoS generic error.\"\n    errorTab[11016] = \"QoS service type error.\"\n    errorTab[11017] = \"QoS flowspec error.\"\n    errorTab[11018] = \"Invalid QoS provider buffer.\"\n    errorTab[11019] = \"Invalid QoS filter style.\"\n    errorTab[11020] = \"Invalid QoS filter style.\"\n    errorTab[11021] = \"Incorrect QoS filter count.\"\n    errorTab[11022] = \"Invalid QoS object length.\"\n    errorTab[11023] = \"Incorrect QoS flow count.\"\n    errorTab[11024] = \"Unrecognized QoS object.\"\n    errorTab[11025] = \"Invalid QoS policy object.\"\n    errorTab[11026] = \"Invalid QoS flow descriptor.\"\n    errorTab[11027] = \"Invalid QoS provider-specific flowspec.\"\n    errorTab[11028] = \"Invalid QoS provider-specific filterspec.\"\n    errorTab[11029] = \"Invalid QoS shape discard mode object.\"\n    errorTab[11030] = \"Invalid QoS shaping rate object.\"\n    errorTab[11031] = \"Reserved policy QoS element type.\"\n    __all__.append(\"errorTab\")\n\n\nclass _GiveupOnSendfile(Exception): pass\n\n\nclass socket(_socket.socket):\n\n    \"\"\"A subclass of _socket.socket adding the makefile() method.\"\"\"\n\n    __slots__ = [\"__weakref__\", \"_io_refs\", \"_closed\"]\n\n    def __init__(self, family=-1, type=-1, proto=-1, fileno=None):\n        # For user code address family and type values are IntEnum members, but\n        # for the underlying _socket.socket they're just integers. The\n        # constructor of _socket.socket converts the given argument to an\n        # integer automatically.\n        if fileno is None:\n            if family == -1:\n                family = AF_INET\n            if type == -1:\n                type = SOCK_STREAM\n            if proto == -1:\n                proto = 0\n        _socket.socket.__init__(self, family, type, proto, fileno)\n        self._io_refs = 0\n        self._closed = False\n\n    def __enter__(self):\n        return self\n\n    def __exit__(self, *args):\n        if not self._closed:\n            self.close()\n\n    def __repr__(self):\n        \"\"\"Wrap __repr__() to reveal the real class name and socket\n        address(es).\n        \"\"\"\n        closed = getattr(self, '_closed', False)\n        s = \"<%s.%s%s fd=%i, family=%s, type=%s, proto=%i\" \\\n            % (self.__class__.__module__,\n               self.__class__.__qualname__,\n               \" [closed]\" if closed else \"\",\n               self.fileno(),\n               self.family,\n               self.type,\n               self.proto)\n        if not closed:\n            try:\n                laddr = self.getsockname()\n                if laddr:\n                    s += \", laddr=%s\" % str(laddr)\n            except error:\n                pass\n            try:\n                raddr = self.getpeername()\n                if raddr:\n                    s += \", raddr=%s\" % str(raddr)\n            except error:\n                pass\n        s += '>'\n        return s\n\n    def __getstate__(self):\n        raise TypeError(f\"cannot pickle {self.__class__.__name__!r} object\")\n\n    def dup(self):\n        \"\"\"dup() -> socket object\n\n        Duplicate the socket. Return a new socket object connected to the same\n        system resource. The new socket is non-inheritable.\n        \"\"\"\n        fd = dup(self.fileno())\n        sock = self.__class__(self.family, self.type, self.proto, fileno=fd)\n        sock.settimeout(self.gettimeout())\n        return sock\n\n    def accept(self):\n        \"\"\"accept() -> (socket object, address info)\n\n        Wait for an incoming connection.  Return a new socket\n        representing the connection, and the address of the client.\n        For IP sockets, the address info is a pair (hostaddr, port).\n        \"\"\"\n        fd, addr = self._accept()\n        sock = socket(self.family, self.type, self.proto, fileno=fd)\n        # Issue #7995: if no default timeout is set and the listening\n        # socket had a (non-zero) timeout, force the new socket in blocking\n        # mode to override platform-specific socket flags inheritance.\n        if getdefaulttimeout() is None and self.gettimeout():\n            sock.setblocking(True)\n        return sock, addr\n\n    def makefile(self, mode=\"r\", buffering=None, *,\n                 encoding=None, errors=None, newline=None):\n        \"\"\"makefile(...) -> an I/O stream connected to the socket\n\n        The arguments are as for io.open() after the filename, except the only\n        supported mode values are 'r' (default), 'w' and 'b'.\n        \"\"\"\n        # XXX refactor to share code?\n        if not set(mode) <= {\"r\", \"w\", \"b\"}:\n            raise ValueError(\"invalid mode %r (only r, w, b allowed)\" % (mode,))\n        writing = \"w\" in mode\n        reading = \"r\" in mode or not writing\n        assert reading or writing\n        binary = \"b\" in mode\n        rawmode = \"\"\n        if reading:\n            rawmode += \"r\"\n        if writing:\n            rawmode += \"w\"\n        raw = SocketIO(self, rawmode)\n        self._io_refs += 1\n        if buffering is None:\n            buffering = -1\n        if buffering < 0:\n            buffering = io.DEFAULT_BUFFER_SIZE\n        if buffering == 0:\n            if not binary:\n                raise ValueError(\"unbuffered streams must be binary\")\n            return raw\n        if reading and writing:\n            buffer = io.BufferedRWPair(raw, raw, buffering)\n        elif reading:\n            buffer = io.BufferedReader(raw, buffering)\n        else:\n            assert writing\n            buffer = io.BufferedWriter(raw, buffering)\n        if binary:\n            return buffer\n        text = io.TextIOWrapper(buffer, encoding, errors, newline)\n        text.mode = mode\n        return text\n\n    if hasattr(os, 'sendfile'):\n\n        def _sendfile_use_sendfile(self, file, offset=0, count=None):\n            self._check_sendfile_params(file, offset, count)\n            sockno = self.fileno()\n            try:\n                fileno = file.fileno()\n            except (AttributeError, io.UnsupportedOperation) as err:\n                raise _GiveupOnSendfile(err)  # not a regular file\n            try:\n                fsize = os.fstat(fileno).st_size\n            except OSError as err:\n                raise _GiveupOnSendfile(err)  # not a regular file\n            if not fsize:\n                return 0  # empty file\n            # Truncate to 1GiB to avoid OverflowError, see bpo-38319.\n            blocksize = min(count or fsize, 2 ** 30)\n            timeout = self.gettimeout()\n            if timeout == 0:\n                raise ValueError(\"non-blocking sockets are not supported\")\n            # poll/select have the advantage of not requiring any\n            # extra file descriptor, contrarily to epoll/kqueue\n            # (also, they require a single syscall).\n            if hasattr(selectors, 'PollSelector'):\n                selector = selectors.PollSelector()\n            else:\n                selector = selectors.SelectSelector()\n            selector.register(sockno, selectors.EVENT_WRITE)\n\n            total_sent = 0\n            # localize variable access to minimize overhead\n            selector_select = selector.select\n            os_sendfile = os.sendfile\n            try:\n                while True:\n                    if timeout and not selector_select(timeout):\n                        raise _socket.timeout('timed out')\n                    if count:\n                        blocksize = count - total_sent\n                        if blocksize <= 0:\n                            break\n                    try:\n                        sent = os_sendfile(sockno, fileno, offset, blocksize)\n                    except BlockingIOError:\n                        if not timeout:\n                            # Block until the socket is ready to send some\n                            # data; avoids hogging CPU resources.\n                            selector_select()\n                        continue\n                    except OSError as err:\n                        if total_sent == 0:\n                            # We can get here for different reasons, the main\n                            # one being 'file' is not a regular mmap(2)-like\n                            # file, in which case we'll fall back on using\n                            # plain send().\n                            raise _GiveupOnSendfile(err)\n                        raise err from None\n                    else:\n                        if sent == 0:\n                            break  # EOF\n                        offset += sent\n                        total_sent += sent\n                return total_sent\n            finally:\n                if total_sent > 0 and hasattr(file, 'seek'):\n                    file.seek(offset)\n    else:\n        def _sendfile_use_sendfile(self, file, offset=0, count=None):\n            raise _GiveupOnSendfile(\n                \"os.sendfile() not available on this platform\")\n\n    def _sendfile_use_send(self, file, offset=0, count=None):\n        self._check_sendfile_params(file, offset, count)\n        if self.gettimeout() == 0:\n            raise ValueError(\"non-blocking sockets are not supported\")\n        if offset:\n            file.seek(offset)\n        blocksize = min(count, 8192) if count else 8192\n        total_sent = 0\n        # localize variable access to minimize overhead\n        file_read = file.read\n        sock_send = self.send\n        try:\n            while True:\n                if count:\n                    blocksize = min(count - total_sent, blocksize)\n                    if blocksize <= 0:\n                        break\n                data = memoryview(file_read(blocksize))\n                if not data:\n                    break  # EOF\n                while True:\n                    try:\n                        sent = sock_send(data)\n                    except BlockingIOError:\n                        continue\n                    else:\n                        total_sent += sent\n                        if sent < len(data):\n                            data = data[sent:]\n                        else:\n                            break\n            return total_sent\n        finally:\n            if total_sent > 0 and hasattr(file, 'seek'):\n                file.seek(offset + total_sent)\n\n    def _check_sendfile_params(self, file, offset, count):\n        if 'b' not in getattr(file, 'mode', 'b'):\n            raise ValueError(\"file should be opened in binary mode\")\n        if not self.type & SOCK_STREAM:\n            raise ValueError(\"only SOCK_STREAM type sockets are supported\")\n        if count is not None:\n            if not isinstance(count, int):\n                raise TypeError(\n                    \"count must be a positive integer (got {!r})\".format(count))\n            if count <= 0:\n                raise ValueError(\n                    \"count must be a positive integer (got {!r})\".format(count))\n\n    def sendfile(self, file, offset=0, count=None):\n        \"\"\"sendfile(file[, offset[, count]]) -> sent\n\n        Send a file until EOF is reached by using high-performance\n        os.sendfile() and return the total number of bytes which\n        were sent.\n        *file* must be a regular file object opened in binary mode.\n        If os.sendfile() is not available (e.g. Windows) or file is\n        not a regular file socket.send() will be used instead.\n        *offset* tells from where to start reading the file.\n        If specified, *count* is the total number of bytes to transmit\n        as opposed to sending the file until EOF is reached.\n        File position is updated on return or also in case of error in\n        which case file.tell() can be used to figure out the number of\n        bytes which were sent.\n        The socket must be of SOCK_STREAM type.\n        Non-blocking sockets are not supported.\n        \"\"\"\n        try:\n            return self._sendfile_use_sendfile(file, offset, count)\n        except _GiveupOnSendfile:\n            return self._sendfile_use_send(file, offset, count)\n\n    def _decref_socketios(self):\n        if self._io_refs > 0:\n            self._io_refs -= 1\n        if self._closed:\n            self.close()\n\n    def _real_close(self, _ss=_socket.socket):\n        # This function should not reference any globals. See issue #808164.\n        _ss.close(self)\n\n    def close(self):\n        # This function should not reference any globals. See issue #808164.\n        self._closed = True\n        if self._io_refs <= 0:\n            self._real_close()\n\n    def detach(self):\n        \"\"\"detach() -> file descriptor\n\n        Close the socket object without closing the underlying file descriptor.\n        The object cannot be used after this call, but the file descriptor\n        can be reused for other purposes.  The file descriptor is returned.\n        \"\"\"\n        self._closed = True\n        return super().detach()\n\n    @property\n    def family(self):\n        \"\"\"Read-only access to the address family for this socket.\n        \"\"\"\n        return _intenum_converter(super().family, AddressFamily)\n\n    @property\n    def type(self):\n        \"\"\"Read-only access to the socket type.\n        \"\"\"\n        return _intenum_converter(super().type, SocketKind)\n\n    if os.name == 'nt':\n        def get_inheritable(self):\n            return os.get_handle_inheritable(self.fileno())\n        def set_inheritable(self, inheritable):\n            os.set_handle_inheritable(self.fileno(), inheritable)\n    else:\n        def get_inheritable(self):\n            return os.get_inheritable(self.fileno())\n        def set_inheritable(self, inheritable):\n            os.set_inheritable(self.fileno(), inheritable)\n    get_inheritable.__doc__ = \"Get the inheritable flag of the socket\"\n    set_inheritable.__doc__ = \"Set the inheritable flag of the socket\"\n\ndef fromfd(fd, family, type, proto=0):\n    \"\"\" fromfd(fd, family, type[, proto]) -> socket object\n\n    Create a socket object from a duplicate of the given file\n    descriptor.  The remaining arguments are the same as for socket().\n    \"\"\"\n    nfd = dup(fd)\n    return socket(family, type, proto, nfd)\n\nif hasattr(_socket.socket, \"share\"):\n    def fromshare(info):\n        \"\"\" fromshare(info) -> socket object\n\n        Create a socket object from the bytes object returned by\n        socket.share(pid).\n        \"\"\"\n        return socket(0, 0, 0, info)\n    __all__.append(\"fromshare\")\n\nif hasattr(_socket, \"socketpair\"):\n\n    def socketpair(family=None, type=SOCK_STREAM, proto=0):\n        \"\"\"socketpair([family[, type[, proto]]]) -> (socket object, socket object)\n\n        Create a pair of socket objects from the sockets returned by the platform\n        socketpair() function.\n        The arguments are the same as for socket() except the default family is\n        AF_UNIX if defined on the platform; otherwise, the default is AF_INET.\n        \"\"\"\n        if family is None:\n            try:\n                family = AF_UNIX\n            except NameError:\n                family = AF_INET\n        a, b = _socket.socketpair(family, type, proto)\n        a = socket(family, type, proto, a.detach())\n        b = socket(family, type, proto, b.detach())\n        return a, b\n\nelse:\n\n    # Origin: https://gist.github.com/4325783, by Geert Jansen.  Public domain.\n    def socketpair(family=AF_INET, type=SOCK_STREAM, proto=0):\n        if family == AF_INET:\n            host = _LOCALHOST\n        elif family == AF_INET6:\n            host = _LOCALHOST_V6\n        else:\n            raise ValueError(\"Only AF_INET and AF_INET6 socket address families \"\n                             \"are supported\")\n        if type != SOCK_STREAM:\n            raise ValueError(\"Only SOCK_STREAM socket type is supported\")\n        if proto != 0:\n            raise ValueError(\"Only protocol zero is supported\")\n\n        # We create a connected TCP socket. Note the trick with\n        # setblocking(False) that prevents us from having to create a thread.\n        lsock = socket(family, type, proto)\n        try:\n            lsock.bind((host, 0))\n            lsock.listen()\n            # On IPv6, ignore flow_info and scope_id\n            addr, port = lsock.getsockname()[:2]\n            csock = socket(family, type, proto)\n            try:\n                csock.setblocking(False)\n                try:\n                    csock.connect((addr, port))\n                except (BlockingIOError, InterruptedError):\n                    pass\n                csock.setblocking(True)\n                ssock, _ = lsock.accept()\n            except:\n                csock.close()\n                raise\n        finally:\n            lsock.close()\n        return (ssock, csock)\n    __all__.append(\"socketpair\")\n\nsocketpair.__doc__ = \"\"\"socketpair([family[, type[, proto]]]) -> (socket object, socket object)\nCreate a pair of socket objects from the sockets returned by the platform\nsocketpair() function.\nThe arguments are the same as for socket() except the default family is AF_UNIX\nif defined on the platform; otherwise, the default is AF_INET.\n\"\"\"\n\n_blocking_errnos = { EAGAIN, EWOULDBLOCK }\n\nclass SocketIO(io.RawIOBase):\n\n    \"\"\"Raw I/O implementation for stream sockets.\n\n    This class supports the makefile() method on sockets.  It provides\n    the raw I/O interface on top of a socket object.\n    \"\"\"\n\n    # One might wonder why not let FileIO do the job instead.  There are two\n    # main reasons why FileIO is not adapted:\n    # - it wouldn't work under Windows (where you can't used read() and\n    #   write() on a socket handle)\n    # - it wouldn't work with socket timeouts (FileIO would ignore the\n    #   timeout and consider the socket non-blocking)\n\n    # XXX More docs\n\n    def __init__(self, sock, mode):\n        if mode not in (\"r\", \"w\", \"rw\", \"rb\", \"wb\", \"rwb\"):\n            raise ValueError(\"invalid mode: %r\" % mode)\n        io.RawIOBase.__init__(self)\n        self._sock = sock\n        if \"b\" not in mode:\n            mode += \"b\"\n        self._mode = mode\n        self._reading = \"r\" in mode\n        self._writing = \"w\" in mode\n        self._timeout_occurred = False\n\n    def readinto(self, b):\n        \"\"\"Read up to len(b) bytes into the writable buffer *b* and return\n        the number of bytes read.  If the socket is non-blocking and no bytes\n        are available, None is returned.\n\n        If *b* is non-empty, a 0 return value indicates that the connection\n        was shutdown at the other end.\n        \"\"\"\n        self._checkClosed()\n        self._checkReadable()\n        if self._timeout_occurred:\n            raise OSError(\"cannot read from timed out object\")\n        while True:\n            try:\n                return self._sock.recv_into(b)\n            except timeout:\n                self._timeout_occurred = True\n                raise\n            except error as e:\n                if e.args[0] in _blocking_errnos:\n                    return None\n                raise\n\n    def write(self, b):\n        \"\"\"Write the given bytes or bytearray object *b* to the socket\n        and return the number of bytes written.  This can be less than\n        len(b) if not all data could be written.  If the socket is\n        non-blocking and no bytes could be written None is returned.\n        \"\"\"\n        self._checkClosed()\n        self._checkWritable()\n        try:\n            return self._sock.send(b)\n        except error as e:\n            # XXX what about EINTR?\n            if e.args[0] in _blocking_errnos:\n                return None\n            raise\n\n    def readable(self):\n        \"\"\"True if the SocketIO is open for reading.\n        \"\"\"\n        if self.closed:\n            raise ValueError(\"I/O operation on closed socket.\")\n        return self._reading\n\n    def writable(self):\n        \"\"\"True if the SocketIO is open for writing.\n        \"\"\"\n        if self.closed:\n            raise ValueError(\"I/O operation on closed socket.\")\n        return self._writing\n\n    def seekable(self):\n        \"\"\"True if the SocketIO is open for seeking.\n        \"\"\"\n        if self.closed:\n            raise ValueError(\"I/O operation on closed socket.\")\n        return super().seekable()\n\n    def fileno(self):\n        \"\"\"Return the file descriptor of the underlying socket.\n        \"\"\"\n        self._checkClosed()\n        return self._sock.fileno()\n\n    @property\n    def name(self):\n        if not self.closed:\n            return self.fileno()\n        else:\n            return -1\n\n    @property\n    def mode(self):\n        return self._mode\n\n    def close(self):\n        \"\"\"Close the SocketIO object.  This doesn't close the underlying\n        socket, except if all references to it have disappeared.\n        \"\"\"\n        if self.closed:\n            return\n        io.RawIOBase.close(self)\n        self._sock._decref_socketios()\n        self._sock = None\n\n\ndef getfqdn(name=''):\n    \"\"\"Get fully qualified domain name from name.\n\n    An empty argument is interpreted as meaning the local host.\n\n    First the hostname returned by gethostbyaddr() is checked, then\n    possibly existing aliases. In case no FQDN is available, hostname\n    from gethostname() is returned.\n    \"\"\"\n    name = name.strip()\n    if not name or name == '0.0.0.0':\n        name = gethostname()\n    try:\n        hostname, aliases, ipaddrs = gethostbyaddr(name)\n    except error:\n        pass\n    else:\n        aliases.insert(0, hostname)\n        for name in aliases:\n            if '.' in name:\n                break\n        else:\n            name = hostname\n    return name\n\n\n_GLOBAL_DEFAULT_TIMEOUT = object()\n\ndef create_connection(address, timeout=_GLOBAL_DEFAULT_TIMEOUT,\n                      source_address=None):\n    \"\"\"Connect to *address* and return the socket object.\n\n    Convenience function.  Connect to *address* (a 2-tuple ``(host,\n    port)``) and return the socket object.  Passing the optional\n    *timeout* parameter will set the timeout on the socket instance\n    before attempting to connect.  If no *timeout* is supplied, the\n    global default timeout setting returned by :func:`getdefaulttimeout`\n    is used.  If *source_address* is set it must be a tuple of (host, port)\n    for the socket to bind as a source address before making the connection.\n    A host of '' or port 0 tells the OS to use the default.\n    \"\"\"\n\n    host, port = address\n    err = None\n    for res in getaddrinfo(host, port, 0, SOCK_STREAM):\n        af, socktype, proto, canonname, sa = res\n        sock = None\n        try:\n            sock = socket(af, socktype, proto)\n            if timeout is not _GLOBAL_DEFAULT_TIMEOUT:\n                sock.settimeout(timeout)\n            if source_address:\n                sock.bind(source_address)\n            sock.connect(sa)\n            # Break explicitly a reference cycle\n            err = None\n            return sock\n\n        except error as _:\n            err = _\n            if sock is not None:\n                sock.close()\n\n    if err is not None:\n        try:\n            raise err\n        finally:\n            # Break explicitly a reference cycle\n            err = None\n    else:\n        raise error(\"getaddrinfo returns an empty list\")\n\n\ndef has_dualstack_ipv6():\n    \"\"\"Return True if the platform supports creating a SOCK_STREAM socket\n    which can handle both AF_INET and AF_INET6 (IPv4 / IPv6) connections.\n    \"\"\"\n    if not has_ipv6 \\\n            or not hasattr(_socket, 'IPPROTO_IPV6') \\\n            or not hasattr(_socket, 'IPV6_V6ONLY'):\n        return False\n    try:\n        with socket(AF_INET6, SOCK_STREAM) as sock:\n            sock.setsockopt(IPPROTO_IPV6, IPV6_V6ONLY, 0)\n            return True\n    except error:\n        return False\n\n\ndef create_server(address, *, family=AF_INET, backlog=None, reuse_port=False,\n                  dualstack_ipv6=False):\n    \"\"\"Convenience function which creates a SOCK_STREAM type socket\n    bound to *address* (a 2-tuple (host, port)) and return the socket\n    object.\n\n    *family* should be either AF_INET or AF_INET6.\n    *backlog* is the queue size passed to socket.listen().\n    *reuse_port* dictates whether to use the SO_REUSEPORT socket option.\n    *dualstack_ipv6*: if true and the platform supports it, it will\n    create an AF_INET6 socket able to accept both IPv4 or IPv6\n    connections. When false it will explicitly disable this option on\n    platforms that enable it by default (e.g. Linux).\n\n    >>> with create_server(('', 8000)) as server:\n    ...     while True:\n    ...         conn, addr = server.accept()\n    ...         # handle new connection\n    \"\"\"\n    if reuse_port and not hasattr(_socket, \"SO_REUSEPORT\"):\n        raise ValueError(\"SO_REUSEPORT not supported on this platform\")\n    if dualstack_ipv6:\n        if not has_dualstack_ipv6():\n            raise ValueError(\"dualstack_ipv6 not supported on this platform\")\n        if family != AF_INET6:\n            raise ValueError(\"dualstack_ipv6 requires AF_INET6 family\")\n    sock = socket(family, SOCK_STREAM)\n    try:\n        # Note about Windows. We don't set SO_REUSEADDR because:\n        # 1) It's unnecessary: bind() will succeed even in case of a\n        # previous closed socket on the same address and still in\n        # TIME_WAIT state.\n        # 2) If set, another socket is free to bind() on the same\n        # address, effectively preventing this one from accepting\n        # connections. Also, it may set the process in a state where\n        # it'll no longer respond to any signals or graceful kills.\n        # See: msdn2.microsoft.com/en-us/library/ms740621(VS.85).aspx\n        if os.name not in ('nt', 'cygwin') and \\\n                hasattr(_socket, 'SO_REUSEADDR'):\n            try:\n                sock.setsockopt(SOL_SOCKET, SO_REUSEADDR, 1)\n            except error:\n                # Fail later on bind(), for platforms which may not\n                # support this option.\n                pass\n        if reuse_port:\n            sock.setsockopt(SOL_SOCKET, SO_REUSEPORT, 1)\n        if has_ipv6 and family == AF_INET6:\n            if dualstack_ipv6:\n                sock.setsockopt(IPPROTO_IPV6, IPV6_V6ONLY, 0)\n            elif hasattr(_socket, \"IPV6_V6ONLY\") and \\\n                    hasattr(_socket, \"IPPROTO_IPV6\"):\n                sock.setsockopt(IPPROTO_IPV6, IPV6_V6ONLY, 1)\n        try:\n            sock.bind(address)\n        except error as err:\n            msg = '%s (while attempting to bind on address %r)' % \\\n                (err.strerror, address)\n            raise error(err.errno, msg) from None\n        if backlog is None:\n            sock.listen()\n        else:\n            sock.listen(backlog)\n        return sock\n    except error:\n        sock.close()\n        raise\n\n\ndef getaddrinfo(host, port, family=0, type=0, proto=0, flags=0):\n    \"\"\"Resolve host and port into list of address info entries.\n\n    Translate the host/port argument into a sequence of 5-tuples that contain\n    all the necessary arguments for creating a socket connected to that service.\n    host is a domain name, a string representation of an IPv4/v6 address or\n    None. port is a string service name such as 'http', a numeric port number or\n    None. By passing None as the value of host and port, you can pass NULL to\n    the underlying C API.\n\n    The family, type and proto arguments can be optionally specified in order to\n    narrow the list of addresses returned. Passing zero as a value for each of\n    these arguments selects the full range of results.\n    \"\"\"\n    # We override this function since we want to translate the numeric family\n    # and socket type values to enum constants.\n    addrlist = []\n    for res in _socket.getaddrinfo(host, port, family, type, proto, flags):\n        af, socktype, proto, canonname, sa = res\n        addrlist.append((_intenum_converter(af, AddressFamily),\n                         _intenum_converter(socktype, SocketKind),\n                         proto, canonname, sa))\n    return addrlist\n"
  },
  {
    "path": "rd/usr/lib/python3.8/socketserver.py",
    "content": "\"\"\"Generic socket server classes.\n\nThis module tries to capture the various aspects of defining a server:\n\nFor socket-based servers:\n\n- address family:\n        - AF_INET{,6}: IP (Internet Protocol) sockets (default)\n        - AF_UNIX: Unix domain sockets\n        - others, e.g. AF_DECNET are conceivable (see <socket.h>\n- socket type:\n        - SOCK_STREAM (reliable stream, e.g. TCP)\n        - SOCK_DGRAM (datagrams, e.g. UDP)\n\nFor request-based servers (including socket-based):\n\n- client address verification before further looking at the request\n        (This is actually a hook for any processing that needs to look\n         at the request before anything else, e.g. logging)\n- how to handle multiple requests:\n        - synchronous (one request is handled at a time)\n        - forking (each request is handled by a new process)\n        - threading (each request is handled by a new thread)\n\nThe classes in this module favor the server type that is simplest to\nwrite: a synchronous TCP/IP server.  This is bad class design, but\nsaves some typing.  (There's also the issue that a deep class hierarchy\nslows down method lookups.)\n\nThere are five classes in an inheritance diagram, four of which represent\nsynchronous servers of four types:\n\n        +------------+\n        | BaseServer |\n        +------------+\n              |\n              v\n        +-----------+        +------------------+\n        | TCPServer |------->| UnixStreamServer |\n        +-----------+        +------------------+\n              |\n              v\n        +-----------+        +--------------------+\n        | UDPServer |------->| UnixDatagramServer |\n        +-----------+        +--------------------+\n\nNote that UnixDatagramServer derives from UDPServer, not from\nUnixStreamServer -- the only difference between an IP and a Unix\nstream server is the address family, which is simply repeated in both\nunix server classes.\n\nForking and threading versions of each type of server can be created\nusing the ForkingMixIn and ThreadingMixIn mix-in classes.  For\ninstance, a threading UDP server class is created as follows:\n\n        class ThreadingUDPServer(ThreadingMixIn, UDPServer): pass\n\nThe Mix-in class must come first, since it overrides a method defined\nin UDPServer! Setting the various member variables also changes\nthe behavior of the underlying server mechanism.\n\nTo implement a service, you must derive a class from\nBaseRequestHandler and redefine its handle() method.  You can then run\nvarious versions of the service by combining one of the server classes\nwith your request handler class.\n\nThe request handler class must be different for datagram or stream\nservices.  This can be hidden by using the request handler\nsubclasses StreamRequestHandler or DatagramRequestHandler.\n\nOf course, you still have to use your head!\n\nFor instance, it makes no sense to use a forking server if the service\ncontains state in memory that can be modified by requests (since the\nmodifications in the child process would never reach the initial state\nkept in the parent process and passed to each child).  In this case,\nyou can use a threading server, but you will probably have to use\nlocks to avoid two requests that come in nearly simultaneous to apply\nconflicting changes to the server state.\n\nOn the other hand, if you are building e.g. an HTTP server, where all\ndata is stored externally (e.g. in the file system), a synchronous\nclass will essentially render the service \"deaf\" while one request is\nbeing handled -- which may be for a very long time if a client is slow\nto read all the data it has requested.  Here a threading or forking\nserver is appropriate.\n\nIn some cases, it may be appropriate to process part of a request\nsynchronously, but to finish processing in a forked child depending on\nthe request data.  This can be implemented by using a synchronous\nserver and doing an explicit fork in the request handler class\nhandle() method.\n\nAnother approach to handling multiple simultaneous requests in an\nenvironment that supports neither threads nor fork (or where these are\ntoo expensive or inappropriate for the service) is to maintain an\nexplicit table of partially finished requests and to use a selector to\ndecide which request to work on next (or whether to handle a new\nincoming request).  This is particularly important for stream services\nwhere each client can potentially be connected for a long time (if\nthreads or subprocesses cannot be used).\n\nFuture work:\n- Standard classes for Sun RPC (which uses either UDP or TCP)\n- Standard mix-in classes to implement various authentication\n  and encryption schemes\n\nXXX Open problems:\n- What to do with out-of-band data?\n\nBaseServer:\n- split generic \"request\" functionality out into BaseServer class.\n  Copyright (C) 2000  Luke Kenneth Casson Leighton <lkcl@samba.org>\n\n  example: read entries from a SQL database (requires overriding\n  get_request() to return a table entry from the database).\n  entry is processed by a RequestHandlerClass.\n\n\"\"\"\n\n# Author of the BaseServer patch: Luke Kenneth Casson Leighton\n\n__version__ = \"0.4\"\n\n\nimport socket\nimport selectors\nimport os\nimport sys\nimport threading\nfrom io import BufferedIOBase\nfrom time import monotonic as time\n\n__all__ = [\"BaseServer\", \"TCPServer\", \"UDPServer\",\n           \"ThreadingUDPServer\", \"ThreadingTCPServer\",\n           \"BaseRequestHandler\", \"StreamRequestHandler\",\n           \"DatagramRequestHandler\", \"ThreadingMixIn\"]\nif hasattr(os, \"fork\"):\n    __all__.extend([\"ForkingUDPServer\",\"ForkingTCPServer\", \"ForkingMixIn\"])\nif hasattr(socket, \"AF_UNIX\"):\n    __all__.extend([\"UnixStreamServer\",\"UnixDatagramServer\",\n                    \"ThreadingUnixStreamServer\",\n                    \"ThreadingUnixDatagramServer\"])\n\n# poll/select have the advantage of not requiring any extra file descriptor,\n# contrarily to epoll/kqueue (also, they require a single syscall).\nif hasattr(selectors, 'PollSelector'):\n    _ServerSelector = selectors.PollSelector\nelse:\n    _ServerSelector = selectors.SelectSelector\n\n\nclass BaseServer:\n\n    \"\"\"Base class for server classes.\n\n    Methods for the caller:\n\n    - __init__(server_address, RequestHandlerClass)\n    - serve_forever(poll_interval=0.5)\n    - shutdown()\n    - handle_request()  # if you do not use serve_forever()\n    - fileno() -> int   # for selector\n\n    Methods that may be overridden:\n\n    - server_bind()\n    - server_activate()\n    - get_request() -> request, client_address\n    - handle_timeout()\n    - verify_request(request, client_address)\n    - server_close()\n    - process_request(request, client_address)\n    - shutdown_request(request)\n    - close_request(request)\n    - service_actions()\n    - handle_error()\n\n    Methods for derived classes:\n\n    - finish_request(request, client_address)\n\n    Class variables that may be overridden by derived classes or\n    instances:\n\n    - timeout\n    - address_family\n    - socket_type\n    - allow_reuse_address\n\n    Instance variables:\n\n    - RequestHandlerClass\n    - socket\n\n    \"\"\"\n\n    timeout = None\n\n    def __init__(self, server_address, RequestHandlerClass):\n        \"\"\"Constructor.  May be extended, do not override.\"\"\"\n        self.server_address = server_address\n        self.RequestHandlerClass = RequestHandlerClass\n        self.__is_shut_down = threading.Event()\n        self.__shutdown_request = False\n\n    def server_activate(self):\n        \"\"\"Called by constructor to activate the server.\n\n        May be overridden.\n\n        \"\"\"\n        pass\n\n    def serve_forever(self, poll_interval=0.5):\n        \"\"\"Handle one request at a time until shutdown.\n\n        Polls for shutdown every poll_interval seconds. Ignores\n        self.timeout. If you need to do periodic tasks, do them in\n        another thread.\n        \"\"\"\n        self.__is_shut_down.clear()\n        try:\n            # XXX: Consider using another file descriptor or connecting to the\n            # socket to wake this up instead of polling. Polling reduces our\n            # responsiveness to a shutdown request and wastes cpu at all other\n            # times.\n            with _ServerSelector() as selector:\n                selector.register(self, selectors.EVENT_READ)\n\n                while not self.__shutdown_request:\n                    ready = selector.select(poll_interval)\n                    # bpo-35017: shutdown() called during select(), exit immediately.\n                    if self.__shutdown_request:\n                        break\n                    if ready:\n                        self._handle_request_noblock()\n\n                    self.service_actions()\n        finally:\n            self.__shutdown_request = False\n            self.__is_shut_down.set()\n\n    def shutdown(self):\n        \"\"\"Stops the serve_forever loop.\n\n        Blocks until the loop has finished. This must be called while\n        serve_forever() is running in another thread, or it will\n        deadlock.\n        \"\"\"\n        self.__shutdown_request = True\n        self.__is_shut_down.wait()\n\n    def service_actions(self):\n        \"\"\"Called by the serve_forever() loop.\n\n        May be overridden by a subclass / Mixin to implement any code that\n        needs to be run during the loop.\n        \"\"\"\n        pass\n\n    # The distinction between handling, getting, processing and finishing a\n    # request is fairly arbitrary.  Remember:\n    #\n    # - handle_request() is the top-level call.  It calls selector.select(),\n    #   get_request(), verify_request() and process_request()\n    # - get_request() is different for stream or datagram sockets\n    # - process_request() is the place that may fork a new process or create a\n    #   new thread to finish the request\n    # - finish_request() instantiates the request handler class; this\n    #   constructor will handle the request all by itself\n\n    def handle_request(self):\n        \"\"\"Handle one request, possibly blocking.\n\n        Respects self.timeout.\n        \"\"\"\n        # Support people who used socket.settimeout() to escape\n        # handle_request before self.timeout was available.\n        timeout = self.socket.gettimeout()\n        if timeout is None:\n            timeout = self.timeout\n        elif self.timeout is not None:\n            timeout = min(timeout, self.timeout)\n        if timeout is not None:\n            deadline = time() + timeout\n\n        # Wait until a request arrives or the timeout expires - the loop is\n        # necessary to accommodate early wakeups due to EINTR.\n        with _ServerSelector() as selector:\n            selector.register(self, selectors.EVENT_READ)\n\n            while True:\n                ready = selector.select(timeout)\n                if ready:\n                    return self._handle_request_noblock()\n                else:\n                    if timeout is not None:\n                        timeout = deadline - time()\n                        if timeout < 0:\n                            return self.handle_timeout()\n\n    def _handle_request_noblock(self):\n        \"\"\"Handle one request, without blocking.\n\n        I assume that selector.select() has returned that the socket is\n        readable before this function was called, so there should be no risk of\n        blocking in get_request().\n        \"\"\"\n        try:\n            request, client_address = self.get_request()\n        except OSError:\n            return\n        if self.verify_request(request, client_address):\n            try:\n                self.process_request(request, client_address)\n            except Exception:\n                self.handle_error(request, client_address)\n                self.shutdown_request(request)\n            except:\n                self.shutdown_request(request)\n                raise\n        else:\n            self.shutdown_request(request)\n\n    def handle_timeout(self):\n        \"\"\"Called if no new request arrives within self.timeout.\n\n        Overridden by ForkingMixIn.\n        \"\"\"\n        pass\n\n    def verify_request(self, request, client_address):\n        \"\"\"Verify the request.  May be overridden.\n\n        Return True if we should proceed with this request.\n\n        \"\"\"\n        return True\n\n    def process_request(self, request, client_address):\n        \"\"\"Call finish_request.\n\n        Overridden by ForkingMixIn and ThreadingMixIn.\n\n        \"\"\"\n        self.finish_request(request, client_address)\n        self.shutdown_request(request)\n\n    def server_close(self):\n        \"\"\"Called to clean-up the server.\n\n        May be overridden.\n\n        \"\"\"\n        pass\n\n    def finish_request(self, request, client_address):\n        \"\"\"Finish one request by instantiating RequestHandlerClass.\"\"\"\n        self.RequestHandlerClass(request, client_address, self)\n\n    def shutdown_request(self, request):\n        \"\"\"Called to shutdown and close an individual request.\"\"\"\n        self.close_request(request)\n\n    def close_request(self, request):\n        \"\"\"Called to clean up an individual request.\"\"\"\n        pass\n\n    def handle_error(self, request, client_address):\n        \"\"\"Handle an error gracefully.  May be overridden.\n\n        The default is to print a traceback and continue.\n\n        \"\"\"\n        print('-'*40, file=sys.stderr)\n        print('Exception happened during processing of request from',\n            client_address, file=sys.stderr)\n        import traceback\n        traceback.print_exc()\n        print('-'*40, file=sys.stderr)\n\n    def __enter__(self):\n        return self\n\n    def __exit__(self, *args):\n        self.server_close()\n\n\nclass TCPServer(BaseServer):\n\n    \"\"\"Base class for various socket-based server classes.\n\n    Defaults to synchronous IP stream (i.e., TCP).\n\n    Methods for the caller:\n\n    - __init__(server_address, RequestHandlerClass, bind_and_activate=True)\n    - serve_forever(poll_interval=0.5)\n    - shutdown()\n    - handle_request()  # if you don't use serve_forever()\n    - fileno() -> int   # for selector\n\n    Methods that may be overridden:\n\n    - server_bind()\n    - server_activate()\n    - get_request() -> request, client_address\n    - handle_timeout()\n    - verify_request(request, client_address)\n    - process_request(request, client_address)\n    - shutdown_request(request)\n    - close_request(request)\n    - handle_error()\n\n    Methods for derived classes:\n\n    - finish_request(request, client_address)\n\n    Class variables that may be overridden by derived classes or\n    instances:\n\n    - timeout\n    - address_family\n    - socket_type\n    - request_queue_size (only for stream sockets)\n    - allow_reuse_address\n\n    Instance variables:\n\n    - server_address\n    - RequestHandlerClass\n    - socket\n\n    \"\"\"\n\n    address_family = socket.AF_INET\n\n    socket_type = socket.SOCK_STREAM\n\n    request_queue_size = 5\n\n    allow_reuse_address = False\n\n    def __init__(self, server_address, RequestHandlerClass, bind_and_activate=True):\n        \"\"\"Constructor.  May be extended, do not override.\"\"\"\n        BaseServer.__init__(self, server_address, RequestHandlerClass)\n        self.socket = socket.socket(self.address_family,\n                                    self.socket_type)\n        if bind_and_activate:\n            try:\n                self.server_bind()\n                self.server_activate()\n            except:\n                self.server_close()\n                raise\n\n    def server_bind(self):\n        \"\"\"Called by constructor to bind the socket.\n\n        May be overridden.\n\n        \"\"\"\n        if self.allow_reuse_address:\n            self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)\n        self.socket.bind(self.server_address)\n        self.server_address = self.socket.getsockname()\n\n    def server_activate(self):\n        \"\"\"Called by constructor to activate the server.\n\n        May be overridden.\n\n        \"\"\"\n        self.socket.listen(self.request_queue_size)\n\n    def server_close(self):\n        \"\"\"Called to clean-up the server.\n\n        May be overridden.\n\n        \"\"\"\n        self.socket.close()\n\n    def fileno(self):\n        \"\"\"Return socket file number.\n\n        Interface required by selector.\n\n        \"\"\"\n        return self.socket.fileno()\n\n    def get_request(self):\n        \"\"\"Get the request and client address from the socket.\n\n        May be overridden.\n\n        \"\"\"\n        return self.socket.accept()\n\n    def shutdown_request(self, request):\n        \"\"\"Called to shutdown and close an individual request.\"\"\"\n        try:\n            #explicitly shutdown.  socket.close() merely releases\n            #the socket and waits for GC to perform the actual close.\n            request.shutdown(socket.SHUT_WR)\n        except OSError:\n            pass #some platforms may raise ENOTCONN here\n        self.close_request(request)\n\n    def close_request(self, request):\n        \"\"\"Called to clean up an individual request.\"\"\"\n        request.close()\n\n\nclass UDPServer(TCPServer):\n\n    \"\"\"UDP server class.\"\"\"\n\n    allow_reuse_address = False\n\n    socket_type = socket.SOCK_DGRAM\n\n    max_packet_size = 8192\n\n    def get_request(self):\n        data, client_addr = self.socket.recvfrom(self.max_packet_size)\n        return (data, self.socket), client_addr\n\n    def server_activate(self):\n        # No need to call listen() for UDP.\n        pass\n\n    def shutdown_request(self, request):\n        # No need to shutdown anything.\n        self.close_request(request)\n\n    def close_request(self, request):\n        # No need to close anything.\n        pass\n\nif hasattr(os, \"fork\"):\n    class ForkingMixIn:\n        \"\"\"Mix-in class to handle each request in a new process.\"\"\"\n\n        timeout = 300\n        active_children = None\n        max_children = 40\n        # If true, server_close() waits until all child processes complete.\n        block_on_close = True\n\n        def collect_children(self, *, blocking=False):\n            \"\"\"Internal routine to wait for children that have exited.\"\"\"\n            if self.active_children is None:\n                return\n\n            # If we're above the max number of children, wait and reap them until\n            # we go back below threshold. Note that we use waitpid(-1) below to be\n            # able to collect children in size(<defunct children>) syscalls instead\n            # of size(<children>): the downside is that this might reap children\n            # which we didn't spawn, which is why we only resort to this when we're\n            # above max_children.\n            while len(self.active_children) >= self.max_children:\n                try:\n                    pid, _ = os.waitpid(-1, 0)\n                    self.active_children.discard(pid)\n                except ChildProcessError:\n                    # we don't have any children, we're done\n                    self.active_children.clear()\n                except OSError:\n                    break\n\n            # Now reap all defunct children.\n            for pid in self.active_children.copy():\n                try:\n                    flags = 0 if blocking else os.WNOHANG\n                    pid, _ = os.waitpid(pid, flags)\n                    # if the child hasn't exited yet, pid will be 0 and ignored by\n                    # discard() below\n                    self.active_children.discard(pid)\n                except ChildProcessError:\n                    # someone else reaped it\n                    self.active_children.discard(pid)\n                except OSError:\n                    pass\n\n        def handle_timeout(self):\n            \"\"\"Wait for zombies after self.timeout seconds of inactivity.\n\n            May be extended, do not override.\n            \"\"\"\n            self.collect_children()\n\n        def service_actions(self):\n            \"\"\"Collect the zombie child processes regularly in the ForkingMixIn.\n\n            service_actions is called in the BaseServer's serve_forever loop.\n            \"\"\"\n            self.collect_children()\n\n        def process_request(self, request, client_address):\n            \"\"\"Fork a new subprocess to process the request.\"\"\"\n            pid = os.fork()\n            if pid:\n                # Parent process\n                if self.active_children is None:\n                    self.active_children = set()\n                self.active_children.add(pid)\n                self.close_request(request)\n                return\n            else:\n                # Child process.\n                # This must never return, hence os._exit()!\n                status = 1\n                try:\n                    self.finish_request(request, client_address)\n                    status = 0\n                except Exception:\n                    self.handle_error(request, client_address)\n                finally:\n                    try:\n                        self.shutdown_request(request)\n                    finally:\n                        os._exit(status)\n\n        def server_close(self):\n            super().server_close()\n            self.collect_children(blocking=self.block_on_close)\n\n\nclass ThreadingMixIn:\n    \"\"\"Mix-in class to handle each request in a new thread.\"\"\"\n\n    # Decides how threads will act upon termination of the\n    # main process\n    daemon_threads = False\n    # If true, server_close() waits until all non-daemonic threads terminate.\n    block_on_close = True\n    # For non-daemonic threads, list of threading.Threading objects\n    # used by server_close() to wait for all threads completion.\n    _threads = None\n\n    def process_request_thread(self, request, client_address):\n        \"\"\"Same as in BaseServer but as a thread.\n\n        In addition, exception handling is done here.\n\n        \"\"\"\n        try:\n            self.finish_request(request, client_address)\n        except Exception:\n            self.handle_error(request, client_address)\n        finally:\n            self.shutdown_request(request)\n\n    def process_request(self, request, client_address):\n        \"\"\"Start a new thread to process the request.\"\"\"\n        t = threading.Thread(target = self.process_request_thread,\n                             args = (request, client_address))\n        t.daemon = self.daemon_threads\n        if not t.daemon and self.block_on_close:\n            if self._threads is None:\n                self._threads = []\n            self._threads.append(t)\n        t.start()\n\n    def server_close(self):\n        super().server_close()\n        if self.block_on_close:\n            threads = self._threads\n            self._threads = None\n            if threads:\n                for thread in threads:\n                    thread.join()\n\n\nif hasattr(os, \"fork\"):\n    class ForkingUDPServer(ForkingMixIn, UDPServer): pass\n    class ForkingTCPServer(ForkingMixIn, TCPServer): pass\n\nclass ThreadingUDPServer(ThreadingMixIn, UDPServer): pass\nclass ThreadingTCPServer(ThreadingMixIn, TCPServer): pass\n\nif hasattr(socket, 'AF_UNIX'):\n\n    class UnixStreamServer(TCPServer):\n        address_family = socket.AF_UNIX\n\n    class UnixDatagramServer(UDPServer):\n        address_family = socket.AF_UNIX\n\n    class ThreadingUnixStreamServer(ThreadingMixIn, UnixStreamServer): pass\n\n    class ThreadingUnixDatagramServer(ThreadingMixIn, UnixDatagramServer): pass\n\nclass BaseRequestHandler:\n\n    \"\"\"Base class for request handler classes.\n\n    This class is instantiated for each request to be handled.  The\n    constructor sets the instance variables request, client_address\n    and server, and then calls the handle() method.  To implement a\n    specific service, all you need to do is to derive a class which\n    defines a handle() method.\n\n    The handle() method can find the request as self.request, the\n    client address as self.client_address, and the server (in case it\n    needs access to per-server information) as self.server.  Since a\n    separate instance is created for each request, the handle() method\n    can define other arbitrary instance variables.\n\n    \"\"\"\n\n    def __init__(self, request, client_address, server):\n        self.request = request\n        self.client_address = client_address\n        self.server = server\n        self.setup()\n        try:\n            self.handle()\n        finally:\n            self.finish()\n\n    def setup(self):\n        pass\n\n    def handle(self):\n        pass\n\n    def finish(self):\n        pass\n\n\n# The following two classes make it possible to use the same service\n# class for stream or datagram servers.\n# Each class sets up these instance variables:\n# - rfile: a file object from which receives the request is read\n# - wfile: a file object to which the reply is written\n# When the handle() method returns, wfile is flushed properly\n\n\nclass StreamRequestHandler(BaseRequestHandler):\n\n    \"\"\"Define self.rfile and self.wfile for stream sockets.\"\"\"\n\n    # Default buffer sizes for rfile, wfile.\n    # We default rfile to buffered because otherwise it could be\n    # really slow for large data (a getc() call per byte); we make\n    # wfile unbuffered because (a) often after a write() we want to\n    # read and we need to flush the line; (b) big writes to unbuffered\n    # files are typically optimized by stdio even when big reads\n    # aren't.\n    rbufsize = -1\n    wbufsize = 0\n\n    # A timeout to apply to the request socket, if not None.\n    timeout = None\n\n    # Disable nagle algorithm for this socket, if True.\n    # Use only when wbufsize != 0, to avoid small packets.\n    disable_nagle_algorithm = False\n\n    def setup(self):\n        self.connection = self.request\n        if self.timeout is not None:\n            self.connection.settimeout(self.timeout)\n        if self.disable_nagle_algorithm:\n            self.connection.setsockopt(socket.IPPROTO_TCP,\n                                       socket.TCP_NODELAY, True)\n        self.rfile = self.connection.makefile('rb', self.rbufsize)\n        if self.wbufsize == 0:\n            self.wfile = _SocketWriter(self.connection)\n        else:\n            self.wfile = self.connection.makefile('wb', self.wbufsize)\n\n    def finish(self):\n        if not self.wfile.closed:\n            try:\n                self.wfile.flush()\n            except socket.error:\n                # A final socket error may have occurred here, such as\n                # the local error ECONNABORTED.\n                pass\n        self.wfile.close()\n        self.rfile.close()\n\nclass _SocketWriter(BufferedIOBase):\n    \"\"\"Simple writable BufferedIOBase implementation for a socket\n\n    Does not hold data in a buffer, avoiding any need to call flush().\"\"\"\n\n    def __init__(self, sock):\n        self._sock = sock\n\n    def writable(self):\n        return True\n\n    def write(self, b):\n        self._sock.sendall(b)\n        with memoryview(b) as view:\n            return view.nbytes\n\n    def fileno(self):\n        return self._sock.fileno()\n\nclass DatagramRequestHandler(BaseRequestHandler):\n\n    \"\"\"Define self.rfile and self.wfile for datagram sockets.\"\"\"\n\n    def setup(self):\n        from io import BytesIO\n        self.packet, self.socket = self.request\n        self.rfile = BytesIO(self.packet)\n        self.wfile = BytesIO()\n\n    def finish(self):\n        self.socket.sendto(self.wfile.getvalue(), self.client_address)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/sqlite3/__init__.py",
    "content": "# pysqlite2/__init__.py: the pysqlite2 package.\n#\n# Copyright (C) 2005 Gerhard Häring <gh@ghaering.de>\n#\n# This file is part of pysqlite.\n#\n# This software is provided 'as-is', without any express or implied\n# warranty.  In no event will the authors be held liable for any damages\n# arising from the use of this software.\n#\n# Permission is granted to anyone to use this software for any purpose,\n# including commercial applications, and to alter it and redistribute it\n# freely, subject to the following restrictions:\n#\n# 1. The origin of this software must not be misrepresented; you must not\n#    claim that you wrote the original software. If you use this software\n#    in a product, an acknowledgment in the product documentation would be\n#    appreciated but is not required.\n# 2. Altered source versions must be plainly marked as such, and must not be\n#    misrepresented as being the original software.\n# 3. This notice may not be removed or altered from any source distribution.\n\nfrom sqlite3.dbapi2 import *\n"
  },
  {
    "path": "rd/usr/lib/python3.8/sqlite3/dbapi2.py",
    "content": "# pysqlite2/dbapi2.py: the DB-API 2.0 interface\n#\n# Copyright (C) 2004-2005 Gerhard Häring <gh@ghaering.de>\n#\n# This file is part of pysqlite.\n#\n# This software is provided 'as-is', without any express or implied\n# warranty.  In no event will the authors be held liable for any damages\n# arising from the use of this software.\n#\n# Permission is granted to anyone to use this software for any purpose,\n# including commercial applications, and to alter it and redistribute it\n# freely, subject to the following restrictions:\n#\n# 1. The origin of this software must not be misrepresented; you must not\n#    claim that you wrote the original software. If you use this software\n#    in a product, an acknowledgment in the product documentation would be\n#    appreciated but is not required.\n# 2. Altered source versions must be plainly marked as such, and must not be\n#    misrepresented as being the original software.\n# 3. This notice may not be removed or altered from any source distribution.\n\nimport datetime\nimport time\nimport collections.abc\n\nfrom _sqlite3 import *\n\nparamstyle = \"qmark\"\n\nthreadsafety = 1\n\napilevel = \"2.0\"\n\nDate = datetime.date\n\nTime = datetime.time\n\nTimestamp = datetime.datetime\n\ndef DateFromTicks(ticks):\n    return Date(*time.localtime(ticks)[:3])\n\ndef TimeFromTicks(ticks):\n    return Time(*time.localtime(ticks)[3:6])\n\ndef TimestampFromTicks(ticks):\n    return Timestamp(*time.localtime(ticks)[:6])\n\nversion_info = tuple([int(x) for x in version.split(\".\")])\nsqlite_version_info = tuple([int(x) for x in sqlite_version.split(\".\")])\n\nBinary = memoryview\ncollections.abc.Sequence.register(Row)\n\ndef register_adapters_and_converters():\n    def adapt_date(val):\n        return val.isoformat()\n\n    def adapt_datetime(val):\n        return val.isoformat(\" \")\n\n    def convert_date(val):\n        return datetime.date(*map(int, val.split(b\"-\")))\n\n    def convert_timestamp(val):\n        datepart, timepart = val.split(b\" \")\n        year, month, day = map(int, datepart.split(b\"-\"))\n        timepart_full = timepart.split(b\".\")\n        hours, minutes, seconds = map(int, timepart_full[0].split(b\":\"))\n        if len(timepart_full) == 2:\n            microseconds = int('{:0<6.6}'.format(timepart_full[1].decode()))\n        else:\n            microseconds = 0\n\n        val = datetime.datetime(year, month, day, hours, minutes, seconds, microseconds)\n        return val\n\n\n    register_adapter(datetime.date, adapt_date)\n    register_adapter(datetime.datetime, adapt_datetime)\n    register_converter(\"date\", convert_date)\n    register_converter(\"timestamp\", convert_timestamp)\n\nregister_adapters_and_converters()\n\n# Clean up namespace\n\ndel(register_adapters_and_converters)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/sqlite3/dump.py",
    "content": "# Mimic the sqlite3 console shell's .dump command\n# Author: Paul Kippes <kippesp@gmail.com>\n\n# Every identifier in sql is quoted based on a comment in sqlite\n# documentation \"SQLite adds new keywords from time to time when it\n# takes on new features. So to prevent your code from being broken by\n# future enhancements, you should normally quote any identifier that\n# is an English language word, even if you do not have to.\"\n\ndef _iterdump(connection):\n    \"\"\"\n    Returns an iterator to the dump of the database in an SQL text format.\n\n    Used to produce an SQL dump of the database.  Useful to save an in-memory\n    database for later restoration.  This function should not be called\n    directly but instead called from the Connection method, iterdump().\n    \"\"\"\n\n    cu = connection.cursor()\n    yield('BEGIN TRANSACTION;')\n\n    # sqlite_master table contains the SQL CREATE statements for the database.\n    q = \"\"\"\n        SELECT \"name\", \"type\", \"sql\"\n        FROM \"sqlite_master\"\n            WHERE \"sql\" NOT NULL AND\n            \"type\" == 'table'\n            ORDER BY \"name\"\n        \"\"\"\n    schema_res = cu.execute(q)\n    for table_name, type, sql in schema_res.fetchall():\n        if table_name == 'sqlite_sequence':\n            yield('DELETE FROM \"sqlite_sequence\";')\n        elif table_name == 'sqlite_stat1':\n            yield('ANALYZE \"sqlite_master\";')\n        elif table_name.startswith('sqlite_'):\n            continue\n        # NOTE: Virtual table support not implemented\n        #elif sql.startswith('CREATE VIRTUAL TABLE'):\n        #    qtable = table_name.replace(\"'\", \"''\")\n        #    yield(\"INSERT INTO sqlite_master(type,name,tbl_name,rootpage,sql)\"\\\n        #        \"VALUES('table','{0}','{0}',0,'{1}');\".format(\n        #        qtable,\n        #        sql.replace(\"''\")))\n        else:\n            yield('{0};'.format(sql))\n\n        # Build the insert statement for each row of the current table\n        table_name_ident = table_name.replace('\"', '\"\"')\n        res = cu.execute('PRAGMA table_info(\"{0}\")'.format(table_name_ident))\n        column_names = [str(table_info[1]) for table_info in res.fetchall()]\n        q = \"\"\"SELECT 'INSERT INTO \"{0}\" VALUES({1})' FROM \"{0}\";\"\"\".format(\n            table_name_ident,\n            \",\".join(\"\"\"'||quote(\"{0}\")||'\"\"\".format(col.replace('\"', '\"\"')) for col in column_names))\n        query_res = cu.execute(q)\n        for row in query_res:\n            yield(\"{0};\".format(row[0]))\n\n    # Now when the type is 'index', 'trigger', or 'view'\n    q = \"\"\"\n        SELECT \"name\", \"type\", \"sql\"\n        FROM \"sqlite_master\"\n            WHERE \"sql\" NOT NULL AND\n            \"type\" IN ('index', 'trigger', 'view')\n        \"\"\"\n    schema_res = cu.execute(q)\n    for name, type, sql in schema_res.fetchall():\n        yield('{0};'.format(sql))\n\n    yield('COMMIT;')\n"
  },
  {
    "path": "rd/usr/lib/python3.8/sre_compile.py",
    "content": "#\n# Secret Labs' Regular Expression Engine\n#\n# convert template to internal format\n#\n# Copyright (c) 1997-2001 by Secret Labs AB.  All rights reserved.\n#\n# See the sre.py file for information on usage and redistribution.\n#\n\n\"\"\"Internal support module for sre\"\"\"\n\nimport _sre\nimport sre_parse\nfrom sre_constants import *\n\nassert _sre.MAGIC == MAGIC, \"SRE module mismatch\"\n\n_LITERAL_CODES = {LITERAL, NOT_LITERAL}\n_REPEATING_CODES = {REPEAT, MIN_REPEAT, MAX_REPEAT}\n_SUCCESS_CODES = {SUCCESS, FAILURE}\n_ASSERT_CODES = {ASSERT, ASSERT_NOT}\n_UNIT_CODES = _LITERAL_CODES | {ANY, IN}\n\n# Sets of lowercase characters which have the same uppercase.\n_equivalences = (\n    # LATIN SMALL LETTER I, LATIN SMALL LETTER DOTLESS I\n    (0x69, 0x131), # iı\n    # LATIN SMALL LETTER S, LATIN SMALL LETTER LONG S\n    (0x73, 0x17f), # sſ\n    # MICRO SIGN, GREEK SMALL LETTER MU\n    (0xb5, 0x3bc), # µμ\n    # COMBINING GREEK YPOGEGRAMMENI, GREEK SMALL LETTER IOTA, GREEK PROSGEGRAMMENI\n    (0x345, 0x3b9, 0x1fbe), # \\u0345ιι\n    # GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS, GREEK SMALL LETTER IOTA WITH DIALYTIKA AND OXIA\n    (0x390, 0x1fd3), # ΐΐ\n    # GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS, GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND OXIA\n    (0x3b0, 0x1fe3), # ΰΰ\n    # GREEK SMALL LETTER BETA, GREEK BETA SYMBOL\n    (0x3b2, 0x3d0), # βϐ\n    # GREEK SMALL LETTER EPSILON, GREEK LUNATE EPSILON SYMBOL\n    (0x3b5, 0x3f5), # εϵ\n    # GREEK SMALL LETTER THETA, GREEK THETA SYMBOL\n    (0x3b8, 0x3d1), # θϑ\n    # GREEK SMALL LETTER KAPPA, GREEK KAPPA SYMBOL\n    (0x3ba, 0x3f0), # κϰ\n    # GREEK SMALL LETTER PI, GREEK PI SYMBOL\n    (0x3c0, 0x3d6), # πϖ\n    # GREEK SMALL LETTER RHO, GREEK RHO SYMBOL\n    (0x3c1, 0x3f1), # ρϱ\n    # GREEK SMALL LETTER FINAL SIGMA, GREEK SMALL LETTER SIGMA\n    (0x3c2, 0x3c3), # ςσ\n    # GREEK SMALL LETTER PHI, GREEK PHI SYMBOL\n    (0x3c6, 0x3d5), # φϕ\n    # LATIN SMALL LETTER S WITH DOT ABOVE, LATIN SMALL LETTER LONG S WITH DOT ABOVE\n    (0x1e61, 0x1e9b), # ṡẛ\n    # LATIN SMALL LIGATURE LONG S T, LATIN SMALL LIGATURE ST\n    (0xfb05, 0xfb06), # ﬅﬆ\n)\n\n# Maps the lowercase code to lowercase codes which have the same uppercase.\n_ignorecase_fixes = {i: tuple(j for j in t if i != j)\n                     for t in _equivalences for i in t}\n\ndef _combine_flags(flags, add_flags, del_flags,\n                   TYPE_FLAGS=sre_parse.TYPE_FLAGS):\n    if add_flags & TYPE_FLAGS:\n        flags &= ~TYPE_FLAGS\n    return (flags | add_flags) & ~del_flags\n\ndef _compile(code, pattern, flags):\n    # internal: compile a (sub)pattern\n    emit = code.append\n    _len = len\n    LITERAL_CODES = _LITERAL_CODES\n    REPEATING_CODES = _REPEATING_CODES\n    SUCCESS_CODES = _SUCCESS_CODES\n    ASSERT_CODES = _ASSERT_CODES\n    iscased = None\n    tolower = None\n    fixes = None\n    if flags & SRE_FLAG_IGNORECASE and not flags & SRE_FLAG_LOCALE:\n        if flags & SRE_FLAG_UNICODE:\n            iscased = _sre.unicode_iscased\n            tolower = _sre.unicode_tolower\n            fixes = _ignorecase_fixes\n        else:\n            iscased = _sre.ascii_iscased\n            tolower = _sre.ascii_tolower\n    for op, av in pattern:\n        if op in LITERAL_CODES:\n            if not flags & SRE_FLAG_IGNORECASE:\n                emit(op)\n                emit(av)\n            elif flags & SRE_FLAG_LOCALE:\n                emit(OP_LOCALE_IGNORE[op])\n                emit(av)\n            elif not iscased(av):\n                emit(op)\n                emit(av)\n            else:\n                lo = tolower(av)\n                if not fixes:  # ascii\n                    emit(OP_IGNORE[op])\n                    emit(lo)\n                elif lo not in fixes:\n                    emit(OP_UNICODE_IGNORE[op])\n                    emit(lo)\n                else:\n                    emit(IN_UNI_IGNORE)\n                    skip = _len(code); emit(0)\n                    if op is NOT_LITERAL:\n                        emit(NEGATE)\n                    for k in (lo,) + fixes[lo]:\n                        emit(LITERAL)\n                        emit(k)\n                    emit(FAILURE)\n                    code[skip] = _len(code) - skip\n        elif op is IN:\n            charset, hascased = _optimize_charset(av, iscased, tolower, fixes)\n            if flags & SRE_FLAG_IGNORECASE and flags & SRE_FLAG_LOCALE:\n                emit(IN_LOC_IGNORE)\n            elif not hascased:\n                emit(IN)\n            elif not fixes:  # ascii\n                emit(IN_IGNORE)\n            else:\n                emit(IN_UNI_IGNORE)\n            skip = _len(code); emit(0)\n            _compile_charset(charset, flags, code)\n            code[skip] = _len(code) - skip\n        elif op is ANY:\n            if flags & SRE_FLAG_DOTALL:\n                emit(ANY_ALL)\n            else:\n                emit(ANY)\n        elif op in REPEATING_CODES:\n            if flags & SRE_FLAG_TEMPLATE:\n                raise error(\"internal: unsupported template operator %r\" % (op,))\n            if _simple(av[2]):\n                if op is MAX_REPEAT:\n                    emit(REPEAT_ONE)\n                else:\n                    emit(MIN_REPEAT_ONE)\n                skip = _len(code); emit(0)\n                emit(av[0])\n                emit(av[1])\n                _compile(code, av[2], flags)\n                emit(SUCCESS)\n                code[skip] = _len(code) - skip\n            else:\n                emit(REPEAT)\n                skip = _len(code); emit(0)\n                emit(av[0])\n                emit(av[1])\n                _compile(code, av[2], flags)\n                code[skip] = _len(code) - skip\n                if op is MAX_REPEAT:\n                    emit(MAX_UNTIL)\n                else:\n                    emit(MIN_UNTIL)\n        elif op is SUBPATTERN:\n            group, add_flags, del_flags, p = av\n            if group:\n                emit(MARK)\n                emit((group-1)*2)\n            # _compile_info(code, p, _combine_flags(flags, add_flags, del_flags))\n            _compile(code, p, _combine_flags(flags, add_flags, del_flags))\n            if group:\n                emit(MARK)\n                emit((group-1)*2+1)\n        elif op in SUCCESS_CODES:\n            emit(op)\n        elif op in ASSERT_CODES:\n            emit(op)\n            skip = _len(code); emit(0)\n            if av[0] >= 0:\n                emit(0) # look ahead\n            else:\n                lo, hi = av[1].getwidth()\n                if lo != hi:\n                    raise error(\"look-behind requires fixed-width pattern\")\n                emit(lo) # look behind\n            _compile(code, av[1], flags)\n            emit(SUCCESS)\n            code[skip] = _len(code) - skip\n        elif op is CALL:\n            emit(op)\n            skip = _len(code); emit(0)\n            _compile(code, av, flags)\n            emit(SUCCESS)\n            code[skip] = _len(code) - skip\n        elif op is AT:\n            emit(op)\n            if flags & SRE_FLAG_MULTILINE:\n                av = AT_MULTILINE.get(av, av)\n            if flags & SRE_FLAG_LOCALE:\n                av = AT_LOCALE.get(av, av)\n            elif flags & SRE_FLAG_UNICODE:\n                av = AT_UNICODE.get(av, av)\n            emit(av)\n        elif op is BRANCH:\n            emit(op)\n            tail = []\n            tailappend = tail.append\n            for av in av[1]:\n                skip = _len(code); emit(0)\n                # _compile_info(code, av, flags)\n                _compile(code, av, flags)\n                emit(JUMP)\n                tailappend(_len(code)); emit(0)\n                code[skip] = _len(code) - skip\n            emit(FAILURE) # end of branch\n            for tail in tail:\n                code[tail] = _len(code) - tail\n        elif op is CATEGORY:\n            emit(op)\n            if flags & SRE_FLAG_LOCALE:\n                av = CH_LOCALE[av]\n            elif flags & SRE_FLAG_UNICODE:\n                av = CH_UNICODE[av]\n            emit(av)\n        elif op is GROUPREF:\n            if not flags & SRE_FLAG_IGNORECASE:\n                emit(op)\n            elif flags & SRE_FLAG_LOCALE:\n                emit(GROUPREF_LOC_IGNORE)\n            elif not fixes:  # ascii\n                emit(GROUPREF_IGNORE)\n            else:\n                emit(GROUPREF_UNI_IGNORE)\n            emit(av-1)\n        elif op is GROUPREF_EXISTS:\n            emit(op)\n            emit(av[0]-1)\n            skipyes = _len(code); emit(0)\n            _compile(code, av[1], flags)\n            if av[2]:\n                emit(JUMP)\n                skipno = _len(code); emit(0)\n                code[skipyes] = _len(code) - skipyes + 1\n                _compile(code, av[2], flags)\n                code[skipno] = _len(code) - skipno\n            else:\n                code[skipyes] = _len(code) - skipyes + 1\n        else:\n            raise error(\"internal: unsupported operand type %r\" % (op,))\n\ndef _compile_charset(charset, flags, code):\n    # compile charset subprogram\n    emit = code.append\n    for op, av in charset:\n        emit(op)\n        if op is NEGATE:\n            pass\n        elif op is LITERAL:\n            emit(av)\n        elif op is RANGE or op is RANGE_UNI_IGNORE:\n            emit(av[0])\n            emit(av[1])\n        elif op is CHARSET:\n            code.extend(av)\n        elif op is BIGCHARSET:\n            code.extend(av)\n        elif op is CATEGORY:\n            if flags & SRE_FLAG_LOCALE:\n                emit(CH_LOCALE[av])\n            elif flags & SRE_FLAG_UNICODE:\n                emit(CH_UNICODE[av])\n            else:\n                emit(av)\n        else:\n            raise error(\"internal: unsupported set operator %r\" % (op,))\n    emit(FAILURE)\n\ndef _optimize_charset(charset, iscased=None, fixup=None, fixes=None):\n    # internal: optimize character set\n    out = []\n    tail = []\n    charmap = bytearray(256)\n    hascased = False\n    for op, av in charset:\n        while True:\n            try:\n                if op is LITERAL:\n                    if fixup:\n                        lo = fixup(av)\n                        charmap[lo] = 1\n                        if fixes and lo in fixes:\n                            for k in fixes[lo]:\n                                charmap[k] = 1\n                        if not hascased and iscased(av):\n                            hascased = True\n                    else:\n                        charmap[av] = 1\n                elif op is RANGE:\n                    r = range(av[0], av[1]+1)\n                    if fixup:\n                        if fixes:\n                            for i in map(fixup, r):\n                                charmap[i] = 1\n                                if i in fixes:\n                                    for k in fixes[i]:\n                                        charmap[k] = 1\n                        else:\n                            for i in map(fixup, r):\n                                charmap[i] = 1\n                        if not hascased:\n                            hascased = any(map(iscased, r))\n                    else:\n                        for i in r:\n                            charmap[i] = 1\n                elif op is NEGATE:\n                    out.append((op, av))\n                else:\n                    tail.append((op, av))\n            except IndexError:\n                if len(charmap) == 256:\n                    # character set contains non-UCS1 character codes\n                    charmap += b'\\0' * 0xff00\n                    continue\n                # Character set contains non-BMP character codes.\n                if fixup:\n                    hascased = True\n                    # There are only two ranges of cased non-BMP characters:\n                    # 10400-1044F (Deseret) and 118A0-118DF (Warang Citi),\n                    # and for both ranges RANGE_UNI_IGNORE works.\n                    if op is RANGE:\n                        op = RANGE_UNI_IGNORE\n                tail.append((op, av))\n            break\n\n    # compress character map\n    runs = []\n    q = 0\n    while True:\n        p = charmap.find(1, q)\n        if p < 0:\n            break\n        if len(runs) >= 2:\n            runs = None\n            break\n        q = charmap.find(0, p)\n        if q < 0:\n            runs.append((p, len(charmap)))\n            break\n        runs.append((p, q))\n    if runs is not None:\n        # use literal/range\n        for p, q in runs:\n            if q - p == 1:\n                out.append((LITERAL, p))\n            else:\n                out.append((RANGE, (p, q - 1)))\n        out += tail\n        # if the case was changed or new representation is more compact\n        if hascased or len(out) < len(charset):\n            return out, hascased\n        # else original character set is good enough\n        return charset, hascased\n\n    # use bitmap\n    if len(charmap) == 256:\n        data = _mk_bitmap(charmap)\n        out.append((CHARSET, data))\n        out += tail\n        return out, hascased\n\n    # To represent a big charset, first a bitmap of all characters in the\n    # set is constructed. Then, this bitmap is sliced into chunks of 256\n    # characters, duplicate chunks are eliminated, and each chunk is\n    # given a number. In the compiled expression, the charset is\n    # represented by a 32-bit word sequence, consisting of one word for\n    # the number of different chunks, a sequence of 256 bytes (64 words)\n    # of chunk numbers indexed by their original chunk position, and a\n    # sequence of 256-bit chunks (8 words each).\n\n    # Compression is normally good: in a typical charset, large ranges of\n    # Unicode will be either completely excluded (e.g. if only cyrillic\n    # letters are to be matched), or completely included (e.g. if large\n    # subranges of Kanji match). These ranges will be represented by\n    # chunks of all one-bits or all zero-bits.\n\n    # Matching can be also done efficiently: the more significant byte of\n    # the Unicode character is an index into the chunk number, and the\n    # less significant byte is a bit index in the chunk (just like the\n    # CHARSET matching).\n\n    charmap = bytes(charmap) # should be hashable\n    comps = {}\n    mapping = bytearray(256)\n    block = 0\n    data = bytearray()\n    for i in range(0, 65536, 256):\n        chunk = charmap[i: i + 256]\n        if chunk in comps:\n            mapping[i // 256] = comps[chunk]\n        else:\n            mapping[i // 256] = comps[chunk] = block\n            block += 1\n            data += chunk\n    data = _mk_bitmap(data)\n    data[0:0] = [block] + _bytes_to_codes(mapping)\n    out.append((BIGCHARSET, data))\n    out += tail\n    return out, hascased\n\n_CODEBITS = _sre.CODESIZE * 8\nMAXCODE = (1 << _CODEBITS) - 1\n_BITS_TRANS = b'0' + b'1' * 255\ndef _mk_bitmap(bits, _CODEBITS=_CODEBITS, _int=int):\n    s = bits.translate(_BITS_TRANS)[::-1]\n    return [_int(s[i - _CODEBITS: i], 2)\n            for i in range(len(s), 0, -_CODEBITS)]\n\ndef _bytes_to_codes(b):\n    # Convert block indices to word array\n    a = memoryview(b).cast('I')\n    assert a.itemsize == _sre.CODESIZE\n    assert len(a) * a.itemsize == len(b)\n    return a.tolist()\n\ndef _simple(p):\n    # check if this subpattern is a \"simple\" operator\n    if len(p) != 1:\n        return False\n    op, av = p[0]\n    if op is SUBPATTERN:\n        return av[0] is None and _simple(av[-1])\n    return op in _UNIT_CODES\n\ndef _generate_overlap_table(prefix):\n    \"\"\"\n    Generate an overlap table for the following prefix.\n    An overlap table is a table of the same size as the prefix which\n    informs about the potential self-overlap for each index in the prefix:\n    - if overlap[i] == 0, prefix[i:] can't overlap prefix[0:...]\n    - if overlap[i] == k with 0 < k <= i, prefix[i-k+1:i+1] overlaps with\n      prefix[0:k]\n    \"\"\"\n    table = [0] * len(prefix)\n    for i in range(1, len(prefix)):\n        idx = table[i - 1]\n        while prefix[i] != prefix[idx]:\n            if idx == 0:\n                table[i] = 0\n                break\n            idx = table[idx - 1]\n        else:\n            table[i] = idx + 1\n    return table\n\ndef _get_iscased(flags):\n    if not flags & SRE_FLAG_IGNORECASE:\n        return None\n    elif flags & SRE_FLAG_UNICODE:\n        return _sre.unicode_iscased\n    else:\n        return _sre.ascii_iscased\n\ndef _get_literal_prefix(pattern, flags):\n    # look for literal prefix\n    prefix = []\n    prefixappend = prefix.append\n    prefix_skip = None\n    iscased = _get_iscased(flags)\n    for op, av in pattern.data:\n        if op is LITERAL:\n            if iscased and iscased(av):\n                break\n            prefixappend(av)\n        elif op is SUBPATTERN:\n            group, add_flags, del_flags, p = av\n            flags1 = _combine_flags(flags, add_flags, del_flags)\n            if flags1 & SRE_FLAG_IGNORECASE and flags1 & SRE_FLAG_LOCALE:\n                break\n            prefix1, prefix_skip1, got_all = _get_literal_prefix(p, flags1)\n            if prefix_skip is None:\n                if group is not None:\n                    prefix_skip = len(prefix)\n                elif prefix_skip1 is not None:\n                    prefix_skip = len(prefix) + prefix_skip1\n            prefix.extend(prefix1)\n            if not got_all:\n                break\n        else:\n            break\n    else:\n        return prefix, prefix_skip, True\n    return prefix, prefix_skip, False\n\ndef _get_charset_prefix(pattern, flags):\n    while True:\n        if not pattern.data:\n            return None\n        op, av = pattern.data[0]\n        if op is not SUBPATTERN:\n            break\n        group, add_flags, del_flags, pattern = av\n        flags = _combine_flags(flags, add_flags, del_flags)\n        if flags & SRE_FLAG_IGNORECASE and flags & SRE_FLAG_LOCALE:\n            return None\n\n    iscased = _get_iscased(flags)\n    if op is LITERAL:\n        if iscased and iscased(av):\n            return None\n        return [(op, av)]\n    elif op is BRANCH:\n        charset = []\n        charsetappend = charset.append\n        for p in av[1]:\n            if not p:\n                return None\n            op, av = p[0]\n            if op is LITERAL and not (iscased and iscased(av)):\n                charsetappend((op, av))\n            else:\n                return None\n        return charset\n    elif op is IN:\n        charset = av\n        if iscased:\n            for op, av in charset:\n                if op is LITERAL:\n                    if iscased(av):\n                        return None\n                elif op is RANGE:\n                    if av[1] > 0xffff:\n                        return None\n                    if any(map(iscased, range(av[0], av[1]+1))):\n                        return None\n        return charset\n    return None\n\ndef _compile_info(code, pattern, flags):\n    # internal: compile an info block.  in the current version,\n    # this contains min/max pattern width, and an optional literal\n    # prefix or a character map\n    lo, hi = pattern.getwidth()\n    if hi > MAXCODE:\n        hi = MAXCODE\n    if lo == 0:\n        code.extend([INFO, 4, 0, lo, hi])\n        return\n    # look for a literal prefix\n    prefix = []\n    prefix_skip = 0\n    charset = [] # not used\n    if not (flags & SRE_FLAG_IGNORECASE and flags & SRE_FLAG_LOCALE):\n        # look for literal prefix\n        prefix, prefix_skip, got_all = _get_literal_prefix(pattern, flags)\n        # if no prefix, look for charset prefix\n        if not prefix:\n            charset = _get_charset_prefix(pattern, flags)\n##     if prefix:\n##         print(\"*** PREFIX\", prefix, prefix_skip)\n##     if charset:\n##         print(\"*** CHARSET\", charset)\n    # add an info block\n    emit = code.append\n    emit(INFO)\n    skip = len(code); emit(0)\n    # literal flag\n    mask = 0\n    if prefix:\n        mask = SRE_INFO_PREFIX\n        if prefix_skip is None and got_all:\n            mask = mask | SRE_INFO_LITERAL\n    elif charset:\n        mask = mask | SRE_INFO_CHARSET\n    emit(mask)\n    # pattern length\n    if lo < MAXCODE:\n        emit(lo)\n    else:\n        emit(MAXCODE)\n        prefix = prefix[:MAXCODE]\n    emit(min(hi, MAXCODE))\n    # add literal prefix\n    if prefix:\n        emit(len(prefix)) # length\n        if prefix_skip is None:\n            prefix_skip =  len(prefix)\n        emit(prefix_skip) # skip\n        code.extend(prefix)\n        # generate overlap table\n        code.extend(_generate_overlap_table(prefix))\n    elif charset:\n        charset, hascased = _optimize_charset(charset)\n        assert not hascased\n        _compile_charset(charset, flags, code)\n    code[skip] = len(code) - skip\n\ndef isstring(obj):\n    return isinstance(obj, (str, bytes))\n\ndef _code(p, flags):\n\n    flags = p.state.flags | flags\n    code = []\n\n    # compile info block\n    _compile_info(code, p, flags)\n\n    # compile the pattern\n    _compile(code, p.data, flags)\n\n    code.append(SUCCESS)\n\n    return code\n\ndef _hex_code(code):\n    return '[%s]' % ', '.join('%#0*x' % (_sre.CODESIZE*2+2, x) for x in code)\n\ndef dis(code):\n    import sys\n\n    labels = set()\n    level = 0\n    offset_width = len(str(len(code) - 1))\n\n    def dis_(start, end):\n        def print_(*args, to=None):\n            if to is not None:\n                labels.add(to)\n                args += ('(to %d)' % (to,),)\n            print('%*d%s ' % (offset_width, start, ':' if start in labels else '.'),\n                  end='  '*(level-1))\n            print(*args)\n\n        def print_2(*args):\n            print(end=' '*(offset_width + 2*level))\n            print(*args)\n\n        nonlocal level\n        level += 1\n        i = start\n        while i < end:\n            start = i\n            op = code[i]\n            i += 1\n            op = OPCODES[op]\n            if op in (SUCCESS, FAILURE, ANY, ANY_ALL,\n                      MAX_UNTIL, MIN_UNTIL, NEGATE):\n                print_(op)\n            elif op in (LITERAL, NOT_LITERAL,\n                        LITERAL_IGNORE, NOT_LITERAL_IGNORE,\n                        LITERAL_UNI_IGNORE, NOT_LITERAL_UNI_IGNORE,\n                        LITERAL_LOC_IGNORE, NOT_LITERAL_LOC_IGNORE):\n                arg = code[i]\n                i += 1\n                print_(op, '%#02x (%r)' % (arg, chr(arg)))\n            elif op is AT:\n                arg = code[i]\n                i += 1\n                arg = str(ATCODES[arg])\n                assert arg[:3] == 'AT_'\n                print_(op, arg[3:])\n            elif op is CATEGORY:\n                arg = code[i]\n                i += 1\n                arg = str(CHCODES[arg])\n                assert arg[:9] == 'CATEGORY_'\n                print_(op, arg[9:])\n            elif op in (IN, IN_IGNORE, IN_UNI_IGNORE, IN_LOC_IGNORE):\n                skip = code[i]\n                print_(op, skip, to=i+skip)\n                dis_(i+1, i+skip)\n                i += skip\n            elif op in (RANGE, RANGE_UNI_IGNORE):\n                lo, hi = code[i: i+2]\n                i += 2\n                print_(op, '%#02x %#02x (%r-%r)' % (lo, hi, chr(lo), chr(hi)))\n            elif op is CHARSET:\n                print_(op, _hex_code(code[i: i + 256//_CODEBITS]))\n                i += 256//_CODEBITS\n            elif op is BIGCHARSET:\n                arg = code[i]\n                i += 1\n                mapping = list(b''.join(x.to_bytes(_sre.CODESIZE, sys.byteorder)\n                                        for x in code[i: i + 256//_sre.CODESIZE]))\n                print_(op, arg, mapping)\n                i += 256//_sre.CODESIZE\n                level += 1\n                for j in range(arg):\n                    print_2(_hex_code(code[i: i + 256//_CODEBITS]))\n                    i += 256//_CODEBITS\n                level -= 1\n            elif op in (MARK, GROUPREF, GROUPREF_IGNORE, GROUPREF_UNI_IGNORE,\n                        GROUPREF_LOC_IGNORE):\n                arg = code[i]\n                i += 1\n                print_(op, arg)\n            elif op is JUMP:\n                skip = code[i]\n                print_(op, skip, to=i+skip)\n                i += 1\n            elif op is BRANCH:\n                skip = code[i]\n                print_(op, skip, to=i+skip)\n                while skip:\n                    dis_(i+1, i+skip)\n                    i += skip\n                    start = i\n                    skip = code[i]\n                    if skip:\n                        print_('branch', skip, to=i+skip)\n                    else:\n                        print_(FAILURE)\n                i += 1\n            elif op in (REPEAT, REPEAT_ONE, MIN_REPEAT_ONE):\n                skip, min, max = code[i: i+3]\n                if max == MAXREPEAT:\n                    max = 'MAXREPEAT'\n                print_(op, skip, min, max, to=i+skip)\n                dis_(i+3, i+skip)\n                i += skip\n            elif op is GROUPREF_EXISTS:\n                arg, skip = code[i: i+2]\n                print_(op, arg, skip, to=i+skip)\n                i += 2\n            elif op in (ASSERT, ASSERT_NOT):\n                skip, arg = code[i: i+2]\n                print_(op, skip, arg, to=i+skip)\n                dis_(i+2, i+skip)\n                i += skip\n            elif op is INFO:\n                skip, flags, min, max = code[i: i+4]\n                if max == MAXREPEAT:\n                    max = 'MAXREPEAT'\n                print_(op, skip, bin(flags), min, max, to=i+skip)\n                start = i+4\n                if flags & SRE_INFO_PREFIX:\n                    prefix_len, prefix_skip = code[i+4: i+6]\n                    print_2('  prefix_skip', prefix_skip)\n                    start = i + 6\n                    prefix = code[start: start+prefix_len]\n                    print_2('  prefix',\n                            '[%s]' % ', '.join('%#02x' % x for x in prefix),\n                            '(%r)' % ''.join(map(chr, prefix)))\n                    start += prefix_len\n                    print_2('  overlap', code[start: start+prefix_len])\n                    start += prefix_len\n                if flags & SRE_INFO_CHARSET:\n                    level += 1\n                    print_2('in')\n                    dis_(start, i+skip)\n                    level -= 1\n                i += skip\n            else:\n                raise ValueError(op)\n\n        level -= 1\n\n    dis_(0, len(code))\n\n\ndef compile(p, flags=0):\n    # internal: convert pattern list to internal format\n\n    if isstring(p):\n        pattern = p\n        p = sre_parse.parse(p, flags)\n    else:\n        pattern = None\n\n    code = _code(p, flags)\n\n    if flags & SRE_FLAG_DEBUG:\n        print()\n        dis(code)\n\n    # map in either direction\n    groupindex = p.state.groupdict\n    indexgroup = [None] * p.state.groups\n    for k, i in groupindex.items():\n        indexgroup[i] = k\n\n    return _sre.compile(\n        pattern, flags | p.state.flags, code,\n        p.state.groups-1,\n        groupindex, tuple(indexgroup)\n        )\n"
  },
  {
    "path": "rd/usr/lib/python3.8/sre_constants.py",
    "content": "#\n# Secret Labs' Regular Expression Engine\n#\n# various symbols used by the regular expression engine.\n# run this script to update the _sre include files!\n#\n# Copyright (c) 1998-2001 by Secret Labs AB.  All rights reserved.\n#\n# See the sre.py file for information on usage and redistribution.\n#\n\n\"\"\"Internal support module for sre\"\"\"\n\n# update when constants are added or removed\n\nMAGIC = 20171005\n\nfrom _sre import MAXREPEAT, MAXGROUPS\n\n# SRE standard exception (access as sre.error)\n# should this really be here?\n\nclass error(Exception):\n    \"\"\"Exception raised for invalid regular expressions.\n\n    Attributes:\n\n        msg: The unformatted error message\n        pattern: The regular expression pattern\n        pos: The index in the pattern where compilation failed (may be None)\n        lineno: The line corresponding to pos (may be None)\n        colno: The column corresponding to pos (may be None)\n    \"\"\"\n\n    __module__ = 're'\n\n    def __init__(self, msg, pattern=None, pos=None):\n        self.msg = msg\n        self.pattern = pattern\n        self.pos = pos\n        if pattern is not None and pos is not None:\n            msg = '%s at position %d' % (msg, pos)\n            if isinstance(pattern, str):\n                newline = '\\n'\n            else:\n                newline = b'\\n'\n            self.lineno = pattern.count(newline, 0, pos) + 1\n            self.colno = pos - pattern.rfind(newline, 0, pos)\n            if newline in pattern:\n                msg = '%s (line %d, column %d)' % (msg, self.lineno, self.colno)\n        else:\n            self.lineno = self.colno = None\n        super().__init__(msg)\n\n\nclass _NamedIntConstant(int):\n    def __new__(cls, value, name):\n        self = super(_NamedIntConstant, cls).__new__(cls, value)\n        self.name = name\n        return self\n\n    def __repr__(self):\n        return self.name\n\nMAXREPEAT = _NamedIntConstant(MAXREPEAT, 'MAXREPEAT')\n\ndef _makecodes(names):\n    names = names.strip().split()\n    items = [_NamedIntConstant(i, name) for i, name in enumerate(names)]\n    globals().update({item.name: item for item in items})\n    return items\n\n# operators\n# failure=0 success=1 (just because it looks better that way :-)\nOPCODES = _makecodes(\"\"\"\n    FAILURE SUCCESS\n\n    ANY ANY_ALL\n    ASSERT ASSERT_NOT\n    AT\n    BRANCH\n    CALL\n    CATEGORY\n    CHARSET BIGCHARSET\n    GROUPREF GROUPREF_EXISTS\n    IN\n    INFO\n    JUMP\n    LITERAL\n    MARK\n    MAX_UNTIL\n    MIN_UNTIL\n    NOT_LITERAL\n    NEGATE\n    RANGE\n    REPEAT\n    REPEAT_ONE\n    SUBPATTERN\n    MIN_REPEAT_ONE\n\n    GROUPREF_IGNORE\n    IN_IGNORE\n    LITERAL_IGNORE\n    NOT_LITERAL_IGNORE\n\n    GROUPREF_LOC_IGNORE\n    IN_LOC_IGNORE\n    LITERAL_LOC_IGNORE\n    NOT_LITERAL_LOC_IGNORE\n\n    GROUPREF_UNI_IGNORE\n    IN_UNI_IGNORE\n    LITERAL_UNI_IGNORE\n    NOT_LITERAL_UNI_IGNORE\n    RANGE_UNI_IGNORE\n\n    MIN_REPEAT MAX_REPEAT\n\"\"\")\ndel OPCODES[-2:] # remove MIN_REPEAT and MAX_REPEAT\n\n# positions\nATCODES = _makecodes(\"\"\"\n    AT_BEGINNING AT_BEGINNING_LINE AT_BEGINNING_STRING\n    AT_BOUNDARY AT_NON_BOUNDARY\n    AT_END AT_END_LINE AT_END_STRING\n\n    AT_LOC_BOUNDARY AT_LOC_NON_BOUNDARY\n\n    AT_UNI_BOUNDARY AT_UNI_NON_BOUNDARY\n\"\"\")\n\n# categories\nCHCODES = _makecodes(\"\"\"\n    CATEGORY_DIGIT CATEGORY_NOT_DIGIT\n    CATEGORY_SPACE CATEGORY_NOT_SPACE\n    CATEGORY_WORD CATEGORY_NOT_WORD\n    CATEGORY_LINEBREAK CATEGORY_NOT_LINEBREAK\n\n    CATEGORY_LOC_WORD CATEGORY_LOC_NOT_WORD\n\n    CATEGORY_UNI_DIGIT CATEGORY_UNI_NOT_DIGIT\n    CATEGORY_UNI_SPACE CATEGORY_UNI_NOT_SPACE\n    CATEGORY_UNI_WORD CATEGORY_UNI_NOT_WORD\n    CATEGORY_UNI_LINEBREAK CATEGORY_UNI_NOT_LINEBREAK\n\"\"\")\n\n\n# replacement operations for \"ignore case\" mode\nOP_IGNORE = {\n    LITERAL: LITERAL_IGNORE,\n    NOT_LITERAL: NOT_LITERAL_IGNORE,\n}\n\nOP_LOCALE_IGNORE = {\n    LITERAL: LITERAL_LOC_IGNORE,\n    NOT_LITERAL: NOT_LITERAL_LOC_IGNORE,\n}\n\nOP_UNICODE_IGNORE = {\n    LITERAL: LITERAL_UNI_IGNORE,\n    NOT_LITERAL: NOT_LITERAL_UNI_IGNORE,\n}\n\nAT_MULTILINE = {\n    AT_BEGINNING: AT_BEGINNING_LINE,\n    AT_END: AT_END_LINE\n}\n\nAT_LOCALE = {\n    AT_BOUNDARY: AT_LOC_BOUNDARY,\n    AT_NON_BOUNDARY: AT_LOC_NON_BOUNDARY\n}\n\nAT_UNICODE = {\n    AT_BOUNDARY: AT_UNI_BOUNDARY,\n    AT_NON_BOUNDARY: AT_UNI_NON_BOUNDARY\n}\n\nCH_LOCALE = {\n    CATEGORY_DIGIT: CATEGORY_DIGIT,\n    CATEGORY_NOT_DIGIT: CATEGORY_NOT_DIGIT,\n    CATEGORY_SPACE: CATEGORY_SPACE,\n    CATEGORY_NOT_SPACE: CATEGORY_NOT_SPACE,\n    CATEGORY_WORD: CATEGORY_LOC_WORD,\n    CATEGORY_NOT_WORD: CATEGORY_LOC_NOT_WORD,\n    CATEGORY_LINEBREAK: CATEGORY_LINEBREAK,\n    CATEGORY_NOT_LINEBREAK: CATEGORY_NOT_LINEBREAK\n}\n\nCH_UNICODE = {\n    CATEGORY_DIGIT: CATEGORY_UNI_DIGIT,\n    CATEGORY_NOT_DIGIT: CATEGORY_UNI_NOT_DIGIT,\n    CATEGORY_SPACE: CATEGORY_UNI_SPACE,\n    CATEGORY_NOT_SPACE: CATEGORY_UNI_NOT_SPACE,\n    CATEGORY_WORD: CATEGORY_UNI_WORD,\n    CATEGORY_NOT_WORD: CATEGORY_UNI_NOT_WORD,\n    CATEGORY_LINEBREAK: CATEGORY_UNI_LINEBREAK,\n    CATEGORY_NOT_LINEBREAK: CATEGORY_UNI_NOT_LINEBREAK\n}\n\n# flags\nSRE_FLAG_TEMPLATE = 1 # template mode (disable backtracking)\nSRE_FLAG_IGNORECASE = 2 # case insensitive\nSRE_FLAG_LOCALE = 4 # honour system locale\nSRE_FLAG_MULTILINE = 8 # treat target as multiline string\nSRE_FLAG_DOTALL = 16 # treat target as a single string\nSRE_FLAG_UNICODE = 32 # use unicode \"locale\"\nSRE_FLAG_VERBOSE = 64 # ignore whitespace and comments\nSRE_FLAG_DEBUG = 128 # debugging\nSRE_FLAG_ASCII = 256 # use ascii \"locale\"\n\n# flags for INFO primitive\nSRE_INFO_PREFIX = 1 # has prefix\nSRE_INFO_LITERAL = 2 # entire pattern is literal (given by prefix)\nSRE_INFO_CHARSET = 4 # pattern starts with character from given set\n\nif __name__ == \"__main__\":\n    def dump(f, d, prefix):\n        items = sorted(d)\n        for item in items:\n            f.write(\"#define %s_%s %d\\n\" % (prefix, item, item))\n    with open(\"sre_constants.h\", \"w\") as f:\n        f.write(\"\"\"\\\n/*\n * Secret Labs' Regular Expression Engine\n *\n * regular expression matching engine\n *\n * NOTE: This file is generated by sre_constants.py.  If you need\n * to change anything in here, edit sre_constants.py and run it.\n *\n * Copyright (c) 1997-2001 by Secret Labs AB.  All rights reserved.\n *\n * See the _sre.c file for information on usage and redistribution.\n */\n\n\"\"\")\n\n        f.write(\"#define SRE_MAGIC %d\\n\" % MAGIC)\n\n        dump(f, OPCODES, \"SRE_OP\")\n        dump(f, ATCODES, \"SRE\")\n        dump(f, CHCODES, \"SRE\")\n\n        f.write(\"#define SRE_FLAG_TEMPLATE %d\\n\" % SRE_FLAG_TEMPLATE)\n        f.write(\"#define SRE_FLAG_IGNORECASE %d\\n\" % SRE_FLAG_IGNORECASE)\n        f.write(\"#define SRE_FLAG_LOCALE %d\\n\" % SRE_FLAG_LOCALE)\n        f.write(\"#define SRE_FLAG_MULTILINE %d\\n\" % SRE_FLAG_MULTILINE)\n        f.write(\"#define SRE_FLAG_DOTALL %d\\n\" % SRE_FLAG_DOTALL)\n        f.write(\"#define SRE_FLAG_UNICODE %d\\n\" % SRE_FLAG_UNICODE)\n        f.write(\"#define SRE_FLAG_VERBOSE %d\\n\" % SRE_FLAG_VERBOSE)\n        f.write(\"#define SRE_FLAG_DEBUG %d\\n\" % SRE_FLAG_DEBUG)\n        f.write(\"#define SRE_FLAG_ASCII %d\\n\" % SRE_FLAG_ASCII)\n\n        f.write(\"#define SRE_INFO_PREFIX %d\\n\" % SRE_INFO_PREFIX)\n        f.write(\"#define SRE_INFO_LITERAL %d\\n\" % SRE_INFO_LITERAL)\n        f.write(\"#define SRE_INFO_CHARSET %d\\n\" % SRE_INFO_CHARSET)\n\n    print(\"done\")\n"
  },
  {
    "path": "rd/usr/lib/python3.8/sre_parse.py",
    "content": "#\n# Secret Labs' Regular Expression Engine\n#\n# convert re-style regular expression to sre pattern\n#\n# Copyright (c) 1998-2001 by Secret Labs AB.  All rights reserved.\n#\n# See the sre.py file for information on usage and redistribution.\n#\n\n\"\"\"Internal support module for sre\"\"\"\n\n# XXX: show string offset and offending character for all errors\n\nfrom sre_constants import *\n\nSPECIAL_CHARS = \".\\\\[{()*+?^$|\"\nREPEAT_CHARS = \"*+?{\"\n\nDIGITS = frozenset(\"0123456789\")\n\nOCTDIGITS = frozenset(\"01234567\")\nHEXDIGITS = frozenset(\"0123456789abcdefABCDEF\")\nASCIILETTERS = frozenset(\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ\")\n\nWHITESPACE = frozenset(\" \\t\\n\\r\\v\\f\")\n\n_REPEATCODES = frozenset({MIN_REPEAT, MAX_REPEAT})\n_UNITCODES = frozenset({ANY, RANGE, IN, LITERAL, NOT_LITERAL, CATEGORY})\n\nESCAPES = {\n    r\"\\a\": (LITERAL, ord(\"\\a\")),\n    r\"\\b\": (LITERAL, ord(\"\\b\")),\n    r\"\\f\": (LITERAL, ord(\"\\f\")),\n    r\"\\n\": (LITERAL, ord(\"\\n\")),\n    r\"\\r\": (LITERAL, ord(\"\\r\")),\n    r\"\\t\": (LITERAL, ord(\"\\t\")),\n    r\"\\v\": (LITERAL, ord(\"\\v\")),\n    r\"\\\\\": (LITERAL, ord(\"\\\\\"))\n}\n\nCATEGORIES = {\n    r\"\\A\": (AT, AT_BEGINNING_STRING), # start of string\n    r\"\\b\": (AT, AT_BOUNDARY),\n    r\"\\B\": (AT, AT_NON_BOUNDARY),\n    r\"\\d\": (IN, [(CATEGORY, CATEGORY_DIGIT)]),\n    r\"\\D\": (IN, [(CATEGORY, CATEGORY_NOT_DIGIT)]),\n    r\"\\s\": (IN, [(CATEGORY, CATEGORY_SPACE)]),\n    r\"\\S\": (IN, [(CATEGORY, CATEGORY_NOT_SPACE)]),\n    r\"\\w\": (IN, [(CATEGORY, CATEGORY_WORD)]),\n    r\"\\W\": (IN, [(CATEGORY, CATEGORY_NOT_WORD)]),\n    r\"\\Z\": (AT, AT_END_STRING), # end of string\n}\n\nFLAGS = {\n    # standard flags\n    \"i\": SRE_FLAG_IGNORECASE,\n    \"L\": SRE_FLAG_LOCALE,\n    \"m\": SRE_FLAG_MULTILINE,\n    \"s\": SRE_FLAG_DOTALL,\n    \"x\": SRE_FLAG_VERBOSE,\n    # extensions\n    \"a\": SRE_FLAG_ASCII,\n    \"t\": SRE_FLAG_TEMPLATE,\n    \"u\": SRE_FLAG_UNICODE,\n}\n\nTYPE_FLAGS = SRE_FLAG_ASCII | SRE_FLAG_LOCALE | SRE_FLAG_UNICODE\nGLOBAL_FLAGS = SRE_FLAG_DEBUG | SRE_FLAG_TEMPLATE\n\nclass Verbose(Exception):\n    pass\n\nclass State:\n    # keeps track of state for parsing\n    def __init__(self):\n        self.flags = 0\n        self.groupdict = {}\n        self.groupwidths = [None]  # group 0\n        self.lookbehindgroups = None\n    @property\n    def groups(self):\n        return len(self.groupwidths)\n    def opengroup(self, name=None):\n        gid = self.groups\n        self.groupwidths.append(None)\n        if self.groups > MAXGROUPS:\n            raise error(\"too many groups\")\n        if name is not None:\n            ogid = self.groupdict.get(name, None)\n            if ogid is not None:\n                raise error(\"redefinition of group name %r as group %d; \"\n                            \"was group %d\" % (name, gid,  ogid))\n            self.groupdict[name] = gid\n        return gid\n    def closegroup(self, gid, p):\n        self.groupwidths[gid] = p.getwidth()\n    def checkgroup(self, gid):\n        return gid < self.groups and self.groupwidths[gid] is not None\n\n    def checklookbehindgroup(self, gid, source):\n        if self.lookbehindgroups is not None:\n            if not self.checkgroup(gid):\n                raise source.error('cannot refer to an open group')\n            if gid >= self.lookbehindgroups:\n                raise source.error('cannot refer to group defined in the same '\n                                   'lookbehind subpattern')\n\nclass SubPattern:\n    # a subpattern, in intermediate form\n    def __init__(self, state, data=None):\n        self.state = state\n        if data is None:\n            data = []\n        self.data = data\n        self.width = None\n\n    def dump(self, level=0):\n        nl = True\n        seqtypes = (tuple, list)\n        for op, av in self.data:\n            print(level*\"  \" + str(op), end='')\n            if op is IN:\n                # member sublanguage\n                print()\n                for op, a in av:\n                    print((level+1)*\"  \" + str(op), a)\n            elif op is BRANCH:\n                print()\n                for i, a in enumerate(av[1]):\n                    if i:\n                        print(level*\"  \" + \"OR\")\n                    a.dump(level+1)\n            elif op is GROUPREF_EXISTS:\n                condgroup, item_yes, item_no = av\n                print('', condgroup)\n                item_yes.dump(level+1)\n                if item_no:\n                    print(level*\"  \" + \"ELSE\")\n                    item_no.dump(level+1)\n            elif isinstance(av, seqtypes):\n                nl = False\n                for a in av:\n                    if isinstance(a, SubPattern):\n                        if not nl:\n                            print()\n                        a.dump(level+1)\n                        nl = True\n                    else:\n                        if not nl:\n                            print(' ', end='')\n                        print(a, end='')\n                        nl = False\n                if not nl:\n                    print()\n            else:\n                print('', av)\n    def __repr__(self):\n        return repr(self.data)\n    def __len__(self):\n        return len(self.data)\n    def __delitem__(self, index):\n        del self.data[index]\n    def __getitem__(self, index):\n        if isinstance(index, slice):\n            return SubPattern(self.state, self.data[index])\n        return self.data[index]\n    def __setitem__(self, index, code):\n        self.data[index] = code\n    def insert(self, index, code):\n        self.data.insert(index, code)\n    def append(self, code):\n        self.data.append(code)\n    def getwidth(self):\n        # determine the width (min, max) for this subpattern\n        if self.width is not None:\n            return self.width\n        lo = hi = 0\n        for op, av in self.data:\n            if op is BRANCH:\n                i = MAXREPEAT - 1\n                j = 0\n                for av in av[1]:\n                    l, h = av.getwidth()\n                    i = min(i, l)\n                    j = max(j, h)\n                lo = lo + i\n                hi = hi + j\n            elif op is CALL:\n                i, j = av.getwidth()\n                lo = lo + i\n                hi = hi + j\n            elif op is SUBPATTERN:\n                i, j = av[-1].getwidth()\n                lo = lo + i\n                hi = hi + j\n            elif op in _REPEATCODES:\n                i, j = av[2].getwidth()\n                lo = lo + i * av[0]\n                hi = hi + j * av[1]\n            elif op in _UNITCODES:\n                lo = lo + 1\n                hi = hi + 1\n            elif op is GROUPREF:\n                i, j = self.state.groupwidths[av]\n                lo = lo + i\n                hi = hi + j\n            elif op is GROUPREF_EXISTS:\n                i, j = av[1].getwidth()\n                if av[2] is not None:\n                    l, h = av[2].getwidth()\n                    i = min(i, l)\n                    j = max(j, h)\n                else:\n                    i = 0\n                lo = lo + i\n                hi = hi + j\n            elif op is SUCCESS:\n                break\n        self.width = min(lo, MAXREPEAT - 1), min(hi, MAXREPEAT)\n        return self.width\n\nclass Tokenizer:\n    def __init__(self, string):\n        self.istext = isinstance(string, str)\n        self.string = string\n        if not self.istext:\n            string = str(string, 'latin1')\n        self.decoded_string = string\n        self.index = 0\n        self.next = None\n        self.__next()\n    def __next(self):\n        index = self.index\n        try:\n            char = self.decoded_string[index]\n        except IndexError:\n            self.next = None\n            return\n        if char == \"\\\\\":\n            index += 1\n            try:\n                char += self.decoded_string[index]\n            except IndexError:\n                raise error(\"bad escape (end of pattern)\",\n                            self.string, len(self.string) - 1) from None\n        self.index = index + 1\n        self.next = char\n    def match(self, char):\n        if char == self.next:\n            self.__next()\n            return True\n        return False\n    def get(self):\n        this = self.next\n        self.__next()\n        return this\n    def getwhile(self, n, charset):\n        result = ''\n        for _ in range(n):\n            c = self.next\n            if c not in charset:\n                break\n            result += c\n            self.__next()\n        return result\n    def getuntil(self, terminator, name):\n        result = ''\n        while True:\n            c = self.next\n            self.__next()\n            if c is None:\n                if not result:\n                    raise self.error(\"missing \" + name)\n                raise self.error(\"missing %s, unterminated name\" % terminator,\n                                 len(result))\n            if c == terminator:\n                if not result:\n                    raise self.error(\"missing \" + name, 1)\n                break\n            result += c\n        return result\n    @property\n    def pos(self):\n        return self.index - len(self.next or '')\n    def tell(self):\n        return self.index - len(self.next or '')\n    def seek(self, index):\n        self.index = index\n        self.__next()\n\n    def error(self, msg, offset=0):\n        return error(msg, self.string, self.tell() - offset)\n\ndef _class_escape(source, escape):\n    # handle escape code inside character class\n    code = ESCAPES.get(escape)\n    if code:\n        return code\n    code = CATEGORIES.get(escape)\n    if code and code[0] is IN:\n        return code\n    try:\n        c = escape[1:2]\n        if c == \"x\":\n            # hexadecimal escape (exactly two digits)\n            escape += source.getwhile(2, HEXDIGITS)\n            if len(escape) != 4:\n                raise source.error(\"incomplete escape %s\" % escape, len(escape))\n            return LITERAL, int(escape[2:], 16)\n        elif c == \"u\" and source.istext:\n            # unicode escape (exactly four digits)\n            escape += source.getwhile(4, HEXDIGITS)\n            if len(escape) != 6:\n                raise source.error(\"incomplete escape %s\" % escape, len(escape))\n            return LITERAL, int(escape[2:], 16)\n        elif c == \"U\" and source.istext:\n            # unicode escape (exactly eight digits)\n            escape += source.getwhile(8, HEXDIGITS)\n            if len(escape) != 10:\n                raise source.error(\"incomplete escape %s\" % escape, len(escape))\n            c = int(escape[2:], 16)\n            chr(c) # raise ValueError for invalid code\n            return LITERAL, c\n        elif c == \"N\" and source.istext:\n            import unicodedata\n            # named unicode escape e.g. \\N{EM DASH}\n            if not source.match('{'):\n                raise source.error(\"missing {\")\n            charname = source.getuntil('}', 'character name')\n            try:\n                c = ord(unicodedata.lookup(charname))\n            except KeyError:\n                raise source.error(\"undefined character name %r\" % charname,\n                                   len(charname) + len(r'\\N{}'))\n            return LITERAL, c\n        elif c in OCTDIGITS:\n            # octal escape (up to three digits)\n            escape += source.getwhile(2, OCTDIGITS)\n            c = int(escape[1:], 8)\n            if c > 0o377:\n                raise source.error('octal escape value %s outside of '\n                                   'range 0-0o377' % escape, len(escape))\n            return LITERAL, c\n        elif c in DIGITS:\n            raise ValueError\n        if len(escape) == 2:\n            if c in ASCIILETTERS:\n                raise source.error('bad escape %s' % escape, len(escape))\n            return LITERAL, ord(escape[1])\n    except ValueError:\n        pass\n    raise source.error(\"bad escape %s\" % escape, len(escape))\n\ndef _escape(source, escape, state):\n    # handle escape code in expression\n    code = CATEGORIES.get(escape)\n    if code:\n        return code\n    code = ESCAPES.get(escape)\n    if code:\n        return code\n    try:\n        c = escape[1:2]\n        if c == \"x\":\n            # hexadecimal escape\n            escape += source.getwhile(2, HEXDIGITS)\n            if len(escape) != 4:\n                raise source.error(\"incomplete escape %s\" % escape, len(escape))\n            return LITERAL, int(escape[2:], 16)\n        elif c == \"u\" and source.istext:\n            # unicode escape (exactly four digits)\n            escape += source.getwhile(4, HEXDIGITS)\n            if len(escape) != 6:\n                raise source.error(\"incomplete escape %s\" % escape, len(escape))\n            return LITERAL, int(escape[2:], 16)\n        elif c == \"U\" and source.istext:\n            # unicode escape (exactly eight digits)\n            escape += source.getwhile(8, HEXDIGITS)\n            if len(escape) != 10:\n                raise source.error(\"incomplete escape %s\" % escape, len(escape))\n            c = int(escape[2:], 16)\n            chr(c) # raise ValueError for invalid code\n            return LITERAL, c\n        elif c == \"N\" and source.istext:\n            import unicodedata\n            # named unicode escape e.g. \\N{EM DASH}\n            if not source.match('{'):\n                raise source.error(\"missing {\")\n            charname = source.getuntil('}', 'character name')\n            try:\n                c = ord(unicodedata.lookup(charname))\n            except KeyError:\n                raise source.error(\"undefined character name %r\" % charname,\n                                   len(charname) + len(r'\\N{}'))\n            return LITERAL, c\n        elif c == \"0\":\n            # octal escape\n            escape += source.getwhile(2, OCTDIGITS)\n            return LITERAL, int(escape[1:], 8)\n        elif c in DIGITS:\n            # octal escape *or* decimal group reference (sigh)\n            if source.next in DIGITS:\n                escape += source.get()\n                if (escape[1] in OCTDIGITS and escape[2] in OCTDIGITS and\n                    source.next in OCTDIGITS):\n                    # got three octal digits; this is an octal escape\n                    escape += source.get()\n                    c = int(escape[1:], 8)\n                    if c > 0o377:\n                        raise source.error('octal escape value %s outside of '\n                                           'range 0-0o377' % escape,\n                                           len(escape))\n                    return LITERAL, c\n            # not an octal escape, so this is a group reference\n            group = int(escape[1:])\n            if group < state.groups:\n                if not state.checkgroup(group):\n                    raise source.error(\"cannot refer to an open group\",\n                                       len(escape))\n                state.checklookbehindgroup(group, source)\n                return GROUPREF, group\n            raise source.error(\"invalid group reference %d\" % group, len(escape) - 1)\n        if len(escape) == 2:\n            if c in ASCIILETTERS:\n                raise source.error(\"bad escape %s\" % escape, len(escape))\n            return LITERAL, ord(escape[1])\n    except ValueError:\n        pass\n    raise source.error(\"bad escape %s\" % escape, len(escape))\n\ndef _uniq(items):\n    return list(dict.fromkeys(items))\n\ndef _parse_sub(source, state, verbose, nested):\n    # parse an alternation: a|b|c\n\n    items = []\n    itemsappend = items.append\n    sourcematch = source.match\n    start = source.tell()\n    while True:\n        itemsappend(_parse(source, state, verbose, nested + 1,\n                           not nested and not items))\n        if not sourcematch(\"|\"):\n            break\n\n    if len(items) == 1:\n        return items[0]\n\n    subpattern = SubPattern(state)\n\n    # check if all items share a common prefix\n    while True:\n        prefix = None\n        for item in items:\n            if not item:\n                break\n            if prefix is None:\n                prefix = item[0]\n            elif item[0] != prefix:\n                break\n        else:\n            # all subitems start with a common \"prefix\".\n            # move it out of the branch\n            for item in items:\n                del item[0]\n            subpattern.append(prefix)\n            continue # check next one\n        break\n\n    # check if the branch can be replaced by a character set\n    set = []\n    for item in items:\n        if len(item) != 1:\n            break\n        op, av = item[0]\n        if op is LITERAL:\n            set.append((op, av))\n        elif op is IN and av[0][0] is not NEGATE:\n            set.extend(av)\n        else:\n            break\n    else:\n        # we can store this as a character set instead of a\n        # branch (the compiler may optimize this even more)\n        subpattern.append((IN, _uniq(set)))\n        return subpattern\n\n    subpattern.append((BRANCH, (None, items)))\n    return subpattern\n\ndef _parse(source, state, verbose, nested, first=False):\n    # parse a simple pattern\n    subpattern = SubPattern(state)\n\n    # precompute constants into local variables\n    subpatternappend = subpattern.append\n    sourceget = source.get\n    sourcematch = source.match\n    _len = len\n    _ord = ord\n\n    while True:\n\n        this = source.next\n        if this is None:\n            break # end of pattern\n        if this in \"|)\":\n            break # end of subpattern\n        sourceget()\n\n        if verbose:\n            # skip whitespace and comments\n            if this in WHITESPACE:\n                continue\n            if this == \"#\":\n                while True:\n                    this = sourceget()\n                    if this is None or this == \"\\n\":\n                        break\n                continue\n\n        if this[0] == \"\\\\\":\n            code = _escape(source, this, state)\n            subpatternappend(code)\n\n        elif this not in SPECIAL_CHARS:\n            subpatternappend((LITERAL, _ord(this)))\n\n        elif this == \"[\":\n            here = source.tell() - 1\n            # character set\n            set = []\n            setappend = set.append\n##          if sourcematch(\":\"):\n##              pass # handle character classes\n            if source.next == '[':\n                import warnings\n                warnings.warn(\n                    'Possible nested set at position %d' % source.tell(),\n                    FutureWarning, stacklevel=nested + 6\n                )\n            negate = sourcematch(\"^\")\n            # check remaining characters\n            while True:\n                this = sourceget()\n                if this is None:\n                    raise source.error(\"unterminated character set\",\n                                       source.tell() - here)\n                if this == \"]\" and set:\n                    break\n                elif this[0] == \"\\\\\":\n                    code1 = _class_escape(source, this)\n                else:\n                    if set and this in '-&~|' and source.next == this:\n                        import warnings\n                        warnings.warn(\n                            'Possible set %s at position %d' % (\n                                'difference' if this == '-' else\n                                'intersection' if this == '&' else\n                                'symmetric difference' if this == '~' else\n                                'union',\n                                source.tell() - 1),\n                            FutureWarning, stacklevel=nested + 6\n                        )\n                    code1 = LITERAL, _ord(this)\n                if sourcematch(\"-\"):\n                    # potential range\n                    that = sourceget()\n                    if that is None:\n                        raise source.error(\"unterminated character set\",\n                                           source.tell() - here)\n                    if that == \"]\":\n                        if code1[0] is IN:\n                            code1 = code1[1][0]\n                        setappend(code1)\n                        setappend((LITERAL, _ord(\"-\")))\n                        break\n                    if that[0] == \"\\\\\":\n                        code2 = _class_escape(source, that)\n                    else:\n                        if that == '-':\n                            import warnings\n                            warnings.warn(\n                                'Possible set difference at position %d' % (\n                                    source.tell() - 2),\n                                FutureWarning, stacklevel=nested + 6\n                            )\n                        code2 = LITERAL, _ord(that)\n                    if code1[0] != LITERAL or code2[0] != LITERAL:\n                        msg = \"bad character range %s-%s\" % (this, that)\n                        raise source.error(msg, len(this) + 1 + len(that))\n                    lo = code1[1]\n                    hi = code2[1]\n                    if hi < lo:\n                        msg = \"bad character range %s-%s\" % (this, that)\n                        raise source.error(msg, len(this) + 1 + len(that))\n                    setappend((RANGE, (lo, hi)))\n                else:\n                    if code1[0] is IN:\n                        code1 = code1[1][0]\n                    setappend(code1)\n\n            set = _uniq(set)\n            # XXX: <fl> should move set optimization to compiler!\n            if _len(set) == 1 and set[0][0] is LITERAL:\n                # optimization\n                if negate:\n                    subpatternappend((NOT_LITERAL, set[0][1]))\n                else:\n                    subpatternappend(set[0])\n            else:\n                if negate:\n                    set.insert(0, (NEGATE, None))\n                # charmap optimization can't be added here because\n                # global flags still are not known\n                subpatternappend((IN, set))\n\n        elif this in REPEAT_CHARS:\n            # repeat previous item\n            here = source.tell()\n            if this == \"?\":\n                min, max = 0, 1\n            elif this == \"*\":\n                min, max = 0, MAXREPEAT\n\n            elif this == \"+\":\n                min, max = 1, MAXREPEAT\n            elif this == \"{\":\n                if source.next == \"}\":\n                    subpatternappend((LITERAL, _ord(this)))\n                    continue\n\n                min, max = 0, MAXREPEAT\n                lo = hi = \"\"\n                while source.next in DIGITS:\n                    lo += sourceget()\n                if sourcematch(\",\"):\n                    while source.next in DIGITS:\n                        hi += sourceget()\n                else:\n                    hi = lo\n                if not sourcematch(\"}\"):\n                    subpatternappend((LITERAL, _ord(this)))\n                    source.seek(here)\n                    continue\n\n                if lo:\n                    min = int(lo)\n                    if min >= MAXREPEAT:\n                        raise OverflowError(\"the repetition number is too large\")\n                if hi:\n                    max = int(hi)\n                    if max >= MAXREPEAT:\n                        raise OverflowError(\"the repetition number is too large\")\n                    if max < min:\n                        raise source.error(\"min repeat greater than max repeat\",\n                                           source.tell() - here)\n            else:\n                raise AssertionError(\"unsupported quantifier %r\" % (char,))\n            # figure out which item to repeat\n            if subpattern:\n                item = subpattern[-1:]\n            else:\n                item = None\n            if not item or item[0][0] is AT:\n                raise source.error(\"nothing to repeat\",\n                                   source.tell() - here + len(this))\n            if item[0][0] in _REPEATCODES:\n                raise source.error(\"multiple repeat\",\n                                   source.tell() - here + len(this))\n            if item[0][0] is SUBPATTERN:\n                group, add_flags, del_flags, p = item[0][1]\n                if group is None and not add_flags and not del_flags:\n                    item = p\n            if sourcematch(\"?\"):\n                subpattern[-1] = (MIN_REPEAT, (min, max, item))\n            else:\n                subpattern[-1] = (MAX_REPEAT, (min, max, item))\n\n        elif this == \".\":\n            subpatternappend((ANY, None))\n\n        elif this == \"(\":\n            start = source.tell() - 1\n            group = True\n            name = None\n            add_flags = 0\n            del_flags = 0\n            if sourcematch(\"?\"):\n                # options\n                char = sourceget()\n                if char is None:\n                    raise source.error(\"unexpected end of pattern\")\n                if char == \"P\":\n                    # python extensions\n                    if sourcematch(\"<\"):\n                        # named group: skip forward to end of name\n                        name = source.getuntil(\">\", \"group name\")\n                        if not name.isidentifier():\n                            msg = \"bad character in group name %r\" % name\n                            raise source.error(msg, len(name) + 1)\n                    elif sourcematch(\"=\"):\n                        # named backreference\n                        name = source.getuntil(\")\", \"group name\")\n                        if not name.isidentifier():\n                            msg = \"bad character in group name %r\" % name\n                            raise source.error(msg, len(name) + 1)\n                        gid = state.groupdict.get(name)\n                        if gid is None:\n                            msg = \"unknown group name %r\" % name\n                            raise source.error(msg, len(name) + 1)\n                        if not state.checkgroup(gid):\n                            raise source.error(\"cannot refer to an open group\",\n                                               len(name) + 1)\n                        state.checklookbehindgroup(gid, source)\n                        subpatternappend((GROUPREF, gid))\n                        continue\n\n                    else:\n                        char = sourceget()\n                        if char is None:\n                            raise source.error(\"unexpected end of pattern\")\n                        raise source.error(\"unknown extension ?P\" + char,\n                                           len(char) + 2)\n                elif char == \":\":\n                    # non-capturing group\n                    group = None\n                elif char == \"#\":\n                    # comment\n                    while True:\n                        if source.next is None:\n                            raise source.error(\"missing ), unterminated comment\",\n                                               source.tell() - start)\n                        if sourceget() == \")\":\n                            break\n                    continue\n\n                elif char in \"=!<\":\n                    # lookahead assertions\n                    dir = 1\n                    if char == \"<\":\n                        char = sourceget()\n                        if char is None:\n                            raise source.error(\"unexpected end of pattern\")\n                        if char not in \"=!\":\n                            raise source.error(\"unknown extension ?<\" + char,\n                                               len(char) + 2)\n                        dir = -1 # lookbehind\n                        lookbehindgroups = state.lookbehindgroups\n                        if lookbehindgroups is None:\n                            state.lookbehindgroups = state.groups\n                    p = _parse_sub(source, state, verbose, nested + 1)\n                    if dir < 0:\n                        if lookbehindgroups is None:\n                            state.lookbehindgroups = None\n                    if not sourcematch(\")\"):\n                        raise source.error(\"missing ), unterminated subpattern\",\n                                           source.tell() - start)\n                    if char == \"=\":\n                        subpatternappend((ASSERT, (dir, p)))\n                    else:\n                        subpatternappend((ASSERT_NOT, (dir, p)))\n                    continue\n\n                elif char == \"(\":\n                    # conditional backreference group\n                    condname = source.getuntil(\")\", \"group name\")\n                    if condname.isidentifier():\n                        condgroup = state.groupdict.get(condname)\n                        if condgroup is None:\n                            msg = \"unknown group name %r\" % condname\n                            raise source.error(msg, len(condname) + 1)\n                    else:\n                        try:\n                            condgroup = int(condname)\n                            if condgroup < 0:\n                                raise ValueError\n                        except ValueError:\n                            msg = \"bad character in group name %r\" % condname\n                            raise source.error(msg, len(condname) + 1) from None\n                        if not condgroup:\n                            raise source.error(\"bad group number\",\n                                               len(condname) + 1)\n                        if condgroup >= MAXGROUPS:\n                            msg = \"invalid group reference %d\" % condgroup\n                            raise source.error(msg, len(condname) + 1)\n                    state.checklookbehindgroup(condgroup, source)\n                    item_yes = _parse(source, state, verbose, nested + 1)\n                    if source.match(\"|\"):\n                        item_no = _parse(source, state, verbose, nested + 1)\n                        if source.next == \"|\":\n                            raise source.error(\"conditional backref with more than two branches\")\n                    else:\n                        item_no = None\n                    if not source.match(\")\"):\n                        raise source.error(\"missing ), unterminated subpattern\",\n                                           source.tell() - start)\n                    subpatternappend((GROUPREF_EXISTS, (condgroup, item_yes, item_no)))\n                    continue\n\n                elif char in FLAGS or char == \"-\":\n                    # flags\n                    flags = _parse_flags(source, state, char)\n                    if flags is None:  # global flags\n                        if not first or subpattern:\n                            import warnings\n                            warnings.warn(\n                                'Flags not at the start of the expression %r%s' % (\n                                    source.string[:20],  # truncate long regexes\n                                    ' (truncated)' if len(source.string) > 20 else '',\n                                ),\n                                DeprecationWarning, stacklevel=nested + 6\n                            )\n                        if (state.flags & SRE_FLAG_VERBOSE) and not verbose:\n                            raise Verbose\n                        continue\n\n                    add_flags, del_flags = flags\n                    group = None\n                else:\n                    raise source.error(\"unknown extension ?\" + char,\n                                       len(char) + 1)\n\n            # parse group contents\n            if group is not None:\n                try:\n                    group = state.opengroup(name)\n                except error as err:\n                    raise source.error(err.msg, len(name) + 1) from None\n            sub_verbose = ((verbose or (add_flags & SRE_FLAG_VERBOSE)) and\n                           not (del_flags & SRE_FLAG_VERBOSE))\n            p = _parse_sub(source, state, sub_verbose, nested + 1)\n            if not source.match(\")\"):\n                raise source.error(\"missing ), unterminated subpattern\",\n                                   source.tell() - start)\n            if group is not None:\n                state.closegroup(group, p)\n            subpatternappend((SUBPATTERN, (group, add_flags, del_flags, p)))\n\n        elif this == \"^\":\n            subpatternappend((AT, AT_BEGINNING))\n\n        elif this == \"$\":\n            subpatternappend((AT, AT_END))\n\n        else:\n            raise AssertionError(\"unsupported special character %r\" % (char,))\n\n    # unpack non-capturing groups\n    for i in range(len(subpattern))[::-1]:\n        op, av = subpattern[i]\n        if op is SUBPATTERN:\n            group, add_flags, del_flags, p = av\n            if group is None and not add_flags and not del_flags:\n                subpattern[i: i+1] = p\n\n    return subpattern\n\ndef _parse_flags(source, state, char):\n    sourceget = source.get\n    add_flags = 0\n    del_flags = 0\n    if char != \"-\":\n        while True:\n            flag = FLAGS[char]\n            if source.istext:\n                if char == 'L':\n                    msg = \"bad inline flags: cannot use 'L' flag with a str pattern\"\n                    raise source.error(msg)\n            else:\n                if char == 'u':\n                    msg = \"bad inline flags: cannot use 'u' flag with a bytes pattern\"\n                    raise source.error(msg)\n            add_flags |= flag\n            if (flag & TYPE_FLAGS) and (add_flags & TYPE_FLAGS) != flag:\n                msg = \"bad inline flags: flags 'a', 'u' and 'L' are incompatible\"\n                raise source.error(msg)\n            char = sourceget()\n            if char is None:\n                raise source.error(\"missing -, : or )\")\n            if char in \")-:\":\n                break\n            if char not in FLAGS:\n                msg = \"unknown flag\" if char.isalpha() else \"missing -, : or )\"\n                raise source.error(msg, len(char))\n    if char == \")\":\n        state.flags |= add_flags\n        return None\n    if add_flags & GLOBAL_FLAGS:\n        raise source.error(\"bad inline flags: cannot turn on global flag\", 1)\n    if char == \"-\":\n        char = sourceget()\n        if char is None:\n            raise source.error(\"missing flag\")\n        if char not in FLAGS:\n            msg = \"unknown flag\" if char.isalpha() else \"missing flag\"\n            raise source.error(msg, len(char))\n        while True:\n            flag = FLAGS[char]\n            if flag & TYPE_FLAGS:\n                msg = \"bad inline flags: cannot turn off flags 'a', 'u' and 'L'\"\n                raise source.error(msg)\n            del_flags |= flag\n            char = sourceget()\n            if char is None:\n                raise source.error(\"missing :\")\n            if char == \":\":\n                break\n            if char not in FLAGS:\n                msg = \"unknown flag\" if char.isalpha() else \"missing :\"\n                raise source.error(msg, len(char))\n    assert char == \":\"\n    if del_flags & GLOBAL_FLAGS:\n        raise source.error(\"bad inline flags: cannot turn off global flag\", 1)\n    if add_flags & del_flags:\n        raise source.error(\"bad inline flags: flag turned on and off\", 1)\n    return add_flags, del_flags\n\ndef fix_flags(src, flags):\n    # Check and fix flags according to the type of pattern (str or bytes)\n    if isinstance(src, str):\n        if flags & SRE_FLAG_LOCALE:\n            raise ValueError(\"cannot use LOCALE flag with a str pattern\")\n        if not flags & SRE_FLAG_ASCII:\n            flags |= SRE_FLAG_UNICODE\n        elif flags & SRE_FLAG_UNICODE:\n            raise ValueError(\"ASCII and UNICODE flags are incompatible\")\n    else:\n        if flags & SRE_FLAG_UNICODE:\n            raise ValueError(\"cannot use UNICODE flag with a bytes pattern\")\n        if flags & SRE_FLAG_LOCALE and flags & SRE_FLAG_ASCII:\n            raise ValueError(\"ASCII and LOCALE flags are incompatible\")\n    return flags\n\ndef parse(str, flags=0, state=None):\n    # parse 're' pattern into list of (opcode, argument) tuples\n\n    source = Tokenizer(str)\n\n    if state is None:\n        state = State()\n    state.flags = flags\n    state.str = str\n\n    try:\n        p = _parse_sub(source, state, flags & SRE_FLAG_VERBOSE, 0)\n    except Verbose:\n        # the VERBOSE flag was switched on inside the pattern.  to be\n        # on the safe side, we'll parse the whole thing again...\n        state = State()\n        state.flags = flags | SRE_FLAG_VERBOSE\n        state.str = str\n        source.seek(0)\n        p = _parse_sub(source, state, True, 0)\n\n    p.state.flags = fix_flags(str, p.state.flags)\n\n    if source.next is not None:\n        assert source.next == \")\"\n        raise source.error(\"unbalanced parenthesis\")\n\n    if flags & SRE_FLAG_DEBUG:\n        p.dump()\n\n    return p\n\ndef parse_template(source, state):\n    # parse 're' replacement string into list of literals and\n    # group references\n    s = Tokenizer(source)\n    sget = s.get\n    groups = []\n    literals = []\n    literal = []\n    lappend = literal.append\n    def addgroup(index, pos):\n        if index > state.groups:\n            raise s.error(\"invalid group reference %d\" % index, pos)\n        if literal:\n            literals.append(''.join(literal))\n            del literal[:]\n        groups.append((len(literals), index))\n        literals.append(None)\n    groupindex = state.groupindex\n    while True:\n        this = sget()\n        if this is None:\n            break # end of replacement string\n        if this[0] == \"\\\\\":\n            # group\n            c = this[1]\n            if c == \"g\":\n                name = \"\"\n                if not s.match(\"<\"):\n                    raise s.error(\"missing <\")\n                name = s.getuntil(\">\", \"group name\")\n                if name.isidentifier():\n                    try:\n                        index = groupindex[name]\n                    except KeyError:\n                        raise IndexError(\"unknown group name %r\" % name)\n                else:\n                    try:\n                        index = int(name)\n                        if index < 0:\n                            raise ValueError\n                    except ValueError:\n                        raise s.error(\"bad character in group name %r\" % name,\n                                      len(name) + 1) from None\n                    if index >= MAXGROUPS:\n                        raise s.error(\"invalid group reference %d\" % index,\n                                      len(name) + 1)\n                addgroup(index, len(name) + 1)\n            elif c == \"0\":\n                if s.next in OCTDIGITS:\n                    this += sget()\n                    if s.next in OCTDIGITS:\n                        this += sget()\n                lappend(chr(int(this[1:], 8) & 0xff))\n            elif c in DIGITS:\n                isoctal = False\n                if s.next in DIGITS:\n                    this += sget()\n                    if (c in OCTDIGITS and this[2] in OCTDIGITS and\n                        s.next in OCTDIGITS):\n                        this += sget()\n                        isoctal = True\n                        c = int(this[1:], 8)\n                        if c > 0o377:\n                            raise s.error('octal escape value %s outside of '\n                                          'range 0-0o377' % this, len(this))\n                        lappend(chr(c))\n                if not isoctal:\n                    addgroup(int(this[1:]), len(this) - 1)\n            else:\n                try:\n                    this = chr(ESCAPES[this][1])\n                except KeyError:\n                    if c in ASCIILETTERS:\n                        raise s.error('bad escape %s' % this, len(this))\n                lappend(this)\n        else:\n            lappend(this)\n    if literal:\n        literals.append(''.join(literal))\n    if not isinstance(source, str):\n        # The tokenizer implicitly decodes bytes objects as latin-1, we must\n        # therefore re-encode the final representation.\n        literals = [None if s is None else s.encode('latin-1') for s in literals]\n    return groups, literals\n\ndef expand_template(template, match):\n    g = match.group\n    empty = match.string[:0]\n    groups, literals = template\n    literals = literals[:]\n    try:\n        for index, group in groups:\n            literals[index] = g(group) or empty\n    except IndexError:\n        raise error(\"invalid group reference %d\" % index)\n    return empty.join(literals)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/ssl.py",
    "content": "# Wrapper module for _ssl, providing some additional facilities\n# implemented in Python.  Written by Bill Janssen.\n\n\"\"\"This module provides some more Pythonic support for SSL.\n\nObject types:\n\n  SSLSocket -- subtype of socket.socket which does SSL over the socket\n\nExceptions:\n\n  SSLError -- exception raised for I/O errors\n\nFunctions:\n\n  cert_time_to_seconds -- convert time string used for certificate\n                          notBefore and notAfter functions to integer\n                          seconds past the Epoch (the time values\n                          returned from time.time())\n\n  fetch_server_certificate (HOST, PORT) -- fetch the certificate provided\n                          by the server running on HOST at port PORT.  No\n                          validation of the certificate is performed.\n\nInteger constants:\n\nSSL_ERROR_ZERO_RETURN\nSSL_ERROR_WANT_READ\nSSL_ERROR_WANT_WRITE\nSSL_ERROR_WANT_X509_LOOKUP\nSSL_ERROR_SYSCALL\nSSL_ERROR_SSL\nSSL_ERROR_WANT_CONNECT\n\nSSL_ERROR_EOF\nSSL_ERROR_INVALID_ERROR_CODE\n\nThe following group define certificate requirements that one side is\nallowing/requiring from the other side:\n\nCERT_NONE - no certificates from the other side are required (or will\n            be looked at if provided)\nCERT_OPTIONAL - certificates are not required, but if provided will be\n                validated, and if validation fails, the connection will\n                also fail\nCERT_REQUIRED - certificates are required, and will be validated, and\n                if validation fails, the connection will also fail\n\nThe following constants identify various SSL protocol variants:\n\nPROTOCOL_SSLv2\nPROTOCOL_SSLv3\nPROTOCOL_SSLv23\nPROTOCOL_TLS\nPROTOCOL_TLS_CLIENT\nPROTOCOL_TLS_SERVER\nPROTOCOL_TLSv1\nPROTOCOL_TLSv1_1\nPROTOCOL_TLSv1_2\n\nThe following constants identify various SSL alert message descriptions as per\nhttp://www.iana.org/assignments/tls-parameters/tls-parameters.xml#tls-parameters-6\n\nALERT_DESCRIPTION_CLOSE_NOTIFY\nALERT_DESCRIPTION_UNEXPECTED_MESSAGE\nALERT_DESCRIPTION_BAD_RECORD_MAC\nALERT_DESCRIPTION_RECORD_OVERFLOW\nALERT_DESCRIPTION_DECOMPRESSION_FAILURE\nALERT_DESCRIPTION_HANDSHAKE_FAILURE\nALERT_DESCRIPTION_BAD_CERTIFICATE\nALERT_DESCRIPTION_UNSUPPORTED_CERTIFICATE\nALERT_DESCRIPTION_CERTIFICATE_REVOKED\nALERT_DESCRIPTION_CERTIFICATE_EXPIRED\nALERT_DESCRIPTION_CERTIFICATE_UNKNOWN\nALERT_DESCRIPTION_ILLEGAL_PARAMETER\nALERT_DESCRIPTION_UNKNOWN_CA\nALERT_DESCRIPTION_ACCESS_DENIED\nALERT_DESCRIPTION_DECODE_ERROR\nALERT_DESCRIPTION_DECRYPT_ERROR\nALERT_DESCRIPTION_PROTOCOL_VERSION\nALERT_DESCRIPTION_INSUFFICIENT_SECURITY\nALERT_DESCRIPTION_INTERNAL_ERROR\nALERT_DESCRIPTION_USER_CANCELLED\nALERT_DESCRIPTION_NO_RENEGOTIATION\nALERT_DESCRIPTION_UNSUPPORTED_EXTENSION\nALERT_DESCRIPTION_CERTIFICATE_UNOBTAINABLE\nALERT_DESCRIPTION_UNRECOGNIZED_NAME\nALERT_DESCRIPTION_BAD_CERTIFICATE_STATUS_RESPONSE\nALERT_DESCRIPTION_BAD_CERTIFICATE_HASH_VALUE\nALERT_DESCRIPTION_UNKNOWN_PSK_IDENTITY\n\"\"\"\n\nimport sys\nimport os\nfrom collections import namedtuple\nfrom enum import Enum as _Enum, IntEnum as _IntEnum, IntFlag as _IntFlag\n\nimport _ssl             # if we can't import it, let the error propagate\n\nfrom _ssl import OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_INFO, OPENSSL_VERSION\nfrom _ssl import _SSLContext, MemoryBIO, SSLSession\nfrom _ssl import (\n    SSLError, SSLZeroReturnError, SSLWantReadError, SSLWantWriteError,\n    SSLSyscallError, SSLEOFError, SSLCertVerificationError\n    )\nfrom _ssl import txt2obj as _txt2obj, nid2obj as _nid2obj\nfrom _ssl import RAND_status, RAND_add, RAND_bytes, RAND_pseudo_bytes\ntry:\n    from _ssl import RAND_egd\nexcept ImportError:\n    # LibreSSL does not provide RAND_egd\n    pass\n\n\nfrom _ssl import (\n    HAS_SNI, HAS_ECDH, HAS_NPN, HAS_ALPN, HAS_SSLv2, HAS_SSLv3, HAS_TLSv1,\n    HAS_TLSv1_1, HAS_TLSv1_2, HAS_TLSv1_3\n)\nfrom _ssl import _DEFAULT_CIPHERS, _OPENSSL_API_VERSION\n\n\n_IntEnum._convert_(\n    '_SSLMethod', __name__,\n    lambda name: name.startswith('PROTOCOL_') and name != 'PROTOCOL_SSLv23',\n    source=_ssl)\n\n_IntFlag._convert_(\n    'Options', __name__,\n    lambda name: name.startswith('OP_'),\n    source=_ssl)\n\n_IntEnum._convert_(\n    'AlertDescription', __name__,\n    lambda name: name.startswith('ALERT_DESCRIPTION_'),\n    source=_ssl)\n\n_IntEnum._convert_(\n    'SSLErrorNumber', __name__,\n    lambda name: name.startswith('SSL_ERROR_'),\n    source=_ssl)\n\n_IntFlag._convert_(\n    'VerifyFlags', __name__,\n    lambda name: name.startswith('VERIFY_'),\n    source=_ssl)\n\n_IntEnum._convert_(\n    'VerifyMode', __name__,\n    lambda name: name.startswith('CERT_'),\n    source=_ssl)\n\nPROTOCOL_SSLv23 = _SSLMethod.PROTOCOL_SSLv23 = _SSLMethod.PROTOCOL_TLS\n_PROTOCOL_NAMES = {value: name for name, value in _SSLMethod.__members__.items()}\n\n_SSLv2_IF_EXISTS = getattr(_SSLMethod, 'PROTOCOL_SSLv2', None)\n\n\nclass TLSVersion(_IntEnum):\n    MINIMUM_SUPPORTED = _ssl.PROTO_MINIMUM_SUPPORTED\n    SSLv3 = _ssl.PROTO_SSLv3\n    TLSv1 = _ssl.PROTO_TLSv1\n    TLSv1_1 = _ssl.PROTO_TLSv1_1\n    TLSv1_2 = _ssl.PROTO_TLSv1_2\n    TLSv1_3 = _ssl.PROTO_TLSv1_3\n    MAXIMUM_SUPPORTED = _ssl.PROTO_MAXIMUM_SUPPORTED\n\n\nclass _TLSContentType(_IntEnum):\n    \"\"\"Content types (record layer)\n\n    See RFC 8446, section B.1\n    \"\"\"\n    CHANGE_CIPHER_SPEC = 20\n    ALERT = 21\n    HANDSHAKE = 22\n    APPLICATION_DATA = 23\n    # pseudo content types\n    HEADER = 0x100\n    INNER_CONTENT_TYPE = 0x101\n\n\nclass _TLSAlertType(_IntEnum):\n    \"\"\"Alert types for TLSContentType.ALERT messages\n\n    See RFC 8466, section B.2\n    \"\"\"\n    CLOSE_NOTIFY = 0\n    UNEXPECTED_MESSAGE = 10\n    BAD_RECORD_MAC = 20\n    DECRYPTION_FAILED = 21\n    RECORD_OVERFLOW = 22\n    DECOMPRESSION_FAILURE = 30\n    HANDSHAKE_FAILURE = 40\n    NO_CERTIFICATE = 41\n    BAD_CERTIFICATE = 42\n    UNSUPPORTED_CERTIFICATE = 43\n    CERTIFICATE_REVOKED = 44\n    CERTIFICATE_EXPIRED = 45\n    CERTIFICATE_UNKNOWN = 46\n    ILLEGAL_PARAMETER = 47\n    UNKNOWN_CA = 48\n    ACCESS_DENIED = 49\n    DECODE_ERROR = 50\n    DECRYPT_ERROR = 51\n    EXPORT_RESTRICTION = 60\n    PROTOCOL_VERSION = 70\n    INSUFFICIENT_SECURITY = 71\n    INTERNAL_ERROR = 80\n    INAPPROPRIATE_FALLBACK = 86\n    USER_CANCELED = 90\n    NO_RENEGOTIATION = 100\n    MISSING_EXTENSION = 109\n    UNSUPPORTED_EXTENSION = 110\n    CERTIFICATE_UNOBTAINABLE = 111\n    UNRECOGNIZED_NAME = 112\n    BAD_CERTIFICATE_STATUS_RESPONSE = 113\n    BAD_CERTIFICATE_HASH_VALUE = 114\n    UNKNOWN_PSK_IDENTITY = 115\n    CERTIFICATE_REQUIRED = 116\n    NO_APPLICATION_PROTOCOL = 120\n\n\nclass _TLSMessageType(_IntEnum):\n    \"\"\"Message types (handshake protocol)\n\n    See RFC 8446, section B.3\n    \"\"\"\n    HELLO_REQUEST = 0\n    CLIENT_HELLO = 1\n    SERVER_HELLO = 2\n    HELLO_VERIFY_REQUEST = 3\n    NEWSESSION_TICKET = 4\n    END_OF_EARLY_DATA = 5\n    HELLO_RETRY_REQUEST = 6\n    ENCRYPTED_EXTENSIONS = 8\n    CERTIFICATE = 11\n    SERVER_KEY_EXCHANGE = 12\n    CERTIFICATE_REQUEST = 13\n    SERVER_DONE = 14\n    CERTIFICATE_VERIFY = 15\n    CLIENT_KEY_EXCHANGE = 16\n    FINISHED = 20\n    CERTIFICATE_URL = 21\n    CERTIFICATE_STATUS = 22\n    SUPPLEMENTAL_DATA = 23\n    KEY_UPDATE = 24\n    NEXT_PROTO = 67\n    MESSAGE_HASH = 254\n    CHANGE_CIPHER_SPEC = 0x0101\n\n\nif sys.platform == \"win32\":\n    from _ssl import enum_certificates, enum_crls\n\nfrom socket import socket, AF_INET, SOCK_STREAM, create_connection\nfrom socket import SOL_SOCKET, SO_TYPE\nimport socket as _socket\nimport base64        # for DER-to-PEM translation\nimport errno\nimport warnings\n\n\nsocket_error = OSError  # keep that public name in module namespace\n\nCHANNEL_BINDING_TYPES = ['tls-unique']\n\nHAS_NEVER_CHECK_COMMON_NAME = hasattr(_ssl, 'HOSTFLAG_NEVER_CHECK_SUBJECT')\n\n\n_RESTRICTED_SERVER_CIPHERS = _DEFAULT_CIPHERS\n\nCertificateError = SSLCertVerificationError\n\n\ndef _dnsname_match(dn, hostname):\n    \"\"\"Matching according to RFC 6125, section 6.4.3\n\n    - Hostnames are compared lower case.\n    - For IDNA, both dn and hostname must be encoded as IDN A-label (ACE).\n    - Partial wildcards like 'www*.example.org', multiple wildcards, sole\n      wildcard or wildcards in labels other then the left-most label are not\n      supported and a CertificateError is raised.\n    - A wildcard must match at least one character.\n    \"\"\"\n    if not dn:\n        return False\n\n    wildcards = dn.count('*')\n    # speed up common case w/o wildcards\n    if not wildcards:\n        return dn.lower() == hostname.lower()\n\n    if wildcards > 1:\n        raise CertificateError(\n            \"too many wildcards in certificate DNS name: {!r}.\".format(dn))\n\n    dn_leftmost, sep, dn_remainder = dn.partition('.')\n\n    if '*' in dn_remainder:\n        # Only match wildcard in leftmost segment.\n        raise CertificateError(\n            \"wildcard can only be present in the leftmost label: \"\n            \"{!r}.\".format(dn))\n\n    if not sep:\n        # no right side\n        raise CertificateError(\n            \"sole wildcard without additional labels are not support: \"\n            \"{!r}.\".format(dn))\n\n    if dn_leftmost != '*':\n        # no partial wildcard matching\n        raise CertificateError(\n            \"partial wildcards in leftmost label are not supported: \"\n            \"{!r}.\".format(dn))\n\n    hostname_leftmost, sep, hostname_remainder = hostname.partition('.')\n    if not hostname_leftmost or not sep:\n        # wildcard must match at least one char\n        return False\n    return dn_remainder.lower() == hostname_remainder.lower()\n\n\ndef _inet_paton(ipname):\n    \"\"\"Try to convert an IP address to packed binary form\n\n    Supports IPv4 addresses on all platforms and IPv6 on platforms with IPv6\n    support.\n    \"\"\"\n    # inet_aton() also accepts strings like '1', '127.1', some also trailing\n    # data like '127.0.0.1 whatever'.\n    try:\n        addr = _socket.inet_aton(ipname)\n    except OSError:\n        # not an IPv4 address\n        pass\n    else:\n        if _socket.inet_ntoa(addr) == ipname:\n            # only accept injective ipnames\n            return addr\n        else:\n            # refuse for short IPv4 notation and additional trailing data\n            raise ValueError(\n                \"{!r} is not a quad-dotted IPv4 address.\".format(ipname)\n            )\n\n    try:\n        return _socket.inet_pton(_socket.AF_INET6, ipname)\n    except OSError:\n        raise ValueError(\"{!r} is neither an IPv4 nor an IP6 \"\n                         \"address.\".format(ipname))\n    except AttributeError:\n        # AF_INET6 not available\n        pass\n\n    raise ValueError(\"{!r} is not an IPv4 address.\".format(ipname))\n\n\ndef _ipaddress_match(cert_ipaddress, host_ip):\n    \"\"\"Exact matching of IP addresses.\n\n    RFC 6125 explicitly doesn't define an algorithm for this\n    (section 1.7.2 - \"Out of Scope\").\n    \"\"\"\n    # OpenSSL may add a trailing newline to a subjectAltName's IP address,\n    # commonly woth IPv6 addresses. Strip off trailing \\n.\n    ip = _inet_paton(cert_ipaddress.rstrip())\n    return ip == host_ip\n\n\ndef match_hostname(cert, hostname):\n    \"\"\"Verify that *cert* (in decoded format as returned by\n    SSLSocket.getpeercert()) matches the *hostname*.  RFC 2818 and RFC 6125\n    rules are followed.\n\n    The function matches IP addresses rather than dNSNames if hostname is a\n    valid ipaddress string. IPv4 addresses are supported on all platforms.\n    IPv6 addresses are supported on platforms with IPv6 support (AF_INET6\n    and inet_pton).\n\n    CertificateError is raised on failure. On success, the function\n    returns nothing.\n    \"\"\"\n    if not cert:\n        raise ValueError(\"empty or no certificate, match_hostname needs a \"\n                         \"SSL socket or SSL context with either \"\n                         \"CERT_OPTIONAL or CERT_REQUIRED\")\n    try:\n        host_ip = _inet_paton(hostname)\n    except ValueError:\n        # Not an IP address (common case)\n        host_ip = None\n    dnsnames = []\n    san = cert.get('subjectAltName', ())\n    for key, value in san:\n        if key == 'DNS':\n            if host_ip is None and _dnsname_match(value, hostname):\n                return\n            dnsnames.append(value)\n        elif key == 'IP Address':\n            if host_ip is not None and _ipaddress_match(value, host_ip):\n                return\n            dnsnames.append(value)\n    if not dnsnames:\n        # The subject is only checked when there is no dNSName entry\n        # in subjectAltName\n        for sub in cert.get('subject', ()):\n            for key, value in sub:\n                # XXX according to RFC 2818, the most specific Common Name\n                # must be used.\n                if key == 'commonName':\n                    if _dnsname_match(value, hostname):\n                        return\n                    dnsnames.append(value)\n    if len(dnsnames) > 1:\n        raise CertificateError(\"hostname %r \"\n            \"doesn't match either of %s\"\n            % (hostname, ', '.join(map(repr, dnsnames))))\n    elif len(dnsnames) == 1:\n        raise CertificateError(\"hostname %r \"\n            \"doesn't match %r\"\n            % (hostname, dnsnames[0]))\n    else:\n        raise CertificateError(\"no appropriate commonName or \"\n            \"subjectAltName fields were found\")\n\n\nDefaultVerifyPaths = namedtuple(\"DefaultVerifyPaths\",\n    \"cafile capath openssl_cafile_env openssl_cafile openssl_capath_env \"\n    \"openssl_capath\")\n\ndef get_default_verify_paths():\n    \"\"\"Return paths to default cafile and capath.\n    \"\"\"\n    parts = _ssl.get_default_verify_paths()\n\n    # environment vars shadow paths\n    cafile = os.environ.get(parts[0], parts[1])\n    capath = os.environ.get(parts[2], parts[3])\n\n    return DefaultVerifyPaths(cafile if os.path.isfile(cafile) else None,\n                              capath if os.path.isdir(capath) else None,\n                              *parts)\n\n\nclass _ASN1Object(namedtuple(\"_ASN1Object\", \"nid shortname longname oid\")):\n    \"\"\"ASN.1 object identifier lookup\n    \"\"\"\n    __slots__ = ()\n\n    def __new__(cls, oid):\n        return super().__new__(cls, *_txt2obj(oid, name=False))\n\n    @classmethod\n    def fromnid(cls, nid):\n        \"\"\"Create _ASN1Object from OpenSSL numeric ID\n        \"\"\"\n        return super().__new__(cls, *_nid2obj(nid))\n\n    @classmethod\n    def fromname(cls, name):\n        \"\"\"Create _ASN1Object from short name, long name or OID\n        \"\"\"\n        return super().__new__(cls, *_txt2obj(name, name=True))\n\n\nclass Purpose(_ASN1Object, _Enum):\n    \"\"\"SSLContext purpose flags with X509v3 Extended Key Usage objects\n    \"\"\"\n    SERVER_AUTH = '1.3.6.1.5.5.7.3.1'\n    CLIENT_AUTH = '1.3.6.1.5.5.7.3.2'\n\n\nclass SSLContext(_SSLContext):\n    \"\"\"An SSLContext holds various SSL-related configuration options and\n    data, such as certificates and possibly a private key.\"\"\"\n    _windows_cert_stores = (\"CA\", \"ROOT\")\n\n    sslsocket_class = None  # SSLSocket is assigned later.\n    sslobject_class = None  # SSLObject is assigned later.\n\n    def __new__(cls, protocol=PROTOCOL_TLS, *args, **kwargs):\n        self = _SSLContext.__new__(cls, protocol)\n        return self\n\n    def _encode_hostname(self, hostname):\n        if hostname is None:\n            return None\n        elif isinstance(hostname, str):\n            return hostname.encode('idna').decode('ascii')\n        else:\n            return hostname.decode('ascii')\n\n    def wrap_socket(self, sock, server_side=False,\n                    do_handshake_on_connect=True,\n                    suppress_ragged_eofs=True,\n                    server_hostname=None, session=None):\n        # SSLSocket class handles server_hostname encoding before it calls\n        # ctx._wrap_socket()\n        return self.sslsocket_class._create(\n            sock=sock,\n            server_side=server_side,\n            do_handshake_on_connect=do_handshake_on_connect,\n            suppress_ragged_eofs=suppress_ragged_eofs,\n            server_hostname=server_hostname,\n            context=self,\n            session=session\n        )\n\n    def wrap_bio(self, incoming, outgoing, server_side=False,\n                 server_hostname=None, session=None):\n        # Need to encode server_hostname here because _wrap_bio() can only\n        # handle ASCII str.\n        return self.sslobject_class._create(\n            incoming, outgoing, server_side=server_side,\n            server_hostname=self._encode_hostname(server_hostname),\n            session=session, context=self,\n        )\n\n    def set_npn_protocols(self, npn_protocols):\n        protos = bytearray()\n        for protocol in npn_protocols:\n            b = bytes(protocol, 'ascii')\n            if len(b) == 0 or len(b) > 255:\n                raise SSLError('NPN protocols must be 1 to 255 in length')\n            protos.append(len(b))\n            protos.extend(b)\n\n        self._set_npn_protocols(protos)\n\n    def set_servername_callback(self, server_name_callback):\n        if server_name_callback is None:\n            self.sni_callback = None\n        else:\n            if not callable(server_name_callback):\n                raise TypeError(\"not a callable object\")\n\n            def shim_cb(sslobj, servername, sslctx):\n                servername = self._encode_hostname(servername)\n                return server_name_callback(sslobj, servername, sslctx)\n\n            self.sni_callback = shim_cb\n\n    def set_alpn_protocols(self, alpn_protocols):\n        protos = bytearray()\n        for protocol in alpn_protocols:\n            b = bytes(protocol, 'ascii')\n            if len(b) == 0 or len(b) > 255:\n                raise SSLError('ALPN protocols must be 1 to 255 in length')\n            protos.append(len(b))\n            protos.extend(b)\n\n        self._set_alpn_protocols(protos)\n\n    def _load_windows_store_certs(self, storename, purpose):\n        certs = bytearray()\n        try:\n            for cert, encoding, trust in enum_certificates(storename):\n                # CA certs are never PKCS#7 encoded\n                if encoding == \"x509_asn\":\n                    if trust is True or purpose.oid in trust:\n                        certs.extend(cert)\n        except PermissionError:\n            warnings.warn(\"unable to enumerate Windows certificate store\")\n        if certs:\n            self.load_verify_locations(cadata=certs)\n        return certs\n\n    def load_default_certs(self, purpose=Purpose.SERVER_AUTH):\n        if not isinstance(purpose, _ASN1Object):\n            raise TypeError(purpose)\n        if sys.platform == \"win32\":\n            for storename in self._windows_cert_stores:\n                self._load_windows_store_certs(storename, purpose)\n        self.set_default_verify_paths()\n\n    if hasattr(_SSLContext, 'minimum_version'):\n        @property\n        def minimum_version(self):\n            return TLSVersion(super().minimum_version)\n\n        @minimum_version.setter\n        def minimum_version(self, value):\n            if value == TLSVersion.SSLv3:\n                self.options &= ~Options.OP_NO_SSLv3\n            super(SSLContext, SSLContext).minimum_version.__set__(self, value)\n\n        @property\n        def maximum_version(self):\n            return TLSVersion(super().maximum_version)\n\n        @maximum_version.setter\n        def maximum_version(self, value):\n            super(SSLContext, SSLContext).maximum_version.__set__(self, value)\n\n    @property\n    def options(self):\n        return Options(super().options)\n\n    @options.setter\n    def options(self, value):\n        super(SSLContext, SSLContext).options.__set__(self, value)\n\n    if hasattr(_ssl, 'HOSTFLAG_NEVER_CHECK_SUBJECT'):\n        @property\n        def hostname_checks_common_name(self):\n            ncs = self._host_flags & _ssl.HOSTFLAG_NEVER_CHECK_SUBJECT\n            return ncs != _ssl.HOSTFLAG_NEVER_CHECK_SUBJECT\n\n        @hostname_checks_common_name.setter\n        def hostname_checks_common_name(self, value):\n            if value:\n                self._host_flags &= ~_ssl.HOSTFLAG_NEVER_CHECK_SUBJECT\n            else:\n                self._host_flags |= _ssl.HOSTFLAG_NEVER_CHECK_SUBJECT\n    else:\n        @property\n        def hostname_checks_common_name(self):\n            return True\n\n    @property\n    def _msg_callback(self):\n        \"\"\"TLS message callback\n\n        The message callback provides a debugging hook to analyze TLS\n        connections. The callback is called for any TLS protocol message\n        (header, handshake, alert, and more), but not for application data.\n        Due to technical  limitations, the callback can't be used to filter\n        traffic or to abort a connection. Any exception raised in the\n        callback is delayed until the handshake, read, or write operation\n        has been performed.\n\n        def msg_cb(conn, direction, version, content_type, msg_type, data):\n            pass\n\n        conn\n            :class:`SSLSocket` or :class:`SSLObject` instance\n        direction\n            ``read`` or ``write``\n        version\n            :class:`TLSVersion` enum member or int for unknown version. For a\n            frame header, it's the header version.\n        content_type\n            :class:`_TLSContentType` enum member or int for unsupported\n            content type.\n        msg_type\n            Either a :class:`_TLSContentType` enum number for a header\n            message, a :class:`_TLSAlertType` enum member for an alert\n            message, a :class:`_TLSMessageType` enum member for other\n            messages, or int for unsupported message types.\n        data\n            Raw, decrypted message content as bytes\n        \"\"\"\n        inner = super()._msg_callback\n        if inner is not None:\n            return inner.user_function\n        else:\n            return None\n\n    @_msg_callback.setter\n    def _msg_callback(self, callback):\n        if callback is None:\n            super(SSLContext, SSLContext)._msg_callback.__set__(self, None)\n            return\n\n        if not hasattr(callback, '__call__'):\n            raise TypeError(f\"{callback} is not callable.\")\n\n        def inner(conn, direction, version, content_type, msg_type, data):\n            try:\n                version = TLSVersion(version)\n            except ValueError:\n                pass\n\n            try:\n                content_type = _TLSContentType(content_type)\n            except ValueError:\n                pass\n\n            if content_type == _TLSContentType.HEADER:\n                msg_enum = _TLSContentType\n            elif content_type == _TLSContentType.ALERT:\n                msg_enum = _TLSAlertType\n            else:\n                msg_enum = _TLSMessageType\n            try:\n                msg_type = msg_enum(msg_type)\n            except ValueError:\n                pass\n\n            return callback(conn, direction, version,\n                            content_type, msg_type, data)\n\n        inner.user_function = callback\n\n        super(SSLContext, SSLContext)._msg_callback.__set__(self, inner)\n\n    @property\n    def protocol(self):\n        return _SSLMethod(super().protocol)\n\n    @property\n    def verify_flags(self):\n        return VerifyFlags(super().verify_flags)\n\n    @verify_flags.setter\n    def verify_flags(self, value):\n        super(SSLContext, SSLContext).verify_flags.__set__(self, value)\n\n    @property\n    def verify_mode(self):\n        value = super().verify_mode\n        try:\n            return VerifyMode(value)\n        except ValueError:\n            return value\n\n    @verify_mode.setter\n    def verify_mode(self, value):\n        super(SSLContext, SSLContext).verify_mode.__set__(self, value)\n\n\ndef create_default_context(purpose=Purpose.SERVER_AUTH, *, cafile=None,\n                           capath=None, cadata=None):\n    \"\"\"Create a SSLContext object with default settings.\n\n    NOTE: The protocol and settings may change anytime without prior\n          deprecation. The values represent a fair balance between maximum\n          compatibility and security.\n    \"\"\"\n    if not isinstance(purpose, _ASN1Object):\n        raise TypeError(purpose)\n\n    # SSLContext sets OP_NO_SSLv2, OP_NO_SSLv3, OP_NO_COMPRESSION,\n    # OP_CIPHER_SERVER_PREFERENCE, OP_SINGLE_DH_USE and OP_SINGLE_ECDH_USE\n    # by default.\n    context = SSLContext(PROTOCOL_TLS)\n\n    if purpose == Purpose.SERVER_AUTH:\n        # verify certs and host name in client mode\n        context.verify_mode = CERT_REQUIRED\n        context.check_hostname = True\n\n    if cafile or capath or cadata:\n        context.load_verify_locations(cafile, capath, cadata)\n    elif context.verify_mode != CERT_NONE:\n        # no explicit cafile, capath or cadata but the verify mode is\n        # CERT_OPTIONAL or CERT_REQUIRED. Let's try to load default system\n        # root CA certificates for the given purpose. This may fail silently.\n        context.load_default_certs(purpose)\n    # OpenSSL 1.1.1 keylog file\n    if hasattr(context, 'keylog_filename'):\n        keylogfile = os.environ.get('SSLKEYLOGFILE')\n        if keylogfile and not sys.flags.ignore_environment:\n            context.keylog_filename = keylogfile\n    return context\n\ndef _create_unverified_context(protocol=PROTOCOL_TLS, *, cert_reqs=CERT_NONE,\n                           check_hostname=False, purpose=Purpose.SERVER_AUTH,\n                           certfile=None, keyfile=None,\n                           cafile=None, capath=None, cadata=None):\n    \"\"\"Create a SSLContext object for Python stdlib modules\n\n    All Python stdlib modules shall use this function to create SSLContext\n    objects in order to keep common settings in one place. The configuration\n    is less restrict than create_default_context()'s to increase backward\n    compatibility.\n    \"\"\"\n    if not isinstance(purpose, _ASN1Object):\n        raise TypeError(purpose)\n\n    # SSLContext sets OP_NO_SSLv2, OP_NO_SSLv3, OP_NO_COMPRESSION,\n    # OP_CIPHER_SERVER_PREFERENCE, OP_SINGLE_DH_USE and OP_SINGLE_ECDH_USE\n    # by default.\n    context = SSLContext(protocol)\n\n    if not check_hostname:\n        context.check_hostname = False\n    if cert_reqs is not None:\n        context.verify_mode = cert_reqs\n    if check_hostname:\n        context.check_hostname = True\n\n    if keyfile and not certfile:\n        raise ValueError(\"certfile must be specified\")\n    if certfile or keyfile:\n        context.load_cert_chain(certfile, keyfile)\n\n    # load CA root certs\n    if cafile or capath or cadata:\n        context.load_verify_locations(cafile, capath, cadata)\n    elif context.verify_mode != CERT_NONE:\n        # no explicit cafile, capath or cadata but the verify mode is\n        # CERT_OPTIONAL or CERT_REQUIRED. Let's try to load default system\n        # root CA certificates for the given purpose. This may fail silently.\n        context.load_default_certs(purpose)\n    # OpenSSL 1.1.1 keylog file\n    if hasattr(context, 'keylog_filename'):\n        keylogfile = os.environ.get('SSLKEYLOGFILE')\n        if keylogfile and not sys.flags.ignore_environment:\n            context.keylog_filename = keylogfile\n    return context\n\n# Used by http.client if no context is explicitly passed.\n_create_default_https_context = create_default_context\n\n\n# Backwards compatibility alias, even though it's not a public name.\n_create_stdlib_context = _create_unverified_context\n\n\nclass SSLObject:\n    \"\"\"This class implements an interface on top of a low-level SSL object as\n    implemented by OpenSSL. This object captures the state of an SSL connection\n    but does not provide any network IO itself. IO needs to be performed\n    through separate \"BIO\" objects which are OpenSSL's IO abstraction layer.\n\n    This class does not have a public constructor. Instances are returned by\n    ``SSLContext.wrap_bio``. This class is typically used by framework authors\n    that want to implement asynchronous IO for SSL through memory buffers.\n\n    When compared to ``SSLSocket``, this object lacks the following features:\n\n     * Any form of network IO, including methods such as ``recv`` and ``send``.\n     * The ``do_handshake_on_connect`` and ``suppress_ragged_eofs`` machinery.\n    \"\"\"\n    def __init__(self, *args, **kwargs):\n        raise TypeError(\n            f\"{self.__class__.__name__} does not have a public \"\n            f\"constructor. Instances are returned by SSLContext.wrap_bio().\"\n        )\n\n    @classmethod\n    def _create(cls, incoming, outgoing, server_side=False,\n                 server_hostname=None, session=None, context=None):\n        self = cls.__new__(cls)\n        sslobj = context._wrap_bio(\n            incoming, outgoing, server_side=server_side,\n            server_hostname=server_hostname,\n            owner=self, session=session\n        )\n        self._sslobj = sslobj\n        return self\n\n    @property\n    def context(self):\n        \"\"\"The SSLContext that is currently in use.\"\"\"\n        return self._sslobj.context\n\n    @context.setter\n    def context(self, ctx):\n        self._sslobj.context = ctx\n\n    @property\n    def session(self):\n        \"\"\"The SSLSession for client socket.\"\"\"\n        return self._sslobj.session\n\n    @session.setter\n    def session(self, session):\n        self._sslobj.session = session\n\n    @property\n    def session_reused(self):\n        \"\"\"Was the client session reused during handshake\"\"\"\n        return self._sslobj.session_reused\n\n    @property\n    def server_side(self):\n        \"\"\"Whether this is a server-side socket.\"\"\"\n        return self._sslobj.server_side\n\n    @property\n    def server_hostname(self):\n        \"\"\"The currently set server hostname (for SNI), or ``None`` if no\n        server hostname is set.\"\"\"\n        return self._sslobj.server_hostname\n\n    def read(self, len=1024, buffer=None):\n        \"\"\"Read up to 'len' bytes from the SSL object and return them.\n\n        If 'buffer' is provided, read into this buffer and return the number of\n        bytes read.\n        \"\"\"\n        if buffer is not None:\n            v = self._sslobj.read(len, buffer)\n        else:\n            v = self._sslobj.read(len)\n        return v\n\n    def write(self, data):\n        \"\"\"Write 'data' to the SSL object and return the number of bytes\n        written.\n\n        The 'data' argument must support the buffer interface.\n        \"\"\"\n        return self._sslobj.write(data)\n\n    def getpeercert(self, binary_form=False):\n        \"\"\"Returns a formatted version of the data in the certificate provided\n        by the other end of the SSL channel.\n\n        Return None if no certificate was provided, {} if a certificate was\n        provided, but not validated.\n        \"\"\"\n        return self._sslobj.getpeercert(binary_form)\n\n    def selected_npn_protocol(self):\n        \"\"\"Return the currently selected NPN protocol as a string, or ``None``\n        if a next protocol was not negotiated or if NPN is not supported by one\n        of the peers.\"\"\"\n        if _ssl.HAS_NPN:\n            return self._sslobj.selected_npn_protocol()\n\n    def selected_alpn_protocol(self):\n        \"\"\"Return the currently selected ALPN protocol as a string, or ``None``\n        if a next protocol was not negotiated or if ALPN is not supported by one\n        of the peers.\"\"\"\n        if _ssl.HAS_ALPN:\n            return self._sslobj.selected_alpn_protocol()\n\n    def cipher(self):\n        \"\"\"Return the currently selected cipher as a 3-tuple ``(name,\n        ssl_version, secret_bits)``.\"\"\"\n        return self._sslobj.cipher()\n\n    def shared_ciphers(self):\n        \"\"\"Return a list of ciphers shared by the client during the handshake or\n        None if this is not a valid server connection.\n        \"\"\"\n        return self._sslobj.shared_ciphers()\n\n    def compression(self):\n        \"\"\"Return the current compression algorithm in use, or ``None`` if\n        compression was not negotiated or not supported by one of the peers.\"\"\"\n        return self._sslobj.compression()\n\n    def pending(self):\n        \"\"\"Return the number of bytes that can be read immediately.\"\"\"\n        return self._sslobj.pending()\n\n    def do_handshake(self):\n        \"\"\"Start the SSL/TLS handshake.\"\"\"\n        self._sslobj.do_handshake()\n\n    def unwrap(self):\n        \"\"\"Start the SSL shutdown handshake.\"\"\"\n        return self._sslobj.shutdown()\n\n    def get_channel_binding(self, cb_type=\"tls-unique\"):\n        \"\"\"Get channel binding data for current connection.  Raise ValueError\n        if the requested `cb_type` is not supported.  Return bytes of the data\n        or None if the data is not available (e.g. before the handshake).\"\"\"\n        return self._sslobj.get_channel_binding(cb_type)\n\n    def version(self):\n        \"\"\"Return a string identifying the protocol version used by the\n        current SSL channel. \"\"\"\n        return self._sslobj.version()\n\n    def verify_client_post_handshake(self):\n        return self._sslobj.verify_client_post_handshake()\n\n\ndef _sslcopydoc(func):\n    \"\"\"Copy docstring from SSLObject to SSLSocket\"\"\"\n    func.__doc__ = getattr(SSLObject, func.__name__).__doc__\n    return func\n\n\nclass SSLSocket(socket):\n    \"\"\"This class implements a subtype of socket.socket that wraps\n    the underlying OS socket in an SSL context when necessary, and\n    provides read and write methods over that channel. \"\"\"\n\n    def __init__(self, *args, **kwargs):\n        raise TypeError(\n            f\"{self.__class__.__name__} does not have a public \"\n            f\"constructor. Instances are returned by \"\n            f\"SSLContext.wrap_socket().\"\n        )\n\n    @classmethod\n    def _create(cls, sock, server_side=False, do_handshake_on_connect=True,\n                suppress_ragged_eofs=True, server_hostname=None,\n                context=None, session=None):\n        if sock.getsockopt(SOL_SOCKET, SO_TYPE) != SOCK_STREAM:\n            raise NotImplementedError(\"only stream sockets are supported\")\n        if server_side:\n            if server_hostname:\n                raise ValueError(\"server_hostname can only be specified \"\n                                 \"in client mode\")\n            if session is not None:\n                raise ValueError(\"session can only be specified in \"\n                                 \"client mode\")\n        if context.check_hostname and not server_hostname:\n            raise ValueError(\"check_hostname requires server_hostname\")\n\n        kwargs = dict(\n            family=sock.family, type=sock.type, proto=sock.proto,\n            fileno=sock.fileno()\n        )\n        self = cls.__new__(cls, **kwargs)\n        super(SSLSocket, self).__init__(**kwargs)\n        self.settimeout(sock.gettimeout())\n        sock.detach()\n\n        self._context = context\n        self._session = session\n        self._closed = False\n        self._sslobj = None\n        self.server_side = server_side\n        self.server_hostname = context._encode_hostname(server_hostname)\n        self.do_handshake_on_connect = do_handshake_on_connect\n        self.suppress_ragged_eofs = suppress_ragged_eofs\n\n        # See if we are connected\n        try:\n            self.getpeername()\n        except OSError as e:\n            if e.errno != errno.ENOTCONN:\n                raise\n            connected = False\n        else:\n            connected = True\n\n        self._connected = connected\n        if connected:\n            # create the SSL object\n            try:\n                self._sslobj = self._context._wrap_socket(\n                    self, server_side, self.server_hostname,\n                    owner=self, session=self._session,\n                )\n                if do_handshake_on_connect:\n                    timeout = self.gettimeout()\n                    if timeout == 0.0:\n                        # non-blocking\n                        raise ValueError(\"do_handshake_on_connect should not be specified for non-blocking sockets\")\n                    self.do_handshake()\n            except (OSError, ValueError):\n                self.close()\n                raise\n        return self\n\n    @property\n    @_sslcopydoc\n    def context(self):\n        return self._context\n\n    @context.setter\n    def context(self, ctx):\n        self._context = ctx\n        self._sslobj.context = ctx\n\n    @property\n    @_sslcopydoc\n    def session(self):\n        if self._sslobj is not None:\n            return self._sslobj.session\n\n    @session.setter\n    def session(self, session):\n        self._session = session\n        if self._sslobj is not None:\n            self._sslobj.session = session\n\n    @property\n    @_sslcopydoc\n    def session_reused(self):\n        if self._sslobj is not None:\n            return self._sslobj.session_reused\n\n    def dup(self):\n        raise NotImplementedError(\"Can't dup() %s instances\" %\n                                  self.__class__.__name__)\n\n    def _checkClosed(self, msg=None):\n        # raise an exception here if you wish to check for spurious closes\n        pass\n\n    def _check_connected(self):\n        if not self._connected:\n            # getpeername() will raise ENOTCONN if the socket is really\n            # not connected; note that we can be connected even without\n            # _connected being set, e.g. if connect() first returned\n            # EAGAIN.\n            self.getpeername()\n\n    def read(self, len=1024, buffer=None):\n        \"\"\"Read up to LEN bytes and return them.\n        Return zero-length string on EOF.\"\"\"\n\n        self._checkClosed()\n        if self._sslobj is None:\n            raise ValueError(\"Read on closed or unwrapped SSL socket.\")\n        try:\n            if buffer is not None:\n                return self._sslobj.read(len, buffer)\n            else:\n                return self._sslobj.read(len)\n        except SSLError as x:\n            if x.args[0] == SSL_ERROR_EOF and self.suppress_ragged_eofs:\n                if buffer is not None:\n                    return 0\n                else:\n                    return b''\n            else:\n                raise\n\n    def write(self, data):\n        \"\"\"Write DATA to the underlying SSL channel.  Returns\n        number of bytes of DATA actually transmitted.\"\"\"\n\n        self._checkClosed()\n        if self._sslobj is None:\n            raise ValueError(\"Write on closed or unwrapped SSL socket.\")\n        return self._sslobj.write(data)\n\n    @_sslcopydoc\n    def getpeercert(self, binary_form=False):\n        self._checkClosed()\n        self._check_connected()\n        return self._sslobj.getpeercert(binary_form)\n\n    @_sslcopydoc\n    def selected_npn_protocol(self):\n        self._checkClosed()\n        if self._sslobj is None or not _ssl.HAS_NPN:\n            return None\n        else:\n            return self._sslobj.selected_npn_protocol()\n\n    @_sslcopydoc\n    def selected_alpn_protocol(self):\n        self._checkClosed()\n        if self._sslobj is None or not _ssl.HAS_ALPN:\n            return None\n        else:\n            return self._sslobj.selected_alpn_protocol()\n\n    @_sslcopydoc\n    def cipher(self):\n        self._checkClosed()\n        if self._sslobj is None:\n            return None\n        else:\n            return self._sslobj.cipher()\n\n    @_sslcopydoc\n    def shared_ciphers(self):\n        self._checkClosed()\n        if self._sslobj is None:\n            return None\n        else:\n            return self._sslobj.shared_ciphers()\n\n    @_sslcopydoc\n    def compression(self):\n        self._checkClosed()\n        if self._sslobj is None:\n            return None\n        else:\n            return self._sslobj.compression()\n\n    def send(self, data, flags=0):\n        self._checkClosed()\n        if self._sslobj is not None:\n            if flags != 0:\n                raise ValueError(\n                    \"non-zero flags not allowed in calls to send() on %s\" %\n                    self.__class__)\n            return self._sslobj.write(data)\n        else:\n            return super().send(data, flags)\n\n    def sendto(self, data, flags_or_addr, addr=None):\n        self._checkClosed()\n        if self._sslobj is not None:\n            raise ValueError(\"sendto not allowed on instances of %s\" %\n                             self.__class__)\n        elif addr is None:\n            return super().sendto(data, flags_or_addr)\n        else:\n            return super().sendto(data, flags_or_addr, addr)\n\n    def sendmsg(self, *args, **kwargs):\n        # Ensure programs don't send data unencrypted if they try to\n        # use this method.\n        raise NotImplementedError(\"sendmsg not allowed on instances of %s\" %\n                                  self.__class__)\n\n    def sendall(self, data, flags=0):\n        self._checkClosed()\n        if self._sslobj is not None:\n            if flags != 0:\n                raise ValueError(\n                    \"non-zero flags not allowed in calls to sendall() on %s\" %\n                    self.__class__)\n            count = 0\n            with memoryview(data) as view, view.cast(\"B\") as byte_view:\n                amount = len(byte_view)\n                while count < amount:\n                    v = self.send(byte_view[count:])\n                    count += v\n        else:\n            return super().sendall(data, flags)\n\n    def sendfile(self, file, offset=0, count=None):\n        \"\"\"Send a file, possibly by using os.sendfile() if this is a\n        clear-text socket.  Return the total number of bytes sent.\n        \"\"\"\n        if self._sslobj is not None:\n            return self._sendfile_use_send(file, offset, count)\n        else:\n            # os.sendfile() works with plain sockets only\n            return super().sendfile(file, offset, count)\n\n    def recv(self, buflen=1024, flags=0):\n        self._checkClosed()\n        if self._sslobj is not None:\n            if flags != 0:\n                raise ValueError(\n                    \"non-zero flags not allowed in calls to recv() on %s\" %\n                    self.__class__)\n            return self.read(buflen)\n        else:\n            return super().recv(buflen, flags)\n\n    def recv_into(self, buffer, nbytes=None, flags=0):\n        self._checkClosed()\n        if buffer and (nbytes is None):\n            nbytes = len(buffer)\n        elif nbytes is None:\n            nbytes = 1024\n        if self._sslobj is not None:\n            if flags != 0:\n                raise ValueError(\n                  \"non-zero flags not allowed in calls to recv_into() on %s\" %\n                  self.__class__)\n            return self.read(nbytes, buffer)\n        else:\n            return super().recv_into(buffer, nbytes, flags)\n\n    def recvfrom(self, buflen=1024, flags=0):\n        self._checkClosed()\n        if self._sslobj is not None:\n            raise ValueError(\"recvfrom not allowed on instances of %s\" %\n                             self.__class__)\n        else:\n            return super().recvfrom(buflen, flags)\n\n    def recvfrom_into(self, buffer, nbytes=None, flags=0):\n        self._checkClosed()\n        if self._sslobj is not None:\n            raise ValueError(\"recvfrom_into not allowed on instances of %s\" %\n                             self.__class__)\n        else:\n            return super().recvfrom_into(buffer, nbytes, flags)\n\n    def recvmsg(self, *args, **kwargs):\n        raise NotImplementedError(\"recvmsg not allowed on instances of %s\" %\n                                  self.__class__)\n\n    def recvmsg_into(self, *args, **kwargs):\n        raise NotImplementedError(\"recvmsg_into not allowed on instances of \"\n                                  \"%s\" % self.__class__)\n\n    @_sslcopydoc\n    def pending(self):\n        self._checkClosed()\n        if self._sslobj is not None:\n            return self._sslobj.pending()\n        else:\n            return 0\n\n    def shutdown(self, how):\n        self._checkClosed()\n        self._sslobj = None\n        super().shutdown(how)\n\n    @_sslcopydoc\n    def unwrap(self):\n        if self._sslobj:\n            s = self._sslobj.shutdown()\n            self._sslobj = None\n            return s\n        else:\n            raise ValueError(\"No SSL wrapper around \" + str(self))\n\n    @_sslcopydoc\n    def verify_client_post_handshake(self):\n        if self._sslobj:\n            return self._sslobj.verify_client_post_handshake()\n        else:\n            raise ValueError(\"No SSL wrapper around \" + str(self))\n\n    def _real_close(self):\n        self._sslobj = None\n        super()._real_close()\n\n    @_sslcopydoc\n    def do_handshake(self, block=False):\n        self._check_connected()\n        timeout = self.gettimeout()\n        try:\n            if timeout == 0.0 and block:\n                self.settimeout(None)\n            self._sslobj.do_handshake()\n        finally:\n            self.settimeout(timeout)\n\n    def _real_connect(self, addr, connect_ex):\n        if self.server_side:\n            raise ValueError(\"can't connect in server-side mode\")\n        # Here we assume that the socket is client-side, and not\n        # connected at the time of the call.  We connect it, then wrap it.\n        if self._connected or self._sslobj is not None:\n            raise ValueError(\"attempt to connect already-connected SSLSocket!\")\n        self._sslobj = self.context._wrap_socket(\n            self, False, self.server_hostname,\n            owner=self, session=self._session\n        )\n        try:\n            if connect_ex:\n                rc = super().connect_ex(addr)\n            else:\n                rc = None\n                super().connect(addr)\n            if not rc:\n                self._connected = True\n                if self.do_handshake_on_connect:\n                    self.do_handshake()\n            return rc\n        except (OSError, ValueError):\n            self._sslobj = None\n            raise\n\n    def connect(self, addr):\n        \"\"\"Connects to remote ADDR, and then wraps the connection in\n        an SSL channel.\"\"\"\n        self._real_connect(addr, False)\n\n    def connect_ex(self, addr):\n        \"\"\"Connects to remote ADDR, and then wraps the connection in\n        an SSL channel.\"\"\"\n        return self._real_connect(addr, True)\n\n    def accept(self):\n        \"\"\"Accepts a new connection from a remote client, and returns\n        a tuple containing that new connection wrapped with a server-side\n        SSL channel, and the address of the remote client.\"\"\"\n\n        newsock, addr = super().accept()\n        newsock = self.context.wrap_socket(newsock,\n                    do_handshake_on_connect=self.do_handshake_on_connect,\n                    suppress_ragged_eofs=self.suppress_ragged_eofs,\n                    server_side=True)\n        return newsock, addr\n\n    @_sslcopydoc\n    def get_channel_binding(self, cb_type=\"tls-unique\"):\n        if self._sslobj is not None:\n            return self._sslobj.get_channel_binding(cb_type)\n        else:\n            if cb_type not in CHANNEL_BINDING_TYPES:\n                raise ValueError(\n                    \"{0} channel binding type not implemented\".format(cb_type)\n                )\n            return None\n\n    @_sslcopydoc\n    def version(self):\n        if self._sslobj is not None:\n            return self._sslobj.version()\n        else:\n            return None\n\n\n# Python does not support forward declaration of types.\nSSLContext.sslsocket_class = SSLSocket\nSSLContext.sslobject_class = SSLObject\n\n\ndef wrap_socket(sock, keyfile=None, certfile=None,\n                server_side=False, cert_reqs=CERT_NONE,\n                ssl_version=PROTOCOL_TLS, ca_certs=None,\n                do_handshake_on_connect=True,\n                suppress_ragged_eofs=True,\n                ciphers=None):\n\n    if server_side and not certfile:\n        raise ValueError(\"certfile must be specified for server-side \"\n                         \"operations\")\n    if keyfile and not certfile:\n        raise ValueError(\"certfile must be specified\")\n    context = SSLContext(ssl_version)\n    context.verify_mode = cert_reqs\n    if ca_certs:\n        context.load_verify_locations(ca_certs)\n    if certfile:\n        context.load_cert_chain(certfile, keyfile)\n    if ciphers:\n        context.set_ciphers(ciphers)\n    return context.wrap_socket(\n        sock=sock, server_side=server_side,\n        do_handshake_on_connect=do_handshake_on_connect,\n        suppress_ragged_eofs=suppress_ragged_eofs\n    )\n\n# some utility functions\n\ndef cert_time_to_seconds(cert_time):\n    \"\"\"Return the time in seconds since the Epoch, given the timestring\n    representing the \"notBefore\" or \"notAfter\" date from a certificate\n    in ``\"%b %d %H:%M:%S %Y %Z\"`` strptime format (C locale).\n\n    \"notBefore\" or \"notAfter\" dates must use UTC (RFC 5280).\n\n    Month is one of: Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec\n    UTC should be specified as GMT (see ASN1_TIME_print())\n    \"\"\"\n    from time import strptime\n    from calendar import timegm\n\n    months = (\n        \"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\n        \"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"\n    )\n    time_format = ' %d %H:%M:%S %Y GMT' # NOTE: no month, fixed GMT\n    try:\n        month_number = months.index(cert_time[:3].title()) + 1\n    except ValueError:\n        raise ValueError('time data %r does not match '\n                         'format \"%%b%s\"' % (cert_time, time_format))\n    else:\n        # found valid month\n        tt = strptime(cert_time[3:], time_format)\n        # return an integer, the previous mktime()-based implementation\n        # returned a float (fractional seconds are always zero here).\n        return timegm((tt[0], month_number) + tt[2:6])\n\nPEM_HEADER = \"-----BEGIN CERTIFICATE-----\"\nPEM_FOOTER = \"-----END CERTIFICATE-----\"\n\ndef DER_cert_to_PEM_cert(der_cert_bytes):\n    \"\"\"Takes a certificate in binary DER format and returns the\n    PEM version of it as a string.\"\"\"\n\n    f = str(base64.standard_b64encode(der_cert_bytes), 'ASCII', 'strict')\n    ss = [PEM_HEADER]\n    ss += [f[i:i+64] for i in range(0, len(f), 64)]\n    ss.append(PEM_FOOTER + '\\n')\n    return '\\n'.join(ss)\n\ndef PEM_cert_to_DER_cert(pem_cert_string):\n    \"\"\"Takes a certificate in ASCII PEM format and returns the\n    DER-encoded version of it as a byte sequence\"\"\"\n\n    if not pem_cert_string.startswith(PEM_HEADER):\n        raise ValueError(\"Invalid PEM encoding; must start with %s\"\n                         % PEM_HEADER)\n    if not pem_cert_string.strip().endswith(PEM_FOOTER):\n        raise ValueError(\"Invalid PEM encoding; must end with %s\"\n                         % PEM_FOOTER)\n    d = pem_cert_string.strip()[len(PEM_HEADER):-len(PEM_FOOTER)]\n    return base64.decodebytes(d.encode('ASCII', 'strict'))\n\ndef get_server_certificate(addr, ssl_version=PROTOCOL_TLS, ca_certs=None):\n    \"\"\"Retrieve the certificate from the server at the specified address,\n    and return it as a PEM-encoded string.\n    If 'ca_certs' is specified, validate the server cert against it.\n    If 'ssl_version' is specified, use it in the connection attempt.\"\"\"\n\n    host, port = addr\n    if ca_certs is not None:\n        cert_reqs = CERT_REQUIRED\n    else:\n        cert_reqs = CERT_NONE\n    context = _create_stdlib_context(ssl_version,\n                                     cert_reqs=cert_reqs,\n                                     cafile=ca_certs)\n    with  create_connection(addr) as sock:\n        with context.wrap_socket(sock) as sslsock:\n            dercert = sslsock.getpeercert(True)\n    return DER_cert_to_PEM_cert(dercert)\n\ndef get_protocol_name(protocol_code):\n    return _PROTOCOL_NAMES.get(protocol_code, '<unknown>')\n"
  },
  {
    "path": "rd/usr/lib/python3.8/stat.py",
    "content": "\"\"\"Constants/functions for interpreting results of os.stat() and os.lstat().\n\nSuggested usage: from stat import *\n\"\"\"\n\n# Indices for stat struct members in the tuple returned by os.stat()\n\nST_MODE  = 0\nST_INO   = 1\nST_DEV   = 2\nST_NLINK = 3\nST_UID   = 4\nST_GID   = 5\nST_SIZE  = 6\nST_ATIME = 7\nST_MTIME = 8\nST_CTIME = 9\n\n# Extract bits from the mode\n\ndef S_IMODE(mode):\n    \"\"\"Return the portion of the file's mode that can be set by\n    os.chmod().\n    \"\"\"\n    return mode & 0o7777\n\ndef S_IFMT(mode):\n    \"\"\"Return the portion of the file's mode that describes the\n    file type.\n    \"\"\"\n    return mode & 0o170000\n\n# Constants used as S_IFMT() for various file types\n# (not all are implemented on all systems)\n\nS_IFDIR  = 0o040000  # directory\nS_IFCHR  = 0o020000  # character device\nS_IFBLK  = 0o060000  # block device\nS_IFREG  = 0o100000  # regular file\nS_IFIFO  = 0o010000  # fifo (named pipe)\nS_IFLNK  = 0o120000  # symbolic link\nS_IFSOCK = 0o140000  # socket file\n# Fallbacks for uncommon platform-specific constants\nS_IFDOOR = 0\nS_IFPORT = 0\nS_IFWHT = 0\n\n# Functions to test for each file type\n\ndef S_ISDIR(mode):\n    \"\"\"Return True if mode is from a directory.\"\"\"\n    return S_IFMT(mode) == S_IFDIR\n\ndef S_ISCHR(mode):\n    \"\"\"Return True if mode is from a character special device file.\"\"\"\n    return S_IFMT(mode) == S_IFCHR\n\ndef S_ISBLK(mode):\n    \"\"\"Return True if mode is from a block special device file.\"\"\"\n    return S_IFMT(mode) == S_IFBLK\n\ndef S_ISREG(mode):\n    \"\"\"Return True if mode is from a regular file.\"\"\"\n    return S_IFMT(mode) == S_IFREG\n\ndef S_ISFIFO(mode):\n    \"\"\"Return True if mode is from a FIFO (named pipe).\"\"\"\n    return S_IFMT(mode) == S_IFIFO\n\ndef S_ISLNK(mode):\n    \"\"\"Return True if mode is from a symbolic link.\"\"\"\n    return S_IFMT(mode) == S_IFLNK\n\ndef S_ISSOCK(mode):\n    \"\"\"Return True if mode is from a socket.\"\"\"\n    return S_IFMT(mode) == S_IFSOCK\n\ndef S_ISDOOR(mode):\n    \"\"\"Return True if mode is from a door.\"\"\"\n    return False\n\ndef S_ISPORT(mode):\n    \"\"\"Return True if mode is from an event port.\"\"\"\n    return False\n\ndef S_ISWHT(mode):\n    \"\"\"Return True if mode is from a whiteout.\"\"\"\n    return False\n\n# Names for permission bits\n\nS_ISUID = 0o4000  # set UID bit\nS_ISGID = 0o2000  # set GID bit\nS_ENFMT = S_ISGID # file locking enforcement\nS_ISVTX = 0o1000  # sticky bit\nS_IREAD = 0o0400  # Unix V7 synonym for S_IRUSR\nS_IWRITE = 0o0200 # Unix V7 synonym for S_IWUSR\nS_IEXEC = 0o0100  # Unix V7 synonym for S_IXUSR\nS_IRWXU = 0o0700  # mask for owner permissions\nS_IRUSR = 0o0400  # read by owner\nS_IWUSR = 0o0200  # write by owner\nS_IXUSR = 0o0100  # execute by owner\nS_IRWXG = 0o0070  # mask for group permissions\nS_IRGRP = 0o0040  # read by group\nS_IWGRP = 0o0020  # write by group\nS_IXGRP = 0o0010  # execute by group\nS_IRWXO = 0o0007  # mask for others (not in group) permissions\nS_IROTH = 0o0004  # read by others\nS_IWOTH = 0o0002  # write by others\nS_IXOTH = 0o0001  # execute by others\n\n# Names for file flags\n\nUF_NODUMP    = 0x00000001  # do not dump file\nUF_IMMUTABLE = 0x00000002  # file may not be changed\nUF_APPEND    = 0x00000004  # file may only be appended to\nUF_OPAQUE    = 0x00000008  # directory is opaque when viewed through a union stack\nUF_NOUNLINK  = 0x00000010  # file may not be renamed or deleted\nUF_COMPRESSED = 0x00000020 # OS X: file is hfs-compressed\nUF_HIDDEN    = 0x00008000  # OS X: file should not be displayed\nSF_ARCHIVED  = 0x00010000  # file may be archived\nSF_IMMUTABLE = 0x00020000  # file may not be changed\nSF_APPEND    = 0x00040000  # file may only be appended to\nSF_NOUNLINK  = 0x00100000  # file may not be renamed or deleted\nSF_SNAPSHOT  = 0x00200000  # file is a snapshot file\n\n\n_filemode_table = (\n    ((S_IFLNK,         \"l\"),\n     (S_IFSOCK,        \"s\"),  # Must appear before IFREG and IFDIR as IFSOCK == IFREG | IFDIR\n     (S_IFREG,         \"-\"),\n     (S_IFBLK,         \"b\"),\n     (S_IFDIR,         \"d\"),\n     (S_IFCHR,         \"c\"),\n     (S_IFIFO,         \"p\")),\n\n    ((S_IRUSR,         \"r\"),),\n    ((S_IWUSR,         \"w\"),),\n    ((S_IXUSR|S_ISUID, \"s\"),\n     (S_ISUID,         \"S\"),\n     (S_IXUSR,         \"x\")),\n\n    ((S_IRGRP,         \"r\"),),\n    ((S_IWGRP,         \"w\"),),\n    ((S_IXGRP|S_ISGID, \"s\"),\n     (S_ISGID,         \"S\"),\n     (S_IXGRP,         \"x\")),\n\n    ((S_IROTH,         \"r\"),),\n    ((S_IWOTH,         \"w\"),),\n    ((S_IXOTH|S_ISVTX, \"t\"),\n     (S_ISVTX,         \"T\"),\n     (S_IXOTH,         \"x\"))\n)\n\ndef filemode(mode):\n    \"\"\"Convert a file's mode to a string of the form '-rwxrwxrwx'.\"\"\"\n    perm = []\n    for table in _filemode_table:\n        for bit, char in table:\n            if mode & bit == bit:\n                perm.append(char)\n                break\n        else:\n            perm.append(\"-\")\n    return \"\".join(perm)\n\n\n# Windows FILE_ATTRIBUTE constants for interpreting os.stat()'s\n# \"st_file_attributes\" member\n\nFILE_ATTRIBUTE_ARCHIVE = 32\nFILE_ATTRIBUTE_COMPRESSED = 2048\nFILE_ATTRIBUTE_DEVICE = 64\nFILE_ATTRIBUTE_DIRECTORY = 16\nFILE_ATTRIBUTE_ENCRYPTED = 16384\nFILE_ATTRIBUTE_HIDDEN = 2\nFILE_ATTRIBUTE_INTEGRITY_STREAM = 32768\nFILE_ATTRIBUTE_NORMAL = 128\nFILE_ATTRIBUTE_NOT_CONTENT_INDEXED = 8192\nFILE_ATTRIBUTE_NO_SCRUB_DATA = 131072\nFILE_ATTRIBUTE_OFFLINE = 4096\nFILE_ATTRIBUTE_READONLY = 1\nFILE_ATTRIBUTE_REPARSE_POINT = 1024\nFILE_ATTRIBUTE_SPARSE_FILE = 512\nFILE_ATTRIBUTE_SYSTEM = 4\nFILE_ATTRIBUTE_TEMPORARY = 256\nFILE_ATTRIBUTE_VIRTUAL = 65536\n\n\n# If available, use C implementation\ntry:\n    from _stat import *\nexcept ImportError:\n    pass\n"
  },
  {
    "path": "rd/usr/lib/python3.8/statistics.py",
    "content": "\"\"\"\nBasic statistics module.\n\nThis module provides functions for calculating statistics of data, including\naverages, variance, and standard deviation.\n\nCalculating averages\n--------------------\n\n==================  ==================================================\nFunction            Description\n==================  ==================================================\nmean                Arithmetic mean (average) of data.\nfmean               Fast, floating point arithmetic mean.\ngeometric_mean      Geometric mean of data.\nharmonic_mean       Harmonic mean of data.\nmedian              Median (middle value) of data.\nmedian_low          Low median of data.\nmedian_high         High median of data.\nmedian_grouped      Median, or 50th percentile, of grouped data.\nmode                Mode (most common value) of data.\nmultimode           List of modes (most common values of data).\nquantiles           Divide data into intervals with equal probability.\n==================  ==================================================\n\nCalculate the arithmetic mean (\"the average\") of data:\n\n>>> mean([-1.0, 2.5, 3.25, 5.75])\n2.625\n\n\nCalculate the standard median of discrete data:\n\n>>> median([2, 3, 4, 5])\n3.5\n\n\nCalculate the median, or 50th percentile, of data grouped into class intervals\ncentred on the data values provided. E.g. if your data points are rounded to\nthe nearest whole number:\n\n>>> median_grouped([2, 2, 3, 3, 3, 4])  #doctest: +ELLIPSIS\n2.8333333333...\n\nThis should be interpreted in this way: you have two data points in the class\ninterval 1.5-2.5, three data points in the class interval 2.5-3.5, and one in\nthe class interval 3.5-4.5. The median of these data points is 2.8333...\n\n\nCalculating variability or spread\n---------------------------------\n\n==================  =============================================\nFunction            Description\n==================  =============================================\npvariance           Population variance of data.\nvariance            Sample variance of data.\npstdev              Population standard deviation of data.\nstdev               Sample standard deviation of data.\n==================  =============================================\n\nCalculate the standard deviation of sample data:\n\n>>> stdev([2.5, 3.25, 5.5, 11.25, 11.75])  #doctest: +ELLIPSIS\n4.38961843444...\n\nIf you have previously calculated the mean, you can pass it as the optional\nsecond argument to the four \"spread\" functions to avoid recalculating it:\n\n>>> data = [1, 2, 2, 4, 4, 4, 5, 6]\n>>> mu = mean(data)\n>>> pvariance(data, mu)\n2.5\n\n\nExceptions\n----------\n\nA single exception is defined: StatisticsError is a subclass of ValueError.\n\n\"\"\"\n\n__all__ = [\n    'NormalDist',\n    'StatisticsError',\n    'fmean',\n    'geometric_mean',\n    'harmonic_mean',\n    'mean',\n    'median',\n    'median_grouped',\n    'median_high',\n    'median_low',\n    'mode',\n    'multimode',\n    'pstdev',\n    'pvariance',\n    'quantiles',\n    'stdev',\n    'variance',\n]\n\nimport math\nimport numbers\nimport random\n\nfrom fractions import Fraction\nfrom decimal import Decimal\nfrom itertools import groupby\nfrom bisect import bisect_left, bisect_right\nfrom math import hypot, sqrt, fabs, exp, erf, tau, log, fsum\nfrom operator import itemgetter\nfrom collections import Counter\n\n# === Exceptions ===\n\nclass StatisticsError(ValueError):\n    pass\n\n\n# === Private utilities ===\n\ndef _sum(data, start=0):\n    \"\"\"_sum(data [, start]) -> (type, sum, count)\n\n    Return a high-precision sum of the given numeric data as a fraction,\n    together with the type to be converted to and the count of items.\n\n    If optional argument ``start`` is given, it is added to the total.\n    If ``data`` is empty, ``start`` (defaulting to 0) is returned.\n\n\n    Examples\n    --------\n\n    >>> _sum([3, 2.25, 4.5, -0.5, 1.0], 0.75)\n    (<class 'float'>, Fraction(11, 1), 5)\n\n    Some sources of round-off error will be avoided:\n\n    # Built-in sum returns zero.\n    >>> _sum([1e50, 1, -1e50] * 1000)\n    (<class 'float'>, Fraction(1000, 1), 3000)\n\n    Fractions and Decimals are also supported:\n\n    >>> from fractions import Fraction as F\n    >>> _sum([F(2, 3), F(7, 5), F(1, 4), F(5, 6)])\n    (<class 'fractions.Fraction'>, Fraction(63, 20), 4)\n\n    >>> from decimal import Decimal as D\n    >>> data = [D(\"0.1375\"), D(\"0.2108\"), D(\"0.3061\"), D(\"0.0419\")]\n    >>> _sum(data)\n    (<class 'decimal.Decimal'>, Fraction(6963, 10000), 4)\n\n    Mixed types are currently treated as an error, except that int is\n    allowed.\n    \"\"\"\n    count = 0\n    n, d = _exact_ratio(start)\n    partials = {d: n}\n    partials_get = partials.get\n    T = _coerce(int, type(start))\n    for typ, values in groupby(data, type):\n        T = _coerce(T, typ)  # or raise TypeError\n        for n,d in map(_exact_ratio, values):\n            count += 1\n            partials[d] = partials_get(d, 0) + n\n    if None in partials:\n        # The sum will be a NAN or INF. We can ignore all the finite\n        # partials, and just look at this special one.\n        total = partials[None]\n        assert not _isfinite(total)\n    else:\n        # Sum all the partial sums using builtin sum.\n        # FIXME is this faster if we sum them in order of the denominator?\n        total = sum(Fraction(n, d) for d, n in sorted(partials.items()))\n    return (T, total, count)\n\n\ndef _isfinite(x):\n    try:\n        return x.is_finite()  # Likely a Decimal.\n    except AttributeError:\n        return math.isfinite(x)  # Coerces to float first.\n\n\ndef _coerce(T, S):\n    \"\"\"Coerce types T and S to a common type, or raise TypeError.\n\n    Coercion rules are currently an implementation detail. See the CoerceTest\n    test class in test_statistics for details.\n    \"\"\"\n    # See http://bugs.python.org/issue24068.\n    assert T is not bool, \"initial type T is bool\"\n    # If the types are the same, no need to coerce anything. Put this\n    # first, so that the usual case (no coercion needed) happens as soon\n    # as possible.\n    if T is S:  return T\n    # Mixed int & other coerce to the other type.\n    if S is int or S is bool:  return T\n    if T is int:  return S\n    # If one is a (strict) subclass of the other, coerce to the subclass.\n    if issubclass(S, T):  return S\n    if issubclass(T, S):  return T\n    # Ints coerce to the other type.\n    if issubclass(T, int):  return S\n    if issubclass(S, int):  return T\n    # Mixed fraction & float coerces to float (or float subclass).\n    if issubclass(T, Fraction) and issubclass(S, float):\n        return S\n    if issubclass(T, float) and issubclass(S, Fraction):\n        return T\n    # Any other combination is disallowed.\n    msg = \"don't know how to coerce %s and %s\"\n    raise TypeError(msg % (T.__name__, S.__name__))\n\n\ndef _exact_ratio(x):\n    \"\"\"Return Real number x to exact (numerator, denominator) pair.\n\n    >>> _exact_ratio(0.25)\n    (1, 4)\n\n    x is expected to be an int, Fraction, Decimal or float.\n    \"\"\"\n    try:\n        # Optimise the common case of floats. We expect that the most often\n        # used numeric type will be builtin floats, so try to make this as\n        # fast as possible.\n        if type(x) is float or type(x) is Decimal:\n            return x.as_integer_ratio()\n        try:\n            # x may be an int, Fraction, or Integral ABC.\n            return (x.numerator, x.denominator)\n        except AttributeError:\n            try:\n                # x may be a float or Decimal subclass.\n                return x.as_integer_ratio()\n            except AttributeError:\n                # Just give up?\n                pass\n    except (OverflowError, ValueError):\n        # float NAN or INF.\n        assert not _isfinite(x)\n        return (x, None)\n    msg = \"can't convert type '{}' to numerator/denominator\"\n    raise TypeError(msg.format(type(x).__name__))\n\n\ndef _convert(value, T):\n    \"\"\"Convert value to given numeric type T.\"\"\"\n    if type(value) is T:\n        # This covers the cases where T is Fraction, or where value is\n        # a NAN or INF (Decimal or float).\n        return value\n    if issubclass(T, int) and value.denominator != 1:\n        T = float\n    try:\n        # FIXME: what do we do if this overflows?\n        return T(value)\n    except TypeError:\n        if issubclass(T, Decimal):\n            return T(value.numerator)/T(value.denominator)\n        else:\n            raise\n\n\ndef _find_lteq(a, x):\n    'Locate the leftmost value exactly equal to x'\n    i = bisect_left(a, x)\n    if i != len(a) and a[i] == x:\n        return i\n    raise ValueError\n\n\ndef _find_rteq(a, l, x):\n    'Locate the rightmost value exactly equal to x'\n    i = bisect_right(a, x, lo=l)\n    if i != (len(a)+1) and a[i-1] == x:\n        return i-1\n    raise ValueError\n\n\ndef _fail_neg(values, errmsg='negative value'):\n    \"\"\"Iterate over values, failing if any are less than zero.\"\"\"\n    for x in values:\n        if x < 0:\n            raise StatisticsError(errmsg)\n        yield x\n\n\n# === Measures of central tendency (averages) ===\n\ndef mean(data):\n    \"\"\"Return the sample arithmetic mean of data.\n\n    >>> mean([1, 2, 3, 4, 4])\n    2.8\n\n    >>> from fractions import Fraction as F\n    >>> mean([F(3, 7), F(1, 21), F(5, 3), F(1, 3)])\n    Fraction(13, 21)\n\n    >>> from decimal import Decimal as D\n    >>> mean([D(\"0.5\"), D(\"0.75\"), D(\"0.625\"), D(\"0.375\")])\n    Decimal('0.5625')\n\n    If ``data`` is empty, StatisticsError will be raised.\n    \"\"\"\n    if iter(data) is data:\n        data = list(data)\n    n = len(data)\n    if n < 1:\n        raise StatisticsError('mean requires at least one data point')\n    T, total, count = _sum(data)\n    assert count == n\n    return _convert(total/n, T)\n\n\ndef fmean(data):\n    \"\"\"Convert data to floats and compute the arithmetic mean.\n\n    This runs faster than the mean() function and it always returns a float.\n    If the input dataset is empty, it raises a StatisticsError.\n\n    >>> fmean([3.5, 4.0, 5.25])\n    4.25\n    \"\"\"\n    try:\n        n = len(data)\n    except TypeError:\n        # Handle iterators that do not define __len__().\n        n = 0\n        def count(iterable):\n            nonlocal n\n            for n, x in enumerate(iterable, start=1):\n                yield x\n        total = fsum(count(data))\n    else:\n        total = fsum(data)\n    try:\n        return total / n\n    except ZeroDivisionError:\n        raise StatisticsError('fmean requires at least one data point') from None\n\n\ndef geometric_mean(data):\n    \"\"\"Convert data to floats and compute the geometric mean.\n\n    Raises a StatisticsError if the input dataset is empty,\n    if it contains a zero, or if it contains a negative value.\n\n    No special efforts are made to achieve exact results.\n    (However, this may change in the future.)\n\n    >>> round(geometric_mean([54, 24, 36]), 9)\n    36.0\n    \"\"\"\n    try:\n        return exp(fmean(map(log, data)))\n    except ValueError:\n        raise StatisticsError('geometric mean requires a non-empty dataset '\n                              ' containing positive numbers') from None\n\n\ndef harmonic_mean(data):\n    \"\"\"Return the harmonic mean of data.\n\n    The harmonic mean, sometimes called the subcontrary mean, is the\n    reciprocal of the arithmetic mean of the reciprocals of the data,\n    and is often appropriate when averaging quantities which are rates\n    or ratios, for example speeds. Example:\n\n    Suppose an investor purchases an equal value of shares in each of\n    three companies, with P/E (price/earning) ratios of 2.5, 3 and 10.\n    What is the average P/E ratio for the investor's portfolio?\n\n    >>> harmonic_mean([2.5, 3, 10])  # For an equal investment portfolio.\n    3.6\n\n    Using the arithmetic mean would give an average of about 5.167, which\n    is too high.\n\n    If ``data`` is empty, or any element is less than zero,\n    ``harmonic_mean`` will raise ``StatisticsError``.\n    \"\"\"\n    # For a justification for using harmonic mean for P/E ratios, see\n    # http://fixthepitch.pellucid.com/comps-analysis-the-missing-harmony-of-summary-statistics/\n    # http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2621087\n    if iter(data) is data:\n        data = list(data)\n    errmsg = 'harmonic mean does not support negative values'\n    n = len(data)\n    if n < 1:\n        raise StatisticsError('harmonic_mean requires at least one data point')\n    elif n == 1:\n        x = data[0]\n        if isinstance(x, (numbers.Real, Decimal)):\n            if x < 0:\n                raise StatisticsError(errmsg)\n            return x\n        else:\n            raise TypeError('unsupported type')\n    try:\n        T, total, count = _sum(1/x for x in _fail_neg(data, errmsg))\n    except ZeroDivisionError:\n        return 0\n    assert count == n\n    return _convert(n/total, T)\n\n\n# FIXME: investigate ways to calculate medians without sorting? Quickselect?\ndef median(data):\n    \"\"\"Return the median (middle value) of numeric data.\n\n    When the number of data points is odd, return the middle data point.\n    When the number of data points is even, the median is interpolated by\n    taking the average of the two middle values:\n\n    >>> median([1, 3, 5])\n    3\n    >>> median([1, 3, 5, 7])\n    4.0\n\n    \"\"\"\n    data = sorted(data)\n    n = len(data)\n    if n == 0:\n        raise StatisticsError(\"no median for empty data\")\n    if n%2 == 1:\n        return data[n//2]\n    else:\n        i = n//2\n        return (data[i - 1] + data[i])/2\n\n\ndef median_low(data):\n    \"\"\"Return the low median of numeric data.\n\n    When the number of data points is odd, the middle value is returned.\n    When it is even, the smaller of the two middle values is returned.\n\n    >>> median_low([1, 3, 5])\n    3\n    >>> median_low([1, 3, 5, 7])\n    3\n\n    \"\"\"\n    data = sorted(data)\n    n = len(data)\n    if n == 0:\n        raise StatisticsError(\"no median for empty data\")\n    if n%2 == 1:\n        return data[n//2]\n    else:\n        return data[n//2 - 1]\n\n\ndef median_high(data):\n    \"\"\"Return the high median of data.\n\n    When the number of data points is odd, the middle value is returned.\n    When it is even, the larger of the two middle values is returned.\n\n    >>> median_high([1, 3, 5])\n    3\n    >>> median_high([1, 3, 5, 7])\n    5\n\n    \"\"\"\n    data = sorted(data)\n    n = len(data)\n    if n == 0:\n        raise StatisticsError(\"no median for empty data\")\n    return data[n//2]\n\n\ndef median_grouped(data, interval=1):\n    \"\"\"Return the 50th percentile (median) of grouped continuous data.\n\n    >>> median_grouped([1, 2, 2, 3, 4, 4, 4, 4, 4, 5])\n    3.7\n    >>> median_grouped([52, 52, 53, 54])\n    52.5\n\n    This calculates the median as the 50th percentile, and should be\n    used when your data is continuous and grouped. In the above example,\n    the values 1, 2, 3, etc. actually represent the midpoint of classes\n    0.5-1.5, 1.5-2.5, 2.5-3.5, etc. The middle value falls somewhere in\n    class 3.5-4.5, and interpolation is used to estimate it.\n\n    Optional argument ``interval`` represents the class interval, and\n    defaults to 1. Changing the class interval naturally will change the\n    interpolated 50th percentile value:\n\n    >>> median_grouped([1, 3, 3, 5, 7], interval=1)\n    3.25\n    >>> median_grouped([1, 3, 3, 5, 7], interval=2)\n    3.5\n\n    This function does not check whether the data points are at least\n    ``interval`` apart.\n    \"\"\"\n    data = sorted(data)\n    n = len(data)\n    if n == 0:\n        raise StatisticsError(\"no median for empty data\")\n    elif n == 1:\n        return data[0]\n    # Find the value at the midpoint. Remember this corresponds to the\n    # centre of the class interval.\n    x = data[n//2]\n    for obj in (x, interval):\n        if isinstance(obj, (str, bytes)):\n            raise TypeError('expected number but got %r' % obj)\n    try:\n        L = x - interval/2  # The lower limit of the median interval.\n    except TypeError:\n        # Mixed type. For now we just coerce to float.\n        L = float(x) - float(interval)/2\n\n    # Uses bisection search to search for x in data with log(n) time complexity\n    # Find the position of leftmost occurrence of x in data\n    l1 = _find_lteq(data, x)\n    # Find the position of rightmost occurrence of x in data[l1...len(data)]\n    # Assuming always l1 <= l2\n    l2 = _find_rteq(data, l1, x)\n    cf = l1\n    f = l2 - l1 + 1\n    return L + interval*(n/2 - cf)/f\n\n\ndef mode(data):\n    \"\"\"Return the most common data point from discrete or nominal data.\n\n    ``mode`` assumes discrete data, and returns a single value. This is the\n    standard treatment of the mode as commonly taught in schools:\n\n        >>> mode([1, 1, 2, 3, 3, 3, 3, 4])\n        3\n\n    This also works with nominal (non-numeric) data:\n\n        >>> mode([\"red\", \"blue\", \"blue\", \"red\", \"green\", \"red\", \"red\"])\n        'red'\n\n    If there are multiple modes with same frequency, return the first one\n    encountered:\n\n        >>> mode(['red', 'red', 'green', 'blue', 'blue'])\n        'red'\n\n    If *data* is empty, ``mode``, raises StatisticsError.\n\n    \"\"\"\n    data = iter(data)\n    pairs = Counter(data).most_common(1)\n    try:\n        return pairs[0][0]\n    except IndexError:\n        raise StatisticsError('no mode for empty data') from None\n\n\ndef multimode(data):\n    \"\"\"Return a list of the most frequently occurring values.\n\n    Will return more than one result if there are multiple modes\n    or an empty list if *data* is empty.\n\n    >>> multimode('aabbbbbbbbcc')\n    ['b']\n    >>> multimode('aabbbbccddddeeffffgg')\n    ['b', 'd', 'f']\n    >>> multimode('')\n    []\n    \"\"\"\n    counts = Counter(iter(data)).most_common()\n    maxcount, mode_items = next(groupby(counts, key=itemgetter(1)), (0, []))\n    return list(map(itemgetter(0), mode_items))\n\n\n# Notes on methods for computing quantiles\n# ----------------------------------------\n#\n# There is no one perfect way to compute quantiles.  Here we offer\n# two methods that serve common needs.  Most other packages\n# surveyed offered at least one or both of these two, making them\n# \"standard\" in the sense of \"widely-adopted and reproducible\".\n# They are also easy to explain, easy to compute manually, and have\n# straight-forward interpretations that aren't surprising.\n\n# The default method is known as \"R6\", \"PERCENTILE.EXC\", or \"expected\n# value of rank order statistics\". The alternative method is known as\n# \"R7\", \"PERCENTILE.INC\", or \"mode of rank order statistics\".\n\n# For sample data where there is a positive probability for values\n# beyond the range of the data, the R6 exclusive method is a\n# reasonable choice.  Consider a random sample of nine values from a\n# population with a uniform distribution from 0.0 to 100.0.  The\n# distribution of the third ranked sample point is described by\n# betavariate(alpha=3, beta=7) which has mode=0.250, median=0.286, and\n# mean=0.300.  Only the latter (which corresponds with R6) gives the\n# desired cut point with 30% of the population falling below that\n# value, making it comparable to a result from an inv_cdf() function.\n# The R6 exclusive method is also idempotent.\n\n# For describing population data where the end points are known to\n# be included in the data, the R7 inclusive method is a reasonable\n# choice.  Instead of the mean, it uses the mode of the beta\n# distribution for the interior points.  Per Hyndman & Fan, \"One nice\n# property is that the vertices of Q7(p) divide the range into n - 1\n# intervals, and exactly 100p% of the intervals lie to the left of\n# Q7(p) and 100(1 - p)% of the intervals lie to the right of Q7(p).\"\n\n# If needed, other methods could be added.  However, for now, the\n# position is that fewer options make for easier choices and that\n# external packages can be used for anything more advanced.\n\ndef quantiles(data, *, n=4, method='exclusive'):\n    \"\"\"Divide *data* into *n* continuous intervals with equal probability.\n\n    Returns a list of (n - 1) cut points separating the intervals.\n\n    Set *n* to 4 for quartiles (the default).  Set *n* to 10 for deciles.\n    Set *n* to 100 for percentiles which gives the 99 cuts points that\n    separate *data* in to 100 equal sized groups.\n\n    The *data* can be any iterable containing sample.\n    The cut points are linearly interpolated between data points.\n\n    If *method* is set to *inclusive*, *data* is treated as population\n    data.  The minimum value is treated as the 0th percentile and the\n    maximum value is treated as the 100th percentile.\n    \"\"\"\n    if n < 1:\n        raise StatisticsError('n must be at least 1')\n    data = sorted(data)\n    ld = len(data)\n    if ld < 2:\n        raise StatisticsError('must have at least two data points')\n    if method == 'inclusive':\n        m = ld - 1\n        result = []\n        for i in range(1, n):\n            j = i * m // n\n            delta = i*m - j*n\n            interpolated = (data[j] * (n - delta) + data[j+1] * delta) / n\n            result.append(interpolated)\n        return result\n    if method == 'exclusive':\n        m = ld + 1\n        result = []\n        for i in range(1, n):\n            j = i * m // n                               # rescale i to m/n\n            j = 1 if j < 1 else ld-1 if j > ld-1 else j  # clamp to 1 .. ld-1\n            delta = i*m - j*n                            # exact integer math\n            interpolated = (data[j-1] * (n - delta) + data[j] * delta) / n\n            result.append(interpolated)\n        return result\n    raise ValueError(f'Unknown method: {method!r}')\n\n\n# === Measures of spread ===\n\n# See http://mathworld.wolfram.com/Variance.html\n#     http://mathworld.wolfram.com/SampleVariance.html\n#     http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance\n#\n# Under no circumstances use the so-called \"computational formula for\n# variance\", as that is only suitable for hand calculations with a small\n# amount of low-precision data. It has terrible numeric properties.\n#\n# See a comparison of three computational methods here:\n# http://www.johndcook.com/blog/2008/09/26/comparing-three-methods-of-computing-standard-deviation/\n\ndef _ss(data, c=None):\n    \"\"\"Return sum of square deviations of sequence data.\n\n    If ``c`` is None, the mean is calculated in one pass, and the deviations\n    from the mean are calculated in a second pass. Otherwise, deviations are\n    calculated from ``c`` as given. Use the second case with care, as it can\n    lead to garbage results.\n    \"\"\"\n    if c is not None:\n        T, total, count = _sum((x-c)**2 for x in data)\n        return (T, total)\n    c = mean(data)\n    T, total, count = _sum((x-c)**2 for x in data)\n    # The following sum should mathematically equal zero, but due to rounding\n    # error may not.\n    U, total2, count2 = _sum((x-c) for x in data)\n    assert T == U and count == count2\n    total -=  total2**2/len(data)\n    assert not total < 0, 'negative sum of square deviations: %f' % total\n    return (T, total)\n\n\ndef variance(data, xbar=None):\n    \"\"\"Return the sample variance of data.\n\n    data should be an iterable of Real-valued numbers, with at least two\n    values. The optional argument xbar, if given, should be the mean of\n    the data. If it is missing or None, the mean is automatically calculated.\n\n    Use this function when your data is a sample from a population. To\n    calculate the variance from the entire population, see ``pvariance``.\n\n    Examples:\n\n    >>> data = [2.75, 1.75, 1.25, 0.25, 0.5, 1.25, 3.5]\n    >>> variance(data)\n    1.3720238095238095\n\n    If you have already calculated the mean of your data, you can pass it as\n    the optional second argument ``xbar`` to avoid recalculating it:\n\n    >>> m = mean(data)\n    >>> variance(data, m)\n    1.3720238095238095\n\n    This function does not check that ``xbar`` is actually the mean of\n    ``data``. Giving arbitrary values for ``xbar`` may lead to invalid or\n    impossible results.\n\n    Decimals and Fractions are supported:\n\n    >>> from decimal import Decimal as D\n    >>> variance([D(\"27.5\"), D(\"30.25\"), D(\"30.25\"), D(\"34.5\"), D(\"41.75\")])\n    Decimal('31.01875')\n\n    >>> from fractions import Fraction as F\n    >>> variance([F(1, 6), F(1, 2), F(5, 3)])\n    Fraction(67, 108)\n\n    \"\"\"\n    if iter(data) is data:\n        data = list(data)\n    n = len(data)\n    if n < 2:\n        raise StatisticsError('variance requires at least two data points')\n    T, ss = _ss(data, xbar)\n    return _convert(ss/(n-1), T)\n\n\ndef pvariance(data, mu=None):\n    \"\"\"Return the population variance of ``data``.\n\n    data should be a sequence or iterable of Real-valued numbers, with at least one\n    value. The optional argument mu, if given, should be the mean of\n    the data. If it is missing or None, the mean is automatically calculated.\n\n    Use this function to calculate the variance from the entire population.\n    To estimate the variance from a sample, the ``variance`` function is\n    usually a better choice.\n\n    Examples:\n\n    >>> data = [0.0, 0.25, 0.25, 1.25, 1.5, 1.75, 2.75, 3.25]\n    >>> pvariance(data)\n    1.25\n\n    If you have already calculated the mean of the data, you can pass it as\n    the optional second argument to avoid recalculating it:\n\n    >>> mu = mean(data)\n    >>> pvariance(data, mu)\n    1.25\n\n    Decimals and Fractions are supported:\n\n    >>> from decimal import Decimal as D\n    >>> pvariance([D(\"27.5\"), D(\"30.25\"), D(\"30.25\"), D(\"34.5\"), D(\"41.75\")])\n    Decimal('24.815')\n\n    >>> from fractions import Fraction as F\n    >>> pvariance([F(1, 4), F(5, 4), F(1, 2)])\n    Fraction(13, 72)\n\n    \"\"\"\n    if iter(data) is data:\n        data = list(data)\n    n = len(data)\n    if n < 1:\n        raise StatisticsError('pvariance requires at least one data point')\n    T, ss = _ss(data, mu)\n    return _convert(ss/n, T)\n\n\ndef stdev(data, xbar=None):\n    \"\"\"Return the square root of the sample variance.\n\n    See ``variance`` for arguments and other details.\n\n    >>> stdev([1.5, 2.5, 2.5, 2.75, 3.25, 4.75])\n    1.0810874155219827\n\n    \"\"\"\n    var = variance(data, xbar)\n    try:\n        return var.sqrt()\n    except AttributeError:\n        return math.sqrt(var)\n\n\ndef pstdev(data, mu=None):\n    \"\"\"Return the square root of the population variance.\n\n    See ``pvariance`` for arguments and other details.\n\n    >>> pstdev([1.5, 2.5, 2.5, 2.75, 3.25, 4.75])\n    0.986893273527251\n\n    \"\"\"\n    var = pvariance(data, mu)\n    try:\n        return var.sqrt()\n    except AttributeError:\n        return math.sqrt(var)\n\n\n## Normal Distribution #####################################################\n\n\ndef _normal_dist_inv_cdf(p, mu, sigma):\n    # There is no closed-form solution to the inverse CDF for the normal\n    # distribution, so we use a rational approximation instead:\n    # Wichura, M.J. (1988). \"Algorithm AS241: The Percentage Points of the\n    # Normal Distribution\".  Applied Statistics. Blackwell Publishing. 37\n    # (3): 477–484. doi:10.2307/2347330. JSTOR 2347330.\n    q = p - 0.5\n    if fabs(q) <= 0.425:\n        r = 0.180625 - q * q\n        # Hash sum: 55.88319_28806_14901_4439\n        num = (((((((2.50908_09287_30122_6727e+3 * r +\n                     3.34305_75583_58812_8105e+4) * r +\n                     6.72657_70927_00870_0853e+4) * r +\n                     4.59219_53931_54987_1457e+4) * r +\n                     1.37316_93765_50946_1125e+4) * r +\n                     1.97159_09503_06551_4427e+3) * r +\n                     1.33141_66789_17843_7745e+2) * r +\n                     3.38713_28727_96366_6080e+0) * q\n        den = (((((((5.22649_52788_52854_5610e+3 * r +\n                     2.87290_85735_72194_2674e+4) * r +\n                     3.93078_95800_09271_0610e+4) * r +\n                     2.12137_94301_58659_5867e+4) * r +\n                     5.39419_60214_24751_1077e+3) * r +\n                     6.87187_00749_20579_0830e+2) * r +\n                     4.23133_30701_60091_1252e+1) * r +\n                     1.0)\n        x = num / den\n        return mu + (x * sigma)\n    r = p if q <= 0.0 else 1.0 - p\n    r = sqrt(-log(r))\n    if r <= 5.0:\n        r = r - 1.6\n        # Hash sum: 49.33206_50330_16102_89036\n        num = (((((((7.74545_01427_83414_07640e-4 * r +\n                     2.27238_44989_26918_45833e-2) * r +\n                     2.41780_72517_74506_11770e-1) * r +\n                     1.27045_82524_52368_38258e+0) * r +\n                     3.64784_83247_63204_60504e+0) * r +\n                     5.76949_72214_60691_40550e+0) * r +\n                     4.63033_78461_56545_29590e+0) * r +\n                     1.42343_71107_49683_57734e+0)\n        den = (((((((1.05075_00716_44416_84324e-9 * r +\n                     5.47593_80849_95344_94600e-4) * r +\n                     1.51986_66563_61645_71966e-2) * r +\n                     1.48103_97642_74800_74590e-1) * r +\n                     6.89767_33498_51000_04550e-1) * r +\n                     1.67638_48301_83803_84940e+0) * r +\n                     2.05319_16266_37758_82187e+0) * r +\n                     1.0)\n    else:\n        r = r - 5.0\n        # Hash sum: 47.52583_31754_92896_71629\n        num = (((((((2.01033_43992_92288_13265e-7 * r +\n                     2.71155_55687_43487_57815e-5) * r +\n                     1.24266_09473_88078_43860e-3) * r +\n                     2.65321_89526_57612_30930e-2) * r +\n                     2.96560_57182_85048_91230e-1) * r +\n                     1.78482_65399_17291_33580e+0) * r +\n                     5.46378_49111_64114_36990e+0) * r +\n                     6.65790_46435_01103_77720e+0)\n        den = (((((((2.04426_31033_89939_78564e-15 * r +\n                     1.42151_17583_16445_88870e-7) * r +\n                     1.84631_83175_10054_68180e-5) * r +\n                     7.86869_13114_56132_59100e-4) * r +\n                     1.48753_61290_85061_48525e-2) * r +\n                     1.36929_88092_27358_05310e-1) * r +\n                     5.99832_20655_58879_37690e-1) * r +\n                     1.0)\n    x = num / den\n    if q < 0.0:\n        x = -x\n    return mu + (x * sigma)\n\n\nclass NormalDist:\n    \"Normal distribution of a random variable\"\n    # https://en.wikipedia.org/wiki/Normal_distribution\n    # https://en.wikipedia.org/wiki/Variance#Properties\n\n    __slots__ = {\n        '_mu': 'Arithmetic mean of a normal distribution',\n        '_sigma': 'Standard deviation of a normal distribution',\n    }\n\n    def __init__(self, mu=0.0, sigma=1.0):\n        \"NormalDist where mu is the mean and sigma is the standard deviation.\"\n        if sigma < 0.0:\n            raise StatisticsError('sigma must be non-negative')\n        self._mu = float(mu)\n        self._sigma = float(sigma)\n\n    @classmethod\n    def from_samples(cls, data):\n        \"Make a normal distribution instance from sample data.\"\n        if not isinstance(data, (list, tuple)):\n            data = list(data)\n        xbar = fmean(data)\n        return cls(xbar, stdev(data, xbar))\n\n    def samples(self, n, *, seed=None):\n        \"Generate *n* samples for a given mean and standard deviation.\"\n        gauss = random.gauss if seed is None else random.Random(seed).gauss\n        mu, sigma = self._mu, self._sigma\n        return [gauss(mu, sigma) for i in range(n)]\n\n    def pdf(self, x):\n        \"Probability density function.  P(x <= X < x+dx) / dx\"\n        variance = self._sigma ** 2.0\n        if not variance:\n            raise StatisticsError('pdf() not defined when sigma is zero')\n        return exp((x - self._mu)**2.0 / (-2.0*variance)) / sqrt(tau*variance)\n\n    def cdf(self, x):\n        \"Cumulative distribution function.  P(X <= x)\"\n        if not self._sigma:\n            raise StatisticsError('cdf() not defined when sigma is zero')\n        return 0.5 * (1.0 + erf((x - self._mu) / (self._sigma * sqrt(2.0))))\n\n    def inv_cdf(self, p):\n        \"\"\"Inverse cumulative distribution function.  x : P(X <= x) = p\n\n        Finds the value of the random variable such that the probability of\n        the variable being less than or equal to that value equals the given\n        probability.\n\n        This function is also called the percent point function or quantile\n        function.\n        \"\"\"\n        if p <= 0.0 or p >= 1.0:\n            raise StatisticsError('p must be in the range 0.0 < p < 1.0')\n        if self._sigma <= 0.0:\n            raise StatisticsError('cdf() not defined when sigma at or below zero')\n        return _normal_dist_inv_cdf(p, self._mu, self._sigma)\n\n    def quantiles(self, n=4):\n        \"\"\"Divide into *n* continuous intervals with equal probability.\n\n        Returns a list of (n - 1) cut points separating the intervals.\n\n        Set *n* to 4 for quartiles (the default).  Set *n* to 10 for deciles.\n        Set *n* to 100 for percentiles which gives the 99 cuts points that\n        separate the normal distribution in to 100 equal sized groups.\n        \"\"\"\n        return [self.inv_cdf(i / n) for i in range(1, n)]\n\n    def overlap(self, other):\n        \"\"\"Compute the overlapping coefficient (OVL) between two normal distributions.\n\n        Measures the agreement between two normal probability distributions.\n        Returns a value between 0.0 and 1.0 giving the overlapping area in\n        the two underlying probability density functions.\n\n            >>> N1 = NormalDist(2.4, 1.6)\n            >>> N2 = NormalDist(3.2, 2.0)\n            >>> N1.overlap(N2)\n            0.8035050657330205\n        \"\"\"\n        # See: \"The overlapping coefficient as a measure of agreement between\n        # probability distributions and point estimation of the overlap of two\n        # normal densities\" -- Henry F. Inman and Edwin L. Bradley Jr\n        # http://dx.doi.org/10.1080/03610928908830127\n        if not isinstance(other, NormalDist):\n            raise TypeError('Expected another NormalDist instance')\n        X, Y = self, other\n        if (Y._sigma, Y._mu) < (X._sigma, X._mu):   # sort to assure commutativity\n            X, Y = Y, X\n        X_var, Y_var = X.variance, Y.variance\n        if not X_var or not Y_var:\n            raise StatisticsError('overlap() not defined when sigma is zero')\n        dv = Y_var - X_var\n        dm = fabs(Y._mu - X._mu)\n        if not dv:\n            return 1.0 - erf(dm / (2.0 * X._sigma * sqrt(2.0)))\n        a = X._mu * Y_var - Y._mu * X_var\n        b = X._sigma * Y._sigma * sqrt(dm**2.0 + dv * log(Y_var / X_var))\n        x1 = (a + b) / dv\n        x2 = (a - b) / dv\n        return 1.0 - (fabs(Y.cdf(x1) - X.cdf(x1)) + fabs(Y.cdf(x2) - X.cdf(x2)))\n\n    @property\n    def mean(self):\n        \"Arithmetic mean of the normal distribution.\"\n        return self._mu\n\n    @property\n    def median(self):\n        \"Return the median of the normal distribution\"\n        return self._mu\n\n    @property\n    def mode(self):\n        \"\"\"Return the mode of the normal distribution\n\n        The mode is the value x where which the probability density\n        function (pdf) takes its maximum value.\n        \"\"\"\n        return self._mu\n\n    @property\n    def stdev(self):\n        \"Standard deviation of the normal distribution.\"\n        return self._sigma\n\n    @property\n    def variance(self):\n        \"Square of the standard deviation.\"\n        return self._sigma ** 2.0\n\n    def __add__(x1, x2):\n        \"\"\"Add a constant or another NormalDist instance.\n\n        If *other* is a constant, translate mu by the constant,\n        leaving sigma unchanged.\n\n        If *other* is a NormalDist, add both the means and the variances.\n        Mathematically, this works only if the two distributions are\n        independent or if they are jointly normally distributed.\n        \"\"\"\n        if isinstance(x2, NormalDist):\n            return NormalDist(x1._mu + x2._mu, hypot(x1._sigma, x2._sigma))\n        return NormalDist(x1._mu + x2, x1._sigma)\n\n    def __sub__(x1, x2):\n        \"\"\"Subtract a constant or another NormalDist instance.\n\n        If *other* is a constant, translate by the constant mu,\n        leaving sigma unchanged.\n\n        If *other* is a NormalDist, subtract the means and add the variances.\n        Mathematically, this works only if the two distributions are\n        independent or if they are jointly normally distributed.\n        \"\"\"\n        if isinstance(x2, NormalDist):\n            return NormalDist(x1._mu - x2._mu, hypot(x1._sigma, x2._sigma))\n        return NormalDist(x1._mu - x2, x1._sigma)\n\n    def __mul__(x1, x2):\n        \"\"\"Multiply both mu and sigma by a constant.\n\n        Used for rescaling, perhaps to change measurement units.\n        Sigma is scaled with the absolute value of the constant.\n        \"\"\"\n        return NormalDist(x1._mu * x2, x1._sigma * fabs(x2))\n\n    def __truediv__(x1, x2):\n        \"\"\"Divide both mu and sigma by a constant.\n\n        Used for rescaling, perhaps to change measurement units.\n        Sigma is scaled with the absolute value of the constant.\n        \"\"\"\n        return NormalDist(x1._mu / x2, x1._sigma / fabs(x2))\n\n    def __pos__(x1):\n        \"Return a copy of the instance.\"\n        return NormalDist(x1._mu, x1._sigma)\n\n    def __neg__(x1):\n        \"Negates mu while keeping sigma the same.\"\n        return NormalDist(-x1._mu, x1._sigma)\n\n    __radd__ = __add__\n\n    def __rsub__(x1, x2):\n        \"Subtract a NormalDist from a constant or another NormalDist.\"\n        return -(x1 - x2)\n\n    __rmul__ = __mul__\n\n    def __eq__(x1, x2):\n        \"Two NormalDist objects are equal if their mu and sigma are both equal.\"\n        if not isinstance(x2, NormalDist):\n            return NotImplemented\n        return x1._mu == x2._mu and x1._sigma == x2._sigma\n\n    def __hash__(self):\n        \"NormalDist objects hash equal if their mu and sigma are both equal.\"\n        return hash((self._mu, self._sigma))\n\n    def __repr__(self):\n        return f'{type(self).__name__}(mu={self._mu!r}, sigma={self._sigma!r})'\n\n# If available, use C implementation\ntry:\n    from _statistics import _normal_dist_inv_cdf\nexcept ImportError:\n    pass\n\n\nif __name__ == '__main__':\n\n    # Show math operations computed analytically in comparsion\n    # to a monte carlo simulation of the same operations\n\n    from math import isclose\n    from operator import add, sub, mul, truediv\n    from itertools import repeat\n    import doctest\n\n    g1 = NormalDist(10, 20)\n    g2 = NormalDist(-5, 25)\n\n    # Test scaling by a constant\n    assert (g1 * 5 / 5).mean == g1.mean\n    assert (g1 * 5 / 5).stdev == g1.stdev\n\n    n = 100_000\n    G1 = g1.samples(n)\n    G2 = g2.samples(n)\n\n    for func in (add, sub):\n        print(f'\\nTest {func.__name__} with another NormalDist:')\n        print(func(g1, g2))\n        print(NormalDist.from_samples(map(func, G1, G2)))\n\n    const = 11\n    for func in (add, sub, mul, truediv):\n        print(f'\\nTest {func.__name__} with a constant:')\n        print(func(g1, const))\n        print(NormalDist.from_samples(map(func, G1, repeat(const))))\n\n    const = 19\n    for func in (add, sub, mul):\n        print(f'\\nTest constant with {func.__name__}:')\n        print(func(const, g1))\n        print(NormalDist.from_samples(map(func, repeat(const), G1)))\n\n    def assert_close(G1, G2):\n        assert isclose(G1.mean, G1.mean, rel_tol=0.01), (G1, G2)\n        assert isclose(G1.stdev, G2.stdev, rel_tol=0.01), (G1, G2)\n\n    X = NormalDist(-105, 73)\n    Y = NormalDist(31, 47)\n    s = 32.75\n    n = 100_000\n\n    S = NormalDist.from_samples([x + s for x in X.samples(n)])\n    assert_close(X + s, S)\n\n    S = NormalDist.from_samples([x - s for x in X.samples(n)])\n    assert_close(X - s, S)\n\n    S = NormalDist.from_samples([x * s for x in X.samples(n)])\n    assert_close(X * s, S)\n\n    S = NormalDist.from_samples([x / s for x in X.samples(n)])\n    assert_close(X / s, S)\n\n    S = NormalDist.from_samples([x + y for x, y in zip(X.samples(n),\n                                                       Y.samples(n))])\n    assert_close(X + Y, S)\n\n    S = NormalDist.from_samples([x - y for x, y in zip(X.samples(n),\n                                                       Y.samples(n))])\n    assert_close(X - Y, S)\n\n    print(doctest.testmod())\n"
  },
  {
    "path": "rd/usr/lib/python3.8/string.py",
    "content": "\"\"\"A collection of string constants.\n\nPublic module variables:\n\nwhitespace -- a string containing all ASCII whitespace\nascii_lowercase -- a string containing all ASCII lowercase letters\nascii_uppercase -- a string containing all ASCII uppercase letters\nascii_letters -- a string containing all ASCII letters\ndigits -- a string containing all ASCII decimal digits\nhexdigits -- a string containing all ASCII hexadecimal digits\noctdigits -- a string containing all ASCII octal digits\npunctuation -- a string containing all ASCII punctuation characters\nprintable -- a string containing all ASCII characters considered printable\n\n\"\"\"\n\n__all__ = [\"ascii_letters\", \"ascii_lowercase\", \"ascii_uppercase\", \"capwords\",\n           \"digits\", \"hexdigits\", \"octdigits\", \"printable\", \"punctuation\",\n           \"whitespace\", \"Formatter\", \"Template\"]\n\nimport _string\n\n# Some strings for ctype-style character classification\nwhitespace = ' \\t\\n\\r\\v\\f'\nascii_lowercase = 'abcdefghijklmnopqrstuvwxyz'\nascii_uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'\nascii_letters = ascii_lowercase + ascii_uppercase\ndigits = '0123456789'\nhexdigits = digits + 'abcdef' + 'ABCDEF'\noctdigits = '01234567'\npunctuation = r\"\"\"!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~\"\"\"\nprintable = digits + ascii_letters + punctuation + whitespace\n\n# Functions which aren't available as string methods.\n\n# Capitalize the words in a string, e.g. \" aBc  dEf \" -> \"Abc Def\".\ndef capwords(s, sep=None):\n    \"\"\"capwords(s [,sep]) -> string\n\n    Split the argument into words using split, capitalize each\n    word using capitalize, and join the capitalized words using\n    join.  If the optional second argument sep is absent or None,\n    runs of whitespace characters are replaced by a single space\n    and leading and trailing whitespace are removed, otherwise\n    sep is used to split and join the words.\n\n    \"\"\"\n    return (sep or ' ').join(x.capitalize() for x in s.split(sep))\n\n\n####################################################################\nimport re as _re\nfrom collections import ChainMap as _ChainMap\n\n_sentinel_dict = {}\n\nclass _TemplateMetaclass(type):\n    pattern = r\"\"\"\n    %(delim)s(?:\n      (?P<escaped>%(delim)s) |   # Escape sequence of two delimiters\n      (?P<named>%(id)s)      |   # delimiter and a Python identifier\n      {(?P<braced>%(bid)s)}  |   # delimiter and a braced identifier\n      (?P<invalid>)              # Other ill-formed delimiter exprs\n    )\n    \"\"\"\n\n    def __init__(cls, name, bases, dct):\n        super(_TemplateMetaclass, cls).__init__(name, bases, dct)\n        if 'pattern' in dct:\n            pattern = cls.pattern\n        else:\n            pattern = _TemplateMetaclass.pattern % {\n                'delim' : _re.escape(cls.delimiter),\n                'id'    : cls.idpattern,\n                'bid'   : cls.braceidpattern or cls.idpattern,\n                }\n        cls.pattern = _re.compile(pattern, cls.flags | _re.VERBOSE)\n\n\nclass Template(metaclass=_TemplateMetaclass):\n    \"\"\"A string class for supporting $-substitutions.\"\"\"\n\n    delimiter = '$'\n    # r'[a-z]' matches to non-ASCII letters when used with IGNORECASE, but\n    # without the ASCII flag.  We can't add re.ASCII to flags because of\n    # backward compatibility.  So we use the ?a local flag and [a-z] pattern.\n    # See https://bugs.python.org/issue31672\n    idpattern = r'(?a:[_a-z][_a-z0-9]*)'\n    braceidpattern = None\n    flags = _re.IGNORECASE\n\n    def __init__(self, template):\n        self.template = template\n\n    # Search for $$, $identifier, ${identifier}, and any bare $'s\n\n    def _invalid(self, mo):\n        i = mo.start('invalid')\n        lines = self.template[:i].splitlines(keepends=True)\n        if not lines:\n            colno = 1\n            lineno = 1\n        else:\n            colno = i - len(''.join(lines[:-1]))\n            lineno = len(lines)\n        raise ValueError('Invalid placeholder in string: line %d, col %d' %\n                         (lineno, colno))\n\n    def substitute(self, mapping=_sentinel_dict, /, **kws):\n        if mapping is _sentinel_dict:\n            mapping = kws\n        elif kws:\n            mapping = _ChainMap(kws, mapping)\n        # Helper function for .sub()\n        def convert(mo):\n            # Check the most common path first.\n            named = mo.group('named') or mo.group('braced')\n            if named is not None:\n                return str(mapping[named])\n            if mo.group('escaped') is not None:\n                return self.delimiter\n            if mo.group('invalid') is not None:\n                self._invalid(mo)\n            raise ValueError('Unrecognized named group in pattern',\n                             self.pattern)\n        return self.pattern.sub(convert, self.template)\n\n    def safe_substitute(self, mapping=_sentinel_dict, /, **kws):\n        if mapping is _sentinel_dict:\n            mapping = kws\n        elif kws:\n            mapping = _ChainMap(kws, mapping)\n        # Helper function for .sub()\n        def convert(mo):\n            named = mo.group('named') or mo.group('braced')\n            if named is not None:\n                try:\n                    return str(mapping[named])\n                except KeyError:\n                    return mo.group()\n            if mo.group('escaped') is not None:\n                return self.delimiter\n            if mo.group('invalid') is not None:\n                return mo.group()\n            raise ValueError('Unrecognized named group in pattern',\n                             self.pattern)\n        return self.pattern.sub(convert, self.template)\n\n\n\n########################################################################\n# the Formatter class\n# see PEP 3101 for details and purpose of this class\n\n# The hard parts are reused from the C implementation.  They're exposed as \"_\"\n# prefixed methods of str.\n\n# The overall parser is implemented in _string.formatter_parser.\n# The field name parser is implemented in _string.formatter_field_name_split\n\nclass Formatter:\n    def format(self, format_string, /, *args, **kwargs):\n        return self.vformat(format_string, args, kwargs)\n\n    def vformat(self, format_string, args, kwargs):\n        used_args = set()\n        result, _ = self._vformat(format_string, args, kwargs, used_args, 2)\n        self.check_unused_args(used_args, args, kwargs)\n        return result\n\n    def _vformat(self, format_string, args, kwargs, used_args, recursion_depth,\n                 auto_arg_index=0):\n        if recursion_depth < 0:\n            raise ValueError('Max string recursion exceeded')\n        result = []\n        for literal_text, field_name, format_spec, conversion in \\\n                self.parse(format_string):\n\n            # output the literal text\n            if literal_text:\n                result.append(literal_text)\n\n            # if there's a field, output it\n            if field_name is not None:\n                # this is some markup, find the object and do\n                #  the formatting\n\n                # handle arg indexing when empty field_names are given.\n                if field_name == '':\n                    if auto_arg_index is False:\n                        raise ValueError('cannot switch from manual field '\n                                         'specification to automatic field '\n                                         'numbering')\n                    field_name = str(auto_arg_index)\n                    auto_arg_index += 1\n                elif field_name.isdigit():\n                    if auto_arg_index:\n                        raise ValueError('cannot switch from manual field '\n                                         'specification to automatic field '\n                                         'numbering')\n                    # disable auto arg incrementing, if it gets\n                    # used later on, then an exception will be raised\n                    auto_arg_index = False\n\n                # given the field_name, find the object it references\n                #  and the argument it came from\n                obj, arg_used = self.get_field(field_name, args, kwargs)\n                used_args.add(arg_used)\n\n                # do any conversion on the resulting object\n                obj = self.convert_field(obj, conversion)\n\n                # expand the format spec, if needed\n                format_spec, auto_arg_index = self._vformat(\n                    format_spec, args, kwargs,\n                    used_args, recursion_depth-1,\n                    auto_arg_index=auto_arg_index)\n\n                # format the object and append to the result\n                result.append(self.format_field(obj, format_spec))\n\n        return ''.join(result), auto_arg_index\n\n\n    def get_value(self, key, args, kwargs):\n        if isinstance(key, int):\n            return args[key]\n        else:\n            return kwargs[key]\n\n\n    def check_unused_args(self, used_args, args, kwargs):\n        pass\n\n\n    def format_field(self, value, format_spec):\n        return format(value, format_spec)\n\n\n    def convert_field(self, value, conversion):\n        # do any conversion on the resulting object\n        if conversion is None:\n            return value\n        elif conversion == 's':\n            return str(value)\n        elif conversion == 'r':\n            return repr(value)\n        elif conversion == 'a':\n            return ascii(value)\n        raise ValueError(\"Unknown conversion specifier {0!s}\".format(conversion))\n\n\n    # returns an iterable that contains tuples of the form:\n    # (literal_text, field_name, format_spec, conversion)\n    # literal_text can be zero length\n    # field_name can be None, in which case there's no\n    #  object to format and output\n    # if field_name is not None, it is looked up, formatted\n    #  with format_spec and conversion and then used\n    def parse(self, format_string):\n        return _string.formatter_parser(format_string)\n\n\n    # given a field_name, find the object it references.\n    #  field_name:   the field being looked up, e.g. \"0.name\"\n    #                 or \"lookup[3]\"\n    #  used_args:    a set of which args have been used\n    #  args, kwargs: as passed in to vformat\n    def get_field(self, field_name, args, kwargs):\n        first, rest = _string.formatter_field_name_split(field_name)\n\n        obj = self.get_value(first, args, kwargs)\n\n        # loop through the rest of the field_name, doing\n        #  getattr or getitem as needed\n        for is_attr, i in rest:\n            if is_attr:\n                obj = getattr(obj, i)\n            else:\n                obj = obj[i]\n\n        return obj, first\n"
  },
  {
    "path": "rd/usr/lib/python3.8/stringprep.py",
    "content": "# This file is generated by mkstringprep.py. DO NOT EDIT.\n\"\"\"Library that exposes various tables found in the StringPrep RFC 3454.\n\nThere are two kinds of tables: sets, for which a member test is provided,\nand mappings, for which a mapping function is provided.\n\"\"\"\n\nfrom unicodedata import ucd_3_2_0 as unicodedata\n\nassert unicodedata.unidata_version == '3.2.0'\n\ndef in_table_a1(code):\n    if unicodedata.category(code) != 'Cn': return False\n    c = ord(code)\n    if 0xFDD0 <= c < 0xFDF0: return False\n    return (c & 0xFFFF) not in (0xFFFE, 0xFFFF)\n\n\nb1_set = set([173, 847, 6150, 6155, 6156, 6157, 8203, 8204, 8205, 8288, 65279] + list(range(65024,65040)))\ndef in_table_b1(code):\n    return ord(code) in b1_set\n\n\nb3_exceptions = {\n0xb5:'\\u03bc', 0xdf:'ss', 0x130:'i\\u0307', 0x149:'\\u02bcn',\n0x17f:'s', 0x1f0:'j\\u030c', 0x345:'\\u03b9', 0x37a:' \\u03b9',\n0x390:'\\u03b9\\u0308\\u0301', 0x3b0:'\\u03c5\\u0308\\u0301', 0x3c2:'\\u03c3', 0x3d0:'\\u03b2',\n0x3d1:'\\u03b8', 0x3d2:'\\u03c5', 0x3d3:'\\u03cd', 0x3d4:'\\u03cb',\n0x3d5:'\\u03c6', 0x3d6:'\\u03c0', 0x3f0:'\\u03ba', 0x3f1:'\\u03c1',\n0x3f2:'\\u03c3', 0x3f5:'\\u03b5', 0x587:'\\u0565\\u0582', 0x1e96:'h\\u0331',\n0x1e97:'t\\u0308', 0x1e98:'w\\u030a', 0x1e99:'y\\u030a', 0x1e9a:'a\\u02be',\n0x1e9b:'\\u1e61', 0x1f50:'\\u03c5\\u0313', 0x1f52:'\\u03c5\\u0313\\u0300', 0x1f54:'\\u03c5\\u0313\\u0301',\n0x1f56:'\\u03c5\\u0313\\u0342', 0x1f80:'\\u1f00\\u03b9', 0x1f81:'\\u1f01\\u03b9', 0x1f82:'\\u1f02\\u03b9',\n0x1f83:'\\u1f03\\u03b9', 0x1f84:'\\u1f04\\u03b9', 0x1f85:'\\u1f05\\u03b9', 0x1f86:'\\u1f06\\u03b9',\n0x1f87:'\\u1f07\\u03b9', 0x1f88:'\\u1f00\\u03b9', 0x1f89:'\\u1f01\\u03b9', 0x1f8a:'\\u1f02\\u03b9',\n0x1f8b:'\\u1f03\\u03b9', 0x1f8c:'\\u1f04\\u03b9', 0x1f8d:'\\u1f05\\u03b9', 0x1f8e:'\\u1f06\\u03b9',\n0x1f8f:'\\u1f07\\u03b9', 0x1f90:'\\u1f20\\u03b9', 0x1f91:'\\u1f21\\u03b9', 0x1f92:'\\u1f22\\u03b9',\n0x1f93:'\\u1f23\\u03b9', 0x1f94:'\\u1f24\\u03b9', 0x1f95:'\\u1f25\\u03b9', 0x1f96:'\\u1f26\\u03b9',\n0x1f97:'\\u1f27\\u03b9', 0x1f98:'\\u1f20\\u03b9', 0x1f99:'\\u1f21\\u03b9', 0x1f9a:'\\u1f22\\u03b9',\n0x1f9b:'\\u1f23\\u03b9', 0x1f9c:'\\u1f24\\u03b9', 0x1f9d:'\\u1f25\\u03b9', 0x1f9e:'\\u1f26\\u03b9',\n0x1f9f:'\\u1f27\\u03b9', 0x1fa0:'\\u1f60\\u03b9', 0x1fa1:'\\u1f61\\u03b9', 0x1fa2:'\\u1f62\\u03b9',\n0x1fa3:'\\u1f63\\u03b9', 0x1fa4:'\\u1f64\\u03b9', 0x1fa5:'\\u1f65\\u03b9', 0x1fa6:'\\u1f66\\u03b9',\n0x1fa7:'\\u1f67\\u03b9', 0x1fa8:'\\u1f60\\u03b9', 0x1fa9:'\\u1f61\\u03b9', 0x1faa:'\\u1f62\\u03b9',\n0x1fab:'\\u1f63\\u03b9', 0x1fac:'\\u1f64\\u03b9', 0x1fad:'\\u1f65\\u03b9', 0x1fae:'\\u1f66\\u03b9',\n0x1faf:'\\u1f67\\u03b9', 0x1fb2:'\\u1f70\\u03b9', 0x1fb3:'\\u03b1\\u03b9', 0x1fb4:'\\u03ac\\u03b9',\n0x1fb6:'\\u03b1\\u0342', 0x1fb7:'\\u03b1\\u0342\\u03b9', 0x1fbc:'\\u03b1\\u03b9', 0x1fbe:'\\u03b9',\n0x1fc2:'\\u1f74\\u03b9', 0x1fc3:'\\u03b7\\u03b9', 0x1fc4:'\\u03ae\\u03b9', 0x1fc6:'\\u03b7\\u0342',\n0x1fc7:'\\u03b7\\u0342\\u03b9', 0x1fcc:'\\u03b7\\u03b9', 0x1fd2:'\\u03b9\\u0308\\u0300', 0x1fd3:'\\u03b9\\u0308\\u0301',\n0x1fd6:'\\u03b9\\u0342', 0x1fd7:'\\u03b9\\u0308\\u0342', 0x1fe2:'\\u03c5\\u0308\\u0300', 0x1fe3:'\\u03c5\\u0308\\u0301',\n0x1fe4:'\\u03c1\\u0313', 0x1fe6:'\\u03c5\\u0342', 0x1fe7:'\\u03c5\\u0308\\u0342', 0x1ff2:'\\u1f7c\\u03b9',\n0x1ff3:'\\u03c9\\u03b9', 0x1ff4:'\\u03ce\\u03b9', 0x1ff6:'\\u03c9\\u0342', 0x1ff7:'\\u03c9\\u0342\\u03b9',\n0x1ffc:'\\u03c9\\u03b9', 0x20a8:'rs', 0x2102:'c', 0x2103:'\\xb0c',\n0x2107:'\\u025b', 0x2109:'\\xb0f', 0x210b:'h', 0x210c:'h',\n0x210d:'h', 0x2110:'i', 0x2111:'i', 0x2112:'l',\n0x2115:'n', 0x2116:'no', 0x2119:'p', 0x211a:'q',\n0x211b:'r', 0x211c:'r', 0x211d:'r', 0x2120:'sm',\n0x2121:'tel', 0x2122:'tm', 0x2124:'z', 0x2128:'z',\n0x212c:'b', 0x212d:'c', 0x2130:'e', 0x2131:'f',\n0x2133:'m', 0x213e:'\\u03b3', 0x213f:'\\u03c0', 0x2145:'d',\n0x3371:'hpa', 0x3373:'au', 0x3375:'ov', 0x3380:'pa',\n0x3381:'na', 0x3382:'\\u03bca', 0x3383:'ma', 0x3384:'ka',\n0x3385:'kb', 0x3386:'mb', 0x3387:'gb', 0x338a:'pf',\n0x338b:'nf', 0x338c:'\\u03bcf', 0x3390:'hz', 0x3391:'khz',\n0x3392:'mhz', 0x3393:'ghz', 0x3394:'thz', 0x33a9:'pa',\n0x33aa:'kpa', 0x33ab:'mpa', 0x33ac:'gpa', 0x33b4:'pv',\n0x33b5:'nv', 0x33b6:'\\u03bcv', 0x33b7:'mv', 0x33b8:'kv',\n0x33b9:'mv', 0x33ba:'pw', 0x33bb:'nw', 0x33bc:'\\u03bcw',\n0x33bd:'mw', 0x33be:'kw', 0x33bf:'mw', 0x33c0:'k\\u03c9',\n0x33c1:'m\\u03c9', 0x33c3:'bq', 0x33c6:'c\\u2215kg', 0x33c7:'co.',\n0x33c8:'db', 0x33c9:'gy', 0x33cb:'hp', 0x33cd:'kk',\n0x33ce:'km', 0x33d7:'ph', 0x33d9:'ppm', 0x33da:'pr',\n0x33dc:'sv', 0x33dd:'wb', 0xfb00:'ff', 0xfb01:'fi',\n0xfb02:'fl', 0xfb03:'ffi', 0xfb04:'ffl', 0xfb05:'st',\n0xfb06:'st', 0xfb13:'\\u0574\\u0576', 0xfb14:'\\u0574\\u0565', 0xfb15:'\\u0574\\u056b',\n0xfb16:'\\u057e\\u0576', 0xfb17:'\\u0574\\u056d', 0x1d400:'a', 0x1d401:'b',\n0x1d402:'c', 0x1d403:'d', 0x1d404:'e', 0x1d405:'f',\n0x1d406:'g', 0x1d407:'h', 0x1d408:'i', 0x1d409:'j',\n0x1d40a:'k', 0x1d40b:'l', 0x1d40c:'m', 0x1d40d:'n',\n0x1d40e:'o', 0x1d40f:'p', 0x1d410:'q', 0x1d411:'r',\n0x1d412:'s', 0x1d413:'t', 0x1d414:'u', 0x1d415:'v',\n0x1d416:'w', 0x1d417:'x', 0x1d418:'y', 0x1d419:'z',\n0x1d434:'a', 0x1d435:'b', 0x1d436:'c', 0x1d437:'d',\n0x1d438:'e', 0x1d439:'f', 0x1d43a:'g', 0x1d43b:'h',\n0x1d43c:'i', 0x1d43d:'j', 0x1d43e:'k', 0x1d43f:'l',\n0x1d440:'m', 0x1d441:'n', 0x1d442:'o', 0x1d443:'p',\n0x1d444:'q', 0x1d445:'r', 0x1d446:'s', 0x1d447:'t',\n0x1d448:'u', 0x1d449:'v', 0x1d44a:'w', 0x1d44b:'x',\n0x1d44c:'y', 0x1d44d:'z', 0x1d468:'a', 0x1d469:'b',\n0x1d46a:'c', 0x1d46b:'d', 0x1d46c:'e', 0x1d46d:'f',\n0x1d46e:'g', 0x1d46f:'h', 0x1d470:'i', 0x1d471:'j',\n0x1d472:'k', 0x1d473:'l', 0x1d474:'m', 0x1d475:'n',\n0x1d476:'o', 0x1d477:'p', 0x1d478:'q', 0x1d479:'r',\n0x1d47a:'s', 0x1d47b:'t', 0x1d47c:'u', 0x1d47d:'v',\n0x1d47e:'w', 0x1d47f:'x', 0x1d480:'y', 0x1d481:'z',\n0x1d49c:'a', 0x1d49e:'c', 0x1d49f:'d', 0x1d4a2:'g',\n0x1d4a5:'j', 0x1d4a6:'k', 0x1d4a9:'n', 0x1d4aa:'o',\n0x1d4ab:'p', 0x1d4ac:'q', 0x1d4ae:'s', 0x1d4af:'t',\n0x1d4b0:'u', 0x1d4b1:'v', 0x1d4b2:'w', 0x1d4b3:'x',\n0x1d4b4:'y', 0x1d4b5:'z', 0x1d4d0:'a', 0x1d4d1:'b',\n0x1d4d2:'c', 0x1d4d3:'d', 0x1d4d4:'e', 0x1d4d5:'f',\n0x1d4d6:'g', 0x1d4d7:'h', 0x1d4d8:'i', 0x1d4d9:'j',\n0x1d4da:'k', 0x1d4db:'l', 0x1d4dc:'m', 0x1d4dd:'n',\n0x1d4de:'o', 0x1d4df:'p', 0x1d4e0:'q', 0x1d4e1:'r',\n0x1d4e2:'s', 0x1d4e3:'t', 0x1d4e4:'u', 0x1d4e5:'v',\n0x1d4e6:'w', 0x1d4e7:'x', 0x1d4e8:'y', 0x1d4e9:'z',\n0x1d504:'a', 0x1d505:'b', 0x1d507:'d', 0x1d508:'e',\n0x1d509:'f', 0x1d50a:'g', 0x1d50d:'j', 0x1d50e:'k',\n0x1d50f:'l', 0x1d510:'m', 0x1d511:'n', 0x1d512:'o',\n0x1d513:'p', 0x1d514:'q', 0x1d516:'s', 0x1d517:'t',\n0x1d518:'u', 0x1d519:'v', 0x1d51a:'w', 0x1d51b:'x',\n0x1d51c:'y', 0x1d538:'a', 0x1d539:'b', 0x1d53b:'d',\n0x1d53c:'e', 0x1d53d:'f', 0x1d53e:'g', 0x1d540:'i',\n0x1d541:'j', 0x1d542:'k', 0x1d543:'l', 0x1d544:'m',\n0x1d546:'o', 0x1d54a:'s', 0x1d54b:'t', 0x1d54c:'u',\n0x1d54d:'v', 0x1d54e:'w', 0x1d54f:'x', 0x1d550:'y',\n0x1d56c:'a', 0x1d56d:'b', 0x1d56e:'c', 0x1d56f:'d',\n0x1d570:'e', 0x1d571:'f', 0x1d572:'g', 0x1d573:'h',\n0x1d574:'i', 0x1d575:'j', 0x1d576:'k', 0x1d577:'l',\n0x1d578:'m', 0x1d579:'n', 0x1d57a:'o', 0x1d57b:'p',\n0x1d57c:'q', 0x1d57d:'r', 0x1d57e:'s', 0x1d57f:'t',\n0x1d580:'u', 0x1d581:'v', 0x1d582:'w', 0x1d583:'x',\n0x1d584:'y', 0x1d585:'z', 0x1d5a0:'a', 0x1d5a1:'b',\n0x1d5a2:'c', 0x1d5a3:'d', 0x1d5a4:'e', 0x1d5a5:'f',\n0x1d5a6:'g', 0x1d5a7:'h', 0x1d5a8:'i', 0x1d5a9:'j',\n0x1d5aa:'k', 0x1d5ab:'l', 0x1d5ac:'m', 0x1d5ad:'n',\n0x1d5ae:'o', 0x1d5af:'p', 0x1d5b0:'q', 0x1d5b1:'r',\n0x1d5b2:'s', 0x1d5b3:'t', 0x1d5b4:'u', 0x1d5b5:'v',\n0x1d5b6:'w', 0x1d5b7:'x', 0x1d5b8:'y', 0x1d5b9:'z',\n0x1d5d4:'a', 0x1d5d5:'b', 0x1d5d6:'c', 0x1d5d7:'d',\n0x1d5d8:'e', 0x1d5d9:'f', 0x1d5da:'g', 0x1d5db:'h',\n0x1d5dc:'i', 0x1d5dd:'j', 0x1d5de:'k', 0x1d5df:'l',\n0x1d5e0:'m', 0x1d5e1:'n', 0x1d5e2:'o', 0x1d5e3:'p',\n0x1d5e4:'q', 0x1d5e5:'r', 0x1d5e6:'s', 0x1d5e7:'t',\n0x1d5e8:'u', 0x1d5e9:'v', 0x1d5ea:'w', 0x1d5eb:'x',\n0x1d5ec:'y', 0x1d5ed:'z', 0x1d608:'a', 0x1d609:'b',\n0x1d60a:'c', 0x1d60b:'d', 0x1d60c:'e', 0x1d60d:'f',\n0x1d60e:'g', 0x1d60f:'h', 0x1d610:'i', 0x1d611:'j',\n0x1d612:'k', 0x1d613:'l', 0x1d614:'m', 0x1d615:'n',\n0x1d616:'o', 0x1d617:'p', 0x1d618:'q', 0x1d619:'r',\n0x1d61a:'s', 0x1d61b:'t', 0x1d61c:'u', 0x1d61d:'v',\n0x1d61e:'w', 0x1d61f:'x', 0x1d620:'y', 0x1d621:'z',\n0x1d63c:'a', 0x1d63d:'b', 0x1d63e:'c', 0x1d63f:'d',\n0x1d640:'e', 0x1d641:'f', 0x1d642:'g', 0x1d643:'h',\n0x1d644:'i', 0x1d645:'j', 0x1d646:'k', 0x1d647:'l',\n0x1d648:'m', 0x1d649:'n', 0x1d64a:'o', 0x1d64b:'p',\n0x1d64c:'q', 0x1d64d:'r', 0x1d64e:'s', 0x1d64f:'t',\n0x1d650:'u', 0x1d651:'v', 0x1d652:'w', 0x1d653:'x',\n0x1d654:'y', 0x1d655:'z', 0x1d670:'a', 0x1d671:'b',\n0x1d672:'c', 0x1d673:'d', 0x1d674:'e', 0x1d675:'f',\n0x1d676:'g', 0x1d677:'h', 0x1d678:'i', 0x1d679:'j',\n0x1d67a:'k', 0x1d67b:'l', 0x1d67c:'m', 0x1d67d:'n',\n0x1d67e:'o', 0x1d67f:'p', 0x1d680:'q', 0x1d681:'r',\n0x1d682:'s', 0x1d683:'t', 0x1d684:'u', 0x1d685:'v',\n0x1d686:'w', 0x1d687:'x', 0x1d688:'y', 0x1d689:'z',\n0x1d6a8:'\\u03b1', 0x1d6a9:'\\u03b2', 0x1d6aa:'\\u03b3', 0x1d6ab:'\\u03b4',\n0x1d6ac:'\\u03b5', 0x1d6ad:'\\u03b6', 0x1d6ae:'\\u03b7', 0x1d6af:'\\u03b8',\n0x1d6b0:'\\u03b9', 0x1d6b1:'\\u03ba', 0x1d6b2:'\\u03bb', 0x1d6b3:'\\u03bc',\n0x1d6b4:'\\u03bd', 0x1d6b5:'\\u03be', 0x1d6b6:'\\u03bf', 0x1d6b7:'\\u03c0',\n0x1d6b8:'\\u03c1', 0x1d6b9:'\\u03b8', 0x1d6ba:'\\u03c3', 0x1d6bb:'\\u03c4',\n0x1d6bc:'\\u03c5', 0x1d6bd:'\\u03c6', 0x1d6be:'\\u03c7', 0x1d6bf:'\\u03c8',\n0x1d6c0:'\\u03c9', 0x1d6d3:'\\u03c3', 0x1d6e2:'\\u03b1', 0x1d6e3:'\\u03b2',\n0x1d6e4:'\\u03b3', 0x1d6e5:'\\u03b4', 0x1d6e6:'\\u03b5', 0x1d6e7:'\\u03b6',\n0x1d6e8:'\\u03b7', 0x1d6e9:'\\u03b8', 0x1d6ea:'\\u03b9', 0x1d6eb:'\\u03ba',\n0x1d6ec:'\\u03bb', 0x1d6ed:'\\u03bc', 0x1d6ee:'\\u03bd', 0x1d6ef:'\\u03be',\n0x1d6f0:'\\u03bf', 0x1d6f1:'\\u03c0', 0x1d6f2:'\\u03c1', 0x1d6f3:'\\u03b8',\n0x1d6f4:'\\u03c3', 0x1d6f5:'\\u03c4', 0x1d6f6:'\\u03c5', 0x1d6f7:'\\u03c6',\n0x1d6f8:'\\u03c7', 0x1d6f9:'\\u03c8', 0x1d6fa:'\\u03c9', 0x1d70d:'\\u03c3',\n0x1d71c:'\\u03b1', 0x1d71d:'\\u03b2', 0x1d71e:'\\u03b3', 0x1d71f:'\\u03b4',\n0x1d720:'\\u03b5', 0x1d721:'\\u03b6', 0x1d722:'\\u03b7', 0x1d723:'\\u03b8',\n0x1d724:'\\u03b9', 0x1d725:'\\u03ba', 0x1d726:'\\u03bb', 0x1d727:'\\u03bc',\n0x1d728:'\\u03bd', 0x1d729:'\\u03be', 0x1d72a:'\\u03bf', 0x1d72b:'\\u03c0',\n0x1d72c:'\\u03c1', 0x1d72d:'\\u03b8', 0x1d72e:'\\u03c3', 0x1d72f:'\\u03c4',\n0x1d730:'\\u03c5', 0x1d731:'\\u03c6', 0x1d732:'\\u03c7', 0x1d733:'\\u03c8',\n0x1d734:'\\u03c9', 0x1d747:'\\u03c3', 0x1d756:'\\u03b1', 0x1d757:'\\u03b2',\n0x1d758:'\\u03b3', 0x1d759:'\\u03b4', 0x1d75a:'\\u03b5', 0x1d75b:'\\u03b6',\n0x1d75c:'\\u03b7', 0x1d75d:'\\u03b8', 0x1d75e:'\\u03b9', 0x1d75f:'\\u03ba',\n0x1d760:'\\u03bb', 0x1d761:'\\u03bc', 0x1d762:'\\u03bd', 0x1d763:'\\u03be',\n0x1d764:'\\u03bf', 0x1d765:'\\u03c0', 0x1d766:'\\u03c1', 0x1d767:'\\u03b8',\n0x1d768:'\\u03c3', 0x1d769:'\\u03c4', 0x1d76a:'\\u03c5', 0x1d76b:'\\u03c6',\n0x1d76c:'\\u03c7', 0x1d76d:'\\u03c8', 0x1d76e:'\\u03c9', 0x1d781:'\\u03c3',\n0x1d790:'\\u03b1', 0x1d791:'\\u03b2', 0x1d792:'\\u03b3', 0x1d793:'\\u03b4',\n0x1d794:'\\u03b5', 0x1d795:'\\u03b6', 0x1d796:'\\u03b7', 0x1d797:'\\u03b8',\n0x1d798:'\\u03b9', 0x1d799:'\\u03ba', 0x1d79a:'\\u03bb', 0x1d79b:'\\u03bc',\n0x1d79c:'\\u03bd', 0x1d79d:'\\u03be', 0x1d79e:'\\u03bf', 0x1d79f:'\\u03c0',\n0x1d7a0:'\\u03c1', 0x1d7a1:'\\u03b8', 0x1d7a2:'\\u03c3', 0x1d7a3:'\\u03c4',\n0x1d7a4:'\\u03c5', 0x1d7a5:'\\u03c6', 0x1d7a6:'\\u03c7', 0x1d7a7:'\\u03c8',\n0x1d7a8:'\\u03c9', 0x1d7bb:'\\u03c3', }\n\ndef map_table_b3(code):\n    r = b3_exceptions.get(ord(code))\n    if r is not None: return r\n    return code.lower()\n\n\ndef map_table_b2(a):\n    al = map_table_b3(a)\n    b = unicodedata.normalize(\"NFKC\", al)\n    bl = \"\".join([map_table_b3(ch) for ch in b])\n    c = unicodedata.normalize(\"NFKC\", bl)\n    if b != c:\n        return c\n    else:\n        return al\n\n\ndef in_table_c11(code):\n    return code == \" \"\n\n\ndef in_table_c12(code):\n    return unicodedata.category(code) == \"Zs\" and code != \" \"\n\ndef in_table_c11_c12(code):\n    return unicodedata.category(code) == \"Zs\"\n\n\ndef in_table_c21(code):\n    return ord(code) < 128 and unicodedata.category(code) == \"Cc\"\n\nc22_specials = set([1757, 1807, 6158, 8204, 8205, 8232, 8233, 65279] + list(range(8288,8292)) + list(range(8298,8304)) + list(range(65529,65533)) + list(range(119155,119163)))\ndef in_table_c22(code):\n    c = ord(code)\n    if c < 128: return False\n    if unicodedata.category(code) == \"Cc\": return True\n    return c in c22_specials\n\ndef in_table_c21_c22(code):\n    return unicodedata.category(code) == \"Cc\" or \\\n           ord(code) in c22_specials\n\n\ndef in_table_c3(code):\n    return unicodedata.category(code) == \"Co\"\n\n\ndef in_table_c4(code):\n    c = ord(code)\n    if c < 0xFDD0: return False\n    if c < 0xFDF0: return True\n    return (ord(code) & 0xFFFF) in (0xFFFE, 0xFFFF)\n\n\ndef in_table_c5(code):\n    return unicodedata.category(code) == \"Cs\"\n\n\nc6_set = set(range(65529,65534))\ndef in_table_c6(code):\n    return ord(code) in c6_set\n\n\nc7_set = set(range(12272,12284))\ndef in_table_c7(code):\n    return ord(code) in c7_set\n\n\nc8_set = set([832, 833, 8206, 8207] + list(range(8234,8239)) + list(range(8298,8304)))\ndef in_table_c8(code):\n    return ord(code) in c8_set\n\n\nc9_set = set([917505] + list(range(917536,917632)))\ndef in_table_c9(code):\n    return ord(code) in c9_set\n\n\ndef in_table_d1(code):\n    return unicodedata.bidirectional(code) in (\"R\",\"AL\")\n\n\ndef in_table_d2(code):\n    return unicodedata.bidirectional(code) == \"L\"\n"
  },
  {
    "path": "rd/usr/lib/python3.8/struct.py",
    "content": "__all__ = [\n    # Functions\n    'calcsize', 'pack', 'pack_into', 'unpack', 'unpack_from',\n    'iter_unpack',\n\n    # Classes\n    'Struct',\n\n    # Exceptions\n    'error'\n    ]\n\nfrom _struct import *\nfrom _struct import _clearcache\nfrom _struct import __doc__\n"
  },
  {
    "path": "rd/usr/lib/python3.8/subprocess.py",
    "content": "# subprocess - Subprocesses with accessible I/O streams\n#\n# For more information about this module, see PEP 324.\n#\n# Copyright (c) 2003-2005 by Peter Astrand <astrand@lysator.liu.se>\n#\n# Licensed to PSF under a Contributor Agreement.\n# See http://www.python.org/2.4/license for licensing details.\n\nr\"\"\"Subprocesses with accessible I/O streams\n\nThis module allows you to spawn processes, connect to their\ninput/output/error pipes, and obtain their return codes.\n\nFor a complete description of this module see the Python documentation.\n\nMain API\n========\nrun(...): Runs a command, waits for it to complete, then returns a\n          CompletedProcess instance.\nPopen(...): A class for flexibly executing a command in a new process\n\nConstants\n---------\nDEVNULL: Special value that indicates that os.devnull should be used\nPIPE:    Special value that indicates a pipe should be created\nSTDOUT:  Special value that indicates that stderr should go to stdout\n\n\nOlder API\n=========\ncall(...): Runs a command, waits for it to complete, then returns\n    the return code.\ncheck_call(...): Same as call() but raises CalledProcessError()\n    if return code is not 0\ncheck_output(...): Same as check_call() but returns the contents of\n    stdout instead of a return code\ngetoutput(...): Runs a command in the shell, waits for it to complete,\n    then returns the output\ngetstatusoutput(...): Runs a command in the shell, waits for it to complete,\n    then returns a (exitcode, output) tuple\n\"\"\"\n\nimport builtins\nimport errno\nimport io\nimport os\nimport time\nimport signal\nimport sys\nimport threading\nimport warnings\nimport contextlib\nfrom time import monotonic as _time\n\n\n__all__ = [\"Popen\", \"PIPE\", \"STDOUT\", \"call\", \"check_call\", \"getstatusoutput\",\n           \"getoutput\", \"check_output\", \"run\", \"CalledProcessError\", \"DEVNULL\",\n           \"SubprocessError\", \"TimeoutExpired\", \"CompletedProcess\"]\n           # NOTE: We intentionally exclude list2cmdline as it is\n           # considered an internal implementation detail.  issue10838.\n\ntry:\n    import msvcrt\n    import _winapi\n    _mswindows = True\nexcept ModuleNotFoundError:\n    _mswindows = False\n    import _posixsubprocess\n    import select\n    import selectors\nelse:\n    from _winapi import (CREATE_NEW_CONSOLE, CREATE_NEW_PROCESS_GROUP,\n                         STD_INPUT_HANDLE, STD_OUTPUT_HANDLE,\n                         STD_ERROR_HANDLE, SW_HIDE,\n                         STARTF_USESTDHANDLES, STARTF_USESHOWWINDOW,\n                         ABOVE_NORMAL_PRIORITY_CLASS, BELOW_NORMAL_PRIORITY_CLASS,\n                         HIGH_PRIORITY_CLASS, IDLE_PRIORITY_CLASS,\n                         NORMAL_PRIORITY_CLASS, REALTIME_PRIORITY_CLASS,\n                         CREATE_NO_WINDOW, DETACHED_PROCESS,\n                         CREATE_DEFAULT_ERROR_MODE, CREATE_BREAKAWAY_FROM_JOB)\n\n    __all__.extend([\"CREATE_NEW_CONSOLE\", \"CREATE_NEW_PROCESS_GROUP\",\n                    \"STD_INPUT_HANDLE\", \"STD_OUTPUT_HANDLE\",\n                    \"STD_ERROR_HANDLE\", \"SW_HIDE\",\n                    \"STARTF_USESTDHANDLES\", \"STARTF_USESHOWWINDOW\",\n                    \"STARTUPINFO\",\n                    \"ABOVE_NORMAL_PRIORITY_CLASS\", \"BELOW_NORMAL_PRIORITY_CLASS\",\n                    \"HIGH_PRIORITY_CLASS\", \"IDLE_PRIORITY_CLASS\",\n                    \"NORMAL_PRIORITY_CLASS\", \"REALTIME_PRIORITY_CLASS\",\n                    \"CREATE_NO_WINDOW\", \"DETACHED_PROCESS\",\n                    \"CREATE_DEFAULT_ERROR_MODE\", \"CREATE_BREAKAWAY_FROM_JOB\"])\n\n\n# Exception classes used by this module.\nclass SubprocessError(Exception): pass\n\n\nclass CalledProcessError(SubprocessError):\n    \"\"\"Raised when run() is called with check=True and the process\n    returns a non-zero exit status.\n\n    Attributes:\n      cmd, returncode, stdout, stderr, output\n    \"\"\"\n    def __init__(self, returncode, cmd, output=None, stderr=None):\n        self.returncode = returncode\n        self.cmd = cmd\n        self.output = output\n        self.stderr = stderr\n\n    def __str__(self):\n        if self.returncode and self.returncode < 0:\n            try:\n                return \"Command '%s' died with %r.\" % (\n                        self.cmd, signal.Signals(-self.returncode))\n            except ValueError:\n                return \"Command '%s' died with unknown signal %d.\" % (\n                        self.cmd, -self.returncode)\n        else:\n            return \"Command '%s' returned non-zero exit status %d.\" % (\n                    self.cmd, self.returncode)\n\n    @property\n    def stdout(self):\n        \"\"\"Alias for output attribute, to match stderr\"\"\"\n        return self.output\n\n    @stdout.setter\n    def stdout(self, value):\n        # There's no obvious reason to set this, but allow it anyway so\n        # .stdout is a transparent alias for .output\n        self.output = value\n\n\nclass TimeoutExpired(SubprocessError):\n    \"\"\"This exception is raised when the timeout expires while waiting for a\n    child process.\n\n    Attributes:\n        cmd, output, stdout, stderr, timeout\n    \"\"\"\n    def __init__(self, cmd, timeout, output=None, stderr=None):\n        self.cmd = cmd\n        self.timeout = timeout\n        self.output = output\n        self.stderr = stderr\n\n    def __str__(self):\n        return (\"Command '%s' timed out after %s seconds\" %\n                (self.cmd, self.timeout))\n\n    @property\n    def stdout(self):\n        return self.output\n\n    @stdout.setter\n    def stdout(self, value):\n        # There's no obvious reason to set this, but allow it anyway so\n        # .stdout is a transparent alias for .output\n        self.output = value\n\n\nif _mswindows:\n    class STARTUPINFO:\n        def __init__(self, *, dwFlags=0, hStdInput=None, hStdOutput=None,\n                     hStdError=None, wShowWindow=0, lpAttributeList=None):\n            self.dwFlags = dwFlags\n            self.hStdInput = hStdInput\n            self.hStdOutput = hStdOutput\n            self.hStdError = hStdError\n            self.wShowWindow = wShowWindow\n            self.lpAttributeList = lpAttributeList or {\"handle_list\": []}\n\n        def copy(self):\n            attr_list = self.lpAttributeList.copy()\n            if 'handle_list' in attr_list:\n                attr_list['handle_list'] = list(attr_list['handle_list'])\n\n            return STARTUPINFO(dwFlags=self.dwFlags,\n                               hStdInput=self.hStdInput,\n                               hStdOutput=self.hStdOutput,\n                               hStdError=self.hStdError,\n                               wShowWindow=self.wShowWindow,\n                               lpAttributeList=attr_list)\n\n\n    class Handle(int):\n        closed = False\n\n        def Close(self, CloseHandle=_winapi.CloseHandle):\n            if not self.closed:\n                self.closed = True\n                CloseHandle(self)\n\n        def Detach(self):\n            if not self.closed:\n                self.closed = True\n                return int(self)\n            raise ValueError(\"already closed\")\n\n        def __repr__(self):\n            return \"%s(%d)\" % (self.__class__.__name__, int(self))\n\n        __del__ = Close\nelse:\n    # When select or poll has indicated that the file is writable,\n    # we can write up to _PIPE_BUF bytes without risk of blocking.\n    # POSIX defines PIPE_BUF as >= 512.\n    _PIPE_BUF = getattr(select, 'PIPE_BUF', 512)\n\n    # poll/select have the advantage of not requiring any extra file\n    # descriptor, contrarily to epoll/kqueue (also, they require a single\n    # syscall).\n    if hasattr(selectors, 'PollSelector'):\n        _PopenSelector = selectors.PollSelector\n    else:\n        _PopenSelector = selectors.SelectSelector\n\n\nif _mswindows:\n    # On Windows we just need to close `Popen._handle` when we no longer need\n    # it, so that the kernel can free it. `Popen._handle` gets closed\n    # implicitly when the `Popen` instance is finalized (see `Handle.__del__`,\n    # which is calling `CloseHandle` as requested in [1]), so there is nothing\n    # for `_cleanup` to do.\n    #\n    # [1] https://docs.microsoft.com/en-us/windows/desktop/ProcThread/\n    # creating-processes\n    _active = None\n\n    def _cleanup():\n        pass\nelse:\n    # This lists holds Popen instances for which the underlying process had not\n    # exited at the time its __del__ method got called: those processes are\n    # wait()ed for synchronously from _cleanup() when a new Popen object is\n    # created, to avoid zombie processes.\n    _active = []\n\n    def _cleanup():\n        if _active is None:\n            return\n        for inst in _active[:]:\n            res = inst._internal_poll(_deadstate=sys.maxsize)\n            if res is not None:\n                try:\n                    _active.remove(inst)\n                except ValueError:\n                    # This can happen if two threads create a new Popen instance.\n                    # It's harmless that it was already removed, so ignore.\n                    pass\n\nPIPE = -1\nSTDOUT = -2\nDEVNULL = -3\n\n\n# XXX This function is only used by multiprocessing and the test suite,\n# but it's here so that it can be imported when Python is compiled without\n# threads.\n\ndef _optim_args_from_interpreter_flags():\n    \"\"\"Return a list of command-line arguments reproducing the current\n    optimization settings in sys.flags.\"\"\"\n    args = []\n    value = sys.flags.optimize\n    if value > 0:\n        args.append('-' + 'O' * value)\n    return args\n\n\ndef _args_from_interpreter_flags():\n    \"\"\"Return a list of command-line arguments reproducing the current\n    settings in sys.flags, sys.warnoptions and sys._xoptions.\"\"\"\n    flag_opt_map = {\n        'debug': 'd',\n        # 'inspect': 'i',\n        # 'interactive': 'i',\n        'dont_write_bytecode': 'B',\n        'no_site': 'S',\n        'verbose': 'v',\n        'bytes_warning': 'b',\n        'quiet': 'q',\n        # -O is handled in _optim_args_from_interpreter_flags()\n    }\n    args = _optim_args_from_interpreter_flags()\n    for flag, opt in flag_opt_map.items():\n        v = getattr(sys.flags, flag)\n        if v > 0:\n            args.append('-' + opt * v)\n\n    if sys.flags.isolated:\n        args.append('-I')\n    else:\n        if sys.flags.ignore_environment:\n            args.append('-E')\n        if sys.flags.no_user_site:\n            args.append('-s')\n\n    # -W options\n    warnopts = sys.warnoptions[:]\n    bytes_warning = sys.flags.bytes_warning\n    xoptions = getattr(sys, '_xoptions', {})\n    dev_mode = ('dev' in xoptions)\n\n    if bytes_warning > 1:\n        warnopts.remove(\"error::BytesWarning\")\n    elif bytes_warning:\n        warnopts.remove(\"default::BytesWarning\")\n    if dev_mode:\n        warnopts.remove('default')\n    for opt in warnopts:\n        args.append('-W' + opt)\n\n    # -X options\n    if dev_mode:\n        args.extend(('-X', 'dev'))\n    for opt in ('faulthandler', 'tracemalloc', 'importtime',\n                'showalloccount', 'showrefcount', 'utf8'):\n        if opt in xoptions:\n            value = xoptions[opt]\n            if value is True:\n                arg = opt\n            else:\n                arg = '%s=%s' % (opt, value)\n            args.extend(('-X', arg))\n\n    return args\n\n\ndef call(*popenargs, timeout=None, **kwargs):\n    \"\"\"Run command with arguments.  Wait for command to complete or\n    timeout, then return the returncode attribute.\n\n    The arguments are the same as for the Popen constructor.  Example:\n\n    retcode = call([\"ls\", \"-l\"])\n    \"\"\"\n    with Popen(*popenargs, **kwargs) as p:\n        try:\n            return p.wait(timeout=timeout)\n        except:  # Including KeyboardInterrupt, wait handled that.\n            p.kill()\n            # We don't call p.wait() again as p.__exit__ does that for us.\n            raise\n\n\ndef check_call(*popenargs, **kwargs):\n    \"\"\"Run command with arguments.  Wait for command to complete.  If\n    the exit code was zero then return, otherwise raise\n    CalledProcessError.  The CalledProcessError object will have the\n    return code in the returncode attribute.\n\n    The arguments are the same as for the call function.  Example:\n\n    check_call([\"ls\", \"-l\"])\n    \"\"\"\n    retcode = call(*popenargs, **kwargs)\n    if retcode:\n        cmd = kwargs.get(\"args\")\n        if cmd is None:\n            cmd = popenargs[0]\n        raise CalledProcessError(retcode, cmd)\n    return 0\n\n\ndef check_output(*popenargs, timeout=None, **kwargs):\n    r\"\"\"Run command with arguments and return its output.\n\n    If the exit code was non-zero it raises a CalledProcessError.  The\n    CalledProcessError object will have the return code in the returncode\n    attribute and output in the output attribute.\n\n    The arguments are the same as for the Popen constructor.  Example:\n\n    >>> check_output([\"ls\", \"-l\", \"/dev/null\"])\n    b'crw-rw-rw- 1 root root 1, 3 Oct 18  2007 /dev/null\\n'\n\n    The stdout argument is not allowed as it is used internally.\n    To capture standard error in the result, use stderr=STDOUT.\n\n    >>> check_output([\"/bin/sh\", \"-c\",\n    ...               \"ls -l non_existent_file ; exit 0\"],\n    ...              stderr=STDOUT)\n    b'ls: non_existent_file: No such file or directory\\n'\n\n    There is an additional optional argument, \"input\", allowing you to\n    pass a string to the subprocess's stdin.  If you use this argument\n    you may not also use the Popen constructor's \"stdin\" argument, as\n    it too will be used internally.  Example:\n\n    >>> check_output([\"sed\", \"-e\", \"s/foo/bar/\"],\n    ...              input=b\"when in the course of fooman events\\n\")\n    b'when in the course of barman events\\n'\n\n    By default, all communication is in bytes, and therefore any \"input\"\n    should be bytes, and the return value will be bytes.  If in text mode,\n    any \"input\" should be a string, and the return value will be a string\n    decoded according to locale encoding, or by \"encoding\" if set. Text mode\n    is triggered by setting any of text, encoding, errors or universal_newlines.\n    \"\"\"\n    if 'stdout' in kwargs:\n        raise ValueError('stdout argument not allowed, it will be overridden.')\n\n    if 'input' in kwargs and kwargs['input'] is None:\n        # Explicitly passing input=None was previously equivalent to passing an\n        # empty string. That is maintained here for backwards compatibility.\n        kwargs['input'] = '' if kwargs.get('universal_newlines', False) else b''\n\n    return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,\n               **kwargs).stdout\n\n\nclass CompletedProcess(object):\n    \"\"\"A process that has finished running.\n\n    This is returned by run().\n\n    Attributes:\n      args: The list or str args passed to run().\n      returncode: The exit code of the process, negative for signals.\n      stdout: The standard output (None if not captured).\n      stderr: The standard error (None if not captured).\n    \"\"\"\n    def __init__(self, args, returncode, stdout=None, stderr=None):\n        self.args = args\n        self.returncode = returncode\n        self.stdout = stdout\n        self.stderr = stderr\n\n    def __repr__(self):\n        args = ['args={!r}'.format(self.args),\n                'returncode={!r}'.format(self.returncode)]\n        if self.stdout is not None:\n            args.append('stdout={!r}'.format(self.stdout))\n        if self.stderr is not None:\n            args.append('stderr={!r}'.format(self.stderr))\n        return \"{}({})\".format(type(self).__name__, ', '.join(args))\n\n    def check_returncode(self):\n        \"\"\"Raise CalledProcessError if the exit code is non-zero.\"\"\"\n        if self.returncode:\n            raise CalledProcessError(self.returncode, self.args, self.stdout,\n                                     self.stderr)\n\n\ndef run(*popenargs,\n        input=None, capture_output=False, timeout=None, check=False, **kwargs):\n    \"\"\"Run command with arguments and return a CompletedProcess instance.\n\n    The returned instance will have attributes args, returncode, stdout and\n    stderr. By default, stdout and stderr are not captured, and those attributes\n    will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them.\n\n    If check is True and the exit code was non-zero, it raises a\n    CalledProcessError. The CalledProcessError object will have the return code\n    in the returncode attribute, and output & stderr attributes if those streams\n    were captured.\n\n    If timeout is given, and the process takes too long, a TimeoutExpired\n    exception will be raised.\n\n    There is an optional argument \"input\", allowing you to\n    pass bytes or a string to the subprocess's stdin.  If you use this argument\n    you may not also use the Popen constructor's \"stdin\" argument, as\n    it will be used internally.\n\n    By default, all communication is in bytes, and therefore any \"input\" should\n    be bytes, and the stdout and stderr will be bytes. If in text mode, any\n    \"input\" should be a string, and stdout and stderr will be strings decoded\n    according to locale encoding, or by \"encoding\" if set. Text mode is\n    triggered by setting any of text, encoding, errors or universal_newlines.\n\n    The other arguments are the same as for the Popen constructor.\n    \"\"\"\n    if input is not None:\n        if kwargs.get('stdin') is not None:\n            raise ValueError('stdin and input arguments may not both be used.')\n        kwargs['stdin'] = PIPE\n\n    if capture_output:\n        if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:\n            raise ValueError('stdout and stderr arguments may not be used '\n                             'with capture_output.')\n        kwargs['stdout'] = PIPE\n        kwargs['stderr'] = PIPE\n\n    with Popen(*popenargs, **kwargs) as process:\n        try:\n            stdout, stderr = process.communicate(input, timeout=timeout)\n        except TimeoutExpired as exc:\n            process.kill()\n            if _mswindows:\n                # Windows accumulates the output in a single blocking\n                # read() call run on child threads, with the timeout\n                # being done in a join() on those threads.  communicate()\n                # _after_ kill() is required to collect that and add it\n                # to the exception.\n                exc.stdout, exc.stderr = process.communicate()\n            else:\n                # POSIX _communicate already populated the output so\n                # far into the TimeoutExpired exception.\n                process.wait()\n            raise\n        except:  # Including KeyboardInterrupt, communicate handled that.\n            process.kill()\n            # We don't call process.wait() as .__exit__ does that for us.\n            raise\n        retcode = process.poll()\n        if check and retcode:\n            raise CalledProcessError(retcode, process.args,\n                                     output=stdout, stderr=stderr)\n    return CompletedProcess(process.args, retcode, stdout, stderr)\n\n\ndef list2cmdline(seq):\n    \"\"\"\n    Translate a sequence of arguments into a command line\n    string, using the same rules as the MS C runtime:\n\n    1) Arguments are delimited by white space, which is either a\n       space or a tab.\n\n    2) A string surrounded by double quotation marks is\n       interpreted as a single argument, regardless of white space\n       contained within.  A quoted string can be embedded in an\n       argument.\n\n    3) A double quotation mark preceded by a backslash is\n       interpreted as a literal double quotation mark.\n\n    4) Backslashes are interpreted literally, unless they\n       immediately precede a double quotation mark.\n\n    5) If backslashes immediately precede a double quotation mark,\n       every pair of backslashes is interpreted as a literal\n       backslash.  If the number of backslashes is odd, the last\n       backslash escapes the next double quotation mark as\n       described in rule 3.\n    \"\"\"\n\n    # See\n    # http://msdn.microsoft.com/en-us/library/17w5ykft.aspx\n    # or search http://msdn.microsoft.com for\n    # \"Parsing C++ Command-Line Arguments\"\n    result = []\n    needquote = False\n    for arg in map(os.fsdecode, seq):\n        bs_buf = []\n\n        # Add a space to separate this argument from the others\n        if result:\n            result.append(' ')\n\n        needquote = (\" \" in arg) or (\"\\t\" in arg) or not arg\n        if needquote:\n            result.append('\"')\n\n        for c in arg:\n            if c == '\\\\':\n                # Don't know if we need to double yet.\n                bs_buf.append(c)\n            elif c == '\"':\n                # Double backslashes.\n                result.append('\\\\' * len(bs_buf)*2)\n                bs_buf = []\n                result.append('\\\\\"')\n            else:\n                # Normal char\n                if bs_buf:\n                    result.extend(bs_buf)\n                    bs_buf = []\n                result.append(c)\n\n        # Add remaining backslashes, if any.\n        if bs_buf:\n            result.extend(bs_buf)\n\n        if needquote:\n            result.extend(bs_buf)\n            result.append('\"')\n\n    return ''.join(result)\n\n\n# Various tools for executing commands and looking at their output and status.\n#\n\ndef getstatusoutput(cmd):\n    \"\"\"Return (exitcode, output) of executing cmd in a shell.\n\n    Execute the string 'cmd' in a shell with 'check_output' and\n    return a 2-tuple (status, output). The locale encoding is used\n    to decode the output and process newlines.\n\n    A trailing newline is stripped from the output.\n    The exit status for the command can be interpreted\n    according to the rules for the function 'wait'. Example:\n\n    >>> import subprocess\n    >>> subprocess.getstatusoutput('ls /bin/ls')\n    (0, '/bin/ls')\n    >>> subprocess.getstatusoutput('cat /bin/junk')\n    (1, 'cat: /bin/junk: No such file or directory')\n    >>> subprocess.getstatusoutput('/bin/junk')\n    (127, 'sh: /bin/junk: not found')\n    >>> subprocess.getstatusoutput('/bin/kill $$')\n    (-15, '')\n    \"\"\"\n    try:\n        data = check_output(cmd, shell=True, text=True, stderr=STDOUT)\n        exitcode = 0\n    except CalledProcessError as ex:\n        data = ex.output\n        exitcode = ex.returncode\n    if data[-1:] == '\\n':\n        data = data[:-1]\n    return exitcode, data\n\ndef getoutput(cmd):\n    \"\"\"Return output (stdout or stderr) of executing cmd in a shell.\n\n    Like getstatusoutput(), except the exit status is ignored and the return\n    value is a string containing the command's output.  Example:\n\n    >>> import subprocess\n    >>> subprocess.getoutput('ls /bin/ls')\n    '/bin/ls'\n    \"\"\"\n    return getstatusoutput(cmd)[1]\n\n\ndef _use_posix_spawn():\n    \"\"\"Check if posix_spawn() can be used for subprocess.\n\n    subprocess requires a posix_spawn() implementation that properly reports\n    errors to the parent process, & sets errno on the following failures:\n\n    * Process attribute actions failed.\n    * File actions failed.\n    * exec() failed.\n\n    Prefer an implementation which can use vfork() in some cases for best\n    performance.\n    \"\"\"\n    if _mswindows or not hasattr(os, 'posix_spawn'):\n        # os.posix_spawn() is not available\n        return False\n\n    if sys.platform == 'darwin':\n        # posix_spawn() is a syscall on macOS and properly reports errors\n        return True\n\n    # Check libc name and runtime libc version\n    try:\n        ver = os.confstr('CS_GNU_LIBC_VERSION')\n        # parse 'glibc 2.28' as ('glibc', (2, 28))\n        parts = ver.split(maxsplit=1)\n        if len(parts) != 2:\n            # reject unknown format\n            raise ValueError\n        libc = parts[0]\n        version = tuple(map(int, parts[1].split('.')))\n\n        if sys.platform == 'linux' and libc == 'glibc' and version >= (2, 24):\n            # glibc 2.24 has a new Linux posix_spawn implementation using vfork\n            # which properly reports errors to the parent process.\n            return True\n        # Note: Don't use the implementation in earlier glibc because it doesn't\n        # use vfork (even if glibc 2.26 added a pipe to properly report errors\n        # to the parent process).\n    except (AttributeError, ValueError, OSError):\n        # os.confstr() or CS_GNU_LIBC_VERSION value not available\n        pass\n\n    # By default, assume that posix_spawn() does not properly report errors.\n    return False\n\n\n_USE_POSIX_SPAWN = _use_posix_spawn()\n\n\nclass Popen(object):\n    \"\"\" Execute a child program in a new process.\n\n    For a complete description of the arguments see the Python documentation.\n\n    Arguments:\n      args: A string, or a sequence of program arguments.\n\n      bufsize: supplied as the buffering argument to the open() function when\n          creating the stdin/stdout/stderr pipe file objects\n\n      executable: A replacement program to execute.\n\n      stdin, stdout and stderr: These specify the executed programs' standard\n          input, standard output and standard error file handles, respectively.\n\n      preexec_fn: (POSIX only) An object to be called in the child process\n          just before the child is executed.\n\n      close_fds: Controls closing or inheriting of file descriptors.\n\n      shell: If true, the command will be executed through the shell.\n\n      cwd: Sets the current directory before the child is executed.\n\n      env: Defines the environment variables for the new process.\n\n      text: If true, decode stdin, stdout and stderr using the given encoding\n          (if set) or the system default otherwise.\n\n      universal_newlines: Alias of text, provided for backwards compatibility.\n\n      startupinfo and creationflags (Windows only)\n\n      restore_signals (POSIX only)\n\n      start_new_session (POSIX only)\n\n      pass_fds (POSIX only)\n\n      encoding and errors: Text mode encoding and error handling to use for\n          file objects stdin, stdout and stderr.\n\n    Attributes:\n        stdin, stdout, stderr, pid, returncode\n    \"\"\"\n    _child_created = False  # Set here since __del__ checks it\n\n    def __init__(self, args, bufsize=-1, executable=None,\n                 stdin=None, stdout=None, stderr=None,\n                 preexec_fn=None, close_fds=True,\n                 shell=False, cwd=None, env=None, universal_newlines=None,\n                 startupinfo=None, creationflags=0,\n                 restore_signals=True, start_new_session=False,\n                 pass_fds=(), *, encoding=None, errors=None, text=None):\n        \"\"\"Create new Popen instance.\"\"\"\n        _cleanup()\n        # Held while anything is calling waitpid before returncode has been\n        # updated to prevent clobbering returncode if wait() or poll() are\n        # called from multiple threads at once.  After acquiring the lock,\n        # code must re-check self.returncode to see if another thread just\n        # finished a waitpid() call.\n        self._waitpid_lock = threading.Lock()\n\n        self._input = None\n        self._communication_started = False\n        if bufsize is None:\n            bufsize = -1  # Restore default\n        if not isinstance(bufsize, int):\n            raise TypeError(\"bufsize must be an integer\")\n\n        if _mswindows:\n            if preexec_fn is not None:\n                raise ValueError(\"preexec_fn is not supported on Windows \"\n                                 \"platforms\")\n        else:\n            # POSIX\n            if pass_fds and not close_fds:\n                warnings.warn(\"pass_fds overriding close_fds.\", RuntimeWarning)\n                close_fds = True\n            if startupinfo is not None:\n                raise ValueError(\"startupinfo is only supported on Windows \"\n                                 \"platforms\")\n            if creationflags != 0:\n                raise ValueError(\"creationflags is only supported on Windows \"\n                                 \"platforms\")\n\n        self.args = args\n        self.stdin = None\n        self.stdout = None\n        self.stderr = None\n        self.pid = None\n        self.returncode = None\n        self.encoding = encoding\n        self.errors = errors\n\n        # Validate the combinations of text and universal_newlines\n        if (text is not None and universal_newlines is not None\n            and bool(universal_newlines) != bool(text)):\n            raise SubprocessError('Cannot disambiguate when both text '\n                                  'and universal_newlines are supplied but '\n                                  'different. Pass one or the other.')\n\n        # Input and output objects. The general principle is like\n        # this:\n        #\n        # Parent                   Child\n        # ------                   -----\n        # p2cwrite   ---stdin--->  p2cread\n        # c2pread    <--stdout---  c2pwrite\n        # errread    <--stderr---  errwrite\n        #\n        # On POSIX, the child objects are file descriptors.  On\n        # Windows, these are Windows file handles.  The parent objects\n        # are file descriptors on both platforms.  The parent objects\n        # are -1 when not using PIPEs. The child objects are -1\n        # when not redirecting.\n\n        (p2cread, p2cwrite,\n         c2pread, c2pwrite,\n         errread, errwrite) = self._get_handles(stdin, stdout, stderr)\n\n        # We wrap OS handles *before* launching the child, otherwise a\n        # quickly terminating child could make our fds unwrappable\n        # (see #8458).\n\n        if _mswindows:\n            if p2cwrite != -1:\n                p2cwrite = msvcrt.open_osfhandle(p2cwrite.Detach(), 0)\n            if c2pread != -1:\n                c2pread = msvcrt.open_osfhandle(c2pread.Detach(), 0)\n            if errread != -1:\n                errread = msvcrt.open_osfhandle(errread.Detach(), 0)\n\n        self.text_mode = encoding or errors or text or universal_newlines\n\n        # How long to resume waiting on a child after the first ^C.\n        # There is no right value for this.  The purpose is to be polite\n        # yet remain good for interactive users trying to exit a tool.\n        self._sigint_wait_secs = 0.25  # 1/xkcd221.getRandomNumber()\n\n        self._closed_child_pipe_fds = False\n\n        if self.text_mode:\n            if bufsize == 1:\n                line_buffering = True\n                # Use the default buffer size for the underlying binary streams\n                # since they don't support line buffering.\n                bufsize = -1\n            else:\n                line_buffering = False\n\n        try:\n            if p2cwrite != -1:\n                self.stdin = io.open(p2cwrite, 'wb', bufsize)\n                if self.text_mode:\n                    self.stdin = io.TextIOWrapper(self.stdin, write_through=True,\n                            line_buffering=line_buffering,\n                            encoding=encoding, errors=errors)\n            if c2pread != -1:\n                self.stdout = io.open(c2pread, 'rb', bufsize)\n                if self.text_mode:\n                    self.stdout = io.TextIOWrapper(self.stdout,\n                            encoding=encoding, errors=errors)\n            if errread != -1:\n                self.stderr = io.open(errread, 'rb', bufsize)\n                if self.text_mode:\n                    self.stderr = io.TextIOWrapper(self.stderr,\n                            encoding=encoding, errors=errors)\n\n            self._execute_child(args, executable, preexec_fn, close_fds,\n                                pass_fds, cwd, env,\n                                startupinfo, creationflags, shell,\n                                p2cread, p2cwrite,\n                                c2pread, c2pwrite,\n                                errread, errwrite,\n                                restore_signals, start_new_session)\n        except:\n            # Cleanup if the child failed starting.\n            for f in filter(None, (self.stdin, self.stdout, self.stderr)):\n                try:\n                    f.close()\n                except OSError:\n                    pass  # Ignore EBADF or other errors.\n\n            if not self._closed_child_pipe_fds:\n                to_close = []\n                if stdin == PIPE:\n                    to_close.append(p2cread)\n                if stdout == PIPE:\n                    to_close.append(c2pwrite)\n                if stderr == PIPE:\n                    to_close.append(errwrite)\n                if hasattr(self, '_devnull'):\n                    to_close.append(self._devnull)\n                for fd in to_close:\n                    try:\n                        if _mswindows and isinstance(fd, Handle):\n                            fd.Close()\n                        else:\n                            os.close(fd)\n                    except OSError:\n                        pass\n\n            raise\n\n    @property\n    def universal_newlines(self):\n        # universal_newlines as retained as an alias of text_mode for API\n        # compatibility. bpo-31756\n        return self.text_mode\n\n    @universal_newlines.setter\n    def universal_newlines(self, universal_newlines):\n        self.text_mode = bool(universal_newlines)\n\n    def _translate_newlines(self, data, encoding, errors):\n        data = data.decode(encoding, errors)\n        return data.replace(\"\\r\\n\", \"\\n\").replace(\"\\r\", \"\\n\")\n\n    def __enter__(self):\n        return self\n\n    def __exit__(self, exc_type, value, traceback):\n        if self.stdout:\n            self.stdout.close()\n        if self.stderr:\n            self.stderr.close()\n        try:  # Flushing a BufferedWriter may raise an error\n            if self.stdin:\n                self.stdin.close()\n        finally:\n            if exc_type == KeyboardInterrupt:\n                # https://bugs.python.org/issue25942\n                # In the case of a KeyboardInterrupt we assume the SIGINT\n                # was also already sent to our child processes.  We can't\n                # block indefinitely as that is not user friendly.\n                # If we have not already waited a brief amount of time in\n                # an interrupted .wait() or .communicate() call, do so here\n                # for consistency.\n                if self._sigint_wait_secs > 0:\n                    try:\n                        self._wait(timeout=self._sigint_wait_secs)\n                    except TimeoutExpired:\n                        pass\n                self._sigint_wait_secs = 0  # Note that this has been done.\n                return  # resume the KeyboardInterrupt\n\n            # Wait for the process to terminate, to avoid zombies.\n            self.wait()\n\n    def __del__(self, _maxsize=sys.maxsize, _warn=warnings.warn):\n        if not self._child_created:\n            # We didn't get to successfully create a child process.\n            return\n        if self.returncode is None:\n            # Not reading subprocess exit status creates a zombie process which\n            # is only destroyed at the parent python process exit\n            _warn(\"subprocess %s is still running\" % self.pid,\n                  ResourceWarning, source=self)\n        # In case the child hasn't been waited on, check if it's done.\n        self._internal_poll(_deadstate=_maxsize)\n        if self.returncode is None and _active is not None:\n            # Child is still running, keep us alive until we can wait on it.\n            _active.append(self)\n\n    def _get_devnull(self):\n        if not hasattr(self, '_devnull'):\n            self._devnull = os.open(os.devnull, os.O_RDWR)\n        return self._devnull\n\n    def _stdin_write(self, input):\n        if input:\n            try:\n                self.stdin.write(input)\n            except BrokenPipeError:\n                pass  # communicate() must ignore broken pipe errors.\n            except OSError as exc:\n                if exc.errno == errno.EINVAL:\n                    # bpo-19612, bpo-30418: On Windows, stdin.write() fails\n                    # with EINVAL if the child process exited or if the child\n                    # process is still running but closed the pipe.\n                    pass\n                else:\n                    raise\n\n        try:\n            self.stdin.close()\n        except BrokenPipeError:\n            pass  # communicate() must ignore broken pipe errors.\n        except OSError as exc:\n            if exc.errno == errno.EINVAL:\n                pass\n            else:\n                raise\n\n    def communicate(self, input=None, timeout=None):\n        \"\"\"Interact with process: Send data to stdin and close it.\n        Read data from stdout and stderr, until end-of-file is\n        reached.  Wait for process to terminate.\n\n        The optional \"input\" argument should be data to be sent to the\n        child process, or None, if no data should be sent to the child.\n        communicate() returns a tuple (stdout, stderr).\n\n        By default, all communication is in bytes, and therefore any\n        \"input\" should be bytes, and the (stdout, stderr) will be bytes.\n        If in text mode (indicated by self.text_mode), any \"input\" should\n        be a string, and (stdout, stderr) will be strings decoded\n        according to locale encoding, or by \"encoding\" if set. Text mode\n        is triggered by setting any of text, encoding, errors or\n        universal_newlines.\n        \"\"\"\n\n        if self._communication_started and input:\n            raise ValueError(\"Cannot send input after starting communication\")\n\n        # Optimization: If we are not worried about timeouts, we haven't\n        # started communicating, and we have one or zero pipes, using select()\n        # or threads is unnecessary.\n        if (timeout is None and not self._communication_started and\n            [self.stdin, self.stdout, self.stderr].count(None) >= 2):\n            stdout = None\n            stderr = None\n            if self.stdin:\n                self._stdin_write(input)\n            elif self.stdout:\n                stdout = self.stdout.read()\n                self.stdout.close()\n            elif self.stderr:\n                stderr = self.stderr.read()\n                self.stderr.close()\n            self.wait()\n        else:\n            if timeout is not None:\n                endtime = _time() + timeout\n            else:\n                endtime = None\n\n            try:\n                stdout, stderr = self._communicate(input, endtime, timeout)\n            except KeyboardInterrupt:\n                # https://bugs.python.org/issue25942\n                # See the detailed comment in .wait().\n                if timeout is not None:\n                    sigint_timeout = min(self._sigint_wait_secs,\n                                         self._remaining_time(endtime))\n                else:\n                    sigint_timeout = self._sigint_wait_secs\n                self._sigint_wait_secs = 0  # nothing else should wait.\n                try:\n                    self._wait(timeout=sigint_timeout)\n                except TimeoutExpired:\n                    pass\n                raise  # resume the KeyboardInterrupt\n\n            finally:\n                self._communication_started = True\n\n            sts = self.wait(timeout=self._remaining_time(endtime))\n\n        return (stdout, stderr)\n\n\n    def poll(self):\n        \"\"\"Check if child process has terminated. Set and return returncode\n        attribute.\"\"\"\n        return self._internal_poll()\n\n\n    def _remaining_time(self, endtime):\n        \"\"\"Convenience for _communicate when computing timeouts.\"\"\"\n        if endtime is None:\n            return None\n        else:\n            return endtime - _time()\n\n\n    def _check_timeout(self, endtime, orig_timeout, stdout_seq, stderr_seq,\n                       skip_check_and_raise=False):\n        \"\"\"Convenience for checking if a timeout has expired.\"\"\"\n        if endtime is None:\n            return\n        if skip_check_and_raise or _time() > endtime:\n            raise TimeoutExpired(\n                    self.args, orig_timeout,\n                    output=b''.join(stdout_seq) if stdout_seq else None,\n                    stderr=b''.join(stderr_seq) if stderr_seq else None)\n\n\n    def wait(self, timeout=None):\n        \"\"\"Wait for child process to terminate; returns self.returncode.\"\"\"\n        if timeout is not None:\n            endtime = _time() + timeout\n        try:\n            return self._wait(timeout=timeout)\n        except KeyboardInterrupt:\n            # https://bugs.python.org/issue25942\n            # The first keyboard interrupt waits briefly for the child to\n            # exit under the common assumption that it also received the ^C\n            # generated SIGINT and will exit rapidly.\n            if timeout is not None:\n                sigint_timeout = min(self._sigint_wait_secs,\n                                     self._remaining_time(endtime))\n            else:\n                sigint_timeout = self._sigint_wait_secs\n            self._sigint_wait_secs = 0  # nothing else should wait.\n            try:\n                self._wait(timeout=sigint_timeout)\n            except TimeoutExpired:\n                pass\n            raise  # resume the KeyboardInterrupt\n\n    def _close_pipe_fds(self,\n                        p2cread, p2cwrite,\n                        c2pread, c2pwrite,\n                        errread, errwrite):\n        # self._devnull is not always defined.\n        devnull_fd = getattr(self, '_devnull', None)\n\n        with contextlib.ExitStack() as stack:\n            if _mswindows:\n                if p2cread != -1:\n                    stack.callback(p2cread.Close)\n                if c2pwrite != -1:\n                    stack.callback(c2pwrite.Close)\n                if errwrite != -1:\n                    stack.callback(errwrite.Close)\n            else:\n                if p2cread != -1 and p2cwrite != -1 and p2cread != devnull_fd:\n                    stack.callback(os.close, p2cread)\n                if c2pwrite != -1 and c2pread != -1 and c2pwrite != devnull_fd:\n                    stack.callback(os.close, c2pwrite)\n                if errwrite != -1 and errread != -1 and errwrite != devnull_fd:\n                    stack.callback(os.close, errwrite)\n\n            if devnull_fd is not None:\n                stack.callback(os.close, devnull_fd)\n\n        # Prevent a double close of these handles/fds from __init__ on error.\n        self._closed_child_pipe_fds = True\n\n    if _mswindows:\n        #\n        # Windows methods\n        #\n        def _get_handles(self, stdin, stdout, stderr):\n            \"\"\"Construct and return tuple with IO objects:\n            p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite\n            \"\"\"\n            if stdin is None and stdout is None and stderr is None:\n                return (-1, -1, -1, -1, -1, -1)\n\n            p2cread, p2cwrite = -1, -1\n            c2pread, c2pwrite = -1, -1\n            errread, errwrite = -1, -1\n\n            if stdin is None:\n                p2cread = _winapi.GetStdHandle(_winapi.STD_INPUT_HANDLE)\n                if p2cread is None:\n                    p2cread, _ = _winapi.CreatePipe(None, 0)\n                    p2cread = Handle(p2cread)\n                    _winapi.CloseHandle(_)\n            elif stdin == PIPE:\n                p2cread, p2cwrite = _winapi.CreatePipe(None, 0)\n                p2cread, p2cwrite = Handle(p2cread), Handle(p2cwrite)\n            elif stdin == DEVNULL:\n                p2cread = msvcrt.get_osfhandle(self._get_devnull())\n            elif isinstance(stdin, int):\n                p2cread = msvcrt.get_osfhandle(stdin)\n            else:\n                # Assuming file-like object\n                p2cread = msvcrt.get_osfhandle(stdin.fileno())\n            p2cread = self._make_inheritable(p2cread)\n\n            if stdout is None:\n                c2pwrite = _winapi.GetStdHandle(_winapi.STD_OUTPUT_HANDLE)\n                if c2pwrite is None:\n                    _, c2pwrite = _winapi.CreatePipe(None, 0)\n                    c2pwrite = Handle(c2pwrite)\n                    _winapi.CloseHandle(_)\n            elif stdout == PIPE:\n                c2pread, c2pwrite = _winapi.CreatePipe(None, 0)\n                c2pread, c2pwrite = Handle(c2pread), Handle(c2pwrite)\n            elif stdout == DEVNULL:\n                c2pwrite = msvcrt.get_osfhandle(self._get_devnull())\n            elif isinstance(stdout, int):\n                c2pwrite = msvcrt.get_osfhandle(stdout)\n            else:\n                # Assuming file-like object\n                c2pwrite = msvcrt.get_osfhandle(stdout.fileno())\n            c2pwrite = self._make_inheritable(c2pwrite)\n\n            if stderr is None:\n                errwrite = _winapi.GetStdHandle(_winapi.STD_ERROR_HANDLE)\n                if errwrite is None:\n                    _, errwrite = _winapi.CreatePipe(None, 0)\n                    errwrite = Handle(errwrite)\n                    _winapi.CloseHandle(_)\n            elif stderr == PIPE:\n                errread, errwrite = _winapi.CreatePipe(None, 0)\n                errread, errwrite = Handle(errread), Handle(errwrite)\n            elif stderr == STDOUT:\n                errwrite = c2pwrite\n            elif stderr == DEVNULL:\n                errwrite = msvcrt.get_osfhandle(self._get_devnull())\n            elif isinstance(stderr, int):\n                errwrite = msvcrt.get_osfhandle(stderr)\n            else:\n                # Assuming file-like object\n                errwrite = msvcrt.get_osfhandle(stderr.fileno())\n            errwrite = self._make_inheritable(errwrite)\n\n            return (p2cread, p2cwrite,\n                    c2pread, c2pwrite,\n                    errread, errwrite)\n\n\n        def _make_inheritable(self, handle):\n            \"\"\"Return a duplicate of handle, which is inheritable\"\"\"\n            h = _winapi.DuplicateHandle(\n                _winapi.GetCurrentProcess(), handle,\n                _winapi.GetCurrentProcess(), 0, 1,\n                _winapi.DUPLICATE_SAME_ACCESS)\n            return Handle(h)\n\n\n        def _filter_handle_list(self, handle_list):\n            \"\"\"Filter out console handles that can't be used\n            in lpAttributeList[\"handle_list\"] and make sure the list\n            isn't empty. This also removes duplicate handles.\"\"\"\n            # An handle with it's lowest two bits set might be a special console\n            # handle that if passed in lpAttributeList[\"handle_list\"], will\n            # cause it to fail.\n            return list({handle for handle in handle_list\n                         if handle & 0x3 != 0x3\n                         or _winapi.GetFileType(handle) !=\n                            _winapi.FILE_TYPE_CHAR})\n\n\n        def _execute_child(self, args, executable, preexec_fn, close_fds,\n                           pass_fds, cwd, env,\n                           startupinfo, creationflags, shell,\n                           p2cread, p2cwrite,\n                           c2pread, c2pwrite,\n                           errread, errwrite,\n                           unused_restore_signals, unused_start_new_session):\n            \"\"\"Execute program (MS Windows version)\"\"\"\n\n            assert not pass_fds, \"pass_fds not supported on Windows.\"\n\n            if isinstance(args, str):\n                pass\n            elif isinstance(args, bytes):\n                if shell:\n                    raise TypeError('bytes args is not allowed on Windows')\n                args = list2cmdline([args])\n            elif isinstance(args, os.PathLike):\n                if shell:\n                    raise TypeError('path-like args is not allowed when '\n                                    'shell is true')\n                args = list2cmdline([args])\n            else:\n                args = list2cmdline(args)\n\n            if executable is not None:\n                executable = os.fsdecode(executable)\n\n            # Process startup details\n            if startupinfo is None:\n                startupinfo = STARTUPINFO()\n            else:\n                # bpo-34044: Copy STARTUPINFO since it is modified above,\n                # so the caller can reuse it multiple times.\n                startupinfo = startupinfo.copy()\n\n            use_std_handles = -1 not in (p2cread, c2pwrite, errwrite)\n            if use_std_handles:\n                startupinfo.dwFlags |= _winapi.STARTF_USESTDHANDLES\n                startupinfo.hStdInput = p2cread\n                startupinfo.hStdOutput = c2pwrite\n                startupinfo.hStdError = errwrite\n\n            attribute_list = startupinfo.lpAttributeList\n            have_handle_list = bool(attribute_list and\n                                    \"handle_list\" in attribute_list and\n                                    attribute_list[\"handle_list\"])\n\n            # If we were given an handle_list or need to create one\n            if have_handle_list or (use_std_handles and close_fds):\n                if attribute_list is None:\n                    attribute_list = startupinfo.lpAttributeList = {}\n                handle_list = attribute_list[\"handle_list\"] = \\\n                    list(attribute_list.get(\"handle_list\", []))\n\n                if use_std_handles:\n                    handle_list += [int(p2cread), int(c2pwrite), int(errwrite)]\n\n                handle_list[:] = self._filter_handle_list(handle_list)\n\n                if handle_list:\n                    if not close_fds:\n                        warnings.warn(\"startupinfo.lpAttributeList['handle_list'] \"\n                                      \"overriding close_fds\", RuntimeWarning)\n\n                    # When using the handle_list we always request to inherit\n                    # handles but the only handles that will be inherited are\n                    # the ones in the handle_list\n                    close_fds = False\n\n            if shell:\n                startupinfo.dwFlags |= _winapi.STARTF_USESHOWWINDOW\n                startupinfo.wShowWindow = _winapi.SW_HIDE\n                comspec = os.environ.get(\"COMSPEC\", \"cmd.exe\")\n                args = '{} /c \"{}\"'.format (comspec, args)\n\n            if cwd is not None:\n                cwd = os.fsdecode(cwd)\n\n            sys.audit(\"subprocess.Popen\", executable, args, cwd, env)\n\n            # Start the process\n            try:\n                hp, ht, pid, tid = _winapi.CreateProcess(executable, args,\n                                         # no special security\n                                         None, None,\n                                         int(not close_fds),\n                                         creationflags,\n                                         env,\n                                         cwd,\n                                         startupinfo)\n            finally:\n                # Child is launched. Close the parent's copy of those pipe\n                # handles that only the child should have open.  You need\n                # to make sure that no handles to the write end of the\n                # output pipe are maintained in this process or else the\n                # pipe will not close when the child process exits and the\n                # ReadFile will hang.\n                self._close_pipe_fds(p2cread, p2cwrite,\n                                     c2pread, c2pwrite,\n                                     errread, errwrite)\n\n            # Retain the process handle, but close the thread handle\n            self._child_created = True\n            self._handle = Handle(hp)\n            self.pid = pid\n            _winapi.CloseHandle(ht)\n\n        def _internal_poll(self, _deadstate=None,\n                _WaitForSingleObject=_winapi.WaitForSingleObject,\n                _WAIT_OBJECT_0=_winapi.WAIT_OBJECT_0,\n                _GetExitCodeProcess=_winapi.GetExitCodeProcess):\n            \"\"\"Check if child process has terminated.  Returns returncode\n            attribute.\n\n            This method is called by __del__, so it can only refer to objects\n            in its local scope.\n\n            \"\"\"\n            if self.returncode is None:\n                if _WaitForSingleObject(self._handle, 0) == _WAIT_OBJECT_0:\n                    self.returncode = _GetExitCodeProcess(self._handle)\n            return self.returncode\n\n\n        def _wait(self, timeout):\n            \"\"\"Internal implementation of wait() on Windows.\"\"\"\n            if timeout is None:\n                timeout_millis = _winapi.INFINITE\n            else:\n                timeout_millis = int(timeout * 1000)\n            if self.returncode is None:\n                # API note: Returns immediately if timeout_millis == 0.\n                result = _winapi.WaitForSingleObject(self._handle,\n                                                     timeout_millis)\n                if result == _winapi.WAIT_TIMEOUT:\n                    raise TimeoutExpired(self.args, timeout)\n                self.returncode = _winapi.GetExitCodeProcess(self._handle)\n            return self.returncode\n\n\n        def _readerthread(self, fh, buffer):\n            buffer.append(fh.read())\n            fh.close()\n\n\n        def _communicate(self, input, endtime, orig_timeout):\n            # Start reader threads feeding into a list hanging off of this\n            # object, unless they've already been started.\n            if self.stdout and not hasattr(self, \"_stdout_buff\"):\n                self._stdout_buff = []\n                self.stdout_thread = \\\n                        threading.Thread(target=self._readerthread,\n                                         args=(self.stdout, self._stdout_buff))\n                self.stdout_thread.daemon = True\n                self.stdout_thread.start()\n            if self.stderr and not hasattr(self, \"_stderr_buff\"):\n                self._stderr_buff = []\n                self.stderr_thread = \\\n                        threading.Thread(target=self._readerthread,\n                                         args=(self.stderr, self._stderr_buff))\n                self.stderr_thread.daemon = True\n                self.stderr_thread.start()\n\n            if self.stdin:\n                self._stdin_write(input)\n\n            # Wait for the reader threads, or time out.  If we time out, the\n            # threads remain reading and the fds left open in case the user\n            # calls communicate again.\n            if self.stdout is not None:\n                self.stdout_thread.join(self._remaining_time(endtime))\n                if self.stdout_thread.is_alive():\n                    raise TimeoutExpired(self.args, orig_timeout)\n            if self.stderr is not None:\n                self.stderr_thread.join(self._remaining_time(endtime))\n                if self.stderr_thread.is_alive():\n                    raise TimeoutExpired(self.args, orig_timeout)\n\n            # Collect the output from and close both pipes, now that we know\n            # both have been read successfully.\n            stdout = None\n            stderr = None\n            if self.stdout:\n                stdout = self._stdout_buff\n                self.stdout.close()\n            if self.stderr:\n                stderr = self._stderr_buff\n                self.stderr.close()\n\n            # All data exchanged.  Translate lists into strings.\n            if stdout is not None:\n                stdout = stdout[0]\n            if stderr is not None:\n                stderr = stderr[0]\n\n            return (stdout, stderr)\n\n        def send_signal(self, sig):\n            \"\"\"Send a signal to the process.\"\"\"\n            # Don't signal a process that we know has already died.\n            if self.returncode is not None:\n                return\n            if sig == signal.SIGTERM:\n                self.terminate()\n            elif sig == signal.CTRL_C_EVENT:\n                os.kill(self.pid, signal.CTRL_C_EVENT)\n            elif sig == signal.CTRL_BREAK_EVENT:\n                os.kill(self.pid, signal.CTRL_BREAK_EVENT)\n            else:\n                raise ValueError(\"Unsupported signal: {}\".format(sig))\n\n        def terminate(self):\n            \"\"\"Terminates the process.\"\"\"\n            # Don't terminate a process that we know has already died.\n            if self.returncode is not None:\n                return\n            try:\n                _winapi.TerminateProcess(self._handle, 1)\n            except PermissionError:\n                # ERROR_ACCESS_DENIED (winerror 5) is received when the\n                # process already died.\n                rc = _winapi.GetExitCodeProcess(self._handle)\n                if rc == _winapi.STILL_ACTIVE:\n                    raise\n                self.returncode = rc\n\n        kill = terminate\n\n    else:\n        #\n        # POSIX methods\n        #\n        def _get_handles(self, stdin, stdout, stderr):\n            \"\"\"Construct and return tuple with IO objects:\n            p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite\n            \"\"\"\n            p2cread, p2cwrite = -1, -1\n            c2pread, c2pwrite = -1, -1\n            errread, errwrite = -1, -1\n\n            if stdin is None:\n                pass\n            elif stdin == PIPE:\n                p2cread, p2cwrite = os.pipe()\n            elif stdin == DEVNULL:\n                p2cread = self._get_devnull()\n            elif isinstance(stdin, int):\n                p2cread = stdin\n            else:\n                # Assuming file-like object\n                p2cread = stdin.fileno()\n\n            if stdout is None:\n                pass\n            elif stdout == PIPE:\n                c2pread, c2pwrite = os.pipe()\n            elif stdout == DEVNULL:\n                c2pwrite = self._get_devnull()\n            elif isinstance(stdout, int):\n                c2pwrite = stdout\n            else:\n                # Assuming file-like object\n                c2pwrite = stdout.fileno()\n\n            if stderr is None:\n                pass\n            elif stderr == PIPE:\n                errread, errwrite = os.pipe()\n            elif stderr == STDOUT:\n                if c2pwrite != -1:\n                    errwrite = c2pwrite\n                else: # child's stdout is not set, use parent's stdout\n                    errwrite = sys.__stdout__.fileno()\n            elif stderr == DEVNULL:\n                errwrite = self._get_devnull()\n            elif isinstance(stderr, int):\n                errwrite = stderr\n            else:\n                # Assuming file-like object\n                errwrite = stderr.fileno()\n\n            return (p2cread, p2cwrite,\n                    c2pread, c2pwrite,\n                    errread, errwrite)\n\n\n        def _posix_spawn(self, args, executable, env, restore_signals,\n                         p2cread, p2cwrite,\n                         c2pread, c2pwrite,\n                         errread, errwrite):\n            \"\"\"Execute program using os.posix_spawn().\"\"\"\n            if env is None:\n                env = os.environ\n\n            kwargs = {}\n            if restore_signals:\n                # See _Py_RestoreSignals() in Python/pylifecycle.c\n                sigset = []\n                for signame in ('SIGPIPE', 'SIGXFZ', 'SIGXFSZ'):\n                    signum = getattr(signal, signame, None)\n                    if signum is not None:\n                        sigset.append(signum)\n                kwargs['setsigdef'] = sigset\n\n            file_actions = []\n            for fd in (p2cwrite, c2pread, errread):\n                if fd != -1:\n                    file_actions.append((os.POSIX_SPAWN_CLOSE, fd))\n            for fd, fd2 in (\n                (p2cread, 0),\n                (c2pwrite, 1),\n                (errwrite, 2),\n            ):\n                if fd != -1:\n                    file_actions.append((os.POSIX_SPAWN_DUP2, fd, fd2))\n            if file_actions:\n                kwargs['file_actions'] = file_actions\n\n            self.pid = os.posix_spawn(executable, args, env, **kwargs)\n            self._child_created = True\n\n            self._close_pipe_fds(p2cread, p2cwrite,\n                                 c2pread, c2pwrite,\n                                 errread, errwrite)\n\n        def _execute_child(self, args, executable, preexec_fn, close_fds,\n                           pass_fds, cwd, env,\n                           startupinfo, creationflags, shell,\n                           p2cread, p2cwrite,\n                           c2pread, c2pwrite,\n                           errread, errwrite,\n                           restore_signals, start_new_session):\n            \"\"\"Execute program (POSIX version)\"\"\"\n\n            if isinstance(args, (str, bytes)):\n                args = [args]\n            elif isinstance(args, os.PathLike):\n                if shell:\n                    raise TypeError('path-like args is not allowed when '\n                                    'shell is true')\n                args = [args]\n            else:\n                args = list(args)\n\n            if shell:\n                # On Android the default shell is at '/system/bin/sh'.\n                unix_shell = ('/system/bin/sh' if\n                          hasattr(sys, 'getandroidapilevel') else '/bin/sh')\n                args = [unix_shell, \"-c\"] + args\n                if executable:\n                    args[0] = executable\n\n            if executable is None:\n                executable = args[0]\n\n            sys.audit(\"subprocess.Popen\", executable, args, cwd, env)\n\n            if (_USE_POSIX_SPAWN\n                    and os.path.dirname(executable)\n                    and preexec_fn is None\n                    and not close_fds\n                    and not pass_fds\n                    and cwd is None\n                    and (p2cread == -1 or p2cread > 2)\n                    and (c2pwrite == -1 or c2pwrite > 2)\n                    and (errwrite == -1 or errwrite > 2)\n                    and not start_new_session):\n                self._posix_spawn(args, executable, env, restore_signals,\n                                  p2cread, p2cwrite,\n                                  c2pread, c2pwrite,\n                                  errread, errwrite)\n                return\n\n            orig_executable = executable\n\n            # For transferring possible exec failure from child to parent.\n            # Data format: \"exception name:hex errno:description\"\n            # Pickle is not used; it is complex and involves memory allocation.\n            errpipe_read, errpipe_write = os.pipe()\n            # errpipe_write must not be in the standard io 0, 1, or 2 fd range.\n            low_fds_to_close = []\n            while errpipe_write < 3:\n                low_fds_to_close.append(errpipe_write)\n                errpipe_write = os.dup(errpipe_write)\n            for low_fd in low_fds_to_close:\n                os.close(low_fd)\n            try:\n                try:\n                    # We must avoid complex work that could involve\n                    # malloc or free in the child process to avoid\n                    # potential deadlocks, thus we do all this here.\n                    # and pass it to fork_exec()\n\n                    if env is not None:\n                        env_list = []\n                        for k, v in env.items():\n                            k = os.fsencode(k)\n                            if b'=' in k:\n                                raise ValueError(\"illegal environment variable name\")\n                            env_list.append(k + b'=' + os.fsencode(v))\n                    else:\n                        env_list = None  # Use execv instead of execve.\n                    executable = os.fsencode(executable)\n                    if os.path.dirname(executable):\n                        executable_list = (executable,)\n                    else:\n                        # This matches the behavior of os._execvpe().\n                        executable_list = tuple(\n                            os.path.join(os.fsencode(dir), executable)\n                            for dir in os.get_exec_path(env))\n                    fds_to_keep = set(pass_fds)\n                    fds_to_keep.add(errpipe_write)\n                    self.pid = _posixsubprocess.fork_exec(\n                            args, executable_list,\n                            close_fds, tuple(sorted(map(int, fds_to_keep))),\n                            cwd, env_list,\n                            p2cread, p2cwrite, c2pread, c2pwrite,\n                            errread, errwrite,\n                            errpipe_read, errpipe_write,\n                            restore_signals, start_new_session, preexec_fn)\n                    self._child_created = True\n                finally:\n                    # be sure the FD is closed no matter what\n                    os.close(errpipe_write)\n\n                self._close_pipe_fds(p2cread, p2cwrite,\n                                     c2pread, c2pwrite,\n                                     errread, errwrite)\n\n                # Wait for exec to fail or succeed; possibly raising an\n                # exception (limited in size)\n                errpipe_data = bytearray()\n                while True:\n                    part = os.read(errpipe_read, 50000)\n                    errpipe_data += part\n                    if not part or len(errpipe_data) > 50000:\n                        break\n            finally:\n                # be sure the FD is closed no matter what\n                os.close(errpipe_read)\n\n            if errpipe_data:\n                try:\n                    pid, sts = os.waitpid(self.pid, 0)\n                    if pid == self.pid:\n                        self._handle_exitstatus(sts)\n                    else:\n                        self.returncode = sys.maxsize\n                except ChildProcessError:\n                    pass\n\n                try:\n                    exception_name, hex_errno, err_msg = (\n                            errpipe_data.split(b':', 2))\n                    # The encoding here should match the encoding\n                    # written in by the subprocess implementations\n                    # like _posixsubprocess\n                    err_msg = err_msg.decode()\n                except ValueError:\n                    exception_name = b'SubprocessError'\n                    hex_errno = b'0'\n                    err_msg = 'Bad exception data from child: {!r}'.format(\n                                  bytes(errpipe_data))\n                child_exception_type = getattr(\n                        builtins, exception_name.decode('ascii'),\n                        SubprocessError)\n                if issubclass(child_exception_type, OSError) and hex_errno:\n                    errno_num = int(hex_errno, 16)\n                    child_exec_never_called = (err_msg == \"noexec\")\n                    if child_exec_never_called:\n                        err_msg = \"\"\n                        # The error must be from chdir(cwd).\n                        err_filename = cwd\n                    else:\n                        err_filename = orig_executable\n                    if errno_num != 0:\n                        err_msg = os.strerror(errno_num)\n                    raise child_exception_type(errno_num, err_msg, err_filename)\n                raise child_exception_type(err_msg)\n\n\n        def _handle_exitstatus(self, sts, _WIFSIGNALED=os.WIFSIGNALED,\n                _WTERMSIG=os.WTERMSIG, _WIFEXITED=os.WIFEXITED,\n                _WEXITSTATUS=os.WEXITSTATUS, _WIFSTOPPED=os.WIFSTOPPED,\n                _WSTOPSIG=os.WSTOPSIG):\n            \"\"\"All callers to this function MUST hold self._waitpid_lock.\"\"\"\n            # This method is called (indirectly) by __del__, so it cannot\n            # refer to anything outside of its local scope.\n            if _WIFSIGNALED(sts):\n                self.returncode = -_WTERMSIG(sts)\n            elif _WIFEXITED(sts):\n                self.returncode = _WEXITSTATUS(sts)\n            elif _WIFSTOPPED(sts):\n                self.returncode = -_WSTOPSIG(sts)\n            else:\n                # Should never happen\n                raise SubprocessError(\"Unknown child exit status!\")\n\n\n        def _internal_poll(self, _deadstate=None, _waitpid=os.waitpid,\n                _WNOHANG=os.WNOHANG, _ECHILD=errno.ECHILD):\n            \"\"\"Check if child process has terminated.  Returns returncode\n            attribute.\n\n            This method is called by __del__, so it cannot reference anything\n            outside of the local scope (nor can any methods it calls).\n\n            \"\"\"\n            if self.returncode is None:\n                if not self._waitpid_lock.acquire(False):\n                    # Something else is busy calling waitpid.  Don't allow two\n                    # at once.  We know nothing yet.\n                    return None\n                try:\n                    if self.returncode is not None:\n                        return self.returncode  # Another thread waited.\n                    pid, sts = _waitpid(self.pid, _WNOHANG)\n                    if pid == self.pid:\n                        self._handle_exitstatus(sts)\n                except OSError as e:\n                    if _deadstate is not None:\n                        self.returncode = _deadstate\n                    elif e.errno == _ECHILD:\n                        # This happens if SIGCLD is set to be ignored or\n                        # waiting for child processes has otherwise been\n                        # disabled for our process.  This child is dead, we\n                        # can't get the status.\n                        # http://bugs.python.org/issue15756\n                        self.returncode = 0\n                finally:\n                    self._waitpid_lock.release()\n            return self.returncode\n\n\n        def _try_wait(self, wait_flags):\n            \"\"\"All callers to this function MUST hold self._waitpid_lock.\"\"\"\n            try:\n                (pid, sts) = os.waitpid(self.pid, wait_flags)\n            except ChildProcessError:\n                # This happens if SIGCLD is set to be ignored or waiting\n                # for child processes has otherwise been disabled for our\n                # process.  This child is dead, we can't get the status.\n                pid = self.pid\n                sts = 0\n            return (pid, sts)\n\n\n        def _wait(self, timeout):\n            \"\"\"Internal implementation of wait() on POSIX.\"\"\"\n            if self.returncode is not None:\n                return self.returncode\n\n            if timeout is not None:\n                endtime = _time() + timeout\n                # Enter a busy loop if we have a timeout.  This busy loop was\n                # cribbed from Lib/threading.py in Thread.wait() at r71065.\n                delay = 0.0005 # 500 us -> initial delay of 1 ms\n                while True:\n                    if self._waitpid_lock.acquire(False):\n                        try:\n                            if self.returncode is not None:\n                                break  # Another thread waited.\n                            (pid, sts) = self._try_wait(os.WNOHANG)\n                            assert pid == self.pid or pid == 0\n                            if pid == self.pid:\n                                self._handle_exitstatus(sts)\n                                break\n                        finally:\n                            self._waitpid_lock.release()\n                    remaining = self._remaining_time(endtime)\n                    if remaining <= 0:\n                        raise TimeoutExpired(self.args, timeout)\n                    delay = min(delay * 2, remaining, .05)\n                    time.sleep(delay)\n            else:\n                while self.returncode is None:\n                    with self._waitpid_lock:\n                        if self.returncode is not None:\n                            break  # Another thread waited.\n                        (pid, sts) = self._try_wait(0)\n                        # Check the pid and loop as waitpid has been known to\n                        # return 0 even without WNOHANG in odd situations.\n                        # http://bugs.python.org/issue14396.\n                        if pid == self.pid:\n                            self._handle_exitstatus(sts)\n            return self.returncode\n\n\n        def _communicate(self, input, endtime, orig_timeout):\n            if self.stdin and not self._communication_started:\n                # Flush stdio buffer.  This might block, if the user has\n                # been writing to .stdin in an uncontrolled fashion.\n                try:\n                    self.stdin.flush()\n                except BrokenPipeError:\n                    pass  # communicate() must ignore BrokenPipeError.\n                if not input:\n                    try:\n                        self.stdin.close()\n                    except BrokenPipeError:\n                        pass  # communicate() must ignore BrokenPipeError.\n\n            stdout = None\n            stderr = None\n\n            # Only create this mapping if we haven't already.\n            if not self._communication_started:\n                self._fileobj2output = {}\n                if self.stdout:\n                    self._fileobj2output[self.stdout] = []\n                if self.stderr:\n                    self._fileobj2output[self.stderr] = []\n\n            if self.stdout:\n                stdout = self._fileobj2output[self.stdout]\n            if self.stderr:\n                stderr = self._fileobj2output[self.stderr]\n\n            self._save_input(input)\n\n            if self._input:\n                input_view = memoryview(self._input)\n\n            with _PopenSelector() as selector:\n                if self.stdin and input:\n                    selector.register(self.stdin, selectors.EVENT_WRITE)\n                if self.stdout and not self.stdout.closed:\n                    selector.register(self.stdout, selectors.EVENT_READ)\n                if self.stderr and not self.stderr.closed:\n                    selector.register(self.stderr, selectors.EVENT_READ)\n\n                while selector.get_map():\n                    timeout = self._remaining_time(endtime)\n                    if timeout is not None and timeout < 0:\n                        self._check_timeout(endtime, orig_timeout,\n                                            stdout, stderr,\n                                            skip_check_and_raise=True)\n                        raise RuntimeError(  # Impossible :)\n                            '_check_timeout(..., skip_check_and_raise=True) '\n                            'failed to raise TimeoutExpired.')\n\n                    ready = selector.select(timeout)\n                    self._check_timeout(endtime, orig_timeout, stdout, stderr)\n\n                    # XXX Rewrite these to use non-blocking I/O on the file\n                    # objects; they are no longer using C stdio!\n\n                    for key, events in ready:\n                        if key.fileobj is self.stdin:\n                            chunk = input_view[self._input_offset :\n                                               self._input_offset + _PIPE_BUF]\n                            try:\n                                self._input_offset += os.write(key.fd, chunk)\n                            except BrokenPipeError:\n                                selector.unregister(key.fileobj)\n                                key.fileobj.close()\n                            else:\n                                if self._input_offset >= len(self._input):\n                                    selector.unregister(key.fileobj)\n                                    key.fileobj.close()\n                        elif key.fileobj in (self.stdout, self.stderr):\n                            data = os.read(key.fd, 32768)\n                            if not data:\n                                selector.unregister(key.fileobj)\n                                key.fileobj.close()\n                            self._fileobj2output[key.fileobj].append(data)\n\n            self.wait(timeout=self._remaining_time(endtime))\n\n            # All data exchanged.  Translate lists into strings.\n            if stdout is not None:\n                stdout = b''.join(stdout)\n            if stderr is not None:\n                stderr = b''.join(stderr)\n\n            # Translate newlines, if requested.\n            # This also turns bytes into strings.\n            if self.text_mode:\n                if stdout is not None:\n                    stdout = self._translate_newlines(stdout,\n                                                      self.stdout.encoding,\n                                                      self.stdout.errors)\n                if stderr is not None:\n                    stderr = self._translate_newlines(stderr,\n                                                      self.stderr.encoding,\n                                                      self.stderr.errors)\n\n            return (stdout, stderr)\n\n\n        def _save_input(self, input):\n            # This method is called from the _communicate_with_*() methods\n            # so that if we time out while communicating, we can continue\n            # sending input if we retry.\n            if self.stdin and self._input is None:\n                self._input_offset = 0\n                self._input = input\n                if input is not None and self.text_mode:\n                    self._input = self._input.encode(self.stdin.encoding,\n                                                     self.stdin.errors)\n\n\n        def send_signal(self, sig):\n            \"\"\"Send a signal to the process.\"\"\"\n            # Skip signalling a process that we know has already died.\n            if self.returncode is None:\n                os.kill(self.pid, sig)\n\n        def terminate(self):\n            \"\"\"Terminate the process with SIGTERM\n            \"\"\"\n            self.send_signal(signal.SIGTERM)\n\n        def kill(self):\n            \"\"\"Kill the process with SIGKILL\n            \"\"\"\n            self.send_signal(signal.SIGKILL)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/sunau.py",
    "content": "\"\"\"Stuff to parse Sun and NeXT audio files.\n\nAn audio file consists of a header followed by the data.  The structure\nof the header is as follows.\n\n        +---------------+\n        | magic word    |\n        +---------------+\n        | header size   |\n        +---------------+\n        | data size     |\n        +---------------+\n        | encoding      |\n        +---------------+\n        | sample rate   |\n        +---------------+\n        | # of channels |\n        +---------------+\n        | info          |\n        |               |\n        +---------------+\n\nThe magic word consists of the 4 characters '.snd'.  Apart from the\ninfo field, all header fields are 4 bytes in size.  They are all\n32-bit unsigned integers encoded in big-endian byte order.\n\nThe header size really gives the start of the data.\nThe data size is the physical size of the data.  From the other\nparameters the number of frames can be calculated.\nThe encoding gives the way in which audio samples are encoded.\nPossible values are listed below.\nThe info field currently consists of an ASCII string giving a\nhuman-readable description of the audio file.  The info field is\npadded with NUL bytes to the header size.\n\nUsage.\n\nReading audio files:\n        f = sunau.open(file, 'r')\nwhere file is either the name of a file or an open file pointer.\nThe open file pointer must have methods read(), seek(), and close().\nWhen the setpos() and rewind() methods are not used, the seek()\nmethod is not  necessary.\n\nThis returns an instance of a class with the following public methods:\n        getnchannels()  -- returns number of audio channels (1 for\n                           mono, 2 for stereo)\n        getsampwidth()  -- returns sample width in bytes\n        getframerate()  -- returns sampling frequency\n        getnframes()    -- returns number of audio frames\n        getcomptype()   -- returns compression type ('NONE' or 'ULAW')\n        getcompname()   -- returns human-readable version of\n                           compression type ('not compressed' matches 'NONE')\n        getparams()     -- returns a namedtuple consisting of all of the\n                           above in the above order\n        getmarkers()    -- returns None (for compatibility with the\n                           aifc module)\n        getmark(id)     -- raises an error since the mark does not\n                           exist (for compatibility with the aifc module)\n        readframes(n)   -- returns at most n frames of audio\n        rewind()        -- rewind to the beginning of the audio stream\n        setpos(pos)     -- seek to the specified position\n        tell()          -- return the current position\n        close()         -- close the instance (make it unusable)\nThe position returned by tell() and the position given to setpos()\nare compatible and have nothing to do with the actual position in the\nfile.\nThe close() method is called automatically when the class instance\nis destroyed.\n\nWriting audio files:\n        f = sunau.open(file, 'w')\nwhere file is either the name of a file or an open file pointer.\nThe open file pointer must have methods write(), tell(), seek(), and\nclose().\n\nThis returns an instance of a class with the following public methods:\n        setnchannels(n) -- set the number of channels\n        setsampwidth(n) -- set the sample width\n        setframerate(n) -- set the frame rate\n        setnframes(n)   -- set the number of frames\n        setcomptype(type, name)\n                        -- set the compression type and the\n                           human-readable compression type\n        setparams(tuple)-- set all parameters at once\n        tell()          -- return current position in output file\n        writeframesraw(data)\n                        -- write audio frames without pathing up the\n                           file header\n        writeframes(data)\n                        -- write audio frames and patch up the file header\n        close()         -- patch up the file header and close the\n                           output file\nYou should set the parameters before the first writeframesraw or\nwriteframes.  The total number of frames does not need to be set,\nbut when it is set to the correct value, the header does not have to\nbe patched up.\nIt is best to first set all parameters, perhaps possibly the\ncompression type, and then write audio frames using writeframesraw.\nWhen all frames have been written, either call writeframes(b'') or\nclose() to patch up the sizes in the header.\nThe close() method is called automatically when the class instance\nis destroyed.\n\"\"\"\n\nfrom collections import namedtuple\nimport warnings\n\n_sunau_params = namedtuple('_sunau_params',\n                           'nchannels sampwidth framerate nframes comptype compname')\n\n# from <multimedia/audio_filehdr.h>\nAUDIO_FILE_MAGIC = 0x2e736e64\nAUDIO_FILE_ENCODING_MULAW_8 = 1\nAUDIO_FILE_ENCODING_LINEAR_8 = 2\nAUDIO_FILE_ENCODING_LINEAR_16 = 3\nAUDIO_FILE_ENCODING_LINEAR_24 = 4\nAUDIO_FILE_ENCODING_LINEAR_32 = 5\nAUDIO_FILE_ENCODING_FLOAT = 6\nAUDIO_FILE_ENCODING_DOUBLE = 7\nAUDIO_FILE_ENCODING_ADPCM_G721 = 23\nAUDIO_FILE_ENCODING_ADPCM_G722 = 24\nAUDIO_FILE_ENCODING_ADPCM_G723_3 = 25\nAUDIO_FILE_ENCODING_ADPCM_G723_5 = 26\nAUDIO_FILE_ENCODING_ALAW_8 = 27\n\n# from <multimedia/audio_hdr.h>\nAUDIO_UNKNOWN_SIZE = 0xFFFFFFFF        # ((unsigned)(~0))\n\n_simple_encodings = [AUDIO_FILE_ENCODING_MULAW_8,\n                     AUDIO_FILE_ENCODING_LINEAR_8,\n                     AUDIO_FILE_ENCODING_LINEAR_16,\n                     AUDIO_FILE_ENCODING_LINEAR_24,\n                     AUDIO_FILE_ENCODING_LINEAR_32,\n                     AUDIO_FILE_ENCODING_ALAW_8]\n\nclass Error(Exception):\n    pass\n\ndef _read_u32(file):\n    x = 0\n    for i in range(4):\n        byte = file.read(1)\n        if not byte:\n            raise EOFError\n        x = x*256 + ord(byte)\n    return x\n\ndef _write_u32(file, x):\n    data = []\n    for i in range(4):\n        d, m = divmod(x, 256)\n        data.insert(0, int(m))\n        x = d\n    file.write(bytes(data))\n\nclass Au_read:\n\n    def __init__(self, f):\n        if type(f) == type(''):\n            import builtins\n            f = builtins.open(f, 'rb')\n            self._opened = True\n        else:\n            self._opened = False\n        self.initfp(f)\n\n    def __del__(self):\n        if self._file:\n            self.close()\n\n    def __enter__(self):\n        return self\n\n    def __exit__(self, *args):\n        self.close()\n\n    def initfp(self, file):\n        self._file = file\n        self._soundpos = 0\n        magic = int(_read_u32(file))\n        if magic != AUDIO_FILE_MAGIC:\n            raise Error('bad magic number')\n        self._hdr_size = int(_read_u32(file))\n        if self._hdr_size < 24:\n            raise Error('header size too small')\n        if self._hdr_size > 100:\n            raise Error('header size ridiculously large')\n        self._data_size = _read_u32(file)\n        if self._data_size != AUDIO_UNKNOWN_SIZE:\n            self._data_size = int(self._data_size)\n        self._encoding = int(_read_u32(file))\n        if self._encoding not in _simple_encodings:\n            raise Error('encoding not (yet) supported')\n        if self._encoding in (AUDIO_FILE_ENCODING_MULAW_8,\n                  AUDIO_FILE_ENCODING_ALAW_8):\n            self._sampwidth = 2\n            self._framesize = 1\n        elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_8:\n            self._framesize = self._sampwidth = 1\n        elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_16:\n            self._framesize = self._sampwidth = 2\n        elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_24:\n            self._framesize = self._sampwidth = 3\n        elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_32:\n            self._framesize = self._sampwidth = 4\n        else:\n            raise Error('unknown encoding')\n        self._framerate = int(_read_u32(file))\n        self._nchannels = int(_read_u32(file))\n        if not self._nchannels:\n            raise Error('bad # of channels')\n        self._framesize = self._framesize * self._nchannels\n        if self._hdr_size > 24:\n            self._info = file.read(self._hdr_size - 24)\n            self._info, _, _ = self._info.partition(b'\\0')\n        else:\n            self._info = b''\n        try:\n            self._data_pos = file.tell()\n        except (AttributeError, OSError):\n            self._data_pos = None\n\n    def getfp(self):\n        return self._file\n\n    def getnchannels(self):\n        return self._nchannels\n\n    def getsampwidth(self):\n        return self._sampwidth\n\n    def getframerate(self):\n        return self._framerate\n\n    def getnframes(self):\n        if self._data_size == AUDIO_UNKNOWN_SIZE:\n            return AUDIO_UNKNOWN_SIZE\n        if self._encoding in _simple_encodings:\n            return self._data_size // self._framesize\n        return 0                # XXX--must do some arithmetic here\n\n    def getcomptype(self):\n        if self._encoding == AUDIO_FILE_ENCODING_MULAW_8:\n            return 'ULAW'\n        elif self._encoding == AUDIO_FILE_ENCODING_ALAW_8:\n            return 'ALAW'\n        else:\n            return 'NONE'\n\n    def getcompname(self):\n        if self._encoding == AUDIO_FILE_ENCODING_MULAW_8:\n            return 'CCITT G.711 u-law'\n        elif self._encoding == AUDIO_FILE_ENCODING_ALAW_8:\n            return 'CCITT G.711 A-law'\n        else:\n            return 'not compressed'\n\n    def getparams(self):\n        return _sunau_params(self.getnchannels(), self.getsampwidth(),\n                  self.getframerate(), self.getnframes(),\n                  self.getcomptype(), self.getcompname())\n\n    def getmarkers(self):\n        return None\n\n    def getmark(self, id):\n        raise Error('no marks')\n\n    def readframes(self, nframes):\n        if self._encoding in _simple_encodings:\n            if nframes == AUDIO_UNKNOWN_SIZE:\n                data = self._file.read()\n            else:\n                data = self._file.read(nframes * self._framesize)\n            self._soundpos += len(data) // self._framesize\n            if self._encoding == AUDIO_FILE_ENCODING_MULAW_8:\n                import audioop\n                data = audioop.ulaw2lin(data, self._sampwidth)\n            return data\n        return None             # XXX--not implemented yet\n\n    def rewind(self):\n        if self._data_pos is None:\n            raise OSError('cannot seek')\n        self._file.seek(self._data_pos)\n        self._soundpos = 0\n\n    def tell(self):\n        return self._soundpos\n\n    def setpos(self, pos):\n        if pos < 0 or pos > self.getnframes():\n            raise Error('position not in range')\n        if self._data_pos is None:\n            raise OSError('cannot seek')\n        self._file.seek(self._data_pos + pos * self._framesize)\n        self._soundpos = pos\n\n    def close(self):\n        file = self._file\n        if file:\n            self._file = None\n            if self._opened:\n                file.close()\n\nclass Au_write:\n\n    def __init__(self, f):\n        if type(f) == type(''):\n            import builtins\n            f = builtins.open(f, 'wb')\n            self._opened = True\n        else:\n            self._opened = False\n        self.initfp(f)\n\n    def __del__(self):\n        if self._file:\n            self.close()\n        self._file = None\n\n    def __enter__(self):\n        return self\n\n    def __exit__(self, *args):\n        self.close()\n\n    def initfp(self, file):\n        self._file = file\n        self._framerate = 0\n        self._nchannels = 0\n        self._sampwidth = 0\n        self._framesize = 0\n        self._nframes = AUDIO_UNKNOWN_SIZE\n        self._nframeswritten = 0\n        self._datawritten = 0\n        self._datalength = 0\n        self._info = b''\n        self._comptype = 'ULAW' # default is U-law\n\n    def setnchannels(self, nchannels):\n        if self._nframeswritten:\n            raise Error('cannot change parameters after starting to write')\n        if nchannels not in (1, 2, 4):\n            raise Error('only 1, 2, or 4 channels supported')\n        self._nchannels = nchannels\n\n    def getnchannels(self):\n        if not self._nchannels:\n            raise Error('number of channels not set')\n        return self._nchannels\n\n    def setsampwidth(self, sampwidth):\n        if self._nframeswritten:\n            raise Error('cannot change parameters after starting to write')\n        if sampwidth not in (1, 2, 3, 4):\n            raise Error('bad sample width')\n        self._sampwidth = sampwidth\n\n    def getsampwidth(self):\n        if not self._framerate:\n            raise Error('sample width not specified')\n        return self._sampwidth\n\n    def setframerate(self, framerate):\n        if self._nframeswritten:\n            raise Error('cannot change parameters after starting to write')\n        self._framerate = framerate\n\n    def getframerate(self):\n        if not self._framerate:\n            raise Error('frame rate not set')\n        return self._framerate\n\n    def setnframes(self, nframes):\n        if self._nframeswritten:\n            raise Error('cannot change parameters after starting to write')\n        if nframes < 0:\n            raise Error('# of frames cannot be negative')\n        self._nframes = nframes\n\n    def getnframes(self):\n        return self._nframeswritten\n\n    def setcomptype(self, type, name):\n        if type in ('NONE', 'ULAW'):\n            self._comptype = type\n        else:\n            raise Error('unknown compression type')\n\n    def getcomptype(self):\n        return self._comptype\n\n    def getcompname(self):\n        if self._comptype == 'ULAW':\n            return 'CCITT G.711 u-law'\n        elif self._comptype == 'ALAW':\n            return 'CCITT G.711 A-law'\n        else:\n            return 'not compressed'\n\n    def setparams(self, params):\n        nchannels, sampwidth, framerate, nframes, comptype, compname = params\n        self.setnchannels(nchannels)\n        self.setsampwidth(sampwidth)\n        self.setframerate(framerate)\n        self.setnframes(nframes)\n        self.setcomptype(comptype, compname)\n\n    def getparams(self):\n        return _sunau_params(self.getnchannels(), self.getsampwidth(),\n                  self.getframerate(), self.getnframes(),\n                  self.getcomptype(), self.getcompname())\n\n    def tell(self):\n        return self._nframeswritten\n\n    def writeframesraw(self, data):\n        if not isinstance(data, (bytes, bytearray)):\n            data = memoryview(data).cast('B')\n        self._ensure_header_written()\n        if self._comptype == 'ULAW':\n            import audioop\n            data = audioop.lin2ulaw(data, self._sampwidth)\n        nframes = len(data) // self._framesize\n        self._file.write(data)\n        self._nframeswritten = self._nframeswritten + nframes\n        self._datawritten = self._datawritten + len(data)\n\n    def writeframes(self, data):\n        self.writeframesraw(data)\n        if self._nframeswritten != self._nframes or \\\n                  self._datalength != self._datawritten:\n            self._patchheader()\n\n    def close(self):\n        if self._file:\n            try:\n                self._ensure_header_written()\n                if self._nframeswritten != self._nframes or \\\n                        self._datalength != self._datawritten:\n                    self._patchheader()\n                self._file.flush()\n            finally:\n                file = self._file\n                self._file = None\n                if self._opened:\n                    file.close()\n\n    #\n    # private methods\n    #\n\n    def _ensure_header_written(self):\n        if not self._nframeswritten:\n            if not self._nchannels:\n                raise Error('# of channels not specified')\n            if not self._sampwidth:\n                raise Error('sample width not specified')\n            if not self._framerate:\n                raise Error('frame rate not specified')\n            self._write_header()\n\n    def _write_header(self):\n        if self._comptype == 'NONE':\n            if self._sampwidth == 1:\n                encoding = AUDIO_FILE_ENCODING_LINEAR_8\n                self._framesize = 1\n            elif self._sampwidth == 2:\n                encoding = AUDIO_FILE_ENCODING_LINEAR_16\n                self._framesize = 2\n            elif self._sampwidth == 3:\n                encoding = AUDIO_FILE_ENCODING_LINEAR_24\n                self._framesize = 3\n            elif self._sampwidth == 4:\n                encoding = AUDIO_FILE_ENCODING_LINEAR_32\n                self._framesize = 4\n            else:\n                raise Error('internal error')\n        elif self._comptype == 'ULAW':\n            encoding = AUDIO_FILE_ENCODING_MULAW_8\n            self._framesize = 1\n        else:\n            raise Error('internal error')\n        self._framesize = self._framesize * self._nchannels\n        _write_u32(self._file, AUDIO_FILE_MAGIC)\n        header_size = 25 + len(self._info)\n        header_size = (header_size + 7) & ~7\n        _write_u32(self._file, header_size)\n        if self._nframes == AUDIO_UNKNOWN_SIZE:\n            length = AUDIO_UNKNOWN_SIZE\n        else:\n            length = self._nframes * self._framesize\n        try:\n            self._form_length_pos = self._file.tell()\n        except (AttributeError, OSError):\n            self._form_length_pos = None\n        _write_u32(self._file, length)\n        self._datalength = length\n        _write_u32(self._file, encoding)\n        _write_u32(self._file, self._framerate)\n        _write_u32(self._file, self._nchannels)\n        self._file.write(self._info)\n        self._file.write(b'\\0'*(header_size - len(self._info) - 24))\n\n    def _patchheader(self):\n        if self._form_length_pos is None:\n            raise OSError('cannot seek')\n        self._file.seek(self._form_length_pos)\n        _write_u32(self._file, self._datawritten)\n        self._datalength = self._datawritten\n        self._file.seek(0, 2)\n\ndef open(f, mode=None):\n    if mode is None:\n        if hasattr(f, 'mode'):\n            mode = f.mode\n        else:\n            mode = 'rb'\n    if mode in ('r', 'rb'):\n        return Au_read(f)\n    elif mode in ('w', 'wb'):\n        return Au_write(f)\n    else:\n        raise Error(\"mode must be 'r', 'rb', 'w', or 'wb'\")\n\ndef openfp(f, mode=None):\n    warnings.warn(\"sunau.openfp is deprecated since Python 3.7. \"\n                  \"Use sunau.open instead.\", DeprecationWarning, stacklevel=2)\n    return open(f, mode=mode)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/symbol.py",
    "content": "\"\"\"Non-terminal symbols of Python grammar (from \"graminit.h\").\"\"\"\n\n#  This file is automatically generated; please don't muck it up!\n#\n#  To update the symbols in this file, 'cd' to the top directory of\n#  the python source tree after building the interpreter and run:\n#\n#    python3 Tools/scripts/generate_symbol_py.py Include/graminit.h Lib/symbol.py\n#\n# or just\n#\n#    make regen-symbol\n\n#--start constants--\nsingle_input = 256\nfile_input = 257\neval_input = 258\ndecorator = 259\ndecorators = 260\ndecorated = 261\nasync_funcdef = 262\nfuncdef = 263\nparameters = 264\ntypedargslist = 265\ntfpdef = 266\nvarargslist = 267\nvfpdef = 268\nstmt = 269\nsimple_stmt = 270\nsmall_stmt = 271\nexpr_stmt = 272\nannassign = 273\ntestlist_star_expr = 274\naugassign = 275\ndel_stmt = 276\npass_stmt = 277\nflow_stmt = 278\nbreak_stmt = 279\ncontinue_stmt = 280\nreturn_stmt = 281\nyield_stmt = 282\nraise_stmt = 283\nimport_stmt = 284\nimport_name = 285\nimport_from = 286\nimport_as_name = 287\ndotted_as_name = 288\nimport_as_names = 289\ndotted_as_names = 290\ndotted_name = 291\nglobal_stmt = 292\nnonlocal_stmt = 293\nassert_stmt = 294\ncompound_stmt = 295\nasync_stmt = 296\nif_stmt = 297\nwhile_stmt = 298\nfor_stmt = 299\ntry_stmt = 300\nwith_stmt = 301\nwith_item = 302\nexcept_clause = 303\nsuite = 304\nnamedexpr_test = 305\ntest = 306\ntest_nocond = 307\nlambdef = 308\nlambdef_nocond = 309\nor_test = 310\nand_test = 311\nnot_test = 312\ncomparison = 313\ncomp_op = 314\nstar_expr = 315\nexpr = 316\nxor_expr = 317\nand_expr = 318\nshift_expr = 319\narith_expr = 320\nterm = 321\nfactor = 322\npower = 323\natom_expr = 324\natom = 325\ntestlist_comp = 326\ntrailer = 327\nsubscriptlist = 328\nsubscript = 329\nsliceop = 330\nexprlist = 331\ntestlist = 332\ndictorsetmaker = 333\nclassdef = 334\narglist = 335\nargument = 336\ncomp_iter = 337\nsync_comp_for = 338\ncomp_for = 339\ncomp_if = 340\nencoding_decl = 341\nyield_expr = 342\nyield_arg = 343\nfunc_body_suite = 344\nfunc_type_input = 345\nfunc_type = 346\ntypelist = 347\n#--end constants--\n\nsym_name = {}\nfor _name, _value in list(globals().items()):\n    if type(_value) is type(0):\n        sym_name[_value] = _name\ndel _name, _value\n"
  },
  {
    "path": "rd/usr/lib/python3.8/symtable.py",
    "content": "\"\"\"Interface to the compiler's internal symbol tables\"\"\"\n\nimport _symtable\nfrom _symtable import (USE, DEF_GLOBAL, DEF_NONLOCAL, DEF_LOCAL, DEF_PARAM,\n     DEF_IMPORT, DEF_BOUND, DEF_ANNOT, SCOPE_OFF, SCOPE_MASK, FREE,\n     LOCAL, GLOBAL_IMPLICIT, GLOBAL_EXPLICIT, CELL)\n\nimport weakref\n\n__all__ = [\"symtable\", \"SymbolTable\", \"Class\", \"Function\", \"Symbol\"]\n\ndef symtable(code, filename, compile_type):\n    top = _symtable.symtable(code, filename, compile_type)\n    return _newSymbolTable(top, filename)\n\nclass SymbolTableFactory:\n    def __init__(self):\n        self.__memo = weakref.WeakValueDictionary()\n\n    def new(self, table, filename):\n        if table.type == _symtable.TYPE_FUNCTION:\n            return Function(table, filename)\n        if table.type == _symtable.TYPE_CLASS:\n            return Class(table, filename)\n        return SymbolTable(table, filename)\n\n    def __call__(self, table, filename):\n        key = table, filename\n        obj = self.__memo.get(key, None)\n        if obj is None:\n            obj = self.__memo[key] = self.new(table, filename)\n        return obj\n\n_newSymbolTable = SymbolTableFactory()\n\n\nclass SymbolTable(object):\n\n    def __init__(self, raw_table, filename):\n        self._table = raw_table\n        self._filename = filename\n        self._symbols = {}\n\n    def __repr__(self):\n        if self.__class__ == SymbolTable:\n            kind = \"\"\n        else:\n            kind = \"%s \" % self.__class__.__name__\n\n        if self._table.name == \"global\":\n            return \"<{0}SymbolTable for module {1}>\".format(kind, self._filename)\n        else:\n            return \"<{0}SymbolTable for {1} in {2}>\".format(kind,\n                                                            self._table.name,\n                                                            self._filename)\n\n    def get_type(self):\n        if self._table.type == _symtable.TYPE_MODULE:\n            return \"module\"\n        if self._table.type == _symtable.TYPE_FUNCTION:\n            return \"function\"\n        if self._table.type == _symtable.TYPE_CLASS:\n            return \"class\"\n        assert self._table.type in (1, 2, 3), \\\n               \"unexpected type: {0}\".format(self._table.type)\n\n    def get_id(self):\n        return self._table.id\n\n    def get_name(self):\n        return self._table.name\n\n    def get_lineno(self):\n        return self._table.lineno\n\n    def is_optimized(self):\n        return bool(self._table.type == _symtable.TYPE_FUNCTION)\n\n    def is_nested(self):\n        return bool(self._table.nested)\n\n    def has_children(self):\n        return bool(self._table.children)\n\n    def has_exec(self):\n        \"\"\"Return true if the scope uses exec.  Deprecated method.\"\"\"\n        return False\n\n    def get_identifiers(self):\n        return self._table.symbols.keys()\n\n    def lookup(self, name):\n        sym = self._symbols.get(name)\n        if sym is None:\n            flags = self._table.symbols[name]\n            namespaces = self.__check_children(name)\n            sym = self._symbols[name] = Symbol(name, flags, namespaces)\n        return sym\n\n    def get_symbols(self):\n        return [self.lookup(ident) for ident in self.get_identifiers()]\n\n    def __check_children(self, name):\n        return [_newSymbolTable(st, self._filename)\n                for st in self._table.children\n                if st.name == name]\n\n    def get_children(self):\n        return [_newSymbolTable(st, self._filename)\n                for st in self._table.children]\n\n\nclass Function(SymbolTable):\n\n    # Default values for instance variables\n    __params = None\n    __locals = None\n    __frees = None\n    __globals = None\n    __nonlocals = None\n\n    def __idents_matching(self, test_func):\n        return tuple(ident for ident in self.get_identifiers()\n                     if test_func(self._table.symbols[ident]))\n\n    def get_parameters(self):\n        if self.__params is None:\n            self.__params = self.__idents_matching(lambda x:x & DEF_PARAM)\n        return self.__params\n\n    def get_locals(self):\n        if self.__locals is None:\n            locs = (LOCAL, CELL)\n            test = lambda x: ((x >> SCOPE_OFF) & SCOPE_MASK) in locs\n            self.__locals = self.__idents_matching(test)\n        return self.__locals\n\n    def get_globals(self):\n        if self.__globals is None:\n            glob = (GLOBAL_IMPLICIT, GLOBAL_EXPLICIT)\n            test = lambda x:((x >> SCOPE_OFF) & SCOPE_MASK) in glob\n            self.__globals = self.__idents_matching(test)\n        return self.__globals\n\n    def get_nonlocals(self):\n        if self.__nonlocals is None:\n            self.__nonlocals = self.__idents_matching(lambda x:x & DEF_NONLOCAL)\n        return self.__nonlocals\n\n    def get_frees(self):\n        if self.__frees is None:\n            is_free = lambda x:((x >> SCOPE_OFF) & SCOPE_MASK) == FREE\n            self.__frees = self.__idents_matching(is_free)\n        return self.__frees\n\n\nclass Class(SymbolTable):\n\n    __methods = None\n\n    def get_methods(self):\n        if self.__methods is None:\n            d = {}\n            for st in self._table.children:\n                d[st.name] = 1\n            self.__methods = tuple(d)\n        return self.__methods\n\n\nclass Symbol(object):\n\n    def __init__(self, name, flags, namespaces=None):\n        self.__name = name\n        self.__flags = flags\n        self.__scope = (flags >> SCOPE_OFF) & SCOPE_MASK # like PyST_GetScope()\n        self.__namespaces = namespaces or ()\n\n    def __repr__(self):\n        return \"<symbol {0!r}>\".format(self.__name)\n\n    def get_name(self):\n        return self.__name\n\n    def is_referenced(self):\n        return bool(self.__flags & _symtable.USE)\n\n    def is_parameter(self):\n        return bool(self.__flags & DEF_PARAM)\n\n    def is_global(self):\n        return bool(self.__scope in (GLOBAL_IMPLICIT, GLOBAL_EXPLICIT))\n\n    def is_nonlocal(self):\n        return bool(self.__flags & DEF_NONLOCAL)\n\n    def is_declared_global(self):\n        return bool(self.__scope == GLOBAL_EXPLICIT)\n\n    def is_local(self):\n        return bool(self.__scope in (LOCAL, CELL))\n\n    def is_annotated(self):\n        return bool(self.__flags & DEF_ANNOT)\n\n    def is_free(self):\n        return bool(self.__scope == FREE)\n\n    def is_imported(self):\n        return bool(self.__flags & DEF_IMPORT)\n\n    def is_assigned(self):\n        return bool(self.__flags & DEF_LOCAL)\n\n    def is_namespace(self):\n        \"\"\"Returns true if name binding introduces new namespace.\n\n        If the name is used as the target of a function or class\n        statement, this will be true.\n\n        Note that a single name can be bound to multiple objects.  If\n        is_namespace() is true, the name may also be bound to other\n        objects, like an int or list, that does not introduce a new\n        namespace.\n        \"\"\"\n        return bool(self.__namespaces)\n\n    def get_namespaces(self):\n        \"\"\"Return a list of namespaces bound to this name\"\"\"\n        return self.__namespaces\n\n    def get_namespace(self):\n        \"\"\"Returns the single namespace bound to this name.\n\n        Raises ValueError if the name is bound to multiple namespaces.\n        \"\"\"\n        if len(self.__namespaces) != 1:\n            raise ValueError(\"name is bound to multiple namespaces\")\n        return self.__namespaces[0]\n\nif __name__ == \"__main__\":\n    import os, sys\n    with open(sys.argv[0]) as f:\n        src = f.read()\n    mod = symtable(src, os.path.split(sys.argv[0])[1], \"exec\")\n    for ident in mod.get_identifiers():\n        info = mod.lookup(ident)\n        print(info, info.is_local(), info.is_namespace())\n"
  },
  {
    "path": "rd/usr/lib/python3.8/sysconfig.py",
    "content": "\"\"\"Access to Python's configuration information.\"\"\"\n\nimport os\nimport sys\nfrom os.path import pardir, realpath\n\n__all__ = [\n    'get_config_h_filename',\n    'get_config_var',\n    'get_config_vars',\n    'get_makefile_filename',\n    'get_path',\n    'get_path_names',\n    'get_paths',\n    'get_platform',\n    'get_python_version',\n    'get_scheme_names',\n    'parse_config_h',\n]\n\n_INSTALL_SCHEMES = {\n    'posix_prefix': {\n        'stdlib': '{installed_base}/lib/python{py_version_short}',\n        'platstdlib': '{platbase}/lib/python{py_version_short}',\n        'purelib': '{base}/lib/python{py_version_short}/site-packages',\n        'platlib': '{platbase}/lib/python{py_version_short}/site-packages',\n        'include':\n            '{installed_base}/include/python{py_version_short}{abiflags}',\n        'platinclude':\n            '{installed_platbase}/include/python{py_version_short}{abiflags}',\n        'scripts': '{base}/bin',\n        'data': '{base}',\n        },\n    'posix_home': {\n        'stdlib': '{installed_base}/lib/python',\n        'platstdlib': '{base}/lib/python',\n        'purelib': '{base}/lib/python',\n        'platlib': '{base}/lib/python',\n        'include': '{installed_base}/include/python',\n        'platinclude': '{installed_base}/include/python',\n        'scripts': '{base}/bin',\n        'data': '{base}',\n        },\n    'nt': {\n        'stdlib': '{installed_base}/Lib',\n        'platstdlib': '{base}/Lib',\n        'purelib': '{base}/Lib/site-packages',\n        'platlib': '{base}/Lib/site-packages',\n        'include': '{installed_base}/Include',\n        'platinclude': '{installed_base}/Include',\n        'scripts': '{base}/Scripts',\n        'data': '{base}',\n        },\n    # NOTE: When modifying \"purelib\" scheme, update site._get_path() too.\n    'nt_user': {\n        'stdlib': '{userbase}/Python{py_version_nodot}',\n        'platstdlib': '{userbase}/Python{py_version_nodot}',\n        'purelib': '{userbase}/Python{py_version_nodot}/site-packages',\n        'platlib': '{userbase}/Python{py_version_nodot}/site-packages',\n        'include': '{userbase}/Python{py_version_nodot}/Include',\n        'scripts': '{userbase}/Python{py_version_nodot}/Scripts',\n        'data': '{userbase}',\n        },\n    'posix_user': {\n        'stdlib': '{userbase}/lib/python{py_version_short}',\n        'platstdlib': '{userbase}/lib/python{py_version_short}',\n        'purelib': '{userbase}/lib/python{py_version_short}/site-packages',\n        'platlib': '{userbase}/lib/python{py_version_short}/site-packages',\n        'include': '{userbase}/include/python{py_version_short}',\n        'scripts': '{userbase}/bin',\n        'data': '{userbase}',\n        },\n    'osx_framework_user': {\n        'stdlib': '{userbase}/lib/python',\n        'platstdlib': '{userbase}/lib/python',\n        'purelib': '{userbase}/lib/python/site-packages',\n        'platlib': '{userbase}/lib/python/site-packages',\n        'include': '{userbase}/include',\n        'scripts': '{userbase}/bin',\n        'data': '{userbase}',\n        },\n    }\n\n_SCHEME_KEYS = ('stdlib', 'platstdlib', 'purelib', 'platlib', 'include',\n                'scripts', 'data')\n\n # FIXME don't rely on sys.version here, its format is an implementation detail\n # of CPython, use sys.version_info or sys.hexversion\n_PY_VERSION = sys.version.split()[0]\n_PY_VERSION_SHORT = '%d.%d' % sys.version_info[:2]\n_PY_VERSION_SHORT_NO_DOT = '%d%d' % sys.version_info[:2]\n_PREFIX = os.path.normpath(sys.prefix)\n_BASE_PREFIX = os.path.normpath(sys.base_prefix)\n_EXEC_PREFIX = os.path.normpath(sys.exec_prefix)\n_BASE_EXEC_PREFIX = os.path.normpath(sys.base_exec_prefix)\n_CONFIG_VARS = None\n_USER_BASE = None\n\n\ndef _safe_realpath(path):\n    try:\n        return realpath(path)\n    except OSError:\n        return path\n\nif sys.executable:\n    _PROJECT_BASE = os.path.dirname(_safe_realpath(sys.executable))\nelse:\n    # sys.executable can be empty if argv[0] has been changed and Python is\n    # unable to retrieve the real program name\n    _PROJECT_BASE = _safe_realpath(os.getcwd())\n\nif (os.name == 'nt' and\n    _PROJECT_BASE.lower().endswith(('\\\\pcbuild\\\\win32', '\\\\pcbuild\\\\amd64'))):\n    _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir, pardir))\n\n# set for cross builds\nif \"_PYTHON_PROJECT_BASE\" in os.environ:\n    _PROJECT_BASE = _safe_realpath(os.environ[\"_PYTHON_PROJECT_BASE\"])\n\ndef _is_python_source_dir(d):\n    for fn in (\"Setup\", \"Setup.local\"):\n        if os.path.isfile(os.path.join(d, \"Modules\", fn)):\n            return True\n    return False\n\n_sys_home = getattr(sys, '_home', None)\n\nif os.name == 'nt':\n    def _fix_pcbuild(d):\n        if d and os.path.normcase(d).startswith(\n                os.path.normcase(os.path.join(_PREFIX, \"PCbuild\"))):\n            return _PREFIX\n        return d\n    _PROJECT_BASE = _fix_pcbuild(_PROJECT_BASE)\n    _sys_home = _fix_pcbuild(_sys_home)\n\ndef is_python_build(check_home=False):\n    if check_home and _sys_home:\n        return _is_python_source_dir(_sys_home)\n    return _is_python_source_dir(_PROJECT_BASE)\n\n_PYTHON_BUILD = is_python_build(True)\n\nif _PYTHON_BUILD:\n    for scheme in ('posix_prefix', 'posix_home'):\n        _INSTALL_SCHEMES[scheme]['include'] = '{srcdir}/Include'\n        _INSTALL_SCHEMES[scheme]['platinclude'] = '{projectbase}/.'\n\n\ndef _subst_vars(s, local_vars):\n    try:\n        return s.format(**local_vars)\n    except KeyError:\n        try:\n            return s.format(**os.environ)\n        except KeyError as var:\n            raise AttributeError('{%s}' % var) from None\n\ndef _extend_dict(target_dict, other_dict):\n    target_keys = target_dict.keys()\n    for key, value in other_dict.items():\n        if key in target_keys:\n            continue\n        target_dict[key] = value\n\n\ndef _expand_vars(scheme, vars):\n    res = {}\n    if vars is None:\n        vars = {}\n    _extend_dict(vars, get_config_vars())\n\n    for key, value in _INSTALL_SCHEMES[scheme].items():\n        if os.name in ('posix', 'nt'):\n            value = os.path.expanduser(value)\n        res[key] = os.path.normpath(_subst_vars(value, vars))\n    return res\n\n\ndef _get_default_scheme():\n    if os.name == 'posix':\n        # the default scheme for posix is posix_prefix\n        return 'posix_prefix'\n    return os.name\n\n\n# NOTE: site.py has copy of this function.\n# Sync it when modify this function.\ndef _getuserbase():\n    env_base = os.environ.get(\"PYTHONUSERBASE\", None)\n    if env_base:\n        return env_base\n\n    def joinuser(*args):\n        return os.path.expanduser(os.path.join(*args))\n\n    if os.name == \"nt\":\n        base = os.environ.get(\"APPDATA\") or \"~\"\n        return joinuser(base, \"Python\")\n\n    if sys.platform == \"darwin\" and sys._framework:\n        return joinuser(\"~\", \"Library\", sys._framework,\n                        \"%d.%d\" % sys.version_info[:2])\n\n    return joinuser(\"~\", \".local\")\n\n\ndef _parse_makefile(filename, vars=None):\n    \"\"\"Parse a Makefile-style file.\n\n    A dictionary containing name/value pairs is returned.  If an\n    optional dictionary is passed in as the second argument, it is\n    used instead of a new dictionary.\n    \"\"\"\n    # Regexes needed for parsing Makefile (and similar syntaxes,\n    # like old-style Setup files).\n    import re\n    _variable_rx = re.compile(r\"([a-zA-Z][a-zA-Z0-9_]+)\\s*=\\s*(.*)\")\n    _findvar1_rx = re.compile(r\"\\$\\(([A-Za-z][A-Za-z0-9_]*)\\)\")\n    _findvar2_rx = re.compile(r\"\\${([A-Za-z][A-Za-z0-9_]*)}\")\n\n    if vars is None:\n        vars = {}\n    done = {}\n    notdone = {}\n\n    with open(filename, errors=\"surrogateescape\") as f:\n        lines = f.readlines()\n\n    for line in lines:\n        if line.startswith('#') or line.strip() == '':\n            continue\n        m = _variable_rx.match(line)\n        if m:\n            n, v = m.group(1, 2)\n            v = v.strip()\n            # `$$' is a literal `$' in make\n            tmpv = v.replace('$$', '')\n\n            if \"$\" in tmpv:\n                notdone[n] = v\n            else:\n                try:\n                    v = int(v)\n                except ValueError:\n                    # insert literal `$'\n                    done[n] = v.replace('$$', '$')\n                else:\n                    done[n] = v\n\n    # do variable interpolation here\n    variables = list(notdone.keys())\n\n    # Variables with a 'PY_' prefix in the makefile. These need to\n    # be made available without that prefix through sysconfig.\n    # Special care is needed to ensure that variable expansion works, even\n    # if the expansion uses the name without a prefix.\n    renamed_variables = ('CFLAGS', 'LDFLAGS', 'CPPFLAGS')\n\n    while len(variables) > 0:\n        for name in tuple(variables):\n            value = notdone[name]\n            m1 = _findvar1_rx.search(value)\n            m2 = _findvar2_rx.search(value)\n            if m1 and m2:\n                m = m1 if m1.start() < m2.start() else m2\n            else:\n                m = m1 if m1 else m2\n            if m is not None:\n                n = m.group(1)\n                found = True\n                if n in done:\n                    item = str(done[n])\n                elif n in notdone:\n                    # get it on a subsequent round\n                    found = False\n                elif n in os.environ:\n                    # do it like make: fall back to environment\n                    item = os.environ[n]\n\n                elif n in renamed_variables:\n                    if (name.startswith('PY_') and\n                        name[3:] in renamed_variables):\n                        item = \"\"\n\n                    elif 'PY_' + n in notdone:\n                        found = False\n\n                    else:\n                        item = str(done['PY_' + n])\n\n                else:\n                    done[n] = item = \"\"\n\n                if found:\n                    after = value[m.end():]\n                    value = value[:m.start()] + item + after\n                    if \"$\" in after:\n                        notdone[name] = value\n                    else:\n                        try:\n                            value = int(value)\n                        except ValueError:\n                            done[name] = value.strip()\n                        else:\n                            done[name] = value\n                        variables.remove(name)\n\n                        if name.startswith('PY_') \\\n                        and name[3:] in renamed_variables:\n\n                            name = name[3:]\n                            if name not in done:\n                                done[name] = value\n\n            else:\n                # bogus variable reference (e.g. \"prefix=$/opt/python\");\n                # just drop it since we can't deal\n                done[name] = value\n                variables.remove(name)\n\n    # strip spurious spaces\n    for k, v in done.items():\n        if isinstance(v, str):\n            done[k] = v.strip()\n\n    # save the results in the global dictionary\n    vars.update(done)\n    return vars\n\n\ndef get_makefile_filename():\n    \"\"\"Return the path of the Makefile.\"\"\"\n    if _PYTHON_BUILD:\n        return os.path.join(_sys_home or _PROJECT_BASE, \"Makefile\")\n    if hasattr(sys, 'abiflags'):\n        config_dir_name = 'config-%s%s' % (_PY_VERSION_SHORT, sys.abiflags)\n    else:\n        config_dir_name = 'config'\n    if hasattr(sys.implementation, '_multiarch'):\n        config_dir_name += '-%s' % sys.implementation._multiarch\n    return os.path.join(get_path('stdlib'), config_dir_name, 'Makefile')\n\n\ndef _get_sysconfigdata_name():\n    return os.environ.get('_PYTHON_SYSCONFIGDATA_NAME',\n        '_sysconfigdata_{abi}_{platform}_{multiarch}'.format(\n        abi=sys.abiflags,\n        platform=sys.platform,\n        multiarch=getattr(sys.implementation, '_multiarch', ''),\n    ))\n\n\ndef _generate_posix_vars():\n    \"\"\"Generate the Python module containing build-time variables.\"\"\"\n    import pprint\n    vars = {}\n    # load the installed Makefile:\n    makefile = get_makefile_filename()\n    try:\n        _parse_makefile(makefile, vars)\n    except OSError as e:\n        msg = \"invalid Python installation: unable to open %s\" % makefile\n        if hasattr(e, \"strerror\"):\n            msg = msg + \" (%s)\" % e.strerror\n        raise OSError(msg)\n    # load the installed pyconfig.h:\n    config_h = get_config_h_filename()\n    try:\n        with open(config_h) as f:\n            parse_config_h(f, vars)\n    except OSError as e:\n        msg = \"invalid Python installation: unable to open %s\" % config_h\n        if hasattr(e, \"strerror\"):\n            msg = msg + \" (%s)\" % e.strerror\n        raise OSError(msg)\n    # On AIX, there are wrong paths to the linker scripts in the Makefile\n    # -- these paths are relative to the Python source, but when installed\n    # the scripts are in another directory.\n    if _PYTHON_BUILD:\n        vars['BLDSHARED'] = vars['LDSHARED']\n\n    # There's a chicken-and-egg situation on OS X with regards to the\n    # _sysconfigdata module after the changes introduced by #15298:\n    # get_config_vars() is called by get_platform() as part of the\n    # `make pybuilddir.txt` target -- which is a precursor to the\n    # _sysconfigdata.py module being constructed.  Unfortunately,\n    # get_config_vars() eventually calls _init_posix(), which attempts\n    # to import _sysconfigdata, which we won't have built yet.  In order\n    # for _init_posix() to work, if we're on Darwin, just mock up the\n    # _sysconfigdata module manually and populate it with the build vars.\n    # This is more than sufficient for ensuring the subsequent call to\n    # get_platform() succeeds.\n    name = _get_sysconfigdata_name()\n    if 'darwin' in sys.platform:\n        import types\n        module = types.ModuleType(name)\n        module.build_time_vars = vars\n        sys.modules[name] = module\n\n    pybuilddir = 'build/lib.%s-%s' % (get_platform(), _PY_VERSION_SHORT)\n    if hasattr(sys, \"gettotalrefcount\"):\n        pybuilddir += '-pydebug'\n    os.makedirs(pybuilddir, exist_ok=True)\n    destfile = os.path.join(pybuilddir, name + '.py')\n\n    with open(destfile, 'w', encoding='utf8') as f:\n        f.write('# system configuration generated and used by'\n                ' the sysconfig module\\n')\n        f.write('build_time_vars = ')\n        pprint.pprint(vars, stream=f)\n\n    # Create file used for sys.path fixup -- see Modules/getpath.c\n    with open('pybuilddir.txt', 'w', encoding='utf8') as f:\n        f.write(pybuilddir)\n\ndef _init_posix(vars):\n    \"\"\"Initialize the module as appropriate for POSIX systems.\"\"\"\n    # _sysconfigdata is generated at build time, see _generate_posix_vars()\n    name = _get_sysconfigdata_name()\n    _temp = __import__(name, globals(), locals(), ['build_time_vars'], 0)\n    build_time_vars = _temp.build_time_vars\n    vars.update(build_time_vars)\n\ndef _init_non_posix(vars):\n    \"\"\"Initialize the module as appropriate for NT\"\"\"\n    # set basic install directories\n    vars['LIBDEST'] = get_path('stdlib')\n    vars['BINLIBDEST'] = get_path('platstdlib')\n    vars['INCLUDEPY'] = get_path('include')\n    vars['EXT_SUFFIX'] = '.pyd'\n    vars['EXE'] = '.exe'\n    vars['VERSION'] = _PY_VERSION_SHORT_NO_DOT\n    vars['BINDIR'] = os.path.dirname(_safe_realpath(sys.executable))\n\n#\n# public APIs\n#\n\n\ndef parse_config_h(fp, vars=None):\n    \"\"\"Parse a config.h-style file.\n\n    A dictionary containing name/value pairs is returned.  If an\n    optional dictionary is passed in as the second argument, it is\n    used instead of a new dictionary.\n    \"\"\"\n    if vars is None:\n        vars = {}\n    import re\n    define_rx = re.compile(\"#define ([A-Z][A-Za-z0-9_]+) (.*)\\n\")\n    undef_rx = re.compile(\"/[*] #undef ([A-Z][A-Za-z0-9_]+) [*]/\\n\")\n\n    while True:\n        line = fp.readline()\n        if not line:\n            break\n        m = define_rx.match(line)\n        if m:\n            n, v = m.group(1, 2)\n            try:\n                v = int(v)\n            except ValueError:\n                pass\n            vars[n] = v\n        else:\n            m = undef_rx.match(line)\n            if m:\n                vars[m.group(1)] = 0\n    return vars\n\n\ndef get_config_h_filename():\n    \"\"\"Return the path of pyconfig.h.\"\"\"\n    if _PYTHON_BUILD:\n        if os.name == \"nt\":\n            inc_dir = os.path.join(_sys_home or _PROJECT_BASE, \"PC\")\n        else:\n            inc_dir = _sys_home or _PROJECT_BASE\n    else:\n        inc_dir = get_path('platinclude')\n    return os.path.join(inc_dir, 'pyconfig.h')\n\n\ndef get_scheme_names():\n    \"\"\"Return a tuple containing the schemes names.\"\"\"\n    return tuple(sorted(_INSTALL_SCHEMES))\n\n\ndef get_path_names():\n    \"\"\"Return a tuple containing the paths names.\"\"\"\n    return _SCHEME_KEYS\n\n\ndef get_paths(scheme=_get_default_scheme(), vars=None, expand=True):\n    \"\"\"Return a mapping containing an install scheme.\n\n    ``scheme`` is the install scheme name. If not provided, it will\n    return the default scheme for the current platform.\n    \"\"\"\n    if expand:\n        return _expand_vars(scheme, vars)\n    else:\n        return _INSTALL_SCHEMES[scheme]\n\n\ndef get_path(name, scheme=_get_default_scheme(), vars=None, expand=True):\n    \"\"\"Return a path corresponding to the scheme.\n\n    ``scheme`` is the install scheme name.\n    \"\"\"\n    return get_paths(scheme, vars, expand)[name]\n\n\ndef get_config_vars(*args):\n    \"\"\"With no arguments, return a dictionary of all configuration\n    variables relevant for the current platform.\n\n    On Unix, this means every variable defined in Python's installed Makefile;\n    On Windows it's a much smaller set.\n\n    With arguments, return a list of values that result from looking up\n    each argument in the configuration variable dictionary.\n    \"\"\"\n    global _CONFIG_VARS\n    if _CONFIG_VARS is None:\n        _CONFIG_VARS = {}\n        # Normalized versions of prefix and exec_prefix are handy to have;\n        # in fact, these are the standard versions used most places in the\n        # Distutils.\n        _CONFIG_VARS['prefix'] = _PREFIX\n        _CONFIG_VARS['exec_prefix'] = _EXEC_PREFIX\n        _CONFIG_VARS['py_version'] = _PY_VERSION\n        _CONFIG_VARS['py_version_short'] = _PY_VERSION_SHORT\n        _CONFIG_VARS['py_version_nodot'] = _PY_VERSION_SHORT_NO_DOT\n        _CONFIG_VARS['installed_base'] = _BASE_PREFIX\n        _CONFIG_VARS['base'] = _PREFIX\n        _CONFIG_VARS['installed_platbase'] = _BASE_EXEC_PREFIX\n        _CONFIG_VARS['platbase'] = _EXEC_PREFIX\n        _CONFIG_VARS['projectbase'] = _PROJECT_BASE\n        try:\n            _CONFIG_VARS['abiflags'] = sys.abiflags\n        except AttributeError:\n            # sys.abiflags may not be defined on all platforms.\n            _CONFIG_VARS['abiflags'] = ''\n\n        if os.name == 'nt':\n            _init_non_posix(_CONFIG_VARS)\n        if os.name == 'posix':\n            _init_posix(_CONFIG_VARS)\n        # For backward compatibility, see issue19555\n        SO = _CONFIG_VARS.get('EXT_SUFFIX')\n        if SO is not None:\n            _CONFIG_VARS['SO'] = SO\n        # Setting 'userbase' is done below the call to the\n        # init function to enable using 'get_config_var' in\n        # the init-function.\n        _CONFIG_VARS['userbase'] = _getuserbase()\n\n        # Always convert srcdir to an absolute path\n        srcdir = _CONFIG_VARS.get('srcdir', _PROJECT_BASE)\n        if os.name == 'posix':\n            if _PYTHON_BUILD:\n                # If srcdir is a relative path (typically '.' or '..')\n                # then it should be interpreted relative to the directory\n                # containing Makefile.\n                base = os.path.dirname(get_makefile_filename())\n                srcdir = os.path.join(base, srcdir)\n            else:\n                # srcdir is not meaningful since the installation is\n                # spread about the filesystem.  We choose the\n                # directory containing the Makefile since we know it\n                # exists.\n                srcdir = os.path.dirname(get_makefile_filename())\n        _CONFIG_VARS['srcdir'] = _safe_realpath(srcdir)\n\n        # OS X platforms require special customization to handle\n        # multi-architecture, multi-os-version installers\n        if sys.platform == 'darwin':\n            import _osx_support\n            _osx_support.customize_config_vars(_CONFIG_VARS)\n\n    if args:\n        vals = []\n        for name in args:\n            vals.append(_CONFIG_VARS.get(name))\n        return vals\n    else:\n        return _CONFIG_VARS\n\n\ndef get_config_var(name):\n    \"\"\"Return the value of a single variable using the dictionary returned by\n    'get_config_vars()'.\n\n    Equivalent to get_config_vars().get(name)\n    \"\"\"\n    if name == 'SO':\n        import warnings\n        warnings.warn('SO is deprecated, use EXT_SUFFIX', DeprecationWarning, 2)\n    return get_config_vars().get(name)\n\n\ndef get_platform():\n    \"\"\"Return a string that identifies the current platform.\n\n    This is used mainly to distinguish platform-specific build directories and\n    platform-specific built distributions.  Typically includes the OS name and\n    version and the architecture (as supplied by 'os.uname()'), although the\n    exact information included depends on the OS; on Linux, the kernel version\n    isn't particularly important.\n\n    Examples of returned values:\n       linux-i586\n       linux-alpha (?)\n       solaris-2.6-sun4u\n\n    Windows will return one of:\n       win-amd64 (64bit Windows on AMD64 (aka x86_64, Intel64, EM64T, etc)\n       win32 (all others - specifically, sys.platform is returned)\n\n    For other non-POSIX platforms, currently just returns 'sys.platform'.\n\n    \"\"\"\n    if os.name == 'nt':\n        if 'amd64' in sys.version.lower():\n            return 'win-amd64'\n        if '(arm)' in sys.version.lower():\n            return 'win-arm32'\n        if '(arm64)' in sys.version.lower():\n            return 'win-arm64'\n        return sys.platform\n\n    if os.name != \"posix\" or not hasattr(os, 'uname'):\n        # XXX what about the architecture? NT is Intel or Alpha\n        return sys.platform\n\n    # Set for cross builds explicitly\n    if \"_PYTHON_HOST_PLATFORM\" in os.environ:\n        return os.environ[\"_PYTHON_HOST_PLATFORM\"]\n\n    # Try to distinguish various flavours of Unix\n    osname, host, release, version, machine = os.uname()\n\n    # Convert the OS name to lowercase, remove '/' characters, and translate\n    # spaces (for \"Power Macintosh\")\n    osname = osname.lower().replace('/', '')\n    machine = machine.replace(' ', '_')\n    machine = machine.replace('/', '-')\n\n    if osname[:5] == \"linux\":\n        # At least on Linux/Intel, 'machine' is the processor --\n        # i386, etc.\n        # XXX what about Alpha, SPARC, etc?\n        return  \"%s-%s\" % (osname, machine)\n    elif osname[:5] == \"sunos\":\n        if release[0] >= \"5\":           # SunOS 5 == Solaris 2\n            osname = \"solaris\"\n            release = \"%d.%s\" % (int(release[0]) - 3, release[2:])\n            # We can't use \"platform.architecture()[0]\" because a\n            # bootstrap problem. We use a dict to get an error\n            # if some suspicious happens.\n            bitness = {2147483647:\"32bit\", 9223372036854775807:\"64bit\"}\n            machine += \".%s\" % bitness[sys.maxsize]\n        # fall through to standard osname-release-machine representation\n    elif osname[:3] == \"aix\":\n        return \"%s-%s.%s\" % (osname, version, release)\n    elif osname[:6] == \"cygwin\":\n        osname = \"cygwin\"\n        import re\n        rel_re = re.compile(r'[\\d.]+')\n        m = rel_re.match(release)\n        if m:\n            release = m.group()\n    elif osname[:6] == \"darwin\":\n        import _osx_support\n        osname, release, machine = _osx_support.get_platform_osx(\n                                            get_config_vars(),\n                                            osname, release, machine)\n\n    return \"%s-%s-%s\" % (osname, release, machine)\n\n\ndef get_python_version():\n    return _PY_VERSION_SHORT\n\n\ndef _print_dict(title, data):\n    for index, (key, value) in enumerate(sorted(data.items())):\n        if index == 0:\n            print('%s: ' % (title))\n        print('\\t%s = \"%s\"' % (key, value))\n\n\ndef _main():\n    \"\"\"Display all information sysconfig detains.\"\"\"\n    if '--generate-posix-vars' in sys.argv:\n        _generate_posix_vars()\n        return\n    print('Platform: \"%s\"' % get_platform())\n    print('Python version: \"%s\"' % get_python_version())\n    print('Current installation scheme: \"%s\"' % _get_default_scheme())\n    print()\n    _print_dict('Paths', get_paths())\n    print()\n    _print_dict('Variables', get_config_vars())\n\n\nif __name__ == '__main__':\n    _main()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/tabnanny.py",
    "content": "#! /usr/bin/env python3\n\n\"\"\"The Tab Nanny despises ambiguous indentation.  She knows no mercy.\n\ntabnanny -- Detection of ambiguous indentation\n\nFor the time being this module is intended to be called as a script.\nHowever it is possible to import it into an IDE and use the function\ncheck() described below.\n\nWarning: The API provided by this module is likely to change in future\nreleases; such changes may not be backward compatible.\n\"\"\"\n\n# Released to the public domain, by Tim Peters, 15 April 1998.\n\n# XXX Note: this is now a standard library module.\n# XXX The API needs to undergo changes however; the current code is too\n# XXX script-like.  This will be addressed later.\n\n__version__ = \"6\"\n\nimport os\nimport sys\nimport tokenize\nif not hasattr(tokenize, 'NL'):\n    raise ValueError(\"tokenize.NL doesn't exist -- tokenize module too old\")\n\n__all__ = [\"check\", \"NannyNag\", \"process_tokens\"]\n\nverbose = 0\nfilename_only = 0\n\ndef errprint(*args):\n    sep = \"\"\n    for arg in args:\n        sys.stderr.write(sep + str(arg))\n        sep = \" \"\n    sys.stderr.write(\"\\n\")\n\ndef main():\n    import getopt\n\n    global verbose, filename_only\n    try:\n        opts, args = getopt.getopt(sys.argv[1:], \"qv\")\n    except getopt.error as msg:\n        errprint(msg)\n        return\n    for o, a in opts:\n        if o == '-q':\n            filename_only = filename_only + 1\n        if o == '-v':\n            verbose = verbose + 1\n    if not args:\n        errprint(\"Usage:\", sys.argv[0], \"[-v] file_or_directory ...\")\n        return\n    for arg in args:\n        check(arg)\n\nclass NannyNag(Exception):\n    \"\"\"\n    Raised by process_tokens() if detecting an ambiguous indent.\n    Captured and handled in check().\n    \"\"\"\n    def __init__(self, lineno, msg, line):\n        self.lineno, self.msg, self.line = lineno, msg, line\n    def get_lineno(self):\n        return self.lineno\n    def get_msg(self):\n        return self.msg\n    def get_line(self):\n        return self.line\n\ndef check(file):\n    \"\"\"check(file_or_dir)\n\n    If file_or_dir is a directory and not a symbolic link, then recursively\n    descend the directory tree named by file_or_dir, checking all .py files\n    along the way. If file_or_dir is an ordinary Python source file, it is\n    checked for whitespace related problems. The diagnostic messages are\n    written to standard output using the print statement.\n    \"\"\"\n\n    if os.path.isdir(file) and not os.path.islink(file):\n        if verbose:\n            print(\"%r: listing directory\" % (file,))\n        names = os.listdir(file)\n        for name in names:\n            fullname = os.path.join(file, name)\n            if (os.path.isdir(fullname) and\n                not os.path.islink(fullname) or\n                os.path.normcase(name[-3:]) == \".py\"):\n                check(fullname)\n        return\n\n    try:\n        f = tokenize.open(file)\n    except OSError as msg:\n        errprint(\"%r: I/O Error: %s\" % (file, msg))\n        return\n\n    if verbose > 1:\n        print(\"checking %r ...\" % file)\n\n    try:\n        process_tokens(tokenize.generate_tokens(f.readline))\n\n    except tokenize.TokenError as msg:\n        errprint(\"%r: Token Error: %s\" % (file, msg))\n        return\n\n    except IndentationError as msg:\n        errprint(\"%r: Indentation Error: %s\" % (file, msg))\n        return\n\n    except NannyNag as nag:\n        badline = nag.get_lineno()\n        line = nag.get_line()\n        if verbose:\n            print(\"%r: *** Line %d: trouble in tab city! ***\" % (file, badline))\n            print(\"offending line: %r\" % (line,))\n            print(nag.get_msg())\n        else:\n            if ' ' in file: file = '\"' + file + '\"'\n            if filename_only: print(file)\n            else: print(file, badline, repr(line))\n        return\n\n    finally:\n        f.close()\n\n    if verbose:\n        print(\"%r: Clean bill of health.\" % (file,))\n\nclass Whitespace:\n    # the characters used for space and tab\n    S, T = ' \\t'\n\n    # members:\n    #   raw\n    #       the original string\n    #   n\n    #       the number of leading whitespace characters in raw\n    #   nt\n    #       the number of tabs in raw[:n]\n    #   norm\n    #       the normal form as a pair (count, trailing), where:\n    #       count\n    #           a tuple such that raw[:n] contains count[i]\n    #           instances of S * i + T\n    #       trailing\n    #           the number of trailing spaces in raw[:n]\n    #       It's A Theorem that m.indent_level(t) ==\n    #       n.indent_level(t) for all t >= 1 iff m.norm == n.norm.\n    #   is_simple\n    #       true iff raw[:n] is of the form (T*)(S*)\n\n    def __init__(self, ws):\n        self.raw  = ws\n        S, T = Whitespace.S, Whitespace.T\n        count = []\n        b = n = nt = 0\n        for ch in self.raw:\n            if ch == S:\n                n = n + 1\n                b = b + 1\n            elif ch == T:\n                n = n + 1\n                nt = nt + 1\n                if b >= len(count):\n                    count = count + [0] * (b - len(count) + 1)\n                count[b] = count[b] + 1\n                b = 0\n            else:\n                break\n        self.n    = n\n        self.nt   = nt\n        self.norm = tuple(count), b\n        self.is_simple = len(count) <= 1\n\n    # return length of longest contiguous run of spaces (whether or not\n    # preceding a tab)\n    def longest_run_of_spaces(self):\n        count, trailing = self.norm\n        return max(len(count)-1, trailing)\n\n    def indent_level(self, tabsize):\n        # count, il = self.norm\n        # for i in range(len(count)):\n        #    if count[i]:\n        #        il = il + (i//tabsize + 1)*tabsize * count[i]\n        # return il\n\n        # quicker:\n        # il = trailing + sum (i//ts + 1)*ts*count[i] =\n        # trailing + ts * sum (i//ts + 1)*count[i] =\n        # trailing + ts * sum i//ts*count[i] + count[i] =\n        # trailing + ts * [(sum i//ts*count[i]) + (sum count[i])] =\n        # trailing + ts * [(sum i//ts*count[i]) + num_tabs]\n        # and note that i//ts*count[i] is 0 when i < ts\n\n        count, trailing = self.norm\n        il = 0\n        for i in range(tabsize, len(count)):\n            il = il + i//tabsize * count[i]\n        return trailing + tabsize * (il + self.nt)\n\n    # return true iff self.indent_level(t) == other.indent_level(t)\n    # for all t >= 1\n    def equal(self, other):\n        return self.norm == other.norm\n\n    # return a list of tuples (ts, i1, i2) such that\n    # i1 == self.indent_level(ts) != other.indent_level(ts) == i2.\n    # Intended to be used after not self.equal(other) is known, in which\n    # case it will return at least one witnessing tab size.\n    def not_equal_witness(self, other):\n        n = max(self.longest_run_of_spaces(),\n                other.longest_run_of_spaces()) + 1\n        a = []\n        for ts in range(1, n+1):\n            if self.indent_level(ts) != other.indent_level(ts):\n                a.append( (ts,\n                           self.indent_level(ts),\n                           other.indent_level(ts)) )\n        return a\n\n    # Return True iff self.indent_level(t) < other.indent_level(t)\n    # for all t >= 1.\n    # The algorithm is due to Vincent Broman.\n    # Easy to prove it's correct.\n    # XXXpost that.\n    # Trivial to prove n is sharp (consider T vs ST).\n    # Unknown whether there's a faster general way.  I suspected so at\n    # first, but no longer.\n    # For the special (but common!) case where M and N are both of the\n    # form (T*)(S*), M.less(N) iff M.len() < N.len() and\n    # M.num_tabs() <= N.num_tabs(). Proof is easy but kinda long-winded.\n    # XXXwrite that up.\n    # Note that M is of the form (T*)(S*) iff len(M.norm[0]) <= 1.\n    def less(self, other):\n        if self.n >= other.n:\n            return False\n        if self.is_simple and other.is_simple:\n            return self.nt <= other.nt\n        n = max(self.longest_run_of_spaces(),\n                other.longest_run_of_spaces()) + 1\n        # the self.n >= other.n test already did it for ts=1\n        for ts in range(2, n+1):\n            if self.indent_level(ts) >= other.indent_level(ts):\n                return False\n        return True\n\n    # return a list of tuples (ts, i1, i2) such that\n    # i1 == self.indent_level(ts) >= other.indent_level(ts) == i2.\n    # Intended to be used after not self.less(other) is known, in which\n    # case it will return at least one witnessing tab size.\n    def not_less_witness(self, other):\n        n = max(self.longest_run_of_spaces(),\n                other.longest_run_of_spaces()) + 1\n        a = []\n        for ts in range(1, n+1):\n            if self.indent_level(ts) >= other.indent_level(ts):\n                a.append( (ts,\n                           self.indent_level(ts),\n                           other.indent_level(ts)) )\n        return a\n\ndef format_witnesses(w):\n    firsts = (str(tup[0]) for tup in w)\n    prefix = \"at tab size\"\n    if len(w) > 1:\n        prefix = prefix + \"s\"\n    return prefix + \" \" + ', '.join(firsts)\n\ndef process_tokens(tokens):\n    INDENT = tokenize.INDENT\n    DEDENT = tokenize.DEDENT\n    NEWLINE = tokenize.NEWLINE\n    JUNK = tokenize.COMMENT, tokenize.NL\n    indents = [Whitespace(\"\")]\n    check_equal = 0\n\n    for (type, token, start, end, line) in tokens:\n        if type == NEWLINE:\n            # a program statement, or ENDMARKER, will eventually follow,\n            # after some (possibly empty) run of tokens of the form\n            #     (NL | COMMENT)* (INDENT | DEDENT+)?\n            # If an INDENT appears, setting check_equal is wrong, and will\n            # be undone when we see the INDENT.\n            check_equal = 1\n\n        elif type == INDENT:\n            check_equal = 0\n            thisguy = Whitespace(token)\n            if not indents[-1].less(thisguy):\n                witness = indents[-1].not_less_witness(thisguy)\n                msg = \"indent not greater e.g. \" + format_witnesses(witness)\n                raise NannyNag(start[0], msg, line)\n            indents.append(thisguy)\n\n        elif type == DEDENT:\n            # there's nothing we need to check here!  what's important is\n            # that when the run of DEDENTs ends, the indentation of the\n            # program statement (or ENDMARKER) that triggered the run is\n            # equal to what's left at the top of the indents stack\n\n            # Ouch!  This assert triggers if the last line of the source\n            # is indented *and* lacks a newline -- then DEDENTs pop out\n            # of thin air.\n            # assert check_equal  # else no earlier NEWLINE, or an earlier INDENT\n            check_equal = 1\n\n            del indents[-1]\n\n        elif check_equal and type not in JUNK:\n            # this is the first \"real token\" following a NEWLINE, so it\n            # must be the first token of the next program statement, or an\n            # ENDMARKER; the \"line\" argument exposes the leading whitespace\n            # for this statement; in the case of ENDMARKER, line is an empty\n            # string, so will properly match the empty string with which the\n            # \"indents\" stack was seeded\n            check_equal = 0\n            thisguy = Whitespace(line)\n            if not indents[-1].equal(thisguy):\n                witness = indents[-1].not_equal_witness(thisguy)\n                msg = \"indent not equal e.g. \" + format_witnesses(witness)\n                raise NannyNag(start[0], msg, line)\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/telnetlib.py",
    "content": "r\"\"\"TELNET client class.\n\nBased on RFC 854: TELNET Protocol Specification, by J. Postel and\nJ. Reynolds\n\nExample:\n\n>>> from telnetlib import Telnet\n>>> tn = Telnet('www.python.org', 79)   # connect to finger port\n>>> tn.write(b'guido\\r\\n')\n>>> print(tn.read_all())\nLogin       Name               TTY         Idle    When    Where\nguido    Guido van Rossum      pts/2        <Dec  2 11:10> snag.cnri.reston..\n\n>>>\n\nNote that read_all() won't read until eof -- it just reads some data\n-- but it guarantees to read at least one byte unless EOF is hit.\n\nIt is possible to pass a Telnet object to a selector in order to wait until\nmore data is available.  Note that in this case, read_eager() may return b''\neven if there was data on the socket, because the protocol negotiation may have\neaten the data.  This is why EOFError is needed in some cases to distinguish\nbetween \"no data\" and \"connection closed\" (since the socket also appears ready\nfor reading when it is closed).\n\nTo do:\n- option negotiation\n- timeout should be intrinsic to the connection object instead of an\n  option on one of the read calls only\n\n\"\"\"\n\n\n# Imported modules\nimport sys\nimport socket\nimport selectors\nfrom time import monotonic as _time\n\n__all__ = [\"Telnet\"]\n\n# Tunable parameters\nDEBUGLEVEL = 0\n\n# Telnet protocol defaults\nTELNET_PORT = 23\n\n# Telnet protocol characters (don't change)\nIAC  = bytes([255]) # \"Interpret As Command\"\nDONT = bytes([254])\nDO   = bytes([253])\nWONT = bytes([252])\nWILL = bytes([251])\ntheNULL = bytes([0])\n\nSE  = bytes([240])  # Subnegotiation End\nNOP = bytes([241])  # No Operation\nDM  = bytes([242])  # Data Mark\nBRK = bytes([243])  # Break\nIP  = bytes([244])  # Interrupt process\nAO  = bytes([245])  # Abort output\nAYT = bytes([246])  # Are You There\nEC  = bytes([247])  # Erase Character\nEL  = bytes([248])  # Erase Line\nGA  = bytes([249])  # Go Ahead\nSB =  bytes([250])  # Subnegotiation Begin\n\n\n# Telnet protocol options code (don't change)\n# These ones all come from arpa/telnet.h\nBINARY = bytes([0]) # 8-bit data path\nECHO = bytes([1]) # echo\nRCP = bytes([2]) # prepare to reconnect\nSGA = bytes([3]) # suppress go ahead\nNAMS = bytes([4]) # approximate message size\nSTATUS = bytes([5]) # give status\nTM = bytes([6]) # timing mark\nRCTE = bytes([7]) # remote controlled transmission and echo\nNAOL = bytes([8]) # negotiate about output line width\nNAOP = bytes([9]) # negotiate about output page size\nNAOCRD = bytes([10]) # negotiate about CR disposition\nNAOHTS = bytes([11]) # negotiate about horizontal tabstops\nNAOHTD = bytes([12]) # negotiate about horizontal tab disposition\nNAOFFD = bytes([13]) # negotiate about formfeed disposition\nNAOVTS = bytes([14]) # negotiate about vertical tab stops\nNAOVTD = bytes([15]) # negotiate about vertical tab disposition\nNAOLFD = bytes([16]) # negotiate about output LF disposition\nXASCII = bytes([17]) # extended ascii character set\nLOGOUT = bytes([18]) # force logout\nBM = bytes([19]) # byte macro\nDET = bytes([20]) # data entry terminal\nSUPDUP = bytes([21]) # supdup protocol\nSUPDUPOUTPUT = bytes([22]) # supdup output\nSNDLOC = bytes([23]) # send location\nTTYPE = bytes([24]) # terminal type\nEOR = bytes([25]) # end or record\nTUID = bytes([26]) # TACACS user identification\nOUTMRK = bytes([27]) # output marking\nTTYLOC = bytes([28]) # terminal location number\nVT3270REGIME = bytes([29]) # 3270 regime\nX3PAD = bytes([30]) # X.3 PAD\nNAWS = bytes([31]) # window size\nTSPEED = bytes([32]) # terminal speed\nLFLOW = bytes([33]) # remote flow control\nLINEMODE = bytes([34]) # Linemode option\nXDISPLOC = bytes([35]) # X Display Location\nOLD_ENVIRON = bytes([36]) # Old - Environment variables\nAUTHENTICATION = bytes([37]) # Authenticate\nENCRYPT = bytes([38]) # Encryption option\nNEW_ENVIRON = bytes([39]) # New - Environment variables\n# the following ones come from\n# http://www.iana.org/assignments/telnet-options\n# Unfortunately, that document does not assign identifiers\n# to all of them, so we are making them up\nTN3270E = bytes([40]) # TN3270E\nXAUTH = bytes([41]) # XAUTH\nCHARSET = bytes([42]) # CHARSET\nRSP = bytes([43]) # Telnet Remote Serial Port\nCOM_PORT_OPTION = bytes([44]) # Com Port Control Option\nSUPPRESS_LOCAL_ECHO = bytes([45]) # Telnet Suppress Local Echo\nTLS = bytes([46]) # Telnet Start TLS\nKERMIT = bytes([47]) # KERMIT\nSEND_URL = bytes([48]) # SEND-URL\nFORWARD_X = bytes([49]) # FORWARD_X\nPRAGMA_LOGON = bytes([138]) # TELOPT PRAGMA LOGON\nSSPI_LOGON = bytes([139]) # TELOPT SSPI LOGON\nPRAGMA_HEARTBEAT = bytes([140]) # TELOPT PRAGMA HEARTBEAT\nEXOPL = bytes([255]) # Extended-Options-List\nNOOPT = bytes([0])\n\n\n# poll/select have the advantage of not requiring any extra file descriptor,\n# contrarily to epoll/kqueue (also, they require a single syscall).\nif hasattr(selectors, 'PollSelector'):\n    _TelnetSelector = selectors.PollSelector\nelse:\n    _TelnetSelector = selectors.SelectSelector\n\n\nclass Telnet:\n\n    \"\"\"Telnet interface class.\n\n    An instance of this class represents a connection to a telnet\n    server.  The instance is initially not connected; the open()\n    method must be used to establish a connection.  Alternatively, the\n    host name and optional port number can be passed to the\n    constructor, too.\n\n    Don't try to reopen an already connected instance.\n\n    This class has many read_*() methods.  Note that some of them\n    raise EOFError when the end of the connection is read, because\n    they can return an empty string for other reasons.  See the\n    individual doc strings.\n\n    read_until(expected, [timeout])\n        Read until the expected string has been seen, or a timeout is\n        hit (default is no timeout); may block.\n\n    read_all()\n        Read all data until EOF; may block.\n\n    read_some()\n        Read at least one byte or EOF; may block.\n\n    read_very_eager()\n        Read all data available already queued or on the socket,\n        without blocking.\n\n    read_eager()\n        Read either data already queued or some data available on the\n        socket, without blocking.\n\n    read_lazy()\n        Read all data in the raw queue (processing it first), without\n        doing any socket I/O.\n\n    read_very_lazy()\n        Reads all data in the cooked queue, without doing any socket\n        I/O.\n\n    read_sb_data()\n        Reads available data between SB ... SE sequence. Don't block.\n\n    set_option_negotiation_callback(callback)\n        Each time a telnet option is read on the input flow, this callback\n        (if set) is called with the following parameters :\n        callback(telnet socket, command, option)\n            option will be chr(0) when there is no option.\n        No other action is done afterwards by telnetlib.\n\n    \"\"\"\n\n    def __init__(self, host=None, port=0,\n                 timeout=socket._GLOBAL_DEFAULT_TIMEOUT):\n        \"\"\"Constructor.\n\n        When called without arguments, create an unconnected instance.\n        With a hostname argument, it connects the instance; port number\n        and timeout are optional.\n        \"\"\"\n        self.debuglevel = DEBUGLEVEL\n        self.host = host\n        self.port = port\n        self.timeout = timeout\n        self.sock = None\n        self.rawq = b''\n        self.irawq = 0\n        self.cookedq = b''\n        self.eof = 0\n        self.iacseq = b'' # Buffer for IAC sequence.\n        self.sb = 0 # flag for SB and SE sequence.\n        self.sbdataq = b''\n        self.option_callback = None\n        if host is not None:\n            self.open(host, port, timeout)\n\n    def open(self, host, port=0, timeout=socket._GLOBAL_DEFAULT_TIMEOUT):\n        \"\"\"Connect to a host.\n\n        The optional second argument is the port number, which\n        defaults to the standard telnet port (23).\n\n        Don't try to reopen an already connected instance.\n        \"\"\"\n        self.eof = 0\n        if not port:\n            port = TELNET_PORT\n        self.host = host\n        self.port = port\n        self.timeout = timeout\n        sys.audit(\"telnetlib.Telnet.open\", self, host, port)\n        self.sock = socket.create_connection((host, port), timeout)\n\n    def __del__(self):\n        \"\"\"Destructor -- close the connection.\"\"\"\n        self.close()\n\n    def msg(self, msg, *args):\n        \"\"\"Print a debug message, when the debug level is > 0.\n\n        If extra arguments are present, they are substituted in the\n        message using the standard string formatting operator.\n\n        \"\"\"\n        if self.debuglevel > 0:\n            print('Telnet(%s,%s):' % (self.host, self.port), end=' ')\n            if args:\n                print(msg % args)\n            else:\n                print(msg)\n\n    def set_debuglevel(self, debuglevel):\n        \"\"\"Set the debug level.\n\n        The higher it is, the more debug output you get (on sys.stdout).\n\n        \"\"\"\n        self.debuglevel = debuglevel\n\n    def close(self):\n        \"\"\"Close the connection.\"\"\"\n        sock = self.sock\n        self.sock = None\n        self.eof = True\n        self.iacseq = b''\n        self.sb = 0\n        if sock:\n            sock.close()\n\n    def get_socket(self):\n        \"\"\"Return the socket object used internally.\"\"\"\n        return self.sock\n\n    def fileno(self):\n        \"\"\"Return the fileno() of the socket object used internally.\"\"\"\n        return self.sock.fileno()\n\n    def write(self, buffer):\n        \"\"\"Write a string to the socket, doubling any IAC characters.\n\n        Can block if the connection is blocked.  May raise\n        OSError if the connection is closed.\n\n        \"\"\"\n        if IAC in buffer:\n            buffer = buffer.replace(IAC, IAC+IAC)\n        sys.audit(\"telnetlib.Telnet.write\", self, buffer)\n        self.msg(\"send %r\", buffer)\n        self.sock.sendall(buffer)\n\n    def read_until(self, match, timeout=None):\n        \"\"\"Read until a given string is encountered or until timeout.\n\n        When no match is found, return whatever is available instead,\n        possibly the empty string.  Raise EOFError if the connection\n        is closed and no cooked data is available.\n\n        \"\"\"\n        n = len(match)\n        self.process_rawq()\n        i = self.cookedq.find(match)\n        if i >= 0:\n            i = i+n\n            buf = self.cookedq[:i]\n            self.cookedq = self.cookedq[i:]\n            return buf\n        if timeout is not None:\n            deadline = _time() + timeout\n        with _TelnetSelector() as selector:\n            selector.register(self, selectors.EVENT_READ)\n            while not self.eof:\n                if selector.select(timeout):\n                    i = max(0, len(self.cookedq)-n)\n                    self.fill_rawq()\n                    self.process_rawq()\n                    i = self.cookedq.find(match, i)\n                    if i >= 0:\n                        i = i+n\n                        buf = self.cookedq[:i]\n                        self.cookedq = self.cookedq[i:]\n                        return buf\n                if timeout is not None:\n                    timeout = deadline - _time()\n                    if timeout < 0:\n                        break\n        return self.read_very_lazy()\n\n    def read_all(self):\n        \"\"\"Read all data until EOF; block until connection closed.\"\"\"\n        self.process_rawq()\n        while not self.eof:\n            self.fill_rawq()\n            self.process_rawq()\n        buf = self.cookedq\n        self.cookedq = b''\n        return buf\n\n    def read_some(self):\n        \"\"\"Read at least one byte of cooked data unless EOF is hit.\n\n        Return b'' if EOF is hit.  Block if no data is immediately\n        available.\n\n        \"\"\"\n        self.process_rawq()\n        while not self.cookedq and not self.eof:\n            self.fill_rawq()\n            self.process_rawq()\n        buf = self.cookedq\n        self.cookedq = b''\n        return buf\n\n    def read_very_eager(self):\n        \"\"\"Read everything that's possible without blocking in I/O (eager).\n\n        Raise EOFError if connection closed and no cooked data\n        available.  Return b'' if no cooked data available otherwise.\n        Don't block unless in the midst of an IAC sequence.\n\n        \"\"\"\n        self.process_rawq()\n        while not self.eof and self.sock_avail():\n            self.fill_rawq()\n            self.process_rawq()\n        return self.read_very_lazy()\n\n    def read_eager(self):\n        \"\"\"Read readily available data.\n\n        Raise EOFError if connection closed and no cooked data\n        available.  Return b'' if no cooked data available otherwise.\n        Don't block unless in the midst of an IAC sequence.\n\n        \"\"\"\n        self.process_rawq()\n        while not self.cookedq and not self.eof and self.sock_avail():\n            self.fill_rawq()\n            self.process_rawq()\n        return self.read_very_lazy()\n\n    def read_lazy(self):\n        \"\"\"Process and return data that's already in the queues (lazy).\n\n        Raise EOFError if connection closed and no data available.\n        Return b'' if no cooked data available otherwise.  Don't block\n        unless in the midst of an IAC sequence.\n\n        \"\"\"\n        self.process_rawq()\n        return self.read_very_lazy()\n\n    def read_very_lazy(self):\n        \"\"\"Return any data available in the cooked queue (very lazy).\n\n        Raise EOFError if connection closed and no data available.\n        Return b'' if no cooked data available otherwise.  Don't block.\n\n        \"\"\"\n        buf = self.cookedq\n        self.cookedq = b''\n        if not buf and self.eof and not self.rawq:\n            raise EOFError('telnet connection closed')\n        return buf\n\n    def read_sb_data(self):\n        \"\"\"Return any data available in the SB ... SE queue.\n\n        Return b'' if no SB ... SE available. Should only be called\n        after seeing a SB or SE command. When a new SB command is\n        found, old unread SB data will be discarded. Don't block.\n\n        \"\"\"\n        buf = self.sbdataq\n        self.sbdataq = b''\n        return buf\n\n    def set_option_negotiation_callback(self, callback):\n        \"\"\"Provide a callback function called after each receipt of a telnet option.\"\"\"\n        self.option_callback = callback\n\n    def process_rawq(self):\n        \"\"\"Transfer from raw queue to cooked queue.\n\n        Set self.eof when connection is closed.  Don't block unless in\n        the midst of an IAC sequence.\n\n        \"\"\"\n        buf = [b'', b'']\n        try:\n            while self.rawq:\n                c = self.rawq_getchar()\n                if not self.iacseq:\n                    if c == theNULL:\n                        continue\n                    if c == b\"\\021\":\n                        continue\n                    if c != IAC:\n                        buf[self.sb] = buf[self.sb] + c\n                        continue\n                    else:\n                        self.iacseq += c\n                elif len(self.iacseq) == 1:\n                    # 'IAC: IAC CMD [OPTION only for WILL/WONT/DO/DONT]'\n                    if c in (DO, DONT, WILL, WONT):\n                        self.iacseq += c\n                        continue\n\n                    self.iacseq = b''\n                    if c == IAC:\n                        buf[self.sb] = buf[self.sb] + c\n                    else:\n                        if c == SB: # SB ... SE start.\n                            self.sb = 1\n                            self.sbdataq = b''\n                        elif c == SE:\n                            self.sb = 0\n                            self.sbdataq = self.sbdataq + buf[1]\n                            buf[1] = b''\n                        if self.option_callback:\n                            # Callback is supposed to look into\n                            # the sbdataq\n                            self.option_callback(self.sock, c, NOOPT)\n                        else:\n                            # We can't offer automatic processing of\n                            # suboptions. Alas, we should not get any\n                            # unless we did a WILL/DO before.\n                            self.msg('IAC %d not recognized' % ord(c))\n                elif len(self.iacseq) == 2:\n                    cmd = self.iacseq[1:2]\n                    self.iacseq = b''\n                    opt = c\n                    if cmd in (DO, DONT):\n                        self.msg('IAC %s %d',\n                            cmd == DO and 'DO' or 'DONT', ord(opt))\n                        if self.option_callback:\n                            self.option_callback(self.sock, cmd, opt)\n                        else:\n                            self.sock.sendall(IAC + WONT + opt)\n                    elif cmd in (WILL, WONT):\n                        self.msg('IAC %s %d',\n                            cmd == WILL and 'WILL' or 'WONT', ord(opt))\n                        if self.option_callback:\n                            self.option_callback(self.sock, cmd, opt)\n                        else:\n                            self.sock.sendall(IAC + DONT + opt)\n        except EOFError: # raised by self.rawq_getchar()\n            self.iacseq = b'' # Reset on EOF\n            self.sb = 0\n            pass\n        self.cookedq = self.cookedq + buf[0]\n        self.sbdataq = self.sbdataq + buf[1]\n\n    def rawq_getchar(self):\n        \"\"\"Get next char from raw queue.\n\n        Block if no data is immediately available.  Raise EOFError\n        when connection is closed.\n\n        \"\"\"\n        if not self.rawq:\n            self.fill_rawq()\n            if self.eof:\n                raise EOFError\n        c = self.rawq[self.irawq:self.irawq+1]\n        self.irawq = self.irawq + 1\n        if self.irawq >= len(self.rawq):\n            self.rawq = b''\n            self.irawq = 0\n        return c\n\n    def fill_rawq(self):\n        \"\"\"Fill raw queue from exactly one recv() system call.\n\n        Block if no data is immediately available.  Set self.eof when\n        connection is closed.\n\n        \"\"\"\n        if self.irawq >= len(self.rawq):\n            self.rawq = b''\n            self.irawq = 0\n        # The buffer size should be fairly small so as to avoid quadratic\n        # behavior in process_rawq() above\n        buf = self.sock.recv(50)\n        self.msg(\"recv %r\", buf)\n        self.eof = (not buf)\n        self.rawq = self.rawq + buf\n\n    def sock_avail(self):\n        \"\"\"Test whether data is available on the socket.\"\"\"\n        with _TelnetSelector() as selector:\n            selector.register(self, selectors.EVENT_READ)\n            return bool(selector.select(0))\n\n    def interact(self):\n        \"\"\"Interaction function, emulates a very dumb telnet client.\"\"\"\n        if sys.platform == \"win32\":\n            self.mt_interact()\n            return\n        with _TelnetSelector() as selector:\n            selector.register(self, selectors.EVENT_READ)\n            selector.register(sys.stdin, selectors.EVENT_READ)\n\n            while True:\n                for key, events in selector.select():\n                    if key.fileobj is self:\n                        try:\n                            text = self.read_eager()\n                        except EOFError:\n                            print('*** Connection closed by remote host ***')\n                            return\n                        if text:\n                            sys.stdout.write(text.decode('ascii'))\n                            sys.stdout.flush()\n                    elif key.fileobj is sys.stdin:\n                        line = sys.stdin.readline().encode('ascii')\n                        if not line:\n                            return\n                        self.write(line)\n\n    def mt_interact(self):\n        \"\"\"Multithreaded version of interact().\"\"\"\n        import _thread\n        _thread.start_new_thread(self.listener, ())\n        while 1:\n            line = sys.stdin.readline()\n            if not line:\n                break\n            self.write(line.encode('ascii'))\n\n    def listener(self):\n        \"\"\"Helper for mt_interact() -- this executes in the other thread.\"\"\"\n        while 1:\n            try:\n                data = self.read_eager()\n            except EOFError:\n                print('*** Connection closed by remote host ***')\n                return\n            if data:\n                sys.stdout.write(data.decode('ascii'))\n            else:\n                sys.stdout.flush()\n\n    def expect(self, list, timeout=None):\n        \"\"\"Read until one from a list of a regular expressions matches.\n\n        The first argument is a list of regular expressions, either\n        compiled (re.Pattern instances) or uncompiled (strings).\n        The optional second argument is a timeout, in seconds; default\n        is no timeout.\n\n        Return a tuple of three items: the index in the list of the\n        first regular expression that matches; the re.Match object\n        returned; and the text read up till and including the match.\n\n        If EOF is read and no text was read, raise EOFError.\n        Otherwise, when nothing matches, return (-1, None, text) where\n        text is the text received so far (may be the empty string if a\n        timeout happened).\n\n        If a regular expression ends with a greedy match (e.g. '.*')\n        or if more than one expression can match the same input, the\n        results are undeterministic, and may depend on the I/O timing.\n\n        \"\"\"\n        re = None\n        list = list[:]\n        indices = range(len(list))\n        for i in indices:\n            if not hasattr(list[i], \"search\"):\n                if not re: import re\n                list[i] = re.compile(list[i])\n        if timeout is not None:\n            deadline = _time() + timeout\n        with _TelnetSelector() as selector:\n            selector.register(self, selectors.EVENT_READ)\n            while not self.eof:\n                self.process_rawq()\n                for i in indices:\n                    m = list[i].search(self.cookedq)\n                    if m:\n                        e = m.end()\n                        text = self.cookedq[:e]\n                        self.cookedq = self.cookedq[e:]\n                        return (i, m, text)\n                if timeout is not None:\n                    ready = selector.select(timeout)\n                    timeout = deadline - _time()\n                    if not ready:\n                        if timeout < 0:\n                            break\n                        else:\n                            continue\n                self.fill_rawq()\n        text = self.read_very_lazy()\n        if not text and self.eof:\n            raise EOFError\n        return (-1, None, text)\n\n    def __enter__(self):\n        return self\n\n    def __exit__(self, type, value, traceback):\n        self.close()\n\n\ndef test():\n    \"\"\"Test program for telnetlib.\n\n    Usage: python telnetlib.py [-d] ... [host [port]]\n\n    Default host is localhost; default port is 23.\n\n    \"\"\"\n    debuglevel = 0\n    while sys.argv[1:] and sys.argv[1] == '-d':\n        debuglevel = debuglevel+1\n        del sys.argv[1]\n    host = 'localhost'\n    if sys.argv[1:]:\n        host = sys.argv[1]\n    port = 0\n    if sys.argv[2:]:\n        portstr = sys.argv[2]\n        try:\n            port = int(portstr)\n        except ValueError:\n            port = socket.getservbyname(portstr, 'tcp')\n    with Telnet() as tn:\n        tn.set_debuglevel(debuglevel)\n        tn.open(host, port, timeout=0.5)\n        tn.interact()\n\nif __name__ == '__main__':\n    test()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/tempfile.py",
    "content": "\"\"\"Temporary files.\n\nThis module provides generic, low- and high-level interfaces for\ncreating temporary files and directories.  All of the interfaces\nprovided by this module can be used without fear of race conditions\nexcept for 'mktemp'.  'mktemp' is subject to race conditions and\nshould not be used; it is provided for backward compatibility only.\n\nThe default path names are returned as str.  If you supply bytes as\ninput, all return values will be in bytes.  Ex:\n\n    >>> tempfile.mkstemp()\n    (4, '/tmp/tmptpu9nin8')\n    >>> tempfile.mkdtemp(suffix=b'')\n    b'/tmp/tmppbi8f0hy'\n\nThis module also provides some data items to the user:\n\n  TMP_MAX  - maximum number of names that will be tried before\n             giving up.\n  tempdir  - If this is set to a string before the first use of\n             any routine from this module, it will be considered as\n             another candidate location to store temporary files.\n\"\"\"\n\n__all__ = [\n    \"NamedTemporaryFile\", \"TemporaryFile\", # high level safe interfaces\n    \"SpooledTemporaryFile\", \"TemporaryDirectory\",\n    \"mkstemp\", \"mkdtemp\",                  # low level safe interfaces\n    \"mktemp\",                              # deprecated unsafe interface\n    \"TMP_MAX\", \"gettempprefix\",            # constants\n    \"tempdir\", \"gettempdir\",\n    \"gettempprefixb\", \"gettempdirb\",\n   ]\n\n\n# Imports.\n\nimport functools as _functools\nimport warnings as _warnings\nimport io as _io\nimport os as _os\nimport shutil as _shutil\nimport errno as _errno\nfrom random import Random as _Random\nimport sys as _sys\nimport weakref as _weakref\nimport _thread\n_allocate_lock = _thread.allocate_lock\n\n_text_openflags = _os.O_RDWR | _os.O_CREAT | _os.O_EXCL\nif hasattr(_os, 'O_NOFOLLOW'):\n    _text_openflags |= _os.O_NOFOLLOW\n\n_bin_openflags = _text_openflags\nif hasattr(_os, 'O_BINARY'):\n    _bin_openflags |= _os.O_BINARY\n\nif hasattr(_os, 'TMP_MAX'):\n    TMP_MAX = _os.TMP_MAX\nelse:\n    TMP_MAX = 10000\n\n# This variable _was_ unused for legacy reasons, see issue 10354.\n# But as of 3.5 we actually use it at runtime so changing it would\n# have a possibly desirable side effect...  But we do not want to support\n# that as an API.  It is undocumented on purpose.  Do not depend on this.\ntemplate = \"tmp\"\n\n# Internal routines.\n\n_once_lock = _allocate_lock()\n\n\ndef _exists(fn):\n    try:\n        _os.lstat(fn)\n    except OSError:\n        return False\n    else:\n        return True\n\n\ndef _infer_return_type(*args):\n    \"\"\"Look at the type of all args and divine their implied return type.\"\"\"\n    return_type = None\n    for arg in args:\n        if arg is None:\n            continue\n        if isinstance(arg, bytes):\n            if return_type is str:\n                raise TypeError(\"Can't mix bytes and non-bytes in \"\n                                \"path components.\")\n            return_type = bytes\n        else:\n            if return_type is bytes:\n                raise TypeError(\"Can't mix bytes and non-bytes in \"\n                                \"path components.\")\n            return_type = str\n    if return_type is None:\n        return str  # tempfile APIs return a str by default.\n    return return_type\n\n\ndef _sanitize_params(prefix, suffix, dir):\n    \"\"\"Common parameter processing for most APIs in this module.\"\"\"\n    output_type = _infer_return_type(prefix, suffix, dir)\n    if suffix is None:\n        suffix = output_type()\n    if prefix is None:\n        if output_type is str:\n            prefix = template\n        else:\n            prefix = _os.fsencode(template)\n    if dir is None:\n        if output_type is str:\n            dir = gettempdir()\n        else:\n            dir = gettempdirb()\n    return prefix, suffix, dir, output_type\n\n\nclass _RandomNameSequence:\n    \"\"\"An instance of _RandomNameSequence generates an endless\n    sequence of unpredictable strings which can safely be incorporated\n    into file names.  Each string is eight characters long.  Multiple\n    threads can safely use the same instance at the same time.\n\n    _RandomNameSequence is an iterator.\"\"\"\n\n    characters = \"abcdefghijklmnopqrstuvwxyz0123456789_\"\n\n    @property\n    def rng(self):\n        cur_pid = _os.getpid()\n        if cur_pid != getattr(self, '_rng_pid', None):\n            self._rng = _Random()\n            self._rng_pid = cur_pid\n        return self._rng\n\n    def __iter__(self):\n        return self\n\n    def __next__(self):\n        c = self.characters\n        choose = self.rng.choice\n        letters = [choose(c) for dummy in range(8)]\n        return ''.join(letters)\n\ndef _candidate_tempdir_list():\n    \"\"\"Generate a list of candidate temporary directories which\n    _get_default_tempdir will try.\"\"\"\n\n    dirlist = []\n\n    # First, try the environment.\n    for envname in 'TMPDIR', 'TEMP', 'TMP':\n        dirname = _os.getenv(envname)\n        if dirname: dirlist.append(dirname)\n\n    # Failing that, try OS-specific locations.\n    if _os.name == 'nt':\n        dirlist.extend([ _os.path.expanduser(r'~\\AppData\\Local\\Temp'),\n                         _os.path.expandvars(r'%SYSTEMROOT%\\Temp'),\n                         r'c:\\temp', r'c:\\tmp', r'\\temp', r'\\tmp' ])\n    else:\n        dirlist.extend([ '/tmp', '/var/tmp', '/usr/tmp' ])\n\n    # As a last resort, the current directory.\n    try:\n        dirlist.append(_os.getcwd())\n    except (AttributeError, OSError):\n        dirlist.append(_os.curdir)\n\n    return dirlist\n\ndef _get_default_tempdir():\n    \"\"\"Calculate the default directory to use for temporary files.\n    This routine should be called exactly once.\n\n    We determine whether or not a candidate temp dir is usable by\n    trying to create and write to a file in that directory.  If this\n    is successful, the test file is deleted.  To prevent denial of\n    service, the name of the test file must be randomized.\"\"\"\n\n    namer = _RandomNameSequence()\n    dirlist = _candidate_tempdir_list()\n\n    for dir in dirlist:\n        if dir != _os.curdir:\n            dir = _os.path.abspath(dir)\n        # Try only a few names per directory.\n        for seq in range(100):\n            name = next(namer)\n            filename = _os.path.join(dir, name)\n            try:\n                fd = _os.open(filename, _bin_openflags, 0o600)\n                try:\n                    try:\n                        with _io.open(fd, 'wb', closefd=False) as fp:\n                            fp.write(b'blat')\n                    finally:\n                        _os.close(fd)\n                finally:\n                    _os.unlink(filename)\n                return dir\n            except FileExistsError:\n                pass\n            except PermissionError:\n                # This exception is thrown when a directory with the chosen name\n                # already exists on windows.\n                if (_os.name == 'nt' and _os.path.isdir(dir) and\n                    _os.access(dir, _os.W_OK)):\n                    continue\n                break   # no point trying more names in this directory\n            except OSError:\n                break   # no point trying more names in this directory\n    raise FileNotFoundError(_errno.ENOENT,\n                            \"No usable temporary directory found in %s\" %\n                            dirlist)\n\n_name_sequence = None\n\ndef _get_candidate_names():\n    \"\"\"Common setup sequence for all user-callable interfaces.\"\"\"\n\n    global _name_sequence\n    if _name_sequence is None:\n        _once_lock.acquire()\n        try:\n            if _name_sequence is None:\n                _name_sequence = _RandomNameSequence()\n        finally:\n            _once_lock.release()\n    return _name_sequence\n\n\ndef _mkstemp_inner(dir, pre, suf, flags, output_type):\n    \"\"\"Code common to mkstemp, TemporaryFile, and NamedTemporaryFile.\"\"\"\n\n    names = _get_candidate_names()\n    if output_type is bytes:\n        names = map(_os.fsencode, names)\n\n    for seq in range(TMP_MAX):\n        name = next(names)\n        file = _os.path.join(dir, pre + name + suf)\n        _sys.audit(\"tempfile.mkstemp\", file)\n        try:\n            fd = _os.open(file, flags, 0o600)\n        except FileExistsError:\n            continue    # try again\n        except PermissionError:\n            # This exception is thrown when a directory with the chosen name\n            # already exists on windows.\n            if (_os.name == 'nt' and _os.path.isdir(dir) and\n                _os.access(dir, _os.W_OK)):\n                continue\n            else:\n                raise\n        return (fd, _os.path.abspath(file))\n\n    raise FileExistsError(_errno.EEXIST,\n                          \"No usable temporary file name found\")\n\n\n# User visible interfaces.\n\ndef gettempprefix():\n    \"\"\"The default prefix for temporary directories.\"\"\"\n    return template\n\ndef gettempprefixb():\n    \"\"\"The default prefix for temporary directories as bytes.\"\"\"\n    return _os.fsencode(gettempprefix())\n\ntempdir = None\n\ndef gettempdir():\n    \"\"\"Accessor for tempfile.tempdir.\"\"\"\n    global tempdir\n    if tempdir is None:\n        _once_lock.acquire()\n        try:\n            if tempdir is None:\n                tempdir = _get_default_tempdir()\n        finally:\n            _once_lock.release()\n    return tempdir\n\ndef gettempdirb():\n    \"\"\"A bytes version of tempfile.gettempdir().\"\"\"\n    return _os.fsencode(gettempdir())\n\ndef mkstemp(suffix=None, prefix=None, dir=None, text=False):\n    \"\"\"User-callable function to create and return a unique temporary\n    file.  The return value is a pair (fd, name) where fd is the\n    file descriptor returned by os.open, and name is the filename.\n\n    If 'suffix' is not None, the file name will end with that suffix,\n    otherwise there will be no suffix.\n\n    If 'prefix' is not None, the file name will begin with that prefix,\n    otherwise a default prefix is used.\n\n    If 'dir' is not None, the file will be created in that directory,\n    otherwise a default directory is used.\n\n    If 'text' is specified and true, the file is opened in text\n    mode.  Else (the default) the file is opened in binary mode.  On\n    some operating systems, this makes no difference.\n\n    If any of 'suffix', 'prefix' and 'dir' are not None, they must be the\n    same type.  If they are bytes, the returned name will be bytes; str\n    otherwise.\n\n    The file is readable and writable only by the creating user ID.\n    If the operating system uses permission bits to indicate whether a\n    file is executable, the file is executable by no one. The file\n    descriptor is not inherited by children of this process.\n\n    Caller is responsible for deleting the file when done with it.\n    \"\"\"\n\n    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)\n\n    if text:\n        flags = _text_openflags\n    else:\n        flags = _bin_openflags\n\n    return _mkstemp_inner(dir, prefix, suffix, flags, output_type)\n\n\ndef mkdtemp(suffix=None, prefix=None, dir=None):\n    \"\"\"User-callable function to create and return a unique temporary\n    directory.  The return value is the pathname of the directory.\n\n    Arguments are as for mkstemp, except that the 'text' argument is\n    not accepted.\n\n    The directory is readable, writable, and searchable only by the\n    creating user.\n\n    Caller is responsible for deleting the directory when done with it.\n    \"\"\"\n\n    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)\n\n    names = _get_candidate_names()\n    if output_type is bytes:\n        names = map(_os.fsencode, names)\n\n    for seq in range(TMP_MAX):\n        name = next(names)\n        file = _os.path.join(dir, prefix + name + suffix)\n        _sys.audit(\"tempfile.mkdtemp\", file)\n        try:\n            _os.mkdir(file, 0o700)\n        except FileExistsError:\n            continue    # try again\n        except PermissionError:\n            # This exception is thrown when a directory with the chosen name\n            # already exists on windows.\n            if (_os.name == 'nt' and _os.path.isdir(dir) and\n                _os.access(dir, _os.W_OK)):\n                continue\n            else:\n                raise\n        return file\n\n    raise FileExistsError(_errno.EEXIST,\n                          \"No usable temporary directory name found\")\n\ndef mktemp(suffix=\"\", prefix=template, dir=None):\n    \"\"\"User-callable function to return a unique temporary file name.  The\n    file is not created.\n\n    Arguments are similar to mkstemp, except that the 'text' argument is\n    not accepted, and suffix=None, prefix=None and bytes file names are not\n    supported.\n\n    THIS FUNCTION IS UNSAFE AND SHOULD NOT BE USED.  The file name may\n    refer to a file that did not exist at some point, but by the time\n    you get around to creating it, someone else may have beaten you to\n    the punch.\n    \"\"\"\n\n##    from warnings import warn as _warn\n##    _warn(\"mktemp is a potential security risk to your program\",\n##          RuntimeWarning, stacklevel=2)\n\n    if dir is None:\n        dir = gettempdir()\n\n    names = _get_candidate_names()\n    for seq in range(TMP_MAX):\n        name = next(names)\n        file = _os.path.join(dir, prefix + name + suffix)\n        if not _exists(file):\n            return file\n\n    raise FileExistsError(_errno.EEXIST,\n                          \"No usable temporary filename found\")\n\n\nclass _TemporaryFileCloser:\n    \"\"\"A separate object allowing proper closing of a temporary file's\n    underlying file object, without adding a __del__ method to the\n    temporary file.\"\"\"\n\n    file = None  # Set here since __del__ checks it\n    close_called = False\n\n    def __init__(self, file, name, delete=True):\n        self.file = file\n        self.name = name\n        self.delete = delete\n\n    # NT provides delete-on-close as a primitive, so we don't need\n    # the wrapper to do anything special.  We still use it so that\n    # file.name is useful (i.e. not \"(fdopen)\") with NamedTemporaryFile.\n    if _os.name != 'nt':\n        # Cache the unlinker so we don't get spurious errors at\n        # shutdown when the module-level \"os\" is None'd out.  Note\n        # that this must be referenced as self.unlink, because the\n        # name TemporaryFileWrapper may also get None'd out before\n        # __del__ is called.\n\n        def close(self, unlink=_os.unlink):\n            if not self.close_called and self.file is not None:\n                self.close_called = True\n                try:\n                    self.file.close()\n                finally:\n                    if self.delete:\n                        unlink(self.name)\n\n        # Need to ensure the file is deleted on __del__\n        def __del__(self):\n            self.close()\n\n    else:\n        def close(self):\n            if not self.close_called:\n                self.close_called = True\n                self.file.close()\n\n\nclass _TemporaryFileWrapper:\n    \"\"\"Temporary file wrapper\n\n    This class provides a wrapper around files opened for\n    temporary use.  In particular, it seeks to automatically\n    remove the file when it is no longer needed.\n    \"\"\"\n\n    def __init__(self, file, name, delete=True):\n        self.file = file\n        self.name = name\n        self.delete = delete\n        self._closer = _TemporaryFileCloser(file, name, delete)\n\n    def __getattr__(self, name):\n        # Attribute lookups are delegated to the underlying file\n        # and cached for non-numeric results\n        # (i.e. methods are cached, closed and friends are not)\n        file = self.__dict__['file']\n        a = getattr(file, name)\n        if hasattr(a, '__call__'):\n            func = a\n            @_functools.wraps(func)\n            def func_wrapper(*args, **kwargs):\n                return func(*args, **kwargs)\n            # Avoid closing the file as long as the wrapper is alive,\n            # see issue #18879.\n            func_wrapper._closer = self._closer\n            a = func_wrapper\n        if not isinstance(a, int):\n            setattr(self, name, a)\n        return a\n\n    # The underlying __enter__ method returns the wrong object\n    # (self.file) so override it to return the wrapper\n    def __enter__(self):\n        self.file.__enter__()\n        return self\n\n    # Need to trap __exit__ as well to ensure the file gets\n    # deleted when used in a with statement\n    def __exit__(self, exc, value, tb):\n        result = self.file.__exit__(exc, value, tb)\n        self.close()\n        return result\n\n    def close(self):\n        \"\"\"\n        Close the temporary file, possibly deleting it.\n        \"\"\"\n        self._closer.close()\n\n    # iter() doesn't use __getattr__ to find the __iter__ method\n    def __iter__(self):\n        # Don't return iter(self.file), but yield from it to avoid closing\n        # file as long as it's being used as iterator (see issue #23700).  We\n        # can't use 'yield from' here because iter(file) returns the file\n        # object itself, which has a close method, and thus the file would get\n        # closed when the generator is finalized, due to PEP380 semantics.\n        for line in self.file:\n            yield line\n\n\ndef NamedTemporaryFile(mode='w+b', buffering=-1, encoding=None,\n                       newline=None, suffix=None, prefix=None,\n                       dir=None, delete=True, *, errors=None):\n    \"\"\"Create and return a temporary file.\n    Arguments:\n    'prefix', 'suffix', 'dir' -- as for mkstemp.\n    'mode' -- the mode argument to io.open (default \"w+b\").\n    'buffering' -- the buffer size argument to io.open (default -1).\n    'encoding' -- the encoding argument to io.open (default None)\n    'newline' -- the newline argument to io.open (default None)\n    'delete' -- whether the file is deleted on close (default True).\n    'errors' -- the errors argument to io.open (default None)\n    The file is created as mkstemp() would do it.\n\n    Returns an object with a file-like interface; the name of the file\n    is accessible as its 'name' attribute.  The file will be automatically\n    deleted when it is closed unless the 'delete' argument is set to False.\n    \"\"\"\n\n    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)\n\n    flags = _bin_openflags\n\n    # Setting O_TEMPORARY in the flags causes the OS to delete\n    # the file when it is closed.  This is only supported by Windows.\n    if _os.name == 'nt' and delete:\n        flags |= _os.O_TEMPORARY\n\n    (fd, name) = _mkstemp_inner(dir, prefix, suffix, flags, output_type)\n    try:\n        file = _io.open(fd, mode, buffering=buffering,\n                        newline=newline, encoding=encoding, errors=errors)\n\n        return _TemporaryFileWrapper(file, name, delete)\n    except BaseException:\n        _os.unlink(name)\n        _os.close(fd)\n        raise\n\nif _os.name != 'posix' or _sys.platform == 'cygwin':\n    # On non-POSIX and Cygwin systems, assume that we cannot unlink a file\n    # while it is open.\n    TemporaryFile = NamedTemporaryFile\n\nelse:\n    # Is the O_TMPFILE flag available and does it work?\n    # The flag is set to False if os.open(dir, os.O_TMPFILE) raises an\n    # IsADirectoryError exception\n    _O_TMPFILE_WORKS = hasattr(_os, 'O_TMPFILE')\n\n    def TemporaryFile(mode='w+b', buffering=-1, encoding=None,\n                      newline=None, suffix=None, prefix=None,\n                      dir=None, *, errors=None):\n        \"\"\"Create and return a temporary file.\n        Arguments:\n        'prefix', 'suffix', 'dir' -- as for mkstemp.\n        'mode' -- the mode argument to io.open (default \"w+b\").\n        'buffering' -- the buffer size argument to io.open (default -1).\n        'encoding' -- the encoding argument to io.open (default None)\n        'newline' -- the newline argument to io.open (default None)\n        'errors' -- the errors argument to io.open (default None)\n        The file is created as mkstemp() would do it.\n\n        Returns an object with a file-like interface.  The file has no\n        name, and will cease to exist when it is closed.\n        \"\"\"\n        global _O_TMPFILE_WORKS\n\n        prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)\n\n        flags = _bin_openflags\n        if _O_TMPFILE_WORKS:\n            try:\n                flags2 = (flags | _os.O_TMPFILE) & ~_os.O_CREAT\n                fd = _os.open(dir, flags2, 0o600)\n            except IsADirectoryError:\n                # Linux kernel older than 3.11 ignores the O_TMPFILE flag:\n                # O_TMPFILE is read as O_DIRECTORY. Trying to open a directory\n                # with O_RDWR|O_DIRECTORY fails with IsADirectoryError, a\n                # directory cannot be open to write. Set flag to False to not\n                # try again.\n                _O_TMPFILE_WORKS = False\n            except OSError:\n                # The filesystem of the directory does not support O_TMPFILE.\n                # For example, OSError(95, 'Operation not supported').\n                #\n                # On Linux kernel older than 3.11, trying to open a regular\n                # file (or a symbolic link to a regular file) with O_TMPFILE\n                # fails with NotADirectoryError, because O_TMPFILE is read as\n                # O_DIRECTORY.\n                pass\n            else:\n                try:\n                    return _io.open(fd, mode, buffering=buffering,\n                                    newline=newline, encoding=encoding,\n                                    errors=errors)\n                except:\n                    _os.close(fd)\n                    raise\n            # Fallback to _mkstemp_inner().\n\n        (fd, name) = _mkstemp_inner(dir, prefix, suffix, flags, output_type)\n        try:\n            _os.unlink(name)\n            return _io.open(fd, mode, buffering=buffering,\n                            newline=newline, encoding=encoding, errors=errors)\n        except:\n            _os.close(fd)\n            raise\n\nclass SpooledTemporaryFile:\n    \"\"\"Temporary file wrapper, specialized to switch from BytesIO\n    or StringIO to a real file when it exceeds a certain size or\n    when a fileno is needed.\n    \"\"\"\n    _rolled = False\n\n    def __init__(self, max_size=0, mode='w+b', buffering=-1,\n                 encoding=None, newline=None,\n                 suffix=None, prefix=None, dir=None, *, errors=None):\n        if 'b' in mode:\n            self._file = _io.BytesIO()\n        else:\n            self._file = _io.TextIOWrapper(_io.BytesIO(),\n                            encoding=encoding, errors=errors,\n                            newline=newline)\n        self._max_size = max_size\n        self._rolled = False\n        self._TemporaryFileArgs = {'mode': mode, 'buffering': buffering,\n                                   'suffix': suffix, 'prefix': prefix,\n                                   'encoding': encoding, 'newline': newline,\n                                   'dir': dir, 'errors': errors}\n\n    def _check(self, file):\n        if self._rolled: return\n        max_size = self._max_size\n        if max_size and file.tell() > max_size:\n            self.rollover()\n\n    def rollover(self):\n        if self._rolled: return\n        file = self._file\n        newfile = self._file = TemporaryFile(**self._TemporaryFileArgs)\n        del self._TemporaryFileArgs\n\n        pos = file.tell()\n        if hasattr(newfile, 'buffer'):\n            newfile.buffer.write(file.detach().getvalue())\n        else:\n            newfile.write(file.getvalue())\n        newfile.seek(pos, 0)\n\n        self._rolled = True\n\n    # The method caching trick from NamedTemporaryFile\n    # won't work here, because _file may change from a\n    # BytesIO/StringIO instance to a real file. So we list\n    # all the methods directly.\n\n    # Context management protocol\n    def __enter__(self):\n        if self._file.closed:\n            raise ValueError(\"Cannot enter context with closed file\")\n        return self\n\n    def __exit__(self, exc, value, tb):\n        self._file.close()\n\n    # file protocol\n    def __iter__(self):\n        return self._file.__iter__()\n\n    def close(self):\n        self._file.close()\n\n    @property\n    def closed(self):\n        return self._file.closed\n\n    @property\n    def encoding(self):\n        return self._file.encoding\n\n    @property\n    def errors(self):\n        return self._file.errors\n\n    def fileno(self):\n        self.rollover()\n        return self._file.fileno()\n\n    def flush(self):\n        self._file.flush()\n\n    def isatty(self):\n        return self._file.isatty()\n\n    @property\n    def mode(self):\n        try:\n            return self._file.mode\n        except AttributeError:\n            return self._TemporaryFileArgs['mode']\n\n    @property\n    def name(self):\n        try:\n            return self._file.name\n        except AttributeError:\n            return None\n\n    @property\n    def newlines(self):\n        return self._file.newlines\n\n    def read(self, *args):\n        return self._file.read(*args)\n\n    def readline(self, *args):\n        return self._file.readline(*args)\n\n    def readlines(self, *args):\n        return self._file.readlines(*args)\n\n    def seek(self, *args):\n        return self._file.seek(*args)\n\n    @property\n    def softspace(self):\n        return self._file.softspace\n\n    def tell(self):\n        return self._file.tell()\n\n    def truncate(self, size=None):\n        if size is None:\n            self._file.truncate()\n        else:\n            if size > self._max_size:\n                self.rollover()\n            self._file.truncate(size)\n\n    def write(self, s):\n        file = self._file\n        rv = file.write(s)\n        self._check(file)\n        return rv\n\n    def writelines(self, iterable):\n        file = self._file\n        rv = file.writelines(iterable)\n        self._check(file)\n        return rv\n\n\nclass TemporaryDirectory(object):\n    \"\"\"Create and return a temporary directory.  This has the same\n    behavior as mkdtemp but can be used as a context manager.  For\n    example:\n\n        with TemporaryDirectory() as tmpdir:\n            ...\n\n    Upon exiting the context, the directory and everything contained\n    in it are removed.\n    \"\"\"\n\n    def __init__(self, suffix=None, prefix=None, dir=None):\n        self.name = mkdtemp(suffix, prefix, dir)\n        self._finalizer = _weakref.finalize(\n            self, self._cleanup, self.name,\n            warn_message=\"Implicitly cleaning up {!r}\".format(self))\n\n    @classmethod\n    def _rmtree(cls, name):\n        def onerror(func, path, exc_info):\n            if issubclass(exc_info[0], PermissionError):\n                def resetperms(path):\n                    try:\n                        _os.chflags(path, 0)\n                    except AttributeError:\n                        pass\n                    _os.chmod(path, 0o700)\n\n                try:\n                    if path != name:\n                        resetperms(_os.path.dirname(path))\n                    resetperms(path)\n\n                    try:\n                        _os.unlink(path)\n                    # PermissionError is raised on FreeBSD for directories\n                    except (IsADirectoryError, PermissionError):\n                        cls._rmtree(path)\n                except FileNotFoundError:\n                    pass\n            elif issubclass(exc_info[0], FileNotFoundError):\n                pass\n            else:\n                raise\n\n        _shutil.rmtree(name, onerror=onerror)\n\n    @classmethod\n    def _cleanup(cls, name, warn_message):\n        cls._rmtree(name)\n        _warnings.warn(warn_message, ResourceWarning)\n\n    def __repr__(self):\n        return \"<{} {!r}>\".format(self.__class__.__name__, self.name)\n\n    def __enter__(self):\n        return self.name\n\n    def __exit__(self, exc, value, tb):\n        self.cleanup()\n\n    def cleanup(self):\n        if self._finalizer.detach():\n            self._rmtree(self.name)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/textwrap.py",
    "content": "\"\"\"Text wrapping and filling.\n\"\"\"\n\n# Copyright (C) 1999-2001 Gregory P. Ward.\n# Copyright (C) 2002, 2003 Python Software Foundation.\n# Written by Greg Ward <gward@python.net>\n\nimport re\n\n__all__ = ['TextWrapper', 'wrap', 'fill', 'dedent', 'indent', 'shorten']\n\n# Hardcode the recognized whitespace characters to the US-ASCII\n# whitespace characters.  The main reason for doing this is that\n# some Unicode spaces (like \\u00a0) are non-breaking whitespaces.\n_whitespace = '\\t\\n\\x0b\\x0c\\r '\n\nclass TextWrapper:\n    \"\"\"\n    Object for wrapping/filling text.  The public interface consists of\n    the wrap() and fill() methods; the other methods are just there for\n    subclasses to override in order to tweak the default behaviour.\n    If you want to completely replace the main wrapping algorithm,\n    you'll probably have to override _wrap_chunks().\n\n    Several instance attributes control various aspects of wrapping:\n      width (default: 70)\n        the maximum width of wrapped lines (unless break_long_words\n        is false)\n      initial_indent (default: \"\")\n        string that will be prepended to the first line of wrapped\n        output.  Counts towards the line's width.\n      subsequent_indent (default: \"\")\n        string that will be prepended to all lines save the first\n        of wrapped output; also counts towards each line's width.\n      expand_tabs (default: true)\n        Expand tabs in input text to spaces before further processing.\n        Each tab will become 0 .. 'tabsize' spaces, depending on its position\n        in its line.  If false, each tab is treated as a single character.\n      tabsize (default: 8)\n        Expand tabs in input text to 0 .. 'tabsize' spaces, unless\n        'expand_tabs' is false.\n      replace_whitespace (default: true)\n        Replace all whitespace characters in the input text by spaces\n        after tab expansion.  Note that if expand_tabs is false and\n        replace_whitespace is true, every tab will be converted to a\n        single space!\n      fix_sentence_endings (default: false)\n        Ensure that sentence-ending punctuation is always followed\n        by two spaces.  Off by default because the algorithm is\n        (unavoidably) imperfect.\n      break_long_words (default: true)\n        Break words longer than 'width'.  If false, those words will not\n        be broken, and some lines might be longer than 'width'.\n      break_on_hyphens (default: true)\n        Allow breaking hyphenated words. If true, wrapping will occur\n        preferably on whitespaces and right after hyphens part of\n        compound words.\n      drop_whitespace (default: true)\n        Drop leading and trailing whitespace from lines.\n      max_lines (default: None)\n        Truncate wrapped lines.\n      placeholder (default: ' [...]')\n        Append to the last line of truncated text.\n    \"\"\"\n\n    unicode_whitespace_trans = {}\n    uspace = ord(' ')\n    for x in _whitespace:\n        unicode_whitespace_trans[ord(x)] = uspace\n\n    # This funky little regex is just the trick for splitting\n    # text up into word-wrappable chunks.  E.g.\n    #   \"Hello there -- you goof-ball, use the -b option!\"\n    # splits into\n    #   Hello/ /there/ /--/ /you/ /goof-/ball,/ /use/ /the/ /-b/ /option!\n    # (after stripping out empty strings).\n    word_punct = r'[\\w!\"\\'&.,?]'\n    letter = r'[^\\d\\W]'\n    whitespace = r'[%s]' % re.escape(_whitespace)\n    nowhitespace = '[^' + whitespace[1:]\n    wordsep_re = re.compile(r'''\n        ( # any whitespace\n          %(ws)s+\n        | # em-dash between words\n          (?<=%(wp)s) -{2,} (?=\\w)\n        | # word, possibly hyphenated\n          %(nws)s+? (?:\n            # hyphenated word\n              -(?: (?<=%(lt)s{2}-) | (?<=%(lt)s-%(lt)s-))\n              (?= %(lt)s -? %(lt)s)\n            | # end of word\n              (?=%(ws)s|\\Z)\n            | # em-dash\n              (?<=%(wp)s) (?=-{2,}\\w)\n            )\n        )''' % {'wp': word_punct, 'lt': letter,\n                'ws': whitespace, 'nws': nowhitespace},\n        re.VERBOSE)\n    del word_punct, letter, nowhitespace\n\n    # This less funky little regex just split on recognized spaces. E.g.\n    #   \"Hello there -- you goof-ball, use the -b option!\"\n    # splits into\n    #   Hello/ /there/ /--/ /you/ /goof-ball,/ /use/ /the/ /-b/ /option!/\n    wordsep_simple_re = re.compile(r'(%s+)' % whitespace)\n    del whitespace\n\n    # XXX this is not locale- or charset-aware -- string.lowercase\n    # is US-ASCII only (and therefore English-only)\n    sentence_end_re = re.compile(r'[a-z]'             # lowercase letter\n                                 r'[\\.\\!\\?]'          # sentence-ending punct.\n                                 r'[\\\"\\']?'           # optional end-of-quote\n                                 r'\\Z')               # end of chunk\n\n    def __init__(self,\n                 width=70,\n                 initial_indent=\"\",\n                 subsequent_indent=\"\",\n                 expand_tabs=True,\n                 replace_whitespace=True,\n                 fix_sentence_endings=False,\n                 break_long_words=True,\n                 drop_whitespace=True,\n                 break_on_hyphens=True,\n                 tabsize=8,\n                 *,\n                 max_lines=None,\n                 placeholder=' [...]'):\n        self.width = width\n        self.initial_indent = initial_indent\n        self.subsequent_indent = subsequent_indent\n        self.expand_tabs = expand_tabs\n        self.replace_whitespace = replace_whitespace\n        self.fix_sentence_endings = fix_sentence_endings\n        self.break_long_words = break_long_words\n        self.drop_whitespace = drop_whitespace\n        self.break_on_hyphens = break_on_hyphens\n        self.tabsize = tabsize\n        self.max_lines = max_lines\n        self.placeholder = placeholder\n\n\n    # -- Private methods -----------------------------------------------\n    # (possibly useful for subclasses to override)\n\n    def _munge_whitespace(self, text):\n        \"\"\"_munge_whitespace(text : string) -> string\n\n        Munge whitespace in text: expand tabs and convert all other\n        whitespace characters to spaces.  Eg. \" foo\\\\tbar\\\\n\\\\nbaz\"\n        becomes \" foo    bar  baz\".\n        \"\"\"\n        if self.expand_tabs:\n            text = text.expandtabs(self.tabsize)\n        if self.replace_whitespace:\n            text = text.translate(self.unicode_whitespace_trans)\n        return text\n\n\n    def _split(self, text):\n        \"\"\"_split(text : string) -> [string]\n\n        Split the text to wrap into indivisible chunks.  Chunks are\n        not quite the same as words; see _wrap_chunks() for full\n        details.  As an example, the text\n          Look, goof-ball -- use the -b option!\n        breaks into the following chunks:\n          'Look,', ' ', 'goof-', 'ball', ' ', '--', ' ',\n          'use', ' ', 'the', ' ', '-b', ' ', 'option!'\n        if break_on_hyphens is True, or in:\n          'Look,', ' ', 'goof-ball', ' ', '--', ' ',\n          'use', ' ', 'the', ' ', '-b', ' ', option!'\n        otherwise.\n        \"\"\"\n        if self.break_on_hyphens is True:\n            chunks = self.wordsep_re.split(text)\n        else:\n            chunks = self.wordsep_simple_re.split(text)\n        chunks = [c for c in chunks if c]\n        return chunks\n\n    def _fix_sentence_endings(self, chunks):\n        \"\"\"_fix_sentence_endings(chunks : [string])\n\n        Correct for sentence endings buried in 'chunks'.  Eg. when the\n        original text contains \"... foo.\\\\nBar ...\", munge_whitespace()\n        and split() will convert that to [..., \"foo.\", \" \", \"Bar\", ...]\n        which has one too few spaces; this method simply changes the one\n        space to two.\n        \"\"\"\n        i = 0\n        patsearch = self.sentence_end_re.search\n        while i < len(chunks)-1:\n            if chunks[i+1] == \" \" and patsearch(chunks[i]):\n                chunks[i+1] = \"  \"\n                i += 2\n            else:\n                i += 1\n\n    def _handle_long_word(self, reversed_chunks, cur_line, cur_len, width):\n        \"\"\"_handle_long_word(chunks : [string],\n                             cur_line : [string],\n                             cur_len : int, width : int)\n\n        Handle a chunk of text (most likely a word, not whitespace) that\n        is too long to fit in any line.\n        \"\"\"\n        # Figure out when indent is larger than the specified width, and make\n        # sure at least one character is stripped off on every pass\n        if width < 1:\n            space_left = 1\n        else:\n            space_left = width - cur_len\n\n        # If we're allowed to break long words, then do so: put as much\n        # of the next chunk onto the current line as will fit.\n        if self.break_long_words:\n            cur_line.append(reversed_chunks[-1][:space_left])\n            reversed_chunks[-1] = reversed_chunks[-1][space_left:]\n\n        # Otherwise, we have to preserve the long word intact.  Only add\n        # it to the current line if there's nothing already there --\n        # that minimizes how much we violate the width constraint.\n        elif not cur_line:\n            cur_line.append(reversed_chunks.pop())\n\n        # If we're not allowed to break long words, and there's already\n        # text on the current line, do nothing.  Next time through the\n        # main loop of _wrap_chunks(), we'll wind up here again, but\n        # cur_len will be zero, so the next line will be entirely\n        # devoted to the long word that we can't handle right now.\n\n    def _wrap_chunks(self, chunks):\n        \"\"\"_wrap_chunks(chunks : [string]) -> [string]\n\n        Wrap a sequence of text chunks and return a list of lines of\n        length 'self.width' or less.  (If 'break_long_words' is false,\n        some lines may be longer than this.)  Chunks correspond roughly\n        to words and the whitespace between them: each chunk is\n        indivisible (modulo 'break_long_words'), but a line break can\n        come between any two chunks.  Chunks should not have internal\n        whitespace; ie. a chunk is either all whitespace or a \"word\".\n        Whitespace chunks will be removed from the beginning and end of\n        lines, but apart from that whitespace is preserved.\n        \"\"\"\n        lines = []\n        if self.width <= 0:\n            raise ValueError(\"invalid width %r (must be > 0)\" % self.width)\n        if self.max_lines is not None:\n            if self.max_lines > 1:\n                indent = self.subsequent_indent\n            else:\n                indent = self.initial_indent\n            if len(indent) + len(self.placeholder.lstrip()) > self.width:\n                raise ValueError(\"placeholder too large for max width\")\n\n        # Arrange in reverse order so items can be efficiently popped\n        # from a stack of chucks.\n        chunks.reverse()\n\n        while chunks:\n\n            # Start the list of chunks that will make up the current line.\n            # cur_len is just the length of all the chunks in cur_line.\n            cur_line = []\n            cur_len = 0\n\n            # Figure out which static string will prefix this line.\n            if lines:\n                indent = self.subsequent_indent\n            else:\n                indent = self.initial_indent\n\n            # Maximum width for this line.\n            width = self.width - len(indent)\n\n            # First chunk on line is whitespace -- drop it, unless this\n            # is the very beginning of the text (ie. no lines started yet).\n            if self.drop_whitespace and chunks[-1].strip() == '' and lines:\n                del chunks[-1]\n\n            while chunks:\n                l = len(chunks[-1])\n\n                # Can at least squeeze this chunk onto the current line.\n                if cur_len + l <= width:\n                    cur_line.append(chunks.pop())\n                    cur_len += l\n\n                # Nope, this line is full.\n                else:\n                    break\n\n            # The current line is full, and the next chunk is too big to\n            # fit on *any* line (not just this one).\n            if chunks and len(chunks[-1]) > width:\n                self._handle_long_word(chunks, cur_line, cur_len, width)\n                cur_len = sum(map(len, cur_line))\n\n            # If the last chunk on this line is all whitespace, drop it.\n            if self.drop_whitespace and cur_line and cur_line[-1].strip() == '':\n                cur_len -= len(cur_line[-1])\n                del cur_line[-1]\n\n            if cur_line:\n                if (self.max_lines is None or\n                    len(lines) + 1 < self.max_lines or\n                    (not chunks or\n                     self.drop_whitespace and\n                     len(chunks) == 1 and\n                     not chunks[0].strip()) and cur_len <= width):\n                    # Convert current line back to a string and store it in\n                    # list of all lines (return value).\n                    lines.append(indent + ''.join(cur_line))\n                else:\n                    while cur_line:\n                        if (cur_line[-1].strip() and\n                            cur_len + len(self.placeholder) <= width):\n                            cur_line.append(self.placeholder)\n                            lines.append(indent + ''.join(cur_line))\n                            break\n                        cur_len -= len(cur_line[-1])\n                        del cur_line[-1]\n                    else:\n                        if lines:\n                            prev_line = lines[-1].rstrip()\n                            if (len(prev_line) + len(self.placeholder) <=\n                                    self.width):\n                                lines[-1] = prev_line + self.placeholder\n                                break\n                        lines.append(indent + self.placeholder.lstrip())\n                    break\n\n        return lines\n\n    def _split_chunks(self, text):\n        text = self._munge_whitespace(text)\n        return self._split(text)\n\n    # -- Public interface ----------------------------------------------\n\n    def wrap(self, text):\n        \"\"\"wrap(text : string) -> [string]\n\n        Reformat the single paragraph in 'text' so it fits in lines of\n        no more than 'self.width' columns, and return a list of wrapped\n        lines.  Tabs in 'text' are expanded with string.expandtabs(),\n        and all other whitespace characters (including newline) are\n        converted to space.\n        \"\"\"\n        chunks = self._split_chunks(text)\n        if self.fix_sentence_endings:\n            self._fix_sentence_endings(chunks)\n        return self._wrap_chunks(chunks)\n\n    def fill(self, text):\n        \"\"\"fill(text : string) -> string\n\n        Reformat the single paragraph in 'text' to fit in lines of no\n        more than 'self.width' columns, and return a new string\n        containing the entire wrapped paragraph.\n        \"\"\"\n        return \"\\n\".join(self.wrap(text))\n\n\n# -- Convenience interface ---------------------------------------------\n\ndef wrap(text, width=70, **kwargs):\n    \"\"\"Wrap a single paragraph of text, returning a list of wrapped lines.\n\n    Reformat the single paragraph in 'text' so it fits in lines of no\n    more than 'width' columns, and return a list of wrapped lines.  By\n    default, tabs in 'text' are expanded with string.expandtabs(), and\n    all other whitespace characters (including newline) are converted to\n    space.  See TextWrapper class for available keyword args to customize\n    wrapping behaviour.\n    \"\"\"\n    w = TextWrapper(width=width, **kwargs)\n    return w.wrap(text)\n\ndef fill(text, width=70, **kwargs):\n    \"\"\"Fill a single paragraph of text, returning a new string.\n\n    Reformat the single paragraph in 'text' to fit in lines of no more\n    than 'width' columns, and return a new string containing the entire\n    wrapped paragraph.  As with wrap(), tabs are expanded and other\n    whitespace characters converted to space.  See TextWrapper class for\n    available keyword args to customize wrapping behaviour.\n    \"\"\"\n    w = TextWrapper(width=width, **kwargs)\n    return w.fill(text)\n\ndef shorten(text, width, **kwargs):\n    \"\"\"Collapse and truncate the given text to fit in the given width.\n\n    The text first has its whitespace collapsed.  If it then fits in\n    the *width*, it is returned as is.  Otherwise, as many words\n    as possible are joined and then the placeholder is appended::\n\n        >>> textwrap.shorten(\"Hello  world!\", width=12)\n        'Hello world!'\n        >>> textwrap.shorten(\"Hello  world!\", width=11)\n        'Hello [...]'\n    \"\"\"\n    w = TextWrapper(width=width, max_lines=1, **kwargs)\n    return w.fill(' '.join(text.strip().split()))\n\n\n# -- Loosely related functionality -------------------------------------\n\n_whitespace_only_re = re.compile('^[ \\t]+$', re.MULTILINE)\n_leading_whitespace_re = re.compile('(^[ \\t]*)(?:[^ \\t\\n])', re.MULTILINE)\n\ndef dedent(text):\n    \"\"\"Remove any common leading whitespace from every line in `text`.\n\n    This can be used to make triple-quoted strings line up with the left\n    edge of the display, while still presenting them in the source code\n    in indented form.\n\n    Note that tabs and spaces are both treated as whitespace, but they\n    are not equal: the lines \"  hello\" and \"\\\\thello\" are\n    considered to have no common leading whitespace.\n\n    Entirely blank lines are normalized to a newline character.\n    \"\"\"\n    # Look for the longest leading string of spaces and tabs common to\n    # all lines.\n    margin = None\n    text = _whitespace_only_re.sub('', text)\n    indents = _leading_whitespace_re.findall(text)\n    for indent in indents:\n        if margin is None:\n            margin = indent\n\n        # Current line more deeply indented than previous winner:\n        # no change (previous winner is still on top).\n        elif indent.startswith(margin):\n            pass\n\n        # Current line consistent with and no deeper than previous winner:\n        # it's the new winner.\n        elif margin.startswith(indent):\n            margin = indent\n\n        # Find the largest common whitespace between current line and previous\n        # winner.\n        else:\n            for i, (x, y) in enumerate(zip(margin, indent)):\n                if x != y:\n                    margin = margin[:i]\n                    break\n\n    # sanity check (testing/debugging only)\n    if 0 and margin:\n        for line in text.split(\"\\n\"):\n            assert not line or line.startswith(margin), \\\n                   \"line = %r, margin = %r\" % (line, margin)\n\n    if margin:\n        text = re.sub(r'(?m)^' + margin, '', text)\n    return text\n\n\ndef indent(text, prefix, predicate=None):\n    \"\"\"Adds 'prefix' to the beginning of selected lines in 'text'.\n\n    If 'predicate' is provided, 'prefix' will only be added to the lines\n    where 'predicate(line)' is True. If 'predicate' is not provided,\n    it will default to adding 'prefix' to all non-empty lines that do not\n    consist solely of whitespace characters.\n    \"\"\"\n    if predicate is None:\n        def predicate(line):\n            return line.strip()\n\n    def prefixed_lines():\n        for line in text.splitlines(True):\n            yield (prefix + line if predicate(line) else line)\n    return ''.join(prefixed_lines())\n\n\nif __name__ == \"__main__\":\n    #print dedent(\"\\tfoo\\n\\tbar\")\n    #print dedent(\"  \\thello there\\n  \\t  how are you?\")\n    print(dedent(\"Hello there.\\n  This is indented.\"))\n"
  },
  {
    "path": "rd/usr/lib/python3.8/this.py",
    "content": "s = \"\"\"Gur Mra bs Clguba, ol Gvz Crgref\n\nOrnhgvshy vf orggre guna htyl.\nRkcyvpvg vf orggre guna vzcyvpvg.\nFvzcyr vf orggre guna pbzcyrk.\nPbzcyrk vf orggre guna pbzcyvpngrq.\nSyng vf orggre guna arfgrq.\nFcnefr vf orggre guna qrafr.\nErnqnovyvgl pbhagf.\nFcrpvny pnfrf nera'g fcrpvny rabhtu gb oernx gur ehyrf.\nNygubhtu cenpgvpnyvgl orngf chevgl.\nReebef fubhyq arire cnff fvyragyl.\nHayrff rkcyvpvgyl fvyraprq.\nVa gur snpr bs nzovthvgl, ershfr gur grzcgngvba gb thrff.\nGurer fubhyq or bar-- naq cersrenoyl bayl bar --boivbhf jnl gb qb vg.\nNygubhtu gung jnl znl abg or boivbhf ng svefg hayrff lbh'er Qhgpu.\nAbj vf orggre guna arire.\nNygubhtu arire vf bsgra orggre guna *evtug* abj.\nVs gur vzcyrzragngvba vf uneq gb rkcynva, vg'f n onq vqrn.\nVs gur vzcyrzragngvba vf rnfl gb rkcynva, vg znl or n tbbq vqrn.\nAnzrfcnprf ner bar ubaxvat terng vqrn -- yrg'f qb zber bs gubfr!\"\"\"\n\nd = {}\nfor c in (65, 97):\n    for i in range(26):\n        d[chr(i+c)] = chr((i+13) % 26 + c)\n\nprint(\"\".join([d.get(c, c) for c in s]))\n"
  },
  {
    "path": "rd/usr/lib/python3.8/threading.py",
    "content": "\"\"\"Thread module emulating a subset of Java's threading model.\"\"\"\n\nimport os as _os\nimport sys as _sys\nimport _thread\n\nfrom time import monotonic as _time\nfrom _weakrefset import WeakSet\nfrom itertools import islice as _islice, count as _count\ntry:\n    from _collections import deque as _deque\nexcept ImportError:\n    from collections import deque as _deque\n\n# Note regarding PEP 8 compliant names\n#  This threading model was originally inspired by Java, and inherited\n# the convention of camelCase function and method names from that\n# language. Those original names are not in any imminent danger of\n# being deprecated (even for Py3k),so this module provides them as an\n# alias for the PEP 8 compliant names\n# Note that using the new PEP 8 compliant names facilitates substitution\n# with the multiprocessing module, which doesn't provide the old\n# Java inspired names.\n\n__all__ = ['get_ident', 'active_count', 'Condition', 'current_thread',\n           'enumerate', 'main_thread', 'TIMEOUT_MAX',\n           'Event', 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread',\n           'Barrier', 'BrokenBarrierError', 'Timer', 'ThreadError',\n           'setprofile', 'settrace', 'local', 'stack_size',\n           'excepthook', 'ExceptHookArgs']\n\n# Rename some stuff so \"from threading import *\" is safe\n_start_new_thread = _thread.start_new_thread\n_allocate_lock = _thread.allocate_lock\n_set_sentinel = _thread._set_sentinel\nget_ident = _thread.get_ident\ntry:\n    get_native_id = _thread.get_native_id\n    _HAVE_THREAD_NATIVE_ID = True\n    __all__.append('get_native_id')\nexcept AttributeError:\n    _HAVE_THREAD_NATIVE_ID = False\nThreadError = _thread.error\ntry:\n    _CRLock = _thread.RLock\nexcept AttributeError:\n    _CRLock = None\nTIMEOUT_MAX = _thread.TIMEOUT_MAX\ndel _thread\n\n\n# Support for profile and trace hooks\n\n_profile_hook = None\n_trace_hook = None\n\ndef setprofile(func):\n    \"\"\"Set a profile function for all threads started from the threading module.\n\n    The func will be passed to sys.setprofile() for each thread, before its\n    run() method is called.\n\n    \"\"\"\n    global _profile_hook\n    _profile_hook = func\n\ndef settrace(func):\n    \"\"\"Set a trace function for all threads started from the threading module.\n\n    The func will be passed to sys.settrace() for each thread, before its run()\n    method is called.\n\n    \"\"\"\n    global _trace_hook\n    _trace_hook = func\n\n# Synchronization classes\n\nLock = _allocate_lock\n\ndef RLock(*args, **kwargs):\n    \"\"\"Factory function that returns a new reentrant lock.\n\n    A reentrant lock must be released by the thread that acquired it. Once a\n    thread has acquired a reentrant lock, the same thread may acquire it again\n    without blocking; the thread must release it once for each time it has\n    acquired it.\n\n    \"\"\"\n    if _CRLock is None:\n        return _PyRLock(*args, **kwargs)\n    return _CRLock(*args, **kwargs)\n\nclass _RLock:\n    \"\"\"This class implements reentrant lock objects.\n\n    A reentrant lock must be released by the thread that acquired it. Once a\n    thread has acquired a reentrant lock, the same thread may acquire it\n    again without blocking; the thread must release it once for each time it\n    has acquired it.\n\n    \"\"\"\n\n    def __init__(self):\n        self._block = _allocate_lock()\n        self._owner = None\n        self._count = 0\n\n    def __repr__(self):\n        owner = self._owner\n        try:\n            owner = _active[owner].name\n        except KeyError:\n            pass\n        return \"<%s %s.%s object owner=%r count=%d at %s>\" % (\n            \"locked\" if self._block.locked() else \"unlocked\",\n            self.__class__.__module__,\n            self.__class__.__qualname__,\n            owner,\n            self._count,\n            hex(id(self))\n        )\n\n    def acquire(self, blocking=True, timeout=-1):\n        \"\"\"Acquire a lock, blocking or non-blocking.\n\n        When invoked without arguments: if this thread already owns the lock,\n        increment the recursion level by one, and return immediately. Otherwise,\n        if another thread owns the lock, block until the lock is unlocked. Once\n        the lock is unlocked (not owned by any thread), then grab ownership, set\n        the recursion level to one, and return. If more than one thread is\n        blocked waiting until the lock is unlocked, only one at a time will be\n        able to grab ownership of the lock. There is no return value in this\n        case.\n\n        When invoked with the blocking argument set to true, do the same thing\n        as when called without arguments, and return true.\n\n        When invoked with the blocking argument set to false, do not block. If a\n        call without an argument would block, return false immediately;\n        otherwise, do the same thing as when called without arguments, and\n        return true.\n\n        When invoked with the floating-point timeout argument set to a positive\n        value, block for at most the number of seconds specified by timeout\n        and as long as the lock cannot be acquired.  Return true if the lock has\n        been acquired, false if the timeout has elapsed.\n\n        \"\"\"\n        me = get_ident()\n        if self._owner == me:\n            self._count += 1\n            return 1\n        rc = self._block.acquire(blocking, timeout)\n        if rc:\n            self._owner = me\n            self._count = 1\n        return rc\n\n    __enter__ = acquire\n\n    def release(self):\n        \"\"\"Release a lock, decrementing the recursion level.\n\n        If after the decrement it is zero, reset the lock to unlocked (not owned\n        by any thread), and if any other threads are blocked waiting for the\n        lock to become unlocked, allow exactly one of them to proceed. If after\n        the decrement the recursion level is still nonzero, the lock remains\n        locked and owned by the calling thread.\n\n        Only call this method when the calling thread owns the lock. A\n        RuntimeError is raised if this method is called when the lock is\n        unlocked.\n\n        There is no return value.\n\n        \"\"\"\n        if self._owner != get_ident():\n            raise RuntimeError(\"cannot release un-acquired lock\")\n        self._count = count = self._count - 1\n        if not count:\n            self._owner = None\n            self._block.release()\n\n    def __exit__(self, t, v, tb):\n        self.release()\n\n    # Internal methods used by condition variables\n\n    def _acquire_restore(self, state):\n        self._block.acquire()\n        self._count, self._owner = state\n\n    def _release_save(self):\n        if self._count == 0:\n            raise RuntimeError(\"cannot release un-acquired lock\")\n        count = self._count\n        self._count = 0\n        owner = self._owner\n        self._owner = None\n        self._block.release()\n        return (count, owner)\n\n    def _is_owned(self):\n        return self._owner == get_ident()\n\n_PyRLock = _RLock\n\n\nclass Condition:\n    \"\"\"Class that implements a condition variable.\n\n    A condition variable allows one or more threads to wait until they are\n    notified by another thread.\n\n    If the lock argument is given and not None, it must be a Lock or RLock\n    object, and it is used as the underlying lock. Otherwise, a new RLock object\n    is created and used as the underlying lock.\n\n    \"\"\"\n\n    def __init__(self, lock=None):\n        if lock is None:\n            lock = RLock()\n        self._lock = lock\n        # Export the lock's acquire() and release() methods\n        self.acquire = lock.acquire\n        self.release = lock.release\n        # If the lock defines _release_save() and/or _acquire_restore(),\n        # these override the default implementations (which just call\n        # release() and acquire() on the lock).  Ditto for _is_owned().\n        try:\n            self._release_save = lock._release_save\n        except AttributeError:\n            pass\n        try:\n            self._acquire_restore = lock._acquire_restore\n        except AttributeError:\n            pass\n        try:\n            self._is_owned = lock._is_owned\n        except AttributeError:\n            pass\n        self._waiters = _deque()\n\n    def __enter__(self):\n        return self._lock.__enter__()\n\n    def __exit__(self, *args):\n        return self._lock.__exit__(*args)\n\n    def __repr__(self):\n        return \"<Condition(%s, %d)>\" % (self._lock, len(self._waiters))\n\n    def _release_save(self):\n        self._lock.release()           # No state to save\n\n    def _acquire_restore(self, x):\n        self._lock.acquire()           # Ignore saved state\n\n    def _is_owned(self):\n        # Return True if lock is owned by current_thread.\n        # This method is called only if _lock doesn't have _is_owned().\n        if self._lock.acquire(0):\n            self._lock.release()\n            return False\n        else:\n            return True\n\n    def wait(self, timeout=None):\n        \"\"\"Wait until notified or until a timeout occurs.\n\n        If the calling thread has not acquired the lock when this method is\n        called, a RuntimeError is raised.\n\n        This method releases the underlying lock, and then blocks until it is\n        awakened by a notify() or notify_all() call for the same condition\n        variable in another thread, or until the optional timeout occurs. Once\n        awakened or timed out, it re-acquires the lock and returns.\n\n        When the timeout argument is present and not None, it should be a\n        floating point number specifying a timeout for the operation in seconds\n        (or fractions thereof).\n\n        When the underlying lock is an RLock, it is not released using its\n        release() method, since this may not actually unlock the lock when it\n        was acquired multiple times recursively. Instead, an internal interface\n        of the RLock class is used, which really unlocks it even when it has\n        been recursively acquired several times. Another internal interface is\n        then used to restore the recursion level when the lock is reacquired.\n\n        \"\"\"\n        if not self._is_owned():\n            raise RuntimeError(\"cannot wait on un-acquired lock\")\n        waiter = _allocate_lock()\n        waiter.acquire()\n        self._waiters.append(waiter)\n        saved_state = self._release_save()\n        gotit = False\n        try:    # restore state no matter what (e.g., KeyboardInterrupt)\n            if timeout is None:\n                waiter.acquire()\n                gotit = True\n            else:\n                if timeout > 0:\n                    gotit = waiter.acquire(True, timeout)\n                else:\n                    gotit = waiter.acquire(False)\n            return gotit\n        finally:\n            self._acquire_restore(saved_state)\n            if not gotit:\n                try:\n                    self._waiters.remove(waiter)\n                except ValueError:\n                    pass\n\n    def wait_for(self, predicate, timeout=None):\n        \"\"\"Wait until a condition evaluates to True.\n\n        predicate should be a callable which result will be interpreted as a\n        boolean value.  A timeout may be provided giving the maximum time to\n        wait.\n\n        \"\"\"\n        endtime = None\n        waittime = timeout\n        result = predicate()\n        while not result:\n            if waittime is not None:\n                if endtime is None:\n                    endtime = _time() + waittime\n                else:\n                    waittime = endtime - _time()\n                    if waittime <= 0:\n                        break\n            self.wait(waittime)\n            result = predicate()\n        return result\n\n    def notify(self, n=1):\n        \"\"\"Wake up one or more threads waiting on this condition, if any.\n\n        If the calling thread has not acquired the lock when this method is\n        called, a RuntimeError is raised.\n\n        This method wakes up at most n of the threads waiting for the condition\n        variable; it is a no-op if no threads are waiting.\n\n        \"\"\"\n        if not self._is_owned():\n            raise RuntimeError(\"cannot notify on un-acquired lock\")\n        all_waiters = self._waiters\n        waiters_to_notify = _deque(_islice(all_waiters, n))\n        if not waiters_to_notify:\n            return\n        for waiter in waiters_to_notify:\n            waiter.release()\n            try:\n                all_waiters.remove(waiter)\n            except ValueError:\n                pass\n\n    def notify_all(self):\n        \"\"\"Wake up all threads waiting on this condition.\n\n        If the calling thread has not acquired the lock when this method\n        is called, a RuntimeError is raised.\n\n        \"\"\"\n        self.notify(len(self._waiters))\n\n    notifyAll = notify_all\n\n\nclass Semaphore:\n    \"\"\"This class implements semaphore objects.\n\n    Semaphores manage a counter representing the number of release() calls minus\n    the number of acquire() calls, plus an initial value. The acquire() method\n    blocks if necessary until it can return without making the counter\n    negative. If not given, value defaults to 1.\n\n    \"\"\"\n\n    # After Tim Peters' semaphore class, but not quite the same (no maximum)\n\n    def __init__(self, value=1):\n        if value < 0:\n            raise ValueError(\"semaphore initial value must be >= 0\")\n        self._cond = Condition(Lock())\n        self._value = value\n\n    def acquire(self, blocking=True, timeout=None):\n        \"\"\"Acquire a semaphore, decrementing the internal counter by one.\n\n        When invoked without arguments: if the internal counter is larger than\n        zero on entry, decrement it by one and return immediately. If it is zero\n        on entry, block, waiting until some other thread has called release() to\n        make it larger than zero. This is done with proper interlocking so that\n        if multiple acquire() calls are blocked, release() will wake exactly one\n        of them up. The implementation may pick one at random, so the order in\n        which blocked threads are awakened should not be relied on. There is no\n        return value in this case.\n\n        When invoked with blocking set to true, do the same thing as when called\n        without arguments, and return true.\n\n        When invoked with blocking set to false, do not block. If a call without\n        an argument would block, return false immediately; otherwise, do the\n        same thing as when called without arguments, and return true.\n\n        When invoked with a timeout other than None, it will block for at\n        most timeout seconds.  If acquire does not complete successfully in\n        that interval, return false.  Return true otherwise.\n\n        \"\"\"\n        if not blocking and timeout is not None:\n            raise ValueError(\"can't specify timeout for non-blocking acquire\")\n        rc = False\n        endtime = None\n        with self._cond:\n            while self._value == 0:\n                if not blocking:\n                    break\n                if timeout is not None:\n                    if endtime is None:\n                        endtime = _time() + timeout\n                    else:\n                        timeout = endtime - _time()\n                        if timeout <= 0:\n                            break\n                self._cond.wait(timeout)\n            else:\n                self._value -= 1\n                rc = True\n        return rc\n\n    __enter__ = acquire\n\n    def release(self):\n        \"\"\"Release a semaphore, incrementing the internal counter by one.\n\n        When the counter is zero on entry and another thread is waiting for it\n        to become larger than zero again, wake up that thread.\n\n        \"\"\"\n        with self._cond:\n            self._value += 1\n            self._cond.notify()\n\n    def __exit__(self, t, v, tb):\n        self.release()\n\n\nclass BoundedSemaphore(Semaphore):\n    \"\"\"Implements a bounded semaphore.\n\n    A bounded semaphore checks to make sure its current value doesn't exceed its\n    initial value. If it does, ValueError is raised. In most situations\n    semaphores are used to guard resources with limited capacity.\n\n    If the semaphore is released too many times it's a sign of a bug. If not\n    given, value defaults to 1.\n\n    Like regular semaphores, bounded semaphores manage a counter representing\n    the number of release() calls minus the number of acquire() calls, plus an\n    initial value. The acquire() method blocks if necessary until it can return\n    without making the counter negative. If not given, value defaults to 1.\n\n    \"\"\"\n\n    def __init__(self, value=1):\n        Semaphore.__init__(self, value)\n        self._initial_value = value\n\n    def release(self):\n        \"\"\"Release a semaphore, incrementing the internal counter by one.\n\n        When the counter is zero on entry and another thread is waiting for it\n        to become larger than zero again, wake up that thread.\n\n        If the number of releases exceeds the number of acquires,\n        raise a ValueError.\n\n        \"\"\"\n        with self._cond:\n            if self._value >= self._initial_value:\n                raise ValueError(\"Semaphore released too many times\")\n            self._value += 1\n            self._cond.notify()\n\n\nclass Event:\n    \"\"\"Class implementing event objects.\n\n    Events manage a flag that can be set to true with the set() method and reset\n    to false with the clear() method. The wait() method blocks until the flag is\n    true.  The flag is initially false.\n\n    \"\"\"\n\n    # After Tim Peters' event class (without is_posted())\n\n    def __init__(self):\n        self._cond = Condition(Lock())\n        self._flag = False\n\n    def _reset_internal_locks(self):\n        # private!  called by Thread._reset_internal_locks by _after_fork()\n        self._cond.__init__(Lock())\n\n    def is_set(self):\n        \"\"\"Return true if and only if the internal flag is true.\"\"\"\n        return self._flag\n\n    isSet = is_set\n\n    def set(self):\n        \"\"\"Set the internal flag to true.\n\n        All threads waiting for it to become true are awakened. Threads\n        that call wait() once the flag is true will not block at all.\n\n        \"\"\"\n        with self._cond:\n            self._flag = True\n            self._cond.notify_all()\n\n    def clear(self):\n        \"\"\"Reset the internal flag to false.\n\n        Subsequently, threads calling wait() will block until set() is called to\n        set the internal flag to true again.\n\n        \"\"\"\n        with self._cond:\n            self._flag = False\n\n    def wait(self, timeout=None):\n        \"\"\"Block until the internal flag is true.\n\n        If the internal flag is true on entry, return immediately. Otherwise,\n        block until another thread calls set() to set the flag to true, or until\n        the optional timeout occurs.\n\n        When the timeout argument is present and not None, it should be a\n        floating point number specifying a timeout for the operation in seconds\n        (or fractions thereof).\n\n        This method returns the internal flag on exit, so it will always return\n        True except if a timeout is given and the operation times out.\n\n        \"\"\"\n        with self._cond:\n            signaled = self._flag\n            if not signaled:\n                signaled = self._cond.wait(timeout)\n            return signaled\n\n\n# A barrier class.  Inspired in part by the pthread_barrier_* api and\n# the CyclicBarrier class from Java.  See\n# http://sourceware.org/pthreads-win32/manual/pthread_barrier_init.html and\n# http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/\n#        CyclicBarrier.html\n# for information.\n# We maintain two main states, 'filling' and 'draining' enabling the barrier\n# to be cyclic.  Threads are not allowed into it until it has fully drained\n# since the previous cycle.  In addition, a 'resetting' state exists which is\n# similar to 'draining' except that threads leave with a BrokenBarrierError,\n# and a 'broken' state in which all threads get the exception.\nclass Barrier:\n    \"\"\"Implements a Barrier.\n\n    Useful for synchronizing a fixed number of threads at known synchronization\n    points.  Threads block on 'wait()' and are simultaneously awoken once they\n    have all made that call.\n\n    \"\"\"\n\n    def __init__(self, parties, action=None, timeout=None):\n        \"\"\"Create a barrier, initialised to 'parties' threads.\n\n        'action' is a callable which, when supplied, will be called by one of\n        the threads after they have all entered the barrier and just prior to\n        releasing them all. If a 'timeout' is provided, it is used as the\n        default for all subsequent 'wait()' calls.\n\n        \"\"\"\n        self._cond = Condition(Lock())\n        self._action = action\n        self._timeout = timeout\n        self._parties = parties\n        self._state = 0 #0 filling, 1, draining, -1 resetting, -2 broken\n        self._count = 0\n\n    def wait(self, timeout=None):\n        \"\"\"Wait for the barrier.\n\n        When the specified number of threads have started waiting, they are all\n        simultaneously awoken. If an 'action' was provided for the barrier, one\n        of the threads will have executed that callback prior to returning.\n        Returns an individual index number from 0 to 'parties-1'.\n\n        \"\"\"\n        if timeout is None:\n            timeout = self._timeout\n        with self._cond:\n            self._enter() # Block while the barrier drains.\n            index = self._count\n            self._count += 1\n            try:\n                if index + 1 == self._parties:\n                    # We release the barrier\n                    self._release()\n                else:\n                    # We wait until someone releases us\n                    self._wait(timeout)\n                return index\n            finally:\n                self._count -= 1\n                # Wake up any threads waiting for barrier to drain.\n                self._exit()\n\n    # Block until the barrier is ready for us, or raise an exception\n    # if it is broken.\n    def _enter(self):\n        while self._state in (-1, 1):\n            # It is draining or resetting, wait until done\n            self._cond.wait()\n        #see if the barrier is in a broken state\n        if self._state < 0:\n            raise BrokenBarrierError\n        assert self._state == 0\n\n    # Optionally run the 'action' and release the threads waiting\n    # in the barrier.\n    def _release(self):\n        try:\n            if self._action:\n                self._action()\n            # enter draining state\n            self._state = 1\n            self._cond.notify_all()\n        except:\n            #an exception during the _action handler.  Break and reraise\n            self._break()\n            raise\n\n    # Wait in the barrier until we are released.  Raise an exception\n    # if the barrier is reset or broken.\n    def _wait(self, timeout):\n        if not self._cond.wait_for(lambda : self._state != 0, timeout):\n            #timed out.  Break the barrier\n            self._break()\n            raise BrokenBarrierError\n        if self._state < 0:\n            raise BrokenBarrierError\n        assert self._state == 1\n\n    # If we are the last thread to exit the barrier, signal any threads\n    # waiting for the barrier to drain.\n    def _exit(self):\n        if self._count == 0:\n            if self._state in (-1, 1):\n                #resetting or draining\n                self._state = 0\n                self._cond.notify_all()\n\n    def reset(self):\n        \"\"\"Reset the barrier to the initial state.\n\n        Any threads currently waiting will get the BrokenBarrier exception\n        raised.\n\n        \"\"\"\n        with self._cond:\n            if self._count > 0:\n                if self._state == 0:\n                    #reset the barrier, waking up threads\n                    self._state = -1\n                elif self._state == -2:\n                    #was broken, set it to reset state\n                    #which clears when the last thread exits\n                    self._state = -1\n            else:\n                self._state = 0\n            self._cond.notify_all()\n\n    def abort(self):\n        \"\"\"Place the barrier into a 'broken' state.\n\n        Useful in case of error.  Any currently waiting threads and threads\n        attempting to 'wait()' will have BrokenBarrierError raised.\n\n        \"\"\"\n        with self._cond:\n            self._break()\n\n    def _break(self):\n        # An internal error was detected.  The barrier is set to\n        # a broken state all parties awakened.\n        self._state = -2\n        self._cond.notify_all()\n\n    @property\n    def parties(self):\n        \"\"\"Return the number of threads required to trip the barrier.\"\"\"\n        return self._parties\n\n    @property\n    def n_waiting(self):\n        \"\"\"Return the number of threads currently waiting at the barrier.\"\"\"\n        # We don't need synchronization here since this is an ephemeral result\n        # anyway.  It returns the correct value in the steady state.\n        if self._state == 0:\n            return self._count\n        return 0\n\n    @property\n    def broken(self):\n        \"\"\"Return True if the barrier is in a broken state.\"\"\"\n        return self._state == -2\n\n# exception raised by the Barrier class\nclass BrokenBarrierError(RuntimeError):\n    pass\n\n\n# Helper to generate new thread names\n_counter = _count().__next__\n_counter() # Consume 0 so first non-main thread has id 1.\ndef _newname(template=\"Thread-%d\"):\n    return template % _counter()\n\n# Active thread administration\n_active_limbo_lock = _allocate_lock()\n_active = {}    # maps thread id to Thread object\n_limbo = {}\n_dangling = WeakSet()\n# Set of Thread._tstate_lock locks of non-daemon threads used by _shutdown()\n# to wait until all Python thread states get deleted:\n# see Thread._set_tstate_lock().\n_shutdown_locks_lock = _allocate_lock()\n_shutdown_locks = set()\n\n# Main class for threads\n\nclass Thread:\n    \"\"\"A class that represents a thread of control.\n\n    This class can be safely subclassed in a limited fashion. There are two ways\n    to specify the activity: by passing a callable object to the constructor, or\n    by overriding the run() method in a subclass.\n\n    \"\"\"\n\n    _initialized = False\n\n    def __init__(self, group=None, target=None, name=None,\n                 args=(), kwargs=None, *, daemon=None):\n        \"\"\"This constructor should always be called with keyword arguments. Arguments are:\n\n        *group* should be None; reserved for future extension when a ThreadGroup\n        class is implemented.\n\n        *target* is the callable object to be invoked by the run()\n        method. Defaults to None, meaning nothing is called.\n\n        *name* is the thread name. By default, a unique name is constructed of\n        the form \"Thread-N\" where N is a small decimal number.\n\n        *args* is the argument tuple for the target invocation. Defaults to ().\n\n        *kwargs* is a dictionary of keyword arguments for the target\n        invocation. Defaults to {}.\n\n        If a subclass overrides the constructor, it must make sure to invoke\n        the base class constructor (Thread.__init__()) before doing anything\n        else to the thread.\n\n        \"\"\"\n        assert group is None, \"group argument must be None for now\"\n        if kwargs is None:\n            kwargs = {}\n        self._target = target\n        self._name = str(name or _newname())\n        self._args = args\n        self._kwargs = kwargs\n        if daemon is not None:\n            self._daemonic = daemon\n        else:\n            self._daemonic = current_thread().daemon\n        self._ident = None\n        if _HAVE_THREAD_NATIVE_ID:\n            self._native_id = None\n        self._tstate_lock = None\n        self._started = Event()\n        self._is_stopped = False\n        self._initialized = True\n        # Copy of sys.stderr used by self._invoke_excepthook()\n        self._stderr = _sys.stderr\n        self._invoke_excepthook = _make_invoke_excepthook()\n        # For debugging and _after_fork()\n        _dangling.add(self)\n\n    def _reset_internal_locks(self, is_alive):\n        # private!  Called by _after_fork() to reset our internal locks as\n        # they may be in an invalid state leading to a deadlock or crash.\n        self._started._reset_internal_locks()\n        if is_alive:\n            self._set_tstate_lock()\n        else:\n            # The thread isn't alive after fork: it doesn't have a tstate\n            # anymore.\n            self._is_stopped = True\n            self._tstate_lock = None\n\n    def __repr__(self):\n        assert self._initialized, \"Thread.__init__() was not called\"\n        status = \"initial\"\n        if self._started.is_set():\n            status = \"started\"\n        self.is_alive() # easy way to get ._is_stopped set when appropriate\n        if self._is_stopped:\n            status = \"stopped\"\n        if self._daemonic:\n            status += \" daemon\"\n        if self._ident is not None:\n            status += \" %s\" % self._ident\n        return \"<%s(%s, %s)>\" % (self.__class__.__name__, self._name, status)\n\n    def start(self):\n        \"\"\"Start the thread's activity.\n\n        It must be called at most once per thread object. It arranges for the\n        object's run() method to be invoked in a separate thread of control.\n\n        This method will raise a RuntimeError if called more than once on the\n        same thread object.\n\n        \"\"\"\n        if not self._initialized:\n            raise RuntimeError(\"thread.__init__() not called\")\n\n        if self._started.is_set():\n            raise RuntimeError(\"threads can only be started once\")\n        with _active_limbo_lock:\n            _limbo[self] = self\n        try:\n            _start_new_thread(self._bootstrap, ())\n        except Exception:\n            with _active_limbo_lock:\n                del _limbo[self]\n            raise\n        self._started.wait()\n\n    def run(self):\n        \"\"\"Method representing the thread's activity.\n\n        You may override this method in a subclass. The standard run() method\n        invokes the callable object passed to the object's constructor as the\n        target argument, if any, with sequential and keyword arguments taken\n        from the args and kwargs arguments, respectively.\n\n        \"\"\"\n        try:\n            if self._target:\n                self._target(*self._args, **self._kwargs)\n        finally:\n            # Avoid a refcycle if the thread is running a function with\n            # an argument that has a member that points to the thread.\n            del self._target, self._args, self._kwargs\n\n    def _bootstrap(self):\n        # Wrapper around the real bootstrap code that ignores\n        # exceptions during interpreter cleanup.  Those typically\n        # happen when a daemon thread wakes up at an unfortunate\n        # moment, finds the world around it destroyed, and raises some\n        # random exception *** while trying to report the exception in\n        # _bootstrap_inner() below ***.  Those random exceptions\n        # don't help anybody, and they confuse users, so we suppress\n        # them.  We suppress them only when it appears that the world\n        # indeed has already been destroyed, so that exceptions in\n        # _bootstrap_inner() during normal business hours are properly\n        # reported.  Also, we only suppress them for daemonic threads;\n        # if a non-daemonic encounters this, something else is wrong.\n        try:\n            self._bootstrap_inner()\n        except:\n            if self._daemonic and _sys is None:\n                return\n            raise\n\n    def _set_ident(self):\n        self._ident = get_ident()\n\n    if _HAVE_THREAD_NATIVE_ID:\n        def _set_native_id(self):\n            self._native_id = get_native_id()\n\n    def _set_tstate_lock(self):\n        \"\"\"\n        Set a lock object which will be released by the interpreter when\n        the underlying thread state (see pystate.h) gets deleted.\n        \"\"\"\n        self._tstate_lock = _set_sentinel()\n        self._tstate_lock.acquire()\n\n        if not self.daemon:\n            with _shutdown_locks_lock:\n                _shutdown_locks.add(self._tstate_lock)\n\n    def _bootstrap_inner(self):\n        try:\n            self._set_ident()\n            self._set_tstate_lock()\n            if _HAVE_THREAD_NATIVE_ID:\n                self._set_native_id()\n            self._started.set()\n            with _active_limbo_lock:\n                _active[self._ident] = self\n                del _limbo[self]\n\n            if _trace_hook:\n                _sys.settrace(_trace_hook)\n            if _profile_hook:\n                _sys.setprofile(_profile_hook)\n\n            try:\n                self.run()\n            except:\n                self._invoke_excepthook(self)\n        finally:\n            with _active_limbo_lock:\n                try:\n                    # We don't call self._delete() because it also\n                    # grabs _active_limbo_lock.\n                    del _active[get_ident()]\n                except:\n                    pass\n\n    def _stop(self):\n        # After calling ._stop(), .is_alive() returns False and .join() returns\n        # immediately.  ._tstate_lock must be released before calling ._stop().\n        #\n        # Normal case:  C code at the end of the thread's life\n        # (release_sentinel in _threadmodule.c) releases ._tstate_lock, and\n        # that's detected by our ._wait_for_tstate_lock(), called by .join()\n        # and .is_alive().  Any number of threads _may_ call ._stop()\n        # simultaneously (for example, if multiple threads are blocked in\n        # .join() calls), and they're not serialized.  That's harmless -\n        # they'll just make redundant rebindings of ._is_stopped and\n        # ._tstate_lock.  Obscure:  we rebind ._tstate_lock last so that the\n        # \"assert self._is_stopped\" in ._wait_for_tstate_lock() always works\n        # (the assert is executed only if ._tstate_lock is None).\n        #\n        # Special case:  _main_thread releases ._tstate_lock via this\n        # module's _shutdown() function.\n        lock = self._tstate_lock\n        if lock is not None:\n            assert not lock.locked()\n        self._is_stopped = True\n        self._tstate_lock = None\n        if not self.daemon:\n            with _shutdown_locks_lock:\n                _shutdown_locks.discard(lock)\n\n    def _delete(self):\n        \"Remove current thread from the dict of currently running threads.\"\n        with _active_limbo_lock:\n            del _active[get_ident()]\n            # There must not be any python code between the previous line\n            # and after the lock is released.  Otherwise a tracing function\n            # could try to acquire the lock again in the same thread, (in\n            # current_thread()), and would block.\n\n    def join(self, timeout=None):\n        \"\"\"Wait until the thread terminates.\n\n        This blocks the calling thread until the thread whose join() method is\n        called terminates -- either normally or through an unhandled exception\n        or until the optional timeout occurs.\n\n        When the timeout argument is present and not None, it should be a\n        floating point number specifying a timeout for the operation in seconds\n        (or fractions thereof). As join() always returns None, you must call\n        is_alive() after join() to decide whether a timeout happened -- if the\n        thread is still alive, the join() call timed out.\n\n        When the timeout argument is not present or None, the operation will\n        block until the thread terminates.\n\n        A thread can be join()ed many times.\n\n        join() raises a RuntimeError if an attempt is made to join the current\n        thread as that would cause a deadlock. It is also an error to join() a\n        thread before it has been started and attempts to do so raises the same\n        exception.\n\n        \"\"\"\n        if not self._initialized:\n            raise RuntimeError(\"Thread.__init__() not called\")\n        if not self._started.is_set():\n            raise RuntimeError(\"cannot join thread before it is started\")\n        if self is current_thread():\n            raise RuntimeError(\"cannot join current thread\")\n\n        if timeout is None:\n            self._wait_for_tstate_lock()\n        else:\n            # the behavior of a negative timeout isn't documented, but\n            # historically .join(timeout=x) for x<0 has acted as if timeout=0\n            self._wait_for_tstate_lock(timeout=max(timeout, 0))\n\n    def _wait_for_tstate_lock(self, block=True, timeout=-1):\n        # Issue #18808: wait for the thread state to be gone.\n        # At the end of the thread's life, after all knowledge of the thread\n        # is removed from C data structures, C code releases our _tstate_lock.\n        # This method passes its arguments to _tstate_lock.acquire().\n        # If the lock is acquired, the C code is done, and self._stop() is\n        # called.  That sets ._is_stopped to True, and ._tstate_lock to None.\n        lock = self._tstate_lock\n        if lock is None:  # already determined that the C code is done\n            assert self._is_stopped\n        elif lock.acquire(block, timeout):\n            lock.release()\n            self._stop()\n\n    @property\n    def name(self):\n        \"\"\"A string used for identification purposes only.\n\n        It has no semantics. Multiple threads may be given the same name. The\n        initial name is set by the constructor.\n\n        \"\"\"\n        assert self._initialized, \"Thread.__init__() not called\"\n        return self._name\n\n    @name.setter\n    def name(self, name):\n        assert self._initialized, \"Thread.__init__() not called\"\n        self._name = str(name)\n\n    @property\n    def ident(self):\n        \"\"\"Thread identifier of this thread or None if it has not been started.\n\n        This is a nonzero integer. See the get_ident() function. Thread\n        identifiers may be recycled when a thread exits and another thread is\n        created. The identifier is available even after the thread has exited.\n\n        \"\"\"\n        assert self._initialized, \"Thread.__init__() not called\"\n        return self._ident\n\n    if _HAVE_THREAD_NATIVE_ID:\n        @property\n        def native_id(self):\n            \"\"\"Native integral thread ID of this thread, or None if it has not been started.\n\n            This is a non-negative integer. See the get_native_id() function.\n            This represents the Thread ID as reported by the kernel.\n\n            \"\"\"\n            assert self._initialized, \"Thread.__init__() not called\"\n            return self._native_id\n\n    def is_alive(self):\n        \"\"\"Return whether the thread is alive.\n\n        This method returns True just before the run() method starts until just\n        after the run() method terminates. The module function enumerate()\n        returns a list of all alive threads.\n\n        \"\"\"\n        assert self._initialized, \"Thread.__init__() not called\"\n        if self._is_stopped or not self._started.is_set():\n            return False\n        self._wait_for_tstate_lock(False)\n        return not self._is_stopped\n\n    def isAlive(self):\n        \"\"\"Return whether the thread is alive.\n\n        This method is deprecated, use is_alive() instead.\n        \"\"\"\n        import warnings\n        warnings.warn('isAlive() is deprecated, use is_alive() instead',\n                      DeprecationWarning, stacklevel=2)\n        return self.is_alive()\n\n    @property\n    def daemon(self):\n        \"\"\"A boolean value indicating whether this thread is a daemon thread.\n\n        This must be set before start() is called, otherwise RuntimeError is\n        raised. Its initial value is inherited from the creating thread; the\n        main thread is not a daemon thread and therefore all threads created in\n        the main thread default to daemon = False.\n\n        The entire Python program exits when only daemon threads are left.\n\n        \"\"\"\n        assert self._initialized, \"Thread.__init__() not called\"\n        return self._daemonic\n\n    @daemon.setter\n    def daemon(self, daemonic):\n        if not self._initialized:\n            raise RuntimeError(\"Thread.__init__() not called\")\n        if self._started.is_set():\n            raise RuntimeError(\"cannot set daemon status of active thread\")\n        self._daemonic = daemonic\n\n    def isDaemon(self):\n        return self.daemon\n\n    def setDaemon(self, daemonic):\n        self.daemon = daemonic\n\n    def getName(self):\n        return self.name\n\n    def setName(self, name):\n        self.name = name\n\n\ntry:\n    from _thread import (_excepthook as excepthook,\n                         _ExceptHookArgs as ExceptHookArgs)\nexcept ImportError:\n    # Simple Python implementation if _thread._excepthook() is not available\n    from traceback import print_exception as _print_exception\n    from collections import namedtuple\n\n    _ExceptHookArgs = namedtuple(\n        'ExceptHookArgs',\n        'exc_type exc_value exc_traceback thread')\n\n    def ExceptHookArgs(args):\n        return _ExceptHookArgs(*args)\n\n    def excepthook(args, /):\n        \"\"\"\n        Handle uncaught Thread.run() exception.\n        \"\"\"\n        if args.exc_type == SystemExit:\n            # silently ignore SystemExit\n            return\n\n        if _sys is not None and _sys.stderr is not None:\n            stderr = _sys.stderr\n        elif args.thread is not None:\n            stderr = args.thread._stderr\n            if stderr is None:\n                # do nothing if sys.stderr is None and sys.stderr was None\n                # when the thread was created\n                return\n        else:\n            # do nothing if sys.stderr is None and args.thread is None\n            return\n\n        if args.thread is not None:\n            name = args.thread.name\n        else:\n            name = get_ident()\n        print(f\"Exception in thread {name}:\",\n              file=stderr, flush=True)\n        _print_exception(args.exc_type, args.exc_value, args.exc_traceback,\n                         file=stderr)\n        stderr.flush()\n\n\ndef _make_invoke_excepthook():\n    # Create a local namespace to ensure that variables remain alive\n    # when _invoke_excepthook() is called, even if it is called late during\n    # Python shutdown. It is mostly needed for daemon threads.\n\n    old_excepthook = excepthook\n    old_sys_excepthook = _sys.excepthook\n    if old_excepthook is None:\n        raise RuntimeError(\"threading.excepthook is None\")\n    if old_sys_excepthook is None:\n        raise RuntimeError(\"sys.excepthook is None\")\n\n    sys_exc_info = _sys.exc_info\n    local_print = print\n    local_sys = _sys\n\n    def invoke_excepthook(thread):\n        global excepthook\n        try:\n            hook = excepthook\n            if hook is None:\n                hook = old_excepthook\n\n            args = ExceptHookArgs([*sys_exc_info(), thread])\n\n            hook(args)\n        except Exception as exc:\n            exc.__suppress_context__ = True\n            del exc\n\n            if local_sys is not None and local_sys.stderr is not None:\n                stderr = local_sys.stderr\n            else:\n                stderr = thread._stderr\n\n            local_print(\"Exception in threading.excepthook:\",\n                        file=stderr, flush=True)\n\n            if local_sys is not None and local_sys.excepthook is not None:\n                sys_excepthook = local_sys.excepthook\n            else:\n                sys_excepthook = old_sys_excepthook\n\n            sys_excepthook(*sys_exc_info())\n        finally:\n            # Break reference cycle (exception stored in a variable)\n            args = None\n\n    return invoke_excepthook\n\n\n# The timer class was contributed by Itamar Shtull-Trauring\n\nclass Timer(Thread):\n    \"\"\"Call a function after a specified number of seconds:\n\n            t = Timer(30.0, f, args=None, kwargs=None)\n            t.start()\n            t.cancel()     # stop the timer's action if it's still waiting\n\n    \"\"\"\n\n    def __init__(self, interval, function, args=None, kwargs=None):\n        Thread.__init__(self)\n        self.interval = interval\n        self.function = function\n        self.args = args if args is not None else []\n        self.kwargs = kwargs if kwargs is not None else {}\n        self.finished = Event()\n\n    def cancel(self):\n        \"\"\"Stop the timer if it hasn't finished yet.\"\"\"\n        self.finished.set()\n\n    def run(self):\n        self.finished.wait(self.interval)\n        if not self.finished.is_set():\n            self.function(*self.args, **self.kwargs)\n        self.finished.set()\n\n\n# Special thread class to represent the main thread\n\nclass _MainThread(Thread):\n\n    def __init__(self):\n        Thread.__init__(self, name=\"MainThread\", daemon=False)\n        self._set_tstate_lock()\n        self._started.set()\n        self._set_ident()\n        if _HAVE_THREAD_NATIVE_ID:\n            self._set_native_id()\n        with _active_limbo_lock:\n            _active[self._ident] = self\n\n\n# Dummy thread class to represent threads not started here.\n# These aren't garbage collected when they die, nor can they be waited for.\n# If they invoke anything in threading.py that calls current_thread(), they\n# leave an entry in the _active dict forever after.\n# Their purpose is to return *something* from current_thread().\n# They are marked as daemon threads so we won't wait for them\n# when we exit (conform previous semantics).\n\nclass _DummyThread(Thread):\n\n    def __init__(self):\n        Thread.__init__(self, name=_newname(\"Dummy-%d\"), daemon=True)\n\n        self._started.set()\n        self._set_ident()\n        if _HAVE_THREAD_NATIVE_ID:\n            self._set_native_id()\n        with _active_limbo_lock:\n            _active[self._ident] = self\n\n    def _stop(self):\n        pass\n\n    def is_alive(self):\n        assert not self._is_stopped and self._started.is_set()\n        return True\n\n    def join(self, timeout=None):\n        assert False, \"cannot join a dummy thread\"\n\n\n# Global API functions\n\ndef current_thread():\n    \"\"\"Return the current Thread object, corresponding to the caller's thread of control.\n\n    If the caller's thread of control was not created through the threading\n    module, a dummy thread object with limited functionality is returned.\n\n    \"\"\"\n    try:\n        return _active[get_ident()]\n    except KeyError:\n        return _DummyThread()\n\ncurrentThread = current_thread\n\ndef active_count():\n    \"\"\"Return the number of Thread objects currently alive.\n\n    The returned count is equal to the length of the list returned by\n    enumerate().\n\n    \"\"\"\n    with _active_limbo_lock:\n        return len(_active) + len(_limbo)\n\nactiveCount = active_count\n\ndef _enumerate():\n    # Same as enumerate(), but without the lock. Internal use only.\n    return list(_active.values()) + list(_limbo.values())\n\ndef enumerate():\n    \"\"\"Return a list of all Thread objects currently alive.\n\n    The list includes daemonic threads, dummy thread objects created by\n    current_thread(), and the main thread. It excludes terminated threads and\n    threads that have not yet been started.\n\n    \"\"\"\n    with _active_limbo_lock:\n        return list(_active.values()) + list(_limbo.values())\n\nfrom _thread import stack_size\n\n# Create the main thread object,\n# and make it available for the interpreter\n# (Py_Main) as threading._shutdown.\n\n_main_thread = _MainThread()\n\ndef _shutdown():\n    \"\"\"\n    Wait until the Python thread state of all non-daemon threads get deleted.\n    \"\"\"\n    # Obscure:  other threads may be waiting to join _main_thread.  That's\n    # dubious, but some code does it.  We can't wait for C code to release\n    # the main thread's tstate_lock - that won't happen until the interpreter\n    # is nearly dead.  So we release it here.  Note that just calling _stop()\n    # isn't enough:  other threads may already be waiting on _tstate_lock.\n    if _main_thread._is_stopped:\n        # _shutdown() was already called\n        return\n\n    # Main thread\n    tlock = _main_thread._tstate_lock\n    # The main thread isn't finished yet, so its thread state lock can't have\n    # been released.\n    assert tlock is not None\n    assert tlock.locked()\n    tlock.release()\n    _main_thread._stop()\n\n    # Join all non-deamon threads\n    while True:\n        with _shutdown_locks_lock:\n            locks = list(_shutdown_locks)\n            _shutdown_locks.clear()\n\n        if not locks:\n            break\n\n        for lock in locks:\n            # mimick Thread.join()\n            lock.acquire()\n            lock.release()\n\n        # new threads can be spawned while we were waiting for the other\n        # threads to complete\n\n\ndef main_thread():\n    \"\"\"Return the main thread object.\n\n    In normal conditions, the main thread is the thread from which the\n    Python interpreter was started.\n    \"\"\"\n    return _main_thread\n\n# get thread-local implementation, either from the thread\n# module, or from the python fallback\n\ntry:\n    from _thread import _local as local\nexcept ImportError:\n    from _threading_local import local\n\n\ndef _after_fork():\n    \"\"\"\n    Cleanup threading module state that should not exist after a fork.\n    \"\"\"\n    # Reset _active_limbo_lock, in case we forked while the lock was held\n    # by another (non-forked) thread.  http://bugs.python.org/issue874900\n    global _active_limbo_lock, _main_thread\n    global _shutdown_locks_lock, _shutdown_locks\n    _active_limbo_lock = _allocate_lock()\n\n    # fork() only copied the current thread; clear references to others.\n    new_active = {}\n\n    try:\n        current = _active[get_ident()]\n    except KeyError:\n        # fork() was called in a thread which was not spawned\n        # by threading.Thread. For example, a thread spawned\n        # by thread.start_new_thread().\n        current = _MainThread()\n\n    _main_thread = current\n\n    # reset _shutdown() locks: threads re-register their _tstate_lock below\n    _shutdown_locks_lock = _allocate_lock()\n    _shutdown_locks = set()\n\n    with _active_limbo_lock:\n        # Dangling thread instances must still have their locks reset,\n        # because someone may join() them.\n        threads = set(_enumerate())\n        threads.update(_dangling)\n        for thread in threads:\n            # Any lock/condition variable may be currently locked or in an\n            # invalid state, so we reinitialize them.\n            if thread is current:\n                # There is only one active thread. We reset the ident to\n                # its new value since it can have changed.\n                thread._reset_internal_locks(True)\n                ident = get_ident()\n                thread._ident = ident\n                new_active[ident] = thread\n            else:\n                # All the others are already stopped.\n                thread._reset_internal_locks(False)\n                thread._stop()\n\n        _limbo.clear()\n        _active.clear()\n        _active.update(new_active)\n        assert len(_active) == 1\n\n\nif hasattr(_os, \"register_at_fork\"):\n    _os.register_at_fork(after_in_child=_after_fork)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/timeit.py",
    "content": "#! /usr/bin/env python3\n\n\"\"\"Tool for measuring execution time of small code snippets.\n\nThis module avoids a number of common traps for measuring execution\ntimes.  See also Tim Peters' introduction to the Algorithms chapter in\nthe Python Cookbook, published by O'Reilly.\n\nLibrary usage: see the Timer class.\n\nCommand line usage:\n    python timeit.py [-n N] [-r N] [-s S] [-p] [-h] [--] [statement]\n\nOptions:\n  -n/--number N: how many times to execute 'statement' (default: see below)\n  -r/--repeat N: how many times to repeat the timer (default 5)\n  -s/--setup S: statement to be executed once initially (default 'pass').\n                Execution time of this setup statement is NOT timed.\n  -p/--process: use time.process_time() (default is time.perf_counter())\n  -v/--verbose: print raw timing results; repeat for more digits precision\n  -u/--unit: set the output time unit (nsec, usec, msec, or sec)\n  -h/--help: print this usage message and exit\n  --: separate options from statement, use when statement starts with -\n  statement: statement to be timed (default 'pass')\n\nA multi-line statement may be given by specifying each line as a\nseparate argument; indented lines are possible by enclosing an\nargument in quotes and using leading spaces.  Multiple -s options are\ntreated similarly.\n\nIf -n is not given, a suitable number of loops is calculated by trying\nincreasing numbers from the sequence 1, 2, 5, 10, 20, 50, ... until the\ntotal time is at least 0.2 seconds.\n\nNote: there is a certain baseline overhead associated with executing a\npass statement.  It differs between versions.  The code here doesn't try\nto hide it, but you should be aware of it.  The baseline overhead can be\nmeasured by invoking the program without arguments.\n\nClasses:\n\n    Timer\n\nFunctions:\n\n    timeit(string, string) -> float\n    repeat(string, string) -> list\n    default_timer() -> float\n\n\"\"\"\n\nimport gc\nimport sys\nimport time\nimport itertools\n\n__all__ = [\"Timer\", \"timeit\", \"repeat\", \"default_timer\"]\n\ndummy_src_name = \"<timeit-src>\"\ndefault_number = 1000000\ndefault_repeat = 5\ndefault_timer = time.perf_counter\n\n_globals = globals\n\n# Don't change the indentation of the template; the reindent() calls\n# in Timer.__init__() depend on setup being indented 4 spaces and stmt\n# being indented 8 spaces.\ntemplate = \"\"\"\ndef inner(_it, _timer{init}):\n    {setup}\n    _t0 = _timer()\n    for _i in _it:\n        {stmt}\n    _t1 = _timer()\n    return _t1 - _t0\n\"\"\"\n\ndef reindent(src, indent):\n    \"\"\"Helper to reindent a multi-line statement.\"\"\"\n    return src.replace(\"\\n\", \"\\n\" + \" \"*indent)\n\nclass Timer:\n    \"\"\"Class for timing execution speed of small code snippets.\n\n    The constructor takes a statement to be timed, an additional\n    statement used for setup, and a timer function.  Both statements\n    default to 'pass'; the timer function is platform-dependent (see\n    module doc string).  If 'globals' is specified, the code will be\n    executed within that namespace (as opposed to inside timeit's\n    namespace).\n\n    To measure the execution time of the first statement, use the\n    timeit() method.  The repeat() method is a convenience to call\n    timeit() multiple times and return a list of results.\n\n    The statements may contain newlines, as long as they don't contain\n    multi-line string literals.\n    \"\"\"\n\n    def __init__(self, stmt=\"pass\", setup=\"pass\", timer=default_timer,\n                 globals=None):\n        \"\"\"Constructor.  See class doc string.\"\"\"\n        self.timer = timer\n        local_ns = {}\n        global_ns = _globals() if globals is None else globals\n        init = ''\n        if isinstance(setup, str):\n            # Check that the code can be compiled outside a function\n            compile(setup, dummy_src_name, \"exec\")\n            stmtprefix = setup + '\\n'\n            setup = reindent(setup, 4)\n        elif callable(setup):\n            local_ns['_setup'] = setup\n            init += ', _setup=_setup'\n            stmtprefix = ''\n            setup = '_setup()'\n        else:\n            raise ValueError(\"setup is neither a string nor callable\")\n        if isinstance(stmt, str):\n            # Check that the code can be compiled outside a function\n            compile(stmtprefix + stmt, dummy_src_name, \"exec\")\n            stmt = reindent(stmt, 8)\n        elif callable(stmt):\n            local_ns['_stmt'] = stmt\n            init += ', _stmt=_stmt'\n            stmt = '_stmt()'\n        else:\n            raise ValueError(\"stmt is neither a string nor callable\")\n        src = template.format(stmt=stmt, setup=setup, init=init)\n        self.src = src  # Save for traceback display\n        code = compile(src, dummy_src_name, \"exec\")\n        exec(code, global_ns, local_ns)\n        self.inner = local_ns[\"inner\"]\n\n    def print_exc(self, file=None):\n        \"\"\"Helper to print a traceback from the timed code.\n\n        Typical use:\n\n            t = Timer(...)       # outside the try/except\n            try:\n                t.timeit(...)    # or t.repeat(...)\n            except:\n                t.print_exc()\n\n        The advantage over the standard traceback is that source lines\n        in the compiled template will be displayed.\n\n        The optional file argument directs where the traceback is\n        sent; it defaults to sys.stderr.\n        \"\"\"\n        import linecache, traceback\n        if self.src is not None:\n            linecache.cache[dummy_src_name] = (len(self.src),\n                                               None,\n                                               self.src.split(\"\\n\"),\n                                               dummy_src_name)\n        # else the source is already stored somewhere else\n\n        traceback.print_exc(file=file)\n\n    def timeit(self, number=default_number):\n        \"\"\"Time 'number' executions of the main statement.\n\n        To be precise, this executes the setup statement once, and\n        then returns the time it takes to execute the main statement\n        a number of times, as a float measured in seconds.  The\n        argument is the number of times through the loop, defaulting\n        to one million.  The main statement, the setup statement and\n        the timer function to be used are passed to the constructor.\n        \"\"\"\n        it = itertools.repeat(None, number)\n        gcold = gc.isenabled()\n        gc.disable()\n        try:\n            timing = self.inner(it, self.timer)\n        finally:\n            if gcold:\n                gc.enable()\n        return timing\n\n    def repeat(self, repeat=default_repeat, number=default_number):\n        \"\"\"Call timeit() a few times.\n\n        This is a convenience function that calls the timeit()\n        repeatedly, returning a list of results.  The first argument\n        specifies how many times to call timeit(), defaulting to 5;\n        the second argument specifies the timer argument, defaulting\n        to one million.\n\n        Note: it's tempting to calculate mean and standard deviation\n        from the result vector and report these.  However, this is not\n        very useful.  In a typical case, the lowest value gives a\n        lower bound for how fast your machine can run the given code\n        snippet; higher values in the result vector are typically not\n        caused by variability in Python's speed, but by other\n        processes interfering with your timing accuracy.  So the min()\n        of the result is probably the only number you should be\n        interested in.  After that, you should look at the entire\n        vector and apply common sense rather than statistics.\n        \"\"\"\n        r = []\n        for i in range(repeat):\n            t = self.timeit(number)\n            r.append(t)\n        return r\n\n    def autorange(self, callback=None):\n        \"\"\"Return the number of loops and time taken so that total time >= 0.2.\n\n        Calls the timeit method with increasing numbers from the sequence\n        1, 2, 5, 10, 20, 50, ... until the time taken is at least 0.2\n        second.  Returns (number, time_taken).\n\n        If *callback* is given and is not None, it will be called after\n        each trial with two arguments: ``callback(number, time_taken)``.\n        \"\"\"\n        i = 1\n        while True:\n            for j in 1, 2, 5:\n                number = i * j\n                time_taken = self.timeit(number)\n                if callback:\n                    callback(number, time_taken)\n                if time_taken >= 0.2:\n                    return (number, time_taken)\n            i *= 10\n\ndef timeit(stmt=\"pass\", setup=\"pass\", timer=default_timer,\n           number=default_number, globals=None):\n    \"\"\"Convenience function to create Timer object and call timeit method.\"\"\"\n    return Timer(stmt, setup, timer, globals).timeit(number)\n\ndef repeat(stmt=\"pass\", setup=\"pass\", timer=default_timer,\n           repeat=default_repeat, number=default_number, globals=None):\n    \"\"\"Convenience function to create Timer object and call repeat method.\"\"\"\n    return Timer(stmt, setup, timer, globals).repeat(repeat, number)\n\ndef main(args=None, *, _wrap_timer=None):\n    \"\"\"Main program, used when run as a script.\n\n    The optional 'args' argument specifies the command line to be parsed,\n    defaulting to sys.argv[1:].\n\n    The return value is an exit code to be passed to sys.exit(); it\n    may be None to indicate success.\n\n    When an exception happens during timing, a traceback is printed to\n    stderr and the return value is 1.  Exceptions at other times\n    (including the template compilation) are not caught.\n\n    '_wrap_timer' is an internal interface used for unit testing.  If it\n    is not None, it must be a callable that accepts a timer function\n    and returns another timer function (used for unit testing).\n    \"\"\"\n    if args is None:\n        args = sys.argv[1:]\n    import getopt\n    try:\n        opts, args = getopt.getopt(args, \"n:u:s:r:tcpvh\",\n                                   [\"number=\", \"setup=\", \"repeat=\",\n                                    \"time\", \"clock\", \"process\",\n                                    \"verbose\", \"unit=\", \"help\"])\n    except getopt.error as err:\n        print(err)\n        print(\"use -h/--help for command line help\")\n        return 2\n\n    timer = default_timer\n    stmt = \"\\n\".join(args) or \"pass\"\n    number = 0 # auto-determine\n    setup = []\n    repeat = default_repeat\n    verbose = 0\n    time_unit = None\n    units = {\"nsec\": 1e-9, \"usec\": 1e-6, \"msec\": 1e-3, \"sec\": 1.0}\n    precision = 3\n    for o, a in opts:\n        if o in (\"-n\", \"--number\"):\n            number = int(a)\n        if o in (\"-s\", \"--setup\"):\n            setup.append(a)\n        if o in (\"-u\", \"--unit\"):\n            if a in units:\n                time_unit = a\n            else:\n                print(\"Unrecognized unit. Please select nsec, usec, msec, or sec.\",\n                    file=sys.stderr)\n                return 2\n        if o in (\"-r\", \"--repeat\"):\n            repeat = int(a)\n            if repeat <= 0:\n                repeat = 1\n        if o in (\"-p\", \"--process\"):\n            timer = time.process_time\n        if o in (\"-v\", \"--verbose\"):\n            if verbose:\n                precision += 1\n            verbose += 1\n        if o in (\"-h\", \"--help\"):\n            print(__doc__, end=' ')\n            return 0\n    setup = \"\\n\".join(setup) or \"pass\"\n\n    # Include the current directory, so that local imports work (sys.path\n    # contains the directory of this script, rather than the current\n    # directory)\n    import os\n    sys.path.insert(0, os.curdir)\n    if _wrap_timer is not None:\n        timer = _wrap_timer(timer)\n\n    t = Timer(stmt, setup, timer)\n    if number == 0:\n        # determine number so that 0.2 <= total time < 2.0\n        callback = None\n        if verbose:\n            def callback(number, time_taken):\n                msg = \"{num} loop{s} -> {secs:.{prec}g} secs\"\n                plural = (number != 1)\n                print(msg.format(num=number, s='s' if plural else '',\n                                  secs=time_taken, prec=precision))\n        try:\n            number, _ = t.autorange(callback)\n        except:\n            t.print_exc()\n            return 1\n\n        if verbose:\n            print()\n\n    try:\n        raw_timings = t.repeat(repeat, number)\n    except:\n        t.print_exc()\n        return 1\n\n    def format_time(dt):\n        unit = time_unit\n\n        if unit is not None:\n            scale = units[unit]\n        else:\n            scales = [(scale, unit) for unit, scale in units.items()]\n            scales.sort(reverse=True)\n            for scale, unit in scales:\n                if dt >= scale:\n                    break\n\n        return \"%.*g %s\" % (precision, dt / scale, unit)\n\n    if verbose:\n        print(\"raw times: %s\" % \", \".join(map(format_time, raw_timings)))\n        print()\n    timings = [dt / number for dt in raw_timings]\n\n    best = min(timings)\n    print(\"%d loop%s, best of %d: %s per loop\"\n          % (number, 's' if number != 1 else '',\n             repeat, format_time(best)))\n\n    best = min(timings)\n    worst = max(timings)\n    if worst >= best * 4:\n        import warnings\n        warnings.warn_explicit(\"The test results are likely unreliable. \"\n                               \"The worst time (%s) was more than four times \"\n                               \"slower than the best time (%s).\"\n                               % (format_time(worst), format_time(best)),\n                               UserWarning, '', 0)\n    return None\n\nif __name__ == \"__main__\":\n    sys.exit(main())\n"
  },
  {
    "path": "rd/usr/lib/python3.8/token.py",
    "content": "\"\"\"Token constants.\"\"\"\n# Auto-generated by Tools/scripts/generate_token.py\n\n__all__ = ['tok_name', 'ISTERMINAL', 'ISNONTERMINAL', 'ISEOF']\n\nENDMARKER = 0\nNAME = 1\nNUMBER = 2\nSTRING = 3\nNEWLINE = 4\nINDENT = 5\nDEDENT = 6\nLPAR = 7\nRPAR = 8\nLSQB = 9\nRSQB = 10\nCOLON = 11\nCOMMA = 12\nSEMI = 13\nPLUS = 14\nMINUS = 15\nSTAR = 16\nSLASH = 17\nVBAR = 18\nAMPER = 19\nLESS = 20\nGREATER = 21\nEQUAL = 22\nDOT = 23\nPERCENT = 24\nLBRACE = 25\nRBRACE = 26\nEQEQUAL = 27\nNOTEQUAL = 28\nLESSEQUAL = 29\nGREATEREQUAL = 30\nTILDE = 31\nCIRCUMFLEX = 32\nLEFTSHIFT = 33\nRIGHTSHIFT = 34\nDOUBLESTAR = 35\nPLUSEQUAL = 36\nMINEQUAL = 37\nSTAREQUAL = 38\nSLASHEQUAL = 39\nPERCENTEQUAL = 40\nAMPEREQUAL = 41\nVBAREQUAL = 42\nCIRCUMFLEXEQUAL = 43\nLEFTSHIFTEQUAL = 44\nRIGHTSHIFTEQUAL = 45\nDOUBLESTAREQUAL = 46\nDOUBLESLASH = 47\nDOUBLESLASHEQUAL = 48\nAT = 49\nATEQUAL = 50\nRARROW = 51\nELLIPSIS = 52\nCOLONEQUAL = 53\nOP = 54\nAWAIT = 55\nASYNC = 56\nTYPE_IGNORE = 57\nTYPE_COMMENT = 58\n# These aren't used by the C tokenizer but are needed for tokenize.py\nERRORTOKEN = 59\nCOMMENT = 60\nNL = 61\nENCODING = 62\nN_TOKENS = 63\n# Special definitions for cooperation with parser\nNT_OFFSET = 256\n\ntok_name = {value: name\n            for name, value in globals().items()\n            if isinstance(value, int) and not name.startswith('_')}\n__all__.extend(tok_name.values())\n\nEXACT_TOKEN_TYPES = {\n    '!=': NOTEQUAL,\n    '%': PERCENT,\n    '%=': PERCENTEQUAL,\n    '&': AMPER,\n    '&=': AMPEREQUAL,\n    '(': LPAR,\n    ')': RPAR,\n    '*': STAR,\n    '**': DOUBLESTAR,\n    '**=': DOUBLESTAREQUAL,\n    '*=': STAREQUAL,\n    '+': PLUS,\n    '+=': PLUSEQUAL,\n    ',': COMMA,\n    '-': MINUS,\n    '-=': MINEQUAL,\n    '->': RARROW,\n    '.': DOT,\n    '...': ELLIPSIS,\n    '/': SLASH,\n    '//': DOUBLESLASH,\n    '//=': DOUBLESLASHEQUAL,\n    '/=': SLASHEQUAL,\n    ':': COLON,\n    ':=': COLONEQUAL,\n    ';': SEMI,\n    '<': LESS,\n    '<<': LEFTSHIFT,\n    '<<=': LEFTSHIFTEQUAL,\n    '<=': LESSEQUAL,\n    '=': EQUAL,\n    '==': EQEQUAL,\n    '>': GREATER,\n    '>=': GREATEREQUAL,\n    '>>': RIGHTSHIFT,\n    '>>=': RIGHTSHIFTEQUAL,\n    '@': AT,\n    '@=': ATEQUAL,\n    '[': LSQB,\n    ']': RSQB,\n    '^': CIRCUMFLEX,\n    '^=': CIRCUMFLEXEQUAL,\n    '{': LBRACE,\n    '|': VBAR,\n    '|=': VBAREQUAL,\n    '}': RBRACE,\n    '~': TILDE,\n}\n\ndef ISTERMINAL(x):\n    return x < NT_OFFSET\n\ndef ISNONTERMINAL(x):\n    return x >= NT_OFFSET\n\ndef ISEOF(x):\n    return x == ENDMARKER\n"
  },
  {
    "path": "rd/usr/lib/python3.8/tokenize.py",
    "content": "\"\"\"Tokenization help for Python programs.\n\ntokenize(readline) is a generator that breaks a stream of bytes into\nPython tokens.  It decodes the bytes according to PEP-0263 for\ndetermining source file encoding.\n\nIt accepts a readline-like method which is called repeatedly to get the\nnext line of input (or b\"\" for EOF).  It generates 5-tuples with these\nmembers:\n\n    the token type (see token.py)\n    the token (a string)\n    the starting (row, column) indices of the token (a 2-tuple of ints)\n    the ending (row, column) indices of the token (a 2-tuple of ints)\n    the original line (string)\n\nIt is designed to match the working of the Python tokenizer exactly, except\nthat it produces COMMENT tokens for comments and gives type OP for all\noperators.  Additionally, all token lists start with an ENCODING token\nwhich tells you which encoding was used to decode the bytes stream.\n\"\"\"\n\n__author__ = 'Ka-Ping Yee <ping@lfw.org>'\n__credits__ = ('GvR, ESR, Tim Peters, Thomas Wouters, Fred Drake, '\n               'Skip Montanaro, Raymond Hettinger, Trent Nelson, '\n               'Michael Foord')\nfrom builtins import open as _builtin_open\nfrom codecs import lookup, BOM_UTF8\nimport collections\nfrom io import TextIOWrapper\nimport itertools as _itertools\nimport re\nimport sys\nfrom token import *\nfrom token import EXACT_TOKEN_TYPES\n\ncookie_re = re.compile(r'^[ \\t\\f]*#.*?coding[:=][ \\t]*([-\\w.]+)', re.ASCII)\nblank_re = re.compile(br'^[ \\t\\f]*(?:[#\\r\\n]|$)', re.ASCII)\n\nimport token\n__all__ = token.__all__ + [\"tokenize\", \"generate_tokens\", \"detect_encoding\",\n                           \"untokenize\", \"TokenInfo\"]\ndel token\n\nclass TokenInfo(collections.namedtuple('TokenInfo', 'type string start end line')):\n    def __repr__(self):\n        annotated_type = '%d (%s)' % (self.type, tok_name[self.type])\n        return ('TokenInfo(type=%s, string=%r, start=%r, end=%r, line=%r)' %\n                self._replace(type=annotated_type))\n\n    @property\n    def exact_type(self):\n        if self.type == OP and self.string in EXACT_TOKEN_TYPES:\n            return EXACT_TOKEN_TYPES[self.string]\n        else:\n            return self.type\n\ndef group(*choices): return '(' + '|'.join(choices) + ')'\ndef any(*choices): return group(*choices) + '*'\ndef maybe(*choices): return group(*choices) + '?'\n\n# Note: we use unicode matching for names (\"\\w\") but ascii matching for\n# number literals.\nWhitespace = r'[ \\f\\t]*'\nComment = r'#[^\\r\\n]*'\nIgnore = Whitespace + any(r'\\\\\\r?\\n' + Whitespace) + maybe(Comment)\nName = r'\\w+'\n\nHexnumber = r'0[xX](?:_?[0-9a-fA-F])+'\nBinnumber = r'0[bB](?:_?[01])+'\nOctnumber = r'0[oO](?:_?[0-7])+'\nDecnumber = r'(?:0(?:_?0)*|[1-9](?:_?[0-9])*)'\nIntnumber = group(Hexnumber, Binnumber, Octnumber, Decnumber)\nExponent = r'[eE][-+]?[0-9](?:_?[0-9])*'\nPointfloat = group(r'[0-9](?:_?[0-9])*\\.(?:[0-9](?:_?[0-9])*)?',\n                   r'\\.[0-9](?:_?[0-9])*') + maybe(Exponent)\nExpfloat = r'[0-9](?:_?[0-9])*' + Exponent\nFloatnumber = group(Pointfloat, Expfloat)\nImagnumber = group(r'[0-9](?:_?[0-9])*[jJ]', Floatnumber + r'[jJ]')\nNumber = group(Imagnumber, Floatnumber, Intnumber)\n\n# Return the empty string, plus all of the valid string prefixes.\ndef _all_string_prefixes():\n    # The valid string prefixes. Only contain the lower case versions,\n    #  and don't contain any permutations (include 'fr', but not\n    #  'rf'). The various permutations will be generated.\n    _valid_string_prefixes = ['b', 'r', 'u', 'f', 'br', 'fr']\n    # if we add binary f-strings, add: ['fb', 'fbr']\n    result = {''}\n    for prefix in _valid_string_prefixes:\n        for t in _itertools.permutations(prefix):\n            # create a list with upper and lower versions of each\n            #  character\n            for u in _itertools.product(*[(c, c.upper()) for c in t]):\n                result.add(''.join(u))\n    return result\n\ndef _compile(expr):\n    return re.compile(expr, re.UNICODE)\n\n# Note that since _all_string_prefixes includes the empty string,\n#  StringPrefix can be the empty string (making it optional).\nStringPrefix = group(*_all_string_prefixes())\n\n# Tail end of ' string.\nSingle = r\"[^'\\\\]*(?:\\\\.[^'\\\\]*)*'\"\n# Tail end of \" string.\nDouble = r'[^\"\\\\]*(?:\\\\.[^\"\\\\]*)*\"'\n# Tail end of ''' string.\nSingle3 = r\"[^'\\\\]*(?:(?:\\\\.|'(?!''))[^'\\\\]*)*'''\"\n# Tail end of \"\"\" string.\nDouble3 = r'[^\"\\\\]*(?:(?:\\\\.|\"(?!\"\"))[^\"\\\\]*)*\"\"\"'\nTriple = group(StringPrefix + \"'''\", StringPrefix + '\"\"\"')\n# Single-line ' or \" string.\nString = group(StringPrefix + r\"'[^\\n'\\\\]*(?:\\\\.[^\\n'\\\\]*)*'\",\n               StringPrefix + r'\"[^\\n\"\\\\]*(?:\\\\.[^\\n\"\\\\]*)*\"')\n\n# Sorting in reverse order puts the long operators before their prefixes.\n# Otherwise if = came before ==, == would get recognized as two instances\n# of =.\nSpecial = group(*map(re.escape, sorted(EXACT_TOKEN_TYPES, reverse=True)))\nFunny = group(r'\\r?\\n', Special)\n\nPlainToken = group(Number, Funny, String, Name)\nToken = Ignore + PlainToken\n\n# First (or only) line of ' or \" string.\nContStr = group(StringPrefix + r\"'[^\\n'\\\\]*(?:\\\\.[^\\n'\\\\]*)*\" +\n                group(\"'\", r'\\\\\\r?\\n'),\n                StringPrefix + r'\"[^\\n\"\\\\]*(?:\\\\.[^\\n\"\\\\]*)*' +\n                group('\"', r'\\\\\\r?\\n'))\nPseudoExtras = group(r'\\\\\\r?\\n|\\Z', Comment, Triple)\nPseudoToken = Whitespace + group(PseudoExtras, Number, Funny, ContStr, Name)\n\n# For a given string prefix plus quotes, endpats maps it to a regex\n#  to match the remainder of that string. _prefix can be empty, for\n#  a normal single or triple quoted string (with no prefix).\nendpats = {}\nfor _prefix in _all_string_prefixes():\n    endpats[_prefix + \"'\"] = Single\n    endpats[_prefix + '\"'] = Double\n    endpats[_prefix + \"'''\"] = Single3\n    endpats[_prefix + '\"\"\"'] = Double3\n\n# A set of all of the single and triple quoted string prefixes,\n#  including the opening quotes.\nsingle_quoted = set()\ntriple_quoted = set()\nfor t in _all_string_prefixes():\n    for u in (t + '\"', t + \"'\"):\n        single_quoted.add(u)\n    for u in (t + '\"\"\"', t + \"'''\"):\n        triple_quoted.add(u)\n\ntabsize = 8\n\nclass TokenError(Exception): pass\n\nclass StopTokenizing(Exception): pass\n\n\nclass Untokenizer:\n\n    def __init__(self):\n        self.tokens = []\n        self.prev_row = 1\n        self.prev_col = 0\n        self.encoding = None\n\n    def add_whitespace(self, start):\n        row, col = start\n        if row < self.prev_row or row == self.prev_row and col < self.prev_col:\n            raise ValueError(\"start ({},{}) precedes previous end ({},{})\"\n                             .format(row, col, self.prev_row, self.prev_col))\n        row_offset = row - self.prev_row\n        if row_offset:\n            self.tokens.append(\"\\\\\\n\" * row_offset)\n            self.prev_col = 0\n        col_offset = col - self.prev_col\n        if col_offset:\n            self.tokens.append(\" \" * col_offset)\n\n    def untokenize(self, iterable):\n        it = iter(iterable)\n        indents = []\n        startline = False\n        for t in it:\n            if len(t) == 2:\n                self.compat(t, it)\n                break\n            tok_type, token, start, end, line = t\n            if tok_type == ENCODING:\n                self.encoding = token\n                continue\n            if tok_type == ENDMARKER:\n                break\n            if tok_type == INDENT:\n                indents.append(token)\n                continue\n            elif tok_type == DEDENT:\n                indents.pop()\n                self.prev_row, self.prev_col = end\n                continue\n            elif tok_type in (NEWLINE, NL):\n                startline = True\n            elif startline and indents:\n                indent = indents[-1]\n                if start[1] >= len(indent):\n                    self.tokens.append(indent)\n                    self.prev_col = len(indent)\n                startline = False\n            self.add_whitespace(start)\n            self.tokens.append(token)\n            self.prev_row, self.prev_col = end\n            if tok_type in (NEWLINE, NL):\n                self.prev_row += 1\n                self.prev_col = 0\n        return \"\".join(self.tokens)\n\n    def compat(self, token, iterable):\n        indents = []\n        toks_append = self.tokens.append\n        startline = token[0] in (NEWLINE, NL)\n        prevstring = False\n\n        for tok in _itertools.chain([token], iterable):\n            toknum, tokval = tok[:2]\n            if toknum == ENCODING:\n                self.encoding = tokval\n                continue\n\n            if toknum in (NAME, NUMBER):\n                tokval += ' '\n\n            # Insert a space between two consecutive strings\n            if toknum == STRING:\n                if prevstring:\n                    tokval = ' ' + tokval\n                prevstring = True\n            else:\n                prevstring = False\n\n            if toknum == INDENT:\n                indents.append(tokval)\n                continue\n            elif toknum == DEDENT:\n                indents.pop()\n                continue\n            elif toknum in (NEWLINE, NL):\n                startline = True\n            elif startline and indents:\n                toks_append(indents[-1])\n                startline = False\n            toks_append(tokval)\n\n\ndef untokenize(iterable):\n    \"\"\"Transform tokens back into Python source code.\n    It returns a bytes object, encoded using the ENCODING\n    token, which is the first token sequence output by tokenize.\n\n    Each element returned by the iterable must be a token sequence\n    with at least two elements, a token number and token value.  If\n    only two tokens are passed, the resulting output is poor.\n\n    Round-trip invariant for full input:\n        Untokenized source will match input source exactly\n\n    Round-trip invariant for limited input:\n        # Output bytes will tokenize back to the input\n        t1 = [tok[:2] for tok in tokenize(f.readline)]\n        newcode = untokenize(t1)\n        readline = BytesIO(newcode).readline\n        t2 = [tok[:2] for tok in tokenize(readline)]\n        assert t1 == t2\n    \"\"\"\n    ut = Untokenizer()\n    out = ut.untokenize(iterable)\n    if ut.encoding is not None:\n        out = out.encode(ut.encoding)\n    return out\n\n\ndef _get_normal_name(orig_enc):\n    \"\"\"Imitates get_normal_name in tokenizer.c.\"\"\"\n    # Only care about the first 12 characters.\n    enc = orig_enc[:12].lower().replace(\"_\", \"-\")\n    if enc == \"utf-8\" or enc.startswith(\"utf-8-\"):\n        return \"utf-8\"\n    if enc in (\"latin-1\", \"iso-8859-1\", \"iso-latin-1\") or \\\n       enc.startswith((\"latin-1-\", \"iso-8859-1-\", \"iso-latin-1-\")):\n        return \"iso-8859-1\"\n    return orig_enc\n\ndef detect_encoding(readline):\n    \"\"\"\n    The detect_encoding() function is used to detect the encoding that should\n    be used to decode a Python source file.  It requires one argument, readline,\n    in the same way as the tokenize() generator.\n\n    It will call readline a maximum of twice, and return the encoding used\n    (as a string) and a list of any lines (left as bytes) it has read in.\n\n    It detects the encoding from the presence of a utf-8 bom or an encoding\n    cookie as specified in pep-0263.  If both a bom and a cookie are present,\n    but disagree, a SyntaxError will be raised.  If the encoding cookie is an\n    invalid charset, raise a SyntaxError.  Note that if a utf-8 bom is found,\n    'utf-8-sig' is returned.\n\n    If no encoding is specified, then the default of 'utf-8' will be returned.\n    \"\"\"\n    try:\n        filename = readline.__self__.name\n    except AttributeError:\n        filename = None\n    bom_found = False\n    encoding = None\n    default = 'utf-8'\n    def read_or_stop():\n        try:\n            return readline()\n        except StopIteration:\n            return b''\n\n    def find_cookie(line):\n        try:\n            # Decode as UTF-8. Either the line is an encoding declaration,\n            # in which case it should be pure ASCII, or it must be UTF-8\n            # per default encoding.\n            line_string = line.decode('utf-8')\n        except UnicodeDecodeError:\n            msg = \"invalid or missing encoding declaration\"\n            if filename is not None:\n                msg = '{} for {!r}'.format(msg, filename)\n            raise SyntaxError(msg)\n\n        match = cookie_re.match(line_string)\n        if not match:\n            return None\n        encoding = _get_normal_name(match.group(1))\n        try:\n            codec = lookup(encoding)\n        except LookupError:\n            # This behaviour mimics the Python interpreter\n            if filename is None:\n                msg = \"unknown encoding: \" + encoding\n            else:\n                msg = \"unknown encoding for {!r}: {}\".format(filename,\n                        encoding)\n            raise SyntaxError(msg)\n\n        if bom_found:\n            if encoding != 'utf-8':\n                # This behaviour mimics the Python interpreter\n                if filename is None:\n                    msg = 'encoding problem: utf-8'\n                else:\n                    msg = 'encoding problem for {!r}: utf-8'.format(filename)\n                raise SyntaxError(msg)\n            encoding += '-sig'\n        return encoding\n\n    first = read_or_stop()\n    if first.startswith(BOM_UTF8):\n        bom_found = True\n        first = first[3:]\n        default = 'utf-8-sig'\n    if not first:\n        return default, []\n\n    encoding = find_cookie(first)\n    if encoding:\n        return encoding, [first]\n    if not blank_re.match(first):\n        return default, [first]\n\n    second = read_or_stop()\n    if not second:\n        return default, [first]\n\n    encoding = find_cookie(second)\n    if encoding:\n        return encoding, [first, second]\n\n    return default, [first, second]\n\n\ndef open(filename):\n    \"\"\"Open a file in read only mode using the encoding detected by\n    detect_encoding().\n    \"\"\"\n    buffer = _builtin_open(filename, 'rb')\n    try:\n        encoding, lines = detect_encoding(buffer.readline)\n        buffer.seek(0)\n        text = TextIOWrapper(buffer, encoding, line_buffering=True)\n        text.mode = 'r'\n        return text\n    except:\n        buffer.close()\n        raise\n\n\ndef tokenize(readline):\n    \"\"\"\n    The tokenize() generator requires one argument, readline, which\n    must be a callable object which provides the same interface as the\n    readline() method of built-in file objects.  Each call to the function\n    should return one line of input as bytes.  Alternatively, readline\n    can be a callable function terminating with StopIteration:\n        readline = open(myfile, 'rb').__next__  # Example of alternate readline\n\n    The generator produces 5-tuples with these members: the token type; the\n    token string; a 2-tuple (srow, scol) of ints specifying the row and\n    column where the token begins in the source; a 2-tuple (erow, ecol) of\n    ints specifying the row and column where the token ends in the source;\n    and the line on which the token was found.  The line passed is the\n    physical line.\n\n    The first token sequence will always be an ENCODING token\n    which tells you which encoding was used to decode the bytes stream.\n    \"\"\"\n    encoding, consumed = detect_encoding(readline)\n    empty = _itertools.repeat(b\"\")\n    rl_gen = _itertools.chain(consumed, iter(readline, b\"\"), empty)\n    return _tokenize(rl_gen.__next__, encoding)\n\n\ndef _tokenize(readline, encoding):\n    lnum = parenlev = continued = 0\n    numchars = '0123456789'\n    contstr, needcont = '', 0\n    contline = None\n    indents = [0]\n\n    if encoding is not None:\n        if encoding == \"utf-8-sig\":\n            # BOM will already have been stripped.\n            encoding = \"utf-8\"\n        yield TokenInfo(ENCODING, encoding, (0, 0), (0, 0), '')\n    last_line = b''\n    line = b''\n    while True:                                # loop over lines in stream\n        try:\n            # We capture the value of the line variable here because\n            # readline uses the empty string '' to signal end of input,\n            # hence `line` itself will always be overwritten at the end\n            # of this loop.\n            last_line = line\n            line = readline()\n        except StopIteration:\n            line = b''\n\n        if encoding is not None:\n            line = line.decode(encoding)\n        lnum += 1\n        pos, max = 0, len(line)\n\n        if contstr:                            # continued string\n            if not line:\n                raise TokenError(\"EOF in multi-line string\", strstart)\n            endmatch = endprog.match(line)\n            if endmatch:\n                pos = end = endmatch.end(0)\n                yield TokenInfo(STRING, contstr + line[:end],\n                       strstart, (lnum, end), contline + line)\n                contstr, needcont = '', 0\n                contline = None\n            elif needcont and line[-2:] != '\\\\\\n' and line[-3:] != '\\\\\\r\\n':\n                yield TokenInfo(ERRORTOKEN, contstr + line,\n                           strstart, (lnum, len(line)), contline)\n                contstr = ''\n                contline = None\n                continue\n            else:\n                contstr = contstr + line\n                contline = contline + line\n                continue\n\n        elif parenlev == 0 and not continued:  # new statement\n            if not line: break\n            column = 0\n            while pos < max:                   # measure leading whitespace\n                if line[pos] == ' ':\n                    column += 1\n                elif line[pos] == '\\t':\n                    column = (column//tabsize + 1)*tabsize\n                elif line[pos] == '\\f':\n                    column = 0\n                else:\n                    break\n                pos += 1\n            if pos == max:\n                break\n\n            if line[pos] in '#\\r\\n':           # skip comments or blank lines\n                if line[pos] == '#':\n                    comment_token = line[pos:].rstrip('\\r\\n')\n                    yield TokenInfo(COMMENT, comment_token,\n                           (lnum, pos), (lnum, pos + len(comment_token)), line)\n                    pos += len(comment_token)\n\n                yield TokenInfo(NL, line[pos:],\n                           (lnum, pos), (lnum, len(line)), line)\n                continue\n\n            if column > indents[-1]:           # count indents or dedents\n                indents.append(column)\n                yield TokenInfo(INDENT, line[:pos], (lnum, 0), (lnum, pos), line)\n            while column < indents[-1]:\n                if column not in indents:\n                    raise IndentationError(\n                        \"unindent does not match any outer indentation level\",\n                        (\"<tokenize>\", lnum, pos, line))\n                indents = indents[:-1]\n\n                yield TokenInfo(DEDENT, '', (lnum, pos), (lnum, pos), line)\n\n        else:                                  # continued statement\n            if not line:\n                raise TokenError(\"EOF in multi-line statement\", (lnum, 0))\n            continued = 0\n\n        while pos < max:\n            pseudomatch = _compile(PseudoToken).match(line, pos)\n            if pseudomatch:                                # scan for tokens\n                start, end = pseudomatch.span(1)\n                spos, epos, pos = (lnum, start), (lnum, end), end\n                if start == end:\n                    continue\n                token, initial = line[start:end], line[start]\n\n                if (initial in numchars or                 # ordinary number\n                    (initial == '.' and token != '.' and token != '...')):\n                    yield TokenInfo(NUMBER, token, spos, epos, line)\n                elif initial in '\\r\\n':\n                    if parenlev > 0:\n                        yield TokenInfo(NL, token, spos, epos, line)\n                    else:\n                        yield TokenInfo(NEWLINE, token, spos, epos, line)\n\n                elif initial == '#':\n                    assert not token.endswith(\"\\n\")\n                    yield TokenInfo(COMMENT, token, spos, epos, line)\n\n                elif token in triple_quoted:\n                    endprog = _compile(endpats[token])\n                    endmatch = endprog.match(line, pos)\n                    if endmatch:                           # all on one line\n                        pos = endmatch.end(0)\n                        token = line[start:pos]\n                        yield TokenInfo(STRING, token, spos, (lnum, pos), line)\n                    else:\n                        strstart = (lnum, start)           # multiple lines\n                        contstr = line[start:]\n                        contline = line\n                        break\n\n                # Check up to the first 3 chars of the token to see if\n                #  they're in the single_quoted set. If so, they start\n                #  a string.\n                # We're using the first 3, because we're looking for\n                #  \"rb'\" (for example) at the start of the token. If\n                #  we switch to longer prefixes, this needs to be\n                #  adjusted.\n                # Note that initial == token[:1].\n                # Also note that single quote checking must come after\n                #  triple quote checking (above).\n                elif (initial in single_quoted or\n                      token[:2] in single_quoted or\n                      token[:3] in single_quoted):\n                    if token[-1] == '\\n':                  # continued string\n                        strstart = (lnum, start)\n                        # Again, using the first 3 chars of the\n                        #  token. This is looking for the matching end\n                        #  regex for the correct type of quote\n                        #  character. So it's really looking for\n                        #  endpats[\"'\"] or endpats['\"'], by trying to\n                        #  skip string prefix characters, if any.\n                        endprog = _compile(endpats.get(initial) or\n                                           endpats.get(token[1]) or\n                                           endpats.get(token[2]))\n                        contstr, needcont = line[start:], 1\n                        contline = line\n                        break\n                    else:                                  # ordinary string\n                        yield TokenInfo(STRING, token, spos, epos, line)\n\n                elif initial.isidentifier():               # ordinary name\n                    yield TokenInfo(NAME, token, spos, epos, line)\n                elif initial == '\\\\':                      # continued stmt\n                    continued = 1\n                else:\n                    if initial in '([{':\n                        parenlev += 1\n                    elif initial in ')]}':\n                        parenlev -= 1\n                    yield TokenInfo(OP, token, spos, epos, line)\n            else:\n                yield TokenInfo(ERRORTOKEN, line[pos],\n                           (lnum, pos), (lnum, pos+1), line)\n                pos += 1\n\n    # Add an implicit NEWLINE if the input doesn't end in one\n    if last_line and last_line[-1] not in '\\r\\n':\n        yield TokenInfo(NEWLINE, '', (lnum - 1, len(last_line)), (lnum - 1, len(last_line) + 1), '')\n    for indent in indents[1:]:                 # pop remaining indent levels\n        yield TokenInfo(DEDENT, '', (lnum, 0), (lnum, 0), '')\n    yield TokenInfo(ENDMARKER, '', (lnum, 0), (lnum, 0), '')\n\n\ndef generate_tokens(readline):\n    \"\"\"Tokenize a source reading Python code as unicode strings.\n\n    This has the same API as tokenize(), except that it expects the *readline*\n    callable to return str objects instead of bytes.\n    \"\"\"\n    return _tokenize(readline, None)\n\ndef main():\n    import argparse\n\n    # Helper error handling routines\n    def perror(message):\n        sys.stderr.write(message)\n        sys.stderr.write('\\n')\n\n    def error(message, filename=None, location=None):\n        if location:\n            args = (filename,) + location + (message,)\n            perror(\"%s:%d:%d: error: %s\" % args)\n        elif filename:\n            perror(\"%s: error: %s\" % (filename, message))\n        else:\n            perror(\"error: %s\" % message)\n        sys.exit(1)\n\n    # Parse the arguments and options\n    parser = argparse.ArgumentParser(prog='python -m tokenize')\n    parser.add_argument(dest='filename', nargs='?',\n                        metavar='filename.py',\n                        help='the file to tokenize; defaults to stdin')\n    parser.add_argument('-e', '--exact', dest='exact', action='store_true',\n                        help='display token names using the exact type')\n    args = parser.parse_args()\n\n    try:\n        # Tokenize the input\n        if args.filename:\n            filename = args.filename\n            with _builtin_open(filename, 'rb') as f:\n                tokens = list(tokenize(f.readline))\n        else:\n            filename = \"<stdin>\"\n            tokens = _tokenize(sys.stdin.readline, None)\n\n        # Output the tokenization\n        for token in tokens:\n            token_type = token.type\n            if args.exact:\n                token_type = token.exact_type\n            token_range = \"%d,%d-%d,%d:\" % (token.start + token.end)\n            print(\"%-20s%-15s%-15r\" %\n                  (token_range, tok_name[token_type], token.string))\n    except IndentationError as err:\n        line, column = err.args[1][1:3]\n        error(err.args[0], filename, (line, column))\n    except TokenError as err:\n        line, column = err.args[1]\n        error(err.args[0], filename, (line, column))\n    except SyntaxError as err:\n        error(err, filename)\n    except OSError as err:\n        error(err)\n    except KeyboardInterrupt:\n        print(\"interrupted\\n\")\n    except Exception as err:\n        perror(\"unexpected error: %s\" % err)\n        raise\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/trace.py",
    "content": "#!/usr/bin/env python3\n\n# portions copyright 2001, Autonomous Zones Industries, Inc., all rights...\n# err...  reserved and offered to the public under the terms of the\n# Python 2.2 license.\n# Author: Zooko O'Whielacronx\n# http://zooko.com/\n# mailto:zooko@zooko.com\n#\n# Copyright 2000, Mojam Media, Inc., all rights reserved.\n# Author: Skip Montanaro\n#\n# Copyright 1999, Bioreason, Inc., all rights reserved.\n# Author: Andrew Dalke\n#\n# Copyright 1995-1997, Automatrix, Inc., all rights reserved.\n# Author: Skip Montanaro\n#\n# Copyright 1991-1995, Stichting Mathematisch Centrum, all rights reserved.\n#\n#\n# Permission to use, copy, modify, and distribute this Python software and\n# its associated documentation for any purpose without fee is hereby\n# granted, provided that the above copyright notice appears in all copies,\n# and that both that copyright notice and this permission notice appear in\n# supporting documentation, and that the name of neither Automatrix,\n# Bioreason or Mojam Media be used in advertising or publicity pertaining to\n# distribution of the software without specific, written prior permission.\n#\n\"\"\"program/module to trace Python program or function execution\n\nSample use, command line:\n  trace.py -c -f counts --ignore-dir '$prefix' spam.py eggs\n  trace.py -t --ignore-dir '$prefix' spam.py eggs\n  trace.py --trackcalls spam.py eggs\n\nSample use, programmatically\n  import sys\n\n  # create a Trace object, telling it what to ignore, and whether to\n  # do tracing or line-counting or both.\n  tracer = trace.Trace(ignoredirs=[sys.base_prefix, sys.base_exec_prefix,],\n                       trace=0, count=1)\n  # run the new command using the given tracer\n  tracer.run('main()')\n  # make a report, placing output in /tmp\n  r = tracer.results()\n  r.write_results(show_missing=True, coverdir=\"/tmp\")\n\"\"\"\n__all__ = ['Trace', 'CoverageResults']\n\nimport linecache\nimport os\nimport sys\nimport sysconfig\nimport token\nimport tokenize\nimport inspect\nimport gc\nimport dis\nimport pickle\nfrom time import monotonic as _time\n\nimport threading\n\nPRAGMA_NOCOVER = \"#pragma NO COVER\"\n\nclass _Ignore:\n    def __init__(self, modules=None, dirs=None):\n        self._mods = set() if not modules else set(modules)\n        self._dirs = [] if not dirs else [os.path.normpath(d)\n                                          for d in dirs]\n        self._ignore = { '<string>': 1 }\n\n    def names(self, filename, modulename):\n        if modulename in self._ignore:\n            return self._ignore[modulename]\n\n        # haven't seen this one before, so see if the module name is\n        # on the ignore list.\n        if modulename in self._mods:  # Identical names, so ignore\n            self._ignore[modulename] = 1\n            return 1\n\n        # check if the module is a proper submodule of something on\n        # the ignore list\n        for mod in self._mods:\n            # Need to take some care since ignoring\n            # \"cmp\" mustn't mean ignoring \"cmpcache\" but ignoring\n            # \"Spam\" must also mean ignoring \"Spam.Eggs\".\n            if modulename.startswith(mod + '.'):\n                self._ignore[modulename] = 1\n                return 1\n\n        # Now check that filename isn't in one of the directories\n        if filename is None:\n            # must be a built-in, so we must ignore\n            self._ignore[modulename] = 1\n            return 1\n\n        # Ignore a file when it contains one of the ignorable paths\n        for d in self._dirs:\n            # The '+ os.sep' is to ensure that d is a parent directory,\n            # as compared to cases like:\n            #  d = \"/usr/local\"\n            #  filename = \"/usr/local.py\"\n            # or\n            #  d = \"/usr/local.py\"\n            #  filename = \"/usr/local.py\"\n            if filename.startswith(d + os.sep):\n                self._ignore[modulename] = 1\n                return 1\n\n        # Tried the different ways, so we don't ignore this module\n        self._ignore[modulename] = 0\n        return 0\n\ndef _modname(path):\n    \"\"\"Return a plausible module name for the patch.\"\"\"\n\n    base = os.path.basename(path)\n    filename, ext = os.path.splitext(base)\n    return filename\n\ndef _fullmodname(path):\n    \"\"\"Return a plausible module name for the path.\"\"\"\n\n    # If the file 'path' is part of a package, then the filename isn't\n    # enough to uniquely identify it.  Try to do the right thing by\n    # looking in sys.path for the longest matching prefix.  We'll\n    # assume that the rest is the package name.\n\n    comparepath = os.path.normcase(path)\n    longest = \"\"\n    for dir in sys.path:\n        dir = os.path.normcase(dir)\n        if comparepath.startswith(dir) and comparepath[len(dir)] == os.sep:\n            if len(dir) > len(longest):\n                longest = dir\n\n    if longest:\n        base = path[len(longest) + 1:]\n    else:\n        base = path\n    # the drive letter is never part of the module name\n    drive, base = os.path.splitdrive(base)\n    base = base.replace(os.sep, \".\")\n    if os.altsep:\n        base = base.replace(os.altsep, \".\")\n    filename, ext = os.path.splitext(base)\n    return filename.lstrip(\".\")\n\nclass CoverageResults:\n    def __init__(self, counts=None, calledfuncs=None, infile=None,\n                 callers=None, outfile=None):\n        self.counts = counts\n        if self.counts is None:\n            self.counts = {}\n        self.counter = self.counts.copy() # map (filename, lineno) to count\n        self.calledfuncs = calledfuncs\n        if self.calledfuncs is None:\n            self.calledfuncs = {}\n        self.calledfuncs = self.calledfuncs.copy()\n        self.callers = callers\n        if self.callers is None:\n            self.callers = {}\n        self.callers = self.callers.copy()\n        self.infile = infile\n        self.outfile = outfile\n        if self.infile:\n            # Try to merge existing counts file.\n            try:\n                with open(self.infile, 'rb') as f:\n                    counts, calledfuncs, callers = pickle.load(f)\n                self.update(self.__class__(counts, calledfuncs, callers))\n            except (OSError, EOFError, ValueError) as err:\n                print((\"Skipping counts file %r: %s\"\n                                      % (self.infile, err)), file=sys.stderr)\n\n    def is_ignored_filename(self, filename):\n        \"\"\"Return True if the filename does not refer to a file\n        we want to have reported.\n        \"\"\"\n        return filename.startswith('<') and filename.endswith('>')\n\n    def update(self, other):\n        \"\"\"Merge in the data from another CoverageResults\"\"\"\n        counts = self.counts\n        calledfuncs = self.calledfuncs\n        callers = self.callers\n        other_counts = other.counts\n        other_calledfuncs = other.calledfuncs\n        other_callers = other.callers\n\n        for key in other_counts:\n            counts[key] = counts.get(key, 0) + other_counts[key]\n\n        for key in other_calledfuncs:\n            calledfuncs[key] = 1\n\n        for key in other_callers:\n            callers[key] = 1\n\n    def write_results(self, show_missing=True, summary=False, coverdir=None):\n        \"\"\"\n        Write the coverage results.\n\n        :param show_missing: Show lines that had no hits.\n        :param summary: Include coverage summary per module.\n        :param coverdir: If None, the results of each module are placed in its\n                         directory, otherwise it is included in the directory\n                         specified.\n        \"\"\"\n        if self.calledfuncs:\n            print()\n            print(\"functions called:\")\n            calls = self.calledfuncs\n            for filename, modulename, funcname in sorted(calls):\n                print((\"filename: %s, modulename: %s, funcname: %s\"\n                       % (filename, modulename, funcname)))\n\n        if self.callers:\n            print()\n            print(\"calling relationships:\")\n            lastfile = lastcfile = \"\"\n            for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) \\\n                    in sorted(self.callers):\n                if pfile != lastfile:\n                    print()\n                    print(\"***\", pfile, \"***\")\n                    lastfile = pfile\n                    lastcfile = \"\"\n                if cfile != pfile and lastcfile != cfile:\n                    print(\"  -->\", cfile)\n                    lastcfile = cfile\n                print(\"    %s.%s -> %s.%s\" % (pmod, pfunc, cmod, cfunc))\n\n        # turn the counts data (\"(filename, lineno) = count\") into something\n        # accessible on a per-file basis\n        per_file = {}\n        for filename, lineno in self.counts:\n            lines_hit = per_file[filename] = per_file.get(filename, {})\n            lines_hit[lineno] = self.counts[(filename, lineno)]\n\n        # accumulate summary info, if needed\n        sums = {}\n\n        for filename, count in per_file.items():\n            if self.is_ignored_filename(filename):\n                continue\n\n            if filename.endswith(\".pyc\"):\n                filename = filename[:-1]\n\n            if coverdir is None:\n                dir = os.path.dirname(os.path.abspath(filename))\n                modulename = _modname(filename)\n            else:\n                dir = coverdir\n                if not os.path.exists(dir):\n                    os.makedirs(dir)\n                modulename = _fullmodname(filename)\n\n            # If desired, get a list of the line numbers which represent\n            # executable content (returned as a dict for better lookup speed)\n            if show_missing:\n                lnotab = _find_executable_linenos(filename)\n            else:\n                lnotab = {}\n            source = linecache.getlines(filename)\n            coverpath = os.path.join(dir, modulename + \".cover\")\n            with open(filename, 'rb') as fp:\n                encoding, _ = tokenize.detect_encoding(fp.readline)\n            n_hits, n_lines = self.write_results_file(coverpath, source,\n                                                      lnotab, count, encoding)\n            if summary and n_lines:\n                percent = int(100 * n_hits / n_lines)\n                sums[modulename] = n_lines, percent, modulename, filename\n\n\n        if summary and sums:\n            print(\"lines   cov%   module   (path)\")\n            for m in sorted(sums):\n                n_lines, percent, modulename, filename = sums[m]\n                print(\"%5d   %3d%%   %s   (%s)\" % sums[m])\n\n        if self.outfile:\n            # try and store counts and module info into self.outfile\n            try:\n                with open(self.outfile, 'wb') as f:\n                    pickle.dump((self.counts, self.calledfuncs, self.callers),\n                                f, 1)\n            except OSError as err:\n                print(\"Can't save counts files because %s\" % err, file=sys.stderr)\n\n    def write_results_file(self, path, lines, lnotab, lines_hit, encoding=None):\n        \"\"\"Return a coverage results file in path.\"\"\"\n        # ``lnotab`` is a dict of executable lines, or a line number \"table\"\n\n        try:\n            outfile = open(path, \"w\", encoding=encoding)\n        except OSError as err:\n            print((\"trace: Could not open %r for writing: %s \"\n                                  \"- skipping\" % (path, err)), file=sys.stderr)\n            return 0, 0\n\n        n_lines = 0\n        n_hits = 0\n        with outfile:\n            for lineno, line in enumerate(lines, 1):\n                # do the blank/comment match to try to mark more lines\n                # (help the reader find stuff that hasn't been covered)\n                if lineno in lines_hit:\n                    outfile.write(\"%5d: \" % lines_hit[lineno])\n                    n_hits += 1\n                    n_lines += 1\n                elif lineno in lnotab and not PRAGMA_NOCOVER in line:\n                    # Highlight never-executed lines, unless the line contains\n                    # #pragma: NO COVER\n                    outfile.write(\">>>>>> \")\n                    n_lines += 1\n                else:\n                    outfile.write(\"       \")\n                outfile.write(line.expandtabs(8))\n\n        return n_hits, n_lines\n\ndef _find_lines_from_code(code, strs):\n    \"\"\"Return dict where keys are lines in the line number table.\"\"\"\n    linenos = {}\n\n    for _, lineno in dis.findlinestarts(code):\n        if lineno not in strs:\n            linenos[lineno] = 1\n\n    return linenos\n\ndef _find_lines(code, strs):\n    \"\"\"Return lineno dict for all code objects reachable from code.\"\"\"\n    # get all of the lineno information from the code of this scope level\n    linenos = _find_lines_from_code(code, strs)\n\n    # and check the constants for references to other code objects\n    for c in code.co_consts:\n        if inspect.iscode(c):\n            # find another code object, so recurse into it\n            linenos.update(_find_lines(c, strs))\n    return linenos\n\ndef _find_strings(filename, encoding=None):\n    \"\"\"Return a dict of possible docstring positions.\n\n    The dict maps line numbers to strings.  There is an entry for\n    line that contains only a string or a part of a triple-quoted\n    string.\n    \"\"\"\n    d = {}\n    # If the first token is a string, then it's the module docstring.\n    # Add this special case so that the test in the loop passes.\n    prev_ttype = token.INDENT\n    with open(filename, encoding=encoding) as f:\n        tok = tokenize.generate_tokens(f.readline)\n        for ttype, tstr, start, end, line in tok:\n            if ttype == token.STRING:\n                if prev_ttype == token.INDENT:\n                    sline, scol = start\n                    eline, ecol = end\n                    for i in range(sline, eline + 1):\n                        d[i] = 1\n            prev_ttype = ttype\n    return d\n\ndef _find_executable_linenos(filename):\n    \"\"\"Return dict where keys are line numbers in the line number table.\"\"\"\n    try:\n        with tokenize.open(filename) as f:\n            prog = f.read()\n            encoding = f.encoding\n    except OSError as err:\n        print((\"Not printing coverage data for %r: %s\"\n                              % (filename, err)), file=sys.stderr)\n        return {}\n    code = compile(prog, filename, \"exec\")\n    strs = _find_strings(filename, encoding)\n    return _find_lines(code, strs)\n\nclass Trace:\n    def __init__(self, count=1, trace=1, countfuncs=0, countcallers=0,\n                 ignoremods=(), ignoredirs=(), infile=None, outfile=None,\n                 timing=False):\n        \"\"\"\n        @param count true iff it should count number of times each\n                     line is executed\n        @param trace true iff it should print out each line that is\n                     being counted\n        @param countfuncs true iff it should just output a list of\n                     (filename, modulename, funcname,) for functions\n                     that were called at least once;  This overrides\n                     `count' and `trace'\n        @param ignoremods a list of the names of modules to ignore\n        @param ignoredirs a list of the names of directories to ignore\n                     all of the (recursive) contents of\n        @param infile file from which to read stored counts to be\n                     added into the results\n        @param outfile file in which to write the results\n        @param timing true iff timing information be displayed\n        \"\"\"\n        self.infile = infile\n        self.outfile = outfile\n        self.ignore = _Ignore(ignoremods, ignoredirs)\n        self.counts = {}   # keys are (filename, linenumber)\n        self.pathtobasename = {} # for memoizing os.path.basename\n        self.donothing = 0\n        self.trace = trace\n        self._calledfuncs = {}\n        self._callers = {}\n        self._caller_cache = {}\n        self.start_time = None\n        if timing:\n            self.start_time = _time()\n        if countcallers:\n            self.globaltrace = self.globaltrace_trackcallers\n        elif countfuncs:\n            self.globaltrace = self.globaltrace_countfuncs\n        elif trace and count:\n            self.globaltrace = self.globaltrace_lt\n            self.localtrace = self.localtrace_trace_and_count\n        elif trace:\n            self.globaltrace = self.globaltrace_lt\n            self.localtrace = self.localtrace_trace\n        elif count:\n            self.globaltrace = self.globaltrace_lt\n            self.localtrace = self.localtrace_count\n        else:\n            # Ahem -- do nothing?  Okay.\n            self.donothing = 1\n\n    def run(self, cmd):\n        import __main__\n        dict = __main__.__dict__\n        self.runctx(cmd, dict, dict)\n\n    def runctx(self, cmd, globals=None, locals=None):\n        if globals is None: globals = {}\n        if locals is None: locals = {}\n        if not self.donothing:\n            threading.settrace(self.globaltrace)\n            sys.settrace(self.globaltrace)\n        try:\n            exec(cmd, globals, locals)\n        finally:\n            if not self.donothing:\n                sys.settrace(None)\n                threading.settrace(None)\n\n    def runfunc(*args, **kw):\n        if len(args) >= 2:\n            self, func, *args = args\n        elif not args:\n            raise TypeError(\"descriptor 'runfunc' of 'Trace' object \"\n                            \"needs an argument\")\n        elif 'func' in kw:\n            func = kw.pop('func')\n            self, *args = args\n            import warnings\n            warnings.warn(\"Passing 'func' as keyword argument is deprecated\",\n                          DeprecationWarning, stacklevel=2)\n        else:\n            raise TypeError('runfunc expected at least 1 positional argument, '\n                            'got %d' % (len(args)-1))\n\n        result = None\n        if not self.donothing:\n            sys.settrace(self.globaltrace)\n        try:\n            result = func(*args, **kw)\n        finally:\n            if not self.donothing:\n                sys.settrace(None)\n        return result\n    runfunc.__text_signature__ = '($self, func, /, *args, **kw)'\n\n    def file_module_function_of(self, frame):\n        code = frame.f_code\n        filename = code.co_filename\n        if filename:\n            modulename = _modname(filename)\n        else:\n            modulename = None\n\n        funcname = code.co_name\n        clsname = None\n        if code in self._caller_cache:\n            if self._caller_cache[code] is not None:\n                clsname = self._caller_cache[code]\n        else:\n            self._caller_cache[code] = None\n            ## use of gc.get_referrers() was suggested by Michael Hudson\n            # all functions which refer to this code object\n            funcs = [f for f in gc.get_referrers(code)\n                         if inspect.isfunction(f)]\n            # require len(func) == 1 to avoid ambiguity caused by calls to\n            # new.function(): \"In the face of ambiguity, refuse the\n            # temptation to guess.\"\n            if len(funcs) == 1:\n                dicts = [d for d in gc.get_referrers(funcs[0])\n                             if isinstance(d, dict)]\n                if len(dicts) == 1:\n                    classes = [c for c in gc.get_referrers(dicts[0])\n                                   if hasattr(c, \"__bases__\")]\n                    if len(classes) == 1:\n                        # ditto for new.classobj()\n                        clsname = classes[0].__name__\n                        # cache the result - assumption is that new.* is\n                        # not called later to disturb this relationship\n                        # _caller_cache could be flushed if functions in\n                        # the new module get called.\n                        self._caller_cache[code] = clsname\n        if clsname is not None:\n            funcname = \"%s.%s\" % (clsname, funcname)\n\n        return filename, modulename, funcname\n\n    def globaltrace_trackcallers(self, frame, why, arg):\n        \"\"\"Handler for call events.\n\n        Adds information about who called who to the self._callers dict.\n        \"\"\"\n        if why == 'call':\n            # XXX Should do a better job of identifying methods\n            this_func = self.file_module_function_of(frame)\n            parent_func = self.file_module_function_of(frame.f_back)\n            self._callers[(parent_func, this_func)] = 1\n\n    def globaltrace_countfuncs(self, frame, why, arg):\n        \"\"\"Handler for call events.\n\n        Adds (filename, modulename, funcname) to the self._calledfuncs dict.\n        \"\"\"\n        if why == 'call':\n            this_func = self.file_module_function_of(frame)\n            self._calledfuncs[this_func] = 1\n\n    def globaltrace_lt(self, frame, why, arg):\n        \"\"\"Handler for call events.\n\n        If the code block being entered is to be ignored, returns `None',\n        else returns self.localtrace.\n        \"\"\"\n        if why == 'call':\n            code = frame.f_code\n            filename = frame.f_globals.get('__file__', None)\n            if filename:\n                # XXX _modname() doesn't work right for packages, so\n                # the ignore support won't work right for packages\n                modulename = _modname(filename)\n                if modulename is not None:\n                    ignore_it = self.ignore.names(filename, modulename)\n                    if not ignore_it:\n                        if self.trace:\n                            print((\" --- modulename: %s, funcname: %s\"\n                                   % (modulename, code.co_name)))\n                        return self.localtrace\n            else:\n                return None\n\n    def localtrace_trace_and_count(self, frame, why, arg):\n        if why == \"line\":\n            # record the file name and line number of every trace\n            filename = frame.f_code.co_filename\n            lineno = frame.f_lineno\n            key = filename, lineno\n            self.counts[key] = self.counts.get(key, 0) + 1\n\n            if self.start_time:\n                print('%.2f' % (_time() - self.start_time), end=' ')\n            bname = os.path.basename(filename)\n            print(\"%s(%d): %s\" % (bname, lineno,\n                                  linecache.getline(filename, lineno)), end='')\n        return self.localtrace\n\n    def localtrace_trace(self, frame, why, arg):\n        if why == \"line\":\n            # record the file name and line number of every trace\n            filename = frame.f_code.co_filename\n            lineno = frame.f_lineno\n\n            if self.start_time:\n                print('%.2f' % (_time() - self.start_time), end=' ')\n            bname = os.path.basename(filename)\n            print(\"%s(%d): %s\" % (bname, lineno,\n                                  linecache.getline(filename, lineno)), end='')\n        return self.localtrace\n\n    def localtrace_count(self, frame, why, arg):\n        if why == \"line\":\n            filename = frame.f_code.co_filename\n            lineno = frame.f_lineno\n            key = filename, lineno\n            self.counts[key] = self.counts.get(key, 0) + 1\n        return self.localtrace\n\n    def results(self):\n        return CoverageResults(self.counts, infile=self.infile,\n                               outfile=self.outfile,\n                               calledfuncs=self._calledfuncs,\n                               callers=self._callers)\n\ndef main():\n    import argparse\n\n    parser = argparse.ArgumentParser()\n    parser.add_argument('--version', action='version', version='trace 2.0')\n\n    grp = parser.add_argument_group('Main options',\n            'One of these (or --report) must be given')\n\n    grp.add_argument('-c', '--count', action='store_true',\n            help='Count the number of times each line is executed and write '\n                 'the counts to <module>.cover for each module executed, in '\n                 'the module\\'s directory. See also --coverdir, --file, '\n                 '--no-report below.')\n    grp.add_argument('-t', '--trace', action='store_true',\n            help='Print each line to sys.stdout before it is executed')\n    grp.add_argument('-l', '--listfuncs', action='store_true',\n            help='Keep track of which functions are executed at least once '\n                 'and write the results to sys.stdout after the program exits. '\n                 'Cannot be specified alongside --trace or --count.')\n    grp.add_argument('-T', '--trackcalls', action='store_true',\n            help='Keep track of caller/called pairs and write the results to '\n                 'sys.stdout after the program exits.')\n\n    grp = parser.add_argument_group('Modifiers')\n\n    _grp = grp.add_mutually_exclusive_group()\n    _grp.add_argument('-r', '--report', action='store_true',\n            help='Generate a report from a counts file; does not execute any '\n                 'code. --file must specify the results file to read, which '\n                 'must have been created in a previous run with --count '\n                 '--file=FILE')\n    _grp.add_argument('-R', '--no-report', action='store_true',\n            help='Do not generate the coverage report files. '\n                 'Useful if you want to accumulate over several runs.')\n\n    grp.add_argument('-f', '--file',\n            help='File to accumulate counts over several runs')\n    grp.add_argument('-C', '--coverdir',\n            help='Directory where the report files go. The coverage report '\n                 'for <package>.<module> will be written to file '\n                 '<dir>/<package>/<module>.cover')\n    grp.add_argument('-m', '--missing', action='store_true',\n            help='Annotate executable lines that were not executed with '\n                 '\">>>>>> \"')\n    grp.add_argument('-s', '--summary', action='store_true',\n            help='Write a brief summary for each file to sys.stdout. '\n                 'Can only be used with --count or --report')\n    grp.add_argument('-g', '--timing', action='store_true',\n            help='Prefix each line with the time since the program started. '\n                 'Only used while tracing')\n\n    grp = parser.add_argument_group('Filters',\n            'Can be specified multiple times')\n    grp.add_argument('--ignore-module', action='append', default=[],\n            help='Ignore the given module(s) and its submodules '\n                 '(if it is a package). Accepts comma separated list of '\n                 'module names.')\n    grp.add_argument('--ignore-dir', action='append', default=[],\n            help='Ignore files in the given directory '\n                 '(multiple directories can be joined by os.pathsep).')\n\n    parser.add_argument('--module', action='store_true', default=False,\n                        help='Trace a module. ')\n    parser.add_argument('progname', nargs='?',\n            help='file to run as main program')\n    parser.add_argument('arguments', nargs=argparse.REMAINDER,\n            help='arguments to the program')\n\n    opts = parser.parse_args()\n\n    if opts.ignore_dir:\n        _prefix = sysconfig.get_path(\"stdlib\")\n        _exec_prefix = sysconfig.get_path(\"platstdlib\")\n\n    def parse_ignore_dir(s):\n        s = os.path.expanduser(os.path.expandvars(s))\n        s = s.replace('$prefix', _prefix).replace('$exec_prefix', _exec_prefix)\n        return os.path.normpath(s)\n\n    opts.ignore_module = [mod.strip()\n                          for i in opts.ignore_module for mod in i.split(',')]\n    opts.ignore_dir = [parse_ignore_dir(s)\n                       for i in opts.ignore_dir for s in i.split(os.pathsep)]\n\n    if opts.report:\n        if not opts.file:\n            parser.error('-r/--report requires -f/--file')\n        results = CoverageResults(infile=opts.file, outfile=opts.file)\n        return results.write_results(opts.missing, opts.summary, opts.coverdir)\n\n    if not any([opts.trace, opts.count, opts.listfuncs, opts.trackcalls]):\n        parser.error('must specify one of --trace, --count, --report, '\n                     '--listfuncs, or --trackcalls')\n\n    if opts.listfuncs and (opts.count or opts.trace):\n        parser.error('cannot specify both --listfuncs and (--trace or --count)')\n\n    if opts.summary and not opts.count:\n        parser.error('--summary can only be used with --count or --report')\n\n    if opts.progname is None:\n        parser.error('progname is missing: required with the main options')\n\n    t = Trace(opts.count, opts.trace, countfuncs=opts.listfuncs,\n              countcallers=opts.trackcalls, ignoremods=opts.ignore_module,\n              ignoredirs=opts.ignore_dir, infile=opts.file,\n              outfile=opts.file, timing=opts.timing)\n    try:\n        if opts.module:\n            import runpy\n            module_name = opts.progname\n            mod_name, mod_spec, code = runpy._get_module_details(module_name)\n            sys.argv = [code.co_filename, *opts.arguments]\n            globs = {\n                '__name__': '__main__',\n                '__file__': code.co_filename,\n                '__package__': mod_spec.parent,\n                '__loader__': mod_spec.loader,\n                '__spec__': mod_spec,\n                '__cached__': None,\n            }\n        else:\n            sys.argv = [opts.progname, *opts.arguments]\n            sys.path[0] = os.path.dirname(opts.progname)\n\n            with open(opts.progname, 'rb') as fp:\n                code = compile(fp.read(), opts.progname, 'exec')\n            # try to emulate __main__ namespace as much as possible\n            globs = {\n                '__file__': opts.progname,\n                '__name__': '__main__',\n                '__package__': None,\n                '__cached__': None,\n            }\n        t.runctx(code, globs, globs)\n    except OSError as err:\n        sys.exit(\"Cannot run file %r because: %s\" % (sys.argv[0], err))\n    except SystemExit:\n        pass\n\n    results = t.results()\n\n    if not opts.no_report:\n        results.write_results(opts.missing, opts.summary, opts.coverdir)\n\nif __name__=='__main__':\n    main()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/traceback.py",
    "content": "\"\"\"Extract, format and print information about Python stack traces.\"\"\"\n\nimport collections\nimport itertools\nimport linecache\nimport sys\n\n__all__ = ['extract_stack', 'extract_tb', 'format_exception',\n           'format_exception_only', 'format_list', 'format_stack',\n           'format_tb', 'print_exc', 'format_exc', 'print_exception',\n           'print_last', 'print_stack', 'print_tb', 'clear_frames',\n           'FrameSummary', 'StackSummary', 'TracebackException',\n           'walk_stack', 'walk_tb']\n\n#\n# Formatting and printing lists of traceback lines.\n#\n\ndef print_list(extracted_list, file=None):\n    \"\"\"Print the list of tuples as returned by extract_tb() or\n    extract_stack() as a formatted stack trace to the given file.\"\"\"\n    if file is None:\n        file = sys.stderr\n    for item in StackSummary.from_list(extracted_list).format():\n        print(item, file=file, end=\"\")\n\ndef format_list(extracted_list):\n    \"\"\"Format a list of tuples or FrameSummary objects for printing.\n\n    Given a list of tuples or FrameSummary objects as returned by\n    extract_tb() or extract_stack(), return a list of strings ready\n    for printing.\n\n    Each string in the resulting list corresponds to the item with the\n    same index in the argument list.  Each string ends in a newline;\n    the strings may contain internal newlines as well, for those items\n    whose source text line is not None.\n    \"\"\"\n    return StackSummary.from_list(extracted_list).format()\n\n#\n# Printing and Extracting Tracebacks.\n#\n\ndef print_tb(tb, limit=None, file=None):\n    \"\"\"Print up to 'limit' stack trace entries from the traceback 'tb'.\n\n    If 'limit' is omitted or None, all entries are printed.  If 'file'\n    is omitted or None, the output goes to sys.stderr; otherwise\n    'file' should be an open file or file-like object with a write()\n    method.\n    \"\"\"\n    print_list(extract_tb(tb, limit=limit), file=file)\n\ndef format_tb(tb, limit=None):\n    \"\"\"A shorthand for 'format_list(extract_tb(tb, limit))'.\"\"\"\n    return extract_tb(tb, limit=limit).format()\n\ndef extract_tb(tb, limit=None):\n    \"\"\"\n    Return a StackSummary object representing a list of\n    pre-processed entries from traceback.\n\n    This is useful for alternate formatting of stack traces.  If\n    'limit' is omitted or None, all entries are extracted.  A\n    pre-processed stack trace entry is a FrameSummary object\n    containing attributes filename, lineno, name, and line\n    representing the information that is usually printed for a stack\n    trace.  The line is a string with leading and trailing\n    whitespace stripped; if the source is not available it is None.\n    \"\"\"\n    return StackSummary.extract(walk_tb(tb), limit=limit)\n\n#\n# Exception formatting and output.\n#\n\n_cause_message = (\n    \"\\nThe above exception was the direct cause \"\n    \"of the following exception:\\n\\n\")\n\n_context_message = (\n    \"\\nDuring handling of the above exception, \"\n    \"another exception occurred:\\n\\n\")\n\n\ndef print_exception(etype, value, tb, limit=None, file=None, chain=True):\n    \"\"\"Print exception up to 'limit' stack trace entries from 'tb' to 'file'.\n\n    This differs from print_tb() in the following ways: (1) if\n    traceback is not None, it prints a header \"Traceback (most recent\n    call last):\"; (2) it prints the exception type and value after the\n    stack trace; (3) if type is SyntaxError and value has the\n    appropriate format, it prints the line where the syntax error\n    occurred with a caret on the next line indicating the approximate\n    position of the error.\n    \"\"\"\n    # format_exception has ignored etype for some time, and code such as cgitb\n    # passes in bogus values as a result. For compatibility with such code we\n    # ignore it here (rather than in the new TracebackException API).\n    if file is None:\n        file = sys.stderr\n    for line in TracebackException(\n            type(value), value, tb, limit=limit).format(chain=chain):\n        print(line, file=file, end=\"\")\n\n\ndef format_exception(etype, value, tb, limit=None, chain=True):\n    \"\"\"Format a stack trace and the exception information.\n\n    The arguments have the same meaning as the corresponding arguments\n    to print_exception().  The return value is a list of strings, each\n    ending in a newline and some containing internal newlines.  When\n    these lines are concatenated and printed, exactly the same text is\n    printed as does print_exception().\n    \"\"\"\n    # format_exception has ignored etype for some time, and code such as cgitb\n    # passes in bogus values as a result. For compatibility with such code we\n    # ignore it here (rather than in the new TracebackException API).\n    return list(TracebackException(\n        type(value), value, tb, limit=limit).format(chain=chain))\n\n\ndef format_exception_only(etype, value):\n    \"\"\"Format the exception part of a traceback.\n\n    The arguments are the exception type and value such as given by\n    sys.last_type and sys.last_value. The return value is a list of\n    strings, each ending in a newline.\n\n    Normally, the list contains a single string; however, for\n    SyntaxError exceptions, it contains several lines that (when\n    printed) display detailed information about where the syntax\n    error occurred.\n\n    The message indicating which exception occurred is always the last\n    string in the list.\n\n    \"\"\"\n    return list(TracebackException(etype, value, None).format_exception_only())\n\n\n# -- not official API but folk probably use these two functions.\n\ndef _format_final_exc_line(etype, value):\n    valuestr = _some_str(value)\n    if value is None or not valuestr:\n        line = \"%s\\n\" % etype\n    else:\n        line = \"%s: %s\\n\" % (etype, valuestr)\n    return line\n\ndef _some_str(value):\n    try:\n        return str(value)\n    except:\n        return '<unprintable %s object>' % type(value).__name__\n\n# --\n\ndef print_exc(limit=None, file=None, chain=True):\n    \"\"\"Shorthand for 'print_exception(*sys.exc_info(), limit, file)'.\"\"\"\n    print_exception(*sys.exc_info(), limit=limit, file=file, chain=chain)\n\ndef format_exc(limit=None, chain=True):\n    \"\"\"Like print_exc() but return a string.\"\"\"\n    return \"\".join(format_exception(*sys.exc_info(), limit=limit, chain=chain))\n\ndef print_last(limit=None, file=None, chain=True):\n    \"\"\"This is a shorthand for 'print_exception(sys.last_type,\n    sys.last_value, sys.last_traceback, limit, file)'.\"\"\"\n    if not hasattr(sys, \"last_type\"):\n        raise ValueError(\"no last exception\")\n    print_exception(sys.last_type, sys.last_value, sys.last_traceback,\n                    limit, file, chain)\n\n#\n# Printing and Extracting Stacks.\n#\n\ndef print_stack(f=None, limit=None, file=None):\n    \"\"\"Print a stack trace from its invocation point.\n\n    The optional 'f' argument can be used to specify an alternate\n    stack frame at which to start. The optional 'limit' and 'file'\n    arguments have the same meaning as for print_exception().\n    \"\"\"\n    if f is None:\n        f = sys._getframe().f_back\n    print_list(extract_stack(f, limit=limit), file=file)\n\n\ndef format_stack(f=None, limit=None):\n    \"\"\"Shorthand for 'format_list(extract_stack(f, limit))'.\"\"\"\n    if f is None:\n        f = sys._getframe().f_back\n    return format_list(extract_stack(f, limit=limit))\n\n\ndef extract_stack(f=None, limit=None):\n    \"\"\"Extract the raw traceback from the current stack frame.\n\n    The return value has the same format as for extract_tb().  The\n    optional 'f' and 'limit' arguments have the same meaning as for\n    print_stack().  Each item in the list is a quadruple (filename,\n    line number, function name, text), and the entries are in order\n    from oldest to newest stack frame.\n    \"\"\"\n    if f is None:\n        f = sys._getframe().f_back\n    stack = StackSummary.extract(walk_stack(f), limit=limit)\n    stack.reverse()\n    return stack\n\n\ndef clear_frames(tb):\n    \"Clear all references to local variables in the frames of a traceback.\"\n    while tb is not None:\n        try:\n            tb.tb_frame.clear()\n        except RuntimeError:\n            # Ignore the exception raised if the frame is still executing.\n            pass\n        tb = tb.tb_next\n\n\nclass FrameSummary:\n    \"\"\"A single frame from a traceback.\n\n    - :attr:`filename` The filename for the frame.\n    - :attr:`lineno` The line within filename for the frame that was\n      active when the frame was captured.\n    - :attr:`name` The name of the function or method that was executing\n      when the frame was captured.\n    - :attr:`line` The text from the linecache module for the\n      of code that was running when the frame was captured.\n    - :attr:`locals` Either None if locals were not supplied, or a dict\n      mapping the name to the repr() of the variable.\n    \"\"\"\n\n    __slots__ = ('filename', 'lineno', 'name', '_line', 'locals')\n\n    def __init__(self, filename, lineno, name, *, lookup_line=True,\n            locals=None, line=None):\n        \"\"\"Construct a FrameSummary.\n\n        :param lookup_line: If True, `linecache` is consulted for the source\n            code line. Otherwise, the line will be looked up when first needed.\n        :param locals: If supplied the frame locals, which will be captured as\n            object representations.\n        :param line: If provided, use this instead of looking up the line in\n            the linecache.\n        \"\"\"\n        self.filename = filename\n        self.lineno = lineno\n        self.name = name\n        self._line = line\n        if lookup_line:\n            self.line\n        self.locals = {k: repr(v) for k, v in locals.items()} if locals else None\n\n    def __eq__(self, other):\n        if isinstance(other, FrameSummary):\n            return (self.filename == other.filename and\n                    self.lineno == other.lineno and\n                    self.name == other.name and\n                    self.locals == other.locals)\n        if isinstance(other, tuple):\n            return (self.filename, self.lineno, self.name, self.line) == other\n        return NotImplemented\n\n    def __getitem__(self, pos):\n        return (self.filename, self.lineno, self.name, self.line)[pos]\n\n    def __iter__(self):\n        return iter([self.filename, self.lineno, self.name, self.line])\n\n    def __repr__(self):\n        return \"<FrameSummary file {filename}, line {lineno} in {name}>\".format(\n            filename=self.filename, lineno=self.lineno, name=self.name)\n\n    def __len__(self):\n        return 4\n\n    @property\n    def line(self):\n        if self._line is None:\n            self._line = linecache.getline(self.filename, self.lineno).strip()\n        return self._line\n\n\ndef walk_stack(f):\n    \"\"\"Walk a stack yielding the frame and line number for each frame.\n\n    This will follow f.f_back from the given frame. If no frame is given, the\n    current stack is used. Usually used with StackSummary.extract.\n    \"\"\"\n    if f is None:\n        f = sys._getframe().f_back.f_back\n    while f is not None:\n        yield f, f.f_lineno\n        f = f.f_back\n\n\ndef walk_tb(tb):\n    \"\"\"Walk a traceback yielding the frame and line number for each frame.\n\n    This will follow tb.tb_next (and thus is in the opposite order to\n    walk_stack). Usually used with StackSummary.extract.\n    \"\"\"\n    while tb is not None:\n        yield tb.tb_frame, tb.tb_lineno\n        tb = tb.tb_next\n\n\n_RECURSIVE_CUTOFF = 3 # Also hardcoded in traceback.c.\n\nclass StackSummary(list):\n    \"\"\"A stack of frames.\"\"\"\n\n    @classmethod\n    def extract(klass, frame_gen, *, limit=None, lookup_lines=True,\n            capture_locals=False):\n        \"\"\"Create a StackSummary from a traceback or stack object.\n\n        :param frame_gen: A generator that yields (frame, lineno) tuples to\n            include in the stack.\n        :param limit: None to include all frames or the number of frames to\n            include.\n        :param lookup_lines: If True, lookup lines for each frame immediately,\n            otherwise lookup is deferred until the frame is rendered.\n        :param capture_locals: If True, the local variables from each frame will\n            be captured as object representations into the FrameSummary.\n        \"\"\"\n        if limit is None:\n            limit = getattr(sys, 'tracebacklimit', None)\n            if limit is not None and limit < 0:\n                limit = 0\n        if limit is not None:\n            if limit >= 0:\n                frame_gen = itertools.islice(frame_gen, limit)\n            else:\n                frame_gen = collections.deque(frame_gen, maxlen=-limit)\n\n        result = klass()\n        fnames = set()\n        for f, lineno in frame_gen:\n            co = f.f_code\n            filename = co.co_filename\n            name = co.co_name\n\n            fnames.add(filename)\n            linecache.lazycache(filename, f.f_globals)\n            # Must defer line lookups until we have called checkcache.\n            if capture_locals:\n                f_locals = f.f_locals\n            else:\n                f_locals = None\n            result.append(FrameSummary(\n                filename, lineno, name, lookup_line=False, locals=f_locals))\n        for filename in fnames:\n            linecache.checkcache(filename)\n        # If immediate lookup was desired, trigger lookups now.\n        if lookup_lines:\n            for f in result:\n                f.line\n        return result\n\n    @classmethod\n    def from_list(klass, a_list):\n        \"\"\"\n        Create a StackSummary object from a supplied list of\n        FrameSummary objects or old-style list of tuples.\n        \"\"\"\n        # While doing a fast-path check for isinstance(a_list, StackSummary) is\n        # appealing, idlelib.run.cleanup_traceback and other similar code may\n        # break this by making arbitrary frames plain tuples, so we need to\n        # check on a frame by frame basis.\n        result = StackSummary()\n        for frame in a_list:\n            if isinstance(frame, FrameSummary):\n                result.append(frame)\n            else:\n                filename, lineno, name, line = frame\n                result.append(FrameSummary(filename, lineno, name, line=line))\n        return result\n\n    def format(self):\n        \"\"\"Format the stack ready for printing.\n\n        Returns a list of strings ready for printing.  Each string in the\n        resulting list corresponds to a single frame from the stack.\n        Each string ends in a newline; the strings may contain internal\n        newlines as well, for those items with source text lines.\n\n        For long sequences of the same frame and line, the first few\n        repetitions are shown, followed by a summary line stating the exact\n        number of further repetitions.\n        \"\"\"\n        result = []\n        last_file = None\n        last_line = None\n        last_name = None\n        count = 0\n        for frame in self:\n            if (last_file is None or last_file != frame.filename or\n                last_line is None or last_line != frame.lineno or\n                last_name is None or last_name != frame.name):\n                if count > _RECURSIVE_CUTOFF:\n                    count -= _RECURSIVE_CUTOFF\n                    result.append(\n                        f'  [Previous line repeated {count} more '\n                        f'time{\"s\" if count > 1 else \"\"}]\\n'\n                    )\n                last_file = frame.filename\n                last_line = frame.lineno\n                last_name = frame.name\n                count = 0\n            count += 1\n            if count > _RECURSIVE_CUTOFF:\n                continue\n            row = []\n            row.append('  File \"{}\", line {}, in {}\\n'.format(\n                frame.filename, frame.lineno, frame.name))\n            if frame.line:\n                row.append('    {}\\n'.format(frame.line.strip()))\n            if frame.locals:\n                for name, value in sorted(frame.locals.items()):\n                    row.append('    {name} = {value}\\n'.format(name=name, value=value))\n            result.append(''.join(row))\n        if count > _RECURSIVE_CUTOFF:\n            count -= _RECURSIVE_CUTOFF\n            result.append(\n                f'  [Previous line repeated {count} more '\n                f'time{\"s\" if count > 1 else \"\"}]\\n'\n            )\n        return result\n\n\nclass TracebackException:\n    \"\"\"An exception ready for rendering.\n\n    The traceback module captures enough attributes from the original exception\n    to this intermediary form to ensure that no references are held, while\n    still being able to fully print or format it.\n\n    Use `from_exception` to create TracebackException instances from exception\n    objects, or the constructor to create TracebackException instances from\n    individual components.\n\n    - :attr:`__cause__` A TracebackException of the original *__cause__*.\n    - :attr:`__context__` A TracebackException of the original *__context__*.\n    - :attr:`__suppress_context__` The *__suppress_context__* value from the\n      original exception.\n    - :attr:`stack` A `StackSummary` representing the traceback.\n    - :attr:`exc_type` The class of the original traceback.\n    - :attr:`filename` For syntax errors - the filename where the error\n      occurred.\n    - :attr:`lineno` For syntax errors - the linenumber where the error\n      occurred.\n    - :attr:`text` For syntax errors - the text where the error\n      occurred.\n    - :attr:`offset` For syntax errors - the offset into the text where the\n      error occurred.\n    - :attr:`msg` For syntax errors - the compiler error message.\n    \"\"\"\n\n    def __init__(self, exc_type, exc_value, exc_traceback, *, limit=None,\n            lookup_lines=True, capture_locals=False, _seen=None):\n        # NB: we need to accept exc_traceback, exc_value, exc_traceback to\n        # permit backwards compat with the existing API, otherwise we\n        # need stub thunk objects just to glue it together.\n        # Handle loops in __cause__ or __context__.\n        if _seen is None:\n            _seen = set()\n        _seen.add(id(exc_value))\n        # Gracefully handle (the way Python 2.4 and earlier did) the case of\n        # being called with no type or value (None, None, None).\n        if (exc_value and exc_value.__cause__ is not None\n            and id(exc_value.__cause__) not in _seen):\n            cause = TracebackException(\n                type(exc_value.__cause__),\n                exc_value.__cause__,\n                exc_value.__cause__.__traceback__,\n                limit=limit,\n                lookup_lines=False,\n                capture_locals=capture_locals,\n                _seen=_seen)\n        else:\n            cause = None\n        if (exc_value and exc_value.__context__ is not None\n            and id(exc_value.__context__) not in _seen):\n            context = TracebackException(\n                type(exc_value.__context__),\n                exc_value.__context__,\n                exc_value.__context__.__traceback__,\n                limit=limit,\n                lookup_lines=False,\n                capture_locals=capture_locals,\n                _seen=_seen)\n        else:\n            context = None\n        self.exc_traceback = exc_traceback\n        self.__cause__ = cause\n        self.__context__ = context\n        self.__suppress_context__ = \\\n            exc_value.__suppress_context__ if exc_value else False\n        # TODO: locals.\n        self.stack = StackSummary.extract(\n            walk_tb(exc_traceback), limit=limit, lookup_lines=lookup_lines,\n            capture_locals=capture_locals)\n        self.exc_type = exc_type\n        # Capture now to permit freeing resources: only complication is in the\n        # unofficial API _format_final_exc_line\n        self._str = _some_str(exc_value)\n        if exc_type and issubclass(exc_type, SyntaxError):\n            # Handle SyntaxError's specially\n            self.filename = exc_value.filename\n            self.lineno = str(exc_value.lineno)\n            self.text = exc_value.text\n            self.offset = exc_value.offset\n            self.msg = exc_value.msg\n        if lookup_lines:\n            self._load_lines()\n\n    @classmethod\n    def from_exception(cls, exc, *args, **kwargs):\n        \"\"\"Create a TracebackException from an exception.\"\"\"\n        return cls(type(exc), exc, exc.__traceback__, *args, **kwargs)\n\n    def _load_lines(self):\n        \"\"\"Private API. force all lines in the stack to be loaded.\"\"\"\n        for frame in self.stack:\n            frame.line\n        if self.__context__:\n            self.__context__._load_lines()\n        if self.__cause__:\n            self.__cause__._load_lines()\n\n    def __eq__(self, other):\n        return self.__dict__ == other.__dict__\n\n    def __str__(self):\n        return self._str\n\n    def format_exception_only(self):\n        \"\"\"Format the exception part of the traceback.\n\n        The return value is a generator of strings, each ending in a newline.\n\n        Normally, the generator emits a single string; however, for\n        SyntaxError exceptions, it emits several lines that (when\n        printed) display detailed information about where the syntax\n        error occurred.\n\n        The message indicating which exception occurred is always the last\n        string in the output.\n        \"\"\"\n        if self.exc_type is None:\n            yield _format_final_exc_line(None, self._str)\n            return\n\n        stype = self.exc_type.__qualname__\n        smod = self.exc_type.__module__\n        if smod not in (\"__main__\", \"builtins\"):\n            stype = smod + '.' + stype\n\n        if not issubclass(self.exc_type, SyntaxError):\n            yield _format_final_exc_line(stype, self._str)\n            return\n\n        # It was a syntax error; show exactly where the problem was found.\n        filename = self.filename or \"<string>\"\n        lineno = str(self.lineno) or '?'\n        yield '  File \"{}\", line {}\\n'.format(filename, lineno)\n\n        badline = self.text\n        offset = self.offset\n        if badline is not None:\n            yield '    {}\\n'.format(badline.strip())\n            if offset is not None:\n                caretspace = badline.rstrip('\\n')\n                offset = min(len(caretspace), offset) - 1\n                caretspace = caretspace[:offset].lstrip()\n                # non-space whitespace (likes tabs) must be kept for alignment\n                caretspace = ((c.isspace() and c or ' ') for c in caretspace)\n                yield '    {}^\\n'.format(''.join(caretspace))\n        msg = self.msg or \"<no detail available>\"\n        yield \"{}: {}\\n\".format(stype, msg)\n\n    def format(self, *, chain=True):\n        \"\"\"Format the exception.\n\n        If chain is not *True*, *__cause__* and *__context__* will not be formatted.\n\n        The return value is a generator of strings, each ending in a newline and\n        some containing internal newlines. `print_exception` is a wrapper around\n        this method which just prints the lines to a file.\n\n        The message indicating which exception occurred is always the last\n        string in the output.\n        \"\"\"\n        if chain:\n            if self.__cause__ is not None:\n                yield from self.__cause__.format(chain=chain)\n                yield _cause_message\n            elif (self.__context__ is not None and\n                not self.__suppress_context__):\n                yield from self.__context__.format(chain=chain)\n                yield _context_message\n        if self.exc_traceback is not None:\n            yield 'Traceback (most recent call last):\\n'\n        yield from self.stack.format()\n        yield from self.format_exception_only()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/tracemalloc.py",
    "content": "from collections.abc import Sequence, Iterable\nfrom functools import total_ordering\nimport fnmatch\nimport linecache\nimport os.path\nimport pickle\n\n# Import types and functions implemented in C\nfrom _tracemalloc import *\nfrom _tracemalloc import _get_object_traceback, _get_traces\n\n\ndef _format_size(size, sign):\n    for unit in ('B', 'KiB', 'MiB', 'GiB', 'TiB'):\n        if abs(size) < 100 and unit != 'B':\n            # 3 digits (xx.x UNIT)\n            if sign:\n                return \"%+.1f %s\" % (size, unit)\n            else:\n                return \"%.1f %s\" % (size, unit)\n        if abs(size) < 10 * 1024 or unit == 'TiB':\n            # 4 or 5 digits (xxxx UNIT)\n            if sign:\n                return \"%+.0f %s\" % (size, unit)\n            else:\n                return \"%.0f %s\" % (size, unit)\n        size /= 1024\n\n\nclass Statistic:\n    \"\"\"\n    Statistic difference on memory allocations between two Snapshot instance.\n    \"\"\"\n\n    __slots__ = ('traceback', 'size', 'count')\n\n    def __init__(self, traceback, size, count):\n        self.traceback = traceback\n        self.size = size\n        self.count = count\n\n    def __hash__(self):\n        return hash((self.traceback, self.size, self.count))\n\n    def __eq__(self, other):\n        return (self.traceback == other.traceback\n                and self.size == other.size\n                and self.count == other.count)\n\n    def __str__(self):\n        text = (\"%s: size=%s, count=%i\"\n                 % (self.traceback,\n                    _format_size(self.size, False),\n                    self.count))\n        if self.count:\n            average = self.size / self.count\n            text += \", average=%s\" % _format_size(average, False)\n        return text\n\n    def __repr__(self):\n        return ('<Statistic traceback=%r size=%i count=%i>'\n                % (self.traceback, self.size, self.count))\n\n    def _sort_key(self):\n        return (self.size, self.count, self.traceback)\n\n\nclass StatisticDiff:\n    \"\"\"\n    Statistic difference on memory allocations between an old and a new\n    Snapshot instance.\n    \"\"\"\n    __slots__ = ('traceback', 'size', 'size_diff', 'count', 'count_diff')\n\n    def __init__(self, traceback, size, size_diff, count, count_diff):\n        self.traceback = traceback\n        self.size = size\n        self.size_diff = size_diff\n        self.count = count\n        self.count_diff = count_diff\n\n    def __hash__(self):\n        return hash((self.traceback, self.size, self.size_diff,\n                     self.count, self.count_diff))\n\n    def __eq__(self, other):\n        return (self.traceback == other.traceback\n                and self.size == other.size\n                and self.size_diff == other.size_diff\n                and self.count == other.count\n                and self.count_diff == other.count_diff)\n\n    def __str__(self):\n        text = (\"%s: size=%s (%s), count=%i (%+i)\"\n                % (self.traceback,\n                   _format_size(self.size, False),\n                   _format_size(self.size_diff, True),\n                   self.count,\n                   self.count_diff))\n        if self.count:\n            average = self.size / self.count\n            text += \", average=%s\" % _format_size(average, False)\n        return text\n\n    def __repr__(self):\n        return ('<StatisticDiff traceback=%r size=%i (%+i) count=%i (%+i)>'\n                % (self.traceback, self.size, self.size_diff,\n                   self.count, self.count_diff))\n\n    def _sort_key(self):\n        return (abs(self.size_diff), self.size,\n                abs(self.count_diff), self.count,\n                self.traceback)\n\n\ndef _compare_grouped_stats(old_group, new_group):\n    statistics = []\n    for traceback, stat in new_group.items():\n        previous = old_group.pop(traceback, None)\n        if previous is not None:\n            stat = StatisticDiff(traceback,\n                                 stat.size, stat.size - previous.size,\n                                 stat.count, stat.count - previous.count)\n        else:\n            stat = StatisticDiff(traceback,\n                                 stat.size, stat.size,\n                                 stat.count, stat.count)\n        statistics.append(stat)\n\n    for traceback, stat in old_group.items():\n        stat = StatisticDiff(traceback, 0, -stat.size, 0, -stat.count)\n        statistics.append(stat)\n    return statistics\n\n\n@total_ordering\nclass Frame:\n    \"\"\"\n    Frame of a traceback.\n    \"\"\"\n    __slots__ = (\"_frame\",)\n\n    def __init__(self, frame):\n        # frame is a tuple: (filename: str, lineno: int)\n        self._frame = frame\n\n    @property\n    def filename(self):\n        return self._frame[0]\n\n    @property\n    def lineno(self):\n        return self._frame[1]\n\n    def __eq__(self, other):\n        return (self._frame == other._frame)\n\n    def __lt__(self, other):\n        return (self._frame < other._frame)\n\n    def __hash__(self):\n        return hash(self._frame)\n\n    def __str__(self):\n        return \"%s:%s\" % (self.filename, self.lineno)\n\n    def __repr__(self):\n        return \"<Frame filename=%r lineno=%r>\" % (self.filename, self.lineno)\n\n\n@total_ordering\nclass Traceback(Sequence):\n    \"\"\"\n    Sequence of Frame instances sorted from the oldest frame\n    to the most recent frame.\n    \"\"\"\n    __slots__ = (\"_frames\",)\n\n    def __init__(self, frames):\n        Sequence.__init__(self)\n        # frames is a tuple of frame tuples: see Frame constructor for the\n        # format of a frame tuple; it is reversed, because _tracemalloc\n        # returns frames sorted from most recent to oldest, but the\n        # Python API expects oldest to most recent\n        self._frames = tuple(reversed(frames))\n\n    def __len__(self):\n        return len(self._frames)\n\n    def __getitem__(self, index):\n        if isinstance(index, slice):\n            return tuple(Frame(trace) for trace in self._frames[index])\n        else:\n            return Frame(self._frames[index])\n\n    def __contains__(self, frame):\n        return frame._frame in self._frames\n\n    def __hash__(self):\n        return hash(self._frames)\n\n    def __eq__(self, other):\n        return (self._frames == other._frames)\n\n    def __lt__(self, other):\n        return (self._frames < other._frames)\n\n    def __str__(self):\n        return str(self[0])\n\n    def __repr__(self):\n        return \"<Traceback %r>\" % (tuple(self),)\n\n    def format(self, limit=None, most_recent_first=False):\n        lines = []\n        if limit is not None:\n            if limit > 0:\n                frame_slice = self[-limit:]\n            else:\n                frame_slice = self[:limit]\n        else:\n            frame_slice = self\n\n        if most_recent_first:\n            frame_slice = reversed(frame_slice)\n        for frame in frame_slice:\n            lines.append('  File \"%s\", line %s'\n                         % (frame.filename, frame.lineno))\n            line = linecache.getline(frame.filename, frame.lineno).strip()\n            if line:\n                lines.append('    %s' % line)\n        return lines\n\n\ndef get_object_traceback(obj):\n    \"\"\"\n    Get the traceback where the Python object *obj* was allocated.\n    Return a Traceback instance.\n\n    Return None if the tracemalloc module is not tracing memory allocations or\n    did not trace the allocation of the object.\n    \"\"\"\n    frames = _get_object_traceback(obj)\n    if frames is not None:\n        return Traceback(frames)\n    else:\n        return None\n\n\nclass Trace:\n    \"\"\"\n    Trace of a memory block.\n    \"\"\"\n    __slots__ = (\"_trace\",)\n\n    def __init__(self, trace):\n        # trace is a tuple: (domain: int, size: int, traceback: tuple).\n        # See Traceback constructor for the format of the traceback tuple.\n        self._trace = trace\n\n    @property\n    def domain(self):\n        return self._trace[0]\n\n    @property\n    def size(self):\n        return self._trace[1]\n\n    @property\n    def traceback(self):\n        return Traceback(self._trace[2])\n\n    def __eq__(self, other):\n        return (self._trace == other._trace)\n\n    def __hash__(self):\n        return hash(self._trace)\n\n    def __str__(self):\n        return \"%s: %s\" % (self.traceback, _format_size(self.size, False))\n\n    def __repr__(self):\n        return (\"<Trace domain=%s size=%s, traceback=%r>\"\n                % (self.domain, _format_size(self.size, False), self.traceback))\n\n\nclass _Traces(Sequence):\n    def __init__(self, traces):\n        Sequence.__init__(self)\n        # traces is a tuple of trace tuples: see Trace constructor\n        self._traces = traces\n\n    def __len__(self):\n        return len(self._traces)\n\n    def __getitem__(self, index):\n        if isinstance(index, slice):\n            return tuple(Trace(trace) for trace in self._traces[index])\n        else:\n            return Trace(self._traces[index])\n\n    def __contains__(self, trace):\n        return trace._trace in self._traces\n\n    def __eq__(self, other):\n        return (self._traces == other._traces)\n\n    def __repr__(self):\n        return \"<Traces len=%s>\" % len(self)\n\n\ndef _normalize_filename(filename):\n    filename = os.path.normcase(filename)\n    if filename.endswith('.pyc'):\n        filename = filename[:-1]\n    return filename\n\n\nclass BaseFilter:\n    def __init__(self, inclusive):\n        self.inclusive = inclusive\n\n    def _match(self, trace):\n        raise NotImplementedError\n\n\nclass Filter(BaseFilter):\n    def __init__(self, inclusive, filename_pattern,\n                 lineno=None, all_frames=False, domain=None):\n        super().__init__(inclusive)\n        self.inclusive = inclusive\n        self._filename_pattern = _normalize_filename(filename_pattern)\n        self.lineno = lineno\n        self.all_frames = all_frames\n        self.domain = domain\n\n    @property\n    def filename_pattern(self):\n        return self._filename_pattern\n\n    def _match_frame_impl(self, filename, lineno):\n        filename = _normalize_filename(filename)\n        if not fnmatch.fnmatch(filename, self._filename_pattern):\n            return False\n        if self.lineno is None:\n            return True\n        else:\n            return (lineno == self.lineno)\n\n    def _match_frame(self, filename, lineno):\n        return self._match_frame_impl(filename, lineno) ^ (not self.inclusive)\n\n    def _match_traceback(self, traceback):\n        if self.all_frames:\n            if any(self._match_frame_impl(filename, lineno)\n                   for filename, lineno in traceback):\n                return self.inclusive\n            else:\n                return (not self.inclusive)\n        else:\n            filename, lineno = traceback[0]\n            return self._match_frame(filename, lineno)\n\n    def _match(self, trace):\n        domain, size, traceback = trace\n        res = self._match_traceback(traceback)\n        if self.domain is not None:\n            if self.inclusive:\n                return res and (domain == self.domain)\n            else:\n                return res or (domain != self.domain)\n        return res\n\n\nclass DomainFilter(BaseFilter):\n    def __init__(self, inclusive, domain):\n        super().__init__(inclusive)\n        self._domain = domain\n\n    @property\n    def domain(self):\n        return self._domain\n\n    def _match(self, trace):\n        domain, size, traceback = trace\n        return (domain == self.domain) ^ (not self.inclusive)\n\n\nclass Snapshot:\n    \"\"\"\n    Snapshot of traces of memory blocks allocated by Python.\n    \"\"\"\n\n    def __init__(self, traces, traceback_limit):\n        # traces is a tuple of trace tuples: see _Traces constructor for\n        # the exact format\n        self.traces = _Traces(traces)\n        self.traceback_limit = traceback_limit\n\n    def dump(self, filename):\n        \"\"\"\n        Write the snapshot into a file.\n        \"\"\"\n        with open(filename, \"wb\") as fp:\n            pickle.dump(self, fp, pickle.HIGHEST_PROTOCOL)\n\n    @staticmethod\n    def load(filename):\n        \"\"\"\n        Load a snapshot from a file.\n        \"\"\"\n        with open(filename, \"rb\") as fp:\n            return pickle.load(fp)\n\n    def _filter_trace(self, include_filters, exclude_filters, trace):\n        if include_filters:\n            if not any(trace_filter._match(trace)\n                       for trace_filter in include_filters):\n                return False\n        if exclude_filters:\n            if any(not trace_filter._match(trace)\n                   for trace_filter in exclude_filters):\n                return False\n        return True\n\n    def filter_traces(self, filters):\n        \"\"\"\n        Create a new Snapshot instance with a filtered traces sequence, filters\n        is a list of Filter or DomainFilter instances.  If filters is an empty\n        list, return a new Snapshot instance with a copy of the traces.\n        \"\"\"\n        if not isinstance(filters, Iterable):\n            raise TypeError(\"filters must be a list of filters, not %s\"\n                            % type(filters).__name__)\n        if filters:\n            include_filters = []\n            exclude_filters = []\n            for trace_filter in filters:\n                if trace_filter.inclusive:\n                    include_filters.append(trace_filter)\n                else:\n                    exclude_filters.append(trace_filter)\n            new_traces = [trace for trace in self.traces._traces\n                          if self._filter_trace(include_filters,\n                                                exclude_filters,\n                                                trace)]\n        else:\n            new_traces = self.traces._traces.copy()\n        return Snapshot(new_traces, self.traceback_limit)\n\n    def _group_by(self, key_type, cumulative):\n        if key_type not in ('traceback', 'filename', 'lineno'):\n            raise ValueError(\"unknown key_type: %r\" % (key_type,))\n        if cumulative and key_type not in ('lineno', 'filename'):\n            raise ValueError(\"cumulative mode cannot by used \"\n                             \"with key type %r\" % key_type)\n\n        stats = {}\n        tracebacks = {}\n        if not cumulative:\n            for trace in self.traces._traces:\n                domain, size, trace_traceback = trace\n                try:\n                    traceback = tracebacks[trace_traceback]\n                except KeyError:\n                    if key_type == 'traceback':\n                        frames = trace_traceback\n                    elif key_type == 'lineno':\n                        frames = trace_traceback[:1]\n                    else: # key_type == 'filename':\n                        frames = ((trace_traceback[0][0], 0),)\n                    traceback = Traceback(frames)\n                    tracebacks[trace_traceback] = traceback\n                try:\n                    stat = stats[traceback]\n                    stat.size += size\n                    stat.count += 1\n                except KeyError:\n                    stats[traceback] = Statistic(traceback, size, 1)\n        else:\n            # cumulative statistics\n            for trace in self.traces._traces:\n                domain, size, trace_traceback = trace\n                for frame in trace_traceback:\n                    try:\n                        traceback = tracebacks[frame]\n                    except KeyError:\n                        if key_type == 'lineno':\n                            frames = (frame,)\n                        else: # key_type == 'filename':\n                            frames = ((frame[0], 0),)\n                        traceback = Traceback(frames)\n                        tracebacks[frame] = traceback\n                    try:\n                        stat = stats[traceback]\n                        stat.size += size\n                        stat.count += 1\n                    except KeyError:\n                        stats[traceback] = Statistic(traceback, size, 1)\n        return stats\n\n    def statistics(self, key_type, cumulative=False):\n        \"\"\"\n        Group statistics by key_type. Return a sorted list of Statistic\n        instances.\n        \"\"\"\n        grouped = self._group_by(key_type, cumulative)\n        statistics = list(grouped.values())\n        statistics.sort(reverse=True, key=Statistic._sort_key)\n        return statistics\n\n    def compare_to(self, old_snapshot, key_type, cumulative=False):\n        \"\"\"\n        Compute the differences with an old snapshot old_snapshot. Get\n        statistics as a sorted list of StatisticDiff instances, grouped by\n        group_by.\n        \"\"\"\n        new_group = self._group_by(key_type, cumulative)\n        old_group = old_snapshot._group_by(key_type, cumulative)\n        statistics = _compare_grouped_stats(old_group, new_group)\n        statistics.sort(reverse=True, key=StatisticDiff._sort_key)\n        return statistics\n\n\ndef take_snapshot():\n    \"\"\"\n    Take a snapshot of traces of memory blocks allocated by Python.\n    \"\"\"\n    if not is_tracing():\n        raise RuntimeError(\"the tracemalloc module must be tracing memory \"\n                           \"allocations to take a snapshot\")\n    traces = _get_traces()\n    traceback_limit = get_traceback_limit()\n    return Snapshot(traces, traceback_limit)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/tty.py",
    "content": "\"\"\"Terminal utilities.\"\"\"\n\n# Author: Steen Lumholt.\n\nfrom termios import *\n\n__all__ = [\"setraw\", \"setcbreak\"]\n\n# Indexes for termios list.\nIFLAG = 0\nOFLAG = 1\nCFLAG = 2\nLFLAG = 3\nISPEED = 4\nOSPEED = 5\nCC = 6\n\ndef setraw(fd, when=TCSAFLUSH):\n    \"\"\"Put terminal into a raw mode.\"\"\"\n    mode = tcgetattr(fd)\n    mode[IFLAG] = mode[IFLAG] & ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON)\n    mode[OFLAG] = mode[OFLAG] & ~(OPOST)\n    mode[CFLAG] = mode[CFLAG] & ~(CSIZE | PARENB)\n    mode[CFLAG] = mode[CFLAG] | CS8\n    mode[LFLAG] = mode[LFLAG] & ~(ECHO | ICANON | IEXTEN | ISIG)\n    mode[CC][VMIN] = 1\n    mode[CC][VTIME] = 0\n    tcsetattr(fd, when, mode)\n\ndef setcbreak(fd, when=TCSAFLUSH):\n    \"\"\"Put terminal into a cbreak mode.\"\"\"\n    mode = tcgetattr(fd)\n    mode[LFLAG] = mode[LFLAG] & ~(ECHO | ICANON)\n    mode[CC][VMIN] = 1\n    mode[CC][VTIME] = 0\n    tcsetattr(fd, when, mode)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/types.py",
    "content": "\"\"\"\nDefine names for built-in types that aren't directly accessible as a builtin.\n\"\"\"\nimport sys\n\n# Iterators in Python aren't a matter of type but of protocol.  A large\n# and changing number of builtin types implement *some* flavor of\n# iterator.  Don't check the type!  Use hasattr to check for both\n# \"__iter__\" and \"__next__\" attributes instead.\n\ndef _f(): pass\nFunctionType = type(_f)\nLambdaType = type(lambda: None)         # Same as FunctionType\nCodeType = type(_f.__code__)\nMappingProxyType = type(type.__dict__)\nSimpleNamespace = type(sys.implementation)\n\ndef _cell_factory():\n    a = 1\n    def f():\n        nonlocal a\n    return f.__closure__[0]\nCellType = type(_cell_factory())\n\ndef _g():\n    yield 1\nGeneratorType = type(_g())\n\nasync def _c(): pass\n_c = _c()\nCoroutineType = type(_c)\n_c.close()  # Prevent ResourceWarning\n\nasync def _ag():\n    yield\n_ag = _ag()\nAsyncGeneratorType = type(_ag)\n\nclass _C:\n    def _m(self): pass\nMethodType = type(_C()._m)\n\nBuiltinFunctionType = type(len)\nBuiltinMethodType = type([].append)     # Same as BuiltinFunctionType\n\nWrapperDescriptorType = type(object.__init__)\nMethodWrapperType = type(object().__str__)\nMethodDescriptorType = type(str.join)\nClassMethodDescriptorType = type(dict.__dict__['fromkeys'])\n\nModuleType = type(sys)\n\ntry:\n    raise TypeError\nexcept TypeError:\n    tb = sys.exc_info()[2]\n    TracebackType = type(tb)\n    FrameType = type(tb.tb_frame)\n    tb = None; del tb\n\n# For Jython, the following two types are identical\nGetSetDescriptorType = type(FunctionType.__code__)\nMemberDescriptorType = type(FunctionType.__globals__)\n\ndel sys, _f, _g, _C, _c, _ag  # Not for export\n\n\n# Provide a PEP 3115 compliant mechanism for class creation\ndef new_class(name, bases=(), kwds=None, exec_body=None):\n    \"\"\"Create a class object dynamically using the appropriate metaclass.\"\"\"\n    resolved_bases = resolve_bases(bases)\n    meta, ns, kwds = prepare_class(name, resolved_bases, kwds)\n    if exec_body is not None:\n        exec_body(ns)\n    if resolved_bases is not bases:\n        ns['__orig_bases__'] = bases\n    return meta(name, resolved_bases, ns, **kwds)\n\ndef resolve_bases(bases):\n    \"\"\"Resolve MRO entries dynamically as specified by PEP 560.\"\"\"\n    new_bases = list(bases)\n    updated = False\n    shift = 0\n    for i, base in enumerate(bases):\n        if isinstance(base, type):\n            continue\n        if not hasattr(base, \"__mro_entries__\"):\n            continue\n        new_base = base.__mro_entries__(bases)\n        updated = True\n        if not isinstance(new_base, tuple):\n            raise TypeError(\"__mro_entries__ must return a tuple\")\n        else:\n            new_bases[i+shift:i+shift+1] = new_base\n            shift += len(new_base) - 1\n    if not updated:\n        return bases\n    return tuple(new_bases)\n\ndef prepare_class(name, bases=(), kwds=None):\n    \"\"\"Call the __prepare__ method of the appropriate metaclass.\n\n    Returns (metaclass, namespace, kwds) as a 3-tuple\n\n    *metaclass* is the appropriate metaclass\n    *namespace* is the prepared class namespace\n    *kwds* is an updated copy of the passed in kwds argument with any\n    'metaclass' entry removed. If no kwds argument is passed in, this will\n    be an empty dict.\n    \"\"\"\n    if kwds is None:\n        kwds = {}\n    else:\n        kwds = dict(kwds) # Don't alter the provided mapping\n    if 'metaclass' in kwds:\n        meta = kwds.pop('metaclass')\n    else:\n        if bases:\n            meta = type(bases[0])\n        else:\n            meta = type\n    if isinstance(meta, type):\n        # when meta is a type, we first determine the most-derived metaclass\n        # instead of invoking the initial candidate directly\n        meta = _calculate_meta(meta, bases)\n    if hasattr(meta, '__prepare__'):\n        ns = meta.__prepare__(name, bases, **kwds)\n    else:\n        ns = {}\n    return meta, ns, kwds\n\ndef _calculate_meta(meta, bases):\n    \"\"\"Calculate the most derived metaclass.\"\"\"\n    winner = meta\n    for base in bases:\n        base_meta = type(base)\n        if issubclass(winner, base_meta):\n            continue\n        if issubclass(base_meta, winner):\n            winner = base_meta\n            continue\n        # else:\n        raise TypeError(\"metaclass conflict: \"\n                        \"the metaclass of a derived class \"\n                        \"must be a (non-strict) subclass \"\n                        \"of the metaclasses of all its bases\")\n    return winner\n\nclass DynamicClassAttribute:\n    \"\"\"Route attribute access on a class to __getattr__.\n\n    This is a descriptor, used to define attributes that act differently when\n    accessed through an instance and through a class.  Instance access remains\n    normal, but access to an attribute through a class will be routed to the\n    class's __getattr__ method; this is done by raising AttributeError.\n\n    This allows one to have properties active on an instance, and have virtual\n    attributes on the class with the same name (see Enum for an example).\n\n    \"\"\"\n    def __init__(self, fget=None, fset=None, fdel=None, doc=None):\n        self.fget = fget\n        self.fset = fset\n        self.fdel = fdel\n        # next two lines make DynamicClassAttribute act the same as property\n        self.__doc__ = doc or fget.__doc__\n        self.overwrite_doc = doc is None\n        # support for abstract methods\n        self.__isabstractmethod__ = bool(getattr(fget, '__isabstractmethod__', False))\n\n    def __get__(self, instance, ownerclass=None):\n        if instance is None:\n            if self.__isabstractmethod__:\n                return self\n            raise AttributeError()\n        elif self.fget is None:\n            raise AttributeError(\"unreadable attribute\")\n        return self.fget(instance)\n\n    def __set__(self, instance, value):\n        if self.fset is None:\n            raise AttributeError(\"can't set attribute\")\n        self.fset(instance, value)\n\n    def __delete__(self, instance):\n        if self.fdel is None:\n            raise AttributeError(\"can't delete attribute\")\n        self.fdel(instance)\n\n    def getter(self, fget):\n        fdoc = fget.__doc__ if self.overwrite_doc else None\n        result = type(self)(fget, self.fset, self.fdel, fdoc or self.__doc__)\n        result.overwrite_doc = self.overwrite_doc\n        return result\n\n    def setter(self, fset):\n        result = type(self)(self.fget, fset, self.fdel, self.__doc__)\n        result.overwrite_doc = self.overwrite_doc\n        return result\n\n    def deleter(self, fdel):\n        result = type(self)(self.fget, self.fset, fdel, self.__doc__)\n        result.overwrite_doc = self.overwrite_doc\n        return result\n\n\nclass _GeneratorWrapper:\n    # TODO: Implement this in C.\n    def __init__(self, gen):\n        self.__wrapped = gen\n        self.__isgen = gen.__class__ is GeneratorType\n        self.__name__ = getattr(gen, '__name__', None)\n        self.__qualname__ = getattr(gen, '__qualname__', None)\n    def send(self, val):\n        return self.__wrapped.send(val)\n    def throw(self, tp, *rest):\n        return self.__wrapped.throw(tp, *rest)\n    def close(self):\n        return self.__wrapped.close()\n    @property\n    def gi_code(self):\n        return self.__wrapped.gi_code\n    @property\n    def gi_frame(self):\n        return self.__wrapped.gi_frame\n    @property\n    def gi_running(self):\n        return self.__wrapped.gi_running\n    @property\n    def gi_yieldfrom(self):\n        return self.__wrapped.gi_yieldfrom\n    cr_code = gi_code\n    cr_frame = gi_frame\n    cr_running = gi_running\n    cr_await = gi_yieldfrom\n    def __next__(self):\n        return next(self.__wrapped)\n    def __iter__(self):\n        if self.__isgen:\n            return self.__wrapped\n        return self\n    __await__ = __iter__\n\ndef coroutine(func):\n    \"\"\"Convert regular generator function to a coroutine.\"\"\"\n\n    if not callable(func):\n        raise TypeError('types.coroutine() expects a callable')\n\n    if (func.__class__ is FunctionType and\n        getattr(func, '__code__', None).__class__ is CodeType):\n\n        co_flags = func.__code__.co_flags\n\n        # Check if 'func' is a coroutine function.\n        # (0x180 == CO_COROUTINE | CO_ITERABLE_COROUTINE)\n        if co_flags & 0x180:\n            return func\n\n        # Check if 'func' is a generator function.\n        # (0x20 == CO_GENERATOR)\n        if co_flags & 0x20:\n            # TODO: Implement this in C.\n            co = func.__code__\n            # 0x100 == CO_ITERABLE_COROUTINE\n            func.__code__ = co.replace(co_flags=co.co_flags | 0x100)\n            return func\n\n    # The following code is primarily to support functions that\n    # return generator-like objects (for instance generators\n    # compiled with Cython).\n\n    # Delay functools and _collections_abc import for speeding up types import.\n    import functools\n    import _collections_abc\n    @functools.wraps(func)\n    def wrapped(*args, **kwargs):\n        coro = func(*args, **kwargs)\n        if (coro.__class__ is CoroutineType or\n            coro.__class__ is GeneratorType and coro.gi_code.co_flags & 0x100):\n            # 'coro' is a native coroutine object or an iterable coroutine\n            return coro\n        if (isinstance(coro, _collections_abc.Generator) and\n            not isinstance(coro, _collections_abc.Coroutine)):\n            # 'coro' is either a pure Python generator iterator, or it\n            # implements collections.abc.Generator (and does not implement\n            # collections.abc.Coroutine).\n            return _GeneratorWrapper(coro)\n        # 'coro' is either an instance of collections.abc.Coroutine or\n        # some other object -- pass it through.\n        return coro\n\n    return wrapped\n\n\n__all__ = [n for n in globals() if n[:1] != '_']\n"
  },
  {
    "path": "rd/usr/lib/python3.8/typing.py",
    "content": "\"\"\"\nThe typing module: Support for gradual typing as defined by PEP 484.\n\nAt large scale, the structure of the module is following:\n* Imports and exports, all public names should be explicitly added to __all__.\n* Internal helper functions: these should never be used in code outside this module.\n* _SpecialForm and its instances (special forms): Any, NoReturn, ClassVar, Union, Optional\n* Two classes whose instances can be type arguments in addition to types: ForwardRef and TypeVar\n* The core of internal generics API: _GenericAlias and _VariadicGenericAlias, the latter is\n  currently only used by Tuple and Callable. All subscripted types like X[int], Union[int, str],\n  etc., are instances of either of these classes.\n* The public counterpart of the generics API consists of two classes: Generic and Protocol.\n* Public helper functions: get_type_hints, overload, cast, no_type_check,\n  no_type_check_decorator.\n* Generic aliases for collections.abc ABCs and few additional protocols.\n* Special types: NewType, NamedTuple, TypedDict.\n* Wrapper submodules for re and io related types.\n\"\"\"\n\nfrom abc import abstractmethod, ABCMeta\nimport collections\nimport collections.abc\nimport contextlib\nimport functools\nimport operator\nimport re as stdlib_re  # Avoid confusion with the re we export.\nimport sys\nimport types\nfrom types import WrapperDescriptorType, MethodWrapperType, MethodDescriptorType\n\n# Please keep __all__ alphabetized within each category.\n__all__ = [\n    # Super-special typing primitives.\n    'Any',\n    'Callable',\n    'ClassVar',\n    'Final',\n    'ForwardRef',\n    'Generic',\n    'Literal',\n    'Optional',\n    'Protocol',\n    'Tuple',\n    'Type',\n    'TypeVar',\n    'Union',\n\n    # ABCs (from collections.abc).\n    'AbstractSet',  # collections.abc.Set.\n    'ByteString',\n    'Container',\n    'ContextManager',\n    'Hashable',\n    'ItemsView',\n    'Iterable',\n    'Iterator',\n    'KeysView',\n    'Mapping',\n    'MappingView',\n    'MutableMapping',\n    'MutableSequence',\n    'MutableSet',\n    'Sequence',\n    'Sized',\n    'ValuesView',\n    'Awaitable',\n    'AsyncIterator',\n    'AsyncIterable',\n    'Coroutine',\n    'Collection',\n    'AsyncGenerator',\n    'AsyncContextManager',\n\n    # Structural checks, a.k.a. protocols.\n    'Reversible',\n    'SupportsAbs',\n    'SupportsBytes',\n    'SupportsComplex',\n    'SupportsFloat',\n    'SupportsIndex',\n    'SupportsInt',\n    'SupportsRound',\n\n    # Concrete collection types.\n    'ChainMap',\n    'Counter',\n    'Deque',\n    'Dict',\n    'DefaultDict',\n    'List',\n    'OrderedDict',\n    'Set',\n    'FrozenSet',\n    'NamedTuple',  # Not really a type.\n    'TypedDict',  # Not really a type.\n    'Generator',\n\n    # One-off things.\n    'AnyStr',\n    'cast',\n    'final',\n    'get_args',\n    'get_origin',\n    'get_type_hints',\n    'NewType',\n    'no_type_check',\n    'no_type_check_decorator',\n    'NoReturn',\n    'overload',\n    'runtime_checkable',\n    'Text',\n    'TYPE_CHECKING',\n]\n\n# The pseudo-submodules 're' and 'io' are part of the public\n# namespace, but excluded from __all__ because they might stomp on\n# legitimate imports of those modules.\n\n\ndef _type_check(arg, msg, is_argument=True):\n    \"\"\"Check that the argument is a type, and return it (internal helper).\n\n    As a special case, accept None and return type(None) instead. Also wrap strings\n    into ForwardRef instances. Consider several corner cases, for example plain\n    special forms like Union are not valid, while Union[int, str] is OK, etc.\n    The msg argument is a human-readable error message, e.g::\n\n        \"Union[arg, ...]: arg should be a type.\"\n\n    We append the repr() of the actual value (truncated to 100 chars).\n    \"\"\"\n    invalid_generic_forms = (Generic, Protocol)\n    if is_argument:\n        invalid_generic_forms = invalid_generic_forms + (ClassVar, Final)\n\n    if arg is None:\n        return type(None)\n    if isinstance(arg, str):\n        return ForwardRef(arg)\n    if (isinstance(arg, _GenericAlias) and\n            arg.__origin__ in invalid_generic_forms):\n        raise TypeError(f\"{arg} is not valid as type argument\")\n    if (isinstance(arg, _SpecialForm) and arg not in (Any, NoReturn) or\n            arg in (Generic, Protocol)):\n        raise TypeError(f\"Plain {arg} is not valid as type argument\")\n    if isinstance(arg, (type, TypeVar, ForwardRef)):\n        return arg\n    if not callable(arg):\n        raise TypeError(f\"{msg} Got {arg!r:.100}.\")\n    return arg\n\n\ndef _type_repr(obj):\n    \"\"\"Return the repr() of an object, special-casing types (internal helper).\n\n    If obj is a type, we return a shorter version than the default\n    type.__repr__, based on the module and qualified name, which is\n    typically enough to uniquely identify a type.  For everything\n    else, we fall back on repr(obj).\n    \"\"\"\n    if isinstance(obj, type):\n        if obj.__module__ == 'builtins':\n            return obj.__qualname__\n        return f'{obj.__module__}.{obj.__qualname__}'\n    if obj is ...:\n        return('...')\n    if isinstance(obj, types.FunctionType):\n        return obj.__name__\n    return repr(obj)\n\n\ndef _collect_type_vars(types):\n    \"\"\"Collect all type variable contained in types in order of\n    first appearance (lexicographic order). For example::\n\n        _collect_type_vars((T, List[S, T])) == (T, S)\n    \"\"\"\n    tvars = []\n    for t in types:\n        if isinstance(t, TypeVar) and t not in tvars:\n            tvars.append(t)\n        if isinstance(t, _GenericAlias) and not t._special:\n            tvars.extend([t for t in t.__parameters__ if t not in tvars])\n    return tuple(tvars)\n\n\ndef _subs_tvars(tp, tvars, subs):\n    \"\"\"Substitute type variables 'tvars' with substitutions 'subs'.\n    These two must have the same length.\n    \"\"\"\n    if not isinstance(tp, _GenericAlias):\n        return tp\n    new_args = list(tp.__args__)\n    for a, arg in enumerate(tp.__args__):\n        if isinstance(arg, TypeVar):\n            for i, tvar in enumerate(tvars):\n                if arg == tvar:\n                    new_args[a] = subs[i]\n        else:\n            new_args[a] = _subs_tvars(arg, tvars, subs)\n    if tp.__origin__ is Union:\n        return Union[tuple(new_args)]\n    return tp.copy_with(tuple(new_args))\n\n\ndef _check_generic(cls, parameters):\n    \"\"\"Check correct count for parameters of a generic cls (internal helper).\n    This gives a nice error message in case of count mismatch.\n    \"\"\"\n    if not cls.__parameters__:\n        raise TypeError(f\"{cls} is not a generic class\")\n    alen = len(parameters)\n    elen = len(cls.__parameters__)\n    if alen != elen:\n        raise TypeError(f\"Too {'many' if alen > elen else 'few'} parameters for {cls};\"\n                        f\" actual {alen}, expected {elen}\")\n\n\ndef _remove_dups_flatten(parameters):\n    \"\"\"An internal helper for Union creation and substitution: flatten Unions\n    among parameters, then remove duplicates.\n    \"\"\"\n    # Flatten out Union[Union[...], ...].\n    params = []\n    for p in parameters:\n        if isinstance(p, _GenericAlias) and p.__origin__ is Union:\n            params.extend(p.__args__)\n        elif isinstance(p, tuple) and len(p) > 0 and p[0] is Union:\n            params.extend(p[1:])\n        else:\n            params.append(p)\n    # Weed out strict duplicates, preserving the first of each occurrence.\n    all_params = set(params)\n    if len(all_params) < len(params):\n        new_params = []\n        for t in params:\n            if t in all_params:\n                new_params.append(t)\n                all_params.remove(t)\n        params = new_params\n        assert not all_params, all_params\n    return tuple(params)\n\n\n_cleanups = []\n\n\ndef _tp_cache(func):\n    \"\"\"Internal wrapper caching __getitem__ of generic types with a fallback to\n    original function for non-hashable arguments.\n    \"\"\"\n    cached = functools.lru_cache()(func)\n    _cleanups.append(cached.cache_clear)\n\n    @functools.wraps(func)\n    def inner(*args, **kwds):\n        try:\n            return cached(*args, **kwds)\n        except TypeError:\n            pass  # All real errors (not unhashable args) are raised below.\n        return func(*args, **kwds)\n    return inner\n\n\ndef _eval_type(t, globalns, localns):\n    \"\"\"Evaluate all forward reverences in the given type t.\n    For use of globalns and localns see the docstring for get_type_hints().\n    \"\"\"\n    if isinstance(t, ForwardRef):\n        return t._evaluate(globalns, localns)\n    if isinstance(t, _GenericAlias):\n        ev_args = tuple(_eval_type(a, globalns, localns) for a in t.__args__)\n        if ev_args == t.__args__:\n            return t\n        res = t.copy_with(ev_args)\n        res._special = t._special\n        return res\n    return t\n\n\nclass _Final:\n    \"\"\"Mixin to prohibit subclassing\"\"\"\n\n    __slots__ = ('__weakref__',)\n\n    def __init_subclass__(self, /, *args, **kwds):\n        if '_root' not in kwds:\n            raise TypeError(\"Cannot subclass special typing classes\")\n\nclass _Immutable:\n    \"\"\"Mixin to indicate that object should not be copied.\"\"\"\n\n    def __copy__(self):\n        return self\n\n    def __deepcopy__(self, memo):\n        return self\n\n\nclass _SpecialForm(_Final, _Immutable, _root=True):\n    \"\"\"Internal indicator of special typing constructs.\n    See _doc instance attribute for specific docs.\n    \"\"\"\n\n    __slots__ = ('_name', '_doc')\n\n    def __new__(cls, *args, **kwds):\n        \"\"\"Constructor.\n\n        This only exists to give a better error message in case\n        someone tries to subclass a special typing object (not a good idea).\n        \"\"\"\n        if (len(args) == 3 and\n                isinstance(args[0], str) and\n                isinstance(args[1], tuple)):\n            # Close enough.\n            raise TypeError(f\"Cannot subclass {cls!r}\")\n        return super().__new__(cls)\n\n    def __init__(self, name, doc):\n        self._name = name\n        self._doc = doc\n\n    def __eq__(self, other):\n        if not isinstance(other, _SpecialForm):\n            return NotImplemented\n        return self._name == other._name\n\n    def __hash__(self):\n        return hash((self._name,))\n\n    def __repr__(self):\n        return 'typing.' + self._name\n\n    def __reduce__(self):\n        return self._name\n\n    def __call__(self, *args, **kwds):\n        raise TypeError(f\"Cannot instantiate {self!r}\")\n\n    def __instancecheck__(self, obj):\n        raise TypeError(f\"{self} cannot be used with isinstance()\")\n\n    def __subclasscheck__(self, cls):\n        raise TypeError(f\"{self} cannot be used with issubclass()\")\n\n    @_tp_cache\n    def __getitem__(self, parameters):\n        if self._name in ('ClassVar', 'Final'):\n            item = _type_check(parameters, f'{self._name} accepts only single type.')\n            return _GenericAlias(self, (item,))\n        if self._name == 'Union':\n            if parameters == ():\n                raise TypeError(\"Cannot take a Union of no types.\")\n            if not isinstance(parameters, tuple):\n                parameters = (parameters,)\n            msg = \"Union[arg, ...]: each arg must be a type.\"\n            parameters = tuple(_type_check(p, msg) for p in parameters)\n            parameters = _remove_dups_flatten(parameters)\n            if len(parameters) == 1:\n                return parameters[0]\n            return _GenericAlias(self, parameters)\n        if self._name == 'Optional':\n            arg = _type_check(parameters, \"Optional[t] requires a single type.\")\n            return Union[arg, type(None)]\n        if self._name == 'Literal':\n            # There is no '_type_check' call because arguments to Literal[...] are\n            # values, not types.\n            return _GenericAlias(self, parameters)\n        raise TypeError(f\"{self} is not subscriptable\")\n\n\nAny = _SpecialForm('Any', doc=\n    \"\"\"Special type indicating an unconstrained type.\n\n    - Any is compatible with every type.\n    - Any assumed to have all methods.\n    - All values assumed to be instances of Any.\n\n    Note that all the above statements are true from the point of view of\n    static type checkers. At runtime, Any should not be used with instance\n    or class checks.\n    \"\"\")\n\nNoReturn = _SpecialForm('NoReturn', doc=\n    \"\"\"Special type indicating functions that never return.\n    Example::\n\n      from typing import NoReturn\n\n      def stop() -> NoReturn:\n          raise Exception('no way')\n\n    This type is invalid in other positions, e.g., ``List[NoReturn]``\n    will fail in static type checkers.\n    \"\"\")\n\nClassVar = _SpecialForm('ClassVar', doc=\n    \"\"\"Special type construct to mark class variables.\n\n    An annotation wrapped in ClassVar indicates that a given\n    attribute is intended to be used as a class variable and\n    should not be set on instances of that class. Usage::\n\n      class Starship:\n          stats: ClassVar[Dict[str, int]] = {} # class variable\n          damage: int = 10                     # instance variable\n\n    ClassVar accepts only types and cannot be further subscribed.\n\n    Note that ClassVar is not a class itself, and should not\n    be used with isinstance() or issubclass().\n    \"\"\")\n\nFinal = _SpecialForm('Final', doc=\n    \"\"\"Special typing construct to indicate final names to type checkers.\n\n    A final name cannot be re-assigned or overridden in a subclass.\n    For example:\n\n      MAX_SIZE: Final = 9000\n      MAX_SIZE += 1  # Error reported by type checker\n\n      class Connection:\n          TIMEOUT: Final[int] = 10\n\n      class FastConnector(Connection):\n          TIMEOUT = 1  # Error reported by type checker\n\n    There is no runtime checking of these properties.\n    \"\"\")\n\nUnion = _SpecialForm('Union', doc=\n    \"\"\"Union type; Union[X, Y] means either X or Y.\n\n    To define a union, use e.g. Union[int, str].  Details:\n    - The arguments must be types and there must be at least one.\n    - None as an argument is a special case and is replaced by\n      type(None).\n    - Unions of unions are flattened, e.g.::\n\n        Union[Union[int, str], float] == Union[int, str, float]\n\n    - Unions of a single argument vanish, e.g.::\n\n        Union[int] == int  # The constructor actually returns int\n\n    - Redundant arguments are skipped, e.g.::\n\n        Union[int, str, int] == Union[int, str]\n\n    - When comparing unions, the argument order is ignored, e.g.::\n\n        Union[int, str] == Union[str, int]\n\n    - You cannot subclass or instantiate a union.\n    - You can use Optional[X] as a shorthand for Union[X, None].\n    \"\"\")\n\nOptional = _SpecialForm('Optional', doc=\n    \"\"\"Optional type.\n\n    Optional[X] is equivalent to Union[X, None].\n    \"\"\")\n\nLiteral = _SpecialForm('Literal', doc=\n    \"\"\"Special typing form to define literal types (a.k.a. value types).\n\n    This form can be used to indicate to type checkers that the corresponding\n    variable or function parameter has a value equivalent to the provided\n    literal (or one of several literals):\n\n      def validate_simple(data: Any) -> Literal[True]:  # always returns True\n          ...\n\n      MODE = Literal['r', 'rb', 'w', 'wb']\n      def open_helper(file: str, mode: MODE) -> str:\n          ...\n\n      open_helper('/some/path', 'r')  # Passes type check\n      open_helper('/other/path', 'typo')  # Error in type checker\n\n   Literal[...] cannot be subclassed. At runtime, an arbitrary value\n   is allowed as type argument to Literal[...], but type checkers may\n   impose restrictions.\n    \"\"\")\n\n\nclass ForwardRef(_Final, _root=True):\n    \"\"\"Internal wrapper to hold a forward reference.\"\"\"\n\n    __slots__ = ('__forward_arg__', '__forward_code__',\n                 '__forward_evaluated__', '__forward_value__',\n                 '__forward_is_argument__')\n\n    def __init__(self, arg, is_argument=True):\n        if not isinstance(arg, str):\n            raise TypeError(f\"Forward reference must be a string -- got {arg!r}\")\n        try:\n            code = compile(arg, '<string>', 'eval')\n        except SyntaxError:\n            raise SyntaxError(f\"Forward reference must be an expression -- got {arg!r}\")\n        self.__forward_arg__ = arg\n        self.__forward_code__ = code\n        self.__forward_evaluated__ = False\n        self.__forward_value__ = None\n        self.__forward_is_argument__ = is_argument\n\n    def _evaluate(self, globalns, localns):\n        if not self.__forward_evaluated__ or localns is not globalns:\n            if globalns is None and localns is None:\n                globalns = localns = {}\n            elif globalns is None:\n                globalns = localns\n            elif localns is None:\n                localns = globalns\n            self.__forward_value__ = _type_check(\n                eval(self.__forward_code__, globalns, localns),\n                \"Forward references must evaluate to types.\",\n                is_argument=self.__forward_is_argument__)\n            self.__forward_evaluated__ = True\n        return self.__forward_value__\n\n    def __eq__(self, other):\n        if not isinstance(other, ForwardRef):\n            return NotImplemented\n        if self.__forward_evaluated__ and other.__forward_evaluated__:\n            return (self.__forward_arg__ == other.__forward_arg__ and\n                    self.__forward_value__ == other.__forward_value__)\n        return self.__forward_arg__ == other.__forward_arg__\n\n    def __hash__(self):\n        return hash(self.__forward_arg__)\n\n    def __repr__(self):\n        return f'ForwardRef({self.__forward_arg__!r})'\n\n\nclass TypeVar(_Final, _Immutable, _root=True):\n    \"\"\"Type variable.\n\n    Usage::\n\n      T = TypeVar('T')  # Can be anything\n      A = TypeVar('A', str, bytes)  # Must be str or bytes\n\n    Type variables exist primarily for the benefit of static type\n    checkers.  They serve as the parameters for generic types as well\n    as for generic function definitions.  See class Generic for more\n    information on generic types.  Generic functions work as follows:\n\n      def repeat(x: T, n: int) -> List[T]:\n          '''Return a list containing n references to x.'''\n          return [x]*n\n\n      def longest(x: A, y: A) -> A:\n          '''Return the longest of two strings.'''\n          return x if len(x) >= len(y) else y\n\n    The latter example's signature is essentially the overloading\n    of (str, str) -> str and (bytes, bytes) -> bytes.  Also note\n    that if the arguments are instances of some subclass of str,\n    the return type is still plain str.\n\n    At runtime, isinstance(x, T) and issubclass(C, T) will raise TypeError.\n\n    Type variables defined with covariant=True or contravariant=True\n    can be used to declare covariant or contravariant generic types.\n    See PEP 484 for more details. By default generic types are invariant\n    in all type variables.\n\n    Type variables can be introspected. e.g.:\n\n      T.__name__ == 'T'\n      T.__constraints__ == ()\n      T.__covariant__ == False\n      T.__contravariant__ = False\n      A.__constraints__ == (str, bytes)\n\n    Note that only type variables defined in global scope can be pickled.\n    \"\"\"\n\n    __slots__ = ('__name__', '__bound__', '__constraints__',\n                 '__covariant__', '__contravariant__')\n\n    def __init__(self, name, *constraints, bound=None,\n                 covariant=False, contravariant=False):\n        self.__name__ = name\n        if covariant and contravariant:\n            raise ValueError(\"Bivariant types are not supported.\")\n        self.__covariant__ = bool(covariant)\n        self.__contravariant__ = bool(contravariant)\n        if constraints and bound is not None:\n            raise TypeError(\"Constraints cannot be combined with bound=...\")\n        if constraints and len(constraints) == 1:\n            raise TypeError(\"A single constraint is not allowed\")\n        msg = \"TypeVar(name, constraint, ...): constraints must be types.\"\n        self.__constraints__ = tuple(_type_check(t, msg) for t in constraints)\n        if bound:\n            self.__bound__ = _type_check(bound, \"Bound must be a type.\")\n        else:\n            self.__bound__ = None\n        try:\n            def_mod = sys._getframe(1).f_globals.get('__name__', '__main__')  # for pickling\n        except (AttributeError, ValueError):\n            def_mod = None\n        if def_mod != 'typing':\n            self.__module__ = def_mod\n\n    def __repr__(self):\n        if self.__covariant__:\n            prefix = '+'\n        elif self.__contravariant__:\n            prefix = '-'\n        else:\n            prefix = '~'\n        return prefix + self.__name__\n\n    def __reduce__(self):\n        return self.__name__\n\n\n# Special typing constructs Union, Optional, Generic, Callable and Tuple\n# use three special attributes for internal bookkeeping of generic types:\n# * __parameters__ is a tuple of unique free type parameters of a generic\n#   type, for example, Dict[T, T].__parameters__ == (T,);\n# * __origin__ keeps a reference to a type that was subscripted,\n#   e.g., Union[T, int].__origin__ == Union, or the non-generic version of\n#   the type.\n# * __args__ is a tuple of all arguments used in subscripting,\n#   e.g., Dict[T, int].__args__ == (T, int).\n\n\n# Mapping from non-generic type names that have a generic alias in typing\n# but with a different name.\n_normalize_alias = {'list': 'List',\n                    'tuple': 'Tuple',\n                    'dict': 'Dict',\n                    'set': 'Set',\n                    'frozenset': 'FrozenSet',\n                    'deque': 'Deque',\n                    'defaultdict': 'DefaultDict',\n                    'type': 'Type',\n                    'Set': 'AbstractSet'}\n\ndef _is_dunder(attr):\n    return attr.startswith('__') and attr.endswith('__')\n\n\nclass _GenericAlias(_Final, _root=True):\n    \"\"\"The central part of internal API.\n\n    This represents a generic version of type 'origin' with type arguments 'params'.\n    There are two kind of these aliases: user defined and special. The special ones\n    are wrappers around builtin collections and ABCs in collections.abc. These must\n    have 'name' always set. If 'inst' is False, then the alias can't be instantiated,\n    this is used by e.g. typing.List and typing.Dict.\n    \"\"\"\n    def __init__(self, origin, params, *, inst=True, special=False, name=None):\n        self._inst = inst\n        self._special = special\n        if special and name is None:\n            orig_name = origin.__name__\n            name = _normalize_alias.get(orig_name, orig_name)\n        self._name = name\n        if not isinstance(params, tuple):\n            params = (params,)\n        self.__origin__ = origin\n        self.__args__ = tuple(... if a is _TypingEllipsis else\n                              () if a is _TypingEmpty else\n                              a for a in params)\n        self.__parameters__ = _collect_type_vars(params)\n        self.__slots__ = None  # This is not documented.\n        if not name:\n            self.__module__ = origin.__module__\n\n    @_tp_cache\n    def __getitem__(self, params):\n        if self.__origin__ in (Generic, Protocol):\n            # Can't subscript Generic[...] or Protocol[...].\n            raise TypeError(f\"Cannot subscript already-subscripted {self}\")\n        if not isinstance(params, tuple):\n            params = (params,)\n        msg = \"Parameters to generic types must be types.\"\n        params = tuple(_type_check(p, msg) for p in params)\n        _check_generic(self, params)\n        return _subs_tvars(self, self.__parameters__, params)\n\n    def copy_with(self, params):\n        # We don't copy self._special.\n        return _GenericAlias(self.__origin__, params, name=self._name, inst=self._inst)\n\n    def __repr__(self):\n        if (self._name != 'Callable' or\n                len(self.__args__) == 2 and self.__args__[0] is Ellipsis):\n            if self._name:\n                name = 'typing.' + self._name\n            else:\n                name = _type_repr(self.__origin__)\n            if not self._special:\n                args = f'[{\", \".join([_type_repr(a) for a in self.__args__])}]'\n            else:\n                args = ''\n            return (f'{name}{args}')\n        if self._special:\n            return 'typing.Callable'\n        return (f'typing.Callable'\n                f'[[{\", \".join([_type_repr(a) for a in self.__args__[:-1]])}], '\n                f'{_type_repr(self.__args__[-1])}]')\n\n    def __eq__(self, other):\n        if not isinstance(other, _GenericAlias):\n            return NotImplemented\n        if self.__origin__ != other.__origin__:\n            return False\n        if self.__origin__ is Union and other.__origin__ is Union:\n            return frozenset(self.__args__) == frozenset(other.__args__)\n        return self.__args__ == other.__args__\n\n    def __hash__(self):\n        if self.__origin__ is Union:\n            return hash((Union, frozenset(self.__args__)))\n        return hash((self.__origin__, self.__args__))\n\n    def __call__(self, *args, **kwargs):\n        if not self._inst:\n            raise TypeError(f\"Type {self._name} cannot be instantiated; \"\n                            f\"use {self._name.lower()}() instead\")\n        result = self.__origin__(*args, **kwargs)\n        try:\n            result.__orig_class__ = self\n        except AttributeError:\n            pass\n        return result\n\n    def __mro_entries__(self, bases):\n        if self._name:  # generic version of an ABC or built-in class\n            res = []\n            if self.__origin__ not in bases:\n                res.append(self.__origin__)\n            i = bases.index(self)\n            if not any(isinstance(b, _GenericAlias) or issubclass(b, Generic)\n                       for b in bases[i+1:]):\n                res.append(Generic)\n            return tuple(res)\n        if self.__origin__ is Generic:\n            if Protocol in bases:\n                return ()\n            i = bases.index(self)\n            for b in bases[i+1:]:\n                if isinstance(b, _GenericAlias) and b is not self:\n                    return ()\n        return (self.__origin__,)\n\n    def __getattr__(self, attr):\n        # We are careful for copy and pickle.\n        # Also for simplicity we just don't relay all dunder names\n        if '__origin__' in self.__dict__ and not _is_dunder(attr):\n            return getattr(self.__origin__, attr)\n        raise AttributeError(attr)\n\n    def __setattr__(self, attr, val):\n        if _is_dunder(attr) or attr in ('_name', '_inst', '_special'):\n            super().__setattr__(attr, val)\n        else:\n            setattr(self.__origin__, attr, val)\n\n    def __instancecheck__(self, obj):\n        return self.__subclasscheck__(type(obj))\n\n    def __subclasscheck__(self, cls):\n        if self._special:\n            if not isinstance(cls, _GenericAlias):\n                return issubclass(cls, self.__origin__)\n            if cls._special:\n                return issubclass(cls.__origin__, self.__origin__)\n        raise TypeError(\"Subscripted generics cannot be used with\"\n                        \" class and instance checks\")\n\n    def __reduce__(self):\n        if self._special:\n            return self._name\n\n        if self._name:\n            origin = globals()[self._name]\n        else:\n            origin = self.__origin__\n        if (origin is Callable and\n            not (len(self.__args__) == 2 and self.__args__[0] is Ellipsis)):\n            args = list(self.__args__[:-1]), self.__args__[-1]\n        else:\n            args = tuple(self.__args__)\n            if len(args) == 1 and not isinstance(args[0], tuple):\n                args, = args\n        return operator.getitem, (origin, args)\n\n\nclass _VariadicGenericAlias(_GenericAlias, _root=True):\n    \"\"\"Same as _GenericAlias above but for variadic aliases. Currently,\n    this is used only by special internal aliases: Tuple and Callable.\n    \"\"\"\n    def __getitem__(self, params):\n        if self._name != 'Callable' or not self._special:\n            return self.__getitem_inner__(params)\n        if not isinstance(params, tuple) or len(params) != 2:\n            raise TypeError(\"Callable must be used as \"\n                            \"Callable[[arg, ...], result].\")\n        args, result = params\n        if args is Ellipsis:\n            params = (Ellipsis, result)\n        else:\n            if not isinstance(args, list):\n                raise TypeError(f\"Callable[args, result]: args must be a list.\"\n                                f\" Got {args}\")\n            params = (tuple(args), result)\n        return self.__getitem_inner__(params)\n\n    @_tp_cache\n    def __getitem_inner__(self, params):\n        if self.__origin__ is tuple and self._special:\n            if params == ():\n                return self.copy_with((_TypingEmpty,))\n            if not isinstance(params, tuple):\n                params = (params,)\n            if len(params) == 2 and params[1] is ...:\n                msg = \"Tuple[t, ...]: t must be a type.\"\n                p = _type_check(params[0], msg)\n                return self.copy_with((p, _TypingEllipsis))\n            msg = \"Tuple[t0, t1, ...]: each t must be a type.\"\n            params = tuple(_type_check(p, msg) for p in params)\n            return self.copy_with(params)\n        if self.__origin__ is collections.abc.Callable and self._special:\n            args, result = params\n            msg = \"Callable[args, result]: result must be a type.\"\n            result = _type_check(result, msg)\n            if args is Ellipsis:\n                return self.copy_with((_TypingEllipsis, result))\n            msg = \"Callable[[arg, ...], result]: each arg must be a type.\"\n            args = tuple(_type_check(arg, msg) for arg in args)\n            params = args + (result,)\n            return self.copy_with(params)\n        return super().__getitem__(params)\n\n\nclass Generic:\n    \"\"\"Abstract base class for generic types.\n\n    A generic type is typically declared by inheriting from\n    this class parameterized with one or more type variables.\n    For example, a generic mapping type might be defined as::\n\n      class Mapping(Generic[KT, VT]):\n          def __getitem__(self, key: KT) -> VT:\n              ...\n          # Etc.\n\n    This class can then be used as follows::\n\n      def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:\n          try:\n              return mapping[key]\n          except KeyError:\n              return default\n    \"\"\"\n    __slots__ = ()\n    _is_protocol = False\n\n    def __new__(cls, *args, **kwds):\n        if cls in (Generic, Protocol):\n            raise TypeError(f\"Type {cls.__name__} cannot be instantiated; \"\n                            \"it can be used only as a base class\")\n        if super().__new__ is object.__new__ and cls.__init__ is not object.__init__:\n            obj = super().__new__(cls)\n        else:\n            obj = super().__new__(cls, *args, **kwds)\n        return obj\n\n    @_tp_cache\n    def __class_getitem__(cls, params):\n        if not isinstance(params, tuple):\n            params = (params,)\n        if not params and cls is not Tuple:\n            raise TypeError(\n                f\"Parameter list to {cls.__qualname__}[...] cannot be empty\")\n        msg = \"Parameters to generic types must be types.\"\n        params = tuple(_type_check(p, msg) for p in params)\n        if cls in (Generic, Protocol):\n            # Generic and Protocol can only be subscripted with unique type variables.\n            if not all(isinstance(p, TypeVar) for p in params):\n                raise TypeError(\n                    f\"Parameters to {cls.__name__}[...] must all be type variables\")\n            if len(set(params)) != len(params):\n                raise TypeError(\n                    f\"Parameters to {cls.__name__}[...] must all be unique\")\n        else:\n            # Subscripting a regular Generic subclass.\n            _check_generic(cls, params)\n        return _GenericAlias(cls, params)\n\n    def __init_subclass__(cls, *args, **kwargs):\n        super().__init_subclass__(*args, **kwargs)\n        tvars = []\n        if '__orig_bases__' in cls.__dict__:\n            error = Generic in cls.__orig_bases__\n        else:\n            error = Generic in cls.__bases__ and cls.__name__ != 'Protocol'\n        if error:\n            raise TypeError(\"Cannot inherit from plain Generic\")\n        if '__orig_bases__' in cls.__dict__:\n            tvars = _collect_type_vars(cls.__orig_bases__)\n            # Look for Generic[T1, ..., Tn].\n            # If found, tvars must be a subset of it.\n            # If not found, tvars is it.\n            # Also check for and reject plain Generic,\n            # and reject multiple Generic[...].\n            gvars = None\n            for base in cls.__orig_bases__:\n                if (isinstance(base, _GenericAlias) and\n                        base.__origin__ is Generic):\n                    if gvars is not None:\n                        raise TypeError(\n                            \"Cannot inherit from Generic[...] multiple types.\")\n                    gvars = base.__parameters__\n            if gvars is not None:\n                tvarset = set(tvars)\n                gvarset = set(gvars)\n                if not tvarset <= gvarset:\n                    s_vars = ', '.join(str(t) for t in tvars if t not in gvarset)\n                    s_args = ', '.join(str(g) for g in gvars)\n                    raise TypeError(f\"Some type variables ({s_vars}) are\"\n                                    f\" not listed in Generic[{s_args}]\")\n                tvars = gvars\n        cls.__parameters__ = tuple(tvars)\n\n\nclass _TypingEmpty:\n    \"\"\"Internal placeholder for () or []. Used by TupleMeta and CallableMeta\n    to allow empty list/tuple in specific places, without allowing them\n    to sneak in where prohibited.\n    \"\"\"\n\n\nclass _TypingEllipsis:\n    \"\"\"Internal placeholder for ... (ellipsis).\"\"\"\n\n\n_TYPING_INTERNALS = ['__parameters__', '__orig_bases__',  '__orig_class__',\n                     '_is_protocol', '_is_runtime_protocol']\n\n_SPECIAL_NAMES = ['__abstractmethods__', '__annotations__', '__dict__', '__doc__',\n                  '__init__', '__module__', '__new__', '__slots__',\n                  '__subclasshook__', '__weakref__']\n\n# These special attributes will be not collected as protocol members.\nEXCLUDED_ATTRIBUTES = _TYPING_INTERNALS + _SPECIAL_NAMES + ['_MutableMapping__marker']\n\n\ndef _get_protocol_attrs(cls):\n    \"\"\"Collect protocol members from a protocol class objects.\n\n    This includes names actually defined in the class dictionary, as well\n    as names that appear in annotations. Special names (above) are skipped.\n    \"\"\"\n    attrs = set()\n    for base in cls.__mro__[:-1]:  # without object\n        if base.__name__ in ('Protocol', 'Generic'):\n            continue\n        annotations = getattr(base, '__annotations__', {})\n        for attr in list(base.__dict__.keys()) + list(annotations.keys()):\n            if not attr.startswith('_abc_') and attr not in EXCLUDED_ATTRIBUTES:\n                attrs.add(attr)\n    return attrs\n\n\ndef _is_callable_members_only(cls):\n    # PEP 544 prohibits using issubclass() with protocols that have non-method members.\n    return all(callable(getattr(cls, attr, None)) for attr in _get_protocol_attrs(cls))\n\n\ndef _no_init(self, *args, **kwargs):\n    if type(self)._is_protocol:\n        raise TypeError('Protocols cannot be instantiated')\n\n\ndef _allow_reckless_class_cheks():\n    \"\"\"Allow instnance and class checks for special stdlib modules.\n\n    The abc and functools modules indiscriminately call isinstance() and\n    issubclass() on the whole MRO of a user class, which may contain protocols.\n    \"\"\"\n    try:\n        return sys._getframe(3).f_globals['__name__'] in ['abc', 'functools']\n    except (AttributeError, ValueError):  # For platforms without _getframe().\n        return True\n\n\n_PROTO_WHITELIST = {\n    'collections.abc': [\n        'Callable', 'Awaitable', 'Iterable', 'Iterator', 'AsyncIterable',\n        'Hashable', 'Sized', 'Container', 'Collection', 'Reversible',\n    ],\n    'contextlib': ['AbstractContextManager', 'AbstractAsyncContextManager'],\n}\n\n\nclass _ProtocolMeta(ABCMeta):\n    # This metaclass is really unfortunate and exists only because of\n    # the lack of __instancehook__.\n    def __instancecheck__(cls, instance):\n        # We need this method for situations where attributes are\n        # assigned in __init__.\n        if ((not getattr(cls, '_is_protocol', False) or\n                _is_callable_members_only(cls)) and\n                issubclass(instance.__class__, cls)):\n            return True\n        if cls._is_protocol:\n            if all(hasattr(instance, attr) and\n                    # All *methods* can be blocked by setting them to None.\n                    (not callable(getattr(cls, attr, None)) or\n                     getattr(instance, attr) is not None)\n                    for attr in _get_protocol_attrs(cls)):\n                return True\n        return super().__instancecheck__(instance)\n\n\nclass Protocol(Generic, metaclass=_ProtocolMeta):\n    \"\"\"Base class for protocol classes.\n\n    Protocol classes are defined as::\n\n        class Proto(Protocol):\n            def meth(self) -> int:\n                ...\n\n    Such classes are primarily used with static type checkers that recognize\n    structural subtyping (static duck-typing), for example::\n\n        class C:\n            def meth(self) -> int:\n                return 0\n\n        def func(x: Proto) -> int:\n            return x.meth()\n\n        func(C())  # Passes static type check\n\n    See PEP 544 for details. Protocol classes decorated with\n    @typing.runtime_checkable act as simple-minded runtime protocols that check\n    only the presence of given attributes, ignoring their type signatures.\n    Protocol classes can be generic, they are defined as::\n\n        class GenProto(Protocol[T]):\n            def meth(self) -> T:\n                ...\n    \"\"\"\n    __slots__ = ()\n    _is_protocol = True\n    _is_runtime_protocol = False\n\n    def __init_subclass__(cls, *args, **kwargs):\n        super().__init_subclass__(*args, **kwargs)\n\n        # Determine if this is a protocol or a concrete subclass.\n        if not cls.__dict__.get('_is_protocol', False):\n            cls._is_protocol = any(b is Protocol for b in cls.__bases__)\n\n        # Set (or override) the protocol subclass hook.\n        def _proto_hook(other):\n            if not cls.__dict__.get('_is_protocol', False):\n                return NotImplemented\n\n            # First, perform various sanity checks.\n            if not getattr(cls, '_is_runtime_protocol', False):\n                if _allow_reckless_class_cheks():\n                    return NotImplemented\n                raise TypeError(\"Instance and class checks can only be used with\"\n                                \" @runtime_checkable protocols\")\n            if not _is_callable_members_only(cls):\n                if _allow_reckless_class_cheks():\n                    return NotImplemented\n                raise TypeError(\"Protocols with non-method members\"\n                                \" don't support issubclass()\")\n            if not isinstance(other, type):\n                # Same error message as for issubclass(1, int).\n                raise TypeError('issubclass() arg 1 must be a class')\n\n            # Second, perform the actual structural compatibility check.\n            for attr in _get_protocol_attrs(cls):\n                for base in other.__mro__:\n                    # Check if the members appears in the class dictionary...\n                    if attr in base.__dict__:\n                        if base.__dict__[attr] is None:\n                            return NotImplemented\n                        break\n\n                    # ...or in annotations, if it is a sub-protocol.\n                    annotations = getattr(base, '__annotations__', {})\n                    if (isinstance(annotations, collections.abc.Mapping) and\n                            attr in annotations and\n                            issubclass(other, Generic) and other._is_protocol):\n                        break\n                else:\n                    return NotImplemented\n            return True\n\n        if '__subclasshook__' not in cls.__dict__:\n            cls.__subclasshook__ = _proto_hook\n\n        # We have nothing more to do for non-protocols...\n        if not cls._is_protocol:\n            return\n\n        # ... otherwise check consistency of bases, and prohibit instantiation.\n        for base in cls.__bases__:\n            if not (base in (object, Generic) or\n                    base.__module__ in _PROTO_WHITELIST and\n                    base.__name__ in _PROTO_WHITELIST[base.__module__] or\n                    issubclass(base, Generic) and base._is_protocol):\n                raise TypeError('Protocols can only inherit from other'\n                                ' protocols, got %r' % base)\n        cls.__init__ = _no_init\n\n\ndef runtime_checkable(cls):\n    \"\"\"Mark a protocol class as a runtime protocol.\n\n    Such protocol can be used with isinstance() and issubclass().\n    Raise TypeError if applied to a non-protocol class.\n    This allows a simple-minded structural check very similar to\n    one trick ponies in collections.abc such as Iterable.\n    For example::\n\n        @runtime_checkable\n        class Closable(Protocol):\n            def close(self): ...\n\n        assert isinstance(open('/some/file'), Closable)\n\n    Warning: this will check only the presence of the required methods,\n    not their type signatures!\n    \"\"\"\n    if not issubclass(cls, Generic) or not cls._is_protocol:\n        raise TypeError('@runtime_checkable can be only applied to protocol classes,'\n                        ' got %r' % cls)\n    cls._is_runtime_protocol = True\n    return cls\n\n\ndef cast(typ, val):\n    \"\"\"Cast a value to a type.\n\n    This returns the value unchanged.  To the type checker this\n    signals that the return value has the designated type, but at\n    runtime we intentionally don't check anything (we want this\n    to be as fast as possible).\n    \"\"\"\n    return val\n\n\ndef _get_defaults(func):\n    \"\"\"Internal helper to extract the default arguments, by name.\"\"\"\n    try:\n        code = func.__code__\n    except AttributeError:\n        # Some built-in functions don't have __code__, __defaults__, etc.\n        return {}\n    pos_count = code.co_argcount\n    arg_names = code.co_varnames\n    arg_names = arg_names[:pos_count]\n    defaults = func.__defaults__ or ()\n    kwdefaults = func.__kwdefaults__\n    res = dict(kwdefaults) if kwdefaults else {}\n    pos_offset = pos_count - len(defaults)\n    for name, value in zip(arg_names[pos_offset:], defaults):\n        assert name not in res\n        res[name] = value\n    return res\n\n\n_allowed_types = (types.FunctionType, types.BuiltinFunctionType,\n                  types.MethodType, types.ModuleType,\n                  WrapperDescriptorType, MethodWrapperType, MethodDescriptorType)\n\n\ndef get_type_hints(obj, globalns=None, localns=None):\n    \"\"\"Return type hints for an object.\n\n    This is often the same as obj.__annotations__, but it handles\n    forward references encoded as string literals, and if necessary\n    adds Optional[t] if a default value equal to None is set.\n\n    The argument may be a module, class, method, or function. The annotations\n    are returned as a dictionary. For classes, annotations include also\n    inherited members.\n\n    TypeError is raised if the argument is not of a type that can contain\n    annotations, and an empty dictionary is returned if no annotations are\n    present.\n\n    BEWARE -- the behavior of globalns and localns is counterintuitive\n    (unless you are familiar with how eval() and exec() work).  The\n    search order is locals first, then globals.\n\n    - If no dict arguments are passed, an attempt is made to use the\n      globals from obj (or the respective module's globals for classes),\n      and these are also used as the locals.  If the object does not appear\n      to have globals, an empty dictionary is used.\n\n    - If one dict argument is passed, it is used for both globals and\n      locals.\n\n    - If two dict arguments are passed, they specify globals and\n      locals, respectively.\n    \"\"\"\n\n    if getattr(obj, '__no_type_check__', None):\n        return {}\n    # Classes require a special treatment.\n    if isinstance(obj, type):\n        hints = {}\n        for base in reversed(obj.__mro__):\n            if globalns is None:\n                base_globals = sys.modules[base.__module__].__dict__\n            else:\n                base_globals = globalns\n            ann = base.__dict__.get('__annotations__', {})\n            for name, value in ann.items():\n                if value is None:\n                    value = type(None)\n                if isinstance(value, str):\n                    value = ForwardRef(value, is_argument=False)\n                value = _eval_type(value, base_globals, localns)\n                hints[name] = value\n        return hints\n\n    if globalns is None:\n        if isinstance(obj, types.ModuleType):\n            globalns = obj.__dict__\n        else:\n            nsobj = obj\n            # Find globalns for the unwrapped object.\n            while hasattr(nsobj, '__wrapped__'):\n                nsobj = nsobj.__wrapped__\n            globalns = getattr(nsobj, '__globals__', {})\n        if localns is None:\n            localns = globalns\n    elif localns is None:\n        localns = globalns\n    hints = getattr(obj, '__annotations__', None)\n    if hints is None:\n        # Return empty annotations for something that _could_ have them.\n        if isinstance(obj, _allowed_types):\n            return {}\n        else:\n            raise TypeError('{!r} is not a module, class, method, '\n                            'or function.'.format(obj))\n    defaults = _get_defaults(obj)\n    hints = dict(hints)\n    for name, value in hints.items():\n        if value is None:\n            value = type(None)\n        if isinstance(value, str):\n            value = ForwardRef(value)\n        value = _eval_type(value, globalns, localns)\n        if name in defaults and defaults[name] is None:\n            value = Optional[value]\n        hints[name] = value\n    return hints\n\n\ndef get_origin(tp):\n    \"\"\"Get the unsubscripted version of a type.\n\n    This supports generic types, Callable, Tuple, Union, Literal, Final and ClassVar.\n    Return None for unsupported types. Examples::\n\n        get_origin(Literal[42]) is Literal\n        get_origin(int) is None\n        get_origin(ClassVar[int]) is ClassVar\n        get_origin(Generic) is Generic\n        get_origin(Generic[T]) is Generic\n        get_origin(Union[T, int]) is Union\n        get_origin(List[Tuple[T, T]][int]) == list\n    \"\"\"\n    if isinstance(tp, _GenericAlias):\n        return tp.__origin__\n    if tp is Generic:\n        return Generic\n    return None\n\n\ndef get_args(tp):\n    \"\"\"Get type arguments with all substitutions performed.\n\n    For unions, basic simplifications used by Union constructor are performed.\n    Examples::\n        get_args(Dict[str, int]) == (str, int)\n        get_args(int) == ()\n        get_args(Union[int, Union[T, int], str][int]) == (int, str)\n        get_args(Union[int, Tuple[T, int]][str]) == (int, Tuple[str, int])\n        get_args(Callable[[], T][int]) == ([], int)\n    \"\"\"\n    if isinstance(tp, _GenericAlias) and not tp._special:\n        res = tp.__args__\n        if get_origin(tp) is collections.abc.Callable and res[0] is not Ellipsis:\n            res = (list(res[:-1]), res[-1])\n        return res\n    return ()\n\n\ndef no_type_check(arg):\n    \"\"\"Decorator to indicate that annotations are not type hints.\n\n    The argument must be a class or function; if it is a class, it\n    applies recursively to all methods and classes defined in that class\n    (but not to methods defined in its superclasses or subclasses).\n\n    This mutates the function(s) or class(es) in place.\n    \"\"\"\n    if isinstance(arg, type):\n        arg_attrs = arg.__dict__.copy()\n        for attr, val in arg.__dict__.items():\n            if val in arg.__bases__ + (arg,):\n                arg_attrs.pop(attr)\n        for obj in arg_attrs.values():\n            if isinstance(obj, types.FunctionType):\n                obj.__no_type_check__ = True\n            if isinstance(obj, type):\n                no_type_check(obj)\n    try:\n        arg.__no_type_check__ = True\n    except TypeError:  # built-in classes\n        pass\n    return arg\n\n\ndef no_type_check_decorator(decorator):\n    \"\"\"Decorator to give another decorator the @no_type_check effect.\n\n    This wraps the decorator with something that wraps the decorated\n    function in @no_type_check.\n    \"\"\"\n\n    @functools.wraps(decorator)\n    def wrapped_decorator(*args, **kwds):\n        func = decorator(*args, **kwds)\n        func = no_type_check(func)\n        return func\n\n    return wrapped_decorator\n\n\ndef _overload_dummy(*args, **kwds):\n    \"\"\"Helper for @overload to raise when called.\"\"\"\n    raise NotImplementedError(\n        \"You should not call an overloaded function. \"\n        \"A series of @overload-decorated functions \"\n        \"outside a stub module should always be followed \"\n        \"by an implementation that is not @overload-ed.\")\n\n\ndef overload(func):\n    \"\"\"Decorator for overloaded functions/methods.\n\n    In a stub file, place two or more stub definitions for the same\n    function in a row, each decorated with @overload.  For example:\n\n      @overload\n      def utf8(value: None) -> None: ...\n      @overload\n      def utf8(value: bytes) -> bytes: ...\n      @overload\n      def utf8(value: str) -> bytes: ...\n\n    In a non-stub file (i.e. a regular .py file), do the same but\n    follow it with an implementation.  The implementation should *not*\n    be decorated with @overload.  For example:\n\n      @overload\n      def utf8(value: None) -> None: ...\n      @overload\n      def utf8(value: bytes) -> bytes: ...\n      @overload\n      def utf8(value: str) -> bytes: ...\n      def utf8(value):\n          # implementation goes here\n    \"\"\"\n    return _overload_dummy\n\n\ndef final(f):\n    \"\"\"A decorator to indicate final methods and final classes.\n\n    Use this decorator to indicate to type checkers that the decorated\n    method cannot be overridden, and decorated class cannot be subclassed.\n    For example:\n\n      class Base:\n          @final\n          def done(self) -> None:\n              ...\n      class Sub(Base):\n          def done(self) -> None:  # Error reported by type checker\n                ...\n\n      @final\n      class Leaf:\n          ...\n      class Other(Leaf):  # Error reported by type checker\n          ...\n\n    There is no runtime checking of these properties.\n    \"\"\"\n    return f\n\n\n# Some unconstrained type variables.  These are used by the container types.\n# (These are not for export.)\nT = TypeVar('T')  # Any type.\nKT = TypeVar('KT')  # Key type.\nVT = TypeVar('VT')  # Value type.\nT_co = TypeVar('T_co', covariant=True)  # Any type covariant containers.\nV_co = TypeVar('V_co', covariant=True)  # Any type covariant containers.\nVT_co = TypeVar('VT_co', covariant=True)  # Value type covariant containers.\nT_contra = TypeVar('T_contra', contravariant=True)  # Ditto contravariant.\n# Internal type variable used for Type[].\nCT_co = TypeVar('CT_co', covariant=True, bound=type)\n\n# A useful type variable with constraints.  This represents string types.\n# (This one *is* for export!)\nAnyStr = TypeVar('AnyStr', bytes, str)\n\n\n# Various ABCs mimicking those in collections.abc.\ndef _alias(origin, params, inst=True):\n    return _GenericAlias(origin, params, special=True, inst=inst)\n\nHashable = _alias(collections.abc.Hashable, ())  # Not generic.\nAwaitable = _alias(collections.abc.Awaitable, T_co)\nCoroutine = _alias(collections.abc.Coroutine, (T_co, T_contra, V_co))\nAsyncIterable = _alias(collections.abc.AsyncIterable, T_co)\nAsyncIterator = _alias(collections.abc.AsyncIterator, T_co)\nIterable = _alias(collections.abc.Iterable, T_co)\nIterator = _alias(collections.abc.Iterator, T_co)\nReversible = _alias(collections.abc.Reversible, T_co)\nSized = _alias(collections.abc.Sized, ())  # Not generic.\nContainer = _alias(collections.abc.Container, T_co)\nCollection = _alias(collections.abc.Collection, T_co)\nCallable = _VariadicGenericAlias(collections.abc.Callable, (), special=True)\nCallable.__doc__ = \\\n    \"\"\"Callable type; Callable[[int], str] is a function of (int) -> str.\n\n    The subscription syntax must always be used with exactly two\n    values: the argument list and the return type.  The argument list\n    must be a list of types or ellipsis; the return type must be a single type.\n\n    There is no syntax to indicate optional or keyword arguments,\n    such function types are rarely used as callback types.\n    \"\"\"\nAbstractSet = _alias(collections.abc.Set, T_co)\nMutableSet = _alias(collections.abc.MutableSet, T)\n# NOTE: Mapping is only covariant in the value type.\nMapping = _alias(collections.abc.Mapping, (KT, VT_co))\nMutableMapping = _alias(collections.abc.MutableMapping, (KT, VT))\nSequence = _alias(collections.abc.Sequence, T_co)\nMutableSequence = _alias(collections.abc.MutableSequence, T)\nByteString = _alias(collections.abc.ByteString, ())  # Not generic\nTuple = _VariadicGenericAlias(tuple, (), inst=False, special=True)\nTuple.__doc__ = \\\n    \"\"\"Tuple type; Tuple[X, Y] is the cross-product type of X and Y.\n\n    Example: Tuple[T1, T2] is a tuple of two elements corresponding\n    to type variables T1 and T2.  Tuple[int, float, str] is a tuple\n    of an int, a float and a string.\n\n    To specify a variable-length tuple of homogeneous type, use Tuple[T, ...].\n    \"\"\"\nList = _alias(list, T, inst=False)\nDeque = _alias(collections.deque, T)\nSet = _alias(set, T, inst=False)\nFrozenSet = _alias(frozenset, T_co, inst=False)\nMappingView = _alias(collections.abc.MappingView, T_co)\nKeysView = _alias(collections.abc.KeysView, KT)\nItemsView = _alias(collections.abc.ItemsView, (KT, VT_co))\nValuesView = _alias(collections.abc.ValuesView, VT_co)\nContextManager = _alias(contextlib.AbstractContextManager, T_co)\nAsyncContextManager = _alias(contextlib.AbstractAsyncContextManager, T_co)\nDict = _alias(dict, (KT, VT), inst=False)\nDefaultDict = _alias(collections.defaultdict, (KT, VT))\nOrderedDict = _alias(collections.OrderedDict, (KT, VT))\nCounter = _alias(collections.Counter, T)\nChainMap = _alias(collections.ChainMap, (KT, VT))\nGenerator = _alias(collections.abc.Generator, (T_co, T_contra, V_co))\nAsyncGenerator = _alias(collections.abc.AsyncGenerator, (T_co, T_contra))\nType = _alias(type, CT_co, inst=False)\nType.__doc__ = \\\n    \"\"\"A special construct usable to annotate class objects.\n\n    For example, suppose we have the following classes::\n\n      class User: ...  # Abstract base for User classes\n      class BasicUser(User): ...\n      class ProUser(User): ...\n      class TeamUser(User): ...\n\n    And a function that takes a class argument that's a subclass of\n    User and returns an instance of the corresponding class::\n\n      U = TypeVar('U', bound=User)\n      def new_user(user_class: Type[U]) -> U:\n          user = user_class()\n          # (Here we could write the user object to a database)\n          return user\n\n      joe = new_user(BasicUser)\n\n    At this point the type checker knows that joe has type BasicUser.\n    \"\"\"\n\n\n@runtime_checkable\nclass SupportsInt(Protocol):\n    \"\"\"An ABC with one abstract method __int__.\"\"\"\n    __slots__ = ()\n\n    @abstractmethod\n    def __int__(self) -> int:\n        pass\n\n\n@runtime_checkable\nclass SupportsFloat(Protocol):\n    \"\"\"An ABC with one abstract method __float__.\"\"\"\n    __slots__ = ()\n\n    @abstractmethod\n    def __float__(self) -> float:\n        pass\n\n\n@runtime_checkable\nclass SupportsComplex(Protocol):\n    \"\"\"An ABC with one abstract method __complex__.\"\"\"\n    __slots__ = ()\n\n    @abstractmethod\n    def __complex__(self) -> complex:\n        pass\n\n\n@runtime_checkable\nclass SupportsBytes(Protocol):\n    \"\"\"An ABC with one abstract method __bytes__.\"\"\"\n    __slots__ = ()\n\n    @abstractmethod\n    def __bytes__(self) -> bytes:\n        pass\n\n\n@runtime_checkable\nclass SupportsIndex(Protocol):\n    \"\"\"An ABC with one abstract method __index__.\"\"\"\n    __slots__ = ()\n\n    @abstractmethod\n    def __index__(self) -> int:\n        pass\n\n\n@runtime_checkable\nclass SupportsAbs(Protocol[T_co]):\n    \"\"\"An ABC with one abstract method __abs__ that is covariant in its return type.\"\"\"\n    __slots__ = ()\n\n    @abstractmethod\n    def __abs__(self) -> T_co:\n        pass\n\n\n@runtime_checkable\nclass SupportsRound(Protocol[T_co]):\n    \"\"\"An ABC with one abstract method __round__ that is covariant in its return type.\"\"\"\n    __slots__ = ()\n\n    @abstractmethod\n    def __round__(self, ndigits: int = 0) -> T_co:\n        pass\n\n\ndef _make_nmtuple(name, types):\n    msg = \"NamedTuple('Name', [(f0, t0), (f1, t1), ...]); each t must be a type\"\n    types = [(n, _type_check(t, msg)) for n, t in types]\n    nm_tpl = collections.namedtuple(name, [n for n, t in types])\n    # Prior to PEP 526, only _field_types attribute was assigned.\n    # Now __annotations__ are used and _field_types is deprecated (remove in 3.9)\n    nm_tpl.__annotations__ = nm_tpl._field_types = dict(types)\n    try:\n        nm_tpl.__module__ = sys._getframe(2).f_globals.get('__name__', '__main__')\n    except (AttributeError, ValueError):\n        pass\n    return nm_tpl\n\n\n# attributes prohibited to set in NamedTuple class syntax\n_prohibited = ('__new__', '__init__', '__slots__', '__getnewargs__',\n               '_fields', '_field_defaults', '_field_types',\n               '_make', '_replace', '_asdict', '_source')\n\n_special = ('__module__', '__name__', '__annotations__')\n\n\nclass NamedTupleMeta(type):\n\n    def __new__(cls, typename, bases, ns):\n        if ns.get('_root', False):\n            return super().__new__(cls, typename, bases, ns)\n        types = ns.get('__annotations__', {})\n        nm_tpl = _make_nmtuple(typename, types.items())\n        defaults = []\n        defaults_dict = {}\n        for field_name in types:\n            if field_name in ns:\n                default_value = ns[field_name]\n                defaults.append(default_value)\n                defaults_dict[field_name] = default_value\n            elif defaults:\n                raise TypeError(\"Non-default namedtuple field {field_name} cannot \"\n                                \"follow default field(s) {default_names}\"\n                                .format(field_name=field_name,\n                                        default_names=', '.join(defaults_dict.keys())))\n        nm_tpl.__new__.__annotations__ = dict(types)\n        nm_tpl.__new__.__defaults__ = tuple(defaults)\n        nm_tpl._field_defaults = defaults_dict\n        # update from user namespace without overriding special namedtuple attributes\n        for key in ns:\n            if key in _prohibited:\n                raise AttributeError(\"Cannot overwrite NamedTuple attribute \" + key)\n            elif key not in _special and key not in nm_tpl._fields:\n                setattr(nm_tpl, key, ns[key])\n        return nm_tpl\n\n\nclass NamedTuple(metaclass=NamedTupleMeta):\n    \"\"\"Typed version of namedtuple.\n\n    Usage in Python versions >= 3.6::\n\n        class Employee(NamedTuple):\n            name: str\n            id: int\n\n    This is equivalent to::\n\n        Employee = collections.namedtuple('Employee', ['name', 'id'])\n\n    The resulting class has an extra __annotations__ attribute, giving a\n    dict that maps field names to types.  (The field names are also in\n    the _fields attribute, which is part of the namedtuple API.)\n    Alternative equivalent keyword syntax is also accepted::\n\n        Employee = NamedTuple('Employee', name=str, id=int)\n\n    In Python versions <= 3.5 use::\n\n        Employee = NamedTuple('Employee', [('name', str), ('id', int)])\n    \"\"\"\n    _root = True\n\n    def __new__(*args, **kwargs):\n        if not args:\n            raise TypeError('NamedTuple.__new__(): not enough arguments')\n        cls, *args = args  # allow the \"cls\" keyword be passed\n        if args:\n            typename, *args = args # allow the \"typename\" keyword be passed\n        elif 'typename' in kwargs:\n            typename = kwargs.pop('typename')\n            import warnings\n            warnings.warn(\"Passing 'typename' as keyword argument is deprecated\",\n                          DeprecationWarning, stacklevel=2)\n        else:\n            raise TypeError(\"NamedTuple.__new__() missing 1 required positional \"\n                            \"argument: 'typename'\")\n        if args:\n            try:\n                fields, = args # allow the \"fields\" keyword be passed\n            except ValueError:\n                raise TypeError(f'NamedTuple.__new__() takes from 2 to 3 '\n                                f'positional arguments but {len(args) + 2} '\n                                f'were given') from None\n        elif 'fields' in kwargs and len(kwargs) == 1:\n            fields = kwargs.pop('fields')\n            import warnings\n            warnings.warn(\"Passing 'fields' as keyword argument is deprecated\",\n                          DeprecationWarning, stacklevel=2)\n        else:\n            fields = None\n\n        if fields is None:\n            fields = kwargs.items()\n        elif kwargs:\n            raise TypeError(\"Either list of fields or keywords\"\n                            \" can be provided to NamedTuple, not both\")\n        return _make_nmtuple(typename, fields)\n    __new__.__text_signature__ = '($cls, typename, fields=None, /, **kwargs)'\n\n\ndef _dict_new(cls, /, *args, **kwargs):\n    return dict(*args, **kwargs)\n\n\ndef _typeddict_new(cls, typename, fields=None, /, *, total=True, **kwargs):\n    if fields is None:\n        fields = kwargs\n    elif kwargs:\n        raise TypeError(\"TypedDict takes either a dict or keyword arguments,\"\n                        \" but not both\")\n\n    ns = {'__annotations__': dict(fields), '__total__': total}\n    try:\n        # Setting correct module is necessary to make typed dict classes pickleable.\n        ns['__module__'] = sys._getframe(1).f_globals.get('__name__', '__main__')\n    except (AttributeError, ValueError):\n        pass\n\n    return _TypedDictMeta(typename, (), ns)\n\n\ndef _check_fails(cls, other):\n    # Typed dicts are only for static structural subtyping.\n    raise TypeError('TypedDict does not support instance and class checks')\n\n\nclass _TypedDictMeta(type):\n    def __new__(cls, name, bases, ns, total=True):\n        \"\"\"Create new typed dict class object.\n\n        This method is called directly when TypedDict is subclassed,\n        or via _typeddict_new when TypedDict is instantiated. This way\n        TypedDict supports all three syntax forms described in its docstring.\n        Subclasses and instances of TypedDict return actual dictionaries\n        via _dict_new.\n        \"\"\"\n        ns['__new__'] = _typeddict_new if name == 'TypedDict' else _dict_new\n        tp_dict = super(_TypedDictMeta, cls).__new__(cls, name, (dict,), ns)\n\n        anns = ns.get('__annotations__', {})\n        msg = \"TypedDict('Name', {f0: t0, f1: t1, ...}); each t must be a type\"\n        anns = {n: _type_check(tp, msg) for n, tp in anns.items()}\n        for base in bases:\n            anns.update(base.__dict__.get('__annotations__', {}))\n        tp_dict.__annotations__ = anns\n        if not hasattr(tp_dict, '__total__'):\n            tp_dict.__total__ = total\n        return tp_dict\n\n    __instancecheck__ = __subclasscheck__ = _check_fails\n\n\nclass TypedDict(dict, metaclass=_TypedDictMeta):\n    \"\"\"A simple typed namespace. At runtime it is equivalent to a plain dict.\n\n    TypedDict creates a dictionary type that expects all of its\n    instances to have a certain set of keys, where each key is\n    associated with a value of a consistent type. This expectation\n    is not checked at runtime but is only enforced by type checkers.\n    Usage::\n\n        class Point2D(TypedDict):\n            x: int\n            y: int\n            label: str\n\n        a: Point2D = {'x': 1, 'y': 2, 'label': 'good'}  # OK\n        b: Point2D = {'z': 3, 'label': 'bad'}           # Fails type check\n\n        assert Point2D(x=1, y=2, label='first') == dict(x=1, y=2, label='first')\n\n    The type info can be accessed via Point2D.__annotations__. TypedDict\n    supports two additional equivalent forms::\n\n        Point2D = TypedDict('Point2D', x=int, y=int, label=str)\n        Point2D = TypedDict('Point2D', {'x': int, 'y': int, 'label': str})\n\n    By default, all keys must be present in a TypedDict. It is possible\n    to override this by specifying totality.\n    Usage::\n\n        class point2D(TypedDict, total=False):\n            x: int\n            y: int\n\n    This means that a point2D TypedDict can have any of the keys omitted.A type\n    checker is only expected to support a literal False or True as the value of\n    the total argument. True is the default, and makes all items defined in the\n    class body be required.\n\n    The class syntax is only supported in Python 3.6+, while two other\n    syntax forms work for Python 2.7 and 3.2+\n    \"\"\"\n\n\ndef NewType(name, tp):\n    \"\"\"NewType creates simple unique types with almost zero\n    runtime overhead. NewType(name, tp) is considered a subtype of tp\n    by static type checkers. At runtime, NewType(name, tp) returns\n    a dummy function that simply returns its argument. Usage::\n\n        UserId = NewType('UserId', int)\n\n        def name_by_id(user_id: UserId) -> str:\n            ...\n\n        UserId('user')          # Fails type check\n\n        name_by_id(42)          # Fails type check\n        name_by_id(UserId(42))  # OK\n\n        num = UserId(5) + 1     # type: int\n    \"\"\"\n\n    def new_type(x):\n        return x\n\n    new_type.__name__ = name\n    new_type.__supertype__ = tp\n    return new_type\n\n\n# Python-version-specific alias (Python 2: unicode; Python 3: str)\nText = str\n\n\n# Constant that's True when type checking, but False here.\nTYPE_CHECKING = False\n\n\nclass IO(Generic[AnyStr]):\n    \"\"\"Generic base class for TextIO and BinaryIO.\n\n    This is an abstract, generic version of the return of open().\n\n    NOTE: This does not distinguish between the different possible\n    classes (text vs. binary, read vs. write vs. read/write,\n    append-only, unbuffered).  The TextIO and BinaryIO subclasses\n    below capture the distinctions between text vs. binary, which is\n    pervasive in the interface; however we currently do not offer a\n    way to track the other distinctions in the type system.\n    \"\"\"\n\n    __slots__ = ()\n\n    @property\n    @abstractmethod\n    def mode(self) -> str:\n        pass\n\n    @property\n    @abstractmethod\n    def name(self) -> str:\n        pass\n\n    @abstractmethod\n    def close(self) -> None:\n        pass\n\n    @property\n    @abstractmethod\n    def closed(self) -> bool:\n        pass\n\n    @abstractmethod\n    def fileno(self) -> int:\n        pass\n\n    @abstractmethod\n    def flush(self) -> None:\n        pass\n\n    @abstractmethod\n    def isatty(self) -> bool:\n        pass\n\n    @abstractmethod\n    def read(self, n: int = -1) -> AnyStr:\n        pass\n\n    @abstractmethod\n    def readable(self) -> bool:\n        pass\n\n    @abstractmethod\n    def readline(self, limit: int = -1) -> AnyStr:\n        pass\n\n    @abstractmethod\n    def readlines(self, hint: int = -1) -> List[AnyStr]:\n        pass\n\n    @abstractmethod\n    def seek(self, offset: int, whence: int = 0) -> int:\n        pass\n\n    @abstractmethod\n    def seekable(self) -> bool:\n        pass\n\n    @abstractmethod\n    def tell(self) -> int:\n        pass\n\n    @abstractmethod\n    def truncate(self, size: int = None) -> int:\n        pass\n\n    @abstractmethod\n    def writable(self) -> bool:\n        pass\n\n    @abstractmethod\n    def write(self, s: AnyStr) -> int:\n        pass\n\n    @abstractmethod\n    def writelines(self, lines: List[AnyStr]) -> None:\n        pass\n\n    @abstractmethod\n    def __enter__(self) -> 'IO[AnyStr]':\n        pass\n\n    @abstractmethod\n    def __exit__(self, type, value, traceback) -> None:\n        pass\n\n\nclass BinaryIO(IO[bytes]):\n    \"\"\"Typed version of the return of open() in binary mode.\"\"\"\n\n    __slots__ = ()\n\n    @abstractmethod\n    def write(self, s: Union[bytes, bytearray]) -> int:\n        pass\n\n    @abstractmethod\n    def __enter__(self) -> 'BinaryIO':\n        pass\n\n\nclass TextIO(IO[str]):\n    \"\"\"Typed version of the return of open() in text mode.\"\"\"\n\n    __slots__ = ()\n\n    @property\n    @abstractmethod\n    def buffer(self) -> BinaryIO:\n        pass\n\n    @property\n    @abstractmethod\n    def encoding(self) -> str:\n        pass\n\n    @property\n    @abstractmethod\n    def errors(self) -> Optional[str]:\n        pass\n\n    @property\n    @abstractmethod\n    def line_buffering(self) -> bool:\n        pass\n\n    @property\n    @abstractmethod\n    def newlines(self) -> Any:\n        pass\n\n    @abstractmethod\n    def __enter__(self) -> 'TextIO':\n        pass\n\n\nclass io:\n    \"\"\"Wrapper namespace for IO generic classes.\"\"\"\n\n    __all__ = ['IO', 'TextIO', 'BinaryIO']\n    IO = IO\n    TextIO = TextIO\n    BinaryIO = BinaryIO\n\n\nio.__name__ = __name__ + '.io'\nsys.modules[io.__name__] = io\n\nPattern = _alias(stdlib_re.Pattern, AnyStr)\nMatch = _alias(stdlib_re.Match, AnyStr)\n\nclass re:\n    \"\"\"Wrapper namespace for re type aliases.\"\"\"\n\n    __all__ = ['Pattern', 'Match']\n    Pattern = Pattern\n    Match = Match\n\n\nre.__name__ = __name__ + '.re'\nsys.modules[re.__name__] = re\n"
  },
  {
    "path": "rd/usr/lib/python3.8/uu.py",
    "content": "#! /usr/bin/env python3\n\n# Copyright 1994 by Lance Ellinghouse\n# Cathedral City, California Republic, United States of America.\n#                        All Rights Reserved\n# Permission to use, copy, modify, and distribute this software and its\n# documentation for any purpose and without fee is hereby granted,\n# provided that the above copyright notice appear in all copies and that\n# both that copyright notice and this permission notice appear in\n# supporting documentation, and that the name of Lance Ellinghouse\n# not be used in advertising or publicity pertaining to distribution\n# of the software without specific, written prior permission.\n# LANCE ELLINGHOUSE DISCLAIMS ALL WARRANTIES WITH REGARD TO\n# THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\n# FITNESS, IN NO EVENT SHALL LANCE ELLINGHOUSE CENTRUM BE LIABLE\n# FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT\n# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n#\n# Modified by Jack Jansen, CWI, July 1995:\n# - Use binascii module to do the actual line-by-line conversion\n#   between ascii and binary. This results in a 1000-fold speedup. The C\n#   version is still 5 times faster, though.\n# - Arguments more compliant with python standard\n\n\"\"\"Implementation of the UUencode and UUdecode functions.\n\nencode(in_file, out_file [,name, mode], *, backtick=False)\ndecode(in_file [, out_file, mode, quiet])\n\"\"\"\n\nimport binascii\nimport os\nimport sys\n\n__all__ = [\"Error\", \"encode\", \"decode\"]\n\nclass Error(Exception):\n    pass\n\ndef encode(in_file, out_file, name=None, mode=None, *, backtick=False):\n    \"\"\"Uuencode file\"\"\"\n    #\n    # If in_file is a pathname open it and change defaults\n    #\n    opened_files = []\n    try:\n        if in_file == '-':\n            in_file = sys.stdin.buffer\n        elif isinstance(in_file, str):\n            if name is None:\n                name = os.path.basename(in_file)\n            if mode is None:\n                try:\n                    mode = os.stat(in_file).st_mode\n                except AttributeError:\n                    pass\n            in_file = open(in_file, 'rb')\n            opened_files.append(in_file)\n        #\n        # Open out_file if it is a pathname\n        #\n        if out_file == '-':\n            out_file = sys.stdout.buffer\n        elif isinstance(out_file, str):\n            out_file = open(out_file, 'wb')\n            opened_files.append(out_file)\n        #\n        # Set defaults for name and mode\n        #\n        if name is None:\n            name = '-'\n        if mode is None:\n            mode = 0o666\n\n        #\n        # Remove newline chars from name\n        #\n        name = name.replace('\\n','\\\\n')\n        name = name.replace('\\r','\\\\r')\n\n        #\n        # Write the data\n        #\n        out_file.write(('begin %o %s\\n' % ((mode & 0o777), name)).encode(\"ascii\"))\n        data = in_file.read(45)\n        while len(data) > 0:\n            out_file.write(binascii.b2a_uu(data, backtick=backtick))\n            data = in_file.read(45)\n        if backtick:\n            out_file.write(b'`\\nend\\n')\n        else:\n            out_file.write(b' \\nend\\n')\n    finally:\n        for f in opened_files:\n            f.close()\n\n\ndef decode(in_file, out_file=None, mode=None, quiet=False):\n    \"\"\"Decode uuencoded file\"\"\"\n    #\n    # Open the input file, if needed.\n    #\n    opened_files = []\n    if in_file == '-':\n        in_file = sys.stdin.buffer\n    elif isinstance(in_file, str):\n        in_file = open(in_file, 'rb')\n        opened_files.append(in_file)\n\n    try:\n        #\n        # Read until a begin is encountered or we've exhausted the file\n        #\n        while True:\n            hdr = in_file.readline()\n            if not hdr:\n                raise Error('No valid begin line found in input file')\n            if not hdr.startswith(b'begin'):\n                continue\n            hdrfields = hdr.split(b' ', 2)\n            if len(hdrfields) == 3 and hdrfields[0] == b'begin':\n                try:\n                    int(hdrfields[1], 8)\n                    break\n                except ValueError:\n                    pass\n        if out_file is None:\n            # If the filename isn't ASCII, what's up with that?!?\n            out_file = hdrfields[2].rstrip(b' \\t\\r\\n\\f').decode(\"ascii\")\n            if os.path.exists(out_file):\n                raise Error('Cannot overwrite existing file: %s' % out_file)\n        if mode is None:\n            mode = int(hdrfields[1], 8)\n        #\n        # Open the output file\n        #\n        if out_file == '-':\n            out_file = sys.stdout.buffer\n        elif isinstance(out_file, str):\n            fp = open(out_file, 'wb')\n            os.chmod(out_file, mode)\n            out_file = fp\n            opened_files.append(out_file)\n        #\n        # Main decoding loop\n        #\n        s = in_file.readline()\n        while s and s.strip(b' \\t\\r\\n\\f') != b'end':\n            try:\n                data = binascii.a2b_uu(s)\n            except binascii.Error as v:\n                # Workaround for broken uuencoders by /Fredrik Lundh\n                nbytes = (((s[0]-32) & 63) * 4 + 5) // 3\n                data = binascii.a2b_uu(s[:nbytes])\n                if not quiet:\n                    sys.stderr.write(\"Warning: %s\\n\" % v)\n            out_file.write(data)\n            s = in_file.readline()\n        if not s:\n            raise Error('Truncated input file')\n    finally:\n        for f in opened_files:\n            f.close()\n\ndef test():\n    \"\"\"uuencode/uudecode main program\"\"\"\n\n    import optparse\n    parser = optparse.OptionParser(usage='usage: %prog [-d] [-t] [input [output]]')\n    parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')\n    parser.add_option('-t', '--text', dest='text', help='data is text, encoded format unix-compatible text?', default=False, action='store_true')\n\n    (options, args) = parser.parse_args()\n    if len(args) > 2:\n        parser.error('incorrect number of arguments')\n        sys.exit(1)\n\n    # Use the binary streams underlying stdin/stdout\n    input = sys.stdin.buffer\n    output = sys.stdout.buffer\n    if len(args) > 0:\n        input = args[0]\n    if len(args) > 1:\n        output = args[1]\n\n    if options.decode:\n        if options.text:\n            if isinstance(output, str):\n                output = open(output, 'wb')\n            else:\n                print(sys.argv[0], ': cannot do -t to stdout')\n                sys.exit(1)\n        decode(input, output)\n    else:\n        if options.text:\n            if isinstance(input, str):\n                input = open(input, 'rb')\n            else:\n                print(sys.argv[0], ': cannot do -t from stdin')\n                sys.exit(1)\n        encode(input, output)\n\nif __name__ == '__main__':\n    test()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/uuid.py",
    "content": "r\"\"\"UUID objects (universally unique identifiers) according to RFC 4122.\n\nThis module provides immutable UUID objects (class UUID) and the functions\nuuid1(), uuid3(), uuid4(), uuid5() for generating version 1, 3, 4, and 5\nUUIDs as specified in RFC 4122.\n\nIf all you want is a unique ID, you should probably call uuid1() or uuid4().\nNote that uuid1() may compromise privacy since it creates a UUID containing\nthe computer's network address.  uuid4() creates a random UUID.\n\nTypical usage:\n\n    >>> import uuid\n\n    # make a UUID based on the host ID and current time\n    >>> uuid.uuid1()    # doctest: +SKIP\n    UUID('a8098c1a-f86e-11da-bd1a-00112444be1e')\n\n    # make a UUID using an MD5 hash of a namespace UUID and a name\n    >>> uuid.uuid3(uuid.NAMESPACE_DNS, 'python.org')\n    UUID('6fa459ea-ee8a-3ca4-894e-db77e160355e')\n\n    # make a random UUID\n    >>> uuid.uuid4()    # doctest: +SKIP\n    UUID('16fd2706-8baf-433b-82eb-8c7fada847da')\n\n    # make a UUID using a SHA-1 hash of a namespace UUID and a name\n    >>> uuid.uuid5(uuid.NAMESPACE_DNS, 'python.org')\n    UUID('886313e1-3b8a-5372-9b90-0c9aee199e5d')\n\n    # make a UUID from a string of hex digits (braces and hyphens ignored)\n    >>> x = uuid.UUID('{00010203-0405-0607-0809-0a0b0c0d0e0f}')\n\n    # convert a UUID to a string of hex digits in standard form\n    >>> str(x)\n    '00010203-0405-0607-0809-0a0b0c0d0e0f'\n\n    # get the raw 16 bytes of the UUID\n    >>> x.bytes\n    b'\\x00\\x01\\x02\\x03\\x04\\x05\\x06\\x07\\x08\\t\\n\\x0b\\x0c\\r\\x0e\\x0f'\n\n    # make a UUID from a 16-byte string\n    >>> uuid.UUID(bytes=x.bytes)\n    UUID('00010203-0405-0607-0809-0a0b0c0d0e0f')\n\"\"\"\n\nimport os\nimport platform\nimport sys\n\nfrom enum import Enum\n\n\n__author__ = 'Ka-Ping Yee <ping@zesty.ca>'\n\n# The recognized platforms - known behaviors\n_AIX     = platform.system() == 'AIX'\n_DARWIN  = platform.system() == 'Darwin'\n_LINUX   = platform.system() == 'Linux'\n_WINDOWS = platform.system() == 'Windows'\n\nRESERVED_NCS, RFC_4122, RESERVED_MICROSOFT, RESERVED_FUTURE = [\n    'reserved for NCS compatibility', 'specified in RFC 4122',\n    'reserved for Microsoft compatibility', 'reserved for future definition']\n\nint_ = int      # The built-in int type\nbytes_ = bytes  # The built-in bytes type\n\n\nclass SafeUUID(Enum):\n    safe = 0\n    unsafe = -1\n    unknown = None\n\n\nclass UUID:\n    \"\"\"Instances of the UUID class represent UUIDs as specified in RFC 4122.\n    UUID objects are immutable, hashable, and usable as dictionary keys.\n    Converting a UUID to a string with str() yields something in the form\n    '12345678-1234-1234-1234-123456789abc'.  The UUID constructor accepts\n    five possible forms: a similar string of hexadecimal digits, or a tuple\n    of six integer fields (with 32-bit, 16-bit, 16-bit, 8-bit, 8-bit, and\n    48-bit values respectively) as an argument named 'fields', or a string\n    of 16 bytes (with all the integer fields in big-endian order) as an\n    argument named 'bytes', or a string of 16 bytes (with the first three\n    fields in little-endian order) as an argument named 'bytes_le', or a\n    single 128-bit integer as an argument named 'int'.\n\n    UUIDs have these read-only attributes:\n\n        bytes       the UUID as a 16-byte string (containing the six\n                    integer fields in big-endian byte order)\n\n        bytes_le    the UUID as a 16-byte string (with time_low, time_mid,\n                    and time_hi_version in little-endian byte order)\n\n        fields      a tuple of the six integer fields of the UUID,\n                    which are also available as six individual attributes\n                    and two derived attributes:\n\n            time_low                the first 32 bits of the UUID\n            time_mid                the next 16 bits of the UUID\n            time_hi_version         the next 16 bits of the UUID\n            clock_seq_hi_variant    the next 8 bits of the UUID\n            clock_seq_low           the next 8 bits of the UUID\n            node                    the last 48 bits of the UUID\n\n            time                    the 60-bit timestamp\n            clock_seq               the 14-bit sequence number\n\n        hex         the UUID as a 32-character hexadecimal string\n\n        int         the UUID as a 128-bit integer\n\n        urn         the UUID as a URN as specified in RFC 4122\n\n        variant     the UUID variant (one of the constants RESERVED_NCS,\n                    RFC_4122, RESERVED_MICROSOFT, or RESERVED_FUTURE)\n\n        version     the UUID version number (1 through 5, meaningful only\n                    when the variant is RFC_4122)\n\n        is_safe     An enum indicating whether the UUID has been generated in\n                    a way that is safe for multiprocessing applications, via\n                    uuid_generate_time_safe(3).\n    \"\"\"\n\n    __slots__ = ('int', 'is_safe', '__weakref__')\n\n    def __init__(self, hex=None, bytes=None, bytes_le=None, fields=None,\n                       int=None, version=None,\n                       *, is_safe=SafeUUID.unknown):\n        r\"\"\"Create a UUID from either a string of 32 hexadecimal digits,\n        a string of 16 bytes as the 'bytes' argument, a string of 16 bytes\n        in little-endian order as the 'bytes_le' argument, a tuple of six\n        integers (32-bit time_low, 16-bit time_mid, 16-bit time_hi_version,\n        8-bit clock_seq_hi_variant, 8-bit clock_seq_low, 48-bit node) as\n        the 'fields' argument, or a single 128-bit integer as the 'int'\n        argument.  When a string of hex digits is given, curly braces,\n        hyphens, and a URN prefix are all optional.  For example, these\n        expressions all yield the same UUID:\n\n        UUID('{12345678-1234-5678-1234-567812345678}')\n        UUID('12345678123456781234567812345678')\n        UUID('urn:uuid:12345678-1234-5678-1234-567812345678')\n        UUID(bytes='\\x12\\x34\\x56\\x78'*4)\n        UUID(bytes_le='\\x78\\x56\\x34\\x12\\x34\\x12\\x78\\x56' +\n                      '\\x12\\x34\\x56\\x78\\x12\\x34\\x56\\x78')\n        UUID(fields=(0x12345678, 0x1234, 0x5678, 0x12, 0x34, 0x567812345678))\n        UUID(int=0x12345678123456781234567812345678)\n\n        Exactly one of 'hex', 'bytes', 'bytes_le', 'fields', or 'int' must\n        be given.  The 'version' argument is optional; if given, the resulting\n        UUID will have its variant and version set according to RFC 4122,\n        overriding the given 'hex', 'bytes', 'bytes_le', 'fields', or 'int'.\n\n        is_safe is an enum exposed as an attribute on the instance.  It\n        indicates whether the UUID has been generated in a way that is safe\n        for multiprocessing applications, via uuid_generate_time_safe(3).\n        \"\"\"\n\n        if [hex, bytes, bytes_le, fields, int].count(None) != 4:\n            raise TypeError('one of the hex, bytes, bytes_le, fields, '\n                            'or int arguments must be given')\n        if hex is not None:\n            hex = hex.replace('urn:', '').replace('uuid:', '')\n            hex = hex.strip('{}').replace('-', '')\n            if len(hex) != 32:\n                raise ValueError('badly formed hexadecimal UUID string')\n            int = int_(hex, 16)\n        if bytes_le is not None:\n            if len(bytes_le) != 16:\n                raise ValueError('bytes_le is not a 16-char string')\n            bytes = (bytes_le[4-1::-1] + bytes_le[6-1:4-1:-1] +\n                     bytes_le[8-1:6-1:-1] + bytes_le[8:])\n        if bytes is not None:\n            if len(bytes) != 16:\n                raise ValueError('bytes is not a 16-char string')\n            assert isinstance(bytes, bytes_), repr(bytes)\n            int = int_.from_bytes(bytes, byteorder='big')\n        if fields is not None:\n            if len(fields) != 6:\n                raise ValueError('fields is not a 6-tuple')\n            (time_low, time_mid, time_hi_version,\n             clock_seq_hi_variant, clock_seq_low, node) = fields\n            if not 0 <= time_low < 1<<32:\n                raise ValueError('field 1 out of range (need a 32-bit value)')\n            if not 0 <= time_mid < 1<<16:\n                raise ValueError('field 2 out of range (need a 16-bit value)')\n            if not 0 <= time_hi_version < 1<<16:\n                raise ValueError('field 3 out of range (need a 16-bit value)')\n            if not 0 <= clock_seq_hi_variant < 1<<8:\n                raise ValueError('field 4 out of range (need an 8-bit value)')\n            if not 0 <= clock_seq_low < 1<<8:\n                raise ValueError('field 5 out of range (need an 8-bit value)')\n            if not 0 <= node < 1<<48:\n                raise ValueError('field 6 out of range (need a 48-bit value)')\n            clock_seq = (clock_seq_hi_variant << 8) | clock_seq_low\n            int = ((time_low << 96) | (time_mid << 80) |\n                   (time_hi_version << 64) | (clock_seq << 48) | node)\n        if int is not None:\n            if not 0 <= int < 1<<128:\n                raise ValueError('int is out of range (need a 128-bit value)')\n        if version is not None:\n            if not 1 <= version <= 5:\n                raise ValueError('illegal version number')\n            # Set the variant to RFC 4122.\n            int &= ~(0xc000 << 48)\n            int |= 0x8000 << 48\n            # Set the version number.\n            int &= ~(0xf000 << 64)\n            int |= version << 76\n        object.__setattr__(self, 'int', int)\n        object.__setattr__(self, 'is_safe', is_safe)\n\n    def __getstate__(self):\n        d = {'int': self.int}\n        if self.is_safe != SafeUUID.unknown:\n            # is_safe is a SafeUUID instance.  Return just its value, so that\n            # it can be un-pickled in older Python versions without SafeUUID.\n            d['is_safe'] = self.is_safe.value\n        return d\n\n    def __setstate__(self, state):\n        object.__setattr__(self, 'int', state['int'])\n        # is_safe was added in 3.7; it is also omitted when it is \"unknown\"\n        object.__setattr__(self, 'is_safe',\n                           SafeUUID(state['is_safe'])\n                           if 'is_safe' in state else SafeUUID.unknown)\n\n    def __eq__(self, other):\n        if isinstance(other, UUID):\n            return self.int == other.int\n        return NotImplemented\n\n    # Q. What's the value of being able to sort UUIDs?\n    # A. Use them as keys in a B-Tree or similar mapping.\n\n    def __lt__(self, other):\n        if isinstance(other, UUID):\n            return self.int < other.int\n        return NotImplemented\n\n    def __gt__(self, other):\n        if isinstance(other, UUID):\n            return self.int > other.int\n        return NotImplemented\n\n    def __le__(self, other):\n        if isinstance(other, UUID):\n            return self.int <= other.int\n        return NotImplemented\n\n    def __ge__(self, other):\n        if isinstance(other, UUID):\n            return self.int >= other.int\n        return NotImplemented\n\n    def __hash__(self):\n        return hash(self.int)\n\n    def __int__(self):\n        return self.int\n\n    def __repr__(self):\n        return '%s(%r)' % (self.__class__.__name__, str(self))\n\n    def __setattr__(self, name, value):\n        raise TypeError('UUID objects are immutable')\n\n    def __str__(self):\n        hex = '%032x' % self.int\n        return '%s-%s-%s-%s-%s' % (\n            hex[:8], hex[8:12], hex[12:16], hex[16:20], hex[20:])\n\n    @property\n    def bytes(self):\n        return self.int.to_bytes(16, 'big')\n\n    @property\n    def bytes_le(self):\n        bytes = self.bytes\n        return (bytes[4-1::-1] + bytes[6-1:4-1:-1] + bytes[8-1:6-1:-1] +\n                bytes[8:])\n\n    @property\n    def fields(self):\n        return (self.time_low, self.time_mid, self.time_hi_version,\n                self.clock_seq_hi_variant, self.clock_seq_low, self.node)\n\n    @property\n    def time_low(self):\n        return self.int >> 96\n\n    @property\n    def time_mid(self):\n        return (self.int >> 80) & 0xffff\n\n    @property\n    def time_hi_version(self):\n        return (self.int >> 64) & 0xffff\n\n    @property\n    def clock_seq_hi_variant(self):\n        return (self.int >> 56) & 0xff\n\n    @property\n    def clock_seq_low(self):\n        return (self.int >> 48) & 0xff\n\n    @property\n    def time(self):\n        return (((self.time_hi_version & 0x0fff) << 48) |\n                (self.time_mid << 32) | self.time_low)\n\n    @property\n    def clock_seq(self):\n        return (((self.clock_seq_hi_variant & 0x3f) << 8) |\n                self.clock_seq_low)\n\n    @property\n    def node(self):\n        return self.int & 0xffffffffffff\n\n    @property\n    def hex(self):\n        return '%032x' % self.int\n\n    @property\n    def urn(self):\n        return 'urn:uuid:' + str(self)\n\n    @property\n    def variant(self):\n        if not self.int & (0x8000 << 48):\n            return RESERVED_NCS\n        elif not self.int & (0x4000 << 48):\n            return RFC_4122\n        elif not self.int & (0x2000 << 48):\n            return RESERVED_MICROSOFT\n        else:\n            return RESERVED_FUTURE\n\n    @property\n    def version(self):\n        # The version bits are only meaningful for RFC 4122 UUIDs.\n        if self.variant == RFC_4122:\n            return int((self.int >> 76) & 0xf)\n\ndef _popen(command, *args):\n    import os, shutil, subprocess\n    executable = shutil.which(command)\n    if executable is None:\n        path = os.pathsep.join(('/sbin', '/usr/sbin'))\n        executable = shutil.which(command, path=path)\n        if executable is None:\n            return None\n    # LC_ALL=C to ensure English output, stderr=DEVNULL to prevent output\n    # on stderr (Note: we don't have an example where the words we search\n    # for are actually localized, but in theory some system could do so.)\n    env = dict(os.environ)\n    env['LC_ALL'] = 'C'\n    proc = subprocess.Popen((executable,) + args,\n                            stdout=subprocess.PIPE,\n                            stderr=subprocess.DEVNULL,\n                            env=env)\n    return proc\n\n# For MAC (a.k.a. IEEE 802, or EUI-48) addresses, the second least significant\n# bit of the first octet signifies whether the MAC address is universally (0)\n# or locally (1) administered.  Network cards from hardware manufacturers will\n# always be universally administered to guarantee global uniqueness of the MAC\n# address, but any particular machine may have other interfaces which are\n# locally administered.  An example of the latter is the bridge interface to\n# the Touch Bar on MacBook Pros.\n#\n# This bit works out to be the 42nd bit counting from 1 being the least\n# significant, or 1<<41.  We'll prefer universally administered MAC addresses\n# over locally administered ones since the former are globally unique, but\n# we'll return the first of the latter found if that's all the machine has.\n#\n# See https://en.wikipedia.org/wiki/MAC_address#Universal_vs._local\n\ndef _is_universal(mac):\n    return not (mac & (1 << 41))\n\ndef _find_mac(command, args, hw_identifiers, get_index):\n    first_local_mac = None\n    try:\n        proc = _popen(command, *args.split())\n        if not proc:\n            return None\n        with proc:\n            for line in proc.stdout:\n                words = line.lower().rstrip().split()\n                for i in range(len(words)):\n                    if words[i] in hw_identifiers:\n                        try:\n                            word = words[get_index(i)]\n                            mac = int(word.replace(b':', b''), 16)\n                            if _is_universal(mac):\n                                return mac\n                            first_local_mac = first_local_mac or mac\n                        except (ValueError, IndexError):\n                            # Virtual interfaces, such as those provided by\n                            # VPNs, do not have a colon-delimited MAC address\n                            # as expected, but a 16-byte HWAddr separated by\n                            # dashes. These should be ignored in favor of a\n                            # real MAC address\n                            pass\n    except OSError:\n        pass\n    return first_local_mac or None\n\ndef _ifconfig_getnode():\n    \"\"\"Get the hardware address on Unix by running ifconfig.\"\"\"\n    # This works on Linux ('' or '-a'), Tru64 ('-av'), but not all Unixes.\n    keywords = (b'hwaddr', b'ether', b'address:', b'lladdr')\n    for args in ('', '-a', '-av'):\n        mac = _find_mac('ifconfig', args, keywords, lambda i: i+1)\n        if mac:\n            return mac\n        return None\n\ndef _ip_getnode():\n    \"\"\"Get the hardware address on Unix by running ip.\"\"\"\n    # This works on Linux with iproute2.\n    mac = _find_mac('ip', 'link', [b'link/ether'], lambda i: i+1)\n    if mac:\n        return mac\n    return None\n\ndef _arp_getnode():\n    \"\"\"Get the hardware address on Unix by running arp.\"\"\"\n    import os, socket\n    try:\n        ip_addr = socket.gethostbyname(socket.gethostname())\n    except OSError:\n        return None\n\n    # Try getting the MAC addr from arp based on our IP address (Solaris).\n    mac = _find_mac('arp', '-an', [os.fsencode(ip_addr)], lambda i: -1)\n    if mac:\n        return mac\n\n    # This works on OpenBSD\n    mac = _find_mac('arp', '-an', [os.fsencode(ip_addr)], lambda i: i+1)\n    if mac:\n        return mac\n\n    # This works on Linux, FreeBSD and NetBSD\n    mac = _find_mac('arp', '-an', [os.fsencode('(%s)' % ip_addr)],\n                    lambda i: i+2)\n    # Return None instead of 0.\n    if mac:\n        return mac\n    return None\n\ndef _lanscan_getnode():\n    \"\"\"Get the hardware address on Unix by running lanscan.\"\"\"\n    # This might work on HP-UX.\n    return _find_mac('lanscan', '-ai', [b'lan0'], lambda i: 0)\n\ndef _netstat_getnode():\n    \"\"\"Get the hardware address on Unix by running netstat.\"\"\"\n    # This might work on AIX, Tru64 UNIX.\n    first_local_mac = None\n    try:\n        proc = _popen('netstat', '-ia')\n        if not proc:\n            return None\n        with proc:\n            words = proc.stdout.readline().rstrip().split()\n            try:\n                i = words.index(b'Address')\n            except ValueError:\n                return None\n            for line in proc.stdout:\n                try:\n                    words = line.rstrip().split()\n                    word = words[i]\n                    if len(word) == 17 and word.count(b':') == 5:\n                        mac = int(word.replace(b':', b''), 16)\n                        if _is_universal(mac):\n                            return mac\n                        first_local_mac = first_local_mac or mac\n                except (ValueError, IndexError):\n                    pass\n    except OSError:\n        pass\n    return first_local_mac or None\n\ndef _ipconfig_getnode():\n    \"\"\"Get the hardware address on Windows by running ipconfig.exe.\"\"\"\n    import os, re, subprocess\n    first_local_mac = None\n    dirs = ['', r'c:\\windows\\system32', r'c:\\winnt\\system32']\n    try:\n        import ctypes\n        buffer = ctypes.create_string_buffer(300)\n        ctypes.windll.kernel32.GetSystemDirectoryA(buffer, 300)\n        dirs.insert(0, buffer.value.decode('mbcs'))\n    except:\n        pass\n    for dir in dirs:\n        try:\n            proc = subprocess.Popen([os.path.join(dir, 'ipconfig'), '/all'],\n                                    stdout=subprocess.PIPE,\n                                    encoding=\"oem\")\n        except OSError:\n            continue\n        with proc:\n            for line in proc.stdout:\n                value = line.split(':')[-1].strip().lower()\n                if re.fullmatch('(?:[0-9a-f][0-9a-f]-){5}[0-9a-f][0-9a-f]', value):\n                    mac = int(value.replace('-', ''), 16)\n                    if _is_universal(mac):\n                        return mac\n                    first_local_mac = first_local_mac or mac\n    return first_local_mac or None\n\ndef _netbios_getnode():\n    \"\"\"Get the hardware address on Windows using NetBIOS calls.\n    See http://support.microsoft.com/kb/118623 for details.\"\"\"\n    import win32wnet, netbios\n    first_local_mac = None\n    ncb = netbios.NCB()\n    ncb.Command = netbios.NCBENUM\n    ncb.Buffer = adapters = netbios.LANA_ENUM()\n    adapters._pack()\n    if win32wnet.Netbios(ncb) != 0:\n        return None\n    adapters._unpack()\n    for i in range(adapters.length):\n        ncb.Reset()\n        ncb.Command = netbios.NCBRESET\n        ncb.Lana_num = ord(adapters.lana[i])\n        if win32wnet.Netbios(ncb) != 0:\n            continue\n        ncb.Reset()\n        ncb.Command = netbios.NCBASTAT\n        ncb.Lana_num = ord(adapters.lana[i])\n        ncb.Callname = '*'.ljust(16)\n        ncb.Buffer = status = netbios.ADAPTER_STATUS()\n        if win32wnet.Netbios(ncb) != 0:\n            continue\n        status._unpack()\n        bytes = status.adapter_address[:6]\n        if len(bytes) != 6:\n            continue\n        mac = int.from_bytes(bytes, 'big')\n        if _is_universal(mac):\n            return mac\n        first_local_mac = first_local_mac or mac\n    return first_local_mac or None\n\n\n_generate_time_safe = _UuidCreate = None\n_has_uuid_generate_time_safe = None\n\n# Import optional C extension at toplevel, to help disabling it when testing\ntry:\n    import _uuid\nexcept ImportError:\n    _uuid = None\n\n\ndef _load_system_functions():\n    \"\"\"\n    Try to load platform-specific functions for generating uuids.\n    \"\"\"\n    global _generate_time_safe, _UuidCreate, _has_uuid_generate_time_safe\n\n    if _has_uuid_generate_time_safe is not None:\n        return\n\n    _has_uuid_generate_time_safe = False\n\n    if sys.platform == \"darwin\" and int(os.uname().release.split('.')[0]) < 9:\n        # The uuid_generate_* functions are broken on MacOS X 10.5, as noted\n        # in issue #8621 the function generates the same sequence of values\n        # in the parent process and all children created using fork (unless\n        # those children use exec as well).\n        #\n        # Assume that the uuid_generate functions are broken from 10.5 onward,\n        # the test can be adjusted when a later version is fixed.\n        pass\n    elif _uuid is not None:\n        _generate_time_safe = _uuid.generate_time_safe\n        _has_uuid_generate_time_safe = _uuid.has_uuid_generate_time_safe\n        return\n\n    try:\n        # If we couldn't find an extension module, try ctypes to find\n        # system routines for UUID generation.\n        # Thanks to Thomas Heller for ctypes and for his help with its use here.\n        import ctypes\n        import ctypes.util\n\n        # The uuid_generate_* routines are provided by libuuid on at least\n        # Linux and FreeBSD, and provided by libc on Mac OS X.\n        _libnames = ['uuid']\n        if not sys.platform.startswith('win'):\n            _libnames.append('c')\n        for libname in _libnames:\n            try:\n                lib = ctypes.CDLL(ctypes.util.find_library(libname))\n            except Exception:                           # pragma: nocover\n                continue\n            # Try to find the safe variety first.\n            if hasattr(lib, 'uuid_generate_time_safe'):\n                _uuid_generate_time_safe = lib.uuid_generate_time_safe\n                # int uuid_generate_time_safe(uuid_t out);\n                def _generate_time_safe():\n                    _buffer = ctypes.create_string_buffer(16)\n                    res = _uuid_generate_time_safe(_buffer)\n                    return bytes(_buffer.raw), res\n                _has_uuid_generate_time_safe = True\n                break\n\n            elif hasattr(lib, 'uuid_generate_time'):    # pragma: nocover\n                _uuid_generate_time = lib.uuid_generate_time\n                # void uuid_generate_time(uuid_t out);\n                _uuid_generate_time.restype = None\n                def _generate_time_safe():\n                    _buffer = ctypes.create_string_buffer(16)\n                    _uuid_generate_time(_buffer)\n                    return bytes(_buffer.raw), None\n                break\n\n        # On Windows prior to 2000, UuidCreate gives a UUID containing the\n        # hardware address.  On Windows 2000 and later, UuidCreate makes a\n        # random UUID and UuidCreateSequential gives a UUID containing the\n        # hardware address.  These routines are provided by the RPC runtime.\n        # NOTE:  at least on Tim's WinXP Pro SP2 desktop box, while the last\n        # 6 bytes returned by UuidCreateSequential are fixed, they don't appear\n        # to bear any relationship to the MAC address of any network device\n        # on the box.\n        try:\n            lib = ctypes.windll.rpcrt4\n        except:\n            lib = None\n        _UuidCreate = getattr(lib, 'UuidCreateSequential',\n                              getattr(lib, 'UuidCreate', None))\n\n    except Exception as exc:\n        import warnings\n        warnings.warn(f\"Could not find fallback ctypes uuid functions: {exc}\",\n                      ImportWarning)\n\n\ndef _unix_getnode():\n    \"\"\"Get the hardware address on Unix using the _uuid extension module\n    or ctypes.\"\"\"\n    _load_system_functions()\n    uuid_time, _ = _generate_time_safe()\n    return UUID(bytes=uuid_time).node\n\ndef _windll_getnode():\n    \"\"\"Get the hardware address on Windows using ctypes.\"\"\"\n    import ctypes\n    _load_system_functions()\n    _buffer = ctypes.create_string_buffer(16)\n    if _UuidCreate(_buffer) == 0:\n        return UUID(bytes=bytes_(_buffer.raw)).node\n\ndef _random_getnode():\n    \"\"\"Get a random node ID.\"\"\"\n    # RFC 4122, $4.1.6 says \"For systems with no IEEE address, a randomly or\n    # pseudo-randomly generated value may be used; see Section 4.5.  The\n    # multicast bit must be set in such addresses, in order that they will\n    # never conflict with addresses obtained from network cards.\"\n    #\n    # The \"multicast bit\" of a MAC address is defined to be \"the least\n    # significant bit of the first octet\".  This works out to be the 41st bit\n    # counting from 1 being the least significant bit, or 1<<40.\n    #\n    # See https://en.wikipedia.org/wiki/MAC_address#Unicast_vs._multicast\n    import random\n    return random.getrandbits(48) | (1 << 40)\n\n\n# _OS_GETTERS, when known, are targeted for a specific OS or platform.\n# The order is by 'common practice' on the specified platform.\n# Note: 'posix' and 'windows' _OS_GETTERS are prefixed by a dll/dlload() method\n# which, when successful, means none of these \"external\" methods are called.\n# _GETTERS is (also) used by test_uuid.py to SkipUnless(), e.g.,\n#     @unittest.skipUnless(_uuid._ifconfig_getnode in _uuid._GETTERS, ...)\nif _LINUX:\n    _OS_GETTERS = [_ip_getnode, _ifconfig_getnode]\nelif _DARWIN:\n    _OS_GETTERS = [_ifconfig_getnode, _arp_getnode, _netstat_getnode]\nelif _WINDOWS:\n    _OS_GETTERS = [_netbios_getnode, _ipconfig_getnode]\nelif _AIX:\n    _OS_GETTERS = [_netstat_getnode]\nelse:\n    _OS_GETTERS = [_ifconfig_getnode, _ip_getnode, _arp_getnode,\n                   _netstat_getnode, _lanscan_getnode]\nif os.name == 'posix':\n    _GETTERS = [_unix_getnode] + _OS_GETTERS\nelif os.name == 'nt':\n    _GETTERS = [_windll_getnode] + _OS_GETTERS\nelse:\n    _GETTERS = _OS_GETTERS\n\n_node = None\n\ndef getnode(*, getters=None):\n    \"\"\"Get the hardware address as a 48-bit positive integer.\n\n    The first time this runs, it may launch a separate program, which could\n    be quite slow.  If all attempts to obtain the hardware address fail, we\n    choose a random 48-bit number with its eighth bit set to 1 as recommended\n    in RFC 4122.\n    \"\"\"\n    global _node\n    if _node is not None:\n        return _node\n\n    for getter in _GETTERS + [_random_getnode]:\n        try:\n            _node = getter()\n        except:\n            continue\n        if (_node is not None) and (0 <= _node < (1 << 48)):\n            return _node\n    assert False, '_random_getnode() returned invalid value: {}'.format(_node)\n\n\n_last_timestamp = None\n\ndef uuid1(node=None, clock_seq=None):\n    \"\"\"Generate a UUID from a host ID, sequence number, and the current time.\n    If 'node' is not given, getnode() is used to obtain the hardware\n    address.  If 'clock_seq' is given, it is used as the sequence number;\n    otherwise a random 14-bit sequence number is chosen.\"\"\"\n\n    # When the system provides a version-1 UUID generator, use it (but don't\n    # use UuidCreate here because its UUIDs don't conform to RFC 4122).\n    _load_system_functions()\n    if _generate_time_safe is not None and node is clock_seq is None:\n        uuid_time, safely_generated = _generate_time_safe()\n        try:\n            is_safe = SafeUUID(safely_generated)\n        except ValueError:\n            is_safe = SafeUUID.unknown\n        return UUID(bytes=uuid_time, is_safe=is_safe)\n\n    global _last_timestamp\n    import time\n    nanoseconds = time.time_ns()\n    # 0x01b21dd213814000 is the number of 100-ns intervals between the\n    # UUID epoch 1582-10-15 00:00:00 and the Unix epoch 1970-01-01 00:00:00.\n    timestamp = nanoseconds // 100 + 0x01b21dd213814000\n    if _last_timestamp is not None and timestamp <= _last_timestamp:\n        timestamp = _last_timestamp + 1\n    _last_timestamp = timestamp\n    if clock_seq is None:\n        import random\n        clock_seq = random.getrandbits(14) # instead of stable storage\n    time_low = timestamp & 0xffffffff\n    time_mid = (timestamp >> 32) & 0xffff\n    time_hi_version = (timestamp >> 48) & 0x0fff\n    clock_seq_low = clock_seq & 0xff\n    clock_seq_hi_variant = (clock_seq >> 8) & 0x3f\n    if node is None:\n        node = getnode()\n    return UUID(fields=(time_low, time_mid, time_hi_version,\n                        clock_seq_hi_variant, clock_seq_low, node), version=1)\n\ndef uuid3(namespace, name):\n    \"\"\"Generate a UUID from the MD5 hash of a namespace UUID and a name.\"\"\"\n    from hashlib import md5\n    hash = md5(namespace.bytes + bytes(name, \"utf-8\")).digest()\n    return UUID(bytes=hash[:16], version=3)\n\ndef uuid4():\n    \"\"\"Generate a random UUID.\"\"\"\n    return UUID(bytes=os.urandom(16), version=4)\n\ndef uuid5(namespace, name):\n    \"\"\"Generate a UUID from the SHA-1 hash of a namespace UUID and a name.\"\"\"\n    from hashlib import sha1\n    hash = sha1(namespace.bytes + bytes(name, \"utf-8\")).digest()\n    return UUID(bytes=hash[:16], version=5)\n\n# The following standard UUIDs are for use with uuid3() or uuid5().\n\nNAMESPACE_DNS = UUID('6ba7b810-9dad-11d1-80b4-00c04fd430c8')\nNAMESPACE_URL = UUID('6ba7b811-9dad-11d1-80b4-00c04fd430c8')\nNAMESPACE_OID = UUID('6ba7b812-9dad-11d1-80b4-00c04fd430c8')\nNAMESPACE_X500 = UUID('6ba7b814-9dad-11d1-80b4-00c04fd430c8')\n"
  },
  {
    "path": "rd/usr/lib/python3.8/warnings.py",
    "content": "\"\"\"Python part of the warnings subsystem.\"\"\"\n\nimport sys\n\n\n__all__ = [\"warn\", \"warn_explicit\", \"showwarning\",\n           \"formatwarning\", \"filterwarnings\", \"simplefilter\",\n           \"resetwarnings\", \"catch_warnings\"]\n\ndef showwarning(message, category, filename, lineno, file=None, line=None):\n    \"\"\"Hook to write a warning to a file; replace if you like.\"\"\"\n    msg = WarningMessage(message, category, filename, lineno, file, line)\n    _showwarnmsg_impl(msg)\n\ndef formatwarning(message, category, filename, lineno, line=None):\n    \"\"\"Function to format a warning the standard way.\"\"\"\n    msg = WarningMessage(message, category, filename, lineno, None, line)\n    return _formatwarnmsg_impl(msg)\n\ndef _showwarnmsg_impl(msg):\n    file = msg.file\n    if file is None:\n        file = sys.stderr\n        if file is None:\n            # sys.stderr is None when run with pythonw.exe:\n            # warnings get lost\n            return\n    text = _formatwarnmsg(msg)\n    try:\n        file.write(text)\n    except OSError:\n        # the file (probably stderr) is invalid - this warning gets lost.\n        pass\n\ndef _formatwarnmsg_impl(msg):\n    category = msg.category.__name__\n    s =  f\"{msg.filename}:{msg.lineno}: {category}: {msg.message}\\n\"\n\n    if msg.line is None:\n        try:\n            import linecache\n            line = linecache.getline(msg.filename, msg.lineno)\n        except Exception:\n            # When a warning is logged during Python shutdown, linecache\n            # and the import machinery don't work anymore\n            line = None\n            linecache = None\n    else:\n        line = msg.line\n    if line:\n        line = line.strip()\n        s += \"  %s\\n\" % line\n\n    if msg.source is not None:\n        try:\n            import tracemalloc\n        # Logging a warning should not raise a new exception:\n        # catch Exception, not only ImportError and RecursionError.\n        except Exception:\n            # don't suggest to enable tracemalloc if it's not available\n            tracing = True\n            tb = None\n        else:\n            tracing = tracemalloc.is_tracing()\n            try:\n                tb = tracemalloc.get_object_traceback(msg.source)\n            except Exception:\n                # When a warning is logged during Python shutdown, tracemalloc\n                # and the import machinery don't work anymore\n                tb = None\n\n        if tb is not None:\n            s += 'Object allocated at (most recent call last):\\n'\n            for frame in tb:\n                s += ('  File \"%s\", lineno %s\\n'\n                      % (frame.filename, frame.lineno))\n\n                try:\n                    if linecache is not None:\n                        line = linecache.getline(frame.filename, frame.lineno)\n                    else:\n                        line = None\n                except Exception:\n                    line = None\n                if line:\n                    line = line.strip()\n                    s += '    %s\\n' % line\n        elif not tracing:\n            s += (f'{category}: Enable tracemalloc to get the object '\n                  f'allocation traceback\\n')\n    return s\n\n# Keep a reference to check if the function was replaced\n_showwarning_orig = showwarning\n\ndef _showwarnmsg(msg):\n    \"\"\"Hook to write a warning to a file; replace if you like.\"\"\"\n    try:\n        sw = showwarning\n    except NameError:\n        pass\n    else:\n        if sw is not _showwarning_orig:\n            # warnings.showwarning() was replaced\n            if not callable(sw):\n                raise TypeError(\"warnings.showwarning() must be set to a \"\n                                \"function or method\")\n\n            sw(msg.message, msg.category, msg.filename, msg.lineno,\n               msg.file, msg.line)\n            return\n    _showwarnmsg_impl(msg)\n\n# Keep a reference to check if the function was replaced\n_formatwarning_orig = formatwarning\n\ndef _formatwarnmsg(msg):\n    \"\"\"Function to format a warning the standard way.\"\"\"\n    try:\n        fw = formatwarning\n    except NameError:\n        pass\n    else:\n        if fw is not _formatwarning_orig:\n            # warnings.formatwarning() was replaced\n            return fw(msg.message, msg.category,\n                      msg.filename, msg.lineno, msg.line)\n    return _formatwarnmsg_impl(msg)\n\ndef filterwarnings(action, message=\"\", category=Warning, module=\"\", lineno=0,\n                   append=False):\n    \"\"\"Insert an entry into the list of warnings filters (at the front).\n\n    'action' -- one of \"error\", \"ignore\", \"always\", \"default\", \"module\",\n                or \"once\"\n    'message' -- a regex that the warning message must match\n    'category' -- a class that the warning must be a subclass of\n    'module' -- a regex that the module name must match\n    'lineno' -- an integer line number, 0 matches all warnings\n    'append' -- if true, append to the list of filters\n    \"\"\"\n    assert action in (\"error\", \"ignore\", \"always\", \"default\", \"module\",\n                      \"once\"), \"invalid action: %r\" % (action,)\n    assert isinstance(message, str), \"message must be a string\"\n    assert isinstance(category, type), \"category must be a class\"\n    assert issubclass(category, Warning), \"category must be a Warning subclass\"\n    assert isinstance(module, str), \"module must be a string\"\n    assert isinstance(lineno, int) and lineno >= 0, \\\n           \"lineno must be an int >= 0\"\n\n    if message or module:\n        import re\n\n    if message:\n        message = re.compile(message, re.I)\n    else:\n        message = None\n    if module:\n        module = re.compile(module)\n    else:\n        module = None\n\n    _add_filter(action, message, category, module, lineno, append=append)\n\ndef simplefilter(action, category=Warning, lineno=0, append=False):\n    \"\"\"Insert a simple entry into the list of warnings filters (at the front).\n\n    A simple filter matches all modules and messages.\n    'action' -- one of \"error\", \"ignore\", \"always\", \"default\", \"module\",\n                or \"once\"\n    'category' -- a class that the warning must be a subclass of\n    'lineno' -- an integer line number, 0 matches all warnings\n    'append' -- if true, append to the list of filters\n    \"\"\"\n    assert action in (\"error\", \"ignore\", \"always\", \"default\", \"module\",\n                      \"once\"), \"invalid action: %r\" % (action,)\n    assert isinstance(lineno, int) and lineno >= 0, \\\n           \"lineno must be an int >= 0\"\n    _add_filter(action, None, category, None, lineno, append=append)\n\ndef _add_filter(*item, append):\n    # Remove possible duplicate filters, so new one will be placed\n    # in correct place. If append=True and duplicate exists, do nothing.\n    if not append:\n        try:\n            filters.remove(item)\n        except ValueError:\n            pass\n        filters.insert(0, item)\n    else:\n        if item not in filters:\n            filters.append(item)\n    _filters_mutated()\n\ndef resetwarnings():\n    \"\"\"Clear the list of warning filters, so that no filters are active.\"\"\"\n    filters[:] = []\n    _filters_mutated()\n\nclass _OptionError(Exception):\n    \"\"\"Exception used by option processing helpers.\"\"\"\n    pass\n\n# Helper to process -W options passed via sys.warnoptions\ndef _processoptions(args):\n    for arg in args:\n        try:\n            _setoption(arg)\n        except _OptionError as msg:\n            print(\"Invalid -W option ignored:\", msg, file=sys.stderr)\n\n# Helper for _processoptions()\ndef _setoption(arg):\n    parts = arg.split(':')\n    if len(parts) > 5:\n        raise _OptionError(\"too many fields (max 5): %r\" % (arg,))\n    while len(parts) < 5:\n        parts.append('')\n    action, message, category, module, lineno = [s.strip()\n                                                 for s in parts]\n    action = _getaction(action)\n    category = _getcategory(category)\n    if message or module:\n        import re\n    if message:\n        message = re.escape(message)\n    if module:\n        module = re.escape(module) + r'\\Z'\n    if lineno:\n        try:\n            lineno = int(lineno)\n            if lineno < 0:\n                raise ValueError\n        except (ValueError, OverflowError):\n            raise _OptionError(\"invalid lineno %r\" % (lineno,)) from None\n    else:\n        lineno = 0\n    filterwarnings(action, message, category, module, lineno)\n\n# Helper for _setoption()\ndef _getaction(action):\n    if not action:\n        return \"default\"\n    if action == \"all\": return \"always\" # Alias\n    for a in ('default', 'always', 'ignore', 'module', 'once', 'error'):\n        if a.startswith(action):\n            return a\n    raise _OptionError(\"invalid action: %r\" % (action,))\n\n# Helper for _setoption()\ndef _getcategory(category):\n    if not category:\n        return Warning\n    if '.' not in category:\n        import builtins as m\n        klass = category\n    else:\n        module, _, klass = category.rpartition('.')\n        try:\n            m = __import__(module, None, None, [klass])\n        except ImportError:\n            raise _OptionError(\"invalid module name: %r\" % (module,)) from None\n    try:\n        cat = getattr(m, klass)\n    except AttributeError:\n        raise _OptionError(\"unknown warning category: %r\" % (category,)) from None\n    if not issubclass(cat, Warning):\n        raise _OptionError(\"invalid warning category: %r\" % (category,))\n    return cat\n\n\ndef _is_internal_frame(frame):\n    \"\"\"Signal whether the frame is an internal CPython implementation detail.\"\"\"\n    filename = frame.f_code.co_filename\n    return 'importlib' in filename and '_bootstrap' in filename\n\n\ndef _next_external_frame(frame):\n    \"\"\"Find the next frame that doesn't involve CPython internals.\"\"\"\n    frame = frame.f_back\n    while frame is not None and _is_internal_frame(frame):\n        frame = frame.f_back\n    return frame\n\n\n# Code typically replaced by _warnings\ndef warn(message, category=None, stacklevel=1, source=None):\n    \"\"\"Issue a warning, or maybe ignore it or raise an exception.\"\"\"\n    # Check if message is already a Warning object\n    if isinstance(message, Warning):\n        category = message.__class__\n    # Check category argument\n    if category is None:\n        category = UserWarning\n    if not (isinstance(category, type) and issubclass(category, Warning)):\n        raise TypeError(\"category must be a Warning subclass, \"\n                        \"not '{:s}'\".format(type(category).__name__))\n    # Get context information\n    try:\n        if stacklevel <= 1 or _is_internal_frame(sys._getframe(1)):\n            # If frame is too small to care or if the warning originated in\n            # internal code, then do not try to hide any frames.\n            frame = sys._getframe(stacklevel)\n        else:\n            frame = sys._getframe(1)\n            # Look for one frame less since the above line starts us off.\n            for x in range(stacklevel-1):\n                frame = _next_external_frame(frame)\n                if frame is None:\n                    raise ValueError\n    except ValueError:\n        globals = sys.__dict__\n        filename = \"sys\"\n        lineno = 1\n    else:\n        globals = frame.f_globals\n        filename = frame.f_code.co_filename\n        lineno = frame.f_lineno\n    if '__name__' in globals:\n        module = globals['__name__']\n    else:\n        module = \"<string>\"\n    registry = globals.setdefault(\"__warningregistry__\", {})\n    warn_explicit(message, category, filename, lineno, module, registry,\n                  globals, source)\n\ndef warn_explicit(message, category, filename, lineno,\n                  module=None, registry=None, module_globals=None,\n                  source=None):\n    lineno = int(lineno)\n    if module is None:\n        module = filename or \"<unknown>\"\n        if module[-3:].lower() == \".py\":\n            module = module[:-3] # XXX What about leading pathname?\n    if registry is None:\n        registry = {}\n    if registry.get('version', 0) != _filters_version:\n        registry.clear()\n        registry['version'] = _filters_version\n    if isinstance(message, Warning):\n        text = str(message)\n        category = message.__class__\n    else:\n        text = message\n        message = category(message)\n    key = (text, category, lineno)\n    # Quick test for common case\n    if registry.get(key):\n        return\n    # Search the filters\n    for item in filters:\n        action, msg, cat, mod, ln = item\n        if ((msg is None or msg.match(text)) and\n            issubclass(category, cat) and\n            (mod is None or mod.match(module)) and\n            (ln == 0 or lineno == ln)):\n            break\n    else:\n        action = defaultaction\n    # Early exit actions\n    if action == \"ignore\":\n        return\n\n    # Prime the linecache for formatting, in case the\n    # \"file\" is actually in a zipfile or something.\n    import linecache\n    linecache.getlines(filename, module_globals)\n\n    if action == \"error\":\n        raise message\n    # Other actions\n    if action == \"once\":\n        registry[key] = 1\n        oncekey = (text, category)\n        if onceregistry.get(oncekey):\n            return\n        onceregistry[oncekey] = 1\n    elif action == \"always\":\n        pass\n    elif action == \"module\":\n        registry[key] = 1\n        altkey = (text, category, 0)\n        if registry.get(altkey):\n            return\n        registry[altkey] = 1\n    elif action == \"default\":\n        registry[key] = 1\n    else:\n        # Unrecognized actions are errors\n        raise RuntimeError(\n              \"Unrecognized action (%r) in warnings.filters:\\n %s\" %\n              (action, item))\n    # Print message and context\n    msg = WarningMessage(message, category, filename, lineno, source)\n    _showwarnmsg(msg)\n\n\nclass WarningMessage(object):\n\n    _WARNING_DETAILS = (\"message\", \"category\", \"filename\", \"lineno\", \"file\",\n                        \"line\", \"source\")\n\n    def __init__(self, message, category, filename, lineno, file=None,\n                 line=None, source=None):\n        self.message = message\n        self.category = category\n        self.filename = filename\n        self.lineno = lineno\n        self.file = file\n        self.line = line\n        self.source = source\n        self._category_name = category.__name__ if category else None\n\n    def __str__(self):\n        return (\"{message : %r, category : %r, filename : %r, lineno : %s, \"\n                    \"line : %r}\" % (self.message, self._category_name,\n                                    self.filename, self.lineno, self.line))\n\n\nclass catch_warnings(object):\n\n    \"\"\"A context manager that copies and restores the warnings filter upon\n    exiting the context.\n\n    The 'record' argument specifies whether warnings should be captured by a\n    custom implementation of warnings.showwarning() and be appended to a list\n    returned by the context manager. Otherwise None is returned by the context\n    manager. The objects appended to the list are arguments whose attributes\n    mirror the arguments to showwarning().\n\n    The 'module' argument is to specify an alternative module to the module\n    named 'warnings' and imported under that name. This argument is only useful\n    when testing the warnings module itself.\n\n    \"\"\"\n\n    def __init__(self, *, record=False, module=None):\n        \"\"\"Specify whether to record warnings and if an alternative module\n        should be used other than sys.modules['warnings'].\n\n        For compatibility with Python 3.0, please consider all arguments to be\n        keyword-only.\n\n        \"\"\"\n        self._record = record\n        self._module = sys.modules['warnings'] if module is None else module\n        self._entered = False\n\n    def __repr__(self):\n        args = []\n        if self._record:\n            args.append(\"record=True\")\n        if self._module is not sys.modules['warnings']:\n            args.append(\"module=%r\" % self._module)\n        name = type(self).__name__\n        return \"%s(%s)\" % (name, \", \".join(args))\n\n    def __enter__(self):\n        if self._entered:\n            raise RuntimeError(\"Cannot enter %r twice\" % self)\n        self._entered = True\n        self._filters = self._module.filters\n        self._module.filters = self._filters[:]\n        self._module._filters_mutated()\n        self._showwarning = self._module.showwarning\n        self._showwarnmsg_impl = self._module._showwarnmsg_impl\n        if self._record:\n            log = []\n            self._module._showwarnmsg_impl = log.append\n            # Reset showwarning() to the default implementation to make sure\n            # that _showwarnmsg() calls _showwarnmsg_impl()\n            self._module.showwarning = self._module._showwarning_orig\n            return log\n        else:\n            return None\n\n    def __exit__(self, *exc_info):\n        if not self._entered:\n            raise RuntimeError(\"Cannot exit %r without entering first\" % self)\n        self._module.filters = self._filters\n        self._module._filters_mutated()\n        self._module.showwarning = self._showwarning\n        self._module._showwarnmsg_impl = self._showwarnmsg_impl\n\n\n# Private utility function called by _PyErr_WarnUnawaitedCoroutine\ndef _warn_unawaited_coroutine(coro):\n    msg_lines = [\n        f\"coroutine '{coro.__qualname__}' was never awaited\\n\"\n    ]\n    if coro.cr_origin is not None:\n        import linecache, traceback\n        def extract():\n            for filename, lineno, funcname in reversed(coro.cr_origin):\n                line = linecache.getline(filename, lineno)\n                yield (filename, lineno, funcname, line)\n        msg_lines.append(\"Coroutine created at (most recent call last)\\n\")\n        msg_lines += traceback.format_list(list(extract()))\n    msg = \"\".join(msg_lines).rstrip(\"\\n\")\n    # Passing source= here means that if the user happens to have tracemalloc\n    # enabled and tracking where the coroutine was created, the warning will\n    # contain that traceback. This does mean that if they have *both*\n    # coroutine origin tracking *and* tracemalloc enabled, they'll get two\n    # partially-redundant tracebacks. If we wanted to be clever we could\n    # probably detect this case and avoid it, but for now we don't bother.\n    warn(msg, category=RuntimeWarning, stacklevel=2, source=coro)\n\n\n# filters contains a sequence of filter 5-tuples\n# The components of the 5-tuple are:\n# - an action: error, ignore, always, default, module, or once\n# - a compiled regex that must match the warning message\n# - a class representing the warning category\n# - a compiled regex that must match the module that is being warned\n# - a line number for the line being warning, or 0 to mean any line\n# If either if the compiled regexs are None, match anything.\ntry:\n    from _warnings import (filters, _defaultaction, _onceregistry,\n                           warn, warn_explicit, _filters_mutated)\n    defaultaction = _defaultaction\n    onceregistry = _onceregistry\n    _warnings_defaults = True\nexcept ImportError:\n    filters = []\n    defaultaction = \"default\"\n    onceregistry = {}\n\n    _filters_version = 1\n\n    def _filters_mutated():\n        global _filters_version\n        _filters_version += 1\n\n    _warnings_defaults = False\n\n\n# Module initialization\n_processoptions(sys.warnoptions)\nif not _warnings_defaults:\n    # Several warning categories are ignored by default in regular builds\n    if not hasattr(sys, 'gettotalrefcount'):\n        filterwarnings(\"default\", category=DeprecationWarning,\n                       module=\"__main__\", append=1)\n        simplefilter(\"ignore\", category=DeprecationWarning, append=1)\n        simplefilter(\"ignore\", category=PendingDeprecationWarning, append=1)\n        simplefilter(\"ignore\", category=ImportWarning, append=1)\n        simplefilter(\"ignore\", category=ResourceWarning, append=1)\n\ndel _warnings_defaults\n"
  },
  {
    "path": "rd/usr/lib/python3.8/wave.py",
    "content": "\"\"\"Stuff to parse WAVE files.\n\nUsage.\n\nReading WAVE files:\n      f = wave.open(file, 'r')\nwhere file is either the name of a file or an open file pointer.\nThe open file pointer must have methods read(), seek(), and close().\nWhen the setpos() and rewind() methods are not used, the seek()\nmethod is not  necessary.\n\nThis returns an instance of a class with the following public methods:\n      getnchannels()  -- returns number of audio channels (1 for\n                         mono, 2 for stereo)\n      getsampwidth()  -- returns sample width in bytes\n      getframerate()  -- returns sampling frequency\n      getnframes()    -- returns number of audio frames\n      getcomptype()   -- returns compression type ('NONE' for linear samples)\n      getcompname()   -- returns human-readable version of\n                         compression type ('not compressed' linear samples)\n      getparams()     -- returns a namedtuple consisting of all of the\n                         above in the above order\n      getmarkers()    -- returns None (for compatibility with the\n                         aifc module)\n      getmark(id)     -- raises an error since the mark does not\n                         exist (for compatibility with the aifc module)\n      readframes(n)   -- returns at most n frames of audio\n      rewind()        -- rewind to the beginning of the audio stream\n      setpos(pos)     -- seek to the specified position\n      tell()          -- return the current position\n      close()         -- close the instance (make it unusable)\nThe position returned by tell() and the position given to setpos()\nare compatible and have nothing to do with the actual position in the\nfile.\nThe close() method is called automatically when the class instance\nis destroyed.\n\nWriting WAVE files:\n      f = wave.open(file, 'w')\nwhere file is either the name of a file or an open file pointer.\nThe open file pointer must have methods write(), tell(), seek(), and\nclose().\n\nThis returns an instance of a class with the following public methods:\n      setnchannels(n) -- set the number of channels\n      setsampwidth(n) -- set the sample width\n      setframerate(n) -- set the frame rate\n      setnframes(n)   -- set the number of frames\n      setcomptype(type, name)\n                      -- set the compression type and the\n                         human-readable compression type\n      setparams(tuple)\n                      -- set all parameters at once\n      tell()          -- return current position in output file\n      writeframesraw(data)\n                      -- write audio frames without patching up the\n                         file header\n      writeframes(data)\n                      -- write audio frames and patch up the file header\n      close()         -- patch up the file header and close the\n                         output file\nYou should set the parameters before the first writeframesraw or\nwriteframes.  The total number of frames does not need to be set,\nbut when it is set to the correct value, the header does not have to\nbe patched up.\nIt is best to first set all parameters, perhaps possibly the\ncompression type, and then write audio frames using writeframesraw.\nWhen all frames have been written, either call writeframes(b'') or\nclose() to patch up the sizes in the header.\nThe close() method is called automatically when the class instance\nis destroyed.\n\"\"\"\n\nimport builtins\n\n__all__ = [\"open\", \"openfp\", \"Error\", \"Wave_read\", \"Wave_write\"]\n\nclass Error(Exception):\n    pass\n\nWAVE_FORMAT_PCM = 0x0001\n\n_array_fmts = None, 'b', 'h', None, 'i'\n\nimport audioop\nimport struct\nimport sys\nfrom chunk import Chunk\nfrom collections import namedtuple\nimport warnings\n\n_wave_params = namedtuple('_wave_params',\n                     'nchannels sampwidth framerate nframes comptype compname')\n\nclass Wave_read:\n    \"\"\"Variables used in this class:\n\n    These variables are available to the user though appropriate\n    methods of this class:\n    _file -- the open file with methods read(), close(), and seek()\n              set through the __init__() method\n    _nchannels -- the number of audio channels\n              available through the getnchannels() method\n    _nframes -- the number of audio frames\n              available through the getnframes() method\n    _sampwidth -- the number of bytes per audio sample\n              available through the getsampwidth() method\n    _framerate -- the sampling frequency\n              available through the getframerate() method\n    _comptype -- the AIFF-C compression type ('NONE' if AIFF)\n              available through the getcomptype() method\n    _compname -- the human-readable AIFF-C compression type\n              available through the getcomptype() method\n    _soundpos -- the position in the audio stream\n              available through the tell() method, set through the\n              setpos() method\n\n    These variables are used internally only:\n    _fmt_chunk_read -- 1 iff the FMT chunk has been read\n    _data_seek_needed -- 1 iff positioned correctly in audio\n              file for readframes()\n    _data_chunk -- instantiation of a chunk class for the DATA chunk\n    _framesize -- size of one frame in the file\n    \"\"\"\n\n    def initfp(self, file):\n        self._convert = None\n        self._soundpos = 0\n        self._file = Chunk(file, bigendian = 0)\n        if self._file.getname() != b'RIFF':\n            raise Error('file does not start with RIFF id')\n        if self._file.read(4) != b'WAVE':\n            raise Error('not a WAVE file')\n        self._fmt_chunk_read = 0\n        self._data_chunk = None\n        while 1:\n            self._data_seek_needed = 1\n            try:\n                chunk = Chunk(self._file, bigendian = 0)\n            except EOFError:\n                break\n            chunkname = chunk.getname()\n            if chunkname == b'fmt ':\n                self._read_fmt_chunk(chunk)\n                self._fmt_chunk_read = 1\n            elif chunkname == b'data':\n                if not self._fmt_chunk_read:\n                    raise Error('data chunk before fmt chunk')\n                self._data_chunk = chunk\n                self._nframes = chunk.chunksize // self._framesize\n                self._data_seek_needed = 0\n                break\n            chunk.skip()\n        if not self._fmt_chunk_read or not self._data_chunk:\n            raise Error('fmt chunk and/or data chunk missing')\n\n    def __init__(self, f):\n        self._i_opened_the_file = None\n        if isinstance(f, str):\n            f = builtins.open(f, 'rb')\n            self._i_opened_the_file = f\n        # else, assume it is an open file object already\n        try:\n            self.initfp(f)\n        except:\n            if self._i_opened_the_file:\n                f.close()\n            raise\n\n    def __del__(self):\n        self.close()\n\n    def __enter__(self):\n        return self\n\n    def __exit__(self, *args):\n        self.close()\n\n    #\n    # User visible methods.\n    #\n    def getfp(self):\n        return self._file\n\n    def rewind(self):\n        self._data_seek_needed = 1\n        self._soundpos = 0\n\n    def close(self):\n        self._file = None\n        file = self._i_opened_the_file\n        if file:\n            self._i_opened_the_file = None\n            file.close()\n\n    def tell(self):\n        return self._soundpos\n\n    def getnchannels(self):\n        return self._nchannels\n\n    def getnframes(self):\n        return self._nframes\n\n    def getsampwidth(self):\n        return self._sampwidth\n\n    def getframerate(self):\n        return self._framerate\n\n    def getcomptype(self):\n        return self._comptype\n\n    def getcompname(self):\n        return self._compname\n\n    def getparams(self):\n        return _wave_params(self.getnchannels(), self.getsampwidth(),\n                       self.getframerate(), self.getnframes(),\n                       self.getcomptype(), self.getcompname())\n\n    def getmarkers(self):\n        return None\n\n    def getmark(self, id):\n        raise Error('no marks')\n\n    def setpos(self, pos):\n        if pos < 0 or pos > self._nframes:\n            raise Error('position not in range')\n        self._soundpos = pos\n        self._data_seek_needed = 1\n\n    def readframes(self, nframes):\n        if self._data_seek_needed:\n            self._data_chunk.seek(0, 0)\n            pos = self._soundpos * self._framesize\n            if pos:\n                self._data_chunk.seek(pos, 0)\n            self._data_seek_needed = 0\n        if nframes == 0:\n            return b''\n        data = self._data_chunk.read(nframes * self._framesize)\n        if self._sampwidth != 1 and sys.byteorder == 'big':\n            data = audioop.byteswap(data, self._sampwidth)\n        if self._convert and data:\n            data = self._convert(data)\n        self._soundpos = self._soundpos + len(data) // (self._nchannels * self._sampwidth)\n        return data\n\n    #\n    # Internal methods.\n    #\n\n    def _read_fmt_chunk(self, chunk):\n        try:\n            wFormatTag, self._nchannels, self._framerate, dwAvgBytesPerSec, wBlockAlign = struct.unpack_from('<HHLLH', chunk.read(14))\n        except struct.error:\n            raise EOFError from None\n        if wFormatTag == WAVE_FORMAT_PCM:\n            try:\n                sampwidth = struct.unpack_from('<H', chunk.read(2))[0]\n            except struct.error:\n                raise EOFError from None\n            self._sampwidth = (sampwidth + 7) // 8\n            if not self._sampwidth:\n                raise Error('bad sample width')\n        else:\n            raise Error('unknown format: %r' % (wFormatTag,))\n        if not self._nchannels:\n            raise Error('bad # of channels')\n        self._framesize = self._nchannels * self._sampwidth\n        self._comptype = 'NONE'\n        self._compname = 'not compressed'\n\nclass Wave_write:\n    \"\"\"Variables used in this class:\n\n    These variables are user settable through appropriate methods\n    of this class:\n    _file -- the open file with methods write(), close(), tell(), seek()\n              set through the __init__() method\n    _comptype -- the AIFF-C compression type ('NONE' in AIFF)\n              set through the setcomptype() or setparams() method\n    _compname -- the human-readable AIFF-C compression type\n              set through the setcomptype() or setparams() method\n    _nchannels -- the number of audio channels\n              set through the setnchannels() or setparams() method\n    _sampwidth -- the number of bytes per audio sample\n              set through the setsampwidth() or setparams() method\n    _framerate -- the sampling frequency\n              set through the setframerate() or setparams() method\n    _nframes -- the number of audio frames written to the header\n              set through the setnframes() or setparams() method\n\n    These variables are used internally only:\n    _datalength -- the size of the audio samples written to the header\n    _nframeswritten -- the number of frames actually written\n    _datawritten -- the size of the audio samples actually written\n    \"\"\"\n\n    def __init__(self, f):\n        self._i_opened_the_file = None\n        if isinstance(f, str):\n            f = builtins.open(f, 'wb')\n            self._i_opened_the_file = f\n        try:\n            self.initfp(f)\n        except:\n            if self._i_opened_the_file:\n                f.close()\n            raise\n\n    def initfp(self, file):\n        self._file = file\n        self._convert = None\n        self._nchannels = 0\n        self._sampwidth = 0\n        self._framerate = 0\n        self._nframes = 0\n        self._nframeswritten = 0\n        self._datawritten = 0\n        self._datalength = 0\n        self._headerwritten = False\n\n    def __del__(self):\n        self.close()\n\n    def __enter__(self):\n        return self\n\n    def __exit__(self, *args):\n        self.close()\n\n    #\n    # User visible methods.\n    #\n    def setnchannels(self, nchannels):\n        if self._datawritten:\n            raise Error('cannot change parameters after starting to write')\n        if nchannels < 1:\n            raise Error('bad # of channels')\n        self._nchannels = nchannels\n\n    def getnchannels(self):\n        if not self._nchannels:\n            raise Error('number of channels not set')\n        return self._nchannels\n\n    def setsampwidth(self, sampwidth):\n        if self._datawritten:\n            raise Error('cannot change parameters after starting to write')\n        if sampwidth < 1 or sampwidth > 4:\n            raise Error('bad sample width')\n        self._sampwidth = sampwidth\n\n    def getsampwidth(self):\n        if not self._sampwidth:\n            raise Error('sample width not set')\n        return self._sampwidth\n\n    def setframerate(self, framerate):\n        if self._datawritten:\n            raise Error('cannot change parameters after starting to write')\n        if framerate <= 0:\n            raise Error('bad frame rate')\n        self._framerate = int(round(framerate))\n\n    def getframerate(self):\n        if not self._framerate:\n            raise Error('frame rate not set')\n        return self._framerate\n\n    def setnframes(self, nframes):\n        if self._datawritten:\n            raise Error('cannot change parameters after starting to write')\n        self._nframes = nframes\n\n    def getnframes(self):\n        return self._nframeswritten\n\n    def setcomptype(self, comptype, compname):\n        if self._datawritten:\n            raise Error('cannot change parameters after starting to write')\n        if comptype not in ('NONE',):\n            raise Error('unsupported compression type')\n        self._comptype = comptype\n        self._compname = compname\n\n    def getcomptype(self):\n        return self._comptype\n\n    def getcompname(self):\n        return self._compname\n\n    def setparams(self, params):\n        nchannels, sampwidth, framerate, nframes, comptype, compname = params\n        if self._datawritten:\n            raise Error('cannot change parameters after starting to write')\n        self.setnchannels(nchannels)\n        self.setsampwidth(sampwidth)\n        self.setframerate(framerate)\n        self.setnframes(nframes)\n        self.setcomptype(comptype, compname)\n\n    def getparams(self):\n        if not self._nchannels or not self._sampwidth or not self._framerate:\n            raise Error('not all parameters set')\n        return _wave_params(self._nchannels, self._sampwidth, self._framerate,\n              self._nframes, self._comptype, self._compname)\n\n    def setmark(self, id, pos, name):\n        raise Error('setmark() not supported')\n\n    def getmark(self, id):\n        raise Error('no marks')\n\n    def getmarkers(self):\n        return None\n\n    def tell(self):\n        return self._nframeswritten\n\n    def writeframesraw(self, data):\n        if not isinstance(data, (bytes, bytearray)):\n            data = memoryview(data).cast('B')\n        self._ensure_header_written(len(data))\n        nframes = len(data) // (self._sampwidth * self._nchannels)\n        if self._convert:\n            data = self._convert(data)\n        if self._sampwidth != 1 and sys.byteorder == 'big':\n            data = audioop.byteswap(data, self._sampwidth)\n        self._file.write(data)\n        self._datawritten += len(data)\n        self._nframeswritten = self._nframeswritten + nframes\n\n    def writeframes(self, data):\n        self.writeframesraw(data)\n        if self._datalength != self._datawritten:\n            self._patchheader()\n\n    def close(self):\n        try:\n            if self._file:\n                self._ensure_header_written(0)\n                if self._datalength != self._datawritten:\n                    self._patchheader()\n                self._file.flush()\n        finally:\n            self._file = None\n            file = self._i_opened_the_file\n            if file:\n                self._i_opened_the_file = None\n                file.close()\n\n    #\n    # Internal methods.\n    #\n\n    def _ensure_header_written(self, datasize):\n        if not self._headerwritten:\n            if not self._nchannels:\n                raise Error('# channels not specified')\n            if not self._sampwidth:\n                raise Error('sample width not specified')\n            if not self._framerate:\n                raise Error('sampling rate not specified')\n            self._write_header(datasize)\n\n    def _write_header(self, initlength):\n        assert not self._headerwritten\n        self._file.write(b'RIFF')\n        if not self._nframes:\n            self._nframes = initlength // (self._nchannels * self._sampwidth)\n        self._datalength = self._nframes * self._nchannels * self._sampwidth\n        try:\n            self._form_length_pos = self._file.tell()\n        except (AttributeError, OSError):\n            self._form_length_pos = None\n        self._file.write(struct.pack('<L4s4sLHHLLHH4s',\n            36 + self._datalength, b'WAVE', b'fmt ', 16,\n            WAVE_FORMAT_PCM, self._nchannels, self._framerate,\n            self._nchannels * self._framerate * self._sampwidth,\n            self._nchannels * self._sampwidth,\n            self._sampwidth * 8, b'data'))\n        if self._form_length_pos is not None:\n            self._data_length_pos = self._file.tell()\n        self._file.write(struct.pack('<L', self._datalength))\n        self._headerwritten = True\n\n    def _patchheader(self):\n        assert self._headerwritten\n        if self._datawritten == self._datalength:\n            return\n        curpos = self._file.tell()\n        self._file.seek(self._form_length_pos, 0)\n        self._file.write(struct.pack('<L', 36 + self._datawritten))\n        self._file.seek(self._data_length_pos, 0)\n        self._file.write(struct.pack('<L', self._datawritten))\n        self._file.seek(curpos, 0)\n        self._datalength = self._datawritten\n\ndef open(f, mode=None):\n    if mode is None:\n        if hasattr(f, 'mode'):\n            mode = f.mode\n        else:\n            mode = 'rb'\n    if mode in ('r', 'rb'):\n        return Wave_read(f)\n    elif mode in ('w', 'wb'):\n        return Wave_write(f)\n    else:\n        raise Error(\"mode must be 'r', 'rb', 'w', or 'wb'\")\n\ndef openfp(f, mode=None):\n    warnings.warn(\"wave.openfp is deprecated since Python 3.7. \"\n                  \"Use wave.open instead.\", DeprecationWarning, stacklevel=2)\n    return open(f, mode=mode)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/weakref.py",
    "content": "\"\"\"Weak reference support for Python.\n\nThis module is an implementation of PEP 205:\n\nhttp://www.python.org/dev/peps/pep-0205/\n\"\"\"\n\n# Naming convention: Variables named \"wr\" are weak reference objects;\n# they are called this instead of \"ref\" to avoid name collisions with\n# the module-global ref() function imported from _weakref.\n\nfrom _weakref import (\n     getweakrefcount,\n     getweakrefs,\n     ref,\n     proxy,\n     CallableProxyType,\n     ProxyType,\n     ReferenceType,\n     _remove_dead_weakref)\n\nfrom _weakrefset import WeakSet, _IterationGuard\n\nimport _collections_abc  # Import after _weakref to avoid circular import.\nimport sys\nimport itertools\n\nProxyTypes = (ProxyType, CallableProxyType)\n\n__all__ = [\"ref\", \"proxy\", \"getweakrefcount\", \"getweakrefs\",\n           \"WeakKeyDictionary\", \"ReferenceType\", \"ProxyType\",\n           \"CallableProxyType\", \"ProxyTypes\", \"WeakValueDictionary\",\n           \"WeakSet\", \"WeakMethod\", \"finalize\"]\n\n\nclass WeakMethod(ref):\n    \"\"\"\n    A custom `weakref.ref` subclass which simulates a weak reference to\n    a bound method, working around the lifetime problem of bound methods.\n    \"\"\"\n\n    __slots__ = \"_func_ref\", \"_meth_type\", \"_alive\", \"__weakref__\"\n\n    def __new__(cls, meth, callback=None):\n        try:\n            obj = meth.__self__\n            func = meth.__func__\n        except AttributeError:\n            raise TypeError(\"argument should be a bound method, not {}\"\n                            .format(type(meth))) from None\n        def _cb(arg):\n            # The self-weakref trick is needed to avoid creating a reference\n            # cycle.\n            self = self_wr()\n            if self._alive:\n                self._alive = False\n                if callback is not None:\n                    callback(self)\n        self = ref.__new__(cls, obj, _cb)\n        self._func_ref = ref(func, _cb)\n        self._meth_type = type(meth)\n        self._alive = True\n        self_wr = ref(self)\n        return self\n\n    def __call__(self):\n        obj = super().__call__()\n        func = self._func_ref()\n        if obj is None or func is None:\n            return None\n        return self._meth_type(func, obj)\n\n    def __eq__(self, other):\n        if isinstance(other, WeakMethod):\n            if not self._alive or not other._alive:\n                return self is other\n            return ref.__eq__(self, other) and self._func_ref == other._func_ref\n        return False\n\n    def __ne__(self, other):\n        if isinstance(other, WeakMethod):\n            if not self._alive or not other._alive:\n                return self is not other\n            return ref.__ne__(self, other) or self._func_ref != other._func_ref\n        return True\n\n    __hash__ = ref.__hash__\n\n\nclass WeakValueDictionary(_collections_abc.MutableMapping):\n    \"\"\"Mapping class that references values weakly.\n\n    Entries in the dictionary will be discarded when no strong\n    reference to the value exists anymore\n    \"\"\"\n    # We inherit the constructor without worrying about the input\n    # dictionary; since it uses our .update() method, we get the right\n    # checks (if the other dictionary is a WeakValueDictionary,\n    # objects are unwrapped on the way out, and we always wrap on the\n    # way in).\n\n    def __init__(self, other=(), /, **kw):\n        def remove(wr, selfref=ref(self), _atomic_removal=_remove_dead_weakref):\n            self = selfref()\n            if self is not None:\n                if self._iterating:\n                    self._pending_removals.append(wr.key)\n                else:\n                    # Atomic removal is necessary since this function\n                    # can be called asynchronously by the GC\n                    _atomic_removal(self.data, wr.key)\n        self._remove = remove\n        # A list of keys to be removed\n        self._pending_removals = []\n        self._iterating = set()\n        self.data = {}\n        self.update(other, **kw)\n\n    def _commit_removals(self):\n        l = self._pending_removals\n        d = self.data\n        # We shouldn't encounter any KeyError, because this method should\n        # always be called *before* mutating the dict.\n        while l:\n            key = l.pop()\n            _remove_dead_weakref(d, key)\n\n    def __getitem__(self, key):\n        if self._pending_removals:\n            self._commit_removals()\n        o = self.data[key]()\n        if o is None:\n            raise KeyError(key)\n        else:\n            return o\n\n    def __delitem__(self, key):\n        if self._pending_removals:\n            self._commit_removals()\n        del self.data[key]\n\n    def __len__(self):\n        if self._pending_removals:\n            self._commit_removals()\n        return len(self.data)\n\n    def __contains__(self, key):\n        if self._pending_removals:\n            self._commit_removals()\n        try:\n            o = self.data[key]()\n        except KeyError:\n            return False\n        return o is not None\n\n    def __repr__(self):\n        return \"<%s at %#x>\" % (self.__class__.__name__, id(self))\n\n    def __setitem__(self, key, value):\n        if self._pending_removals:\n            self._commit_removals()\n        self.data[key] = KeyedRef(value, self._remove, key)\n\n    def copy(self):\n        if self._pending_removals:\n            self._commit_removals()\n        new = WeakValueDictionary()\n        with _IterationGuard(self):\n            for key, wr in self.data.items():\n                o = wr()\n                if o is not None:\n                    new[key] = o\n        return new\n\n    __copy__ = copy\n\n    def __deepcopy__(self, memo):\n        from copy import deepcopy\n        if self._pending_removals:\n            self._commit_removals()\n        new = self.__class__()\n        with _IterationGuard(self):\n            for key, wr in self.data.items():\n                o = wr()\n                if o is not None:\n                    new[deepcopy(key, memo)] = o\n        return new\n\n    def get(self, key, default=None):\n        if self._pending_removals:\n            self._commit_removals()\n        try:\n            wr = self.data[key]\n        except KeyError:\n            return default\n        else:\n            o = wr()\n            if o is None:\n                # This should only happen\n                return default\n            else:\n                return o\n\n    def items(self):\n        if self._pending_removals:\n            self._commit_removals()\n        with _IterationGuard(self):\n            for k, wr in self.data.items():\n                v = wr()\n                if v is not None:\n                    yield k, v\n\n    def keys(self):\n        if self._pending_removals:\n            self._commit_removals()\n        with _IterationGuard(self):\n            for k, wr in self.data.items():\n                if wr() is not None:\n                    yield k\n\n    __iter__ = keys\n\n    def itervaluerefs(self):\n        \"\"\"Return an iterator that yields the weak references to the values.\n\n        The references are not guaranteed to be 'live' at the time\n        they are used, so the result of calling the references needs\n        to be checked before being used.  This can be used to avoid\n        creating references that will cause the garbage collector to\n        keep the values around longer than needed.\n\n        \"\"\"\n        if self._pending_removals:\n            self._commit_removals()\n        with _IterationGuard(self):\n            yield from self.data.values()\n\n    def values(self):\n        if self._pending_removals:\n            self._commit_removals()\n        with _IterationGuard(self):\n            for wr in self.data.values():\n                obj = wr()\n                if obj is not None:\n                    yield obj\n\n    def popitem(self):\n        if self._pending_removals:\n            self._commit_removals()\n        while True:\n            key, wr = self.data.popitem()\n            o = wr()\n            if o is not None:\n                return key, o\n\n    def pop(self, key, *args):\n        if self._pending_removals:\n            self._commit_removals()\n        try:\n            o = self.data.pop(key)()\n        except KeyError:\n            o = None\n        if o is None:\n            if args:\n                return args[0]\n            else:\n                raise KeyError(key)\n        else:\n            return o\n\n    def setdefault(self, key, default=None):\n        try:\n            o = self.data[key]()\n        except KeyError:\n            o = None\n        if o is None:\n            if self._pending_removals:\n                self._commit_removals()\n            self.data[key] = KeyedRef(default, self._remove, key)\n            return default\n        else:\n            return o\n\n    def update(self, other=None, /, **kwargs):\n        if self._pending_removals:\n            self._commit_removals()\n        d = self.data\n        if other is not None:\n            if not hasattr(other, \"items\"):\n                other = dict(other)\n            for key, o in other.items():\n                d[key] = KeyedRef(o, self._remove, key)\n        for key, o in kwargs.items():\n            d[key] = KeyedRef(o, self._remove, key)\n\n    def valuerefs(self):\n        \"\"\"Return a list of weak references to the values.\n\n        The references are not guaranteed to be 'live' at the time\n        they are used, so the result of calling the references needs\n        to be checked before being used.  This can be used to avoid\n        creating references that will cause the garbage collector to\n        keep the values around longer than needed.\n\n        \"\"\"\n        if self._pending_removals:\n            self._commit_removals()\n        return list(self.data.values())\n\n\nclass KeyedRef(ref):\n    \"\"\"Specialized reference that includes a key corresponding to the value.\n\n    This is used in the WeakValueDictionary to avoid having to create\n    a function object for each key stored in the mapping.  A shared\n    callback object can use the 'key' attribute of a KeyedRef instead\n    of getting a reference to the key from an enclosing scope.\n\n    \"\"\"\n\n    __slots__ = \"key\",\n\n    def __new__(type, ob, callback, key):\n        self = ref.__new__(type, ob, callback)\n        self.key = key\n        return self\n\n    def __init__(self, ob, callback, key):\n        super().__init__(ob, callback)\n\n\nclass WeakKeyDictionary(_collections_abc.MutableMapping):\n    \"\"\" Mapping class that references keys weakly.\n\n    Entries in the dictionary will be discarded when there is no\n    longer a strong reference to the key. This can be used to\n    associate additional data with an object owned by other parts of\n    an application without adding attributes to those objects. This\n    can be especially useful with objects that override attribute\n    accesses.\n    \"\"\"\n\n    def __init__(self, dict=None):\n        self.data = {}\n        def remove(k, selfref=ref(self)):\n            self = selfref()\n            if self is not None:\n                if self._iterating:\n                    self._pending_removals.append(k)\n                else:\n                    del self.data[k]\n        self._remove = remove\n        # A list of dead weakrefs (keys to be removed)\n        self._pending_removals = []\n        self._iterating = set()\n        self._dirty_len = False\n        if dict is not None:\n            self.update(dict)\n\n    def _commit_removals(self):\n        # NOTE: We don't need to call this method before mutating the dict,\n        # because a dead weakref never compares equal to a live weakref,\n        # even if they happened to refer to equal objects.\n        # However, it means keys may already have been removed.\n        l = self._pending_removals\n        d = self.data\n        while l:\n            try:\n                del d[l.pop()]\n            except KeyError:\n                pass\n\n    def _scrub_removals(self):\n        d = self.data\n        self._pending_removals = [k for k in self._pending_removals if k in d]\n        self._dirty_len = False\n\n    def __delitem__(self, key):\n        self._dirty_len = True\n        del self.data[ref(key)]\n\n    def __getitem__(self, key):\n        return self.data[ref(key)]\n\n    def __len__(self):\n        if self._dirty_len and self._pending_removals:\n            # self._pending_removals may still contain keys which were\n            # explicitly removed, we have to scrub them (see issue #21173).\n            self._scrub_removals()\n        return len(self.data) - len(self._pending_removals)\n\n    def __repr__(self):\n        return \"<%s at %#x>\" % (self.__class__.__name__, id(self))\n\n    def __setitem__(self, key, value):\n        self.data[ref(key, self._remove)] = value\n\n    def copy(self):\n        new = WeakKeyDictionary()\n        with _IterationGuard(self):\n            for key, value in self.data.items():\n                o = key()\n                if o is not None:\n                    new[o] = value\n        return new\n\n    __copy__ = copy\n\n    def __deepcopy__(self, memo):\n        from copy import deepcopy\n        new = self.__class__()\n        with _IterationGuard(self):\n            for key, value in self.data.items():\n                o = key()\n                if o is not None:\n                    new[o] = deepcopy(value, memo)\n        return new\n\n    def get(self, key, default=None):\n        return self.data.get(ref(key),default)\n\n    def __contains__(self, key):\n        try:\n            wr = ref(key)\n        except TypeError:\n            return False\n        return wr in self.data\n\n    def items(self):\n        with _IterationGuard(self):\n            for wr, value in self.data.items():\n                key = wr()\n                if key is not None:\n                    yield key, value\n\n    def keys(self):\n        with _IterationGuard(self):\n            for wr in self.data:\n                obj = wr()\n                if obj is not None:\n                    yield obj\n\n    __iter__ = keys\n\n    def values(self):\n        with _IterationGuard(self):\n            for wr, value in self.data.items():\n                if wr() is not None:\n                    yield value\n\n    def keyrefs(self):\n        \"\"\"Return a list of weak references to the keys.\n\n        The references are not guaranteed to be 'live' at the time\n        they are used, so the result of calling the references needs\n        to be checked before being used.  This can be used to avoid\n        creating references that will cause the garbage collector to\n        keep the keys around longer than needed.\n\n        \"\"\"\n        return list(self.data)\n\n    def popitem(self):\n        self._dirty_len = True\n        while True:\n            key, value = self.data.popitem()\n            o = key()\n            if o is not None:\n                return o, value\n\n    def pop(self, key, *args):\n        self._dirty_len = True\n        return self.data.pop(ref(key), *args)\n\n    def setdefault(self, key, default=None):\n        return self.data.setdefault(ref(key, self._remove),default)\n\n    def update(self, dict=None, /, **kwargs):\n        d = self.data\n        if dict is not None:\n            if not hasattr(dict, \"items\"):\n                dict = type({})(dict)\n            for key, value in dict.items():\n                d[ref(key, self._remove)] = value\n        if len(kwargs):\n            self.update(kwargs)\n\n\nclass finalize:\n    \"\"\"Class for finalization of weakrefable objects\n\n    finalize(obj, func, *args, **kwargs) returns a callable finalizer\n    object which will be called when obj is garbage collected. The\n    first time the finalizer is called it evaluates func(*arg, **kwargs)\n    and returns the result. After this the finalizer is dead, and\n    calling it just returns None.\n\n    When the program exits any remaining finalizers for which the\n    atexit attribute is true will be run in reverse order of creation.\n    By default atexit is true.\n    \"\"\"\n\n    # Finalizer objects don't have any state of their own.  They are\n    # just used as keys to lookup _Info objects in the registry.  This\n    # ensures that they cannot be part of a ref-cycle.\n\n    __slots__ = ()\n    _registry = {}\n    _shutdown = False\n    _index_iter = itertools.count()\n    _dirty = False\n    _registered_with_atexit = False\n\n    class _Info:\n        __slots__ = (\"weakref\", \"func\", \"args\", \"kwargs\", \"atexit\", \"index\")\n\n    def __init__(*args, **kwargs):\n        if len(args) >= 3:\n            self, obj, func, *args = args\n        elif not args:\n            raise TypeError(\"descriptor '__init__' of 'finalize' object \"\n                            \"needs an argument\")\n        else:\n            if 'func' not in kwargs:\n                raise TypeError('finalize expected at least 2 positional '\n                                'arguments, got %d' % (len(args)-1))\n            func = kwargs.pop('func')\n            if len(args) >= 2:\n                self, obj, *args = args\n                import warnings\n                warnings.warn(\"Passing 'func' as keyword argument is deprecated\",\n                              DeprecationWarning, stacklevel=2)\n            else:\n                if 'obj' not in kwargs:\n                    raise TypeError('finalize expected at least 2 positional '\n                                    'arguments, got %d' % (len(args)-1))\n                obj = kwargs.pop('obj')\n                self, *args = args\n                import warnings\n                warnings.warn(\"Passing 'obj' as keyword argument is deprecated\",\n                              DeprecationWarning, stacklevel=2)\n        args = tuple(args)\n\n        if not self._registered_with_atexit:\n            # We may register the exit function more than once because\n            # of a thread race, but that is harmless\n            import atexit\n            atexit.register(self._exitfunc)\n            finalize._registered_with_atexit = True\n        info = self._Info()\n        info.weakref = ref(obj, self)\n        info.func = func\n        info.args = args\n        info.kwargs = kwargs or None\n        info.atexit = True\n        info.index = next(self._index_iter)\n        self._registry[self] = info\n        finalize._dirty = True\n    __init__.__text_signature__ = '($self, obj, func, /, *args, **kwargs)'\n\n    def __call__(self, _=None):\n        \"\"\"If alive then mark as dead and return func(*args, **kwargs);\n        otherwise return None\"\"\"\n        info = self._registry.pop(self, None)\n        if info and not self._shutdown:\n            return info.func(*info.args, **(info.kwargs or {}))\n\n    def detach(self):\n        \"\"\"If alive then mark as dead and return (obj, func, args, kwargs);\n        otherwise return None\"\"\"\n        info = self._registry.get(self)\n        obj = info and info.weakref()\n        if obj is not None and self._registry.pop(self, None):\n            return (obj, info.func, info.args, info.kwargs or {})\n\n    def peek(self):\n        \"\"\"If alive then return (obj, func, args, kwargs);\n        otherwise return None\"\"\"\n        info = self._registry.get(self)\n        obj = info and info.weakref()\n        if obj is not None:\n            return (obj, info.func, info.args, info.kwargs or {})\n\n    @property\n    def alive(self):\n        \"\"\"Whether finalizer is alive\"\"\"\n        return self in self._registry\n\n    @property\n    def atexit(self):\n        \"\"\"Whether finalizer should be called at exit\"\"\"\n        info = self._registry.get(self)\n        return bool(info) and info.atexit\n\n    @atexit.setter\n    def atexit(self, value):\n        info = self._registry.get(self)\n        if info:\n            info.atexit = bool(value)\n\n    def __repr__(self):\n        info = self._registry.get(self)\n        obj = info and info.weakref()\n        if obj is None:\n            return '<%s object at %#x; dead>' % (type(self).__name__, id(self))\n        else:\n            return '<%s object at %#x; for %r at %#x>' % \\\n                (type(self).__name__, id(self), type(obj).__name__, id(obj))\n\n    @classmethod\n    def _select_for_exit(cls):\n        # Return live finalizers marked for exit, oldest first\n        L = [(f,i) for (f,i) in cls._registry.items() if i.atexit]\n        L.sort(key=lambda item:item[1].index)\n        return [f for (f,i) in L]\n\n    @classmethod\n    def _exitfunc(cls):\n        # At shutdown invoke finalizers for which atexit is true.\n        # This is called once all other non-daemonic threads have been\n        # joined.\n        reenable_gc = False\n        try:\n            if cls._registry:\n                import gc\n                if gc.isenabled():\n                    reenable_gc = True\n                    gc.disable()\n                pending = None\n                while True:\n                    if pending is None or finalize._dirty:\n                        pending = cls._select_for_exit()\n                        finalize._dirty = False\n                    if not pending:\n                        break\n                    f = pending.pop()\n                    try:\n                        # gc is disabled, so (assuming no daemonic\n                        # threads) the following is the only line in\n                        # this function which might trigger creation\n                        # of a new finalizer\n                        f()\n                    except Exception:\n                        sys.excepthook(*sys.exc_info())\n                    assert f not in cls._registry\n        finally:\n            # prevent any more finalizers from executing during shutdown\n            finalize._shutdown = True\n            if reenable_gc:\n                gc.enable()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/webbrowser.py",
    "content": "#! /usr/bin/env python3\n\"\"\"Interfaces for launching and remotely controlling Web browsers.\"\"\"\n# Maintained by Georg Brandl.\n\nimport os\nimport shlex\nimport shutil\nimport sys\nimport subprocess\nimport threading\n\n__all__ = [\"Error\", \"open\", \"open_new\", \"open_new_tab\", \"get\", \"register\"]\n\nclass Error(Exception):\n    pass\n\n_lock = threading.RLock()\n_browsers = {}                  # Dictionary of available browser controllers\n_tryorder = None                # Preference order of available browsers\n_os_preferred_browser = None    # The preferred browser\n\ndef register(name, klass, instance=None, *, preferred=False):\n    \"\"\"Register a browser connector.\"\"\"\n    with _lock:\n        if _tryorder is None:\n            register_standard_browsers()\n        _browsers[name.lower()] = [klass, instance]\n\n        # Preferred browsers go to the front of the list.\n        # Need to match to the default browser returned by xdg-settings, which\n        # may be of the form e.g. \"firefox.desktop\".\n        if preferred or (_os_preferred_browser and name in _os_preferred_browser):\n            _tryorder.insert(0, name)\n        else:\n            _tryorder.append(name)\n\ndef get(using=None):\n    \"\"\"Return a browser launcher instance appropriate for the environment.\"\"\"\n    if _tryorder is None:\n        with _lock:\n            if _tryorder is None:\n                register_standard_browsers()\n    if using is not None:\n        alternatives = [using]\n    else:\n        alternatives = _tryorder\n    for browser in alternatives:\n        if '%s' in browser:\n            # User gave us a command line, split it into name and args\n            browser = shlex.split(browser)\n            if browser[-1] == '&':\n                return BackgroundBrowser(browser[:-1])\n            else:\n                return GenericBrowser(browser)\n        else:\n            # User gave us a browser name or path.\n            try:\n                command = _browsers[browser.lower()]\n            except KeyError:\n                command = _synthesize(browser)\n            if command[1] is not None:\n                return command[1]\n            elif command[0] is not None:\n                return command[0]()\n    raise Error(\"could not locate runnable browser\")\n\n# Please note: the following definition hides a builtin function.\n# It is recommended one does \"import webbrowser\" and uses webbrowser.open(url)\n# instead of \"from webbrowser import *\".\n\ndef open(url, new=0, autoraise=True):\n    \"\"\"Display url using the default browser.\n\n    If possible, open url in a location determined by new.\n    - 0: the same browser window (the default).\n    - 1: a new browser window.\n    - 2: a new browser page (\"tab\").\n    If possible, autoraise raises the window (the default) or not.\n    \"\"\"\n    if _tryorder is None:\n        with _lock:\n            if _tryorder is None:\n                register_standard_browsers()\n    for name in _tryorder:\n        browser = get(name)\n        if browser.open(url, new, autoraise):\n            return True\n    return False\n\ndef open_new(url):\n    \"\"\"Open url in a new window of the default browser.\n\n    If not possible, then open url in the only browser window.\n    \"\"\"\n    return open(url, 1)\n\ndef open_new_tab(url):\n    \"\"\"Open url in a new page (\"tab\") of the default browser.\n\n    If not possible, then the behavior becomes equivalent to open_new().\n    \"\"\"\n    return open(url, 2)\n\n\ndef _synthesize(browser, *, preferred=False):\n    \"\"\"Attempt to synthesize a controller based on existing controllers.\n\n    This is useful to create a controller when a user specifies a path to\n    an entry in the BROWSER environment variable -- we can copy a general\n    controller to operate using a specific installation of the desired\n    browser in this way.\n\n    If we can't create a controller in this way, or if there is no\n    executable for the requested browser, return [None, None].\n\n    \"\"\"\n    cmd = browser.split()[0]\n    if not shutil.which(cmd):\n        return [None, None]\n    name = os.path.basename(cmd)\n    try:\n        command = _browsers[name.lower()]\n    except KeyError:\n        return [None, None]\n    # now attempt to clone to fit the new name:\n    controller = command[1]\n    if controller and name.lower() == controller.basename:\n        import copy\n        controller = copy.copy(controller)\n        controller.name = browser\n        controller.basename = os.path.basename(browser)\n        register(browser, None, instance=controller, preferred=preferred)\n        return [None, controller]\n    return [None, None]\n\n\n# General parent classes\n\nclass BaseBrowser(object):\n    \"\"\"Parent class for all browsers. Do not use directly.\"\"\"\n\n    args = ['%s']\n\n    def __init__(self, name=\"\"):\n        self.name = name\n        self.basename = name\n\n    def open(self, url, new=0, autoraise=True):\n        raise NotImplementedError\n\n    def open_new(self, url):\n        return self.open(url, 1)\n\n    def open_new_tab(self, url):\n        return self.open(url, 2)\n\n\nclass GenericBrowser(BaseBrowser):\n    \"\"\"Class for all browsers started with a command\n       and without remote functionality.\"\"\"\n\n    def __init__(self, name):\n        if isinstance(name, str):\n            self.name = name\n            self.args = [\"%s\"]\n        else:\n            # name should be a list with arguments\n            self.name = name[0]\n            self.args = name[1:]\n        self.basename = os.path.basename(self.name)\n\n    def open(self, url, new=0, autoraise=True):\n        sys.audit(\"webbrowser.open\", url)\n        cmdline = [self.name] + [arg.replace(\"%s\", url)\n                                 for arg in self.args]\n        try:\n            if sys.platform[:3] == 'win':\n                p = subprocess.Popen(cmdline)\n            else:\n                p = subprocess.Popen(cmdline, close_fds=True)\n            return not p.wait()\n        except OSError:\n            return False\n\n\nclass BackgroundBrowser(GenericBrowser):\n    \"\"\"Class for all browsers which are to be started in the\n       background.\"\"\"\n\n    def open(self, url, new=0, autoraise=True):\n        cmdline = [self.name] + [arg.replace(\"%s\", url)\n                                 for arg in self.args]\n        sys.audit(\"webbrowser.open\", url)\n        try:\n            if sys.platform[:3] == 'win':\n                p = subprocess.Popen(cmdline)\n            else:\n                p = subprocess.Popen(cmdline, close_fds=True,\n                                     start_new_session=True)\n            return (p.poll() is None)\n        except OSError:\n            return False\n\n\nclass UnixBrowser(BaseBrowser):\n    \"\"\"Parent class for all Unix browsers with remote functionality.\"\"\"\n\n    raise_opts = None\n    background = False\n    redirect_stdout = True\n    # In remote_args, %s will be replaced with the requested URL.  %action will\n    # be replaced depending on the value of 'new' passed to open.\n    # remote_action is used for new=0 (open).  If newwin is not None, it is\n    # used for new=1 (open_new).  If newtab is not None, it is used for\n    # new=3 (open_new_tab).  After both substitutions are made, any empty\n    # strings in the transformed remote_args list will be removed.\n    remote_args = ['%action', '%s']\n    remote_action = None\n    remote_action_newwin = None\n    remote_action_newtab = None\n\n    def _invoke(self, args, remote, autoraise, url=None):\n        raise_opt = []\n        if remote and self.raise_opts:\n            # use autoraise argument only for remote invocation\n            autoraise = int(autoraise)\n            opt = self.raise_opts[autoraise]\n            if opt: raise_opt = [opt]\n\n        cmdline = [self.name] + raise_opt + args\n\n        if remote or self.background:\n            inout = subprocess.DEVNULL\n        else:\n            # for TTY browsers, we need stdin/out\n            inout = None\n        p = subprocess.Popen(cmdline, close_fds=True, stdin=inout,\n                             stdout=(self.redirect_stdout and inout or None),\n                             stderr=inout, start_new_session=True)\n        if remote:\n            # wait at most five seconds. If the subprocess is not finished, the\n            # remote invocation has (hopefully) started a new instance.\n            try:\n                rc = p.wait(5)\n                # if remote call failed, open() will try direct invocation\n                return not rc\n            except subprocess.TimeoutExpired:\n                return True\n        elif self.background:\n            if p.poll() is None:\n                return True\n            else:\n                return False\n        else:\n            return not p.wait()\n\n    def open(self, url, new=0, autoraise=True):\n        sys.audit(\"webbrowser.open\", url)\n        if new == 0:\n            action = self.remote_action\n        elif new == 1:\n            action = self.remote_action_newwin\n        elif new == 2:\n            if self.remote_action_newtab is None:\n                action = self.remote_action_newwin\n            else:\n                action = self.remote_action_newtab\n        else:\n            raise Error(\"Bad 'new' parameter to open(); \" +\n                        \"expected 0, 1, or 2, got %s\" % new)\n\n        args = [arg.replace(\"%s\", url).replace(\"%action\", action)\n                for arg in self.remote_args]\n        args = [arg for arg in args if arg]\n        success = self._invoke(args, True, autoraise, url)\n        if not success:\n            # remote invocation failed, try straight way\n            args = [arg.replace(\"%s\", url) for arg in self.args]\n            return self._invoke(args, False, False)\n        else:\n            return True\n\n\nclass Mozilla(UnixBrowser):\n    \"\"\"Launcher class for Mozilla browsers.\"\"\"\n\n    remote_args = ['%action', '%s']\n    remote_action = \"\"\n    remote_action_newwin = \"-new-window\"\n    remote_action_newtab = \"-new-tab\"\n    background = True\n\n\nclass Netscape(UnixBrowser):\n    \"\"\"Launcher class for Netscape browser.\"\"\"\n\n    raise_opts = [\"-noraise\", \"-raise\"]\n    remote_args = ['-remote', 'openURL(%s%action)']\n    remote_action = \"\"\n    remote_action_newwin = \",new-window\"\n    remote_action_newtab = \",new-tab\"\n    background = True\n\n\nclass Galeon(UnixBrowser):\n    \"\"\"Launcher class for Galeon/Epiphany browsers.\"\"\"\n\n    raise_opts = [\"-noraise\", \"\"]\n    remote_args = ['%action', '%s']\n    remote_action = \"-n\"\n    remote_action_newwin = \"-w\"\n    background = True\n\n\nclass Chrome(UnixBrowser):\n    \"Launcher class for Google Chrome browser.\"\n\n    remote_args = ['%action', '%s']\n    remote_action = \"\"\n    remote_action_newwin = \"--new-window\"\n    remote_action_newtab = \"\"\n    background = True\n\nChromium = Chrome\n\n\nclass Opera(UnixBrowser):\n    \"Launcher class for Opera browser.\"\n\n    remote_args = ['%action', '%s']\n    remote_action = \"\"\n    remote_action_newwin = \"--new-window\"\n    remote_action_newtab = \"\"\n    background = True\n\n\nclass Elinks(UnixBrowser):\n    \"Launcher class for Elinks browsers.\"\n\n    remote_args = ['-remote', 'openURL(%s%action)']\n    remote_action = \"\"\n    remote_action_newwin = \",new-window\"\n    remote_action_newtab = \",new-tab\"\n    background = False\n\n    # elinks doesn't like its stdout to be redirected -\n    # it uses redirected stdout as a signal to do -dump\n    redirect_stdout = False\n\n\nclass Konqueror(BaseBrowser):\n    \"\"\"Controller for the KDE File Manager (kfm, or Konqueror).\n\n    See the output of ``kfmclient --commands``\n    for more information on the Konqueror remote-control interface.\n    \"\"\"\n\n    def open(self, url, new=0, autoraise=True):\n        sys.audit(\"webbrowser.open\", url)\n        # XXX Currently I know no way to prevent KFM from opening a new win.\n        if new == 2:\n            action = \"newTab\"\n        else:\n            action = \"openURL\"\n\n        devnull = subprocess.DEVNULL\n\n        try:\n            p = subprocess.Popen([\"kfmclient\", action, url],\n                                 close_fds=True, stdin=devnull,\n                                 stdout=devnull, stderr=devnull)\n        except OSError:\n            # fall through to next variant\n            pass\n        else:\n            p.wait()\n            # kfmclient's return code unfortunately has no meaning as it seems\n            return True\n\n        try:\n            p = subprocess.Popen([\"konqueror\", \"--silent\", url],\n                                 close_fds=True, stdin=devnull,\n                                 stdout=devnull, stderr=devnull,\n                                 start_new_session=True)\n        except OSError:\n            # fall through to next variant\n            pass\n        else:\n            if p.poll() is None:\n                # Should be running now.\n                return True\n\n        try:\n            p = subprocess.Popen([\"kfm\", \"-d\", url],\n                                 close_fds=True, stdin=devnull,\n                                 stdout=devnull, stderr=devnull,\n                                 start_new_session=True)\n        except OSError:\n            return False\n        else:\n            return (p.poll() is None)\n\n\nclass Grail(BaseBrowser):\n    # There should be a way to maintain a connection to Grail, but the\n    # Grail remote control protocol doesn't really allow that at this\n    # point.  It probably never will!\n    def _find_grail_rc(self):\n        import glob\n        import pwd\n        import socket\n        import tempfile\n        tempdir = os.path.join(tempfile.gettempdir(),\n                               \".grail-unix\")\n        user = pwd.getpwuid(os.getuid())[0]\n        filename = os.path.join(glob.escape(tempdir), glob.escape(user) + \"-*\")\n        maybes = glob.glob(filename)\n        if not maybes:\n            return None\n        s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)\n        for fn in maybes:\n            # need to PING each one until we find one that's live\n            try:\n                s.connect(fn)\n            except OSError:\n                # no good; attempt to clean it out, but don't fail:\n                try:\n                    os.unlink(fn)\n                except OSError:\n                    pass\n            else:\n                return s\n\n    def _remote(self, action):\n        s = self._find_grail_rc()\n        if not s:\n            return 0\n        s.send(action)\n        s.close()\n        return 1\n\n    def open(self, url, new=0, autoraise=True):\n        sys.audit(\"webbrowser.open\", url)\n        if new:\n            ok = self._remote(\"LOADNEW \" + url)\n        else:\n            ok = self._remote(\"LOAD \" + url)\n        return ok\n\n\n#\n# Platform support for Unix\n#\n\n# These are the right tests because all these Unix browsers require either\n# a console terminal or an X display to run.\n\ndef register_X_browsers():\n\n    # use xdg-open if around\n    if shutil.which(\"xdg-open\"):\n        register(\"xdg-open\", None, BackgroundBrowser(\"xdg-open\"))\n\n    # The default GNOME3 browser\n    if \"GNOME_DESKTOP_SESSION_ID\" in os.environ and shutil.which(\"gvfs-open\"):\n        register(\"gvfs-open\", None, BackgroundBrowser(\"gvfs-open\"))\n\n    # The default GNOME browser\n    if \"GNOME_DESKTOP_SESSION_ID\" in os.environ and shutil.which(\"gnome-open\"):\n        register(\"gnome-open\", None, BackgroundBrowser(\"gnome-open\"))\n\n    # The default KDE browser\n    if \"KDE_FULL_SESSION\" in os.environ and shutil.which(\"kfmclient\"):\n        register(\"kfmclient\", Konqueror, Konqueror(\"kfmclient\"))\n\n    if shutil.which(\"x-www-browser\"):\n        register(\"x-www-browser\", None, BackgroundBrowser(\"x-www-browser\"))\n\n    # The Mozilla browsers\n    for browser in (\"firefox\", \"iceweasel\", \"iceape\", \"seamonkey\"):\n        if shutil.which(browser):\n            register(browser, None, Mozilla(browser))\n\n    # The Netscape and old Mozilla browsers\n    for browser in (\"mozilla-firefox\",\n                    \"mozilla-firebird\", \"firebird\",\n                    \"mozilla\", \"netscape\"):\n        if shutil.which(browser):\n            register(browser, None, Netscape(browser))\n\n    # Konqueror/kfm, the KDE browser.\n    if shutil.which(\"kfm\"):\n        register(\"kfm\", Konqueror, Konqueror(\"kfm\"))\n    elif shutil.which(\"konqueror\"):\n        register(\"konqueror\", Konqueror, Konqueror(\"konqueror\"))\n\n    # Gnome's Galeon and Epiphany\n    for browser in (\"galeon\", \"epiphany\"):\n        if shutil.which(browser):\n            register(browser, None, Galeon(browser))\n\n    # Skipstone, another Gtk/Mozilla based browser\n    if shutil.which(\"skipstone\"):\n        register(\"skipstone\", None, BackgroundBrowser(\"skipstone\"))\n\n    # Google Chrome/Chromium browsers\n    for browser in (\"google-chrome\", \"chrome\", \"chromium\", \"chromium-browser\"):\n        if shutil.which(browser):\n            register(browser, None, Chrome(browser))\n\n    # Opera, quite popular\n    if shutil.which(\"opera\"):\n        register(\"opera\", None, Opera(\"opera\"))\n\n    # Next, Mosaic -- old but still in use.\n    if shutil.which(\"mosaic\"):\n        register(\"mosaic\", None, BackgroundBrowser(\"mosaic\"))\n\n    # Grail, the Python browser. Does anybody still use it?\n    if shutil.which(\"grail\"):\n        register(\"grail\", Grail, None)\n\ndef register_standard_browsers():\n    global _tryorder\n    _tryorder = []\n\n    if sys.platform == 'darwin':\n        register(\"MacOSX\", None, MacOSXOSAScript('default'))\n        register(\"chrome\", None, MacOSXOSAScript('chrome'))\n        register(\"firefox\", None, MacOSXOSAScript('firefox'))\n        register(\"safari\", None, MacOSXOSAScript('safari'))\n        # OS X can use below Unix support (but we prefer using the OS X\n        # specific stuff)\n\n    if sys.platform[:3] == \"win\":\n        # First try to use the default Windows browser\n        register(\"windows-default\", WindowsDefault)\n\n        # Detect some common Windows browsers, fallback to IE\n        iexplore = os.path.join(os.environ.get(\"PROGRAMFILES\", \"C:\\\\Program Files\"),\n                                \"Internet Explorer\\\\IEXPLORE.EXE\")\n        for browser in (\"firefox\", \"firebird\", \"seamonkey\", \"mozilla\",\n                        \"netscape\", \"opera\", iexplore):\n            if shutil.which(browser):\n                register(browser, None, BackgroundBrowser(browser))\n    else:\n        # Prefer X browsers if present\n        if os.environ.get(\"DISPLAY\") or os.environ.get(\"WAYLAND_DISPLAY\"):\n            try:\n                cmd = \"xdg-settings get default-web-browser\".split()\n                raw_result = subprocess.check_output(cmd, stderr=subprocess.DEVNULL)\n                result = raw_result.decode().strip()\n            except (FileNotFoundError, subprocess.CalledProcessError, PermissionError) :\n                pass\n            else:\n                global _os_preferred_browser\n                _os_preferred_browser = result\n\n            register_X_browsers()\n\n        # Also try console browsers\n        if os.environ.get(\"TERM\"):\n            if shutil.which(\"www-browser\"):\n                register(\"www-browser\", None, GenericBrowser(\"www-browser\"))\n            # The Links/elinks browsers <http://artax.karlin.mff.cuni.cz/~mikulas/links/>\n            if shutil.which(\"links\"):\n                register(\"links\", None, GenericBrowser(\"links\"))\n            if shutil.which(\"elinks\"):\n                register(\"elinks\", None, Elinks(\"elinks\"))\n            # The Lynx browser <http://lynx.isc.org/>, <http://lynx.browser.org/>\n            if shutil.which(\"lynx\"):\n                register(\"lynx\", None, GenericBrowser(\"lynx\"))\n            # The w3m browser <http://w3m.sourceforge.net/>\n            if shutil.which(\"w3m\"):\n                register(\"w3m\", None, GenericBrowser(\"w3m\"))\n\n    # OK, now that we know what the default preference orders for each\n    # platform are, allow user to override them with the BROWSER variable.\n    if \"BROWSER\" in os.environ:\n        userchoices = os.environ[\"BROWSER\"].split(os.pathsep)\n        userchoices.reverse()\n\n        # Treat choices in same way as if passed into get() but do register\n        # and prepend to _tryorder\n        for cmdline in userchoices:\n            if cmdline != '':\n                cmd = _synthesize(cmdline, preferred=True)\n                if cmd[1] is None:\n                    register(cmdline, None, GenericBrowser(cmdline), preferred=True)\n\n    # what to do if _tryorder is now empty?\n\n\n#\n# Platform support for Windows\n#\n\nif sys.platform[:3] == \"win\":\n    class WindowsDefault(BaseBrowser):\n        def open(self, url, new=0, autoraise=True):\n            sys.audit(\"webbrowser.open\", url)\n            try:\n                os.startfile(url)\n            except OSError:\n                # [Error 22] No application is associated with the specified\n                # file for this operation: '<URL>'\n                return False\n            else:\n                return True\n\n#\n# Platform support for MacOS\n#\n\nif sys.platform == 'darwin':\n    # Adapted from patch submitted to SourceForge by Steven J. Burr\n    class MacOSX(BaseBrowser):\n        \"\"\"Launcher class for Aqua browsers on Mac OS X\n\n        Optionally specify a browser name on instantiation.  Note that this\n        will not work for Aqua browsers if the user has moved the application\n        package after installation.\n\n        If no browser is specified, the default browser, as specified in the\n        Internet System Preferences panel, will be used.\n        \"\"\"\n        def __init__(self, name):\n            self.name = name\n\n        def open(self, url, new=0, autoraise=True):\n            sys.audit(\"webbrowser.open\", url)\n            assert \"'\" not in url\n            # hack for local urls\n            if not ':' in url:\n                url = 'file:'+url\n\n            # new must be 0 or 1\n            new = int(bool(new))\n            if self.name == \"default\":\n                # User called open, open_new or get without a browser parameter\n                script = 'open location \"%s\"' % url.replace('\"', '%22') # opens in default browser\n            else:\n                # User called get and chose a browser\n                if self.name == \"OmniWeb\":\n                    toWindow = \"\"\n                else:\n                    # Include toWindow parameter of OpenURL command for browsers\n                    # that support it.  0 == new window; -1 == existing\n                    toWindow = \"toWindow %d\" % (new - 1)\n                cmd = 'OpenURL \"%s\"' % url.replace('\"', '%22')\n                script = '''tell application \"%s\"\n                                activate\n                                %s %s\n                            end tell''' % (self.name, cmd, toWindow)\n            # Open pipe to AppleScript through osascript command\n            osapipe = os.popen(\"osascript\", \"w\")\n            if osapipe is None:\n                return False\n            # Write script to osascript's stdin\n            osapipe.write(script)\n            rc = osapipe.close()\n            return not rc\n\n    class MacOSXOSAScript(BaseBrowser):\n        def __init__(self, name):\n            self._name = name\n\n        def open(self, url, new=0, autoraise=True):\n            if self._name == 'default':\n                script = 'open location \"%s\"' % url.replace('\"', '%22') # opens in default browser\n            else:\n                script = '''\n                   tell application \"%s\"\n                       activate\n                       open location \"%s\"\n                   end\n                   '''%(self._name, url.replace('\"', '%22'))\n\n            osapipe = os.popen(\"osascript\", \"w\")\n            if osapipe is None:\n                return False\n\n            osapipe.write(script)\n            rc = osapipe.close()\n            return not rc\n\n\ndef main():\n    import getopt\n    usage = \"\"\"Usage: %s [-n | -t] url\n    -n: open new window\n    -t: open new tab\"\"\" % sys.argv[0]\n    try:\n        opts, args = getopt.getopt(sys.argv[1:], 'ntd')\n    except getopt.error as msg:\n        print(msg, file=sys.stderr)\n        print(usage, file=sys.stderr)\n        sys.exit(1)\n    new_win = 0\n    for o, a in opts:\n        if o == '-n': new_win = 1\n        elif o == '-t': new_win = 2\n    if len(args) != 1:\n        print(usage, file=sys.stderr)\n        sys.exit(1)\n\n    url = args[0]\n    open(url, new_win)\n\n    print(\"\\a\")\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/xdrlib.py",
    "content": "\"\"\"Implements (a subset of) Sun XDR -- eXternal Data Representation.\n\nSee: RFC 1014\n\n\"\"\"\n\nimport struct\nfrom io import BytesIO\nfrom functools import wraps\n\n__all__ = [\"Error\", \"Packer\", \"Unpacker\", \"ConversionError\"]\n\n# exceptions\nclass Error(Exception):\n    \"\"\"Exception class for this module. Use:\n\n    except xdrlib.Error as var:\n        # var has the Error instance for the exception\n\n    Public ivars:\n        msg -- contains the message\n\n    \"\"\"\n    def __init__(self, msg):\n        self.msg = msg\n    def __repr__(self):\n        return repr(self.msg)\n    def __str__(self):\n        return str(self.msg)\n\n\nclass ConversionError(Error):\n    pass\n\ndef raise_conversion_error(function):\n    \"\"\" Wrap any raised struct.errors in a ConversionError. \"\"\"\n\n    @wraps(function)\n    def result(self, value):\n        try:\n            return function(self, value)\n        except struct.error as e:\n            raise ConversionError(e.args[0]) from None\n    return result\n\n\nclass Packer:\n    \"\"\"Pack various data representations into a buffer.\"\"\"\n\n    def __init__(self):\n        self.reset()\n\n    def reset(self):\n        self.__buf = BytesIO()\n\n    def get_buffer(self):\n        return self.__buf.getvalue()\n    # backwards compatibility\n    get_buf = get_buffer\n\n    @raise_conversion_error\n    def pack_uint(self, x):\n        self.__buf.write(struct.pack('>L', x))\n\n    @raise_conversion_error\n    def pack_int(self, x):\n        self.__buf.write(struct.pack('>l', x))\n\n    pack_enum = pack_int\n\n    def pack_bool(self, x):\n        if x: self.__buf.write(b'\\0\\0\\0\\1')\n        else: self.__buf.write(b'\\0\\0\\0\\0')\n\n    def pack_uhyper(self, x):\n        try:\n            self.pack_uint(x>>32 & 0xffffffff)\n        except (TypeError, struct.error) as e:\n            raise ConversionError(e.args[0]) from None\n        try:\n            self.pack_uint(x & 0xffffffff)\n        except (TypeError, struct.error) as e:\n            raise ConversionError(e.args[0]) from None\n\n    pack_hyper = pack_uhyper\n\n    @raise_conversion_error\n    def pack_float(self, x):\n        self.__buf.write(struct.pack('>f', x))\n\n    @raise_conversion_error\n    def pack_double(self, x):\n        self.__buf.write(struct.pack('>d', x))\n\n    def pack_fstring(self, n, s):\n        if n < 0:\n            raise ValueError('fstring size must be nonnegative')\n        data = s[:n]\n        n = ((n+3)//4)*4\n        data = data + (n - len(data)) * b'\\0'\n        self.__buf.write(data)\n\n    pack_fopaque = pack_fstring\n\n    def pack_string(self, s):\n        n = len(s)\n        self.pack_uint(n)\n        self.pack_fstring(n, s)\n\n    pack_opaque = pack_string\n    pack_bytes = pack_string\n\n    def pack_list(self, list, pack_item):\n        for item in list:\n            self.pack_uint(1)\n            pack_item(item)\n        self.pack_uint(0)\n\n    def pack_farray(self, n, list, pack_item):\n        if len(list) != n:\n            raise ValueError('wrong array size')\n        for item in list:\n            pack_item(item)\n\n    def pack_array(self, list, pack_item):\n        n = len(list)\n        self.pack_uint(n)\n        self.pack_farray(n, list, pack_item)\n\n\n\nclass Unpacker:\n    \"\"\"Unpacks various data representations from the given buffer.\"\"\"\n\n    def __init__(self, data):\n        self.reset(data)\n\n    def reset(self, data):\n        self.__buf = data\n        self.__pos = 0\n\n    def get_position(self):\n        return self.__pos\n\n    def set_position(self, position):\n        self.__pos = position\n\n    def get_buffer(self):\n        return self.__buf\n\n    def done(self):\n        if self.__pos < len(self.__buf):\n            raise Error('unextracted data remains')\n\n    def unpack_uint(self):\n        i = self.__pos\n        self.__pos = j = i+4\n        data = self.__buf[i:j]\n        if len(data) < 4:\n            raise EOFError\n        return struct.unpack('>L', data)[0]\n\n    def unpack_int(self):\n        i = self.__pos\n        self.__pos = j = i+4\n        data = self.__buf[i:j]\n        if len(data) < 4:\n            raise EOFError\n        return struct.unpack('>l', data)[0]\n\n    unpack_enum = unpack_int\n\n    def unpack_bool(self):\n        return bool(self.unpack_int())\n\n    def unpack_uhyper(self):\n        hi = self.unpack_uint()\n        lo = self.unpack_uint()\n        return int(hi)<<32 | lo\n\n    def unpack_hyper(self):\n        x = self.unpack_uhyper()\n        if x >= 0x8000000000000000:\n            x = x - 0x10000000000000000\n        return x\n\n    def unpack_float(self):\n        i = self.__pos\n        self.__pos = j = i+4\n        data = self.__buf[i:j]\n        if len(data) < 4:\n            raise EOFError\n        return struct.unpack('>f', data)[0]\n\n    def unpack_double(self):\n        i = self.__pos\n        self.__pos = j = i+8\n        data = self.__buf[i:j]\n        if len(data) < 8:\n            raise EOFError\n        return struct.unpack('>d', data)[0]\n\n    def unpack_fstring(self, n):\n        if n < 0:\n            raise ValueError('fstring size must be nonnegative')\n        i = self.__pos\n        j = i + (n+3)//4*4\n        if j > len(self.__buf):\n            raise EOFError\n        self.__pos = j\n        return self.__buf[i:i+n]\n\n    unpack_fopaque = unpack_fstring\n\n    def unpack_string(self):\n        n = self.unpack_uint()\n        return self.unpack_fstring(n)\n\n    unpack_opaque = unpack_string\n    unpack_bytes = unpack_string\n\n    def unpack_list(self, unpack_item):\n        list = []\n        while 1:\n            x = self.unpack_uint()\n            if x == 0: break\n            if x != 1:\n                raise ConversionError('0 or 1 expected, got %r' % (x,))\n            item = unpack_item()\n            list.append(item)\n        return list\n\n    def unpack_farray(self, n, unpack_item):\n        list = []\n        for i in range(n):\n            list.append(unpack_item())\n        return list\n\n    def unpack_array(self, unpack_item):\n        n = self.unpack_uint()\n        return self.unpack_farray(n, unpack_item)\n"
  },
  {
    "path": "rd/usr/lib/python3.8/zipapp.py",
    "content": "import contextlib\nimport os\nimport pathlib\nimport shutil\nimport stat\nimport sys\nimport zipfile\n\n__all__ = ['ZipAppError', 'create_archive', 'get_interpreter']\n\n\n# The __main__.py used if the users specifies \"-m module:fn\".\n# Note that this will always be written as UTF-8 (module and\n# function names can be non-ASCII in Python 3).\n# We add a coding cookie even though UTF-8 is the default in Python 3\n# because the resulting archive may be intended to be run under Python 2.\nMAIN_TEMPLATE = \"\"\"\\\n# -*- coding: utf-8 -*-\nimport {module}\n{module}.{fn}()\n\"\"\"\n\n\n# The Windows launcher defaults to UTF-8 when parsing shebang lines if the\n# file has no BOM. So use UTF-8 on Windows.\n# On Unix, use the filesystem encoding.\nif sys.platform.startswith('win'):\n    shebang_encoding = 'utf-8'\nelse:\n    shebang_encoding = sys.getfilesystemencoding()\n\n\nclass ZipAppError(ValueError):\n    pass\n\n\n@contextlib.contextmanager\ndef _maybe_open(archive, mode):\n    if isinstance(archive, (str, os.PathLike)):\n        with open(archive, mode) as f:\n            yield f\n    else:\n        yield archive\n\n\ndef _write_file_prefix(f, interpreter):\n    \"\"\"Write a shebang line.\"\"\"\n    if interpreter:\n        shebang = b'#!' + interpreter.encode(shebang_encoding) + b'\\n'\n        f.write(shebang)\n\n\ndef _copy_archive(archive, new_archive, interpreter=None):\n    \"\"\"Copy an application archive, modifying the shebang line.\"\"\"\n    with _maybe_open(archive, 'rb') as src:\n        # Skip the shebang line from the source.\n        # Read 2 bytes of the source and check if they are #!.\n        first_2 = src.read(2)\n        if first_2 == b'#!':\n            # Discard the initial 2 bytes and the rest of the shebang line.\n            first_2 = b''\n            src.readline()\n\n        with _maybe_open(new_archive, 'wb') as dst:\n            _write_file_prefix(dst, interpreter)\n            # If there was no shebang, \"first_2\" contains the first 2 bytes\n            # of the source file, so write them before copying the rest\n            # of the file.\n            dst.write(first_2)\n            shutil.copyfileobj(src, dst)\n\n    if interpreter and isinstance(new_archive, str):\n        os.chmod(new_archive, os.stat(new_archive).st_mode | stat.S_IEXEC)\n\n\ndef create_archive(source, target=None, interpreter=None, main=None,\n                   filter=None, compressed=False):\n    \"\"\"Create an application archive from SOURCE.\n\n    The SOURCE can be the name of a directory, or a filename or a file-like\n    object referring to an existing archive.\n\n    The content of SOURCE is packed into an application archive in TARGET,\n    which can be a filename or a file-like object.  If SOURCE is a directory,\n    TARGET can be omitted and will default to the name of SOURCE with .pyz\n    appended.\n\n    The created application archive will have a shebang line specifying\n    that it should run with INTERPRETER (there will be no shebang line if\n    INTERPRETER is None), and a __main__.py which runs MAIN (if MAIN is\n    not specified, an existing __main__.py will be used).  It is an error\n    to specify MAIN for anything other than a directory source with no\n    __main__.py, and it is an error to omit MAIN if the directory has no\n    __main__.py.\n    \"\"\"\n    # Are we copying an existing archive?\n    source_is_file = False\n    if hasattr(source, 'read') and hasattr(source, 'readline'):\n        source_is_file = True\n    else:\n        source = pathlib.Path(source)\n        if source.is_file():\n            source_is_file = True\n\n    if source_is_file:\n        _copy_archive(source, target, interpreter)\n        return\n\n    # We are creating a new archive from a directory.\n    if not source.exists():\n        raise ZipAppError(\"Source does not exist\")\n    has_main = (source / '__main__.py').is_file()\n    if main and has_main:\n        raise ZipAppError(\n            \"Cannot specify entry point if the source has __main__.py\")\n    if not (main or has_main):\n        raise ZipAppError(\"Archive has no entry point\")\n\n    main_py = None\n    if main:\n        # Check that main has the right format.\n        mod, sep, fn = main.partition(':')\n        mod_ok = all(part.isidentifier() for part in mod.split('.'))\n        fn_ok = all(part.isidentifier() for part in fn.split('.'))\n        if not (sep == ':' and mod_ok and fn_ok):\n            raise ZipAppError(\"Invalid entry point: \" + main)\n        main_py = MAIN_TEMPLATE.format(module=mod, fn=fn)\n\n    if target is None:\n        target = source.with_suffix('.pyz')\n    elif not hasattr(target, 'write'):\n        target = pathlib.Path(target)\n\n    with _maybe_open(target, 'wb') as fd:\n        _write_file_prefix(fd, interpreter)\n        compression = (zipfile.ZIP_DEFLATED if compressed else\n                       zipfile.ZIP_STORED)\n        with zipfile.ZipFile(fd, 'w', compression=compression) as z:\n            for child in source.rglob('*'):\n                arcname = child.relative_to(source)\n                if filter is None or filter(arcname):\n                    z.write(child, arcname.as_posix())\n            if main_py:\n                z.writestr('__main__.py', main_py.encode('utf-8'))\n\n    if interpreter and not hasattr(target, 'write'):\n        target.chmod(target.stat().st_mode | stat.S_IEXEC)\n\n\ndef get_interpreter(archive):\n    with _maybe_open(archive, 'rb') as f:\n        if f.read(2) == b'#!':\n            return f.readline().strip().decode(shebang_encoding)\n\n\ndef main(args=None):\n    \"\"\"Run the zipapp command line interface.\n\n    The ARGS parameter lets you specify the argument list directly.\n    Omitting ARGS (or setting it to None) works as for argparse, using\n    sys.argv[1:] as the argument list.\n    \"\"\"\n    import argparse\n\n    parser = argparse.ArgumentParser()\n    parser.add_argument('--output', '-o', default=None,\n            help=\"The name of the output archive. \"\n                 \"Required if SOURCE is an archive.\")\n    parser.add_argument('--python', '-p', default=None,\n            help=\"The name of the Python interpreter to use \"\n                 \"(default: no shebang line).\")\n    parser.add_argument('--main', '-m', default=None,\n            help=\"The main function of the application \"\n                 \"(default: use an existing __main__.py).\")\n    parser.add_argument('--compress', '-c', action='store_true',\n            help=\"Compress files with the deflate method. \"\n                 \"Files are stored uncompressed by default.\")\n    parser.add_argument('--info', default=False, action='store_true',\n            help=\"Display the interpreter from the archive.\")\n    parser.add_argument('source',\n            help=\"Source directory (or existing archive).\")\n\n    args = parser.parse_args(args)\n\n    # Handle `python -m zipapp archive.pyz --info`.\n    if args.info:\n        if not os.path.isfile(args.source):\n            raise SystemExit(\"Can only get info for an archive file\")\n        interpreter = get_interpreter(args.source)\n        print(\"Interpreter: {}\".format(interpreter or \"<none>\"))\n        sys.exit(0)\n\n    if os.path.isfile(args.source):\n        if args.output is None or (os.path.exists(args.output) and\n                                   os.path.samefile(args.source, args.output)):\n            raise SystemExit(\"In-place editing of archives is not supported\")\n        if args.main:\n            raise SystemExit(\"Cannot change the main function when copying\")\n\n    create_archive(args.source, args.output,\n                   interpreter=args.python, main=args.main,\n                   compressed=args.compress)\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "rd/usr/lib/python3.8/zipimport.py",
    "content": "\"\"\"zipimport provides support for importing Python modules from Zip archives.\n\nThis module exports three objects:\n- zipimporter: a class; its constructor takes a path to a Zip archive.\n- ZipImportError: exception raised by zipimporter objects. It's a\n  subclass of ImportError, so it can be caught as ImportError, too.\n- _zip_directory_cache: a dict, mapping archive paths to zip directory\n  info dicts, as used in zipimporter._files.\n\nIt is usually not needed to use the zipimport module explicitly; it is\nused by the builtin import mechanism for sys.path items that are paths\nto Zip archives.\n\"\"\"\n\n#from importlib import _bootstrap_external\n#from importlib import _bootstrap  # for _verbose_message\nimport _frozen_importlib_external as _bootstrap_external\nfrom _frozen_importlib_external import _unpack_uint16, _unpack_uint32\nimport _frozen_importlib as _bootstrap  # for _verbose_message\nimport _imp  # for check_hash_based_pycs\nimport _io  # for open\nimport marshal  # for loads\nimport sys  # for modules\nimport time  # for mktime\n\n__all__ = ['ZipImportError', 'zipimporter']\n\n\npath_sep = _bootstrap_external.path_sep\nalt_path_sep = _bootstrap_external.path_separators[1:]\n\n\nclass ZipImportError(ImportError):\n    pass\n\n# _read_directory() cache\n_zip_directory_cache = {}\n\n_module_type = type(sys)\n\nEND_CENTRAL_DIR_SIZE = 22\nSTRING_END_ARCHIVE = b'PK\\x05\\x06'\nMAX_COMMENT_LEN = (1 << 16) - 1\n\nclass zipimporter:\n    \"\"\"zipimporter(archivepath) -> zipimporter object\n\n    Create a new zipimporter instance. 'archivepath' must be a path to\n    a zipfile, or to a specific path inside a zipfile. For example, it can be\n    '/tmp/myimport.zip', or '/tmp/myimport.zip/mydirectory', if mydirectory is a\n    valid directory inside the archive.\n\n    'ZipImportError is raised if 'archivepath' doesn't point to a valid Zip\n    archive.\n\n    The 'archive' attribute of zipimporter objects contains the name of the\n    zipfile targeted.\n    \"\"\"\n\n    # Split the \"subdirectory\" from the Zip archive path, lookup a matching\n    # entry in sys.path_importer_cache, fetch the file directory from there\n    # if found, or else read it from the archive.\n    def __init__(self, path):\n        if not isinstance(path, str):\n            import os\n            path = os.fsdecode(path)\n        if not path:\n            raise ZipImportError('archive path is empty', path=path)\n        if alt_path_sep:\n            path = path.replace(alt_path_sep, path_sep)\n\n        prefix = []\n        while True:\n            try:\n                st = _bootstrap_external._path_stat(path)\n            except (OSError, ValueError):\n                # On Windows a ValueError is raised for too long paths.\n                # Back up one path element.\n                dirname, basename = _bootstrap_external._path_split(path)\n                if dirname == path:\n                    raise ZipImportError('not a Zip file', path=path)\n                path = dirname\n                prefix.append(basename)\n            else:\n                # it exists\n                if (st.st_mode & 0o170000) != 0o100000:  # stat.S_ISREG\n                    # it's a not file\n                    raise ZipImportError('not a Zip file', path=path)\n                break\n\n        try:\n            files = _zip_directory_cache[path]\n        except KeyError:\n            files = _read_directory(path)\n            _zip_directory_cache[path] = files\n        self._files = files\n        self.archive = path\n        # a prefix directory following the ZIP file path.\n        self.prefix = _bootstrap_external._path_join(*prefix[::-1])\n        if self.prefix:\n            self.prefix += path_sep\n\n\n    # Check whether we can satisfy the import of the module named by\n    # 'fullname', or whether it could be a portion of a namespace\n    # package. Return self if we can load it, a string containing the\n    # full path if it's a possible namespace portion, None if we\n    # can't load it.\n    def find_loader(self, fullname, path=None):\n        \"\"\"find_loader(fullname, path=None) -> self, str or None.\n\n        Search for a module specified by 'fullname'. 'fullname' must be the\n        fully qualified (dotted) module name. It returns the zipimporter\n        instance itself if the module was found, a string containing the\n        full path name if it's possibly a portion of a namespace package,\n        or None otherwise. The optional 'path' argument is ignored -- it's\n        there for compatibility with the importer protocol.\n        \"\"\"\n        mi = _get_module_info(self, fullname)\n        if mi is not None:\n            # This is a module or package.\n            return self, []\n\n        # Not a module or regular package. See if this is a directory, and\n        # therefore possibly a portion of a namespace package.\n\n        # We're only interested in the last path component of fullname\n        # earlier components are recorded in self.prefix.\n        modpath = _get_module_path(self, fullname)\n        if _is_dir(self, modpath):\n            # This is possibly a portion of a namespace\n            # package. Return the string representing its path,\n            # without a trailing separator.\n            return None, [f'{self.archive}{path_sep}{modpath}']\n\n        return None, []\n\n\n    # Check whether we can satisfy the import of the module named by\n    # 'fullname'. Return self if we can, None if we can't.\n    def find_module(self, fullname, path=None):\n        \"\"\"find_module(fullname, path=None) -> self or None.\n\n        Search for a module specified by 'fullname'. 'fullname' must be the\n        fully qualified (dotted) module name. It returns the zipimporter\n        instance itself if the module was found, or None if it wasn't.\n        The optional 'path' argument is ignored -- it's there for compatibility\n        with the importer protocol.\n        \"\"\"\n        return self.find_loader(fullname, path)[0]\n\n\n    def get_code(self, fullname):\n        \"\"\"get_code(fullname) -> code object.\n\n        Return the code object for the specified module. Raise ZipImportError\n        if the module couldn't be found.\n        \"\"\"\n        code, ispackage, modpath = _get_module_code(self, fullname)\n        return code\n\n\n    def get_data(self, pathname):\n        \"\"\"get_data(pathname) -> string with file data.\n\n        Return the data associated with 'pathname'. Raise OSError if\n        the file wasn't found.\n        \"\"\"\n        if alt_path_sep:\n            pathname = pathname.replace(alt_path_sep, path_sep)\n\n        key = pathname\n        if pathname.startswith(self.archive + path_sep):\n            key = pathname[len(self.archive + path_sep):]\n\n        try:\n            toc_entry = self._files[key]\n        except KeyError:\n            raise OSError(0, '', key)\n        return _get_data(self.archive, toc_entry)\n\n\n    # Return a string matching __file__ for the named module\n    def get_filename(self, fullname):\n        \"\"\"get_filename(fullname) -> filename string.\n\n        Return the filename for the specified module.\n        \"\"\"\n        # Deciding the filename requires working out where the code\n        # would come from if the module was actually loaded\n        code, ispackage, modpath = _get_module_code(self, fullname)\n        return modpath\n\n\n    def get_source(self, fullname):\n        \"\"\"get_source(fullname) -> source string.\n\n        Return the source code for the specified module. Raise ZipImportError\n        if the module couldn't be found, return None if the archive does\n        contain the module, but has no source for it.\n        \"\"\"\n        mi = _get_module_info(self, fullname)\n        if mi is None:\n            raise ZipImportError(f\"can't find module {fullname!r}\", name=fullname)\n\n        path = _get_module_path(self, fullname)\n        if mi:\n            fullpath = _bootstrap_external._path_join(path, '__init__.py')\n        else:\n            fullpath = f'{path}.py'\n\n        try:\n            toc_entry = self._files[fullpath]\n        except KeyError:\n            # we have the module, but no source\n            return None\n        return _get_data(self.archive, toc_entry).decode()\n\n\n    # Return a bool signifying whether the module is a package or not.\n    def is_package(self, fullname):\n        \"\"\"is_package(fullname) -> bool.\n\n        Return True if the module specified by fullname is a package.\n        Raise ZipImportError if the module couldn't be found.\n        \"\"\"\n        mi = _get_module_info(self, fullname)\n        if mi is None:\n            raise ZipImportError(f\"can't find module {fullname!r}\", name=fullname)\n        return mi\n\n\n    # Load and return the module named by 'fullname'.\n    def load_module(self, fullname):\n        \"\"\"load_module(fullname) -> module.\n\n        Load the module specified by 'fullname'. 'fullname' must be the\n        fully qualified (dotted) module name. It returns the imported\n        module, or raises ZipImportError if it wasn't found.\n        \"\"\"\n        code, ispackage, modpath = _get_module_code(self, fullname)\n        mod = sys.modules.get(fullname)\n        if mod is None or not isinstance(mod, _module_type):\n            mod = _module_type(fullname)\n            sys.modules[fullname] = mod\n        mod.__loader__ = self\n\n        try:\n            if ispackage:\n                # add __path__ to the module *before* the code gets\n                # executed\n                path = _get_module_path(self, fullname)\n                fullpath = _bootstrap_external._path_join(self.archive, path)\n                mod.__path__ = [fullpath]\n\n            if not hasattr(mod, '__builtins__'):\n                mod.__builtins__ = __builtins__\n            _bootstrap_external._fix_up_module(mod.__dict__, fullname, modpath)\n            exec(code, mod.__dict__)\n        except:\n            del sys.modules[fullname]\n            raise\n\n        try:\n            mod = sys.modules[fullname]\n        except KeyError:\n            raise ImportError(f'Loaded module {fullname!r} not found in sys.modules')\n        _bootstrap._verbose_message('import {} # loaded from Zip {}', fullname, modpath)\n        return mod\n\n\n    def get_resource_reader(self, fullname):\n        \"\"\"Return the ResourceReader for a package in a zip file.\n\n        If 'fullname' is a package within the zip file, return the\n        'ResourceReader' object for the package.  Otherwise return None.\n        \"\"\"\n        try:\n            if not self.is_package(fullname):\n                return None\n        except ZipImportError:\n            return None\n        if not _ZipImportResourceReader._registered:\n            from importlib.abc import ResourceReader\n            ResourceReader.register(_ZipImportResourceReader)\n            _ZipImportResourceReader._registered = True\n        return _ZipImportResourceReader(self, fullname)\n\n\n    def __repr__(self):\n        return f'<zipimporter object \"{self.archive}{path_sep}{self.prefix}\">'\n\n\n# _zip_searchorder defines how we search for a module in the Zip\n# archive: we first search for a package __init__, then for\n# non-package .pyc, and .py entries. The .pyc entries\n# are swapped by initzipimport() if we run in optimized mode. Also,\n# '/' is replaced by path_sep there.\n_zip_searchorder = (\n    (path_sep + '__init__.pyc', True, True),\n    (path_sep + '__init__.py', False, True),\n    ('.pyc', True, False),\n    ('.py', False, False),\n)\n\n# Given a module name, return the potential file path in the\n# archive (without extension).\ndef _get_module_path(self, fullname):\n    return self.prefix + fullname.rpartition('.')[2]\n\n# Does this path represent a directory?\ndef _is_dir(self, path):\n    # See if this is a \"directory\". If so, it's eligible to be part\n    # of a namespace package. We test by seeing if the name, with an\n    # appended path separator, exists.\n    dirpath = path + path_sep\n    # If dirpath is present in self._files, we have a directory.\n    return dirpath in self._files\n\n# Return some information about a module.\ndef _get_module_info(self, fullname):\n    path = _get_module_path(self, fullname)\n    for suffix, isbytecode, ispackage in _zip_searchorder:\n        fullpath = path + suffix\n        if fullpath in self._files:\n            return ispackage\n    return None\n\n\n# implementation\n\n# _read_directory(archive) -> files dict (new reference)\n#\n# Given a path to a Zip archive, build a dict, mapping file names\n# (local to the archive, using SEP as a separator) to toc entries.\n#\n# A toc_entry is a tuple:\n#\n# (__file__,        # value to use for __file__, available for all files,\n#                   # encoded to the filesystem encoding\n#  compress,        # compression kind; 0 for uncompressed\n#  data_size,       # size of compressed data on disk\n#  file_size,       # size of decompressed data\n#  file_offset,     # offset of file header from start of archive\n#  time,            # mod time of file (in dos format)\n#  date,            # mod data of file (in dos format)\n#  crc,             # crc checksum of the data\n# )\n#\n# Directories can be recognized by the trailing path_sep in the name,\n# data_size and file_offset are 0.\ndef _read_directory(archive):\n    try:\n        fp = _io.open_code(archive)\n    except OSError:\n        raise ZipImportError(f\"can't open Zip file: {archive!r}\", path=archive)\n\n    with fp:\n        try:\n            fp.seek(-END_CENTRAL_DIR_SIZE, 2)\n            header_position = fp.tell()\n            buffer = fp.read(END_CENTRAL_DIR_SIZE)\n        except OSError:\n            raise ZipImportError(f\"can't read Zip file: {archive!r}\", path=archive)\n        if len(buffer) != END_CENTRAL_DIR_SIZE:\n            raise ZipImportError(f\"can't read Zip file: {archive!r}\", path=archive)\n        if buffer[:4] != STRING_END_ARCHIVE:\n            # Bad: End of Central Dir signature\n            # Check if there's a comment.\n            try:\n                fp.seek(0, 2)\n                file_size = fp.tell()\n            except OSError:\n                raise ZipImportError(f\"can't read Zip file: {archive!r}\",\n                                     path=archive)\n            max_comment_start = max(file_size - MAX_COMMENT_LEN -\n                                    END_CENTRAL_DIR_SIZE, 0)\n            try:\n                fp.seek(max_comment_start)\n                data = fp.read()\n            except OSError:\n                raise ZipImportError(f\"can't read Zip file: {archive!r}\",\n                                     path=archive)\n            pos = data.rfind(STRING_END_ARCHIVE)\n            if pos < 0:\n                raise ZipImportError(f'not a Zip file: {archive!r}',\n                                     path=archive)\n            buffer = data[pos:pos+END_CENTRAL_DIR_SIZE]\n            if len(buffer) != END_CENTRAL_DIR_SIZE:\n                raise ZipImportError(f\"corrupt Zip file: {archive!r}\",\n                                     path=archive)\n            header_position = file_size - len(data) + pos\n\n        header_size = _unpack_uint32(buffer[12:16])\n        header_offset = _unpack_uint32(buffer[16:20])\n        if header_position < header_size:\n            raise ZipImportError(f'bad central directory size: {archive!r}', path=archive)\n        if header_position < header_offset:\n            raise ZipImportError(f'bad central directory offset: {archive!r}', path=archive)\n        header_position -= header_size\n        arc_offset = header_position - header_offset\n        if arc_offset < 0:\n            raise ZipImportError(f'bad central directory size or offset: {archive!r}', path=archive)\n\n        files = {}\n        # Start of Central Directory\n        count = 0\n        try:\n            fp.seek(header_position)\n        except OSError:\n            raise ZipImportError(f\"can't read Zip file: {archive!r}\", path=archive)\n        while True:\n            buffer = fp.read(46)\n            if len(buffer) < 4:\n                raise EOFError('EOF read where not expected')\n            # Start of file header\n            if buffer[:4] != b'PK\\x01\\x02':\n                break                                # Bad: Central Dir File Header\n            if len(buffer) != 46:\n                raise EOFError('EOF read where not expected')\n            flags = _unpack_uint16(buffer[8:10])\n            compress = _unpack_uint16(buffer[10:12])\n            time = _unpack_uint16(buffer[12:14])\n            date = _unpack_uint16(buffer[14:16])\n            crc = _unpack_uint32(buffer[16:20])\n            data_size = _unpack_uint32(buffer[20:24])\n            file_size = _unpack_uint32(buffer[24:28])\n            name_size = _unpack_uint16(buffer[28:30])\n            extra_size = _unpack_uint16(buffer[30:32])\n            comment_size = _unpack_uint16(buffer[32:34])\n            file_offset = _unpack_uint32(buffer[42:46])\n            header_size = name_size + extra_size + comment_size\n            if file_offset > header_offset:\n                raise ZipImportError(f'bad local header offset: {archive!r}', path=archive)\n            file_offset += arc_offset\n\n            try:\n                name = fp.read(name_size)\n            except OSError:\n                raise ZipImportError(f\"can't read Zip file: {archive!r}\", path=archive)\n            if len(name) != name_size:\n                raise ZipImportError(f\"can't read Zip file: {archive!r}\", path=archive)\n            # On Windows, calling fseek to skip over the fields we don't use is\n            # slower than reading the data because fseek flushes stdio's\n            # internal buffers.    See issue #8745.\n            try:\n                if len(fp.read(header_size - name_size)) != header_size - name_size:\n                    raise ZipImportError(f\"can't read Zip file: {archive!r}\", path=archive)\n            except OSError:\n                raise ZipImportError(f\"can't read Zip file: {archive!r}\", path=archive)\n\n            if flags & 0x800:\n                # UTF-8 file names extension\n                name = name.decode()\n            else:\n                # Historical ZIP filename encoding\n                try:\n                    name = name.decode('ascii')\n                except UnicodeDecodeError:\n                    name = name.decode('latin1').translate(cp437_table)\n\n            name = name.replace('/', path_sep)\n            path = _bootstrap_external._path_join(archive, name)\n            t = (path, compress, data_size, file_size, file_offset, time, date, crc)\n            files[name] = t\n            count += 1\n    _bootstrap._verbose_message('zipimport: found {} names in {!r}', count, archive)\n    return files\n\n# During bootstrap, we may need to load the encodings\n# package from a ZIP file. But the cp437 encoding is implemented\n# in Python in the encodings package.\n#\n# Break out of this dependency by using the translation table for\n# the cp437 encoding.\ncp437_table = (\n    # ASCII part, 8 rows x 16 chars\n    '\\x00\\x01\\x02\\x03\\x04\\x05\\x06\\x07\\x08\\t\\n\\x0b\\x0c\\r\\x0e\\x0f'\n    '\\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17\\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f'\n    ' !\"#$%&\\'()*+,-./'\n    '0123456789:;<=>?'\n    '@ABCDEFGHIJKLMNO'\n    'PQRSTUVWXYZ[\\\\]^_'\n    '`abcdefghijklmno'\n    'pqrstuvwxyz{|}~\\x7f'\n    # non-ASCII part, 16 rows x 8 chars\n    '\\xc7\\xfc\\xe9\\xe2\\xe4\\xe0\\xe5\\xe7'\n    '\\xea\\xeb\\xe8\\xef\\xee\\xec\\xc4\\xc5'\n    '\\xc9\\xe6\\xc6\\xf4\\xf6\\xf2\\xfb\\xf9'\n    '\\xff\\xd6\\xdc\\xa2\\xa3\\xa5\\u20a7\\u0192'\n    '\\xe1\\xed\\xf3\\xfa\\xf1\\xd1\\xaa\\xba'\n    '\\xbf\\u2310\\xac\\xbd\\xbc\\xa1\\xab\\xbb'\n    '\\u2591\\u2592\\u2593\\u2502\\u2524\\u2561\\u2562\\u2556'\n    '\\u2555\\u2563\\u2551\\u2557\\u255d\\u255c\\u255b\\u2510'\n    '\\u2514\\u2534\\u252c\\u251c\\u2500\\u253c\\u255e\\u255f'\n    '\\u255a\\u2554\\u2569\\u2566\\u2560\\u2550\\u256c\\u2567'\n    '\\u2568\\u2564\\u2565\\u2559\\u2558\\u2552\\u2553\\u256b'\n    '\\u256a\\u2518\\u250c\\u2588\\u2584\\u258c\\u2590\\u2580'\n    '\\u03b1\\xdf\\u0393\\u03c0\\u03a3\\u03c3\\xb5\\u03c4'\n    '\\u03a6\\u0398\\u03a9\\u03b4\\u221e\\u03c6\\u03b5\\u2229'\n    '\\u2261\\xb1\\u2265\\u2264\\u2320\\u2321\\xf7\\u2248'\n    '\\xb0\\u2219\\xb7\\u221a\\u207f\\xb2\\u25a0\\xa0'\n)\n\n_importing_zlib = False\n\n# Return the zlib.decompress function object, or NULL if zlib couldn't\n# be imported. The function is cached when found, so subsequent calls\n# don't import zlib again.\ndef _get_decompress_func():\n    global _importing_zlib\n    if _importing_zlib:\n        # Someone has a zlib.py[co] in their Zip file\n        # let's avoid a stack overflow.\n        _bootstrap._verbose_message('zipimport: zlib UNAVAILABLE')\n        raise ZipImportError(\"can't decompress data; zlib not available\")\n\n    _importing_zlib = True\n    try:\n        from zlib import decompress\n    except Exception:\n        _bootstrap._verbose_message('zipimport: zlib UNAVAILABLE')\n        raise ZipImportError(\"can't decompress data; zlib not available\")\n    finally:\n        _importing_zlib = False\n\n    _bootstrap._verbose_message('zipimport: zlib available')\n    return decompress\n\n# Given a path to a Zip file and a toc_entry, return the (uncompressed) data.\ndef _get_data(archive, toc_entry):\n    datapath, compress, data_size, file_size, file_offset, time, date, crc = toc_entry\n    if data_size < 0:\n        raise ZipImportError('negative data size')\n\n    with _io.open_code(archive) as fp:\n        # Check to make sure the local file header is correct\n        try:\n            fp.seek(file_offset)\n        except OSError:\n            raise ZipImportError(f\"can't read Zip file: {archive!r}\", path=archive)\n        buffer = fp.read(30)\n        if len(buffer) != 30:\n            raise EOFError('EOF read where not expected')\n\n        if buffer[:4] != b'PK\\x03\\x04':\n            # Bad: Local File Header\n            raise ZipImportError(f'bad local file header: {archive!r}', path=archive)\n\n        name_size = _unpack_uint16(buffer[26:28])\n        extra_size = _unpack_uint16(buffer[28:30])\n        header_size = 30 + name_size + extra_size\n        file_offset += header_size  # Start of file data\n        try:\n            fp.seek(file_offset)\n        except OSError:\n            raise ZipImportError(f\"can't read Zip file: {archive!r}\", path=archive)\n        raw_data = fp.read(data_size)\n        if len(raw_data) != data_size:\n            raise OSError(\"zipimport: can't read data\")\n\n    if compress == 0:\n        # data is not compressed\n        return raw_data\n\n    # Decompress with zlib\n    try:\n        decompress = _get_decompress_func()\n    except Exception:\n        raise ZipImportError(\"can't decompress data; zlib not available\")\n    return decompress(raw_data, -15)\n\n\n# Lenient date/time comparison function. The precision of the mtime\n# in the archive is lower than the mtime stored in a .pyc: we\n# must allow a difference of at most one second.\ndef _eq_mtime(t1, t2):\n    # dostime only stores even seconds, so be lenient\n    return abs(t1 - t2) <= 1\n\n\n# Given the contents of a .py[co] file, unmarshal the data\n# and return the code object. Return None if it the magic word doesn't\n# match, or if the recorded .py[co] metadata does not match the source,\n# (we do this instead of raising an exception as we fall back\n# to .py if available and we don't want to mask other errors).\ndef _unmarshal_code(self, pathname, fullpath, fullname, data):\n    exc_details = {\n        'name': fullname,\n        'path': fullpath,\n    }\n\n    try:\n        flags = _bootstrap_external._classify_pyc(data, fullname, exc_details)\n    except ImportError:\n        return None\n\n    hash_based = flags & 0b1 != 0\n    if hash_based:\n        check_source = flags & 0b10 != 0\n        if (_imp.check_hash_based_pycs != 'never' and\n                (check_source or _imp.check_hash_based_pycs == 'always')):\n            source_bytes = _get_pyc_source(self, fullpath)\n            if source_bytes is not None:\n                source_hash = _imp.source_hash(\n                    _bootstrap_external._RAW_MAGIC_NUMBER,\n                    source_bytes,\n                )\n\n                try:\n                    _bootstrap_external._validate_hash_pyc(\n                        data, source_hash, fullname, exc_details)\n                except ImportError:\n                    return None\n    else:\n        source_mtime, source_size = \\\n            _get_mtime_and_size_of_source(self, fullpath)\n\n        if source_mtime:\n            # We don't use _bootstrap_external._validate_timestamp_pyc\n            # to allow for a more lenient timestamp check.\n            if (not _eq_mtime(_unpack_uint32(data[8:12]), source_mtime) or\n                    _unpack_uint32(data[12:16]) != source_size):\n                _bootstrap._verbose_message(\n                    f'bytecode is stale for {fullname!r}')\n                return None\n\n    code = marshal.loads(data[16:])\n    if not isinstance(code, _code_type):\n        raise TypeError(f'compiled module {pathname!r} is not a code object')\n    return code\n\n_code_type = type(_unmarshal_code.__code__)\n\n\n# Replace any occurrences of '\\r\\n?' in the input string with '\\n'.\n# This converts DOS and Mac line endings to Unix line endings.\ndef _normalize_line_endings(source):\n    source = source.replace(b'\\r\\n', b'\\n')\n    source = source.replace(b'\\r', b'\\n')\n    return source\n\n# Given a string buffer containing Python source code, compile it\n# and return a code object.\ndef _compile_source(pathname, source):\n    source = _normalize_line_endings(source)\n    return compile(source, pathname, 'exec', dont_inherit=True)\n\n# Convert the date/time values found in the Zip archive to a value\n# that's compatible with the time stamp stored in .pyc files.\ndef _parse_dostime(d, t):\n    return time.mktime((\n        (d >> 9) + 1980,    # bits 9..15: year\n        (d >> 5) & 0xF,     # bits 5..8: month\n        d & 0x1F,           # bits 0..4: day\n        t >> 11,            # bits 11..15: hours\n        (t >> 5) & 0x3F,    # bits 8..10: minutes\n        (t & 0x1F) * 2,     # bits 0..7: seconds / 2\n        -1, -1, -1))\n\n# Given a path to a .pyc file in the archive, return the\n# modification time of the matching .py file and its size,\n# or (0, 0) if no source is available.\ndef _get_mtime_and_size_of_source(self, path):\n    try:\n        # strip 'c' or 'o' from *.py[co]\n        assert path[-1:] in ('c', 'o')\n        path = path[:-1]\n        toc_entry = self._files[path]\n        # fetch the time stamp of the .py file for comparison\n        # with an embedded pyc time stamp\n        time = toc_entry[5]\n        date = toc_entry[6]\n        uncompressed_size = toc_entry[3]\n        return _parse_dostime(date, time), uncompressed_size\n    except (KeyError, IndexError, TypeError):\n        return 0, 0\n\n\n# Given a path to a .pyc file in the archive, return the\n# contents of the matching .py file, or None if no source\n# is available.\ndef _get_pyc_source(self, path):\n    # strip 'c' or 'o' from *.py[co]\n    assert path[-1:] in ('c', 'o')\n    path = path[:-1]\n\n    try:\n        toc_entry = self._files[path]\n    except KeyError:\n        return None\n    else:\n        return _get_data(self.archive, toc_entry)\n\n\n# Get the code object associated with the module specified by\n# 'fullname'.\ndef _get_module_code(self, fullname):\n    path = _get_module_path(self, fullname)\n    for suffix, isbytecode, ispackage in _zip_searchorder:\n        fullpath = path + suffix\n        _bootstrap._verbose_message('trying {}{}{}', self.archive, path_sep, fullpath, verbosity=2)\n        try:\n            toc_entry = self._files[fullpath]\n        except KeyError:\n            pass\n        else:\n            modpath = toc_entry[0]\n            data = _get_data(self.archive, toc_entry)\n            if isbytecode:\n                code = _unmarshal_code(self, modpath, fullpath, fullname, data)\n            else:\n                code = _compile_source(modpath, data)\n            if code is None:\n                # bad magic number or non-matching mtime\n                # in byte code, try next\n                continue\n            modpath = toc_entry[0]\n            return code, ispackage, modpath\n    else:\n        raise ZipImportError(f\"can't find module {fullname!r}\", name=fullname)\n\n\nclass _ZipImportResourceReader:\n    \"\"\"Private class used to support ZipImport.get_resource_reader().\n\n    This class is allowed to reference all the innards and private parts of\n    the zipimporter.\n    \"\"\"\n    _registered = False\n\n    def __init__(self, zipimporter, fullname):\n        self.zipimporter = zipimporter\n        self.fullname = fullname\n\n    def open_resource(self, resource):\n        fullname_as_path = self.fullname.replace('.', '/')\n        path = f'{fullname_as_path}/{resource}'\n        from io import BytesIO\n        try:\n            return BytesIO(self.zipimporter.get_data(path))\n        except OSError:\n            raise FileNotFoundError(path)\n\n    def resource_path(self, resource):\n        # All resources are in the zip file, so there is no path to the file.\n        # Raising FileNotFoundError tells the higher level API to extract the\n        # binary data and create a temporary file.\n        raise FileNotFoundError\n\n    def is_resource(self, name):\n        # Maybe we could do better, but if we can get the data, it's a\n        # resource.  Otherwise it isn't.\n        fullname_as_path = self.fullname.replace('.', '/')\n        path = f'{fullname_as_path}/{name}'\n        try:\n            self.zipimporter.get_data(path)\n        except OSError:\n            return False\n        return True\n\n    def contents(self):\n        # This is a bit convoluted, because fullname will be a module path,\n        # but _files is a list of file names relative to the top of the\n        # archive's namespace.  We want to compare file paths to find all the\n        # names of things inside the module represented by fullname.  So we\n        # turn the module path of fullname into a file path relative to the\n        # top of the archive, and then we iterate through _files looking for\n        # names inside that \"directory\".\n        from pathlib import Path\n        fullname_path = Path(self.zipimporter.get_filename(self.fullname))\n        relative_path = fullname_path.relative_to(self.zipimporter.archive)\n        # Don't forget that fullname names a package, so its path will include\n        # __init__.py, which we want to ignore.\n        assert relative_path.name == '__init__.py'\n        package_path = relative_path.parent\n        subdirs_seen = set()\n        for filename in self.zipimporter._files:\n            try:\n                relative = Path(filename).relative_to(package_path)\n            except ValueError:\n                continue\n            # If the path of the file (which is relative to the top of the zip\n            # namespace), relative to the package given when the resource\n            # reader was created, has a parent, then it's a name in a\n            # subdirectory and thus we skip it.\n            parent_name = relative.parent.name\n            if len(parent_name) == 0:\n                yield relative.name\n            elif parent_name not in subdirs_seen:\n                subdirs_seen.add(parent_name)\n                yield parent_name\n"
  },
  {
    "path": "rd/usr/share/applications/htop.desktop",
    "content": "[Desktop Entry]\nVersion=1.0\nName=Htop\nType=Application\nComment=Show System Processes\nComment[ca]=Mostra els processos del sistema\nComment[de]=Systemprozesse anzeigen\nComment[en_GB]=Show System Processes\nComment[es]=Mostrar procesos del sistema\nComment[fi]=Katsele järjestelmän prosesseja\nComment[fr]=Affiche les processus système\nComment[gl]=Mostrar os procesos do sistema.\nComment[it]=Mostra processi di sistema\nComment[ko]=시스템 프로세스 보기\nComment[nb]=Vis systemprosesser\nComment[nl]=Systeemprocessen tonen\nComment[nn]=Vis systemprosessar\nComment[pl]=Pokaż procesy systemowe\nComment[pt]=Mostrar os Processos do Sistema\nComment[pt_BR]=Mostra os processos do sistema\nComment[ru]=Просмотр списка процессов в системе\nComment[sk]=Zobraziť systémové procesy\nComment[sl]=Prikaz sistemskih opravil\nComment[sr]=Приказ системских процеса\nComment[sr@ijekavian]=Приказ системских процеса\nComment[sr@ijekavianlatin]=Prikaz sistemskih procesa\nComment[sr@latin]=Prikaz sistemskih procesa\nComment[sv]=Visa systemprocesser\nComment[tr]=Sistem Süreçlerini Göster\nComment[uk]=Перегляд системних процесів\nComment[zh_CN]=显示系统进程\nComment[zh_TW]=顯示系統行程\nTerminal=true\nExec=htop\nIcon=htop\nCategories=ConsoleOnly;System;\nGenericName=Process Viewer\nGenericName[ca]=Visor de processos\nGenericName[de]=Prozessanzeige\nGenericName[en_GB]=Process Viewer\nGenericName[es]=Visor de procesos\nGenericName[fi]=Prosessikatselin\nGenericName[fr]=Visualiseur de processus\nGenericName[gl]=Visor de procesos\nGenericName[it]=Visore dei processi\nGenericName[ko]=프로세스 뷰어\nGenericName[nb]=Prosessviser\nGenericName[nl]=Viewer van processen\nGenericName[nn]=Prosessvisar\nGenericName[pl]=Przeglądarka procesów\nGenericName[pt]=Visualizador de Processos\nGenericName[pt_BR]=Visualizador de processos\nGenericName[ru]=Монитор процессов\nGenericName[sk]=Prehliadač procesov\nGenericName[sl]=Pregledovalnik opravil\nGenericName[sr]=Приказивач процеса\nGenericName[sr@ijekavian]=Приказивач процеса\nGenericName[sr@ijekavianlatin]=Prikazivač procesa\nGenericName[sr@latin]=Prikazivač procesa\nGenericName[sv]=Processvisning\nGenericName[tr]=Süreç Görüntüleyici\nGenericName[uk]=Перегляд процесів\nGenericName[zh_CN]=进程查看器\nGenericName[zh_TW]=行程檢視器\nKeywords=system;process;task\n"
  },
  {
    "path": "rd/usr/share/udhcpc/default.script",
    "content": "#!/bin/sh\n\n# script for udhcpc\n# Copyright (c) 2008 Natanael Copa <natanael.copa@gmail.com>\n\nUDHCPC=\"/etc/udhcpc\"\nUDHCPC_CONF=\"$UDHCPC/udhcpc.conf\"\n\nRESOLV_CONF=\"/etc/resolv.conf\"\n[ -f $UDHCPC_CONF ] && . $UDHCPC_CONF\n\nexport broadcast\nexport dns\nexport domain\nexport interface\nexport ip\nexport mask\nexport metric\nexport router\nexport subnet\n\nexport PATH=/usr/bin:/bin:/usr/sbin:/sbin\n\nrun_scripts() {\n\tlocal dir=$1\n\tif [ -d $dir ]; then\n\t\tfor i in $dir/*; do\n\t\t\t[ -f $i ] && $i\n\t\tdone\n\tfi\n}\n\ndeconfig() {\n\tip -4 addr flush dev $interface\n}\n\nis_wifi() {\n\ttest -e /sys/class/net/$interface/phy80211\n}\n\nif_index() {\n\tif [ -e  /sys/class/net/$interface/ifindex ]; then\n\t\tcat /sys/class/net/$interface/ifindex\n\telse\n\t\tip -4 link show dev $interface | head -n1 | cut -d: -f1\n\tfi\n}\n\ncalc_metric() {\n\tlocal base=\n\tif is_wifi; then\n\t\tbase=300\n\telse\n\t\tbase=200\n\tfi\n\techo $(( $base + $(if_index) ))\n}\n\nroutes() {\n\t[ -z \"$router\" ] && return\n\tfor i in $NO_GATEWAY; do\n\t\t[ \"$i\" = \"$interface\" ] && return\n\tdone\n\tlocal gw= num=\n\twhile ip -4 route del default via dev $interface 2>/dev/null; do\n\t\t:\n\tdone\n\tnum=0\n\tfor gw in $router; do\n\t\tif [ \"$subnet\" = \"255.255.255.255\" ]; then\n\t\t# special case for /32 subnets:\n\t\t# /32 instructs kernel to always use routing for all outgoing packets\n\t\t# (they can never be sent to local subnet - there is no local subnet for /32).\n\t\t# Used in datacenters, avoids the need for private ip-addresses between two hops.\n\t\t\tip -4 route add $gw dev $interface\n\t\tfi\n\t\tip -4 route add 0.0.0.0/0 via $gw dev $interface \\\n\t\t\tmetric $(( $num + ${IF_METRIC:-$(calc_metric)} ))\n\t\tnum=$(( $num + 1 ))\n\tdone\n}\n\nresolvconf() {\n\tlocal i\n\t[ -n \"$IF_PEER_DNS\" ] && [ \"$IF_PEER_DNS\" != \"yes\" ] && return\n\tif [ \"$RESOLV_CONF\" = \"no\" ] || [ \"$RESOLV_CONF\" = \"NO\" ] \\\n\t\t\t|| [ -z \"$RESOLV_CONF\" ]; then\n\t\treturn\n\tfi\n\tfor i in $NO_DNS; do\n\t\t[ \"$i\" = \"$interface\" ] && return\n\tdone\n\techo -n > \"$RESOLV_CONF.$$\"\n\tif [ -n \"$search\" ]; then\n\t\techo \"search $search\" >> \"$RESOLV_CONF.$$\"\n\telif [ -n \"$domain\" ]; then\n\t\techo \"search $domain\" >> \"$RESOLV_CONF.$$\"\n\tfi\n\tfor i in $dns; do\n\t\techo \"nameserver $i\" >> \"$RESOLV_CONF.$$\"\n\tdone\n\tchmod a+r \"$RESOLV_CONF.$$\"\n\tmv \"$RESOLV_CONF.$$\" \"$RESOLV_CONF\"\n}\n\nbound() {\n\tip -4 addr add $ip/$mask ${broadcast:+broadcast $broadcast} dev $interface\n\tip -4 link set dev $interface up\n\troutes\n\tresolvconf\n}\n\nrenew() {\n\tif ! ip -4 addr show dev $interface | grep $ip/$mask; then\n\t\tip -4 addr flush dev $interface\n\t\tip -4 addr add $ip/$mask ${broadcast:+broadcast $broadcast} dev $interface\n\tfi\n\n\tlocal i\n\tfor i in $router; do\n\t\tif ! ip -4 route show | grep ^default | grep $i; then\n\t\t\troutes\n\t\t\tbreak\n\t\tfi\n\tdone\n\n\tif ! grep \"^search $domain\"; then\n\t\tresolvconf\n\t\treturn\n\tfi\n\tfor i in $dns; do\n\t\tif ! grep \"^nameserver $i\"; then\n\t\t\tresolvconf\n\t\t\treturn\n\t\tfi\n\tdone\n}\n\ncase \"$1\" in\n\tdeconfig|renew|bound)\n\t\trun_scripts $UDHCPC/pre-$1\n\t\t$1\n\t\trun_scripts $UDHCPC/post-$1\n\t\t;;\n\tleasefail)\n\t\techo \"udhcpc failed to get a DHCP lease\" >&2\n\t\t;;\n\tnak)\n\t\techo \"udhcpc received DHCP NAK\" >&2\n\t\t;;\n\t*)\n\t\techo \"Error: this script should be called from udhcpc\" >&2\n\t\texit 1\n\t\t;;\nesac\nexit 0\n\n"
  },
  {
    "path": "reboot_with_cmd.c",
    "content": "#include <sys/syscall.h>\n#include <sys/reboot.h>\n#include <unistd.h>\n#include <linux/reboot.h>\n\nint main(int argc, char **argv) {\n    syscall(__NR_reboot, LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, argv[1]);\n    return 0;\n}\n"
  },
  {
    "path": "results/README.md",
    "content": "# Results\n\nThese are reference freqbench results that have been collected from various devices and SoCs. They are meant to enable analysis of power and performance trends across many different SoCs without needing to have all of them on hand.\n\n## Index\n\n<!-- When adding new SoCs, sort new entries alphanumerically by SoC name, *grouped by vendor*, and set the accuracy to \"Unknown\". For example, all Snapdragon SoCs should be sorted by marketing name within the Snapdragon group. -->\n\n| Name       | SoC model | SoC name        | Device                  | Accuracy |\n| ---------- | --------- | --------------- | ----------------------- | -------- |\n| t8103      | T8103     | Apple M1        | MacBook Air (Late 2020) | Unknown  |\n| mt6853t    | MT6853T   | Dimensity 800U  | Xiaomi Redmi Note 9T    | Unknown  |\n| mt6768     | MT6769V/CB| Helio G70       | Realme C3               | Unknown  |\n| exynos5250 | E5250     | Exynos 5250     | Google Nexus 10         | Low      |\n| exynos7904 | E7904     | Exynos 7904     | Samsung Galaxy M20      | Unknown  |\n| exynos7880 | E7880     | Exynos 7880     | Samsung Galaxy A5 (2017)| Low      |\n| exynos9611 | E9610     | Exynos 9611     | Samsung Galaxy M21      | Unknown  |\n| msm8917    | MSM8917   | Snapdragon 425  | Xiaomi Redmi 5A         | Unknown  |\n| msm8940    | MSM8940   | Snapdragon 435  | Xiaomi Redmi 4X         | Unknown  |\n| msm8953    | MSM8953   | Snapdragon 625  | Xiaomi Redmi Note 4X    | Unknown  |\n| sdm632     | SDM632    | Snapdragon 632  | Motorola Moto E (2020)  | Unknown  |\n| sdm439     | SDM439    | Snapdragon 439  | Xiaomi Redmi 8          | Unknown  |\n| sdm439     | SDM439    | Snapdragon 439  | Xiaomi Redmi 8A         | Unknown  |\n| sdm630     | SDM630    | Snapdragon 630  | Sony Xperia 8           | Unknown  |\n| sdm636     | SDM636    | Snapdragon 636  | Xiaomi Redmi Note 5/Pro | Unknown  |\n| sdm660     | SDM660    | Snapdragon 660  | Xiaomi Redmi Note 7     | Unknown  |\n| sm6115     | SM6115    | Snapdragon 662  | Xiaomi Poco M3          | Unknown  |\n| sm6125     | SM6125    | Snapdragon 665  | Xiaomi Mi A3            | Unknown  |\n| sdm670     | SDM670    | Snapdragon 670  | Google Pixel 3a         | Unknown  |\n| sm6150     | SM6150    | Snapdragon 675  | Xiaomi Redmi Note 7 Pro | Unknown  |\n| sm6150ac   | SM6150-AC | Snapdragon 678  | Xiaomi Redmi Note 10    | Unknown  |\n| sdm712     | SDM712    | Snapdragon 712  | Xiaomi Mi 9 SE          | Unknown  |\n| sdm712     | SDM712    | Snapdragon 712  | Realme 5 Pro            | Unknown  |\n| sdm712     | SDM712    | Snapdragon 712  | Realme XT               | Unknown  |\n| sm7125     | SM7125    | Snapdragon 720G | Xiaomi Redmi Note 9S    | Unknown  |\n| sm7150     | SM7150-AA | Snapdragon 730  | Xiaomi Mi 9T            | Unknown  |\n| sm7150ab   | SM7150-AB | Snapdragon 730G | Motorola One Fusion+    | Unknown  |\n| sm7150ac   | SM7150-AC | Snapdragon 732G | Xiaomi Poco X3          | Unknown  |\n| sm7150ab   | SM7150-AB | Snapdragon 730G | Google Pixel 4a         | Verified |\n| sm7225     | SM7225    | Snapdragon 750G | Xiaomi Mi 10i           | Unknown  |\n| sm7250ab   | SM7250-AB | Snapdragon 765G | Google Pixel 5          | Verified |\n| msm8998    | MSM8998   | Snapdragon 835  | Google Pixel 2 XL       | Verified |\n| sdm845     | SDM845    | Snapdragon 845  | Xiaomi Mi Mix 2S        | Unknown  |\n| sm8150     | SM8150-AA | Snapdragon 855  | Asus ZenFone 6          | Verified |\n| sm8150ac   | SM8150-AC | Snapdragon 855+ | Asus ROG Phone II       | Verified |\n| sm8250     | SM8250    | Snapdragon 865  | Xiaomi Mi 10T Pro       | Unknown  |\n| sm8250ac   | SM8250-AC | Snapdragon 870  | Poco F3                 | Unknown  |\n| sm8350     | SM8350    | Snapdragon 888  | qti Lahaina for arm64   | Unknown  |\n| sm8350     | SM8350    | Snapdragon 888  | Xiaomi Mi 11            | Unknown  |\n| gs101      | GS101     | Tensor G1       | Google Pixel 6          | Verified |\n| gs201      | GS201     | Tensor G2       | Google Pixel 7 Pro      | Verified |\n| zuma       | ZUMA      | Tensor G3       | Google Pixel 8 Pro      | Verified |\n| zumapro    | ZUMAPRO   | Tensor G4       | Google Pixel 9 Pro      | Verified |\n"
  },
  {
    "path": "results/exynos5250/main/cmdline.txt",
    "content": "vmalloc=512M debug_core.break_on_panic=0 debug_core.break_on_exception=0 no_console_suspend s3c2410-wdt.tmr_atboot=1 s3c2410-wdt.tmr_margin=30 wire.search_count=5  bootmode=2  s3cfb.bootloaderfb=0x60000000 androidboot.bootloader=MANTAMF01 androidboot.serialno=REDACTED androidboot.wifimacaddr=REDACTED androidboot.btmacaddr=REDACTED\n"
  },
  {
    "path": "results/exynos5250/main/cpuinfo.txt",
    "content": "Processor\t: ARMv7 Processor rev 4 (v7l)\nprocessor\t: 0\nBogoMIPS\t: 997.78\n\nFeatures\t: swp half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt \nCPU implementer\t: 0x41\nCPU architecture: 7\nCPU variant\t: 0x0\nCPU part\t: 0xc0f\nCPU revision\t: 4\n\nHardware\t: Manta\nRevision\t: 0008\nSerial\t\t: REDACTED\n"
  },
  {
    "path": "results/exynos5250/main/device.txt",
    "content": "Model: \nCompatible: \n"
  },
  {
    "path": "results/exynos5250/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0\n[    0.000000] Initializing cgroup subsys cpu\n[    0.000000] Linux version 3.4.67-cyanogenmod-ge66cf86-dirty (dees_troy@ded1.ktechnology.net) (gcc version 4.6.x-google 20120106 (prerelease) (GCC) ) #1 SMP PREEMPT Tue Nov 18 16:01:32 UTC 2014\n[    0.000000] CPU: ARMv7 Processor [410fc0f4] revision 4 (ARMv7), cr=10c5387d\n[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache\n[    0.000000] Machine: Manta\n[    0.000000] Initialized persistent memory from a0000000-a01fffff\n[    0.000000] ion_reserve: ion_chunk_heap reserved base 90000000 size 268435456\n[    0.000000] Memory policy: ECC disabled, Data cache writealloc\n[    0.000000] CPU EXYNOS5250 (id 0x43520210)\n[    0.000000] exynos5_init_clocks: initializing clocks\n[    0.000000] S3C24XX Clocks, Copyright 2004 Simtec Electronics\n[    0.000000] clkout: bad source 0\n[    0.000000] exynos5_setup_clocks: registering clocks\n[    0.000000] exynos5_setup_clocks: xtal is 24000000\n[    0.000000] EXYNOS5: PLL settings, A=1000000000, B=1333090909, C=333000000\n[    0.000000] M=1600000000, E=96000000, V=300000000, G=533000000\n[    0.000000] EXYNOS5: ARMCLK=1000000000, CDREX=800000000, ACLK400=533000000\n[    0.000000] ACLK333=333000000, ACLK266=266666666, ACLK200=200000000\n[    0.000000] ACLK166=166500000, ACLK66=66666666\n[    0.000000] sclk_fimd: source is ext_xtal (0), rate is 24000000\n[    0.000000] sclk_g3d: source is mout_mpll_user (0), rate is 800000000\n[    0.000000] sclk_gscl_wrap0: source is ext_xtal (0), rate is 24000000\n[    0.000000] sclk_gscl_wrap1: source is ext_xtal (0), rate is 24000000\n[    0.000000] sclk_bayer: source is ext_xtal (0), rate is 24000000\n[    0.000000] sclk_cam0: source is ext_xtal (0), rate is 24000000\n[    0.000000] sclk_cam1: source is ext_xtal (0), rate is 24000000\n[    0.000000] sclk_jpeg: source is ext_xtal (0), rate is 24000000\n[    0.000000] sclk_usbdrd30: source is mout_mpll (0), rate is 66666666\n[    0.000000] On node 0 totalpages: 524032\n[    0.000000] free_area_init_node: node 0, pgdat c098b140, node_mem_map c0b61000\n[    0.000000]   Normal zone: 992 pages used for memmap\n[    0.000000]   Normal zone: 0 pages reserved\n[    0.000000]   Normal zone: 125984 pages, LIFO batch:31\n[    0.000000]   HighMem zone: 3102 pages used for memmap\n[    0.000000]   HighMem zone: 393954 pages, LIFO batch:31\n[    0.000000] PERCPU: Embedded 6 pages/cpu @c1b6e000 s12224 r0 d12352 u32768\n[    0.000000] pcpu-alloc: s12224 r0 d12352 u32768 alloc=8*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 \n[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 519938\n[    0.000000] Kernel command line: vmalloc=512M debug_core.break_on_panic=0 debug_core.break_on_exception=0 no_console_suspend s3c2410-wdt.tmr_atboot=1 s3c2410-wdt.tmr_margin=30 wire.search_count=5  bootmode=2  s3cfb.bootloaderfb=0x60000000 androidboot.bootloader=MANTAMF01 androidboot.serialno=REDACTED androidboot.wifimacaddr=REDACTED androidboot.btmacaddr=REDACTED\n[    0.000000] PID hash table entries: 2048 (order: 1, 8192 bytes)\n[    0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)\n[    0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)\n[    0.000000] allocated 4192256 bytes of page_cgroup\n[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups\n[    0.000000] Memory: 2047MB = 2047MB total\n[    0.000000] Memory: 1118768k/1118768k available, 977360k reserved, 648576K highmem\n[    0.000000] Virtual kernel memory layout:\n[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)\n[    0.000000]     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)\n[    0.000000]     vmalloc : 0xdf800000 - 0xff000000   ( 504 MB)\n[    0.000000]     lowmem  : 0xc0000000 - 0xdf000000   ( 496 MB)\n[    0.000000]     pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)\n[    0.000000]       .text : 0xc0008000 - 0xc08c2000   (8936 kB)\n[    0.000000]       .init : 0xc08c2000 - 0xc0902fc0   ( 260 kB)\n[    0.000000]       .data : 0xc0904000 - 0xc09a00a0   ( 625 kB)\n[    0.000000]        .bss : 0xc09a00c4 - 0xc0b60cd0   (1796 kB)\n[    0.000000] SLUB: Genslabs=11, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] NR_IRQS:597\n[    0.000000] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 178956ms\n[    0.000050] Calibrating delay loop... 997.78 BogoMIPS (lpj=2494464)\n[    0.030031] pid_max: default: 32768 minimum: 301\n[    0.030165] Security Framework initialized\n[    0.030189] SELinux:  Disabled at boot.\n[    0.030317] Mount-cache hash table entries: 512\n[    0.031041] Initializing cgroup subsys debug\n[    0.031053] Initializing cgroup subsys cpuacct\n[    0.031062] Initializing cgroup subsys memory\n[    0.031098] Initializing cgroup subsys freezer\n[    0.031135] CPU: Testing write buffer coherency: ok\n[    0.031256] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000\n[    0.031287] hw perfevents: enabled with ARMv7 Cortex-A15 PMU driver, 7 counters available\n[    0.031330] Setting up static identity map for 0x406cc1d0 - 0x406cc228\n[    0.095765] CPU1: Booted secondary processor\n[    0.121275] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001\n[    0.121314] CPU1: Unknown IPI message 0x1\n[    0.121437] Brought up 2 CPUs\n[    0.121449] SMP: Total of 2 processors activated (1995.57 BogoMIPS).\n[    0.132653] gpiochip_add: registered GPIOs 0 to 7 on device: GPA0\n[    0.132665] gpiochip_add: registered GPIOs 9 to 14 on device: GPA1\n[    0.132676] gpiochip_add: registered GPIOs 16 to 23 on device: GPA2\n[    0.132687] gpiochip_add: registered GPIOs 25 to 29 on device: GPB0\n[    0.132697] gpiochip_add: registered GPIOs 31 to 35 on device: GPB1\n[    0.132707] gpiochip_add: registered GPIOs 37 to 40 on device: GPB2\n[    0.132716] gpiochip_add: registered GPIOs 42 to 45 on device: GPB3\n[    0.132726] gpiochip_add: registered GPIOs 47 to 53 on device: GPC0\n[    0.132735] gpiochip_add: registered GPIOs 55 to 58 on device: GPC1\n[    0.132745] gpiochip_add: registered GPIOs 60 to 66 on device: GPC2\n[    0.132754] gpiochip_add: registered GPIOs 68 to 74 on device: GPC3\n[    0.132764] gpiochip_add: registered GPIOs 76 to 79 on device: GPD0\n[    0.132773] gpiochip_add: registered GPIOs 81 to 88 on device: GPD1\n[    0.132783] gpiochip_add: registered GPIOs 90 to 95 on device: GPY0\n[    0.132792] gpiochip_add: registered GPIOs 97 to 100 on device: GPY1\n[    0.132802] gpiochip_add: registered GPIOs 102 to 107 on device: GPY2\n[    0.132811] gpiochip_add: registered GPIOs 109 to 116 on device: GPY3\n[    0.132821] gpiochip_add: registered GPIOs 118 to 125 on device: GPY4\n[    0.132831] gpiochip_add: registered GPIOs 127 to 134 on device: GPY5\n[    0.132840] gpiochip_add: registered GPIOs 136 to 143 on device: GPY6\n[    0.132850] gpiochip_add: registered GPIOs 145 to 151 on device: GPC4\n[    0.132859] gpiochip_add: registered GPIOs 153 to 160 on device: GPX0\n[    0.132869] gpiochip_add: registered GPIOs 162 to 169 on device: GPX1\n[    0.132878] gpiochip_add: registered GPIOs 171 to 178 on device: GPX2\n[    0.132887] gpiochip_add: registered GPIOs 180 to 187 on device: GPX3\n[    0.132907] gpiochip_add: registered GPIOs 189 to 196 on device: GPE0\n[    0.132918] gpiochip_add: registered GPIOs 198 to 199 on device: GPE1\n[    0.132927] gpiochip_add: registered GPIOs 201 to 204 on device: GPF0\n[    0.132936] gpiochip_add: registered GPIOs 206 to 209 on device: GPF1\n[    0.132946] gpiochip_add: registered GPIOs 211 to 218 on device: GPG0\n[    0.132955] gpiochip_add: registered GPIOs 220 to 227 on device: GPG1\n[    0.132965] gpiochip_add: registered GPIOs 229 to 230 on device: GPG2\n[    0.132974] gpiochip_add: registered GPIOs 232 to 235 on device: GPH0\n[    0.132983] gpiochip_add: registered GPIOs 237 to 244 on device: GPH1\n[    0.132997] gpiochip_add: registered GPIOs 246 to 253 on device: GPV0\n[    0.133007] gpiochip_add: registered GPIOs 255 to 262 on device: GPV1\n[    0.133016] gpiochip_add: registered GPIOs 264 to 271 on device: GPV2\n[    0.133026] gpiochip_add: registered GPIOs 273 to 280 on device: GPV3\n[    0.133035] gpiochip_add: registered GPIOs 282 to 283 on device: GPV4\n[    0.133047] gpio: GPZ has no PM function\n[    0.133055] gpiochip_add: registered GPIOs 285 to 291 on device: GPZ\n[    0.133253] dummy: \n[    0.133471] NET: Registered protocol family 16\n[    0.133786] Registered FIQ tty driver\n[    0.133821] Last reset was software reset (RST_STAT=0x20000000)\n[    0.135995] Manta HW revision: 8, CPU EXYNOS5250 Rev1.0\n[    0.139488] console [ttyFIQ2] enabled\n[    0.139578] Registered fiq debugger ttyFIQ2\n[    0.139868] persistent_ram: error in header, 2\n[    0.139880] persistent_ram: found existing buffer, size 36101, start 36101\n[    0.231776] console [ram-1] enabled\n[    0.233432] bootloader fb located at 60000000-60F9FFFF\n[    0.233553] Registered chained gpio int handler for interrupt 77.\n[    0.233640] Registered interrupt support for gpio group 19.\n[    0.235737] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.\n[    0.235858] hw-breakpoint: maximum watchpoint size is 8 bytes.\n[    0.236046] S3C Power Management, Copyright 2004 Simtec Electronics\n[    0.236397] EXYNOS5250 PMU Initialize\n[    0.237266] EXYNOS: Initializing architecture\n[    0.237668] s3c24xx-pwm s3c24xx-pwm.0: tin at 33333333, tdiv at 33333333, tin=divclk, base 0\n[    0.237850] s3c24xx-pwm s3c24xx-pwm.1: tin at 16666666, tdiv at 16666666, tin=divclk, base 8\n[    0.245043] bio: create slab <bio-0> at 0\n[    0.245421] MXT_BOOSTER: \n[    0.245646] MXT_XVDD: \n[    0.245715] MXT_XVDD: supplied by MXT_BOOSTER\n[    0.245934] VBATT: 3700 mV \n[    0.642388] ion_chunk_heap_create: base 2415919104 size 268435456 align 1048576\n[    0.642938] SCSI subsystem initialized\n[    0.643712] usbcore: registered new interface driver usbfs\n[    0.643871] usbcore: registered new interface driver hub\n[    0.644014] usbcore: registered new device driver usb\n[    0.644312] wake enabled for irq 439\n[    0.644424] wake enabled for irq 432\n[    0.644533] wake enabled for irq 433\n[    0.644648] GPIO Input Driver: Start gpio inputs for manta-keypad... in interrupt mode\n[    0.644773] wake enabled for irq 427\n[    0.644886] GPIO Input Driver: Start gpio inputs for manta-keypad... in interrupt mode\n[    0.645078] input: manta-keypad as /devices/virtual/input/input0\n[    0.645301] input: manta-switch as /devices/virtual/input/input1\n[    0.645828] s3c-i2c s3c2440-i2c.0: i2c-0: S3C I2C adapter\n[    0.645944] s3c-i2c s3c2440-i2c.0: slave address 0x10\n[    0.646009] s3c-i2c s3c2440-i2c.0: bus frequency set to 65 KHz\n[    0.646441] s3c-i2c s3c2440-i2c.1: i2c-1: S3C I2C adapter\n[    0.646510] s3c-i2c s3c2440-i2c.1: slave address 0x10\n[    0.646623] s3c-i2c s3c2440-i2c.1: bus frequency set to 378 KHz\n[    0.646970] s3c-i2c s3c2440-i2c.2: i2c-2: S3C I2C adapter\n[    0.647085] s3c-i2c s3c2440-i2c.2: slave address 0x10\n[    0.647150] s3c-i2c s3c2440-i2c.2: bus frequency set to 378 KHz\n[    0.647442] s3c-i2c s3c2440-i2c.3: i2c-3: S3C I2C adapter\n[    0.647509] s3c-i2c s3c2440-i2c.3: slave address 0x10\n[    0.647621] s3c-i2c s3c2440-i2c.3: bus frequency set to 378 KHz\n[    0.647917] s3c-i2c s3c2440-i2c.4: i2c-4: S3C I2C adapter\n[    0.648031] s3c-i2c s3c2440-i2c.4: slave address 0x10\n[    0.648094] s3c-i2c s3c2440-i2c.4: bus frequency set to 378 KHz\n[    0.648537] max77686 5-0009: device found\n[    0.655382] max77686_pmic_probe: Device ID=0x09, (version:1, chip_rev:1)\n[    0.655643] max77686-pmic max77686-pmic: Power on triggered by PWRON=High\n[    0.655710] max77686-pmic max77686-pmic: Power on triggered by Manual Reset Event\n[    0.658928] vdd_mif range: 850 <--> 1200 mV at 987 mV \n[    0.659664] vdd_arm range: 850 <--> 1500 mV at 1075 mV \n[    0.660442] vdd_int range: 850 <--> 1300 mV at 1037 mV \n[    0.661183] vdd_g3d range: 850 <--> 1250 mV at 1200 mV \n[    0.662221] VCC_1.8V_AP: 1800 mV \n[    0.663196] VMIPI_1.0V: 1000 mV \n[    0.663933] TOUCH_VDD_1.8V: 1800 mV \n[    0.664955] VMIPI_1.8V: 1800 mV \n[    0.665914] VUOTG_3.0V: 3000 mV \n[    0.666878] VHSIC_1.0V: 1000 mV \n[    0.667848] VHSIC_1.8V: 1800 mV \n[    0.668603] 5M_CORE_1.5V: 1500 mV \n[    0.669315] CAM_IO_1.8V: 1800 mV \n[    0.670020] VT_CAM_1.8V: 1800 mV \n[    0.670780] TA_CHECK_1.35V: 1350 mV \n[    0.671495] TSP_AVDD_2.8V: 2800 mV \n[    0.672210] CAM_AF_2.8V: 2800 mV \n[    0.673175] VADC_3.3V: 3300 mV \n[    0.673758] 32KHZ_PMIC: \n[    0.673964] s3c-i2c s3c2440-i2c.5: i2c-5: S3C I2C adapter\n[    0.674031] s3c-i2c s3c2440-i2c.5: slave address 0x10\n[    0.674144] s3c-i2c s3c2440-i2c.5: bus frequency set to 378 KHz\n[    0.674406] s3c-i2c s3c2440-i2c.7: i2c-7: S3C I2C adapter\n[    0.674521] s3c-i2c s3c2440-i2c.7: slave address 0x10\n[    0.674585] s3c-i2c s3c2440-i2c.7: bus frequency set to 378 KHz\n[    0.674830] s3c-i2c s3c2440-i2c.8: i2c-8: S3C I2C adapter\n[    0.674896] s3c-i2c s3c2440-i2c.8: slave address 0x10\n[    0.675007] s3c-i2c s3c2440-i2c.8: bus frequency set to 378 KHz\n[    0.675128] Linux media interface: v0.10\n[    0.675276] Linux video capture interface: v2.00\n[    0.676713] Advanced Linux Sound Architecture Driver Version 1.0.25.\n[    0.677201] Bluetooth: Core ver 2.16\n[    0.677297] NET: Registered protocol family 31\n[    0.677361] Bluetooth: HCI device and connection manager initialized\n[    0.677475] Bluetooth: HCI socket layer initialized\n[    0.677538] Bluetooth: L2CAP socket layer initialized\n[    0.677666] Bluetooth: SCO socket layer initialized\n[    0.678006] cfg80211: Calling CRDA to update world regulatory domain\n[    0.678354] wake enabled for irq 421\n[    0.678483] wake enabled for irq 422\n[    0.678852] Switching to clocksource mct-frc\n[    0.694558] NET: Registered protocol family 2\n[    0.694797] IP route cache hash table entries: 16384 (order: 4, 65536 bytes)\n[    0.695269] TCP established hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.696315] TCP bind hash table entries: 65536 (order: 7, 786432 bytes)\n[    0.697487] TCP: Hash tables configured (established 65536 bind 65536)\n[    0.697600] TCP: reno registered\n[    0.697666] UDP hash table entries: 256 (order: 1, 8192 bytes)\n[    0.697744] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)\n[    0.698034] NET: Registered protocol family 1\n[    0.698274] Trying to unpack rootfs image as initramfs...\n[    0.948344] Freeing initrd memory: 5016K\n[    0.949232] Exynos5 : ARM Clock down on idle mode is enabled\n[    0.949385] EXYNOS5250 ASV(ARM : 8 MIF : 3) using fused group\n[    0.949760] [BT] bcm_bt_lpm_init\n[    0.950007] wake enabled for irq 438\n[    0.950443] exynos_tmu exynos_tmu: Current auto refresh interval(3875 nsec), Normal auto refresh interval(3875 nsec), memory throttle auto refresh internal(1937 nsec)\n[    0.951594] exynos_tmu exynos_tmu: Tmu Initialization is sucessful...!\n[    0.951816] s3c-adc samsung-adc-v4: operating without regulator \"vdd\" .\n[    0.951942] s3c-adc samsung-adc-v4: attached adc driver\n[    0.952457] audit: initializing netlink socket (disabled)\n[    0.952552] type=2000 audit(0.940:1): initialized\n[    0.953451] highmem bounce pool size: 64 pages\n[    0.959436] NTFS driver 2.1.30 [Flags: R/O].\n[    0.959633] fuse init (API version 7.18)\n[    0.960131] msgmni has been set to 928\n[    0.961444] io scheduler noop registered\n[    0.961512] io scheduler deadline registered\n[    0.961637] io scheduler row registered\n[    0.961820] io scheduler cfq registered (default)\n[    1.164438] dma-pl330 dma-pl330.0: Loaded driver for PL330 DMAC-267056\n[    1.164559] dma-pl330 dma-pl330.0: \tDBUFF-32x4bytes Num_Chans-8 Num_Peri-32 Num_Events-32\n[    1.166762] dma-pl330 dma-pl330.1: Loaded driver for PL330 DMAC-267056\n[    1.166832] dma-pl330 dma-pl330.1: \tDBUFF-32x4bytes Num_Chans-8 Num_Peri-32 Num_Events-32\n[    1.167579] dma-pl330 dma-pl330.2: Loaded driver for PL330 DMAC-267056\n[    1.167695] dma-pl330 dma-pl330.2: \tDBUFF-64x8bytes Num_Chans-8 Num_Peri-1 Num_Events-32\n[    1.167865] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled\n[    1.168561] exynos4210-uart.0: ttySAC0 at MMIO 0x12c00000 (irq = 83) is a S3C6400/10\n[    1.168798] exynos4210-uart.1: ttySAC1 at MMIO 0x12c10000 (irq = 84) is a S3C6400/10\n[    1.168985] exynos4210-uart.3: ttySAC3 at MMIO 0x12c30000 (irq = 86) is a S3C6400/10\n[    1.170349] mali mali.0: GPU identified as 0x6956 r0p0 status 1\n[    1.301237] mali mali.0: Probed as mali0\n[    1.301457] mali mali.0: start latency exceeded, new value 875 ns\n[    1.302333] mali mali.0: state restore latency exceeded, new value 804791 ns\n[    1.302452] mali mali.0: stop latency exceeded, new value 958 ns\n[    1.302570] mali mali.0: start latency exceeded, new value 916 ns\n[    1.307520] brd: module loaded\n[    1.310034] loop: module loaded\n[    1.310905] WM1811 LDO1: \n[    1.311387] WM1811 LDO2: \n[    1.315825] wm8994 7-001a: WM1811 revision D CUST_ID 00\n[    1.319815] bcm2079x-spi spi2.0: bcmspinfc_probe, probing bcmspinfc driver\n[    1.319954] bcm2079x-spi spi2.0: requesting IRQ 430\n[    1.320122] bcm2079x-spi spi2.0: bcmspinfc_probe, probing bcmspinfc driver exited successfully\n[    1.320344] tun: Universal TUN/TAP device driver, 1.6\n[    1.320457] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    1.320582] PPP generic driver version 2.4.2\n[    1.320790] PPP BSD Compression module registered\n[    1.320855] PPP Deflate Compression module registered\n[    1.321230] PPP MPPE Compression module registered\n[    1.321299] NET: Registered protocol family 24\n[    1.321401] usbcore: registered new interface driver asix\n[    1.321542] usbcore: registered new interface driver cdc_ether\n[    1.321652] usbcore: registered new interface driver net1080\n[    1.321795] usbcore: registered new interface driver cdc_subset\n[    1.321891] usbcore: registered new interface driver zaurus\n[    1.322049] usbcore: registered new interface driver cdc_ncm\n[    1.322221] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    1.322595] s5p-ehci s5p-ehci: S5P EHCI Host Controller\n[    1.322770] s5p-ehci s5p-ehci: new USB bus registered, assigned bus number 1\n[    1.322933] s5p-ehci s5p-ehci: irq 103, io mem 0x12110000\n[    1.329030] s5p-ehci s5p-ehci: USB 0.0 started, EHCI 1.00\n[    1.329171] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002\n[    1.329286] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1\n[    1.329351] usb usb1: Product: S5P EHCI Host Controller\n[    1.329464] usb usb1: Manufacturer: Linux 3.4.67-cyanogenmod-ge66cf86-dirty ehci_hcd\n[    1.329530] usb usb1: SerialNumber: s5p-ehci\n[    1.329902] hub 1-0:1.0: USB hub found\n[    1.329978] hub 1-0:1.0: 3 ports detected\n[    1.330257] s5p-ehci s5p-ehci: remove, state 1\n[    1.330377] usb usb1: USB disconnect, device number 1\n[    1.331115] s5p-ehci s5p-ehci: USB bus 1 deregistered\n[    1.331425] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    1.331694] exynos-ohci exynos-ohci: EXYNOS OHCI Host Controller\n[    1.331909] exynos-ohci exynos-ohci: new USB bus registered, assigned bus number 1\n[    1.332052] exynos-ohci exynos-ohci: irq 103, io mem 0x12120000\n[    1.388113] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001\n[    1.388229] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1\n[    1.388295] usb usb1: Product: EXYNOS OHCI Host Controller\n[    1.388407] usb usb1: Manufacturer: Linux 3.4.67-cyanogenmod-ge66cf86-dirty ohci_hcd\n[    1.388472] usb usb1: SerialNumber: exynos-ohci\n[    1.388828] hub 1-0:1.0: USB hub found\n[    1.388903] hub 1-0:1.0: 3 ports detected\n[    1.389236] exynos-ohci exynos-ohci: remove, state 1\n[    1.389309] usb usb1: USB disconnect, device number 1\n[    1.389768] exynos-ohci exynos-ohci: USB bus 1 deregistered\n[    1.390084] usbcore: registered new interface driver usblp\n[    1.390150] Initializing USB Mass Storage driver...\n[    1.390287] usbcore: registered new interface driver usb-storage\n[    1.390352] USB Mass Storage support registered.\n[    1.390490] usbcore: registered new interface driver libusual\n[    1.390621] usbcore: registered new interface driver usbserial\n[    1.390734] usbserial: USB Serial Driver core\n[    1.391042] s3c-hsotg : S3C HS USB OTG Device Driver,(c) 2008-2009 Samsung Electronics\n[    1.391049] s3c-hsotg : version 15 March 2009\n[    1.391355] file system registered\n[    1.392292]  gadget: Mass Storage Function, version: 2009/09/11\n[    1.392361]  gadget: Number of LUNs=1\n[    1.392426]  lun0: LUN: removable file: (no medium)\n[    1.392717]  gadget: android_usb ready\n[    1.392782] bound driver 'android_usb'\n[    1.392959] mousedev: PS/2 mouse device common for all mice\n[    1.393261] usbcore: registered new interface driver xpad\n[    1.393353] usbcore: registered new interface driver usb_acecad\n[    1.393495] usbcore: registered new interface driver aiptek\n[    1.393583] usbcore: registered new interface driver gtco\n[    1.393719] usbcore: registered new interface driver hanwang\n[    1.393807] usbcore: registered new interface driver kbtab\n[    1.393941] usbcore: registered new interface driver wacom\n[    1.394411] input: Atmel maXTouch Touchscreen as /devices/platform/s3c2440-i2c.3/i2c-3/3-004a/input/input2\n[    1.404199] mali mali.0: state save latency exceeded, new value 8333 ns\n[    1.404607] pd-g3d: Power-off latency exceeded, new value 284917 ns\n[    1.504604] max77686-rtc max77686-rtc: max77686_rtc_enable_wtsr_smpl: WTSR: enable, SMPL: enable\n[    1.604513] max77686-rtc max77686-rtc: rtc core: registered max77686-rtc as rtc0\n[    1.605103] i2c /dev entries driver\n[    1.605707] gspca_main: v2.14.0 registered\n[    1.605922] exynos-mdev.0: Media0[0xde13f400] was registered successfully\n[    1.606062] exynos-mdev.1: Media1[0xde13f800] was registered successfully\n[    1.606256] exynos-mdev.2: Media2[0xde13fc00] was registered successfully\n[    1.606827] [INFO]gsc_probe:1450: gsc-0 registered successfully\n[    1.607325] [INFO]gsc_probe:1450: gsc-1 registered successfully\n[    1.607766] [INFO]gsc_probe:1450: gsc-2 registered successfully\n[    1.608246] [INFO]gsc_probe:1450: gsc-3 registered successfully\n[    1.608360] Initialize JPEG driver\n[    1.608634] s5p-jpeg s5p-jpeg: JPEG driver is registered to /dev/video12\n[    1.608780] s5p-jpeg s5p-jpeg: JPEG driver is registered to /dev/video11\n[    1.609225] Samsung Graphics 2D driver, (c) 2011 Samsung Electronics\n[    1.609332] EXYNOS MFC V4L2 Driver, (c) 2010 Samsung Electronics\n[    1.609498] s5p_mfc_probe++\n[    1.609509] s5p-mfc s5p-mfc: Initialised spin lock\n[    1.609518] s5p-mfc s5p-mfc: Getting clocks\n[    1.609753] s5p-mfc s5p-mfc: decoder registered as /dev/video6\n[    1.609935] s5p-mfc s5p-mfc: encoder registered as /dev/video7\n[    1.610299] s5p_mfc_probe--\n[    1.610427] i2c i2c-0: attached exynos hdcp into i2c adapter successfully\n[    1.610577] i2c-core: driver [exynos_hdcp] using legacy suspend method\n[    1.610644] i2c-core: driver [exynos_hdcp] using legacy resume method\n[    1.610767] Samsung HDMI output driver, (c) 2010-2011 Samsung Electronics Co., Ltd.\n[    1.610967] s5p-hdmi exynos5-hdmi: hdmiphy i2c bus number = 8\n[    1.611153] s5p-hdmiphy 8-0038: hdmiphy_probe start\n[    1.611218] s5p-hdmiphy 8-0038: probe successful\n[    1.636834] s5p-hdmi exynos5-hdmi: probe sucessful\n[    1.637000] i2c i2c-0: probed exynos edid\n[    1.637156] Samsung TV Mixer driver, (c) 2010-2011 Samsung Electronics Co., Ltd.\n[    1.637259] s5p-mixer s5p-mixer: probe start\n[    1.637528] s5p-mixer s5p-mixer: resources acquired\n[    1.637612] s5p-mixer s5p-mixer: added output 'S5P HDMI connector' from module 's5p-hdmi'\n[    1.637823] s5p-mixer s5p-mixer: registered layer mxr0_graph0 as /dev/video16\n[    1.637965] s5p-mixer s5p-mixer: registered layer mxr0_graph1 as /dev/video17\n[    1.638153] s5p-mixer s5p-mixer: registered layer mxr1_graph2 as /dev/video18\n[    1.638342] s5p-mixer s5p-mixer: registered layer mxr1_graph3 as /dev/video19\n[    1.638409] s5p-mixer s5p-mixer: mixer0 create links\n[    1.638530] s5p-mixer s5p-mixer: mixer1 create links\n[    1.638603] s5p-mixer s5p-mixer: mixer links are created successfully\n[    1.638728] s5p-mixer s5p-mixer: probe successful\n[    1.639833] fimc_is_spi successfully probed\n[    1.639970] Driver for 1-wire Dallas network protocol.\n[    1.712595] wake enabled for irq 420\n[    1.712966] s3c2410_wdt: S3C2410 Watchdog Timer, (c) 2004 Simtec Electronics\n[    1.713239] s3c2410-wdt s3c2410-wdt: starting watchdog timer\n[    1.713312] s3c2410-wdt s3c2410-wdt: watchdog active, reset enabled, irq disabled\n[    1.713827] device-mapper: uevent: version 1.0.3\n[    1.714100] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com\n[    1.714321] Bluetooth: HCI UART driver ver 2.2\n[    1.714433] Bluetooth: HCI H4 protocol initialized\n[    1.714601] cpuidle: using governor ladder\n[    1.714801] cpuidle: using governor menu\n[    1.714938] sdhci: Secure Digital Host Controller Interface driver\n[    1.715001] sdhci: Copyright(c) Pierre Ossman\n[    1.715193] Synopsys Designware Multimedia Card Interface Driver\n[    1.715356] dw_mmc dw_mmc.0: Using internal DMA controller.\n[    1.715813] mmc0: no vmmc regulator found\n[    1.717287] dw_mmc dw_mmc.0: Version ID is 241a\n[    1.717361] dw_mmc dw_mmc.0: DW MMC controller at irq 107, 32 bit host data width, 128 deep fifo\n[    1.717569] dw_mmc dw_mmc.1: Using internal DMA controller.\n[    1.717955] mmc1: no vmmc regulator found\n[    1.719238] dw_mmc dw_mmc.1: Version ID is 241a\n[    1.719305] dw_mmc dw_mmc.1: DW MMC controller at irq 108, 32 bit host data width, 128 deep fifo\n[    1.719419] dw_mmc dw_mmc.1: Internal DMAC interrupt fix enabled.\n[    1.724452] Registered led device: as3668\n[    1.728772] usbcore: registered new interface driver usbhid\n[    1.728895] usbhid: USB HID core driver\n[    1.744029] mmc_host mmc0: device is being hw reset\n[    1.904058] mmc_host mmc0: Bus speed (slot 0) = 50000000Hz (slot req 400000Hz, actual 396825HZ div = 63)\n[    1.959359] mmc_host mmc0: Bus speed (slot 0) = 200000000Hz (slot req 200000000Hz, actual 200000000HZ div = 0)\n[    1.959522] dw_mmc dw_mmc.0: cmd21 data error:-84 pending:184 status:a906 tcb:80 tbb:0\n[    1.960015] mmc0: new HS200 MMC card at address 0001\n[    1.960520] mmcblk0: mmc0:0001 MAG2GA 14.6 GiB \n[    1.960790] mmcblk0boot0: mmc0:0001 MAG2GA partition 1 4.00 MiB\n[    1.961105] mmcblk0boot1: mmc0:0001 MAG2GA partition 2 4.00 MiB\n[    1.964876]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9\n[    1.966683]  mmcblk0boot1: unknown partition table\n[    1.967409]  mmcblk0boot0: unknown partition table\n[    2.092015] i2c i2c-1: MPU6050 is ready to go!\n[    2.092289] bh1721fvc_i2c_probe: registering lightsensor-level input device\n[    2.094062] zram: Created 1 device(s) ...\n[    2.094553] ashmem: initialized\n[    2.094677] logger: created 256K log 'log_main'\n[    2.094843] logger: created 256K log 'log_events'\n[    2.094964] logger: created 256K log 'log_radio'\n[    2.095081] logger: created 256K log 'log_system'\n[    2.095350] Mobicore API module initialized!\n[    2.095997] usbcore: registered new interface driver snd-usb-audio\n[    2.097285] samsung-i2s samsung-i2s.0: start latency exceeded, new value 917 ns\n[    2.097357] samsung-i2s samsung-i2s.0: state restore latency exceeded, new value 1084 ns\n[    2.097474] samsung-i2s samsung-i2s.0: stop latency exceeded, new value 917 ns\n[    2.097685] samsung-i2s samsung-i2s.0: state save latency exceeded, new value 1000 ns\n[    2.097961] pd-maudio: Power-off latency exceeded, new value 156125 ns\n[    2.105504] pd-maudio: Power-on latency exceeded, new value 152458 ns\n[    2.105628] samsung-i2s samsung-i2s.0: state restore latency exceeded, new value 1125 ns\n[    2.108924] asoc: wm8994-aif1 <-> samsung-i2s.0 mapping ok\n[    2.109343] asoc: wm8994-aif1 <-> samsung-i2s.4 mapping ok\n[    2.109661] asoc: wm8994-aif2 <-> manta-voice mapping ok\n[    2.110023] asoc: wm8994-aif3 <-> manta-bt mapping ok\n[    2.135022] input: Manta-I2S Headset as /devices/platform/manta-i2s/sound/card0/input3\n[    2.136317] asoc: dit-hifi <-> samsung-spdif mapping ok\n[    2.136841] GACT probability NOT on\n[    2.136960] Mirror/redirect action on\n[    2.137025] u32 classifier\n[    2.137087]     Actions configured\n[    2.137200] Netfilter messages via NETLINK v0.30.\n[    2.137302] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    2.137812] ctnetlink v0.93: registering with nfnetlink.\n[    2.137908] NF_TPROXY: Transparent proxy support initialized, version 4.1.0\n[    2.138021] NF_TPROXY: Copyright (c) 2006-2007 BalaBit IT Ltd.\n[    2.138315] xt_time: kernel timezone is -0000\n[    2.138752] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    2.139022] arp_tables: (C) 2002 David S. Miller\n[    2.139126] TCP: cubic registered\n[    2.139237] Initializing XFRM netlink socket\n[    2.139721] NET: Registered protocol family 10\n[    2.140457] Mobile IPv6\n[    2.140595] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    2.140781] IPv6 over IPv4 tunneling driver\n[    2.141696] NET: Registered protocol family 17\n[    2.141783] NET: Registered protocol family 15\n[    2.141998] Bluetooth: RFCOMM TTY layer initialized\n[    2.142125] Bluetooth: RFCOMM socket layer initialized\n[    2.142188] Bluetooth: RFCOMM ver 1.11\n[    2.142251] Bluetooth: BNEP (Ethernet Emulation) ver 1.3\n[    2.142364] Bluetooth: HIDP (Human Interface Emulation) ver 1.2\n[    2.142491] NET: Registered protocol family 35\n[    2.142935] VFP support v0.3: implementor 41 architecture 4 part 30 variant f rev 0\n[    2.143122] Registering SWP/SWPB emulation handler\n[    2.143248] pd-gscl3: Power-off latency exceeded, new value 1041 ns\n[    2.143396] pd-isp: Power-off latency exceeded, new value 175000 ns\n[    2.143481] pd-gscl2: Power-off latency exceeded, new value 875 ns\n[    2.143612] pd-gscl1: Power-off latency exceeded, new value 708 ns\n[    2.143695] pd-gscl0: Power-off latency exceeded, new value 708 ns\n[    2.143874] pd-dp: Power-off latency exceeded, new value 833 ns\n[    2.143977] pd-gscl: Power-off latency exceeded, new value 163208 ns\n[    2.144140] pd-mixer: Power-off latency exceeded, new value 833 ns\n[    2.144223] pd-hdmi: Power-off latency exceeded, new value 834 ns\n[    2.144353] pd-fimd1: Power-off latency exceeded, new value 833 ns\n[    2.144583] pd-disp1: Power-off latency exceeded, new value 159958 ns\n[    2.144728] pd-mfc: Power-off latency exceeded, new value 238542 ns\n[    2.145184] wake enabled for irq 424\n[    2.145404] wake enabled for irq 426\n[    2.363776] battery: charge source type was changed: usb\n[    2.369305] pd-disp1: Power-on latency exceeded, new value 189290 ns\n[    2.369375] pd-fimd1: Power-on latency exceeded, new value 958 ns\n[    2.369494] s3c-fb exynos5-fb.1: start latency exceeded, new value 916 ns\n[    2.369571] s3c-fb exynos5-fb.1: state restore latency exceeded, new value 10500 ns\n[    2.369688] s3c-fb exynos5-fb.1: stop latency exceeded, new value 833 ns\n[    2.403339] s3c-fb exynos5-fb.1: window 0: fb \n[    2.403731] pd-dp: Power-on latency exceeded, new value 1000 ns\n[    2.403854] s5p-dp s5p-dp: start latency exceeded, new value 834 ns\n[    2.403923] s5p-dp s5p-dp: state restore latency exceeded, new value 1041 ns\n[    2.404072] s5p-dp s5p-dp: stop latency exceeded, new value 833 ns\n[    2.405749] s5p-dp s5p-dp: EDID data does not include any extensions.\n[    2.418499] s5p-dp s5p-dp: EDID Read success!\n[    2.430998] s5p-dp s5p-dp: Link Training Clock Recovery success\n[    2.447594] s5p-dp s5p-dp: Link Training success!\n[    2.595808] wifi_set_power = 1\n[    2.954044] wifi_set_carddetect = 1\n[    2.984058] mmc_host mmc1: Bus speed (slot 0) = 50000000Hz (slot req 400000Hz, actual 396825HZ div = 63)\n[    2.994963] mmc_host mmc1: Bus speed (slot 0) = 200000000Hz (slot req 200000000Hz, actual 200000000HZ div = 0)\n[    2.997661] mmc1: new ultra high speed SDR104 SDIO card at address 0001\n[    3.001867] F1 signature OK, socitype:0x1 chip:0x4324 rev:0x2 pkg:0xd\n[    3.002527] DHD: dongle ram size is set to 589824(orig 589824) at 0x0\n[    3.003578] wl_create_event_handler(): thread:wl_event_handler:60 started\n[    3.003597] CFG80211-ERROR) wl_event_handler : tsk Enter, tsk = 0xddc413d8\n[    3.004369] p2p0: P2P Interface Registered\n[    3.004577] dhd_attach(): thread:dhd_watchdog_thread:61 started\n[    3.004730] dhd_attach(): thread:dhd_dpc:62 started\n[    3.004930] dhd_attach(): thread:dhd_rxf:63 started\n[    3.005078] dhd_attach(): thread:dhd_sysioc:64 started\n[    3.005313] wifi_get_mac_addr\n[    3.005780] Broadcom Dongle Host Driver: register interface [wlan0] MAC: 08:d4:2b:1f:29:d8\n\n[    3.005941] Dongle Host Driver, version 1.88.45 (r)\n[    3.005946] Compiled in drivers/net/wireless/bcmdhd on Nov 18 2014 at 16:01:12\n[    3.006175] wifi_set_power = 0\n[    3.114242] =========== WLAN placed in RESET ========\n[    3.139469] max77686-rtc max77686-rtc: setting system clock to 2021-01-07 04:26:00 UTC (1609993560)\n[    3.142050] ALSA device list:\n[    3.142186]   #0: Manta-I2S\n[    3.142261]   #1: Manta-SPDIF\n[    3.142656] Freeing init memory: 256K\n[    3.142734] Write protecting the kernel text section c0008000 - c08c2000\n[    3.143257] rodata_test: attempting to write to read-only section:\n[    3.143393] write to read-only section trapped, success\n[    3.146882] init: /init.rc: 65: invalid command 'load_system_props'\n[    3.147114] init: could not import file '/init.recovery.logd.rc' from '/init.rc'\n[    3.147336] init: could not import file '/init.recovery.vold_decrypt.rc' from '/init.rc'\n[    3.340106] init: /dev/hw_random not found\n[    3.340824] init: /dev/hw_random not found\n[    3.341335] android_usb: already disabled\n[    3.341721] init: Unable to open persistent property directory /data/property errno: 2\n[    3.341824] init: Unable to open persistent property directory /data/property errno: 2\n[    3.342756] android_usb: already disabled\n[    3.344407] read descriptors\n[    3.344460] read strings\n[    3.396469] s3c-fb exynos5-fb.1: stop latency exceeded, new value 1000 ns\n[    3.396589] s3c-fb exynos5-fb.1: state save latency exceeded, new value 107833 ns\n[    3.396599] pd-fimd1: Power-off latency exceeded, new value 1167 ns\n[    3.396735] s5p-dp s5p-dp: stop latency exceeded, new value 1208 ns\n[    3.396808] s5p-dp s5p-dp: start latency exceeded, new value 917 ns\n[    3.396816] s5p-dp s5p-dp: state save latency exceeded, new value 1208 ns\n[    3.396826] pd-dp: Power-off latency exceeded, new value 875 ns\n[    3.398089] pd-disp1: Power-off latency exceeded, new value 1248708 ns\n[    3.399094] pd-disp1: Power-on latency exceeded, new value 988876 ns\n[    3.399656] s3c-fb exynos5-fb.1: state restore latency exceeded, new value 548583 ns\n[    3.421540] atmel_mxt_ts 3-004a: could not find firmware file\n[    3.422774] audience_es305 4-003e: firmware request failed\n[    3.799209] atmel_mxt_ts 3-004a: Family ID: 162 Variant ID: 0 Version: 18 Build: 170\n[    3.799266] atmel_mxt_ts 3-004a: Matrix X Size: 32 Matrix Y Size: 52 Object Num: 29\n[    3.818394] atmel_mxt_ts 3-004a: Mxt touch controller initialized\n[    4.097157] pd-dp: Power-on latency exceeded, new value 2500 ns\n[    4.097224] s5p-dp s5p-dp: start latency exceeded, new value 2125 ns\n[    4.097272] s5p-dp s5p-dp: state restore latency exceeded, new value 2583 ns\n[    4.097318] s5p-dp s5p-dp: stop latency exceeded, new value 2167 ns\n[    4.099211] s5p-dp s5p-dp: EDID data does not include any extensions.\n[    4.111936] s5p-dp s5p-dp: EDID Read success!\n[    4.124491] s5p-dp s5p-dp: Link Training Clock Recovery success\n[    4.140951] s5p-dp s5p-dp: Link Training success!\n[    4.546898] EXT4-fs (mmcblk0p7): recovery complete\n[    4.548271] EXT4-fs (mmcblk0p7): mounted filesystem with ordered data mode. Opts: \n[    4.571167] EXT4-fs (mmcblk0p9): recovery complete\n[    4.571419] EXT4-fs (mmcblk0p9): mounted filesystem with ordered data mode. Opts: \n[    4.665118] EXT4-fs (mmcblk0p9): mounted filesystem with ordered data mode. Opts: \n[    4.752894] EXT4-fs (mmcblk0p9): mounted filesystem with ordered data mode. Opts: \n[    4.808588] EXT4-fs (mmcblk0p9): mounted filesystem with ordered data mode. Opts: \n[    4.838500] EXT4-fs (mmcblk0p8): mounted filesystem without journal. Opts: \n[    4.960211] manta_otg manta_otg_work: UNDEFINED -> b_peripheral\n[    7.369788] manta_otg manta_otg_work: b_peripheral -> b_idle\n[    7.370089] android_work: did not send uevent (0 0   (null))\n[    7.580803] manta_bat_sync_charge_enable: charger changed enable state to 1\n[    7.585521] battery: charge source type was changed: usb\n[    7.600223] manta_otg manta_otg_work: b_idle -> b_peripheral\n[    9.777960] android_work: did not send uevent (0 0   (null))\n[    9.778391] android_usb: already disabled\n[    9.778501] mtp_bind_config\n[    9.794716] EXT4-fs (mmcblk0p8): mounted filesystem without journal. Opts: \n[   10.583899] mtp_open\n[   13.300320] android_work: sent uevent USB_STATE=CONNECTED\n[   13.302969] android_usb gadget: high-speed config #1: android\n[   13.304209] android_work: sent uevent USB_STATE=CONFIGURED\n[   64.619290] manta_otg manta_otg_work: b_peripheral -> b_idle\n[   64.619345] mtp_release\n[   64.619469] mtp_open\n[   64.621084] android_work: sent uevent USB_STATE=DISCONNECTED\n[   64.632005] battery: charge source type was changed: none\n[   67.137427] manta_bat_sync_charge_enable: charger changed enable state to 0\n[   67.150653] battery: charge source type was changed: usb\n[   67.154189] manta_bat_sync_charge_enable: charger changed enable state to 1\n[   67.156189] manta_otg manta_otg_work: b_idle -> b_peripheral\n[   68.687223] android_work: sent uevent USB_STATE=CONNECTED\n[   68.829776] android_usb gadget: high-speed config #1: android\n[   68.830803] android_work: sent uevent USB_STATE=CONFIGURED\n[  128.646687] s3c-fb exynos5-fb.1: stop latency exceeded, new value 2417 ns\n[  128.646748] s3c-fb exynos5-fb.1: start latency exceeded, new value 2084 ns\n[  128.647354] s3c-fb exynos5-fb.1: state save latency exceeded, new value 550166 ns\n[  128.647417] pd-fimd1: Power-off latency exceeded, new value 4583 ns\n[  128.648224] s5p-dp s5p-dp: stop latency exceeded, new value 3917 ns\n[  128.648436] s5p-dp s5p-dp: start latency exceeded, new value 2458 ns\n[  128.648485] s5p-dp s5p-dp: state save latency exceeded, new value 2666 ns\n[  128.648541] pd-dp: Power-off latency exceeded, new value 2791 ns\n[  128.654423] pd-disp1: Power-off latency exceeded, new value 5781417 ns\n[  186.724443] android_usb gadget: high-speed config #1: android\n[  186.725928] mtp_release\n[  186.726430] mtp_open\n[  186.727635] android_work: sent uevent USB_STATE=CONFIGURED\n[  241.894576] android_usb gadget: high-speed config #1: android\n[  241.895651] mtp_release\n[  241.896137] mtp_open\n[  241.897891] android_work: sent uevent USB_STATE=CONFIGURED\n[  245.214713] android_usb gadget: high-speed config #1: android\n[  245.215807] mtp_release\n[  245.216342] mtp_open\n[  245.217791] android_work: sent uevent USB_STATE=CONFIGURED\n[  254.324876] android_usb gadget: high-speed config #1: android\n[  254.326872] android_work: sent uevent USB_STATE=CONFIGURED\n[  254.328461] mtp_release\n[  254.329447] mtp_open\n[  256.478276] android_usb gadget: high-speed config #1: android\n[  256.479498] android_work: sent uevent USB_STATE=CONFIGURED\n[  256.481262] mtp_release\n[  256.481707] mtp_open\n[  258.121602] android_usb gadget: high-speed config #1: android\n[  258.123336] mtp_release\n[  258.123809] mtp_open\n[  258.125667] android_work: sent uevent USB_STATE=CONFIGURED\n[  264.904570] android_usb gadget: high-speed config #1: android\n[  264.905642] mtp_release\n[  264.906099] mtp_open\n[  264.906947] android_work: sent uevent USB_STATE=CONFIGURED\n[  699.572045] IRQ153 no longer affine to CPU1\n[  699.572724] CPU1: shutdown\n[  780.442920] CPU1: Booted secondary processor\n[  780.443751] CPU1: Unknown IPI message 0x1\n[ 2256.401396] IRQ153 no longer affine to CPU1\n[ 2256.407069] CPU1: shutdown\n"
  },
  {
    "path": "results/exynos5250/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n 66:          0       GIC  dma-pl330.0\n 67:          0       GIC  dma-pl330.1\n 74:          0       GIC  s3c2410-wdt\n 85:          0       GIC  debug\n 88:          0       GIC  s3c2440-i2c.0\n 89:        207       GIC  s3c2440-i2c.1\n 90:     255565       GIC  s3c2440-i2c.2\n 91:       5019       GIC  s3c2440-i2c.3\n 92:          0       GIC  s3c2440-i2c.4\n 93:       3500       GIC  s3c2440-i2c.5\n 95:        712       GIC  s3c2440-i2c.7\n 96:         62       GIC  s3c2440-i2c.8\n 97:          0       GIC  tmu\n101:          0       GIC  spi-s3c64xx\n102:          0       GIC  spi-s3c64xx\n103:          1       GIC\n106:     419152       GIC  s3c-hsotg\n107:      11340       GIC  dw-mci\n108:        371       GIC  dw-mci\n117:          0       GIC  exynos-gsc\n118:          0       GIC  exynos-gsc\n119:          0       GIC  exynos-gsc\n120:          0       GIC  exynos-gsc\n121:          0       GIC  s5p-jpeg\n123:          0       GIC  s5p-fimg2d\n126:          0       GIC  s5p-mixer\n127:          0       GIC  hdmi-int\n128:          0       GIC  s5p-mfc\n138:          0       GIC  samsung-adc-v4\n149:          1       GIC  mali.0\n150:          0       GIC  mali.0\n151:          0       GIC  mali.0\n152:     335292       GIC  mct_tick0_irq\n153:          0       GIC  mct_tick1_irq\n154:          0       GIC  mobicore\n156:          0       GIC  dma-pl330.2\n157:          0       GIC  fimc-lite0\n158:          0       GIC  fimc-lite1\n176:          0  combiner  exynos-sysmmu.5\n178:          0  combiner  exynos-sysmmu.6\n180:          0  combiner  exynos-sysmmu.7\n182:          0  combiner  exynos-sysmmu.8\n184:          0  combiner  exynos-sysmmu.9\n186:          0  combiner  exynos-sysmmu.11\n188:          0  combiner  exynos-sysmmu.9\n190:          0  combiner  exynos-sysmmu.9\n192:          0  combiner  exynos-sysmmu.4\n194:          0  combiner  exynos-sysmmu.3\n200:          0  combiner  exynos-sysmmu.9\n202:          0  combiner  exynos-sysmmu.9\n204:          0  combiner  exynos-sysmmu.9\n206:          0  combiner  exynos-sysmmu.9\n210:          0  combiner  exynos-sysmmu.0\n220:          0  combiner  exynos-sysmmu.2\n229:          0  combiner  exynos-sysmmu.0\n236:          0  combiner  exynos-sysmmu.9\n243:          0  combiner  s5p-dp\n244:          0  combiner  exynos-sysmmu.9\n246:          0  combiner  exynos-sysmmu.9\n248:          0  combiner  exynos-sysmmu.9\n254:          0  combiner  exynos-sysmmu.9\n309:          1  combiner  s3c_fb\n313:          0  combiner  mcuctl\n347:         11  combiner  mct_comp_irq\n353:          0  combiner  exynos-sysmmu.9\n357:          0  combiner  exynos-sysmmu.15\n418:          0  exynos-eint  max77686-irq\n420:          2  exynos-eint  smb347\n421:          0  exynos-eint  dock\n422:          1  exynos-eint  dock_pd\n424:          2  exynos-eint  usb_vbus\n425:          0  exynos-eint  usb_id\n426:          0  exynos-eint  pogo_vbus\n427:          0  exynos-eint  gpio_keys\n428:          0  exynos-eint  inv_irq\n430:          0  exynos-eint  bcm2079x-spi\n432:          0  exynos-eint  gpio_keys\n433:          0  exynos-eint  gpio_keys\n438:          0  exynos-eint  bt_host_wake\n439:          1  exynos-eint  gpio_keys\n445:          0  exynos-eint  wm8994\n447:          1  exynos-eint  hdmi-ext\n450:        204  s5p_gpioint  atmel_mxt_ts\n560:          0  max77686  rtc-alarm0\n565:          0    regmap  Thermal shutdown\n566:          0    regmap  Mic detect\n570:          0    regmap  FLL lock\n571:          0    regmap  FLL lock\n577:          0    regmap  FIFO error\n579:          0    regmap  DC servo done\n580:          0    regmap  Thermal warning\n586:          0    regmap  JACKDET\nIPI0:          0          0  Timer broadcast interrupts\nIPI1:       2852     122595  Rescheduling interrupts\nIPI2:          0          0  Function call interrupts\nIPI3:       4411      69012  Single function call interrupts\nIPI4:          0          0  CPU stop interrupts\nIPI5:          0          0  CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/exynos5250/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       \n 66:          0          0       GIC  dma-pl330.0\n 67:          0          0       GIC  dma-pl330.1\n 74:          0          0       GIC  s3c2410-wdt\n 85:          0          0       GIC  debug\n 88:          0          0       GIC  s3c2440-i2c.0\n 89:        207          0       GIC  s3c2440-i2c.1\n 90:       5475          0       GIC  s3c2440-i2c.2\n 91:       5019          0       GIC  s3c2440-i2c.3\n 92:          0          0       GIC  s3c2440-i2c.4\n 93:       3203          0       GIC  s3c2440-i2c.5\n 95:        712          0       GIC  s3c2440-i2c.7\n 96:         62          0       GIC  s3c2440-i2c.8\n 97:          0          0       GIC  tmu\n101:          0          0       GIC  spi-s3c64xx\n102:          0          0       GIC  spi-s3c64xx\n103:          1          0       GIC\n106:     419083          0       GIC  s3c-hsotg\n107:      11340          0       GIC  dw-mci\n108:        371          0       GIC  dw-mci\n117:          0          0       GIC  exynos-gsc\n118:          0          0       GIC  exynos-gsc\n119:          0          0       GIC  exynos-gsc\n120:          0          0       GIC  exynos-gsc\n121:          0          0       GIC  s5p-jpeg\n123:          0          0       GIC  s5p-fimg2d\n126:          0          0       GIC  s5p-mixer\n127:          0          0       GIC  hdmi-int\n128:          0          0       GIC  s5p-mfc\n138:          0          0       GIC  samsung-adc-v4\n149:          1          0       GIC  mali.0\n150:          0          0       GIC  mali.0\n151:          0          0       GIC  mali.0\n152:      67478          0       GIC  mct_tick0_irq\n153:          0      69616       GIC  mct_tick1_irq\n154:          0          0       GIC  mobicore\n156:          0          0       GIC  dma-pl330.2\n157:          0          0       GIC  fimc-lite0\n158:          0          0       GIC  fimc-lite1\n176:          0          0  combiner  exynos-sysmmu.5\n178:          0          0  combiner  exynos-sysmmu.6\n180:          0          0  combiner  exynos-sysmmu.7\n182:          0          0  combiner  exynos-sysmmu.8\n184:          0          0  combiner  exynos-sysmmu.9\n186:          0          0  combiner  exynos-sysmmu.11\n188:          0          0  combiner  exynos-sysmmu.9\n190:          0          0  combiner  exynos-sysmmu.9\n192:          0          0  combiner  exynos-sysmmu.4\n194:          0          0  combiner  exynos-sysmmu.3\n200:          0          0  combiner  exynos-sysmmu.9\n202:          0          0  combiner  exynos-sysmmu.9\n204:          0          0  combiner  exynos-sysmmu.9\n206:          0          0  combiner  exynos-sysmmu.9\n210:          0          0  combiner  exynos-sysmmu.0\n220:          0          0  combiner  exynos-sysmmu.2\n229:          0          0  combiner  exynos-sysmmu.0\n236:          0          0  combiner  exynos-sysmmu.9\n243:          0          0  combiner  s5p-dp\n244:          0          0  combiner  exynos-sysmmu.9\n246:          0          0  combiner  exynos-sysmmu.9\n248:          0          0  combiner  exynos-sysmmu.9\n254:          0          0  combiner  exynos-sysmmu.9\n309:          1          0  combiner  s3c_fb\n313:          0          0  combiner  mcuctl\n347:         11          0  combiner  mct_comp_irq\n353:          0          0  combiner  exynos-sysmmu.9\n357:          0          0  combiner  exynos-sysmmu.15\n418:          0          0  exynos-eint  max77686-irq\n420:          2          0  exynos-eint  smb347\n421:          0          0  exynos-eint  dock\n422:          1          0  exynos-eint  dock_pd\n424:          2          0  exynos-eint  usb_vbus\n425:          0          0  exynos-eint  usb_id\n426:          0          0  exynos-eint  pogo_vbus\n427:          0          0  exynos-eint  gpio_keys\n428:          0          0  exynos-eint  inv_irq\n430:          0          0  exynos-eint  bcm2079x-spi\n432:          0          0  exynos-eint  gpio_keys\n433:          0          0  exynos-eint  gpio_keys\n438:          0          0  exynos-eint  bt_host_wake\n439:          1          0  exynos-eint  gpio_keys\n445:          0          0  exynos-eint  wm8994\n447:          1          0  exynos-eint  hdmi-ext\n450:        204          0  s5p_gpioint  atmel_mxt_ts\n560:          0          0  max77686  rtc-alarm0\n565:          0          0    regmap  Thermal shutdown\n566:          0          0    regmap  Mic detect\n570:          0          0    regmap  FLL lock\n571:          0          0    regmap  FLL lock\n577:          0          0    regmap  FIFO error\n579:          0          0    regmap  DC servo done\n580:          0          0    regmap  Thermal warning\n586:          0          0    regmap  JACKDET\nIPI0:          0          0  Timer broadcast interrupts\nIPI1:       2792     122560  Rescheduling interrupts\nIPI2:          0          0  Function call interrupts\nIPI3:       4396      68995  Single function call interrupts\nIPI4:          0          0  CPU stop interrupts\nIPI5:          0          0  CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/exynos5250/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [ksoftirqd/0]\n    5 root      0:00 [kworker/0:0H]\n    7 root      0:00 [kworker/u:0H]\n    8 root      0:00 [migration/0]\n    9 root      0:00 [watchdog/0]\n   15 root      0:00 [khelper]\n   16 root      0:00 [dock]\n   17 root      0:00 [sync_supers]\n   18 root      0:00 [bdi-default]\n   19 root      0:00 [kblockd]\n   20 root      0:00 [ion_noncontig_h]\n   21 root      0:00 [ion_chunk_heap]\n   22 root      0:00 [spi1]\n   23 root      0:00 [spi2]\n   24 root      0:00 [khubd]\n   25 root      0:00 [irq/418-max7768]\n   26 root      0:00 [kworker/0:1]\n   27 root      0:00 [cfg80211]\n   28 root      0:00 [cfinteractive]\n   29 root      0:00 [kworker/u:1]\n   30 root      0:00 [irq/438-bt_host]\n   31 root      0:00 [tmu]\n   32 root      0:00 [khungtaskd]\n   33 root      0:00 [kswapd0]\n   34 root      0:00 [ksmd]\n   35 root      0:00 [fsnotify_mark]\n   36 root      0:00 [cifsiod]\n   37 root      0:00 [crypto]\n   52 root      0:00 [mali_dvfs]\n   53 root      0:00 [kworker/u:1H]\n   54 root      0:03 [kworker/0:2]\n   56 root      0:00 [kworker/u:3]\n   57 root      0:00 [irq/445-wm8994]\n   60 root      0:00 [f_mtp]\n   61 root      0:00 [file-storage]\n   64 root      0:00 [gsc0_irq_wq_nam]\n   65 root      0:00 [gsc1_irq_wq_nam]\n   66 root      0:00 [gsc2_irq_wq_nam]\n   67 root      0:00 [gsc3_irq_wq_nam]\n   68 root      0:00 [kfimg2dd]\n   69 root      0:00 [irq/128-s5p-mfc]\n   70 root      0:00 [s5p-mfc]\n   71 root      0:00 [mfc_workqueue]\n   72 root      0:00 [khdcpd]\n   73 root      0:00 [hdmi-mixer]\n   74 root      0:00 [w1_bus_master1]\n   76 root      0:00 [irq/420-smb347]\n   77 root      0:00 [dw-mci-card]\n   79 root      0:00 [dw-mci-card]\n   80 root      0:00 [mmcqd/0]\n   81 root      0:00 [mmcqd/0boot0]\n   82 root      0:00 [mmcqd/0boot1]\n   83 root      0:00 [kworker/0:1H]\n   84 root      0:00 [irq/428-inv_irq]\n   85 root      0:00 [bh1721fvc_wq]\n   86 root      0:00 [bmp182_wq]\n   87 root      0:00 [binder]\n   88 root      0:00 [mc_fastcall]\n   89 root      0:00 [mobicore_log]\n   90 root      0:00 [krfcommd]\n   91 root      0:00 [irq/424-usb_vbu]\n   92 root      0:00 [irq/426-pogo_vb]\n   93 root      0:00 [s3c-fb]\n   94 root      0:00 [s3c-fb-vsync]\n   95 root      0:00 [deferwq]\n   96 root      0:00 [wl_event_handle]\n   97 root      0:00 [dhd_watchdog_th]\n   98 root      0:00 [dhd_dpc]\n   99 root      0:00 [dhd_rxf]\n  100 root      0:00 [dhd_sysioc]\n  101 root      0:00 [devfreq_wq]\n  102 root      0:00 /sbin/ueventd\n  105 root      0:00 /sbin/watchdogd 10 20\n  107 root      0:28 /sbin/recovery\n  108 root      1:30 /sbin/adbd --root_seclabel=u:r:su:s0 --device_banner=recovery\n  115 root      0:00 [irq/450-atmel_m]\n  116 root      0:00 [jbd2/mmcblk0p7-]\n  117 root      0:00 [ext4-dio-unwrit]\n  131 root      0:00 [jbd2/mmcblk0p9-]\n  132 root      0:00 [ext4-dio-unwrit]\n  137 root      0:08 /sbin/recovery\n  173 root      0:00 /sbin/sh -\n  183 root      0:00 /bin/sh -l\n  245 root      0:00 bash /init\n  263 root      0:00 [kworker/1:0]\n  264 root      0:00 [kworker/1:0H]\n  270 root      0:00 [kworker/1:1]\n  316 root      0:00 [workqueue_trust]\n  328 root      0:00 ps -A\n"
  },
  {
    "path": "results/exynos5250/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,200000,909.123968,4.54561984,131.75903943795507,36.237273757605784,6.898973738263847,275.026851381\r\n1,300000,1366.493577,4.55497859,211.54170871958428,38.707016419417926,6.458777325823128,182.975814338\r\n1,400000,1821.26804,4.5531701,286.30200172188063,39.30620530070712,6.360318888262217,137.289313607\r\n1,500000,2253.084473,4.506168946,375.4177453490826,41.66137535126896,6.000762046190712,110.97337797\r\n1,600000,2740.236537,4.567060895,445.88173120620223,40.68539890214896,6.144710553318312,91.247064086\r\n1,700000,3199.344774,4.570492534285714,512.906246041921,40.08548262514831,6.236671823009516,78.153625413\r\n1,800000,3673.067599,4.59133449875,677.7151034098805,46.13335728381696,5.419072331154556,68.071903742\r\n1,900000,4090.113378,4.54457042,764.3747185134666,46.72686863965863,5.350240820285071,61.130840029\r\n1,1000000,4586.14617,4.58614617,877.78678113,47.85548328723662,5.224061754835034,54.518345817\r\n1,1100000,5059.704513,4.599731375454545,1084.0813785628752,53.56996152419303,4.666794466281185,49.415073982\r\n1,1200000,5514.746432,4.595622026666667,1224.930939650091,55.535568637330634,4.501619523023155,45.337714021\r\n1,1300000,5932.6056,4.563542769230769,1396.391732513366,58.852055841887974,4.247939964436424,42.145806561\r\n1,1400000,6394.679627,4.567628305,1661.8085948777896,64.9773076934939,3.847497055114707,39.100356018\r\n1,1500000,6896.741979,4.597827986,1894.677768672,68.69001376918295,3.639539232588709,36.254193143\r\n1,1600000,7332.453439,4.582783399375,2198.461149962848,74.9677788040283,3.3347660019849292,34.100115349\r\n1,1700000,7825.950853,4.603500501764706,2496.847651811484,79.77016177788627,3.1340039236237893,31.94834964\r\n"
  },
  {
    "path": "results/exynos5250/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1556.8494412899017, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [9.86268416, 7.531910694000001, 7.531910694000001, 6.96255, 6.95338875, 8.110432637999999, 8.700402480000001, 8.700402480000001, 7.5418341600000005, 7.5418341600000005, 7.5418341600000005, 8.700402480000001, 8.700402480000001, 8.121118319999999, 8.121118319999999, 8.700402480000001, 8.700402480000001, 8.121118319999999, 9.2834, 9.2834, 8.121118319999999, 8.121118319999999, 8.121118319999999, 9.2834, 9.2834, 8.121118319999999, 8.121118319999999, 8.700402480000001, 8.700402480000001], \"power_mean\": 8.320142959172413, \"energy_millijoules\": 41.60071479586207, \"energy_joules\": 0.04160071479586207}, \"cpus\": {\"1\": {\"freqs\": {\"200000\": {\"active\": {\"elapsed_sec\": 275.026851381, \"elapsed_ns\": 275026851381, \"power_samples\": [-6.374866806, -6.374866806, 111.832741944, 111.832741944, 111.832741944, 111.832741944, 133.84995208200002, 133.84995208200002, 133.84995208200002, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 134.4321825, 134.4321825, 134.4321825, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.84995208200002, 133.84995208200002, 133.84995208200002, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.84995208200002, 133.84995208200002, 133.84995208200002, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.84995208200002, 133.84995208200002, 133.84995208200002, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 133.84995208200002, 133.84995208200002, 133.84995208200002, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 133.84995208200002, 133.84995208200002, 133.84995208200002, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.84995208200002, 133.84995208200002, 133.84995208200002, 133.27143013800003, 133.27143013800003, 133.27143013800003, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.84995208200002, 133.84995208200002, 133.84995208200002, 133.27143013800003, 133.27143013800003, 133.27143013800003, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 133.84995208200002, 133.84995208200002, 133.84995208200002, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 133.84995208200002, 133.84995208200002, 133.84995208200002, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.84995208200002, 133.84995208200002, 133.84995208200002, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 133.84995208200002, 133.84995208200002, 133.84995208200002, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.84995208200002, 133.84995208200002, 133.84995208200002, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 133.27143013800003, 133.27143013800003, 133.27143013800003, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 133.84995208200002, 133.84995208200002, 133.84995208200002, 133.27143013800003, 133.27143013800003, 133.27143013800003, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 133.84995208200002, 133.84995208200002, 133.84995208200002, 132.11438625, 132.11438625, 132.11438625, 132.11438625, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.27143013800003, 133.84995208200002, 133.84995208200002, 133.84995208200002, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 133.84995208200002, 133.84995208200002, 133.84995208200002, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 133.27143013800003, 133.27143013800003, 133.27143013800003, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 133.84995208200002, 133.84995208200002, 133.84995208200002, 133.27143013800003, 133.27143013800003, 133.27143013800003, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 133.27143013800003, 133.27143013800003, 133.27143013800003, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 133.27143013800003, 133.27143013800003, 133.27143013800003, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 133.27143013800003, 133.27143013800003, 133.27143013800003, 132.11438625, 132.11438625, 132.11438625, 132.11438625, 133.27143013800003, 133.27143013800003, 133.27143013800003, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 133.27143013800003, 133.27143013800003, 133.27143013800003, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 133.27143013800003, 133.27143013800003, 133.27143013800003, 131.53215583200006, 131.53215583200006, 131.53215583200006, 132.692908194, 132.692908194, 132.692908194, 132.692908194, 133.27143013800003, 133.27143013800003, 133.27143013800003, 132.11438625, 132.11438625, 132.11438625], \"power_mean\": 131.75903943795507, \"energy_millijoules\": 36237.273757605784, \"energy_joules\": 36.237273757605784, \"coremark_score\": 909.123968, \"coremarks_per_mhz\": 4.54561984, \"ulpmark_cm_score\": 6.898973738263847}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [2.90013416, 1.7378524800000001, 1.7378524800000001, 1.7378524800000001], \"power_mean\": 2.0284229000000003, \"energy_millijoules\": 10.142114500000002, \"energy_joules\": 0.010142114500000002}}, \"300000\": {\"active\": {\"elapsed_sec\": 182.975814338, \"elapsed_ns\": 182975814338, \"power_samples\": [-2.9000266679999998, -2.905367066, 137.71616570600003, 137.71616570600003, 137.71616570600003, 211.787925706, 211.787925706, 211.787925706, 211.787925706, 212.94714875000003, 212.94714875000003, 212.94714875000003, 211.787925706, 211.787925706, 211.787925706, 211.787925706, 211.787925706, 211.787925706, 211.787925706, 213.52490847800001, 213.52490847800001, 213.52490847800001, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 216.41741070600003, 216.41741070600003, 216.41741070600003, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 216.41741070600003, 216.41741070600003, 216.41741070600003, 214.68042793400002, 214.68042793400002, 214.68042793400002, 214.68042793400002, 215.839650978, 215.839650978, 215.839650978, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 216.99517043400002, 216.99517043400002, 216.99517043400002, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 216.41741070600003, 216.41741070600003, 216.41741070600003, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 216.41741070600003, 216.41741070600003, 216.41741070600003, 214.68042793400002, 214.68042793400002, 214.68042793400002, 214.68042793400002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 214.68042793400002, 214.68042793400002, 214.68042793400002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 216.41741070600003, 216.41741070600003, 216.41741070600003, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.839650978, 215.839650978, 215.839650978, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 216.41741070600003, 216.41741070600003, 216.41741070600003, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 216.41741070600003, 216.41741070600003, 216.41741070600003, 215.839650978, 215.839650978, 215.839650978, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 215.839650978, 216.41741070600003, 216.41741070600003, 216.41741070600003, 215.26189125000002, 215.26189125000002, 215.26189125000002, 215.26189125000002, 216.41741070600003, 216.41741070600003, 216.41741070600003, 215.26189125000002, 215.26189125000002, 215.26189125000002, 214.68042793400002, 214.68042793400002, 214.68042793400002, 214.68042793400002, 216.41741070600003, 216.41741070600003], \"power_mean\": 211.54170871958428, \"energy_millijoules\": 38707.01641941792, \"energy_joules\": 38.707016419417926, \"coremark_score\": 1366.493577, \"coremarks_per_mhz\": 4.55497859, \"ulpmark_cm_score\": 6.458777325823128}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1.15856832, 1.15856832, 1.15856832, 4.05870248], \"power_mean\": 1.8836018600000002, \"energy_millijoules\": 9.418009300000001, \"energy_joules\": 0.009418009300000002}}, \"400000\": {\"active\": {\"elapsed_sec\": 137.289313607, \"elapsed_ns\": 137289313607, \"power_samples\": [-1.7461440220000002, -1.7461440220000002, 245.35354375000003, 245.35354375000003, 245.35354375000003, 245.35354375000003, 292.803913206, 292.803913206, 292.803913206, 291.64839375, 291.64839375, 291.64839375, 291.64839375, 292.803913206, 292.803913206, 292.803913206, 291.64839375, 291.64839375, 291.64839375, 291.64839375, 292.803913206, 292.803913206, 292.803913206, 291.64839375, 291.64839375, 291.64839375, 291.64839375, 291.64839375, 291.64839375, 291.64839375, 292.803913206, 292.803913206, 292.803913206, 291.64839375, 291.64839375, 291.64839375, 291.64839375, 292.803913206, 292.803913206, 292.803913206, 292.22615347800007, 292.22615347800007, 292.22615347800007, 291.64839375, 291.64839375, 291.64839375, 291.64839375, 292.803913206, 292.803913206, 292.803913206, 291.64839375, 291.64839375, 291.64839375, 291.64839375, 293.38167293400005, 293.38167293400005, 293.38167293400005, 291.64839375, 291.64839375, 291.64839375, 291.64839375, 292.803913206, 292.803913206, 292.803913206, 291.066930434, 291.066930434, 291.066930434, 291.64839375, 291.64839375, 291.64839375, 291.64839375, 292.22615347800007, 292.22615347800007, 292.22615347800007, 291.64839375, 291.64839375, 291.64839375, 291.64839375, 292.803913206, 292.803913206, 292.803913206, 291.64839375, 291.64839375, 291.64839375, 291.25446, 293.38167293400005, 293.38167293400005, 293.38167293400005, 291.64839375, 291.64839375, 291.64839375, 291.64839375, 291.64839375, 291.25446, 291.64839375, 292.985452536, 293.38167293400005, 293.38167293400005, 292.22615347800007, 292.22615347800007, 292.22615347800007, 292.22615347800007, 292.803913206, 292.803913206, 292.803913206, 291.64839375, 291.64839375, 291.64839375, 291.64839375, 292.40845502400003, 292.40845502400003, 292.803913206, 292.22615347800007, 292.22615347800007, 292.22615347800007, 291.25446, 291.64839375, 291.64839375, 291.64839375, 292.22615347800007, 291.83145751200004, 292.22615347800007, 291.64839375, 291.64839375, 291.25446, 291.64839375, 292.22615347800007, 292.22615347800007, 291.83145751200004, 291.64839375, 291.64839375, 291.64839375, 291.64839375, 291.25446], \"power_mean\": 286.30200172188063, \"energy_millijoules\": 39306.20530070712, \"energy_joules\": 39.30620530070712, \"coremark_score\": 1821.26804, \"coremarks_per_mhz\": 4.5531701, \"ulpmark_cm_score\": 6.360318888262217}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [178.12245248000002, 3.47941832, 3.47941832, 3.47941832], \"power_mean\": 47.140176860000004, \"energy_millijoules\": 235.7008843, \"energy_joules\": 0.23570088430000002}}, \"500000\": {\"active\": {\"elapsed_sec\": 110.97337797, \"elapsed_ns\": 110973377970, \"power_samples\": [45.634756286, 45.634756286, 45.634756286, 384.876005024, 384.876005024, 384.876005024, 384.876005024, 385.45300253600004, 385.45300253600004, 385.45300253600004, 383.72201000000007, 383.72201000000007, 383.72201000000007, 384.29900751200006, 384.29900751200006, 384.29900751200006, 384.29900751200006, 386.03369875000004, 386.03369875000004, 386.03369875000004, 384.876005024, 384.876005024, 384.876005024, 384.876005024, 386.03369875000004, 386.03369875000004, 386.03369875000004, 384.29900751200006, 384.29900751200006, 384.29900751200006, 384.29900751200006, 385.45300253600004, 385.45300253600004, 385.45300253600004, 384.876005024, 384.876005024, 384.876005024, 384.876005024, 384.876005024, 384.876005024, 384.876005024, 386.03369875000004, 386.03369875000004, 386.03369875000004, 384.876005024, 384.876005024, 384.876005024, 384.876005024, 385.45300253600004, 385.45300253600004, 385.45300253600004, 384.29900751200006, 384.29900751200006, 384.29900751200006, 384.29900751200006, 386.03369875000004, 386.03369875000004, 386.03369875000004, 384.876005024, 384.876005024, 384.876005024, 384.29900751200006, 384.29900751200006, 384.29900751200006, 384.29900751200006, 385.45300253600004, 385.45300253600004, 385.45300253600004, 383.72201000000007, 383.72201000000007, 383.72201000000007, 383.72201000000007, 384.29900751200006, 384.29900751200006, 384.29900751200006, 383.72201000000007, 383.72201000000007, 383.72201000000007, 383.72201000000007, 383.72201000000007, 383.72201000000007, 383.72201000000007, 384.29900751200006, 384.29900751200006, 384.29900751200006, 384.29900751200006, 384.29900751200006, 384.29900751200006, 384.29900751200006, 385.45300253600004, 385.45300253600004, 385.45300253600004, 384.29900751200006, 384.29900751200006, 384.29900751200006, 384.29900751200006, 384.876005024, 384.876005024, 384.876005024, 384.29900751200006, 384.29900751200006, 384.29900751200006, 384.29900751200006, 385.45300253600004, 385.45300253600004, 385.45300253600004, 384.29900751200006, 384.29900751200006, 384.29900751200006], \"power_mean\": 375.4177453490826, \"energy_millijoules\": 41661.37535126896, \"energy_joules\": 41.66137535126896, \"coremark_score\": 2253.084473, \"coremarks_per_mhz\": 4.506168946, \"ulpmark_cm_score\": 6.000762046190712}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [163.981303332, 26.074280694000002, 26.074280694000002, 26.074280694000002], \"power_mean\": 60.5510363535, \"energy_millijoules\": 302.7551817675, \"energy_joules\": 0.3027551817675}}, \"600000\": {\"active\": {\"elapsed_sec\": 91.247064086, \"elapsed_ns\": 91247064086, \"power_samples\": [24.252560023999997, 24.211336841999994, 296.05403154600003, 296.05403154600003, 296.05403154600003, 460.543351842, 460.543351842, 460.543351842, 460.543351842, 462.27575154600004, 462.27575154600004, 462.27575154600004, 461.69951625, 461.69951625, 461.69951625, 460.543351842, 460.543351842, 460.543351842, 460.543351842, 462.27575154600004, 462.27575154600004, 462.27575154600004, 460.543351842, 460.543351842, 460.543351842, 460.543351842, 461.69951625, 461.69951625, 461.69951625, 459.967116546, 459.967116546, 459.967116546, 459.967116546, 461.119587138, 461.119587138, 461.119587138, 461.119587138, 461.119587138, 461.119587138, 461.119587138, 461.119587138, 461.119587138, 461.119587138, 462.851986842, 462.851986842, 462.851986842, 460.543351842, 460.543351842, 460.543351842, 460.543351842, 462.27575154600004, 462.27575154600004, 462.27575154600004, 459.39088124999995, 459.39088124999995, 459.39088124999995, 459.39088124999995, 462.27575154600004, 462.27575154600004, 462.27575154600004, 461.119587138, 461.119587138, 461.119587138, 461.119587138, 461.119587138, 461.119587138, 461.119587138, 462.27575154600004, 462.27575154600004, 462.27575154600004, 461.69951625, 461.69951625, 461.69951625, 461.69951625, 462.27575154600004, 462.27575154600004, 462.27575154600004, 461.119587138, 461.119587138, 461.119587138, 461.119587138, 462.27575154600004, 462.27575154600004, 462.27575154600004, 460.543351842, 460.543351842, 460.543351842, 461.119587138, 461.119587138], \"power_mean\": 445.88173120620223, \"energy_millijoules\": 40685.39890214896, \"energy_joules\": 40.68539890214896, \"coremark_score\": 2740.236537, \"coremarks_per_mhz\": 4.567060895, \"ulpmark_cm_score\": 6.144710553318312}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [29.549120832, 29.549120832, 29.549120832, 31.288395138], \"power_mean\": 29.9839394085, \"energy_millijoules\": 149.9196970425, \"energy_joules\": 0.1499196970425}}, \"700000\": {\"active\": {\"elapsed_sec\": 78.153625413, \"elapsed_ns\": 78153625413, \"power_samples\": [50.18255713799999, 50.18255713799999, 50.18255713799999, 530.9585662499999, 530.9585662499999, 530.9585662499999, 530.9585662499999, 532.6872721379999, 532.6872721379999, 532.6872721379999, 531.39798866, 531.39798866, 532.111036842, 532.111036842, 531.39798866, 531.39798866, 532.111036842, 533.26720125, 533.26720125, 532.55262375, 531.39798866, 532.111036842, 531.39798866, 531.39798866, 533.26720125, 532.55262375, 532.55262375, 531.39798866, 531.39798866, 531.39798866, 531.39798866, 532.55262375, 532.55262375, 532.55262375, 530.2470425, 530.2470425, 530.2470425, 531.97346174, 531.97346174, 531.97346174, 531.97346174, 532.55262375, 532.55262375, 532.55262375, 531.97346174, 531.97346174, 531.97346174, 531.97346174, 532.55262375, 532.55262375, 532.55262375, 530.2470425, 530.2470425, 530.2470425, 530.2470425, 531.97346174, 531.97346174, 531.97346174, 531.97346174, 531.97346174, 531.97346174, 532.55262375, 532.55262375, 532.55262375, 532.55262375, 532.55262375, 532.55262375, 532.55262375, 531.97346174, 531.97346174, 531.97346174, 531.97346174, 532.55262375, 532.55262375, 532.55262375, 531.39798866], \"power_mean\": 512.906246041921, \"energy_millijoules\": 40085.48262514831, \"energy_joules\": 40.08548262514831, \"coremark_score\": 3199.344774, \"coremarks_per_mhz\": 4.570492534285714, \"ulpmark_cm_score\": 6.236671823009516}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [265.38581638799997, 31.288395138, 31.288395138, 31.288395138], \"power_mean\": 89.81275045049999, \"energy_millijoules\": 449.06375225249997, \"energy_joules\": 0.44906375225249995}}, \"800000\": {\"active\": {\"elapsed_sec\": 68.071903742, \"elapsed_ns\": 68071903742, \"power_samples\": [280.08963241000004, 280.08963241000004, 279.70944297799997, 279.70944297799997, 702.2250812499999, 702.2250812499999, 702.2250812499999, 700.497264614, 700.497264614, 700.497264614, 700.497264614, 702.2250812499999, 702.2250812499999, 702.2250812499999, 702.2250812499999, 702.2250812499999, 702.2250812499999, 702.2250812499999, 703.374502978, 703.374502978, 703.374502978, 702.799792114, 702.799792114, 702.799792114, 702.799792114, 703.9492138419998, 703.9492138419998, 703.9492138419998, 702.799792114, 702.799792114, 702.799792114, 702.799792114, 702.799792114, 702.799792114, 702.799792114, 704.5276087499999, 704.5276087499999, 704.5276087499999, 702.799792114, 702.799792114, 702.799792114, 702.799792114, 703.9492138419998, 703.9492138419998, 703.9492138419998, 702.799792114, 702.799792114, 702.799792114, 702.799792114, 703.9492138419998, 703.9492138419998, 703.9492138419998, 702.799792114, 702.799792114, 702.799792114, 703.374502978, 703.374502978, 703.374502978, 703.374502978, 704.5276087499999, 704.5276087499999, 704.5276087499999, 702.799792114, 702.799792114, 702.799792114, 702.799792114, 703.9492138419998], \"power_mean\": 677.7151034098805, \"energy_millijoules\": 46133.357283816964, \"energy_joules\": 46.13335728381696, \"coremark_score\": 3673.067599, \"coremarks_per_mhz\": 4.59133449875, \"ulpmark_cm_score\": 5.419072331154556}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [267.92866668400006, 267.92866668400006, 121.522129456, 121.522129456], \"power_mean\": 194.72539807000004, \"energy_millijoules\": 973.6269903500001, \"energy_joules\": 0.9736269903500001}}, \"900000\": {\"active\": {\"elapsed_sec\": 61.130840029, \"elapsed_ns\": 61130840029, \"power_samples\": [217.541200478, 217.541200478, 217.24346229600002, 791.5379511479999, 791.5379511479999, 791.5379511479999, 791.5379511479999, 794.9853221939999, 794.9853221939999, 794.9853221939999, 792.6858484439999, 792.6858484439999, 792.6858484439999, 792.6858484439999, 792.6858484439999, 792.6858484439999, 792.6858484439999, 791.5379511479999, 791.5379511479999, 791.5379511479999, 791.5379511479999, 794.4113735459999, 794.4113735459999, 794.4113735459999, 792.6858484439999, 792.6858484439999, 792.6858484439999, 792.6858484439999, 794.4113735459999, 794.4113735459999, 794.4113735459999, 792.6858484439999, 792.6858484439999, 792.6858484439999, 792.6858484439999, 792.6858484439999, 792.6858484439999, 792.6858484439999, 794.4113735459999, 794.4113735459999, 794.4113735459999, 793.2634762499999, 793.2634762499999, 793.2634762499999, 793.2634762499999, 794.4113735459999, 794.4113735459999, 794.4113735459999, 792.6858484439999, 792.6858484439999, 792.6858484439999, 792.6858484439999, 794.4113735459999, 794.4113735459999, 794.4113735459999, 792.6858484439999, 792.6858484439999, 792.6858484439999, 793.2634762499999, 793.2634762499999], \"power_mean\": 764.3747185134666, \"energy_millijoules\": 46726.868639658634, \"energy_joules\": 46.72686863965863, \"coremark_score\": 4090.113378, \"coremarks_per_mhz\": 4.54457042, \"ulpmark_cm_score\": 5.350240820285071}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [257.51417722800005, 257.51417722800005, 124.41463168400003, 124.41463168400003], \"power_mean\": 190.96440445600004, \"energy_millijoules\": 954.8220222800002, \"energy_joules\": 0.9548220222800001}}, \"1000000\": {\"active\": {\"elapsed_sec\": 54.518345817, \"elapsed_ns\": 54518345817, \"power_samples\": [174.12740969400002, 173.886930546, 173.886930546, 915.6305905459999, 915.6305905459999, 915.6305905459999, 915.6305905459999, 919.650244114, 919.650244114, 919.650244114, 918.50387125, 918.50387125, 918.50387125, 919.650244114, 919.650244114, 919.650244114, 919.650244114, 921.3734776819999, 921.3734776819999, 921.3734776819999, 920.2234305459999, 920.2234305459999, 920.2234305459999, 920.2234305459999, 922.5198505459999, 922.5198505459999, 922.5198505459999, 919.077057682, 919.077057682, 919.077057682, 917.845634216, 922.5198505459999, 922.5198505459999, 921.283848898, 920.7114246819999, 920.7114246819999, 920.7114246819999, 920.7114246819999, 922.432366716, 922.432366716, 922.432366716, 920.139000466, 920.139000466, 920.139000466, 920.139000466, 920.139000466, 920.139000466, 920.139000466, 919.5665762499999, 919.5665762499999, 919.5665762499999, 920.7114246819999, 920.7114246819999], \"power_mean\": 877.78678113, \"energy_millijoules\": 47855.483287236624, \"energy_joules\": 47.85548328723662, \"coremark_score\": 4586.14617, \"coremarks_per_mhz\": 4.58614617, \"ulpmark_cm_score\": 5.224061754835034}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [383.088031956, 129.45457000000002, 129.45457000000002, 129.62558], \"power_mean\": 192.905687989, \"energy_millijoules\": 964.528439945, \"energy_joules\": 0.9645284399449999}}, \"1100000\": {\"active\": {\"elapsed_sec\": 49.415073982, \"elapsed_ns\": 49415073982, \"power_samples\": [241.63315768200002, 241.30259046600003, 240.97202325000003, 1132.47524775, 1132.47524775, 1132.47524775, 1137.0558727500002, 1137.0558727500002, 1137.0558727500002, 1137.0558727500002, 1139.91784725, 1139.91784725, 1139.91784725, 1139.91784725, 1139.91784725, 1139.91784725, 1139.91784725, 1142.7834862500001, 1141.2505037500002, 1141.2505037500002, 1141.63649775, 1140.105044568, 1140.105044568, 1140.105044568, 1142.3923033180001, 1142.3923033180001, 1142.3923033180001, 1140.6759443520002, 1140.6759443520002, 1140.6759443520002, 1140.6759443520002, 1142.3923033180001, 1142.3923033180001, 1142.3923033180001, 1140.6759443520002, 1140.6759443520002, 1140.6759443520002, 1140.6759443520002, 1140.6759443520002, 1140.6759443520002, 1140.6759443520002, 1143.5377625, 1143.5377625, 1143.5377625, 1141.821403534, 1141.821403534, 1141.821403534, 1141.821403534], \"power_mean\": 1084.0813785628752, \"energy_millijoules\": 53569.96152419303, \"energy_joules\": 53.56996152419303, \"coremark_score\": 5059.704513, \"coremarks_per_mhz\": 4.599731375454545, \"ulpmark_cm_score\": 4.666794466281185}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [619.866650592, 227.39870059199998, 227.39870059199998, 227.699492524], \"power_mean\": 325.590886075, \"energy_millijoules\": 1627.9544303750001, \"energy_joules\": 1.6279544303750002}}, \"1200000\": {\"active\": {\"elapsed_sec\": 45.337714021, \"elapsed_ns\": 45337714021, \"power_samples\": [230.09212275000002, 683.79875375, 683.79875375, 682.87652125, 1283.0486439540002, 1283.0486439540002, 1283.0486439540002, 1283.0486439540002, 1288.760983818, 1288.760983818, 1288.760983818, 1288.760983818, 1288.760983818, 1288.760983818, 1288.760983818, 1291.615326386, 1291.615326386, 1291.615326386, 1291.045188818, 1291.045188818, 1291.045188818, 1291.045188818, 1293.3293938180002, 1293.3293938180002, 1293.3293938180002, 1291.045188818, 1291.045188818, 1291.045188818, 1291.045188818, 1293.3293938180002, 1293.3293938180002, 1293.3293938180002, 1291.615326386, 1289.8792719540002, 1289.8792719540002, 1291.0216725, 1291.0216725, 1291.0216725, 1291.0216725, 1293.3028237500002, 1293.3028237500002, 1293.3028237500002, 1292.1604232040002, 1292.1604232040002], \"power_mean\": 1224.930939650091, \"energy_millijoules\": 55535.56863733063, \"energy_joules\": 55.535568637330634, \"coremark_score\": 5514.746432, \"coremarks_per_mhz\": 4.595622026666667, \"ulpmark_cm_score\": 4.501619523023155}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [366.493035888, 366.493035888, 366.493035888, 238.94187559199997], \"power_mean\": 334.605245814, \"energy_millijoules\": 1673.02622907, \"energy_joules\": 1.67302622907}}, \"1300000\": {\"active\": {\"elapsed_sec\": 42.145806561, \"elapsed_ns\": 42145806561, \"power_samples\": [261.226784784, 260.51068285200006, 260.51068285200006, 1473.80998625, 1473.80998625, 1473.80998625, 1484.6282156580003, 1484.6282156580003, 1484.6282156580003, 1484.6282156580003, 1490.325281886, 1490.325281886, 1490.325281886, 1488.047184386, 1488.047184386, 1488.047184386, 1488.047184386, 1489.7566687500002, 1489.7566687500002, 1489.7566687500002, 1488.047184386, 1486.0431621700002, 1486.0431621700002, 1486.0431621700002, 1487.7503550000001, 1487.7503550000001, 1487.7503550000001, 1486.0431621700002, 1486.0431621700002, 1486.0431621700002, 1486.0431621700002, 1488.8860568400003, 1488.8860568400003, 1488.8860568400003, 1486.6110130900001, 1486.6110130900001, 1486.6110130900001, 1484.33596934, 1484.33596934, 1484.33596934, 1484.33596934], \"power_mean\": 1396.391732513366, \"energy_millijoules\": 58852.055841887974, \"energy_joules\": 58.852055841887974, \"coremark_score\": 5932.6056, \"coremarks_per_mhz\": 4.563542769230769, \"ulpmark_cm_score\": 4.247939964436424}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [844.99368366, 246.69719374999997, 247.02394499999997, 247.02394499999997], \"power_mean\": 396.43469185249995, \"energy_millijoules\": 1982.1734592624998, \"energy_joules\": 1.9821734592624998}}, \"1400000\": {\"active\": {\"elapsed_sec\": 39.100356018, \"elapsed_ns\": 39100356018, \"power_samples\": [357.54221125000004, 1012.032308658, 1012.032308658, 1010.6627042259998, 1010.6627042259998, 1770.190021488, 1770.190021488, 1770.190021488, 1774.1615674999998, 1774.1615674999998, 1774.1615674999998, 1777.563156726, 1777.563156726, 1777.563156726, 1775.161384794, 1780.8279037500001, 1780.8279037500001, 1780.8279037500001, 1780.258714066, 1780.258714066, 1780.258714066, 1780.258714066, 1783.09378625, 1783.09378625, 1783.09378625, 1782.5245965660001, 1782.5245965660001, 1782.5245965660001, 1782.5245965660001, 1784.790479066, 1784.790479066, 1784.790479066, 1783.659350522, 1783.659350522, 1783.659350522, 1783.659350522, 1786.490797294, 1786.490797294], \"power_mean\": 1661.8085948777896, \"energy_millijoules\": 64977.3076934939, \"energy_joules\": 64.9773076934939, \"coremark_score\": 6394.679627, \"coremarks_per_mhz\": 4.567628305, \"ulpmark_cm_score\": 3.847497055114707}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [423.086665092, 423.086665092, 423.086665092, 368.40439999999995], \"power_mean\": 409.41609881899996, \"energy_millijoules\": 2047.0804940949997, \"energy_joules\": 2.047080494095}}, \"1500000\": {\"active\": {\"elapsed_sec\": 36.254193143, \"elapsed_ns\": 36254193143, \"power_samples\": [374.74093125, 373.71487125, 1670.367517056, 1670.367517056, 1668.10392609, 1668.10392609, 2018.3690510899996, 2018.3690510899996, 2018.3690510899996, 2025.1483760899998, 2025.1483760899998, 2025.1483760899998, 2025.1483760899998, 2028.60917875, 2028.60917875, 2028.60917875, 2029.172456374, 2029.172456374, 2029.172456374, 2030.8659, 2030.8659, 2030.8659, 2030.8659, 2035.3793425000001, 2035.3793425000001, 2035.3793425000001, 2034.812454122, 2034.812454122, 2034.812454122, 2034.812454122, 2038.762618998, 2038.762618998, 2038.762618998, 2037.0691753719998, 2037.0691753719998], \"power_mean\": 1894.677768672, \"energy_millijoules\": 68690.01376918296, \"energy_joules\": 68.69001376918295, \"coremark_score\": 6896.741979, \"coremarks_per_mhz\": 4.597827986, \"ulpmark_cm_score\": 3.639539232588709}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [379.987117398, 379.987117398, 379.987117398, 379.987117398], \"power_mean\": 379.987117398, \"energy_millijoules\": 1899.93558699, \"energy_joules\": 1.89993558699}}, \"1600000\": {\"active\": {\"elapsed_sec\": 34.100115349, \"elapsed_ns\": 34100115349, \"power_samples\": [403.17134375, 400.96042875, 400.40770000000003, 2339.8713983259995, 2336.6871041779996, 2336.6871041779996, 2367.0309622259992, 2367.0309622259992, 2367.0309622259992, 2367.0309622259992, 2382.2028912499995, 2378.9567549999997, 2378.9567549999997, 2381.7614900099998, 2381.7614900099998, 2381.7614900099998, 2381.7614900099998, 2389.0552375199995, 2389.0552375199995, 2389.0552375199995, 2387.93478, 2387.93478, 2387.93478, 2387.93478, 2385.69027375, 2385.69027375, 2385.69027375, 2385.69027375, 2385.69027375, 2382.43497625, 2382.43497625, 2391.9602527939996, 2391.9602527939996], \"power_mean\": 2198.461149962848, \"energy_millijoules\": 74967.7788040283, \"energy_joules\": 74.9677788040283, \"coremark_score\": 7332.453439, \"coremarks_per_mhz\": 4.582783399375, \"ulpmark_cm_score\": 3.3347660019849292}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1396.7965464319998, 405.31629286399993, 405.855277296, 405.855277296], \"power_mean\": 653.455848472, \"energy_millijoules\": 3267.27924236, \"energy_joules\": 3.26727924236}}, \"1700000\": {\"active\": {\"elapsed_sec\": 31.94834964, \"elapsed_ns\": 31948349640, \"power_samples\": [415.61676262400005, 413.32950876000007, 2177.8997458819995, 2174.9231067339997, 2174.9231067339997, 2171.946467586, 2689.430623362, 2689.430623362, 2689.430623362, 2705.078038362, 2705.078038362, 2701.3730773959996, 2701.3730773959996, 2714.209645, 2714.209645, 2714.209645, 2718.113475938, 2718.113475938, 2718.113475938, 2723.13881, 2723.13881, 2719.4040737500004, 2719.4040737500004, 2725.53180179, 2725.53180179, 2725.53180179, 2724.97538411, 2724.97538411, 2724.97538411, 2724.97538411, 2733.89233411], \"power_mean\": 2496.847651811484, \"energy_millijoules\": 79770.16177788627, \"energy_joules\": 79.77016177788627, \"coremark_score\": 7825.950853, \"coremarks_per_mhz\": 4.603500501764706, \"ulpmark_cm_score\": 3.1340039236237893}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [427.138546716, 427.707306432, 427.707306432, 427.707306432], \"power_mean\": 427.565116503, \"energy_millijoules\": 2137.825582515, \"energy_joules\": 2.137825582515}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 2}}"
  },
  {
    "path": "results/exynos5250/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: \nOffline CPUs: cpu1 \nSampling power every 1000 ms\nBaseline power usage: 7 mW\n\n\n===== CPU 1 =====\nFrequencies: 200 300 400 500 600 700 800 900 1000 1100 1200 1300 1400 1500 1600 1700\n\n 200:   909     4.5 C/MHz    132 mW   36.2 J    6.9 I/mJ   275.0 s\n 300:  1366     4.6 C/MHz    212 mW   38.7 J    6.5 I/mJ   183.0 s\n 400:  1821     4.6 C/MHz    286 mW   39.3 J    6.4 I/mJ   137.3 s\n 500:  2253     4.5 C/MHz    375 mW   41.7 J    6.0 I/mJ   111.0 s\n 600:  2740     4.6 C/MHz    446 mW   40.7 J    6.1 I/mJ    91.2 s\n 700:  3199     4.6 C/MHz    513 mW   40.1 J    6.2 I/mJ    78.2 s\n 800:  3673     4.6 C/MHz    678 mW   46.1 J    5.4 I/mJ    68.1 s\n 900:  4090     4.5 C/MHz    764 mW   46.7 J    5.4 I/mJ    61.1 s\n1000:  4586     4.6 C/MHz    878 mW   47.9 J    5.2 I/mJ    54.5 s\n1100:  5060     4.6 C/MHz   1084 mW   53.6 J    4.7 I/mJ    49.4 s\n1200:  5515     4.6 C/MHz   1225 mW   55.5 J    4.5 I/mJ    45.3 s\n1300:  5933     4.6 C/MHz   1396 mW   58.9 J    4.2 I/mJ    42.1 s\n1400:  6395     4.6 C/MHz   1662 mW   65.0 J    3.8 I/mJ    39.1 s\n1500:  6897     4.6 C/MHz   1895 mW   68.7 J    3.6 I/mJ    36.3 s\n1600:  7332     4.6 C/MHz   2198 mW   75.0 J    3.3 I/mJ    34.1 s\n1700:  7826     4.6 C/MHz   2497 mW   79.8 J    3.1 I/mJ    31.9 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/exynos5250/main/uptime.txt",
    "content": " 05:03:33 up 37 min,  load average: 0.82, 0.84, 0.73\n"
  },
  {
    "path": "results/exynos5250/main/versions.txt",
    "content": "Kernel: Linux version 3.4.67-cyanogenmod-ge66cf86-dirty (dees_troy@ded1.ktechnology.net) (gcc version 4.6.x-google 20120106 (prerelease) (GCC) ) #1 SMP PREEMPT Tue Nov 18 16:01:32 UTC 2014\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/exynos5250/voltages.txt",
    "content": "1.200000=925000 1.300000=937500 1.400000=950000 1.500000=975000 1.600000=1000000 1.700000=1012500 1.800000=1025000 1.900000=1050000 1.1000000=1075000 1.1100000=1100000 1.1200000=1125000 1.1300000=1150000 1.1400000=1200000 1.1500000=1225000 1.1600000=1250000 1.1700000=1300000\n"
  },
  {
    "path": "results/exynos7880/main/cmdline.txt",
    "content": "console=ram loglevel=4 sec_debug.level=0 sec_watchdog.sec_pet=5 DynSysLog=1 androidboot.debug_level=0x4f4c androidboot.ap_serial=REDACTED sec_debug.sjl=1 ess_setup=0x46000000 sec_tima_log=0x200000@0x47002000 sec_avc_log=0x40000@0x47204000 sec_tsp_log=0x40000@0x47246000 sec_debug.base=0x100000@0x47288000 auto_summary_log=0x10000@0x4738a000 charging_mode=0x3100 s3cfb.bootloaderfb=0x67000000 lcdtype=4259858 consoleblank=0 vmalloc=384m sec_debug.reset_reason=7 sec_reset.reset_reason=7 ehci_hcd.park=3 oops=panic pmic_info=67 ccic_info=1 cordon=55df890c09e686ccd5a856f24c517573 connie=SM-A520F_OPEN_EUR_9f53e0782f686eb4187f2f89fd83358c fg_reset=0 androidboot.emmc_checksum=3 androidboot.odin_download=1 androidboot.bootloader=A520FXXUGCTI9 androidboot.selinux=enforcing androidboot.security_mode=1526595584 androidboot.ucs_mode=0 androidboot.hw_rev=8 androidboot.hardware=samsungexynos7880 androidboot.warranty_bit=1 androidboot.wb.hs=030c sec_debug.bin=A androidboot.hmac_mismatch=0 androidboot.sec_atd.tty=/dev/ttySAC2 androidboot.serialno=REDACTED snd_soc_core.pmdown_time=1000 androidboot.em.did=REDACTED androidboot.em.model=SM-A520F androidboot.em.status=0x0 reserve-fimc=0 firmware_class.path=/vendor/firmware factory_mode=0\n"
  },
  {
    "path": "results/exynos7880/main/cpuinfo.txt",
    "content": "processor\t: 0\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 1\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 2\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 3\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 4\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 5\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 6\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 7\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\n"
  },
  {
    "path": "results/exynos7880/main/device.txt",
    "content": "Model: Samsung A5Y17 LTE EUR HWID08 board based on Exynos 7880;\nCompatible: samsung, A5Y17 LTE EUR OPEN 08;samsung,exynos7880;\n"
  },
  {
    "path": "results/exynos7880/main/kernel.log",
    "content": "[ 2615.616284] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 16d)\n[ 2615.616317] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-90)mA\n[ 2615.869653] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 192)\n[ 2615.869684] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2616.122938] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 180)\n[ 2616.122971] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-94)mA\n[ 2616.376304] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 171)\n[ 2616.376336] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-91)mA\n[ 2616.629568] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a2)\n[ 2616.629600] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2616.882872] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15e)\n[ 2616.882905] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-86)mA\n[ 2617.136237] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19a)\n[ 2617.136270] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2617.389483] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 187)\n[ 2617.389515] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2617.642709] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 198)\n[ 2617.642741] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2617.895992] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18d)\n[ 2617.896024] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2618.149306] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 180)\n[ 2618.149339] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-94)mA\n[ 2618.402449] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 193)\n[ 2618.402480] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2618.655792] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18a)\n[ 2618.655824] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2618.909080] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b1)\n[ 2618.909113] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2619.023126] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2619.162291] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18e)\n[ 2619.162318] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2619.415657] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18d)\n[ 2619.415687] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2619.668897] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18a)\n[ 2619.668930] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2619.922179] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 192)\n[ 2619.922211] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2620.003200] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2620.175572] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18e)\n[ 2620.175600] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2620.428884] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 161)\n[ 2620.428915] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-87)mA\n[ 2620.682135] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19d)\n[ 2620.682167] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2620.935477] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18f)\n[ 2620.935510] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2621.189031] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 156)\n[ 2621.189064] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-84)mA\n[ 2621.442341] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 185)\n[ 2621.442372] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 2621.695553] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18f)\n[ 2621.695585] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2621.948788] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a1)\n[ 2621.948820] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2621.954367] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (178) data1 (125) \n[ 2621.955131] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3927), src (0x01)\n[ 2621.962109] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3926)\n[ 2621.962139] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6633) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 2621.962163] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6633), ocv (39744)\n[ 2621.963523] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a1)\n[ 2621.963545] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2621.965944] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 180), avg current (-94)mA\n[ 2621.965968] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6633)%\n[ 2621.967346] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (178) data1 (125) \n[ 2621.968016] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3927), src (0x01)\n[ 2621.969460] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2111)\n[ 2621.970172] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2111)\n[ 2621.970881] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(239), Temp-ADC(2049)\n[ 2621.972944] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 2621.975677] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (112) data1 (42) \n[ 2621.988689] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (83) data1 (10) \n[ 2621.988712] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6452) \n[ 2621.988737] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6630), previous soc (6633), diff (0), FG_mode(0)\n[ 2621.991096] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 180), avg current (-94)mA\n[ 2621.991119] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6630)%\n[ 2622.043632] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3925)\n[ 2622.043671] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 66\n[ 2622.050741] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3926)\n[ 2622.052080] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (178) data1 (125) \n[ 2622.052763] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3927), src (0x01)\n[ 2622.054102] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19c)\n[ 2622.054125] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2622.054153] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 2622.054186] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2622.054865] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 2622.054893] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(66.3), raw_soc(66.3)\n[ 2622.054924] sec-battery battery: sec_bat_get_battery_info:Vnow(3927mV),Inow(-102mA),Imax(450mA),SOC(66%),Tbat(232),Tusb(0),Tchg(239),Twpc(0)\n[ 2622.054957] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 2622.054982] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 2622.055669] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(232)\n[ 2622.055692] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 2622.055715] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 2622.055739] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 2622.055779] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 2622.055869] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2622.202338] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19c)\n[ 2622.202368] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2622.455793] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18b)\n[ 2622.455824] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2622.708995] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 192)\n[ 2622.709026] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2622.962227] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 16f)\n[ 2622.962258] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-90)mA\n[ 2623.215537] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 199)\n[ 2623.215569] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2623.468834] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 2623.468865] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2623.722087] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 193)\n[ 2623.722120] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2623.975367] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 189)\n[ 2623.975399] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2624.228704] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 178)\n[ 2624.228737] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-92)mA\n[ 2624.482029] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 183)\n[ 2624.482063] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 2624.735281] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 194)\n[ 2624.735314] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2624.988520] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 190)\n[ 2624.988553] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2625.023124] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2625.241757] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19a)\n[ 2625.241785] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2625.495117] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18f)\n[ 2625.495149] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2625.748378] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 184)\n[ 2625.748410] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 2626.001655] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 189)\n[ 2626.001687] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2626.254890] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17f)\n[ 2626.254922] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-94)mA\n[ 2626.508207] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18d)\n[ 2626.508239] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2626.761466] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18b)\n[ 2626.761497] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2627.014726] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 194)\n[ 2627.014759] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2627.268035] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17f)\n[ 2627.268068] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-94)mA\n[ 2627.521339] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18e)\n[ 2627.521370] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2627.774626] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ad)\n[ 2627.774658] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2628.027884] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 190)\n[ 2628.027917] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2628.281192] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18a)\n[ 2628.281225] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2628.534519] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 196)\n[ 2628.534552] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2628.787726] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 16b)\n[ 2628.787758] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-89)mA\n[ 2629.040959] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 171)\n[ 2629.040993] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-91)mA\n[ 2629.294075] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18a)\n[ 2629.294106] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2629.547367] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 199)\n[ 2629.547399] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2629.800611] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 176)\n[ 2629.800644] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-92)mA\n[ 2630.053899] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 190)\n[ 2630.053931] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2630.307175] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b0)\n[ 2630.307207] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2630.560432] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18e)\n[ 2630.560464] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2630.813715] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18f)\n[ 2630.813748] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2631.003244] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2631.023122] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2631.067060] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 188)\n[ 2631.067085] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2631.320375] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 177)\n[ 2631.320406] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-92)mA\n[ 2631.573592] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 188)\n[ 2631.573625] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2631.826888] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 195)\n[ 2631.826921] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2632.080146] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 192)\n[ 2632.080178] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2632.333466] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 198)\n[ 2632.333498] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2632.586737] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 175)\n[ 2632.586767] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-92)mA\n[ 2632.840022] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 171)\n[ 2632.840055] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-91)mA\n[ 2633.093090] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17c)\n[ 2633.093122] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-93)mA\n[ 2633.346341] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17c)\n[ 2633.346373] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-93)mA\n[ 2633.599593] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 182)\n[ 2633.599625] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 2633.852884] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 180)\n[ 2633.852917] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-94)mA\n[ 2634.106277] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 189)\n[ 2634.106311] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2634.359550] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 160)\n[ 2634.359582] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-86)mA\n[ 2634.612788] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18d)\n[ 2634.612819] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2634.866148] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 189)\n[ 2634.866181] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2635.119459] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18c)\n[ 2635.119491] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2635.372726] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1af)\n[ 2635.372757] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2635.626040] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18c)\n[ 2635.626071] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2635.879312] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c7)\n[ 2635.879344] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2636.132650] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19a)\n[ 2636.132684] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2636.386040] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 190)\n[ 2636.386074] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2636.639300] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18b)\n[ 2636.639330] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2636.892003] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19f)\n[ 2636.892035] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2637.023125] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2637.145297] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17e)\n[ 2637.145324] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-94)mA\n[ 2637.398592] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18e)\n[ 2637.398623] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2637.651855] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 192)\n[ 2637.651887] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2637.905178] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18b)\n[ 2637.905210] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2638.158511] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 2638.158544] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2638.411821] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18c)\n[ 2638.411853] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2638.665141] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19c)\n[ 2638.665172] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2638.918398] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 193)\n[ 2638.918430] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2639.171700] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 188)\n[ 2639.171732] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2639.425038] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 191)\n[ 2639.425071] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2639.678270] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a0)\n[ 2639.678301] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2639.931507] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 184)\n[ 2639.931539] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 2640.184859] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a0)\n[ 2640.184894] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2640.438214] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 183)\n[ 2640.438246] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 2640.691414] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 171)\n[ 2640.691447] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-91)mA\n[ 2640.944668] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18e)\n[ 2640.944700] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2641.197927] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 195)\n[ 2641.197960] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2641.451219] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 169)\n[ 2641.451252] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-89)mA\n[ 2641.704483] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18c)\n[ 2641.704516] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2641.957739] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17c)\n[ 2641.957770] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-93)mA\n[ 2642.003202] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2642.211035] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18d)\n[ 2642.211065] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2642.464372] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 192)\n[ 2642.464404] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2642.717662] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b9)\n[ 2642.717694] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2642.970930] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 184)\n[ 2642.970960] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 2643.023142] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2643.224211] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 162)\n[ 2643.224240] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-87)mA\n[ 2643.477527] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18d)\n[ 2643.477559] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2643.730823] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ba)\n[ 2643.730855] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2643.984084] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 182)\n[ 2643.984116] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 2644.237403] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 16f)\n[ 2644.237434] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-90)mA\n[ 2644.490674] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 166)\n[ 2644.490707] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-88)mA\n[ 2644.743965] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18f)\n[ 2644.743997] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2644.997202] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18e)\n[ 2644.997234] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2645.250469] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17b)\n[ 2645.250499] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-93)mA\n[ 2645.503693] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19f)\n[ 2645.503724] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2645.756990] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17c)\n[ 2645.757021] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-93)mA\n[ 2646.010265] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18a)\n[ 2646.010297] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2646.263542] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 16e)\n[ 2646.263573] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-90)mA\n[ 2646.516768] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18f)\n[ 2646.516800] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2646.770069] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 158)\n[ 2646.770101] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-84)mA\n[ 2647.023345] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 185)\n[ 2647.023378] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 2647.276615] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ae)\n[ 2647.276648] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2647.529838] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18e)\n[ 2647.529872] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2647.783052] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 173)\n[ 2647.783084] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-91)mA\n[ 2648.036199] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 193)\n[ 2648.036232] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2648.289385] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c2)\n[ 2648.289418] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2648.542571] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a1)\n[ 2648.542602] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2648.795767] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 188)\n[ 2648.795800] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2649.023129] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2649.048951] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15e)\n[ 2649.048978] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-86)mA\n[ 2649.302147] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 196)\n[ 2649.302177] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2649.555415] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 174)\n[ 2649.555447] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-91)mA\n[ 2649.808733] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 189)\n[ 2649.808764] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2650.061989] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18c)\n[ 2650.062021] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2650.315271] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 192)\n[ 2650.315304] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2650.568527] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c3)\n[ 2650.568559] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2650.821852] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 181)\n[ 2650.821885] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-94)mA\n[ 2651.075280] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b5)\n[ 2651.075313] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2651.328640] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 198)\n[ 2651.328672] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2651.581980] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15d)\n[ 2651.582013] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-86)mA\n[ 2651.835307] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18d)\n[ 2651.835339] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2652.058088] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (178) data1 (125) \n[ 2652.058907] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3927), src (0x01)\n[ 2652.066311] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3926)\n[ 2652.066343] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6630) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 2652.066366] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6630), ocv (39742)\n[ 2652.067809] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17c)\n[ 2652.067832] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-93)mA\n[ 2652.070219] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 17f), avg current (-94)mA\n[ 2652.070243] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6630)%\n[ 2652.071543] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (178) data1 (125) \n[ 2652.072206] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3927), src (0x01)\n[ 2652.074014] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(231), Temp-ADC(2114)\n[ 2652.075144] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(231), Temp-ADC(2114)\n[ 2652.076363] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(239), Temp-ADC(2049)\n[ 2652.078467] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 2652.081041] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (106) data1 (42) \n[ 2652.088096] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17c)\n[ 2652.088120] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-93)mA\n[ 2652.094321] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (82) data1 (10) \n[ 2652.094346] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6450) \n[ 2652.094372] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6627), previous soc (6630), diff (0), FG_mode(0)\n[ 2652.096587] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 17f), avg current (-94)mA\n[ 2652.096611] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6627)%\n[ 2652.149368] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3925)\n[ 2652.149412] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 66\n[ 2652.156250] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3926)\n[ 2652.157563] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (178) data1 (125) \n[ 2652.158233] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3927), src (0x01)\n[ 2652.159544] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17c)\n[ 2652.159567] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-93)mA\n[ 2652.159594] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 2652.159627] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2652.160303] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 2652.160330] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(66.2), raw_soc(66.2)\n[ 2652.160362] sec-battery battery: sec_bat_get_battery_info:Vnow(3927mV),Inow(-93mA),Imax(450mA),SOC(66%),Tbat(231),Tusb(0),Tchg(239),Twpc(0)\n[ 2652.160395] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 2652.160421] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 2652.161096] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(231)\n[ 2652.161121] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 2652.161143] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 2652.161166] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 2652.161206] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 2652.161300] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2652.341743] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18c)\n[ 2652.341772] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2652.595222] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19f)\n[ 2652.595254] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2652.848430] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 172)\n[ 2652.848462] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-91)mA\n[ 2653.003151] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2653.101949] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 186)\n[ 2653.101977] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2653.355244] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 181)\n[ 2653.355275] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-94)mA\n[ 2653.608527] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 199)\n[ 2653.608560] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2653.861836] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 189)\n[ 2653.861868] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2654.115241] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17b)\n[ 2654.115274] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-93)mA\n[ 2654.368595] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 187)\n[ 2654.368626] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2654.621870] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 158)\n[ 2654.621903] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-84)mA\n[ 2654.875188] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 196)\n[ 2654.875221] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2655.023113] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2655.128570] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c1)\n[ 2655.128598] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2655.381918] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18e)\n[ 2655.381951] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2655.635204] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17d)\n[ 2655.635237] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-94)mA\n[ 2655.888443] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18b)\n[ 2655.888475] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2656.141793] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17d)\n[ 2656.141826] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-94)mA\n[ 2656.395193] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 184)\n[ 2656.395226] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 2656.648485] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19f)\n[ 2656.648517] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2656.901761] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19c)\n[ 2656.901792] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2657.155141] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 189)\n[ 2657.155174] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2657.408479] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 182)\n[ 2657.408511] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 2657.661749] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 182)\n[ 2657.661782] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 2657.915056] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18e)\n[ 2657.915087] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2658.168371] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 2658.168402] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2658.421735] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 189)\n[ 2658.421767] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2658.675037] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2658.675069] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2658.928315] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 176)\n[ 2658.928347] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-92)mA\n[ 2659.181618] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 179)\n[ 2659.181651] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-93)mA\n[ 2659.434984] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 190)\n[ 2659.435017] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2659.688297] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 175)\n[ 2659.688330] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-92)mA\n[ 2659.941571] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17c)\n[ 2659.941600] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-93)mA\n[ 2660.194974] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17c)\n[ 2660.195008] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-93)mA\n[ 2660.448355] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 182)\n[ 2660.448387] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 2660.701627] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 190)\n[ 2660.701657] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2660.954935] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 167)\n[ 2660.954967] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-88)mA\n[ 2661.023132] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2661.208231] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18f)\n[ 2661.208259] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2661.461523] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18c)\n[ 2661.461555] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2661.714873] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18f)\n[ 2661.714903] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2661.968196] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a0)\n[ 2661.968229] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2662.221503] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 189)\n[ 2662.221535] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2662.474908] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 190)\n[ 2662.474941] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2662.728254] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18a)\n[ 2662.728286] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2662.981539] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15f)\n[ 2662.981572] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-86)mA\n[ 2663.234856] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18f)\n[ 2663.234887] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2663.488072] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 168)\n[ 2663.488110] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-88)mA\n[ 2663.753708]  2735     3.2 C/MHz     77 mW    8.4 J   35.5 I/mJ   109.7 s\n                962: \n[ 2664.003198] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2667.023114] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2667.115555] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 141)\n[ 2667.115584] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-79)mA\n[ 2667.368811] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 13f)\n[ 2667.368839] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-78)mA\n[ 2667.621858] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15d)\n[ 2667.621884] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-86)mA\n[ 2667.874980] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 13d)\n[ 2667.875007] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-78)mA\n[ 2668.128112] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 147)\n[ 2668.128140] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-80)mA\n[ 2668.381215] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 144)\n[ 2668.381243] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-80)mA\n[ 2668.634272] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 144)\n[ 2668.634298] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-80)mA\n[ 2668.887346] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15c)\n[ 2668.887374] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-85)mA\n[ 2669.140457] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 154)\n[ 2669.140485] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-84)mA\n[ 2669.393277] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 141)\n[ 2669.393303] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-79)mA\n[ 2669.646325] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 138)\n[ 2669.646352] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-77)mA\n[ 2669.899399] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 167)\n[ 2669.899427] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-88)mA\n[ 2670.152502] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 14a)\n[ 2670.152529] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-81)mA\n[ 2670.405653] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 13e)\n[ 2670.405680] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-78)mA\n[ 2670.658691] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 139)\n[ 2670.658718] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-77)mA\n[ 2670.911740] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 133)\n[ 2670.911766] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-75)mA\n[ 2671.164877] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 137)\n[ 2671.164904] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-76)mA\n[ 2671.417984] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 14c)\n[ 2671.418010] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-82)mA\n[ 2671.671033] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 147)\n[ 2671.671060] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-80)mA\n[ 2672.180590] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1aa)\n[ 2672.180622] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2672.433862] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b7)\n[ 2672.433890] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2672.686927] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 198)\n[ 2672.686953] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2672.939988] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2672.940015] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2673.023118] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2673.192894] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19a)\n[ 2673.192917] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2673.446056] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19c)\n[ 2673.446081] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2673.699072] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2673.699098] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2673.952089] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19d)\n[ 2673.952115] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2674.205176] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a2)\n[ 2674.205203] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2674.458251] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 183)\n[ 2674.458277] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 2674.711259] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a8)\n[ 2674.711284] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2674.964205] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2674.964231] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2675.003204] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2675.217284] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2675.217308] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2675.470352] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ca)\n[ 2675.470378] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2675.723377] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ab)\n[ 2675.723403] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2675.976386] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b1)\n[ 2675.976413] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2676.229433] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a2)\n[ 2676.229460] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2676.482496] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 180)\n[ 2676.482522] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-94)mA\n[ 2676.735593] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 199)\n[ 2676.735618] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2676.988615] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ac)\n[ 2676.988642] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2677.241642] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a8)\n[ 2677.241669] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2677.494802] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1da)\n[ 2677.494828] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2677.747855] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 194)\n[ 2677.747882] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2678.000889] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17c)\n[ 2678.000914] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-93)mA\n[ 2678.253936] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 2678.253962] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2678.506995] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15b)\n[ 2678.507022] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-85)mA\n[ 2678.760049] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 2678.760075] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2679.013073] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ce)\n[ 2679.013100] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2679.023125] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2679.266117] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2679.266141] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2679.519154] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ac)\n[ 2679.519180] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2679.772200] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a6)\n[ 2679.772228] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2680.025245] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 193)\n[ 2680.025271] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2680.278314] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1aa)\n[ 2680.278340] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2680.531324] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2680.531351] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2680.784387] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 169)\n[ 2680.784413] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-89)mA\n[ 2681.037413] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ab)\n[ 2681.037439] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2681.290448] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 195)\n[ 2681.290474] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2681.543461] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cd)\n[ 2681.543488] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2681.796429] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bd)\n[ 2681.796457] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2682.049516] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bd)\n[ 2682.049544] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2682.162947] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (164) data1 (125) \n[ 2682.163903] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3926), src (0x01)\n[ 2682.171186] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3926)\n[ 2682.171213] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6627) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 2682.171234] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6627), ocv (39741)\n[ 2682.172553] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a6)\n[ 2682.172573] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2682.174854] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 181), avg current (-94)mA\n[ 2682.174874] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6627)%\n[ 2682.176197] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (164) data1 (125) \n[ 2682.176867] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3926), src (0x01)\n[ 2682.178300] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2112)\n[ 2682.179040] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2112)\n[ 2682.179774] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(239), Temp-ADC(2049)\n[ 2682.181744] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 2682.184392] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (103) data1 (42) \n[ 2682.197356] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (81) data1 (10) \n[ 2682.197377] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6447) \n[ 2682.197400] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6625), previous soc (6627), diff (0), FG_mode(0)\n[ 2682.199673] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 181), avg current (-94)mA\n[ 2682.199693] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6625)%\n[ 2682.251970] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3925)\n[ 2682.252003] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 66\n[ 2682.258496] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3926)\n[ 2682.259813] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (164) data1 (125) \n[ 2682.260483] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3926), src (0x01)\n[ 2682.261800] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a6)\n[ 2682.261819] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2682.261843] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 2682.261871] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2682.262540] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 2682.262564] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(66.2), raw_soc(66.2)\n[ 2682.262592] sec-battery battery: sec_bat_get_battery_info:Vnow(3926mV),Inow(-104mA),Imax(450mA),SOC(66%),Tbat(232),Tusb(0),Tchg(239),Twpc(0)\n[ 2682.262618] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 2682.262641] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 2682.263317] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(232)\n[ 2682.263337] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 2682.263356] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 2682.263374] sec_bat_calculate_safety_time : SAFETY TIME RESET! DISCHARGING CNT(5)\n[ 2682.263407] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 2682.263483] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2682.302256] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2682.302278] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2682.555337] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a7)\n[ 2682.555364] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2682.808386] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 199)\n[ 2682.808414] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2683.061433] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19e)\n[ 2683.061460] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2683.314453] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a1)\n[ 2683.314479] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2683.567471] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a2)\n[ 2683.567499] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2683.820537] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19f)\n[ 2683.820564] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2684.073581] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a7)\n[ 2684.073608] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2684.326628] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18a)\n[ 2684.326656] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2684.579687] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 2684.579714] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2684.832728] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b9)\n[ 2684.832755] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2685.023096] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2685.085883] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ae)\n[ 2685.085906] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2685.338929] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b9)\n[ 2685.338954] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2685.591849] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a8)\n[ 2685.591875] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2685.844858] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 2685.844885] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2686.003174] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2686.097976] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ae)\n[ 2686.098000] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2686.351010] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 2686.351036] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2686.604015] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2686.604041] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2686.857018] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 193)\n[ 2686.857044] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2687.110074] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a9)\n[ 2687.110101] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2687.363144] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b0)\n[ 2687.363171] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2687.616170] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ad)\n[ 2687.616197] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2687.869171] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 193)\n[ 2687.869199] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2688.122164] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ae)\n[ 2688.122192] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2688.375176] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19f)\n[ 2688.375203] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2688.628149] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b0)\n[ 2688.628176] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2688.881160] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ad)\n[ 2688.881186] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2689.134252] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b0)\n[ 2689.134279] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2689.387325] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bf)\n[ 2689.387352] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2689.640261] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 195)\n[ 2689.640287] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2689.893069] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 181)\n[ 2689.893094] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-94)mA\n[ 2690.146160] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a4)\n[ 2690.146187] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2690.399267] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 174)\n[ 2690.399293] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-91)mA\n[ 2690.652280] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1aa)\n[ 2690.652306] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2690.905299] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2690.905325] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2691.023117] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2691.157890] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19c)\n[ 2691.157913] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2691.410958] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b7)\n[ 2691.410984] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2691.663972] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2691.663998] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2691.916994] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bd)\n[ 2691.917020] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2692.170047] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18e)\n[ 2692.170073] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2692.423130] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 183)\n[ 2692.423157] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 2692.676197] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b7)\n[ 2692.676223] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2692.929221] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c2)\n[ 2692.929246] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2693.182250] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 199)\n[ 2693.182277] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2693.435322] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17f)\n[ 2693.435348] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-94)mA\n[ 2693.688365] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19f)\n[ 2693.688391] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2693.941377] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 187)\n[ 2693.941404] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2694.194396] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b0)\n[ 2694.194423] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2694.447456] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a4)\n[ 2694.447483] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2694.700504] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b8)\n[ 2694.700530] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2694.953514] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 196)\n[ 2694.953540] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2695.206558] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17d)\n[ 2695.206584] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-94)mA\n[ 2695.459611] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a8)\n[ 2695.459637] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2695.712658] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b6)\n[ 2695.712685] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2695.965682] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a3)\n[ 2695.965709] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2696.218738] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bc)\n[ 2696.218765] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2696.471774] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2696.471800] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2696.724868] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19e)\n[ 2696.724895] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2696.977924] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 191)\n[ 2696.977950] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2697.003186] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2697.023114] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2697.230978] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19d)\n[ 2697.231000] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2697.484005] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a1)\n[ 2697.484030] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2697.737051] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b3)\n[ 2697.737078] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2697.990119] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ad)\n[ 2697.990145] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2698.243142] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2698.243168] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2698.496128] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 190)\n[ 2698.496154] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2698.749167] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19e)\n[ 2698.749193] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2699.002224] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19f)\n[ 2699.002251] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2699.255242] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17a)\n[ 2699.255267] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-93)mA\n[ 2699.508244] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1af)\n[ 2699.508271] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2699.761285] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a6)\n[ 2699.761313] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2700.014346] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a3)\n[ 2700.014373] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2700.267413] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19d)\n[ 2700.267440] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2700.520469] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c3)\n[ 2700.520495] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2700.773527] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 2700.773554] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2701.026590] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 178)\n[ 2701.026616] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-92)mA\n[ 2701.279605] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b9)\n[ 2701.279631] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2701.532631] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ac)\n[ 2701.532657] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2701.785696] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 162)\n[ 2701.785721] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-87)mA\n[ 2702.038763] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ac)\n[ 2702.038790] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2702.291769] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 161)\n[ 2702.291797] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-87)mA\n[ 2702.544833] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a3)\n[ 2702.544859] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2702.797846] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 177)\n[ 2702.797872] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-92)mA\n[ 2703.023115] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2703.050841] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2703.050864] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2703.303678] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17b)\n[ 2703.303706] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-93)mA\n[ 2703.556703] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2703.556729] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2703.809709] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19b)\n[ 2703.809734] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2704.062628] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19f)\n[ 2704.062653] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2704.315825] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18a)\n[ 2704.315852] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2704.568873] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a6)\n[ 2704.568900] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2704.821896] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cd)\n[ 2704.821921] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2705.074912] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 193)\n[ 2705.074940] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2705.327906] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 195)\n[ 2705.327932] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2705.580850] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 190)\n[ 2705.580876] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2705.833764] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ac)\n[ 2705.833789] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2706.086768] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2706.086794] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2706.339830] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 16f)\n[ 2706.339857] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-90)mA\n[ 2706.592722] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2706.592749] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2706.845795] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b5)\n[ 2706.845822] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2707.098846] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ca)\n[ 2707.098872] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2707.351925] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a1)\n[ 2707.351951] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2707.605137] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a2)\n[ 2707.605163] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2707.858229] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a6)\n[ 2707.858256] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2708.003169] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2708.111316] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a8)\n[ 2708.111340] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2708.364429] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a8)\n[ 2708.364456] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2708.617515] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ac)\n[ 2708.617541] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2708.870573] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b4)\n[ 2708.870599] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2709.023127] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2709.123637] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ba)\n[ 2709.123660] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2709.376702] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b4)\n[ 2709.376728] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2709.629767] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 192)\n[ 2709.629794] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2709.882778] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2709.882804] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2710.135869] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 195)\n[ 2710.135894] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2710.388902] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19f)\n[ 2710.388928] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2710.641933] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b1)\n[ 2710.641959] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2710.895002] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19f)\n[ 2710.895027] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2711.148050] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2711.148077] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2711.401097] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19c)\n[ 2711.401124] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2711.654150] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b3)\n[ 2711.654177] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2711.907163] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19a)\n[ 2711.907188] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2712.160228] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b4)\n[ 2712.160256] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2712.265591] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (166) data1 (125) \n[ 2712.266595] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3926), src (0x01)\n[ 2712.273975] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3926)\n[ 2712.274003] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6625) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 2712.274024] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6625), ocv (39739)\n[ 2712.275317] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b4)\n[ 2712.275337] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2712.277567] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 190), avg current (-98)mA\n[ 2712.277588] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6625)%\n[ 2712.278880] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (166) data1 (125) \n[ 2712.279537] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3926), src (0x01)\n[ 2712.281213] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(231), Temp-ADC(2114)\n[ 2712.282021] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2112)\n[ 2712.282892] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(240), Temp-ADC(2048)\n[ 2712.285381] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 2712.288148] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (98) data1 (42) \n[ 2712.301012] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (80) data1 (10) \n[ 2712.301032] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6445) \n[ 2712.301054] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6622), previous soc (6625), diff (0), FG_mode(0)\n[ 2712.303417] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 190), avg current (-98)mA\n[ 2712.303437] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6622)%\n[ 2712.356428] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3925)\n[ 2712.356459] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 66\n[ 2712.363043] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3926)\n[ 2712.364361] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (166) data1 (125) \n[ 2712.365030] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3926), src (0x01)\n[ 2712.366343] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d8)\n[ 2712.366363] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2712.366388] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 2712.366414] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2712.367083] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 2712.367107] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(66.2), raw_soc(66.2)\n[ 2712.367134] sec-battery battery: sec_bat_get_battery_info:Vnow(3926mV),Inow(-107mA),Imax(450mA),SOC(66%),Tbat(231),Tusb(0),Tchg(240),Twpc(0)\n[ 2712.367162] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 2712.367185] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 2712.367859] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(231)\n[ 2712.367879] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 2712.367899] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 2712.367920] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 2712.367953] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 2712.368029] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2712.413470] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d8)\n[ 2712.413494] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2712.666712] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 196)\n[ 2712.666740] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2712.919788] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a8)\n[ 2712.919815] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2713.172815] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18e)\n[ 2713.172841] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2713.425894] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1af)\n[ 2713.425919] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2713.678854] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a7)\n[ 2713.678880] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2713.931903] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a8)\n[ 2713.931929] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2714.184983] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c9)\n[ 2714.185011] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2714.438012] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 199)\n[ 2714.438038] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2714.691063] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 196)\n[ 2714.691089] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2714.944111] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a3)\n[ 2714.944137] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2715.023092] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2715.197165] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bb)\n[ 2715.197188] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2715.450197] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ad)\n[ 2715.450222] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2715.703244] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cf)\n[ 2715.703270] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2715.956305] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 2715.956331] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2716.209373] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b6)\n[ 2716.209401] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2716.462411] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 198)\n[ 2716.462437] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2716.715450] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 195)\n[ 2716.715476] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2716.968522] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19f)\n[ 2716.968549] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2717.221538] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b4)\n[ 2717.221565] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2717.474542] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ac)\n[ 2717.474568] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2717.727554] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 190)\n[ 2717.727580] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2717.980619] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cd)\n[ 2717.980646] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2718.233683] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18b)\n[ 2718.233708] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2718.486705] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2718.486732] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2718.739723] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15c)\n[ 2718.739748] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-85)mA\n[ 2718.992570] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ab)\n[ 2718.992596] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2719.003156] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2719.245757] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ac)\n[ 2719.245780] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2719.498777] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b4)\n[ 2719.498803] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2719.751792] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 195)\n[ 2719.751817] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2720.004816] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b6)\n[ 2720.004844] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2720.257949] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1af)\n[ 2720.257977] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2720.510996] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 195)\n[ 2720.511022] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2720.763999] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ae)\n[ 2720.764024] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2721.017074] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17a)\n[ 2721.017100] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-93)mA\n[ 2721.023122] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2721.270148] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a6)\n[ 2721.270172] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2721.523171] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bd)\n[ 2721.523196] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2721.776187] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a2)\n[ 2721.776213] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2722.029171] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2722.029198] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2722.282235] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a8)\n[ 2722.282262] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2722.535268] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ce)\n[ 2722.535295] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2722.788253] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19f)\n[ 2722.788278] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2723.041244] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1af)\n[ 2723.041271] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2723.294146] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19f)\n[ 2723.294172] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2723.547126] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2723.547152] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2723.800149] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a2)\n[ 2723.800176] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2724.053190] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ba)\n[ 2724.053217] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2724.306282] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a2)\n[ 2724.306309] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2724.559348] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 191)\n[ 2724.559374] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2724.812363] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 2724.812388] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2725.065256] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b7)\n[ 2725.065282] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2725.318393] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19f)\n[ 2725.318418] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2725.571408] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a2)\n[ 2725.571434] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2725.824431] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a1)\n[ 2725.824459] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2726.077468] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c7)\n[ 2726.077494] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2726.330523] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a6)\n[ 2726.330570] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2726.583596] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1aa)\n[ 2726.583623] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2726.836647] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19e)\n[ 2726.836673] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2727.023106] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2727.089724] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bd)\n[ 2727.089747] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2727.342732] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19e)\n[ 2727.342759] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2727.595794] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 181)\n[ 2727.595820] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-94)mA\n[ 2727.848809] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ad)\n[ 2727.848835] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2728.101847] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17c)\n[ 2728.101874] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-93)mA\n[ 2728.354931] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a6)\n[ 2728.354958] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2728.608004] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a8)\n[ 2728.608031] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2728.861051] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a3)\n[ 2728.861077] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2729.114068] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2729.114095] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2729.367095] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2729.367122] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2729.620149] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15f)\n[ 2729.620176] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-86)mA\n[ 2729.873199] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2729.873225] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2730.003212] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2730.126252] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ab)\n[ 2730.126276] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2730.379289] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a8)\n[ 2730.379316] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2730.632329] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 187)\n[ 2730.632356] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2730.885381] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1aa)\n[ 2730.885407] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2731.138407] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d7)\n[ 2731.138435] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2731.391410] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a2)\n[ 2731.391436] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2731.644447] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19c)\n[ 2731.644473] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2731.897498] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a9)\n[ 2731.897524] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2732.150562] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1da)\n[ 2732.150588] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2732.403459] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a0)\n[ 2732.403485] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2732.656435] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 191)\n[ 2732.656462] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2732.909462] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19a)\n[ 2732.909488] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2733.023110] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2733.162440] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a6)\n[ 2733.162463] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2733.415567] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1dc)\n[ 2733.415593] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2733.668593] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a7)\n[ 2733.668619] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2733.921654] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 2733.921680] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2734.174712] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2734.174739] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2734.427749] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 182)\n[ 2734.427775] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 2734.680775] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a2)\n[ 2734.680803] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2734.933852] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cd)\n[ 2734.933880] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2735.186924] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a3)\n[ 2735.186950] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2735.439931] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 199)\n[ 2735.439957] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2735.692742] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b0)\n[ 2735.692768] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2735.945870] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 196)\n[ 2735.945896] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2736.198969] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 2736.198996] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2736.452018] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 173)\n[ 2736.452043] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-91)mA\n[ 2736.705066] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a2)\n[ 2736.705092] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2736.958118] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c1)\n[ 2736.958146] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2737.211183] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a8)\n[ 2737.211209] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2737.464193] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b8)\n[ 2737.464219] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2737.717221] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a3)\n[ 2737.717248] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2737.970207] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18b)\n[ 2737.970234] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2738.223259] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b0)\n[ 2738.223285] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2738.476289] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 187)\n[ 2738.476315] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2738.729317] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a7)\n[ 2738.729344] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2738.982339] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c4)\n[ 2738.982365] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2739.023127] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2739.235398] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2739.235421] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2739.488440] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1dc)\n[ 2739.488466] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2739.741444] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ad)\n[ 2739.741469] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2739.994378] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18c)\n[ 2739.994404] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2740.247456] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1af)\n[ 2740.247484] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2740.500518] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 193)\n[ 2740.500544] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2740.753520] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a6)\n[ 2740.753546] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2741.003157] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2741.006603] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17e)\n[ 2741.006626] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-94)mA\n[ 2741.259678] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 2741.259704] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2741.512717] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c4)\n[ 2741.512744] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2741.765802] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19d)\n[ 2741.765829] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2742.018757] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2742.018783] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2742.271736] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19c)\n[ 2742.271763] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2742.370092] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (161) data1 (125) \n[ 2742.370958] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3925), src (0x01)\n[ 2742.377664] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3924)\n[ 2742.377691] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6622) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 2742.377712] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6622), ocv (39738)\n[ 2742.379005] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d7)\n[ 2742.379025] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2742.381255] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 191), avg current (-98)mA\n[ 2742.381275] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6622)%\n[ 2742.382568] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (161) data1 (125) \n[ 2742.383227] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3925), src (0x01)\n[ 2742.384904] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(231), Temp-ADC(2114)\n[ 2742.386063] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(231), Temp-ADC(2114)\n[ 2742.387010] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(240), Temp-ADC(2048)\n[ 2742.388947] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 2742.391508] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (92) data1 (42) \n[ 2742.404408] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (78) data1 (10) \n[ 2742.404427] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6440) \n[ 2742.404449] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6618), previous soc (6622), diff (0), FG_mode(0)\n[ 2742.406719] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 191), avg current (-98)mA\n[ 2742.406739] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6618)%\n[ 2742.459082] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3925)\n[ 2742.459114] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 66\n[ 2742.465650] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3924)\n[ 2742.466967] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (161) data1 (125) \n[ 2742.467635] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3925), src (0x01)\n[ 2742.468951] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d7)\n[ 2742.468971] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2742.468995] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 2742.469023] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2742.469690] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 2742.469714] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(66.1), raw_soc(66.1)\n[ 2742.469741] sec-battery battery: sec_bat_get_battery_info:Vnow(3925mV),Inow(-115mA),Imax(450mA),SOC(66%),Tbat(231),Tusb(0),Tchg(240),Twpc(0)\n[ 2742.469771] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 2742.469794] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 2742.470468] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(231)\n[ 2742.470489] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 2742.470508] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 2742.470529] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 2742.470562] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 2742.470639] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2742.524951] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d7)\n[ 2742.524975] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2742.778063] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a2)\n[ 2742.778089] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2743.031041] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19f)\n[ 2743.031068] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2743.284068] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a2)\n[ 2743.284096] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2743.537134] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a1)\n[ 2743.537160] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2743.790174] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b8)\n[ 2743.790200] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2744.042981] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bd)\n[ 2744.043051] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2744.296117] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1af)\n[ 2744.296145] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2744.549123] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a6)\n[ 2744.549149] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2744.802174] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ab)\n[ 2744.802202] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2745.023092] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2745.055231] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d3)\n[ 2745.055255] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2745.308262] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cd)\n[ 2745.308287] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2745.561336] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f7)\n[ 2745.561363] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2745.814411] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1db)\n[ 2745.814437] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2746.067480] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2746.067506] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2746.320530] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1be)\n[ 2746.320556] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2746.573571] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a7)\n[ 2746.573597] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2746.826626] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a4)\n[ 2746.826652] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2747.079647] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ac)\n[ 2747.079674] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2747.332677] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a8)\n[ 2747.332704] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2747.585769] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1aa)\n[ 2747.585796] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2747.838816] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 194)\n[ 2747.838842] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2748.091826] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a3)\n[ 2748.091852] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2748.344922] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18a)\n[ 2748.344948] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2748.597966] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19c)\n[ 2748.597992] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2748.851002] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cf)\n[ 2748.851030] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2749.104063] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a7)\n[ 2749.104089] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2749.357095] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ac)\n[ 2749.357122] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2749.610110] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a6)\n[ 2749.610136] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2749.863181] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 2749.863209] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2750.116257] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ac)\n[ 2750.116285] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2750.369311] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1be)\n[ 2750.369336] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2750.622330] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a9)\n[ 2750.622357] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2750.875194] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1be)\n[ 2750.875222] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2751.023108] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2751.128279] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a6)\n[ 2751.128302] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2751.381311] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a0)\n[ 2751.381336] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2751.634325] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 192)\n[ 2751.634351] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2751.887373] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19f)\n[ 2751.887399] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2752.003182] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2752.140497] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a8)\n[ 2752.140521] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2752.393459] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 188)\n[ 2752.393485] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2752.646495] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a8)\n[ 2752.646520] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2752.899533] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a6)\n[ 2752.899559] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2753.152594] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ab)\n[ 2753.152622] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2753.405612] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d5)\n[ 2753.405638] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2753.658612] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2753.658638] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2753.911617] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d2)\n[ 2753.911644] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2754.164665] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 2754.164691] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2754.417733] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bf)\n[ 2754.417759] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2754.670748] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19b)\n[ 2754.670775] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2754.923762] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 169)\n[ 2754.923789] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-89)mA\n[ 2755.176843] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a7)\n[ 2755.176871] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2755.429911] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bd)\n[ 2755.429938] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2755.682912] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ad)\n[ 2755.682938] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2755.935959] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b3)\n[ 2755.935984] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2756.189046] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b8)\n[ 2756.189073] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2756.442113] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a1)\n[ 2756.442139] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2756.695135] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a2)\n[ 2756.695160] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2756.948140] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 185)\n[ 2756.948166] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 2757.023119] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2757.201198] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a4)\n[ 2757.201221] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2757.454263] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bf)\n[ 2757.454288] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2757.707269] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a0)\n[ 2757.707296] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2757.960301] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19c)\n[ 2757.960327] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2758.213361] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b0)\n[ 2758.213388] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2758.466404] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f1)\n[ 2758.466429] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 2758.719411] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b6)\n[ 2758.719437] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2758.972338] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2758.972363] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2759.225345] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 199)\n[ 2759.225371] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2759.478387] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b0)\n[ 2759.478414] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2759.731423] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 198)\n[ 2759.731449] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2759.984461] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a6)\n[ 2759.984487] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2760.237548] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19d)\n[ 2760.237574] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2760.490618] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 183)\n[ 2760.490644] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 2760.743658] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b3)\n[ 2760.743683] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2760.996581] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b0)\n[ 2760.996607] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2761.249535] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a3)\n[ 2761.249561] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2761.502376] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a6)\n[ 2761.502402] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2761.755529] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1be)\n[ 2761.755556] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2762.008599] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a8)\n[ 2762.008627] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2762.261708] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b8)\n[ 2762.261735] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2762.514810] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a4)\n[ 2762.514836] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2762.767864] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 194)\n[ 2762.767889] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2763.003174] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2763.020873] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a1)\n[ 2763.020895] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2763.023120] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2763.274032] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a3)\n[ 2763.274055] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2763.527032] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a7)\n[ 2763.527058] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2763.780082] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 178)\n[ 2763.780108] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-92)mA\n[ 2764.033102] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1af)\n[ 2764.033128] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2764.286165] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19d)\n[ 2764.286191] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2764.539224] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a9)\n[ 2764.539250] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2764.792026] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a3)\n[ 2764.792052] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2765.045135] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1aa)\n[ 2765.045162] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2765.298207] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 193)\n[ 2765.298233] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2765.551201] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 189)\n[ 2765.551226] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2765.804235] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bb)\n[ 2765.804261] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2766.057307] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19b)\n[ 2766.057335] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2766.310329] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19d)\n[ 2766.310356] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2766.563336] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ad)\n[ 2766.563362] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2766.816396] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19e)\n[ 2766.816423] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2767.069469] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a0)\n[ 2767.069496] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2767.322487] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b7)\n[ 2767.322514] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2767.575567] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 195)\n[ 2767.575593] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2767.828618] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bd)\n[ 2767.828645] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2768.081670] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18d)\n[ 2768.081696] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 2768.344028]  3115     3.2 C/MHz    102 mW    9.9 J   30.4 I/mJ    96.3 s\n               1014: \n[ 2769.023121] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2771.704806] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 14b)\n[ 2771.704835] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-81)mA\n[ 2771.957874] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 14e)\n[ 2771.957899] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-82)mA\n[ 2772.210831] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 14d)\n[ 2772.210858] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-82)mA\n[ 2772.463809] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 154)\n[ 2772.463833] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-84)mA\n[ 2772.472201] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (178) data1 (125) \n[ 2772.472889] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3927), src (0x01)\n[ 2772.479893] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3926)\n[ 2772.479919] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6618) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 2772.479939] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6618), ocv (39735)\n[ 2772.481260] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 154)\n[ 2772.481279] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-84)mA\n[ 2772.483643] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 18a), avg current (-97)mA\n[ 2772.483663] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6618)%\n[ 2772.484992] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (178) data1 (125) \n[ 2772.485662] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3927), src (0x01)\n[ 2772.487019] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2111)\n[ 2772.487686] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2111)\n[ 2772.488352] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(240), Temp-ADC(2048)\n[ 2772.490334] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 2772.492974] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (86) data1 (42) \n[ 2772.505930] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (77) data1 (10) \n[ 2772.505949] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6437) \n[ 2772.505971] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6614), previous soc (6618), diff (0), FG_mode(0)\n[ 2772.508234] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 18a), avg current (-97)mA\n[ 2772.508253] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6614)%\n[ 2772.560509] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3925)\n[ 2772.560538] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 66\n[ 2772.566974] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3926)\n[ 2772.568278] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (178) data1 (125) \n[ 2772.568941] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3927), src (0x01)\n[ 2772.570244] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 154)\n[ 2772.570263] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-84)mA\n[ 2772.570286] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 2772.570313] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2772.570975] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 2772.570998] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(66.1), raw_soc(66.1)\n[ 2772.571023] sec-battery battery: sec_bat_get_battery_info:Vnow(3927mV),Inow(-84mA),Imax(450mA),SOC(66%),Tbat(232),Tusb(0),Tchg(240),Twpc(0)\n[ 2772.571050] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 2772.571071] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 2772.571738] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(232)\n[ 2772.571757] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 2772.571775] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 2772.571795] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 2772.571827] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 2772.571898] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2772.716874] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 13c)\n[ 2772.716896] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-78)mA\n[ 2772.969856] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 143)\n[ 2772.969881] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-79)mA\n[ 2773.222758] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 162)\n[ 2773.222784] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-87)mA\n[ 2773.475720] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 143)\n[ 2773.475745] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-79)mA\n[ 2773.728604] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x  b9)\n[ 2773.728630] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-46)mA\n[ 2773.981504] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 14d)\n[ 2773.981529] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-82)mA\n[ 2774.003190] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2774.234453] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 176)\n[ 2774.234477] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-92)mA\n[ 2774.487383] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 14e)\n[ 2774.487408] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-82)mA\n[ 2774.740287] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15d)\n[ 2774.740311] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-86)mA\n[ 2774.993182] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 14c)\n[ 2774.993208] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-82)mA\n[ 2775.023179] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2775.246057] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 13b)\n[ 2775.246079] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-77)mA\n[ 2775.498934] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 136)\n[ 2775.498959] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-76)mA\n[ 2775.751682] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 156)\n[ 2775.751707] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-84)mA\n[ 2776.004530] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 158)\n[ 2776.004556] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-84)mA\n[ 2776.257482] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 147)\n[ 2776.257508] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-80)mA\n[ 2776.766143] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c6)\n[ 2776.766173] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2777.019146] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2777.019172] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2777.271947] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1dd)\n[ 2777.271971] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2777.524916] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b5)\n[ 2777.524942] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2777.777845] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bf)\n[ 2777.777870] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2778.030753] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1be)\n[ 2778.030778] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2778.283671] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b1)\n[ 2778.283695] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2778.536575] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b8)\n[ 2778.536599] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2778.789490] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e7)\n[ 2778.789514] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 2779.042283] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b3)\n[ 2779.042306] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2779.295175] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cd)\n[ 2779.295200] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2779.548078] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a7)\n[ 2779.548103] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2779.800990] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ad)\n[ 2779.801015] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2780.053878] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1dc)\n[ 2780.053903] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2780.306802] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a4)\n[ 2780.306827] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2780.559721] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19a)\n[ 2780.559746] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2780.812618] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bf)\n[ 2780.812644] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2781.023110] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2781.065571] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b0)\n[ 2781.065593] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2781.318475] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2781.318500] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2781.571353] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d2)\n[ 2781.571378] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2781.824262] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2781.824287] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2782.077184] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b6)\n[ 2782.077211] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2782.330089] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b1)\n[ 2782.330112] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2782.582965] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a2)\n[ 2782.583014] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2782.835906] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2782.835932] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2783.088837] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 193)\n[ 2783.088861] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2783.341735] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b7)\n[ 2783.341761] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2783.594653] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ac)\n[ 2783.594679] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2783.847575] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2783.847600] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2784.100512] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 2784.100538] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2784.353419] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b5)\n[ 2784.353444] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2784.606335] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1be)\n[ 2784.606358] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2784.859169] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c2)\n[ 2784.859194] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2785.003136] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2785.112119] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 182)\n[ 2785.112141] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 2785.365079] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b9)\n[ 2785.365104] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2785.617959] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e1)\n[ 2785.617983] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2785.870857] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19e)\n[ 2785.870882] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2786.123813] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c8)\n[ 2786.123838] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2786.376721] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b6)\n[ 2786.376744] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2786.629610] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f3)\n[ 2786.629635] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 2786.882515] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2786.882541] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2787.023098] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2787.135444] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d7)\n[ 2787.135467] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2787.388331] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a3)\n[ 2787.388355] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2787.641175] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b6)\n[ 2787.641200] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2787.894085] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ab)\n[ 2787.894110] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2788.146968] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c6)\n[ 2788.146994] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2788.399870] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 186)\n[ 2788.399895] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2788.652705] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b4)\n[ 2788.652728] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2788.905573] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2788.905597] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2789.158497] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1be)\n[ 2789.158522] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2789.411439] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b8)\n[ 2789.411465] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2789.664337] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ac)\n[ 2789.664361] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2789.917233] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2789.917257] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2790.170149] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 2790.170174] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2790.423049] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2790.423074] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2790.675951] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ae)\n[ 2790.675975] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2790.928835] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b4)\n[ 2790.928859] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2791.181747] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b5)\n[ 2791.181773] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2791.434689] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ca)\n[ 2791.434714] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2791.687570] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a3)\n[ 2791.687595] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2791.940429] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c7)\n[ 2791.940454] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2792.193354] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ad)\n[ 2792.193379] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2792.446287] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1db)\n[ 2792.446312] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2792.699196] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b1)\n[ 2792.699220] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2792.952059] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b0)\n[ 2792.952084] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2793.023107] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2793.204992] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c4)\n[ 2793.205015] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2793.457912] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e9)\n[ 2793.457937] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2793.710812] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b5)\n[ 2793.710836] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2793.963698] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2793.963723] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2794.216605] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b3)\n[ 2794.216629] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2794.469503] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c8)\n[ 2794.469528] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2794.722410] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b3)\n[ 2794.722436] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2794.975081] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c3)\n[ 2794.975107] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2795.227972] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bc)\n[ 2795.227997] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2795.480879] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 2795.480903] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2795.733814] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bb)\n[ 2795.733839] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2795.986717] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a3)\n[ 2795.986741] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2796.003173] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2796.239657] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bb)\n[ 2796.239680] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2796.492529] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2796.492554] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2796.745479] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b9)\n[ 2796.745504] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2796.998377] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d5)\n[ 2796.998403] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2797.251271] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2797.251296] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2797.503996] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2797.504021] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2797.756852] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bc)\n[ 2797.756878] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2798.009805] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 2798.009830] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2798.262687] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b6)\n[ 2798.262710] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2798.515623] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2798.515647] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2798.768547] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ba)\n[ 2798.768572] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2799.021476] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1db)\n[ 2799.021501] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2799.023111] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2799.274380] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2799.274403] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2799.527287] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ba)\n[ 2799.527311] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2799.780191] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1dc)\n[ 2799.780216] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2800.033100] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b9)\n[ 2800.033126] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2800.286011] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 2800.286037] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2800.538911] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bb)\n[ 2800.538935] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2800.791811] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2800.791836] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2801.044767] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19d)\n[ 2801.044793] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2801.297706] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b3)\n[ 2801.297731] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2801.550571] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 175)\n[ 2801.550594] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-92)mA\n[ 2801.803278] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2801.803303] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2802.056190] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1aa)\n[ 2802.056216] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2802.309081] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b4)\n[ 2802.309106] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2802.561950] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cf)\n[ 2802.561974] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2802.573673] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (153) data1 (125) \n[ 2802.574634] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3924), src (0x01)\n[ 2802.581564] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3924)\n[ 2802.581589] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6614) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 2802.581609] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6614), ocv (39733)\n[ 2802.582891] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cf)\n[ 2802.582909] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2802.585181] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1a0), avg current (-102)mA\n[ 2802.585201] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6614)%\n[ 2802.586481] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (153) data1 (125) \n[ 2802.587131] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3924), src (0x01)\n[ 2802.588747] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(231), Temp-ADC(2114)\n[ 2802.589582] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(231), Temp-ADC(2113)\n[ 2802.590296] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(240), Temp-ADC(2048)\n[ 2802.592215] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 2802.594756] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (81) data1 (42) \n[ 2802.607624] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (76) data1 (10) \n[ 2802.607643] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6435) \n[ 2802.607664] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6611), previous soc (6614), diff (0), FG_mode(0)\n[ 2802.609910] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1a0), avg current (-102)mA\n[ 2802.609928] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6611)%\n[ 2802.662802] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3925)\n[ 2802.662832] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 66\n[ 2802.669494] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3924)\n[ 2802.670797] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (153) data1 (125) \n[ 2802.671459] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3924), src (0x01)\n[ 2802.672761] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20a)\n[ 2802.672779] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 2802.672802] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 2802.672828] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2802.673492] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 2802.673515] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(66.1), raw_soc(66.1)\n[ 2802.673541] sec-battery battery: sec_bat_get_battery_info:Vnow(3924mV),Inow(-114mA),Imax(450mA),SOC(66%),Tbat(231),Tusb(0),Tchg(240),Twpc(0)\n[ 2802.673567] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 2802.673589] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 2802.674256] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(231)\n[ 2802.674276] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 2802.674295] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 2802.674314] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 2802.674346] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 2802.674418] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2802.815053] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20a)\n[ 2802.815077] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 2803.068099] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2803.068125] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2803.321029] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2803.321053] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2803.573910] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a1)\n[ 2803.573934] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2803.826790] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 2803.826815] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2804.079700] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a1)\n[ 2804.079726] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2804.332657] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bc)\n[ 2804.332684] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2804.585618] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19d)\n[ 2804.585643] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2804.838491] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b9)\n[ 2804.838515] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2805.023080] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2805.091416] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ca)\n[ 2805.091439] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2805.344321] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b6)\n[ 2805.344345] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2805.597190] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2805.597214] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2805.850072] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ba)\n[ 2805.850097] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2806.102568] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c8)\n[ 2806.102593] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2806.355538] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bf)\n[ 2806.355563] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2806.608367] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20b)\n[ 2806.608393] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 2806.861259] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 192)\n[ 2806.861283] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2807.003136] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2807.114074] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c9)\n[ 2807.114098] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2807.367003] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d5)\n[ 2807.367029] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2807.619909] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b3)\n[ 2807.619935] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2807.872621] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2807.872645] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2808.125614] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bc)\n[ 2808.125640] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2808.378548] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2808.378574] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2808.631460] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c6)\n[ 2808.631485] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2808.884333] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1dd)\n[ 2808.884358] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2809.137213] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b4)\n[ 2809.137238] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2809.390113] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cc)\n[ 2809.390139] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2809.643030] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b4)\n[ 2809.643053] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2809.895918] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ad)\n[ 2809.895942] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2810.148797] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2810.148821] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2810.401351] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d2)\n[ 2810.401377] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2810.654235] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b7)\n[ 2810.654261] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2810.907124] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 2810.907149] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2811.023098] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2811.160006] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2811.160029] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2811.412914] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 2811.412939] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2811.665858] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2811.665883] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2811.918731] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e0)\n[ 2811.918755] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2812.171628] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cd)\n[ 2812.171654] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2812.424495] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 198)\n[ 2812.424521] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2812.677403] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2812.677429] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2812.930273] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a0)\n[ 2812.930297] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2813.183153] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b7)\n[ 2813.183177] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2813.436042] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 2813.436066] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2813.688871] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bf)\n[ 2813.688897] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2813.941714] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1aa)\n[ 2813.941739] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2814.194632] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b3)\n[ 2814.194657] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2814.447518] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c5)\n[ 2814.447542] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2814.700435] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f1)\n[ 2814.700460] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 2814.953354] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b0)\n[ 2814.953379] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2815.206256] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c4)\n[ 2815.206301] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2815.459158] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bc)\n[ 2815.459182] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2815.712088] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b9)\n[ 2815.712114] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2815.965041] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1be)\n[ 2815.965066] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2816.217970] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b6)\n[ 2816.217996] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2816.470868] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a9)\n[ 2816.470893] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2816.723804] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2816.723829] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2816.976729] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19c)\n[ 2816.976754] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2817.023111] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2817.229609] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ba)\n[ 2817.229631] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2817.482514] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d2)\n[ 2817.482539] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2817.735463] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b8)\n[ 2817.735487] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2817.988378] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b6)\n[ 2817.988404] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2818.003125] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2818.241314] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b4)\n[ 2818.241337] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2818.494231] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c7)\n[ 2818.494256] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2818.747121] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b6)\n[ 2818.747146] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2819.000042] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19d)\n[ 2819.000067] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2819.252957] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c4)\n[ 2819.253004] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2819.505814] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17e)\n[ 2819.505839] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-94)mA\n[ 2819.758698] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bb)\n[ 2819.758722] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2820.011609] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1da)\n[ 2820.011634] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2820.264538] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19d)\n[ 2820.264563] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2820.517453] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b3)\n[ 2820.517477] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2820.770316] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cf)\n[ 2820.770340] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2821.023230] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2821.023256] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2821.276146] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bf)\n[ 2821.276171] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2821.529034] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ad)\n[ 2821.529058] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2821.781910] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cd)\n[ 2821.781934] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2822.034806] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fa)\n[ 2822.034832] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 2822.287757] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b1)\n[ 2822.287783] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2822.540648] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2822.540673] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2822.793521] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1db)\n[ 2822.793546] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2823.023107] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2823.046424] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b8)\n[ 2823.046447] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2823.299295] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 195)\n[ 2823.299320] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 2823.552118] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c8)\n[ 2823.552144] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2823.805025] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c8)\n[ 2823.805049] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2824.057916] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2824.057940] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2824.310839] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b5)\n[ 2824.310865] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2824.563820] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bb)\n[ 2824.563846] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2824.816710] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b6)\n[ 2824.816735] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2825.069597] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bc)\n[ 2825.069622] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2825.322529] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b1)\n[ 2825.322554] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2825.575437] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1af)\n[ 2825.575462] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2825.828317] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ca)\n[ 2825.828341] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2826.081197] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ba)\n[ 2826.081222] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2826.334110] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cf)\n[ 2826.334136] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2826.587022] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b5)\n[ 2826.587048] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2826.839888] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c6)\n[ 2826.839913] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2827.092787] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c7)\n[ 2827.092813] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2827.345744] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1aa)\n[ 2827.345769] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2827.598689] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1be)\n[ 2827.598715] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2827.851578] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1af)\n[ 2827.851603] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2828.104398] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2828.104424] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2828.357330] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ba)\n[ 2828.357355] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2828.610248] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2828.610273] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2828.863149] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1db)\n[ 2828.863173] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2829.003132] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2829.023086] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2829.116075] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2829.116095] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2829.368966] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 203)\n[ 2829.368990] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 2829.621872] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b5)\n[ 2829.621898] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2829.874795] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1aa)\n[ 2829.874821] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2830.127683] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b7)\n[ 2830.127709] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2830.380567] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cc)\n[ 2830.380592] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2830.633479] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b7)\n[ 2830.633504] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2830.886381] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19c)\n[ 2830.886406] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2831.139256] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2831.139280] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2831.392127] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2831.392151] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2831.644985] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c1)\n[ 2831.645010] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2831.897877] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 196)\n[ 2831.897902] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2832.150791] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b8)\n[ 2832.150816] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2832.403502] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2832.403526] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2832.656337] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a7)\n[ 2832.656363] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2832.676369] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (152) data1 (125) \n[ 2832.677182] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3924), src (0x01)\n[ 2832.683851] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3924)\n[ 2832.683877] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6611) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 2832.683897] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6611), ocv (39731)\n[ 2832.685219] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cf)\n[ 2832.685238] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2832.687548] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1a0), avg current (-102)mA\n[ 2832.687567] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6611)%\n[ 2832.688894] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (152) data1 (125) \n[ 2832.689572] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3924), src (0x01)\n[ 2832.690925] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2111)\n[ 2832.691592] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2111)\n[ 2832.692257] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(240), Temp-ADC(2046)\n[ 2832.694249] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 2832.696891] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (75) data1 (42) \n[ 2832.709809] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (75) data1 (10) \n[ 2832.709829] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6433) \n[ 2832.709849] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6608), previous soc (6611), diff (0), FG_mode(0)\n[ 2832.712099] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1a0), avg current (-102)mA\n[ 2832.712118] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6608)%\n[ 2832.764401] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3925)\n[ 2832.764431] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 66\n[ 2832.770984] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3924)\n[ 2832.772312] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (152) data1 (125) \n[ 2832.772982] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3924), src (0x01)\n[ 2832.774344] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cf)\n[ 2832.774364] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2832.774386] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 2832.774411] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2832.775074] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 2832.775098] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(66.0), raw_soc(66.0)\n[ 2832.775123] sec-battery battery: sec_bat_get_battery_info:Vnow(3924mV),Inow(-114mA),Imax(450mA),SOC(66%),Tbat(232),Tusb(0),Tchg(240),Twpc(0)\n[ 2832.775150] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 2832.775171] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 2832.775840] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(232)\n[ 2832.775860] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 2832.775879] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 2832.775894] sec_bat_calculate_safety_time : SAFETY TIME RESET! DISCHARGING CNT(5)\n[ 2832.775926] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 2832.775993] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2832.909337] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cf)\n[ 2832.909360] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2833.162299] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b9)\n[ 2833.162323] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2833.415090] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c6)\n[ 2833.415115] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2833.667930] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d9)\n[ 2833.667955] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2833.920810] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b3)\n[ 2833.920835] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2834.173744] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c3)\n[ 2834.173770] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2834.426630] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ae)\n[ 2834.426654] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2834.679499] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bc)\n[ 2834.679523] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2834.932396] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2834.932420] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2835.023085] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2835.185373] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ca)\n[ 2835.185395] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2835.438385] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b4)\n[ 2835.438409] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2835.691271] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1db)\n[ 2835.691296] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2835.944174] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b7)\n[ 2835.944199] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2836.197160] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c2)\n[ 2836.197186] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2836.450080] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b4)\n[ 2836.450104] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2836.702779] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ad)\n[ 2836.702804] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2836.955759] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b5)\n[ 2836.955784] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2837.208673] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cb)\n[ 2837.208697] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2837.461553] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b9)\n[ 2837.461577] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2837.714448] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fe)\n[ 2837.714474] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 2837.967357] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b6)\n[ 2837.967382] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2838.220271] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bc)\n[ 2838.220296] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2838.472973] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ba)\n[ 2838.473053] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2838.725911] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19c)\n[ 2838.725935] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2838.978791] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b9)\n[ 2838.978816] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2839.231699] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e2)\n[ 2839.231725] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2839.484607] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b5)\n[ 2839.484631] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2839.737485] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a6)\n[ 2839.737510] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2839.990377] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b0)\n[ 2839.990402] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2840.003118] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2840.243327] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cd)\n[ 2840.243351] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2840.496275] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b7)\n[ 2840.496300] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2840.749154] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b3)\n[ 2840.749178] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2841.001976] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bd)\n[ 2841.002001] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2841.023115] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2841.254857] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fa)\n[ 2841.254880] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 2841.507724] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2841.507748] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2841.760632] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e6)\n[ 2841.760655] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 2842.013524] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b5)\n[ 2842.013549] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2842.266371] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c7)\n[ 2842.266397] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2842.519271] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b8)\n[ 2842.519297] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2842.772146] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1db)\n[ 2842.772170] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2843.025047] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c3)\n[ 2843.025072] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2843.277964] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 2843.277989] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2843.530881] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1eb)\n[ 2843.530906] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2843.783798] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cb)\n[ 2843.783822] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2844.036711] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c9)\n[ 2844.036736] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2844.289633] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 196)\n[ 2844.289658] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2844.542560] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b9)\n[ 2844.542585] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2844.795536] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e4)\n[ 2844.795560] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 2845.048419] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ae)\n[ 2845.048443] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2845.301290] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bd)\n[ 2845.301314] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2845.554189] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b5)\n[ 2845.554213] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2845.807099] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e6)\n[ 2845.807123] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 2846.059998] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b4)\n[ 2846.060023] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2846.312898] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a9)\n[ 2846.312923] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2846.565835] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b5)\n[ 2846.565860] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2846.818739] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b9)\n[ 2846.818764] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2847.023101] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2847.071638] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c5)\n[ 2847.071660] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2847.324517] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c9)\n[ 2847.324542] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2847.577440] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e9)\n[ 2847.577465] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2847.830342] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b5)\n[ 2847.830367] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2848.082979] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 199)\n[ 2848.083051] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2848.335947] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2848.335972] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2848.588795] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e8)\n[ 2848.588820] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2848.841699] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b6)\n[ 2848.841724] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2849.094606] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fc)\n[ 2849.094631] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 2849.347493] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b3)\n[ 2849.347517] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2849.600375] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ba)\n[ 2849.600400] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2849.853217] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cb)\n[ 2849.853242] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2850.106071] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bf)\n[ 2850.106096] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2850.358898] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b8)\n[ 2850.358923] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2850.611738] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c2)\n[ 2850.611763] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2850.864704] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 189)\n[ 2850.864729] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 2851.003149] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2851.117648] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c6)\n[ 2851.117670] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2851.370549] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ae)\n[ 2851.370573] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2851.623400] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cd)\n[ 2851.623425] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2851.876322] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ac)\n[ 2851.876367] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2852.129285] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 199)\n[ 2852.129311] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2852.382231] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bd)\n[ 2852.382256] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2852.635109] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 196)\n[ 2852.635135] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2852.888013] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b8)\n[ 2852.888037] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2853.023104] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2853.140934] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f0)\n[ 2853.140956] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 2853.393850] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b8)\n[ 2853.393874] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2853.646723] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c6)\n[ 2853.646747] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2853.899568] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b7)\n[ 2853.899593] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2854.152493] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1eb)\n[ 2854.152519] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2854.405371] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ad)\n[ 2854.405395] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2854.658249] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1de)\n[ 2854.658273] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2854.911140] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b7)\n[ 2854.911164] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2855.164064] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b5)\n[ 2855.164089] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2855.416993] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1af)\n[ 2855.417017] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2855.669872] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bc)\n[ 2855.669896] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2855.922750] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c9)\n[ 2855.922775] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2856.175685] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e0)\n[ 2856.175711] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2856.428618] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b4)\n[ 2856.428643] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2856.681509] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19b)\n[ 2856.681533] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2856.934385] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b5)\n[ 2856.934409] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2857.187289] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e0)\n[ 2857.187314] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2857.440199] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bb)\n[ 2857.440224] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2857.693107] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2857.693133] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2857.945998] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b9)\n[ 2857.946022] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2858.198908] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bb)\n[ 2858.198934] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2858.451821] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b8)\n[ 2858.451846] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2858.704749] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c1)\n[ 2858.704774] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2858.957634] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c4)\n[ 2858.957660] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2859.023100] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2859.210487] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c2)\n[ 2859.210510] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2859.463255] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b9)\n[ 2859.463280] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2859.716160] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d6)\n[ 2859.716185] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2859.969044] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a3)\n[ 2859.969069] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2860.221955] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 191)\n[ 2860.221980] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2860.474915] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2860.474940] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2860.727818] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bf)\n[ 2860.727843] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2860.980714] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2860.980738] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2861.233591] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e7)\n[ 2861.233615] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 2861.486510] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b9)\n[ 2861.486535] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2861.739417] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bb)\n[ 2861.739442] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2861.992309] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1db)\n[ 2861.992333] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2862.003150] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2862.245222] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b7)\n[ 2862.245245] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2862.498145] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19e)\n[ 2862.498171] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 2862.751050] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2862.751074] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2862.778024] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (148) data1 (125) \n[ 2862.778859] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3924), src (0x01)\n[ 2862.785376] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3924)\n[ 2862.785401] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6608) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 2862.785421] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6608), ocv (39730)\n[ 2862.786694] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2862.786713] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2862.788907] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1af), avg current (-106)mA\n[ 2862.788926] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6608)%\n[ 2862.790199] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (148) data1 (125) \n[ 2862.790845] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3924), src (0x01)\n[ 2862.792458] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(231), Temp-ADC(2113)\n[ 2862.793372] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2112)\n[ 2862.794376] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(240), Temp-ADC(2045)\n[ 2862.796456] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 2862.799099] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (69) data1 (42) \n[ 2862.812571] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (73) data1 (10) \n[ 2862.812591] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6428) \n[ 2862.812611] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6604), previous soc (6608), diff (0), FG_mode(0)\n[ 2862.815642] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1af), avg current (-106)mA\n[ 2862.815662] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6604)%\n[ 2862.868698] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3925)\n[ 2862.868728] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 66\n[ 2862.875562] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3924)\n[ 2862.876859] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (148) data1 (125) \n[ 2862.877517] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3924), src (0x01)\n[ 2862.878811] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2862.878830] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2862.878853] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 2862.878881] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2862.879538] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 2862.879560] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(66.0), raw_soc(66.0)\n[ 2862.879585] sec-battery battery: sec_bat_get_battery_info:Vnow(3924mV),Inow(-106mA),Imax(450mA),SOC(66%),Tbat(231),Tusb(0),Tchg(240),Twpc(0)\n[ 2862.879611] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 2862.879632] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 2862.880295] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(231)\n[ 2862.880314] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 2862.880332] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 2862.880352] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 2862.880383] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 2862.880455] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2863.004002] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bb)\n[ 2863.004024] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2863.257015] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b1)\n[ 2863.257039] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2863.509915] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b6)\n[ 2863.509940] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2863.762812] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bb)\n[ 2863.762837] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2864.015778] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bb)\n[ 2864.015803] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2864.268703] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b4)\n[ 2864.268729] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2864.521559] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d6)\n[ 2864.521584] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2864.774460] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b4)\n[ 2864.774484] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2865.023094] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2865.027373] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b6)\n[ 2865.027395] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2865.280273] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b9)\n[ 2865.280298] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2865.533150] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 182)\n[ 2865.533175] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 2865.786037] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1af)\n[ 2865.786063] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2866.038957] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cd)\n[ 2866.038981] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2866.291836] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1af)\n[ 2866.291861] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2866.544752] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ab)\n[ 2866.544776] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2866.797660] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bb)\n[ 2866.797685] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2867.050577] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cc)\n[ 2867.050602] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2867.303220] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b7)\n[ 2867.303244] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2867.556109] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ad)\n[ 2867.556134] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2867.809027] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bc)\n[ 2867.809054] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2868.070038]  3282     3.2 C/MHz    124 mW   11.3 J   26.5 I/mJ    91.4 s\n               1144: \n[ 2871.023122] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2871.426567] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 14f)\n[ 2871.426593] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-82)mA\n[ 2871.679531] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15e)\n[ 2871.679555] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-86)mA\n[ 2871.932354] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 134)\n[ 2871.932377] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-76)mA\n[ 2872.185221] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 146)\n[ 2872.185246] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-80)mA\n[ 2872.438098] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15d)\n[ 2872.438121] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-86)mA\n[ 2872.690911] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 13b)\n[ 2872.690933] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-77)mA\n[ 2872.943740] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 171)\n[ 2872.943762] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-91)mA\n[ 2873.003157] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2873.196580] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 147)\n[ 2873.196602] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-80)mA\n[ 2873.449401] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 178)\n[ 2873.449425] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-92)mA\n[ 2873.702122] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 147)\n[ 2873.702145] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-80)mA\n[ 2873.954968] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 140)\n[ 2873.954992] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-79)mA\n[ 2874.207830] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 14d)\n[ 2874.207853] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-82)mA\n[ 2874.460688] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 149)\n[ 2874.460712] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-81)mA\n[ 2874.713549] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 153)\n[ 2874.713572] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-83)mA\n[ 2874.966378] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 144)\n[ 2874.966401] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-80)mA\n[ 2875.219236] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 160)\n[ 2875.219259] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-86)mA\n[ 2875.472085] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 145)\n[ 2875.472109] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-80)mA\n[ 2875.724913] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15a)\n[ 2875.724936] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-85)mA\n[ 2875.977744] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 141)\n[ 2875.977767] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-79)mA\n[ 2876.486034] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c7)\n[ 2876.486062] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2876.739009] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cf)\n[ 2876.739033] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2876.991813] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cb)\n[ 2876.991835] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2877.023113] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2877.244635] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cf)\n[ 2877.244655] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2877.497477] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f7)\n[ 2877.497500] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2877.750325] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ce)\n[ 2877.750348] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2878.002924] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cc)\n[ 2878.002946] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2878.255788] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d5)\n[ 2878.255809] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2878.508596] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e7)\n[ 2878.508619] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 2878.761420] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c8)\n[ 2878.761442] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2879.014217] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cb)\n[ 2879.014239] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2879.267046] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c7)\n[ 2879.267067] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2879.519850] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d7)\n[ 2879.519873] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2879.772679] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1de)\n[ 2879.772701] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2880.025546] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a9)\n[ 2880.025569] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2880.278374] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d1)\n[ 2880.278397] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2880.531145] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21e)\n[ 2880.531166] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-133)mA\n[ 2880.783961] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cd)\n[ 2880.783983] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2881.036783] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ce)\n[ 2881.036806] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2881.289564] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d2)\n[ 2881.289586] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2881.542313] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cf)\n[ 2881.542336] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2881.795139] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ce)\n[ 2881.795162] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2882.047888] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 205)\n[ 2882.047911] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 2882.300754] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 2882.300777] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2882.553553] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 211)\n[ 2882.553575] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 2882.806294] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cb)\n[ 2882.806318] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2883.023160] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2883.059155] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d5)\n[ 2883.059176] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2883.311968] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e4)\n[ 2883.311990] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 2883.564785] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cd)\n[ 2883.564807] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2883.817603] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2883.817626] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2884.003146] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2884.070483] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f7)\n[ 2884.070504] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2884.323329] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e3)\n[ 2884.323352] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2884.576138] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 227)\n[ 2884.576159] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-135)mA\n[ 2884.828948] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 196)\n[ 2884.828970] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 2885.081781] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 2885.081803] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2885.334595] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d3)\n[ 2885.334616] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2885.587394] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cf)\n[ 2885.587417] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2885.840210] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e7)\n[ 2885.840233] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 2886.093047] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cd)\n[ 2886.093071] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2886.345852] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 2886.345873] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2886.598678] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1db)\n[ 2886.598699] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2886.851426] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a8)\n[ 2886.851449] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2887.104193] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ed)\n[ 2887.104216] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2887.357017] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d2)\n[ 2887.357038] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2887.609823] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 2887.609846] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2887.862627] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cd)\n[ 2887.862648] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2888.115524] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1db)\n[ 2888.115547] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2888.368379] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c4)\n[ 2888.368403] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2888.621193] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ce)\n[ 2888.621214] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2888.873848] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1de)\n[ 2888.873870] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2889.023092] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2889.126631] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 2889.126651] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2889.379477] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2889.379500] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2889.632215] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d3)\n[ 2889.632237] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2889.884927] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a3)\n[ 2889.884949] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2890.137748] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 208)\n[ 2890.137770] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 2890.390604] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bf)\n[ 2890.390626] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2890.643389] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e0)\n[ 2890.643411] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2890.896189] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d6)\n[ 2890.896211] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2891.149019] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c1)\n[ 2891.149043] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2891.401786] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d3)\n[ 2891.401809] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2891.654591] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b7)\n[ 2891.654612] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2891.907375] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ce)\n[ 2891.907397] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2892.160188] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d1)\n[ 2892.160211] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2892.413037] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c5)\n[ 2892.413059] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2892.665857] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d2)\n[ 2892.665880] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2892.882403] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (144) data1 (125) \n[ 2892.883196] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3923), src (0x01)\n[ 2892.889789] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3922)\n[ 2892.889812] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6604) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 2892.889830] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6604), ocv (39727)\n[ 2892.891125] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f6)\n[ 2892.891142] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2892.893508] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1b2), avg current (-106)mA\n[ 2892.893526] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6604)%\n[ 2892.895150] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (144) data1 (125) \n[ 2892.896062] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3923), src (0x01)\n[ 2892.897477] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2110)\n[ 2892.898162] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2111)\n[ 2892.898816] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(240), Temp-ADC(2045)\n[ 2892.900791] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 2892.903404] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (64) data1 (42) \n[ 2892.916321] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (72) data1 (10) \n[ 2892.916338] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6425) \n[ 2892.916357] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6601), previous soc (6604), diff (0), FG_mode(0)\n[ 2892.918936] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f6)\n[ 2892.918953] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2892.920647] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1b2), avg current (-106)mA\n[ 2892.920666] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6601)%\n[ 2892.972914] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3925)\n[ 2892.972945] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 66\n[ 2892.979306] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3922)\n[ 2892.980596] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (144) data1 (125) \n[ 2892.981250] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3923), src (0x01)\n[ 2892.982537] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f6)\n[ 2892.982554] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2892.982575] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 2892.982599] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2892.983256] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 2892.983278] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(66.0), raw_soc(66.0)\n[ 2892.983303] sec-battery battery: sec_bat_get_battery_info:Vnow(3923mV),Inow(-123mA),Imax(450mA),SOC(66%),Tbat(232),Tusb(0),Tchg(240),Twpc(0)\n[ 2892.983329] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 2892.983347] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 2892.984006] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(232)\n[ 2892.984023] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 2892.984040] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 2892.984058] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 2892.984087] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 2892.984152] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2893.171868] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 2893.171889] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2893.424756] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c1)\n[ 2893.424779] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2893.677560] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bb)\n[ 2893.677582] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2893.930329] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ea)\n[ 2893.930351] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2894.183099] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d8)\n[ 2894.183122] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2894.435925] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c4)\n[ 2894.435947] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2894.688734] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d6)\n[ 2894.688756] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2894.941520] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1dc)\n[ 2894.941543] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2895.003163] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2895.023068] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2895.194358] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d2)\n[ 2895.194376] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2895.447196] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d6)\n[ 2895.447218] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2895.700013] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c4)\n[ 2895.700035] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2895.952729] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d7)\n[ 2895.952751] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2896.205543] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c8)\n[ 2896.205566] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2896.458387] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c2)\n[ 2896.458410] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2896.711205] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d9)\n[ 2896.711227] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2896.963978] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ed)\n[ 2896.964000] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2897.216790] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ce)\n[ 2897.216812] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2897.469571] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e1)\n[ 2897.469594] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2897.722392] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d8)\n[ 2897.722415] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2897.975232] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b1)\n[ 2897.975255] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2898.228037] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 2898.228059] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2898.480831] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c7)\n[ 2898.480853] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2898.733637] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 216)\n[ 2898.733659] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-131)mA\n[ 2898.986454] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1de)\n[ 2898.986477] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2899.239261] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f1)\n[ 2899.239284] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 2899.492051] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c7)\n[ 2899.492074] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2899.744890] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bf)\n[ 2899.744912] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2899.997750] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d1)\n[ 2899.997773] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2900.250580] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f1)\n[ 2900.250603] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 2900.503155] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1db)\n[ 2900.503176] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2900.755974] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d2)\n[ 2900.755996] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2901.008798] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d8)\n[ 2901.008819] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2901.023106] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2901.261613] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f7)\n[ 2901.261634] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2901.514409] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 2901.514431] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2901.767250] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 191)\n[ 2901.767272] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2902.020070] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d9)\n[ 2902.020094] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2902.272868] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b9)\n[ 2902.272889] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2902.525704] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c4)\n[ 2902.525726] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2902.778479] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ba)\n[ 2902.778501] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2903.031295] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cc)\n[ 2903.031318] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2903.284129] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d8)\n[ 2903.284152] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2903.536916] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bc)\n[ 2903.536938] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2903.789701] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1df)\n[ 2903.789723] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2904.042369] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 2904.042392] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2904.295013] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e4)\n[ 2904.295037] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 2904.547865] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d2)\n[ 2904.547888] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2904.800676] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1df)\n[ 2904.800698] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2905.053520] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 2905.053543] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2905.306346] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e6)\n[ 2905.306368] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 2905.559138] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c7)\n[ 2905.559161] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2905.811951] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c3)\n[ 2905.811973] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2906.003128] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2906.064816] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d1)\n[ 2906.064836] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2906.317661] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d7)\n[ 2906.317684] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2906.570466] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ca)\n[ 2906.570487] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2906.823246] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2906.823269] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2907.023101] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2907.076082] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c9)\n[ 2907.076102] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2907.328926] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cb)\n[ 2907.328948] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2907.581709] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bf)\n[ 2907.581731] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2907.834501] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e9)\n[ 2907.834523] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2908.087323] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1da)\n[ 2908.087346] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2908.340176] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f2)\n[ 2908.340200] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 2908.593029] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ce)\n[ 2908.593051] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2908.845828] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cd)\n[ 2908.845850] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2909.098656] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d2)\n[ 2909.098678] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2909.351466] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 213)\n[ 2909.351489] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 2909.604205] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cf)\n[ 2909.604227] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2909.856987] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f8)\n[ 2909.857010] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 2910.109775] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d2)\n[ 2910.109797] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2910.362599] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c4)\n[ 2910.362621] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2910.615479] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 2910.615502] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2910.868264] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f4)\n[ 2910.868287] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2911.121073] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 2911.121095] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2911.373710] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e2)\n[ 2911.373732] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2911.626528] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 2911.626550] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2911.879319] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c0)\n[ 2911.879341] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2912.132138] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cf)\n[ 2912.132161] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2912.384976] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 201)\n[ 2912.384999] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 2912.637790] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 2912.637813] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2912.890519] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d9)\n[ 2912.890542] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2913.023089] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2913.143215] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 207)\n[ 2913.143235] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 2913.396002] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 2913.396025] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2913.648930] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b1)\n[ 2913.648953] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2913.901714] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d7)\n[ 2913.901737] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2914.154522] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d5)\n[ 2914.154545] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2914.407318] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b4)\n[ 2914.407341] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2914.660135] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d9)\n[ 2914.660156] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2914.912944] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cc)\n[ 2914.912966] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2915.165781] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e9)\n[ 2915.165804] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2915.418596] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cb)\n[ 2915.418619] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2915.671414] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1de)\n[ 2915.671437] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2915.924231] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ce)\n[ 2915.924254] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2916.177056] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 2916.177080] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2916.429883] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d1)\n[ 2916.429905] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2916.682695] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 223)\n[ 2916.682716] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-134)mA\n[ 2916.935551] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c9)\n[ 2916.935574] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2917.003153] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2917.188372] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b5)\n[ 2917.188393] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2917.441185] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d1)\n[ 2917.441208] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2917.693973] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a6)\n[ 2917.693995] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-104)mA\n[ 2917.946799] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 2917.946821] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2918.199602] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e3)\n[ 2918.199626] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2918.452398] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1dc)\n[ 2918.452421] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2918.705025] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 2918.705047] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2918.957847] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d6)\n[ 2918.957870] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2919.023092] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2919.210678] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f9)\n[ 2919.210698] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 2919.463463] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1dd)\n[ 2919.463485] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2919.716244] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 201)\n[ 2919.716266] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 2919.969066] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cb)\n[ 2919.969089] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2920.221929] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cc)\n[ 2920.221954] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2920.474704] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ce)\n[ 2920.474727] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2920.727370] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ed)\n[ 2920.727392] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2920.980263] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cc)\n[ 2920.980286] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2921.233089] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1df)\n[ 2921.233111] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2921.486006] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cc)\n[ 2921.486028] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2921.738792] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ca)\n[ 2921.738814] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2921.991622] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d1)\n[ 2921.991645] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2922.244474] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f1)\n[ 2922.244497] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 2922.497298] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d2)\n[ 2922.497321] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2922.750083] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bf)\n[ 2922.750105] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2922.986015] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (138) data1 (125) \n[ 2922.986845] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3923), src (0x01)\n[ 2922.993511] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3922)\n[ 2922.993535] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6601) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 2922.993553] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6601), ocv (39726)\n[ 2922.994838] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ca)\n[ 2922.994855] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2922.997117] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1c0), avg current (-110)mA\n[ 2922.997134] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6601)%\n[ 2922.998439] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (138) data1 (125) \n[ 2922.999101] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3923), src (0x01)\n[ 2923.000450] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2110)\n[ 2923.001139] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2110)\n[ 2923.001800] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(241), Temp-ADC(2044)\n[ 2923.003327] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ca)\n[ 2923.003344] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2923.004617] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 2923.007190] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (58) data1 (42) \n[ 2923.020110] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (71) data1 (10) \n[ 2923.020127] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6423) \n[ 2923.020147] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6597), previous soc (6601), diff (0), FG_mode(0)\n[ 2923.022440] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1c0), avg current (-110)mA\n[ 2923.022457] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6597)%\n[ 2923.074711] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3925)\n[ 2923.074742] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 66\n[ 2923.081137] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3922)\n[ 2923.082433] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (138) data1 (125) \n[ 2923.083091] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3923), src (0x01)\n[ 2923.084385] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20b)\n[ 2923.084401] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 2923.084421] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 2923.084445] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2923.085104] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 2923.085125] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(65.9), raw_soc(65.9)\n[ 2923.085149] sec-battery battery: sec_bat_get_battery_info:Vnow(3923mV),Inow(-112mA),Imax(450mA),SOC(65%),Tbat(232),Tusb(0),Tchg(241),Twpc(0)\n[ 2923.085173] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 2923.085192] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 2923.085854] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(232)\n[ 2923.085870] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 2923.085887] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 2923.085905] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 2923.085934] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 2923.085998] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2923.256406] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20b)\n[ 2923.256428] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 2923.509259] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e0)\n[ 2923.509281] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2923.762019] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c7)\n[ 2923.762042] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2924.014801] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c9)\n[ 2924.014824] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2924.267638] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e9)\n[ 2924.267661] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2924.520459] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ce)\n[ 2924.520481] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2924.773257] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e9)\n[ 2924.773280] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2925.023078] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2925.026075] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d3)\n[ 2925.026096] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2925.278898] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cb)\n[ 2925.278921] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2925.531707] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 2925.531729] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2925.784491] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b9)\n[ 2925.784514] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2926.037313] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d1)\n[ 2926.037336] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2926.290130] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ec)\n[ 2926.290153] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2926.542953] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d1)\n[ 2926.542976] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2926.795796] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f5)\n[ 2926.795818] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2927.048601] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1de)\n[ 2927.048624] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2927.301422] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f8)\n[ 2927.301445] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 2927.554231] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 2927.554253] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2927.807050] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c4)\n[ 2927.807074] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2928.003128] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2928.059878] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e6)\n[ 2928.059898] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 2928.312734] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 216)\n[ 2928.312758] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-131)mA\n[ 2928.565628] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cf)\n[ 2928.565650] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2928.818413] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 2928.818436] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2929.071139] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 205)\n[ 2929.071162] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 2929.323790] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d3)\n[ 2929.323812] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2929.576590] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b6)\n[ 2929.576613] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2929.829408] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d2)\n[ 2929.829432] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2930.082141] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 2930.082164] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2930.334930] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d8)\n[ 2930.334953] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2930.587767] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cd)\n[ 2930.587790] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2930.840603] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 2930.840626] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2931.023098] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2931.093413] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c4)\n[ 2931.093434] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2931.346218] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bd)\n[ 2931.346241] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2931.599040] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1dc)\n[ 2931.599062] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2931.851845] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1dc)\n[ 2931.851868] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2932.104690] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 207)\n[ 2932.104714] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 2932.357527] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d1)\n[ 2932.357549] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2932.610352] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cd)\n[ 2932.610374] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2932.863160] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d9)\n[ 2932.863182] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2933.115963] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cb)\n[ 2933.115985] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2933.368757] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 2933.368779] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2933.621498] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e8)\n[ 2933.621520] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2933.874227] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d6)\n[ 2933.874249] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2934.127036] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e0)\n[ 2934.127058] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2934.379823] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d8)\n[ 2934.379845] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2934.632615] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 205)\n[ 2934.632638] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 2934.885478] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e3)\n[ 2934.885500] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2935.138302] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c8)\n[ 2935.138326] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2935.391097] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d9)\n[ 2935.391119] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2935.643876] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 2935.643898] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2935.896715] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d7)\n[ 2935.896738] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2936.149565] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f3)\n[ 2936.149589] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 2936.402348] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d1)\n[ 2936.402370] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2936.655122] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e8)\n[ 2936.655145] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2936.907860] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 2936.907883] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2937.023094] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2937.160676] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e3)\n[ 2937.160696] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2937.413562] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cc)\n[ 2937.413584] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2937.666322] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1dc)\n[ 2937.666344] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2937.919144] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d3)\n[ 2937.919166] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2938.171965] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a3)\n[ 2938.171988] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2938.424787] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e0)\n[ 2938.424810] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2938.677596] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1be)\n[ 2938.677619] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2938.930336] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1de)\n[ 2938.930358] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2939.003127] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2939.183184] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ca)\n[ 2939.183204] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2939.435998] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cf)\n[ 2939.436019] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2939.688778] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e0)\n[ 2939.688801] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2939.941567] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1dc)\n[ 2939.941589] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2940.194425] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e0)\n[ 2940.194449] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2940.447263] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 2940.447285] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2940.700066] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 208)\n[ 2940.700088] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 2940.952832] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 209)\n[ 2940.952854] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 2941.205640] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 203)\n[ 2941.205663] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 2941.458452] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b8)\n[ 2941.458474] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2941.711233] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d2)\n[ 2941.711256] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2941.964050] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1da)\n[ 2941.964072] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2942.216889] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d6)\n[ 2942.216913] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2942.469727] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cc)\n[ 2942.469750] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2942.722518] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1de)\n[ 2942.722541] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2942.975370] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ce)\n[ 2942.975393] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2943.023106] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2943.228132] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1db)\n[ 2943.228153] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2943.480969] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b8)\n[ 2943.480991] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2943.733774] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d7)\n[ 2943.733796] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2943.986580] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 224)\n[ 2943.986603] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-134)mA\n[ 2944.239362] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ce)\n[ 2944.239386] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2944.492185] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ac)\n[ 2944.492206] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2944.744962] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d1)\n[ 2944.744983] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2944.997766] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f0)\n[ 2944.997789] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 2945.250495] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ce)\n[ 2945.250517] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2945.502952] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d6)\n[ 2945.502974] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2945.755822] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d6)\n[ 2945.755845] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2946.008587] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 2946.008611] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2946.261391] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cc)\n[ 2946.261414] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2946.514203] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ec)\n[ 2946.514225] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2946.767054] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c5)\n[ 2946.767076] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2947.019875] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ba)\n[ 2947.019897] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2947.272677] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fb)\n[ 2947.272699] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 2947.525547] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cd)\n[ 2947.525569] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2947.778374] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cc)\n[ 2947.778397] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2948.031185] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e8)\n[ 2948.031208] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2948.284024] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 2948.284047] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2948.536858] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c9)\n[ 2948.536881] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2948.789684] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d2)\n[ 2948.789705] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2949.023089] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2949.042403] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d8)\n[ 2949.042424] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2949.295226] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 2949.295249] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2949.548010] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d5)\n[ 2949.548033] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2949.800889] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cb)\n[ 2949.800911] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2950.003139] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2950.053762] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d1)\n[ 2950.053782] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2950.306571] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c3)\n[ 2950.306593] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2950.559363] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 220)\n[ 2950.559385] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-133)mA\n[ 2950.812180] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1de)\n[ 2950.812203] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2951.065004] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f4)\n[ 2951.065027] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2951.317805] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ca)\n[ 2951.317826] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2951.570576] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c1)\n[ 2951.570597] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2951.823380] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ce)\n[ 2951.823402] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 2952.076187] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 207)\n[ 2952.076210] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 2952.329021] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cf)\n[ 2952.329044] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2952.581826] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 191)\n[ 2952.581848] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 2952.834636] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1da)\n[ 2952.834658] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2953.088347] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20f)\n[ 2953.088371] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 2953.089102] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (136) data1 (125) \n[ 2953.089933] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3922), src (0x01)\n[ 2953.096605] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3922)\n[ 2953.096629] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6597) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 2953.096647] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6597), ocv (39723)\n[ 2953.097915] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20f)\n[ 2953.097931] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 2953.100115] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1c7), avg current (-112)mA\n[ 2953.100131] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6597)%\n[ 2953.101398] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (136) data1 (125) \n[ 2953.102039] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3922), src (0x01)\n[ 2953.103636] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2112)\n[ 2953.104453] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2111)\n[ 2953.105437] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(241), Temp-ADC(2044)\n[ 2953.107447] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 2953.110131] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (53) data1 (42) \n[ 2953.123144] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (69) data1 (10) \n[ 2953.123161] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6418) \n[ 2953.123180] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6594), previous soc (6597), diff (0), FG_mode(0)\n[ 2953.125702] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1c7), avg current (-112)mA\n[ 2953.125718] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6594)%\n[ 2953.178488] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3925)\n[ 2953.178516] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 65\n[ 2953.185337] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3922)\n[ 2953.186624] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (136) data1 (125) \n[ 2953.187276] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3922), src (0x01)\n[ 2953.188561] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22b)\n[ 2953.188577] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-136)mA\n[ 2953.188597] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 2953.188620] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2953.189271] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 2953.189293] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(65.9), raw_soc(65.9)\n[ 2953.189316] sec-battery battery: sec_bat_get_battery_info:Vnow(3922mV),Inow(-129mA),Imax(450mA),SOC(65%),Tbat(232),Tusb(0),Tchg(241),Twpc(0)\n[ 2953.189341] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 2953.189360] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 2953.190017] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(232)\n[ 2953.190035] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 2953.190051] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 2953.190068] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 2953.190097] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 2953.190166] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2953.341322] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22b)\n[ 2953.341341] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-136)mA\n[ 2953.594154] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e7)\n[ 2953.594177] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 2953.846859] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1da)\n[ 2953.846882] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2954.099711] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1dc)\n[ 2954.099734] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2954.352453] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e3)\n[ 2954.352475] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2954.605267] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1db)\n[ 2954.605289] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2954.858050] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 2954.858072] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2955.023091] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2955.110953] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 204)\n[ 2955.110973] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 2955.363809] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f4)\n[ 2955.363832] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2955.616606] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d3)\n[ 2955.616628] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2955.869390] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19c)\n[ 2955.869412] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-101)mA\n[ 2956.122240] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 2956.122264] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2956.375079] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b4)\n[ 2956.375102] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 2956.627892] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d8)\n[ 2956.627914] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2956.880679] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ba)\n[ 2956.880701] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 2957.133502] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cf)\n[ 2957.133525] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2957.392532]  3708     3.2 C/MHz    149 mW   12.1 J   24.8 I/mJ    80.9 s\n               1242: \n[ 2960.752385] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 14c)\n[ 2960.752405] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-82)mA\n[ 2961.003113] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2961.005004] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15b)\n[ 2961.005023] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-85)mA\n[ 2961.023104] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2961.257693] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 146)\n[ 2961.257712] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-80)mA\n[ 2961.510407] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 146)\n[ 2961.510427] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-80)mA\n[ 2961.763083] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15a)\n[ 2961.763103] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-85)mA\n[ 2962.015800] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 152)\n[ 2962.015821] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-83)mA\n[ 2962.268497] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 16a)\n[ 2962.268518] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-89)mA\n[ 2962.521227] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 152)\n[ 2962.521249] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-83)mA\n[ 2962.773922] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 150)\n[ 2962.773943] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-83)mA\n[ 2963.026618] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 143)\n[ 2963.026639] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-79)mA\n[ 2963.279310] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 153)\n[ 2963.279331] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-83)mA\n[ 2963.532007] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15c)\n[ 2963.532029] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-85)mA\n[ 2963.784736] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 139)\n[ 2963.784757] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-77)mA\n[ 2964.037456] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 14d)\n[ 2964.037477] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-82)mA\n[ 2964.290167] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 156)\n[ 2964.290188] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-84)mA\n[ 2964.542882] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 171)\n[ 2964.542904] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-91)mA\n[ 2964.795623] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 168)\n[ 2964.795644] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-88)mA\n[ 2965.048317] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 147)\n[ 2965.048338] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-80)mA\n[ 2965.300997] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 14a)\n[ 2965.301018] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-81)mA\n[ 2965.808493] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 203)\n[ 2965.808518] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 2966.061316] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e2)\n[ 2966.061337] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2966.314011] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c7)\n[ 2966.314031] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2966.566541] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e4)\n[ 2966.566561] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 2966.819233] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 205)\n[ 2966.819254] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 2967.023088] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2967.071913] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f0)\n[ 2967.071931] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 2967.324682] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 211)\n[ 2967.324703] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 2967.577349] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e7)\n[ 2967.577370] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 2967.829989] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f0)\n[ 2967.830010] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 2968.082537] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f1)\n[ 2968.082558] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 2968.335309] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a2)\n[ 2968.335330] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 2968.587913] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ef)\n[ 2968.587934] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2968.840522] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 209)\n[ 2968.840543] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 2969.093228] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ef)\n[ 2969.093250] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2969.345914] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 204)\n[ 2969.345934] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 2969.598565] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e0)\n[ 2969.598585] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2969.851233] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ac)\n[ 2969.851254] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 2970.103922] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ef)\n[ 2970.103943] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2970.356583] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 211)\n[ 2970.356603] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 2970.609257] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f3)\n[ 2970.609278] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 2970.861930] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d5)\n[ 2970.861951] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2971.114665] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f5)\n[ 2971.114686] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2971.367373] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cf)\n[ 2971.367394] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2971.620060] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ef)\n[ 2971.620080] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2971.872563] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1df)\n[ 2971.872583] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2972.003133] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2972.125296] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f0)\n[ 2972.125315] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 2972.378004] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e9)\n[ 2972.378025] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2972.630667] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f4)\n[ 2972.630687] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2972.883339] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f9)\n[ 2972.883360] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 2973.023085] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2973.136038] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e8)\n[ 2973.136057] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2973.388722] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1db)\n[ 2973.388743] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2973.641382] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e7)\n[ 2973.641402] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 2973.894037] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20d)\n[ 2973.894058] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 2974.146734] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1eb)\n[ 2974.146755] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2974.399384] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 205)\n[ 2974.399405] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 2974.652057] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e8)\n[ 2974.652076] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2974.904726] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d1)\n[ 2974.904746] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 2975.157435] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f7)\n[ 2975.157456] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2975.410147] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1db)\n[ 2975.410169] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2975.662827] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ea)\n[ 2975.662848] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2975.915567] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b2)\n[ 2975.915587] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-106)mA\n[ 2976.168228] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f0)\n[ 2976.168249] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 2976.420939] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 209)\n[ 2976.420959] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 2976.673597] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ee)\n[ 2976.673617] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2976.926248] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 213)\n[ 2976.926269] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 2977.178918] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ef)\n[ 2977.178939] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2977.431604] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fc)\n[ 2977.431625] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 2977.684290] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ec)\n[ 2977.684310] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2977.936976] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ec)\n[ 2977.936998] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2978.189659] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f1)\n[ 2978.189680] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 2978.442341] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 202)\n[ 2978.442363] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 2978.695028] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f1)\n[ 2978.695049] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 2978.947691] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d6)\n[ 2978.947713] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2979.023090] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2979.200367] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e7)\n[ 2979.200386] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 2979.453061] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23c)\n[ 2979.453082] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 2979.705746] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bb)\n[ 2979.705767] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2979.958407] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bb)\n[ 2979.958428] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 2980.211045] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ec)\n[ 2980.211067] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2980.463682] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e9)\n[ 2980.463703] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2980.716372] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f8)\n[ 2980.716393] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 2980.969051] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ed)\n[ 2980.969072] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2981.221668] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21a)\n[ 2981.221687] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-132)mA\n[ 2981.474337] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 237)\n[ 2981.474358] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 2981.727060] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1db)\n[ 2981.727081] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2981.979717] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e3)\n[ 2981.979739] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2982.232391] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fa)\n[ 2982.232411] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 2982.485049] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1eb)\n[ 2982.485070] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2982.737719] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c6)\n[ 2982.737740] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2982.990413] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e4)\n[ 2982.990435] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 2983.003129] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2983.192065] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (122) data1 (125) \n[ 2983.192882] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3921), src (0x01)\n[ 2983.199635] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3920)\n[ 2983.199656] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6594) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 2983.199673] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6594), ocv (39722)\n[ 2983.200951] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 204)\n[ 2983.200967] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 2983.203172] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1cd), avg current (-113)mA\n[ 2983.203187] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6594)%\n[ 2983.204463] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (122) data1 (125) \n[ 2983.205111] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3921), src (0x01)\n[ 2983.206662] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2112)\n[ 2983.207452] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2111)\n[ 2983.208134] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(241), Temp-ADC(2044)\n[ 2983.210046] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 2983.212792] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (47) data1 (42) \n[ 2983.225738] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (68) data1 (10) \n[ 2983.225754] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6416) \n[ 2983.225771] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6591), previous soc (6594), diff (0), FG_mode(0)\n[ 2983.227971] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1cd), avg current (-113)mA\n[ 2983.227986] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6591)%\n[ 2983.243031] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 204)\n[ 2983.243048] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 2983.280761] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3925)\n[ 2983.280791] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 65\n[ 2983.287537] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3920)\n[ 2983.288815] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (122) data1 (125) \n[ 2983.289463] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3921), src (0x01)\n[ 2983.290737] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 204)\n[ 2983.290752] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 2983.290771] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 2983.290793] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2983.291442] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 2983.291462] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(65.9), raw_soc(65.9)\n[ 2983.291485] sec-battery battery: sec_bat_get_battery_info:Vnow(3921mV),Inow(-126mA),Imax(450mA),SOC(65%),Tbat(232),Tusb(0),Tchg(241),Twpc(0)\n[ 2983.291509] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 2983.291526] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 2983.292178] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(232)\n[ 2983.292195] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 2983.292210] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 2983.292223] sec_bat_calculate_safety_time : SAFETY TIME RESET! DISCHARGING CNT(5)\n[ 2983.292249] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 2983.292308] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2983.495858] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f6)\n[ 2983.495877] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2983.748606] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f2)\n[ 2983.748627] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 2984.001306] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1eb)\n[ 2984.001327] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2984.253997] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 209)\n[ 2984.254018] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 2984.506673] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e8)\n[ 2984.506694] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2984.759343] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c2)\n[ 2984.759364] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-110)mA\n[ 2985.011996] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e8)\n[ 2985.012017] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2985.023083] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2985.264684] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20c)\n[ 2985.264703] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 2985.517387] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1eb)\n[ 2985.517408] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2985.770068] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f6)\n[ 2985.770088] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2986.022597] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e8)\n[ 2986.022620] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2986.275334] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 209)\n[ 2986.275355] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 2986.527990] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f9)\n[ 2986.528010] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 2986.780657] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 209)\n[ 2986.780678] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 2987.033288] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f8)\n[ 2987.033308] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 2987.285974] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c6)\n[ 2987.285995] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2987.538567] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e1)\n[ 2987.538588] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2987.791346] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c9)\n[ 2987.791367] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 2988.043931] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e5)\n[ 2988.043952] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 2988.296666] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21b)\n[ 2988.296687] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-132)mA\n[ 2988.549351] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f0)\n[ 2988.549371] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 2988.802009] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ff)\n[ 2988.802030] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 2989.054714] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e8)\n[ 2989.054735] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2989.307406] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 200)\n[ 2989.307426] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 2989.560074] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f5)\n[ 2989.560095] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2989.812570] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e3)\n[ 2989.812591] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2990.065319] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ec)\n[ 2990.065341] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2990.318027] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1de)\n[ 2990.318048] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 2990.570712] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f4)\n[ 2990.570731] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2990.823130] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 203)\n[ 2990.823151] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 2991.023091] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2991.075825] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ea)\n[ 2991.075844] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2991.328518] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1db)\n[ 2991.328538] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 2991.581168] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f6)\n[ 2991.581190] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2991.833830] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f4)\n[ 2991.833850] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2992.086463] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f7)\n[ 2992.086484] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2992.339172] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ed)\n[ 2992.339194] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2992.591847] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f1)\n[ 2992.591867] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 2992.844503] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 218)\n[ 2992.844524] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-131)mA\n[ 2993.097108] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ef)\n[ 2993.097129] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2993.349799] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e6)\n[ 2993.349820] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 2993.602482] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e7)\n[ 2993.602503] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 2993.855082] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f6)\n[ 2993.855102] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2994.003125] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 2994.107768] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f7)\n[ 2994.107787] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2994.360500] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f5)\n[ 2994.360520] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2994.612968] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 2994.613037] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2994.865679] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f6)\n[ 2994.865700] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2995.118363] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20b)\n[ 2995.118384] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 2995.371070] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ed)\n[ 2995.371090] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2995.623593] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e8)\n[ 2995.623613] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2995.876255] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ed)\n[ 2995.876275] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2996.128936] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 205)\n[ 2996.128957] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 2996.381653] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ed)\n[ 2996.381674] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2996.634330] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 203)\n[ 2996.634350] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 2996.886983] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ea)\n[ 2996.887003] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2997.023094] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 2997.139657] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d6)\n[ 2997.139677] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 2997.392282] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e8)\n[ 2997.392302] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2997.644968] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 203)\n[ 2997.644988] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 2997.897639] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e8)\n[ 2997.897660] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 2998.150316] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e5)\n[ 2998.150336] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 2998.402977] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f7)\n[ 2998.403017] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 2998.655668] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c4)\n[ 2998.655689] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 2998.908342] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e1)\n[ 2998.908362] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 2999.160997] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fe)\n[ 2999.161019] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 2999.413448] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ec)\n[ 2999.413469] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 2999.666102] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 226)\n[ 2999.666122] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-135)mA\n[ 2999.918795] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e7)\n[ 2999.918815] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 3000.171501] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 207)\n[ 3000.171523] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 3000.424123] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ea)\n[ 3000.424143] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3000.676796] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cb)\n[ 3000.676817] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 3000.929459] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1eb)\n[ 3000.929479] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3001.182125] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 3001.182146] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 3001.434796] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ea)\n[ 3001.434816] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3001.687468] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3001.687489] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3001.940141] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f6)\n[ 3001.940162] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3002.192823] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ee)\n[ 3002.192845] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3002.445552] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f6)\n[ 3002.445573] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3002.698112] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ec)\n[ 3002.698138] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3002.950920] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f8)\n[ 3002.950941] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 3003.023093] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3003.203613] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 210)\n[ 3003.203632] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3003.456282] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ed)\n[ 3003.456301] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3003.708940] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ca)\n[ 3003.708960] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 3003.961626] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ed)\n[ 3003.961647] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3004.214358] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 200)\n[ 3004.214380] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 3004.467036] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ed)\n[ 3004.467056] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3004.719707] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20b)\n[ 3004.719726] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3004.972231] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ff)\n[ 3004.972251] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 3005.003127] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3005.224919] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 212)\n[ 3005.224938] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3005.477491] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ea)\n[ 3005.477511] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3005.730138] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fa)\n[ 3005.730159] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 3005.982793] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f5)\n[ 3005.982814] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3006.235529] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fc)\n[ 3006.235566] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 3006.488196] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e8)\n[ 3006.488217] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3006.740848] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fb)\n[ 3006.740868] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 3006.993535] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f4)\n[ 3006.993557] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3007.246223] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f5)\n[ 3007.246244] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3007.498882] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ec)\n[ 3007.498902] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3007.751534] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 211)\n[ 3007.751555] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3008.004214] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e8)\n[ 3008.004235] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3008.256922] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1dd)\n[ 3008.256945] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 3008.509629] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ee)\n[ 3008.509650] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3008.762305] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 208)\n[ 3008.762325] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 3009.014973] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21c)\n[ 3009.014994] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-132)mA\n[ 3009.023087] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3009.267660] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ef)\n[ 3009.267679] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3009.520367] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f6)\n[ 3009.520388] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3009.772798] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ec)\n[ 3009.772819] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3010.025490] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fd)\n[ 3010.025511] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 3010.278176] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ee)\n[ 3010.278197] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3010.530859] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 213)\n[ 3010.530880] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3010.783504] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f1)\n[ 3010.783524] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 3011.036199] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 223)\n[ 3011.036220] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-134)mA\n[ 3011.288879] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d9)\n[ 3011.288900] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 3011.541497] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ed)\n[ 3011.541518] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3011.794093] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f0)\n[ 3011.794114] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 3012.046737] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f6)\n[ 3012.046759] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3012.299443] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e8)\n[ 3012.299465] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3012.552136] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f7)\n[ 3012.552157] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3012.804820] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e9)\n[ 3012.804840] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3013.057511] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 223)\n[ 3013.057532] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-134)mA\n[ 3013.294237] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (123) data1 (125) \n[ 3013.295059] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3921), src (0x01)\n[ 3013.301729] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3920)\n[ 3013.301751] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6591) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 3013.301767] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6591), ocv (39720)\n[ 3013.303053] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e7)\n[ 3013.303068] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 3013.305285] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1e0), avg current (-118)mA\n[ 3013.305300] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6591)%\n[ 3013.306583] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (123) data1 (125) \n[ 3013.307233] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3921), src (0x01)\n[ 3013.308836] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2110)\n[ 3013.309529] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2109)\n[ 3013.309822] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e7)\n[ 3013.309838] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 3013.310594] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(241), Temp-ADC(2042)\n[ 3013.312562] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 3013.315212] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (41) data1 (42) \n[ 3013.328114] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (67) data1 (10) \n[ 3013.328131] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6413) \n[ 3013.328148] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6587), previous soc (6591), diff (0), FG_mode(0)\n[ 3013.330387] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1e0), avg current (-118)mA\n[ 3013.330403] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6587)%\n[ 3013.382627] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3925)\n[ 3013.382655] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 65\n[ 3013.389002] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3920)\n[ 3013.390286] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (123) data1 (125) \n[ 3013.390936] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3921), src (0x01)\n[ 3013.392220] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e7)\n[ 3013.392235] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 3013.392253] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 3013.392274] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3013.392927] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 3013.392947] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(65.8), raw_soc(65.8)\n[ 3013.392967] sec-battery battery: sec_bat_get_battery_info:Vnow(3921mV),Inow(-119mA),Imax(450mA),SOC(65%),Tbat(232),Tusb(0),Tchg(241),Twpc(0)\n[ 3013.393004] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 3013.393022] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 3013.393679] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(232)\n[ 3013.393695] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 3013.393710] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 3013.393726] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 3013.393753] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 3013.393811] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3013.562641] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f9)\n[ 3013.562661] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 3013.815378] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 222)\n[ 3013.815399] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-134)mA\n[ 3014.068034] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e5)\n[ 3014.068056] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 3014.320706] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fa)\n[ 3014.320727] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 3014.573081] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f7)\n[ 3014.573101] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3014.825681] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e0)\n[ 3014.825702] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 3015.023077] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3015.078349] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ce)\n[ 3015.078368] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 3015.331018] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ec)\n[ 3015.331039] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3015.583701] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fe)\n[ 3015.583722] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 3015.836384] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f2)\n[ 3015.836404] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 3016.003117] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3016.089077] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 233)\n[ 3016.089096] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-138)mA\n[ 3016.341786] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ea)\n[ 3016.341807] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3016.594473] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20c)\n[ 3016.594494] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3016.847168] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ea)\n[ 3016.847190] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3017.099848] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d8)\n[ 3017.099869] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 3017.352499] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ea)\n[ 3017.352519] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3017.605175] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f8)\n[ 3017.605197] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 3017.857872] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e7)\n[ 3017.857894] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 3018.110495] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 216)\n[ 3018.110516] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-131)mA\n[ 3018.363173] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e7)\n[ 3018.363194] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 3018.615739] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1db)\n[ 3018.615760] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 3018.868421] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fe)\n[ 3018.868442] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 3019.121138] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 202)\n[ 3019.121160] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3019.373665] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1db)\n[ 3019.373686] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 3019.626321] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e6)\n[ 3019.626341] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 3019.878995] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f0)\n[ 3019.879016] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 3020.131708] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e2)\n[ 3020.131730] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 3020.384391] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20d)\n[ 3020.384412] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3020.637047] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1db)\n[ 3020.637068] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 3020.889719] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ea)\n[ 3020.889741] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3021.023089] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3021.142420] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 202)\n[ 3021.142439] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3021.395084] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ee)\n[ 3021.395105] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3021.647738] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22a)\n[ 3021.647758] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-136)mA\n[ 3021.900402] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f3)\n[ 3021.900423] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 3022.153089] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 202)\n[ 3022.153110] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3022.405751] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1db)\n[ 3022.405772] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 3022.658404] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 208)\n[ 3022.658425] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 3022.910849] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f5)\n[ 3022.910870] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3023.163537] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cc)\n[ 3023.163558] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 3023.416223] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f6)\n[ 3023.416243] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3023.668879] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1de)\n[ 3023.668900] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 3023.921546] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 208)\n[ 3023.921567] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 3024.174123] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 146)\n[ 3024.174145] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-80)mA\n[ 3024.426764] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 229)\n[ 3024.426784] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-136)mA\n[ 3024.679362] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ea)\n[ 3024.679383] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3024.931953] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1dd)\n[ 3024.931973] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 3025.184616] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f1)\n[ 3025.184637] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 3025.437370] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ef)\n[ 3025.437390] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3025.690027] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e5)\n[ 3025.690047] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 3025.942695] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bc)\n[ 3025.942716] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 3026.195428] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f3)\n[ 3026.195449] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 3026.448122] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 215)\n[ 3026.448143] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-131)mA\n[ 3026.700786] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e7)\n[ 3026.700807] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 3026.953433] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e4)\n[ 3026.953455] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 3027.003126] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3027.023084] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3027.206140] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 237)\n[ 3027.206159] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3027.458835] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f7)\n[ 3027.458856] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3027.711487] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e8)\n[ 3027.711509] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3027.964167] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d7)\n[ 3027.964188] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 3028.216830] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ef)\n[ 3028.216851] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3028.469515] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fa)\n[ 3028.469536] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 3028.722081] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1eb)\n[ 3028.722101] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3028.974786] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 3028.974807] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 3029.227458] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ef)\n[ 3029.227478] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3029.480132] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ff)\n[ 3029.480153] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 3029.732806] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ea)\n[ 3029.732828] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3029.985508] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 3029.985530] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 3030.238174] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ea)\n[ 3030.238195] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3030.490839] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 3030.490860] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 3030.743514] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e3)\n[ 3030.743535] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 3030.996183] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ff)\n[ 3030.996204] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 3031.248851] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e5)\n[ 3031.248872] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 3031.501467] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e6)\n[ 3031.501488] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 3031.754158] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f4)\n[ 3031.754179] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3032.006826] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21e)\n[ 3032.006847] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-133)mA\n[ 3032.259510] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ec)\n[ 3032.259532] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3032.512196] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22b)\n[ 3032.512217] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-136)mA\n[ 3032.764893] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f5)\n[ 3032.764914] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3033.017596] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ed)\n[ 3033.017617] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3033.023092] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3033.270273] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ea)\n[ 3033.270293] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3033.522803] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 3033.522824] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 3033.775495] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d7)\n[ 3033.775517] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 3034.028188] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 203)\n[ 3034.028209] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3034.280852] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ef)\n[ 3034.280871] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3034.533503] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d8)\n[ 3034.533523] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 3034.786178] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f7)\n[ 3034.786199] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3035.038899] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e2)\n[ 3035.038920] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 3035.291568] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ea)\n[ 3035.291589] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3035.544230] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ea)\n[ 3035.544250] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3035.796905] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1eb)\n[ 3035.796925] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3036.049595] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b6)\n[ 3036.049616] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 3036.302279] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f4)\n[ 3036.302300] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3036.554949] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d3)\n[ 3036.554969] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 3036.807636] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ef)\n[ 3036.807657] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3037.060326] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c7)\n[ 3037.060347] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-112)mA\n[ 3037.313006] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f3)\n[ 3037.313027] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 3037.565664] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1c5)\n[ 3037.565685] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-111)mA\n[ 3037.818295] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e4)\n[ 3037.818316] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 3038.003084] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3038.070998] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d6)\n[ 3038.071017] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 3038.323581] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1eb)\n[ 3038.323601] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3038.576256] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 202)\n[ 3038.576276] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3038.828907] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f8)\n[ 3038.828927] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 3039.023090] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3039.081636] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20d)\n[ 3039.081655] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3039.334339] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 230)\n[ 3039.334360] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3039.587000] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 230)\n[ 3039.587020] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3039.839652] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cb)\n[ 3039.839673] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 3040.092357] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f2)\n[ 3040.092378] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 3040.350477]  4020     3.2 C/MHz    173 mW   12.9 J   23.2 I/mJ    74.6 s\n               1352: \n[ 3043.395753] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (118) data1 (125) \n[ 3043.396560] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3920), src (0x01)\n[ 3043.403451] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3920)\n[ 3043.403471] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6587) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 3043.403486] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6587), ocv (39718)\n[ 3043.404747] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 13d)\n[ 3043.404762] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-78)mA\n[ 3043.406935] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1c6), avg current (-111)mA\n[ 3043.406950] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6587)%\n[ 3043.408210] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (118) data1 (125) \n[ 3043.408847] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3920), src (0x01)\n[ 3043.410376] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2111)\n[ 3043.411156] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2110)\n[ 3043.411830] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(241), Temp-ADC(2041)\n[ 3043.413720] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 3043.416225] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (36) data1 (42) \n[ 3043.429077] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (65) data1 (10) \n[ 3043.429091] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6408) \n[ 3043.429107] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6584), previous soc (6587), diff (0), FG_mode(0)\n[ 3043.431275] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1c6), avg current (-111)mA\n[ 3043.431289] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6584)%\n[ 3043.484065] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3925)\n[ 3043.484095] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 65\n[ 3043.490792] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3920)\n[ 3043.492070] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (118) data1 (125) \n[ 3043.492717] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3920), src (0x01)\n[ 3043.493994] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 13d)\n[ 3043.494008] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-78)mA\n[ 3043.494025] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 3043.494046] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3043.494695] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 3043.494713] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(65.8), raw_soc(65.8)\n[ 3043.494734] sec-battery battery: sec_bat_get_battery_info:Vnow(3920mV),Inow(-78mA),Imax(450mA),SOC(65%),Tbat(232),Tusb(0),Tchg(241),Twpc(0)\n[ 3043.494756] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 3043.494772] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 3043.495422] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(232)\n[ 3043.495437] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 3043.495451] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 3043.495466] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 3043.495490] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 3043.495550] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3043.708961] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15a)\n[ 3043.708980] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-85)mA\n[ 3043.961709] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15b)\n[ 3043.961729] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-85)mA\n[ 3044.214416] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 14b)\n[ 3044.214436] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-81)mA\n[ 3044.467090] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 16c)\n[ 3044.467110] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-89)mA\n[ 3044.719737] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 159)\n[ 3044.719757] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-85)mA\n[ 3044.972354] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 14a)\n[ 3044.972373] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-81)mA\n[ 3045.023079] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3045.224916] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 14b)\n[ 3045.224934] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-81)mA\n[ 3045.477581] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 149)\n[ 3045.477601] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-81)mA\n[ 3045.730197] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 150)\n[ 3045.730216] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-83)mA\n[ 3045.982821] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 154)\n[ 3045.982841] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-84)mA\n[ 3046.235523] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 161)\n[ 3046.235543] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-87)mA\n[ 3046.488167] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b9)\n[ 3046.488187] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-108)mA\n[ 3046.740815] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 13c)\n[ 3046.740835] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-78)mA\n[ 3046.993452] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 161)\n[ 3046.993472] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-87)mA\n[ 3047.246071] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15c)\n[ 3047.246091] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-85)mA\n[ 3047.498721] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 151)\n[ 3047.498741] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-83)mA\n[ 3047.751367] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 154)\n[ 3047.751386] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-84)mA\n[ 3048.004028] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 142)\n[ 3048.004049] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-79)mA\n[ 3048.256699] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 138)\n[ 3048.256719] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-77)mA\n[ 3048.763843] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 246)\n[ 3048.763866] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-143)mA\n[ 3049.003100] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3049.016638] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20b)\n[ 3049.016656] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3049.269208] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 222)\n[ 3049.269227] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-134)mA\n[ 3049.521774] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21e)\n[ 3049.521793] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-133)mA\n[ 3049.774504] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fc)\n[ 3049.774522] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 3050.027131] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 203)\n[ 3050.027150] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3050.279736] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e8)\n[ 3050.279755] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3050.532333] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 213)\n[ 3050.532352] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3050.784934] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 234)\n[ 3050.784954] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-138)mA\n[ 3051.023076] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3051.037613] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 208)\n[ 3051.037630] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 3051.290224] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 241)\n[ 3051.290242] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3051.542822] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 211)\n[ 3051.542840] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3051.795479] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ff)\n[ 3051.795498] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 3052.048104] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 204)\n[ 3052.048124] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3052.300730] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20b)\n[ 3052.300750] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3052.553345] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 206)\n[ 3052.553363] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 3052.805978] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 222)\n[ 3052.805998] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-134)mA\n[ 3053.058605] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 209)\n[ 3053.058624] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3053.311205] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 200)\n[ 3053.311224] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 3053.563803] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20d)\n[ 3053.563822] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3053.816423] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e4)\n[ 3053.816442] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 3054.069047] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 205)\n[ 3054.069067] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 3054.321673] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22b)\n[ 3054.321692] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-136)mA\n[ 3054.574262] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20a)\n[ 3054.574281] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3054.826878] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1dd)\n[ 3054.826897] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 3055.079514] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20c)\n[ 3055.079533] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3055.332048] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 215)\n[ 3055.332066] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-131)mA\n[ 3055.584661] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20b)\n[ 3055.584680] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3055.837274] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ec)\n[ 3055.837293] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3056.089908] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20e)\n[ 3056.089927] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3056.342557] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 210)\n[ 3056.342578] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3056.595247] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20f)\n[ 3056.595266] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3056.847852] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fb)\n[ 3056.847870] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 3057.023083] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3057.100491] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20f)\n[ 3057.100508] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3057.353137] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22f)\n[ 3057.353156] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3057.605752] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 210)\n[ 3057.605770] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3057.858348] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ed)\n[ 3057.858366] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3058.110992] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20b)\n[ 3058.111013] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3058.363627] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22e)\n[ 3058.363646] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3058.616257] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 212)\n[ 3058.616276] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3058.868863] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 203)\n[ 3058.868881] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3059.121211] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20d)\n[ 3059.121230] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3059.373827] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e7)\n[ 3059.373846] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 3059.626444] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20d)\n[ 3059.626463] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3059.879045] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20a)\n[ 3059.879064] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3060.003125] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3060.131695] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 212)\n[ 3060.131712] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3060.384354] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fb)\n[ 3060.384373] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 3060.636965] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 211)\n[ 3060.636984] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3060.889571] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 202)\n[ 3060.889590] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3061.142190] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20c)\n[ 3061.142209] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3061.394775] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fc)\n[ 3061.394795] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 3061.647338] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 217)\n[ 3061.647357] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-131)mA\n[ 3061.899955] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ed)\n[ 3061.899974] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3062.152604] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 210)\n[ 3062.152624] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3062.405310] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 205)\n[ 3062.405330] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 3062.657938] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21b)\n[ 3062.657957] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-132)mA\n[ 3062.910526] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22e)\n[ 3062.910545] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3063.023087] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3063.163137] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 211)\n[ 3063.163155] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3063.415791] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f6)\n[ 3063.415810] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3063.668411] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20e)\n[ 3063.668430] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3063.921020] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 216)\n[ 3063.921039] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-131)mA\n[ 3064.173647] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20b)\n[ 3064.173667] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3064.426296] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f8)\n[ 3064.426315] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 3064.678914] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 240)\n[ 3064.678933] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3064.931510] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20f)\n[ 3064.931529] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3065.184105] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 222)\n[ 3065.184126] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-134)mA\n[ 3065.436729] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 211)\n[ 3065.436749] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3065.689353] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fc)\n[ 3065.689372] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 3065.941943] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 218)\n[ 3065.941962] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-131)mA\n[ 3066.194550] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22c)\n[ 3066.194569] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-136)mA\n[ 3066.447155] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20a)\n[ 3066.447174] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3066.699772] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22b)\n[ 3066.699792] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-136)mA\n[ 3066.952393] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20a)\n[ 3066.952413] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3067.205017] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21a)\n[ 3067.205037] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-132)mA\n[ 3067.457613] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20e)\n[ 3067.457631] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3067.710175] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f2)\n[ 3067.710194] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 3067.962826] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 202)\n[ 3067.962846] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3068.215492] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 217)\n[ 3068.215512] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-131)mA\n[ 3068.468116] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 211)\n[ 3068.468136] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3068.720742] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 214)\n[ 3068.720761] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3068.973376] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20b)\n[ 3068.973395] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3069.023086] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3069.226006] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 212)\n[ 3069.226024] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3069.478616] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 207)\n[ 3069.478635] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 3069.731237] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 221)\n[ 3069.731257] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-134)mA\n[ 3069.983863] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f8)\n[ 3069.983883] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 3070.236471] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ff)\n[ 3070.236490] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 3070.489064] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20b)\n[ 3070.489082] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3070.741605] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fc)\n[ 3070.741624] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 3070.994213] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 209)\n[ 3070.994232] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3071.003110] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3071.246830] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ce)\n[ 3071.246848] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 3071.499440] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 210)\n[ 3071.499459] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3071.752047] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ee)\n[ 3071.752066] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3072.004721] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20e)\n[ 3072.004741] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3072.257389] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 206)\n[ 3072.257410] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 3072.510007] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20b)\n[ 3072.510025] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3072.762607] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21a)\n[ 3072.762627] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-132)mA\n[ 3073.015282] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 209)\n[ 3073.015301] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3073.267939] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 204)\n[ 3073.267959] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3073.497425] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (107) data1 (125) \n[ 3073.498233] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3919), src (0x01)\n[ 3073.504792] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3918)\n[ 3073.504812] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6584) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 3073.504828] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6584), ocv (39716)\n[ 3073.506088] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 203)\n[ 3073.506102] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3073.508276] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1f0), avg current (-122)mA\n[ 3073.508291] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6584)%\n[ 3073.509551] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (107) data1 (125) \n[ 3073.510188] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3919), src (0x01)\n[ 3073.511720] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2110)\n[ 3073.512500] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2109)\n[ 3073.513225] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(242), Temp-ADC(2039)\n[ 3073.515140] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 3073.517675] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (30) data1 (42) \n[ 3073.524295] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 203)\n[ 3073.524309] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3073.530721] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (64) data1 (10) \n[ 3073.530736] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6406) \n[ 3073.530753] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6580), previous soc (6584), diff (0), FG_mode(0)\n[ 3073.533016] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1f0), avg current (-122)mA\n[ 3073.533031] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6580)%\n[ 3073.585278] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3925)\n[ 3073.585303] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 65\n[ 3073.591626] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3918)\n[ 3073.592904] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (107) data1 (125) \n[ 3073.593552] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3919), src (0x01)\n[ 3073.594829] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 203)\n[ 3073.594843] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3073.594861] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 3073.594881] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3073.595530] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 3073.595549] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(65.8), raw_soc(65.8)\n[ 3073.595569] sec-battery battery: sec_bat_get_battery_info:Vnow(3919mV),Inow(-126mA),Imax(450mA),SOC(65%),Tbat(232),Tusb(0),Tchg(242),Twpc(0)\n[ 3073.595590] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 3073.595606] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 3073.596257] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(232)\n[ 3073.596271] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 3073.596286] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 3073.596301] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 3073.596326] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 3073.596379] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3073.777012] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 241)\n[ 3073.777030] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3074.029640] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 203)\n[ 3074.029661] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3074.282254] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 203)\n[ 3074.282273] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3074.534826] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 211)\n[ 3074.534844] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3074.787392] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ef)\n[ 3074.787412] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3075.023078] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3075.040014] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 207)\n[ 3075.040031] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 3075.292576] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 211)\n[ 3075.292596] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3075.545264] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20a)\n[ 3075.545283] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3075.797801] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20c)\n[ 3075.797819] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3076.050315] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20c)\n[ 3076.050336] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3076.302965] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20e)\n[ 3076.303004] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3076.555630] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20d)\n[ 3076.555649] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3076.808251] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22b)\n[ 3076.808271] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-136)mA\n[ 3077.060855] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 210)\n[ 3077.060875] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3077.313482] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f6)\n[ 3077.313501] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3077.566112] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20d)\n[ 3077.566131] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3077.818706] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 237)\n[ 3077.818726] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3078.071330] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20e)\n[ 3078.071351] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3078.323893] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f6)\n[ 3078.323912] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3078.576510] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 215)\n[ 3078.576529] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-131)mA\n[ 3078.829107] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 235)\n[ 3078.829127] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-138)mA\n[ 3079.081710] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 207)\n[ 3079.081729] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 3079.334332] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20a)\n[ 3079.334351] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3079.586949] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 246)\n[ 3079.586968] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-143)mA\n[ 3079.839547] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 210)\n[ 3079.839566] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3080.092171] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1cc)\n[ 3080.092192] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-113)mA\n[ 3080.344843] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 209)\n[ 3080.344864] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3080.597479] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f8)\n[ 3080.597498] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 3080.850076] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20c)\n[ 3080.850095] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3081.023087] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3081.102697] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ed)\n[ 3081.102714] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3081.355288] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 212)\n[ 3081.355307] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3081.607877] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e0)\n[ 3081.607896] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 3081.860500] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 212)\n[ 3081.860520] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3082.003107] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3082.113196] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 252)\n[ 3082.113213] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-146)mA\n[ 3082.365830] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 211)\n[ 3082.365848] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3082.618472] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20c)\n[ 3082.618492] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3082.871102] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20f)\n[ 3082.871122] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3083.123565] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22e)\n[ 3083.123585] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3083.376173] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 211)\n[ 3083.376193] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3083.628783] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21a)\n[ 3083.628803] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-132)mA\n[ 3083.881399] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20c)\n[ 3083.881419] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3084.134013] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22f)\n[ 3084.134034] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3084.386644] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 210)\n[ 3084.386663] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3084.639275] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 259)\n[ 3084.639294] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-147)mA\n[ 3084.891895] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 206)\n[ 3084.891914] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 3085.144501] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e0)\n[ 3085.144521] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 3085.397096] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 210)\n[ 3085.397115] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3085.649656] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 220)\n[ 3085.649676] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-133)mA\n[ 3085.902258] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f7)\n[ 3085.902277] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3086.154867] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 211)\n[ 3086.154886] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3086.407490] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f9)\n[ 3086.407509] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 3086.660076] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 236)\n[ 3086.660095] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3086.912701] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 211)\n[ 3086.912721] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3087.023086] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3087.165409] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e3)\n[ 3087.165427] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 3087.417977] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20e)\n[ 3087.417996] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3087.670601] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21d)\n[ 3087.670620] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-133)mA\n[ 3087.923061] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 207)\n[ 3087.923081] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 3088.175720] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 224)\n[ 3088.175741] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-134)mA\n[ 3088.428380] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20d)\n[ 3088.428399] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3088.680980] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25f)\n[ 3088.680999] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3088.933600] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 205)\n[ 3088.933619] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 3089.186242] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20a)\n[ 3089.186262] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3089.438851] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20e)\n[ 3089.438870] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3089.691442] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 218)\n[ 3089.691460] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-131)mA\n[ 3089.944056] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20f)\n[ 3089.944076] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3090.196696] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 241)\n[ 3090.196716] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3090.449306] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 219)\n[ 3090.449325] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-132)mA\n[ 3090.701897] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e2)\n[ 3090.701915] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 3090.954447] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 212)\n[ 3090.954466] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3091.207095] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 235)\n[ 3091.207114] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-138)mA\n[ 3091.459694] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20f)\n[ 3091.459713] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3091.712288] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e7)\n[ 3091.712307] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-119)mA\n[ 3091.964902] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 212)\n[ 3091.964922] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3092.217547] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1dc)\n[ 3092.217567] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 3092.470185] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 207)\n[ 3092.470204] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 3092.722640] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ef)\n[ 3092.722659] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3092.975305] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 210)\n[ 3092.975324] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3093.003119] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3093.023085] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3093.227893] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 215)\n[ 3093.227909] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-131)mA\n[ 3093.480553] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20f)\n[ 3093.480572] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3093.733144] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22f)\n[ 3093.733162] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3093.985775] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fe)\n[ 3093.985795] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 3094.238404] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f3)\n[ 3094.238423] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 3094.491017] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20f)\n[ 3094.491037] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3094.743613] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 231)\n[ 3094.743632] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3094.996218] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 241)\n[ 3094.996236] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3095.248839] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22f)\n[ 3095.248859] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3095.501458] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e8)\n[ 3095.501477] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-120)mA\n[ 3095.754057] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20c)\n[ 3095.754076] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3096.006665] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3096.006684] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3096.259240] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 203)\n[ 3096.259261] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3096.511872] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f1)\n[ 3096.511891] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 3096.764474] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 207)\n[ 3096.764493] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 3097.017101] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21f)\n[ 3097.017121] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-133)mA\n[ 3097.269710] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20f)\n[ 3097.269729] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3097.522114] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f9)\n[ 3097.522134] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 3097.774762] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 209)\n[ 3097.774782] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3098.027388] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 238)\n[ 3098.027408] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3098.280018] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 212)\n[ 3098.280037] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3098.532641] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23e)\n[ 3098.532660] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3098.785245] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20f)\n[ 3098.785263] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3099.023084] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3099.037899] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f0)\n[ 3099.037915] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 3099.290521] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 202)\n[ 3099.290540] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3099.543256] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 232)\n[ 3099.543276] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-138)mA\n[ 3099.795892] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20f)\n[ 3099.795911] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3100.048518] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 203)\n[ 3100.048537] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3100.301134] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 211)\n[ 3100.301154] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3100.553785] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f6)\n[ 3100.553805] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3100.806433] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 208)\n[ 3100.806452] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 3101.059033] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 206)\n[ 3101.059052] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 3101.311631] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 212)\n[ 3101.311650] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3101.564239] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 203)\n[ 3101.564258] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3101.816865] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 217)\n[ 3101.816885] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-131)mA\n[ 3102.069501] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f0)\n[ 3102.069520] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 3102.322062] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 212)\n[ 3102.322081] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3102.574689] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1df)\n[ 3102.574708] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-117)mA\n[ 3102.827308] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20a)\n[ 3102.827328] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3103.079941] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 204)\n[ 3103.079961] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3103.332540] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20c)\n[ 3103.332559] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3103.585114] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 253)\n[ 3103.585133] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-146)mA\n[ 3103.598307] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (99) data1 (125) \n[ 3103.599110] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3918), src (0x01)\n[ 3103.605719] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3918)\n[ 3103.605739] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6580) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 3103.605755] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6580), ocv (39714)\n[ 3103.607016] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 253)\n[ 3103.607030] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-146)mA\n[ 3103.609204] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1f4), avg current (-123)mA\n[ 3103.609218] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6580)%\n[ 3103.610478] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (99) data1 (125) \n[ 3103.611115] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3918), src (0x01)\n[ 3103.612647] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2110)\n[ 3103.613485] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2110)\n[ 3103.614160] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(243), Temp-ADC(2035)\n[ 3103.616048] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 3103.618551] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (22) data1 (42) \n[ 3103.631369] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (63) data1 (10) \n[ 3103.631384] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6403) \n[ 3103.631400] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6575), previous soc (6580), diff (0), FG_mode(0)\n[ 3103.633823] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1f4), avg current (-123)mA\n[ 3103.633837] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6575)%\n[ 3103.686651] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3921)\n[ 3103.686676] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 65\n[ 3103.693326] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3918)\n[ 3103.694602] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (99) data1 (125) \n[ 3103.695247] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3918), src (0x01)\n[ 3103.696523] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 253)\n[ 3103.696537] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-146)mA\n[ 3103.696555] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 3103.696574] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3103.697218] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 3103.697236] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(65.7), raw_soc(65.7)\n[ 3103.697255] sec-battery battery: sec_bat_get_battery_info:Vnow(3918mV),Inow(-146mA),Imax(450mA),SOC(65%),Tbat(232),Tusb(0),Tchg(243),Twpc(0)\n[ 3103.697276] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 3103.697292] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 3103.697943] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(232)\n[ 3103.697957] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 3103.697972] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 3103.697987] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 3103.698012] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 3103.698064] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3103.837886] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 232)\n[ 3103.837904] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-138)mA\n[ 3104.003085] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3104.090621] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20a)\n[ 3104.090639] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3104.343265] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 210)\n[ 3104.343285] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3104.595880] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21f)\n[ 3104.595898] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-133)mA\n[ 3104.848493] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20d)\n[ 3104.848512] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3105.023076] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3105.101091] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20e)\n[ 3105.101108] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3105.353657] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20c)\n[ 3105.353676] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3105.606234] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22c)\n[ 3105.606253] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-136)mA\n[ 3105.858854] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20b)\n[ 3105.858873] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3106.111496] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f8)\n[ 3106.111515] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 3106.364125] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 211)\n[ 3106.364144] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3106.616738] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fb)\n[ 3106.616756] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 3106.869325] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 207)\n[ 3106.869343] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 3107.121841] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fa)\n[ 3107.121860] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-124)mA\n[ 3107.374460] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20d)\n[ 3107.374479] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3107.627068] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20c)\n[ 3107.627087] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3107.879666] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20f)\n[ 3107.879685] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3108.132329] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20f)\n[ 3108.132349] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3108.384981] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20e)\n[ 3108.385001] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3108.637592] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 242)\n[ 3108.637611] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-142)mA\n[ 3108.890185] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 215)\n[ 3108.890204] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-131)mA\n[ 3109.142798] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 211)\n[ 3109.142819] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3109.395476] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20a)\n[ 3109.395496] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3109.648076] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3109.648095] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3109.900669] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 215)\n[ 3109.900687] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-131)mA\n[ 3110.153292] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 225)\n[ 3110.153312] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-135)mA\n[ 3110.405952] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3110.405972] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3110.658549] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 203)\n[ 3110.658568] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3110.911148] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f0)\n[ 3110.911167] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 3111.023090] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3111.163796] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f0)\n[ 3111.163814] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-122)mA\n[ 3111.416376] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22c)\n[ 3111.416396] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-136)mA\n[ 3111.668930] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20d)\n[ 3111.668950] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3111.921544] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 3111.921562] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 3112.174110] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 211)\n[ 3112.174129] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3112.426702] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d4)\n[ 3112.426722] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-115)mA\n[ 3112.679358] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20d)\n[ 3112.679377] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3112.931947] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 230)\n[ 3112.931967] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3113.184565] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 218)\n[ 3113.184586] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-131)mA\n[ 3113.437196] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 214)\n[ 3113.437216] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3113.689819] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 211)\n[ 3113.689839] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3113.942410] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 207)\n[ 3113.942429] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-127)mA\n[ 3114.195018] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 213)\n[ 3114.195038] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3114.447634] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 226)\n[ 3114.447654] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-135)mA\n[ 3114.700251] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20e)\n[ 3114.700269] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3114.952852] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1f7)\n[ 3114.952871] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-123)mA\n[ 3115.003170] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3115.205549] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 202)\n[ 3115.205567] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-126)mA\n[ 3115.458180] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22f)\n[ 3115.458200] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3115.710794] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 214)\n[ 3115.710814] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3115.963394] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21f)\n[ 3115.963413] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-133)mA\n[ 3116.216035] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20b)\n[ 3116.216055] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-128)mA\n[ 3116.468666] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1e0)\n[ 3116.468685] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-118)mA\n[ 3116.721299] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20d)\n[ 3116.721319] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3116.973884] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 237)\n[ 3116.973903] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3117.023084] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3117.231045]  4379     3.2 C/MHz    202 mW   13.9 J   21.6 I/mJ    68.5 s\n               1482: \n[ 3120.590019] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 16d)\n[ 3120.590037] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-90)mA\n[ 3120.842730] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 169)\n[ 3120.842750] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-89)mA\n[ 3121.095405] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 14d)\n[ 3121.095424] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-82)mA\n[ 3121.347989] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 153)\n[ 3121.348007] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-83)mA\n[ 3121.600553] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 16c)\n[ 3121.600571] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-89)mA\n[ 3121.853087] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 156)\n[ 3121.853105] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-84)mA\n[ 3122.105755] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 160)\n[ 3122.105775] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-86)mA\n[ 3122.358337] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 157)\n[ 3122.358355] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-84)mA\n[ 3122.610910] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 196)\n[ 3122.610930] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 3122.863505] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 147)\n[ 3122.863524] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-80)mA\n[ 3123.023090] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3123.116138] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 162)\n[ 3123.116155] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-87)mA\n[ 3123.368726] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 132)\n[ 3123.368743] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-75)mA\n[ 3123.621323] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x  18)\n[ 3123.621341] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-6)mA\n[ 3123.873886] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 166)\n[ 3123.873905] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-88)mA\n[ 3124.126530] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 151)\n[ 3124.126550] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-83)mA\n[ 3124.379157] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 174)\n[ 3124.379176] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-91)mA\n[ 3124.631717] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15a)\n[ 3124.631734] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-85)mA\n[ 3124.884285] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 14e)\n[ 3124.884303] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-82)mA\n[ 3125.136892] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15e)\n[ 3125.136910] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-86)mA\n[ 3125.643860] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23c)\n[ 3125.643882] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3125.896576] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 248)\n[ 3125.896596] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-143)mA\n[ 3126.003107] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3126.149192] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 240)\n[ 3126.149209] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3126.401787] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 246)\n[ 3126.401806] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-143)mA\n[ 3126.654340] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23a)\n[ 3126.654359] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3126.906910] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23d)\n[ 3126.906929] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3127.159471] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23e)\n[ 3127.159490] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3127.412050] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25d)\n[ 3127.412068] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-148)mA\n[ 3127.664634] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23b)\n[ 3127.664653] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3127.917198] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 215)\n[ 3127.917216] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-131)mA\n[ 3128.169798] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23c)\n[ 3128.169818] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3128.422235] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 255)\n[ 3128.422254] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-146)mA\n[ 3128.674824] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 235)\n[ 3128.674843] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-138)mA\n[ 3128.927336] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 232)\n[ 3128.927354] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-138)mA\n[ 3129.023079] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3129.179910] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23e)\n[ 3129.179927] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3129.432484] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22b)\n[ 3129.432503] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-136)mA\n[ 3129.685044] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 236)\n[ 3129.685063] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3129.937644] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 253)\n[ 3129.937662] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-146)mA\n[ 3130.190197] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23f)\n[ 3130.190217] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3130.442776] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20e)\n[ 3130.442795] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3130.695390] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23a)\n[ 3130.695409] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3130.947946] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 276)\n[ 3130.947964] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-154)mA\n[ 3131.200512] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 241)\n[ 3131.200532] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3131.453081] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 24d)\n[ 3131.453100] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-144)mA\n[ 3131.705672] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 236)\n[ 3131.705691] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3131.958236] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 233)\n[ 3131.958255] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-138)mA\n[ 3132.210821] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 238)\n[ 3132.210841] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3132.463393] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 227)\n[ 3132.463413] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-135)mA\n[ 3132.715983] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 237)\n[ 3132.716002] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3132.968532] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25d)\n[ 3132.968550] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-148)mA\n[ 3133.221091] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23a)\n[ 3133.221110] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3133.473656] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 245)\n[ 3133.473676] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-142)mA\n[ 3133.699890] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (88) data1 (125) \n[ 3133.700653] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3916), src (0x01)\n[ 3133.707190] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3916)\n[ 3133.707207] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6575) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 3133.707221] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6575), ocv (39711)\n[ 3133.708495] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 248)\n[ 3133.708508] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-143)mA\n[ 3133.710709] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1eb), avg current (-120)mA\n[ 3133.710722] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6575)%\n[ 3133.711994] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (88) data1 (125) \n[ 3133.712638] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3916), src (0x01)\n[ 3133.713929] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(233), Temp-ADC(2106)\n[ 3133.714558] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(233), Temp-ADC(2106)\n[ 3133.715185] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(242), Temp-ADC(2038)\n[ 3133.717109] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 3133.719661] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (16) data1 (42) \n[ 3133.725885] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 248)\n[ 3133.725899] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-143)mA\n[ 3133.732530] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (62) data1 (10) \n[ 3133.732544] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6401) \n[ 3133.732560] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6572), previous soc (6575), diff (0), FG_mode(0)\n[ 3133.734777] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1eb), avg current (-120)mA\n[ 3133.734791] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6572)%\n[ 3133.786997] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3921)\n[ 3133.787019] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 65\n[ 3133.793325] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3916)\n[ 3133.794598] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (88) data1 (125) \n[ 3133.795242] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3916), src (0x01)\n[ 3133.796515] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2d2)\n[ 3133.796528] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-177)mA\n[ 3133.796544] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 3133.796563] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3133.797208] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 3133.797225] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(65.7), raw_soc(65.7)\n[ 3133.797244] sec-battery battery: sec_bat_get_battery_info:Vnow(3916mV),Inow(-143mA),Imax(450mA),SOC(65%),Tbat(233),Tusb(0),Tchg(242),Twpc(0)\n[ 3133.797264] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 3133.797279] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 3133.797926] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(233)\n[ 3133.797940] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 3133.797954] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 3133.797965] sec_bat_calculate_safety_time : SAFETY TIME RESET! DISCHARGING CNT(5)\n[ 3133.797988] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 3133.798040] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3133.978560] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2d2)\n[ 3133.978577] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-177)mA\n[ 3134.231175] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 231)\n[ 3134.231194] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3134.483701] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 263)\n[ 3134.483720] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3134.736249] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23b)\n[ 3134.736269] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3134.988818] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 257)\n[ 3134.988837] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-147)mA\n[ 3135.023073] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3135.241360] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 241)\n[ 3135.241377] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3135.493922] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26c)\n[ 3135.493941] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-152)mA\n[ 3135.746494] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3135.746514] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3135.999081] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29a)\n[ 3135.999099] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-163)mA\n[ 3136.251674] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25f)\n[ 3136.251693] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3136.504251] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 240)\n[ 3136.504271] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3136.756821] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 226)\n[ 3136.756840] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-135)mA\n[ 3137.003125] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3137.009427] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23c)\n[ 3137.009444] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3137.261995] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ff)\n[ 3137.262014] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 3137.514555] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 232)\n[ 3137.514574] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-138)mA\n[ 3137.767115] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 212)\n[ 3137.767133] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3138.019716] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 242)\n[ 3138.019735] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-142)mA\n[ 3138.272290] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 269)\n[ 3138.272309] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3138.524869] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 250)\n[ 3138.524888] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-145)mA\n[ 3138.777455] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21e)\n[ 3138.777473] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-133)mA\n[ 3139.030030] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23e)\n[ 3139.030050] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3139.282536] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 267)\n[ 3139.282555] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3139.535091] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 236)\n[ 3139.535110] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3139.787642] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22c)\n[ 3139.787660] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-136)mA\n[ 3140.040188] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23c)\n[ 3140.040206] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3140.292810] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21c)\n[ 3140.292830] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-132)mA\n[ 3140.545416] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3140.545435] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3140.797963] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 240)\n[ 3140.797982] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3141.023081] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3141.050585] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 237)\n[ 3141.050602] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3141.303186] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23f)\n[ 3141.303205] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3141.555740] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 230)\n[ 3141.555759] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3141.808300] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25a)\n[ 3141.808320] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-147)mA\n[ 3142.060870] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3142.060889] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3142.313446] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 256)\n[ 3142.313464] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-146)mA\n[ 3142.566007] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 238)\n[ 3142.566026] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3142.818559] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 24f)\n[ 3142.818578] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-145)mA\n[ 3143.071143] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 240)\n[ 3143.071162] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3143.323564] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 254)\n[ 3143.323583] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-146)mA\n[ 3143.576117] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23b)\n[ 3143.576136] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3143.828660] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 227)\n[ 3143.828678] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-135)mA\n[ 3144.081247] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23c)\n[ 3144.081266] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3144.333854] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 234)\n[ 3144.333874] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-138)mA\n[ 3144.586417] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23e)\n[ 3144.586435] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3144.838906] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 241)\n[ 3144.838925] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3145.091408] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3145.091427] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3145.343915] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23e)\n[ 3145.343934] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3145.596422] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22d)\n[ 3145.596441] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-136)mA\n[ 3145.848982] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 241)\n[ 3145.849001] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3146.101581] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 246)\n[ 3146.101601] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-143)mA\n[ 3146.354167] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 250)\n[ 3146.354186] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-145)mA\n[ 3146.606742] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23f)\n[ 3146.606761] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3146.859289] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 253)\n[ 3146.859308] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-146)mA\n[ 3147.023080] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3147.111858] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23a)\n[ 3147.111875] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3147.364428] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23b)\n[ 3147.364446] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3147.617012] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23c)\n[ 3147.617030] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3147.869562] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 230)\n[ 3147.869581] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3148.003100] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3148.122118] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 240)\n[ 3148.122135] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3148.374778] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22b)\n[ 3148.374798] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-136)mA\n[ 3148.627362] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 238)\n[ 3148.627381] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3148.879909] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20e)\n[ 3148.879927] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3149.132468] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23f)\n[ 3149.132487] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3149.385038] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 250)\n[ 3149.385057] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-145)mA\n[ 3149.637609] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 246)\n[ 3149.637628] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-143)mA\n[ 3149.890171] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 242)\n[ 3149.890190] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-142)mA\n[ 3150.142728] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23f)\n[ 3150.142747] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3150.395321] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23f)\n[ 3150.395340] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3150.647838] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23d)\n[ 3150.647856] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3150.900411] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22e)\n[ 3150.900430] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3151.153029] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 242)\n[ 3151.153049] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-142)mA\n[ 3151.405643] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3151.405662] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3151.658212] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26a)\n[ 3151.658231] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3151.910799] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23d)\n[ 3151.910818] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3152.163388] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 224)\n[ 3152.163408] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-134)mA\n[ 3152.415971] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 237)\n[ 3152.415989] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3152.668539] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21d)\n[ 3152.668558] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-133)mA\n[ 3152.921120] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3152.921139] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3153.023078] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3153.173572] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 24d)\n[ 3153.173588] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-144)mA\n[ 3153.426143] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 238)\n[ 3153.426162] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3153.678714] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23b)\n[ 3153.678733] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3153.931289] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3153.931307] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3154.183829] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 264)\n[ 3154.183848] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3154.436380] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23f)\n[ 3154.436398] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3154.688887] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22b)\n[ 3154.688906] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-136)mA\n[ 3154.941453] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23a)\n[ 3154.941472] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3155.194003] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 228)\n[ 3155.194022] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-135)mA\n[ 3155.446553] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 237)\n[ 3155.446571] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3155.699100] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 240)\n[ 3155.699119] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3155.951660] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3155.951680] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3156.204205] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 252)\n[ 3156.204225] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-146)mA\n[ 3156.456731] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3156.456749] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3156.709219] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1fe)\n[ 3156.709237] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 3156.961773] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 24c)\n[ 3156.961793] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-144)mA\n[ 3157.214312] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 262)\n[ 3157.214330] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3157.466867] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 246)\n[ 3157.466885] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-143)mA\n[ 3157.719427] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21e)\n[ 3157.719445] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-133)mA\n[ 3157.971909] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22e)\n[ 3157.971929] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3158.224446] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26f)\n[ 3158.224465] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-153)mA\n[ 3158.477016] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3158.477035] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3158.729569] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 24f)\n[ 3158.729588] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-145)mA\n[ 3158.982148] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 242)\n[ 3158.982167] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-142)mA\n[ 3159.003106] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3159.023071] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3159.234761] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26c)\n[ 3159.234777] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-152)mA\n[ 3159.487319] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 235)\n[ 3159.487339] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-138)mA\n[ 3159.739866] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 254)\n[ 3159.739884] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-146)mA\n[ 3159.992371] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23f)\n[ 3159.992390] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3160.244973] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 249)\n[ 3160.244994] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-143)mA\n[ 3160.497548] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 233)\n[ 3160.497566] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-138)mA\n[ 3160.750077] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 240)\n[ 3160.750096] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3161.002582] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23f)\n[ 3161.002601] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3161.255139] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 24d)\n[ 3161.255158] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-144)mA\n[ 3161.507651] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 231)\n[ 3161.507670] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3161.760136] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 235)\n[ 3161.760154] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-138)mA\n[ 3162.012611] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 24b)\n[ 3162.012631] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-144)mA\n[ 3162.265253] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 27a)\n[ 3162.265273] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-155)mA\n[ 3162.517852] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23b)\n[ 3162.517871] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3162.770426] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 224)\n[ 3162.770445] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-134)mA\n[ 3163.022777] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23d)\n[ 3163.022795] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3163.275400] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 251)\n[ 3163.275419] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-145)mA\n[ 3163.527971] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23c)\n[ 3163.527990] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3163.780512] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21e)\n[ 3163.780531] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-133)mA\n[ 3163.799955] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (75) data1 (125) \n[ 3163.800646] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3915), src (0x01)\n[ 3163.807337] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3914)\n[ 3163.807355] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6572) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 3163.807369] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6572), ocv (39709)\n[ 3163.808625] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21e)\n[ 3163.808638] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-133)mA\n[ 3163.810804] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 223), avg current (-134)mA\n[ 3163.810818] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6572)%\n[ 3163.812073] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (75) data1 (125) \n[ 3163.812707] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3915), src (0x01)\n[ 3163.814278] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(232), Temp-ADC(2108)\n[ 3163.815047] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(233), Temp-ADC(2107)\n[ 3163.815713] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(244), Temp-ADC(2031)\n[ 3163.817595] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 3163.820091] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (10) data1 (42) \n[ 3163.832876] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (60) data1 (10) \n[ 3163.832890] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6396) \n[ 3163.832905] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6568), previous soc (6572), diff (0), FG_mode(0)\n[ 3163.835068] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 223), avg current (-134)mA\n[ 3163.835081] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6568)%\n[ 3163.887823] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3917)\n[ 3163.887844] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 65\n[ 3163.894290] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3914)\n[ 3163.895561] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (75) data1 (125) \n[ 3163.896204] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3915), src (0x01)\n[ 3163.897474] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29e)\n[ 3163.897487] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3163.897503] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 3163.897522] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3163.898163] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 3163.898179] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(65.6), raw_soc(65.6)\n[ 3163.898197] sec-battery battery: sec_bat_get_battery_info:Vnow(3915mV),Inow(-133mA),Imax(450mA),SOC(65%),Tbat(232),Tusb(0),Tchg(244),Twpc(0)\n[ 3163.898216] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 3163.898231] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 3163.898878] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(232)\n[ 3163.898892] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 3163.898905] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 3163.898919] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 3163.898942] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 3163.898995] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3164.033231] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29e)\n[ 3164.033248] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3164.285925] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 24d)\n[ 3164.285944] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-144)mA\n[ 3164.538514] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3164.538533] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3164.791062] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 227)\n[ 3164.791081] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-135)mA\n[ 3165.023069] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3165.043415] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 244)\n[ 3165.043432] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-142)mA\n[ 3165.295949] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3165.295968] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3165.548514] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 254)\n[ 3165.548533] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-146)mA\n[ 3165.801061] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 273)\n[ 3165.801081] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-154)mA\n[ 3166.053630] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 24b)\n[ 3166.053648] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-144)mA\n[ 3166.306180] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 24d)\n[ 3166.306199] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-144)mA\n[ 3166.558749] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3166.558769] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3166.811344] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 233)\n[ 3166.811363] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-138)mA\n[ 3167.063852] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 257)\n[ 3167.063871] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-147)mA\n[ 3167.316468] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26f)\n[ 3167.316487] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-153)mA\n[ 3167.569001] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25f)\n[ 3167.569020] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3167.821525] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23a)\n[ 3167.821543] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3168.074121] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25b)\n[ 3168.074141] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-148)mA\n[ 3168.326711] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 238)\n[ 3168.326731] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3168.579298] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 267)\n[ 3168.579317] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3168.831861] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23d)\n[ 3168.831880] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3169.084420] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 24f)\n[ 3169.084439] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-145)mA\n[ 3169.336966] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23c)\n[ 3169.336985] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3169.589525] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 24e)\n[ 3169.589544] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-145)mA\n[ 3169.842098] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 241)\n[ 3169.842117] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3170.003094] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3170.094689] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 224)\n[ 3170.094705] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-134)mA\n[ 3170.347250] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23f)\n[ 3170.347269] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3170.599764] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 248)\n[ 3170.599783] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-143)mA\n[ 3170.852326] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23a)\n[ 3170.852344] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3171.023082] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3171.104888] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 235)\n[ 3171.104905] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-138)mA\n[ 3171.357455] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3171.357473] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3171.610011] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 271)\n[ 3171.610031] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-153)mA\n[ 3171.862578] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23c)\n[ 3171.862596] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3172.115206] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ee)\n[ 3172.115225] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-121)mA\n[ 3172.367736] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3172.367755] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3172.620319] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 225)\n[ 3172.620338] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-135)mA\n[ 3172.872880] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 242)\n[ 3172.872900] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-142)mA\n[ 3173.125449] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23c)\n[ 3173.125469] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3173.377996] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 242)\n[ 3173.378015] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-142)mA\n[ 3173.630536] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 20f)\n[ 3173.630555] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-129)mA\n[ 3173.883101] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 246)\n[ 3173.883120] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-143)mA\n[ 3174.135683] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26f)\n[ 3174.135703] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-153)mA\n[ 3174.388238] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23e)\n[ 3174.388257] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3174.640795] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21c)\n[ 3174.640814] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-132)mA\n[ 3174.893368] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3174.893387] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3175.145939] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 286)\n[ 3175.145958] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-158)mA\n[ 3175.398495] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 238)\n[ 3175.398514] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3175.651039] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 24c)\n[ 3175.651057] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-144)mA\n[ 3175.903249] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 238)\n[ 3175.903268] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3176.155853] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 279)\n[ 3176.155872] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-155)mA\n[ 3176.408439] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 238)\n[ 3176.408458] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3176.660982] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23e)\n[ 3176.661001] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3176.913535] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 240)\n[ 3176.913554] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3177.023075] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3177.166141] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 229)\n[ 3177.166158] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-136)mA\n[ 3177.418723] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 231)\n[ 3177.418742] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3177.671211] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 243)\n[ 3177.671229] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-142)mA\n[ 3177.923617] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 244)\n[ 3177.923636] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-142)mA\n[ 3178.176206] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 261)\n[ 3178.176225] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3178.428793] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 237)\n[ 3178.428812] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3178.681347] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 220)\n[ 3178.681366] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-133)mA\n[ 3178.933899] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 244)\n[ 3178.933917] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-142)mA\n[ 3179.186469] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25c)\n[ 3179.186489] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-148)mA\n[ 3179.439047] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23b)\n[ 3179.439066] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3179.691592] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 262)\n[ 3179.691611] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3179.944137] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3179.944156] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3180.196733] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 242)\n[ 3180.196753] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-142)mA\n[ 3180.449327] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23e)\n[ 3180.449346] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3180.701874] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 28b)\n[ 3180.701893] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-159)mA\n[ 3180.954418] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 240)\n[ 3180.954437] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3181.003094] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3181.206998] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 24e)\n[ 3181.207015] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-145)mA\n[ 3181.459574] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23b)\n[ 3181.459594] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3181.712141] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 222)\n[ 3181.712159] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-134)mA\n[ 3181.964730] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 241)\n[ 3181.964750] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3182.217324] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25e)\n[ 3182.217343] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-148)mA\n[ 3182.469911] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 261)\n[ 3182.469930] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3182.722441] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 287)\n[ 3182.722460] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-158)mA\n[ 3182.974992] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 211)\n[ 3182.975012] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3183.023077] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3183.227498] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23c)\n[ 3183.227514] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3183.480084] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26e)\n[ 3183.480103] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-152)mA\n[ 3183.732604] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23a)\n[ 3183.732623] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3183.985208] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 216)\n[ 3183.985228] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-131)mA\n[ 3184.237796] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23f)\n[ 3184.237816] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3184.490406] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3184.490425] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3184.742976] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 237)\n[ 3184.743014] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3184.995575] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25d)\n[ 3184.995594] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-148)mA\n[ 3185.248135] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 240)\n[ 3185.248153] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3185.500707] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22d)\n[ 3185.500727] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-136)mA\n[ 3185.753280] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 229)\n[ 3185.753299] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-136)mA\n[ 3186.005844] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 212)\n[ 3186.005863] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3186.258395] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 241)\n[ 3186.258414] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3186.510941] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 219)\n[ 3186.510960] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-132)mA\n[ 3186.763516] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23b)\n[ 3186.763535] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3187.016112] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23e)\n[ 3187.016131] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3187.268673] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23a)\n[ 3187.268692] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3187.521226] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 246)\n[ 3187.521245] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-143)mA\n[ 3187.773798] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23d)\n[ 3187.773818] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3188.030160]  4801     3.2 C/MHz    250 mW   15.6 J   19.2 I/mJ    62.5 s\n               1586: \n[ 3189.023101] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3191.388538] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 149)\n[ 3191.388559] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-81)mA\n[ 3191.641190] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 16c)\n[ 3191.641209] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-89)mA\n[ 3191.893771] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15f)\n[ 3191.893789] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-86)mA\n[ 3192.003112] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3192.146387] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 145)\n[ 3192.146403] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-80)mA\n[ 3192.398972] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 14d)\n[ 3192.398990] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-82)mA\n[ 3192.651504] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 159)\n[ 3192.651521] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-85)mA\n[ 3192.903991] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 16d)\n[ 3192.904015] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-90)mA\n[ 3193.156651] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 161)\n[ 3193.156668] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-87)mA\n[ 3193.409149] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15e)\n[ 3193.409167] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-86)mA\n[ 3193.661672] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 165)\n[ 3193.661688] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-88)mA\n[ 3193.900852] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (125) data1 (125) \n[ 3193.901660] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3921), src (0x01)\n[ 3193.908839] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3920)\n[ 3193.908856] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6568) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 3193.908870] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6568), ocv (39707)\n[ 3193.910138] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 157)\n[ 3193.910151] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-84)mA\n[ 3193.912341] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1ed), avg current (-121)mA\n[ 3193.912355] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6568)%\n[ 3193.914374] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (125) data1 (125) \n[ 3193.915013] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 157)\n[ 3193.915027] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-84)mA\n[ 3193.915664] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3921), src (0x01)\n[ 3193.917188] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(233), Temp-ADC(2107)\n[ 3193.917952] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(233), Temp-ADC(2106)\n[ 3193.918613] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(244), Temp-ADC(2031)\n[ 3193.920512] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 3193.923032] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (2) data1 (42) \n[ 3193.936170] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (59) data1 (10) \n[ 3193.936183] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6394) \n[ 3193.936197] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6563), previous soc (6568), diff (0), FG_mode(0)\n[ 3193.938383] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 1ed), avg current (-121)mA\n[ 3193.938395] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6563)%\n[ 3193.990911] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3917)\n[ 3193.990933] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 65\n[ 3193.997294] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3920)\n[ 3193.998574] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (125) data1 (125) \n[ 3193.999221] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3921), src (0x01)\n[ 3194.000502] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 157)\n[ 3194.000514] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-84)mA\n[ 3194.000528] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 3194.000546] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3194.001194] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 3194.001209] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(65.6), raw_soc(65.6)\n[ 3194.001226] sec-battery battery: sec_bat_get_battery_info:Vnow(3921mV),Inow(-84mA),Imax(450mA),SOC(65%),Tbat(233),Tusb(0),Tchg(244),Twpc(0)\n[ 3194.001246] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 3194.001259] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 3194.001910] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(233)\n[ 3194.001923] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 3194.001935] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 3194.001948] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 3194.001968] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 3194.002020] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3194.167778] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15c)\n[ 3194.167794] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-85)mA\n[ 3194.420417] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 150)\n[ 3194.420434] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-83)mA\n[ 3194.672962] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15e)\n[ 3194.672998] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-86)mA\n[ 3194.925552] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 176)\n[ 3194.925569] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-92)mA\n[ 3195.023073] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3195.178144] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 119)\n[ 3195.178160] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-69)mA\n[ 3195.430720] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 16f)\n[ 3195.430736] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-90)mA\n[ 3195.683249] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 164)\n[ 3195.683266] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-87)mA\n[ 3195.935733] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 168)\n[ 3195.935750] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-88)mA\n[ 3196.442566] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23b)\n[ 3196.442588] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3196.695278] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 263)\n[ 3196.695298] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3196.947829] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 271)\n[ 3196.947846] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-153)mA\n[ 3197.200393] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 267)\n[ 3197.200411] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3197.452946] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 239)\n[ 3197.452963] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3197.705504] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 263)\n[ 3197.705521] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3197.958025] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 27e)\n[ 3197.958042] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-156)mA\n[ 3198.210572] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 262)\n[ 3198.210590] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3198.463111] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 212)\n[ 3198.463129] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-130)mA\n[ 3198.715659] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 260)\n[ 3198.715677] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3198.968190] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 273)\n[ 3198.968208] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-154)mA\n[ 3199.220653] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 265)\n[ 3199.220670] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3199.473200] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 289)\n[ 3199.473218] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-159)mA\n[ 3199.725771] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 262)\n[ 3199.725789] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3199.978313] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 28c)\n[ 3199.978330] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-160)mA\n[ 3200.230888] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 264)\n[ 3200.230906] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3200.483437] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 257)\n[ 3200.483454] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-147)mA\n[ 3200.735981] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 260)\n[ 3200.735998] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3200.988487] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 28d)\n[ 3200.988506] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-160)mA\n[ 3201.023084] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3201.241011] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 261)\n[ 3201.241027] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3201.493551] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26d)\n[ 3201.493568] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-152)mA\n[ 3201.746084] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 268)\n[ 3201.746101] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3201.998612] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 216)\n[ 3201.998630] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-131)mA\n[ 3202.251133] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 258)\n[ 3202.251150] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-147)mA\n[ 3202.503659] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 232)\n[ 3202.503677] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-138)mA\n[ 3202.756197] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 279)\n[ 3202.756215] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-155)mA\n[ 3203.003106] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3203.008754] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 28f)\n[ 3203.008768] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-160)mA\n[ 3203.261288] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 264)\n[ 3203.261306] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3203.513815] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 293)\n[ 3203.513832] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-161)mA\n[ 3203.766359] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 268)\n[ 3203.766377] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3204.018917] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29e)\n[ 3204.018935] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3204.271421] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25f)\n[ 3204.271440] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3204.523982] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 250)\n[ 3204.523999] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-145)mA\n[ 3204.776491] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 268)\n[ 3204.776509] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3205.029068] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 261)\n[ 3205.029086] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3205.281604] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 267)\n[ 3205.281623] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3205.534098] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 230)\n[ 3205.534116] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3205.786645] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26a)\n[ 3205.786663] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3206.039204] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 297)\n[ 3206.039222] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-162)mA\n[ 3206.291718] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 263)\n[ 3206.291736] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3206.544227] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 286)\n[ 3206.544244] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-158)mA\n[ 3206.796756] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 260)\n[ 3206.796774] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3207.023072] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3207.049319] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 249)\n[ 3207.049334] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-143)mA\n[ 3207.301851] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25c)\n[ 3207.301868] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-148)mA\n[ 3207.554359] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26c)\n[ 3207.554376] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-152)mA\n[ 3207.806832] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25a)\n[ 3207.806849] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-147)mA\n[ 3208.059378] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 264)\n[ 3208.059396] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3208.311948] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26a)\n[ 3208.311967] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3208.564492] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 293)\n[ 3208.564509] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-161)mA\n[ 3208.817018] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 273)\n[ 3208.817036] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-154)mA\n[ 3209.069579] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 271)\n[ 3209.069598] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-153)mA\n[ 3209.322128] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26f)\n[ 3209.322146] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-153)mA\n[ 3209.574698] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 263)\n[ 3209.574715] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3209.827234] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25b)\n[ 3209.827252] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-148)mA\n[ 3210.079788] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 261)\n[ 3210.079806] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3210.332307] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 257)\n[ 3210.332324] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-147)mA\n[ 3210.584725] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 266)\n[ 3210.584742] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3210.837189] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 297)\n[ 3210.837207] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-162)mA\n[ 3211.089756] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 264)\n[ 3211.089774] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3211.342308] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 278)\n[ 3211.342325] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-155)mA\n[ 3211.594833] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25e)\n[ 3211.594850] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-148)mA\n[ 3211.847357] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 24a)\n[ 3211.847375] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-144)mA\n[ 3212.099923] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26d)\n[ 3212.099941] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-152)mA\n[ 3212.352494] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 250)\n[ 3212.352513] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-145)mA\n[ 3212.605044] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 268)\n[ 3212.605062] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3212.857556] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 257)\n[ 3212.857574] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-147)mA\n[ 3213.023073] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3213.110052] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 263)\n[ 3213.110068] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3213.362615] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 273)\n[ 3213.362633] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-154)mA\n[ 3213.615116] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 261)\n[ 3213.615134] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3213.867638] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 279)\n[ 3213.867655] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-155)mA\n[ 3214.003127] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3214.120183] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 260)\n[ 3214.120198] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3214.372734] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23c)\n[ 3214.372752] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3214.625354] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25c)\n[ 3214.625373] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-148)mA\n[ 3214.877875] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 273)\n[ 3214.877892] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-154)mA\n[ 3215.130402] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25c)\n[ 3215.130420] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-148)mA\n[ 3215.382879] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 234)\n[ 3215.382897] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-138)mA\n[ 3215.635387] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 259)\n[ 3215.635405] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-147)mA\n[ 3215.887851] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 249)\n[ 3215.887868] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-143)mA\n[ 3216.140414] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 266)\n[ 3216.140432] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3216.392981] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 276)\n[ 3216.393016] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-154)mA\n[ 3216.645552] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26d)\n[ 3216.645570] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-152)mA\n[ 3216.898066] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2af)\n[ 3216.898084] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-168)mA\n[ 3217.150584] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 268)\n[ 3217.150602] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3217.403134] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a3)\n[ 3217.403152] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3217.655674] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 263)\n[ 3217.655691] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3217.908193] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22e)\n[ 3217.908210] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3218.160716] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 262)\n[ 3218.160734] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3218.413134] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29c)\n[ 3218.413152] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3218.665681] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 261)\n[ 3218.665699] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3218.918214] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 28d)\n[ 3218.918232] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-160)mA\n[ 3219.023072] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3219.170750] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 264)\n[ 3219.170766] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3219.423271] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29c)\n[ 3219.423288] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3219.675747] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26b)\n[ 3219.675765] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-152)mA\n[ 3219.928305] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 282)\n[ 3219.928323] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-157)mA\n[ 3220.180849] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 264)\n[ 3220.180867] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3220.433236] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 245)\n[ 3220.433253] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-142)mA\n[ 3220.685720] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 261)\n[ 3220.685737] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3220.938205] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 251)\n[ 3220.938222] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-145)mA\n[ 3221.190673] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 267)\n[ 3221.190690] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3221.443194] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 24f)\n[ 3221.443212] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-145)mA\n[ 3221.695737] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 266)\n[ 3221.695755] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3221.948289] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 237)\n[ 3221.948307] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3222.200809] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 263)\n[ 3222.200826] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3222.453338] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 250)\n[ 3222.453356] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-145)mA\n[ 3222.705875] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 262)\n[ 3222.705893] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3222.958418] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 272)\n[ 3222.958437] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-153)mA\n[ 3223.210958] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 265)\n[ 3223.210976] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3223.463475] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 274)\n[ 3223.463492] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-154)mA\n[ 3223.715997] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26d)\n[ 3223.716015] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-152)mA\n[ 3223.968546] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 240)\n[ 3223.968564] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3224.003629] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (47) data1 (125) \n[ 3224.004538] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3911), src (0x01)\n[ 3224.011445] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3910)\n[ 3224.011463] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6563) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 3224.011476] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6563), ocv (39704)\n[ 3224.012743] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 262)\n[ 3224.012755] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3224.015320] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 241), avg current (-141)mA\n[ 3224.015333] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6563)%\n[ 3224.016600] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (47) data1 (125) \n[ 3224.017240] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3911), src (0x01)\n[ 3224.018758] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(233), Temp-ADC(2106)\n[ 3224.019522] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(233), Temp-ADC(2105)\n[ 3224.020183] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(244), Temp-ADC(2028)\n[ 3224.022082] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 3224.024601] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (252) data1 (41) \n[ 3224.037629] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (58) data1 (10) \n[ 3224.037642] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6391) \n[ 3224.037656] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6560), previous soc (6563), diff (0), FG_mode(0)\n[ 3224.039841] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 241), avg current (-141)mA\n[ 3224.039854] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6560)%\n[ 3224.092462] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3917)\n[ 3224.092482] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 65\n[ 3224.099048] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3910)\n[ 3224.100329] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (47) data1 (125) \n[ 3224.100975] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3911), src (0x01)\n[ 3224.102255] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 262)\n[ 3224.102268] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3224.102283] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 3224.102301] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3224.102948] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 3224.102963] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(65.6), raw_soc(65.6)\n[ 3224.102980] sec-battery battery: sec_bat_get_battery_info:Vnow(3911mV),Inow(-149mA),Imax(450mA),SOC(65%),Tbat(233),Tusb(0),Tchg(244),Twpc(0)\n[ 3224.103023] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 3224.103037] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 3224.103897] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(233)\n[ 3224.103911] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 3224.103923] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 3224.103936] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 3224.103959] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 3224.104010] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3224.221265] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 262)\n[ 3224.221281] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3224.473888] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ab)\n[ 3224.473907] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3224.726430] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 28b)\n[ 3224.726447] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-159)mA\n[ 3224.978966] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25d)\n[ 3224.978983] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-148)mA\n[ 3225.003089] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3225.023074] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3225.231541] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 24a)\n[ 3225.231555] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-144)mA\n[ 3225.484011] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 265)\n[ 3225.484028] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3225.736525] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22b)\n[ 3225.736542] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-136)mA\n[ 3225.989079] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 264)\n[ 3225.989098] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3226.241584] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 270)\n[ 3226.241602] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-153)mA\n[ 3226.494089] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25c)\n[ 3226.494107] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-148)mA\n[ 3226.746617] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 271)\n[ 3226.746634] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-153)mA\n[ 3226.999182] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 265)\n[ 3226.999199] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3227.251746] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 271)\n[ 3227.251763] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-153)mA\n[ 3227.504263] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 267)\n[ 3227.504280] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3227.756781] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26b)\n[ 3227.756799] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-152)mA\n[ 3228.009284] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 262)\n[ 3228.009302] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3228.261858] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23c)\n[ 3228.261876] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3228.514411] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 263)\n[ 3228.514429] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3228.766927] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 274)\n[ 3228.766944] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-154)mA\n[ 3229.019449] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 264)\n[ 3229.019466] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3229.271994] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26a)\n[ 3229.272013] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3229.524566] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 265)\n[ 3229.524583] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3229.777077] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 21b)\n[ 3229.777094] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-132)mA\n[ 3230.029620] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 261)\n[ 3230.029638] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3230.282070] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 279)\n[ 3230.282088] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-155)mA\n[ 3230.534629] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 264)\n[ 3230.534647] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3230.787154] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 240)\n[ 3230.787172] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3231.023071] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3231.039703] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26b)\n[ 3231.039718] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-152)mA\n[ 3231.292200] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f5)\n[ 3231.292218] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-185)mA\n[ 3231.544702] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 263)\n[ 3231.544719] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3231.797216] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 24f)\n[ 3231.797234] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-145)mA\n[ 3232.049672] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26a)\n[ 3232.049689] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3232.302232] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a4)\n[ 3232.302251] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3232.554806] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 262)\n[ 3232.554824] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3232.807357] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29e)\n[ 3232.807375] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3233.059877] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 260)\n[ 3233.059895] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3233.312353] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 28f)\n[ 3233.312371] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-160)mA\n[ 3233.564891] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25e)\n[ 3233.564908] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-148)mA\n[ 3233.817407] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 269)\n[ 3233.817425] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3234.069930] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 264)\n[ 3234.069948] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3234.322450] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 27a)\n[ 3234.322468] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-155)mA\n[ 3234.574966] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 257)\n[ 3234.574984] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-147)mA\n[ 3234.827512] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 262)\n[ 3234.827530] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3235.080055] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 269)\n[ 3235.080072] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3235.332416] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 261)\n[ 3235.332434] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3235.584949] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25d)\n[ 3235.584967] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-148)mA\n[ 3235.837492] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a1)\n[ 3235.837510] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3236.003129] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3236.090053] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 267)\n[ 3236.090068] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3236.342612] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 24a)\n[ 3236.342631] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-144)mA\n[ 3236.595209] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 268)\n[ 3236.595227] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3236.847746] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 260)\n[ 3236.847763] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3237.023071] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3237.100283] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26a)\n[ 3237.100298] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3237.352750] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 251)\n[ 3237.352768] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-145)mA\n[ 3237.605341] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 258)\n[ 3237.605359] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-147)mA\n[ 3237.857813] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23d)\n[ 3237.857830] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-140)mA\n[ 3238.110338] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 262)\n[ 3238.110355] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3238.362902] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 261)\n[ 3238.362920] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3238.615451] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 268)\n[ 3238.615468] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3238.867979] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 283)\n[ 3238.867997] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-157)mA\n[ 3239.120521] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25e)\n[ 3239.120539] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-148)mA\n[ 3239.373052] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 253)\n[ 3239.373069] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-146)mA\n[ 3239.625583] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 261)\n[ 3239.625601] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3239.878132] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 236)\n[ 3239.878149] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3240.130710] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 269)\n[ 3240.130729] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3240.383248] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 295)\n[ 3240.383267] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-162)mA\n[ 3240.635717] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a9)\n[ 3240.635735] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3240.888263] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 268)\n[ 3240.888280] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3241.140817] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 273)\n[ 3241.140834] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-154)mA\n[ 3241.393339] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25b)\n[ 3241.393357] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-148)mA\n[ 3241.645848] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 274)\n[ 3241.645865] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-154)mA\n[ 3241.898319] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26a)\n[ 3241.898337] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3242.150899] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 22f)\n[ 3242.150918] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-137)mA\n[ 3242.403443] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 260)\n[ 3242.403461] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3242.655898] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 280)\n[ 3242.655915] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-157)mA\n[ 3242.908383] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 266)\n[ 3242.908401] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3243.023074] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3243.160895] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 252)\n[ 3243.160910] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-146)mA\n[ 3243.413442] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25e)\n[ 3243.413459] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-148)mA\n[ 3243.665985] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 267)\n[ 3243.666002] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3243.918498] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 261)\n[ 3243.918516] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3244.171068] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 28f)\n[ 3244.171087] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-160)mA\n[ 3244.423636] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 261)\n[ 3244.423655] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3244.676171] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 261)\n[ 3244.676188] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3244.928694] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26c)\n[ 3244.928711] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-152)mA\n[ 3245.181236] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 287)\n[ 3245.181254] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-158)mA\n[ 3245.433636] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 269)\n[ 3245.433655] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3245.686151] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 28a)\n[ 3245.686170] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-159)mA\n[ 3245.938667] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 261)\n[ 3245.938685] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3246.191216] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29b)\n[ 3246.191233] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-163)mA\n[ 3246.443778] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 263)\n[ 3246.443795] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3246.696301] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 279)\n[ 3246.696318] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-155)mA\n[ 3246.948817] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25e)\n[ 3246.948834] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-148)mA\n[ 3247.003113] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3247.201381] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 293)\n[ 3247.201398] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-161)mA\n[ 3247.453946] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 262)\n[ 3247.453965] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3247.706477] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 253)\n[ 3247.706494] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-146)mA\n[ 3247.958937] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 266)\n[ 3247.958954] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3248.211500] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 289)\n[ 3248.211518] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-159)mA\n[ 3248.464018] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 264)\n[ 3248.464035] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3248.716567] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25f)\n[ 3248.716586] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3248.969086] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26d)\n[ 3248.969104] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-152)mA\n[ 3249.023081] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3249.221616] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 268)\n[ 3249.221632] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3249.474171] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 269)\n[ 3249.474188] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3249.726714] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 269)\n[ 3249.726732] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3249.979233] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 260)\n[ 3249.979251] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3250.231754] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 285)\n[ 3250.231772] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-158)mA\n[ 3250.484291] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 260)\n[ 3250.484308] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3250.736853] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 262)\n[ 3250.736872] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3250.989379] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 261)\n[ 3250.989397] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3251.241859] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 24e)\n[ 3251.241876] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-145)mA\n[ 3251.494395] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 270)\n[ 3251.494413] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-153)mA\n[ 3251.746946] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 269)\n[ 3251.746964] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3251.999483] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25e)\n[ 3251.999501] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-148)mA\n[ 3252.252027] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 23e)\n[ 3252.252045] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-141)mA\n[ 3252.504595] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 261)\n[ 3252.504612] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3252.757129] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26e)\n[ 3252.757146] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-152)mA\n[ 3253.009648] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 25b)\n[ 3253.009666] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-148)mA\n[ 3253.262172] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 260)\n[ 3253.262189] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-149)mA\n[ 3253.514675] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 268)\n[ 3253.514693] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3253.767221] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ae)\n[ 3253.767239] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-168)mA\n[ 3254.019770] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 256)\n[ 3254.019788] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-146)mA\n[ 3254.105846] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (38) data1 (125) \n[ 3254.106608] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3910), src (0x01)\n[ 3254.113059] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3910)\n[ 3254.113077] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6560) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 3254.113090] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6560), ocv (39702)\n[ 3254.114360] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 238)\n[ 3254.114372] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3254.116565] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 253), avg current (-146)mA\n[ 3254.116577] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6560)%\n[ 3254.117846] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (38) data1 (125) \n[ 3254.118488] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3910), src (0x01)\n[ 3254.119806] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(234), Temp-ADC(2102)\n[ 3254.120467] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(234), Temp-ADC(2102)\n[ 3254.121125] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(245), Temp-ADC(2023)\n[ 3254.123025] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 3254.125549] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (244) data1 (41) \n[ 3254.138384] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (57) data1 (10) \n[ 3254.138397] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6389) \n[ 3254.138411] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6555), previous soc (6560), diff (0), FG_mode(0)\n[ 3254.140621] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 253), avg current (-146)mA\n[ 3254.140634] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6555)%\n[ 3254.192831] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3913)\n[ 3254.192852] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 65\n[ 3254.199138] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3910)\n[ 3254.200407] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (38) data1 (125) \n[ 3254.201048] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3910), src (0x01)\n[ 3254.202316] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 238)\n[ 3254.202328] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3254.202343] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 3254.202360] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3254.203013] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 3254.203029] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(65.5), raw_soc(65.5)\n[ 3254.203046] sec-battery battery: sec_bat_get_battery_info:Vnow(3910mV),Inow(-139mA),Imax(450mA),SOC(65%),Tbat(234),Tusb(0),Tchg(245),Twpc(0)\n[ 3254.203065] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 3254.203079] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 3254.203724] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(234)\n[ 3254.203737] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 3254.203749] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 3254.203762] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 3254.203784] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 3254.203833] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3254.272407] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 238)\n[ 3254.272423] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-139)mA\n[ 3254.525003] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26a)\n[ 3254.525021] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3254.780871]  5136     3.2 C/MHz    286 mW   16.7 J   17.9 I/mJ    58.4 s\n               1690: \n[ 3255.023088] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3258.003133] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3258.139450] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 16e)\n[ 3258.139466] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-90)mA\n[ 3258.392031] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 174)\n[ 3258.392048] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-91)mA\n[ 3258.644444] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 181)\n[ 3258.644460] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-94)mA\n[ 3258.896926] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15b)\n[ 3258.896943] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-85)mA\n[ 3259.149422] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18a)\n[ 3259.149439] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 3259.401888] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 178)\n[ 3259.401905] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-92)mA\n[ 3259.654355] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 185)\n[ 3259.654372] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 3259.906813] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 174)\n[ 3259.906830] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-91)mA\n[ 3260.159323] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a1)\n[ 3260.159340] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 3260.411787] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 167)\n[ 3260.411803] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-88)mA\n[ 3260.664240] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 169)\n[ 3260.664257] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-89)mA\n[ 3260.916706] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 147)\n[ 3260.916722] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-80)mA\n[ 3261.023071] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3261.169201] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 16a)\n[ 3261.169216] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-89)mA\n[ 3261.421686] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 17e)\n[ 3261.421702] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-94)mA\n[ 3261.674150] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 169)\n[ 3261.674166] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-89)mA\n[ 3261.926616] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 173)\n[ 3261.926632] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-91)mA\n[ 3262.179095] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 19e)\n[ 3262.179112] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 3262.431528] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 171)\n[ 3262.431546] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-91)mA\n[ 3262.683867] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 181)\n[ 3262.683884] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-94)mA\n[ 3263.190154] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2af)\n[ 3263.190173] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-168)mA\n[ 3263.442609] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2cf)\n[ 3263.442626] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-176)mA\n[ 3263.695050] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2b7)\n[ 3263.695065] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-170)mA\n[ 3263.947508] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a8)\n[ 3263.947524] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3264.199930] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2b5)\n[ 3264.199947] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-170)mA\n[ 3264.452413] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a9)\n[ 3264.452429] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3264.704850] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ad)\n[ 3264.704865] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-168)mA\n[ 3264.957312] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a2)\n[ 3264.957328] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3265.209777] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 28c)\n[ 3265.209793] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-160)mA\n[ 3265.462229] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a1)\n[ 3265.462246] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3265.714699] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a0)\n[ 3265.714715] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3265.967137] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29e)\n[ 3265.967153] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3266.219570] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 298)\n[ 3266.219586] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-163)mA\n[ 3266.472033] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ad)\n[ 3266.472049] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-168)mA\n[ 3266.724493] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2e8)\n[ 3266.724509] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-182)mA\n[ 3266.976926] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ae)\n[ 3266.976942] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-168)mA\n[ 3267.023078] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3267.229381] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2bc)\n[ 3267.229395] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-171)mA\n[ 3267.481848] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2d4)\n[ 3267.481864] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-177)mA\n[ 3267.734258] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 297)\n[ 3267.734274] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-162)mA\n[ 3267.986646] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2af)\n[ 3267.986661] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-168)mA\n[ 3268.239071] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a1)\n[ 3268.239088] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3268.491544] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a6)\n[ 3268.491561] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3268.743954] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a6)\n[ 3268.743971] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3268.996417] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2b0)\n[ 3268.996434] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-168)mA\n[ 3269.003082] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3269.248870] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2aa)\n[ 3269.248885] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3269.501325] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 291)\n[ 3269.501341] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-161)mA\n[ 3269.753788] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2bd)\n[ 3269.753805] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-172)mA\n[ 3270.006265] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a0)\n[ 3270.006281] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3270.258706] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29a)\n[ 3270.258723] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-163)mA\n[ 3270.511136] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ae)\n[ 3270.511152] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-168)mA\n[ 3270.763583] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 296)\n[ 3270.763599] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-162)mA\n[ 3271.016055] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2b1)\n[ 3271.016072] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-169)mA\n[ 3271.268493] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ab)\n[ 3271.268510] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3271.520927] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2de)\n[ 3271.520943] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-180)mA\n[ 3271.773382] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a1)\n[ 3271.773399] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3272.025854] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 291)\n[ 3272.025871] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-161)mA\n[ 3272.278332] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a2)\n[ 3272.278350] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3272.530796] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2b1)\n[ 3272.530812] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-169)mA\n[ 3272.783192] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 298)\n[ 3272.783209] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-163)mA\n[ 3273.023061] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3273.035612] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 295)\n[ 3273.035626] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-162)mA\n[ 3273.288008] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a7)\n[ 3273.288024] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3273.540424] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2d8)\n[ 3273.540440] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-178)mA\n[ 3273.792876] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a1)\n[ 3273.792893] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3274.045336] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29a)\n[ 3274.045352] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-163)mA\n[ 3274.297775] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29a)\n[ 3274.297791] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-163)mA\n[ 3274.550215] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2b5)\n[ 3274.550231] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-170)mA\n[ 3274.802650] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2b2)\n[ 3274.802666] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-169)mA\n[ 3275.055147] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 279)\n[ 3275.055163] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-155)mA\n[ 3275.307606] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2b2)\n[ 3275.307623] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-169)mA\n[ 3275.560039] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 294)\n[ 3275.560055] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-162)mA\n[ 3275.812465] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2b1)\n[ 3275.812481] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-169)mA\n[ 3276.064923] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 282)\n[ 3276.064941] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-157)mA\n[ 3276.317410] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29e)\n[ 3276.317428] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3276.569867] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2cb)\n[ 3276.569883] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-175)mA\n[ 3276.822294] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29f)\n[ 3276.822310] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3277.074810] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2c4)\n[ 3277.074827] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-173)mA\n[ 3277.327272] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 299)\n[ 3277.327289] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-163)mA\n[ 3277.579664] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2b2)\n[ 3277.579681] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-169)mA\n[ 3277.832116] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a0)\n[ 3277.832132] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3278.084595] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2d5)\n[ 3278.084613] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-178)mA\n[ 3278.337089] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 297)\n[ 3278.337106] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-162)mA\n[ 3278.589556] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26d)\n[ 3278.589573] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-152)mA\n[ 3278.841963] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 296)\n[ 3278.841979] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-162)mA\n[ 3279.023065] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3279.094434] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 267)\n[ 3279.094449] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3279.346902] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a8)\n[ 3279.346919] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3279.599357] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 27d)\n[ 3279.599373] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-156)mA\n[ 3279.851799] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a4)\n[ 3279.851816] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3280.003092] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3280.104274] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 299)\n[ 3280.104289] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-163)mA\n[ 3280.356769] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2b7)\n[ 3280.356785] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-170)mA\n[ 3280.609222] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29f)\n[ 3280.609239] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3280.861669] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 294)\n[ 3280.861686] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-162)mA\n[ 3281.114055] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2bd)\n[ 3281.114072] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-172)mA\n[ 3281.366520] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29c)\n[ 3281.366537] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3281.618975] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2c0)\n[ 3281.618991] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-172)mA\n[ 3281.871406] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a8)\n[ 3281.871421] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3282.123851] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29d)\n[ 3282.123868] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3282.376259] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a6)\n[ 3282.376276] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3282.628725] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2d0)\n[ 3282.628742] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-176)mA\n[ 3282.881173] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 282)\n[ 3282.881189] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-157)mA\n[ 3283.133619] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 296)\n[ 3283.133635] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-162)mA\n[ 3283.386105] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2bf)\n[ 3283.386121] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-172)mA\n[ 3283.638577] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a9)\n[ 3283.638593] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3283.891015] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ae)\n[ 3283.891032] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-168)mA\n[ 3284.143382] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a2)\n[ 3284.143399] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3284.205688] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (12) data1 (125) \n[ 3284.206470] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3907), src (0x01)\n[ 3284.213409] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3906)\n[ 3284.213425] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6555) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 3284.213437] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6555), ocv (39700)\n[ 3284.214699] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a2)\n[ 3284.214710] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3284.216914] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 271), avg current (-153)mA\n[ 3284.216925] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6555)%\n[ 3284.218193] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (12) data1 (125) \n[ 3284.218833] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3907), src (0x01)\n[ 3284.220328] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(233), Temp-ADC(2104)\n[ 3284.221079] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(234), Temp-ADC(2103)\n[ 3284.221874] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(246), Temp-ADC(2020)\n[ 3284.223879] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 3284.226536] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (238) data1 (41) \n[ 3284.239791] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (55) data1 (10) \n[ 3284.239803] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6384) \n[ 3284.239816] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6551), previous soc (6555), diff (0), FG_mode(0)\n[ 3284.242038] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 271), avg current (-153)mA\n[ 3284.242050] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6551)%\n[ 3284.294656] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3913)\n[ 3284.294675] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 65\n[ 3284.301625] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3906)\n[ 3284.302914] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (12) data1 (125) \n[ 3284.303550] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3907), src (0x01)\n[ 3284.304837] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a2)\n[ 3284.304849] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3284.304863] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 3284.304879] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3284.305527] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 3284.305541] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(65.5), raw_soc(65.5)\n[ 3284.305556] sec-battery battery: sec_bat_get_battery_info:Vnow(3907mV),Inow(-165mA),Imax(450mA),SOC(65%),Tbat(233),Tusb(0),Tchg(246),Twpc(0)\n[ 3284.305572] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 3284.305585] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 3284.306241] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(233)\n[ 3284.306253] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 3284.306265] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 3284.306274] sec_bat_calculate_safety_time : SAFETY TIME RESET! DISCHARGING CNT(5)\n[ 3284.306294] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 3284.306340] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3284.395966] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 28d)\n[ 3284.395981] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-160)mA\n[ 3284.648500] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a3)\n[ 3284.648516] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3284.900958] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26c)\n[ 3284.900974] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-152)mA\n[ 3285.023061] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3285.153429] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29d)\n[ 3285.153443] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3285.405875] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 289)\n[ 3285.405891] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-159)mA\n[ 3285.658336] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 297)\n[ 3285.658352] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-162)mA\n[ 3285.910799] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2b9)\n[ 3285.910815] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-171)mA\n[ 3286.163254] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a9)\n[ 3286.163270] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3286.415700] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 28a)\n[ 3286.415717] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-159)mA\n[ 3286.668146] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2b4)\n[ 3286.668163] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-169)mA\n[ 3286.920601] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2bb)\n[ 3286.920618] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-171)mA\n[ 3287.173053] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 294)\n[ 3287.173070] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-162)mA\n[ 3287.425498] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2d0)\n[ 3287.425515] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-176)mA\n[ 3287.677889] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a6)\n[ 3287.677906] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3287.930338] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 289)\n[ 3287.930354] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-159)mA\n[ 3288.182697] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29f)\n[ 3288.182713] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3288.435235] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2e1)\n[ 3288.435252] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-180)mA\n[ 3288.687660] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a4)\n[ 3288.687678] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3288.940134] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 297)\n[ 3288.940151] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-162)mA\n[ 3289.192579] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a8)\n[ 3289.192595] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3289.444816] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 28d)\n[ 3289.444832] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-160)mA\n[ 3289.697254] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a1)\n[ 3289.697270] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3289.949710] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2b9)\n[ 3289.949727] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-171)mA\n[ 3290.202172] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29f)\n[ 3290.202189] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3290.454627] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2c5)\n[ 3290.454644] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-174)mA\n[ 3290.707078] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 298)\n[ 3290.707094] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-163)mA\n[ 3290.959534] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2c4)\n[ 3290.959552] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-173)mA\n[ 3291.003086] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3291.023059] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3291.212025] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a3)\n[ 3291.212038] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3291.464472] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 288)\n[ 3291.464487] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-159)mA\n[ 3291.716898] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 298)\n[ 3291.716913] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-163)mA\n[ 3291.969360] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29e)\n[ 3291.969377] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3292.221857] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a4)\n[ 3292.221874] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3292.474297] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 277)\n[ 3292.474313] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-155)mA\n[ 3292.726682] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a6)\n[ 3292.726698] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3292.979133] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 293)\n[ 3292.979151] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-161)mA\n[ 3293.231576] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a8)\n[ 3293.231592] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3293.484019] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 264)\n[ 3293.484035] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3293.736461] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 298)\n[ 3293.736477] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-163)mA\n[ 3293.988901] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2c6)\n[ 3293.988916] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-174)mA\n[ 3294.241325] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a1)\n[ 3294.241341] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3294.493780] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2c0)\n[ 3294.493797] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-172)mA\n[ 3294.746219] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a6)\n[ 3294.746234] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3294.998659] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2aa)\n[ 3294.998676] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3295.251132] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a9)\n[ 3295.251149] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3295.503593] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2c7)\n[ 3295.503610] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-174)mA\n[ 3295.756026] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ac)\n[ 3295.756042] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3296.008476] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2cc)\n[ 3296.008493] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-175)mA\n[ 3296.260954] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2aa)\n[ 3296.260970] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3296.513423] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2cd)\n[ 3296.513439] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-176)mA\n[ 3296.765873] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29d)\n[ 3296.765890] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3297.018323] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ce)\n[ 3297.018339] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-176)mA\n[ 3297.023066] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3297.270778] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a7)\n[ 3297.270793] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3297.523249] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 279)\n[ 3297.523265] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-155)mA\n[ 3297.775698] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29b)\n[ 3297.775714] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-163)mA\n[ 3298.028085] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2b9)\n[ 3298.028100] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-171)mA\n[ 3298.280484] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2b6)\n[ 3298.280501] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-170)mA\n[ 3298.532903] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f5)\n[ 3298.532920] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-185)mA\n[ 3298.785369] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ad)\n[ 3298.785385] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-168)mA\n[ 3299.037832] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 293)\n[ 3299.037847] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-161)mA\n[ 3299.290270] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2b7)\n[ 3299.290286] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-170)mA\n[ 3299.542431] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ac)\n[ 3299.542447] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3299.794866] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29f)\n[ 3299.794883] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3300.047304] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a4)\n[ 3300.047321] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3300.299763] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 297)\n[ 3300.299779] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-162)mA\n[ 3300.552225] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a3)\n[ 3300.552240] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3300.804697] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a4)\n[ 3300.804713] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3301.057136] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a5)\n[ 3301.057152] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3301.309566] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a5)\n[ 3301.309582] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3301.562019] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a5)\n[ 3301.562035] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3301.814395] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 266)\n[ 3301.814412] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3302.003098] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3302.066859] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2b1)\n[ 3302.066874] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-169)mA\n[ 3302.319323] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 263)\n[ 3302.319339] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-150)mA\n[ 3302.571786] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a7)\n[ 3302.571803] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3302.824242] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 28f)\n[ 3302.824259] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-160)mA\n[ 3303.023064] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3303.076690] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29f)\n[ 3303.076705] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3303.329125] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 28a)\n[ 3303.329142] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-159)mA\n[ 3303.581557] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ac)\n[ 3303.581572] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3303.833910] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 27b)\n[ 3303.833927] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-156)mA\n[ 3304.086333] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29c)\n[ 3304.086351] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3304.338784] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a7)\n[ 3304.338800] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3304.591239] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ad)\n[ 3304.591255] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-168)mA\n[ 3304.843568] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2bd)\n[ 3304.843584] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-172)mA\n[ 3305.096033] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 298)\n[ 3305.096049] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-163)mA\n[ 3305.348472] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a0)\n[ 3305.348488] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3305.600900] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29d)\n[ 3305.600916] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3305.853360] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2da)\n[ 3305.853377] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-179)mA\n[ 3306.105818] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29b)\n[ 3306.105835] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-163)mA\n[ 3306.358266] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29d)\n[ 3306.358281] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3306.610712] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a5)\n[ 3306.610728] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3306.863168] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 26b)\n[ 3306.863185] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-152)mA\n[ 3307.115638] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a5)\n[ 3307.115655] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3307.368075] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2c5)\n[ 3307.368091] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-174)mA\n[ 3307.620497] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ae)\n[ 3307.620513] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-168)mA\n[ 3307.872883] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a8)\n[ 3307.872899] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3308.125396] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a6)\n[ 3308.125413] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3308.377852] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2cd)\n[ 3308.377868] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-176)mA\n[ 3308.630297] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a5)\n[ 3308.630313] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3308.882582] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 256)\n[ 3308.882598] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-146)mA\n[ 3309.023063] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3309.135018] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a4)\n[ 3309.135032] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3309.387504] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2b9)\n[ 3309.387520] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-171)mA\n[ 3309.639895] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a5)\n[ 3309.639911] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3309.892324] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 28b)\n[ 3309.892339] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-159)mA\n[ 3310.144800] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29b)\n[ 3310.144817] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-163)mA\n[ 3310.397262] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2c5)\n[ 3310.397278] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-174)mA\n[ 3310.649700] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29d)\n[ 3310.649715] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3310.902125] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 290)\n[ 3310.902141] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-161)mA\n[ 3311.154595] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a5)\n[ 3311.154612] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3311.407066] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2b2)\n[ 3311.407083] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-169)mA\n[ 3311.659495] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29d)\n[ 3311.659511] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3311.911919] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a2)\n[ 3311.911935] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3312.164396] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a0)\n[ 3312.164413] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3312.416868] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2b9)\n[ 3312.416884] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-171)mA\n[ 3312.669305] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a0)\n[ 3312.669321] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3312.921731] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 29e)\n[ 3312.921748] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-164)mA\n[ 3313.003089] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3313.174125] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a2)\n[ 3313.174139] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3313.426595] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a7)\n[ 3313.426611] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3313.679031] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a3)\n[ 3313.679047] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3313.931453] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 297)\n[ 3313.931468] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-162)mA\n[ 3314.183895] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a8)\n[ 3314.183912] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3314.308168] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (2) data1 (125) \n[ 3314.308958] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3906), src (0x01)\n[ 3314.315851] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3906)\n[ 3314.315867] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6551) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 3314.315879] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6551), ocv (39697)\n[ 3314.317168] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2c3)\n[ 3314.317180] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-173)mA\n[ 3314.319416] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 290), avg current (-161)mA\n[ 3314.319428] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6551)%\n[ 3314.320715] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (2) data1 (125) \n[ 3314.321363] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3906), src (0x01)\n[ 3314.322870] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(234), Temp-ADC(2102)\n[ 3314.323621] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(234), Temp-ADC(2101)\n[ 3314.324508] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(247), Temp-ADC(2016)\n[ 3314.326497] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 3314.329186] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (230) data1 (41) \n[ 3314.342080] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (53) data1 (10) \n[ 3314.342092] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6379) \n[ 3314.342105] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6546), previous soc (6551), diff (0), FG_mode(0)\n[ 3314.344656] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 290), avg current (-161)mA\n[ 3314.344668] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6546)%\n[ 3314.397309] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3909)\n[ 3314.397329] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 65\n[ 3314.403807] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3906)\n[ 3314.405090] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (2) data1 (125) \n[ 3314.405744] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3906), src (0x01)\n[ 3314.407030] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2c3)\n[ 3314.407041] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-173)mA\n[ 3314.407055] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 3314.407071] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3314.407726] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 3314.407740] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(65.4), raw_soc(65.4)\n[ 3314.407757] sec-battery battery: sec_bat_get_battery_info:Vnow(3906mV),Inow(-173mA),Imax(450mA),SOC(65%),Tbat(234),Tusb(0),Tchg(247),Twpc(0)\n[ 3314.407773] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 3314.407786] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 3314.408443] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(234)\n[ 3314.408455] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 3314.408467] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 3314.408479] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 3314.408499] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 3314.408543] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3314.436454] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2c3)\n[ 3314.436469] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-173)mA\n[ 3314.688977] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2e4)\n[ 3314.688993] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-181)mA\n[ 3314.941378] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2af)\n[ 3314.941393] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-168)mA\n[ 3315.023065] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3315.193853] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2bb)\n[ 3315.193868] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-171)mA\n[ 3315.446258] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ac)\n[ 3315.446274] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3315.698704] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 284)\n[ 3315.698721] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-158)mA\n[ 3315.951143] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a7)\n[ 3315.951160] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-166)mA\n[ 3316.203614] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2bc)\n[ 3316.203630] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-171)mA\n[ 3316.456096] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2a1)\n[ 3316.456113] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-165)mA\n[ 3316.708556] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 267)\n[ 3316.708573] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-151)mA\n[ 3316.960990] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2aa)\n[ 3316.961006] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3317.213438] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 283)\n[ 3317.213454] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-157)mA\n[ 3317.465899] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 291)\n[ 3317.465916] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-161)mA\n[ 3317.718355] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ad)\n[ 3317.718372] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-168)mA\n[ 3317.973521]  5472     3.2 C/MHz    345 mW   18.9 J   15.9 I/mJ    54.8 s\n               1794: \n[ 3321.023076] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3321.331957] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 192)\n[ 3321.331974] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 3321.584418] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18d)\n[ 3321.584433] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 3321.836819] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d9)\n[ 3321.836834] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-116)mA\n[ 3322.089225] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 195)\n[ 3322.089240] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 3322.341607] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b6)\n[ 3322.341622] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 3322.593982] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 191)\n[ 3322.593997] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 3322.846392] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 3322.846407] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 3323.098792] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18a)\n[ 3323.098807] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 3323.351178] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1aa)\n[ 3323.351193] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 3323.603504] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18a)\n[ 3323.603519] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 3323.855913] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 189)\n[ 3323.855929] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-96)mA\n[ 3324.003096] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3324.108323] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18f)\n[ 3324.108336] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 3324.360729] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ac)\n[ 3324.360744] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 3324.613030] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 191)\n[ 3324.613045] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 3324.865411] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 182)\n[ 3324.865426] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 3325.117815] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1ff)\n[ 3325.117830] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-125)mA\n[ 3325.370220] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18f)\n[ 3325.370236] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 3325.622593] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b3)\n[ 3325.622609] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 3325.874976] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a5)\n[ 3325.874991] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 3326.380801] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2fb)\n[ 3326.380819] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-187)mA\n[ 3326.633266] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ef)\n[ 3326.633282] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-184)mA\n[ 3326.885585] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 311)\n[ 3326.885600] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-192)mA\n[ 3327.023060] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3327.137975] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 307)\n[ 3327.137989] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-190)mA\n[ 3327.390356] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 327)\n[ 3327.390371] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3327.642720] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f3)\n[ 3327.642734] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-185)mA\n[ 3327.895104] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 303)\n[ 3327.895119] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-189)mA\n[ 3328.147508] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 323)\n[ 3328.147524] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-197)mA\n[ 3328.399895] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 301)\n[ 3328.399911] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-188)mA\n[ 3328.652176] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ac)\n[ 3328.652191] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-167)mA\n[ 3328.904483] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 309)\n[ 3328.904498] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-190)mA\n[ 3329.156867] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 326)\n[ 3329.156883] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-197)mA\n[ 3329.409261] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30b)\n[ 3329.409277] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-191)mA\n[ 3329.661616] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ec)\n[ 3329.661631] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-183)mA\n[ 3329.913968] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f5)\n[ 3329.913983] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-185)mA\n[ 3330.166333] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f6)\n[ 3330.166348] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-186)mA\n[ 3330.418713] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 309)\n[ 3330.418728] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-190)mA\n[ 3330.671090] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 305)\n[ 3330.671105] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-189)mA\n[ 3330.923445] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2fc)\n[ 3330.923460] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-187)mA\n[ 3331.175808] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 303)\n[ 3331.175824] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-189)mA\n[ 3331.428174] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32b)\n[ 3331.428188] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3331.680560] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 324)\n[ 3331.680575] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-197)mA\n[ 3331.932912] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f6)\n[ 3331.932927] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-186)mA\n[ 3332.185269] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30a)\n[ 3332.185286] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-190)mA\n[ 3332.437660] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30e)\n[ 3332.437675] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-191)mA\n[ 3332.690039] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 330)\n[ 3332.690055] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-200)mA\n[ 3332.942395] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 306)\n[ 3332.942411] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-189)mA\n[ 3333.023068] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3333.194756] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32b)\n[ 3333.194770] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3333.447159] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f8)\n[ 3333.447175] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-186)mA\n[ 3333.699521] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 319)\n[ 3333.699536] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-194)mA\n[ 3333.951835] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2e8)\n[ 3333.951850] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-182)mA\n[ 3334.204106] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 312)\n[ 3334.204121] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-192)mA\n[ 3334.456441] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 304)\n[ 3334.456457] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-189)mA\n[ 3334.708811] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 317)\n[ 3334.708826] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-194)mA\n[ 3334.961185] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f0)\n[ 3334.961202] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-184)mA\n[ 3335.003106] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3335.213559] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f6)\n[ 3335.213573] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-186)mA\n[ 3335.465928] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2fa)\n[ 3335.465943] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-187)mA\n[ 3335.718319] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2c3)\n[ 3335.718334] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-173)mA\n[ 3335.970704] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 308)\n[ 3335.970720] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-190)mA\n[ 3336.223089] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 316)\n[ 3336.223105] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-193)mA\n[ 3336.475488] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 307)\n[ 3336.475503] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-190)mA\n[ 3336.727859] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 33d)\n[ 3336.727875] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-203)mA\n[ 3336.980233] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f8)\n[ 3336.980250] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-186)mA\n[ 3337.232605] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 320)\n[ 3337.232621] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3337.484963] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30d)\n[ 3337.484978] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-191)mA\n[ 3337.737330] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2e3)\n[ 3337.737346] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-181)mA\n[ 3337.989723] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31c)\n[ 3337.989739] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3338.242095] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30e)\n[ 3338.242110] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-191)mA\n[ 3338.494469] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 300)\n[ 3338.494485] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-188)mA\n[ 3338.746822] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32b)\n[ 3338.746838] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3338.999206] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2e1)\n[ 3338.999222] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-180)mA\n[ 3339.023067] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3339.251524] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2e0)\n[ 3339.251538] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-180)mA\n[ 3339.503910] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2fe)\n[ 3339.503924] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-188)mA\n[ 3339.756267] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2fb)\n[ 3339.756282] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-187)mA\n[ 3340.008652] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30f)\n[ 3340.008668] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-192)mA\n[ 3340.261065] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 303)\n[ 3340.261081] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-189)mA\n[ 3340.513434] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f5)\n[ 3340.513449] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-185)mA\n[ 3340.765791] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2c6)\n[ 3340.765806] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-174)mA\n[ 3341.018176] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 310)\n[ 3341.018192] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-192)mA\n[ 3341.270559] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 311)\n[ 3341.270574] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-192)mA\n[ 3341.522924] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 305)\n[ 3341.522939] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-189)mA\n[ 3341.775308] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31f)\n[ 3341.775324] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3342.027690] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30a)\n[ 3342.027706] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-190)mA\n[ 3342.280086] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 325)\n[ 3342.280101] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-197)mA\n[ 3342.532453] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 339)\n[ 3342.532468] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-202)mA\n[ 3342.784769] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2fd)\n[ 3342.784784] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-187)mA\n[ 3343.037167] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30b)\n[ 3343.037183] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-191)mA\n[ 3343.289552] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 320)\n[ 3343.289568] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3343.541921] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 312)\n[ 3343.541937] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-192)mA\n[ 3343.794283] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 318)\n[ 3343.794298] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-194)mA\n[ 3344.046615] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 316)\n[ 3344.046630] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-193)mA\n[ 3344.299011] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f1)\n[ 3344.299027] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-184)mA\n[ 3344.410303] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (230) data1 (124) \n[ 3344.410997] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3903), src (0x01)\n[ 3344.417530] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3902)\n[ 3344.417546] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6546) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 3344.417557] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6546), ocv (39694)\n[ 3344.418832] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f1)\n[ 3344.418842] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-184)mA\n[ 3344.421047] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 2c0), avg current (-172)mA\n[ 3344.421058] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6546)%\n[ 3344.422326] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (230) data1 (124) \n[ 3344.422971] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3903), src (0x01)\n[ 3344.424300] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(235), Temp-ADC(2097)\n[ 3344.424946] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(235), Temp-ADC(2097)\n[ 3344.425588] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(248), Temp-ADC(2012)\n[ 3344.427471] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 3344.429975] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (221) data1 (41) \n[ 3344.442772] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (51) data1 (10) \n[ 3344.442782] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6374) \n[ 3344.442794] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6541), previous soc (6546), diff (0), FG_mode(0)\n[ 3344.444986] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 2c0), avg current (-172)mA\n[ 3344.444998] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6541)%\n[ 3344.497208] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3906)\n[ 3344.497226] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 65\n[ 3344.503593] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3902)\n[ 3344.504880] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (230) data1 (124) \n[ 3344.505530] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3903), src (0x01)\n[ 3344.506815] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f1)\n[ 3344.506826] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-184)mA\n[ 3344.506839] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 3344.506854] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3344.507497] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 3344.507511] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(65.4), raw_soc(65.4)\n[ 3344.507525] sec-battery battery: sec_bat_get_battery_info:Vnow(3903mV),Inow(-184mA),Imax(450mA),SOC(65%),Tbat(235),Tusb(0),Tchg(248),Twpc(0)\n[ 3344.507542] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 3344.507554] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 3344.508199] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(235)\n[ 3344.508211] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 3344.508222] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 3344.508234] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 3344.508252] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 3344.508292] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3344.551142] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32f)\n[ 3344.551155] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-199)mA\n[ 3344.803544] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2fb)\n[ 3344.803560] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-187)mA\n[ 3345.023056] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3345.055904] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 326)\n[ 3345.055918] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-197)mA\n[ 3345.308280] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f4)\n[ 3345.308296] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-185)mA\n[ 3345.560640] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31e)\n[ 3345.560656] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3345.812976] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 306)\n[ 3345.813008] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-189)mA\n[ 3346.003093] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3346.065365] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 314)\n[ 3346.065379] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-193)mA\n[ 3346.317733] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f3)\n[ 3346.317747] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-185)mA\n[ 3346.570108] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 317)\n[ 3346.570123] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-194)mA\n[ 3346.822373] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2fe)\n[ 3346.822388] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-188)mA\n[ 3347.074739] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 316)\n[ 3347.074754] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-193)mA\n[ 3347.327116] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f2)\n[ 3347.327132] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-185)mA\n[ 3347.579497] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 326)\n[ 3347.579512] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-197)mA\n[ 3347.831854] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 304)\n[ 3347.831870] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-189)mA\n[ 3348.084213] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30a)\n[ 3348.084229] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-190)mA\n[ 3348.336607] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 311)\n[ 3348.336622] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-192)mA\n[ 3348.588999] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 310)\n[ 3348.589015] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-192)mA\n[ 3348.841362] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f4)\n[ 3348.841378] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-185)mA\n[ 3349.093687] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 319)\n[ 3349.093703] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-194)mA\n[ 3349.346060] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 303)\n[ 3349.346074] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-189)mA\n[ 3349.598426] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ca)\n[ 3349.598441] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-175)mA\n[ 3349.850809] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f8)\n[ 3349.850825] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-186)mA\n[ 3350.103177] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ca)\n[ 3350.103193] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-175)mA\n[ 3350.355492] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ff)\n[ 3350.355507] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-188)mA\n[ 3350.607866] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 310)\n[ 3350.607882] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-192)mA\n[ 3350.860249] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ed)\n[ 3350.860264] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-183)mA\n[ 3351.023067] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3351.112622] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31e)\n[ 3351.112636] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3351.364985] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31e)\n[ 3351.365000] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3351.617372] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31f)\n[ 3351.617388] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3351.869737] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 304)\n[ 3351.869753] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-189)mA\n[ 3352.122112] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2dd)\n[ 3352.122128] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-179)mA\n[ 3352.374499] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 307)\n[ 3352.374515] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-190)mA\n[ 3352.626829] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 312)\n[ 3352.626845] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-192)mA\n[ 3352.879218] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30c)\n[ 3352.879233] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-191)mA\n[ 3353.131593] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 308)\n[ 3353.131608] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-190)mA\n[ 3353.383955] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 302)\n[ 3353.383970] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-188)mA\n[ 3353.636322] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 333)\n[ 3353.636337] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-200)mA\n[ 3353.888644] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f7)\n[ 3353.888659] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-186)mA\n[ 3354.141007] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 319)\n[ 3354.141022] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-194)mA\n[ 3354.393322] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30a)\n[ 3354.393337] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-190)mA\n[ 3354.645693] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 319)\n[ 3354.645707] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-194)mA\n[ 3354.898058] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2fd)\n[ 3354.898073] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-187)mA\n[ 3355.150448] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2e8)\n[ 3355.150464] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-182)mA\n[ 3355.402817] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 304)\n[ 3355.402832] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-189)mA\n[ 3355.655162] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 336)\n[ 3355.655177] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-201)mA\n[ 3355.907532] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30c)\n[ 3355.907548] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-191)mA\n[ 3356.159934] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32a)\n[ 3356.159951] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3356.412312] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 305)\n[ 3356.412326] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-189)mA\n[ 3356.664688] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31c)\n[ 3356.664702] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3356.917059] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f5)\n[ 3356.917075] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-185)mA\n[ 3357.003110] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3357.023064] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3357.169458] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31d)\n[ 3357.169469] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3357.421834] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2fc)\n[ 3357.421848] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-187)mA\n[ 3357.674193] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30c)\n[ 3357.674208] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-191)mA\n[ 3357.926572] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f6)\n[ 3357.926587] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-186)mA\n[ 3358.178961] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 310)\n[ 3358.178978] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-192)mA\n[ 3358.431335] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32e)\n[ 3358.431350] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-199)mA\n[ 3358.683560] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 301)\n[ 3358.683575] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-188)mA\n[ 3358.935892] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32c)\n[ 3358.935907] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-199)mA\n[ 3359.188268] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 305)\n[ 3359.188284] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-189)mA\n[ 3359.440635] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2dd)\n[ 3359.440650] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-179)mA\n[ 3359.692996] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f6)\n[ 3359.693012] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-186)mA\n[ 3359.945382] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31e)\n[ 3359.945397] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3360.197783] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 318)\n[ 3360.197800] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-194)mA\n[ 3360.450190] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ec)\n[ 3360.450205] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-183)mA\n[ 3360.702555] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 308)\n[ 3360.702570] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-190)mA\n[ 3360.954786] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 345)\n[ 3360.954801] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-205)mA\n[ 3361.207164] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f5)\n[ 3361.207179] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-185)mA\n[ 3361.459549] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2de)\n[ 3361.459564] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-180)mA\n[ 3361.711915] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 304)\n[ 3361.711932] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-189)mA\n[ 3361.964284] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 322)\n[ 3361.964299] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3362.216638] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30b)\n[ 3362.216654] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-191)mA\n[ 3362.469024] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ed)\n[ 3362.469039] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-183)mA\n[ 3362.721386] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2fd)\n[ 3362.721401] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-187)mA\n[ 3362.973754] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2e6)\n[ 3362.973770] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-182)mA\n[ 3363.023071] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3363.226098] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f4)\n[ 3363.226112] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-185)mA\n[ 3363.478430] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32a)\n[ 3363.478445] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3363.730781] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f3)\n[ 3363.730796] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-185)mA\n[ 3363.983147] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2bf)\n[ 3363.983162] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-172)mA\n[ 3364.235519] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2fd)\n[ 3364.235535] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-187)mA\n[ 3364.487899] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32f)\n[ 3364.487914] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-199)mA\n[ 3364.740275] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2fe)\n[ 3364.740290] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-188)mA\n[ 3364.992644] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f6)\n[ 3364.992660] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-186)mA\n[ 3365.245023] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f7)\n[ 3365.245038] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-186)mA\n[ 3365.497393] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2d8)\n[ 3365.497409] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-178)mA\n[ 3365.749785] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30e)\n[ 3365.749801] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-191)mA\n[ 3366.002153] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f5)\n[ 3366.002168] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-185)mA\n[ 3366.254506] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2e1)\n[ 3366.254522] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-180)mA\n[ 3366.506878] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31e)\n[ 3366.506894] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3366.759261] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 315)\n[ 3366.759277] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-193)mA\n[ 3367.011629] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 320)\n[ 3367.011644] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3367.263984] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 300)\n[ 3367.263999] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-188)mA\n[ 3367.516380] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 324)\n[ 3367.516397] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-197)mA\n[ 3367.768751] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 302)\n[ 3367.768766] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-188)mA\n[ 3368.003090] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3368.021133] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30e)\n[ 3368.021146] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-191)mA\n[ 3368.273474] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 303)\n[ 3368.273489] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-189)mA\n[ 3368.525820] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ef)\n[ 3368.525836] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-184)mA\n[ 3368.778162] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2fb)\n[ 3368.778178] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-187)mA\n[ 3369.023062] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3369.030540] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f9)\n[ 3369.030553] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-186)mA\n[ 3369.282896] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 301)\n[ 3369.282911] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-188)mA\n[ 3369.535277] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30a)\n[ 3369.535291] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-190)mA\n[ 3369.787659] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30f)\n[ 3369.787676] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-192)mA\n[ 3370.040055] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31a)\n[ 3370.040071] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-194)mA\n[ 3370.292419] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f7)\n[ 3370.292435] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-186)mA\n[ 3370.544776] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 301)\n[ 3370.544791] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-188)mA\n[ 3370.797141] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2df)\n[ 3370.797157] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-180)mA\n[ 3371.049540] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31e)\n[ 3371.049556] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3371.301898] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31a)\n[ 3371.301914] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-194)mA\n[ 3371.554250] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ff)\n[ 3371.554265] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-188)mA\n[ 3371.806625] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 308)\n[ 3371.806640] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-190)mA\n[ 3372.059023] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2e8)\n[ 3372.059039] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-182)mA\n[ 3372.311405] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2fc)\n[ 3372.311421] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-187)mA\n[ 3372.563772] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2db)\n[ 3372.563787] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-179)mA\n[ 3372.816149] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 305)\n[ 3372.816165] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-189)mA\n[ 3373.068509] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2d4)\n[ 3373.068524] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-177)mA\n[ 3373.320817] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f6)\n[ 3373.320832] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-186)mA\n[ 3373.573176] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32e)\n[ 3373.573191] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-199)mA\n[ 3373.825520] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30c)\n[ 3373.825535] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-191)mA\n[ 3374.077907] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 305)\n[ 3374.077923] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-189)mA\n[ 3374.330269] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 351)\n[ 3374.330285] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-208)mA\n[ 3374.510109] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (217) data1 (124) \n[ 3374.510880] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3901), src (0x01)\n[ 3374.517662] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3900)\n[ 3374.517678] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6541) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 3374.517690] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6541), ocv (39692)\n[ 3374.518935] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31f)\n[ 3374.518946] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3374.521094] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 2f1), avg current (-184)mA\n[ 3374.521105] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6541)%\n[ 3374.522349] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (217) data1 (124) \n[ 3374.522978] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3901), src (0x01)\n[ 3374.524459] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(235), Temp-ADC(2098)\n[ 3374.525193] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(235), Temp-ADC(2097)\n[ 3374.525838] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(250), Temp-ADC(2001)\n[ 3374.527704] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 3374.530180] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (210) data1 (41) \n[ 3374.543002] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (49) data1 (10) \n[ 3374.543013] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6369) \n[ 3374.543024] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6534), previous soc (6541), diff (0), FG_mode(0)\n[ 3374.545168] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 2f1), avg current (-184)mA\n[ 3374.545179] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6534)%\n[ 3374.582381] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31f)\n[ 3374.582392] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3374.597868] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3906)\n[ 3374.597889] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 65\n[ 3374.604427] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3900)\n[ 3374.605715] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (217) data1 (124) \n[ 3374.606364] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3901), src (0x01)\n[ 3374.607645] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 422)\n[ 3374.607655] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-259)mA\n[ 3374.607669] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 3374.607684] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3374.608337] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 3374.608351] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(65.3), raw_soc(65.3)\n[ 3374.608366] sec-battery battery: sec_bat_get_battery_info:Vnow(3901mV),Inow(-196mA),Imax(450mA),SOC(65%),Tbat(235),Tusb(0),Tchg(250),Twpc(0)\n[ 3374.608383] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 3374.608395] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 3374.609047] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(235)\n[ 3374.609058] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 3374.609069] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 3374.609081] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 3374.609100] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 3374.609143] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3374.834835] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 315)\n[ 3374.834849] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-193)mA\n[ 3375.023071] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3375.087274] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 308)\n[ 3375.087287] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-190)mA\n[ 3375.339657] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32c)\n[ 3375.339671] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-199)mA\n[ 3375.592009] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2fb)\n[ 3375.592023] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-187)mA\n[ 3375.844366] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2fb)\n[ 3375.844381] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-187)mA\n[ 3376.096755] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 308)\n[ 3376.096771] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-190)mA\n[ 3376.349185] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2bb)\n[ 3376.349202] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-171)mA\n[ 3376.601561] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f7)\n[ 3376.601577] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-186)mA\n[ 3376.853849] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31e)\n[ 3376.853864] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3377.106233] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 307)\n[ 3377.106248] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-190)mA\n[ 3377.358615] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 304)\n[ 3377.358631] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-189)mA\n[ 3377.610922] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 303)\n[ 3377.610938] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-189)mA\n[ 3377.865634]  5815     3.2 C/MHz    436 mW   22.5 J   13.3 I/mJ    51.6 s\n               1872: \n[ 3379.003083] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3381.023071] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3381.223402] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 195)\n[ 3381.223416] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 3381.475864] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a0)\n[ 3381.475879] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-102)mA\n[ 3381.728247] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 18d)\n[ 3381.728263] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-97)mA\n[ 3381.980628] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 15a)\n[ 3381.980644] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-85)mA\n[ 3382.233006] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 3382.233023] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 3382.485391] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 155)\n[ 3382.485406] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-84)mA\n[ 3382.737760] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 194)\n[ 3382.737774] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-99)mA\n[ 3382.990131] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 167)\n[ 3382.990147] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-88)mA\n[ 3383.242489] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 3383.242505] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 3383.494858] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1a2)\n[ 3383.494874] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-103)mA\n[ 3383.747245] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 198)\n[ 3383.747261] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 3383.999608] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 197)\n[ 3383.999624] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-100)mA\n[ 3384.251944] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1b4)\n[ 3384.251959] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-107)mA\n[ 3384.504327] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1aa)\n[ 3384.504342] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-105)mA\n[ 3384.756699] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 190)\n[ 3384.756714] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 3385.009062] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 183)\n[ 3385.009078] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-95)mA\n[ 3385.261424] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 190)\n[ 3385.261440] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-98)mA\n[ 3385.513785] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1bd)\n[ 3385.513800] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-109)mA\n[ 3385.766101] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 1d0)\n[ 3385.766116] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-114)mA\n[ 3386.271865] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31d)\n[ 3386.271883] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3386.524255] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 319)\n[ 3386.524270] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-194)mA\n[ 3386.776612] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 325)\n[ 3386.776627] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-197)mA\n[ 3387.023063] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3387.028981] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 320)\n[ 3387.028994] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3387.281313] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 312)\n[ 3387.281327] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-192)mA\n[ 3387.533654] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 324)\n[ 3387.533669] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-197)mA\n[ 3387.785957] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 321)\n[ 3387.785971] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3388.038343] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 327)\n[ 3388.038357] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3388.290706] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 359)\n[ 3388.290722] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-210)mA\n[ 3388.543064] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 327)\n[ 3388.543079] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3388.795417] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 351)\n[ 3388.795432] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-208)mA\n[ 3389.047781] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 33f)\n[ 3389.047796] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-203)mA\n[ 3389.300117] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 33f)\n[ 3389.300132] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-203)mA\n[ 3389.552409] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 34d)\n[ 3389.552424] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-207)mA\n[ 3389.804744] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 333)\n[ 3389.804759] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-200)mA\n[ 3390.003084] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3390.057120] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 338)\n[ 3390.057132] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-202)mA\n[ 3390.309461] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 356)\n[ 3390.309475] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-209)mA\n[ 3390.561747] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 338)\n[ 3390.561762] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-202)mA\n[ 3390.814090] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 336)\n[ 3390.814104] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-201)mA\n[ 3391.066449] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31e)\n[ 3391.066464] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3391.318804] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 330)\n[ 3391.318818] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-200)mA\n[ 3391.571158] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 317)\n[ 3391.571173] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-194)mA\n[ 3391.823423] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 33a)\n[ 3391.823438] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-202)mA\n[ 3392.075803] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 321)\n[ 3392.075819] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3392.328178] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 324)\n[ 3392.328194] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-197)mA\n[ 3392.580549] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32d)\n[ 3392.580563] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-199)mA\n[ 3392.832884] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 327)\n[ 3392.832898] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3393.023070] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3393.085275] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 339)\n[ 3393.085288] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-202)mA\n[ 3393.337647] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 310)\n[ 3393.337661] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-192)mA\n[ 3393.589976] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 339)\n[ 3393.589990] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-202)mA\n[ 3393.842303] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 321)\n[ 3393.842317] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3394.094681] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 325)\n[ 3394.094696] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-197)mA\n[ 3394.347053] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 348)\n[ 3394.347068] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-206)mA\n[ 3394.599389] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 328)\n[ 3394.599404] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3394.851743] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 363)\n[ 3394.851758] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-212)mA\n[ 3395.104040] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 340)\n[ 3395.104055] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-204)mA\n[ 3395.356399] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31d)\n[ 3395.356414] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3395.608744] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 33b)\n[ 3395.608768] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-202)mA\n[ 3395.861102] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30a)\n[ 3395.861116] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-190)mA\n[ 3396.113443] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 322)\n[ 3396.113458] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3396.365822] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 317)\n[ 3396.365838] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-194)mA\n[ 3396.618201] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 333)\n[ 3396.618216] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-200)mA\n[ 3396.870533] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f6)\n[ 3396.870547] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-186)mA\n[ 3397.122888] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 334)\n[ 3397.122903] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-201)mA\n[ 3397.375284] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2fd)\n[ 3397.375299] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-187)mA\n[ 3397.627632] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31e)\n[ 3397.627647] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3397.879974] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ff)\n[ 3397.879989] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-188)mA\n[ 3398.132316] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 325)\n[ 3398.132331] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-197)mA\n[ 3398.384684] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 350)\n[ 3398.384699] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-208)mA\n[ 3398.637052] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 33a)\n[ 3398.637066] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-202)mA\n[ 3398.889395] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 329)\n[ 3398.889409] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3399.023065] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3399.141750] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 325)\n[ 3399.141763] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-197)mA\n[ 3399.394060] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 345)\n[ 3399.394074] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-205)mA\n[ 3399.646424] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 348)\n[ 3399.646439] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-206)mA\n[ 3399.898762] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 33a)\n[ 3399.898776] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-202)mA\n[ 3400.151137] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32f)\n[ 3400.151151] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-199)mA\n[ 3400.403494] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2c0)\n[ 3400.403509] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-172)mA\n[ 3400.655798] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 310)\n[ 3400.655812] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-192)mA\n[ 3400.908155] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 345)\n[ 3400.908169] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-205)mA\n[ 3401.003076] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3401.160521] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31e)\n[ 3401.160534] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3401.412863] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30b)\n[ 3401.412877] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-191)mA\n[ 3401.665245] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 323)\n[ 3401.665259] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-197)mA\n[ 3401.917602] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 34e)\n[ 3401.917617] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-207)mA\n[ 3402.169952] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 342)\n[ 3402.169966] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-204)mA\n[ 3402.422300] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 36b)\n[ 3402.422315] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-214)mA\n[ 3402.674669] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 344)\n[ 3402.674684] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-205)mA\n[ 3402.927034] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32b)\n[ 3402.927049] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3403.179385] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2ff)\n[ 3403.179400] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-188)mA\n[ 3403.431728] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32a)\n[ 3403.431743] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3403.684014] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 343)\n[ 3403.684029] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-204)mA\n[ 3403.936322] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31c)\n[ 3403.936337] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3404.188674] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 340)\n[ 3404.188688] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-204)mA\n[ 3404.441031] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 322)\n[ 3404.441045] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3404.610822] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (206) data1 (124) \n[ 3404.611639] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3900), src (0x01)\n[ 3404.618449] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3900)\n[ 3404.618463] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6534) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 3404.618474] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6534), ocv (39688)\n[ 3404.619746] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 322)\n[ 3404.619756] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3404.621957] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 2e9), avg current (-182)mA\n[ 3404.621968] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6534)%\n[ 3404.623240] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (206) data1 (124) \n[ 3404.623876] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3900), src (0x01)\n[ 3404.625301] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(235), Temp-ADC(2096)\n[ 3404.625945] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(236), Temp-ADC(2094)\n[ 3404.626587] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(250), Temp-ADC(2001)\n[ 3404.628490] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 3404.631073] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (202) data1 (41) \n[ 3404.643934] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (47) data1 (10) \n[ 3404.643944] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6364) \n[ 3404.643957] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6529), previous soc (6534), diff (0), FG_mode(0)\n[ 3404.646179] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 2e9), avg current (-182)mA\n[ 3404.646190] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6529)%\n[ 3404.693347] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 47b)\n[ 3404.693359] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-281)mA\n[ 3404.698613] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3906)\n[ 3404.698633] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 65\n[ 3404.705074] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3900)\n[ 3404.706358] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (206) data1 (124) \n[ 3404.707000] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3900), src (0x01)\n[ 3404.708284] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 47b)\n[ 3404.708294] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-281)mA\n[ 3404.708307] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 3404.708322] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3404.708972] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 3404.708985] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(65.2), raw_soc(65.2)\n[ 3404.708999] sec-battery battery: sec_bat_get_battery_info:Vnow(3900mV),Inow(-196mA),Imax(450mA),SOC(65%),Tbat(235),Tusb(0),Tchg(250),Twpc(0)\n[ 3404.709015] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 3404.709027] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 3404.709673] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(235)\n[ 3404.709684] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 3404.709694] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 3404.709705] sec_bat_calculate_safety_time : EXPIRED_TIME(10500000), IP(0), CP(1957500), CURR(0), STANDARD(2400)\n[ 3404.709723] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 3404.709763] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3404.945816] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 312)\n[ 3404.945829] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-192)mA\n[ 3405.023063] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3405.198219] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31e)\n[ 3405.198232] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3405.450586] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31e)\n[ 3405.450600] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3405.702924] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 345)\n[ 3405.702938] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-205)mA\n[ 3405.955245] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 329)\n[ 3405.955260] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3406.207630] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 302)\n[ 3406.207645] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-188)mA\n[ 3406.459967] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2fe)\n[ 3406.459982] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-188)mA\n[ 3406.712309] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 324)\n[ 3406.712324] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-197)mA\n[ 3406.964685] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 328)\n[ 3406.964700] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3407.217049] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 335)\n[ 3407.217064] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-201)mA\n[ 3407.469388] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 322)\n[ 3407.469403] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3407.721722] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 346)\n[ 3407.721737] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-205)mA\n[ 3407.974077] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 33e)\n[ 3407.974093] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-203)mA\n[ 3408.226409] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 34d)\n[ 3408.226425] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-207)mA\n[ 3408.478774] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 324)\n[ 3408.478788] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-197)mA\n[ 3408.731122] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 336)\n[ 3408.731136] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-201)mA\n[ 3408.983501] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 331)\n[ 3408.983516] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-200)mA\n[ 3409.235851] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 33d)\n[ 3409.235865] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-203)mA\n[ 3409.488187] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31d)\n[ 3409.488202] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3409.740518] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 357)\n[ 3409.740533] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-209)mA\n[ 3409.992862] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 33d)\n[ 3409.992876] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-203)mA\n[ 3410.245253] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 34c)\n[ 3410.245268] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-207)mA\n[ 3410.497599] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31c)\n[ 3410.497613] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3410.749946] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31d)\n[ 3410.749960] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3411.002281] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 34b)\n[ 3411.002295] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-206)mA\n[ 3411.023066] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3411.254655] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 347)\n[ 3411.254668] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-205)mA\n[ 3411.507011] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 320)\n[ 3411.507025] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3411.759345] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 342)\n[ 3411.759360] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-204)mA\n[ 3412.003088] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3412.011702] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31f)\n[ 3412.011715] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3412.264029] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 315)\n[ 3412.264044] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-193)mA\n[ 3412.516402] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 329)\n[ 3412.516416] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3412.768735] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 324)\n[ 3412.768749] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-197)mA\n[ 3413.021082] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 36d)\n[ 3413.021097] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-215)mA\n[ 3413.273431] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32e)\n[ 3413.273445] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-199)mA\n[ 3413.525792] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 329)\n[ 3413.525807] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3413.778122] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 316)\n[ 3413.778137] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-193)mA\n[ 3414.030467] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 316)\n[ 3414.030481] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-193)mA\n[ 3414.282763] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 321)\n[ 3414.282778] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3414.535150] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 326)\n[ 3414.535163] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-197)mA\n[ 3414.787485] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 33f)\n[ 3414.787499] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-203)mA\n[ 3415.039847] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 322)\n[ 3415.039862] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3415.292179] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 34c)\n[ 3415.292194] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-207)mA\n[ 3415.544482] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31e)\n[ 3415.544496] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3415.796825] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 35a)\n[ 3415.796839] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-210)mA\n[ 3416.049165] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32d)\n[ 3416.049179] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-199)mA\n[ 3416.301474] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 358)\n[ 3416.301489] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-209)mA\n[ 3416.553740] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 331)\n[ 3416.553754] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-200)mA\n[ 3416.806077] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 34b)\n[ 3416.806092] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-206)mA\n[ 3417.023067] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3417.058434] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 33c)\n[ 3417.058446] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-203)mA\n[ 3417.310770] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32c)\n[ 3417.310784] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-199)mA\n[ 3417.563119] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32e)\n[ 3417.563135] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-199)mA\n[ 3417.815474] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 329)\n[ 3417.815488] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3418.067806] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 33c)\n[ 3418.067820] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-203)mA\n[ 3418.320139] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 33f)\n[ 3418.320154] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-203)mA\n[ 3418.572492] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 322)\n[ 3418.572506] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3418.824767] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31b)\n[ 3418.824782] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3419.077106] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 33d)\n[ 3419.077121] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-203)mA\n[ 3419.329446] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 371)\n[ 3419.329461] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-216)mA\n[ 3419.581489] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32a)\n[ 3419.581504] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3419.833846] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 329)\n[ 3419.833861] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3420.086194] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 360)\n[ 3420.086209] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-211)mA\n[ 3420.338496] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31a)\n[ 3420.338511] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-194)mA\n[ 3420.590851] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 355)\n[ 3420.590866] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-209)mA\n[ 3420.843159] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 350)\n[ 3420.843173] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-208)mA\n[ 3421.095522] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 327)\n[ 3421.095538] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3421.347883] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 341)\n[ 3421.347898] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-204)mA\n[ 3421.600218] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32f)\n[ 3421.600232] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-199)mA\n[ 3421.852426] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 340)\n[ 3421.852442] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-204)mA\n[ 3422.104805] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 332)\n[ 3422.104821] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-200)mA\n[ 3422.357152] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 330)\n[ 3422.357166] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-200)mA\n[ 3422.609483] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 362)\n[ 3422.609498] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-212)mA\n[ 3422.861832] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 310)\n[ 3422.861847] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-192)mA\n[ 3423.003100] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3423.023060] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3423.114206] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 329)\n[ 3423.114217] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3423.366563] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30a)\n[ 3423.366576] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-190)mA\n[ 3423.618911] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 333)\n[ 3423.618925] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-200)mA\n[ 3423.871246] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 33b)\n[ 3423.871261] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-202)mA\n[ 3424.123600] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 336)\n[ 3424.123615] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-201)mA\n[ 3424.375985] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 331)\n[ 3424.376000] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-200)mA\n[ 3424.628324] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32b)\n[ 3424.628338] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3424.880607] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32d)\n[ 3424.880621] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-199)mA\n[ 3425.132966] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 340)\n[ 3425.132995] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-204)mA\n[ 3425.385336] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 332)\n[ 3425.385350] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-200)mA\n[ 3425.637657] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 35e)\n[ 3425.637672] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-211)mA\n[ 3425.889992] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 30d)\n[ 3425.890006] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-191)mA\n[ 3426.142346] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32c)\n[ 3426.142360] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-199)mA\n[ 3426.394706] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 322)\n[ 3426.394722] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3426.647053] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 348)\n[ 3426.647067] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-206)mA\n[ 3426.899383] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f9)\n[ 3426.899398] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-186)mA\n[ 3427.151734] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 37e)\n[ 3427.151749] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-219)mA\n[ 3427.404090] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31a)\n[ 3427.404105] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-194)mA\n[ 3427.656426] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31f)\n[ 3427.656440] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-196)mA\n[ 3427.908755] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32f)\n[ 3427.908769] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-199)mA\n[ 3428.161121] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2f1)\n[ 3428.161137] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-184)mA\n[ 3428.413437] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 329)\n[ 3428.413452] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3428.665735] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 2fb)\n[ 3428.665749] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-187)mA\n[ 3428.918076] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 324)\n[ 3428.918090] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-197)mA\n[ 3429.023067] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3429.170351] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 346)\n[ 3429.170365] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-205)mA\n[ 3429.422707] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 329)\n[ 3429.422722] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3429.675080] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 334)\n[ 3429.675094] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-201)mA\n[ 3429.927410] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 327)\n[ 3429.927425] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3430.179753] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 302)\n[ 3430.179768] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-188)mA\n[ 3430.432116] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32b)\n[ 3430.432130] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3430.684420] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 35c)\n[ 3430.684433] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-210)mA\n[ 3430.936745] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 338)\n[ 3430.936760] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-202)mA\n[ 3431.189085] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31d)\n[ 3431.189100] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-195)mA\n[ 3431.441438] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 330)\n[ 3431.441453] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-200)mA\n[ 3431.693777] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 332)\n[ 3431.693792] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-200)mA\n[ 3431.946111] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 326)\n[ 3431.946125] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-197)mA\n[ 3432.198420] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 31a)\n[ 3432.198435] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-194)mA\n[ 3432.450505] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32e)\n[ 3432.450519] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-199)mA\n[ 3432.702840] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32c)\n[ 3432.702855] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-199)mA\n[ 3432.955178] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 332)\n[ 3432.955192] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-200)mA\n[ 3433.207508] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 346)\n[ 3433.207523] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-205)mA\n[ 3433.459858] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 34c)\n[ 3433.459873] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-207)mA\n[ 3433.712201] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 340)\n[ 3433.712215] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-204)mA\n[ 3433.964557] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 325)\n[ 3433.964572] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-197)mA\n[ 3434.003091] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, type: unknown\n[ 3434.216918] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 318)\n[ 3434.216931] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-194)mA\n[ 3434.469261] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 349)\n[ 3434.469275] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-206)mA\n[ 3434.711534] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (192) data1 (124) \n[ 3434.712301] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3898), src (0x01)\n[ 3434.718832] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3898)\n[ 3434.718846] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6529) soc_arr[TABLE_SIZE-1] (-206) ocv_arr[TABLE_SIZE-1) (32069)\n[ 3434.718857] s2mu004-fuelgauge 10-003b: s2mu004_get_ocv: soc (6529), ocv (39685)\n[ 3434.720121] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32b)\n[ 3434.720131] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3434.721865] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 32b)\n[ 3434.721877] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3434.723593] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 320), avg current (-196)mA\n[ 3434.723605] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6529)%\n[ 3434.724876] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (192) data1 (124) \n[ 3434.725518] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3898), src (0x01)\n[ 3434.726807] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(236), Temp-ADC(2092)\n[ 3434.727450] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(236), Temp-ADC(2092)\n[ 3434.728090] sec-battery battery: sec_bat_get_temperature_by_adc: Temp(252), Temp-ADC(1996)\n[ 3434.729990] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: OTP 4E(1e) 4F(10) current 4E(1e) 4F(10) \n[ 3434.732627] s2mu004-fuelgauge 10-003b: [DEBUG]s2mu004_get_rawsoc: data0 (193) data1 (41) \n[ 3434.745855] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc raw data0 (44) data1 (10) \n[ 3434.745866] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: vm soc (6357) \n[ 3434.745878] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: current_soc (6524), previous soc (6529), diff (0), FG_mode(0)\n[ 3434.748122] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: MONOUT(0x 320), avg current (-196)mA\n[ 3434.748133] s2mu004-fuelgauge 10-003b: s2mu004_get_avgcurrent: SOC(6524)%\n[ 3434.800892] s2mu004-fuelgauge 10-003b: s2mu004_get_monout_avgvbat: avgvbat (3902)\n[ 3434.800909] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: UI SOC = 65\n[ 3434.808026] s2mu004-fuelgauge 10-003b: s2mu004_get_avgvbat: avgvbat (3898)\n[ 3434.809311] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: data0 (192) data1 (124) \n[ 3434.809959] s2mu004-fuelgauge 10-003b: s2mu004_get_vbat: vbat (3898), src (0x01)\n[ 3434.811237] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 402)\n[ 3434.811247] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-251)mA\n[ 3434.811260] s2mu004-fuelgauge 10-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 3434.811275] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3434.811923] s2mu004_analog_ivr_switch : 0xB3 : 0x58\n[ 3434.811936] s2mu004-fuelgauge 10-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(65.2), raw_soc(65.2)\n[ 3434.811950] sec-battery battery: sec_bat_get_battery_info:Vnow(3898mV),Inow(-198mA),Imax(450mA),SOC(65%),Tbat(236),Tusb(0),Tchg(252),Twpc(0)\n[ 3434.811965] cisd - stt:0, cp:3000/0, cpmm:3000/3000/3000, dcpt:0, ovc:0, rct:2147483647\n[ 3434.811977] cisd_debug: 1, 3000, 3000, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2147483647, 0, 1\n[ 3434.812622] sec_bat_swelling_check: status(2), swell_mode(0:0:0), cv(4350)mV, temp(236)\n[ 3434.812633] sec_bat_set_current_event: clear current event(now=0x0, value=0xf0)\n[ 3434.812643] sec_bat_set_current_event: clear current event(now=0x0, value=0x4)\n[ 3434.812652] sec_bat_calculate_safety_time : SAFETY TIME RESET! DISCHARGING CNT(5)\n[ 3434.812670] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(1, 1, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 3434.812710] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 3434.974351] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 402)\n[ 3434.974365] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-251)mA\n[ 3435.023065] [SSP]      debug_work_func( 447): (0) - Sensor state: 0x4b24f0172, RC: 0, CC: 0 DC: 0 TC: 0\n[ 3435.226780] s2mu004-fuelgauge 10-003b: s2mu004_get_current: rCUR_CC(0x 328)\n[ 3435.226792] s2mu004-fuelgauge 10-003b: s2mu004_get_current: current (-198)mA\n[ 3435.543656]  6066     3.2 C/MHz    477 mW   23.6 J   12.7 I/mJ    49.5 s\n               \n               \n               Benchmark finished!\n[ 3435.583515] \n               real\t57m12.155s\n               user\t48m1.190s\n               sys\t0m6.460s\n"
  },
  {
    "path": "results/exynos7880/main/post_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  1:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   0  gpio-keys: KEY_POWER\n  2:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   2  s2mpu05\n  3:          1          0          0          0          0          0          0          0  exynos_wkup_irq_chip   2  si47xx\n  4:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   4  abov-touchkey-ft1804\n  5:       3230          0          0          0          0          0          0          0  exynos_wkup_irq_chip   5  bt532_ts_device\n  6:          1          0          0          0          0          0          0          0  exynos_wkup_irq_chip   6  sec-nfc\n  7:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   7  s2mu004-irq\n  8:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   6  bt_host_wake\n  9:          1          0          0          0          0          0          0          0  exynos_wkup_irq_chip   3  tflash_det\n 10:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   3  fuelgauge-irq\n 11:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   4  cod3026_theaded_isr\n 12:     203253          0          0          0          0          0          0          0  exynos_gpio_irq_chip   2  14830000.decon_f\n 13:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   5  pcd\n 14:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   3  s2mu004-usbpd\n 15:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   1  gpio-keys: KEY_VOLUMEDOWN\n 27:          0          0          0          0          0          0          0          0       GIC  27  arch_timer\n 32:          0          0          0          0          0          0          0          0       GIC  32  139f0000.pinctrl\n 50:          0          0          0          0          0          0          0          0       GIC  50  cp_fail\n 51:          0          0          0          0          0          0          0          0       GIC  51  kepler_active_handler\n100:          0          0          0          0          0          0          0          0       GIC 100  148c0000.pinctrl\n105:          0          0          0          0          0          0          0          0       GIC 105  14890000.adma\n132:          0          0          0          0          0          0          0          0       GIC 132  10170000.watchdog\n134:          0          0          0          0          0          0          0          0       GIC 134  mct_comp_irq\n138:     130289          0          0          0          0          0          0          0       GIC 138  mct_tick0\n139:          0     184551          0          0          0          0          0          0       GIC 139  mct_tick1\n140:          0          0       3375          0          0          0          0          0       GIC 140  mct_tick2\n141:          0          0          0       4949          0          0          0          0       GIC 141  mct_tick3\n142:          0          0          0          0        980          0          0          0       GIC 142  mct_tick4\n143:          0          0          0          0          0     144216          0          0       GIC 143  mct_tick5\n144:          0          0          0          0          0          0        916          0       GIC 144  mct_tick6\n145:          0          0          0          0          0          0          0        915       GIC 145  mct_tick7\n160:          0          0          0          0          0          0          0          0       GIC 160  14470000.sysmmu\n163:          0          0          0          0          0          0          0          0       GIC 163  14490000.sysmmu\n166:          0          0          0          0          0          0          0          0       GIC 166  144a0000.sysmmu\n171:          0          0          0          0          0          0          0          0       GIC 171  fimcis0-1\n172:          0          0          0          0          0          0          0          0       GIC 172  fimcis0-2\n174:          0          0          0          0          0          0          0          0       GIC 174  fimcmcs-0\n178:          0          0          0          0          0          0          0          0       GIC 178  fimcvra-0\n179:          0          0          0          0          0          0          0          0       GIC 179  fimcvra-1\n180:          0          0          0          0          0          0          0          0       GIC 180  fimc3a0-1\n181:          0          0          0          0          0          0          0          0       GIC 181  fimc3a0-2\n225:          0          0          0          0          0          0          0          0       GIC 225  14860000.sysmmu\n233:          0          0          0          0          0          0          0          0       GIC 233  14830000.decon_f\n234:          1          0          0          0          0          0          0          0       GIC 234  14830000.decon_f\n235:          0          0          0          0          0          0          0          0       GIC 235  14830000.decon_f\n236:          0          0          0          0          0          0          0          0       GIC 236  14830000.decon_f\n239:         40          0          0          0          0          0          0          0       GIC 239  14800000.dsim\n243:          0          0          0          0          0          0          0          0       GIC 243  14821000.vpp\n244:          0          0          0          0          0          0          0          0       GIC 244  14822000.vpp\n245:          0          0          0          0          0          0          0          0       GIC 245  14823000.vpp\n246:          0          0          0          0          0          0          0          0       GIC 246  14824000.vpp\n255:          2          0          0          0          0          0          0          0       GIC 255  trustonic\n260:          0          0          0          0          0          0          0          0       GIC 260  13450000.pdma0\n261:          0          0          0          0          0          0          0          0       GIC 261  13460000.pdma1\n262:          0          0          0          0          0          0          0          0       GIC 262  dwc3\n277:         71          0          0          0          0          0          0          0       GIC 277  dw-mci\n278:        170          0          0          0          0          0          0          0       GIC 278  dw-mci\n279:         86          0          0          0          0          0          0          0       GIC 279  dw-mci\n282:          0          0          0          0          0          0          0          0       GIC 282  13750000.pinctrl\n313:          3          0          0          0          0          0          0          0       GIC 313  11400000.mali\n314:          0          0          0          0          0          0          0          0       GIC 314  11400000.mali\n315:          0          0          0          0          0          0          0          0       GIC 315  11400000.mali\n338:          0          0          0          0          0          0          0          0       GIC 338  10600000.mcu_ipc\n341:        756          0          0          0          0          0          0          0       GIC 341  10610000.hsi2c\n342:          0          0          0          0          0          0          0          0       GIC 342  10670000.mcu_ipc\n343:          0          0          0          0          0          0          0          0       GIC 343  107a0000.BUSMON_PERI_GROUP4\n344:          0          0          0          0          0          0          0          0       GIC 344  10780200.BUSMON_RT_GROUP2\n345:          0          0          0          0          0          0          0          0       GIC 345  10790200.BUSMON_NRT_GROUP1\n346:          0          0          0          0          0          0          0          0       GIC 346  107b0000.BUSMON_CP_GROUP3\n359:          0          0          0          0          0          0          0          0       GIC 359  10630000.pinctrl\n360:       1725          0          0          0          0          0          0          0       GIC 360  10650000.adc\n384:          0          0          0          0          0          0          0          0       GIC 384  12c90000.sysmmu\n386:          0          0          0          0          0          0          0          0       GIC 386  12c30000.mfc0\n432:          0          0          0          0          0          0          0          0       GIC 432  12c00000.scaler\n433:          0          0          0          0          0          0          0          0       GIC 433  12c10000.scaler\n434:          0          0          0          0          0          0          0          0       GIC 434  12c80000.sysmmu\n436:          0          0          0          0          0          0          0          0       GIC 436  12c20000.smfc\n456:     130229          0          0          0          0          0          0          0       GIC 456  13830000.i2c\n459:          0          0          0          0          0          0          0          0       GIC 459  13860000.i2c\n460:       3116          0          0          0          0          0          0          0       GIC 460  13870000.i2c\n461:          0          0          0          0          0          0          0          0       GIC 461  13880000.i2c\n462:     151953          0          0          0          0          0          0          0       GIC 462  13890000.i2c\n463:          0          0          0          0          0          0          0          0       GIC 463  spi-s3c64xx\n466:          0          0          0          0          0          0          0          0       GIC 466  spi-s3c64xx\n467:          2          0          0          0          0          0          0          0       GIC 467  10130000.tmuctrl_CPUCL0, 10130000.tmuctrl_CPUCL1, 10130000.tmuctrl_G3D\n470:     203253          0          0          0          0          0          0          0       GIC 470  139b0000.pinctrl\n471:          0          0          0          0          0          0          0          0       GIC 471  139c0000.pinctrl\n481:          0          0          0          0          0          0          0          0       GIC 481  138a0000.hsi2c\n482:          0          0          0          0          0          0          0          0       GIC 482  138b0000.hsi2c\n483:          0          0          0          0          0          0          0          0       GIC 483  138c0000.hsi2c\n487:          0          0          0          0          0          0          0          0       GIC 487  spi-s3c64xx\n488:          0          0          0          0          0          0          0          0       GIC 488  138f0000.hsi2c\n490:          0          0          0          0          0          0          0          0       GIC 490  13960000.hsi2c\n509:          0          0          0          0          0          0          0          0       GIC 509  kepler_wakelock_handler\n510:          0          0          0          0          0          0          0          0       GIC 510  kepler_wdt_handler\n511:          0          0          0          0          0          0          0          0       GIC 511  cp_wdt\n522:          0          0          0          0          0          0          0          0   s2mpu05  10  rtc-alarm0\n529:          0          0          0          0          0          0          0          0   s2mu004  sys-irq\n531:          0          0          0          0          0          0          0          0   s2mu004  chg_fault-irq\n532:          0          0          0          0          0          0          0          0   s2mu004  restart-irq\n533:          0          0          0          0          0          0          0          0   s2mu004  done-irq\n536:          0          0          0          0          0          0          0          0   s2mu004  chgin-irq\n544:          0          0          0          0          0          0          0          0   s2mu004  muic-vbadc\n545:          0          0          0          0          0          0          0          0   s2mu004  muic-vdnmon\n547:          0          0          0          0          0          0          0          0   s2mu004  muic-mpnack\n551:          0          0          0          0          0          0          0          0   s2mu004  muic-mrxrdy\n552:          0          0          0          0          0          0          0          0   s2mu004  muic-attach\n553:          0          0          0          0          0          0          0          0   s2mu004  muic-detach\n557:          0          0          0          0          0          0          0          0   s2mu004  muic-rid_chg\n558:          0          0          0          0          0          0          0          0   s2mu004  muic-vbus_on\n559:          0          0          0          0          0          0          0          0   s2mu004  muic-rsvd_attach\n560:          0          0          0          0          0          0          0          0   s2mu004  muic-adc_change\n564:          0          0          0          0          0          0          0          0   s2mu004  muic-av_charge\n565:          0          0          0          0          0          0          0          0   s2mu004  muic-vbus_off\n566:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   0  gpio-keys: KEY_VOLUMEUP\n567:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   7  gpio-keys: KEY_HOME\n568:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   6  flip_cover\n569:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   2  certify_cover\n570:          8          1          0          0          0          0          0          0  exynos_wkup_irq_chip   7  SSP_Int\n571:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   2  wlan-host-wake\nIPI0:      2193      24399       7492        748        171         94         29         39       Rescheduling interrupts\nIPI1:         5          5         11         10          8          6          6          6       Function call interrupts\nIPI2:         0          2          0          0         16          0          0          0       Single function call interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         0          0          0          0          0          0          0          0       IRQ work interrupts\nIPI6:         0          1          1          1          1          1          1          1       CPU Wakeup by interrupts\nErr:          0\n"
  },
  {
    "path": "results/exynos7880/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  1:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   0  gpio-keys: KEY_POWER\n  2:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   2  s2mpu05\n  3:          1          0          0          0          0          0          0          0  exynos_wkup_irq_chip   2  si47xx\n  4:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   4  abov-touchkey-ft1804\n  5:          3          0          0          0          0          0          0          0  exynos_wkup_irq_chip   5  bt532_ts_device\n  6:          1          0          0          0          0          0          0          0  exynos_wkup_irq_chip   6  sec-nfc\n  7:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   7  s2mu004-irq\n  8:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   6  bt_host_wake\n  9:          1          0          0          0          0          0          0          0  exynos_wkup_irq_chip   3  tflash_det\n 10:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   3  fuelgauge-irq\n 11:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   4  cod3026_theaded_isr\n 12:         72          0          0          0          0          0          0          0  exynos_gpio_irq_chip   2  14830000.decon_f\n 13:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   5  pcd\n 14:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   3  s2mu004-usbpd\n 15:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   1  gpio-keys: KEY_VOLUMEDOWN\n 27:          0          0          0          0          0          0          0          0       GIC  27  arch_timer\n 32:          0          0          0          0          0          0          0          0       GIC  32  139f0000.pinctrl\n 50:          0          0          0          0          0          0          0          0       GIC  50  cp_fail\n 51:          0          0          0          0          0          0          0          0       GIC  51  kepler_active_handler\n100:          0          0          0          0          0          0          0          0       GIC 100  148c0000.pinctrl\n105:          0          0          0          0          0          0          0          0       GIC 105  14890000.adma\n132:          0          0          0          0          0          0          0          0       GIC 132  10170000.watchdog\n134:          0          0          0          0          0          0          0          0       GIC 134  mct_comp_irq\n138:        731          0          0          0          0          0          0          0       GIC 138  mct_tick0\n139:          0        405          0          0          0          0          0          0       GIC 139  mct_tick1\n140:          0          0        131          0          0          0          0          0       GIC 140  mct_tick2\n141:          0          0          0        215          0          0          0          0       GIC 141  mct_tick3\n142:          0          0          0          0         95          0          0          0       GIC 142  mct_tick4\n143:          0          0          0          0          0         60          0          0       GIC 143  mct_tick5\n144:          0          0          0          0          0          0         47          0       GIC 144  mct_tick6\n145:          0          0          0          0          0          0          0         45       GIC 145  mct_tick7\n160:          0          0          0          0          0          0          0          0       GIC 160  14470000.sysmmu\n163:          0          0          0          0          0          0          0          0       GIC 163  14490000.sysmmu\n166:          0          0          0          0          0          0          0          0       GIC 166  144a0000.sysmmu\n171:          0          0          0          0          0          0          0          0       GIC 171  fimcis0-1\n172:          0          0          0          0          0          0          0          0       GIC 172  fimcis0-2\n174:          0          0          0          0          0          0          0          0       GIC 174  fimcmcs-0\n178:          0          0          0          0          0          0          0          0       GIC 178  fimcvra-0\n179:          0          0          0          0          0          0          0          0       GIC 179  fimcvra-1\n180:          0          0          0          0          0          0          0          0       GIC 180  fimc3a0-1\n181:          0          0          0          0          0          0          0          0       GIC 181  fimc3a0-2\n225:          0          0          0          0          0          0          0          0       GIC 225  14860000.sysmmu\n233:          0          0          0          0          0          0          0          0       GIC 233  14830000.decon_f\n234:          1          0          0          0          0          0          0          0       GIC 234  14830000.decon_f\n235:          0          0          0          0          0          0          0          0       GIC 235  14830000.decon_f\n236:          0          0          0          0          0          0          0          0       GIC 236  14830000.decon_f\n239:         40          0          0          0          0          0          0          0       GIC 239  14800000.dsim\n243:          0          0          0          0          0          0          0          0       GIC 243  14821000.vpp\n244:          0          0          0          0          0          0          0          0       GIC 244  14822000.vpp\n245:          0          0          0          0          0          0          0          0       GIC 245  14823000.vpp\n246:          0          0          0          0          0          0          0          0       GIC 246  14824000.vpp\n255:          2          0          0          0          0          0          0          0       GIC 255  trustonic\n260:          0          0          0          0          0          0          0          0       GIC 260  13450000.pdma0\n261:          0          0          0          0          0          0          0          0       GIC 261  13460000.pdma1\n262:          0          0          0          0          0          0          0          0       GIC 262  dwc3\n277:         71          0          0          0          0          0          0          0       GIC 277  dw-mci\n278:          0          0          0          0          0          0          0          0       GIC 278  dw-mci\n279:         86          0          0          0          0          0          0          0       GIC 279  dw-mci\n282:          0          0          0          0          0          0          0          0       GIC 282  13750000.pinctrl\n313:          3          0          0          0          0          0          0          0       GIC 313  11400000.mali\n314:          0          0          0          0          0          0          0          0       GIC 314  11400000.mali\n315:          0          0          0          0          0          0          0          0       GIC 315  11400000.mali\n338:          0          0          0          0          0          0          0          0       GIC 338  10600000.mcu_ipc\n341:        376          0          0          0          0          0          0          0       GIC 341  10610000.hsi2c\n342:          0          0          0          0          0          0          0          0       GIC 342  10670000.mcu_ipc\n343:          0          0          0          0          0          0          0          0       GIC 343  107a0000.BUSMON_PERI_GROUP4\n344:          0          0          0          0          0          0          0          0       GIC 344  10780200.BUSMON_RT_GROUP2\n345:          0          0          0          0          0          0          0          0       GIC 345  10790200.BUSMON_NRT_GROUP1\n346:          0          0          0          0          0          0          0          0       GIC 346  107b0000.BUSMON_CP_GROUP3\n359:          0          0          0          0          0          0          0          0       GIC 359  10630000.pinctrl\n360:         15          0          0          0          0          0          0          0       GIC 360  10650000.adc\n384:          0          0          0          0          0          0          0          0       GIC 384  12c90000.sysmmu\n386:          0          0          0          0          0          0          0          0       GIC 386  12c30000.mfc0\n432:          0          0          0          0          0          0          0          0       GIC 432  12c00000.scaler\n433:          0          0          0          0          0          0          0          0       GIC 433  12c10000.scaler\n434:          0          0          0          0          0          0          0          0       GIC 434  12c80000.sysmmu\n436:          0          0          0          0          0          0          0          0       GIC 436  12c20000.smfc\n456:        629          0          0          0          0          0          0          0       GIC 456  13830000.i2c\n459:          0          0          0          0          0          0          0          0       GIC 459  13860000.i2c\n460:       1748          0          0          0          0          0          0          0       GIC 460  13870000.i2c\n461:          0          0          0          0          0          0          0          0       GIC 461  13880000.i2c\n462:        284          0          0          0          0          0          0          0       GIC 462  13890000.i2c\n463:          0          0          0          0          0          0          0          0       GIC 463  spi-s3c64xx\n466:          0          0          0          0          0          0          0          0       GIC 466  spi-s3c64xx\n467:          2          0          0          0          0          0          0          0       GIC 467  10130000.tmuctrl_CPUCL0, 10130000.tmuctrl_CPUCL1, 10130000.tmuctrl_G3D\n470:         72          0          0          0          0          0          0          0       GIC 470  139b0000.pinctrl\n471:          0          0          0          0          0          0          0          0       GIC 471  139c0000.pinctrl\n481:          0          0          0          0          0          0          0          0       GIC 481  138a0000.hsi2c\n482:          0          0          0          0          0          0          0          0       GIC 482  138b0000.hsi2c\n483:          0          0          0          0          0          0          0          0       GIC 483  138c0000.hsi2c\n487:          0          0          0          0          0          0          0          0       GIC 487  spi-s3c64xx\n488:          0          0          0          0          0          0          0          0       GIC 488  138f0000.hsi2c\n490:          0          0          0          0          0          0          0          0       GIC 490  13960000.hsi2c\n509:          0          0          0          0          0          0          0          0       GIC 509  kepler_wakelock_handler\n510:          0          0          0          0          0          0          0          0       GIC 510  kepler_wdt_handler\n511:          0          0          0          0          0          0          0          0       GIC 511  cp_wdt\n522:          0          0          0          0          0          0          0          0   s2mpu05  10  rtc-alarm0\n529:          0          0          0          0          0          0          0          0   s2mu004  sys-irq\n531:          0          0          0          0          0          0          0          0   s2mu004  chg_fault-irq\n532:          0          0          0          0          0          0          0          0   s2mu004  restart-irq\n533:          0          0          0          0          0          0          0          0   s2mu004  done-irq\n536:          0          0          0          0          0          0          0          0   s2mu004  chgin-irq\n544:          0          0          0          0          0          0          0          0   s2mu004  muic-vbadc\n545:          0          0          0          0          0          0          0          0   s2mu004  muic-vdnmon\n547:          0          0          0          0          0          0          0          0   s2mu004  muic-mpnack\n551:          0          0          0          0          0          0          0          0   s2mu004  muic-mrxrdy\n552:          0          0          0          0          0          0          0          0   s2mu004  muic-attach\n553:          0          0          0          0          0          0          0          0   s2mu004  muic-detach\n557:          0          0          0          0          0          0          0          0   s2mu004  muic-rid_chg\n558:          0          0          0          0          0          0          0          0   s2mu004  muic-vbus_on\n559:          0          0          0          0          0          0          0          0   s2mu004  muic-rsvd_attach\n560:          0          0          0          0          0          0          0          0   s2mu004  muic-adc_change\n564:          0          0          0          0          0          0          0          0   s2mu004  muic-av_charge\n565:          0          0          0          0          0          0          0          0   s2mu004  muic-vbus_off\n566:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   0  gpio-keys: KEY_VOLUMEUP\n567:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   7  gpio-keys: KEY_HOME\n568:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   6  flip_cover\n569:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   2  certify_cover\n570:          7          1          0          0          0          0          0          0  exynos_wkup_irq_chip   7  SSP_Int\n571:          0          0          0          0          0          0          0          0  exynos_wkup_irq_chip   2  wlan-host-wake\nIPI0:      1084       1429       1467        699        169         33         23         23       Rescheduling interrupts\nIPI1:         5          5         11         10          8          6          6          6       Function call interrupts\nIPI2:         0          2          0          0          1          0          0          0       Single function call interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         0          0          0          0          0          0          0          0       IRQ work interrupts\nIPI6:         0          1          1          1          1          1          1          1       CPU Wakeup by interrupts\nErr:          0\n"
  },
  {
    "path": "results/exynos7880/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [ksoftirqd/0]\n    4 root      0:02 [kworker/0:0]\n    5 root      0:00 [kworker/0:0H]\n    7 root      0:01 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [migration/0]\n   11 root      0:00 [watchdog/0]\n   12 root      0:00 [watchdog/1]\n   13 root      0:00 [migration/1]\n   14 root      0:00 [ksoftirqd/1]\n   16 root      0:00 [kworker/1:0H]\n   17 root      0:00 [watchdog/2]\n   18 root      0:00 [migration/2]\n   19 root      0:00 [ksoftirqd/2]\n   20 root      0:00 [kworker/2:0]\n   21 root      0:00 [kworker/2:0H]\n   22 root      0:00 [watchdog/3]\n   23 root      0:00 [migration/3]\n   24 root      0:00 [ksoftirqd/3]\n   25 root      0:00 [kworker/3:0]\n   26 root      0:00 [kworker/3:0H]\n   27 root      0:00 [watchdog/4]\n   28 root      0:00 [migration/4]\n   29 root      0:00 [ksoftirqd/4]\n   30 root      0:00 [kworker/4:0]\n   31 root      0:00 [kworker/4:0H]\n   32 root      0:00 [watchdog/5]\n   33 root      0:00 [migration/5]\n   34 root      0:00 [ksoftirqd/5]\n   35 root      0:00 [kworker/5:0]\n   36 root      0:00 [kworker/5:0H]\n   37 root      0:00 [watchdog/6]\n   38 root      0:00 [migration/6]\n   39 root      0:00 [ksoftirqd/6]\n   40 root      0:00 [kworker/6:0]\n   41 root      0:00 [kworker/6:0H]\n   42 root      0:00 [watchdog/7]\n   43 root      0:00 [migration/7]\n   44 root      0:00 [ksoftirqd/7]\n   45 root      0:00 [kworker/7:0]\n   46 root      0:00 [kworker/7:0H]\n   47 root      0:00 [khelper]\n   48 root      0:00 [kdevtmpfs]\n   49 root      0:00 [netns]\n   52 root      0:00 [perf]\n   75 root      0:00 [kworker/u17:0]\n   76 root      0:00 [exynos_cpu_hotp]\n  493 root      0:00 [khungtaskd]\n  494 root      0:00 [writeback]\n  497 root      0:00 [ksmd]\n  498 root      0:00 [crypto]\n  499 root      0:00 [bioset]\n  501 root      0:00 [kblockd]\n  520 root      0:00 [spi0]\n  525 root      0:00 [spi1]\n  530 root      0:00 [spi2]\n  533 root      0:00 [kworker/0:1]\n  564 root      0:00 [irq/2-s2mpu05]\n  657 root      0:00 [ion_noncontig_h]\n  668 root      0:00 [devfreq_wq]\n  683 root      0:01 [kworker/1:1]\n  684 root      0:00 [cfg80211]\n  701 root      0:00 [cfinteractive]\n  702 root      0:00 [kworker/2:1]\n  703 root      0:00 [mptcp_wq]\n  704 root      0:00 [kworker/3:1]\n  736 root      0:00 [kswapd0]\n  802 root      0:00 [fsnotify_mark]\n  829 root      0:00 [ecryptfs-kthrea]\n  967 root      0:00 [hwrng]\n  970 root      0:00 [g3d_dvfs]\n  971 root      0:00 [kbase_job_fault]\n 1066 root      0:00 [shmem_tx_wq]\n 1071 root      0:00 [irq/7-s2mu004-i]\n 1077 root      0:00 [irq/6-sec-nfc]\n 1122 root      0:00 [irq/4-abov-touc]\n 1127 root      0:00 [esd_tmr_workque]\n 1131 root      0:01 [irq/5-bt532_ts_]\n 1156 root      0:00 [scaler_fence_wo]\n 1159 root      0:00 [scaler_fence_wo]\n 1162 root      0:00 [irq/386-12c3000]\n 1167 root      0:00 [s5p_mfc/watchdo]\n 1168 root      0:00 [s5p_mfc/sched]\n 1199 root      0:00 [si47xx_wq]\n 1208 root      0:00 [dm_bufio_cache]\n 1217 root      0:00 [dw-mci-card]\n 1219 root      0:00 [dw-mci-card]\n 1223 root      0:00 [mmcqd/0]\n 1224 root      0:00 [mmcqd/0boot0]\n 1225 root      0:00 [mmcqd/0boot1]\n 1226 root      0:00 [mmcqd/0rpmb]\n 1228 root      0:00 [dw-mci-card]\n 1317 root      0:00 [binder]\n 1350 root      0:00 [devfreq_mif_the]\n 1368 root      0:00 [irq/10-fuelgaug]\n 1374 root      0:00 [charger-wq]\n 1378 root      0:00 [mc_fastcall]\n 1381 root      0:00 [tee_irq_bh]\n 1382 root      0:00 [tee_scheduler]\n 1387 root      0:00 [sec_vib_work]\n 1393 root      0:00 [etspi_debug_wq]\n 1415 root      0:00 [buttons_wq]\n 1416 root      0:00 [jack_det_wq]\n 1417 root      0:00 [jack_det_adc_wq]\n 1418 root      0:00 [adc_mute_wq]\n 1419 root      0:00 [water_det_adc_w]\n 1423 root      0:00 [irq/11-cod3026_]\n 1432 root      0:04 [kworker/u16:4]\n 1454 root      0:00 [ipv6_addrconf]\n 1485 root      0:00 [decon_fifo_irq_]\n 1486 root      0:04 [s3c-fb-vsync]\n 1487 root      0:00 [decon_lpd]\n 1493 root      0:00 [decon0]\n 1501 root      0:00 [mmcqd/2]\n 1506 root      0:00 [10-003c]\n 1507 root      0:00 [ccic_irq_event]\n 1508 root      0:00 [irq/14-s2mu004-]\n 1509 root      0:00 [deferwq]\n 1537 root      0:00 [mtp_read_send]\n 1544 root      0:00 [file-storage]\n 1553 root      0:00 [usb_notify]\n 1560 root      0:00 [irq/568-flip_co]\n 1565 root      0:00 [irq/569-certify]\n 1577 root      0:00 [battery]\n 1591 root      0:00 [mc_timer]\n 1610 root      0:00 [ssp_debug_wq]\n 1611 root      0:00 [irq/570-SSP_Int]\n 1624 root      0:00 [ssp_sensorhub_t]\n 1625 root      0:00 [kworker/1:2]\n 1627 root      0:00 [kworker/4:1]\n 1648 root      0:00 [kworker/5:1]\n 1650 root      0:00 [exynos_hpgov]\n 1651 root      0:00 [exynos_hp]\n 1690 root      0:00 [kworker/6:1]\n 1699 root      0:00 [kworker/7:1]\n 1817 root      0:00 [kworker/u16:0]\n 1839 root      0:00 [kworker/u16:1]\n 1910 root      0:00 ps -A\n"
  },
  {
    "path": "results/exynos7880/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,449000,1450.410466,3.2303128418708242,24.028289052890532,4.970395430536457,60.35737079526908,206.855986275\r\n1,546000,1766.399548,3.2351640073260075,38.690309880239525,6.5716298870318015,45.650775402310515,169.852087186\r\n1,676000,2187.625333,3.236132149408284,54.57259814814816,7.484607503843328,40.08226214212979,137.149554132\r\n1,757000,2450.159669,3.2366706327608985,65.19253002070394,7.983001578376746,37.579849766358386,122.45270395\r\n1,845000,2736.252611,3.2381687704142013,77.49396296296297,8.497283018804723,35.30540283712943,109.650903037\r\n1,962000,3117.304155,3.2404409095634095,103.47546578947369,9.9591139847186,30.123161604568846,96.246138239\r\n1,1014000,3285.76279,3.2403972287968443,124.88716620498616,11.403520072164683,26.30766623827692,91.310583935\r\n1,1144000,3707.090428,3.240463660839161,149.3598375,12.088198199776683,24.81759440422992,80.93339148\r\n1,1242000,4024.198849,3.2400956916264088,176.68158305084745,13.172478310801116,22.774757560542515,74.554903139\r\n1,1352000,4382.120947,3.2412137181952665,204.15670110701106,13.977715830748927,21.46273422872455,68.465623489\r\n1,1482000,4804.689377,3.2420306187584345,252.2516032388664,15.751759077245213,19.045491905305745,62.444634147\r\n1,1586000,5139.890692,3.2407885825977303,287.18470995671,16.763956607093206,17.895536658276917,58.373430151\r\n1,1690000,5477.451159,3.24109536035503,349.24695833333334,19.130208829503005,15.682003404862668,54.775591807\r\n1,1794000,5816.771692,3.2423476544035674,435.0603137254902,22.44046713911102,13.368705657518879,51.580129079\r\n1,1872000,6068.697657,3.2418256714743587,474.4195128205128,23.454474477631955,12.790736381073206,49.438258427\r\n5,449000,1449.016359,3.2272079265033407,26.484162162162168,5.483681554016145,54.70777196759094,207.055126775\r\n5,546000,1765.536723,3.233583741758242,36.967583832335336,6.282082007537224,47.75486847195896,169.934882302\r\n5,676000,2187.641285,3.2361557470414204,52.79907777777778,7.241358402667555,41.42869104358744,137.14933494\r\n5,757000,2447.021974,3.2325257252311754,64.91881780538303,7.959617316652038,37.690254200083274,122.608784105\r\n5,845000,2735.354456,3.2371058650887576,77.03313856812935,8.449383936827216,35.50554717870371,109.685053652\r\n5,962000,3115.167752,3.2382201164241162,102.47422105263158,9.869457698700176,30.39680691265443,96.311614739\r\n5,1014000,3281.844834,3.236533366863905,123.7208864265928,11.310608696570066,26.523771447506164,91.420365819\r\n5,1144000,3707.50275,3.2408240821678325,149.43407812499998,12.092821928235118,24.8081053190356,80.924124403\r\n5,1242000,4020.262121,3.2369260233494366,173.16548813559322,12.922968304243096,23.214480832665878,74.627851331\r\n5,1352000,4378.986702,3.2388954896449706,202.30313284132842,13.861015289920685,21.643436193173457,68.516068413\r\n5,1482000,4800.614479,3.2392810249662616,250.17116194331985,15.63526654602458,19.187392751950107,62.498276878\r\n5,1586000,5135.930973,3.2382919123581337,286.3452683982684,16.727813065303046,17.93420328340841,58.418332382\r\n5,1690000,5471.856418,3.2377848627218935,344.65729032258065,18.89774084933746,15.874913429692722,54.830526961\r\n5,1794000,5814.629608,3.241153627647715,436.2615980392157,22.51081243961219,13.326929039313175,51.599344386\r\n5,1872000,6066.120716,3.240449100427351,476.9507794871795,23.589311476514496,12.717624263797601,49.458586695\r\n"
  },
  {
    "path": "results/exynos7880/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 3431.107271671295, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [760.695, 756.794, 768.497, 764.596, 748.992, 768.497, 764.596, 772.398, 819.21, 772.398, 811.408, 791.903, 791.903, 807.507, 780.2, 788.002, 815.309, 788.002, 784.101, 760.695, 780.2, 756.794, 788.002, 764.596, 768.497, 776.299, 772.398, 788.002, 748.992, 788.002, 764.596, 768.497, 803.606, 772.398, 827.012, 795.804, 760.695, 788.002, 741.19, 764.596, 756.794, 780.2, 725.586, 784.101, 729.487, 760.695, 733.388, 768.497, 811.408, 788.002, 772.398, 768.497, 799.705, 803.606, 788.002, 776.299, 670.972, 748.992, 799.705, 760.695, 745.091, 768.497, 807.507, 795.804, 834.814, 799.705, 772.398, 733.388, 772.398, 795.804, 760.695, 795.804, 764.596, 1095.9, 748.8, 760.5, 760.5, 799.5, 772.2, 733.2, 733.2, 768.3, 772.2, 783.9, 764.4, 799.5, 791.7, 807.3, 768.3, 783.9, 780.0, 791.7, 760.5, 815.1, 791.7, 807.3, 760.5, 760.5, 803.4, 799.5, 764.4, 795.6, 764.4, 752.7, 772.2, 768.3, 838.5, 776.1, 772.2, 752.7, 752.7, 764.4, 768.3, 791.7, 764.4, 807.3, 760.5, 819.0, 776.1, 815.1, 780.0, 803.4, 791.7, 776.1, 776.1, 772.2, 791.7, 791.7, 764.4, 760.5, 791.7, 842.4, 772.2, 772.2, 822.9, 756.6, 815.1, 811.2, 772.2, 795.6, 776.1, 795.6, 780.0, 780.0, 826.8, 748.8, 772.2, 741.0, 780.0, 787.8, 783.9, 780.0, 772.2, 776.1, 795.6, 780.0, 822.9, 744.9, 776.1, 764.4, 803.4, 725.4, 854.1, 756.6, 764.4, 776.1, 717.6, 772.2, 729.3, 768.3, 799.5, 772.2, 783.9, 772.2, 733.2, 772.2, 819.0, 787.8, 760.5, 780.0, 780.0, 768.3, 756.6, 776.1, 776.1, 780.0, 799.5, 807.3, 795.6, 768.3, 756.6, 803.4, 771.804, 978.398, 771.804, 729.487, 729.487, 741.19, 667.071, 725.586, 760.695, 741.19, 737.289, 737.289, 706.986, 656.208, 667.926, 652.302, 617.148, 648.396, 667.926, 644.49, 589.806, 652.302, 613.242, 628.866, 656.208, 567.095, 598.383, 590.561, 578.828, 551.451, 582.739, 594.472, 578.828, 582.739, 590.561, 657.048, 571.006, 543.49, 590.41, 512.865, 552.015, 544.185, 544.185, 579.42, 552.015, 532.44, 532.44, 508.95, 552.015, 516.78, 548.1, 552.015, 548.1, 559.845, 548.1, 477.996, 532.848, 505.422, 450.57, 509.34, 450.57, 505.422, 536.766, 513.258, 509.34, 509.34, 497.586, 509.34, 528.93, 505.422, 481.914, 493.668, 536.766, 509.34, 521.094, 501.504, 462.324, 505.422, 544.602, 474.441, 454.836, 482.283, 462.678, 470.52, 470.52, 470.52, 419.547, 482.283, 450.915, 474.441, 439.152, 478.362, 435.231, 466.599, 450.915, 470.52, 494.046, 486.204, 505.809, 537.177, 537.177, 443.073, 478.362, 482.529, 439.376, 431.53, 443.299, 498.221, 447.222, 384.454, 455.068, 506.067, 533.392, 466.718, 454.952, 458.874, 462.796, 454.952, 451.03, 494.172, 482.406, 451.03, 396.122, 451.03, 419.654, 454.952, 423.576, 447.108, 431.64, 423.792, 427.716, 423.792, 431.64, 435.564, 431.64, 423.792, 451.26, 404.172, 384.552, 431.64, 431.64, 431.64, 466.956, 423.792, 427.716, 455.184, 423.792, 400.248, 415.944, 427.716, 415.944, 419.868, 427.716, 427.716, 419.868, 451.26, 419.868, 419.868, 423.792, 372.78, 415.944, 443.412, 415.944, 412.02, 427.716, 443.412, 423.792, 412.02, 427.716, 408.2, 361.1, 416.05, 396.425, 408.2, 404.275, 412.125, 388.575, 376.8, 427.825, 396.425, 396.425, 412.125, 400.35, 400.35, 423.9, 388.575, 427.825, 380.725, 388.773, 435.897, 369.138, 420.189, 392.7, 337.722, 380.919, 365.211, 380.919, 400.554, 357.357, 376.992, 369.138, 392.7, 376.992, 365.211, 376.992, 329.868, 392.7, 431.97, 384.846, 369.138, 380.919, 369.138, 373.065, 400.554, 396.627, 376.992, 373.065, 373.065, 384.846, 392.7, 376.992, 404.481, 361.284, 365.211, 384.846, 361.284, 365.211, 365.211, 373.065, 384.846, 345.576, 384.846, 380.919, 384.846, 400.554, 376.992, 384.846, 380.919, 337.722, 384.846, 345.576, 377.088, 377.088, 388.872, 365.304, 365.304, 353.52, 388.872, 369.232, 365.304, 377.088, 353.52, 357.448, 298.528, 373.16, 341.736, 369.232, 369.232, 369.232, 369.232, 381.016, 373.16, 353.52, 369.232, 369.232, 349.592, 377.088, 396.728, 361.376, 381.016, 369.232, 400.656, 392.8, 365.304, 341.736, 353.52, 361.376, 377.088, 373.16, 365.304, 412.44, 365.304, 345.664, 365.304, 326.024, 361.376, 381.016, 361.376, 365.304, 345.664, 333.88, 369.326, 353.61, 381.113, 353.61, 369.326, 337.894, 306.462, 377.184, 341.823, 345.752, 333.965, 353.61, 302.533, 357.539, 381.113, 349.681, 388.971, 353.61, 314.32, 361.468, 333.965, 345.752, 333.965, 365.397, 373.255, 361.468, 326.107, 353.61, 369.326, 357.539, 400.758, 361.468, 385.042, 278.959, 408.616, 361.468, 365.397, 349.681, 353.61, 341.823, 373.255, 365.397, 337.894, 337.894, 408.616, 388.971, 361.468, 392.9, 290.746, 314.32, 357.539, 369.326, 349.681, 365.397, 381.113, 345.752, 369.326, 334.05, 302.61, 341.91, 361.56, 341.91, 282.96, 326.19, 318.33, 337.98, 322.26, 326.19, 341.91, 353.7, 349.77, 334.05, 322.26, 345.84, 337.98, 349.77, 353.7, 341.91, 369.42, 334.05, 330.12, 330.12, 341.91, 345.84, 349.77, 330.12, 322.26, 263.31, 322.26, 353.7, 341.91, 345.84, 361.56, 330.12, 326.19, 381.21, 341.91, 326.19, 357.63, 341.91, 286.89, 302.61, 353.7, 334.05, 337.98, 326.19, 337.98, 349.77, 326.19, 353.7, 334.05, 334.05, 341.91, 357.63, 357.63, 337.98, 298.68, 330.12, 298.68, 337.98, 341.91, 357.63, 337.98, 365.49, 110.04, 353.7, 337.98, 310.47, 337.98, 353.7, 357.63, 326.19, 341.91, 341.91, 334.05, 334.05, 334.05, 369.42, 330.12, 330.12, 330.12, 345.84, 396.93, 330.12, 322.26, 337.98, 334.05, 330.12, 341.91, 369.42, 337.98, 334.05, 412.65, 330.12, 345.84, 314.4, 337.98, 334.05, 369.42, 349.77, 357.63, 318.33, 341.91, 357.63, 357.63, 345.84, 341.91, 341.91, 353.7, 334.05, 318.33, 231.87, 404.79, 341.91, 357.63, 334.05, 345.84, 334.05, 361.56, 353.7, 349.77, 326.19, 353.7, 345.84, 341.91, 283.032, 361.652, 353.79, 338.066, 341.997, 318.411, 330.204, 302.687, 330.204, 341.997, 341.997, 326.273, 318.411, 330.204, 349.859, 334.135, 330.204, 310.549, 330.204, 314.48, 338.066, 310.549, 318.411, 338.066, 334.135, 330.204, 330.204, 338.066, 341.997, 310.549, 330.204, 349.859, 326.273, 322.342, 326.273, 373.445, 330.204, 357.721, 330.204, 357.721, 322.342, 326.273, 322.342, 334.135, 322.342, 349.859, 330.204, 330.204, 314.48, 330.204, 310.549, 341.997, 314.48, 341.997, 318.411, 330.204, 330.204, 326.273, 330.204, 377.376, 314.48, 330.204, 338.066, 338.066, 326.273, 334.135, 322.342, 326.273, 377.376, 322.342, 341.997, 334.135, 314.48, 338.066, 330.204, 334.135, 341.997, 326.273, 330.204, 318.411, 361.652, 334.135, 341.997, 176.895, 322.342, 369.514, 341.997, 334.135, 353.79, 341.997, 322.342, 330.204, 357.721, 330.204, 326.273, 322.342, 330.204, 341.997, 279.101, 334.135, 334.135, 334.135, 345.928, 330.204, 334.135, 322.342, 349.859, 326.273, 357.721, 334.135, 322.342, 302.687, 314.48, 349.859, 341.997, 290.894, 341.997, 334.135, 330.204, 318.411, 322.342, 334.135, 334.135, 326.273, 326.273, 330.204, 341.997, 341.997, 318.411, 125.792, 283.032, 326.273, 338.066, 330.204, 306.618, 330.204, 334.135, 322.342, 338.066, 345.928, 334.135, 326.273, 330.204, 326.273, 326.273, 302.687, 315.36, 287.766, 295.65, 291.708, 315.36, 299.592, 299.592, 220.752, 319.302, 295.65, 331.128, 315.36, 303.534, 303.534, 295.65, 287.766, 295.65, 295.65, 295.65, 307.476, 331.128, 311.418, 283.824, 232.578, 315.36, 303.534, 291.708, 299.592, 307.476, 315.36, 299.592, 295.65, 275.94, 295.65, 287.766, 323.244, 303.534, 295.65, 216.81, 275.94, 303.534, 346.896, 299.592, 295.65, 307.476, 287.766, 315.36, 303.534, 327.186, 287.766, 307.476, 287.766, 303.534, 346.896, 181.332, 331.128, 291.708, 319.302, 315.36, 303.534, 319.302, 291.708, 307.476, 303.534, 319.302, 299.592, 307.476, 299.592, 307.476, 283.824, 90.666, 342.954, 295.65, 299.592, 303.534, 299.592, 287.766, 287.766, 291.708, 256.23, 311.418, 307.476, 299.592, 303.534, 331.128, 157.68, 252.288, 323.244, 339.012, 299.592, 291.708, 299.592, 287.766, 279.882, 303.534, 335.07, 307.476, 228.636, 283.824, 291.708, 283.824, 208.926, 291.708, 303.534, 291.708, 291.708, 299.592, 275.94, 295.65, 287.766, 299.592, 268.056, 307.476, 295.65, 295.65, 295.65, 153.738, 291.708, 303.534, 315.36, 287.766, 295.65, 287.766, 299.592, 311.418, 303.534, 315.36, 295.65, 291.708, 295.65, 307.476, 295.65, 271.998, 299.592, 287.766, 311.418, 303.534, 299.592, 307.476, 287.766, 291.708, 295.65, 358.722, 295.65, 303.534, 315.36, 307.476, 291.708, 291.708, 307.476, 295.65, 335.07, 311.418, 315.36, 295.65, 291.708, 295.65, 303.534, 311.418, 295.65, 303.534, 339.012, 315.36, 220.752, 331.128, 303.534, 342.954, 295.65, 299.592, 275.94, 299.592, 315.36, 307.476, 323.244, 358.722, 307.476, 315.36, 295.65, 271.998, 256.23, 303.534, 303.534, 291.708, 303.534, 303.534, 295.65, 291.708, 323.244, 291.708, 102.492, 295.65, 291.708, 311.418, 303.534, 3.942, 307.476, 307.476, 319.302, 295.65, 303.534, 252.288, 283.824, 287.766, 303.534, 315.36, 287.839, 240.523, 319.383, 303.611, 311.497, 43.373, 319.383, 303.611, 307.554, 295.725, 315.44, 303.611, 303.611, 307.554, 299.668, 311.497, 276.01, 299.668, 295.725, 323.326, 323.326, 256.295, 307.554, 307.554, 295.725, 303.611, 299.668, 315.44, 295.725, 323.326, 327.269, 295.725, 295.725, 311.497, 303.611, 287.839, 307.554, 287.839, 276.01, 295.725, 299.668, 307.554, 303.611, 307.554, 327.269, 295.725, 299.668, 291.782, 303.611, 299.668, 303.611, 283.896, 232.637, 311.497, 319.383, 335.155, 299.668, 291.782, 319.383, 299.668, 268.124, 303.611, 283.896, 299.668, 311.497, 307.554, 303.611, 311.497, 303.611, 295.725, 248.409, 287.839, 299.668, 303.611, 303.611, 307.554, 299.668, 307.554, 287.839, 315.44, 279.953, 303.611, 295.725, 276.01, 323.326, 283.896, 272.067, 303.611, 311.497, 307.554, 291.782, 299.668, 303.611, 331.212, 303.611, 295.725, 315.44, 299.668, 307.554, 244.466, 299.668, 299.668, 331.212, 307.554, 303.611, 23.658, 291.782, 283.896, 299.668, 295.725, 303.611, 339.098, 283.896, 319.383, 283.896, 307.554, 303.611, 291.782, 299.668, 366.606, 279.882, 287.766, 287.766, 295.65, 299.592, 291.708, 299.592, 323.244, 295.65, 299.592, 35.478, 299.592, 307.476, 283.824, 299.592, 295.65, 173.448, 291.708, 311.418, 291.708, 224.694, 295.65, 295.65, 287.766, 299.592, 291.708, 287.766, 303.534, 303.534, 319.302, 299.592, 303.534, 295.65, 287.766, 299.592, 295.65, 291.708, 311.418, 283.824, 307.476], \"power_mean\": 424.94757167090756, \"energy_millijoules\": 2124.737858354538, \"energy_joules\": 2.1247378583545378}, \"cpus\": {\"1\": {\"freqs\": {\"449000\": {\"active\": {\"elapsed_sec\": 206.855986275, \"elapsed_ns\": 206855986275, \"power_samples\": [27.670999999999992, 27.670999999999992, 39.497000000000014, 11.90300000000002, 27.670999999999992, 43.43900000000002, 19.787000000000035, 23.728999999999985, 51.32299999999998, 35.55500000000001, 78.91700000000003, 23.728999999999985, 78.91700000000003, 31.613, 39.497000000000014, 35.55500000000001, 31.613, 31.613, 39.497000000000014, 15.845000000000027, 27.670999999999992, 55.264999999999986, 35.55500000000001, 43.43900000000002, 27.670999999999992, 63.149, -62.995000000000005, 35.55500000000001, 23.728999999999985, -7.807000000000016, 27.670999999999992, 27.670999999999992, 55.264999999999986, 31.613, 43.43900000000002, 39.497000000000014, 31.613, 39.497000000000014, 7.961000000000013, 15.845000000000027, 43.351, 47.29200000000003, -15.76400000000001, 19.704999999999984, 23.646000000000015, 15.76400000000001, 31.52800000000002, 35.468999999999994, 43.351, 19.704999999999984, 51.233000000000004, 15.76400000000001, -11.822999999999979, 15.76400000000001, 15.76400000000001, 31.52800000000002, 27.58699999999999, 51.233000000000004, 19.704999999999984, 35.468999999999994, 27.58699999999999, 43.351, 19.704999999999984, 27.58699999999999, 19.704999999999984, 3.941000000000031, 15.76400000000001, 51.233000000000004, 15.76400000000001, 19.704999999999984, 51.233000000000004, 19.704999999999984, 47.29200000000003, 27.58699999999999, -19.704999999999984, 23.646000000000015, 23.646000000000015, 31.52800000000002, 39.410000000000025, 27.58699999999999, 35.468999999999994, 3.941000000000031, 27.58699999999999, 47.29200000000003, 23.646000000000015, 35.468999999999994, 39.410000000000025, 35.468999999999994, 39.410000000000025, 31.52800000000002, -3.940999999999974, 35.468999999999994, 35.468999999999994, 31.52800000000002, 27.58699999999999, 35.468999999999994, 23.646000000000015, 39.410000000000025, 27.58699999999999, 19.704999999999984, 23.646000000000015, 47.29200000000003, 51.233000000000004, 31.52800000000002, -11.822999999999979, -39.40999999999997, 55.17399999999998, 39.410000000000025, 19.704999999999984, 3.941000000000031, 11.822999999999979, 35.468999999999994, 55.17399999999998, 27.58699999999999, 11.822999999999979, 31.52800000000002, 27.58699999999999, 39.410000000000025, 23.646000000000015, 11.822999999999979, -141.876, 27.58699999999999, 27.58699999999999, 39.410000000000025, 31.52800000000002, 35.468999999999994, 39.410000000000025, 19.704999999999984, 7.882000000000005, 19.704999999999984, 3.941000000000031, 27.58699999999999, 39.410000000000025, 27.58699999999999, 31.52800000000002, 78.82, -177.345, 27.58699999999999, 23.646000000000015, 15.76400000000001, 27.58699999999999, 11.822999999999979, -7.882000000000005, 35.468999999999994, 51.233000000000004, 15.76400000000001, 11.822999999999979, 27.58699999999999, 39.410000000000025, 66.99700000000001, 43.351, 47.29200000000003, 27.58699999999999, 23.646000000000015, 43.351, 27.58699999999999, 27.58699999999999, 11.822999999999979, 43.351, 11.822999999999979, 19.704999999999984, 35.468999999999994, 19.704999999999984, 27.58699999999999, 23.646000000000015, 27.58699999999999, 23.646000000000015, -55.17400000000001, -7.882000000000005, 35.468999999999994, 51.233000000000004, 19.704999999999984, 19.704999999999984, 27.58699999999999, 31.52800000000002, 11.822999999999979, 23.646000000000015, 39.410000000000025, 35.468999999999994, 19.704999999999984, 31.52800000000002, 27.58699999999999, 66.99700000000001, 35.468999999999994, 39.410000000000025, 27.58699999999999, 23.646000000000015, 23.646000000000015, 31.52800000000002, 39.410000000000025, 23.646000000000015, 31.52800000000002, 51.233000000000004, 27.58699999999999, 27.58699999999999, 66.99700000000001, 31.52800000000002, 43.351, -7.882000000000005, 59.11500000000001, 35.468999999999994, 39.410000000000025, 19.704999999999984, 27.58699999999999, 66.99700000000001, 23.646000000000015, 23.646000000000015, 31.52800000000002, -7.882000000000005, 39.410000000000025, 0.0, 27.58699999999999, 31.52800000000002, 27.58699999999999, -3.940999999999974, 55.17399999999998, 27.58699999999999, -19.704999999999984, 27.58699999999999, 27.58699999999999, 7.882000000000005, 31.52800000000002, 31.52800000000002, 23.646000000000015, 31.52800000000002, 27.58699999999999, 31.52800000000002, 39.410000000000025, 35.468999999999994, 47.29200000000003, 15.76400000000001, 23.646000000000015, 31.52800000000002, 59.11500000000001, 43.351, 43.351, 39.410000000000025, 51.233000000000004, 27.58699999999999, 7.882000000000005, 27.58699999999999, 31.52800000000002, 47.29200000000003, 23.646000000000015, 51.233000000000004, -295.575, 11.822999999999979, 19.704999999999984, 19.704999999999984, 35.468999999999994, 15.76400000000001, 47.29200000000003, 19.704999999999984, 43.351, 11.822999999999979, 39.410000000000025, 27.58699999999999, 15.76400000000001, 43.351, 23.646000000000015, 66.99700000000001, 27.58699999999999, 7.882000000000005, 39.410000000000025, 39.410000000000025, 27.58699999999999, 0.0, 43.351, 39.410000000000025, 19.704999999999984, 11.822999999999979, 43.351, 23.646000000000015, 11.822999999999979, 7.882000000000005, 27.58699999999999, -3.940999999999974, 43.351, 19.704999999999984, 35.468999999999994, 31.52800000000002, 27.58699999999999, 15.76400000000001, 19.704999999999984, 47.29200000000003, 35.468999999999994, 27.58699999999999, 35.468999999999994, 27.58699999999999, 66.99700000000001, 23.646000000000015, -3.940999999999974, -11.822999999999979, 11.822999999999979, 27.58699999999999, 19.704999999999984, 31.52800000000002, 43.351, 74.87900000000002, 19.704999999999984, 43.351, 27.58699999999999, 11.822999999999979, 27.58699999999999, 19.704999999999984, 7.882000000000005, 31.52800000000002, 7.882000000000005, -11.822999999999979, 23.646000000000015, 19.704999999999984, 106.40699999999998, 23.646000000000015, 31.52800000000002, 11.822999999999979, 7.882000000000005, 39.410000000000025, 15.76400000000001, 43.351, 23.646000000000015, 19.704999999999984, 74.87900000000002, 0.0, 35.468999999999994, 66.99700000000001, 31.52800000000002, -7.882000000000005, 43.351, 39.410000000000025, 39.410000000000025, 15.76400000000001, 59.11500000000001, 27.58699999999999, 31.52800000000002, 23.646000000000015, 39.410000000000025, 51.233000000000004, 11.822999999999979, 3.941000000000031, -295.575, 27.58699999999999, 23.646000000000015, 7.882000000000005, 23.646000000000015, 31.52800000000002, 55.17399999999998, 19.704999999999984, 27.58699999999999, 23.646000000000015, 31.52800000000002, 23.646000000000015, 27.58699999999999, 39.410000000000025, 23.646000000000015, 19.704999999999984, 7.882000000000005, 43.351, 15.76400000000001, 55.17399999999998, 31.52800000000002, 31.52800000000002, 59.11500000000001, 27.58699999999999, 51.233000000000004, 27.58699999999999, 19.704999999999984, 35.468999999999994, 51.233000000000004, 27.58699999999999, 11.822999999999979, -43.351, 19.704999999999984, 35.468999999999994, 15.76400000000001, 27.58699999999999, 19.704999999999984, 39.410000000000025, 19.704999999999984, 19.704999999999984, 15.76400000000001, 27.58699999999999, 23.646000000000015, 43.351, 43.351, 35.468999999999994, 43.351, 31.52800000000002, 39.410000000000025, 19.704999999999984, 47.29200000000003, 27.58699999999999, 39.410000000000025, 51.233000000000004, 27.58699999999999, -19.704999999999984, 15.76400000000001, 35.468999999999994, 23.646000000000015, 31.52800000000002, 15.76400000000001, 27.58699999999999, 94.584, -23.646000000000015, 11.822999999999979, 27.58699999999999, 3.941000000000031, 11.822999999999979, 11.822999999999979, 15.76400000000001, 35.468999999999994, 27.58699999999999, -15.76400000000001, 19.704999999999984, 15.76400000000001, 47.29200000000003, 39.410000000000025, 31.52800000000002, -279.811, 15.76400000000001, 39.410000000000025, 11.822999999999979, 23.646000000000015, 27.58699999999999, 35.468999999999994, 27.58699999999999, 27.58699999999999, 31.52800000000002, 27.58699999999999, 35.468999999999994, 35.468999999999994, 47.29200000000003, 39.410000000000025, 66.99700000000001, -74.87899999999999, -15.76400000000001, 31.52800000000002, 11.822999999999979, 39.410000000000025, -3.940999999999974, 27.58699999999999, 27.58699999999999, 35.468999999999994, 31.52800000000002, 11.822999999999979, 31.52800000000002, 39.410000000000025, 19.704999999999984, 23.646000000000015, 51.233000000000004, 19.704999999999984, 27.58699999999999, 63.05599999999998, 27.58699999999999, 31.52800000000002, 43.351, 19.704999999999984, 27.58699999999999, 15.76400000000001, -153.69899999999998, 19.704999999999984, 19.704999999999984, -3.940999999999974, 27.58699999999999, 35.468999999999994, -47.29199999999997, 3.941000000000031, 27.58699999999999, 66.99700000000001, 27.58699999999999, 43.351, 35.468999999999994, 19.704999999999984, 70.93799999999999, 11.822999999999979, 39.410000000000025, 19.704999999999984, 47.29200000000003, 31.52800000000002, 31.52800000000002, 3.941000000000031, 19.704999999999984, 43.351, 35.468999999999994, 90.64300000000003, 23.646000000000015, 35.468999999999994, 23.646000000000015, 23.646000000000015, 23.646000000000015, 23.646000000000015, 27.58699999999999, 39.410000000000025, 27.58699999999999, 27.58699999999999, 3.941000000000031, 3.941000000000031, -23.646000000000015, 31.52800000000002, 27.58699999999999, 35.468999999999994, 27.58699999999999, 31.52800000000002, 11.822999999999979, 23.646000000000015, 23.646000000000015, 27.58699999999999, 31.52800000000002, 11.822999999999979, 35.468999999999994, 39.410000000000025, 39.410000000000025, -63.05599999999998, 15.76400000000001, 39.410000000000025, 23.646000000000015, 15.76400000000001, 35.468999999999994, 35.468999999999994, 11.822999999999979, 39.410000000000025, 23.646000000000015, 59.11500000000001, 27.58699999999999, 19.704999999999984, 23.646000000000015, 11.822999999999979, 27.58699999999999, -43.351, 15.76400000000001, 27.58699999999999, -3.940999999999974, 27.58699999999999, 27.58699999999999, 27.58699999999999, -216.755, 23.646000000000015, 11.822999999999979, 19.704999999999984, 23.646000000000015, 39.410000000000025, 31.52800000000002, 35.468999999999994, 11.822999999999979, 43.351, 27.58699999999999, 55.17399999999998, 31.52800000000002, 27.58699999999999, 23.646000000000015, 35.468999999999994, 39.410000000000025, 15.76400000000001, 47.29200000000003, 11.822999999999979, 15.76400000000001, -55.17400000000001, 27.58699999999999, 39.410000000000025, -27.58699999999999, 35.468999999999994, 27.58699999999999, 11.822999999999979, 27.58699999999999, 11.822999999999979, 63.05599999999998, 39.410000000000025, 51.233000000000004, 19.704999999999984, 43.351, 11.822999999999979, 31.52800000000002, 51.233000000000004, 31.52800000000002, 63.05599999999998, 27.58699999999999, 70.93799999999999, 59.11500000000001, 23.646000000000015, 3.941000000000031, 27.58699999999999, 27.58699999999999, 43.351, 47.29200000000003, 11.822999999999979, 27.58699999999999, 35.468999999999994, -15.76400000000001, 35.468999999999994, 47.29200000000003, 19.704999999999984, 35.468999999999994, 27.58699999999999, 35.468999999999994, 27.58699999999999, 7.882000000000005, 31.52800000000002, 43.351, 7.882000000000005, 11.822999999999979, 11.822999999999979, 27.58699999999999, 27.58699999999999, 0.0, 15.76400000000001, 27.58699999999999, -141.876, -11.822999999999979, 74.87900000000002, 15.76400000000001, 31.52800000000002, -19.704999999999984, 55.17399999999998, 15.76400000000001, -19.704999999999984, 19.704999999999984, 11.822999999999979, 23.646000000000015, 27.58699999999999, -7.882000000000005, 63.05599999999998, -15.76400000000001, 11.822999999999979, 31.52800000000002, 11.822999999999979, 23.646000000000015, 19.704999999999984, 7.882000000000005, 7.882000000000005, 23.646000000000015, 31.52800000000002, 11.822999999999979, 39.410000000000025, 51.233000000000004, 59.11500000000001, 23.646000000000015, 51.233000000000004, 15.76400000000001, 19.704999999999984, 15.76400000000001, 19.704999999999984, 23.646000000000015, 35.468999999999994, 11.822999999999979, 35.468999999999994, 27.58699999999999, 23.646000000000015, 47.29200000000003, 27.58699999999999, 27.58699999999999, 27.58699999999999, 23.646000000000015, 51.233000000000004, 27.58699999999999, 27.58699999999999, 23.646000000000015, 43.351, 31.52800000000002, 3.941000000000031, 23.646000000000015, 15.76400000000001, 43.351, 23.646000000000015, 19.704999999999984, 11.822999999999979, 86.702, 35.468999999999994, 15.76400000000001, -137.935, -3.940999999999974, 39.410000000000025, 23.646000000000015, 19.704999999999984, 23.646000000000015, 51.233000000000004, 39.410000000000025, 43.351, 31.52800000000002, 27.58699999999999, 11.822999999999979, 23.646000000000015, 23.646000000000015, 35.468999999999994, 7.882000000000005, -55.17400000000001, 70.93799999999999, 35.468999999999994, 27.58699999999999, 27.58699999999999, -11.822999999999979, 43.351, 19.704999999999984, 43.351, 27.58699999999999, 11.822999999999979, 19.704999999999984, 35.468999999999994, 59.11500000000001, 19.704999999999984, 7.882000000000005, 11.822999999999979, 43.351, 23.646000000000015, 27.58699999999999, 35.468999999999994, 7.882000000000005, 7.882000000000005, 35.468999999999994, 35.468999999999994, 39.410000000000025, 11.822999999999979, 35.468999999999994, 39.410000000000025, 35.468999999999994, 59.11500000000001, -39.40999999999997, 11.822999999999979, 11.822999999999979, 59.11500000000001, 27.58699999999999, 39.410000000000025, 7.882000000000005, 19.704999999999984, 31.52800000000002, 19.704999999999984, 47.29200000000003, 39.410000000000025, 27.58699999999999, 66.99700000000001, 27.58699999999999, 27.58699999999999, 23.646000000000015, -11.822999999999979, 39.410000000000025, 27.58699999999999, 15.76400000000001, 35.468999999999994, 39.410000000000025, 11.822999999999979, 11.822999999999979, 35.468999999999994, -3.940999999999974, 31.52800000000002, 31.52800000000002, 23.646000000000015, 39.410000000000025, 47.29200000000003, 63.05599999999998, 27.58699999999999, 63.05599999999998, 31.52800000000002, 27.58699999999999, 19.704999999999984, 15.76400000000001, 51.233000000000004, 19.704999999999984, 74.87900000000002, 11.822999999999979, 23.646000000000015, -7.882000000000005, 31.52800000000002, 11.822999999999979, 39.410000000000025, 35.468999999999994, 27.58699999999999, 27.58699999999999, 31.52800000000002, 11.822999999999979, 31.52800000000002, 70.93799999999999, 27.58699999999999, 35.468999999999994, 27.58699999999999, 31.52800000000002, 27.58699999999999, 66.99700000000001, 31.52800000000002, 35.468999999999994, -260.106, -3.940999999999974, 27.58699999999999, 35.468999999999994, 31.52800000000002, 23.646000000000015, 43.351, 19.704999999999984, 27.58699999999999, 19.704999999999984, 15.76400000000001, 63.05599999999998, 39.410000000000025, 39.410000000000025, 47.29200000000003, -299.516, 19.704999999999984, 27.58699999999999, 59.11500000000001, 31.52800000000002, 27.58699999999999, 19.704999999999984, 15.76400000000001, 23.646000000000015, 39.410000000000025, 43.351, 23.646000000000015, 35.468999999999994, 39.410000000000025, 27.58699999999999, -7.882000000000005, -86.702, 70.93799999999999, 23.646000000000015, 35.468999999999994, 27.58699999999999], \"power_mean\": 24.028289052890532, \"energy_millijoules\": 4970.395430536457, \"energy_joules\": 4.970395430536457, \"coremark_score\": 1450.410466, \"coremarks_per_mhz\": 3.2303128418708242, \"ulpmark_cm_score\": 60.35737079526908}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [240.462, 291.708, 303.534, 291.708, 299.592, 295.65, 291.708, 315.36, 307.476, 275.94, 283.824, 323.244, 327.186, 303.534, 311.418, 232.578, 271.998, 299.592, 287.766], \"power_mean\": 292.3304210526316, \"energy_millijoules\": 1461.652105263158, \"energy_joules\": 1.4616521052631581}}, \"546000\": {\"active\": {\"elapsed_sec\": 169.852087186, \"elapsed_ns\": 169852087186, \"power_samples\": [51.233000000000004, 43.351, 47.29200000000003, 11.822999999999979, 31.52800000000002, 31.52800000000002, 59.11500000000001, 59.11500000000001, 39.410000000000025, 59.11500000000001, 51.233000000000004, 59.11500000000001, 39.410000000000025, 35.468999999999994, 39.410000000000025, 19.704999999999984, 35.468999999999994, 39.410000000000025, 39.410000000000025, 31.52800000000002, 47.29200000000003, 39.410000000000025, 55.17399999999998, 94.584, 31.52800000000002, 55.17399999999998, 43.351, 51.233000000000004, 35.468999999999994, 27.58699999999999, 47.29200000000003, -27.58699999999999, 47.29200000000003, 35.468999999999994, 47.29200000000003, 63.05599999999998, 35.468999999999994, 31.52800000000002, 39.410000000000025, 27.58699999999999, 51.233000000000004, 82.76100000000002, 39.410000000000025, 19.704999999999984, 43.351, 39.410000000000025, 43.351, 27.58699999999999, 51.233000000000004, 35.468999999999994, 63.05599999999998, 39.410000000000025, 55.17399999999998, 55.17399999999998, 39.410000000000025, 31.52800000000002, 35.468999999999994, 43.351, 31.52800000000002, 43.351, 47.29200000000003, -59.11499999999998, 43.351, 11.822999999999979, 47.29200000000003, 63.05599999999998, 35.468999999999994, 51.233000000000004, 27.58699999999999, 31.52800000000002, 51.233000000000004, 43.351, 19.704999999999984, 31.52800000000002, -7.882000000000005, 31.52800000000002, 35.468999999999994, 19.704999999999984, 39.410000000000025, 55.17399999999998, 39.410000000000025, 51.233000000000004, 51.233000000000004, 19.704999999999984, 55.17399999999998, 39.410000000000025, 47.29200000000003, 35.468999999999994, 15.76400000000001, 35.468999999999994, 27.58699999999999, 39.410000000000025, 35.468999999999994, 27.58699999999999, 27.58699999999999, 3.941000000000031, 66.99700000000001, 55.17399999999998, 31.52800000000002, 35.468999999999994, 47.29200000000003, 59.11500000000001, 23.646000000000015, 35.468999999999994, 51.233000000000004, 55.17399999999998, 39.410000000000025, 47.29200000000003, 31.52800000000002, 23.646000000000015, 35.468999999999994, 35.468999999999994, 43.351, 39.410000000000025, 31.52800000000002, 70.93799999999999, 39.410000000000025, 43.351, 39.410000000000025, 43.351, 31.52800000000002, 78.82, 47.29200000000003, 35.468999999999994, 35.468999999999994, 27.58699999999999, 59.11500000000001, 47.29200000000003, 51.233000000000004, 51.233000000000004, 27.58699999999999, 66.99700000000001, 23.646000000000015, -90.643, 35.468999999999994, 0.0, 43.351, 27.58699999999999, 47.29200000000003, 47.29200000000003, 70.93799999999999, 39.32299999999998, 51.14300000000003, 43.263000000000034, 47.20300000000003, 43.263000000000034, 35.38299999999998, 31.442999999999984, 98.423, 23.562999999999988, 27.502999999999986, 39.32299999999998, -0.07699999999999818, 39.32299999999998, 35.38299999999998, 62.96300000000002, 39.32299999999998, 39.32299999999998, 47.20300000000003, 27.502999999999986, 35.38299999999998, 31.442999999999984, 31.442999999999984, 47.20300000000003, 62.96300000000002, 27.502999999999986, 70.84300000000002, 39.32299999999998, 15.682999999999993, 23.562999999999988, 62.96300000000002, 7.802999999999997, 43.263000000000034, 47.20300000000003, 35.38299999999998, 59.023000000000025, 39.32299999999998, 39.32299999999998, 51.14300000000003, 51.14300000000003, 59.023000000000025, 43.263000000000034, 47.20300000000003, 39.32299999999998, 102.363, 31.442999999999984, 55.08300000000003, 47.20300000000003, 39.32299999999998, 27.502999999999986, 23.562999999999988, 55.08300000000003, 39.32299999999998, 47.20300000000003, 35.38299999999998, 39.32299999999998, -0.07699999999999818, 51.14300000000003, 43.263000000000034, 55.08300000000003, 27.502999999999986, 39.32299999999998, 3.8629999999999995, 19.62299999999999, 27.502999999999986, 39.32299999999998, 43.263000000000034, 11.742999999999995, 51.14300000000003, 74.78300000000002, 39.32299999999998, 66.90300000000002, -106.457, 59.023000000000025, 39.32299999999998, 27.502999999999986, 39.32299999999998, 19.62299999999999, 15.682999999999993, 27.502999999999986, 51.14300000000003, 19.62299999999999, 47.20300000000003, 39.32299999999998, 31.442999999999984, 23.562999999999988, 47.20300000000003, -7.956999999999994, 62.96300000000002, 51.14300000000003, 51.14300000000003, 35.38299999999998, 27.502999999999986, 59.023000000000025, 15.682999999999993, 55.08300000000003, 23.562999999999988, 62.96300000000002, 47.20300000000003, 27.502999999999986, 27.502999999999986, 39.32299999999998, 7.802999999999997, 43.263000000000034, 27.502999999999986, 35.38299999999998, 74.78300000000002, 43.263000000000034, 35.38299999999998, 62.96300000000002, 23.562999999999988, 11.742999999999995, 31.442999999999984, 47.20300000000003, 39.32299999999998, 39.32299999999998, 47.20300000000003, 35.38299999999998, 86.60300000000001, 23.562999999999988, -4.016999999999996, 39.32299999999998, 66.90300000000002, 35.38299999999998, 23.562999999999988, 59.023000000000025, 43.263000000000034, 31.442999999999984, -0.07699999999999818, 39.32299999999998, 39.32299999999998, 51.14300000000003, 86.60300000000001, 66.90300000000002, 47.20300000000003, 51.14300000000003, 27.502999999999986, 3.8629999999999995, 35.38299999999998, 47.20300000000003, 27.502999999999986, 51.14300000000003, 11.742999999999995, 43.263000000000034, 43.263000000000034, 35.38299999999998, 39.32299999999998, 7.802999999999997, 31.442999999999984, 11.742999999999995, 39.32299999999998, 47.20300000000003, 39.32299999999998, 43.263000000000034, 35.38299999999998, 39.32299999999998, 39.32299999999998, 47.20300000000003, 55.08300000000003, 51.14300000000003, 27.502999999999986, 31.442999999999984, 47.20300000000003, 15.682999999999993, 35.38299999999998, 35.38299999999998, -67.05699999999999, 23.562999999999988, 31.442999999999984, 39.32299999999998, 39.32299999999998, 23.562999999999988, 51.14300000000003, 47.20300000000003, 39.32299999999998, 23.562999999999988, 74.78300000000002, 35.38299999999998, 35.38299999999998, 35.38299999999998, 62.96300000000002, 3.8629999999999995, 31.442999999999984, 43.263000000000034, 55.08300000000003, 39.32299999999998, 47.20300000000003, 47.20300000000003, 31.442999999999984, 11.742999999999995, 47.20300000000003, 43.263000000000034, 39.32299999999998, 43.263000000000034, 59.023000000000025, 43.263000000000034, 51.14300000000003, -23.716999999999985, -7.956999999999994, 31.442999999999984, 23.562999999999988, 43.263000000000034, 27.502999999999986, 47.20300000000003, 31.442999999999984, 51.14300000000003, 31.442999999999984, 51.14300000000003, 66.90300000000002, 39.32299999999998, 39.32299999999998, 39.32299999999998, 51.14300000000003, 27.502999999999986, 82.66300000000001, 39.32299999999998, 51.14300000000003, 51.14300000000003, 39.32299999999998, 23.562999999999988, 31.442999999999984, 55.08300000000003, 43.263000000000034, 15.682999999999993, 43.263000000000034, 31.442999999999984, 35.38299999999998, 39.32299999999998, 35.38299999999998, 11.742999999999995, 47.20300000000003, 66.90300000000002, 23.562999999999988, 39.32299999999998, 35.38299999999998, 23.562999999999988, 31.442999999999984, 27.502999999999986, 59.11500000000001, 27.58699999999999, 39.410000000000025, 82.76100000000002, 47.29200000000003, 98.52500000000003, 59.11500000000001, -11.822999999999979, 27.58699999999999, 51.233000000000004, 27.58699999999999, 19.704999999999984, 39.410000000000025, 47.29200000000003, 63.05599999999998, 15.76400000000001, 15.76400000000001, 55.17399999999998, 35.468999999999994, 63.05599999999998, 47.29200000000003, 55.17399999999998, 27.58699999999999, 66.99700000000001, 47.29200000000003, 23.646000000000015, 31.52800000000002, 31.52800000000002, 47.29200000000003, 35.468999999999994, 19.704999999999984, 74.87900000000002, 51.233000000000004, 39.410000000000025, 23.646000000000015, 43.351, 15.76400000000001, 43.351, 43.351, 47.29200000000003, 27.58699999999999, 39.410000000000025, 31.52800000000002, 7.882000000000005, 35.468999999999994, 43.351, 43.351, 59.11500000000001, 47.29200000000003, 35.468999999999994, 11.822999999999979, 43.351, 43.351, 31.52800000000002, 90.64300000000003, 47.29200000000003, 39.410000000000025, 43.351, 23.646000000000015, 63.05599999999998, 51.233000000000004, 39.410000000000025, 51.233000000000004, 35.468999999999994, 27.58699999999999, 51.233000000000004, 19.704999999999984, 39.410000000000025, 27.58699999999999, 23.646000000000015, 70.93799999999999, 47.29200000000003, 31.52800000000002, 47.29200000000003, 39.410000000000025, 55.17399999999998, 55.17399999999998, 47.29200000000003, 39.410000000000025, 39.410000000000025, 7.882000000000005, 27.58699999999999, 39.410000000000025, 51.233000000000004, 51.233000000000004, 63.05599999999998, 35.468999999999994, 63.05599999999998, 35.468999999999994, 43.351, 51.233000000000004, 39.410000000000025, 47.29200000000003, 27.58699999999999, 66.99700000000001, 43.351, 27.58699999999999, 15.76400000000001, 39.410000000000025, 47.29200000000003, 51.233000000000004, 31.52800000000002, 39.410000000000025, 47.29200000000003, 39.410000000000025, 47.29200000000003, 43.351, 27.58699999999999, 47.29200000000003, 39.410000000000025, 47.29200000000003, 35.468999999999994, 35.468999999999994, 39.410000000000025, 43.351, 66.99700000000001, 39.410000000000025, 51.233000000000004, 51.14300000000003, 78.72300000000001, 35.38299999999998, 39.32299999999998, 70.84300000000002, 27.502999999999986, 47.20300000000003, 62.96300000000002, 27.502999999999986, 31.442999999999984, 90.543, 35.38299999999998, 51.14300000000003, 43.263000000000034, 43.263000000000034, 35.38299999999998, -19.776999999999987, 35.38299999999998, 39.32299999999998, 31.442999999999984, 27.502999999999986, 39.32299999999998, 23.562999999999988, 27.502999999999986, 51.14300000000003, 43.263000000000034, 27.502999999999986, 23.562999999999988, 66.90300000000002, 35.38299999999998, 23.562999999999988, 39.32299999999998, 47.20300000000003, 31.442999999999984, 35.38299999999998, 31.442999999999984, 35.38299999999998, 15.682999999999993, 35.38299999999998, 35.38299999999998, 47.20300000000003, 51.14300000000003, 31.442999999999984, 47.20300000000003, 82.66300000000001, 31.442999999999984, 27.502999999999986, 43.263000000000034, -0.07699999999999818, 55.08300000000003, 82.66300000000001, 19.62299999999999, -0.07699999999999818, 43.263000000000034, 23.562999999999988, 27.502999999999986, 31.442999999999984, 27.502999999999986, 35.38299999999998, 78.72300000000001, 51.14300000000003, 51.14300000000003, 43.263000000000034, 70.84300000000002, 43.263000000000034, 19.62299999999999, 27.502999999999986, 39.32299999999998, 31.442999999999984, 51.14300000000003, 27.502999999999986, -15.836999999999989, 31.442999999999984, 55.08300000000003, 35.38299999999998, 51.14300000000003, 39.32299999999998, 35.38299999999998, 43.263000000000034, 59.023000000000025, 39.32299999999998, 31.442999999999984, 19.62299999999999, 39.32299999999998, 23.562999999999988, 47.20300000000003, 43.263000000000034, 35.38299999999998, 47.20300000000003, 27.502999999999986, 39.32299999999998, 47.20300000000003, 27.502999999999986, 82.66300000000001, 66.90300000000002, 47.20300000000003, 27.502999999999986, 35.38299999999998, 31.442999999999984, 35.38299999999998, 55.08300000000003, 47.20300000000003, 55.08300000000003, 47.20300000000003, 47.20300000000003, 43.263000000000034, 59.023000000000025, 15.682999999999993, 39.32299999999998, 39.32299999999998, 55.08300000000003, 43.263000000000034, 23.562999999999988, 51.14300000000003, 31.442999999999984, 35.38299999999998, 43.263000000000034, 27.502999999999986, 31.442999999999984, 59.023000000000025, -0.07699999999999818, 31.442999999999984, 11.742999999999995, 39.32299999999998, 43.263000000000034, 39.32299999999998, 62.96300000000002, 35.38299999999998, 39.32299999999998, 39.32299999999998, 47.20300000000003, 51.14300000000003, 39.32299999999998, 27.502999999999986, 35.38299999999998, 39.32299999999998, -31.59699999999998, 47.20300000000003, 118.12299999999999, 7.802999999999997, 39.32299999999998, 35.38299999999998, 43.263000000000034, 47.20300000000003, -7.956999999999994, 15.682999999999993, 55.08300000000003, 15.682999999999993, -244.357, 35.38299999999998, 35.38299999999998, 31.442999999999984, 47.20300000000003, 102.363, -19.776999999999987, 47.20300000000003, 47.20300000000003, 59.023000000000025, 39.32299999999998, 47.20300000000003, 39.32299999999998, 62.96300000000002, 43.263000000000034, 23.562999999999988, 51.14300000000003, 59.023000000000025, 39.32299999999998, 47.20300000000003, 43.263000000000034, 27.502999999999986, 31.442999999999984, 62.96300000000002], \"power_mean\": 38.690309880239525, \"energy_millijoules\": 6571.629887031801, \"energy_joules\": 6.5716298870318015, \"coremark_score\": 1766.399548, \"coremarks_per_mhz\": 3.2351640073260075, \"ulpmark_cm_score\": 45.650775402310515}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [283.752, 303.457, 295.575, 303.457, 291.634, 311.339, 291.634, 295.575, 295.575, 291.634, 327.103, 291.634, 311.339, 66.997, 315.28, 295.575, 327.103, 299.516, 295.575], \"power_mean\": 289.1449473684211, \"energy_millijoules\": 1445.7247368421054, \"energy_joules\": 1.4457247368421053}}, \"676000\": {\"active\": {\"elapsed_sec\": 137.149554132, \"elapsed_ns\": 137149554132, \"power_samples\": [62.96300000000002, 43.263000000000034, 47.20300000000003, 51.14300000000003, 55.08300000000003, 62.96300000000002, 47.20300000000003, 39.32299999999998, 106.303, 51.14300000000003, 66.90300000000002, 55.08300000000003, 39.32299999999998, 59.023000000000025, 70.84300000000002, 47.20300000000003, 43.263000000000034, 47.20300000000003, 66.90300000000002, 15.682999999999993, 55.08300000000003, 43.263000000000034, 31.442999999999984, 59.023000000000025, 78.72300000000001, 35.38299999999998, 82.66300000000001, 47.20300000000003, 62.96300000000002, 43.263000000000034, 47.20300000000003, 35.38299999999998, 23.562999999999988, 78.72300000000001, 35.38299999999998, 59.023000000000025, 55.08300000000003, 51.14300000000003, 31.442999999999984, 35.38299999999998, 35.38299999999998, 43.263000000000034, 62.96300000000002, 47.20300000000003, 70.84300000000002, 55.08300000000003, 19.62299999999999, 39.32299999999998, 59.023000000000025, 59.023000000000025, 66.90300000000002, 66.90300000000002, 70.84300000000002, 55.08300000000003, 55.08300000000003, 62.96300000000002, 47.20300000000003, 106.303, 47.20300000000003, 43.263000000000034, 47.20300000000003, 74.78300000000002, 39.32299999999998, 55.08300000000003, 118.12299999999999, 66.90300000000002, 66.90300000000002, 102.363, 59.023000000000025, 47.20300000000003, 51.14300000000003, 94.483, 51.14300000000003, 82.66300000000001, 59.023000000000025, 51.14300000000003, 55.08300000000003, 86.60300000000001, 47.20300000000003, 39.32299999999998, 47.20300000000003, 23.562999999999988, 3.8629999999999995, 39.32299999999998, 47.20300000000003, 43.263000000000034, 47.20300000000003, 82.66300000000001, 47.20300000000003, 62.96300000000002, 78.72300000000001, 59.023000000000025, 51.14300000000003, 66.90300000000002, 47.20300000000003, 70.84300000000002, 47.20300000000003, 43.263000000000034, 59.023000000000025, 70.84300000000002, 59.023000000000025, 51.14300000000003, 86.60300000000001, 62.96300000000002, 90.543, 47.20300000000003, 66.90300000000002, 51.14300000000003, 70.84300000000002, 59.023000000000025, 62.96300000000002, 70.84300000000002, 55.08300000000003, 66.90300000000002, 62.96300000000002, 78.72300000000001, 39.32299999999998, 59.023000000000025, 66.90300000000002, 47.20300000000003, 43.263000000000034, 55.08300000000003, 31.442999999999984, 55.08300000000003, 66.90300000000002, 59.023000000000025, 62.96300000000002, 78.72300000000001, 114.18299999999999, 55.08300000000003, 66.90300000000002, 70.84300000000002, 43.263000000000034, 55.08300000000003, 66.90300000000002, 43.263000000000034, 51.14300000000003, 47.20300000000003, 62.96300000000002, 59.023000000000025, 43.263000000000034, 122.06299999999999, 39.32299999999998, 59.023000000000025, 31.442999999999984, 47.20300000000003, 3.8629999999999995, 47.20300000000003, 59.023000000000025, 90.543, 55.08300000000003, 54.99200000000002, 51.053, 102.25999999999999, 51.053, 78.62600000000003, 54.99200000000002, 58.93099999999998, 66.80900000000003, 47.11400000000003, 51.053, 51.053, 62.870000000000005, 54.99200000000002, 43.17500000000001, 15.602000000000032, 90.44299999999998, 74.68700000000001, 39.23599999999999, 43.17500000000001, 51.053, 35.297000000000025, 54.99200000000002, 51.053, 54.99200000000002, 58.93099999999998, 62.870000000000005, 27.418999999999983, 62.870000000000005, 82.565, 39.23599999999999, 43.17500000000001, 51.053, 82.565, 54.99200000000002, 58.93099999999998, 78.62600000000003, 54.99200000000002, 43.17500000000001, 54.99200000000002, 62.870000000000005, 90.44299999999998, 43.17500000000001, 58.93099999999998, 58.93099999999998, 39.23599999999999, 43.17500000000001, 62.870000000000005, 31.358000000000004, 43.17500000000001, 47.11400000000003, 54.99200000000002, 51.053, 51.053, 98.32100000000003, 31.358000000000004, 54.99200000000002, 43.17500000000001, 47.11400000000003, 51.053, 47.11400000000003, 47.11400000000003, 82.565, 35.297000000000025, 90.44299999999998, 51.053, 23.480000000000018, 102.25999999999999, 114.077, 58.93099999999998, 35.297000000000025, 43.17500000000001, 58.93099999999998, 54.99200000000002, 58.93099999999998, 43.17500000000001, 39.23599999999999, 58.93099999999998, 62.870000000000005, 51.053, 54.99200000000002, 74.68700000000001, 51.053, 54.99200000000002, 35.297000000000025, 39.23599999999999, 39.23599999999999, 54.99200000000002, 15.602000000000032, 39.23599999999999, 43.17500000000001, 43.17500000000001, 94.382, 51.053, 43.17500000000001, -0.15399999999999636, 54.99200000000002, 27.418999999999983, 51.053, 27.418999999999983, 43.17500000000001, 47.11400000000003, 62.870000000000005, 51.053, 35.297000000000025, 98.32100000000003, 43.17500000000001, 43.17500000000001, 66.80900000000003, 3.785000000000025, 51.053, 62.870000000000005, 47.11400000000003, 66.80900000000003, 51.053, 15.602000000000032, 54.99200000000002, 35.297000000000025, 82.565, 58.93099999999998, 58.93099999999998, 51.053, 62.870000000000005, 58.93099999999998, 62.870000000000005, 102.25999999999999, 94.382, 54.99200000000002, 74.68700000000001, 54.99200000000002, 129.83300000000003, 51.053, 47.11400000000003, 39.23599999999999, 47.11400000000003, -177.409, 58.93099999999998, 66.80900000000003, 39.23599999999999, 58.93099999999998, 19.540999999999997, 51.053, 82.565, 110.13800000000003, 47.11400000000003, 51.053, 11.663000000000011, 54.99200000000002, 54.99200000000002, 3.785000000000025, 51.053, 70.74799999999999, 62.870000000000005, 66.80900000000003, 54.99200000000002, 54.99200000000002, 102.25999999999999, 58.93099999999998, 27.418999999999983, 47.11400000000003, 78.62600000000003, 39.23599999999999, 43.17500000000001, 62.870000000000005, 78.62600000000003, 27.418999999999983, 39.23599999999999, 47.11400000000003, 62.870000000000005, 102.25999999999999, 54.99200000000002, 90.44299999999998, 27.418999999999983, 70.74799999999999, 47.11400000000003, 3.785000000000025, 54.99200000000002, 39.23599999999999, 51.053, 39.23599999999999, 27.418999999999983, 133.772, 51.053, 39.23599999999999, 62.870000000000005, 58.93099999999998, 51.053, 86.50400000000002, 58.93099999999998, 125.894, 43.17500000000001, 62.870000000000005, 51.053, 102.25999999999999, 47.11400000000003, 66.80900000000003, 51.053, 58.93099999999998, 39.23599999999999, 35.297000000000025, 47.11400000000003, 47.11400000000003, 58.93099999999998, 43.17500000000001, 43.17500000000001, 31.358000000000004, 58.93099999999998, 23.480000000000018, 54.99200000000002, 58.93099999999998, 43.17500000000001, 43.17500000000001, 66.80900000000003, 35.297000000000025, 82.565, 51.053, 62.870000000000005, 43.17500000000001, 66.80900000000003, 54.99200000000002, 74.68700000000001, 39.23599999999999, 98.32100000000003, 54.99200000000002, 82.565, 58.93099999999998, 66.80900000000003, 43.17500000000001, 23.480000000000018, 62.870000000000005, 78.62600000000003, 58.93099999999998, 15.602000000000032, 35.297000000000025, 47.11400000000003, 47.11400000000003, 78.62600000000003, 51.053, 102.25999999999999, 58.93099999999998, 15.602000000000032, 51.053, 58.93099999999998, 66.80900000000003, 31.358000000000004, 47.11400000000003, 35.297000000000025, 43.17500000000001, 62.870000000000005, -165.59199999999998, 27.418999999999983, 51.053, 58.93099999999998, 51.053, 70.74799999999999, 58.93099999999998, 66.80900000000003, 66.80900000000003, 47.11400000000003, 51.053, 31.358000000000004, 31.358000000000004, 39.23599999999999, 62.870000000000005, 86.50400000000002, 39.23599999999999, 39.23599999999999, 62.870000000000005, 51.053, 35.297000000000025, 58.93099999999998, 86.50400000000002, 51.053, 51.053, 62.870000000000005, 27.418999999999983, 39.23599999999999, 31.358000000000004, 54.99200000000002, 51.053, 66.80900000000003, 51.053, 51.053, 43.17500000000001, 58.93099999999998, 47.11400000000003, 54.99200000000002, 102.25999999999999, 54.99200000000002, 35.297000000000025, 23.480000000000018, 15.602000000000032, 62.870000000000005, 47.11400000000003, 51.053, 51.053, 54.99200000000002, 39.23599999999999, 43.17500000000001, 106.19900000000001, 58.93099999999998, 58.93099999999998, 58.93099999999998, 39.23599999999999, 47.11400000000003, 54.99200000000002, 82.565, 51.053, 47.11400000000003, 35.297000000000025, 19.540999999999997, 62.870000000000005, 54.99200000000002, 54.99200000000002, 27.418999999999983, 47.11400000000003, 86.50400000000002, 54.99200000000002, 114.077, 47.11400000000003, 39.23599999999999, 82.565, 39.23599999999999, 66.80900000000003, 70.74799999999999, 51.053, 47.11400000000003, 54.99200000000002, 51.053, 47.11400000000003, 23.480000000000018, 58.93099999999998, 74.68700000000001, 47.11400000000003, 70.74799999999999, 58.93099999999998, 70.74799999999999, 66.80900000000003, 74.68700000000001, 54.99200000000002, 47.11400000000003, 51.053, 43.17500000000001, 66.80900000000003, 74.68700000000001, 58.93099999999998, 54.99200000000002, 58.93099999999998, 62.870000000000005, 54.99200000000002, 78.62600000000003, 94.382, 35.297000000000025, 39.23599999999999, 51.053, 43.17500000000001, 74.68700000000001, 78.62600000000003, 35.297000000000025, 62.870000000000005, 62.870000000000005, 70.74799999999999, 51.053, 82.565, 54.99200000000002, 94.382, 54.99200000000002, 58.93099999999998, 66.80900000000003, 39.23599999999999, 62.870000000000005, 43.17500000000001, 7.7239999999999895, 27.418999999999983, 62.870000000000005, 66.80900000000003, 54.99200000000002, 27.418999999999983, 58.93099999999998, 82.565, 58.93099999999998, 74.68700000000001, 43.17500000000001, 86.50400000000002, 47.11400000000003, 54.99200000000002, 47.11400000000003, 51.053, 43.17500000000001, 35.297000000000025], \"power_mean\": 54.57259814814816, \"energy_millijoules\": 7484.607503843328, \"energy_joules\": 7.484607503843328, \"coremark_score\": 2187.625333, \"coremarks_per_mhz\": 3.236132149408284, \"ulpmark_cm_score\": 40.08226214212979}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [248.22, 330.96, 295.5, 315.2, 303.38, 303.38, 303.38, 291.56, 311.26, 303.38, 323.08, 291.56, 330.96, 311.26, 303.38, 299.44, 165.48, 327.02, 295.5], \"power_mean\": 297.5736842105263, \"energy_millijoules\": 1487.8684210526317, \"energy_joules\": 1.4878684210526316}}, \"757000\": {\"active\": {\"elapsed_sec\": 122.45270395, \"elapsed_ns\": 122452703950, \"power_samples\": [62.870000000000005, 78.62600000000003, 66.80900000000003, 90.44299999999998, 66.80900000000003, 54.99200000000002, 66.80900000000003, 78.62600000000003, 62.870000000000005, 78.62600000000003, 39.23599999999999, 62.870000000000005, 70.74799999999999, 54.99200000000002, 98.32100000000003, 54.99200000000002, 54.99200000000002, 70.74799999999999, 51.053, 62.870000000000005, 58.93099999999998, 66.80900000000003, 74.68700000000001, 74.68700000000001, 43.17500000000001, 90.44299999999998, 43.17500000000001, 54.99200000000002, 74.68700000000001, 54.99200000000002, 62.870000000000005, 70.74799999999999, 54.99200000000002, 62.870000000000005, 66.80900000000003, 70.74799999999999, 90.44299999999998, 54.99200000000002, 54.99200000000002, 90.44299999999998, 74.68700000000001, 54.99200000000002, 82.565, 54.99200000000002, 66.80900000000003, 62.870000000000005, 27.418999999999983, 62.870000000000005, 39.23599999999999, 62.870000000000005, 78.62600000000003, 51.053, 27.418999999999983, 66.80900000000003, 54.99200000000002, 58.93099999999998, 86.50400000000002, 86.50400000000002, 51.053, 129.83300000000003, 94.382, 74.68700000000001, 58.93099999999998, 82.565, 78.62600000000003, 82.565, 51.053, 58.93099999999998, 66.80900000000003, 62.870000000000005, 62.870000000000005, 86.50400000000002, 54.99200000000002, 66.80900000000003, 90.44299999999998, 54.99200000000002, 66.80900000000003, 47.11400000000003, 66.80900000000003, 31.358000000000004, 66.80900000000003, 110.13800000000003, 66.80900000000003, 94.382, 86.50400000000002, 66.80900000000003, 62.870000000000005, 70.74799999999999, 90.44299999999998, 82.565, 78.62600000000003, 51.053, 66.80900000000003, 47.11400000000003, 62.870000000000005, 51.053, 70.74799999999999, 74.68700000000001, 66.80900000000003, 62.870000000000005, 66.80900000000003, 51.053, 43.17500000000001, 58.93099999999998, 90.44299999999998, 62.870000000000005, 90.44299999999998, 78.62600000000003, 70.74799999999999, -8.031999999999982, 70.74799999999999, 3.785000000000025, 51.053, 90.44299999999998, 62.870000000000005, 90.44299999999998, 78.62600000000003, 39.23599999999999, 66.80900000000003, 78.62600000000003, 70.74799999999999, 51.053, 62.870000000000005, 70.74799999999999, 82.565, 66.80900000000003, 27.418999999999983, 58.93099999999998, 78.62600000000003, 66.80900000000003, -0.15399999999999636, 66.80900000000003, 39.23599999999999, 62.870000000000005, 58.93099999999998, 62.870000000000005, 70.74799999999999, 70.74799999999999, 39.23599999999999, 62.870000000000005, 86.50400000000002, 66.80900000000003, 82.565, 74.68700000000001, 35.297000000000025, 58.93099999999998, 51.053, 58.93099999999998, 82.565, 47.11400000000003, 47.11400000000003, 51.053, 58.93099999999998, 62.870000000000005, 62.870000000000005, 78.62600000000003, 39.23599999999999, 66.80900000000003, 102.25999999999999, 66.80900000000003, 43.17500000000001, 74.68700000000001, 74.68700000000001, 66.80900000000003, 94.382, 51.053, 66.80900000000003, 58.93099999999998, 19.540999999999997, 47.11400000000003, 70.74799999999999, 98.219, 66.71500000000003, 70.65300000000002, 66.71500000000003, 70.65300000000002, 78.529, 98.219, 70.65300000000002, 78.529, 82.46699999999998, 70.65300000000002, 78.529, 43.08699999999999, 58.839, 66.71500000000003, 50.96300000000002, 62.77699999999999, 66.71500000000003, 66.71500000000003, 54.90100000000001, 58.839, 62.77699999999999, 50.96300000000002, 50.96300000000002, 50.96300000000002, 43.08699999999999, 58.839, 47.025000000000034, 74.59100000000001, 58.839, 47.025000000000034, 47.025000000000034, 94.281, 66.71500000000003, 78.529, 35.21100000000001, 70.65300000000002, 70.65300000000002, 86.40500000000003, 62.77699999999999, 70.65300000000002, 86.40500000000003, 94.281, 70.65300000000002, 86.40500000000003, 66.71500000000003, 66.71500000000003, 78.529, 66.71500000000003, 50.96300000000002, 62.77699999999999, 98.219, 74.59100000000001, 110.03300000000002, 54.90100000000001, 58.839, 54.90100000000001, 70.65300000000002, 66.71500000000003, 47.025000000000034, 50.96300000000002, 78.529, 58.839, 82.46699999999998, 70.65300000000002, 39.149, 62.77699999999999, 58.839, 62.77699999999999, 58.839, 62.77699999999999, 78.529, 82.46699999999998, 50.96300000000002, 54.90100000000001, 62.77699999999999, 54.90100000000001, 50.96300000000002, 58.839, 74.59100000000001, 54.90100000000001, 62.77699999999999, 70.65300000000002, 98.219, 58.839, 78.529, 58.839, 90.34300000000002, 62.77699999999999, 39.149, 94.281, 66.71500000000003, 35.21100000000001, 27.33499999999998, 39.149, 62.77699999999999, 66.71500000000003, 66.71500000000003, 66.71500000000003, 62.77699999999999, 62.77699999999999, 62.77699999999999, 54.90100000000001, 66.71500000000003, 74.59100000000001, 70.65300000000002, 58.839, 70.65300000000002, 62.77699999999999, 62.77699999999999, 58.839, 54.90100000000001, 90.34300000000002, 70.65300000000002, 43.08699999999999, 62.77699999999999, 62.77699999999999, 62.77699999999999, 66.71500000000003, -15.983000000000004, 54.90100000000001, 43.08699999999999, 43.08699999999999, 94.281, 62.77699999999999, 62.77699999999999, 90.34300000000002, 58.839, 74.59100000000001, 62.77699999999999, 62.77699999999999, 70.65300000000002, 98.219, 62.77699999999999, 70.65300000000002, 66.71500000000003, 90.34300000000002, 27.33499999999998, 90.34300000000002, 54.90100000000001, 70.65300000000002, 78.529, 62.77699999999999, 82.46699999999998, 58.839, 47.025000000000034, 66.71500000000003, 47.025000000000034, 66.71500000000003, 54.90100000000001, 78.529, 78.529, 43.08699999999999, 66.71500000000003, 58.839, 66.71500000000003, 74.59100000000001, 62.77699999999999, 62.77699999999999, 19.459000000000003, 66.71500000000003, 110.03300000000002, 70.65300000000002, 110.03300000000002, 62.77699999999999, 58.839, 98.219, 31.273000000000025, 39.149, 58.839, 62.77699999999999, 74.59100000000001, 70.65300000000002, 54.90100000000001, 66.71500000000003, 78.529, 58.839, 66.71500000000003, 66.71500000000003, 47.025000000000034, 66.71500000000003, 86.40500000000003, 74.59100000000001, 50.96300000000002, 66.71500000000003, 50.96300000000002, 110.03300000000002, 62.77699999999999, 58.839, 58.839, 47.025000000000034, 70.65300000000002, -0.23099999999999454, 62.77699999999999, 62.77699999999999, 54.90100000000001, 74.59100000000001, 82.46699999999998, 66.71500000000003, 78.529, 39.149, 58.839, 78.529, 50.96300000000002, 66.71500000000003, 62.77699999999999, 110.03300000000002, 62.77699999999999, 66.71500000000003, 70.65300000000002, 70.65300000000002, 70.65300000000002, 90.34300000000002, 54.90100000000001, 39.149, 66.71500000000003, 78.529, 74.59100000000001, 62.77699999999999, 66.71500000000003, 54.90100000000001, 62.77699999999999, 70.65300000000002, 50.96300000000002, 47.025000000000034, 66.71500000000003, 82.46699999999998, 66.71500000000003, 62.77699999999999, 62.77699999999999, 62.77699999999999, 62.77699999999999, 54.90100000000001, 74.59100000000001, 58.839, 94.281, 47.025000000000034, 113.86500000000001, 54.81, 54.81, 50.87299999999999, 39.06200000000001, 54.81, 54.81, 94.18, 90.243, 70.55799999999999, 62.684000000000026, 74.495, 74.495, 54.81, 105.99099999999999, 74.495, 66.62099999999998, 66.62099999999998, 54.81, 74.495, 50.87299999999999, 66.62099999999998, 66.62099999999998, 78.43200000000002, 62.684000000000026, 82.36900000000003, 35.125, 62.684000000000026, 74.495, 66.62099999999998, 23.31400000000002, 66.62099999999998, 50.87299999999999, 90.243, 46.93599999999998, 62.684000000000026, 23.31400000000002, 74.495, 66.62099999999998, 58.747000000000014, 39.06200000000001, 74.495, 66.62099999999998, 62.684000000000026, 70.55799999999999, 74.495, 153.235, 90.243, 66.62099999999998, 11.502999999999986, 62.684000000000026, 46.93599999999998, 74.495, 54.81, 70.55799999999999, 54.81, 31.187999999999988, 62.684000000000026, 94.18, 66.62099999999998, 58.747000000000014, 66.62099999999998, 70.55799999999999, 102.05400000000003, 62.684000000000026, 102.05400000000003, 66.62099999999998, 102.05400000000003, 62.684000000000026, 66.62099999999998, 70.55799999999999, 66.62099999999998, 46.93599999999998, 58.747000000000014, 70.55799999999999], \"power_mean\": 65.19253002070394, \"energy_millijoules\": 7983.001578376747, \"energy_joules\": 7.983001578376746, \"coremark_score\": 2450.159669, \"coremarks_per_mhz\": 3.2366706327608985, \"ulpmark_cm_score\": 37.579849766358386}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [330.876, 303.303, 279.669, 330.876, 299.364, 295.425, 31.512, 291.486, 307.242, 291.486, 315.12, 291.486, 311.181, 287.547, 319.059, 295.425, 256.035, 299.364, 295.425], \"power_mean\": 285.8884736842105, \"energy_millijoules\": 1429.4423684210526, \"energy_joules\": 1.4294423684210527}}, \"845000\": {\"active\": {\"elapsed_sec\": 109.650903037, \"elapsed_ns\": 109650903037, \"power_samples\": [70.55799999999999, 82.36900000000003, 102.05400000000003, 82.36900000000003, 94.18, 78.43200000000002, 105.99099999999999, 78.43200000000002, 54.81, 82.36900000000003, 62.684000000000026, 31.187999999999988, 70.55799999999999, 86.30599999999998, 35.125, 78.43200000000002, 42.999000000000024, 86.30599999999998, -8.182000000000016, 46.93599999999998, 86.30599999999998, 82.36900000000003, 78.43200000000002, 105.99099999999999, 50.87299999999999, 70.55799999999999, 70.55799999999999, 74.495, 94.18, 94.18, 82.36900000000003, 109.928, 70.55799999999999, 66.62099999999998, 74.495, 74.495, 78.43200000000002, 42.999000000000024, 86.30599999999998, 62.684000000000026, 62.684000000000026, 62.684000000000026, 86.30599999999998, 74.495, 78.43200000000002, 66.62099999999998, 78.43200000000002, 86.30599999999998, 98.11700000000002, 74.495, 70.55799999999999, 74.495, 74.495, 66.62099999999998, 66.62099999999998, 58.747000000000014, 46.93599999999998, 98.11700000000002, 86.30599999999998, 102.05400000000003, 58.747000000000014, 125.67599999999999, 86.30599999999998, 94.18, 109.928, 102.05400000000003, 78.43200000000002, 58.747000000000014, 105.99099999999999, 78.43200000000002, 98.11700000000002, 58.747000000000014, 66.62099999999998, 102.05400000000003, 62.684000000000026, 50.87299999999999, 62.684000000000026, 82.36900000000003, 82.36900000000003, 74.495, 109.928, 70.55799999999999, 82.36900000000003, 78.43200000000002, 50.87299999999999, 74.495, 137.48700000000002, 62.684000000000026, 54.81, 66.62099999999998, 82.36900000000003, 82.36900000000003, 58.747000000000014, 78.43200000000002, 78.43200000000002, 70.55799999999999, 109.928, 78.43200000000002, 102.05400000000003, 82.36900000000003, 11.502999999999986, 86.30599999999998, 82.36900000000003, 78.43200000000002, 98.11700000000002, 39.06200000000001, 62.684000000000026, 78.43200000000002, 42.999000000000024, 86.30599999999998, 86.30599999999998, 78.43200000000002, 66.62099999999998, 86.30599999999998, 78.43200000000002, 78.43200000000002, 62.684000000000026, 113.86500000000001, 46.93599999999998, 109.928, 82.36900000000003, 54.81, 46.93599999999998, 54.81, 78.43200000000002, 62.684000000000026, 78.43200000000002, 23.31400000000002, 74.495, 125.67599999999999, 74.495, 74.495, 78.43200000000002, 82.36900000000003, 82.36900000000003, 58.747000000000014, 62.684000000000026, 58.747000000000014, 78.43200000000002, 66.62099999999998, 74.495, 62.684000000000026, 66.62099999999998, 70.55799999999999, 82.36900000000003, 46.93599999999998, 78.43200000000002, 94.18, 82.36900000000003, 82.36900000000003, 82.36900000000003, 98.11700000000002, 66.62099999999998, 58.747000000000014, 74.495, 98.11700000000002, 86.30599999999998, 39.06200000000001, 86.30599999999998, 121.73900000000003, 74.495, 70.55799999999999, 78.43200000000002, 74.495, 82.36900000000003, 86.30599999999998, 94.18, 98.11700000000002, 58.747000000000014, 86.30599999999998, 70.55799999999999, 78.43200000000002, 121.73900000000003, 74.495, 117.80200000000002, 82.36900000000003, 66.62099999999998, 74.495, 133.55, 78.43200000000002, 74.495, 78.43200000000002, 102.05400000000003, 62.684000000000026, 46.93599999999998, 74.495, 66.62099999999998, 66.62099999999998, 121.73900000000003, 78.43200000000002, 90.243, 82.36900000000003, 94.18, 78.43200000000002, 105.99099999999999, 74.495, 70.55799999999999, 66.62099999999998, 117.80200000000002, 54.81, 70.55799999999999, 82.36900000000003, 35.125, 66.62099999999998, 145.361, 82.36900000000003, 109.928, 74.495, 90.243, 70.55799999999999, 27.251000000000033, 82.36900000000003, 74.495, 105.99099999999999, 78.43200000000002, 42.999000000000024, 82.36900000000003, 70.55799999999999, 86.30599999999998, 86.30599999999998, 74.495, 90.243, 78.43200000000002, 94.18, 82.36900000000003, 109.928, 82.36900000000003, 86.30599999999998, 78.43200000000002, 58.747000000000014, 78.43200000000002, 82.36900000000003, 90.243, 42.999000000000024, 74.495, 121.73900000000003, 78.43200000000002, 90.243, 78.43200000000002, 102.05400000000003, 78.43200000000002, 58.747000000000014, 78.43200000000002, 90.243, 78.43200000000002, 86.30599999999998, 15.439999999999998, 78.43200000000002, 78.33499999999998, 157.055, 66.52699999999999, 62.59100000000001, 78.33499999999998, 62.59100000000001, 82.27100000000002, 50.783000000000015, 74.399, 66.52699999999999, 74.399, 58.65500000000003, 78.33499999999998, 117.695, 101.95100000000002, 86.207, 78.33499999999998, 82.27100000000002, 58.65500000000003, 78.33499999999998, 98.01499999999999, 86.207, 129.503, 74.399, 109.82299999999998, 78.33499999999998, 70.46300000000002, 74.399, 74.399, 101.95100000000002, 86.207, 90.14300000000003, 78.33499999999998, 70.46300000000002, 70.46300000000002, 78.33499999999998, 125.56700000000001, 62.59100000000001, 101.95100000000002, 78.33499999999998, 50.783000000000015, 74.399, 70.46300000000002, 86.207, 70.46300000000002, 82.27100000000002, 50.783000000000015, 86.207, 54.718999999999994, 74.399, 78.33499999999998, 78.33499999999998, 113.75900000000001, 66.52699999999999, 86.207, 70.46300000000002, 86.207, 74.399, 66.52699999999999, 98.01499999999999, 66.52699999999999, 78.33499999999998, 90.14300000000003, 125.56700000000001, 82.27100000000002, 27.16700000000003, 27.16700000000003, 50.783000000000015, 78.33499999999998, 101.95100000000002, 70.46300000000002, 82.27100000000002, 74.399, 90.14300000000003, 90.14300000000003, 82.27100000000002, 86.207, 98.01499999999999, 74.399, 54.718999999999994, 82.27100000000002, 70.46300000000002, 86.207, 35.03899999999999, 82.27100000000002, 70.46300000000002, 78.33499999999998, 74.399, 82.27100000000002, 86.207, 42.911, 94.07900000000001, 78.33499999999998, 58.65500000000003, 78.33499999999998, 90.14300000000003, 86.207, 70.46300000000002, 70.46300000000002, -0.3849999999999909, 78.33499999999998, 141.31099999999998, 78.33499999999998, 19.295000000000016, 82.27100000000002, 66.52699999999999, 74.399, 78.33499999999998, 137.375, 50.783000000000015, 74.399, 101.95100000000002, 78.33499999999998, 78.33499999999998, 58.65500000000003, 50.783000000000015, 90.14300000000003, 78.33499999999998, 58.65500000000003, 94.18, 113.86500000000001, 74.495, 62.684000000000026, 82.36900000000003, 90.243, 94.18, 113.86500000000001, 78.43200000000002, 27.251000000000033, 82.36900000000003, 98.11700000000002, 82.36900000000003, 15.439999999999998, 98.11700000000002, 46.93599999999998, 66.62099999999998, 62.684000000000026, 70.55799999999999, 50.87299999999999, 62.684000000000026, 82.36900000000003, 78.43200000000002, 78.43200000000002, 78.43200000000002, 39.06200000000001, 82.36900000000003, 78.43200000000002, 78.43200000000002, 82.36900000000003, 82.36900000000003, 19.37700000000001, 70.55799999999999, 74.495, 78.43200000000002, 94.18, 102.05400000000003, 78.43200000000002, 78.43200000000002, 54.81, 74.495, 70.55799999999999, 78.43200000000002, 109.928, 74.495, 78.43200000000002, 35.125, 78.43200000000002, 82.36900000000003, 90.243, 62.684000000000026, 74.495, 90.243, 90.243, 90.243, 86.30599999999998, 90.243, 78.43200000000002, 109.928, 78.43200000000002, 74.495, 78.43200000000002, 62.684000000000026, 78.43200000000002, 74.495], \"power_mean\": 77.49396296296297, \"energy_millijoules\": 8497.283018804723, \"energy_joules\": 8.497283018804723, \"coremark_score\": 2736.252611, \"coremarks_per_mhz\": 3.2381687704142013, \"ulpmark_cm_score\": 35.30540283712943}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [299.212, 271.653, 307.086, 291.338, 314.96, 303.149, 295.275, 3.937, 279.527, 299.212, 326.771, 295.275, 299.212, 311.023, 295.275, 314.96, 299.212, 322.834, 291.338], \"power_mean\": 285.32889473684213, \"energy_millijoules\": 1426.6444736842107, \"energy_joules\": 1.4266444736842105}}, \"962000\": {\"active\": {\"elapsed_sec\": 96.246138239, \"elapsed_ns\": 96246138239, \"power_samples\": [102.05400000000003, 133.55, 109.928, 141.42399999999998, 109.928, 90.243, 102.05400000000003, 117.80200000000002, 90.243, 117.80200000000002, 105.99099999999999, 62.684000000000026, 98.11700000000002, 90.243, 113.86500000000001, 74.495, 46.93599999999998, 105.99099999999999, 109.928, 94.18, 109.928, 101.95100000000002, 105.887, 125.56700000000001, 109.82299999999998, 94.07900000000001, 101.95100000000002, 50.783000000000015, 105.887, 168.863, 141.31099999999998, 109.82299999999998, 70.46300000000002, 109.82299999999998, 94.07900000000001, 113.75900000000001, 117.695, 105.887, 90.14300000000003, 105.887, 90.14300000000003, 101.95100000000002, 42.911, 98.01499999999999, 109.82299999999998, 117.695, 101.95100000000002, 113.75900000000001, 109.82299999999998, 101.95100000000002, 105.887, 109.82299999999998, 109.82299999999998, 105.887, 74.399, 109.82299999999998, 101.95100000000002, 101.95100000000002, 66.52699999999999, 98.01499999999999, 133.43900000000002, 105.887, 105.887, 94.07900000000001, 94.07900000000001, 117.695, 101.95100000000002, 101.95100000000002, 149.183, 105.887, 105.887, 94.07900000000001, 82.27100000000002, 105.887, 86.207, 101.95100000000002, 137.375, 133.43900000000002, 82.27100000000002, 125.56700000000001, 133.43900000000002, 113.75900000000001, 113.75900000000001, 105.887, 105.887, 90.14300000000003, 109.82299999999998, 70.46300000000002, 94.07900000000001, 137.375, 101.95100000000002, 82.27100000000002, 105.887, 125.56700000000001, 121.63100000000003, 78.33499999999998, 74.399, 129.503, 101.95100000000002, 90.14300000000003, 94.07900000000001, 117.695, 101.95100000000002, 101.95100000000002, 90.14300000000003, 46.84699999999998, 105.887, 105.887, 98.01499999999999, 82.27100000000002, 101.95100000000002, 101.95100000000002, 82.27100000000002, 129.503, 82.27100000000002, 113.75900000000001, 105.887, 78.33499999999998, 109.82299999999998, 101.95100000000002, 101.95100000000002, 54.718999999999994, 105.887, 82.27100000000002, 74.399, 109.82299999999998, 105.887, 129.503, 98.01499999999999, 90.14300000000003, 113.75900000000001, 74.399, 105.887, 176.735, 70.46300000000002, 105.887, 105.887, 101.95100000000002, 42.911, 105.887, 113.65300000000002, 101.84800000000001, 121.52300000000002, 70.368, 117.58800000000002, 97.91300000000001, 97.91300000000001, 93.97800000000001, 125.45800000000003, 101.84800000000001, 38.888000000000034, 101.84800000000001, 153.003, 101.84800000000001, 86.108, 109.71800000000002, 74.303, 93.97800000000001, 109.71800000000002, 105.78300000000002, 125.45800000000003, 78.238, 121.52300000000002, 86.108, 78.238, 90.043, 141.19799999999998, 101.84800000000001, 125.45800000000003, 93.97800000000001, 86.108, 105.78300000000002, 74.303, 86.108, 121.52300000000002, 74.303, 121.52300000000002, 105.78300000000002, 101.84800000000001, 109.71800000000002, 137.26300000000003, 90.043, 70.368, 101.84800000000001, 137.26300000000003, 113.65300000000002, 180.548, 97.91300000000001, 109.71800000000002, 117.58800000000002, 113.65300000000002, 78.238, 101.84800000000001, 129.39300000000003, 101.84800000000001, 113.65300000000002, 93.97800000000001, 86.108, 141.19799999999998, 141.19799999999998, 101.84800000000001, 105.78300000000002, 101.84800000000001, 97.91300000000001, 97.91300000000001, 101.84800000000001, 90.043, 90.043, 97.91300000000001, 113.65300000000002, 101.84800000000001, 125.45800000000003, 93.97800000000001, 117.58800000000002, 90.043, 90.043, 97.91300000000001, 101.84800000000001, 121.52300000000002, 129.39300000000003, 105.78300000000002, 121.52300000000002, 101.84800000000001, 70.368, 105.78300000000002, 74.303, 105.78300000000002, 62.49799999999999, 105.78300000000002, 101.84800000000001, 105.78300000000002, 149.06799999999998, 105.78300000000002, 133.32800000000003, 66.43299999999999, 109.71800000000002, 109.71800000000002, 133.32800000000003, 149.06799999999998, 97.91300000000001, 62.49799999999999, 62.49799999999999, 117.58800000000002, 101.84800000000001, 125.45800000000003, 93.97800000000001, 133.32800000000003, 101.84800000000001, 105.78300000000002, 109.71800000000002, 86.108, 113.65300000000002, 90.043, 74.303, 149.06799999999998, 101.84800000000001, 97.91300000000001, 105.78300000000002, 141.19799999999998, 153.003, 66.43299999999999, 93.97800000000001, 66.43299999999999, 97.91300000000001, 86.108, 117.58800000000002, 93.97800000000001, 58.56299999999999, 109.71800000000002, 66.43299999999999, 86.108, 58.56299999999999, 82.173, 109.71800000000002, 93.97800000000001, 101.84800000000001, 58.56299999999999, 109.71800000000002, 133.32800000000003, 90.043, 109.71800000000002, 105.78300000000002, 105.78300000000002, 86.108, 97.91300000000001, 113.65300000000002, 113.65300000000002, 97.91300000000001, 113.65300000000002, 109.71800000000002, 153.003, 109.71800000000002, 93.97800000000001, 109.71800000000002, 101.84800000000001, 97.91300000000001, 105.78300000000002, 105.78300000000002, 93.97800000000001, 105.78300000000002, 121.52300000000002, 74.303, 101.84800000000001, 101.84800000000001, 109.71800000000002, 125.45800000000003, 113.65300000000002, 125.45800000000003, 101.84800000000001, 113.65300000000002, 101.84800000000001, 97.91300000000001, 109.71800000000002, 184.483, 113.65300000000002, 117.58800000000002, 93.97800000000001, 105.78300000000002, 105.78300000000002, 133.32800000000003, 97.91300000000001, 54.627999999999986, 101.84800000000001, 101.84800000000001, 93.97800000000001, 145.13299999999998, 101.84800000000001, 117.58800000000002, 125.45800000000003, 137.26300000000003, 82.173, 90.043, 121.52300000000002, 86.108, 101.84800000000001, 97.91300000000001, 97.91300000000001, 82.173, 156.938, 101.84800000000001, 101.84800000000001, 78.238, 74.303, 113.65300000000002, 101.84800000000001, 93.97800000000001, 86.108, 101.84800000000001, 62.49799999999999, 105.78300000000002, 172.678, 97.91300000000001, 97.91300000000001, 105.78300000000002, 70.368, 105.78300000000002, 97.91300000000001, 109.71800000000002, 141.19799999999998, 113.65300000000002, 82.173, 109.71800000000002, 109.71800000000002, 164.808, 86.108, 93.97800000000001, 105.78300000000002, 97.91300000000001, 137.26300000000003, 105.78300000000002, 129.39300000000003, 101.84800000000001, 109.71800000000002, 101.84800000000001, 97.91300000000001, 113.65300000000002, 125.45800000000003, 78.238, 97.81099999999998, 78.14100000000002], \"power_mean\": 103.47546578947369, \"energy_millijoules\": 9959.1139847186, \"energy_joules\": 9.9591139847186, \"coremark_score\": 3117.304155, \"coremarks_per_mhz\": 3.2404409095634095, \"ulpmark_cm_score\": 30.123161604568846}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [307.086, 299.212, 330.708, 311.023, 314.96, 311.023, 326.771, 303.149, 303.149, 303.149, 307.086, 322.834, 240.157, 326.771, 311.023, 330.708, 311.023, 295.275, 291.338], \"power_mean\": 307.70763157894737, \"energy_millijoules\": 1538.5381578947367, \"energy_joules\": 1.5385381578947368}}, \"1014000\": {\"active\": {\"elapsed_sec\": 91.310583935, \"elapsed_ns\": 91310583935, \"power_samples\": [164.68900000000002, 145.019, 89.94299999999998, 125.34899999999999, 46.66899999999998, 117.481, 145.019, 117.481, 93.87700000000001, 137.151, 93.87700000000001, 113.54700000000003, 105.67900000000003, 125.34899999999999, 176.49099999999999, 109.613, 109.613, 156.82100000000003, 101.745, 141.08499999999998, 113.54700000000003, 148.95300000000003, 125.34899999999999, 129.28300000000002, 133.21699999999998, 78.14100000000002, 105.67900000000003, 109.613, 137.151, 113.54700000000003, 113.54700000000003, 133.21699999999998, 125.34899999999999, 97.81099999999998, 117.481, 148.95300000000003, 113.54700000000003, 125.34899999999999, 93.87700000000001, 141.08499999999998, 129.28300000000002, 176.49099999999999, 125.34899999999999, 137.151, 113.54700000000003, 152.887, 117.481, 141.08499999999998, 125.34899999999999, 141.08499999999998, 109.613, 145.019, 137.151, 133.21699999999998, 121.41500000000002, 125.34899999999999, 113.54700000000003, 117.481, 121.41500000000002, 105.67900000000003, 129.28300000000002, 113.54700000000003, 125.34899999999999, 97.81099999999998, 121.41500000000002, 141.08499999999998, 125.34899999999999, 133.21699999999998, 117.481, 152.887, 113.54700000000003, 148.95300000000003, 113.54700000000003, 97.81099999999998, 129.28300000000002, 109.613, 105.67900000000003, 113.54700000000003, 117.481, 125.34899999999999, 125.34899999999999, 125.34899999999999, 148.95300000000003, 121.41500000000002, 89.94299999999998, 117.481, 129.28300000000002, 121.41500000000002, 148.95300000000003, 129.28300000000002, 129.28300000000002, 125.34899999999999, 164.68900000000002, 121.41500000000002, 188.293, 117.481, 145.019, 121.41500000000002, 145.019, 117.481, 133.21699999999998, 121.41500000000002, 113.54700000000003, 137.151, 137.151, 125.34899999999999, 105.67900000000003, 113.54700000000003, 141.08499999999998, 125.34899999999999, 109.613, 121.41500000000002, 117.481, 113.54700000000003, 152.887, 121.41500000000002, 125.34899999999999, 129.28300000000002, 109.613, 125.34899999999999, 105.67900000000003, 125.34899999999999, 97.81099999999998, 137.151, 101.745, 121.41500000000002, 70.27300000000002, 141.08499999999998, 113.54700000000003, 117.481, 125.34899999999999, 129.28300000000002, 125.34899999999999, 62.40500000000003, 121.41500000000002, 66.339, 86.00900000000001, 89.94299999999998, 129.28300000000002, 113.54700000000003, 129.28300000000002, 113.54700000000003, 113.54700000000003, 172.55700000000002, 125.34899999999999, 125.34899999999999, 125.34899999999999, 152.887, 121.41500000000002, 97.81099999999998, 184.35899999999998, 145.019, 121.41500000000002, 137.151, 148.95300000000003, 141.08499999999998, 113.54700000000003, 121.41500000000002, 129.28300000000002, 117.481, 117.481, 156.82100000000003, 129.28300000000002, 133.21699999999998, 121.41500000000002, 152.887, 141.08499999999998, 121.41500000000002, 137.151, 121.41500000000002, 117.481, 105.67900000000003, 113.54700000000003, 89.94299999999998, 125.34899999999999, 160.755, 137.151, 176.49099999999999, 121.41500000000002, 86.00900000000001, 125.34899999999999, 148.95300000000003, 133.21699999999998, 129.28300000000002, 97.81099999999998, 137.151, 117.481, 105.67900000000003, 145.019, 117.481, 156.82100000000003, 113.54700000000003, 129.28300000000002, 113.54700000000003, 105.67900000000003, 121.41500000000002, 125.34899999999999, 129.28300000000002, 97.81099999999998, 121.41500000000002, 152.887, 148.95300000000003, 152.887, 109.50799999999998, 129.173, 113.44100000000003, 93.77600000000001, 117.37400000000002, 137.039, 113.44100000000003, 113.44100000000003, 121.30700000000002, 140.97199999999998, 137.039, 152.77100000000002, 121.30700000000002, 121.30700000000002, 113.44100000000003, 129.173, 121.30700000000002, 81.97700000000003, 117.37400000000002, 140.97199999999998, 129.173, 160.637, 113.44100000000003, 133.106, 168.503, 133.106, 125.24000000000001, 105.57499999999999, 133.106, 93.77600000000001, 117.37400000000002, 89.84300000000002, 140.97199999999998, 137.039, 144.90500000000003, 121.30700000000002, 176.36900000000003, 121.30700000000002, 133.106, 121.30700000000002, 109.50799999999998, 117.37400000000002, 97.709, 117.37400000000002, 125.24000000000001, 148.83800000000002, 85.91000000000003, 121.30700000000002, 137.039, 168.503, 117.37400000000002, 113.44100000000003, 180.30200000000002, 113.44100000000003, 156.704, 117.37400000000002, 121.30700000000002, 105.57499999999999, 129.173, 137.039, 109.50799999999998, 129.173, 176.36900000000003, 125.24000000000001, 97.709, 121.30700000000002, 121.30700000000002, 125.24000000000001, 97.709, 121.30700000000002, 105.57499999999999, 121.30700000000002, 133.106, 129.173, 109.50799999999998, 160.637, 117.37400000000002, 121.30700000000002, 137.039, 113.44100000000003, 121.30700000000002, 125.24000000000001, 137.039, 121.30700000000002, 97.709, 113.44100000000003, 156.704, 140.97199999999998, 180.30200000000002, 137.039, 109.50799999999998, 113.44100000000003, 129.173, 129.173, 129.173, 121.30700000000002, 121.30700000000002, 133.106, 129.173, 156.704, 160.637, 144.90500000000003, 117.37400000000002, 129.173, 117.37400000000002, 121.30700000000002, 105.57499999999999, 144.90500000000003, 125.24000000000001, 89.84300000000002, 105.57499999999999, 74.11099999999999, 117.37400000000002, 125.24000000000001, 125.24000000000001, 78.04399999999998, 121.30700000000002, 137.039, 109.50799999999998, 219.63200000000006, 125.24000000000001, 144.90500000000003, 129.173, 117.37400000000002, 121.30700000000002, 148.83800000000002, 133.106, 156.704, 117.37400000000002, 89.84300000000002, 125.24000000000001, 176.36900000000003, 113.44100000000003, 129.173, 125.24000000000001, 129.173, 125.24000000000001, 117.37400000000002, 121.30700000000002, 105.57499999999999, 137.039, 50.513000000000034, 144.90500000000003, 156.704, 129.173, 129.173, 144.90500000000003, 117.37400000000002, 105.57499999999999, 125.24000000000001, 97.709, 125.24000000000001, 93.77600000000001, 129.173, 121.30700000000002, 125.24000000000001, 113.44100000000003, 129.173], \"power_mean\": 124.88716620498616, \"energy_millijoules\": 11403.520072164683, \"energy_joules\": 11.403520072164683, \"coremark_score\": 3285.76279, \"coremarks_per_mhz\": 3.2403972287968443, \"ulpmark_cm_score\": 26.30766623827692}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [314.72, 298.984, 306.852, 318.654, 287.182, 310.786, 334.39, 173.096, 397.334, 314.72, 322.588, 318.654, 306.852, 350.126, 302.918, 291.116, 322.588, 322.588, 310.786], \"power_mean\": 310.786, \"energy_millijoules\": 1553.93, \"energy_joules\": 1.55393}}, \"1144000\": {\"active\": {\"elapsed_sec\": 80.93339148, \"elapsed_ns\": 80933391480, \"power_samples\": [196.034, 156.704, 168.503, 140.97199999999998, 168.503, 152.77100000000002, 105.57499999999999, 148.83800000000002, 156.704, 137.039, 144.90500000000003, 156.704, 137.039, 148.83800000000002, 184.235, 144.90500000000003, 156.704, 148.83800000000002, 148.83800000000002, 144.90500000000003, 144.90500000000003, 148.83800000000002, 133.106, 152.77100000000002, 117.37400000000002, 144.90500000000003, 121.30700000000002, 137.039, 148.83800000000002, 140.97199999999998, 140.97199999999998, 148.83800000000002, 109.50799999999998, 144.90500000000003, 85.91000000000003, 152.77100000000002, 156.704, 140.97199999999998, 188.168, 152.77100000000002, 184.235, 168.503, 152.77100000000002, 117.37400000000002, 144.90500000000003, 172.43599999999998, 176.247, 184.111, 144.791, 132.995, 148.723, 144.791, 144.791, 152.65500000000003, 140.85899999999998, 101.53899999999999, 156.587, 144.791, 140.85899999999998, 129.063, 148.723, 136.92700000000002, 148.723, 164.45100000000002, 152.65500000000003, 144.791, 152.65500000000003, 125.13100000000003, 152.65500000000003, 140.85899999999998, 148.723, 156.587, 148.723, 164.45100000000002, 129.063, 152.65500000000003, 148.723, 176.247, 148.723, 113.33499999999998, 148.723, 258.81899999999996, 148.723, 152.65500000000003, 148.723, 156.587, 140.85899999999998, 152.65500000000003, 148.723, 129.063, 152.65500000000003, 152.65500000000003, 156.587, 176.247, 148.723, 168.38299999999998, 152.65500000000003, 132.995, 148.723, 144.791, 152.65500000000003, 160.519, 184.111, 152.65500000000003, 129.063, 152.65500000000003, 152.65500000000003, 148.723, 180.17900000000003, 148.723, 148.723, 148.723, 148.723, 144.791, 152.65500000000003, 144.791, 180.17900000000003, 140.85899999999998, 168.38299999999998, 156.587, 152.65500000000003, 160.519, 176.247, 152.65500000000003, 172.315, 148.723, 129.063, 140.85899999999998, 152.65500000000003, 140.85899999999998, 148.723, 144.791, 144.791, 129.063, 121.19900000000001, 136.92700000000002, 176.247, 129.063, 172.315, 140.85899999999998, 66.15100000000001, 144.791, 140.85899999999998, 152.65500000000003, 152.65500000000003, 144.791, 176.247, 148.723, 132.995, 140.85899999999998, 136.92700000000002, 148.723, 156.587, 191.97500000000002, 148.723, 156.587, 156.587, 152.65500000000003, 156.587, 113.33499999999998, 140.85899999999998, 180.17900000000003, 148.723, 152.65500000000003, 152.65500000000003, 160.401, 136.815, 148.608, 160.401, 113.22899999999998, 152.539, 128.95300000000003, 148.608, 191.849, 148.608, 148.608, 152.539, 180.05599999999998, 148.608, 164.332, 156.47000000000003, 152.539, 148.608, 144.67700000000002, 156.47000000000003, 187.918, 136.815, 172.19400000000002, 144.67700000000002, 132.88400000000001, 144.67700000000002, 168.26300000000003, 144.67700000000002, 148.608, 148.608, 132.88400000000001, 152.539, 152.539, 164.332, 144.67700000000002, 121.09100000000001, 140.74599999999998, 152.539, 117.16000000000003, 148.608, 128.95300000000003, 144.67700000000002, 148.608, 191.849, 148.608, 152.539, 140.74599999999998, 113.22899999999998, 168.26300000000003, 113.22899999999998, 148.608, 117.16000000000003, 156.47000000000003, 140.74599999999998, 125.02199999999999, 164.332, 152.539, 77.85000000000002, 148.608, 180.05599999999998, 144.67700000000002, 109.298, 152.539, 152.539, 164.332, 113.22899999999998, 128.95300000000003, 152.539, 140.74599999999998, 144.67700000000002, 148.608, 187.918, 148.608, 148.608, 152.539, 164.332, 148.608, 180.05599999999998, 160.401, 152.539, 144.67700000000002, 183.98700000000002, 160.401, 128.95300000000003, 136.815, 140.74599999999998, 156.47000000000003, 172.19400000000002, 152.539, 132.88400000000001, 156.47000000000003, 125.02199999999999, 144.67700000000002, 144.67700000000002, 152.539, 136.815, 164.332, 132.88400000000001, 168.26300000000003, 140.74599999999998, 160.401, 148.608, 172.19400000000002, 148.608, 195.78000000000003, 191.849, 125.02199999999999, 148.608, 168.26300000000003, 152.539, 152.539, 117.16000000000003, 144.67700000000002, 160.401, 128.95300000000003, 128.95300000000003, 117.16000000000003, 140.74599999999998, 219.36599999999999, 148.608, 172.315, 156.587, 180.17900000000003, 148.723, 109.40300000000002, 152.65500000000003, 180.17900000000003, 156.587, 113.33499999999998, 117.267, 148.723, 184.111, 144.791, 148.723, 129.063, 156.587, 180.17900000000003, 140.85899999999998, 152.65500000000003, 152.65500000000003, 140.85899999999998, 156.587, 176.247, 140.85899999999998, 164.45100000000002, 160.519, 129.063, 152.65500000000003, 105.471, 176.247, 148.723, 136.92700000000002, 148.723, 105.471, 144.791], \"power_mean\": 149.3598375, \"energy_millijoules\": 12088.198199776683, \"energy_joules\": 12.088198199776683, \"coremark_score\": 3707.090428, \"coremarks_per_mhz\": 3.240463660839161, \"ulpmark_cm_score\": 24.81759440422992}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [298.908, 314.64, 326.439, 314.64, 306.774, 298.908, 306.774, 334.305, 302.841, 322.506, 283.176, 330.372, 326.439, 310.707, 318.573, 310.707, 302.841, 326.439, 326.439], \"power_mean\": 313.812, \"energy_millijoules\": 1569.06, \"energy_joules\": 1.56906}}, \"1242000\": {\"active\": {\"elapsed_sec\": 74.554903139, \"elapsed_ns\": 74554903139, \"power_samples\": [211.635, 156.587, 164.45100000000002, 172.315, 152.65500000000003, 172.315, 211.635, 168.38299999999998, 188.043, 176.247, 203.77100000000002, 172.315, 191.97500000000002, 164.45100000000002, 203.77100000000002, 176.247, 180.17900000000003, 172.315, 132.995, 191.97500000000002, 164.45100000000002, 168.38299999999998, 223.43100000000004, 168.38299999999998, 168.38299999999998, 176.247, 184.111, 176.247, 180.17900000000003, 168.38299999999998, 113.33499999999998, 176.247, 203.77100000000002, 172.315, 160.519, 168.38299999999998, 176.247, 172.315, 191.97500000000002, 172.315, 243.091, 160.519, 239.159, 172.315, 180.17900000000003, 211.635, 184.111, 156.587, 160.519, 164.45100000000002, 168.14300000000003, 262.46299999999997, 168.14300000000003, 164.21300000000002, 124.91300000000001, 179.933, 172.07299999999998, 109.19299999999998, 172.07299999999998, 179.933, 172.07299999999998, 207.44299999999998, 160.28300000000002, 183.863, 179.933, 132.77300000000002, 183.863, 179.933, 152.423, 211.37300000000005, 176.003, 117.053, 164.21300000000002, 179.933, 179.933, 132.77300000000002, 168.14300000000003, 195.65300000000002, 195.65300000000002, 179.933, 160.28300000000002, 219.23300000000006, 183.863, 164.21300000000002, 172.07299999999998, 219.23300000000006, 172.07299999999998, 242.813, 164.21300000000002, 152.423, 164.21300000000002, 223.163, 164.21300000000002, 207.44299999999998, 179.933, 156.353, 179.933, 199.58300000000003, 179.933, 156.353, 176.003, 176.003, 176.003, 168.14300000000003, 176.003, 203.51300000000003, 179.933, 191.723, 176.003, 148.493, 215.303, 179.933, 160.28300000000002, 176.003, 156.353, 176.003, 168.14300000000003, 179.933, 152.423, 160.28300000000002, 152.423, 179.933, 187.793, 164.21300000000002, 172.07299999999998, 179.933, 160.28300000000002, 176.003, 120.983, 179.933, 207.44299999999998, 164.21300000000002, 136.70300000000003, 172.07299999999998, 156.353, 168.14300000000003, 117.053, 172.07299999999998, 207.44299999999998, 176.003, 195.65300000000002, 172.07299999999998, 168.14300000000003, 160.28300000000002, 191.723, 183.863, 152.423, 164.21300000000002, 168.14300000000003, 176.003, 203.51300000000003, 176.003, 179.933, 172.07299999999998, 144.563, 176.003, 183.863, 172.07299999999998, 172.07299999999998, 172.07299999999998, 191.723, 179.933, 199.58300000000003, 179.933, 191.723, 168.14300000000003, 176.003, 132.77300000000002, 172.07299999999998, 140.63299999999998, 172.07299999999998, 207.44299999999998, 172.07299999999998, 179.933, 172.07299999999998, 176.003, 160.28300000000002, 191.723, 176.003, 231.02300000000002, 168.14300000000003, 152.423, 168.14300000000003, 187.793, 172.07299999999998, 140.63299999999998, 168.14300000000003, 164.21300000000002, 172.07299999999998, 203.51300000000003, 179.933, 172.07299999999998, 168.14300000000003, 231.02300000000002, 183.863, 231.02300000000002, 179.933, 187.793, 164.21300000000002, 195.65300000000002, 176.003, 215.303, 176.003, 168.14300000000003, 183.863, 152.423, 132.77300000000002, 191.723, 179.933, 148.493, 176.003, 187.793, 179.933, 152.423, 172.07299999999998, 179.933, 176.003, 179.933, 207.44299999999998, 172.07299999999998, 191.723, 176.003, 191.723, 160.28300000000002, 156.353, 168.14300000000003, 223.163, 164.21300000000002, 203.51300000000003, 179.933, 156.353, 168.14300000000003, 113.12299999999999, 168.14300000000003, 168.14300000000003, 231.02300000000002, 211.37300000000005, 183.863, 211.37300000000005, 179.933, 136.70300000000003, 168.14300000000003, 211.37300000000005, 176.003, 215.303, 172.07299999999998, 223.163, 172.07299999999998, 168.14300000000003, 172.07299999999998, 160.28300000000002, 172.07299999999998, 199.58300000000003, 176.003, 199.58300000000003, 172.07299999999998, 183.863, 176.003, 168.14300000000003, 176.003, 195.65300000000002, 168.14300000000003, 144.563, 172.07299999999998, 136.70300000000003, 176.003, 207.44299999999998, 172.07299999999998, 183.863, 219.23300000000006, 179.933, 168.14300000000003, 140.63299999999998, 203.51300000000003, 195.65300000000002, 223.163, 172.07299999999998, 176.003, 176.003, 136.70300000000003, 168.14300000000003, 191.723, 172.07299999999998, 172.07299999999998, 168.14300000000003, 195.65300000000002, 164.21300000000002, 242.813, 168.14300000000003, 164.094, 179.81, 124.80400000000003, 175.88100000000003, 164.094, 175.88100000000003], \"power_mean\": 176.68158305084745, \"energy_millijoules\": 13172.478310801116, \"energy_joules\": 13.172478310801116, \"coremark_score\": 4024.198849, \"coremarks_per_mhz\": 3.2400956916264088, \"ulpmark_cm_score\": 22.774757560542515}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [330.288, 290.968, 326.356, 349.948, 290.968, 330.288, 349.948, 338.152, 342.084, 322.424, 334.22, 377.472, 318.492, 338.152, 330.288, 326.356, 326.356, 346.016, 381.404], \"power_mean\": 334.22, \"energy_millijoules\": 1671.1000000000001, \"energy_joules\": 1.6711}}, \"1352000\": {\"active\": {\"elapsed_sec\": 68.465623489, \"elapsed_ns\": 68465623489, \"power_samples\": [203.38400000000001, 203.38400000000001, 215.17100000000005, 203.38400000000001, 187.668, 199.45499999999998, 199.45499999999998, 199.45499999999998, 164.094, 199.45499999999998, 195.526, 203.38400000000001, 152.30700000000002, 203.38400000000001, 219.10000000000002, 195.526, 250.53200000000004, 191.59699999999998, 242.67399999999998, 211.24199999999996, 187.668, 211.24199999999996, 168.02300000000002, 199.45499999999998, 199.45499999999998, 199.45499999999998, 223.029, 195.526, 179.81, 207.313, 281.96400000000006, 199.45499999999998, 171.952, 203.38400000000001, 187.668, 207.313, 171.952, 191.59699999999998, 258.39, 199.45499999999998, 242.67399999999998, 211.24199999999996, 262.31899999999996, 234.81600000000003, 207.313, 211.24199999999996, 199.45499999999998, 242.67399999999998, 187.668, 238.745, 195.526, 234.81600000000003, 191.59699999999998, 175.88100000000003, 195.526, 230.88700000000006, 199.45499999999998, 148.378, 207.313, 175.88100000000003, 195.526, 187.668, 207.313, 219.10000000000002, 215.17100000000005, 246.60299999999995, 215.17100000000005, 211.24199999999996, 207.313, 168.02300000000002, 191.59699999999998, 203.38400000000001, 195.526, 187.668, 207.313, 191.59699999999998, 195.526, 171.952, 207.313, 199.327, 234.67899999999997, 218.96699999999998, 199.327, 215.039, 171.83100000000002, 258.24699999999996, 203.255, 171.83100000000002, 203.255, 230.75099999999998, 207.183, 152.19100000000003, 199.327, 238.60699999999997, 203.255, 132.551, 203.255, 234.67899999999997, 199.327, 242.53499999999997, 242.53499999999997, 199.327, 215.039, 215.039, 226.82299999999998, 199.327, 179.687, 203.255, 195.399, 207.183, 199.327, 195.399, 195.399, 203.255, 183.615, 195.399, 183.615, 203.255, 152.19100000000003, 199.327, 234.67899999999997, 207.183, 238.60699999999997, 203.255, 199.327, 199.327, 203.255, 207.183, 167.90300000000002, 195.399, 211.111, 207.183, 175.75900000000001, 195.399, 242.53499999999997, 203.255, 152.19100000000003, 199.327, 211.111, 195.399, 218.96699999999998, 207.183, 226.82299999999998, 207.183, 187.543, 207.183, 163.97500000000002, 199.327, 215.039, 207.183, 242.53499999999997, 203.255, 230.75099999999998, 203.255, 179.687, 203.255, 222.89499999999998, 144.33499999999998, 207.183, 222.89499999999998, 195.399, 226.82299999999998, 191.471, 222.89499999999998, 199.327, 266.10299999999995, 195.399, 136.47899999999998, 207.183, 195.399, 199.327, 144.33499999999998, 199.327, 250.39099999999996, 195.399, 187.543, 199.327, 148.26300000000003, 230.75099999999998, 234.67899999999997, 195.399, 218.96699999999998, 203.255, 238.60699999999997, 203.255, 160.04700000000003, 203.255, 175.75900000000001, 199.327, 183.615, 207.183, 230.75099999999998, 187.543, 211.111, 203.255, 152.19100000000003, 203.255, 195.399, 195.399, 269.885, 207.053, 242.39599999999996, 195.272, 183.49099999999999, 203.12600000000003, 207.053, 203.12600000000003, 226.688, 218.83400000000006, 222.76099999999997, 210.98000000000002, 199.199, 226.688, 195.272, 199.199, 210.98000000000002, 163.856, 203.12600000000003, 246.32299999999998, 199.199, 222.76099999999997, 191.34500000000003, 214.90700000000004, 199.199, 277.73900000000003, 207.053, 230.615, 207.053, 234.54200000000003, 191.34500000000003, 183.49099999999999, 203.12600000000003, 234.54200000000003, 195.272, 191.34500000000003, 203.12600000000003, 250.25, 218.83400000000006, 207.053, 171.70999999999998, 207.053, 191.34500000000003, 214.90700000000004, 195.272, 187.418, 203.12600000000003, 187.418, 191.34500000000003, 207.053, 203.12600000000003, 183.49099999999999, 203.12600000000003, 234.54200000000003, 218.83400000000006, 222.76099999999997, 203.12600000000003, 222.76099999999997, 214.90700000000004, 187.418, 195.272, 128.51300000000003, 203.12600000000003, 254.17700000000002, 195.272, 179.56400000000002, 203.12600000000003, 159.92900000000003, 199.199, 207.053, 222.76099999999997, 269.885], \"power_mean\": 204.15670110701106, \"energy_millijoules\": 13977.715830748928, \"energy_joules\": 13.977715830748927, \"coremark_score\": 4382.120947, \"coremarks_per_mhz\": 3.2412137181952665, \"ulpmark_cm_score\": 21.46273422872455}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [306.462, 341.823, 314.32, 385.042, 373.255, 212.166, 322.178, 294.675, 318.249, 337.894, 314.32, 322.178, 314.32, 318.249, 349.681, 302.533, 306.462, 326.107, 330.036], \"power_mean\": 320.5236842105263, \"energy_millijoules\": 1602.6184210526317, \"energy_joules\": 1.6026184210526317}}, \"1482000\": {\"active\": {\"elapsed_sec\": 62.444634147, \"elapsed_ns\": 62444634147, \"power_samples\": [242.39599999999996, 285.59299999999996, 254.17700000000002, 230.615, 250.25, 265.95799999999997, 277.73900000000003, 214.90700000000004, 277.73900000000003, 246.32299999999998, 246.32299999999998, 254.17700000000002, 246.32299999999998, 246.32299999999998, 230.615, 250.25, 269.885, 242.39599999999996, 191.34500000000003, 254.17700000000002, 301.30100000000004, 250.25, 234.54200000000003, 246.32299999999998, 269.885, 238.46900000000005, 269.885, 246.32299999999998, 238.46900000000005, 250.25, 262.03100000000006, 246.32299999999998, 246.32299999999998, 246.32299999999998, 293.447, 250.25, 273.812, 246.32299999999998, 320.93600000000004, 246.32299999999998, 199.199, 242.39599999999996, 254.17700000000002, 238.46900000000005, 238.46900000000005, 242.39599999999996, 210.98000000000002, 250.25, 258.10400000000004, 242.39599999999996, 242.39599999999996, 242.39599999999996, 277.73900000000003, 242.39599999999996, 218.83400000000006, 250.25, 242.39599999999996, 246.32299999999998, 258.10400000000004, 258.10400000000004, 301.30100000000004, 242.39599999999996, 242.39599999999996, 254.17700000000002, 309.155, 289.52, 262.03100000000006, 242.39599999999996, 246.32299999999998, 281.66600000000005, 246.32299999999998, 230.615, 246.32299999999998, 309.155, 246.32299999999998, 246.32299999999998, 250.25, 258.10400000000004, 258.10400000000004, 195.272, 246.32299999999998, 218.83400000000006, 246.32299999999998, 269.885, 238.46900000000005, 269.885, 246.32299999999998, 258.10400000000004, 246.32299999999998, 226.688, 258.10400000000004, 242.39599999999996, 246.32299999999998, 293.447, 258.10400000000004, 262.03100000000006, 238.46900000000005, 262.03100000000006, 254.17700000000002, 242.39599999999996, 242.39599999999996, 277.73900000000003, 250.25, 262.03100000000006, 242.39599999999996, 254.17700000000002, 258.10400000000004, 222.76099999999997, 258.10400000000004, 293.447, 250.25, 250.25, 254.17700000000002, 214.90700000000004, 250.25, 242.39599999999996, 246.32299999999998, 277.73900000000003, 246.32299999999998, 250.25, 250.25, 289.52, 242.39599999999996, 289.52, 293.447, 242.39599999999996, 317.009, 250.25, 269.885, 250.25, 226.688, 242.39599999999996, 234.54200000000003, 254.03499999999997, 230.47900000000004, 242.25700000000006, 289.369, 254.03499999999997, 218.70100000000002, 250.10900000000004, 250.10900000000004, 257.961, 226.553, 246.183, 234.40499999999997, 246.183, 238.33100000000002, 238.33100000000002, 273.66499999999996, 246.183, 226.553, 242.25700000000006, 269.73900000000003, 238.33100000000002, 265.813, 242.25700000000006, 277.591, 254.03499999999997, 234.40499999999997, 250.10900000000004, 261.88700000000006, 242.25700000000006, 265.813, 246.183, 202.997, 246.183, 234.40499999999997, 250.10900000000004, 246.183, 250.10900000000004, 273.66499999999996, 246.183, 328.629, 250.10900000000004, 261.88700000000006, 250.10900000000004, 195.14499999999998, 250.10900000000004, 230.47900000000004, 246.183, 277.591, 250.10900000000004, 324.703, 250.10900000000004, 273.66499999999996, 305.073, 250.10900000000004, 269.73900000000003, 254.03499999999997, 254.03499999999997, 234.40499999999997, 230.47900000000004, 254.03499999999997, 246.183, 246.183, 195.14499999999998, 242.25700000000006, 305.073, 246.183, 222.62699999999995, 246.183, 246.183, 281.51700000000005, 242.25700000000006, 250.10900000000004, 269.73900000000003, 246.183, 301.14700000000005, 246.183, 230.47900000000004, 242.25700000000006, 191.219, 242.25700000000006, 257.961, 254.03499999999997, 230.47900000000004, 222.62699999999995, 289.369, 257.961, 222.62699999999995, 250.10900000000004, 257.961, 254.03499999999997, 242.25700000000006, 242.25700000000006, 273.66499999999996, 257.961, 195.14499999999998, 246.183, 273.66499999999996, 250.10900000000004, 261.88700000000006, 242.25700000000006, 242.25700000000006, 257.961, 265.813, 250.10900000000004, 254.03499999999997, 250.10900000000004, 281.51700000000005, 242.25700000000006, 269.73900000000003, 250.10900000000004, 320.77700000000004, 273.66499999999996, 246.183, 238.33100000000002], \"power_mean\": 252.2516032388664, \"energy_millijoules\": 15751.759077245213, \"energy_joules\": 15.751759077245213, \"coremark_score\": 4804.689377, \"coremarks_per_mhz\": 3.2420306187584345, \"ulpmark_cm_score\": 19.045491905305745}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [341.649, 322.014, 329.868, 345.576, 318.087, 325.941, 337.722, 349.503, 341.649, 369.138, 325.941, 302.379, 329.868, 349.503, 333.795, 329.868, 322.014, 325.941, 341.649], \"power_mean\": 333.795, \"energy_millijoules\": 1668.9750000000001, \"energy_joules\": 1.668975}}, \"1586000\": {\"active\": {\"elapsed_sec\": 58.373430151, \"elapsed_ns\": 58373430151, \"power_samples\": [273.371, 281.21900000000005, 308.687, 289.067, 336.155, 281.21900000000005, 281.21900000000005, 324.38300000000004, 281.21900000000005, 316.53499999999997, 316.53499999999997, 304.76300000000003, 285.14300000000003, 285.14300000000003, 292.991, 261.59900000000005, 289.067, 292.991, 281.21900000000005, 238.05499999999995, 281.21900000000005, 273.371, 285.14300000000003, 332.231, 289.067, 308.687, 281.21900000000005, 273.371, 292.991, 261.59900000000005, 281.21900000000005, 257.67499999999995, 281.21900000000005, 304.76300000000003, 285.14300000000003, 320.45900000000006, 312.611, 289.067, 281.21900000000005, 355.775, 285.14300000000003, 245.90300000000002, 277.29499999999996, 308.687, 281.21900000000005, 261.59900000000005, 281.21900000000005, 249.827, 285.14300000000003, 308.687, 292.991, 277.29499999999996, 281.21900000000005, 289.067, 281.21900000000005, 261.59900000000005, 285.14300000000003, 340.07899999999995, 281.21900000000005, 308.687, 292.991, 332.231, 285.14300000000003, 292.991, 324.38300000000004, 289.067, 304.76300000000003, 285.14300000000003, 285.14300000000003, 273.371, 230.207, 285.14300000000003, 312.611, 289.067, 332.231, 281.21900000000005, 253.75099999999998, 285.14300000000003, 304.76300000000003, 281.21900000000005, 277.29499999999996, 269.447, 320.45900000000006, 277.29499999999996, 253.75099999999998, 289.067, 324.38300000000004, 277.29499999999996, 312.611, 281.21900000000005, 281.21900000000005, 438.179, 296.91499999999996, 289.067, 245.90300000000002, 277.29499999999996, 273.371, 273.371, 285.14300000000003, 281.21900000000005, 277.29499999999996, 289.067, 238.05499999999995, 273.371, 312.611, 281.21900000000005, 296.91499999999996, 277.29499999999996, 265.523, 277.29499999999996, 285.14300000000003, 273.371, 296.91499999999996, 277.29499999999996, 300.83900000000006, 281.21900000000005, 316.53499999999997, 289.067, 300.83900000000006, 292.991, 277.29499999999996, 292.991, 269.447, 320.45900000000006, 281.21900000000005, 285.14300000000003, 277.29499999999996, 281.21900000000005, 292.991, 281.21900000000005, 277.29499999999996, 241.97900000000004, 277.29499999999996, 320.45900000000006, 281.21900000000005, 292.991, 277.29499999999996, 245.90300000000002, 289.067, 241.97900000000004, 281.21900000000005, 308.687, 285.14300000000003, 273.371, 289.067, 292.991, 281.21900000000005, 265.523, 277.29499999999996, 304.76300000000003, 281.21900000000005, 296.91499999999996, 277.29499999999996, 257.67499999999995, 281.21900000000005, 265.523, 289.067, 253.75099999999998, 277.29499999999996, 238.05499999999995, 289.067, 344.00300000000004, 281.21900000000005, 281.21900000000005, 273.371, 257.67499999999995, 277.29499999999996, 281.21900000000005, 289.067, 336.155, 281.21900000000005, 265.523, 289.067, 300.83900000000006, 277.29499999999996, 265.523, 281.21900000000005, 300.83900000000006, 273.371, 320.45900000000006, 281.21900000000005, 336.155, 289.067, 359.69899999999996, 300.83900000000006, 289.067, 308.687, 289.067, 281.21900000000005, 281.21900000000005, 269.447, 269.447, 320.45900000000006, 285.14300000000003, 241.97900000000004, 277.29499999999996, 273.371, 281.21900000000005, 226.28300000000002, 281.21900000000005, 277.29499999999996, 277.29499999999996, 328.307, 289.067, 292.991, 289.067, 320.45900000000006, 292.991, 241.97900000000004, 281.21900000000005, 332.06899999999996, 284.99300000000005, 312.45399999999995, 281.07000000000005, 308.53100000000006, 288.91600000000005, 277.14700000000005, 277.14700000000005, 328.14599999999996, 277.14700000000005, 233.99400000000003, 284.99300000000005, 292.83900000000006, 281.07000000000005, 300.68500000000006, 281.07000000000005, 292.83900000000006, 284.99300000000005, 265.37800000000004, 281.07000000000005, 292.83900000000006], \"power_mean\": 287.18470995671, \"energy_millijoules\": 16763.956607093205, \"energy_joules\": 16.763956607093206, \"coremark_score\": 5139.890692, \"coremarks_per_mhz\": 3.2407885825977303, \"ulpmark_cm_score\": 17.895536658276917}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [325.692, 329.616, 317.844, 357.084, 341.388, 384.552, 286.452, 345.312, 329.616, 313.92, 357.084, 341.388, 333.54, 82.404, 361.008, 337.464, 341.388, 341.388, 392.4], \"power_mean\": 327.3442105263158, \"energy_millijoules\": 1636.721052631579, \"energy_joules\": 1.636721052631579}}, \"1690000\": {\"active\": {\"elapsed_sec\": 54.775591807, \"elapsed_ns\": 54775591807, \"power_samples\": [347.76099999999997, 383.068, 351.68399999999997, 328.14599999999996, 351.68399999999997, 292.83900000000006, 339.91499999999996, 335.99199999999996, 351.68399999999997, 347.76099999999997, 328.14599999999996, 367.376, 351.68399999999997, 367.376, 332.06899999999996, 347.76099999999997, 351.68399999999997, 339.91499999999996, 343.83799999999997, 402.683, 390.914, 343.83799999999997, 304.60800000000006, 351.68399999999997, 359.53, 343.83799999999997, 390.914, 351.68399999999997, 351.68399999999997, 343.83799999999997, 379.145, 351.68399999999997, 383.068, 347.76099999999997, 351.68399999999997, 347.76099999999997, 304.60800000000006, 347.76099999999997, 359.53, 347.76099999999997, 379.145, 343.83799999999997, 351.68399999999997, 343.83799999999997, 332.06899999999996, 324.22299999999996, 406.606, 343.83799999999997, 316.37699999999995, 339.91499999999996, 316.37699999999995, 351.68399999999997, 347.76099999999997, 343.83799999999997, 332.06899999999996, 339.91499999999996, 347.76099999999997, 347.76099999999997, 367.376, 347.76099999999997, 351.68399999999997, 343.83799999999997, 386.991, 343.83799999999997, 320.29999999999995, 370.95500000000004, 327.82399999999996, 347.429, 347.429, 339.587, 323.903, 363.11300000000006, 327.82399999999996, 343.50800000000004, 359.192, 347.429, 300.37699999999995, 351.35, 367.034, 363.11300000000006, 394.481, 351.35, 335.66600000000005, 284.693, 347.429, 351.35, 347.429, 351.35, 347.429, 359.192, 339.587, 402.323, 355.27099999999996, 347.429, 351.35, 374.876, 351.35, 370.95500000000004, 347.429, 347.429, 347.429, 370.95500000000004, 347.429, 319.98199999999997, 343.50800000000004, 351.35, 347.429, 331.745, 319.98199999999997, 335.66600000000005, 347.429, 359.192, 347.429, 296.456, 339.587, 327.82399999999996, 343.50800000000004, 312.14, 351.35, 370.95500000000004, 351.35, 331.745, 359.192, 367.034, 347.429, 339.587, 347.429, 319.98199999999997, 347.429, 347.429, 343.50800000000004, 370.95500000000004, 339.587, 280.77200000000005, 359.192, 335.66600000000005, 347.429, 300.37699999999995, 335.66600000000005, 370.95500000000004, 343.50800000000004, 398.40200000000004, 374.876, 343.50800000000004, 374.876, 339.587, 406.244, 351.35, 367.034, 343.50800000000004, 316.06100000000004, 363.11300000000006, 374.876, 347.429, 351.35, 347.429, 339.587, 359.192, 374.876, 347.429, 378.797, 347.429, 296.456, 339.587, 351.35, 335.66600000000005, 316.06100000000004, 355.27099999999996, 292.53499999999997, 355.27099999999996, 351.35, 351.35, 386.639, 351.35, 363.11300000000006, 335.66600000000005, 406.244, 343.50800000000004, 363.11300000000006, 347.429, 418.00700000000006, 347.429, 312.14, 351.35, 347.26300000000003, 359.023, 355.10299999999995, 347.26300000000003, 347.26300000000003, 351.183, 323.74300000000005, 382.543, 370.783, 343.34299999999996, 378.62300000000005, 355.10299999999995, 339.423, 339.423, 366.86300000000006, 362.943, 304.14300000000003, 351.183, 355.10299999999995, 351.183, 323.74300000000005, 378.62300000000005, 413.903, 335.50300000000004, 347.26300000000003, 343.34299999999996, 351.183, 359.023, 355.10299999999995, 390.38300000000004, 335.50300000000004, 331.58299999999997], \"power_mean\": 349.24695833333334, \"energy_millijoules\": 19130.208829503004, \"energy_joules\": 19.130208829503005, \"coremark_score\": 5477.451159, \"coremarks_per_mhz\": 3.24109536035503, \"ulpmark_cm_score\": 15.682003404862668}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [349.147, 384.454, 356.993, 345.224, 360.916, 360.916, 353.07, 345.224, 364.839, 325.609, 349.147, 360.916, 341.301, 364.839, 349.147, 360.916, 353.07, 364.839, 353.07], \"power_mean\": 354.9282631578947, \"energy_millijoules\": 1774.6413157894735, \"energy_joules\": 1.7746413157894736}}, \"1794000\": {\"active\": {\"elapsed_sec\": 51.580129079, \"elapsed_ns\": 51580129079, \"power_samples\": [460.943, 390.38300000000004, 472.703, 437.423, 417.823, 472.703, 437.423, 460.943, 413.903, 453.10299999999995, 429.58299999999997, 382.543, 425.663, 398.22299999999996, 445.26300000000003, 457.023, 449.183, 433.50300000000004, 413.903, 355.10299999999995, 437.423, 386.46299999999997, 433.50300000000004, 429.58299999999997, 417.823, 382.543, 413.903, 472.703, 433.50300000000004, 433.50300000000004, 445.26300000000003, 402.14300000000003, 433.50300000000004, 409.98300000000006, 437.423, 472.703, 421.74300000000005, 468.783, 421.74300000000005, 433.50300000000004, 441.34299999999996, 386.46299999999997, 429.58299999999997, 460.943, 433.50300000000004, 472.703, 433.50300000000004, 413.903, 429.58299999999997, 437.423, 429.58299999999997, 406.063, 437.423, 398.22299999999996, 440.58299999999997, 456.24699999999996, 432.751, 448.41499999999996, 424.919, 456.24699999999996, 436.66700000000003, 464.07899999999995, 456.24699999999996, 436.66700000000003, 444.499, 428.83500000000004, 448.41499999999996, 444.499, 362.26300000000003, 432.751, 467.995, 436.66700000000003, 432.751, 428.83500000000004, 432.751, 401.423, 440.58299999999997, 448.41499999999996, 409.255, 444.499, 436.66700000000003, 460.163, 405.33900000000006, 428.83500000000004, 483.659, 428.83500000000004, 471.91100000000006, 436.66700000000003, 428.83500000000004, 436.66700000000003, 444.499, 421.00300000000004, 436.66700000000003, 448.41499999999996, 475.827, 432.751, 464.07899999999995, 444.499, 444.499, 440.58299999999997, 444.499, 444.499, 381.84299999999996, 421.00300000000004, 393.591, 464.07899999999995, 436.66700000000003, 413.17100000000005, 464.07899999999995, 428.83500000000004, 381.84299999999996, 428.83500000000004, 377.927, 448.41499999999996, 432.751, 428.83500000000004, 460.163, 421.00300000000004, 452.331, 436.66700000000003, 479.74300000000005, 448.41499999999996, 440.58299999999997, 417.087, 495.40700000000004, 448.41499999999996, 424.919, 393.591, 436.66700000000003, 401.423, 428.83500000000004, 475.827, 444.499, 421.00300000000004, 444.499, 397.50700000000006, 428.83500000000004, 374.01099999999997, 428.83500000000004, 444.499, 452.331, 436.66700000000003, 417.087, 417.087, 460.163, 385.759, 436.66700000000003, 428.83500000000004, 444.499, 428.83500000000004, 424.919, 440.58299999999997, 448.41499999999996, 475.827, 444.499, 460.163, 436.66700000000003, 381.84299999999996, 405.33900000000006, 460.163, 448.41499999999996, 460.163, 448.41499999999996, 389.67499999999995, 432.751, 464.07899999999995, 432.751, 428.83500000000004, 428.83500000000004, 464.07899999999995, 440.58299999999997, 405.33900000000006, 452.331, 448.03100000000006, 612.419, 432.375, 455.85900000000004, 381.49300000000005, 432.375, 455.85900000000004, 432.375, 428.461, 428.461, 385.40700000000004, 448.03100000000006, 440.203, 483.25700000000006, 451.94500000000005, 444.11699999999996, 428.461, 467.601, 451.94500000000005, 420.63300000000004, 440.203, 463.687, 448.03100000000006, 408.89099999999996, 432.375, 424.547, 432.375, 432.375, 412.80499999999995, 451.94500000000005, 424.547], \"power_mean\": 435.0603137254902, \"energy_millijoules\": 22440.46713911102, \"energy_joules\": 22.44046713911102, \"coremark_score\": 5816.771692, \"coremarks_per_mhz\": 3.2423476544035674, \"ulpmark_cm_score\": 13.368705657518879}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [395.92, 384.16, 384.16, 388.08, 388.08, 384.16, 419.44, 384.16, 395.92, 348.88, 442.96, 384.16, 403.76, 403.76, 388.08, 384.16, 372.4, 380.24, 411.6], \"power_mean\": 391.7936842105263, \"energy_millijoules\": 1958.9684210526316, \"energy_joules\": 1.9589684210526317}}, \"1872000\": {\"active\": {\"elapsed_sec\": 49.438258427, \"elapsed_ns\": 49438258427, \"power_samples\": [412.80499999999995, 432.375, 483.25700000000006, 467.601, 448.03100000000006, 455.85900000000004, 494.999, 455.85900000000004, 522.397, 463.687, 479.34299999999996, 459.773, 498.913, 471.515, 471.515, 436.289, 479.34299999999996, 483.25700000000006, 498.913, 459.773, 475.429, 483.25700000000006, 475.429, 483.25700000000006, 487.17100000000005, 475.429, 514.569, 448.03100000000006, 448.03100000000006, 487.17100000000005, 432.375, 467.601, 475.429, 451.94500000000005, 487.17100000000005, 471.515, 408.89099999999996, 487.17100000000005, 440.203, 459.773, 459.773, 459.773, 412.80499999999995, 459.773, 483.25700000000006, 479.34299999999996, 487.17100000000005, 479.34299999999996, 475.429, 424.547, 514.569, 448.03100000000006, 498.913, 510.655, 514.569, 623.687, 459.38300000000004, 494.591, 494.591, 471.119, 467.207, 463.29499999999996, 463.29499999999996, 478.943, 435.91100000000006, 514.151, 475.03100000000006, 475.03100000000006, 475.03100000000006, 443.735, 478.943, 459.38300000000004, 478.943, 459.38300000000004, 459.38300000000004, 486.76700000000005, 467.207, 439.823, 459.38300000000004, 486.76700000000005, 478.943, 455.471, 459.38300000000004, 514.151, 467.207, 506.327, 459.38300000000004, 502.41499999999996, 475.03100000000006, 486.76700000000005, 459.38300000000004, 471.119, 463.29499999999996, 475.03100000000006, 467.207, 482.855, 482.855, 451.55899999999997, 447.64700000000005, 498.50300000000004, 478.943, 486.76700000000005, 475.03100000000006, 525.8870000000001, 475.03100000000006, 482.855, 459.38300000000004, 494.591, 498.50300000000004, 463.29499999999996, 443.735, 498.50300000000004, 467.207, 471.119, 459.38300000000004, 475.03100000000006, 478.943, 545.447, 412.43899999999996, 478.943, 478.943, 478.943, 494.591, 475.03100000000006, 455.471, 467.207, 439.823, 482.855, 498.50300000000004, 471.119, 518.063, 471.119, 471.119, 475.03100000000006, 463.29499999999996, 431.999, 459.38300000000004, 471.119, 482.855, 455.471, 475.03100000000006, 502.41499999999996, 471.119, 463.29499999999996, 502.41499999999996, 467.207, 447.64700000000005, 475.03100000000006, 506.327, 475.03100000000006, 494.591, 455.471, 498.50300000000004, 478.943, 482.855, 478.943, 521.975, 482.855, 435.91100000000006, 467.207, 486.76700000000005, 475.03100000000006, 471.119, 471.119, 459.38300000000004, 439.823, 471.119, 482.855, 471.119, 494.591, 506.327, 447.64700000000005, 486.76700000000005, 486.76700000000005, 502.41499999999996, 451.173, 458.99300000000005, 513.7330000000001, 478.543, 478.543, 474.63300000000004, 490.273, 470.72299999999996, 470.72299999999996, 494.183, 505.913, 451.173, 462.903, 443.35299999999995, 474.63300000000004, 498.09299999999996, 470.72299999999996, 451.173, 494.183, 470.72299999999996], \"power_mean\": 474.4195128205128, \"energy_millijoules\": 23454.474477631953, \"energy_joules\": 23.454474477631955, \"coremark_score\": 6068.697657, \"coremarks_per_mhz\": 3.2418256714743587, \"ulpmark_cm_score\": 12.790736381073206}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [395.314, 438.368, 430.54, 379.658, 367.916, 426.626, 375.744, 414.884, 391.4, 395.314, 391.4, 442.282, 465.766, 391.4, 422.712, 422.712, 336.604, 407.056, 395.314], \"power_mean\": 404.79, \"energy_millijoules\": 2023.95, \"energy_joules\": 2.02395}}}}, \"5\": {\"freqs\": {\"449000\": {\"active\": {\"elapsed_sec\": 207.055126775, \"elapsed_ns\": 207055126775, \"power_samples\": [13.252999999999986, 24.983000000000004, 40.62299999999999, 21.07299999999998, 9.343000000000018, 24.983000000000004, 32.803, 9.343000000000018, 21.07299999999998, 9.343000000000018, 32.803, 32.803, 13.252999999999986, 17.16300000000001, 64.08300000000003, 32.803, -18.026999999999987, -64.947, 44.533000000000015, 28.89300000000003, 79.72300000000001, 56.263000000000034, 36.71300000000002, 24.983000000000004, 52.35300000000001, 17.16300000000001, 60.173, 36.71300000000002, 21.07299999999998, 21.07299999999998, 21.07299999999998, 52.35300000000001, 36.71300000000002, 48.442999999999984, 24.983000000000004, 52.35300000000001, 17.16300000000001, 17.16300000000001, 28.89300000000003, 9.343000000000018, 24.983000000000004, 24.983000000000004, 32.803, 1.5230000000000246, 21.07299999999998, 32.803, 21.07299999999998, 24.983000000000004, -25.84699999999998, 52.35300000000001, 24.983000000000004, 52.35300000000001, 28.89300000000003, 32.803, 24.983000000000004, 44.533000000000015, 40.62299999999999, 13.252999999999986, 24.983000000000004, 24.983000000000004, 36.71300000000002, -32.56299999999999, 61.661, -268.123, 53.809000000000026, 38.10500000000002, 30.252999999999986, 34.17900000000003, 26.326999999999998, 49.88299999999998, 26.326999999999998, 34.17900000000003, 22.40100000000001, 10.62299999999999, 18.475000000000023, 26.326999999999998, 30.252999999999986, 26.326999999999998, -1.1549999999999727, 34.17900000000003, 34.17900000000003, 26.326999999999998, 30.252999999999986, 26.326999999999998, 22.40100000000001, 42.031000000000006, 22.40100000000001, 45.956999999999994, 26.326999999999998, 10.62299999999999, 6.697000000000003, 26.326999999999998, 2.771000000000015, 22.40100000000001, 34.17900000000003, 26.326999999999998, 34.17900000000003, 30.252999999999986, 6.697000000000003, 38.10500000000002, 2.771000000000015, 30.252999999999986, 10.62299999999999, 53.809000000000026, 6.697000000000003, 42.031000000000006, 18.475000000000023, 18.475000000000023, 18.475000000000023, 30.252999999999986, 18.475000000000023, 2.771000000000015, 34.17900000000003, 65.58699999999999, 22.40100000000001, 22.40100000000001, 18.475000000000023, 6.697000000000003, 34.17900000000003, 30.252999999999986, 26.326999999999998, 38.10500000000002, 22.40100000000001, 14.548999999999978, 61.661, 14.548999999999978, 30.252999999999986, -48.266999999999996, 34.17900000000003, 81.291, 26.326999999999998, 26.326999999999998, 34.17900000000003, 22.40100000000001, 26.326999999999998, 45.956999999999994, 2.771000000000015, 49.88299999999998, 22.40100000000001, 49.88299999999998, 22.40100000000001, 30.252999999999986, 14.548999999999978, 18.475000000000023, 57.735000000000014, 34.17900000000003, 14.548999999999978, 18.475000000000023, 26.326999999999998, 85.21699999999998, 14.548999999999978, 53.809000000000026, 14.548999999999978, 34.17900000000003, 73.43900000000002, 34.17900000000003, 10.62299999999999, -75.749, 65.58699999999999, 22.40100000000001, 73.43900000000002, 30.252999999999986, 49.88299999999998, 26.326999999999998, 26.326999999999998, 53.809000000000026, 22.40100000000001, 26.326999999999998, 14.548999999999978, 18.475000000000023, 6.697000000000003, 26.326999999999998, 38.10500000000002, -16.85899999999998, 30.252999999999986, 34.17900000000003, -67.89699999999999, 30.252999999999986, 30.252999999999986, 46.13499999999999, 50.06299999999999, 34.351, 18.63900000000001, 38.278999999999996, 81.48700000000002, 30.423000000000002, 30.423000000000002, -1.0009999999999764, 2.927000000000021, 34.351, 26.495000000000005, 38.278999999999996, 26.495000000000005, 18.63900000000001, 26.495000000000005, 38.278999999999996, 34.351, 22.567000000000007, 61.84699999999998, 30.423000000000002, 22.567000000000007, 42.206999999999994, 26.495000000000005, 22.567000000000007, -28.497000000000014, -1.0009999999999764, 22.567000000000007, 14.711000000000013, 26.495000000000005, 65.77500000000003, 34.351, 22.567000000000007, 65.77500000000003, 22.567000000000007, 38.278999999999996, 30.423000000000002, 18.63900000000001, 53.990999999999985, 26.495000000000005, 34.351, 6.855000000000018, 14.711000000000013, 14.711000000000013, 26.495000000000005, 26.495000000000005, 53.990999999999985, 6.855000000000018, 34.351, 38.278999999999996, -4.928999999999974, 26.495000000000005, 34.351, 34.351, 30.423000000000002, -8.856999999999971, 2.927000000000021, 69.70300000000003, 30.423000000000002, 14.711000000000013, 26.495000000000005, 46.13499999999999, 26.495000000000005, 22.567000000000007, 26.495000000000005, 22.567000000000007, 6.855000000000018, 10.783000000000015, 22.567000000000007, 14.711000000000013, 26.495000000000005, 38.278999999999996, -110.98499999999999, 6.855000000000018, 30.423000000000002, 2.927000000000021, 38.278999999999996, 38.278999999999996, 30.423000000000002, 38.278999999999996, 53.990999999999985, 10.783000000000015, 38.278999999999996, 22.567000000000007, 38.278999999999996, 61.84699999999998, 26.495000000000005, 6.855000000000018, 14.711000000000013, 18.63900000000001, 38.278999999999996, 38.278999999999996, 10.783000000000015, 34.351, 30.423000000000002, 42.206999999999994, 42.206999999999994, 26.495000000000005, 14.711000000000013, 26.495000000000005, 53.990999999999985, 30.423000000000002, 50.06299999999999, -12.784999999999968, 10.783000000000015, 34.351, 10.783000000000015, 22.567000000000007, 26.495000000000005, 18.63900000000001, 34.351, -4.928999999999974, 34.351, 50.06299999999999, 22.567000000000007, 30.423000000000002, -12.784999999999968, 26.495000000000005, 50.06299999999999, -4.853000000000009, 58.011000000000024, 26.579000000000008, 42.295000000000016, 18.721000000000004, 38.365999999999985, 30.50799999999998, 34.43700000000001, 54.081999999999994, 54.081999999999994, 38.365999999999985, 26.579000000000008, 14.79200000000003, 30.50799999999998, -16.639999999999986, 26.579000000000008, 54.081999999999994, 30.50799999999998, 6.934000000000026, 10.863, 22.650000000000034, 50.15300000000002, 42.295000000000016, 18.721000000000004, 14.79200000000003, 22.650000000000034, 30.50799999999998, 30.50799999999998, 14.79200000000003, 26.579000000000008, 26.579000000000008, 18.721000000000004, 34.43700000000001, 34.43700000000001, 38.365999999999985, 26.579000000000008, 10.863, 42.295000000000016, 26.579000000000008, 18.721000000000004, 14.79200000000003, 18.721000000000004, 30.50799999999998, 34.43700000000001, 81.58499999999998, 34.43700000000001, 101.23000000000002, 18.721000000000004, 50.15300000000002, 30.50799999999998, 42.295000000000016, 54.081999999999994, 38.365999999999985, 34.43700000000001, 26.579000000000008, 14.79200000000003, 18.721000000000004, 6.934000000000026, 61.94, 65.86900000000003, 26.579000000000008, 3.0049999999999955, 10.863, 50.15300000000002, 26.579000000000008, 22.650000000000034, 34.43700000000001, 30.50799999999998, 26.579000000000008, 42.295000000000016, 6.934000000000026, 14.79200000000003, 38.365999999999985, 22.650000000000034, 38.365999999999985, 10.863, 38.365999999999985, 18.721000000000004, 30.50799999999998, -4.853000000000009, 26.579000000000008, 14.79200000000003, 26.579000000000008, 42.295000000000016, 50.15300000000002, 10.863, 14.79200000000003, 46.22399999999999, 42.295000000000016, 22.650000000000034, 30.50799999999998, -0.9239999999999782, 46.22399999999999, 6.934000000000026, 14.79200000000003, 22.650000000000034, 69.798, 30.50799999999998, 18.721000000000004, 38.365999999999985, 14.79200000000003, 34.43700000000001, 30.50799999999998, 38.365999999999985, 34.43700000000001, 22.650000000000034, 30.50799999999998, 30.50799999999998, 14.79200000000003, 10.863, 65.86900000000003, 26.579000000000008, 46.22399999999999, 22.650000000000034, 34.43700000000001, 6.934000000000026, 38.365999999999985, 26.579000000000008, 30.593000000000018, 50.242999999999995, 30.593000000000018, 18.802999999999997, 30.593000000000018, 18.802999999999997, 46.31299999999999, 22.733000000000004, 62.033000000000015, 26.66300000000001, 34.523000000000025, 30.593000000000018, 42.38299999999998, 54.173, 22.733000000000004, 34.523000000000025, 10.942999999999984, 38.45300000000003, 34.523000000000025, 69.89300000000003, 26.66300000000001, -40.14699999999999, 7.013000000000034, 34.523000000000025, 26.66300000000001, -8.706999999999994, 26.66300000000001, 26.66300000000001, 30.593000000000018, 14.87299999999999, 54.173, 42.38299999999998, 42.38299999999998, 34.523000000000025, 26.66300000000001, 14.87299999999999, 30.593000000000018, 34.523000000000025, 18.802999999999997, 34.523000000000025, 30.593000000000018, 26.66300000000001, 34.523000000000025, 26.66300000000001, 22.733000000000004, 14.87299999999999, 7.013000000000034, 38.45300000000003, 46.31299999999999, 18.802999999999997, 26.66300000000001, 77.75299999999999, 22.733000000000004, 26.66300000000001, 34.523000000000025, 10.942999999999984, 42.38299999999998, 30.593000000000018, 34.523000000000025, 26.66300000000001, 42.38299999999998, 30.593000000000018, 18.802999999999997, 42.38299999999998, 10.942999999999984, 22.733000000000004, 58.10300000000001, 26.66300000000001, 14.87299999999999, 3.083000000000027, -130.537, 10.942999999999984, -12.637, 10.942999999999984, 14.87299999999999, 34.523000000000025, 34.523000000000025, 50.242999999999995, 30.593000000000018, 26.66300000000001, 14.87299999999999, -4.776999999999987, 22.733000000000004, 34.523000000000025, 46.31299999999999, 14.87299999999999, -0.84699999999998, 26.66300000000001, 10.942999999999984, 30.593000000000018, 14.87299999999999, -36.216999999999985, 3.083000000000027, 38.45300000000003, 26.66300000000001, 58.10300000000001, 50.242999999999995, 26.66300000000001, 26.66300000000001, 73.82299999999998, -48.007000000000005, -51.93699999999998, 34.523000000000025, 38.45300000000003, 26.66300000000001, 34.523000000000025, 38.45300000000003, 26.66300000000001, 26.66300000000001, 42.38299999999998, 30.593000000000018, 22.733000000000004, 26.66300000000001, 62.033000000000015, 30.593000000000018, 50.242999999999995, -110.887, 30.593000000000018, 22.650000000000034, 30.50799999999998, 22.650000000000034, 38.365999999999985, 26.579000000000008, 22.650000000000034, 6.934000000000026, 30.50799999999998, 34.43700000000001, 18.721000000000004, 34.43700000000001, 26.579000000000008, 34.43700000000001, 30.50799999999998, -52.001000000000005, 81.58499999999998, 34.43700000000001, 22.650000000000034, 50.15300000000002, -4.853000000000009, 22.650000000000034, 58.011000000000024, -16.639999999999986, 42.295000000000016, 26.579000000000008, 26.579000000000008, 26.579000000000008, 30.50799999999998, 26.579000000000008, 26.579000000000008, 46.22399999999999, 30.50799999999998, 22.650000000000034, 18.721000000000004, 54.081999999999994, 26.579000000000008, 26.579000000000008, 38.365999999999985, 22.650000000000034, 42.295000000000016, 10.863, 22.650000000000034, 50.15300000000002, 26.579000000000008, 26.579000000000008, 10.863, -20.569000000000017, 65.86900000000003, 26.579000000000008, 22.650000000000034, 14.79200000000003, 30.50799999999998, 30.50799999999998, 30.50799999999998, 10.863, 34.43700000000001, 46.22399999999999, 22.650000000000034, 26.579000000000008, 22.650000000000034, 38.365999999999985, 22.650000000000034, 22.650000000000034, 26.579000000000008, 42.295000000000016, 26.579000000000008, 34.43700000000001, 30.50799999999998, 34.43700000000001, 22.650000000000034, 34.43700000000001, 10.863, 69.798, 22.650000000000034, 10.863, 58.011000000000024, 30.50799999999998, 54.081999999999994, 26.579000000000008, -4.853000000000009, 30.50799999999998, 30.50799999999998, 14.79200000000003, 38.365999999999985, 38.365999999999985, 50.15300000000002, 50.15300000000002, 22.650000000000034, 26.579000000000008, 22.650000000000034, 26.579000000000008, 26.579000000000008, 26.579000000000008, 26.579000000000008, 26.579000000000008, 65.86900000000003, 34.43700000000001, 10.863, 18.721000000000004, 42.295000000000016, 26.579000000000008, 46.22399999999999, 22.650000000000034, 38.365999999999985, 34.43700000000001, 38.365999999999985, 26.579000000000008, 38.365999999999985, 38.365999999999985, 30.50799999999998, -4.853000000000009, 30.50799999999998, 38.365999999999985, 22.650000000000034, 14.79200000000003, 34.43700000000001, 30.50799999999998, 38.365999999999985, 22.650000000000034, 11.023000000000025, 18.88499999999999, 38.54000000000002, 22.81600000000003, 11.023000000000025, 66.05700000000002, 26.747000000000014, -24.355999999999995, 26.747000000000014, 42.471000000000004, 46.40199999999999, 30.677999999999997, 22.81600000000003, 11.023000000000025, 30.677999999999997, -20.42500000000001, 58.19499999999999, 50.33300000000003, 34.60899999999998, 38.54000000000002, 14.954000000000008, 26.747000000000014, -0.7699999999999818, 26.747000000000014, 38.54000000000002, 38.54000000000002, 22.81600000000003, 14.954000000000008, 26.747000000000014, 46.40199999999999, 30.677999999999997, 26.747000000000014, 7.0919999999999845, 26.747000000000014, 11.023000000000025, 34.60899999999998, 7.0919999999999845, 14.954000000000008, 34.60899999999998, 30.677999999999997, 26.747000000000014, 26.747000000000014, 34.60899999999998, 38.54000000000002, 7.0919999999999845, 26.747000000000014, 46.40199999999999, 22.81600000000003, 18.88499999999999, 22.81600000000003, 69.988, 26.747000000000014, 54.26400000000001, 26.747000000000014, 54.26400000000001, 18.88499999999999, 22.81600000000003, 18.88499999999999, 30.677999999999997, 18.88499999999999, 46.40199999999999, 26.747000000000014, 26.747000000000014, 11.023000000000025, 26.747000000000014, 7.0919999999999845, 38.54000000000002, 11.023000000000025, 38.54000000000002, 14.954000000000008, 26.747000000000014, 26.747000000000014, 22.81600000000003, 26.747000000000014, 73.91899999999998, 11.023000000000025, 26.747000000000014, 34.60899999999998, 34.60899999999998, 22.81600000000003, 30.677999999999997, 18.88499999999999, 22.81600000000003, 73.91899999999998, 18.88499999999999, 38.54000000000002, 30.677999999999997, 11.023000000000025, 34.60899999999998, 26.747000000000014, 30.677999999999997, 38.54000000000002, 22.81600000000003, 26.747000000000014, 14.954000000000008, 58.19499999999999, 30.677999999999997, 38.54000000000002, -126.56199999999998, 18.88499999999999, 66.05700000000002, 38.54000000000002, 30.677999999999997, 50.33300000000003, 38.54000000000002, 18.88499999999999, 26.747000000000014, 54.26400000000001, 26.747000000000014, 22.81600000000003, 18.88499999999999, 26.747000000000014, 38.54000000000002, -24.355999999999995, 30.677999999999997, 30.677999999999997, 30.677999999999997, 42.471000000000004, 26.747000000000014, 30.677999999999997, 18.88499999999999, 46.40199999999999, 22.81600000000003, 54.26400000000001, 30.677999999999997, 18.88499999999999, -0.7699999999999818, 11.023000000000025, 46.40199999999999, 38.54000000000002, -12.562999999999988, 38.54000000000002, 30.677999999999997, 26.747000000000014, 14.954000000000008, 18.88499999999999, 30.677999999999997, 30.677999999999997, 22.81600000000003, 22.81600000000003, 26.747000000000014, 38.54000000000002, 38.54000000000002, 14.954000000000008, -177.665, -20.42500000000001, 22.81600000000003, 34.60899999999998, 26.747000000000014, 3.1610000000000014, 26.747000000000014, 30.677999999999997, 18.88499999999999, 34.60899999999998, 42.471000000000004, 30.677999999999997, 22.81600000000003, 26.747000000000014, 22.81600000000003, 22.81600000000003, -0.7699999999999818], \"power_mean\": 26.484162162162168, \"energy_millijoules\": 5483.681554016145, \"energy_joules\": 5.483681554016145, \"coremark_score\": 1449.016359, \"coremarks_per_mhz\": 3.2272079265033407, \"ulpmark_cm_score\": 54.70777196759094}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [324.53, 316.71, 304.98, 304.98, 328.44, 43.01, 293.25, 320.62, 304.98, 301.07, 285.43, 312.8, 293.25, 304.98, 293.25, 301.07, 293.25, 293.25, 293.25], \"power_mean\": 290.16315789473686, \"energy_millijoules\": 1450.8157894736842, \"energy_joules\": 1.4508157894736842}}, \"546000\": {\"active\": {\"elapsed_sec\": 169.934882302, \"elapsed_ns\": 169934882302, \"power_samples\": [34.60899999999998, 38.54000000000002, 50.33300000000003, 18.88499999999999, 34.60899999999998, 46.40199999999999, 22.81600000000003, 42.471000000000004, 34.60899999999998, 46.40199999999999, 38.54000000000002, 38.54000000000002, 77.85000000000002, 58.19499999999999, 34.60899999999998, 7.0919999999999845, 42.471000000000004, 34.60899999999998, 58.19499999999999, 42.471000000000004, 38.54000000000002, 26.747000000000014, 58.19499999999999, 38.54000000000002, 38.54000000000002, 18.88499999999999, 62.12600000000003, 62.12600000000003, 26.747000000000014, 58.19499999999999, 30.677999999999997, 7.0919999999999845, 30.677999999999997, 26.747000000000014, 50.33300000000003, 42.471000000000004, 50.33300000000003, 22.81600000000003, 38.54000000000002, 34.60899999999998, 26.747000000000014, 54.26400000000001, 42.38299999999998, 30.593000000000018, 38.45300000000003, 10.942999999999984, 38.45300000000003, 42.38299999999998, 42.38299999999998, 18.802999999999997, 22.733000000000004, 14.87299999999999, 46.31299999999999, 26.66300000000001, 50.242999999999995, 38.45300000000003, 38.45300000000003, 42.38299999999998, 3.083000000000027, 46.31299999999999, 73.82299999999998, 38.45300000000003, 85.613, 30.593000000000018, 81.68299999999999, 22.733000000000004, 14.87299999999999, 38.45300000000003, 69.89300000000003, 10.942999999999984, 50.242999999999995, 38.45300000000003, 50.242999999999995, 38.45300000000003, 38.45300000000003, 34.523000000000025, 58.10300000000001, 81.68299999999999, 26.66300000000001, 18.802999999999997, -4.776999999999987, 58.10300000000001, 26.66300000000001, 22.733000000000004, 50.242999999999995, 58.10300000000001, 42.38299999999998, 34.523000000000025, 14.87299999999999, 38.45300000000003, 140.63299999999998, 42.38299999999998, 58.10300000000001, 46.31299999999999, -0.84699999999998, 30.593000000000018, 46.31299999999999, 26.66300000000001, 85.613, 10.942999999999984, 26.66300000000001, 69.89300000000003, 77.75299999999999, 30.593000000000018, 30.593000000000018, 50.242999999999995, 42.38299999999998, 58.10300000000001, 26.66300000000001, 38.45300000000003, 34.523000000000025, 34.523000000000025, 50.242999999999995, 34.523000000000025, 26.66300000000001, 73.82299999999998, 42.38299999999998, 26.66300000000001, 30.593000000000018, 26.66300000000001, 42.38299999999998, 58.10300000000001, 34.523000000000025, 50.242999999999995, 34.523000000000025, 65.96300000000002, 38.45300000000003, 42.38299999999998, 81.68299999999999, 26.66300000000001, 10.942999999999984, 34.523000000000025, 38.45300000000003, 18.802999999999997, 46.31299999999999, 42.38299999999998, 34.523000000000025, 54.173, 50.242999999999995, 18.802999999999997, 22.733000000000004, 50.242999999999995, 10.942999999999984, 54.173, 58.10300000000001, 46.31299999999999, 34.523000000000025, 18.802999999999997, 30.593000000000018, 46.31299999999999, 30.593000000000018, 42.38299999999998, 54.173, 73.82299999999998, 54.173, 42.38299999999998, 50.242999999999995, 26.66300000000001, 22.733000000000004, 50.242999999999995, 46.31299999999999, 66.05700000000002, 30.677999999999997, 46.40199999999999, 34.60899999999998, 18.88499999999999, 73.91899999999998, 30.677999999999997, 50.33300000000003, 14.954000000000008, 66.05700000000002, 38.54000000000002, 22.81600000000003, 30.677999999999997, 34.60899999999998, 50.33300000000003, 30.677999999999997, 38.54000000000002, 26.747000000000014, 66.05700000000002, 30.677999999999997, 30.677999999999997, 26.747000000000014, 26.747000000000014, 73.91899999999998, 3.1610000000000014, 3.1610000000000014, 30.677999999999997, 62.12600000000003, 50.33300000000003, 50.33300000000003, 18.88499999999999, 34.60899999999998, 26.747000000000014, -12.562999999999988, 46.40199999999999, 26.747000000000014, 54.26400000000001, 50.33300000000003, 26.747000000000014, -28.286999999999978, 54.26400000000001, 42.471000000000004, 81.781, 34.60899999999998, 50.33300000000003, 54.26400000000001, 30.677999999999997, 26.747000000000014, 26.747000000000014, 38.54000000000002, 30.677999999999997, 22.81600000000003, 46.40199999999999, 34.60899999999998, 34.60899999999998, 46.40199999999999, 18.88499999999999, 34.60899999999998, 3.1610000000000014, 34.60899999999998, 18.88499999999999, -0.7699999999999818, 30.677999999999997, 46.40199999999999, 38.54000000000002, 38.54000000000002, 46.40199999999999, 50.33300000000003, 38.54000000000002, 38.54000000000002, -0.7699999999999818, -272.009, 62.12600000000003, 50.33300000000003, 42.471000000000004, 38.54000000000002, 34.60899999999998, 34.60899999999998, 26.747000000000014, 50.33300000000003, 46.40199999999999, 22.81600000000003, 46.40199999999999, -12.562999999999988, 34.60899999999998, 50.33300000000003, 42.471000000000004, 34.60899999999998, 46.40199999999999, 62.12600000000003, 42.471000000000004, 46.40199999999999, 34.60899999999998, 69.988, 38.54000000000002, 58.19499999999999, 34.60899999999998, 18.88499999999999, 54.26400000000001, 66.05700000000002, 42.471000000000004, 14.954000000000008, 42.471000000000004, 66.05700000000002, 38.54000000000002, 3.1610000000000014, 46.40199999999999, 62.12600000000003, 50.33300000000003, 38.54000000000002, 34.60899999999998, 46.40199999999999, 7.0919999999999845, 42.471000000000004, 14.954000000000008, 66.05700000000002, 85.71199999999999, 30.677999999999997, 62.033000000000015, 42.38299999999998, 65.96300000000002, 38.45300000000003, 38.45300000000003, 26.66300000000001, 22.733000000000004, 58.10300000000001, 42.38299999999998, 46.31299999999999, 18.802999999999997, 34.523000000000025, 38.45300000000003, 38.45300000000003, 50.242999999999995, 46.31299999999999, 54.173, 42.38299999999998, -4.776999999999987, 22.733000000000004, 26.66300000000001, 22.733000000000004, 30.593000000000018, 7.013000000000034, 34.523000000000025, 38.45300000000003, 34.523000000000025, 42.38299999999998, 30.593000000000018, 38.45300000000003, 77.75299999999999, 50.242999999999995, 58.10300000000001, 38.45300000000003, 38.45300000000003, 46.31299999999999, 46.31299999999999, 18.802999999999997, 38.45300000000003, 62.033000000000015, 34.523000000000025, 62.033000000000015, 50.242999999999995, 46.31299999999999, 42.38299999999998, 26.66300000000001, 22.733000000000004, 50.242999999999995, 38.45300000000003, 54.173, 38.45300000000003, 46.31299999999999, 26.66300000000001, 30.593000000000018, 10.942999999999984, 65.96300000000002, 22.733000000000004, 34.523000000000025, 54.173, 42.38299999999998, 30.593000000000018, 65.96300000000002, 30.593000000000018, 42.38299999999998, 46.31299999999999, 34.523000000000025, 46.31299999999999, 38.45300000000003, 73.82299999999998, 30.593000000000018, 34.523000000000025, 46.31299999999999, 50.242999999999995, 7.013000000000034, 54.173, 14.87299999999999, 50.242999999999995, 26.66300000000001, 30.593000000000018, 46.31299999999999, 22.733000000000004, 89.543, 38.45300000000003, 30.593000000000018, 73.82299999999998, 50.242999999999995, 26.66300000000001, 3.083000000000027, 34.523000000000025, 42.38299999999998, 54.173, 38.45300000000003, 38.45300000000003, 18.802999999999997, 77.75299999999999, 38.45300000000003, -16.567000000000007, 34.523000000000025, 38.45300000000003, 50.242999999999995, 50.242999999999995, 30.593000000000018, 38.45300000000003, 34.523000000000025, 22.733000000000004, 34.523000000000025, 3.083000000000027, 22.733000000000004, 81.68299999999999, 38.45300000000003, 22.733000000000004, 38.45300000000003, 54.173, 34.523000000000025, 22.733000000000004, 50.242999999999995, 26.66300000000001, 10.942999999999984, 46.31299999999999, 42.38299999999998, 50.242999999999995, 38.45300000000003, 65.96300000000002, 30.593000000000018, 46.31299999999999, 22.733000000000004, 46.31299999999999, 65.96300000000002, 34.523000000000025, 42.38299999999998, 34.523000000000025, 22.733000000000004, 62.033000000000015, 22.733000000000004, 46.31299999999999, 58.10300000000001, 22.733000000000004, 34.523000000000025, 34.523000000000025, 50.242999999999995, -0.84699999999998, 50.242999999999995, 3.083000000000027, 42.38299999999998, 30.593000000000018, 46.31299999999999, 34.523000000000025, 38.45300000000003, 42.38299999999998, 34.523000000000025, -8.706999999999994, 26.66300000000001, 30.593000000000018, 50.242999999999995, 50.242999999999995, 69.89300000000003, -0.84699999999998, 26.66300000000001, 30.593000000000018, 30.593000000000018, 34.523000000000025, 38.45300000000003, 54.173, 34.523000000000025, 26.66300000000001, 38.45300000000003, 26.66300000000001, 34.523000000000025, 50.242999999999995, 26.66300000000001, 54.173, 30.593000000000018, 10.942999999999984, 26.66300000000001, 62.033000000000015, 22.733000000000004, 46.31299999999999, 38.45300000000003, 26.66300000000001, 58.10300000000001, 18.802999999999997, 26.66300000000001, 38.45300000000003, 42.38299999999998, 77.75299999999999, 38.45300000000003, 38.45300000000003, 34.523000000000025, 26.66300000000001, 38.45300000000003, 69.89300000000003, 42.38299999999998, 34.523000000000025, 50.242999999999995, 30.593000000000018, 46.31299999999999, 26.66300000000001, 62.033000000000015, 22.733000000000004, 34.523000000000025, 42.38299999999998, 34.523000000000025, 89.543, 34.523000000000025, 14.87299999999999, 26.66300000000001, 30.593000000000018, 30.593000000000018, 38.45300000000003, 22.733000000000004, 46.31299999999999, 38.45300000000003, 46.31299999999999, 81.68299999999999, 58.10300000000001, 50.242999999999995, 38.45300000000003, 50.242999999999995, -134.46699999999998, 85.613, 38.45300000000003, -8.706999999999994, 18.802999999999997, 30.593000000000018, 73.82299999999998, 42.38299999999998, 26.66300000000001, 30.593000000000018, 46.31299999999999, 34.523000000000025, 34.523000000000025, 65.96300000000002, 46.31299999999999, 54.173, 18.802999999999997, 34.523000000000025, 38.45300000000003, 42.38299999999998, 30.593000000000018, 38.45300000000003, 38.45300000000003, 30.593000000000018, 42.38299999999998, 18.802999999999997, 65.96300000000002, 46.31299999999999, 34.523000000000025, 65.96300000000002, 42.38299999999998, 50.242999999999995, 34.523000000000025, 42.38299999999998, -264.157, 50.242999999999995, 38.45300000000003, 58.10300000000001, 85.613, 34.523000000000025, 30.593000000000018, 34.523000000000025, 30.593000000000018, 30.593000000000018, -0.84699999999998, 38.45300000000003, 58.10300000000001, 38.45300000000003, -20.497000000000014, 22.733000000000004, 14.87299999999999, 34.523000000000025, 18.802999999999997, 22.733000000000004, 38.45300000000003, 50.242999999999995, 46.31299999999999, 30.593000000000018, 18.802999999999997, 42.38299999999998, 34.523000000000025, 46.31299999999999, 50.242999999999995, 38.45300000000003, 65.96300000000002, 30.593000000000018, 26.66300000000001, 26.66300000000001, 38.45300000000003, 42.38299999999998, 46.31299999999999, 26.66300000000001, 18.802999999999997, -40.14699999999999, 18.802999999999997, 50.242999999999995, 38.45300000000003, 42.38299999999998, 58.10300000000001, 26.66300000000001, 22.733000000000004, 77.75299999999999, 38.45300000000003, 22.733000000000004, 54.173, 38.45300000000003, -16.567000000000007, -0.84699999999998, 50.242999999999995, 30.593000000000018, 34.523000000000025, 22.733000000000004, 34.523000000000025, 46.31299999999999, 22.733000000000004, 50.242999999999995, 30.593000000000018, 30.593000000000018, 38.45300000000003, 54.173, 54.173, 34.523000000000025, -4.776999999999987, 26.66300000000001, -4.776999999999987, 34.523000000000025, 38.45300000000003, 54.173, 34.523000000000025, 62.033000000000015, -193.41699999999997, 50.242999999999995, 34.523000000000025, 7.013000000000034, 34.523000000000025, 50.242999999999995, 54.173, 22.733000000000004, 38.45300000000003, 38.45300000000003, 30.593000000000018, 30.593000000000018, 30.593000000000018, 65.96300000000002, 26.66300000000001, 26.66300000000001, 26.66300000000001, 42.38299999999998, 93.47300000000001, 26.66300000000001, 18.802999999999997, 34.523000000000025, 30.593000000000018, 26.66300000000001, 38.45300000000003, 65.96300000000002, 34.523000000000025, 30.593000000000018, 109.19299999999998, 26.66300000000001, 42.38299999999998, 10.942999999999984, 34.523000000000025, 30.593000000000018, 65.96300000000002, 46.31299999999999, 54.173, 14.87299999999999, 38.45300000000003, 54.173, 54.173, 42.38299999999998, 38.45300000000003, 38.45300000000003, 50.242999999999995, 30.593000000000018, 14.87299999999999, -71.58699999999999, 101.33300000000003, 38.45300000000003, 54.173, 30.593000000000018, 42.38299999999998, 30.593000000000018, 58.10300000000001, 50.242999999999995, 46.31299999999999, 22.733000000000004, 50.242999999999995, 42.38299999999998, 38.45300000000003], \"power_mean\": 36.967583832335336, \"energy_millijoules\": 6282.082007537224, \"energy_joules\": 6.282082007537224, \"coremark_score\": 1765.536723, \"coremarks_per_mhz\": 3.233583741758242, \"ulpmark_cm_score\": 47.75486847195896}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [314.48, 227.998, 298.756, 294.825, 306.618, 306.618, 302.687, 322.342, 306.618, 322.342, 290.894, 290.894, 294.825, 294.825, 294.825, 302.687, 298.756, 306.618, 271.239], \"power_mean\": 297.30773684210527, \"energy_millijoules\": 1486.5386842105263, \"energy_joules\": 1.4865386842105264}}, \"676000\": {\"active\": {\"elapsed_sec\": 137.14933494, \"elapsed_ns\": 137149334940, \"power_samples\": [77.75299999999999, 46.31299999999999, 85.613, 50.242999999999995, 65.96300000000002, 46.31299999999999, 62.033000000000015, 54.173, 54.173, 38.45300000000003, 46.31299999999999, 58.10300000000001, 81.68299999999999, 54.173, 77.75299999999999, 54.173, 38.45300000000003, 42.38299999999998, 38.45300000000003, 65.96300000000002, 50.242999999999995, 38.45300000000003, 38.45300000000003, 54.173, 62.033000000000015, 46.31299999999999, 54.173, 62.033000000000015, 101.33300000000003, 58.10300000000001, 38.45300000000003, 42.38299999999998, 50.242999999999995, 50.242999999999995, 46.31299999999999, 62.033000000000015, 50.242999999999995, 65.96300000000002, 54.173, 50.242999999999995, 62.033000000000015, 65.96300000000002, 50.242999999999995, 73.82299999999998, 50.242999999999995, 65.96300000000002, -24.42700000000002, 22.733000000000004, 50.242999999999995, 97.40300000000002, 54.173, 38.45300000000003, 34.523000000000025, 22.733000000000004, 62.033000000000015, 50.242999999999995, 54.173, 50.242999999999995, 54.173, 38.45300000000003, 42.38299999999998, 62.033000000000015, 46.31299999999999, 109.19299999999998, 50.242999999999995, 38.45300000000003, 46.31299999999999, 42.38299999999998, 69.89300000000003, 46.31299999999999, 34.523000000000025, 54.173, 81.68299999999999, 38.45300000000003, 46.31299999999999, 54.173, 30.593000000000018, 46.31299999999999, 22.733000000000004, 50.242999999999995, 46.31299999999999, 46.31299999999999, 65.96300000000002, 54.173, 30.593000000000018, 34.523000000000025, 58.10300000000001, 46.31299999999999, 65.96300000000002, 42.38299999999998, 93.47300000000001, 62.033000000000015, 65.96300000000002, 50.242999999999995, 89.543, 54.173, 65.96300000000002, 54.173, 26.66300000000001, 26.66300000000001, 50.242999999999995, 30.593000000000018, 50.242999999999995, 77.75299999999999, 46.31299999999999, 54.173, 42.38299999999998, 54.173, 22.733000000000004, 50.242999999999995, 69.89300000000003, 38.45300000000003, 77.75299999999999, 58.10300000000001, 50.242999999999995, 62.033000000000015, 58.10300000000001, 85.613, 62.033000000000015, 54.173, 38.45300000000003, 46.31299999999999, 54.173, 117.053, 38.45300000000003, 65.96300000000002, 54.173, 10.942999999999984, 50.242999999999995, 38.45300000000003, 22.733000000000004, 14.87299999999999, 69.89300000000003, 34.523000000000025, 30.593000000000018, 38.45300000000003, 50.242999999999995, 85.613, 50.242999999999995, 18.802999999999997, 50.242999999999995, 46.31299999999999, 54.173, 18.802999999999997, 46.31299999999999, 69.89300000000003, 38.45300000000003, 62.033000000000015, 62.033000000000015, 26.66300000000001, 54.173, 50.242999999999995, 50.242999999999995, 65.96300000000002, 65.96300000000002, 81.68299999999999, 54.173, 73.82299999999998, 62.033000000000015, 101.33300000000003, 50.242999999999995, 65.96300000000002, 65.96300000000002, 93.47300000000001, 42.38299999999998, 58.10300000000001, 54.173, 54.173, 73.82299999999998, 50.242999999999995, 50.242999999999995, 50.242999999999995, 18.802999999999997, 42.38299999999998, 58.10300000000001, 58.10300000000001, 18.802999999999997, -0.84699999999998, 42.38299999999998, 34.523000000000025, 54.173, 62.033000000000015, 65.96300000000002, 34.523000000000025, 77.75299999999999, 62.033000000000015, 93.47300000000001, 50.242999999999995, 18.802999999999997, 62.033000000000015, 65.96300000000002, 50.242999999999995, 42.38299999999998, 62.033000000000015, 38.45300000000003, 62.033000000000015, 54.173, 65.96300000000002, 46.31299999999999, 54.173, 46.31299999999999, 62.033000000000015, 26.66300000000001, 50.242999999999995, 77.75299999999999, 46.31299999999999, 50.242999999999995, 58.10300000000001, 58.10300000000001, 58.10300000000001, 73.82299999999998, 38.45300000000003, 46.31299999999999, 42.38299999999998, 38.45300000000003, 46.31299999999999, 58.10300000000001, 46.31299999999999, 62.033000000000015, 62.033000000000015, 54.173, 38.45300000000003, 54.173, 69.89300000000003, 77.75299999999999, 73.82299999999998, 42.38299999999998, 54.173, 26.66300000000001, 65.96300000000002, 50.242999999999995, 50.242999999999995, 46.31299999999999, 73.82299999999998, 54.173, 65.96300000000002, 54.173, 26.66300000000001, 50.242999999999995, 50.242999999999995, 58.10300000000001, 62.033000000000015, 38.45300000000003, 54.173, 65.96300000000002, 50.242999999999995, 50.242999999999995, 77.75299999999999, 54.173, 58.10300000000001, 42.38299999999998, 42.38299999999998, 54.173, 65.96300000000002, 89.543, 69.89300000000003, 62.033000000000015, 62.033000000000015, 58.10300000000001, 62.033000000000015, 26.66300000000001, 50.242999999999995, 26.66300000000001, 46.31299999999999, 62.033000000000015, 50.242999999999995, 46.31299999999999, 54.173, 30.593000000000018, 58.10300000000001, 38.45300000000003, 73.82299999999998, 58.10300000000001, 65.96300000000002, 65.96300000000002, 26.66300000000001, 42.38299999999998, 50.242999999999995, 93.47300000000001, 46.31299999999999, 42.38299999999998, 105.26300000000003, 58.10300000000001, 50.242999999999995, 77.75299999999999, 42.38299999999998, 46.31299999999999, 54.173, 42.38299999999998, 26.579000000000008, 46.22399999999999, 30.50799999999998, 58.011000000000024, 58.011000000000024, 120.875, 54.081999999999994, 73.72700000000003, 10.863, 89.44299999999998, -12.711000000000013, 38.365999999999985, 46.22399999999999, 42.295000000000016, 46.22399999999999, 22.650000000000034, 46.22399999999999, 46.22399999999999, 54.081999999999994, 58.011000000000024, 54.081999999999994, 50.15300000000002, 42.295000000000016, 54.081999999999994, 65.86900000000003, 50.15300000000002, 46.22399999999999, 42.295000000000016, 54.081999999999994, 54.081999999999994, 38.365999999999985, 34.43700000000001, 58.011000000000024, 54.081999999999994, 61.94, 50.15300000000002, 38.365999999999985, 46.22399999999999, 38.365999999999985, 46.22399999999999, 61.94, 46.22399999999999, 30.50799999999998, 61.94, 54.081999999999994, 34.43700000000001, 42.295000000000016, 50.15300000000002, 46.22399999999999, 26.579000000000008, 30.50799999999998, 61.94, 73.72700000000003, 58.011000000000024, 105.15899999999999, 93.37200000000001, 61.94, -4.853000000000009, 34.43700000000001, 42.295000000000016, 26.579000000000008, 61.94, 73.72700000000003, 50.15300000000002, 50.15300000000002, 42.295000000000016, 50.15300000000002, 6.934000000000026, 58.011000000000024, 34.43700000000001, 34.43700000000001, 38.365999999999985, 42.295000000000016, 61.94, 58.011000000000024, 42.295000000000016, 42.295000000000016, 65.86900000000003, 50.15300000000002, 38.365999999999985, 73.72700000000003, 65.86900000000003, 54.081999999999994, 73.72700000000003, 46.22399999999999, 34.43700000000001, 50.15300000000002, 3.0049999999999955, 50.15300000000002, 50.15300000000002, 38.365999999999985, 34.43700000000001, 69.798, 38.365999999999985, 58.011000000000024, 50.15300000000002, 46.22399999999999, 65.86900000000003, 58.011000000000024, 81.58499999999998, 85.51400000000001, 69.798, 58.011000000000024, 46.22399999999999, 65.86900000000003, 54.081999999999994, 34.43700000000001, 42.295000000000016, 61.94, 77.656, 34.43700000000001, 50.15300000000002, 61.94, 50.15300000000002, 18.721000000000004, 54.081999999999994, 54.081999999999994, 50.15300000000002, 65.86900000000003, 93.37200000000001, 50.15300000000002, 73.72700000000003, 46.22399999999999, 42.295000000000016, 69.798, 54.081999999999994, 50.15300000000002, 34.43700000000001, 34.43700000000001, 54.081999999999994, 46.22399999999999, 61.94, 89.44299999999998, 58.011000000000024, 140.51999999999998, 58.011000000000024, 69.798, 58.011000000000024, 77.656, 77.656, 42.295000000000016, 46.22399999999999, 73.72700000000003, 73.72700000000003, 58.011000000000024, 89.44299999999998, 46.22399999999999, 77.656, 38.365999999999985, 38.365999999999985, 46.22399999999999, 26.579000000000008, 65.86900000000003, 69.798, 26.579000000000008, 50.15300000000002, 58.011000000000024, 38.365999999999985, 50.15300000000002, 34.43700000000001, 54.081999999999994, 42.295000000000016, 46.22399999999999, 81.58499999999998, 46.22399999999999, 34.43700000000001, 46.22399999999999, 109.08800000000002, 38.365999999999985, 38.365999999999985, 46.22399999999999, 73.72700000000003, 42.295000000000016, 46.22399999999999, 61.94, 46.22399999999999, 26.579000000000008, 22.650000000000034, 50.15300000000002, 50.15300000000002, 58.011000000000024, 50.15300000000002, 54.081999999999994, 42.295000000000016, 50.15300000000002, 34.43700000000001, 54.081999999999994, 61.94, 30.50799999999998, 61.94, 69.798, 81.58499999999998, 81.58499999999998, 81.58499999999998, 65.86900000000003, 50.15300000000002, 77.656, 50.15300000000002, 65.86900000000003, 34.43700000000001, 3.0049999999999955, 73.72700000000003, 38.365999999999985, 42.295000000000016, 30.50799999999998, 50.15300000000002, -0.9239999999999782, 54.081999999999994, 77.656, 46.22399999999999, 85.51400000000001, 50.15300000000002, 10.863, 58.011000000000024, 30.50799999999998, 42.295000000000016, 30.50799999999998, 61.94, 69.798, 58.011000000000024, 22.650000000000034, 50.15300000000002, 65.86900000000003, 54.081999999999994, 97.30099999999999, 58.011000000000024, 81.58499999999998, -24.49799999999999, 105.15899999999999, 58.011000000000024, 61.94, 46.22399999999999, 50.15300000000002, 38.365999999999985, 69.798, 61.94, 34.43700000000001, 34.43700000000001, 105.15899999999999, 85.51400000000001, 58.011000000000024, 89.44299999999998, -12.711000000000013, 10.863, 54.081999999999994, 65.86900000000003, 46.22399999999999, 61.94, 77.656, 42.295000000000016, 65.86900000000003], \"power_mean\": 52.79907777777778, \"energy_millijoules\": 7241.358402667555, \"energy_joules\": 7.241358402667555, \"coremark_score\": 2187.641285, \"coremarks_per_mhz\": 3.2361557470414204, \"ulpmark_cm_score\": 41.42869104358744}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [290.82, 294.75, 302.61, 341.91, 282.96, 298.68, 294.75, 322.26, 290.82, 286.89, 298.68, 294.75, 298.68, 302.61, 282.96, 314.4, 294.75, 294.75, 294.75], \"power_mean\": 299.0936842105263, \"energy_millijoules\": 1495.4684210526316, \"energy_joules\": 1.4954684210526317}}, \"757000\": {\"active\": {\"elapsed_sec\": 122.608784105, \"elapsed_ns\": 122608784105, \"power_samples\": [46.22399999999999, 61.94, 58.011000000000024, 65.86900000000003, 30.50799999999998, 46.22399999999999, 42.295000000000016, 61.94, 58.011000000000024, 65.86900000000003, 73.72700000000003, 26.579000000000008, 81.58499999999998, 89.44299999999998, 69.798, 61.94, 50.15300000000002, 58.011000000000024, 58.011000000000024, 61.94, 26.579000000000008, 46.22399999999999, 73.72700000000003, 69.798, 73.72700000000003, 69.798, 77.656, 65.86900000000003, 42.295000000000016, 65.86900000000003, 77.656, 65.86900000000003, 54.081999999999994, 85.51400000000001, 65.86900000000003, 54.081999999999994, 58.011000000000024, 42.295000000000016, 65.86900000000003, 58.011000000000024, 65.86900000000003, 85.51400000000001, 81.58499999999998, 73.72700000000003, 69.798, 69.798, 69.798, 50.15300000000002, 65.86900000000003, 61.94, 81.58499999999998, 97.30099999999999, 69.798, 101.23000000000002, 69.798, 61.94, 58.011000000000024, 38.365999999999985, 69.798, 101.23000000000002, 65.86900000000003, 58.011000000000024, 50.15300000000002, 148.378, 65.86900000000003, 38.365999999999985, 61.94, 65.86900000000003, 65.86900000000003, 97.30099999999999, 58.011000000000024, 85.51400000000001, 61.84699999999998, 85.41500000000002, 50.06299999999999, 85.41500000000002, 105.055, 93.27100000000002, 61.84699999999998, 65.77500000000003, 116.839, 65.77500000000003, 89.34300000000002, 65.77500000000003, 77.55900000000003, 65.77500000000003, 69.70300000000003, 65.77500000000003, 69.70300000000003, 77.55900000000003, 65.77500000000003, 73.63100000000003, 61.84699999999998, 42.206999999999994, 81.48700000000002, 69.70300000000003, 26.495000000000005, 57.91899999999998, 65.77500000000003, 61.84699999999998, 30.423000000000002, 65.77500000000003, -8.856999999999971, 57.91899999999998, 38.278999999999996, 30.423000000000002, 42.206999999999994, 73.63100000000003, 73.63100000000003, 77.55900000000003, 57.91899999999998, 61.84699999999998, 53.990999999999985, 65.77500000000003, 77.55900000000003, 69.70300000000003, 81.48700000000002, 65.77500000000003, 101.12700000000001, 57.91899999999998, 42.206999999999994, 69.70300000000003, 53.990999999999985, 65.77500000000003, 65.77500000000003, 77.55900000000003, 61.84699999999998, 42.206999999999994, 65.77500000000003, 50.06299999999999, 69.70300000000003, 73.63100000000003, 61.84699999999998, 18.63900000000001, 57.91899999999998, 57.91899999999998, 18.63900000000001, 89.34300000000002, 77.55900000000003, 69.70300000000003, 77.55900000000003, 61.84699999999998, 65.77500000000003, 85.41500000000002, 53.990999999999985, 53.990999999999985, 30.423000000000002, 89.34300000000002, 65.77500000000003, 69.70300000000003, 65.77500000000003, 46.13499999999999, 77.55900000000003, 57.91899999999998, 81.48700000000002, 85.41500000000002, 77.55900000000003, 69.70300000000003, 69.70300000000003, 93.27100000000002, 65.77500000000003, 77.55900000000003, 73.63100000000003, 89.34300000000002, 73.63100000000003, 53.990999999999985, 57.91899999999998, 73.63100000000003, 61.84699999999998, 46.13499999999999, 61.84699999999998, 50.06299999999999, 26.495000000000005, 69.70300000000003, 61.84699999999998, 61.84699999999998, 93.27100000000002, 65.77500000000003, 61.84699999999998, 57.91899999999998, 69.70300000000003, 61.84699999999998, 57.91899999999998, 61.84699999999998, 65.77500000000003, 81.48700000000002, 46.13499999999999, 77.55900000000003, 53.990999999999985, 69.70300000000003, 81.48700000000002, 85.41500000000002, 77.55900000000003, 61.84699999999998, 26.495000000000005, 65.77500000000003, 34.351, 57.91899999999998, 89.34300000000002, 73.63100000000003, 73.63100000000003, 50.06299999999999, 61.84699999999998, 61.84699999999998, 89.34300000000002, 69.70300000000003, 22.567000000000007, 61.84699999999998, 10.783000000000015, 57.91899999999998, 101.12700000000001, 57.91899999999998, 38.278999999999996, 65.77500000000003, 81.48700000000002, 81.48700000000002, 46.13499999999999, 77.55900000000003, 77.55900000000003, 85.41500000000002, 112.911, 61.84699999999998, 61.84699999999998, 50.06299999999999, 69.70300000000003, 89.34300000000002, 69.70300000000003, 105.055, 61.84699999999998, 57.91899999999998, 81.48700000000002, 73.63100000000003, 57.91899999999998, 53.990999999999985, 30.423000000000002, 50.06299999999999, 61.84699999999998, 42.206999999999994, 61.84699999999998, 38.278999999999996, 50.06299999999999, 81.48700000000002, 69.70300000000003, 101.12700000000001, 61.84699999999998, 53.990999999999985, 73.63100000000003, 65.77500000000003, 61.84699999999998, 30.423000000000002, 42.206999999999994, 65.77500000000003, 65.77500000000003, 61.84699999999998, 57.91899999999998, 65.77500000000003, 61.84699999999998, 69.70300000000003, 50.06299999999999, 85.41500000000002, 53.990999999999985, 34.351, 77.55900000000003, 69.70300000000003, 69.70300000000003, 61.84699999999998, 65.77500000000003, 65.77500000000003, 89.34300000000002, 77.55900000000003, 22.567000000000007, 61.84699999999998, 73.63100000000003, 61.84699999999998, 65.77500000000003, 61.84699999999998, 57.91899999999998, 61.84699999999998, 65.77500000000003, 50.06299999999999, 50.06299999999999, 50.06299999999999, 65.77500000000003, 61.84699999999998, 73.63100000000003, 65.77500000000003, 101.12700000000001, 65.77500000000003, 73.63100000000003, 57.91899999999998, -1.0009999999999764, 61.84699999999998, 85.41500000000002, 73.63100000000003, 50.06299999999999, 77.55900000000003, 61.84699999999998, 61.84699999999998, 46.13499999999999, 65.77500000000003, 69.70300000000003, 61.84699999999998, 85.41500000000002, 50.06299999999999, 77.55900000000003, 65.77500000000003, 77.55900000000003, 61.84699999999998, 69.70300000000003, 61.84699999999998, 53.990999999999985, 61.84699999999998, 61.84699999999998, 57.91899999999998, 77.55900000000003, 61.84699999999998, 93.27100000000002, 97.19900000000001, 65.77500000000003, 93.27100000000002, 57.91899999999998, 53.990999999999985, 61.84699999999998, 81.48700000000002, 89.34300000000002, 46.13499999999999, 65.77500000000003, 46.13499999999999, 69.70300000000003, 53.990999999999985, 65.77500000000003, 69.70300000000003, 69.70300000000003, 61.84699999999998, 53.990999999999985, 105.055, 73.63100000000003, 22.567000000000007, 61.84699999999998, 50.06299999999999, 85.41500000000002, 101.12700000000001, 61.84699999999998, 65.77500000000003, 57.91899999999998, 46.13499999999999, 61.84699999999998, -8.856999999999971, 73.63100000000003, 112.911, 65.77500000000003, 65.77500000000003, 61.84699999999998, 105.055, 61.84699999999998, 46.13499999999999, 77.55900000000003, 53.990999999999985, 46.13499999999999, 69.70300000000003, 81.48700000000002, 77.55900000000003, 61.84699999999998, 42.206999999999994, 65.77500000000003, 38.278999999999996, 97.19900000000001, 61.84699999999998, 73.63100000000003, 65.77500000000003, 34.351, 73.63100000000003, 57.91899999999998, 61.84699999999998, 14.711000000000013, 77.55900000000003, 93.27100000000002, 57.91899999999998, 69.70300000000003, 53.990999999999985, 69.70300000000003, 65.77500000000003, 89.34300000000002, 65.77500000000003, 93.27100000000002, 57.91899999999998, 65.77500000000003, 46.13499999999999, 77.55900000000003, 50.06299999999999, 69.70300000000003, 69.70300000000003, 53.990999999999985, 61.84699999999998, 57.91899999999998, 61.84699999999998, 77.55900000000003, 61.84699999999998, 97.19900000000001, 61.84699999999998, 85.41500000000002, 77.55900000000003, 69.70300000000003, 73.63100000000003, 30.423000000000002, 69.70300000000003, 65.77500000000003, 53.990999999999985, 73.63100000000003, 57.91899999999998, 85.41500000000002, 38.278999999999996, 50.06299999999999, 69.70300000000003, 65.77500000000003, 93.27100000000002, 69.70300000000003, 34.351, 73.63100000000003, 65.77500000000003, 65.77500000000003, 73.63100000000003, 85.41500000000002, 85.41500000000002, 69.70300000000003, 30.423000000000002, 53.990999999999985, 89.34300000000002, 124.695, 73.63100000000003, 65.77500000000003, 97.19900000000001, 57.91899999999998, 73.63100000000003, 73.63100000000003, 85.41500000000002, 61.84699999999998, 61.84699999999998, 50.06299999999999, 85.41500000000002, 65.77500000000003, 61.84699999999998, 73.63100000000003, 50.06299999999999, 53.990999999999985, -4.928999999999974, 69.70300000000003, 38.278999999999996, 65.77500000000003, 65.77500000000003, 65.77500000000003, 65.77500000000003, 77.55900000000003, 69.70300000000003, 50.06299999999999, 65.77500000000003, 65.77500000000003, 46.13499999999999, 73.63100000000003, 93.27100000000002, 57.91899999999998, 77.55900000000003, 65.77500000000003, 97.19900000000001, 89.34300000000002, 61.84699999999998, 38.278999999999996, 50.06299999999999, 57.91899999999998, 73.63100000000003, 69.70300000000003, 61.84699999999998, 108.983, 61.84699999999998, 42.206999999999994, 61.84699999999998, 22.567000000000007, 57.91899999999998, 77.55900000000003, 57.91899999999998, 61.84699999999998, 42.206999999999994, 30.423000000000002], \"power_mean\": 64.91881780538303, \"energy_millijoules\": 7959.6173166520375, \"energy_joules\": 7.959617316652038, \"coremark_score\": 2447.021974, \"coremarks_per_mhz\": 3.2325257252311754, \"ulpmark_cm_score\": 37.690254200083274}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [298.604, 298.604, 349.681, 290.746, 286.817, 294.675, 282.888, 286.817, 294.675, 298.604, 212.166, 314.32, 330.036, 298.604, 298.604, 310.391, 294.675, 290.746, 278.959], \"power_mean\": 295.2953684210526, \"energy_millijoules\": 1476.4768421052631, \"energy_joules\": 1.4764768421052632}}, \"845000\": {\"active\": {\"elapsed_sec\": 109.685053652, \"elapsed_ns\": 109685053652, \"power_samples\": [89.34300000000002, 65.77500000000003, 85.41500000000002, 57.91899999999998, 85.41500000000002, 77.55900000000003, 81.48700000000002, 65.77500000000003, 81.48700000000002, 46.13499999999999, 81.48700000000002, 81.48700000000002, 89.34300000000002, 93.27100000000002, 69.70300000000003, 73.63100000000003, 77.55900000000003, 132.551, 73.63100000000003, 34.351, 69.70300000000003, 101.12700000000001, 93.27100000000002, 85.41500000000002, 73.63100000000003, 77.55900000000003, 85.41500000000002, 97.19900000000001, 89.34300000000002, 89.34300000000002, 85.41500000000002, 6.855000000000018, 105.055, 77.55900000000003, 144.33499999999998, 73.63100000000003, 42.206999999999994, 85.41500000000002, 116.839, 69.70300000000003, 61.84699999999998, 65.77500000000003, 85.41500000000002, 34.351, 61.84699999999998, 77.55900000000003, 61.84699999999998, 116.839, 61.84699999999998, 77.55900000000003, 61.84699999999998, 81.48700000000002, 22.567000000000007, 85.41500000000002, 42.206999999999994, 77.55900000000003, 73.63100000000003, 77.55900000000003, 65.77500000000003, 81.48700000000002, 85.41500000000002, 42.206999999999994, 57.91899999999998, 85.41500000000002, 73.63100000000003, 81.48700000000002, 112.911, 73.63100000000003, 108.983, 85.41500000000002, 116.839, 73.63100000000003, 22.567000000000007, 101.12700000000001, 61.84699999999998, 65.77500000000003, 81.48700000000002, 108.983, 73.63100000000003, 97.19900000000001, 65.77500000000003, 97.19900000000001, 61.84699999999998, 38.278999999999996, 73.63100000000003, 132.551, 81.48700000000002, 112.911, 77.55900000000003, 89.34300000000002, 26.495000000000005, 81.48700000000002, 85.41500000000002, 93.27100000000002, 93.27100000000002, 53.990999999999985, 85.41500000000002, 124.695, 97.19900000000001, 89.34300000000002, 85.41500000000002, 89.34300000000002, 73.63100000000003, 101.12700000000001, 77.55900000000003, 77.55900000000003, 77.55900000000003, 89.34300000000002, 53.990999999999985, 69.70300000000003, 85.41500000000002, 53.990999999999985, 93.27100000000002, 116.839, 65.77500000000003, 97.19900000000001, 69.70300000000003, 77.55900000000003, 81.48700000000002, 53.990999999999985, 73.63100000000003, 101.12700000000001, 81.48700000000002, 112.911, 85.41500000000002, 57.91899999999998, 124.695, 81.48700000000002, 93.27100000000002, 93.27100000000002, 77.55900000000003, 69.70300000000003, 97.19900000000001, 61.84699999999998, 53.990999999999985, 73.63100000000003, 57.91899999999998, 89.34300000000002, 69.70300000000003, 46.13499999999999, 53.990999999999985, 61.84699999999998, 77.55900000000003, 77.55900000000003, 65.77500000000003, 81.48700000000002, 38.278999999999996, 89.34300000000002, 81.48700000000002, 73.63100000000003, 195.272, 77.46199999999999, 77.46199999999999, 53.900000000000034, 69.608, 89.243, 22.48399999999998, 46.04599999999999, 108.87799999999999, 77.46199999999999, 53.900000000000034, 73.53500000000003, 46.04599999999999, 73.53500000000003, 124.58600000000001, 61.75400000000002, 104.95100000000002, 73.53500000000003, 53.900000000000034, 93.17000000000002, 101.024, 69.608, 89.243, 81.38900000000001, 124.58600000000001, 73.53500000000003, 73.53500000000003, 57.827, 81.38900000000001, 46.04599999999999, 73.53500000000003, 101.024, 77.46199999999999, 26.411, 69.608, 73.53500000000003, 77.46199999999999, 77.46199999999999, 81.38900000000001, 89.243, 65.68099999999998, 93.17000000000002, 81.38900000000001, 93.17000000000002, 73.53500000000003, 108.87799999999999, 81.38900000000001, 30.338000000000022, 77.46199999999999, 85.31600000000003, 104.95100000000002, 49.97300000000001, 81.38900000000001, 97.09699999999998, 81.38900000000001, 69.608, 77.46199999999999, 61.75400000000002, 77.46199999999999, 61.75400000000002, 65.68099999999998, 22.48399999999998, 77.46199999999999, 65.68099999999998, 77.46199999999999, 89.243, 81.38900000000001, 81.38900000000001, 49.97300000000001, 77.46199999999999, 69.608, 38.19200000000001, 77.46199999999999, 104.95100000000002, 120.65899999999999, 65.68099999999998, 73.53500000000003, 85.31600000000003, 108.87799999999999, 69.608, 61.75400000000002, 69.608, 89.243, 81.38900000000001, 53.900000000000034, 77.46199999999999, 81.38900000000001, 81.38900000000001, 49.97300000000001, 77.46199999999999, 73.53500000000003, 73.53500000000003, 77.46199999999999, 49.97300000000001, 85.31600000000003, 65.68099999999998, 53.900000000000034, 101.024, 34.264999999999986, 93.17000000000002, 73.53500000000003, 89.243, 77.46199999999999, 65.68099999999998, 85.31600000000003, 77.46199999999999, 112.805, 81.38900000000001, 77.46199999999999, 77.46199999999999, 85.31600000000003, 81.38900000000001, 38.19200000000001, 93.17000000000002, 81.38900000000001, 26.411, 69.608, 81.38900000000001, 97.09699999999998, 93.17000000000002, 77.46199999999999, 85.31600000000003, 49.97300000000001, 89.243, 89.243, 85.31600000000003, 73.53500000000003, 57.827, 69.608, 85.31600000000003, 81.38900000000001, 93.17000000000002, 81.38900000000001, 69.608, 73.53500000000003, 65.68099999999998, 77.46199999999999, 77.46199999999999, 85.31600000000003, 65.68099999999998, 81.38900000000001, 108.87799999999999, 81.38900000000001, 77.46199999999999, 89.243, 46.04599999999999, 53.900000000000034, 77.46199999999999, 89.243, 57.827, 81.38900000000001, 112.805, 81.38900000000001, 81.38900000000001, 73.53500000000003, 57.827, 73.53500000000003, 85.31600000000003, 85.31600000000003, 89.243, 57.827, 53.900000000000034, 61.75400000000002, 61.75400000000002, 69.608, 65.68099999999998, 73.53500000000003, 34.264999999999986, 77.46199999999999, 73.53500000000003, 77.46199999999999, 112.805, 77.46199999999999, 136.36700000000002, 93.17000000000002, 81.38900000000001, 77.46199999999999, 97.09699999999998, 65.68099999999998, 81.38900000000001, 85.31600000000003, 77.46199999999999, 89.243, 77.46199999999999, 93.17000000000002, 85.31600000000003, 73.53500000000003, 81.38900000000001, 97.09699999999998, 69.608, 97.09699999999998, 69.608, 53.900000000000034, 81.38900000000001, 85.31600000000003, 46.04599999999999, 77.46199999999999, 61.75400000000002, 77.46199999999999, 85.31600000000003, 120.65899999999999, 69.608, 38.19200000000001, 77.46199999999999, 120.65899999999999, 69.608, 49.97300000000001, 42.11900000000003, 81.38900000000001, 81.38900000000001, 61.75400000000002, 97.09699999999998, 61.75400000000002, 77.46199999999999, 49.97300000000001, 81.38900000000001, 26.411, 69.608, 108.87799999999999, 81.38900000000001, 53.900000000000034, 85.31600000000003, 128.51300000000003, 97.09699999999998, 73.53500000000003, 34.264999999999986, 89.243, 53.900000000000034, 73.53500000000003, 77.46199999999999, 85.31600000000003, 132.44, 65.68099999999998, 116.73200000000003, 89.243, 34.264999999999986, 77.46199999999999, 61.75400000000002, 77.46199999999999, 97.09699999999998, 53.900000000000034, 73.53500000000003, 65.68099999999998, 89.243, 73.53500000000003, 61.75400000000002, 73.53500000000003, 26.411, 89.243, 128.51300000000003, 81.38900000000001, 65.68099999999998, 77.46199999999999, 65.68099999999998, 69.608, 97.09699999999998, 93.17000000000002, 73.53500000000003, 69.608, 69.608, 81.38900000000001, 89.243, 73.53500000000003, 101.024, 57.827, 61.75400000000002, 81.38900000000001, 57.827, 61.75400000000002, 61.75400000000002, 69.608, 81.38900000000001, 42.11900000000003, 81.38900000000001, 77.46199999999999, 81.38900000000001, 97.09699999999998, 73.53500000000003, 81.38900000000001, 77.46199999999999, 34.264999999999986, 81.38900000000001, 42.11900000000003], \"power_mean\": 77.03313856812935, \"energy_millijoules\": 8449.383936827217, \"energy_joules\": 8.449383936827216, \"coremark_score\": 2735.354456, \"coremarks_per_mhz\": 3.2371058650887576, \"ulpmark_cm_score\": 35.50554717870371}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [345.664, 290.672, 318.168, 286.744, 282.816, 286.744, 310.312, 282.816, 306.384, 290.672, 231.752, 310.312, 302.456, 341.736, 298.528, 298.528, 298.528, 302.456, 302.456], \"power_mean\": 299.35494736842105, \"energy_millijoules\": 1496.7747368421053, \"energy_joules\": 1.4967747368421054}}, \"962000\": {\"active\": {\"elapsed_sec\": 96.311614739, \"elapsed_ns\": 96311614739, \"power_samples\": [108.87799999999999, 120.65899999999999, 89.243, 101.024, 93.17000000000002, 93.17000000000002, 101.024, 93.17000000000002, 101.024, 69.608, 104.95100000000002, 128.51300000000003, 101.024, 136.36700000000002, 108.87799999999999, 112.805, 101.024, 65.68099999999998, 89.243, 108.87799999999999, 104.95100000000002, 152.075, 85.31600000000003, 61.75400000000002, 89.243, 30.338000000000022, 89.243, 140.29399999999998, 101.024, 108.87799999999999, 104.95100000000002, 85.31600000000003, 108.87799999999999, 128.51300000000003, 46.04599999999999, 108.87799999999999, 85.31600000000003, 140.29399999999998, 124.58600000000001, 124.58600000000001, 112.69900000000001, 104.84699999999998, 89.14300000000003, 96.995, 96.995, 100.92099999999999, 96.995, 104.84699999999998, 77.36500000000001, 89.14300000000003, 120.55099999999999, 108.77300000000002, 120.55099999999999, 104.84699999999998, 148.03300000000002, 108.77300000000002, 89.14300000000003, 100.92099999999999, 85.21699999999998, 104.84699999999998, 112.69900000000001, 108.77300000000002, 85.21699999999998, 108.77300000000002, 96.995, 112.69900000000001, 108.77300000000002, 112.69900000000001, 128.40300000000002, 85.21699999999998, 65.58699999999999, 100.92099999999999, 53.809000000000026, 108.77300000000002, 128.40300000000002, 93.06900000000002, 120.55099999999999, 100.92099999999999, 124.47700000000003, 81.291, 69.51300000000003, 120.55099999999999, 128.40300000000002, 89.14300000000003, 65.58699999999999, 96.995, 73.43900000000002, 112.69900000000001, 100.92099999999999, 120.55099999999999, 89.14300000000003, 65.58699999999999, 104.84699999999998, 116.625, 100.92099999999999, 124.47700000000003, 112.69900000000001, 96.995, 81.291, 93.06900000000002, 96.995, 116.625, 108.77300000000002, 112.69900000000001, 81.291, 96.995, 96.995, 61.661, 112.69900000000001, 104.84699999999998, 100.92099999999999, 93.06900000000002, 132.329, 89.14300000000003, 57.735000000000014, 120.55099999999999, 108.77300000000002, 38.10500000000002, 108.77300000000002, 38.10500000000002, 100.92099999999999, 57.735000000000014, 100.92099999999999, 61.661, 100.92099999999999, 93.06900000000002, 96.995, 77.36500000000001, 104.84699999999998, 140.18099999999998, 85.21699999999998, 85.21699999999998, 81.291, 108.77300000000002, 100.92099999999999, 49.88299999999998, 100.92099999999999, 116.625, 136.255, 96.995, 100.92099999999999, 104.84699999999998, 104.84699999999998, 104.84699999999998, 108.77300000000002, 116.625, 120.55099999999999, 116.625, 85.21699999999998, 100.92099999999999, 85.21699999999998, 96.995, 112.69900000000001, 96.995, 100.92099999999999, 93.06900000000002, 116.625, 93.06900000000002, 116.625, 151.959, 89.14300000000003, 104.84699999999998, 81.291, 112.69900000000001, 104.84699999999998, 104.84699999999998, 136.255, 89.14300000000003, 89.14300000000003, 100.92099999999999, 124.47700000000003, 108.77300000000002, 144.10700000000003, 89.14300000000003, 116.625, 89.14300000000003, 85.21699999999998, 96.995, 116.625, 108.77300000000002, 81.291, 140.18099999999998, 77.36500000000001, 112.69900000000001, 30.252999999999986, 108.77300000000002, 108.77300000000002, 116.625, 85.21699999999998, 116.625, 112.69900000000001, 85.21699999999998, 108.77300000000002, 61.661, 104.84699999999998, 124.47700000000003, 100.92099999999999, 128.40300000000002, 104.84699999999998, 140.18099999999998, 96.995, 112.69900000000001, 96.995, 112.69900000000001, 100.92099999999999, 120.55099999999999, 100.92099999999999, 81.291, 89.14300000000003, 120.55099999999999, 96.995, 100.92099999999999, 96.995, 136.255, 104.84699999999998, 108.77300000000002, 96.995, 124.47700000000003, 96.995, 65.58699999999999, 108.77300000000002, 61.661, 104.84699999999998, 104.84699999999998, 100.92099999999999, 100.92099999999999, 100.92099999999999, 34.17900000000003, 100.92099999999999, 108.77300000000002, 104.84699999999998, 73.43900000000002, 108.77300000000002, 148.03300000000002, 100.92099999999999, 93.06900000000002, 104.84699999999998, 151.959, 96.995, 81.291, 93.06900000000002, 104.84699999999998, 155.885, 104.84699999999998, 89.14300000000003, 100.92099999999999, 69.51300000000003, 100.92099999999999, 140.18099999999998, 100.92099999999999, 89.14300000000003, 112.69900000000001, 89.14300000000003, 89.14300000000003, 53.809000000000026, 100.92099999999999, 128.40300000000002, 104.84699999999998, 120.55099999999999, 100.92099999999999, 77.36500000000001, 112.69900000000001, 73.43900000000002, 104.84699999999998, 132.329, 100.92099999999999, 155.885, 108.77300000000002, 77.36500000000001, 112.69900000000001, 85.21699999999998, 104.84699999999998, 65.58699999999999, 89.14300000000003, 132.329, 93.06900000000002, 112.69900000000001, 93.06900000000002, 147.918, 100.81799999999998, 96.89300000000003, 100.81799999999998, 96.89300000000003, 120.44299999999998, 124.368, 112.59300000000002, 104.743, 108.668, 147.918, 140.06799999999998, 179.31799999999998, 151.84300000000002, 100.81799999999998, 124.368, 104.743, 100.81799999999998, 108.668, 104.743, 108.668, 85.118, 100.81799999999998, 77.26800000000003, 92.96800000000002, 143.993, 104.743, 108.668, 104.743, 89.043, 108.668, 124.368, 104.743, 124.368, 104.743, 96.89300000000003, 85.118, 96.89300000000003, 104.743, 73.34300000000002, 104.743, 104.743, 108.668, 147.918, 112.59300000000002, 143.993, 89.043, 128.293, 92.96800000000002, 45.867999999999995, 104.743, 124.368, 108.668, 116.51800000000003, 120.44299999999998, 96.89300000000003, 100.81799999999998, 69.418, 100.81799999999998, 128.293, 96.89300000000003, 92.96800000000002, 112.59300000000002, 175.39300000000003, 116.51800000000003, 100.81799999999998, 89.043, 112.59300000000002, 89.043, 104.743, 92.96800000000002, 69.418, 116.51800000000003, 112.59300000000002, 100.81799999999998, 104.743, 124.368, 104.743, 120.44299999999998, 100.81799999999998, 85.118, 96.89300000000003, 100.81799999999998, 104.743, 57.64300000000003, 112.59300000000002, 92.96800000000002, 104.743, 100.81799999999998, 108.668, 85.118, 73.34300000000002, 124.368, 92.96800000000002, 92.96800000000002, 108.668, 96.89300000000003, 96.89300000000003, 120.44299999999998, 85.118, 124.368, 77.26800000000003], \"power_mean\": 102.47422105263158, \"energy_millijoules\": 9869.457698700176, \"energy_joules\": 9.869457698700176, \"coremark_score\": 3115.167752, \"coremarks_per_mhz\": 3.2382201164241162, \"ulpmark_cm_score\": 30.39680691265443}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [310.233, 306.306, 337.722, 306.306, 314.16, 314.16, 314.16, 333.795, 329.868, 310.233, 302.379, 345.576, 318.087, 306.306, 302.379, 294.525, 298.452, 322.014, 314.16], \"power_mean\": 314.78005263157894, \"energy_millijoules\": 1573.9002631578946, \"energy_joules\": 1.5739002631578947}}, \"1014000\": {\"active\": {\"elapsed_sec\": 91.420365819, \"elapsed_ns\": 91420365819, \"power_samples\": [132.44, 128.51300000000003, 156.002, 116.73200000000003, 128.51300000000003, 124.58600000000001, 112.805, 120.65899999999999, 163.856, 116.73200000000003, 140.29399999999998, 104.95100000000002, 108.87799999999999, 156.002, 101.024, 93.17000000000002, 128.51300000000003, 112.805, 112.805, 144.221, 112.805, 116.73200000000003, 112.805, 101.024, 112.805, 85.31600000000003, 120.65899999999999, 108.87799999999999, 112.805, 89.243, 116.73200000000003, 124.58600000000001, 128.51300000000003, 69.608, 120.65899999999999, 159.92900000000003, 97.09699999999998, 136.36700000000002, 116.73200000000003, 175.637, 112.805, 148.14800000000002, 101.024, 116.73200000000003, 108.87799999999999, 132.44, 73.53500000000003, 116.73200000000003, 112.805, 124.58600000000001, 120.65899999999999, 108.87799999999999, 112.805, 148.14800000000002, 112.805, 108.87799999999999, 116.73200000000003, 116.73200000000003, 136.36700000000002, 101.024, 136.36700000000002, 108.87799999999999, 152.075, 112.805, 112.805, 132.44, 167.78300000000002, 116.73200000000003, 112.805, 116.73200000000003, 136.36700000000002, 116.73200000000003, 132.44, 124.58600000000001, 89.243, 124.58600000000001, 101.024, 124.58600000000001, 112.805, 120.65899999999999, 148.14800000000002, 112.805, 128.51300000000003, 124.58600000000001, 148.14800000000002, 116.73200000000003, 128.51300000000003, 120.65899999999999, 152.075, 112.805, 120.65899999999999, 156.002, 120.65899999999999, 89.243, 124.58600000000001, 128.51300000000003, 93.17000000000002, 116.73200000000003, 57.827, 101.024, 108.87799999999999, 116.73200000000003, 144.221, 198.815, 112.48700000000002, 128.183, 96.791, 100.71500000000003, 96.791, 124.25900000000001, 92.86700000000002, 120.33499999999998, 136.031, 116.411, 128.183, 120.33499999999998, 136.031, 128.183, 198.815, 85.019, 136.031, 147.803, 116.411, 112.48700000000002, 124.25900000000001, 128.183, 132.10700000000003, 155.651, 116.411, 139.95499999999998, 116.411, 108.56299999999999, 112.48700000000002, 143.87900000000002, 120.33499999999998, 143.87900000000002, 112.48700000000002, 147.803, 128.183, 159.575, 139.95499999999998, 88.94299999999998, 128.183, 96.791, 120.33499999999998, 147.803, 128.183, 108.56299999999999, 116.411, 132.10700000000003, 175.27100000000002, 112.48700000000002, 132.10700000000003, 124.25900000000001, 120.33499999999998, 124.25900000000001, 116.411, 104.63900000000001, 128.183, 92.86700000000002, 120.33499999999998, 143.87900000000002, 120.33499999999998, 116.411, 116.411, 136.031, 116.411, 92.86700000000002, 132.10700000000003, 65.399, 124.25900000000001, 151.72700000000003, 92.86700000000002, 116.411, 143.87900000000002, 112.48700000000002, 128.183, 108.56299999999999, 139.95499999999998, 183.11900000000003, 112.48700000000002, 112.48700000000002, 151.72700000000003, 120.33499999999998, 85.019, 136.031, 136.031, 128.183, 116.411, 124.25900000000001, 116.411, 124.25900000000001, 112.48700000000002, 112.48700000000002, 136.031, 120.33499999999998, 143.87900000000002, 116.411, 132.10700000000003, 136.031, 108.56299999999999, 124.25900000000001, 112.48700000000002, 128.183, 120.33499999999998, 112.48700000000002, 151.72700000000003, 112.48700000000002, 190.96699999999998, 116.411, 108.56299999999999, 120.33499999999998, 139.95499999999998, 120.33499999999998, 92.86700000000002, 128.183, 112.48700000000002, 128.183, 88.94299999999998, 120.33499999999998, 112.48700000000002, 104.63900000000001, 143.87900000000002, 120.33499999999998, 132.10700000000003, 151.72700000000003, 116.411, 132.10700000000003, 108.56299999999999, 124.25900000000001, 112.48700000000002, 136.031, 116.411, 151.72700000000003, 120.33499999999998, 128.183, 116.411, 108.56299999999999, 116.411, 139.95499999999998, 120.33499999999998, 187.043, 116.411, 124.25900000000001, 120.33499999999998, 92.86700000000002, 120.33499999999998, 159.575, 116.411, 104.63900000000001, 112.48700000000002, 139.95499999999998, 120.33499999999998, 116.411, 124.25900000000001, 183.11900000000003, 128.183, 163.49900000000002, 116.411, 136.031, 120.33499999999998, 151.72700000000003, 132.10700000000003, 143.87900000000002, 167.423, 139.95499999999998, 136.031, 88.94299999999998, 120.33499999999998, 163.49900000000002, 108.56299999999999, 124.25900000000001, 116.411, 163.49900000000002, 116.411, 104.63900000000001, 116.411, 120.33499999999998, 132.10700000000003, 136.031, 167.423, 116.411, 88.94299999999998, 128.183, 167.423, 116.411, 187.043, 116.411, 120.33499999999998, 139.95499999999998, 128.183, 120.33499999999998, 128.183, 73.24700000000001, 132.10700000000003, 108.56299999999999, 139.95499999999998, 108.56299999999999, 88.94299999999998, 124.25900000000001, 88.94299999999998, 120.33499999999998, 175.27100000000002, 120.33499999999998, 132.10700000000003, 120.33499999999998, 167.423, 108.56299999999999, 155.651, 120.33499999999998, 116.411, 112.48700000000002, 124.25900000000001, 136.031, 159.575, 116.411, 92.86700000000002, 116.411, 159.575, 124.25900000000001, 128.183, 120.33499999999998, 124.25900000000001, 120.33499999999998, 128.183, 132.10700000000003, 128.183, 120.33499999999998, 147.803, 100.71500000000003, 81.09500000000003, 128.183, 128.183, 128.183, 163.49900000000002, 120.33499999999998, 124.25900000000001, 151.72700000000003, 120.33499999999998, 96.791, 112.48700000000002, 124.25900000000001, 112.48700000000002, 116.411, 124.25900000000001, 124.25900000000001, 116.411, 147.803, 116.411, 116.411, 120.33499999999998, 69.32299999999998, 112.48700000000002, 139.95499999999998, 112.48700000000002, 108.56299999999999, 124.25900000000001, 139.95499999999998, 120.33499999999998, 108.56299999999999, 124.25900000000001], \"power_mean\": 123.7208864265928, \"energy_millijoules\": 11310.608696570065, \"energy_joules\": 11.310608696570066, \"coremark_score\": 3281.844834, \"coremarks_per_mhz\": 3.236533366863905, \"ulpmark_cm_score\": 26.523771447506164}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [317.925, 321.85, 321.85, 329.7, 306.306, 310.233, 341.649, 310.233, 180.642, 322.014, 361.284, 322.014, 337.722, 322.014, 302.379, 298.452, 329.868, 329.868, 314.16], \"power_mean\": 314.74542105263157, \"energy_millijoules\": 1573.727105263158, \"energy_joules\": 1.5737271052631578}}, \"1144000\": {\"active\": {\"elapsed_sec\": 80.924124403, \"elapsed_ns\": 80924124403, \"power_samples\": [136.031, 143.87900000000002, 139.95499999999998, 143.87900000000002, 179.195, 139.95499999999998, 139.95499999999998, 147.803, 163.49900000000002, 136.031, 139.95499999999998, 136.031, 147.803, 155.651, 104.63900000000001, 143.87900000000002, 218.43500000000006, 139.95499999999998, 139.95499999999998, 143.87900000000002, 143.87900000000002, 139.95499999999998, 194.89100000000002, 147.803, 206.663, 139.95499999999998, 147.803, 163.49900000000002, 139.95499999999998, 128.183, 179.195, 159.575, 226.28300000000002, 88.94299999999998, 143.87900000000002, 147.803, 143.87900000000002, 163.49900000000002, 139.95499999999998, 147.803, 151.72700000000003, 104.63900000000001, 171.34699999999998, 143.87900000000002, 143.87900000000002, 139.95499999999998, 151.72700000000003, 132.10700000000003, 139.95499999999998, 155.651, 147.803, 112.48700000000002, 147.803, 100.71500000000003, 194.89100000000002, 128.183, 159.575, 147.803, 128.183, 147.803, 120.33499999999998, 139.95499999999998, 143.87900000000002, 132.10700000000003, 143.87900000000002, 179.072, 143.765, 128.07299999999998, 124.15000000000003, 167.303, 151.611, 131.99599999999998, 147.688, 155.534, 143.765, 147.688, 131.99599999999998, 147.688, 135.91899999999998, 128.07299999999998, 151.611, 171.226, 139.84199999999998, 159.457, 151.611, 112.38100000000003, 143.765, 135.91899999999998, 210.45600000000002, 155.534, 175.149, 135.91899999999998, 128.07299999999998, 143.765, 175.149, 151.611, 143.765, 151.611, 179.072, 147.688, 80.99700000000001, 151.611, 120.22700000000003, 131.99599999999998, 120.22700000000003, 139.84199999999998, 151.611, 124.15000000000003, 155.534, 147.688, 163.38, 143.765, 155.534, 147.688, 163.38, 135.91899999999998, 131.99599999999998, 143.765, 147.688, 135.91899999999998, 128.07299999999998, 135.91899999999998, 139.84199999999998, 128.07299999999998, 167.303, 151.611, 175.149, 139.84199999999998, 139.84199999999998, 143.765, 206.53300000000002, 143.765, 182.995, 143.765, 131.99599999999998, 143.765, 179.072, 143.765, 159.457, 147.688, 128.07299999999998, 143.765, 190.841, 147.688, 151.611, 194.764, 143.765, 112.38100000000003, 147.688, 147.688, 116.30400000000003, 151.611, 139.84199999999998, 167.303, 139.84199999999998, 155.534, 139.84199999999998, 147.688, 143.765, 222.22500000000002, 135.91899999999998, 116.30400000000003, 143.765, 104.53500000000003, 143.765, 159.457, 155.534, 143.765, 147.688, 182.995, 155.534, 190.841, 139.84199999999998, 139.84199999999998, 139.84199999999998, 171.226, 139.84199999999998, 155.534, 139.84199999999998, 135.91899999999998, 143.765, 175.149, 143.765, 128.07299999999998, 135.91899999999998, 198.687, 159.457, 135.91899999999998, 135.91899999999998, 167.303, 139.84199999999998, 167.303, 147.688, 139.84199999999998, 143.765, 120.22700000000003, 143.765, 171.226, 143.765, 179.072, 155.534, 182.995, 143.765, 131.99599999999998, 163.38, 210.45600000000002, 143.765, 147.688, 194.764, 147.688, 116.30400000000003, 143.765, 143.765, 151.611, 139.84199999999998, 143.765, 131.99599999999998, 124.15000000000003, 155.534, 155.534, 194.764, 143.765, 139.84199999999998, 151.611, 139.84199999999998, 147.688, 167.303, 147.688, 159.457, 151.611, 194.764, 159.457, 135.91899999999998, 151.611, 143.765, 147.688, 175.149, 143.765, 167.303, 143.765, 159.457, 139.84199999999998, 155.534, 147.688, 100.61200000000002, 159.457, 124.15000000000003, 155.534, 135.91899999999998, 143.765, 159.457, 155.534, 159.457, 147.688, 194.764, 198.687, 190.841, 120.22700000000003, 143.765, 151.611, 147.688, 139.84199999999998, 155.534, 139.84199999999998, 151.611, 120.22700000000003, 147.688, 222.22500000000002, 139.84199999999998, 108.45800000000003, 143.765, 175.149, 139.84199999999998, 147.688, 147.688, 143.765, 139.84199999999998, 171.226, 131.99599999999998, 120.22700000000003, 182.995, 139.84199999999998, 139.84199999999998, 167.303, 147.688, 135.91899999999998, 143.765, 151.611, 143.765, 147.688, 139.84199999999998, 143.765, 131.99599999999998, 218.30200000000002, 155.534, 179.072, 135.91899999999998, 128.07299999999998, 139.84199999999998, 194.764, 143.765, 80.99700000000001, 151.611, 202.61, 229.93500000000006, 163.26100000000002, 151.495, 155.41700000000003, 159.339, 151.495, 147.57299999999998, 190.71500000000003, 178.949, 147.57299999999998, 92.66500000000002, 147.57299999999998, 116.197, 151.495, 120.11900000000003, 143.651], \"power_mean\": 149.43407812499998, \"energy_millijoules\": 12092.821928235118, \"energy_joules\": 12.092821928235118, \"coremark_score\": 3707.50275, \"coremarks_per_mhz\": 3.2408240821678325, \"ulpmark_cm_score\": 24.8081053190356}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [321.768, 337.464, 298.224, 313.92, 337.464, 302.148, 357.084, 313.92, 361.008, 313.92, 309.996, 321.768, 317.844, 325.692, 313.92, 337.464, 313.92, 333.54, 309.996], \"power_mean\": 323.2136842105263, \"energy_millijoules\": 1616.0684210526315, \"energy_joules\": 1.6160684210526315}}, \"1242000\": {\"active\": {\"elapsed_sec\": 74.627851331, \"elapsed_ns\": 74627851331, \"power_samples\": [190.71500000000003, 159.339, 135.80700000000002, 163.26100000000002, 194.637, 175.027, 206.40300000000002, 163.26100000000002, 175.027, 175.027, 100.50900000000001, 171.10500000000002, 198.55900000000003, 171.10500000000002, 190.71500000000003, 159.339, 108.35300000000001, 171.10500000000002, 206.40300000000002, 175.027, 147.57299999999998, 178.949, 143.651, 171.10500000000002, 155.41700000000003, 175.027, 167.183, 178.949, 182.87099999999998, 167.183, 151.495, 163.26100000000002, 202.481, 167.183, 194.637, 167.183, 143.651, 178.949, 151.495, 167.183, 112.27500000000003, 175.027, 198.55900000000003, 171.10500000000002, 206.40300000000002, 171.10500000000002, 186.793, 171.10500000000002, 171.10500000000002, 175.027, 190.71500000000003, 175.027, 147.57299999999998, 163.26100000000002, 245.62300000000005, 124.041, 124.041, 171.10500000000002, 167.183, 182.87099999999998, 171.10500000000002, 214.24699999999996, 241.70100000000002, 151.495, 159.339, 182.87099999999998, 167.183, 131.885, 163.26100000000002, 190.589, 178.82600000000002, 174.90500000000003, 167.063, 198.43099999999998, 167.063, 127.85300000000001, 167.063, 198.43099999999998, 167.063, 178.82600000000002, 167.063, 198.43099999999998, 182.747, 198.43099999999998, 182.747, 131.774, 159.221, 135.695, 163.142, 214.115, 174.90500000000003, 186.668, 167.063, 186.668, 178.82600000000002, 159.221, 170.98399999999998, 155.3, 178.82600000000002, 190.589, 167.063, 151.37900000000002, 178.82600000000002, 178.82600000000002, 178.82600000000002, 170.98399999999998, 174.90500000000003, 210.19399999999996, 170.98399999999998, 163.142, 163.142, 178.82600000000002, 178.82600000000002, 178.82600000000002, 147.45800000000003, 178.82600000000002, 198.43099999999998, 170.98399999999998, 167.063, 170.98399999999998, 194.51, 170.98399999999998, 190.589, 167.063, 147.45800000000003, 167.063, 190.589, 167.063, 163.142, 178.82600000000002, 131.774, 159.221, 186.668, 170.98399999999998, 225.87800000000004, 163.142, 194.51, 167.063, 139.61599999999999, 167.063, 143.53700000000003, 167.063, 241.562, 178.82600000000002, 170.98399999999998, 178.82600000000002, 170.98399999999998, 182.747, 202.35200000000003, 170.98399999999998, 135.695, 170.98399999999998, 186.668, 170.98399999999998, 198.43099999999998, 186.668, 206.27300000000002, 167.063, 182.747, 178.82600000000002, 186.668, 167.063, 182.747, 178.82600000000002, 178.82600000000002, 170.98399999999998, 206.27300000000002, 167.063, 155.3, 170.98399999999998, 194.51, 214.115, 170.98399999999998, 178.82600000000002, 170.98399999999998, 186.668, 170.98399999999998, 206.27300000000002, 174.90500000000003, 221.957, 151.37900000000002, 170.98399999999998, 174.90500000000003, 178.82600000000002, 167.063, 178.82600000000002, 167.063, 221.957, 163.142, 182.747, 221.957, 163.142, 182.747, 178.82600000000002, 159.221, 139.61599999999999, 170.98399999999998, 186.668, 174.90500000000003, 237.64099999999996, 167.063, 198.43099999999998, 167.063, 151.37900000000002, 167.063, 182.747, 163.142, 210.19399999999996, 163.142, 151.37900000000002, 186.668, 190.589, 151.37900000000002, 163.142, 174.90500000000003, 159.221, 202.35200000000003, 151.37900000000002, 167.063, 190.589, 170.98399999999998, 229.79899999999998, 174.90500000000003, 190.589, 151.37900000000002, 194.51, 178.82600000000002, 139.61599999999999, 178.82600000000002, 155.3, 194.51, 10.223000000000013, 229.79899999999998, 167.063, 155.3, 174.90500000000003, 170.98399999999998, 163.142, 123.93200000000002, 174.90500000000003, 210.19399999999996, 163.142, 163.142, 241.562, 178.82600000000002, 167.063, 147.45800000000003, 170.98399999999998, 182.747, 167.063, 147.45800000000003, 170.98399999999998, 186.668, 167.063, 143.53700000000003, 167.063, 100.406, 159.221, 186.668, 163.142, 163.142, 178.82600000000002, 218.03600000000006, 170.98399999999998, 229.79899999999998, 178.82600000000002, 170.98399999999998, 167.063, 143.53700000000003, 147.45800000000003, 190.589, 170.98399999999998, 151.37900000000002, 178.82600000000002, 159.221, 167.063, 167.063, 167.063, 116.09000000000003, 178.82600000000002, 147.45800000000003, 170.98399999999998, 135.695, 174.90500000000003, 131.774, 163.142, 147.45800000000003, 167.063, 190.589, 182.747, 202.35200000000003, 233.72000000000003, 233.72000000000003, 139.61599999999999, 174.90500000000003], \"power_mean\": 173.16548813559322, \"energy_millijoules\": 12922.968304243095, \"energy_joules\": 12.922968304243096, \"coremark_score\": 4020.262121, \"coremarks_per_mhz\": 3.2369260233494366, \"ulpmark_cm_score\": 23.214480832665878}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [321.604, 333.37, 313.76, 313.76, 333.37, 325.526, 349.058, 325.526, 325.526, 309.838, 325.526, 333.37, 301.994, 321.604, 329.448, 356.902, 345.136, 313.76, 317.682], \"power_mean\": 326.14526315789476, \"energy_millijoules\": 1630.7263157894738, \"energy_joules\": 1.6307263157894738}}, \"1352000\": {\"active\": {\"elapsed_sec\": 68.516068413, \"elapsed_ns\": 68516068413, \"power_samples\": [257.10299999999995, 198.303, 221.82299999999998, 217.90300000000002, 186.543, 190.46300000000002, 166.94299999999998, 206.14300000000003, 237.50300000000004, 194.38299999999998, 249.26300000000003, 206.14300000000003, 186.543, 190.46300000000002, 198.303, 194.38299999999998, 221.82299999999998, 198.303, 186.543, 202.223, 163.02300000000002, 194.38299999999998, 229.663, 198.303, 155.183, 198.303, 210.063, 198.303, 170.863, 202.223, 202.223, 202.223, 182.623, 202.223, 233.58299999999997, 202.223, 170.863, 198.303, 233.58299999999997, 206.14300000000003, 190.46300000000002, 202.223, 163.02300000000002, 202.223, 198.303, 206.14300000000003, 182.623, 206.14300000000003, 190.46300000000002, 198.303, 186.543, 210.063, 170.863, 202.223, 194.38299999999998, 213.98300000000006, 233.58299999999997, 206.14300000000003, 178.70300000000003, 202.223, 210.063, 198.303, 182.623, 249.26300000000003, 202.223, 221.82299999999998, 206.14300000000003, 186.543, 210.063, 229.663, 198.303, 229.663, 198.303, 213.98300000000006, 202.223, 174.78300000000002, 190.46300000000002, 210.063, 206.14300000000003, 206.14300000000003, 198.303, 206.14300000000003, 194.38299999999998, 221.82299999999998, 182.623, 186.543, 198.303, 186.543, 198.303, 139.503, 202.223, 170.863, 202.223, 194.38299999999998, 198.303, 213.98300000000006, 198.303, 190.46300000000002, 190.337, 249.12199999999996, 190.337, 190.337, 206.01300000000003, 170.74200000000002, 194.25600000000003, 206.01300000000003, 198.175, 198.175, 198.175, 202.094, 202.094, 229.52700000000004, 202.094, 178.57999999999998, 202.094, 241.284, 202.094, 178.57999999999998, 209.93200000000002, 237.365, 194.25600000000003, 198.175, 256.96000000000004, 202.094, 139.39, 198.175, 182.49900000000002, 198.175, 170.74200000000002, 206.01300000000003, 158.985, 206.01300000000003, 268.717, 206.01300000000003, 198.175, 202.094, 233.44600000000003, 206.01300000000003, 213.851, 198.175, 233.44600000000003, 202.094, 272.63599999999997, 194.25600000000003, 158.985, 202.094, 217.76999999999998, 178.57999999999998, 206.01300000000003, 182.49900000000002, 241.284, 206.01300000000003, 158.985, 202.094, 217.76999999999998, 194.25600000000003, 221.68899999999996, 202.094, 280.47400000000005, 194.25600000000003, 198.175, 202.094, 209.93200000000002, 202.094, 249.12199999999996, 213.851, 158.985, 206.01300000000003, 237.365, 202.094, 162.904, 206.01300000000003, 155.06600000000003, 194.25600000000003, 170.74200000000002, 202.094, 209.93200000000002, 202.094, 233.44600000000003, 186.418, 174.661, 202.094, 233.44600000000003, 249.12199999999996, 233.44600000000003, 166.82299999999998, 198.175, 241.284, 190.337, 174.661, 194.25600000000003, 217.76999999999998, 202.094, 182.49900000000002, 198.175, 241.284, 206.01300000000003, 249.12199999999996, 202.094, 174.661, 190.337, 237.365, 202.094, 190.337, 206.01300000000003, 178.57999999999998, 194.25600000000003, 194.25600000000003, 206.01300000000003, 190.337, 209.93200000000002, 174.661, 206.01300000000003, 155.06600000000003, 198.175, 190.337, 198.175, 268.717, 237.22699999999998, 198.04700000000003, 201.96500000000003, 217.63700000000006, 201.96500000000003, 201.96500000000003, 198.04700000000003, 229.39099999999996, 198.04700000000003, 182.375, 205.88299999999998, 182.375, 194.12900000000002, 182.375, 201.96500000000003, 198.04700000000003, 201.96500000000003, 201.96500000000003, 201.96500000000003, 252.899, 209.80100000000004, 205.88299999999998, 198.04700000000003, 241.14499999999998, 209.80100000000004, 225.47299999999996, 241.14499999999998, 190.211, 174.539, 174.539, 229.39099999999996, 201.96500000000003, 147.113, 205.88299999999998, 147.113, 201.96500000000003, 233.30899999999997, 209.80100000000004, 205.88299999999998, 205.88299999999998, 194.12900000000002, 205.88299999999998, 225.47299999999996, 201.96500000000003, 178.457, 190.211, 233.30899999999997, 205.88299999999998, 217.63700000000006, 198.04700000000003, 158.86700000000002, 201.96500000000003, 241.14499999999998], \"power_mean\": 202.30313284132842, \"energy_millijoules\": 13861.015289920684, \"energy_joules\": 13.861015289920685, \"coremark_score\": 4378.986702, \"coremarks_per_mhz\": 3.2388954896449706, \"ulpmark_cm_score\": 21.643436193173457}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [333.2, 333.2, 317.52, 348.88, 333.2, 317.52, 317.52, 317.52, 325.36, 329.28, 341.04, 423.36, 305.76, 341.04, 333.2, 325.36, 329.28, 309.68, 301.84], \"power_mean\": 330.7242105263158, \"energy_millijoules\": 1653.621052631579, \"energy_joules\": 1.653621052631579}}, \"1482000\": {\"active\": {\"elapsed_sec\": 62.498276878, \"elapsed_ns\": 62498276878, \"power_samples\": [245.063, 256.817, 248.981, 256.817, 245.063, 245.063, 248.981, 276.40700000000004, 245.063, 209.80100000000004, 245.063, 268.571, 237.22699999999998, 237.22699999999998, 248.981, 229.39099999999996, 241.14499999999998, 268.571, 248.981, 201.96500000000003, 245.063, 299.91499999999996, 248.981, 260.735, 241.14499999999998, 237.22699999999998, 241.14499999999998, 225.47299999999996, 241.14499999999998, 276.40700000000004, 245.063, 252.899, 256.53100000000006, 389.67499999999995, 233.03499999999997, 283.943, 244.78300000000002, 272.19500000000005, 248.69899999999996, 291.775, 240.86699999999996, 334.851, 280.02700000000004, 248.69899999999996, 225.20299999999997, 244.78300000000002, 186.043, 236.95100000000002, 205.623, 252.615, 287.85900000000004, 264.36300000000006, 217.37099999999998, 248.69899999999996, 287.85900000000004, 240.86699999999996, 229.11900000000003, 244.78300000000002, 213.45500000000004, 240.86699999999996, 248.69899999999996, 240.86699999999996, 248.69899999999996, 233.03499999999997, 272.19500000000005, 240.86699999999996, 268.279, 240.86699999999996, 264.36300000000006, 248.69899999999996, 268.279, 244.78300000000002, 225.20299999999997, 244.78300000000002, 236.95100000000002, 248.69899999999996, 248.69899999999996, 240.86699999999996, 248.69899999999996, 229.11900000000003, 248.69899999999996, 256.53100000000006, 264.36300000000006, 248.69899999999996, 268.279, 244.78300000000002, 244.78300000000002, 244.78300000000002, 233.03499999999997, 248.69899999999996, 229.11900000000003, 240.86699999999996, 201.707, 248.69899999999996, 264.36300000000006, 256.53100000000006, 252.615, 248.69899999999996, 248.69899999999996, 244.78300000000002, 233.03499999999997, 252.615, 240.86699999999996, 287.85900000000004, 244.78300000000002, 221.28700000000003, 240.86699999999996, 217.37099999999998, 240.86699999999996, 260.447, 240.86699999999996, 244.78300000000002, 240.86699999999996, 283.943, 248.69899999999996, 229.11900000000003, 244.78300000000002, 225.20299999999997, 240.86699999999996, 248.69899999999996, 240.86699999999996, 268.279, 240.86699999999996, 186.043, 260.447, 280.02700000000004, 256.53100000000006, 217.37099999999998, 233.03499999999997, 295.69100000000003, 240.86699999999996, 264.36300000000006, 252.615, 291.775, 236.95100000000002, 268.279, 248.69899999999996, 256.53100000000006, 236.95100000000002, 248.69899999999996, 248.69899999999996, 260.447, 233.03499999999997, 236.95100000000002, 260.447, 303.523, 244.78300000000002, 221.28700000000003, 244.78300000000002, 264.36300000000006, 244.78300000000002, 217.37099999999998, 338.60299999999995, 260.303, 240.72799999999995, 225.06799999999998, 252.47299999999996, 240.72799999999995, 268.13300000000004, 299.453, 260.303, 260.303, 240.72799999999995, 236.813, 272.048, 295.538, 279.87800000000004, 244.64300000000003, 275.96299999999997, 240.72799999999995, 287.70799999999997, 244.64300000000003, 264.21799999999996, 244.64300000000003, 264.21799999999996, 248.558, 221.15300000000002, 248.558, 256.38800000000003, 244.64300000000003, 236.813, 240.72799999999995, 295.538, 244.64300000000003, 170.25799999999998, 240.72799999999995, 225.06799999999998, 252.47299999999996, 244.64300000000003, 252.47299999999996, 201.57800000000003, 256.38800000000003, 295.538, 248.558, 213.32299999999998, 240.72799999999995, 315.11300000000006, 240.72799999999995, 260.303, 240.72799999999995, 303.36800000000005, 240.72799999999995, 248.558, 248.558, 228.98300000000006, 232.89800000000002, 252.47299999999996, 252.47299999999996, 279.87800000000004, 240.72799999999995, 217.23800000000006, 252.47299999999996, 275.96299999999997, 244.64300000000003, 279.87800000000004, 240.72799999999995, 252.47299999999996, 248.558, 319.028, 248.558, 264.21799999999996, 244.64300000000003, 221.15300000000002, 248.558, 275.96299999999997, 279.87800000000004, 315.11300000000006, 205.493, 244.64300000000003, 291.62300000000005, 244.64300000000003, 209.40800000000002, 248.558, 240.72799999999995, 240.72799999999995, 275.96299999999997, 248.558, 228.98300000000006, 228.98300000000006, 205.493, 248.558, 213.32299999999998, 244.64300000000003, 248.558, 244.64300000000003, 256.38800000000003, 244.64300000000003], \"power_mean\": 250.17116194331985, \"energy_millijoules\": 15635.26654602458, \"energy_joules\": 15.63526654602458, \"coremark_score\": 4800.614479, \"coremarks_per_mhz\": 3.2392810249662616, \"ulpmark_cm_score\": 19.187392751950107}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [352.62, 348.702, 321.276, 325.194, 348.702, 329.112, 336.948, 329.112, 391.8, 313.44, 340.866, 293.85, 23.508, 344.784, 325.194, 356.538, 333.03, 321.276, 336.948], \"power_mean\": 319.62631578947367, \"energy_millijoules\": 1598.1315789473683, \"energy_joules\": 1.5981315789473682}}, \"1586000\": {\"active\": {\"elapsed_sec\": 58.418332382, \"elapsed_ns\": 58418332382, \"power_samples\": [245.48300000000006, 284.693, 296.456, 288.61400000000003, 241.562, 284.693, 308.21900000000005, 280.77200000000005, 206.27300000000002, 280.77200000000005, 300.37699999999995, 284.693, 319.98199999999997, 280.77200000000005, 323.903, 284.693, 272.92999999999995, 280.77200000000005, 323.903, 280.77200000000005, 292.53499999999997, 288.61400000000003, 210.19399999999996, 272.92999999999995, 237.64099999999996, 304.298, 323.903, 284.693, 327.82399999999996, 288.61400000000003, 339.587, 280.77200000000005, 265.08799999999997, 288.61400000000003, 280.77200000000005, 288.61400000000003, 233.72000000000003, 288.61400000000003, 331.745, 284.693, 316.06100000000004, 280.77200000000005, 257.246, 276.851, 292.53499999999997, 272.92999999999995, 284.693, 288.61400000000003, 327.82399999999996, 300.37699999999995, 296.456, 296.456, 284.693, 276.851, 280.77200000000005, 272.92999999999995, 284.693, 331.745, 284.693, 304.298, 276.851, 261.16700000000003, 292.53499999999997, 265.08799999999997, 288.61400000000003, 272.92999999999995, 284.693, 300.37699999999995, 280.77200000000005, 304.298, 280.77200000000005, 245.48300000000006, 276.851, 300.37699999999995, 276.851, 237.64099999999996, 272.92999999999995, 257.246, 284.693, 300.37699999999995, 292.53499999999997, 355.27099999999996, 288.61400000000003, 343.50800000000004, 284.693, 233.72000000000003, 280.77200000000005, 339.587, 280.77200000000005, 323.903, 284.693, 339.587, 292.53499999999997, 312.14, 284.693, 253.32500000000005, 280.77200000000005, 265.08799999999997, 288.61400000000003, 265.08799999999997, 284.693, 241.562, 284.693, 265.08799999999997, 280.77200000000005, 296.456, 284.693, 300.37699999999995, 292.53499999999997, 249.404, 279.28200000000004, 349.67999999999995, 318.39200000000005, 275.371, 259.727, 283.193, 228.43899999999996, 283.193, 294.92600000000004, 275.371, 294.92600000000004, 283.193, 294.92600000000004, 287.10400000000004, 291.015, 279.28200000000004, 244.08299999999997, 283.193, 298.837, 283.193, 287.10400000000004, 283.193, 212.79499999999996, 279.28200000000004, 302.74800000000005, 283.193, 247.99400000000003, 291.015, 420.078, 283.193, 263.63800000000003, 287.10400000000004, 345.769, 279.28200000000004, 337.947, 279.28200000000004, 322.303, 275.371, 287.10400000000004, 283.193, 302.74800000000005, 271.46000000000004, 279.28200000000004, 287.10400000000004, 279.28200000000004, 275.371, 341.85800000000006, 287.10400000000004, 259.727, 287.10400000000004, 279.28200000000004, 287.10400000000004, 263.63800000000003, 271.46000000000004, 244.08299999999997, 279.28200000000004, 279.28200000000004, 287.10400000000004, 310.57000000000005, 275.371, 267.549, 279.28200000000004, 240.17200000000003, 287.10400000000004, 330.125, 349.67999999999995, 287.10400000000004, 298.837, 275.371, 298.837, 287.10400000000004, 232.35000000000002, 279.28200000000004, 310.57000000000005, 283.193, 267.549, 275.371, 287.10400000000004, 279.28200000000004, 322.303, 279.28200000000004, 279.28200000000004, 291.015, 314.481, 287.10400000000004, 318.39200000000005, 279.28200000000004, 334.03600000000006, 283.193, 302.74800000000005, 275.371, 326.21400000000006, 279.28200000000004, 267.549, 283.193, 318.39200000000005, 283.193, 279.28200000000004, 291.015, 287.10400000000004, 287.10400000000004, 287.10400000000004, 279.28200000000004, 314.481, 279.28200000000004, 279.28200000000004, 279.28200000000004, 263.63800000000003, 294.92600000000004, 287.10400000000004, 275.371, 247.99400000000003, 279.28200000000004, 291.015, 275.371, 279.28200000000004, 287.10400000000004, 353.591, 267.549, 240.03300000000002, 286.953], \"power_mean\": 286.3452683982684, \"energy_millijoules\": 16727.813065303046, \"energy_joules\": 16.727813065303046, \"coremark_score\": 5135.930973, \"coremarks_per_mhz\": 3.2382919123581337, \"ulpmark_cm_score\": 17.93420328340841}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [317.115, 348.435, 336.69, 313.2, 321.03, 332.775, 352.35, 340.605, 336.69, 344.52, 329.364, 333.285, 325.443, 337.206, 360.732, 270.549, 352.89, 341.127, 345.048], \"power_mean\": 333.6344210526316, \"energy_millijoules\": 1668.1721052631578, \"energy_joules\": 1.668172105263158}}, \"1690000\": {\"active\": {\"elapsed_sec\": 54.830526961, \"elapsed_ns\": 54830526961, \"power_samples\": [353.423, 384.703, 361.24300000000005, 349.51300000000003, 361.24300000000005, 349.51300000000003, 353.423, 341.693, 322.14300000000003, 341.693, 341.693, 337.783, 333.87300000000005, 353.423, 408.163, 353.423, 365.153, 388.61300000000006, 329.96299999999997, 353.423, 341.693, 345.60299999999995, 345.60299999999995, 353.423, 349.51300000000003, 326.053, 369.063, 341.693, 333.87300000000005, 353.423, 329.96299999999997, 357.33299999999997, 349.51300000000003, 400.34299999999996, 341.693, 326.053, 341.693, 357.33299999999997, 333.87300000000005, 329.96299999999997, 345.60299999999995, 392.523, 341.693, 333.87300000000005, 333.87300000000005, 361.24300000000005, 357.33299999999997, 302.59299999999996, 357.33299999999997, 329.96299999999997, 357.33299999999997, 310.413, 337.783, 380.793, 337.783, 372.97299999999996, 333.87300000000005, 357.33299999999997, 341.693, 392.523, 329.96299999999997, 290.86300000000006, 329.96299999999997, 286.953, 349.51300000000003, 306.50300000000004, 345.60299999999995, 333.87300000000005, 361.24300000000005, 337.783, 329.96299999999997, 369.063, 337.783, 369.063, 349.51300000000003, 337.783, 345.60299999999995, 384.703, 310.413, 329.96299999999997, 369.063, 349.51300000000003, 353.423, 341.693, 321.663, 341.198, 290.40700000000004, 337.29100000000005, 317.756, 329.477, 364.64, 349.01200000000006, 317.756, 356.826, 364.64, 329.477, 384.17499999999995, 345.105, 317.756, 337.29100000000005, 399.803, 345.105, 329.477, 349.01200000000006, 321.663, 341.198, 364.64, 337.29100000000005, 376.361, 333.384, 372.45399999999995, 341.198, 317.756, 333.384, 337.29100000000005, 345.105, 302.12800000000004, 345.105, 325.57000000000005, 349.01200000000006, 282.59299999999996, 333.384, 376.361, 341.198, 368.547, 345.105, 349.01200000000006, 349.01200000000006, 376.361, 349.01200000000006, 380.26800000000003, 349.01200000000006, 384.17499999999995, 337.29100000000005, 384.17499999999995, 345.105, 302.12800000000004, 333.384, 364.64, 360.73300000000006, 419.33799999999997, 352.919, 325.57000000000005, 360.73300000000006, 349.01200000000006, 337.29100000000005, 345.105, 329.477, 341.198, 345.105, 345.105, 345.105, 345.105, 282.59299999999996, 356.826, 282.59299999999996, 345.105, 321.663, 337.29100000000005, 317.756, 349.01200000000006, 306.03499999999997, 337.29100000000005, 345.105, 352.919, 368.547, 333.384, 341.198, 337.29100000000005, 395.89599999999996, 333.384, 337.29100000000005, 345.105, 290.40700000000004, 345.105, 376.361, 352.919, 349.01200000000006, 345.105, 384.17499999999995, 345.105, 266.96500000000003, 345.105, 364.64, 345.105, 317.756, 333.384, 376.361, 337.29100000000005, 325.57000000000005, 345.105, 356.826, 337.29100000000005, 341.198, 341.198, 364.64, 341.198, 337.29100000000005, 341.198, 345.105, 341.198, 329.477, 349.01200000000006, 372.28100000000006, 403.529, 352.751, 364.46900000000005, 348.845, 313.69100000000003, 344.93899999999996, 364.46900000000005, 341.033, 286.34900000000005, 348.845, 309.78499999999997, 325.409, 352.751], \"power_mean\": 344.65729032258065, \"energy_millijoules\": 18897.74084933746, \"energy_joules\": 18.89774084933746, \"coremark_score\": 5471.856418, \"coremarks_per_mhz\": 3.2377848627218935, \"ulpmark_cm_score\": 15.874913429692722}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [351.9, 355.81, 367.54, 332.35, 379.27, 359.72, 371.45, 355.81, 398.82, 344.08, 347.99, 312.8, 347.99, 367.54, 347.99, 355.81, 398.82, 355.81, 367.54], \"power_mean\": 358.89684210526315, \"energy_millijoules\": 1794.4842105263158, \"energy_joules\": 1.7944842105263157}}, \"1794000\": {\"active\": {\"elapsed_sec\": 51.599344386, \"elapsed_ns\": 51599344386, \"power_samples\": [426.96500000000003, 415.24699999999996, 446.495, 438.683, 469.93100000000004, 419.153, 434.77700000000004, 466.025, 430.871, 348.845, 438.683, 466.025, 442.58900000000006, 411.341, 419.153, 423.05899999999997, 438.683, 434.77700000000004, 426.96500000000003, 434.77700000000004, 469.93100000000004, 466.025, 423.05899999999997, 438.683, 442.58900000000006, 477.74300000000005, 434.77700000000004, 469.93100000000004, 423.05899999999997, 454.307, 407.43500000000006, 446.495, 434.77700000000004, 454.307, 415.24699999999996, 423.05899999999997, 426.96500000000003, 372.28100000000006, 438.683, 450.40099999999995, 438.683, 489.461, 423.05899999999997, 462.119, 442.58900000000006, 403.529, 458.21299999999997, 442.58900000000006, 430.871, 469.93100000000004, 399.62300000000005, 399.62300000000005, 430.871, 426.96500000000003, 446.495, 434.77700000000004, 419.153, 376.187, 446.495, 446.495, 434.77700000000004, 462.119, 438.683, 466.025, 485.55499999999995, 426.96500000000003, 442.58900000000006, 462.119, 446.495, 454.307, 450.40099999999995, 415.24699999999996, 473.24, 426.404, 465.43399999999997, 418.59799999999996, 457.62800000000004, 434.21000000000004, 449.822, 418.59799999999996, 453.725, 430.307, 449.822, 418.59799999999996, 465.43399999999997, 434.21000000000004, 438.11300000000006, 445.919, 445.919, 418.59799999999996, 453.725, 434.21000000000004, 379.568, 422.501, 379.568, 430.307, 445.919, 410.79200000000003, 457.62800000000004, 457.62800000000004, 461.53100000000006, 434.21000000000004, 395.17999999999995, 438.11300000000006, 445.919, 442.01599999999996, 438.11300000000006, 430.307, 477.14300000000003, 422.501, 453.725, 438.11300000000006, 453.725, 426.404, 406.889, 434.21000000000004, 481.04600000000005, 442.01599999999996, 469.337, 434.21000000000004, 457.62800000000004, 418.59799999999996, 457.62800000000004, 426.404, 442.01599999999996, 422.501, 445.919, 473.24, 430.307, 473.24, 434.21000000000004, 395.17999999999995, 422.501, 457.62800000000004, 453.725, 410.79200000000003, 438.11300000000006, 496.658, 418.59799999999996, 399.08299999999997, 434.21000000000004, 461.53100000000006, 442.01599999999996, 410.79200000000003, 426.404, 406.889, 418.59799999999996, 469.337, 418.59799999999996, 367.85900000000004, 426.404, 473.24, 430.307, 422.501, 422.501, 391.27700000000004, 442.01599999999996, 418.59799999999996, 399.08299999999997, 457.62800000000004, 449.822, 461.53100000000006, 430.307, 465.43399999999997, 430.307, 442.01599999999996, 434.21000000000004, 414.69500000000005, 426.404, 422.501, 430.307, 438.11300000000006, 445.919, 453.725, 422.501, 430.307, 399.08299999999997, 457.62800000000004, 453.725, 430.307, 438.11300000000006, 406.889, 426.404, 395.17999999999995, 434.21000000000004, 387.374, 422.501, 473.24, 442.01599999999996, 434.21000000000004, 508.36699999999996, 461.139, 449.43600000000004, 437.73300000000006, 472.842, 426.03, 426.03, 437.73300000000006, 363.61400000000003, 422.129, 457.23800000000006, 437.73300000000006, 433.832, 433.832], \"power_mean\": 436.2615980392157, \"energy_millijoules\": 22510.812439612193, \"energy_joules\": 22.51081243961219, \"coremark_score\": 5814.629608, \"coremarks_per_mhz\": 3.241153627647715, \"ulpmark_cm_score\": 13.326929039313175}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [386.694, 378.882, 453.096, 386.694, 417.942, 382.788, 390.6, 378.882, 410.13, 378.882, 374.976, 382.788, 410.13, 382.788, 371.07, 488.25, 382.788, 417.942, 402.318], \"power_mean\": 398.8231578947368, \"energy_millijoules\": 1994.1157894736841, \"energy_joules\": 1.994115789473684}}, \"1872000\": {\"active\": {\"elapsed_sec\": 49.458586695, \"elapsed_ns\": 49458586695, \"power_samples\": [457.23800000000006, 453.337, 465.03999999999996, 461.139, 445.53499999999997, 465.03999999999996, 461.139, 468.94100000000003, 515.753, 468.94100000000003, 507.951, 488.446, 488.446, 504.04999999999995, 476.74300000000005, 484.54499999999996, 511.852, 484.54499999999996, 480.644, 457.23800000000006, 476.74300000000005, 453.337, 484.54499999999996, 461.139, 465.03999999999996, 472.842, 468.94100000000003, 484.54499999999996, 445.53499999999997, 484.54499999999996, 461.139, 465.03999999999996, 500.149, 468.94100000000003, 523.555, 492.347, 457.23800000000006, 484.54499999999996, 437.73300000000006, 461.139, 453.337, 476.74300000000005, 422.129, 480.644, 426.03, 457.23800000000006, 429.93100000000004, 465.03999999999996, 507.951, 484.54499999999996, 468.94100000000003, 465.03999999999996, 496.24800000000005, 500.149, 484.54499999999996, 472.842, 367.515, 445.53499999999997, 496.24800000000005, 457.23800000000006, 441.634, 465.03999999999996, 504.04999999999995, 492.347, 531.357, 496.24800000000005, 468.94100000000003, 429.93100000000004, 468.94100000000003, 492.347, 457.23800000000006, 492.347, 461.139, 792.4430000000001, 445.34299999999996, 457.043, 457.043, 496.043, 468.74300000000005, 429.74300000000005, 429.74300000000005, 464.84299999999996, 468.74300000000005, 480.443, 460.943, 496.043, 488.24300000000005, 503.84299999999996, 464.84299999999996, 480.443, 476.543, 488.24300000000005, 457.043, 511.64300000000003, 488.24300000000005, 503.84299999999996, 457.043, 457.043, 499.943, 496.043, 460.943, 492.14300000000003, 460.943, 449.24300000000005, 468.74300000000005, 464.84299999999996, 535.043, 472.64300000000003, 468.74300000000005, 449.24300000000005, 449.24300000000005, 460.943, 464.84299999999996, 488.24300000000005, 460.943, 503.84299999999996, 457.043, 515.543, 472.64300000000003, 511.64300000000003, 476.543, 499.943, 488.24300000000005, 472.64300000000003, 472.64300000000003, 468.74300000000005, 488.24300000000005, 488.24300000000005, 460.943, 457.043, 488.24300000000005, 538.943, 468.74300000000005, 468.74300000000005, 519.443, 453.14300000000003, 511.64300000000003, 507.74300000000005, 468.74300000000005, 492.14300000000003, 472.64300000000003, 492.14300000000003, 476.543, 476.543, 523.343, 445.34299999999996, 468.74300000000005, 437.543, 476.543, 484.34299999999996, 480.443, 476.543, 468.74300000000005, 472.64300000000003, 492.14300000000003, 476.543, 519.443, 441.443, 472.64300000000003, 460.943, 499.943, 421.943, 550.643, 453.14300000000003, 460.943, 472.64300000000003, 414.14300000000003, 468.74300000000005, 425.84299999999996, 464.84299999999996, 496.043, 468.74300000000005, 480.443, 468.74300000000005, 429.74300000000005, 468.74300000000005, 515.543, 484.34299999999996, 457.043, 476.543, 476.543, 464.84299999999996, 453.14300000000003, 472.64300000000003, 472.64300000000003, 476.543, 496.043, 503.84299999999996, 492.14300000000003, 464.84299999999996, 453.14300000000003, 499.943, 468.347, 674.941, 468.347], \"power_mean\": 476.9507794871795, \"energy_millijoules\": 23589.311476514496, \"energy_joules\": 23.589311476514496, \"coremark_score\": 6066.120716, \"coremarks_per_mhz\": 3.240449100427351, \"ulpmark_cm_score\": 12.717624263797601}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [386.199, 397.902, 378.397, 331.585, 390.1, 327.684, 386.199, 343.288, 390.1, 401.803, 390.1, 390.1, 417.407, 409.605, 382.298, 370.595, 382.298, 425.209, 444.714], \"power_mean\": 386.60963157894736, \"energy_millijoules\": 1933.0481578947367, \"energy_joules\": 1.9330481578947367}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}"
  },
  {
    "path": "results/exynos7880/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: \nOffline CPUs: \nSampling power every 250 ms\nBaseline power usage: 303 mW\n\n\n===== CPU 1 =====\nFrequencies: 449 546 676 757 845 962 1014 1144 1242 1352 1482 1586 1690 1794 1872\n\n 449:  1450     3.2 C/MHz     24 mW    5.0 J   60.4 I/mJ   206.9 s\n 546:  1766     3.2 C/MHz     39 mW    6.6 J   45.7 I/mJ   169.9 s\n 676:  2188     3.2 C/MHz     55 mW    7.5 J   40.1 I/mJ   137.1 s\n 757:  2450     3.2 C/MHz     65 mW    8.0 J   37.6 I/mJ   122.5 s\n 845:  2736     3.2 C/MHz     77 mW    8.5 J   35.3 I/mJ   109.7 s\n 962:  3117     3.2 C/MHz    103 mW   10.0 J   30.1 I/mJ    96.2 s\n1014:  3286     3.2 C/MHz    125 mW   11.4 J   26.3 I/mJ    91.3 s\n1144:  3707     3.2 C/MHz    149 mW   12.1 J   24.8 I/mJ    80.9 s\n1242:  4024     3.2 C/MHz    177 mW   13.2 J   22.8 I/mJ    74.6 s\n1352:  4382     3.2 C/MHz    204 mW   14.0 J   21.5 I/mJ    68.5 s\n1482:  4805     3.2 C/MHz    252 mW   15.8 J   19.0 I/mJ    62.4 s\n1586:  5140     3.2 C/MHz    287 mW   16.8 J   17.9 I/mJ    58.4 s\n1690:  5477     3.2 C/MHz    349 mW   19.1 J   15.7 I/mJ    54.8 s\n1794:  5817     3.2 C/MHz    435 mW   22.4 J   13.4 I/mJ    51.6 s\n1872:  6069     3.2 C/MHz    474 mW   23.5 J   12.8 I/mJ    49.4 s\n\n\n===== CPU 5 =====\nFrequencies: 449 546 676 757 845 962 1014 1144 1242 1352 1482 1586 1690 1794 1872\n\n 449:  1449     3.2 C/MHz     26 mW    5.5 J   54.7 I/mJ   207.1 s\n 546:  1766     3.2 C/MHz     37 mW    6.3 J   47.8 I/mJ   169.9 s\n 676:  2188     3.2 C/MHz     53 mW    7.2 J   41.4 I/mJ   137.1 s\n 757:  2447     3.2 C/MHz     65 mW    8.0 J   37.7 I/mJ   122.6 s\n 845:  2735     3.2 C/MHz     77 mW    8.4 J   35.5 I/mJ   109.7 s\n 962:  3115     3.2 C/MHz    102 mW    9.9 J   30.4 I/mJ    96.3 s\n1014:  3282     3.2 C/MHz    124 mW   11.3 J   26.5 I/mJ    91.4 s\n1144:  3708     3.2 C/MHz    149 mW   12.1 J   24.8 I/mJ    80.9 s\n1242:  4020     3.2 C/MHz    173 mW   12.9 J   23.2 I/mJ    74.6 s\n1352:  4379     3.2 C/MHz    202 mW   13.9 J   21.6 I/mJ    68.5 s\n1482:  4801     3.2 C/MHz    250 mW   15.6 J   19.2 I/mJ    62.5 s\n1586:  5136     3.2 C/MHz    286 mW   16.7 J   17.9 I/mJ    58.4 s\n1690:  5472     3.2 C/MHz    345 mW   18.9 J   15.9 I/mJ    54.8 s\n1794:  5815     3.2 C/MHz    436 mW   22.5 J   13.3 I/mJ    51.6 s\n1872:  6066     3.2 C/MHz    477 mW   23.6 J   12.7 I/mJ    49.5 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/exynos7880/main/uptime.txt",
    "content": " 07:32:30 up 57 min,  load average: 4.93, 4.88, 4.77\n"
  },
  {
    "path": "results/exynos7880/main/versions.txt",
    "content": "Kernel: Linux version 3.18.14 (clemens.jongeling@denktop-fedora) (gcc version 4.9.x 20150123 (prerelease) (GCC) ) #1 SMP PREEMPT Thu Oct 27 00:37:08 CEST 2022\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/exynos7904/main/cmdline.txt",
    "content": "console=ram loglevel=4 sec_debug.level=0 sec_watchdog.sec_pet=5 androidboot.debug_level=0x4f4c softdog.soft_margin=1000 softdog.soft_panic=1 androidboot.dram_info=01,06,01,3G sec_debug.chipidfail_cnt=0 sec_debug.lpitimeout_cnt=0 sec_debug.cache_err_cnt=0 sec_debug.codediff_cnt=0 sec_debug.pcb_offset=7343872 sec_debug.smd_offset=7344896 sec_debug.lpddr4_size=3 sec_debug.sjl=1 androidboot.prototype.param.offset=7345920 androidboot.recovery_offset=7347968 androidboot.fmm_lock=48 sec_debug.fmm_lock_offset=7340680 ess_setup=0x91200000 tima_log=0x200000@0xb8000000 sec_avc_log=0x40000@0x9240a000 sec_tsp_log=0x40000@0x9244c000 sec_summary_log=0x300000@0x9248e000 sec_debug.base=0x100000@0x92790000 auto_summary_log=0x10000@0x92892000 charging_mode=0x3000 s3cfb.bootloaderfb=0xec000000 lcdtype=1208880 androidboot.carrierid.param.offset=7340608 androidboot.carrierid=XTC consoleblank=0 vmalloc=384m sec_debug.reset_reason=7 sec_reset.reset_reason=7 ehci_hcd.park=3 oops=panic pmic_info=11 ccic_info=1 fg_reset=0 androidboot.emmc_checksum=3 androidboot.sales.param.offset=7340572 sales_code=XTC androidboot.odin_download=1 androidboot.bootloader=M205GDXU7CUI1 androidboot.selinux=enforcing androidboot.ucs_mode=0 androidboot.revision=5 androidboot.hardware=exynos7904 androidboot.wb.snapQB=CUSTOM sec_debug.bin=A androidboot.hmac_mismatch=0 androidboot.sec_atd.tty=/dev/ttySAC2 androidboot.serialno=REDACTED androidboot.ap_serial=REDACTED snd_soc_core.pmdown_time=1000 androidboot.em.did=REDACTED androidboot.em.model=SM-M205G androidboot.em.status=0x0 androidboot.verifiedbootstate=orange bcm_setup=0xffffff80f8e00000 reserve-fimc=0xffffff80fa000000 firmware_class.path=/vendor/firmware ecd_setup=disable factory_mode=0 androidboot.lassen.apfuse=8 epx_activate=true kpti=n\n"
  },
  {
    "path": "results/exynos7904/main/cpufreq_stats/0/time_in_state",
    "content": "1586000 15193\n1482000 7137\n1352000 7740\n1248000 8342\n1144000 8945\n1014000 10055\n902000 11157\n839000 11961\n757000 13168\n676000 14678\n546000 18000\n449000 52161\n"
  },
  {
    "path": "results/exynos7904/main/cpufreq_stats/0/total_trans",
    "content": "16\n"
  },
  {
    "path": "results/exynos7904/main/cpufreq_stats/6/time_in_state",
    "content": "1768000 152110\n1664000 4232\n1560000 4433\n1352000 5048\n1144000 5741\n936000 6975\n"
  },
  {
    "path": "results/exynos7904/main/cpufreq_stats/6/total_trans",
    "content": "8\n"
  },
  {
    "path": "results/exynos7904/main/cpuinfo.txt",
    "content": "processor\t: 0\nBogoMIPS\t: 52.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\n"
  },
  {
    "path": "results/exynos7904/main/device.txt",
    "content": "Model: Samsung M20LTE SWA OPEN rev03 board based on EXYNOS7904;\nCompatible: samsung, M20 SWA OPEN rev03;samsung,Universal7904;\n"
  },
  {
    "path": "results/exynos7904/main/kernel.log",
    "content": "[    0.609674] mif: create_io_device: rmnet2 created\n[    0.609851] mif: create_io_device: rmnet3 created\n[    0.610040] mif: create_io_device: rmnet4 created\n[    0.610228] mif: create_io_device: rmnet5 created\n[    0.610411] mif: create_io_device: rmnet6 created\n[    0.610592] mif: create_io_device: rmnet7 created\n[    0.610703] mif: create_io_device: multipdp_hiprio created\n[    0.610777] mif: create_io_device: multipdp created\n[    0.610787] mif: create_io_device: BOOT device = umts_boot0\n[    0.610844] mif: create_io_device: umts_boot0 created\n[    0.610900] mif: create_io_device: umts_ramdump0 created\n[    0.610922] mif: mif_init_argos_notifier: ++\n[    0.610939] sec_argos_register_notifier: mif_argos_notifier_ipc(dev_num:0)\n[    0.610948] sec_argos_register_notifier: mif_argos_notifier_clat(dev_num:1)\n[    0.610968] mif: mif_init_argos_notifier: --\n[    0.610976] mif: modem_probe: 10000.mif_pdata: ---\n[    0.611217] wlbt: [WLOG]: scsc_wifilogger_register_ring: Ring 'connectivity' registered\n[    0.611342] wlbt: [WLOG]: scsc_wifilogger_register_ring: Ring 'wakelock' registered\n[    0.611592] wlbt: [WLOG]: scsc_wifilogger_register_ring: Ring 'pkt_fate_tx' registered\n[    0.611601] wlbt: [WLOG]: scsc_wifilogger_register_ring: Ring 'pkt_fate_rx' registered\n[    0.611621] wlbt: [WLOG]: scsc_wifilogger_module_init: Wi-Fi Logger subsystem initialized.\n[    0.611866] scsc_wlbt 120c0000.scsc_wifibt: wlbt: [PLAT_MIF]: platform_mif_create: Creating MIF platform device\n[    0.611887] scsc_wlbt 120c0000.scsc_wifibt: wlbt: [PLAT_MIF]: platform_mif_create: WLBT TZASC configured OK\n[    0.611897] scsc_wlbt 120c0000.scsc_wifibt: wlbt: [PLAT_MIF]: platform_mif_create: platform->mem_start 0xe9000000 platform->mem_size 0x400000\n[    0.611908] scsc_wlbt 120c0000.scsc_wifibt: wlbt: [PLAT_MIF]: platform_mif_create: platform->btaboxmem_start 0x8be400000 platform->btaboxmem_size 0x400000\n[    0.611941] scsc_wlbt 120c0000.scsc_wifibt: wlbt: [PLAT_MIF]: platform_mif_create: platform->reg_start 120c0000 size 180 base ffffff8009876000\n[    0.611954] scsc_wlbt 120c0000.scsc_wifibt: wlbt: [PLAT_MIF]: platform_mif_create: platform->reg_start_m4 120e0000 size_m4 180 base_m4 ffffff800987e000\n[    0.611965] scsc_wlbt 120c0000.scsc_wifibt: wlbt: [PLAT_MIF]: platform_mif_create: MBOX irq 95 flag 0x404\n[    0.611976] scsc_wlbt 120c0000.scsc_wifibt: wlbt: [PLAT_MIF]: platform_mif_create: ALIVE irq 96 flag 0x404\n[    0.611986] scsc_wlbt 120c0000.scsc_wifibt: wlbt: [PLAT_MIF]: platform_mif_create: WDOG irq 97 flag 0x404\n[    0.612160] wlbt: [MXMAN]: scsc_mx_module_init: mx140 Core Driver scsc_release 5.60.0.49\n[    0.612192] scsc_wlbt 120c0000.scsc_wifibt: wlbt: [PLAT_MIF]: platform_mif_irq_reg_handler: Registering mif int handler mifiintrman_isr+0x0/0xec in ffffffc835280018 ffffffc835280018\n[    0.612204] scsc_wlbt 120c0000.scsc_wifibt: wlbt: [PLAT_MIF]: platform_mif_suspend_reg_handler: Registering mif suspend/resume handlers in ffffffc835280018 ffffffc835280018\n[    0.612364] wlbt: [MXMAN]: mxman_wifi_kobject_ref_get: wifi_kobj_ref: 0xffffffc8355ada80\n[    0.612375] wlbt: [MXMAN]: mxman_create_sysfs_memdump: kobj_ref: 0xffffffc8355ada80\n[    0.612386] wlbt: [MXMAN]: srvman_init: \n[    0.612416] wlbt: [MXMAN]: scsc_mx_module_probe_registered_clients: No clients registered\n[    0.612430] wlbt: [MX_MMAP]: mx_mmap_init: mx_mmap INIT; version: 0.0\n[    0.612560] scsc_wlbt 120c0000.scsc_wifibt: wlbt: [PLAT_MIF]: platform_mif_get_mifram_ptr: Memory unmmaped\n[    0.612576] wlbt: [BT_COMMON]: scsc_bt_module_init: SCSC MX BT Driver -devel (C) Samsung Electronics Co., Ltd\n[    0.612776] wlbt: [BT_COMMON]: slsi_bt_service_probe: BT service probe (BT driver ffffffc07f780000)\n[    0.612786] wlbt: [BT_COMMON]: slsi_ant_service_probe: ANT service probe (ANT driver ffffffc07f780000)\n[    0.612805] tima_debug_log_read_init: Registering /proc/tima_debug_log Interface\n[    0.612817] dmverity_odin_flag_read_init:: Registering /proc/dmverity_odin_flag Interface \n[    0.612916] s2mu004:s2mu004_i2c_init\n[    0.613030] s2mu004 10-003d: s2mu004_i2c_probe start\n[    0.613044] of_s2mu004_dt: irq-gpio: 24\n[    0.613770] [s2mu004 mfd] s2mu004_i2c_probe : 0x38, rev=0x3, ver=0x8\n[    0.613783] s2mu004:s2mu004_irq_init irq=133, irq->gpio=24\n[    0.700758] s2mu004_muic_probe start\n[    0.700848] [MUIC] muic_notifier_register: listener=0 register\n[    0.700858] [MUIC] muic_handle_dock_notification: ignore(76)\n[    0.700865] [MUIC] muic_init_switch_dev_cb: done\n[    0.700872] [MUIC] muic_manager_init\n[    0.700880] [MUIC] muic_manager_register_notifier: Registering CCIC_NOTIFY_DEV_MUIC.\n[    0.700887] [MUIC] muic_manager_init_dev_desc\n[    0.700894] usb: [M] manager_notifier_init\n[    0.700927] usb_notify: usb_external_notify_register: listener=(undefined)3 register\n[    0.700935] usb_notify: create_external_notify\n[    0.700943] vbus_notifier_register: listener=2 register\n[    0.700953] usb: [M] manager_handle_vbus_notification: cmd=0, vbus_type=LOW, WATER DET=0 ATTACH=DETATCH (0)\n[    0.700961] ccic_notifier_register: listener=6 register\n[    0.700967] ccic_notifier_init\n[    0.701010] usb: [M] manager_handle_ccic_notification: src:INITIAL dest:INITIAL id:ID_INITIAL attach/rid:0\n[    0.701020] usb: [M] manager_notifier_notify: src:INITIAL dest:INITIAL id:ID_INITIAL sub1:00 sub2:00 sub3:00\n[    0.701038] usb_notify: register_usblog_proc size=22592\n[    0.701045] usb: [M] manager_notifier_notify: notify done(0x0)\n[    0.701052] [MUIC] muic_notifier_register: listener=8 register\n[    0.701060] usb: [M] manager_handle_muic_notification: attach:0, cable_type:76\n[    0.701069] usb: [M] manager_handle_muic_notification: Cable(76) Detached \n[    0.701077] usb: [M] manager_notifier_notify: src:MUIC dest:BATTERY id:ID_ATTACH sub1:00 sub2:00 sub3:4c\n[    0.701084] usb: [M] manager_notifier_notify: notify done(0x0)\n[    0.701092] manager_notifier_init : result of register = 0!\n[    0.701099] manager_notifier_init : done!\n[    0.701105] usb: [M] manager_notifier_init end\n[    0.701113] usb: [M] manager_notifier_register: listener=21 register\n[    0.701121] [MUIC] muic_manager_register_notifier: done.\n[    0.701130] s2mu004_muic_init_interface, muic_if : 0xffffffc8357ac800, muic_data : 0xffffffc834cb5018\n[    0.701206] s2mu004-muic s2mu004-muic: error reading vbus discharging gpio = -2\n[    0.701214] of_s2mu004_muic_dt : could not find muic gpio\n[    0.701224] [MUIC] muic_init_gpio_cb (11)\n[    0.701232] [MUIC] [muic_core] func not defined muic_init_gpio_cb\n[    0.701256] AP_UART, GPIO_UART_SEL(0)=H\n[    0.701263] [MUIC] muic_init_gpio_cb: usb_path(PDA), uart_path(AP)\n[    0.701272] s2mu004_muic_probe: usb_path(0), uart_path(2)\n[    0.701328] [MUIC_HV] s2mu004_hv_muic_initialize\n[    0.704401] [MUIC_HV] s2mu004_hv_muic_write_reg reg[0x4b] = [0x00] + [0x00] -> [0x00]\n[    0.706101] [MUIC_HV] s2mu004_hv_muic_write_reg reg[0x49] = [0x00] + [0x00] -> [0x00]\n[    0.707802] [MUIC_HV] s2mu004_hv_muic_write_reg reg[0x4a] = [0x00] + [0x00] -> [0x00]\n[    0.709503] [MUIC_HV] s2mu004_hv_muic_write_reg reg[0x5f] = [0x01] + [0x01] -> [0x01]\n[    0.709513] [MUIC_HV] s2mu004_mrxtrf_irq_mask: irq enable: 0\n[    0.710143] s2mu004_muic_reg_init\n[    0.714484] dev[1:0x00, 2:0x00, 3:0x00]\n[    0.714493] adc:0x1f, vbvolt:0x00, apple:0x04\n[    0.714500] chg_type:0x00\n[    0.716489] s2mu004_muic_control_vbus_det (Disable)\n[    0.719264] s2mu004_muic_reg_init init path(0x0)\n[    0.719272] _s2mu004_muic_control_rid_adc (Disable)\n[    0.722499] vbus_notifier_handle: (0)->(1)\n[    0.722508] vbus_notifier_notify: CMD=1, DATA=1\n[    0.722518] usb: [M] manager_handle_vbus_notification: cmd=1, vbus_type=LOW, WATER DET=0 ATTACH=DETATCH (0)\n[    0.722526] vbus_notifier_notify: notify done(0x0)\n[    0.722534] AFC mode enabled\n[    0.722540] s2mu004_muic_probe muic_if->opmode(1)\n[    0.740909] s2mu004_muic_irq_init muic-attach(182), muic-detach(183), muic-rid_chg(187), muic-vbus_on(188)\n[    0.740919] muic-rsvd_attach(189), muic-adc_change(190), muic-av_charge(194), muic-vbus_off(195)\n[    0.740928] [MUIC_HV] s2mu004_afc_muic_irq_init\n[    0.752296] [MUIC_HV] mrxrdy(0), mpnack(181), vbadc(174), vdnmon(175) mrxtrf(179)\n[    0.756638] dev[1:0x00, 2:0x00, 3:0x00]\n[    0.756647] adc:0x1f, vbvolt:0x00, apple:0x04\n[    0.756654] chg_type:0x00\n[    0.756663] s2mu004_muic_bcd_rescan call\n[    0.757291] _s2mu004_muic_sel_path Skip to set same path val(0x0)\n[    0.762708] dev[1:0x00, 2:0x00, 3:0x00]\n[    0.762716] adc:0x1f, vbvolt:0x00, apple:0x04\n[    0.762724] chg_type:0x00\n[    0.762732] s2mu004_muic_attach_isr start(ATTACHED_DEV_NONE_MUIC)\n[    0.762741] s2mu004_muic_attach_isr done(ATTACHED_DEV_NONE_MUIC)\n[    0.763220] [sec_nfc] __sec_nfc_probe: probe start\n[    0.763252] [sec_nfc] sec_nfc_parse_dt: sec_nfc_parse_dt: irq : 14, firm : 90\n[    0.763272] [sec_nfc] __sec_nfc_probe: __sec_nfc_probe : nfc not support model : 0\n[    0.763426] tun: Universal TUN/TAP device driver, 1.6\n[    0.763435] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    0.763573] PPP generic driver version 2.4.2\n[    0.763712] PPP BSD Compression module registered\n[    0.763726] PPP Deflate Compression module registered\n[    0.763792] PPP MPPE Compression module registered\n[    0.763803] NET: Registered protocol family 24\n[    0.763820] ieee80211 phy.: wlbt: I: slsi_dev_load: Loading Maxwell Wi-Fi driver\n[    0.763845] ieee80211 phy.: wlbt: I: slsi_wlan_service_probe: WLAN service probe\n[    0.768552] ieee80211 phy.: wlbt: I: sap_mlme_init: Registering SAP\n[    0.768568] ieee80211 phy.: wlbt: I: sap_ma_init: Registering SAP\n[    0.768577] ieee80211 phy.: wlbt: I: sap_dbg_init: Registering SAP\n[    0.768584] ieee80211 phy.: wlbt: I: sap_test_init: Registering SAP\n[    0.768593] wifi_kobj_ref: 0xffffffc8355ada80\n[    0.768606] ieee80211 phy.: wlbt: I: slsi_dev_load: --- Maxwell Wi-Fi driver loaded successfully ---\n[    0.768675] usbcore: registered new interface driver rtl8150\n[    0.768704] usbcore: registered new interface driver r8152\n[    0.768739] usbcore: registered new interface driver asix\n[    0.768765] usbcore: registered new interface driver ax88179_178a\n[    0.768791] usbcore: registered new interface driver cdc_ether\n[    0.768817] usbcore: registered new interface driver cdc_eem\n[    0.768876] usbcore: registered new interface driver smsc75xx\n[    0.768913] usbcore: registered new interface driver smsc95xx\n[    0.768944] usbcore: registered new interface driver net1080\n[    0.768978] usbcore: registered new interface driver cdc_subset\n[    0.769011] usbcore: registered new interface driver zaurus\n[    0.769078] usbcore: registered new interface driver cdc_ncm\n[    0.769111] usbcore: registered new interface driver cdc_mbim\n[    0.769471] dwc3_exynos_probe: +++\n[    0.769796] 13600000.usb supply vdd33 not found, using dummy regulator\n[    0.769846] 13600000.usb supply vdd10 not found, using dummy regulator\n[    0.770185] dwc3_probe: +++\n[    0.770228] dwc3 13600000.dwc3: get qos_int_level from dwc3 node\n[    0.770247] dwc3 13600000.dwc3: dwc3_probe: dr_mode:3, suspend clock:0MHz\n[    0.770516] exynos_usbdrd_utmi_init: +++\n[    0.772248] exynos_usbdrd_utmi_init: ---\n[    0.772298] dwc3 13600000.dwc3: dwc3_core_init: max speed:3, hibernation:0, nr_scratch:0\n[    0.772336] 13600000.usb supply dwc3-vbus not found, using dummy regulator\n[    0.772926] dwc3 13600000.dwc3: Binding gadget dwc3-gadget\n[    0.772990] dwc3_probe: ---\n[    0.773014] exynos-dwc3 13600000.usb: dwc3_exynos_runtime_suspend\n[    0.773037] dwc3_exynos_probe: ---\n[    0.773406] usbcore: registered new interface driver cdc_acm\n[    0.773416] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters\n[    0.773455] usbcore: registered new interface driver usblp\n[    0.773489] usbcore: registered new interface driver cdc_wdm\n[    0.773523] usbcore: registered new interface driver usb-storage\n[    0.773577] usbcore: registered new interface driver usbserial\n[    0.773606] usbcore: registered new interface driver ftdi_sio\n[    0.773633] usbserial: USB Serial support registered for FTDI USB Serial Device\n[    0.773664] usbcore: registered new interface driver pl2303\n[    0.773687] usbserial: USB Serial support registered for pl2303\n[    0.774090] usb_notify: external_notifier_init\n[    0.774287] mousedev: PS/2 mouse device common for all mice\n[    0.774678] usbcore: registered new interface driver xpad\n[    0.774718] usbcore: registered new interface driver usb_acecad\n[    0.774750] usbcore: registered new interface driver aiptek\n[    0.774780] usbcore: registered new interface driver gtco\n[    0.774811] usbcore: registered new interface driver hanwang\n[    0.774842] usbcore: registered new interface driver kbtab\n[    0.774854] [HXTP] himax_hx83112_init\n[    0.774860] [HXTP] himax_hx83112_probe:Enter\n[    0.774867] [HXTP] himax_hx83112_probe:1st alloc g_core_chip_dt \n[    0.774879] [HXTP] [sec_input] Himax common touch panel driver init\n[    0.774980] himax_tp 5-0048: [sec_input] [HXTP] himax_chip_common_probe:Enter \n[    0.774999] himax_tp 5-0048: [sec_input] [HXTP]: PDATA START\n[    0.775012] himax_tp 5-0048: [sec_input] [HXTP] ic_data START\n[    0.775027] himax_tp 5-0048: [sec_input] [HXTP] DT-himax_parse_dt:panel-coords = 0, 1079, 0, 2339\n[    0.775043] himax_tp 5-0048: [sec_input] [HXTP] DT-himax_parse_dt:display-coords = (1080, 2340)\n[    0.775081] himax_tp 5-0048: [sec_input] [HXTP] DT:gpio_3v3_en value is not valid\n[    0.775096] himax_tp 5-0048: [sec_input] [HXTP] DT:gpio_irq=6, gpio_rst=119, gpio_3v3_en=-2\n[    0.775109] himax_tp 5-0048: [sec_input] [HXTP] DT:protocol_type=1\n[    0.775121] [HXTP] Now project nam=M20\n[    0.775129] [HXTP][ERROR]  DT-No vk info in DT\n[    0.851768] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_in_cmd_struct_init: Entering!\n[    0.851789] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_in_cmd_init: Entering!\n[    0.877133] himax_tp 5-0048: [sec_input] [HXTP] hx83112_sense_off: cnt = 0, data[0] = 0x87!\n[    0.878318] himax_tp 5-0048: [sec_input] [HXTP] hx83112_sense_off: Check enter_save_mode data[0]=C \n[    0.892904] himax_tp 5-0048: [sec_input] [HXTP] hx83112_chip_detect:Read driver IC ID = 83, 11, 2A\n[    0.892920] himax_tp 5-0048: [sec_input] [HXTP] hx83112_chip_detect:IC name = HX83112A\n[    0.892934] himax_tp 5-0048: [sec_input] [HXTP] hx83112_chip_detect: Himax IC package 83112a in\n[    0.892948] himax_tp 5-0048: [sec_input] [HXTP] himax_chip_common_init: chip detect found! list_num=0 \n[    0.892961] himax_tp 5-0048: [sec_input] [HXTP] hx83112_chip_init:IC cell type = 1\n[    0.892972] [HXTP] Now size=65536\n[    0.894575] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_check_CRC:Waiting for HW ready!\n[    0.900443] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_check_CRC:Waiting for HW ready!\n[    0.908442] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_check_CRC:Waiting for HW ready!\n[    0.916441] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_check_CRC:Waiting for HW ready!\n[    0.924442] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_check_CRC:Waiting for HW ready!\n[    0.932442] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_check_CRC:Waiting for HW ready!\n[    0.940442] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_check_CRC:Waiting for HW ready!\n[    0.949034] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_check_CRC: tmp_data[3]=0, tmp_data[2]=0, tmp_data[1]=0, tmp_data[0]=0  \n[    1.003757] [HXTP] Now start size=0x0000FF80\n[    1.007551] himax_tp 5-0048: [sec_input] [HXTP] flash_buffer[FFFC]=0x61,flash_buffer[FFFD]=0x1D,flash_buffer[FFFE]=0x66,flash_buffer[FFFF]=0x24\n[    1.007567] himax_tp 5-0048: [sec_input] [HXTP] Enter himax_mcu_sense_on \n[    1.031764] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_ic_reset,status: loadconfig=0,int_off=0\n[    1.031780] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_pin_reset: Now reset the Touch chip.\n[    1.113127] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_read_FW_ver:reload OK! \n[    1.113143] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_read_FW_ver : data[0]=0x4A,data[1]=0x21,data_2[0]=0xC0,data_2[1]=0x72\n[    1.113157] himax_tp 5-0048: [sec_input] reload_status=1\n[    1.137124] himax_tp 5-0048: [sec_input] [HXTP] hx83112_sense_off: cnt = 0, data[0] = 0x87!\n[    1.138307] himax_tp 5-0048: [sec_input] [HXTP] hx83112_sense_off: Check enter_save_mode data[0]=C \n[    1.152899] himax_tp 5-0048: [sec_input] [HXTP] PANEL_VER : 29 \n[    1.152912] himax_tp 5-0048: [sec_input] [HXTP] FW_VER : 208 \n[    1.153607] himax_tp 5-0048: [sec_input] [HXTP] TOUCH_VER : 11 \n[    1.153619] himax_tp 5-0048: [sec_input] [HXTP] DISPLAY_VER : 0 \n[    1.154314] himax_tp 5-0048: [sec_input] [HXTP] CID_VER : 2711 \n[    1.155390] himax_tp 5-0048: [sec_input] [HXTP] Cusomer ID = CLIB \n[    1.156469] himax_tp 5-0048: [sec_input] [HXTP] Project ID = project \n[    1.156575] himax_tp 5-0048: [sec_input] [HXTP] himax_loadSensorConfig: initialization complete\n[    1.156588] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_power_on_init:\n[    1.160306] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_touch_information:HX_RX_NUM =36,HX_TX_NUM =16,HX_MAX_PT=10 \n[    1.160322] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_touch_information:HX_XY_REVERSE =1,HX_Y_RES =2340,HX_X_RES=1080 \n[    1.160335] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_touch_information:HX_INT_IS_EDGE =1 \n[    1.160807] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_assign_sorting_mode:Now tmp_data[3]=0x00,tmp_data[2]=0x00,tmp_data[1]=0x00,tmp_data[0]=0x00\n[    1.161279] himax_tp 5-0048: [sec_input] [HXTP] Enter himax_mcu_sense_on \n[    1.183764] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_ic_reset,status: loadconfig=0,int_off=0\n[    1.183778] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_pin_reset: Now reset the Touch chip.\n[    1.263760] himax_tp 5-0048: [sec_input] [HXTP] calcDataSize: coord_data_size: 40, area_data_size:12, raw_data_frame_size:67, raw_data_nframes:1\n[    1.263776] himax_tp 5-0048: [sec_input] [HXTP] himax_chip_common_init: calcDataSize complete\n[    1.263789] himax_tp 5-0048: [sec_input] [HXTP] himax_chip_common_init: Use Protocol Type B\n[    1.263810] himax_tp 5-0048: [sec_input] [HXTP] input_set_abs_params: mix_x 0, max_x 1079, min_y 0, max_y 2339\n[    1.263920] input: sec_touchscreen as /devices/platform/13930000.hsi2c/i2c-5/5-0048/input/input1\n[    1.264230] himax_tp 5-0048: [sec_input] [HXTP] himax_report_data_init: rawdata_frame_size = 10, rawdata_size = 67\n[    1.264250] himax_tp 5-0048: [sec_input] [HXTP] himax_report_data_init: ic_data->HX_MAX_PT:10, hx_raw_cnt_max:2, hx_raw_cnt_rmd:2, g_hx_rawdata_size:67, hx_touch_data->touch_info_size:56\n[    1.264325] [HXTP] Now init rawdata buffs\n[    1.264341] himax_tp 5-0048: [sec_input] [HXTP] himax_int_register_trigger edge triiger falling\n                \n[    1.264482] himax_tp 5-0048: [sec_input] [HXTP] himax_ts_register_interrupt: irq enabled at qpio: 198\n[    1.266420] s2mpu08-rtc s2mpu08-rtc: s2m_rtc_enable_wtsr_smpl: WTSR: enable, SMPL: enable\n[    1.268555] s2mpu08-rtc s2mpu08-rtc: s2m_rtc_read_time: 2022-03-06 09:44:46(0x01)AM\n[    1.269846] s2mpu08-rtc s2mpu08-rtc: s2m_rtc_read_alarm: 2022-03-06 07:13:00(0)\n[    1.271206] s2mpu08-rtc s2mpu08-rtc: s2m_rtc_read_time: 2022-03-06 09:44:46(0x01)AM\n[    1.271315] s2mpu08-rtc s2mpu08-rtc: rtc core: registered s2mp-rtc as rtc0\n[    1.271597] i2c /dev entries driver\n[    1.273349] exynos-g2d 12c20000.fimg2d: registered as m2m1shot2 device\n[    1.273381] exynos-g2d 12c20000.fimg2d: G2D version : 0x06110000\n[    1.273404] exynos-g2d 12c20000.fimg2d: Fault handler is registered for 12c50000.sysmmu\n[    1.273492] exynos-g2d 12c20000.fimg2d: Skia QoS Table[0] c1 : 0 c0 : 0 mif :1014000\n[    1.273502] exynos-g2d 12c20000.fimg2d: Skia QoS Table[1] c1 : 0 c0 : 0 mif :1014000\n[    1.273511] exynos-g2d 12c20000.fimg2d: Skia QoS Table[2] c1 : 0 c0 : 0 mif :845000\n[    1.273520] exynos-g2d 12c20000.fimg2d: Skia QoS Table[3] c1 : 0 c0 : 0 mif :845000\n[    1.273528] exynos-g2d 12c20000.fimg2d: Skia QoS Table[4] c1 : 0 c0 : 0 mif :676000\n[    1.273537] exynos-g2d 12c20000.fimg2d: Skia QoS Table[5] c1 : 0 c0 : 0 mif :0\n[    1.273548] exynos-g2d 12c20000.fimg2d: G2D with m2m1shot2 is probed successfully.\n[    1.273876] exynos5-scaler 12c10000.scaler: 'gate2' clock is not present\n[    1.273888] exynos5-scaler 12c10000.scaler: 'mux_user' clock is not present\n[    1.274252] exynos5-scaler 12c10000.scaler: Fault handler is registered for 12c50000.sysmmu\n[    1.274267] exynos5-scaler 12c10000.scaler: Driver probed successfully(version: 80044001(40002))\n[    1.274794] s5p-mfc 12c30000.mfc0: decoder registered as /dev/video6\n[    1.274869] s5p-mfc 12c30000.mfc0: encoder registered as /dev/video7\n[    1.274939] s5p-mfc 12c30000.mfc0: secure decoder registered as /dev/video8\n[    1.275015] s5p-mfc 12c30000.mfc0: secure encoder registered as /dev/video9\n[    1.275278] s5p_mfc_probe:1254: QoS table[0] int : 267000, mif : 420000\n[    1.275289] s5p_mfc_probe:1254: QoS table[1] int : 333000, mif : 546000\n[    1.275298] s5p_mfc_probe:1254: QoS table[2] int : 533000, mif : 1352000\n[    1.275311] s5p-mfc 12c30000.mfc0: Fault handler is registered for 12c50000.sysmmu\n[    1.276036] exynos-jpeg 12c00000.smfc: device ID is not declared: unique device\n[    1.276066] exynos-jpeg 12c00000.smfc: INT Min.Lock Freq. = 534000\n[    1.276259] exynos-jpeg 12c00000.smfc: Fault handler is registered for 12c50000.sysmmu\n[    1.276395] exynos-jpeg 12c00000.smfc: Probed H/W Version: 23.02.2015\n[    1.276740] fimc_is_probe:start(277456, 13592)\n[    1.276840] parse_gate_info: can't find fimc_is clk_gate_ctrl node\n[    1.276850] [ERR]fimc_is_parse_dt:253:can't parse clock gate info node\n[    1.276859] FIMC-IS chain configuration: 0\n[    1.276872] FIMC-IS CSIS DMA split: 1\n[    1.276885] [ERR]fimc_is_vender_dt:418:rear2_sensor_id read is fail(-22)\n[    1.276893] [ERR]fimc_is_vender_dt:423:front2_sensor_id read is fail(-22)\n[    1.276902] [ERR]fimc_is_vender_dt:462:use_module_check not use(0)\n[    1.276910] skip_cal_loading not use(0)\n[    1.276918] [ERR]fimc_is_vender_dt:472:f_rom_power read is fail(-22)\n[    1.276924] f_rom_power not use(0)\n[    1.276936] fw_write: no property in the node.\n[    1.276945] fw_dump: no property in the node.\n[    1.276956] fw_write: no property in the node.\n[    1.276963] fw_dump: no property in the node.\n[    1.276976] [@]fimc_is_vender_dt: camera_num = 2 can't find camInfo_string node\n[    1.276986] fw_write: no property in the node.\n[    1.276994] fw_dump: no property in the node.\n[    1.277022] dvfs table[0] is default\n[    1.277036] default_hpg: no property in the node.\n[    1.277046] secure_front_int: no property in the node.\n[    1.277055] secure_front_cam: no property in the node.\n[    1.277064] secure_front_mif: no property in the node.\n[    1.277073] secure_front_i2c: no property in the node.\n[    1.277082] secure_front_hpg: no property in the node.\n[    1.277091] front2_preview_int: no property in the node.\n[    1.277101] front2_preview_cam: no property in the node.\n[    1.277109] front2_preview_mif: no property in the node.\n[    1.277118] front2_preview_i2c: no property in the node.\n[    1.277126] front2_preview_hpg: no property in the node.\n[    1.277134] front2_capture_int: no property in the node.\n[    1.277143] front2_capture_cam: no property in the node.\n[    1.277151] front2_capture_mif: no property in the node.\n[    1.277159] front2_capture_i2c: no property in the node.\n[    1.277167] front2_capture_hpg: no property in the node.\n[    1.277175] front2_video_int: no property in the node.\n[    1.277184] front2_video_cam: no property in the node.\n[    1.277192] front2_video_mif: no property in the node.\n[    1.277200] front2_video_i2c: no property in the node.\n[    1.277209] front2_video_hpg: no property in the node.\n[    1.277218] front2_video_capture_int: no property in the node.\n[    1.277228] front2_video_capture_cam: no property in the node.\n[    1.277236] front2_video_capture_mif: no property in the node.\n[    1.277245] front2_video_capture_i2c: no property in the node.\n[    1.277253] front2_video_capture_hpg: no property in the node.\n[    1.277264] front_preview_hpg: no property in the node.\n[    1.277276] front_capture_hpg: no property in the node.\n[    1.277288] front_video_hpg: no property in the node.\n[    1.277297] front_video_whd_int: no property in the node.\n[    1.277306] front_video_whd_cam: no property in the node.\n[    1.277314] front_video_whd_mif: no property in the node.\n[    1.277322] front_video_whd_i2c: no property in the node.\n[    1.277331] front_video_whd_hpg: no property in the node.\n[    1.277340] front_video_capture_int: no property in the node.\n[    1.277349] front_video_capture_cam: no property in the node.\n[    1.277358] front_video_capture_mif: no property in the node.\n[    1.277366] front_video_capture_i2c: no property in the node.\n[    1.277375] front_video_capture_hpg: no property in the node.\n[    1.277384] front_video_whd_capture_int: no property in the node.\n[    1.277392] front_video_whd_capture_cam: no property in the node.\n[    1.277400] front_video_whd_capture_mif: no property in the node.\n[    1.277409] front_video_whd_capture_i2c: no property in the node.\n[    1.277419] front_video_whd_capture_hpg: no property in the node.\n[    1.277431] front_vt1_hpg: no property in the node.\n[    1.277444] front_vt2_hpg: no property in the node.\n[    1.277457] front_vt4_hpg: no property in the node.\n[    1.277465] rear2_preview_fhd_int: no property in the node.\n[    1.277474] rear2_preview_fhd_cam: no property in the node.\n[    1.277482] rear2_preview_fhd_mif: no property in the node.\n[    1.277491] rear2_preview_fhd_i2c: no property in the node.\n[    1.277500] rear2_preview_fhd_hpg: no property in the node.\n[    1.277508] rear2_capture_int: no property in the node.\n[    1.277517] rear2_capture_cam: no property in the node.\n[    1.277526] rear2_capture_mif: no property in the node.\n[    1.277534] rear2_capture_i2c: no property in the node.\n[    1.277543] rear2_capture_hpg: no property in the node.\n[    1.277552] rear2_video_fhd_int: no property in the node.\n[    1.277561] rear2_video_fhd_cam: no property in the node.\n[    1.277569] rear2_video_fhd_mif: no property in the node.\n[    1.277578] rear2_video_fhd_i2c: no property in the node.\n[    1.277586] rear2_video_fhd_hpg: no property in the node.\n[    1.277595] rear2_video_fhd_capture_int: no property in the node.\n[    1.277604] rear2_video_fhd_capture_cam: no property in the node.\n[    1.277612] rear2_video_fhd_capture_mif: no property in the node.\n[    1.277621] rear2_video_fhd_capture_i2c: no property in the node.\n[    1.277630] rear2_video_fhd_capture_hpg: no property in the node.\n[    1.277639] rear3_preview_int: no property in the node.\n[    1.277647] rear3_preview_cam: no property in the node.\n[    1.277655] rear3_preview_mif: no property in the node.\n[    1.277664] rear3_preview_i2c: no property in the node.\n[    1.277672] rear3_preview_hpg: no property in the node.\n[    1.277681] rear3_capture_int: no property in the node.\n[    1.277689] rear3_capture_cam: no property in the node.\n[    1.277698] rear3_capture_mif: no property in the node.\n[    1.277707] rear3_capture_i2c: no property in the node.\n[    1.277715] rear3_capture_hpg: no property in the node.\n[    1.277725] rear3_video_int: no property in the node.\n[    1.277734] rear3_video_cam: no property in the node.\n[    1.277742] rear3_video_mif: no property in the node.\n[    1.277750] rear3_video_i2c: no property in the node.\n[    1.277759] rear3_video_hpg: no property in the node.\n[    1.277767] rear3_video_fhd_int: no property in the node.\n[    1.277776] rear3_video_fhd_cam: no property in the node.\n[    1.277785] rear3_video_fhd_mif: no property in the node.\n[    1.277794] rear3_video_fhd_i2c: no property in the node.\n[    1.277802] rear3_video_fhd_hpg: no property in the node.\n[    1.277815] rear_preview_fhd_hpg: no property in the node.\n[    1.277824] rear_preview_whd_int: no property in the node.\n[    1.277832] rear_preview_whd_cam: no property in the node.\n[    1.277841] rear_preview_whd_mif: no property in the node.\n[    1.277849] rear_preview_whd_i2c: no property in the node.\n[    1.277857] rear_preview_whd_hpg: no property in the node.\n[    1.277866] rear_preview_uhd_int: no property in the node.\n[    1.277875] rear_preview_uhd_cam: no property in the node.\n[    1.277883] rear_preview_uhd_mif: no property in the node.\n[    1.277892] rear_preview_uhd_i2c: no property in the node.\n[    1.277900] rear_preview_uhd_hpg: no property in the node.\n[    1.277909] rear_preview_uhd_60fps_int: no property in the node.\n[    1.277918] rear_preview_uhd_60fps_cam: no property in the node.\n[    1.277928] rear_preview_uhd_60fps_mif: no property in the node.\n[    1.277936] rear_preview_uhd_60fps_i2c: no property in the node.\n[    1.277945] rear_preview_uhd_60fps_hpg: no property in the node.\n[    1.277958] rear_capture_hpg: no property in the node.\n[    1.277971] rear_video_fhd_hpg: no property in the node.\n[    1.277982] rear_video_whd_int: no property in the node.\n[    1.277991] rear_video_whd_cam: no property in the node.\n[    1.278000] rear_video_whd_mif: no property in the node.\n[    1.278009] rear_video_whd_i2c: no property in the node.\n[    1.278018] rear_video_whd_hpg: no property in the node.\n[    1.278032] rear_video_uhd_hpg: no property in the node.\n[    1.278041] rear_video_uhd_60fps_int: no property in the node.\n[    1.278050] rear_video_uhd_60fps_cam: no property in the node.\n[    1.278059] rear_video_uhd_60fps_mif: no property in the node.\n[    1.278067] rear_video_uhd_60fps_i2c: no property in the node.\n[    1.278076] rear_video_uhd_60fps_hpg: no property in the node.\n[    1.278091] rear_video_fhd_capture_hpg: no property in the node.\n[    1.278102] rear_video_whd_capture_int: no property in the node.\n[    1.278110] rear_video_whd_capture_cam: no property in the node.\n[    1.278119] rear_video_whd_capture_mif: no property in the node.\n[    1.278128] rear_video_whd_capture_i2c: no property in the node.\n[    1.278136] rear_video_whd_capture_hpg: no property in the node.\n[    1.278152] rear_video_uhd_capture_hpg: no property in the node.\n[    1.278166] dual_preview_hpg: no property in the node.\n[    1.278180] dual_capture_hpg: no property in the node.\n[    1.278195] dual_video_hpg: no property in the node.\n[    1.278204] dual_video_capture_int: no property in the node.\n[    1.278213] dual_video_capture_cam: no property in the node.\n[    1.278222] dual_video_capture_mif: no property in the node.\n[    1.278231] dual_video_capture_i2c: no property in the node.\n[    1.278239] dual_video_capture_hpg: no property in the node.\n[    1.278247] pip_preview_int: no property in the node.\n[    1.278255] pip_preview_cam: no property in the node.\n[    1.278264] pip_preview_mif: no property in the node.\n[    1.278272] pip_preview_i2c: no property in the node.\n[    1.278280] pip_preview_hpg: no property in the node.\n[    1.278289] pip_capture_int: no property in the node.\n[    1.278297] pip_capture_cam: no property in the node.\n[    1.278306] pip_capture_mif: no property in the node.\n[    1.278314] pip_capture_i2c: no property in the node.\n[    1.278323] pip_capture_hpg: no property in the node.\n[    1.278331] pip_video_int: no property in the node.\n[    1.278340] pip_video_cam: no property in the node.\n[    1.278348] pip_video_mif: no property in the node.\n[    1.278356] pip_video_i2c: no property in the node.\n[    1.278364] pip_video_hpg: no property in the node.\n[    1.278372] pip_video_capture_int: no property in the node.\n[    1.278380] pip_video_capture_cam: no property in the node.\n[    1.278389] pip_video_capture_mif: no property in the node.\n[    1.278397] pip_video_capture_i2c: no property in the node.\n[    1.278406] pip_video_capture_hpg: no property in the node.\n[    1.278420] preview_high_speed_fps_hpg: no property in the node.\n[    1.278429] video_high_speed_60fps_swvdis_int: no property in the node.\n[    1.278438] video_high_speed_60fps_swvdis_cam: no property in the node.\n[    1.278447] video_high_speed_60fps_swvdis_mif: no property in the node.\n[    1.278456] video_high_speed_60fps_swvdis_i2c: no property in the node.\n[    1.278465] video_high_speed_60fps_swvdis_hpg: no property in the node.\n[    1.278480] video_high_speed_60fps_hpg: no property in the node.\n[    1.278496] video_high_speed_120fps_hpg: no property in the node.\n[    1.278505] video_high_speed_240fps_int: no property in the node.\n[    1.278513] video_high_speed_240fps_cam: no property in the node.\n[    1.278522] video_high_speed_240fps_mif: no property in the node.\n[    1.278531] video_high_speed_240fps_i2c: no property in the node.\n[    1.278539] video_high_speed_240fps_hpg: no property in the node.\n[    1.278548] ext_rear_int: no property in the node.\n[    1.278556] ext_rear_cam: no property in the node.\n[    1.278565] ext_rear_mif: no property in the node.\n[    1.278573] ext_rear_i2c: no property in the node.\n[    1.278581] ext_rear_hpg: no property in the node.\n[    1.278590] ext_front_int: no property in the node.\n[    1.278599] ext_front_cam: no property in the node.\n[    1.278607] ext_front_mif: no property in the node.\n[    1.278616] ext_front_i2c: no property in the node.\n[    1.278624] ext_front_hpg: no property in the node.\n[    1.278639] max_hpg: no property in the node.\n[    1.278648] (null)int: no property in the node.\n[    1.278656] (null)cam: no property in the node.\n[    1.278664] (null)mif: no property in the node.\n[    1.278673] (null)i2c: no property in the node.\n[    1.278681] (null)hpg: no property in the node.\n[    1.278688] dvfs table[1] is DVFS table for HAL3\n[    1.278699] default_hpg: no property in the node.\n[    1.278707] secure_front_int: no property in the node.\n[    1.278716] secure_front_cam: no property in the node.\n[    1.278725] secure_front_mif: no property in the node.\n[    1.278733] secure_front_i2c: no property in the node.\n[    1.278742] secure_front_hpg: no property in the node.\n[    1.278751] front2_preview_int: no property in the node.\n[    1.278759] front2_preview_cam: no property in the node.\n[    1.278768] front2_preview_mif: no property in the node.\n[    1.278776] front2_preview_i2c: no property in the node.\n[    1.278785] front2_preview_hpg: no property in the node.\n[    1.278794] front2_capture_int: no property in the node.\n[    1.278802] front2_capture_cam: no property in the node.\n[    1.278811] front2_capture_mif: no property in the node.\n[    1.278819] front2_capture_i2c: no property in the node.\n[    1.278828] front2_capture_hpg: no property in the node.\n[    1.278836] front2_video_int: no property in the node.\n[    1.278844] front2_video_cam: no property in the node.\n[    1.278852] front2_video_mif: no property in the node.\n[    1.278861] front2_video_i2c: no property in the node.\n[    1.278869] front2_video_hpg: no property in the node.\n[    1.278877] front2_video_capture_int: no property in the node.\n[    1.278886] front2_video_capture_cam: no property in the node.\n[    1.278894] front2_video_capture_mif: no property in the node.\n[    1.278903] front2_video_capture_i2c: no property in the node.\n[    1.278911] front2_video_capture_hpg: no property in the node.\n[    1.278922] front_preview_hpg: no property in the node.\n[    1.278933] front_capture_hpg: no property in the node.\n[    1.278946] front_video_hpg: no property in the node.\n[    1.278955] front_video_whd_int: no property in the node.\n[    1.278963] front_video_whd_cam: no property in the node.\n[    1.278972] front_video_whd_mif: no property in the node.\n[    1.278980] front_video_whd_i2c: no property in the node.\n[    1.278989] front_video_whd_hpg: no property in the node.\n[    1.278997] front_video_capture_int: no property in the node.\n[    1.279005] front_video_capture_cam: no property in the node.\n[    1.279014] front_video_capture_mif: no property in the node.\n[    1.279023] front_video_capture_i2c: no property in the node.\n[    1.279031] front_video_capture_hpg: no property in the node.\n[    1.279040] front_video_whd_capture_int: no property in the node.\n[    1.279049] front_video_whd_capture_cam: no property in the node.\n[    1.279058] front_video_whd_capture_mif: no property in the node.\n[    1.279066] front_video_whd_capture_i2c: no property in the node.\n[    1.279075] front_video_whd_capture_hpg: no property in the node.\n[    1.279087] front_vt1_hpg: no property in the node.\n[    1.279099] front_vt2_hpg: no property in the node.\n[    1.279112] front_vt4_hpg: no property in the node.\n[    1.279121] rear2_preview_fhd_int: no property in the node.\n[    1.279130] rear2_preview_fhd_cam: no property in the node.\n[    1.279138] rear2_preview_fhd_mif: no property in the node.\n[    1.279147] rear2_preview_fhd_i2c: no property in the node.\n[    1.279156] rear2_preview_fhd_hpg: no property in the node.\n[    1.279164] rear2_capture_int: no property in the node.\n[    1.279173] rear2_capture_cam: no property in the node.\n[    1.279182] rear2_capture_mif: no property in the node.\n[    1.279190] rear2_capture_i2c: no property in the node.\n[    1.279199] rear2_capture_hpg: no property in the node.\n[    1.279208] rear2_video_fhd_int: no property in the node.\n[    1.279216] rear2_video_fhd_cam: no property in the node.\n[    1.279224] rear2_video_fhd_mif: no property in the node.\n[    1.279233] rear2_video_fhd_i2c: no property in the node.\n[    1.279241] rear2_video_fhd_hpg: no property in the node.\n[    1.279249] rear2_video_fhd_capture_int: no property in the node.\n[    1.279258] rear2_video_fhd_capture_cam: no property in the node.\n[    1.279267] rear2_video_fhd_capture_mif: no property in the node.\n[    1.279276] rear2_video_fhd_capture_i2c: no property in the node.\n[    1.279284] rear2_video_fhd_capture_hpg: no property in the node.\n[    1.279293] rear3_preview_int: no property in the node.\n[    1.279301] rear3_preview_cam: no property in the node.\n[    1.279309] rear3_preview_mif: no property in the node.\n[    1.279317] rear3_preview_i2c: no property in the node.\n[    1.279326] rear3_preview_hpg: no property in the node.\n[    1.279334] rear3_capture_int: no property in the node.\n[    1.279342] rear3_capture_cam: no property in the node.\n[    1.279350] rear3_capture_mif: no property in the node.\n[    1.279359] rear3_capture_i2c: no property in the node.\n[    1.279367] rear3_capture_hpg: no property in the node.\n[    1.279375] rear3_video_int: no property in the node.\n[    1.279383] rear3_video_cam: no property in the node.\n[    1.279392] rear3_video_mif: no property in the node.\n[    1.279400] rear3_video_i2c: no property in the node.\n[    1.279408] rear3_video_hpg: no property in the node.\n[    1.279417] rear3_video_fhd_int: no property in the node.\n[    1.279425] rear3_video_fhd_cam: no property in the node.\n[    1.279434] rear3_video_fhd_mif: no property in the node.\n[    1.279442] rear3_video_fhd_i2c: no property in the node.\n[    1.279451] rear3_video_fhd_hpg: no property in the node.\n[    1.279464] rear_preview_fhd_hpg: no property in the node.\n[    1.279474] rear_preview_whd_int: no property in the node.\n[    1.279482] rear_preview_whd_cam: no property in the node.\n[    1.279490] rear_preview_whd_mif: no property in the node.\n[    1.279499] rear_preview_whd_i2c: no property in the node.\n[    1.279508] rear_preview_whd_hpg: no property in the node.\n[    1.279517] rear_preview_uhd_int: no property in the node.\n[    1.279526] rear_preview_uhd_cam: no property in the node.\n[    1.279535] rear_preview_uhd_mif: no property in the node.\n[    1.279543] rear_preview_uhd_i2c: no property in the node.\n[    1.279552] rear_preview_uhd_hpg: no property in the node.\n[    1.279561] rear_preview_uhd_60fps_int: no property in the node.\n[    1.279570] rear_preview_uhd_60fps_cam: no property in the node.\n[    1.279578] rear_preview_uhd_60fps_mif: no property in the node.\n[    1.279587] rear_preview_uhd_60fps_i2c: no property in the node.\n[    1.279596] rear_preview_uhd_60fps_hpg: no property in the node.\n[    1.279609] rear_capture_hpg: no property in the node.\n[    1.279622] rear_video_fhd_hpg: no property in the node.\n[    1.279631] rear_video_whd_int: no property in the node.\n[    1.279640] rear_video_whd_cam: no property in the node.\n[    1.279649] rear_video_whd_mif: no property in the node.\n[    1.279658] rear_video_whd_i2c: no property in the node.\n[    1.279667] rear_video_whd_hpg: no property in the node.\n[    1.279681] rear_video_uhd_hpg: no property in the node.\n[    1.279689] rear_video_uhd_60fps_int: no property in the node.\n[    1.279699] rear_video_uhd_60fps_cam: no property in the node.\n[    1.279708] rear_video_uhd_60fps_mif: no property in the node.\n[    1.279717] rear_video_uhd_60fps_i2c: no property in the node.\n[    1.279725] rear_video_uhd_60fps_hpg: no property in the node.\n[    1.279872] rear_video_fhd_capture_hpg: no property in the node.\n[    1.279885] rear_video_whd_capture_int: no property in the node.\n[    1.279896] rear_video_whd_capture_cam: no property in the node.\n[    1.279905] rear_video_whd_capture_mif: no property in the node.\n[    1.279914] rear_video_whd_capture_i2c: no property in the node.\n[    1.279922] rear_video_whd_capture_hpg: no property in the node.\n[    1.279938] rear_video_uhd_capture_hpg: no property in the node.\n[    1.279952] dual_preview_hpg: no property in the node.\n[    1.279966] dual_capture_hpg: no property in the node.\n[    1.279980] dual_video_hpg: no property in the node.\n[    1.279989] dual_video_capture_int: no property in the node.\n[    1.279997] dual_video_capture_cam: no property in the node.\n[    1.280006] dual_video_capture_mif: no property in the node.\n[    1.280015] dual_video_capture_i2c: no property in the node.\n[    1.280023] dual_video_capture_hpg: no property in the node.\n[    1.280031] pip_preview_int: no property in the node.\n[    1.280039] pip_preview_cam: no property in the node.\n[    1.280047] pip_preview_mif: no property in the node.\n[    1.280056] pip_preview_i2c: no property in the node.\n[    1.280064] pip_preview_hpg: no property in the node.\n[    1.280072] pip_capture_int: no property in the node.\n[    1.280080] pip_capture_cam: no property in the node.\n[    1.280088] pip_capture_mif: no property in the node.\n[    1.280097] pip_capture_i2c: no property in the node.\n[    1.280105] pip_capture_hpg: no property in the node.\n[    1.280113] pip_video_int: no property in the node.\n[    1.280121] pip_video_cam: no property in the node.\n[    1.280129] pip_video_mif: no property in the node.\n[    1.280137] pip_video_i2c: no property in the node.\n[    1.280145] pip_video_hpg: no property in the node.\n[    1.280154] pip_video_capture_int: no property in the node.\n[    1.280162] pip_video_capture_cam: no property in the node.\n[    1.280170] pip_video_capture_mif: no property in the node.\n[    1.280178] pip_video_capture_i2c: no property in the node.\n[    1.280187] pip_video_capture_hpg: no property in the node.\n[    1.280202] preview_high_speed_fps_hpg: no property in the node.\n[    1.280211] video_high_speed_60fps_swvdis_int: no property in the node.\n[    1.280220] video_high_speed_60fps_swvdis_cam: no property in the node.\n[    1.280229] video_high_speed_60fps_swvdis_mif: no property in the node.\n[    1.280238] video_high_speed_60fps_swvdis_i2c: no property in the node.\n[    1.280247] video_high_speed_60fps_swvdis_hpg: no property in the node.\n[    1.280261] video_high_speed_60fps_hpg: no property in the node.\n[    1.280277] video_high_speed_120fps_hpg: no property in the node.\n[    1.280286] video_high_speed_240fps_int: no property in the node.\n[    1.280295] video_high_speed_240fps_cam: no property in the node.\n[    1.280304] video_high_speed_240fps_mif: no property in the node.\n[    1.280312] video_high_speed_240fps_i2c: no property in the node.\n[    1.280321] video_high_speed_240fps_hpg: no property in the node.\n[    1.280330] ext_rear_int: no property in the node.\n[    1.280338] ext_rear_cam: no property in the node.\n[    1.280347] ext_rear_mif: no property in the node.\n[    1.280355] ext_rear_i2c: no property in the node.\n[    1.280363] ext_rear_hpg: no property in the node.\n[    1.280371] ext_front_int: no property in the node.\n[    1.280379] ext_front_cam: no property in the node.\n[    1.280387] ext_front_mif: no property in the node.\n[    1.280395] ext_front_i2c: no property in the node.\n[    1.280403] ext_front_hpg: no property in the node.\n[    1.280417] max_hpg: no property in the node.\n[    1.280426] (null)int: no property in the node.\n[    1.280435] (null)cam: no property in the node.\n[    1.280443] (null)mif: no property in the node.\n[    1.280451] (null)i2c: no property in the node.\n[    1.280460] (null)hpg: no property in the node.\n[    1.282182] fimc_is_init_mem - ION\n[    1.286999] [RSC] Internal memory size (aligned) : 02cc7740\n[    1.287664] [RSC] Kernel virtual for library: 00000000\n[    1.287673] [RSC] Kernel virtual for debug: ffffffc07f880000\n[    1.287681] [RSC] fimc_is_init_mem done\n[    1.287695] [RSC] fimc_is_resourcemgr_probe(0)\n[    1.287791] fimc-is is created\n[    1.287802] isfw-msg is created\n[    1.287834] Success to create sys/devices/svc svc : 0x0000000000000000\n[    1.287844] Success to create sys/devices/svc/Camera : 0x0000000000000000\n[    1.288208] [@][VID] exynos-fimc-is-30s(110) is created\n[    1.288289] [@][VID] exynos-fimc-is-30c(111) is created\n[    1.288356] [@][VID] exynos-fimc-is-30p(112) is created\n[    1.288424] [@][VID] exynos-fimc-is-31s(120) is created\n[    1.288488] [@][VID] exynos-fimc-is-31c(121) is created\n[    1.288553] [@][VID] exynos-fimc-is-31p(122) is created\n[    1.288618] [@][VID] exynos-fimc-is-i0s(130) is created\n[    1.288684] [@][VID] exynos-fimc-is-i0c(131) is created\n[    1.288746] [@][VID] exynos-fimc-is-i0p(132) is created\n[    1.288815] [@][VID] exynos-fimc-is-m0s(160) is created\n[    1.288877] [@][VID] exynos-fimc-is-m1s(161) is created\n[    1.288942] [@][VID] exynos-fimc-is-m0p(170) is created\n[    1.289005] [@][VID] exynos-fimc-is-m1p(171) is created\n[    1.289067] [@][VID] exynos-fimc-is-m2p(172) is created\n[    1.289129] [@][VID] exynos-fimc-is-m3p(173) is created\n[    1.289204] [@][VID] exynos-fimc-is-m4p(174) is created\n[    1.289270] [@][VID] exynos-fimc-is-m5p(175) is created\n[    1.289334] [@][VID] exynos-fimc-is-vra(180) is created\n[    1.289390] [@][ITFC][ID: 1] 3AA VA(0xffffff8016040000)\n[    1.289504] [@][ITFC][ID: 1] kvaddr for taaisp: 0xffffff8013461000\n[    1.289515] [@][ITFC][ID: 2] 3AA VA(0xffffff8016060000)\n[    1.289571] [@][ITFC][ID: 3] ISP VA(0xffffff8016080000)\n[    1.289626] [@][ITFC][ID:12] MCSC0 VA(0xffffff80160a0000)\n[    1.289658] [@][ITFC][ID:15] VRA0 VA(0xffffff80160c0000)\n[    1.289670] [@][ITFC][ID:15] VRA1 VA(0xffffff80160e0000)\n[    1.289700] [@][ITFC][ID:15] kvaddr for vra: 0xffffff8013a62000\n[    1.289709] [@][HW:3AA0]probe done\n[    1.289717] [@][HW:3AA1]probe done\n[    1.289726] [@][HW:ISP0]probe done\n[    1.289735] [@][HW:MCS0]probe done\n[    1.289744] [@][HW:VRA]probe done\n[    1.289763] [@][HW:3AA0]sfr dump memory (V/P/S):(ffffffc07f000000/00000000ff000000/0x10000)[0x14450000~0x1445FFFF]\n[    1.289779] [@][HW:3AA1]sfr dump memory (V/P/S):(ffffffc07f070000/00000000ff070000/0x10000)[0x14460000~0x1446FFFF]\n[    1.289796] [@][HW:ISP0]sfr dump memory (V/P/S):(ffffffc07f7a0000/00000000ff7a0000/0x10000)[0x14600000~0x1460FFFF]\n[    1.289812] [@][HW:MCS0]sfr dump memory (V/P/S):(ffffffc835b10000/00000008b5b10000/0x10000)[0x14640000~0x1464FFFF]\n[    1.289828] [@][HW:VRA]sfr dump memory (V/P/S):(ffffffc8355c0000/00000008b55c0000/0x10000)[0x14610000~0x1461FFFF]\n[    1.289844] [@][HW:VRA]sfr B dump memory (V/P/S):(ffffffc8356f0000/00000008b56f0000/0x10000)[0x14620000~0x1462FFFF]\n[    1.289858] exynos-fimc-is 14440000.fimc_is: Fault handler is registered for 14730000.sysmmu\n[    1.289869] exynos-fimc-is 14440000.fimc_is: Fault handler is registered for 14760000.sysmmu\n[    1.289879] exynos-fimc-is 14440000.fimc_is: Fault handler is registered for 14540000.sysmmu\n[    1.289910] [ERR]fimc_is_probe:1610:pinctrl_lookup_state failed!!!\n\n[    1.289923] fimc_is_probe:end\n[    1.290539] i2c_addr dt parsing skipped\n[    1.290571] FIMC-IS-SENSOR-MODULE-5E9 fimc-is_sensor_5e9@10: sensor_module_5e9_power_setpin_with_eeprom E v4\n[    1.290624] FIMC-IS-SENSOR-MODULE-5E9 fimc-is_sensor_5e9@10: failed to get PIN_POWER_EN\n[    1.290634] FIMC-IS-SENSOR-MODULE-5E9 fimc-is_sensor_5e9@10: failed to get PIN_POWER_EN\n[    1.290646] FIMC-IS-SENSOR-MODULE-5E9 fimc-is_sensor_5e9@10: sensor_module_5e9_power_setpin_with_eeprom X v4\n[    1.290749] sensor_module_5e9_probe done(0)\n[    1.291076] i2c_addr dt parsing skipped\n[    1.291102] FIMC-IS-SENSOR-MODULE-4HA fimc-is_sensor_4ha@6C: sensor_module_4ha_power_setpin E v4\n[    1.291112] FIMC-IS-SENSOR-MODULE-4HA fimc-is_sensor_4ha@6C: sensor_module_4ha_power_setpin : This is module without actuator \n[    1.291156] FIMC-IS-SENSOR-MODULE-4HA fimc-is_sensor_4ha@6C: failed to get gpio_cam_a2p8_en\n[    1.291167] FIMC-IS-SENSOR-MODULE-4HA fimc-is_sensor_4ha@6C: failed to get gpio_camio_1p8_en\n[    1.291176] FIMC-IS-SENSOR-MODULE-4HA fimc-is_sensor_4ha@6C: failed to get gpio_cam_core_en\n[    1.291188] FIMC-IS-SENSOR-MODULE-4HA fimc-is_sensor_4ha@6C: sensor_module_4ha_power_setpin X v4\n[    1.291226] sensor_module_4ha_probe pdta->id(1), module_enum id = 0 \n[    1.291240] sensor_module_4ha_probe done\n[    1.291558] i2c_addr dt parsing skipped\n[    1.291583] FIMC-IS-SENSOR-MODULE-3L6 fimc-is_sensor_3l6@2D: sensor_module_3l6_power_setpin E v4\n[    1.291629] FIMC-IS-SENSOR-MODULE-3L6 fimc-is_sensor_3l6@2D: failed to get gpio_cam_2p8_en\n[    1.291640] FIMC-IS-SENSOR-MODULE-3L6 fimc-is_sensor_3l6@2D: failed to get gpio_cam_core_en\n[    1.291661] [@][ERR]sensor_module_3l6_power_setpin:169:sensor_module_3l6_power_setpin failed to get gpio_camio_1p8_en\n\n[    1.291675] [@][ERR]sensor_module_3l6_power_setpin:177:sensor_module_3l6_power_setpin failed to get gpio_camera_pmic_en\n\n[    1.291692] FIMC-IS-SENSOR-MODULE-3L6 fimc-is_sensor_3l6@2D: sensor_module_3l6_power_setpin X v4\n[    1.291836] sensor_module_3l6_probe pdta->id(0), module_enum id = 0 \n[    1.291854] sensor_module_3l6_probe Probe done\n[    1.291973] cis_5e9_probe sensor_id 3\n[    1.291982] sensor peri is not yet probed\n[    1.292077] cis_4ha_probe sensor_id 1\n[    1.292086] sensor peri is not yet probed\n[    1.292155] cis_3l6_probe sensor id 0\n[    1.292163] sensor peri is not yet probed\n[    1.292229] sensor_dw9808_actuator_probe sensor_id(0) actuator_place(0)\n[    1.292240] sensor_dw9808_actuator_probe done\n[    1.292495] flash_gpio_platform_probe done\n[    1.292571] fimc_is_eeprom_i2c 3-0058[0]: fimc_is_sensor_eeprom probed!\n[    1.292597] fimc_is_eeprom_i2c 3-0051[1]: fimc_is_sensor_eeprom probed!\n[    1.292625] fimc_is_eeprom_i2c 6-0050[6]: fimc_is_sensor_eeprom probed!\n[    1.292944] sec-thermistor sec_thermistor@0: sec_therm_probe: fail to get iio channel\n[    1.293479] s3c2410-wdt 10060000.watchdog: DISABLE_WDT reg val:  ffffffff, MASK_WDT_RESET reg val: ffffffff\n[    1.293522] s3c2410-wdt 10060000.watchdog: probe: mapped reg_base=ffffff8009ab4000\n[    1.293578] s3c2410-wdt 10060000.watchdog: s3c2410wdt_set_heartbeat: timeout=30, divisor=93, count=6093750 (0000fff5)\n[    1.293850] s3c2410-wdt 10060000.watchdog: DISABLE_WDT reg val:  feffffff, MASK_WDT_RESET reg val: ffffffff\n[    1.293862] s3c2410-wdt 10060000.watchdog: Automatic_wdt set false done, mask = 0\n[    1.293874] s3c2410-wdt 10060000.watchdog: Watchdog stop done, WTCON = 5c00\n[    1.293889] s3c2410-wdt 10060000.watchdog: DISABLE_WDT reg val:  feffffff, MASK_WDT_RESET reg val: feffffff\n[    1.293898] s3c2410-wdt 10060000.watchdog: Mask_wdt_reset set false done, mask = 0\n[    1.293909] s3c2410-wdt 10060000.watchdog: Watchdog stop done, WTCON = 5c00\n[    1.293923] s3c2410-wdt 10060000.watchdog: watchdog inactive, reset disabled, irq disabled\n[    1.294120] softdog: Software Watchdog Timer: 0.08 initialized. soft_noboot=0 soft_margin=1000 sec soft_panic=1 (nowayout=0)\n[    1.294217] device-mapper: uevent: version 1.0.3\n[    1.294379] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com\n[    1.294515] alta_bigdata : create /proc/alta_bigdata\n[    1.294673] exynos_ufc: found!\n[    1.294795] exynos_acme: Complete to initialize cpufreq-domain0\n[    1.294804] exynos_acme: CPUFREQ of domain0 cal-id : 0xb040003\n[    1.294814] exynos_acme: CPUFREQ of domain0 sibling cpus : 0-5\n[    1.294823] exynos_acme: CPUFREQ of domain0 boot freq = 1014000 kHz, resume freq = 1014000 kHz\n[    1.294832] exynos_acme: CPUFREQ of domain0 max freq : 1586000 kHz, min freq : 449000 kHz\n[    1.294841] exynos_acme: CPUFREQ of domain0 PM QoS max-class-id : 4, min-class-id : 3\n[    1.294849] exynos_acme: CPUFREQ of domain0 table size = 18\n[    1.294858] exynos_acme: CPUFREQ of domain0 : L 4  1586000 kHz\n[    1.294866] exynos_acme: CPUFREQ of domain0 : L 5  1482000 kHz\n[    1.294873] exynos_acme: CPUFREQ of domain0 : L 6  1352000 kHz\n[    1.294880] exynos_acme: CPUFREQ of domain0 : L 7  1248000 kHz\n[    1.294887] exynos_acme: CPUFREQ of domain0 : L 8  1144000 kHz\n[    1.294893] exynos_acme: CPUFREQ of domain0 : L 9  1014000 kHz\n[    1.294901] exynos_acme: CPUFREQ of domain0 : L10   902000 kHz\n[    1.294907] exynos_acme: CPUFREQ of domain0 : L11   839000 kHz\n[    1.294915] exynos_acme: CPUFREQ of domain0 : L12   757000 kHz\n[    1.294922] exynos_acme: CPUFREQ of domain0 : L13   676000 kHz\n[    1.294929] exynos_acme: CPUFREQ of domain0 : L14   546000 kHz\n[    1.294936] exynos_acme: CPUFREQ of domain0 : L15   449000 kHz\n[    1.294989] exynos_ufc: found!\n[    1.295088] exynos_acme: Complete to initialize cpufreq-domain1\n[    1.295097] exynos_acme: CPUFREQ of domain1 cal-id : 0xb040002\n[    1.295105] exynos_acme: CPUFREQ of domain1 sibling cpus : 6-7\n[    1.295113] exynos_acme: CPUFREQ of domain1 boot freq = 1352000 kHz, resume freq = 1352000 kHz\n[    1.295122] exynos_acme: CPUFREQ of domain1 max freq : 1768000 kHz, min freq : 936000 kHz\n[    1.295129] exynos_acme: CPUFREQ of domain1 PM QoS max-class-id : 6, min-class-id : 5\n[    1.295137] exynos_acme: CPUFREQ of domain1 table size = 17\n[    1.295145] exynos_acme: CPUFREQ of domain1 : L 7  1768000 kHz\n[    1.295152] exynos_acme: CPUFREQ of domain1 : L 8  1664000 kHz\n[    1.295159] exynos_acme: CPUFREQ of domain1 : L 9  1560000 kHz\n[    1.295166] exynos_acme: CPUFREQ of domain1 : L10  1352000 kHz\n[    1.295173] exynos_acme: CPUFREQ of domain1 : L11  1144000 kHz\n[    1.295180] exynos_acme: CPUFREQ of domain1 : L12   936000 kHz\n[    1.295251] exynos_acme: CPUFREQ domain0 registered\n[    1.295479] exynos_acme: CPUFREQ domain1 registered\n[    1.295694] exynos_acme: Initialized Exynos cpufreq driver\n[    1.296350] Exynos cpuidle driver Initialized\n[    1.296398] Synopsys Designware Multimedia Card Interface Driver\n[    1.296946] dwmmc_exynos 13500000.dwmmc0: supports-highspeed property is deprecated.\n[    1.297123] exynos_smu_get_pdevice: Found smu device\n[    1.297132] exynos_smu_get_pdevice: Matching platform device\n[    1.297167] dwmmc_exynos 13500000.dwmmc0: IDMAC supports 64-bit address mode.\n[    1.297332] dwmmc_exynos 13500000.dwmmc0: Using internal DMA controller.\n[    1.297363] dwmmc_exynos 13500000.dwmmc0: FIFOTH: 0x 300f0030\n[    1.297375] dwmmc_exynos 13500000.dwmmc0: Version ID is 270a\n[    1.297565] dwmmc_exynos 13500000.dwmmc0: DW MMC controller at irq 64,64 bit host data width,64 deep fifo\n[    1.311839] mmc_host mmc0: Bus speed (slot 0) = 24984375Hz (slot req 400000Hz, actual 390380HZ div = 32)\n[    1.327874] dwmmc_exynos 13500000.dwmmc0: CMDQ host enabled!!!\n[    1.327913] dw_mci_transferred_cnt_init: trans_count: successed.....\n[    1.327925] dw_mci_debug_init: create debug_log sysfs : successed.....\n[    1.327935] dwmmc_exynos 13500000.dwmmc0: host 0 debug On\n[    1.327945] dwmmc_exynos 13500000.dwmmc0: 1 slots initialized\n[    1.328324] dwmmc_exynos 13550000.dwmmc2: supports-highspeed property is deprecated.\n[    1.328501] dwmmc_exynos 13550000.dwmmc2: exynos_mmc_smu_get_vops: exynos-mmc-smu property not specified\n[    1.328512] dwmmc_exynos 13550000.dwmmc2: exynos_mmc_smu_get_pdevice: exynos-mmc-smu property not specified\n[    1.328523] dwmmc_exynos 13550000.dwmmc2: exynos_mmc_smu_get_dev: Host device doesn't have SMU or fail to get SMU\n[    1.328534] dwmmc_exynos 13550000.dwmmc2: dw_mci_probe, Fail to get Access control device.(-19)\n[    1.328547] dwmmc_exynos 13550000.dwmmc2: IDMAC supports 64-bit address mode.\n[    1.328669] dwmmc_exynos 13550000.dwmmc2: Using internal DMA controller.\n[    1.328698] dwmmc_exynos 13550000.dwmmc2: FIFOTH: 0x 300f0030\n[    1.328709] dwmmc_exynos 13550000.dwmmc2: Version ID is 270a\n[    1.329104] dwmmc_exynos 13550000.dwmmc2: DW MMC controller at irq 65,64 bit host data width,64 deep fifo\n[    1.329218] dwmmc_exynos 13550000.dwmmc2: Slot quirk 'disable-wp' is deprecated\n[    1.330358] mmc1 skip mmc detect change\n[    1.330402] dw_mci_transferred_cnt_init: trans_count: successed.....\n[    1.330412] dw_mci_debug_init: create debug_log sysfs : successed.....\n[    1.330423] dwmmc_exynos 13550000.dwmmc2: host 1 debug On\n[    1.330433] dwmmc_exynos 13550000.dwmmc2: 1 slots initialized\n[    1.330479] dwmmc_exynos 13550000.dwmmc2: success to request irq for card detect.\n[    1.330489] wake enabled for irq 199\n[    1.330922] leds-rt8547 leds_rt8547: flash_current = <1500><28>\n[    1.330933] leds-rt8547 leds_rt8547: movie_current = <200><7>\n[    1.330943] leds-rt8547 leds_rt8547: factory_current = <350><13>\n[    1.330952] leds-rt8547 leds_rt8547: pre_current = <275><10>\n[    1.330959] rt8547_probe : RT8547_LED Probe\n[    1.331099] hidraw: raw HID events driver (C) Jiri Kosina\n[    1.332905] Successfully registered hid_synaptics_driver\n[    1.333041] usbcore: registered new interface driver usbhid\n[    1.333050] usbhid: USB HID core driver\n[    1.333310] ashmem: initialized\n[    1.333865] nf_register_hooks(freecess hooks) success\n[    1.333951] sec_param_work_init: start\n[    1.333988] [NAD_BALANCER] Not support NAD balancer.\n[    1.333997] sec_gpio_detect_init start\n[    1.334076] get_subfpcb_gpio: sub fpcb gpios : -1 12\n[    1.334085] [sec_abc] sec_abc_init\n[    1.334291] [sec_abc] sec_abc_probe\n[    1.334304] sec_abc_probe: parse dt done\n[    1.335038] exynos-devfreq 17000010.devfreq_mif: not used UM monitor\n[    1.335062] exynos-devfreq 17000010.devfreq_mif: DEVFREQ :  2093000Khz,        0uV\n[    1.335073] exynos-devfreq 17000010.devfreq_mif: DEVFREQ :  2002000Khz,        0uV\n[    1.335083] exynos-devfreq 17000010.devfreq_mif: DEVFREQ :  1794000Khz,        0uV\n[    1.335093] exynos-devfreq 17000010.devfreq_mif: DEVFREQ :  1539000Khz,        0uV\n[    1.335102] exynos-devfreq 17000010.devfreq_mif: DEVFREQ :  1352000Khz,        0uV\n[    1.335111] exynos-devfreq 17000010.devfreq_mif: DEVFREQ :  1014000Khz,        0uV\n[    1.335120] exynos-devfreq 17000010.devfreq_mif: DEVFREQ :   845000Khz,        0uV\n[    1.335129] exynos-devfreq 17000010.devfreq_mif: DEVFREQ :   676000Khz,        0uV\n[    1.335138] exynos-devfreq 17000010.devfreq_mif: DEVFREQ :   546000Khz,        0uV\n[    1.335146] exynos-devfreq 17000010.devfreq_mif: DEVFREQ :   420000Khz,        0uV\n[    1.335158] exynos-devfreq 17000010.devfreq_mif: max_freq: 1794000Khz, get_max_freq: 1794000Khz\n[    1.335167] exynos-devfreq 17000010.devfreq_mif: min_freq: 420000Khz, get_min_freq: 420000Khz\n[    1.335177] exynos-devfreq 17000010.devfreq_mif: min_freq: 420000Khz, max_freq: 1794000Khz\n[    1.335187] exynos-devfreq 17000010.devfreq_mif: current frequency: 0Khz\n[    1.335838] exynos-devfreq 17000010.devfreq_mif: Initial Frequency: 1794000, Initial Voltage: 0\n[    1.336558] usim_dt_interrupt0: MODEM_STATE is not online, Do not anyting.\n[    1.336612] mmc_host mmc1: card inserted\n[    1.336941] exynos-devfreq 17000010.devfreq_mif: devfreq is initialized!!\n[    1.337014] exynos-devfreq 17000020.devfreq_int: not used UM monitor\n[    1.337030] exynos-devfreq 17000020.devfreq_int: DEVFREQ :   533000Khz,        0uV\n[    1.337041] exynos-devfreq 17000020.devfreq_int: DEVFREQ :   333000Khz,        0uV\n[    1.337050] exynos-devfreq 17000020.devfreq_int: DEVFREQ :   267000Khz,        0uV\n[    1.337060] exynos-devfreq 17000020.devfreq_int: DEVFREQ :   133000Khz,        0uV\n[    1.337069] exynos-devfreq 17000020.devfreq_int: DEVFREQ :   107000Khz,        0uV\n[    1.337080] exynos-devfreq 17000020.devfreq_int: max_freq: 533000Khz, get_max_freq: 533000Khz\n[    1.337089] exynos-devfreq 17000020.devfreq_int: min_freq: 107000Khz, get_min_freq: 107000Khz\n[    1.337099] exynos-devfreq 17000020.devfreq_int: min_freq: 107000Khz, max_freq: 533000Khz\n[    1.337159] exynos-devfreq 17000020.devfreq_int: Initial Frequency: 533000, Initial Voltage: 0\n[    1.337904] exynos-devfreq 17000020.devfreq_int: devfreq is initialized!!\n[    1.337970] exynos-devfreq 17000040.devfreq_disp: This does not use acpm\n[    1.337984] exynos-devfreq 17000040.devfreq_disp: not used UM monitor\n[    1.338000] exynos-devfreq 17000040.devfreq_disp: DEVFREQ :   333000Khz,        0uV\n[    1.338010] exynos-devfreq 17000040.devfreq_disp: DEVFREQ :   267000Khz,        0uV\n[    1.338020] exynos-devfreq 17000040.devfreq_disp: DEVFREQ :   222000Khz,        0uV\n[    1.338030] exynos-devfreq 17000040.devfreq_disp: DEVFREQ :   167000Khz,        0uV\n[    1.338039] exynos-devfreq 17000040.devfreq_disp: DEVFREQ :    80000Khz,        0uV\n[    1.338050] exynos-devfreq 17000040.devfreq_disp: max_freq: 333000Khz, get_max_freq: 333000Khz\n[    1.338060] exynos-devfreq 17000040.devfreq_disp: min_freq: 167000Khz, get_min_freq: 167000Khz\n[    1.338070] exynos-devfreq 17000040.devfreq_disp: min_freq: 167000Khz, max_freq: 333000Khz\n[    1.338088] exynos-devfreq 17000040.devfreq_disp: Initial Frequency: 333000, Initial Voltage: 0\n[    1.338427] exynos-devfreq 17000040.devfreq_disp: devfreq is initialized!!\n[    1.338485] exynos-devfreq 17000050.devfreq_cam: This does not use acpm\n[    1.338497] exynos-devfreq 17000050.devfreq_cam: not used UM monitor\n[    1.338512] exynos-devfreq 17000050.devfreq_cam: DEVFREQ :   690000Khz,        0uV\n[    1.338522] exynos-devfreq 17000050.devfreq_cam: DEVFREQ :   680000Khz,        0uV\n[    1.338532] exynos-devfreq 17000050.devfreq_cam: DEVFREQ :   670000Khz,        0uV\n[    1.338541] exynos-devfreq 17000050.devfreq_cam: DEVFREQ :   660000Khz,        0uV\n[    1.338550] exynos-devfreq 17000050.devfreq_cam: DEVFREQ :   650000Khz,        0uV\n[    1.338561] exynos-devfreq 17000050.devfreq_cam: max_freq: 690000Khz, get_max_freq: 690000Khz\n[    1.338571] exynos-devfreq 17000050.devfreq_cam: min_freq: 650000Khz, get_min_freq: 650000Khz\n[    1.338581] exynos-devfreq 17000050.devfreq_cam: min_freq: 650000Khz, max_freq: 690000Khz\n[    1.338591] exynos-devfreq 17000050.devfreq_cam: Initial Frequency: 690000, Initial Voltage: 0\n[    1.338794] exynos-devfreq 17000050.devfreq_cam: devfreq is initialized!!\n[    1.338848] exynos-devfreq 17000060.devfreq_aud: This does not use acpm\n[    1.338861] exynos-devfreq 17000060.devfreq_aud: not used UM monitor\n[    1.338877] exynos-devfreq 17000060.devfreq_aud: DEVFREQ :  1180000Khz,        0uV\n[    1.338886] exynos-devfreq 17000060.devfreq_aud: DEVFREQ :   800000Khz,        0uV\n[    1.338896] exynos-devfreq 17000060.devfreq_aud: DEVFREQ :   590000Khz,        0uV\n[    1.338905] exynos-devfreq 17000060.devfreq_aud: DEVFREQ :   394000Khz,        0uV\n[    1.338916] exynos-devfreq 17000060.devfreq_aud: max_freq: 1180000Khz, get_max_freq: 1180000Khz\n[    1.338926] exynos-devfreq 17000060.devfreq_aud: min_freq: 394000Khz, get_min_freq: 394000Khz\n[    1.338936] exynos-devfreq 17000060.devfreq_aud: min_freq: 394000Khz, max_freq: 1180000Khz\n[    1.338946] exynos-devfreq 17000060.devfreq_aud: Initial Frequency: 394000, Initial Voltage: 0\n[    1.339147] exynos-devfreq 17000060.devfreq_aud: devfreq is initialized!!\n[    1.339195] exynos-devfreq 17000070.devfreq_fsys: This does not use acpm\n[    1.339208] exynos-devfreq 17000070.devfreq_fsys: not used UM monitor\n[    1.339223] exynos-devfreq 17000070.devfreq_fsys: DEVFREQ :   267000Khz,        0uV\n[    1.339232] exynos-devfreq 17000070.devfreq_fsys: DEVFREQ :   200000Khz,        0uV\n[    1.339241] exynos-devfreq 17000070.devfreq_fsys: DEVFREQ :   100000Khz,        0uV\n[    1.339251] exynos-devfreq 17000070.devfreq_fsys: DEVFREQ :    50000Khz,        0uV\n[    1.339261] exynos-devfreq 17000070.devfreq_fsys: max_freq: 267000Khz, get_max_freq: 267000Khz\n[    1.339272] exynos-devfreq 17000070.devfreq_fsys: min_freq: 50000Khz, get_min_freq: 50000Khz\n[    1.339281] exynos-devfreq 17000070.devfreq_fsys: min_freq: 50000Khz, max_freq: 267000Khz\n[    1.339291] exynos-devfreq 17000070.devfreq_fsys: Initial Frequency: 267000, Initial Voltage: 0\n[    1.339582] exynos-devfreq 17000070.devfreq_fsys: devfreq is initialized!!\n[    1.339800] battery_notifier_init\n[    1.339877] s2mu004_fuelgauge_init: S2MU004 Fuelgauge Init\n[    1.339998] s2mu004_fuelgauge_probe: S2MU004 Fuelgauge Driver Loading\n[    1.340089] s2mu004_fuelgauge_parse_dt : LOW TEMP LIMIT(100)\n[    1.340097] s2mu004_fuelgauge_parse_dt : SW VBAT_L recovery (3465)mV\n[    1.340201] s2mu004_fuelgauge_parse_dt: [Long life] fuelgauge->fg_num_age_step 5\n[    1.340211] s2mu004_fuelgauge_parse_dt: [Long life] age_step = 0, table3[0] 76, table4[0] 10, batcap[0] 00, accum[0] 08, soc_arr[0] 11050, ocv_arr[0] 44121, volt_tun : 00\n[    1.340224] s2mu004_fuelgauge_parse_dt: [Long life] age_step = 1, table3[0] 76, table4[0] 47, batcap[0] c8, accum[0] 08, soc_arr[0] 11172, ocv_arr[0] 44121, volt_tun : 00\n[    1.340233] s2mu004_fuelgauge_parse_dt: [Long life] age_step = 2, table3[0] 76, table4[0] 47, batcap[0] 38, accum[0] 08, soc_arr[0] 11368, ocv_arr[0] 44121, volt_tun : 00\n[    1.340243] s2mu004_fuelgauge_parse_dt: [Long life] age_step = 3, table3[0] 76, table4[0] 47, batcap[0] a8, accum[0] 08, soc_arr[0] 11596, ocv_arr[0] 44121, volt_tun : 00\n[    1.340253] s2mu004_fuelgauge_parse_dt: [Long life] age_step = 4, table3[0] 76, table4[0] 47, batcap[0] 88, accum[0] 08, soc_arr[0] 12208, ocv_arr[0] 44121, volt_tun : 00\n[    1.341593] s2mu004_fuelgauge_probe: S2MU004 Fuelgauge revision: 2, reg 0x48 = 0x24\n[    1.343541] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(00) 4F(00) current 4E(43) 4F(10)\n[    1.346122] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (140) data1 (17)\n[    1.359098] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (188) data1 (3)\n[    1.359110] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2333)\n[    1.359122] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2741), previous soc (0), diff (0), FG_mode(0)\n[    1.361382] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 665), avg current (-400)mA\n[    1.361394] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2741)%\n[    1.389772] mmc0: MAN_BKOPS_EN bit is not set\n[    1.389784] mmc0: CMDQ supported: depth: 32\n[    1.389793] mmc0: cache barrier support 1 flush policy 1\n[    1.389802] mmc0: eMMC Firmware version: 858796080\n[    1.391054] mmc0: STROBE ENHANCED enable\n[    1.395610] mmc_host mmc0: Bus speed (slot 0) = 49968750Hz (slot req 52000000Hz, actual 49968750HZ div = 0)\n[    1.396309] mmc_host mmc0: Bus speed (slot 0) = 399750000Hz (slot req 200000000Hz, actual 199875000HZ div = 1)\n[    1.398345] mmc0: cmdq_host_alloc_tdl: desc_size: 4608 data_sz: 507904 slot-sz: 144\n                task_desc_len: 16 trans_desc_len 128 link_desc_len 128\n[    1.398636] mmc0: desc-base: 0xffffff8009abd000 trans-base: 0xffffff801614a000\n                desc_dma 0x8bd224000 trans_dma: 0x8bd280000\n[    1.398654] mmc0: CMDQ enabled on card\n[    1.398666] mmc0: new HS400 MMC card at address 0001\n[    1.399286] mmcblk0: mmc0:0001 DG4032 29.1 GiB \n[    1.399630] mmcblk0boot0: mmc0:0001 DG4032 partition 1 4.00 MiB\n[    1.400082] mmcblk0boot1: mmc0:0001 DG4032 partition 2 4.00 MiB\n[    1.400414] mmcblk0rpmb: mmc0:0001 DG4032 partition 3 16.0 MiB\n[    1.403105]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28\n[    1.413827] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3680)\n[    1.420091] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3698)\n[    1.421335] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (102) data1 (118)\n[    1.421962] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3699), src (0x01)\n[    1.423203] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 642)\n[    1.423211] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-392)mA\n[    1.423220] s2mu004_get_rawsoc: Fail to get psy (s2mu004-charger)\n[    1.423226] s2mu004_get_rawsoc: Fail to get psy (battery)\n[    1.423233] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 0\n[    1.423239] s2mu004_get_rawsoc: Fail to get psy (battery)\n[    1.423246] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[    1.423252] s2mu004_get_rawsoc: Fail to set psy (s2mu004-charger)\n[    1.439254] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[    1.439264] s2mu004_init_regs: s2mu004 fuelgauge initialize\n[    1.444691] s2mu004_alert_init: irq_lvl(vbat:0xa, soc:0x10)\n[    1.446832] s2mu004-fuelgauge 9-003b: s2mu004_fuelgauge_fuelalert_init: irq_reg(1c00) irq(26)\n[    1.446854] s2mu004-fuelgauge 9-003b: s2mu004_fuelgauge_probe : fg_irq = 200\n[    1.446936] wake enabled for irq 200\n[    1.446945] s2mu004_fuelgauge_probe: S2MU004 Fuelgauge Driver Loaded\n[    1.447214] s2mu004_charger_probe:[BATT] S2MU004 Charger driver probe\n[    1.447323] s2mu004_charger_parse_dt: Charger switching FRQ is Empty\n[    1.447329] s2mu004_charger_parse_dt : slow_charging_current is Empty\n[    1.447376] s2mu004_charger_parse_dt: battery,chg_float_voltage is 4350\n[    1.447427] s2mu004_charger_parse_dt np NULL(sec-multi-charger)\n[    1.447434] s2mu004_charger_parse_dt DT file parsed successfully, 0\n[    1.448101] s2mu004_chg_init : DEV ID : 0x3\n[    1.455198] s2mu004_chg_init : S2MU004_CHG_CTRL17 : 0x35\n[    1.458046] s2mu004_chg_init : S2MU004_CHG_CTRL13 : 0x22\n[    1.464685] s2mu004_chg_init : S2MU004_CHG_CTRL12 : 0x12\n[    1.466429] s2mu004_chg_init : S2MU004_CHG_CTRL7 : 0x46\n[    1.503121] [DEBUG][CHG]s2mu004_test_read: 0x0a:0x03, 0x0b:0x00, 0x0c:0x03, 0x0d:0x01, 0x0e:0x12, 0x0f:0x25, 0x10:0x83, 0x11:0x05, 0x12:0x12, 0x13:0x25, 0x14:0x10, 0x15:0xdd, 0x16:0x6d, 0x17:0x46, 0x18:0x91, 0x19:0x11, 0x1a:0x0c, 0x1b:0x06, 0x1c:0x12, 0x1d:0x22, 0x1e:0x00, 0x1f:0x4c, 0x20:0x1b, 0x21:0x35, 0x22:0x55, 0x23:0x55, 0x24:0x05, 0x33:0x95, 0x03:0xbf, 0x71:0x08, 0x74:0xae, 0x91:0x9d, 0x96:0xca, 0xa5:0x40, \n[    1.503132] s2mu004_charger_probe:[BATT] S2MU004 charger driver loaded OK\n[    1.503656] exynos_get_idle_ip_index: Fail to find 120a0000.adc in idle-ip list with err -61\n[    1.503702] 120a0000.adc supply vdd not found, using dummy regulator\n[    1.503966] exynos-adc 120a0000.adc: Probed successfully driver.\n[    1.504519] Trustonic TEE: mobicore_init: MobiCore mcDrvModuleApi version is 6.3\n[    1.504685] Trustonic TEE: mobicore_probe: MobiCore t-base-EXYNOS64-Android-400C-V005-20191025_073428_74400_100703\n[    1.505013] Trustonic TEE: mtk(0)|*** Trustonic TEE MTK, Build: Oct 24 2019, 12:51:47 ***\n[    1.505024] Trustonic TEE: mtk(0)|MTK: t-base-EXYNOS64-Android-400A-V012-20191024_123902_74333_100790\n[    1.505378] Trustonic TEE: mobicore_start: \n                   product_id        = t-base-EXYNOS64-Android-400A-V012-20191024_123902_74333_100790\n                   version_mci       = 0x00010006\n                   version_so        = 0x00020002\n                   version_mclf      = 0x00020005\n                   version_container = 0x00020001\n                   version_mc_config = 0x00000003\n                   version_tl_api    = 0x00010014\n                   version_dr_api    = 0x00010004\n                   version_nwd       = 0x00060003\n\n[    1.505424] Trustonic TEE: mobicore_start: SWd uses LPAE MMU table format\n[    1.505507] Trustonic TEE: __mc_switch_core: <- cpu=0x00000001, active_cpu=0x00000000\n\n[    1.505549] Trustonic TEE: mc_exec_core_switch: CoreSwap ok 0 -> 1\n[    1.505722] Loading t-base-tui module.\n[    1.505729] t-base-EXYNOS64-Android-400C-V005-20191025_073428_74400_100703\n[    1.505967] [VIB] sec_vib_probe \n[    1.506174] ccic_notifier_init\n[    1.506182] ccic_notifier_init already registered\n[    1.506282] [SENSOR] lsm6dsl_i2c_probe: I2C Probe Start!\n[    1.506289] [SENSOR] lsm6dsl_common_probe:  Start!\n[    1.506296] [SENSOR] lsm6dsl_parse_dt: Cannot set vdd_ldo_pin through DTSI\n\n[    1.506533] input: accelerometer_sensor as /devices/virtual/input/input2\n[    1.506666] input: gyro_sensor as /devices/virtual/input/input3\n[    1.506770] input: SignificantMotionDetector as /devices/virtual/input/input4\n[    1.506868] input: tilt_sensor as /devices/virtual/input/input5\n[    1.506965] input: step_cnt_sensor as /devices/virtual/input/input6\n[    1.507061] input: step_det_sensor as /devices/virtual/input/input7\n[    1.507112] [SENSOR] lsm6dsl_init_sensors:  Start!\n[    1.510832] [SENSOR] lsm6dsl_common_probe: Smart alert init, irq = 201\n[    1.510841] [SENSOR] lsm6dsl_common_probe:  Done!\n[    1.510975] [SENSOR] yas_probe: PROBE START\n[    1.511102] input: magnetic_sensor as /devices/virtual/input/input8\n[    1.517735] [SENSOR] yas_parse_dt: yas,orientation = 6\n[    1.517745] [SENSOR] yas_parse_dt: softiron = 9270, sign = 2\n[    1.517751] [SENSOR] yas_parse_dt: softiron = 310, sign = 2\n[    1.517757] [SENSOR] yas_parse_dt: softiron = 480, sign = 2\n[    1.517763] [SENSOR] yas_parse_dt: softiron = 310, sign = 2\n[    1.517769] [SENSOR] yas_parse_dt: softiron = 10280, sign = 2\n[    1.517775] [SENSOR] yas_parse_dt: softiron = 90, sign = 0\n[    1.517780] [SENSOR] yas_parse_dt: softiron = 480, sign = 2\n[    1.517785] [SENSOR] yas_parse_dt: softiron = 90, sign = 0\n[    1.517790] [SENSOR] yas_parse_dt: softiron = 10450, sign = 2\n[    1.517796] [SENSOR] yas_probe: set_position (6)\n[    1.517838] [SENSOR] yas_probe: PROBE END\n[    1.518014] [SENSOR] gp2ap_i2c_probe: gp2ap_probe start !! \n[    1.518141] [SENSOR] gp2ap_i2c_write: 0x80, 0x0\n[    1.518158] [SENSOR] gp2ap110s_parse_dt: Cannot set through DTSI, use default force_close_thd_low = 600\n[    1.518165] [SENSOR] gp2ap110s_parse_dt: Cannot set through DTSI, use default force_close_thd_high = 750\n[    1.518268] [SENSOR] gp2ap_i2c_write: 0x8d, 0x0\n[    1.518274] [SENSOR] gp2ap_InitDataDynamicCalibration: \n[    1.518281] [SENSOR] gp2ap_InitDataDynamicCalibration: led_reg_val=20\n[    1.518382] [SENSOR] gp2ap_i2c_write: 0x81, 0x0\n[    1.518482] [SENSOR] gp2ap_i2c_write: 0x82, 0x10\n[    1.518582] [SENSOR] gp2ap_i2c_write: 0x83, 0x10\n[    1.518684] [SENSOR] gp2ap_i2c_write: 0x85, 0x10\n[    1.518785] [SENSOR] gp2ap_i2c_write: 0x86, 0x14\n[    1.518885] [SENSOR] gp2ap_i2c_write: 0x87, 0x70\n[    1.518986] [SENSOR] gp2ap_i2c_write: 0x88, 0x0\n[    1.519086] [SENSOR] gp2ap_i2c_write: 0x89, 0x0\n[    1.519187] [SENSOR] gp2ap_i2c_write: 0x8a, 0x0\n[    1.519287] [SENSOR] gp2ap_i2c_write: 0x8b, 0x0\n[    1.519387] [SENSOR] gp2ap_i2c_write: 0x8e, 0x88\n[    1.519488] [SENSOR] gp2ap_i2c_write: 0xb1, 0x10\n[    1.519589] [SENSOR] gp2ap_i2c_write: 0xc1, 0x1\n[    1.519691] [SENSOR] gp2ap_i2c_write: 0xc2, 0x21\n[    1.519794] [SENSOR] gp2ap_i2c_write: 0xf0, 0x2\n[    1.519894] [SENSOR] gp2ap_i2c_write: 0xf1, 0x1\n[    1.519965] input: proximity_sensor as /devices/virtual/input/input9\n[    1.520253] [SENSOR] gp2ap_setup_irq: request_irq(202) success (10)\n[    1.520261] [SENSOR] gp2ap_i2c_probe: success\n[    1.520435] [SENSOR] tc3xxk_probe: \n[    1.520444] [SENSOR] tc3xxk_parse_dt: Use Bit-map protocol.\n[    1.520489] [SENSOR] tc3xxk_parse_dt: fw_name coreriver/tc305k_m20_grip.fw\n[    1.520496] [SENSOR] tc3xxk_parse_dt: grip_int:29, ldo_en:116\n[    1.520506] [SENSOR] tc3xxk_gpio_request: \n[    1.520513] [SENSOR] tc3xxk_pinctrl_init: \n[    1.520520] [SENSOR] tc3xxk_pinctrl_init: use dev's parent\n[    1.520529] [SENSOR] tc3xxk_grip_power: on\n[    1.520537] [SENSOR] tc3xxk_grip_power: ldo_en power 1\n[    1.522291] [SENSOR] lsm6dsl_irq_management: src_value : 0x0, src_wake_up : 0x0, fifo_status2 : 0x10\n[    1.552266] mmc_host mmc1: Bus speed (slot 0) = 24984375Hz (slot req 400000Hz, actual 390380HZ div = 32)\n[    1.655838] [SENSOR] tc3xxk_get_fw_version: fw_ver : 0x9\n[    1.655849] [SENSOR] load_fw_in_kernel: 0x9 0x30 firm (size=11968)\n[    1.655855] [SENSOR] load_fw_in_kernel: done\n[    1.656627] [SENSOR] tc3xxk_get_md_version: md_ver : 0x30\n[    1.656634] [SENSOR] tc3xxk_fw_update: do not need firm update (IC:0x9, BIN:0x9)(MD IC:0x30, BIN:0x30)\n[    1.656642] [SENSOR] tc3xxk_probe: number of grips = 2\n[    1.656724] input: grip_sensor as /devices/virtual/input/input10\n[    1.656960] vbus_notifier_register: listener=1 register\n[    1.656969] [SENSOR] tc3xxk_vbus_notification: cmd=1, vbus_type=1\n[    1.656974] [SENSOR] tc3xxk_vbus_notification: detach\n[    1.656980] [SENSOR] tc3xxk_wake_up: Send WAKE UP cmd: 0xf0 \n[    1.687825] [SENSOR] tc3xxk_wake_up: Send WAKE UP cmd: 0xf0 \n[    1.716521] [SENSOR] tc3xxk_probe: mode 0, sar 0\n[    1.716555] [SENSOR] tc3xxk_probe: done\n[    1.716620] etspi_init\n[    1.716895] etspi_probe\n[    1.716913] etspi_parse_dt: sleepPin=128\n[    1.716922] etspi_parse_dt: drdyPin=11\n[    1.716931] etspi_parse_dt: ldo_pin=129\n[    1.716936] etspi_parse_dt: chipid: ET520\n[    1.716942] etspi_parse_dt: orient: 1\n[    1.716952] etspi_parse_dt is successful\n[    1.716958] etspi_platformInit\n[    1.716986] etspi_platformInit sleep value =0\n               etspi_platformInit ldo en value =0\n[    1.716997] etspi_platformInit successful status=0\n[    1.717336] etspi_probe is successful\n[    1.717366] etspi_init is successful\n[    1.717536] usbcore: registered new interface driver snd-usb-audio\n[    1.717941] cod3035x 7-0003: cod3035x_i2c_probe pinctrl\n[    1.717996] codec_speedy: registered\n[    1.718102] tfa98xx_i2c_init(): TFA98XX driver version v4.2.0-Oct.27,2017\n[    1.718174] tfa98xx_i2c_probe(): tfa98xx_i2c_probe: start probing\n[    1.718181] tfa98xx_i2c_probe(): addr=0x34\n[    1.718645] tfa98xx_i2c_probe(): TFA9896 detected\n[    1.718655] tfa98xx_append_i2c_address(): dai_drv[0].name=tfa98xx-aif-c-34\n[    1.718662] tfa98xx_append_i2c_address(): dai_drv[0].playback.stream_name=AIF Playback-c-34\n[    1.718670] tfa98xx_append_i2c_address(): dai_drv[0].capture.stream_name=AIF Capture-c-34\n[    1.718684] tfa98xx 12-0034: Skipping IRQ registration\n[    1.718756] tfa98xx_i2c_probe(): tfa98xx_i2c_probe: Probe completed successfully!\n[    1.718860] tfa98xx_cal_init: g_nxp_class=ffffffc835b67900\n[    1.718867] tfa98xx_cal_init: initialized\n[    1.719182] samsung-abox-gic 14af1000.abox_gic: samsung_abox_gic_probe\n[    1.719282] samsung-abox-gic 14af1000.abox_gic: samsung_abox_gic_probe: probe complete\n[    1.719597] samsung-abox 14a50000.abox: samsung_abox_probe\n[    1.723132] samsung-abox 14a50000.abox: dram firmware(0xc00000) alloc\n[    1.723157] samsung-abox 14a50000.abox: Fault handler is registered for 14a30000.sysmmu_abox\n[    1.723551] samsung-abox 14a50000.abox: bootargs[0x22e00][init=ab0x vss=1]\n[    1.723640] samsung-abox 14a50000.abox: Direct firmware load for calliope_sram.bin failed with error -2\n[    1.723650] samsung-abox 14a50000.abox: Falling back to user helper\n[    1.723726] abox_cpu_enable(0)\n[    1.723786] abox_cpu_power(0)\n[    1.723817] samsung-abox-gic 14af1000.abox_gic: abox_gic_register_irq_handler\n[    1.723912] samsung-abox 14a50000.abox: abox_runtime_resume\n[    1.723927] samsung-abox 14a50000.abox: abox_enable\n[    1.723937] samsung-abox 14a50000.abox: abox_request_cpu_gear(ab0cdefa, 3)\n[    1.724096] samsung-abox 14a50000.abox: pm qos request aud: req=590000kHz ret=590000kHz\n[    1.724114] abox_cpu_enable(0)\n[    1.724122] abox_cpu_power(0)\n[    1.724184] samsung-abox 14a50000.abox: audif clock: 24576000\n[    1.724194] samsung-abox 14a50000.abox: abox_restore_register: restore register(recp:0x0, spus_ctrl1:0x0)\n[    1.724203] samsung-abox-gic 14af1000.abox_gic: abox_gic_init_gic\n[    1.724219] samsung-abox 14a50000.abox: abox_cfg_gpio(default)\n[    1.724227] samsung-abox 14a50000.abox: abox_download_firmware\n[    1.724234] samsung-abox 14a50000.abox: SRAM firmware downloading is deferred\n[    1.726215] samsung-abox 14a50000.abox: samsung_abox_probe: probe complete\n[    1.727733] exynos7885-COD3035 sound: exynos7885_audio_probe\n[    1.728275] samsung-abox 14a50000.abox: abox_codec_probe\n[    1.728364] samsung-abox 14a50000.abox: ASoC: no source widget found for UAIF4 Capture\n[    1.728372] samsung-abox 14a50000.abox: ASoC: Failed to add route UAIF4 Capture -> UAIF4 -> SPUSM\n[    1.728563] samsung-abox 14a50000.abox: ASoC: no sink widget found for UAIF4 Playback\n[    1.728572] samsung-abox 14a50000.abox: ASoC: Failed to add route UAIF SPK4 -> direct -> UAIF4 Playback\n[    1.728582] samsung-abox 14a50000.abox: ASoC: no sink widget found for DSIF Playback\n[    1.728590] samsung-abox 14a50000.abox: ASoC: Failed to add route DSIF SPK -> direct -> DSIF Playback\n[    1.728638] samsung-abox 14a50000.abox: ASoC: no source widget found for UAIF4 Capture\n[    1.728645] samsung-abox 14a50000.abox: ASoC: Failed to add route UAIF4 Capture -> UAIF4 -> NSRC0\n[    1.728676] samsung-abox 14a50000.abox: ASoC: no source widget found for UAIF4 Capture\n[    1.728684] samsung-abox 14a50000.abox: ASoC: Failed to add route UAIF4 Capture -> UAIF4 -> NSRC1\n[    1.728713] samsung-abox 14a50000.abox: ASoC: no source widget found for UAIF4 Capture\n[    1.728720] samsung-abox 14a50000.abox: ASoC: Failed to add route UAIF4 Capture -> UAIF4 -> NSRC2\n[    1.728749] samsung-abox 14a50000.abox: ASoC: no source widget found for UAIF4 Capture\n[    1.728756] samsung-abox 14a50000.abox: ASoC: Failed to add route UAIF4 Capture -> UAIF4 -> NSRC3\n[    1.728953] cod3035x 7-0003: 3035x CODEC_PROBE: (*) cod3035x_codec_probe\n[    1.729151] cod3035x 7-0003: (*) cod3035x_runtime_resume\n[    1.729158] cod3035x 7-0003: (*) cod3035x_enable\n[    1.729170] samsung-abox 14a50000.abox: abox_enable_mclk: ABOX_UAIF_CTRL0(ABOX_UAIF2)=00000002\n[    1.729178] cod3035x 7-0003: cod3035x_regulators_enable regulator: 1\n[    1.767913] cod3035x 7-0003: (*)Error in getting Codec-3035 Interrupt gpio\n[    1.767928] cod3035x_i2c_parse_dt : not support dtv-check-gpio\n[    1.767943] cod3035x 7-0003: Bias voltage values: bias1 = 1, bias2= 1, ldo = 3\n[    1.768016] cod3035x 7-0003: cod3035x_i2c_parse_dt : cod3035x->is_lassenA revision: 2\n[    1.768024] cod3035x 7-0003: cod3035x_i2c_parse_dt : cod3035x->use_det_gdet_adc_mode: 1\n[    1.768031] cod3035x 7-0003: Using GPADC for button detection\n[    1.768220] cod3035x 7-0003: [DEBUG]: buttons: code(226), low(0), high(376)\n[    1.768227] cod3035x 7-0003: [DEBUG]: buttons: code(582), low(377), high(447)\n[    1.768234] cod3035x 7-0003: [DEBUG]: buttons: code(115), low(448), high(627)\n[    1.768241] cod3035x 7-0003: [DEBUG]: buttons: code(114), low(628), high(1161)\n[    1.791764] cod3035x 7-0003: cod3035x_codec_initialize called, setting defaults\n[    1.878465] mmc_host mmc1: Bus speed (slot 0) = 99937500Hz (slot req 100000000Hz, actual 99937500HZ div = 0)\n[    1.878480] dwmmc_exynos 13550000.dwmmc2: Tuning Abnormal_result 0x0000ffff.\n[    1.880055] dwmmc_exynos 13550000.dwmmc2: data error, status 0x00002000 2\n[    1.880097] mmc_host mmc1: Tuning error: cmd.error:0, data.error:-5 CLKSEL = 0x03040005, EN_SHIFT = 0x00000000\n[    1.880516] dwmmc_exynos 13550000.dwmmc2: divratio: 3 map: 0x 0000fbff\n[    1.880524] dwmmc_exynos 13550000.dwmmc2: sample_good: 0xfbff best_sample: 0x04\n[    1.880534] dwmmc_exynos 13550000.dwmmc2: CLKSEL = 0x03040002, EN_SHIFT = 0x00000000\n[    1.880546] mmc1: new ultra high speed SDR50 SDXC card at address aaaa\n[    1.881076] Parameters for external-sdcard: min/max_ratio: 0/100 strictlimit: on nr_requests: 32 read_ahead_kb: 128\n[    1.881090] mmcblk1: mmc1:aaaa SL64G 59.5 GiB \n[    1.883611]  mmcblk1: p1\n[    1.897163] cod3035x 7-0003: cod3035x_lassenA_normal called. NOT UHQA Mode\n[    1.900911] input: Codec3035 Headset Events as /devices/platform/11ce0000.speedy/i2c-7/7-0003/input/input11\n[    1.901087] cod3035x 7-0003: (*) cod3035x_runtime_suspend\n[    1.901096] cod3035x 7-0003: (*) cod3035x_disable\n[    1.901105] cod3035x 7-0003: cod3035x_regulators_disable regulator: 0\n[    1.901120] samsung-abox 14a50000.abox: abox_enable_mclk: ABOX_UAIF_CTRL0(ABOX_UAIF2)=00000000\n[    1.901526] tfa98xx 12-0034: Direct firmware load for Tfa9896.cnt failed with error -2\n[    1.901537] tfa98xx 12-0034: Falling back to user helper\n[    1.901591] tfa98xx_append_i2c_address(): widgets[0].sname=AIF Playback-c-34\n[    1.901599] tfa98xx_append_i2c_address(): widgets[1].sname=AIF Capture-c-34\n[    1.901623] tfa98xx 12-0034: tfa98xx codec registered ()\n[    1.901875] exynos7885-COD3035 sound: snd-soc-dummy-dai <-> RDMA0 mapping ok\n[    1.901978] exynos7885-COD3035 sound: snd-soc-dummy-dai <-> RDMA1 mapping ok\n[    1.902074] exynos7885-COD3035 sound: snd-soc-dummy-dai <-> RDMA2 mapping ok\n[    1.902182] exynos7885-COD3035 sound: snd-soc-dummy-dai <-> RDMA3 mapping ok\n[    1.902298] exynos7885-COD3035 sound: snd-soc-dummy-dai <-> RDMA4 mapping ok\n[    1.902412] exynos7885-COD3035 sound: snd-soc-dummy-dai <-> RDMA5 mapping ok\n[    1.902516] exynos7885-COD3035 sound: snd-soc-dummy-dai <-> RDMA6 mapping ok\n[    1.902604] exynos7885-COD3035 sound: snd-soc-dummy-dai <-> RDMA7 mapping ok\n[    1.902719] exynos7885-COD3035 sound: snd-soc-dummy-dai <-> WDMA0 mapping ok\n[    1.902822] exynos7885-COD3035 sound: snd-soc-dummy-dai <-> WDMA1 mapping ok\n[    1.902919] exynos7885-COD3035 sound: snd-soc-dummy-dai <-> WDMA2 mapping ok\n[    1.903152] exynos7885-COD3035 sound: snd-soc-dummy-dai <-> WDMA3 mapping ok\n[    1.903226] exynos7885-COD3035 sound: snd-soc-dummy-dai <-> WDMA4 mapping ok\n[    1.903236] cod3035x 7-0003: cod3035x_dai_set_fmt called. fmt: 16385\n[    1.903250] samsung-abox 14a50000.abox: abox_uaif_set_fmt[0](0x00001001)\n[    1.903286] exynos7885-COD3035 sound: cod3035x-aif <-> UAIF0 mapping ok\n[    1.903295] samsung-abox 14a50000.abox: abox_uaif_set_fmt[1](0x00004001)\n[    1.903321] exynos7885-COD3035 sound: snd-soc-dummy-dai <-> UAIF1 mapping ok\n[    1.903329] samsung-abox 14a50000.abox: abox_uaif_set_fmt[2](0x00001001)\n[    1.903358] exynos7885-COD3035 sound: snd-soc-dummy-dai <-> UAIF2 mapping ok\n[    1.903367] samsung-abox 14a50000.abox: abox_uaif_set_fmt[3](0x00001001)\n[    1.903394] exynos7885-COD3035 sound: tfa98xx-aif-c-34 <-> UAIF3 mapping ok\n[    1.903417] exynos7885-COD3035 sound: snd-soc-dummy-dai <-> Internal mapping ok\n[    1.903440] exynos7885-COD3035 sound: snd-soc-dummy-dai <-> SPEEDY mapping ok\n[    1.903604] exynos7885-COD3035 sound: ASoC: no source widget found for AIF Playback-b-34\n[    1.903612] exynos7885-COD3035 sound: ASoC: Failed to add route AIF Playback-b-34 -> direct -> SPK\n[    1.903626] exynos7885-COD3035 sound: ASoC: no sink widget found for AIF Playback-b-34\n[    1.903634] exynos7885-COD3035 sound: ASoC: Failed to add route ABOX UAIF3 Playback -> direct -> AIF Playback-b-34\n[    1.903647] exynos7885-COD3035 sound: ASoC: no source widget found for AIF Capture-b-34\n[    1.903655] exynos7885-COD3035 sound: ASoC: Failed to add route AIF Capture-b-34 -> direct -> ABOX UAIF3 Capture\n[    1.904618] cod3035x 7-0003: ASoC: mux DMICL Mux2 has no paths\n[    1.904633] cod3035x 7-0003: ASoC: mux DMICR Mux2 has no paths\n[    1.904643] cod3035x 7-0003: ASoC: mux ADC DAT Mux0 has no paths\n[    1.904651] cod3035x 7-0003: ASoC: mux ADC DAT Mux1 has no paths\n[    1.904665] cod3035x 7-0003: ASoC: Failed to create DAC debugfs file\n[    1.904675] cod3035x 7-0003: ASoC: Failed to create ADC debugfs file\n[    1.904684] cod3035x 7-0003: ASoC: Failed to create DADC debugfs file\n[    1.906152] exynos7885-COD3035 sound: universal7885_mic_bias_parse_dt\n[    1.906174] exynos7885-COD3035 sound: BIAS: MIC1(1), MIC2(1), MIC3(2), LINEIN(0)\n[    1.906420] GACT probability NOT on\n[    1.906445] Mirror/redirect action on\n[    1.906472] u32 classifier\n[    1.906481]     Actions configured\n[    1.906504] Netfilter messages via NETLINK v0.30.\n[    1.906556] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    1.906855] ctnetlink v0.93: registering with nfnetlink.\n[    1.907352] xt_time: kernel timezone is -0000\n[    1.907443] IPv4 over IPsec tunneling driver\n[    1.907794] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    1.907926] arp_tables: (C) 2002 David S. Miller\n[    1.907973] Initializing XFRM netlink socket\n[    1.908205] NET: Registered protocol family 10\n[    1.909230] mip6: Mobile IPv6\n[    1.909255] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    1.909663] sit: IPv6 over IPv4 tunneling driver\n[    1.910099] NET: Registered protocol family 17\n[    1.910126] NET: Registered protocol family 15\n[    1.910145] NET: Registered protocol family 35\n[    1.910363] ncm: Network Context Metadata Module: initialized\n[    1.910708] decon: dpp(0) probe start..\n[    1.910723] decon: dpp0 bl_fb_info: 0xec000000, size: 0x1400000\n[    1.910735] decon: res: start(0x14851000), end(0x14851fff)\n[    1.910794] decon: dma res: start(0x148b1000), end(0x148b1fff)\n[    1.910813] decon: dma common res: start(0x148b0000), end(0x148b00ff)\n[    1.910827] decon: irq no = 81\n[    1.910880] decon: dpp0 one to one mapping: 0xec000000, 0x1400000\n[    1.910899] exynos-dpp 14851000.dpp: Fault handler is registered for 148c0000.sysmmu\n[    1.910912] decon: IDMA_IRQ: 000101f6, DPP_IRQ: 00000000\n[    1.910925] decon: === DPU_DMA GLB SFR DUMP ===\n[    1.910943] ffffff8009d8a000: 00000002 00000000 00000000 00000000 00000000 00000000 00000000 00000000\n[    1.910959] ffffff8009d8a020: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000\n[    1.910975] ffffff8009d8a040: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000\n[    1.910992] ffffff8009d8a060: 00000000 00000000 00000000 00000000 44444444 44444444 00000000 ffffffff\n[    1.911008] ffffff8009d8a080: 7fffffff 00000000 00000000 00000000 00000000 00000000 00000000 00000000\n[    1.911024] ffffff8009d8a0a0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000\n[    1.911040] ffffff8009d8a0c0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000\n[    1.911055] ffffff8009d8a0e0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000\n[    1.911066] decon: === DPU_DMA0 SFR DUMP ===\n[    1.911082] ffffff8009d7e000: 00000604 000001f6 01000000 ff000000 09240438 00000000 09240438 00000000\n[    1.911098] ffffff8009d7e020: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000\n[    1.911114] ffffff8009d7e040: ec000000 00000000 00000000 00000000 00000000 00000003 000000ff 00000000\n[    1.911130] ffffff8009d7e060: 00000001 91248438 00000000 00000000 00000000 00000000\n[    1.911140] decon: === DPU_DMA0 SHADOW SFR DUMP ===\n[    1.911156] ffffff8009d7e800: 00000000 00000000 01000000 ff000000 09240438 00000000 09240438 00000000\n[    1.911172] ffffff8009d7e820: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000\n[    1.911188] ffffff8009d7e840: ec000000 00000000 00000000 00000000 00000000 00000003 00000000 00000000\n[    1.911203] ffffff8009d7e860: 00000000 00000000 00000000 00000000 00000000 00000000\n[    1.911215] decon: dpp0 is probed successfully\n[    1.911360] decon: dpp(1) probe start..\n[    1.911373] decon: res: start(0x14852000), end(0x14852fff)\n[    1.911389] decon: dma res: start(0x148b2000), end(0x148b2fff)\n[    1.911401] decon: irq no = 82\n[    1.911435] exynos-dpp 14852000.dpp: Fault handler is registered for 148c0000.sysmmu\n[    1.911445] decon: dpp1 is probed successfully\n[    1.911537] decon: dpp(3) probe start..\n[    1.911549] decon: res: start(0x14853000), end(0x14853fff)\n[    1.911563] decon: dma res: start(0x148b3000), end(0x148b3fff)\n[    1.911576] decon: irq no = 83\n[    1.911608] exynos-dpp 14853000.dpp: Fault handler is registered for 148c0000.sysmmu\n[    1.911618] decon: dpp3 is probed successfully\n[    1.911696] decon: dpp(2) probe start..\n[    1.911708] decon: res: start(0x14854000), end(0x14854fff)\n[    1.911723] decon: dma res: start(0x148b4000), end(0x148b4fff)\n[    1.911807] decon: irq no = 84\n[    1.911834] decon: dpp irq no = 85\n[    1.911857] exynos-dpp 14854000.dpp: Fault handler is registered for 148c0000.sysmmu\n[    1.911863] decon: dpp2 is probed successfully\n[    1.912927] Registered cp15_barrier emulation handler\n[    1.913008] Registered setend emulation handler\n[    1.913193] HMP: down-migration compensation initialized \n[    1.913201] HMP: tbsoftlanding: base threshold:107, timeout: 30 \n[    1.913208] HMP: tbsoftlanding: lv:0, freq: 1500000, threshold: 177 \n[    1.913214] HMP: tbsoftlanding: lv:1, freq: 1000000, threshold: 142 \n[    1.913220] HMP: tbsoftlanding: lv:2, freq: 800000, threshold: 107 \n[    1.914573] registered taskstats version 1\n[    1.914791] zswap: loaded using pool lz4/zsmalloc\n[    1.917781] Key type encrypted registered\n[    1.918005] dsim: dsim(0) probe start..\n[    1.918083] dsim: LCD(/hx83112a) resolution: xres(1080), yres(2340)\n[    1.918093] dsim: mic enabled (0)\n[    1.918099] dsim: dsc is disabled\n[    1.918105] dsim: eotp is disabled\n[    1.918110] dsim: using data lane count(4)\n[    1.918116] dsim: vt_compensation(804)\n[    1.918122] dsim: clklane onoff(0)\n[    1.918129] dsim: res: start(0x14870000), end(0x148700ff)\n[    1.918178] dsim: dsim irq (86)\n[    1.918378] dsim: dsim_get_data_lanes: lanes(0x1f)\n[    1.918392] dsim: + dsim_enable\n[    1.918406] dsim: dsim_set_panel_power_early +\n[    1.918414] decon_board: 693: find_list: dsim_set_panel_power_early is not exist, so create it\n[    1.918421] decon_board: 708: run_list: dsim_set_panel_power_early is empty, so make list\n[    1.918594] decon_board: 511: of_find_lcd_info: lcd_info property in /dsim@0x14870000 has /hx83112a\n[    1.918618] decon_board: 527: of_find_decon_board: decon_board property in /hx83112a has /decon_board_hx83112a\n[    1.918636] decon_board: 485: decide_subinfo: idx: 1, type: gpio,high, subinfo: gpio_lcd_1p8\n[    1.918648] decon_board: 421: decide_subinfo: usleep need two parameters. 2nd delay is 7500\n[    1.918655] decon_board: 485: decide_subinfo: idx: 7, type: delay,usleep, subinfo: 5000\n[    1.918666] decon_board: 485: decide_subinfo: idx: 1, type: gpio,high, subinfo: gpio_blic_on\n[    1.918680] decon_board: 421: decide_subinfo: usleep need two parameters. 2nd delay is 7500\n[    1.918687] decon_board: 485: decide_subinfo: idx: 7, type: delay,usleep, subinfo: 5000\n[    1.918694] decon_board: 288: dump_list: gpio: 2, regulator: 0, delay: 2, pinctrl: 0, timer: 0\n[    1.931299] dsim: dsim_set_panel_power_early -\n[    1.931309] dsim: dsim_set_panel_power: 1\n[    1.931318] decon_board: 693: find_list: dsim_set_panel_power_enable is not exist, so create it\n[    1.931326] decon_board: 708: run_list: dsim_set_panel_power_enable is empty, so make list\n[    1.931537] decon_board: 511: of_find_lcd_info: lcd_info property in /dsim@0x14870000 has /hx83112a\n[    1.931563] decon_board: 527: of_find_decon_board: decon_board property in /hx83112a has /decon_board_hx83112a\n[    1.931578] decon_board: 421: decide_subinfo: usleep need two parameters. 2nd delay is 1500\n[    1.931585] decon_board: 485: decide_subinfo: idx: 7, type: delay,usleep, subinfo: 1000\n[    1.931601] decon_board: 485: decide_subinfo: idx: 1, type: gpio,high, subinfo: gpio_panel_enp\n[    1.931609] decon_board: 421: decide_subinfo: usleep need two parameters. 2nd delay is 3000\n[    1.931615] decon_board: 485: decide_subinfo: idx: 7, type: delay,usleep, subinfo: 2000\n[    1.931626] decon_board: 485: decide_subinfo: idx: 1, type: gpio,high, subinfo: gpio_panel_enn\n[    1.931633] decon_board: 421: decide_subinfo: usleep need two parameters. 2nd delay is 7500\n[    1.931640] decon_board: 485: decide_subinfo: idx: 7, type: delay,usleep, subinfo: 5000\n[    1.931647] decon_board: 288: dump_list: gpio: 2, regulator: 0, delay: 3, pinctrl: 0, timer: 0\n[    1.943311] dsim: dsim_enable: power_count: 1, disable_depth: 1, direct_complete: 0\n[    1.943324] dsim: dsim_enable: usage_count: 1, dispaud: F, dphydsi: 1\n[    1.943332] dsim: dsim0 PLL is stabled in bootloader, so skip DSIM link/DPHY init.\n[    1.943354] dsim: - dsim_enable\n[    1.943455] lcd panel: + hx83112a_probe\n[    1.943463] lcd panel: hx83112a_read_init_info: 127230\n[    1.943563] lcd panel: lm3632_probe: i2c-13 /i2c@13870000/lm3632@11\n[    1.943603] lcd panel: - hx83112a_probe\n[    1.943615] lcd panel: hx83112a_m20_lcd_ctrl.c: dsim_panel_probe: done\n[    1.943624] dsim: dsim0 driver(video mode) has been probed.\n[    1.944330] exynos-decon 14860000.decon_f: decon_probe start\n[    1.944599] decon: decon-f: max win4, video mode, sw trigger\n[    1.944610] decon: dsi mode(0). 0: SINGLE 1: DUAL\n[    1.944621] decon: out type(0). 0: DSI 1: DISPLAYPORT 2: HDMI 3: WB\n[    1.944632] decon: out idx(0). 0: DSI0 1: DSI1 2: DSI2\n[    1.944642] decon: disp_freq(Khz): 0\n[    1.945262] decon: decon0 doesn't need pinctrl\n[    1.945341] decon: lcd_info: hfp 28 hbp 8 hsa 8 vfp 27 vbp 5 vsa 5\n[    1.945347] decon: xres 1080 yres 2340\n[    1.945356] decon: default_win 3 win_idx 0 xres 1080 yres 2340\n[    1.945364] decon: default_win 3 win_idx 1 xres 1080 yres 2340\n[    1.945370] decon: default_win 3 win_idx 2 xres 1080 yres 2340\n[    1.945376] decon: decon_fb_alloc_memory +\n[    1.945385] exynos-decon 14860000.decon_f: allocating memory for display\n[    1.945393] exynos-decon 14860000.decon_f: real_size=2527200 (1080.2340), virt_size=5054400 (1080.4680)\n[    1.945401] exynos-decon 14860000.decon_f: want 20217856 bytes for window[3]\n[    1.953517] exynos-decon 14860000.decon_f: alloated memory\n[    1.953530] exynos-decon 14860000.decon_f: fb start addr = 0x10000000\n[    1.953537] decon: decon_fb_alloc_memory -\n[    1.953543] decon: default_win 3 win_idx 3 xres 1080 yres 2340\n[    1.953867] decon: window update feature is disabled\n[    1.954118] decon: mif_freq(Khz): 1352000\n[    1.954125] decon: disp_freq(Khz): 333000\n[    1.954135] [BTS] dpu_bts_update_qos_mif: decon0, mif_freq(Khz): 1352000\n[    1.954274] [BTS] dpu_bts_update_qos_disp: decon0, disp_freq(Khz): 333000\n[    1.954281] decon: decon_reg_init already called by BOOTLOADER\n[    1.954320] exynos-decon 14860000.decon_f: pm_stay_awake\n[    1.954326] decon: decon0 registered successfully\n[    1.954515] decon: decon_abd_init: lcdtype: 127230\n[    1.954522] decon: decon_abd_register: ++\n[    1.954558] decon: decon_abd_register: -- entity was registered\n[    1.954791] decon_board: 511: of_find_lcd_info: lcd_info property in /dsim@0x14870000 has /hx83112a\n[    1.954817] decon_board: 527: of_find_decon_board: decon_board property in /hx83112a has /decon_board_hx83112a\n[    1.955002] decon_board: 511: of_find_lcd_info: lcd_info property in /dsim@0x14870000 has /hx83112a\n[    1.955025] decon_board: 527: of_find_decon_board: decon_board property in /hx83112a has /decon_board_hx83112a\n[    1.955179] decon_board: 511: of_find_lcd_info: lcd_info property in /dsim@0x14870000 has /hx83112a\n[    1.955201] decon_board: 527: of_find_decon_board: decon_board property in /hx83112a has /decon_board_hx83112a\n[    1.955348] decon_board: 511: of_find_lcd_info: lcd_info property in /dsim@0x14870000 has /hx83112a\n[    1.955370] decon_board: 527: of_find_decon_board: decon_board property in /hx83112a has /decon_board_hx83112a\n[    1.955525] [MUIC] muic_notifier_register: listener=6 register\n[    1.958832] Found svc_sd : 0x0000000000000000 svc : 0x0000000000000000\n[    1.958847] Success to create sys/devices/svc/AP : 0x0000000000000000\n[    1.959016] EXYNOS-PD-DBG:  dbgdev-pd-dispaud's Runtime_Resume\n[    1.959027] EXYNOS-PD-DBG:  dbgdev-pd-dispaud's Runtime_Suspend\n[    1.959209] EXYNOS-PD-DBG:  dbgdev-pd-mfcmscl's Runtime_Resume\n[    1.959217] EXYNOS-PD-DBG:  dbgdev-pd-mfcmscl's Runtime_Suspend\n[    1.959414] EXYNOS-PD-DBG:  dbgdev-pd-isp's Runtime_Resume\n[    1.959421] EXYNOS-PD-DBG:  dbgdev-pd-isp's Runtime_Suspend\n[    1.959632] EXYNOS-PD-DBG:  dbgdev-pd-cam's Runtime_Resume\n[    1.959639] EXYNOS-PD-DBG:  dbgdev-pd-cam's Runtime_Suspend\n[    1.960835] EXYNOS-PD-DBG:  dbgdev-pd-g3d's Runtime_Resume\n[    1.960854] EXYNOS-PD-DBG:  dbgdev-pd-g3d's Runtime_Suspend\n[    1.963816] s2mu004_muic_rescan_validity_checker entered\n[    1.964992] cis_5e9_probe sensor_id 3\n[    1.965009] sensor peri is not yet probed\n[    1.965101] cis_4ha_probe sensor_id 1\n[    1.965111] sensor peri is not yet probed\n[    1.965167] cis_3l6_probe sensor id 0\n[    1.965177] sensor peri is not yet probed\n[    1.965604] sec-thermistor sec_thermistor@0: sec-ap-thermistor successfully probed.\n[    1.965826] exynos-tmu 10070000.BIG: thermal zone use hotplug function \n[    1.966072] thermal_zone_of_sensor_register 558 thermal zone_name = BIG \n[    1.966083] exynos-tmu 10070000.BIG: Trip count parsed from ECT : 8, zone : BIG\n[    1.966092] Parsed From ECT : [0] Temperature : 20, frequency : 2184000, level = 0\n[    1.966099] Parsed From ECT : [1] Temperature : 76, frequency : 1768000, level = 0\n[    1.966105] Parsed From ECT : [2] Temperature : 81, frequency : 1768000, level = 0\n[    1.966111] Parsed From ECT : [3] Temperature : 86, frequency : 1560000, level = 2\n[    1.966118] Parsed From ECT : [4] Temperature : 91, frequency : 728000, level = 5\n[    1.966124] Parsed From ECT : [5] Temperature : 96, frequency : 728000, level = 5\n[    1.966129] [ECT]hotplug_threshold : 96 \n[    1.966135] [ECT]hotplug_in_threshold : 91 \n[    1.966140] [ECT]hotplug_out_threshold : 96 \n[    1.966146] Parsed From ECT : [6] Temperature : 101, frequency : 728000, level = 5\n[    1.966152] Parsed From ECT : [7] Temperature : 115, frequency : 728000, level = 5\n[    1.966161] exynos-tmu 10070000.BIG: Sensor number = 0\n[    1.966598] thermal_zone_of_sensor_register 558 thermal zone_name = LITTLE \n[    1.966611] exynos-tmu 10070000.LITTLE: Trip count parsed from ECT : 8, zone : LITTLE\n[    1.966620] Parsed From ECT : [0] Temperature : 20, frequency : 1690000, level = 0\n[    1.966627] Parsed From ECT : [1] Temperature : 76, frequency : 1690000, level = 0\n[    1.966633] Parsed From ECT : [2] Temperature : 81, frequency : 1690000, level = 0\n[    1.966639] Parsed From ECT : [3] Temperature : 86, frequency : 1352000, level = 2\n[    1.966645] Parsed From ECT : [4] Temperature : 91, frequency : 1144000, level = 4\n[    1.966651] Parsed From ECT : [5] Temperature : 96, frequency : 902000, level = 6\n[    1.966657] Parsed From ECT : [6] Temperature : 101, frequency : 208000, level = 11\n[    1.966663] Parsed From ECT : [7] Temperature : 115, frequency : 208000, level = 11\n[    1.966673] exynos-tmu 10070000.LITTLE: Sensor number = 0\n[    1.966870] exynos-tmu 10074000.G3D: [GPU TMU] max freq 1100000->845000\n[    1.966878] exynos-tmu 10074000.G3D: [GPU TMU] index : 0, frequency : 845000 \n[    1.966885] exynos-tmu 10074000.G3D: [GPU TMU] max freq 1100000->845000\n[    1.966891] exynos-tmu 10074000.G3D: [GPU TMU] index : 1, frequency : 845000 \n[    1.966899] exynos-tmu 10074000.G3D: [GPU TMU] max freq 1100000->845000\n[    1.966905] exynos-tmu 10074000.G3D: [GPU TMU] index : 2, frequency : 845000 \n[    1.966911] exynos-tmu 10074000.G3D: [GPU TMU] index : 3, frequency : 676000 \n[    1.966917] exynos-tmu 10074000.G3D: [GPU TMU] index : 4, frequency : 450000 \n[    1.966923] exynos-tmu 10074000.G3D: [GPU TMU] index : 5, frequency : 343000 \n[    1.967144] thermal_zone_of_sensor_register 558 thermal zone_name = G3D \n[    1.967154] exynos-tmu 10074000.G3D: Trip count parsed from ECT : 8, zone : G3D\n[    1.967163] Parsed From ECT : [0] Temperature : 20, frequency : 1100000, level = 0\n[    1.967170] Parsed From ECT : [1] Temperature : 76, frequency : 1100000, level = 0\n[    1.967176] Parsed From ECT : [2] Temperature : 81, frequency : 1100000, level = 0\n[    1.967182] Parsed From ECT : [3] Temperature : 86, frequency : 845000, level = 0\n[    1.967188] Parsed From ECT : [4] Temperature : 91, frequency : 676000, level = 1\n[    1.967194] Parsed From ECT : [5] Temperature : 96, frequency : 450000, level = 2\n[    1.967200] Parsed From ECT : [6] Temperature : 101, frequency : 343000, level = 3\n[    1.967206] Parsed From ECT : [7] Temperature : 115, frequency : 343000, level = 3\n[    1.967215] exynos-tmu 10074000.G3D: Sensor number = 0\n[    1.967417] cis_5e9_probe sensor_id 3\n[    1.967424] sensor peri is not yet probed\n[    1.967475] cis_4ha_probe sensor_id 1\n[    1.967481] sensor peri is not yet probed\n[    1.967516] cis_3l6_probe sensor id 0\n[    1.967521] sensor peri is not yet probed\n[    1.967725] usb_notifier: of_get_usb_redriver_dt: usb30_redriver_en: Invalied gpio pins\n[    1.967777] usb_notifier: of_get_usb_redriver_dt, gpios_redriver_en -2\n[    1.967875] usb_notifier: of_get_usb_redriver_dt, can_disable_usb 1\n[    1.967886] usb_notifier: of_get_usb_redriver_dt - get hs_vdd error\n[    1.967896] usb_notifier: of_get_usb_redriver_dt - get ss_vdd error\n[    1.967907] usb_notifier: of_get_usb_redriver_dt - get dp_vdd error\n[    1.967918] usb_notifier: of_get_usb_redriver_dt, usb_ldocontrol 0\n[    1.967928] usb_notify: registered otg_notify +\n[    1.968093] usb_notify: ovc_init\n[    1.968204] usb_notify: register_usblog_proc already registered\n[    1.968212] usb_notify: registered otg_notify -\n[    1.968219] usb: [M] manager_notifier_register: listener=22 register\n[    1.968226] usb: [M] manager_notifier_register USB: attach=0, drp=USB_DETACH \n[    1.968232] usb_notifier: ccic_usb_handle_notification: Turn Off Device(UFP)\n[    1.968239] usb_notify: send_otg_notify event=vbus(1) enable=0\n[    1.968244] usb_notify: send_otg_notify reserve event\n[    1.968360] usb: [M] manager_notifier_register USB driver is registered! Alternate mode Start!\n[    1.968366] vbus_notifier_register: listener=2 register\n[    1.968374] usb_notifier: vbus_handle_notification cmd=1, vbus_type=LOW\n[    1.968380] usb_notify: send_otg_notify event=vbus_power(25) enable=0\n[    1.968387] usb_notify: extra_notifier_callback event=vbus_power(25)\n[    1.968393] usb_notify: extra_notify_state+ event=vbus_power(25), enable=off\n[    1.968401] usb_notify: extra_notify_state- event=vbus_power(25), cable=none\n[    1.968410] usb_notifier usb_notifier: usb notifier probe\n[    1.968489] usb: [M] manager_notifier_init\n[    1.968494] cis_5e9_probe sensor_id 3\n[    1.968504] sensor peri is not yet probed\n[    1.968506] manager_notifier_init already registered\n[    1.968554] cis_4ha_probe sensor_id 1\n[    1.968561] sensor peri is not yet probed\n[    1.968601] cis_3l6_probe sensor id 0\n[    1.968606] sensor peri is not yet probed\n[    1.969010] input: gpio_keys as /devices/platform/gpio_keys/input/input12\n[    1.969196] cis_5e9_probe sensor_id 3\n[    1.969204] sensor peri is not yet probed\n[    1.969214] [[sec_input]NVT-ts] nvt_driver_init 1857: start\n[    1.969257] cis_4ha_probe sensor_id 1\n[    1.969262] sensor peri is not yet probed\n[    1.969277] nvt_driver_init: finished\n[    1.969294] cis_3l6_probe sensor id 0\n[    1.969300] sensor peri is not yet probed\n[    1.970599] s2mpu08-rtc s2mpu08-rtc: s2m_rtc_read_time: 2022-03-06 09:44:46(0x01)AM\n[    1.970703] s2mpu08-rtc s2mpu08-rtc: setting system clock to 2022-03-06 09:44:46 UTC (1646559886)\n[    1.971182] [@][1][FRT:D] fimc_is_csi_probe(0)\n[    1.971301] [@][VID] exynos-fimc-is-ss0(101) is created\n[    1.971363] [@][VID] exynos-fimc-is-ssinstancevc0(210) is created\n[    1.971423] [@][VID] exynos-fimc-is-ssinstancevc1(211) is created\n[    1.971477] [@][VID] exynos-fimc-is-ssinstancevc2(212) is created\n[    1.971531] [@][VID] exynos-fimc-is-ssinstancevc3(213) is created\n[    1.971541] [@][0][SEN:D] fimc_is_sensor_probe(0)\n[    1.971636] cis_5e9_probe sensor_id 3\n[    1.971644] sensor peri is not yet probed\n[    1.971710] cis_4ha_probe sensor_id 1\n[    1.971886] [@][0][FRT:D] fimc_is_csi_probe(0)\n[    1.971905] cis_4ha_probe f-number 200\n[    1.971917] cis_4ha_probe use_initial_ae(1)\n[    1.971927] cis_4ha_probe setfile_B\n[    1.971939] cis_4ha_probe done\n[    1.972034] [@][VID] exynos-fimc-is-ss1(102) is created\n[    1.972048] cis_3l6_probe sensor id 0\n[    1.972062] cis_3l6_probe f-number 190\n[    1.972072] cis_3l6_probe setfile_B\n[    1.972083] cis_3l6_probe done\n[    1.972106] [@][VID] exynos-fimc-is-ssinstancevc0(214) is created\n[    1.972151] cis_5e9_probe sensor_id 3\n[    1.972161] sensor peri is not yet probed\n[    1.972179] [@][VID] exynos-fimc-is-ssinstancevc1(215) is created\n[    1.972234] [@][VID] exynos-fimc-is-ssinstancevc2(216) is created\n[    1.972291] [@][VID] exynos-fimc-is-ssinstancevc3(217) is created\n[    1.972302] [@][1][SEN:D] fimc_is_sensor_probe(0)\n[    1.972398] cis_5e9_probe sensor_id 3\n[    1.972405] sensor peri is not yet probed\n[    1.972533] [@][ERR]fimc_is_sensor_parse_dt:320:id read is fail(-22)\n[    1.972541] [@][ERR]fimc_is_sensor_probe:1323:parsing device tree is fail(-22)\n[    1.972546] [@][-1][SEN:D] fimc_is_sensor_probe(-22)\n[    1.972557] exynos-fimc-is-sensor: probe of 14420000.fimc_is_sensor failed with error -22\n[    1.972725] [@][3][FRT:D] fimc_is_csi_probe(0)\n[    1.972897] [@][VID] exynos-fimc-is-ss3(104) is created\n[    1.973035] [@][VID] exynos-fimc-is-ssinstancevc0(222) is created\n[    1.973098] [@][VID] exynos-fimc-is-ssinstancevc1(223) is created\n[    1.973153] [@][VID] exynos-fimc-is-ssinstancevc2(224) is created\n[    1.973208] [@][VID] exynos-fimc-is-ssinstancevc3(225) is created\n[    1.973217] [@][3][SEN:D] fimc_is_sensor_probe(0)\n[    1.973286] cis_5e9_probe sensor_id 3\n[    1.973294] cis_5e9_probe f-number 220\n[    1.973300] cis_5e9_probe setfile_B\n[    1.973307] cis_5e9_probe done\n[    1.973540] s610-radio 14ac0000.fm: >>> start FM Radio probe\n[    1.973614] exynos_pmu_shared_reg_enable) need_delay = 1, usage_cnt = 1, CP_WAKEUP = 1, CP_STAT = 0x01, EXT_REGULATOR_SHARED_STATUS: 0x00090000, CALLER = s610_radio_probe\n[    1.973868] s610-radio 14ac0000.fm: (exynos_audio_parse_dt)audio get dev\n[    1.985055] s610-radio 14ac0000.fm: fm_ds_set: DS set: 0x0h, reg val: 0x0h\n[    1.985183] s610-radio 14ac0000.fm: >>> FM version: DEMOD[30000]ANA[30100]PMU[30100]SCG[30100]SPY[30100]TOP[30100]DS[1]BUILD[00BD7639]\n[    1.985220] s610-radio 14ac0000.fm: fm_aux_pll_off():PLL_CLK_EN[01]\n[    1.985230] s610-radio 14ac0000.fm: iClk Aux: 1\n[    1.985240] s610-radio 14ac0000.fm: number TRF On Freq: 16\n[    1.985248] s610-radio 14ac0000.fm: volume select num: 16\n[    1.985255] s610-radio 14ac0000.fm: volume -3dB: 0\n[    1.985262] s610-radio 14ac0000.fm: rssi_est_on: 0\n[    1.985268] s610-radio 14ac0000.fm: sw_mute_weak: 0\n[    1.985274] s610-radio 14ac0000.fm: without eLNA: 0\n[    1.985280] s610-radio 14ac0000.fm: rssi adjust: 0\n[    1.985287] s610-radio 14ac0000.fm: agc thresh: 65380\n[    1.985322] s610-radio 14ac0000.fm: (s610_radio_probe) Enable elna_gpio control :0\n[    1.985349] s610-radio 14ac0000.fm: end FM probe.\n[    1.985598] exynos_ufc: Initialize ufc table for Domain 0\n[    1.985607] exynos_ufc: Complete to initialize domain0\n[    1.985614] exynos_ufc: Initialize ufc table for Domain 1\n[    1.985621] exynos_ufc: Register UFC Type-0 Execution Mode-0 for Domain 1\n[    1.985627] exynos_ufc: Master_freq : 1768000 kHz - limit_freq : 1586000 kHz\n[    1.985633] exynos_ufc: Master_freq : 1664000 kHz - limit_freq : 839000 kHz\n[    1.985638] exynos_ufc: Master_freq : 1560000 kHz - limit_freq : 839000 kHz\n[    1.985644] exynos_ufc: Master_freq : 1352000 kHz - limit_freq : 839000 kHz\n[    1.985649] exynos_ufc: Master_freq : 1144000 kHz - limit_freq : 839000 kHz\n[    1.985654] exynos_ufc: Master_freq : 936000 kHz - limit_freq : 839000 kHz\n[    1.985661] exynos_ufc: Register UFC Type-2 Execution Mode-0 for Domain 1\n[    1.985668] exynos_ufc: Master_freq : 1768000 kHz - limit_freq : 1586000 kHz\n[    1.985673] exynos_ufc: Master_freq : 1664000 kHz - limit_freq : 1586000 kHz\n[    1.985678] exynos_ufc: Master_freq : 1560000 kHz - limit_freq : 1586000 kHz\n[    1.985684] exynos_ufc: Master_freq : 1352000 kHz - limit_freq : 1586000 kHz\n[    1.985689] exynos_ufc: Master_freq : 1144000 kHz - limit_freq : 1352000 kHz\n[    1.985694] exynos_ufc: Master_freq : 936000 kHz - limit_freq : 1248000 kHz\n[    1.985701] exynos_ufc: Complete to initialize domain1\n[    1.985744] exynos_ufc: Initialized Exynos UFC(User-Frequency-Ctrl) driver\n[    1.986083] exynos-mmc-srpmb mmc-srpmb: srpmb dma addr: virt_pK(0000000000000000), phy(8be010000)\n[    1.986483] exynos-fmp fmp: Exynos FMP Version: 1.3.2\n[    1.986493] exynos-fmp fmp: exynos_fmp_probe: Exynos FMP driver is proved\n[    1.987452] sec_debug_init_init_log: start\n[    1.987463] sec_debug_init_init_log: buffer size 0x20000 at addr ffffff8009561b88\n[    1.987468] sec_debug_init_init_log: done\n[    1.987642] sec-battery battery: sec_battery_probe: SEC Battery Driver Loading\n[    1.987801] sec_bat_parse_dt : CABLE_NUM(0) INPUT(1800) CHARGING(2100)\n[    1.987809] sec_bat_parse_dt : CABLE_NUM(1) INPUT(500) CHARGING(500)\n[    1.987815] sec_bat_parse_dt : CABLE_NUM(2) INPUT(500) CHARGING(1000)\n[    1.987820] sec_bat_parse_dt : CABLE_NUM(3) INPUT(1800) CHARGING(2100)\n[    1.987826] sec_bat_parse_dt : CABLE_NUM(4) INPUT(500) CHARGING(500)\n[    1.987832] sec_bat_parse_dt : CABLE_NUM(5) INPUT(1500) CHARGING(1500)\n[    1.987837] sec_bat_parse_dt : CABLE_NUM(6) INPUT(1650) CHARGING(2200)\n[    1.987842] sec_bat_parse_dt : CABLE_NUM(7) INPUT(1650) CHARGING(2200)\n[    1.987848] sec_bat_parse_dt : CABLE_NUM(8) INPUT(1650) CHARGING(2200)\n[    1.987853] sec_bat_parse_dt : CABLE_NUM(9) INPUT(1650) CHARGING(2200)\n[    1.987859] sec_bat_parse_dt : CABLE_NUM(10) INPUT(900) CHARGING(1200)\n[    1.987864] sec_bat_parse_dt : CABLE_NUM(11) INPUT(650) CHARGING(1200)\n[    1.987870] sec_bat_parse_dt : CABLE_NUM(12) INPUT(900) CHARGING(1200)\n[    1.987875] sec_bat_parse_dt : CABLE_NUM(13) INPUT(700) CHARGING(1200)\n[    1.987881] sec_bat_parse_dt : CABLE_NUM(14) INPUT(900) CHARGING(1200)\n[    1.987886] sec_bat_parse_dt : CABLE_NUM(15) INPUT(900) CHARGING(1200)\n[    1.987891] sec_bat_parse_dt : CABLE_NUM(16) INPUT(650) CHARGING(1200)\n[    1.987897] sec_bat_parse_dt : CABLE_NUM(17) INPUT(1800) CHARGING(2100)\n[    1.987903] sec_bat_parse_dt : CABLE_NUM(18) INPUT(1800) CHARGING(2100)\n[    1.987908] sec_bat_parse_dt : CABLE_NUM(19) INPUT(500) CHARGING(500)\n[    1.987914] sec_bat_parse_dt : CABLE_NUM(20) INPUT(1800) CHARGING(2100)\n[    1.987919] sec_bat_parse_dt : CABLE_NUM(21) INPUT(500) CHARGING(500)\n[    1.987925] sec_bat_parse_dt : CABLE_NUM(22) INPUT(500) CHARGING(500)\n[    1.987930] sec_bat_parse_dt : CABLE_NUM(23) INPUT(500) CHARGING(500)\n[    1.987936] sec_bat_parse_dt : CABLE_NUM(24) INPUT(1000) CHARGING(450)\n[    1.987942] sec_bat_parse_dt : CABLE_NUM(25) INPUT(1000) CHARGING(1000)\n[    1.987947] sec_bat_parse_dt : CABLE_NUM(26) INPUT(2000) CHARGING(1800)\n[    1.987953] sec_bat_parse_dt : CABLE_NUM(27) INPUT(900) CHARGING(1200)\n[    1.987958] sec_bat_parse_dt : CABLE_NUM(28) INPUT(650) CHARGING(1200)\n[    1.987964] sec_bat_parse_dt : CABLE_NUM(29) INPUT(500) CHARGING(1200)\n[    1.987969] sec_bat_parse_dt : CABLE_NUM(30) INPUT(500) CHARGING(500)\n[    1.987975] sec_bat_parse_dt : CABLE_NUM(31) INPUT(1800) CHARGING(2100)\n[    1.987980] sec_bat_parse_dt : CABLE_NUM(32) INPUT(1800) CHARGING(2100)\n[    1.987986] sec_bat_parse_dt : CABLE_NUM(33) INPUT(1800) CHARGING(2100)\n[    1.987991] sec_bat_parse_dt : TOPOFF_1ST(350), TOPOFF_2ND(245)\n[    1.988050] sec_bat_parse_dt : battery_full_capacity : 4900\n[    1.988065] sec_bat_parse_dt : set cisd_alg_index : 7\n[    1.988089] sec_bat_parse_dt: Wireless charger name is Empty\n[    1.988110] sec_bat_parse_dt : detect_moisture = 0 \n[    1.988185] sec_bat_parse_dt : usb_thermal_source is Empty\n[    1.988196] sec_bat_parse_dt : wpc_thermal_source is Empty\n[    1.988206] sec_bat_parse_dt : coil_thermal_source is Empty\n[    1.988215] sec_bat_parse_dt : slave_thermal_source is Empty\n[    1.988224] sec_bat_parse_dt : slave_chg_temp_check is Empty\n[    1.988236] sec_bat_parse_dt : chg_12v_high_temp is Empty\n[    1.988249] sec_bat_parse_dt : chg_charging_limit_current is Empty\n[    1.988259] sec_bat_parse_dt : chg_input_limit_current is Empty\n[    1.988272] sec_bat_parse_dt : mix_high_temp_recovery is Empty\n[    1.988287] sec_bat_parse_dt : wpc_temp_check is Empty\n[    1.988297] sec_bat_parse_dt : wc_full_input_limit_current is Empty\n[    1.988306] sec_bat_parse_dt : wc_cv_current is Empty\n[    1.988316] sec_bat_parse_dt : wc_cv_pack_current is Empty\n[    1.988326] sec_bat_parse_dt : wc_hero_stand_cc_cv is Empty\n[    1.988335] sec_bat_parse_dt : wc_hero_stand_cv_current is Empty\n[    1.988344] sec_bat_parse_dt : wc_hero_stand_hv_cv_current is Empty\n[    1.988354] sec_bat_parse_dt : sleep_mode_limit_current is Empty\n[    1.988392] sec_bat_parse_dt : pre_afc_work_delay is Empty\n[    1.988402] sec_bat_parse_dt : pre_wc_afc_input_current is Empty\n[    1.988412] sec_bat_parse_dt : pre_wc_afc_work_delay is Empty\n[    1.988428] sec_bat_parse_dt : Check adc max is Empty\n[    1.988438] sec_bat_parse_dt : Check adc min is Empty\n[    1.988471] sec_bat_parse_dt : HIGHLIMIT_THRESHOLD_NOLMAL(800), HIGHLIMIT_RECOVERY_NORMAL(750)\n               HIGH_THRESHOLD_NORMAL(500), HIGH_RECOVERY_NORMAL(450) LOW_THRESHOLD_NORMAL(0), LOW_RECOVERY_NORMAL(50)\n               HIGHLIMIT_THRESHOLD_LPM(800), HIGHLIMIT_RECOVERY_LPM(750)\n               HIGH_THRESHOLD_LPM(500), HIGH_RECOVERY_LPM(450) LOW_THRESHOLD_LPM(0), LOW_RECOVERY_LPM(50)\n[    1.988545] sec_bat_parse_dt: chg_float_voltage_conv is Empty\n[    1.988557] sec_bat_parse_dt: wa volt recov is Empty\n[    1.988567] sec_bat_parse_dt: wa volt thr is Empty\n[    1.988576] sec_bat_parse_dt: wa float voltage is Empty\n[    1.988585] sec_bat_parse_dt : swelling fl check count is Empty\n[    1.988639] sec_bat_parse_dt: swelling_wc_low_temp_current_2nd is Empty, set swelling_wc_low_temp_current \n[    1.988649] sec_bat_parse_dt : swelling drop voltage(set : 4150, condition : 4150)\n[    1.988666] sec_bat_parse_dt: swelling_low_rechg_voltage_threshold is Empty\n[    1.988676] sec_bat_parse_dt : SWELLING_HIGH_TEMP(410) SWELLING_HIGH_TEMP_RECOVERY(390)\n               SWELLING_LOW_TEMP_1st(150) SWELLING_LOW_TEMP_RECOVERY_1st(200) SWELLING_LOW_TEMP_2nd(50) SWELLING_LOW_TEMP_RECOVERY_2nd(100) SWELLING_LOW_CURRENT(1150, 245), SWELLING_HIGH_CURRENT(1750, 245)\n               SWELLING_LOW_RCHG_VOL(4000), SWELLING_HIGH_RCHG_VOL(4000)\n               SWELLING_LOW_TEMP_RECHARGE_VOL_THRESHOLD(150)\n[    1.988701] sec_bat_parse_dt : can't get wpc_en\n[    1.988716] [0/4]cycle:0, float:4350, full_v:4250, recharge_v:4280, soc:93\n[    1.988723] [1/4]cycle:300, float:4330, full_v:4230, recharge_v:4260, soc:92\n[    1.988730] [2/4]cycle:400, float:4310, full_v:4210, recharge_v:4240, soc:91\n[    1.988736] [3/4]cycle:700, float:4290, full_v:4190, recharge_v:4220, soc:90\n[    1.988742] [4/4]cycle:1000, float:4240, full_v:4140, recharge_v:4170, soc:89\n[    1.988751] sec_bat_parse_dt: fg_cycle_check_value set default(1000)\n[    1.988761] sec_bat_parse_dt: siop_default_power is Empty\n[    1.988816] sec_bat_parse_dt : minimum_charging_current_by_siop_0 is Empty\n[    1.988829] sec_bat_parse_dt : input_current_by_siop_40 is Empty\n[    1.988839] sec_bat_parse_dt : charging_current_browsing_mode is Empty\n[    1.988860] sec_bat_parse_dt: vendor : Battery, technology : 2, cable_check_type : 4\n               cable_source_type : 1, event_waiting_time : 0\n               polling_type : 1, initial_count : 0, check_count : 0\n               check_adc_max : 0, check_adc_min : 0\n               ovp_uvlo_check_type : 3, thermal_source : 2, chg_thermal_source : 2\n               temp_check_type : 2, temp_check_count : 1\n               chg_heating_prevention_method : 1\n[    1.988903] sec_bat_parse_dt : battery,ignore_cisd_index is Empty\n[    1.988912] sec_bat_parse_dt : battery,ignore_cisd_index_d is Empty\n[    1.989019] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[    1.989027] sec_battery_probe: init block_water_event = 0\n[    1.989168] sec_battery_cisd_init: cisd.err_cap_high_thr:5900, cisd.err_cap_low_thr:5400, cisd.overflow_cap_thr:5390\n[    1.991784] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[    1.994477] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (140) data1 (17)\n[    2.007335] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (188) data1 (3)\n[    2.007345] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2333)\n[    2.007355] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2741), previous soc (2741), diff (0), FG_mode(0)\n[    2.009612] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 661), avg current (-399)mA\n[    2.009621] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2741)%\n[    2.062413] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3679)\n[    2.069368] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3672)\n[    2.070629] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (134) data1 (117)\n[    2.071265] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3672), src (0x01)\n[    2.072523] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 49c)\n[    2.072532] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-289)mA\n[    2.073177] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 0\n[    2.073187] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[    2.089432] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[    2.089444] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(27.4), raw_soc(27.4)\n[    2.089454] sec_battery_probe: Fail to set psy ((null))\n[    2.089461] usb: [M] manager_notifier_register: listener=23 register\n[    2.089468] usb: [M] manager_notifier_register BATTERY: id:ID_ATTACH, cable_type=0 Detached\n[    2.089478] sec-battery battery: usb_typec_handle_notification: action (1) dump(0x6, 0x2, 0x01, 0x0000, 0x0000, 0x0000)\n[    2.089486] sec_bat_set_misc_event: clear misc event(now=0x0, value=0x1)\n[    2.089492] sec_bat_set_misc_event: clear misc event(now=0x0, value=0x4)\n[    2.089508] sec-battery battery: usb_typec_handle_notification: CMD[DETACH], CABLE_TYPE[1]\n[    2.089516] vbus_notifier_register: listener=1 register\n[    2.089524] vbus_handle_notification: action=1, vbus_status=1\n[    2.089531] sec_battery_probe: Fail to s2mu004-charger set (43=>-22)\n[    2.089538] sec-battery battery: sec_battery_probe: SEC Battery Driver Monitorwork\n[    2.089546] sec-battery battery: sec_battery_probe: SEC Battery Driver Loaded\n[    2.089569] sec-battery battery: sec_bat_cable_work: Start\n[    2.089579] sec_bat_set_current_event: current event before(0x0), after(0x4)\n[    2.089588] sec-battery battery: sec_bat_cable_work: End\n[    2.089596] sec_bat_init_chg_work: disable charging\n[    2.089608] sec_bat_get_property cable type = 1 sleep_mode = 0\n[    2.089615] [DEBUG] s2mu004_enable_charger_switch: turn off charger\n[    2.089942] usbpd-s2mu004 9-003c: s2mu004_usbpd_probe\n[    2.090598] usbpd-s2mu004 9-003c: s2mu004_usbpd_init_configure : Initial abnormal state to LPM Mode\n[    2.094718] usbpd-s2mu004 9-003c: s2mu004_set_lpm_mode s2mu004 enter lpm mode\n[    2.094729] usbpd-s2mu004 9-003c: s2mu004_usbpd_set_cc_control, (0)\n[    2.095820] sec_bat_get_property cable type = 1 sleep_mode = 0\n[    2.224026] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (134) data1 (117)\n[    2.224893] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3672), src (0x01)\n[    2.231491] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3672)\n[    2.232740] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5b4)\n[    2.232750] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-357)mA\n[    2.234894] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 65e), avg current (-398)mA\n[    2.234903] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2741)%\n[    2.236146] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (134) data1 (117)\n[    2.236772] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3672), src (0x01)\n[    2.238029] sec-battery battery: sec_bat_get_value_by_adc: Temp(378), Temp-ADC(1468)\n[    2.238645] sec-battery battery: sec_bat_get_value_by_adc: Temp(378), Temp-ADC(1468)\n[    2.240339] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (428)\n[    2.242199] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[    2.244675] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (140) data1 (17)\n[    2.255426] usbpd-s2mu004 9-003c: s2mu004_set_normal_mode s2mu004 exit lpm mode\n[    2.255438] usbpd_init_counters: init counter\n[    2.255446] usbpd_init_manager\n[    2.255576] of_usbpd_manager_dt error reading vb_cc_short_max_input_current 1800\n[    2.255906] ccic_misc_init - register success\n[    2.255916] usbpd_init_manager done\n[    2.258607] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (188) data1 (3)\n[    2.258617] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2333)\n[    2.258626] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2741), previous soc (2741), diff (0), FG_mode(0)\n[    2.263000] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 65e), avg current (-398)mA\n[    2.263007] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2741)%\n[    2.266146] ccic_notifier_init\n[    2.266161] ccic_notifier_init already registered\n[    2.266417] typec_init : success typec_register_port port=0000000000000000\n[    2.266538] wake enabled for irq 207\n[    2.269250] usbpd-s2mu004 9-003c: s2mu004_check_port_detect, PLUG Error\n[    2.269889] usbpd-s2mu004 9-003c: s2mu004_usbpd_check_rid : attached rid state(0)\n[    2.269898] usbpd-s2mu004 9-003c: s2mu004_irq_thread\n[    2.271368] usbpd-s2mu004 9-003c: s2mu004_poll_status status[0x0 0x0 0x1 0x0 0x40 0x0 0x0]\n[    2.271382] [MUIC] muic_ccic_notifier_register: listener=5 register\n[    2.271391] type3_handle_notification action:0, attached_dev:76, lpm:0, pdic_data->is_otg_vboost:0, pdic_data->is_otg_reboost:0\n[    2.271399] usbpd_policy_work : usbpd cable is empty\n[    2.271411] usbpd-s2mu004 9-003c: usbpd_policy_work Finished\n[    2.271417] usbpd-s2mu004 9-003c: s2mu004_usbpd_probe s2mu004 usbpd driver uploaded!\n[    2.271489] samsung_abox_dump_late_initcall\n[    2.271516] samsung_abox_log_late_initcall\n[    2.271526] samsung_abox_late_initcall\n[    2.272690] ALSA device list:\n[    2.272699]   #0: Exynos7885-COD3035\n[    2.272754] Warning: unable to open an initial console.\n[    2.272893] Freeing unused kernel memory: 740K\n[    2.315802] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3679)\n[    2.322405] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3672)\n[    2.323707] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (134) data1 (117)\n[    2.324374] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3672), src (0x01)\n[    2.325673] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5b4)\n[    2.325683] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-357)mA\n[    2.326354] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 27\n[    2.326365] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[    2.343904] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[    2.343933] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(27.4), raw_soc(27.4)\n[    2.343952] sec-battery battery: sec_bat_get_battery_info:Vnow(3672mV),Inow(-357mA),Imax(500mA),Ichg(0mA),SOC(27%),Tbat(378), Tusb(0), Tchg(428),Twpc(0)\n[    2.343979] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[    2.344672] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(378)\n[    2.344686] sec_bat_set_current_event: current event before(0x4), after(0x4)\n[    2.344694] sec_bat_set_current_event: current event before(0x4), after(0x0)\n[    2.345864] [DEBUG]s2mu004_set_input_current_limit: current  500, 0x12\n[    2.367655] [DEBUG][CHG]s2mu004_test_read: 0x0a:0x03, 0x0b:0x00, 0x0c:0x03, 0x0d:0x01, 0x0e:0x12, 0x0f:0x25, 0x10:0x81, 0x11:0x05, 0x12:0x12, 0x13:0x25, 0x14:0x10, 0x15:0xdd, 0x16:0x6d, 0x17:0x46, 0x18:0x91, 0x19:0x11, 0x1a:0x0c, 0x1b:0x06, 0x1c:0x12, 0x1d:0x22, 0x1e:0x00, 0x1f:0x4c, 0x20:0x1b, 0x21:0x35, 0x22:0x55, 0x23:0x55, 0x24:0x05, 0x33:0x95, 0x03:0xbf, 0x71:0x08, 0x74:0xae, 0x91:0x9d, 0x96:0xca, 0xa5:0x40, \n[    2.367672] [DEBUG] s2mu004_chg_set_property: is_charging 0\n[    2.368793] [DEBUG]s2mu004_set_fast_charging_current: current  500, 0x13\n[    2.391391] [DEBUG][CHG]s2mu004_test_read: 0x0a:0x03, 0x0b:0x00, 0x0c:0x03, 0x0d:0x01, 0x0e:0x12, 0x0f:0x25, 0x10:0x81, 0x11:0x05, 0x12:0x12, 0x13:0x25, 0x14:0x10, 0x15:0xdd, 0x16:0x6d, 0x17:0x46, 0x18:0x91, 0x19:0x13, 0x1a:0x0c, 0x1b:0x06, 0x1c:0x12, 0x1d:0x22, 0x1e:0x00, 0x1f:0x4c, 0x20:0x1b, 0x21:0x35, 0x22:0x55, 0x23:0x55, 0x24:0x05, 0x33:0x95, 0x03:0xbf, 0x71:0x08, 0x74:0xae, 0x91:0x9d, 0x96:0xca, 0xa5:0x40, \n[    2.412737] [DEBUG][CHG]s2mu004_test_read: 0x0a:0x03, 0x0b:0x00, 0x0c:0x03, 0x0d:0x01, 0x0e:0x12, 0x0f:0x25, 0x10:0x81, 0x11:0x05, 0x12:0x12, 0x13:0x25, 0x14:0x10, 0x15:0xdd, 0x16:0x6d, 0x17:0x46, 0x18:0x91, 0x19:0x13, 0x1a:0x0c, 0x1b:0x06, 0x1c:0x12, 0x1d:0x22, 0x1e:0x00, 0x1f:0x4c, 0x20:0x1b, 0x21:0x35, 0x22:0x55, 0x23:0x55, 0x24:0x05, 0x33:0x95, 0x03:0xbf, 0x71:0x08, 0x74:0xae, 0x91:0x9d, 0x96:0xca, 0xa5:0x40, \n[    2.412747] sec_bat_set_charging_current: power(0), input(500), charge(500)\n[    2.412756] [DEBUG]s2mu004_set_topoff_current: current  350\n[    2.413850] [MUIC_HV] s2mu004_hv_muic_charger_init\n[    2.413866] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[    2.413874] [MUIC_HV] s2mu004_hv_muic_detect_after_charger_init\n[    2.413895] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[    2.413909] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[    2.413938] sec_bat_get_property cable type = 1 sleep_mode = 0\n[    2.413981] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[    2.414506] [MUIC_HV] s2mu004_hv_muic_detect_after_charger_init STATUS3:0x00\n[    3.159844] himax_tp 5-0048: [sec_input] [HXTP] himax_update_register: in\n[    3.159863] himax_tp 5-0048: [sec_input] [HXTP] file name = tsp_himax/hx83112a_m20lte.fw\n[    3.159901] himax_tp 5-0048: [sec_input] [HXTP] himax_auto_update_check:Entering!\n[    3.159911] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_fw_ver_bin: use default incell address.\n[    3.159920] himax_tp 5-0048: [sec_input] [HXTP] himax_mcu_fw_ver_bin:Entering!\n[    3.159928] himax_tp 5-0048: [sec_input] [HXTP] Catch fw version in bin file!\n[    3.159937] himax_tp 5-0048: [sec_input] [HXTP] himax_auto_update_check: No need to update!\n[    3.159946] himax_tp 5-0048: [sec_input] [HXTP] himax_update_register:Don't run auto update fw, so free allocated!\n[    3.492287] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: cpu1 cpu6 \n               Offline CPUs: cpu1 \n[    3.497998] Trustonic TEE: __mc_switch_core: <- cpu=0x00000000, active_cpu=0x00000001\n\n[    3.498081] Trustonic TEE: mc_exec_core_switch: CoreSwap ok 1 -> 0\n[    3.499104] set_state_shutdown: mct_tick_stop (cpu1)\n[    3.499140] CPU1: shutdown\n[    3.500137] cpu2 \n[    3.501548] set_state_shutdown: mct_tick_stop (cpu2)\n[    3.501597] CPU2: shutdown\n[    3.502458] cpu3 \n[    3.503820] set_state_shutdown: mct_tick_stop (cpu3)\n[    3.503913] CPU3: shutdown\n[    3.504801] cpu4 \n[    3.506038] set_state_shutdown: mct_tick_stop (cpu4)\n[    3.506080] CPU4: shutdown\n[    3.506881] cpu5 \n[    3.508032] set_state_shutdown: mct_tick_stop (cpu5)\n[    3.508071] CPU5: shutdown\n[    3.508905] cpu6 \n[    3.509707] set_state_shutdown: mct_tick_stop (cpu6)\n[    3.509737] CPU6: shutdown\n[    3.510659] cpu7 \n[    3.515447] set_state_shutdown: mct_tick_stop (cpu7)\n[    3.515476] CPU7: shutdown\n\n[    8.540585] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 432)\n[    8.540605] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[    8.540954] Sampling power every 1000 ms\n               Baseline power usage: \n[   11.775842] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[   11.999811] usb_notify: reserve_state_check booting delay finished\n[   16.287820] himax_tp 5-0048: [sec_input] [HXTP] himax_fb_register in\n[   16.287951] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #1 1\n[   21.823831] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[   25.560988] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 416)\n[   25.561008] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[   27.565815] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 421)\n[   27.565834] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[   29.570619] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 439)\n[   29.570639] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[   31.575415] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 414)\n[   31.575435] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[   32.415657] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (28) data1 (118)\n[   32.416445] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3690), src (0x01)\n[   32.423097] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3690)\n[   32.423114] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2741) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[   32.423129] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2741), ocv (37698)\n[   32.424398] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 414)\n[   32.424412] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[   32.426598] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 479), avg current (-280)mA\n[   32.426610] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2741)%\n[   32.427879] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (28) data1 (118)\n[   32.428519] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3690), src (0x01)\n[   32.429791] sec-battery battery: sec_bat_get_value_by_adc: Temp(378), Temp-ADC(1468)\n[   32.430413] sec-battery battery: sec_bat_get_value_by_adc: Temp(378), Temp-ADC(1468)\n[   32.432145] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (418)\n[   32.434042] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[   32.436567] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (132) data1 (17)\n[   32.449411] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (184) data1 (3)\n[   32.449423] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2324)\n[   32.449438] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2736), previous soc (2741), diff (0), FG_mode(0)\n[   32.451655] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 479), avg current (-280)mA\n[   32.451668] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2736)%\n[   32.504148] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3683)\n[   32.510746] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3690)\n[   32.512031] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (28) data1 (118)\n[   32.512680] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3690), src (0x01)\n[   32.513964] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 414)\n[   32.513976] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[   32.514640] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 27\n[   32.514656] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[   32.531209] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[   32.531226] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(27.3), raw_soc(27.3)\n[   32.531244] sec-battery battery: sec_bat_get_battery_info:Vnow(3690mV),Inow(-255mA),Imax(500mA),Ichg(500mA),SOC(27%),Tbat(378), Tusb(0), Tchg(418),Twpc(0)\n[   32.531263] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[   32.531915] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(378)\n[   32.531928] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[   32.531940] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[   32.531956] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[   32.531973] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[   32.531994] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[   32.532037] sec_bat_get_property cable type = 1 sleep_mode = 0\n[   32.532180] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[   32.831840] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[   33.580351] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42c)\n[   33.580371] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[   35.585130] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 412)\n[   35.585149] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[   37.589925] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 434)\n[   37.589945] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[   39.594721] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ff)\n[   39.594741] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[   41.599447] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[   41.599467] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[   43.604386] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 429)\n[   43.604406] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[   43.839830] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[   45.609155] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42d)\n[   45.609174] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[   46.303821] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #2 2\n[   47.613918] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 425)\n[   47.613937] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[   49.618686] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41d)\n[   49.618706] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[   51.623444] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41f)\n[   51.623464] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[   53.628346] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[   53.628366] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[   54.847842] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[   55.633122] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 444)\n[   55.633140] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[   57.637839] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ff)\n[   57.637858] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[   59.642601] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41a)\n[   59.642621] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[   61.647373] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41c)\n[   61.647393] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[   61.719899] samsung-abox 14a50000.abox: Failed to request firmware\n[   61.899832] tfa98xx_container_loaded(): Failed to read Tfa9896.cnt\n[   62.533800] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (35) data1 (118)\n[   62.534585] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3691), src (0x01)\n[   62.541045] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3690)\n[   62.541062] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2736) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[   62.541076] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2736), ocv (37697)\n[   62.542344] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 408)\n[   62.542357] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[   62.544545] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 42e), avg current (-262)mA\n[   62.544557] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2736)%\n[   62.545821] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (35) data1 (118)\n[   62.546460] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3691), src (0x01)\n[   62.547887] sec-battery battery: sec_bat_get_value_by_adc: Temp(379), Temp-ADC(1464)\n[   62.548665] sec-battery battery: sec_bat_get_value_by_adc: Temp(379), Temp-ADC(1464)\n[   62.550416] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (413)\n[   62.552313] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[   62.554831] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (124) data1 (17)\n[   62.567670] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (181) data1 (3)\n[   62.567683] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2316)\n[   62.567697] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2731), previous soc (2736), diff (0), FG_mode(0)\n[   62.569916] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 42e), avg current (-262)mA\n[   62.569928] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2731)%\n[   62.622152] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[   62.628508] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3690)\n[   62.629791] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (35) data1 (118)\n[   62.630439] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3691), src (0x01)\n[   62.631721] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 408)\n[   62.631753] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[   62.632425] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 27\n[   62.632441] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[   62.648979] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[   62.648996] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(27.3), raw_soc(27.3)\n[   62.649013] sec-battery battery: sec_bat_get_battery_info:Vnow(3691mV),Inow(-252mA),Imax(500mA),Ichg(500mA),SOC(27%),Tbat(379), Tusb(0), Tchg(413),Twpc(0)\n[   62.649032] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[   62.649682] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(379)\n[   62.649694] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[   62.649706] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[   62.649723] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[   62.649740] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[   62.649762] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[   62.649806] sec_bat_get_property cable type = 1 sleep_mode = 0\n[   62.649941] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[   63.652277] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 421)\n[   63.652295] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[   65.657043] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 407)\n[   65.657062] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[   65.823838] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[   67.661805] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 429)\n[   67.661825] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[   69.666601] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 411)\n[   69.666621] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[   71.671367] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f9)\n[   71.671387] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[   73.676275] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 422)\n[   73.676295] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[   75.681030] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 431)\n[   75.681049] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[   76.383821] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #3 3\n[   76.831835] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[   77.685808] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 427)\n[   77.685827] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[   79.690566] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 441)\n[   79.690585] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[   81.695327] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 444)\n[   81.695347] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[   83.699209] Detected VIPT I-cache on CPU1\n[   83.699249] set_state_shutdown: mct_tick_stop (cpu1)\n[   83.699259] set_state_shutdown: mct_tick_stop (cpu1)\n[   83.699281] CPU1: Booted secondary processor [410fd034]\n[   83.699564] Trustonic TEE: __mc_switch_core: <- cpu=0x00000001, active_cpu=0x00000000\n\n[   83.699639] Trustonic TEE: mc_exec_core_switch: CoreSwap ok 0 -> 1\n[   84.704370] 919 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 449 546 676 757 839 902 1014 1144 1248 1352 1482 1586\n               \n                449: \n[   87.840148] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[   88.815426] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e5)\n[   88.815479] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[   89.821061] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fc)\n[   89.821115] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[   90.826538] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f7)\n[   90.826592] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[   91.832026] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ec)\n[   91.832080] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-246)mA\n[   92.652276] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (51) data1 (118)\n[   92.653246] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[   92.660886] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[   92.660943] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2731) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[   92.660986] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2731), ocv (37696)\n[   92.662547] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3dd)\n[   92.662591] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-242)mA\n[   92.665455] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 40f), avg current (-254)mA\n[   92.665501] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2731)%\n[   92.666954] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (51) data1 (118)\n[   92.667704] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[   92.669350] sec-battery battery: sec_bat_get_value_by_adc: Temp(379), Temp-ADC(1463)\n[   92.670154] sec-battery battery: sec_bat_get_value_by_adc: Temp(379), Temp-ADC(1463)\n[   92.672145] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (409)\n[   92.674564] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[   92.677570] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (117) data1 (17)\n[   92.691409] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (178) data1 (3)\n[   92.691455] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2309)\n[   92.691499] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2727), previous soc (2731), diff (0), FG_mode(0)\n[   92.694065] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 40f), avg current (-254)mA\n[   92.694110] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2727)%\n[   92.747566] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[   92.756069] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[   92.757524] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (51) data1 (118)\n[   92.758276] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[   92.759724] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f3)\n[   92.759850] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[   92.760653] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 27\n[   92.760705] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[   92.779395] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[   92.779455] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(27.2), raw_soc(27.2)\n[   92.779511] sec-battery battery: sec_bat_get_battery_info:Vnow(3693mV),Inow(-242mA),Imax(500mA),Ichg(500mA),SOC(27%),Tbat(379), Tusb(0), Tchg(409),Twpc(0)\n[   92.779562] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[   92.780411] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(379)\n[   92.780452] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[   92.780489] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[   92.780541] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[   92.780596] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[   92.780660] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[   92.780786] sec_bat_get_property cable type = 1 sleep_mode = 0\n[   92.780975] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[   93.848338] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f7)\n[   93.848391] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[   94.853850] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f1)\n[   94.853903] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[   95.859239] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40a)\n[   95.859291] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[   96.864818] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fe)\n[   96.864871] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[   97.870204] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e9)\n[   97.870256] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-245)mA\n[   98.847991] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[   98.875567] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3bf)\n[   98.875620] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-235)mA\n[   99.880939] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f8)\n[   99.880992] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  100.886401] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 413)\n[  100.886454] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  101.891371] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41d)\n[  101.891425] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  102.896908] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 410)\n[  102.896962] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  103.902187] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43b)\n[  103.902240] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[  104.907567] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e0)\n[  104.907619] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  105.912913] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fe)\n[  105.912965] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  106.463944] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #4 4\n[  106.918357] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f1)\n[  106.918409] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  107.923876] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f4)\n[  107.923929] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  108.929169] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 405)\n[  108.929223] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  109.855990] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  109.934532] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d8)\n[  109.934585] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-241)mA\n[  110.940046] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 322)\n[  110.940099] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-196)mA\n[  111.945343] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 408)\n[  111.945396] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  112.950610] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d8)\n[  112.950662] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-241)mA\n[  113.956201] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fa)\n[  113.956255] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  114.961542] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40d)\n[  114.961595] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  115.966832] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ef)\n[  115.966886] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-246)mA\n[  116.972261] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fd)\n[  116.972314] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  117.977591] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40d)\n[  117.977645] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  118.982899] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ef)\n[  118.982952] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-246)mA\n[  119.988503] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fe)\n[  119.988558] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  120.831983] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  120.993742] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40a)\n[  120.993794] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  121.999042] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 400)\n[  121.999095] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  122.783039] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (53) data1 (118)\n[  122.784012] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  122.791358] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  122.791414] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2727) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  122.791457] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2727), ocv (37695)\n[  122.792868] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e7)\n[  122.792912] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  122.795344] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ff), avg current (-250)mA\n[  122.795386] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2727)%\n[  122.796792] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (53) data1 (118)\n[  122.797547] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  122.799118] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[  122.799944] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[  122.801959] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (406)\n[  122.804142] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  122.807021] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (109) data1 (17)\n[  122.820403] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (174) data1 (3)\n[  122.820446] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2299)\n[  122.820490] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2722), previous soc (2727), diff (0), FG_mode(0)\n[  122.823031] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ff), avg current (-250)mA\n[  122.823074] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2722)%\n[  122.876107] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  122.883636] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  122.885093] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (53) data1 (118)\n[  122.885843] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  122.887296] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e7)\n[  122.887339] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  122.888115] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 27\n[  122.888166] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  122.906650] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  122.906709] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(27.2), raw_soc(27.2)\n[  122.906765] sec-battery battery: sec_bat_get_battery_info:Vnow(3693mV),Inow(-244mA),Imax(500mA),Ichg(500mA),SOC(27%),Tbat(380), Tusb(0), Tchg(406),Twpc(0)\n[  122.906816] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  122.907573] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(380)\n[  122.907613] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  122.907650] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  122.907700] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  122.907814] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  122.907880] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  122.907994] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  122.908332] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  123.003979] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f9)\n[  123.004032] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  124.009148] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 401)\n[  124.009201] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  125.014610] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fe)\n[  125.014663] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  126.020195] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  126.020253] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  127.025546] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 415)\n[  127.025599] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  128.030815] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3dd)\n[  128.030868] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-242)mA\n[  129.036297] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e9)\n[  129.036350] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-245)mA\n[  130.041606] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f0)\n[  130.041658] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  131.046908] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 402)\n[  131.046961] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  131.839992] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  132.052102] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  132.052154] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  133.057425] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ce)\n[  133.057479] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-238)mA\n[  134.062718] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e2)\n[  134.062771] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  135.068309] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ec)\n[  135.068363] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-246)mA\n[  136.073612] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fa)\n[  136.073664] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  136.543946] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #5 5\n[  137.078953] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e2)\n[  137.079013] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  138.084635] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 402)\n[  138.084688] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  139.090146] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ed)\n[  139.090199] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-246)mA\n[  140.095559] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f7)\n[  140.095611] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  141.100961] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d0)\n[  141.101015] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-239)mA\n[  142.106401] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  142.106454] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  142.847993] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  143.111888] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ed)\n[  143.111942] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-246)mA\n[  144.117193] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40c)\n[  144.117247] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  145.122643] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f7)\n[  145.122696] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  146.128264] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e7)\n[  146.128317] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  147.133577] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 411)\n[  147.133629] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  148.139025] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f4)\n[  148.139078] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  149.144588] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e5)\n[  149.144642] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  150.149973] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 403)\n[  150.150026] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  151.155175] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 405)\n[  151.155228] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  152.160858] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ec)\n[  152.160911] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-246)mA\n[  152.910394] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (54) data1 (118)\n[  152.911355] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3694), src (0x01)\n[  152.918861] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3694)\n[  152.918919] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2722) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  152.918961] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2722), ocv (37694)\n[  152.920360] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f0)\n[  152.920403] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  152.922811] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3fe), avg current (-250)mA\n[  152.922854] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2722)%\n[  152.924249] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (54) data1 (118)\n[  152.924969] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3694), src (0x01)\n[  152.926509] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1461)\n[  152.927303] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1461)\n[  152.929298] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (404)\n[  152.931465] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  152.934344] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (103) data1 (17)\n[  152.947576] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (171) data1 (3)\n[  152.947621] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2292)\n[  152.947665] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2719), previous soc (2722), diff (0), FG_mode(0)\n[  152.950177] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ff), avg current (-250)mA\n[  152.950220] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2719)%\n[  153.003088] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  153.010184] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3694)\n[  153.011641] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (54) data1 (118)\n[  153.012393] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3694), src (0x01)\n[  153.013841] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42b)\n[  153.013884] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  153.014658] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 27\n[  153.014710] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  153.033248] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  153.033308] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(27.1), raw_soc(27.1)\n[  153.033364] sec-battery battery: sec_bat_get_battery_info:Vnow(3694mV),Inow(-247mA),Imax(500mA),Ichg(500mA),SOC(27%),Tbat(380), Tusb(0), Tchg(404),Twpc(0)\n[  153.033414] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  153.034171] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(380)\n[  153.034212] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  153.034277] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  153.034335] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  153.034398] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  153.034518] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  153.034631] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  153.034959] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  153.166256] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42b)\n[  153.166308] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  153.823990] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  154.171944] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d0)\n[  154.171996] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-239)mA\n[  155.177232] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f8)\n[  155.177286] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  156.182367] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 406)\n[  156.182420] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  157.187880] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f4)\n[  157.187934] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  158.193249] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4fd)\n[  158.193302] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-312)mA\n[  159.198676] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41a)\n[  159.198730] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  160.204187] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f0)\n[  160.204241] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  161.209506] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fe)\n[  161.209559] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  162.214719] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 430)\n[  162.214773] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  163.220244] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d5)\n[  163.220298] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-240)mA\n[  164.225555] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ca)\n[  164.225609] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-237)mA\n[  164.831992] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  165.230982] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ee)\n[  165.231035] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-246)mA\n[  166.236503] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f3)\n[  166.236557] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  166.623948] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #6 6\n[  167.242036] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ed)\n[  167.242089] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-246)mA\n[  168.247420] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ee)\n[  168.247473] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-246)mA\n[  169.252830] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d3)\n[  169.252883] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-240)mA\n[  170.258285] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d0)\n[  170.258339] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-239)mA\n[  171.263587] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3df)\n[  171.263641] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-242)mA\n[  172.269023] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 429)\n[  172.269075] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  173.274403] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f3)\n[  173.274457] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  174.279896] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3da)\n[  174.279949] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-241)mA\n[  175.285259] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 408)\n[  175.285355] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  175.839948] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  176.290615] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3dd)\n[  176.290668] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-242)mA\n[  177.296126] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f5)\n[  177.296180] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  178.301381] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d1)\n[  178.301434] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-239)mA\n[  179.306688] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e3)\n[  179.306742] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  180.312273] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3cb)\n[  180.312326] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-238)mA\n[  181.317518] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e1)\n[  181.317571] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  182.322810] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  182.322864] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  183.037112] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (53) data1 (118)\n[  183.038007] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  183.045304] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  183.045361] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2719) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  183.045404] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2719), ocv (37693)\n[  183.046838] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f3)\n[  183.046880] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  183.049318] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ff), avg current (-250)mA\n[  183.049361] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2719)%\n[  183.050766] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (53) data1 (118)\n[  183.051521] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  183.053431] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1460)\n[  183.054667] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1460)\n[  183.056699] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (402)\n[  183.058884] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  183.061766] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (95) data1 (17)\n[  183.075027] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (168) data1 (3)\n[  183.075071] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2285)\n[  183.075116] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2714), previous soc (2719), diff (0), FG_mode(0)\n[  183.077655] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ff), avg current (-250)mA\n[  183.077698] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2714)%\n[  183.130628] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  183.137848] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  183.139321] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (53) data1 (118)\n[  183.140078] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  183.141540] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f3)\n[  183.141583] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  183.142364] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 27\n[  183.142417] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  183.161038] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  183.161096] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(27.1), raw_soc(27.1)\n[  183.161152] sec-battery battery: sec_bat_get_battery_info:Vnow(3693mV),Inow(-247mA),Imax(500mA),Ichg(500mA),SOC(27%),Tbat(380), Tusb(0), Tchg(402),Twpc(0)\n[  183.161202] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  183.161965] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(380)\n[  183.162004] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  183.162041] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  183.162092] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  183.162147] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  183.162210] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  183.162324] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  183.162652] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  183.328347] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f1)\n[  183.328399] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  184.333847] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 403)\n[  184.333900] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  185.339230] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e9)\n[  185.339283] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-245)mA\n[  186.344973] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 422)\n[  186.345026] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  186.847984] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  187.350368] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 425)\n[  187.350421] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  188.355915] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40d)\n[  188.355968] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  189.361305] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f1)\n[  189.361359] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  190.366604] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 410)\n[  190.366657] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  191.372128] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 427)\n[  191.372183] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  192.377505] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  192.377558] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  193.382808] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 416)\n[  193.382861] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  194.388476] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f4)\n[  194.388529] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  195.393887] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41e)\n[  195.393939] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  196.399201] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 409)\n[  196.399254] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  196.703842] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #7 7\n[  197.404937] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42c)\n[  197.404991] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  197.855982] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  198.410372] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 427)\n[  198.410425] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  199.415849] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e0)\n[  199.415902] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  200.421150] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ec)\n[  200.421203] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-246)mA\n[  201.426596] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e7)\n[  201.426650] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  202.432164] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 429)\n[  202.432218] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  203.437617] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 422)\n[  203.437670] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  204.442917] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3c2)\n[  204.442970] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-235)mA\n[  205.448401] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fb)\n[  205.448455] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  206.453722] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e5)\n[  206.453775] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  207.459037] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fe)\n[  207.459090] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  208.464476] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f3)\n[  208.464528] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  208.831942] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  209.469877] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 401)\n[  209.469930] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  210.475179] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3c9)\n[  210.475232] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-237)mA\n[  211.480825] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f2)\n[  211.480878] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  212.486252] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f9)\n[  212.486304] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  213.164804] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (52) data1 (118)\n[  213.165701] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  213.172847] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  213.172904] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2714) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  213.172947] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2714), ocv (37691)\n[  213.174355] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f5)\n[  213.174398] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  213.176844] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ff), avg current (-250)mA\n[  213.176887] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2714)%\n[  213.178294] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (52) data1 (118)\n[  213.179051] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  213.180885] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1459)\n[  213.181711] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1459)\n[  213.183735] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (401)\n[  213.185966] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  213.189282] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (88) data1 (17)\n[  213.203373] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (165) data1 (3)\n[  213.203419] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2277)\n[  213.203463] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2709), previous soc (2714), diff (0), FG_mode(0)\n[  213.206072] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 400), avg current (-250)mA\n[  213.206118] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2709)%\n[  213.258698] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  213.265765] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  213.267221] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (52) data1 (118)\n[  213.267975] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  213.269426] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 425)\n[  213.269469] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  213.270243] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 27\n[  213.270295] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  213.288774] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  213.288834] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(27.0), raw_soc(27.0)\n[  213.288889] sec-battery battery: sec_bat_get_battery_info:Vnow(3693mV),Inow(-248mA),Imax(500mA),Ichg(500mA),SOC(27%),Tbat(380), Tusb(0), Tchg(401),Twpc(0)\n[  213.288940] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  213.289697] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(380)\n[  213.289737] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  213.289773] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  213.289823] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  213.289879] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  213.289944] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  213.290055] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  213.290381] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  213.491542] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ed)\n[  213.491594] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-246)mA\n[  214.496943] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 400)\n[  214.496996] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  215.502363] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 411)\n[  215.502416] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  216.507941] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 413)\n[  216.507995] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  217.513327] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 406)\n[  217.513381] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  218.518628] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  218.518681] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  219.524153] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d8)\n[  219.524206] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-241)mA\n[  219.839987] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  220.529466] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 409)\n[  220.529519] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  221.534779] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3c6)\n[  221.534833] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-236)mA\n[  222.540409] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40b)\n[  222.540462] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  223.545700] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e3)\n[  223.545753] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  224.551126] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d8)\n[  224.551179] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-241)mA\n[  225.556755] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f3)\n[  225.556808] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  226.562140] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fe)\n[  226.562194] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  226.783931] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #8 8\n[  227.567519] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e3)\n[  227.567572] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  228.572931] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fe)\n[  228.572983] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  229.578342] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40c)\n[  229.578396] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  230.583631] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 401)\n[  230.583684] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  230.847979] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  231.589045] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 410)\n[  231.589099] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  232.594634] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e7)\n[  232.594687] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  233.600127] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3bd)\n[  233.600180] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-234)mA\n[  234.605440] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e2)\n[  234.605492] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  235.610742] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e1)\n[  235.610795] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  236.616305] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3be)\n[  236.616357] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-234)mA\n[  237.621623] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 404)\n[  237.621676] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  238.626852] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3cf)\n[  238.626906] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-239)mA\n[  239.632475] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 400)\n[  239.632527] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  240.637873] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f9)\n[  240.637926] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  241.643351] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3c6)\n[  241.643404] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-236)mA\n[  241.823980] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  242.648866] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40a)\n[  242.648919] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  243.292441] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (56) data1 (118)\n[  243.293331] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3694), src (0x01)\n[  243.300957] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3694)\n[  243.301015] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2709) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  243.301058] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2709), ocv (37690)\n[  243.302456] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e8)\n[  243.302499] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-245)mA\n[  243.304908] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ef), avg current (-246)mA\n[  243.304951] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2709)%\n[  243.306343] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (56) data1 (118)\n[  243.307064] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3694), src (0x01)\n[  243.308944] sec-battery battery: sec_bat_get_value_by_adc: Temp(381), Temp-ADC(1457)\n[  243.310181] sec-battery battery: sec_bat_get_value_by_adc: Temp(381), Temp-ADC(1457)\n[  243.312191] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (400)\n[  243.314354] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  243.317276] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (82) data1 (17)\n[  243.330502] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (162) data1 (3)\n[  243.330546] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2270)\n[  243.330591] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2706), previous soc (2709), diff (0), FG_mode(0)\n[  243.333105] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ef), avg current (-246)mA\n[  243.333149] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2706)%\n[  243.385737] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  243.392800] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3694)\n[  243.394255] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (56) data1 (118)\n[  243.395006] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3694), src (0x01)\n[  243.396529] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e8)\n[  243.396572] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-245)mA\n[  243.397346] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 27\n[  243.397398] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  243.415823] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  243.415881] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(27.0), raw_soc(27.0)\n[  243.415937] sec-battery battery: sec_bat_get_battery_info:Vnow(3694mV),Inow(-245mA),Imax(500mA),Ichg(500mA),SOC(27%),Tbat(381), Tusb(0), Tchg(400),Twpc(0)\n[  243.415988] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  243.416741] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(381)\n[  243.416780] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  243.416818] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  243.416869] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  243.416924] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  243.416988] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  243.417102] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  243.417433] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  243.654339] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ef)\n[  243.654392] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-246)mA\n[  244.659640] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3db)\n[  244.659694] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-241)mA\n[  245.665050] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 407)\n[  245.665103] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  246.670588] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d9)\n[  246.670642] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-241)mA\n[  247.676093] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e7)\n[  247.676145] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  248.681402] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d0)\n[  248.681455] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-239)mA\n[  249.686365] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fc)\n[  249.686418] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  250.691907] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40c)\n[  250.691960] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  251.697261] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3eb)\n[  251.697314] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-245)mA\n[  252.702737] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 416)\n[  252.702791] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  252.831946] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  253.708336] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d8)\n[  253.708389] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-241)mA\n[  254.713672] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 411)\n[  254.713725] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  255.718970] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 428)\n[  255.719023] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  256.724557] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f5)\n[  256.724610] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  256.863936] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #9 9\n[  257.729879] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fc)\n[  257.729931] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  258.735250] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40d)\n[  258.735303] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  259.740834] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40a)\n[  259.740887] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  260.746256] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d8)\n[  260.746309] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-241)mA\n[  261.751546] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fd)\n[  261.751599] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  262.757038] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41a)\n[  262.757092] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  263.762418] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f8)\n[  263.762471] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  263.839910] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  264.767919] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f0)\n[  264.767972] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  265.773299] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 423)\n[  265.773353] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  266.778676] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3b2)\n[  266.778729] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-231)mA\n[  267.784176] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f5)\n[  267.784229] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  268.789394] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 406)\n[  268.789447] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  269.794709] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 422)\n[  269.794762] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  270.800220] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fa)\n[  270.800272] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  271.805700] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40b)\n[  271.805754] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  272.810988] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40b)\n[  272.811041] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  273.419582] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (53) data1 (118)\n[  273.420482] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  273.428171] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  273.428228] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2706) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  273.428271] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2706), ocv (37689)\n[  273.429684] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d5)\n[  273.429726] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-240)mA\n[  273.432163] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ef), avg current (-246)mA\n[  273.432209] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2706)%\n[  273.433676] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (53) data1 (118)\n[  273.434433] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  273.436341] sec-battery battery: sec_bat_get_value_by_adc: Temp(381), Temp-ADC(1456)\n[  273.437579] sec-battery battery: sec_bat_get_value_by_adc: Temp(381), Temp-ADC(1456)\n[  273.439605] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (399)\n[  273.441793] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  273.444671] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (74) data1 (17)\n[  273.457932] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (160) data1 (3)\n[  273.457976] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2265)\n[  273.458020] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2701), previous soc (2706), diff (0), FG_mode(0)\n[  273.460562] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ef), avg current (-246)mA\n[  273.460605] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2701)%\n[  273.513218] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  273.520369] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  273.521840] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (53) data1 (118)\n[  273.522596] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  273.524062] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d5)\n[  273.524105] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-240)mA\n[  273.524886] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 27\n[  273.524938] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  273.543500] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  273.543559] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(27.0), raw_soc(27.0)\n[  273.543614] sec-battery battery: sec_bat_get_battery_info:Vnow(3693mV),Inow(-240mA),Imax(500mA),Ichg(500mA),SOC(27%),Tbat(381), Tusb(0), Tchg(399),Twpc(0)\n[  273.543665] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  273.544431] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(381)\n[  273.544472] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  273.544509] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  273.544560] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  273.544615] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  273.544679] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  273.544792] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  273.545122] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  273.816511] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f9)\n[  273.816563] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  274.821918] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e0)\n[  274.821971] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  274.851944] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  275.827218] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42b)\n[  275.827271] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  276.832825] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fa)\n[  276.832878] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  277.838313] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f3)\n[  277.838366] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  278.843602] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[  278.843656] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  279.849176] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 403)\n[  279.849230] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  280.854519] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3dd)\n[  280.854571] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-242)mA\n[  281.860021] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fd)\n[  281.860074] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  282.865342] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40a)\n[  282.865395] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  283.870637] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 410)\n[  283.870690] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  284.876296] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e7)\n[  284.876349] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  285.855989] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  285.881615] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f5)\n[  285.881668] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  286.886989] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f3)\n[  286.887042] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  286.943942] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #10 10\n[  287.892524] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3df)\n[  287.892577] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-242)mA\n[  288.897940] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42f)\n[  288.897993] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  289.903258] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3dd)\n[  289.903312] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-242)mA\n[  290.908996] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3eb)\n[  290.909049] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-245)mA\n[  291.914477] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 401)\n[  291.914530] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  292.919903] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e1)\n[  292.919957] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  293.925215] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3cb)\n[  293.925268] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-238)mA\n[  294.930627] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d8)\n[  294.930680] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-241)mA\n[  295.936040] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40f)\n[  295.936093] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  296.831946] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  296.941336] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 410)\n[  296.941389] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  297.946641] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e7)\n[  297.946695] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  298.952324] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 412)\n[  298.952377] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  299.957619] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 405)\n[  299.957671] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  300.962822] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40b)\n[  300.962875] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  301.990480]  1436     3.2 C/MHz     -1 mW   -0.1 J   -2010.3 I/mJ   208.9 s\n                546: \n[  303.547377] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (50) data1 (118)\n[  303.548301] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  303.556239] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  303.556285] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2701) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  303.556321] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2701), ocv (37688)\n[  303.557684] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ec)\n[  303.557719] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-246)mA\n[  303.560067] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ef), avg current (-246)mA\n[  303.560103] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2701)%\n[  303.561486] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (50) data1 (118)\n[  303.562210] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  303.564052] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1455)\n[  303.564953] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1455)\n[  303.567121] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (398)\n[  303.569232] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  303.572008] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (68) data1 (17)\n[  303.585538] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (157) data1 (3)\n[  303.585575] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2258)\n[  303.585612] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2697), previous soc (2701), diff (0), FG_mode(0)\n[  303.588050] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ef), avg current (-246)mA\n[  303.588086] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2697)%\n[  303.641463] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  303.649006] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  303.650416] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (50) data1 (118)\n[  303.651139] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  303.652549] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e5)\n[  303.652585] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  303.653331] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 27\n[  303.653373] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  303.671348] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  303.671396] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.9), raw_soc(26.9)\n[  303.671443] sec-battery battery: sec_bat_get_battery_info:Vnow(3693mV),Inow(-246mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(382), Tusb(0), Tchg(398),Twpc(0)\n[  303.671486] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  303.672218] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(382)\n[  303.672250] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  303.672281] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  303.672324] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  303.672370] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  303.672423] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  303.672517] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  303.672676] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  306.101476] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3db)\n[  306.101521] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-241)mA\n[  307.106407] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e7)\n[  307.106451] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  307.839978] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  308.111258] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d4)\n[  308.111304] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-240)mA\n[  309.116340] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3af)\n[  309.116385] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-231)mA\n[  311.129972] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40c)\n[  311.130017] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  312.135088] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40a)\n[  312.135133] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  313.140317] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 432)\n[  313.140362] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[  314.145267] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3df)\n[  314.145312] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-242)mA\n[  315.150298] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d3)\n[  315.150343] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-240)mA\n[  316.155161] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fe)\n[  316.155206] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  317.023917] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #11 11\n[  317.160372] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f7)\n[  317.160416] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  318.165334] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 408)\n[  318.165379] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  318.847922] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  319.170298] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e4)\n[  319.170344] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  320.175228] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f0)\n[  320.175273] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  321.180446] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40d)\n[  321.180490] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  322.185443] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 428)\n[  322.185489] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  323.190458] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 422)\n[  323.190503] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  324.195458] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3dc)\n[  324.195503] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-242)mA\n[  325.200560] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 412)\n[  325.200605] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  326.205534] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d2)\n[  326.205579] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-239)mA\n[  327.210487] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42c)\n[  327.210564] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  328.215672] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 411)\n[  328.215716] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  329.220752] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fa)\n[  329.220796] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  329.823961] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  330.225790] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fb)\n[  330.225835] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  331.230741] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 428)\n[  331.230786] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  332.235863] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40b)\n[  332.235908] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  333.240878] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3df)\n[  333.240923] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-242)mA\n[  333.674746] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (56) data1 (118)\n[  333.675464] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3694), src (0x01)\n[  333.682157] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3694)\n[  333.682201] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2697) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  333.682237] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2697), ocv (37687)\n[  333.683611] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3bd)\n[  333.683646] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-234)mA\n[  333.685968] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ef), avg current (-246)mA\n[  333.686003] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2697)%\n[  333.687338] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (56) data1 (118)\n[  333.688132] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3694), src (0x01)\n[  333.689935] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1455)\n[  333.690711] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1455)\n[  333.692748] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (397)\n[  333.694869] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  333.697662] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (60) data1 (17)\n[  333.710815] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (154) data1 (3)\n[  333.710851] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2250)\n[  333.710888] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2692), previous soc (2697), diff (0), FG_mode(0)\n[  333.713344] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ef), avg current (-246)mA\n[  333.713379] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2692)%\n[  333.765851] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  333.772815] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3694)\n[  333.774235] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (56) data1 (118)\n[  333.774963] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3694), src (0x01)\n[  333.776379] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3bd)\n[  333.776415] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-234)mA\n[  333.777165] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  333.777208] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  333.795297] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  333.795347] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.9), raw_soc(26.9)\n[  333.795394] sec-battery battery: sec_bat_get_battery_info:Vnow(3694mV),Inow(-234mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(382), Tusb(0), Tchg(397),Twpc(0)\n[  333.795436] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  333.796170] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(382)\n[  333.796204] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  333.796234] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  333.796278] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  333.796324] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  333.796377] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  333.796474] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  333.796761] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  334.245845] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 414)\n[  334.245889] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  335.250776] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 424)\n[  335.250821] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  336.255920] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42c)\n[  336.255966] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  337.260873] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f6)\n[  337.260918] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  338.265827] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 414)\n[  338.265871] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  339.270831] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3eb)\n[  339.270875] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-245)mA\n[  340.275965] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e7)\n[  340.276009] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  340.831931] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  341.280908] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 415)\n[  341.280953] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  342.285985] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3c8)\n[  342.286029] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-237)mA\n[  343.290917] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3bb)\n[  343.290961] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-234)mA\n[  344.296061] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ed)\n[  344.296106] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-246)mA\n[  345.301010] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f6)\n[  345.301054] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  346.306023] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 408)\n[  346.306068] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  347.103918] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #12 12\n[  347.310965] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 410)\n[  347.311010] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  348.316036] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d8)\n[  348.316080] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-241)mA\n[  349.320978] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e5)\n[  349.321023] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  350.325995] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f3)\n[  350.326040] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  351.330930] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 403)\n[  351.330975] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  351.839958] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  352.336077] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e6)\n[  352.336121] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  353.341022] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e9)\n[  353.341067] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-245)mA\n[  354.346185] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e3)\n[  354.346230] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  355.351116] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f9)\n[  355.351161] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  356.356249] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3db)\n[  356.356294] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-241)mA\n[  357.361309] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 416)\n[  357.361353] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  358.366310] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 408)\n[  358.366355] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  359.371255] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 408)\n[  359.371300] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  360.376430] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 422)\n[  360.376475] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  361.381375] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 414)\n[  361.381420] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  362.386444] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 412)\n[  362.386488] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  362.847933] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  363.391385] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 413)\n[  363.391429] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  363.798657] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (45) data1 (118)\n[  363.799508] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3692), src (0x01)\n[  363.806859] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  363.806908] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2692) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  363.806943] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2692), ocv (37686)\n[  363.808305] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3eb)\n[  363.808340] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-245)mA\n[  363.810682] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ef), avg current (-246)mA\n[  363.810718] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2692)%\n[  363.812075] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (45) data1 (118)\n[  363.812774] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3692), src (0x01)\n[  363.814546] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1454)\n[  363.815692] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1454)\n[  363.817730] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (397)\n[  363.819828] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  363.822596] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (53) data1 (17)\n[  363.835787] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (151) data1 (3)\n[  363.835827] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2243)\n[  363.835864] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2688), previous soc (2692), diff (0), FG_mode(0)\n[  363.838300] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ef), avg current (-246)mA\n[  363.838336] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2688)%\n[  363.890788] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  363.897660] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  363.899068] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (45) data1 (118)\n[  363.899847] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3692), src (0x01)\n[  363.901262] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 427)\n[  363.901347] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  363.902095] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  363.902138] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  363.920113] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  363.920163] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.8), raw_soc(26.8)\n[  363.920210] sec-battery battery: sec_bat_get_battery_info:Vnow(3692mV),Inow(-245mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(382), Tusb(0), Tchg(397),Twpc(0)\n[  363.920253] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  363.920982] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(382)\n[  363.921014] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  363.921045] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  363.921088] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  363.921134] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  363.921187] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  363.921283] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  363.921568] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  364.396439] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[  364.396484] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  365.401370] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fb)\n[  365.401415] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  366.406379] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40f)\n[  366.406424] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  367.411300] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 409)\n[  367.411345] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  368.416604] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 407)\n[  368.416649] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  369.421562] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e2)\n[  369.421607] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  370.426517] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fb)\n[  370.426562] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  371.431500] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 416)\n[  371.431545] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  372.436541] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f3)\n[  372.436587] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  373.441491] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40f)\n[  373.441536] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  373.855923] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  374.446352] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41e)\n[  374.446397] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  375.451275] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 413)\n[  375.451320] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  376.456024] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[  376.456069] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  377.183935] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #13 13\n[  377.460945] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 416)\n[  377.460991] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  378.465813] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40c)\n[  378.465858] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  379.470740] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 406)\n[  379.470785] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  380.475478] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ea)\n[  380.475522] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-245)mA\n[  381.480544] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 410)\n[  381.480589] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  382.485551] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 417)\n[  382.485596] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  383.490429] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 410)\n[  383.490473] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  384.495349] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40f)\n[  384.495394] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  384.831931] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  385.500458] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3eb)\n[  385.500503] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-245)mA\n[  386.505323] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  386.505367] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  387.510344] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f7)\n[  387.510389] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  388.515261] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 413)\n[  388.515305] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  389.520322] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41d)\n[  389.520366] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  390.525268] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41d)\n[  390.525313] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  391.530288] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f3)\n[  391.530332] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  392.535236] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 409)\n[  392.535280] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  393.540372] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41e)\n[  393.540418] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  393.923483] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (48) data1 (118)\n[  393.924345] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  393.931665] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  393.931713] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2688) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  393.931828] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2688), ocv (37685)\n[  393.933208] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[  393.933244] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  393.935610] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3f0), avg current (-247)mA\n[  393.935645] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2688)%\n[  393.937013] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (48) data1 (118)\n[  393.937717] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  393.939518] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1453)\n[  393.940668] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1453)\n[  393.942627] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (397)\n[  393.944742] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  393.947555] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (45) data1 (17)\n[  393.960712] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (148) data1 (3)\n[  393.960748] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2236)\n[  393.960785] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2683), previous soc (2688), diff (0), FG_mode(0)\n[  393.963244] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3f0), avg current (-247)mA\n[  393.963328] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2683)%\n[  394.015816] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  394.022732] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  394.024152] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (48) data1 (118)\n[  394.024879] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  394.026295] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[  394.026331] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  394.027080] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  394.027122] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  394.045205] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  394.045256] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.8), raw_soc(26.8)\n[  394.045303] sec-battery battery: sec_bat_get_battery_info:Vnow(3693mV),Inow(-257mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(382), Tusb(0), Tchg(397),Twpc(0)\n[  394.045347] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  394.046081] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(382)\n[  394.046115] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  394.046146] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  394.046188] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  394.046234] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  394.046287] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  394.046417] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  394.046759] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  394.545248] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 403)\n[  394.545292] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  395.550358] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f7)\n[  395.550403] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  395.839924] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  396.555280] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 428)\n[  396.555325] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  397.560402] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ff)\n[  397.560447] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  398.565418] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 418)\n[  398.565463] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  399.570365] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ef)\n[  399.570410] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-246)mA\n[  400.575301] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41d)\n[  400.575346] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  401.580445] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 418)\n[  401.580491] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  402.585376] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 431)\n[  402.585420] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  403.590412] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[  403.590458] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  404.595343] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 404)\n[  404.595388] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  405.600494] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41d)\n[  405.600539] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  406.605382] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40d)\n[  406.605427] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  406.847958] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  407.263906] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #14 14\n[  407.610394] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 415)\n[  407.610439] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  408.615321] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 425)\n[  408.615366] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  409.620459] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41f)\n[  409.620504] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  410.625398] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d9)\n[  410.625444] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-241)mA\n[  411.630350] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e3)\n[  411.630394] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  412.635326] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  412.635370] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  413.640487] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42a)\n[  413.640532] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  414.645434] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3cb)\n[  414.645479] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-238)mA\n[  415.650436] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d7)\n[  415.650481] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-240)mA\n[  416.655361] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[  416.655406] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  417.660479] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d0)\n[  417.660524] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-239)mA\n[  417.823959] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  418.665416] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d6)\n[  418.665462] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-240)mA\n[  419.670364] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40f)\n[  419.670409] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  420.675279] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 401)\n[  420.675325] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  421.680331] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d1)\n[  421.680376] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-239)mA\n[  422.685273] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3de)\n[  422.685318] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-242)mA\n[  423.690305] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e5)\n[  423.690351] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  424.048710] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (47) data1 (118)\n[  424.049416] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  424.057050] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  424.057099] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2683) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  424.057134] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2683), ocv (37684)\n[  424.058512] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 400)\n[  424.058549] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  424.060952] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3f0), avg current (-247)mA\n[  424.060988] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2683)%\n[  424.062355] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (47) data1 (118)\n[  424.063059] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  424.064841] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1453)\n[  424.065985] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1453)\n[  424.067948] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (396)\n[  424.070072] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  424.072860] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (39) data1 (17)\n[  424.086012] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (145) data1 (3)\n[  424.086048] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2229)\n[  424.086085] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2680), previous soc (2683), diff (0), FG_mode(0)\n[  424.088539] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3f1), avg current (-247)mA\n[  424.088575] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2680)%\n[  424.141054] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  424.147995] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  424.149417] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (47) data1 (118)\n[  424.150147] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  424.151560] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 449)\n[  424.151596] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[  424.152348] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  424.152390] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  424.170415] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  424.170464] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.8), raw_soc(26.8)\n[  424.170511] sec-battery battery: sec_bat_get_battery_info:Vnow(3693mV),Inow(-250mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(382), Tusb(0), Tchg(396),Twpc(0)\n[  424.170554] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  424.171289] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(382)\n[  424.171323] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  424.171354] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  424.171395] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  424.171441] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  424.171493] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  424.171590] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  424.171930] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  424.694869] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f4)\n[  424.694913] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  425.699888] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 416)\n[  425.699934] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  426.704894] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fb)\n[  426.704939] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  427.709740] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  427.709785] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  428.714674] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 422)\n[  428.714719] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  428.831929] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  429.719811] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 413)\n[  429.719855] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  430.724797] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 410)\n[  430.724843] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  431.729737] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42f)\n[  431.729782] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  432.734607] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ec)\n[  432.734652] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-246)mA\n[  433.739830] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3dd)\n[  433.739876] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-242)mA\n[  434.744773] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d8)\n[  434.744818] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-241)mA\n[  435.749688] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 421)\n[  435.749734] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  436.754633] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 407)\n[  436.754678] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  437.343886] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #15 15\n[  437.759659] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  437.759703] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  438.764710] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 415)\n[  438.764760] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  439.769705] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d8)\n[  439.769750] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-241)mA\n[  439.839925] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  440.774568] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40b)\n[  440.774614] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  441.779641] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e3)\n[  441.779686] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  442.784762] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 407)\n[  442.784807] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  443.789708] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 410)\n[  443.789753] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  444.794693] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e6)\n[  444.794739] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  445.799851] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ef)\n[  445.799896] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-246)mA\n[  446.804799] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 411)\n[  446.804844] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  447.809685] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 413)\n[  447.809730] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  448.814542] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e0)\n[  448.814587] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  449.819711] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 400)\n[  449.819872] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  450.824841] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 412)\n[  450.824885] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  450.847888] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  451.829861] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 403)\n[  451.829906] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  452.834712] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f8)\n[  452.834757] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  453.839974] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 403)\n[  453.840019] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  454.173907] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (51) data1 (118)\n[  454.174827] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  454.181789] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  454.181839] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2680) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  454.181874] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2680), ocv (37683)\n[  454.183247] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d6)\n[  454.183282] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-240)mA\n[  454.185646] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ef), avg current (-246)mA\n[  454.185681] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2680)%\n[  454.187070] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (51) data1 (118)\n[  454.188074] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  454.189696] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1453)\n[  454.190473] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1453)\n[  454.192460] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (396)\n[  454.194529] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  454.197676] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (31) data1 (17)\n[  454.211675] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (142) data1 (3)\n[  454.211715] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2221)\n[  454.211806] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2675), previous soc (2680), diff (0), FG_mode(0)\n[  454.214278] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ef), avg current (-246)mA\n[  454.214314] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2675)%\n[  454.266790] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  454.273746] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  454.275166] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (51) data1 (118)\n[  454.275897] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3693), src (0x01)\n[  454.277313] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d6)\n[  454.277349] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-240)mA\n[  454.278102] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  454.278145] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  454.296207] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  454.296257] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.7), raw_soc(26.7)\n[  454.296305] sec-battery battery: sec_bat_get_battery_info:Vnow(3693mV),Inow(-240mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(382), Tusb(0), Tchg(396),Twpc(0)\n[  454.296348] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  454.297082] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(382)\n[  454.297116] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  454.297146] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  454.297189] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  454.297235] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  454.297290] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  454.297386] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  454.297667] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  454.844857] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f2)\n[  454.844901] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  455.849885] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 419)\n[  455.849931] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  456.854671] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fc)\n[  456.854716] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  457.859842] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40a)\n[  457.859887] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  458.864775] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ff)\n[  458.864820] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  459.869702] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f1)\n[  459.869748] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  460.874572] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ff)\n[  460.874617] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  461.855959] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  461.879796] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40f)\n[  461.879840] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  462.884771] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e6)\n[  462.884815] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  463.889743] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40f)\n[  463.889788] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  464.894604] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 413)\n[  464.894650] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  465.899841] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e9)\n[  465.899887] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-245)mA\n[  466.904781] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d6)\n[  466.904826] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-240)mA\n[  467.423915] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #16 16\n[  467.909814] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3eb)\n[  467.909860] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-245)mA\n[  468.914781] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f0)\n[  468.914826] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  469.919989] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 401)\n[  469.920033] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  470.924927] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41f)\n[  470.924972] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  471.930056] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42c)\n[  471.930101] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  472.831932] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  472.934910] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40c)\n[  472.934955] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  473.940020] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f3)\n[  473.940065] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  474.945039] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 413)\n[  474.945085] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  475.950074] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  475.950120] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  476.955061] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 400)\n[  476.955107] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  477.960289] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 427)\n[  477.960334] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  478.965230] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41f)\n[  478.965276] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  479.970235] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 429)\n[  479.970280] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  480.975087] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 400)\n[  480.975132] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  481.990345]  1755     3.2 C/MHz      8 mW    1.4 J   213.2 I/mJ   171.0 s\n                676: \n[  483.839978] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  484.299673] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (54) data1 (118)\n[  484.300559] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3694), src (0x01)\n[  484.308349] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3694)\n[  484.308388] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2675) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  484.308417] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2675), ocv (37682)\n[  484.309747] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fc)\n[  484.309776] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  484.312072] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3f1), avg current (-247)mA\n[  484.312101] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2675)%\n[  484.313427] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (54) data1 (118)\n[  484.314128] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3694), src (0x01)\n[  484.315809] sec-battery battery: sec_bat_get_value_by_adc: Temp(383), Temp-ADC(1452)\n[  484.316660] sec-battery battery: sec_bat_get_value_by_adc: Temp(383), Temp-ADC(1452)\n[  484.318740] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (396)\n[  484.320995] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  484.323838] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (25) data1 (17)\n[  484.337185] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (140) data1 (3)\n[  484.337216] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2216)\n[  484.337246] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2671), previous soc (2675), diff (0), FG_mode(0)\n[  484.339614] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3f1), avg current (-247)mA\n[  484.339643] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2671)%\n[  484.392639] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  484.399603] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3694)\n[  484.400973] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (54) data1 (118)\n[  484.401670] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3694), src (0x01)\n[  484.403033] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fc)\n[  484.403062] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  484.403838] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  484.403872] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  484.421301] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  484.421341] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.7), raw_soc(26.7)\n[  484.421379] sec-battery battery: sec_bat_get_battery_info:Vnow(3694mV),Inow(-250mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(383), Tusb(0), Tchg(396),Twpc(0)\n[  484.421416] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  484.422117] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(383)\n[  484.422143] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  484.422169] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  484.422204] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  484.422242] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  484.422287] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  484.422367] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  484.422501] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  486.100676] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3a8)\n[  486.100714] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-229)mA\n[  487.105244] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3bb)\n[  487.105282] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-234)mA\n[  488.109964] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3cc)\n[  488.110001] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-238)mA\n[  489.114550] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e5)\n[  489.114587] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  491.126815] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ff)\n[  491.126852] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  492.131721] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40c)\n[  492.131821] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  493.136393] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  493.136431] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  494.140966] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40f)\n[  494.141003] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  494.847928] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  495.145702] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40d)\n[  495.145739] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  496.150280] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fe)\n[  496.150317] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  496.695832] thermal thermal_zone0: [TMU] last_temperature=43000, current_temperature=43000\n[  497.154837] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ff)\n[  497.154874] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  497.503890] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #17 17\n[  498.159504] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fb)\n[  498.159541] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  499.164219] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 429)\n[  499.164256] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  500.168786] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 400)\n[  500.168823] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  501.173288] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[  501.173325] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  502.178003] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 438)\n[  502.178041] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  503.182558] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40a)\n[  503.182596] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  504.187221] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f6)\n[  504.187258] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  505.192031] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f3)\n[  505.192068] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  505.823925] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  506.196356] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3dd)\n[  506.196393] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-242)mA\n[  507.201015] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f0)\n[  507.201051] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  508.205642] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d7)\n[  508.205680] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-240)mA\n[  509.210225] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e7)\n[  509.210262] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  510.214947] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 416)\n[  510.214983] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  511.219687] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e7)\n[  511.219724] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  512.224309] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41f)\n[  512.224345] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  513.228931] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f9)\n[  513.228968] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  514.233516] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ec)\n[  514.233553] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-246)mA\n[  514.424335] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (43) data1 (118)\n[  514.425158] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3692), src (0x01)\n[  514.431984] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  514.432024] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2671) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  514.432054] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2671), ocv (37681)\n[  514.433397] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  514.433426] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  514.435785] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3f0), avg current (-247)mA\n[  514.435814] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2671)%\n[  514.437157] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (43) data1 (118)\n[  514.437841] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3692), src (0x01)\n[  514.439538] sec-battery battery: sec_bat_get_value_by_adc: Temp(383), Temp-ADC(1452)\n[  514.440551] sec-battery battery: sec_bat_get_value_by_adc: Temp(383), Temp-ADC(1452)\n[  514.442455] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (395)\n[  514.444518] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  514.447241] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (17) data1 (17)\n[  514.460306] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (137) data1 (3)\n[  514.460336] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2209)\n[  514.460366] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2666), previous soc (2671), diff (0), FG_mode(0)\n[  514.462776] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3f0), avg current (-247)mA\n[  514.462806] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2666)%\n[  514.515228] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  514.521989] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  514.523370] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (43) data1 (118)\n[  514.524077] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3692), src (0x01)\n[  514.525452] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  514.525480] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  514.526205] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  514.526241] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  514.543919] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  514.543959] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.6), raw_soc(26.6)\n[  514.543998] sec-battery battery: sec_bat_get_battery_info:Vnow(3692mV),Inow(-254mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(383), Tusb(0), Tchg(395),Twpc(0)\n[  514.544034] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  514.544745] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(383)\n[  514.544772] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  514.544797] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  514.544833] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  514.544870] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  514.544915] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  514.544995] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  514.545238] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  515.238142] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 401)\n[  515.238179] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  516.242704] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42a)\n[  516.242741] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  516.831925] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  517.247501] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43e)\n[  517.247539] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[  518.252149] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 406)\n[  518.252187] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  519.256710] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 411)\n[  519.256748] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  520.261381] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f8)\n[  520.261419] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  521.265991] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 407)\n[  521.266028] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  522.270551] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 414)\n[  522.270588] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  523.275094] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40d)\n[  523.275132] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  524.279844] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 425)\n[  524.279882] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  525.284401] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  525.284438] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  526.288908] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3c1)\n[  526.288945] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-235)mA\n[  527.293519] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 409)\n[  527.293556] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  527.583894] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #18 18\n[  527.839899] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  528.298193] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e4)\n[  528.298230] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  529.302852] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 400)\n[  529.302890] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  530.307566] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41c)\n[  530.307604] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  531.312191] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f8)\n[  531.312229] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  532.316882] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 414)\n[  532.316919] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  533.321447] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f3)\n[  533.321484] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  534.326058] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 421)\n[  534.326095] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  535.330559] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41e)\n[  535.330596] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  536.335117] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f3)\n[  536.335154] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  537.339859] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f8)\n[  537.339897] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  538.344436] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 423)\n[  538.344473] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  538.847894] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  539.349016] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40c)\n[  539.349054] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  540.353691] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 438)\n[  540.353728] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  541.358263] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40a)\n[  541.358301] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  542.362863] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 410)\n[  542.362900] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  543.367590] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 413)\n[  543.367628] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  544.372208] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 407)\n[  544.372245] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  544.547087] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (44) data1 (118)\n[  544.547913] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3692), src (0x01)\n[  544.554732] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  544.554770] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2666) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  544.554799] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2666), ocv (37679)\n[  544.556161] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  544.556194] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  544.558511] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 401), avg current (-251)mA\n[  544.558539] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2666)%\n[  544.559878] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (44) data1 (118)\n[  544.560563] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3692), src (0x01)\n[  544.562257] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1453)\n[  544.563195] sec-battery battery: sec_bat_get_value_by_adc: Temp(383), Temp-ADC(1452)\n[  544.565151] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (395)\n[  544.567213] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  544.569935] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (10) data1 (17)\n[  544.583003] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (134) data1 (3)\n[  544.583033] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2202)\n[  544.583063] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2662), previous soc (2666), diff (0), FG_mode(0)\n[  544.585451] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 401), avg current (-251)mA\n[  544.585480] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2662)%\n[  544.637884] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  544.644645] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  544.646024] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (44) data1 (118)\n[  544.646728] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3692), src (0x01)\n[  544.648105] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  544.648134] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  544.648858] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  544.648893] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  544.666525] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  544.666566] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.6), raw_soc(26.6)\n[  544.666605] sec-battery battery: sec_bat_get_battery_info:Vnow(3692mV),Inow(-254mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(382), Tusb(0), Tchg(395),Twpc(0)\n[  544.666641] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  544.667351] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(382)\n[  544.667378] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  544.667403] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  544.667438] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  544.667477] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  544.667520] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  544.667602] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  544.667890] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  545.376987] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  545.377023] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  546.381609] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41f)\n[  546.381645] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  547.386172] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 401)\n[  547.386209] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  548.390721] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41a)\n[  548.390758] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  549.395534] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40a)\n[  549.395571] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  549.855920] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  550.400184] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 410)\n[  550.400221] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  551.404686] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 424)\n[  551.404722] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  552.409266] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 410)\n[  552.409304] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  553.413915] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ff)\n[  553.413952] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  554.418563] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 410)\n[  554.418600] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  555.423113] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f1)\n[  555.423150] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  556.427919] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40d)\n[  556.427956] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  557.432582] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f3)\n[  557.432619] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  557.663825] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #19 19\n[  558.437163] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 401)\n[  558.437200] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  559.441816] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 400)\n[  559.441853] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  560.446427] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40f)\n[  560.446463] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  560.831878] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  561.450987] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 413)\n[  561.451024] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  562.455808] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 407)\n[  562.455846] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  563.460491] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 429)\n[  563.460528] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  564.465071] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 400)\n[  564.465109] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  565.469703] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d0)\n[  565.469741] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-239)mA\n[  566.474272] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 414)\n[  566.474310] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  567.478885] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f9)\n[  567.478923] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  568.483632] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 421)\n[  568.483669] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  569.488267] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 418)\n[  569.488304] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  570.492930] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 426)\n[  570.492967] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  571.497506] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 442)\n[  571.497542] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[  571.839915] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  572.502204] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 431)\n[  572.502241] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  573.506886] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 412)\n[  573.506923] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  574.511605] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 419)\n[  574.511642] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  574.669891] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (43) data1 (118)\n[  574.670715] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3692), src (0x01)\n[  574.677544] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  574.677583] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2662) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  574.677613] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2662), ocv (37678)\n[  574.678955] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d2)\n[  574.678984] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-239)mA\n[  574.681302] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ff), avg current (-250)mA\n[  574.681330] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2662)%\n[  574.682668] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (43) data1 (118)\n[  574.683353] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3692), src (0x01)\n[  574.684791] sec-battery battery: sec_bat_get_value_by_adc: Temp(383), Temp-ADC(1452)\n[  574.685544] sec-battery battery: sec_bat_get_value_by_adc: Temp(383), Temp-ADC(1452)\n[  574.687439] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (395)\n[  574.689499] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  574.692221] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (2) data1 (17)\n[  574.705298] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (131) data1 (3)\n[  574.705329] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2194)\n[  574.705360] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2657), previous soc (2662), diff (0), FG_mode(0)\n[  574.707781] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ff), avg current (-250)mA\n[  574.707811] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2657)%\n[  574.760216] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  574.766978] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  574.768356] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (43) data1 (118)\n[  574.769061] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3692), src (0x01)\n[  574.770440] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d2)\n[  574.770468] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-239)mA\n[  574.771191] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  574.771225] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  574.788820] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  574.788860] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.5), raw_soc(26.5)\n[  574.788898] sec-battery battery: sec_bat_get_battery_info:Vnow(3692mV),Inow(-239mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(383), Tusb(0), Tchg(395),Twpc(0)\n[  574.788935] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  574.789644] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(383)\n[  574.789671] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  574.789697] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  574.789732] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  574.789770] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  574.789814] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  574.789896] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  574.790135] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  575.516266] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e2)\n[  575.516302] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  576.520773] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 402)\n[  576.520810] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  577.525338] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 423)\n[  577.525375] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  578.530018] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41a)\n[  578.530056] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  579.534509] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 421)\n[  579.534546] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  580.539057] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42e)\n[  580.539094] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  581.543857] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  581.543894] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  582.548272] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 400)\n[  582.548310] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  582.847887] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  583.552821] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40f)\n[  583.552858] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  584.557388] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 432)\n[  584.557426] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[  585.562112] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44c)\n[  585.562149] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-269)mA\n[  586.566663] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40c)\n[  586.566701] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  587.571262] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41f)\n[  587.571299] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  587.743820] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #20 20\n[  588.576062] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 429)\n[  588.576098] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  589.580689] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42c)\n[  589.580727] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  590.585261] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  590.585299] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  591.589836] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f3)\n[  591.589873] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  592.594393] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 404)\n[  592.594431] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  593.598936] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41c)\n[  593.598973] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  593.823917] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  594.603736] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40a)\n[  594.603846] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  595.608468] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fa)\n[  595.608505] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  596.613027] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e5)\n[  596.613065] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  597.617663] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40b)\n[  597.617701] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  598.622361] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fa)\n[  598.622398] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  599.626961] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41a)\n[  599.626999] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  600.631698] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 430)\n[  600.631845] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  601.636316] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e5)\n[  601.636353] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  602.640944] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42a)\n[  602.640982] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  603.645522] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fd)\n[  603.645559] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  604.650101] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3b9)\n[  604.650138] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-233)mA\n[  604.791970] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (36) data1 (118)\n[  604.792796] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3691), src (0x01)\n[  604.799622] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3690)\n[  604.799661] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2657) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  604.799690] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2657), ocv (37677)\n[  604.801033] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40a)\n[  604.801062] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  604.803376] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ff), avg current (-250)mA\n[  604.803405] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2657)%\n[  604.804744] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (36) data1 (118)\n[  604.805429] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3691), src (0x01)\n[  604.806848] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1453)\n[  604.807577] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1453)\n[  604.809470] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (395)\n[  604.811533] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  604.814287] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (252) data1 (16)\n[  604.827351] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (129) data1 (3)\n[  604.827380] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2189)\n[  604.827409] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2653), previous soc (2657), diff (0), FG_mode(0)\n[  604.829756] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3ff), avg current (-250)mA\n[  604.829786] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2653)%\n[  604.839816] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  604.882193] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  604.888955] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3690)\n[  604.890336] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (36) data1 (118)\n[  604.891041] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3691), src (0x01)\n[  604.892465] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40a)\n[  604.892494] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  604.893221] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  604.893256] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  604.910872] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  604.910912] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.5), raw_soc(26.5)\n[  604.910951] sec-battery battery: sec_bat_get_battery_info:Vnow(3691mV),Inow(-253mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(382), Tusb(0), Tchg(395),Twpc(0)\n[  604.910989] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  604.911698] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(382)\n[  604.911725] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  604.911809] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  604.911845] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  604.911883] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  604.911928] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  604.912010] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  604.912243] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  605.654606] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 416)\n[  605.654641] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  606.659149] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42b)\n[  606.659187] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  607.663856] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43f)\n[  607.663893] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[  608.668433] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fa)\n[  608.668471] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  609.672998] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42a)\n[  609.673035] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  610.677771] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 420)\n[  610.677808] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  611.682347] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[  611.682384] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  612.686907] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 417)\n[  612.686946] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  613.691837] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41e)\n[  613.691874] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  614.696419] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 422)\n[  614.696457] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  615.700888] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 434)\n[  615.700925] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[  615.839863] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  616.705588] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d7)\n[  616.705625] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-240)mA\n[  617.710151] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40b)\n[  617.710188] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  617.823901] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #21 21\n[  618.714704] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 421)\n[  618.714740] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  619.719391] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 434)\n[  619.719453] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[  620.724139] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 405)\n[  620.724177] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  621.728709] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e9)\n[  621.728746] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-245)mA\n[  622.733283] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41d)\n[  622.733320] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  623.738063] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f8)\n[  623.738100] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  624.742618] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 421)\n[  624.742656] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  625.747162] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 421)\n[  625.747200] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  626.751844] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 406)\n[  626.751880] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  626.851896] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  627.756402] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 411)\n[  627.756439] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  628.767201]  2175     3.2 C/MHz     18 mW    2.4 J   124.2 I/mJ   138.0 s\n                757: \n[  632.877528] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3c1)\n[  632.877557] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-235)mA\n[  633.882082] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3db)\n[  633.882116] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-241)mA\n[  634.886482] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e8)\n[  634.886516] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-245)mA\n[  634.914324] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (43) data1 (118)\n[  634.915304] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3692), src (0x01)\n[  634.922369] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  634.922404] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2653) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  634.922430] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2653), ocv (37676)\n[  634.923791] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e8)\n[  634.923817] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-245)mA\n[  634.926154] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3fd), avg current (-250)mA\n[  634.926181] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2653)%\n[  634.927623] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (43) data1 (118)\n[  634.928364] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3692), src (0x01)\n[  634.930118] sec-battery battery: sec_bat_get_value_by_adc: Temp(383), Temp-ADC(1452)\n[  634.930936] sec-battery battery: sec_bat_get_value_by_adc: Temp(383), Temp-ADC(1452)\n[  634.932859] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (395)\n[  634.934878] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  634.937550] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (244) data1 (16)\n[  634.950727] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (126) data1 (3)\n[  634.950753] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2182)\n[  634.950780] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2648), previous soc (2653), diff (0), FG_mode(0)\n[  634.953115] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 3fd), avg current (-250)mA\n[  634.953141] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2648)%\n[  635.006029] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  635.013899] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3692)\n[  635.015254] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (43) data1 (118)\n[  635.015943] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3692), src (0x01)\n[  635.017292] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  635.017318] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  635.018027] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  635.018059] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  635.035305] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  635.035340] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.4), raw_soc(26.4)\n[  635.035375] sec-battery battery: sec_bat_get_battery_info:Vnow(3692mV),Inow(-245mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(383), Tusb(0), Tchg(395),Twpc(0)\n[  635.035407] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  635.036101] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(383)\n[  635.036125] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  635.036148] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  635.036179] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  635.036213] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  635.036254] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  635.036327] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  635.036447] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  635.890902] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ab)\n[  635.890936] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-230)mA\n[  637.855919] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  637.902890] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42f)\n[  637.902923] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  638.907566] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 426)\n[  638.907599] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  639.912037] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 425)\n[  639.912071] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  640.916409] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ec)\n[  640.916442] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-246)mA\n[  641.920806] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 416)\n[  641.920839] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  642.925183] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 419)\n[  642.925217] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  643.929683] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  643.929718] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  644.934107] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fe)\n[  644.934141] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  645.938595] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 437)\n[  645.938629] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  646.943009] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 412)\n[  646.943043] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  647.903888] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #22 22\n[  647.947650] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[  647.947684] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  648.831909] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  648.952059] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 420)\n[  648.952093] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  649.956478] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40d)\n[  649.956511] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  650.960913] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44d)\n[  650.960948] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-269)mA\n[  651.965417] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41a)\n[  651.965451] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  652.969956] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3db)\n[  652.969990] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-241)mA\n[  653.974361] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42f)\n[  653.974395] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  654.978908] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42f)\n[  654.978942] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  655.983539] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 420)\n[  655.983573] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  656.988087] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 420)\n[  656.988121] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  657.992498] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f8)\n[  657.992532] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  658.996945] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fd)\n[  658.996979] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  659.839908] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  660.001342] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41c)\n[  660.001376] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  661.005894] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 426)\n[  661.005928] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  662.010341] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 405)\n[  662.010375] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  663.014802] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f8)\n[  663.014835] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  664.019417] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e5)\n[  664.019451] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  665.023979] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42d)\n[  665.024013] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  665.038298] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (34) data1 (118)\n[  665.038973] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3691), src (0x01)\n[  665.045439] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3690)\n[  665.045477] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2648) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  665.045503] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2648), ocv (37675)\n[  665.046806] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42d)\n[  665.046832] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  665.049073] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 400), avg current (-250)mA\n[  665.049099] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2648)%\n[  665.050399] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (34) data1 (118)\n[  665.051062] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3691), src (0x01)\n[  665.052444] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1454)\n[  665.053096] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1453)\n[  665.054890] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (395)\n[  665.056840] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  665.059414] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (237) data1 (16)\n[  665.072426] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (123) data1 (3)\n[  665.072453] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2175)\n[  665.072480] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2644), previous soc (2648), diff (0), FG_mode(0)\n[  665.074832] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 400), avg current (-250)mA\n[  665.074858] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2644)%\n[  665.127245] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  665.133931] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3690)\n[  665.135292] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (34) data1 (118)\n[  665.135987] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3691), src (0x01)\n[  665.137395] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42d)\n[  665.137421] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  665.138134] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  665.138165] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  665.155555] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  665.155591] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.4), raw_soc(26.4)\n[  665.155625] sec-battery battery: sec_bat_get_battery_info:Vnow(3691mV),Inow(-261mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(382), Tusb(0), Tchg(395),Twpc(0)\n[  665.155657] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  665.156357] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(382)\n[  665.156382] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  665.156404] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  665.156436] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  665.156471] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  665.156511] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  665.156585] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  665.156814] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  666.028371] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e0)\n[  666.028405] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  667.032796] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 417)\n[  667.032830] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  668.037312] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 414)\n[  668.037347] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  669.041791] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43f)\n[  669.041824] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[  670.046201] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f6)\n[  670.046235] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  670.847910] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  671.050220] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3b9)\n[  671.050254] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-233)mA\n[  672.054240] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f1)\n[  672.054273] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  673.058072] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44e)\n[  673.058106] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[  674.062476] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d1)\n[  674.062509] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-239)mA\n[  675.066014] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 420)\n[  675.066048] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  676.070416] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 414)\n[  676.070449] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  677.074133] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e3)\n[  677.074167] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  677.983890] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #23 23\n[  678.078505] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43e)\n[  678.078539] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[  679.082101] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41a)\n[  679.082135] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  680.086497] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ff)\n[  680.086531] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  681.090266] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42a)\n[  681.090299] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  681.823882] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  682.094618] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e9)\n[  682.094652] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-245)mA\n[  683.099009] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 428)\n[  683.099043] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  684.103594] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 411)\n[  684.103628] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  685.108228] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fd)\n[  685.108262] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  686.112657] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 438)\n[  686.112691] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  687.117076] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 442)\n[  687.117110] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[  688.121585] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3da)\n[  688.121619] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-241)mA\n[  689.126048] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 419)\n[  689.126082] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  690.130456] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 406)\n[  690.130490] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  691.134860] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 439)\n[  691.134894] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  692.139513] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 409)\n[  692.139547] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  692.831909] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  693.144076] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 403)\n[  693.144111] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  694.148562] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 426)\n[  694.148595] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  695.152967] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 437)\n[  695.153001] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  695.158355] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (27) data1 (118)\n[  695.159030] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3690), src (0x01)\n[  695.165420] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3690)\n[  695.165453] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2644) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  695.165479] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2644), ocv (37674)\n[  695.166784] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 437)\n[  695.166810] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  695.169053] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 400), avg current (-250)mA\n[  695.169080] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2644)%\n[  695.170378] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (27) data1 (118)\n[  695.171042] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3690), src (0x01)\n[  695.172688] sec-battery battery: sec_bat_get_value_by_adc: Temp(383), Temp-ADC(1452)\n[  695.173530] sec-battery battery: sec_bat_get_value_by_adc: Temp(383), Temp-ADC(1452)\n[  695.175653] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (395)\n[  695.177640] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  695.180296] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (229) data1 (16)\n[  695.193325] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (120) data1 (3)\n[  695.193351] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2167)\n[  695.193378] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2639), previous soc (2644), diff (0), FG_mode(0)\n[  695.195780] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 400), avg current (-250)mA\n[  695.195806] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2639)%\n[  695.248191] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  695.255386] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3690)\n[  695.256753] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (27) data1 (118)\n[  695.257449] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3690), src (0x01)\n[  695.258808] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 429)\n[  695.258834] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  695.259548] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  695.259580] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  695.276961] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  695.276997] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.3), raw_soc(26.3)\n[  695.277032] sec-battery battery: sec_bat_get_battery_info:Vnow(3690mV),Inow(-264mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(383), Tusb(0), Tchg(395),Twpc(0)\n[  695.277065] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  695.277764] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(383)\n[  695.277788] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  695.277811] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  695.277843] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  695.277876] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  695.277916] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  695.277990] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  695.278216] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  696.157413] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 430)\n[  696.157447] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  697.161871] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 437)\n[  697.161905] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  698.166185] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 438)\n[  698.166219] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  699.170584] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 419)\n[  699.170618] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  700.174989] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 406)\n[  700.175023] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  701.179587] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 413)\n[  701.179621] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  702.184076] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40f)\n[  702.184110] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  703.188492] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40b)\n[  703.188526] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  703.839913] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  704.192914] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 414)\n[  704.192975] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  705.197288] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f8)\n[  705.197322] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  706.201841] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 400)\n[  706.201874] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  707.206295] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41a)\n[  707.206329] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  708.063881] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #24 24\n[  708.210727] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 419)\n[  708.210761] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  709.215117] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 424)\n[  709.215150] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  710.219704] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42a)\n[  710.219792] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  711.224109] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 418)\n[  711.224144] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  712.228587] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 410)\n[  712.228620] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  713.233007] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 411)\n[  713.233041] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  714.237489] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f8)\n[  714.237524] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  714.847910] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  715.241971] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 420)\n[  715.242006] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  716.246388] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 412)\n[  716.246423] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  717.250820] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41e)\n[  717.250854] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  718.255379] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 413)\n[  718.255413] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  719.259938] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 403)\n[  719.259973] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  720.264367] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 405)\n[  720.264401] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  721.268896] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 411)\n[  721.268930] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  722.273319] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 428)\n[  722.273353] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  723.277796] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 420)\n[  723.277831] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  724.282155] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[  724.282189] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  725.279992] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (30) data1 (118)\n[  725.280739] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3691), src (0x01)\n[  725.288119] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43c)\n[  725.288154] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[  725.289483] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3690)\n[  725.289528] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2639) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  725.289554] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2639), ocv (37672)\n[  725.290868] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43c)\n[  725.290894] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[  725.293138] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 401), avg current (-251)mA\n[  725.293164] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2639)%\n[  725.294481] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (30) data1 (118)\n[  725.295147] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3691), src (0x01)\n[  725.296471] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1454)\n[  725.297132] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1454)\n[  725.298911] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (394)\n[  725.300872] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  725.303442] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (223) data1 (16)\n[  725.316414] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (117) data1 (3)\n[  725.316442] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2160)\n[  725.316470] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2636), previous soc (2639), diff (0), FG_mode(0)\n[  725.318821] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 401), avg current (-251)mA\n[  725.318847] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2636)%\n[  725.371213] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  725.377943] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3690)\n[  725.379305] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (30) data1 (118)\n[  725.380000] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3691), src (0x01)\n[  725.381359] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43c)\n[  725.381385] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[  725.382094] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  725.382126] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  725.399512] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  725.399549] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.3), raw_soc(26.3)\n[  725.399584] sec-battery battery: sec_bat_get_battery_info:Vnow(3691mV),Inow(-265mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(382), Tusb(0), Tchg(394),Twpc(0)\n[  725.399616] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  725.400314] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(382)\n[  725.400338] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  725.400362] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  725.400394] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  725.400428] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  725.400468] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  725.400543] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  725.400770] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  725.855908] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  726.292737] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41f)\n[  726.292770] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  727.297177] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41c)\n[  727.297211] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  728.301666] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 438)\n[  728.301700] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  729.306082] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 437)\n[  729.306116] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  730.310163] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 410)\n[  730.310197] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  731.314575] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 429)\n[  731.314609] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  732.318987] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 412)\n[  732.319020] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  733.323543] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 413)\n[  733.323578] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  734.328032] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3eb)\n[  734.328066] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-245)mA\n[  735.332451] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40f)\n[  735.332485] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  736.336879] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 440)\n[  736.336913] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[  736.831911] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  737.341299] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 410)\n[  737.341333] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  738.143892] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #25 25\n[  738.345780] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41a)\n[  738.345814] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  739.350194] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 404)\n[  739.350228] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  740.354637] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42e)\n[  740.354671] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  741.359041] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 437)\n[  741.359075] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  742.363631] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 408)\n[  742.363664] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  743.368036] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 414)\n[  743.368069] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  744.372458] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40b)\n[  744.372492] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  745.376870] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e5)\n[  745.376904] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  746.381333] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 400)\n[  746.381366] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  747.385803] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 405)\n[  747.385836] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  747.839908] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  748.390223] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f7)\n[  748.390256] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  749.394660] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42a)\n[  749.394694] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  750.399070] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41c)\n[  750.399104] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  751.403659] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 428)\n[  751.403693] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  752.408147] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41e)\n[  752.408181] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  753.412668] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 406)\n[  753.412702] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  754.417091] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 420)\n[  754.417126] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  755.402494] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (28) data1 (118)\n[  755.403354] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3690), src (0x01)\n[  755.410003] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3690)\n[  755.410039] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2636) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  755.410065] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2636), ocv (37672)\n[  755.411384] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 415)\n[  755.411410] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  755.413684] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 40f), avg current (-254)mA\n[  755.413709] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2636)%\n[  755.415025] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (28) data1 (118)\n[  755.415697] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3690), src (0x01)\n[  755.417081] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1454)\n[  755.417743] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1454)\n[  755.419570] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (394)\n[  755.423089] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 415)\n[  755.423128] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  755.423830] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  755.426496] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (215) data1 (16)\n[  755.439439] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (114) data1 (3)\n[  755.439468] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2153)\n[  755.439495] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2631), previous soc (2636), diff (0), FG_mode(0)\n[  755.441812] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 40f), avg current (-254)mA\n[  755.441839] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2631)%\n[  755.494200] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  755.500877] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3690)\n[  755.502241] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (28) data1 (118)\n[  755.502935] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3690), src (0x01)\n[  755.504303] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 415)\n[  755.504329] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  755.505046] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  755.505078] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  755.522467] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  755.522504] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.3), raw_soc(26.3)\n[  755.522539] sec-battery battery: sec_bat_get_battery_info:Vnow(3690mV),Inow(-256mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(382), Tusb(0), Tchg(394),Twpc(0)\n[  755.522572] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  755.523269] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(382)\n[  755.523293] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  755.523316] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  755.523348] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  755.523382] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  755.523422] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  755.523495] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  755.523723] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  756.428171] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 436)\n[  756.428205] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  757.432638] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 417)\n[  757.432672] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  758.437082] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 421)\n[  758.437115] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  758.847911] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  759.441694] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40d)\n[  759.441727] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  760.450699]  2439     3.2 C/MHz     25 mW    3.0 J   99.4 I/mJ   123.0 s\n                839: \n[  764.560779] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fc)\n[  764.560805] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  765.565079] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3c8)\n[  765.565109] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-237)mA\n[  766.569576] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3a7)\n[  766.569607] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-229)mA\n[  767.573962] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d0)\n[  767.573993] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-239)mA\n[  768.223875] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #26 26\n[  769.585013] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 449)\n[  769.585043] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[  769.823875] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  770.589426] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43f)\n[  770.589457] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[  771.593814] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41a)\n[  771.593845] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  772.598069] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40d)\n[  772.598099] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  773.602362] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 434)\n[  773.602394] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[  774.606662] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 419)\n[  774.606693] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  775.611035] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44f)\n[  775.611066] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[  776.615533] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43d)\n[  776.615564] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[  777.619923] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 412)\n[  777.619955] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  778.624258] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 424)\n[  778.624289] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  779.628633] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42d)\n[  779.628664] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  780.632961] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 424)\n[  780.632992] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  780.831899] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  781.637267] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 407)\n[  781.637298] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  782.641820] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 426)\n[  782.641852] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  783.646113] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42b)\n[  783.646145] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  784.650406] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 434)\n[  784.650437] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[  785.525575] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (23) data1 (118)\n[  785.526423] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3690), src (0x01)\n[  785.533081] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3690)\n[  785.533114] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2631) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  785.533138] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2631), ocv (37670)\n[  785.534446] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 418)\n[  785.534470] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  785.536743] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 410), avg current (-254)mA\n[  785.536767] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2631)%\n[  785.538073] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (23) data1 (118)\n[  785.538739] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3690), src (0x01)\n[  785.540358] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1453)\n[  785.541177] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1453)\n[  785.542971] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (394)\n[  785.544929] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  785.547546] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (209) data1 (16)\n[  785.560528] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (111) data1 (3)\n[  785.560553] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2145)\n[  785.560577] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2627), previous soc (2631), diff (0), FG_mode(0)\n[  785.562891] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 410), avg current (-254)mA\n[  785.562915] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2627)%\n[  785.615245] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  785.621829] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3690)\n[  785.623168] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (23) data1 (118)\n[  785.623850] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3690), src (0x01)\n[  785.625185] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 477)\n[  785.625208] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-280)mA\n[  785.625907] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  785.625936] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  785.643094] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  785.643128] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.2), raw_soc(26.2)\n[  785.643161] sec-battery battery: sec_bat_get_battery_info:Vnow(3690mV),Inow(-256mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(382), Tusb(0), Tchg(394),Twpc(0)\n[  785.643191] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  785.643880] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(382)\n[  785.643902] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  785.643923] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  785.643953] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  785.643985] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  785.644021] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  785.644090] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  785.644297] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  785.653829] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 477)\n[  785.653860] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-280)mA\n[  786.658105] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 436)\n[  786.658137] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  787.662374] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44b)\n[  787.662405] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-269)mA\n[  788.666612] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 419)\n[  788.666644] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  789.670900] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 421)\n[  789.670931] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  790.675356] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  790.675387] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  791.679826] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 411)\n[  791.679857] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  791.839898] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  792.684236] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 441)\n[  792.684267] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[  793.688612] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43d)\n[  793.688643] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[  794.692922] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fd)\n[  794.692953] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  795.697145] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41a)\n[  795.697176] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  796.701447] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[  796.701478] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  797.705889] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44b)\n[  797.705919] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-269)mA\n[  798.303865] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #27 27\n[  798.710096] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 420)\n[  798.710128] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  799.714369] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 436)\n[  799.714400] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  800.718647] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42f)\n[  800.718678] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  801.722941] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 434)\n[  801.722972] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[  802.727455] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42c)\n[  802.727486] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  802.847880] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  803.731894] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 431)\n[  803.731925] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  804.736190] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 426)\n[  804.736221] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  805.740429] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 444)\n[  805.740460] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[  806.744734] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 433)\n[  806.744765] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[  807.749022] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  807.749053] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  808.753367] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e6)\n[  808.753398] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  809.757720] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43f)\n[  809.757750] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[  810.762049] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41d)\n[  810.762080] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  811.766330] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41c)\n[  811.766383] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  812.770685] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 409)\n[  812.770716] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  813.774971] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[  813.775002] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  813.855906] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  814.779412] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 407)\n[  814.779443] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  815.646061] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (23) data1 (118)\n[  815.646934] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3690), src (0x01)\n[  815.653855] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3690)\n[  815.653889] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2627) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  815.653913] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2627), ocv (37669)\n[  815.655229] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f5)\n[  815.655252] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  815.657558] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 40f), avg current (-254)mA\n[  815.657582] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2627)%\n[  815.658893] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (23) data1 (118)\n[  815.659564] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3690), src (0x01)\n[  815.660933] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1454)\n[  815.661626] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1454)\n[  815.663422] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (394)\n[  815.665388] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  815.668002] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (201) data1 (16)\n[  815.680993] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (109) data1 (3)\n[  815.681017] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2141)\n[  815.681042] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2622), previous soc (2627), diff (0), FG_mode(0)\n[  815.683370] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 40f), avg current (-254)mA\n[  815.683394] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2622)%\n[  815.735732] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  815.742394] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3690)\n[  815.743731] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (23) data1 (118)\n[  815.744455] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3690), src (0x01)\n[  815.745793] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f5)\n[  815.745817] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  815.746517] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  815.746546] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  815.763773] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  815.763808] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.2), raw_soc(26.2)\n[  815.763841] sec-battery battery: sec_bat_get_battery_info:Vnow(3690mV),Inow(-248mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(382), Tusb(0), Tchg(394),Twpc(0)\n[  815.763872] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  815.764561] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(382)\n[  815.764584] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  815.764605] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  815.764635] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  815.764666] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  815.764703] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  815.764771] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  815.764975] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  815.783509] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f5)\n[  815.783539] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  816.787870] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f8)\n[  816.787901] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  817.792181] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41f)\n[  817.792212] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  818.796522] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 415)\n[  818.796552] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  819.800829] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 431)\n[  819.800860] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  820.805126] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 433)\n[  820.805157] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[  821.809381] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42d)\n[  821.809438] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  822.813765] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[  822.813795] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  823.818041] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 424)\n[  823.818073] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  824.822337] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fa)\n[  824.822368] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  824.831860] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  825.826564] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 429)\n[  825.826595] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  826.830860] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 445)\n[  826.830890] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[  827.835323] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42c)\n[  827.835353] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  828.383868] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #28 28\n[  828.839884] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 421)\n[  828.839915] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  829.844194] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42d)\n[  829.844224] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  830.848448] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40b)\n[  830.848479] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  831.852702] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40a)\n[  831.852734] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  832.857006] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 423)\n[  832.857037] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  833.861303] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 423)\n[  833.861333] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  834.865739] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f9)\n[  834.865770] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  835.839881] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  835.870057] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 409)\n[  835.870088] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  836.874327] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e5)\n[  836.874358] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  837.878617] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 432)\n[  837.878648] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[  838.882928] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 405)\n[  838.882960] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  839.887422] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42c)\n[  839.887453] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  840.891895] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40c)\n[  840.891925] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  841.896291] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 400)\n[  841.896322] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  842.900682] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43b)\n[  842.900713] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[  843.904989] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40a)\n[  843.905020] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  844.909284] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 440)\n[  844.909315] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[  845.766781] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (22) data1 (118)\n[  845.767627] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3690), src (0x01)\n[  845.774230] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3690)\n[  845.774262] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2622) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  845.774286] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2622), ocv (37668)\n[  845.775599] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 424)\n[  845.775625] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  845.777885] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 410), avg current (-254)mA\n[  845.777909] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2622)%\n[  845.779214] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (22) data1 (118)\n[  845.779880] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3690), src (0x01)\n[  845.781497] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1453)\n[  845.782318] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1453)\n[  845.784111] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (394)\n[  845.786066] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  845.788668] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (193) data1 (16)\n[  845.801642] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (106) data1 (3)\n[  845.801667] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2133)\n[  845.801692] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2617), previous soc (2622), diff (0), FG_mode(0)\n[  845.804006] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 411), avg current (-255)mA\n[  845.804030] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2617)%\n[  845.856360] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  845.862966] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3690)\n[  845.864305] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (22) data1 (118)\n[  845.864988] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3690), src (0x01)\n[  845.866325] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47b)\n[  845.866349] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-281)mA\n[  845.867046] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  845.867075] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  845.884325] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  845.884359] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.1), raw_soc(26.1)\n[  845.884391] sec-battery battery: sec_bat_get_battery_info:Vnow(3690mV),Inow(-259mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(382), Tusb(0), Tchg(394),Twpc(0)\n[  845.884421] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  845.885107] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(382)\n[  845.885129] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  845.885150] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  845.885180] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  845.885211] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  845.885248] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  845.885315] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  845.885521] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  845.913594] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47b)\n[  845.913625] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-281)mA\n[  846.847897] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  846.917926] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 422)\n[  846.917957] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  847.922200] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ce)\n[  847.922231] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-238)mA\n[  848.926413] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42f)\n[  848.926444] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  849.930696] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 422)\n[  849.930727] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  850.934977] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3dc)\n[  850.935008] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-242)mA\n[  851.939554] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  851.939585] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  852.943986] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e5)\n[  852.944017] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[  853.948288] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40c)\n[  853.948319] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  854.952615] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 407)\n[  854.952646] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  855.956925] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 413)\n[  855.956956] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  856.961214] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 434)\n[  856.961245] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[  857.823880] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  857.965604] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 416)\n[  857.965634] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  858.463869] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #29 29\n[  858.969956] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40f)\n[  858.969987] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  859.974232] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 442)\n[  859.974263] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[  860.978509] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 430)\n[  860.978540] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  861.982845] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 433)\n[  861.982876] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[  862.987343] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 424)\n[  862.987374] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  863.991840] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 422)\n[  863.991871] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  864.996202] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40d)\n[  864.996233] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  866.000452] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  866.000483] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  867.004768] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 436)\n[  867.004799] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  868.009052] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42b)\n[  868.009083] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  868.831895] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  869.013536] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e2)\n[  869.013567] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  870.017950] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 428)\n[  870.017981] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  871.022240] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 415)\n[  871.022271] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  872.026453] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 431)\n[  872.026483] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  873.030742] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 430)\n[  873.030774] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  874.035031] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 423)\n[  874.035062] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  875.039574] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fd)\n[  875.039605] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[  875.887329] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (20) data1 (118)\n[  875.888125] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3689), src (0x01)\n[  875.894791] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3688)\n[  875.894824] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2617) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  875.894848] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2617), ocv (37667)\n[  875.896157] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 414)\n[  875.896181] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  875.898438] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 410), avg current (-254)mA\n[  875.898461] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2617)%\n[  875.899771] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (20) data1 (118)\n[  875.900435] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3689), src (0x01)\n[  875.902050] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1453)\n[  875.902868] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1453)\n[  875.904666] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (394)\n[  875.906620] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  875.909238] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (186) data1 (16)\n[  875.922214] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (103) data1 (3)\n[  875.922239] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2126)\n[  875.922264] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2613), previous soc (2617), diff (0), FG_mode(0)\n[  875.924578] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 410), avg current (-254)mA\n[  875.924602] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2613)%\n[  875.976932] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  875.983517] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3688)\n[  875.984858] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (20) data1 (118)\n[  875.985540] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3689), src (0x01)\n[  875.986877] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 414)\n[  875.986900] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  875.987630] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  875.987660] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  876.004784] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  876.004818] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.1), raw_soc(26.1)\n[  876.004850] sec-battery battery: sec_bat_get_battery_info:Vnow(3689mV),Inow(-255mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(382), Tusb(0), Tchg(394),Twpc(0)\n[  876.004879] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  876.005564] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(382)\n[  876.005586] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  876.005607] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  876.005637] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  876.005669] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  876.005705] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  876.005773] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  876.005982] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  876.044006] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 424)\n[  876.044037] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  877.048311] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 407)\n[  877.048343] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  878.052643] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43c)\n[  878.052676] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[  879.057000] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40c)\n[  879.057032] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  879.839922] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  880.065397]  2701     3.2 C/MHz     34 mW    3.8 J   79.3 I/mJ   111.1 s\n                902: \n[  884.174964] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3bc)\n[  884.174988] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-234)mA\n[  885.179372] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3c2)\n[  885.179401] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-235)mA\n[  886.183855] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f6)\n[  886.183884] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[  887.188095] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d7)\n[  887.188124] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-240)mA\n[  888.543864] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #30 30\n[  889.198725] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 422)\n[  889.198754] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  890.203026] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 437)\n[  890.203055] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  890.847869] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  891.207256] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 429)\n[  891.207286] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  892.211658] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 437)\n[  892.211687] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  893.215934] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 422)\n[  893.215963] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  894.220211] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43f)\n[  894.220241] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[  895.224414] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 426)\n[  895.224444] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  896.228667] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  896.228696] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  897.232897] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 423)\n[  897.232926] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  898.237121] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fb)\n[  898.237150] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[  899.241310] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 429)\n[  899.241341] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  900.245602] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 418)\n[  900.245631] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  901.249871] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 413)\n[  901.249900] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  901.855868] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  902.254177] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 437)\n[  902.254206] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  903.258398] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41d)\n[  903.258427] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  904.262612] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 413)\n[  904.262641] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  905.266811] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 401)\n[  905.266842] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[  906.007781] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (16) data1 (118)\n[  906.008621] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3689), src (0x01)\n[  906.015397] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3688)\n[  906.015428] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2613) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  906.015450] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2613), ocv (37666)\n[  906.016765] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 417)\n[  906.016789] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  906.019047] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 410), avg current (-254)mA\n[  906.019069] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2613)%\n[  906.020415] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (16) data1 (118)\n[  906.021081] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3689), src (0x01)\n[  906.022676] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1453)\n[  906.023480] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1453)\n[  906.025276] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (394)\n[  906.027230] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  906.029831] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (178) data1 (16)\n[  906.042803] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (100) data1 (3)\n[  906.042826] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2119)\n[  906.042849] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2608), previous soc (2613), diff (0), FG_mode(0)\n[  906.045162] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 410), avg current (-254)mA\n[  906.045184] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2608)%\n[  906.097507] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  906.104087] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3688)\n[  906.105426] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (16) data1 (118)\n[  906.106107] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3689), src (0x01)\n[  906.107440] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 417)\n[  906.107462] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  906.108160] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  906.108187] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  906.125310] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  906.125341] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.0), raw_soc(26.0)\n[  906.125372] sec-battery battery: sec_bat_get_battery_info:Vnow(3689mV),Inow(-256mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(382), Tusb(0), Tchg(394),Twpc(0)\n[  906.125400] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  906.126084] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(382)\n[  906.126105] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  906.126124] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  906.126151] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  906.126180] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  906.126214] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  906.126280] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  906.126489] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  906.270664] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 406)\n[  906.270693] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  907.274837] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[  907.274866] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  908.279199] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41a)\n[  908.279228] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  909.283538] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 439)\n[  909.283568] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  910.287840] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 412)\n[  910.287869] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  911.292088] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 423)\n[  911.292117] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  912.296307] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 416)\n[  912.296336] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  912.831885] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  913.300609] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43f)\n[  913.300638] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[  914.304856] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 413)\n[  914.304885] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  915.309091] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41f)\n[  915.309120] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  916.313499] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 437)\n[  916.313528] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  917.317787] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 431)\n[  917.317816] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  918.322019] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 418)\n[  918.322048] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  918.627856] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #31 31\n[  919.326194] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40f)\n[  919.326223] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  920.330424] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 429)\n[  920.330453] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  921.334653] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44b)\n[  921.334682] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-269)mA\n[  922.338924] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 431)\n[  922.338953] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  923.343290] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 438)\n[  923.343320] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  923.839860] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  924.347682] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[  924.347711] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  925.351977] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  925.352006] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  926.356319] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 441)\n[  926.356348] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[  927.360613] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 421)\n[  927.360642] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  928.364853] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 417)\n[  928.364882] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  929.369041] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 448)\n[  929.369070] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[  930.373279] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 414)\n[  930.373308] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-255)mA\n[  931.377572] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 406)\n[  931.377601] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  932.381813] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41e)\n[  932.381842] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  933.386042] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 416)\n[  933.386071] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  934.390271] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 442)\n[  934.390300] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[  934.847885] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  935.394495] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42e)\n[  935.394525] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  936.128299] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (12) data1 (118)\n[  936.129033] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3688), src (0x01)\n[  936.135473] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3688)\n[  936.135501] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2608) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  936.135524] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2608), ocv (37664)\n[  936.136833] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[  936.136855] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  936.139113] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 410), avg current (-254)mA\n[  936.139134] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2608)%\n[  936.140438] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (12) data1 (118)\n[  936.141103] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3688), src (0x01)\n[  936.142456] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1454)\n[  936.143137] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1454)\n[  936.144933] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (394)\n[  936.146887] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  936.149474] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (172) data1 (16)\n[  936.162457] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (97) data1 (3)\n[  936.162481] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2111)\n[  936.162503] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2604), previous soc (2608), diff (0), FG_mode(0)\n[  936.164813] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 410), avg current (-254)mA\n[  936.164835] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2604)%\n[  936.217149] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  936.223701] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3688)\n[  936.225062] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (12) data1 (118)\n[  936.225740] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3688), src (0x01)\n[  936.227069] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 488)\n[  936.227091] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-284)mA\n[  936.227791] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  936.227817] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  936.244854] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  936.244886] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.0), raw_soc(26.0)\n[  936.244916] sec-battery battery: sec_bat_get_battery_info:Vnow(3688mV),Inow(-257mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(382), Tusb(0), Tchg(394),Twpc(0)\n[  936.244944] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  936.245627] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(382)\n[  936.245648] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  936.245667] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  936.245694] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  936.245723] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  936.245757] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  936.245823] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  936.246021] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  936.398793] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 488)\n[  936.398822] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-284)mA\n[  937.403003] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 416)\n[  937.403033] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  938.407373] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41c)\n[  938.407402] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  939.411697] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42c)\n[  939.411727] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  940.415989] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 425)\n[  940.416019] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  941.420228] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41d)\n[  941.420257] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  942.424571] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 458)\n[  942.424599] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[  943.428821] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44b)\n[  943.428850] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-269)mA\n[  944.433055] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 419)\n[  944.433085] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  945.437289] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 427)\n[  945.437318] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  945.823867] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  946.441631] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[  946.441660] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  947.445914] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40b)\n[  947.445943] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  948.450143] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 417)\n[  948.450173] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  948.703793] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #32 32\n[  949.454392] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 439)\n[  949.454422] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  950.458611] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 422)\n[  950.458640] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  951.462825] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 431)\n[  951.462856] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  952.467005] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 448)\n[  952.467034] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[  953.471391] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42d)\n[  953.471420] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  954.475819] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 453)\n[  954.475850] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[  955.480051] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 432)\n[  955.480082] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[  956.484314] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 432)\n[  956.484344] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[  956.831861] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  957.488612] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 433)\n[  957.488641] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[  958.492858] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41d)\n[  958.492888] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  959.497075] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 434)\n[  959.497104] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[  960.501315] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 441)\n[  960.501344] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[  961.505658] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 433)\n[  961.505686] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[  962.509954] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 425)\n[  962.509983] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  963.514173] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41d)\n[  963.514202] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[  964.518397] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42a)\n[  964.518427] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  965.522613] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 430)\n[  965.522642] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[  966.247808] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (10) data1 (118)\n[  966.248646] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3688), src (0x01)\n[  966.255487] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3688)\n[  966.255517] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2604) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  966.255540] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2604), ocv (37663)\n[  966.256845] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 464)\n[  966.256869] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-275)mA\n[  966.259112] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 421), avg current (-259)mA\n[  966.259135] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2604)%\n[  966.260432] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (10) data1 (118)\n[  966.261092] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3688), src (0x01)\n[  966.262685] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1453)\n[  966.263490] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1453)\n[  966.265273] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (394)\n[  966.267217] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  966.269791] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (164) data1 (16)\n[  966.282719] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (94) data1 (3)\n[  966.282742] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2104)\n[  966.282765] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2600), previous soc (2604), diff (0), FG_mode(0)\n[  966.285065] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 421), avg current (-259)mA\n[  966.285087] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2600)%\n[  966.337397] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  966.343945] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3688)\n[  966.345275] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (10) data1 (118)\n[  966.345950] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3688), src (0x01)\n[  966.347279] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 464)\n[  966.347301] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-275)mA\n[  966.347995] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  966.348021] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  966.365097] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  966.365128] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(26.0), raw_soc(26.0)\n[  966.365158] sec-battery battery: sec_bat_get_battery_info:Vnow(3688mV),Inow(-275mA),Imax(500mA),Ichg(500mA),SOC(26%),Tbat(382), Tusb(0), Tchg(394),Twpc(0)\n[  966.365186] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  966.365865] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(382)\n[  966.365886] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  966.365905] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  966.365933] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  966.365962] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  966.365995] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  966.366060] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  966.366261] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  966.526742] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[  966.526771] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  967.530961] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 440)\n[  967.530990] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[  967.839806] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  968.535345] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[  968.535374] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  969.539823] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 438)\n[  969.539852] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  970.544065] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41a)\n[  970.544094] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[  971.548307] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44b)\n[  971.548336] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-269)mA\n[  972.552639] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 437)\n[  972.552668] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[  973.556898] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 422)\n[  973.556927] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[  974.561142] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 452)\n[  974.561171] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[  975.565379] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43b)\n[  975.565409] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[  976.569618] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42a)\n[  976.569647] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  977.573914] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 441)\n[  977.573942] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[  978.578140] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 407)\n[  978.578169] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  978.783853] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #33 33\n[  978.847829] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  979.582424] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 426)\n[  979.582453] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[  980.586662] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 440)\n[  980.586691] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[  981.590883] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 441)\n[  981.590913] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[  982.595299] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40b)\n[  982.595328] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[  983.599703] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44a)\n[  983.599788] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-269)mA\n[  984.604011] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 448)\n[  984.604040] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[  985.608246] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 432)\n[  985.608276] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[  986.612430] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40f)\n[  986.612459] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[  987.616676] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 407)\n[  987.616706] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[  988.620922] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42b)\n[  988.620951] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[  989.625183] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 443)\n[  989.625212] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[  989.855869] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  990.629424] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 447)\n[  990.629453] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[  991.636880]  2911     3.2 C/MHz     43 mW    4.4 J   68.4 I/mJ   103.1 s\n               1014: \n[  995.746296] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3de)\n[  995.746318] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-242)mA\n[  996.368278] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (20) data1 (118)\n[  996.369058] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3689), src (0x01)\n[  996.376442] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3688)\n[  996.376469] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2600) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[  996.376489] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2600), ocv (37662)\n[  996.377781] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f2)\n[  996.377800] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[  996.380025] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 40f), avg current (-254)mA\n[  996.380044] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2600)%\n[  996.381332] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (20) data1 (118)\n[  996.381988] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3689), src (0x01)\n[  996.383526] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1454)\n[  996.384354] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1454)\n[  996.386349] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (394)\n[  996.388497] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[  996.391108] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (156) data1 (16)\n[  996.404200] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (92) data1 (3)\n[  996.404222] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2099)\n[  996.404243] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2595), previous soc (2600), diff (0), FG_mode(0)\n[  996.406516] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 40f), avg current (-254)mA\n[  996.406535] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2595)%\n[  996.459336] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[  996.466036] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3688)\n[  996.467354] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (20) data1 (118)\n[  996.468023] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3689), src (0x01)\n[  996.469337] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 418)\n[  996.469356] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[  996.470041] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 26\n[  996.470064] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[  996.486930] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[  996.486956] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(25.9), raw_soc(25.9)\n[  996.486981] sec-battery battery: sec_bat_get_battery_info:Vnow(3689mV),Inow(-247mA),Imax(500mA),Ichg(500mA),SOC(25%),Tbat(382), Tusb(0), Tchg(394),Twpc(0)\n[  996.487007] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  996.487677] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(382)\n[  996.487696] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  996.487713] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[  996.487780] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[  996.487806] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[  996.487838] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[  996.487899] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  996.487991] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  996.695856] thermal thermal_zone0: [TMU] last_temperature=43000, current_temperature=43000\n[  996.750414] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d3)\n[  996.750441] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-240)mA\n[  997.754472] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e3)\n[  997.754498] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-243)mA\n[  998.758592] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 404)\n[  998.758618] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[ 1000.768552] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43d)\n[ 1000.768579] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[ 1000.831893] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1001.772764] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42b)\n[ 1001.772791] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[ 1002.776924] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44e)\n[ 1002.776951] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[ 1003.781072] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 431)\n[ 1003.781099] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[ 1004.785208] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 441)\n[ 1004.785234] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[ 1005.789330] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 428)\n[ 1005.789357] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[ 1006.793509] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 440)\n[ 1006.793536] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[ 1007.797690] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42c)\n[ 1007.797717] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[ 1008.801880] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 445)\n[ 1008.801906] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[ 1008.863849] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #34 34\n[ 1009.805991] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 469)\n[ 1009.806017] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-276)mA\n[ 1010.810172] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44f)\n[ 1010.810199] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[ 1011.814288] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 433)\n[ 1011.814315] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[ 1011.839863] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1012.818399] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 437)\n[ 1012.818426] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[ 1013.822526] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 426)\n[ 1013.822552] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[ 1014.826735] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 418)\n[ 1014.826761] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[ 1015.830833] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 430)\n[ 1015.830860] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[ 1016.834944] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[ 1016.834971] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[ 1017.839183] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 420)\n[ 1017.839210] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[ 1018.843512] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 441)\n[ 1018.843538] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[ 1019.847807] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 450)\n[ 1019.847834] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[ 1020.851973] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42e)\n[ 1020.852000] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[ 1021.856103] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43f)\n[ 1021.856130] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[ 1022.847881] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1022.860236] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 445)\n[ 1022.860263] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[ 1023.864355] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45f)\n[ 1023.864382] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-274)mA\n[ 1024.868431] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 441)\n[ 1024.868457] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[ 1025.872631] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 441)\n[ 1025.872657] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[ 1026.489756] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (7) data1 (118)\n[ 1026.490583] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3688), src (0x01)\n[ 1026.497154] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3688)\n[ 1026.497185] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2595) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1026.497209] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2595), ocv (37661)\n[ 1026.498510] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43d)\n[ 1026.498530] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[ 1026.500770] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 420), avg current (-258)mA\n[ 1026.500790] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2595)%\n[ 1026.502085] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (7) data1 (118)\n[ 1026.502743] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3688), src (0x01)\n[ 1026.504339] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1454)\n[ 1026.505129] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1454)\n[ 1026.506911] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (394)\n[ 1026.508854] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1026.511450] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (149) data1 (16)\n[ 1026.524397] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (89) data1 (3)\n[ 1026.524419] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2092)\n[ 1026.524440] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2590), previous soc (2595), diff (0), FG_mode(0)\n[ 1026.526726] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 420), avg current (-258)mA\n[ 1026.526745] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2590)%\n[ 1026.579044] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[ 1026.585572] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3688)\n[ 1026.586895] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (7) data1 (118)\n[ 1026.587566] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3688), src (0x01)\n[ 1026.588890] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43d)\n[ 1026.588909] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[ 1026.589597] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 25\n[ 1026.589622] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1026.606598] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1026.606626] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(25.9), raw_soc(25.9)\n[ 1026.606652] sec-battery battery: sec_bat_get_battery_info:Vnow(3688mV),Inow(-265mA),Imax(500mA),Ichg(500mA),SOC(25%),Tbat(382), Tusb(0), Tchg(394),Twpc(0)\n[ 1026.606678] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1026.607353] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(382)\n[ 1026.607372] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1026.607390] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1026.607414] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1026.607439] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1026.607471] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1026.607530] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1026.607718] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1026.876749] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42d)\n[ 1026.876775] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[ 1027.880770] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 441)\n[ 1027.880797] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[ 1028.884896] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 444)\n[ 1028.884923] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[ 1029.889023] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 444)\n[ 1029.889049] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[ 1030.893173] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43a)\n[ 1030.893199] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[ 1031.897318] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43c)\n[ 1031.897345] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[ 1032.901530] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43a)\n[ 1032.901556] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[ 1033.823865] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1033.905715] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43c)\n[ 1033.905742] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[ 1034.909995] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43c)\n[ 1034.910022] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[ 1035.914103] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 445)\n[ 1035.914130] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[ 1036.918165] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 427)\n[ 1036.918191] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[ 1037.922268] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42a)\n[ 1037.922294] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[ 1038.926465] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42a)\n[ 1038.926491] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[ 1038.943834] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #35 35\n[ 1039.930568] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 402)\n[ 1039.930595] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[ 1040.934681] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43a)\n[ 1040.934707] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[ 1041.938736] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 448)\n[ 1041.938763] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[ 1042.942847] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 437)\n[ 1042.942873] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[ 1043.946943] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 415)\n[ 1043.946970] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[ 1044.831879] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1044.951160] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41a)\n[ 1044.951187] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[ 1045.955438] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43a)\n[ 1045.955466] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[ 1046.959727] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42b)\n[ 1046.959833] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[ 1047.963928] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 418)\n[ 1047.963954] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[ 1048.967993] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 426)\n[ 1048.968020] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[ 1049.972121] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42e)\n[ 1049.972149] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[ 1050.976267] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 446)\n[ 1050.976294] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[ 1051.980353] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42a)\n[ 1051.980380] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[ 1052.984526] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43a)\n[ 1052.984554] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[ 1053.988659] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 429)\n[ 1053.988686] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[ 1054.992801] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43f)\n[ 1054.992829] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[ 1055.839850] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1055.996953] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 429)\n[ 1055.996980] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[ 1056.609550] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (2) data1 (118)\n[ 1056.610378] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3687), src (0x01)\n[ 1056.617891] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3686)\n[ 1056.617920] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2590) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1056.617941] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2590), ocv (37660)\n[ 1056.619239] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 452)\n[ 1056.619258] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1056.621517] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 421), avg current (-259)mA\n[ 1056.621538] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2590)%\n[ 1056.622833] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (2) data1 (118)\n[ 1056.623490] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3687), src (0x01)\n[ 1056.624826] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1455)\n[ 1056.625493] sec-battery battery: sec_bat_get_value_by_adc: Temp(382), Temp-ADC(1455)\n[ 1056.627268] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (394)\n[ 1056.629209] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1056.631780] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (141) data1 (16)\n[ 1056.644722] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (86) data1 (3)\n[ 1056.644742] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2084)\n[ 1056.644763] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2586), previous soc (2590), diff (0), FG_mode(0)\n[ 1056.647053] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 421), avg current (-259)mA\n[ 1056.647073] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2586)%\n[ 1056.699376] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[ 1056.705902] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3686)\n[ 1056.707225] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (2) data1 (118)\n[ 1056.707898] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3687), src (0x01)\n[ 1056.709235] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 452)\n[ 1056.709259] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1056.709961] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 25\n[ 1056.709985] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1056.726919] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1056.726949] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(25.8), raw_soc(25.8)\n[ 1056.726977] sec-battery battery: sec_bat_get_battery_info:Vnow(3687mV),Inow(-271mA),Imax(500mA),Ichg(500mA),SOC(25%),Tbat(382), Tusb(0), Tchg(394),Twpc(0)\n[ 1056.727003] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1056.727674] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(382)\n[ 1056.727693] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1056.727709] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1056.727763] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1056.727789] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1056.727822] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1056.727884] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1056.728063] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1057.001039] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 452)\n[ 1057.001066] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1058.005129] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44e)\n[ 1058.005156] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[ 1059.009342] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 442)\n[ 1059.009369] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[ 1060.013513] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 429)\n[ 1060.013539] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[ 1061.017765] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 435)\n[ 1061.017792] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[ 1062.021930] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44c)\n[ 1062.021959] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-269)mA\n[ 1063.026081] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43a)\n[ 1063.026108] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[ 1064.030180] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 436)\n[ 1064.030207] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[ 1065.034293] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 447)\n[ 1065.034320] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[ 1066.038345] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 421)\n[ 1066.038372] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[ 1066.847881] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1067.042478] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 451)\n[ 1067.042505] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[ 1068.046577] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 443)\n[ 1068.046604] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[ 1069.023865] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #36 36\n[ 1069.050712] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45a)\n[ 1069.050739] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[ 1070.054823] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42d)\n[ 1070.054850] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[ 1071.058939] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 435)\n[ 1071.058965] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[ 1072.063233] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 453)\n[ 1072.063260] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1073.067451] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42b)\n[ 1073.067478] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[ 1074.071800] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 455)\n[ 1074.071827] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1075.075926] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42d)\n[ 1075.075952] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[ 1076.080037] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 424)\n[ 1076.080063] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[ 1077.084171] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 426)\n[ 1077.084198] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[ 1077.855860] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1078.088299] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45b)\n[ 1078.088326] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-273)mA\n[ 1079.092439] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 463)\n[ 1079.092466] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-275)mA\n[ 1080.096663] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 445)\n[ 1080.096691] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[ 1081.100804] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 436)\n[ 1081.100831] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[ 1082.104929] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 443)\n[ 1082.104956] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[ 1083.109114] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42d)\n[ 1083.109141] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[ 1084.113237] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 454)\n[ 1084.113264] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1085.117422] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43a)\n[ 1085.117449] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[ 1086.121611] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fc)\n[ 1086.121641] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[ 1086.729817] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (255) data1 (117)\n[ 1086.730641] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3687), src (0x01)\n[ 1086.737536] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3686)\n[ 1086.737563] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2586) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1086.737583] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2586), ocv (37659)\n[ 1086.738875] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 425)\n[ 1086.738896] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[ 1086.741123] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 422), avg current (-259)mA\n[ 1086.741142] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2586)%\n[ 1086.742429] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (255) data1 (117)\n[ 1086.743083] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3687), src (0x01)\n[ 1086.744678] sec-battery battery: sec_bat_get_value_by_adc: Temp(381), Temp-ADC(1457)\n[ 1086.745464] sec-battery battery: sec_bat_get_value_by_adc: Temp(381), Temp-ADC(1457)\n[ 1086.747237] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (394)\n[ 1086.749168] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1086.751724] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (133) data1 (16)\n[ 1086.764671] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (83) data1 (3)\n[ 1086.764692] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2077)\n[ 1086.764713] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2581), previous soc (2586), diff (0), FG_mode(0)\n[ 1086.766989] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 422), avg current (-259)mA\n[ 1086.767009] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2581)%\n[ 1086.819298] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[ 1086.825791] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3686)\n[ 1086.827109] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (255) data1 (117)\n[ 1086.827780] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3687), src (0x01)\n[ 1086.829097] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46d)\n[ 1086.829117] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-277)mA\n[ 1086.829801] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 25\n[ 1086.829825] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1086.846717] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1086.846745] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(25.8), raw_soc(25.8)\n[ 1086.846772] sec-battery battery: sec_bat_get_battery_info:Vnow(3687mV),Inow(-260mA),Imax(500mA),Ichg(500mA),SOC(25%),Tbat(381), Tusb(0), Tchg(394),Twpc(0)\n[ 1086.846798] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1086.847469] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(381)\n[ 1086.847488] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1086.847506] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1086.847530] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1086.847556] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1086.847586] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1086.847645] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1086.847892] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1087.125804] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44c)\n[ 1087.125830] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-269)mA\n[ 1088.129948] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41b)\n[ 1088.129975] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[ 1088.831880] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1089.134067] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42d)\n[ 1089.134094] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[ 1090.138118] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 430)\n[ 1090.138145] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[ 1091.142239] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 459)\n[ 1091.142266] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[ 1092.148769]  3268     3.2 C/MHz     55 mW    5.1 J   58.9 I/mJ    91.8 s\n               1144: \n[ 1096.257925] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fb)\n[ 1096.257945] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[ 1097.261945] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f1)\n[ 1097.261969] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[ 1098.265903] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 408)\n[ 1098.265928] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-252)mA\n[ 1099.103861] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #37 37\n[ 1099.269922] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3bf)\n[ 1099.269947] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-235)mA\n[ 1099.839893] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1101.279685] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 425)\n[ 1101.279710] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[ 1102.283833] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 471)\n[ 1102.283858] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-278)mA\n[ 1103.287877] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42e)\n[ 1103.287901] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[ 1104.291925] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 444)\n[ 1104.291952] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[ 1105.295992] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 457)\n[ 1105.296017] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[ 1106.300018] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 459)\n[ 1106.300042] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[ 1107.304051] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 456)\n[ 1107.304075] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1108.308108] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44e)\n[ 1108.308132] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[ 1109.312144] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 446)\n[ 1109.312169] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[ 1110.316169] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 448)\n[ 1110.316193] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[ 1110.847871] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1111.320208] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45f)\n[ 1111.320251] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-274)mA\n[ 1112.324293] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 452)\n[ 1112.324318] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1113.328336] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45d)\n[ 1113.328360] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-273)mA\n[ 1114.332383] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44f)\n[ 1114.332408] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[ 1115.336428] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 458)\n[ 1115.336453] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[ 1116.340452] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 460)\n[ 1116.340477] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-274)mA\n[ 1116.849631] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (249) data1 (117)\n[ 1116.850415] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3686), src (0x01)\n[ 1116.856947] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3686)\n[ 1116.856972] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2581) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1116.856991] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2581), ocv (37658)\n[ 1116.858274] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 446)\n[ 1116.858291] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[ 1116.860503] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 433), avg current (-263)mA\n[ 1116.860521] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2581)%\n[ 1116.861800] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (249) data1 (117)\n[ 1116.862450] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3686), src (0x01)\n[ 1116.863981] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1459)\n[ 1116.864802] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1459)\n[ 1116.866563] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (394)\n[ 1116.868482] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1116.871024] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (127) data1 (16)\n[ 1116.883900] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (81) data1 (3)\n[ 1116.883918] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2072)\n[ 1116.883937] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2577), previous soc (2581), diff (0), FG_mode(0)\n[ 1116.886190] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 433), avg current (-263)mA\n[ 1116.886209] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2577)%\n[ 1116.938476] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[ 1116.944918] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3686)\n[ 1116.946223] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (249) data1 (117)\n[ 1116.946885] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3686), src (0x01)\n[ 1116.948189] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 446)\n[ 1116.948207] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[ 1116.948884] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 25\n[ 1116.948905] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1116.965709] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1116.965735] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(25.7), raw_soc(25.7)\n[ 1116.965759] sec-battery battery: sec_bat_get_battery_info:Vnow(3686mV),Inow(-268mA),Imax(500mA),Ichg(500mA),SOC(25%),Tbat(380), Tusb(0), Tchg(394),Twpc(0)\n[ 1116.965783] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1116.966473] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(380)\n[ 1116.966490] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1116.966506] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1116.966528] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1116.966551] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1116.966580] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1116.966635] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1116.966800] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1117.344418] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 449)\n[ 1117.344443] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[ 1118.348414] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 453)\n[ 1118.348437] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1119.352551] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 48c)\n[ 1119.352575] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-285)mA\n[ 1120.356588] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 441)\n[ 1120.356612] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[ 1121.360620] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 450)\n[ 1121.360645] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[ 1121.823849] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1122.364705] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 440)\n[ 1122.364730] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[ 1123.368745] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46d)\n[ 1123.368769] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-277)mA\n[ 1124.372799] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 461)\n[ 1124.372823] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-274)mA\n[ 1125.376830] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46d)\n[ 1125.376855] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-277)mA\n[ 1126.380931] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46c)\n[ 1126.380956] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-277)mA\n[ 1127.384983] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43e)\n[ 1127.385008] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[ 1128.389016] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 460)\n[ 1128.389040] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-274)mA\n[ 1129.183855] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #38 38\n[ 1129.393074] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 469)\n[ 1129.393098] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-276)mA\n[ 1130.397103] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 452)\n[ 1130.397127] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1131.401134] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 446)\n[ 1131.401160] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[ 1132.405113] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 453)\n[ 1132.405138] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1132.831868] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1133.409225] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 447)\n[ 1133.409250] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[ 1134.413254] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 466)\n[ 1134.413279] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-275)mA\n[ 1135.417273] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 452)\n[ 1135.417297] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1136.421385] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42e)\n[ 1136.421409] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[ 1137.425461] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45e)\n[ 1137.425485] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-273)mA\n[ 1138.429540] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44d)\n[ 1138.429564] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-269)mA\n[ 1139.433632] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44f)\n[ 1139.433661] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[ 1140.437741] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45a)\n[ 1140.437766] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[ 1141.441803] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43b)\n[ 1141.441829] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[ 1142.445836] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44e)\n[ 1142.445861] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[ 1143.449879] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44b)\n[ 1143.449903] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-269)mA\n[ 1143.839851] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1144.453891] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 464)\n[ 1144.453915] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-275)mA\n[ 1145.457900] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 453)\n[ 1145.457924] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1146.461911] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45e)\n[ 1146.461954] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-273)mA\n[ 1146.968546] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (245) data1 (117)\n[ 1146.969362] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3686), src (0x01)\n[ 1146.976076] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3686)\n[ 1146.976101] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2577) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1146.976119] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2577), ocv (37657)\n[ 1146.977406] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45d)\n[ 1146.977425] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-273)mA\n[ 1146.979646] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 440), avg current (-266)mA\n[ 1146.979663] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2577)%\n[ 1146.980950] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (245) data1 (117)\n[ 1146.981603] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3686), src (0x01)\n[ 1146.983144] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1461)\n[ 1146.983909] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1461)\n[ 1146.985675] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (394)\n[ 1146.987604] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1146.990157] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (119) data1 (16)\n[ 1147.003055] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (77) data1 (3)\n[ 1147.003075] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2062)\n[ 1147.003093] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2572), previous soc (2577), diff (0), FG_mode(0)\n[ 1147.005360] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 441), avg current (-266)mA\n[ 1147.005378] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2572)%\n[ 1147.057654] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[ 1147.064141] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3686)\n[ 1147.065451] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (245) data1 (117)\n[ 1147.066115] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3686), src (0x01)\n[ 1147.067426] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4a8)\n[ 1147.067444] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-292)mA\n[ 1147.068126] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 25\n[ 1147.068148] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1147.084988] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1147.085013] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(25.7), raw_soc(25.7)\n[ 1147.085037] sec-battery battery: sec_bat_get_battery_info:Vnow(3686mV),Inow(-273mA),Imax(500mA),Ichg(500mA),SOC(25%),Tbat(380), Tusb(0), Tchg(394),Twpc(0)\n[ 1147.085061] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1147.085728] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(380)\n[ 1147.085745] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1147.085762] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1147.085784] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1147.085807] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1147.085835] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1147.085890] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1147.086055] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1147.465977] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 449)\n[ 1147.466001] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[ 1148.469933] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 433)\n[ 1148.469958] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[ 1149.473946] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44e)\n[ 1149.473971] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[ 1150.478033] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44e)\n[ 1150.478057] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[ 1151.482040] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41f)\n[ 1151.482064] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[ 1152.486047] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47a)\n[ 1152.486071] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-280)mA\n[ 1153.490055] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 440)\n[ 1153.490080] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[ 1154.494120] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 441)\n[ 1154.494144] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[ 1154.847869] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1155.498131] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45f)\n[ 1155.498156] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-274)mA\n[ 1156.502140] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 458)\n[ 1156.502165] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[ 1157.506226] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44d)\n[ 1157.506251] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-269)mA\n[ 1158.510228] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 450)\n[ 1158.510253] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[ 1159.263842] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #39 39\n[ 1159.514234] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 461)\n[ 1159.514258] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-274)mA\n[ 1160.518248] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 453)\n[ 1160.518272] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1161.522363] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43a)\n[ 1161.522387] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[ 1162.526360] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40f)\n[ 1162.526384] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[ 1163.530376] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46b)\n[ 1163.530401] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-277)mA\n[ 1164.534431] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45d)\n[ 1164.534456] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-273)mA\n[ 1165.538447] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 429)\n[ 1165.538471] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[ 1165.855851] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1166.542451] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 435)\n[ 1166.542476] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[ 1167.546467] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 473)\n[ 1167.546491] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-279)mA\n[ 1168.550569] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 430)\n[ 1168.550593] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[ 1169.554584] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 486)\n[ 1169.554608] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-283)mA\n[ 1170.558605] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 444)\n[ 1170.558629] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[ 1171.562668] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46e)\n[ 1171.562693] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-277)mA\n[ 1172.566688] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43a)\n[ 1172.566713] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[ 1173.570692] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44d)\n[ 1173.570716] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-269)mA\n[ 1174.574700] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 440)\n[ 1174.574724] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[ 1175.578810] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 442)\n[ 1175.578834] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[ 1176.582811] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47a)\n[ 1176.582836] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-280)mA\n[ 1176.831870] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1177.087795] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (239) data1 (117)\n[ 1177.088609] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3685), src (0x01)\n[ 1177.095124] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3684)\n[ 1177.095149] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2572) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1177.095167] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2572), ocv (37655)\n[ 1177.096457] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 473)\n[ 1177.096475] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-279)mA\n[ 1177.098699] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 440), avg current (-266)mA\n[ 1177.098717] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2572)%\n[ 1177.100002] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (239) data1 (117)\n[ 1177.100655] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3685), src (0x01)\n[ 1177.102145] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1461)\n[ 1177.102965] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1461)\n[ 1177.104731] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (395)\n[ 1177.106656] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1177.109222] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (111) data1 (16)\n[ 1177.122114] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (74) data1 (3)\n[ 1177.122132] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2055)\n[ 1177.122151] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2567), previous soc (2572), diff (0), FG_mode(0)\n[ 1177.124419] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 440), avg current (-266)mA\n[ 1177.124436] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2567)%\n[ 1177.176711] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[ 1177.183184] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3684)\n[ 1177.184496] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (239) data1 (117)\n[ 1177.185162] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3685), src (0x01)\n[ 1177.186472] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 473)\n[ 1177.186490] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-279)mA\n[ 1177.187169] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 25\n[ 1177.187189] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1177.204058] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1177.204085] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(25.6), raw_soc(25.6)\n[ 1177.204110] sec-battery battery: sec_bat_get_battery_info:Vnow(3685mV),Inow(-279mA),Imax(500mA),Ichg(500mA),SOC(25%),Tbat(380), Tusb(0), Tchg(395),Twpc(0)\n[ 1177.204133] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1177.204801] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(380)\n[ 1177.204818] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1177.204834] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1177.204856] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1177.204880] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1177.204908] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1177.204964] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1177.205130] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1177.586792] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 418)\n[ 1177.586816] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-256)mA\n[ 1178.590827] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 484)\n[ 1178.590851] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-283)mA\n[ 1179.594833] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 460)\n[ 1179.594858] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-274)mA\n[ 1180.598837] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44e)\n[ 1180.598861] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[ 1181.605161]  3691     3.2 C/MHz     77 mW    6.3 J   47.7 I/mJ    81.3 s\n               1248: \n[ 1185.714160] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f6)\n[ 1185.714179] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[ 1186.718143] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40c)\n[ 1186.718167] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[ 1187.722100] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e8)\n[ 1187.722123] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-245)mA\n[ 1187.839893] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1188.726028] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f4)\n[ 1188.726051] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-248)mA\n[ 1189.343857] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #40 40\n[ 1190.735531] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47e)\n[ 1190.735554] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-281)mA\n[ 1191.739632] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 462)\n[ 1191.739655] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-274)mA\n[ 1192.743648] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 448)\n[ 1192.743671] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[ 1193.747601] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 457)\n[ 1193.747624] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[ 1194.751623] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46a)\n[ 1194.751646] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-276)mA\n[ 1195.755633] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 464)\n[ 1195.755656] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-275)mA\n[ 1196.759670] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 441)\n[ 1196.759695] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[ 1197.763701] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45b)\n[ 1197.763724] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-273)mA\n[ 1198.767700] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 473)\n[ 1198.767724] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-279)mA\n[ 1198.847852] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1199.771696] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 467)\n[ 1199.771719] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-276)mA\n[ 1200.775706] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 470)\n[ 1200.775773] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-278)mA\n[ 1201.779725] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44a)\n[ 1201.779787] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-269)mA\n[ 1202.783716] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47d)\n[ 1202.783783] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-281)mA\n[ 1203.787729] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 48b)\n[ 1203.787789] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-284)mA\n[ 1204.791801] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47a)\n[ 1204.791825] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-280)mA\n[ 1205.795803] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 465)\n[ 1205.795826] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-275)mA\n[ 1206.799815] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45d)\n[ 1206.799838] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-273)mA\n[ 1207.206856] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (241) data1 (117)\n[ 1207.207660] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3685), src (0x01)\n[ 1207.214216] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3684)\n[ 1207.214240] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2567) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1207.214257] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2567), ocv (37654)\n[ 1207.215553] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 450)\n[ 1207.215569] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[ 1207.217782] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 442), avg current (-267)mA\n[ 1207.217800] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2567)%\n[ 1207.219188] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (241) data1 (117)\n[ 1207.220034] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3685), src (0x01)\n[ 1207.221441] sec-battery battery: sec_bat_get_value_by_adc: Temp(379), Temp-ADC(1463)\n[ 1207.222084] sec-battery battery: sec_bat_get_value_by_adc: Temp(379), Temp-ADC(1463)\n[ 1207.223839] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (394)\n[ 1207.225755] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1207.228296] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (103) data1 (16)\n[ 1207.241172] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (72) data1 (3)\n[ 1207.241190] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2050)\n[ 1207.241207] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2562), previous soc (2567), diff (0), FG_mode(0)\n[ 1207.243457] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 442), avg current (-267)mA\n[ 1207.243474] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2562)%\n[ 1207.295768] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[ 1207.302212] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3684)\n[ 1207.303541] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (241) data1 (117)\n[ 1207.304200] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3685), src (0x01)\n[ 1207.305502] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 450)\n[ 1207.305519] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[ 1207.306192] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 25\n[ 1207.306211] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1207.322986] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1207.323010] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(25.6), raw_soc(25.6)\n[ 1207.323033] sec-battery battery: sec_bat_get_battery_info:Vnow(3685mV),Inow(-270mA),Imax(500mA),Ichg(500mA),SOC(25%),Tbat(379), Tusb(0), Tchg(394),Twpc(0)\n[ 1207.323055] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1207.323716] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(379)\n[ 1207.323762] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1207.323777] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1207.323797] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1207.323819] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1207.323845] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1207.323898] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1207.324055] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1207.803777] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 472)\n[ 1207.803799] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-278)mA\n[ 1208.807698] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43f)\n[ 1208.807721] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[ 1209.811707] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 48c)\n[ 1209.811772] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-285)mA\n[ 1209.823840] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1210.815715] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 459)\n[ 1210.815803] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[ 1211.819819] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45b)\n[ 1211.819842] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-273)mA\n[ 1212.823829] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46a)\n[ 1212.823852] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-276)mA\n[ 1213.827801] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 466)\n[ 1213.827824] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-275)mA\n[ 1214.831823] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 456)\n[ 1214.831846] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1215.835783] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 458)\n[ 1215.835806] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[ 1216.839728] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 459)\n[ 1216.839811] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[ 1217.843806] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 479)\n[ 1217.843829] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-280)mA\n[ 1218.847802] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 467)\n[ 1218.847825] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-276)mA\n[ 1219.423838] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #41 41\n[ 1219.851809] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46e)\n[ 1219.851832] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-277)mA\n[ 1220.831848] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1220.855802] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 449)\n[ 1220.855826] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[ 1221.859709] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47b)\n[ 1221.859797] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-281)mA\n[ 1222.863799] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 447)\n[ 1222.863823] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[ 1223.867804] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 483)\n[ 1223.867827] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-282)mA\n[ 1224.871810] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 475)\n[ 1224.871833] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-279)mA\n[ 1225.875721] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 467)\n[ 1225.875806] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-276)mA\n[ 1226.879828] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45c)\n[ 1226.879851] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-273)mA\n[ 1227.883793] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 450)\n[ 1227.883816] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[ 1228.887797] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 469)\n[ 1228.887820] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-276)mA\n[ 1229.891812] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 471)\n[ 1229.891835] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-278)mA\n[ 1230.895830] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 452)\n[ 1230.895853] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1231.839864] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1231.899793] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46f)\n[ 1231.899816] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-278)mA\n[ 1232.903695] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 474)\n[ 1232.903719] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-279)mA\n[ 1233.907730] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 465)\n[ 1233.907824] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-275)mA\n[ 1234.911835] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 467)\n[ 1234.911858] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-276)mA\n[ 1235.915801] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47f)\n[ 1235.915824] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-282)mA\n[ 1236.919810] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47b)\n[ 1236.919832] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-281)mA\n[ 1237.325778] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (231) data1 (117)\n[ 1237.326584] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3684), src (0x01)\n[ 1237.333483] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3684)\n[ 1237.333506] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2562) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1237.333523] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2562), ocv (37653)\n[ 1237.334805] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 459)\n[ 1237.334821] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[ 1237.337033] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 454), avg current (-271)mA\n[ 1237.337049] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2562)%\n[ 1237.338330] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (231) data1 (117)\n[ 1237.338979] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3684), src (0x01)\n[ 1237.340445] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[ 1237.341251] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[ 1237.343007] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (395)\n[ 1237.344926] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1237.347475] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (95) data1 (16)\n[ 1237.360351] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (69) data1 (3)\n[ 1237.360368] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2043)\n[ 1237.360386] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2557), previous soc (2562), diff (0), FG_mode(0)\n[ 1237.362636] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 454), avg current (-271)mA\n[ 1237.362653] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2557)%\n[ 1237.414921] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[ 1237.421358] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3684)\n[ 1237.422661] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (231) data1 (117)\n[ 1237.423319] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3684), src (0x01)\n[ 1237.424620] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 459)\n[ 1237.424637] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[ 1237.425313] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 25\n[ 1237.425332] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1237.442079] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1237.442103] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(25.5), raw_soc(25.5)\n[ 1237.442126] sec-battery battery: sec_bat_get_battery_info:Vnow(3684mV),Inow(-272mA),Imax(500mA),Ichg(500mA),SOC(25%),Tbat(380), Tusb(0), Tchg(395),Twpc(0)\n[ 1237.442148] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1237.442810] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(380)\n[ 1237.442826] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1237.442841] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1237.442861] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1237.442882] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1237.442908] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1237.442959] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1237.443118] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1237.923801] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 495)\n[ 1237.923823] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-287)mA\n[ 1238.927726] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 472)\n[ 1238.927792] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-278)mA\n[ 1239.931669] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 492)\n[ 1239.931693] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-286)mA\n[ 1240.935700] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 466)\n[ 1240.935723] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-275)mA\n[ 1241.939813] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 478)\n[ 1241.939837] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-280)mA\n[ 1242.847864] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1242.943726] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 452)\n[ 1242.943785] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1243.947732] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47a)\n[ 1243.947825] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-280)mA\n[ 1244.951825] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 495)\n[ 1244.951848] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-287)mA\n[ 1245.955799] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47b)\n[ 1245.955823] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-281)mA\n[ 1246.959704] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 480)\n[ 1246.959796] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-282)mA\n[ 1247.963808] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 480)\n[ 1247.963832] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-282)mA\n[ 1248.967835] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 483)\n[ 1248.967858] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-282)mA\n[ 1249.503840] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #42 42\n[ 1249.971830] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45d)\n[ 1249.971856] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-273)mA\n[ 1250.975834] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 457)\n[ 1250.975858] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[ 1251.979795] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 444)\n[ 1251.979819] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[ 1252.983808] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 482)\n[ 1252.983832] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-282)mA\n[ 1253.855860] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1253.987794] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 437)\n[ 1253.987817] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[ 1254.991826] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44a)\n[ 1254.991850] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-269)mA\n[ 1255.995794] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46f)\n[ 1255.995817] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-278)mA\n[ 1256.999827] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 439)\n[ 1256.999850] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[ 1258.003894] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 447)\n[ 1258.003917] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[ 1259.007857] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 447)\n[ 1259.007880] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[ 1260.011809] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 469)\n[ 1260.011833] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-276)mA\n[ 1261.015815] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 41f)\n[ 1261.015838] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-258)mA\n[ 1262.019831] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46d)\n[ 1262.019855] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-277)mA\n[ 1263.023810] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 475)\n[ 1263.023833] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-279)mA\n[ 1264.027831] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43c)\n[ 1264.027854] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[ 1264.831890] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1265.033609]  4032     3.2 C/MHz     96 mW    7.1 J   42.2 I/mJ    74.4 s\n               1352: \n[ 1267.445011] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (248) data1 (117)\n[ 1267.445806] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3686), src (0x01)\n[ 1267.453251] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3686)\n[ 1267.453272] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2557) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1267.453287] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2557), ocv (37651)\n[ 1267.454559] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fd)\n[ 1267.454575] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[ 1267.456769] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 44b), avg current (-269)mA\n[ 1267.456784] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2557)%\n[ 1267.458051] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (248) data1 (117)\n[ 1267.458694] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3686), src (0x01)\n[ 1267.460184] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[ 1267.460964] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[ 1267.462837] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (395)\n[ 1267.464928] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1267.467542] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (87) data1 (16)\n[ 1267.480416] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (66) data1 (3)\n[ 1267.480433] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2036)\n[ 1267.480449] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2553), previous soc (2557), diff (0), FG_mode(0)\n[ 1267.482675] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 44b), avg current (-269)mA\n[ 1267.482690] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2553)%\n[ 1267.535350] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[ 1267.542015] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3686)\n[ 1267.543308] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (248) data1 (117)\n[ 1267.543961] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3686), src (0x01)\n[ 1267.545249] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3fd)\n[ 1267.545264] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[ 1267.545932] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 25\n[ 1267.545950] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1267.562541] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1267.562561] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(25.5), raw_soc(25.5)\n[ 1267.562582] sec-battery battery: sec_bat_get_battery_info:Vnow(3686mV),Inow(-250mA),Imax(500mA),Ichg(500mA),SOC(25%),Tbat(380), Tusb(0), Tchg(395),Twpc(0)\n[ 1267.562603] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1267.563257] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(380)\n[ 1267.563272] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1267.563286] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1267.563305] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1267.563325] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1267.563349] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1267.563396] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1267.563467] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1269.142553] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 404)\n[ 1269.142574] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-251)mA\n[ 1270.146469] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 400)\n[ 1270.146491] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[ 1271.150344] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 400)\n[ 1271.150365] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-250)mA\n[ 1272.154234] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ed)\n[ 1272.154256] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-246)mA\n[ 1274.163308] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4b2)\n[ 1274.163330] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-294)mA\n[ 1275.167415] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 448)\n[ 1275.167437] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[ 1275.839852] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1276.171519] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 48f)\n[ 1276.171541] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-285)mA\n[ 1277.175539] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 481)\n[ 1277.175560] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-282)mA\n[ 1278.179582] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 48a)\n[ 1278.179604] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-284)mA\n[ 1279.183548] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46f)\n[ 1279.183570] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-278)mA\n[ 1279.583835] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #43 43\n[ 1280.187603] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 477)\n[ 1280.187626] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-280)mA\n[ 1281.191623] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 483)\n[ 1281.191645] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-282)mA\n[ 1282.195629] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46f)\n[ 1282.195651] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-278)mA\n[ 1283.199612] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 495)\n[ 1283.199634] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-287)mA\n[ 1284.203636] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 48c)\n[ 1284.203657] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-285)mA\n[ 1285.207580] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 482)\n[ 1285.207602] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-282)mA\n[ 1286.211599] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 482)\n[ 1286.211622] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-282)mA\n[ 1286.847841] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1287.215337] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47c)\n[ 1287.215358] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-281)mA\n[ 1288.219424] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47d)\n[ 1288.219447] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-281)mA\n[ 1289.223436] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 487)\n[ 1289.223457] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-283)mA\n[ 1290.227496] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4ab)\n[ 1290.227518] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-292)mA\n[ 1291.231513] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46a)\n[ 1291.231536] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-276)mA\n[ 1292.235525] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 48d)\n[ 1292.235547] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-285)mA\n[ 1293.239548] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 485)\n[ 1293.239570] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-283)mA\n[ 1294.243465] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 48e)\n[ 1294.243487] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-285)mA\n[ 1295.247493] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 49e)\n[ 1295.247516] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-289)mA\n[ 1296.251529] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 492)\n[ 1296.251551] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-286)mA\n[ 1297.255540] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 471)\n[ 1297.255562] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-278)mA\n[ 1297.565174] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (228) data1 (117)\n[ 1297.565974] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3684), src (0x01)\n[ 1297.572437] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3684)\n[ 1297.572457] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2553) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1297.572473] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2553), ocv (37650)\n[ 1297.573749] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 486)\n[ 1297.573764] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-283)mA\n[ 1297.575968] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 464), avg current (-275)mA\n[ 1297.575983] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2553)%\n[ 1297.577257] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (228) data1 (117)\n[ 1297.577902] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3684), src (0x01)\n[ 1297.579355] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[ 1297.580202] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[ 1297.581955] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (396)\n[ 1297.583867] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1297.586400] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (79) data1 (16)\n[ 1297.599264] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (63) data1 (3)\n[ 1297.599281] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2028)\n[ 1297.599298] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2548), previous soc (2553), diff (0), FG_mode(0)\n[ 1297.601539] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 464), avg current (-275)mA\n[ 1297.601555] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2548)%\n[ 1297.653802] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[ 1297.660270] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3684)\n[ 1297.661566] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (228) data1 (117)\n[ 1297.662222] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3684), src (0x01)\n[ 1297.663517] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 486)\n[ 1297.663533] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-283)mA\n[ 1297.664205] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 25\n[ 1297.664224] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1297.680896] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1297.680917] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(25.4), raw_soc(25.4)\n[ 1297.680938] sec-battery battery: sec_bat_get_battery_info:Vnow(3684mV),Inow(-283mA),Imax(500mA),Ichg(500mA),SOC(25%),Tbat(380), Tusb(0), Tchg(396),Twpc(0)\n[ 1297.680959] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1297.681617] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(380)\n[ 1297.681633] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1297.681646] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1297.681665] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1297.681686] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1297.681711] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1297.681762] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1297.681918] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1297.823849] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1298.259494] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4bf)\n[ 1298.259516] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-297)mA\n[ 1299.263463] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 471)\n[ 1299.263485] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-278)mA\n[ 1300.267511] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 48e)\n[ 1300.267533] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-285)mA\n[ 1301.271488] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 49f)\n[ 1301.271510] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-289)mA\n[ 1302.275509] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 461)\n[ 1302.275531] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-274)mA\n[ 1303.279554] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45a)\n[ 1303.279575] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[ 1304.283467] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 495)\n[ 1304.283489] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-287)mA\n[ 1305.287503] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 478)\n[ 1305.287525] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-280)mA\n[ 1306.291524] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46d)\n[ 1306.291546] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-277)mA\n[ 1307.295540] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 488)\n[ 1307.295562] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-284)mA\n[ 1308.299458] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47a)\n[ 1308.299480] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-280)mA\n[ 1308.831834] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1309.303490] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 489)\n[ 1309.303512] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-284)mA\n[ 1309.663788] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #44 44\n[ 1310.307519] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4a0)\n[ 1310.307541] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-290)mA\n[ 1311.311577] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 495)\n[ 1311.311601] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-287)mA\n[ 1312.315573] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46d)\n[ 1312.315595] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-277)mA\n[ 1313.319540] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 48f)\n[ 1313.319562] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-285)mA\n[ 1314.323509] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4a2)\n[ 1314.323530] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-290)mA\n[ 1315.327539] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 499)\n[ 1315.327561] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-288)mA\n[ 1316.331518] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 48f)\n[ 1316.331539] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-285)mA\n[ 1317.335538] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 495)\n[ 1317.335560] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-287)mA\n[ 1318.339544] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 493)\n[ 1318.339567] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-286)mA\n[ 1319.343592] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 479)\n[ 1319.343614] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-280)mA\n[ 1319.839805] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1320.347549] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45b)\n[ 1320.347570] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-273)mA\n[ 1321.351517] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 48c)\n[ 1321.351539] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-285)mA\n[ 1322.355584] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46d)\n[ 1322.355606] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-277)mA\n[ 1323.359545] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 478)\n[ 1323.359568] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-280)mA\n[ 1324.363516] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47e)\n[ 1324.363538] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-281)mA\n[ 1325.367535] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 475)\n[ 1325.367557] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-279)mA\n[ 1326.371622] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47d)\n[ 1326.371643] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-281)mA\n[ 1327.375556] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4b0)\n[ 1327.375578] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-293)mA\n[ 1327.683648] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (219) data1 (117)\n[ 1327.684447] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3682), src (0x01)\n[ 1327.690947] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3682)\n[ 1327.690968] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2548) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1327.690984] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2548), ocv (37648)\n[ 1327.692262] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 49c)\n[ 1327.692278] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-289)mA\n[ 1327.694483] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 470), avg current (-278)mA\n[ 1327.694498] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2548)%\n[ 1327.695772] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (219) data1 (117)\n[ 1327.696417] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3682), src (0x01)\n[ 1327.697710] sec-battery battery: sec_bat_get_value_by_adc: Temp(379), Temp-ADC(1463)\n[ 1327.698346] sec-battery battery: sec_bat_get_value_by_adc: Temp(379), Temp-ADC(1463)\n[ 1327.700111] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (396)\n[ 1327.702023] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1327.704555] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (71) data1 (16)\n[ 1327.717772] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (60) data1 (3)\n[ 1327.717789] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2021)\n[ 1327.717805] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2543), previous soc (2548), diff (0), FG_mode(0)\n[ 1327.720512] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 470), avg current (-278)mA\n[ 1327.720529] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2543)%\n[ 1327.772773] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[ 1327.779153] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3682)\n[ 1327.780443] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (219) data1 (117)\n[ 1327.781095] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3682), src (0x01)\n[ 1327.782385] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 49c)\n[ 1327.782400] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-289)mA\n[ 1327.783067] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 25\n[ 1327.783086] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1327.799695] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1327.799717] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(25.4), raw_soc(25.4)\n[ 1327.799761] sec-battery battery: sec_bat_get_battery_info:Vnow(3682mV),Inow(-289mA),Imax(500mA),Ichg(500mA),SOC(25%),Tbat(379), Tusb(0), Tchg(396),Twpc(0)\n[ 1327.799782] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1327.800449] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(379)\n[ 1327.800464] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1327.800477] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1327.800497] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1327.800517] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1327.800541] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1327.800591] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1327.800741] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1328.379492] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 475)\n[ 1328.379514] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-279)mA\n[ 1329.383458] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 465)\n[ 1329.383480] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-275)mA\n[ 1330.387517] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 48d)\n[ 1330.387539] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-285)mA\n[ 1330.847822] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1331.391540] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 49e)\n[ 1331.391563] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-289)mA\n[ 1332.395328] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 48a)\n[ 1332.395350] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-284)mA\n[ 1333.399413] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 481)\n[ 1333.399436] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-282)mA\n[ 1334.403278] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 483)\n[ 1334.403300] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-282)mA\n[ 1335.407303] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 477)\n[ 1335.407325] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-280)mA\n[ 1336.411176] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 469)\n[ 1336.411197] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-276)mA\n[ 1337.415191] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47b)\n[ 1337.415213] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-281)mA\n[ 1338.419081] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 468)\n[ 1338.419103] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-276)mA\n[ 1339.423080] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45a)\n[ 1339.423102] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[ 1339.743831] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #45 45\n[ 1340.426941] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 478)\n[ 1340.426963] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-280)mA\n[ 1341.430824] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 487)\n[ 1341.430846] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-283)mA\n[ 1341.855838] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1342.436407]  4368     3.2 C/MHz    121 mW    8.3 J   36.0 I/mJ    68.7 s\n               1482: \n[ 1346.545216] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f8)\n[ 1346.545233] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-249)mA\n[ 1347.549055] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3f1)\n[ 1347.549076] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-247)mA\n[ 1348.552825] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e4)\n[ 1348.552846] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-244)mA\n[ 1349.556683] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 429)\n[ 1349.556704] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[ 1351.565695] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 499)\n[ 1351.565715] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-288)mA\n[ 1352.569669] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4cb)\n[ 1352.569689] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-300)mA\n[ 1352.831835] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1353.573555] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4cf)\n[ 1353.573575] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-301)mA\n[ 1354.577413] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 49d)\n[ 1354.577433] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-289)mA\n[ 1355.581209] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4a3)\n[ 1355.581230] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-290)mA\n[ 1356.585068] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4ce)\n[ 1356.585089] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-301)mA\n[ 1357.588927] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 49f)\n[ 1357.588948] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-289)mA\n[ 1357.802436] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (213) data1 (117)\n[ 1357.803230] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3682), src (0x01)\n[ 1357.809895] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3682)\n[ 1357.809915] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2543) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1357.809929] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2543), ocv (37646)\n[ 1357.811202] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 49a)\n[ 1357.811216] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-288)mA\n[ 1357.813413] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 465), avg current (-275)mA\n[ 1357.813427] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2543)%\n[ 1357.814695] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (213) data1 (117)\n[ 1357.815337] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3682), src (0x01)\n[ 1357.816774] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[ 1357.817555] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[ 1357.819297] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (396)\n[ 1357.821203] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1357.823757] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (63) data1 (16)\n[ 1357.836610] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (56) data1 (3)\n[ 1357.836624] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2011)\n[ 1357.836640] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2538), previous soc (2543), diff (0), FG_mode(0)\n[ 1357.838868] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 465), avg current (-275)mA\n[ 1357.838881] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2538)%\n[ 1357.891122] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[ 1357.897507] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3682)\n[ 1357.898797] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (213) data1 (117)\n[ 1357.899448] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3682), src (0x01)\n[ 1357.900735] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 49a)\n[ 1357.900750] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-288)mA\n[ 1357.901418] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 25\n[ 1357.901434] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1357.918034] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1357.918053] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(25.3), raw_soc(25.3)\n[ 1357.918072] sec-battery battery: sec_bat_get_battery_info:Vnow(3682mV),Inow(-288mA),Imax(500mA),Ichg(500mA),SOC(25%),Tbat(380), Tusb(0), Tchg(396),Twpc(0)\n[ 1357.918091] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1357.918745] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(380)\n[ 1357.918759] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1357.918772] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1357.918789] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1357.918807] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1357.918830] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1357.918876] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1357.919021] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1358.592757] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4e9)\n[ 1358.592778] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-307)mA\n[ 1359.596533] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4aa)\n[ 1359.596554] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-292)mA\n[ 1360.600383] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 49e)\n[ 1360.600404] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-289)mA\n[ 1361.604248] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4e7)\n[ 1361.604269] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-307)mA\n[ 1362.608094] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4a8)\n[ 1362.608115] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-292)mA\n[ 1363.612022] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4be)\n[ 1363.612043] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-297)mA\n[ 1363.839851] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1364.615892] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4be)\n[ 1364.615913] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-297)mA\n[ 1365.619782] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4b9)\n[ 1365.619803] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-296)mA\n[ 1366.623623] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 451)\n[ 1366.623643] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[ 1367.627543] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4a7)\n[ 1367.627563] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-291)mA\n[ 1368.631462] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 488)\n[ 1368.631483] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-284)mA\n[ 1369.635440] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 49b)\n[ 1369.635460] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-288)mA\n[ 1369.823826] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #46 46\n[ 1370.639392] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4ac)\n[ 1370.639413] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-292)mA\n[ 1371.643412] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4aa)\n[ 1371.643432] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-292)mA\n[ 1372.647397] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4af)\n[ 1372.647418] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-293)mA\n[ 1373.651316] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4b2)\n[ 1373.651337] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-294)mA\n[ 1374.655310] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4a8)\n[ 1374.655331] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-292)mA\n[ 1374.847853] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1375.659303] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4cc)\n[ 1375.659325] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-300)mA\n[ 1376.663308] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 498)\n[ 1376.663329] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-288)mA\n[ 1377.667241] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4cf)\n[ 1377.667262] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-301)mA\n[ 1378.671259] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4aa)\n[ 1378.671280] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-292)mA\n[ 1379.675245] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 49a)\n[ 1379.675266] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-288)mA\n[ 1380.679240] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4d5)\n[ 1380.679261] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-303)mA\n[ 1381.683245] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4a8)\n[ 1381.683266] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-292)mA\n[ 1382.687230] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4a4)\n[ 1382.687251] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-291)mA\n[ 1383.691215] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4a9)\n[ 1383.691236] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-292)mA\n[ 1384.695136] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4b9)\n[ 1384.695157] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-296)mA\n[ 1385.699102] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4a4)\n[ 1385.699123] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-291)mA\n[ 1385.823851] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1386.703101] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4b5)\n[ 1386.703122] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-295)mA\n[ 1387.707068] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4b9)\n[ 1387.707089] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-296)mA\n[ 1387.920711] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (206) data1 (117)\n[ 1387.921501] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3681), src (0x01)\n[ 1387.927905] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3680)\n[ 1387.927925] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2538) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1387.927939] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2538), ocv (37644)\n[ 1387.929206] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46f)\n[ 1387.929220] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-278)mA\n[ 1387.931404] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 49b), avg current (-288)mA\n[ 1387.931417] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2538)%\n[ 1387.932684] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (206) data1 (117)\n[ 1387.933323] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3681), src (0x01)\n[ 1387.934756] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[ 1387.935536] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[ 1387.937269] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (398)\n[ 1387.939164] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1387.941692] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (55) data1 (16)\n[ 1387.954527] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (53) data1 (3)\n[ 1387.954542] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (2004)\n[ 1387.954557] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2533), previous soc (2538), diff (0), FG_mode(0)\n[ 1387.956773] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 49b), avg current (-288)mA\n[ 1387.956787] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2533)%\n[ 1388.009034] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[ 1388.015387] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3680)\n[ 1388.016670] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (206) data1 (117)\n[ 1388.017319] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3681), src (0x01)\n[ 1388.018602] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46f)\n[ 1388.018616] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-278)mA\n[ 1388.019280] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 25\n[ 1388.019297] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1388.035818] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1388.035838] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(25.3), raw_soc(25.3)\n[ 1388.035858] sec-battery battery: sec_bat_get_battery_info:Vnow(3681mV),Inow(-278mA),Imax(500mA),Ichg(500mA),SOC(25%),Tbat(380), Tusb(0), Tchg(398),Twpc(0)\n[ 1388.035877] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1388.036529] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(380)\n[ 1388.036542] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1388.036555] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1388.036573] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1388.036591] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1388.036613] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1388.036660] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1388.036803] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1388.711087] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4af)\n[ 1388.711108] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-293)mA\n[ 1389.714990] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4ae)\n[ 1389.715010] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-293)mA\n[ 1390.718729] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 480)\n[ 1390.718749] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-282)mA\n[ 1391.721821] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4b2)\n[ 1391.721842] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-294)mA\n[ 1392.725678] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4b3)\n[ 1392.725698] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-294)mA\n[ 1393.729561] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4aa)\n[ 1393.729582] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-292)mA\n[ 1394.733452] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4be)\n[ 1394.733473] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-297)mA\n[ 1395.737196] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4b9)\n[ 1395.737217] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-296)mA\n[ 1396.741051] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4be)\n[ 1396.741072] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-297)mA\n[ 1396.831861] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1397.744920] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4ac)\n[ 1397.744940] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-292)mA\n[ 1398.748768] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4b5)\n[ 1398.748789] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-295)mA\n[ 1399.752660] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4cc)\n[ 1399.752681] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-300)mA\n[ 1399.903845] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #47 47\n[ 1400.756551] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4aa)\n[ 1400.756572] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-292)mA\n[ 1401.760427] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 49c)\n[ 1401.760447] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-289)mA\n[ 1402.764307] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4b8)\n[ 1402.764329] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-295)mA\n[ 1403.768159] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4ac)\n[ 1403.768179] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-292)mA\n[ 1404.772001] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4c8)\n[ 1404.772022] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-299)mA\n[ 1405.775857] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4cf)\n[ 1405.775877] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-301)mA\n[ 1406.779649] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4d8)\n[ 1406.779669] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-303)mA\n[ 1407.783564] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4c4)\n[ 1407.783585] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-298)mA\n[ 1407.839840] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1408.787503] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4c5)\n[ 1408.787524] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-299)mA\n[ 1409.791470] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4a2)\n[ 1409.791491] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-290)mA\n[ 1410.795492] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4db)\n[ 1410.795512] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-304)mA\n[ 1411.799448] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4b5)\n[ 1411.799469] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-295)mA\n[ 1412.803425] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4ae)\n[ 1412.803446] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-293)mA\n[ 1413.808745]  4785     3.2 C/MHz    164 mW   10.3 J   29.3 I/mJ    62.7 s\n               1586: \n[ 1417.917728] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 409)\n[ 1417.917743] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[ 1418.038655] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (230) data1 (117)\n[ 1418.039441] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3684), src (0x01)\n[ 1418.046417] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3684)\n[ 1418.046436] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2533) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1418.046449] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2533), ocv (37642)\n[ 1418.047713] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 409)\n[ 1418.047764] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-253)mA\n[ 1418.049943] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 47b), avg current (-281)mA\n[ 1418.049956] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2533)%\n[ 1418.051215] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (230) data1 (117)\n[ 1418.051854] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3684), src (0x01)\n[ 1418.053365] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[ 1418.054074] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[ 1418.055948] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (398)\n[ 1418.057914] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1418.060457] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (47) data1 (16)\n[ 1418.073304] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (50) data1 (3)\n[ 1418.073317] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (1997)\n[ 1418.073331] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2528), previous soc (2533), diff (0), FG_mode(0)\n[ 1418.075538] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 47b), avg current (-281)mA\n[ 1418.075551] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2528)%\n[ 1418.128366] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3687)\n[ 1418.134984] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3684)\n[ 1418.136264] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (230) data1 (117)\n[ 1418.136962] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3684), src (0x01)\n[ 1418.138341] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45d)\n[ 1418.138354] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-273)mA\n[ 1418.139065] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 25\n[ 1418.139081] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1418.155708] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1418.155762] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(25.2), raw_soc(25.2)\n[ 1418.155780] sec-battery battery: sec_bat_get_battery_info:Vnow(3684mV),Inow(-253mA),Imax(500mA),Ichg(500mA),SOC(25%),Tbat(380), Tusb(0), Tchg(398),Twpc(0)\n[ 1418.155799] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1418.156450] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(380)\n[ 1418.156463] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1418.156474] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1418.156491] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1418.156509] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1418.156530] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1418.156574] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1418.156639] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1418.847874] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1418.921551] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 40e)\n[ 1418.921571] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-254)mA\n[ 1419.925461] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 435)\n[ 1419.925480] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-263)mA\n[ 1420.929263] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 419)\n[ 1420.929283] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-257)mA\n[ 1422.938137] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4eb)\n[ 1422.938156] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-308)mA\n[ 1423.942003] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4ef)\n[ 1423.942024] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-309)mA\n[ 1424.945809] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 512)\n[ 1424.945829] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-317)mA\n[ 1425.949603] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 505)\n[ 1425.949622] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-314)mA\n[ 1426.953490] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 50a)\n[ 1426.953510] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-315)mA\n[ 1427.957294] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 51e)\n[ 1427.957314] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-320)mA\n[ 1428.961104] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4ed)\n[ 1428.961124] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-308)mA\n[ 1429.855847] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1429.964999] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 527)\n[ 1429.965019] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-323)mA\n[ 1429.983819] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #48 48\n[ 1430.968818] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4db)\n[ 1430.968838] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-304)mA\n[ 1431.972640] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 51e)\n[ 1431.972659] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-320)mA\n[ 1432.976351] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4e0)\n[ 1432.976371] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-305)mA\n[ 1433.980177] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4da)\n[ 1433.980197] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-304)mA\n[ 1434.983996] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4cf)\n[ 1434.984016] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-301)mA\n[ 1435.987819] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4fc)\n[ 1435.987838] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-312)mA\n[ 1436.991576] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 500)\n[ 1436.991596] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-313)mA\n[ 1437.995497] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4f0)\n[ 1437.995517] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-309)mA\n[ 1438.999474] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4a9)\n[ 1438.999494] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-292)mA\n[ 1440.003451] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4e0)\n[ 1440.003471] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-305)mA\n[ 1440.831836] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1441.007449] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4d8)\n[ 1441.007469] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-303)mA\n[ 1442.011410] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 509)\n[ 1442.011429] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-315)mA\n[ 1443.015401] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4e3)\n[ 1443.015420] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-306)mA\n[ 1444.019403] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4f6)\n[ 1444.019423] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-311)mA\n[ 1445.023405] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4d1)\n[ 1445.023425] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-302)mA\n[ 1446.027393] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4b6)\n[ 1446.027414] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-295)mA\n[ 1447.031381] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4db)\n[ 1447.031401] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-304)mA\n[ 1448.035431] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4d9)\n[ 1448.035451] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-303)mA\n[ 1448.158321] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (187) data1 (117)\n[ 1448.159109] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3679), src (0x01)\n[ 1448.165476] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3678)\n[ 1448.165494] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2528) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1448.165508] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2528), ocv (37640)\n[ 1448.166776] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4cd)\n[ 1448.166789] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-301)mA\n[ 1448.168982] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 4cf), avg current (-301)mA\n[ 1448.168995] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2528)%\n[ 1448.170261] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (187) data1 (117)\n[ 1448.170900] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3679), src (0x01)\n[ 1448.172175] sec-battery battery: sec_bat_get_value_by_adc: Temp(379), Temp-ADC(1464)\n[ 1448.172793] sec-battery battery: sec_bat_get_value_by_adc: Temp(379), Temp-ADC(1464)\n[ 1448.174523] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (399)\n[ 1448.176419] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1448.178940] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (39) data1 (16)\n[ 1448.191782] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (47) data1 (3)\n[ 1448.191796] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (1989)\n[ 1448.191811] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2523), previous soc (2528), diff (0), FG_mode(0)\n[ 1448.194030] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 4cf), avg current (-301)mA\n[ 1448.194043] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2523)%\n[ 1448.246271] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3683)\n[ 1448.252882] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3678)\n[ 1448.254168] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (187) data1 (117)\n[ 1448.254818] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3679), src (0x01)\n[ 1448.256101] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4cd)\n[ 1448.256115] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-301)mA\n[ 1448.256777] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 25\n[ 1448.256794] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1448.273356] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1448.273376] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(25.2), raw_soc(25.2)\n[ 1448.273394] sec-battery battery: sec_bat_get_battery_info:Vnow(3679mV),Inow(-301mA),Imax(500mA),Ichg(500mA),SOC(25%),Tbat(379), Tusb(0), Tchg(399),Twpc(0)\n[ 1448.273413] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1448.274066] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(379)\n[ 1448.274078] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1448.274091] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1448.274107] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1448.274124] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1448.274145] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1448.274189] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1448.274332] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1449.039391] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 514)\n[ 1449.039410] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-318)mA\n[ 1450.043290] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 512)\n[ 1450.043310] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-317)mA\n[ 1451.047288] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4e1)\n[ 1451.047308] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-305)mA\n[ 1451.839849] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1452.051102] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 50e)\n[ 1452.051121] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-316)mA\n[ 1453.055058] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4d9)\n[ 1453.055078] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-303)mA\n[ 1454.059004] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4df)\n[ 1454.059024] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-305)mA\n[ 1455.062756] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4c1)\n[ 1455.062776] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-298)mA\n[ 1456.066563] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4df)\n[ 1456.066582] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-305)mA\n[ 1457.070363] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 500)\n[ 1457.070382] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-313)mA\n[ 1458.074210] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4d9)\n[ 1458.074229] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-303)mA\n[ 1459.078015] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4f3)\n[ 1459.078035] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-310)mA\n[ 1460.063836] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #49 49\n[ 1460.081819] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4ef)\n[ 1460.081838] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-309)mA\n[ 1461.085656] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4ea)\n[ 1461.085677] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-308)mA\n[ 1462.089600] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4e7)\n[ 1462.089619] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-307)mA\n[ 1462.847832] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1463.093459] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 502)\n[ 1463.093479] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-313)mA\n[ 1464.097277] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4d9)\n[ 1464.097297] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-303)mA\n[ 1465.101092] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4fc)\n[ 1465.101112] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-312)mA\n[ 1466.104872] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 502)\n[ 1466.104892] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-313)mA\n[ 1467.108684] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 50b)\n[ 1467.108703] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-316)mA\n[ 1468.112586] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4d1)\n[ 1468.112606] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-302)mA\n[ 1469.116383] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4d6)\n[ 1469.116402] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-303)mA\n[ 1470.120200] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4da)\n[ 1470.120220] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-304)mA\n[ 1471.124011] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4e2)\n[ 1471.124031] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-306)mA\n[ 1472.127824] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4d6)\n[ 1472.127844] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-303)mA\n[ 1473.131637] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 519)\n[ 1473.131656] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-319)mA\n[ 1473.823848] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1474.135500] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 503)\n[ 1474.135520] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-314)mA\n[ 1475.139429] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 508)\n[ 1475.139449] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-315)mA\n[ 1476.143430] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4e6)\n[ 1476.143450] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-307)mA\n[ 1477.147337] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4d5)\n[ 1477.147357] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-303)mA\n[ 1478.151327] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4ec)\n[ 1478.151347] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-308)mA\n[ 1478.276014] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (179) data1 (117)\n[ 1478.276806] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3678), src (0x01)\n[ 1478.283452] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3678)\n[ 1478.283471] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2523) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1478.283485] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2523), ocv (37639)\n[ 1478.284754] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4ec)\n[ 1478.284768] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-308)mA\n[ 1478.286957] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 4e1), avg current (-305)mA\n[ 1478.286970] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2523)%\n[ 1478.288235] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (179) data1 (117)\n[ 1478.288874] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3678), src (0x01)\n[ 1478.290303] sec-battery battery: sec_bat_get_value_by_adc: Temp(379), Temp-ADC(1463)\n[ 1478.291077] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[ 1478.292817] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (400)\n[ 1478.294715] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1478.297233] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (29) data1 (16)\n[ 1478.310083] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (43) data1 (3)\n[ 1478.310096] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (1979)\n[ 1478.310112] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2517), previous soc (2523), diff (0), FG_mode(0)\n[ 1478.312330] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 4e1), avg current (-305)mA\n[ 1478.312343] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2517)%\n[ 1478.364570] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3683)\n[ 1478.370929] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3678)\n[ 1478.372213] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (179) data1 (117)\n[ 1478.372862] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3678), src (0x01)\n[ 1478.374145] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 582)\n[ 1478.374158] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-345)mA\n[ 1478.374821] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 25\n[ 1478.374837] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1478.391388] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1478.391406] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(25.1), raw_soc(25.1)\n[ 1478.391424] sec-battery battery: sec_bat_get_battery_info:Vnow(3678mV),Inow(-308mA),Imax(500mA),Ichg(500mA),SOC(25%),Tbat(379), Tusb(0), Tchg(400),Twpc(0)\n[ 1478.391443] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1478.392095] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(379)\n[ 1478.392109] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1478.392121] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1478.392138] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1478.392155] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1478.392176] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1478.392220] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1478.392360] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1479.155253] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4dc)\n[ 1479.155272] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-304)mA\n[ 1480.159220] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4d4)\n[ 1480.159239] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-302)mA\n[ 1481.166433] Trustonic TEE: __mc_switch_core: <- cpu=0x00000000, active_cpu=0x00000001\n\n[ 1481.166645] Trustonic TEE: mc_exec_core_switch: CoreSwap ok 1 -> 0\n[ 1481.167884] set_state_shutdown: mct_tick_stop (cpu1)\n[ 1481.168107] CPU1: shutdown\n[ 1481.170842] Detected VIPT I-cache on CPU6\n[ 1481.170886] set_state_shutdown: mct_tick_stop (cpu6)\n[ 1481.170895] set_state_shutdown: mct_tick_stop (cpu6)\n[ 1481.170921] CPU6: Booted secondary processor [410fd092]\n[ 1481.171608] exynos_acme: CPUFREQ domain1 registered\n[ 1482.190746]  5122     3.2 C/MHz    216 mW   12.6 J   23.7 I/mJ    58.6 s\n               \n               \n               ===== CPU 6 =====\n               Frequencies: 936 1144 1352 1560 1664 1768\n               \n                936: \n[ 1484.832074] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1486.304062] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3c0)\n[ 1486.304174] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-235)mA\n[ 1487.309676] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 397)\n[ 1487.309727] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-225)mA\n[ 1488.315200] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 390)\n[ 1488.315252] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-223)mA\n[ 1489.321048] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3c5)\n[ 1489.321102] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-236)mA\n[ 1490.143961] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #50 50\n[ 1491.337156] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45d)\n[ 1491.337210] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-273)mA\n[ 1492.342809] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 458)\n[ 1492.342863] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[ 1493.348511] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46b)\n[ 1493.348566] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-277)mA\n[ 1494.354162] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 421)\n[ 1494.354217] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-259)mA\n[ 1495.359663] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47a)\n[ 1495.359717] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-280)mA\n[ 1495.839992] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1496.365379] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 452)\n[ 1496.365434] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1497.163882] thermal thermal_zone0: [TMU] last_temperature=44000, current_temperature=44000\n[ 1497.370830] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45d)\n[ 1497.370885] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-273)mA\n[ 1498.376533] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 479)\n[ 1498.376588] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-280)mA\n[ 1499.381920] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 478)\n[ 1499.381975] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-280)mA\n[ 1500.387369] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 470)\n[ 1500.387425] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-278)mA\n[ 1501.393053] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46d)\n[ 1501.393108] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-277)mA\n[ 1502.398662] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 460)\n[ 1502.398718] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-274)mA\n[ 1503.404442] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 455)\n[ 1503.404497] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1504.410195] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45d)\n[ 1504.410250] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-273)mA\n[ 1505.415641] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 427)\n[ 1505.415697] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[ 1506.421218] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 444)\n[ 1506.421273] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[ 1506.847990] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1507.426772] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 46c)\n[ 1507.426827] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-277)mA\n[ 1508.394437] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (209) data1 (117)\n[ 1508.395341] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3681), src (0x01)\n[ 1508.402556] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3680)\n[ 1508.402612] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2517) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1508.402655] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2517), ocv (37636)\n[ 1508.404062] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43c)\n[ 1508.404106] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[ 1508.406519] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 44f), avg current (-270)mA\n[ 1508.406562] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2517)%\n[ 1508.407959] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (209) data1 (117)\n[ 1508.408709] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3681), src (0x01)\n[ 1508.410256] sec-battery battery: sec_bat_get_value_by_adc: Temp(379), Temp-ADC(1463)\n[ 1508.411052] sec-battery battery: sec_bat_get_value_by_adc: Temp(379), Temp-ADC(1463)\n[ 1508.413055] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (397)\n[ 1508.415222] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1508.418083] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (21) data1 (16)\n[ 1508.432789] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43c)\n[ 1508.432842] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[ 1508.434924] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (41) data1 (3)\n[ 1508.434976] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (1975)\n[ 1508.435021] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2512), previous soc (2517), diff (0), FG_mode(0)\n[ 1508.437874] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 44f), avg current (-270)mA\n[ 1508.437921] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2512)%\n[ 1508.491047] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3683)\n[ 1508.498294] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3680)\n[ 1508.499857] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (209) data1 (117)\n[ 1508.500621] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3681), src (0x01)\n[ 1508.502095] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43c)\n[ 1508.502137] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[ 1508.502930] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 25\n[ 1508.502981] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1508.521704] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1508.521763] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(25.1), raw_soc(25.1)\n[ 1508.521822] sec-battery battery: sec_bat_get_battery_info:Vnow(3681mV),Inow(-265mA),Imax(500mA),Ichg(500mA),SOC(25%),Tbat(379), Tusb(0), Tchg(397),Twpc(0)\n[ 1508.521873] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1508.522635] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(379)\n[ 1508.522676] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1508.522713] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1508.522765] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1508.522820] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1508.522884] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1508.523001] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1508.523340] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1509.438314] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 441)\n[ 1509.438367] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[ 1510.444067] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45a)\n[ 1510.444121] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[ 1511.449524] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 450)\n[ 1511.449580] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[ 1512.455047] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 467)\n[ 1512.455103] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-276)mA\n[ 1513.460948] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 426)\n[ 1513.461003] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-260)mA\n[ 1514.466521] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 437)\n[ 1514.466576] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-264)mA\n[ 1515.472419] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 459)\n[ 1515.472474] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[ 1516.478031] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 450)\n[ 1516.478085] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[ 1517.483447] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 444)\n[ 1517.483502] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[ 1517.855997] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1518.489163] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 441)\n[ 1518.489217] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[ 1519.494714] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 42b)\n[ 1519.494769] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-261)mA\n[ 1520.223930] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #51 51\n[ 1520.500372] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 487)\n[ 1520.500426] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-283)mA\n[ 1521.505947] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 475)\n[ 1521.506002] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-279)mA\n[ 1522.511456] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 457)\n[ 1522.511546] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[ 1523.517202] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47e)\n[ 1523.517257] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-281)mA\n[ 1524.522673] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 452)\n[ 1524.522728] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1525.528461] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 464)\n[ 1525.528516] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-275)mA\n[ 1526.534054] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 491)\n[ 1526.534109] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-286)mA\n[ 1527.539588] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 440)\n[ 1527.539644] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-266)mA\n[ 1528.545172] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 43c)\n[ 1528.545226] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-265)mA\n[ 1528.831951] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1529.550704] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 430)\n[ 1529.550758] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-262)mA\n[ 1530.556433] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44e)\n[ 1530.556487] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-270)mA\n[ 1531.562011] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47a)\n[ 1531.562066] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-280)mA\n[ 1532.567492] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45f)\n[ 1532.567548] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-274)mA\n[ 1533.573153] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 445)\n[ 1533.573209] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[ 1534.578704] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 480)\n[ 1534.578758] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-282)mA\n[ 1535.584429] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47f)\n[ 1535.584483] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-282)mA\n[ 1536.590255] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 467)\n[ 1536.590308] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-276)mA\n[ 1537.595918] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 469)\n[ 1537.595972] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-276)mA\n[ 1538.525445] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (203) data1 (117)\n[ 1538.526345] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3681), src (0x01)\n[ 1538.533881] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3680)\n[ 1538.533939] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2512) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1538.533982] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2512), ocv (37635)\n[ 1538.535382] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 444)\n[ 1538.535425] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[ 1538.537834] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 44f), avg current (-270)mA\n[ 1538.537877] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2512)%\n[ 1538.539277] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (203) data1 (117)\n[ 1538.540002] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3681), src (0x01)\n[ 1538.541544] sec-battery battery: sec_bat_get_value_by_adc: Temp(379), Temp-ADC(1463)\n[ 1538.542337] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[ 1538.544339] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (397)\n[ 1538.546513] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1538.549383] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (15) data1 (16)\n[ 1538.562646] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (38) data1 (3)\n[ 1538.562691] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (1967)\n[ 1538.562736] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2509), previous soc (2512), diff (0), FG_mode(0)\n[ 1538.565257] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 44f), avg current (-270)mA\n[ 1538.565299] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2509)%\n[ 1538.600701] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 444)\n[ 1538.600754] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[ 1538.619219] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3683)\n[ 1538.626389] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3680)\n[ 1538.627871] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (203) data1 (117)\n[ 1538.628630] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3681), src (0x01)\n[ 1538.630097] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 444)\n[ 1538.630140] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-267)mA\n[ 1538.630930] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 25\n[ 1538.630983] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1538.649653] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1538.649712] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(25.0), raw_soc(25.0)\n[ 1538.649770] sec-battery battery: sec_bat_get_battery_info:Vnow(3681mV),Inow(-267mA),Imax(500mA),Ichg(500mA),SOC(25%),Tbat(379), Tusb(0), Tchg(397),Twpc(0)\n[ 1538.649822] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1538.650588] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(379)\n[ 1538.650628] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1538.650665] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1538.650717] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1538.650773] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1538.650837] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1538.650956] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1538.651300] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1539.606269] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 455)\n[ 1539.606322] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1539.839988] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1540.612096] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 44a)\n[ 1540.612152] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-269)mA\n[ 1541.617650] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 461)\n[ 1541.617705] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-274)mA\n[ 1542.623181] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47a)\n[ 1542.623235] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-280)mA\n[ 1543.628898] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 458)\n[ 1543.628954] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-272)mA\n[ 1544.634671] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 448)\n[ 1544.634726] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-268)mA\n[ 1545.640388] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 464)\n[ 1545.640443] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-275)mA\n[ 1546.645989] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 45e)\n[ 1546.646043] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-273)mA\n[ 1547.651534] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 469)\n[ 1547.651589] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-276)mA\n[ 1548.657211] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 454)\n[ 1548.657266] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1549.662679] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 470)\n[ 1549.662733] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-278)mA\n[ 1550.303940] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #52 52\n[ 1550.674306]  5002     5.3 C/MHz     83 mW    5.0 J   59.9 I/mJ    60.0 s\n               1144: \n[ 1550.847979] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1554.787070] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 382)\n[ 1554.787125] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-220)mA\n[ 1555.792981] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 385)\n[ 1555.793035] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-220)mA\n[ 1556.798556] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3b8)\n[ 1556.798609] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-233)mA\n[ 1557.804421] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3b3)\n[ 1557.804477] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-232)mA\n[ 1559.820652] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4ab)\n[ 1559.820707] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-292)mA\n[ 1560.826348] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 48e)\n[ 1560.826402] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-285)mA\n[ 1561.823987] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1561.832094] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 495)\n[ 1561.832148] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-287)mA\n[ 1562.837506] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 487)\n[ 1562.837560] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-283)mA\n[ 1563.842912] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 452)\n[ 1563.842967] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-271)mA\n[ 1564.848654] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 474)\n[ 1564.848710] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-279)mA\n[ 1565.854217] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 48e)\n[ 1565.854271] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-285)mA\n[ 1566.859631] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 470)\n[ 1566.859687] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-278)mA\n[ 1567.865363] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4d3)\n[ 1567.865418] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-302)mA\n[ 1568.653423] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (197) data1 (117)\n[ 1568.654332] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3680), src (0x01)\n[ 1568.661841] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3680)\n[ 1568.661896] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2509) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1568.661939] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2509), ocv (37633)\n[ 1568.663358] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4a1)\n[ 1568.663401] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-290)mA\n[ 1568.665836] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 445), avg current (-267)mA\n[ 1568.665878] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2509)%\n[ 1568.667287] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (197) data1 (117)\n[ 1568.668049] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3680), src (0x01)\n[ 1568.669627] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[ 1568.670451] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[ 1568.672558] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (395)\n[ 1568.674747] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1568.677625] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (7) data1 (16)\n[ 1568.690917] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (35) data1 (3)\n[ 1568.690962] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (1960)\n[ 1568.691006] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2504), previous soc (2509), diff (0), FG_mode(0)\n[ 1568.693546] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 445), avg current (-267)mA\n[ 1568.693589] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2504)%\n[ 1568.746534] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3683)\n[ 1568.753951] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3680)\n[ 1568.755421] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (197) data1 (117)\n[ 1568.756191] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3680), src (0x01)\n[ 1568.757658] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4a1)\n[ 1568.757701] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-290)mA\n[ 1568.758486] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 25\n[ 1568.758538] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1568.777250] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1568.777309] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(25.0), raw_soc(25.0)\n[ 1568.777365] sec-battery battery: sec_bat_get_battery_info:Vnow(3680mV),Inow(-290mA),Imax(500mA),Ichg(500mA),SOC(25%),Tbat(380), Tusb(0), Tchg(395),Twpc(0)\n[ 1568.777416] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1568.778179] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(380)\n[ 1568.778218] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1568.778254] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1568.778304] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1568.778359] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1568.778424] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1568.778542] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1568.778960] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1568.870535] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4b1)\n[ 1568.870590] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-294)mA\n[ 1569.876184] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 495)\n[ 1569.876238] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-287)mA\n[ 1570.881409] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4ba)\n[ 1570.881465] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-296)mA\n[ 1571.886777] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 495)\n[ 1571.886832] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-287)mA\n[ 1572.831984] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1572.892160] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 489)\n[ 1572.892214] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-284)mA\n[ 1573.897736] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4bc)\n[ 1573.897792] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-296)mA\n[ 1574.902587] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 47d)\n[ 1574.902641] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-281)mA\n[ 1575.908325] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4bf)\n[ 1575.908379] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-297)mA\n[ 1576.913805] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 464)\n[ 1576.913860] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-275)mA\n[ 1577.919272] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4b1)\n[ 1577.919327] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-294)mA\n[ 1578.924967] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4b8)\n[ 1578.925023] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-295)mA\n[ 1579.930438] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 484)\n[ 1579.930494] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-283)mA\n[ 1580.383943] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #53 53\n[ 1580.936117] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4b3)\n[ 1580.936172] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-294)mA\n[ 1581.941723] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4d3)\n[ 1581.941779] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-302)mA\n[ 1582.947200] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 48c)\n[ 1582.947254] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-285)mA\n[ 1583.839993] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1583.952898] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 49e)\n[ 1583.952953] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-289)mA\n[ 1584.958483] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4bd)\n[ 1584.958538] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-297)mA\n[ 1585.964264] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4bd)\n[ 1585.964319] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-297)mA\n[ 1586.969646] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 48c)\n[ 1586.969702] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-285)mA\n[ 1587.975124] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4a1)\n[ 1587.975179] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-290)mA\n[ 1588.980899] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4c5)\n[ 1588.980986] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-299)mA\n[ 1589.986617] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4bd)\n[ 1589.986672] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-297)mA\n[ 1590.992342] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4cb)\n[ 1590.992397] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-300)mA\n[ 1591.997981] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 498)\n[ 1591.998037] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-288)mA\n[ 1593.003107] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 48b)\n[ 1593.003161] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-284)mA\n[ 1594.008940] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4be)\n[ 1594.008995] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-297)mA\n[ 1594.847945] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1595.014443] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 498)\n[ 1595.014498] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-288)mA\n[ 1596.020145] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4af)\n[ 1596.020201] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-293)mA\n[ 1597.025611] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4cc)\n[ 1597.025667] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-300)mA\n[ 1598.031152] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4a6)\n[ 1598.031207] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-291)mA\n[ 1598.781087] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (188) data1 (117)\n[ 1598.781997] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3679), src (0x01)\n[ 1598.789262] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3678)\n[ 1598.789318] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2504) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1598.789362] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2504), ocv (37632)\n[ 1598.790779] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4c9)\n[ 1598.790824] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-300)mA\n[ 1598.793294] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 490), avg current (-286)mA\n[ 1598.793336] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2504)%\n[ 1598.794802] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (188) data1 (117)\n[ 1598.795558] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3679), src (0x01)\n[ 1598.797490] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1461)\n[ 1598.798492] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[ 1598.800537] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (397)\n[ 1598.802728] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1598.805618] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (255) data1 (15)\n[ 1598.818876] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (32) data1 (3)\n[ 1598.818920] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (1953)\n[ 1598.818965] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2499), previous soc (2504), diff (0), FG_mode(0)\n[ 1598.821508] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 490), avg current (-286)mA\n[ 1598.821551] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2499)%\n[ 1598.874265] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3683)\n[ 1598.881580] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3678)\n[ 1598.883053] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (188) data1 (117)\n[ 1598.883822] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3679), src (0x01)\n[ 1598.885290] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4c9)\n[ 1598.885333] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-300)mA\n[ 1598.886118] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 25\n[ 1598.886169] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1598.904867] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1598.904926] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(24.9), raw_soc(24.9)\n[ 1598.904982] sec-battery battery: sec_bat_get_battery_info:Vnow(3679mV),Inow(-300mA),Imax(500mA),Ichg(500mA),SOC(24%),Tbat(380), Tusb(0), Tchg(397),Twpc(0)\n[ 1598.905033] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1598.905796] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(380)\n[ 1598.905835] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1598.905873] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1598.905924] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1598.905979] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1598.906044] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1598.906165] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1598.906514] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1599.036339] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4a0)\n[ 1599.036393] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-290)mA\n[ 1600.041556] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4ba)\n[ 1600.041612] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-296)mA\n[ 1601.047110] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4b7)\n[ 1601.047165] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-295)mA\n[ 1602.052906] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4a4)\n[ 1602.052961] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-291)mA\n[ 1603.058385] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4b2)\n[ 1603.058440] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-294)mA\n[ 1604.064174] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4af)\n[ 1604.064228] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-293)mA\n[ 1605.069810] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4bb)\n[ 1605.069865] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-296)mA\n[ 1605.855977] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1606.075286] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 496)\n[ 1606.075342] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-287)mA\n[ 1607.081072] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 49a)\n[ 1607.081126] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-288)mA\n[ 1608.091494]  6122     5.4 C/MHz    149 mW    7.3 J   41.0 I/mJ    49.0 s\n               1352: \n[ 1610.463970] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #54 54\n[ 1612.204149] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 33d)\n[ 1612.204203] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-203)mA\n[ 1613.209636] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 397)\n[ 1613.209692] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-225)mA\n[ 1614.215246] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 387)\n[ 1614.215301] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-221)mA\n[ 1615.221003] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 364)\n[ 1615.221057] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-212)mA\n[ 1616.831947] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1617.237496] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 519)\n[ 1617.237551] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-319)mA\n[ 1618.243125] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 522)\n[ 1618.243180] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-321)mA\n[ 1619.248942] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4fe)\n[ 1619.248997] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-313)mA\n[ 1620.254440] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 512)\n[ 1620.254495] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-317)mA\n[ 1621.260206] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4f4)\n[ 1621.260261] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-310)mA\n[ 1622.265618] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4c6)\n[ 1622.265673] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-299)mA\n[ 1623.271102] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 503)\n[ 1623.271157] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-314)mA\n[ 1624.276790] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4f7)\n[ 1624.276846] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-311)mA\n[ 1625.282334] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4f9)\n[ 1625.282392] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-311)mA\n[ 1626.288082] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4ff)\n[ 1626.288137] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-313)mA\n[ 1627.293587] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4f5)\n[ 1627.293643] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-310)mA\n[ 1627.839982] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1628.299027] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 532)\n[ 1628.299084] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-325)mA\n[ 1628.908873] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (169) data1 (117)\n[ 1628.909856] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3676), src (0x01)\n[ 1628.917291] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3676)\n[ 1628.917347] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2499) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1628.917392] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2499), ocv (37630)\n[ 1628.918806] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 556)\n[ 1628.918850] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-334)mA\n[ 1628.921289] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 4a3), avg current (-290)mA\n[ 1628.921333] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2499)%\n[ 1628.922767] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (169) data1 (117)\n[ 1628.923525] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3676), src (0x01)\n[ 1628.925106] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[ 1628.925931] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[ 1628.927952] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (397)\n[ 1628.930146] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1628.933033] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (247) data1 (15)\n[ 1628.946294] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (28) data1 (3)\n[ 1628.946340] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (1943)\n[ 1628.946386] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2494), previous soc (2499), diff (0), FG_mode(0)\n[ 1628.948929] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 4a3), avg current (-290)mA\n[ 1628.948973] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2494)%\n[ 1629.001998] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3683)\n[ 1629.009016] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3676)\n[ 1629.010452] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (169) data1 (117)\n[ 1629.011193] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3676), src (0x01)\n[ 1629.013001] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 50c)\n[ 1629.013048] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-316)mA\n[ 1629.014005] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 24\n[ 1629.014059] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1629.033352] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1629.033413] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(24.9), raw_soc(24.9)\n[ 1629.033472] sec-battery battery: sec_bat_get_battery_info:Vnow(3676mV),Inow(-334mA),Imax(500mA),Ichg(500mA),SOC(24%),Tbat(380), Tusb(0), Tchg(397),Twpc(0)\n[ 1629.033525] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1629.034289] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(380)\n[ 1629.034329] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1629.034367] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1629.034419] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1629.034475] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1629.034539] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1629.034655] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1629.034999] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1629.304209] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4f0)\n[ 1629.304263] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-309)mA\n[ 1630.309687] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4eb)\n[ 1630.309742] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-308)mA\n[ 1631.315126] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 52f)\n[ 1631.315181] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-324)mA\n[ 1632.320857] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 505)\n[ 1632.320912] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-314)mA\n[ 1633.326438] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4f1)\n[ 1633.326494] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-309)mA\n[ 1634.332243] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 52f)\n[ 1634.332336] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-324)mA\n[ 1635.337740] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4f6)\n[ 1635.337796] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-311)mA\n[ 1636.343290] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4d0)\n[ 1636.343345] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-301)mA\n[ 1637.349049] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4f5)\n[ 1637.349105] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-310)mA\n[ 1638.354592] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 518)\n[ 1638.354647] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-319)mA\n[ 1638.847942] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1639.360384] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 512)\n[ 1639.360440] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-317)mA\n[ 1640.365924] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 507)\n[ 1640.365978] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-315)mA\n[ 1640.543961] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #55 55\n[ 1641.371394] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 502)\n[ 1641.371449] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-313)mA\n[ 1642.377005] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 528)\n[ 1642.377061] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-323)mA\n[ 1643.382620] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 538)\n[ 1643.382676] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-327)mA\n[ 1644.388415] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 504)\n[ 1644.388470] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-314)mA\n[ 1645.393996] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 51c)\n[ 1645.394051] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-320)mA\n[ 1646.399536] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 50e)\n[ 1646.399591] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-316)mA\n[ 1647.405125] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 521)\n[ 1647.405180] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-321)mA\n[ 1648.410858] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 532)\n[ 1648.410912] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-325)mA\n[ 1649.416649] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 511)\n[ 1649.416704] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-317)mA\n[ 1649.823977] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1650.422353] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4fb)\n[ 1650.422408] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-312)mA\n[ 1651.428071] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 536)\n[ 1651.428126] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-326)mA\n[ 1652.433616] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 51c)\n[ 1652.433670] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-320)mA\n[ 1653.438991] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 509)\n[ 1653.439046] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-315)mA\n[ 1654.444917] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 53a)\n[ 1654.444972] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-327)mA\n[ 1655.450678] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4e6)\n[ 1655.450732] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-307)mA\n[ 1656.456479] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 530)\n[ 1656.456535] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-325)mA\n[ 1657.462069] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 4f6)\n[ 1657.462124] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-311)mA\n[ 1658.472254]  7237     5.4 C/MHz    242 mW   10.0 J   29.9 I/mJ    41.5 s\n               1560: \n[ 1659.037117] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (162) data1 (117)\n[ 1659.038008] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3676), src (0x01)\n[ 1659.045020] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3676)\n[ 1659.045077] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2494) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1659.045121] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2494), ocv (37628)\n[ 1659.046531] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3cb)\n[ 1659.046574] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-238)mA\n[ 1659.049117] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 4e1), avg current (-305)mA\n[ 1659.049163] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2494)%\n[ 1659.050569] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (162) data1 (117)\n[ 1659.051325] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3676), src (0x01)\n[ 1659.052825] sec-battery battery: sec_bat_get_value_by_adc: Temp(379), Temp-ADC(1463)\n[ 1659.053566] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[ 1659.055524] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (400)\n[ 1659.057698] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1659.060604] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (237) data1 (15)\n[ 1659.073841] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (25) data1 (3)\n[ 1659.073888] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (1936)\n[ 1659.073934] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2488), previous soc (2494), diff (0), FG_mode(0)\n[ 1659.076477] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 4e1), avg current (-305)mA\n[ 1659.076521] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2488)%\n[ 1659.129852] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3679)\n[ 1659.136924] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3676)\n[ 1659.138218] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (162) data1 (117)\n[ 1659.138868] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3676), src (0x01)\n[ 1659.140162] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3cb)\n[ 1659.140172] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-238)mA\n[ 1659.140838] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 24\n[ 1659.140850] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1659.157512] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1659.157525] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(24.8), raw_soc(24.8)\n[ 1659.157540] sec-battery battery: sec_bat_get_battery_info:Vnow(3676mV),Inow(-238mA),Imax(500mA),Ichg(500mA),SOC(24%),Tbat(379), Tusb(0), Tchg(400),Twpc(0)\n[ 1659.157555] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1659.158207] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(379)\n[ 1659.158217] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1659.158225] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1659.158238] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1659.158250] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1659.158265] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1659.158299] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1659.158346] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1660.831843] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1662.585447] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3b2)\n[ 1662.585500] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-231)mA\n[ 1663.590735] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3af)\n[ 1663.590788] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-231)mA\n[ 1664.596423] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 39b)\n[ 1664.596477] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-226)mA\n[ 1665.601735] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 387)\n[ 1665.601789] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-221)mA\n[ 1667.617405] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5c2)\n[ 1667.617457] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-360)mA\n[ 1668.622766] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5c5)\n[ 1668.622819] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-361)mA\n[ 1669.628233] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5ba)\n[ 1669.628288] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-358)mA\n[ 1670.623849] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #56 56\n[ 1670.633538] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5da)\n[ 1670.633592] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-366)mA\n[ 1671.638767] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5aa)\n[ 1671.638820] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-355)mA\n[ 1671.839895] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1672.644312] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5b4)\n[ 1672.644366] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-357)mA\n[ 1673.649533] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5bf)\n[ 1673.649588] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-360)mA\n[ 1674.654820] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5b6)\n[ 1674.654874] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-357)mA\n[ 1675.660303] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5af)\n[ 1675.660357] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-356)mA\n[ 1676.665549] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5ac)\n[ 1676.665603] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-355)mA\n[ 1677.670863] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5c6)\n[ 1677.670916] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-361)mA\n[ 1678.676338] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5c3)\n[ 1678.676392] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-361)mA\n[ 1679.681597] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5e8)\n[ 1679.681649] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-370)mA\n[ 1680.686782] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5bc)\n[ 1680.686836] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-359)mA\n[ 1681.692282] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5ac)\n[ 1681.692336] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-355)mA\n[ 1682.697529] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5c5)\n[ 1682.697583] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-361)mA\n[ 1682.847951] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1683.702892] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5b8)\n[ 1683.702946] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-358)mA\n[ 1684.708397] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5e7)\n[ 1684.708451] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-369)mA\n[ 1685.713631] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5d4)\n[ 1685.713685] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-365)mA\n[ 1686.718913] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 600)\n[ 1686.718966] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-375)mA\n[ 1687.724413] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5f2)\n[ 1687.724467] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-372)mA\n[ 1688.729909] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5ba)\n[ 1688.729962] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-358)mA\n[ 1689.160405] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (131) data1 (117)\n[ 1689.161443] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3672), src (0x01)\n[ 1689.168296] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3672)\n[ 1689.168349] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2488) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1689.168393] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2488), ocv (37626)\n[ 1689.169802] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5d5)\n[ 1689.169845] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-365)mA\n[ 1689.172341] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 56d), avg current (-340)mA\n[ 1689.172384] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2488)%\n[ 1689.173756] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (131) data1 (117)\n[ 1689.174465] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3672), src (0x01)\n[ 1689.176071] sec-battery battery: sec_bat_get_value_by_adc: Temp(379), Temp-ADC(1463)\n[ 1689.176880] sec-battery battery: sec_bat_get_value_by_adc: Temp(380), Temp-ADC(1462)\n[ 1689.178899] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (402)\n[ 1689.181089] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1689.183966] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (228) data1 (15)\n[ 1689.197234] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (22) data1 (3)\n[ 1689.197279] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (1928)\n[ 1689.197325] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2482), previous soc (2488), diff (0), FG_mode(0)\n[ 1689.199866] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 56f), avg current (-340)mA\n[ 1689.199909] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2482)%\n[ 1689.252453] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3675)\n[ 1689.259520] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3672)\n[ 1689.261007] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (131) data1 (117)\n[ 1689.261759] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3672), src (0x01)\n[ 1689.263207] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5cf)\n[ 1689.263251] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-364)mA\n[ 1689.264030] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 24\n[ 1689.264082] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1689.282478] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1689.282536] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(24.8), raw_soc(24.8)\n[ 1689.282591] sec-battery battery: sec_bat_get_battery_info:Vnow(3672mV),Inow(-365mA),Imax(500mA),Ichg(500mA),SOC(24%),Tbat(379), Tusb(0), Tchg(402),Twpc(0)\n[ 1689.282642] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1689.283396] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(379)\n[ 1689.283436] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1689.283474] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1689.283527] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1689.283584] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1689.283650] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1689.283852] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1689.284187] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1689.735166] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5d4)\n[ 1689.735220] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-365)mA\n[ 1690.740076] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5d2)\n[ 1690.740131] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-364)mA\n[ 1691.745157] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5e3)\n[ 1691.745211] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-368)mA\n[ 1692.750438] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5c2)\n[ 1692.750492] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-360)mA\n[ 1693.755923] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5b9)\n[ 1693.755977] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-358)mA\n[ 1693.855952] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1694.761313] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5cc)\n[ 1694.761367] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-363)mA\n[ 1695.766505] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5c0)\n[ 1695.766558] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-360)mA\n[ 1696.772013] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5d4)\n[ 1696.772066] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-365)mA\n[ 1697.777298] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5ef)\n[ 1697.777352] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-371)mA\n[ 1698.782585] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5b7)\n[ 1698.782638] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-358)mA\n[ 1699.788149] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5bd)\n[ 1699.788202] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-359)mA\n[ 1700.703930] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #57 57\n[ 1700.793336] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5da)\n[ 1700.793389] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-366)mA\n[ 1701.798632] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5df)\n[ 1701.798685] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-367)mA\n[ 1702.808753]  8362     5.4 C/MHz    411 mW   14.8 J   20.3 I/mJ    35.9 s\n               1664: \n[ 1704.831974] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1706.920832] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3b9)\n[ 1706.920886] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-233)mA\n[ 1707.926241] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3ba)\n[ 1707.926295] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-233)mA\n[ 1708.931532] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 395)\n[ 1708.931585] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-224)mA\n[ 1709.937018] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d3)\n[ 1709.937072] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-240)mA\n[ 1711.952601] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 64e)\n[ 1711.952654] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-395)mA\n[ 1712.958085] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 61c)\n[ 1712.958139] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-382)mA\n[ 1713.963327] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5fd)\n[ 1713.963381] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-375)mA\n[ 1714.968906] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 630)\n[ 1714.968960] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-387)mA\n[ 1715.839975] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1715.974194] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 616)\n[ 1715.974257] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-381)mA\n[ 1716.979378] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 62b)\n[ 1716.979432] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-386)mA\n[ 1717.984848] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5ea)\n[ 1717.984903] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-370)mA\n[ 1718.990267] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 604)\n[ 1718.990320] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-376)mA\n[ 1719.286269] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (110) data1 (117)\n[ 1719.287169] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3669), src (0x01)\n[ 1719.295004] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3668)\n[ 1719.295060] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2482) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1719.295104] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2482), ocv (37623)\n[ 1719.296519] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 624)\n[ 1719.296563] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-384)mA\n[ 1719.298988] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 55c), avg current (-335)mA\n[ 1719.299031] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2482)%\n[ 1719.300557] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (110) data1 (117)\n[ 1719.301316] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3669), src (0x01)\n[ 1719.303220] sec-battery battery: sec_bat_get_value_by_adc: Temp(379), Temp-ADC(1465)\n[ 1719.304532] sec-battery battery: sec_bat_get_value_by_adc: Temp(379), Temp-ADC(1465)\n[ 1719.306592] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (401)\n[ 1719.308783] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1719.311658] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (218) data1 (15)\n[ 1719.324921] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (19) data1 (3)\n[ 1719.324965] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (1921)\n[ 1719.325011] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2476), previous soc (2482), diff (0), FG_mode(0)\n[ 1719.327545] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 55c), avg current (-335)mA\n[ 1719.327588] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2476)%\n[ 1719.380153] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3675)\n[ 1719.387343] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3668)\n[ 1719.388821] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (110) data1 (117)\n[ 1719.389579] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3669), src (0x01)\n[ 1719.391043] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 624)\n[ 1719.391087] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-384)mA\n[ 1719.391871] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 24\n[ 1719.391924] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1719.410528] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1719.410585] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(24.7), raw_soc(24.7)\n[ 1719.410642] sec-battery battery: sec_bat_get_battery_info:Vnow(3669mV),Inow(-384mA),Imax(500mA),Ichg(500mA),SOC(24%),Tbat(379), Tusb(0), Tchg(401),Twpc(0)\n[ 1719.410694] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1719.411456] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(379)\n[ 1719.411495] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1719.411533] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1719.411585] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1719.411640] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1719.411705] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1719.411906] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1719.412236] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1719.995455] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 62e)\n[ 1719.995509] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-387)mA\n[ 1721.000729] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 616)\n[ 1721.000783] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-381)mA\n[ 1722.006329] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 60d)\n[ 1722.006383] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-379)mA\n[ 1723.011585] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5e7)\n[ 1723.011637] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-369)mA\n[ 1724.016917] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 618)\n[ 1724.016970] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-381)mA\n[ 1725.022210] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 62d)\n[ 1725.022263] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-386)mA\n[ 1726.027472] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 60d)\n[ 1726.027526] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-379)mA\n[ 1726.847979] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1727.033064] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 654)\n[ 1727.033158] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-396)mA\n[ 1728.038432] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 61a)\n[ 1728.038485] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-382)mA\n[ 1729.043909] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 677)\n[ 1729.043962] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-405)mA\n[ 1730.049136] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 645)\n[ 1730.049190] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-392)mA\n[ 1730.783924] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #58 58\n[ 1731.054579] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 623)\n[ 1731.054633] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-384)mA\n[ 1732.060128] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 642)\n[ 1732.060182] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-392)mA\n[ 1733.065320] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 63e)\n[ 1733.065374] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-391)mA\n[ 1734.070603] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 607)\n[ 1734.070656] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-377)mA\n[ 1735.076172] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 64a)\n[ 1735.076226] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-394)mA\n[ 1736.081565] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 631)\n[ 1736.081618] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-387)mA\n[ 1737.086847] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 648)\n[ 1737.086902] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-393)mA\n[ 1737.823975] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1738.092344] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 63e)\n[ 1738.092397] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-391)mA\n[ 1739.097618] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 647)\n[ 1739.097672] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-393)mA\n[ 1740.102912] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 616)\n[ 1740.102966] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-381)mA\n[ 1741.108561] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 610)\n[ 1741.108615] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-379)mA\n[ 1742.113947] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 61e)\n[ 1742.114001] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-383)mA\n[ 1743.119246] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 5fc)\n[ 1743.119300] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-375)mA\n[ 1744.124744] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 611)\n[ 1744.124797] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-380)mA\n[ 1745.134571]  8918     5.4 C/MHz    492 mW   16.6 J   18.1 I/mJ    33.7 s\n               1768: \n[ 1748.831972] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1749.245258] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d2)\n[ 1749.245311] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-239)mA\n[ 1749.414321] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (184) data1 (117)\n[ 1749.415290] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3678), src (0x01)\n[ 1749.422744] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3678)\n[ 1749.422801] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2476) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1749.422844] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2476), ocv (37621)\n[ 1749.424271] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d2)\n[ 1749.424314] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-239)mA\n[ 1749.426745] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 56d), avg current (-340)mA\n[ 1749.426787] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2476)%\n[ 1749.428198] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (184) data1 (117)\n[ 1749.428952] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3678), src (0x01)\n[ 1749.430856] sec-battery battery: sec_bat_get_value_by_adc: Temp(378), Temp-ADC(1468)\n[ 1749.432095] sec-battery battery: sec_bat_get_value_by_adc: Temp(378), Temp-ADC(1468)\n[ 1749.434129] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (406)\n[ 1749.436325] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1749.439202] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (209) data1 (15)\n[ 1749.452516] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (15) data1 (3)\n[ 1749.452564] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (1911)\n[ 1749.452609] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2471), previous soc (2476), diff (0), FG_mode(0)\n[ 1749.455143] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 567), avg current (-338)mA\n[ 1749.455186] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2471)%\n[ 1749.508931] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3671)\n[ 1749.516304] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3678)\n[ 1749.517643] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (184) data1 (117)\n[ 1749.518308] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3678), src (0x01)\n[ 1749.519624] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3d8)\n[ 1749.519633] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-241)mA\n[ 1749.520317] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 24\n[ 1749.520328] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1749.537330] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1749.537342] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(24.7), raw_soc(24.7)\n[ 1749.537356] sec-battery battery: sec_bat_get_battery_info:Vnow(3678mV),Inow(-239mA),Imax(500mA),Ichg(500mA),SOC(24%),Tbat(378), Tusb(0), Tchg(406),Twpc(0)\n[ 1749.537369] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1749.538032] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(378)\n[ 1749.538040] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1749.538047] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1749.538057] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1749.538068] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1749.538082] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1749.538113] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1749.538154] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1750.250587] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3cd)\n[ 1750.250641] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-238)mA\n[ 1751.255714] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3e9)\n[ 1751.255945] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-245)mA\n[ 1752.261242] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 3da)\n[ 1752.261294] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-241)mA\n[ 1754.276811] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6b0)\n[ 1754.276864] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-418)mA\n[ 1755.282351] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6dd)\n[ 1755.282405] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-429)mA\n[ 1756.287572] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6cf)\n[ 1756.287625] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-426)mA\n[ 1757.292882] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6be)\n[ 1757.292936] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-422)mA\n[ 1758.298116] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6b7)\n[ 1758.298169] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-420)mA\n[ 1759.303323] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6a8)\n[ 1759.303376] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-417)mA\n[ 1759.839984] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1760.308847] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6c5)\n[ 1760.308900] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-424)mA\n[ 1760.863954] himax_tp 5-0048: [sec_input] tc:0 v:020827111100 // #59 59\n[ 1761.314277] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6b6)\n[ 1761.314330] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-420)mA\n[ 1762.319492] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6ca)\n[ 1762.319546] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-425)mA\n[ 1763.324968] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6ab)\n[ 1763.325022] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-417)mA\n[ 1764.330229] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6cd)\n[ 1764.330282] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-426)mA\n[ 1765.335463] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 694)\n[ 1765.335515] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-412)mA\n[ 1766.340898] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6fb)\n[ 1766.340952] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-437)mA\n[ 1767.346243] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6a7)\n[ 1767.346296] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-416)mA\n[ 1768.351487] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6ce)\n[ 1768.351540] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-426)mA\n[ 1769.356850] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6e7)\n[ 1769.356904] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-432)mA\n[ 1770.362220] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6e4)\n[ 1770.362274] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-431)mA\n[ 1770.847983] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1771.367391] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6bd)\n[ 1771.367444] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-422)mA\n[ 1772.372865] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6b6)\n[ 1772.372919] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-420)mA\n[ 1773.378141] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6db)\n[ 1773.378193] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-429)mA\n[ 1774.383374] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6ca)\n[ 1774.383427] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-425)mA\n[ 1775.388845] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6cb)\n[ 1775.388897] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-425)mA\n[ 1776.394161] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6b5)\n[ 1776.394214] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-420)mA\n[ 1777.399484] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6a3)\n[ 1777.399537] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-415)mA\n[ 1778.404784] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 698)\n[ 1778.404836] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-413)mA\n[ 1779.410080] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6cc)\n[ 1779.410133] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-425)mA\n[ 1779.540191] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (55) data1 (117)\n[ 1779.541159] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3662), src (0x01)\n[ 1779.548237] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3662)\n[ 1779.548293] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2471) soc_arr[TABLE_SIZE-1] (-92) ocv_arr[TABLE_SIZE-1) (32039)\n[ 1779.548336] s2mu004-fuelgauge 9-003b: s2mu004_get_ocv: soc (2471), ocv (37619)\n[ 1779.549747] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6c8)\n[ 1779.549791] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-424)mA\n[ 1779.552221] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 667), avg current (-401)mA\n[ 1779.552265] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2471)%\n[ 1779.553668] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (55) data1 (117)\n[ 1779.554420] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3662), src (0x01)\n[ 1779.556331] sec-battery battery: sec_bat_get_value_by_adc: Temp(378), Temp-ADC(1469)\n[ 1779.557564] sec-battery battery: sec_bat_get_value_by_adc: Temp(378), Temp-ADC(1469)\n[ 1779.559592] s2mu004-fuelgauge 9-003b: s2mu004_get_temperature: temperature (408)\n[ 1779.561783] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: OTP 4E(43) 4F(10) current 4E(43) 4F(10)\n[ 1779.564693] s2mu004-fuelgauge 9-003b: [DEBUG]s2mu004_get_rawsoc: data0 (197) data1 (15)\n[ 1779.577945] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc raw data0 (12) data1 (3)\n[ 1779.577990] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: vm soc (1904)\n[ 1779.578036] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: current_soc (2463), previous soc (2471), diff (0), FG_mode(0)\n[ 1779.580612] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: MONOUT(0x 667), avg current (-401)mA\n[ 1779.580655] s2mu004-fuelgauge 9-003b: s2mu004_get_avgcurrent: SOC(2463)%\n[ 1779.633216] s2mu004-fuelgauge 9-003b: s2mu004_get_monout_avgvbat: avgvbat (3667)\n[ 1779.640336] s2mu004-fuelgauge 9-003b: s2mu004_get_avgvbat: avgvbat (3662)\n[ 1779.641808] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: data0 (55) data1 (117)\n[ 1779.642563] s2mu004-fuelgauge 9-003b: s2mu004_get_vbat: vbat (3662), src (0x01)\n[ 1779.644029] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6c8)\n[ 1779.644072] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-424)mA\n[ 1779.644851] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: UI SOC = 24\n[ 1779.644903] s2mu004-fuelgauge 9-003b: s2mu004_get_rawsoc: Fuelgauge Mode: 0, Force power-off voltage: 3300\n[ 1779.663469] [FG]s2mu004_fg_test_read: 0x03:0x1c, 0x0e:0x00, 0x0f:0x4b, 0x10:0xc0, 0x11:0x12, 0x1e:0x03, 0x1f:0x00, 0x21:0x13, 0x24:0x00, 0x25:0x10, 0x26:0x00, 0x27:0x50, 0x44:0x00, 0x45:0x48, 0x48:0x24, 0x49:0x03, 0x4a:0x10, 0x4b:0x0b, 0x4c:0x5b, 0x4d:0x2f, 0x4e:0x43, 0x4f:0x10, 0x54:0x74, 0x55:0x46, 0x56:0xeb, 0x57:0xcf, \n[ 1779.663527] s2mu004-fuelgauge 9-003b: s2mu004_fg_get_scaled_capacity: capacity_max(1000) scaled capacity(24.6), raw_soc(24.6)\n[ 1779.663584] sec-battery battery: sec_bat_get_battery_info:Vnow(3662mV),Inow(-424mA),Imax(500mA),Ichg(500mA),SOC(24%),Tbat(378), Tusb(0), Tchg(408),Twpc(0)\n[ 1779.663635] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1779.664403] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(378)\n[ 1779.664442] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1779.664479] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[ 1779.664531] sec-battery battery: sec_bat_monitor_work: HLT(800) HLR(750) HT(500), HR(450), LT(0), LR(50), lpcharge(0)\n[ 1779.664586] sec-battery battery: sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), level(100%), slate_mode(0), store_mode(0), HV(NONE), sleep_mode(0), Cycle(-1)\n[ 1779.664651] sec-battery battery: sec_bat_set_polling: Status:Discharging, Sleep:No, Charging:No, Short Poll:No\n[ 1779.664765] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1779.665097] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1780.415285] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6ca)\n[ 1780.415337] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-425)mA\n[ 1781.420805] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6cc)\n[ 1781.420859] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-425)mA\n[ 1781.855983] etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1782.426202] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6c5)\n[ 1782.426255] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-424)mA\n[ 1783.431573] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6e7)\n[ 1783.431627] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-432)mA\n[ 1784.436946] s2mu004-fuelgauge 9-003b: s2mu004_get_current: rCUR_CC(0x 6a5)\n[ 1784.436999] s2mu004-fuelgauge 9-003b: s2mu004_get_current: current (-416)mA\n[ 1785.450460] set_state_shutdown: mct_tick_stop (cpu6)\n[ 1785.450527] CPU6: shutdown\n[ 1785.470481]  9473     5.4 C/MHz    636 mW   20.1 J   14.9 I/mJ    31.7 s\n               \n               \n               Benchmark finished!\n[ 1785.523140] \n               real\t29m43.180s\n               user\t25m47.284s\n               sys\t0m1.500s\n"
  },
  {
    "path": "results/exynos7904/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  5:          0       GIC 266 Edge      mct_comp_irq\n  6:      24459       GIC 270 Edge      mct_tick0\n  7:          0       GIC 271 Edge      mct_tick1\n  8:          0       GIC 272 Edge      mct_tick2\n  9:          0       GIC 273 Edge      mct_tick3\n 10:          0       GIC 274 Edge      mct_tick4\n 11:          0       GIC 275 Edge      mct_tick5\n 12:          0       GIC 276 Edge      mct_tick6\n 13:          0       GIC 277 Edge      mct_tick7\n 14:          0       GIC 160 Edge      148c0000.sysmmu\n 15:          0       GIC 159 Edge      148c0000.sysmmu\n 16:          0       GIC 161 Edge      14a30000.sysmmu_abox\n 17:          0       GIC 339 Edge      14540000.sysmmu\n 18:          0       GIC 340 Edge      14540000.sysmmu\n 19:          0       GIC 349 Edge      14730000.sysmmu\n 20:          0       GIC 350 Edge      14730000.sysmmu\n 21:          0       GIC 353 Edge      14760000.sysmmu\n 22:          0       GIC 354 Edge      14760000.sysmmu\n 23:          0       GIC 230 Edge      12c50000.sysmmu\n 24:          0       GIC 231 Edge      12c50000.sysmmu\n 43:          0       GIC 182 Edge      13430000.pinctrl\n 44:          0       GIC 298 Edge      139b0000.pinctrl\n 45:          0       GIC 191 Edge      11500000.mali\n 46:          0       GIC 192 Edge      11500000.mali\n 47:          1       GIC 190 Edge      11500000.mali\n 60:          0       GIC 104 Edge      ITMON_DATA\n 61:          0       GIC 105 Edge      ITMON_PERI\n 62:          0       GIC  66 Edge      11ce0000.speedy\n 64:         65       GIC 178 Edge      dw-mci\n 65:        113       GIC 179 Edge      dw-mci\n 66:          0       GIC 289 Edge      138a0000.hsi2c\n 67:          0       GIC 290 Edge      138b0000.hsi2c\n 68:          0       GIC 291 Edge      138c0000.hsi2c\n 69:          0       GIC 292 Edge      138d0000.hsi2c\n 70:         86       GIC 299 Edge      13920000.hsi2c\n 71:        494       GIC 300 Edge      13930000.hsi2c\n 72:          0       GIC 303 Edge      13940000.hsi2c\n 73:      33802       GIC 280 Edge      13830000.i2c\n 74:       2509       GIC 281 Edge      13840000.i2c\n 75:          0       GIC 282 Edge      13850000.i2c\n 76:          5       GIC 283 Edge      13860000.i2c\n 77:          0       GIC 284 Edge      13870000.i2c\n 78:         54       GIC 285 Edge      13880000.i2c\n 79:        150       GIC 286 Edge      13890000.i2c\n 80:          0       GIC 288 Edge      spi-s3c64xx\n 81:          0       GIC 153 Edge      14851000.dpp\n 82:          0       GIC 154 Edge      14852000.dpp\n 83:          0       GIC 155 Edge      14853000.dpp\n 84:          0       GIC 156 Edge      14854000.dpp\n 85:          0       GIC 152 Edge      14854000.dpp\n 86:     214184       GIC 157 Edge      14870000.dsim\n 87:          0       GIC 147 Edge      14860000.decon_f\n 88:          1       GIC 146 Edge      14860000.decon_f\n 89:     107091       GIC 145 Edge      14860000.decon_f\n 90:          0       GIC 144 Edge      14860000.decon_f\n 91:          0       GIC 151 Edge      14af1000.abox_gic\n 92:          0       GIC 226 Edge      12c00000.smfc\n 93:          0       GIC 227 Edge      12c10000.scaler\n 94:          0       GIC 228 Edge      12c20000.fimg2d\n 98:          0       GIC 229 Edge      12c30000.mfc0\n 99:          0       GIC  54 Edge      11c40000.acpm_ipc\n100:          0       GIC 265 Edge      10060000.watchdog\n101:        600       GIC  92 Edge      120a0000.adc\n105:          0       GIC  94 Edge      12020000.pdma0\n106:          0       GIC 256 Edge      seclog\n107:          2       GIC 255 Edge      trustonic\n110:          0       GIC 254 Edge      mmc-srpmb\n111:          1       GIC 263 Edge      10070000.BIG, 10070000.LITTLE\n112:          1       GIC 312 Edge      10074000.G3D\n113:          0       GIC 333 Edge      fimc3aa0-0\n114:          0       GIC 334 Edge      fimc3aa0-1\n115:          0       GIC 335 Edge      fimc3aa1-0\n116:          0       GIC 336 Edge      fimc3aa1-1\n117:          0       GIC 342 Edge      fimcisp0-0\n118:          0       GIC 343 Edge      fimcisp0-1\n119:          0       GIC 346 Edge      fimcmcs0-0\n120:          0       GIC 344 Edge      fimcvra-1\n126:          0       GIC  51 Edge      cp_fail\n127:          0       GIC 249 Edge      cp_wdt\n128:          0       GIC  87 Edge      12080000.mcu_ipc\n129:          0       GIC  88 Edge      120d0000.mcu_ipc\n130:          0       GIC  52 Edge      kepler_active_handler\n131:          0       GIC 197 Edge      kepler_wdt_handler\n132:          0       GIC 196 Edge      kepler_wakelock_handler\n133:          0  exynos7_wkup_irq_chip   2 Level     s2mu004-irq\n144:          0   s2mpu08 Edge      rtc-alarm0\n157:          0  exynos7_wkup_irq_chip   0 Level     s2mpu08-irq\n158:          2  exynos7_wkup_irq_chip   6 Edge      usim_detect0\n159:          0   s2mu004 Edge      sys-irq\n161:          0   s2mu004 Edge      chg_fault-irq\n162:          0   s2mu004 Edge      restart-irq\n163:          0   s2mu004 Edge      done-irq\n166:          0   s2mu004 Edge      chgin-irq\n173:          0   s2mu004 Edge      bat-irq\n174:          0   s2mu004 Edge      muic-vbadc\n175:          0   s2mu004 Edge      muic-vdnmon\n177:          0   s2mu004 Edge      muic-mpnack\n179:          0   s2mu004 Edge      muic-mrxtrf\n181:          0   s2mu004 Edge      muic-mrxrdy\n182:          0   s2mu004 Edge      muic-attach\n183:          0   s2mu004 Edge      muic-detach\n187:          0   s2mu004 Edge      muic-rid_chg\n188:          0   s2mu004 Edge      muic-vbus_on\n189:          0   s2mu004 Edge      muic-rsvd_attach\n190:          0   s2mu004 Edge      muic-adc_change\n194:          0   s2mu004 Edge      muic-av_charge\n195:          0   s2mu004 Edge      muic-vbus_off\n198:          0  exynos7_wkup_irq_chip   0 Edge      hxcommon\n199:          2  exynos7_wkup_irq_chip   7 Edge      tflash_det\n200:          0  exynos7_wkup_irq_chip   4 Edge      fuelgauge-irq\n201:          1  exynos7_wkup_irq_chip   3 Edge      lsm6dsl\n202:          0  exynos7_wkup_irq_chip   4 Edge      proximity_int\n203:          0  exynos7_wkup_irq_chip   7 Edge      TC3XXK\n204:          0  exynos7_wkup_irq_chip   6 Edge      gpio-keys: KEY_VOLUMEDOWN\n205:          0  exynos7_wkup_irq_chip   5 Edge      gpio-keys: KEY_VOLUMEUP\n206:          0  exynos7_wkup_irq_chip   7 Edge      gpio-keys: KEY_POWER\n207:          0  exynos7_wkup_irq_chip   3 Level     s2mu004-usbpd\nIPI0:      5733       Rescheduling interrupts\nIPI1:        12       Function call interrupts\nIPI2:         2       Single function call interrupts\nIPI3:         0       CPU stop interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:         0       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/exynos7904/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  5:          0          0          0          0          0          0          0          0       GIC 266 Edge      mct_comp_irq\n  6:        241          0          0          0          0          0          0          0       GIC 270 Edge      mct_tick0\n  7:          0        233          0          0          0          0          0          0       GIC 271 Edge      mct_tick1\n  8:          0          0        267          0          0          0          0          0       GIC 272 Edge      mct_tick2\n  9:          0          0          0        279          0          0          0          0       GIC 273 Edge      mct_tick3\n 10:          0          0          0          0         81          0          0          0       GIC 274 Edge      mct_tick4\n 11:          0          0          0          0          0        100          0          0       GIC 275 Edge      mct_tick5\n 12:          0          0          0          0          0          0        569          0       GIC 276 Edge      mct_tick6\n 13:          0          0          0          0          0          0          0        637       GIC 277 Edge      mct_tick7\n 14:          0          0          0          0          0          0          0          0       GIC 160 Edge      148c0000.sysmmu\n 15:          0          0          0          0          0          0          0          0       GIC 159 Edge      148c0000.sysmmu\n 16:          0          0          0          0          0          0          0          0       GIC 161 Edge      14a30000.sysmmu_abox\n 17:          0          0          0          0          0          0          0          0       GIC 339 Edge      14540000.sysmmu\n 18:          0          0          0          0          0          0          0          0       GIC 340 Edge      14540000.sysmmu\n 19:          0          0          0          0          0          0          0          0       GIC 349 Edge      14730000.sysmmu\n 20:          0          0          0          0          0          0          0          0       GIC 350 Edge      14730000.sysmmu\n 21:          0          0          0          0          0          0          0          0       GIC 353 Edge      14760000.sysmmu\n 22:          0          0          0          0          0          0          0          0       GIC 354 Edge      14760000.sysmmu\n 23:          0          0          0          0          0          0          0          0       GIC 230 Edge      12c50000.sysmmu\n 24:          0          0          0          0          0          0          0          0       GIC 231 Edge      12c50000.sysmmu\n 43:          0          0          0          0          0          0          0          0       GIC 182 Edge      13430000.pinctrl\n 44:          0          0          0          0          0          0          0          0       GIC 298 Edge      139b0000.pinctrl\n 45:          0          0          0          0          0          0          0          0       GIC 191 Edge      11500000.mali\n 46:          0          0          0          0          0          0          0          0       GIC 192 Edge      11500000.mali\n 47:          1          0          0          0          0          0          0          0       GIC 190 Edge      11500000.mali\n 60:          0          0          0          0          0          0          0          0       GIC 104 Edge      ITMON_DATA\n 61:          0          0          0          0          0          0          0          0       GIC 105 Edge      ITMON_PERI\n 62:          0          0          0          0          0          0          0          0       GIC  66 Edge      11ce0000.speedy\n 64:         65          0          0          0          0          0          0          0       GIC 178 Edge      dw-mci\n 65:        113          0          0          0          0          0          0          0       GIC 179 Edge      dw-mci\n 66:          0          0          0          0          0          0          0          0       GIC 289 Edge      138a0000.hsi2c\n 67:          0          0          0          0          0          0          0          0       GIC 290 Edge      138b0000.hsi2c\n 68:          0          0          0          0          0          0          0          0       GIC 291 Edge      138c0000.hsi2c\n 69:          0          0          0          0          0          0          0          0       GIC 292 Edge      138d0000.hsi2c\n 70:         86          0          0          0          0          0          0          0       GIC 299 Edge      13920000.hsi2c\n 71:        494          0          0          0          0          0          0          0       GIC 300 Edge      13930000.hsi2c\n 72:          0          0          0          0          0          0          0          0       GIC 303 Edge      13940000.hsi2c\n 73:        991          0          0          0          0          0          0          0       GIC 280 Edge      13830000.i2c\n 74:       1357          0          0          0          0          0          0          0       GIC 281 Edge      13840000.i2c\n 75:          0          0          0          0          0          0          0          0       GIC 282 Edge      13850000.i2c\n 76:          5          0          0          0          0          0          0          0       GIC 283 Edge      13860000.i2c\n 77:          0          0          0          0          0          0          0          0       GIC 284 Edge      13870000.i2c\n 78:         54          0          0          0          0          0          0          0       GIC 285 Edge      13880000.i2c\n 79:        150          0          0          0          0          0          0          0       GIC 286 Edge      13890000.i2c\n 80:          0          0          0          0          0          0          0          0       GIC 288 Edge      spi-s3c64xx\n 81:          0          0          0          0          0          0          0          0       GIC 153 Edge      14851000.dpp\n 82:          0          0          0          0          0          0          0          0       GIC 154 Edge      14852000.dpp\n 83:          0          0          0          0          0          0          0          0       GIC 155 Edge      14853000.dpp\n 84:          0          0          0          0          0          0          0          0       GIC 156 Edge      14854000.dpp\n 85:          0          0          0          0          0          0          0          0       GIC 152 Edge      14854000.dpp\n 86:         50          0          0          0          0          0          0          0       GIC 157 Edge      14870000.dsim\n 87:          0          0          0          0          0          0          0          0       GIC 147 Edge      14860000.decon_f\n 88:          1          0          0          0          0          0          0          0       GIC 146 Edge      14860000.decon_f\n 89:         24          0          0          0          0          0          0          0       GIC 145 Edge      14860000.decon_f\n 90:          0          0          0          0          0          0          0          0       GIC 144 Edge      14860000.decon_f\n 91:          0          0          0          0          0          0          0          0       GIC 151 Edge      14af1000.abox_gic\n 92:          0          0          0          0          0          0          0          0       GIC 226 Edge      12c00000.smfc\n 93:          0          0          0          0          0          0          0          0       GIC 227 Edge      12c10000.scaler\n 94:          0          0          0          0          0          0          0          0       GIC 228 Edge      12c20000.fimg2d\n 98:          0          0          0          0          0          0          0          0       GIC 229 Edge      12c30000.mfc0\n 99:          0          0          0          0          0          0          0          0       GIC  54 Edge      11c40000.acpm_ipc\n100:          0          0          0          0          0          0          0          0       GIC 265 Edge      10060000.watchdog\n101:         10          0          0          0          0          0          0          0       GIC  92 Edge      120a0000.adc\n105:          0          0          0          0          0          0          0          0       GIC  94 Edge      12020000.pdma0\n106:          0          0          0          0          0          0          0          0       GIC 256 Edge      seclog\n107:          2          0          0          0          0          0          0          0       GIC 255 Edge      trustonic\n110:          0          0          0          0          0          0          0          0       GIC 254 Edge      mmc-srpmb\n111:          1          0          0          0          0          0          0          0       GIC 263 Edge      10070000.BIG, 10070000.LITTLE\n112:          0          0          0          0          0          0          0          0       GIC 312 Edge      10074000.G3D\n113:          0          0          0          0          0          0          0          0       GIC 333 Edge      fimc3aa0-0\n114:          0          0          0          0          0          0          0          0       GIC 334 Edge      fimc3aa0-1\n115:          0          0          0          0          0          0          0          0       GIC 335 Edge      fimc3aa1-0\n116:          0          0          0          0          0          0          0          0       GIC 336 Edge      fimc3aa1-1\n117:          0          0          0          0          0          0          0          0       GIC 342 Edge      fimcisp0-0\n118:          0          0          0          0          0          0          0          0       GIC 343 Edge      fimcisp0-1\n119:          0          0          0          0          0          0          0          0       GIC 346 Edge      fimcmcs0-0\n120:          0          0          0          0          0          0          0          0       GIC 344 Edge      fimcvra-1\n126:          0          0          0          0          0          0          0          0       GIC  51 Edge      cp_fail\n127:          0          0          0          0          0          0          0          0       GIC 249 Edge      cp_wdt\n128:          0          0          0          0          0          0          0          0       GIC  87 Edge      12080000.mcu_ipc\n129:          0          0          0          0          0          0          0          0       GIC  88 Edge      120d0000.mcu_ipc\n130:          0          0          0          0          0          0          0          0       GIC  52 Edge      kepler_active_handler\n131:          0          0          0          0          0          0          0          0       GIC 197 Edge      kepler_wdt_handler\n132:          0          0          0          0          0          0          0          0       GIC 196 Edge      kepler_wakelock_handler\n133:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   2 Level     s2mu004-irq\n144:          0          0          0          0          0          0          0          0   s2mpu08 Edge      rtc-alarm0\n157:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   0 Level     s2mpu08-irq\n158:          2          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   6 Edge      usim_detect0\n159:          0          0          0          0          0          0          0          0   s2mu004 Edge      sys-irq\n161:          0          0          0          0          0          0          0          0   s2mu004 Edge      chg_fault-irq\n162:          0          0          0          0          0          0          0          0   s2mu004 Edge      restart-irq\n163:          0          0          0          0          0          0          0          0   s2mu004 Edge      done-irq\n166:          0          0          0          0          0          0          0          0   s2mu004 Edge      chgin-irq\n173:          0          0          0          0          0          0          0          0   s2mu004 Edge      bat-irq\n174:          0          0          0          0          0          0          0          0   s2mu004 Edge      muic-vbadc\n175:          0          0          0          0          0          0          0          0   s2mu004 Edge      muic-vdnmon\n177:          0          0          0          0          0          0          0          0   s2mu004 Edge      muic-mpnack\n179:          0          0          0          0          0          0          0          0   s2mu004 Edge      muic-mrxtrf\n181:          0          0          0          0          0          0          0          0   s2mu004 Edge      muic-mrxrdy\n182:          0          0          0          0          0          0          0          0   s2mu004 Edge      muic-attach\n183:          0          0          0          0          0          0          0          0   s2mu004 Edge      muic-detach\n187:          0          0          0          0          0          0          0          0   s2mu004 Edge      muic-rid_chg\n188:          0          0          0          0          0          0          0          0   s2mu004 Edge      muic-vbus_on\n189:          0          0          0          0          0          0          0          0   s2mu004 Edge      muic-rsvd_attach\n190:          0          0          0          0          0          0          0          0   s2mu004 Edge      muic-adc_change\n194:          0          0          0          0          0          0          0          0   s2mu004 Edge      muic-av_charge\n195:          0          0          0          0          0          0          0          0   s2mu004 Edge      muic-vbus_off\n198:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   0 Edge      hxcommon\n199:          2          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   7 Edge      tflash_det\n200:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   4 Edge      fuelgauge-irq\n201:          1          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   3 Edge      lsm6dsl\n202:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   4 Edge      proximity_int\n203:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   7 Edge      TC3XXK\n204:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   6 Edge      gpio-keys: KEY_VOLUMEDOWN\n205:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   5 Edge      gpio-keys: KEY_VOLUMEUP\n206:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   7 Edge      gpio-keys: KEY_POWER\n207:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   3 Level     s2mu004-usbpd\nIPI0:       447        332        677       1265        225        166       1713       2289       Rescheduling interrupts\nIPI1:        12          9         10         13          8          9          7          8       Function call interrupts\nIPI2:         2          0          0          1          0          0          0         10       Single function call interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         0          0          0          0          0          0          0          0       IRQ work interrupts\nIPI6:         0          1          1          9          1          1          1          1       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/exynos7904/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [ksoftirqd/0]\n    4 root      0:00 [kworker/0:0]\n    5 root      0:00 [kworker/0:0H]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [migration/0]\n   11 root      0:00 [watchdog/0]\n   12 root      0:00 [watchdog/1]\n   13 root      0:00 [migration/1]\n   14 root      0:00 [ksoftirqd/1]\n   15 root      0:00 [kworker/1:0]\n   16 root      0:00 [kworker/1:0H]\n   17 root      0:00 [watchdog/2]\n   18 root      0:00 [migration/2]\n   19 root      0:00 [ksoftirqd/2]\n   20 root      0:00 [kworker/2:0]\n   21 root      0:00 [kworker/2:0H]\n   22 root      0:00 [watchdog/3]\n   23 root      0:00 [migration/3]\n   24 root      0:00 [ksoftirqd/3]\n   25 root      0:00 [kworker/3:0]\n   26 root      0:00 [kworker/3:0H]\n   27 root      0:00 [watchdog/4]\n   28 root      0:00 [migration/4]\n   29 root      0:00 [ksoftirqd/4]\n   30 root      0:00 [kworker/4:0]\n   31 root      0:00 [kworker/4:0H]\n   32 root      0:00 [watchdog/5]\n   33 root      0:00 [migration/5]\n   34 root      0:00 [ksoftirqd/5]\n   35 root      0:00 [kworker/5:0]\n   36 root      0:00 [kworker/5:0H]\n   37 root      0:00 [watchdog/6]\n   38 root      0:00 [migration/6]\n   39 root      0:00 [ksoftirqd/6]\n   40 root      0:00 [kworker/6:0]\n   41 root      0:00 [kworker/6:0H]\n   42 root      0:00 [watchdog/7]\n   43 root      0:00 [migration/7]\n   44 root      0:00 [ksoftirqd/7]\n   45 root      0:00 [kworker/7:0]\n   46 root      0:00 [kworker/7:0H]\n   47 root      0:00 [kdevtmpfs]\n   48 root      0:00 [netns]\n   51 root      0:00 [perf]\n   77 root      0:00 [kworker/u17:0]\n   78 root      0:00 [exynos_cpu_hotp]\n  169 root      0:00 [irq/99-11c40000]\n  170 root      0:00 [acpm_debug_logg]\n  500 root      0:02 [kworker/u16:5]\n  664 root      0:00 [khungtaskd]\n  665 root      0:00 [writeback]\n  667 root      0:00 [ksmd]\n  668 root      0:00 [crypto]\n  669 root      0:00 [bioset]\n  671 root      0:00 [kblockd]\n  686 root      0:00 [spi1]\n  744 root      0:00 [irq/157-s2mpu08]\n  808 root      0:00 [ion_noncontig_h]\n  813 root      0:00 [devfreq_wq]\n  829 root      0:00 [cfg80211]\n  847 root      0:00 [cfinteractive]\n  848 root      0:00 [kworker/5:1]\n  849 root      0:00 [kworker/7:1]\n  883 root      0:00 [kswapd0]\n  884 root      0:00 [vmstat]\n  939 root      0:00 [fsnotify_mark]\n  959 root      0:00 [ecryptfs-kthrea]\n 1071 root      0:00 [hwrng]\n 1073 root      0:00 [g3d_dvfs]\n 1074 root      0:00 [kworker/u17:1]\n 1075 root      0:00 [kbase_job_fault]\n 1079 root      0:00 [bioset]\n 1080 root      0:00 [bioset]\n 1081 root      0:00 [bioset]\n 1082 root      0:00 [bioset]\n 1083 root      0:00 [bioset]\n 1084 root      0:00 [bioset]\n 1085 root      0:00 [bioset]\n 1086 root      0:00 [bioset]\n 1087 root      0:00 [bioset]\n 1088 root      0:00 [bioset]\n 1089 root      0:00 [bioset]\n 1090 root      0:00 [bioset]\n 1091 root      0:00 [bioset]\n 1092 root      0:00 [bioset]\n 1093 root      0:00 [bioset]\n 1094 root      0:00 [bioset]\n 1128 root      0:00 [bioset]\n 1131 root      0:00 [bioset]\n 1134 root      0:00 [bioset]\n 1137 root      0:00 [bioset]\n 1140 root      0:00 [bioset]\n 1143 root      0:00 [bioset]\n 1146 root      0:00 [bioset]\n 1149 root      0:00 [bioset]\n 1154 root      0:00 [irq/158-usim_de]\n 1156 root      0:00 [shmem_tx_wq]\n 1206 root      0:00 [wifilogger]\n 1207 root      0:00 [wifilogger]\n 1208 root      0:00 [wifilogger]\n 1209 root      0:00 [wifilogger]\n 1211 root      0:00 [fw_crc_wq]\n 1212 root      0:00 [failure_wq]\n 1221 root      0:00 [irq/133-s2mu004]\n 1493 root      0:00 [uether]\n 1507 root      0:00 [HMX_update_reuq]\n 1510 root      0:00 [HMX_ATT_reuqest]\n 1512 root      0:00 [irq/198-hxcommo]\n 1540 root      0:00 [m2m1shot2-sched]\n 1541 root      0:00 [m2m1shot2-destr]\n 1544 root      0:00 [scaler_fence_wo]\n 1547 root      0:00 [irq/98-12c30000]\n 1552 root      0:00 [s5p_mfc/watchdo]\n 1553 root      0:00 [mfc/idle]\n 1554 root      0:00 [s5p_mfc/butler]\n 1601 root      0:00 [dm_bufio_cache]\n 1604 root      0:00 [dw-mci-card]\n 1607 root      0:00 [dw-mci-card]\n 1674 root      0:00 [ovr_work]\n 1703 root      0:00 [sec_abc_wq]\n 1704 root      0:00 [bioset]\n 1709 root      0:00 [simpleinteracti]\n 1711 root      0:00 [simpleinteracti]\n 1713 root      0:00 [simpleinteracti]\n 1715 root      0:00 [simpleinteracti]\n 1717 root      0:00 [simpleinteracti]\n 1719 root      0:00 [simpleinteracti]\n 1724 root      0:00 [bioset]\n 1725 root      0:00 [mmc-cmdqd/0]\n 1726 root      0:00 [bioset]\n 1727 root      0:00 [mmcqd/0boot0]\n 1728 root      0:00 [bioset]\n 1729 root      0:00 [mmcqd/0boot1]\n 1730 root      0:00 [bioset]\n 1731 root      0:00 [mmcqd/0rpmb]\n 1769 root      0:00 [irq/200-fuelgau]\n 1774 root      0:00 [charger-wq]\n 1776 root      0:00 [kworker/6:3]\n 1782 root      0:00 [binder]\n 1786 root      0:00 [tee_fastcall]\n 1789 root      0:00 [tee_irq_bh]\n 1790 root      0:00 [tee_scheduler]\n 1795 root      0:00 [sec_vib_work]\n 1816 root      0:00 [accel_wq]\n 1817 root      0:00 [gyro_wq]\n 1818 root      0:00 [lsm6dsl]\n 1820 root      0:00 [mag_wq]\n 1828 root      0:00 [gp2a_prox_wq]\n 1830 root      0:00 [kworker/0:2]\n 1834 root      0:00 [irq/203-TC3XXK]\n 1839 root      0:00 [etspi_debug_wq]\n 1876 root      0:00 [kworker/3:1]\n 1877 root      0:00 [kworker/1:1]\n 1878 root      0:00 [kworker/2:1]\n 1879 root      0:00 [kworker/4:1]\n 1880 root      0:00 [buttons_wq]\n 1881 root      0:00 [jack_det_wq]\n 1882 root      0:00 [gdet_adc_wq]\n 1883 root      0:00 [adc_mute_wq]\n 1884 root      0:00 [btn_delay_wq]\n 1886 root      0:00 [bioset]\n 1887 root      0:00 [mmcqd/1]\n 1896 root      0:00 [tfa98xx]\n 1927 root      0:00 [ipv6_addrconf]\n 1943 root      0:00 [hmp_down_compen]\n 1981 root      0:03 [decon0-vsync]\n 1983 root      0:00 [decon0]\n 1992 root      0:00 [deferwq]\n 1998 root      0:00 [usb_notify]\n 2026 root      0:00 [srpmb_wq]\n 2030 root      0:00 [blkdev_flush_wq]\n 2031 root      0:00 [battery]\n 2047 root      0:00 [mc_timer]\n 2055 root      0:00 [9-003c]\n 2056 root      0:00 [9-003c]\n 2057 root      0:00 [ccic_irq_event]\n 2059 root      0:00 [irq/207-s2mu004]\n 2073 root      0:00 [kworker/1:1H]\n 2075 root      0:00 [kworker/2:1H]\n 2077 root      0:00 [kworker/3:1H]\n 2079 root      0:00 [kworker/4:1H]\n 2081 root      0:00 [kworker/5:1H]\n 2083 root      0:00 [kworker/6:1H]\n 2085 root      0:00 [kworker/7:1H]\n 2120 root      0:00 [kworker/u16:0]\n 2140 root      0:00 [kworker/u16:1]\n 2253 root      0:00 ps -A\n"
  },
  {
    "path": "results/exynos7904/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,449000,1436.114449,3.198473160356347,-0.7143285024154259,-0.14923054976124195,-2010.3122348606116,208.910255235\r\n1,546000,1754.663017,3.2136685293040292,8.230982352941211,1.4073625209032565,213.16469320744565,170.983542493\r\n1,676000,2174.764038,3.217106565088757,17.514255474452586,2.4161828993691707,124.16278588774283,137.955216132\r\n1,757000,2438.548576,3.221332332892999,24.52337704918036,3.0172003422269498,99.42992376123574,123.03363995\r\n1,839000,2701.266894,3.219626810488677,34.0586454545455,3.7828209501795333,79.30589471483232,111.067862497\r\n1,902000,2910.756214,3.2270024545454548,42.57982352941179,4.3888953830644475,68.35432923683219,103.074532003\r\n1,1014000,3268.472316,3.2233454792899408,55.47865934065938,5.092560361567146,58.9094637471671,91.793140319\r\n1,1144000,3690.581636,3.2260328986013986,77.30728750000003,6.284623784256474,47.73555431456787,81.294066672\r\n1,1248000,4031.77035,3.2305852163461535,95.56010810810814,7.111199518726614,42.18697551798129,74.415984447\r\n1,1352000,4368.465504,3.231113538461538,121.26758823529414,8.32865057068078,36.02024090866357,68.679939066\r\n1,1482000,4785.452225,3.229050084345479,163.5082096774194,10.251353715613583,29.26442773534167,62.696262994\r\n1,1586000,5121.988697,3.2295010699873896,215.89551724137937,12.646350430645183,23.72225897465462,58.576252959\r\n6,936000,5001.50045,5.343483386752136,83.43432203389834,5.005570868310701,59.93322398035394,59.99414565\r\n6,1144000,6121.699384,5.351135825174825,149.4429166666667,7.325672663940932,40.95187073764383,49.019872118\r\n6,1352000,7236.937328,5.352764295857988,241.6667804878049,10.021004616647486,29.93711823080315,41.46620647\r\n6,1560000,8361.670104,5.360044938461539,411.42820000000006,14.766393281879111,20.316403218662156,35.890571628\r\n6,1664000,8918.219923,5.359507165264423,492.00454545454545,16.556379567258777,18.119903495886735,33.650867091\r\n6,1768000,9473.285335,5.358193062782806,635.7584193548388,20.140152219809313,14.89561730843961,31.678939054\r\n"
  },
  {
    "path": "results/exynos7904/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1781.963442325592, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [940.032, 951.048, 969.408, 936.36, 963.09, 940.95, 970.47, 922.5, 948.33, 963.09, 963.09, 959.4, 952.02, 952.02, 948.33, 985.23, 922.5, 948.33, 948.33, 955.969, 930.132, 963.351, 941.205, 919.059, 955.969, 967.042, 959.66, 981.806, 985.497], \"power_mean\": 953.2488965517241, \"energy_millijoules\": 4766.2444827586205, \"energy_joules\": 4.76624448275862}, \"cpus\": {\"1\": {\"freqs\": {\"449000\": {\"active\": {\"elapsed_sec\": 208.910255235, \"elapsed_ns\": 208910255235, \"power_samples\": [-3.1949999999999363, -6.88799999999992, 15.269999999999982, 4.191000000000031, -14.274000000000001, -51.20399999999995, 0.4980000000000473, 22.656000000000063, 33.735000000000014, 18.96300000000008, 59.58600000000001, -21.659999999999968, 4.191000000000031, -6.88799999999992, -3.1949999999999363, 11.576999999999998, -29.045999999999935, -195.231, 11.576999999999998, -29.045999999999935, 0.4980000000000473, 18.96300000000008, -10.581000000000017, 4.191000000000031, 18.96300000000008, -10.581000000000017, 4.191000000000031, 15.269999999999982, 4.191000000000031, 0.4980000000000473, 7.8840000000000146, 4.191000000000031, 18.96300000000008, 26.349000000000046, -25.352999999999952, -14.274000000000001, -6.88799999999992, 7.8840000000000146, 18.96300000000008, -40.125, -21.659999999999968, -10.581000000000017, 0.4980000000000473, -21.659999999999968, 7.8840000000000146, -10.581000000000017, -3.1949999999999363, -36.432000000000016, 18.96300000000008, -10.581000000000017, 15.269999999999982, -3.1949999999999363, -17.966999999999985, 22.656000000000063, -3.1949999999999363, -17.966999999999985, 7.8840000000000146, 11.576999999999998, -10.581000000000017, 45.075000000000045, -36.192999999999984, 0.7470000000000709, 11.829000000000065, -2.9470000000000027, 233.46900000000005, 30.298999999999978, -6.640999999999963, 4.441000000000031, 48.769000000000005, -32.499000000000024, -43.58100000000002, -10.334999999999923, -6.640999999999963, -10.334999999999923, -10.334999999999923, -32.499000000000024, -36.192999999999984, -25.11099999999999, 45.075000000000045, -6.640999999999963, -28.80499999999995, 11.829000000000065, -25.11099999999999, -2.9470000000000027, -36.192999999999984, -21.416999999999916, -39.886999999999944, -21.416999999999916, 19.216999999999985, -6.88799999999992, 7.8840000000000146, -14.274000000000001, 37.428, 41.12099999999998, 18.96300000000008, -6.88799999999992, 18.96300000000008, 41.12099999999998, 18.96300000000008, 26.349000000000046, -3.1949999999999363, 33.735000000000014, 15.269999999999982, 44.81400000000008, 41.12099999999998, -21.659999999999968, -10.581000000000017, -17.966999999999985, 44.81400000000008, 37.428, -51.20399999999995, 0.4980000000000473, -17.966999999999985, 4.191000000000031, -6.88799999999992, 7.8840000000000146, -43.817999999999984, -6.88799999999992, 0.4980000000000473, -10.581000000000017, 4.191000000000031, 22.656000000000063, 22.656000000000063, 11.576999999999998, 18.96300000000008, -29.045999999999935, 15.269999999999982, -47.51099999999997, 15.269999999999982, -21.659999999999968, -29.045999999999935, -6.88799999999992, 4.191000000000031, -21.659999999999968, 4.191000000000031, 15.269999999999982, 7.8840000000000146, 18.96300000000008, -17.966999999999985, -54.896999999999935, -21.659999999999968, -21.659999999999968, -54.896999999999935, 7.8840000000000146, -36.432000000000016, 4.191000000000031, 0.4980000000000473, -47.51099999999997, 15.269999999999982, -10.334999999999923, -28.80499999999995, 11.829000000000065, -28.80499999999995, -17.722999999999956, -36.192999999999984, 4.441000000000031, 15.523000000000025, -14.028999999999996, 26.605000000000018, -28.80499999999995, 22.911000000000058, 41.381000000000085, -2.9470000000000027, 4.441000000000031, 19.216999999999985, 15.523000000000025, -28.80499999999995, 4.441000000000031, 30.298999999999978, 0.7470000000000709, -6.640999999999963, 37.68700000000001, -65.745, -2.9470000000000027, 11.829000000000065, 37.68700000000001, 0.7470000000000709, 15.523000000000025, 15.523000000000025, 0.4980000000000473, -21.659999999999968, 44.81400000000008, 0.4980000000000473, -6.88799999999992, 30.04200000000003, 7.8840000000000146, -25.352999999999952, 4.191000000000031, 15.269999999999982, 18.96300000000008, -17.966999999999985, -3.1949999999999363, -6.88799999999992, -25.352999999999952, 48.50700000000006, -25.352999999999952, -14.274000000000001, 7.8840000000000146, -21.659999999999968, -40.125, -29.045999999999935, 18.96300000000008, 18.96300000000008, -17.966999999999985, 22.656000000000063, 11.576999999999998, 15.269999999999982], \"power_mean\": -0.7143285024154259, \"energy_millijoules\": -149.23054976124195, \"energy_joules\": -0.14923054976124195, \"coremark_score\": 1436.114449, \"coremarks_per_mhz\": 3.198473160356347, \"ulpmark_cm_score\": -2010.3122348606116}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [900.604, 922.75, 915.368, 907.986], \"power_mean\": 911.677, \"energy_millijoules\": 4558.385, \"energy_joules\": 4.558385}}, \"546000\": {\"active\": {\"elapsed_sec\": 170.983542493, \"elapsed_ns\": 170983542493, \"power_samples\": [15.269999999999982, 15.269999999999982, 52.200000000000045, -25.352999999999952, -32.73899999999992, 4.191000000000031, -3.1949999999999363, 11.576999999999998, -17.966999999999985, -6.88799999999992, 18.96300000000008, 41.12099999999998, 37.428, -25.352999999999952, 22.656000000000063, -36.432000000000016, 44.81400000000008, 22.656000000000063, 0.4980000000000473, 0.4980000000000473, 41.12099999999998, 15.269999999999982, -25.352999999999952, 22.911000000000058, 37.68700000000001, 45.075000000000045, -2.9470000000000027, 22.911000000000058, -14.028999999999996, -17.722999999999956, 26.605000000000018, -43.58100000000002, -54.66300000000001, -10.334999999999923, -2.9470000000000027, 11.829000000000065, 19.216999999999985, -28.80499999999995, -17.722999999999956, -6.640999999999963, 8.134999999999991, -17.722999999999956, -14.028999999999996, -21.416999999999916, 0.7470000000000709, -28.80499999999995, 26.605000000000018, 11.829000000000065, 11.829000000000065, 37.68700000000001, 22.911000000000058, 22.911000000000058, 22.911000000000058, 29.785000000000082, 0.24900000000002365, 18.70900000000006, 15.017000000000053, 11.325000000000045, -21.90300000000002, 0.24900000000002365, 26.093000000000075, -7.134999999999991, 18.70900000000006, 33.476999999999975, 22.401000000000067, 29.785000000000082, 26.093000000000075, 15.017000000000053, 11.325000000000045, -14.519000000000005, 18.70900000000006, 26.093000000000075, 18.70900000000006, 18.70900000000006, -14.519000000000005, 18.70900000000006, -3.4429999999999836, 22.401000000000067, 33.476999999999975, 33.476999999999975, -7.134999999999991, 15.017000000000053, 33.476999999999975, 7.8840000000000146, -3.1949999999999363, 41.12099999999998, 4.191000000000031, 26.349000000000046, -10.581000000000017, 33.735000000000014, 26.349000000000046, 48.50700000000006, 30.04200000000003, 7.8840000000000146, 33.735000000000014, 18.96300000000008, 26.349000000000046, 41.12099999999998, 33.735000000000014, -29.045999999999935, -21.659999999999968, 18.96300000000008, 44.81400000000008, -40.125, -32.73899999999992, 30.04200000000003, -36.432000000000016, -32.73899999999992, 18.96300000000008, 7.8840000000000146, -36.432000000000016, -25.352999999999952, -17.966999999999985, -3.1949999999999363, 26.349000000000046, 0.4980000000000473, 18.96300000000008, 37.428, 22.656000000000063, 18.96300000000008, 48.50700000000006, -10.581000000000017, -25.352999999999952, -29.045999999999935, 37.428, 11.576999999999998, 18.96300000000008, 26.349000000000046, -29.045999999999935, 15.269999999999982, -21.659999999999968, 11.576999999999998, 18.96300000000008, -17.966999999999985, -10.581000000000017, 22.656000000000063, 22.656000000000063, -21.659999999999968, 4.191000000000031, 22.656000000000063, 7.8840000000000146, 0.4980000000000473, 7.8840000000000146, -6.88799999999992, 30.04200000000003, 4.191000000000031, 15.269999999999982, 4.191000000000031, -6.88799999999992, 4.191000000000031, 18.96300000000008, -17.966999999999985, 18.96300000000008, 22.656000000000063, -14.274000000000001, -32.73899999999992, -14.274000000000001, -6.88799999999992, 7.8840000000000146, 33.735000000000014, 44.81400000000008, 15.269999999999982, -6.88799999999992, 22.656000000000063, 18.96300000000008, 4.191000000000031, 41.12099999999998, 33.735000000000014, 44.81400000000008, 4.191000000000031], \"power_mean\": 8.230982352941211, \"energy_millijoules\": 1407.3625209032566, \"energy_joules\": 1.4073625209032565, \"coremark_score\": 1754.663017, \"coremarks_per_mhz\": 3.2136685293040292, \"ulpmark_cm_score\": 213.16469320744565}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [890.013, 901.092, 886.32, 853.083], \"power_mean\": 882.627, \"energy_millijoules\": 4413.135, \"energy_joules\": 4.4131350000000005}}, \"676000\": {\"active\": {\"elapsed_sec\": 137.955216132, \"elapsed_ns\": 137955216132, \"power_samples\": [4.441000000000031, 15.523000000000025, 19.216999999999985, 19.216999999999985, 19.216999999999985, 4.441000000000031, 4.441000000000031, 0.7470000000000709, 45.075000000000045, 4.441000000000031, 30.298999999999978, 56.15700000000004, 15.523000000000025, -2.9470000000000027, -6.640999999999963, -25.11099999999999, -6.640999999999963, -32.499000000000024, -17.722999999999956, 26.605000000000018, -17.722999999999956, 33.99300000000005, 0.7470000000000709, -10.334999999999923, 7.633000000000038, 44.553, 63.013000000000034, 11.325000000000045, 22.401000000000067, 0.24900000000002365, 11.325000000000045, 22.401000000000067, 18.70900000000006, 40.86099999999999, 18.70900000000006, -51.438999999999965, 15.017000000000053, -18.211000000000013, 3.941000000000031, 29.785000000000082, 0.24900000000002365, 22.401000000000067, -7.134999999999991, 37.16899999999998, 33.476999999999975, -7.134999999999991, 0.24900000000002365, 37.16899999999998, 15.017000000000053, 55.62900000000002, 15.017000000000053, 18.70900000000006, 22.401000000000067, 11.325000000000045, 18.70900000000006, 33.476999999999975, 7.633000000000038, 29.785000000000082, 15.017000000000053, 18.70900000000006, 37.16899999999998, 18.70900000000006, 3.941000000000031, 18.70900000000006, -7.134999999999991, 18.70900000000006, -7.134999999999991, 7.633000000000038, 3.941000000000031, 18.70900000000006, 22.401000000000067, 11.325000000000045, 44.553, 3.941000000000031, -36.670999999999935, 22.401000000000067, 0.24900000000002365, 37.16899999999998, 26.093000000000075, 40.86099999999999, 66.70500000000004, 48.245000000000005, 22.401000000000067, 29.785000000000082, -21.90300000000002, 7.633000000000038, 37.16899999999998, 29.785000000000082, 37.16899999999998, 48.245000000000005, 18.70900000000006, 3.941000000000031, 18.70900000000006, 51.93700000000001, 74.08900000000006, 15.017000000000053, 33.476999999999975, 44.553, 44.553, 18.70900000000006, -7.134999999999991, 7.633000000000038, 29.785000000000082, 15.017000000000053, 0.24900000000002365, -18.211000000000013, 15.017000000000053, 0.24900000000002365, 29.785000000000082, 48.245000000000005, -18.211000000000013, 44.553, 3.941000000000031, -58.82299999999998, 25.83699999999999, 44.29200000000003, 62.74700000000007, 0.0, 44.29200000000003, 33.21900000000005, 29.52800000000002, 25.83699999999999, 33.21900000000005, 36.91000000000008, 51.67399999999998, -33.21899999999994, 14.76400000000001, 36.91000000000008, 51.67399999999998, 11.072999999999979, -14.76400000000001, 33.21900000000005, 0.0, 36.91000000000008, 36.91000000000008, 11.072999999999979, 22.146000000000072], \"power_mean\": 17.514255474452586, \"energy_millijoules\": 2416.1828993691706, \"energy_joules\": 2.4161828993691707, \"coremark_score\": 2174.764038, \"coremarks_per_mhz\": 3.217106565088757, \"ulpmark_cm_score\": 124.16278588774283}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [845.926, 864.396, 879.172, 901.336], \"power_mean\": 872.7075, \"energy_millijoules\": 4363.5375, \"energy_joules\": 4.3635375000000005}}, \"757000\": {\"active\": {\"elapsed_sec\": 123.03363995, \"elapsed_ns\": 123033639950, \"power_samples\": [48.245000000000005, 40.86099999999999, 40.86099999999999, -10.826999999999998, 26.093000000000075, 29.785000000000082, 18.70900000000006, 3.941000000000031, 55.62900000000002, 22.401000000000067, 29.785000000000082, 33.476999999999975, 18.70900000000006, 74.08900000000006, 29.785000000000082, -29.28699999999992, 48.245000000000005, 48.245000000000005, 33.476999999999975, 33.476999999999975, 0.24900000000002365, 3.941000000000031, 29.785000000000082, 40.86099999999999, 11.325000000000045, 0.24900000000002365, -18.211000000000013, 44.553, -22.145999999999958, 25.83699999999999, 22.146000000000072, 62.74700000000007, -3.6909999999999172, -59.055999999999926, -7.381999999999948, 77.51100000000008, -36.90999999999997, 33.21900000000005, 22.146000000000072, -22.145999999999958, 62.74700000000007, 29.52800000000002, 3.691000000000031, 44.29200000000003, -14.76400000000001, 40.601, 22.146000000000072, 3.691000000000031, 55.36500000000001, 66.43799999999999, -29.52800000000002, 29.52800000000002, 11.072999999999979, 55.36500000000001, 14.76400000000001, 7.382000000000062, 40.601, 55.36500000000001, 47.721000000000004, 55.101, 55.101, 29.271000000000072, 10.821000000000026, 21.891000000000076, 18.201000000000022, 14.511000000000081, 21.891000000000076, -0.24900000000002365, 3.441000000000031, 29.271000000000072, 29.271000000000072, 36.65100000000007, 44.03100000000006, 25.581000000000017, 18.201000000000022, 21.891000000000076, -0.24900000000002365, 32.96100000000001, 21.891000000000076, 32.96100000000001, 21.891000000000076, 7.1310000000000855, 10.821000000000026, 21.891000000000076, 40.34100000000001, 32.96100000000001, 29.271000000000072, 59.05600000000004, 33.21900000000005, 29.52800000000002, 55.36500000000001, 55.36500000000001, 18.45500000000004, 44.29200000000003, 22.146000000000072, 22.146000000000072, -14.76400000000001, 18.45500000000004, 62.74700000000007, 18.45500000000004, 29.52800000000002, 7.382000000000062, 47.98300000000006, 55.36500000000001, 11.072999999999979, 22.146000000000072, 14.76400000000001, -18.454999999999927, 3.691000000000031, 11.072999999999979, -3.6909999999999172, 44.29200000000003, 29.52800000000002, 40.601, 33.21900000000005, 11.072999999999979, 33.21900000000005, 25.581000000000017, 55.101, 25.581000000000017, 36.65100000000007, 18.201000000000022], \"power_mean\": 24.52337704918036, \"energy_millijoules\": 3017.20034222695, \"energy_joules\": 3.0172003422269498, \"coremark_score\": 2438.548576, \"coremarks_per_mhz\": 3.221332332892999, \"ulpmark_cm_score\": 99.42992376123574}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [867.385, 889.531, 904.295, 849.16], \"power_mean\": 877.59275, \"energy_millijoules\": 4387.96375, \"energy_joules\": 4.38796375}}, \"839000\": {\"active\": {\"elapsed_sec\": 111.067862497, \"elapsed_ns\": 111067862497, \"power_samples\": [69.86099999999999, 62.480999999999995, 29.271000000000072, 18.201000000000022, 51.41100000000006, 29.271000000000072, 77.24099999999999, 58.791000000000054, 21.891000000000076, 36.65100000000007, 44.03100000000006, 36.65100000000007, 10.821000000000026, 40.34100000000001, 44.03100000000006, 51.41100000000006, 114.14100000000008, 55.101, 73.55100000000004, 29.271000000000072, 36.65100000000007, 18.201000000000022, 21.891000000000076, 62.480999999999995, 58.791000000000054, 3.441000000000031, 29.271000000000072, 29.271000000000072, 73.55100000000004, 32.96100000000001, 55.101, 47.721000000000004, 51.41100000000006, 44.03100000000006, 47.721000000000004, 40.34100000000001, 66.17100000000005, 51.41100000000006, 18.201000000000022, -18.698999999999955, 62.480999999999995, 32.96100000000001, 29.271000000000072, 14.511000000000081, 29.271000000000072, 10.821000000000026, -3.9389999999999645, -0.24900000000002365, 32.96100000000001, 25.581000000000017, 47.721000000000004, 51.41100000000006, 44.03100000000006, 29.271000000000072, 36.65100000000007, -0.24900000000002365, 44.03100000000006, 66.17100000000005, 44.03100000000006, 36.65100000000007, 44.03100000000006, 14.511000000000081, 14.511000000000081, 36.65100000000007, 36.65100000000007, -0.24900000000002365, 14.511000000000081, -18.698999999999955, 51.41100000000006, 10.821000000000026, 44.03100000000006, 14.511000000000081, 3.441000000000031, 58.791000000000054, 14.511000000000081, 62.480999999999995, 117.83100000000013, 36.65100000000007, -40.83899999999994, 47.721000000000004, 36.65100000000007, -26.07899999999995, 18.201000000000022, -18.698999999999955, 14.511000000000081, 10.821000000000026, 21.891000000000076, 51.41100000000006, 25.581000000000017, 18.201000000000022, 66.17100000000005, 47.721000000000004, 51.41100000000006, 36.65100000000007, 36.65100000000007, 18.201000000000022, 18.201000000000022, 55.101, 44.03100000000006, -22.38900000000001, 40.34100000000001, 25.581000000000017, 47.721000000000004, 47.721000000000004, 36.65100000000007, 3.441000000000031, 36.39200000000005, 10.569000000000074, 58.52600000000007, 14.258000000000038], \"power_mean\": 34.0586454545455, \"energy_millijoules\": 3782.820950179533, \"energy_joules\": 3.7828209501795333, \"coremark_score\": 2701.266894, \"coremarks_per_mhz\": 3.219626810488677, \"ulpmark_cm_score\": 79.30589471483232}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [922.5, 874.53, 845.01, 881.91], \"power_mean\": 880.9875, \"energy_millijoules\": 4404.9375, \"energy_joules\": 4.4049375}}, \"902000\": {\"active\": {\"elapsed_sec\": 103.074532003, \"elapsed_ns\": 103074532003, \"power_samples\": [36.39200000000005, 54.83699999999999, 43.76999999999998, 54.83699999999999, 36.39200000000005, 62.21500000000003, 40.08100000000002, 17.947000000000003, 36.39200000000005, -0.4979999999999336, 43.76999999999998, 25.325000000000045, 21.63600000000008, 54.83699999999999, 32.702999999999975, 21.63600000000008, 6.8799999999999955, 10.569000000000074, 29.01400000000001, 29.01400000000001, 54.83699999999999, 21.63600000000008, 36.39200000000005, 25.325000000000045, 62.21500000000003, 21.63600000000008, 32.702999999999975, 54.83699999999999, 47.45900000000006, 25.325000000000045, 17.947000000000003, 43.76999999999998, 73.28200000000004, 47.45900000000006, 54.83699999999999, 29.01400000000001, 17.947000000000003, 62.21500000000003, 36.39200000000005, 25.325000000000045, 69.59300000000007, 21.63600000000008, 10.569000000000074, 32.702999999999975, 25.325000000000045, 65.904, 47.45900000000006, 128.33300000000008, 25.069000000000074, 28.757000000000062, 43.509000000000015, 39.821000000000026, 32.44500000000005, 84.077, 73.01300000000003, 28.757000000000062, 39.821000000000026, 17.692999999999984, 14.004999999999995, 25.069000000000074, 54.57299999999998, 36.13300000000004, 47.197, 69.32500000000005, 43.509000000000015, 80.38900000000001, 50.88499999999999, 50.88499999999999, 50.88499999999999, 32.44500000000005, 50.88499999999999, 61.94900000000007, 50.88499999999999, 39.821000000000026, 32.44500000000005, 43.509000000000015, 47.197, 28.757000000000062, 61.94900000000007, 28.757000000000062, 54.57299999999998, 28.757000000000062, 73.01300000000003, 54.57299999999998, 36.13300000000004, 80.38900000000001, 58.26100000000008, 43.509000000000015, 61.94900000000007, 10.317000000000007, 39.821000000000026, 61.94900000000007, 61.94900000000007, 14.004999999999995, 73.01300000000003, 69.32500000000005, 50.88499999999999, 17.692999999999984, 10.317000000000007, 43.509000000000015, 65.63700000000006, 69.32500000000005], \"power_mean\": 42.57982352941179, \"energy_millijoules\": 4388.895383064448, \"energy_joules\": 4.3888953830644475, \"coremark_score\": 2910.756214, \"coremarks_per_mhz\": 3.2270024545454548, \"ulpmark_cm_score\": 68.35432923683219}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [863.226, 866.915, 914.872, 885.36], \"power_mean\": 882.59325, \"energy_millijoules\": 4412.96625, \"energy_joules\": 4.41296625}}, \"1014000\": {\"active\": {\"elapsed_sec\": 91.793140319, \"elapsed_ns\": 91793140319, \"power_samples\": [58.52600000000007, 43.76999999999998, 76.971, 47.45900000000006, 62.21500000000003, 40.08100000000002, 62.21500000000003, 43.76999999999998, 65.904, 99.10500000000002, 76.971, 51.148000000000025, 54.83699999999999, 40.08100000000002, 25.325000000000045, 47.45900000000006, 17.947000000000003, 32.702999999999975, 62.21500000000003, 76.971, 47.45900000000006, 62.21500000000003, 65.904, 91.72699999999998, 62.21500000000003, 62.21500000000003, 43.509000000000015, 61.94900000000007, 65.63700000000006, 65.63700000000006, 58.26100000000008, 58.26100000000008, 58.26100000000008, 58.26100000000008, 58.26100000000008, 65.63700000000006, 39.821000000000026, 43.509000000000015, 43.509000000000015, 6.629000000000019, 58.26100000000008, 69.32500000000005, 54.57299999999998, 25.069000000000074, 28.757000000000062, 58.26100000000008, 43.509000000000015, 25.069000000000074, 39.821000000000026, 47.197, 69.32500000000005, 43.509000000000015, 58.26100000000008, 43.509000000000015, 61.94900000000007, 43.509000000000015, 80.11800000000005, 76.43100000000004, 65.37, 43.24800000000005, 50.62200000000007, 72.74400000000003, 57.99599999999998, 54.30900000000008, 69.05700000000002, 35.874000000000024, 76.43100000000004, 65.37, 83.80500000000006, 43.24800000000005, 50.62200000000007, 80.11800000000005, 43.24800000000005, 80.11800000000005, 43.24800000000005, 35.874000000000024, 39.561000000000035, 87.49200000000008, 94.86599999999999, 65.37, 54.30900000000008, 65.37, 43.24800000000005, 80.11800000000005, 57.99599999999998, 2.691000000000031, 72.74400000000003, 28.5, 43.24800000000005, 46.93500000000006, 83.80500000000006], \"power_mean\": 55.47865934065938, \"energy_millijoules\": 5092.560361567146, \"energy_joules\": 5.092560361567146, \"coremark_score\": 3268.472316, \"coremarks_per_mhz\": 3.2233454792899408, \"ulpmark_cm_score\": 58.9094637471671}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [892.496, 885.36, 896.427, 925.939], \"power_mean\": 900.0554999999999, \"energy_millijoules\": 4500.2775, \"energy_joules\": 4.5002775}}, \"1144000\": {\"active\": {\"elapsed_sec\": 81.294066672, \"elapsed_ns\": 81294066672, \"power_samples\": [39.561000000000035, 105.92700000000013, 46.93500000000006, 65.37, 83.80500000000006, 83.80500000000006, 80.11800000000005, 76.43100000000004, 69.05700000000002, 69.05700000000002, 91.17900000000009, 80.11800000000005, 87.49200000000008, 76.43100000000004, 83.80500000000006, 91.17900000000009, 68.78899999999999, 79.84699999999998, 131.45100000000002, 61.41700000000003, 76.16100000000006, 61.41700000000003, 101.96300000000008, 90.90500000000009, 101.96300000000008, 101.96300000000008, 61.41700000000003, 90.90500000000009, 98.27700000000004, 79.84699999999998, 68.78899999999999, 79.84699999999998, 68.78899999999999, 94.59100000000001, 79.84699999999998, 46.673, 87.21900000000005, 72.47500000000002, 76.16100000000006, 83.53300000000002, 57.730999999999995, 76.16100000000006, 72.47500000000002, 94.59100000000001, 79.84699999999998, 87.21900000000005, 68.78899999999999, 50.35900000000004, 76.16100000000006, 76.16100000000006, 31.929000000000087, 113.02099999999996, 61.41700000000003, 61.41700000000003, 90.90500000000009, 83.53300000000002, 72.47500000000002, 76.16100000000006, 90.90500000000009, 79.84699999999998, 57.730999999999995, 17.18500000000006, 101.96300000000008, 87.21900000000005, 42.98700000000008, 50.35900000000004, 109.33500000000004, 46.673, 124.07899999999995, 65.10300000000007, 101.96300000000008, 57.730999999999995, 72.47500000000002, 61.41700000000003, 65.10300000000007, 113.02099999999996, 24.301000000000045, 123.79600000000005, 90.63100000000009, 75.89100000000008], \"power_mean\": 77.30728750000003, \"energy_millijoules\": 6284.623784256474, \"energy_joules\": 6.284623784256474, \"coremark_score\": 3690.581636, \"coremarks_per_mhz\": 3.2260328986013986, \"ulpmark_cm_score\": 47.73555431456787}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [918.063, 910.689, 929.124, 866.445], \"power_mean\": 906.08025, \"energy_millijoules\": 4530.40125, \"energy_joules\": 4.53040125}}, \"1248000\": {\"active\": {\"elapsed_sec\": 74.415984447, \"elapsed_ns\": 74415984447, \"power_samples\": [116.42599999999993, 90.63100000000009, 68.52100000000007, 83.26100000000008, 98.00099999999998, 94.31600000000003, 61.15100000000007, 86.94600000000003, 109.05600000000004, 98.00099999999998, 105.3710000000001, 72.20600000000002, 116.42599999999993, 127.481, 112.74099999999999, 94.31600000000003, 86.94600000000003, 105.3710000000001, 61.15100000000007, 131.16599999999994, 83.26100000000008, 86.94600000000003, 98.00099999999998, 94.31600000000003, 79.57600000000002, 83.26100000000008, 83.26100000000008, 112.74099999999999, 98.00099999999998, 101.68600000000004, 68.52100000000007, 116.42599999999993, 68.52100000000007, 120.1110000000001, 109.05600000000004, 98.00099999999998, 86.94600000000003, 75.89100000000008, 98.00099999999998, 105.3710000000001, 79.57600000000002, 105.3710000000001, 109.05600000000004, 94.31600000000003, 98.00099999999998, 120.1110000000001, 116.42599999999993, 138.24900000000002, 105.09300000000007, 134.56500000000005, 94.04100000000005, 112.46100000000001, 79.30500000000006, 112.46100000000001, 138.24900000000002, 116.14499999999998, 119.82899999999995, 119.82899999999995, 119.82899999999995, 86.673, 82.98900000000003, 64.56900000000007, 119.82899999999995, 53.51700000000005, 71.93700000000001, 105.09300000000007, 53.51700000000005, 68.25300000000004, 68.25300000000004, 97.72500000000002, 31.41300000000001, 101.40899999999999, 108.77700000000004, 57.20100000000002], \"power_mean\": 95.56010810810814, \"energy_millijoules\": 7111.199518726614, \"energy_joules\": 7.111199518726614, \"coremark_score\": 4031.77035, \"coremarks_per_mhz\": 3.2305852163461535, \"ulpmark_cm_score\": 42.18697551798129}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [913.88, 932.305, 902.825, 913.88], \"power_mean\": 915.7225, \"energy_millijoules\": 4578.6125, \"energy_joules\": 4.5786125}}, \"1352000\": {\"active\": {\"elapsed_sec\": 68.679939066, \"elapsed_ns\": 68679939066, \"power_samples\": [164.625, 68.78899999999999, 131.45100000000002, 120.39300000000003, 127.7650000000001, 105.64900000000011, 113.02099999999996, 120.39300000000003, 105.64900000000011, 138.8230000000001, 131.45100000000002, 120.39300000000003, 120.39300000000003, 116.70700000000011, 116.70700000000011, 124.07899999999995, 157.25299999999993, 98.27700000000004, 131.45100000000002, 124.07899999999995, 131.45100000000002, 146.19499999999994, 135.13699999999994, 105.64900000000011, 175.08899999999994, 105.09300000000007, 130.88100000000009, 145.61699999999996, 90.35700000000008, 82.98900000000003, 138.24900000000002, 112.46100000000001, 101.40899999999999, 127.19700000000012, 112.46100000000001, 127.19700000000012, 149.30099999999993, 138.24900000000002, 101.40899999999999, 130.88100000000009, 149.30099999999993, 141.933, 130.88100000000009, 138.24900000000002, 134.56500000000005, 112.46100000000001, 86.673, 130.88100000000009, 101.40899999999999, 112.46100000000001, 116.14499999999998, 108.77700000000004, 116.14499999999998, 160.35300000000007, 108.21900000000005, 93.49099999999999, 130.31099999999992, 145.039, 126.62900000000013, 119.2650000000001, 119.2650000000001, 111.90100000000007, 97.173, 115.58300000000008, 97.173, 82.44500000000005, 111.90100000000007, 122.94700000000012], \"power_mean\": 121.26758823529414, \"energy_millijoules\": 8328.65057068078, \"energy_joules\": 8.32865057068078, \"coremark_score\": 4368.465504, \"coremarks_per_mhz\": 3.231113538461538, \"ulpmark_cm_score\": 36.02024090866357}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [925.186, 921.5, 921.5, 906.756], \"power_mean\": 918.7355, \"energy_millijoules\": 4593.6775, \"energy_joules\": 4.5936775}}, \"1482000\": {\"active\": {\"elapsed_sec\": 62.696262994, \"elapsed_ns\": 62696262994, \"power_samples\": [141.35699999999997, 185.54099999999994, 189.22299999999996, 145.039, 148.721, 189.22299999999996, 145.039, 211.31500000000005, 156.08500000000004, 145.039, 211.31500000000005, 156.08500000000004, 174.49500000000012, 174.49500000000012, 170.8130000000001, 75.08100000000002, 152.40300000000002, 126.62900000000013, 141.35699999999997, 156.08500000000004, 156.08500000000004, 159.76700000000005, 163.44900000000007, 156.08500000000004, 185.54099999999994, 141.35699999999997, 189.22299999999996, 156.08500000000004, 141.35699999999997, 196.587, 156.08500000000004, 152.40300000000002, 156.08500000000004, 170.8130000000001, 152.40300000000002, 167.13100000000009, 170.8130000000001, 159.47399999999993, 159.47399999999993, 118.98299999999995, 163.15499999999997, 163.15499999999997, 155.79300000000012, 174.1980000000001, 170.51700000000005, 174.1980000000001, 155.79300000000012, 166.836, 185.24099999999999, 155.79300000000012, 144.75, 166.836, 155.79300000000012, 181.55999999999995, 188.92200000000003, 196.2840000000001, 177.87900000000013, 181.55999999999995, 148.43100000000004, 199.96499999999992, 166.836, 159.47399999999993], \"power_mean\": 163.5082096774194, \"energy_millijoules\": 10251.353715613583, \"energy_joules\": 10.251353715613583, \"coremark_score\": 4785.452225, \"coremarks_per_mhz\": 3.229050084345479, \"ulpmark_cm_score\": 29.26442773534167}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [916.818, 909.454, 898.408, 961.002], \"power_mean\": 921.4205, \"energy_millijoules\": 4607.1025, \"energy_joules\": 4.6071025}}, \"1586000\": {\"active\": {\"elapsed_sec\": 58.576252959, \"elapsed_ns\": 58576252959, \"power_samples\": [215.61300000000006, 219.29700000000003, 248.769, 237.7170000000001, 241.40100000000007, 259.82100000000014, 215.61300000000006, 270.87300000000005, 200.87699999999995, 259.82100000000014, 204.56099999999992, 200.87699999999995, 189.82500000000005, 230.34899999999993, 234.03300000000013, 219.29700000000003, 156.6690000000001, 204.56099999999992, 197.19299999999998, 241.40100000000007, 208.24500000000012, 226.66499999999996, 193.50900000000001, 167.721, 200.87699999999995, 197.19299999999998, 250.86300000000006, 247.18399999999997, 203.03600000000006, 243.5050000000001, 195.6780000000001, 203.03600000000006, 177.28300000000013, 203.03600000000006, 232.46800000000007, 195.6780000000001, 221.43100000000004, 217.75199999999995, 214.0730000000001, 210.394, 232.46800000000007, 195.6780000000001, 228.789, 232.46800000000007, 243.5050000000001, 191.99900000000002, 195.6780000000001, 199.35699999999997, 206.71499999999992, 195.6780000000001, 254.54200000000014, 236.14699999999993, 239.82600000000002, 210.394, 195.6780000000001, 214.0730000000001, 199.0530000000001, 191.69700000000012], \"power_mean\": 215.89551724137937, \"energy_millijoules\": 12646.350430645183, \"energy_joules\": 12.646350430645183, \"coremark_score\": 5121.988697, \"coremarks_per_mhz\": 3.2295010699873896, \"ulpmark_cm_score\": 23.72225897465462}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [931.293, 935.736, 968.892, 946.788], \"power_mean\": 945.67725, \"energy_millijoules\": 4728.38625, \"energy_joules\": 4.72838625}}}}, \"6\": {\"freqs\": {\"936000\": {\"active\": {\"elapsed_sec\": 59.99414565, \"elapsed_ns\": 59994145650, \"power_samples\": [85.03500000000008, 81.35700000000008, 99.74700000000007, 33.543000000000006, 110.78099999999995, 77.67900000000009, 85.03500000000008, 110.78099999999995, 110.78099999999995, 103.42500000000007, 99.74700000000007, 88.71300000000008, 77.67900000000009, 85.03500000000008, 37.221000000000004, 62.966999999999985, 99.74700000000007, 56.40600000000006, 60.08699999999999, 82.173, 74.81100000000004, 96.89700000000005, 38.000999999999976, 52.72500000000002, 82.173, 74.81100000000004, 63.76800000000003, 60.08699999999999, 41.682000000000016, 122.66399999999999, 107.94000000000005, 82.173, 115.30200000000013, 78.49200000000008, 93.21600000000001, 133.7070000000001, 60.08699999999999, 56.40600000000006, 45.363000000000056, 74.81100000000004, 111.6210000000001, 89.53500000000008, 63.76800000000003, 118.98299999999995, 118.98299999999995, 96.89700000000005, 96.89700000000005, 63.76800000000003, 78.49200000000008, 71.13, 89.53500000000008, 111.6210000000001, 82.173, 67.44900000000007, 93.21600000000001, 85.85400000000004, 96.89700000000005, 78.49200000000008, 104.25900000000001], \"power_mean\": 83.43432203389834, \"energy_millijoules\": 5005.570868310701, \"energy_joules\": 5.005570868310701, \"coremark_score\": 5001.50045, \"coremarks_per_mhz\": 5.343483386752136, \"ulpmark_cm_score\": 59.93322398035394}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [864.33, 827.55, 820.194, 868.008], \"power_mean\": 845.0205, \"energy_millijoules\": 4225.1025, \"energy_joules\": 4.2251025}}, \"1144000\": {\"active\": {\"elapsed_sec\": 49.019872118, \"elapsed_ns\": 49019872118, \"power_samples\": [155.79300000000012, 130.02600000000007, 137.38799999999992, 122.66399999999999, 78.49200000000008, 107.94000000000005, 130.02600000000007, 104.25900000000001, 192.60300000000007, 162.8610000000001, 137.1010000000001, 170.221, 137.1010000000001, 126.06099999999992, 170.221, 115.02099999999996, 173.90100000000007, 92.94100000000003, 162.8610000000001, 166.54099999999994, 122.38100000000009, 162.8610000000001, 192.30099999999993, 129.74099999999999, 144.461, 173.90100000000007, 173.90100000000007, 129.74099999999999, 148.14100000000008, 181.26099999999997, 173.90100000000007, 184.94100000000003, 140.78099999999995, 126.06099999999992, 173.90100000000007, 140.78099999999995, 159.18100000000004, 184.94100000000003, 151.82100000000014, 147.8510000000001, 169.92499999999995, 166.2460000000001, 151.52999999999997, 162.567, 158.88799999999992, 169.92499999999995, 136.81400000000008, 140.49299999999994], \"power_mean\": 149.4429166666667, \"energy_millijoules\": 7325.672663940933, \"energy_joules\": 7.325672663940932, \"coremark_score\": 6121.699384, \"coremarks_per_mhz\": 5.351135825174825, \"ulpmark_cm_score\": 40.95187073764383}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [809.82, 809.82, 857.673, 853.992], \"power_mean\": 832.8262500000001, \"energy_millijoules\": 4164.13125, \"energy_joules\": 4.1641312500000005}}, \"1352000\": {\"active\": {\"elapsed_sec\": 41.46620647, \"elapsed_ns\": 41466206470, \"power_samples\": [254.54200000000014, 261.9000000000001, 232.46800000000007, 247.18399999999997, 221.43100000000004, 180.962, 236.14699999999993, 225.11000000000013, 225.11000000000013, 232.46800000000007, 221.43100000000004, 276.616, 216.82500000000005, 213.14900000000011, 271.9649999999999, 235.20499999999993, 216.82500000000005, 271.9649999999999, 224.17700000000013, 187.41700000000014, 220.50099999999998, 253.58500000000004, 246.23299999999995, 238.88100000000009, 231.529, 268.289, 282.99299999999994, 235.20499999999993, 257.26099999999997, 242.55700000000002, 260.9370000000001, 275.6410000000001, 246.23299999999995, 227.85300000000007, 279.317, 257.26099999999997, 238.88100000000009, 282.99299999999994, 209.47299999999996, 275.6410000000001, 224.17700000000013], \"power_mean\": 241.6667804878049, \"energy_millijoules\": 10021.004616647486, \"energy_joules\": 10.021004616647486, \"coremark_score\": 7236.937328, \"coremarks_per_mhz\": 5.352764295857988, \"ulpmark_cm_score\": 29.93711823080315}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [746.837, 827.775, 813.059, 779.948], \"power_mean\": 791.9047499999999, \"energy_millijoules\": 3959.5237499999994, \"energy_joules\": 3.9595237499999993}}, \"1560000\": {\"active\": {\"elapsed_sec\": 35.890571628, \"elapsed_ns\": 35890571628, \"power_samples\": [404.30099999999993, 407.9770000000001, 396.94900000000007, 426.35699999999997, 385.92100000000005, 393.27300000000014, 404.30099999999993, 393.27300000000014, 389.597, 385.92100000000005, 407.9770000000001, 407.9770000000001, 441.0609999999999, 400.625, 385.92100000000005, 407.9770000000001, 396.94900000000007, 437.385, 422.68100000000004, 459.44100000000003, 448.413, 396.94900000000007, 421.221, 417.549, 432.2370000000001, 402.8610000000001, 395.51700000000005, 413.87699999999995, 402.8610000000001, 421.221, 443.25299999999993, 395.51700000000005, 399.1890000000001, 424.89300000000003, 428.56500000000005], \"power_mean\": 411.42820000000006, \"energy_millijoules\": 14766.39328187911, \"energy_joules\": 14.766393281879111, \"coremark_score\": 8361.670104, \"coremarks_per_mhz\": 5.360044938461539, \"ulpmark_cm_score\": 20.316403218662156}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [849.156, 849.156, 830.776, 812.396], \"power_mean\": 835.371, \"energy_millijoules\": 4176.855, \"energy_joules\": 4.176855}}, \"1664000\": {\"active\": {\"elapsed_sec\": 33.650867091, \"elapsed_ns\": 33650867091, \"power_samples\": [531.3810000000001, 483.645, 457.94100000000003, 502.0050000000001, 479.97299999999996, 498.3330000000001, 439.58100000000013, 461.61300000000006, 500.84400000000005, 478.8299999999999, 471.49199999999996, 434.80200000000013, 478.8299999999999, 497.17499999999995, 471.49199999999996, 533.865, 482.499, 566.886, 519.1890000000001, 489.837, 519.1890000000001, 515.52, 464.154, 526.527, 500.84400000000005, 522.858, 515.52, 522.858, 478.8299999999999, 471.49199999999996, 486.1680000000001, 456.81600000000003, 475.16100000000006], \"power_mean\": 492.00454545454545, \"energy_millijoules\": 16556.379567258777, \"energy_joules\": 16.556379567258777, \"coremark_score\": 8918.219923, \"coremarks_per_mhz\": 5.359507165264423, \"ulpmark_cm_score\": 18.119903495886735}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [855.576, 855.576, 822.528, 881.28], \"power_mean\": 853.74, \"energy_millijoules\": 4268.7, \"energy_joules\": 4.2687}}, \"1768000\": {\"active\": {\"elapsed_sec\": 31.678939054, \"elapsed_ns\": 31678939054, \"power_samples\": [618.345, 658.8030000000001, 647.769, 633.057, 625.701, 614.6670000000001, 640.413, 625.701, 644.0910000000001, 614.6670000000001, 647.769, 596.277, 688.2270000000001, 610.989, 647.769, 669.837, 666.1590000000001, 633.057, 625.701, 658.8030000000001, 644.0910000000001, 644.0910000000001, 625.701, 607.3109999999999, 599.9549999999999, 644.0910000000001, 637.2909999999999, 637.2909999999999, 633.6290000000001, 662.925, 604.3330000000001], \"power_mean\": 635.7584193548388, \"energy_millijoules\": 20140.15221980931, \"energy_joules\": 20.140152219809313, \"coremark_score\": 9473.285335, \"coremarks_per_mhz\": 5.358193062782806, \"ulpmark_cm_score\": 14.89561730843961}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [876.891, 875.364, 901.11, 886.398], \"power_mean\": 884.94075, \"energy_millijoules\": 4424.70375, \"energy_joules\": 4.42470375}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/exynos7904/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 919 mW\n\n\n===== CPU 1 =====\nFrequencies: 449 546 676 757 839 902 1014 1144 1248 1352 1482 1586\n\n 449:  1436     3.2 C/MHz     -1 mW   -0.1 J   -2010.3 I/mJ   208.9 s\n 546:  1755     3.2 C/MHz      8 mW    1.4 J   213.2 I/mJ   171.0 s\n 676:  2175     3.2 C/MHz     18 mW    2.4 J   124.2 I/mJ   138.0 s\n 757:  2439     3.2 C/MHz     25 mW    3.0 J   99.4 I/mJ   123.0 s\n 839:  2701     3.2 C/MHz     34 mW    3.8 J   79.3 I/mJ   111.1 s\n 902:  2911     3.2 C/MHz     43 mW    4.4 J   68.4 I/mJ   103.1 s\n1014:  3268     3.2 C/MHz     55 mW    5.1 J   58.9 I/mJ    91.8 s\n1144:  3691     3.2 C/MHz     77 mW    6.3 J   47.7 I/mJ    81.3 s\n1248:  4032     3.2 C/MHz     96 mW    7.1 J   42.2 I/mJ    74.4 s\n1352:  4368     3.2 C/MHz    121 mW    8.3 J   36.0 I/mJ    68.7 s\n1482:  4785     3.2 C/MHz    164 mW   10.3 J   29.3 I/mJ    62.7 s\n1586:  5122     3.2 C/MHz    216 mW   12.6 J   23.7 I/mJ    58.6 s\n\n\n===== CPU 6 =====\nFrequencies: 936 1144 1352 1560 1664 1768\n\n 936:  5002     5.3 C/MHz     83 mW    5.0 J   59.9 I/mJ    60.0 s\n1144:  6122     5.4 C/MHz    149 mW    7.3 J   41.0 I/mJ    49.0 s\n1352:  7237     5.4 C/MHz    242 mW   10.0 J   29.9 I/mJ    41.5 s\n1560:  8362     5.4 C/MHz    411 mW   14.8 J   20.3 I/mJ    35.9 s\n1664:  8918     5.4 C/MHz    492 mW   16.6 J   18.1 I/mJ    33.7 s\n1768:  9473     5.4 C/MHz    636 mW   20.1 J   14.9 I/mJ    31.7 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/exynos7904/main/uptime.txt",
    "content": " 10:14:31 up 29 min,  load average: 9.87, 9.87, 8.49\n"
  },
  {
    "path": "results/exynos7904/main/versions.txt",
    "content": "Kernel: Linux version 4.4.177-g602b6cc046a7 (eun0115@Nexus) (gcc version 4.9.x-google 20150123 (prerelease) (GCC) ) #5 SMP PREEMPT Sun Mar 6 17:41:13 PST 2022\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/exynos9611/main/cmdline.txt",
    "content": " root=/dev/ram0 androidboot.boot_devices=13520000.ufs console=ram loglevel=4 sec_debug.pcb_offset=7346944 sec_debug.smd_offset=7348992 sec_debug.lpddr4_size=4 sec_debug.dram_info=01,06,01,4G sec_debug.pwrsrc_rs=0x0000000820000000 sec_debug.reset_reason=7 sec_reset.reset_reason=7 sec_debug.reset_rwc=0 sec_debug.level=0 sec_watchdog.sec_pet=5 rcupdate.rcu_expedited=1 androidboot.debug_level=0x4f4c androidboot.force_upload=0x0 softdog.soft_margin=100 softdog.soft_panic=1 sec_debug.dump_sink=0x0 sec_debug.upload_count=0 androidboot.dram_info=01,06,01,4G androidboot.subpcb=0 androidboot.fmm_lock=0 sec_debug.fmm_lock_offset=7340600 sec_debug.sjl=1 androidboot.sn.param.offset=7343024 androidboot.im.param.offset=7342864 androidboot.me.param.offset=7342944 androidboot.pr.param.offset=7343104 androidboot.sku.param.offset=7343184 androidboot.prototype.param.offset=7351040 androidboot.recovery_offset=7355136 printk.devkmsg=on ess_setup=0xf9000000 sec_avc_log=0x40000@0x91202000 sec_tsp_log=0x40000@0x91244000 sec_disp_log=0x100000@0x91286000 sec_debug_next=0x800000@0x91388000 charging_mode=0x3100 s3cfb.bootloaderfb=0xca000000 lcdtype=9457731 androidboot.carrierid.param.offset=7340608 androidboot.carrierid=SER consoleblank=0 ehci_hcd.park=3 oops=panic pmic_info=27 ccic_info=1 fg_reset=0 androidboot.emmc_checksum=3 androidboot.sales.param.offset=7340572 sales_code=INS androidboot.odin_download=1 androidboot.bootloader=M215FXXU2BUF1 androidboot.selinux=enforcing androidboot.product.hardware.sku=hcesim androidboot.hardware.sku=hcesim androidboot.ucs_mode=0 androidboot.revision=5 androidboot.hardware=exynos9611 androidboot.warranty_bit=0 androidboot.rp=2 sec_debug.bin=C androidboot.hmac_mismatch=0 androidboot.sec_atd.tty=/dev/ttySAC0 androidboot.serialno=REDACTED androidboot.ap_serial=REDACTED snd_soc_core.pmdown_time=1000 androidboot.cp_reserved_mem=off androidboot.dtbo_idx=1 androidboot.fmp_config=0 androidboot.em.did=REDACTED androidboot.em.model=SM-M215F androidboot.em.status=0x0 androidboot.sb.debug0=0x0 androidboot.verifiedbootstate=orange androidboot.svb.ver=SVB1.0 bcm_setup=0xffffff80f8e00000 reserve-fimc=0xffffff80f9fe0000 firmware_class.path=/vendor/firmware ecd_setup=disable region1=SWA region2=OPEN factory_mode=0 androidboot.ulcnt=7 androidboot.vbmeta.device=PARTUUID=52444E41-494F-2044-5642-4D4554410000 androidboot.vbmeta.avb_version=1.1 androidboot.vbmeta.device_state=unlocked androidboot.vbmeta.hash_alg=sha256 androidboot.vbmeta.size=13888 androidboot.vbmeta.digest=26faa8664ef95537190058709caddb3042b3b528be00e9bc9bb1d7f4d189d724 androidboot.vbmeta.invalidate_on_error=yes androidboot.veritymode=enforcing \n"
  },
  {
    "path": "results/exynos9611/main/cpufreq_stats/0/time_in_state",
    "content": "1742000 10364\n1638000 6533\n1534000 6935\n1456000 7236\n1326000 7841\n1222000 8444\n1118000 9146\n1053000 9649\n910000 11064\n806000 12372\n702000 13980\n598000 16300\n403000 96191\n"
  },
  {
    "path": "results/exynos9611/main/cpufreq_stats/0/total_trans",
    "content": "16\n"
  },
  {
    "path": "results/exynos9611/main/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :   1742000   1638000   1534000   1456000   1326000   1222000   1118000   1053000    910000    806000    702000    598000    403000 \n  1742000:         0         0         0         0         0         0         0         0         0         0         0         0         2 \n  1638000:         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1534000:         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1456000:         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1326000:         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1222000:         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1118000:         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1053000:         1         0         0         0         0         0         1         0         0         0         0         0         0 \n   910000:         0         0         0         0         0         0         0         1         0         0         0         0         0 \n   806000:         0         0         0         0         0         0         0         0         1         0         0         0         0 \n   702000:         0         0         0         0         0         0         0         0         0         1         0         0         0 \n   598000:         0         0         0         0         0         0         0         0         0         0         1         0         0 \n   403000:         1         0         0         0         0         0         0         0         0         0         0         1         0 \n"
  },
  {
    "path": "results/exynos9611/main/cpufreq_stats/4/time_in_state",
    "content": "2314000 3516\n2210000 3427\n2184000 3428\n2080000 3529\n1976000 3729\n1898000 3831\n1768000 4031\n1664000 4232\n1508000 4534\n1456000 4735\n1352000 5039\n1248000 5339\n1144000 5744\n1040000 6250\n936000 154693\n"
  },
  {
    "path": "results/exynos9611/main/cpufreq_stats/4/total_trans",
    "content": "17\n"
  },
  {
    "path": "results/exynos9611/main/cpufreq_stats/4/trans_table",
    "content": "   From  :    To\n         :   2314000   2210000   2184000   2080000   1976000   1898000   1768000   1664000   1508000   1456000   1352000   1248000   1144000   1040000    936000 \n  2314000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         2 \n  2210000:         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  2184000:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  2080000:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1976000:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1898000:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1768000:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1664000:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1508000:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1456000:         1         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1352000:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1248000:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1144000:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  1040000:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n   936000:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n"
  },
  {
    "path": "results/exynos9611/main/cpuinfo.txt",
    "content": "processor\t: 0\nBogoMIPS\t: 52.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\n"
  },
  {
    "path": "results/exynos9611/main/device.txt",
    "content": "Model: Samsung M21 SWA OPEN REV00 board based on Exynos9611;\nCompatible: samsung,armv8;samsung,exynos9610;\n"
  },
  {
    "path": "results/exynos9611/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Linux version 4.14.113-gdc3f4130c14b-dirty (Ramen@SUSANO) (Android (7485623, based on r416183b1) clang version 12.0.7 (https://android.googlesource.com/toolchain/llvm-project c935d99d7cf2016289302412d708641d52d2f7ee)) #6 SMP PREEMPT Sat Jul 24 23:34:55 +05 2021\n[    0.000000] Boot CPU: AArch64 Processor [410fd034]\n[    0.000000] Machine model: Samsung M21 SWA OPEN REV00 board based on Exynos9611\n[    0.000000] [ECT] Address a0000000, Size 3a000\\x08\n[    0.000000] set_afc_mode: afc_mode is 0x31\n[    0.000000] charging_night_mode : 0x0(0)\n[    0.000000] temp_control_test : 0x0(0)\n[    0.000000] dsim: get_lcd_type: lcdtype: 905043\n[    0.000000] Malformed early option 'sales_code'\n[    0.000000] OF: reserved mem: initialized node ion_video_stream, compatible id exynos9820-ion\n[    0.000000] OF: reserved mem: initialized node wifibt_if, compatible id exynos,wifibt_if\n[    0.000000] OF: reserved mem: initialized node ion_crypto, compatible id exynos9820-ion\n[    0.000000] sec_debug_magic_setup: Reserved Mem(0x80000000, 0x1000) - Success\n[    0.000000] OF: reserved mem: initialized node sec_debug_magic, compatible id exynos,sec_debug_magic\n[    0.000000] exynos_seclog_reserved_mem_setup: Reserved memory for seclog: addr=c0000000, size=80000\n[    0.000000] OF: reserved mem: initialized node seclog_mem, compatible id exynos,seclog\n[    0.000000] OF: reserved mem: initialized node camera_contig, compatible id exynos9820-ion\n[    0.000000] OF: reserved mem: initialized node secure_camera, compatible id exynos9820-ion\n[    0.000000] abox_rmem_setup: base=0x00000000e9400000, size=0x0000000002800000\n[    0.000000] OF: reserved mem: initialized node abox_rmem@0xE9400000, compatible id exynos,abox_rmem\n[    0.000000] modem_if_reserved_mem_setup: memory reserved: paddr=3976200192, t_size=144703488\n[    0.000000] OF: reserved mem: initialized node modem_if, compatible id exynos,modem_if\n[    0.000000] modem_if_reserved_cplog_setup: cplog memory reserved: paddr=4120903680, t_size=31457280\n[    0.000000] OF: reserved mem: initialized node cp_ram_logging, compatible id exynos,cp_ram_logging\n[    0.000000] OF: reserved mem: initialized node header, compatible id debug-snapshot,header\n[    0.000000] OF: reserved mem: initialized node log_kernel, compatible id debug-snapshot,log_kernel\n[    0.000000] OF: reserved mem: initialized node log_platform, compatible id debug-snapshot,log_platform\n[    0.000000] OF: reserved mem: initialized node log_sfr, compatible id debug-snapshot,log_sfr\n[    0.000000] OF: reserved mem: initialized node log_cachedump, compatible id debug-snapshot,log_cachedump\n[    0.000000] OF: reserved mem: initialized node log_bcm, compatible id debug-snapshot,log_bcm\n[    0.000000] OF: reserved mem: initialized node log_pstore, compatible id debug-snapshot,log_pstore\n[    0.000000] OF: reserved mem: initialized node log_kevents, compatible id debug-snapshot,log_kevents\n[    0.000000] gif: gnss_if_reserved_mem_setup: gnss_if_reserved_mem_setup: memory reserved: paddr=0xfb000000, t_size=8388608\n[    0.000000] OF: reserved mem: initialized node gnss_if, compatible id exynos,gnss_if\n[    0.000000] contexthub_rmem_setup\n[    0.000000] OF: reserved mem: initialized node chub_rmem, compatible id exynos,chub_rmem\n[    0.000000] cma: Reserved 36 MiB at 0x00000008f9800000\n[    0.000000] On node 0 totalpages: 1020416\n[    0.000000]   Normal zone: 15944 pages used for memmap\n[    0.000000]   Normal zone: 0 pages reserved\n[    0.000000]   Normal zone: 1020416 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: Using PSCI v0.1 Function IDs from DT\n[    0.000000] psci: smccc_version 0x1\n[    0.000000] WARNING: x1-x3 nonzero in violation of boot protocol:\n               \tx1: 0000000000000000\n               \tx2: 0000000000000000\n               \tx3: 0000000080080000\n               This indicates a broken bootloader or old kernel\n[    0.000000] random: get_random_bytes called from start_kernel+0x94/0x400 with crng_init=0\n[    0.000000] percpu: Embedded 23 pages/cpu @        (ptrval) s54680 r8192 d31336 u94208\n[    0.000000] pcpu-alloc: s54680 r8192 d31336 u94208 alloc=23*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: enabling workaround for ARM erratum 845719\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1004472\n[    0.000000] sec_debug_force_upload: disabled (0)\n[    0.000000] sec_debug_get_sj_status: start 1\n[    0.000000] sec_debug_get_sj_status: LOCKED (1)\n[    0.000000] sec_debug_recovery_cause_setup, recovery_cause_offset :703b00\n[    0.000000] sec_debug_next_setup: base(virt):0xffffffc011388000 size:0x800000\n[    0.000000] sec_debug_next_setup: ds size: 0xb000\n[    0.000000] set_switch_sel: switch_sel: 0x01b\n[    0.000000] set_ccic_info: ccic_info: 0x0001\n[    0.000000] sec_bat_get_fg_reset, fg_reset:0\n[    0.000000] cplog_on=off, 0\n[    0.000000] fimc-is library memory: 0xffffff80f9fe0000\n[    0.000000] fimc-is heap DDK memory: 0xffffff80fb000000\n[    0.000000] fimc-is heap RTA memory: 0xffffff80ff000000\n[    0.000000] sec_bat_get_factory_mode, factory_mode : 0\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] Memory: 3478616K/4081664K available (11390K kernel code, 1924K rwdata, 7248K rodata, 5824K init, 11530K bss, 467880K reserved, 135168K cma-reserved)\n[    0.000000] Virtual kernel memory layout:\n[    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n[    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)\n[    0.000000]       .text : 0x        (ptrval) - 0x        (ptrval)   ( 11392 KB)\n[    0.000000]     .rodata : 0x        (ptrval) - 0x        (ptrval)   (  7296 KB)\n[    0.000000]       .init : 0x        (ptrval) - 0x        (ptrval)   (  5824 KB)\n[    0.000000]       .data : 0x        (ptrval) - 0x        (ptrval)   (  1924 KB)\n[    0.000000]        .bss : 0x        (ptrval) - 0x        (ptrval)   ( 11531 KB)\n[    0.000000]     fixed   : 0xffffffbefe7fd000 - 0xffffffbefec00000   (  4108 KB)\n[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)\n[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)\n[    0.000000]               0xffffffbf00000000 - 0xffffffbf22000000   (   544 MB actual)\n[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc880000000   ( 34816 MB)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n\n[    0.000000] **********************************************************\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **                                                      **\n[    0.000000] ** trace_printk() being used. Allocating extra memory.  **\n[    0.000000] **                                                      **\n[    0.000000] ** This means that this is a DEBUG kernel and it is     **\n[    0.000000] ** unsafe for production use.                           **\n[    0.000000] **                                                      **\n[    0.000000] ** If you see this message and you are not debugging    **\n[    0.000000] ** the kernel, report this immediately to your vendor!  **\n[    0.000000] **                                                      **\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **********************************************************\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] NO_HZ: Clearing 0 from nohz_full range for timekeeping\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from CPUs: 1-7.\n[    0.000000] ========================================\n[    0.000000] =\n[    0.000000] = [ECT] current version is TEST VERSION!!\n[    0.000000] = Please be aware that error can be happen.\n[    0.000000] = [VERSION] : 002t\n[    0.000000] =\n[    0.000000] ========================================\n[    0.000000] vclk initialize for cmucal\n[    0.000000] exynos9610_cal_data_init: cal data init\n[    0.000000] PMUCAL:  pmucal_cp_initialize()\n[    0.000000] PMUCAL:  pmucal_gnss_initialize()\n[    0.000000] PMUCAL:  pmucal_shub_initialize()\n[    0.000000] PMUCAL:           (ptrval)\n[    0.000000] EXYNOS9610: Clock setup completed\n[    0.000000] arch_timer: arch_timer_of_init: arch_timer is used only clocksource\n[    0.000000] arch_timer: cp15 timer(s) running at 26.00MHz (virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x5ff13d5a9, max_idle_ns: 440795202370 ns\n[    0.000004] sched_clock: 56 bits at 26MHz, resolution 38ns, wraps every 4398046511088ns\n[    0.004648] Enable clock for console to add reference counter\n[    0.004717] Calibrating delay loop (skipped), value calculated using timer frequency.. 52.00 BogoMIPS (lpj=260000)\n[    0.004728] pid_max: default: 32768 minimum: 301\n[    0.004828] Security Framework initialized\n[    0.004835] SELinux:  Initializing.\n[    0.004876] SELinux:  Starting in permissive mode\n[    0.004942] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.004961] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.006164] sched-energy: CPU0 max energy model capacity=369 != cpu_scale=1024\n[    0.006365] sched-energy: CPU1 max energy model capacity=369 != cpu_scale=1024\n[    0.006554] sched-energy: CPU2 max energy model capacity=369 != cpu_scale=1024\n[    0.006747] sched-energy: CPU3 max energy model capacity=369 != cpu_scale=1024\n[    0.007518] sched-energy: Sched-energy-costs installed from DT\n[    0.043583] ASID allocator initialised with 65536 entries\n[    0.063543] Hierarchical SRCU implementation.\n[    0.086799] debug-snapshot physical / virtual memory layout:\n[    0.086809] header      : phys:0xf9000000 / virt:0xffffff80f6000000 / size:0x10000\n[    0.086815] log_kernel  : phys:0xf9010000 / virt:0xffffff80f6010000 / size:0x200000\n[    0.086820] log_platform: phys:0xf9210000 / virt:0xffffff80f6210000 / size:0x400000\n[    0.086826] log_sfr     : phys:0xf9610000 / virt:0xffffff80f6610000 / size:0x200000\n[    0.086831] log_cachedump: phys:0xf9810000 / virt:0xffffff80f6810000 / size:0x100000\n[    0.086837] log_bcm     : phys:0xf9910000 / virt:0xffffff80f6910000 / size:0x400000\n[    0.086842] log_pstore  : phys:0xf9d10000 / virt:0xffffff80f6d10000 / size:0x200000\n[    0.086847] log_kevents : phys:0xf9f10000 / virt:0xffffff80f6f10000 / size:0x800000\n[    0.086854] total_item_size: 23616KB, dbg_snapshot_log struct size: 4504KB\n[    0.086859] sec_debug_save_last_kmsg: sec_log buffer is not full\n[    0.091909] sec_debug_save_last_kmsg: succeeded\n[    0.092184] success to regsiter sfr-dump-gic-setenable\n[    0.092200] success to regsiter sfr-dump-gic-setpend\n[    0.092220] success to regsiter sfr-dump-gic-setactive\n[    0.092253] debug-snapshot: success to register all-core lockup detector - ret: 0\n[    0.092271] debug-snapshot: debug_level [low]\n[    0.092287] debug-snapshot: SJTAG is enabled\n[    0.092294] debug-snapshot: enabled\n[    0.093197] debug-snapshot: logger buffer alloc address: 0x        (ptrval)\n[    0.113594] sec_debug: set magic code (0x66262564)\n[    0.113626] sec_first_kmsg_init: base:         (ptrval), size: 0x200000\n[    0.123640] watchdog: Disabling watchdog on nohz_full cores by default\n[    0.163549] smp: Bringing up secondary CPUs ...\n[    0.254388] CPU1: Booted secondary processor [410fd034]\n[    0.344347] CPU2: Booted secondary processor [410fd034]\n[    0.434333] CPU3: Booted secondary processor [410fd034]\n[    0.524357] CPU features: enabling workaround for ARM erratum 858921\n[    0.524404] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.524411] arch_timer: CPU4: Trapping CNTVCT access\n[    0.524457] CPU4: Booted secondary processor [410fd092]\n[    0.614329] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.614337] arch_timer: CPU5: Trapping CNTVCT access\n[    0.614367] CPU5: Booted secondary processor [410fd092]\n[    0.704350] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.704358] arch_timer: CPU6: Trapping CNTVCT access\n[    0.704386] CPU6: Booted secondary processor [410fd092]\n[    0.794353] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.794361] arch_timer: CPU7: Trapping CNTVCT access\n[    0.794390] CPU7: Booted secondary processor [410fd092]\n[    0.794553] smp: Brought up 1 node, 8 CPUs\n[    0.794571] SMP: Total of 8 processors activated.\n[    0.794585] CPU features: detected feature: 32-bit EL0 Support\n[    0.795053] CPU: All CPU(s) started at EL1\n[    0.795103] alternatives: patching kernel code\n[    0.795446] cpu=7 set cpu scale 1024 from energy model\n[    0.795459] cpu=7 set cpu scale 1024 from energy model\n[    0.795469] cpu=7 set cpu scale 1024 from energy model\n[    0.795491] cpu=6 set cpu scale 1024 from energy model\n[    0.795500] cpu=6 set cpu scale 1024 from energy model\n[    0.795511] cpu=6 set cpu scale 1024 from energy model\n[    0.795522] cpu=5 set cpu scale 1024 from energy model\n[    0.795531] cpu=5 set cpu scale 1024 from energy model\n[    0.795541] cpu=5 set cpu scale 1024 from energy model\n[    0.795554] cpu=4 set cpu scale 1024 from energy model\n[    0.795566] cpu=4 set cpu scale 1024 from energy model\n[    0.795576] cpu=4 set cpu scale 1024 from energy model\n[    0.795593] cpu=3 set cpu scale 369 from energy model\n[    0.795604] cpu=3 set cpu scale 369 from energy model\n[    0.795614] cpu=3 set cpu scale 369 from energy model\n[    0.795625] cpu=2 set cpu scale 369 from energy model\n[    0.795638] cpu=2 set cpu scale 369 from energy model\n[    0.795648] cpu=2 set cpu scale 369 from energy model\n[    0.795659] cpu=1 set cpu scale 369 from energy model\n[    0.795671] cpu=1 set cpu scale 369 from energy model\n[    0.795680] cpu=1 set cpu scale 369 from energy model\n[    0.795692] cpu=0 set cpu scale 369 from energy model\n[    0.795704] cpu=0 set cpu scale 369 from energy model\n[    0.795717] cpu=0 set cpu scale 369 from energy model\n[    0.797843] devtmpfs: initialized\n[    0.815700] Registered cp15_barrier emulation handler\n[    0.815723] Registered setend emulation handler\n[    0.815907] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.815921] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.817718] pinctrl core: initialized pinctrl subsystem\n[    0.818382] decon_board: 1554: panel_lut_ddi_recommend_init: panel-lut property does not exist so skip\n[    0.818397] exynos_protect_kernel_text: Kernel text start VA(0xffffff8008080000), PA(0x80080000)\n[    0.818403] exynos_protect_kernel_text: Kernel text end VA(0xffffff8008ba0000), PA(0x80ba0000)\n[    0.818442] exynos_protect_kernel_text: Success to set Kernel code as read-only\n[    0.820097] IOVMM: Created debugfs entry at debugfs/iovmm\n[    0.820112] IOMMU: Created debugfs entry at debugfs/iommu\n[    0.820279] NET: Registered protocol family 16\n[    0.822251] schedtune: configured to support 5 boost groups\n[    0.824515] cpuidle: using governor menu\n[    0.826782] vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.826794] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.827926] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.828009] exynos_set_debug_mem: alloc kmem for smc_dbg virt: 0x        (ptrval) phys: 0x        (ptrval) size: 8192.\n[    0.828040] exynos_set_debug_mem: Can not set the address to el3 monitor. ret = 0xffffffff. free the kmem\n[    0.828051] exynos_set_seh_address: send smc call with SMC_CMD_SET_SEH_ADDRESS.\n[    0.828076] exynos_set_seh_address: set the seh address to el3 monitor well.\n[    0.828265] fast_hp_cpus property is omitted!\n[    0.828886] BTS: driver is initialized\n[    0.835427] samsung-pinctrl 11c20000.pinctrl: irq number for muxed EINTs not found\n[    0.845662] exynos-chipid 10000000.chipid: Exynos: CPU[EXYNOS9610] CPU_REV[0x2] Detected\n[    0.849212] exynos-acpm 11820000.acpm: acpm probe\n[    0.849448] exynos-acpm-ipc 11900000.acpm_ipc: acpm_ipc probe\n[    0.849646] [ACPM] acpm framework SRAM dump to dram base: 0x8f28c0000\n[    0.850215] usi_v2 11c12000.usi: usi_v2_probe() mode:2\n[    0.850338] usi_v2 11c12014.usi: usi_v2_probe() mode:4\n[    0.850457] usi_v2 11c12020.usi: usi_v2_probe() mode:4\n[    0.850579] usi_v2 11c12030.usi: usi_v2_probe() mode:4\n[    0.850698] usi_v2 11c12040.usi: usi_v2_probe() mode:2\n[    0.850826] usi_v2 10011034.usi: usi configuration for secure channel is skipped(FP)\n[    0.850943] usi_v2 1001103c.usi: usi_v2_probe() mode:4\n[    0.886079] [Exynos Reboot]: Success to register arm_pm_restart\n[    0.886344] [Exynos Coresight] Failed get DT(-5).\n[    0.886435] exynos_handler_setup: handler_nr_irq = 2\n[    0.886502] Success to request irq62 for ecc_handler0 ecc handler\n[    0.886541] Success to request irq63 for ecc_handler1 ecc handler\n[    0.886696] exynos-dm 17000000.exynos-dm: [cpufreq_cl0] This doesn't need to send policy to ACPM\n[    0.886706] exynos-dm 17000000.exynos-dm: [cpufreq_cl1] This doesn't need to send policy to ACPM\n[    0.886719] exynos-dm 17000000.exynos-dm: [devfreq_intcam] This doesn't need to send policy to ACPM\n[    0.886727] exynos-dm 17000000.exynos-dm: [devfreq_cam] This doesn't need to send policy to ACPM\n[    0.886736] exynos-dm 17000000.exynos-dm: [devfreq_disp] This doesn't need to send policy to ACPM\n[    0.886744] exynos-dm 17000000.exynos-dm: [devfreq_aud] This doesn't need to send policy to ACPM\n[    0.886753] exynos-dm 17000000.exynos-dm: [dvfs_gpu] This doesn't need to send policy to ACPM\n[    0.886761] exynos-dm 17000000.exynos-dm: dm_type: 0(dm_cpu_cl0), available = true\n[    0.886768] exynos-dm 17000000.exynos-dm: dm_type: 1(dm_cpu_cl1), available = true\n[    0.886774] exynos-dm 17000000.exynos-dm: dm_type: 2(dm_mif), available = true\n[    0.886780] exynos-dm 17000000.exynos-dm: dm_type: 3(dm_int), available = true\n[    0.886786] exynos-dm 17000000.exynos-dm: dm_type: 4(dm_intcam), available = true\n[    0.886792] exynos-dm 17000000.exynos-dm: dm_type: 5(dm_cam), available = true\n[    0.886798] exynos-dm 17000000.exynos-dm: dm_type: 6(dm_disp), available = true\n[    0.886804] exynos-dm 17000000.exynos-dm: dm_type: 7(dm_aud), available = true\n[    0.887110] EXYNOS-PD: exynos_pd_dt_parse: pd-cam read need_smc 0x14510204 successfully.!\n[    0.887158] EXYNOS-PD: exynos_pd_dt_parse: pd-isp read need_smc 0x14710204 successfully.!\n[    0.887193] EXYNOS-PD: exynos_pd_dt_parse: pd-vipx1 read need_smc 0x10c10204 successfully.!\n[    0.887226] EXYNOS-PD: exynos_pd_dt_parse: pd-vipx2 read need_smc 0x10e10204 successfully.!\n[    0.887260] EXYNOS-PD: exynos_pd_dt_parse: pd-g2d read need_smc 0x12e10204 successfully.!\n[    0.887293] EXYNOS-PD: exynos_pd_dt_parse: pd-g3d read need_smc 0x11410204 successfully.!\n[    0.887327] EXYNOS-PD: exynos_pd_dt_parse: pd-dispaud read need_smc 0x14810204 successfully.!\n[    0.887362] EXYNOS-PD: exynos_pd_dt_parse: pd-mfc read need_smc 0x12c10204 successfully.!\n[    0.887806] EXYNOS-PD: pd-cam has a new child pd-isp.\n[    0.887851] EXYNOS-PD: pd-vipx1 has a new child pd-vipx2.\n[    0.888140] EXYNOS-PD:  PM Domain Initialize\n[    0.888238]    pd-cam    - on \n[    0.888253]    pd-isp    - on \n[    0.888267]    pd-vipx1  - on \n[    0.888281]    pd-vipx2  - on \n[    0.888296]    pd-g2d    - on \n[    0.888309]    pd-g3d    - on \n[    0.888324]    pd-dispaud - on \n[    0.888339]    pd-mfc    - on \n[    0.889376] s2mpb03:s2mpb03_i2c_init\n[    0.889442] Init Richtek RegMap 1.1.16_G\n[    0.889473] s2mu106:s2mu106_i2c_init\n[    0.889496] s2mpu09:s2mpu09_i2c_init\n[    0.889519] sm5713:sm5713_i2c_init\n[    0.889728] SCSI subsystem initialized\n[    0.890595] exynos-ufs-srpmb ufs-srpmb: Requested irq resource\n[    0.890606] exynos-ufs-srpmb ufs-srpmb: Requested irq data\n[    0.890639] exynos-ufs-srpmb ufs-srpmb: Requested irq 182\n[    0.890694] exynos-ufs-srpmb ufs-srpmb: Registered WSM\n[    0.890703] exynos-ufs-srpmb ufs-srpmb: Published  context\n[    0.890783] exynos-ufs-srpmb ufs-srpmb: Created socket\n[    0.891033] s3c64xx-spi 13910000.spi: spi bus clock parent not specified, using clock at index 0 as parent\n[    0.891043] s3c64xx-spi 13910000.spi: number of chip select lines not specified, assuming 1 chip select line\n[    0.891211] s3c64xx-spi 13910000.spi: Couldn't get pinctrl.\n[    0.891219] s3c64xx-spi 13910000.spi: spi clkoff-time is empty(Default: 0ms)\n[    0.891231] s3c64xx-spi 13910000.spi: PORT 7 fifo_lvl_mask = 0x7f\n[    0.891527] spi spi7.0: spi configuration for secure channel is skipped(FP)\n[    0.891966] usbcore: registered new interface driver usbfs\n[    0.892001] usbcore: registered new interface driver hub\n[    0.892083] usbcore: registered new device driver usb\n[    0.892568] [Input Booster] input_booster_init   ndevice_in_dt : 10\n[    0.892587] [Input Booster] input_booster_init   dt_infor->label : KEY\n[    0.892594] [Input Booster] input_booster_init   dt_infor->nlevels : 1\n[    0.892611] [Input Booster] Level 0 : frequency[1144000,0,0,0] hmp_boost[1] dma_latency[0] times[500,500,0]\n[    0.892618] [Input Booster] input_booster_init   dt_infor->label : TOUCHKEY\n[    0.892624] [Input Booster] input_booster_init   dt_infor->nlevels : 1\n[    0.892637] [Input Booster] Level 0 : frequency[1144000,0,0,0] hmp_boost[1] dma_latency[0] times[0,200,0]\n[    0.892643] [Input Booster] input_booster_init   dt_infor->label : TOUCH\n[    0.892648] [Input Booster] input_booster_init   dt_infor->nlevels : 3\n[    0.892661] [Input Booster] Level 0 : frequency[1144000,806000,1014000,0] hmp_boost[1] dma_latency[0] times[130,0,0]\n[    0.892672] [Input Booster] Level 1 : frequency[1144000,806000,1014000,0] hmp_boost[1] dma_latency[0] times[130,0,0]\n[    0.892683] [Input Booster] Level 2 : frequency[936000,806000,1014000,0] hmp_boost[1] dma_latency[0] times[0,500,0]\n[    0.892688] [Input Booster] input_booster_init   dt_infor->label : MULTITOUCH\n[    0.892694] [Input Booster] input_booster_init   dt_infor->nlevels : 2\n[    0.892705] [Input Booster] Level 0 : frequency[1144000,806000,1014000,0] hmp_boost[1] dma_latency[0] times[1000,0,0]\n[    0.892715] [Input Booster] Level 1 : frequency[936000,806000,1014000,0] hmp_boost[1] dma_latency[0] times[0,500,0]\n[    0.892720] [Input Booster] input_booster_init   dt_infor->label : KEYBOARD\n[    0.892726] [Input Booster] input_booster_init   dt_infor->nlevels : 2\n[    0.892737] [Input Booster] Level 0 : frequency[1144000,806000,0,0] hmp_boost[1] dma_latency[0] times[130,0,0]\n[    0.892748] [Input Booster] Level 1 : frequency[1144000,806000,0,0] hmp_boost[1] dma_latency[0] times[130,0,0]\n[    0.892753] [Input Booster] input_booster_init   dt_infor->label : MOUSE\n[    0.892759] [Input Booster] input_booster_init   dt_infor->nlevels : 2\n[    0.892770] [Input Booster] Level 0 : frequency[1144000,806000,0,0] hmp_boost[1] dma_latency[0] times[130,0,0]\n[    0.892780] [Input Booster] Level 1 : frequency[936000,806000,0,0] hmp_boost[1] dma_latency[0] times[0,500,0]\n[    0.892786] [Input Booster] input_booster_init   dt_infor->label : MOUSE WHEEL\n[    0.892791] [Input Booster] input_booster_init   dt_infor->nlevels : 2\n[    0.892811] [Input Booster] Level 0 : frequency[1144000,806000,0,0] hmp_boost[1] dma_latency[0] times[130,0,0]\n[    0.892822] [Input Booster] Level 1 : frequency[0,0,0,0] hmp_boost[0] dma_latency[0] times[0,0,0]\n[    0.892827] [Input Booster] input_booster_init   dt_infor->label : PEN HOVER\n[    0.892833] [Input Booster] input_booster_init   dt_infor->nlevels : 2\n[    0.892844] [Input Booster] Level 0 : frequency[1144000,806000,0,0] hmp_boost[1] dma_latency[0] times[130,0,0]\n[    0.892855] [Input Booster] Level 1 : frequency[936000,806000,0,0] hmp_boost[1] dma_latency[0] times[0,500,0]\n[    0.892860] [Input Booster] input_booster_init   dt_infor->label : PEN\n[    0.892866] [Input Booster] input_booster_init   dt_infor->nlevels : 2\n[    0.892876] Failed to get [0] param table property\n[    0.892883] [Input Booster] Level 0 : frequency[2080000,1742000,0,0] hmp_boost[1] dma_latency[0] times[130,0,0]\n[    0.892893] Failed to get [1] param table property\n[    0.892899] [Input Booster] Level 1 : frequency[936000,806000,0,0] hmp_boost[1] dma_latency[0] times[0,600,600]\n[    0.892905] [Input Booster] input_booster_init   dt_infor->label : KEY_TWO\n[    0.892911] [Input Booster] input_booster_init   dt_infor->nlevels : 1\n[    0.892934] [Input Booster] Level 0 : frequency[1508000,1053000,0,0] hmp_boost[1] dma_latency[0] times[700,700,0]\n[    0.893696] exynos5-hsi2c 11d10000.hsi2c: exynos5_i2c_set_timing IPCLK = 30000000 OP_CLK = 400000 DIV = 5 Timing FS1 = 0x1F8FF00 TIMING FS2 = 0x30003F0 TIMING FS3 = 0x50000\n[    0.893722] exynos5-hsi2c 11d10000.hsi2c: exynos5_i2c_set_timing IPCLK = 30000000 OP_CLK = 400000 DIV = 5 Timing FS1 = 0x1F8FF00 TIMING FS2 = 0x30003F0 TIMING FS3 = 0x50000\n[    0.894135] exynos5-hsi2c 11d40000.hsi2c: exynos5_i2c_set_timing IPCLK = 199875000 OP_CLK = 400000 DIV = 33 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x210000\n[    0.894175] exynos5-hsi2c 11d40000.hsi2c: exynos5_i2c_set_timing IPCLK = 199875000 OP_CLK = 400000 DIV = 33 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x210000\n[    0.894620] exynos5-hsi2c 138a0000.hsi2c: exynos5_i2c_set_timing IPCLK = 199875000 OP_CLK = 400000 DIV = 33 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x210000\n[    0.894658] exynos5-hsi2c 138a0000.hsi2c: exynos5_i2c_set_timing IPCLK = 199875000 OP_CLK = 400000 DIV = 33 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x210000\n[    0.895072] exynos5-hsi2c 138b0000.hsi2c: exynos5_i2c_set_timing IPCLK = 199875000 OP_CLK = 0 DIV = 0 Timing FS1 = 0x100FF00 TIMING FS2 = 0x3000300 TIMING FS3 = 0x0\n[    0.895108] exynos5-hsi2c 138b0000.hsi2c: exynos5_i2c_set_timing IPCLK = 199875000 OP_CLK = 1000000 DIV = 13 Timing FS1(FS+) = 0x1F0FF00 TIMING FS2(FS+) = 0x30003E0 TIMING FS3(FS+) = 0xD0000\n[    0.895144] exynos5-hsi2c 138b0000.hsi2c: exynos5_i2c_set_timing IPCLK = 199875000 OP_CLK = 0 DIV = 0 Timing FS1 = 0x100FF00 TIMING FS2 = 0x3000300 TIMING FS3 = 0x0\n[    0.895177] exynos5-hsi2c 138b0000.hsi2c: exynos5_i2c_set_timing IPCLK = 199875000 OP_CLK = 1000000 DIV = 13 Timing FS1(FS+) = 0x1F0FF00 TIMING FS2(FS+) = 0x30003E0 TIMING FS3(FS+) = 0xD0000\n[    0.895586] exynos5-hsi2c 138c0000.hsi2c: exynos5_i2c_set_timing IPCLK = 199875000 OP_CLK = 400000 DIV = 33 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x210000\n[    0.895624] exynos5-hsi2c 138c0000.hsi2c: exynos5_i2c_set_timing IPCLK = 199875000 OP_CLK = 400000 DIV = 33 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x210000\n[    0.896032] exynos5-hsi2c 138d0000.hsi2c: exynos5_i2c_set_timing IPCLK = 199875000 OP_CLK = 400000 DIV = 33 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x210000\n[    0.896070] exynos5-hsi2c 138d0000.hsi2c: exynos5_i2c_set_timing IPCLK = 199875000 OP_CLK = 400000 DIV = 33 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x210000\n[    0.896481] exynos5-hsi2c 13920000.hsi2c: exynos5_i2c_set_timing IPCLK = 199875000 OP_CLK = 400000 DIV = 33 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x210000\n[    0.896519] exynos5-hsi2c 13920000.hsi2c: exynos5_i2c_set_timing IPCLK = 199875000 OP_CLK = 400000 DIV = 33 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x210000\n[    0.896940] exynos5-hsi2c 13930000.hsi2c: exynos5_i2c_set_timing IPCLK = 199875000 OP_CLK = 400000 DIV = 33 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x210000\n[    0.896977] exynos5-hsi2c 13930000.hsi2c: exynos5_i2c_set_timing IPCLK = 199875000 OP_CLK = 400000 DIV = 33 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x210000\n[    0.897485] exynos-speedy 11a10000.speedy: speedy driver probe started\n[    0.897696] s2mpu09:s2mpu09_i2c_probe\n[    0.897710] of_s2mpu09_dt: irq-gpio: 22 \n[    0.898206] s2mpu09 15-0000: use_i2c_speedy was true\n[    0.898217] s2mpu09_i2c_probe device found: rev.0x 1\n[    0.898242] s2mpu09:s2mpu09_irq_init irq=217, irq->gpio=22\n[    0.908011] s2mpu09:s2mpu09_irq_init s2mpu09_PMIC_REG_INTSRC_MASK=0x06\n[    0.908209] s2mpu09_pmic_probe s2mpu09 pmic driver Loading start\n[    1.074356] random: fast init done\n[    1.134977] s2mpu09_pmic_probe s2mpu09 pmic driver Loading end\n[    1.135183] exynos-speedy 11a10000.speedy: speedy driver probe was succeeded\n[    1.135388] initcall exynos_speedy_init+0x0/0x20 returned 0 after 234375 usecs\n[    1.135885] i2c-gpio i2c@20: using pins 103 (SDA) and 104 (SCL)\n[    1.136380] s3c-i2c 13830000.i2c: Device s3c24xx_i2c_runtime_resume\n[    1.136485] s3c-i2c 13830000.i2c: Device s3c24xx_i2c_runtime_resume\n[    1.136533] s3c-i2c 13830000.i2c: i2c-0: S3C I2C adapter\n[    1.136792] s3c-i2c 13840000.i2c: Device s3c24xx_i2c_runtime_resume\n[    1.136884] s3c-i2c 13840000.i2c: Device s3c24xx_i2c_runtime_resume\n[    1.136995] sm5713 1-0049: sm5713_i2c_probe start\n[    1.137008] of_sm5713_dt: irq-gpio: 24 \n[    1.137718] sm5713:sm5713_i2c_probe v_id=0x1, rev=0x7\n[    1.138274] sm5713:sm5713_irq_init irq=270, irq->gpio=24\n[    1.226290] sm5713: sm5713_i2c_probe done\n[    1.226361] i2c i2c-1: of_i2c: invalid reg on /i2c@13840000/sm5713-fled@49\n[    1.226373] i2c i2c-1: Failed to create I2C device for /i2c@13840000/sm5713-fled@49\n[    1.226385] s3c-i2c 13840000.i2c: i2c-1: S3C I2C adapter\n[    1.226700] s3c-i2c 13860000.i2c: Device s3c24xx_i2c_runtime_resume\n[    1.226792] s3c-i2c 13860000.i2c: Device s3c24xx_i2c_runtime_resume\n[    1.226846] s2mpb03:s2mpb03_pmic_probe\n[    1.237506] s3c-i2c 13860000.i2c: i2c-3: S3C I2C adapter\n[    1.237828] s3c-i2c 13870000.i2c: Device s3c24xx_i2c_runtime_resume\n[    1.237927] s3c-i2c 13870000.i2c: Device s3c24xx_i2c_runtime_resume\n[    1.237974] s3c-i2c 13870000.i2c: i2c-4: S3C I2C adapter\n[    1.238243] s3c-i2c 13890000.i2c: Device s3c24xx_i2c_runtime_resume\n[    1.238332] s3c-i2c 13890000.i2c: Device s3c24xx_i2c_runtime_resume\n[    1.238375] s3c-i2c 13890000.i2c: i2c-6: S3C I2C adapter\n[    1.238610] Linux video capture interface: v2.00\n[    1.238949] s3c2410-wdt 10050000.watchdog_cl0: watchdog cluster0 probe\n[    1.238960] s3c2410-wdt 10050000.watchdog_cl0: It is not a multistage watchdog.\n[    1.239032] s3c2410-wdt 10050000.watchdog_cl0: MASK_WDT_RESET reg val: ffffffff\n[    1.239041] s3c2410-wdt 10050000.watchdog_cl0: DISABLE_WDT reg val: ffffffff\n[    1.239072] s3c2410-wdt 10050000.watchdog_cl0: probe: mapped reg_base=        (ptrval)\n[    1.239169] s3c2410-wdt 10050000.watchdog_cl0: DISABLE_WDT reg val:  ff7fffff, MASK_WDT_RESET reg val: ffffffff\n[    1.239178] s3c2410-wdt 10050000.watchdog_cl0: Automatic_wdt set false done, mask = 0\n[    1.239189] s3c2410-wdt 10050000.watchdog_cl0: Watchdog cluster 0 stop done, WTCON = 5c00\n[    1.239202] s3c2410-wdt 10050000.watchdog_cl0: DISABLE_WDT reg val:  ff7fffff, MASK_WDT_RESET reg val: ff7fffff\n[    1.239210] s3c2410-wdt 10050000.watchdog_cl0: Mask_wdt_reset set false done, mask = 0\n[    1.239220] s3c2410-wdt 10050000.watchdog_cl0: Watchdog cluster 0 stop done, WTCON = 5c00\n[    1.239232] s3c2410-wdt 10050000.watchdog_cl0: watchdog cluster 0, inactive, reset disabled, irq disabled\n[    1.239239] s3c2410-wdt 10050000.watchdog_cl0: Multistage watchdog disabled\n[    1.239246] sec_debug_get_wdd_info: return right value\n[    1.239302] s3c2410-wdt 10060000.watchdog_cl1: watchdog cluster1 probe\n[    1.239344] s3c2410-wdt 10060000.watchdog_cl1: MASK_WDT_RESET reg val: ff7fffff\n[    1.239353] s3c2410-wdt 10060000.watchdog_cl1: DISABLE_WDT reg val: ff7fffff\n[    1.239363] s3c2410-wdt 10060000.watchdog_cl1: probe: mapped reg_base=        (ptrval)\n[    1.239446] s3c2410-wdt 10060000.watchdog_cl1: DISABLE_WDT reg val:  fe7fffff, MASK_WDT_RESET reg val: ff7fffff\n[    1.239453] s3c2410-wdt 10060000.watchdog_cl1: Automatic_wdt set false done, mask = 0\n[    1.239465] s3c2410-wdt 10060000.watchdog_cl1: Watchdog cluster 1 stop done, WTCON = 5c00\n[    1.239476] s3c2410-wdt 10060000.watchdog_cl1: Watchdog cluster 1 stop done, WTCON = 5c00\n[    1.239484] s3c2410-wdt 10060000.watchdog_cl1: watchdog cluster 1, inactive, reset disabled, irq disabled\n[    1.239490] s3c2410-wdt 10060000.watchdog_cl1: Multistage watchdog enabled\n[    1.239496] sec_debug_get_wdd_info: return right value\n[    1.240530] argos_probe: Start probe\n[    1.240591] argos_probe: parse dt done\n[    1.240645] [SENSORS CORE] sensors_class_init\n[    1.240739] [SENSORS CORE] sensors_class_init succcess\n[    1.240810] input: meta_event as /devices/virtual/input/input0\n[    1.240820] [SENSORS CORE] sensors_class_init  succcess\n[    1.240827] fingerprint_class_init\n[    1.240873] Advanced Linux Sound Architecture Driver Initialized.\n[    1.241358] regulatory is not updated via queue_regulatory_request.\n[    1.241864] exynos-sysmmu 10c50000.sysmmu: Registering secure irq 65\n[    1.241891] exynos-sysmmu 10c50000.sysmmu: Secure base = 0x10c40000\n[    1.241909] exynos-sysmmu 10c50000.sysmmu: is probed. Version 7.2.0\n[    1.242348] exynos-sysmmu 10e50000.sysmmu: Registering secure irq 67\n[    1.242376] exynos-sysmmu 10e50000.sysmmu: Secure base = 0x10e40000\n[    1.242390] exynos-sysmmu 10e50000.sysmmu: is probed. Version 7.2.0\n[    1.242704] exynos-sysmmu 12c70000.sysmmu: Registering secure irq 69\n[    1.242727] exynos-sysmmu 12c70000.sysmmu: Secure base = 0x12c80000\n[    1.242742] exynos-sysmmu 12c70000.sysmmu: is probed. Version 7.2.0\n[    1.243085] exynos-sysmmu 12c90000.sysmmu: Registering secure irq 71\n[    1.243115] exynos-sysmmu 12c90000.sysmmu: Secure base = 0x12ca0000\n[    1.243129] exynos-sysmmu 12c90000.sysmmu: is probed. Version 7.2.0\n[    1.243384] exynos-sysmmu 12e70000.sysmmu: Registering secure irq 73\n[    1.243408] exynos-sysmmu 12e70000.sysmmu: Secure base = 0x12e80000\n[    1.243424] exynos-sysmmu 12e70000.sysmmu: is probed. Version 7.2.0\n[    1.243676] exynos-sysmmu 14550000.sysmmu: Registering secure irq 75\n[    1.243702] exynos-sysmmu 14550000.sysmmu: Secure base = 0x14560000\n[    1.243741] exynos-sysmmu 14550000.sysmmu: is probed. Version 7.2.0\n[    1.243921] exynos-sysmmu 14740000.sysmmu: Registering secure irq 77\n[    1.243948] exynos-sysmmu 14740000.sysmmu: Secure base = 0x14750000\n[    1.243969] exynos-sysmmu 14740000.sysmmu: is probed. Version 7.2.0\n[    1.244476] exynos-sysmmu 14770000.sysmmu: Registering secure irq 79\n[    1.244502] exynos-sysmmu 14770000.sysmmu: Secure base = 0x14780000\n[    1.244540] exynos-sysmmu 14770000.sysmmu: is probed. Version 7.2.0\n[    1.244852] exynos-sysmmu 14820000.sysmmu: Registering secure irq 81\n[    1.244881] exynos-sysmmu 14820000.sysmmu: Secure base = 0x14830000\n[    1.244906] exynos-sysmmu 14820000.sysmmu: is probed. Version 7.2.0\n[    1.245086] exynos-sysmmu 14920000.sysmmu: is probed. Version 7.2.0\n[    1.245732] DMA ranges for domain iommu-domain_dpu. [0x10000000..0xffff0000]\n[    1.245863] Added client.1[dsim] into domain iommu-domain_dpu\n[    1.245898] DMA ranges for domain iommu-domain_vipx. [0x40000000..0xe0000000]\n[    1.246002] Added client.1[vipx] into domain iommu-domain_vipx\n[    1.246035] DMA ranges for domain iommu-domain_abox. [0x10000000..0xd0000000]\n[    1.246114] Added client.1[abox] into domain iommu-domain_abox\n[    1.246140] DMA ranges for domain iommu-domain_isp. [0x10000000..0xd0000000]\n[    1.246207] Added client.1[fimc_is] into domain iommu-domain_isp\n[    1.246232] Added client.2[fimc_is_sensor] into domain iommu-domain_isp\n[    1.246263] Added client.3[fimc_is_sensor] into domain iommu-domain_isp\n[    1.246302] Added client.4[fimc_is_sensor] into domain iommu-domain_isp\n[    1.246349] Added client.5[fimc_is_sensor] into domain iommu-domain_isp\n[    1.246405] Added client.6[fimc_is_sensor4] into domain iommu-domain_isp\n[    1.246469] Added client.7[gdc] into domain iommu-domain_isp\n[    1.246534] DMA ranges for domain iommu-domain_mfc. [0x10000000..0xd0000000]\n[    1.246601] Added client.1[mfc0] into domain iommu-domain_mfc\n[    1.246638] Added client.2[tsmux] into domain iommu-domain_mfc\n[    1.246678] DMA ranges for domain iommu-domain_g2dmscljpeg. [0x10000000..0xd0000000]\n[    1.246759] Added client.1[g2d] into domain iommu-domain_g2dmscljpeg\n[    1.246811] Added client.2[scaler] into domain iommu-domain_g2dmscljpeg\n[    1.246885] Added client.3[smfc] into domain iommu-domain_g2dmscljpeg\n[    1.247431] ION: registered 'vstream_heap' heap\n[    1.247445] ION: registered 'crypto_heap' heap\n[    1.249668] ION: registered 'camera_heap' heap\n[    1.259806] ION: registered 'secure_camera_heap' heap\n[    1.260138] ION: registered 'vfw_heap' heap\n[    1.260231] ION: registered 'vnfw_heap' heap\n[    1.260314] ION: registered 'vframe_heap' heap\n[    1.260408] ION: registered 'vscaler_heap' heap\n[    1.262438] clocksource: Switched to clocksource arch_sys_counter\n[    1.296340] VFS: Disk quotas dquot_6.6.0\n[    1.296383] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    1.296470] allocating 262144 bytes at         (ptrval) (8078000000 physical) for avc log\n[    1.296477] sec_avc_log_init: no old log found\n[    1.297744] __init_sec_tsp_log: init done\n[    1.297756] __init_sec_tsp_raw_data: init done\n[    1.297763] __init_sec_tsp_command_history: init done\n[    1.298411] thermal thermal_zone0: power_allocator: sustainable_power will be estimated\n[    1.299026] thermal thermal_zone2: power_allocator: sustainable_power will be estimated\n[    1.299495] NET: Registered protocol family 2\n[    1.299837] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    1.299964] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    1.300098] TCP: Hash tables configured (established 32768 bind 32768)\n[    1.300170] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    1.300200] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    1.300316] NET: Registered protocol family 1\n[    1.300352] exynos-acpm 11820000.acpm: Loading exynos9610_acpm_fvp.fw firmware ... \n[    1.300379] exynos-acpm 11820000.acpm: OK \n[    1.300442] [ACPM] plugin(id = 2) attach done!\n[    1.300457] exynos-acpm 11820000.acpm: Loading exynos9610_acpm_tmu.fw firmware ... \n[    1.300480] exynos-acpm 11820000.acpm: OK \n[    1.300550] [ACPM] plugin(id = 4) attach done!\n[    1.300558] fvmap_init:fvmap initialize         (ptrval)\n[    1.300565] dvfs_type : dvfs_mif - id : 0\n[    1.300570]   num_of_lv      : 10\n[    1.300575]   num_of_members : 10\n[    1.300581]   lv : [2093000], volt = 787500 uV (0 %) \n[    1.300587]   lv : [2002000], volt = 775000 uV (0 %) \n[    1.300593]   lv : [1794000], volt = 762500 uV (0 %) \n[    1.300599]   lv : [1539000], volt = 725000 uV (0 %) \n[    1.300604]   lv : [1352000], volt = 712500 uV (0 %) \n[    1.300609]   lv : [1014000], volt = 662500 uV (0 %) \n[    1.300615]   lv : [ 845000], volt = 637500 uV (0 %) \n[    1.300621]   lv : [ 676000], volt = 618750 uV (0 %) \n[    1.300626]   lv : [ 546000], volt = 618750 uV (0 %) \n[    1.300632]   lv : [ 419000], volt = 612500 uV (0 %) \n[    1.300638] dvfs_type : dvfs_int - id : 1\n[    1.300642]   num_of_lv      : 5\n[    1.300647]   num_of_members : 10\n[    1.300653]   lv : [ 667000], volt = 812500 uV (0 %) \n[    1.300658]   lv : [ 533000], volt = 743750 uV (0 %) \n[    1.300663]   lv : [ 400000], volt = 681250 uV (0 %) \n[    1.300669]   lv : [ 200000], volt = 593750 uV (0 %) \n[    1.300674]   lv : [ 100000], volt = 587500 uV (0 %) \n[    1.300680] dvfs_type : dvfs_cpucl0 - id : 2\n[    1.300685]   num_of_lv      : 16\n[    1.300690]   num_of_members : 2\n[    1.300696]   lv : [2054000], volt = 1300000 uV (0 %) \n[    1.300701]   lv : [1950000], volt = 1256250 uV (0 %) \n[    1.300706]   lv : [1846000], volt = 1156250 uV (0 %) \n[    1.300712]   lv : [1742000], volt = 1093750 uV (0 %) \n[    1.300717]   lv : [1638000], volt = 1037500 uV (0 %) \n[    1.300723]   lv : [1534000], volt = 981250 uV (0 %) \n[    1.300728]   lv : [1456000], volt = 937500 uV (0 %) \n[    1.300734]   lv : [1326000], volt = 887500 uV (0 %) \n[    1.300739]   lv : [1222000], volt = 850000 uV (0 %) \n[    1.300745]   lv : [1118000], volt = 812500 uV (0 %) \n[    1.300750]   lv : [1053000], volt = 793750 uV (0 %) \n[    1.300755]   lv : [ 910000], volt = 750000 uV (0 %) \n[    1.300761]   lv : [ 806000], volt = 718750 uV (0 %) \n[    1.300766]   lv : [ 702000], volt = 687500 uV (0 %) \n[    1.300772]   lv : [ 598000], volt = 656250 uV (0 %) \n[    1.300778]   lv : [ 403000], volt = 600000 uV (0 %) \n[    1.300784] dvfs_type : dvfs_cpucl1 - id : 3\n[    1.300789]   num_of_lv      : 20\n[    1.300794]   num_of_members : 2\n[    1.300799]   lv : [2704000], volt = 1225000 uV (0 %) \n[    1.300805]   lv : [2600000], volt = 1225000 uV (0 %) \n[    1.300810]   lv : [2496000], volt = 1225000 uV (0 %) \n[    1.300816]   lv : [2314000], volt = 1225000 uV (0 %) \n[    1.300822]   lv : [2210000], volt = 1175000 uV (0 %) \n[    1.300827]   lv : [2184000], volt = 1131250 uV (0 %) \n[    1.300833]   lv : [2080000], volt = 1087500 uV (0 %) \n[    1.300838]   lv : [1976000], volt = 1031250 uV (0 %) \n[    1.300844]   lv : [1898000], volt = 987500 uV (0 %) \n[    1.300849]   lv : [1768000], volt = 943750 uV (0 %) \n[    1.300855]   lv : [1664000], volt = 900000 uV (0 %) \n[    1.300860]   lv : [1508000], volt = 831250 uV (0 %) \n[    1.300866]   lv : [1456000], volt = 812500 uV (0 %) \n[    1.300871]   lv : [1352000], volt = 781250 uV (0 %) \n[    1.300877]   lv : [1248000], volt = 750000 uV (0 %) \n[    1.300882]   lv : [1144000], volt = 725000 uV (0 %) \n[    1.300888]   lv : [1040000], volt = 706250 uV (0 %) \n[    1.300893]   lv : [ 936000], volt = 687500 uV (0 %) \n[    1.300899]   lv : [ 832000], volt = 668750 uV (0 %) \n[    1.300904]   lv : [ 728000], volt = 643750 uV (0 %) \n[    1.300910] dvfs_type : dvfs_g3d - id : 4\n[    1.300915]   num_of_lv      : 11\n[    1.300919]   num_of_members : 1\n[    1.300925]   lv : [1053000], volt = 993750 uV (0 %) \n[    1.300930]   lv : [ 949000], volt = 900000 uV (0 %) \n[    1.300936]   lv : [ 839000], volt = 818750 uV (0 %) \n[    1.300941]   lv : [ 764000], volt = 775000 uV (0 %) \n[    1.300947]   lv : [ 683000], volt = 737500 uV (0 %) \n[    1.300952]   lv : [ 572000], volt = 687500 uV (0 %) \n[    1.300957]   lv : [ 546000], volt = 681250 uV (0 %) \n[    1.300963]   lv : [ 455000], volt = 643750 uV (0 %) \n[    1.300969]   lv : [ 385000], volt = 618750 uV (0 %) \n[    1.300974]   lv : [ 338000], volt = 606250 uV (0 %) \n[    1.300980]   lv : [ 260000], volt = 581250 uV (0 %) \n[    1.300986] dvfs_type : dvfs_intcam - id : 5\n[    1.300990]   num_of_lv      : 5\n[    1.300994]   num_of_members : 6\n[    1.301000]   lv : [ 690000], volt = 843750 uV (0 %) \n[    1.301006]   lv : [ 680000], volt = 712500 uV (0 %) \n[    1.301011]   lv : [ 670000], volt = 706250 uV (0 %) \n[    1.301017]   lv : [ 660000], volt = 662500 uV (0 %) \n[    1.301022]   lv : [ 650000], volt = 587500 uV (0 %) \n[    1.301027] dvfs_type : dvfs_cam - id : 6\n[    1.301032]   num_of_lv      : 7\n[    1.301037]   num_of_members : 6\n[    1.301043]   lv : [ 700000], volt = 956250 uV (0 %) \n[    1.301049]   lv : [ 690000], volt = 887500 uV (0 %) \n[    1.301055]   lv : [ 680000], volt = 825000 uV (0 %) \n[    1.301061]   lv : [ 670000], volt = 681250 uV (0 %) \n[    1.301067]   lv : [ 660000], volt = 681250 uV (0 %) \n[    1.301072]   lv : [ 650000], volt = 593750 uV (0 %) \n[    1.301077]   lv : [ 640000], volt = 581250 uV (0 %) \n[    1.301083] dvfs_type : dvfs_disp - id : 7\n[    1.301088]   num_of_lv      : 5\n[    1.301092]   num_of_members : 2\n[    1.301098]   lv : [ 533000], volt = 775000 uV (0 %) \n[    1.301104]   lv : [ 400000], volt = 725000 uV (0 %) \n[    1.301110]   lv : [ 333000], volt = 643750 uV (0 %) \n[    1.301116]   lv : [ 167000], volt = 606250 uV (0 %) \n[    1.301121]   lv : [ 111000], volt = 581250 uV (0 %) \n[    1.301126] dvfs_type : dvfs_aud - id : 8\n[    1.301131]   num_of_lv      : 4\n[    1.301135]   num_of_members : 4\n[    1.301141]   lv : [1180000], volt = 825000 uV (0 %) \n[    1.301147]   lv : [ 800000], volt = 806250 uV (0 %) \n[    1.301152]   lv : [ 590000], volt = 662500 uV (0 %) \n[    1.301158]   lv : [ 394000], volt = 581250 uV (0 %) \n[    1.301163] dvfs_type : dvs_cp - id : 9\n[    1.301168]   num_of_lv      : 1\n[    1.301172]   num_of_members : 1\n[    1.301178]   lv : [1000000], volt = 762500 uV (0 %) \n[    1.301219] Initialized dma-buf trace successfully.\n[    1.301361] Trying to unpack rootfs image as initramfs...\n[    1.531631] Freeing initrd memory: 7488K\n[    1.531676] initcall populate_rootfs+0x0/0x274 returned 0 after 225034 usecs\n[    1.535309] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    1.538196] audit: initializing netlink subsys (enabled)\n[    1.538671] workingset: timestamp_bits=45 max_order=20 bucket_order=0\n[    1.542989] sdp_crypto: initialized!\n[    1.543833] [SDFAT] Filesystem version 2.4.5\n[    1.544221] Registering sdcardfs 0.1\n[    1.544390] fuse init (API version 7.26)\n[    1.544889] SELinux:  Registering netfilter hooks\n[    1.545188] [DSMS-KERNEL] Started.\n[    1.545460] key_dump feature not available\n[    1.545466] dek: initialized\n[    1.545523] SDP_MM: entering************************************************\n[    1.545643] SDP_PUB_CRYPTO[1]  : pub_crypto_mod_init netlink socket is created successfully! \n[    1.545716] SDP_FS_HANDLER[1]  : sdp_fs_handler_mod_init netlink socket is created successfully! \n[    1.549371] Key type asymmetric registered\n[    1.549393] io scheduler noop registered\n[    1.549480] io scheduler cfq registered (default)\n[    1.549488] io scheduler mq-deadline registered\n[    1.549494] io scheduler kyber registered\n[    1.549500] blk_crypt_init\n[    1.549511] blk_crypt_alg_fmp_init\n[    1.549517] blk_crypt: registed algorithm(xts(aes))\n[    1.549865] atomic64_test: passed\n[    1.550120] persistent_ram: found existing buffer, size 344444, start 344316\n[    1.550262] persistent_ram: found existing buffer, size 51042, start 51042\n[    1.550303] persistent_ram: found existing buffer, size 3812, start 3812\n[    1.550364] pstore: using zlib compression\n[    1.550571] console [pstore-1] enabled\n[    1.550723] pstore: Registered ramoops as persistent store backend\n[    1.550731] ramoops: attached 0x200000@0xf9d10000, ecc: 0/0\n[    1.551019] exynos-mipi-phy 14510800.dphy_m4s4s4_csis: doesn't use mipi-phy init control!!!\n[    1.551028] exynos-mipi-phy 14510800.dphy_m4s4s4_csis: exynos_mipi_phy_probe: iso 0x70c, reset 4 (-1)\n[    1.551035] exynos-mipi-phy 14510800.dphy_m4s4s4_csis: exynos_mipi_phy_probe: iso 0x70c, reset 8 (-1)\n[    1.551169] exynos-mipi-phy 14510800.dphy_m4s4s4_csis: Creating exynos-mipi-phy\n[    1.551227] exynos-mipi-phy dphy_m2s4s4s2_csis@0x14510800: doesn't use mipi-phy init control!!!\n[    1.551235] exynos-mipi-phy dphy_m2s4s4s2_csis@0x14510800: exynos_mipi_phy_probe: iso 0x710, reset 12 (-1)\n[    1.551243] exynos-mipi-phy dphy_m2s4s4s2_csis@0x14510800: exynos_mipi_phy_probe: iso 0x710, reset 16 (-1)\n[    1.551250] exynos-mipi-phy dphy_m2s4s4s2_csis@0x14510800: exynos_mipi_phy_probe: iso 0x710, reset 0 (-1)\n[    1.551404] exynos-mipi-phy dphy_m2s4s4s2_csis@0x14510800: Creating exynos-mipi-phy\n[    1.551565] exynos-mipi-phy phy_m4s4top_dsi0@0x11860000: doesn't control mipi-phy reset by sysreg!!!\n[    1.551573] exynos-mipi-phy phy_m4s4top_dsi0@0x11860000: doesn't use mipi-phy init control!!!\n[    1.551581] exynos-mipi-phy phy_m4s4top_dsi0@0x11860000: exynos_mipi_phy_probe: iso 0x70c, reset -1 (-1)\n[    1.551652] exynos-mipi-phy phy_m4s4top_dsi0@0x11860000: Creating exynos-mipi-phy\n[    1.551925] exynos_usbdrd_phy_probe: +++ 131d0000.phy\n[    1.551955] phy_exynos_usbdrd 131d0000.phy: It is TYPE USB2DRD\n[    1.551963] phy_exynos_usbdrd 131d0000.phy: USB3.0 PHY Isolation is ENABLED!!!\n[    1.551972] phy_exynos_usbdrd 131d0000.phy: don't need user Mux for phyclk\n[    1.552352] phy_exynos_usbdrd 131d0000.phy: non-DT: PHY CON Selection\n[    1.552364] phy_exynos_usbdrd 131d0000.phy: It has not the other phy\n[    1.552886] phy_exynos_usbdrd 131d0000.phy: [exynos_usbdrd_utmi_phy_isol] val : 0x3 / mask : 0x3 \n[    1.552915] phy_exynos_usbdrd 131d0000.phy: [exynos_usbdrd_usb_txco_enable] ++USB DEVCTRL reg 0x10003 \n[    1.552925] phy_exynos_usbdrd 131d0000.phy: [exynos_usbdrd_usb_txco_enable] --USB DEVCTRL reg 0x10003 \n[    1.552945] phy_exynos_usbdrd 131d0000.phy: [exynos_usbdrd_utmi_phy_isol] val : 0x0 / mask : 0x3 \n[    1.552967] phy_exynos_usbdrd 131d0000.phy: [exynos_usbdrd_usb_txco_enable] ++USB DEVCTRL reg 0x10000 \n[    1.552976] phy_exynos_usbdrd 131d0000.phy: [exynos_usbdrd_usb_txco_enable] --USB DEVCTRL reg 0x0 \n[    1.552999] phy_exynos_usbdrd 131d0000.phy: don't need usbphy tuning param for super speed\n[    1.553076] phy_exynos_usbdrd 131d0000.phy: exynos_usbdrd_fill_hstune_param hs tune cnt = 12\n[    1.553095] phy_exynos_usbdrd 131d0000.phy: usbphy info: version:0x300, refclk:0x82\n[    1.553103] phy_exynos_usbdrd 131d0000.phy: It has not the other phy\n[    1.553114] exynos_usbdrd_phy_probe: ---\n[    1.553177] exynos_usbdrd_phy_probe: +++ 131f0000.phy\n[    1.553266] phy_exynos_usbdrd 131f0000.phy: It is TYPE USB3DRD\n[    1.553274] phy_exynos_usbdrd 131f0000.phy: USB3.0 PHY Isolation is ENABLED!!!\n[    1.553282] phy_exynos_usbdrd 131f0000.phy: don't need user Mux for phyclk\n[    1.553607] phy_exynos_usbdrd 131f0000.phy: non-DT: PHY CON Selection\n[    1.553619] phy_exynos_usbdrd 131f0000.phy: It has not the other phy\n[    1.554078] phy_exynos_usbdrd 131f0000.phy: [exynos_usbdrd_utmi_phy_isol] val : 0x3 / mask : 0x3 \n[    1.554103] phy_exynos_usbdrd 131f0000.phy: [exynos_usbdrd_usb_txco_enable] ++USB DEVCTRL reg 0x3 \n[    1.554114] phy_exynos_usbdrd 131f0000.phy: [exynos_usbdrd_usb_txco_enable] --USB DEVCTRL reg 0x10003 \n[    1.554128] phy_exynos_usbdrd 131f0000.phy: [exynos_usbdrd_utmi_phy_isol] val : 0x0 / mask : 0x3 \n[    1.554149] phy_exynos_usbdrd 131f0000.phy: [exynos_usbdrd_usb_txco_enable] ++USB DEVCTRL reg 0x10000 \n[    1.554159] phy_exynos_usbdrd 131f0000.phy: [exynos_usbdrd_usb_txco_enable] --USB DEVCTRL reg 0x0 \n[    1.554244] phy_exynos_usbdrd 131f0000.phy: exynos_usbdrd_fill_sstune_param ss tune cnt = 15\n[    1.554300] phy_exynos_usbdrd 131f0000.phy: exynos_usbdrd_fill_hstune_param hs tune cnt = 10\n[    1.554315] phy_exynos_usbdrd 131f0000.phy: usbphy info: version:0x530, refclk:0x82\n[    1.554342] exynos_usbdrd_phy_probe: ---\n[    1.556333] genirq: irq_chip GIC-0 did not update eff. affinity mask of irq 141\n[    1.557839] dma-pl330 120c0000.pdma0: Loaded driver for PL330 DMAC-341330\n[    1.557853] dma-pl330 120c0000.pdma0: \tDBUFF-8x4bytes Num_Chans-8 Num_Peri-32 Num_Events-32\n[    1.558209] bcm_info: exynos_bcm_dbg_probe: exynos bcm is initialized!!\n[    1.558619] exynos-itmon ITMON@0: success to register request irq120 - TREX_D_CORE\n[    1.558722] exynos-itmon ITMON@0: success to register request irq121 - TREX_D_NRT\n[    1.558777] exynos-itmon ITMON@0: success to register request irq122 - TREX_P_CORE\n[    1.558868] exynos-itmon ITMON@0: success to probe Exynos ITMON driver\n[    1.559700] exynos-seclog seclog: Message buffer address[0xc0000000], Message buffer size[0x80000]\n[    1.559710] exynos-seclog seclog: Exynos Secure Log driver probe done!\n[    1.559806] [HDCP2]hdcp_init:387: hdcp2 driver init\n[    1.560833] samsung-uart 13820000.uart: No explicit src-clk. Use default src-clk\n[    1.561015] 13820000.uart: ttySAC0 at MMIO 0x13820000 (irq = 132, base_baud = 0) is a S3C6400/10\n[    1.561739] [ExyRNG] passed the start-up test\n[    1.563065] ExyRNG: hwrng registered\n[    1.563106] ExyRNG driver, (c) 2014 Samsung Electronics\n[    1.563350] mali 11500000.mali: Kernel DDK version r26p0-01eac0\n[    1.563462] [G3D] gpu_ess_id_type: failed to get item from dt. Data will be set to 0.\n[    1.563471] [G3D] ECT table(11) and gpu driver(11)\n[    1.563478] [G3D] G3D 1053000Khz ASV is 993750uV\n[    1.563484] [G3D] G3D  949000Khz ASV is 900000uV\n[    1.563490] [G3D] G3D  839000Khz ASV is 818750uV\n[    1.563496] [G3D] G3D  764000Khz ASV is 775000uV\n[    1.563501] [G3D] G3D  683000Khz ASV is 737500uV\n[    1.563505] [G3D] G3D  572000Khz ASV is 687500uV\n[    1.563510] [G3D] G3D  546000Khz ASV is 681250uV\n[    1.563515] [G3D] G3D  455000Khz ASV is 643750uV\n[    1.563519] [G3D] G3D  385000Khz ASV is 618750uV\n[    1.563524] [G3D] G3D  338000Khz ASV is 606250uV\n[    1.563529] [G3D] G3D  260000Khz ASV is 581250uV\n[    1.563881] mali 11500000.mali: GPU identified as 0x1 arch 6.2.2 r0p1 status 0\n[    1.564263] mali 11500000.mali: No memory group manager is configured\n[    1.565081] mali 11500000.mali: Probed as mali0\n[    1.565614] exynos-g2d 12e40000.g2d: Linked as a consumer to 12e70000.sysmmu\n[    1.565624] exynos-g2d 12e40000.g2d: is owner of 12e70000.sysmmu\n[    1.565727] exynos-g2d 12e40000.g2d: Fault handler is registered for 12e70000.sysmmu\n[    1.566154] exynos-g2d 12e40000.g2d: Probed FIMG2D version 0x71000000\n[    1.566594] [MUIC] muic_notifier_init\n[    1.567369] cacheinfo: Unable to detect cache hierarchy for CPU 0\n[    1.567824] random: crng init done\n[    1.573477] brd: module loaded\n[    1.582138] loop: module loaded\n[    1.582390] zram: Added device: zram0\n[    1.582400] Log Collector Init\n[    1.582620] Sable Log Collection is now ENABLED.\n[    1.585290] Samlog Debugfs Initialized\n[    1.585304] wlbt: scsc_logring: Allocated STATIC ring buffer of size 4194304 bytes.\n[    1.585310] wlbt: Samlog Loaded.\n[    1.585316] wlbt: Samlog Started.\n[    1.585337] Registered client: Logring\n[    1.585477] wlbt: platform_mif_create: Creating MIF platform device\n[    1.585490] wlbt: platform_mif_create: platform->mem_start 0xfd600000 platform->mem_size 0x1000000\n[    1.585522] wlbt: platform_mif_create: platform->reg_start 119c0000 size 180 base 000000007cc429d1\n[    1.585535] wlbt: platform_mif_create: MBOX irq 103 flag 0x404\n[    1.585546] wlbt: platform_mif_create: ALIVE irq 104 flag 0x404\n[    1.585556] wlbt: platform_mif_create: WDOG irq 105 flag 0x404\n[    1.585566] wlbt: platform_mif_create: CFG_REQ irq 106 flag 0x404\n[    1.585978] wlbt: scsc_mx_module_init: mx140 Core Driver scsc_release 11.6.0.0.0\n[    1.586100] wlbt: platform_mif_irq_reg_handler: Registering mif int handler mifiintrman_isr+0x0/0xfc in 000000000ced602d 000000000ced602d\n[    1.586116] wlbt: platform_mif_suspend_reg_handler: Registering mif suspend/resume handlers in 000000000ced602d 000000000ced602d\n[    1.586427] wlbt: mxman_wifi_kobject_ref_get: wifi_kobj_ref: 0x00000000dc34767a\n[    1.586440] wlbt: mxman_create_sysfs_memdump: kobj_ref: 0x00000000dc34767a\n[    1.586571] wlbt: scsc_lerna_init: lerna intialisation complete.\n[    1.586583] Register mx_cb functions\n[    1.586589] wlbt: srvman_init: \n[    1.586631] wlbt: mx_syserr_init: MM_SYSERR_INIT: syserr_reset_min_interval 300000 syserr_reset_monitor_period 3600000\n[    1.586645] wlbt: scsc_mx_module_probe_registered_clients: No clients registered\n[    1.586655] wlbt: mx_mmap_init: mx_mmap INIT; version: 0.0\n[    1.586769] wlbt: platform_mif_get_mifram_ptr: Memory unmmaped\n[    1.586791] wlbt: scsc_bt_module_init: SCSC MX BT Driver -devel (C) Samsung Electronics Co., Ltd\n[    1.586997] wlbt: slsi_bt_service_probe: BT service probe (BT driver 00000000d2bb1acb)\n[    1.587015] wlbt: slsi_ant_service_probe: ANT service probe (ANT driver 00000000d2bb1acb)\n[    1.587536] mcu_ipc 11920000.mcu_ipc: mcu_ipc_probe: mcu_ipc probe start.\n[    1.587663] mcu_ipc 11920000.mcu_ipc: irq_affinity_mask = 0x3\n[    1.587671] mcu_ipc 11920000.mcu_ipc: mcu_ipc_probe: mcu_ipc probe done.\n[    1.587728] mcu_ipc 11a00000.mcu_ipc: mcu_ipc_probe: mcu_ipc probe start.\n[    1.587911] mcu_ipc 11a00000.mcu_ipc: Failed to get affinity mask\n[    1.587922] mcu_ipc 11a00000.mcu_ipc: Can't set IRQ affinity with(-19)\n[    1.587931] mcu_ipc 11a00000.mcu_ipc: mcu_ipc_probe: mcu_ipc probe done.\n[    1.588310] shm_ipc shmem@F0000000: shm_probe: shmem driver init\n[    1.588337] shm_ipc shmem@F0000000: cp_mem_base: 0xed000000, 0x0000000000000000\n[    1.588344] shm_ipc shmem@F0000000: cp_boot_offset: 0x320\n[    1.588353] shm_ipc shmem@F0000000: CP memory map verification: PASS!\n[    1.588360] shm_ipc shmem@F0000000: table_id_ver: MEM0\n[    1.588367] shm_ipc shmem@F0000000: bin_count: 4\n[    1.588373] shm_ipc shmem@F0000000: cp dram_size: 0x07900000\n[    1.588380] shm_ipc shmem@F0000000: ext_mem_size: 0x01100000\n[    1.588388] shm_ipc shmem@F0000000: VSS: 0x07900000: 0x00700000\n[    1.588399] shm_ipc shmem@F0000000: IPC: 0x08000000: 0x00800000\n[    1.588409] shm_ipc shmem@F0000000: VSS PARAM: 0x08800000: 0x00200000\n[    1.588418] shm_ipc shmem@F0000000: LOG: 0x08A00000: 0x01E00000\n[    1.588431] shm_ipc shmem@F0000000: paddr=0xED000000, total_size=0x08A00000, ipc_off=0x08000000, ipc_size=0x00800000, cp_size=0x07900000, vss_size=0x00700000\n[    1.588438] shm_ipc shmem@F0000000: zmb_off=0x00000000, zmb_size=0x00000000\n[    1.588444] shm_ipc shmem@F0000000: acpm_base=0x0203C000, acpm_size=0x00012000\n[    1.588450] Release cplog reserved memory\n[    1.591922] mif: modem_probe: 10000.mif_pdata: +++ ()\n[    1.592102] mif: modem_if_parse_dt_pdata: DT parse complete!\n[    1.592258] mif: ss310ap_init_modemctl_device: +++\n[    1.592346] mif: mif_init_irq: name:cp_wdt num:175 flags:0x00014000\n[    1.592382] mif: mif_request_irq: cp_wdt(#175) handler registered (flags:0x00014000)\n[    1.592397] mif: mif_disable_irq: cp_wdt(#175) is disabled <ss310ap_init_modemctl_device>\n[    1.592406] mif: ss310ap_init_modemctl_device: cp_rst_n: Invalied gpio pins\n[    1.592421] mif: ss310ap_init_modemctl_device: ---\n[    1.592486] mif: create_modemctl_device: s337ap is created!!!\n[    1.592492] mif: shmem_create_link_device: +++\n[    1.592501] mif: shmem_create_link_device: MODEM:s337ap LINK:shmem\n[    1.592522] mif: shmem_create_link_device: shmem<->s337ap: LINK_ATTR_SBD_IPC\n[    1.592597] mif: shmem_create_link_device: shmem<->s337ap: LINK_ATTR_DPRAM_MAGIC\n[    1.594057] mif: shmem_create_link_device: boot_base=0000000000000000, boot_size=134217728\n[    1.594153] mif: shmem_create_link_device: ipc_base=0000000000000000, ipc_size=8388608\n[    1.594236] mif: shmem_create_link_device: vss_base=0000000000000000\n[    1.594258] mif: shmem_create_link_device: acpm_base=0000000000000000 acpm_size:0x12000\n[    1.594279] mif: shmem_create_link_device: Parsing MIF table...\n[    1.594293] mif: exynos_devfreq_parse_ect: MIF_LEV[10] : 2093000\n[    1.594303] mif: exynos_devfreq_parse_ect: MIF_LEV[9] : 2002000\n[    1.594312] mif: exynos_devfreq_parse_ect: MIF_LEV[8] : 1794000\n[    1.594321] mif: exynos_devfreq_parse_ect: MIF_LEV[7] : 1539000\n[    1.594330] mif: exynos_devfreq_parse_ect: MIF_LEV[6] : 1352000\n[    1.594338] mif: exynos_devfreq_parse_ect: MIF_LEV[5] : 1014000\n[    1.594346] mif: exynos_devfreq_parse_ect: MIF_LEV[4] : 845000\n[    1.594354] mif: exynos_devfreq_parse_ect: MIF_LEV[3] : 676000\n[    1.594362] mif: exynos_devfreq_parse_ect: MIF_LEV[2] : 546000\n[    1.594370] mif: exynos_devfreq_parse_ect: MIF_LEV[1] : 419000\n[    1.594377] mif: shmem_create_link_device: Parsing CL0 table...\n[    1.594386] mif: exynos_devfreq_parse_ect: CL0_LEV[16] : 2054000\n[    1.594394] mif: exynos_devfreq_parse_ect: CL0_LEV[15] : 1950000\n[    1.594402] mif: exynos_devfreq_parse_ect: CL0_LEV[14] : 1846000\n[    1.594410] mif: exynos_devfreq_parse_ect: CL0_LEV[13] : 1742000\n[    1.594417] mif: exynos_devfreq_parse_ect: CL0_LEV[12] : 1638000\n[    1.594425] mif: exynos_devfreq_parse_ect: CL0_LEV[11] : 1534000\n[    1.594433] mif: exynos_devfreq_parse_ect: CL0_LEV[10] : 1456000\n[    1.594441] mif: exynos_devfreq_parse_ect: CL0_LEV[9] : 1326000\n[    1.594449] mif: exynos_devfreq_parse_ect: CL0_LEV[8] : 1222000\n[    1.594456] mif: exynos_devfreq_parse_ect: CL0_LEV[7] : 1118000\n[    1.594464] mif: exynos_devfreq_parse_ect: CL0_LEV[6] : 1053000\n[    1.594471] mif: exynos_devfreq_parse_ect: CL0_LEV[5] : 910000\n[    1.594479] mif: exynos_devfreq_parse_ect: CL0_LEV[4] : 806000\n[    1.594487] mif: exynos_devfreq_parse_ect: CL0_LEV[3] : 702000\n[    1.594495] mif: exynos_devfreq_parse_ect: CL0_LEV[2] : 598000\n[    1.594503] mif: exynos_devfreq_parse_ect: CL0_LEV[1] : 403000\n[    1.594511] mif: shmem_create_link_device: Parsing CL1 table...\n[    1.594519] mif: exynos_devfreq_parse_ect: CL1_LEV[20] : 2704000\n[    1.594527] mif: exynos_devfreq_parse_ect: CL1_LEV[19] : 2600000\n[    1.594535] mif: exynos_devfreq_parse_ect: CL1_LEV[18] : 2496000\n[    1.594543] mif: exynos_devfreq_parse_ect: CL1_LEV[17] : 2314000\n[    1.594551] mif: exynos_devfreq_parse_ect: CL1_LEV[16] : 2210000\n[    1.594559] mif: exynos_devfreq_parse_ect: CL1_LEV[15] : 2184000\n[    1.594567] mif: exynos_devfreq_parse_ect: CL1_LEV[14] : 2080000\n[    1.594574] mif: exynos_devfreq_parse_ect: CL1_LEV[13] : 1976000\n[    1.594582] mif: exynos_devfreq_parse_ect: CL1_LEV[12] : 1898000\n[    1.594590] mif: exynos_devfreq_parse_ect: CL1_LEV[11] : 1768000\n[    1.594598] mif: exynos_devfreq_parse_ect: CL1_LEV[10] : 1664000\n[    1.594606] mif: exynos_devfreq_parse_ect: CL1_LEV[9] : 1508000\n[    1.594613] mif: exynos_devfreq_parse_ect: CL1_LEV[8] : 1456000\n[    1.594621] mif: exynos_devfreq_parse_ect: CL1_LEV[7] : 1352000\n[    1.594628] mif: exynos_devfreq_parse_ect: CL1_LEV[6] : 1248000\n[    1.594636] mif: exynos_devfreq_parse_ect: CL1_LEV[5] : 1144000\n[    1.594644] mif: exynos_devfreq_parse_ect: CL1_LEV[4] : 1040000\n[    1.594652] mif: exynos_devfreq_parse_ect: CL1_LEV[3] : 936000\n[    1.594659] mif: exynos_devfreq_parse_ect: CL1_LEV[2] : 832000\n[    1.594667] mif: exynos_devfreq_parse_ect: CL1_LEV[1] : 728000\n[    1.594675] mif: shmem_create_link_device: Parsing INT table...\n[    1.594683] mif: exynos_devfreq_parse_ect: INT_LEV[5] : 667000\n[    1.594691] mif: exynos_devfreq_parse_ect: INT_LEV[4] : 533000\n[    1.594698] mif: exynos_devfreq_parse_ect: INT_LEV[3] : 400000\n[    1.594706] mif: exynos_devfreq_parse_ect: INT_LEV[2] : 200000\n[    1.594713] mif: exynos_devfreq_parse_ect: INT_LEV[1] : 100000\n[    1.594722] mif: shmem_create_link_device: packet log device create fail\n[    1.594735] clean_vss_magic_code: set vss magic code as 0\n[    1.594762] mif: shmem_create_link_device: ---\n[    1.594772] mif: modem_probe: s337ap: shmem link created\n[    1.594920] mif: create_io_device: umts_cass created\n[    1.595015] mif: create_io_device: umts_ipc0 created\n[    1.595113] mif: create_io_device: umts_ipc1 created\n[    1.595273] mif: create_io_device: umts_rfs0 created\n[    1.595363] mif: create_io_device: umts_csd created\n[    1.595449] mif: create_io_device: umts_router created\n[    1.595755] mif: sipc5_init_io_device: iod:umts_dm0, both registerd\n[    1.595762] mif: create_io_device: umts_dm0 created\n[    1.595943] mif: create_io_device: rmnet0 created\n[    1.596137] mif: create_io_device: rmnet1 created\n[    1.596316] mif: create_io_device: rmnet2 created\n[    1.596497] mif: create_io_device: rmnet3 created\n[    1.596682] mif: create_io_device: rmnet4 created\n[    1.596858] mif: create_io_device: rmnet5 created\n[    1.597036] mif: create_io_device: rmnet6 created\n[    1.597214] mif: create_io_device: rmnet7 created\n[    1.597326] mif: create_io_device: multipdp_hiprio created\n[    1.597416] mif: create_io_device: multipdp created\n[    1.597424] mif: create_io_device: BOOT device = umts_boot0\n[    1.597518] mif: create_io_device: umts_boot0 created\n[    1.597604] mif: create_io_device: umts_ramdump0 created\n[    1.597626] mif: mif_init_argos_notifier: ++\n[    1.597642] sec_argos_register_notifier: mif_argos_notifier_ipc(dev_num:0)\n[    1.597650] sec_argos_register_notifier: mif_argos_notifier_clat(dev_num:1)\n[    1.597671] mif: mif_init_argos_notifier: --\n[    1.597676] mif: uart_switch_init: uart_switch init start.\n[    1.597691] mif: uart_switch_init: use_usb_phy [0]\n[    1.597702] mif: set_uart_switch: Changing path to AP\n[    1.597712] mif: modem_probe: 10000.mif_pdata: done ---\n[    1.598058] gif: gnss_probe: gnss_pdata: +++\n[    1.598116] gif_exynos gnss_pdata: assigned reserved memory node gnss_if\n[    1.598235] gif: gnss_if_parse_dt_pdata: Found reg: [1:5] reg_rx_ipc_msg\n[    1.598245] gif: gnss_if_parse_dt_pdata: Found reg: [1:4] reg_tx_ipc_msg\n[    1.598254] gif: gnss_if_parse_dt_pdata: Found reg: [1:3] reg_rx_head\n[    1.598264] gif: gnss_if_parse_dt_pdata: Found reg: [1:2] reg_rx_tail\n[    1.598273] gif: gnss_if_parse_dt_pdata: Found reg: [1:1] reg_tx_head\n[    1.598281] gif: gnss_if_parse_dt_pdata: Found reg: [1:0] reg_tx_tail\n[    1.598291] gif: gnss_if_parse_dt_pdata: Fault info: gnss_fault_info [1:2097152:1572864]\n[    1.598300] gif: gnss_if_parse_dt_pdata: DT parse complete!\n[    1.598311] gif: init_gnssctl_device: [GNSS IF] Initializing GNSS Control\n[    1.598469] gif: init_gnssctl_device: Using simple lock sequence!!!\n[    1.598519] gif: init_gnssctl_device: Initializing shared memory for GNSS.\n[    1.598536] gif: gnss_pmu_init_conf: baaw_cmgp_reg : 0x0000000076a308d6\n[    1.598547] gif: gnss_pmu_init_conf: baaw_dbus_reg : 0x0000000008ecbdf5\n[    1.598557] gif: gnss_pmu_init_conf: GNSS SHM address:FB000000 size:800000\n[    1.598563] gif: init_gnssctl_device: [GNSS IF] Register mailbox for GNSS2AP fault handling\n[    1.598575] gif: init_gnssctl_device: Can't get gpio for GNSS sensor.\n[    1.598614] gif_exynos gnss_pdata: gnss_pdata supply vdd_sensor_2p85 not found, using dummy regulator\n[    1.598653] gif: init_gnssctl_device: ---\n[    1.598664] gif: create_ctl_device: KEPLER is created!!!\n[    1.598669] gif: create_link_device_shmem: +++\n[    1.598675] gif: create_link_device_shmem: SHMEM: KEPLER\n[    1.599024] gif: create_link_device_shmem: GNSS_SHDMEM: Reserved Region phys_addr:0xFB000000 virt_addr:0x000000002941896e size: 8388608\n[    1.599052] gif: create_link_device_shmem: GNSS_SHDMEM: Fault Region phys_addr:0xFB200000 virt_addr:0x000000004820c490 size:1572864\n[    1.599070] gif: create_link_device_shmem: GNSS_SHDMEM: IPC Region phys_addr:0xFB380000 virt_addr:0x58ca1ff3 size:524288\n[    1.599079] gif: shmem_remap_ipc_region: RX region : 40000 @ 0000000058ca1ff3\n[    1.599089] gif: shmem_remap_ipc_region: TX region : 3ff80 @ 000000003a149bc7\n[    1.599098] gif: shmem_remap_ipc_region: Reg reg_rx_ipc_msg -> 0000000047b57e93\n[    1.599106] gif: shmem_remap_ipc_region: Reg reg_tx_ipc_msg -> 00000000736b492a\n[    1.599115] gif: shmem_remap_ipc_region: Reg reg_rx_head -> 0000000025e1febc\n[    1.599123] gif: shmem_remap_ipc_region: Reg reg_rx_tail -> 0000000034ff28e1\n[    1.599131] gif: shmem_remap_ipc_region: Reg reg_tx_head -> 0000000088cd07f1\n[    1.599139] gif: shmem_remap_ipc_region: Reg reg_tx_tail -> 00000000da703cd4\n[    1.599324] gif: create_link_device_shmem: ---\n[    1.599334] gif: exynos_init_gnss_io_device: gnss_ipc: init\n[    1.599457] gif: create_io_device: gnss_ipc created\n[    1.599464] gif: gnss_probe: set gnss_ipc->GNSS_SHDMEM\n[    1.599470] gif: gnss_probe: KEPLER: ---\n[    1.600696] TZDEV> ERR tzdev_mem_init(456): AUX channels mem release buffer allocated\n[    1.601496] SW> SECUREOS VERSION: Samsung Secure OS Release Version 3.1.0.0 (19286015 17946935) built on: 2020-07-22 11:37:06, binary version: 08d6e682\n[    1.601505] SW> ERR: startup_loader main() pid=3: [DBG] Early init flag is not set, waiting for incoming connnection.\n[    1.601512] SW> RTC time: 12: 1: 0  1. 1.2017\n[    1.601517] SW> set_fp_tzpc result : 0x7\n[    1.601522] SW> CSMC: BEGIN\n[    1.601527] SW> Handler Info : jenkins-BFHandler-exynos9610-48 / 16995899 / exynos9610 / sdk30\n[    1.601532] SW> build_info = 0x30\n[    1.601541] SW> CSMC: END\n[    1.601545] SW> CSMC: BEGIN\n[    1.601550] SW> Handler Info : jenkins-BFHandler-exynos9610-48 / 16995899 / exynos9610 / sdk30\n[    1.601555] SW> s_hash_vaddr->magic_string : TIMA 3.0\n[    1.601559] SW> s_hash_vaddr->svb_magic : SVB1.0\n[    1.601564] SW> s_hash_vaddr->vpcr1 : 66a8fa26 3755f94e 70580019 30dbad9c 28b5b342 bce900be f4d7b19b 24d789d1\n[    1.601569] SW> s_hash_vaddr->vpcr2 : 0 0 0 0 0 0 0 0\n[    1.601574] SW> s_hash_vaddr->vpcr3 : 0 0 0 0 0 0 0 0\n[    1.601578] SW> s_hash_vaddr->vpcr4 : 0 0 0 0 0 0 0 0\n[    1.601582] SW> s_hash_vaddr->vpcr5 : 0 0 0 0 0 0 0 0\n[    1.601586] SW> s_hash_vaddr->vpcr6 : 0 0 0 0 0 0 0 0\n[    1.601591] SW> s_hash_vaddr->warranty_string : warranty okay\n[    1.601595] SW> CSMC: END\n[    1.601599] SW> CSMC: BEGIN\n[    1.601604] SW> Handler Info : jenkins-BFHandler-exynos9610-48 / 16995899 / exynos9610 / sdk30\n[    1.601608] SW> CSMC: bl_secure_info.rp_ver (2)\n[    1.601613] SW> CSMC: bl_secure_info.kernel_rp (2)\n[    1.601618] SW> CSMC: bl_secure_info.system_rp (2)\n[    1.601622] SW> CSMC: bl_secure_info.test_bit (0)\n[    1.601626] SW> CSMC: bl_secure_info.sec_boot (1)\n[    1.601631] SW> CSMC: bl_secure_info.react_lock (ffffffff)\n[    1.601635] SW> CSMC: bl_secure_info.kiwi_lock (ffffffff)\n[    1.601640] SW> CSMC: bl_secure_info.frp_lock (ffffffff)\n[    1.601644] SW> CSMC: bl_secure_info.cc_mode (0)\n[    1.601649] SW> CSMC: bl_secure_info.mdm_mode (0)\n[    1.601653] SW> CSMC: bl_secure_info.curr_bin_status (1)\n[    1.601657] SW> CSMC: bl_secure_info.afw_value (0)\n[    1.601662] SW> CSMC: bl_secure_info.warranty_bit (0)\n[    1.601666] SW> CSMC: bl_secure_info.kap_status  (ffffffff)\n[    1.601670] SW> CSMC: bl_secure_info.image_status[0]  (3)\n[    1.601675] SW> CSMC: bl_secure_info.image_status[1]  (3)\n[    1.601679] SW> CSMC: bl_secure_info.image_status[2]  (2)\n[    1.601683] SW> CSMC: bl_secure_info.image_status[3]  (2)\n[    1.601688] SW> CSMC: bl_secure_info.image_status[4]  (0)\n[    1.601692] SW> CSMC: bl_secure_info.image_status[5]  (2)\n[    1.601696] SW> CSMC: bl_secure_info.image_status[6]  (2)\n[    1.601701] SW> CSMC: bl_secure_info.image_status[7]  (2)\n[    1.601705] SW> CSMC: bl_secure_info.image_status[8]  (2)\n[    1.601709] SW> CSMC: bl_secure_info.image_status[9]  (8)\n[    1.601714] SW> CSMC: bl_secure_info.image_status[10]  (3)\n[    1.601718] SW> CSMC: bl_secure_info.image_status[11]  (0)\n[    1.601722] SW> CSMC: bl_secure_info.image_status_bl  (2)\n[    1.601726] SW> CSMC: bl_secure_info.WbHistory  (30)\n[    1.601731] SW> CSMC: bl_secure_info.em_status (0)\n[    1.601735] SW> CSMC: bl_secure_info.em_token (0)\n[    1.601739] SW> CSMC: rot_secure_info.boot_patch_level (956)\n[    1.601744] SW> CSMC: rot_secure_info.vendor_patch_level (956)\n[    1.601748] SW> CSMC: kern_secure_info.verified_boot_hash_hash[0] (66a8fa26)\n[    1.601753] SW> CSMC: kern_secure_info.verified_boot_hash_hash[1] (3755f94e)\n[    1.601757] SW> CSMC: kern_secure_info.verified_boot_hash_hash[2] (70580019)\n[    1.601762] SW> CSMC: kern_secure_info.verified_boot_hash_hash[3] (30dbad9c)\n[    1.601766] SW> CSMC: kern_secure_info.verified_boot_hash_hash[4] (28b5b342)\n[    1.601771] SW> CSMC: kern_secure_info.verified_boot_hash_hash[5] (bce900be)\n[    1.601775] SW> CSMC: kern_secure_info.verified_boot_hash_hash[6] (f4d7b19b)\n[    1.601780] SW> CSMC: kern_secure_info.verified_boot_hash_hash[7] (24d789d1)\n[    1.601784] SW> CSMC: END\n[    1.601788] SW> CSMC: BEGIN\n[    1.601793] SW> Handler Info : jenkins-BFHandler-exynos9610-48 / 16995899 / exynos9610 / sdk30\n[    1.601797] SW> CSMC: IcccSvbResult : 0x1\n[    1.601801] SW> CSMC: END\n[    1.601806] SW> CSMC: BEGIN\n[    1.601810] SW> Handler Info : jenkins-BFHandler-exynos9610-48 / 16995899 / exynos9610 / sdk30\n[    1.601815] SW> CSMC: IcccDataLock : 0x1\n[    1.601819] SW> CSMC: END\n[    1.601999] exynos-ufs-srpmb ufs-srpmb: Make socket listening\n[    1.602912] TZDEV> ERR tz_deploy_handler(70): [debug] tzar size = 5049278\n[    1.603066] [STUI] stui_handler_init +\n[    1.603225] [STUI] stui_handler_init -\n[    1.603697] [sec_nfc] __sec_nfc_probe: probe start\n[    1.603800] [sec_nfc] sec_nfc_parse_dt: parse_dt() clk_req : 28\n[    1.603825] [sec_nfc] sec_nfc_parse_dt: parse_dt() pvdd_en : 152\n[    1.603833] [sec_nfc] sec_nfc_parse_dt: parse_dt() irq : 14, ven : 136, firm : 144\n[    1.603860] [sec_nfc] __sec_nfc_probe: nfc support model : 1\n[    1.604494] wake enabled for irq 272\n[    1.604659] [sec_nfc] __sec_nfc_probe: probe() success\n[    1.604670] [sec_nfc] sec_nfc_i2c_probe: probe() start\n[    1.604902] [sec_nfc] sec_nfc_i2c_probe: pvdd en: 1\n[    1.604914] [sec_nfc] sec_nfc_i2c_probe: probe() success\n[    1.605550] exynos-ufs 13520000.ufs: failed to get node(ufs-phy-iso)\n[    1.606014] exynos-ufs 13520000.ufs: ufshcd_populate_vreg: Unable to find vdd-hba-supply regulator, assuming enabled\n[    1.606060] exynos-ufs 13520000.ufs: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    1.606069] exynos-ufs 13520000.ufs: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled\n[    1.606078] exynos-ufs 13520000.ufs: UFS power management: set default level2 index 0\n[    1.606085] exynos-ufs 13520000.ufs: UFS power management: set default level5 index 1\n[    1.606243] exynos-ufs 13520000.ufs: exynos_ufs_crypto_sec_cfg: fmp:0, smu:0, init:1\n[    1.606329] exynos_fmp_sec_cfg: fmp:0, smu:0, init:1\n[    1.607006] scsi host0: ufshcd\n[    1.607498] libphy: Fixed MDIO Bus: probed\n[    1.607508] tun: Universal TUN/TAP device driver, 1.6\n[    1.607642] PPP generic driver version 2.4.2\n[    1.607753] PPP BSD Compression module registered\n[    1.607761] PPP Deflate Compression module registered\n[    1.607782] PPP MPPE Compression module registered\n[    1.607789] NET: Registered protocol family 24\n[    1.607806] PPTP driver version 0.8.5\n[    1.608058] ieee80211 phy.: wlbt: I: slsi_dev_load: Loading Maxwell Wi-Fi driver\n[    1.608082] ieee80211 phy.: wlbt: I: slsi_wlan_service_probe: WLAN service probe\n[    1.608179] ieee80211 phy0: wlbt: wlan0: I: slsi_netif_rps_map_set: rps_cpus map set(0)\n[    1.608221] ieee80211 phy0: wlbt: p2p0: I: slsi_netif_rps_map_set: rps_cpus map set(0)\n[    1.608264] ieee80211 phy0: wlbt: swlan0: I: slsi_netif_rps_map_set: rps_cpus map set(0)\n[    1.612339] ieee80211 phy.: wlbt: I: hip4_sampler_create: hip4_sampler version: 0.0\n[    1.612996] Registered client: HIP4 Sampler\n[    1.613009] ieee80211 phy.: wlbt: I: hip4_sampler_create: hip4_sampler: Ready to start sampling....\n[    1.613019] ieee80211 phy.: wlbt: I: sap_mlme_init: Registering SAP\n[    1.613025] ieee80211 phy.: wlbt: I: sap_ma_init: Registering SAP\n[    1.613030] ieee80211 phy.: wlbt: I: sap_dbg_init: Registering SAP\n[    1.613036] ieee80211 phy.: wlbt: I: sap_test_init: Registering SAP\n[    1.613042] wifi_kobj_ref: 0x00000000dc34767a\n[    1.613051] ieee80211 phy.: wlbt: I: slsi_dev_load: --- Maxwell Wi-Fi driver loaded successfully ---\n[    1.623342] wlbt: scsc_wifilogger_register_ring: Ring 'connectivity' registered\n[    1.623546] wlbt: scsc_wifilogger_register_ring: Ring 'wakelock' registered\n[    1.623891] wlbt: scsc_wifilogger_register_ring: Ring 'pkt_fate_tx' registered\n[    1.623904] wlbt: scsc_wifilogger_register_ring: Ring 'pkt_fate_rx' registered\n[    1.623944] wlbt: scsc_wifilogger_module_init: Wi-Fi Logger subsystem initialized.\n[    1.624028] usbcore: registered new interface driver rtl8150\n[    1.624061] usbcore: registered new interface driver r8152\n[    1.624097] usbcore: registered new interface driver asix\n[    1.624123] usbcore: registered new interface driver ax88179_178a\n[    1.624146] usbcore: registered new interface driver cdc_ether\n[    1.624175] usbcore: registered new interface driver cdc_eem\n[    1.624213] usbcore: registered new interface driver smsc75xx\n[    1.624243] usbcore: registered new interface driver smsc95xx\n[    1.624269] usbcore: registered new interface driver net1080\n[    1.624295] usbcore: registered new interface driver cdc_subset\n[    1.624323] usbcore: registered new interface driver zaurus\n[    1.624360] usbcore: registered new interface driver cdc_ncm\n[    1.624385] usbcore: registered new interface driver cdc_mbim\n[    1.624805] dwc3_exynos_probe: +++\n[    1.624947] exynos-dwc3 13200000.usb: 13200000.usb supply vdd33 not found, using dummy regulator\n[    1.625000] exynos-dwc3 13200000.usb: 13200000.usb supply vdd10 not found, using dummy regulator\n[    1.625418] dwc3_probe: +++\n[    1.625627] dwc3 13200000.dwc3: dwc3_get_properties: dr_mode:3, suspend clock:0MHz\n[    1.626558] phy_exynos_usbdrd 131d0000.phy: [exynos_usbdrd_utmi_phy_isol] val : 0x3 / mask : 0x3 \n[    1.626707] phy_exynos_usbdrd 131d0000.phy: [exynos_usbdrd_usb_txco_enable] ++USB DEVCTRL reg 0x3 \n[    1.626717] phy_exynos_usbdrd 131d0000.phy: [exynos_usbdrd_usb_txco_enable] --USB DEVCTRL reg 0x10003 \n[    1.626729] exynos_usbdrd_utmi_init: +++\n[    1.626736] phy_exynos_usbdrd 131d0000.phy: [exynos_usbdrd_utmi_phy_isol] val : 0x3 / mask : 0x3 \n[    1.626760] phy_exynos_usbdrd 131d0000.phy: [exynos_usbdrd_usb_txco_enable] ++USB DEVCTRL reg 0x10003 \n[    1.626768] phy_exynos_usbdrd 131d0000.phy: [exynos_usbdrd_usb_txco_enable] --USB DEVCTRL reg 0x10003 \n[    1.628404] usb: phy_exynos_usb_v3p1_tune: hsp_tune=0x0\n[    1.628497] exynos_usbdrd_utmi_init: ---\n[    1.628504] phy_exynos_usbdrd 131f0000.phy: USB3.0 PHY is isolated...\n[    1.628533] phy_exynos_usbdrd 131d0000.phy: exynos_usbdrd_utmi_tune: device=1\n[    1.628540] usb: phy_exynos_usb_v3p1_tune: hsp_tune=0xf36f3727\n[    1.628548] dwc3 13200000.dwc3: dwc3_core_init: max speed:3, hibernation:0, nr_scratch:0\n[    1.628561] dwc3 13200000.dwc3: dwc3_otg_init\n[    1.628572] dwc3 13200000.dwc3: ldo-names[0] : vdd_ldo12\n[    1.628635] dwc3 13200000.dwc3: ldo-names[1] : vdd_ldo13\n[    1.628673] dwc3 13200000.dwc3: ldo-names[2] : vdd_ldo14\n[    1.628722] dwc3 13200000.dwc3: couldn't read usb-pm-qos-int dwc3 node, error = -22\n[    1.628755] exynos-dwc3 13200000.usb: 13200000.usb supply dwc3-vbus not found, using dummy regulator\n[    1.628802] phy_exynos_usbdrd 131d0000.phy: [exynos_usbdrd_utmi_phy_isol] val : 0x0 / mask : 0x3 \n[    1.628825] phy_exynos_usbdrd 131d0000.phy: [exynos_usbdrd_usb_txco_enable] ++USB DEVCTRL reg 0x10000 \n[    1.628834] phy_exynos_usbdrd 131d0000.phy: [exynos_usbdrd_usb_txco_enable] --USB DEVCTRL reg 0x0 \n[    1.628845] exynos_usbdrd_pipe3_exit : Do nothing...\n[    1.628852] phy_exynos_usbdrd 131d0000.phy: [exynos_usbdrd_utmi_phy_isol] val : 0x0 / mask : 0x3 \n[    1.628870] phy_exynos_usbdrd 131d0000.phy: [exynos_usbdrd_usb_txco_enable] ++USB DEVCTRL reg 0x0 \n[    1.628879] phy_exynos_usbdrd 131d0000.phy: [exynos_usbdrd_usb_txco_enable] --USB DEVCTRL reg 0x0 \n[    1.629822] dwc3 13200000.dwc3: Binding gadget dwc3-gadget\n[    1.629831] exynos-dwc3 13200000.usb: dwc3_exynos_rsw_start\n[    1.630914] dwc3_probe, pm_runtime_put = 0\n[    1.630920] dwc3_probe: ---\n[    1.630973] exynos-dwc3 13200000.usb: dwc3_exynos_runtime_suspend\n[    1.631000] dwc3_exynos_probe: ---\n[    1.631822] usbcore: registered new interface driver cdc_acm\n[    1.631830] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters\n[    1.631866] usbcore: registered new interface driver usblp\n[    1.631896] usbcore: registered new interface driver cdc_wdm\n[    1.631937] usbcore: registered new interface driver usb-storage\n[    1.631998] usbcore: registered new interface driver usbserial\n[    1.632027] usbcore: registered new interface driver ftdi_sio\n[    1.632052] usbserial: USB Serial support registered for FTDI USB Serial Device\n[    1.632077] usbcore: registered new interface driver pl2303\n[    1.632104] usbserial: USB Serial support registered for pl2303\n[    1.632589] ccic_notifier_init\n[    1.632597] ccic_core_init\n[    1.632654] usb_notify: external_notifier_init\n[    1.632661] usb_notify: create_external_notify\n[    1.633563] usbcore: registered new interface driver xpad\n[    1.633630] usbcore: registered new interface driver usb_acecad\n[    1.633689] usbcore: registered new interface driver aiptek\n[    1.633741] usbcore: registered new interface driver gtco\n[    1.633793] usbcore: registered new interface driver hanwang\n[    1.633844] usbcore: registered new interface driver kbtab\n[    1.635833] s2mpu09-rtc s2mpu09-rtc: s2m_rtc_enable_wtsr_smpl: WTSR: enable, SMPL: enable\n[    1.638022] s2mpu09-rtc s2mpu09-rtc: s2m_rtc_read_time: 2021-07-24 18:54:02(0x40)PM\n[    1.639283] s2mpu09-rtc s2mpu09-rtc: s2m_rtc_read_alarm: 2021-07-24 17:38:00(6)\n[    1.640610] s2mpu09-rtc s2mpu09-rtc: s2m_rtc_read_time: 2021-07-24 18:54:02(0x40)PM\n[    1.640767] s2mpu09-rtc s2mpu09-rtc: rtc core: registered s2mp-rtc as rtc0\n[    1.641096] i2c /dev entries driver\n[    1.642675] IR NEC protocol handler initialized\n[    1.642683] IR RC5(x/sz) protocol handler initialized\n[    1.642689] IR RC6 protocol handler initialized\n[    1.642695] IR JVC protocol handler initialized\n[    1.642700] IR Sony protocol handler initialized\n[    1.642705] IR SANYO protocol handler initialized\n[    1.642710] IR Sharp protocol handler initialized\n[    1.642715] IR MCE Keyboard/mouse protocol handler initialized\n[    1.642720] IR XMP protocol handler initialized\n[    1.642981] s5p-mfc 12c30000.mfc0: Linked as a consumer to 12c70000.sysmmu\n[    1.643014] s5p-mfc 12c30000.mfc0: is owner of 12c70000.sysmmu\n[    1.643057] s5p-mfc 12c30000.mfc0: Linked as a consumer to 12c90000.sysmmu\n[    1.643065] s5p-mfc 12c30000.mfc0: is owner of 12c90000.sysmmu\n[    1.643692] s5p-mfc 12c30000.mfc0: video device registered as /dev/video6\n[    1.643822] s5p-mfc 12c30000.mfc0: video device registered as /dev/video7\n[    1.643933] s5p-mfc 12c30000.mfc0: video device registered as /dev/video8\n[    1.644032] s5p-mfc 12c30000.mfc0: video device registered as /dev/video9\n[    1.644141] s5p-mfc 12c30000.mfc0: video device registered as /dev/video10\n[    1.644265] s5p-mfc 12c30000.mfc0: video device registered as /dev/video11\n[    1.644625] mfc_probe:1441: [QoS] control: mfc_freq(0), mo(1), bw(1)\n[    1.644633] mfc_probe:1447: [QoS] table[0] mfc: 100000, int : 100000, mif : 419000\n[    1.644640] mfc_probe:1447: [QoS] table[1] mfc: 200000, int : 200000, mif : 546000\n[    1.644646] mfc_probe:1447: [QoS] table[2] mfc: 400000, int : 400000, mif : 845000\n[    1.644652] mfc_probe:1447: [QoS] table[3] mfc: 533000, int : 533000, mif : 1014000\n[    1.644658] mfc_probe:1447: [QoS] table[4] mfc: 533000, int : 533000, mif : 1539000\n[    1.644663] mfc_probe:1447: [QoS] table[5] mfc: 666000, int : 667000, mif : 1794000\n[    1.644668] mfc_probe:1447: [QoS] table[6] mfc: 666000, int : 667000, mif : 2093000\n[    1.644674] mfc_probe:1447: [QoS] table[7] mfc: 666000, int : 667000, mif : 2093000\n[    1.644682] s5p-mfc 12c30000.mfc0: Fault handler is registered for 12c70000.sysmmu\n[    1.644690] s5p-mfc 12c30000.mfc0: Fault handler is registered for 12c90000.sysmmu\n[    1.645572] exynos5-camerapp-gdc 14630000.gdc: Linked as a consumer to 14740000.sysmmu\n[    1.645582] exynos5-camerapp-gdc 14630000.gdc: is owner of 14740000.sysmmu\n[    1.645717] exynos5-camerapp-gdc 14630000.gdc: 'mux_user' clock is not present\n[    1.645842] exynos5-camerapp-gdc 14630000.gdc: INTCAM Min.Lock Freq. = 667000\n[    1.645900] exynos5-camerapp-gdc 14630000.gdc: Fault handler is registered for 14740000.sysmmu\n[    1.645909] exynos5-camerapp-gdc 14630000.gdc: Driver probed successfully(version: 00000000)\n[    1.646604] exynos5-scaler 12e60000.scaler: Linked as a consumer to 12e70000.sysmmu\n[    1.646613] exynos5-scaler 12e60000.scaler: is owner of 12e70000.sysmmu\n[    1.646730] exynos5-scaler 12e60000.scaler: 'gate2' clock is not present\n[    1.646739] exynos5-scaler 12e60000.scaler: 'mux_user' clock is not present\n[    1.646888] exynos5-scaler 12e60000.scaler: No qos table for scaler\n[    1.647049] exynos5-scaler 12e60000.scaler: Fault handler is registered for 12e70000.sysmmu\n[    1.647059] exynos5-scaler 12e60000.scaler: Driver probed successfully(version: 02000100(50001))\n[    1.647692] exynos-jpeg 12e30000.smfc: Linked as a consumer to 12e70000.sysmmu\n[    1.647702] exynos-jpeg 12e30000.smfc: is owner of 12e70000.sysmmu\n[    1.647822] exynos-jpeg 12e30000.smfc: device ID is not declared: unique device\n[    1.647833] exynos-jpeg 12e30000.smfc: INT Min.Lock Freq. = 534000\n[    1.647952] exynos-jpeg 12e30000.smfc: Fault handler is registered for 12e70000.sysmmu\n[    1.648001] exynos-jpeg 12e30000.smfc: Probed H/W Version: 23.02.2015\n[    1.648184] exynos-ufs 13520000.ufs: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.648242] exynos-ufs 13520000.ufs: active_tx_lane(1), active_rx_lane(1)\n[    1.648362] exynos-ufs 13520000.ufs: UFS link established\n[    1.648655] exynos-fimc-is 14490000.fimc_is: Linked as a consumer to 14740000.sysmmu\n[    1.648666] exynos-fimc-is 14490000.fimc_is: is owner of 14740000.sysmmu\n[    1.648720] exynos-fimc-is 14490000.fimc_is: Linked as a consumer to 14770000.sysmmu\n[    1.648728] exynos-fimc-is 14490000.fimc_is: is owner of 14770000.sysmmu\n[    1.648777] exynos-fimc-is 14490000.fimc_is: Linked as a consumer to 14550000.sysmmu\n[    1.648784] exynos-fimc-is 14490000.fimc_is: is owner of 14550000.sysmmu\n[    1.648841] fimc_is_probe:start(472808, 9264)\n[    1.649042] can't parse clock gate info node\n[    1.649050] FIMC-IS chain configuration: 0\n[    1.649056] ret(0) secure_mem_info(0xe1900000, 0x2000000)\n[    1.649063] ret(0) non_secure_mem_info(0xdb900000, 0x700000)\n[    1.649072] [WRN]front2_sensor_id read is fail(-22)\n[    1.649078] [ERR]fimc_is_vender_dt:435:front3_sensor_id read is fail(-22)\n[    1.649091] [ERR]fimc_is_vender_dt:439:rear4_sensor_id read is fail(-22)\n[    1.649100] [ERR]fimc_is_vender_dt:443:front4_sensor_id read is fail(-22)\n[    1.649109] [ERR]fimc_is_vender_dt:447:rear_tof_sensor_id read is fail(-22)\n[    1.649117] [ERR]fimc_is_vender_dt:451:front_tof_sensor_id read is fail(-22)\n[    1.649126] [ERR]fimc_is_vender_dt:456:secure_sensor_id read is fail(-22)\n[    1.649135] skip_cal_loading not use(0)\n[    1.649146] fw_write: no property in the node.\n[    1.649151] fw_dump: no property in the node.\n[    1.649161] fw_write: no property in the node.\n[    1.649166] fw_dump: no property in the node.\n[    1.649176] fw_write: no property in the node.\n[    1.649180] fw_dump: no property in the node.\n[    1.649190] fw_write: no property in the node.\n[    1.649194] fw_dump: no property in the node.\n[    1.649209] dvfs table[0] is dvfs table v0.0 for 48M/16M\n[    1.649225] default_i2c: no property in the node.\n[    1.649236] secure_front_int_cam: no property in the node.\n[    1.649245] secure_front_int: no property in the node.\n[    1.649254] secure_front_cam: no property in the node.\n[    1.649263] secure_front_mif: no property in the node.\n[    1.649273] secure_front_i2c: no property in the node.\n[    1.649282] secure_front_hpg: no property in the node.\n[    1.649296] front_preview_i2c: no property in the node.\n[    1.649312] front_preview_full_i2c: no property in the node.\n[    1.649329] front_preview_remosaic_i2c: no property in the node.\n[    1.649377] front_capture_i2c: no property in the node.\n[    1.649397] front_capture_remosaic_i2c: no property in the node.\n[    1.649414] front_video_i2c: no property in the node.\n[    1.649432] front_video_capture_i2c: no property in the node.\n[    1.649444] front_wide_selfie_int_cam: no property in the node.\n[    1.649454] front_wide_selfie_int: no property in the node.\n[    1.649466] front_wide_selfie_cam: no property in the node.\n[    1.649475] front_wide_selfie_mif: no property in the node.\n[    1.649485] front_wide_selfie_i2c: no property in the node.\n[    1.649495] front_wide_selfie_hpg: no property in the node.\n[    1.649512] front_vt1_i2c: no property in the node.\n[    1.649531] front_vt2_i2c: no property in the node.\n[    1.649550] front_vt4_i2c: no property in the node.\n[    1.649567] rear2_preview_fhd_i2c: no property in the node.\n[    1.649586] rear2_capture_i2c: no property in the node.\n[    1.649597] rear2_video_fhd_int_cam: no property in the node.\n[    1.649606] rear2_video_fhd_int: no property in the node.\n[    1.649616] rear2_video_fhd_cam: no property in the node.\n[    1.649626] rear2_video_fhd_mif: no property in the node.\n[    1.649637] rear2_video_fhd_i2c: no property in the node.\n[    1.649648] rear2_video_fhd_hpg: no property in the node.\n[    1.649659] rear2_video_fhd_capture_int_cam: no property in the node.\n[    1.649669] rear2_video_fhd_capture_int: no property in the node.\n[    1.649680] rear2_video_fhd_capture_cam: no property in the node.\n[    1.649689] rear2_video_fhd_capture_mif: no property in the node.\n[    1.649700] rear2_video_fhd_capture_i2c: no property in the node.\n[    1.649710] rear2_video_fhd_capture_hpg: no property in the node.\n[    1.649727] rear3_preview_i2c: no property in the node.\n[    1.649745] rear3_capture_i2c: no property in the node.\n[    1.649763] rear3_video_i2c: no property in the node.\n[    1.649784] rear3_video_capture_i2c: no property in the node.\n[    1.649795] rear4_preview_int_cam: no property in the node.\n[    1.649805] rear4_preview_int: no property in the node.\n[    1.649815] rear4_preview_cam: no property in the node.\n[    1.649827] rear4_preview_mif: no property in the node.\n[    1.649837] rear4_preview_i2c: no property in the node.\n[    1.649846] rear4_preview_hpg: no property in the node.\n[    1.649856] rear4_capture_int_cam: no property in the node.\n[    1.649865] rear4_capture_int: no property in the node.\n[    1.649875] rear4_capture_cam: no property in the node.\n[    1.649884] rear4_capture_mif: no property in the node.\n[    1.649894] rear4_capture_i2c: no property in the node.\n[    1.649904] rear4_capture_hpg: no property in the node.\n[    1.649925] rear_preview_full_i2c: no property in the node.\n[    1.649947] rear_preview_fhd_i2c: no property in the node.\n[    1.649969] rear_preview_hd_i2c: no property in the node.\n[    1.649992] rear_preview_uhd_i2c: no property in the node.\n[    1.650017] rear_preview_remosaic_i2c: no property in the node.\n[    1.650041] rear_capture_i2c: no property in the node.\n[    1.650065] rear_capture_remosaic_i2c: no property in the node.\n[    1.650092] rear_video_fhd_i2c: no property in the node.\n[    1.650117] rear_video_hd_i2c: no property in the node.\n[    1.650144] rear_video_uhd_i2c: no property in the node.\n[    1.650171] rear_video_fhd_capture_i2c: no property in the node.\n[    1.650201] rear_video_hd_capture_i2c: no property in the node.\n[    1.650230] rear_video_uhd_capture_i2c: no property in the node.\n[    1.650256] dual_preview_i2c: no property in the node.\n[    1.650280] dual_capture_i2c: no property in the node.\n[    1.650306] dual_video_fhd_i2c: no property in the node.\n[    1.650332] dual_video_fhd_capture_i2c: no property in the node.\n[    1.650360] dual_video_uhd_i2c: no property in the node.\n[    1.650390] dual_video_uhd_capture_i2c: no property in the node.\n[    1.650419] dual_sync_preview_i2c: no property in the node.\n[    1.650448] dual_sync_capture_i2c: no property in the node.\n[    1.650480] dual_sync_preview_whd_i2c: no property in the node.\n[    1.650512] dual_sync_whd_capture_i2c: no property in the node.\n[    1.650544] dual_sync_video_fhd_i2c: no property in the node.\n[    1.650578] dual_sync_video_fhd_capture_i2c: no property in the node.\n[    1.650613] dual_sync_video_uhd_i2c: no property in the node.\n[    1.650669] dual_sync_video_uhd_capture_i2c: no property in the node.\n[    1.650702] preview_high_speed_fps_i2c: no property in the node.\n[    1.650732] video_high_speed_60fps_i2c: no property in the node.\n[    1.650763] video_high_speed_120fps_i2c: no property in the node.\n[    1.650794] video_high_speed_240fps_i2c: no property in the node.\n[    1.650827] video_high_speed_480fps_i2c: no property in the node.\n[    1.650861] video_high_speed_60fps_capture_i2c: no property in the node.\n[    1.650876] ext_rear_int_cam: no property in the node.\n[    1.650886] ext_rear_int: no property in the node.\n[    1.650895] ext_rear_cam: no property in the node.\n[    1.650904] ext_rear_mif: no property in the node.\n[    1.650914] ext_rear_i2c: no property in the node.\n[    1.650923] ext_rear_hpg: no property in the node.\n[    1.650951] ext_front_i2c: no property in the node.\n[    1.650982] ext_secure_i2c: no property in the node.\n[    1.651014] max_i2c: no property in the node.\n[    1.651027] (null)int_cam: no property in the node.\n[    1.651037] (null)int: no property in the node.\n[    1.651046] (null)cam: no property in the node.\n[    1.651056] (null)mif: no property in the node.\n[    1.651065] (null)i2c: no property in the node.\n[    1.651073] (null)hpg: no property in the node.\n[    1.651082] (null)int_cam: no property in the node.\n[    1.651091] (null)int: no property in the node.\n[    1.651100] (null)cam: no property in the node.\n[    1.651110] (null)mif: no property in the node.\n[    1.651119] (null)i2c: no property in the node.\n[    1.651128] (null)hpg: no property in the node.\n[    1.651137] (null)int_cam: no property in the node.\n[    1.651146] (null)int: no property in the node.\n[    1.651156] (null)cam: no property in the node.\n[    1.651165] (null)mif: no property in the node.\n[    1.651175] (null)i2c: no property in the node.\n[    1.651186] (null)hpg: no property in the node.\n[    1.651195] (null)int_cam: no property in the node.\n[    1.651204] (null)int: no property in the node.\n[    1.651213] (null)cam: no property in the node.\n[    1.651222] (null)mif: no property in the node.\n[    1.651231] (null)i2c: no property in the node.\n[    1.651241] (null)hpg: no property in the node.\n[    1.651251] (null)int_cam: no property in the node.\n[    1.651260] (null)int: no property in the node.\n[    1.651269] (null)cam: no property in the node.\n[    1.651278] (null)mif: no property in the node.\n[    1.651287] (null)i2c: no property in the node.\n[    1.651296] (null)hpg: no property in the node.\n[    1.656193] fimc_is_init_mem - ION\n[    1.672294] exynos-ufs 13520000.ufs: UFS device initialized\n[    1.679773] exynos-ufs 13520000.ufs: LT: 0x11 \n[    1.684127] exynos-ufs 13520000.ufs: active_tx_lane(1), active_rx_lane(1)\n[    1.684226] exynos-ufs 13520000.ufs: Power mode change(0): M(1)G(3)L(1)HS-series(2)\n[    1.684238] exynos-ufs 13520000.ufs: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[1, 1], pwr[FAST MODE, FAST MODE], rate = 2\n[    1.684256] exynos-ufs 13520000.ufs: HS mode configured\n[    1.684485] exynos-ufs 13520000.ufs: ufshcd_find_max_sup_active_icc_level: Regulator capability was not set, actvIccLevel=0\n[    1.685143] scsi 0:0:0:0: Direct-Access     SAMSUNG  KLUCG4J1ED-B0C1  0003 PQ: 0 ANSI: 6\n[    1.687272] scsi 0:0:0:1: Direct-Access     SAMSUNG  KLUCG4J1ED-B0C1  0003 PQ: 0 ANSI: 6\n[    1.689160] scsi 0:0:0:2: Direct-Access     SAMSUNG  KLUCG4J1ED-B0C1  0003 PQ: 0 ANSI: 6\n[    1.689817] sd 0:0:0:0: [sda] 15616000 4096-byte logical blocks: (64.0 GB/59.6 GiB)\n[    1.689964] sd 0:0:0:0: [sda] Write Protect is off\n[    1.689976] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.690732] [RSC] Internal memory size (aligned) : 06bfa020\n[    1.690830] scsi 0:0:0:3: Direct-Access     SAMSUNG  KLUCG4J1ED-B0C1  0003 PQ: 0 ANSI: 6\n[    1.690843] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    1.691010] sd 0:0:0:0: [sda] Optimal transfer size 8192 bytes\n[    1.691030] sd 0:0:0:1: [sdb] 1024 4096-byte logical blocks: (4.19 MB/4.00 MiB)\n[    1.691300] sd 0:0:0:1: [sdb] Write Protect is off\n[    1.691322] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.691595] sd 0:0:0:1: [sdb] Write cache: disabled, read cache: enabled, supports DPO and FUA\n[    1.691794] sd 0:0:0:1: [sdb] Optimal transfer size 8192 bytes\n[    1.691834] scsi 0:0:0:4: Direct-Access     SAMSUNG  KLUCG4J1ED-B0C1  0003 PQ: 0 ANSI: 6\n[    1.692117] sd 0:0:0:2: [sdc] 1024 4096-byte logical blocks: (4.19 MB/4.00 MiB)\n[    1.692260] sd 0:0:0:2: [sdc] Write Protect is off\n[    1.692270] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.692619] sd 0:0:0:2: [sdc] Write cache: disabled, read cache: enabled, supports DPO and FUA\n[    1.692787] sd 0:0:0:2: [sdc] Optimal transfer size 8192 bytes\n[    1.692797] scsi 0:0:0:49488: Well-known LUN    SAMSUNG  KLUCG4J1ED-B0C1  0003 PQ: 0 ANSI: 6\n[    1.693180] sd 0:0:0:3: [sdd] 2048 4096-byte logical blocks: (8.39 MB/8.00 MiB)\n[    1.693351] sd 0:0:0:3: [sdd] Write Protect is off\n[    1.693361] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.693452] [RSC] Kernel virtual for library: 00000000\n[    1.693460] [RSC] Kernel virtual for debug: ffffffc076300000\n[    1.693466] [RSC] fimc_is_init_mem done\n[    1.693684] sd 0:0:0:3: [sdd] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    1.693841] sd 0:0:0:3: [sdd] Optimal transfer size 8192 bytes\n[    1.693895] sd 0:0:0:4: [sde] 2048 4096-byte logical blocks: (8.39 MB/8.00 MiB)\n[    1.693961] scsi 0:0:0:49456: Well-known LUN    SAMSUNG  KLUCG4J1ED-B0C1  0003 PQ: 0 ANSI: 6\n[    1.694049] sd 0:0:0:4: [sde] Write Protect is off\n[    1.694061] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    1.694522] sd 0:0:0:4: [sde] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    1.694779] sd 0:0:0:4: [sde] Optimal transfer size 8192 bytes\n[    1.695980] Alternate GPT is invalid, using primary GPT.\n[    1.696037]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21 sda22 sda23 sda24 sda25 sda26 sda27 sda28 sda29 sda30 sda31 sda32\n[    1.696100] scsi 0:0:0:49476: Well-known LUN    SAMSUNG  KLUCG4J1ED-B0C1  0003 PQ: 0 ANSI: 6\n[    1.697356] sd 0:0:0:1: [sdb] Attached SCSI disk\n[    1.698844] sd 0:0:0:2: [sdc] Attached SCSI disk\n[    1.700160] sd 0:0:0:0: [sda] UFS data logging enabled\n[    1.700175] sd 0:0:0:0: [sda] UFS super partition, from : 804864, to 13271040\n[    1.700495] sd 0:0:0:4: [sde] Attached SCSI disk\n[    1.700794]  sdd: sdd1\n[    1.702117] sd 0:0:0:0: [sda] Attached SCSI disk\n[    1.702868] sd 0:0:0:3: [sdd] Attached SCSI disk\n[    1.708407] SW> [TEEgris:SCrypto] <INFO> SCrypto 2.4 is in FIPS approved mode\n[    1.712033] [RSC] fimc_is_resourcemgr_probe(0)\n[    1.712231] fimc-is is created\n[    1.712253] isfw-msg is created\n[    1.712297] fimc_is_vender_probe: probe start\n[    1.712341] Success to create sys/devices/svc svc : 0x0000000000000000\n[    1.712357] Success to create sys/devices/svc/Camera : 0x0000000000000000\n[    1.713773] [@][VID] exynos-fimc-is-30s(110) is created. minor(9)\n[    1.713886] [@][VID] exynos-fimc-is-30c(111) is created. minor(10)\n[    1.713986] [@][VID] exynos-fimc-is-30p(112) is created. minor(11)\n[    1.714076] [@][VID] exynos-fimc-is-31s(120) is created. minor(12)\n[    1.714171] [@][VID] exynos-fimc-is-31c(121) is created. minor(13)\n[    1.714274] [@][VID] exynos-fimc-is-31p(122) is created. minor(14)\n[    1.714368] [@][VID] exynos-fimc-is-i0s(130) is created. minor(15)\n[    1.714457] [@][VID] exynos-fimc-is-i0c(131) is created. minor(16)\n[    1.714547] [@][VID] exynos-fimc-is-i0p(132) is created. minor(17)\n[    1.714651] [@][VID] exynos-fimc-is-me0c(148) is created. minor(18)\n[    1.714739] [@][VID] exynos-fimc-is-m0s(160) is created. minor(19)\n[    1.714832] [@][VID] exynos-fimc-is-m1s(161) is created. minor(20)\n[    1.714921] [@][VID] exynos-fimc-is-m0p(170) is created. minor(21)\n[    1.715012] [@][VID] exynos-fimc-is-m1p(171) is created. minor(22)\n[    1.715102] [@][VID] exynos-fimc-is-m2p(172) is created. minor(23)\n[    1.715189] [@][VID] exynos-fimc-is-m3p(173) is created. minor(24)\n[    1.715279] [@][VID] exynos-fimc-is-m4p(174) is created. minor(25)\n[    1.715366] [@][VID] exynos-fimc-is-m5p(175) is created. minor(26)\n[    1.715455] [@][VID] exynos-fimc-is-vra(180) is created. minor(27)\n[    1.715547] [@][VID] exynos-fimc-is-p0s(240) is created. minor(28)\n[    1.715632] [@][VID] exynos-fimc-is-p1s(241) is created. minor(29)\n[    1.715847] [@][ITFC][ID:18] PAF0 RD VA(0x000000008a09ac5f)\n[    1.715862] [@][ITFC][ID:18] PAF0 COMMON VA(0x000000009f2ba4e4)\n[    1.715988] [@][ITFC][ID:19] PAF1 RD VA(0x00000000011fb6a4)\n[    1.715998] [@][ITFC][ID:19] PAF1 COMMON VA(0x0000000035a6397c)\n[    1.716054] [@][ITFC][ID: 1] 3AA VA(0x00000000541bd6e2)\n[    1.716275] [@][ITFC][ID: 2] 3AA VA(0x0000000048d0c423)\n[    1.716420] [@][ITFC][ID: 4] ISP VA(0x0000000006ed36ac)\n[    1.716544] [@][ITFC][ID:13] MCSC0 VA(0x0000000050e12cae)\n[    1.716635] [@][ITFC][ID:16] VRA0 VA(0x0000000023c9b874)\n[    1.716642] [@][ITFC][ID:16] VRA1 VA(0x00000000f17c8da4)\n[    1.716696] [@][ITFC][ID:16] kvaddr for vra: 0xffffff801cc01000\n[    1.716703] [@][HW:PAF0]probe done\n[    1.716708] [@][HW:PAF1]probe done\n[    1.716714] [@][HW:3AA0]probe done\n[    1.716719] [@][HW:3AA1]probe done\n[    1.716724] [@][HW:ISP0]probe done\n[    1.716732] [@][HW:MCS0]probe done\n[    1.716738] [@][HW:VRA]probe done\n[    1.716758] [@][HW:3AA0]sfr dump memory (V/P/S):(ffffffc8655d0000/8e55d0000/0x10000)[0x144B0000~0x144BFFFF]\n[    1.716771] [@][HW:3AA1]sfr dump memory (V/P/S):(ffffffc8655e0000/8e55e0000/0xC000)[0x144B4000~0x144BFFFF]\n[    1.716784] [@][HW:ISP0]sfr dump memory (V/P/S):(ffffffc8655f0000/8e55f0000/0x10000)[0x14600000~0x1460FFFF]\n[    1.716796] [@][HW:MCS0]sfr dump memory (V/P/S):(ffffffc865600000/8e5600000/0x10000)[0x14640000~0x1464FFFF]\n[    1.716808] [@][HW:VRA]sfr dump memory (V/P/S):(ffffffc865610000/8e5610000/0x10000)[0x14610000~0x1461FFFF]\n[    1.716821] [@][HW:VRA]sfr B dump memory (V/P/S):(ffffffc865620000/8e5620000/0x10000)[0x14620000~0x1462FFFF]\n[    1.716827] fimc_is_probe: call SMC_SECCAM_SETENV, SECURE_CAMERA_CH(0x2), SECURE_CAMERA_HEAP_ID(11)\n[    1.716881] fimc_is_probe: call SMC_SECCAM_INIT, mem_info(0xe1900000, 0x2000000)\n[    1.716934] fimc_is_probe: call SMC_SECCAM_INIT_NSBUF, mem_info(0xdb900000, 0x700000)\n[    1.716999] exynos-fimc-is 14490000.fimc_is: Fault handler is registered for 14740000.sysmmu\n[    1.717012] exynos-fimc-is 14490000.fimc_is: Fault handler is registered for 14770000.sysmmu\n[    1.717020] exynos-fimc-is 14490000.fimc_is: Fault handler is registered for 14550000.sysmmu\n[    1.717068] fimc_is_probe:end\n[    1.717763] sensor_dw9808_actuator_probe sensor_id(0) actuator_place(0)\n[    1.717775] sensor_dw9808_actuator_probe done\n[    1.717950] fimc_is_eeprom_i2c 13-0050[4]: fimc_is_sensor_eeprom probed!\n[    1.718038] use_common_rom_position 2\n[    1.718045] fimc_is_eeprom_i2c 14-0058[0]: fimc_is_sensor_eeprom probed!\n[    1.718123] fimc_is_eeprom_i2c 14-0051[1]: fimc_is_sensor_eeprom probed!\n[    1.718490] sec-thermistor sec_thermistor@0: sec_therm_probe: fail to get iio channel\n[    1.718571] sec-thermistor sec_thermistor@6: sec_therm_probe: fail to get iio channel\n[    1.718851] exynos-tmu 10070000.BIG: thermal zone use hotplug function \n[    1.719029] CPUHP: reigstered new user(name:DTM, mask:0-7)\n[    1.719127] exynos_tmu_parse_ect 1634 thermal zone_name = BIG\n[    1.719135] Parsed From ECT : [0] Temperature : 20\n[    1.719141] Parsed From ECT : [1] Temperature : 75\n[    1.719146] Parsed From ECT : [2] Temperature : 83\n[    1.719151] Parsed From ECT : [3] Temperature : 95\n[    1.719156] Parsed From ECT : [4] Temperature : 100\n[    1.719161] Parsed From ECT : [5] Temperature : 105\n[    1.719166] Parsed From ECT : [6] Temperature : 110\n[    1.719170] Parsed From ECT : [7] Temperature : 115\n[    1.719176] Parse from ECT k_po: 150\n[    1.719181] Parse from ECT k_pu: 90\n[    1.719186] Parse from ECT k_i: 3\n[    1.719191] Parse from ECT i_max: 300\n[    1.719197] Parse from ECT integral_cutoff: 8\n[    1.719201] Parse from ECT p_control_t: 2000\n[    1.719207] Parse from ECT hotplug_out_threshold: 96\n[    1.719212] Parse from ECT hotplug_in_threshold: 91\n[    1.719218] Parse from ECT limited_frequency: 2080000\n[    1.719223] Parse from ECT limited_threshold: 80\n[    1.719228] Parse from ECT limited_threshold_release: 76\n[    1.719243] exynos-tmu 10070000.BIG: Sensor number = 2\n[    1.719745] exynos_tmu_parse_ect 1581 thermal zone_name = LITTLE\n[    1.719753] Trip count parsed from ECT : 8, zone : LITTLE\n[    1.719760] Parsed From ECT : [0] Temperature : 20, frequency : 1742000\n[    1.719766] Parsed From ECT : [1] Temperature : 76, frequency : 1742000\n[    1.719772] Parsed From ECT : [2] Temperature : 81, frequency : 1326000\n[    1.719777] Parsed From ECT : [3] Temperature : 91, frequency : 1053000\n[    1.719782] Parsed From ECT : [4] Temperature : 96, frequency : 702000\n[    1.719788] Parsed From ECT : [5] Temperature : 101, frequency : 403000\n[    1.719793] Parsed From ECT : [6] Temperature : 106, frequency : 403000\n[    1.719798] Parsed From ECT : [7] Temperature : 115, frequency : 403000\n[    1.719809] exynos-tmu 10070000.LITTLE: Sensor number = 1\n[    1.720214] exynos_tmu_parse_ect 1634 thermal zone_name = G3D\n[    1.720222] Parsed From ECT : [0] Temperature : 20\n[    1.720228] Parsed From ECT : [1] Temperature : 80\n[    1.720233] Parsed From ECT : [2] Temperature : 88\n[    1.720238] Parsed From ECT : [3] Temperature : 95\n[    1.720243] Parsed From ECT : [4] Temperature : 100\n[    1.720248] Parsed From ECT : [5] Temperature : 105\n[    1.720252] Parsed From ECT : [6] Temperature : 110\n[    1.720257] Parsed From ECT : [7] Temperature : 115\n[    1.720262] Parse from ECT k_po: 60\n[    1.720267] Parse from ECT k_pu: 200\n[    1.720272] Parse from ECT k_i: 10\n[    1.720276] Parse from ECT i_max: 400\n[    1.720281] Parse from ECT integral_cutoff: 8\n[    1.720286] Parse from ECT p_control_t: 2001\n[    1.720291] Fail to parse limited_frequency parameter\n[    1.720303] Do not parsing limited_threshold and limited_threshold_release parameter\n[    1.720317] exynos-tmu 10070000.G3D: Sensor number = 0\n[    1.720713] exynos_tmu_parse_ect 1581 thermal zone_name = ISP\n[    1.720721] Trip count parsed from ECT : 8, zone : ISP\n[    1.720728] Parsed From ECT : [0] Temperature : 20, frequency : 60\n[    1.720734] Parsed From ECT : [1] Temperature : 76, frequency : 60\n[    1.720739] Parsed From ECT : [2] Temperature : 81, frequency : 60\n[    1.720744] Parsed From ECT : [3] Temperature : 91, frequency : 60\n[    1.720749] Parsed From ECT : [4] Temperature : 96, frequency : 60\n[    1.720754] Parsed From ECT : [5] Temperature : 101, frequency : 15\n[    1.720759] Parsed From ECT : [6] Temperature : 106, frequency : 5\n[    1.720763] Parsed From ECT : [7] Temperature : 115, frequency : 5\n[    1.720775] exynos-tmu 10070000.ISP: Sensor number = 1\n[    1.721026] [GPU cooling] index : 0, frequency : 1053000\n[    1.721034] [GPU cooling] index : 1, frequency : 949000\n[    1.721039] [GPU cooling] index : 2, frequency : 839000\n[    1.721044] [GPU cooling] index : 3, frequency : 764000\n[    1.721049] [GPU cooling] index : 4, frequency : 683000\n[    1.721054] [GPU cooling] index : 5, frequency : 572000\n[    1.721059] [GPU cooling] index : 6, frequency : 546000\n[    1.721063] [GPU cooling] index : 7, frequency : 455000\n[    1.721068] [GPU cooling] index : 8, frequency : 385000\n[    1.721073] [GPU cooling] index : 9, frequency : 338000\n[    1.721077] [GPU cooling] index : 10, frequency : 260000\n[    1.721261] [ISP TMU] index : 0, fps : 60\n[    1.721267] [ISP TMU] index : 1, fps : 15\n[    1.721272] [ISP TMU] index : 2, fps : 5\n[    1.721537] softdog: initialized. soft_noboot=0 soft_margin=100 sec soft_panic=1 (nowayout=0)\n[    1.721675] device-mapper: uevent: version 1.0.3\n[    1.721870] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com\n[    1.722021] alta_bigdata : create /proc/alta_bigdata\n[    1.722151] found!\n[    1.722659] exynos_acme: Complete to initialize cpufreq-domain0\n[    1.722666] exynos_acme: CPUFREQ of domain0 cal-id : 0xb040002\n[    1.722674] exynos_acme: CPUFREQ of domain0 sibling cpus : 0-3\n[    1.722680] exynos_acme: CPUFREQ of domain0 boot freq = 1053000 kHz, resume freq = 1053000 kHz\n[    1.722686] exynos_acme: CPUFREQ of domain0 max freq : 1742000 kHz, min freq : 403000 kHz\n[    1.722692] exynos_acme: CPUFREQ of domain0 PM QoS max-class-id : 4, min-class-id : 3\n[    1.722698] exynos_acme: CPUFREQ of domain0 table size = 16\n[    1.722703] exynos_acme: CPUFREQ of domain0 : L 3  1742000 kHz\n[    1.722709] exynos_acme: CPUFREQ of domain0 : L 4  1638000 kHz\n[    1.722714] exynos_acme: CPUFREQ of domain0 : L 5  1534000 kHz\n[    1.722719] exynos_acme: CPUFREQ of domain0 : L 6  1456000 kHz\n[    1.722724] exynos_acme: CPUFREQ of domain0 : L 7  1326000 kHz\n[    1.722729] exynos_acme: CPUFREQ of domain0 : L 8  1222000 kHz\n[    1.722733] exynos_acme: CPUFREQ of domain0 : L 9  1118000 kHz\n[    1.722738] exynos_acme: CPUFREQ of domain0 : L10  1053000 kHz\n[    1.722743] exynos_acme: CPUFREQ of domain0 : L11   910000 kHz\n[    1.722748] exynos_acme: CPUFREQ of domain0 : L12   806000 kHz\n[    1.722753] exynos_acme: CPUFREQ of domain0 : L13   702000 kHz\n[    1.722757] exynos_acme: CPUFREQ of domain0 : L14   598000 kHz\n[    1.722762] exynos_acme: CPUFREQ of domain0 : L15   403000 kHz\n[    1.722816] found!\n[    1.723211] exynos_acme: Complete to initialize cpufreq-domain1\n[    1.723217] exynos_acme: CPUFREQ of domain1 cal-id : 0xb040003\n[    1.723223] exynos_acme: CPUFREQ of domain1 sibling cpus : 4-7\n[    1.723229] exynos_acme: CPUFREQ of domain1 boot freq = 1456000 kHz, resume freq = 1456000 kHz\n[    1.723235] exynos_acme: CPUFREQ of domain1 max freq : 2314000 kHz, min freq : 936000 kHz\n[    1.723241] exynos_acme: CPUFREQ of domain1 PM QoS max-class-id : 6, min-class-id : 5\n[    1.723247] exynos_acme: CPUFREQ of domain1 table size = 20\n[    1.723252] exynos_acme: CPUFREQ of domain1 : L 3  2314000 kHz\n[    1.723258] exynos_acme: CPUFREQ of domain1 : L 4  2210000 kHz\n[    1.723262] exynos_acme: CPUFREQ of domain1 : L 5  2184000 kHz\n[    1.723267] exynos_acme: CPUFREQ of domain1 : L 6  2080000 kHz\n[    1.723272] exynos_acme: CPUFREQ of domain1 : L 7  1976000 kHz\n[    1.723277] exynos_acme: CPUFREQ of domain1 : L 8  1898000 kHz\n[    1.723281] exynos_acme: CPUFREQ of domain1 : L 9  1768000 kHz\n[    1.723286] exynos_acme: CPUFREQ of domain1 : L10  1664000 kHz\n[    1.723291] exynos_acme: CPUFREQ of domain1 : L11  1508000 kHz\n[    1.723296] exynos_acme: CPUFREQ of domain1 : L12  1456000 kHz\n[    1.723301] exynos_acme: CPUFREQ of domain1 : L13  1352000 kHz\n[    1.723305] exynos_acme: CPUFREQ of domain1 : L14  1248000 kHz\n[    1.723310] exynos_acme: CPUFREQ of domain1 : L15  1144000 kHz\n[    1.723315] exynos_acme: CPUFREQ of domain1 : L16  1040000 kHz\n[    1.723320] exynos_acme: CPUFREQ of domain1 : L17   936000 kHz\n[    1.723407] exynos_acme: CPUFREQ domain0 registered\n[    1.723607] exynos_acme: CPUFREQ domain1 registered\n[    1.723749] CPUHP: reigstered new user(name:ACME, mask:0-7)\n[    1.724883] exynos_acme: Initialized Exynos cpufreq driver\n[    1.725450] Exynos cpuidle driver Initialized\n[    1.725758] Synopsys Designware Multimedia Card Interface Driver\n[    1.726218] dwmmc_exynos 13550000.dwmmc2: invalid resource\n[    1.726232] dwmmc_exynos 13550000.dwmmc2: 'num-slots' was deprecated.\n[    1.726274] dwmmc_exynos 13550000.dwmmc2: supports-highspeed property is deprecated.\n[    1.726460] dwmmc_exynos 13550000.dwmmc2: IDMAC supports 64-bit address mode.\n[    1.726981] dwmmc_exynos 13550000.dwmmc2: Using internal DMA controller.\n[    1.727007] dwmmc_exynos 13550000.dwmmc2: FIFOTH: 0x 300f0030\n[    1.727013] dwmmc_exynos 13550000.dwmmc2: Version ID is 270a\n[    1.727274] dwmmc_exynos 13550000.dwmmc2: DW MMC controller at irq 171,64 bit host data width,64 deep fifo\n[    1.727393] dwmmc_exynos 13550000.dwmmc2: Slot quirk 'disable-wp' is deprecated\n[    1.727951] dw_mci_transferred_cnt_init: trans_count: successed.....\n[    1.727958] dw_mci_debug_init: create debug_log sysfs : successed.....\n[    1.727963] dwmmc_exynos 13550000.dwmmc2: host 0 debug On\n[    1.728075] dwmmc_exynos 13550000.dwmmc2: success to request irq for card detect.\n[    1.728080] wake enabled for irq 274\n[    1.733575] sm5713-fled sm5713-fled: sm5713 fled probe start (rev=7)\n[    1.733794] sm5713-fled sm5713-fled: sm5713_fled_parse_dt: f_cur=0xf, pre_cur=0x4, t_cur=0x4, tout=255, gpio=142:17\n[    1.733803] sm5713-fled sm5713-fled: sm5713_fled_parse_dt: parse dt done.\n[    1.735230] sm5713-fled sm5713-fled: sm5713 fled probe done.\n[    1.735292] hidraw: raw HID events driver (C) Jiri Kosina\n[    1.736273] usbcore: registered new interface driver usbhid\n[    1.736284] usbhid: USB HID core driver\n[    1.736670] ashmem: initialized\n[    1.737021] nf_register_hooks(freecess hooks) success\n[    1.737226] chub_dbg_get_memory: chub_rmem\n[    1.740553] nanohub-ipc 11980000.contexthub: clk_name: MUX_CLKCMU_SHUB_BUS_USER enable\n[    1.740585] nanohub-ipc 11980000.contexthub: clk_name: CMGP_I2C enable\n[    1.740598] nanohub-ipc 11980000.contexthub: [nanohub] sensor ldo en = 56\n[    1.740621] nanohub-ipc 11980000.contexthub: [nanohub] sensor 3p3 ldo en = -2\n[    1.740626] [SSP]            ssp_probe( 485): \n[    1.740640] [SSP] acc-posi[0]\n[    1.740644] [SSP] gyro-posi[0]\n[    1.740647] [SSP] mag-posi[7]\n[    1.740651] no prox-thresh, set as 0\n[    1.740654] [SSP] prox-thresh - 0, 0\n[    1.740665] no prox-thresh_addval, set as 0\n[    1.740668] [SSP] prox-thresh-addval - 0, 0\n[    1.740675] \n               #####################################################\n[    1.740682] [SSP]  initialize_variable(  93): \n[    1.741668] [SSP]            ssp_probe( 553): probe success!\n[    1.741679] #####################################################\n\n[    1.741707] nanohub-ipc 11980000.contexthub: contexthub_ipc_probe with sensorhub/shub_ramen_m21.fw FW and 104005500 clk is done\n[    1.741871] [sec_abc] sec_abc_init\n[    1.742231] [sec_abc] sec_abc_probe\n[    1.742249] sec_abc_probe: parse dt done\n[    1.743384] abc_hub_init\n[    1.743757] abc_hub abc_hub: abc_hub_probe\n[    1.743770] parse_bootc_data: time_spec(user binary user build) - 70000\n[    1.743777] abc_hub_probe: parse dt done\n[    1.744071] abc_hub_bootc_init: success\n[    1.744081] abc_hub abc_hub: abc_hub_probe success!\n[    1.744655] exynos-devfreq 17000010.devfreq_mif: no power domain\n[    1.744665] exynos-devfreq 17000010.devfreq_mif: This does not bts update\n[    1.744714] exynos-devfreq 17000010.devfreq_mif: DEVFREQ :  2093000Khz,        0uV\n[    1.744736] exynos-devfreq 17000010.devfreq_mif: DEVFREQ :  2002000Khz,        0uV\n[    1.744769] exynos-devfreq 17000010.devfreq_mif: DEVFREQ :  1794000Khz,        0uV\n[    1.744790] exynos-devfreq 17000010.devfreq_mif: DEVFREQ :  1539000Khz,        0uV\n[    1.744809] exynos-devfreq 17000010.devfreq_mif: DEVFREQ :  1352000Khz,        0uV\n[    1.744828] exynos-devfreq 17000010.devfreq_mif: DEVFREQ :  1014000Khz,        0uV\n[    1.744856] exynos-devfreq 17000010.devfreq_mif: DEVFREQ :   845000Khz,        0uV\n[    1.744875] exynos-devfreq 17000010.devfreq_mif: DEVFREQ :   676000Khz,        0uV\n[    1.744894] exynos-devfreq 17000010.devfreq_mif: DEVFREQ :   546000Khz,        0uV\n[    1.744912] exynos-devfreq 17000010.devfreq_mif: DEVFREQ :   419000Khz,        0uV\n[    1.744918] exynos-devfreq 17000010.devfreq_mif: max_freq: 2093000Khz, get_max_freq: 2093000Khz\n[    1.744922] exynos-devfreq 17000010.devfreq_mif: min_freq: 419000Khz, get_min_freq: 419000Khz\n[    1.744927] exynos-devfreq 17000010.devfreq_mif: min_freq: 419000Khz, max_freq: 2093000Khz\n[    1.745286] exynos-devfreq 17000010.devfreq_mif: Initial Frequency: 2093000, Initial Voltage: 0\n[    1.746284] exynos-devfreq 17000010.devfreq_mif: devfreq is initialized!!\n[    1.746502] exynos-devfreq 17000020.devfreq_int: no power domain\n[    1.746511] exynos-devfreq 17000020.devfreq_int: This does not bts update\n[    1.746516] exynos-devfreq 17000020.devfreq_int: This does not update fvp\n[    1.746552] exynos-devfreq 17000020.devfreq_int: DEVFREQ :   667000Khz,        0uV\n[    1.746584] exynos-devfreq 17000020.devfreq_int: DEVFREQ :   533000Khz,        0uV\n[    1.746603] exynos-devfreq 17000020.devfreq_int: DEVFREQ :   400000Khz,        0uV\n[    1.746623] exynos-devfreq 17000020.devfreq_int: DEVFREQ :   200000Khz,        0uV\n[    1.746641] exynos-devfreq 17000020.devfreq_int: DEVFREQ :   100000Khz,        0uV\n[    1.746646] exynos-devfreq 17000020.devfreq_int: max_freq: 667000Khz, get_max_freq: 667000Khz\n[    1.746651] exynos-devfreq 17000020.devfreq_int: min_freq: 100000Khz, get_min_freq: 100000Khz\n[    1.746655] exynos-devfreq 17000020.devfreq_int: min_freq: 100000Khz, max_freq: 667000Khz\n[    1.746699] exynos-devfreq 17000020.devfreq_int: Initial Frequency: 667000, Initial Voltage: 0\n[    1.747205] exynos-devfreq 17000020.devfreq_int: devfreq is initialized!!\n[    1.747406] exynos-devfreq 17000030.devfreq_intcam: no power domain\n[    1.747413] exynos-devfreq 17000030.devfreq_intcam: This does not use acpm\n[    1.747418] exynos-devfreq 17000030.devfreq_intcam: This does not bts update\n[    1.747422] exynos-devfreq 17000030.devfreq_intcam: This does not update fvp\n[    1.747471] exynos-devfreq 17000030.devfreq_intcam: DEVFREQ :   690000Khz,        0uV\n[    1.747491] exynos-devfreq 17000030.devfreq_intcam: DEVFREQ :   680000Khz,        0uV\n[    1.747510] exynos-devfreq 17000030.devfreq_intcam: DEVFREQ :   670000Khz,        0uV\n[    1.747530] exynos-devfreq 17000030.devfreq_intcam: DEVFREQ :   660000Khz,        0uV\n[    1.747557] exynos-devfreq 17000030.devfreq_intcam: DEVFREQ :   650000Khz,        0uV\n[    1.747563] exynos-devfreq 17000030.devfreq_intcam: max_freq: 690000Khz, get_max_freq: 690000Khz\n[    1.747567] exynos-devfreq 17000030.devfreq_intcam: min_freq: 650000Khz, get_min_freq: 650000Khz\n[    1.747572] exynos-devfreq 17000030.devfreq_intcam: min_freq: 650000Khz, max_freq: 690000Khz\n[    1.747577] exynos-devfreq 17000030.devfreq_intcam: Initial Frequency: 690000, Initial Voltage: 0\n[    1.747923] exynos-devfreq 17000030.devfreq_intcam: devfreq is initialized!!\n[    1.748119] exynos-devfreq 17000040.devfreq_disp: no power domain\n[    1.748126] exynos-devfreq 17000040.devfreq_disp: This does not use acpm\n[    1.748131] exynos-devfreq 17000040.devfreq_disp: This does not bts update\n[    1.748136] exynos-devfreq 17000040.devfreq_disp: This does not update fvp\n[    1.748177] exynos-devfreq 17000040.devfreq_disp: DEVFREQ :   533000Khz,        0uV\n[    1.748197] exynos-devfreq 17000040.devfreq_disp: DEVFREQ :   400000Khz,        0uV\n[    1.748216] exynos-devfreq 17000040.devfreq_disp: DEVFREQ :   333000Khz,        0uV\n[    1.748243] exynos-devfreq 17000040.devfreq_disp: DEVFREQ :   167000Khz,        0uV\n[    1.748262] exynos-devfreq 17000040.devfreq_disp: DEVFREQ :   111000Khz,        0uV\n[    1.748268] exynos-devfreq 17000040.devfreq_disp: max_freq: 533000Khz, get_max_freq: 533000Khz\n[    1.748272] exynos-devfreq 17000040.devfreq_disp: min_freq: 167000Khz, get_min_freq: 167000Khz\n[    1.748277] exynos-devfreq 17000040.devfreq_disp: min_freq: 167000Khz, max_freq: 533000Khz\n[    1.748283] exynos-devfreq 17000040.devfreq_disp: Initial Frequency: 533000, Initial Voltage: 0\n[    1.748397] exynos-devfreq 17000040.devfreq_disp: devfreq is initialized!!\n[    1.748587] exynos-devfreq 17000050.devfreq_cam: no power domain\n[    1.748594] exynos-devfreq 17000050.devfreq_cam: This does not use acpm\n[    1.748600] exynos-devfreq 17000050.devfreq_cam: This does not bts update\n[    1.748604] exynos-devfreq 17000050.devfreq_cam: This does not update fvp\n[    1.748646] exynos-devfreq 17000050.devfreq_cam: DEVFREQ :   700000Khz,        0uV\n[    1.748666] exynos-devfreq 17000050.devfreq_cam: DEVFREQ :   690000Khz,        0uV\n[    1.748684] exynos-devfreq 17000050.devfreq_cam: DEVFREQ :   680000Khz,        0uV\n[    1.748705] exynos-devfreq 17000050.devfreq_cam: DEVFREQ :   670000Khz,        0uV\n[    1.748731] exynos-devfreq 17000050.devfreq_cam: DEVFREQ :   660000Khz,        0uV\n[    1.748749] exynos-devfreq 17000050.devfreq_cam: DEVFREQ :   650000Khz,        0uV\n[    1.748767] exynos-devfreq 17000050.devfreq_cam: DEVFREQ :   640000Khz,        0uV\n[    1.748772] exynos-devfreq 17000050.devfreq_cam: max_freq: 700000Khz, get_max_freq: 700000Khz\n[    1.748777] exynos-devfreq 17000050.devfreq_cam: min_freq: 640000Khz, get_min_freq: 640000Khz\n[    1.748781] exynos-devfreq 17000050.devfreq_cam: min_freq: 640000Khz, max_freq: 700000Khz\n[    1.748787] exynos-devfreq 17000050.devfreq_cam: Initial Frequency: 690000, Initial Voltage: 0\n[    1.749016] exynos-devfreq 17000050.devfreq_cam: devfreq is initialized!!\n[    1.749244] exynos-devfreq 17000060.devfreq_aud: power domain: pd-dispaud\n[    1.749399] exynos-devfreq 17000060.devfreq_aud: This does not use acpm\n[    1.749405] exynos-devfreq 17000060.devfreq_aud: This does not bts update\n[    1.749409] exynos-devfreq 17000060.devfreq_aud: This does not update fvp\n[    1.749460] exynos-devfreq 17000060.devfreq_aud: DEVFREQ :  1180000Khz,        0uV\n[    1.749480] exynos-devfreq 17000060.devfreq_aud: DEVFREQ :   800000Khz,        0uV\n[    1.749501] exynos-devfreq 17000060.devfreq_aud: DEVFREQ :   590000Khz,        0uV\n[    1.749528] exynos-devfreq 17000060.devfreq_aud: DEVFREQ :   394000Khz,        0uV\n[    1.749534] exynos-devfreq 17000060.devfreq_aud: max_freq: 1180000Khz, get_max_freq: 1180000Khz\n[    1.749539] exynos-devfreq 17000060.devfreq_aud: min_freq: 393000Khz, get_min_freq: 394000Khz\n[    1.749544] exynos-devfreq 17000060.devfreq_aud: min_freq: 394000Khz, max_freq: 1180000Khz\n[    1.749550] exynos-devfreq 17000060.devfreq_aud: Initial Frequency: 394000, Initial Voltage: 0\n[    1.749673] exynos-devfreq 17000060.devfreq_aud: devfreq is initialized!!\n[    1.750314] exynos-adc 11c30000.adc: 11c30000.adc supply vdd not found, using dummy regulator\n[    1.750511] exynos-adc 11c30000.adc: Probed successfully driver.\n[    1.750862] battery_notifier_init\n[    1.750905] sm5713_fuelgauge_init: \n[    1.751032] sm5713_fuelgauge_probe: SM5713 Fuelgauge Driver Loading\n[    1.751156] temp_parse_dt num_age_step : 5\n[    1.751161] [0/4]cycle:0, float:4350, full_v:4250, recharge_v:4280, soc:93\n[    1.751165] [1/4]cycle:300, float:4330, full_v:4230, recharge_v:4260, soc:92\n[    1.751169] [2/4]cycle:400, float:4310, full_v:4210, recharge_v:4240, soc:91\n[    1.751173] [3/4]cycle:700, float:4290, full_v:4190, recharge_v:4220, soc:90\n[    1.751176] [4/4]cycle:1000, float:4240, full_v:4140, recharge_v:4170, soc:89\n[    1.751220] sm5713_fuelgauge_parse_dt: capacity_max: 1000, capacity_max_margin: 300, capacity_min: 0\n[    1.751226] sm5713_fuelgauge_parse_dt: calculation_type: 0x1f, fuel_alert_soc: 1,\n               repeated_fuelalert: 0\n[    1.751232] sm5713_fuelgauge_parse_dt : LOW TEMP LIMIT(100)\n[    1.751237] sm5713_fuelgauge_parse_dt error reading v_empty -22\n[    1.751247] sm5713_fuelgauge_parse_dt error reading v_empty_origin -22\n[    1.751255] sm5713_fuelgauge_parse_dt error reading vbat_ovp -22\n[    1.751261] sm5713_fuelgauge_parse_dt : SW V Empty (3200)mV,  SW V Empty recover (3480)mV, CISD V_Alarm (3100)mV, Vbat OVP (4400)mV \n[    1.751266] sm5713_fuelgauge_parse_dt error reading jig_gpio = -2\n[    1.751271] sm5713_fuelgauge_parse_dt error reading fg_resistor -22\n[    1.751277] sm5713_fuelgauge_parse_dt error reading Capacity -22\n[    1.751284] sm5713_fuelgauge_parse_dt len: 1056, lenth: 264, 22\n[    1.751290] sm5713_fuelgauge_parse_dt : Full condition soc is Empty\n[    1.751294] sm5713_fuelgauge_parse_dt() line-2981: battery id = 0\n[    1.751299] sm5713_fuelgauge_parse_dt() line-2987: Can get prop battery0,is_read_vpack (-22)\n[    1.751303] sm5713_fuelgauge_parse_dt() line-2988: battery0,is_read_vpack = <0x0>\n[    1.751307] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][0] 0x1400>\n[    1.751311] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][1] 0x1b33>\n[    1.751315] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][2] 0x1c2a>\n[    1.751318] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][3] 0x1d6c>\n[    1.751322] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][4] 0x1d86>\n[    1.751325] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][5] 0x1da2>\n[    1.751329] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][6] 0x1dbb>\n[    1.751333] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][7] 0x1ddb>\n[    1.751336] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][8] 0x1df0>\n[    1.751340] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][9] 0x1e30>\n[    1.751343] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][10] 0x1e4f>\n[    1.751347] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][11] 0x1e5d>\n[    1.751351] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][12] 0x1e7e>\n[    1.751354] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][13] 0x1ea7>\n[    1.751358] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][14] 0x1edc>\n[    1.751361] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][15] 0x1f3d>\n[    1.751364] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][16] 0x1f6f>\n[    1.751368] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][17] 0x1fa0>\n[    1.751371] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][18] 0x1ff1>\n[    1.751375] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][19] 0x2050>\n[    1.751378] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][20] 0x2082>\n[    1.751381] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][21] 0x20ee>\n[    1.751385] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][22] 0x2239>\n[    1.751388] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table0 = <table[0][23] 0x2400>\n[    1.751392] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][0] 0x0>\n[    1.751396] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][1] 0x4c>\n[    1.751399] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][2] 0x166>\n[    1.751403] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][3] 0x44c>\n[    1.751406] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][4] 0x733>\n[    1.751409] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][5] 0xa00>\n[    1.751413] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][6] 0xce6>\n[    1.751416] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][7] 0xfcc>\n[    1.751420] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][8] 0x1299>\n[    1.751423] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][9] 0x1b33>\n[    1.751427] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][10] 0x2100>\n[    1.751430] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][11] 0x23cc>\n[    1.751433] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][12] 0x2980>\n[    1.751437] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][13] 0x2f4c>\n[    1.751440] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][14] 0x3500>\n[    1.751444] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][15] 0x3ab3>\n[    1.751447] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][16] 0x3d99>\n[    1.751451] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][17] 0x4080>\n[    1.751454] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][18] 0x4633>\n[    1.751458] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][19] 0x4be6>\n[    1.751461] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][20] 0x4ecc>\n[    1.751464] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][21] 0x5480>\n[    1.751468] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][22] 0x6400>\n[    1.751471] sm5713_fuelgauge_parse_dt() line-3001: battery0,battery_table1 = <table[1][23] 0x6419>\n[    1.751476] sm5713_fuelgauge_parse_dt() line-3014: battery0,battery_table2 = <table[2][0] 0x4b>\n[    1.751479] sm5713_fuelgauge_parse_dt() line-3014: battery0,battery_table2 = <table[2][1] 0x44>\n[    1.751482] sm5713_fuelgauge_parse_dt() line-3014: battery0,battery_table2 = <table[2][2] 0x40>\n[    1.751486] sm5713_fuelgauge_parse_dt() line-3014: battery0,battery_table2 = <table[2][3] 0x3e>\n[    1.751489] sm5713_fuelgauge_parse_dt() line-3014: battery0,battery_table2 = <table[2][4] 0x3c>\n[    1.751492] sm5713_fuelgauge_parse_dt() line-3014: battery0,battery_table2 = <table[2][5] 0x3b>\n[    1.751496] sm5713_fuelgauge_parse_dt() line-3014: battery0,battery_table2 = <table[2][6] 0x38>\n[    1.751499] sm5713_fuelgauge_parse_dt() line-3014: battery0,battery_table2 = <table[2][7] 0x37>\n[    1.751503] sm5713_fuelgauge_parse_dt() line-3014: battery0,battery_table2 = <table[2][8] 0x35>\n[    1.751507] sm5713_fuelgauge_parse_dt() line-3014: battery0,battery_table2 = <table[2][9] 0x34>\n[    1.751511] sm5713_fuelgauge_parse_dt() line-3014: battery0,battery_table2 = <table[2][10] 0x34>\n[    1.751515] sm5713_fuelgauge_parse_dt() line-3014: battery0,battery_table2 = <table[2][11] 0x33>\n[    1.751518] sm5713_fuelgauge_parse_dt() line-3014: battery0,battery_table2 = <table[2][12] 0x33>\n[    1.751521] sm5713_fuelgauge_parse_dt() line-3014: battery0,battery_table2 = <table[2][13] 0x33>\n[    1.751525] sm5713_fuelgauge_parse_dt() line-3014: battery0,battery_table2 = <table[2][14] 0x33>\n[    1.751528] sm5713_fuelgauge_parse_dt() line-3014: battery0,battery_table2 = <table[2][15] 0x32>\n[    1.751534] sm5713_fuelgauge_parse_dt() line-3026: battery0,rce_value = <0x4e1 0x3e6 0x1d7>\n[    1.751539] sm5713_fuelgauge_parse_dt() line-3033: battery0,dtcd_value = <0x1>\n[    1.751547] sm5713_fuelgauge_parse_dt() line-3044: battery0,rs_value = <0xa4 0x147 0x146 0x3800 0x7a>\n[    1.751551] sm5713_fuelgauge_parse_dt() line-3051: battery0,vit_period = <0xa0a>\n[    1.751556] sm5713_fuelgauge_parse_dt() line-3062: battery0,mix_value = <0x103 0x4>\n[    1.751560] sm5713_fuelgauge_parse_dt() line-3077: battery0,battery_type = <4400 0 0x29e2>\n[    1.751565] sm5713_fuelgauge_parse_dt() line-3093: battery0,v_max_table = <v_max_table[0] 0x2239>\n[    1.751569] sm5713_fuelgauge_parse_dt() line-3093: battery0,v_max_table = <v_max_table[1] 0x2213>\n[    1.751572] sm5713_fuelgauge_parse_dt() line-3093: battery0,v_max_table = <v_max_table[2] 0x21f3>\n[    1.751576] sm5713_fuelgauge_parse_dt() line-3093: battery0,v_max_table = <v_max_table[3] 0x21d2>\n[    1.751580] sm5713_fuelgauge_parse_dt() line-3093: battery0,v_max_table = <v_max_table[4] 0x217f>\n[    1.751585] sm5713_fuelgauge_parse_dt() line-3110: battery0,q_max_table = <q_max_table[0] 0x29e2>\n[    1.751589] sm5713_fuelgauge_parse_dt() line-3110: battery0,q_max_table = <q_max_table[1] 0x2932>\n[    1.751592] sm5713_fuelgauge_parse_dt() line-3110: battery0,q_max_table = <q_max_table[2] 0x2882>\n[    1.751595] sm5713_fuelgauge_parse_dt() line-3110: battery0,q_max_table = <q_max_table[3] 0x27d2>\n[    1.751599] sm5713_fuelgauge_parse_dt() line-3110: battery0,q_max_table = <q_max_table[4] 0x261a>\n[    1.751603] sm5713_fuelgauge_parse_dt() line-3116: battery0,q_max_table = <v_max_now = 0x2239>, <q_max_now = 0x29e2>, <chg_full_soc = 93>\n[    1.751607] sm5713_fuelgauge_parse_dt() line-3124: battery0,misc = <0x0>\n[    1.751612] sm5713_fuelgauge_parse_dt() line-3133: battery0,v_alarm = <3100 0>\n[    1.751616] sm5713_fuelgauge_parse_dt() line-3145: battery0,topoff_soc = <0 3 600>\n[    1.751620] sm5713_fuelgauge_parse_dt() line-3157: battery0,cycle_cfg = <0 0 0>\n[    1.751625] sm5713_fuelgauge_parse_dt() line-3170: battery0,v_offset_cancel = <0 0 100 10>\n[    1.751630] sm5713_fuelgauge_parse_dt() line-3179: battery0,volt_cal = <0x8012 0x8012>\n[    1.751635] sm5713_fuelgauge_parse_dt() line-3196: battery0,curr_offset = <1 arg : 0x0 0x0 0x0, dp : 0x0 0x0 0x0>\n[    1.751641] sm5713_fuelgauge_parse_dt() line-3212: battery0,curr_cal = <arg : 0x877d 0x877d 0x877d, dp : 0x8080 0x8080 0x8080>\n[    1.751647] sm5713_fuelgauge_parse_dt() line-3228: battery0,full_offset = <0 50 0 0xd1 0x90>\n[    1.751651] sm5713_fuelgauge_parse_dt() line-3234: Can get prop battery0,coeff (-22)\n[    1.751654] sm5713_fuelgauge_parse_dt() line-3235: battery0,coeff = <0>\n[    1.751658] sm5713_fuelgauge_parse_dt() line-3242: battery0,temp_std = <25>\n[    1.751663] sm5713_fuelgauge_parse_dt() line-3253: battery0,temp_volcal = <1, 15, 1>\n[    1.751668] sm5713_fuelgauge_parse_dt() line-3270: battery0,temp_offset = <1, 11, 1, 1, 8, -1>\n[    1.751673] sm5713_fuelgauge_parse_dt() line-3293: battery0,temp_cal = <0, 6, 1, 11, -1, 1, 6, 1, 9, 1>\n[    1.751678] sm5713_fuelgauge_parse_dt() line-3316: battery0,ext_temp_cal = <0, 2, 1, 2, 1, 1, 2, 3, 2, 3>\n[    1.751683] sm5713_fuelgauge_parse_dt() line-3331: battery0,tem_poff = <3400, 50, 3250, 50>\n[    1.751688] sm5713_fuelgauge_parse_dt() line-3346: battery0,arsm = <1, 3, 1, 6>\n[    1.751692] sm5713_fuelgauge_parse_dt() line-3353: battery0,age_cntl = <0x325>\n[    1.751696] sm5713_fuelgauge_parse_dt() line-3365: battery0,tcal_ioff = <0x2, 0x30>\n[    1.751701] sm5713_fuelgauge_parse_dt() line-3372: battery0,data_ver = <4>\n[    1.751963] sm5713_get_device_id: SM5713 device_id = 0x1\n[    1.751968] sm5713_fg_check_battery_present: sm5713_fg_get_batt_present\n[    1.752252] sm5713_fg_init: q_max_now = 0x29e2\n[    1.752585] sm5713_fg_init: reserv_1 = 0x40\n[    1.752824] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x15 , return FALSE NO init need\n[    1.755404] sm5713_dp_setup: dp_off : <0x0 0x0 0x0> dp_slo : <0x8080 0x8080 0x8080>\n[    1.756733] sm5713_alg_setup: alg_off : <0x0 0x0 0x0> alg_slo : <0x877d 0x877d 0x877d>\n[    1.758616] sm5713_fg_buffer_read: sm5713 FG buffer 0x30_0x35 lb_V = 0x1f78, 0x1f78, 0x1f79, 0x1f79, 0x1f79, 0x1f7a \n[    1.760276] sm5713_fg_buffer_read: sm5713 FG buffer 0x36_0x3B cb_V = 0x1f59, 0x1f58, 0x1f58, 0x1f59, 0x1f58, 0x1f59 \n[    1.761934] sm5713_fg_buffer_read: sm5713 FG buffer 0x40_0x45 lb_I = 0x400f, 0x400e, 0x400e, 0x400e, 0x400e, 0x400f \n[    1.763013] mmc_host mmc0: Bus speed (slot 0) = 24999996Hz (slot req 400000Hz, actual 390624HZ div = 32)\n[    1.763864] sm5713_fg_buffer_read: sm5713 FG buffer 0x46_0x4B cb_I = 0x4014, 0x400e, 0x4012, 0x400f, 0x4012, 0x4011 \n[    1.764724] sm5713_set_tcal_ioff : set tcal & ioff!! tcal = 0x2, ioff = 0x30\n[    1.765165] sm5713_asoc_init 0x9c : 0x325\n[    1.765603] sm5713_asoc_init asoc restore : 100\n[    1.765613] sm5713_get_soc: \n[    1.766740] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[    1.767022] sm5713_get_soc: read = 0x116f, soc = 174\n[    1.767026] sm5713_get_soc: batt_soc = 174, soc = 174\n[    1.767030] sm5713_fuelgauge_probe: SW/HW V empty init \n[    1.767536] sm5713_fg_set_vempty: HW V EMPTY Enable, SW V EMPTY Disable 3100 mV (793) \n[    1.768041] sm5713_fg_set_vempty: VALRT_THRESHOLD hysteresis set 0 mV (0x0) \n[    1.768134] [sm5713_fuelgauge_probe]IRQ_BASE(218) FG_IRQ(269)\n[    1.769127] sm5713_fg_alert_init: fg_irq= 0x10d, REG_CNTL=0xc601, SOC_ALARM=0x100 \n[    1.770797] sm5713_fuelgauge_probe: SM5713 Fuelgauge Driver Loaded\n[    1.770841] s2mu106_fuelgauge_init: S2MU106 Fuelgauge Init\n[    1.771125] sm5713-charger sm5713-charger: sm5713_charger_probe: probe start\n[    1.771252] sm5713_charger_parse_dt: battery,chg_float_voltage is 4350\n[    1.771259] sm5713_charger_parse_dt: battery,chg_ocp_current is 4500\n[    1.771264] sm5713-charger sm5713-charger: sm5713_charger_parse_dt: parse dt done.\n[    1.778239] sm5713-charger: regmap: 0x07[0xFF],0x08[0xFF],0x09[0xFF],0x0A[0xFF],0x0B[0xFF],0x0C[0xFF],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x6C],0x14[0x05],0x15[0x10],0x16[0xFF],\n[    1.778256] sm5713-charger: regmap: 0x17[0x12],0x18[0x87],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x05],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[    1.778265] sm5713-charger sm5713-charger: sm5713_chg_init: init done.\n[    1.781151] sm5713-charger: sm5713_charger_oper_table_init: current table info (STATUS: 0x0, MODE: 5, BST_OUT: 0x1, OTG_CURRENT: 0x0)\n[    1.782543] sm5713_fg_get_property: psp = 0x4\n[    1.791087] sm5713-charger sm5713-charger: sm5713_charger_probe: probe done.\n[    1.791140] s2mu106_charger_init start\n[    1.791420] [NAD_BALANCER] Not support NAD balancer.\n[    1.791424] sec_param_work_init: start\n[    1.791610] [GRIP] a96t3x6_probe: start (0x20)\n[    1.791657] [GRIP] a96t3x6_parse_dt: fw path abov/a96t326_m31.fw\n[    1.791665] [GRIP] a96t3x6_parse_dt: grip_int:29, ldo_en:153\n[    1.791679] [GRIP] a96t3x6_power_onoff: ldo_en power 1\n[    1.791708] (NULL device *): deviceless supply vtouch_2.8v not found, using dummy regulator\n[    1.791759] [GRIP] a96t3x6_power_onoff: on\n[    1.901617] exynos-ufs-srpmb ufs-srpmb: Accepted connection\n[    1.901782] [SECLOG C4] [000007.921259] [RPMB] get provision : 1\n[    1.901940] [SECLOG C4] [000007.921417] [RPMB] read data. [req: 8f9840000]\n[    1.916616] exynos-ufs-srpmb ufs-srpmb: Sent reply\n[    1.916647] [SECLOG C4] [000007.936038] [RPMB] read data. [req: 8f9840000]\n[    1.918092] [SECLOG C4] [000007.937571] [RPMB] read data. [req: 8f9840000]\n[    1.918137] exynos-ufs-srpmb ufs-srpmb: Sent reply\n[    1.919405] [SECLOG C4] [000007.938884] [RPMB] read data. [req: 8f9840000]\n[    1.919451] exynos-ufs-srpmb ufs-srpmb: Sent reply\n[    1.920706] [SECLOG C4] [000007.940188] [RPMB] read data. [req: 8f9840000]\n[    1.920729] exynos-ufs-srpmb ufs-srpmb: Sent reply\n[    1.921658] [SECLOG C4] [000007.941138] [RPMB] read data. [req: 8f9840000]\n[    1.921679] exynos-ufs-srpmb ufs-srpmb: Sent reply\n[    1.922624] exynos-ufs-srpmb ufs-srpmb: Sent reply\n[    1.922661] [SECLOG C1] [000007.942156] [RPMB] read data. [req: 8f9840000]\n[    1.924001] exynos-ufs-srpmb ufs-srpmb: Sent reply\n[    1.924020] [SECLOG C4] [000007.943433] [RPMB] read data. [req: 8f9840000]\n[    1.926091] exynos-ufs-srpmb ufs-srpmb: Sent reply\n[    1.926166] TZDEV> ERR tz_deploy_handler(133): [debug] Startuploader complete\n[    1.940640] SW> [TEEgris:SCrypto] <INFO> SCrypto 2.4 is in FIPS approved mode\n[    1.941937] [GRIP] a96t3x6_load_fw_kernel: fw = 0x3, md = 0xcd\n[    1.941943] [GRIP] a96t3x6_load_fw_kernel: crc 0x90 0x66\n[    1.941947] [GRIP] a96t3x6_fw_check: fw version read success (0)\n[    1.941951] [GRIP] grip_always_active: Grip always active mode 1\n[    1.983292] [GRIP] grip_always_active: Wrong value 0x20, retry again 2\n[    2.023280] [GRIP] grip_always_active: Wrong value 0x20, retry again 1\n[    2.063272] [GRIP] grip_always_active: Wrong value 0x20, retry again 0\n[    2.063283] [GRIP] grip_always_active: failed to change grip always active mode\n[    2.064492] [GRIP] a96t3x6_get_fw_version:  fw = 0x3, md = 0xcd\n[    2.064496] [GRIP] grip_always_active: Grip always active mode 0\n[    2.103187] [GRIP] grip_always_active: cmd 0x10, return 0x10\n[    2.103284] input: grip_sensor as /devices/virtual/input/input1\n[    2.103883] [GRIP] a96t3x6_set_debug_work: \n[    2.103890] type-c manager: manager_notifier_register: listener=22 register\n[    2.103894] type-c manager: manager_notifier_init\n[    2.103898] ccic_notifier_init\n[    2.103902] ccic_notifier_init already registered\n[    2.103940] usb_notify: usb_external_notify_register: listener=(undefined)3 register\n[    2.104532] vbus_notifier_register: listener=2 register\n[    2.104538] ccic_notifier_register: listener=6 register\n[    2.104544] type-c manager: manager_handle_ccic_notification: src:INITIAL dest:INITIAL id:ID_INITIAL attach/rid:0\n[    2.104548] [MUIC] muic_notifier_register: listener=7 register\n[    2.104552] type-c manager: manager_handle_muic_notification: src:4 attach:0, cable_type:84\n[    2.104557] type-c manager: manager_handle_muic_notification: Cable(84) Detached \n[    2.104560] type-c manager: manager_event_work src:MUIC dest:BATTERY\n[    2.104568] type-c manager: manager_notifier_init : result of register = 0!\n[    2.104571] type-c manager: manager_notifier_init : done!\n[    2.104652] type-c manager: manager_notifier_notify: src:MUIC dest:BATTERY id:ID_ATTACH sub1:00 sub2:00 sub3:54\n[    2.104667] usb_notify: register_usblog_proc size=23648\n[    2.104672] type-c manager: manager_notifier_notify: notify done(0x0)\n[    2.104706] type-c manager: manager_notifier_init: usb_host: support DP\n[    2.104709] type-c manager: manager_notifier_init end\n[    2.104712] ccic_notifier_init\n[    2.104715] ccic_notifier_init already registered\n[    2.104722] [GRIP] a96t3x6_probe: done\n[    2.104792] initcall a96t3x6_init+0x0/0x20 returned 0 after 306012 usecs\n[    2.105030] mmc_host mmc0: Bus speed (slot 0) = 199999969Hz (slot req 200000000Hz, actual 199999969HZ div = 0)\n[    2.105043] dwmmc_exynos 13550000.dwmmc2: Tuning Abnormal_result 0x0000ffff.\n[    2.105050] [VIB] dc_vib: dc_vib_probe\n[    2.105055] [VIB] dc_vib: dc_vib_get_dt: qc_regulator isn't used\n[    2.105073] [VIB] dc_vib: dc_vib_get_dt: regulator isn't used\n[    2.105386] [VIB] sec_vibrator_register done\n[    2.105433] fps_etspi_init: etspi_init\n[    2.105708] fps_etspi_probe: etspi_probe\n[    2.105726] fps_etspi_parse_dt: etspi_parse_dt: sleepPin=160\n[    2.105732] fps_etspi_parse_dt: etspi_parse_dt: drdyPin=11\n[    2.105740] fps_etspi_parse_dt: etspi_parse_dt: ldo_pin=159\n[    2.105745] fps_etspi_parse_dt: etspi_parse_dt: not use btp_regulator\n[    2.105749] fps_etspi_parse_dt: etspi_parse_dt: chipid: ET520\n[    2.105753] fps_etspi_parse_dt: etspi_parse_dt: orient: 1\n[    2.105758] fps_etspi_parse_dt: etspi_parse_dt is successful\n[    2.105762] fps_etspi_platformInit: etspi_platformInit\n[    2.105791] fps_etspi_platformInit: etspi_platformInit sleep value =0\n               etspi_platformInit ldo en value =0\n[    2.105798] fps_etspi_platformInit: etspi_platformInit successful status=0\n[    2.105819] mmc_host mmc0: Tuning error: cmd.error:-84, data.error:-115 CLKSEL = 0x03030041, EN_SHIFT = 0x00000000\n[    2.105979] mmc_host mmc0: Tuning error: cmd.error:-84, data.error:-115 CLKSEL = 0x03030002, EN_SHIFT = 0x00000000\n[    2.106077] dwmmc_exynos 13550000.dwmmc2: data error, status 0x00000088 2\n[    2.106218] mmc_host mmc0: Tuning error: cmd.error:0, data.error:-84 CLKSEL = 0x03030042, EN_SHIFT = 0x00000000\n[    2.106434] fps_etspi_probe: etspi_probe is successful\n[    2.106467] fps_etspi_init: etspi_init is successful\n[    2.106916] usbcore: registered new interface driver snd-usb-audio\n[    2.107388] rt5510 7-0034: rt5510_i2c_probe++\n[    2.107644] dwmmc_exynos 13550000.dwmmc2: divratio: 3 map: 0x 0000ffc7\n[    2.107651] dwmmc_exynos 13550000.dwmmc2: sample_good: 0xffc7 best_sample: 0x0f\n[    2.107658] dwmmc_exynos 13550000.dwmmc2: CLKSEL = 0x03030000, EN_SHIFT = 0x00000000\n[    2.107668] mmc0: new ultra high speed SDR104 SDXC card at address 0001\n[    2.108053] Parameters for external-sdcard: min/max_ratio: 30/60 strictlimit: on nr_requests: 32 read_ahead_kb: 128\n[    2.108060] Parameters for external-sdcard: min/max_ratio: 30/60 strictlimit: on nr_requests: 32 read_ahead_kb: 128\n[    2.108067] mmcblk0: mmc0:0001 EC2QT 59.6 GiB \n[    2.109062]  mmcblk0: p1\n[    2.156105] regmap_device_register: name = rt5510.7-0034\n[    2.156155]  rt_regmap_rt5510.7-0034: rt register cache data init\n[    2.156164]  rt_regmap_rt5510.7-0034: cache cata init successfully\n[    2.156662] rt5510 7-0034: rt5510_i2c_probe--\n[    2.156900] s3c-i2c 13890000.i2c: Device s3c24xx_i2c_runtime_resume\n[    2.157041] invalid GPIO -2\n[    2.157058] ------------[ cut here ]------------\n[    2.157068] WARNING: CPU: 4 PID: 1 at drivers/gpio/gpiolib.c:112 gpio_to_desc+0x8c/0x9c\n[    2.157071] Modules linked in:\n[    2.157078] CPU: 4 PID: 1 Comm: swapper/0 Not tainted 4.14.113-gdc3f4130c14b-dirty #6\n[    2.157082] Hardware name: Samsung M21 SWA OPEN REV00 board based on Exynos9611 (DT)\n[    2.157086] Call trace:\n[    2.157093] [<0000000000000000>] dump_backtrace+0x0/0x194\n[    2.157100] [<0000000000000000>] show_stack+0x14/0x1c\n[    2.157107] [<0000000000000000>] __dump_stack+0x20/0x28\n[    2.157112] [<0000000000000000>] dump_stack+0x68/0x90\n[    2.157117] [<0000000000000000>] __warn+0xb0/0x110\n[    2.157123] [<0000000000000000>] report_bug+0xac/0xd8\n[    2.157127] [<0000000000000000>] bug_handler+0x2c/0x7c\n[    2.157133] [<0000000000000000>] brk_handler+0x64/0xa4\n[    2.157139] [<0000000000000000>] do_debug_exception+0xd0/0x168\n[    2.157144] Exception stack(0xffffff800a6cb840 to 0xffffff800a6cb980)\n[    2.157152] b840: 0000000000000000 00000000000001c0 0000000000000031 000000000000000a\n[    2.157158] b860: 000000000000000c 0000000000000001 ffffffc0117f6311 64696c61766e6920\n[    2.157165] b880: 958aa8b563c48f00 958aa8b563c48f00 0000000000000000 0000000000000000\n[    2.157171] b8a0: 0000000000000000 0000000000035b3c 0000000000000038 0000000000000082\n[    2.157177] b8c0: 0000000000000000 0000000000000001 00000000ffff0a01 00000000fffffffe\n[    2.157184] b8e0: ffffff80098fd360 ffffffc872544800 0000000000000000 ffffff80099faa08\n[    2.157191] b900: ffffffc872544a78 ffffff800985c938 ffffff8009a54000 ffffff8009358030\n[    2.157197] b920: ffffff8009358070 ffffff800a6cba80 ffffff800842e6e0 ffffff800a6cba80\n[    2.157204] b940: ffffff800842e6e4 0000000060400145 ffffff80098fd360 00000000fffffffe\n[    2.157210] b960: ffffffffffffffff 0000000000000000 ffffff800a6cba80 ffffff800842e6e4\n[    2.157214] [<0000000000000000>] el1_dbg+0x18/0xa4\n[    2.157219] [<0000000000000000>] gpio_to_desc+0x8c/0x9c\n[    2.157226] [<0000000000000000>] rt5665_i2c_probe+0x1a8/0xb2c\n[    2.157233] [<0000000000000000>] i2c_device_probe+0x1e8/0x224\n[    2.157240] [<0000000000000000>] driver_probe_device+0x24c/0x28c\n[    2.157245] [<0000000000000000>] __driver_attach+0x64/0x8c\n[    2.157251] [<0000000000000000>] bus_for_each_dev+0x64/0x90\n[    2.157257] [<0000000000000000>] driver_attach+0x20/0x28\n[    2.157262] [<0000000000000000>] bus_add_driver+0x104/0x1a8\n[    2.157267] [<0000000000000000>] driver_register+0x8c/0xd4\n[    2.157273] [<0000000000000000>] i2c_register_driver+0x40/0x70\n[    2.157280] [<0000000000000000>] rt5665_i2c_driver_init+0x18/0x20\n[    2.157284] [<0000000000000000>] do_one_initcall+0xfc/0x23c\n[    2.157289] [<0000000000000000>] kernel_init_freeable+0x18c/0x220\n[    2.157293] [<0000000000000000>] kernel_init+0x10/0xf8\n[    2.157297] [<0000000000000000>] ret_from_fork+0x10/0x18\n[    2.157304] ---[ end trace 275ded65205d99c7 ]---\n[    2.157308] rt5665_parse_dt: dtv_check gpio value: 0\n[    2.157313] invalid GPIO -2\n[    2.157324] ------------[ cut here ]------------\n[    2.157329] WARNING: CPU: 4 PID: 1 at drivers/gpio/gpiolib.c:112 gpio_to_desc+0x8c/0x9c\n[    2.157332] Modules linked in:\n[    2.157337] CPU: 4 PID: 1 Comm: swapper/0 Tainted: G        W       4.14.113-gdc3f4130c14b-dirty #6\n[    2.157341] Hardware name: Samsung M21 SWA OPEN REV00 board based on Exynos9611 (DT)\n[    2.157344] Call trace:\n[    2.157348] [<0000000000000000>] dump_backtrace+0x0/0x194\n[    2.157352] [<0000000000000000>] show_stack+0x14/0x1c\n[    2.157356] [<0000000000000000>] __dump_stack+0x20/0x28\n[    2.157360] [<0000000000000000>] dump_stack+0x68/0x90\n[    2.157365] [<0000000000000000>] __warn+0xb0/0x110\n[    2.157368] [<0000000000000000>] report_bug+0xac/0xd8\n[    2.157372] [<0000000000000000>] bug_handler+0x2c/0x7c\n[    2.157376] [<0000000000000000>] brk_handler+0x64/0xa4\n[    2.157380] [<0000000000000000>] do_debug_exception+0xd0/0x168\n[    2.157383] Exception stack(0xffffff800a6cb840 to 0xffffff800a6cb980)\n[    2.157390] b840: 0000000000000000 00000000000001c0 0000000000000031 000000000000000a\n[    2.157397] b860: 000000000000000c 0000000000000001 ffffffc0117f741f 64696c61766e6920\n[    2.157404] b880: 958aa8b563c48f00 958aa8b563c48f00 0000000000000000 0000000000000000\n[    2.157411] b8a0: 0000000000000000 0000000000036b94 0000000000000038 0000000000000082\n[    2.157418] b8c0: 0000000000000000 0000000000000001 00000000ffff0a01 00000000fffffffe\n[    2.157425] b8e0: ffffff80098fd360 ffffffc872544800 0000000000000000 ffffff80099faa08\n[    2.157432] b900: ffffffc872544a78 ffffff800985c938 ffffff8009a54000 ffffff8009358030\n[    2.157439] b920: ffffff8009358070 ffffff800a6cba80 ffffff800842e6e0 ffffff800a6cba80\n[    2.157446] b940: ffffff800842e6e4 0000000060400145 ffffff80098fd360 00000000fffffffe\n[    2.157453] b960: ffffffffffffffff 0000000000000000 ffffff800a6cba80 ffffff800842e6e4\n[    2.157457] [<0000000000000000>] el1_dbg+0x18/0xa4\n[    2.157461] [<0000000000000000>] gpio_to_desc+0x8c/0x9c\n[    2.157466] [<0000000000000000>] rt5665_i2c_probe+0x1cc/0xb2c\n[    2.157470] [<0000000000000000>] i2c_device_probe+0x1e8/0x224\n[    2.157474] [<0000000000000000>] driver_probe_device+0x24c/0x28c\n[    2.157478] [<0000000000000000>] __driver_attach+0x64/0x8c\n[    2.157482] [<0000000000000000>] bus_for_each_dev+0x64/0x90\n[    2.157486] [<0000000000000000>] driver_attach+0x20/0x28\n[    2.157490] [<0000000000000000>] bus_add_driver+0x104/0x1a8\n[    2.157494] [<0000000000000000>] driver_register+0x8c/0xd4\n[    2.157498] [<0000000000000000>] i2c_register_driver+0x40/0x70\n[    2.157502] [<0000000000000000>] rt5665_i2c_driver_init+0x18/0x20\n[    2.157506] [<0000000000000000>] do_one_initcall+0xfc/0x23c\n[    2.157510] [<0000000000000000>] kernel_init_freeable+0x18c/0x220\n[    2.157514] [<0000000000000000>] kernel_init+0x10/0xf8\n[    2.157518] [<0000000000000000>] ret_from_fork+0x10/0x18\n[    2.157521] ---[ end trace 275ded65205d99c8 ]---\n[    2.157528] rt5665_parse_dt: data from DT\n[    2.157531] rt5665_parse_dt: min=0,max=13 ==> gain=3\n[    2.157535] rt5665_parse_dt: min=14,max=25 ==> gain=1\n[    2.157538] rt5665_parse_dt: min=26,max=53 ==> gain=0\n[    2.157542] rt5665_parse_dt: min=54,max=103 ==> gain=0\n[    2.157545] rt5665_parse_dt: min=104,max=65535 ==> gain=0\n[    2.531267] rt5665 6-001b: no DMIC1\n[    2.538334] initcall rt5665_i2c_driver_init+0x0/0x20 returned 0 after 372508 usecs\n[    2.538704] samsung-abox-gic 14af1000.abox_gic: samsung_abox_gic_probe\n[    2.538921] samsung-abox-gic 14af1000.abox_gic: samsung_abox_gic_probe: probe complete\n[    2.539135] samsung-abox 14a50000.abox: Linked as a consumer to 14920000.sysmmu\n[    2.539141] samsung-abox 14a50000.abox: is owner of 14920000.sysmmu\n[    2.539162] samsung-abox 14a50000.abox: samsung_abox_probe\n[    2.539796] samsung-abox 14a50000.abox: Couldn't get pins (-19)\n[    2.544822] samsung-abox 14a50000.abox: dram firmware(0x00000008f9900000) is mapped on 000000005de43471 with size of 18874368\n[    2.544836] samsung-abox 14a50000.abox: abox_iommu_map(0x80000000, 0x00000008f9900000, 0x1200000, 000000005de43471)\n[    2.546917] samsung-abox 14a50000.abox: private: 0x00000008fab00000(0x800000) => 000000001e4a2908\n[    2.546933] samsung-abox 14a50000.abox: vss firmware(0x00000000f4900000) is mapped on 000000000757ad17 with size of 7340032\n[    2.546939] samsung-abox 14a50000.abox: abox_iommu_map(0xa0000000, 0x00000000f4900000, 0x700000, 0000000081d8522f)\n[    2.546947] samsung-abox 14a50000.abox: vss parameter(0x200000) alloc\n[    2.546953] samsung-abox 14a50000.abox: abox_iommu_map(0xa1000000, 0x00000000f5800000, 0x200000,           (null))\n[    2.546958] samsung-abox 14a50000.abox: abox_iommu_map: no virtual address\n[    2.546963] samsung-abox 14a50000.abox: abox_iommu_map(0x10000000, 0x0000000010000000, 0x1000,           (null))\n[    2.546971] samsung-abox 14a50000.abox: abox_iommu_map: no virtual address\n[    2.546977] samsung-abox 14a50000.abox: Fault handler is registered for 14920000.sysmmu\n[    2.547186] samsung-abox 14a50000.abox: bootargs[0x22e00][init=ab0x vss=1]\n[    2.547218] samsung-abox-gic 14af1000.abox_gic: abox_gic_register_irq_handler(0, abox_irq_handler)\n[    2.547224] samsung-abox-gic 14af1000.abox_gic: abox_gic_register_irq_handler(1, abox_irq_handler)\n[    2.547230] samsung-abox-gic 14af1000.abox_gic: abox_gic_register_irq_handler(2, abox_irq_handler)\n[    2.547235] samsung-abox-gic 14af1000.abox_gic: abox_gic_register_irq_handler(3, abox_irq_handler)\n[    2.547240] samsung-abox-gic 14af1000.abox_gic: abox_gic_register_irq_handler(4, abox_irq_handler)\n[    2.547245] samsung-abox-gic 14af1000.abox_gic: abox_gic_register_irq_handler(5, abox_irq_handler)\n[    2.547249] samsung-abox-gic 14af1000.abox_gic: abox_gic_register_irq_handler(6, abox_irq_handler)\n[    2.547254] samsung-abox-gic 14af1000.abox_gic: abox_gic_register_irq_handler(7, abox_irq_handler)\n[    2.547259] samsung-abox-gic 14af1000.abox_gic: abox_gic_register_irq_handler(8, abox_irq_handler)\n[    2.547263] samsung-abox-gic 14af1000.abox_gic: abox_gic_register_irq_handler(9, abox_irq_handler)\n[    2.547268] samsung-abox-gic 14af1000.abox_gic: abox_gic_register_irq_handler(10, abox_irq_handler)\n[    2.547273] samsung-abox-gic 14af1000.abox_gic: abox_gic_register_irq_handler(11, abox_irq_handler)\n[    2.547278] samsung-abox-gic 14af1000.abox_gic: abox_gic_register_irq_handler(12, abox_irq_handler)\n[    2.547283] samsung-abox-gic 14af1000.abox_gic: abox_gic_register_irq_handler(13, abox_irq_handler)\n[    2.547287] samsung-abox-gic 14af1000.abox_gic: abox_gic_register_irq_handler(14, abox_irq_handler)\n[    2.547292] samsung-abox-gic 14af1000.abox_gic: abox_gic_register_irq_handler(15, abox_irq_handler)\n[    2.547412] samsung-abox 14a50000.abox: abox_enable\n[    2.547419] samsung-abox 14a50000.abox: abox_request_cpu_gear(ab0cdefa, 1)\n[    2.547501] samsung-abox 14a50000.abox: audif clock: 24576000\n[    2.547507] samsung-abox 14a50000.abox: abox_cfg_gpio(default)\n[    2.547517] samsung-abox-gic 14af1000.abox_gic: abox_gic_init_gic\n[    2.547535] samsung-abox 14a50000.abox: abox_download_firmware\n[    2.547541] samsung-abox 14a50000.abox: SRAM firmware downloading is deferred\n[    2.547545] samsung-abox 14a50000.abox: abox_request_cpu_gear(ab0cdefa, 12)\n[    2.547586] samsung-abox 14a50000.abox: pm qos request aud: req=1929680640kHz ret=394000kHz\n[    2.547597] samsung-abox 14a50000.abox: Direct firmware load for calliope_sram.bin failed with error -2\n[    2.547602] samsung-abox 14a50000.abox: Falling back to user helper\n[    2.547695] samsung-abox 14a50000.abox: samsung_abox_probe: probe complete\n[    2.549877] samsung-abox-debug 0.abox_debug: dump buffer(0x00000000e9400000) is mapped on 0000000056b4e29f with size of 0x0000000002800000\n[    2.553340] samsung-abox-vss 0.abox_vss: magic_offset = 0x00600000\n[    2.553618] samsung-abox 14a50000.abox: abox_iommu_map(0x119d0000, 0x00000000119d0000, 0x1000,           (null))\n[    2.553634] samsung-abox 14a50000.abox: abox_iommu_map: no virtual address\n[    2.554034] Exynos9610-audio sound: exynos9610_audio_probe\n[    2.554082] Exynos9610-audio sound: xclkout is enabled\n[    2.555325] samsung-abox 14a50000.abox: abox_cmpnt_probe\n[    2.556621] samsung-abox 14a50000.abox: abox_iommu_map(0x93500000, 0x00000008fb300000, 0x28000, 00000000238806ab)\n[    2.556726] samsung-abox-if 14a50500.abox_uaif: abox_if_cmpnt_probe\n[    2.558564] samsung-abox-if 14a50510.abox_uaif: abox_if_cmpnt_probe\n[    2.558632] samsung-abox-if 14a50520.abox_uaif: abox_if_cmpnt_probe\n[    2.558697] rt5510 7-0034: rt5510_codec_probe++\n[    2.580138] rt5510 7-0034: last amp irq status = 0x60\n[    2.580670] rt5510-param rt5510-param.0: rt5510_param_probe: ++\n[    2.580677] rt5510-param rt5510-param.0: rt5510_param_probe: --\n[    2.580955] rt5510 7-0034: rt5510_codec_probe--\n[    2.581093] samsung-abox-if 14a50540.abox_uaif: abox_if_cmpnt_probe\n[    2.581173] samsung-abox-if 14a50550.abox_dsif: abox_if_cmpnt_probe\n[    2.581217] samsung-abox-if 14a50560.abox_spdy: abox_if_cmpnt_probe\n[    2.581867] samsung-abox 14a50000.abox: abox_iommu_map(0x91000000, 0x00000008fb340000, 0x20000, 00000000aa957fdd)\n[    2.581880] Exynos9610-audio sound: snd-soc-dummy-dai <-> RDMA0 mapping ok\n[    2.582000] samsung-abox 14a50000.abox: abox_iommu_map(0x91100000, 0x00000008fb360000, 0x20000, 00000000b303e483)\n[    2.582008] Exynos9610-audio sound: snd-soc-dummy-dai <-> RDMA1 mapping ok\n[    2.582187] samsung-abox 14a50000.abox: abox_iommu_map(0x91200000, 0x00000008fb380000, 0x20000, 00000000558d5cf8)\n[    2.582196] Exynos9610-audio sound: snd-soc-dummy-dai <-> RDMA2 mapping ok\n[    2.582586] Exynos9610-audio sound: snd-soc-dummy-dai <-> RDMA3 mapping ok\n[    2.582736] samsung-abox 14a50000.abox: abox_iommu_map(0x91400000, 0x00000008f9870000, 0x20000, 000000008f5218c7)\n[    2.582745] Exynos9610-audio sound: snd-soc-dummy-dai <-> RDMA4 mapping ok\n[    2.582779] compress asoc: snd-soc-dummy-dai <-> RDMA5 mapping ok\n[    2.582903] samsung-abox 14a50000.abox: abox_iommu_map(0x91600000, 0x00000008fb3a0000, 0x20000, 0000000074517f14)\n[    2.582912] Exynos9610-audio sound: snd-soc-dummy-dai <-> RDMA6 mapping ok\n[    2.583007] samsung-abox 14a50000.abox: abox_iommu_map(0x91700000, 0x00000008f9878000, 0x20000, 00000000d626119e)\n[    2.583023] Exynos9610-audio sound: snd-soc-dummy-dai <-> RDMA7 mapping ok\n[    2.583170] samsung-abox 14a50000.abox: abox_iommu_map(0x92000000, 0x00000008fb3c0000, 0x20000, 000000008c5b4ce5)\n[    2.583178] Exynos9610-audio sound: snd-soc-dummy-dai <-> WDMA0 mapping ok\n[    2.583528] Exynos9610-audio sound: snd-soc-dummy-dai <-> WDMA1 mapping ok\n[    2.583653] samsung-abox 14a50000.abox: abox_iommu_map(0x92200000, 0x00000008f98c8000, 0x20000, 00000000c89b873d)\n[    2.583669] Exynos9610-audio sound: snd-soc-dummy-dai <-> WDMA2 mapping ok\n[    2.583765] samsung-abox 14a50000.abox: abox_iommu_map(0x92300000, 0x00000008f98d0000, 0x20000, 00000000bd36d9e6)\n[    2.583773] Exynos9610-audio sound: snd-soc-dummy-dai <-> WDMA3 mapping ok\n[    2.583902] samsung-abox 14a50000.abox: abox_iommu_map(0x92400000, 0x00000008fb3e0000, 0x20000, 00000000eba92b2a)\n[    2.583909] Exynos9610-audio sound: snd-soc-dummy-dai <-> WDMA4 mapping ok\n[    2.583916] rt5665 6-001b: exynos9610_rt5665_codec_init\n[    2.590995] samsung-abox-if 14a50500.abox_uaif: abox_uaif_set_fmt(0x00004001)\n[    2.591067] Exynos9610-audio sound: rt5665-aif1_1 <-> UAIF0 mapping ok\n[    2.591075] samsung-abox-if 14a50510.abox_uaif: abox_uaif_set_fmt(0x00004001)\n[    2.591111] Exynos9610-audio sound: snd-soc-dummy-dai <-> UAIF1 mapping ok\n[    2.591117] samsung-abox-if 14a50520.abox_uaif: abox_uaif_set_fmt(0x00004001)\n[    2.591139] Exynos9610-audio sound: rt5510-aif <-> UAIF2 mapping ok\n[    2.591146] samsung-abox-if 14a50540.abox_uaif: abox_uaif_set_fmt(0x00001001)\n[    2.591166] Exynos9610-audio sound: snd-soc-dummy-dai <-> UAIF4 mapping ok\n[    2.591173] samsung-abox-if 14a50550.abox_dsif: abox_dsif_set_fmt(0x00004007)\n[    2.591192] Exynos9610-audio sound: snd-soc-dummy-dai <-> DSIF mapping ok\n[    2.591207] Exynos9610-audio sound: snd-soc-dummy-dai <-> SPDY mapping ok\n[    2.591225] Exynos9610-audio sound: snd-soc-dummy-dai <-> SIFS0 mapping ok\n[    2.591245] Exynos9610-audio sound: snd-soc-dummy-dai <-> SIFS1 mapping ok\n[    2.591261] Exynos9610-audio sound: snd-soc-dummy-dai <-> SIFS2 mapping ok\n[    2.591559] Exynos9610-audio sound: exynos9610_late_probe\n[    2.591646] samsung-abox-if 14a50500.abox_uaif: ASoC: unknown pin ABOX UAIF3 Capture\n[    2.591664] samsung-abox-if 14a50500.abox_uaif: ASoC: unknown pin ABOX UAIF3 Playback\n[    2.591677] samsung-abox-if 14a50540.abox_uaif: ASoC: unknown pin ABOX SIFS0 Capture\n[    2.591689] samsung-abox-if 14a50540.abox_uaif: ASoC: unknown pin ABOX SIFS0 Playback\n[    2.591701] samsung-abox-if 14a50560.abox_spdy: ASoC: unknown pin ABOX SIFS1 Capture\n[    2.591712] samsung-abox-if 14a50560.abox_spdy: ASoC: unknown pin ABOX SIFS1 Playback\n[    2.591729] samsung-abox-if 14a50520.abox_uaif: ASoC: unknown pin ABOX SPDY Capture\n[    2.591737] rt5665 6-001b: register_rt5665_jack_cb\n[    2.598766] input: Exynos9610-Audio Headset Jack as /devices/platform/sound/sound/card0/input2\n[    2.599152] Exynos9610-audio sound: exynos9610_mic_always_on\n[    2.599163] Exynos9610-audio sound: Invalid mic_always_on\n[    2.599168] Exynos9610-audio sound: exynos9610_audio_probe done\n[    2.599564] GACT probability NOT on\n[    2.599579] Mirror/redirect action on\n[    2.599586] u32 classifier\n[    2.599589]     Actions configured\n[    2.599596] Netfilter messages via NETLINK v0.30.\n[    2.599695] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    2.599781] ctnetlink v0.93: registering with nfnetlink.\n[    2.599913] xt_time: kernel timezone is -0000\n[    2.599962] gre: GRE over IPv4 demultiplexor driver\n[    2.599966] IPv4 over IPsec tunneling driver\n[    2.600177] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    2.602354] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    2.602871] Initializing XFRM netlink socket\n[    2.602897] IPsec XFRM device driver\n[    2.603030] NET: Registered protocol family 10\n[    2.604042] Segment Routing with IPv6\n[    2.604083] mip6: Mobile IPv6\n[    2.604095] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    2.604996] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    2.605314] NET: Registered protocol family 17\n[    2.605332] NET: Registered protocol family 15\n[    2.605351] l2tp_core: L2TP core driver, V2.0\n[    2.605358] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    2.605544] ncm: Network Context Metadata Module: initialized\n[    2.605722] decon: dpp(0) probe start..\n[    2.605727] decon: attributes = 0x50007\n[    2.605730] decon: AXI port = 0\n[    2.605734] decon: dpp restriction\n[    2.605743] decon: src_f_w[16 65534 1] src_f_h[16 8190 1]\n[    2.605747] decon: src_w[16 2560 1] src_h[16 3040 1] src_x_y_align[1 1]\n[    2.605751] decon: dst_f_w[16 8190 1] dst_f_h[16 8190 1]\n[    2.605755] decon: dst_w[16 2560 1] dst_h[16 3040 1] dst_x_y_align[1 1]\n[    2.605758] decon: blk_w[4 2560 1] blk_h[1 3040 1] blk_x_y_align[1 1]\n[    2.605761] decon: src_h_rot_max[2160]\n[    2.605765] decon: dma res: start(0x14884000), end(0x14884fff)\n[    2.605826] decon: dma common res: start(0x14880000), end(0x1488010f)\n[    2.605833] decon: dma irq no = 147\n[    2.605859] decon: res: start(0x14895000), end(0x14895fff)\n[    2.605867] decon: dpp irq no = 148\n[    2.605881] decon: dpp0 is probed successfully\n[    2.605919] decon: dpp(1) probe start..\n[    2.605923] decon: attributes = 0x500f6\n[    2.605926] decon: AXI port = 0\n[    2.605930] decon: src_f_w[16 65534 1] src_f_h[16 8190 1]\n[    2.605934] decon: src_w[16 2560 1] src_h[16 3040 1] src_x_y_align[1 1]\n[    2.605938] decon: dst_f_w[16 8190 1] dst_f_h[16 8190 1]\n[    2.605941] decon: dst_w[16 2560 1] dst_h[16 3040 1] dst_x_y_align[1 1]\n[    2.605945] decon: blk_w[4 2560 1] blk_h[1 3040 1] blk_x_y_align[1 1]\n[    2.605948] decon: src_h_rot_max[2160]\n[    2.605951] decon: dma res: start(0x14883000), end(0x14883fff)\n[    2.605957] decon: dma irq no = 149\n[    2.605972] decon: res: start(0x14896000), end(0x14896fff)\n[    2.605978] decon: dpp irq no = 150\n[    2.605990] decon: dpp1 is probed successfully\n[    2.606014] decon: dpp(2) probe start..\n[    2.606018] decon: attributes = 0x50006\n[    2.606022] decon: AXI port = 0\n[    2.606025] decon: src_f_w[16 65534 1] src_f_h[16 8190 1]\n[    2.606029] decon: src_w[16 2560 1] src_h[16 3040 1] src_x_y_align[1 1]\n[    2.606032] decon: dst_f_w[16 8190 1] dst_f_h[16 8190 1]\n[    2.606036] decon: dst_w[16 2560 1] dst_h[16 3040 1] dst_x_y_align[1 1]\n[    2.606040] decon: blk_w[4 2560 1] blk_h[1 3040 1] blk_x_y_align[1 1]\n[    2.606043] decon: src_h_rot_max[2160]\n[    2.606046] decon: dma res: start(0x14881000), end(0x14881fff)\n[    2.606219] decon: dma irq no = 151\n[    2.606233] decon: res: start(0x14891000), end(0x14891fff)\n[    2.606240] decon: dpp irq no = 152\n[    2.606253] decon: dpp2 is probed successfully\n[    2.606287] decon: dpp(3) probe start..\n[    2.606291] decon: attributes = 0x50006\n[    2.606294] decon: AXI port = 0\n[    2.606298] decon: src_f_w[16 65534 1] src_f_h[16 8190 1]\n[    2.606302] decon: src_w[16 2560 1] src_h[16 3040 1] src_x_y_align[1 1]\n[    2.606305] decon: dst_f_w[16 8190 1] dst_f_h[16 8190 1]\n[    2.606309] decon: dst_w[16 2560 1] dst_h[16 3040 1] dst_x_y_align[1 1]\n[    2.606313] decon: blk_w[4 2560 1] blk_h[1 3040 1] blk_x_y_align[1 1]\n[    2.606316] decon: src_h_rot_max[2160]\n[    2.606319] decon: dma res: start(0x14882000), end(0x14882fff)\n[    2.606326] decon: dma irq no = 153\n[    2.606341] decon: res: start(0x14892000), end(0x14892fff)\n[    2.606495] decon: dpp irq no = 154\n[    2.606508] decon: dpp3 is probed successfully\n[    2.606878] exynos-fimc-is-sensor 14400000.fimc_is_sensor: Linked as a consumer to 14550000.sysmmu\n[    2.606886] exynos-fimc-is-sensor 14400000.fimc_is_sensor: is owner of 14550000.sysmmu\n[    2.606913] skip camif sysreg mux default(S) value read (-22)\n[    2.607194] [@][0][CSI:D] fimc_is_csi_probe(0)\n[    2.607397] [@][VID] exynos-fimc-is-ss0(101) is created. minor(30)\n[    2.607509] [@][VID] exynos-fimc-is-ssinstancevc0(210) is created. minor(31)\n[    2.607685] [@][VID] exynos-fimc-is-ssinstancevc1(211) is created. minor(32)\n[    2.607852] [@][VID] exynos-fimc-is-ssinstancevc2(212) is created. minor(33)\n[    2.608058] [@][VID] exynos-fimc-is-ssinstancevc3(213) is created. minor(34)\n[    2.608068] [@][0][SEN:D] fimc_is_sensor_probe(0)\n[    2.608149] exynos-fimc-is-sensor 14410000.fimc_is_sensor: Linked as a consumer to 14550000.sysmmu\n[    2.608155] exynos-fimc-is-sensor 14410000.fimc_is_sensor: is owner of 14550000.sysmmu\n[    2.608180] skip camif sysreg mux default(S) value read (-22)\n[    2.608447] [@][1][CSI:D] fimc_is_csi_probe(0)\n[    2.608617] [@][VID] exynos-fimc-is-ss2(103) is created. minor(35)\n[    2.608731] [@][VID] exynos-fimc-is-ssinstancevc0(218) is created. minor(36)\n[    2.608959] [@][VID] exynos-fimc-is-ssinstancevc1(219) is created. minor(37)\n[    2.609116] [@][VID] exynos-fimc-is-ssinstancevc2(220) is created. minor(38)\n[    2.609177] [@][VID] exynos-fimc-is-ssinstancevc3(221) is created. minor(39)\n[    2.609185] [@][2][SEN:D] fimc_is_sensor_probe(0)\n[    2.609263] exynos-fimc-is-sensor 14420000.fimc_is_sensor: Linked as a consumer to 14550000.sysmmu\n[    2.609269] exynos-fimc-is-sensor 14420000.fimc_is_sensor: is owner of 14550000.sysmmu\n[    2.609483] [@][2][CSI:D] fimc_is_csi_probe(0)\n[    2.609657] [@][VID] exynos-fimc-is-ss1(102) is created. minor(40)\n[    2.609815] [@][VID] exynos-fimc-is-ssinstancevc0(214) is created. minor(41)\n[    2.609988] [@][VID] exynos-fimc-is-ssinstancevc1(215) is created. minor(42)\n[    2.610049] [@][VID] exynos-fimc-is-ssinstancevc2(216) is created. minor(43)\n[    2.610252] [@][VID] exynos-fimc-is-ssinstancevc3(217) is created. minor(44)\n[    2.610261] [@][1][SEN:D] fimc_is_sensor_probe(0)\n[    2.610337] exynos-fimc-is-sensor 14410700.fimc_is_sensor: Linked as a consumer to 14550000.sysmmu\n[    2.610343] exynos-fimc-is-sensor 14410700.fimc_is_sensor: is owner of 14550000.sysmmu\n[    2.610367] skip camif sysreg mux default(S) value read (-22)\n[    2.610563] [@][1][CSI:D] fimc_is_csi_probe(0)\n[    2.610631] [@][VID] exynos-fimc-is-ss3(104) is created. minor(45)\n[    2.610794] [@][VID] exynos-fimc-is-ssinstancevc0(222) is created. minor(46)\n[    2.611014] [@][VID] exynos-fimc-is-ssinstancevc1(223) is created. minor(47)\n[    2.611184] [@][VID] exynos-fimc-is-ssinstancevc2(224) is created. minor(48)\n[    2.611335] [@][VID] exynos-fimc-is-ssinstancevc3(225) is created. minor(49)\n[    2.611343] [@][3][SEN:D] fimc_is_sensor_probe(0)\n[    2.611424] exynos-fimc-is-sensor 14430000.fimc_is_sensor4: Linked as a consumer to 14550000.sysmmu\n[    2.611430] exynos-fimc-is-sensor 14430000.fimc_is_sensor4: is owner of 14550000.sysmmu\n[    2.611451] [@][ERR]fimc_is_sensor_parse_dt:336:id read is fail(-22)\n[    2.611455] [@][ERR]fimc_is_sensor_probe:1508:parsing device tree is fail(-22)\n[    2.611459] [@][-1][SEN:D] fimc_is_sensor_probe(-22)\n[    2.611467] exynos-fimc-is-sensor: probe of 14430000.fimc_is_sensor4 failed with error -22\n[    2.612845] ONTIME(parse_ontime): failed to parse ontime node\n[    2.612857] ONTIME(parse_ontime): failed to parse ontime node\n[    2.616848] registered taskstats version 1\n[    2.616884] FIPS : POST (SKC v2.1.1)\n[    2.619478] FIPS : self-tests for cbc(aes-generic) passed \n[    2.621757] FIPS : self-tests for ecb(aes-generic) passed \n[    2.626425] FIPS : self-tests for gcm_base(ctr(aes-generic),ghash-generic) passed \n[    2.628786] FIPS : self-tests for ecb(aes-ce) passed \n[    2.631324] FIPS : self-tests for cbc(aes-ce) passed \n[    2.636014] FIPS : self-tests for gcm_base(ctr(aes-ce),ghash-generic) passed \n[    2.636051] FIPS : self-tests for sha1-generic passed \n[    2.638414] FIPS : self-tests for hmac(sha1-generic) passed \n[    2.638438] FIPS : self-tests for sha1-ce passed \n[    2.640630] FIPS : self-tests for hmac(sha1-ce) passed \n[    2.640672] FIPS : self-tests for sha224-generic passed \n[    2.640697] FIPS : self-tests for sha256-generic passed \n[    2.642781] FIPS : self-tests for hmac(sha224-generic) passed \n[    2.644700] FIPS : self-tests for hmac(sha256-generic) passed \n[    2.644724] FIPS : self-tests for sha224-ce passed \n[    2.644737] FIPS : self-tests for sha256-ce passed \n[    2.646596] FIPS : self-tests for hmac(sha224-ce) passed \n[    2.648503] FIPS : self-tests for hmac(sha256-ce) passed \n[    2.648539] FIPS : self-tests for sha384-generic passed \n[    2.648564] FIPS : self-tests for sha512-generic passed \n[    2.650447] FIPS : self-tests for hmac(sha384-generic) passed \n[    2.652662] FIPS : self-tests for hmac(sha512-generic) passed \n[    2.652775] FIPS : self-tests for drbg_nopr_hmac_sha256 passed \n[    2.652878] FIPS : self-tests for drbg_pr_hmac_sha256 passed \n[    2.652914] FIPS : self-tests for kbkdf_hmac_sha512_ctr passed \n[    2.652921] FIPS : POST - Algorithm Tests Passed\n[    2.653096] FIPS : POST - Integrity Check Passed\n[    2.653100] FIPS : POST - CRYPTO API started in FIPS approved mode\n[    2.653412] exynos-dsim 148e0000.dsim: Linked as a consumer to 14820000.sysmmu\n[    2.653419] exynos-dsim 148e0000.dsim: is owner of 14820000.sysmmu\n[    2.653444] dsim: dsim(0) probe start..\n[    2.653509] dsim: failed to get extra phy. It's not mandatary.\n[    2.653517] dsim: dsim_get_gpios +\n[    2.653520] dsim: dsim_get_gpios -\n[    2.653553] dsim: command mode\n[    2.653557] dsim: LCD(/ea8076) resolution: xres(1080), yres(2340)\n[    2.653564] dsim: mic enabled (0)\n[    2.653568] dsim: dsc is disabled\n[    2.653571] dsim: using data lane count(4)\n[    2.653575] dsim: mres_en(0)\n[    2.653578] dsim: mres[0] cmd_underrun_lp_ref(2076)\n[    2.653582] dsim: noncontinuous_clklane(0)\n[    2.653586] dsim: update_min_w(1080) update_min_h(2)\n[    2.653589] dsim: hdr_num(0)\n[    2.653593] dsim: udr_max_num not found\n[    2.653611] dsim: res: start(0x148e0000), end(0x148e00ff)\n[    2.653686] dsim: no 2nd mem resource\n[    2.653690] dsim: no extra dphy resource\n[    2.653979] dsim: dsim idle_ip_index[49]\n[    2.653989] dsim: dsim_get_data_lanes: lanes(0x1f)\n[    2.653996] dsim: dsim-0 dsim_enable +\n[    2.654024] dsim: dsim0 PLL is stabled in bootloader, so skip DSIM link/DPHY init.\n[    2.654045] dsim: dsim-0 dsim_enable - (state:INIT -> ON)\n[    2.654059] exynos-dsim 148e0000.dsim: Fault handler is registered for 14820000.sysmmu\n[    2.654065] decon_board: 897: find_list: dsim_set_panel_power_enable is not exist, so create it\n[    2.654069] decon_board: 917: run_list: dsim_set_panel_power_enable is empty, so make list\n[    2.654642] decon_board: 637: of_find_recommend_lcd_info: /ea8076 is found\n[    2.654663] decon_board: 657: of_find_decon_board: decon_board property in /ea8076 has /decon_board_ea8076\n[    2.654687] decon_board: 580: decide_subinfo: idx: 1, type: gpio,high, subinfo: gpio_lcd_en_1p8\n[    2.654697] decon_board: 580: decide_subinfo: idx: 8, type: delay,usleep, subinfo: 1000\n[    2.654707] decon_board: 580: decide_subinfo: idx: 1, type: gpio,high, subinfo: gpio_lcd_en_3p0\n[    2.654712] decon_board: 580: decide_subinfo: idx: 8, type: delay,usleep, subinfo: 10000\n[    2.654717] decon_board: 326: dump_list: gpio: 2, regulator: 0, delay: 2, pinctrl: 0, timer: 0\n[    2.666917] lcd panel: + ea8076_probe\n[    2.667056] lcd panel: dsim_read_hl_data:  3( 3), 04, 90 50 43\n[    2.667063] lcd panel: ea8076_read_id: 905043\n[    2.667204] lcd panel: dsim_read_hl_data: 19(19), ea, 90 50 43 0b e6...\n[    2.667330] lcd panel: dsim_read_hl_data: 18(18), ef, 00 00 41 32 57...\n[    2.667394] lcd panel: dsim_read_hl_data:  6( 6), d1, 03 82 0d 9d 66...\n[    2.667530] lcd panel: dsim_read_hl_data: 46(46), b7, 01 53 28 4d 00...\n[    2.667548] lcd panel: elvss: 1990\n[    2.667557] lcd panel: acl: 3, brightness: 128, adaptive_control: 1\n[    2.667565] lcd panel: brightness: 128,  445, 2801bd, lx: -1\n[    2.667569] lcd panel: - ea8076_probe\n[    2.667590] lcd panel: lcd_init_svc: /devices/svc \n[    2.667607] mdnie_check_info: mdnie tune trans info as default\n[    2.667659] dpui_logging_register register type PANEL\n[    2.667693] mdnie mdnie: AUTO_UI\n[    2.667698] mdnie mdnie: registered successfully\n[    2.667701] dpui_logging_register register type PANEL\n[    2.667705] lcd panel: ea8076_register_notifier\n[    2.667709] lcd panel: ea8076_m31_lcd_ctrl.c: dsim_panel_probe: done\n[    2.667716] dsim: dsim0 driver(cmd mode) has been probed.\n[    2.668120] exynos-decon 148b0000.decon_f: decon_probe start\n[    2.668142] decon: decon0: max win4, command mode, hw trigger\n[    2.668146] decon: dsi mode(0). 0: SINGLE 1: DUAL\n[    2.668150] decon: out type(0). 0: DSI 1: DISPLAYPORT 2: HDMI 3: WB\n[    2.668153] decon: PPC(2)\n[    2.668158] decon: chip_ver 9610, dpp cnt 4, dsim cnt 2\n[    2.668162] decon: out idx(0). 0: DSI0 1: DSI1 2: DSI2\n[    2.668232] decon: power domain: pd-dispaud\n[    2.668640] decon: This board doesn't support TE GPIO of 2nd LCD\n[    2.668680] decon: decon_register_ext_irq: gpio(277)\n[    2.669435] decon: #512 event log buffers are allocated\n[    2.669752] decon: display supports hibernation mode\n[    2.669788] decon: lcd_info: hfp 2 hbp 2 hsa 2 vfp 3 vbp 15 vsa 1\n[    2.669792] decon: xres 1080 yres 2340\n[    2.669800] exynos-decon 148b0000.decon_f: allocating memory for display\n[    2.669806] exynos-decon 148b0000.decon_f: real_size=2527200 (1080.2340), virt_size=5054400 (1080.4680)\n[    2.669811] exynos-decon 148b0000.decon_f: want 20217856 bytes for window[0]\n[    2.677243] exynos-decon 148b0000.decon_f: alloated memory\n[    2.677254] exynos-decon 148b0000.decon_f: fb start addr = 0x10000000\n[    2.677260] decon: default_win 0 win_idx 0 xres 1080 yres 2340\n[    2.677266] decon: default_win 0 win_idx 1 xres 1080 yres 2340\n[    2.677270] decon: default_win 0 win_idx 2 xres 1080 yres 2340\n[    2.677273] decon: default_win 0 win_idx 3 xres 1080 yres 2340\n[    2.677862] decon: window update is enabled: win rectangle w(1080), h(16)\n[    2.677869] decon: horizontal count(1), vertical count(146)\n[    2.677873] decon: multi-resolution feature is disabled\n[    2.677877] decon: display doesn't support low persistence mode\n[    2.677881] decon: display doesn't support cursor async mode\n[    2.677902] [BTS] IDMA_TYPE(0) CH(2) Port(0)\n[    2.677906] [BTS] IDMA_TYPE(1) CH(3) Port(0)\n[    2.677909] [BTS] IDMA_TYPE(2) CH(0) Port(0)\n[    2.677913] [BTS] IDMA_TYPE(3) CH(1) Port(0)\n[    2.677916] [BTS] decon0 bts feature is enabled\n[    2.677936] exynos-decon 148b0000.decon_f: pm_stay_awake\n[    2.677948] decon: decon_reg_init already called by BOOTLOADER\n[    2.677958] decon: decon0 registered successfully\n[    2.687410] Found svc_sd : 0x0000000000000000 svc : 0x0000000000000000\n[    2.687419] Success to create sys/devices/svc/AP : 0x0000000000000000\n[    2.690572] EXYNOS-PD-DBG:  dbgdev-pd-cam's Runtime_Resume\n[    2.690585] EXYNOS-PD-DBG:  dbgdev-pd-cam's Runtime_Suspend\n[    2.690942] EXYNOS-PD-DBG:  dbgdev-pd-isp's Runtime_Resume\n[    2.690949] EXYNOS-PD-DBG:  dbgdev-pd-isp's Runtime_Suspend\n[    2.691320] EXYNOS-PD-DBG:  dbgdev-pd-vipx2's Runtime_Resume\n[    2.691327] EXYNOS-PD-DBG:  dbgdev-pd-vipx2's Runtime_Suspend\n[    2.691573] EXYNOS-PD-DBG:  dbgdev-pd-g2d's Runtime_Resume\n[    2.691579] EXYNOS-PD-DBG:  dbgdev-pd-g2d's Runtime_Suspend\n[    2.692549] EXYNOS-PD-DBG:  dbgdev-pd-g3d's Runtime_Resume\n[    2.692555] EXYNOS-PD-DBG:  dbgdev-pd-g3d's Runtime_Suspend\n[    2.693046] EXYNOS-PD-DBG:  dbgdev-pd-dispaud's Runtime_Resume\n[    2.693053] EXYNOS-PD-DBG:  dbgdev-pd-dispaud's Runtime_Suspend\n[    2.693222] EXYNOS-PD-DBG:  dbgdev-pd-mfc's Runtime_Resume\n[    2.693229] EXYNOS-PD-DBG:  dbgdev-pd-mfc's Runtime_Suspend\n[    2.693570] [MUIC] muic_notifier_register: listener=5 register\n[    2.693757] [muic-sm5713:sm5713_muic_probe]\n[    2.693763] [muic-sm5713:of_sm5713_muic_dt]\n[    2.693825] [muic-sm5713:of_sm5713_muic_dt] could not find muic sub-node np_muic\n[    2.693836] [muic-sm5713:sm5713_muic_probe] no muic dt! ret[-22]\n[    2.693844] muic_init_gpio_cb (27)\n[    2.693848] muic_init_gpio_cb: usb_path(PDA), uart_path(AP)\n[    2.693862] [muic-sm5713:sm5713_init_rev_info]\n[    2.694188] [muic-sm5713:sm5713_init_rev_info] vendor=0x1, ver=0x0, dev_id=0x1\n[    2.694192] [muic-sm5713:sm5713_muic_reg_init]\n[    2.697685] [muic-sm5713:sm5713_muic_reg_init] intmask1:0xff, intmask2:0xff, cntl:0x34, mansw:0x0\n[    2.697690] [muic-sm5713:sm5713_muic_reg_init] dev1:0x0, dev2:0x0, afccntl:0x0, afctxd:0x46\n[    2.697694] [muic-sm5713:sm5713_muic_reg_init] afcstatus:0x0, vbus1:0x0, vbus2:0x0\n[    2.697697] [muic-sm5713:sm5713_muic_reg_init] cfg1:0x1a, afccntl2=0x80\n[    2.697701] [muic-sm5713:sm5713_hv_muic_initialize]\n[    2.697705] [muic-sm5713:sm5713_muic_probe] AFC mode disabled\n[    2.697763] [MUIC] muic_notifier_register: listener=0 register\n[    2.697771] muic_handle_dock_notification: ignore(84)\n[    2.697774] [MUIC] muic_notifier_register: listener=9 register\n[    2.697778] muic_handle_cable_data_notification: MUIC uart type(0)\n[    2.697782] muic_init_switch_dev_cb: done\n[    2.697787] [muic-sm5713:sm5713_muic_irq_thread] irq_gpio(218), irq (-1), irq_num(-219)\n[    2.699442] [muic-sm5713:sm5713_muic_detect_dev] dev1:0x00, dev2:0x00, ctrl:0x34, ma:0x00, afcctrl:0x00, vbvolt:0x00\n[    2.699454] [muic-sm5713:sm5713_muic_handle_detach] attached_dev:84\n[    2.699459] [MUIC] muic_notifier_detach_attached_dev: (84)\n[    2.699463] [MUIC] muic_notifier_notify: CMD=0, DATA=84\n[    2.699468] muic_handle_cable_data_notification: MUIC uart type(0)\n[    2.699472] type-c manager: manager_handle_muic_notification: src:4 attach:0, cable_type:84\n[    2.699477] type-c manager: manager_handle_muic_notification: Cable(84) Detached \n[    2.699481] type-c manager: manager_event_work src:MUIC dest:BATTERY\n[    2.699499] muic_handle_dock_notification: ignore(84)\n[    2.699504] [MUIC] muic_notifier_notify: notify done(0x0)\n[    2.699509] [muic-sm5713:sm5713_muic_irq_thread] done\n[    2.699613] type-c manager: manager_notifier_notify: src:MUIC dest:BATTERY id:ID_ATTACH sub1:00 sub2:00 sub3:54\n[    2.699621] [GRIP] a96t3x6_ccic_handle_notification: (1) 4, 2, 01, 0000, 0000, 0054\n[    2.700049] [GRIP] a96t3x6_ccic_handle_notification: TA/USB is removed\n[    2.700054] type-c manager: manager_notifier_notify: notify done(0x0)\n[    2.721016] [muic-sm5713:sm5713_muic_irq_init] muic-dpdm_ovp(218), muic-vbus_rid_detach(219), muic-autovbus_check(220), muic-rid_detect(221)\n[    2.721028] [muic-sm5713:sm5713_muic_irq_init] muic-chgtype_attach(222), muic-dectimeout(223), muic-afc_error(224), muic-afc_sta_chg(225)\n[    2.721034] [muic-sm5713:sm5713_muic_irq_init] muic-multi_byte(226), muic-vbus_update(227), muic-afc_accepted(228), muic-afc_ta_attached(229)\n[    2.721038] vbus_notifier_register: listener=3 register\n[    2.721043] sm5713_muic_register_ccic_notifier: Registering CCIC_NOTIFY_DEV_MUIC.\n[    2.721047] sm5713_muic_init_ccic_info_data\n[    2.721051] type-c manager: manager_notifier_register: listener=28 register\n[    2.721055] ccic_notifier_init\n[    2.721058] ccic_notifier_init already registered\n[    2.721067] sm5713_muic_register_ccic_notifier: done.\n[    2.721426] sec-thermistor sec_thermistor@0: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    2.721457] sec-thermistor sec_thermistor@0: sec-ap-thermistor successfully probed.\n[    2.721634] sec-thermistor sec_thermistor@6: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    2.721660] sec-thermistor sec_thermistor@6: sec-wf-thermistor successfully probed.\n[    2.721906] wlbt: client_module_probe: mx140:\n[    2.721917] wlbt: client_module_probe: OK\n[    2.722135] wlbt: scsc_fm_client_module_init: init\n[    2.722143] wlbt: fm_client_module_probe: probe\n[    2.722505] s3c-i2c 13830000.i2c: Device s3c24xx_i2c_runtime_resume\n[    2.722646] sm5713_usbpd_probe start\n[    2.722651] of_sm5713_ccic_dt\n[    2.722659] of_sm5713_ccic_dt irq_gpio = 25\n[    2.723283] sm5713_usbpd_init_counters: init counter\n[    2.723290] usbpd-sm5713 0-0033: sm5713_usbpd_init_policy policy state = 0\n[    2.723294] sm5713_usbpd_manager_init\n[    2.723391] sm5713_usbpd_reg_init\n[    2.724359] sm5713_check_cc_state, cc state : 0x2\n[    2.726259] ccic_core_register_chip\n[    2.726440] ccic_misc_init - register success\n[    2.726473]  : success typec_register_port port=00000000de895436\n[    2.726477] sm5713_usbpd_irq_init\n[    2.726705] wake enabled for irq 278\n[    2.727055] usbpd-sm5713 0-0033: sm5713_ccic_irq_thread, irq = -1\n[    2.727764] usbpd-sm5713 0-0033: sm5713_poll_status: INT[0x92 0x0 0x10 0x0 0x0], STATUS[0x96 0x20 0x10 0x0 0x0]\n[    2.727770] sm5713_set_vconn_source, not support vconn source\n[    2.727780] usbpd-sm5713 0-0033: sm5713_get_status: status_reg = (1000000)\n[    2.727783] sm5713_ccic_irq_thread PLUG_DETACHED ---\n[    2.727788] usbpd-sm5713 0-0033: ccstat : cc_No_Connection\n[    2.727791] usb_notify: is_blocked otg_notify is null\n[    2.727797] sm5713_vbus_turn_on_ctrl : enable=0, must_block_host=0\n[    2.727800] sm5713_vbus_turn_on_ctrl : enable=0\n[    2.727809] sm5713-charger sm5713-charger: sm5713_otg_set_property: OTG OFF\n[    2.727813] otg accessory power = 0\n[    2.727816] sm5713_usbpd_init_counters: init counter\n[    2.727820] usbpd-sm5713 0-0033: sm5713_usbpd_init_policy policy state = 0\n[    2.728235] sm5713_set_vconn_source, not support vconn source\n[    2.728244] usbpd-sm5713 0-0033: sm5713_usbpd_policy_reset DETACHED\n[    2.728248] sm5713_ccic_event_work : usb: DIAES 4-1-0-0-0\n[    2.728257] sm5713_ccic_event_work : usb: DIAES 4-2-7-0-0\n[    2.728263] sm5713_ccic_event_notifier, dest=MUIC, id=ID_ATTACH, attach=0, event=0, event_work=000000003764836c\n[    2.728267] sm5713_ccic_event_work : usb: DIAES 1-3-0-0-0\n[    2.728271] sm5713_ccic_event_work : typec_power_role=0 typec_data_role=0, event=0\n[    2.728276] ccic_notifier_notify: src:5 dest:4 id:01\tattach:00 cable_type:00 rprd:0\n[    2.728279] sm5713_ccic_event_work : detach case\n[    2.728282] type-c manager: manager_handle_ccic_notification: src:CCIC dest:MUIC id:ID_ATTACH attach/rid:0\n[    2.728287] type-c manager: manager_handle_ccic_notification: CCIC_NOTIFY_DETACH (pd=0, cable_type=0)\n[    2.728290] sm5713_rprd_mode_change : mode=0x3\n[    2.728293] type-c manager: manager_event_work src:CCIC dest:MUIC\n[    2.728298] ccic_notifier_notify: notify done(0x0)\n[    2.728303] type-c manager: manager_muic_event_notifier: id:ID_ATTACH sub1:00 sub2:00 sub3:00\n[    2.728308] sm5713_muic_handle_ccic_notification: action:1 src:5 dest:4 id:1 sub[0 0 0]\n[    2.728312] sm5713_muic_handle_ccic_notification: CCIC_NOTIFY_ID_ATTACH: Detached\n[    2.728316] sm5713_muic_handle_ccic_ATTACH: src:5 dest:4 id:1 attach:0 cable_type:0 rprd:0\n[    2.728320] sm5713_muic_handle_ccic_detach\n[    2.728323] type-c manager: manager_muic_event_notifier: notify done(0x0)\n[    2.728328] sm5713_ccic_event_notifier, dest=MUIC, id=ID_RID, attach=7, event=0, event_work=000000000903f3a6\n[    2.728332] ccic_notifier_notify: src:5 dest:4 id:02 rid:07\n[    2.728335] type-c manager: manager_handle_ccic_notification: src:CCIC dest:MUIC id:ID_RID attach/rid:7\n[    2.728339] type-c manager: manager_event_work src:CCIC dest:MUIC\n[    2.728343] ccic_notifier_notify: notify done(0x0)\n[    2.728347] type-c manager: manager_muic_event_notifier: id:ID_RID sub1:07 sub2:00 sub3:00\n[    2.728351] sm5713_muic_handle_ccic_notification: action:2 src:5 dest:4 id:2 sub[7 0 0]\n[    2.728354] sm5713_muic_handle_ccic_notification: CCIC_NOTIFY_ID_RID\n[    2.728357] sm5713_muic_handle_ccic_RID: src:5 dest:4 id:2 rid:7 sub2:0 sub3:0\n[    2.728361] type-c manager: manager_muic_event_notifier: notify done(0x0)\n[    2.728365] sm5713_ccic_event_notifier, dest=USB, id=ID_USB, attach=Detached, drp=USB_DETACH, event_work=00000000c2d143b4\n[    2.728369] ccic_notifier_notify: src:5 dest:1 id:03\tsub1:0 sub2:00 sub3:00\n[    2.728373] type-c manager: manager_handle_ccic_notification: src:CCIC dest:USB id:ID_USB attach/rid:0\n[    2.728377] type-c manager: manager_event_work src:CCIC dest:USB\n[    2.728385] ccic_notifier_notify: notify done(0x0)\n[    2.728390] type-c manager: manager_notifier_notify: src:CCIC dest:USB id:ID_USB sub1:00 sub2:00 sub3:00\n[    2.730988] sm5713_usbpd_acc_detach: acc_type 0\n[    2.731242] usb_notify: usb_external_notify_register: listener=(pdic)2 register\n[    2.731248] sm5713_usbpd_probe : external notifier register done!\n[    2.731252] sm5713_usbpd_probe : sm5713 usbpd driver uploaded!\n[    2.731340] type-c manager: manager_notifier_init\n[    2.731344] ccic_notifier_init\n[    2.731348] ccic_notifier_init already registered\n[    2.731358] type-c manager: manager_notifier_init already registered\n[    2.731583] usb_notifier: of_get_usb_redriver_dt: usb30_redriver_en: Invalied gpio pins\n[    2.731589] usb_notifier: of_get_usb_redriver_dt, gpios_redriver_en -2\n[    2.731593] usb_notifier: of_get_usb_redriver_dt, can_disable_usb 1\n[    2.731597] usb_notifier: of_get_usb_redriver_dt - get hs_vdd error\n[    2.731602] usb_notifier: of_get_usb_redriver_dt - get ss_vdd error\n[    2.731607] usb_notifier: of_get_usb_redriver_dt - get dp_vdd error\n[    2.731613] usb_notifier: of_get_usb_redriver_dt, usb_ldocontrol 0\n[    2.731616] usb_notifier: of_get_usb_redriver_dt, host_wake_lock_enable 0 ,device_wake_lock_enable 1\n[    2.731620] usb_notify: registered otg_notify +\n[    2.731784] vbus_notifier_handle: (0)->(1)\n[    2.731789] vbus_notifier_notify: CMD=1, DATA=1\n[    2.731795] type-c manager: manager_handle_vbus_notification: cmd=1, vbus_type=LOW, WATER DET=0 ATTACH=DETACH (0)\n[    2.731798] usb_notify: ovc_init\n[    2.731803] vbus_notifier_notify: notify done(0x0)\n[    2.731868] usb_notify: register_usblog_proc already registered\n[    2.731877] usb_notify: registered otg_notify -\n[    2.731881] type-c manager: manager_notifier_register: listener=27 register\n[    2.731884] ccic_notifier_init\n[    2.731887] ccic_notifier_init already registered\n[    2.731894] type-c manager: manager_notifier_register: [USB] drp:USB_DETACH \n[    2.731898] usb_notifier: ccic_usb_handle_notification: Turn Off Device(UFP)\n[    2.731902] usb_notify: send_otg_notify event=vbus(1) enable=0\n[    2.731905] usb_notify: send_otg_notify reserve event\n[    2.731908] type-c manager: manager_set_alternate_mode : listener 27\n[    2.731912] type-c manager: there is no set_enable_alternate_mode\n[    2.731917] [MUIC] muic_notifier_register: listener=2 register\n[    2.731921] usb_notifier: muic_usb_handle_notification action=0, attached_dev=0\n[    2.731925] vbus_notifier_register: listener=0 register\n[    2.731928] usb_notifier: vbus_handle_notification cmd=1, vbus_type=LOW\n[    2.731931] usb_notify: send_otg_notify event=vbus_power(25) enable=0\n[    2.731935] usb_notify: extra_notifier_callback event=vbus_power(25)\n[    2.731939] usb_notify: extra_notify_state+ event=vbus_power(25), enable=off\n[    2.731943] usb_notify: extra_notify_state- event=vbus_power(25), cable=none\n[    2.731949] usb_notifier usb_notifier: usb notifier probe\n[    2.732580] input: gpio_keys as /devices/platform/gpio_keys/input/input3\n[    2.732590] [sec_input] gpio_keys_gpio_report_event: 114 (0)\n[    2.732599] [sec_input] gpio_keys_gpio_report_event: 115 (0)\n[    2.732604] [sec_input] gpio_keys_gpio_report_event: 116 (0)\n[    2.732875] mms_init\n[    2.732918] s3c-i2c 13870000.i2c: Device s3c24xx_i2c_runtime_resume\n[    2.733032] mss_ts 4-0048: [sec_input] mms_probe [START]\n[    2.733048] mss_ts 4-0048: [sec_input] mms_parse_devicetree [START]\n[    2.733079] mss_ts 4-0048: [sec_input] Failed to get regulator_avdd name property\n[    2.733089] mss_ts 4-0048: [sec_input] mms_parse_devicetree: display_resolution is not set. set to same as max_coords\n[    2.733101] mss_ts 4-0048: [sec_input] mms_parse_devicetree : max_x:4095, max_y:4095, display:4095,4095, node_x:15, node_y:32, node_key:0, event_format:8, event_size:12/0\n[    2.733109] mss_ts 4-0048: [sec_input] Failed to get fod_info\n[    2.733115] mss_ts 4-0048: [sec_input] mms_parse_devicetree : fod_tx:0, fod_rx:0, fod_vi_size:0\n[    2.733123] mss_ts 4-0048: [sec_input] Failed to get fw_name property\n[    2.733137] mss_ts 4-0048: [sec_input] Failed to get zone's size\n[    2.733143] mss_ts 4-0048: [sec_input] mms_parse_devicetree : zone's size - indicator:133, navigation:266, edge:341\n[    2.733150] mss_ts 4-0048: [sec_input] mms_parse_devicetree: fw_name tsp_melfas/mss100_m21.fw int:6 irq:282 support_LPM:1 AOT:1 FOD:0 ED:1 ProTos:0\n[    2.733245] input: sec_touchscreen as /devices/platform/13870000.i2c/i2c-4/4-0048/input/input4\n[    2.733557] input: sec_touchproximity as /devices/platform/13870000.i2c/i2c-4/4-0048/input/input5\n[    2.733707] mss_ts 4-0048: [sec_input] mms_power_control [START on]\n[    2.733782] mss_ts 4-0048: [sec_input] mms_power_control [DONE on]\n[    2.733789] mss_ts 4-0048: [sec_input] mms_fw_update_from_kernel [START]\n[    2.733797] mss_ts 4-0048: [sec_input] mms_clear_input\n[    2.734678] mss_ts 4-0048: [sec_input] mms_get_fw_version: boot:ee.ee core:1.3 30.13 version:1.21\n[    2.734743] mss_ts 4-0048: [sec_input] mip4_ts_flash_fw - Firmware binary version [EEEE 0103 3013 0121]\n[    2.735611] mss_ts 4-0048: [sec_input] mms_get_fw_version: boot:ee.ee core:1.3 30.13 version:1.21\n[    2.735629] mss_ts 4-0048: [sec_input] mip4_ts_flash_fw - Chip firmware version [EEEE 0103 3013 0121]\n[    2.735638] mss_ts 4-0048: [sec_input] mip4_ts_flash_fw - Chip firmware is already up-to-date\n[    2.735650] mss_ts 4-0048: [sec_input] mip4_ts_flash_fw [ERROR]\n[    2.735667] mss_ts 4-0048: [sec_input] mms_fw_update_from_kernel [DONE]\n[    2.736921] mss_ts 4-0048: [sec_input] mms_init_config - product_name[2019-M30]\n[    2.737742] mss_ts 4-0048: [sec_input] mms_get_fw_version: boot:ee.ee core:1.3 30.13 version:1.21\n[    2.737758] mss_ts 4-0048: [sec_input] mms_init_config - max_x[4095] max_y[4095]\n[    2.737766] mss_ts 4-0048: [sec_input] mms_init_config - node_x[15] node_y[32] node_key[0]\n[    2.737773] mss_ts 4-0048: [sec_input] mms_init_config event_format[8] event_size[12] event_size_type[0]\n[    2.737780] mss_ts 4-0048: [sec_input] mms_init_config fod_tx[0] fod_rx[0] fod_vi_size[0]\n[    2.737812] vbus_notifier_register: listener=1 register\n[    2.737819] mss_ts 4-0048: [sec_input] mms_vbus_notification cmd=1, vbus_type=1\n[    2.737824] mss_ts 4-0048: [sec_input] mms_vbus_notification : detach\n[    2.737831] mss_ts 4-0048: [sec_input] mms_vbus_notification tsp disabled\n[    2.738195] mss_ts 4-0048: [sec_input] mms_reinit: start reinit\n[    2.738204] mss_ts 4-0048: [sec_input] set_grip_data_to_ic: flag: 01 (clr,lan,nor,edg,han)\n[    2.738604] mss_ts 4-0048: [sec_input] set_grip_data_to_ic: 0x4B 00,00,00,00\n[    2.738612] mss_ts 4-0048: [sec_input] mms_reinit: done reinit\n[    2.738618] mss_ts 4-0048: [sec_input] mms_enable [DONE]\n[    2.738715] mss_ts 4-0048: [sec_input] MELFAS MSS100 Touchscreen is initialized successfully\n[    2.738866] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00000 fn:0000/0000 // v:0121 cal:NOCAL // 0 0\n[    2.740100] s2mpu09-rtc s2mpu09-rtc: s2m_rtc_read_time: 2021-07-24 18:54:03(0x40)PM\n[    2.740226] s2mpu09-rtc s2mpu09-rtc: setting system clock to 2021-07-24 18:54:03 UTC (1627152843)\n[    2.740535] sensor_module_gm2_probe use_pdaf(1)\n[    2.740568] flash_first_gpio: no property in the node.\n[    2.740572] flash_second_gpio: no property in the node.\n[    2.740580] FIMC-IS-SENSOR-MODULE-GM2 fimc-fimc_is_module_gm2@5A: sensor_gm2_power_setpin E v4\n[    2.740630] FIMC-IS-SENSOR-MODULE-GM2 fimc-fimc_is_module_gm2@5A: sensor_gm2_power_setpin X v4\n[    2.740692] internal vc(2), type(2), offset(1)\n[    2.740696] internal vc(3), type(4), offset(1)\n[    2.740699] [WRN]sensor_module_type read is skipped(-22)\n[    2.740709] sensor_module_gm2_probe(0)\n[    2.741059] i2c_ch dt parsing skipped\n[    2.741065] i2c_addr dt parsing skipped\n[    2.741073] FIMC-IS-SENSOR-MODULE-4HA fimc-is_sensor_4ha@5A: sensor_module_4ha_power_setpin E v4\n[    2.741078] FIMC-IS-SENSOR-MODULE-4HA fimc-is_sensor_4ha@5A: sensor_module_4ha_power_setpin : This is module without actuator \n[    2.741117] FIMC-IS-SENSOR-MODULE-4HA fimc-is_sensor_4ha@5A: failed to get gpio_cam_core_en\n[    2.741127] FIMC-IS-SENSOR-MODULE-4HA fimc-is_sensor_4ha@5A: failed to get gpio_camio_1p8_en\n[    2.741136] FIMC-IS-SENSOR-MODULE-4HA fimc-is_sensor_4ha@5A: sensor_module_4ha_power_setpin X v4\n[    2.741197] [WRN]sensor_module_type read is skipped(-22)\n[    2.741201] sensor_module_4ha_probe pdta->id(3), module_enum id = 0\n[    2.741209] sensor_module_4ha_probe done\n[    2.741534] i2c_ch dt parsing skipped\n[    2.741540] i2c_addr dt parsing skipped\n[    2.741549] FIMC-IS-SENSOR-MODULE-GC5035 fimc-is_sensor_gc5035@6E: module_gc5035_power_setpin E v4\n[    2.741577] FIMC-IS-SENSOR-MODULE-GC5035 fimc-is_sensor_gc5035@6E: CAM_VLDO3 is PIN_REGULATOR\n[    2.741582] FIMC-IS-SENSOR-MODULE-GC5035 fimc-is_sensor_gc5035@6E: CAM_VLDO7 is PIN_REGULATOR\n[    2.741586] FIMC-IS-SENSOR-MODULE-GC5035 fimc-is_sensor_gc5035@6E: vdd_ldo44 is PIN_REGULATOR\n[    2.741592] FIMC-IS-SENSOR-MODULE-GC5035 fimc-is_sensor_gc5035@6E: module_gc5035_power_setpin X v4\n[    2.741651] [WRN]sensor_module_type read is skipped(-22)\n[    2.741655] sensor_module_gc5035_probe pdta->id(2), module_enum id = 0\n[    2.741988] sensor_module_hi2021q_probe use_pdaf(0)\n[    2.742019] i2c_addr dt parsing skipped\n[    2.742027] FIMC-IS-SENSOR-MODULE-HI2021Q fimc-is_sensor_hi2021q@20: sensor_hi2021q_power_setpin E v4\n[    2.742065] FIMC-IS-SENSOR-MODULE-HI2021Q fimc-is_sensor_hi2021q@20: CAM_VLDO5 is PIN_REGULATOR\n[    2.742075] FIMC-IS-SENSOR-MODULE-HI2021Q fimc-is_sensor_hi2021q@20: sensor_hi2021q_power_setpin X v4\n[    2.742133] [WRN]sensor_module_type read is skipped(-22)\n[    2.742142] sensor_module_hi2021q_probe(0)\n[    2.742478] s610-radio 14ac0000.fm: >>> start FM Radio probe\n[    2.742576] s610-radio 14ac0000.fm: clock mux_aud_fm: 26000000\n[    2.742583] s610-radio 14ac0000.fm: clock qch_fm: 26000000\n[    2.742593] s610-radio 14ac0000.fm: clock clk_aud_fm: 40000\n[    2.742785] s610-radio 14ac0000.fm: (s610_radio_probe) Enable elna_gpio control :0\n[    2.743261] s610-radio 14ac0000.fm: iClk Aux: 1\n[    2.743269] s610-radio 14ac0000.fm: volume select num: 16\n[    2.743274] s610-radio 14ac0000.fm: volume -3dB: 0\n[    2.743278] s610-radio 14ac0000.fm: rssi_est_on: 0\n[    2.743283] s610-radio 14ac0000.fm: sw_mute_weak: 0\n[    2.743287] s610-radio 14ac0000.fm: without eLNA: 0\n[    2.743291] s610-radio 14ac0000.fm: rssi adjust: 0\n[    2.743296] s610-radio 14ac0000.fm: end FM probe.\n[    2.743542] exynos_ufc: Initialize ufc table for Domain 0\n[    2.743551] exynos_ufc: Complete to initialize domain0\n[    2.743557] exynos_ufc: Initialize ufc table for Domain 1\n[    2.743562] exynos_ufc: Register UFC Type-0 for Domain 1 \n[    2.743565] exynos_ufc: Master_freq : 2314000 kHz - limit_freq : 1742000 kHz\n[    2.743569] exynos_ufc: Master_freq : 2210000 kHz - limit_freq : 806000 kHz\n[    2.743572] exynos_ufc: Master_freq : 2184000 kHz - limit_freq : 806000 kHz\n[    2.743575] exynos_ufc: Master_freq : 2080000 kHz - limit_freq : 806000 kHz\n[    2.743578] exynos_ufc: Master_freq : 1976000 kHz - limit_freq : 806000 kHz\n[    2.743581] exynos_ufc: Master_freq : 1898000 kHz - limit_freq : 806000 kHz\n[    2.743584] exynos_ufc: Master_freq : 1768000 kHz - limit_freq : 806000 kHz\n[    2.743587] exynos_ufc: Master_freq : 1664000 kHz - limit_freq : 806000 kHz\n[    2.743590] exynos_ufc: Master_freq : 1508000 kHz - limit_freq : 806000 kHz\n[    2.743593] exynos_ufc: Master_freq : 1456000 kHz - limit_freq : 806000 kHz\n[    2.743596] exynos_ufc: Master_freq : 1352000 kHz - limit_freq : 806000 kHz\n[    2.743599] exynos_ufc: Master_freq : 1248000 kHz - limit_freq : 806000 kHz\n[    2.743602] exynos_ufc: Master_freq : 1144000 kHz - limit_freq : 806000 kHz\n[    2.743606] exynos_ufc: Master_freq : 1040000 kHz - limit_freq : 806000 kHz\n[    2.743609] exynos_ufc: Master_freq : 936000 kHz - limit_freq : 806000 kHz\n[    2.743613] exynos_ufc: Register UFC Type-2 for Domain 1 \n[    2.743616] exynos_ufc: Master_freq : 2314000 kHz - limit_freq : 1742000 kHz\n[    2.743620] exynos_ufc: Master_freq : 2210000 kHz - limit_freq : 1742000 kHz\n[    2.743623] exynos_ufc: Master_freq : 2184000 kHz - limit_freq : 1742000 kHz\n[    2.743627] exynos_ufc: Master_freq : 2080000 kHz - limit_freq : 1742000 kHz\n[    2.743631] exynos_ufc: Master_freq : 1976000 kHz - limit_freq : 1742000 kHz\n[    2.743634] exynos_ufc: Master_freq : 1898000 kHz - limit_freq : 1638000 kHz\n[    2.743637] exynos_ufc: Master_freq : 1768000 kHz - limit_freq : 1638000 kHz\n[    2.743640] exynos_ufc: Master_freq : 1664000 kHz - limit_freq : 1534000 kHz\n[    2.743643] exynos_ufc: Master_freq : 1508000 kHz - limit_freq : 1534000 kHz\n[    2.743646] exynos_ufc: Master_freq : 1456000 kHz - limit_freq : 1456000 kHz\n[    2.743650] exynos_ufc: Master_freq : 1352000 kHz - limit_freq : 1326000 kHz\n[    2.743654] exynos_ufc: Master_freq : 1248000 kHz - limit_freq : 1222000 kHz\n[    2.743657] exynos_ufc: Master_freq : 1144000 kHz - limit_freq : 1222000 kHz\n[    2.743660] exynos_ufc: Master_freq : 1040000 kHz - limit_freq : 1118000 kHz\n[    2.743663] exynos_ufc: Master_freq : 936000 kHz - limit_freq : 1053000 kHz\n[    2.743668] exynos_ufc: Complete to initialize domain1\n[    2.743707] exynos_ufc: Initialized Exynos UFC(User-Frequency-Ctrl) driver\n[    2.743884] exynos-fmp fmp: Exynos FMP Version: 2.0.0\n[    2.760518] exynos-fmp fmp: FIPS: self-tests for FMP aes-xts passed\n[    2.762731] exynos-fmp fmp: FIPS: self-tests for FMP aes-cbc passed\n[    2.762746] exynos-fmp fmp: FIPS: self-tests for FMP sha256 passed\n[    2.762790] exynos-fmp fmp: FIPS: self-tests for UFSFMP hmac(sha256) passed\n[    2.762795] exynos-fmp fmp: exynos_fmp_fips_init: self-tests for FMP passed\n[    2.763248] FIPS(do_fmp_integrity_check): Integrity Check Passed\n[    2.763252] exynos-fmp fmp: exynos_fmp_fips_init: integrity check for FMP passed\n[    2.763338] exynos-fmp fmp: Exynos FMP driver is initialized\n[    2.763949] exynos-fmp fmp: Exynos FMP driver is registered to diskcipher\n[    2.764570] sec-battery battery: sec_battery_probe: SEC Battery Driver Loading\n[    2.764716] sec_bat_parse_dt : CABLE_NUM(0) INPUT(1800) CHARGING(2100)\n[    2.764720] sec_bat_parse_dt : CABLE_NUM(1) INPUT(475) CHARGING(550)\n[    2.764724] sec_bat_parse_dt : CABLE_NUM(2) INPUT(500) CHARGING(500)\n[    2.764728] sec_bat_parse_dt : CABLE_NUM(3) INPUT(1800) CHARGING(2100)\n[    2.764731] sec_bat_parse_dt : CABLE_NUM(4) INPUT(475) CHARGING(550)\n[    2.764734] sec_bat_parse_dt : CABLE_NUM(5) INPUT(1500) CHARGING(1500)\n[    2.764738] sec_bat_parse_dt : CABLE_NUM(6) INPUT(1650) CHARGING(2350)\n[    2.764741] sec_bat_parse_dt : CABLE_NUM(7) INPUT(1650) CHARGING(2350)\n[    2.764744] sec_bat_parse_dt : CABLE_NUM(8) INPUT(1650) CHARGING(2350)\n[    2.764747] sec_bat_parse_dt : CABLE_NUM(9) INPUT(1650) CHARGING(2350)\n[    2.764750] sec_bat_parse_dt : CABLE_NUM(10) INPUT(820) CHARGING(2350)\n[    2.764754] sec_bat_parse_dt : CABLE_NUM(11) INPUT(750) CHARGING(2350)\n[    2.764757] sec_bat_parse_dt : CABLE_NUM(12) INPUT(820) CHARGING(2350)\n[    2.764761] sec_bat_parse_dt : CABLE_NUM(13) INPUT(750) CHARGING(2350)\n[    2.764764] sec_bat_parse_dt : CABLE_NUM(14) INPUT(750) CHARGING(2350)\n[    2.764767] sec_bat_parse_dt : CABLE_NUM(15) INPUT(820) CHARGING(2350)\n[    2.764771] sec_bat_parse_dt : CABLE_NUM(16) INPUT(750) CHARGING(2350)\n[    2.764774] sec_bat_parse_dt : CABLE_NUM(17) INPUT(1800) CHARGING(2100)\n[    2.764777] sec_bat_parse_dt : CABLE_NUM(18) INPUT(1800) CHARGING(2100)\n[    2.764780] sec_bat_parse_dt : CABLE_NUM(19) INPUT(500) CHARGING(500)\n[    2.764783] sec_bat_parse_dt : CABLE_NUM(20) INPUT(1800) CHARGING(2100)\n[    2.764787] sec_bat_parse_dt : CABLE_NUM(21) INPUT(500) CHARGING(500)\n[    2.764790] sec_bat_parse_dt : CABLE_NUM(22) INPUT(500) CHARGING(500)\n[    2.764793] sec_bat_parse_dt : CABLE_NUM(23) INPUT(500) CHARGING(500)\n[    2.764796] sec_bat_parse_dt : CABLE_NUM(24) INPUT(1000) CHARGING(450)\n[    2.764799] sec_bat_parse_dt : CABLE_NUM(25) INPUT(1000) CHARGING(1000)\n[    2.764803] sec_bat_parse_dt : CABLE_NUM(26) INPUT(2000) CHARGING(1800)\n[    2.764806] sec_bat_parse_dt : CABLE_NUM(27) INPUT(820) CHARGING(2350)\n[    2.764809] sec_bat_parse_dt : CABLE_NUM(28) INPUT(750) CHARGING(2350)\n[    2.764812] sec_bat_parse_dt : CABLE_NUM(29) INPUT(500) CHARGING(1400)\n[    2.764816] sec_bat_parse_dt : CABLE_NUM(30) INPUT(500) CHARGING(500)\n[    2.764819] sec_bat_parse_dt : CABLE_NUM(31) INPUT(1000) CHARGING(1000)\n[    2.764822] sec_bat_parse_dt : CABLE_NUM(32) INPUT(1500) CHARGING(1500)\n[    2.764826] sec_bat_parse_dt : CABLE_NUM(33) INPUT(820) CHARGING(2350)\n[    2.764829] sec_bat_parse_dt : CABLE_NUM(34) INPUT(1200) CHARGING(2350)\n[    2.764832] sec_bat_parse_dt : CABLE_NUM(35) INPUT(750) CHARGING(2350)\n[    2.764835] sec_bat_parse_dt : CABLE_NUM(36) INPUT(1800) CHARGING(2100)\n[    2.764838] sec_bat_parse_dt : CABLE_NUM(37) INPUT(1800) CHARGING(2100)\n[    2.764841] sec_bat_parse_dt : CABLE_NUM(38) INPUT(1800) CHARGING(2100)\n[    2.764894] sec_bat_parse_dt : np NULL\n[    2.764904] sec_bat_parse_dt : TOPOFF_1ST(600), TOPOFF_2ND(300)\n[    2.764936] sec_bat_parse_dt : battery_full_capacity : 6000\n[    2.764948] sec_bat_parse_dt : set cisd_alg_index : 7\n[    2.764969] sec_bat_parse_dt: Wireless charger name is Empty\n[    2.765071] sec_bat_parse_dt : sub_bat_thermal_source is Empty\n[    2.765078] sec_bat_parse_dt : sub_bat_temp_check_type is Empty\n[    2.765085] sec_bat_parse_dt : slave_thermal_source is Empty\n[    2.765094] sec_bat_parse_dt : slave_chg_temp_check_type is Empty\n[    2.765103] sec_bat_parse_dt : chg_12v_high_temp is Empty\n[    2.765127] sec_bat_parse_dt : wc_hero_stand_cc_cv is Empty\n[    2.765134] sec_bat_parse_dt : wc_hero_stand_cv_current is Empty\n[    2.765142] sec_bat_parse_dt : wc_hero_stand_hv_cv_current is Empty\n[    2.765184] sec_bat_parse_dt : pre_afc_work_delay is Empty\n[    2.765191] sec_bat_parse_dt : pre_wc_afc_input_current is Empty\n[    2.765198] sec_bat_parse_dt : pre_wc_afc_work_delay is Empty\n[    2.765209] sec_bat_parse_dt : tx_stop_capacity is Empty\n[    2.765241] sec_bat_parse_dt : HIGHLIMIT_THRESHOLD_NOLMAL(700), HIGHLIMIT_RECOVERY_NORMAL(680)\n               HIGH_THRESHOLD_NORMAL(500), HIGH_RECOVERY_NORMAL(480) LOW_THRESHOLD_NORMAL(0), LOW_RECOVERY_NORMAL(20)\n               HIGHLIMIT_THRESHOLD_LPM(700), HIGHLIMIT_RECOVERY_LPM(680)\n               HIGH_THRESHOLD_LPM(500), HIGH_RECOVERY_LPM(480) LOW_THRESHOLD_LPM(0), LOW_RECOVERY_LPM(20)\n[    2.765259] sec_bat_parse_dt : tx_high_threshold is Empty\n[    2.765267] sec_bat_parse_dt : tx_high_recovery is Empty\n[    2.765274] sec_bat_parse_dt : tx_low_threshold is Empty\n[    2.765281] sec_bat_parse_dt : tx_low_recovery is Empty\n[    2.765289] sec_bat_parse_dt : charging_limit_by_tx_check is Empty\n[    2.765297] sec_bat_parse_dt : wpc_input_limit_by_tx_check is Empty\n[    2.765342] sec_bat_parse_dt: chg_float_voltage_conv is Empty\n[    2.765357] sec_bat_parse_dt: swelling wireless high temp block is 410\n[    2.765364] sec_bat_parse_dt: swelling wireless high temp recovery is 390\n[    2.765413] sec_bat_parse_dt : swelling drop voltage(set : 4150, condition : 4150)\n[    2.765426] sec_bat_parse_dt: swelling_low_rechg_thr is Empty\n[    2.765432] sec_bat_parse_dt : SWELLING_HIGH_TEMP(410) SWELLING_HIGH_TEMP_RECOVERY(390)\n               SWELLING_LOW_TEMP_1st(150) SWELLING_LOW_TEMP_RECOVERY_1st(170) SWELLING_LOW_TEMP_2nd(50) SWELLING_LOW_TEMP_RECOVERY_2nd(70) SWELLING_LOW_CURRENT(1150, 300), SWELLING_HIGH_CURRENT(1750, 300)\n               SWELLING_HIGH_TEMP_RCHG_VOL(4000), SWELLING_LOW_TEMP_RCHG_THRESHOLD(150)\n[    2.765444] sec_bat_parse_dt: ttf_hv_12v_charge_current is Empty, Defualt value 2350 \n[    2.765459] sec_bat_parse_dt: ttf_hv_12v_wireless_charge_current is Empty, Defualt value 0 \n[    2.765469] sec_bat_parse_dt: ttf_dc25_charge_current is Empty, Defualt value 0 \n[    2.765477] sec_bat_parse_dt: ttf_dc45_charge_current is Empty, Defualt value 0 \n[    2.765485] sec_bat_parse_dt : can't get wpc_en\n[    2.765495] sec_bat_parse_dt num_age_step : 5\n[    2.765501] [0/4]cycle:0, float:4350, full_v:4250, recharge_v:4280, soc:93\n[    2.765507] [1/4]cycle:300, float:4330, full_v:4230, recharge_v:4260, soc:92\n[    2.765513] [2/4]cycle:400, float:4310, full_v:4210, recharge_v:4240, soc:91\n[    2.765519] [3/4]cycle:700, float:4290, full_v:4190, recharge_v:4220, soc:90\n[    2.765525] [4/4]cycle:1000, float:4240, full_v:4140, recharge_v:4170, soc:89\n[    2.765538] sec_bat_parse_dt: [BATTERY_HEALTH] 0: Cycle(~ 900), ASoC(~ 0)\n[    2.765544] sec_bat_parse_dt: [BATTERY_HEALTH] 1: Cycle(~ 1200), ASoC(~ 0)\n[    2.765549] sec_bat_parse_dt: [BATTERY_HEALTH] 2: Cycle(~ 1500), ASoC(~ 0)\n[    2.765628] sec_bat_parse_dt: nv_charge_power is Empty\n[    2.765638] sec_bat_parse_dt: tx minduty is Empty. set 20\n[    2.765648] sec_bat_parse_dt: tx minduty 5V is Empty. set 50\n[    2.765657] sec_bat_parse_dt: tx uno iout is Empty. set 1500\n[    2.765666] sec_bat_parse_dt: tx mfc iout gear is Empty. set 1500\n[    2.765675] sec_bat_parse_dt: tx mfc iout phone is Empty. set 1100\n[    2.765684] sec_bat_parse_dt: tx mfc iout phone 5v is Empty. set 300\n[    2.765693] sec_bat_parse_dt: tx mfc iout lcd on is Empty. set 900\n[    2.765702] sec_bat_parse_dt: vendor : Battery, technology : 2, cable_check_type : 4\n               cable_source_type : 1, event_waiting_time : 0\n               polling_type : 1, initial_count : 0\n               battery_check_type : 0, check_count : 0, check_adc_max : 1440, check_adc_min : 0\n               ovp_uvlo_check_type : 3, thermal_source : 3\n               temp_check_type : 2, temp_check_count : 1, nv_charge_power : 9000\n[    2.765720] sec_bat_parse_dt: max_charging_charge_power is Empty\n[    2.765889] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[    2.765893] sec_bat_set_temp_control_test : BATT_TEMP_CONTROL_TEST END\n[    2.765897] sec_bat_set_current_event: current event before(0x0), after(0x0)\n[    2.765900] HV wired charging mode is disabled\n[    2.765903] sec_bat_set_current_event: current event before(0x0), after(0x10000)\n[    2.765907] sec_battery_probe: init block_water_event = 0\n[    2.766913] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(300), Temp-ADC(1773)\n[    2.767610] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(339), Temp-ADC(1619)\n[    2.767768] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    2.767860] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    2.768000] sm5713_fg_get_property: psp = 0x33\n[    2.768608] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[    2.769119] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[    2.770332] sm5713_cal_avg_vbat: batt_avgvoltage = 3698\n[    2.770892] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[    2.771731] sm5713_vbatocv_check: mode change to mix RS auto mode\n[    2.773126] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 247 ,p_curr_cal = 0x7d, n_curr_cal = 0x87, batt_temp = 300\n[    2.773685] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7d, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877d\n[    2.773691] sm5713_get_soc: \n[    2.774530] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[    2.774773] sm5713_get_soc: read = 0x116f, soc = 174\n[    2.774777] sm5713_get_soc: batt_soc = 174, soc = 174\n[    2.776982] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x02e0, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[    2.779760] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x834f, 0x86=0x8020, 0x87=0x8217, 0x1F=0x0064, 0x94=0x0030\n[    2.780048] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3698, v_avg=3698, i=-257, i_avg=-257, ocv=3737, fg_t=247, b_t=300, cycle=279, soc=174, state=0x8\n[    2.780052] sm5713_update_all_value : temp = 0xe99, t = 300 \n[    2.780056] sm5713_fg_get_scaled_capacity: scaled capacity (17.4)\n[    2.780061] sec_battery_probe: Fail to set psy ((null))\n[    2.780070] type-c manager: manager_notifier_register: listener=26 register\n[    2.780073] ccic_notifier_init\n[    2.780077] ccic_notifier_init already registered\n[    2.780084] type-c manager: manager_notifier_register: [BATTERY] id:ID_ATTACH, cable_type=0 Detached\n[    2.780090] sec-battery battery: usb_typec_handle_notification: action (1) dump(0x6, 0x2, 0x01, 0x0000, 0x0000, 0x0000)\n[    2.780095] sec_bat_set_misc_event: misc event before(0x0), after(0x0)\n[    2.780099] sec_bat_set_misc_event: misc event before(0x0), after(0x0)\n[    2.780129] sec-battery battery: usb_typec_handle_notification: CMD[DETACH], CABLE_TYPE[1]\n[    2.780133] type-c manager: manager_set_alternate_mode : listener 26\n[    2.780137] type-c manager: there is no set_enable_alternate_mode\n[    2.780144] vbus_notifier_register: listener=1 register\n[    2.780149] vbus_handle_notification: action=1, vbus_status=1\n[    2.780241] sec-battery battery: sec_bat_cable_work: Start\n[    2.780247] sec_bat_set_current_event: current event before(0x10000), after(0x10004)\n[    2.780254] sec-battery battery: sec_bat_cable_work: End\n[    2.781972] sm5713_charger_enable_aicl_irq: enable aicl : 0xbe\n[    2.782215] sec-battery battery: sec_battery_probe: SEC Battery Driver Monitorwork\n[    2.782222] sec-battery battery: sec_battery_probe: SEC Battery Driver Loaded\n[    2.782325] sec_bat_init_chg_work: disable charging\n[    2.782330] sec_bat_set_charge set Charging-Off mode\n[    2.782339] sm5713-charger sm5713-charger: charger_mode changed [0] -> [1]\n[    2.782345] sm5713-charger sm5713-charger: chg_set_wdt_enable: wdt enable(0)\n[    2.782577] sec_bat_get_property cable type = 1 sleep_mode = 0\n[    2.782598] sm5713_fg_get_property: psp = 0x13\n[    2.782769] exynos-vipx 10d60000.vipx: Linked as a consumer to 10c50000.sysmmu\n[    2.782776] exynos-vipx 10d60000.vipx: is owner of 10c50000.sysmmu\n[    2.782807] exynos-vipx 10d60000.vipx: Linked as a consumer to 10e50000.sysmmu\n[    2.782811] exynos-vipx 10d60000.vipx: is owner of 10e50000.sysmmu\n[    2.783587] exynos-vipx 10d60000.vipx: Fault handler is registered for 10c50000.sysmmu\n[    2.783595] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[    2.783605] exynos-vipx 10d60000.vipx: Fault handler is registered for 10e50000.sysmmu\n[    2.783610] [VIPx]:vipx device is initilized\n[    2.783904] sec_debug_set_essinfo: key: kevnt-task offset: f9f10000 nr: 400\n[    2.783909] sec_debug_set_essinfo: key: kevnt-work offset: f9f70000 nr: 400\n[    2.783913] sec_debug_set_essinfo: key: kevnt-irq offset: fa070000 nr: 800\n[    2.783917] sec_debug_set_essinfo: key: kevnt-freq offset: fa162000 nr: 400\n[    2.783920] sec_debug_set_essinfo: key: kevnt-idle offset: f9fe0000 nr: 400\n[    2.783923] sec_debug_set_essinfo: key: kevnt-thrm offset: fa1d6000 nr: 400\n[    2.783927] sec_debug_set_essinfo: key: kevnt-acpm offset: fa1e2000 nr: 400\n[    2.783930] sec_debug_set_essinfo: key: empty offset: 0 nr: 0\n[    2.783933] sec_debug_set_essinfo: key: empty offset: 0 nr: 0\n[    2.783936] sec_debug_set_essinfo: key: empty offset: 0 nr: 0\n[    2.783939] sec_debug_set_essinfo: key: empty offset: 0 nr: 0\n[    2.783942] sec_debug_set_essinfo: key: empty offset: 0 nr: 0\n[    2.783945] sec_debug_set_essinfo: key: empty offset: 0 nr: 0\n[    2.783948] sec_debug_set_essinfo: key: empty offset: 0 nr: 0\n[    2.783951] sec_debug_set_essinfo: key: empty offset: 0 nr: 0\n[    2.783954] sec_debug_set_essinfo: key: empty offset: 0 nr: 0\n[    2.783957] sec_debug_init_init_log: start\n[    2.783966] sec_debug_init_init_log: buffer size 0x20000 at addr 0xffffffc0116a4100\n[    2.783982] sec_debug_init_init_log: done\n[    2.783989] sec_debug_hist_late_init: base: 00000000e68cc07c(916c4300) size: 100000\n[    2.783992] sec_debug_hist_late_init: dummy: 0\n[    2.783995] sec_debug_hist_late_init: magic: 1f5f7f9f\n[    2.783998] sec_debug_hist_late_init: version: 19040818\n[    2.784005] sec_debug_hist_late_init: success to create proc entry\n[    2.784011] sec_debug_init_extra_info_sbidx: slot: 0 / paddr: 0x91593d00 / size: 32 / nr: 64\n[    2.784017] sec_debug_init_extra_info_sbidx: slot: 1 / paddr: 0x91594500 / size: 64 / nr: 64\n[    2.784023] sec_debug_init_extra_info_sbidx: slot: 2 / paddr: 0x91595500 / size: 256 / nr: 16\n[    2.784028] sec_debug_init_extra_info_sbidx: slot: 3 / paddr: 0x91596500 / size: 1024 / nr: 16\n[    2.784034] sec_debug_extra_info_copy_shared_buffer: dst: 00000000644c454f src: 00000000c3bea338 (6800)\n[    2.784046] init_shared_buffer: SLOT0: nr keys: 33\n[    2.784054] init_shared_buffer: SLOT1: nr keys: 6\n[    2.784060] init_shared_buffer: SLOT2: nr keys: 14\n[    2.784068] init_shared_buffer: SLOT3: nr keys: 11\n[    2.784093] sec_debug_auto_comment_init_print_buf: done\n[    2.784096] sec_debug_auto_comment_init: start\n[    2.784101] sec_debug_auto_comment_init: done\n[    2.784106] sec_first_kmsg_late_init: success to create proc entry\n[    2.784202] [VIB] s2mu106_haptic_init\n[    2.784413] samsung_abox_dump_late_initcall\n[    2.784427] samsung_abox_log_late_initcall\n[    2.784433] samsung_abox_late_initcall\n[    2.784437] samsung_abox_vdma_initcall\n[    2.784492] decon: decon_abd_register: ++\n[    2.784536] decon: decon_abd_register: -- entity was registered\n[    2.784596] decon: decon_abd_init: lcdtype: 905043\n[    2.784824] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x10],0x16[0xFF],\n[    2.784845] sm5713-charger: regmap: 0x17[0x12],0x18[0x87],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[    2.784866] sm5713_fg_get_property: psp = 0xd\n[    2.784997] sm5713_fg_get_property: psp = 0x14\n[    2.785449] decon_board: 637: of_find_recommend_lcd_info: /ea8076 is found\n[    2.785476] decon_board: 657: of_find_decon_board: decon_board property in /ea8076 has /decon_board_ea8076\n[    2.785485] decon: decon_abd_pin_register_function: found gpio_pcd(7) success\n[    2.785516] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[    2.785523] decon: decon_abd_pin_register_function: pcd is active low, falling\n[    2.786226] decon_board: 637: of_find_recommend_lcd_info: /ea8076 is found\n[    2.786250] decon_board: 657: of_find_decon_board: decon_board property in /ea8076 has /decon_board_ea8076\n[    2.786845] decon_board: 637: of_find_recommend_lcd_info: /ea8076 is found\n[    2.786867] decon_board: 657: of_find_decon_board: decon_board property in /ea8076 has /decon_board_ea8076\n[    2.786876] decon: decon_abd_pin_register_function: found gpio_err(15) success\n[    2.786911] decon: decon_abd_pin_register_function: err is active low, falling\n[    2.786999] sm5713_cal_avg_vbat: batt_avgvoltage = 3698\n[    2.787012] sm5713_fg_get_property: psp = 0xe\n[    2.787017] sm5713_fg_get_property: psp = 0x13\n[    2.787543] decon_board: 637: of_find_recommend_lcd_info: /ea8076 is found\n[    2.787567] decon_board: 657: of_find_decon_board: decon_board property in /ea8076 has /decon_board_ea8076\n[    2.787576] decon: decon_abd_pin_register_function: found gpio_con(13) success\n[    2.787604] decon: decon_abd_pin_register_function: con is active high, rising\n[    2.787681] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[    2.788038] sm5713_fg_get_property: psp = 0x14\n[    2.788046] sm5713_fg_get_property: psp = 0x8f\n[    2.788050] sm5713_fg_get_property: psp = 0x8f\n[    2.788057] sm5713_fg_get_property: psp = 0x21\n[    2.788062] sec_bat_get_battery_info: Fail to set psy ((null))\n[    2.788251] decon_board: 637: of_find_recommend_lcd_info: /ea8076 is found\n[    2.788273] decon_board: 657: of_find_decon_board: decon_board property in /ea8076 has /decon_board_ea8076\n[    2.788279] decon: decon_abd_enable: bypass: 0,0\n[    2.788287] decon: _decon_abd_pin_enable: on: 1, pcd(283,1) level: 1, count: 0(event: 0), state: 0, normal\n[    2.788297] decon: _decon_abd_pin_enable: on: 1, err(284,1) level: 1, count: 0(event: 0), state: 0, normal\n[    2.788305] decon: _decon_abd_pin_enable: on: 1, con(285,1) level: 0, count: 0(event: 0), state: 0, normal\n[    2.789013] decon: decon_abd_pin_register_handler: find irq(285) for con pin\n[    2.789023] decon: decon_abd_pin_register_handler: handler is registered\n[    2.789032] lcd panel: ea8076_m31_lcd_ctrl.c: panel_conn_init: done\n[    2.789081] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(300), Temp-ADC(1773)\n[    2.789221] vdd_ldo12: disabling\n[    2.789349] vdd_ldo13: disabling\n[    2.789475] vdd_ldo14: disabling\n[    2.789826] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(339), Temp-ADC(1618)\n[    2.789836] sm5713_fg_get_property: psp = 0x33\n[    2.790428] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[    2.790876] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[    2.792090] sm5713_cal_avg_vbat: batt_avgvoltage = 3698\n[    2.792659] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[    2.793339] sm5713_vbatocv_check: mode change to mix RS auto mode\n[    2.794870] cis_gm2_probe sensor_id_spec 0, sensor_id_len 1\n[    2.794881] cis_gm2_probe sensor_id 0\n[    2.794887] cis_gm2_probe f-number 200\n[    2.794894] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 247 ,p_curr_cal = 0x7d, n_curr_cal = 0x87, batt_temp = 300\n[    2.794898] cis_gm2_probe done\n[    2.795040] cis_4ha_probe sensor_id 3\n[    2.795046] cis_4ha_probe f-number 220\n[    2.795049] cis_4ha_probe use initial_ae(0)\n[    2.795053] cis_4ha_probe setfile_B\n[    2.795058] cis_4ha_probe done\n[    2.795160] cis_gc5035_probe sensor_id 2\n[    2.795169] [@][WRN]bayer_order read is fail(-22)\n[    2.795172] cis_gc5035_probe bayer_order 0\n[    2.795176] cis_gc5035_probe f-number 220\n[    2.795180] cis_gc5035_probe use initial_ae(1)\n[    2.795183] cis_gc5035_probe setfile_B (GRBG bayer order)\n[    2.795187] cis_gc5035_probe done\n[    2.795287] cis_hi2021q_probe sensor_id_spec 16777216, sensor_id_len 1\n[    2.795292] cis_hi2021q_probe sensor_id 1\n[    2.795297] cis_hi2021q_probe f-number 220\n[    2.795301] cis_hi2021q_probe use initial_ae(1)\n[    2.795305] cis_hi2021q_probe setfile_B\n[    2.795308] cis_hi2021q_probe done\n[    2.795579] flash_sm5713_probe sensor_id 0\n[    2.795597] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7d, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877d\n[    2.795602] sm5713_get_soc: \n[    2.795623] flash_sm5713_probe done\n[    2.795626] flash_sm5713_platform_probe done\n[    2.795913] [@][ERR]fimc_is_sensor_flash_s2mu106_init:351:failed to probe FIMC-IS-SENSOR-FLASH-S2MU106-PLATFORM driver: -19\n\n[    2.796348] [@][PAFSTAT:0]sfr dump memory (V/P/S):(000000006a3a9212/00000000717f5640/0x1000)[0x14440000~0x14440FFF]\n[    2.796354] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[    2.796361] [@][PAFSTAT:0]sfr B dump memory (V/P/S):(00000000e61198a3/000000000c545076/0x1000)[0x14448000~0x14448FFF]\n[    2.796365] pafstat_probe(14440000.sensor-paf-pafstat)\n[    2.796465] [@][PAFSTAT:1]sfr dump memory (V/P/S):(000000003fdef1f4/00000000d7ac88a2/0x1000)[0x14444000~0x14444FFF]\n[    2.796471] [@][PAFSTAT:1]sfr B dump memory (V/P/S):(000000005b65d92d/0000000011e614bd/0x1000)[0x1444C000~0x1444CFFF]\n[    2.796474] pafstat_probe(14444000.sensor-paf-pafstat)\n[    2.796638] sm5713_get_soc: read = 0x116f, soc = 174\n[    2.796643] sm5713_get_soc: batt_soc = 174, soc = 174\n[    2.796652] ALSA device list:\n[    2.796657]   #0: Exynos9610-Audio\n[    2.796692] Warning: unable to open an initial console.\n[    2.797907] Freeing unused kernel memory: 5824K\n[    2.798915] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x02e0, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[    2.801140] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x834f, 0x86=0x8020, 0x87=0x8217, 0x1F=0x0064, 0x94=0x0030\n[    2.801318] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3698, v_avg=3698, i=-257, i_avg=-257, ocv=3737, fg_t=247, b_t=300, cycle=279, soc=174, state=0x8\n[    2.801324] sm5713_update_all_value : temp = 0xe99, t = 300 \n[    2.801328] sm5713_fg_get_scaled_capacity: scaled capacity (17.4)\n[    2.801336] sec_bat_get_battery_info:Vnow(3698mV),Vavg(3698mV),Inow(-257mA),Iavg(-257mA),Isysavg(0mA),Imax(0mA),Ichg(0mA),SOC(17%),Tbat(300),Tusb(0),Tchg(339),Twpc(0)\n[    2.801356] sm5713_fg_get_property: psp = 0x31\n[    2.801363] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[    2.801566] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(300)\n[    2.801571] sec_bat_set_current_event: current event before(0x10004), after(0x10004)\n[    2.801576] sec_bat_set_current_event: current event before(0x10004), after(0x10000)\n[    2.801585] sm5713-charger sm5713-charger: input limit changed [0mA] -> [475mA]\n[    2.802078] sm5713-charger sm5713-charger: charging current changed [0mA] -> [550mA]\n[    2.802474] sec_bat_set_charging_current: power(0), input(475), charge(550)\n[    2.802854] [muic-sm5713:sm5713_muic_charger_init]\n[    2.804002] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[    2.804014] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[    2.804021] sm5713_fg_get_property: psp = 0x96\n[    2.872468] [FG_ALL] 00:0000,c601,0000,000e,0000,116f,1de7,1d97,8210,18c0,0117,1d66,0319,0480,3c8a,0100,01:0010,ffff,0003,0017,0000,7003,ffff,ffff,ffff,1d86,0a0a,0103,0004,ffff,0040,0064,02:04e1,03e6,ffff,0001,00a4,0146,3800,0078,02e0,00a4,070a,0048,ffff,000e,1f6b,0318,03:1f78,1f78,1f79,1f79,1f79,1f7a,1f7a,1f79,1f59,1f58,1f58,1f59,1f58,1f59,1f58,1f58,04:1f78,1f79,1f7a,1f7a,1f7a,1f79,1f79,1f7a,1f5a,1f59,1f59,1f5a,1f59,1f58,1f59,1f59,05:400f,400e,400e,400e,400e,400f,400f,400e,4014,400e,4012,400f,4012,4011,4013,4010,06:859a,908d,29e2,0000,0000,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,8012,08:0008,8001,8006,ffff,8050,834f,8020,8217,0752,5910,0000,0000,0000,ffff,ffff,ffff,09:0040,a000,0000,0000,0030,0201,0100,0153,0000,0000,0000,0000,0325,0000,0000,ffff,0a:1400,1b33,1c2a,1d6c,1d86,1da2,1dbb,1ddb,1df0,1e30,1e4f,1e5d,1e7e,1ea7,1edc,1f3d,0b:1f6f,1fa0,1ff1,2050,2082,20ee,2239,2400,0000,004c,0166,044c,0733,0a00,0ce6,0fcc,\n\n[    2.872490] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[    2.872511] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[    2.872551] sec_bat_get_property cable type = 1 sleep_mode = 0\n[    2.872561] sm5713_fg_get_property: psp = 0x13\n[    2.873121] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[    2.873485] sm5713_fg_get_property: psp = 0x14\n[    3.814543] rt5665_irq\n[    3.814615] rt5665_jack_detect_handler\n[    3.815148] wake enabled for irq 276\n[    3.815175] rt5665_irq\n[    3.816922] rt5665 6-001b: jack_type = 0\n[    3.872608] rt5665_jack_detect_handler\n[    3.875027] rt5665 6-001b: jack_type = 0\n[    4.021688] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    4.021875] cpu1 cpu4 \n               Offline CPUs: \n[    4.026856] cpu1 \n[    4.136330] cpu=7 set cpu scale 1024 from energy model\n[    4.136338] cpu=7 set cpu scale 1024 from energy model\n[    4.136345] cpu=7 set cpu scale 1024 from energy model\n[    4.136353] cpu=6 set cpu scale 1024 from energy model\n[    4.136359] cpu=6 set cpu scale 1024 from energy model\n[    4.136365] cpu=6 set cpu scale 1024 from energy model\n[    4.136373] cpu=5 set cpu scale 1024 from energy model\n[    4.136379] cpu=5 set cpu scale 1024 from energy model\n[    4.136385] cpu=5 set cpu scale 1024 from energy model\n[    4.136392] cpu=4 set cpu scale 1024 from energy model\n[    4.136398] cpu=4 set cpu scale 1024 from energy model\n[    4.136404] cpu=4 set cpu scale 1024 from energy model\n[    4.136413] cpu=3 set cpu scale 369 from energy model\n[    4.136419] cpu=3 set cpu scale 369 from energy model\n[    4.136425] cpu=3 set cpu scale 369 from energy model\n[    4.136432] cpu=2 set cpu scale 369 from energy model\n[    4.136438] cpu=2 set cpu scale 369 from energy model\n[    4.136445] cpu=2 set cpu scale 369 from energy model\n[    4.136452] cpu=0 set cpu scale 369 from energy model\n[    4.136458] cpu=0 set cpu scale 369 from energy model\n[    4.136464] cpu=0 set cpu scale 369 from energy model\n[    4.137495] cpu2 \n[    4.214239] cpu=7 set cpu scale 1024 from energy model\n[    4.214248] cpu=7 set cpu scale 1024 from energy model\n[    4.214255] cpu=7 set cpu scale 1024 from energy model\n[    4.214263] cpu=6 set cpu scale 1024 from energy model\n[    4.214269] cpu=6 set cpu scale 1024 from energy model\n[    4.214276] cpu=6 set cpu scale 1024 from energy model\n[    4.214283] cpu=5 set cpu scale 1024 from energy model\n[    4.214289] cpu=5 set cpu scale 1024 from energy model\n[    4.214295] cpu=5 set cpu scale 1024 from energy model\n[    4.214303] cpu=4 set cpu scale 1024 from energy model\n[    4.214309] cpu=4 set cpu scale 1024 from energy model\n[    4.214315] cpu=4 set cpu scale 1024 from energy model\n[    4.214324] cpu=3 set cpu scale 369 from energy model\n[    4.214330] cpu=3 set cpu scale 369 from energy model\n[    4.214336] cpu=3 set cpu scale 369 from energy model\n[    4.214344] cpu=0 set cpu scale 369 from energy model\n[    4.214349] cpu=0 set cpu scale 369 from energy model\n[    4.214356] cpu=0 set cpu scale 369 from energy model\n[    4.215290] cpu3 \n[    4.294090] IRQ 176: no longer affine to CPU3\n[    4.294839] cpu=7 set cpu scale 1024 from energy model\n[    4.294853] cpu=7 set cpu scale 1024 from energy model\n[    4.294860] cpu=7 set cpu scale 1024 from energy model\n[    4.294868] cpu=6 set cpu scale 1024 from energy model\n[    4.294874] cpu=6 set cpu scale 1024 from energy model\n[    4.294880] cpu=6 set cpu scale 1024 from energy model\n[    4.294887] cpu=5 set cpu scale 1024 from energy model\n[    4.294893] cpu=5 set cpu scale 1024 from energy model\n[    4.294899] cpu=5 set cpu scale 1024 from energy model\n[    4.294906] cpu=4 set cpu scale 1024 from energy model\n[    4.294912] cpu=4 set cpu scale 1024 from energy model\n[    4.294918] cpu=4 set cpu scale 1024 from energy model\n[    4.294927] cpu=0 set cpu scale 369 from energy model\n[    4.294932] cpu=0 set cpu scale 369 from energy model\n[    4.294939] cpu=0 set cpu scale 369 from energy model\n[    4.295795] cpu4 \n[    4.373060] IRQ 123: no longer affine to CPU4\n[    4.373882] cpu=7 set cpu scale 1024 from energy model\n[    4.373895] cpu=7 set cpu scale 1024 from energy model\n[    4.373902] cpu=7 set cpu scale 1024 from energy model\n[    4.373910] cpu=6 set cpu scale 1024 from energy model\n[    4.373916] cpu=6 set cpu scale 1024 from energy model\n[    4.373923] cpu=6 set cpu scale 1024 from energy model\n[    4.373930] cpu=5 set cpu scale 1024 from energy model\n[    4.373936] cpu=5 set cpu scale 1024 from energy model\n[    4.373943] cpu=5 set cpu scale 1024 from energy model\n[    4.373951] cpu=0 set cpu scale 369 from energy model\n[    4.373957] cpu=0 set cpu scale 369 from energy model\n[    4.373964] cpu=0 set cpu scale 369 from energy model\n[    4.374710] cpu5 \n[    4.454310] cpu=7 set cpu scale 1024 from energy model\n[    4.454318] cpu=7 set cpu scale 1024 from energy model\n[    4.454325] cpu=7 set cpu scale 1024 from energy model\n[    4.454333] cpu=6 set cpu scale 1024 from energy model\n[    4.454338] cpu=6 set cpu scale 1024 from energy model\n[    4.454345] cpu=6 set cpu scale 1024 from energy model\n[    4.454352] cpu=0 set cpu scale 369 from energy model\n[    4.454358] cpu=0 set cpu scale 369 from energy model\n[    4.454364] cpu=0 set cpu scale 369 from energy model\n[    4.455041] cpu6 \n[    4.554108] cpu7 \n[    4.554657] cpu=7 set cpu scale 1024 from energy model\n[    4.554666] cpu=7 set cpu scale 1024 from energy model\n[    4.554673] cpu=7 set cpu scale 1024 from energy model\n[    4.554681] cpu=0 set cpu scale 369 from energy model\n[    4.554687] cpu=0 set cpu scale 369 from energy model\n[    4.554693] cpu=0 set cpu scale 369 from energy model\n[    4.632641] cpufreq_schedutil: Save sg_policy(7) to policy_list(f0)\n[    4.634900] cpufreq_schedutil: Save sg_policy(0) to policy_list(f)\n[    4.636616] cpu=0 set cpu scale 369 from energy model\n[    4.636629] cpu=0 set cpu scale 369 from energy model\n[    4.636636] cpu=0 set cpu scale 369 from energy model\n\n[    7.532573] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[    7.772650] mss_ts 4-0048: [sec_input] mms_run_rawdata: start ##\n[    7.772670] mss_ts 4-0048: [sec_input] mms_run_rawdata - max_x[4095] max_y[4095]\n[    7.772687] mss_ts 4-0048: [sec_input] mms_run_rawdata - node_x[15] node_y[32] node_key[0]\n[    7.772703] mss_ts 4-0048: [sec_input] mms_run_rawdata event_format[8] event_size[12]\n[    7.772720] mss_ts 4-0048: [sec_input] mms_run_rawdata fod_tx[0] fod_rx[0] fod_vi_size[0]\n[    7.772748] mss_ts 4-0048: [sec_input] mms_clear_input\n[    7.773151] mss_ts 4-0048: [sec_input] ==== CM Test ===\n[    8.103952] mss_ts 4-0048: [sec_input] mms_proc_table_data [START]\n[    8.151148] mss_ts 4-0048: [sec_input]     [   0][   1][   2][   3][   4][   5][   6][   7][   8][   9][  10][  11][  12][  13][  14][  15][  16][  17][  18][  19][  20][  21][  22][  23][  24][  25][  26][  27][  28][  29][  30][  31]\n[    8.151181] mss_ts 4-0048: [sec_input] [ 0]  1939  1913  2035  1925  1945  1934  1931  2020  2032  2032  2046  2048  2070  2074  2095  2100  2114  2121  2146  2232  2242  2243  2246  2236  2235  2202  2332  2307  2273  2206  2132  1442\n[    8.151213] mss_ts 4-0048: [sec_input] [ 1]  1916  1935  1925  1940  1948  1957  1957  1960  2010  1975  2033  2096  2113  2125  2140  2148  2157  2171  2197  2205  2292  2305  2305  2304  2300  2277  2409  2389  2352  2287  2208  1960\n[    8.151244] mss_ts 4-0048: [sec_input] [ 2]  1975  1967  2047  2058  1999  2000  2081  1997  2067  2016  2123  2132  2152  2165  2184  2192  2202  2215  2246  2254  2334  2348  2351  2356  2360  2343  2481  2467  2433  2368  2290  2075\n[    8.151274] mss_ts 4-0048: [sec_input] [ 3]  1971  1969  1962  1974  1988  1998  1999  2007  2017  2025  2036  2041  2162  2177  2197  2207  2218  2232  2256  2274  2279  2371  2380  2385  2388  2373  2352  2334  2290  2424  2351  2173\n[    8.151305] mss_ts 4-0048: [sec_input] [ 4]  1975  1986  1971  1990  1997  2014  1983  2025  2027  2045  2044  2059  2076  2088  2166  2226  2235  2253  2277  2291  2302  2311  2407  2413  2420  2408  2392  2376  2339  2479  2416  2208\n[    8.151335] mss_ts 4-0048: [sec_input] [ 5]  1971  1988  1978  1956  2003  1973  2014  2026  2035  2046  2060  2062  2145  2093  2217  2230  2242  2261  2286  2302  2314  2325  2419  2433  2438  2436  2420  2404  2374  2308  2464  2294\n[    8.151365] mss_ts 4-0048: [sec_input] [ 6]  1829  2011  2066  2025  2092  2048  2105  2061  2128  2081  2150  2106  2136  2195  2265  2225  2245  2307  2334  2349  2355  2370  2367  2483  2487  2482  2467  2449  2415  2343  2512  2339\n[    8.151396] mss_ts 4-0048: [sec_input] [ 7]  1375  1932  2018  2022  2037  2049  2050  2061  2071  2083  2090  2108  2126  2197  2205  2269  2231  2303  2332  2348  2359  2378  2379  2488  2498  2499  2491  2475  2452  2393  2561  2413\n[    8.151426] mss_ts 4-0048: [sec_input] [ 8]  1730  1951  1989  2005  2014  2028  2010  2042  2050  2063  2069  2083  2099  2121  2128  2197  2215  2231  2263  2333  2346  2361  2374  2381  2499  2503  2504  2488  2471  2424  2358  2469\n[    8.151456] mss_ts 4-0048: [sec_input] [ 9]  1919  1952  1978  1958  1984  1982  1980  1993  2001  2012  2027  2029  2087  2060  2121  2187  2206  2163  2258  2324  2336  2358  2373  2386  2497  2508  2513  2502  2492  2456  2395  2522\n[    8.151487] mss_ts 4-0048: [sec_input] [10]  1888  1949  1938  1956  1962  1979  1972  1991  1994  2010  2011  2027  2043  2061  2167  2180  2194  2219  2248  2317  2329  2354  2362  2388  2393  2511  2519  2513  2506  2481  2423  2561\n[    8.151517] mss_ts 4-0048: [sec_input] [11]  1874  1932  1926  1940  1951  1963  1961  1974  1981  1994  1999  2009  2027  2051  2050  2116  2181  2148  2237  2251  2317  2345  2353  2375  2391  2399  2516  2512  2510  2492  2440  2581\n[    8.151548] mss_ts 4-0048: [sec_input] [12]  1854  1922  1915  1933  1936  1955  1947  1964  1967  1984  1986  2003  2016  2042  2045  2100  2107  2134  2154  2232  2255  2266  2345  2366  2385  2393  2510  2505  2511  2496  2448  2585\n[    8.151578] mss_ts 4-0048: [sec_input] [13]  1788  1898  1863  1909  1888  1931  1896  1940  1922  1960  1965  1978  2002  2010  2072  2035  2138  2114  2191  2215  2229  2306  2319  2342  2356  2373  2368  2485  2495  2482  2436  2537\n[    8.151609] mss_ts 4-0048: [sec_input] [14]  1465  1776  1847  1863  1869  1887  1880  1896  1899  1916  1920  1934  1955  1974  2023  2029  2046  2063  2094  2173  2184  2262  2281  2305  2317  2433  2329  2447  2459  2447  2345  1905\n[    8.151631] mss_ts 4-0048: [sec_input] mms_run_test : CM TEST : max_diff[171]\n[    8.473238] mss_ts 4-0048: [sec_input] mms_run_test [DONE]\n[    8.473255] mss_ts 4-0048: [sec_input] minority_report_sync_latest_value : defect_probability[1]\n[    8.473278] mss_ts 4-0048: [sec_input] mms_clear_input\n[    8.473616] mss_ts 4-0048: [sec_input] ==== CP Test ===\n[    8.594744] mss_ts 4-0048: [sec_input] mms_run_test - vector[0] : id[1] elem_num[32]\n[    8.594760] mss_ts 4-0048: [sec_input] mms_run_test - vector[1] : id[2] elem_num[15]\n[    8.594773] mss_ts 4-0048: [sec_input] mms_run_test - vector[2] : id[3] elem_num[0]\n[    8.594786] mss_ts 4-0048: [sec_input] mms_run_test - vector[3] : id[4] elem_num[0]\n[    8.594799] mss_ts 4-0048: [sec_input] mms_run_test - vector[4] : id[0] elem_num[0]\n[    8.603941] mss_ts 4-0048: [sec_input] [Screen Rx]\n[    8.603969] mss_ts 4-0048: [sec_input]   28465  29080  29089  29089  28584  28415  28760  29083  29138  29021  29186  29020  28680  28840  28609  28472  29113  29316  29255  29237  29298  29281  29255  29255  28974  29106  28878  28993  29141  29246  28965  29121\n[    8.603987] mss_ts 4-0048: [sec_input] [Screen Tx]\n[    8.604006] mss_ts 4-0048: [sec_input]   28311  28662  28615  28361  28366  28322  28077  28188  27939  28461  28163  28074  28453  28539  28243\n[    8.933253] mss_ts 4-0048: [sec_input] mms_run_test [DONE]\n[    8.933279] mss_ts 4-0048: [sec_input] mms_clear_input\n[    8.933557] mss_ts 4-0048: [sec_input] ==== CP SHORT Test ===\n[    9.324770] mss_ts 4-0048: [sec_input] mms_run_test - vector[0] : id[1] elem_num[32]\n[    9.324787] mss_ts 4-0048: [sec_input] mms_run_test - vector[1] : id[2] elem_num[15]\n[    9.324801] mss_ts 4-0048: [sec_input] mms_run_test - vector[2] : id[3] elem_num[0]\n[    9.324814] mss_ts 4-0048: [sec_input] mms_run_test - vector[3] : id[4] elem_num[0]\n[    9.324827] mss_ts 4-0048: [sec_input] mms_run_test - vector[4] : id[0] elem_num[0]\n[    9.333943] mss_ts 4-0048: [sec_input] [Screen Rx]\n[    9.333972] mss_ts 4-0048: [sec_input]   33931  34239  34734  34974  34932  34069  35117  34227  35179  34262  34061  33793  34749  34234  34119  33122  33986  34768  33820  35041  33972  35140  34400  34008  35098  35006  34885  35006  35257  36117  36206  36414\n[    9.333990] mss_ts 4-0048: [sec_input] [Screen Tx]\n[    9.334009] mss_ts 4-0048: [sec_input]   35813  35678  35862  35862  35834  35820  35676  35007  35767  35191  35048  35689  35096  35158  35130\n[    9.641872] sm5713_fg_get_property: psp = 0x13\n[    9.642355] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[    9.643006] Sampling power every 1000 ms\n               Baseline power usage: \n[    9.663246] mss_ts 4-0048: [sec_input] mms_run_test [DONE]\n[    9.663272] mss_ts 4-0048: [sec_input] mms_clear_input\n[    9.663610] mss_ts 4-0048: [sec_input] ==== CP LPM Test ===\n[    9.904685] mss_ts 4-0048: [sec_input] mms_run_test - vector[0] : id[1] elem_num[32]\n[    9.904703] mss_ts 4-0048: [sec_input] mms_run_test - vector[1] : id[2] elem_num[15]\n[    9.904716] mss_ts 4-0048: [sec_input] mms_run_test - vector[2] : id[3] elem_num[0]\n[    9.904729] mss_ts 4-0048: [sec_input] mms_run_test - vector[3] : id[4] elem_num[0]\n[    9.904742] mss_ts 4-0048: [sec_input] mms_run_test - vector[4] : id[0] elem_num[0]\n[    9.913892] mss_ts 4-0048: [sec_input] [Screen Rx]\n[    9.913921] mss_ts 4-0048: [sec_input]   28455  29332  29323  29070  29089  29166  28722  29308  29083  29249  29131  28993  28627  28796  28529  28698  29309  29254  29194  29176  29229  29255  29159  29211  29211  29054  29080  28949  29072  29220  29220  29138\n[    9.913939] mss_ts 4-0048: [sec_input] [Screen Tx]\n[    9.913957] mss_ts 4-0048: [sec_input]   28227  28375  28303  29000  29000  28975  28143  28369  28207  28303  28373  28338  28019  28364  28920\n[   10.243168] mss_ts 4-0048: [sec_input] mms_run_test [DONE]\n[   10.243195] mss_ts 4-0048: [sec_input] mms_clear_input\n[   10.243533] mss_ts 4-0048: [sec_input] ==== CM ABS Test ===\n[   10.573941] mss_ts 4-0048: [sec_input] mms_proc_table_data [START]\n[   10.621119] mss_ts 4-0048: [sec_input]     [   0][   1][   2][   3][   4][   5][   6][   7][   8][   9][  10][  11][  12][  13][  14][  15][  16][  17][  18][  19][  20][  21][  22][  23][  24][  25][  26][  27][  28][  29][  30][  31]\n[   10.621153] mss_ts 4-0048: [sec_input] [ 0]  4879  4859  5020  4914  4928  4923  4874  4966  4974  4978  5012  5017  5009  5016  5089  5097  5098  5109  5095  5181  5174  5175  5213  5211  5180  5300  5234  5211  5248  5183  5147  4456\n[   10.621185] mss_ts 4-0048: [sec_input] [ 1]  4860  4875  4913  4922  4935  4938  4904  4900  4960  4919  5053  5007  5054  5064  5135  5143  5143  5156  5147  5155  5224  5238  5273  5272  5245  5222  5310  5292  5327  5265  5223  4973\n[   10.621215] mss_ts 4-0048: [sec_input] [ 2]  4868  4994  4893  5045  4915  5065  4874  5035  5040  5056  5086  5100  4986  5106  5174  5188  5191  5208  5255  5271  5265  5277  5317  5328  5304  5436  5381  5369  5409  5342  5305  5086\n[   10.621246] mss_ts 4-0048: [sec_input] [ 3]  4920  4911  4954  4958  4979  4981  4949  4950  4967  4967  5009  5011  5106  5072  5195  5205  5206  5219  5209  5226  5214  5306  5347  5355  5333  5321  5259  5239  5459  5402  5365  5187\n[   10.621277] mss_ts 4-0048: [sec_input] [ 4]  4964  4926  5009  4973  5032  4996  5004  4967  5026  4985  5070  5024  5024  5026  5159  5219  5217  5236  5224  5239  5231  5242  5372  5380  5363  5354  5291  5278  5312  5456  5427  5222\n[   10.621308] mss_ts 4-0048: [sec_input] [ 5]  4872  4974  5009  4942  5002  4954  4959  4926  4980  5039  5020  5041  5023  5030  5212  5223  5186  5245  5236  5250  5240  5257  5290  5400  5384  5381  5322  5307  5351  5284  5479  5305\n[   10.621338] mss_ts 4-0048: [sec_input] [ 6]  4760  4951  4998  5009  5022  5030  4994  5003  5014  5022  5056  5063  5063  5071  5210  5217  5271  5289  5283  5295  5293  5300  5436  5448  5431  5425  5367  5349  5390  5317  5526  5349\n[   10.621369] mss_ts 4-0048: [sec_input] [ 7]  4314  4828  5006  4955  5024  4981  4997  4951  5018  4976  5068  5070  5120  5071  5250  5142  5268  5289  5282  5300  5290  5304  5345  5351  5441  5446  5390  5380  5426  5371  5574  5428\n[   10.621399] mss_ts 4-0048: [sec_input] [ 8]  4667  4894  4971  5030  4993  4984  4946  4948  4989  5049  5032  5097  5042  5114  5182  5240  5201  5267  5257  5283  5272  5293  5335  5349  5439  5448  5400  5390  5442  5400  5367  5482\n[   10.621429] mss_ts 4-0048: [sec_input] [ 9]  4838  4930  4963  4955  4965  4962  4920  4933  4941  4952  4990  4999  5026  5055  5107  5189  5121  5254  5205  5274  5269  5290  5339  5353  5443  5453  5414  5405  5468  5432  5410  5534\n[   10.621460] mss_ts 4-0048: [sec_input] [10]  4857  4888  4937  4939  4945  4960  4914  4931  4935  4951  4977  4991  4985  5002  5102  5114  5118  5133  5191  5212  5205  5286  5331  5355  5339  5457  5422  5415  5483  5457  5439  5573\n[   10.621491] mss_ts 4-0048: [sec_input] [11]  4817  4874  4915  4925  4937  4947  4907  4917  4927  4936  4969  4975  4970  4990  5053  5110  5110  5133  5181  5201  5198  5278  5323  5343  5337  5345  5418  5416  5488  5468  5455  5592\n[   10.621521] mss_ts 4-0048: [sec_input] [12]  4793  4862  4898  4915  4918  4936  4889  4906  4909  4926  4951  4968  4953  4980  5037  5103  5089  5167  5102  5188  5185  5263  5310  5333  5328  5338  5409  5407  5484  5472  5460  5598\n[   10.621552] mss_ts 4-0048: [sec_input] [13]  4733  4844  4876  4899  4897  4919  4852  4888  4862  4908  4928  4950  4930  4954  5014  5028  5078  5039  5139  5160  5159  5176  5286  5311  5300  5320  5268  5389  5470  5460  5449  5551\n[   10.621583] mss_ts 4-0048: [sec_input] [14]  4404  4714  4816  4844  4836  4866  4806  4835  4824  4855  4870  4897  4884  4909  4965  5028  5079  5053  5055  5121  5172  5196  5248  5268  5261  5276  5230  5351  5435  5424  5359  4920\n[   10.943178] mss_ts 4-0048: [sec_input] mms_run_test [DONE]\n[   10.943205] mss_ts 4-0048: [sec_input] mms_clear_input\n[   10.943484] mss_ts 4-0048: [sec_input] ==== CM JITTER Test ===\n[   11.273861] mss_ts 4-0048: [sec_input] mms_proc_table_data [START]\n[   11.298960] mss_ts 4-0048: [sec_input]     [ 0][ 1][ 2][ 3][ 4][ 5][ 6][ 7][ 8][ 9][10][11][12][13][14][15][16][17][18][19][20][21][22][23][24][25][26][27][28][29][30][31]\n[   11.298991] mss_ts 4-0048: [sec_input] [ 0]   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   1   0   0   1   1   1   1   1   1\n[   11.299020] mss_ts 4-0048: [sec_input] [ 1]   0   0   1   0   1   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   1   0   1   0   1   0   1   1   1   1   1\n[   11.299048] mss_ts 4-0048: [sec_input] [ 2]   0   1   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   1   1   1   1   1\n[   11.299075] mss_ts 4-0048: [sec_input] [ 3]   0   0   0   1   0   0   0   0   0   0   0   0   0   0   0   1   1   0   0   0   0   0   0   0   0   0   1   0   1   1   1   1\n[   11.299103] mss_ts 4-0048: [sec_input] [ 4]   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   1   0   0   0   0   0   0   0   0   0   1   1   1   1   1   1\n[   11.299130] mss_ts 4-0048: [sec_input] [ 5]   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   1   1   0   0   0   0   0   0   0   1   1   1   0   1   1   1   1\n[   11.299158] mss_ts 4-0048: [sec_input] [ 6]   0   1   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   1   1   1   1   1   1   1   1   1   1\n[   11.299186] mss_ts 4-0048: [sec_input] [ 7]   0   1   0   0   0   0   0   0   0   0   0   0   0   0   1   0   0   0   0   0   0   0   0   0   0   0   0   0   1   1   1   1\n[   11.299213] mss_ts 4-0048: [sec_input] [ 8]   0   0   0   0   1   0   0   0   0   0   0   0   0   0   0   1   1   1   0   1   0   1   0   1   0   1   1   1   1   1   1   2\n[   11.299240] mss_ts 4-0048: [sec_input] [ 9]   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   1   0   0   0   0   0   0   0   0   1   0   1\n[   11.299268] mss_ts 4-0048: [sec_input] [10]   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   1   0   1   0   1   1   1   0   0   0   0   1   0   0   1   1\n[   11.299296] mss_ts 4-0048: [sec_input] [11]   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   1   0   1   0   0   0   1   0   1   1   1   1   1   1   1\n[   11.299324] mss_ts 4-0048: [sec_input] [12]   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   1   0   0   0   0   1   0   1   0   1   0   1   0   0   1   1   2\n[   11.299351] mss_ts 4-0048: [sec_input] [13]   0   0   1   0   1   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   1   1   0   1   0   1   1   1   0   1   1   2\n[   11.299379] mss_ts 4-0048: [sec_input] [14]   0   0   0   0   0   0   0   0   0   0   0   1   0   0   0   0   0   0   0   0   0   0   0   1   1   0   1   0   1   1   1   0\n[   11.623240] mss_ts 4-0048: [sec_input] mms_run_test [DONE]\n[   11.623256] mss_ts 4-0048: [sec_input] mms_run_rawdata: done ##\n[   13.292585] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[   13.292632] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[   13.292656] usb_notify: reserve_state_check booting delay finished\n[   13.294629] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[   13.295776] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[   19.692570] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[   24.172590] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[   25.452654] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[   26.656018] sm5713_fg_get_property: psp = 0x13\n[   26.656891] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   28.660368] sm5713_fg_get_property: psp = 0x13\n[   28.661132] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   30.662985] sm5713_fg_get_property: psp = 0x13\n[   30.663737] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   31.212582] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[   32.667365] sm5713_fg_get_property: psp = 0x13\n[   32.668234] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   32.872579] sm5713_fg_get_property: psp = 0xd\n[   32.873224] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[   32.874505] sm5713_cal_avg_vbat: batt_avgvoltage = 3704\n[   32.874520] sm5713_fg_get_property: psp = 0xe\n[   32.874528] sm5713_fg_get_property: psp = 0xe\n[   32.874537] sm5713_fg_get_property: psp = 0x13\n[   32.875022] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   32.875271] sm5713_fg_get_property: psp = 0x14\n[   32.875281] sm5713_fg_get_property: psp = 0x8f\n[   32.875289] sm5713_fg_get_property: psp = 0x8f\n[   32.875301] sm5713_fg_get_property: psp = 0x21\n[   32.875310] sec_bat_get_battery_info: Fail to set psy ((null))\n[   32.876010] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(299), Temp-ADC(1775)\n[   32.876686] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(325), Temp-ADC(1683)\n[   32.876699] sm5713_fg_get_property: psp = 0x33\n[   32.877292] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[   32.877727] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[   32.878851] sm5713_cal_avg_vbat: batt_avgvoltage = 3707\n[   32.879336] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   32.880059] sm5713_vbatocv_check: mode change to mix RS auto mode\n[   32.881167] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 231 ,p_curr_cal = 0x7d, n_curr_cal = 0x87, batt_temp = 299\n[   32.881735] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7d, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877d\n[   32.881743] sm5713_get_soc: \n[   32.882475] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x18 , return FALSE NO init need\n[   32.882722] sm5713_get_soc: read = 0x116f, soc = 174\n[   32.882730] sm5713_get_soc: batt_soc = 174, soc = 174\n[   32.884617] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0320, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[   32.886999] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x8126, 0x86=0x0003, 0x87=0x8107, 0x1F=0x0064, 0x94=0x0030\n[   32.887251] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3722, v_avg=3707, i=-126, i_avg=-192, ocv=3737, fg_t=231, b_t=299, cycle=279, soc=174, state=0x8\n[   32.887259] sm5713_update_all_value : temp = 0xe99, t = 299 \n[   32.887267] sm5713_fg_get_scaled_capacity: scaled capacity (17.4)\n[   32.887278] sec_bat_get_battery_info:Vnow(3723mV),Vavg(3704mV),Inow(-126mA),Iavg(-193mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(299),Tusb(0),Tchg(325),Twpc(0)\n[   32.887302] sm5713_fg_get_property: psp = 0x31\n[   32.887313] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[   32.887499] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(299)\n[   32.887508] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[   32.887517] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[   32.889144] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[   32.889163] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[   32.889173] sm5713_fg_get_property: psp = 0x96\n[   32.889181] sm5713_fg_periodic_read: skip old(2) current(32)\n[   32.889193] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[   32.889216] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[   32.889269] sec_bat_get_property cable type = 1 sleep_mode = 0\n[   32.889285] sm5713_fg_get_property: psp = 0x13\n[   32.889770] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   32.890020] sm5713_fg_get_property: psp = 0x14\n[   33.132574] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 1 0\n[   34.671744] sm5713_fg_get_property: psp = 0x13\n[   34.672233] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   35.692585] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[   36.675680] sm5713_fg_get_property: psp = 0x13\n[   36.676428] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   37.612574] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[   38.679946] sm5713_fg_get_property: psp = 0x13\n[   38.680796] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   40.682990] sm5713_fg_get_property: psp = 0x13\n[   40.683865] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   42.688367] sm5713_fg_get_property: psp = 0x13\n[   42.689718] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   43.372812] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[   44.694052] sm5713_fg_get_property: psp = 0x13\n[   44.695075] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   46.572675] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[   46.701245] sm5713_fg_get_property: psp = 0x13\n[   46.702113] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   48.708133] sm5713_fg_get_property: psp = 0x13\n[   48.709488] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   49.132846] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[   50.714016] sm5713_fg_get_property: psp = 0x13\n[   50.715400] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   52.721404] sm5713_fg_get_property: psp = 0x13\n[   52.722267] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   54.728217] sm5713_fg_get_property: psp = 0x13\n[   54.729578] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   55.532833] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[   56.734028] sm5713_fg_get_property: psp = 0x13\n[   56.735387] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   57.452840] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[   58.741537] sm5713_fg_get_property: psp = 0x13\n[   58.742262] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   60.748187] sm5713_fg_get_property: psp = 0x13\n[   60.749564] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   61.292809] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[   62.754026] sm5713_fg_get_property: psp = 0x13\n[   62.755390] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   62.889662] sm5713_fg_get_property: psp = 0xd\n[   62.890771] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[   62.892927] sm5713_cal_avg_vbat: batt_avgvoltage = 3715\n[   62.892977] sm5713_fg_get_property: psp = 0xe\n[   62.893013] sm5713_fg_get_property: psp = 0xe\n[   62.893046] sm5713_fg_get_property: psp = 0x13\n[   62.893627] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   62.893915] sm5713_fg_get_property: psp = 0x14\n[   62.893951] sm5713_fg_get_property: psp = 0x8f\n[   62.893986] sm5713_fg_get_property: psp = 0x8f\n[   62.894031] sm5713_fg_get_property: psp = 0x21\n[   62.894066] sec_bat_get_battery_info: Fail to set psy ((null))\n[   62.895122] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(299), Temp-ADC(1779)\n[   62.896108] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(319), Temp-ADC(1710)\n[   62.896158] sm5713_fg_get_property: psp = 0x33\n[   62.896856] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[   62.897359] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[   62.898595] sm5713_cal_avg_vbat: batt_avgvoltage = 3719\n[   62.899121] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   62.899906] sm5713_vbatocv_check: mode change to mix RS auto mode\n[   62.901198] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 226 ,p_curr_cal = 0x7d, n_curr_cal = 0x87, batt_temp = 299\n[   62.901856] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7d, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877d\n[   62.901888] sm5713_get_soc: \n[   62.902713] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[   62.902996] sm5713_get_soc: read = 0x1162, soc = 173\n[   62.903031] sm5713_get_soc: batt_soc = 173, soc = 173\n[   62.905075] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x037c, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[   62.907624] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80da, 0x86=0x0004, 0x87=0x80c7, 0x1F=0x0064, 0x94=0x0030\n[   62.907923] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3725, v_avg=3719, i=-95, i_avg=-110, ocv=3737, fg_t=226, b_t=299, cycle=279, soc=173, state=0x8\n[   62.907959] sm5713_update_all_value : temp = 0xe99, t = 299 \n[   62.907991] sm5713_fg_get_scaled_capacity: scaled capacity (17.3)\n[   62.908039] sec_bat_get_battery_info:Vnow(3725mV),Vavg(3715mV),Inow(-95mA),Iavg(-110mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(299),Tusb(0),Tchg(319),Twpc(0)\n[   62.908132] sm5713_fg_get_property: psp = 0x31\n[   62.908175] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[   62.908439] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(299)\n[   62.908476] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[   62.908509] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[   62.909953] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[   62.910030] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[   62.910068] sm5713_fg_get_property: psp = 0x96\n[   62.910102] sm5713_fg_periodic_read: skip old(2) current(62)\n[   62.910151] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[   62.910229] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[   62.910405] sec_bat_get_property cable type = 1 sleep_mode = 0\n[   62.910473] sm5713_fg_get_property: psp = 0x13\n[   62.910994] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   62.911287] sm5713_fg_get_property: psp = 0x14\n[   63.212808] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 2 1\n[   64.493164] samsung-abox 14a50000.abox: Failed to request firmware\n[   64.761548] sm5713_fg_get_property: psp = 0x13\n[   64.762280] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   66.768488] sm5713_fg_get_property: psp = 0x13\n[   66.769654] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   67.692815] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[   68.332836] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[   68.774137] sm5713_fg_get_property: psp = 0x13\n[   68.775386] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   70.781541] sm5713_fg_get_property: psp = 0x13\n[   70.782275] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   72.788182] sm5713_fg_get_property: psp = 0x13\n[   72.789552] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   73.452811] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[   74.736083] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[   74.737982] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x02 5:0x00]\n[   74.794022] sm5713_fg_get_property: psp = 0x13\n[   74.795377] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   76.801517] sm5713_fg_get_property: psp = 0x13\n[   76.802247] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   78.808302] sm5713_fg_get_property: psp = 0x13\n[   78.809655] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   79.212855] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[   79.213001] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[   80.814033] sm5713_fg_get_property: psp = 0x13\n[   80.815406] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   82.821579] sm5713_fg_get_property: psp = 0x13\n[   82.822316] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   84.830682] CPU1: Booted secondary processor [410fd034]\n[   84.833859] cpu=1 set cpu scale 369 from energy model\n[   84.833902] cpu=1 set cpu scale 369 from energy model\n[   84.833929] cpu=1 set cpu scale 369 from energy model\n[   84.833960] cpu=0 set cpu scale 369 from energy model\n[   84.833984] cpu=0 set cpu scale 369 from energy model\n[   84.834009] cpu=0 set cpu scale 369 from energy model\n[   85.612979] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[   85.845093] 350 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 403 598 702 806 910 1053 1118 1222 1326 1456 1534 1638 1742\n               \n                403: \n[   89.956990] sm5713_fg_get_property: psp = 0x13\n[   89.958338] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   90.093006] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[   90.963937] sm5713_fg_get_property: psp = 0x13\n[   90.965228] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   91.372849] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[   91.970409] sm5713_fg_get_property: psp = 0x13\n[   91.971693] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   92.911086] sm5713_fg_get_property: psp = 0xd\n[   92.912272] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[   92.916134] sm5713_cal_avg_vbat: batt_avgvoltage = 3722\n[   92.916189] sm5713_fg_get_property: psp = 0xe\n[   92.916226] sm5713_fg_get_property: psp = 0xe\n[   92.916260] sm5713_fg_get_property: psp = 0x13\n[   92.917956] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   92.918925] sm5713_fg_get_property: psp = 0x14\n[   92.918966] sm5713_fg_get_property: psp = 0x8f\n[   92.919000] sm5713_fg_get_property: psp = 0x8f\n[   92.919047] sm5713_fg_get_property: psp = 0x21\n[   92.919082] sec_bat_get_battery_info: Fail to set psy ((null))\n[   92.921132] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(297), Temp-ADC(1786)\n[   92.922571] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(315), Temp-ADC(1732)\n[   92.922628] sm5713_fg_get_property: psp = 0x33\n[   92.924463] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[   92.926258] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[   92.929016] sm5713_cal_avg_vbat: batt_avgvoltage = 3723\n[   92.929893] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   92.930833] sm5713_vbatocv_check: mode change to mix RS auto mode\n[   92.932253] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 219 ,p_curr_cal = 0x7d, n_curr_cal = 0x87, batt_temp = 297\n[   92.932953] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7d, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877d\n[   92.932986] sm5713_get_soc: \n[   92.933735] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[   92.934010] sm5713_get_soc: read = 0x1162, soc = 173\n[   92.934043] sm5713_get_soc: batt_soc = 173, soc = 173\n[   92.936050] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0364, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[   92.938461] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80c4, 0x86=0x8005, 0x87=0x80c9, 0x1F=0x0064, 0x94=0x0030\n[   92.938752] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3726, v_avg=3723, i=-96, i_avg=-94, ocv=3737, fg_t=219, b_t=297, cycle=279, soc=173, state=0x8\n[   92.938787] sm5713_update_all_value : temp = 0xe99, t = 297 \n[   92.938820] sm5713_fg_get_scaled_capacity: scaled capacity (17.3)\n[   92.938869] sec_bat_get_battery_info:Vnow(3726mV),Vavg(3722mV),Inow(-96mA),Iavg(-94mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(297),Tusb(0),Tchg(315),Twpc(0)\n[   92.938969] sm5713_fg_get_property: psp = 0x31\n[   92.939012] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[   92.939270] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(297)\n[   92.939307] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[   92.939340] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[   92.940678] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[   92.940756] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[   92.940794] sm5713_fg_get_property: psp = 0x96\n[   92.940829] sm5713_fg_periodic_read: skip old(2) current(92)\n[   92.940877] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[   92.941121] sec_bat_get_property cable type = 1 sleep_mode = 0\n[   92.941190] sm5713_fg_get_property: psp = 0x13\n[   92.941285] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[   92.941909] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   92.942388] sm5713_fg_get_property: psp = 0x14\n[   92.976928] sm5713_fg_get_property: psp = 0x13\n[   92.978253] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   93.292799] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 3 2\n[   95.000732] sm5713_fg_get_property: psp = 0x13\n[   95.001824] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   96.007384] sm5713_fg_get_property: psp = 0x13\n[   96.008510] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   97.013773] sm5713_fg_get_property: psp = 0x13\n[   97.015103] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   97.133081] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[   98.020200] sm5713_fg_get_property: psp = 0x13\n[   98.021477] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[   99.026775] sm5713_fg_get_property: psp = 0x13\n[   99.028049] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  100.033257] sm5713_fg_get_property: psp = 0x13\n[  100.034519] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  101.039280] sm5713_fg_get_property: psp = 0x13\n[  101.040564] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  101.612812] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  102.046133] sm5713_fg_get_property: psp = 0x13\n[  102.047418] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  103.052703] sm5713_fg_get_property: psp = 0x13\n[  103.053951] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  103.533007] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  104.059061] sm5713_fg_get_property: psp = 0x13\n[  104.060348] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  105.065874] sm5713_fg_get_property: psp = 0x13\n[  105.067161] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  106.072248] sm5713_fg_get_property: psp = 0x13\n[  106.073385] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  107.078509] sm5713_fg_get_property: psp = 0x13\n[  107.079710] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  108.083977] sm5713_fg_get_property: psp = 0x13\n[  108.085261] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  109.090366] sm5713_fg_get_property: psp = 0x13\n[  109.091585] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  109.292651] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  110.096833] sm5713_fg_get_property: psp = 0x13\n[  110.098116] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  111.103322] sm5713_fg_get_property: psp = 0x13\n[  111.104581] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  112.109682] sm5713_fg_get_property: psp = 0x13\n[  112.110965] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  112.492825] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  113.116513] sm5713_fg_get_property: psp = 0x13\n[  113.117801] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  114.123361] sm5713_fg_get_property: psp = 0x13\n[  114.124665] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  115.129754] sm5713_fg_get_property: psp = 0x13\n[  115.131032] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  115.692788] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  116.136664] sm5713_fg_get_property: psp = 0x13\n[  116.137945] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  117.143192] sm5713_fg_get_property: psp = 0x13\n[  117.144451] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  118.149543] sm5713_fg_get_property: psp = 0x13\n[  118.150796] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  119.156378] sm5713_fg_get_property: psp = 0x13\n[  119.157665] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  120.162930] sm5713_fg_get_property: psp = 0x13\n[  120.164180] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  121.169269] sm5713_fg_get_property: psp = 0x13\n[  121.170562] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  121.452791] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  122.176094] sm5713_fg_get_property: psp = 0x13\n[  122.177377] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  122.941647] sm5713_fg_get_property: psp = 0xd\n[  122.942218] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  122.943538] sm5713_cal_avg_vbat: batt_avgvoltage = 3724\n[  122.943585] sm5713_fg_get_property: psp = 0xe\n[  122.943622] sm5713_fg_get_property: psp = 0xe\n[  122.943655] sm5713_fg_get_property: psp = 0x13\n[  122.944185] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  122.944474] sm5713_fg_get_property: psp = 0x14\n[  122.944511] sm5713_fg_get_property: psp = 0x8f\n[  122.944546] sm5713_fg_get_property: psp = 0x8f\n[  122.944592] sm5713_fg_get_property: psp = 0x21\n[  122.944626] sec_bat_get_battery_info: Fail to set psy ((null))\n[  122.945596] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(296), Temp-ADC(1793)\n[  122.946497] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(312), Temp-ADC(1747)\n[  122.946547] sm5713_fg_get_property: psp = 0x33\n[  122.947308] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  122.947803] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  122.949041] sm5713_cal_avg_vbat: batt_avgvoltage = 3725\n[  122.949576] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  122.950362] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  122.951662] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 215 ,p_curr_cal = 0x7d, n_curr_cal = 0x87, batt_temp = 296\n[  122.952334] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7d, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877d\n[  122.952366] sm5713_get_soc: \n[  122.953243] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  122.953527] sm5713_get_soc: read = 0x1162, soc = 173\n[  122.953562] sm5713_get_soc: batt_soc = 173, soc = 173\n[  122.955590] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0370, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  122.958124] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80d4, 0x86=0x8004, 0x87=0x80cf, 0x1F=0x0064, 0x94=0x0030\n[  122.958422] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3726, v_avg=3725, i=-99, i_avg=-97, ocv=3737, fg_t=215, b_t=296, cycle=279, soc=173, state=0x8\n[  122.958457] sm5713_update_all_value : temp = 0xe99, t = 296 \n[  122.958490] sm5713_fg_get_scaled_capacity: scaled capacity (17.3)\n[  122.958537] sec_bat_get_battery_info:Vnow(3726mV),Vavg(3724mV),Inow(-99mA),Iavg(-97mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(296),Tusb(0),Tchg(312),Twpc(0)\n[  122.958631] sm5713_fg_get_property: psp = 0x31\n[  122.958674] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  122.958935] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(296)\n[  122.958972] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  122.959006] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  122.960349] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  122.960428] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  122.960467] sm5713_fg_get_property: psp = 0x96\n[  122.960500] sm5713_fg_periodic_read: skip old(2) current(122)\n[  122.960548] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  122.960628] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  122.960805] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  122.960871] sm5713_fg_get_property: psp = 0x13\n[  122.961392] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  122.961685] sm5713_fg_get_property: psp = 0x14\n[  123.182928] sm5713_fg_get_property: psp = 0x13\n[  123.184244] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  123.372848] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  123.372970] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 4 3\n[  124.189336] sm5713_fg_get_property: psp = 0x13\n[  124.190605] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  125.195953] sm5713_fg_get_property: psp = 0x13\n[  125.197244] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  126.202337] sm5713_fg_get_property: psp = 0x13\n[  126.203527] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  127.208675] sm5713_fg_get_property: psp = 0x13\n[  127.209804] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  127.212865] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  128.213819] sm5713_fg_get_property: psp = 0x13\n[  128.215101] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  129.220201] sm5713_fg_get_property: psp = 0x13\n[  129.221483] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  130.226787] sm5713_fg_get_property: psp = 0x13\n[  130.228070] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  131.233284] sm5713_fg_get_property: psp = 0x13\n[  131.234542] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  132.240151] sm5713_fg_get_property: psp = 0x13\n[  132.241397] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  133.246915] sm5713_fg_get_property: psp = 0x13\n[  133.248195] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  133.612820] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  134.252692] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  134.253682] sm5713_fg_get_property: psp = 0x13\n[  134.254957] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  135.260033] sm5713_fg_get_property: psp = 0x13\n[  135.261320] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  136.176431] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[  136.178413] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[  136.266785] sm5713_fg_get_property: psp = 0x13\n[  136.268006] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  137.273156] sm5713_fg_get_property: psp = 0x13\n[  137.274428] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  138.279534] sm5713_fg_get_property: psp = 0x13\n[  138.280812] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  139.286358] sm5713_fg_get_property: psp = 0x13\n[  139.287643] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  139.372792] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  140.292932] sm5713_fg_get_property: psp = 0x13\n[  140.294109] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  141.299679] sm5713_fg_get_property: psp = 0x13\n[  141.300949] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  142.306482] sm5713_fg_get_property: psp = 0x13\n[  142.307769] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  143.313031] sm5713_fg_get_property: psp = 0x13\n[  143.314291] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  144.319389] sm5713_fg_get_property: psp = 0x13\n[  144.320658] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  145.133026] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  145.133172] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  145.326233] sm5713_fg_get_property: psp = 0x13\n[  145.327613] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  146.332784] sm5713_fg_get_property: psp = 0x13\n[  146.334038] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  147.339131] sm5713_fg_get_property: psp = 0x13\n[  147.340419] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  148.345957] sm5713_fg_get_property: psp = 0x13\n[  148.347241] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  149.352310] sm5713_fg_get_property: psp = 0x13\n[  149.353641] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  150.359037] sm5713_fg_get_property: psp = 0x13\n[  150.360127] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  151.365648] sm5713_fg_get_property: psp = 0x13\n[  151.366923] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  151.532789] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  152.372030] sm5713_fg_get_property: psp = 0x13\n[  152.373222] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  152.961283] sm5713_fg_get_property: psp = 0xd\n[  152.961954] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  152.963267] sm5713_cal_avg_vbat: batt_avgvoltage = 3725\n[  152.963314] sm5713_fg_get_property: psp = 0xe\n[  152.963351] sm5713_fg_get_property: psp = 0xe\n[  152.963385] sm5713_fg_get_property: psp = 0x13\n[  152.963914] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  152.964203] sm5713_fg_get_property: psp = 0x14\n[  152.964241] sm5713_fg_get_property: psp = 0x8f\n[  152.964276] sm5713_fg_get_property: psp = 0x8f\n[  152.964320] sm5713_fg_get_property: psp = 0x21\n[  152.964355] sec_bat_get_battery_info: Fail to set psy ((null))\n[  152.965326] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(295), Temp-ADC(1797)\n[  152.966226] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(309), Temp-ADC(1759)\n[  152.966278] sm5713_fg_get_property: psp = 0x33\n[  152.967042] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  152.967537] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  152.968770] sm5713_cal_avg_vbat: batt_avgvoltage = 3725\n[  152.969307] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  152.970094] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  152.971397] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 212 ,p_curr_cal = 0x7d, n_curr_cal = 0x87, batt_temp = 295\n[  152.972071] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7d, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877d\n[  152.972103] sm5713_get_soc: \n[  152.972914] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  152.973196] sm5713_get_soc: read = 0x1162, soc = 173\n[  152.973230] sm5713_get_soc: batt_soc = 173, soc = 173\n[  152.975249] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0378, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  152.977796] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80db, 0x86=0x0006, 0x87=0x80d1, 0x1F=0x0064, 0x94=0x0030\n[  152.978096] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3725, v_avg=3725, i=-100, i_avg=-98, ocv=3737, fg_t=212, b_t=295, cycle=279, soc=173, state=0x8\n[  152.978132] sm5713_update_all_value : temp = 0xe99, t = 295 \n[  152.978165] sm5713_fg_get_scaled_capacity: scaled capacity (17.3)\n[  152.978213] sec_bat_get_battery_info:Vnow(3725mV),Vavg(3725mV),Inow(-100mA),Iavg(-98mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(295),Tusb(0),Tchg(309),Twpc(0)\n[  152.978308] sm5713_fg_get_property: psp = 0x31\n[  152.978350] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  152.978611] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(295)\n[  152.978649] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  152.978682] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  152.980028] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  152.980106] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  152.980144] sm5713_fg_get_property: psp = 0x96\n[  152.980177] sm5713_fg_periodic_read: skip old(2) current(152)\n[  152.980225] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  152.980307] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  152.980489] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  152.980556] sm5713_fg_get_property: psp = 0x13\n[  152.981076] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  152.981375] sm5713_fg_get_property: psp = 0x14\n[  153.378328] sm5713_fg_get_property: psp = 0x13\n[  153.379603] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  153.452889] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 5 4\n[  154.383996] sm5713_fg_get_property: psp = 0x13\n[  154.385276] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  155.390740] sm5713_fg_get_property: psp = 0x13\n[  155.391752] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  156.396836] sm5713_fg_get_property: psp = 0x13\n[  156.398116] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  156.652813] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  157.292770] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  157.403501] sm5713_fg_get_property: psp = 0x13\n[  157.404777] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  158.409862] sm5713_fg_get_property: psp = 0x13\n[  158.411148] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  159.416655] sm5713_fg_get_property: psp = 0x13\n[  159.417962] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  160.423266] sm5713_fg_get_property: psp = 0x13\n[  160.424522] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  161.429613] sm5713_fg_get_property: psp = 0x13\n[  161.430888] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  162.436500] sm5713_fg_get_property: psp = 0x13\n[  162.437779] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  163.443033] sm5713_fg_get_property: psp = 0x13\n[  163.444296] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  163.692815] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  164.449439] sm5713_fg_get_property: psp = 0x13\n[  164.450718] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  165.456248] sm5713_fg_get_property: psp = 0x13\n[  165.457530] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  166.462812] sm5713_fg_get_property: psp = 0x13\n[  166.464064] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  167.469150] sm5713_fg_get_property: psp = 0x13\n[  167.470426] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  167.532844] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  168.476215] sm5713_fg_get_property: psp = 0x13\n[  168.477512] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  169.452814] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  169.482800] sm5713_fg_get_property: psp = 0x13\n[  169.484046] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  170.489144] sm5713_fg_get_property: psp = 0x13\n[  170.490409] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  171.496057] sm5713_fg_get_property: psp = 0x13\n[  171.497337] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  172.502992] sm5713_fg_get_property: psp = 0x13\n[  172.504294] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  173.509414] sm5713_fg_get_property: psp = 0x13\n[  173.510694] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  174.516231] sm5713_fg_get_property: psp = 0x13\n[  174.517519] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  175.212805] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  175.522823] sm5713_fg_get_property: psp = 0x13\n[  175.524082] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  176.529262] sm5713_fg_get_property: psp = 0x13\n[  176.530545] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  177.536090] sm5713_fg_get_property: psp = 0x13\n[  177.537363] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  178.413031] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  178.542444] sm5713_fg_get_property: psp = 0x13\n[  178.543868] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  179.548995] sm5713_fg_get_property: psp = 0x13\n[  179.550278] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  180.556092] sm5713_fg_get_property: psp = 0x13\n[  180.557411] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  181.562669] sm5713_fg_get_property: psp = 0x13\n[  181.563908] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  181.612808] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  182.569017] sm5713_fg_get_property: psp = 0x13\n[  182.570314] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  182.980971] sm5713_fg_get_property: psp = 0xd\n[  182.981841] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  182.983134] sm5713_cal_avg_vbat: batt_avgvoltage = 3725\n[  182.983181] sm5713_fg_get_property: psp = 0xe\n[  182.983217] sm5713_fg_get_property: psp = 0xe\n[  182.983251] sm5713_fg_get_property: psp = 0x13\n[  182.983780] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  182.984069] sm5713_fg_get_property: psp = 0x14\n[  182.984106] sm5713_fg_get_property: psp = 0x8f\n[  182.984140] sm5713_fg_get_property: psp = 0x8f\n[  182.984186] sm5713_fg_get_property: psp = 0x21\n[  182.984220] sec_bat_get_battery_info: Fail to set psy ((null))\n[  182.985193] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(294), Temp-ADC(1801)\n[  182.986093] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(307), Temp-ADC(1769)\n[  182.986144] sm5713_fg_get_property: psp = 0x33\n[  182.986839] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  182.987330] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  182.988564] sm5713_cal_avg_vbat: batt_avgvoltage = 3725\n[  182.989101] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  182.989886] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  182.991193] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 210 ,p_curr_cal = 0x7d, n_curr_cal = 0x87, batt_temp = 294\n[  182.991864] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7d, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877d\n[  182.991896] sm5713_get_soc: \n[  182.992768] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  182.993050] sm5713_get_soc: read = 0x1156, soc = 173\n[  182.993084] sm5713_get_soc: batt_soc = 173, soc = 173\n[  182.995195] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0380, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  182.997731] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80d0, 0x86=0x0001, 0x87=0x80cf, 0x1F=0x0064, 0x94=0x0030\n[  182.998030] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3725, v_avg=3725, i=-99, i_avg=-99, ocv=3737, fg_t=210, b_t=294, cycle=279, soc=173, state=0x8\n[  182.998066] sm5713_update_all_value : temp = 0xe99, t = 294 \n[  182.998099] sm5713_fg_get_scaled_capacity: scaled capacity (17.3)\n[  182.998147] sec_bat_get_battery_info:Vnow(3725mV),Vavg(3725mV),Inow(-99mA),Iavg(-99mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(294),Tusb(0),Tchg(307),Twpc(0)\n[  182.998240] sm5713_fg_get_property: psp = 0x31\n[  182.998282] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  182.998544] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(294)\n[  182.998580] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  182.998614] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  182.999959] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  183.000037] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  183.000076] sm5713_fg_get_property: psp = 0x96\n[  183.000109] sm5713_fg_periodic_read: skip old(2) current(182)\n[  183.000157] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  183.000240] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  183.000420] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  183.000488] sm5713_fg_get_property: psp = 0x13\n[  183.001010] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  183.001302] sm5713_fg_get_property: psp = 0x14\n[  183.532777] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 6 5\n[  183.576178] sm5713_fg_get_property: psp = 0x13\n[  183.577469] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  184.582961] sm5713_fg_get_property: psp = 0x13\n[  184.584190] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  185.589297] sm5713_fg_get_property: psp = 0x13\n[  185.590577] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  186.596105] sm5713_fg_get_property: psp = 0x13\n[  186.597385] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  187.372607] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  187.602646] sm5713_fg_get_property: psp = 0x13\n[  187.603884] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  188.609375] sm5713_fg_get_property: psp = 0x13\n[  188.610688] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  189.292811] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  189.616261] sm5713_fg_get_property: psp = 0x13\n[  189.617553] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  190.622820] sm5713_fg_get_property: psp = 0x13\n[  190.624081] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  191.629180] sm5713_fg_get_property: psp = 0x13\n[  191.630454] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  192.636310] sm5713_fg_get_property: psp = 0x13\n[  192.637562] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  193.132811] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  193.642880] sm5713_fg_get_property: psp = 0x13\n[  193.644129] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  194.649225] sm5713_fg_get_property: psp = 0x13\n[  194.650504] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  195.656030] sm5713_fg_get_property: psp = 0x13\n[  195.657310] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  196.663169] sm5713_fg_get_property: psp = 0x13\n[  196.664416] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  197.615969] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[  197.617915] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[  197.669531] sm5713_fg_get_property: psp = 0x13\n[  197.670799] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  198.676344] sm5713_fg_get_property: psp = 0x13\n[  198.677540] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  199.532788] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  199.682832] sm5713_fg_get_property: psp = 0x13\n[  199.684075] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  200.172668] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  200.689159] sm5713_fg_get_property: psp = 0x13\n[  200.690603] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  201.696322] sm5713_fg_get_property: psp = 0x13\n[  201.697607] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  202.702875] sm5713_fg_get_property: psp = 0x13\n[  202.704127] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  203.709240] sm5713_fg_get_property: psp = 0x13\n[  203.710526] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  204.716059] sm5713_fg_get_property: psp = 0x13\n[  204.717503] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  205.292804] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  205.722818] sm5713_fg_get_property: psp = 0x13\n[  205.724074] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  206.729177] sm5713_fg_get_property: psp = 0x13\n[  206.730452] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  207.735983] sm5713_fg_get_property: psp = 0x13\n[  207.737257] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  208.742354] sm5713_fg_get_property: psp = 0x13\n[  208.743902] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  209.749097] sm5713_fg_get_property: psp = 0x13\n[  209.750370] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  210.755898] sm5713_fg_get_property: psp = 0x13\n[  210.757167] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  211.693013] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  211.693158] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  211.762258] sm5713_fg_get_property: psp = 0x13\n[  211.763386] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  212.768498] sm5713_fg_get_property: psp = 0x13\n[  212.769793] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  213.000903] sm5713_fg_get_property: psp = 0xd\n[  213.001876] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  213.003157] sm5713_cal_avg_vbat: batt_avgvoltage = 3725\n[  213.003202] sm5713_fg_get_property: psp = 0xe\n[  213.003239] sm5713_fg_get_property: psp = 0xe\n[  213.003273] sm5713_fg_get_property: psp = 0x13\n[  213.003802] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  213.004090] sm5713_fg_get_property: psp = 0x14\n[  213.004127] sm5713_fg_get_property: psp = 0x8f\n[  213.004162] sm5713_fg_get_property: psp = 0x8f\n[  213.004208] sm5713_fg_get_property: psp = 0x21\n[  213.004242] sec_bat_get_battery_info: Fail to set psy ((null))\n[  213.005212] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(293), Temp-ADC(1804)\n[  213.006177] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(305), Temp-ADC(1777)\n[  213.006228] sm5713_fg_get_property: psp = 0x33\n[  213.006928] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  213.007418] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  213.008663] sm5713_cal_avg_vbat: batt_avgvoltage = 3725\n[  213.009200] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  213.009978] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  213.011289] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 207 ,p_curr_cal = 0x7d, n_curr_cal = 0x87, batt_temp = 293\n[  213.011952] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7d, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877d\n[  213.011983] sm5713_get_soc: \n[  213.012824] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  213.013106] sm5713_get_soc: read = 0x1156, soc = 173\n[  213.013141] sm5713_get_soc: batt_soc = 173, soc = 173\n[  213.015168] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03b0, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  213.017684] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80d7, 0x86=0x0001, 0x87=0x80d3, 0x1F=0x0064, 0x94=0x0030\n[  213.017983] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3725, v_avg=3725, i=-101, i_avg=-99, ocv=3737, fg_t=207, b_t=293, cycle=279, soc=173, state=0x8\n[  213.018018] sm5713_update_all_value : temp = 0xe99, t = 293 \n[  213.018051] sm5713_fg_get_scaled_capacity: scaled capacity (17.3)\n[  213.018099] sec_bat_get_battery_info:Vnow(3725mV),Vavg(3725mV),Inow(-101mA),Iavg(-99mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(293),Tusb(0),Tchg(305),Twpc(0)\n[  213.018194] sm5713_fg_get_property: psp = 0x31\n[  213.018236] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  213.018497] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(293)\n[  213.018534] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  213.018568] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  213.019909] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  213.019987] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  213.020025] sm5713_fg_get_property: psp = 0x96\n[  213.086781] [FG_ALL] 00:0000,c601,0000,000e,0000,1156,1de7,1dcd,80d0,14c0,0117,1dc0,0319,0480,3c8a,0100,01:0010,ffff,0003,0017,0000,7003,ffff,ffff,ffff,1dc3,0a0a,0103,0004,ffff,0040,0064,02:04e1,03e6,ffff,0001,00a4,0146,3800,0078,03b0,00a4,060a,0048,ffff,000e,1f6b,0318,03:1f78,1f78,1f79,1f79,1f79,1f7a,1f7a,1f79,1f59,1f58,1f58,1f59,1f58,1f59,1f58,1f58,04:1f78,1f79,1f7a,1f7a,1f7a,1f79,1f79,1f7a,1f5a,1f59,1f59,1f5a,1f59,1f58,1f59,1f59,05:400f,400e,400e,400e,400e,400f,400f,400e,4014,400e,4012,400f,4012,4011,4013,4010,06:859a,9093,29e2,0000,0000,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,8012,08:0008,8002,0000,ffff,801c,80df,0001,80d3,0744,5904,0000,0000,0000,ffff,ffff,ffff,09:0040,a000,0000,0000,0030,0201,0100,0153,0000,0000,0000,0000,0325,0000,0000,ffff,0a:1400,1b33,1c2a,1d6c,1d86,1da2,1dbb,1ddb,1df0,1e30,1e4f,1e5d,1e7e,1ea7,1edc,1f3d,0b:1f6f,1fa0,1ff1,2050,2082,20ee,2239,2400,0000,004c,0166,044c,0733,0a00,0ce6,0fcc,\n\n[  213.086884] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  213.086965] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  213.087134] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  213.087203] sm5713_fg_get_property: psp = 0x13\n[  213.087734] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  213.088026] sm5713_fg_get_property: psp = 0x14\n[  213.612782] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 7 6\n[  213.775594] sm5713_fg_get_property: psp = 0x13\n[  213.776841] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  214.781924] sm5713_fg_get_property: psp = 0x13\n[  214.782843] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  215.787974] sm5713_fg_get_property: psp = 0x13\n[  215.789254] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  216.793990] sm5713_fg_get_property: psp = 0x13\n[  216.795273] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  217.452784] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  217.800346] sm5713_fg_get_property: psp = 0x13\n[  217.801644] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  218.806894] sm5713_fg_get_property: psp = 0x13\n[  218.808177] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  219.813384] sm5713_fg_get_property: psp = 0x13\n[  219.814656] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  220.819765] sm5713_fg_get_property: psp = 0x13\n[  220.821050] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  221.826569] sm5713_fg_get_property: psp = 0x13\n[  221.827848] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  222.572811] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  222.833380] sm5713_fg_get_property: psp = 0x13\n[  222.834600] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  223.212785] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  223.839706] sm5713_fg_get_property: psp = 0x13\n[  223.840974] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  224.846526] sm5713_fg_get_property: psp = 0x13\n[  224.847810] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  225.853078] sm5713_fg_get_property: psp = 0x13\n[  225.854334] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  226.859925] sm5713_fg_get_property: psp = 0x13\n[  226.861152] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  227.866701] sm5713_fg_get_property: psp = 0x13\n[  227.867979] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  228.873214] sm5713_fg_get_property: psp = 0x13\n[  228.874470] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  229.612783] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  229.879573] sm5713_fg_get_property: psp = 0x13\n[  229.880869] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  230.886412] sm5713_fg_get_property: psp = 0x13\n[  230.887536] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  231.893040] sm5713_fg_get_property: psp = 0x13\n[  231.894278] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  232.899370] sm5713_fg_get_property: psp = 0x13\n[  232.900645] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  233.452835] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  233.906213] sm5713_fg_get_property: psp = 0x13\n[  233.907490] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  234.912758] sm5713_fg_get_property: psp = 0x13\n[  234.914011] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  235.372785] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  235.919158] sm5713_fg_get_property: psp = 0x13\n[  235.920472] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  236.926149] sm5713_fg_get_property: psp = 0x13\n[  236.927438] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  237.932740] sm5713_fg_get_property: psp = 0x13\n[  237.933981] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  238.939083] sm5713_fg_get_property: psp = 0x13\n[  238.940359] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  239.946260] sm5713_fg_get_property: psp = 0x13\n[  239.947477] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  240.952782] sm5713_fg_get_property: psp = 0x13\n[  240.954031] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  241.132862] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  241.959130] sm5713_fg_get_property: psp = 0x13\n[  241.960401] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  242.965955] sm5713_fg_get_property: psp = 0x13\n[  242.967232] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  243.087629] sm5713_fg_get_property: psp = 0xd\n[  243.088550] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  243.091159] sm5713_cal_avg_vbat: batt_avgvoltage = 3724\n[  243.091206] sm5713_fg_get_property: psp = 0xe\n[  243.091242] sm5713_fg_get_property: psp = 0xe\n[  243.091276] sm5713_fg_get_property: psp = 0x13\n[  243.092034] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  243.092324] sm5713_fg_get_property: psp = 0x14\n[  243.092362] sm5713_fg_get_property: psp = 0x8f\n[  243.092397] sm5713_fg_get_property: psp = 0x8f\n[  243.092542] sm5713_fg_get_property: psp = 0x21\n[  243.092579] sec_bat_get_battery_info: Fail to set psy ((null))\n[  243.093553] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(292), Temp-ADC(1808)\n[  243.094453] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(304), Temp-ADC(1784)\n[  243.094505] sm5713_fg_get_property: psp = 0x33\n[  243.095730] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  243.096746] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  243.098763] sm5713_cal_avg_vbat: batt_avgvoltage = 3724\n[  243.099289] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  243.100056] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  243.101354] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 205 ,p_curr_cal = 0x7d, n_curr_cal = 0x87, batt_temp = 292\n[  243.102031] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7d, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877d\n[  243.102063] sm5713_get_soc: \n[  243.102871] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  243.103153] sm5713_get_soc: read = 0x1156, soc = 173\n[  243.103187] sm5713_get_soc: batt_soc = 173, soc = 173\n[  243.105259] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03bc, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  243.107807] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80e5, 0x86=0x8001, 0x87=0x80df, 0x1F=0x0064, 0x94=0x0030\n[  243.108107] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3724, v_avg=3724, i=-107, i_avg=-103, ocv=3737, fg_t=205, b_t=292, cycle=279, soc=173, state=0x8\n[  243.108143] sm5713_update_all_value : temp = 0xe99, t = 292 \n[  243.108176] sm5713_fg_get_scaled_capacity: scaled capacity (17.3)\n[  243.108223] sec_bat_get_battery_info:Vnow(3724mV),Vavg(3724mV),Inow(-107mA),Iavg(-102mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(292),Tusb(0),Tchg(304),Twpc(0)\n[  243.108317] sm5713_fg_get_property: psp = 0x31\n[  243.108359] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  243.108624] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(292)\n[  243.108660] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  243.108694] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  243.110039] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  243.110117] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  243.110154] sm5713_fg_get_property: psp = 0x96\n[  243.110188] sm5713_fg_periodic_read: skip old(213) current(243)\n[  243.110237] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  243.110322] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  243.110506] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  243.110572] sm5713_fg_get_property: psp = 0x13\n[  243.111096] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  243.111390] sm5713_fg_get_property: psp = 0x14\n[  243.692775] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 8 7\n[  243.972322] sm5713_fg_get_property: psp = 0x13\n[  243.973653] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  244.332820] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  244.978445] sm5713_fg_get_property: psp = 0x13\n[  244.979723] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  245.983980] sm5713_fg_get_property: psp = 0x13\n[  245.985262] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  246.990327] sm5713_fg_get_property: psp = 0x13\n[  246.991604] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  247.532783] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  247.996954] sm5713_fg_get_property: psp = 0x13\n[  247.998228] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  249.003573] sm5713_fg_get_property: psp = 0x13\n[  249.004697] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  250.009808] sm5713_fg_get_property: psp = 0x13\n[  250.011090] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  251.016616] sm5713_fg_get_property: psp = 0x13\n[  251.017914] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  252.023157] sm5713_fg_get_property: psp = 0x13\n[  252.024417] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  253.029511] sm5713_fg_get_property: psp = 0x13\n[  253.030796] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  253.293036] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  254.036513] sm5713_fg_get_property: psp = 0x13\n[  254.037797] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  255.043043] sm5713_fg_get_property: psp = 0x13\n[  255.044311] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  255.212832] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  256.049410] sm5713_fg_get_property: psp = 0x13\n[  256.050690] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  257.056248] sm5713_fg_get_property: psp = 0x13\n[  257.057530] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  258.062373] sm5713_fg_get_property: psp = 0x13\n[  258.063819] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  259.055772] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[  259.057642] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[  259.068953] sm5713_fg_get_property: psp = 0x13\n[  259.070215] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  259.692786] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  260.075731] sm5713_fg_get_property: psp = 0x13\n[  260.077013] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  261.082122] sm5713_fg_get_property: psp = 0x13\n[  261.083295] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  262.088566] sm5713_fg_get_property: psp = 0x13\n[  262.089881] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  263.095466] sm5713_fg_get_property: psp = 0x13\n[  263.096673] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  264.101779] sm5713_fg_get_property: psp = 0x13\n[  264.102624] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  265.107475] sm5713_fg_get_property: psp = 0x13\n[  265.108751] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  265.452783] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  266.092826] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  266.113888] sm5713_fg_get_property: psp = 0x13\n[  266.115166] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  267.120215] sm5713_fg_get_property: psp = 0x13\n[  267.121497] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  268.126920] sm5713_fg_get_property: psp = 0x13\n[  268.128202] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  269.133548] sm5713_fg_get_property: psp = 0x13\n[  269.134831] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  270.139919] sm5713_fg_get_property: psp = 0x13\n[  270.141197] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  271.146665] sm5713_fg_get_property: psp = 0x13\n[  271.148119] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  271.212806] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  272.153536] sm5713_fg_get_property: psp = 0x13\n[  272.154818] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  273.110984] sm5713_fg_get_property: psp = 0xd\n[  273.111848] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  273.113106] sm5713_cal_avg_vbat: batt_avgvoltage = 3724\n[  273.113152] sm5713_fg_get_property: psp = 0xe\n[  273.113188] sm5713_fg_get_property: psp = 0xe\n[  273.113221] sm5713_fg_get_property: psp = 0x13\n[  273.113747] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  273.114033] sm5713_fg_get_property: psp = 0x14\n[  273.114071] sm5713_fg_get_property: psp = 0x8f\n[  273.114105] sm5713_fg_get_property: psp = 0x8f\n[  273.114150] sm5713_fg_get_property: psp = 0x21\n[  273.114185] sec_bat_get_battery_info: Fail to set psy ((null))\n[  273.115154] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(292), Temp-ADC(1811)\n[  273.116055] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(302), Temp-ADC(1790)\n[  273.116106] sm5713_fg_get_property: psp = 0x33\n[  273.116799] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  273.117292] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  273.118526] sm5713_cal_avg_vbat: batt_avgvoltage = 3724\n[  273.119059] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  273.119844] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  273.121219] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 203 ,p_curr_cal = 0x7d, n_curr_cal = 0x87, batt_temp = 292\n[  273.121893] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7d, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877d\n[  273.121925] sm5713_get_soc: \n[  273.122793] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  273.123074] sm5713_get_soc: read = 0x1149, soc = 172\n[  273.123109] sm5713_get_soc: batt_soc = 172, soc = 172\n[  273.125141] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03a4, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  273.127687] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80d1, 0x86=0x8004, 0x87=0x80d1, 0x1F=0x0064, 0x94=0x0030\n[  273.127985] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3724, v_avg=3724, i=-100, i_avg=-103, ocv=3737, fg_t=203, b_t=292, cycle=279, soc=172, state=0x8\n[  273.128021] sm5713_update_all_value : temp = 0xe99, t = 292 \n[  273.128053] sm5713_fg_get_scaled_capacity: scaled capacity (17.2)\n[  273.128101] sec_bat_get_battery_info:Vnow(3724mV),Vavg(3724mV),Inow(-100mA),Iavg(-103mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(292),Tusb(0),Tchg(302),Twpc(0)\n[  273.128195] sm5713_fg_get_property: psp = 0x31\n[  273.128238] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  273.128501] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(292)\n[  273.128538] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  273.128571] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  273.129914] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  273.129991] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  273.130028] sm5713_fg_get_property: psp = 0x96\n[  273.130062] sm5713_fg_periodic_read: skip old(213) current(273)\n[  273.130112] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  273.130192] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  273.130372] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  273.130440] sm5713_fg_get_property: psp = 0x13\n[  273.130959] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  273.131253] sm5713_fg_get_property: psp = 0x14\n[  273.159907] sm5713_fg_get_property: psp = 0x13\n[  273.160736] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  273.772607] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 9 8\n[  274.165823] sm5713_fg_get_property: psp = 0x13\n[  274.167113] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  275.172191] sm5713_fg_get_property: psp = 0x13\n[  275.173327] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  276.178968] sm5713_fg_get_property: psp = 0x13\n[  276.180186] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  277.185669] sm5713_fg_get_property: psp = 0x13\n[  277.186950] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  277.612828] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  277.612972] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  278.192013] sm5713_fg_get_property: psp = 0x13\n[  278.193224] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  279.198354] sm5713_fg_get_property: psp = 0x13\n[  279.199643] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  280.204047] sm5713_fg_get_property: psp = 0x13\n[  280.205364] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  281.210768] sm5713_fg_get_property: psp = 0x13\n[  281.211881] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  282.216881] sm5713_fg_get_property: psp = 0x13\n[  282.218162] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  283.223384] sm5713_fg_get_property: psp = 0x13\n[  283.224632] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  283.372814] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  284.229734] sm5713_fg_get_property: psp = 0x13\n[  284.231030] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  285.236536] sm5713_fg_get_property: psp = 0x13\n[  285.237940] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  286.243091] sm5713_fg_get_property: psp = 0x13\n[  286.244342] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  287.249434] sm5713_fg_get_property: psp = 0x13\n[  287.250716] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  288.256256] sm5713_fg_get_property: psp = 0x13\n[  288.257535] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  288.492845] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  289.132619] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  289.262862] sm5713_fg_get_property: psp = 0x13\n[  289.264095] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  290.269546] sm5713_fg_get_property: psp = 0x13\n[  290.270862] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  291.276414] sm5713_fg_get_property: psp = 0x13\n[  291.277709] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  292.282994] sm5713_fg_get_property: psp = 0x13\n[  292.284252] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  293.289350] sm5713_fg_get_property: psp = 0x13\n[  293.290628] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  294.296380] sm5713_fg_get_property: psp = 0x13\n[  294.297697] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  295.302983] sm5713_fg_get_property: psp = 0x13\n[  295.304250] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  295.532822] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  296.309358] sm5713_fg_get_property: psp = 0x13\n[  296.310630] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  297.316174] sm5713_fg_get_property: psp = 0x13\n[  297.317459] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  298.323322] sm5713_fg_get_property: psp = 0x13\n[  298.324575] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  299.329683] sm5713_fg_get_property: psp = 0x13\n[  299.330948] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  299.372833] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  300.336471] sm5713_fg_get_property: psp = 0x13\n[  300.337765] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  301.292783] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  301.343029] sm5713_fg_get_property: psp = 0x13\n[  301.344294] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  302.349384] sm5713_fg_get_property: psp = 0x13\n[  302.350838] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  303.130850] sm5713_fg_get_property: psp = 0xd\n[  303.131805] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  303.133152] sm5713_cal_avg_vbat: batt_avgvoltage = 3724\n[  303.133201] sm5713_fg_get_property: psp = 0xe\n[  303.133238] sm5713_fg_get_property: psp = 0xe\n[  303.133270] sm5713_fg_get_property: psp = 0x13\n[  303.133810] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  303.134098] sm5713_fg_get_property: psp = 0x14\n[  303.134136] sm5713_fg_get_property: psp = 0x8f\n[  303.134171] sm5713_fg_get_property: psp = 0x8f\n[  303.134216] sm5713_fg_get_property: psp = 0x21\n[  303.134251] sec_bat_get_battery_info: Fail to set psy ((null))\n[  303.135221] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(291), Temp-ADC(1813)\n[  303.136156] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(301), Temp-ADC(1795)\n[  303.136207] sm5713_fg_get_property: psp = 0x33\n[  303.136910] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  303.137410] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  303.138631] sm5713_cal_avg_vbat: batt_avgvoltage = 3724\n[  303.139170] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  303.139954] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  303.141242] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 201 ,p_curr_cal = 0x7d, n_curr_cal = 0x87, batt_temp = 291\n[  303.141913] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7d, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877d\n[  303.141945] sm5713_get_soc: \n[  303.142807] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  303.143088] sm5713_get_soc: read = 0x1149, soc = 172\n[  303.143123] sm5713_get_soc: batt_soc = 172, soc = 172\n[  303.145162] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03a0, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  303.147701] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80c9, 0x86=0x0001, 0x87=0x80d2, 0x1F=0x0064, 0x94=0x0030\n[  303.148000] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3725, v_avg=3724, i=-101, i_avg=-99, ocv=3737, fg_t=201, b_t=291, cycle=279, soc=172, state=0x8\n[  303.148035] sm5713_update_all_value : temp = 0xe99, t = 291 \n[  303.148068] sm5713_fg_get_scaled_capacity: scaled capacity (17.2)\n[  303.148116] sec_bat_get_battery_info:Vnow(3725mV),Vavg(3724mV),Inow(-101mA),Iavg(-99mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(291),Tusb(0),Tchg(301),Twpc(0)\n[  303.148210] sm5713_fg_get_property: psp = 0x31\n[  303.148251] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  303.148513] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(291)\n[  303.148550] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  303.148583] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  303.149925] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  303.150002] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  303.150039] sm5713_fg_get_property: psp = 0x96\n[  303.150073] sm5713_fg_periodic_read: skip old(213) current(303)\n[  303.150123] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  303.150204] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  303.150378] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  303.150445] sm5713_fg_get_property: psp = 0x13\n[  303.150963] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  303.151256] sm5713_fg_get_property: psp = 0x14\n[  303.356592] sm5713_fg_get_property: psp = 0x13\n[  303.357873] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  303.852781] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 10 9\n[  304.363129] sm5713_fg_get_property: psp = 0x13\n[  304.364390] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  305.369495] sm5713_fg_get_property: psp = 0x13\n[  305.370782] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  306.376304] sm5713_fg_get_property: psp = 0x13\n[  306.377585] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  307.383149] sm5713_fg_get_property: psp = 0x13\n[  307.384439] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  307.692811] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  308.389548] sm5713_fg_get_property: psp = 0x13\n[  308.390832] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  309.396358] sm5713_fg_get_property: psp = 0x13\n[  309.397648] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  310.252815] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  310.402941] sm5713_fg_get_property: psp = 0x13\n[  310.404197] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  311.409272] sm5713_fg_get_property: psp = 0x13\n[  311.410622] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  312.416055] sm5713_fg_get_property: psp = 0x13\n[  312.417335] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  313.422391] sm5713_fg_get_property: psp = 0x13\n[  313.423832] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  313.452847] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  314.428966] sm5713_fg_get_property: psp = 0x13\n[  314.430246] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  315.435767] sm5713_fg_get_property: psp = 0x13\n[  315.437045] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  316.442700] sm5713_fg_get_property: psp = 0x13\n[  316.443984] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  317.449094] sm5713_fg_get_property: psp = 0x13\n[  317.450369] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  318.455885] sm5713_fg_get_property: psp = 0x13\n[  318.457166] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  319.212785] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  319.462256] sm5713_fg_get_property: psp = 0x13\n[  319.463383] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  320.468490] sm5713_fg_get_property: psp = 0x13\n[  320.469768] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  320.498721] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x02 5:0x00]\n[  320.502186] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[  321.132823] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  321.474098] sm5713_fg_get_property: psp = 0x13\n[  321.475363] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  322.480459] sm5713_fg_get_property: psp = 0x13\n[  322.481741] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  323.516168]  1308     3.2 C/MHz     23 mW    5.2 J   57.5 I/mJ   229.3 s\n                598: \n[  325.612910] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  327.627494] sm5713_fg_get_property: psp = 0x13\n[  327.628685] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  328.633262] sm5713_fg_get_property: psp = 0x13\n[  328.634411] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  329.638850] sm5713_fg_get_property: psp = 0x13\n[  329.640010] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  330.643748] sm5713_fg_get_property: psp = 0x13\n[  330.644931] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  331.372773] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  332.652752] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  332.662282] sm5713_fg_get_property: psp = 0x13\n[  332.663388] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  333.150805] sm5713_fg_get_property: psp = 0xd\n[  333.151746] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  333.152872] sm5713_cal_avg_vbat: batt_avgvoltage = 3724\n[  333.152908] sm5713_fg_get_property: psp = 0xe\n[  333.152934] sm5713_fg_get_property: psp = 0xe\n[  333.152957] sm5713_fg_get_property: psp = 0x13\n[  333.153421] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  333.153669] sm5713_fg_get_property: psp = 0x14\n[  333.153695] sm5713_fg_get_property: psp = 0x8f\n[  333.153719] sm5713_fg_get_property: psp = 0x8f\n[  333.153753] sm5713_fg_get_property: psp = 0x21\n[  333.153778] sec_bat_get_battery_info: Fail to set psy ((null))\n[  333.154624] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(291), Temp-ADC(1815)\n[  333.155413] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(300), Temp-ADC(1800)\n[  333.155448] sm5713_fg_get_property: psp = 0x33\n[  333.156046] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  333.156475] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  333.157571] sm5713_cal_avg_vbat: batt_avgvoltage = 3724\n[  333.158034] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  333.158710] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  333.159822] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 201 ,p_curr_cal = 0x7d, n_curr_cal = 0x87, batt_temp = 291\n[  333.160392] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7d, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877d\n[  333.160415] sm5713_get_soc: \n[  333.161088] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  333.161331] sm5713_get_soc: read = 0x113d, soc = 172\n[  333.161355] sm5713_get_soc: batt_soc = 172, soc = 172\n[  333.163253] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03b0, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  333.165442] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80ce, 0x86=0x8002, 0x87=0x80d8, 0x1F=0x0064, 0x94=0x0030\n[  333.165696] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3724, v_avg=3724, i=-104, i_avg=-101, ocv=3737, fg_t=201, b_t=291, cycle=279, soc=172, state=0x8\n[  333.165721] sm5713_update_all_value : temp = 0xe99, t = 291 \n[  333.165744] sm5713_fg_get_scaled_capacity: scaled capacity (17.2)\n[  333.165778] sec_bat_get_battery_info:Vnow(3724mV),Vavg(3724mV),Inow(-104mA),Iavg(-101mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(291),Tusb(0),Tchg(300),Twpc(0)\n[  333.165847] sm5713_fg_get_property: psp = 0x31\n[  333.165878] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  333.166102] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(291)\n[  333.166128] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  333.166151] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  333.167377] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  333.167430] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  333.167457] sm5713_fg_get_property: psp = 0x96\n[  333.167481] sm5713_fg_periodic_read: skip old(213) current(333)\n[  333.167515] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  333.167572] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  333.167705] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  333.167752] sm5713_fg_get_property: psp = 0x13\n[  333.168204] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  333.168455] sm5713_fg_get_property: psp = 0x14\n[  333.668102] sm5713_fg_get_property: psp = 0x13\n[  333.669225] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  333.932718] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 11 10\n[  334.673692] sm5713_fg_get_property: psp = 0x13\n[  334.674826] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  335.679203] sm5713_fg_get_property: psp = 0x13\n[  335.680329] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  336.685200] sm5713_fg_get_property: psp = 0x13\n[  336.686370] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  337.132735] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  337.690775] sm5713_fg_get_property: psp = 0x13\n[  337.691796] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  338.696320] sm5713_fg_get_property: psp = 0x13\n[  338.697449] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  339.701831] sm5713_fg_get_property: psp = 0x13\n[  339.702580] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  340.706709] sm5713_fg_get_property: psp = 0x13\n[  340.707832] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  341.712220] sm5713_fg_get_property: psp = 0x13\n[  341.713249] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  342.718137] sm5713_fg_get_property: psp = 0x13\n[  342.719203] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  343.532749] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  343.532872] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  343.723651] sm5713_fg_get_property: psp = 0x13\n[  343.724765] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  344.729169] sm5713_fg_get_property: psp = 0x13\n[  344.730297] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  345.733727] sm5713_fg_get_property: psp = 0x13\n[  345.734847] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  346.739222] sm5713_fg_get_property: psp = 0x13\n[  346.740351] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  347.745104] sm5713_fg_get_property: psp = 0x13\n[  347.746228] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  348.750625] sm5713_fg_get_property: psp = 0x13\n[  348.751747] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  349.292723] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  349.756314] sm5713_fg_get_property: psp = 0x13\n[  349.757443] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  350.761837] sm5713_fg_get_property: psp = 0x13\n[  350.762584] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  351.766693] sm5713_fg_get_property: psp = 0x13\n[  351.767815] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  352.772198] sm5713_fg_get_property: psp = 0x13\n[  352.773257] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  353.777695] sm5713_fg_get_property: psp = 0x13\n[  353.778812] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  354.412744] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  354.783295] sm5713_fg_get_property: psp = 0x13\n[  354.784408] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  355.692719] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  355.788805] sm5713_fg_get_property: psp = 0x13\n[  355.789920] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  356.793939] sm5713_fg_get_property: psp = 0x13\n[  356.795031] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  357.799464] sm5713_fg_get_property: psp = 0x13\n[  357.800584] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  358.805325] sm5713_fg_get_property: psp = 0x13\n[  358.806447] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  359.810829] sm5713_fg_get_property: psp = 0x13\n[  359.811781] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  360.816340] sm5713_fg_get_property: psp = 0x13\n[  360.817472] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  361.452893] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  361.821856] sm5713_fg_get_property: psp = 0x13\n[  361.822596] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  362.826708] sm5713_fg_get_property: psp = 0x13\n[  362.827830] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  363.168075] sm5713_fg_get_property: psp = 0xd\n[  363.169016] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  363.171428] sm5713_cal_avg_vbat: batt_avgvoltage = 3723\n[  363.171461] sm5713_fg_get_property: psp = 0xe\n[  363.171487] sm5713_fg_get_property: psp = 0xe\n[  363.171510] sm5713_fg_get_property: psp = 0x13\n[  363.171975] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  363.172224] sm5713_fg_get_property: psp = 0x14\n[  363.172250] sm5713_fg_get_property: psp = 0x8f\n[  363.172273] sm5713_fg_get_property: psp = 0x8f\n[  363.172306] sm5713_fg_get_property: psp = 0x21\n[  363.172331] sec_bat_get_battery_info: Fail to set psy ((null))\n[  363.173527] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(290), Temp-ADC(1817)\n[  363.174798] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(300), Temp-ADC(1803)\n[  363.174842] sm5713_fg_get_property: psp = 0x33\n[  363.176071] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  363.177013] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  363.179096] sm5713_cal_avg_vbat: batt_avgvoltage = 3723\n[  363.179562] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  363.180293] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  363.181398] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 200 ,p_curr_cal = 0x7d, n_curr_cal = 0x87, batt_temp = 290\n[  363.181967] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7d, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877d\n[  363.181989] sm5713_get_soc: \n[  363.182748] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  363.182990] sm5713_get_soc: read = 0x113d, soc = 172\n[  363.183013] sm5713_get_soc: batt_soc = 172, soc = 172\n[  363.184771] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03b0, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  363.186963] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80e8, 0x86=0x0009, 0x87=0x80de, 0x1F=0x0064, 0x94=0x0030\n[  363.187215] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3723, v_avg=3723, i=-106, i_avg=-104, ocv=3737, fg_t=200, b_t=290, cycle=279, soc=172, state=0x8\n[  363.187241] sm5713_update_all_value : temp = 0xe99, t = 290 \n[  363.187263] sm5713_fg_get_scaled_capacity: scaled capacity (17.2)\n[  363.187298] sec_bat_get_battery_info:Vnow(3723mV),Vavg(3723mV),Inow(-106mA),Iavg(-104mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(290),Tusb(0),Tchg(300),Twpc(0)\n[  363.187368] sm5713_fg_get_property: psp = 0x31\n[  363.187399] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  363.187622] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(290)\n[  363.187649] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  363.187673] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  363.188900] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  363.188954] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  363.188980] sm5713_fg_get_property: psp = 0x96\n[  363.189004] sm5713_fg_periodic_read: skip old(213) current(363)\n[  363.189039] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  363.189102] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  363.189244] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  363.189290] sm5713_fg_get_property: psp = 0x13\n[  363.189750] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  363.189997] sm5713_fg_get_property: psp = 0x14\n[  363.832626] sm5713_fg_get_property: psp = 0x13\n[  363.833758] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  364.012719] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 12 11\n[  364.838189] sm5713_fg_get_property: psp = 0x13\n[  364.839314] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  365.292749] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  365.843735] sm5713_fg_get_property: psp = 0x13\n[  365.844863] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  366.849240] sm5713_fg_get_property: psp = 0x13\n[  366.850362] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  367.212727] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  367.855067] sm5713_fg_get_property: psp = 0x13\n[  367.856203] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  368.860588] sm5713_fg_get_property: psp = 0x13\n[  368.861804] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  369.866121] sm5713_fg_get_property: psp = 0x13\n[  369.867243] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  370.871626] sm5713_fg_get_property: psp = 0x13\n[  370.872256] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  371.876480] sm5713_fg_get_property: psp = 0x13\n[  371.877608] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  372.882008] sm5713_fg_get_property: psp = 0x13\n[  372.882870] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  373.612719] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  373.887303] sm5713_fg_get_property: psp = 0x13\n[  373.888426] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  374.893101] sm5713_fg_get_property: psp = 0x13\n[  374.894244] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  375.898670] sm5713_fg_get_property: psp = 0x13\n[  375.899784] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  376.172749] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  376.903738] sm5713_fg_get_property: psp = 0x13\n[  376.904872] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  377.909262] sm5713_fg_get_property: psp = 0x13\n[  377.910396] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  378.915111] sm5713_fg_get_property: psp = 0x13\n[  378.916240] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  379.372568] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  379.920637] sm5713_fg_get_property: psp = 0x13\n[  379.921762] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  380.926466] sm5713_fg_get_property: psp = 0x13\n[  380.927622] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  381.932024] sm5713_fg_get_property: psp = 0x13\n[  381.933255] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  381.935672] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[  381.935989] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[  382.939932] sm5713_fg_get_property: psp = 0x13\n[  382.941091] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  383.945809] sm5713_fg_get_property: psp = 0x13\n[  383.946928] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  384.951332] sm5713_fg_get_property: psp = 0x13\n[  384.952070] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  385.132743] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  385.956529] sm5713_fg_get_property: psp = 0x13\n[  385.957685] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  386.962086] sm5713_fg_get_property: psp = 0x13\n[  386.963161] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  387.692745] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  387.967592] sm5713_fg_get_property: psp = 0x13\n[  387.968716] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  388.973223] sm5713_fg_get_property: psp = 0x13\n[  388.974334] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  389.978707] sm5713_fg_get_property: psp = 0x13\n[  389.979831] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  390.983727] sm5713_fg_get_property: psp = 0x13\n[  390.984848] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  391.532733] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  391.989584] sm5713_fg_get_property: psp = 0x13\n[  391.990708] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  392.995489] sm5713_fg_get_property: psp = 0x13\n[  392.996620] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  393.189619] sm5713_fg_get_property: psp = 0xd\n[  393.190569] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  393.192313] sm5713_cal_avg_vbat: batt_avgvoltage = 3723\n[  393.192347] sm5713_fg_get_property: psp = 0xe\n[  393.192372] sm5713_fg_get_property: psp = 0xe\n[  393.192395] sm5713_fg_get_property: psp = 0x13\n[  393.192887] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  393.193136] sm5713_fg_get_property: psp = 0x14\n[  393.193162] sm5713_fg_get_property: psp = 0x8f\n[  393.193186] sm5713_fg_get_property: psp = 0x8f\n[  393.193219] sm5713_fg_get_property: psp = 0x21\n[  393.193243] sec_bat_get_battery_info: Fail to set psy ((null))\n[  393.194422] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(290), Temp-ADC(1820)\n[  393.195222] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(298), Temp-ADC(1808)\n[  393.195261] sm5713_fg_get_property: psp = 0x33\n[  393.195867] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  393.196297] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  393.197365] sm5713_cal_avg_vbat: batt_avgvoltage = 3723\n[  393.197825] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  393.198503] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  393.199605] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 198 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 290\n[  393.200172] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[  393.200195] sm5713_get_soc: \n[  393.200869] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  393.201111] sm5713_get_soc: read = 0x113d, soc = 172\n[  393.201134] sm5713_get_soc: batt_soc = 172, soc = 172\n[  393.202971] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03c8, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  393.205161] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80da, 0x86=0x8001, 0x87=0x80e5, 0x1F=0x0064, 0x94=0x0030\n[  393.205416] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3724, v_avg=3723, i=-110, i_avg=-107, ocv=3737, fg_t=198, b_t=290, cycle=279, soc=172, state=0x8\n[  393.205440] sm5713_update_all_value : temp = 0xe99, t = 290 \n[  393.205463] sm5713_fg_get_scaled_capacity: scaled capacity (17.2)\n[  393.205497] sec_bat_get_battery_info:Vnow(3724mV),Vavg(3723mV),Inow(-110mA),Iavg(-106mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(290),Tusb(0),Tchg(298),Twpc(0)\n[  393.205566] sm5713_fg_get_property: psp = 0x31\n[  393.205597] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  393.205824] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(290)\n[  393.205850] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  393.205874] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  393.207098] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  393.207151] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  393.207177] sm5713_fg_get_property: psp = 0x96\n[  393.207202] sm5713_fg_periodic_read: skip old(213) current(393)\n[  393.207237] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  393.207297] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  393.207437] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  393.207485] sm5713_fg_get_property: psp = 0x13\n[  393.207947] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  393.208196] sm5713_fg_get_property: psp = 0x14\n[  394.001030] sm5713_fg_get_property: psp = 0x13\n[  394.001829] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  394.092736] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 13 12\n[  395.006218] sm5713_fg_get_property: psp = 0x13\n[  395.007345] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  396.011731] sm5713_fg_get_property: psp = 0x13\n[  396.012349] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  397.016612] sm5713_fg_get_property: psp = 0x13\n[  397.017753] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  397.292727] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  398.022660] sm5713_fg_get_property: psp = 0x13\n[  398.023813] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  398.572746] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  399.028242] sm5713_fg_get_property: psp = 0x13\n[  399.029356] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  400.033744] sm5713_fg_get_property: psp = 0x13\n[  400.034865] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  401.039237] sm5713_fg_get_property: psp = 0x13\n[  401.040360] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  402.045098] sm5713_fg_get_property: psp = 0x13\n[  402.046217] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  403.050589] sm5713_fg_get_property: psp = 0x13\n[  403.051715] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  403.692718] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  404.056681] sm5713_fg_get_property: psp = 0x13\n[  404.057852] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  405.062275] sm5713_fg_get_property: psp = 0x13\n[  405.063309] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  406.067750] sm5713_fg_get_property: psp = 0x13\n[  406.068874] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  407.073357] sm5713_fg_get_property: psp = 0x13\n[  407.074467] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  408.078845] sm5713_fg_get_property: psp = 0x13\n[  408.079964] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  409.083794] sm5713_fg_get_property: psp = 0x13\n[  409.084960] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  409.452743] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  409.452864] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  410.089604] sm5713_fg_get_property: psp = 0x13\n[  410.090751] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  411.095667] sm5713_fg_get_property: psp = 0x13\n[  411.096786] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  412.101173] sm5713_fg_get_property: psp = 0x13\n[  412.102020] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  413.106297] sm5713_fg_get_property: psp = 0x13\n[  413.107418] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  414.111797] sm5713_fg_get_property: psp = 0x13\n[  414.112426] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  415.116696] sm5713_fg_get_property: psp = 0x13\n[  415.117820] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  415.212755] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  416.122194] sm5713_fg_get_property: psp = 0x13\n[  416.123246] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  417.127723] sm5713_fg_get_property: psp = 0x13\n[  417.128890] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  418.133367] sm5713_fg_get_property: psp = 0x13\n[  418.134486] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  419.138886] sm5713_fg_get_property: psp = 0x13\n[  419.140005] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  420.143730] sm5713_fg_get_property: psp = 0x13\n[  420.144847] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  420.332751] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  421.149234] sm5713_fg_get_property: psp = 0x13\n[  421.150360] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  421.612735] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  422.155153] sm5713_fg_get_property: psp = 0x13\n[  422.156282] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  423.160988] sm5713_fg_get_property: psp = 0x13\n[  423.161863] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  423.207821] sm5713_fg_get_property: psp = 0xd\n[  423.208763] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  423.211093] sm5713_cal_avg_vbat: batt_avgvoltage = 3723\n[  423.211126] sm5713_fg_get_property: psp = 0xe\n[  423.211152] sm5713_fg_get_property: psp = 0xe\n[  423.211174] sm5713_fg_get_property: psp = 0x13\n[  423.211813] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  423.212060] sm5713_fg_get_property: psp = 0x14\n[  423.212087] sm5713_fg_get_property: psp = 0x8f\n[  423.212111] sm5713_fg_get_property: psp = 0x8f\n[  423.212144] sm5713_fg_get_property: psp = 0x21\n[  423.212168] sec_bat_get_battery_info: Fail to set psy ((null))\n[  423.213250] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(289), Temp-ADC(1824)\n[  423.214835] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(297), Temp-ADC(1814)\n[  423.214879] sm5713_fg_get_property: psp = 0x33\n[  423.216116] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  423.217050] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  423.219466] sm5713_cal_avg_vbat: batt_avgvoltage = 3723\n[  423.219931] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  423.220608] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  423.221711] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 197 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 289\n[  423.222280] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[  423.222302] sm5713_get_soc: \n[  423.223030] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  423.223273] sm5713_get_soc: read = 0x1130, soc = 171\n[  423.223297] sm5713_get_soc: batt_soc = 171, soc = 171\n[  423.225059] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03c0, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  423.227285] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80cb, 0x86=0x0008, 0x87=0x80d8, 0x1F=0x0064, 0x94=0x0030\n[  423.227539] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3723, v_avg=3723, i=-104, i_avg=-106, ocv=3736, fg_t=197, b_t=289, cycle=279, soc=171, state=0x8\n[  423.227565] sm5713_update_all_value : temp = 0xe98, t = 289 \n[  423.227588] sm5713_fg_get_scaled_capacity: scaled capacity (17.1)\n[  423.227622] sec_bat_get_battery_info:Vnow(3723mV),Vavg(3723mV),Inow(-104mA),Iavg(-106mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(289),Tusb(0),Tchg(297),Twpc(0)\n[  423.227692] sm5713_fg_get_property: psp = 0x31\n[  423.227724] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  423.227946] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(289)\n[  423.227972] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  423.227995] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  423.229221] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  423.229275] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  423.229301] sm5713_fg_get_property: psp = 0x96\n[  423.289084] [FG_ALL] 00:0000,c601,0000,000e,0000,1130,1de5,1dca,80d5,13c0,0117,1dbd,0319,0480,3c8a,0100,01:0010,ffff,0003,0017,0000,7003,ffff,ffff,ffff,1dc0,0a0a,0103,0004,ffff,0040,0064,02:04e1,03e6,ffff,0001,00a4,0146,3800,0078,03c0,00a4,060a,0048,ffff,000e,1f6b,0318,03:1f78,1f78,1f79,1f79,1f79,1f7a,1f7a,1f79,1f59,1f58,1f58,1f59,1f58,1f59,1f58,1f58,04:1f78,1f79,1f7a,1f7a,1f7a,1f79,1f79,1f7a,1f5a,1f59,1f59,1f5a,1f59,1f58,1f59,1f59,05:400f,400e,400e,400e,400e,400f,400f,400e,4014,400e,4012,400f,4012,4011,4013,4010,06:859a,909c,29e2,0000,0000,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,8012,08:0008,8003,0000,ffff,801b,80cb,0008,80d8,0738,58fa,0000,0000,0000,ffff,ffff,ffff,09:0040,a000,0000,0000,0030,0201,0100,0153,0000,0000,0000,0000,0325,0000,0000,ffff,0a:1400,1b33,1c2a,1d6c,1d86,1da2,1dbb,1ddb,1df0,1e30,1e4f,1e5d,1e7e,1ea7,1edc,1f3d,0b:1f6f,1fa0,1ff1,2050,2082,20ee,2239,2400,0000,004c,0166,044c,0733,0a00,0ce6,0fcc,\n\n[  423.289159] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  423.289221] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  423.289354] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  423.289404] sm5713_fg_get_property: psp = 0x13\n[  423.289863] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  423.290115] sm5713_fg_get_property: psp = 0x14\n[  424.166172] sm5713_fg_get_property: psp = 0x13\n[  424.167304] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  424.172981] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 14 13\n[  425.171703] sm5713_fg_get_property: psp = 0x13\n[  425.172320] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  426.176518] sm5713_fg_get_property: psp = 0x13\n[  426.177645] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  427.182022] sm5713_fg_get_property: psp = 0x13\n[  427.182892] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  427.372729] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  428.187339] sm5713_fg_get_property: psp = 0x13\n[  428.188451] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  429.193164] sm5713_fg_get_property: psp = 0x13\n[  429.194312] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  430.198716] sm5713_fg_get_property: psp = 0x13\n[  430.199836] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  431.203731] sm5713_fg_get_property: psp = 0x13\n[  431.204864] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  431.212979] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  432.209254] sm5713_fg_get_property: psp = 0x13\n[  432.210371] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  433.132740] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  433.215110] sm5713_fg_get_property: psp = 0x13\n[  433.216222] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  434.220586] sm5713_fg_get_property: psp = 0x13\n[  434.221732] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  435.226393] sm5713_fg_get_property: psp = 0x13\n[  435.227505] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  436.231895] sm5713_fg_get_property: psp = 0x13\n[  436.232634] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  437.236766] sm5713_fg_get_property: psp = 0x13\n[  437.237886] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  438.242278] sm5713_fg_get_property: psp = 0x13\n[  438.243336] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  439.247802] sm5713_fg_get_property: psp = 0x13\n[  439.248924] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  439.532719] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  440.253503] sm5713_fg_get_property: psp = 0x13\n[  440.254641] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  441.259033] sm5713_fg_get_property: psp = 0x13\n[  441.260166] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  442.092765] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  442.265140] sm5713_fg_get_property: psp = 0x13\n[  442.266300] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  443.270703] sm5713_fg_get_property: psp = 0x13\n[  443.271772] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  443.375961] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[  443.377802] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x02 5:0x00]\n[  444.276347] sm5713_fg_get_property: psp = 0x13\n[  444.277464] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  445.281853] sm5713_fg_get_property: psp = 0x13\n[  445.282597] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  445.292694] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  446.286720] sm5713_fg_get_property: psp = 0x13\n[  446.287859] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  447.292243] sm5713_fg_get_property: psp = 0x13\n[  447.293282] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  448.297710] sm5713_fg_get_property: psp = 0x13\n[  448.298916] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  449.303262] sm5713_fg_get_property: psp = 0x13\n[  449.304366] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  450.308750] sm5713_fg_get_property: psp = 0x13\n[  450.309873] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  451.313720] sm5713_fg_get_property: psp = 0x13\n[  451.314844] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  451.692592] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  452.319230] sm5713_fg_get_property: psp = 0x13\n[  452.320353] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  453.289729] sm5713_fg_get_property: psp = 0xd\n[  453.290739] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  453.292326] sm5713_cal_avg_vbat: batt_avgvoltage = 3723\n[  453.292359] sm5713_fg_get_property: psp = 0xe\n[  453.292384] sm5713_fg_get_property: psp = 0xe\n[  453.292408] sm5713_fg_get_property: psp = 0x13\n[  453.292944] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  453.293196] sm5713_fg_get_property: psp = 0x14\n[  453.293223] sm5713_fg_get_property: psp = 0x8f\n[  453.293247] sm5713_fg_get_property: psp = 0x8f\n[  453.293280] sm5713_fg_get_property: psp = 0x21\n[  453.293305] sec_bat_get_battery_info: Fail to set psy ((null))\n[  453.294156] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(288), Temp-ADC(1827)\n[  453.294946] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(296), Temp-ADC(1817)\n[  453.294983] sm5713_fg_get_property: psp = 0x33\n[  453.295582] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  453.296009] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  453.297078] sm5713_cal_avg_vbat: batt_avgvoltage = 3723\n[  453.297573] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  453.298251] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  453.299352] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 196 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 288\n[  453.299919] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[  453.299941] sm5713_get_soc: \n[  453.300616] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  453.300858] sm5713_get_soc: read = 0x1130, soc = 171\n[  453.300882] sm5713_get_soc: batt_soc = 171, soc = 171\n[  453.302668] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03c0, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  453.304862] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80e4, 0x86=0x800b, 0x87=0x80d9, 0x1F=0x0064, 0x94=0x0030\n[  453.305117] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3723, v_avg=3723, i=-104, i_avg=-103, ocv=3736, fg_t=196, b_t=288, cycle=279, soc=171, state=0x8\n[  453.305141] sm5713_update_all_value : temp = 0xe98, t = 288 \n[  453.305164] sm5713_fg_get_scaled_capacity: scaled capacity (17.1)\n[  453.305197] sec_bat_get_battery_info:Vnow(3723mV),Vavg(3723mV),Inow(-104mA),Iavg(-103mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(288),Tusb(0),Tchg(296),Twpc(0)\n[  453.305266] sm5713_fg_get_property: psp = 0x31\n[  453.305296] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  453.305517] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(288)\n[  453.305544] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  453.305566] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  453.306793] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  453.306846] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  453.306872] sm5713_fg_get_property: psp = 0x96\n[  453.306896] sm5713_fg_periodic_read: skip old(423) current(453)\n[  453.306930] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  453.306991] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  453.307131] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  453.307178] sm5713_fg_get_property: psp = 0x13\n[  453.307634] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  453.307882] sm5713_fg_get_property: psp = 0x14\n[  453.324912] sm5713_fg_get_property: psp = 0x13\n[  453.326031] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  453.612743] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  454.252708] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 15 14\n[  454.330424] sm5713_fg_get_property: psp = 0x13\n[  454.331544] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  455.336345] sm5713_fg_get_property: psp = 0x13\n[  455.337532] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  456.341829] sm5713_fg_get_property: psp = 0x13\n[  456.342577] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  457.346684] sm5713_fg_get_property: psp = 0x13\n[  457.347818] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  457.452740] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  458.352225] sm5713_fg_get_property: psp = 0x13\n[  458.353294] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  459.357752] sm5713_fg_get_property: psp = 0x13\n[  459.358884] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  460.363354] sm5713_fg_get_property: psp = 0x13\n[  460.364480] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  461.368876] sm5713_fg_get_property: psp = 0x13\n[  461.370012] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  462.373845] sm5713_fg_get_property: psp = 0x13\n[  462.374949] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  463.212732] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  463.379356] sm5713_fg_get_property: psp = 0x13\n[  463.380451] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  464.385172] sm5713_fg_get_property: psp = 0x13\n[  464.386293] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  464.492756] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  465.390667] sm5713_fg_get_property: psp = 0x13\n[  465.391789] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  466.396245] sm5713_fg_get_property: psp = 0x13\n[  466.397375] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  467.401737] sm5713_fg_get_property: psp = 0x13\n[  467.402435] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  468.406817] sm5713_fg_get_property: psp = 0x13\n[  468.407942] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  469.412297] sm5713_fg_get_property: psp = 0x13\n[  469.413354] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  469.612746] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  470.417792] sm5713_fg_get_property: psp = 0x13\n[  470.418917] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  471.423392] sm5713_fg_get_property: psp = 0x13\n[  471.424505] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  472.428901] sm5713_fg_get_property: psp = 0x13\n[  472.430028] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  473.434008] sm5713_fg_get_property: psp = 0x13\n[  473.435107] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  474.439496] sm5713_fg_get_property: psp = 0x13\n[  474.440620] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  475.372595] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  475.372722] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  475.445452] sm5713_fg_get_property: psp = 0x13\n[  475.446576] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  476.450966] sm5713_fg_get_property: psp = 0x13\n[  476.451885] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  477.456162] sm5713_fg_get_property: psp = 0x13\n[  477.457301] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  478.461686] sm5713_fg_get_property: psp = 0x13\n[  478.462301] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  479.466509] sm5713_fg_get_property: psp = 0x13\n[  479.467668] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  480.472074] sm5713_fg_get_property: psp = 0x13\n[  480.473144] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  481.132733] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  481.477580] sm5713_fg_get_property: psp = 0x13\n[  481.478638] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  482.483122] sm5713_fg_get_property: psp = 0x13\n[  482.484225] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  483.307499] sm5713_fg_get_property: psp = 0xd\n[  483.308364] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  483.310795] sm5713_cal_avg_vbat: batt_avgvoltage = 3723\n[  483.310829] sm5713_fg_get_property: psp = 0xe\n[  483.310854] sm5713_fg_get_property: psp = 0xe\n[  483.310878] sm5713_fg_get_property: psp = 0x13\n[  483.311792] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  483.312042] sm5713_fg_get_property: psp = 0x14\n[  483.312067] sm5713_fg_get_property: psp = 0x8f\n[  483.312091] sm5713_fg_get_property: psp = 0x8f\n[  483.312124] sm5713_fg_get_property: psp = 0x21\n[  483.312149] sec_bat_get_battery_info: Fail to set psy ((null))\n[  483.313107] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(288), Temp-ADC(1829)\n[  483.314717] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(295), Temp-ADC(1821)\n[  483.314763] sm5713_fg_get_property: psp = 0x33\n[  483.316009] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  483.316951] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  483.319353] sm5713_cal_avg_vbat: batt_avgvoltage = 3723\n[  483.319991] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  483.320670] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  483.321776] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 195 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 288\n[  483.322346] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[  483.322367] sm5713_get_soc: \n[  483.323077] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  483.323321] sm5713_get_soc: read = 0x1130, soc = 171\n[  483.323345] sm5713_get_soc: batt_soc = 171, soc = 171\n[  483.325147] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03b0, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  483.327338] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80df, 0x86=0x8002, 0x87=0x80d4, 0x1F=0x0064, 0x94=0x0030\n[  483.327594] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3723, v_avg=3723, i=-102, i_avg=-103, ocv=3736, fg_t=195, b_t=288, cycle=279, soc=171, state=0x8\n[  483.327619] sm5713_update_all_value : temp = 0xe98, t = 288 \n[  483.327641] sm5713_fg_get_scaled_capacity: scaled capacity (17.1)\n[  483.327676] sec_bat_get_battery_info:Vnow(3723mV),Vavg(3723mV),Inow(-102mA),Iavg(-103mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(288),Tusb(0),Tchg(295),Twpc(0)\n[  483.327747] sm5713_fg_get_property: psp = 0x31\n[  483.327779] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  483.328008] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(288)\n[  483.328034] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  483.328058] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  483.329285] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  483.329338] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  483.329365] sm5713_fg_get_property: psp = 0x96\n[  483.329390] sm5713_fg_periodic_read: skip old(423) current(483)\n[  483.329424] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  483.329486] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  483.329629] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  483.329676] sm5713_fg_get_property: psp = 0x13\n[  483.330134] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  483.330381] sm5713_fg_get_property: psp = 0x14\n[  483.488629] sm5713_fg_get_property: psp = 0x13\n[  483.489753] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  484.332716] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 16 15\n[  484.493789] sm5713_fg_get_property: psp = 0x13\n[  484.494958] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  485.499369] sm5713_fg_get_property: psp = 0x13\n[  485.500492] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  486.252977] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  486.516118]  1942     3.2 C/MHz     35 mW    5.4 J   55.1 I/mJ   154.5 s\n                702: \n[  487.532880] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  490.627192] sm5713_fg_get_property: psp = 0x13\n[  490.628305] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  491.632888] sm5713_fg_get_property: psp = 0x13\n[  491.633951] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  492.638191] sm5713_fg_get_property: psp = 0x13\n[  492.639288] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  493.292850] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  493.643524] sm5713_fg_get_property: psp = 0x13\n[  493.644627] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  495.660822] sm5713_fg_get_property: psp = 0x13\n[  495.661812] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  496.666186] sm5713_fg_get_property: psp = 0x13\n[  496.667234] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  497.132736] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  497.671417] sm5713_fg_get_property: psp = 0x13\n[  497.672001] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  498.676397] sm5713_fg_get_property: psp = 0x13\n[  498.677418] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  499.681576] sm5713_fg_get_property: psp = 0x13\n[  499.682153] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  499.692775] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  500.686177] sm5713_fg_get_property: psp = 0x13\n[  500.687226] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  501.691367] sm5713_fg_get_property: psp = 0x13\n[  501.691955] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  502.695992] sm5713_fg_get_property: psp = 0x13\n[  502.697055] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  503.701204] sm5713_fg_get_property: psp = 0x13\n[  503.701904] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  504.705976] sm5713_fg_get_property: psp = 0x13\n[  504.706998] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  504.815701] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[  504.817639] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[  505.452684] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  505.711038] sm5713_fg_get_property: psp = 0x13\n[  505.711837] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  506.716055] sm5713_fg_get_property: psp = 0x13\n[  506.717097] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  507.721242] sm5713_fg_get_property: psp = 0x13\n[  507.721839] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  508.652718] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  508.726064] sm5713_fg_get_property: psp = 0x13\n[  508.727109] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  509.731257] sm5713_fg_get_property: psp = 0x13\n[  509.731842] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  510.736015] sm5713_fg_get_property: psp = 0x13\n[  510.737045] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  511.212847] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  511.741095] sm5713_fg_get_property: psp = 0x13\n[  511.741890] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  512.746087] sm5713_fg_get_property: psp = 0x13\n[  512.747135] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  513.329978] sm5713_fg_get_property: psp = 0xd\n[  513.330917] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  513.332254] sm5713_cal_avg_vbat: batt_avgvoltage = 3722\n[  513.332281] sm5713_fg_get_property: psp = 0xe\n[  513.332303] sm5713_fg_get_property: psp = 0xe\n[  513.332323] sm5713_fg_get_property: psp = 0x13\n[  513.332778] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  513.333013] sm5713_fg_get_property: psp = 0x14\n[  513.333035] sm5713_fg_get_property: psp = 0x8f\n[  513.333055] sm5713_fg_get_property: psp = 0x8f\n[  513.333084] sm5713_fg_get_property: psp = 0x21\n[  513.333106] sec_bat_get_battery_info: Fail to set psy ((null))\n[  513.334228] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(287), Temp-ADC(1831)\n[  513.335137] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(295), Temp-ADC(1824)\n[  513.335172] sm5713_fg_get_property: psp = 0x33\n[  513.335742] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  513.336147] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  513.337165] sm5713_cal_avg_vbat: batt_avgvoltage = 3722\n[  513.337603] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  513.338248] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  513.339288] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 194 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 287\n[  513.339822] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[  513.339841] sm5713_get_soc: \n[  513.340481] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  513.340711] sm5713_get_soc: read = 0x1124, soc = 171\n[  513.340731] sm5713_get_soc: batt_soc = 171, soc = 171\n[  513.342408] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03b8, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  513.344708] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80e6, 0x86=0x8009, 0x87=0x80d8, 0x1F=0x0064, 0x94=0x0030\n[  513.344947] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3722, v_avg=3722, i=-104, i_avg=-102, ocv=3736, fg_t=194, b_t=287, cycle=279, soc=171, state=0x8\n[  513.344968] sm5713_update_all_value : temp = 0xe98, t = 287 \n[  513.344988] sm5713_fg_get_scaled_capacity: scaled capacity (17.1)\n[  513.345017] sec_bat_get_battery_info:Vnow(3722mV),Vavg(3722mV),Inow(-104mA),Iavg(-102mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(287),Tusb(0),Tchg(295),Twpc(0)\n[  513.345079] sm5713_fg_get_property: psp = 0x31\n[  513.345107] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  513.345316] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(287)\n[  513.345338] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  513.345359] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  513.346543] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  513.346588] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  513.346611] sm5713_fg_get_property: psp = 0x96\n[  513.346632] sm5713_fg_periodic_read: skip old(423) current(513)\n[  513.346661] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  513.346713] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  513.346832] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  513.346873] sm5713_fg_get_property: psp = 0x13\n[  513.347302] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  513.347536] sm5713_fg_get_property: psp = 0x14\n[  513.751342] sm5713_fg_get_property: psp = 0x13\n[  513.751926] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  514.412551] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 17 16\n[  514.755982] sm5713_fg_get_property: psp = 0x13\n[  514.757028] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  515.761168] sm5713_fg_get_property: psp = 0x13\n[  515.761871] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  516.766174] sm5713_fg_get_property: psp = 0x13\n[  516.767190] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  517.612695] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  517.771241] sm5713_fg_get_property: psp = 0x13\n[  517.771935] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  518.776007] sm5713_fg_get_property: psp = 0x13\n[  518.777059] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  519.532874] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  519.781229] sm5713_fg_get_property: psp = 0x13\n[  519.781930] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  520.786000] sm5713_fg_get_property: psp = 0x13\n[  520.787044] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  521.791184] sm5713_fg_get_property: psp = 0x13\n[  521.791898] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  522.796126] sm5713_fg_get_property: psp = 0x13\n[  522.797095] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  523.372697] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  523.801281] sm5713_fg_get_property: psp = 0x13\n[  523.801988] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  524.806051] sm5713_fg_get_property: psp = 0x13\n[  524.807104] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  525.811253] sm5713_fg_get_property: psp = 0x13\n[  525.811838] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  526.816043] sm5713_fg_get_property: psp = 0x13\n[  526.817091] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  527.821216] sm5713_fg_get_property: psp = 0x13\n[  527.821918] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  528.825989] sm5713_fg_get_property: psp = 0x13\n[  528.827064] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  529.132712] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  529.831235] sm5713_fg_get_property: psp = 0x13\n[  529.831933] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  530.412722] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  530.836017] sm5713_fg_get_property: psp = 0x13\n[  530.837064] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  531.841223] sm5713_fg_get_property: psp = 0x13\n[  531.841933] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  532.846011] sm5713_fg_get_property: psp = 0x13\n[  532.847057] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  533.851212] sm5713_fg_get_property: psp = 0x13\n[  533.851908] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  534.856380] sm5713_fg_get_property: psp = 0x13\n[  534.857370] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  535.532698] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  535.861543] sm5713_fg_get_property: psp = 0x13\n[  535.862128] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  536.866157] sm5713_fg_get_property: psp = 0x13\n[  536.867203] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  537.871342] sm5713_fg_get_property: psp = 0x13\n[  537.871928] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  538.875968] sm5713_fg_get_property: psp = 0x13\n[  538.877023] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  539.881171] sm5713_fg_get_property: psp = 0x13\n[  539.881866] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  540.886061] sm5713_fg_get_property: psp = 0x13\n[  540.887127] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  541.292734] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  541.292848] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  541.891146] sm5713_fg_get_property: psp = 0x13\n[  541.891901] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  542.895976] sm5713_fg_get_property: psp = 0x13\n[  542.897031] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  543.347166] sm5713_fg_get_property: psp = 0xd\n[  543.348102] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  543.350322] sm5713_cal_avg_vbat: batt_avgvoltage = 3722\n[  543.350351] sm5713_fg_get_property: psp = 0xe\n[  543.350374] sm5713_fg_get_property: psp = 0xe\n[  543.350393] sm5713_fg_get_property: psp = 0x13\n[  543.351319] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  543.351625] sm5713_fg_get_property: psp = 0x14\n[  543.351647] sm5713_fg_get_property: psp = 0x8f\n[  543.351668] sm5713_fg_get_property: psp = 0x8f\n[  543.351696] sm5713_fg_get_property: psp = 0x21\n[  543.351719] sec_bat_get_battery_info: Fail to set psy ((null))\n[  543.352556] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(287), Temp-ADC(1833)\n[  543.353628] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(294), Temp-ADC(1826)\n[  543.353664] sm5713_fg_get_property: psp = 0x33\n[  543.354800] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  543.355667] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  543.357890] sm5713_cal_avg_vbat: batt_avgvoltage = 3722\n[  543.358819] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  543.360148] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  543.361310] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 194 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 287\n[  543.361851] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[  543.361870] sm5713_get_soc: \n[  543.362569] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  543.362800] sm5713_get_soc: read = 0x1124, soc = 171\n[  543.362821] sm5713_get_soc: batt_soc = 171, soc = 171\n[  543.364495] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03bc, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  543.366584] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80ed, 0x86=0x0002, 0x87=0x80da, 0x1F=0x0064, 0x94=0x0030\n[  543.366823] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3722, v_avg=3722, i=-104, i_avg=-104, ocv=3736, fg_t=194, b_t=287, cycle=279, soc=171, state=0x8\n[  543.366843] sm5713_update_all_value : temp = 0xe98, t = 287 \n[  543.366863] sm5713_fg_get_scaled_capacity: scaled capacity (17.1)\n[  543.366893] sec_bat_get_battery_info:Vnow(3722mV),Vavg(3722mV),Inow(-104mA),Iavg(-104mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(287),Tusb(0),Tchg(294),Twpc(0)\n[  543.366954] sm5713_fg_get_property: psp = 0x31\n[  543.366982] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  543.367192] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(287)\n[  543.367214] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  543.367235] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  543.368416] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  543.368462] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  543.368484] sm5713_fg_get_property: psp = 0x96\n[  543.368505] sm5713_fg_periodic_read: skip old(423) current(543)\n[  543.368535] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  543.368589] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  543.368715] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  543.368756] sm5713_fg_get_property: psp = 0x13\n[  543.369188] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  543.369422] sm5713_fg_get_property: psp = 0x14\n[  543.901201] sm5713_fg_get_property: psp = 0x13\n[  543.901905] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  544.492881] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 18 17\n[  544.905983] sm5713_fg_get_property: psp = 0x13\n[  544.907033] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  545.911175] sm5713_fg_get_property: psp = 0x13\n[  545.911932] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  546.916021] sm5713_fg_get_property: psp = 0x13\n[  546.917074] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  547.692694] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  547.921244] sm5713_fg_get_property: psp = 0x13\n[  547.921862] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  548.926148] sm5713_fg_get_property: psp = 0x13\n[  548.927189] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  549.931337] sm5713_fg_get_property: psp = 0x13\n[  549.931921] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  550.936127] sm5713_fg_get_property: psp = 0x13\n[  550.937185] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  551.941331] sm5713_fg_get_property: psp = 0x13\n[  551.941917] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  552.172721] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  552.946098] sm5713_fg_get_property: psp = 0x13\n[  552.947164] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  553.452709] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  553.951329] sm5713_fg_get_property: psp = 0x13\n[  553.951998] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  554.955920] sm5713_fg_get_property: psp = 0x13\n[  554.956975] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  555.961124] sm5713_fg_get_property: psp = 0x13\n[  555.961818] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  556.966039] sm5713_fg_get_property: psp = 0x13\n[  556.967087] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  557.971249] sm5713_fg_get_property: psp = 0x13\n[  557.971948] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  558.976008] sm5713_fg_get_property: psp = 0x13\n[  558.977053] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  559.212693] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  559.981219] sm5713_fg_get_property: psp = 0x13\n[  559.981918] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  560.986390] sm5713_fg_get_property: psp = 0x13\n[  560.987433] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  561.991618] sm5713_fg_get_property: psp = 0x13\n[  561.992203] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  562.996205] sm5713_fg_get_property: psp = 0x13\n[  562.997252] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  563.692720] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  564.001399] sm5713_fg_get_property: psp = 0x13\n[  564.001984] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  565.006031] sm5713_fg_get_property: psp = 0x13\n[  565.007076] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  565.612695] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  566.011231] sm5713_fg_get_property: psp = 0x13\n[  566.011929] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  566.255639] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[  566.257417] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x02 5:0x00]\n[  567.015989] sm5713_fg_get_property: psp = 0x13\n[  567.017034] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  568.021165] sm5713_fg_get_property: psp = 0x13\n[  568.021912] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  569.025998] sm5713_fg_get_property: psp = 0x13\n[  569.027041] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  570.031185] sm5713_fg_get_property: psp = 0x13\n[  570.031886] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  571.036072] sm5713_fg_get_property: psp = 0x13\n[  571.037120] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  571.372708] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  572.041268] sm5713_fg_get_property: psp = 0x13\n[  572.041968] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  573.046052] sm5713_fg_get_property: psp = 0x13\n[  573.047093] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  573.369061] sm5713_fg_get_property: psp = 0xd\n[  573.370013] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  573.371801] sm5713_cal_avg_vbat: batt_avgvoltage = 3722\n[  573.371830] sm5713_fg_get_property: psp = 0xe\n[  573.371852] sm5713_fg_get_property: psp = 0xe\n[  573.371872] sm5713_fg_get_property: psp = 0x13\n[  573.372311] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  573.372573] sm5713_fg_get_property: psp = 0x14\n[  573.372596] sm5713_fg_get_property: psp = 0x8f\n[  573.372617] sm5713_fg_get_property: psp = 0x8f\n[  573.372646] sm5713_fg_get_property: psp = 0x21\n[  573.372667] sec_bat_get_battery_info: Fail to set psy ((null))\n[  573.373786] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(286), Temp-ADC(1836)\n[  573.374990] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(294), Temp-ADC(1829)\n[  573.375028] sm5713_fg_get_property: psp = 0x33\n[  573.376159] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  573.377030] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  573.378625] sm5713_cal_avg_vbat: batt_avgvoltage = 3722\n[  573.379061] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  573.379706] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  573.380753] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 192 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 286\n[  573.381289] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[  573.381309] sm5713_get_soc: \n[  573.381949] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  573.382178] sm5713_get_soc: read = 0x1124, soc = 171\n[  573.382198] sm5713_get_soc: batt_soc = 171, soc = 171\n[  573.383991] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03e4, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  573.386078] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80dc, 0x86=0x0005, 0x87=0x80db, 0x1F=0x0064, 0x94=0x0030\n[  573.386317] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3723, v_avg=3722, i=-105, i_avg=-103, ocv=3736, fg_t=192, b_t=286, cycle=279, soc=171, state=0x8\n[  573.386338] sm5713_update_all_value : temp = 0xe98, t = 286 \n[  573.386358] sm5713_fg_get_scaled_capacity: scaled capacity (17.1)\n[  573.386388] sec_bat_get_battery_info:Vnow(3723mV),Vavg(3722mV),Inow(-105mA),Iavg(-103mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(286),Tusb(0),Tchg(294),Twpc(0)\n[  573.386450] sm5713_fg_get_property: psp = 0x31\n[  573.386477] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  573.386689] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(286)\n[  573.386711] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  573.386732] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  573.387915] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  573.387961] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  573.387984] sm5713_fg_get_property: psp = 0x96\n[  573.388004] sm5713_fg_periodic_read: skip old(423) current(573)\n[  573.388033] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  573.388089] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  573.388219] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  573.388260] sm5713_fg_get_property: psp = 0x13\n[  573.388694] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  573.388928] sm5713_fg_get_property: psp = 0x14\n[  574.051599] sm5713_fg_get_property: psp = 0x13\n[  574.052179] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  574.572720] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  574.572803] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 19 18\n[  575.056120] sm5713_fg_get_property: psp = 0x13\n[  575.057164] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  576.061310] sm5713_fg_get_property: psp = 0x13\n[  576.062012] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  577.066078] sm5713_fg_get_property: psp = 0x13\n[  577.067124] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  577.132723] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  578.071284] sm5713_fg_get_property: psp = 0x13\n[  578.071988] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  579.076008] sm5713_fg_get_property: psp = 0x13\n[  579.077073] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  580.081238] sm5713_fg_get_property: psp = 0x13\n[  580.081934] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  581.086332] sm5713_fg_get_property: psp = 0x13\n[  581.087351] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  582.091491] sm5713_fg_get_property: psp = 0x13\n[  582.092081] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  583.096182] sm5713_fg_get_property: psp = 0x13\n[  583.097232] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  583.532685] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  584.101368] sm5713_fg_get_property: psp = 0x13\n[  584.101953] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  585.106147] sm5713_fg_get_property: psp = 0x13\n[  585.107179] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  585.452708] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  586.111318] sm5713_fg_get_property: psp = 0x13\n[  586.111912] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  587.116029] sm5713_fg_get_property: psp = 0x13\n[  587.117034] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  588.121036] sm5713_fg_get_property: psp = 0x13\n[  588.121830] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  589.126013] sm5713_fg_get_property: psp = 0x13\n[  589.127071] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  589.292682] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  590.131195] sm5713_fg_get_property: psp = 0x13\n[  590.131893] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  591.135937] sm5713_fg_get_property: psp = 0x13\n[  591.136980] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  592.141117] sm5713_fg_get_property: psp = 0x13\n[  592.141863] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  593.146049] sm5713_fg_get_property: psp = 0x13\n[  593.147098] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  594.151631] sm5713_fg_get_property: psp = 0x13\n[  594.152186] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  595.156182] sm5713_fg_get_property: psp = 0x13\n[  595.157225] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  595.692699] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  596.161368] sm5713_fg_get_property: psp = 0x13\n[  596.161945] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  596.332739] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  597.165991] sm5713_fg_get_property: psp = 0x13\n[  597.167039] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  598.171185] sm5713_fg_get_property: psp = 0x13\n[  598.171887] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  599.176063] sm5713_fg_get_property: psp = 0x13\n[  599.177131] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  600.181270] sm5713_fg_get_property: psp = 0x13\n[  600.181921] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  601.186099] sm5713_fg_get_property: psp = 0x13\n[  601.187138] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  601.452697] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  602.191295] sm5713_fg_get_property: psp = 0x13\n[  602.191988] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  603.196012] sm5713_fg_get_property: psp = 0x13\n[  603.197062] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  603.388596] sm5713_fg_get_property: psp = 0xd\n[  603.389498] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  603.391591] sm5713_cal_avg_vbat: batt_avgvoltage = 3722\n[  603.391621] sm5713_fg_get_property: psp = 0xe\n[  603.391643] sm5713_fg_get_property: psp = 0xe\n[  603.391663] sm5713_fg_get_property: psp = 0x13\n[  603.392103] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  603.392336] sm5713_fg_get_property: psp = 0x14\n[  603.392358] sm5713_fg_get_property: psp = 0x8f\n[  603.392379] sm5713_fg_get_property: psp = 0x8f\n[  603.392408] sm5713_fg_get_property: psp = 0x21\n[  603.392500] sec_bat_get_battery_info: Fail to set psy ((null))\n[  603.393623] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(286), Temp-ADC(1837)\n[  603.394827] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(293), Temp-ADC(1831)\n[  603.394864] sm5713_fg_get_property: psp = 0x33\n[  603.396006] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  603.396871] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  603.398960] sm5713_cal_avg_vbat: batt_avgvoltage = 3722\n[  603.399400] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  603.400045] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  603.401094] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 192 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 286\n[  603.401630] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[  603.401650] sm5713_get_soc: \n[  603.402290] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  603.402562] sm5713_get_soc: read = 0x1117, soc = 170\n[  603.402584] sm5713_get_soc: batt_soc = 170, soc = 170\n[  603.404260] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03ec, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  603.406375] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80e2, 0x86=0x0001, 0x87=0x80d9, 0x1F=0x0064, 0x94=0x0030\n[  603.406613] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3722, v_avg=3722, i=-104, i_avg=-104, ocv=3736, fg_t=192, b_t=286, cycle=279, soc=170, state=0x8\n[  603.406635] sm5713_update_all_value : temp = 0xe98, t = 286 \n[  603.406654] sm5713_fg_get_scaled_capacity: scaled capacity (17.0)\n[  603.406684] sec_bat_get_battery_info:Vnow(3722mV),Vavg(3722mV),Inow(-104mA),Iavg(-104mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(286),Tusb(0),Tchg(293),Twpc(0)\n[  603.406746] sm5713_fg_get_property: psp = 0x31\n[  603.406774] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  603.406983] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(286)\n[  603.407006] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  603.407027] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  603.408213] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  603.408259] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  603.408282] sm5713_fg_get_property: psp = 0x96\n[  603.408302] sm5713_fg_periodic_read: skip old(423) current(603)\n[  603.408332] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  603.408386] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  603.408513] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  603.408553] sm5713_fg_get_property: psp = 0x13\n[  603.408984] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  603.409224] sm5713_fg_get_property: psp = 0x14\n[  604.201231] sm5713_fg_get_property: psp = 0x13\n[  604.201814] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  604.652696] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 20 19\n[  605.205916] sm5713_fg_get_property: psp = 0x13\n[  605.206967] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  606.211092] sm5713_fg_get_property: psp = 0x13\n[  606.211854] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  607.212709] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  607.212823] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  607.215902] sm5713_fg_get_property: psp = 0x13\n[  607.216941] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  608.221075] sm5713_fg_get_property: psp = 0x13\n[  608.221868] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  609.226062] sm5713_fg_get_property: psp = 0x13\n[  609.227107] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  610.231246] sm5713_fg_get_property: psp = 0x13\n[  610.231834] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  611.236025] sm5713_fg_get_property: psp = 0x13\n[  611.237062] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  612.241209] sm5713_fg_get_property: psp = 0x13\n[  612.241960] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  613.246200] sm5713_fg_get_property: psp = 0x13\n[  613.247278] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  613.612731] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  614.251445] sm5713_fg_get_property: psp = 0x13\n[  614.252031] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  615.256046] sm5713_fg_get_property: psp = 0x13\n[  615.257084] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  616.261220] sm5713_fg_get_property: psp = 0x13\n[  616.261914] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  617.265958] sm5713_fg_get_property: psp = 0x13\n[  617.267020] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  618.092737] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  618.271173] sm5713_fg_get_property: psp = 0x13\n[  618.271869] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  619.276398] sm5713_fg_get_property: psp = 0x13\n[  619.277456] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  619.372847] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  620.281620] sm5713_fg_get_property: psp = 0x13\n[  620.282217] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  621.286227] sm5713_fg_get_property: psp = 0x13\n[  621.287274] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  622.291412] sm5713_fg_get_property: psp = 0x13\n[  622.291995] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  623.296027] sm5713_fg_get_property: psp = 0x13\n[  623.297077] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  624.301228] sm5713_fg_get_property: psp = 0x13\n[  624.301810] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  625.132708] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  625.306014] sm5713_fg_get_property: psp = 0x13\n[  625.307150] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  626.319342]  2279     3.2 C/MHz     39 mW    5.1 J   58.6 I/mJ   131.7 s\n                806: \n[  627.695922] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[  627.697841] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x02 5:0x00]\n[  629.612849] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  630.427022] sm5713_fg_get_property: psp = 0x13\n[  630.428069] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  631.432115] sm5713_fg_get_property: psp = 0x13\n[  631.433117] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  631.532852] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  632.437199] sm5713_fg_get_property: psp = 0x13\n[  632.438254] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  633.408744] sm5713_fg_get_property: psp = 0xd\n[  633.409989] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  633.412357] sm5713_cal_avg_vbat: batt_avgvoltage = 3722\n[  633.412391] sm5713_fg_get_property: psp = 0xe\n[  633.412411] sm5713_fg_get_property: psp = 0xe\n[  633.412518] sm5713_fg_get_property: psp = 0x13\n[  633.413206] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  633.413562] sm5713_fg_get_property: psp = 0x14\n[  633.413583] sm5713_fg_get_property: psp = 0x8f\n[  633.413602] sm5713_fg_get_property: psp = 0x8f\n[  633.413629] sm5713_fg_get_property: psp = 0x21\n[  633.413648] sec_bat_get_battery_info: Fail to set psy ((null))\n[  633.414853] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(285), Temp-ADC(1840)\n[  633.415649] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(292), Temp-ADC(1834)\n[  633.415679] sm5713_fg_get_property: psp = 0x33\n[  633.416259] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  633.416655] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  633.417675] sm5713_cal_avg_vbat: batt_avgvoltage = 3722\n[  633.418118] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  633.418771] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  633.420012] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 192 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 285\n[  633.420511] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[  633.420528] sm5713_get_soc: \n[  633.421179] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  633.421526] sm5713_get_soc: read = 0x1117, soc = 170\n[  633.421546] sm5713_get_soc: batt_soc = 170, soc = 170\n[  633.423690] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03e4, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  633.425864] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80c3, 0x86=0x0001, 0x87=0x80c6, 0x1F=0x0064, 0x94=0x0030\n[  633.426104] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3724, v_avg=3722, i=-95, i_avg=-99, ocv=3736, fg_t=192, b_t=285, cycle=279, soc=170, state=0x8\n[  633.426123] sm5713_update_all_value : temp = 0xe98, t = 285 \n[  633.426141] sm5713_fg_get_scaled_capacity: scaled capacity (17.0)\n[  633.426168] sec_bat_get_battery_info:Vnow(3724mV),Vavg(3722mV),Inow(-95mA),Iavg(-99mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(285),Tusb(0),Tchg(292),Twpc(0)\n[  633.426226] sm5713_fg_get_property: psp = 0x31\n[  633.426251] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  633.426460] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(285)\n[  633.426480] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  633.426498] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  633.427658] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  633.427698] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  633.427718] sm5713_fg_get_property: psp = 0x96\n[  633.442387] sm5713_fg_get_property: psp = 0x13\n[  633.443065] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  633.487957] [FG_ALL] 00:0000,c601,0000,000e,0000,1117,1de5,1dcb,80c3,1340,0117,1dbf,0319,0480,3c8a,0100,01:0010,ffff,0003,0017,0000,7003,ffff,ffff,ffff,1dc3,0a0a,0103,0004,ffff,0040,0064,02:04e1,03e6,ffff,0001,00a4,0146,3800,0078,03e4,00a4,060a,0048,ffff,000e,1f6b,0318,03:1f78,1f78,1f79,1f79,1f79,1f7a,1f7a,1f79,1f59,1f58,1f58,1f59,1f58,1f59,1f58,1f58,04:1f78,1f79,1f7a,1f7a,1f7a,1f79,1f79,1f7a,1f5a,1f59,1f59,1f5a,1f59,1f58,1f59,1f59,05:400f,400e,400e,400e,400e,400f,400f,400e,4014,400e,4012,400f,4012,4011,4013,4010,06:859a,90a3,29e2,0000,0000,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,8012,08:0008,8002,0000,ffff,801a,80c3,0001,80c6,072b,58ef,0000,0000,0000,ffff,ffff,ffff,09:0040,a000,0000,0000,0030,0201,0100,0153,0000,0000,0000,0000,0325,0000,0000,ffff,0a:1400,1b33,1c2a,1d6c,1d86,1da2,1dbb,1ddb,1df0,1e30,1e4f,1e5d,1e7e,1ea7,1edc,1f3d,0b:1f6f,1fa0,1ff1,2050,2082,20ee,2239,2400,0000,004c,0166,044c,0733,0a00,0ce6,0fcc,\n\n[  633.488036] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  633.488197] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  633.488238] sm5713_fg_get_property: psp = 0x13\n[  633.488299] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  633.488801] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  633.489167] sm5713_fg_get_property: psp = 0x14\n[  634.732677] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 21 20\n[  635.459701] sm5713_fg_get_property: psp = 0x13\n[  635.460711] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  636.465476] sm5713_fg_get_property: psp = 0x13\n[  636.466480] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  637.292676] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  637.470514] sm5713_fg_get_property: psp = 0x13\n[  637.471493] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  638.475705] sm5713_fg_get_property: psp = 0x13\n[  638.476692] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  639.480653] sm5713_fg_get_property: psp = 0x13\n[  639.481633] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  640.485763] sm5713_fg_get_property: psp = 0x13\n[  640.486752] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  640.492840] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  641.490724] sm5713_fg_get_property: psp = 0x13\n[  641.491710] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  642.495760] sm5713_fg_get_property: psp = 0x13\n[  642.496755] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  643.500723] sm5713_fg_get_property: psp = 0x13\n[  643.501671] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  643.692684] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  644.505786] sm5713_fg_get_property: psp = 0x13\n[  644.506783] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  645.510763] sm5713_fg_get_property: psp = 0x13\n[  645.511631] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  646.515725] sm5713_fg_get_property: psp = 0x13\n[  646.516708] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  647.520684] sm5713_fg_get_property: psp = 0x13\n[  647.521637] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  648.525695] sm5713_fg_get_property: psp = 0x13\n[  648.526679] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  649.452687] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  649.530658] sm5713_fg_get_property: psp = 0x13\n[  649.531658] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  650.536010] sm5713_fg_get_property: psp = 0x13\n[  650.536997] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  651.372706] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  651.540964] sm5713_fg_get_property: psp = 0x13\n[  651.541725] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  652.545803] sm5713_fg_get_property: psp = 0x13\n[  652.546804] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  653.550778] sm5713_fg_get_property: psp = 0x13\n[  653.551688] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  654.555923] sm5713_fg_get_property: psp = 0x13\n[  654.556946] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  655.212677] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  655.560928] sm5713_fg_get_property: psp = 0x13\n[  655.561685] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  656.565923] sm5713_fg_get_property: psp = 0x13\n[  656.566907] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  657.570899] sm5713_fg_get_property: psp = 0x13\n[  657.571659] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  658.575765] sm5713_fg_get_property: psp = 0x13\n[  658.576764] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  659.580724] sm5713_fg_get_property: psp = 0x13\n[  659.581686] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  660.585930] sm5713_fg_get_property: psp = 0x13\n[  660.586958] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  661.590938] sm5713_fg_get_property: psp = 0x13\n[  661.591700] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  661.612582] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  662.252701] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  662.595808] sm5713_fg_get_property: psp = 0x13\n[  662.596795] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  663.488558] sm5713_fg_get_property: psp = 0xd\n[  663.489433] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  663.491506] sm5713_cal_avg_vbat: batt_avgvoltage = 3722\n[  663.491533] sm5713_fg_get_property: psp = 0xe\n[  663.491552] sm5713_fg_get_property: psp = 0xe\n[  663.491570] sm5713_fg_get_property: psp = 0x13\n[  663.492062] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  663.492287] sm5713_fg_get_property: psp = 0x14\n[  663.492306] sm5713_fg_get_property: psp = 0x8f\n[  663.492325] sm5713_fg_get_property: psp = 0x8f\n[  663.492350] sm5713_fg_get_property: psp = 0x21\n[  663.492370] sec_bat_get_battery_info: Fail to set psy ((null))\n[  663.493228] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(285), Temp-ADC(1841)\n[  663.494265] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(292), Temp-ADC(1834)\n[  663.494301] sm5713_fg_get_property: psp = 0x33\n[  663.495356] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  663.496158] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  663.498219] sm5713_cal_avg_vbat: batt_avgvoltage = 3722\n[  663.498872] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  663.499491] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  663.500491] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 191 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 285\n[  663.501003] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[  663.501020] sm5713_get_soc: \n[  663.501635] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  663.501854] sm5713_get_soc: read = 0x1117, soc = 170\n[  663.501873] sm5713_get_soc: batt_soc = 170, soc = 170\n[  663.503545] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03f4, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  663.505552] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80e0, 0x86=0x8002, 0x87=0x80e7, 0x1F=0x0064, 0x94=0x0030\n[  663.505779] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3721, v_avg=3722, i=-111, i_avg=-102, ocv=3736, fg_t=191, b_t=285, cycle=279, soc=170, state=0x8\n[  663.505799] sm5713_update_all_value : temp = 0xe98, t = 285 \n[  663.505817] sm5713_fg_get_scaled_capacity: scaled capacity (17.0)\n[  663.505843] sec_bat_get_battery_info:Vnow(3721mV),Vavg(3722mV),Inow(-111mA),Iavg(-101mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(285),Tusb(0),Tchg(292),Twpc(0)\n[  663.505900] sm5713_fg_get_property: psp = 0x31\n[  663.505924] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  663.506123] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(285)\n[  663.506143] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  663.506161] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  663.507313] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  663.507352] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  663.507372] sm5713_fg_get_property: psp = 0x96\n[  663.507391] sm5713_fg_periodic_read: skip old(633) current(663)\n[  663.507417] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  663.507465] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  663.507582] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  663.507618] sm5713_fg_get_property: psp = 0x13\n[  663.508030] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  663.508257] sm5713_fg_get_property: psp = 0x14\n[  663.600797] sm5713_fg_get_property: psp = 0x13\n[  663.601561] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  664.605580] sm5713_fg_get_property: psp = 0x13\n[  664.606567] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  664.812539] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 22 21\n[  665.610557] sm5713_fg_get_property: psp = 0x13\n[  665.611539] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  666.615984] sm5713_fg_get_property: psp = 0x13\n[  666.616932] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  667.372691] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  667.620917] sm5713_fg_get_property: psp = 0x13\n[  667.621740] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  668.625847] sm5713_fg_get_property: psp = 0x13\n[  668.626845] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  669.630824] sm5713_fg_get_property: psp = 0x13\n[  669.631730] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  670.635825] sm5713_fg_get_property: psp = 0x13\n[  670.636828] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  671.640808] sm5713_fg_get_property: psp = 0x13\n[  671.641638] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  672.645750] sm5713_fg_get_property: psp = 0x13\n[  672.646742] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  673.132577] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  673.132688] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  673.650612] sm5713_fg_get_property: psp = 0x13\n[  673.651633] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  674.655756] sm5713_fg_get_property: psp = 0x13\n[  674.656737] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  675.660700] sm5713_fg_get_property: psp = 0x13\n[  675.661613] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  676.665734] sm5713_fg_get_property: psp = 0x13\n[  676.666725] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  677.670697] sm5713_fg_get_property: psp = 0x13\n[  677.671676] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  678.675813] sm5713_fg_get_property: psp = 0x13\n[  678.676805] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  679.532687] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  679.681173] sm5713_fg_get_property: psp = 0x13\n[  679.681857] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  680.685933] sm5713_fg_get_property: psp = 0x13\n[  680.686937] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  681.690907] sm5713_fg_get_property: psp = 0x13\n[  681.691735] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  682.695894] sm5713_fg_get_property: psp = 0x13\n[  682.696879] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  683.700812] sm5713_fg_get_property: psp = 0x13\n[  683.701617] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  684.652699] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  684.705735] sm5713_fg_get_property: psp = 0x13\n[  684.706725] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  685.292678] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  685.710712] sm5713_fg_get_property: psp = 0x13\n[  685.711659] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  686.715965] sm5713_fg_get_property: psp = 0x13\n[  686.716958] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  687.720959] sm5713_fg_get_property: psp = 0x13\n[  687.721725] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  688.725828] sm5713_fg_get_property: psp = 0x13\n[  688.726808] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  689.135730] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[  689.137293] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[  689.730799] sm5713_fg_get_property: psp = 0x13\n[  689.731713] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  690.735820] sm5713_fg_get_property: psp = 0x13\n[  690.736809] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  691.692692] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  691.740794] sm5713_fg_get_property: psp = 0x13\n[  691.741666] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  692.745792] sm5713_fg_get_property: psp = 0x13\n[  692.746808] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  693.507899] sm5713_fg_get_property: psp = 0xd\n[  693.508778] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  693.510848] sm5713_cal_avg_vbat: batt_avgvoltage = 3721\n[  693.510873] sm5713_fg_get_property: psp = 0xe\n[  693.510893] sm5713_fg_get_property: psp = 0xe\n[  693.510910] sm5713_fg_get_property: psp = 0x13\n[  693.511702] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  693.511926] sm5713_fg_get_property: psp = 0x14\n[  693.511946] sm5713_fg_get_property: psp = 0x8f\n[  693.511964] sm5713_fg_get_property: psp = 0x8f\n[  693.511990] sm5713_fg_get_property: psp = 0x21\n[  693.512009] sec_bat_get_battery_info: Fail to set psy ((null))\n[  693.512997] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(285), Temp-ADC(1843)\n[  693.514154] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(292), Temp-ADC(1836)\n[  693.514188] sm5713_fg_get_property: psp = 0x33\n[  693.515298] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  693.516101] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  693.518160] sm5713_cal_avg_vbat: batt_avgvoltage = 3721\n[  693.519027] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  693.520159] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  693.521161] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 191 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 285\n[  693.521676] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[  693.521693] sm5713_get_soc: \n[  693.522308] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  693.522620] sm5713_get_soc: read = 0x110b, soc = 170\n[  693.522640] sm5713_get_soc: batt_soc = 170, soc = 170\n[  693.524257] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03e0, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  693.526270] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80e5, 0x86=0x8005, 0x87=0x80de, 0x1F=0x0064, 0x94=0x0030\n[  693.526497] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3721, v_avg=3721, i=-106, i_avg=-108, ocv=3736, fg_t=191, b_t=285, cycle=279, soc=170, state=0x8\n[  693.526516] sm5713_update_all_value : temp = 0xe98, t = 285 \n[  693.526533] sm5713_fg_get_scaled_capacity: scaled capacity (17.0)\n[  693.526559] sec_bat_get_battery_info:Vnow(3721mV),Vavg(3721mV),Inow(-106mA),Iavg(-108mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(285),Tusb(0),Tchg(292),Twpc(0)\n[  693.526618] sm5713_fg_get_property: psp = 0x31\n[  693.526643] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  693.526842] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(285)\n[  693.526862] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  693.526880] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  693.528029] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  693.528070] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  693.528090] sm5713_fg_get_property: psp = 0x96\n[  693.528110] sm5713_fg_periodic_read: skip old(633) current(693)\n[  693.528136] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  693.528184] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  693.528296] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  693.528332] sm5713_fg_get_property: psp = 0x13\n[  693.528747] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  693.528970] sm5713_fg_get_property: psp = 0x14\n[  693.750575] sm5713_fg_get_property: psp = 0x13\n[  693.751524] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  694.755741] sm5713_fg_get_property: psp = 0x13\n[  694.756724] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  694.892679] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 23 22\n[  695.532707] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  695.760703] sm5713_fg_get_property: psp = 0x13\n[  695.761563] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  696.765674] sm5713_fg_get_property: psp = 0x13\n[  696.766671] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  697.452677] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  697.770662] sm5713_fg_get_property: psp = 0x13\n[  697.771646] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  698.775756] sm5713_fg_get_property: psp = 0x13\n[  698.776755] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  699.781126] sm5713_fg_get_property: psp = 0x13\n[  699.781763] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  700.785879] sm5713_fg_get_property: psp = 0x13\n[  700.786869] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  701.790839] sm5713_fg_get_property: psp = 0x13\n[  701.791743] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  702.795826] sm5713_fg_get_property: psp = 0x13\n[  702.796827] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  703.212678] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  703.800800] sm5713_fg_get_property: psp = 0x13\n[  703.801623] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  704.805744] sm5713_fg_get_property: psp = 0x13\n[  704.806729] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  705.810692] sm5713_fg_get_property: psp = 0x13\n[  705.811641] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  706.412701] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  706.815971] sm5713_fg_get_property: psp = 0x13\n[  706.816972] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  707.820952] sm5713_fg_get_property: psp = 0x13\n[  707.821707] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  708.825891] sm5713_fg_get_property: psp = 0x13\n[  708.826875] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  709.612686] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  709.830845] sm5713_fg_get_property: psp = 0x13\n[  709.831717] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  710.835799] sm5713_fg_get_property: psp = 0x13\n[  710.836789] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  711.840747] sm5713_fg_get_property: psp = 0x13\n[  711.841612] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  712.845707] sm5713_fg_get_property: psp = 0x13\n[  712.846759] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  713.850594] sm5713_fg_get_property: psp = 0x13\n[  713.851579] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  714.855676] sm5713_fg_get_property: psp = 0x13\n[  714.856677] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  715.372682] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  715.860649] sm5713_fg_get_property: psp = 0x13\n[  715.861601] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  716.865711] sm5713_fg_get_property: psp = 0x13\n[  716.866710] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  717.292700] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  717.870705] sm5713_fg_get_property: psp = 0x13\n[  717.871617] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  718.875733] sm5713_fg_get_property: psp = 0x13\n[  718.876717] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  719.880744] sm5713_fg_get_property: psp = 0x13\n[  719.881680] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  720.885798] sm5713_fg_get_property: psp = 0x13\n[  720.886789] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  721.132725] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  721.890764] sm5713_fg_get_property: psp = 0x13\n[  721.891633] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  722.895773] sm5713_fg_get_property: psp = 0x13\n[  722.896759] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  723.528613] sm5713_fg_get_property: psp = 0xd\n[  723.529489] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  723.531552] sm5713_cal_avg_vbat: batt_avgvoltage = 3721\n[  723.531578] sm5713_fg_get_property: psp = 0xe\n[  723.531597] sm5713_fg_get_property: psp = 0xe\n[  723.531615] sm5713_fg_get_property: psp = 0x13\n[  723.532034] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  723.532257] sm5713_fg_get_property: psp = 0x14\n[  723.532276] sm5713_fg_get_property: psp = 0x8f\n[  723.532295] sm5713_fg_get_property: psp = 0x8f\n[  723.532321] sm5713_fg_get_property: psp = 0x21\n[  723.532340] sec_bat_get_battery_info: Fail to set psy ((null))\n[  723.533113] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(284), Temp-ADC(1844)\n[  723.534286] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(292), Temp-ADC(1838)\n[  723.534321] sm5713_fg_get_property: psp = 0x33\n[  723.535368] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  723.536169] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  723.538238] sm5713_cal_avg_vbat: batt_avgvoltage = 3721\n[  723.538892] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  723.539508] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  723.540510] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 190 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 284\n[  723.541023] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[  723.541040] sm5713_get_soc: \n[  723.541654] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  723.541873] sm5713_get_soc: read = 0x110b, soc = 170\n[  723.541891] sm5713_get_soc: batt_soc = 170, soc = 170\n[  723.543553] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03d0, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  723.545559] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80d8, 0x86=0x0000, 0x87=0x80df, 0x1F=0x0064, 0x94=0x0030\n[  723.545785] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3722, v_avg=3721, i=-107, i_avg=-106, ocv=3736, fg_t=190, b_t=284, cycle=279, soc=170, state=0x8\n[  723.545804] sm5713_update_all_value : temp = 0xe98, t = 284 \n[  723.545821] sm5713_fg_get_scaled_capacity: scaled capacity (17.0)\n[  723.545847] sec_bat_get_battery_info:Vnow(3722mV),Vavg(3721mV),Inow(-107mA),Iavg(-106mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(284),Tusb(0),Tchg(292),Twpc(0)\n[  723.545903] sm5713_fg_get_property: psp = 0x31\n[  723.545928] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  723.546128] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(284)\n[  723.546147] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  723.546165] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  723.547317] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  723.547357] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  723.547378] sm5713_fg_get_property: psp = 0x96\n[  723.547397] sm5713_fg_periodic_read: skip old(633) current(723)\n[  723.547424] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  723.547475] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  723.547596] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  723.547632] sm5713_fg_get_property: psp = 0x13\n[  723.548048] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  723.548271] sm5713_fg_get_property: psp = 0x14\n[  723.900738] sm5713_fg_get_property: psp = 0x13\n[  723.901609] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  724.905631] sm5713_fg_get_property: psp = 0x13\n[  724.906604] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  724.972701] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 24 23\n[  725.910975] sm5713_fg_get_property: psp = 0x13\n[  725.911733] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  726.915857] sm5713_fg_get_property: psp = 0x13\n[  726.916849] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  727.532681] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  727.920824] sm5713_fg_get_property: psp = 0x13\n[  727.921731] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  728.172709] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  728.925931] sm5713_fg_get_property: psp = 0x13\n[  728.926917] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  729.930889] sm5713_fg_get_property: psp = 0x13\n[  729.931714] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  730.935814] sm5713_fg_get_property: psp = 0x13\n[  730.936813] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  731.940775] sm5713_fg_get_property: psp = 0x13\n[  731.941625] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  732.945634] sm5713_fg_get_property: psp = 0x13\n[  732.946620] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  733.292677] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  733.950606] sm5713_fg_get_property: psp = 0x13\n[  733.951594] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  734.955781] sm5713_fg_get_property: psp = 0x13\n[  734.956765] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  735.960751] sm5713_fg_get_property: psp = 0x13\n[  735.961658] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  736.965781] sm5713_fg_get_property: psp = 0x13\n[  736.966776] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  737.971019] sm5713_fg_get_property: psp = 0x13\n[  737.971820] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  738.975901] sm5713_fg_get_property: psp = 0x13\n[  738.976887] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  739.692711] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  739.692823] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  739.980842] sm5713_fg_get_property: psp = 0x13\n[  739.981664] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  740.985787] sm5713_fg_get_property: psp = 0x13\n[  740.986775] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  741.990733] sm5713_fg_get_property: psp = 0x13\n[  741.991639] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  742.995755] sm5713_fg_get_property: psp = 0x13\n[  742.996794] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  744.000803] sm5713_fg_get_property: psp = 0x13\n[  744.001714] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  745.005849] sm5713_fg_get_property: psp = 0x13\n[  745.006833] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  745.452540] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  746.010837] sm5713_fg_get_property: psp = 0x13\n[  746.011743] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  747.015828] sm5713_fg_get_property: psp = 0x13\n[  747.016818] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  748.020783] sm5713_fg_get_property: psp = 0x13\n[  748.021665] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  749.026074] sm5713_fg_get_property: psp = 0x13\n[  749.027033] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  750.037602]  2617     3.2 C/MHz     46 mW    5.3 J   56.6 I/mJ   114.6 s\n                910: \n[  750.572889] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  750.575688] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[  750.577134] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[  751.212798] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  753.547927] sm5713_fg_get_property: psp = 0xd\n[  753.548801] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  753.550772] sm5713_cal_avg_vbat: batt_avgvoltage = 3721\n[  753.550796] sm5713_fg_get_property: psp = 0xe\n[  753.550815] sm5713_fg_get_property: psp = 0xe\n[  753.550830] sm5713_fg_get_property: psp = 0x13\n[  753.551646] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  753.551878] sm5713_fg_get_property: psp = 0x14\n[  753.551896] sm5713_fg_get_property: psp = 0x8f\n[  753.551912] sm5713_fg_get_property: psp = 0x8f\n[  753.551936] sm5713_fg_get_property: psp = 0x21\n[  753.551954] sec_bat_get_battery_info: Fail to set psy ((null))\n[  753.552985] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(284), Temp-ADC(1846)\n[  753.554494] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(291), Temp-ADC(1842)\n[  753.554528] sm5713_fg_get_property: psp = 0x33\n[  753.555629] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  753.556415] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  753.558437] sm5713_cal_avg_vbat: batt_avgvoltage = 3721\n[  753.559287] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  753.560321] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  753.561278] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 190 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 284\n[  753.561767] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[  753.561783] sm5713_get_soc: \n[  753.562499] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  753.562712] sm5713_get_soc: read = 0x110b, soc = 170\n[  753.562729] sm5713_get_soc: batt_soc = 170, soc = 170\n[  753.564430] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03e4, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  753.566547] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80c3, 0x86=0x0000, 0x87=0x80c7, 0x1F=0x0064, 0x94=0x0030\n[  753.566783] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3723, v_avg=3721, i=-95, i_avg=-102, ocv=3736, fg_t=190, b_t=284, cycle=279, soc=170, state=0x8\n[  753.566800] sm5713_update_all_value : temp = 0xe98, t = 284 \n[  753.566815] sm5713_fg_get_scaled_capacity: scaled capacity (17.0)\n[  753.566837] sec_bat_get_battery_info:Vnow(3723mV),Vavg(3721mV),Inow(-95mA),Iavg(-103mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(17%),Tbat(284),Tusb(0),Tchg(291),Twpc(0)\n[  753.566890] sm5713_fg_get_property: psp = 0x31\n[  753.566913] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  753.567121] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(284)\n[  753.567139] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  753.567155] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  753.568299] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  753.568334] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  753.568352] sm5713_fg_get_property: psp = 0x96\n[  753.568369] sm5713_fg_periodic_read: skip old(633) current(753)\n[  753.568393] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  753.568441] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  753.568552] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  753.568584] sm5713_fg_get_property: psp = 0x13\n[  753.569063] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  753.569279] sm5713_fg_get_property: psp = 0x14\n[  754.146883] sm5713_fg_get_property: psp = 0x13\n[  754.147896] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  755.052686] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 25 24\n[  755.151802] sm5713_fg_get_property: psp = 0x13\n[  755.152373] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  756.156119] sm5713_fg_get_property: psp = 0x13\n[  756.157110] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  757.161269] sm5713_fg_get_property: psp = 0x13\n[  757.161832] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  757.612626] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  759.176343] sm5713_fg_get_property: psp = 0x13\n[  759.177301] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  760.181346] sm5713_fg_get_property: psp = 0x13\n[  760.182009] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  761.185791] sm5713_fg_get_property: psp = 0x13\n[  761.186792] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  761.452682] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  762.190517] sm5713_fg_get_property: psp = 0x13\n[  762.191462] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  763.195508] sm5713_fg_get_property: psp = 0x13\n[  763.196454] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  763.372669] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  764.200305] sm5713_fg_get_property: psp = 0x13\n[  764.201253] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  765.205399] sm5713_fg_get_property: psp = 0x13\n[  765.206346] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  766.210179] sm5713_fg_get_property: psp = 0x13\n[  766.211133] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  767.215295] sm5713_fg_get_property: psp = 0x13\n[  767.216244] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  768.220257] sm5713_fg_get_property: psp = 0x13\n[  768.221242] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  769.132803] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  769.225448] sm5713_fg_get_property: psp = 0x13\n[  769.226394] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  770.230224] sm5713_fg_get_property: psp = 0x13\n[  770.231169] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  771.235334] sm5713_fg_get_property: psp = 0x13\n[  771.236283] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  772.240108] sm5713_fg_get_property: psp = 0x13\n[  772.241049] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  772.332690] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  773.245240] sm5713_fg_get_property: psp = 0x13\n[  773.246190] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  774.250219] sm5713_fg_get_property: psp = 0x13\n[  774.251102] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  775.255431] sm5713_fg_get_property: psp = 0x13\n[  775.256369] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  775.532648] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  776.260234] sm5713_fg_get_property: psp = 0x13\n[  776.261178] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  777.265370] sm5713_fg_get_property: psp = 0x13\n[  777.266314] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  778.270148] sm5713_fg_get_property: psp = 0x13\n[  778.271103] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  779.275302] sm5713_fg_get_property: psp = 0x13\n[  779.276248] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  780.280080] sm5713_fg_get_property: psp = 0x13\n[  780.281030] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  781.285448] sm5713_fg_get_property: psp = 0x13\n[  781.286409] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  781.292894] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  782.290260] sm5713_fg_get_property: psp = 0x13\n[  782.291200] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  783.212675] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  783.295446] sm5713_fg_get_property: psp = 0x13\n[  783.296393] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  783.568852] sm5713_fg_get_property: psp = 0xd\n[  783.569673] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  783.571631] sm5713_cal_avg_vbat: batt_avgvoltage = 3721\n[  783.571655] sm5713_fg_get_property: psp = 0xe\n[  783.571672] sm5713_fg_get_property: psp = 0xe\n[  783.571688] sm5713_fg_get_property: psp = 0x13\n[  783.572095] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  783.572309] sm5713_fg_get_property: psp = 0x14\n[  783.572326] sm5713_fg_get_property: psp = 0x8f\n[  783.572342] sm5713_fg_get_property: psp = 0x8f\n[  783.572367] sm5713_fg_get_property: psp = 0x21\n[  783.572384] sec_bat_get_battery_info: Fail to set psy ((null))\n[  783.573525] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(284), Temp-ADC(1848)\n[  783.574643] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(290), Temp-ADC(1844)\n[  783.574673] sm5713_fg_get_property: psp = 0x33\n[  783.575670] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  783.576426] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  783.578385] sm5713_cal_avg_vbat: batt_avgvoltage = 3721\n[  783.578892] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  783.579493] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  783.580462] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 188 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 284\n[  783.580955] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[  783.580970] sm5713_get_soc: \n[  783.581566] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  783.581778] sm5713_get_soc: read = 0x10fe, soc = 169\n[  783.581794] sm5713_get_soc: batt_soc = 169, soc = 169\n[  783.583376] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03dc, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  783.585323] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80e6, 0x86=0x0006, 0x87=0x80e6, 0x1F=0x0064, 0x94=0x0030\n[  783.585546] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3721, v_avg=3721, i=-110, i_avg=-101, ocv=3736, fg_t=188, b_t=284, cycle=279, soc=169, state=0x8\n[  783.585563] sm5713_update_all_value : temp = 0xe98, t = 284 \n[  783.585579] sm5713_fg_get_scaled_capacity: scaled capacity (16.9)\n[  783.585602] sec_bat_get_battery_info:Vnow(3721mV),Vavg(3721mV),Inow(-110mA),Iavg(-101mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(284),Tusb(0),Tchg(290),Twpc(0)\n[  783.585653] sm5713_fg_get_property: psp = 0x31\n[  783.585676] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  783.585866] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(284)\n[  783.585884] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  783.585900] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  783.587027] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  783.587063] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  783.587081] sm5713_fg_get_property: psp = 0x96\n[  783.587098] sm5713_fg_periodic_read: skip old(633) current(783)\n[  783.587122] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  783.587171] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  783.587279] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  783.587312] sm5713_fg_get_property: psp = 0x13\n[  783.587714] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  783.587930] sm5713_fg_get_property: psp = 0x14\n[  784.300242] sm5713_fg_get_property: psp = 0x13\n[  784.301183] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  785.132654] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 26 25\n[  785.305302] sm5713_fg_get_property: psp = 0x13\n[  785.306247] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  786.310083] sm5713_fg_get_property: psp = 0x13\n[  786.311028] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  787.315463] sm5713_fg_get_property: psp = 0x13\n[  787.316373] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  787.692661] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  788.320254] sm5713_fg_get_property: psp = 0x13\n[  788.321198] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  789.325399] sm5713_fg_get_property: psp = 0x13\n[  789.326362] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  790.330199] sm5713_fg_get_property: psp = 0x13\n[  790.331154] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  791.335365] sm5713_fg_get_property: psp = 0x13\n[  791.336316] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  792.340140] sm5713_fg_get_property: psp = 0x13\n[  792.341091] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  793.345254] sm5713_fg_get_property: psp = 0x13\n[  793.346217] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  793.452659] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  794.092815] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  794.350085] sm5713_fg_get_property: psp = 0x13\n[  794.351034] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  795.355213] sm5713_fg_get_property: psp = 0x13\n[  795.356158] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  796.359992] sm5713_fg_get_property: psp = 0x13\n[  796.360937] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  797.365124] sm5713_fg_get_property: psp = 0x13\n[  797.366083] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  798.369933] sm5713_fg_get_property: psp = 0x13\n[  798.370880] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  799.212669] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  799.375042] sm5713_fg_get_property: psp = 0x13\n[  799.375971] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  800.379706] sm5713_fg_get_property: psp = 0x13\n[  800.380648] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  801.383530] sm5713_fg_get_property: psp = 0x13\n[  801.384471] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  802.388281] sm5713_fg_get_property: psp = 0x13\n[  802.389243] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  803.393134] sm5713_fg_get_property: psp = 0x13\n[  803.394060] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  804.397875] sm5713_fg_get_property: psp = 0x13\n[  804.398831] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  805.402790] sm5713_fg_get_property: psp = 0x13\n[  805.403768] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  805.612688] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  805.612796] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  806.407617] sm5713_fg_get_property: psp = 0x13\n[  806.408569] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  807.412421] sm5713_fg_get_property: psp = 0x13\n[  807.413503] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  808.417266] sm5713_fg_get_property: psp = 0x13\n[  808.418216] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  809.422045] sm5713_fg_get_property: psp = 0x13\n[  809.422822] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  810.426712] sm5713_fg_get_property: psp = 0x13\n[  810.427658] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  811.372653] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  811.431488] sm5713_fg_get_property: psp = 0x13\n[  811.432028] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  812.015676] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[  812.017050] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[  812.435894] sm5713_fg_get_property: psp = 0x13\n[  812.436833] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  813.440685] sm5713_fg_get_property: psp = 0x13\n[  813.441603] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  813.587587] sm5713_fg_get_property: psp = 0xd\n[  813.588422] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  813.590372] sm5713_cal_avg_vbat: batt_avgvoltage = 3721\n[  813.590396] sm5713_fg_get_property: psp = 0xe\n[  813.590414] sm5713_fg_get_property: psp = 0xe\n[  813.590430] sm5713_fg_get_property: psp = 0x13\n[  813.591244] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  813.591556] sm5713_fg_get_property: psp = 0x14\n[  813.591574] sm5713_fg_get_property: psp = 0x8f\n[  813.591590] sm5713_fg_get_property: psp = 0x8f\n[  813.591613] sm5713_fg_get_property: psp = 0x21\n[  813.591631] sec_bat_get_battery_info: Fail to set psy ((null))\n[  813.592378] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(283), Temp-ADC(1851)\n[  813.593681] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(290), Temp-ADC(1845)\n[  813.593712] sm5713_fg_get_property: psp = 0x33\n[  813.594758] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  813.595516] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  813.597408] sm5713_cal_avg_vbat: batt_avgvoltage = 3721\n[  813.598227] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  813.599442] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  813.601238] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 188 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 283\n[  813.601732] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[  813.601748] sm5713_get_soc: \n[  813.602346] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  813.602769] sm5713_get_soc: read = 0x10fe, soc = 169\n[  813.602788] sm5713_get_soc: batt_soc = 169, soc = 169\n[  813.604372] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03f4, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  813.606326] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80d8, 0x86=0x8001, 0x87=0x80e4, 0x1F=0x0064, 0x94=0x0030\n[  813.606545] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3722, v_avg=3721, i=-109, i_avg=-109, ocv=3736, fg_t=188, b_t=283, cycle=279, soc=169, state=0x8\n[  813.606562] sm5713_update_all_value : temp = 0xe98, t = 283 \n[  813.606578] sm5713_fg_get_scaled_capacity: scaled capacity (16.9)\n[  813.606604] sec_bat_get_battery_info:Vnow(3722mV),Vavg(3721mV),Inow(-109mA),Iavg(-109mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(283),Tusb(0),Tchg(290),Twpc(0)\n[  813.606662] sm5713_fg_get_property: psp = 0x31\n[  813.606685] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  813.606877] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(283)\n[  813.606895] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  813.606912] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  813.608040] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  813.608076] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  813.608094] sm5713_fg_get_property: psp = 0x96\n[  813.608110] sm5713_fg_periodic_read: skip old(633) current(813)\n[  813.608134] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  813.608182] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  813.608304] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  813.608337] sm5713_fg_get_property: psp = 0x13\n[  813.608742] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  813.608959] sm5713_fg_get_property: psp = 0x14\n[  814.445581] sm5713_fg_get_property: psp = 0x13\n[  814.446533] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  815.212651] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 27 26\n[  815.450541] sm5713_fg_get_property: psp = 0x13\n[  815.451493] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  816.455346] sm5713_fg_get_property: psp = 0x13\n[  816.456287] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  816.492712] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  817.132657] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  817.460146] sm5713_fg_get_property: psp = 0x13\n[  817.461091] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  818.465293] sm5713_fg_get_property: psp = 0x13\n[  818.466261] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  819.470120] sm5713_fg_get_property: psp = 0x13\n[  819.471071] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  820.475268] sm5713_fg_get_property: psp = 0x13\n[  820.476216] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  821.480057] sm5713_fg_get_property: psp = 0x13\n[  821.481011] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  822.485193] sm5713_fg_get_property: psp = 0x13\n[  822.486134] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  823.490054] sm5713_fg_get_property: psp = 0x13\n[  823.491040] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  823.532680] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  824.495257] sm5713_fg_get_property: psp = 0x13\n[  824.496203] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  825.500044] sm5713_fg_get_property: psp = 0x13\n[  825.500988] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  826.505188] sm5713_fg_get_property: psp = 0x13\n[  826.506133] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  827.372837] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  827.509972] sm5713_fg_get_property: psp = 0x13\n[  827.510919] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  828.515085] sm5713_fg_get_property: psp = 0x13\n[  828.516036] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  829.292662] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  829.519860] sm5713_fg_get_property: psp = 0x13\n[  829.520805] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  830.524988] sm5713_fg_get_property: psp = 0x13\n[  830.525961] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  831.529786] sm5713_fg_get_property: psp = 0x13\n[  831.530738] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  832.535079] sm5713_fg_get_property: psp = 0x13\n[  832.536021] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  833.539846] sm5713_fg_get_property: psp = 0x13\n[  833.540798] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  834.544967] sm5713_fg_get_property: psp = 0x13\n[  834.545912] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  835.549727] sm5713_fg_get_property: psp = 0x13\n[  835.550675] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  835.692677] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  836.553580] sm5713_fg_get_property: psp = 0x13\n[  836.554563] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  837.558400] sm5713_fg_get_property: psp = 0x13\n[  837.559345] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  838.252687] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  838.563248] sm5713_fg_get_property: psp = 0x13\n[  838.564200] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  839.568166] sm5713_fg_get_property: psp = 0x13\n[  839.569098] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  840.573027] sm5713_fg_get_property: psp = 0x13\n[  840.574021] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  841.452652] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  841.577883] sm5713_fg_get_property: psp = 0x13\n[  841.578827] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  842.582791] sm5713_fg_get_property: psp = 0x13\n[  842.583728] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  843.587586] sm5713_fg_get_property: psp = 0x13\n[  843.588539] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  843.608442] sm5713_fg_get_property: psp = 0xd\n[  843.609269] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  843.611223] sm5713_cal_avg_vbat: batt_avgvoltage = 3721\n[  843.611245] sm5713_fg_get_property: psp = 0xe\n[  843.611261] sm5713_fg_get_property: psp = 0xe\n[  843.611277] sm5713_fg_get_property: psp = 0x13\n[  843.611889] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  843.612104] sm5713_fg_get_property: psp = 0x14\n[  843.612121] sm5713_fg_get_property: psp = 0x8f\n[  843.612137] sm5713_fg_get_property: psp = 0x8f\n[  843.612161] sm5713_fg_get_property: psp = 0x21\n[  843.612178] sec_bat_get_battery_info: Fail to set psy ((null))\n[  843.612958] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(282), Temp-ADC(1854)\n[  843.614275] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(290), Temp-ADC(1846)\n[  843.614308] sm5713_fg_get_property: psp = 0x33\n[  843.615366] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  843.616126] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  843.618069] sm5713_cal_avg_vbat: batt_avgvoltage = 3721\n[  843.618883] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  843.620111] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  843.621138] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 188 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 282\n[  843.621633] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[  843.621649] sm5713_get_soc: \n[  843.622245] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  843.622515] sm5713_get_soc: read = 0x10fe, soc = 169\n[  843.622532] sm5713_get_soc: batt_soc = 169, soc = 169\n[  843.624095] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0400, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  843.626047] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80e6, 0x86=0x0002, 0x87=0x80e1, 0x1F=0x0064, 0x94=0x0030\n[  843.626265] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3720, v_avg=3721, i=-108, i_avg=-108, ocv=3736, fg_t=188, b_t=282, cycle=279, soc=169, state=0x8\n[  843.626283] sm5713_update_all_value : temp = 0xe98, t = 282 \n[  843.626298] sm5713_fg_get_scaled_capacity: scaled capacity (16.9)\n[  843.626322] sec_bat_get_battery_info:Vnow(3720mV),Vavg(3721mV),Inow(-108mA),Iavg(-108mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(282),Tusb(0),Tchg(290),Twpc(0)\n[  843.626373] sm5713_fg_get_property: psp = 0x31\n[  843.626396] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  843.626585] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(282)\n[  843.626603] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  843.626619] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  843.627747] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  843.627783] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  843.627801] sm5713_fg_get_property: psp = 0x96\n[  843.682482] [FG_ALL] 00:0000,c601,0000,000e,0000,10fe,1de4,1dc4,80de,12d0,0117,1db7,0319,0480,3c8a,0100,01:0010,ffff,0003,0017,0000,7003,ffff,ffff,ffff,1dba,0a0a,0103,0004,ffff,0040,0064,02:04e1,03e6,ffff,0001,00a4,0146,3800,0078,0400,00a4,060a,0048,ffff,000e,1f6b,0318,03:1f78,1f78,1f79,1f79,1f79,1f7a,1f7a,1f79,1f59,1f58,1f58,1f59,1f58,1f59,1f58,1f58,04:1f78,1f79,1f7a,1f7a,1f7a,1f79,1f79,1f7a,1f5a,1f59,1f59,1f5a,1f59,1f58,1f59,1f59,05:400f,400e,400e,400e,400e,400f,400f,400e,4014,400e,4012,400f,4012,4011,4013,4010,06:859a,90a9,29e2,0000,0000,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,8012,08:0008,8003,0000,ffff,8020,80e6,0002,80e1,071e,58e4,0000,0000,0000,ffff,ffff,ffff,09:0040,a000,0000,0000,0030,0201,0100,0153,0000,0000,0000,0000,0325,0000,0000,ffff,0a:1400,1b33,1c2a,1d6c,1d86,1da2,1dbb,1ddb,1df0,1e30,1e4f,1e5d,1e7e,1ea7,1edc,1f3d,0b:1f6f,1fa0,1ff1,2050,2082,20ee,2239,2400,0000,004c,0166,044c,0733,0a00,0ce6,0fcc,\n\n[  843.682536] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  843.682579] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  843.682681] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  843.682715] sm5713_fg_get_property: psp = 0x13\n[  843.683124] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  843.683342] sm5713_fg_get_property: psp = 0x14\n[  844.592381] sm5713_fg_get_property: psp = 0x13\n[  844.593482] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  845.292656] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 28 27\n[  845.597350] sm5713_fg_get_property: psp = 0x13\n[  845.598308] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  846.602150] sm5713_fg_get_property: psp = 0x13\n[  846.603090] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  847.212651] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  847.606986] sm5713_fg_get_property: psp = 0x13\n[  847.607923] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  848.612113] sm5713_fg_get_property: psp = 0x13\n[  848.613038] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  849.132700] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  849.616823] sm5713_fg_get_property: psp = 0x13\n[  849.617767] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  850.621607] sm5713_fg_get_property: psp = 0x13\n[  850.622155] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  851.625858] sm5713_fg_get_property: psp = 0x13\n[  851.626818] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  852.630663] sm5713_fg_get_property: psp = 0x13\n[  852.631574] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  853.612664] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  853.635532] sm5713_fg_get_property: psp = 0x13\n[  853.636471] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  854.640305] sm5713_fg_get_property: psp = 0x13\n[  854.641252] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  855.645379] sm5713_fg_get_property: psp = 0x13\n[  855.646326] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  856.650156] sm5713_fg_get_property: psp = 0x13\n[  856.651105] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  857.655295] sm5713_fg_get_property: psp = 0x13\n[  857.656245] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  858.660357] sm5713_fg_get_property: psp = 0x13\n[  858.661330] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  859.372655] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  859.665513] sm5713_fg_get_property: psp = 0x13\n[  859.666454] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  860.652742] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  860.676039]  2955     3.2 C/MHz     56 mW    5.7 J   52.7 I/mJ   101.5 s\n               1053: \n[  864.786243] sm5713_fg_get_property: psp = 0x13\n[  864.787057] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  865.132673] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  865.790437] sm5713_fg_get_property: psp = 0x13\n[  865.791222] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  866.794863] sm5713_fg_get_property: psp = 0x13\n[  866.795733] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  867.799088] sm5713_fg_get_property: psp = 0x13\n[  867.799937] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  869.811800] sm5713_fg_get_property: psp = 0x13\n[  869.812363] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  870.815808] sm5713_fg_get_property: psp = 0x13\n[  870.816607] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  871.532635] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  871.532720] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  871.819859] sm5713_fg_get_property: psp = 0x13\n[  871.820677] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  872.823323] sm5713_fg_get_property: psp = 0x13\n[  872.824149] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  873.455186] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[  873.456514] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x02 5:0x00]\n[  873.682827] sm5713_fg_get_property: psp = 0xd\n[  873.683490] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  873.685117] sm5713_cal_avg_vbat: batt_avgvoltage = 3720\n[  873.685137] sm5713_fg_get_property: psp = 0xe\n[  873.685151] sm5713_fg_get_property: psp = 0xe\n[  873.685165] sm5713_fg_get_property: psp = 0x13\n[  873.685853] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  873.686207] sm5713_fg_get_property: psp = 0x14\n[  873.686222] sm5713_fg_get_property: psp = 0x8f\n[  873.686236] sm5713_fg_get_property: psp = 0x8f\n[  873.686256] sm5713_fg_get_property: psp = 0x21\n[  873.686271] sec_bat_get_battery_info: Fail to set psy ((null))\n[  873.687563] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(282), Temp-ADC(1857)\n[  873.688346] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(289), Temp-ADC(1848)\n[  873.688370] sm5713_fg_get_property: psp = 0x33\n[  873.688906] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  873.689260] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  873.690162] sm5713_cal_avg_vbat: batt_avgvoltage = 3720\n[  873.690563] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  873.691132] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  873.692044] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 188 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 282\n[  873.692533] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[  873.692546] sm5713_get_soc: \n[  873.693114] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  873.693314] sm5713_get_soc: read = 0x10f2, soc = 169\n[  873.693327] sm5713_get_soc: batt_soc = 169, soc = 169\n[  873.694818] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0414, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  873.696675] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80da, 0x86=0x8006, 0x87=0x80ff, 0x1F=0x0064, 0x94=0x0030\n[  873.696881] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3720, v_avg=3720, i=-123, i_avg=-113, ocv=3736, fg_t=188, b_t=282, cycle=279, soc=169, state=0x8\n[  873.696894] sm5713_update_all_value : temp = 0xe98, t = 282 \n[  873.696908] sm5713_fg_get_scaled_capacity: scaled capacity (16.9)\n[  873.696927] sec_bat_get_battery_info:Vnow(3720mV),Vavg(3720mV),Inow(-123mA),Iavg(-112mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(282),Tusb(0),Tchg(289),Twpc(0)\n[  873.696969] sm5713_fg_get_property: psp = 0x31\n[  873.696988] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  873.697166] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(282)\n[  873.697180] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  873.697194] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  873.698285] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  873.698315] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  873.698330] sm5713_fg_get_property: psp = 0x96\n[  873.698344] sm5713_fg_periodic_read: skip old(843) current(873)\n[  873.698364] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  873.698402] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  873.698491] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  873.698519] sm5713_fg_get_property: psp = 0x13\n[  873.698898] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  873.699102] sm5713_fg_get_property: psp = 0x14\n[  873.827462] sm5713_fg_get_property: psp = 0x13\n[  873.828289] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  874.831583] sm5713_fg_get_property: psp = 0x13\n[  874.832072] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  875.372613] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 29 28\n[  875.835308] sm5713_fg_get_property: psp = 0x13\n[  875.836132] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  876.839458] sm5713_fg_get_property: psp = 0x13\n[  876.840283] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  877.292736] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  877.843321] sm5713_fg_get_property: psp = 0x13\n[  877.844152] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  878.847450] sm5713_fg_get_property: psp = 0x13\n[  878.848281] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  879.851599] sm5713_fg_get_property: psp = 0x13\n[  879.852108] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  880.855350] sm5713_fg_get_property: psp = 0x13\n[  880.856175] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  881.859464] sm5713_fg_get_property: psp = 0x13\n[  881.860298] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  882.412646] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  882.863333] sm5713_fg_get_property: psp = 0x13\n[  882.864110] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  883.692629] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  883.867429] sm5713_fg_get_property: psp = 0x13\n[  883.868197] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  884.871499] sm5713_fg_get_property: psp = 0x13\n[  884.872089] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  885.875346] sm5713_fg_get_property: psp = 0x13\n[  885.876120] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  886.879435] sm5713_fg_get_property: psp = 0x13\n[  886.880214] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  887.883317] sm5713_fg_get_property: psp = 0x13\n[  887.884103] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  888.887417] sm5713_fg_get_property: psp = 0x13\n[  888.888245] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  889.452615] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  889.891715] sm5713_fg_get_property: psp = 0x13\n[  889.892219] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  890.895601] sm5713_fg_get_property: psp = 0x13\n[  890.896356] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  891.899549] sm5713_fg_get_property: psp = 0x13\n[  891.900383] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  892.903216] sm5713_fg_get_property: psp = 0x13\n[  892.903997] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  893.292634] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  893.907293] sm5713_fg_get_property: psp = 0x13\n[  893.908075] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  894.911370] sm5713_fg_get_property: psp = 0x13\n[  894.911989] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  895.212614] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  895.915344] sm5713_fg_get_property: psp = 0x13\n[  895.916167] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  896.919493] sm5713_fg_get_property: psp = 0x13\n[  896.920319] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  897.923315] sm5713_fg_get_property: psp = 0x13\n[  897.924160] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  898.927465] sm5713_fg_get_property: psp = 0x13\n[  898.928291] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  899.931586] sm5713_fg_get_property: psp = 0x13\n[  899.932077] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  900.935318] sm5713_fg_get_property: psp = 0x13\n[  900.936145] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  901.612504] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  901.939459] sm5713_fg_get_property: psp = 0x13\n[  901.940233] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  902.943318] sm5713_fg_get_property: psp = 0x13\n[  902.944141] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  903.698743] sm5713_fg_get_property: psp = 0xd\n[  903.699430] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  903.701065] sm5713_cal_avg_vbat: batt_avgvoltage = 3720\n[  903.701085] sm5713_fg_get_property: psp = 0xe\n[  903.701100] sm5713_fg_get_property: psp = 0xe\n[  903.701113] sm5713_fg_get_property: psp = 0x13\n[  903.701745] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  903.701948] sm5713_fg_get_property: psp = 0x14\n[  903.701963] sm5713_fg_get_property: psp = 0x8f\n[  903.701978] sm5713_fg_get_property: psp = 0x8f\n[  903.701998] sm5713_fg_get_property: psp = 0x21\n[  903.702014] sec_bat_get_battery_info: Fail to set psy ((null))\n[  903.702893] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(281), Temp-ADC(1859)\n[  903.703912] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(289), Temp-ADC(1847)\n[  903.703936] sm5713_fg_get_property: psp = 0x33\n[  903.704777] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  903.705413] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  903.707040] sm5713_cal_avg_vbat: batt_avgvoltage = 3720\n[  903.707723] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  903.708745] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  903.710166] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 188 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 281\n[  903.710631] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[  903.710645] sm5713_get_soc: \n[  903.711211] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  903.711412] sm5713_get_soc: read = 0x10f2, soc = 169\n[  903.711425] sm5713_get_soc: batt_soc = 169, soc = 169\n[  903.712921] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0408, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  903.714778] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80f4, 0x86=0x0002, 0x87=0x80f1, 0x1F=0x0064, 0x94=0x0030\n[  903.714985] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3720, v_avg=3720, i=-116, i_avg=-118, ocv=3736, fg_t=188, b_t=281, cycle=279, soc=169, state=0x8\n[  903.714999] sm5713_update_all_value : temp = 0xe98, t = 281 \n[  903.715013] sm5713_fg_get_scaled_capacity: scaled capacity (16.9)\n[  903.715033] sec_bat_get_battery_info:Vnow(3720mV),Vavg(3720mV),Inow(-116mA),Iavg(-118mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(281),Tusb(0),Tchg(289),Twpc(0)\n[  903.715076] sm5713_fg_get_property: psp = 0x31\n[  903.715095] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  903.715272] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(281)\n[  903.715287] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  903.715301] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  903.716392] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  903.716422] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  903.716438] sm5713_fg_get_property: psp = 0x96\n[  903.716452] sm5713_fg_periodic_read: skip old(843) current(903)\n[  903.716472] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  903.716510] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  903.716600] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  903.716628] sm5713_fg_get_property: psp = 0x13\n[  903.717017] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  903.717218] sm5713_fg_get_property: psp = 0x14\n[  903.947456] sm5713_fg_get_property: psp = 0x13\n[  903.948282] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  904.172653] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  904.951590] sm5713_fg_get_property: psp = 0x13\n[  904.952094] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  905.452612] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 30 29\n[  905.955322] sm5713_fg_get_property: psp = 0x13\n[  905.956151] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  906.959453] sm5713_fg_get_property: psp = 0x13\n[  906.960232] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  907.372626] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  907.963340] sm5713_fg_get_property: psp = 0x13\n[  907.964122] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  908.967607] sm5713_fg_get_property: psp = 0x13\n[  908.968474] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  909.971827] sm5713_fg_get_property: psp = 0x13\n[  909.972337] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  910.975450] sm5713_fg_get_property: psp = 0x13\n[  910.976274] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  911.979574] sm5713_fg_get_property: psp = 0x13\n[  911.980402] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  912.983322] sm5713_fg_get_property: psp = 0x13\n[  912.984100] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  913.132628] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  913.987406] sm5713_fg_get_property: psp = 0x13\n[  913.988191] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  914.991486] sm5713_fg_get_property: psp = 0x13\n[  914.992084] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  915.692641] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  915.995350] sm5713_fg_get_property: psp = 0x13\n[  915.996172] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  916.999476] sm5713_fg_get_property: psp = 0x13\n[  917.000301] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  918.003325] sm5713_fg_get_property: psp = 0x13\n[  918.004115] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  919.007420] sm5713_fg_get_property: psp = 0x13\n[  919.008243] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  919.532628] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  920.011552] sm5713_fg_get_property: psp = 0x13\n[  920.012057] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  921.015282] sm5713_fg_get_property: psp = 0x13\n[  921.016061] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  922.019357] sm5713_fg_get_property: psp = 0x13\n[  922.020138] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  923.023305] sm5713_fg_get_property: psp = 0x13\n[  923.024088] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  924.027501] sm5713_fg_get_property: psp = 0x13\n[  924.028306] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  925.031499] sm5713_fg_get_property: psp = 0x13\n[  925.032093] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  925.292641] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  926.035350] sm5713_fg_get_property: psp = 0x13\n[  926.036179] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  926.572631] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  927.039478] sm5713_fg_get_property: psp = 0x13\n[  927.040308] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  928.043360] sm5713_fg_get_property: psp = 0x13\n[  928.044176] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  929.047494] sm5713_fg_get_property: psp = 0x13\n[  929.048276] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  930.051576] sm5713_fg_get_property: psp = 0x13\n[  930.052064] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  931.055286] sm5713_fg_get_property: psp = 0x13\n[  931.056061] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  931.692616] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  932.059379] sm5713_fg_get_property: psp = 0x13\n[  932.060211] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  933.063318] sm5713_fg_get_property: psp = 0x13\n[  933.064146] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  933.716850] sm5713_fg_get_property: psp = 0xd\n[  933.717543] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  933.719167] sm5713_cal_avg_vbat: batt_avgvoltage = 3720\n[  933.719186] sm5713_fg_get_property: psp = 0xe\n[  933.719201] sm5713_fg_get_property: psp = 0xe\n[  933.719215] sm5713_fg_get_property: psp = 0x13\n[  933.719902] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  933.720256] sm5713_fg_get_property: psp = 0x14\n[  933.720270] sm5713_fg_get_property: psp = 0x8f\n[  933.720284] sm5713_fg_get_property: psp = 0x8f\n[  933.720304] sm5713_fg_get_property: psp = 0x21\n[  933.720319] sec_bat_get_battery_info: Fail to set psy ((null))\n[  933.721381] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(281), Temp-ADC(1861)\n[  933.722045] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(289), Temp-ADC(1847)\n[  933.722099] sm5713_fg_get_property: psp = 0x33\n[  933.722654] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  933.723008] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  933.723908] sm5713_cal_avg_vbat: batt_avgvoltage = 3720\n[  933.724293] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  933.724862] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  933.725773] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 188 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 281\n[  933.726240] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[  933.726253] sm5713_get_soc: \n[  933.726823] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  933.727023] sm5713_get_soc: read = 0x10e5, soc = 168\n[  933.727036] sm5713_get_soc: batt_soc = 168, soc = 168\n[  933.728525] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0408, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  933.730384] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80f4, 0x86=0x0004, 0x87=0x80ee, 0x1F=0x0064, 0x94=0x0030\n[  933.730590] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3720, v_avg=3720, i=-114, i_avg=-114, ocv=3735, fg_t=188, b_t=281, cycle=279, soc=168, state=0x8\n[  933.730606] sm5713_update_all_value : temp = 0xe97, t = 281 \n[  933.730619] sm5713_fg_get_scaled_capacity: scaled capacity (16.8)\n[  933.730638] sec_bat_get_battery_info:Vnow(3720mV),Vavg(3720mV),Inow(-114mA),Iavg(-114mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(281),Tusb(0),Tchg(289),Twpc(0)\n[  933.730680] sm5713_fg_get_property: psp = 0x31\n[  933.730699] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  933.730876] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(281)\n[  933.730891] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  933.730904] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  933.731995] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  933.732027] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  933.732042] sm5713_fg_get_property: psp = 0x96\n[  933.732055] sm5713_fg_periodic_read: skip old(843) current(933)\n[  933.732075] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  933.732113] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  933.732203] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  933.732231] sm5713_fg_get_property: psp = 0x13\n[  933.732673] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  933.732877] sm5713_fg_get_property: psp = 0x14\n[  934.067468] sm5713_fg_get_property: psp = 0x13\n[  934.068293] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  934.895095] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[  934.896389] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x02 5:0x00]\n[  935.071600] sm5713_fg_get_property: psp = 0x13\n[  935.072103] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  935.532745] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 31 30\n[  936.075357] sm5713_fg_get_property: psp = 0x13\n[  936.076174] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  937.079483] sm5713_fg_get_property: psp = 0x13\n[  937.080267] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  937.452650] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  937.452735] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  938.083323] sm5713_fg_get_property: psp = 0x13\n[  938.084104] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  939.087574] sm5713_fg_get_property: psp = 0x13\n[  939.088398] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  940.091762] sm5713_fg_get_property: psp = 0x13\n[  940.092290] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  941.095445] sm5713_fg_get_property: psp = 0x13\n[  941.096273] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  942.099580] sm5713_fg_get_property: psp = 0x13\n[  942.100405] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  943.103327] sm5713_fg_get_property: psp = 0x13\n[  943.104102] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  943.212620] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  944.107404] sm5713_fg_get_property: psp = 0x13\n[  944.108232] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  945.111543] sm5713_fg_get_property: psp = 0x13\n[  945.112047] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  946.115273] sm5713_fg_get_property: psp = 0x13\n[  946.116098] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  947.119406] sm5713_fg_get_property: psp = 0x13\n[  947.120241] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  948.123310] sm5713_fg_get_property: psp = 0x13\n[  948.124098] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  948.332521] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  949.127405] sm5713_fg_get_property: psp = 0x13\n[  949.128229] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  949.612611] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  950.131533] sm5713_fg_get_property: psp = 0x13\n[  950.132042] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  951.135278] sm5713_fg_get_property: psp = 0x13\n[  951.136056] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  952.139343] sm5713_fg_get_property: psp = 0x13\n[  952.140170] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  953.143327] sm5713_fg_get_property: psp = 0x13\n[  953.144150] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  954.147443] sm5713_fg_get_property: psp = 0x13\n[  954.148221] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  955.151704] sm5713_fg_get_property: psp = 0x13\n[  955.152233] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  955.372616] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  956.155533] sm5713_fg_get_property: psp = 0x13\n[  956.156374] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  957.164297]  3419     3.2 C/MHz     77 mW    6.8 J   44.4 I/mJ    87.8 s\n               1118: \n[  959.212784] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  961.132741] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  961.273359] sm5713_fg_get_property: psp = 0x13\n[  961.274184] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  962.277506] sm5713_fg_get_property: psp = 0x13\n[  962.278310] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  963.281619] sm5713_fg_get_property: psp = 0x13\n[  963.282122] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  963.732587] sm5713_fg_get_property: psp = 0xd\n[  963.733353] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  963.735636] sm5713_cal_avg_vbat: batt_avgvoltage = 3720\n[  963.735659] sm5713_fg_get_property: psp = 0xe\n[  963.735673] sm5713_fg_get_property: psp = 0xe\n[  963.735685] sm5713_fg_get_property: psp = 0x13\n[  963.736729] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  963.737237] sm5713_fg_get_property: psp = 0x14\n[  963.737252] sm5713_fg_get_property: psp = 0x8f\n[  963.737266] sm5713_fg_get_property: psp = 0x8f\n[  963.737284] sm5713_fg_get_property: psp = 0x21\n[  963.737299] sec_bat_get_battery_info: Fail to set psy ((null))\n[  963.738869] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(281), Temp-ADC(1862)\n[  963.740143] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(289), Temp-ADC(1850)\n[  963.740166] sm5713_fg_get_property: psp = 0x33\n[  963.740703] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  963.741061] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  963.742000] sm5713_cal_avg_vbat: batt_avgvoltage = 3720\n[  963.742407] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  963.743195] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  963.744286] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 186 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 281\n[  963.744731] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[  963.744744] sm5713_get_soc: \n[  963.745362] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  963.745680] sm5713_get_soc: read = 0x10e5, soc = 168\n[  963.745695] sm5713_get_soc: batt_soc = 168, soc = 168\n[  963.747379] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0400, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  963.749347] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80cf, 0x86=0x8005, 0x87=0x80c9, 0x1F=0x0064, 0x94=0x0030\n[  963.749564] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3722, v_avg=3720, i=-96, i_avg=-105, ocv=3735, fg_t=186, b_t=281, cycle=279, soc=168, state=0x8\n[  963.749578] sm5713_update_all_value : temp = 0xe97, t = 281 \n[  963.749591] sm5713_fg_get_scaled_capacity: scaled capacity (16.8)\n[  963.749609] sec_bat_get_battery_info:Vnow(3722mV),Vavg(3720mV),Inow(-96mA),Iavg(-105mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(281),Tusb(0),Tchg(289),Twpc(0)\n[  963.749653] sm5713_fg_get_property: psp = 0x31\n[  963.749672] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  963.749859] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(281)\n[  963.749873] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  963.749886] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  963.750978] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  963.751007] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  963.751022] sm5713_fg_get_property: psp = 0x96\n[  963.751035] sm5713_fg_periodic_read: skip old(843) current(963)\n[  963.751054] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  963.751172] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  963.751198] sm5713_fg_get_property: psp = 0x13\n[  963.751238] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  963.751606] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  963.751820] sm5713_fg_get_property: psp = 0x14\n[  964.285383] sm5713_fg_get_property: psp = 0x13\n[  964.286186] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  965.612612] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 32 31\n[  966.297911] sm5713_fg_get_property: psp = 0x13\n[  966.298698] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  967.302116] sm5713_fg_get_property: psp = 0x13\n[  967.302976] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  967.532625] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  968.306331] sm5713_fg_get_property: psp = 0x13\n[  968.307137] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  969.310388] sm5713_fg_get_property: psp = 0x13\n[  969.311153] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  970.092643] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  970.314827] sm5713_fg_get_property: psp = 0x13\n[  970.315619] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  971.318876] sm5713_fg_get_property: psp = 0x13\n[  971.319650] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  972.322987] sm5713_fg_get_property: psp = 0x13\n[  972.323785] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  973.292619] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  973.327067] sm5713_fg_get_property: psp = 0x13\n[  973.327875] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  974.331121] sm5713_fg_get_property: psp = 0x13\n[  974.331825] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  975.335204] sm5713_fg_get_property: psp = 0x13\n[  975.336021] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  976.339292] sm5713_fg_get_property: psp = 0x13\n[  976.340110] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  977.343313] sm5713_fg_get_property: psp = 0x13\n[  977.344081] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  978.347333] sm5713_fg_get_property: psp = 0x13\n[  978.348142] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  979.351419] sm5713_fg_get_property: psp = 0x13\n[  979.352007] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  979.692615] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  980.355389] sm5713_fg_get_property: psp = 0x13\n[  980.356198] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  981.359449] sm5713_fg_get_property: psp = 0x13\n[  981.360270] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  981.612631] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  982.363314] sm5713_fg_get_property: psp = 0x13\n[  982.364076] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  983.367314] sm5713_fg_get_property: psp = 0x13\n[  983.368120] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  984.371608] sm5713_fg_get_property: psp = 0x13\n[  984.372060] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  985.375294] sm5713_fg_get_property: psp = 0x13\n[  985.376127] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  985.452646] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  986.379271] sm5713_fg_get_property: psp = 0x13\n[  986.380079] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  987.383328] sm5713_fg_get_property: psp = 0x13\n[  987.384120] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  988.387384] sm5713_fg_get_property: psp = 0x13\n[  988.388193] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  989.391445] sm5713_fg_get_property: psp = 0x13\n[  989.392030] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  990.395240] sm5713_fg_get_property: psp = 0x13\n[  990.396002] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  991.212797] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  991.399252] sm5713_fg_get_property: psp = 0x13\n[  991.400073] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  992.403314] sm5713_fg_get_property: psp = 0x13\n[  992.404077] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  992.492647] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[  993.407334] sm5713_fg_get_property: psp = 0x13\n[  993.408102] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  993.751440] sm5713_fg_get_property: psp = 0xd\n[  993.751934] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  993.752847] sm5713_cal_avg_vbat: batt_avgvoltage = 3720\n[  993.752868] sm5713_fg_get_property: psp = 0xe\n[  993.752882] sm5713_fg_get_property: psp = 0xe\n[  993.752895] sm5713_fg_get_property: psp = 0x13\n[  993.753274] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  993.753473] sm5713_fg_get_property: psp = 0x14\n[  993.753487] sm5713_fg_get_property: psp = 0x8f\n[  993.753500] sm5713_fg_get_property: psp = 0x8f\n[  993.753520] sm5713_fg_get_property: psp = 0x21\n[  993.753534] sec_bat_get_battery_info: Fail to set psy ((null))\n[  993.754228] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(280), Temp-ADC(1863)\n[  993.754881] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(289), Temp-ADC(1848)\n[  993.754900] sm5713_fg_get_property: psp = 0x33\n[  993.755382] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[  993.755729] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[  993.756615] sm5713_cal_avg_vbat: batt_avgvoltage = 3720\n[  993.756997] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  993.757557] sm5713_vbatocv_check: mode change to mix RS auto mode\n[  993.758455] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 188 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 280\n[  993.758914] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[  993.758926] sm5713_get_soc: \n[  993.759485] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[  993.759682] sm5713_get_soc: read = 0x10e5, soc = 168\n[  993.759695] sm5713_get_soc: batt_soc = 168, soc = 168\n[  993.761162] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0404, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[  993.763032] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x8104, 0x86=0x0003, 0x87=0x80f4, 0x1F=0x0064, 0x94=0x0030\n[  993.763235] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3718, v_avg=3720, i=-117, i_avg=-106, ocv=3735, fg_t=188, b_t=280, cycle=279, soc=168, state=0x8\n[  993.763248] sm5713_update_all_value : temp = 0xe97, t = 280 \n[  993.763261] sm5713_fg_get_scaled_capacity: scaled capacity (16.8)\n[  993.763279] sec_bat_get_battery_info:Vnow(3718mV),Vavg(3720mV),Inow(-117mA),Iavg(-106mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(280),Tusb(0),Tchg(289),Twpc(0)\n[  993.763318] sm5713_fg_get_property: psp = 0x31\n[  993.763335] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[  993.763510] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(280)\n[  993.763524] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  993.763538] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[  993.764619] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[  993.764648] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[  993.764662] sm5713_fg_get_property: psp = 0x96\n[  993.764674] sm5713_fg_periodic_read: skip old(843) current(993)\n[  993.764694] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[  993.764731] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[  993.764816] sec_bat_get_property cable type = 1 sleep_mode = 0\n[  993.764843] sm5713_fg_get_property: psp = 0x13\n[  993.765221] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  993.765422] sm5713_fg_get_property: psp = 0x14\n[  994.411363] sm5713_fg_get_property: psp = 0x13\n[  994.411866] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  995.415162] sm5713_fg_get_property: psp = 0x13\n[  995.415927] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  995.692611] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 33 32\n[  996.336324] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[  996.338789] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[  996.419220] sm5713_fg_get_property: psp = 0x13\n[  996.420034] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  997.423301] sm5713_fg_get_property: psp = 0x13\n[  997.424071] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  997.612624] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[  998.427335] sm5713_fg_get_property: psp = 0x13\n[  998.428152] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[  999.431584] sm5713_fg_get_property: psp = 0x13\n[  999.432068] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1000.435354] sm5713_fg_get_property: psp = 0x13\n[ 1000.436122] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1001.439368] sm5713_fg_get_property: psp = 0x13\n[ 1001.440205] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1002.443199] sm5713_fg_get_property: psp = 0x13\n[ 1002.443966] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1003.372625] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1003.372707] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1003.447220] sm5713_fg_get_property: psp = 0x13\n[ 1003.448032] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1004.451294] sm5713_fg_get_property: psp = 0x13\n[ 1004.451930] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1005.455259] sm5713_fg_get_property: psp = 0x13\n[ 1005.456076] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1006.459323] sm5713_fg_get_property: psp = 0x13\n[ 1006.460135] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1007.463300] sm5713_fg_get_property: psp = 0x13\n[ 1007.464109] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1008.467365] sm5713_fg_get_property: psp = 0x13\n[ 1008.468128] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1009.132615] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1009.471383] sm5713_fg_get_property: psp = 0x13\n[ 1009.471997] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1010.475304] sm5713_fg_get_property: psp = 0x13\n[ 1010.476116] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1011.479363] sm5713_fg_get_property: psp = 0x13\n[ 1011.480169] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1012.483301] sm5713_fg_get_property: psp = 0x13\n[ 1012.484115] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1013.487361] sm5713_fg_get_property: psp = 0x13\n[ 1013.488187] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1014.252640] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1014.491442] sm5713_fg_get_property: psp = 0x13\n[ 1014.492020] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1015.495353] sm5713_fg_get_property: psp = 0x13\n[ 1015.496169] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1015.532533] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1016.499408] sm5713_fg_get_property: psp = 0x13\n[ 1016.500218] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1017.503312] sm5713_fg_get_property: psp = 0x13\n[ 1017.504121] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1018.507601] sm5713_fg_get_property: psp = 0x13\n[ 1018.508381] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1019.511534] sm5713_fg_get_property: psp = 0x13\n[ 1019.512034] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1020.515221] sm5713_fg_get_property: psp = 0x13\n[ 1020.516034] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1021.292609] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1021.519308] sm5713_fg_get_property: psp = 0x13\n[ 1021.520118] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1022.523307] sm5713_fg_get_property: psp = 0x13\n[ 1022.524072] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1023.527326] sm5713_fg_get_property: psp = 0x13\n[ 1023.528094] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1023.765059] sm5713_fg_get_property: psp = 0xd\n[ 1023.765742] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1023.767332] sm5713_cal_avg_vbat: batt_avgvoltage = 3719\n[ 1023.767352] sm5713_fg_get_property: psp = 0xe\n[ 1023.767366] sm5713_fg_get_property: psp = 0xe\n[ 1023.767379] sm5713_fg_get_property: psp = 0x13\n[ 1023.768042] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1023.768385] sm5713_fg_get_property: psp = 0x14\n[ 1023.768399] sm5713_fg_get_property: psp = 0x8f\n[ 1023.768412] sm5713_fg_get_property: psp = 0x8f\n[ 1023.768431] sm5713_fg_get_property: psp = 0x21\n[ 1023.768445] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1023.769715] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(280), Temp-ADC(1865)\n[ 1023.770486] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(289), Temp-ADC(1849)\n[ 1023.770508] sm5713_fg_get_property: psp = 0x33\n[ 1023.770994] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1023.771342] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1023.772233] sm5713_cal_avg_vbat: batt_avgvoltage = 3718\n[ 1023.772663] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1023.773225] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1023.774128] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 187 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 280\n[ 1023.774585] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1023.774597] sm5713_get_soc: \n[ 1023.775158] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1023.775354] sm5713_get_soc: read = 0x10d9, soc = 168\n[ 1023.775367] sm5713_get_soc: batt_soc = 168, soc = 168\n[ 1023.776834] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0400, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1023.778661] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80f6, 0x86=0x0005, 0x87=0x80f2, 0x1F=0x0064, 0x94=0x0030\n[ 1023.778864] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3719, v_avg=3718, i=-116, i_avg=-116, ocv=3735, fg_t=187, b_t=280, cycle=279, soc=168, state=0x8\n[ 1023.778877] sm5713_update_all_value : temp = 0xe97, t = 280 \n[ 1023.778890] sm5713_fg_get_scaled_capacity: scaled capacity (16.8)\n[ 1023.778909] sec_bat_get_battery_info:Vnow(3719mV),Vavg(3719mV),Inow(-116mA),Iavg(-116mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(280),Tusb(0),Tchg(289),Twpc(0)\n[ 1023.778949] sm5713_fg_get_property: psp = 0x31\n[ 1023.778967] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1023.779141] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(280)\n[ 1023.779155] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1023.779167] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1023.780247] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1023.780275] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1023.780290] sm5713_fg_get_property: psp = 0x96\n[ 1023.780303] sm5713_fg_periodic_read: skip old(843) current(1023)\n[ 1023.780322] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1023.780357] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1023.780445] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1023.780471] sm5713_fg_get_property: psp = 0x13\n[ 1023.780850] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1023.781049] sm5713_fg_get_property: psp = 0x14\n[ 1024.531373] sm5713_fg_get_property: psp = 0x13\n[ 1024.531873] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1025.132639] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1025.535138] sm5713_fg_get_property: psp = 0x13\n[ 1025.535957] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1025.772605] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 34 33\n[ 1026.539204] sm5713_fg_get_property: psp = 0x13\n[ 1026.539974] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1027.543254] sm5713_fg_get_property: psp = 0x13\n[ 1027.544060] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1027.692629] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1028.547333] sm5713_fg_get_property: psp = 0x13\n[ 1028.548136] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1029.551391] sm5713_fg_get_property: psp = 0x13\n[ 1029.552006] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1030.555312] sm5713_fg_get_property: psp = 0x13\n[ 1030.556089] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1031.559511] sm5713_fg_get_property: psp = 0x13\n[ 1031.560334] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1032.563451] sm5713_fg_get_property: psp = 0x13\n[ 1032.564239] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1033.452607] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1033.567398] sm5713_fg_get_property: psp = 0x13\n[ 1033.568209] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1034.571458] sm5713_fg_get_property: psp = 0x13\n[ 1034.572042] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1035.575275] sm5713_fg_get_property: psp = 0x13\n[ 1035.576090] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1036.579338] sm5713_fg_get_property: psp = 0x13\n[ 1036.580154] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1036.652634] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1037.583302] sm5713_fg_get_property: psp = 0x13\n[ 1037.584115] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1038.587379] sm5713_fg_get_property: psp = 0x13\n[ 1038.588188] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1039.212627] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1039.591438] sm5713_fg_get_property: psp = 0x13\n[ 1039.592024] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1040.595264] sm5713_fg_get_property: psp = 0x13\n[ 1040.596081] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1041.599326] sm5713_fg_get_property: psp = 0x13\n[ 1041.600148] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1042.603306] sm5713_fg_get_property: psp = 0x13\n[ 1042.604113] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1043.607348] sm5713_fg_get_property: psp = 0x13\n[ 1043.608166] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1044.611402] sm5713_fg_get_property: psp = 0x13\n[ 1044.611983] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1045.612619] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1045.615395] sm5713_fg_get_property: psp = 0x13\n[ 1045.616165] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1046.619461] sm5713_fg_get_property: psp = 0x13\n[ 1046.620252] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1047.532630] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1047.623308] sm5713_fg_get_property: psp = 0x13\n[ 1047.624115] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1048.631522]  3630     3.2 C/MHz     84 mW    6.9 J   43.3 I/mJ    82.7 s\n               1222: \n[ 1051.372653] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1052.740448] sm5713_fg_get_property: psp = 0x13\n[ 1052.741199] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1053.744656] sm5713_fg_get_property: psp = 0x13\n[ 1053.745427] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1053.780810] sm5713_fg_get_property: psp = 0xd\n[ 1053.781788] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1053.783156] sm5713_cal_avg_vbat: batt_avgvoltage = 3719\n[ 1053.783180] sm5713_fg_get_property: psp = 0xe\n[ 1053.783193] sm5713_fg_get_property: psp = 0xe\n[ 1053.783204] sm5713_fg_get_property: psp = 0x13\n[ 1053.783811] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1053.784125] sm5713_fg_get_property: psp = 0x14\n[ 1053.784138] sm5713_fg_get_property: psp = 0x8f\n[ 1053.784150] sm5713_fg_get_property: psp = 0x8f\n[ 1053.784169] sm5713_fg_get_property: psp = 0x21\n[ 1053.784182] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1053.784942] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(280), Temp-ADC(1866)\n[ 1053.785662] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(289), Temp-ADC(1851)\n[ 1053.785680] sm5713_fg_get_property: psp = 0x33\n[ 1053.786195] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1053.786544] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1053.787468] sm5713_cal_avg_vbat: batt_avgvoltage = 3719\n[ 1053.787868] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1053.788459] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1053.789630] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 186 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 280\n[ 1053.790071] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1053.790083] sm5713_get_soc: \n[ 1053.790676] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1053.790882] sm5713_get_soc: read = 0x10d9, soc = 168\n[ 1053.790894] sm5713_get_soc: batt_soc = 168, soc = 168\n[ 1053.792722] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0410, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1053.794663] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80cb, 0x86=0x8009, 0x87=0x80ca, 0x1F=0x0064, 0x94=0x0030\n[ 1053.794877] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3722, v_avg=3719, i=-97, i_avg=-106, ocv=3735, fg_t=186, b_t=280, cycle=279, soc=168, state=0x8\n[ 1053.794890] sm5713_update_all_value : temp = 0xe97, t = 280 \n[ 1053.794902] sm5713_fg_get_scaled_capacity: scaled capacity (16.8)\n[ 1053.794920] sec_bat_get_battery_info:Vnow(3722mV),Vavg(3719mV),Inow(-97mA),Iavg(-107mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(280),Tusb(0),Tchg(289),Twpc(0)\n[ 1053.794959] sm5713_fg_get_property: psp = 0x31\n[ 1053.794977] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1053.795161] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(280)\n[ 1053.795174] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1053.795186] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1053.796262] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1053.796288] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1053.796301] sm5713_fg_get_property: psp = 0x96\n[ 1053.852482] [FG_ALL] 00:0000,c601,0000,000e,0000,10d9,1de3,1dc8,80c7,12b0,0117,1dbb,0319,0480,3c8a,0100,01:0010,ffff,0003,0017,0000,7003,ffff,ffff,ffff,1dbe,0a0a,0103,0004,ffff,0040,0064,02:04e1,03e6,ffff,0001,00a4,0146,3800,0078,0410,00a4,070a,0048,ffff,000e,1f6b,0318,03:1f78,1f78,1f79,1f79,1f79,1f7a,1f7a,1f79,1f59,1f58,1f58,1f59,1f58,1f59,1f58,1f58,04:1f78,1f79,1f7a,1f7a,1f7a,1f79,1f79,1f7a,1f5a,1f59,1f59,1f5a,1f59,1f58,1f59,1f59,05:400f,400e,400e,400e,400e,400f,400f,400e,4014,400e,4012,400f,4012,4011,4013,4010,06:859a,90b2,29e2,0000,0000,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,8012,08:0008,8004,0000,ffff,801b,80cb,8009,80ca,0710,58d8,0000,0000,0000,ffff,ffff,ffff,09:0040,a000,0000,0000,0030,0201,0100,0153,0000,0000,0000,0000,0325,0000,0000,ffff,0a:1400,1b33,1c2a,1d6c,1d86,1da2,1dbb,1ddb,1df0,1e30,1e4f,1e5d,1e7e,1ea7,1edc,1f3d,0b:1f6f,1fa0,1ff1,2050,2082,20ee,2239,2400,0000,004c,0166,044c,0733,0a00,0ce6,0fcc,\n\n[ 1053.852528] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1053.852642] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1053.852669] sm5713_fg_get_property: psp = 0x13\n[ 1053.852709] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1053.853072] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1053.853285] sm5713_fg_get_property: psp = 0x14\n[ 1054.748666] sm5713_fg_get_property: psp = 0x13\n[ 1054.749452] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1055.752783] sm5713_fg_get_property: psp = 0x13\n[ 1055.753562] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1055.852654] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 35 34\n[ 1057.132614] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1057.764857] sm5713_fg_get_property: psp = 0x13\n[ 1057.765606] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1057.775142] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[ 1057.776361] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[ 1058.412621] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1058.768955] sm5713_fg_get_property: psp = 0x13\n[ 1058.769753] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1059.773028] sm5713_fg_get_property: psp = 0x13\n[ 1059.773799] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1060.777096] sm5713_fg_get_property: psp = 0x13\n[ 1060.777920] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1061.781155] sm5713_fg_get_property: psp = 0x13\n[ 1061.781838] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1062.785057] sm5713_fg_get_property: psp = 0x13\n[ 1062.785847] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1063.532611] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1063.789036] sm5713_fg_get_property: psp = 0x13\n[ 1063.789822] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1064.793069] sm5713_fg_get_property: psp = 0x13\n[ 1064.793854] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1065.797034] sm5713_fg_get_property: psp = 0x13\n[ 1065.797815] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1066.801014] sm5713_fg_get_property: psp = 0x13\n[ 1066.801750] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1067.805092] sm5713_fg_get_property: psp = 0x13\n[ 1067.805874] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1068.809049] sm5713_fg_get_property: psp = 0x13\n[ 1068.809844] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1069.292623] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1069.292707] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1069.813082] sm5713_fg_get_property: psp = 0x13\n[ 1069.813865] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1070.817067] sm5713_fg_get_property: psp = 0x13\n[ 1070.817859] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1071.821031] sm5713_fg_get_property: psp = 0x13\n[ 1071.821776] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1072.825159] sm5713_fg_get_property: psp = 0x13\n[ 1072.825939] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1073.829128] sm5713_fg_get_property: psp = 0x13\n[ 1073.829913] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1074.833127] sm5713_fg_get_property: psp = 0x13\n[ 1074.833919] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1075.692611] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1075.837119] sm5713_fg_get_property: psp = 0x13\n[ 1075.837906] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1076.841255] sm5713_fg_get_property: psp = 0x13\n[ 1076.841900] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1077.845365] sm5713_fg_get_property: psp = 0x13\n[ 1077.846123] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1078.849206] sm5713_fg_get_property: psp = 0x13\n[ 1078.849993] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1079.853200] sm5713_fg_get_property: psp = 0x13\n[ 1079.853990] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1080.172621] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1080.857189] sm5713_fg_get_property: psp = 0x13\n[ 1080.857973] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1081.452610] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1081.861169] sm5713_fg_get_property: psp = 0x13\n[ 1081.861823] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1082.865212] sm5713_fg_get_property: psp = 0x13\n[ 1082.865950] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1083.852797] sm5713_fg_get_property: psp = 0xd\n[ 1083.853441] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1083.854959] sm5713_cal_avg_vbat: batt_avgvoltage = 3719\n[ 1083.854977] sm5713_fg_get_property: psp = 0xe\n[ 1083.854989] sm5713_fg_get_property: psp = 0xe\n[ 1083.855000] sm5713_fg_get_property: psp = 0x13\n[ 1083.855640] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1083.855975] sm5713_fg_get_property: psp = 0x14\n[ 1083.855988] sm5713_fg_get_property: psp = 0x8f\n[ 1083.856000] sm5713_fg_get_property: psp = 0x8f\n[ 1083.856018] sm5713_fg_get_property: psp = 0x21\n[ 1083.856031] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1083.857271] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(279), Temp-ADC(1869)\n[ 1083.858024] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(289), Temp-ADC(1850)\n[ 1083.858045] sm5713_fg_get_property: psp = 0x33\n[ 1083.858722] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1083.859063] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1083.859933] sm5713_cal_avg_vbat: batt_avgvoltage = 3719\n[ 1083.860306] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1083.860857] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1083.861736] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 188 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 279\n[ 1083.862181] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1083.862192] sm5713_get_soc: \n[ 1083.862761] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1083.862953] sm5713_get_soc: read = 0x10cc, soc = 167\n[ 1083.862965] sm5713_get_soc: batt_soc = 167, soc = 167\n[ 1083.864430] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03f0, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1083.866223] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80f1, 0x86=0x8002, 0x87=0x80f5, 0x1F=0x0064, 0x94=0x0030\n[ 1083.866422] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3718, v_avg=3719, i=-118, i_avg=-107, ocv=3735, fg_t=188, b_t=279, cycle=279, soc=167, state=0x8\n[ 1083.866434] sm5713_update_all_value : temp = 0xe97, t = 279 \n[ 1083.866445] sm5713_fg_get_scaled_capacity: scaled capacity (16.7)\n[ 1083.866462] sec_bat_get_battery_info:Vnow(3718mV),Vavg(3719mV),Inow(-118mA),Iavg(-107mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(279),Tusb(0),Tchg(289),Twpc(0)\n[ 1083.866499] sm5713_fg_get_property: psp = 0x31\n[ 1083.866516] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1083.866687] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(279)\n[ 1083.866700] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1083.866712] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1083.867778] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1083.867803] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1083.867817] sm5713_fg_get_property: psp = 0x96\n[ 1083.867829] sm5713_fg_periodic_read: skip old(1053) current(1083)\n[ 1083.867846] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1083.867879] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1083.867964] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1083.867988] sm5713_fg_get_property: psp = 0x13\n[ 1083.868369] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1083.868576] sm5713_fg_get_property: psp = 0x14\n[ 1083.869400] sm5713_fg_get_property: psp = 0x13\n[ 1083.869872] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1084.873016] sm5713_fg_get_property: psp = 0x13\n[ 1084.873800] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1085.876991] sm5713_fg_get_property: psp = 0x13\n[ 1085.877778] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1085.932613] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 36 35\n[ 1086.880967] sm5713_fg_get_property: psp = 0x13\n[ 1086.881705] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1087.212619] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1087.885046] sm5713_fg_get_property: psp = 0x13\n[ 1087.885788] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1088.888973] sm5713_fg_get_property: psp = 0x13\n[ 1088.889767] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1089.893055] sm5713_fg_get_property: psp = 0x13\n[ 1089.893846] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1090.897052] sm5713_fg_get_property: psp = 0x13\n[ 1090.897845] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1091.692621] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1091.901035] sm5713_fg_get_property: psp = 0x13\n[ 1091.901766] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1092.905085] sm5713_fg_get_property: psp = 0x13\n[ 1092.905872] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1093.612711] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1093.909070] sm5713_fg_get_property: psp = 0x13\n[ 1093.909855] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1094.913198] sm5713_fg_get_property: psp = 0x13\n[ 1094.913983] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1095.917280] sm5713_fg_get_property: psp = 0x13\n[ 1095.918046] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1096.921141] sm5713_fg_get_property: psp = 0x13\n[ 1096.921827] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1097.925037] sm5713_fg_get_property: psp = 0x13\n[ 1097.925826] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1098.929007] sm5713_fg_get_property: psp = 0x13\n[ 1098.929750] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1099.372601] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1099.932995] sm5713_fg_get_property: psp = 0x13\n[ 1099.933770] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1100.936948] sm5713_fg_get_property: psp = 0x13\n[ 1100.937731] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1101.940919] sm5713_fg_get_property: psp = 0x13\n[ 1101.941699] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1102.572522] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1102.945044] sm5713_fg_get_property: psp = 0x13\n[ 1102.945829] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1103.949014] sm5713_fg_get_property: psp = 0x13\n[ 1103.949800] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1104.953020] sm5713_fg_get_property: psp = 0x13\n[ 1104.953798] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1105.132623] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1105.956967] sm5713_fg_get_property: psp = 0x13\n[ 1105.957759] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1106.960947] sm5713_fg_get_property: psp = 0x13\n[ 1106.961710] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1107.965009] sm5713_fg_get_property: psp = 0x13\n[ 1107.965798] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1108.968989] sm5713_fg_get_property: psp = 0x13\n[ 1108.969736] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1109.972972] sm5713_fg_get_property: psp = 0x13\n[ 1109.973742] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1110.976935] sm5713_fg_get_property: psp = 0x13\n[ 1110.977721] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1111.532601] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1111.980916] sm5713_fg_get_property: psp = 0x13\n[ 1111.981704] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1112.985031] sm5713_fg_get_property: psp = 0x13\n[ 1112.985818] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1113.452621] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1113.868190] sm5713_fg_get_property: psp = 0xd\n[ 1113.868828] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1113.870355] sm5713_cal_avg_vbat: batt_avgvoltage = 3718\n[ 1113.870374] sm5713_fg_get_property: psp = 0xe\n[ 1113.870387] sm5713_fg_get_property: psp = 0xe\n[ 1113.870399] sm5713_fg_get_property: psp = 0x13\n[ 1113.871044] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1113.871374] sm5713_fg_get_property: psp = 0x14\n[ 1113.871387] sm5713_fg_get_property: psp = 0x8f\n[ 1113.871399] sm5713_fg_get_property: psp = 0x8f\n[ 1113.871416] sm5713_fg_get_property: psp = 0x21\n[ 1113.871430] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1113.872230] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(279), Temp-ADC(1869)\n[ 1113.873209] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(289), Temp-ADC(1851)\n[ 1113.873232] sm5713_fg_get_property: psp = 0x33\n[ 1113.874054] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1113.874646] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1113.876164] sm5713_cal_avg_vbat: batt_avgvoltage = 3717\n[ 1113.876804] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1113.877762] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1113.879326] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 186 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 279\n[ 1113.880113] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1113.880125] sm5713_get_soc: \n[ 1113.881006] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1113.881199] sm5713_get_soc: read = 0x10cc, soc = 167\n[ 1113.881212] sm5713_get_soc: batt_soc = 167, soc = 167\n[ 1113.882686] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03ec, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1113.884480] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x811b, 0x86=0x8000, 0x87=0x80f8, 0x1F=0x0064, 0x94=0x0030\n[ 1113.884678] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3717, v_avg=3717, i=-119, i_avg=-118, ocv=3735, fg_t=186, b_t=279, cycle=279, soc=167, state=0x8\n[ 1113.884690] sm5713_update_all_value : temp = 0xe97, t = 279 \n[ 1113.884702] sm5713_fg_get_scaled_capacity: scaled capacity (16.7)\n[ 1113.884719] sec_bat_get_battery_info:Vnow(3717mV),Vavg(3718mV),Inow(-119mA),Iavg(-118mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(279),Tusb(0),Tchg(289),Twpc(0)\n[ 1113.884756] sm5713_fg_get_property: psp = 0x31\n[ 1113.884773] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1113.884945] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(279)\n[ 1113.884958] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1113.884970] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1113.886033] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1113.886059] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1113.886072] sm5713_fg_get_property: psp = 0x96\n[ 1113.886084] sm5713_fg_periodic_read: skip old(1053) current(1113)\n[ 1113.886102] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1113.886136] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1113.886219] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1113.886243] sm5713_fg_get_property: psp = 0x13\n[ 1113.886616] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1113.886812] sm5713_fg_get_property: psp = 0x14\n[ 1113.989002] sm5713_fg_get_property: psp = 0x13\n[ 1113.989794] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1114.993108] sm5713_fg_get_property: psp = 0x13\n[ 1114.993888] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1115.997126] sm5713_fg_get_property: psp = 0x13\n[ 1115.997894] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1116.012624] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 37 36\n[ 1117.000982] sm5713_fg_get_property: psp = 0x13\n[ 1117.001726] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1117.292613] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1118.005058] sm5713_fg_get_property: psp = 0x13\n[ 1118.005843] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1119.009028] sm5713_fg_get_property: psp = 0x13\n[ 1119.009774] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1119.215037] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[ 1119.216250] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[ 1120.013017] sm5713_fg_get_property: psp = 0x13\n[ 1120.013797] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1121.016978] sm5713_fg_get_property: psp = 0x13\n[ 1121.017768] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1122.020952] sm5713_fg_get_property: psp = 0x13\n[ 1122.021719] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1123.025027] sm5713_fg_get_property: psp = 0x13\n[ 1123.025810] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1123.692619] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1124.029000] sm5713_fg_get_property: psp = 0x13\n[ 1124.029794] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1124.332621] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1125.033022] sm5713_fg_get_property: psp = 0x13\n[ 1125.033800] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1126.037012] sm5713_fg_get_property: psp = 0x13\n[ 1126.037799] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1127.040997] sm5713_fg_get_property: psp = 0x13\n[ 1127.041757] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1128.045071] sm5713_fg_get_property: psp = 0x13\n[ 1128.045866] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1129.049034] sm5713_fg_get_property: psp = 0x13\n[ 1129.049823] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1129.452602] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1130.053052] sm5713_fg_get_property: psp = 0x13\n[ 1130.053834] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1131.056999] sm5713_fg_get_property: psp = 0x13\n[ 1131.057782] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1132.061058] sm5713_fg_get_property: psp = 0x13\n[ 1132.061762] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1133.068604]  3968     3.2 C/MHz     96 mW    7.3 J   41.2 I/mJ    75.6 s\n               1326: \n[ 1135.212693] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1135.212765] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1137.176122] sm5713_fg_get_property: psp = 0x13\n[ 1137.176895] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1138.180112] sm5713_fg_get_property: psp = 0x13\n[ 1138.180831] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1139.183160] sm5713_fg_get_property: psp = 0x13\n[ 1139.183977] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1140.187161] sm5713_fg_get_property: psp = 0x13\n[ 1140.187965] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1141.612606] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1142.199037] sm5713_fg_get_property: psp = 0x13\n[ 1142.199769] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1143.203099] sm5713_fg_get_property: psp = 0x13\n[ 1143.203870] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1143.886450] sm5713_fg_get_property: psp = 0xd\n[ 1143.887076] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1143.888552] sm5713_cal_avg_vbat: batt_avgvoltage = 3717\n[ 1143.888568] sm5713_fg_get_property: psp = 0xe\n[ 1143.888581] sm5713_fg_get_property: psp = 0xe\n[ 1143.888592] sm5713_fg_get_property: psp = 0x13\n[ 1143.889212] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1143.889531] sm5713_fg_get_property: psp = 0x14\n[ 1143.889544] sm5713_fg_get_property: psp = 0x8f\n[ 1143.889555] sm5713_fg_get_property: psp = 0x8f\n[ 1143.889572] sm5713_fg_get_property: psp = 0x21\n[ 1143.889585] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1143.890808] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(278), Temp-ADC(1873)\n[ 1143.891449] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(287), Temp-ADC(1856)\n[ 1143.891469] sm5713_fg_get_property: psp = 0x33\n[ 1143.891973] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1143.892306] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1143.893182] sm5713_cal_avg_vbat: batt_avgvoltage = 3717\n[ 1143.893547] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1143.894089] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1143.894957] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 185 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 278\n[ 1143.895395] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1143.895407] sm5713_get_soc: \n[ 1143.895947] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1143.896135] sm5713_get_soc: read = 0x10cc, soc = 167\n[ 1143.896147] sm5713_get_soc: batt_soc = 167, soc = 167\n[ 1143.897585] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0414, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1143.899353] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x8108, 0x86=0x0011, 0x87=0x8102, 0x1F=0x0064, 0x94=0x0030\n[ 1143.899548] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3718, v_avg=3717, i=-124, i_avg=-120, ocv=3735, fg_t=185, b_t=278, cycle=279, soc=167, state=0x8\n[ 1143.899560] sm5713_update_all_value : temp = 0xe97, t = 278 \n[ 1143.899570] sm5713_fg_get_scaled_capacity: scaled capacity (16.7)\n[ 1143.899586] sec_bat_get_battery_info:Vnow(3718mV),Vavg(3717mV),Inow(-124mA),Iavg(-119mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(278),Tusb(0),Tchg(287),Twpc(0)\n[ 1143.899621] sm5713_fg_get_property: psp = 0x31\n[ 1143.899637] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1143.899804] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(278)\n[ 1143.899816] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1143.899827] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1143.900878] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1143.900903] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1143.900915] sm5713_fg_get_property: psp = 0x96\n[ 1143.900927] sm5713_fg_periodic_read: skip old(1053) current(1143)\n[ 1143.900943] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1143.900974] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1143.901069] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1143.901092] sm5713_fg_get_property: psp = 0x13\n[ 1143.901454] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1143.901645] sm5713_fg_get_property: psp = 0x14\n[ 1144.207029] sm5713_fg_get_property: psp = 0x13\n[ 1144.207787] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1145.210911] sm5713_fg_get_property: psp = 0x13\n[ 1145.211587] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1146.092627] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1146.092677] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 38 37\n[ 1146.214831] sm5713_fg_get_property: psp = 0x13\n[ 1146.215596] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1147.218720] sm5713_fg_get_property: psp = 0x13\n[ 1147.219489] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1147.372604] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1148.222712] sm5713_fg_get_property: psp = 0x13\n[ 1148.223454] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1149.226578] sm5713_fg_get_property: psp = 0x13\n[ 1149.227351] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1150.230487] sm5713_fg_get_property: psp = 0x13\n[ 1150.231258] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1151.234619] sm5713_fg_get_property: psp = 0x13\n[ 1151.235389] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1152.238697] sm5713_fg_get_property: psp = 0x13\n[ 1152.239516] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1153.132608] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1153.242853] sm5713_fg_get_property: psp = 0x13\n[ 1153.243566] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1154.246640] sm5713_fg_get_property: psp = 0x13\n[ 1154.247405] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1155.250545] sm5713_fg_get_property: psp = 0x13\n[ 1155.251313] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1156.254692] sm5713_fg_get_property: psp = 0x13\n[ 1156.255457] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1157.258577] sm5713_fg_get_property: psp = 0x13\n[ 1157.259346] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1157.612620] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1158.262619] sm5713_fg_get_property: psp = 0x13\n[ 1158.263358] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1159.266488] sm5713_fg_get_property: psp = 0x13\n[ 1159.267267] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1159.532609] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1160.270394] sm5713_fg_get_property: psp = 0x13\n[ 1160.271168] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1161.274525] sm5713_fg_get_property: psp = 0x13\n[ 1161.275283] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1162.278405] sm5713_fg_get_property: psp = 0x13\n[ 1162.279167] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1163.282274] sm5713_fg_get_property: psp = 0x13\n[ 1163.283057] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1164.286220] sm5713_fg_get_property: psp = 0x13\n[ 1164.286989] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1165.290100] sm5713_fg_get_property: psp = 0x13\n[ 1165.290863] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1165.292663] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1166.293258] sm5713_fg_get_property: psp = 0x13\n[ 1166.294020] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1167.297150] sm5713_fg_get_property: psp = 0x13\n[ 1167.297916] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1168.301169] sm5713_fg_get_property: psp = 0x13\n[ 1168.301815] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1168.492650] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1169.304995] sm5713_fg_get_property: psp = 0x13\n[ 1169.305769] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1170.308896] sm5713_fg_get_property: psp = 0x13\n[ 1170.309664] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1171.312867] sm5713_fg_get_property: psp = 0x13\n[ 1171.313617] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1171.692597] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1172.316747] sm5713_fg_get_property: psp = 0x13\n[ 1172.317518] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1173.320628] sm5713_fg_get_property: psp = 0x13\n[ 1173.321390] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1173.901164] sm5713_fg_get_property: psp = 0xd\n[ 1173.901750] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1173.902643] sm5713_cal_avg_vbat: batt_avgvoltage = 3717\n[ 1173.902661] sm5713_fg_get_property: psp = 0xe\n[ 1173.902672] sm5713_fg_get_property: psp = 0xe\n[ 1173.902684] sm5713_fg_get_property: psp = 0x13\n[ 1173.903049] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1173.903241] sm5713_fg_get_property: psp = 0x14\n[ 1173.903252] sm5713_fg_get_property: psp = 0x8f\n[ 1173.903264] sm5713_fg_get_property: psp = 0x8f\n[ 1173.903280] sm5713_fg_get_property: psp = 0x21\n[ 1173.903293] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1173.903964] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(278), Temp-ADC(1875)\n[ 1173.904593] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(288), Temp-ADC(1855)\n[ 1173.904611] sm5713_fg_get_property: psp = 0x33\n[ 1173.905076] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1173.905410] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1173.906265] sm5713_cal_avg_vbat: batt_avgvoltage = 3717\n[ 1173.906632] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1173.907174] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1173.908040] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 186 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 278\n[ 1173.908478] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1173.908489] sm5713_get_soc: \n[ 1173.909029] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1173.909218] sm5713_get_soc: read = 0x10c0, soc = 167\n[ 1173.909230] sm5713_get_soc: batt_soc = 167, soc = 167\n[ 1173.910645] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0400, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1173.912411] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80fe, 0x86=0x8002, 0x87=0x8100, 0x1F=0x0064, 0x94=0x0030\n[ 1173.912646] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3718, v_avg=3717, i=-123, i_avg=-123, ocv=3735, fg_t=186, b_t=278, cycle=279, soc=167, state=0x8\n[ 1173.912657] sm5713_update_all_value : temp = 0xe97, t = 278 \n[ 1173.912668] sm5713_fg_get_scaled_capacity: scaled capacity (16.7)\n[ 1173.912683] sec_bat_get_battery_info:Vnow(3718mV),Vavg(3717mV),Inow(-123mA),Iavg(-123mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(278),Tusb(0),Tchg(288),Twpc(0)\n[ 1173.912718] sm5713_fg_get_property: psp = 0x31\n[ 1173.912734] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1173.912901] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(278)\n[ 1173.912913] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1173.912924] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1173.913973] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1173.913997] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1173.914009] sm5713_fg_get_property: psp = 0x96\n[ 1173.914020] sm5713_fg_periodic_read: skip old(1053) current(1173)\n[ 1173.914037] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1173.914070] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1173.914152] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1173.914174] sm5713_fg_get_property: psp = 0x13\n[ 1173.914537] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1173.914729] sm5713_fg_get_property: psp = 0x14\n[ 1174.324812] sm5713_fg_get_property: psp = 0x13\n[ 1174.325575] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1175.328692] sm5713_fg_get_property: psp = 0x13\n[ 1175.329456] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1176.172494] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 39 38\n[ 1176.332671] sm5713_fg_get_property: psp = 0x13\n[ 1176.333414] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1177.336529] sm5713_fg_get_property: psp = 0x13\n[ 1177.337292] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1177.452602] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1178.340433] sm5713_fg_get_property: psp = 0x13\n[ 1178.341198] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1179.344570] sm5713_fg_get_property: psp = 0x13\n[ 1179.345330] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1179.372647] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1180.348457] sm5713_fg_get_property: psp = 0x13\n[ 1180.349215] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1180.655268] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[ 1180.656309] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[ 1181.352703] sm5713_fg_get_property: psp = 0x13\n[ 1181.353421] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1182.356475] sm5713_fg_get_property: psp = 0x13\n[ 1182.357240] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1183.212614] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1183.360372] sm5713_fg_get_property: psp = 0x13\n[ 1183.361134] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1184.364519] sm5713_fg_get_property: psp = 0x13\n[ 1184.365286] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1185.368417] sm5713_fg_get_property: psp = 0x13\n[ 1185.369191] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1186.372323] sm5713_fg_get_property: psp = 0x13\n[ 1186.373112] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1187.376259] sm5713_fg_get_property: psp = 0x13\n[ 1187.377019] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1188.380138] sm5713_fg_get_property: psp = 0x13\n[ 1188.380917] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1189.383259] sm5713_fg_get_property: psp = 0x13\n[ 1189.384029] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1189.612603] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1190.252617] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1190.387151] sm5713_fg_get_property: psp = 0x13\n[ 1190.387912] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1191.391029] sm5713_fg_get_property: psp = 0x13\n[ 1191.391756] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1192.394996] sm5713_fg_get_property: psp = 0x13\n[ 1192.395761] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1193.398871] sm5713_fg_get_property: psp = 0x13\n[ 1193.399640] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1194.402843] sm5713_fg_get_property: psp = 0x13\n[ 1194.403589] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1195.372611] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1195.406701] sm5713_fg_get_property: psp = 0x13\n[ 1195.407463] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1196.410725] sm5713_fg_get_property: psp = 0x13\n[ 1196.411472] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1197.414731] sm5713_fg_get_property: psp = 0x13\n[ 1197.415522] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1198.418652] sm5713_fg_get_property: psp = 0x13\n[ 1198.419424] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1199.422662] sm5713_fg_get_property: psp = 0x13\n[ 1199.423411] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1200.426547] sm5713_fg_get_property: psp = 0x13\n[ 1200.427310] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1201.132620] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1201.132701] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1201.430434] sm5713_fg_get_property: psp = 0x13\n[ 1201.431207] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1202.434625] sm5713_fg_get_property: psp = 0x13\n[ 1202.435389] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1203.438508] sm5713_fg_get_property: psp = 0x13\n[ 1203.439277] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1203.914379] sm5713_fg_get_property: psp = 0xd\n[ 1203.914997] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1203.916477] sm5713_cal_avg_vbat: batt_avgvoltage = 3717\n[ 1203.916493] sm5713_fg_get_property: psp = 0xe\n[ 1203.916505] sm5713_fg_get_property: psp = 0xe\n[ 1203.916516] sm5713_fg_get_property: psp = 0x13\n[ 1203.917137] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1203.917464] sm5713_fg_get_property: psp = 0x14\n[ 1203.917475] sm5713_fg_get_property: psp = 0x8f\n[ 1203.917487] sm5713_fg_get_property: psp = 0x8f\n[ 1203.917503] sm5713_fg_get_property: psp = 0x21\n[ 1203.917515] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1203.918740] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(277), Temp-ADC(1878)\n[ 1203.919486] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(287), Temp-ADC(1856)\n[ 1203.919507] sm5713_fg_get_property: psp = 0x33\n[ 1203.919976] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1203.920311] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1203.921166] sm5713_cal_avg_vbat: batt_avgvoltage = 3717\n[ 1203.921530] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1203.922073] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1203.922970] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 186 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 277\n[ 1203.923409] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1203.923419] sm5713_get_soc: \n[ 1203.923960] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1203.924149] sm5713_get_soc: read = 0x10c0, soc = 167\n[ 1203.924160] sm5713_get_soc: batt_soc = 167, soc = 167\n[ 1203.925575] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0400, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1203.927345] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80ee, 0x86=0x0002, 0x87=0x8107, 0x1F=0x0064, 0x94=0x0030\n[ 1203.927540] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3717, v_avg=3717, i=-126, i_avg=-123, ocv=3735, fg_t=186, b_t=277, cycle=279, soc=167, state=0x8\n[ 1203.927551] sm5713_update_all_value : temp = 0xe97, t = 277 \n[ 1203.927561] sm5713_fg_get_scaled_capacity: scaled capacity (16.7)\n[ 1203.927577] sec_bat_get_battery_info:Vnow(3717mV),Vavg(3717mV),Inow(-126mA),Iavg(-123mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(277),Tusb(0),Tchg(287),Twpc(0)\n[ 1203.927612] sm5713_fg_get_property: psp = 0x31\n[ 1203.927628] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1203.927793] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(277)\n[ 1203.927806] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1203.927817] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1203.928869] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1203.928893] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1203.928905] sm5713_fg_get_property: psp = 0x96\n[ 1203.928917] sm5713_fg_periodic_read: skip old(1053) current(1203)\n[ 1203.928933] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1203.928966] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1203.929048] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1203.929071] sm5713_fg_get_property: psp = 0x13\n[ 1203.929433] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1203.929625] sm5713_fg_get_property: psp = 0x14\n[ 1204.442405] sm5713_fg_get_property: psp = 0x13\n[ 1204.443266] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1205.446423] sm5713_fg_get_property: psp = 0x13\n[ 1205.447197] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1206.252607] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 40 39\n[ 1206.450312] sm5713_fg_get_property: psp = 0x13\n[ 1206.451082] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1207.453262] sm5713_fg_get_property: psp = 0x13\n[ 1207.454030] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1207.532618] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1208.457154] sm5713_fg_get_property: psp = 0x13\n[ 1208.457922] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1209.461044] sm5713_fg_get_property: psp = 0x13\n[ 1209.461768] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1210.465155] sm5713_fg_get_property: psp = 0x13\n[ 1210.465887] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1211.472183]  4306     3.2 C/MHz    113 mW    7.9 J   38.1 I/mJ    69.7 s\n               1456: \n[ 1212.652728] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1213.292626] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1215.581734] sm5713_fg_get_property: psp = 0x13\n[ 1215.582244] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1216.585120] sm5713_fg_get_property: psp = 0x13\n[ 1216.585814] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1217.588699] sm5713_fg_get_property: psp = 0x13\n[ 1217.589391] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1218.592402] sm5713_fg_get_property: psp = 0x13\n[ 1218.593204] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1219.692591] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1220.602954] sm5713_fg_get_property: psp = 0x13\n[ 1220.603717] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1221.606823] sm5713_fg_get_property: psp = 0x13\n[ 1221.607590] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1222.610601] sm5713_fg_get_property: psp = 0x13\n[ 1222.611331] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1223.532597] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1223.614357] sm5713_fg_get_property: psp = 0x13\n[ 1223.615018] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1224.617991] sm5713_fg_get_property: psp = 0x13\n[ 1224.618757] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1225.452575] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1225.621740] sm5713_fg_get_property: psp = 0x13\n[ 1225.622181] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1226.624992] sm5713_fg_get_property: psp = 0x13\n[ 1226.625755] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1227.628746] sm5713_fg_get_property: psp = 0x13\n[ 1227.629593] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1228.632646] sm5713_fg_get_property: psp = 0x13\n[ 1228.633387] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1229.636365] sm5713_fg_get_property: psp = 0x13\n[ 1229.637138] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1230.640250] sm5713_fg_get_property: psp = 0x13\n[ 1230.640934] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1231.212575] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1231.643155] sm5713_fg_get_property: psp = 0x13\n[ 1231.643942] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1232.646951] sm5713_fg_get_property: psp = 0x13\n[ 1232.647744] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1233.650658] sm5713_fg_get_property: psp = 0x13\n[ 1233.651417] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1233.929252] sm5713_fg_get_property: psp = 0xd\n[ 1233.929890] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1233.931312] sm5713_cal_avg_vbat: batt_avgvoltage = 3716\n[ 1233.931331] sm5713_fg_get_property: psp = 0xe\n[ 1233.931342] sm5713_fg_get_property: psp = 0xe\n[ 1233.931353] sm5713_fg_get_property: psp = 0x13\n[ 1233.931707] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1233.931891] sm5713_fg_get_property: psp = 0x14\n[ 1233.931902] sm5713_fg_get_property: psp = 0x8f\n[ 1233.931911] sm5713_fg_get_property: psp = 0x8f\n[ 1233.931926] sm5713_fg_get_property: psp = 0x21\n[ 1233.931938] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1233.932737] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(277), Temp-ADC(1879)\n[ 1233.933657] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(287), Temp-ADC(1857)\n[ 1233.933675] sm5713_fg_get_property: psp = 0x33\n[ 1233.934132] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1233.934455] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1233.935280] sm5713_cal_avg_vbat: batt_avgvoltage = 3716\n[ 1233.935633] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1233.936156] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1233.936990] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 185 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 277\n[ 1233.937412] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1233.937422] sm5713_get_soc: \n[ 1233.937943] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1233.938125] sm5713_get_soc: read = 0x10b3, soc = 166\n[ 1233.938135] sm5713_get_soc: batt_soc = 166, soc = 166\n[ 1233.939504] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03fc, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1233.941215] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x8118, 0x86=0x8004, 0x87=0x8115, 0x1F=0x0064, 0x94=0x0030\n[ 1233.941400] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3716, v_avg=3716, i=-133, i_avg=-128, ocv=3735, fg_t=185, b_t=277, cycle=279, soc=166, state=0x8\n[ 1233.941410] sm5713_update_all_value : temp = 0xe97, t = 277 \n[ 1233.941420] sm5713_fg_get_scaled_capacity: scaled capacity (16.6)\n[ 1233.941434] sec_bat_get_battery_info:Vnow(3716mV),Vavg(3716mV),Inow(-133mA),Iavg(-128mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(277),Tusb(0),Tchg(287),Twpc(0)\n[ 1233.941465] sm5713_fg_get_property: psp = 0x31\n[ 1233.941480] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1233.941639] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(277)\n[ 1233.941650] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1233.941660] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1233.942710] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1233.942733] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1233.942744] sm5713_fg_get_property: psp = 0x96\n[ 1233.942754] sm5713_fg_periodic_read: skip old(1053) current(1233)\n[ 1233.942769] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1233.942798] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1233.942868] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1233.942888] sm5713_fg_get_property: psp = 0x13\n[ 1233.943236] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1233.943422] sm5713_fg_get_property: psp = 0x14\n[ 1234.412588] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1234.654568] sm5713_fg_get_property: psp = 0x13\n[ 1234.655424] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1235.658418] sm5713_fg_get_property: psp = 0x13\n[ 1235.659185] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1236.332573] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 41 40\n[ 1236.662180] sm5713_fg_get_property: psp = 0x13\n[ 1236.662954] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1237.612584] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1237.665977] sm5713_fg_get_property: psp = 0x13\n[ 1237.666740] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1238.669718] sm5713_fg_get_property: psp = 0x13\n[ 1238.670483] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1239.673149] sm5713_fg_get_property: psp = 0x13\n[ 1239.673915] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1240.676896] sm5713_fg_get_property: psp = 0x13\n[ 1240.677664] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1241.680643] sm5713_fg_get_property: psp = 0x13\n[ 1241.681408] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1242.094855] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[ 1242.096334] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x02 5:0x00]\n[ 1242.684600] sm5713_fg_get_property: psp = 0x13\n[ 1242.685369] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1243.372597] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1243.688364] sm5713_fg_get_property: psp = 0x13\n[ 1243.689129] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1244.692103] sm5713_fg_get_property: psp = 0x13\n[ 1244.692684] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1245.292599] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1245.695565] sm5713_fg_get_property: psp = 0x13\n[ 1245.696335] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1246.699309] sm5713_fg_get_property: psp = 0x13\n[ 1246.700072] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1247.703062] sm5713_fg_get_property: psp = 0x13\n[ 1247.703921] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1248.706899] sm5713_fg_get_property: psp = 0x13\n[ 1248.707669] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1249.132587] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1249.710737] sm5713_fg_get_property: psp = 0x13\n[ 1249.711429] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1250.714627] sm5713_fg_get_property: psp = 0x13\n[ 1250.715410] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1251.718305] sm5713_fg_get_property: psp = 0x13\n[ 1251.718973] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1252.721961] sm5713_fg_get_property: psp = 0x13\n[ 1252.722406] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1253.725233] sm5713_fg_get_property: psp = 0x13\n[ 1253.726005] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1254.728982] sm5713_fg_get_property: psp = 0x13\n[ 1254.729746] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1255.532583] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1255.732790] sm5713_fg_get_property: psp = 0x13\n[ 1255.733543] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1256.172592] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1256.736531] sm5713_fg_get_property: psp = 0x13\n[ 1256.737297] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1257.740271] sm5713_fg_get_property: psp = 0x13\n[ 1257.741035] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1258.743149] sm5713_fg_get_property: psp = 0x13\n[ 1258.743812] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1259.746805] sm5713_fg_get_property: psp = 0x13\n[ 1259.747568] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1260.750543] sm5713_fg_get_property: psp = 0x13\n[ 1260.751211] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1261.292574] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1261.754375] sm5713_fg_get_property: psp = 0x13\n[ 1261.755146] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1262.758122] sm5713_fg_get_property: psp = 0x13\n[ 1262.758890] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1263.761868] sm5713_fg_get_property: psp = 0x13\n[ 1263.762311] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1263.942978] sm5713_fg_get_property: psp = 0xd\n[ 1263.943613] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1263.945254] sm5713_cal_avg_vbat: batt_avgvoltage = 3716\n[ 1263.945271] sm5713_fg_get_property: psp = 0xe\n[ 1263.945282] sm5713_fg_get_property: psp = 0xe\n[ 1263.945292] sm5713_fg_get_property: psp = 0x13\n[ 1263.945789] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1263.945974] sm5713_fg_get_property: psp = 0x14\n[ 1263.945985] sm5713_fg_get_property: psp = 0x8f\n[ 1263.945995] sm5713_fg_get_property: psp = 0x8f\n[ 1263.946011] sm5713_fg_get_property: psp = 0x21\n[ 1263.946022] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1263.946669] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(277), Temp-ADC(1879)\n[ 1263.947284] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(288), Temp-ADC(1854)\n[ 1263.947300] sm5713_fg_get_property: psp = 0x33\n[ 1263.947746] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1263.948066] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1263.948893] sm5713_cal_avg_vbat: batt_avgvoltage = 3716\n[ 1263.949247] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1263.949770] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1263.950602] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 185 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 277\n[ 1263.951023] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1263.951032] sm5713_get_soc: \n[ 1263.951554] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1263.951736] sm5713_get_soc: read = 0x10b3, soc = 166\n[ 1263.951746] sm5713_get_soc: batt_soc = 166, soc = 166\n[ 1263.953150] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03fc, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1263.954856] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x810e, 0x86=0x8004, 0x87=0x8113, 0x1F=0x0064, 0x94=0x0030\n[ 1263.955041] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3716, v_avg=3716, i=-132, i_avg=-132, ocv=3735, fg_t=185, b_t=277, cycle=279, soc=166, state=0x8\n[ 1263.955051] sm5713_update_all_value : temp = 0xe97, t = 277 \n[ 1263.955061] sm5713_fg_get_scaled_capacity: scaled capacity (16.6)\n[ 1263.955075] sec_bat_get_battery_info:Vnow(3716mV),Vavg(3716mV),Inow(-132mA),Iavg(-132mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(277),Tusb(0),Tchg(288),Twpc(0)\n[ 1263.955105] sm5713_fg_get_property: psp = 0x31\n[ 1263.955119] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1263.955277] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(277)\n[ 1263.955288] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1263.955298] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1263.956324] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1263.956346] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1263.956357] sm5713_fg_get_property: psp = 0x96\n[ 1264.008839] [FG_ALL] 00:0000,c601,0000,000e,0000,10b3,1de2,1dbb,810f,1280,0117,1dab,0319,0480,3c8a,0100,01:0010,ffff,0003,0017,0000,7003,ffff,ffff,ffff,1dad,0a0a,0103,0004,ffff,0040,0064,02:04e1,03e6,ffff,0001,00a4,0146,3800,0078,03fc,00a4,070a,0048,ffff,000e,1f6b,0318,03:1f78,1f78,1f79,1f79,1f79,1f7a,1f7a,1f79,1f59,1f58,1f58,1f59,1f58,1f59,1f58,1f58,04:1f78,1f79,1f7a,1f7a,1f7a,1f79,1f79,1f7a,1f5a,1f59,1f59,1f5a,1f59,1f58,1f59,1f59,05:400f,400e,400e,400e,400e,400f,400f,400e,4014,400e,4012,400f,4012,4011,4013,4010,06:859a,90bc,29e2,0000,0000,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,8012,08:0008,8003,8002,ffff,8027,810e,8004,8113,0701,58cb,0000,0000,0000,ffff,ffff,ffff,09:0040,a000,0000,0000,0030,0201,0100,0153,0000,0000,0000,0000,0325,0000,0000,ffff,0a:1400,1b33,1c2a,1d6c,1d86,1da2,1dbb,1ddb,1df0,1e30,1e4f,1e5d,1e7e,1ea7,1edc,1f3d,0b:1f6f,1fa0,1ff1,2050,2082,20ee,2239,2400,0000,004c,0166,044c,0733,0a00,0ce6,0fcc,\n\n[ 1264.008876] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1264.008909] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1264.008980] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1264.009001] sm5713_fg_get_property: psp = 0x13\n[ 1264.009359] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1264.009545] sm5713_fg_get_property: psp = 0x14\n[ 1264.765116] sm5713_fg_get_property: psp = 0x13\n[ 1264.765969] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1265.768946] sm5713_fg_get_property: psp = 0x13\n[ 1265.769792] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1266.412574] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 42 41\n[ 1266.772819] sm5713_fg_get_property: psp = 0x13\n[ 1266.773658] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1267.692636] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1267.692704] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1267.776643] sm5713_fg_get_property: psp = 0x13\n[ 1267.777369] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1268.780345] sm5713_fg_get_property: psp = 0x13\n[ 1268.781012] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1269.783147] sm5713_fg_get_property: psp = 0x13\n[ 1269.783910] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1270.786989] sm5713_fg_get_property: psp = 0x13\n[ 1270.787786] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1271.790845] sm5713_fg_get_property: psp = 0x13\n[ 1271.791596] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1272.794558] sm5713_fg_get_property: psp = 0x13\n[ 1272.795328] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1273.452583] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1273.798306] sm5713_fg_get_property: psp = 0x13\n[ 1273.799075] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1274.802049] sm5713_fg_get_property: psp = 0x13\n[ 1274.802536] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1275.805297] sm5713_fg_get_property: psp = 0x13\n[ 1275.806067] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1276.809034] sm5713_fg_get_property: psp = 0x13\n[ 1276.809807] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1277.812824] sm5713_fg_get_property: psp = 0x13\n[ 1277.813483] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1278.572599] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1278.816473] sm5713_fg_get_property: psp = 0x13\n[ 1278.817236] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1279.212487] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1279.820218] sm5713_fg_get_property: psp = 0x13\n[ 1279.820987] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1280.823155] sm5713_fg_get_property: psp = 0x13\n[ 1280.823920] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1281.826890] sm5713_fg_get_property: psp = 0x13\n[ 1281.827653] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1282.830631] sm5713_fg_get_property: psp = 0x13\n[ 1282.831385] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1283.837400]  4728     3.2 C/MHz    143 mW    9.1 J   33.0 I/mJ    63.5 s\n               1534: \n[ 1285.612703] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1287.945543] sm5713_fg_get_property: psp = 0x13\n[ 1287.946241] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1288.949115] sm5713_fg_get_property: psp = 0x13\n[ 1288.949860] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1289.452617] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1289.952894] sm5713_fg_get_property: psp = 0x13\n[ 1289.953660] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1290.956551] sm5713_fg_get_property: psp = 0x13\n[ 1290.957236] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1291.372626] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1292.966949] sm5713_fg_get_property: psp = 0x13\n[ 1292.967721] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1293.970900] sm5713_fg_get_property: psp = 0x13\n[ 1293.971651] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1294.009187] sm5713_fg_get_property: psp = 0xd\n[ 1294.009809] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1294.011213] sm5713_cal_avg_vbat: batt_avgvoltage = 3715\n[ 1294.011229] sm5713_fg_get_property: psp = 0xe\n[ 1294.011240] sm5713_fg_get_property: psp = 0xe\n[ 1294.011249] sm5713_fg_get_property: psp = 0x13\n[ 1294.011599] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1294.011780] sm5713_fg_get_property: psp = 0x14\n[ 1294.011790] sm5713_fg_get_property: psp = 0x8f\n[ 1294.011800] sm5713_fg_get_property: psp = 0x8f\n[ 1294.011814] sm5713_fg_get_property: psp = 0x21\n[ 1294.011825] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1294.012508] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(277), Temp-ADC(1880)\n[ 1294.013407] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(287), Temp-ADC(1858)\n[ 1294.013425] sm5713_fg_get_property: psp = 0x33\n[ 1294.013871] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1294.014190] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1294.015014] sm5713_cal_avg_vbat: batt_avgvoltage = 3715\n[ 1294.015364] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1294.015882] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1294.016711] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 184 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 277\n[ 1294.017129] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1294.017138] sm5713_get_soc: \n[ 1294.017656] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1294.017837] sm5713_get_soc: read = 0x10b3, soc = 166\n[ 1294.017846] sm5713_get_soc: batt_soc = 166, soc = 166\n[ 1294.019202] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0438, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1294.020895] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x8116, 0x86=0x0004, 0x87=0x8124, 0x1F=0x0064, 0x94=0x0030\n[ 1294.021080] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3715, v_avg=3715, i=-140, i_avg=-134, ocv=3735, fg_t=184, b_t=277, cycle=279, soc=166, state=0x8\n[ 1294.021089] sm5713_update_all_value : temp = 0xe97, t = 277 \n[ 1294.021099] sm5713_fg_get_scaled_capacity: scaled capacity (16.6)\n[ 1294.021112] sec_bat_get_battery_info:Vnow(3715mV),Vavg(3715mV),Inow(-140mA),Iavg(-133mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(277),Tusb(0),Tchg(287),Twpc(0)\n[ 1294.021142] sm5713_fg_get_property: psp = 0x31\n[ 1294.021156] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1294.021312] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(277)\n[ 1294.021323] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1294.021332] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1294.022369] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1294.022391] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1294.022401] sm5713_fg_get_property: psp = 0x96\n[ 1294.022411] sm5713_fg_periodic_read: skip old(1263) current(1294)\n[ 1294.022426] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1294.022688] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1294.022776] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1294.022796] sm5713_fg_get_property: psp = 0x13\n[ 1294.023162] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1294.023346] sm5713_fg_get_property: psp = 0x14\n[ 1294.974770] sm5713_fg_get_property: psp = 0x13\n[ 1294.975482] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1295.978451] sm5713_fg_get_property: psp = 0x13\n[ 1295.979204] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1296.492572] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 43 42\n[ 1296.982075] sm5713_fg_get_property: psp = 0x13\n[ 1296.982586] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1297.132579] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1297.985251] sm5713_fg_get_property: psp = 0x13\n[ 1297.986002] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1298.988943] sm5713_fg_get_property: psp = 0x13\n[ 1298.989695] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1299.992717] sm5713_fg_get_property: psp = 0x13\n[ 1299.993545] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1300.332592] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1300.996500] sm5713_fg_get_property: psp = 0x13\n[ 1300.997253] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1302.000197] sm5713_fg_get_property: psp = 0x13\n[ 1302.001036] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1303.003139] sm5713_fg_get_property: psp = 0x13\n[ 1303.003978] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1303.532583] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1303.534889] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[ 1303.536439] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[ 1304.006949] sm5713_fg_get_property: psp = 0x13\n[ 1304.007711] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1305.010657] sm5713_fg_get_property: psp = 0x13\n[ 1305.011452] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1306.014575] sm5713_fg_get_property: psp = 0x13\n[ 1306.015336] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1307.018292] sm5713_fg_get_property: psp = 0x13\n[ 1307.019130] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1308.022065] sm5713_fg_get_property: psp = 0x13\n[ 1308.022555] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1309.025314] sm5713_fg_get_property: psp = 0x13\n[ 1309.026072] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1309.292580] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1310.029019] sm5713_fg_get_property: psp = 0x13\n[ 1310.029857] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1311.032872] sm5713_fg_get_property: psp = 0x13\n[ 1311.033702] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1311.212590] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1312.036676] sm5713_fg_get_property: psp = 0x13\n[ 1312.037516] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1313.040456] sm5713_fg_get_property: psp = 0x13\n[ 1313.041289] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1314.043133] sm5713_fg_get_property: psp = 0x13\n[ 1314.043892] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1315.046861] sm5713_fg_get_property: psp = 0x13\n[ 1315.047704] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1315.692570] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1316.050644] sm5713_fg_get_property: psp = 0x13\n[ 1316.051436] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1317.054456] sm5713_fg_get_property: psp = 0x13\n[ 1317.055304] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1318.058256] sm5713_fg_get_property: psp = 0x13\n[ 1318.059096] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1319.062043] sm5713_fg_get_property: psp = 0x13\n[ 1319.062536] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1320.065269] sm5713_fg_get_property: psp = 0x13\n[ 1320.066023] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1321.068959] sm5713_fg_get_property: psp = 0x13\n[ 1321.069707] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1321.452578] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1322.072835] sm5713_fg_get_property: psp = 0x13\n[ 1322.073573] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1322.092618] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1323.076665] sm5713_fg_get_property: psp = 0x13\n[ 1323.077421] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1324.022762] sm5713_fg_get_property: psp = 0xd\n[ 1324.023384] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1324.024995] sm5713_cal_avg_vbat: batt_avgvoltage = 3715\n[ 1324.025011] sm5713_fg_get_property: psp = 0xe\n[ 1324.025022] sm5713_fg_get_property: psp = 0xe\n[ 1324.025031] sm5713_fg_get_property: psp = 0x13\n[ 1324.025523] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1324.025707] sm5713_fg_get_property: psp = 0x14\n[ 1324.025717] sm5713_fg_get_property: psp = 0x8f\n[ 1324.025727] sm5713_fg_get_property: psp = 0x8f\n[ 1324.025741] sm5713_fg_get_property: psp = 0x21\n[ 1324.025752] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1324.026394] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(276), Temp-ADC(1881)\n[ 1324.026999] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(289), Temp-ADC(1851)\n[ 1324.027014] sm5713_fg_get_property: psp = 0x33\n[ 1324.027457] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1324.027774] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1324.028591] sm5713_cal_avg_vbat: batt_avgvoltage = 3715\n[ 1324.028939] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1324.029455] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1324.030279] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 186 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 276\n[ 1324.030708] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1324.030717] sm5713_get_soc: \n[ 1324.031234] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1324.031415] sm5713_get_soc: read = 0x10a7, soc = 166\n[ 1324.031424] sm5713_get_soc: batt_soc = 166, soc = 166\n[ 1324.032823] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x03f4, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1324.034517] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x8121, 0x86=0x8002, 0x87=0x8123, 0x1F=0x0064, 0x94=0x0030\n[ 1324.034700] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3715, v_avg=3715, i=-140, i_avg=-139, ocv=3734, fg_t=186, b_t=276, cycle=279, soc=166, state=0x8\n[ 1324.034710] sm5713_update_all_value : temp = 0xe96, t = 276 \n[ 1324.034719] sm5713_fg_get_scaled_capacity: scaled capacity (16.6)\n[ 1324.034733] sec_bat_get_battery_info:Vnow(3715mV),Vavg(3715mV),Inow(-140mA),Iavg(-139mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(276),Tusb(0),Tchg(289),Twpc(0)\n[ 1324.034762] sm5713_fg_get_property: psp = 0x31\n[ 1324.034776] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1324.034933] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(276)\n[ 1324.034944] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1324.034954] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1324.035975] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1324.035996] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1324.036007] sm5713_fg_get_property: psp = 0x96\n[ 1324.036017] sm5713_fg_periodic_read: skip old(1263) current(1324)\n[ 1324.036031] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1324.036059] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1324.036139] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1324.036158] sm5713_fg_get_property: psp = 0x13\n[ 1324.036502] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1324.036684] sm5713_fg_get_property: psp = 0x14\n[ 1324.080388] sm5713_fg_get_property: psp = 0x13\n[ 1324.081054] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1325.083144] sm5713_fg_get_property: psp = 0x13\n[ 1325.083900] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1326.086872] sm5713_fg_get_property: psp = 0x13\n[ 1326.087618] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1326.572589] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 44 43\n[ 1327.090629] sm5713_fg_get_property: psp = 0x13\n[ 1327.091406] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1327.212570] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1328.094432] sm5713_fg_get_property: psp = 0x13\n[ 1328.095281] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1329.098226] sm5713_fg_get_property: psp = 0x13\n[ 1329.098985] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1330.101923] sm5713_fg_get_property: psp = 0x13\n[ 1330.102362] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1331.105130] sm5713_fg_get_property: psp = 0x13\n[ 1331.105982] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1332.108927] sm5713_fg_get_property: psp = 0x13\n[ 1332.109681] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1333.112691] sm5713_fg_get_property: psp = 0x13\n[ 1333.113520] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1333.612593] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1333.612657] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1334.116481] sm5713_fg_get_property: psp = 0x13\n[ 1334.117324] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1335.120284] sm5713_fg_get_property: psp = 0x13\n[ 1335.121044] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1336.123134] sm5713_fg_get_property: psp = 0x13\n[ 1336.123891] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1337.126827] sm5713_fg_get_property: psp = 0x13\n[ 1337.127582] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1338.130526] sm5713_fg_get_property: psp = 0x13\n[ 1338.131279] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1339.133151] sm5713_fg_get_property: psp = 0x13\n[ 1339.133923] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1339.372588] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1340.136883] sm5713_fg_get_property: psp = 0x13\n[ 1340.137635] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1341.140587] sm5713_fg_get_property: psp = 0x13\n[ 1341.141384] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1342.144415] sm5713_fg_get_property: psp = 0x13\n[ 1342.145254] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1343.148195] sm5713_fg_get_property: psp = 0x13\n[ 1343.148952] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1344.151890] sm5713_fg_get_property: psp = 0x13\n[ 1344.152337] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1344.492593] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1345.132483] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1345.155149] sm5713_fg_get_property: psp = 0x13\n[ 1345.155902] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1346.158841] sm5713_fg_get_property: psp = 0x13\n[ 1346.159591] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1347.162730] sm5713_fg_get_property: psp = 0x13\n[ 1347.163459] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1348.166422] sm5713_fg_get_property: psp = 0x13\n[ 1348.167076] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1349.170021] sm5713_fg_get_property: psp = 0x13\n[ 1349.170773] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1350.173135] sm5713_fg_get_property: psp = 0x13\n[ 1350.173975] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1351.176911] sm5713_fg_get_property: psp = 0x13\n[ 1351.177753] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1351.532599] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1352.180701] sm5713_fg_get_property: psp = 0x13\n[ 1352.181519] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1353.187414]  4981     3.2 C/MHz    166 mW   10.0 J   30.0 I/mJ    60.2 s\n               1638: \n[ 1354.036350] sm5713_fg_get_property: psp = 0xd\n[ 1354.037097] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1354.038722] sm5713_cal_avg_vbat: batt_avgvoltage = 3716\n[ 1354.038740] sm5713_fg_get_property: psp = 0xe\n[ 1354.038750] sm5713_fg_get_property: psp = 0xe\n[ 1354.038759] sm5713_fg_get_property: psp = 0x13\n[ 1354.039319] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1354.039574] sm5713_fg_get_property: psp = 0x14\n[ 1354.039584] sm5713_fg_get_property: psp = 0x8f\n[ 1354.039594] sm5713_fg_get_property: psp = 0x8f\n[ 1354.039607] sm5713_fg_get_property: psp = 0x21\n[ 1354.039618] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1354.040340] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(276), Temp-ADC(1881)\n[ 1354.041031] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(289), Temp-ADC(1850)\n[ 1354.041045] sm5713_fg_get_property: psp = 0x33\n[ 1354.041610] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1354.042035] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1354.043143] sm5713_cal_avg_vbat: batt_avgvoltage = 3716\n[ 1354.043525] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1354.044204] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1354.045297] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 185 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 276\n[ 1354.045857] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1354.045866] sm5713_get_soc: \n[ 1354.046561] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1354.046794] sm5713_get_soc: read = 0x10a7, soc = 166\n[ 1354.046803] sm5713_get_soc: batt_soc = 166, soc = 166\n[ 1354.048701] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0418, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1354.051022] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80e2, 0x86=0x800d, 0x87=0x80d4, 0x1F=0x0064, 0x94=0x0030\n[ 1354.051259] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3719, v_avg=3716, i=-102, i_avg=-125, ocv=3734, fg_t=185, b_t=276, cycle=279, soc=166, state=0x8\n[ 1354.051268] sm5713_update_all_value : temp = 0xe96, t = 276 \n[ 1354.051277] sm5713_fg_get_scaled_capacity: scaled capacity (16.6)\n[ 1354.051290] sec_bat_get_battery_info:Vnow(3719mV),Vavg(3716mV),Inow(-102mA),Iavg(-130mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(276),Tusb(0),Tchg(289),Twpc(0)\n[ 1354.051319] sm5713_fg_get_property: psp = 0x31\n[ 1354.051333] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1354.051526] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(276)\n[ 1354.051536] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1354.051545] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1354.053087] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1354.053108] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1354.053119] sm5713_fg_get_property: psp = 0x96\n[ 1354.053128] sm5713_fg_periodic_read: skip old(1263) current(1354)\n[ 1354.053142] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1354.053169] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1354.053233] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1354.053251] sm5713_fg_get_property: psp = 0x13\n[ 1354.053726] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1354.053963] sm5713_fg_get_property: psp = 0x14\n[ 1355.372634] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1356.652504] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 45 44\n[ 1357.292592] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1357.295479] sm5713_fg_get_property: psp = 0x13\n[ 1357.296251] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1358.299203] sm5713_fg_get_property: psp = 0x13\n[ 1358.299961] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1359.302969] sm5713_fg_get_property: psp = 0x13\n[ 1359.303627] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1360.306583] sm5713_fg_get_property: psp = 0x13\n[ 1360.307353] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1362.316924] sm5713_fg_get_property: psp = 0x13\n[ 1362.317760] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1363.320716] sm5713_fg_get_property: psp = 0x13\n[ 1363.321443] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1363.692577] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1364.324538] sm5713_fg_get_property: psp = 0x13\n[ 1364.325364] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1364.974607] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[ 1364.975824] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x02 5:0x00]\n[ 1365.328413] sm5713_fg_get_property: psp = 0x13\n[ 1365.329147] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1366.252588] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1366.332065] sm5713_fg_get_property: psp = 0x13\n[ 1366.332549] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1367.335270] sm5713_fg_get_property: psp = 0x13\n[ 1367.336065] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1368.339050] sm5713_fg_get_property: psp = 0x13\n[ 1368.339856] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1369.342759] sm5713_fg_get_property: psp = 0x13\n[ 1369.343568] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1369.452579] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1370.346475] sm5713_fg_get_property: psp = 0x13\n[ 1370.347300] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1371.350198] sm5713_fg_get_property: psp = 0x13\n[ 1371.351023] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1372.353117] sm5713_fg_get_property: psp = 0x13\n[ 1372.353852] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1373.356753] sm5713_fg_get_property: psp = 0x13\n[ 1373.357579] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1374.360476] sm5713_fg_get_property: psp = 0x13\n[ 1374.361300] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1375.212567] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1375.363138] sm5713_fg_get_property: psp = 0x13\n[ 1375.363954] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1376.366866] sm5713_fg_get_property: psp = 0x13\n[ 1376.367686] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1377.132591] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1377.370596] sm5713_fg_get_property: psp = 0x13\n[ 1377.371338] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1378.374304] sm5713_fg_get_property: psp = 0x13\n[ 1378.375049] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1379.377945] sm5713_fg_get_property: psp = 0x13\n[ 1379.378770] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1380.381674] sm5713_fg_get_property: psp = 0x13\n[ 1380.382108] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1381.384905] sm5713_fg_get_property: psp = 0x13\n[ 1381.385733] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1381.612584] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1382.388639] sm5713_fg_get_property: psp = 0x13\n[ 1382.389383] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1383.392294] sm5713_fg_get_property: psp = 0x13\n[ 1383.392959] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1384.053337] sm5713_fg_get_property: psp = 0xd\n[ 1384.053946] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1384.055528] sm5713_cal_avg_vbat: batt_avgvoltage = 3715\n[ 1384.055545] sm5713_fg_get_property: psp = 0xe\n[ 1384.055555] sm5713_fg_get_property: psp = 0xe\n[ 1384.055563] sm5713_fg_get_property: psp = 0x13\n[ 1384.056132] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1384.056315] sm5713_fg_get_property: psp = 0x14\n[ 1384.056325] sm5713_fg_get_property: psp = 0x8f\n[ 1384.056334] sm5713_fg_get_property: psp = 0x8f\n[ 1384.056348] sm5713_fg_get_property: psp = 0x21\n[ 1384.056358] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1384.056995] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(276), Temp-ADC(1881)\n[ 1384.057597] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(289), Temp-ADC(1847)\n[ 1384.057612] sm5713_fg_get_property: psp = 0x33\n[ 1384.058050] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1384.058363] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1384.059175] sm5713_cal_avg_vbat: batt_avgvoltage = 3715\n[ 1384.059521] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1384.060034] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1384.060852] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 186 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 276\n[ 1384.061267] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1384.061275] sm5713_get_soc: \n[ 1384.061787] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1384.061966] sm5713_get_soc: read = 0x109a, soc = 166\n[ 1384.061975] sm5713_get_soc: batt_soc = 166, soc = 166\n[ 1384.063340] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x040c, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1384.065025] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x8149, 0x86=0x8001, 0x87=0x8137, 0x1F=0x0064, 0x94=0x0030\n[ 1384.065208] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3712, v_avg=3715, i=-149, i_avg=-124, ocv=3734, fg_t=186, b_t=276, cycle=279, soc=166, state=0x8\n[ 1384.065217] sm5713_update_all_value : temp = 0xe96, t = 276 \n[ 1384.065226] sm5713_fg_get_scaled_capacity: scaled capacity (16.6)\n[ 1384.065239] sec_bat_get_battery_info:Vnow(3712mV),Vavg(3715mV),Inow(-149mA),Iavg(-124mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(276),Tusb(0),Tchg(289),Twpc(0)\n[ 1384.065267] sm5713_fg_get_property: psp = 0x31\n[ 1384.065281] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1384.065435] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(276)\n[ 1384.065446] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1384.065454] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1384.066471] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1384.066491] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1384.066501] sm5713_fg_get_property: psp = 0x96\n[ 1384.066510] sm5713_fg_periodic_read: skip old(1263) current(1384)\n[ 1384.066524] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1384.066552] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1384.066628] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1384.066647] sm5713_fg_get_property: psp = 0x13\n[ 1384.066989] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1384.067169] sm5713_fg_get_property: psp = 0x14\n[ 1384.395923] sm5713_fg_get_property: psp = 0x13\n[ 1384.396661] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1385.399566] sm5713_fg_get_property: psp = 0x13\n[ 1385.400310] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1386.403120] sm5713_fg_get_property: psp = 0x13\n[ 1386.403864] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1386.732581] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 46 45\n[ 1387.372572] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1387.406789] sm5713_fg_get_property: psp = 0x13\n[ 1387.407607] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1388.410510] sm5713_fg_get_property: psp = 0x13\n[ 1388.411289] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1388.652590] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1389.413141] sm5713_fg_get_property: psp = 0x13\n[ 1389.413899] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1390.416817] sm5713_fg_get_property: psp = 0x13\n[ 1390.417650] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1391.420552] sm5713_fg_get_property: psp = 0x13\n[ 1391.421363] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1392.424314] sm5713_fg_get_property: psp = 0x13\n[ 1392.425137] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1393.132665] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1393.428049] sm5713_fg_get_property: psp = 0x13\n[ 1393.428867] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1394.431762] sm5713_fg_get_property: psp = 0x13\n[ 1394.432197] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1395.434961] sm5713_fg_get_property: psp = 0x13\n[ 1395.435785] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1396.438691] sm5713_fg_get_property: psp = 0x13\n[ 1396.439432] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1397.442330] sm5713_fg_get_property: psp = 0x13\n[ 1397.443083] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1398.446024] sm5713_fg_get_property: psp = 0x13\n[ 1398.446843] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1399.449739] sm5713_fg_get_property: psp = 0x13\n[ 1399.450567] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1399.532591] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1399.532661] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1400.453132] sm5713_fg_get_property: psp = 0x13\n[ 1400.453770] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1401.456678] sm5713_fg_get_property: psp = 0x13\n[ 1401.457423] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1402.460320] sm5713_fg_get_property: psp = 0x13\n[ 1402.461145] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1403.463119] sm5713_fg_get_property: psp = 0x13\n[ 1403.463871] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1404.466782] sm5713_fg_get_property: psp = 0x13\n[ 1404.467603] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1405.292567] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1405.470494] sm5713_fg_get_property: psp = 0x13\n[ 1405.471309] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1406.474299] sm5713_fg_get_property: psp = 0x13\n[ 1406.475092] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1407.478044] sm5713_fg_get_property: psp = 0x13\n[ 1407.478932] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1408.481905] sm5713_fg_get_property: psp = 0x13\n[ 1408.482355] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1409.485005] sm5713_fg_get_property: psp = 0x13\n[ 1409.485747] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1410.412585] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1410.488569] sm5713_fg_get_property: psp = 0x13\n[ 1410.489307] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1411.492214] sm5713_fg_get_property: psp = 0x13\n[ 1411.492917] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1411.692577] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1412.495844] sm5713_fg_get_property: psp = 0x13\n[ 1412.496663] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1413.499571] sm5713_fg_get_property: psp = 0x13\n[ 1413.500402] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1414.066710] sm5713_fg_get_property: psp = 0xd\n[ 1414.067391] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1414.068923] sm5713_cal_avg_vbat: batt_avgvoltage = 3713\n[ 1414.068940] sm5713_fg_get_property: psp = 0xe\n[ 1414.068949] sm5713_fg_get_property: psp = 0xe\n[ 1414.068958] sm5713_fg_get_property: psp = 0x13\n[ 1414.069304] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1414.069483] sm5713_fg_get_property: psp = 0x14\n[ 1414.069493] sm5713_fg_get_property: psp = 0x8f\n[ 1414.069502] sm5713_fg_get_property: psp = 0x8f\n[ 1414.069516] sm5713_fg_get_property: psp = 0x21\n[ 1414.069526] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1414.070160] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(277), Temp-ADC(1880)\n[ 1414.070764] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(290), Temp-ADC(1844)\n[ 1414.070778] sm5713_fg_get_property: psp = 0x33\n[ 1414.071214] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1414.071528] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1414.072338] sm5713_cal_avg_vbat: batt_avgvoltage = 3712\n[ 1414.072693] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1414.073205] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1414.074019] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 187 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 277\n[ 1414.074432] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1414.074440] sm5713_get_soc: \n[ 1414.074950] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1414.075128] sm5713_get_soc: read = 0x109a, soc = 166\n[ 1414.075137] sm5713_get_soc: batt_soc = 166, soc = 166\n[ 1414.076482] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x041c, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1414.078159] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x814c, 0x86=0x0001, 0x87=0x8134, 0x1F=0x0064, 0x94=0x0030\n[ 1414.078341] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3712, v_avg=3712, i=-148, i_avg=-148, ocv=3734, fg_t=187, b_t=277, cycle=279, soc=166, state=0x8\n[ 1414.078350] sm5713_update_all_value : temp = 0xe96, t = 277 \n[ 1414.078359] sm5713_fg_get_scaled_capacity: scaled capacity (16.6)\n[ 1414.078372] sec_bat_get_battery_info:Vnow(3712mV),Vavg(3713mV),Inow(-148mA),Iavg(-148mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(277),Tusb(0),Tchg(290),Twpc(0)\n[ 1414.078400] sm5713_fg_get_property: psp = 0x31\n[ 1414.078413] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1414.078568] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(277)\n[ 1414.078578] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1414.078587] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1414.079600] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1414.079620] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1414.079630] sm5713_fg_get_property: psp = 0x96\n[ 1414.079640] sm5713_fg_periodic_read: skip old(1263) current(1414)\n[ 1414.079654] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1414.079682] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1414.079760] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1414.079778] sm5713_fg_get_property: psp = 0x13\n[ 1414.080121] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1414.080300] sm5713_fg_get_property: psp = 0x14\n[ 1414.503146] sm5713_fg_get_property: psp = 0x13\n[ 1414.503867] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1415.506792] sm5713_fg_get_property: psp = 0x13\n[ 1415.507533] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1416.510437] sm5713_fg_get_property: psp = 0x13\n[ 1416.511258] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1416.812568] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 47 46\n[ 1417.452561] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1417.513128] sm5713_fg_get_property: psp = 0x13\n[ 1417.513867] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1418.519132]  5319     3.2 C/MHz    201 mW   11.3 J   26.5 I/mJ    56.4 s\n               1742: \n[ 1421.292648] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1422.625544] sm5713_fg_get_property: psp = 0x13\n[ 1422.626313] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1423.212616] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1423.629164] sm5713_fg_get_property: psp = 0x13\n[ 1423.629910] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1424.632866] sm5713_fg_get_property: psp = 0x13\n[ 1424.633614] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1425.636543] sm5713_fg_get_property: psp = 0x13\n[ 1425.637315] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1426.414641] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[ 1426.415868] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[ 1427.646793] sm5713_fg_get_property: psp = 0x13\n[ 1427.647612] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1428.650610] sm5713_fg_get_property: psp = 0x13\n[ 1428.651384] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1429.612477] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1429.654429] sm5713_fg_get_property: psp = 0x13\n[ 1429.655153] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1430.658009] sm5713_fg_get_property: psp = 0x13\n[ 1430.658812] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1431.661678] sm5713_fg_get_property: psp = 0x13\n[ 1431.662111] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1432.172583] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1432.664942] sm5713_fg_get_property: psp = 0x13\n[ 1432.665670] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1433.668527] sm5713_fg_get_property: psp = 0x13\n[ 1433.669331] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1434.672211] sm5713_fg_get_property: psp = 0x13\n[ 1434.672902] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1435.372564] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1435.675797] sm5713_fg_get_property: psp = 0x13\n[ 1435.676600] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1436.679457] sm5713_fg_get_property: psp = 0x13\n[ 1436.680172] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1437.683065] sm5713_fg_get_property: psp = 0x13\n[ 1437.683791] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1438.686650] sm5713_fg_get_property: psp = 0x13\n[ 1438.687455] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1439.690307] sm5713_fg_get_property: psp = 0x13\n[ 1439.691111] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1440.693109] sm5713_fg_get_property: psp = 0x13\n[ 1440.693916] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1441.132571] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1441.696783] sm5713_fg_get_property: psp = 0x13\n[ 1441.697589] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1442.700448] sm5713_fg_get_property: psp = 0x13\n[ 1442.701265] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1443.692580] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1443.703122] sm5713_fg_get_property: psp = 0x13\n[ 1443.704002] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1444.079837] sm5713_fg_get_property: psp = 0xd\n[ 1444.080423] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1444.081592] sm5713_cal_avg_vbat: batt_avgvoltage = 3711\n[ 1444.081608] sm5713_fg_get_property: psp = 0xe\n[ 1444.081617] sm5713_fg_get_property: psp = 0xe\n[ 1444.081626] sm5713_fg_get_property: psp = 0x13\n[ 1444.081968] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1444.082146] sm5713_fg_get_property: psp = 0x14\n[ 1444.082155] sm5713_fg_get_property: psp = 0x8f\n[ 1444.082163] sm5713_fg_get_property: psp = 0x8f\n[ 1444.082177] sm5713_fg_get_property: psp = 0x21\n[ 1444.082187] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1444.082934] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(277), Temp-ADC(1880)\n[ 1444.083802] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(290), Temp-ADC(1843)\n[ 1444.083819] sm5713_fg_get_property: psp = 0x33\n[ 1444.084255] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1444.084566] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1444.085368] sm5713_cal_avg_vbat: batt_avgvoltage = 3711\n[ 1444.085711] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1444.086219] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1444.087025] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 187 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 277\n[ 1444.087433] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1444.087442] sm5713_get_soc: \n[ 1444.087949] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1444.088125] sm5713_get_soc: read = 0x108e, soc = 165\n[ 1444.088134] sm5713_get_soc: batt_soc = 165, soc = 165\n[ 1444.089464] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0430, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1444.091143] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x8146, 0x86=0x800b, 0x87=0x814d, 0x1F=0x0064, 0x94=0x0030\n[ 1444.091322] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3711, v_avg=3711, i=-160, i_avg=-153, ocv=3734, fg_t=187, b_t=277, cycle=279, soc=165, state=0x8\n[ 1444.091331] sm5713_update_all_value : temp = 0xe96, t = 277 \n[ 1444.091339] sm5713_fg_get_scaled_capacity: scaled capacity (16.5)\n[ 1444.091352] sec_bat_get_battery_info:Vnow(3711mV),Vavg(3711mV),Inow(-160mA),Iavg(-153mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(277),Tusb(0),Tchg(290),Twpc(0)\n[ 1444.091379] sm5713_fg_get_property: psp = 0x31\n[ 1444.091391] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1444.091544] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(277)\n[ 1444.091553] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1444.091562] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1444.092638] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1444.092658] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1444.092668] sm5713_fg_get_property: psp = 0x96\n[ 1444.143734] [FG_ALL] 00:0000,c601,0000,000e,0000,108e,1de1,1db2,8149,12c0,0117,1d9d,0319,0480,3c8a,0100,01:0010,ffff,0003,0017,0000,7003,ffff,ffff,ffff,1da2,0a0a,0103,0004,ffff,0040,0064,02:04e1,03e6,ffff,0001,00a4,0146,3800,0078,0430,00a4,070a,0048,ffff,000e,1f6b,0318,03:1f78,1f78,1f79,1f79,1f79,1f7a,1f7a,1f79,1f59,1f58,1f58,1f59,1f58,1f59,1f58,1f58,04:1f78,1f79,1f7a,1f7a,1f7a,1f79,1f79,1f7a,1f5a,1f59,1f59,1f5a,1f59,1f58,1f59,1f59,05:400f,400e,400e,400e,400e,400f,400f,400e,4014,400e,4012,400f,4012,4011,4013,4010,06:859a,90c5,29e2,0000,0000,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,8012,08:0008,8006,8002,ffff,802f,8146,800b,814d,06f2,58bf,0000,0000,0000,ffff,ffff,ffff,09:0040,a000,0000,0000,0030,0201,0100,0153,0000,0000,0000,0000,0325,0000,0000,ffff,0a:1400,1b33,1c2a,1d6c,1d86,1da2,1dbb,1ddb,1df0,1e30,1e4f,1e5d,1e7e,1ea7,1edc,1f3d,0b:1f6f,1fa0,1ff1,2050,2082,20ee,2239,2400,0000,004c,0166,044c,0733,0a00,0ce6,0fcc,\n\n[ 1444.143762] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1444.143786] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1444.143847] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1444.143866] sm5713_fg_get_property: psp = 0x13\n[ 1444.144211] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1444.144389] sm5713_fg_get_property: psp = 0x14\n[ 1444.706877] sm5713_fg_get_property: psp = 0x13\n[ 1444.707680] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1445.710551] sm5713_fg_get_property: psp = 0x13\n[ 1445.711327] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1446.713116] sm5713_fg_get_property: psp = 0x13\n[ 1446.713918] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1446.892573] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 48 47\n[ 1447.532581] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1447.716791] sm5713_fg_get_property: psp = 0x13\n[ 1447.717591] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1448.720453] sm5713_fg_get_property: psp = 0x13\n[ 1448.721258] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1449.723110] sm5713_fg_get_property: psp = 0x13\n[ 1449.723912] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1450.726778] sm5713_fg_get_property: psp = 0x13\n[ 1450.727582] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1451.730469] sm5713_fg_get_property: psp = 0x13\n[ 1451.731273] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1452.733113] sm5713_fg_get_property: psp = 0x13\n[ 1452.733918] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1453.292572] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1453.736792] sm5713_fg_get_property: psp = 0x13\n[ 1453.737596] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1454.572583] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1454.740460] sm5713_fg_get_property: psp = 0x13\n[ 1454.741258] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1455.743116] sm5713_fg_get_property: psp = 0x13\n[ 1455.743927] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1456.746806] sm5713_fg_get_property: psp = 0x13\n[ 1456.747687] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1457.750545] sm5713_fg_get_property: psp = 0x13\n[ 1457.751321] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1458.753129] sm5713_fg_get_property: psp = 0x13\n[ 1458.753957] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1459.692668] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1459.756850] sm5713_fg_get_property: psp = 0x13\n[ 1459.757650] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1460.760507] sm5713_fg_get_property: psp = 0x13\n[ 1460.761314] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1461.763108] sm5713_fg_get_property: psp = 0x13\n[ 1461.763916] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1462.766783] sm5713_fg_get_property: psp = 0x13\n[ 1462.767590] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1463.770443] sm5713_fg_get_property: psp = 0x13\n[ 1463.771248] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1464.773112] sm5713_fg_get_property: psp = 0x13\n[ 1464.773915] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1465.452577] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1465.452643] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1465.776766] sm5713_fg_get_property: psp = 0x13\n[ 1465.777565] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1466.780434] sm5713_fg_get_property: psp = 0x13\n[ 1466.781163] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1467.783110] sm5713_fg_get_property: psp = 0x13\n[ 1467.783833] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1468.786703] sm5713_fg_get_property: psp = 0x13\n[ 1468.787510] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1469.790388] sm5713_fg_get_property: psp = 0x13\n[ 1469.791192] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1470.793127] sm5713_fg_get_property: psp = 0x13\n[ 1470.793951] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1471.212567] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1471.796843] sm5713_fg_get_property: psp = 0x13\n[ 1471.797566] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1472.800437] sm5713_fg_get_property: psp = 0x13\n[ 1472.801236] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1473.803115] sm5713_fg_get_property: psp = 0x13\n[ 1473.803919] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1474.143950] sm5713_fg_get_property: psp = 0xd\n[ 1474.144611] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1474.146109] sm5713_cal_avg_vbat: batt_avgvoltage = 3711\n[ 1474.146126] sm5713_fg_get_property: psp = 0xe\n[ 1474.146135] sm5713_fg_get_property: psp = 0xe\n[ 1474.146143] sm5713_fg_get_property: psp = 0x13\n[ 1474.146485] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1474.146664] sm5713_fg_get_property: psp = 0x14\n[ 1474.146673] sm5713_fg_get_property: psp = 0x8f\n[ 1474.146682] sm5713_fg_get_property: psp = 0x8f\n[ 1474.146695] sm5713_fg_get_property: psp = 0x21\n[ 1474.146705] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1474.147333] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(277), Temp-ADC(1880)\n[ 1474.147925] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(292), Temp-ADC(1837)\n[ 1474.147939] sm5713_fg_get_property: psp = 0x33\n[ 1474.148370] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1474.148679] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1474.149480] sm5713_cal_avg_vbat: batt_avgvoltage = 3711\n[ 1474.149821] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1474.150329] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1474.151135] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 189 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 277\n[ 1474.151543] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1474.151551] sm5713_get_soc: \n[ 1474.152057] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1474.152232] sm5713_get_soc: read = 0x108e, soc = 165\n[ 1474.152241] sm5713_get_soc: batt_soc = 165, soc = 165\n[ 1474.153581] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0438, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1474.155242] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x815a, 0x86=0x8000, 0x87=0x8148, 0x1F=0x0064, 0x94=0x0030\n[ 1474.155422] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3711, v_avg=3711, i=-158, i_avg=-159, ocv=3734, fg_t=189, b_t=277, cycle=279, soc=165, state=0x8\n[ 1474.155431] sm5713_update_all_value : temp = 0xe96, t = 277 \n[ 1474.155439] sm5713_fg_get_scaled_capacity: scaled capacity (16.5)\n[ 1474.155451] sec_bat_get_battery_info:Vnow(3711mV),Vavg(3711mV),Inow(-158mA),Iavg(-159mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(277),Tusb(0),Tchg(292),Twpc(0)\n[ 1474.155478] sm5713_fg_get_property: psp = 0x31\n[ 1474.155491] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1474.155644] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(277)\n[ 1474.155653] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1474.155662] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1474.156671] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1474.156690] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1474.156699] sm5713_fg_get_property: psp = 0x96\n[ 1474.156708] sm5713_fg_periodic_read: skip old(1444) current(1474)\n[ 1474.156721] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1474.156748] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1474.156823] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1474.156841] sm5713_fg_get_property: psp = 0x13\n[ 1474.157181] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1474.157359] sm5713_fg_get_property: psp = 0x14\n[ 1474.806800] sm5713_fg_get_property: psp = 0x13\n[ 1474.807608] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1475.810490] sm5713_fg_get_property: psp = 0x13\n[ 1475.811221] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1476.332594] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1476.813118] sm5713_fg_get_property: psp = 0x13\n[ 1476.813923] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1476.972563] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 49 48\n[ 1477.612565] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1477.816794] sm5713_fg_get_property: psp = 0x13\n[ 1477.817600] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1478.820460] sm5713_fg_get_property: psp = 0x13\n[ 1478.821188] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1479.896953] cpu=0 set cpu scale 369 from energy model\n[ 1479.897001] cpu=0 set cpu scale 369 from energy model\n[ 1479.897029] cpu=0 set cpu scale 369 from energy model\n[ 1479.900601] arch_timer: CPU4: Trapping CNTVCT access\n[ 1479.900691] CPU4: Booted secondary processor [410fd092]\n[ 1479.901541] exynos_acme: CPUFREQ domain1 registered\n[ 1479.901567] cpufreq_schedutil: Restore sg_policy(4) from policy_list(f0)n\n[ 1479.902308] cpu=4 set cpu scale 1024 from energy model\n[ 1479.902318] cpu=4 set cpu scale 1024 from energy model\n[ 1479.902328] cpu=4 set cpu scale 1024 from energy model\n[ 1479.902340] cpu=0 set cpu scale 369 from energy model\n[ 1479.902347] cpu=0 set cpu scale 369 from energy model\n[ 1479.902354] cpu=0 set cpu scale 369 from energy model\n[ 1479.904851] cpufreq_schedutil: Already saved sg_policy(4) to policy_list(f0)n\n[ 1480.915283]  5657     3.2 C/MHz    241 mW   12.8 J   23.5 I/mJ    53.0 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 936 1040 1144 1248 1352 1456 1508 1664 1768 1898 1976 2080 2184 2210 2314\n               \n                936: \n[ 1483.372924] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1485.028270] sm5713_fg_get_property: psp = 0x13\n[ 1485.029619] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1486.035302] sm5713_fg_get_property: psp = 0x13\n[ 1486.036621] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1487.041769] sm5713_fg_get_property: psp = 0x13\n[ 1487.042748] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1487.212874] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1487.856249] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[ 1487.858240] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x02 5:0x00]\n[ 1488.047636] sm5713_fg_get_property: psp = 0x13\n[ 1488.048974] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1489.132840] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1490.070324] sm5713_fg_get_property: psp = 0x13\n[ 1490.071557] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1491.076805] sm5713_fg_get_property: psp = 0x13\n[ 1491.078028] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1492.083210] sm5713_fg_get_property: psp = 0x13\n[ 1492.084419] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1493.089438] sm5713_fg_get_property: psp = 0x13\n[ 1493.090662] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1494.096033] sm5713_fg_get_property: psp = 0x13\n[ 1494.097268] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1495.102189] sm5713_fg_get_property: psp = 0x13\n[ 1495.103420] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1495.533019] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1496.108483] sm5713_fg_get_property: psp = 0x13\n[ 1496.109711] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1497.113949] sm5713_fg_get_property: psp = 0x13\n[ 1497.115171] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1498.092855] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1498.120154] sm5713_fg_get_property: psp = 0x13\n[ 1498.121373] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1499.126571] sm5713_fg_get_property: psp = 0x13\n[ 1499.127793] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1500.132973] sm5713_fg_get_property: psp = 0x13\n[ 1500.134176] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1501.139144] sm5713_fg_get_property: psp = 0x13\n[ 1501.140357] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1501.292631] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1502.145939] sm5713_fg_get_property: psp = 0x13\n[ 1502.147203] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1503.152243] sm5713_fg_get_property: psp = 0x13\n[ 1503.153405] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1504.157131] sm5713_fg_get_property: psp = 0xd\n[ 1504.157723] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1504.158943] sm5713_cal_avg_vbat: batt_avgvoltage = 3712\n[ 1504.158996] sm5713_fg_get_property: psp = 0xe\n[ 1504.159035] sm5713_fg_get_property: psp = 0xe\n[ 1504.159069] sm5713_fg_get_property: psp = 0x13\n[ 1504.159594] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1504.159887] sm5713_fg_get_property: psp = 0x14\n[ 1504.159924] sm5713_fg_get_property: psp = 0x8f\n[ 1504.159958] sm5713_fg_get_property: psp = 0x8f\n[ 1504.160005] sm5713_fg_get_property: psp = 0x21\n[ 1504.160041] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1504.161058] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(276), Temp-ADC(1881)\n[ 1504.162003] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(290), Temp-ADC(1846)\n[ 1504.162068] sm5713_fg_get_property: psp = 0x33\n[ 1504.162208] sm5713_fg_get_property: psp = 0x13\n[ 1504.163948] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1504.165151] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1504.165456] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1504.167582] sm5713_cal_avg_vbat: batt_avgvoltage = 3712\n[ 1504.168136] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1504.168974] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1504.170272] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 187 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 276\n[ 1504.170930] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1504.170962] sm5713_get_soc: \n[ 1504.171752] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1504.172043] sm5713_get_soc: read = 0x1081, soc = 165\n[ 1504.172078] sm5713_get_soc: batt_soc = 165, soc = 165\n[ 1504.174268] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0434, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1504.176874] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x8100, 0x86=0x8001, 0x87=0x810f, 0x1F=0x0064, 0x94=0x0030\n[ 1504.177532] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3715, v_avg=3712, i=-130, i_avg=-143, ocv=3734, fg_t=187, b_t=276, cycle=279, soc=165, state=0x8\n[ 1504.177570] sm5713_update_all_value : temp = 0xe96, t = 276 \n[ 1504.177602] sm5713_fg_get_scaled_capacity: scaled capacity (16.5)\n[ 1504.177653] sec_bat_get_battery_info:Vnow(3715mV),Vavg(3712mV),Inow(-130mA),Iavg(-143mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(276),Tusb(0),Tchg(290),Twpc(0)\n[ 1504.177759] sm5713_fg_get_property: psp = 0x31\n[ 1504.177804] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1504.178313] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(276)\n[ 1504.178350] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1504.178383] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1504.181894] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1504.181972] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1504.182010] sm5713_fg_get_property: psp = 0x96\n[ 1504.182045] sm5713_fg_periodic_read: skip old(1444) current(1504)\n[ 1504.182095] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1504.182184] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1504.182387] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1504.182600] sm5713_fg_get_property: psp = 0x13\n[ 1504.183760] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1504.184339] sm5713_fg_get_property: psp = 0x14\n[ 1505.179251] sm5713_fg_get_property: psp = 0x13\n[ 1505.180472] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1506.185856] sm5713_fg_get_property: psp = 0x13\n[ 1506.187086] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1507.052808] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 50 49\n[ 1507.192066] sm5713_fg_get_property: psp = 0x13\n[ 1507.193322] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1507.692808] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1508.198532] sm5713_fg_get_property: psp = 0x13\n[ 1508.199604] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1509.204002] sm5713_fg_get_property: psp = 0x13\n[ 1509.205295] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1509.612835] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1510.210298] sm5713_fg_get_property: psp = 0x13\n[ 1510.211522] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1511.216674] sm5713_fg_get_property: psp = 0x13\n[ 1511.217893] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1512.223029] sm5713_fg_get_property: psp = 0x13\n[ 1512.224238] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1513.229225] sm5713_fg_get_property: psp = 0x13\n[ 1513.230439] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1513.452818] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1514.235993] sm5713_fg_get_property: psp = 0x13\n[ 1514.237060] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1515.242018] sm5713_fg_get_property: psp = 0x13\n[ 1515.243178] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1516.248222] sm5713_fg_get_property: psp = 0x13\n[ 1516.249456] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1517.253941] sm5713_fg_get_property: psp = 0x13\n[ 1517.255168] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1518.260180] sm5713_fg_get_property: psp = 0x13\n[ 1518.261408] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1519.212803] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1519.266632] sm5713_fg_get_property: psp = 0x13\n[ 1519.267857] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1520.273033] sm5713_fg_get_property: psp = 0x13\n[ 1520.274247] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1520.493107] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1521.279613] sm5713_fg_get_property: psp = 0x13\n[ 1521.280843] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1522.286224] sm5713_fg_get_property: psp = 0x13\n[ 1522.287448] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1523.292423] sm5713_fg_get_property: psp = 0x13\n[ 1523.293871] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1524.298920] sm5713_fg_get_property: psp = 0x13\n[ 1524.300154] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1525.305491] sm5713_fg_get_property: psp = 0x13\n[ 1525.306718] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1525.612825] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1526.311704] sm5713_fg_get_property: psp = 0x13\n[ 1526.312372] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1527.317420] sm5713_fg_get_property: psp = 0x13\n[ 1527.318680] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1528.323724] sm5713_fg_get_property: psp = 0x13\n[ 1528.324935] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1529.329914] sm5713_fg_get_property: psp = 0x13\n[ 1529.331147] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1530.336511] sm5713_fg_get_property: psp = 0x13\n[ 1530.337741] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1531.342904] sm5713_fg_get_property: psp = 0x13\n[ 1531.344110] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1531.372906] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1531.373056] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1532.349110] sm5713_fg_get_property: psp = 0x13\n[ 1532.350340] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1533.355885] sm5713_fg_get_property: psp = 0x13\n[ 1533.357124] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1534.182607] sm5713_fg_get_property: psp = 0xd\n[ 1534.183717] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1534.186312] sm5713_cal_avg_vbat: batt_avgvoltage = 3713\n[ 1534.186359] sm5713_fg_get_property: psp = 0xe\n[ 1534.186395] sm5713_fg_get_property: psp = 0xe\n[ 1534.186429] sm5713_fg_get_property: psp = 0x13\n[ 1534.187544] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1534.188122] sm5713_fg_get_property: psp = 0x14\n[ 1534.188160] sm5713_fg_get_property: psp = 0x8f\n[ 1534.188195] sm5713_fg_get_property: psp = 0x8f\n[ 1534.188240] sm5713_fg_get_property: psp = 0x21\n[ 1534.188275] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1534.189644] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(276), Temp-ADC(1881)\n[ 1534.191100] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(290), Temp-ADC(1846)\n[ 1534.191232] sm5713_fg_get_property: psp = 0x33\n[ 1534.192034] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1534.192600] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1534.193827] sm5713_cal_avg_vbat: batt_avgvoltage = 3713\n[ 1534.194358] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1534.195140] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1534.196447] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 187 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 276\n[ 1534.197109] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1534.197142] sm5713_get_soc: \n[ 1534.197920] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1534.198202] sm5713_get_soc: read = 0x1081, soc = 165\n[ 1534.198237] sm5713_get_soc: batt_soc = 165, soc = 165\n[ 1534.200245] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0420, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1534.202824] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x812c, 0x86=0x0001, 0x87=0x810c, 0x1F=0x0064, 0x94=0x0030\n[ 1534.203127] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3714, v_avg=3713, i=-128, i_avg=-128, ocv=3734, fg_t=187, b_t=276, cycle=279, soc=165, state=0x8\n[ 1534.203162] sm5713_update_all_value : temp = 0xe96, t = 276 \n[ 1534.203194] sm5713_fg_get_scaled_capacity: scaled capacity (16.5)\n[ 1534.203243] sec_bat_get_battery_info:Vnow(3714mV),Vavg(3713mV),Inow(-128mA),Iavg(-128mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(276),Tusb(0),Tchg(290),Twpc(0)\n[ 1534.203338] sm5713_fg_get_property: psp = 0x31\n[ 1534.203379] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1534.203644] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(276)\n[ 1534.203680] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1534.203713] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1534.205068] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1534.205146] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1534.205184] sm5713_fg_get_property: psp = 0x96\n[ 1534.205218] sm5713_fg_periodic_read: skip old(1444) current(1534)\n[ 1534.205267] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1534.205351] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1534.205524] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1534.205591] sm5713_fg_get_property: psp = 0x13\n[ 1534.206114] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1534.206408] sm5713_fg_get_property: psp = 0x14\n[ 1534.362135] sm5713_fg_get_property: psp = 0x13\n[ 1534.363364] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1535.368434] sm5713_fg_get_property: psp = 0x13\n[ 1535.369665] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1536.373951] sm5713_fg_get_property: psp = 0x13\n[ 1536.375181] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1537.133048] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1537.133259] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 51 50\n[ 1537.380190] sm5713_fg_get_property: psp = 0x13\n[ 1537.381427] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1538.386581] sm5713_fg_get_property: psp = 0x13\n[ 1538.387815] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1539.393370] sm5713_fg_get_property: psp = 0x13\n[ 1539.394563] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1540.399571] sm5713_fg_get_property: psp = 0x13\n[ 1540.400803] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1541.406237] sm5713_fg_get_property: psp = 0x13\n[ 1541.407467] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1542.252835] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1542.412613] sm5713_fg_get_property: psp = 0x13\n[ 1542.413802] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1543.418831] sm5713_fg_get_property: psp = 0x13\n[ 1543.420057] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1543.532813] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1544.425403] sm5713_fg_get_property: psp = 0x13\n[ 1544.426629] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1545.432067] sm5713_fg_get_property: psp = 0x13\n[ 1545.433175] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1546.438208] sm5713_fg_get_property: psp = 0x13\n[ 1546.439436] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1547.443967] sm5713_fg_get_property: psp = 0x13\n[ 1547.445208] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1548.450201] sm5713_fg_get_property: psp = 0x13\n[ 1548.451431] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1549.292834] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1549.296181] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[ 1549.298077] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[ 1549.466882]  5043     5.4 C/MHz    126 mW    7.5 J   39.9 I/mJ    59.5 s\n               1040: \n[ 1553.132906] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1553.578508] sm5713_fg_get_property: psp = 0x13\n[ 1553.579887] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1554.585420] sm5713_fg_get_property: psp = 0x13\n[ 1554.586776] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1555.591901] sm5713_fg_get_property: psp = 0x13\n[ 1555.592859] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1555.692820] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1556.598026] sm5713_fg_get_property: psp = 0x13\n[ 1556.599375] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1558.620556] sm5713_fg_get_property: psp = 0x13\n[ 1558.621786] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1559.627060] sm5713_fg_get_property: psp = 0x13\n[ 1559.628322] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1560.633500] sm5713_fg_get_property: psp = 0x13\n[ 1560.634819] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1561.452822] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1561.639642] sm5713_fg_get_property: psp = 0x13\n[ 1561.640863] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1562.646234] sm5713_fg_get_property: psp = 0x13\n[ 1562.647458] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1563.652415] sm5713_fg_get_property: psp = 0x13\n[ 1563.653777] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1564.206041] sm5713_fg_get_property: psp = 0xd\n[ 1564.207139] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1564.209726] sm5713_cal_avg_vbat: batt_avgvoltage = 3713\n[ 1564.209772] sm5713_fg_get_property: psp = 0xe\n[ 1564.209809] sm5713_fg_get_property: psp = 0xe\n[ 1564.209842] sm5713_fg_get_property: psp = 0x13\n[ 1564.210951] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1564.211531] sm5713_fg_get_property: psp = 0x14\n[ 1564.211568] sm5713_fg_get_property: psp = 0x8f\n[ 1564.211603] sm5713_fg_get_property: psp = 0x8f\n[ 1564.211649] sm5713_fg_get_property: psp = 0x21\n[ 1564.211683] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1564.212829] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(277), Temp-ADC(1880)\n[ 1564.214378] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(289), Temp-ADC(1850)\n[ 1564.214439] sm5713_fg_get_property: psp = 0x33\n[ 1564.215831] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1564.216845] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1564.219443] sm5713_cal_avg_vbat: batt_avgvoltage = 3713\n[ 1564.220552] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1564.221703] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1564.223045] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 186 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 277\n[ 1564.223711] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1564.223743] sm5713_get_soc: \n[ 1564.224518] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1564.224803] sm5713_get_soc: read = 0x1075, soc = 164\n[ 1564.224838] sm5713_get_soc: batt_soc = 164, soc = 164\n[ 1564.226878] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0440, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1564.229395] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x8114, 0x86=0x0002, 0x87=0x8129, 0x1F=0x0064, 0x94=0x0030\n[ 1564.229697] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3714, v_avg=3713, i=-134, i_avg=-130, ocv=3734, fg_t=186, b_t=277, cycle=279, soc=164, state=0x8\n[ 1564.229733] sm5713_update_all_value : temp = 0xe96, t = 277 \n[ 1564.229765] sm5713_fg_get_scaled_capacity: scaled capacity (16.4)\n[ 1564.229813] sec_bat_get_battery_info:Vnow(3714mV),Vavg(3713mV),Inow(-134mA),Iavg(-130mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(277),Tusb(0),Tchg(289),Twpc(0)\n[ 1564.229909] sm5713_fg_get_property: psp = 0x31\n[ 1564.229952] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1564.230217] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(277)\n[ 1564.230255] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1564.230287] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1564.231667] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1564.231745] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1564.231783] sm5713_fg_get_property: psp = 0x96\n[ 1564.231817] sm5713_fg_periodic_read: skip old(1444) current(1564)\n[ 1564.231866] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1564.231950] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1564.232120] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1564.232187] sm5713_fg_get_property: psp = 0x13\n[ 1564.232795] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1564.233092] sm5713_fg_get_property: psp = 0x14\n[ 1564.652849] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1564.658826] sm5713_fg_get_property: psp = 0x13\n[ 1564.660037] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1565.665374] sm5713_fg_get_property: psp = 0x13\n[ 1565.666594] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1566.671774] sm5713_fg_get_property: psp = 0x13\n[ 1566.672436] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1567.212838] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1567.213002] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 52 51\n[ 1567.677488] sm5713_fg_get_property: psp = 0x13\n[ 1567.678664] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1568.683808] sm5713_fg_get_property: psp = 0x13\n[ 1568.685066] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1569.690049] sm5713_fg_get_property: psp = 0x13\n[ 1569.691270] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1570.696554] sm5713_fg_get_property: psp = 0x13\n[ 1570.697771] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1571.702919] sm5713_fg_get_property: psp = 0x13\n[ 1571.704122] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1572.709126] sm5713_fg_get_property: psp = 0x13\n[ 1572.710469] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1573.612803] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1573.715818] sm5713_fg_get_property: psp = 0x13\n[ 1573.717040] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1574.722053] sm5713_fg_get_property: psp = 0x13\n[ 1574.723217] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1575.532830] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1575.728251] sm5713_fg_get_property: psp = 0x13\n[ 1575.729466] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1576.733944] sm5713_fg_get_property: psp = 0x13\n[ 1576.735168] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1577.740162] sm5713_fg_get_property: psp = 0x13\n[ 1577.741390] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1578.746609] sm5713_fg_get_property: psp = 0x13\n[ 1578.747824] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1579.372805] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1579.753264] sm5713_fg_get_property: psp = 0x13\n[ 1579.754497] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1580.759535] sm5713_fg_get_property: psp = 0x13\n[ 1580.760758] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1581.766118] sm5713_fg_get_property: psp = 0x13\n[ 1581.767336] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1582.772318] sm5713_fg_get_property: psp = 0x13\n[ 1582.773567] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1583.778579] sm5713_fg_get_property: psp = 0x13\n[ 1583.779805] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1584.783955] sm5713_fg_get_property: psp = 0x13\n[ 1584.785190] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1585.132828] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1585.790440] sm5713_fg_get_property: psp = 0x13\n[ 1585.791634] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1586.412851] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1586.796555] sm5713_fg_get_property: psp = 0x13\n[ 1586.797775] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1587.802908] sm5713_fg_get_property: psp = 0x13\n[ 1587.804120] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1588.809148] sm5713_fg_get_property: psp = 0x13\n[ 1588.810369] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1589.815737] sm5713_fg_get_property: psp = 0x13\n[ 1589.816956] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1590.821933] sm5713_fg_get_property: psp = 0x13\n[ 1590.822789] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1591.532802] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1591.828064] sm5713_fg_get_property: psp = 0x13\n[ 1591.829206] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1592.833758] sm5713_fg_get_property: psp = 0x13\n[ 1592.834983] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1593.839958] sm5713_fg_get_property: psp = 0x13\n[ 1593.841172] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1594.232669] sm5713_fg_get_property: psp = 0xd\n[ 1594.233759] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1594.236373] sm5713_cal_avg_vbat: batt_avgvoltage = 3713\n[ 1594.236420] sm5713_fg_get_property: psp = 0xe\n[ 1594.236457] sm5713_fg_get_property: psp = 0xe\n[ 1594.236490] sm5713_fg_get_property: psp = 0x13\n[ 1594.237539] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1594.238115] sm5713_fg_get_property: psp = 0x14\n[ 1594.238153] sm5713_fg_get_property: psp = 0x8f\n[ 1594.238188] sm5713_fg_get_property: psp = 0x8f\n[ 1594.238234] sm5713_fg_get_property: psp = 0x21\n[ 1594.238268] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1594.239636] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(277), Temp-ADC(1880)\n[ 1594.241087] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(290), Temp-ADC(1846)\n[ 1594.241144] sm5713_fg_get_property: psp = 0x33\n[ 1594.242013] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1594.242590] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1594.243826] sm5713_cal_avg_vbat: batt_avgvoltage = 3713\n[ 1594.244359] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1594.245136] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1594.246419] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 187 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 277\n[ 1594.247093] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1594.247125] sm5713_get_soc: \n[ 1594.247908] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1594.248191] sm5713_get_soc: read = 0x1075, soc = 164\n[ 1594.248226] sm5713_get_soc: batt_soc = 164, soc = 164\n[ 1594.250255] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0424, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1594.252842] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x8114, 0x86=0x8003, 0x87=0x8116, 0x1F=0x0064, 0x94=0x0030\n[ 1594.253144] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3714, v_avg=3713, i=-133, i_avg=-133, ocv=3734, fg_t=187, b_t=277, cycle=279, soc=164, state=0x8\n[ 1594.253179] sm5713_update_all_value : temp = 0xe96, t = 277 \n[ 1594.253211] sm5713_fg_get_scaled_capacity: scaled capacity (16.4)\n[ 1594.253260] sec_bat_get_battery_info:Vnow(3714mV),Vavg(3713mV),Inow(-133mA),Iavg(-133mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(277),Tusb(0),Tchg(290),Twpc(0)\n[ 1594.253355] sm5713_fg_get_property: psp = 0x31\n[ 1594.253398] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1594.253699] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(277)\n[ 1594.253736] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1594.253770] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1594.255120] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1594.255198] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1594.255235] sm5713_fg_get_property: psp = 0x96\n[ 1594.255269] sm5713_fg_periodic_read: skip old(1444) current(1594)\n[ 1594.255318] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1594.255401] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1594.255573] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1594.255640] sm5713_fg_get_property: psp = 0x13\n[ 1594.256166] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1594.256460] sm5713_fg_get_property: psp = 0x14\n[ 1594.846538] sm5713_fg_get_property: psp = 0x13\n[ 1594.847753] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1595.853106] sm5713_fg_get_property: psp = 0x13\n[ 1595.854322] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1596.859338] sm5713_fg_get_property: psp = 0x13\n[ 1596.860563] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1597.292869] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1597.293014] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1597.293147] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 53 52\n[ 1597.866125] sm5713_fg_get_property: psp = 0x13\n[ 1597.867458] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1598.872676] sm5713_fg_get_property: psp = 0x13\n[ 1598.873917] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1599.878927] sm5713_fg_get_property: psp = 0x13\n[ 1599.880155] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1600.885578] sm5713_fg_get_property: psp = 0x13\n[ 1600.886803] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1601.891795] sm5713_fg_get_property: psp = 0x13\n[ 1601.892600] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1602.897306] sm5713_fg_get_property: psp = 0x13\n[ 1602.898527] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1603.693018] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1603.903619] sm5713_fg_get_property: psp = 0x13\n[ 1603.904842] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1604.910232] sm5713_fg_get_property: psp = 0x13\n[ 1604.911448] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1605.916603] sm5713_fg_get_property: psp = 0x13\n[ 1605.917839] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1606.922962] sm5713_fg_get_property: psp = 0x13\n[ 1606.924173] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1607.929149] sm5713_fg_get_property: psp = 0x13\n[ 1607.930372] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1608.172652] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1608.935735] sm5713_fg_get_property: psp = 0x13\n[ 1608.936958] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1609.452811] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1609.941944] sm5713_fg_get_property: psp = 0x13\n[ 1609.942793] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1610.736016] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[ 1610.737965] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[ 1610.948052] sm5713_fg_get_property: psp = 0x13\n[ 1610.949212] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1611.961824]  5597     5.4 C/MHz    147 mW    7.9 J   38.0 I/mJ    53.6 s\n               1144: \n[ 1615.212876] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1616.077971] sm5713_fg_get_property: psp = 0x13\n[ 1616.079202] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1617.083843] sm5713_fg_get_property: psp = 0x13\n[ 1617.085069] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1618.089962] sm5713_fg_get_property: psp = 0x13\n[ 1618.091160] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1619.096377] sm5713_fg_get_property: psp = 0x13\n[ 1619.097611] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1619.692822] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1621.116104] sm5713_fg_get_property: psp = 0x13\n[ 1621.117264] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1621.612786] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1622.122251] sm5713_fg_get_property: psp = 0x13\n[ 1622.123402] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1623.128146] sm5713_fg_get_property: psp = 0x13\n[ 1623.129263] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1624.133803] sm5713_fg_get_property: psp = 0x13\n[ 1624.134930] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1624.256060] sm5713_fg_get_property: psp = 0xd\n[ 1624.257087] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1624.259541] sm5713_cal_avg_vbat: batt_avgvoltage = 3713\n[ 1624.259586] sm5713_fg_get_property: psp = 0xe\n[ 1624.259622] sm5713_fg_get_property: psp = 0xe\n[ 1624.259655] sm5713_fg_get_property: psp = 0x13\n[ 1624.260695] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1624.261152] sm5713_fg_get_property: psp = 0x14\n[ 1624.261189] sm5713_fg_get_property: psp = 0x8f\n[ 1624.261223] sm5713_fg_get_property: psp = 0x8f\n[ 1624.261269] sm5713_fg_get_property: psp = 0x21\n[ 1624.261303] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1624.262423] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(277), Temp-ADC(1880)\n[ 1624.264183] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(289), Temp-ADC(1850)\n[ 1624.264243] sm5713_fg_get_property: psp = 0x33\n[ 1624.265480] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1624.266439] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1624.268868] sm5713_cal_avg_vbat: batt_avgvoltage = 3713\n[ 1624.269908] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1624.271062] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1624.272335] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 187 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 277\n[ 1624.273039] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1624.273071] sm5713_get_soc: \n[ 1624.273837] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1624.274118] sm5713_get_soc: read = 0x1068, soc = 164\n[ 1624.274153] sm5713_get_soc: batt_soc = 164, soc = 164\n[ 1624.276141] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0458, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1624.278687] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x8121, 0x86=0x0014, 0x87=0x8126, 0x1F=0x0064, 0x94=0x0030\n[ 1624.278988] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3713, v_avg=3713, i=-141, i_avg=-136, ocv=3734, fg_t=187, b_t=277, cycle=279, soc=164, state=0x8\n[ 1624.279024] sm5713_update_all_value : temp = 0xe96, t = 277 \n[ 1624.279055] sm5713_fg_get_scaled_capacity: scaled capacity (16.4)\n[ 1624.279104] sec_bat_get_battery_info:Vnow(3713mV),Vavg(3713mV),Inow(-141mA),Iavg(-136mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(277),Tusb(0),Tchg(289),Twpc(0)\n[ 1624.279195] sm5713_fg_get_property: psp = 0x31\n[ 1624.279237] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1624.279501] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(277)\n[ 1624.279537] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1624.279571] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1624.280901] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1624.280977] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1624.281015] sm5713_fg_get_property: psp = 0x96\n[ 1624.281049] sm5713_fg_periodic_read: skip old(1444) current(1624)\n[ 1624.281097] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1624.281178] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1624.281341] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1624.281406] sm5713_fg_get_property: psp = 0x13\n[ 1624.281920] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1624.282213] sm5713_fg_get_property: psp = 0x14\n[ 1625.139577] sm5713_fg_get_property: psp = 0x13\n[ 1625.140696] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1626.145663] sm5713_fg_get_property: psp = 0x13\n[ 1626.146780] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1627.151417] sm5713_fg_get_property: psp = 0x13\n[ 1627.152043] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1627.372806] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1627.372957] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 54 53\n[ 1628.156540] sm5713_fg_get_property: psp = 0x13\n[ 1628.157664] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1629.162431] sm5713_fg_get_property: psp = 0x13\n[ 1629.163751] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1630.168529] sm5713_fg_get_property: psp = 0x13\n[ 1630.169688] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1630.572807] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1631.173629] sm5713_fg_get_property: psp = 0x13\n[ 1631.174750] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1632.179374] sm5713_fg_get_property: psp = 0x13\n[ 1632.180499] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1633.132813] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1633.185464] sm5713_fg_get_property: psp = 0x13\n[ 1633.186585] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1634.191202] sm5713_fg_get_property: psp = 0x13\n[ 1634.192063] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1635.196714] sm5713_fg_get_property: psp = 0x13\n[ 1635.197832] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1636.202597] sm5713_fg_get_property: psp = 0x13\n[ 1636.203783] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1637.208670] sm5713_fg_get_property: psp = 0x13\n[ 1637.209891] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1638.213891] sm5713_fg_get_property: psp = 0x13\n[ 1638.215042] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1639.219684] sm5713_fg_get_property: psp = 0x13\n[ 1639.220820] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1639.532801] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1640.225831] sm5713_fg_get_property: psp = 0x13\n[ 1640.226953] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1641.231583] sm5713_fg_get_property: psp = 0x13\n[ 1641.232205] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1641.452801] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1642.236677] sm5713_fg_get_property: psp = 0x13\n[ 1642.237798] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1643.242596] sm5713_fg_get_property: psp = 0x13\n[ 1643.243769] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1644.248398] sm5713_fg_get_property: psp = 0x13\n[ 1644.249519] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1645.253884] sm5713_fg_get_property: psp = 0x13\n[ 1645.255023] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1645.292836] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1646.259878] sm5713_fg_get_property: psp = 0x13\n[ 1646.261011] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1647.265853] sm5713_fg_get_property: psp = 0x13\n[ 1647.266973] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1648.271594] sm5713_fg_get_property: psp = 0x13\n[ 1648.272218] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1649.276676] sm5713_fg_get_property: psp = 0x13\n[ 1649.277805] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1650.282429] sm5713_fg_get_property: psp = 0x13\n[ 1650.283739] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1651.288389] sm5713_fg_get_property: psp = 0x13\n[ 1651.289512] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1651.692779] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1652.293810] sm5713_fg_get_property: psp = 0x13\n[ 1652.294940] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1652.332823] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1653.299576] sm5713_fg_get_property: psp = 0x13\n[ 1653.300701] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1654.281817] sm5713_fg_get_property: psp = 0xd\n[ 1654.282368] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1654.283638] sm5713_cal_avg_vbat: batt_avgvoltage = 3713\n[ 1654.283682] sm5713_fg_get_property: psp = 0xe\n[ 1654.283719] sm5713_fg_get_property: psp = 0xe\n[ 1654.283753] sm5713_fg_get_property: psp = 0x13\n[ 1654.284292] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1654.284581] sm5713_fg_get_property: psp = 0x14\n[ 1654.284618] sm5713_fg_get_property: psp = 0x8f\n[ 1654.284652] sm5713_fg_get_property: psp = 0x8f\n[ 1654.284697] sm5713_fg_get_property: psp = 0x21\n[ 1654.284732] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1654.285791] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(277), Temp-ADC(1879)\n[ 1654.286785] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(290), Temp-ADC(1843)\n[ 1654.286835] sm5713_fg_get_property: psp = 0x33\n[ 1654.287526] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1654.288015] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1654.289283] sm5713_cal_avg_vbat: batt_avgvoltage = 3713\n[ 1654.289810] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1654.290579] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1654.291850] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 188 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 277\n[ 1654.292579] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1654.292610] sm5713_get_soc: \n[ 1654.293376] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1654.293658] sm5713_get_soc: read = 0x1068, soc = 164\n[ 1654.293691] sm5713_get_soc: batt_soc = 164, soc = 164\n[ 1654.295670] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0440, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1654.298135] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x8139, 0x86=0x8001, 0x87=0x8125, 0x1F=0x0064, 0x94=0x0030\n[ 1654.298430] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3713, v_avg=3713, i=-141, i_avg=-141, ocv=3734, fg_t=188, b_t=277, cycle=279, soc=164, state=0x8\n[ 1654.298466] sm5713_update_all_value : temp = 0xe96, t = 277 \n[ 1654.298498] sm5713_fg_get_scaled_capacity: scaled capacity (16.4)\n[ 1654.298544] sec_bat_get_battery_info:Vnow(3713mV),Vavg(3713mV),Inow(-141mA),Iavg(-141mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(277),Tusb(0),Tchg(290),Twpc(0)\n[ 1654.298636] sm5713_fg_get_property: psp = 0x31\n[ 1654.298677] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1654.298937] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(277)\n[ 1654.298974] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1654.299006] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1654.300335] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1654.300413] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1654.300452] sm5713_fg_get_property: psp = 0x96\n[ 1654.305655] sm5713_fg_get_property: psp = 0x13\n[ 1654.306423] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1654.368616] [FG_ALL] 00:0000,c601,0000,000e,0000,1068,1de0,1db3,8121,12e0,0117,1da4,0319,0480,3c8a,0100,01:0010,ffff,0003,0017,0000,7003,ffff,ffff,ffff,1da8,0a0a,0103,0004,ffff,0040,0064,02:04e1,03e6,ffff,0001,00a4,0146,3800,0078,0440,00a4,070a,0048,ffff,000e,1f6b,0318,03:1f78,1f78,1f79,1f79,1f79,1f7a,1f7a,1f79,1f59,1f58,1f58,1f59,1f58,1f59,1f58,1f58,04:1f78,1f79,1f7a,1f7a,1f7a,1f79,1f79,1f7a,1f5a,1f59,1f59,1f5a,1f59,1f58,1f59,1f59,05:400f,400e,400e,400e,400e,400f,400f,400e,4014,400e,4012,400f,4012,4011,4013,4010,06:859a,90ce,29e2,0000,0000,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,8012,08:0008,8001,8002,ffff,802d,8139,8001,8125,06e2,58b0,0000,0000,0000,ffff,ffff,ffff,09:0040,a000,0000,0000,0030,0201,0100,0153,0000,0000,0000,0000,0325,0000,0000,ffff,0a:1400,1b33,1c2a,1d6c,1d86,1da2,1dbb,1ddb,1df0,1e30,1e4f,1e5d,1e7e,1ea7,1edc,1f3d,0b:1f6f,1fa0,1ff1,2050,2082,20ee,2239,2400,0000,004c,0166,044c,0733,0a00,0ce6,0fcc,\n\n[ 1654.368736] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1654.368820] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1654.368982] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1654.369053] sm5713_fg_get_property: psp = 0x13\n[ 1654.369575] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1654.369867] sm5713_fg_get_property: psp = 0x14\n[ 1655.310691] sm5713_fg_get_property: psp = 0x13\n[ 1655.311636] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1656.316256] sm5713_fg_get_property: psp = 0x13\n[ 1656.317386] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1657.322031] sm5713_fg_get_property: psp = 0x13\n[ 1657.322972] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1657.452804] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1657.452957] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 55 54\n[ 1658.327670] sm5713_fg_get_property: psp = 0x13\n[ 1658.328791] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1659.333514] sm5713_fg_get_property: psp = 0x13\n[ 1659.334645] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1660.339293] sm5713_fg_get_property: psp = 0x13\n[ 1660.340415] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1661.345551] sm5713_fg_get_property: psp = 0x13\n[ 1661.346728] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1662.351373] sm5713_fg_get_property: psp = 0x13\n[ 1662.352107] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1663.212819] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1663.212947] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1663.356628] sm5713_fg_get_property: psp = 0x13\n[ 1663.357749] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1664.362382] sm5713_fg_get_property: psp = 0x13\n[ 1664.363841] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1665.368509] sm5713_fg_get_property: psp = 0x13\n[ 1665.369627] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1666.373789] sm5713_fg_get_property: psp = 0x13\n[ 1666.374908] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1667.379556] sm5713_fg_get_property: psp = 0x13\n[ 1667.380673] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1668.385449] sm5713_fg_get_property: psp = 0x13\n[ 1668.386632] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1669.398878]  6166     5.4 C/MHz    176 mW    8.6 J   35.0 I/mJ    48.7 s\n               1248: \n[ 1669.612831] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1672.178196] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[ 1672.181637] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[ 1673.513804] sm5713_fg_get_property: psp = 0x13\n[ 1673.514969] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1674.092806] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1674.519767] sm5713_fg_get_property: psp = 0x13\n[ 1674.521007] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1675.372827] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1675.525909] sm5713_fg_get_property: psp = 0x13\n[ 1675.527070] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1676.531609] sm5713_fg_get_property: psp = 0x13\n[ 1676.532245] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1678.551892] sm5713_fg_get_property: psp = 0x13\n[ 1678.552605] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1679.557155] sm5713_fg_get_property: psp = 0x13\n[ 1679.558236] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1680.562883] sm5713_fg_get_property: psp = 0x13\n[ 1680.563999] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1681.132866] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1681.568460] sm5713_fg_get_property: psp = 0x13\n[ 1681.569510] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1682.573717] sm5713_fg_get_property: psp = 0x13\n[ 1682.574776] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1683.579219] sm5713_fg_get_property: psp = 0x13\n[ 1683.580272] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1684.369451] sm5713_fg_get_property: psp = 0xd\n[ 1684.370421] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1684.372273] sm5713_cal_avg_vbat: batt_avgvoltage = 3712\n[ 1684.372317] sm5713_fg_get_property: psp = 0xe\n[ 1684.372353] sm5713_fg_get_property: psp = 0xe\n[ 1684.372387] sm5713_fg_get_property: psp = 0x13\n[ 1684.372993] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1684.373278] sm5713_fg_get_property: psp = 0x14\n[ 1684.373315] sm5713_fg_get_property: psp = 0x8f\n[ 1684.373350] sm5713_fg_get_property: psp = 0x8f\n[ 1684.373394] sm5713_fg_get_property: psp = 0x21\n[ 1684.373427] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1684.374473] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(277), Temp-ADC(1879)\n[ 1684.375460] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(290), Temp-ADC(1845)\n[ 1684.375510] sm5713_fg_get_property: psp = 0x33\n[ 1684.376191] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1684.376680] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1684.377878] sm5713_cal_avg_vbat: batt_avgvoltage = 3711\n[ 1684.378402] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1684.379164] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1684.380419] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 187 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 277\n[ 1684.381069] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1684.381102] sm5713_get_soc: \n[ 1684.381859] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1684.382138] sm5713_get_soc: read = 0x105c, soc = 163\n[ 1684.382173] sm5713_get_soc: batt_soc = 163, soc = 163\n[ 1684.384379] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0458, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1684.386848] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x813a, 0x86=0x000d, 0x87=0x8137, 0x1F=0x0064, 0x94=0x0030\n[ 1684.387141] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3710, v_avg=3711, i=-149, i_avg=-145, ocv=3733, fg_t=187, b_t=277, cycle=279, soc=163, state=0x8\n[ 1684.387176] sm5713_update_all_value : temp = 0xe95, t = 277 \n[ 1684.387209] sm5713_fg_get_scaled_capacity: scaled capacity (16.3)\n[ 1684.387256] sec_bat_get_battery_info:Vnow(3710mV),Vavg(3712mV),Inow(-149mA),Iavg(-145mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(277),Tusb(0),Tchg(290),Twpc(0)\n[ 1684.387347] sm5713_fg_get_property: psp = 0x31\n[ 1684.387386] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1684.387646] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(277)\n[ 1684.387683] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1684.387716] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1684.389032] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1684.389110] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1684.389149] sm5713_fg_get_property: psp = 0x96\n[ 1684.389183] sm5713_fg_periodic_read: skip old(1654) current(1684)\n[ 1684.389231] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1684.389305] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1684.389459] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1684.389526] sm5713_fg_get_property: psp = 0x13\n[ 1684.390035] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1684.390322] sm5713_fg_get_property: psp = 0x14\n[ 1684.583800] sm5713_fg_get_property: psp = 0x13\n[ 1684.584888] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1685.589367] sm5713_fg_get_property: psp = 0x13\n[ 1685.590416] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1685.612818] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1686.595133] sm5713_fg_get_property: psp = 0x13\n[ 1686.596182] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1687.532783] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1687.532927] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 56 55\n[ 1687.600622] sm5713_fg_get_property: psp = 0x13\n[ 1687.601745] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1688.606237] sm5713_fg_get_property: psp = 0x13\n[ 1688.607295] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1689.611727] sm5713_fg_get_property: psp = 0x13\n[ 1689.612334] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1690.616794] sm5713_fg_get_property: psp = 0x13\n[ 1690.617900] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1691.622225] sm5713_fg_get_property: psp = 0x13\n[ 1691.623241] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1692.627707] sm5713_fg_get_property: psp = 0x13\n[ 1692.628771] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1693.292607] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1693.633336] sm5713_fg_get_property: psp = 0x13\n[ 1693.634385] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1694.638824] sm5713_fg_get_property: psp = 0x13\n[ 1694.639874] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1695.643712] sm5713_fg_get_property: psp = 0x13\n[ 1695.644764] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1696.492812] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1696.649202] sm5713_fg_get_property: psp = 0x13\n[ 1696.650254] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1697.655493] sm5713_fg_get_property: psp = 0x13\n[ 1697.656596] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1698.661026] sm5713_fg_get_property: psp = 0x13\n[ 1698.661914] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1699.666270] sm5713_fg_get_property: psp = 0x13\n[ 1699.667334] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1699.692790] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1700.671798] sm5713_fg_get_property: psp = 0x13\n[ 1700.672401] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1701.676732] sm5713_fg_get_property: psp = 0x13\n[ 1701.677783] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1702.682218] sm5713_fg_get_property: psp = 0x13\n[ 1702.683247] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1703.687908] sm5713_fg_get_property: psp = 0x13\n[ 1703.688827] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1704.693210] sm5713_fg_get_property: psp = 0x13\n[ 1704.694281] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1705.452795] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1705.698738] sm5713_fg_get_property: psp = 0x13\n[ 1705.699789] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1706.703713] sm5713_fg_get_property: psp = 0x13\n[ 1706.704769] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1707.372782] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1707.709213] sm5713_fg_get_property: psp = 0x13\n[ 1707.710264] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1708.714983] sm5713_fg_get_property: psp = 0x13\n[ 1708.716036] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1709.720465] sm5713_fg_get_property: psp = 0x13\n[ 1709.721528] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1710.726341] sm5713_fg_get_property: psp = 0x13\n[ 1710.727441] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1711.212783] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1711.731901] sm5713_fg_get_property: psp = 0x13\n[ 1711.732601] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1712.736838] sm5713_fg_get_property: psp = 0x13\n[ 1712.737899] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1713.742339] sm5713_fg_get_property: psp = 0x13\n[ 1713.743416] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1714.389915] sm5713_fg_get_property: psp = 0xd\n[ 1714.390884] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1714.392525] sm5713_cal_avg_vbat: batt_avgvoltage = 3710\n[ 1714.392570] sm5713_fg_get_property: psp = 0xe\n[ 1714.392606] sm5713_fg_get_property: psp = 0xe\n[ 1714.392640] sm5713_fg_get_property: psp = 0x13\n[ 1714.393162] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1714.393448] sm5713_fg_get_property: psp = 0x14\n[ 1714.393484] sm5713_fg_get_property: psp = 0x8f\n[ 1714.393518] sm5713_fg_get_property: psp = 0x8f\n[ 1714.393561] sm5713_fg_get_property: psp = 0x21\n[ 1714.393594] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1714.394797] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(277), Temp-ADC(1879)\n[ 1714.395794] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(292), Temp-ADC(1838)\n[ 1714.395846] sm5713_fg_get_property: psp = 0x33\n[ 1714.396533] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1714.397023] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1714.398219] sm5713_cal_avg_vbat: batt_avgvoltage = 3710\n[ 1714.398740] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1714.399501] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1714.400774] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 189 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 277\n[ 1714.401434] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1714.401465] sm5713_get_soc: \n[ 1714.402220] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1714.402574] sm5713_get_soc: read = 0x105c, soc = 163\n[ 1714.402673] sm5713_get_soc: batt_soc = 163, soc = 163\n[ 1714.404646] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0444, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1714.407083] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x8140, 0x86=0x8006, 0x87=0x813a, 0x1F=0x0064, 0x94=0x0030\n[ 1714.407377] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3711, v_avg=3710, i=-151, i_avg=-149, ocv=3733, fg_t=189, b_t=277, cycle=279, soc=163, state=0x8\n[ 1714.407412] sm5713_update_all_value : temp = 0xe95, t = 277 \n[ 1714.407445] sm5713_fg_get_scaled_capacity: scaled capacity (16.3)\n[ 1714.407492] sec_bat_get_battery_info:Vnow(3711mV),Vavg(3710mV),Inow(-151mA),Iavg(-149mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(277),Tusb(0),Tchg(292),Twpc(0)\n[ 1714.407582] sm5713_fg_get_property: psp = 0x31\n[ 1714.407622] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1714.407882] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(277)\n[ 1714.407918] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1714.407951] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1714.409266] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1714.409344] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1714.409382] sm5713_fg_get_property: psp = 0x96\n[ 1714.409416] sm5713_fg_periodic_read: skip old(1654) current(1714)\n[ 1714.409464] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1714.409543] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1714.409700] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1714.409767] sm5713_fg_get_property: psp = 0x13\n[ 1714.410280] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1714.410567] sm5713_fg_get_property: psp = 0x14\n[ 1714.747915] sm5713_fg_get_property: psp = 0x13\n[ 1714.748968] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1715.753505] sm5713_fg_get_property: psp = 0x13\n[ 1715.754555] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1716.759135] sm5713_fg_get_property: psp = 0x13\n[ 1716.760205] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1717.612637] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1717.612780] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 57 56\n[ 1717.763549] sm5713_fg_get_property: psp = 0x13\n[ 1717.764602] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1718.252784] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1718.769072] sm5713_fg_get_property: psp = 0x13\n[ 1718.770129] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1719.773714] sm5713_fg_get_property: psp = 0x13\n[ 1719.774767] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1720.779213] sm5713_fg_get_property: psp = 0x13\n[ 1720.780264] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1721.785102] sm5713_fg_get_property: psp = 0x13\n[ 1721.786159] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1722.798721]  6707     5.4 C/MHz    206 mW    9.2 J   32.5 I/mJ    44.8 s\n               1352: \n[ 1723.372837] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1726.911853] sm5713_fg_get_property: psp = 0x13\n[ 1726.912620] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1727.916917] sm5713_fg_get_property: psp = 0x13\n[ 1727.918067] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1728.922765] sm5713_fg_get_property: psp = 0x13\n[ 1728.923892] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1729.132823] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1729.132941] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1729.928461] sm5713_fg_get_property: psp = 0x13\n[ 1729.929604] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1731.948373] sm5713_fg_get_property: psp = 0x13\n[ 1731.949432] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1732.953754] sm5713_fg_get_property: psp = 0x13\n[ 1732.954844] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1733.616223] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[ 1733.617880] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[ 1733.959356] sm5713_fg_get_property: psp = 0x13\n[ 1733.960405] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1734.965371] sm5713_fg_get_property: psp = 0x13\n[ 1734.966464] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1735.532765] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1735.970908] sm5713_fg_get_property: psp = 0x13\n[ 1735.971860] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1736.976203] sm5713_fg_get_property: psp = 0x13\n[ 1736.977259] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1737.981673] sm5713_fg_get_property: psp = 0x13\n[ 1737.982278] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1738.986565] sm5713_fg_get_property: psp = 0x13\n[ 1738.987621] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1739.992043] sm5713_fg_get_property: psp = 0x13\n[ 1739.992931] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1740.652785] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1740.997412] sm5713_fg_get_property: psp = 0x13\n[ 1740.998466] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1741.292809] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1742.003042] sm5713_fg_get_property: psp = 0x13\n[ 1742.004163] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1743.008841] sm5713_fg_get_property: psp = 0x13\n[ 1743.009927] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1744.013535] sm5713_fg_get_property: psp = 0x13\n[ 1744.014585] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1744.410157] sm5713_fg_get_property: psp = 0xd\n[ 1744.411126] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1744.412613] sm5713_cal_avg_vbat: batt_avgvoltage = 3710\n[ 1744.412656] sm5713_fg_get_property: psp = 0xe\n[ 1744.412692] sm5713_fg_get_property: psp = 0xe\n[ 1744.412726] sm5713_fg_get_property: psp = 0x13\n[ 1744.413246] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1744.413531] sm5713_fg_get_property: psp = 0x14\n[ 1744.413629] sm5713_fg_get_property: psp = 0x8f\n[ 1744.413664] sm5713_fg_get_property: psp = 0x8f\n[ 1744.413709] sm5713_fg_get_property: psp = 0x21\n[ 1744.413741] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1744.414792] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(277), Temp-ADC(1880)\n[ 1744.415781] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(291), Temp-ADC(1840)\n[ 1744.415830] sm5713_fg_get_property: psp = 0x33\n[ 1744.416511] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1744.416997] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1744.418192] sm5713_cal_avg_vbat: batt_avgvoltage = 3710\n[ 1744.418713] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1744.419473] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1744.420727] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 188 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 277\n[ 1744.421375] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1744.421407] sm5713_get_soc: \n[ 1744.422162] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1744.422522] sm5713_get_soc: read = 0x105c, soc = 163\n[ 1744.422555] sm5713_get_soc: batt_soc = 163, soc = 163\n[ 1744.424513] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0448, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1744.426973] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x814d, 0x86=0x0004, 0x87=0x814c, 0x1F=0x0064, 0x94=0x0030\n[ 1744.427267] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3710, v_avg=3710, i=-160, i_avg=-154, ocv=3733, fg_t=188, b_t=277, cycle=279, soc=163, state=0x8\n[ 1744.427301] sm5713_update_all_value : temp = 0xe95, t = 277 \n[ 1744.427334] sm5713_fg_get_scaled_capacity: scaled capacity (16.3)\n[ 1744.427381] sec_bat_get_battery_info:Vnow(3710mV),Vavg(3710mV),Inow(-160mA),Iavg(-154mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(277),Tusb(0),Tchg(291),Twpc(0)\n[ 1744.427472] sm5713_fg_get_property: psp = 0x31\n[ 1744.427511] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1744.427768] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(277)\n[ 1744.427803] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1744.427836] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1744.429151] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1744.429228] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1744.429266] sm5713_fg_get_property: psp = 0x96\n[ 1744.429298] sm5713_fg_periodic_read: skip old(1654) current(1744)\n[ 1744.429347] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1744.429425] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1744.429578] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1744.429644] sm5713_fg_get_property: psp = 0x13\n[ 1744.430156] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1744.430473] sm5713_fg_get_property: psp = 0x14\n[ 1745.019029] sm5713_fg_get_property: psp = 0x13\n[ 1745.020082] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1746.023715] sm5713_fg_get_property: psp = 0x13\n[ 1746.024772] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1747.029203] sm5713_fg_get_property: psp = 0x13\n[ 1747.030277] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1747.692631] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1747.692773] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 58 57\n[ 1748.035005] sm5713_fg_get_property: psp = 0x13\n[ 1748.036055] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1749.040486] sm5713_fg_get_property: psp = 0x13\n[ 1749.041546] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1750.046115] sm5713_fg_get_property: psp = 0x13\n[ 1750.047176] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1751.051600] sm5713_fg_get_property: psp = 0x13\n[ 1751.052208] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1751.532805] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1752.056622] sm5713_fg_get_property: psp = 0x13\n[ 1752.057746] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1753.062237] sm5713_fg_get_property: psp = 0x13\n[ 1753.063367] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1753.452801] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1754.067859] sm5713_fg_get_property: psp = 0x13\n[ 1754.068912] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1755.073444] sm5713_fg_get_property: psp = 0x13\n[ 1755.074504] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1756.078936] sm5713_fg_get_property: psp = 0x13\n[ 1756.079989] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1757.083722] sm5713_fg_get_property: psp = 0x13\n[ 1757.084785] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1758.089216] sm5713_fg_get_property: psp = 0x13\n[ 1758.090267] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1759.095074] sm5713_fg_get_property: psp = 0x13\n[ 1759.096122] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1759.212763] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1760.100724] sm5713_fg_get_property: psp = 0x13\n[ 1760.101786] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1761.106126] sm5713_fg_get_property: psp = 0x13\n[ 1761.107178] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1762.111619] sm5713_fg_get_property: psp = 0x13\n[ 1762.112226] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1762.412782] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1763.116543] sm5713_fg_get_property: psp = 0x13\n[ 1763.117591] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1764.122017] sm5713_fg_get_property: psp = 0x13\n[ 1764.122831] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1765.127305] sm5713_fg_get_property: psp = 0x13\n[ 1765.128356] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1765.612769] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1766.132917] sm5713_fg_get_property: psp = 0x13\n[ 1766.134029] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1767.138477] sm5713_fg_get_property: psp = 0x13\n[ 1767.139547] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1768.143718] sm5713_fg_get_property: psp = 0x13\n[ 1768.144818] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1769.149142] sm5713_fg_get_property: psp = 0x13\n[ 1769.150270] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1770.154998] sm5713_fg_get_property: psp = 0x13\n[ 1770.156054] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1771.160507] sm5713_fg_get_property: psp = 0x13\n[ 1771.161621] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1771.372699] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1772.166140] sm5713_fg_get_property: psp = 0x13\n[ 1772.167195] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1773.179954]  7273     5.4 C/MHz    240 mW    9.9 J   30.3 I/mJ    41.3 s\n               1456: \n[ 1773.292966] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1774.430026] sm5713_fg_get_property: psp = 0xd\n[ 1774.430983] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1774.432579] sm5713_cal_avg_vbat: batt_avgvoltage = 3711\n[ 1774.432621] sm5713_fg_get_property: psp = 0xe\n[ 1774.432657] sm5713_fg_get_property: psp = 0xe\n[ 1774.432691] sm5713_fg_get_property: psp = 0x13\n[ 1774.433219] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1774.433543] sm5713_fg_get_property: psp = 0x14\n[ 1774.433581] sm5713_fg_get_property: psp = 0x8f\n[ 1774.433615] sm5713_fg_get_property: psp = 0x8f\n[ 1774.433659] sm5713_fg_get_property: psp = 0x21\n[ 1774.433692] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1774.434753] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(276), Temp-ADC(1882)\n[ 1774.436078] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(292), Temp-ADC(1837)\n[ 1774.436134] sm5713_fg_get_property: psp = 0x33\n[ 1774.436823] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1774.437313] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1774.438509] sm5713_cal_avg_vbat: batt_avgvoltage = 3712\n[ 1774.439028] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1774.439787] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1774.441038] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 189 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 276\n[ 1774.441694] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1774.441726] sm5713_get_soc: \n[ 1774.442861] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1774.443147] sm5713_get_soc: read = 0x104f, soc = 163\n[ 1774.443183] sm5713_get_soc: batt_soc = 163, soc = 163\n[ 1774.445163] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0474, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1774.447597] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80e5, 0x86=0x800f, 0x87=0x80d1, 0x1F=0x0064, 0x94=0x0030\n[ 1774.447892] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3717, v_avg=3712, i=-100, i_avg=-137, ocv=3733, fg_t=189, b_t=276, cycle=279, soc=163, state=0x8\n[ 1774.447927] sm5713_update_all_value : temp = 0xe95, t = 276 \n[ 1774.447959] sm5713_fg_get_scaled_capacity: scaled capacity (16.3)\n[ 1774.448006] sec_bat_get_battery_info:Vnow(3717mV),Vavg(3711mV),Inow(-100mA),Iavg(-144mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(276),Tusb(0),Tchg(292),Twpc(0)\n[ 1774.448096] sm5713_fg_get_property: psp = 0x31\n[ 1774.448137] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1774.448398] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(276)\n[ 1774.448434] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1774.448467] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1774.449779] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1774.449856] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1774.449894] sm5713_fg_get_property: psp = 0x96\n[ 1774.449927] sm5713_fg_periodic_read: skip old(1654) current(1774)\n[ 1774.449975] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1774.450052] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1774.450269] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1774.450336] sm5713_fg_get_property: psp = 0x13\n[ 1774.450850] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1774.451137] sm5713_fg_get_property: psp = 0x14\n[ 1777.132782] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1777.293940] sm5713_fg_get_property: psp = 0x13\n[ 1777.295048] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1777.772761] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 59 58\n[ 1778.299479] sm5713_fg_get_property: psp = 0x13\n[ 1778.300548] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1779.305257] sm5713_fg_get_property: psp = 0x13\n[ 1779.306388] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1780.310807] sm5713_fg_get_property: psp = 0x13\n[ 1780.311815] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1782.330442] sm5713_fg_get_property: psp = 0x13\n[ 1782.331492] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1783.336228] sm5713_fg_get_property: psp = 0x13\n[ 1783.337284] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1783.532665] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1784.172774] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1784.341671] sm5713_fg_get_property: psp = 0x13\n[ 1784.342270] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1785.346409] sm5713_fg_get_property: psp = 0x13\n[ 1785.347445] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1786.351773] sm5713_fg_get_property: psp = 0x13\n[ 1786.352373] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1787.356510] sm5713_fg_get_property: psp = 0x13\n[ 1787.357539] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1788.361858] sm5713_fg_get_property: psp = 0x13\n[ 1788.362559] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1789.292782] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1789.366657] sm5713_fg_get_property: psp = 0x13\n[ 1789.367678] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1790.371994] sm5713_fg_get_property: psp = 0x13\n[ 1790.372732] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1791.377205] sm5713_fg_get_property: psp = 0x13\n[ 1791.378111] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1792.382755] sm5713_fg_get_property: psp = 0x13\n[ 1792.383809] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1793.388156] sm5713_fg_get_property: psp = 0x13\n[ 1793.389188] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1794.393559] sm5713_fg_get_property: psp = 0x13\n[ 1794.394659] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1795.056022] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[ 1795.057301] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x02 5:0x00]\n[ 1795.399018] sm5713_fg_get_property: psp = 0x13\n[ 1795.400051] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1795.692808] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1795.692979] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1796.403672] sm5713_fg_get_property: psp = 0x13\n[ 1796.404700] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1797.409012] sm5713_fg_get_property: psp = 0x13\n[ 1797.410038] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1798.413727] sm5713_fg_get_property: psp = 0x13\n[ 1798.414781] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1799.419114] sm5713_fg_get_property: psp = 0x13\n[ 1799.420142] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1800.423666] sm5713_fg_get_property: psp = 0x13\n[ 1800.424777] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1801.429247] sm5713_fg_get_property: psp = 0x13\n[ 1801.430390] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1801.452789] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1802.435015] sm5713_fg_get_property: psp = 0x13\n[ 1802.436046] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1803.440357] sm5713_fg_get_property: psp = 0x13\n[ 1803.441395] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1804.445895] sm5713_fg_get_property: psp = 0x13\n[ 1804.447002] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1804.450805] sm5713_fg_get_property: psp = 0xd\n[ 1804.451718] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1804.453064] sm5713_cal_avg_vbat: batt_avgvoltage = 3712\n[ 1804.453109] sm5713_fg_get_property: psp = 0xe\n[ 1804.453145] sm5713_fg_get_property: psp = 0xe\n[ 1804.453178] sm5713_fg_get_property: psp = 0x13\n[ 1804.453701] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1804.453983] sm5713_fg_get_property: psp = 0x14\n[ 1804.454021] sm5713_fg_get_property: psp = 0x8f\n[ 1804.454055] sm5713_fg_get_property: psp = 0x8f\n[ 1804.454098] sm5713_fg_get_property: psp = 0x21\n[ 1804.454132] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1804.455171] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(276), Temp-ADC(1883)\n[ 1804.456140] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(292), Temp-ADC(1835)\n[ 1804.456189] sm5713_fg_get_property: psp = 0x33\n[ 1804.456878] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1804.457365] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1804.458558] sm5713_cal_avg_vbat: batt_avgvoltage = 3712\n[ 1804.459077] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1804.459835] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1804.461091] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 189 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 276\n[ 1804.461740] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1804.461772] sm5713_get_soc: \n[ 1804.462589] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x1b , return FALSE NO init need\n[ 1804.462869] sm5713_get_soc: read = 0x104f, soc = 163\n[ 1804.462903] sm5713_get_soc: batt_soc = 163, soc = 163\n[ 1804.464879] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0450, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1804.467336] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x8168, 0x86=0x8004, 0x87=0x815f, 0x1F=0x0064, 0x94=0x0030\n[ 1804.467629] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3708, v_avg=3712, i=-168, i_avg=-134, ocv=3733, fg_t=189, b_t=276, cycle=279, soc=163, state=0x8\n[ 1804.467664] sm5713_update_all_value : temp = 0xe95, t = 276 \n[ 1804.467697] sm5713_fg_get_scaled_capacity: scaled capacity (16.3)\n[ 1804.467743] sec_bat_get_battery_info:Vnow(3708mV),Vavg(3712mV),Inow(-168mA),Iavg(-134mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(276),Tusb(0),Tchg(292),Twpc(0)\n[ 1804.467832] sm5713_fg_get_property: psp = 0x31\n[ 1804.467872] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1804.468131] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(276)\n[ 1804.468167] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1804.468199] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1804.469511] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1804.469589] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1804.469626] sm5713_fg_get_property: psp = 0x96\n[ 1804.469659] sm5713_fg_periodic_read: skip old(1654) current(1804)\n[ 1804.469707] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1804.469781] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1804.469932] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1804.469999] sm5713_fg_get_property: psp = 0x13\n[ 1804.470513] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1804.470798] sm5713_fg_get_property: psp = 0x14\n[ 1805.451319] sm5713_fg_get_property: psp = 0x13\n[ 1805.451918] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1806.456187] sm5713_fg_get_property: psp = 0x13\n[ 1806.457213] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1806.572834] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1807.212755] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1807.461556] sm5713_fg_get_property: psp = 0x13\n[ 1807.462157] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1807.852757] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 60 59\n[ 1808.466352] sm5713_fg_get_property: psp = 0x13\n[ 1808.467384] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1809.471702] sm5713_fg_get_property: psp = 0x13\n[ 1809.472297] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1810.476573] sm5713_fg_get_property: psp = 0x13\n[ 1810.477574] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1811.481822] sm5713_fg_get_property: psp = 0x13\n[ 1811.482414] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1812.486621] sm5713_fg_get_property: psp = 0x13\n[ 1812.487719] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1813.492066] sm5713_fg_get_property: psp = 0x13\n[ 1813.493056] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1813.612766] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1814.497406] sm5713_fg_get_property: psp = 0x13\n[ 1814.498516] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1815.502972] sm5713_fg_get_property: psp = 0x13\n[ 1815.504069] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1816.508405] sm5713_fg_get_property: psp = 0x13\n[ 1816.509514] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1817.452774] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1817.513671] sm5713_fg_get_property: psp = 0x13\n[ 1817.514701] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1818.519018] sm5713_fg_get_property: psp = 0x13\n[ 1818.520128] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1819.372777] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1819.523664] sm5713_fg_get_property: psp = 0x13\n[ 1819.524754] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1820.536806]  7833     5.4 C/MHz    281 mW   10.8 J   27.9 I/mJ    38.3 s\n               1508: \n[ 1824.647566] sm5713_fg_get_property: psp = 0x13\n[ 1824.648641] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1825.132780] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1825.653085] sm5713_fg_get_property: psp = 0x13\n[ 1825.654167] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1826.658474] sm5713_fg_get_property: psp = 0x13\n[ 1826.659549] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1827.663654] sm5713_fg_get_property: psp = 0x13\n[ 1827.664728] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1828.332980] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1829.683077] sm5713_fg_get_property: psp = 0x13\n[ 1829.684074] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1830.688668] sm5713_fg_get_property: psp = 0x13\n[ 1830.689702] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1831.532755] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1831.693633] sm5713_fg_get_property: psp = 0x13\n[ 1831.694637] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1832.698872] sm5713_fg_get_property: psp = 0x13\n[ 1832.699873] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1833.703626] sm5713_fg_get_property: psp = 0x13\n[ 1833.704622] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1834.470382] sm5713_fg_get_property: psp = 0xd\n[ 1834.471311] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1834.472811] sm5713_cal_avg_vbat: batt_avgvoltage = 3709\n[ 1834.472855] sm5713_fg_get_property: psp = 0xe\n[ 1834.472891] sm5713_fg_get_property: psp = 0xe\n[ 1834.472923] sm5713_fg_get_property: psp = 0x13\n[ 1834.473450] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1834.473741] sm5713_fg_get_property: psp = 0x14\n[ 1834.473778] sm5713_fg_get_property: psp = 0x8f\n[ 1834.473812] sm5713_fg_get_property: psp = 0x8f\n[ 1834.473921] sm5713_fg_get_property: psp = 0x21\n[ 1834.473955] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1834.475009] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(276), Temp-ADC(1885)\n[ 1834.476009] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(291), Temp-ADC(1840)\n[ 1834.476058] sm5713_fg_get_property: psp = 0x33\n[ 1834.476746] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1834.477238] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1834.478442] sm5713_cal_avg_vbat: batt_avgvoltage = 3708\n[ 1834.478968] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1834.479732] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1834.480999] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 189 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 276\n[ 1834.481654] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1834.481686] sm5713_get_soc: \n[ 1834.482527] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1834.482808] sm5713_get_soc: read = 0x1043, soc = 162\n[ 1834.482842] sm5713_get_soc: batt_soc = 162, soc = 162\n[ 1834.484816] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0450, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1834.487270] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x8168, 0x86=0x0006, 0x87=0x816f, 0x1F=0x0064, 0x94=0x0030\n[ 1834.487568] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3707, v_avg=3708, i=-176, i_avg=-171, ocv=3733, fg_t=189, b_t=276, cycle=279, soc=162, state=0x8\n[ 1834.487602] sm5713_update_all_value : temp = 0xe95, t = 276 \n[ 1834.487635] sm5713_fg_get_scaled_capacity: scaled capacity (16.2)\n[ 1834.487682] sec_bat_get_battery_info:Vnow(3707mV),Vavg(3709mV),Inow(-176mA),Iavg(-171mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(276),Tusb(0),Tchg(291),Twpc(0)\n[ 1834.487771] sm5713_fg_get_property: psp = 0x31\n[ 1834.487812] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1834.488073] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(276)\n[ 1834.488109] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1834.488142] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1834.489453] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1834.489531] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1834.489570] sm5713_fg_get_property: psp = 0x96\n[ 1834.489603] sm5713_fg_periodic_read: skip old(1654) current(1834)\n[ 1834.489650] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1834.489725] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1834.489877] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1834.489943] sm5713_fg_get_property: psp = 0x13\n[ 1834.490446] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1834.490758] sm5713_fg_get_property: psp = 0x14\n[ 1834.708887] sm5713_fg_get_property: psp = 0x13\n[ 1834.709937] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1835.713477] sm5713_fg_get_property: psp = 0x13\n[ 1835.714481] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1836.718742] sm5713_fg_get_property: psp = 0x13\n[ 1836.719820] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1837.292767] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1837.723630] sm5713_fg_get_property: psp = 0x13\n[ 1837.724697] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1837.932748] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 61 60\n[ 1838.728938] sm5713_fg_get_property: psp = 0x13\n[ 1838.730010] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1839.212831] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1839.733718] sm5713_fg_get_property: psp = 0x13\n[ 1839.734744] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1840.738991] sm5713_fg_get_property: psp = 0x13\n[ 1840.740065] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1841.743631] sm5713_fg_get_property: psp = 0x13\n[ 1841.744638] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1842.748896] sm5713_fg_get_property: psp = 0x13\n[ 1842.749900] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1843.692776] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1843.753631] sm5713_fg_get_property: psp = 0x13\n[ 1843.754703] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1844.759059] sm5713_fg_get_property: psp = 0x13\n[ 1844.760197] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1845.763727] sm5713_fg_get_property: psp = 0x13\n[ 1845.764758] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1846.768861] sm5713_fg_get_property: psp = 0x13\n[ 1846.769931] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1847.773624] sm5713_fg_get_property: psp = 0x13\n[ 1847.774631] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1848.778872] sm5713_fg_get_property: psp = 0x13\n[ 1848.779937] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1849.452749] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1849.783632] sm5713_fg_get_property: psp = 0x13\n[ 1849.784698] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1850.092783] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1850.788937] sm5713_fg_get_property: psp = 0x13\n[ 1850.790007] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1851.793631] sm5713_fg_get_property: psp = 0x13\n[ 1851.794696] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1852.798920] sm5713_fg_get_property: psp = 0x13\n[ 1852.799920] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1853.803634] sm5713_fg_get_property: psp = 0x13\n[ 1853.804635] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1854.808864] sm5713_fg_get_property: psp = 0x13\n[ 1854.809866] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1855.212750] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1855.813631] sm5713_fg_get_property: psp = 0x13\n[ 1855.814639] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1856.496281] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[ 1856.497832] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x02 5:0x00]\n[ 1856.818993] sm5713_fg_get_property: psp = 0x13\n[ 1856.820011] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1857.823676] sm5713_fg_get_property: psp = 0x13\n[ 1857.824732] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1858.828975] sm5713_fg_get_property: psp = 0x13\n[ 1858.829975] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1859.833631] sm5713_fg_get_property: psp = 0x13\n[ 1859.834643] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1860.838905] sm5713_fg_get_property: psp = 0x13\n[ 1860.839899] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1861.612822] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1861.612929] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1861.843639] sm5713_fg_get_property: psp = 0x13\n[ 1861.844707] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1862.848943] sm5713_fg_get_property: psp = 0x13\n[ 1862.849945] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1863.853632] sm5713_fg_get_property: psp = 0x13\n[ 1863.854711] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1864.490324] sm5713_fg_get_property: psp = 0xd\n[ 1864.491257] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1864.492766] sm5713_cal_avg_vbat: batt_avgvoltage = 3707\n[ 1864.492810] sm5713_fg_get_property: psp = 0xe\n[ 1864.492845] sm5713_fg_get_property: psp = 0xe\n[ 1864.492877] sm5713_fg_get_property: psp = 0x13\n[ 1864.493400] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1864.493688] sm5713_fg_get_property: psp = 0x14\n[ 1864.493725] sm5713_fg_get_property: psp = 0x8f\n[ 1864.493759] sm5713_fg_get_property: psp = 0x8f\n[ 1864.493802] sm5713_fg_get_property: psp = 0x21\n[ 1864.493835] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1864.494887] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(276), Temp-ADC(1885)\n[ 1864.495889] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(294), Temp-ADC(1829)\n[ 1864.495939] sm5713_fg_get_property: psp = 0x33\n[ 1864.496690] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1864.497181] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1864.498385] sm5713_cal_avg_vbat: batt_avgvoltage = 3706\n[ 1864.498914] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1864.499677] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1864.500950] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 191 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 276\n[ 1864.501607] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1864.501638] sm5713_get_soc: \n[ 1864.502403] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1864.502764] sm5713_get_soc: read = 0x1036, soc = 162\n[ 1864.502798] sm5713_get_soc: batt_soc = 162, soc = 162\n[ 1864.504782] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0458, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1864.507247] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x816d, 0x86=0x0000, 0x87=0x8174, 0x1F=0x0064, 0x94=0x0030\n[ 1864.507544] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3706, v_avg=3706, i=-179, i_avg=-176, ocv=3733, fg_t=191, b_t=276, cycle=279, soc=162, state=0x8\n[ 1864.507579] sm5713_update_all_value : temp = 0xe95, t = 276 \n[ 1864.507610] sm5713_fg_get_scaled_capacity: scaled capacity (16.2)\n[ 1864.507658] sec_bat_get_battery_info:Vnow(3706mV),Vavg(3707mV),Inow(-179mA),Iavg(-176mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(276),Tusb(0),Tchg(294),Twpc(0)\n[ 1864.507746] sm5713_fg_get_property: psp = 0x31\n[ 1864.507785] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1864.508047] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(276)\n[ 1864.508083] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1864.508116] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1864.509427] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1864.509505] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1864.509543] sm5713_fg_get_property: psp = 0x96\n[ 1864.574734] [FG_ALL] 00:0000,c601,0000,000e,0000,1036,1dde,1da7,816f,1320,0117,1d91,0319,0480,3c8a,0100,01:0010,ffff,0003,0017,0000,7003,ffff,ffff,ffff,1d96,0a0a,0103,0004,ffff,0040,0064,02:04e1,03e6,ffff,0001,00a4,0146,3800,0078,0458,00a4,060a,0048,ffff,000e,1f6b,0318,03:1f78,1f78,1f79,1f79,1f79,1f7a,1f7a,1f79,1f59,1f58,1f58,1f59,1f58,1f59,1f58,1f58,04:1f78,1f79,1f7a,1f7a,1f7a,1f79,1f79,1f7a,1f5a,1f59,1f59,1f5a,1f59,1f58,1f59,1f59,05:400f,400e,400e,400e,400e,400f,400f,400e,4014,400e,4012,400f,4012,4011,4013,4010,06:859a,90db,29e2,0000,0000,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,8012,08:0008,8003,8002,ffff,8037,816d,0000,8174,06cf,58a0,0000,0000,0000,ffff,ffff,ffff,09:0040,a000,0000,0000,0030,0201,0100,0153,0000,0000,0000,0000,0325,0000,0000,ffff,0a:1400,1b33,1c2a,1d6c,1d86,1da2,1dbb,1ddb,1df0,1e30,1e4f,1e5d,1e7e,1ea7,1edc,1f3d,0b:1f6f,1fa0,1ff1,2050,2082,20ee,2239,2400,0000,004c,0166,044c,0733,0a00,0ce6,0fcc,\n\n[ 1864.574833] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1864.574910] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1864.575060] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1864.575126] sm5713_fg_get_property: psp = 0x13\n[ 1864.575635] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1864.575922] sm5713_fg_get_property: psp = 0x14\n[ 1864.858958] sm5713_fg_get_property: psp = 0x13\n[ 1864.859956] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1865.870587]  8123     5.4 C/MHz    306 mW   11.3 J   26.5 I/mJ    36.9 s\n               1664: \n[ 1867.372814] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1868.012745] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 62 61\n[ 1869.983161] sm5713_fg_get_property: psp = 0x13\n[ 1869.984231] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1870.988555] sm5713_fg_get_property: psp = 0x13\n[ 1870.989627] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1871.993646] sm5713_fg_get_property: psp = 0x13\n[ 1871.994729] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1872.492800] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1872.999058] sm5713_fg_get_property: psp = 0x13\n[ 1873.000110] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1873.132779] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1875.016728] sm5713_fg_get_property: psp = 0x13\n[ 1875.017788] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1876.022248] sm5713_fg_get_property: psp = 0x13\n[ 1876.023214] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1877.027513] sm5713_fg_get_property: psp = 0x13\n[ 1877.028582] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1878.032938] sm5713_fg_get_property: psp = 0x13\n[ 1878.033998] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1879.038246] sm5713_fg_get_property: psp = 0x13\n[ 1879.039316] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1879.532766] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1880.043595] sm5713_fg_get_property: psp = 0x13\n[ 1880.044663] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1881.048897] sm5713_fg_get_property: psp = 0x13\n[ 1881.049900] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1882.053709] sm5713_fg_get_property: psp = 0x13\n[ 1882.054733] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1883.058962] sm5713_fg_get_property: psp = 0x13\n[ 1883.060027] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1883.372769] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1884.063713] sm5713_fg_get_property: psp = 0x13\n[ 1884.064749] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1885.069135] sm5713_fg_get_property: psp = 0x13\n[ 1885.070201] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1885.292753] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1886.073629] sm5713_fg_get_property: psp = 0x13\n[ 1886.074580] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1887.078725] sm5713_fg_get_property: psp = 0x13\n[ 1887.079773] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1888.083630] sm5713_fg_get_property: psp = 0x13\n[ 1888.084627] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1889.088868] sm5713_fg_get_property: psp = 0x13\n[ 1889.089939] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1890.093839] sm5713_fg_get_property: psp = 0x13\n[ 1890.094936] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1891.099200] sm5713_fg_get_property: psp = 0x13\n[ 1891.100261] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1891.692753] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1892.103635] sm5713_fg_get_property: psp = 0x13\n[ 1892.104707] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1893.108946] sm5713_fg_get_property: psp = 0x13\n[ 1893.110018] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1894.113623] sm5713_fg_get_property: psp = 0x13\n[ 1894.114635] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1894.252793] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1894.575503] sm5713_fg_get_property: psp = 0xd\n[ 1894.576433] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1894.578673] sm5713_cal_avg_vbat: batt_avgvoltage = 3705\n[ 1894.578716] sm5713_fg_get_property: psp = 0xe\n[ 1894.578752] sm5713_fg_get_property: psp = 0xe\n[ 1894.578786] sm5713_fg_get_property: psp = 0x13\n[ 1894.579738] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1894.580240] sm5713_fg_get_property: psp = 0x14\n[ 1894.580278] sm5713_fg_get_property: psp = 0x8f\n[ 1894.580312] sm5713_fg_get_property: psp = 0x8f\n[ 1894.580355] sm5713_fg_get_property: psp = 0x21\n[ 1894.580389] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1894.581986] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(275), Temp-ADC(1887)\n[ 1894.582977] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(295), Temp-ADC(1823)\n[ 1894.583032] sm5713_fg_get_property: psp = 0x33\n[ 1894.584171] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1894.585052] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1894.587291] sm5713_cal_avg_vbat: batt_avgvoltage = 3704\n[ 1894.588306] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1894.589665] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1894.591272] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 192 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 275\n[ 1894.591930] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1894.591962] sm5713_get_soc: \n[ 1894.592901] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1894.593183] sm5713_get_soc: read = 0x1036, soc = 162\n[ 1894.593217] sm5713_get_soc: batt_soc = 162, soc = 162\n[ 1894.595187] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x045c, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1894.597648] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x819f, 0x86=0x8007, 0x87=0x819f, 0x1F=0x0064, 0x94=0x0030\n[ 1894.597944] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3703, v_avg=3704, i=-199, i_avg=-189, ocv=3733, fg_t=192, b_t=275, cycle=279, soc=162, state=0x8\n[ 1894.597979] sm5713_update_all_value : temp = 0xe95, t = 275 \n[ 1894.598010] sm5713_fg_get_scaled_capacity: scaled capacity (16.2)\n[ 1894.598057] sec_bat_get_battery_info:Vnow(3703mV),Vavg(3705mV),Inow(-199mA),Iavg(-189mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(275),Tusb(0),Tchg(295),Twpc(0)\n[ 1894.598147] sm5713_fg_get_property: psp = 0x31\n[ 1894.598186] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1894.598447] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(275)\n[ 1894.598483] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1894.598515] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1894.599826] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1894.599904] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1894.599942] sm5713_fg_get_property: psp = 0x96\n[ 1894.599976] sm5713_fg_periodic_read: skip old(1864) current(1894)\n[ 1894.600023] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1894.600099] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1894.600248] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1894.600314] sm5713_fg_get_property: psp = 0x13\n[ 1894.600821] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1894.601108] sm5713_fg_get_property: psp = 0x14\n[ 1895.118885] sm5713_fg_get_property: psp = 0x13\n[ 1895.119949] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1896.123625] sm5713_fg_get_property: psp = 0x13\n[ 1896.124696] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1897.128918] sm5713_fg_get_property: psp = 0x13\n[ 1897.129919] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1897.452802] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1898.092753] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 63 62\n[ 1898.133630] sm5713_fg_get_property: psp = 0x13\n[ 1898.134654] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1899.139002] sm5713_fg_get_property: psp = 0x13\n[ 1899.140045] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1900.143478] sm5713_fg_get_property: psp = 0x13\n[ 1900.144550] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1901.148789] sm5713_fg_get_property: psp = 0x13\n[ 1901.149800] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1902.153615] sm5713_fg_get_property: psp = 0x13\n[ 1902.154616] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1903.158846] sm5713_fg_get_property: psp = 0x13\n[ 1903.159914] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1903.212789] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1904.163641] sm5713_fg_get_property: psp = 0x13\n[ 1904.164712] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1905.132797] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1905.168948] sm5713_fg_get_property: psp = 0x13\n[ 1905.170014] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1906.173623] sm5713_fg_get_property: psp = 0x13\n[ 1906.174692] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1907.178926] sm5713_fg_get_property: psp = 0x13\n[ 1907.180003] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1908.190376]  8948     5.4 C/MHz    393 mW   13.2 J   22.8 I/mJ    33.5 s\n               1768: \n[ 1909.612794] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1912.302876] sm5713_fg_get_property: psp = 0x13\n[ 1912.303969] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1913.308298] sm5713_fg_get_property: psp = 0x13\n[ 1913.309381] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1914.313656] sm5713_fg_get_property: psp = 0x13\n[ 1914.314740] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1915.319046] sm5713_fg_get_property: psp = 0x13\n[ 1915.320096] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1915.372763] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1916.652774] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1917.337640] sm5713_fg_get_property: psp = 0x13\n[ 1917.338702] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1917.935587] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[ 1917.937194] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[ 1918.343373] sm5713_fg_get_property: psp = 0x13\n[ 1918.344397] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1919.348690] sm5713_fg_get_property: psp = 0x13\n[ 1919.349765] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1920.353633] sm5713_fg_get_property: psp = 0x13\n[ 1920.354632] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1921.132626] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1921.358880] sm5713_fg_get_property: psp = 0x13\n[ 1921.359948] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1922.363624] sm5713_fg_get_property: psp = 0x13\n[ 1922.364630] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1923.368864] sm5713_fg_get_property: psp = 0x13\n[ 1923.369945] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1924.373634] sm5713_fg_get_property: psp = 0x13\n[ 1924.374704] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1924.600693] sm5713_fg_get_property: psp = 0xd\n[ 1924.601611] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1924.602851] sm5713_cal_avg_vbat: batt_avgvoltage = 3702\n[ 1924.602895] sm5713_fg_get_property: psp = 0xe\n[ 1924.602931] sm5713_fg_get_property: psp = 0xe\n[ 1924.602965] sm5713_fg_get_property: psp = 0x13\n[ 1924.603482] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1924.603766] sm5713_fg_get_property: psp = 0x14\n[ 1924.603803] sm5713_fg_get_property: psp = 0x8f\n[ 1924.603837] sm5713_fg_get_property: psp = 0x8f\n[ 1924.603880] sm5713_fg_get_property: psp = 0x21\n[ 1924.603913] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1924.604950] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(275), Temp-ADC(1887)\n[ 1924.605933] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(295), Temp-ADC(1824)\n[ 1924.605983] sm5713_fg_get_property: psp = 0x33\n[ 1924.606659] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1924.607145] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1924.608350] sm5713_cal_avg_vbat: batt_avgvoltage = 3701\n[ 1924.608867] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1924.609629] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1924.610899] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 191 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 275\n[ 1924.611610] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1924.611642] sm5713_get_soc: \n[ 1924.612390] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1924.612748] sm5713_get_soc: read = 0x102a, soc = 161\n[ 1924.612783] sm5713_get_soc: batt_soc = 161, soc = 161\n[ 1924.614726] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0464, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1924.617154] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x81df, 0x86=0x8004, 0x87=0x81cb, 0x1F=0x0064, 0x94=0x0030\n[ 1924.617449] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3700, v_avg=3701, i=-221, i_avg=-209, ocv=3733, fg_t=191, b_t=275, cycle=279, soc=161, state=0x8\n[ 1924.617484] sm5713_update_all_value : temp = 0xe95, t = 275 \n[ 1924.617516] sm5713_fg_get_scaled_capacity: scaled capacity (16.1)\n[ 1924.617562] sec_bat_get_battery_info:Vnow(3700mV),Vavg(3702mV),Inow(-221mA),Iavg(-209mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(275),Tusb(0),Tchg(295),Twpc(0)\n[ 1924.617651] sm5713_fg_get_property: psp = 0x31\n[ 1924.617690] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1924.617949] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(275)\n[ 1924.617985] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1924.618018] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1924.619325] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1924.619401] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1924.619438] sm5713_fg_get_property: psp = 0x96\n[ 1924.619471] sm5713_fg_periodic_read: skip old(1864) current(1924)\n[ 1924.619518] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1924.619593] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1924.619742] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1924.619809] sm5713_fg_get_property: psp = 0x13\n[ 1924.620319] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1924.620604] sm5713_fg_get_property: psp = 0x14\n[ 1925.379049] sm5713_fg_get_property: psp = 0x13\n[ 1925.380120] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1926.383629] sm5713_fg_get_property: psp = 0x13\n[ 1926.384587] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1927.388674] sm5713_fg_get_property: psp = 0x13\n[ 1927.389751] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1927.532811] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1927.532917] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1928.172779] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 64 63\n[ 1928.393713] sm5713_fg_get_property: psp = 0x13\n[ 1928.394728] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1929.398941] sm5713_fg_get_property: psp = 0x13\n[ 1929.400011] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1930.403624] sm5713_fg_get_property: psp = 0x13\n[ 1930.404632] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1931.408851] sm5713_fg_get_property: psp = 0x13\n[ 1931.409919] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1932.413626] sm5713_fg_get_property: psp = 0x13\n[ 1932.414619] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1933.292606] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1933.418849] sm5713_fg_get_property: psp = 0x13\n[ 1933.419920] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1934.423645] sm5713_fg_get_property: psp = 0x13\n[ 1934.424712] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1935.428924] sm5713_fg_get_property: psp = 0x13\n[ 1935.429995] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1936.433628] sm5713_fg_get_property: psp = 0x13\n[ 1936.434700] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1937.439129] sm5713_fg_get_property: psp = 0x13\n[ 1937.440157] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1938.412771] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1938.443583] sm5713_fg_get_property: psp = 0x13\n[ 1938.444629] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1939.448871] sm5713_fg_get_property: psp = 0x13\n[ 1939.449942] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1939.692825] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1940.453634] sm5713_fg_get_property: psp = 0x13\n[ 1940.454719] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1941.458934] sm5713_fg_get_property: psp = 0x13\n[ 1941.459938] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1942.463621] sm5713_fg_get_property: psp = 0x13\n[ 1942.464688] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1943.468915] sm5713_fg_get_property: psp = 0x13\n[ 1943.469983] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1944.473633] sm5713_fg_get_property: psp = 0x13\n[ 1944.474710] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1945.452754] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1945.478951] sm5713_fg_get_property: psp = 0x13\n[ 1945.480016] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1946.483623] sm5713_fg_get_property: psp = 0x13\n[ 1946.484690] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1947.489069] sm5713_fg_get_property: psp = 0x13\n[ 1947.490102] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1948.500124]  9508     5.4 C/MHz    465 mW   14.7 J   20.5 I/mJ    31.6 s\n               1898: \n[ 1949.292807] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1951.212770] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1952.613355] sm5713_fg_get_property: psp = 0x13\n[ 1952.614419] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1953.618682] sm5713_fg_get_property: psp = 0x13\n[ 1953.619729] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1954.620187] sm5713_fg_get_property: psp = 0xd\n[ 1954.621101] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1954.622672] sm5713_cal_avg_vbat: batt_avgvoltage = 3703\n[ 1954.622715] sm5713_fg_get_property: psp = 0xe\n[ 1954.622752] sm5713_fg_get_property: psp = 0xe\n[ 1954.622785] sm5713_fg_get_property: psp = 0x13\n[ 1954.623323] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1954.623618] sm5713_fg_get_property: psp = 0x14\n[ 1954.623655] sm5713_fg_get_property: psp = 0x8f\n[ 1954.623689] sm5713_fg_get_property: psp = 0x8f\n[ 1954.623733] sm5713_fg_get_property: psp = 0x21\n[ 1954.623766] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1954.624741] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(275), Temp-ADC(1887)\n[ 1954.625697] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(295), Temp-ADC(1821)\n[ 1954.625756] sm5713_fg_get_property: psp = 0x33\n[ 1954.626480] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1954.626678] sm5713_fg_get_property: psp = 0x13\n[ 1954.627075] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1954.628510] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1954.628991] sm5713_cal_avg_vbat: batt_avgvoltage = 3704\n[ 1954.629851] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1954.630637] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1954.631936] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 194 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 275\n[ 1954.632710] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1954.632745] sm5713_get_soc: \n[ 1954.633547] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1954.633834] sm5713_get_soc: read = 0x102a, soc = 161\n[ 1954.633870] sm5713_get_soc: batt_soc = 161, soc = 161\n[ 1954.635924] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x04ac, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1954.638466] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x80fb, 0x86=0x8014, 0x87=0x80fc, 0x1F=0x0064, 0x94=0x0030\n[ 1954.638769] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3712, v_avg=3704, i=-121, i_avg=-172, ocv=3733, fg_t=194, b_t=275, cycle=279, soc=161, state=0x8\n[ 1954.638804] sm5713_update_all_value : temp = 0xe95, t = 275 \n[ 1954.638836] sm5713_fg_get_scaled_capacity: scaled capacity (16.1)\n[ 1954.638885] sec_bat_get_battery_info:Vnow(3712mV),Vavg(3703mV),Inow(-121mA),Iavg(-176mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(275),Tusb(0),Tchg(295),Twpc(0)\n[ 1954.638979] sm5713_fg_get_property: psp = 0x31\n[ 1954.639019] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1954.639284] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(275)\n[ 1954.639319] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1954.639352] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1954.640659] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1954.640736] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1954.640774] sm5713_fg_get_property: psp = 0x96\n[ 1954.640807] sm5713_fg_periodic_read: skip old(1864) current(1954)\n[ 1954.640855] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1954.640935] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1954.641116] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1954.641183] sm5713_fg_get_property: psp = 0x13\n[ 1954.641692] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1954.641977] sm5713_fg_get_property: psp = 0x14\n[ 1955.639445] sm5713_fg_get_property: psp = 0x13\n[ 1955.640451] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1957.612751] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1957.659091] sm5713_fg_get_property: psp = 0x13\n[ 1957.660126] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1958.252756] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 65 64\n[ 1958.664926] sm5713_fg_get_property: psp = 0x13\n[ 1958.665958] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1959.670199] sm5713_fg_get_property: psp = 0x13\n[ 1959.671215] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1960.172776] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1960.675707] sm5713_fg_get_property: psp = 0x13\n[ 1960.676791] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1961.680995] sm5713_fg_get_property: psp = 0x13\n[ 1961.681864] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1962.685979] sm5713_fg_get_property: psp = 0x13\n[ 1962.687061] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1963.372761] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1963.691262] sm5713_fg_get_property: psp = 0x13\n[ 1963.691980] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1964.696097] sm5713_fg_get_property: psp = 0x13\n[ 1964.697180] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1965.701388] sm5713_fg_get_property: psp = 0x13\n[ 1965.702015] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1966.706262] sm5713_fg_get_property: psp = 0x13\n[ 1966.707344] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1967.711693] sm5713_fg_get_property: psp = 0x13\n[ 1967.712324] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1968.716453] sm5713_fg_get_property: psp = 0x13\n[ 1968.717445] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1969.133046] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1969.721619] sm5713_fg_get_property: psp = 0x13\n[ 1969.722248] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1970.726153] sm5713_fg_get_property: psp = 0x13\n[ 1970.727236] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1971.692770] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1971.731430] sm5713_fg_get_property: psp = 0x13\n[ 1971.732060] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1972.736162] sm5713_fg_get_property: psp = 0x13\n[ 1972.737242] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1973.741473] sm5713_fg_get_property: psp = 0x13\n[ 1973.742102] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1974.746197] sm5713_fg_get_property: psp = 0x13\n[ 1974.747278] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1975.532756] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1975.751473] sm5713_fg_get_property: psp = 0x13\n[ 1975.752089] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1976.756197] sm5713_fg_get_property: psp = 0x13\n[ 1976.757277] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1977.761465] sm5713_fg_get_property: psp = 0x13\n[ 1977.762097] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1978.766203] sm5713_fg_get_property: psp = 0x13\n[ 1978.767225] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1979.377858] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[ 1979.381113] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[ 1979.771464] sm5713_fg_get_property: psp = 0x13\n[ 1979.772097] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1980.776194] sm5713_fg_get_property: psp = 0x13\n[ 1980.777279] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1981.292754] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1981.781635] sm5713_fg_get_property: psp = 0x13\n[ 1981.782269] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1982.572770] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1982.786427] sm5713_fg_get_property: psp = 0x13\n[ 1982.787406] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1983.791679] sm5713_fg_get_property: psp = 0x13\n[ 1983.792321] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1984.641252] sm5713_fg_get_property: psp = 0xd\n[ 1984.641873] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1984.643141] sm5713_cal_avg_vbat: batt_avgvoltage = 3703\n[ 1984.643183] sm5713_fg_get_property: psp = 0xe\n[ 1984.643219] sm5713_fg_get_property: psp = 0xe\n[ 1984.643253] sm5713_fg_get_property: psp = 0x13\n[ 1984.643776] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1984.644059] sm5713_fg_get_property: psp = 0x14\n[ 1984.644096] sm5713_fg_get_property: psp = 0x8f\n[ 1984.644132] sm5713_fg_get_property: psp = 0x8f\n[ 1984.644238] sm5713_fg_get_property: psp = 0x21\n[ 1984.644272] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 1984.645308] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(275), Temp-ADC(1889)\n[ 1984.646296] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(302), Temp-ADC(1793)\n[ 1984.646345] sm5713_fg_get_property: psp = 0x33\n[ 1984.647018] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 1984.647499] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 1984.648682] sm5713_cal_avg_vbat: batt_avgvoltage = 3703\n[ 1984.649195] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1984.649946] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 1984.651198] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 198 ,p_curr_cal = 0x7e, n_curr_cal = 0x87, batt_temp = 275\n[ 1984.651844] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7e, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877e\n[ 1984.651876] sm5713_get_soc: \n[ 1984.652648] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 1984.652924] sm5713_get_soc: read = 0x101d, soc = 161\n[ 1984.652959] sm5713_get_soc: batt_soc = 161, soc = 161\n[ 1984.654896] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x046c, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 1984.657315] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x821a, 0x86=0x8001, 0x87=0x8224, 0x1F=0x0064, 0x94=0x0030\n[ 1984.657605] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3694, v_avg=3703, i=-264, i_avg=-191, ocv=3732, fg_t=198, b_t=275, cycle=279, soc=161, state=0x8\n[ 1984.657641] sm5713_update_all_value : temp = 0xe94, t = 275 \n[ 1984.657673] sm5713_fg_get_scaled_capacity: scaled capacity (16.1)\n[ 1984.657719] sec_bat_get_battery_info:Vnow(3694mV),Vavg(3703mV),Inow(-264mA),Iavg(-191mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(275),Tusb(0),Tchg(302),Twpc(0)\n[ 1984.657808] sm5713_fg_get_property: psp = 0x31\n[ 1984.657847] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 1984.658102] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(275)\n[ 1984.658137] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1984.658169] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 1984.659470] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 1984.659547] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 1984.659584] sm5713_fg_get_property: psp = 0x96\n[ 1984.659618] sm5713_fg_periodic_read: skip old(1864) current(1984)\n[ 1984.659665] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 1984.659740] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 1984.659887] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 1984.659952] sm5713_fg_get_property: psp = 0x13\n[ 1984.660462] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1984.660745] sm5713_fg_get_property: psp = 0x14\n[ 1984.796220] sm5713_fg_get_property: psp = 0x13\n[ 1984.797305] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1985.801507] sm5713_fg_get_property: psp = 0x13\n[ 1985.802136] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1986.812205] 10223     5.4 C/MHz    622 mW   18.3 J   16.4 I/mJ    29.4 s\n               1976: \n[ 1987.692788] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1988.332745] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 66 65\n[ 1990.923769] sm5713_fg_get_property: psp = 0x13\n[ 1990.924861] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1991.929137] sm5713_fg_get_property: psp = 0x13\n[ 1991.930152] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1992.933636] sm5713_fg_get_property: psp = 0x13\n[ 1992.934693] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1993.452786] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1993.452892] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 1993.938956] sm5713_fg_get_property: psp = 0x13\n[ 1993.939988] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1995.957764] sm5713_fg_get_property: psp = 0x13\n[ 1995.958749] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1996.963397] sm5713_fg_get_property: psp = 0x13\n[ 1996.964410] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1997.968657] sm5713_fg_get_property: psp = 0x13\n[ 1997.969738] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1998.973619] sm5713_fg_get_property: psp = 0x13\n[ 1998.974702] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 1999.212776] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 1999.978911] sm5713_fg_get_property: psp = 0x13\n[ 1999.979987] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2000.983626] sm5713_fg_get_property: psp = 0x13\n[ 2000.984709] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2001.988908] sm5713_fg_get_property: psp = 0x13\n[ 2001.989998] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2002.993614] sm5713_fg_get_property: psp = 0x13\n[ 2002.994693] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2003.998890] sm5713_fg_get_property: psp = 0x13\n[ 2003.999978] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2004.332776] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 2005.003618] sm5713_fg_get_property: psp = 0x13\n[ 2005.004708] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2005.612777] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2006.009023] sm5713_fg_get_property: psp = 0x13\n[ 2006.010064] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2007.013713] sm5713_fg_get_property: psp = 0x13\n[ 2007.014740] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2008.018807] sm5713_fg_get_property: psp = 0x13\n[ 2008.019883] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2009.023617] sm5713_fg_get_property: psp = 0x13\n[ 2009.024699] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2010.028903] sm5713_fg_get_property: psp = 0x13\n[ 2010.029981] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2011.033614] sm5713_fg_get_property: psp = 0x13\n[ 2011.034695] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2011.372791] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2012.038899] sm5713_fg_get_property: psp = 0x13\n[ 2012.039985] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2013.043615] sm5713_fg_get_property: psp = 0x13\n[ 2013.044699] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2014.048890] sm5713_fg_get_property: psp = 0x13\n[ 2014.049970] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2014.660329] sm5713_fg_get_property: psp = 0xd\n[ 2014.661273] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 2014.662818] sm5713_cal_avg_vbat: batt_avgvoltage = 3697\n[ 2014.662863] sm5713_fg_get_property: psp = 0xe\n[ 2014.662899] sm5713_fg_get_property: psp = 0xe\n[ 2014.662933] sm5713_fg_get_property: psp = 0x13\n[ 2014.663467] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2014.663754] sm5713_fg_get_property: psp = 0x14\n[ 2014.663791] sm5713_fg_get_property: psp = 0x8f\n[ 2014.663827] sm5713_fg_get_property: psp = 0x8f\n[ 2014.663871] sm5713_fg_get_property: psp = 0x21\n[ 2014.663904] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 2014.664952] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(275), Temp-ADC(1889)\n[ 2014.665950] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(304), Temp-ADC(1782)\n[ 2014.666000] sm5713_fg_get_property: psp = 0x33\n[ 2014.666686] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 2014.667177] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 2014.668383] sm5713_cal_avg_vbat: batt_avgvoltage = 3694\n[ 2014.668906] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2014.669666] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 2014.670935] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 201 ,p_curr_cal = 0x7d, n_curr_cal = 0x87, batt_temp = 275\n[ 2014.671589] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7d, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877d\n[ 2014.671622] sm5713_get_soc: \n[ 2014.672379] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 2014.672707] sm5713_get_soc: read = 0x1011, soc = 160\n[ 2014.672742] sm5713_get_soc: batt_soc = 160, soc = 160\n[ 2014.674739] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x047c, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 2014.677192] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x825a, 0x86=0x800d, 0x87=0x825b, 0x1F=0x0064, 0x94=0x0030\n[ 2014.677487] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3689, v_avg=3694, i=-290, i_avg=-276, ocv=3732, fg_t=201, b_t=275, cycle=279, soc=160, state=0x8\n[ 2014.677523] sm5713_update_all_value : temp = 0xe94, t = 275 \n[ 2014.677555] sm5713_fg_get_scaled_capacity: scaled capacity (16.0)\n[ 2014.677601] sec_bat_get_battery_info:Vnow(3689mV),Vavg(3697mV),Inow(-290mA),Iavg(-276mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(275),Tusb(0),Tchg(304),Twpc(0)\n[ 2014.677689] sm5713_fg_get_property: psp = 0x31\n[ 2014.677728] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 2014.677989] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(275)\n[ 2014.678025] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 2014.678057] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 2014.679363] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 2014.679440] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 2014.679479] sm5713_fg_get_property: psp = 0x96\n[ 2014.679512] sm5713_fg_periodic_read: skip old(1864) current(2014)\n[ 2014.679559] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 2014.679636] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 2014.679785] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2014.679850] sm5713_fg_get_property: psp = 0x13\n[ 2014.680357] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2014.680641] sm5713_fg_get_property: psp = 0x14\n[ 2015.053627] sm5713_fg_get_property: psp = 0x13\n[ 2015.054716] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2015.212773] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 2016.058908] sm5713_fg_get_property: psp = 0x13\n[ 2016.059988] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2017.063621] sm5713_fg_get_property: psp = 0x13\n[ 2017.064700] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2017.132626] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2018.069099] sm5713_fg_get_property: psp = 0x13\n[ 2018.070113] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2018.412753] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 67 66\n[ 2019.073675] sm5713_fg_get_property: psp = 0x13\n[ 2019.074722] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2020.078918] sm5713_fg_get_property: psp = 0x13\n[ 2020.079998] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2021.083700] sm5713_fg_get_property: psp = 0x13\n[ 2021.084780] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2022.088986] sm5713_fg_get_property: psp = 0x13\n[ 2022.090079] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2023.093619] sm5713_fg_get_property: psp = 0x13\n[ 2023.094701] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2023.532749] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2024.105863] 10638     5.4 C/MHz    721 mW   20.3 J   14.7 I/mJ    28.2 s\n               2080: \n[ 2026.092831] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 2028.217529] sm5713_fg_get_property: psp = 0x13\n[ 2028.218602] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2029.222997] sm5713_fg_get_property: psp = 0x13\n[ 2029.224043] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2029.292797] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2030.228509] sm5713_fg_get_property: psp = 0x13\n[ 2030.229444] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2031.233756] sm5713_fg_get_property: psp = 0x13\n[ 2031.234831] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2033.253209] sm5713_fg_get_property: psp = 0x13\n[ 2033.254189] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2034.258723] sm5713_fg_get_property: psp = 0x13\n[ 2034.259733] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2035.263606] sm5713_fg_get_property: psp = 0x13\n[ 2035.264579] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2035.692773] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2036.268869] sm5713_fg_get_property: psp = 0x13\n[ 2036.269912] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2037.273474] sm5713_fg_get_property: psp = 0x13\n[ 2037.274549] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2037.612771] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 2038.278747] sm5713_fg_get_property: psp = 0x13\n[ 2038.279827] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2039.283696] sm5713_fg_get_property: psp = 0x13\n[ 2039.284778] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2040.288976] sm5713_fg_get_property: psp = 0x13\n[ 2040.290058] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2040.816213] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[ 2040.817898] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x01 5:0x00]\n[ 2041.293612] sm5713_fg_get_property: psp = 0x13\n[ 2041.294694] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2041.452769] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2042.298913] sm5713_fg_get_property: psp = 0x13\n[ 2042.299993] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2043.303608] sm5713_fg_get_property: psp = 0x13\n[ 2043.304684] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2044.308876] sm5713_fg_get_property: psp = 0x13\n[ 2044.309964] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2044.680220] sm5713_fg_get_property: psp = 0xd\n[ 2044.681157] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 2044.682705] sm5713_cal_avg_vbat: batt_avgvoltage = 3690\n[ 2044.682749] sm5713_fg_get_property: psp = 0xe\n[ 2044.682785] sm5713_fg_get_property: psp = 0xe\n[ 2044.682818] sm5713_fg_get_property: psp = 0x13\n[ 2044.683343] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2044.683626] sm5713_fg_get_property: psp = 0x14\n[ 2044.683664] sm5713_fg_get_property: psp = 0x8f\n[ 2044.683697] sm5713_fg_get_property: psp = 0x8f\n[ 2044.683741] sm5713_fg_get_property: psp = 0x21\n[ 2044.683774] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 2044.684806] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(275), Temp-ADC(1889)\n[ 2044.685786] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(306), Temp-ADC(1772)\n[ 2044.685835] sm5713_fg_get_property: psp = 0x33\n[ 2044.686509] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 2044.686994] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 2044.688175] sm5713_cal_avg_vbat: batt_avgvoltage = 3688\n[ 2044.688691] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2044.689442] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 2044.690680] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 202 ,p_curr_cal = 0x7d, n_curr_cal = 0x87, batt_temp = 275\n[ 2044.691326] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7d, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877d\n[ 2044.691357] sm5713_get_soc: \n[ 2044.692108] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x11 , return FALSE NO init need\n[ 2044.692383] sm5713_get_soc: read = 0x1004, soc = 160\n[ 2044.692416] sm5713_get_soc: batt_soc = 160, soc = 160\n[ 2044.694457] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0474, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 2044.696888] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x82bb, 0x86=0x8006, 0x87=0x82a1, 0x1F=0x0064, 0x94=0x0030\n[ 2044.697181] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3684, v_avg=3688, i=-324, i_avg=-307, ocv=3732, fg_t=202, b_t=275, cycle=279, soc=160, state=0x8\n[ 2044.697216] sm5713_update_all_value : temp = 0xe94, t = 275 \n[ 2044.697248] sm5713_fg_get_scaled_capacity: scaled capacity (16.0)\n[ 2044.697295] sec_bat_get_battery_info:Vnow(3684mV),Vavg(3690mV),Inow(-324mA),Iavg(-307mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(16%),Tbat(275),Tusb(0),Tchg(306),Twpc(0)\n[ 2044.697383] sm5713_fg_get_property: psp = 0x31\n[ 2044.697422] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 2044.697678] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(275)\n[ 2044.697713] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 2044.697745] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 2044.699088] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 2044.699165] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 2044.699202] sm5713_fg_get_property: psp = 0x96\n[ 2044.699236] sm5713_fg_periodic_read: skip old(1864) current(2044)\n[ 2044.699282] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 2044.699358] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 2044.699507] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2044.699574] sm5713_fg_get_property: psp = 0x13\n[ 2044.700078] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2044.700363] sm5713_fg_get_property: psp = 0x14\n[ 2045.313620] sm5713_fg_get_property: psp = 0x13\n[ 2045.314700] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2046.318915] sm5713_fg_get_property: psp = 0x13\n[ 2046.319924] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2047.212781] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2047.323612] sm5713_fg_get_property: psp = 0x13\n[ 2047.324582] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2048.328644] sm5713_fg_get_property: psp = 0x13\n[ 2048.329734] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2048.492804] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 2048.492914] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 68 67\n[ 2049.333686] sm5713_fg_get_property: psp = 0x13\n[ 2049.334767] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2050.338954] sm5713_fg_get_property: psp = 0x13\n[ 2050.340032] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2051.343615] sm5713_fg_get_property: psp = 0x13\n[ 2051.344634] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2052.348834] sm5713_fg_get_property: psp = 0x13\n[ 2052.349919] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2053.353604] sm5713_fg_get_property: psp = 0x13\n[ 2053.354678] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2053.612613] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2054.358884] sm5713_fg_get_property: psp = 0x13\n[ 2054.359968] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2055.363608] sm5713_fg_get_property: psp = 0x13\n[ 2055.364688] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2056.368888] sm5713_fg_get_property: psp = 0x13\n[ 2056.369975] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2057.373618] sm5713_fg_get_property: psp = 0x13\n[ 2057.374646] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2058.378717] sm5713_fg_get_property: psp = 0x13\n[ 2058.379800] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2059.372788] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2059.372892] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 2059.390538] 11195     5.4 C/MHz    849 mW   22.8 J   13.2 I/mJ    26.8 s\n               2184: \n[ 2063.502646] sm5713_fg_get_property: psp = 0x13\n[ 2063.503670] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2064.507953] sm5713_fg_get_property: psp = 0x13\n[ 2064.509011] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2065.132776] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2065.513358] sm5713_fg_get_property: psp = 0x13\n[ 2065.514406] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2066.518659] sm5713_fg_get_property: psp = 0x13\n[ 2066.519700] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2068.538018] sm5713_fg_get_property: psp = 0x13\n[ 2068.538999] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2069.543581] sm5713_fg_get_property: psp = 0x13\n[ 2069.544600] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2070.252777] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 2070.548865] sm5713_fg_get_property: psp = 0x13\n[ 2070.549945] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2071.532749] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2071.553613] sm5713_fg_get_property: psp = 0x13\n[ 2071.554698] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2072.559024] sm5713_fg_get_property: psp = 0x13\n[ 2072.560004] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2073.563661] sm5713_fg_get_property: psp = 0x13\n[ 2073.564693] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2074.568893] sm5713_fg_get_property: psp = 0x13\n[ 2074.569969] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2074.700005] sm5713_fg_get_property: psp = 0xd\n[ 2074.700911] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 2074.702588] sm5713_cal_avg_vbat: batt_avgvoltage = 3684\n[ 2074.702631] sm5713_fg_get_property: psp = 0xe\n[ 2074.702667] sm5713_fg_get_property: psp = 0xe\n[ 2074.702701] sm5713_fg_get_property: psp = 0x13\n[ 2074.703243] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2074.703529] sm5713_fg_get_property: psp = 0x14\n[ 2074.703566] sm5713_fg_get_property: psp = 0x8f\n[ 2074.703600] sm5713_fg_get_property: psp = 0x8f\n[ 2074.703644] sm5713_fg_get_property: psp = 0x21\n[ 2074.703677] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 2074.704863] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(275), Temp-ADC(1890)\n[ 2074.705867] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(308), Temp-ADC(1765)\n[ 2074.705920] sm5713_fg_get_property: psp = 0x33\n[ 2074.706608] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 2074.707100] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 2074.708296] sm5713_cal_avg_vbat: batt_avgvoltage = 3682\n[ 2074.708817] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2074.709576] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 2074.710845] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 205 ,p_curr_cal = 0x7d, n_curr_cal = 0x87, batt_temp = 275\n[ 2074.711501] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7d, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877d\n[ 2074.711533] sm5713_get_soc: \n[ 2074.712292] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 2074.712610] sm5713_get_soc: read = 0xff8, soc = 159\n[ 2074.712645] sm5713_get_soc: batt_soc = 159, soc = 159\n[ 2074.714613] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x0470, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 2074.717100] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x82e6, 0x86=0x0004, 0x87=0x82e9, 0x1F=0x0064, 0x94=0x0030\n[ 2074.717397] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3679, v_avg=3682, i=-358, i_avg=-340, ocv=3732, fg_t=205, b_t=275, cycle=279, soc=159, state=0x8\n[ 2074.717433] sm5713_update_all_value : temp = 0xe94, t = 275 \n[ 2074.717466] sm5713_fg_get_scaled_capacity: scaled capacity (15.9)\n[ 2074.717512] sec_bat_get_battery_info:Vnow(3679mV),Vavg(3684mV),Inow(-358mA),Iavg(-340mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(15%),Tbat(275),Tusb(0),Tchg(308),Twpc(0)\n[ 2074.717598] sm5713_fg_get_property: psp = 0x31\n[ 2074.717637] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 2074.717899] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(275)\n[ 2074.717935] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 2074.717968] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 2074.719274] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 2074.719352] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 2074.719389] sm5713_fg_get_property: psp = 0x96\n[ 2074.784662] [FG_ALL] 00:0000,c601,0000,000e,0000,0ff8,1ddc,1d70,82df,1480,0117,1d41,0319,0480,3c8a,0100,01:0010,ffff,0003,0017,0000,7003,ffff,ffff,ffff,1d4c,0a0a,0103,0004,ffff,0040,0064,02:04e1,03e6,ffff,0001,00a4,0146,3800,0078,0470,00a4,060a,0048,ffff,000e,1f6b,0318,03:1f78,1f78,1f79,1f79,1f79,1f7a,1f7a,1f79,1f59,1f58,1f58,1f59,1f58,1f59,1f58,1f58,04:1f78,1f79,1f7a,1f7a,1f7a,1f79,1f79,1f7a,1f5a,1f59,1f59,1f5a,1f59,1f58,1f59,1f59,05:400f,400e,400e,400e,400e,400f,400f,400e,4014,400e,4012,400f,4012,4011,4013,4010,06:859a,90ea,29e2,0000,0000,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,ffff,8012,08:0008,8003,8005,ffff,806c,82e6,0004,82e9,06b4,5887,0000,0000,0000,ffff,ffff,ffff,09:0040,a000,0000,0000,0030,0201,0100,0153,0000,0000,0000,0000,0325,0000,0000,ffff,0a:1400,1b33,1c2a,1d6c,1d86,1da2,1dbb,1ddb,1df0,1e30,1e4f,1e5d,1e7e,1ea7,1edc,1f3d,0b:1f6f,1fa0,1ff1,2050,2082,20ee,2239,2400,0000,004c,0166,044c,0733,0a00,0ce6,0fcc,\n\n[ 2074.784762] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 2074.784837] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 2074.784983] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2074.785050] sm5713_fg_get_property: psp = 0x13\n[ 2074.785562] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2074.785848] sm5713_fg_get_property: psp = 0x14\n[ 2075.573619] sm5713_fg_get_property: psp = 0x13\n[ 2075.574704] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2076.578903] sm5713_fg_get_property: psp = 0x13\n[ 2076.579982] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2077.292635] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2077.583611] sm5713_fg_get_property: psp = 0x13\n[ 2077.584635] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2078.572752] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 69 68\n[ 2078.588840] sm5713_fg_get_property: psp = 0x13\n[ 2078.589926] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2079.593615] sm5713_fg_get_property: psp = 0x13\n[ 2079.594696] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2080.598896] sm5713_fg_get_property: psp = 0x13\n[ 2080.599973] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2081.132791] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 2081.603632] sm5713_fg_get_property: psp = 0x13\n[ 2081.604713] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2082.608983] sm5713_fg_get_property: psp = 0x13\n[ 2082.610018] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2083.613693] sm5713_fg_get_property: psp = 0x13\n[ 2083.614779] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2083.692777] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2084.618988] sm5713_fg_get_property: psp = 0x13\n[ 2084.620069] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2085.623676] sm5713_fg_get_property: psp = 0x13\n[ 2085.624751] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2086.628959] sm5713_fg_get_property: psp = 0x13\n[ 2086.630038] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2087.633614] sm5713_fg_get_property: psp = 0x13\n[ 2087.634624] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2088.638819] sm5713_fg_get_property: psp = 0x13\n[ 2088.639910] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2089.452784] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2089.643622] sm5713_fg_get_property: psp = 0x13\n[ 2089.644698] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2090.649027] sm5713_fg_get_property: psp = 0x13\n[ 2090.650009] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2091.653464] sm5713_fg_get_property: psp = 0x13\n[ 2091.654549] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2092.652773] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 2092.658763] sm5713_fg_get_property: psp = 0x13\n[ 2092.659840] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2093.669866] 11756     5.4 C/MHz    972 mW   24.8 J   12.1 I/mJ    25.5 s\n               2210: \n[ 2095.212646] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2097.782885] sm5713_fg_get_property: psp = 0x13\n[ 2097.783904] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2098.788341] sm5713_fg_get_property: psp = 0x13\n[ 2098.789356] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2099.793451] sm5713_fg_get_property: psp = 0x13\n[ 2099.794509] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2100.798704] sm5713_fg_get_property: psp = 0x13\n[ 2100.799725] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2101.612745] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2102.256015] sm5713_muic_debug_reg_log DEV_TYPE[0x00 0x00] CNTL:0x34 MAN_SW:0x00 AFC_CNTL:0x00 AFC_TXD:0x46 AFC_STATUS:0x00 VBUS_VOL[0x00 0x00] attached_dev:0\n[ 2102.257737] sm5713_usbpd_debug_reg_log SYS_CT:0x1d CR_CT[4:0x92 5:0x00] CC_ST:0x00 CC_CT[1:0x80 3:0x80 7:0x00] PD_CT[1:0x00 4:0x00] RX_BUF_ST:0x84 PD_ST[0:0x02 3:0x00 4:0x02 5:0x00]\n[ 2102.815799] sm5713_fg_get_property: psp = 0x13\n[ 2102.816773] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2103.532768] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 2103.821417] sm5713_fg_get_property: psp = 0x13\n[ 2103.822138] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2104.785427] sm5713_fg_get_property: psp = 0xd\n[ 2104.786366] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 2104.788631] sm5713_cal_avg_vbat: batt_avgvoltage = 3679\n[ 2104.788675] sm5713_fg_get_property: psp = 0xe\n[ 2104.788712] sm5713_fg_get_property: psp = 0xe\n[ 2104.788745] sm5713_fg_get_property: psp = 0x13\n[ 2104.789708] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2104.790145] sm5713_fg_get_property: psp = 0x14\n[ 2104.790182] sm5713_fg_get_property: psp = 0x8f\n[ 2104.790217] sm5713_fg_get_property: psp = 0x8f\n[ 2104.790260] sm5713_fg_get_property: psp = 0x21\n[ 2104.790293] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 2104.791642] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(275), Temp-ADC(1890)\n[ 2104.792743] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(308), Temp-ADC(1763)\n[ 2104.792798] sm5713_fg_get_property: psp = 0x33\n[ 2104.793867] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 2104.794726] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 2104.796917] sm5713_cal_avg_vbat: batt_avgvoltage = 3678\n[ 2104.797851] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2104.799229] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 2104.800970] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 207 ,p_curr_cal = 0x7d, n_curr_cal = 0x87, batt_temp = 275\n[ 2104.801624] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7d, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877d\n[ 2104.801656] sm5713_get_soc: \n[ 2104.802415] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 2104.802812] sm5713_get_soc: read = 0xfeb, soc = 159\n[ 2104.802847] sm5713_get_soc: batt_soc = 159, soc = 159\n[ 2104.804818] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x04a0, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 2104.807302] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x830f, 0x86=0x003b, 0x87=0x8331, 0x1F=0x0064, 0x94=0x0030\n[ 2104.807596] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3675, v_avg=3678, i=-393, i_avg=-366, ocv=3732, fg_t=207, b_t=275, cycle=279, soc=159, state=0x8\n[ 2104.807631] sm5713_update_all_value : temp = 0xe94, t = 275 \n[ 2104.807663] sm5713_fg_get_scaled_capacity: scaled capacity (15.9)\n[ 2104.807710] sec_bat_get_battery_info:Vnow(3675mV),Vavg(3679mV),Inow(-393mA),Iavg(-358mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(15%),Tbat(275),Tusb(0),Tchg(308),Twpc(0)\n[ 2104.807798] sm5713_fg_get_property: psp = 0x31\n[ 2104.807836] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 2104.808097] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(275)\n[ 2104.808133] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 2104.808166] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 2104.809470] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 2104.809548] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 2104.809586] sm5713_fg_get_property: psp = 0x96\n[ 2104.809620] sm5713_fg_periodic_read: skip old(2074) current(2104)\n[ 2104.809667] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 2104.809740] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 2104.809909] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2104.809976] sm5713_fg_get_property: psp = 0x13\n[ 2104.810481] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2104.810767] sm5713_fg_get_property: psp = 0x14\n[ 2104.826106] sm5713_fg_get_property: psp = 0x13\n[ 2104.827182] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2105.831324] sm5713_fg_get_property: psp = 0x13\n[ 2105.831948] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2106.836001] sm5713_fg_get_property: psp = 0x13\n[ 2106.837071] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2107.372773] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2107.841231] sm5713_fg_get_property: psp = 0x13\n[ 2107.841937] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2108.652755] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 70 69\n[ 2108.846009] sm5713_fg_get_property: psp = 0x13\n[ 2108.847085] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2109.851258] sm5713_fg_get_property: psp = 0x13\n[ 2109.851882] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2110.855935] sm5713_fg_get_property: psp = 0x13\n[ 2110.857012] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2111.861086] sm5713_fg_get_property: psp = 0x13\n[ 2111.861905] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2112.865993] sm5713_fg_get_property: psp = 0x13\n[ 2112.867060] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2113.132778] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2113.871201] sm5713_fg_get_property: psp = 0x13\n[ 2113.871961] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2114.412768] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 2114.876026] sm5713_fg_get_property: psp = 0x13\n[ 2114.877103] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2115.881246] sm5713_fg_get_property: psp = 0x13\n[ 2115.881956] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2116.886027] sm5713_fg_get_property: psp = 0x13\n[ 2116.887102] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2117.891242] sm5713_fg_get_property: psp = 0x13\n[ 2117.892001] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2118.896195] sm5713_fg_get_property: psp = 0x13\n[ 2118.897217] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2119.532640] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2119.901245] sm5713_fg_get_property: psp = 0x13\n[ 2119.902004] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2120.906063] sm5713_fg_get_property: psp = 0x13\n[ 2120.907137] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2121.911273] sm5713_fg_get_property: psp = 0x13\n[ 2121.911986] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2122.916055] sm5713_fg_get_property: psp = 0x13\n[ 2122.917128] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2123.921276] sm5713_fg_get_property: psp = 0x13\n[ 2123.921989] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2124.926078] sm5713_fg_get_property: psp = 0x13\n[ 2124.927153] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2125.292801] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2125.292902] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 2125.931307] sm5713_fg_get_property: psp = 0x13\n[ 2125.931929] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2126.936010] sm5713_fg_get_property: psp = 0x13\n[ 2126.937079] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2127.948067] 11893     5.4 C/MHz   1092 mW   27.6 J   10.9 I/mJ    25.2 s\n               2314: \n[ 2131.692787] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2132.057437] sm5713_fg_get_property: psp = 0x13\n[ 2132.058486] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2133.062840] sm5713_fg_get_property: psp = 0x13\n[ 2133.063884] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2134.068085] sm5713_fg_get_property: psp = 0x13\n[ 2134.069128] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2134.810057] sm5713_fg_get_property: psp = 0xd\n[ 2134.810986] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 2134.812573] sm5713_cal_avg_vbat: batt_avgvoltage = 3684\n[ 2134.812616] sm5713_fg_get_property: psp = 0xe\n[ 2134.812653] sm5713_fg_get_property: psp = 0xe\n[ 2134.812686] sm5713_fg_get_property: psp = 0x13\n[ 2134.813210] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2134.813495] sm5713_fg_get_property: psp = 0x14\n[ 2134.813533] sm5713_fg_get_property: psp = 0x8f\n[ 2134.813567] sm5713_fg_get_property: psp = 0x8f\n[ 2134.813609] sm5713_fg_get_property: psp = 0x21\n[ 2134.813642] sec_bat_get_battery_info: Fail to set psy ((null))\n[ 2134.814686] sec-battery battery: sec_bat_get_value_by_adc:[2] Temp(275), Temp-ADC(1890)\n[ 2134.815685] sec-battery battery: sec_bat_get_value_by_adc:[6] Temp(312), Temp-ADC(1746)\n[ 2134.815735] sm5713_fg_get_property: psp = 0x33\n[ 2134.816421] sm5713-charger sm5713-charger: psy_chg_get_status: STATUS1(0x02), STATUS2(0x00), STATUS3(0x00)\n[ 2134.816910] sm5713_voffset_cancel: <0 0 100 10> volt_cal = 0x8012, volt_slope = 0x8000, mohm_volt_cal = 0x12\n[ 2134.818112] sm5713_cal_avg_vbat: batt_avgvoltage = 3687\n[ 2134.818634] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2134.819394] sm5713_vbatocv_check: mode change to mix RS auto mode\n[ 2134.820656] sm5713_cal_carc: <0 6 1 11 -1 1 6 1 9 1>, temp_fg = 213 ,p_curr_cal = 0x7d, n_curr_cal = 0x87, batt_temp = 275\n[ 2134.821310] sm5713_cal_carc: <0 2 1 2 1 1 2 3 2 3>, p_curr_cal = 0x7d, n_curr_cal = 0x87, mix_factor=0x146 ,curr_cal = 0x877d\n[ 2134.821342] sm5713_get_soc: \n[ 2134.822097] sm5713_fg_check_reg_init_need: SM5713_REG_FG_OP_STATUS : 0x10 , return FALSE NO init need\n[ 2134.822375] sm5713_get_soc: read = 0xfdf, soc = 158\n[ 2134.822410] sm5713_get_soc: batt_soc = 158, soc = 158\n[ 2134.824464] sm5713_fg_test_read: 0xA0=0x1400, 0xAC=0x2082, 0xAD=0x20ee, 0xAE=0x2239, 0xAF=0x2400, 0x28=0x055c, 0x2F=0x0318, 0x01=0xc601, SM5713_ID=0x0001\n[ 2134.826920] sm5713_fg_test_read: 0xB0=0x0000, 0xBC=0x4ecc, 0xBD=0x5480, 0xBE=0x6400, 0xBF=0x6419, 0x85=0x8111, 0x86=0x800a, 0x87=0x8105, 0x1F=0x0064, 0x94=0x0030\n[ 2134.827289] sm5713_update_all_value: chg_h=0, chg_f=0, chg_s=0, is_chg=0, ta_exist=0, v=3708, v_avg=3687, i=-125, i_avg=-263, ocv=3732, fg_t=213, b_t=275, cycle=279, soc=158, state=0x8\n[ 2134.827324] sm5713_update_all_value : temp = 0xe94, t = 275 \n[ 2134.827357] sm5713_fg_get_scaled_capacity: scaled capacity (15.8)\n[ 2134.827404] sec_bat_get_battery_info:Vnow(3708mV),Vavg(3684mV),Inow(-125mA),Iavg(-267mA),Isysavg(0mA),Imax(475mA),Ichg(550mA),SOC(15%),Tbat(275),Tusb(0),Tchg(312),Twpc(0)\n[ 2134.827491] sm5713_fg_get_property: psp = 0x31\n[ 2134.827530] sec_bat_swelling_check: swelling highblock(410), highrecov(390)\n[ 2134.827792] sec_bat_swelling_check: status(2), swell_mode(0:1:0), cv(4350)mV, temp(275)\n[ 2134.827828] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 2134.827860] sec_bat_set_current_event: current event before(0x10000), after(0x10000)\n[ 2134.829164] sm5713-charger: regmap: 0x07[0xFC],0x08[0xBE],0x09[0x7B],0x0A[0xBF],0x0B[0xFF],0x0C[0xFE],0x0D[0x02],0x0E[0x00],0x0F[0x00],0x10[0x00],0x11[0x00],0x12[0x00],0x13[0x64],0x14[0x05],0x15[0x0F],0x16[0xFF],\n[ 2134.829241] sm5713-charger: regmap: 0x17[0x12],0x18[0x89],0x19[0xFF],0x1A[0x64],0x1B[0x14],0x1C[0x84],0x1D[0x18],0x1E[0x01],0x1F[0x00],0x20[0x00],0x21[0xFF],0x22[0x04],0x23[0x31],0x24[0xFF],0x25[0x00],0x26[0x40],\n[ 2134.829279] sm5713_fg_get_property: psp = 0x96\n[ 2134.829312] sm5713_fg_periodic_read: skip old(2074) current(2134)\n[ 2134.829359] sec_bat_monitor_work: Status(Discharging), mode(None), Health(Good), Cable(NONE, NONE, 0, 0), rp(0), level(100%), lcd(0), slate_mode(0), store_mode(0), HV(NONE, 0), sleep_mode(0), Cycle(-1)\n[ 2134.829434] sec-battery battery: sec_bat_set_polling: Polling time 30/30 sec.\n[ 2134.829585] sec_bat_get_property cable type = 1 sleep_mode = 0\n[ 2134.829650] sm5713_fg_get_property: psp = 0x13\n[ 2134.830153] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2134.830441] sm5713_fg_get_property: psp = 0x14\n[ 2135.073397] sm5713_fg_get_property: psp = 0x13\n[ 2135.074446] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2136.172820] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 2137.092692] sm5713_fg_get_property: psp = 0x13\n[ 2137.093726] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2137.452632] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2138.098220] sm5713_fg_get_property: psp = 0x13\n[ 2138.099293] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2138.732753] mss_ts 4-0048: [sec_input] mode:0000, tc:0, noise:0,0, wet:0 wc:0, lp:0 D00001 fn:0000/0000 // v:0121 cal:NOCAL // 71 70\n[ 2139.103528] sm5713_fg_get_property: psp = 0x13\n[ 2139.104599] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2140.108842] sm5713_fg_get_property: psp = 0x13\n[ 2140.109947] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2141.113476] sm5713_fg_get_property: psp = 0x13\n[ 2141.114501] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2142.118640] sm5713_fg_get_property: psp = 0x13\n[ 2142.119714] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2143.123590] sm5713_fg_get_property: psp = 0x13\n[ 2143.124591] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2143.212756] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2144.128741] sm5713_fg_get_property: psp = 0x13\n[ 2144.129814] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2145.133647] sm5713_fg_get_property: psp = 0x13\n[ 2145.134716] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2146.138863] sm5713_fg_get_property: psp = 0x13\n[ 2146.139930] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2147.143590] sm5713_fg_get_property: psp = 0x13\n[ 2147.144664] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2147.692768] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 2148.148811] sm5713_fg_get_property: psp = 0x13\n[ 2148.149876] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2149.153696] sm5713_fg_get_property: psp = 0x13\n[ 2149.154713] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2149.612756] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2150.158863] sm5713_fg_get_property: psp = 0x13\n[ 2150.159937] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2151.163591] sm5713_fg_get_property: psp = 0x13\n[ 2151.164667] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2152.168810] sm5713_fg_get_property: psp = 0x13\n[ 2152.169881] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2153.173595] sm5713_fg_get_property: psp = 0x13\n[ 2153.174669] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2154.178802] sm5713_fg_get_property: psp = 0x13\n[ 2154.179871] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2155.183595] sm5713_fg_get_property: psp = 0x13\n[ 2155.184669] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2155.372636] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n[ 2156.188838] sm5713_fg_get_property: psp = 0x13\n[ 2156.189838] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2157.193611] sm5713_fg_get_property: psp = 0x13\n[ 2157.194449] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2158.198463] sm5713_fg_get_property: psp = 0x13\n[ 2158.199527] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2158.572770] fps_etspi_work_func_debug: etspi_work_func_debug ldo: 0, sleep: 0, tz: 1, spi_value: 0x0, type: unknown\n[ 2159.203596] sm5713_fg_get_property: psp = 0x13\n[ 2159.204666] sm5713_adabt_full_offset: curr_off=0, aux_stat=201, flag_charge_health=0, flag_chg_status=0, flag_full_charge=0\n[ 2160.305765] cpu=0 set cpu scale 369 from energy model\n[ 2160.305812] cpu=0 set cpu scale 369 from energy model\n[ 2160.305841] cpu=0 set cpu scale 369 from energy model\n[ 2160.329762] 12448     5.4 C/MHz   1288 mW   31.1 J    9.7 I/mJ    24.1 s\n               \n               \n               Benchmark finished!\n[ 2160.386621] \n               real\t35m57.459s\n               user\t30m32.025s\n               sys\t0m3.268s\n[ 2161.132578] [SSP]      debug_work_func( 271): FW(0):0, Sensor state: 0x3feff, En: 0x0, Reset cnt: -1[0 : C 0(0, 0), N 0, 0]\n"
  },
  {
    "path": "results/exynos9611/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  4:          0     GIC-0  27 Level     arch_timer\n  6:          0     GIC-0 266 Edge      mct_comp_irq\n  7:     218590     GIC-0 270 Edge      mct_tick0\n  8:          0     GIC-0 271 Edge      mct_tick1\n  9:          0     GIC-0 272 Edge      mct_tick2\n 10:          0     GIC-0 273 Edge      mct_tick3\n 11:          0     GIC-0 274 Edge      mct_tick4\n 12:          0     GIC-0 275 Edge      mct_tick5\n 13:          0     GIC-0 276 Edge      mct_tick6\n 14:          0     GIC-0 277 Edge      mct_tick7\n 59:          0     GIC-0 182 Edge      13490000.pinctrl\n 60:     129081     GIC-0 298 Edge      139b0000.pinctrl\n 62:          0     GIC-0 127 Level     ecc_handler0\n 63:          0     GIC-0 141 Level     ecc_handler1\n 64:          0     GIC-0 159 Edge      10c50000.sysmmu\n 65:          0     GIC-0 160 Edge      10c50000.sysmmu\n 66:          0     GIC-0 403 Edge      10e50000.sysmmu\n 67:          0     GIC-0 404 Edge      10e50000.sysmmu\n 68:          0     GIC-0 213 Edge      12c70000.sysmmu\n 69:          0     GIC-0 214 Edge      12c70000.sysmmu\n 70:          0     GIC-0 215 Edge      12c90000.sysmmu\n 71:          0     GIC-0 216 Edge      12c90000.sysmmu\n 72:          0     GIC-0 200 Edge      12e70000.sysmmu\n 73:          0     GIC-0 201 Edge      12e70000.sysmmu\n 74:          0     GIC-0 373 Edge      14550000.sysmmu\n 75:          0     GIC-0 374 Edge      14550000.sysmmu\n 76:          0     GIC-0 383 Edge      14740000.sysmmu\n 77:          0     GIC-0 384 Edge      14740000.sysmmu\n 78:          0     GIC-0 387 Edge      14770000.sysmmu\n 79:          0     GIC-0 388 Edge      14770000.sysmmu\n 80:          0     GIC-0 250 Edge      14820000.sysmmu\n 81:          0     GIC-0 249 Edge      14820000.sysmmu\n 82:          0     GIC-0 248 Edge      14920000.sysmmu\n 83:          0     GIC-0 207 Edge      12c30000.mfc0\n 84:          0     GIC-0 367 Edge      fimc3aa0-0\n 85:          0     GIC-0 368 Edge      fimc3aa0-1\n 86:          0     GIC-0 369 Edge      fimc3aa1-0\n 87:          0     GIC-0 370 Edge      fimc3aa1-1\n 88:          0     GIC-0 376 Edge      fimcisp0-0\n 89:          0     GIC-0 377 Edge      fimcisp0-1\n 90:          0     GIC-0 380 Edge      fimcmcs0-0\n 91:          0     GIC-0 378 Edge      fimcvra-1\n 92:          0     GIC-0 361 Edge      fimcpaf0-0, 14440000.sensor-paf-pafstat\n 93:          0     GIC-0 362 Edge      fimcpaf1-0, 14444000.sensor-paf-pafstat\n102:          0     GIC-0 379 Edge      14630000.gdc\n107:          0     GIC-0 114 Level     arm-pmu\n108:          0     GIC-0 115 Level     arm-pmu\n109:          0     GIC-0 116 Level     arm-pmu\n110:          0     GIC-0 117 Level     arm-pmu\n111:          0     GIC-0 128 Level     arm-pmu\n112:          0     GIC-0 129 Level     arm-pmu\n113:          0     GIC-0 130 Level     arm-pmu\n114:          0     GIC-0 131 Level     arm-pmu\n119:          0     GIC-0  70 Edge      11900000.acpm_ipc\n120:          0     GIC-0 338 Edge      TREX_D_CORE\n121:          0     GIC-0 352 Edge      TREX_D_NRT\n122:          0     GIC-0 339 Edge      TREX_P_CORE\n123:          0     GIC-0 305 Edge      11d10000.hsi2c\n124:          0     GIC-0 345 Edge      11d40000.hsi2c\n125:          0     GIC-0 289 Edge      138a0000.hsi2c\n126:          0     GIC-0 290 Edge      138b0000.hsi2c\n127:          0     GIC-0 291 Edge      138c0000.hsi2c\n128:          0     GIC-0 292 Edge      138d0000.hsi2c\n129:          0     GIC-0 299 Edge      13920000.hsi2c\n130:          0     GIC-0 300 Edge      13930000.hsi2c\n131:          0     GIC-0 287 Edge      spi-s3c64xx\n133:       2082     GIC-0 279 Edge      13830000.i2c\n134:      66245     GIC-0 280 Edge      13840000.i2c\n135:         84     GIC-0 282 Edge      13860000.i2c\n136:       4223     GIC-0 283 Edge      13870000.i2c\n137:       2027     GIC-0 285 Edge      13890000.i2c\n138:          0     GIC-0 230 Edge      14af1000.abox_gic\n139:          0     GIC-0 263 Edge      10070000.BIG, 10070000.LITTLE, 10070000.G3D, 10070000.ISP\n140:        324     GIC-0 189 Edge      ufshcd\n141:          0     GIC-0 326 Edge      120c0000.pdma0\n142:          0     GIC-0 264 Edge      10050000.watchdog_cl0\n143:          0     GIC-0 265 Edge      10060000.watchdog_cl1\n144:        730     GIC-0 303 Edge      11c30000.adc\n147:          0     GIC-0 242 Edge      14884000.dpp\n148:          0     GIC-0 246 Edge      14884000.dpp\n149:          0     GIC-0 243 Edge      14883000.dpp\n150:          0     GIC-0 247 Edge      14883000.dpp\n151:          0     GIC-0 240 Edge      14881000.dpp\n152:          0     GIC-0 244 Edge      14881000.dpp\n153:          0     GIC-0 241 Edge      14882000.dpp\n154:          0     GIC-0 245 Edge      14882000.dpp\n155:         24     GIC-0 236 Edge      148e0000.dsim\n156:          1     GIC-0 231 Edge      148b0000.decon_f\n157:          0     GIC-0 232 Edge      148b0000.decon_f\n158:          0     GIC-0 235 Edge      148b0000.decon_f\n159:          0     GIC-0 197 Edge      12e40000.g2d\n160:          0     GIC-0 196 Edge      12e60000.scaler\n161:          0     GIC-0 195 Edge      12e30000.smfc\n162:          0     GIC-0  98 Edge      11500000.mali\n163:          0     GIC-0  99 Edge      11500000.mali\n164:          1     GIC-0  97 Edge      11500000.mali\n165:          0     GIC-0  71 Edge      11980000.contexthub\n166:          0     GIC-0 143 Edge      11980000.contexthub\n167:          9     GIC-0 487 Edge      seclog\n169:        186     GIC-0 500 Edge      tzdev_iwi_event\n170:          0     GIC-0 501 Edge      tzdev_iwi_panic\n171:         95     GIC-0 179 Edge      dw-mci\n173:          0     GIC-0 161 Edge      10d60000.vipx\n174:          0     GIC-0 162 Edge      10d60000.vipx\n175:          0     GIC-0 107 Edge      cp_wdt\n176:          0     GIC-0  72 Edge      11920000.mcu_ipc\n177:          0     GIC-0  75 Edge      11a00000.mcu_ipc\n178:          0     GIC-0  59 Edge      kepler_active_handler\n179:          0     GIC-0 113 Edge      kepler_wdt_handler\n180:          0     GIC-0 112 Edge      kepler_wakelock_handler\n181:          0     GIC-0 111 Edge      kepler_req_init_handler\n182:          8     GIC-0 492 Edge      ufs-srpmb\n193:          0   s2mpu09     Edge      rtc-alarm0\n217:          0  exynos7_wkup_irq_chip   0 Level     s2mpu09-irq\n218:          0    sm5713     Edge      muic-dpdm_ovp\n219:          0    sm5713     Edge      muic-vbus_rid_detach\n220:          0    sm5713     Edge      muic-autovbus_check\n221:          0    sm5713     Edge      muic-rid_detect\n222:          0    sm5713     Edge      muic-chgtype_attach\n223:          0    sm5713     Edge      muic-dectimeout\n224:          0    sm5713     Edge      muic-afc_error\n225:          0    sm5713     Edge      muic-afc_sta_chg\n226:          0    sm5713     Edge      muic-multi_byte\n227:          0    sm5713     Edge      muic-vbus_update\n228:          0    sm5713     Edge      muic-afc_accepted\n229:          0    sm5713     Edge      muic-afc_ta_attached\n232:          0    sm5713     Edge      vbusuvlo-irq\n233:          0    sm5713     Edge      vbuspok-irq\n235:          0    sm5713     Edge      done-irq\n241:          0    sm5713     Edge      aicl-irq\n242:          0    sm5713     Edge      vsysovp-irq\n247:          0    sm5713     Edge      otgfail-irq\n251:          0    sm5713     Edge      vbusupdate-irq\n264:          0    sm5713     Edge      vbusshort-irq\n269:          0    sm5713     Edge      fuelgauge-irq\n270:          0  exynos7_wkup_irq_chip   2 Level     sm5713-irq\n271:          1  exynos7_wkup_irq_chip   0 Edge      sec-nfc\n272:          1  exynos7_wkup_irq_chip   6 Edge      sec-nfc\n274:          0  exynos7_wkup_irq_chip   4 Edge      tflash_det\n275:          0  exynos7_wkup_irq_chip   7 Level     A96T3X6\n276:          1  exynos7_wkup_irq_chip   2 Edge      rt5665\n277:     129081  exynos_gpio_irq_chip   3 Edge      148b0000.decon_f\n278:          0  exynos7_wkup_irq_chip   3 Level     sm5713-usbpd\n279:          0  exynos7_wkup_irq_chip   6 Edge      gpio-keys: KEY_VOLUMEDOWN\n280:          0  exynos7_wkup_irq_chip   5 Edge      gpio-keys: KEY_VOLUMEUP\n281:          0  exynos7_wkup_irq_chip   7 Edge      gpio-keys: KEY_POWER\n282:          0  exynos7_wkup_irq_chip   0 Level     mss_ts\n283:          0  exynos7_wkup_irq_chip   1 Edge      pcd\n284:          0  exynos7_wkup_irq_chip   1 Edge      err\n285:          0  exynos7_wkup_irq_chip   7 Edge      con\nIPI0:       896       Rescheduling interrupts\nIPI1:        35       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:         0       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/exynos9611/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  4:          0          0          0          0          0          0          0          0     GIC-0  27 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0     GIC-0 266 Edge      mct_comp_irq\n  7:        328          0          0          0          0          0          0          0     GIC-0 270 Edge      mct_tick0\n  8:          0        140          0          0          0          0          0          0     GIC-0 271 Edge      mct_tick1\n  9:          0          0        139          0          0          0          0          0     GIC-0 272 Edge      mct_tick2\n 10:          0          0          0        126          0          0          0          0     GIC-0 273 Edge      mct_tick3\n 11:          0          0          0          0        274          0          0          0     GIC-0 274 Edge      mct_tick4\n 12:          0          0          0          0          0        198          0          0     GIC-0 275 Edge      mct_tick5\n 13:          0          0          0          0          0          0        138          0     GIC-0 276 Edge      mct_tick6\n 14:          0          0          0          0          0          0          0        132     GIC-0 277 Edge      mct_tick7\n 59:          0          0          0          0          0          0          0          0     GIC-0 182 Edge      13490000.pinctrl\n 60:         16          0          0          0          0          0          0          0     GIC-0 298 Edge      139b0000.pinctrl\n 62:          0          0          0          0          0          0          0          0     GIC-0 127 Level     ecc_handler0\n 63:          0          0          0          0          0          0          0          0     GIC-0 141 Level     ecc_handler1\n 64:          0          0          0          0          0          0          0          0     GIC-0 159 Edge      10c50000.sysmmu\n 65:          0          0          0          0          0          0          0          0     GIC-0 160 Edge      10c50000.sysmmu\n 66:          0          0          0          0          0          0          0          0     GIC-0 403 Edge      10e50000.sysmmu\n 67:          0          0          0          0          0          0          0          0     GIC-0 404 Edge      10e50000.sysmmu\n 68:          0          0          0          0          0          0          0          0     GIC-0 213 Edge      12c70000.sysmmu\n 69:          0          0          0          0          0          0          0          0     GIC-0 214 Edge      12c70000.sysmmu\n 70:          0          0          0          0          0          0          0          0     GIC-0 215 Edge      12c90000.sysmmu\n 71:          0          0          0          0          0          0          0          0     GIC-0 216 Edge      12c90000.sysmmu\n 72:          0          0          0          0          0          0          0          0     GIC-0 200 Edge      12e70000.sysmmu\n 73:          0          0          0          0          0          0          0          0     GIC-0 201 Edge      12e70000.sysmmu\n 74:          0          0          0          0          0          0          0          0     GIC-0 373 Edge      14550000.sysmmu\n 75:          0          0          0          0          0          0          0          0     GIC-0 374 Edge      14550000.sysmmu\n 76:          0          0          0          0          0          0          0          0     GIC-0 383 Edge      14740000.sysmmu\n 77:          0          0          0          0          0          0          0          0     GIC-0 384 Edge      14740000.sysmmu\n 78:          0          0          0          0          0          0          0          0     GIC-0 387 Edge      14770000.sysmmu\n 79:          0          0          0          0          0          0          0          0     GIC-0 388 Edge      14770000.sysmmu\n 80:          0          0          0          0          0          0          0          0     GIC-0 250 Edge      14820000.sysmmu\n 81:          0          0          0          0          0          0          0          0     GIC-0 249 Edge      14820000.sysmmu\n 82:          0          0          0          0          0          0          0          0     GIC-0 248 Edge      14920000.sysmmu\n 83:          0          0          0          0          0          0          0          0     GIC-0 207 Edge      12c30000.mfc0\n 84:          0          0          0          0          0          0          0          0     GIC-0 367 Edge      fimc3aa0-0\n 85:          0          0          0          0          0          0          0          0     GIC-0 368 Edge      fimc3aa0-1\n 86:          0          0          0          0          0          0          0          0     GIC-0 369 Edge      fimc3aa1-0\n 87:          0          0          0          0          0          0          0          0     GIC-0 370 Edge      fimc3aa1-1\n 88:          0          0          0          0          0          0          0          0     GIC-0 376 Edge      fimcisp0-0\n 89:          0          0          0          0          0          0          0          0     GIC-0 377 Edge      fimcisp0-1\n 90:          0          0          0          0          0          0          0          0     GIC-0 380 Edge      fimcmcs0-0\n 91:          0          0          0          0          0          0          0          0     GIC-0 378 Edge      fimcvra-1\n 92:          0          0          0          0          0          0          0          0     GIC-0 361 Edge      fimcpaf0-0, 14440000.sensor-paf-pafstat\n 93:          0          0          0          0          0          0          0          0     GIC-0 362 Edge      fimcpaf1-0, 14444000.sensor-paf-pafstat\n102:          0          0          0          0          0          0          0          0     GIC-0 379 Edge      14630000.gdc\n107:          0          0          0          0          0          0          0          0     GIC-0 114 Level     arm-pmu\n108:          0          0          0          0          0          0          0          0     GIC-0 115 Level     arm-pmu\n109:          0          0          0          0          0          0          0          0     GIC-0 116 Level     arm-pmu\n110:          0          0          0          0          0          0          0          0     GIC-0 117 Level     arm-pmu\n111:          0          0          0          0          0          0          0          0     GIC-0 128 Level     arm-pmu\n112:          0          0          0          0          0          0          0          0     GIC-0 129 Level     arm-pmu\n113:          0          0          0          0          0          0          0          0     GIC-0 130 Level     arm-pmu\n114:          0          0          0          0          0          0          0          0     GIC-0 131 Level     arm-pmu\n119:          0          0          0          0          0          0          0          0     GIC-0  70 Edge      11900000.acpm_ipc\n120:          0          0          0          0          0          0          0          0     GIC-0 338 Edge      TREX_D_CORE\n121:          0          0          0          0          0          0          0          0     GIC-0 352 Edge      TREX_D_NRT\n122:          0          0          0          0          0          0          0          0     GIC-0 339 Edge      TREX_P_CORE\n123:          0          0          0          0         59        104          0          4     GIC-0 305 Edge      11d10000.hsi2c\n124:          0          0          0          0          0          0          0          0     GIC-0 345 Edge      11d40000.hsi2c\n125:          0          0          0          0          0          0          0          0     GIC-0 289 Edge      138a0000.hsi2c\n126:          0          0          0          0          0          0          0          0     GIC-0 290 Edge      138b0000.hsi2c\n127:          0          0          0          0          0          0          0          0     GIC-0 291 Edge      138c0000.hsi2c\n128:          0          0          0          0          0          0          0          0     GIC-0 292 Edge      138d0000.hsi2c\n129:          0          0          0          0          0          0          0          0     GIC-0 299 Edge      13920000.hsi2c\n130:          0          0          0          0          0          0          0          0     GIC-0 300 Edge      13930000.hsi2c\n131:          0          0          0          0          0          0          0          0     GIC-0 287 Edge      spi-s3c64xx\n133:        122          0          0          0          0          0          0          0     GIC-0 279 Edge      13830000.i2c\n134:       4102          0          0          0          0          0          0          0     GIC-0 280 Edge      13840000.i2c\n135:         84          0          0          0          0          0          0          0     GIC-0 282 Edge      13860000.i2c\n136:         63          0          0          0          0          0          0          0     GIC-0 283 Edge      13870000.i2c\n137:        434          0          0          0          0          0          0          0     GIC-0 285 Edge      13890000.i2c\n138:          0          0          0          0          0          0          0          0     GIC-0 230 Edge      14af1000.abox_gic\n139:          0          0          0          0          0          0          0          0     GIC-0 263 Edge      10070000.BIG, 10070000.LITTLE, 10070000.G3D, 10070000.ISP\n140:        324          0          0          0          0          0          0          0     GIC-0 189 Edge      ufshcd\n141:          0          0          0          0          0          0          0          0     GIC-0 326 Edge      120c0000.pdma0\n142:          0          0          0          0          0          0          0          0     GIC-0 264 Edge      10050000.watchdog_cl0\n143:          0          0          0          0          0          0          0          0     GIC-0 265 Edge      10060000.watchdog_cl1\n144:         20          0          0          0          0          0          0          0     GIC-0 303 Edge      11c30000.adc\n147:          0          0          0          0          0          0          0          0     GIC-0 242 Edge      14884000.dpp\n148:          0          0          0          0          0          0          0          0     GIC-0 246 Edge      14884000.dpp\n149:          0          0          0          0          0          0          0          0     GIC-0 243 Edge      14883000.dpp\n150:          0          0          0          0          0          0          0          0     GIC-0 247 Edge      14883000.dpp\n151:          0          0          0          0          0          0          0          0     GIC-0 240 Edge      14881000.dpp\n152:          0          0          0          0          0          0          0          0     GIC-0 244 Edge      14881000.dpp\n153:          0          0          0          0          0          0          0          0     GIC-0 241 Edge      14882000.dpp\n154:          0          0          0          0          0          0          0          0     GIC-0 245 Edge      14882000.dpp\n155:         24          0          0          0          0          0          0          0     GIC-0 236 Edge      148e0000.dsim\n156:          1          0          0          0          0          0          0          0     GIC-0 231 Edge      148b0000.decon_f\n157:          0          0          0          0          0          0          0          0     GIC-0 232 Edge      148b0000.decon_f\n158:          0          0          0          0          0          0          0          0     GIC-0 235 Edge      148b0000.decon_f\n159:          0          0          0          0          0          0          0          0     GIC-0 197 Edge      12e40000.g2d\n160:          0          0          0          0          0          0          0          0     GIC-0 196 Edge      12e60000.scaler\n161:          0          0          0          0          0          0          0          0     GIC-0 195 Edge      12e30000.smfc\n162:          0          0          0          0          0          0          0          0     GIC-0  98 Edge      11500000.mali\n163:          0          0          0          0          0          0          0          0     GIC-0  99 Edge      11500000.mali\n164:          1          0          0          0          0          0          0          0     GIC-0  97 Edge      11500000.mali\n165:          0          0          0          0          0          0          0          0     GIC-0  71 Edge      11980000.contexthub\n166:          0          0          0          0          0          0          0          0     GIC-0 143 Edge      11980000.contexthub\n167:          9          0          0          0          0          0          0          0     GIC-0 487 Edge      seclog\n169:        186          0          0          0          0          0          0          0     GIC-0 500 Edge      tzdev_iwi_event\n170:          0          0          0          0          0          0          0          0     GIC-0 501 Edge      tzdev_iwi_panic\n171:         95          0          0          0          0          0          0          0     GIC-0 179 Edge      dw-mci\n173:          0          0          0          0          0          0          0          0     GIC-0 161 Edge      10d60000.vipx\n174:          0          0          0          0          0          0          0          0     GIC-0 162 Edge      10d60000.vipx\n175:          0          0          0          0          0          0          0          0     GIC-0 107 Edge      cp_wdt\n176:          0          0          0          0          0          0          0          0     GIC-0  72 Edge      11920000.mcu_ipc\n177:          0          0          0          0          0          0          0          0     GIC-0  75 Edge      11a00000.mcu_ipc\n178:          0          0          0          0          0          0          0          0     GIC-0  59 Edge      kepler_active_handler\n179:          0          0          0          0          0          0          0          0     GIC-0 113 Edge      kepler_wdt_handler\n180:          0          0          0          0          0          0          0          0     GIC-0 112 Edge      kepler_wakelock_handler\n181:          0          0          0          0          0          0          0          0     GIC-0 111 Edge      kepler_req_init_handler\n182:          8          0          0          0          0          0          0          0     GIC-0 492 Edge      ufs-srpmb\n193:          0          0          0          0          0          0          0          0   s2mpu09     Edge      rtc-alarm0\n217:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   0 Level     s2mpu09-irq\n218:          0          0          0          0          0          0          0          0    sm5713     Edge      muic-dpdm_ovp\n219:          0          0          0          0          0          0          0          0    sm5713     Edge      muic-vbus_rid_detach\n220:          0          0          0          0          0          0          0          0    sm5713     Edge      muic-autovbus_check\n221:          0          0          0          0          0          0          0          0    sm5713     Edge      muic-rid_detect\n222:          0          0          0          0          0          0          0          0    sm5713     Edge      muic-chgtype_attach\n223:          0          0          0          0          0          0          0          0    sm5713     Edge      muic-dectimeout\n224:          0          0          0          0          0          0          0          0    sm5713     Edge      muic-afc_error\n225:          0          0          0          0          0          0          0          0    sm5713     Edge      muic-afc_sta_chg\n226:          0          0          0          0          0          0          0          0    sm5713     Edge      muic-multi_byte\n227:          0          0          0          0          0          0          0          0    sm5713     Edge      muic-vbus_update\n228:          0          0          0          0          0          0          0          0    sm5713     Edge      muic-afc_accepted\n229:          0          0          0          0          0          0          0          0    sm5713     Edge      muic-afc_ta_attached\n232:          0          0          0          0          0          0          0          0    sm5713     Edge      vbusuvlo-irq\n233:          0          0          0          0          0          0          0          0    sm5713     Edge      vbuspok-irq\n235:          0          0          0          0          0          0          0          0    sm5713     Edge      done-irq\n241:          0          0          0          0          0          0          0          0    sm5713     Edge      aicl-irq\n242:          0          0          0          0          0          0          0          0    sm5713     Edge      vsysovp-irq\n247:          0          0          0          0          0          0          0          0    sm5713     Edge      otgfail-irq\n251:          0          0          0          0          0          0          0          0    sm5713     Edge      vbusupdate-irq\n264:          0          0          0          0          0          0          0          0    sm5713     Edge      vbusshort-irq\n269:          0          0          0          0          0          0          0          0    sm5713     Edge      fuelgauge-irq\n270:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   2 Level     sm5713-irq\n271:          1          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   0 Edge      sec-nfc\n272:          1          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   6 Edge      sec-nfc\n274:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   4 Edge      tflash_det\n275:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   7 Level     A96T3X6\n277:         16          0          0          0          0          0          0          0  exynos_gpio_irq_chip   3 Edge      148b0000.decon_f\n278:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   3 Level     sm5713-usbpd\n279:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   6 Edge      gpio-keys: KEY_VOLUMEDOWN\n280:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   5 Edge      gpio-keys: KEY_VOLUMEUP\n281:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   7 Edge      gpio-keys: KEY_POWER\n282:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   0 Level     mss_ts\n283:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   1 Edge      pcd\n284:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   1 Edge      err\n285:          0          0          0          0          0          0          0          0  exynos7_wkup_irq_chip   7 Edge      con\nIPI0:       633        413        458        407       3332       1678       2006       1091       Rescheduling interrupts\nIPI1:        18         30         64         90        174         96        153        131       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         0         31         32         32        345        186        190        112       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/exynos9611/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    4 root      0:00 [kworker/0:0H]\n    5 root      0:00 [kworker/u16:0]\n    6 root      0:00 [mm_percpu_wq]\n    7 root      0:00 [ksoftirqd/0]\n    8 root      0:00 [rcu_preempt]\n    9 root      0:00 [rcu_sched]\n   10 root      0:00 [rcu_bh]\n   11 root      0:00 [migration/0]\n   12 root      0:00 [tz_worker_threa]\n   13 root      0:00 [sec_audio_dbg_s]\n   14 root      0:00 [watchdog/0]\n   15 root      0:00 [cpuhp/0]\n   16 root      0:00 [cpuhp/1]\n   17 root      0:00 [watchdog/1]\n   18 root      0:00 [tz_worker_threa]\n   19 root      0:00 [migration/1]\n   20 root      0:00 [ksoftirqd/1]\n   21 root      0:00 [kworker/1:0]\n   22 root      0:00 [kworker/1:0H]\n   23 root      0:00 [rcuop/1]\n   24 root      0:00 [rcuos/1]\n   25 root      0:00 [rcuob/1]\n   26 root      0:00 [cpuhp/2]\n   27 root      0:00 [watchdog/2]\n   28 root      0:00 [tz_worker_threa]\n   29 root      0:00 [migration/2]\n   30 root      0:00 [ksoftirqd/2]\n   31 root      0:00 [kworker/2:0]\n   32 root      0:00 [kworker/2:0H]\n   33 root      0:00 [rcuop/2]\n   34 root      0:00 [rcuos/2]\n   35 root      0:00 [rcuob/2]\n   36 root      0:00 [cpuhp/3]\n   37 root      0:00 [watchdog/3]\n   38 root      0:00 [tz_worker_threa]\n   39 root      0:00 [migration/3]\n   40 root      0:00 [ksoftirqd/3]\n   41 root      0:00 [kworker/3:0]\n   42 root      0:00 [kworker/3:0H]\n   43 root      0:00 [rcuop/3]\n   44 root      0:00 [rcuos/3]\n   45 root      0:00 [rcuob/3]\n   46 root      0:00 [cpuhp/4]\n   47 root      0:00 [watchdog/4]\n   48 root      0:00 [tz_worker_threa]\n   49 root      0:00 [migration/4]\n   50 root      0:00 [ksoftirqd/4]\n   53 root      0:00 [rcuop/4]\n   54 root      0:00 [rcuos/4]\n   55 root      0:00 [rcuob/4]\n   56 root      0:00 [cpuhp/5]\n   57 root      0:00 [watchdog/5]\n   58 root      0:00 [tz_worker_threa]\n   59 root      0:00 [migration/5]\n   60 root      0:00 [ksoftirqd/5]\n   61 root      0:00 [kworker/5:0]\n   62 root      0:00 [kworker/5:0H]\n   63 root      0:00 [rcuop/5]\n   64 root      0:00 [rcuos/5]\n   65 root      0:00 [rcuob/5]\n   66 root      0:00 [cpuhp/6]\n   67 root      0:00 [watchdog/6]\n   68 root      0:00 [tz_worker_threa]\n   69 root      0:00 [migration/6]\n   70 root      0:00 [ksoftirqd/6]\n   72 root      0:00 [kworker/6:0H]\n   73 root      0:00 [rcuop/6]\n   74 root      0:00 [rcuos/6]\n   75 root      0:00 [rcuob/6]\n   76 root      0:00 [cpuhp/7]\n   77 root      0:00 [watchdog/7]\n   78 root      0:00 [tz_worker_threa]\n   79 root      0:00 [migration/7]\n   80 root      0:00 [ksoftirqd/7]\n   82 root      0:00 [kworker/7:0H]\n   83 root      0:00 [rcuop/7]\n   84 root      0:00 [rcuos/7]\n   85 root      0:00 [rcuob/7]\n   86 root      0:00 [kdevtmpfs]\n   87 root      0:00 [netns]\n   94 root      0:00 [kworker/6:1]\n  100 root      0:00 [kworker/4:1]\n  115 root      0:00 [kworker/7:1]\n  116 root      0:00 [kworker/5:1]\n  118 root      0:00 [kworker/2:1]\n  119 root      0:00 [kworker/1:1]\n  120 root      0:00 [kworker/3:1]\n  246 root      0:00 [irq/119-1190000]\n  247 root      0:00 [acpm_update_log]\n  248 root      0:00 [acpm_debug_logg]\n  834 root      0:00 [khungtaskd]\n  839 root      0:00 [oom_reaper]\n  842 root      0:00 [writeback]\n  847 root      0:00 [kcompactd0]\n  852 root      0:00 [ksmd]\n  856 root      0:00 [crypto]\n  930 root      0:00 [kblockd]\n  956 root      0:00 [scsi_srpmb_work]\n  960 root      0:00 [spi7]\n 1021 root      0:00 [irq/217-s2mpu09]\n 1076 root      0:00 [irq/270-sm5713-]\n 1113 root      0:00 [ion_system_heap]\n 1115 root      0:00 [devfreq_wq]\n 1139 root      0:00 [cfg80211]\n 1151 root      0:00 [watchdogd]\n 1155 root      0:00 [vfw_heap]\n 1156 root      0:00 [vnfw_heap]\n 1157 root      0:00 [vframe_heap]\n 1158 root      0:00 [vscaler_heap]\n 1173 root      0:00 [thermal_check]\n 1174 root      0:00 [kworker/u18:0]\n 1218 root      0:00 [kauditd]\n 1224 root      0:00 [kswapd0]\n 1288 root      0:00 [kworker/u17:0]\n 1309 root      0:00 [ecryptfs-kthrea]\n 1446 root      0:00 [hwrng]\n 1449 root      0:00 [g3d_dvfs]\n 1450 root      0:00 [kworker/u17:1]\n 1451 root      0:00 [kbase_job_fault]\n 1455 root      0:00 [g2dscheduler]\n 1530 root      0:00 [log_collector]\n 1535 root      0:00 [fw_crc_wq]\n 1536 root      0:00 [failure_wq]\n 1537 root      0:00 [syserr_recovery]\n 1599 root      0:00 [shmem_tx_wq]\n 1602 root      0:00 [memory_wq]\n 1605 root      0:00 [ree_time]\n 1610 root      0:00 [tzlog]\n 1611 root      0:00 [tz_iwsock]\n 1619 root      0:00 [irq/272-sec-nfc]\n 1622 root      0:00 [irq/271-sec-nfc]\n 1625 root      0:00 [scsi_eh_0]\n 1626 root      0:00 [scsi_tmf_0]\n 1863 root      0:00 [wifilogger]\n 1864 root      0:00 [wifilogger]\n 1865 root      0:00 [wifilogger]\n 1866 root      0:00 [wifilogger]\n 1903 root      0:00 [uether]\n 1940 root      0:00 [irq/83-12c30000]\n 1947 root      0:00 [mfc/watchdog]\n 1948 root      0:00 [mfc/idle]\n 1949 root      0:00 [mfc/butler]\n 2035 root      0:00 [kworker/6:2]\n 2071 root      0:00 [thermal_irq]\n 2084 root      0:00 [dm_bufio_cache]\n 2085 root      0:00 [sugov:0]\n 2086 root      0:00 [sugov:4]\n 2093 root      0:00 [dw-mci-card]\n 2094 root      0:00 [dw_mci_clk_ctrl]\n 2096 root      0:00 [kworker/0:1H]\n 2184 root      0:00 [irq/165-1198000]\n 2185 root      0:00 [kworker/7:2]\n 2186 root      0:00 [ssp_debug_wq]\n 2187 root      0:00 [ssp_ts_sync_wq]\n 2199 root      0:00 [sec_abc_wq]\n 2202 root      0:00 [bootc_wq]\n 2209 root      0:00 [simpleinteracti]\n 2213 root      0:00 [simpleinteracti]\n 2217 root      0:00 [simpleinteracti]\n 2221 root      0:00 [simpleinteracti]\n 2225 root      0:00 [simpleinteracti]\n 2229 root      0:00 [simpleinteracti]\n 2247 root      0:00 [sm5713-charger]\n 2259 root      0:00 [kworker/4:1H]\n 2260 root      0:00 [kworker/4:2H]\n 2263 root      0:00 [irq/275-A96T3X6]\n 2266 root      0:00 [typec_manager_e]\n 2267 root      0:00 [typec_manager_m]\n 2270 root      0:00 [sec_vibrator]\n 2278 root      0:00 [etspi_debug_wq]\n 2292 root      0:00 [mmcqd/0]\n 2308 root      0:00 [abox_gear]\n 2309 root      0:00 [abox_ipc]\n 2406 root      0:00 [ipv6_addrconf]\n 2546 root      0:04 [decon0-vsync]\n 2547 root      0:00 [decon_hiber]\n 2548 root      0:00 [decon0]\n 2577 root      0:00 [fm_client_wq]\n 2581 root      0:00 [ccic_irq_event]\n 2584 root      0:00 [irq/278-sm5713-]\n 2587 root      0:00 [usb_notify]\n 2588 root      0:00 [kworker/4:3]\n 2593 root      0:00 [kworker/u18:1]\n 2603 root      0:00 [irq/282-mss_ts]\n 2623 root      0:00 [kworker/7:2H]\n 2628 root      0:00 [battery]\n 2654 root      0:00 [lcd_conn_workqu]\n 2682 root      0:00 [irq/276-rt5665]\n 2683 root      0:00 [kworker/1:1H]\n 2685 root      0:00 [kworker/2:1H]\n 2687 root      0:00 [kworker/3:1H]\n 2690 root      0:00 [kworker/5:1H]\n 2692 root      0:00 [kworker/6:1H]\n 2734 root      0:00 [kworker/0:0]\n 2810 root      0:00 [kworker/0:1]\n 2820 root      0:00 [kworker/u16:2]\n 2843 root      0:00 [kworker/0:2]\n 2860 root      0:00 [kworker/0:3]\n 2910 root      0:00 ps -A\n"
  },
  {
    "path": "results/exynos9611/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,403000,1308.312582,3.246433205955335,22.750903083700457,5.217445689197957,57.49940063987844,229.329168605\r\n1,598000,1941.596769,3.246817339464883,35.25222875816995,5.447605679906586,55.070065204342086,154.532234466\r\n1,702000,2279.063761,3.246529574074074,38.853730769230786,5.115105332131257,58.64981862944397,131.650300521\r\n1,806000,2617.070277,3.2469854553349875,46.19844736842106,5.296597931260499,56.64013087144131,114.648829841\r\n1,910000,2954.704382,3.246927892307692,56.06459405940595,5.693190556904384,52.694529895223106,101.546986158\r\n1,1053000,3419.19307,3.247096932573599,76.94006896551726,6.751661664480508,44.43350613646054,87.752217476\r\n1,1118000,3629.588405,3.2465012567084077,83.78646341463416,6.9262760052970656,43.31331869688221,82.665811672\r\n1,1222000,3967.991535,3.2471289157119476,96.18570666666668,7.273124555645918,41.24774678403089,75.615440253\r\n1,1326000,4305.705059,3.2471380535444947,113.1013043478261,7.88149802675244,38.063829868598546,69.685297373\r\n1,1456000,4727.983357,3.247241316620879,143.35163492063495,9.097357536682994,32.976608733944914,63.461833147\r\n1,1534000,4981.237339,3.247221211864407,166.24186666666668,10.013721467039868,29.958892005080134,60.235857957\r\n1,1638000,5318.960321,3.247228523199023,200.54964285714286,11.313321542946053,26.517411253731442,56.411576614\r\n1,1742000,5656.748501,3.2472723886337542,240.99548076923077,12.783152567393222,23.468389227022808,53.0431215\r\n4,936000,5043.118665,5.387947291666666,126.28520338983051,7.515086783241562,39.919698687843734,59.508846496\r\n4,1040000,5596.910505,5.381644716346154,147.29354716981132,7.898371993717639,37.98251085649294,53.623340231\r\n4,1144000,6166.495375,5.390293159965036,175.98070833333333,8.564992886232496,35.026298793805736,48.670067119\r\n4,1248000,6706.608245,5.373884811698718,206.45843181818182,9.239415140156261,32.46958767943468,44.751938968\r\n4,1352000,7272.727273,5.37923614866864,240.06890243902438,9.907764840614888,30.279281434921668,41.270505009\r\n4,1456000,7833.102692,5.379878222527473,280.54200000000003,10.750138654087495,27.9066168031174,38.319177357\r\n4,1508000,8123.476848,5.386920986737401,306.4027222222222,11.320981926054738,26.499468152101123,36.948046166\r\n4,1664000,8948.01205,5.377411087740384,392.79848484848486,13.176875447787172,22.767157600353567,33.546146322\r\n4,1768000,9508.11359,5.3778923020362,464.5663870967742,14.666750869213713,20.4544280239815,31.570839554\r\n4,1898000,10222.509967,5.3859378119072705,621.6167586206897,18.254370847487127,16.434420145534492,29.365956748\r\n4,1976000,10638.297872,5.383753983805668,720.9635000000001,20.344958834947285,14.745667584476946,28.219124595\r\n4,2080000,11194.865288,5.382146773076924,848.7968461538461,22.762021613787667,13.179848657128092,26.816807481\r\n4,2184000,11755.94655,5.382759409340659,971.74228,24.816279504993084,12.088838697180188,25.537922982\r\n4,2210000,11893.434824,5.381644716742081,1091.9388000000001,27.56314637025377,10.884098497686784,25.242391213\r\n4,2314000,12447.616281,5.3792637342264475,1288.1679130434782,31.07017117220721,9.655563155324842,24.119659291\r\n"
  },
  {
    "path": "results/exynos9611/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 2156.292069911957, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [473.344, 469.646, 469.646, 465.948, 476.544, 465.375, 472.821, 469.098, 353.685, 349.962, 349.962, 349.962, 357.408, 353.685, 349.962, 357.408, 353.685, 361.131, 361.131, 353.875, 350.15, 379.95, 361.325, 353.875, 357.6, 361.325, 353.875, 353.875, 353.875], \"power_mean\": 387.59062068965517, \"energy_millijoules\": 1937.953103448276, \"energy_joules\": 1.937953103448276}, \"cpus\": {\"1\": {\"freqs\": {\"403000\": {\"active\": {\"elapsed_sec\": 229.329168605, \"elapsed_ns\": 229329168605, \"power_samples\": [26.364000000000033, 22.638000000000034, 22.638000000000034, 18.912000000000035, 22.638000000000034, 22.638000000000034, 26.364000000000033, 26.364000000000033, 22.638000000000034, 37.54200000000003, 26.364000000000033, 26.364000000000033, 26.364000000000033, 22.638000000000034, 22.638000000000034, 22.638000000000034, 18.912000000000035, 22.638000000000034, 15.186000000000035, 15.186000000000035, 26.364000000000033, 22.638000000000034, 22.638000000000034, 22.638000000000034, 26.364000000000033, 26.364000000000033, 18.912000000000035, 22.638000000000034, 18.912000000000035, 18.912000000000035, 26.364000000000033, 37.54200000000003, 26.364000000000033, 18.912000000000035, 22.638000000000034, 26.364000000000033, 26.364000000000033, 30.090000000000032, 18.912000000000035, 18.912000000000035, 15.186000000000035, 22.638000000000034, 26.364000000000033, 26.364000000000033, 26.364000000000033, 33.81600000000003, 15.186000000000035, 18.912000000000035, 22.638000000000034, 30.090000000000032, 26.364000000000033, 18.912000000000035, 22.638000000000034, 18.912000000000035, 22.638000000000034, 15.186000000000035, 22.638000000000034, 18.912000000000035, 18.812999999999988, 22.53800000000001, 26.263000000000034, 29.988, 15.088000000000022, 22.53800000000001, 18.812999999999988, 37.43799999999999, 18.812999999999988, 26.263000000000034, 18.812999999999988, 22.53800000000001, 15.088000000000022, 22.53800000000001, 26.263000000000034, 26.263000000000034, 22.53800000000001, 18.812999999999988, 26.263000000000034, 22.53800000000001, 18.812999999999988, 22.53800000000001, 22.53800000000001, 22.53800000000001, 15.088000000000022, 22.53800000000001, 18.812999999999988, 26.263000000000034, 22.53800000000001, 26.263000000000034, 18.812999999999988, 18.812999999999988, 18.812999999999988, 22.53800000000001, 22.53800000000001, 29.988, 22.53800000000001, 22.53800000000001, 26.263000000000034, 22.53800000000001, 18.812999999999988, 22.53800000000001, 26.263000000000034, 26.263000000000034, 29.988, 15.088000000000022, 22.53800000000001, 22.53800000000001, 15.088000000000022, 18.812999999999988, 37.43799999999999, 22.53800000000001, 22.53800000000001, 18.812999999999988, 18.812999999999988, 26.263000000000034, 26.263000000000034, 18.812999999999988, 18.812999999999988, 26.263000000000034, 22.53800000000001, 22.53800000000001, 18.812999999999988, 15.088000000000022, 26.263000000000034, 26.263000000000034, 22.53800000000001, 11.363, 18.812999999999988, 22.53800000000001, 22.53800000000001, 15.088000000000022, 29.988, 18.812999999999988, 26.263000000000034, 18.812999999999988, 18.812999999999988, 26.263000000000034, 22.53800000000001, 22.53800000000001, 15.088000000000022, 29.988, 18.812999999999988, 29.988, 22.53800000000001, 15.088000000000022, 22.53800000000001, 22.53800000000001, 33.71300000000002, 22.53800000000001, 26.162000000000035, 18.714, 22.437999999999988, 22.437999999999988, 26.162000000000035, 26.162000000000035, 22.437999999999988, 26.162000000000035, 26.162000000000035, 14.990000000000009, 14.990000000000009, 22.437999999999988, 26.162000000000035, 26.162000000000035, 14.990000000000009, 14.990000000000009, 22.437999999999988, 22.437999999999988, 22.437999999999988, 18.714, 22.437999999999988, 18.714, 14.990000000000009, 18.714, 26.162000000000035, 29.886000000000024, 18.714, 18.714, 22.437999999999988, 22.437999999999988, 26.162000000000035, 22.437999999999988, 22.437999999999988, 22.437999999999988, 29.886000000000024, 33.610000000000014, 18.714, 22.437999999999988, 18.714, 26.162000000000035, 26.162000000000035, 22.437999999999988, 26.162000000000035, 33.610000000000014, 22.437999999999988, 29.886000000000024, 18.714, 18.714, 22.437999999999988, 26.162000000000035, 22.437999999999988, 22.437999999999988, 14.990000000000009, 26.162000000000035, 26.162000000000035, 22.437999999999988, 26.162000000000035, 22.437999999999988, 22.437999999999988, 26.263000000000034, 18.812999999999988, 22.53800000000001, 29.988, 22.53800000000001, 15.088000000000022, 22.53800000000001, 18.812999999999988, 26.263000000000034, 22.53800000000001, 18.812999999999988, 22.53800000000001, 26.263000000000034, 18.812999999999988, 22.53800000000001, 22.53800000000001, 22.53800000000001, 18.812999999999988, 26.263000000000034, 26.263000000000034], \"power_mean\": 22.750903083700457, \"energy_millijoules\": 5217.445689197957, \"energy_joules\": 5.217445689197957, \"coremark_score\": 1308.312582, \"coremarks_per_mhz\": 3.246433205955335, \"ulpmark_cm_score\": 57.49940063987844}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [350.15, 353.875, 357.6, 357.696], \"power_mean\": 354.83025, \"energy_millijoules\": 1774.15125, \"energy_joules\": 1.7741512499999998}}, \"598000\": {\"active\": {\"elapsed_sec\": 154.532234466, \"elapsed_ns\": 154532234466, \"power_samples\": [41.16300000000001, 37.334, 22.437999999999988, 33.610000000000014, 41.05799999999999, 33.610000000000014, 33.610000000000014, 41.05799999999999, 29.886000000000024, 37.334, 37.334, 37.334, 37.334, 29.886000000000024, 33.610000000000014, 33.610000000000014, 29.886000000000024, 37.334, 33.610000000000014, 33.610000000000014, 33.610000000000014, 37.334, 44.78200000000004, 41.05799999999999, 33.610000000000014, 29.886000000000024, 41.05799999999999, 41.05799999999999, 41.05799999999999, 41.05799999999999, 44.78200000000004, 37.23000000000002, 37.23000000000002, 37.23000000000002, 37.23000000000002, 29.783999999999992, 33.507000000000005, 37.23000000000002, 33.507000000000005, 37.23000000000002, 40.95300000000003, 37.23000000000002, 44.67599999999999, 33.507000000000005, 37.23000000000002, 29.783999999999992, 33.507000000000005, 33.507000000000005, 48.399, 33.507000000000005, 37.23000000000002, 29.783999999999992, 37.23000000000002, 37.23000000000002, 37.23000000000002, 33.507000000000005, 29.783999999999992, 33.507000000000005, 33.507000000000005, 40.95300000000003, 37.23000000000002, 26.162000000000035, 33.610000000000014, 37.334, 41.05799999999999, 33.610000000000014, 33.610000000000014, 33.610000000000014, 41.05799999999999, 37.334, 37.334, 33.610000000000014, 37.334, 29.886000000000024, 37.334, 33.610000000000014, 29.886000000000024, 33.610000000000014, 37.334, 33.610000000000014, 22.437999999999988, 26.162000000000035, 33.610000000000014, 37.334, 29.886000000000024, 33.610000000000014, 29.886000000000024, 26.162000000000035, 37.334, 33.610000000000014, 37.334, 37.23000000000002, 33.507000000000005, 33.507000000000005, 29.783999999999992, 29.783999999999992, 37.23000000000002, 37.23000000000002, 33.507000000000005, 33.507000000000005, 37.23000000000002, 29.783999999999992, 37.23000000000002, 37.23000000000002, 40.95300000000003, 29.783999999999992, 33.507000000000005, 33.507000000000005, 44.67599999999999, 37.23000000000002, 37.23000000000002, 37.23000000000002, 29.783999999999992, 37.23000000000002, 33.507000000000005, 37.23000000000002, 37.23000000000002, 33.507000000000005, 29.783999999999992, 26.061000000000035, 37.23000000000002, 37.23000000000002, 40.95300000000003, 33.507000000000005, 40.95300000000003, 26.061000000000035, 29.783999999999992, 33.507000000000005, 37.23000000000002, 33.507000000000005, 37.23000000000002, 40.95300000000003, 29.783999999999992, 29.783999999999992, 37.23000000000002, 33.507000000000005, 22.338000000000022, 40.95300000000003, 37.23000000000002, 37.23000000000002, 37.23000000000002, 37.23000000000002, 40.95300000000003, 37.23000000000002, 33.507000000000005, 44.67599999999999, 37.23000000000002, 40.95300000000003, 33.507000000000005, 37.23000000000002, 29.783999999999992, 37.23000000000002, 33.507000000000005], \"power_mean\": 35.25222875816995, \"energy_millijoules\": 5447.605679906586, \"energy_joules\": 5.447605679906586, \"coremark_score\": 1941.596769, \"coremarks_per_mhz\": 3.246817339464883, \"ulpmark_cm_score\": 55.070065204342086}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [361.325, 361.325, 361.325, 353.875], \"power_mean\": 359.4625, \"energy_millijoules\": 1797.3125, \"energy_joules\": 1.7973125}}, \"702000\": {\"active\": {\"elapsed_sec\": 131.650300521, \"elapsed_ns\": 131650300521, \"power_samples\": [33.507000000000005, 40.95300000000003, 37.23000000000002, 40.95300000000003, 37.23000000000002, 37.23000000000002, 33.507000000000005, 33.507000000000005, 37.23000000000002, 37.23000000000002, 37.23000000000002, 33.507000000000005, 37.23000000000002, 40.95300000000003, 40.95300000000003, 40.95300000000003, 37.23000000000002, 37.23000000000002, 37.12600000000003, 40.84800000000001, 44.56999999999999, 40.84800000000001, 40.84800000000001, 40.84800000000001, 33.403999999999996, 37.12600000000003, 52.01400000000001, 40.84800000000001, 40.84800000000001, 37.12600000000003, 37.12600000000003, 33.403999999999996, 33.403999999999996, 37.12600000000003, 40.84800000000001, 37.12600000000003, 33.403999999999996, 37.12600000000003, 37.12600000000003, 40.84800000000001, 40.84800000000001, 40.84800000000001, 33.403999999999996, 37.12600000000003, 33.403999999999996, 44.56999999999999, 44.56999999999999, 44.56999999999999, 37.12600000000003, 40.84800000000001, 55.73599999999999, 44.56999999999999, 44.56999999999999, 33.403999999999996, 37.12600000000003, 37.12600000000003, 44.56999999999999, 37.12600000000003, 44.56999999999999, 40.84800000000001, 48.29200000000003, 40.84800000000001, 33.403999999999996, 40.84800000000001, 37.12600000000003, 37.12600000000003, 33.403999999999996, 37.12600000000003, 37.12600000000003, 40.84800000000001, 33.403999999999996, 40.84800000000001, 40.84800000000001, 33.403999999999996, 37.12600000000003, 37.12600000000003, 40.84800000000001, 40.84800000000001, 37.23000000000002, 37.23000000000002, 40.95300000000003, 33.507000000000005, 44.67599999999999, 37.23000000000002, 37.23000000000002, 44.67599999999999, 48.399, 40.95300000000003, 40.95300000000003, 37.23000000000002, 33.507000000000005, 40.95300000000003, 37.23000000000002, 37.23000000000002, 40.95300000000003, 44.67599999999999, 44.67599999999999, 33.507000000000005, 33.507000000000005, 37.23000000000002, 40.95300000000003, 33.507000000000005, 44.67599999999999, 37.23000000000002, 37.23000000000002, 33.507000000000005, 40.95300000000003, 37.23000000000002, 40.84800000000001, 33.403999999999996, 37.12600000000003, 40.84800000000001, 33.403999999999996, 37.12600000000003, 37.12600000000003, 37.12600000000003, 37.12600000000003, 37.12600000000003, 37.12600000000003, 33.403999999999996, 44.56999999999999, 37.12600000000003, 37.12600000000003, 40.84800000000001, 44.56999999999999, 40.84800000000001, 44.56999999999999, 40.84800000000001, 40.84800000000001, 33.403999999999996], \"power_mean\": 38.853730769230786, \"energy_millijoules\": 5115.1053321312575, \"energy_joules\": 5.115105332131257, \"coremark_score\": 2279.063761, \"coremarks_per_mhz\": 3.246529574074074, \"ulpmark_cm_score\": 58.64981862944397}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [357.408, 357.408, 364.854, 353.685], \"power_mean\": 358.33875, \"energy_millijoules\": 1791.69375, \"energy_joules\": 1.7916937499999999}}, \"806000\": {\"active\": {\"elapsed_sec\": 114.648829841, \"elapsed_ns\": 114648829841, \"power_samples\": [48.50600000000003, 41.05799999999999, 48.50600000000003, 37.334, 48.50600000000003, 44.78200000000004, 52.23000000000002, 44.78200000000004, 41.05799999999999, 41.05799999999999, 37.334, 48.50600000000003, 48.50600000000003, 48.50600000000003, 41.05799999999999, 52.23000000000002, 41.05799999999999, 44.78200000000004, 48.50600000000003, 41.05799999999999, 41.05799999999999, 52.23000000000002, 48.50600000000003, 48.50600000000003, 44.78200000000004, 37.334, 48.50600000000003, 44.78200000000004, 63.06900000000002, 48.185, 48.185, 55.62700000000001, 44.464, 37.02199999999999, 44.464, 48.185, 48.185, 48.185, 44.464, 44.464, 40.742999999999995, 59.34800000000001, 40.742999999999995, 48.185, 40.742999999999995, 51.906000000000006, 48.185, 40.742999999999995, 44.464, 44.464, 40.742999999999995, 44.464, 48.185, 51.906000000000006, 48.185, 48.185, 40.742999999999995, 48.185, 51.906000000000006, 44.464, 51.906000000000006, 44.464, 44.464, 59.34800000000001, 40.742999999999995, 44.464, 48.185, 44.464, 48.185, 44.464, 48.185, 48.185, 40.742999999999995, 44.464, 51.906000000000006, 48.185, 44.464, 44.464, 48.185, 48.185, 55.62700000000001, 40.742999999999995, 44.464, 44.464, 44.464, 51.906000000000006, 48.185, 44.464, 37.12600000000003, 44.56999999999999, 48.29200000000003, 48.29200000000003, 52.01400000000001, 48.29200000000003, 44.56999999999999, 37.12600000000003, 44.56999999999999, 52.01400000000001, 44.56999999999999, 44.56999999999999, 48.29200000000003, 48.29200000000003, 44.56999999999999, 48.29200000000003, 44.56999999999999, 48.29200000000003, 40.84800000000001, 44.56999999999999, 44.56999999999999, 44.56999999999999, 44.56999999999999, 48.29200000000003, 48.29200000000003, 44.56999999999999], \"power_mean\": 46.19844736842106, \"energy_millijoules\": 5296.5979312604995, \"energy_joules\": 5.296597931260499, \"coremark_score\": 2617.070277, \"coremarks_per_mhz\": 3.2469854553349875, \"ulpmark_cm_score\": 56.64013087144131}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [353.59, 353.59, 357.312, 353.78], \"power_mean\": 354.568, \"energy_millijoules\": 1772.84, \"energy_joules\": 1.77284}}, \"910000\": {\"active\": {\"elapsed_sec\": 101.546986158, \"elapsed_ns\": 101546986158, \"power_samples\": [59.567999999999984, 59.567999999999984, 48.399, 52.122000000000014, 55.84500000000003, 59.567999999999984, 59.567999999999984, 55.84500000000003, 63.291, 52.122000000000014, 55.84500000000003, 63.291, 59.567999999999984, 55.84500000000003, 59.567999999999984, 59.567999999999984, 52.122000000000014, 55.84500000000003, 52.122000000000014, 59.567999999999984, 59.567999999999984, 55.84500000000003, 52.122000000000014, 55.84500000000003, 55.84500000000003, 55.62700000000001, 51.906000000000006, 51.906000000000006, 51.906000000000006, 48.185, 55.62700000000001, 59.34800000000001, 59.34800000000001, 55.62700000000001, 59.34800000000001, 59.34800000000001, 63.06900000000002, 51.906000000000006, 48.185, 59.34800000000001, 63.06900000000002, 55.62700000000001, 55.62700000000001, 59.34800000000001, 51.906000000000006, 48.185, 55.62700000000001, 48.185, 59.34800000000001, 59.34800000000001, 59.34800000000001, 55.62700000000001, 55.62700000000001, 81.67400000000004, 55.62700000000001, 55.73599999999999, 52.01400000000001, 55.73599999999999, 55.73599999999999, 55.73599999999999, 52.01400000000001, 55.73599999999999, 59.45800000000003, 55.73599999999999, 48.29200000000003, 52.01400000000001, 52.01400000000001, 70.62400000000002, 52.01400000000001, 52.01400000000001, 52.01400000000001, 59.45800000000003, 59.45800000000003, 55.73599999999999, 59.45800000000003, 52.01400000000001, 55.73599999999999, 55.73599999999999, 59.45800000000003, 55.73599999999999, 59.45800000000003, 55.73599999999999, 55.73599999999999, 52.01400000000001, 52.01400000000001, 62.95800000000003, 55.51800000000003, 55.51800000000003, 55.51800000000003, 55.51800000000003, 48.07800000000003, 55.51800000000003, 66.678, 62.95800000000003, 51.798, 51.798, 51.798, 51.798, 51.798, 51.798, 55.51800000000003], \"power_mean\": 56.06459405940595, \"energy_millijoules\": 5693.190556904385, \"energy_joules\": 5.693190556904384, \"coremark_score\": 2954.704382, \"coremarks_per_mhz\": 3.246927892307692, \"ulpmark_cm_score\": 52.694529895223106}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [357.408, 353.685, 357.408, 353.685], \"power_mean\": 355.54650000000004, \"energy_millijoules\": 1777.7325, \"energy_joules\": 1.7777325000000002}}, \"1053000\": {\"active\": {\"elapsed_sec\": 87.752217476, \"elapsed_ns\": 87752217476, \"power_samples\": [81.55799999999999, 77.83800000000002, 74.118, 77.83800000000002, 74.118, 77.83800000000002, 77.83800000000002, 74.118, 74.118, 77.83800000000002, 77.83800000000002, 74.118, 77.83800000000002, 77.83800000000002, 81.55799999999999, 70.39800000000002, 74.118, 74.118, 77.83800000000002, 74.118, 81.55799999999999, 70.39800000000002, 70.39800000000002, 70.39800000000002, 77.83800000000002, 74.118, 77.83800000000002, 74.118, 74.118, 77.83800000000002, 70.39800000000002, 81.55799999999999, 81.55799999999999, 77.83800000000002, 77.83800000000002, 74.118, 77.83800000000002, 81.55799999999999, 81.55799999999999, 74.118, 81.55799999999999, 74.118, 74.118, 81.55799999999999, 81.55799999999999, 77.83800000000002, 81.55799999999999, 77.83800000000002, 74.118, 77.83800000000002, 81.55799999999999, 81.55799999999999, 70.39800000000002, 77.83800000000002, 77.83800000000002, 85.27800000000002, 77.83800000000002, 77.83800000000002, 70.39800000000002, 74.118, 77.83800000000002, 74.118, 74.118, 77.83800000000002, 74.118, 74.118, 81.55799999999999, 74.118, 77.83800000000002, 85.27800000000002, 74.118, 77.83800000000002, 77.83800000000002, 81.55799999999999, 77.83800000000002, 77.83800000000002, 77.83800000000002, 77.83800000000002, 77.83800000000002, 77.83800000000002, 74.118, 77.83800000000002, 81.55799999999999, 74.118, 77.83800000000002, 70.39800000000002, 77.83800000000002], \"power_mean\": 76.94006896551726, \"energy_millijoules\": 6751.661664480508, \"energy_joules\": 6.751661664480508, \"coremark_score\": 3419.19307, \"coremarks_per_mhz\": 3.247096932573599, \"ulpmark_cm_score\": 44.43350613646054}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [364.56, 357.12, 357.12, 360.84], \"power_mean\": 359.90999999999997, \"energy_millijoules\": 1799.5499999999997, \"energy_joules\": 1.7995499999999998}}, \"1118000\": {\"active\": {\"elapsed_sec\": 82.665811672, \"elapsed_ns\": 82665811672, \"power_samples\": [81.79000000000002, 81.79000000000002, 78.06799999999998, 78.06799999999998, 89.23400000000004, 81.79000000000002, 78.06799999999998, 85.512, 78.06799999999998, 85.512, 89.23400000000004, 85.512, 81.79000000000002, 81.79000000000002, 85.512, 85.512, 85.512, 85.512, 96.678, 81.79000000000002, 85.512, 85.512, 85.512, 85.512, 85.512, 81.79000000000002, 81.79000000000002, 85.512, 81.32600000000002, 88.762, 77.608, 81.32600000000002, 81.32600000000002, 88.762, 81.32600000000002, 85.04399999999998, 85.04399999999998, 85.04399999999998, 85.04399999999998, 77.608, 81.32600000000002, 88.762, 81.32600000000002, 81.32600000000002, 81.32600000000002, 81.32600000000002, 88.762, 85.04399999999998, 77.608, 81.32600000000002, 85.04399999999998, 92.48000000000002, 85.04399999999998, 92.48000000000002, 81.32600000000002, 88.762, 77.608, 81.32600000000002, 85.161, 85.161, 85.161, 85.161, 85.161, 81.44200000000001, 85.161, 81.44200000000001, 85.161, 81.44200000000001, 81.44200000000001, 85.161, 88.88, 81.44200000000001, 88.88, 77.72300000000001, 81.44200000000001, 77.72300000000001, 81.44200000000001, 88.88, 88.88, 85.161, 77.72300000000001, 81.44200000000001], \"power_mean\": 83.78646341463416, \"energy_millijoules\": 6926.276005297065, \"energy_joules\": 6.9262760052970656, \"coremark_score\": 3629.588405, \"coremarks_per_mhz\": 3.2465012567084077, \"ulpmark_cm_score\": 43.31331869688221}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [353.4, 360.84, 360.84, 361.034], \"power_mean\": 359.0285, \"energy_millijoules\": 1795.1425, \"energy_joules\": 1.7951424999999999}}, \"1222000\": {\"active\": {\"elapsed_sec\": 75.615440253, \"elapsed_ns\": 75615440253, \"power_samples\": [92.95600000000002, 104.12200000000001, 96.678, 100.40000000000003, 92.95600000000002, 96.678, 104.12200000000001, 96.678, 92.95600000000002, 96.678, 100.40000000000003, 96.678, 92.95600000000002, 92.95600000000002, 96.678, 96.678, 100.40000000000003, 96.678, 100.40000000000003, 89.23400000000004, 92.95600000000002, 104.12200000000001, 111.56600000000003, 96.678, 96.678, 96.678, 88.762, 92.48000000000002, 92.48000000000002, 96.19800000000004, 99.916, 96.19800000000004, 96.19800000000004, 92.48000000000002, 96.19800000000004, 99.916, 103.63400000000001, 88.762, 96.19800000000004, 99.916, 96.19800000000004, 96.19800000000004, 99.916, 96.19800000000004, 96.19800000000004, 96.19800000000004, 92.48000000000002, 107.35200000000003, 92.48000000000002, 92.48000000000002, 92.48000000000002, 99.916, 92.48000000000002, 96.19800000000004, 96.19800000000004, 99.916, 88.644, 92.36099999999999, 88.644, 88.644, 92.36099999999999, 99.79500000000002, 88.644, 96.07800000000003, 92.36099999999999, 92.36099999999999, 96.07800000000003, 96.07800000000003, 88.644, 96.07800000000003, 99.79500000000002, 103.512, 103.512, 96.07800000000003, 96.07800000000003], \"power_mean\": 96.18570666666668, \"energy_millijoules\": 7273.124555645918, \"energy_joules\": 7.273124555645918, \"coremark_score\": 3967.991535, \"coremarks_per_mhz\": 3.2471289157119476, \"ulpmark_cm_score\": 41.24774678403089}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [360.743, 360.743, 368.478, 361.034], \"power_mean\": 362.7495, \"energy_millijoules\": 1813.7475, \"energy_joules\": 1.8137474999999998}}, \"1326000\": {\"active\": {\"elapsed_sec\": 69.685297373, \"elapsed_ns\": 69685297373, \"power_samples\": [114.66300000000001, 114.66300000000001, 114.78800000000001, 114.78800000000001, 107.35200000000003, 114.78800000000001, 118.50600000000003, 111.07, 114.78800000000001, 111.07, 114.78800000000001, 111.07, 114.78800000000001, 114.78800000000001, 114.78800000000001, 107.35200000000003, 111.07, 114.78800000000001, 114.78800000000001, 114.78800000000001, 114.78800000000001, 107.35200000000003, 107.35200000000003, 114.78800000000001, 107.35200000000003, 114.78800000000001, 114.78800000000001, 114.78800000000001, 114.78800000000001, 118.50600000000003, 118.50600000000003, 111.07, 114.78800000000001, 111.07, 111.07, 114.78800000000001, 107.35200000000003, 114.78800000000001, 114.78800000000001, 118.50600000000003, 114.78800000000001, 111.07, 114.78800000000001, 118.50600000000003, 111.07, 111.07, 107.35200000000003, 114.78800000000001, 111.07, 111.07, 114.78800000000001, 114.78800000000001, 107.35200000000003, 111.07, 111.07, 107.35200000000003, 118.50600000000003, 111.07, 111.07, 107.35200000000003, 111.07, 118.50600000000003, 114.66300000000001, 118.38, 110.94600000000003, 114.66300000000001, 110.94600000000003, 114.66300000000001, 114.66300000000001], \"power_mean\": 113.1013043478261, \"energy_millijoules\": 7881.49802675244, \"energy_joules\": 7.88149802675244, \"coremark_score\": 4305.705059, \"coremarks_per_mhz\": 3.2471380535444947, \"ulpmark_cm_score\": 38.063829868598546}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [364.266, 356.832, 364.266, 353.115], \"power_mean\": 359.61975, \"energy_millijoules\": 1798.09875, \"energy_joules\": 1.79809875}}, \"1456000\": {\"active\": {\"elapsed_sec\": 63.461833147, \"elapsed_ns\": 63461833147, \"power_samples\": [140.68200000000002, 140.68200000000002, 140.68200000000002, 140.68200000000002, 148.11599999999999, 136.96500000000003, 140.68200000000002, 140.68200000000002, 144.399, 140.68200000000002, 144.399, 136.96500000000003, 140.68200000000002, 144.399, 140.55, 147.98200000000003, 147.98200000000003, 144.26600000000002, 140.55, 147.98200000000003, 140.55, 144.26600000000002, 144.26600000000002, 140.55, 140.55, 147.98200000000003, 144.26600000000002, 147.98200000000003, 144.26600000000002, 144.26600000000002, 144.26600000000002, 144.26600000000002, 136.834, 147.98200000000003, 144.26600000000002, 147.98200000000003, 144.26600000000002, 144.26600000000002, 140.55, 144.26600000000002, 136.834, 147.98200000000003, 144.26600000000002, 140.55, 140.55, 151.69800000000004, 144.26600000000002, 144.26600000000002, 140.55, 136.834, 140.55, 140.55, 144.26600000000002, 147.98200000000003, 140.55, 144.26600000000002, 147.98200000000003, 147.98200000000003, 144.26600000000002, 147.98200000000003, 140.55, 144.26600000000002, 144.26600000000002], \"power_mean\": 143.35163492063495, \"energy_millijoules\": 9097.357536682994, \"energy_joules\": 9.097357536682994, \"coremark_score\": 4727.983357, \"coremarks_per_mhz\": 3.247241316620879, \"ulpmark_cm_score\": 32.976608733944914}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [367.983, 371.7, 375.417, 371.7], \"power_mean\": 371.7, \"energy_millijoules\": 1858.5, \"energy_joules\": 1.8585}}, \"1534000\": {\"active\": {\"elapsed_sec\": 60.235857957, \"elapsed_ns\": 60235857957, \"power_samples\": [162.846, 166.562, 166.423, 162.70799999999997, 166.423, 170.13800000000003, 166.423, 162.70799999999997, 166.423, 162.70799999999997, 166.423, 166.423, 170.13800000000003, 170.13800000000003, 166.423, 162.70799999999997, 166.423, 166.423, 170.13800000000003, 162.70799999999997, 166.423, 170.13800000000003, 166.423, 170.13800000000003, 166.423, 166.423, 162.70799999999997, 166.423, 166.423, 166.423, 166.423, 166.423, 166.423, 158.993, 162.70799999999997, 177.56799999999998, 170.13800000000003, 166.423, 166.423, 162.70799999999997, 162.70799999999997, 170.13800000000003, 162.70799999999997, 170.13800000000003, 162.70799999999997, 166.423, 162.70799999999997, 166.423, 166.423, 170.13800000000003, 158.993, 162.70799999999997, 162.70799999999997, 158.993, 170.13800000000003, 170.13800000000003, 170.13800000000003, 166.423, 170.13800000000003, 170.13800000000003], \"power_mean\": 166.24186666666668, \"energy_millijoules\": 10013.721467039868, \"energy_joules\": 10.013721467039868, \"coremark_score\": 4981.237339, \"coremarks_per_mhz\": 3.247221211864407, \"ulpmark_cm_score\": 29.958892005080134}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [371.6, 367.884, 364.168, 364.168], \"power_mean\": 366.95500000000004, \"energy_millijoules\": 1834.775, \"energy_joules\": 1.834775}}, \"1638000\": {\"active\": {\"elapsed_sec\": 56.411576614, \"elapsed_ns\": 56411576614, \"power_samples\": [200.45000000000005, 196.731, 196.731, 204.16899999999998, 200.45000000000005, 204.16899999999998, 196.731, 196.731, 193.01200000000006, 200.45000000000005, 200.45000000000005, 207.88800000000003, 200.45000000000005, 200.45000000000005, 200.45000000000005, 200.45000000000005, 196.731, 204.16899999999998, 200.45000000000005, 196.731, 196.731, 200.45000000000005, 199.414, 206.83799999999997, 203.12599999999998, 199.414, 203.12599999999998, 199.414, 199.414, 217.97400000000005, 195.702, 199.414, 203.12599999999998, 203.12599999999998, 206.83799999999997, 203.12599999999998, 199.414, 199.414, 199.414, 199.414, 199.414, 206.83799999999997, 203.12599999999998, 199.414, 195.702, 199.414, 206.83799999999997, 195.702, 203.12599999999998, 195.702, 203.12599999999998, 195.702, 195.702, 195.702, 203.12599999999998, 199.414], \"power_mean\": 200.54964285714286, \"energy_millijoules\": 11313.321542946052, \"energy_joules\": 11.313321542946053, \"coremark_score\": 5318.960321, \"coremarks_per_mhz\": 3.247228523199023, \"ulpmark_cm_score\": 26.517411253731442}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [371.9, 375.619, 375.619, 375.619], \"power_mean\": 374.68925, \"energy_millijoules\": 1873.44625, \"energy_joules\": 1.87344625}}, \"1742000\": {\"active\": {\"elapsed_sec\": 53.0431215, \"elapsed_ns\": 53043121500, \"power_samples\": [243.95799999999997, 243.95799999999997, 240.24599999999998, 236.534, 243.95799999999997, 247.66999999999996, 236.534, 243.95799999999997, 236.534, 243.95799999999997, 243.95799999999997, 236.534, 247.66999999999996, 243.95799999999997, 243.95799999999997, 232.822, 240.24599999999998, 240.087, 243.798, 236.37599999999998, 236.37599999999998, 236.37599999999998, 236.37599999999998, 243.798, 243.798, 236.37599999999998, 240.087, 236.37599999999998, 236.37599999999998, 240.087, 236.37599999999998, 247.50900000000001, 240.087, 240.087, 243.798, 243.798, 243.798, 247.50900000000001, 247.50900000000001, 236.37599999999998, 240.087, 243.798, 243.798, 243.798, 243.798, 232.66499999999996, 243.798, 232.66499999999996, 240.087, 243.798, 243.798, 240.087], \"power_mean\": 240.99548076923077, \"energy_millijoules\": 12783.152567393221, \"energy_joules\": 12.783152567393222, \"coremark_score\": 5656.748501, \"coremarks_per_mhz\": 3.2472723886337542, \"ulpmark_cm_score\": 23.468389227022808}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [382.336, 382.336, 374.912, 382.336], \"power_mean\": 380.48, \"energy_millijoules\": 1902.4, \"energy_joules\": 1.9024}}}}, \"4\": {\"freqs\": {\"936000\": {\"active\": {\"elapsed_sec\": 59.508846496, \"elapsed_ns\": 59508846496, \"power_samples\": [125.04599999999999, 132.46800000000002, 125.04599999999999, 117.62400000000002, 125.04599999999999, 128.757, 121.33500000000004, 128.757, 125.04599999999999, 125.04599999999999, 128.757, 121.33500000000004, 128.757, 128.757, 132.988, 125.55799999999999, 129.27300000000002, 129.27300000000002, 121.84300000000002, 125.55799999999999, 125.55799999999999, 125.55799999999999, 129.27300000000002, 129.27300000000002, 125.55799999999999, 129.27300000000002, 129.27300000000002, 129.27300000000002, 121.84300000000002, 121.84300000000002, 129.27300000000002, 125.55799999999999, 121.84300000000002, 121.84300000000002, 125.55799999999999, 121.84300000000002, 125.55799999999999, 125.55799999999999, 129.27300000000002, 121.84300000000002, 125.55799999999999, 129.27300000000002, 125.55799999999999, 129.27300000000002, 125.43, 121.71600000000001, 125.43, 125.43, 129.144, 140.286, 129.144, 121.71600000000001, 125.43, 129.144, 125.43, 125.43, 125.43, 125.43, 125.43], \"power_mean\": 126.28520338983051, \"energy_millijoules\": 7515.086783241562, \"energy_joules\": 7.515086783241562, \"coremark_score\": 5043.118665, \"coremarks_per_mhz\": 5.387947291666666, \"ulpmark_cm_score\": 39.919698687843734}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [352.545, 348.834, 348.834, 356.256], \"power_mean\": 351.61725, \"energy_millijoules\": 1758.08625, \"energy_joules\": 1.75808625}}, \"1040000\": {\"active\": {\"elapsed_sec\": 53.623340231, \"elapsed_ns\": 53623340231, \"power_samples\": [144.0, 147.714, 151.428, 147.714, 144.0, 151.428, 147.714, 155.142, 140.286, 144.0, 144.0, 151.428, 144.0, 147.714, 140.286, 151.428, 144.0, 144.0, 136.572, 147.714, 147.714, 144.0, 147.714, 147.714, 147.714, 151.428, 144.0, 147.714, 151.428, 144.0, 155.142, 158.856, 147.714, 147.714, 151.428, 151.428, 151.428, 151.428, 144.0, 147.714, 144.0, 140.286, 155.142, 147.714, 144.0, 151.428, 144.0, 140.286, 151.428, 144.0, 147.714, 147.714, 144.0], \"power_mean\": 147.29354716981132, \"energy_millijoules\": 7898.371993717639, \"energy_joules\": 7.898371993717639, \"coremark_score\": 5596.910505, \"coremarks_per_mhz\": 5.381644716346154, \"ulpmark_cm_score\": 37.98251085649294}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [349.116, 360.258, 352.83, 356.544], \"power_mean\": 354.687, \"energy_millijoules\": 1773.435, \"energy_joules\": 1.7734349999999999}}, \"1144000\": {\"active\": {\"elapsed_sec\": 48.670067119, \"elapsed_ns\": 48670067119, \"power_samples\": [173.712, 169.99800000000005, 173.712, 173.712, 169.85800000000006, 177.284, 177.284, 173.57100000000003, 169.85800000000006, 177.284, 180.99699999999996, 184.71000000000004, 177.284, 173.57100000000003, 177.284, 180.99699999999996, 177.284, 180.99699999999996, 177.284, 177.284, 177.284, 173.57100000000003, 177.284, 177.284, 180.99699999999996, 177.284, 173.57100000000003, 173.57100000000003, 173.57100000000003, 173.57100000000003, 173.57100000000003, 177.284, 177.284, 173.57100000000003, 177.284, 177.284, 173.57100000000003, 177.284, 173.57100000000003, 173.57100000000003, 180.99699999999996, 177.284, 177.284, 177.284, 173.57100000000003, 169.85800000000006, 173.57100000000003, 180.99699999999996], \"power_mean\": 175.98070833333333, \"energy_millijoules\": 8564.992886232496, \"energy_joules\": 8.564992886232496, \"coremark_score\": 6166.495375, \"coremarks_per_mhz\": 5.390293159965036, \"ulpmark_cm_score\": 35.026298793805736}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [356.544, 356.544, 356.544, 356.544], \"power_mean\": 356.544, \"energy_millijoules\": 1782.7199999999998, \"energy_joules\": 1.7827199999999999}}, \"1248000\": {\"active\": {\"elapsed_sec\": 44.751938968, \"elapsed_ns\": 44751938968, \"power_samples\": [210.70100000000002, 206.98800000000006, 210.70100000000002, 206.98800000000006, 218.12700000000007, 210.70100000000002, 206.538, 206.538, 202.82799999999997, 206.538, 217.668, 206.538, 202.82799999999997, 202.82799999999997, 202.82799999999997, 206.538, 202.82799999999997, 210.24800000000005, 202.82799999999997, 202.82799999999997, 202.82799999999997, 206.538, 202.82799999999997, 210.24800000000005, 199.11800000000005, 202.82799999999997, 206.538, 199.11800000000005, 202.82799999999997, 210.24800000000005, 202.82799999999997, 202.82799999999997, 206.538, 210.24800000000005, 210.24800000000005, 206.538, 206.688, 206.688, 199.26599999999996, 210.399, 210.399, 210.399, 206.688, 206.688], \"power_mean\": 206.45843181818182, \"energy_millijoules\": 9239.415140156261, \"energy_joules\": 9.239415140156261, \"coremark_score\": 6706.608245, \"coremarks_per_mhz\": 5.373884811698718, \"ulpmark_cm_score\": 32.46958767943468}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [371.3, 356.448, 367.587, 367.587], \"power_mean\": 365.7305, \"energy_millijoules\": 1828.6525000000001, \"energy_joules\": 1.8286525000000002}}, \"1352000\": {\"active\": {\"elapsed_sec\": 41.270505009, \"elapsed_ns\": 41270505009, \"power_samples\": [240.087, 243.798, 236.37599999999998, 240.087, 240.087, 243.798, 236.37599999999998, 243.798, 243.798, 236.37599999999998, 236.37599999999998, 240.087, 240.087, 243.63800000000003, 236.21799999999996, 236.21799999999996, 243.63800000000003, 243.63800000000003, 236.21799999999996, 239.928, 236.21799999999996, 239.928, 243.63800000000003, 239.928, 239.928, 247.34799999999996, 232.50800000000004, 243.63800000000003, 236.21799999999996, 236.21799999999996, 247.34799999999996, 247.34799999999996, 243.63800000000003, 239.928, 232.50800000000004, 236.21799999999996, 247.34799999999996, 236.21799999999996, 243.63800000000003, 239.928, 232.50800000000004], \"power_mean\": 240.06890243902438, \"energy_millijoules\": 9907.764840614887, \"energy_joules\": 9.907764840614888, \"coremark_score\": 7272.727273, \"coremarks_per_mhz\": 5.37923614866864, \"ulpmark_cm_score\": 30.279281434921668}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [367.389, 359.967, 359.967, 356.256], \"power_mean\": 360.89475, \"energy_millijoules\": 1804.4737499999999, \"energy_joules\": 1.8044737499999999}}, \"1456000\": {\"active\": {\"elapsed_sec\": 38.319177357, \"elapsed_ns\": 38319177357, \"power_samples\": [285.645, 278.211, 278.211, 281.928, 274.494, 285.645, 285.645, 278.211, 281.928, 278.211, 278.211, 289.36199999999997, 285.645, 270.77700000000004, 281.928, 278.211, 281.928, 281.928, 281.928, 289.36199999999997, 285.645, 274.494, 274.494, 280.398, 284.106, 284.106, 272.98199999999997, 284.106, 276.69000000000005, 280.398, 276.69000000000005, 280.398, 276.69000000000005, 280.398, 276.69000000000005, 276.69000000000005, 284.106, 284.106], \"power_mean\": 280.54200000000003, \"energy_millijoules\": 10750.138654087496, \"energy_joules\": 10.750138654087495, \"coremark_score\": 7833.102692, \"coremarks_per_mhz\": 5.379878222527473, \"ulpmark_cm_score\": 27.9066168031174}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [394.002, 364.266, 364.266, 364.266], \"power_mean\": 371.70000000000005, \"energy_millijoules\": 1858.5000000000002, \"energy_joules\": 1.8585000000000003}}, \"1508000\": {\"active\": {\"elapsed_sec\": 36.948046166, \"elapsed_ns\": 36948046166, \"power_samples\": [310.062, 310.062, 310.062, 302.64599999999996, 310.062, 309.884, 306.177, 313.591, 306.177, 302.47, 306.177, 302.47, 306.177, 309.884, 309.884, 309.884, 306.177, 306.177, 302.47, 309.884, 302.47, 309.884, 306.177, 302.47, 302.47, 309.884, 306.177, 306.177, 298.76300000000003, 302.47, 306.177, 302.47, 309.884, 309.884, 302.47, 302.294], \"power_mean\": 306.4027222222222, \"energy_millijoules\": 11320.98192605474, \"energy_joules\": 11.320981926054738, \"coremark_score\": 8123.476848, \"coremarks_per_mhz\": 5.386920986737401, \"ulpmark_cm_score\": 26.499468152101123}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [374.508, 370.8, 370.8, 374.508], \"power_mean\": 372.654, \"energy_millijoules\": 1863.27, \"energy_joules\": 1.86327}}, \"1664000\": {\"active\": {\"elapsed_sec\": 33.546146322, \"elapsed_ns\": 33546146322, \"power_samples\": [394.94399999999996, 391.23800000000006, 394.94399999999996, 387.53200000000004, 391.23800000000006, 398.65, 398.65, 391.23800000000006, 394.94399999999996, 391.23800000000006, 391.23800000000006, 398.65, 402.356, 394.94399999999996, 391.23800000000006, 391.23800000000006, 394.94399999999996, 394.94399999999996, 391.23800000000006, 398.65, 390.63800000000003, 390.63800000000003, 390.63800000000003, 386.93500000000006, 390.63800000000003, 398.044, 390.63800000000003, 390.63800000000003, 386.93500000000006, 390.63800000000003, 394.341, 390.63800000000003, 386.93500000000006], \"power_mean\": 392.79848484848486, \"energy_millijoules\": 13176.875447787172, \"energy_joules\": 13.176875447787172, \"coremark_score\": 8948.01205, \"coremarks_per_mhz\": 5.377411087740384, \"ulpmark_cm_score\": 22.767157600353567}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [370.6, 370.6, 374.306, 374.306], \"power_mean\": 372.453, \"energy_millijoules\": 1862.2649999999999, \"energy_joules\": 1.8622649999999998}}, \"1768000\": {\"active\": {\"elapsed_sec\": 31.570839554, \"elapsed_ns\": 31570839554, \"power_samples\": [464.698, 472.10400000000004, 460.995, 460.995, 464.698, 460.995, 464.698, 468.40100000000007, 464.038, 460.33799999999997, 460.33799999999997, 464.038, 464.038, 478.83799999999997, 464.038, 467.73800000000006, 464.038, 464.038, 464.038, 460.33799999999997, 464.038, 464.038, 460.33799999999997, 464.038, 464.038, 467.73800000000006, 464.038, 464.038, 464.038, 467.73800000000006, 464.038], \"power_mean\": 464.5663870967742, \"energy_millijoules\": 14666.750869213713, \"energy_joules\": 14.666750869213713, \"coremark_score\": 9508.11359, \"coremarks_per_mhz\": 5.3778923020362, \"ulpmark_cm_score\": 20.4544280239815}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [374.003, 366.597, 370.3, 374.003], \"power_mean\": 371.22575, \"energy_millijoules\": 1856.12875, \"energy_joules\": 1.85612875}}, \"1898000\": {\"active\": {\"elapsed_sec\": 29.365956748, \"elapsed_ns\": 29365956748, \"power_samples\": [626.294, 618.87, 622.582, 622.582, 618.87, 611.446, 626.294, 622.582, 618.87, 622.582, 633.718, 630.006, 622.582, 622.582, 618.87, 626.294, 622.582, 626.294, 618.87, 618.87, 615.158, 618.87, 615.158, 626.294, 622.582, 618.87, 622.582, 614.172, 621.5600000000001], \"power_mean\": 621.6167586206897, \"energy_millijoules\": 18254.370847487127, \"energy_joules\": 18.254370847487127, \"coremark_score\": 10222.509967, \"coremarks_per_mhz\": 5.3859378119072705, \"ulpmark_cm_score\": 16.434420145534492}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [444.0, 444.0, 449.152, 449.152], \"power_mean\": 446.576, \"energy_millijoules\": 2232.88, \"energy_joules\": 2.23288}}, \"1976000\": {\"active\": {\"elapsed_sec\": 28.219124595, \"elapsed_ns\": 28219124595, \"power_samples\": [717.604, 721.298, 721.298, 721.298, 717.604, 721.298, 721.298, 728.6859999999999, 721.298, 732.3800000000001, 724.992, 724.992, 717.604, 717.604, 724.992, 713.9100000000001, 721.298, 717.604, 713.9100000000001, 719.848, 723.537, 716.1590000000001, 719.848, 716.1590000000001, 719.848, 716.1590000000001, 734.604, 719.848], \"power_mean\": 720.9635000000001, \"energy_millijoules\": 20344.958834947283, \"energy_joules\": 20.344958834947285, \"coremark_score\": 10638.297872, \"coremarks_per_mhz\": 5.383753983805668, \"ulpmark_cm_score\": 14.745667584476946}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [435.892, 443.28, 443.28, 435.892], \"power_mean\": 439.586, \"energy_millijoules\": 2197.9300000000003, \"energy_joules\": 2.1979300000000004}}, \"2080000\": {\"active\": {\"elapsed_sec\": 26.816807481, \"elapsed_ns\": 26816807481, \"power_samples\": [841.585, 845.2740000000001, 848.963, 852.652, 848.963, 848.963, 856.3410000000001, 845.2740000000001, 852.652, 852.652, 848.963, 852.652, 843.654, 847.338, 851.0219999999999, 854.7059999999999, 854.7059999999999, 847.338, 851.0219999999999, 839.97, 854.7059999999999, 847.338, 851.0219999999999, 843.654, 843.654, 843.654], \"power_mean\": 848.7968461538461, \"energy_millijoules\": 22762.021613787667, \"energy_joules\": 22.762021613787667, \"coremark_score\": 11194.865288, \"coremarks_per_mhz\": 5.382146773076924, \"ulpmark_cm_score\": 13.179848657128092}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [438.991, 446.369, 446.369, 442.68], \"power_mean\": 443.60225, \"energy_millijoules\": 2218.01125, \"energy_joules\": 2.21801125}}, \"2184000\": {\"active\": {\"elapsed_sec\": 25.537922982, \"elapsed_ns\": 25537922982, \"power_samples\": [961.5419999999999, 968.9100000000001, 976.278, 968.9100000000001, 972.594, 976.278, 968.9100000000001, 967.1200000000001, 970.799, 978.1569999999999, 970.799, 974.4780000000001, 970.799, 981.836, 970.799, 970.799, 974.4780000000001, 970.799, 970.799, 967.1200000000001, 967.1200000000001, 967.1200000000001, 978.1569999999999, 970.799, 978.1569999999999], \"power_mean\": 971.74228, \"energy_millijoules\": 24816.279504993083, \"energy_joules\": 24.816279504993084, \"coremark_score\": 11755.94655, \"coremarks_per_mhz\": 5.382759409340659, \"ulpmark_cm_score\": 12.088838697180188}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [442.08, 445.764, 442.08, 449.448], \"power_mean\": 444.84299999999996, \"energy_millijoules\": 2224.2149999999997, \"energy_joules\": 2.2242149999999996}}, \"2210000\": {\"active\": {\"elapsed_sec\": 25.242391213, \"elapsed_ns\": 25242391213, \"power_samples\": [1077.49, 1092.206, 1094.313, 1083.288, 1094.313, 1090.638, 1086.963, 1094.313, 1090.638, 1086.963, 1094.313, 1094.313, 1097.988, 1097.988, 1101.663, 1094.313, 1094.313, 1090.638, 1090.638, 1094.313, 1097.988, 1094.313, 1083.288, 1094.313, 1086.963], \"power_mean\": 1091.9388000000001, \"energy_millijoules\": 27563.14637025377, \"energy_joules\": 27.56314637025377, \"coremark_score\": 11893.434824, \"coremarks_per_mhz\": 5.381644716742081, \"ulpmark_cm_score\": 10.884098497686784}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [452.517, 459.875, 459.875, 459.875], \"power_mean\": 458.0355, \"energy_millijoules\": 2290.1775000000002, \"energy_joules\": 2.2901775000000004}}, \"2314000\": {\"active\": {\"elapsed_sec\": 24.119659291, \"elapsed_ns\": 24119659291, \"power_samples\": [1274.142, 1277.85, 1285.266, 1277.85, 1281.558, 1292.682, 1288.974, 1281.558, 1292.682, 1285.266, 1285.266, 1292.682, 1288.974, 1288.974, 1292.682, 1292.682, 1292.682, 1300.098, 1285.266, 1288.974, 1296.39, 1288.974, 1296.39], \"power_mean\": 1288.1679130434782, \"energy_millijoules\": 31070.17117220721, \"energy_joules\": 31.07017117220721, \"coremark_score\": 12447.616281, \"coremarks_per_mhz\": 5.3792637342264475, \"ulpmark_cm_score\": 9.655563155324842}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [459.375, 459.375, 463.05, 463.5], \"power_mean\": 461.325, \"energy_millijoules\": 2306.625, \"energy_joules\": 2.306625}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/exynos9611/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 350 mW\n\n\n===== CPU 1 =====\nFrequencies: 403 598 702 806 910 1053 1118 1222 1326 1456 1534 1638 1742\n\n 403:  1308     3.2 C/MHz     23 mW    5.2 J   57.5 I/mJ   229.3 s\n 598:  1942     3.2 C/MHz     35 mW    5.4 J   55.1 I/mJ   154.5 s\n 702:  2279     3.2 C/MHz     39 mW    5.1 J   58.6 I/mJ   131.7 s\n 806:  2617     3.2 C/MHz     46 mW    5.3 J   56.6 I/mJ   114.6 s\n 910:  2955     3.2 C/MHz     56 mW    5.7 J   52.7 I/mJ   101.5 s\n1053:  3419     3.2 C/MHz     77 mW    6.8 J   44.4 I/mJ    87.8 s\n1118:  3630     3.2 C/MHz     84 mW    6.9 J   43.3 I/mJ    82.7 s\n1222:  3968     3.2 C/MHz     96 mW    7.3 J   41.2 I/mJ    75.6 s\n1326:  4306     3.2 C/MHz    113 mW    7.9 J   38.1 I/mJ    69.7 s\n1456:  4728     3.2 C/MHz    143 mW    9.1 J   33.0 I/mJ    63.5 s\n1534:  4981     3.2 C/MHz    166 mW   10.0 J   30.0 I/mJ    60.2 s\n1638:  5319     3.2 C/MHz    201 mW   11.3 J   26.5 I/mJ    56.4 s\n1742:  5657     3.2 C/MHz    241 mW   12.8 J   23.5 I/mJ    53.0 s\n\n\n===== CPU 4 =====\nFrequencies: 936 1040 1144 1248 1352 1456 1508 1664 1768 1898 1976 2080 2184 2210 2314\n\n 936:  5043     5.4 C/MHz    126 mW    7.5 J   39.9 I/mJ    59.5 s\n1040:  5597     5.4 C/MHz    147 mW    7.9 J   38.0 I/mJ    53.6 s\n1144:  6166     5.4 C/MHz    176 mW    8.6 J   35.0 I/mJ    48.7 s\n1248:  6707     5.4 C/MHz    206 mW    9.2 J   32.5 I/mJ    44.8 s\n1352:  7273     5.4 C/MHz    240 mW    9.9 J   30.3 I/mJ    41.3 s\n1456:  7833     5.4 C/MHz    281 mW   10.8 J   27.9 I/mJ    38.3 s\n1508:  8123     5.4 C/MHz    306 mW   11.3 J   26.5 I/mJ    36.9 s\n1664:  8948     5.4 C/MHz    393 mW   13.2 J   22.8 I/mJ    33.5 s\n1768:  9508     5.4 C/MHz    465 mW   14.7 J   20.5 I/mJ    31.6 s\n1898: 10223     5.4 C/MHz    622 mW   18.3 J   16.4 I/mJ    29.4 s\n1976: 10638     5.4 C/MHz    721 mW   20.3 J   14.7 I/mJ    28.2 s\n2080: 11195     5.4 C/MHz    849 mW   22.8 J   13.2 I/mJ    26.8 s\n2184: 11756     5.4 C/MHz    972 mW   24.8 J   12.1 I/mJ    25.5 s\n2210: 11893     5.4 C/MHz   1092 mW   27.6 J   10.9 I/mJ    25.2 s\n2314: 12448     5.4 C/MHz   1288 mW   31.1 J    9.7 I/mJ    24.1 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/exynos9611/main/uptime.txt",
    "content": " 19:30:02 up 36 min,  load average: 11.79, 11.80, 10.72\n"
  },
  {
    "path": "results/exynos9611/main/versions.txt",
    "content": "Kernel: Linux version 4.14.113-gdc3f4130c14b-dirty (Ramen@SUSANO) (Android (7485623, based on r416183b1) clang version 12.0.7 (https://android.googlesource.com/toolchain/llvm-project c935d99d7cf2016289302412d708641d52d2f7ee)) #6 SMP PREEMPT Sat Jul 24 23:34:55 +05 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/gs101/main/cmdline.txt",
    "content": "stack_depot_disable=on kasan.stacktrace=off kvm-arm.mode=protected cgroup_disable=pressure cgroup.memory=nokmem rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on rcupdate.rcu_expedited=1 rcu_nocbs=0-7 clocksource=arch_sys_counter root=/dev/ram0 firmware_class.path=/vendor/firmware reserve-fimc=0xffffff90f9fe0000 clk_ignore_unused loop.max_part=7 coherent_pool=4M no_console_suspend softlockup_panic=1 exynos_mfc.load_sequential=1 exynos_drm.load_sequential=1 pcie-exynos-core.load_sequential=1 g2d.load_sequential=1 disable_dma32=on dyndbg=\"func alloc_contig_dump_pages +p\" printk.devkmsg=on cma_sysfs.experimental=Y swiotlb=noforce at24.write_timeout=100 log_buf_len=1024K bootconfig console=null exynos_drm.panel_name=samsung-s6e3fc3 tcpci_max77759.conf_sbu=0 id_aa64mmfr1.vh=0  bootconfig\n"
  },
  {
    "path": "results/gs101/main/cpufreq_stats/0/time_in_state",
    "content": "300000 269312\n574000 28991\n738000 22729\n930000 18192\n1098000 15532\n1197000 14321\n1328000 12988\n1401000 12347\n1598000 10928\n1704000 10293\n1803000 9884\n"
  },
  {
    "path": "results/gs101/main/cpufreq_stats/0/total_trans",
    "content": "14\n"
  },
  {
    "path": "results/gs101/main/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    574000    738000    930000   1098000   1197000   1328000   1401000   1598000   1704000   1803000 \n   300000:         0         1         0         0         0         0         0         0         0         0         1 \n   574000:         0         0         1         0         0         0         0         0         0         0         0 \n   738000:         0         0         0         1         0         0         0         0         0         0         0 \n   930000:         0         0         0         0         1         0         0         0         0         0         0 \n  1098000:         0         0         0         0         0         1         0         0         0         0         0 \n  1197000:         0         0         0         0         0         0         1         0         0         0         1 \n  1328000:         0         0         0         0         0         0         0         1         0         0         0 \n  1401000:         0         0         0         0         0         0         0         0         1         0         0 \n  1598000:         0         0         0         0         0         0         0         0         0         1         0 \n  1704000:         0         0         0         0         0         0         0         0         0         0         1 \n  1803000:         2         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/gs101/main/cpufreq_stats/4/time_in_state",
    "content": "400000 323658\n553000 14813\n696000 11938\n799000 10504\n910000 9325\n1024000 8373\n1197000 7286\n1328000 6646\n1491000 6008\n1663000 5468\n1836000 5031\n1999000 4684\n2130000 4446\n2253000 7337\n"
  },
  {
    "path": "results/gs101/main/cpufreq_stats/4/total_trans",
    "content": "16\n"
  },
  {
    "path": "results/gs101/main/cpufreq_stats/4/trans_table",
    "content": "   From  :    To\n         :    400000    553000    696000    799000    910000   1024000   1197000   1328000   1491000   1663000   1836000   1999000   2130000   2253000 \n   400000:         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n   553000:         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n   696000:         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n   799000:         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n   910000:         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1024000:         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1197000:         0         0         0         0         0         0         0         1         0         0         0         0         0         1 \n  1328000:         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1491000:         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1663000:         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  1836000:         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  1999000:         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2130000:         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2253000:         2         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/gs101/main/cpufreq_stats/6/time_in_state",
    "content": "500000 132986\n851000 8399\n984000 7388\n1106000 6655\n1277000 5868\n1426000 5347\n1582000 4898\n1745000 4515\n1826000 4348\n2048000 3966\n2188000 3766\n2252000 3681\n2401000 3501\n2507000 3390\n2630000 3269\n2704000 3201\n2802000 3118\n2850000 217221\n"
  },
  {
    "path": "results/gs101/main/cpufreq_stats/6/total_trans",
    "content": "20\n"
  },
  {
    "path": "results/gs101/main/cpufreq_stats/6/trans_table",
    "content": "   From  :    To\n         :    500000    851000    984000   1106000   1277000   1426000   1582000   1745000   1826000   2048000   2188000   2252000   2401000   2507000   2630000   2704000   2802000   2850000 \n   500000:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   851000:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   984000:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1106000:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  1277000:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1426000:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1582000:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1745000:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1826000:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  2048000:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  2188000:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  2252000:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  2401000:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  2507000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2630000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2704000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2802000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2850000:         2         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/gs101/main/cpuinfo.txt",
    "content": "processor\t: 0\nBogoMIPS\t: 49.15\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x2\nCPU part\t: 0xd05\nCPU revision\t: 0\n\n"
  },
  {
    "path": "results/gs101/main/device.txt",
    "content": "Model: Oriole DVT;\nCompatible: google,GS101 Oriole;google,GS101;\n"
  },
  {
    "path": "results/gs101/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x412fd050]\n[    0.000000] Linux version 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 (lcockx@lcockx-asustufgamingf15fx506lhtuf506lh) (ClangBuiltLinux clang version 17.0.3 (https://github.com/llvm/llvm-project 888437e1b60011b8a375dd30928ec925b448da57), ClangBuiltLinux LLD 17.0.3) #4 SMP PREEMPT Thu Oct 26 23:28:38 CEST 2023\n[    0.000000] Machine model: Oriole DVT\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000009e0000000, size 512 MiB\n[    0.000000] OF: reserved mem: initialized node vframe, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: 0x00000009e0000000..0x00000009ffffffff (524288 KiB) map reusable vframe\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000009dcc00000, size 52 MiB\n[    0.000000] OF: reserved mem: initialized node vscaler, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: 0x00000009dcc00000..0x00000009dfffffff (53248 KiB) map reusable vscaler\n[    0.000000] OF: reserved mem: 0x00000000fa3f0000..0x00000000fd3effff (49152 KiB) map non-reusable tui\n[    0.000000] OF: reserved mem: 0x00000000ffdf0000..0x00000000ffffffff (2112 KiB) map non-reusable mfc_fw\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000009d8400000, size 72 MiB\n[    0.000000] OF: reserved mem: initialized node vstream, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: 0x00000009d8400000..0x00000009dcbfffff (73728 KiB) map reusable vstream\n[    0.000000] OF: reserved mem: initialized node pkvm_guest_firmware, compatible id linux,pkvm-guest-firmware-memory\n[    0.000000] OF: reserved mem: 0x000000008b000000..0x000000008b06dfff (440 KiB) nomap non-reusable pkvm_guest_firmware\n[    0.000000] OF: reserved mem: 0x0000000090000000..0x0000000090039fff (232 KiB) map non-reusable ect_binary\n[    0.000000] OF: reserved mem: 0x0000000090200000..0x00000000905fffff (4096 KiB) nomap non-reusable gsa@0x90200000\n[    0.000000] OF: reserved mem: 0x0000000093000000..0x0000000093ffffff (16384 KiB) nomap non-reusable tpu_fw@0x93000000\n[    0.000000] OF: reserved mem: 0x0000000094000000..0x0000000096ffffff (49152 KiB) nomap non-reusable aoc@0x94000000\n[    0.000000] Reserved memory: created DMA memory pool at 0x0000000097000000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node xhci_dma@0x97000000, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: 0x0000000097000000..0x00000000973fffff (4096 KiB) nomap non-reusable xhci_dma@0x97000000\n[    0.000000] OF: reserved mem: 0x00000000c3000000..0x00000000c307ffff (512 KiB) map non-reusable seclog_mem\n[    0.000000] OF: reserved mem: 0x00000000d8100000..0x00000000d810ffff (64 KiB) map non-reusable header\n[    0.000000] OF: reserved mem: 0x00000000d8110000..0x00000000d880ffff (7168 KiB) map non-reusable log_kevents\n[    0.000000] OF: reserved mem: 0x00000000d9d10000..0x00000000da70ffff (10240 KiB) map non-reusable log_array_reset\n[    0.000000] OF: reserved mem: 0x00000000dc210000..0x00000000dc60ffff (4096 KiB) map non-reusable log_bcm\n[    0.000000] OF: reserved mem: 0x00000000dc610000..0x00000000dc61ffff (64 KiB) map non-reusable log_itmon\n[    0.000000] OF: reserved mem: 0x00000000e8000000..0x00000000e9bfffff (28672 KiB) map non-reusable cp_rmem_1\n[    0.000000] OF: reserved mem: 0x00000000ee000000..0x00000000ee3fffff (4096 KiB) map non-reusable cp_rmem_2\n[    0.000000] OF: reserved mem: 0x00000000f0000000..0x00000000f07fffff (8192 KiB) map non-reusable cp_rmem\n[    0.000000] OF: reserved mem: 0x00000000f6200000..0x00000000f6200fff (4 KiB) map non-reusable cp_msi_rmem\n[    0.000000] OF: reserved mem: 0x00000000f8800000..0x00000000f97fffff (16384 KiB) nomap non-reusable abl@f8800000\n[    0.000000] OF: reserved mem: 0x00000000fd3f0000..0x00000000fd3fdfff (56 KiB) nomap non-reusable dss_log_reserved@fd3f0000\n[    0.000000] OF: reserved mem: 0x00000000fd3fe000..0x00000000fd3fefff (4 KiB) nomap non-reusable debug_kinfo_reserved@fd3fe000\n[    0.000000] OF: reserved mem: 0x00000000fd3ff000..0x00000000fd7fefff (4096 KiB) map non-reusable ramoops_mem@fd3ff000\n[    0.000000] OF: reserved mem: 0x00000000fd800000..0x00000000fd8fffff (1024 KiB) nomap non-reusable bldr_log_reserved@fd800000\n[    0.000000] OF: reserved mem: 0x00000000fd90c000..0x00000000fd90cfff (4 KiB) nomap non-reusable suspend_diag_log_reserved@fd90c000\n[    0.000000] kvm [0]: Reserved 46 MiB at 0x9d5400000\n[    0.000000] Zone ranges:\n[    0.000000]   Normal   [mem 0x0000000080000000-0x00000009ffffffff]\n[    0.000000] Movable zone start for each node\n[    0.000000] Early memory node ranges\n[    0.000000]   node   0: [mem 0x0000000080000000-0x000000008affffff]\n[    0.000000]   node   0: [mem 0x000000008b000000-0x000000008b06dfff]\n[    0.000000]   node   0: [mem 0x000000008b06e000-0x00000000901fffff]\n[    0.000000]   node   0: [mem 0x0000000090200000-0x00000000905fffff]\n[    0.000000]   node   0: [mem 0x0000000090600000-0x0000000092ffffff]\n[    0.000000]   node   0: [mem 0x0000000093000000-0x00000000973fffff]\n[    0.000000]   node   0: [mem 0x0000000097400000-0x00000000b71fffff]\n[    0.000000]   node   0: [mem 0x00000000c0000000-0x00000000dfffffff]\n[    0.000000]   node   0: [mem 0x00000000e2500000-0x00000000f87fffff]\n[    0.000000]   node   0: [mem 0x00000000f8800000-0x00000000f97fffff]\n[    0.000000]   node   0: [mem 0x00000000f9800000-0x00000000fd3effff]\n[    0.000000]   node   0: [mem 0x00000000fd3f0000-0x00000000fd3fefff]\n[    0.000000]   node   0: [mem 0x00000000fd3ff000-0x00000000fd7fffff]\n[    0.000000]   node   0: [mem 0x00000000fd800000-0x00000000fd8fffff]\n[    0.000000]   node   0: [mem 0x00000000fd900000-0x00000000fd90bfff]\n[    0.000000]   node   0: [mem 0x00000000fd90c000-0x00000000fd90cfff]\n[    0.000000]   node   0: [mem 0x00000000fd90d000-0x00000000ffffffff]\n[    0.000000]   node   0: [mem 0x0000000880000000-0x00000009ffffffff]\n[    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000009ffffffff]\n[    0.000000] On node 0 totalpages: 2051328\n[    0.000000]   Normal zone: 32052 pages used for memmap\n[    0.000000]   Normal zone: 0 pages reserved\n[    0.000000]   Normal zone: 2051328 pages, LIFO batch:63\n[    0.000000] cma: Reserved 16 MiB at 0x0000000880000000\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.1\n[    0.000000] Load bootconfig: 3981 bytes 127 nodes\n[    0.000000] percpu: Embedded 24 pages/cpu s66560 r0 d31744 u98304\n[    0.000000] pcpu-alloc: s66560 r0 d31744 u98304 alloc=24*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: SYS_ID_AA64MMFR1_EL1[11:8]: forced to 0\n[    0.000000] CPU features: detected: GIC system register CPU interface\n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 2019276\n[    0.000000] Kernel command line: stack_depot_disable=on kasan.stacktrace=off kvm-arm.mode=protected cgroup_disable=pressure cgroup.memory=nokmem rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on rcupdate.rcu_expedited=1 rcu_nocbs=0-7 clocksource=arch_sys_counter root=/dev/ram0 firmware_class.path=/vendor/firmware reserve-fimc=0xffffff90f9fe0000 clk_ignore_unused loop.max_part=7 coherent_pool=4M no_console_suspend softlockup_panic=1 exynos_mfc.load_sequential=1 exynos_drm.load_sequential=1 pcie-exynos-core.load_sequential=1 g2d.load_sequential=1 disable_dma32=on dyndbg=\"func alloc_contig_dump_pages +p\" printk.devkmsg=on cma_sysfs.experimental=Y swiotlb=noforce at24.write_timeout=100 log_buf_len=1024K bootconfig console=null exynos_drm.panel_name=samsung-s6e3fc3 tcpci_max77759.conf_sbu=0 id_aa64mmfr1.vh=0  bootconfig\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)\n[    0.000000] mem auto-init: stack:all(zero), heap alloc:on, heap free:off\n[    0.000000] Memory: 7038548K/8205312K available (26812K kernel code, 16910K rwdata, 9476K rodata, 9600K init, 5149K bss, 499116K reserved, 667648K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTrampoline variant of Tasks RCU enabled.\n[    0.000000] \tTracing variant of Tasks RCU enabled.\n[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode\n[    0.000000] GICv3: 960 SPIs implemented\n[    0.000000] GICv3: 0 Extended SPIs implemented\n[    0.000000] GICv3: Distributor has no Range Selector support\n[    0.000000] GICv3: 16 PPIs implemented\n[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000010440000\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 timer(s) running at 24.57MHz (phys).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x5ab00a189, max_idle_ns: 440795202599 ns\n[    0.000011] sched_clock: 56 bits at 24MHz, resolution 40ns, wraps every 4398046511099ns\n[    0.000559] Calibrating delay loop (skipped), value calculated using timer frequency.. 49.15 BogoMIPS (lpj=245760)\n[    0.000588] pid_max: default: 32768 minimum: 301\n[    0.000675] LSM: Security Framework initializing\n[    0.000738] SELinux:  Initializing.\n[    0.000950] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)\n[    0.000984] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)\n[    0.003568] rcu: Hierarchical SRCU implementation.\n[    0.004960] smp: Bringing up secondary CPUs ...\n[    0.006133] Detected VIPT I-cache on CPU1\n[    0.006214] GICv3: CPU1: found redistributor 100 region 0:0x0000000010460000\n[    0.006283] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]\n[    0.007289] Detected VIPT I-cache on CPU2\n[    0.007327] GICv3: CPU2: found redistributor 200 region 0:0x0000000010480000\n[    0.007374] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]\n[    0.008198] Detected VIPT I-cache on CPU3\n[    0.008230] GICv3: CPU3: found redistributor 300 region 0:0x00000000104a0000\n[    0.008274] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]\n[    0.009476] CPU features: detected: Spectre-v4\n[    0.009481] CPU features: detected: Spectre-BHB\n[    0.009485] Detected PIPT I-cache on CPU4\n[    0.009507] GICv3: CPU4: found redistributor 400 region 0:0x00000000104c0000\n[    0.009536] CPU4: Booted secondary processor 0x0000000400 [0x414fd0b0]\n[    0.010434] Detected PIPT I-cache on CPU5\n[    0.010458] GICv3: CPU5: found redistributor 500 region 0:0x00000000104e0000\n[    0.010488] CPU5: Booted secondary processor 0x0000000500 [0x414fd0b0]\n[    0.011503] Detected PIPT I-cache on CPU6\n[    0.011526] GICv3: CPU6: found redistributor 600 region 0:0x0000000010500000\n[    0.011557] CPU6: Booted secondary processor 0x0000000600 [0x411fd440]\n[    0.012369] Detected PIPT I-cache on CPU7\n[    0.012392] GICv3: CPU7: found redistributor 700 region 0:0x0000000010520000\n[    0.012424] CPU7: Booted secondary processor 0x0000000700 [0x411fd440]\n[    0.012496] smp: Brought up 1 node, 8 CPUs\n[    0.012546] SMP: Total of 8 processors activated.\n[    0.012554] CPU features: detected: Privileged Access Never\n[    0.012559] CPU features: detected: LSE atomic instructions\n[    0.012566] CPU features: detected: User Access Override\n[    0.012572] CPU features: detected: 32-bit EL0 Support\n[    0.012579] CPU features: detected: Common not Private translations\n[    0.012584] CPU features: detected: RAS Extension Support\n[    0.012592] CPU features: detected: Data cache clean to the PoU not required for I/D coherence\n[    0.012601] CPU features: detected: CRC32 instructions\n[    0.012608] CPU features: detected: Speculative Store Bypassing Safe (SSBS)\n[    0.012615] CPU features: detected: RCpc load-acquire (LDAPR)\n[    0.012620] CPU features: detected: Protected KVM\n[    0.014014] CPU: All CPU(s) started at EL2\n[    0.014078] alternatives: patching kernel code\n[    0.174513] Registered cp15_barrier emulation handler\n[    0.174572] Registered setend emulation handler\n[    0.174585] KASLR enabled\n[    0.174813] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.174863] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)\n[    0.219679] pinctrl core: initialized pinctrl subsystem\n[    0.221221] NET: Registered protocol family 16\n[    0.225078] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations\n[    0.225687] thermal_sys: Registered thermal governor 'step_wise'\n[    0.225694] thermal_sys: Registered thermal governor 'user_space'\n[    0.225702] thermal_sys: Registered thermal governor 'power_allocator'\n[    0.233822] cpuidle: using governor teo\n[    0.234357] ASID allocator initialised with 65536 entries\n[    0.334130] printk: console [ramoops-1] enabled\n[    0.334229] pstore: Registered ramoops as persistent store backend\n[    0.334240] ramoops: using 0x400000@0xfd3ff000, ecc: 0\n[    0.417586] iommu: Default domain type: Translated \n[    0.418165] SCSI subsystem initialized\n[    0.418300] usbcore: registered new interface driver usbfs\n[    0.418336] usbcore: registered new interface driver hub\n[    0.418378] usbcore: registered new device driver usb\n[    0.418529] mc: Linux media interface: v0.10\n[    0.418558] videodev: Linux video capture interface: v2.00\n[    0.418931] Advanced Linux Sound Architecture Driver Initialized.\n[    0.419624] Bluetooth: Core ver 2.22\n[    0.419646] NET: Registered protocol family 31\n[    0.419657] Bluetooth: HCI device and connection manager initialized\n[    0.419678] Bluetooth: HCI socket layer initialized\n[    0.419694] Bluetooth: L2CAP socket layer initialized\n[    0.419714] Bluetooth: SCO socket layer initialized\n[    0.419905] nfc: nfc_init: NFC Core ver 0.1\n[    0.419952] NET: Registered protocol family 39\n[    0.420473] clocksource: Switched to clocksource arch_sys_counter\n[    0.420691] VFS: Disk quotas dquot_6.6.0\n[    0.420754] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.421608] NET: Registered protocol family 2\n[    0.421979] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)\n[    0.425412] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)\n[    0.425641] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)\n[    0.426196] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)\n[    0.428707] TCP: Hash tables configured (established 65536 bind 65536)\n[    0.428917] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)\n[    0.429045] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)\n[    0.429303] NET: Registered protocol family 1\n[    0.429684] NET: Registered protocol family 44\n[    0.429717] PCI: CLS 0 bytes, default 64\n[    0.711072] Freeing initrd memory: 29304K\n[    0.715815] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.716807] kvm [1]: IPA Size Limit: 40 bits\n[    0.758672] kvm [1]: GICv3: no GICV resource entry\n[    0.758742] kvm [1]: disabling GICv2 emulation\n[    0.758785] kvm [1]: GIC system register CPU interface enabled\n[    0.759062] kvm [1]: vgic interrupt IRQ9\n[    0.759534] kvm [1]: Protected nVHE mode initialized successfully\n[    0.762723] Initialise system trusted keyrings\n[    0.763293] workingset: timestamp_bits=62 max_order=21 bucket_order=0\n[    0.768557] fuse: init (API version 7.32)\n[    0.807478] Key type asymmetric registered\n[    0.807500] Asymmetric key parser 'x509' registered\n[    0.807563] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)\n[    0.807662] io scheduler ssg registered\n[    0.814269] cacheinfo: Unable to detect cache hierarchy for CPU 0\n[    0.818900] brd: module loaded\n[    0.823112] loop: module loaded\n[    0.824394] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.\n[    0.824408] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    0.824904] MACsec IEEE 802.1AE\n[    0.825551] tun: Universal TUN/TAP device driver, 1.6\n[    0.825604] PPP generic driver version 2.4.2\n[    0.825685] PPP BSD Compression module registered\n[    0.825698] PPP Deflate Compression module registered\n[    0.825744] PPP MPPE Compression module registered\n[    0.825758] NET: Registered protocol family 24\n[    0.825771] PPTP driver version 0.8.5\n[    0.826091] usbcore: registered new interface driver rtl8150\n[    0.826114] usbcore: registered new interface driver r8152\n[    0.826140] usbcore: registered new interface driver asix\n[    0.826163] usbcore: registered new interface driver ax88179_178a\n[    0.826190] usbcore: registered new interface driver cdc_ether\n[    0.826215] usbcore: registered new interface driver cdc_eem\n[    0.826250] usbcore: registered new interface driver cdc_ncm\n[    0.826279] usbcore: registered new interface driver aqc111\n[    0.827056] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.827070] ehci-pci: EHCI PCI platform driver\n[    0.827105] ehci-platform: EHCI generic platform driver\n[    0.828169] usbcore: registered new interface driver cdc_acm\n[    0.828181] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters\n[    0.828343] usbcore: registered new interface driver uas\n[    0.828376] usbcore: registered new interface driver usb-storage\n[    0.828943] dummy_hcd dummy_hcd.0: USB Host+Gadget Emulator, driver 02 May 2005\n[    0.828971] dummy_hcd dummy_hcd.0: Dummy host controller\n[    0.828996] dummy_hcd dummy_hcd.0: new USB bus registered, assigned bus number 1\n[    0.829303] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10\n[    0.829316] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1\n[    0.829332] usb usb1: Product: Dummy host controller\n[    0.829343] usb usb1: Manufacturer: Linux 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 dummy_hcd\n[    0.829359] usb usb1: SerialNumber: dummy_hcd.0\n[    0.829764] hub 1-0:1.0: USB hub found\n[    0.829806] hub 1-0:1.0: 1 port detected\n[    0.830536] usbcore: registered new interface driver xpad\n[    0.830727] usbcore: registered new interface driver uvcvideo\n[    0.830738] USB Video Class driver (1.1.1)\n[    0.830749] gspca_main: v2.14.0 registered\n[    0.831008] device-mapper: uevent: version 1.0.3\n[    0.831174] device-mapper: ioctl: 4.44.0-ioctl (2021-02-01) initialised: dm-devel@redhat.com\n[    0.831758] Bluetooth: HCI UART driver ver 2.3\n[    0.831774] Bluetooth: HCI UART protocol H4 registered\n[    0.831820] Bluetooth: HCI UART protocol LL registered\n[    0.831950] Bluetooth: HCI UART protocol Broadcom registered\n[    0.831979] Bluetooth: HCI UART protocol QCA registered\n[    0.833427] hid: raw HID events driver (C) Jiri Kosina\n[    0.834250] usbcore: registered new interface driver usbhid\n[    0.834261] usbhid: USB HID core driver\n[    0.834386] ashmem: initialized\n[    0.834461] gnss: GNSS driver registered with major 238\n[    0.836951] usbcore: registered new interface driver snd-usb-audio\n[    0.837450] GACT probability NOT on\n[    0.837479] Mirror/redirect action on\n[    0.837535] netem: version 1.3\n[    0.837594] u32 classifier\n[    0.837602]     input device check on\n[    0.837615]     Actions configured\n[    0.838771] xt_time: kernel timezone is -0000\n[    0.838960] ipip: IPv4 and MPLS over IPv4 tunneling driver\n[    0.839359] gre: GRE over IPv4 demultiplexor driver\n[    0.839372] ip_gre: GRE over IPv4 tunneling driver\n[    0.840154] IPv4 over IPsec tunneling driver\n[    0.840891] Initializing XFRM netlink socket\n[    0.840927] IPsec XFRM device driver\n[    0.841315] NET: Registered protocol family 10\n[    0.842760] Segment Routing with IPv6\n[    0.842904] mip6: Mobile IPv6\n[    0.843530] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    0.844203] ip6_gre: GRE over IPv6 tunneling driver\n[    0.844653] NET: Registered protocol family 17\n[    0.844684] NET: Registered protocol family 15\n[    0.844857] Bluetooth: RFCOMM TTY layer initialized\n[    0.844879] Bluetooth: RFCOMM socket layer initialized\n[    0.844892] Bluetooth: RFCOMM ver 1.11\n[    0.844906] Bluetooth: HIDP (Human Interface Emulation) ver 1.2\n[    0.844921] Bluetooth: HIDP socket layer initialized\n[    0.844959] l2tp_core: L2TP core driver, V2.0\n[    0.844979] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    0.844992] 8021q: 802.1Q VLAN Support v1.8\n[    0.845032] tipc: Activated (version 2.0.0)\n[    0.845193] NET: Registered protocol family 30\n[    0.845312] tipc: Started in single node mode\n[    0.845444] NET: Registered protocol family 36\n[    0.845626] NET: Registered protocol family 40\n[    0.846430] registered taskstats version 1\n[    0.846454] Loading compiled-in X.509 certificates\n[    0.846554] Key type .fscrypt registered\n[    0.846565] Key type fscrypt-provisioning registered\n[    0.846768] pstore: Invalid compression size for deflate: 0\n[    0.849110] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    0.850278] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    0.851810] exynos-pmu-if 17460000.exynos-pmu: exynos_pmu_if probe\n[    0.855072] samsung-pinctrl 17a80000.pinctrl: irq number not available\n[    0.855228] samsung-pinctrl 17940000.pinctrl: irq number not available\n[    0.859606] gs-acpm-ipc 17610000.acpm_ipc: acpm_ipc probe\n[    0.860444] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2\n[    0.860494] cfg80211: failed to load regulatory.db\n[    0.861780] input: gpio_keys as /devices/platform/gpio_keys/input/input0\n[    0.863391] [ACPM] acpm framework SRAM dump to dram base: 0x87300000\n[    0.863545] gs-acpm-ipc 17610000.acpm_ipc: acpm_ipc probe done.\n[    0.863821] gs-acpm 17440000.acpm: acpm probe\n[    0.863834] gs-acpm 17440000.acpm: acpm probe done.\n[    0.865302] gs-chipid 10000000.chipid: CPU[GS101]B0 CPU_REV[0x11] Detected\n[    0.865709] ect_probe: Reserved memory for ect: addr=0x0000000090000000, size=3a000\n[    0.865742] exynos-ect exynos-ect: Exynos ect driver probe done!\n[    0.866101] ECT version: 010c\n[    0.867404] vclk initialize for cmucal\n[    0.871598] gs101_cal_data_init: cal data init\n[    0.877544] ACPM-FLEXPMU-DBG:  exynos_flexpmu_dbg_probe: FLEXPMU_DBG buffer with size 1024 found\n[    0.877974] exynos-pm 174d0000.exynos-pm: invalid resource\n[    0.877990] exynos-pm 174d0000.exynos-pm: drvinit: unabled to get the mapped address of mbox_aocf1\n[    0.878127] exynos-pm 174d0000.exynos-pm: initialized\n[    0.879689] unsupport cmucal node 12d\n[    0.879699] unsupport cmucal node 12d\n[    0.879712] ra_get_value:[12d]type : 0\n[    0.884741] GS101: Clock setup completed\n[    0.885847] clocksource: mct-frc: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 77769386669 ns\n[    0.887972] trusty trusty: trusty version: Project: slider, Build: 10238280, Built: 07:04:17 Jun  1 2023\n[    0.887997] trusty trusty: selected api version: 5 (requested 5)\n[    0.891563] samsung,dma-heap-chunk trusty:video_stream_dma_heap: assigned reserved memory node vstream\n[    0.891700] Registered vstream-secure dma-heap successfully\n[    0.891754] samsung,dma-heap-chunk trusty:video_frame_dma_heap: assigned reserved memory node vframe\n[    0.891817] Registered vframe-secure dma-heap successfully\n[    0.891869] samsung,dma-heap-chunk trusty:video_scaler_dma_heap: assigned reserved memory node vscaler\n[    0.891921] Registered vscaler-secure dma-heap successfully\n[    0.892469] Registered tui-secure dma-heap successfully\n[    0.892571] Registered mfc_fw-secure dma-heap successfully\n[    0.892768] Registered system dma-heap successfully\n[    0.892831] Registered system-uncached dma-heap successfully\n[    0.892946] Registered video_system dma-heap successfully\n[    0.893002] Registered video_system-uncached dma-heap successfully\n[    0.893886] gsa 17c90000.gsa-ns: Initialized\n[    0.895147] arm-memlat-mon cpu0-cpugrp:cpu0-cpu-mif-latmon: Memory Latency governor registered.\n[    0.895474] arm-memlat-mon cpu1-cpugrp:cpu1-cpu-mif-latmon: Memory Latency governor registered.\n[    0.895759] arm-memlat-mon cpu2-cpugrp:cpu2-cpu-mif-latmon: Memory Latency governor registered.\n[    0.896065] arm-memlat-mon cpu3-cpugrp:cpu3-cpu-mif-latmon: Memory Latency governor registered.\n[    0.896404] arm-memlat-mon cpu4-cpugrp:cpu4-cpu-mif-latmon: Memory Latency governor registered.\n[    0.896683] arm-memlat-mon cpu5-cpugrp:cpu5-cpu-mif-latmon: Memory Latency governor registered.\n[    0.896970] arm-memlat-mon cpu6-cpugrp:cpu6-cpu-mif-latmon: Memory Latency governor registered.\n[    0.897248] arm-memlat-mon cpu7-cpugrp:cpu7-cpu-mif-latmon: Memory Latency governor registered.\n[    0.897567] exynos-pd 17461c00.pd-eh: on\n[    0.897670] exynos-pd 17461e00.pd-g3d: on\n[    0.897828] exynos-pd 17462000.pd-embedded_g3d: on\n[    0.897875] exynos-pd 17461e00.pd-g3d: has new subdomain pd-embedded_g3d\n[    0.897990] exynos-pd 17462080.pd-hsi0: on\n[    0.898079] exynos-pd 17462280.pd-disp: on\n[    0.898208] exynos-pd 17462200.pd-dpu: on\n[    0.898240] exynos-pd 17462280.pd-disp: has new subdomain pd-dpu\n[    0.898345] exynos-pd 17462300.pd-g2d: on\n[    0.898442] exynos-pd 17462380.pd-mfc: on\n[    0.898537] exynos-pd 17462400.pd-csis: on\n[    0.898633] exynos-pd 17462480.pd-pdp: on\n[    0.898737] exynos-pd 17462680.pd-itp: on\n[    0.898835] exynos-pd 17462500.pd-dns: on\n[    0.898869] exynos-pd 17462680.pd-itp: has new subdomain pd-dns\n[    0.898949] exynos-pd 17462580.pd-g3aa: on\n[    0.899096] exynos-pd 17462600.pd-ipp: on\n[    0.899129] exynos-pd 17462480.pd-pdp: has new subdomain pd-ipp\n[    0.899218] exynos-pd 17462700.pd-mcsc: on\n[    0.899309] exynos-pd 17462780.pd-gdc: on\n[    0.899408] exynos-pd 17462800.pd-tnr: on\n[    0.899512] exynos-pd 17462880.pd-bo: on\n[    0.899611] exynos-pd 17462900.pd-tpu: on\n[    0.899979] exynos_pd_dbg dbgdev-pd-aoc: ignoring dependency for device, assuming no driver\n[    0.900070] exynos_pd_dbg dbgdev-pd-bus1: ignoring dependency for device, assuming no driver\n[    0.900122] exynos_pd_dbg dbgdev-pd-bus2: ignoring dependency for device, assuming no driver\n[    0.904737] exynos_pd_dbg dbgdev-pd-hsi2: ignoring dependency for device, assuming no driver\n[    0.907345] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    0.907363] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    0.907381] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    0.907398] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    0.907410] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    0.907423] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    0.907437] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    0.907450] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    0.907462] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    0.907477] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    0.907492] exynos-dm 17000000.exynos-dm: dm_type: 0(dm_cpu_cl0), available = true\n[    0.907508] exynos-dm 17000000.exynos-dm: dm_type: 1(dm_cpu_cl1), available = true\n[    0.907520] exynos-dm 17000000.exynos-dm: dm_type: 2(dm_cpu_cl2), available = true\n[    0.907534] exynos-dm 17000000.exynos-dm: dm_type: 3(dm_mif), available = true\n[    0.907546] exynos-dm 17000000.exynos-dm: dm_type: 4(dm_int), available = true\n[    0.907558] exynos-dm 17000000.exynos-dm: dm_type: 5(dm_intcam), available = true\n[    0.907566] exynos-dm 17000000.exynos-dm: dm_type: 6(dm_cam), available = true\n[    0.907579] exynos-dm 17000000.exynos-dm: dm_type: 7(dm_tpu), available = true\n[    0.907588] exynos-dm 17000000.exynos-dm: dm_type: 8(dm_tnr), available = true\n[    0.907599] exynos-dm 17000000.exynos-dm: dm_type: 9(dm_disp), available = true\n[    0.907610] exynos-dm 17000000.exynos-dm: dm_type: 10(dm_mfc), available = true\n[    0.907622] exynos-dm 17000000.exynos-dm: dm_type: 11(dm_BO), available = true\n[    0.908652] gs101-devfreq 17000010.devfreq_mif: no power domain\n[    0.908693] gs101-devfreq 17000010.devfreq_mif: MIF clock info exist\n[    0.908722] gs101-devfreq 17000010.devfreq_mif: This does not bts update\n[    0.908739] gs101-devfreq 17000010.devfreq_mif: This does not update fvp\n[    0.908848] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :  3172000Khz,        0uV\n[    0.908865] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :  2730000Khz,        0uV\n[    0.908876] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :  2535000Khz,        0uV\n[    0.908889] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :  2288000Khz,        0uV\n[    0.908904] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :  2028000Khz,        0uV\n[    0.908917] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :  1716000Khz,        0uV\n[    0.908929] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :  1539000Khz,        0uV\n[    0.908941] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :  1352000Khz,        0uV\n[    0.908954] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :  1014000Khz,        0uV\n[    0.908967] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :   845000Khz,        0uV\n[    0.908981] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :   676000Khz,        0uV\n[    0.908992] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :   546000Khz,        0uV\n[    0.909004] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :   421000Khz,        0uV\n[    0.909021] gs101-devfreq 17000010.devfreq_mif: max_freq: 3172000Khz, get_max_freq: 3172000Khz\n[    0.909036] gs101-devfreq 17000010.devfreq_mif: min_freq: 421000Khz, get_min_freq: 421000Khz\n[    0.909048] gs101-devfreq 17000010.devfreq_mif: min_freq: 421000Khz, max_freq: 3172000Khz\n[    0.909062] gs101-devfreq 17000010.devfreq_mif: initial_freq: 3172000Khz, suspend_freq: 421000Khz\n[    0.909265] gs101-devfreq 17000010.devfreq_mif: Initial Frequency: 3172000, Initial Voltage: 0\n[    0.909633] gs101-devfreq 17000010.devfreq_mif: failed to update frequency from PM QoS (-11)\n[    0.909647] gs101-devfreq 17000010.devfreq_mif: failed to update frequency from PM QoS (-11)\n[    0.910318] gs101-devfreq 17000010.devfreq_mif: MIF cdev is initialized!!\n[    0.910334] gs101-devfreq 17000010.devfreq_mif: devfreq is initialized!!\n[    0.910554] gs101-devfreq 17000020.devfreq_int: no power domain\n[    0.910578] gs101-devfreq 17000020.devfreq_int: This does not bts update\n[    0.910589] gs101-devfreq 17000020.devfreq_int: This does not update fvp\n[    0.910602] gs101-devfreq 17000020.devfreq_int: Operation function get_dev_status will not be registered.\n[    0.910615] gs101-devfreq 17000020.devfreq_int: Not registered UM monitor data\n[    0.910628] gs101-devfreq 17000020.devfreq_int: ALT-DVFS is not declared by device tree.\n[    0.910665] gs101-devfreq 17000020.devfreq_int: DEVFREQ :   533000Khz,        0uV\n[    0.910678] gs101-devfreq 17000020.devfreq_int: DEVFREQ :   465000Khz,        0uV\n[    0.910690] gs101-devfreq 17000020.devfreq_int: DEVFREQ :   332000Khz,        0uV\n[    0.910703] gs101-devfreq 17000020.devfreq_int: DEVFREQ :   267000Khz,        0uV\n[    0.910715] gs101-devfreq 17000020.devfreq_int: DEVFREQ :   200000Khz,        0uV\n[    0.910727] gs101-devfreq 17000020.devfreq_int: DEVFREQ :   155000Khz,        0uV\n[    0.910738] gs101-devfreq 17000020.devfreq_int: DEVFREQ :   100000Khz,        0uV\n[    0.910749] gs101-devfreq 17000020.devfreq_int: max_freq: 533000Khz, get_max_freq: 533000Khz\n[    0.910760] gs101-devfreq 17000020.devfreq_int: min_freq: 100000Khz, get_min_freq: 100000Khz\n[    0.910771] gs101-devfreq 17000020.devfreq_int: min_freq: 100000Khz, max_freq: 533000Khz\n[    0.910782] gs101-devfreq 17000020.devfreq_int: initial_freq: 533000Khz, suspend_freq: 100000Khz\n[    0.911955] gs101-devfreq 17000020.devfreq_int: Initial Frequency: 533000, Initial Voltage: 0\n[    0.912090] gs101-devfreq 17000020.devfreq_int: failed to update frequency from PM QoS (-517)\n[    0.912102] gs101-devfreq 17000020.devfreq_int: failed to update frequency from PM QoS (-517)\n[    0.912336] gs101-devfreq 17000020.devfreq_int: INT cdev is initialized!!\n[    0.912346] gs101-devfreq 17000020.devfreq_int: devfreq is initialized!!\n[    0.912525] gs101-devfreq 17000030.devfreq_intcam: no power domain\n[    0.912538] gs101-devfreq 17000030.devfreq_intcam: This doesn't use boot value\n[    0.912547] gs101-devfreq 17000030.devfreq_intcam: This does not use acpm\n[    0.912557] gs101-devfreq 17000030.devfreq_intcam: This does not bts update\n[    0.912566] gs101-devfreq 17000030.devfreq_intcam: This does not update fvp\n[    0.912575] gs101-devfreq 17000030.devfreq_intcam: Operation function get_dev_status will not be registered.\n[    0.912584] gs101-devfreq 17000030.devfreq_intcam: Not registered UM monitor data\n[    0.912593] gs101-devfreq 17000030.devfreq_intcam: ALT-DVFS is not declared by device tree.\n[    0.912607] gs101-devfreq 17000030.devfreq_intcam: DEVFREQ :   664000Khz,        0uV\n[    0.912617] gs101-devfreq 17000030.devfreq_intcam: DEVFREQ :   533000Khz,        0uV\n[    0.912626] gs101-devfreq 17000030.devfreq_intcam: DEVFREQ :   465000Khz,        0uV\n[    0.912635] gs101-devfreq 17000030.devfreq_intcam: DEVFREQ :   332000Khz,        0uV\n[    0.912643] gs101-devfreq 17000030.devfreq_intcam: DEVFREQ :   233000Khz,        0uV\n[    0.912652] gs101-devfreq 17000030.devfreq_intcam: DEVFREQ :   134000Khz,        0uV\n[    0.912660] gs101-devfreq 17000030.devfreq_intcam: DEVFREQ :    67000Khz,        0uV\n[    0.912668] gs101-devfreq 17000030.devfreq_intcam: max_freq: 664000Khz, get_max_freq: 664000Khz\n[    0.912677] gs101-devfreq 17000030.devfreq_intcam: min_freq: 67000Khz, get_min_freq: 67000Khz\n[    0.912684] gs101-devfreq 17000030.devfreq_intcam: min_freq: 67000Khz, max_freq: 664000Khz\n[    0.912693] gs101-devfreq 17000030.devfreq_intcam: initial_freq: 67000Khz, suspend_freq: 67000Khz\n[    0.912701] gs101-devfreq 17000030.devfreq_intcam: Initial Frequency: 67000, Initial Voltage: 0\n[    0.912912] gs101-devfreq 17000030.devfreq_intcam: failed to update frequency from PM QoS (-517)\n[    0.912923] gs101-devfreq 17000030.devfreq_intcam: failed to update frequency from PM QoS (-517)\n[    0.913023] gs101-devfreq 17000030.devfreq_intcam: INTCAM cdev is initialized!!\n[    0.913033] gs101-devfreq 17000030.devfreq_intcam: devfreq is initialized!!\n[    0.913206] gs101-devfreq 17000040.devfreq_disp: no power domain\n[    0.913219] gs101-devfreq 17000040.devfreq_disp: This doesn't use boot value\n[    0.913228] gs101-devfreq 17000040.devfreq_disp: This does not use acpm\n[    0.913237] gs101-devfreq 17000040.devfreq_disp: This does not bts update\n[    0.913246] gs101-devfreq 17000040.devfreq_disp: This does not update fvp\n[    0.913254] gs101-devfreq 17000040.devfreq_disp: Operation function get_dev_status will not be registered.\n[    0.913263] gs101-devfreq 17000040.devfreq_disp: Not registered UM monitor data\n[    0.913270] gs101-devfreq 17000040.devfreq_disp: ALT-DVFS is not declared by device tree.\n[    0.913288] gs101-devfreq 17000040.devfreq_disp: DEVFREQ :   664000Khz,        0uV\n[    0.913298] gs101-devfreq 17000040.devfreq_disp: DEVFREQ :   533000Khz,        0uV\n[    0.913307] gs101-devfreq 17000040.devfreq_disp: DEVFREQ :   465000Khz,        0uV\n[    0.913322] gs101-devfreq 17000040.devfreq_disp: DEVFREQ :   400000Khz,        0uV\n[    0.913331] gs101-devfreq 17000040.devfreq_disp: DEVFREQ :   310000Khz,        0uV\n[    0.913341] gs101-devfreq 17000040.devfreq_disp: DEVFREQ :   267000Khz,        0uV\n[    0.913350] gs101-devfreq 17000040.devfreq_disp: DEVFREQ :   134000Khz,        0uV\n[    0.913360] gs101-devfreq 17000040.devfreq_disp: max_freq: 664000Khz, get_max_freq: 664000Khz\n[    0.913368] gs101-devfreq 17000040.devfreq_disp: min_freq: 134000Khz, get_min_freq: 134000Khz\n[    0.913377] gs101-devfreq 17000040.devfreq_disp: min_freq: 134000Khz, max_freq: 664000Khz\n[    0.913385] gs101-devfreq 17000040.devfreq_disp: initial_freq: 400000Khz, suspend_freq: 134000Khz\n[    0.913394] gs101-devfreq 17000040.devfreq_disp: Initial Frequency: 400000, Initial Voltage: 0\n[    0.913607] gs101-devfreq 17000040.devfreq_disp: failed to update frequency from PM QoS (-517)\n[    0.913619] gs101-devfreq 17000040.devfreq_disp: failed to update frequency from PM QoS (-517)\n[    0.913964] gs101-devfreq 17000040.devfreq_disp: DISP cdev is initialized!!\n[    0.913975] gs101-devfreq 17000040.devfreq_disp: devfreq is initialized!!\n[    0.914153] gs101-devfreq 17000050.devfreq_cam: no power domain\n[    0.914166] gs101-devfreq 17000050.devfreq_cam: This doesn't use boot value\n[    0.914174] gs101-devfreq 17000050.devfreq_cam: This does not use acpm\n[    0.914184] gs101-devfreq 17000050.devfreq_cam: This does not bts update\n[    0.914191] gs101-devfreq 17000050.devfreq_cam: This does not update fvp\n[    0.914200] gs101-devfreq 17000050.devfreq_cam: Operation function get_dev_status will not be registered.\n[    0.914209] gs101-devfreq 17000050.devfreq_cam: Not registered UM monitor data\n[    0.914217] gs101-devfreq 17000050.devfreq_cam: ALT-DVFS is not declared by device tree.\n[    0.914232] gs101-devfreq 17000050.devfreq_cam: DEVFREQ :   664000Khz,        0uV\n[    0.914242] gs101-devfreq 17000050.devfreq_cam: DEVFREQ :   533000Khz,        0uV\n[    0.914252] gs101-devfreq 17000050.devfreq_cam: DEVFREQ :   465000Khz,        0uV\n[    0.914262] gs101-devfreq 17000050.devfreq_cam: DEVFREQ :   332000Khz,        0uV\n[    0.914271] gs101-devfreq 17000050.devfreq_cam: DEVFREQ :   233000Khz,        0uV\n[    0.914280] gs101-devfreq 17000050.devfreq_cam: DEVFREQ :   134000Khz,        0uV\n[    0.914289] gs101-devfreq 17000050.devfreq_cam: DEVFREQ :    67000Khz,        0uV\n[    0.914298] gs101-devfreq 17000050.devfreq_cam: max_freq: 664000Khz, get_max_freq: 664000Khz\n[    0.914306] gs101-devfreq 17000050.devfreq_cam: min_freq: 67000Khz, get_min_freq: 67000Khz\n[    0.914314] gs101-devfreq 17000050.devfreq_cam: min_freq: 67000Khz, max_freq: 664000Khz\n[    0.914322] gs101-devfreq 17000050.devfreq_cam: initial_freq: 67000Khz, suspend_freq: 67000Khz\n[    0.914330] gs101-devfreq 17000050.devfreq_cam: Initial Frequency: 67000, Initial Voltage: 0\n[    0.914542] gs101-devfreq 17000050.devfreq_cam: failed to update frequency from PM QoS (-517)\n[    0.914553] gs101-devfreq 17000050.devfreq_cam: failed to update frequency from PM QoS (-517)\n[    0.914671] gs101-devfreq 17000050.devfreq_cam: CAM cdev is initialized!!\n[    0.914680] gs101-devfreq 17000050.devfreq_cam: devfreq is initialized!!\n[    0.914869] gs101-devfreq 17000060.devfreq_tnr: no power domain\n[    0.914880] gs101-devfreq 17000060.devfreq_tnr: This doesn't use boot value\n[    0.914890] gs101-devfreq 17000060.devfreq_tnr: This does not use acpm\n[    0.914898] gs101-devfreq 17000060.devfreq_tnr: This does not bts update\n[    0.914906] gs101-devfreq 17000060.devfreq_tnr: This does not update fvp\n[    0.914916] gs101-devfreq 17000060.devfreq_tnr: Operation function get_dev_status will not be registered.\n[    0.914924] gs101-devfreq 17000060.devfreq_tnr: Not registered UM monitor data\n[    0.914933] gs101-devfreq 17000060.devfreq_tnr: ALT-DVFS is not declared by device tree.\n[    0.914948] gs101-devfreq 17000060.devfreq_tnr: DEVFREQ :   664000Khz,        0uV\n[    0.914957] gs101-devfreq 17000060.devfreq_tnr: DEVFREQ :   533000Khz,        0uV\n[    0.914968] gs101-devfreq 17000060.devfreq_tnr: DEVFREQ :   465000Khz,        0uV\n[    0.914978] gs101-devfreq 17000060.devfreq_tnr: DEVFREQ :   332000Khz,        0uV\n[    0.914987] gs101-devfreq 17000060.devfreq_tnr: DEVFREQ :   233000Khz,        0uV\n[    0.914996] gs101-devfreq 17000060.devfreq_tnr: DEVFREQ :   134000Khz,        0uV\n[    0.915005] gs101-devfreq 17000060.devfreq_tnr: DEVFREQ :    67000Khz,        0uV\n[    0.915013] gs101-devfreq 17000060.devfreq_tnr: max_freq: 664000Khz, get_max_freq: 664000Khz\n[    0.915022] gs101-devfreq 17000060.devfreq_tnr: min_freq: 67000Khz, get_min_freq: 67000Khz\n[    0.915030] gs101-devfreq 17000060.devfreq_tnr: min_freq: 67000Khz, max_freq: 664000Khz\n[    0.915039] gs101-devfreq 17000060.devfreq_tnr: initial_freq: 67000Khz, suspend_freq: 67000Khz\n[    0.915050] gs101-devfreq 17000060.devfreq_tnr: Initial Frequency: 67000, Initial Voltage: 0\n[    0.915265] gs101-devfreq 17000060.devfreq_tnr: failed to update frequency from PM QoS (-517)\n[    0.915276] gs101-devfreq 17000060.devfreq_tnr: failed to update frequency from PM QoS (-517)\n[    0.915366] gs101-devfreq 17000060.devfreq_tnr: TNR cdev is initialized!!\n[    0.915376] gs101-devfreq 17000060.devfreq_tnr: devfreq is initialized!!\n[    0.915546] gs101-devfreq 17000070.devfreq_mfc: no power domain\n[    0.915560] gs101-devfreq 17000070.devfreq_mfc: This doesn't use boot value\n[    0.915569] gs101-devfreq 17000070.devfreq_mfc: This does not use acpm\n[    0.915578] gs101-devfreq 17000070.devfreq_mfc: This does not bts update\n[    0.915587] gs101-devfreq 17000070.devfreq_mfc: This does not update fvp\n[    0.915595] gs101-devfreq 17000070.devfreq_mfc: Operation function get_dev_status will not be registered.\n[    0.915604] gs101-devfreq 17000070.devfreq_mfc: Not registered UM monitor data\n[    0.915612] gs101-devfreq 17000070.devfreq_mfc: ALT-DVFS is not declared by device tree.\n[    0.915627] gs101-devfreq 17000070.devfreq_mfc: DEVFREQ :   711000Khz,        0uV\n[    0.915636] gs101-devfreq 17000070.devfreq_mfc: DEVFREQ :   664000Khz,        0uV\n[    0.915645] gs101-devfreq 17000070.devfreq_mfc: DEVFREQ :   533000Khz,        0uV\n[    0.915655] gs101-devfreq 17000070.devfreq_mfc: DEVFREQ :   465000Khz,        0uV\n[    0.915664] gs101-devfreq 17000070.devfreq_mfc: DEVFREQ :   356000Khz,        0uV\n[    0.915673] gs101-devfreq 17000070.devfreq_mfc: DEVFREQ :   267000Khz,        0uV\n[    0.915682] gs101-devfreq 17000070.devfreq_mfc: DEVFREQ :   100000Khz,        0uV\n[    0.915690] gs101-devfreq 17000070.devfreq_mfc: max_freq: 711000Khz, get_max_freq: 711000Khz\n[    0.915699] gs101-devfreq 17000070.devfreq_mfc: min_freq: 100000Khz, get_min_freq: 100000Khz\n[    0.915708] gs101-devfreq 17000070.devfreq_mfc: min_freq: 100000Khz, max_freq: 711000Khz\n[    0.915716] gs101-devfreq 17000070.devfreq_mfc: initial_freq: 100000Khz, suspend_freq: 100000Khz\n[    0.915725] gs101-devfreq 17000070.devfreq_mfc: Initial Frequency: 100000, Initial Voltage: 0\n[    0.915925] gs101-devfreq 17000070.devfreq_mfc: failed to update frequency from PM QoS (-517)\n[    0.915936] gs101-devfreq 17000070.devfreq_mfc: failed to update frequency from PM QoS (-517)\n[    0.916028] gs101-devfreq 17000070.devfreq_mfc: MFC cdev is initialized!!\n[    0.916037] gs101-devfreq 17000070.devfreq_mfc: devfreq is initialized!!\n[    0.916209] gs101-devfreq 17000080.devfreq_bo: no power domain\n[    0.916222] gs101-devfreq 17000080.devfreq_bo: This doesn't use boot value\n[    0.916232] gs101-devfreq 17000080.devfreq_bo: This does not use acpm\n[    0.916241] gs101-devfreq 17000080.devfreq_bo: This does not bts update\n[    0.916248] gs101-devfreq 17000080.devfreq_bo: This does not update fvp\n[    0.916256] gs101-devfreq 17000080.devfreq_bo: Operation function get_dev_status will not be registered.\n[    0.916265] gs101-devfreq 17000080.devfreq_bo: Not registered UM monitor data\n[    0.916274] gs101-devfreq 17000080.devfreq_bo: ALT-DVFS is not declared by device tree.\n[    0.916289] gs101-devfreq 17000080.devfreq_bo: DEVFREQ :   620000Khz,        0uV\n[    0.916299] gs101-devfreq 17000080.devfreq_bo: DEVFREQ :   533000Khz,        0uV\n[    0.916309] gs101-devfreq 17000080.devfreq_bo: DEVFREQ :   465000Khz,        0uV\n[    0.916319] gs101-devfreq 17000080.devfreq_bo: DEVFREQ :   400000Khz,        0uV\n[    0.916331] gs101-devfreq 17000080.devfreq_bo: DEVFREQ :   310000Khz,        0uV\n[    0.916340] gs101-devfreq 17000080.devfreq_bo: DEVFREQ :   222000Khz,        0uV\n[    0.916349] gs101-devfreq 17000080.devfreq_bo: DEVFREQ :    95000Khz,        0uV\n[    0.916358] gs101-devfreq 17000080.devfreq_bo: max_freq: 620000Khz, get_max_freq: 620000Khz\n[    0.916366] gs101-devfreq 17000080.devfreq_bo: min_freq: 95000Khz, get_min_freq: 95000Khz\n[    0.916374] gs101-devfreq 17000080.devfreq_bo: min_freq: 95000Khz, max_freq: 620000Khz\n[    0.916383] gs101-devfreq 17000080.devfreq_bo: initial_freq: 95000Khz, suspend_freq: 95000Khz\n[    0.916394] gs101-devfreq 17000080.devfreq_bo: Initial Frequency: 95000, Initial Voltage: 0\n[    0.916594] gs101-devfreq 17000080.devfreq_bo: failed to update frequency from PM QoS (-517)\n[    0.916606] gs101-devfreq 17000080.devfreq_bo: failed to update frequency from PM QoS (-517)\n[    0.916696] gs101-devfreq 17000080.devfreq_bo: BO cdev is initialized!!\n[    0.916707] gs101-devfreq 17000080.devfreq_bo: devfreq is initialized!!\n[    0.917609] google,slc-acpm slc-acpm: channel 10\n[    0.917748] google,slc-acpm slc-acpm: found valid acpm firmware 1.8.\n[    0.917762] google,slc-acpm slc-acpm: Asynchronous notification enabled\n[    0.918284] gsa-gsc 17c90000.gsa-ns:gsa_gsc@0: Initiliazed\n[    0.918348] load_integrated_module: module 'gsc' not found\n[    0.920162] exynos-bts exynos-bts: exynos_bts_debugfs_init failed\n[    0.920172] bts_probe successfully done.\n[    0.921448] s3c2410-wdt 10060000.watchdog_cl0: watchdog cluster0 probe\n[    0.921462] s3c2410-wdt 10060000.watchdog_cl0: It is not a multistage watchdog.\n[    0.921493] s3c2410-wdt 10060000.watchdog_cl0: NONCPU_INT_EN reg val: 1fc\n[    0.921510] s3c2410-wdt 10060000.watchdog_cl0: probe: mapped reg_base=(____ptrval____)\n[    0.921657] s3c2410-wdt 10060000.watchdog_cl0: Watchdog cluster 0 stop done, WTCON = 15718\n[    0.921676] s3c2410-wdt 10060000.watchdog_cl0: NONCPU_OUT set true done, val = 7fd10, en= 1\n[    0.921691] s3c2410-wdt 10060000.watchdog_cl0: NONCPU_INT_EN set true done, val = 1fc, mask = 0\n[    0.921715] s3c2410-wdt 10060000.watchdog_cl0: Watchdog cluster 0 stop done, WTCON = 15718\n[    0.921727] s3c2410-wdt 10060000.watchdog_cl0: watchdog cluster 0, inactive, reset disabled, irq disabled\n[    0.921736] s3c2410-wdt 10060000.watchdog_cl0: DBGACK enabled\n[    0.921746] s3c2410-wdt 10060000.watchdog_cl0: windowed watchdog disabled, wtmincnt=1ff5e\n[    0.921752] Multistage watchdog disabled\n[    0.921803] s3c2410-wdt 10070000.watchdog_cl1: watchdog cluster1 probe\n[    0.921826] s3c2410-wdt 10070000.watchdog_cl1: NONCPU_INT_EN reg val: 4\n[    0.921842] s3c2410-wdt 10070000.watchdog_cl1: probe: mapped reg_base=(____ptrval____)\n[    0.921885] s3c2410-wdt 10070000.watchdog_cl1: s3c2410wdt_multistage_wdt_stop: cluster 1 stop done, WTCON 00015701\n[    0.921897] s3c2410-wdt 10070000.watchdog_cl1: Watchdog cluster 1 stop done, WTCON = 15700\n[    0.921911] s3c2410-wdt 10070000.watchdog_cl1: NONCPU_OUT set true done, val = 88, en= 1\n[    0.921922] s3c2410-wdt 10070000.watchdog_cl1: s3c2410wdt_multistage_wdt_stop: cluster 1 stop done, WTCON 00015700\n[    0.921933] s3c2410-wdt 10070000.watchdog_cl1: Watchdog cluster 1 stop done, WTCON = 15700\n[    0.921945] s3c2410-wdt 10070000.watchdog_cl1: watchdog cluster 1, inactive, reset disabled, irq disabled\n[    0.921953] s3c2410-wdt 10070000.watchdog_cl1: DBGACK enabled\n[    0.921962] s3c2410-wdt 10070000.watchdog_cl1: windowed watchdog disabled, wtmincnt=19918\n[    0.921968] Multistage watchdog enabled\n[    0.922234] s2mpg10:s2mpg10_i2c_init\n[    0.922296] s2mpg11:s2mpg11_i2c_init\n[    0.923274] exynos-uart 175b0000.serial: set usi mode - 0x1\n[    0.923316] exynos-uart 175b0000.serial: IRQ index 1 not found\n[    0.923327] exynos-uart 175b0000.serial: No explicit src-clk. Use default src-clk\n[    0.923365] 175b0000.serial: ttySAC16 at MMIO 0x175b0000 (irq = 189, base_baud = 0) is a S3C6400/10\n[    0.923760] logbuffer: id:tty16 registered\n[    0.923871] exynos-uart 10a00000.uart: usi offset is not specified\n[    0.923881] exynos-uart 10a00000.uart: no lookup for usi-phandle.\n[    0.923914] exynos-uart 10a00000.uart: IRQ index 1 not found\n[    0.923922] exynos-uart 10a00000.uart: No explicit src-clk. Use default src-clk\n[    0.923957] 10a00000.uart: ttySAC0 at MMIO 0x10a00000 (irq = 308, base_baud = 0) is a S3C6400/10\n[    0.925376] samsung-sysmmu 1a090000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.925502] samsung-sysmmu 1ca40000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.925919] samsung-sysmmu 1a510000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.926225] samsung-sysmmu 1a540000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.926589] samsung-sysmmu 1b080000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.926951] samsung-sysmmu 1c100000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.927274] samsung-sysmmu 1c110000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.927584] samsung-sysmmu 1c120000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.927895] samsung-sysmmu 1c660000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.928159] samsung-sysmmu 1c690000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.928417] samsung-sysmmu 1c710000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.928690] samsung-sysmmu 1a880000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.928997] samsung-sysmmu 1baa0000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.929313] samsung-sysmmu 1bad0000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.929619] samsung-sysmmu 1bb00000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.929943] samsung-sysmmu 1ad00000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.930342] samsung-sysmmu 1b780000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.930674] samsung-sysmmu 1b7b0000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.930987] samsung-sysmmu 1b7e0000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.931301] samsung-sysmmu 1c870000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.931567] samsung-sysmmu 1c8a0000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.931830] samsung-sysmmu 1bc70000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.932139] samsung-sysmmu 1bca0000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.932450] samsung-sysmmu 1bcd0000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.932763] samsung-sysmmu 1bd00000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.933086] samsung-sysmmu 1bd30000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.933401] samsung-sysmmu 1cc40000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    0.934223] exynos-ufs 14700000.ufs: exynos_ufs_probe: start\n[    0.934234] exynos-ufs 14700000.ufs: ===============================\n[    0.934251] exynos-ufs 14700000.ufs: reg_hci    (____ptrval____)\n[    0.934265] exynos-ufs 14700000.ufs: reg_unipro (____ptrval____)\n[    0.934282] exynos-ufs 14700000.ufs: reg_ufsp   (____ptrval____)\n[    0.934298] exynos-ufs 14700000.ufs: reg_phy    (____ptrval____)\n[    0.934310] exynos-ufs 14700000.ufs: reg_cport  (____ptrval____)\n[    0.934318] exynos-ufs 14700000.ufs: \n[    0.934378] exynos-ufs 14700000.ufs: ufs-iocc: offset 0x710, mask 0x3, value 0x3\n[    0.934388] exynos-ufs 14700000.ufs: No ufs-pm-qos node, not guarantee pm qos\n[    0.934398] exynos-ufs 14700000.ufs: evt version : 1, board: 1\n[    0.934407] exynos-ufs 14700000.ufs: ===============================\n[    0.935413] exynos-ufs 14700000.ufs: ufshcd_populate_vreg: Unable to find vdd-hba-supply regulator, assuming enabled\n[    0.935428] exynos-ufs 14700000.ufs: ufshcd_populate_vreg: unable to find vcc-max-microamp\n[    0.935437] exynos-ufs 14700000.ufs: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    0.935447] exynos-ufs 14700000.ufs: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled\n[    0.939468] exynos-ufs 14700000.ufs: configured KDN with MKE=1, DT=0, KE=0\n[    0.939502] exynos-ufs 14700000.ufs: enabled inline encryption support with wrapped keys\n[    0.941553] scsi host0: ufshcd\n[    0.941794] exynos-ufs 14700000.ufs: kdn: evicting keyslot 0\n[    0.942113] exynos-ufs 14700000.ufs: kdn: evicting keyslot 1\n[    0.942388] exynos-ufs 14700000.ufs: kdn: evicting keyslot 2\n[    0.942670] exynos-ufs 14700000.ufs: kdn: evicting keyslot 3\n[    0.942957] exynos-ufs 14700000.ufs: kdn: evicting keyslot 4\n[    0.943244] exynos-ufs 14700000.ufs: kdn: evicting keyslot 5\n[    0.943512] exynos-ufs 14700000.ufs: kdn: evicting keyslot 6\n[    0.943802] exynos-ufs 14700000.ufs: kdn: evicting keyslot 7\n[    0.944083] exynos-ufs 14700000.ufs: kdn: evicting keyslot 8\n[    0.944352] exynos-ufs 14700000.ufs: kdn: evicting keyslot 9\n[    0.944643] exynos-ufs 14700000.ufs: kdn: evicting keyslot 10\n[    0.944933] exynos-ufs 14700000.ufs: kdn: evicting keyslot 11\n[    0.945225] exynos-ufs 14700000.ufs: kdn: evicting keyslot 12\n[    0.945505] exynos-ufs 14700000.ufs: kdn: evicting keyslot 13\n[    0.945787] exynos-ufs 14700000.ufs: kdn: evicting keyslot 14\n[    0.946092] exynos-ufs 14700000.ufs: mclk: 133248000\n[    0.946111] exynos-ufs 14700000.ufs: kdn: restoring keys\n[    0.947786] exynos-ufs 14700000.ufs: kdn: restored keys\n[    0.951294] exynos5-hsi2c 10900000.hsi2c: set usi mode - 0x4\n[    0.951381] exynos5-hsi2c 10900000.hsi2c: exynos5_i2c_set_timing IPCLK = 199680000 OP_CLK = 1000000 DIV = 11 TIMING FS1(FS+) = 0x1E0FF00 TIMING FS2(FS+) = 0x30003E0 TIMING FS3(FS+) = 0xB0000\n[    0.952039] exynos5-hsi2c 10910000.hsi2c: set usi mode - 0x4\n[    0.952111] exynos5-hsi2c 10910000.hsi2c: exynos5_i2c_set_timing IPCLK = 199680000 OP_CLK = 400000 DIV = 31 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x1F0000\n[    0.952435] exynos5-hsi2c 10920000.hsi2c: set usi mode - 0x4\n[    0.952502] exynos5-hsi2c 10920000.hsi2c: exynos5_i2c_set_timing IPCLK = 199680000 OP_CLK = 950000 DIV = 12 TIMING FS1(FS+) = 0x1E0FF00 TIMING FS2(FS+) = 0x30003E0 TIMING FS3(FS+) = 0xC0000\n[    0.952808] exynos5-hsi2c 10960000.hsi2c: set usi mode - 0x4\n[    0.952874] exynos5-hsi2c 10960000.hsi2c: exynos5_i2c_set_timing IPCLK = 199680000 OP_CLK = 370000 DIV = 33 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x210000\n[    0.953727] exynos5-hsi2c 10970000.hsi2c: set usi mode - 0x4\n[    0.953795] exynos5-hsi2c 10970000.hsi2c: exynos5_i2c_set_timing IPCLK = 199680000 OP_CLK = 400000 DIV = 31 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x1F0000\n[    0.954246] at24 4-0050: supply vcc not found, using dummy regulator\n[    0.954947] at24 4-0050: 1024 byte 24c08 EEPROM, writable, 1 bytes/write\n[    0.955705] exynos5-hsi2c 10d50000.hsi2c: set usi mode - 0x4\n[    0.955776] exynos5-hsi2c 10d50000.hsi2c: exynos5_i2c_set_timing IPCLK = 199680000 OP_CLK = 400000 DIV = 31 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x1F0000\n[    0.957154] i2c-acpm acpm_mfd_bus@17500000: acpm mfd bus driver probe started\n[    0.957807] s2mpg10:s2mpg10_i2c_probe\n[    0.957828] of_s2mpg10_dt: irq-gpio: 6\n[    0.970770] s2mpg10_i2c_probe device found: rev.0x 1\n[    0.970810] s2mpg10:s2mpg10_irq_init irq=377, irq->gpio=6\n[    0.971450] exynos-ufs 14700000.ufs: PA_ActiveTxDataLanes(2), PA_ActiveRxDataLanes(2)\n[    0.971460] exynos-ufs 14700000.ufs: max_gear(4), PA_MaxRxHSGear(4)\n[    0.971472] exynos-ufs 14700000.ufs: UFS link start-up passes\n[    0.975504] exynos-ufs 14700000.ufs: ufshpb_get_dev_info: HPB 103 version is not supported.\n[    0.976189] exynos-ufs 14700000.ufs: ufshcd_query_flag: Sending flag query for idn 18 failed, err = 253\n[    0.976866] exynos-ufs 14700000.ufs: ufshcd_query_flag: Sending flag query for idn 18 failed, err = 253\n[    0.977546] exynos-ufs 14700000.ufs: ufshcd_query_flag: Sending flag query for idn 18 failed, err = 253\n[    0.977566] exynos-ufs 14700000.ufs: ufshcd_query_flag_retry: query attribute, opcode 5, idn 18, failed with error 253 after 3 retires\n[    0.981706] exynos-ufs 14700000.ufs: UFS device initialized\n[    0.985554] exynos-ufs 14700000.ufs: PA_ActiveTxDataLanes(2),PA_ActiveRxDataLanes(2)\n[    0.985652] exynos-ufs 14700000.ufs: Power mode change(0): M(1)G(4)L(2)HS-series(2)\n[    0.985661] exynos-ufs 14700000.ufs: HS mode config passes\n[    0.985930] scsi 0:0:0:49488: Well-known LUN    SKhynix  HN8T05BZGKX015   G001 PQ: 0 ANSI: 6\n[    0.986351] ufs_device_wlun 0:0:0:49488: Attached scsi generic sg0 type 30\n[    0.986722] scsi 0:0:0:49476: Well-known LUN    SKhynix  HN8T05BZGKX015   G001 PQ: 0 ANSI: 6\n[    0.987084] scsi 0:0:0:49476: Attached scsi generic sg1 type 30\n[    0.987329] scsi 0:0:0:49456: Well-known LUN    SKhynix  HN8T05BZGKX015   G001 PQ: 0 ANSI: 6\n[    0.987723] scsi 0:0:0:49456: Attached scsi generic sg2 type 30\n[    0.988163] scsi 0:0:0:0: Direct-Access     SKhynix  HN8T05BZGKX015   G001 PQ: 0 ANSI: 6\n[    0.988538] scsi 0:0:0:0: Attached scsi generic sg3 type 0\n[    0.989021] scsi 0:0:0:1: Direct-Access     SKhynix  HN8T05BZGKX015   G001 PQ: 0 ANSI: 6\n[    0.989472] scsi 0:0:0:1: Attached scsi generic sg4 type 0\n[    0.989794] sd 0:0:0:0: [sda] 31196160 4096-byte logical blocks: (128 GB/119 GiB)\n[    0.989842] scsi 0:0:0:2: Direct-Access     SKhynix  HN8T05BZGKX015   G001 PQ: 0 ANSI: 6\n[    0.989869] sd 0:0:0:0: [sda] Write Protect is off\n[    0.989900] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    0.990002] sd 0:0:0:0: [sda] Disabling FUA\n[    0.990024] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA\n[    0.990107] sd 0:0:0:0: [sda] Optimal transfer size 524288 bytes\n[    0.990310] scsi 0:0:0:2: Attached scsi generic sg5 type 0\n[    0.990619] scsi 0:0:0:3: Direct-Access     SKhynix  HN8T05BZGKX015   G001 PQ: 0 ANSI: 6\n[    0.991026] scsi 0:0:0:3: Attached scsi generic sg6 type 0\n[    0.992089] sd 0:0:0:2: [sdb] 8192 4096-byte logical blocks: (33.6 MB/32.0 MiB)\n[    0.992160] sd 0:0:0:2: [sdb] Write Protect is off\n[    0.992170] sd 0:0:0:2: [sdb] Mode Sense: 00 32 00 10\n[    0.992400] sd 0:0:0:2: [sdb] Disabling FUA\n[    0.992412] sd 0:0:0:2: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA\n[    0.992554] sd 0:0:0:2: [sdb] Optimal transfer size 524288 bytes\n[    0.992842]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21 sda22 sda23 sda24 sda25 sda26 sda27\n[    0.994840] sd 0:0:0:0: [sda] Attached SCSI disk\n[    0.995322] sd 0:0:0:1: [sdc] 8192 4096-byte logical blocks: (33.6 MB/32.0 MiB)\n[    0.995516] sd 0:0:0:1: [sdc] Write Protect is off\n[    0.995630] sd 0:0:0:1: [sdc] Mode Sense: 00 32 00 10\n[    0.995917] sd 0:0:0:1: [sdc] Disabling FUA\n[    0.996015] sd 0:0:0:1: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA\n[    0.996148] sd 0:0:0:1: [sdc] Optimal transfer size 524288 bytes\n[    0.996394]  sdb: sdb1 sdb2 sdb3 sdb4 sdb5 sdb6 sdb7 sdb8 sdb9 sdb10\n[    0.997608] sd 0:0:0:2: [sdb] Attached SCSI disk\n[    0.999101]  sdc: sdc1 sdc2 sdc3 sdc4 sdc5 sdc6 sdc7 sdc8 sdc9 sdc10\n[    1.000005] sd 0:0:0:3: [sdd] 1024 4096-byte logical blocks: (4.19 MB/4.00 MiB)\n[    1.000101] sd 0:0:0:3: [sdd] Write Protect is off\n[    1.000125] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.000277] sd 0:0:0:3: [sdd] Disabling FUA\n[    1.000302] sd 0:0:0:3: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA\n[    1.000425] sd 0:0:0:3: [sdd] Optimal transfer size 524288 bytes\n[    1.000642] sd 0:0:0:1: [sdc] Attached SCSI disk\n[    1.002211]  sdd: sdd1 sdd2\n[    1.003084] sd 0:0:0:3: [sdd] Attached SCSI disk\n[    1.012618] s2mpg10:s2mpg10_irq_init s2mpg10_COMMON_INT_MASK=0x06\n[    1.050504] OCP BUCK_OCP_CTRL1: 0xbb\n[    1.050636] OCP BUCK_OCP_CTRL2: 0xbb\n[    1.050767] OCP BUCK_OCP_CTRL3: 0xbb\n[    1.050897] OCP BUCK_OCP_CTRL4: 0xbb\n[    1.051026] OCP BUCK_OCP_CTRL5: 0xbb\n[    1.051159] SMPL_WARN_CTRL : 0x64\n[    1.051290] B2M_OCP_WARN : 0x88\n[    1.051420] B3M_OCP_WARN : 0x8d\n[    1.051551] B10M_OCP_WARN : 0x8d\n[    1.051683] B2M_SOFT_OCP_WARN : 0x88\n[    1.051814] B3M_SOFT_OCP_WARN : 0x8d\n[    1.051945] B10M_SOFT_OCP_WARN : 0x94\n[    1.052077] create_s2mpg10_pmic_sysfs: master pmic sysfs start\n[    1.054400] s2mpg10-rtc s2mpg10-rtc: s2m_rtc_enable_wtsr_smpl: WTSR: enable, COLDRST : disable, SMPL: disable\n[    1.058562] s2mpg10-rtc s2mpg10-rtc: s2m_rtc_read_time: 2023-10-27 08:57:40(0x20)AM\n[    1.060154] s2mpg10-rtc s2mpg10-rtc: s2m_rtc_read_alarm: 2023-10-27 08:56:05(5)\n[    1.061882] s2mpg10-rtc s2mpg10-rtc: s2m_rtc_read_time: 2023-10-27 08:57:40(0x20)AM\n[    1.062150] s2mpg10-rtc s2mpg10-rtc: registered as rtc0\n[    1.063743] s2mpg10-rtc s2mpg10-rtc: s2m_rtc_read_time: 2023-10-27 08:57:40(0x20)AM\n[    1.063772] s2mpg10-rtc s2mpg10-rtc: setting system clock to 2023-10-27T08:57:40 UTC (1698397060)\n[    1.064928] s2mpg10_meter_probe: DSM_TRIM_OFFSET: 0x2a\n[    1.064936] s2mpg10_meter_probe: BUCK_METER_TRIM3: 0xc8\n[    1.064944] s2mpg10_meter_probe: dsm_trim: 234, dsm_result: 6\n[    1.065269] create_s2mpg10_meter_sysfs: s2mpg10 meter sysfs start\n[    1.066830] exynos-pcie-rc 11920000.pcie: ## PCIe RC PROBE start\n[    1.066879] exynos-pcie-rc 11920000.pcie: ## PCIe ch 0 ##\n[    1.067007] logbuffer: id:pcie0 registered\n[    1.067030] exynos-pcie-rc 11920000.pcie: Failed to parse the number of chip-ver, default '0'\n[    1.067038] exynos-pcie-rc 11920000.pcie: parse the number of lanes: 2\n[    1.067046] exynos-pcie-rc 11920000.pcie: Unset separated-msi value, default '0'\n[    1.067055] exynos-pcie-rc 11920000.pcie: Cache Coherency unit is ENABLED.\n[    1.067063] exynos-pcie-rc 11920000.pcie: MSI is ENABLED.\n[    1.067072] exynos-pcie-rc 11920000.pcie: ## PCIe use SICD\n[    1.067080] exynos-pcie-rc 11920000.pcie: ## PCIe use PCIE ON Sleep\n[    1.067088] exynos-pcie-rc 11920000.pcie: PCIe SysMMU is DISABLED.\n[    1.067096] exynos-pcie-rc 11920000.pcie: PCIe I/A is ENABLED.\n[    1.067104] exynos-pcie-rc 11920000.pcie: PCIe L1SS(L1.2) is ENABLED.\n[    1.067113] exynos-pcie-rc 11920000.pcie: PCIe Secure ATU is DISABLED.\n[    1.067127] exynos-pcie-rc 11920000.pcie: exynos_pcie_rc_parse_dt: pcie int_min_lock = 200000\n[    1.067151] exynos-pcie-rc 11920000.pcie: wlan gpio is not defined -> don't use wifi through pcie#0\n[    1.067165] exynos-pcie-rc 11920000.pcie: ssd gpio is not defined -> don't use ssd through pcie#0\n[    1.067253] exynos-pcie-rc 11920000.pcie: No idle pin state(but it's OK)!!\n[    1.067308] exynos-pcie-rc 11920000.pcie: Initialize PHY functions.\n[    1.067315] exynos-pcie-rc 11920000.pcie: Initialize PCIe function.\n[    1.067436] exynos-pcie-rc 11920000.pcie: AFC cal mode set to restart\n[    1.067476] exynos-pcie-rc 11920000.pcie: PCIe cap [0x1][Power Management]: 0x40\n[    1.067485] exynos-pcie-rc 11920000.pcie: PCIe cap [0x5][Message Signalled Interrupts]: 0x50\n[    1.067493] exynos-pcie-rc 11920000.pcie: PCIe cap [0x10][PCI Express]: 0x70\n[    1.067502] exynos-pcie-rc 11920000.pcie: PCIe ext cap [0x1][Advanced Error Reporting]: 0x100\n[    1.067510] exynos-pcie-rc 11920000.pcie: PCIe ext cap [0x19][Secondary PCIe Capability]: 0x148\n[    1.067519] exynos-pcie-rc 11920000.pcie: PCIe ext cap [0x1e][L1 PM Substates]: 0x194\n[    1.067527] exynos-pcie-rc 11920000.pcie: PCIe ext cap [0x25][Data Link Feature]: 0x1a4\n[    1.067535] exynos-pcie-rc 11920000.pcie: PCIe ext cap [0x26][Physical Layer 16GT/s]: 0x158\n[    1.067544] exynos-pcie-rc 11920000.pcie: PCIe ext cap [0x27][Physical Layer 16GT/s Margining]: 0x17c\n[    1.067607] exynos-pcie-rc 11920000.pcie: host bridge /pcie@11920000 ranges:\n[    1.067620] exynos-pcie-rc 11920000.pcie:   No bus range found for /pcie@11920000, using [bus 00-ff]\n[    1.067636] exynos-pcie-rc 11920000.pcie:      MEM 0x0040000000..0x0040feffff -> 0x0040000000\n[    1.067689] exynos-pcie-rc 11920000.pcie: invalid resource\n[    1.067814] exynos-pcie-rc 11920000.pcie: PCI host bridge to bus 0000:00\n[    1.067824] pci_bus 0000:00: root bus resource [bus 00-ff]\n[    1.067832] pci_bus 0000:00: root bus resource [mem 0x40000000-0x40feffff]\n[    1.067890] pci 0000:00:00.0: [144d:ecec] type 01 class 0x060400\n[    1.068060] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold\n[    1.080794] i2c-acpm acpm_mfd_bus@17500000: acpm mfd bus driver probe was succeeded\n[    1.080986] i2c-acpm acpm_mfd_bus@17510000: acpm mfd bus driver probe started\n[    1.081489] s2mpg11:s2mpg11_i2c_probe\n[    1.081507] of_s2mpg11_dt: irq-gpio: 7\n[    1.090569] pci 0000:00:00.0: PCI bridge to [bus 01-ff]\n[    1.090601] [exynos_pcie_quirks] async suspend disabled\n[    1.091669] s2mpg11_i2c_probe device found: rev.0x 1\n[    1.091735] s2mpg11:s2mpg11_irq_init irq=455, irq->gpio=7\n[    1.092290] pcieport 0000:00:00.0: PME: Signaling with IRQ 423\n[    1.092510] pcieport 0000:00:00.0: AER: enabled with IRQ 423\n[    1.092704] exynos-pcie-rc 11920000.pcie: PCIE idle ip index : 22\n[    1.092714] exynos-pcie-rc 11920000.pcie: exynos_pcie_rc_probe, ip idle status : 1, idle_ip_index: 22\n[    1.092811] exynos-pcie-rc 11920000.pcie: ## register pcie connection function\n[    1.092821] Registered pcie_is_connect func\n[    1.092830] exynos-pcie-rc 11920000.pcie: ## exynos_pcie_rc_probe: PCIe probe success\n[    1.093066] exynos-pcie-rc 14520000.pcie: ## PCIe RC PROBE start\n[    1.093098] exynos-pcie-rc 14520000.pcie: ## PCIe ch 1 ##\n[    1.093221] logbuffer: id:pcie1 registered\n[    1.093276] exynos-pcie-rc 14520000.pcie: Failed to get S2MPU\n[    1.125859] s2mpg11:s2mpg11_irq_init s2mpg11_COMMON_INT_MASK=0x06\n[    1.157367] B2S_OCP_WARN : 0x88\n[    1.157497] B2S_SOFT_OCP_WARN : 0x88\n[    1.157629] create_s2mpg11_pmic_sysfs: master pmic sysfs start\n[    1.157932] exynos-pcie-rc 14520000.pcie: ## PCIe RC PROBE start\n[    1.157946] sysfs: cannot create duplicate filename '/devices/platform/14520000.pcie/pcie_rc_test'\n[    1.157957] CPU: 0 PID: 117 Comm: kworker/u16:4 Not tainted 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 #4\n[    1.157963] Hardware name: Oriole DVT (DT)\n[    1.157979] Workqueue: events_unbound deferred_probe_work_func.cfi_jt\n[    1.157988] Call trace:\n[    1.158000]  dump_backtrace.cfi_jt+0x0/0x4\n[    1.158010]  dump_stack_lvl+0xa0/0xf8\n[    1.158020]  sysfs_warn_dup+0x8c/0xa8\n[    1.158029]  sysfs_create_file_ns+0x140/0x1b4\n[    1.158039]  exynos_pcie_rc_probe+0xa0/0xc38\n[    1.158048]  platform_drv_probe+0x5c/0x144\n[    1.158059]  really_probe+0x1ec/0x568\n[    1.158067]  driver_probe_device+0x6c/0x23c\n[    1.158075]  __device_attach_driver+0x1bc/0x208\n[    1.158084]  __device_attach+0x114/0x26c\n[    1.158094]  bus_probe_device+0x3c/0x110\n[    1.158101]  deferred_probe_work_func+0xe8/0x16c\n[    1.158112]  process_one_work+0x208/0x35c\n[    1.158120]  worker_thread+0x3a8/0x88c\n[    1.158129]  kthread+0x148/0x19c\n[    1.158138]  ret_from_fork+0x10/0x18\n[    1.158146] exynos-pcie-rc 14520000.pcie: couldn't create device file for test(-17)\n[    1.158154] exynos-pcie-rc 14520000.pcie: Failed to create pcie sys file\n[    1.158162] exynos-pcie-rc 14520000.pcie: ## PCIe ch 1 ##\n[    1.158260] sysfs: cannot create duplicate filename '/devices/virtual/misc/logbuffer_pcie1'\n[    1.158268] CPU: 0 PID: 117 Comm: kworker/u16:4 Not tainted 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 #4\n[    1.158274] Hardware name: Oriole DVT (DT)\n[    1.158282] Workqueue: events_unbound deferred_probe_work_func.cfi_jt\n[    1.158289] Call trace:\n[    1.158297]  dump_backtrace.cfi_jt+0x0/0x4\n[    1.158304]  dump_stack_lvl+0xa0/0xf8\n[    1.158312]  sysfs_create_dir_ns+0x1d0/0x208\n[    1.158319]  kobject_add_internal+0x248/0x710\n[    1.158326]  kobject_add+0x94/0x108\n[    1.158334]  device_add+0x1e0/0x670\n[    1.158342]  device_create_with_groups+0xe8/0x140\n[    1.158352]  misc_register+0x124/0x1ec\n[    1.158361]  logbuffer_register+0x130/0x1c0\n[    1.158368]  exynos_pcie_rc_probe+0x584/0xc38\n[    1.158375]  platform_drv_probe+0x5c/0x144\n[    1.158383]  really_probe+0x1ec/0x568\n[    1.158392]  driver_probe_device+0x6c/0x23c\n[    1.158399]  __device_attach_driver+0x1bc/0x208\n[    1.158408]  __device_attach+0x114/0x26c\n[    1.158417]  bus_probe_device+0x3c/0x110\n[    1.158425]  deferred_probe_work_func+0xe8/0x16c\n[    1.158433]  process_one_work+0x208/0x35c\n[    1.158441]  worker_thread+0x3a8/0x88c\n[    1.158448]  kthread+0x148/0x19c\n[    1.158454]  ret_from_fork+0x10/0x18\n[    1.158462] kobject_add_internal failed for logbuffer_pcie1 with -EEXIST, don't try to register things with the same name in the same directory.\n[    1.158470] logbuffer: Logbuffer error while doing misc_register ret=-17\n[    1.158493] exynos-pcie-rc 14520000.pcie: logbuffer register failed\n[    1.158501] exynos-pcie-rc 14520000.pcie: Unbalanced pm_runtime_enable!\n[    1.158510] exynos-pcie-rc 14520000.pcie: Failed to get S2MPU\n[    1.158677] create_s2mpg11_meter_sysfs: s2mpg11 meter sysfs start\n[    1.158846] exynos-pcie-rc 14520000.pcie: ## PCIe RC PROBE start\n[    1.158858] sysfs: cannot create duplicate filename '/devices/platform/14520000.pcie/pcie_rc_test'\n[    1.158866] CPU: 0 PID: 117 Comm: kworker/u16:4 Not tainted 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 #4\n[    1.158873] Hardware name: Oriole DVT (DT)\n[    1.158881] Workqueue: events_unbound deferred_probe_work_func.cfi_jt\n[    1.158889] Call trace:\n[    1.158896]  dump_backtrace.cfi_jt+0x0/0x4\n[    1.158905]  dump_stack_lvl+0xa0/0xf8\n[    1.158913]  sysfs_warn_dup+0x8c/0xa8\n[    1.158921]  sysfs_create_file_ns+0x140/0x1b4\n[    1.158929]  exynos_pcie_rc_probe+0xa0/0xc38\n[    1.158938]  platform_drv_probe+0x5c/0x144\n[    1.158945]  really_probe+0x1ec/0x568\n[    1.158954]  driver_probe_device+0x6c/0x23c\n[    1.158963]  __device_attach_driver+0x1bc/0x208\n[    1.158972]  __device_attach+0x114/0x26c\n[    1.158981]  bus_probe_device+0x3c/0x110\n[    1.158990]  deferred_probe_work_func+0xe8/0x16c\n[    1.158998]  process_one_work+0x208/0x35c\n[    1.159006]  worker_thread+0x3a8/0x88c\n[    1.159014]  kthread+0x148/0x19c\n[    1.159021]  ret_from_fork+0x10/0x18\n[    1.159030] exynos-pcie-rc 14520000.pcie: couldn't create device file for test(-17)\n[    1.159040] exynos-pcie-rc 14520000.pcie: Failed to create pcie sys file\n[    1.159048] exynos-pcie-rc 14520000.pcie: ## PCIe ch 1 ##\n[    1.159125] sysfs: cannot create duplicate filename '/devices/virtual/misc/logbuffer_pcie1'\n[    1.159134] CPU: 0 PID: 117 Comm: kworker/u16:4 Not tainted 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 #4\n[    1.159141] Hardware name: Oriole DVT (DT)\n[    1.159149] Workqueue: events_unbound deferred_probe_work_func.cfi_jt\n[    1.159158] Call trace:\n[    1.159165]  dump_backtrace.cfi_jt+0x0/0x4\n[    1.159173]  dump_stack_lvl+0xa0/0xf8\n[    1.159182]  sysfs_create_dir_ns+0x1d0/0x208\n[    1.159189]  kobject_add_internal+0x248/0x710\n[    1.159197]  kobject_add+0x94/0x108\n[    1.159205]  device_add+0x1e0/0x670\n[    1.159214]  device_create_with_groups+0xe8/0x140\n[    1.159223]  misc_register+0x124/0x1ec\n[    1.159230]  logbuffer_register+0x130/0x1c0\n[    1.159239]  exynos_pcie_rc_probe+0x584/0xc38\n[    1.159247]  platform_drv_probe+0x5c/0x144\n[    1.159256]  really_probe+0x1ec/0x568\n[    1.159266]  driver_probe_device+0x6c/0x23c\n[    1.159276]  __device_attach_driver+0x1bc/0x208\n[    1.159284]  __device_attach+0x114/0x26c\n[    1.159292]  bus_probe_device+0x3c/0x110\n[    1.159300]  deferred_probe_work_func+0xe8/0x16c\n[    1.159308]  process_one_work+0x208/0x35c\n[    1.159317]  worker_thread+0x3a8/0x88c\n[    1.159325]  kthread+0x148/0x19c\n[    1.159332]  ret_from_fork+0x10/0x18\n[    1.159340] kobject_add_internal failed for logbuffer_pcie1 with -EEXIST, don't try to register things with the same name in the same directory.\n[    1.159349] logbuffer: Logbuffer error while doing misc_register ret=-17\n[    1.159372] exynos-pcie-rc 14520000.pcie: logbuffer register failed\n[    1.159379] exynos-pcie-rc 14520000.pcie: Unbalanced pm_runtime_enable!\n[    1.159388] exynos-pcie-rc 14520000.pcie: Failed to get S2MPU\n[    1.160606] exynos-pcie-rc 14520000.pcie: ## PCIe RC PROBE start\n[    1.160620] sysfs: cannot create duplicate filename '/devices/platform/14520000.pcie/pcie_rc_test'\n[    1.160628] CPU: 0 PID: 117 Comm: kworker/u16:4 Not tainted 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 #4\n[    1.160636] Hardware name: Oriole DVT (DT)\n[    1.160645] Workqueue: events_unbound deferred_probe_work_func.cfi_jt\n[    1.160653] Call trace:\n[    1.160662]  dump_backtrace.cfi_jt+0x0/0x4\n[    1.160670]  dump_stack_lvl+0xa0/0xf8\n[    1.160678]  sysfs_warn_dup+0x8c/0xa8\n[    1.160688]  sysfs_create_file_ns+0x140/0x1b4\n[    1.160696]  exynos_pcie_rc_probe+0xa0/0xc38\n[    1.160703]  platform_drv_probe+0x5c/0x144\n[    1.160712]  really_probe+0x1ec/0x568\n[    1.160720]  driver_probe_device+0x6c/0x23c\n[    1.160729]  __device_attach_driver+0x1bc/0x208\n[    1.160737]  __device_attach+0x114/0x26c\n[    1.160744]  bus_probe_device+0x3c/0x110\n[    1.160753]  deferred_probe_work_func+0xe8/0x16c\n[    1.160762]  process_one_work+0x208/0x35c\n[    1.160770]  worker_thread+0x3a8/0x88c\n[    1.160779]  kthread+0x148/0x19c\n[    1.160787]  ret_from_fork+0x10/0x18\n[    1.160796] exynos-pcie-rc 14520000.pcie: couldn't create device file for test(-17)\n[    1.160803] exynos-pcie-rc 14520000.pcie: Failed to create pcie sys file\n[    1.160812] exynos-pcie-rc 14520000.pcie: ## PCIe ch 1 ##\n[    1.160892] sysfs: cannot create duplicate filename '/devices/virtual/misc/logbuffer_pcie1'\n[    1.160901] CPU: 0 PID: 117 Comm: kworker/u16:4 Not tainted 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 #4\n[    1.160907] Hardware name: Oriole DVT (DT)\n[    1.160917] Workqueue: events_unbound deferred_probe_work_func.cfi_jt\n[    1.160925] Call trace:\n[    1.160933]  dump_backtrace.cfi_jt+0x0/0x4\n[    1.160941]  dump_stack_lvl+0xa0/0xf8\n[    1.160949]  sysfs_create_dir_ns+0x1d0/0x208\n[    1.160956]  kobject_add_internal+0x248/0x710\n[    1.160964]  kobject_add+0x94/0x108\n[    1.160973]  device_add+0x1e0/0x670\n[    1.160981]  device_create_with_groups+0xe8/0x140\n[    1.160989]  misc_register+0x124/0x1ec\n[    1.160997]  logbuffer_register+0x130/0x1c0\n[    1.161006]  exynos_pcie_rc_probe+0x584/0xc38\n[    1.161014]  platform_drv_probe+0x5c/0x144\n[    1.161023]  really_probe+0x1ec/0x568\n[    1.161032]  driver_probe_device+0x6c/0x23c\n[    1.161040]  __device_attach_driver+0x1bc/0x208\n[    1.161049]  __device_attach+0x114/0x26c\n[    1.161058]  bus_probe_device+0x3c/0x110\n[    1.161065]  deferred_probe_work_func+0xe8/0x16c\n[    1.161073]  process_one_work+0x208/0x35c\n[    1.161085]  worker_thread+0x3a8/0x88c\n[    1.161093]  kthread+0x148/0x19c\n[    1.161100]  ret_from_fork+0x10/0x18\n[    1.161108] kobject_add_internal failed for logbuffer_pcie1 with -EEXIST, don't try to register things with the same name in the same directory.\n[    1.161116] logbuffer: Logbuffer error while doing misc_register ret=-17\n[    1.161139] exynos-pcie-rc 14520000.pcie: logbuffer register failed\n[    1.161146] exynos-pcie-rc 14520000.pcie: Unbalanced pm_runtime_enable!\n[    1.161155] exynos-pcie-rc 14520000.pcie: Failed to get S2MPU\n[    1.161343] exynos-pcie-rc 14520000.pcie: ## PCIe RC PROBE start\n[    1.161355] sysfs: cannot create duplicate filename '/devices/platform/14520000.pcie/pcie_rc_test'\n[    1.161365] CPU: 0 PID: 117 Comm: kworker/u16:4 Not tainted 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 #4\n[    1.161372] Hardware name: Oriole DVT (DT)\n[    1.161381] Workqueue: events_unbound deferred_probe_work_func.cfi_jt\n[    1.161389] Call trace:\n[    1.161398]  dump_backtrace.cfi_jt+0x0/0x4\n[    1.161406]  dump_stack_lvl+0xa0/0xf8\n[    1.161415]  sysfs_warn_dup+0x8c/0xa8\n[    1.161423]  sysfs_create_file_ns+0x140/0x1b4\n[    1.161432]  exynos_pcie_rc_probe+0xa0/0xc38\n[    1.161441]  platform_drv_probe+0x5c/0x144\n[    1.161450]  really_probe+0x1ec/0x568\n[    1.161458]  driver_probe_device+0x6c/0x23c\n[    1.161468]  __device_attach_driver+0x1bc/0x208\n[    1.161475]  __device_attach+0x114/0x26c\n[    1.161483]  bus_probe_device+0x3c/0x110\n[    1.161492]  deferred_probe_work_func+0xe8/0x16c\n[    1.161501]  process_one_work+0x208/0x35c\n[    1.161508]  worker_thread+0x3a8/0x88c\n[    1.161517]  kthread+0x148/0x19c\n[    1.161524]  ret_from_fork+0x10/0x18\n[    1.161532] exynos-pcie-rc 14520000.pcie: couldn't create device file for test(-17)\n[    1.161540] exynos-pcie-rc 14520000.pcie: Failed to create pcie sys file\n[    1.161547] exynos-pcie-rc 14520000.pcie: ## PCIe ch 1 ##\n[    1.161624] sysfs: cannot create duplicate filename '/devices/virtual/misc/logbuffer_pcie1'\n[    1.161634] CPU: 0 PID: 117 Comm: kworker/u16:4 Not tainted 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 #4\n[    1.161641] Hardware name: Oriole DVT (DT)\n[    1.161651] Workqueue: events_unbound deferred_probe_work_func.cfi_jt\n[    1.161659] Call trace:\n[    1.161668]  dump_backtrace.cfi_jt+0x0/0x4\n[    1.161677]  dump_stack_lvl+0xa0/0xf8\n[    1.161685]  sysfs_create_dir_ns+0x1d0/0x208\n[    1.161694]  kobject_add_internal+0x248/0x710\n[    1.161702]  kobject_add+0x94/0x108\n[    1.161710]  device_add+0x1e0/0x670\n[    1.161719]  device_create_with_groups+0xe8/0x140\n[    1.161728]  misc_register+0x124/0x1ec\n[    1.161735]  logbuffer_register+0x130/0x1c0\n[    1.161743]  exynos_pcie_rc_probe+0x584/0xc38\n[    1.161751]  platform_drv_probe+0x5c/0x144\n[    1.161760]  really_probe+0x1ec/0x568\n[    1.161769]  driver_probe_device+0x6c/0x23c\n[    1.161778]  __device_attach_driver+0x1bc/0x208\n[    1.161787]  __device_attach+0x114/0x26c\n[    1.161796]  bus_probe_device+0x3c/0x110\n[    1.161804]  deferred_probe_work_func+0xe8/0x16c\n[    1.161812]  process_one_work+0x208/0x35c\n[    1.161820]  worker_thread+0x3a8/0x88c\n[    1.161829]  kthread+0x148/0x19c\n[    1.161837]  ret_from_fork+0x10/0x18\n[    1.161843] kobject_add_internal failed for logbuffer_pcie1 with -EEXIST, don't try to register things with the same name in the same directory.\n[    1.161852] logbuffer: Logbuffer error while doing misc_register ret=-17\n[    1.161876] exynos-pcie-rc 14520000.pcie: logbuffer register failed\n[    1.161884] exynos-pcie-rc 14520000.pcie: Unbalanced pm_runtime_enable!\n[    1.161895] exynos-pcie-rc 14520000.pcie: Failed to get S2MPU\n[    1.162193] i2c-acpm acpm_mfd_bus@17510000: acpm mfd bus driver probe was succeeded\n[    1.162465] exynos-pcie-rc 14520000.pcie: ## PCIe RC PROBE start\n[    1.162478] sysfs: cannot create duplicate filename '/devices/platform/14520000.pcie/pcie_rc_test'\n[    1.162488] CPU: 0 PID: 117 Comm: kworker/u16:4 Not tainted 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 #4\n[    1.162495] Hardware name: Oriole DVT (DT)\n[    1.162505] Workqueue: events_unbound deferred_probe_work_func.cfi_jt\n[    1.162513] Call trace:\n[    1.162521]  dump_backtrace.cfi_jt+0x0/0x4\n[    1.162530]  dump_stack_lvl+0xa0/0xf8\n[    1.162537]  sysfs_warn_dup+0x8c/0xa8\n[    1.162546]  sysfs_create_file_ns+0x140/0x1b4\n[    1.162555]  exynos_pcie_rc_probe+0xa0/0xc38\n[    1.162563]  platform_drv_probe+0x5c/0x144\n[    1.162575]  really_probe+0x1ec/0x568\n[    1.162583]  driver_probe_device+0x6c/0x23c\n[    1.162593]  __device_attach_driver+0x1bc/0x208\n[    1.162602]  __device_attach+0x114/0x26c\n[    1.162610]  bus_probe_device+0x3c/0x110\n[    1.162618]  deferred_probe_work_func+0xe8/0x16c\n[    1.162628]  process_one_work+0x208/0x35c\n[    1.162637]  worker_thread+0x3a8/0x88c\n[    1.162645]  kthread+0x148/0x19c\n[    1.162653]  ret_from_fork+0x10/0x18\n[    1.162661] exynos-pcie-rc 14520000.pcie: couldn't create device file for test(-17)\n[    1.162670] exynos-pcie-rc 14520000.pcie: Failed to create pcie sys file\n[    1.162678] exynos-pcie-rc 14520000.pcie: ## PCIe ch 1 ##\n[    1.162759] sysfs: cannot create duplicate filename '/devices/virtual/misc/logbuffer_pcie1'\n[    1.162769] CPU: 0 PID: 117 Comm: kworker/u16:4 Not tainted 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 #4\n[    1.162775] Hardware name: Oriole DVT (DT)\n[    1.162783] Workqueue: events_unbound deferred_probe_work_func.cfi_jt\n[    1.162791] Call trace:\n[    1.162800]  dump_backtrace.cfi_jt+0x0/0x4\n[    1.162808]  dump_stack_lvl+0xa0/0xf8\n[    1.162817]  sysfs_create_dir_ns+0x1d0/0x208\n[    1.162825]  kobject_add_internal+0x248/0x710\n[    1.162833]  kobject_add+0x94/0x108\n[    1.162841]  device_add+0x1e0/0x670\n[    1.162850]  device_create_with_groups+0xe8/0x140\n[    1.162858]  misc_register+0x124/0x1ec\n[    1.162865]  logbuffer_register+0x130/0x1c0\n[    1.162873]  exynos_pcie_rc_probe+0x584/0xc38\n[    1.162881]  platform_drv_probe+0x5c/0x144\n[    1.162889]  really_probe+0x1ec/0x568\n[    1.162899]  driver_probe_device+0x6c/0x23c\n[    1.162909]  __device_attach_driver+0x1bc/0x208\n[    1.162918]  __device_attach+0x114/0x26c\n[    1.162926]  bus_probe_device+0x3c/0x110\n[    1.162935]  deferred_probe_work_func+0xe8/0x16c\n[    1.162944]  process_one_work+0x208/0x35c\n[    1.162952]  worker_thread+0x3a8/0x88c\n[    1.162961]  kthread+0x148/0x19c\n[    1.162970]  ret_from_fork+0x10/0x18\n[    1.162977] kobject_add_internal failed for logbuffer_pcie1 with -EEXIST, don't try to register things with the same name in the same directory.\n[    1.162986] logbuffer: Logbuffer error while doing misc_register ret=-17\n[    1.163008] exynos-pcie-rc 14520000.pcie: logbuffer register failed\n[    1.163016] exynos-pcie-rc 14520000.pcie: Unbalanced pm_runtime_enable!\n[    1.163026] exynos-pcie-rc 14520000.pcie: Failed to get S2MPU\n[    1.163260] exynos-pcie-rc 14520000.pcie: ## PCIe RC PROBE start\n[    1.163272] sysfs: cannot create duplicate filename '/devices/platform/14520000.pcie/pcie_rc_test'\n[    1.163282] CPU: 0 PID: 117 Comm: kworker/u16:4 Not tainted 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 #4\n[    1.163289] Hardware name: Oriole DVT (DT)\n[    1.163298] Workqueue: events_unbound deferred_probe_work_func.cfi_jt\n[    1.163307] Call trace:\n[    1.163315]  dump_backtrace.cfi_jt+0x0/0x4\n[    1.163324]  dump_stack_lvl+0xa0/0xf8\n[    1.163332]  sysfs_warn_dup+0x8c/0xa8\n[    1.163341]  sysfs_create_file_ns+0x140/0x1b4\n[    1.163349]  exynos_pcie_rc_probe+0xa0/0xc38\n[    1.163357]  platform_drv_probe+0x5c/0x144\n[    1.163365]  really_probe+0x1ec/0x568\n[    1.163373]  driver_probe_device+0x6c/0x23c\n[    1.163382]  __device_attach_driver+0x1bc/0x208\n[    1.163389]  __device_attach+0x114/0x26c\n[    1.163397]  bus_probe_device+0x3c/0x110\n[    1.163406]  deferred_probe_work_func+0xe8/0x16c\n[    1.163415]  process_one_work+0x208/0x35c\n[    1.163423]  worker_thread+0x3a8/0x88c\n[    1.163431]  kthread+0x148/0x19c\n[    1.163437]  ret_from_fork+0x10/0x18\n[    1.163445] exynos-pcie-rc 14520000.pcie: couldn't create device file for test(-17)\n[    1.163454] exynos-pcie-rc 14520000.pcie: Failed to create pcie sys file\n[    1.163462] exynos-pcie-rc 14520000.pcie: ## PCIe ch 1 ##\n[    1.163543] sysfs: cannot create duplicate filename '/devices/virtual/misc/logbuffer_pcie1'\n[    1.163554] CPU: 0 PID: 117 Comm: kworker/u16:4 Not tainted 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 #4\n[    1.163560] Hardware name: Oriole DVT (DT)\n[    1.163569] Workqueue: events_unbound deferred_probe_work_func.cfi_jt\n[    1.163578] Call trace:\n[    1.163586]  dump_backtrace.cfi_jt+0x0/0x4\n[    1.163594]  dump_stack_lvl+0xa0/0xf8\n[    1.163603]  sysfs_create_dir_ns+0x1d0/0x208\n[    1.163611]  kobject_add_internal+0x248/0x710\n[    1.163619]  kobject_add+0x94/0x108\n[    1.163626]  device_add+0x1e0/0x670\n[    1.163635]  device_create_with_groups+0xe8/0x140\n[    1.163647]  misc_register+0x124/0x1ec\n[    1.163655]  logbuffer_register+0x130/0x1c0\n[    1.163664]  exynos_pcie_rc_probe+0x584/0xc38\n[    1.163671]  platform_drv_probe+0x5c/0x144\n[    1.163679]  really_probe+0x1ec/0x568\n[    1.163689]  driver_probe_device+0x6c/0x23c\n[    1.163698]  __device_attach_driver+0x1bc/0x208\n[    1.163707]  __device_attach+0x114/0x26c\n[    1.163715]  bus_probe_device+0x3c/0x110\n[    1.163724]  deferred_probe_work_func+0xe8/0x16c\n[    1.163733]  process_one_work+0x208/0x35c\n[    1.163741]  worker_thread+0x3a8/0x88c\n[    1.163750]  kthread+0x148/0x19c\n[    1.163758]  ret_from_fork+0x10/0x18\n[    1.163767] kobject_add_internal failed for logbuffer_pcie1 with -EEXIST, don't try to register things with the same name in the same directory.\n[    1.163775] logbuffer: Logbuffer error while doing misc_register ret=-17\n[    1.163798] exynos-pcie-rc 14520000.pcie: logbuffer register failed\n[    1.163806] exynos-pcie-rc 14520000.pcie: Unbalanced pm_runtime_enable!\n[    1.163817] exynos-pcie-rc 14520000.pcie: Failed to get S2MPU\n[    1.164021] i2c /dev entries driver\n[    1.164610] odpm: s2mpg10-odpm: init\n[    1.164755] odpm: Configuring S2MPG10...\n[    1.164893] odpm: S2MPG10: Applied new sampling frequency (type 0) in Hz: 125.000000\n[    1.165026] odpm: S2MPG10: Applied new sampling frequency (type 1) in Hz: 30.512500\n[    1.165032] odpm: S2MPG10: CH0=S10M_VDD_TPU\n[    1.165162] odpm: S2MPG10: CH1=VSYS_PWR_MODEM\n[    1.165292] odpm: S2MPG10: CH2=VSYS_PWR_RFFE\n[    1.165422] odpm: S2MPG10: CH3=S2M_VDD_CPUCL2\n[    1.165553] odpm: S2MPG10: CH4=S3M_VDD_CPUCL1\n[    1.165683] odpm: S2MPG10: CH5=S4M_VDD_CPUCL0\n[    1.165813] odpm: S2MPG10: CH6=S5M_VDD_INT\n[    1.165947] odpm: S2MPG10: CH7=S1M_VDD_MIF\n[    1.166203] s2mpg10_ext_meter_onoff: s2mpg10 external meter off\n[    1.166460] s2mpg10_meter_onoff: s2mpg10 meter on\n[    1.166589] s2mpg10_ext_meter_onoff: s2mpg10 external meter on\n[    1.166723] odpm: Configuring S2MPG10...done\n[    1.166980] odpm: S2MPG10: Starting at timestamp (ms): 1066\n[    1.167216] odpm: s2mpg10-odpm: init completed\n[    1.167250] odpm: s2mpg11-odpm: init\n[    1.167368] odpm: Configuring S2MPG11...\n[    1.167522] exynos-pcie-rc 14520000.pcie: ## PCIe RC PROBE start\n[    1.167541] sysfs: cannot create duplicate filename '/devices/platform/14520000.pcie/pcie_rc_test'\n[    1.167550] CPU: 0 PID: 117 Comm: kworker/u16:4 Not tainted 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 #4\n[    1.167556] Hardware name: Oriole DVT (DT)\n[    1.167564] Workqueue: events_unbound deferred_probe_work_func.cfi_jt\n[    1.167572] Call trace:\n[    1.167579]  dump_backtrace.cfi_jt+0x0/0x4\n[    1.167587]  dump_stack_lvl+0xa0/0xf8\n[    1.167595]  sysfs_warn_dup+0x8c/0xa8\n[    1.167604]  sysfs_create_file_ns+0x140/0x1b4\n[    1.167612]  exynos_pcie_rc_probe+0xa0/0xc38\n[    1.167620]  platform_drv_probe+0x5c/0x144\n[    1.167629]  really_probe+0x1ec/0x568\n[    1.167638]  driver_probe_device+0x6c/0x23c\n[    1.167646]  __device_attach_driver+0x1bc/0x208\n[    1.167656]  __device_attach+0x114/0x26c\n[    1.167664]  bus_probe_device+0x3c/0x110\n[    1.167673]  deferred_probe_work_func+0xe8/0x16c\n[    1.167682]  process_one_work+0x208/0x35c\n[    1.167691]  worker_thread+0x3a8/0x88c\n[    1.167699]  kthread+0x148/0x19c\n[    1.167708]  ret_from_fork+0x10/0x18\n[    1.167717] exynos-pcie-rc 14520000.pcie: couldn't create device file for test(-17)\n[    1.167724] exynos-pcie-rc 14520000.pcie: Failed to create pcie sys file\n[    1.167733] exynos-pcie-rc 14520000.pcie: ## PCIe ch 1 ##\n[    1.167814] sysfs: cannot create duplicate filename '/devices/virtual/misc/logbuffer_pcie1'\n[    1.167823] CPU: 0 PID: 117 Comm: kworker/u16:4 Not tainted 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 #4\n[    1.167829] Hardware name: Oriole DVT (DT)\n[    1.167837] Workqueue: events_unbound deferred_probe_work_func.cfi_jt\n[    1.167844] Call trace:\n[    1.167852]  dump_backtrace.cfi_jt+0x0/0x4\n[    1.167859]  dump_stack_lvl+0xa0/0xf8\n[    1.167867]  sysfs_create_dir_ns+0x1d0/0x208\n[    1.167874]  kobject_add_internal+0x248/0x710\n[    1.167881]  kobject_add+0x94/0x108\n[    1.167889]  device_add+0x1e0/0x670\n[    1.167896]  device_create_with_groups+0xe8/0x140\n[    1.167904]  misc_register+0x124/0x1ec\n[    1.167912]  logbuffer_register+0x130/0x1c0\n[    1.167919]  exynos_pcie_rc_probe+0x584/0xc38\n[    1.167926]  platform_drv_probe+0x5c/0x144\n[    1.167934]  really_probe+0x1ec/0x568\n[    1.167945]  driver_probe_device+0x6c/0x23c\n[    1.167953]  __device_attach_driver+0x1bc/0x208\n[    1.167962]  __device_attach+0x114/0x26c\n[    1.167971]  bus_probe_device+0x3c/0x110\n[    1.167980]  deferred_probe_work_func+0xe8/0x16c\n[    1.167988]  process_one_work+0x208/0x35c\n[    1.167996]  worker_thread+0x3a8/0x88c\n[    1.168003]  kthread+0x148/0x19c\n[    1.168010]  ret_from_fork+0x10/0x18\n[    1.168017] kobject_add_internal failed for logbuffer_pcie1 with -EEXIST, don't try to register things with the same name in the same directory.\n[    1.168025] logbuffer: Logbuffer error while doing misc_register ret=-17\n[    1.168048] exynos-pcie-rc 14520000.pcie: logbuffer register failed\n[    1.168056] exynos-pcie-rc 14520000.pcie: Unbalanced pm_runtime_enable!\n[    1.168065] exynos-pcie-rc 14520000.pcie: Failed to get S2MPU\n[    1.168114] odpm: S2MPG11: Applied new sampling frequency (type 0) in Hz: 125.000000\n[    1.168249] odpm: S2MPG11: Applied new sampling frequency (type 1) in Hz: 30.512500\n[    1.168256] odpm: S2MPG11: CH0=VSYS_PWR_WLAN_BT\n[    1.168386] odpm: S2MPG11: CH1=L2S_VDD_AOC_RET\n[    1.168519] odpm: S2MPG11: CH2=S9S_VDD_AOC\n[    1.168650] odpm: S2MPG11: CH3=S5S_VDDQ_MEM\n[    1.168779] odpm: S2MPG11: CH4=S10S_VDD2L\n[    1.168910] odpm: S2MPG11: CH5=S4S_VDD2H_MEM\n[    1.169042] odpm: S2MPG11: CH6=S2S_VDD_G3D\n[    1.169172] odpm: S2MPG11: CH7=VSYS_PWR_DISPLAY\n[    1.169430] s2mpg11_ext_meter_onoff: s2mpg11 external meter off\n[    1.169702] s2mpg11_meter_onoff: s2mpg11 meter on\n[    1.169835] s2mpg11_ext_meter_onoff: s2mpg11 external meter on\n[    1.169966] odpm: Configuring S2MPG11...done\n[    1.170218] odpm: S2MPG11: Starting at timestamp (ms): 1069\n[    1.170477] odpm: s2mpg11-odpm: init completed\n[    1.170530] load_integrated_module: module 's2mpg13_spmic_thermal' not found\n[    1.170731] cpu cpu0: EM: created perf domain\n[    1.170739] exynos_acme: max-dfs-count not set for cpufreq-domain:0, defaulting to 0\n[    1.170747] exynos_acme: Complete to initialize cpufreq-domain0\n[    1.170754] exynos_acme: CPUFREQ of domain0 cal-id : 0xb040002\n[    1.170762] exynos_acme: CPUFREQ of domain0 sibling cpus : 0-3\n[    1.170769] exynos_acme: CPUFREQ of domain0 boot freq = 1197000 kHz, resume freq = 1197000 kHz\n[    1.170776] exynos_acme: CPUFREQ of domain0 max freq : 1803000 kHz, min freq : 300000 kHz\n[    1.170782] exynos_acme: CPUFREQ of domain0 table size = 11\n[    1.170788] exynos_acme: CPUFREQ of domain0 : L0    300000 kHz\n[    1.170794] exynos_acme: CPUFREQ of domain0 : L1    574000 kHz\n[    1.170801] exynos_acme: CPUFREQ of domain0 : L2    738000 kHz\n[    1.170807] exynos_acme: CPUFREQ of domain0 : L3    930000 kHz\n[    1.170812] exynos_acme: CPUFREQ of domain0 : L4   1098000 kHz\n[    1.170818] exynos_acme: CPUFREQ of domain0 : L5   1197000 kHz\n[    1.170825] exynos_acme: CPUFREQ of domain0 : L6   1328000 kHz\n[    1.170831] exynos_acme: CPUFREQ of domain0 : L7   1401000 kHz\n[    1.170837] exynos_acme: CPUFREQ of domain0 : L8   1598000 kHz\n[    1.170843] exynos_acme: CPUFREQ of domain0 : L9   1704000 kHz\n[    1.170850] exynos_acme: CPUFREQ of domain0 : L10  1803000 kHz\n[    1.170932] cpu cpu4: EM: created perf domain\n[    1.170938] exynos_acme: max-dfs-count not set for cpufreq-domain:1, defaulting to 0\n[    1.170944] exynos_acme: Complete to initialize cpufreq-domain1\n[    1.170950] exynos_acme: CPUFREQ of domain1 cal-id : 0xb040003\n[    1.170957] exynos_acme: CPUFREQ of domain1 sibling cpus : 4-5\n[    1.170963] exynos_acme: CPUFREQ of domain1 boot freq = 1197000 kHz, resume freq = 1491000 kHz\n[    1.170971] exynos_acme: CPUFREQ of domain1 max freq : 2253000 kHz, min freq : 400000 kHz\n[    1.170977] exynos_acme: CPUFREQ of domain1 table size = 14\n[    1.170982] exynos_acme: CPUFREQ of domain1 : L0    400000 kHz\n[    1.170988] exynos_acme: CPUFREQ of domain1 : L1    553000 kHz\n[    1.170994] exynos_acme: CPUFREQ of domain1 : L2    696000 kHz\n[    1.171000] exynos_acme: CPUFREQ of domain1 : L3    799000 kHz\n[    1.171007] exynos_acme: CPUFREQ of domain1 : L4    910000 kHz\n[    1.171013] exynos_acme: CPUFREQ of domain1 : L5   1024000 kHz\n[    1.171020] exynos_acme: CPUFREQ of domain1 : L6   1197000 kHz\n[    1.171026] exynos_acme: CPUFREQ of domain1 : L7   1328000 kHz\n[    1.171032] exynos_acme: CPUFREQ of domain1 : L8   1491000 kHz\n[    1.171040] exynos_acme: CPUFREQ of domain1 : L9   1663000 kHz\n[    1.171046] exynos_acme: CPUFREQ of domain1 : L10  1836000 kHz\n[    1.171052] exynos_acme: CPUFREQ of domain1 : L11  1999000 kHz\n[    1.171057] exynos_acme: CPUFREQ of domain1 : L12  2130000 kHz\n[    1.171063] exynos_acme: CPUFREQ of domain1 : L13  2253000 kHz\n[    1.171163] cpu cpu6: EM: created perf domain\n[    1.171170] exynos_acme: max-dfs-count not set for cpufreq-domain:2, defaulting to 0\n[    1.171176] exynos_acme: Complete to initialize cpufreq-domain2\n[    1.171183] exynos_acme: CPUFREQ of domain2 cal-id : 0xb040004\n[    1.171191] exynos_acme: CPUFREQ of domain2 sibling cpus : 6-7\n[    1.171198] exynos_acme: CPUFREQ of domain2 boot freq = 1106000 kHz, resume freq = 1826000 kHz\n[    1.171205] exynos_acme: CPUFREQ of domain2 max freq : 2850000 kHz, min freq : 500000 kHz\n[    1.171211] exynos_acme: CPUFREQ of domain2 table size = 18\n[    1.171218] exynos_acme: CPUFREQ of domain2 : L0    500000 kHz\n[    1.171224] exynos_acme: CPUFREQ of domain2 : L1    851000 kHz\n[    1.171230] exynos_acme: CPUFREQ of domain2 : L2    984000 kHz\n[    1.171237] exynos_acme: CPUFREQ of domain2 : L3   1106000 kHz\n[    1.171243] exynos_acme: CPUFREQ of domain2 : L4   1277000 kHz\n[    1.171250] exynos_acme: CPUFREQ of domain2 : L5   1426000 kHz\n[    1.171256] exynos_acme: CPUFREQ of domain2 : L6   1582000 kHz\n[    1.171261] exynos_acme: CPUFREQ of domain2 : L7   1745000 kHz\n[    1.171267] exynos_acme: CPUFREQ of domain2 : L8   1826000 kHz\n[    1.171273] exynos_acme: CPUFREQ of domain2 : L9   2048000 kHz\n[    1.171279] exynos_acme: CPUFREQ of domain2 : L10  2188000 kHz\n[    1.171286] exynos_acme: CPUFREQ of domain2 : L11  2252000 kHz\n[    1.171292] exynos_acme: CPUFREQ of domain2 : L12  2401000 kHz\n[    1.171298] exynos_acme: CPUFREQ of domain2 : L13  2507000 kHz\n[    1.171304] exynos_acme: CPUFREQ of domain2 : L14  2630000 kHz\n[    1.171310] exynos_acme: CPUFREQ of domain2 : L15  2704000 kHz\n[    1.171315] exynos_acme: CPUFREQ of domain2 : L16  2802000 kHz\n[    1.171322] exynos_acme: CPUFREQ of domain2 : L17  2850000 kHz\n[    1.171382] exynos_acme: CPUFREQ domain0 registered\n[    1.171480] exynos_acme: CPUFREQ domain1 registered\n[    1.171556] exynos_acme: CPUFREQ domain2 registered\n[    1.171647] cpu_cooling 0: freq:1803000 KHz\n[    1.171654] cpu_cooling 0: freq:1704000 KHz\n[    1.171660] cpu_cooling 0: freq:1598000 KHz\n[    1.171667] cpu_cooling 0: freq:1401000 KHz\n[    1.171673] cpu_cooling 0: freq:1328000 KHz\n[    1.171678] cpu_cooling 0: freq:1197000 KHz\n[    1.171684] cpu_cooling 0: freq:1098000 KHz\n[    1.171689] cpu_cooling 0: freq:930000 KHz\n[    1.171695] cpu_cooling 0: freq:738000 KHz\n[    1.171700] cpu_cooling 0: freq:574000 KHz\n[    1.171705] cpu_cooling 0: freq:300000 KHz\n[    1.171715] cpu_cooling 0: freq:1803000 power: 109, mV: 931, cap: 70\n[    1.171723] cpu_cooling 0: freq:1704000 power: 93, mV: 887, cap: 70\n[    1.171732] cpu_cooling 0: freq:1598000 power: 80, mV: 850, cap: 70\n[    1.171741] cpu_cooling 0: freq:1401000 power: 62, mV: 800, cap: 70\n[    1.171749] cpu_cooling 0: freq:1328000 power: 56, mV: 781, cap: 70\n[    1.171757] cpu_cooling 0: freq:1197000 power: 47, mV: 750, cap: 70\n[    1.171765] cpu_cooling 0: freq:1098000 power: 41, mV: 731, cap: 70\n[    1.171772] cpu_cooling 0: freq:930000 power: 30, mV: 687, cap: 70\n[    1.171779] cpu_cooling 0: freq:738000 power: 20, mV: 637, cap: 70\n[    1.171786] cpu_cooling 0: freq:574000 power: 15, mV: 612, cap: 70\n[    1.171793] cpu_cooling 0: freq:300000 power: 6, mV: 550, cap: 70\n[    1.171824] build_static_power_table: Failed to get param table from ECT\n[    1.171934] parse_ect_cooling_level: (LITTLE, 0)instance isn't valid\n[    1.171941] cpu cooling registered for cpu: 0, capacitance: 70, power_callback: true, static_power: false\n[    1.171951] exynos_acme: Skipping boot pm_qos domain0\n[    1.172029] cpu_cooling 4: freq:2253000 KHz\n[    1.172035] cpu_cooling 4: freq:2130000 KHz\n[    1.172041] cpu_cooling 4: freq:1999000 KHz\n[    1.172046] cpu_cooling 4: freq:1836000 KHz\n[    1.172053] cpu_cooling 4: freq:1663000 KHz\n[    1.172059] cpu_cooling 4: freq:1491000 KHz\n[    1.172065] cpu_cooling 4: freq:1328000 KHz\n[    1.172070] cpu_cooling 4: freq:1197000 KHz\n[    1.172076] cpu_cooling 4: freq:1024000 KHz\n[    1.172081] cpu_cooling 4: freq:910000 KHz\n[    1.172086] cpu_cooling 4: freq:799000 KHz\n[    1.172091] cpu_cooling 4: freq:696000 KHz\n[    1.172097] cpu_cooling 4: freq:553000 KHz\n[    1.172105] cpu_cooling 4: freq:400000 KHz\n[    1.172113] cpu_cooling 4: freq:2253000 power: 599, mV: 968, cap: 284\n[    1.172121] cpu_cooling 4: freq:2130000 power: 509, mV: 918, cap: 284\n[    1.172129] cpu_cooling 4: freq:1999000 power: 427, mV: 868, cap: 284\n[    1.172136] cpu_cooling 4: freq:1836000 power: 348, mV: 818, cap: 284\n[    1.172143] cpu_cooling 4: freq:1663000 power: 283, mV: 775, cap: 284\n[    1.172151] cpu_cooling 4: freq:1491000 power: 226, mV: 731, cap: 284\n[    1.172159] cpu_cooling 4: freq:1328000 power: 178, mV: 687, cap: 284\n[    1.172167] cpu_cooling 4: freq:1197000 power: 148, mV: 662, cap: 284\n[    1.172175] cpu_cooling 4: freq:1024000 power: 113, mV: 625, cap: 284\n[    1.172183] cpu_cooling 4: freq:910000 power: 94, mV: 606, cap: 284\n[    1.172191] cpu_cooling 4: freq:799000 power: 76, mV: 581, cap: 284\n[    1.172199] cpu_cooling 4: freq:696000 power: 62, mV: 562, cap: 284\n[    1.172207] cpu_cooling 4: freq:553000 power: 45, mV: 537, cap: 284\n[    1.172215] cpu_cooling 4: freq:400000 power: 29, mV: 506, cap: 284\n[    1.172313] cpu cooling registered for cpu: 4, capacitance: 284, power_callback: true, static_power: true\n[    1.172333] exynos_acme: Skipping boot pm_qos domain1\n[    1.172413] cpu_cooling 6: freq:2850000 KHz\n[    1.172421] cpu_cooling 6: freq:2802000 KHz\n[    1.172427] cpu_cooling 6: freq:2704000 KHz\n[    1.172433] cpu_cooling 6: freq:2630000 KHz\n[    1.172439] cpu_cooling 6: freq:2507000 KHz\n[    1.172445] cpu_cooling 6: freq:2401000 KHz\n[    1.172452] cpu_cooling 6: freq:2252000 KHz\n[    1.172458] cpu_cooling 6: freq:2188000 KHz\n[    1.172464] cpu_cooling 6: freq:2048000 KHz\n[    1.172470] cpu_cooling 6: freq:1826000 KHz\n[    1.172476] cpu_cooling 6: freq:1745000 KHz\n[    1.172482] cpu_cooling 6: freq:1582000 KHz\n[    1.172487] cpu_cooling 6: freq:1426000 KHz\n[    1.172493] cpu_cooling 6: freq:1277000 KHz\n[    1.172499] cpu_cooling 6: freq:1106000 KHz\n[    1.172504] cpu_cooling 6: freq:984000 KHz\n[    1.172509] cpu_cooling 6: freq:851000 KHz\n[    1.172514] cpu_cooling 6: freq:500000 KHz\n[    1.172522] cpu_cooling 6: freq:2850000 power: 2266, mV: 1106, cap: 650\n[    1.172530] cpu_cooling 6: freq:2802000 power: 2104, mV: 1075, cap: 650\n[    1.172537] cpu_cooling 6: freq:2704000 power: 1846, mV: 1025, cap: 650\n[    1.172545] cpu_cooling 6: freq:2630000 power: 1685, mV: 993, cap: 650\n[    1.172554] cpu_cooling 6: freq:2507000 power: 1449, mV: 943, cap: 650\n[    1.172562] cpu_cooling 6: freq:2401000 power: 1281, mV: 906, cap: 650\n[    1.172570] cpu_cooling 6: freq:2252000 power: 1120, mV: 875, cap: 650\n[    1.172577] cpu_cooling 6: freq:2188000 power: 1042, mV: 856, cap: 650\n[    1.172585] cpu_cooling 6: freq:2048000 power: 890, mV: 818, cap: 650\n[    1.172591] cpu_cooling 6: freq:1826000 power: 712, mV: 775, cap: 650\n[    1.172599] cpu_cooling 6: freq:1745000 power: 638, mV: 750, cap: 650\n[    1.172606] cpu_cooling 6: freq:1582000 power: 521, mV: 712, cap: 650\n[    1.172613] cpu_cooling 6: freq:1426000 power: 429, mV: 681, cap: 650\n[    1.172619] cpu_cooling 6: freq:1277000 power: 357, mV: 656, cap: 650\n[    1.172626] cpu_cooling 6: freq:1106000 power: 280, mV: 625, cap: 650\n[    1.172634] cpu_cooling 6: freq:984000 power: 224, mV: 593, cap: 650\n[    1.172641] cpu_cooling 6: freq:851000 power: 182, mV: 575, cap: 650\n[    1.172649] cpu_cooling 6: freq:500000 power: 83, mV: 506, cap: 650\n[    1.172741] cpu cooling registered for cpu: 6, capacitance: 650, power_callback: true, static_power: true\n[    1.172762] exynos_acme: Skipping boot pm_qos domain2\n[    1.172835] exynos_acme: Initialized Exynos cpufreq driver\n[    1.173145] load_integrated_module: module 'trusty_irq' not found\n[    1.173646] trusty_ipc virtio0: vring0: va(id)  (____ptrval____)(ffffffc2) qsz 32 notifyid 1\n[    1.173671] trusty_ipc virtio0: vring1: va(id)  (____ptrval____)(ffffffc3) qsz 32 notifyid 2\n[    1.174211] exynos-pcie-rc 14520000.pcie: ## PCIe RC PROBE start\n[    1.174224] sysfs: cannot create duplicate filename '/devices/platform/14520000.pcie/pcie_rc_test'\n[    1.174233] CPU: 0 PID: 117 Comm: kworker/u16:4 Not tainted 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 #4\n[    1.174239] Hardware name: Oriole DVT (DT)\n[    1.174250] Workqueue: events_unbound deferred_probe_work_func.cfi_jt\n[    1.174258] Call trace:\n[    1.174266]  dump_backtrace.cfi_jt+0x0/0x4\n[    1.174274]  dump_stack_lvl+0xa0/0xf8\n[    1.174284]  sysfs_warn_dup+0x8c/0xa8\n[    1.174292]  sysfs_create_file_ns+0x140/0x1b4\n[    1.174300]  exynos_pcie_rc_probe+0xa0/0xc38\n[    1.174307]  platform_drv_probe+0x5c/0x144\n[    1.174315]  really_probe+0x1ec/0x568\n[    1.174324]  driver_probe_device+0x6c/0x23c\n[    1.174334]  __device_attach_driver+0x1bc/0x208\n[    1.174343]  __device_attach+0x114/0x26c\n[    1.174351]  bus_probe_device+0x3c/0x110\n[    1.174361]  deferred_probe_work_func+0xe8/0x16c\n[    1.174369]  process_one_work+0x208/0x35c\n[    1.174379]  worker_thread+0x3a8/0x88c\n[    1.174387]  kthread+0x148/0x19c\n[    1.174395]  ret_from_fork+0x10/0x18\n[    1.174404] exynos-pcie-rc 14520000.pcie: couldn't create device file for test(-17)\n[    1.174411] exynos-pcie-rc 14520000.pcie: Failed to create pcie sys file\n[    1.174420] exynos-pcie-rc 14520000.pcie: ## PCIe ch 1 ##\n[    1.174607] sysfs: cannot create duplicate filename '/devices/virtual/misc/logbuffer_pcie1'\n[    1.174616] CPU: 0 PID: 117 Comm: kworker/u16:4 Not tainted 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 #4\n[    1.174621] Hardware name: Oriole DVT (DT)\n[    1.174630] Workqueue: events_unbound deferred_probe_work_func.cfi_jt\n[    1.174637] Call trace:\n[    1.174645]  dump_backtrace.cfi_jt+0x0/0x4\n[    1.174652]  dump_stack_lvl+0xa0/0xf8\n[    1.174660]  sysfs_create_dir_ns+0x1d0/0x208\n[    1.174667]  kobject_add_internal+0x248/0x710\n[    1.174674]  kobject_add+0x94/0x108\n[    1.174680]  device_add+0x1e0/0x670\n[    1.174689]  device_create_with_groups+0xe8/0x140\n[    1.174696]  misc_register+0x124/0x1ec\n[    1.174703]  logbuffer_register+0x130/0x1c0\n[    1.174711]  exynos_pcie_rc_probe+0x584/0xc38\n[    1.174718]  platform_drv_probe+0x5c/0x144\n[    1.174725]  really_probe+0x1ec/0x568\n[    1.174733]  driver_probe_device+0x6c/0x23c\n[    1.174741]  __device_attach_driver+0x1bc/0x208\n[    1.174750]  __device_attach+0x114/0x26c\n[    1.174758]  bus_probe_device+0x3c/0x110\n[    1.174767]  deferred_probe_work_func+0xe8/0x16c\n[    1.174775]  process_one_work+0x208/0x35c\n[    1.174783]  worker_thread+0x3a8/0x88c\n[    1.174791]  kthread+0x148/0x19c\n[    1.174798]  ret_from_fork+0x10/0x18\n[    1.174804] kobject_add_internal failed for logbuffer_pcie1 with -EEXIST, don't try to register things with the same name in the same directory.\n[    1.174812] logbuffer: Logbuffer error while doing misc_register ret=-17\n[    1.174834] exynos-pcie-rc 14520000.pcie: logbuffer register failed\n[    1.174842] exynos-pcie-rc 14520000.pcie: Unbalanced pm_runtime_enable!\n[    1.174851] exynos-pcie-rc 14520000.pcie: Failed to get S2MPU\n[    1.175233] trusty_ipc virtio0: is online\n[    1.175264] trusty-virtio trusty:virtio: initializing done\n[    1.175479] exynos-reboot exynos-reboot: register restart handler successfully\n[    1.175761] load_integrated_module: module 'null_blk' not found\n[    1.175800] sbb-mux: Initializing signal [0, '0']...\n[    1.175808] sbb-mux: Initializing signal [1, '1']...\n[    1.175818] sbb-mux: Initializing signal [2, 'kernel_test']...\n[    1.175829] sbb-mux: Initializing signal [3, 'userland_test']...\n[    1.175841] sbb-mux: Initializing signal [4, 'gp_region_0']...\n[    1.175852] sbb-mux: Initializing signal [5, 'gp_region_1']...\n[    1.175864] sbb-mux: Initializing signal [6, 'gp_region_2']...\n[    1.175875] sbb-mux: Initializing signal [7, 'gp_region_3']...\n[    1.175887] sbb-mux: Initializing signal [8, 'k_gp_region_0']...\n[    1.175900] sbb-mux: Initializing signal [9, 'k_gp_region_1']...\n[    1.175910] sbb-mux: Initializing signal [10, 'k_gp_region_2']...\n[    1.175920] sbb-mux: Initializing signal [11, 'k_gp_region_3']...\n[    1.175931] sbb-mux: Initializing signal [12, 'app_misc0']...\n[    1.175940] sbb-mux: Initializing signal [13, 'app_misc1']...\n[    1.175949] sbb-mux: Initializing signal [14, 'app_misc2']...\n[    1.175959] sbb-mux: Initializing signal [15, 'app_misc3']...\n[    1.175969] sbb-mux: Initializing signal [16, 'app_misc4']...\n[    1.175979] sbb-mux: Initializing signal [17, 'app_misc5']...\n[    1.175990] sbb-mux: Initializing signal [18, 'app_misc6']...\n[    1.176000] sbb-mux: Initializing signal [19, 'app_misc7']...\n[    1.176012] sbb-mux: Initializing signal [20, 'app_misc8']...\n[    1.176021] sbb-mux: Initializing signal [21, 'app_misc9']...\n[    1.176030] sbb-mux: Initializing signal [22, 'cam_misc0']...\n[    1.176042] sbb-mux: Initializing signal [23, 'cam_misc1']...\n[    1.176054] sbb-mux: Initializing signal [24, 'cam_misc2']...\n[    1.176066] sbb-mux: Initializing signal [25, 'cam_misc3']...\n[    1.176076] sbb-mux: Initializing signal [26, 'cam_misc4']...\n[    1.176087] sbb-mux: Initializing signal [27, 'cam_misc5']...\n[    1.176097] sbb-mux: Initializing signal [28, 'cam_misc6']...\n[    1.176108] sbb-mux: Initializing signal [29, 'cam_misc7']...\n[    1.176119] sbb-mux: Initializing signal [30, 'cam_misc8']...\n[    1.176130] sbb-mux: Initializing signal [31, 'cam_misc9']...\n[    1.176274] sbb-mux: Calling sbb_mux_drv_probe!\n[    1.176282] sbb-mux: Num GPIOs: 4.\n[    1.176296] sbb-mux: GPIO system id: 101.\n[    1.176312] Correctly initialized GPIO tracker #101 for GPIO C1_T0__XHSI2_GPIO0!\n[    1.176322] sbb-mux: GPIO system id: 102.\n[    1.176337] Correctly initialized GPIO tracker #102 for GPIO C1_T1__XHSI2_GPIO1!\n[    1.176349] sbb-mux: GPIO system id: 117.\n[    1.176362] Correctly initialized GPIO tracker #117 for GPIO C1_T2__XAPC_DISP_TE_SEC!\n[    1.176374] sbb-mux: GPIO system id: 143.\n[    1.176388] Correctly initialized GPIO tracker #143 for GPIO C1_T3__XAPC_USI4_CTSn_CSn!\n[    1.176434] sbb-mux: Registered! :D\n[    1.176650] exynos-pcie-rc 14520000.pcie: ## PCIe RC PROBE start\n[    1.176659] sysfs: cannot create duplicate filename '/devices/platform/14520000.pcie/pcie_rc_test'\n[    1.176675] CPU: 0 PID: 117 Comm: kworker/u16:4 Not tainted 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 #4\n[    1.176679] Hardware name: Oriole DVT (DT)\n[    1.176685] Workqueue: events_unbound deferred_probe_work_func.cfi_jt\n[    1.176691] Call trace:\n[    1.176697]  dump_backtrace.cfi_jt+0x0/0x4\n[    1.176703]  dump_stack_lvl+0xa0/0xf8\n[    1.176708]  sysfs_warn_dup+0x8c/0xa8\n[    1.176713]  sysfs_create_file_ns+0x140/0x1b4\n[    1.176718]  exynos_pcie_rc_probe+0xa0/0xc38\n[    1.176723]  platform_drv_probe+0x5c/0x144\n[    1.176728]  really_probe+0x1ec/0x568\n[    1.176735]  driver_probe_device+0x6c/0x23c\n[    1.176741]  __device_attach_driver+0x1bc/0x208\n[    1.176747]  __device_attach+0x114/0x26c\n[    1.176753]  bus_probe_device+0x3c/0x110\n[    1.176760]  deferred_probe_work_func+0xe8/0x16c\n[    1.176765]  process_one_work+0x208/0x35c\n[    1.176770]  worker_thread+0x3a8/0x88c\n[    1.176776]  kthread+0x148/0x19c\n[    1.176781]  ret_from_fork+0x10/0x18\n[    1.176786] exynos-pcie-rc 14520000.pcie: couldn't create device file for test(-17)\n[    1.176791] exynos-pcie-rc 14520000.pcie: Failed to create pcie sys file\n[    1.176796] exynos-pcie-rc 14520000.pcie: ## PCIe ch 1 ##\n[    1.176861] sysfs: cannot create duplicate filename '/devices/virtual/misc/logbuffer_pcie1'\n[    1.176867] CPU: 0 PID: 117 Comm: kworker/u16:4 Not tainted 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 #4\n[    1.176871] Hardware name: Oriole DVT (DT)\n[    1.176876] Workqueue: events_unbound deferred_probe_work_func.cfi_jt\n[    1.176882] Call trace:\n[    1.176887]  dump_backtrace.cfi_jt+0x0/0x4\n[    1.176893]  dump_stack_lvl+0xa0/0xf8\n[    1.176899]  sysfs_create_dir_ns+0x1d0/0x208\n[    1.176904]  kobject_add_internal+0x248/0x710\n[    1.176908]  kobject_add+0x94/0x108\n[    1.176913]  device_add+0x1e0/0x670\n[    1.176918]  device_create_with_groups+0xe8/0x140\n[    1.176923]  misc_register+0x124/0x1ec\n[    1.176928]  logbuffer_register+0x130/0x1c0\n[    1.176933]  exynos_pcie_rc_probe+0x584/0xc38\n[    1.176938]  platform_drv_probe+0x5c/0x144\n[    1.176942]  really_probe+0x1ec/0x568\n[    1.176948]  driver_probe_device+0x6c/0x23c\n[    1.176954]  __device_attach_driver+0x1bc/0x208\n[    1.176960]  __device_attach+0x114/0x26c\n[    1.176967]  bus_probe_device+0x3c/0x110\n[    1.176973]  deferred_probe_work_func+0xe8/0x16c\n[    1.176979]  process_one_work+0x208/0x35c\n[    1.176984]  worker_thread+0x3a8/0x88c\n[    1.176989]  kthread+0x148/0x19c\n[    1.176994]  ret_from_fork+0x10/0x18\n[    1.176999] kobject_add_internal failed for logbuffer_pcie1 with -EEXIST, don't try to register things with the same name in the same directory.\n[    1.177004] logbuffer: Logbuffer error while doing misc_register ret=-17\n[    1.177019] exynos-pcie-rc 14520000.pcie: logbuffer register failed\n[    1.177024] exynos-pcie-rc 14520000.pcie: Unbalanced pm_runtime_enable!\n[    1.177031] exynos-pcie-rc 14520000.pcie: Failed to get S2MPU\n[    1.196097] slg51000 3-0075: chip_id: 0xae1104\n[    1.198779] ldo3: supplied by regulator-dummy\n[    1.199535] ldo4: supplied by regulator-dummy\n[    1.200513] ldo5: supplied by regulator-dummy\n[    1.201449] ldo6: supplied by regulator-dummy\n[    1.202206] ldo7: supplied by regulator-dummy\n[    1.203484] load_integrated_module: module 'boot_control' not found\n[    1.203493] clk: Not disabling unused clocks\n[    1.203514] exynos_pd: pd-disp sync_state: children need sync\n[    1.203519] exynos_pd: pd-mfc sync_state: turn_off = 1\n[    1.203663] exynos_pd: pd-dns sync_state: turn_off = 1\n[    1.203824] exynos_pd: pd-itp sync_state: children need sync\n[    1.203828] exynos_pd: pd-g3aa sync_state: turn_off = 1\n[    1.203946] exynos_pd: pd-ipp sync_state: turn_off = 1\n[    1.204138] exynos_pd: pd-pdp sync_state: children need sync\n[    1.204142] exynos_pd: pd-tpu sync_state: turn_off = 1\n[    1.204275] ALSA device list:\n[    1.204283]   No soundcards found.\n[    1.204330] Warning: unable to open an initial console.\n[    1.206441] Freeing unused kernel memory: 9600K\n[    1.206720] exynos-pcie-rc 14520000.pcie: ## PCIe RC PROBE start\n[    1.206741] sysfs: cannot create duplicate filename '/devices/platform/14520000.pcie/pcie_rc_test'\n[    1.206749] CPU: 0 PID: 117 Comm: kworker/u16:4 Not tainted 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 #4\n[    1.206754] Hardware name: Oriole DVT (DT)\n[    1.206767] Workqueue: events_unbound deferred_probe_work_func.cfi_jt\n[    1.206774] Call trace:\n[    1.206782]  dump_backtrace.cfi_jt+0x0/0x4\n[    1.206790]  dump_stack_lvl+0xa0/0xf8\n[    1.206797]  sysfs_warn_dup+0x8c/0xa8\n[    1.206802]  sysfs_create_file_ns+0x140/0x1b4\n[    1.206810]  exynos_pcie_rc_probe+0xa0/0xc38\n[    1.206817]  platform_drv_probe+0x5c/0x144\n[    1.206824]  really_probe+0x1ec/0x568\n[    1.206829]  driver_probe_device+0x6c/0x23c\n[    1.206835]  __device_attach_driver+0x1bc/0x208\n[    1.206841]  __device_attach+0x114/0x26c\n[    1.206847]  bus_probe_device+0x3c/0x110\n[    1.206852]  deferred_probe_work_func+0xe8/0x16c\n[    1.206860]  process_one_work+0x208/0x35c\n[    1.206865]  worker_thread+0x3a8/0x88c\n[    1.206871]  kthread+0x148/0x19c\n[    1.206877]  ret_from_fork+0x10/0x18\n[    1.206884] exynos-pcie-rc 14520000.pcie: couldn't create device file for test(-17)\n[    1.206888] exynos-pcie-rc 14520000.pcie: Failed to create pcie sys file\n[    1.206894] exynos-pcie-rc 14520000.pcie: ## PCIe ch 1 ##\n[    1.207009] sysfs: cannot create duplicate filename '/devices/virtual/misc/logbuffer_pcie1'\n[    1.207016] CPU: 0 PID: 117 Comm: kworker/u16:4 Not tainted 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 #4\n[    1.207020] Hardware name: Oriole DVT (DT)\n[    1.207026] Workqueue: events_unbound deferred_probe_work_func.cfi_jt\n[    1.207030] Call trace:\n[    1.207036]  dump_backtrace.cfi_jt+0x0/0x4\n[    1.207041]  dump_stack_lvl+0xa0/0xf8\n[    1.207046]  sysfs_create_dir_ns+0x1d0/0x208\n[    1.207051]  kobject_add_internal+0x248/0x710\n[    1.207055]  kobject_add+0x94/0x108\n[    1.207061]  device_add+0x1e0/0x670\n[    1.207066]  device_create_with_groups+0xe8/0x140\n[    1.207073]  misc_register+0x124/0x1ec\n[    1.207079]  logbuffer_register+0x130/0x1c0\n[    1.207084]  exynos_pcie_rc_probe+0x584/0xc38\n[    1.207089]  platform_drv_probe+0x5c/0x144\n[    1.207095]  really_probe+0x1ec/0x568\n[    1.207100]  driver_probe_device+0x6c/0x23c\n[    1.207105]  __device_attach_driver+0x1bc/0x208\n[    1.207111]  __device_attach+0x114/0x26c\n[    1.207116]  bus_probe_device+0x3c/0x110\n[    1.207121]  deferred_probe_work_func+0xe8/0x16c\n[    1.207126]  process_one_work+0x208/0x35c\n[    1.207131]  worker_thread+0x3a8/0x88c\n[    1.207136]  kthread+0x148/0x19c\n[    1.207141]  ret_from_fork+0x10/0x18\n[    1.207146] kobject_add_internal failed for logbuffer_pcie1 with -EEXIST, don't try to register things with the same name in the same directory.\n[    1.207153] logbuffer: Logbuffer error while doing misc_register ret=-17\n[    1.207217] exynos-pcie-rc 14520000.pcie: logbuffer register failed\n[    1.207223] exynos-pcie-rc 14520000.pcie: Unbalanced pm_runtime_enable!\n[    1.208159] exynos-pcie-rc 14520000.pcie: successfully bound to S2MPU\n[    1.208172] exynos-pcie-rc 14520000.pcie: Failed to parse the number of chip-ver, default '0'\n[    1.208178] exynos-pcie-rc 14520000.pcie: parse the number of lanes: 1\n[    1.208183] exynos-pcie-rc 14520000.pcie: Unset separated-msi value, default '0'\n[    1.208192] exynos-pcie-rc 14520000.pcie: ## PCIe don't use MSI\n[    1.208197] exynos-pcie-rc 14520000.pcie: ## PCIe use SICD\n[    1.208203] exynos-pcie-rc 14520000.pcie: ## PCIe don't use PCIE ON Sleep\n[    1.208208] exynos-pcie-rc 14520000.pcie: PCIe SysMMU is DISABLED.\n[    1.208214] exynos-pcie-rc 14520000.pcie: PCIe I/A is ENABLED.\n[    1.208219] exynos-pcie-rc 14520000.pcie: PCIe L1SS(L1.2) is ENABLED.\n[    1.208225] exynos-pcie-rc 14520000.pcie: PCIe Secure ATU is DISABLED.\n[    1.208231] exynos-pcie-rc 14520000.pcie: PCIe DYNAMIC PHY ISOLATION is Enabled.\n[    1.208240] exynos-pcie-rc 14520000.pcie: exynos_pcie_rc_parse_dt: pcie int_min_lock = 200000\n[    1.208300] exynos-pcie-rc 14520000.pcie: ssd gpio is not defined -> don't use ssd through pcie#1\n[    1.208362] exynos-pcie-rc 14520000.pcie: No idle pin state(but it's OK)!!\n[    1.208413] exynos-pcie-rc 14520000.pcie: Initialize PHY functions.\n[    1.208419] exynos-pcie-rc 14520000.pcie: Initialize PCIe function.\n[    1.208490] exynos-pcie-rc 14520000.pcie: AFC cal mode set to restart\n[    1.208524] exynos-pcie-rc 14520000.pcie: PCIe cap [0x1][Power Management]: 0x40\n[    1.208530] exynos-pcie-rc 14520000.pcie: PCIe cap [0x5][Message Signalled Interrupts]: 0x50\n[    1.208535] exynos-pcie-rc 14520000.pcie: PCIe cap [0x10][PCI Express]: 0x70\n[    1.208541] exynos-pcie-rc 14520000.pcie: PCIe ext cap [0x1][Advanced Error Reporting]: 0x100\n[    1.208547] exynos-pcie-rc 14520000.pcie: PCIe ext cap [0x19][Secondary PCIe Capability]: 0x148\n[    1.208552] exynos-pcie-rc 14520000.pcie: PCIe ext cap [0x1e][L1 PM Substates]: 0x194\n[    1.208558] exynos-pcie-rc 14520000.pcie: PCIe ext cap [0x25][Data Link Feature]: 0x1a4\n[    1.208564] exynos-pcie-rc 14520000.pcie: PCIe ext cap [0x26][Physical Layer 16GT/s]: 0x158\n[    1.208570] exynos-pcie-rc 14520000.pcie: PCIe ext cap [0x27][Physical Layer 16GT/s Margining]: 0x17c\n[    1.208646] exynos-pcie-rc 14520000.pcie: host bridge /pcie@14520000 ranges:\n[    1.208656] exynos-pcie-rc 14520000.pcie:   No bus range found for /pcie@14520000, using [bus 00-ff]\n[    1.208667] exynos-pcie-rc 14520000.pcie:      MEM 0x0060000000..0x0060feffff -> 0x0060000000\n[    1.208718] exynos-pcie-rc 14520000.pcie: invalid resource\n[    1.208843] exynos-pcie-rc 14520000.pcie: PCI host bridge to bus 0001:00\n[    1.208851] pci_bus 0001:00: root bus resource [bus 00-ff]\n[    1.208857] pci_bus 0001:00: root bus resource [mem 0x60000000-0x60feffff]\n[    1.208907] pci 0001:00:00.0: [144d:eced] type 01 class 0x060400\n[    1.208935] pci 0001:00:00.0: reg 0x10: [mem 0x00000000-0x000fffff]\n[    1.208962] pci 0001:00:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]\n[    1.209085] pci 0001:00:00.0: PME# supported from D0 D3hot D3cold\n[    1.224838] pci 0001:00:00.0: BAR 0: assigned [mem 0x60000000-0x600fffff]\n[    1.224852] pci 0001:00:00.0: BAR 6: assigned [mem 0x60100000-0x6010ffff pref]\n[    1.224860] pci 0001:00:00.0: PCI bridge to [bus 01-ff]\n[    1.224886] [exynos_pcie_quirks] async suspend disabled\n[    1.225903] pcieport 0001:00:00.0: PME: Signaling with IRQ 424\n[    1.226100] pcieport 0001:00:00.0: AER: enabled with IRQ 424\n[    1.226233] exynos-pcie-rc 14520000.pcie: PCIE idle ip index : 23\n[    1.226240] exynos-pcie-rc 14520000.pcie: exynos_pcie_rc_probe, ip idle status : 1, idle_ip_index: 23\n[    1.226300] exynos-pcie-rc 14520000.pcie: ## exynos_pcie_rc_probe: PCIe probe success\n[    1.240684] Failed to set sysctl parameter 'kernel.softlockup_panic=1': parameter not found\n[    1.240751] Run /init as init process\n[    1.240756]   with arguments:\n[    1.240758]     /init\n[    1.240760]     bootconfig\n[    1.240761]     bootconfig\n[    1.240763]   with environment:\n[    1.240765]     HOME=/\n[    1.240767]     TERM=linux\n[    1.240768]     stack_depot_disable=on\n[    1.240770]     loglevel=0\n[    1.240772]     reserve-fimc=0xffffff90f9fe0000\n[    1.240773]     softlockup_panic=1\n[    1.240776]     dyndbg=func alloc_contig_dump_pages +p\n[    1.333251] odpm: S2MPG10: Applied new sampling frequency (type 0) in Hz: 1000.000000\n[    1.338839] random: python3: uninitialized urandom read (24 bytes read)\n[    2.005261] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    2.005410] cpu1 \n[    2.005471] cpu4 \n[    2.005516] cpu6 \n[    2.005554] \n               Offline CPUs: \n[    2.007901] cpu1 \n[    2.008423] psci: CPU1 killed (polled 0 ms)\n[    2.008768] cpu2 \n[    2.009118] psci: CPU2 killed (polled 0 ms)\n[    2.009317] cpu3 \n[    2.009654] psci: CPU3 killed (polled 0 ms)\n[    2.009846] cpu4 \n[    2.010083] psci: CPU4 killed (polled 0 ms)\n[    2.010271] cpu5 \n[    2.010588] psci: CPU5 killed (polled 0 ms)\n[    2.010877] cpu6 \n[    2.010981] psci: CPU6 killed (polled 0 ms)\n[    2.011275] cpu7 \n[    2.011385] psci: CPU7 killed (polled 0 ms)\n\n[    5.457901] dma-pl330 10110000.pdma0: Loaded driver for PL330 DMAC-341330\n[    5.457944] dma-pl330 10110000.pdma0: \tDBUFF-32x4bytes Num_Chans-8 Num_Peri-32 Num_Events-32\n[   31.290821] S2MPG10_LDO7: disabling\n[   31.291164] S2MPG10_LDO8: disabling\n[   31.291497] S2MPG10_LDO9: disabling\n[   31.291830] S2MPG10_LDO10: disabling\n[   31.292170] S2MPG10_LDO22: disabling\n[   31.294050] S2MPG11_LDO6: disabling\n[   31.294385] S2MPG11_LDO7: disabling\n[   32.041751] Detected VIPT I-cache on CPU1\n[   32.041859] GICv3: CPU1: found redistributor 100 region 0:0x0000000010460000\n[   32.041992] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]\n[   32.044185] Detected PIPT I-cache on CPU4\n[   32.044207] GICv3: CPU4: found redistributor 400 region 0:0x00000000104c0000\n[   32.044240] CPU4: Booted secondary processor 0x0000000400 [0x414fd0b0]\n[   33.051276] \n               ===== CPU 1 =====\n               Frequencies: 300 574 738 930 1098 1197 1328 1401 1598 1704 1803\n               \n                300: \n[  222.450533] random: crng init done\n[  581.603692]  1110     3.7 C/MHz     56 mW   30.3 J   19.8 I/mJ   540.4 s\n                574: \n[  871.510458]  2129     3.7 C/MHz     80 mW   22.5 J   26.6 I/mJ   281.8 s\n                738: \n[  901.171934] odpm: Refreshed S2MPG11 registers!\n[ 1098.805171]  2738     3.7 C/MHz     95 mW   20.7 J   29.0 I/mJ   219.2 s\n                930: \n[ 1280.723818]  3452     3.7 C/MHz    112 mW   19.4 J   30.9 I/mJ   173.8 s\n               1098: \n[ 1436.048351]  4076     3.7 C/MHz    128 mW   18.8 J   31.9 I/mJ   147.2 s\n               1197: \n[ 1579.250699]  4442     3.7 C/MHz    138 mW   18.6 J   32.3 I/mJ   135.1 s\n               1328: \n[ 1709.133621]  4928     3.7 C/MHz    150 mW   18.3 J   32.8 I/mJ   121.8 s\n               1401: \n[ 1801.171886] odpm: Refreshed S2MPG11 registers!\n[ 1832.607196]  5201     3.7 C/MHz    157 mW   18.2 J   33.0 I/mJ   115.4 s\n               1598: \n[ 1941.885348]  5931     3.7 C/MHz    177 mW   17.9 J   33.5 I/mJ   101.2 s\n               1704: \n[ 2044.817602]  6328     3.7 C/MHz    189 mW   17.9 J   33.5 I/mJ    94.8 s\n               1803: \n[ 2142.603487] psci: CPU1 killed (polled 0 ms)\n[ 2142.605115] Detected PIPT I-cache on CPU6\n[ 2142.605139] GICv3: CPU6: found redistributor 600 region 0:0x0000000010500000\n[ 2142.605177] CPU6: Booted secondary processor 0x0000000600 [0x411fd440]\n[ 2143.609375]  6692     3.7 C/MHz    237 mW   21.2 J   28.2 I/mJ    89.7 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 400 553 696 799 910 1024 1197 1328 1491 1663 1836 1999 2130 2253\n               \n                400: \n[ 2346.257582]  3084     7.7 C/MHz     23 mW    4.6 J   131.3 I/mJ   194.5 s\n                553: \n[ 2494.380915]  4286     7.7 C/MHz     34 mW    4.7 J   127.3 I/mJ   140.0 s\n                696: \n[ 2613.761575]  5393     7.7 C/MHz     44 mW    4.9 J   122.7 I/mJ   111.3 s\n                799: \n[ 2701.172329] odpm: Refreshed S2MPG11 registers!\n[ 2718.802311]  6190     7.7 C/MHz     52 mW    5.0 J   119.2 I/mJ    96.9 s\n                910: \n[ 2812.058490]  7047     7.7 C/MHz     62 mW    5.3 J   112.9 I/mJ    85.1 s\n               1024: \n[ 2895.785725]  7936     7.7 C/MHz     73 mW    5.5 J   108.7 I/mJ    75.6 s\n               1197: \n[ 2968.650092]  9267     7.7 C/MHz     94 mW    6.1 J   98.7 I/mJ    64.7 s\n               1328: \n[ 3035.108631] 10285     7.7 C/MHz    110 mW    6.4 J   93.1 I/mJ    58.3 s\n               1491: \n[ 3095.180708] 11549     7.7 C/MHz    141 mW    7.3 J   82.1 I/mJ    52.0 s\n               1663: \n[ 3149.866134] 12884     7.7 C/MHz    176 mW    8.2 J   73.1 I/mJ    46.6 s\n               1836: \n[ 3200.172140] 14222     7.7 C/MHz    218 mW    9.2 J   65.1 I/mJ    42.2 s\n               1999: \n[ 3247.018819] 15492     7.7 C/MHz    273 mW   10.6 J   56.8 I/mJ    38.7 s\n               2130: \n[ 3291.478267] 16510     7.8 C/MHz    334 mW   12.1 J   49.4 I/mJ    36.3 s\n               2253: \n[ 3333.975822] psci: CPU4 killed (polled 0 ms)\n[ 3334.984777] 17453     7.7 C/MHz    400 mW   13.8 J   43.6 I/mJ    34.4 s\n               \n               \n               ===== CPU 6 =====\n               Frequencies: 500 851 984 1106 1277 1426 1582 1745 1826 2048 2188 2252 2401 2507 2630 2704 2802 2850\n               \n                500: \n[ 3472.242344]  4647     9.3 C/MHz     53 mW    6.9 J   87.5 I/mJ   129.1 s\n                851: \n[ 3556.236244]  7910     9.3 C/MHz    102 mW    7.8 J   77.4 I/mJ    75.9 s\n                984: \n[ 3601.172439] odpm: Refreshed S2MPG11 registers!\n[ 3630.118322]  9126     9.3 C/MHz    124 mW    8.1 J   73.8 I/mJ    65.8 s\n               1106: \n[ 3696.667195] 10271     9.3 C/MHz    152 mW    8.9 J   67.4 I/mJ    58.4 s\n               1277: \n[ 3755.340574] 11872     9.3 C/MHz    189 mW    9.5 J   63.0 I/mJ    50.6 s\n               1426: \n[ 3808.813841] 13233     9.3 C/MHz    226 mW   10.3 J   58.4 I/mJ    45.4 s\n               1582: \n[ 3857.796142] 14689     9.3 C/MHz    277 mW   11.3 J   53.1 I/mJ    40.9 s\n               1745: \n[ 3902.947346] 16210     9.3 C/MHz    344 mW   12.7 J   47.1 I/mJ    37.0 s\n               1826: \n[ 3946.421113] 16978     9.3 C/MHz    382 mW   13.5 J   44.4 I/mJ    35.4 s\n               2048: \n[ 3986.088868] 19025     9.3 C/MHz    488 mW   15.4 J   39.0 I/mJ    31.5 s\n               2188: \n[ 4023.742498] 20325     9.3 C/MHz    645 mW   19.1 J   31.5 I/mJ    29.5 s\n               2252: \n[ 4060.549866] 20927     9.3 C/MHz    702 mW   20.1 J   29.8 I/mJ    28.7 s\n               2401: \n[ 4095.567121] 22318     9.3 C/MHz    820 mW   22.1 J   27.2 I/mJ    26.9 s\n               2507: \n[ 4129.465272] 23289     9.3 C/MHz    945 mW   24.4 J   24.6 I/mJ    25.8 s\n               2630: \n[ 4162.149707] 24441     9.3 C/MHz   1126 mW   27.7 J   21.7 I/mJ    24.6 s\n               2704: \n[ 4194.168813] 25118     9.3 C/MHz   1208 mW   28.9 J   20.8 I/mJ    23.9 s\n               2802: \n[ 4225.347641] 26037     9.3 C/MHz   1371 mW   31.6 J   19.0 I/mJ    23.1 s\n               2850: \n[ 4256.129270] psci: CPU6 killed (polled 0 ms)\n[ 4256.138783] 26494     9.3 C/MHz   1517 mW   34.4 J   17.5 I/mJ    22.7 s\n               \n               \n               Benchmark finished!\n[ 4256.156144] \n               real\t70m54.821s\n               user\t64m32.654s\n               sys\t0m0.342s\n"
  },
  {
    "path": "results/gs101/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  9:          0     GICv3  25 Level     vgic\n 11:         78     GICv3  30 Level     arch_timer\n 12:          0     GICv3  27 Level     kvm guest vtimer\n 87:          0     GICv3 503 Level     11840000.pinctrl\n 88:          0     GICv3 535 Level     14440000.pinctrl\n 89:          0     GICv3 657 Level     10840000.pinctrl\n 90:          0     GICv3 676 Level     10c40000.pinctrl\n172:         17     GICv3 479 Level     gsa-mb-irq\n173:          0     GICv3 504 Level     exynos-pcie\n174:          0     GICv3 541 Level     exynos-pcie\n176:        226     GICv3 564 Level     ufshcd\n177:          0     GICv3 667 Level     10900000.hsi2c\n178:          0     GICv3 668 Level     10910000.hsi2c\n179:          0     GICv3 669 Level     10920000.hsi2c\n180:        172     GICv3 673 Level     10960000.hsi2c\n181:          3     GICv3 674 Level     10970000.hsi2c\n182:          0     GICv3 687 Level     10d50000.hsi2c\n254:          0     GICv3 522 Level     11880000.s2mpu\n255:          0     GICv3 559 Level     14480000.s2mpu\n286:          0     GICv3 785 Level     mct_comp_irq\n290:     427715     GICv3 789 Level     exynos-mct\n291:          0     GICv3 790 Level     exynos-mct\n292:          0     GICv3 791 Level     exynos-mct\n293:          0     GICv3 792 Level     exynos-mct\n294:          0     GICv3 793 Level     exynos-mct\n295:          0     GICv3 794 Level     exynos-mct\n296:          0     GICv3 795 Level     exynos-mct\n297:          0     GICv3 796 Level     exynos-mct\n309:          0     GICv3 804 Level     10110000.pdma0\n310:          0     GICv3  23 Level     arm-pmu\n312:          0     GICv3 105 Level     17610000.acpm_ipc\n318:          0     GICv3 797 Level     10060000.watchdog_cl0\n319:          0     GICv3 798 Level     10070000.watchdog_cl1\n323:          0      gpa7   3 Edge      gpio-keys: KEY_VOLUMEDOWN\n324:          0      gpa8   1 Edge      gpio-keys: KEY_VOLUMEUP\n325:          0     gpa10   1 Edge      gpio-keys: KEY_POWER\n326:          1     GICv3  13 Edge      trusty\n328:          0      gpa9   1 Edge      17c90000.gsa-ns:gsa_gsc@0\n340:          0   s2mpg10     Edge      rtc-alarm0\n354:          0   s2mpg10     Edge      BUCK_OCP_IRQ\n355:          0   s2mpg10     Edge      BUCK_OCP_IRQ\n356:          0   s2mpg10     Edge      BUCK_OCP_IRQ\n357:          0   s2mpg10     Edge      BUCK_OCP_IRQ\n358:          0   s2mpg10     Edge      BUCK_OCP_IRQ\n359:          0   s2mpg10     Edge      BUCK_OCP_IRQ\n360:          0   s2mpg10     Edge      BUCK_OCP_IRQ\n361:          0   s2mpg10     Edge      BUCK_OCP_IRQ\n362:          0   s2mpg10     Edge      BUCK_OCP_IRQ\n363:          0   s2mpg10     Edge      BUCK_OCP_IRQ\n377:          0      gpa0   6 Level     s2mpg10-irq\n392:          0   s2mpg11     Edge      BUCK_OCP_IRQ\n393:          0   s2mpg11     Edge      BUCK_OCP_IRQ\n394:          0   s2mpg11     Edge      BUCK_OCP_IRQ\n395:          0   s2mpg11     Edge      BUCK_OCP_IRQ\n396:          0   s2mpg11     Edge      BUCK_OCP_IRQ\n397:          0   s2mpg11     Edge      BUCK_OCP_IRQ\n398:          0   s2mpg11     Edge      BUCK_OCP_IRQ\n399:          0   s2mpg11     Edge      BUCK_OCP_IRQ\n400:          0   s2mpg11     Edge      BUCK_OCP_IRQ\n401:          0   s2mpg11     Edge      BUCK_OCP_IRQ\n402:          0   s2mpg11     Edge      BUCK_OCP_IRQ\n403:          0   s2mpg11     Edge      BUCK_OCP_IRQ\n423:          0   PCI-MSI   0 Edge      PCIe PME, aerdrv\n424:          0   PCI-MSI 134217728 Edge      PCIe PME, aerdrv\n455:          0      gpa0   7 Level     s2mpg11-irq\nIPI0:       350       Rescheduling interrupts\nIPI1:        10       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:         0       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/gs101/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  9:          0          0          0          0          0          0          0          0     GICv3  25 Level     vgic\n 11:         78         31         31         31         31         31         31         31     GICv3  30 Level     arch_timer\n 12:          0          0          0          0          0          0          0          0     GICv3  27 Level     kvm guest vtimer\n 87:          0          0          0          0          0          0          0          0     GICv3 503 Level     11840000.pinctrl\n 88:          0          0          0          0          0          0          0          0     GICv3 535 Level     14440000.pinctrl\n 89:          0          0          0          0          0          0          0          0     GICv3 657 Level     10840000.pinctrl\n 90:          0          0          0          0          0          0          0          0     GICv3 676 Level     10c40000.pinctrl\n172:         17          0          0          0          0          0          0          0     GICv3 479 Level     gsa-mb-irq\n173:          0          0          0          0          0          0          0          0     GICv3 504 Level     exynos-pcie\n174:          0          0          0          0          0          0          0          0     GICv3 541 Level     exynos-pcie\n176:        226          0          0          0          0          0          0          0     GICv3 564 Level     ufshcd\n177:          0          0          0          0          0          0          0          0     GICv3 667 Level     10900000.hsi2c\n178:          0          0          0          0          0          0          0          0     GICv3 668 Level     10910000.hsi2c\n179:          0          0          0          0          0          0          0          0     GICv3 669 Level     10920000.hsi2c\n180:        131          0          0          0          0          0          0          0     GICv3 673 Level     10960000.hsi2c\n181:          3          0          0          0          0          0          0          0     GICv3 674 Level     10970000.hsi2c\n182:          0          0          0          0          0          0          0          0     GICv3 687 Level     10d50000.hsi2c\n254:          0          0          0          0          0          0          0          0     GICv3 522 Level     11880000.s2mpu\n255:          0          0          0          0          0          0          0          0     GICv3 559 Level     14480000.s2mpu\n286:          0          0          0          0          0          0          0          0     GICv3 785 Level     mct_comp_irq\n290:       1234          0          0          0          0          0          0          0     GICv3 789 Level     exynos-mct\n291:          0          2          0          0          0          0          0          0     GICv3 790 Level     exynos-mct\n292:          0          0          2          0          0          0          0          0     GICv3 791 Level     exynos-mct\n293:          0          0          0          2          0          0          0          0     GICv3 792 Level     exynos-mct\n294:          0          0          0          0          2          0          0          0     GICv3 793 Level     exynos-mct\n295:          0          0          0          0          0          2          0          0     GICv3 794 Level     exynos-mct\n296:          0          0          0          0          0          0          4          0     GICv3 795 Level     exynos-mct\n297:          0          0          0          0          0          0          0          4     GICv3 796 Level     exynos-mct\n310:          0          0          0          0          0          0          0          0     GICv3  23 Level     arm-pmu\n312:          0          0          0          0          0          0          0          0     GICv3 105 Level     17610000.acpm_ipc\n318:          0          0          0          0          0          0          0          0     GICv3 797 Level     10060000.watchdog_cl0\n319:          0          0          0          0          0          0          0          0     GICv3 798 Level     10070000.watchdog_cl1\n323:          0          0          0          0          0          0          0          0      gpa7   3 Edge      gpio-keys: KEY_VOLUMEDOWN\n324:          0          0          0          0          0          0          0          0      gpa8   1 Edge      gpio-keys: KEY_VOLUMEUP\n325:          0          0          0          0          0          0          0          0     gpa10   1 Edge      gpio-keys: KEY_POWER\n326:          1          1          0          0          0          0          0          0     GICv3  13 Edge      trusty\n328:          0          0          0          0          0          0          0          0      gpa9   1 Edge      17c90000.gsa-ns:gsa_gsc@0\n340:          0          0          0          0          0          0          0          0   s2mpg10     Edge      rtc-alarm0\n354:          0          0          0          0          0          0          0          0   s2mpg10     Edge      BUCK_OCP_IRQ\n355:          0          0          0          0          0          0          0          0   s2mpg10     Edge      BUCK_OCP_IRQ\n356:          0          0          0          0          0          0          0          0   s2mpg10     Edge      BUCK_OCP_IRQ\n357:          0          0          0          0          0          0          0          0   s2mpg10     Edge      BUCK_OCP_IRQ\n358:          0          0          0          0          0          0          0          0   s2mpg10     Edge      BUCK_OCP_IRQ\n359:          0          0          0          0          0          0          0          0   s2mpg10     Edge      BUCK_OCP_IRQ\n360:          0          0          0          0          0          0          0          0   s2mpg10     Edge      BUCK_OCP_IRQ\n361:          0          0          0          0          0          0          0          0   s2mpg10     Edge      BUCK_OCP_IRQ\n362:          0          0          0          0          0          0          0          0   s2mpg10     Edge      BUCK_OCP_IRQ\n363:          0          0          0          0          0          0          0          0   s2mpg10     Edge      BUCK_OCP_IRQ\n377:          0          0          0          0          0          0          0          0      gpa0   6 Level     s2mpg10-irq\n392:          0          0          0          0          0          0          0          0   s2mpg11     Edge      BUCK_OCP_IRQ\n393:          0          0          0          0          0          0          0          0   s2mpg11     Edge      BUCK_OCP_IRQ\n394:          0          0          0          0          0          0          0          0   s2mpg11     Edge      BUCK_OCP_IRQ\n395:          0          0          0          0          0          0          0          0   s2mpg11     Edge      BUCK_OCP_IRQ\n396:          0          0          0          0          0          0          0          0   s2mpg11     Edge      BUCK_OCP_IRQ\n397:          0          0          0          0          0          0          0          0   s2mpg11     Edge      BUCK_OCP_IRQ\n398:          0          0          0          0          0          0          0          0   s2mpg11     Edge      BUCK_OCP_IRQ\n399:          0          0          0          0          0          0          0          0   s2mpg11     Edge      BUCK_OCP_IRQ\n400:          0          0          0          0          0          0          0          0   s2mpg11     Edge      BUCK_OCP_IRQ\n401:          0          0          0          0          0          0          0          0   s2mpg11     Edge      BUCK_OCP_IRQ\n402:          0          0          0          0          0          0          0          0   s2mpg11     Edge      BUCK_OCP_IRQ\n403:          0          0          0          0          0          0          0          0   s2mpg11     Edge      BUCK_OCP_IRQ\n423:          0          0          0          0          0          0          0          0   PCI-MSI   0 Edge      PCIe PME, aerdrv\n424:          0          0          0          0          0          0          0          0   PCI-MSI 134217728 Edge      PCIe PME, aerdrv\n455:          0          0          0          0          0          0          0          0      gpa0   7 Level     s2mpg11-irq\nIPI0:        86         19         18         18         18         18         18         18       Rescheduling interrupts\nIPI1:         0          6          7          7          7          7          7          7       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         0          4          4          4          4          4          4          4       IRQ work interrupts\nIPI6:         0          1          1          1          1          1          1          1       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/gs101/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init bootconfig bootconfig\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    6 root      0:00 [kworker/0:0H-ev]\n    8 root      0:00 [mm_percpu_wq]\n    9 root      0:00 [rcu_tasks_kthre]\n   10 root      0:00 [rcu_tasks_trace]\n   11 root      0:00 [ksoftirqd/0]\n   12 root      0:00 [rcu_preempt]\n   13 root      0:00 [rcuog/0]\n   14 root      0:00 [rcuop/0]\n   15 root      0:00 [migration/0]\n   16 root      0:00 [cpuhp/0]\n   17 root      0:00 [cpuhp/1]\n   18 root      0:00 [migration/1]\n   19 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0-eve]\n   21 root      0:00 [kworker/1:0H]\n   22 root      0:00 [rcuop/1]\n   23 root      0:00 [cpuhp/2]\n   24 root      0:00 [migration/2]\n   25 root      0:00 [ksoftirqd/2]\n   26 root      0:00 [kworker/2:0-mm_]\n   27 root      0:00 [kworker/2:0H]\n   28 root      0:00 [rcuop/2]\n   29 root      0:00 [cpuhp/3]\n   30 root      0:00 [migration/3]\n   31 root      0:00 [ksoftirqd/3]\n   32 root      0:00 [kworker/3:0-mm_]\n   33 root      0:00 [kworker/3:0H]\n   34 root      0:00 [rcuop/3]\n   35 root      0:00 [cpuhp/4]\n   36 root      0:00 [migration/4]\n   37 root      0:00 [ksoftirqd/4]\n   38 root      0:00 [kworker/4:0-eve]\n   39 root      0:00 [kworker/4:0H]\n   40 root      0:00 [rcuog/4]\n   41 root      0:00 [rcuop/4]\n   42 root      0:00 [cpuhp/5]\n   43 root      0:00 [migration/5]\n   44 root      0:00 [ksoftirqd/5]\n   45 root      0:00 [kworker/5:0-mm_]\n   46 root      0:00 [kworker/5:0H]\n   47 root      0:00 [rcuop/5]\n   48 root      0:00 [cpuhp/6]\n   49 root      0:00 [migration/6]\n   50 root      0:00 [ksoftirqd/6]\n   51 root      0:00 [kworker/6:0-eve]\n   52 root      0:00 [kworker/6:0H]\n   53 root      0:00 [rcuop/6]\n   54 root      0:00 [cpuhp/7]\n   55 root      0:00 [migration/7]\n   56 root      0:00 [ksoftirqd/7]\n   57 root      0:00 [kworker/7:0-mm_]\n   58 root      0:00 [kworker/7:0H]\n   59 root      0:00 [rcuop/7]\n   60 root      0:00 [netns]\n   61 root      0:00 [kworker/0:1-dm_]\n   62 root      0:00 [kworker/3:1-eve]\n   63 root      0:00 [kworker/2:1-eve]\n   64 root      0:00 [kworker/6:1-eve]\n   66 root      0:00 [kworker/1:1-eve]\n   70 root      0:00 [oom_reaper]\n   71 root      0:00 [writeback]\n   72 root      0:00 [kcompactd0]\n   73 root      0:00 [kblockd]\n   74 root      0:00 [blkcg_punt_bio]\n   75 root      0:00 [kworker/u17:0-t]\n   76 root      0:00 [devfreq_wq]\n   77 root      0:00 [watchdogd]\n   78 root      0:00 [kworker/0:1H-kb]\n   79 root      0:00 [cfg80211]\n   80 root      0:00 [kshrinkd0]\n   81 root      0:00 [kswapd0]\n   82 root      0:00 [dmabuf-deferred]\n   83 root      0:00 [uas]\n   84 root      0:00 [dm_bufio_cache]\n   85 root      0:00 [ipv6_addrconf]\n   86 root      0:00 [krfcommd]\n   88 root      0:00 [irq/312-1761000]\n   89 root      0:00 [acpm_log]\n   90 root      0:00 [trusty-nop-0]\n   91 root      0:00 [trusty-nop-1]\n   92 root      0:00 [trusty-nop-2]\n   93 root      0:00 [trusty-nop-3]\n   94 root      0:00 [trusty-nop-4]\n   95 root      0:00 [trusty-nop-5]\n   96 root      0:00 [trusty-nop-6]\n   97 root      0:00 [trusty-nop-7]\n   98 root      0:00 [memlat_wq]\n  100 root      0:02 [simpleinteracti]\n  101 root      0:00 [simpleinteracti]\n  102 root      0:00 [simpleinteracti]\n  103 root      0:00 [simpleinteracti]\n  104 root      0:00 [simpleinteracti]\n  105 root      0:00 [simpleinteracti]\n  106 root      0:00 [simpleinteracti]\n  107 root      0:00 [simpleinteracti]\n  108 root      0:00 [PT_resize]\n  109 root      0:00 [scsi_eh_0]\n  110 root      0:00 [scsi_tmf_0]\n  111 root      0:00 [ufs_mgc_hibern8]\n  112 root      0:00 [ufs_eh_wq_0]\n  113 root      0:00 [ufs_clk_gating_]\n  116 root      0:00 [kworker/0:3-eve]\n  119 root      0:00 [irq/377-s2mpg10]\n  120 root      0:00 [irq/423-aerdrv]\n  121 root      0:00 [pcie_wq]\n  122 root      0:00 [irq/455-s2mpg11]\n  123 root      0:00 [kworker/u17:1]\n  124 root      0:00 [wq_odpm]\n  125 root      0:00 [wq_odpm]\n  126 root      0:00 [slg51000wq]\n  127 root      0:00 [irq/424-aerdrv]\n  128 root      0:00 [pcie_wq]\n  140 root      0:00 [kworker/5:2]\n  141 root      0:00 [kworker/7:2]\n  142 root      0:00 [irq/309-1011000]\n  166 root      0:00 [kworker/u16:1-r]\n  176 root      0:00 [kworker/u16:3-e]\n  177 root      0:00 [kworker/4:2]\n  196 root      0:00 [kworker/6:2]\n  240 root      0:00 ps -A\n"
  },
  {
    "path": "results/gs101/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1110.235259,3.700784196666667,56.123879379095065,30.331421,19.781466882148383,540.437\r\n1,574000,2129.260295,3.7095127090592337,79.9781686817106,22.537608,26.622168599258625,281.797\r\n1,738000,2737.563477,3.709435605691057,94.50717212179832,20.714271,28.965537816899275,219.182\r\n1,930000,3452.30355,3.71215435483871,111.86016512758552,19.441856,30.861251106890208,173.805\r\n1,1098000,4075.920818,3.7121318925318763,127.84651699894712,18.820925,31.879410815355783,147.215\r\n1,1197000,4441.746495,3.7107322431077696,137.67883870872228,18.599172,32.25950058421956,135.091\r\n1,1328000,4927.645735,3.7105766076807227,150.07295721442063,18.274383999999998,32.8328440509951,121.77\r\n1,1401000,5201.28992,3.712555260528194,157.4317638084671,18.161958,33.03608564671276,115.364\r\n1,1598000,5931.432639,3.7117851307884853,177.28566203726587,17.935104,33.45394595983385,101.165\r\n1,1704000,6328.379618,3.7138378039906104,188.69502626083656,17.891685000000003,33.53513098402973,94.818\r\n1,1803000,6691.648822,3.7113970171935664,236.8808198860278,21.24134,28.246805521685545,89.671\r\n4,400000,3084.373024,7.71093256,23.48342988737361,4.568396,131.3371257658049,194.537\r\n4,553000,4285.59184,7.749713996383363,33.65207019448472,4.71166,127.34365382901143,140.011\r\n4,696000,5392.676745,7.7480987715517236,43.946049178559875,4.8897889999999995,122.70468112223247,111.268\r\n4,799000,6190.481104,7.747786112640801,51.92808137915382,5.033337,119.20521117501171,96.929\r\n4,910000,7047.381898,7.744375712087912,62.440683539843796,5.3165119999999995,112.85594765891622,85.145\r\n4,1024000,7935.563227,7.749573463867187,73.01754942802354,5.521222,108.67159480274476,75.615\r\n4,1197000,9267.124875,7.741958959899749,93.86105233896002,6.077597,98.72322893406721,64.751\r\n4,1328000,10284.891494,7.744647209337349,110.41518553432171,6.442174,93.13626114414171,58.345\r\n4,1491000,11548.677676,7.745592002682763,140.6602836742942,7.308849,82.09226924786653,51.961\r\n4,1663000,12884.384126,7.7476753613950695,176.28342601936745,8.210048,73.0811805241577,46.573\r\n4,1836000,14222.390784,7.746400209150327,218.48678690778092,9.218613,65.08571300259595,42.193\r\n4,1999000,15491.86677,7.749808289144573,272.8173791821561,10.567853999999999,56.7759547018723,38.736\r\n4,2130000,16510.277648,7.751304060093896,333.96808627709913,12.139072,49.42717202764758,36.348\r\n4,2253000,17453.022282,7.746570031957391,400.0242256798022,13.754833000000001,43.62103124043745,34.385\r\n6,500000,4646.912127,9.293824253999999,53.10851266484431,6.858274000000001,87.48556852642515,129.137\r\n6,851000,7909.515147,9.294377376028201,102.20580947862301,7.754968,77.3697583278229,75.876\r\n6,984000,9125.891676,9.274280158536584,123.58732741317438,8.127597,73.82255788519042,65.764\r\n6,1106000,10270.982762,9.286602858951175,152.36774822877092,8.903457,67.38955441689671,58.434\r\n6,1277000,11872.019628,9.296804720438528,188.51707973178787,9.530858,62.95340881167257,50.557\r\n6,1426000,13232.764324,9.279638375876578,226.49589929009215,10.273401,58.403249323179345,45.358\r\n6,1582000,14688.961246,9.285057677623263,276.6554424432263,11.305247999999999,53.07269685724719,40.864\r\n6,1745000,16209.644739,9.289194692836675,343.82637107444714,12.732922,47.121941059561976,37.033\r\n6,1826000,16977.928693,9.297879897590363,382.3766050115957,13.520072,44.37846188984793,35.358\r\n6,2048000,19025.271903,9.28968354638672,487.63129872599353,15.386718,38.99467059836932,31.554\r\n6,2188000,20324.514752,9.289083524680073,645.4216406540949,19.063819,31.473232094786464,29.537\r\n6,2252000,20927.069164,9.292659486678508,702.015929450312,20.140134999999997,29.791260088375775,28.689\r\n6,2401000,22318.107424,9.295338369012912,820.4780313731321,22.0725,27.183146449201494,26.902\r\n6,2507000,23289.213213,9.289674197447148,945.3669368915092,24.372505,24.617904478837936,25.781\r\n6,2630000,24440.91409,9.293123228136881,1126.214361312383,27.666582,21.686813354826413,24.566\r\n6,2704000,25118.265165,9.289299247411243,1208.3668005354752,28.8848,20.77217083033291,23.904\r\n6,2802000,26037.146329,9.292343443611706,1370.6807440489094,31.612009999999998,18.980128122191534,23.063\r\n6,2850000,26493.575308,9.29599133614035,1516.849055771267,34.377866999999995,17.45308980339007,22.664\r\n"
  },
  {
    "path": "results/gs101/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 4254.127927064896, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 540.437, \"elapsed_ns\": 540437000000.0, \"power_mean\": 56.123879379095065, \"energy_millijoules\": 30331.421, \"energy_joules\": 30.331421, \"coremark_score\": 1110.235259, \"coremarks_per_mhz\": 3.700784196666667, \"ulpmark_cm_score\": 19.781466882148383}, \"idle\": {\"elapsed_sec\": 5.005, \"elapsed_ns\": 5005000000.0, \"power_mean\": 39.03936063936064, \"energy_millijoules\": 195.392, \"energy_joules\": 0.19539199999999998}}, \"574000\": {\"active\": {\"elapsed_sec\": 281.797, \"elapsed_ns\": 281797000000.0, \"power_mean\": 79.9781686817106, \"energy_millijoules\": 22537.608, \"energy_joules\": 22.537608, \"coremark_score\": 2129.260295, \"coremarks_per_mhz\": 3.7095127090592337, \"ulpmark_cm_score\": 26.622168599258625}, \"idle\": {\"elapsed_sec\": 5.003, \"elapsed_ns\": 5003000000.0, \"power_mean\": 36.917049770137915, \"energy_millijoules\": 184.696, \"energy_joules\": 0.184696}}, \"738000\": {\"active\": {\"elapsed_sec\": 219.182, \"elapsed_ns\": 219182000000.0, \"power_mean\": 94.50717212179832, \"energy_millijoules\": 20714.271, \"energy_joules\": 20.714271, \"coremark_score\": 2737.563477, \"coremarks_per_mhz\": 3.709435605691057, \"ulpmark_cm_score\": 28.965537816899275}, \"idle\": {\"elapsed_sec\": 5.006, \"elapsed_ns\": 5006000000.0, \"power_mean\": 36.4690371554135, \"energy_millijoules\": 182.564, \"energy_joules\": 0.182564}}, \"930000\": {\"active\": {\"elapsed_sec\": 173.805, \"elapsed_ns\": 173805000000.0, \"power_mean\": 111.86016512758552, \"energy_millijoules\": 19441.856, \"energy_joules\": 19.441856, \"coremark_score\": 3452.30355, \"coremarks_per_mhz\": 3.71215435483871, \"ulpmark_cm_score\": 30.861251106890208}, \"idle\": {\"elapsed_sec\": 5.008, \"elapsed_ns\": 5008000000.0, \"power_mean\": 36.23402555910543, \"energy_millijoules\": 181.46, \"energy_joules\": 0.18146}}, \"1098000\": {\"active\": {\"elapsed_sec\": 147.215, \"elapsed_ns\": 147215000000.0, \"power_mean\": 127.84651699894712, \"energy_millijoules\": 18820.925, \"energy_joules\": 18.820925, \"coremark_score\": 4075.920818, \"coremarks_per_mhz\": 3.7121318925318763, \"ulpmark_cm_score\": 31.879410815355783}, \"idle\": {\"elapsed_sec\": 5.003, \"elapsed_ns\": 5003000000.0, \"power_mean\": 36.23785728562862, \"energy_millijoules\": 181.298, \"energy_joules\": 0.18129800000000001}}, \"1197000\": {\"active\": {\"elapsed_sec\": 135.091, \"elapsed_ns\": 135091000000.0, \"power_mean\": 137.67883870872228, \"energy_millijoules\": 18599.172, \"energy_joules\": 18.599172, \"coremark_score\": 4441.746495, \"coremarks_per_mhz\": 3.7107322431077696, \"ulpmark_cm_score\": 32.25950058421956}, \"idle\": {\"elapsed_sec\": 5.007, \"elapsed_ns\": 5007000000.0, \"power_mean\": 36.370880766926305, \"energy_millijoules\": 182.109, \"energy_joules\": 0.18210900000000002}}, \"1328000\": {\"active\": {\"elapsed_sec\": 121.77, \"elapsed_ns\": 121770000000.0, \"power_mean\": 150.07295721442063, \"energy_millijoules\": 18274.384, \"energy_joules\": 18.274383999999998, \"coremark_score\": 4927.645735, \"coremarks_per_mhz\": 3.7105766076807227, \"ulpmark_cm_score\": 32.8328440509951}, \"idle\": {\"elapsed_sec\": 5.006, \"elapsed_ns\": 5006000000.0, \"power_mean\": 36.32461046743907, \"energy_millijoules\": 181.841, \"energy_joules\": 0.181841}}, \"1401000\": {\"active\": {\"elapsed_sec\": 115.364, \"elapsed_ns\": 115364000000.0, \"power_mean\": 157.4317638084671, \"energy_millijoules\": 18161.958, \"energy_joules\": 18.161958, \"coremark_score\": 5201.28992, \"coremarks_per_mhz\": 3.712555260528194, \"ulpmark_cm_score\": 33.03608564671276}, \"idle\": {\"elapsed_sec\": 5.003, \"elapsed_ns\": 5003000000.0, \"power_mean\": 36.5022986208275, \"energy_millijoules\": 182.621, \"energy_joules\": 0.182621}}, \"1598000\": {\"active\": {\"elapsed_sec\": 101.165, \"elapsed_ns\": 101165000000.0, \"power_mean\": 177.28566203726587, \"energy_millijoules\": 17935.104, \"energy_joules\": 17.935104, \"coremark_score\": 5931.432639, \"coremarks_per_mhz\": 3.7117851307884853, \"ulpmark_cm_score\": 33.45394595983385}, \"idle\": {\"elapsed_sec\": 5.007, \"elapsed_ns\": 5007000000.0, \"power_mean\": 36.53465148791692, \"energy_millijoules\": 182.929, \"energy_joules\": 0.182929}}, \"1704000\": {\"active\": {\"elapsed_sec\": 94.818, \"elapsed_ns\": 94818000000.0, \"power_mean\": 188.69502626083656, \"energy_millijoules\": 17891.685, \"energy_joules\": 17.891685000000003, \"coremark_score\": 6328.379618, \"coremarks_per_mhz\": 3.7138378039906104, \"ulpmark_cm_score\": 33.53513098402973}, \"idle\": {\"elapsed_sec\": 5.007, \"elapsed_ns\": 5007000000.0, \"power_mean\": 36.803475134811265, \"energy_millijoules\": 184.275, \"energy_joules\": 0.184275}}, \"1803000\": {\"active\": {\"elapsed_sec\": 89.671, \"elapsed_ns\": 89671000000.0, \"power_mean\": 236.8808198860278, \"energy_millijoules\": 21241.34, \"energy_joules\": 21.24134, \"coremark_score\": 6691.648822, \"coremarks_per_mhz\": 3.7113970171935664, \"ulpmark_cm_score\": 28.246805521685545}, \"idle\": {\"elapsed_sec\": 5.008, \"elapsed_ns\": 5008000000.0, \"power_mean\": 36.894169329073485, \"energy_millijoules\": 184.766, \"energy_joules\": 0.18476599999999999}}}}, \"4\": {\"freqs\": {\"400000\": {\"active\": {\"elapsed_sec\": 194.537, \"elapsed_ns\": 194537000000.0, \"power_mean\": 23.48342988737361, \"energy_millijoules\": 4568.396, \"energy_joules\": 4.568396, \"coremark_score\": 3084.373024, \"coremarks_per_mhz\": 7.71093256, \"ulpmark_cm_score\": 131.3371257658049}, \"idle\": {\"elapsed_sec\": 5.008, \"elapsed_ns\": 5008000000.0, \"power_mean\": 6.72064696485623, \"energy_millijoules\": 33.657, \"energy_joules\": 0.033657}}, \"553000\": {\"active\": {\"elapsed_sec\": 140.011, \"elapsed_ns\": 140011000000.0, \"power_mean\": 33.65207019448472, \"energy_millijoules\": 4711.66, \"energy_joules\": 4.71166, \"coremark_score\": 4285.59184, \"coremarks_per_mhz\": 7.749713996383363, \"ulpmark_cm_score\": 127.34365382901143}, \"idle\": {\"elapsed_sec\": 5.007, \"elapsed_ns\": 5007000000.0, \"power_mean\": 7.089474735370481, \"energy_millijoules\": 35.497, \"energy_joules\": 0.035497}}, \"696000\": {\"active\": {\"elapsed_sec\": 111.268, \"elapsed_ns\": 111268000000.0, \"power_mean\": 43.946049178559875, \"energy_millijoules\": 4889.789, \"energy_joules\": 4.8897889999999995, \"coremark_score\": 5392.676745, \"coremarks_per_mhz\": 7.7480987715517236, \"ulpmark_cm_score\": 122.70468112223247}, \"idle\": {\"elapsed_sec\": 5.006, \"elapsed_ns\": 5006000000.0, \"power_mean\": 7.501997602876548, \"energy_millijoules\": 37.555, \"energy_joules\": 0.037555}}, \"799000\": {\"active\": {\"elapsed_sec\": 96.929, \"elapsed_ns\": 96929000000.0, \"power_mean\": 51.92808137915382, \"energy_millijoules\": 5033.337, \"energy_joules\": 5.033337, \"coremark_score\": 6190.481104, \"coremarks_per_mhz\": 7.747786112640801, \"ulpmark_cm_score\": 119.20521117501171}, \"idle\": {\"elapsed_sec\": 5.006, \"elapsed_ns\": 5006000000.0, \"power_mean\": 7.893727526967639, \"energy_millijoules\": 39.516, \"energy_joules\": 0.039515999999999996}}, \"910000\": {\"active\": {\"elapsed_sec\": 85.145, \"elapsed_ns\": 85145000000.0, \"power_mean\": 62.440683539843796, \"energy_millijoules\": 5316.512, \"energy_joules\": 5.3165119999999995, \"coremark_score\": 7047.381898, \"coremarks_per_mhz\": 7.744375712087912, \"ulpmark_cm_score\": 112.85594765891622}, \"idle\": {\"elapsed_sec\": 5.005, \"elapsed_ns\": 5005000000.0, \"power_mean\": 8.375224775224774, \"energy_millijoules\": 41.918, \"energy_joules\": 0.041918}}, \"1024000\": {\"active\": {\"elapsed_sec\": 75.615, \"elapsed_ns\": 75615000000.0, \"power_mean\": 73.01754942802354, \"energy_millijoules\": 5521.222, \"energy_joules\": 5.521222, \"coremark_score\": 7935.563227, \"coremarks_per_mhz\": 7.749573463867187, \"ulpmark_cm_score\": 108.67159480274476}, \"idle\": {\"elapsed_sec\": 5.007, \"elapsed_ns\": 5007000000.0, \"power_mean\": 8.721989215098862, \"energy_millijoules\": 43.671, \"energy_joules\": 0.043671}}, \"1197000\": {\"active\": {\"elapsed_sec\": 64.751, \"elapsed_ns\": 64751000000.0, \"power_mean\": 93.86105233896002, \"energy_millijoules\": 6077.597, \"energy_joules\": 6.077597, \"coremark_score\": 9267.124875, \"coremarks_per_mhz\": 7.741958959899749, \"ulpmark_cm_score\": 98.72322893406721}, \"idle\": {\"elapsed_sec\": 5.007, \"elapsed_ns\": 5007000000.0, \"power_mean\": 9.391252246854403, \"energy_millijoules\": 47.022, \"energy_joules\": 0.047022}}, \"1328000\": {\"active\": {\"elapsed_sec\": 58.345, \"elapsed_ns\": 58345000000.0, \"power_mean\": 110.41518553432171, \"energy_millijoules\": 6442.174, \"energy_joules\": 6.442174, \"coremark_score\": 10284.891494, \"coremarks_per_mhz\": 7.744647209337349, \"ulpmark_cm_score\": 93.13626114414171}, \"idle\": {\"elapsed_sec\": 5.007, \"elapsed_ns\": 5007000000.0, \"power_mean\": 9.921110445376472, \"energy_millijoules\": 49.675, \"energy_joules\": 0.049675}}, \"1491000\": {\"active\": {\"elapsed_sec\": 51.961, \"elapsed_ns\": 51961000000.0, \"power_mean\": 140.6602836742942, \"energy_millijoules\": 7308.849, \"energy_joules\": 7.308849, \"coremark_score\": 11548.677676, \"coremarks_per_mhz\": 7.745592002682763, \"ulpmark_cm_score\": 82.09226924786653}, \"idle\": {\"elapsed_sec\": 5.007, \"elapsed_ns\": 5007000000.0, \"power_mean\": 10.893948472139005, \"energy_millijoules\": 54.546, \"energy_joules\": 0.054546}}, \"1663000\": {\"active\": {\"elapsed_sec\": 46.573, \"elapsed_ns\": 46573000000.0, \"power_mean\": 176.28342601936745, \"energy_millijoules\": 8210.048, \"energy_joules\": 8.210048, \"coremark_score\": 12884.384126, \"coremarks_per_mhz\": 7.7476753613950695, \"ulpmark_cm_score\": 73.0811805241577}, \"idle\": {\"elapsed_sec\": 5.006, \"elapsed_ns\": 5006000000.0, \"power_mean\": 11.911905713144227, \"energy_millijoules\": 59.631, \"energy_joules\": 0.059631}}, \"1836000\": {\"active\": {\"elapsed_sec\": 42.193, \"elapsed_ns\": 42193000000.0, \"power_mean\": 218.48678690778092, \"energy_millijoules\": 9218.613, \"energy_joules\": 9.218613, \"coremark_score\": 14222.390784, \"coremarks_per_mhz\": 7.746400209150327, \"ulpmark_cm_score\": 65.08571300259595}, \"idle\": {\"elapsed_sec\": 5.007, \"elapsed_ns\": 5007000000.0, \"power_mean\": 13.235070900738965, \"energy_millijoules\": 66.268, \"energy_joules\": 0.06626800000000001}}, \"1999000\": {\"active\": {\"elapsed_sec\": 38.736, \"elapsed_ns\": 38736000000.0, \"power_mean\": 272.8173791821561, \"energy_millijoules\": 10567.854, \"energy_joules\": 10.567853999999999, \"coremark_score\": 15491.86677, \"coremarks_per_mhz\": 7.749808289144573, \"ulpmark_cm_score\": 56.7759547018723}, \"idle\": {\"elapsed_sec\": 5.005, \"elapsed_ns\": 5005000000.0, \"power_mean\": 14.882517482517482, \"energy_millijoules\": 74.487, \"energy_joules\": 0.074487}}, \"2130000\": {\"active\": {\"elapsed_sec\": 36.348, \"elapsed_ns\": 36348000000.0, \"power_mean\": 333.96808627709913, \"energy_millijoules\": 12139.072, \"energy_joules\": 12.139072, \"coremark_score\": 16510.277648, \"coremarks_per_mhz\": 7.751304060093896, \"ulpmark_cm_score\": 49.42717202764758}, \"idle\": {\"elapsed_sec\": 5.007, \"elapsed_ns\": 5007000000.0, \"power_mean\": 17.079488715797883, \"energy_millijoules\": 85.517, \"energy_joules\": 0.085517}}, \"2253000\": {\"active\": {\"elapsed_sec\": 34.385, \"elapsed_ns\": 34385000000.0, \"power_mean\": 400.0242256798022, \"energy_millijoules\": 13754.833, \"energy_joules\": 13.754833000000001, \"coremark_score\": 17453.022282, \"coremarks_per_mhz\": 7.746570031957391, \"ulpmark_cm_score\": 43.62103124043745}, \"idle\": {\"elapsed_sec\": 5.007, \"elapsed_ns\": 5007000000.0, \"power_mean\": 19.452166966247255, \"energy_millijoules\": 97.397, \"energy_joules\": 0.09739700000000001}}}}, \"6\": {\"freqs\": {\"500000\": {\"active\": {\"elapsed_sec\": 129.137, \"elapsed_ns\": 129137000000.0, \"power_mean\": 53.10851266484431, \"energy_millijoules\": 6858.274, \"energy_joules\": 6.858274000000001, \"coremark_score\": 4646.912127, \"coremarks_per_mhz\": 9.293824253999999, \"ulpmark_cm_score\": 87.48556852642515}, \"idle\": {\"elapsed_sec\": 5.011, \"elapsed_ns\": 5011000000.0, \"power_mean\": 14.01376970664538, \"energy_millijoules\": 70.223, \"energy_joules\": 0.070223}}, \"851000\": {\"active\": {\"elapsed_sec\": 75.876, \"elapsed_ns\": 75876000000.0, \"power_mean\": 102.20580947862301, \"energy_millijoules\": 7754.968, \"energy_joules\": 7.754968, \"coremark_score\": 7909.515147, \"coremarks_per_mhz\": 9.294377376028201, \"ulpmark_cm_score\": 77.3697583278229}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 16.44020762627271, \"energy_millijoules\": 82.349, \"energy_joules\": 0.082349}}, \"984000\": {\"active\": {\"elapsed_sec\": 65.764, \"elapsed_ns\": 65764000000.0, \"power_mean\": 123.58732741317438, \"energy_millijoules\": 8127.597, \"energy_joules\": 8.127597, \"coremark_score\": 9125.891676, \"coremarks_per_mhz\": 9.274280158536584, \"ulpmark_cm_score\": 73.82255788519042}, \"idle\": {\"elapsed_sec\": 5.008, \"elapsed_ns\": 5008000000.0, \"power_mean\": 17.064896166134186, \"energy_millijoules\": 85.461, \"energy_joules\": 0.085461}}, \"1106000\": {\"active\": {\"elapsed_sec\": 58.434, \"elapsed_ns\": 58434000000.0, \"power_mean\": 152.36774822877092, \"energy_millijoules\": 8903.457, \"energy_joules\": 8.903457, \"coremark_score\": 10270.982762, \"coremarks_per_mhz\": 9.286602858951175, \"ulpmark_cm_score\": 67.38955441689671}, \"idle\": {\"elapsed_sec\": 5.008, \"elapsed_ns\": 5008000000.0, \"power_mean\": 18.497803514376997, \"energy_millijoules\": 92.637, \"energy_joules\": 0.092637}}, \"1277000\": {\"active\": {\"elapsed_sec\": 50.557, \"elapsed_ns\": 50557000000.0, \"power_mean\": 188.51707973178787, \"energy_millijoules\": 9530.858, \"energy_joules\": 9.530858, \"coremark_score\": 11872.019628, \"coremarks_per_mhz\": 9.296804720438528, \"ulpmark_cm_score\": 62.95340881167257}, \"idle\": {\"elapsed_sec\": 5.008, \"elapsed_ns\": 5008000000.0, \"power_mean\": 20.179512779552716, \"energy_millijoules\": 101.059, \"energy_joules\": 0.101059}}, \"1426000\": {\"active\": {\"elapsed_sec\": 45.358, \"elapsed_ns\": 45358000000.0, \"power_mean\": 226.49589929009215, \"energy_millijoules\": 10273.401, \"energy_joules\": 10.273401, \"coremark_score\": 13232.764324, \"coremarks_per_mhz\": 9.279638375876578, \"ulpmark_cm_score\": 58.403249323179345}, \"idle\": {\"elapsed_sec\": 5.005, \"elapsed_ns\": 5005000000.0, \"power_mean\": 21.763036963036964, \"energy_millijoules\": 108.924, \"energy_joules\": 0.108924}}, \"1582000\": {\"active\": {\"elapsed_sec\": 40.864, \"elapsed_ns\": 40864000000.0, \"power_mean\": 276.6554424432263, \"energy_millijoules\": 11305.248, \"energy_joules\": 11.305247999999999, \"coremark_score\": 14688.961246, \"coremarks_per_mhz\": 9.285057677623263, \"ulpmark_cm_score\": 53.07269685724719}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 23.70553004591735, \"energy_millijoules\": 118.741, \"energy_joules\": 0.118741}}, \"1745000\": {\"active\": {\"elapsed_sec\": 37.033, \"elapsed_ns\": 37033000000.0, \"power_mean\": 343.82637107444714, \"energy_millijoules\": 12732.922, \"energy_joules\": 12.732922, \"coremark_score\": 16209.644739, \"coremarks_per_mhz\": 9.289194692836675, \"ulpmark_cm_score\": 47.121941059561976}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 25.7829906168896, \"energy_millijoules\": 129.147, \"energy_joules\": 0.12914699999999998}}, \"1826000\": {\"active\": {\"elapsed_sec\": 35.358, \"elapsed_ns\": 35358000000.0, \"power_mean\": 382.3766050115957, \"energy_millijoules\": 13520.072, \"energy_joules\": 13.520072, \"coremark_score\": 16977.928693, \"coremarks_per_mhz\": 9.297879897590363, \"ulpmark_cm_score\": 44.37846188984793}, \"idle\": {\"elapsed_sec\": 5.008, \"elapsed_ns\": 5008000000.0, \"power_mean\": 27.682308306709267, \"energy_millijoules\": 138.633, \"energy_joules\": 0.138633}}, \"2048000\": {\"active\": {\"elapsed_sec\": 31.554, \"elapsed_ns\": 31554000000.0, \"power_mean\": 487.63129872599353, \"energy_millijoules\": 15386.718, \"energy_joules\": 15.386718, \"coremark_score\": 19025.271903, \"coremarks_per_mhz\": 9.28968354638672, \"ulpmark_cm_score\": 38.99467059836932}, \"idle\": {\"elapsed_sec\": 5.004, \"elapsed_ns\": 5004000000.0, \"power_mean\": 31.431254996003197, \"energy_millijoules\": 157.282, \"energy_joules\": 0.157282}}, \"2188000\": {\"active\": {\"elapsed_sec\": 29.537, \"elapsed_ns\": 29537000000.0, \"power_mean\": 645.4216406540949, \"energy_millijoules\": 19063.819, \"energy_joules\": 19.063819, \"coremark_score\": 20324.514752, \"coremarks_per_mhz\": 9.289083524680073, \"ulpmark_cm_score\": 31.473232094786464}, \"idle\": {\"elapsed_sec\": 5.007, \"elapsed_ns\": 5007000000.0, \"power_mean\": 35.435590173756744, \"energy_millijoules\": 177.426, \"energy_joules\": 0.177426}}, \"2252000\": {\"active\": {\"elapsed_sec\": 28.689, \"elapsed_ns\": 28689000000.0, \"power_mean\": 702.015929450312, \"energy_millijoules\": 20140.135, \"energy_joules\": 20.140134999999997, \"coremark_score\": 20927.069164, \"coremarks_per_mhz\": 9.292659486678508, \"ulpmark_cm_score\": 29.791260088375775}, \"idle\": {\"elapsed_sec\": 5.008, \"elapsed_ns\": 5008000000.0, \"power_mean\": 36.79732428115016, \"energy_millijoules\": 184.281, \"energy_joules\": 0.184281}}, \"2401000\": {\"active\": {\"elapsed_sec\": 26.902, \"elapsed_ns\": 26902000000.0, \"power_mean\": 820.4780313731321, \"energy_millijoules\": 22072.5, \"energy_joules\": 22.0725, \"coremark_score\": 22318.107424, \"coremarks_per_mhz\": 9.295338369012912, \"ulpmark_cm_score\": 27.183146449201494}, \"idle\": {\"elapsed_sec\": 5.005, \"elapsed_ns\": 5005000000.0, \"power_mean\": 40.67032967032967, \"energy_millijoules\": 203.555, \"energy_joules\": 0.203555}}, \"2507000\": {\"active\": {\"elapsed_sec\": 25.781, \"elapsed_ns\": 25781000000.0, \"power_mean\": 945.3669368915092, \"energy_millijoules\": 24372.505, \"energy_joules\": 24.372505, \"coremark_score\": 23289.213213, \"coremarks_per_mhz\": 9.289674197447148, \"ulpmark_cm_score\": 24.617904478837936}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 46.51407466560192, \"energy_millijoules\": 232.989, \"energy_joules\": 0.232989}}, \"2630000\": {\"active\": {\"elapsed_sec\": 24.566, \"elapsed_ns\": 24566000000.0, \"power_mean\": 1126.214361312383, \"energy_millijoules\": 27666.582, \"energy_joules\": 27.666582, \"coremark_score\": 24440.91409, \"coremarks_per_mhz\": 9.293123228136881, \"ulpmark_cm_score\": 21.686813354826413}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 56.411459373128366, \"energy_millijoules\": 282.565, \"energy_joules\": 0.282565}}, \"2704000\": {\"active\": {\"elapsed_sec\": 23.904, \"elapsed_ns\": 23904000000.0, \"power_mean\": 1208.3668005354752, \"energy_millijoules\": 28884.8, \"energy_joules\": 28.8848, \"coremark_score\": 25118.265165, \"coremarks_per_mhz\": 9.289299247411243, \"ulpmark_cm_score\": 20.77217083033291}, \"idle\": {\"elapsed_sec\": 5.005, \"elapsed_ns\": 5005000000.0, \"power_mean\": 62.43916083916084, \"energy_millijoules\": 312.508, \"energy_joules\": 0.312508}}, \"2802000\": {\"active\": {\"elapsed_sec\": 23.063, \"elapsed_ns\": 23063000000.0, \"power_mean\": 1370.6807440489094, \"energy_millijoules\": 31612.01, \"energy_joules\": 31.612009999999998, \"coremark_score\": 26037.146329, \"coremarks_per_mhz\": 9.292343443611706, \"ulpmark_cm_score\": 18.980128122191534}, \"idle\": {\"elapsed_sec\": 5.006, \"elapsed_ns\": 5006000000.0, \"power_mean\": 78.80842988413903, \"energy_millijoules\": 394.515, \"energy_joules\": 0.394515}}, \"2850000\": {\"active\": {\"elapsed_sec\": 22.664, \"elapsed_ns\": 22664000000.0, \"power_mean\": 1516.849055771267, \"energy_millijoules\": 34377.867, \"energy_joules\": 34.377866999999995, \"coremark_score\": 26493.575308, \"coremarks_per_mhz\": 9.29599133614035, \"ulpmark_cm_score\": 17.45308980339007}, \"idle\": {\"elapsed_sec\": 5.008, \"elapsed_ns\": 5008000000.0, \"power_mean\": 92.95287539936102, \"energy_millijoules\": 465.508, \"energy_joules\": 0.465508}}}}}, \"meta\": {\"cpu_count\": 8}}"
  },
  {
    "path": "results/gs101/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \n\n===== CPU 1 =====\nFrequencies: 300 574 738 930 1098 1197 1328 1401 1598 1704 1803\n\n 300:  1110     3.7 C/MHz     56 mW   30.3 J   19.8 I/mJ   540.4 s\n 574:  2129     3.7 C/MHz     80 mW   22.5 J   26.6 I/mJ   281.8 s\n 738:  2738     3.7 C/MHz     95 mW   20.7 J   29.0 I/mJ   219.2 s\n 930:  3452     3.7 C/MHz    112 mW   19.4 J   30.9 I/mJ   173.8 s\n1098:  4076     3.7 C/MHz    128 mW   18.8 J   31.9 I/mJ   147.2 s\n1197:  4442     3.7 C/MHz    138 mW   18.6 J   32.3 I/mJ   135.1 s\n1328:  4928     3.7 C/MHz    150 mW   18.3 J   32.8 I/mJ   121.8 s\n1401:  5201     3.7 C/MHz    157 mW   18.2 J   33.0 I/mJ   115.4 s\n1598:  5931     3.7 C/MHz    177 mW   17.9 J   33.5 I/mJ   101.2 s\n1704:  6328     3.7 C/MHz    189 mW   17.9 J   33.5 I/mJ    94.8 s\n1803:  6692     3.7 C/MHz    237 mW   21.2 J   28.2 I/mJ    89.7 s\n\n\n===== CPU 4 =====\nFrequencies: 400 553 696 799 910 1024 1197 1328 1491 1663 1836 1999 2130 2253\n\n 400:  3084     7.7 C/MHz     23 mW    4.6 J   131.3 I/mJ   194.5 s\n 553:  4286     7.7 C/MHz     34 mW    4.7 J   127.3 I/mJ   140.0 s\n 696:  5393     7.7 C/MHz     44 mW    4.9 J   122.7 I/mJ   111.3 s\n 799:  6190     7.7 C/MHz     52 mW    5.0 J   119.2 I/mJ    96.9 s\n 910:  7047     7.7 C/MHz     62 mW    5.3 J   112.9 I/mJ    85.1 s\n1024:  7936     7.7 C/MHz     73 mW    5.5 J   108.7 I/mJ    75.6 s\n1197:  9267     7.7 C/MHz     94 mW    6.1 J   98.7 I/mJ    64.7 s\n1328: 10285     7.7 C/MHz    110 mW    6.4 J   93.1 I/mJ    58.3 s\n1491: 11549     7.7 C/MHz    141 mW    7.3 J   82.1 I/mJ    52.0 s\n1663: 12884     7.7 C/MHz    176 mW    8.2 J   73.1 I/mJ    46.6 s\n1836: 14222     7.7 C/MHz    218 mW    9.2 J   65.1 I/mJ    42.2 s\n1999: 15492     7.7 C/MHz    273 mW   10.6 J   56.8 I/mJ    38.7 s\n2130: 16510     7.8 C/MHz    334 mW   12.1 J   49.4 I/mJ    36.3 s\n2253: 17453     7.7 C/MHz    400 mW   13.8 J   43.6 I/mJ    34.4 s\n\n\n===== CPU 6 =====\nFrequencies: 500 851 984 1106 1277 1426 1582 1745 1826 2048 2188 2252 2401 2507 2630 2704 2802 2850\n\n 500:  4647     9.3 C/MHz     53 mW    6.9 J   87.5 I/mJ   129.1 s\n 851:  7910     9.3 C/MHz    102 mW    7.8 J   77.4 I/mJ    75.9 s\n 984:  9126     9.3 C/MHz    124 mW    8.1 J   73.8 I/mJ    65.8 s\n1106: 10271     9.3 C/MHz    152 mW    8.9 J   67.4 I/mJ    58.4 s\n1277: 11872     9.3 C/MHz    189 mW    9.5 J   63.0 I/mJ    50.6 s\n1426: 13233     9.3 C/MHz    226 mW   10.3 J   58.4 I/mJ    45.4 s\n1582: 14689     9.3 C/MHz    277 mW   11.3 J   53.1 I/mJ    40.9 s\n1745: 16210     9.3 C/MHz    344 mW   12.7 J   47.1 I/mJ    37.0 s\n1826: 16978     9.3 C/MHz    382 mW   13.5 J   44.4 I/mJ    35.4 s\n2048: 19025     9.3 C/MHz    488 mW   15.4 J   39.0 I/mJ    31.5 s\n2188: 20325     9.3 C/MHz    645 mW   19.1 J   31.5 I/mJ    29.5 s\n2252: 20927     9.3 C/MHz    702 mW   20.1 J   29.8 I/mJ    28.7 s\n2401: 22318     9.3 C/MHz    820 mW   22.1 J   27.2 I/mJ    26.9 s\n2507: 23289     9.3 C/MHz    945 mW   24.4 J   24.6 I/mJ    25.8 s\n2630: 24441     9.3 C/MHz   1126 mW   27.7 J   21.7 I/mJ    24.6 s\n2704: 25118     9.3 C/MHz   1208 mW   28.9 J   20.8 I/mJ    23.9 s\n2802: 26037     9.3 C/MHz   1371 mW   31.6 J   19.0 I/mJ    23.1 s\n2850: 26494     9.3 C/MHz   1517 mW   34.4 J   17.5 I/mJ    22.7 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/gs101/main/uptime.txt",
    "content": " 10:08:35 up  1:10,  load average: 0.84, 0.83, 0.88\n"
  },
  {
    "path": "results/gs101/main/versions.txt",
    "content": "Kernel: Linux version 5.10.198-gs101-android14-monolithic-g91fbd201d0f8 (lcockx@lcockx-asustufgamingf15fx506lhtuf506lh) (ClangBuiltLinux clang version 17.0.3 (https://github.com/llvm/llvm-project 888437e1b60011b8a375dd30928ec925b448da57), ClangBuiltLinux LLD 17.0.3) #4 SMP PREEMPT Thu Oct 26 23:28:38 CEST 2023\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/gs201/main/cmdline.txt",
    "content": "stack_depot_disable=on kasan.stacktrace=off kvm-arm.mode=protected cgroup_disable=pressure cgroup.memory=nokmem rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on clocksource=arch_sys_counter root=/dev/ram0 rw ramdisk_size=65536 firmware_class.path=/vendor/firmware reserve-fimc=0xffffff90f9fe0000 clk_ignore_unused loop.max_part=7 coherent_pool=4M no_console_suspend softlockup_panic=1 maxcpus=8 sysrq_always_enabled kasan_multi_shot ehld.noehld=1 swiotlb=noforce dyndbg=\"func alloc_contig_dump_pages +p\" printk.devkmsg=on cma_sysfs.experimental=Y cgroup_disable=memory rcupdate.rcu_expedited=1 rcu_nocbs=all stack_depot_disable=off page_pinner=on swiotlb=1024 disable_dma32=on at24.write_timeout=100 log_buf_len=1024K bootconfig buildvariant=userdebug console=null exynos_drm.panel_name=sdc-s6e3hc4 tcpci_max77759.conf_sbu=0 ufs_pixel_fips140.fips_first_lba=86406 ufs_pixel_fips140.fips_last_lba=86917 ufs_pixel_fips140.fips_lu=0 id_aa64mmfr1.vh=0  bootconfig\n"
  },
  {
    "path": "results/gs201/main/cpufreq_stats/0/time_in_state",
    "content": "300000 164701\n574000 29015\n738000 22743\n930000 18201\n1098000 15540\n1197000 14328\n1328000 12992\n1401000 12351\n1598000 10932\n1704000 10299\n1803000 102163\n"
  },
  {
    "path": "results/gs201/main/cpufreq_stats/0/total_trans",
    "content": "14\n"
  },
  {
    "path": "results/gs201/main/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    574000    738000    930000   1098000   1197000   1328000   1401000   1598000   1704000   1803000 \n   300000:         0         1         0         0         0         0         0         0         0         0         1 \n   574000:         0         0         1         0         0         0         0         0         0         0         0 \n   738000:         0         0         0         1         0         0         0         0         0         0         0 \n   930000:         0         0         0         0         1         0         0         0         0         0         0 \n  1098000:         0         0         0         0         0         1         0         0         0         0         0 \n  1197000:         0         0         0         0         0         0         1         0         0         0         1 \n  1328000:         0         0         0         0         0         0         0         1         0         0         0 \n  1401000:         0         0         0         0         0         0         0         0         1         0         0 \n  1598000:         0         0         0         0         0         0         0         0         0         1         0 \n  1704000:         0         0         0         0         0         0         0         0         0         0         1 \n  1803000:         2         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/gs201/main/cpufreq_stats/4/time_in_state",
    "content": "400000 109524\n553000 12730\n696000 10274\n799000 9061\n910000 8059\n1024000 7243\n1197000 6319\n1328000 5776\n1491000 5233\n1663000 4774\n1836000 4404\n1999000 4108\n2130000 3905\n2253000 3738\n2348000 218118\n"
  },
  {
    "path": "results/gs201/main/cpufreq_stats/4/total_trans",
    "content": "17\n"
  },
  {
    "path": "results/gs201/main/cpufreq_stats/4/trans_table",
    "content": "   From  :    To\n         :    400000    553000    696000    799000    910000   1024000   1197000   1328000   1491000   1663000   1836000   1999000   2130000   2253000   2348000 \n   400000:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   553000:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n   696000:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n   799000:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n   910000:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1024000:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1197000:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         1 \n  1328000:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1491000:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1663000:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1836000:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  1999000:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2130000:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2253000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2348000:         2         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/gs201/main/cpufreq_stats/6/time_in_state",
    "content": "500000 13777\n851000 8389\n984000 7378\n1106000 6651\n1277000 5863\n1426000 5342\n1582000 4893\n1745000 4511\n1826000 4344\n2048000 3964\n2188000 3763\n2252000 3677\n2401000 3502\n2507000 3388\n2630000 3268\n2704000 3200\n2802000 3115\n2850000 324241\n"
  },
  {
    "path": "results/gs201/main/cpufreq_stats/6/total_trans",
    "content": "20\n"
  },
  {
    "path": "results/gs201/main/cpufreq_stats/6/trans_table",
    "content": "   From  :    To\n         :    500000    851000    984000   1106000   1277000   1426000   1582000   1745000   1826000   2048000   2188000   2252000   2401000   2507000   2630000   2704000   2802000   2850000 \n   500000:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   851000:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   984000:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1106000:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  1277000:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1426000:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1582000:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1745000:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1826000:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  2048000:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  2188000:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  2252000:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  2401000:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  2507000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2630000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2704000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2802000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2850000:         2         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/gs201/main/cpuinfo.txt",
    "content": "processor\t: 0\nBogoMIPS\t: 49.15\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x2\nCPU part\t: 0xd05\nCPU revision\t: 0\n\n"
  },
  {
    "path": "results/gs201/main/device.txt",
    "content": "Model: GS201 CHEETAH MP based on GS201;\nCompatible: google,GS201 CHEETAH;google,GS201;\n"
  },
  {
    "path": "results/gs201/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x412fd050]\n[    0.000000] Linux version 5.10.149-Sultan (sultan@sultan-box) (aarch64-linux-gnu-gcc (GCC) 12.2.0, GNU ld (GNU Binutils) 2.40) #1 SMP PREEMPT Sat Apr 22 23:13:08 PDT 2023\n[    0.000000] Machine model: GS201 CHEETAH MP based on GS201\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000009fb800000, size 72 MiB\n[    0.000000] OF: reserved mem: initialized node vstream, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000009f7c00000, size 60 MiB\n[    0.000000] OF: reserved mem: initialized node faimg, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000009e7c00000, size 256 MiB\n[    0.000000] OF: reserved mem: initialized node farawimg, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000009e4c00000, size 48 MiB\n[    0.000000] OF: reserved mem: initialized node faprev, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000009e2c00000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node faceauth_tpu, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000009dac00000, size 52 MiB\n[    0.000000] OF: reserved mem: initialized node vscaler, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000009bac00000, size 512 MiB\n[    0.000000] OF: reserved mem: initialized node vframe, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: initialized node pkvm_guest_firmware, compatible id linux,pkvm-guest-firmware-memory\n[    0.000000] Reserved memory: created DMA memory pool at 0x0000000097000000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node xhci_dma@0x97000000, compatible id shared-dma-pool\n[    0.000000] kvm [0]: Reserved 66 MiB at 0xafbc00000\n[    0.000000] Zone ranges:\n[    0.000000]   Normal   [mem 0x0000000080000000-0x0000000affffffff]\n[    0.000000] Movable zone start for each node\n[    0.000000] Early memory node ranges\n[    0.000000]   node   0: [mem 0x0000000080000000-0x000000008affffff]\n[    0.000000]   node   0: [mem 0x000000008b000000-0x000000008b035fff]\n[    0.000000]   node   0: [mem 0x000000008b036000-0x00000000901fffff]\n[    0.000000]   node   0: [mem 0x0000000090200000-0x00000000905fffff]\n[    0.000000]   node   0: [mem 0x0000000090600000-0x0000000091dfffff]\n[    0.000000]   node   0: [mem 0x0000000091e00000-0x00000000973fffff]\n[    0.000000]   node   0: [mem 0x0000000097400000-0x0000000097ffffff]\n[    0.000000]   node   0: [mem 0x0000000098000000-0x00000000984fffff]\n[    0.000000]   node   0: [mem 0x0000000098500000-0x00000000b71fffff]\n[    0.000000]   node   0: [mem 0x00000000c0000000-0x00000000d80fffff]\n[    0.000000]   node   0: [mem 0x00000000d8100000-0x00000000da70ffff]\n[    0.000000]   node   0: [mem 0x00000000da710000-0x00000000dc20ffff]\n[    0.000000]   node   0: [mem 0x00000000dc210000-0x00000000dc61ffff]\n[    0.000000]   node   0: [mem 0x00000000dc620000-0x00000000dfffffff]\n[    0.000000]   node   0: [mem 0x00000000e3800000-0x00000000f87fffff]\n[    0.000000]   node   0: [mem 0x00000000f8800000-0x00000000fa7fffff]\n[    0.000000]   node   0: [mem 0x00000000fa800000-0x00000000fd3effff]\n[    0.000000]   node   0: [mem 0x00000000fd3f0000-0x00000000fd3fefff]\n[    0.000000]   node   0: [mem 0x00000000fd3ff000-0x00000000fd7fffff]\n[    0.000000]   node   0: [mem 0x00000000fd800000-0x00000000fd90bfff]\n[    0.000000]   node   0: [mem 0x00000000fd90c000-0x00000000ffffffff]\n[    0.000000]   node   0: [mem 0x0000000880000000-0x0000000affffffff]\n[    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x0000000affffffff]\n[    0.000000] On node 0 totalpages: 3095040\n[    0.000000]   Normal zone: 48360 pages used for memmap\n[    0.000000]   Normal zone: 0 pages reserved\n[    0.000000]   Normal zone: 3095040 pages, LIFO batch:63\n[    0.000000] cma: Reserved 16 MiB at 0x0000000880000000\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.2\n[    0.000000] Load bootconfig: 1438 bytes 101 nodes\n[    0.000000] percpu: Embedded 33 pages/cpu s103640 r0 d31528 u135168\n[    0.000000] pcpu-alloc: s103640 r0 d31528 u135168 alloc=33*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: SYS_ID_AA64MMFR1_EL1[11:8]: forced to 0\n[    0.000000] CPU features: detected: GIC system register CPU interface\n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] CPU features: detected: Hardware dirty bit management\n[    0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 3046680\n[    0.000000] Kernel command line: stack_depot_disable=on kasan.stacktrace=off kvm-arm.mode=protected cgroup_disable=pressure cgroup.memory=nokmem rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on clocksource=arch_sys_counter root=/dev/ram0 rw ramdisk_size=65536 firmware_class.path=/vendor/firmware reserve-fimc=0xffffff90f9fe0000 clk_ignore_unused loop.max_part=7 coherent_pool=4M no_console_suspend softlockup_panic=1 maxcpus=8 sysrq_always_enabled kasan_multi_shot ehld.noehld=1 swiotlb=noforce dyndbg=\"func alloc_contig_dump_pages +p\" printk.devkmsg=on cma_sysfs.experimental=Y cgroup_disable=memory rcupdate.rcu_expedited=1 rcu_nocbs=all stack_depot_disable=off page_pinner=on swiotlb=1024 disable_dma32=on at24.write_timeout=100 log_buf_len=1024K bootconfig buildvariant=userdebug console=null exynos_drm.panel_name=sdc-s6e3hc4 tcpci_max77759.conf_sbu=0 ufs_pixel_fips140.fips_first_lba=86406 ufs_pixel_fips140.fips_last_lba=86917 ufs_pixel_fips140.fips_lu=0 id_aa64mmfr1.vh=0\n[    0.000000] cgroup: Disabling pressure control group feature\n[    0.000000] sysrq: sysrq always enabled.\n[    0.000000] cgroup: Disabling memory control group subsystem\n[    0.000000] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)\n[    0.000000] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)\n[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off\n[    0.000000] Memory: 10581372K/12380160K available (19134K kernel code, 16458K rwdata, 9908K rodata, 10176K init, 4810K bss, 725636K reserved, 1073152K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTrampoline variant of Tasks RCU enabled.\n[    0.000000] \tTracing variant of Tasks RCU enabled.\n[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode\n[    0.000000] GICv3: 960 SPIs implemented\n[    0.000000] GICv3: 0 Extended SPIs implemented\n[    0.000000] GICv3: Distributor has no Range Selector support\n[    0.000000] GICv3: 16 PPIs implemented\n[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000010440000\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 timer(s) running at 24.57MHz (phys).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x5ab00a189, max_idle_ns: 440795202599 ns\n[    0.000011] sched_clock: 56 bits at 24MHz, resolution 40ns, wraps every 4398046511099ns\n[    0.003070] random: crng init done\n[    0.003294] Calibrating delay loop (skipped), value calculated using timer frequency.. 49.15 BogoMIPS (lpj=245760)\n[    0.003322] pid_max: default: 32768 minimum: 301\n[    0.003441] LSM: Security Framework initializing\n[    0.003526] SELinux:  Initializing.\n[    0.003791] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)\n[    0.003877] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)\n[    0.006850] rcu: Hierarchical SRCU implementation.\n[    0.008390] smp: Bringing up secondary CPUs ...\n[    0.010025] Detected VIPT I-cache on CPU1\n[    0.010126] GICv3: CPU1: found redistributor 100 region 0:0x0000000010460000\n[    0.010228] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]\n[    0.011257] Detected VIPT I-cache on CPU2\n[    0.011291] GICv3: CPU2: found redistributor 200 region 0:0x0000000010480000\n[    0.011347] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]\n[    0.012540] Detected VIPT I-cache on CPU3\n[    0.012572] GICv3: CPU3: found redistributor 300 region 0:0x00000000104a0000\n[    0.012628] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]\n[    0.014136] CPU features: detected: Spectre-v4\n[    0.014140] CPU features: detected: Spectre-BHB\n[    0.014144] Detected PIPT I-cache on CPU4\n[    0.014172] GICv3: CPU4: found redistributor 400 region 0:0x00000000104c0000\n[    0.014220] CPU4: Booted secondary processor 0x0000000400 [0x411fd411]\n[    0.015437] Detected PIPT I-cache on CPU5\n[    0.015465] GICv3: CPU5: found redistributor 500 region 0:0x00000000104e0000\n[    0.015512] CPU5: Booted secondary processor 0x0000000500 [0x411fd411]\n[    0.016929] Detected PIPT I-cache on CPU6\n[    0.016960] GICv3: CPU6: found redistributor 600 region 0:0x0000000010500000\n[    0.017007] CPU6: Booted secondary processor 0x0000000600 [0x411fd440]\n[    0.018216] Detected PIPT I-cache on CPU7\n[    0.018245] GICv3: CPU7: found redistributor 700 region 0:0x0000000010520000\n[    0.018289] CPU7: Booted secondary processor 0x0000000700 [0x411fd440]\n[    0.018359] smp: Brought up 1 node, 8 CPUs\n[    0.018373] SMP: Total of 8 processors activated.\n[    0.018379] CPU features: detected: Privileged Access Never\n[    0.018382] CPU features: detected: LSE atomic instructions\n[    0.018386] CPU features: detected: User Access Override\n[    0.018392] CPU features: detected: 32-bit EL0 Support\n[    0.018396] CPU features: detected: Common not Private translations\n[    0.018401] CPU features: detected: RAS Extension Support\n[    0.018406] CPU features: detected: Data cache clean to the PoU not required for I/D coherence\n[    0.018412] CPU features: detected: CRC32 instructions\n[    0.018415] CPU features: detected: Speculative Store Bypassing Safe (SSBS)\n[    0.018423] CPU features: detected: RCpc load-acquire (LDAPR)\n[    0.018429] CPU features: detected: Protected KVM\n[    0.065093] CPU: All CPU(s) started at EL2\n[    0.065198] alternatives: patching kernel code\n[    0.146295] Registered cp15_barrier emulation handler\n[    0.146317] Registered setend emulation handler\n[    0.146333] KASLR enabled\n[    0.146588] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.146623] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)\n[    0.212562] pinctrl core: initialized pinctrl subsystem\n[    0.213829] NET: Registered protocol family 16\n[    0.217109] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations\n[    0.217677] thermal_sys: Registered thermal governor 'step_wise'\n[    0.217684] thermal_sys: Registered thermal governor 'user_space'\n[    0.217692] thermal_sys: Registered thermal governor 'power_allocator'\n[    0.227710] cpuidle: using governor teo\n[    0.228246] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.228440] ASID allocator initialised with 65536 entries\n[    0.228524] Serial: AMBA PL011 UART driver\n[    0.229222] printk: console [ramoops-1] enabled\n[    0.229303] pstore: Registered ramoops as persistent store backend\n[    0.229309] ramoops: using 0x400000@0xfd3ff000, ecc: 0\n[    0.342902] iommu: Default domain type: Translated \n[    0.343521] SCSI subsystem initialized\n[    0.343671] usbcore: registered new interface driver usbfs\n[    0.343707] usbcore: registered new interface driver hub\n[    0.343738] usbcore: registered new device driver usb\n[    0.343908] mc: Linux media interface: v0.10\n[    0.343936] videodev: Linux video capture interface: v2.00\n[    0.344796] Advanced Linux Sound Architecture Driver Initialized.\n[    0.345580] Bluetooth: Core ver 2.22\n[    0.345599] NET: Registered protocol family 31\n[    0.345604] Bluetooth: HCI device and connection manager initialized\n[    0.345622] Bluetooth: HCI socket layer initialized\n[    0.345636] Bluetooth: L2CAP socket layer initialized\n[    0.345652] Bluetooth: SCO socket layer initialized\n[    0.345868] nfc: nfc_init: NFC Core ver 0.1\n[    0.345924] NET: Registered protocol family 39\n[    0.346465] clocksource: Switched to clocksource arch_sys_counter\n[    0.348153] VFS: Disk quotas dquot_6.6.0\n[    0.348231] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.349251] NET: Registered protocol family 2\n[    0.350077] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)\n[    0.357228] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)\n[    0.357385] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)\n[    0.358066] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)\n[    0.360824] TCP: Hash tables configured (established 131072 bind 65536)\n[    0.360997] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)\n[    0.361190] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)\n[    0.361537] NET: Registered protocol family 1\n[    0.362355] NET: Registered protocol family 44\n[    0.362378] PCI: CLS 0 bytes, default 64\n[    0.674328] Freeing initrd memory: 26348K\n[    0.680003] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.681677] kvm [1]: IPA Size Limit: 40 bits\n[    0.752893] kvm [1]: GICv3: no GICV resource entry\n[    0.752908] kvm [1]: disabling GICv2 emulation\n[    0.752938] kvm [1]: GIC system register CPU interface enabled\n[    0.753227] kvm [1]: vgic interrupt IRQ9\n[    0.753766] kvm [1]: Protected nVHE mode initialized successfully\n[    0.759452] Initialise system trusted keyrings\n[    0.759622] workingset: timestamp_bits=46 max_order=22 bucket_order=0\n[    0.765112] fuse: init (API version 7.32)\n[    0.803327] Key type asymmetric registered\n[    0.803340] Asymmetric key parser 'x509' registered\n[    0.803404] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)\n[    0.803492] io scheduler mq-deadline registered\n[    0.803603] io scheduler bfq registered\n[    0.814012] cacheinfo: Unable to detect cache hierarchy for CPU 0\n[    0.819606] brd: module loaded\n[    0.825710] loop: module loaded\n[    0.827317] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.\n[    0.827322] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    0.827948] MACsec IEEE 802.1AE\n[    0.828668] tun: Universal TUN/TAP device driver, 1.6\n[    0.828751] CAN device driver interface\n[    0.828757] PPP generic driver version 2.4.2\n[    0.828844] PPP BSD Compression module registered\n[    0.828854] PPP Deflate Compression module registered\n[    0.828887] PPP MPPE Compression module registered\n[    0.828896] NET: Registered protocol family 24\n[    0.828901] PPTP driver version 0.8.5\n[    0.829197] usbcore: registered new interface driver rtl8150\n[    0.829229] usbcore: registered new interface driver r8152\n[    0.829259] usbcore: registered new interface driver asix\n[    0.829286] usbcore: registered new interface driver ax88179_178a\n[    0.829312] usbcore: registered new interface driver cdc_ether\n[    0.829336] usbcore: registered new interface driver cdc_eem\n[    0.829374] usbcore: registered new interface driver cdc_ncm\n[    0.829403] usbcore: registered new interface driver aqc111\n[    0.830403] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.830414] ehci-pci: EHCI PCI platform driver\n[    0.830456] ehci-platform: EHCI generic platform driver\n[    0.831959] usbcore: registered new interface driver cdc_acm\n[    0.831966] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters\n[    0.832127] usbcore: registered new interface driver uas\n[    0.832164] usbcore: registered new interface driver usb-storage\n[    0.832823] dummy_hcd dummy_hcd.0: USB Host+Gadget Emulator, driver 02 May 2005\n[    0.832862] dummy_hcd dummy_hcd.0: Dummy host controller\n[    0.832911] dummy_hcd dummy_hcd.0: new USB bus registered, assigned bus number 1\n[    0.833238] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10\n[    0.833247] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1\n[    0.833263] usb usb1: Product: Dummy host controller\n[    0.833270] usb usb1: Manufacturer: Linux 5.10.149-Sultan dummy_hcd\n[    0.833277] usb usb1: SerialNumber: dummy_hcd.0\n[    0.833777] hub 1-0:1.0: USB hub found\n[    0.833820] hub 1-0:1.0: 1 port detected\n[    0.834846] usbcore: registered new interface driver xpad\n[    0.835076] usbcore: registered new interface driver uvcvideo\n[    0.835079] USB Video Class driver (1.1.1)\n[    0.835090] gspca_main: v2.14.0 registered\n[    0.835422] device-mapper: uevent: version 1.0.3\n[    0.835603] device-mapper: ioctl: 4.44.0-ioctl (2021-02-01) initialised: dm-devel@redhat.com\n[    0.835797] Bluetooth: HCI UART driver ver 2.3\n[    0.835809] Bluetooth: HCI UART protocol H4 registered\n[    0.835852] Bluetooth: HCI UART protocol LL registered\n[    0.835993] Bluetooth: HCI UART protocol Broadcom registered\n[    0.836018] Bluetooth: HCI UART protocol QCA registered\n[    0.838006] hid: raw HID events driver (C) Jiri Kosina\n[    0.838969] usbcore: registered new interface driver usbhid\n[    0.838975] usbhid: USB HID core driver\n[    0.839171] ashmem: initialized\n[    0.839253] gnss: GNSS driver registered with major 238\n[    0.842130] usbcore: registered new interface driver snd-usb-audio\n[    0.842693] GACT probability NOT on\n[    0.842719] Mirror/redirect action on\n[    0.842778] netem: version 1.3\n[    0.842808] u32 classifier\n[    0.842811]     input device check on\n[    0.842817]     Actions configured\n[    0.844188] xt_time: kernel timezone is -0000\n[    0.844311] ipip: IPv4 and MPLS over IPv4 tunneling driver\n[    0.844763] gre: GRE over IPv4 demultiplexor driver\n[    0.844773] ip_gre: GRE over IPv4 tunneling driver\n[    0.845767] IPv4 over IPsec tunneling driver\n[    0.846745] Initializing XFRM netlink socket\n[    0.846787] IPsec XFRM device driver\n[    0.847246] NET: Registered protocol family 10\n[    0.848978] Segment Routing with IPv6\n[    0.849092] mip6: Mobile IPv6\n[    0.849899] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    0.850746] ip6_gre: GRE over IPv6 tunneling driver\n[    0.851177] NET: Registered protocol family 17\n[    0.851211] NET: Registered protocol family 15\n[    0.851257] can: controller area network core\n[    0.851324] NET: Registered protocol family 29\n[    0.851331] can: raw protocol\n[    0.851346] can: broadcast manager protocol\n[    0.851365] can: netlink gateway - max_hops=1\n[    0.851557] Bluetooth: RFCOMM TTY layer initialized\n[    0.851575] Bluetooth: RFCOMM socket layer initialized\n[    0.851580] Bluetooth: RFCOMM ver 1.11\n[    0.851590] Bluetooth: HIDP (Human Interface Emulation) ver 1.2\n[    0.851605] Bluetooth: HIDP socket layer initialized\n[    0.851636] l2tp_core: L2TP core driver, V2.0\n[    0.851657] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    0.851666] 8021q: 802.1Q VLAN Support v1.8\n[    0.851704] tipc: Activated (version 2.0.0)\n[    0.851827] NET: Registered protocol family 30\n[    0.851965] tipc: Started in single node mode\n[    0.852092] NET: Registered protocol family 36\n[    0.852281] NET: Registered protocol family 40\n[    0.852958] registered taskstats version 1\n[    0.852980] Loading compiled-in X.509 certificates\n[    0.853079] Key type ._fscrypt registered\n[    0.853086] Key type .fscrypt registered\n[    0.853097] Key type fscrypt-provisioning registered\n[    0.853293] pstore: Invalid compression size for deflate: 0\n[    0.855257] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    0.856587] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    0.857271] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2\n[    0.857293] cfg80211: failed to load regulatory.db\n[    0.859864] pkvm_s2mpu: 36 devices to be initialized\n[    1.055652] pkvm-s2mpu 20c70000.s2mpu_cpucl0: registered with hypervisor [1/36]\n[    1.057261] pkvm-s2mpu 17040000.s2mpu_eh: registered with hypervisor [2/36]\n[    1.058725] pkvm-s2mpu 20080000.s2mpu_g3d: registered with hypervisor [3/36]\n[    1.059861] pkvm-s2mpu 11070000.s2mpu_hsi0: registered with hypervisor [4/36]\n[    1.060831] pkvm-s2mpu 11880000.s2mpu_hsi1: registered with hypervisor [5/36]\n[    1.062034] pkvm-s2mpu 145e0000.s2mpu_hsi2: registered with hypervisor [6/36]\n[    1.063182] pkvm-s2mpu 17c60000.s2mpu_gsa: registered with hypervisor [7/36]\n[    1.064109] pkvm-s2mpu 101e0000.s2mpu_misc: registered with hypervisor [8/36]\n[    1.066755] exynos-pmu-if 18060000.exynos-pmu: exynos_pmu_if probe\n[    1.067961] exynos-mipi-phy dphy_m4s4_dsim0@0x1C2E0000: exynos_mipi_phy_probe: isolation 0x3eb8\n[    1.068102] exynos-mipi-phy dphy_m4s4_dsim0@0x1C2E0000: creating exynos-mipi-phy\n[    1.069846] exynos-mipi-phy-csi 1a4f1300.dcphy_m0s4s4s4s4s4_csi0: exynos_mipi_phy_probe: isolation 0x3ebc\n[    1.069854] exynos-mipi-phy-csi 1a4f1300.dcphy_m0s4s4s4s4s4_csi0: exynos_mipi_phy_probe: reset 0\n[    1.069956] exynos-mipi-phy-csi 1a4f1300.dcphy_m0s4s4s4s4s4_csi0: creating exynos-mipi-phy\n[    1.070959] exynos-mipi-phy-csi 1a4f1b00.dcphy_m0s4s4s4s4s4_csi0: exynos_mipi_phy_probe: isolation 0x3ebc\n[    1.070967] exynos-mipi-phy-csi 1a4f1b00.dcphy_m0s4s4s4s4s4_csi0: exynos_mipi_phy_probe: reset 1\n[    1.071047] exynos-mipi-phy-csi 1a4f1b00.dcphy_m0s4s4s4s4s4_csi0: creating exynos-mipi-phy\n[    1.072027] exynos-mipi-phy-csi 1a4f2300.dcphy_m0s4s4s4s4s4_csi0: exynos_mipi_phy_probe: isolation 0x3ebc\n[    1.072034] exynos-mipi-phy-csi 1a4f2300.dcphy_m0s4s4s4s4s4_csi0: exynos_mipi_phy_probe: reset 2\n[    1.072141] exynos-mipi-phy-csi 1a4f2300.dcphy_m0s4s4s4s4s4_csi0: creating exynos-mipi-phy\n[    1.073121] exynos-mipi-phy-csi 1a4f2600.dcphy_m0s4s4s4s4s4_csi0: exynos_mipi_phy_probe: isolation 0x3ebc\n[    1.073129] exynos-mipi-phy-csi 1a4f2600.dcphy_m0s4s4s4s4s4_csi0: exynos_mipi_phy_probe: reset 3\n[    1.073209] exynos-mipi-phy-csi 1a4f2600.dcphy_m0s4s4s4s4s4_csi0: creating exynos-mipi-phy\n[    1.074181] exynos-mipi-phy-csi 1a4f2b00.dcphy_m0s4s4s4s4s4_csi0: exynos_mipi_phy_probe: isolation 0x3ebc\n[    1.074188] exynos-mipi-phy-csi 1a4f2b00.dcphy_m0s4s4s4s4s4_csi0: exynos_mipi_phy_probe: reset 4\n[    1.074296] exynos-mipi-phy-csi 1a4f2b00.dcphy_m0s4s4s4s4s4_csi0: creating exynos-mipi-phy\n[    1.075273] exynos-mipi-phy-csi 1a4f2e00.dcphy_m0s4s4s4s4s4_csi0: exynos_mipi_phy_probe: isolation 0x3ebc\n[    1.075280] exynos-mipi-phy-csi 1a4f2e00.dcphy_m0s4s4s4s4s4_csi0: exynos_mipi_phy_probe: reset 5\n[    1.075367] exynos-mipi-phy-csi 1a4f2e00.dcphy_m0s4s4s4s4s4_csi0: creating exynos-mipi-phy\n[    1.076339] exynos-mipi-phy-csi 1a4f3300.dcphy_m0s4s4s4s4s4_csi0: exynos_mipi_phy_probe: isolation 0x3ebc\n[    1.076348] exynos-mipi-phy-csi 1a4f3300.dcphy_m0s4s4s4s4s4_csi0: exynos_mipi_phy_probe: reset 6\n[    1.076455] exynos-mipi-phy-csi 1a4f3300.dcphy_m0s4s4s4s4s4_csi0: creating exynos-mipi-phy\n[    1.077438] exynos-mipi-phy-csi 1a4f3600.dcphy_m0s4s4s4s4s4_csi0: exynos_mipi_phy_probe: isolation 0x3ebc\n[    1.077449] exynos-mipi-phy-csi 1a4f3600.dcphy_m0s4s4s4s4s4_csi0: exynos_mipi_phy_probe: reset 7\n[    1.077547] exynos-mipi-phy-csi 1a4f3600.dcphy_m0s4s4s4s4s4_csi0: creating exynos-mipi-phy\n[    1.085989] samsung-pinctrl 17a80000.pinctrl: irq number not available\n[    1.086180] samsung-pinctrl 17940000.pinctrl: irq number not available\n[    1.087365] input: gpio_keys as /devices/platform/gpio_keys/input/input0\n[    1.099540] gs-acpm-ipc 18210000.acpm_ipc: acpm_ipc probe\n[    1.101546] [ACPM] acpm framework SRAM dump to dram base: 0x86d00000\n[    1.101782] gs-acpm-ipc 18210000.acpm_ipc: acpm_ipc probe done.\n[    1.102122] gs-acpm 18040000.acpm: acpm probe\n[    1.102131] gs-acpm 18040000.acpm: acpm probe done.\n[    1.104122] gs-chipid 10000000.chipid: CPU[GS201]B0 CPU_REV[0x10] Detected\n[    1.104649] ect_probe: Reserved memory for ect: addr=0x0000000090000000, size=3a000\n[    1.104675] exynos-ect exynos-ect: Exynos ect driver probe done!\n[    1.105107] ECT version: 0042\n[    1.106282] vclk initialize for cmucal\n[    1.112206] gs201_cal_data_init: cal data init\n[    1.119861] panic threshold: 0\n[    1.119872] policy: err_fatal: [3]\n[    1.119879] policy: err_drex_tmout: [3]\n[    1.119885] policy: err_cpu: [3]\n[    1.119893] policy: err_ip: [0]\n[    1.119897] policy: err_unhandled: [1]\n[    1.119992] success to register request irq295 - BUS_DATA0\n[    1.120083] success to register request irq296 - BUS_DATA1\n[    1.120301] success to register request irq297 - BUS_DATA2\n[    1.120502] success to register request irq298 - BUS_DATA3\n[    1.120639] success to register request irq299 - BUS_PERI0\n[    1.120806] success to register request irq300 - BUS_PERI1\n[    1.120884] success to register request irq301 - BUS_PERI2\n[    1.121010] success to register request irq302 - BUS_PERI3\n[    1.121469] success to probe gs201 ITMON driver\n[    1.124256] pcie-sysmmu 11860000.sysmmu: Enable map once.\n[    1.124601] pcie-sysmmu 11860000.sysmmu: Probe HSI1 block, PCIe VID : 0\n[    1.124607] pcie-sysmmu 11860000.sysmmu: L1Page Table Address : 0x0x0000000086dc0000(phys)\n[    1.124614] pcie-sysmmu 11860000.sysmmu: is probed. Version 8.1.0\n[    1.125672] pcie-sysmmu 145c0000.sysmmu: There is NO ignore tlb inval, so set default value(0)\n[    1.125873] pcie-sysmmu 145c0000.sysmmu: Probe HSI2 block, PCIe VID : 1\n[    1.125880] pcie-sysmmu 145c0000.sysmmu: L1Page Table Address : 0x0x0000000086e40000(phys)\n[    1.125887] pcie-sysmmu 145c0000.sysmmu: is probed. Version 8.1.0\n[    1.130881] dma-pl330 10110000.pdma0: Loaded driver for PL330 DMAC-341330\n[    1.130891] dma-pl330 10110000.pdma0: \tDBUFF-32x4bytes Num_Chans-8 Num_Peri-32 Num_Events-32\n[    1.133118] cpif: cp_shmem_probe: +++\n[    1.133161] cpif: cp_rmem_setup_latecall: rmem 0 cp_rmem 0xea400000 0x00800000\n[    1.133174] cpif: cp_rmem_setup_latecall: rmem 1 cp_msi_rmem 0xf6200000 0x00001000\n[    1.133181] cpif: cp_rmem_setup_latecall: rmem 2 cp_rmem_1 0xe8000000 0x02000000\n[    1.133193] cpif: cp_rmem_setup_latecall: rmem 3 cp_aoc_rmem 0x197fd000 0x00003000\n[    1.133234] cpif: cp_shmem_probe: use_mem_map_on_cp is disabled. Use dt information\n[    1.133245] cpif: cp_shmem_probe: cp_num:0 rmem:3 index:1 VSS_AOC 0x197fd000 0x00003000 0\n[    1.133255] cpif: cp_shmem_probe: cp_num:0 rmem:0 index:3 IPC 0xea400000 0x00800000 1\n[    1.133262] cpif: cp_shmem_probe: cp_num:0 rmem:2 index:7 PKTPROC 0xe8000000 0x01c00000 0\n[    1.133269] cpif: cp_shmem_probe: cp_num:0 rmem:2 index:8 PKTPROC_UL 0xe9c00000 0x00400000 0\n[    1.133280] cpif: cp_shmem_probe: cp_num:0 rmem:1 index:11 MSI 0xf6200000 0x00001000 0\n[    1.133292] cpif: cp_shmem_probe: ---\n[    1.134952] ACPM-FLEXPMU-DBG:  exynos_flexpmu_dbg_probe: FLEXPMU_DBG buffer with size 1024 found\n[    1.136769] exynos-pm 180d0000.exynos-pm: initialized\n[    1.146263] GS201: Clock setup completed\n[    1.148613] clocksource: mct-frc: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 77769386669 ns\n[    1.149140] s3c64xx-spi 10940000.spi: spi bus clock parent not specified, using clock at index 0 as parent\n[    1.149151] s3c64xx-spi 10940000.spi: number of chip select lines not specified, assuming 1 chip select line\n[    1.149305] s3c64xx-spi 10940000.spi: set usi mode - 0x2\n[    1.149398] s3c64xx-spi 10940000.spi: Not using idle state\n[    1.149404] s3c64xx-spi 10940000.spi: spi clkoff-time is empty(Default: 0ms)\n[    1.149415] s3c64xx-spi 10940000.spi: PORT 5 fifo_lvl_mask = 0x7f\n[    1.151083] trusty trusty: trusty version: Project: cloudripper, Build: 9614246, Built: 01:21:42 Feb 16 2023\n[    1.151123] trusty trusty: selected api version: 5 (requested 5)\n[    1.153812] samsung,dma-heap-chunk trusty:video_stream_dma_heap: assigned reserved memory node vstream\n[    1.153977] Registered vstream-secure dma-heap successfully\n[    1.154032] samsung,dma-heap-chunk trusty:video_frame_dma_heap: assigned reserved memory node vframe\n[    1.154115] Registered vframe-secure dma-heap successfully\n[    1.154169] samsung,dma-heap-chunk trusty:video_scaler_dma_heap: assigned reserved memory node vscaler\n[    1.154240] Registered vscaler-secure dma-heap successfully\n[    1.154291] samsung,dma-heap-chunk trusty:faceauth_tpu_dma_heap: assigned reserved memory node faceauth_tpu\n[    1.154350] Registered faceauth_tpu-secure dma-heap successfully\n[    1.154674] samsung,dma-heap-cma trusty:faceauth_image_heap: assigned reserved memory node faimg\n[    1.154751] Registered faimg-secure dma-heap successfully\n[    1.154802] samsung,dma-heap-cma trusty:faceauth_rawimage_heap: assigned reserved memory node farawimg\n[    1.154856] Registered farawimg-secure dma-heap successfully\n[    1.154909] samsung,dma-heap-cma trusty:faceauth_preview_heap: assigned reserved memory node faprev\n[    1.154982] Registered faprev-secure dma-heap successfully\n[    1.155285] Registered famodel-secure dma-heap successfully\n[    1.155544] Registered tui-secure dma-heap successfully\n[    1.155660] Registered mfc_fw-secure dma-heap successfully\n[    1.156056] Registered system dma-heap successfully\n[    1.156110] Registered system-uncached dma-heap successfully\n[    1.156221] Registered video_system dma-heap successfully\n[    1.156286] Registered video_system-uncached dma-heap successfully\n[    1.156898] gsa 17c90000.gsa-ns: linked to 17c60000.s2mpu_gsa\n[    1.157467] gsa 17c90000.gsa-ns: Initialized\n[    1.158385] sjtag sjtag_ap: [probe sts read]: SJTAG_GET_STATUS: Success - Cmd status: 0x00000000\n[    1.159866] s3c64xx-spi 10960000.spi: spi bus clock parent not specified, using clock at index 0 as parent\n[    1.159874] s3c64xx-spi 10960000.spi: number of chip select lines not specified, assuming 1 chip select line\n[    1.159914] s3c64xx-spi 10960000.spi: set usi mode - 0x2\n[    1.159994] s3c64xx-spi 10960000.spi: Not using idle state\n[    1.160002] s3c64xx-spi 10960000.spi: spi clkoff-time is empty(Default: 0ms)\n[    1.160011] s3c64xx-spi 10960000.spi: PORT 7 fifo_lvl_mask = 0x7f\n[    1.161803] s3c64xx-spi 10d10000.spi: spi bus clock parent not specified, using clock at index 0 as parent\n[    1.161813] s3c64xx-spi 10d10000.spi: number of chip select lines not specified, assuming 1 chip select line\n[    1.161897] s3c64xx-spi 10d10000.spi: set usi mode - 0x2\n[    1.161974] s3c64xx-spi 10d10000.spi: Not using idle state\n[    1.161982] s3c64xx-spi 10d10000.spi: spi clkoff-time is empty(Default: 0ms)\n[    1.161990] s3c64xx-spi 10d10000.spi: PORT 0 fifo_lvl_mask = 0x7f\n[    1.162272] sjtag sjtag_gsa: [probe sts read]: SJTAG_GET_STATUS: Success - Cmd status: 0x00000010-0\n[    1.166272] s3c64xx-spi 10d20000.spi: spi bus clock parent not specified, using clock at index 0 as parent\n[    1.166281] s3c64xx-spi 10d20000.spi: number of chip select lines not specified, assuming 1 chip select line\n[    1.166303] s3c64xx-spi 10d20000.spi: set usi mode - 0x2\n[    1.166371] s3c64xx-spi 10d20000.spi: Not using idle state\n[    1.166377] s3c64xx-spi 10d20000.spi: spi clkoff-time is empty(Default: 0ms)\n[    1.166385] s3c64xx-spi 10d20000.spi: PORT 9 fifo_lvl_mask = 0x7f\n[    1.167311] s3c64xx-spi 10d30000.spi: spi bus clock parent not specified, using clock at index 0 as parent\n[    1.167319] s3c64xx-spi 10d30000.spi: number of chip select lines not specified, assuming 1 chip select line\n[    1.167335] s3c64xx-spi 10d30000.spi: set usi mode - 0x2\n[    1.167413] s3c64xx-spi 10d30000.spi: Not using idle state\n[    1.167424] s3c64xx-spi 10d30000.spi: spi clkoff-time is empty(Default: 0ms)\n[    1.167431] s3c64xx-spi 10d30000.spi: PORT 10 fifo_lvl_mask = 0x7f\n[    1.168499] s3c64xx-spi 10db0000.spi: spi bus clock parent not specified, using clock at index 0 as parent\n[    1.168505] s3c64xx-spi 10db0000.spi: number of chip select lines not specified, assuming 1 chip select line\n[    1.168524] s3c64xx-spi 10db0000.spi: set usi mode - 0x2\n[    1.168592] s3c64xx-spi 10db0000.spi: Not using idle state\n[    1.168599] s3c64xx-spi 10db0000.spi: spi clkoff-time is empty(Default: 0ms)\n[    1.168607] s3c64xx-spi 10db0000.spi: PORT 16 fifo_lvl_mask = 0x7f\n[    1.170853] exynos-etm exynos-etm: exynos_etm_probe successful\n[    1.172946] arm-memlat-mon cpu0-cpugrp:cpu0-cpu-mif-latmon: Memory Latency governor registered.\n[    1.173309] arm-memlat-mon cpu1-cpugrp:cpu1-cpu-mif-latmon: Memory Latency governor registered.\n[    1.173633] arm-memlat-mon cpu2-cpugrp:cpu2-cpu-mif-latmon: Memory Latency governor registered.\n[    1.173998] arm-memlat-mon cpu3-cpugrp:cpu3-cpu-mif-latmon: Memory Latency governor registered.\n[    1.174332] arm-memlat-mon cpu4-cpugrp:cpu4-cpu-mif-latmon: Memory Latency governor registered.\n[    1.174655] arm-memlat-mon cpu5-cpugrp:cpu5-cpu-mif-latmon: Memory Latency governor registered.\n[    1.174992] arm-memlat-mon cpu6-cpugrp:cpu6-cpu-mif-latmon: Memory Latency governor registered.\n[    1.175353] arm-memlat-mon cpu7-cpugrp:cpu7-cpu-mif-latmon: Memory Latency governor registered.\n[    1.176542] exynos_cpuhp: Register new user [name:SYSFS, mask:0-7]\n[    1.176584] exynos_cpuhp: Exynos CPUHP driver probe done!\n[    1.177461] exynos-pd 18061c00.pd-eh: on\n[    1.177563] exynos-pd 18061e00.pd-g3d: on\n[    1.177662] exynos-pd 18062080.pd-hsi0: on\n[    1.177765] exynos-pd 18062280.pd-disp: on\n[    1.177869] exynos-pd 18062300.pd-g2d: on\n[    1.177984] exynos-pd 18062380.pd-mfc: on\n[    1.178086] exynos-pd 18062400.pd-csis: on\n[    1.178192] exynos-pd 18062480.pd-pdp: on\n[    1.178304] exynos-pd 18062580.pd-g3aa: on\n[    1.178432] exynos-pd 18062600.pd-ipp: on\n[    1.178466] exynos-pd 18062480.pd-pdp: has new subdomain pd-ipp\n[    1.178554] exynos-pd 18062680.pd-itp: on\n[    1.178653] exynos-pd 18062700.pd-mcsc: on\n[    1.178758] exynos-pd 18062780.pd-gdc: on\n[    1.178893] exynos-pd 18062800.pd-tnr: on\n[    1.179016] exynos-pd 18062880.pd-bo: on\n[    1.179112] exynos-pd 18062900.pd-tpu: on\n[    1.179199] exynos-pd 18062980.pd-aur: on\n[    1.179638] exynos_pd_dbg dbgdev-pd-aoc: ignoring dependency for device, assuming no driver\n[    1.180085] exynos_pd_dbg dbgdev-pd-hsi2: ignoring dependency for device, assuming no driver\n[    1.182202] power_stats acpm_stats: defer probe, 18062000.pd-embedded_g3d not ready\n[    1.182625] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.182638] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.182647] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.182661] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.182668] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.182677] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.182685] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.182692] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.182698] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.182702] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.182712] exynos-dm 17000000.exynos-dm: dm_type: 0(dm_cpu_cl0), available = true\n[    1.182718] exynos-dm 17000000.exynos-dm: dm_type: 1(dm_cpu_cl1), available = true\n[    1.182722] exynos-dm 17000000.exynos-dm: dm_type: 2(dm_cpu_cl2), available = true\n[    1.182729] exynos-dm 17000000.exynos-dm: dm_type: 3(dm_mif), available = true\n[    1.182738] exynos-dm 17000000.exynos-dm: dm_type: 4(dm_int), available = true\n[    1.182744] exynos-dm 17000000.exynos-dm: dm_type: 5(dm_intcam), available = true\n[    1.182752] exynos-dm 17000000.exynos-dm: dm_type: 6(dm_cam), available = true\n[    1.182761] exynos-dm 17000000.exynos-dm: dm_type: 7(dm_tpu), available = true\n[    1.182769] exynos-dm 17000000.exynos-dm: dm_type: 8(dm_tnr), available = true\n[    1.182776] exynos-dm 17000000.exynos-dm: dm_type: 9(dm_disp), available = true\n[    1.182782] exynos-dm 17000000.exynos-dm: dm_type: 10(dm_mfc), available = true\n[    1.182786] exynos-dm 17000000.exynos-dm: dm_type: 11(dm_BO), available = true\n[    1.184051] gs101-devfreq 17000010.devfreq_mif: no power domain\n[    1.184072] gs101-devfreq 17000010.devfreq_mif: MIF clock info exist\n[    1.184089] gs101-devfreq 17000010.devfreq_mif: This does not bts update\n[    1.184096] gs101-devfreq 17000010.devfreq_mif: This does not update fvp\n[    1.184215] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :  3172000Khz,        0uV\n[    1.184225] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :  2730000Khz,        0uV\n[    1.184231] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :  2535000Khz,        0uV\n[    1.184240] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :  2288000Khz,        0uV\n[    1.184250] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :  2028000Khz,        0uV\n[    1.184258] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :  1716000Khz,        0uV\n[    1.184264] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :  1539000Khz,        0uV\n[    1.184272] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :  1352000Khz,        0uV\n[    1.184284] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :  1014000Khz,        0uV\n[    1.184290] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :   845000Khz,        0uV\n[    1.184297] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :   676000Khz,        0uV\n[    1.184306] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :   546000Khz,        0uV\n[    1.184317] gs101-devfreq 17000010.devfreq_mif: DEVFREQ :   421000Khz,        0uV\n[    1.184330] gs101-devfreq 17000010.devfreq_mif: max_freq: 3172000Khz, get_max_freq: 3172000Khz\n[    1.184340] gs101-devfreq 17000010.devfreq_mif: min_freq: 421000Khz, get_min_freq: 421000Khz\n[    1.184347] gs101-devfreq 17000010.devfreq_mif: min_freq: 421000Khz, max_freq: 3172000Khz\n[    1.184363] gs101-devfreq 17000010.devfreq_mif: initial_freq: 3172000Khz, suspend_freq: 421000Khz\n[    1.184593] gs101-devfreq 17000010.devfreq_mif: Initial Frequency: 3172000, Initial Voltage: 0\n[    1.186122] s3c64xx-spi 181c0000.spi: spi bus clock parent not specified, using clock at index 0 as parent\n[    1.186127] s3c64xx-spi 181c0000.spi: number of chip select lines not specified, assuming 1 chip select line\n[    1.186235] s3c64xx-spi 181c0000.spi: set usi mode - 0x2\n[    1.186361] s3c64xx-spi 181c0000.spi: Couldn't get pinctrl.\n[    1.186369] s3c64xx-spi 181c0000.spi: spi clkoff-time is empty(Default: 0ms)\n[    1.186375] s3c64xx-spi 181c0000.spi: PORT 17 fifo_lvl_mask = 0x7f\n[    1.186871] gs101-devfreq 17000010.devfreq_mif: failed to update frequency from PM QoS (-11)\n[    1.186887] gs101-devfreq 17000010.devfreq_mif: failed to update frequency from PM QoS (-11)\n[    1.187739] gs101-devfreq 17000010.devfreq_mif: MIF cdev is initialized!!\n[    1.187750] gs101-devfreq 17000010.devfreq_mif: devfreq is initialized!!\n[    1.188010] gs101-devfreq 17000020.devfreq_int: no power domain\n[    1.188026] gs101-devfreq 17000020.devfreq_int: This does not bts update\n[    1.188035] gs101-devfreq 17000020.devfreq_int: This does not update fvp\n[    1.188042] gs101-devfreq 17000020.devfreq_int: Operation function get_dev_status will not be registered.\n[    1.188049] gs101-devfreq 17000020.devfreq_int: Not registered UM monitor data\n[    1.188057] gs101-devfreq 17000020.devfreq_int: ALT-DVFS is not declared by device tree.\n[    1.188074] gs101-devfreq 17000020.devfreq_int: DEVFREQ :   533000Khz,        0uV\n[    1.188079] gs101-devfreq 17000020.devfreq_int: DEVFREQ :   465000Khz,        0uV\n[    1.188087] gs101-devfreq 17000020.devfreq_int: DEVFREQ :   332000Khz,        0uV\n[    1.188093] gs101-devfreq 17000020.devfreq_int: DEVFREQ :   267000Khz,        0uV\n[    1.188101] gs101-devfreq 17000020.devfreq_int: DEVFREQ :   200000Khz,        0uV\n[    1.188108] gs101-devfreq 17000020.devfreq_int: DEVFREQ :   155000Khz,        0uV\n[    1.188116] gs101-devfreq 17000020.devfreq_int: DEVFREQ :   100000Khz,        0uV\n[    1.188126] gs101-devfreq 17000020.devfreq_int: max_freq: 533000Khz, get_max_freq: 533000Khz\n[    1.188131] gs101-devfreq 17000020.devfreq_int: min_freq: 100000Khz, get_min_freq: 100000Khz\n[    1.188137] gs101-devfreq 17000020.devfreq_int: min_freq: 100000Khz, max_freq: 533000Khz\n[    1.188143] gs101-devfreq 17000020.devfreq_int: initial_freq: 533000Khz, suspend_freq: 100000Khz\n[    1.190924] pkvm-s2mpu 25a70000.s2mpu_aur_idma: registered with hypervisor [9/36]\n[    1.191432] pkvm-s2mpu 25aa0000.s2mpu_aur_inst_data: registered with hypervisor [10/36]\n[    1.191945] pkvm-s2mpu 1ca60000.s2mpu_bo: registered with hypervisor [11/36]\n[    1.192383] pkvm-s2mpu 1a520000.s2mpu_csis0: registered with hypervisor [12/36]\n[    1.192860] pkvm-s2mpu 1a550000.s2mpu_csis1: registered with hypervisor [13/36]\n[    1.193479] pkvm-s2mpu 1c680000.s2mpu_g2d0: registered with hypervisor [14/36]\n[    1.193882] pkvm-s2mpu 1c6b0000.s2mpu_g2d1: registered with hypervisor [15/36]\n[    1.194273] pkvm-s2mpu 1c730000.s2mpu_g2d2: registered with hypervisor [16/36]\n[    1.194673] pkvm-s2mpu 1a8a0000.s2mpu_g3aa: registered with hypervisor [17/36]\n[    1.195223] pkvm-s2mpu 1d0c0000.s2mpu_gdc0: registered with hypervisor [18/36]\n[    1.195714] pkvm-s2mpu 1d0f0000.s2mpu_gdc1: registered with hypervisor [19/36]\n[    1.196214] pkvm-s2mpu 1d120000.s2mpu_gdc2: registered with hypervisor [20/36]\n[    1.196476] gs101-devfreq 17000020.devfreq_int: Initial Frequency: 533000, Initial Voltage: 0\n[    1.196870] pkvm-s2mpu 1ad20000.s2mpu_ipp: registered with hypervisor [21/36]\n[    1.197373] pkvm-s2mpu 1b7a0000.s2mpu_mcsc0: registered with hypervisor [22/36]\n[    1.197858] pkvm-s2mpu 1b7d0000.s2mpu_mcsc1: registered with hypervisor [23/36]\n[    1.198338] pkvm-s2mpu 1b800000.s2mpu_mcsc2: registered with hypervisor [24/36]\n[    1.198833] pkvm-s2mpu 1c890000.s2mpu_mfc0: registered with hypervisor [25/36]\n[    1.199336] pkvm-s2mpu 1c8c0000.s2mpu_mfc1: registered with hypervisor [26/36]\n[    1.199851] pkvm-s2mpu 1bc90000.s2mpu_tnr0: registered with hypervisor [27/36]\n[    1.200350] pkvm-s2mpu 1bcc0000.s2mpu_tnr1: registered with hypervisor [28/36]\n[    1.200840] pkvm-s2mpu 1bcf0000.s2mpu_tnr2: registered with hypervisor [29/36]\n[    1.201320] pkvm-s2mpu 1bd20000.s2mpu_tnr3: registered with hypervisor [30/36]\n[    1.201803] pkvm-s2mpu 1bd50000.s2mpu_tnr4: registered with hypervisor [31/36]\n[    1.202131] pkvm-s2mpu 1cc60000.s2mpu_tpu: registered with hypervisor [32/36]\n[    1.202436] exynos-pd 18062000.pd-embedded_g3d: on\n[    1.202465] exynos-pd 18061e00.pd-g3d: has new subdomain pd-embedded_g3d\n[    1.202651] exynos-pd 18062200.pd-dpu: on\n[    1.202677] exynos-pd 18062280.pd-disp: has new subdomain pd-dpu\n[    1.203206] exynos-pd 18062500.pd-dns: on\n[    1.203233] exynos-pd 18062680.pd-itp: has new subdomain pd-dns\n[    1.207116] gs101-devfreq 17000020.devfreq_int: INT cdev is initialized!!\n[    1.207124] gs101-devfreq 17000020.devfreq_int: devfreq is initialized!!\n[    1.207328] gs101-devfreq 17000030.devfreq_intcam: no power domain\n[    1.207337] gs101-devfreq 17000030.devfreq_intcam: This doesn't use boot value\n[    1.207342] gs101-devfreq 17000030.devfreq_intcam: This does not use acpm\n[    1.207347] gs101-devfreq 17000030.devfreq_intcam: This does not bts update\n[    1.207352] gs101-devfreq 17000030.devfreq_intcam: This does not update fvp\n[    1.207357] gs101-devfreq 17000030.devfreq_intcam: Operation function get_dev_status will not be registered.\n[    1.207362] gs101-devfreq 17000030.devfreq_intcam: Not registered UM monitor data\n[    1.207367] gs101-devfreq 17000030.devfreq_intcam: ALT-DVFS is not declared by device tree.\n[    1.207380] gs101-devfreq 17000030.devfreq_intcam: DEVFREQ :   664000Khz,        0uV\n[    1.207386] gs101-devfreq 17000030.devfreq_intcam: DEVFREQ :   533000Khz,        0uV\n[    1.207391] gs101-devfreq 17000030.devfreq_intcam: DEVFREQ :   465000Khz,        0uV\n[    1.207396] gs101-devfreq 17000030.devfreq_intcam: DEVFREQ :   332000Khz,        0uV\n[    1.207403] gs101-devfreq 17000030.devfreq_intcam: DEVFREQ :   233000Khz,        0uV\n[    1.207409] gs101-devfreq 17000030.devfreq_intcam: DEVFREQ :   134000Khz,        0uV\n[    1.207415] gs101-devfreq 17000030.devfreq_intcam: DEVFREQ :    67000Khz,        0uV\n[    1.207421] gs101-devfreq 17000030.devfreq_intcam: max_freq: 664000Khz, get_max_freq: 664000Khz\n[    1.207428] gs101-devfreq 17000030.devfreq_intcam: min_freq: 67000Khz, get_min_freq: 67000Khz\n[    1.207433] gs101-devfreq 17000030.devfreq_intcam: min_freq: 67000Khz, max_freq: 664000Khz\n[    1.207439] gs101-devfreq 17000030.devfreq_intcam: initial_freq: 67000Khz, suspend_freq: 67000Khz\n[    1.207445] gs101-devfreq 17000030.devfreq_intcam: Initial Frequency: 67000, Initial Voltage: 0\n[    1.207892] pkvm-s2mpu 1b0a0000.s2s2mpu_dnsmpu: registered with hypervisor [33/36]\n[    1.208373] pkvm-s2mpu 1c160000.s2mpu_dpu0: registered with hypervisor [34/36]\n[    1.208746] pkvm-s2mpu 1c170000.s2mpu_dpu1: registered with hypervisor [35/36]\n[    1.209123] pkvm-s2mpu 1c180000.s2mpu_dpu2: registered with hypervisor [36/36]\n[    1.209128] pkvm_s2mpu: list of devices successfully finalized\n[    1.209946] gs101-devfreq 17000030.devfreq_intcam: INTCAM cdev is initialized!!\n[    1.209953] gs101-devfreq 17000030.devfreq_intcam: devfreq is initialized!!\n[    1.210167] gs101-devfreq 17000040.devfreq_disp: no power domain\n[    1.210177] gs101-devfreq 17000040.devfreq_disp: This doesn't use boot value\n[    1.210183] gs101-devfreq 17000040.devfreq_disp: This does not use acpm\n[    1.210188] gs101-devfreq 17000040.devfreq_disp: This does not bts update\n[    1.210193] gs101-devfreq 17000040.devfreq_disp: This does not update fvp\n[    1.210200] gs101-devfreq 17000040.devfreq_disp: Operation function get_dev_status will not be registered.\n[    1.210208] gs101-devfreq 17000040.devfreq_disp: Not registered UM monitor data\n[    1.210213] gs101-devfreq 17000040.devfreq_disp: ALT-DVFS is not declared by device tree.\n[    1.210226] gs101-devfreq 17000040.devfreq_disp: DEVFREQ :   664000Khz,        0uV\n[    1.210232] gs101-devfreq 17000040.devfreq_disp: DEVFREQ :   533000Khz,        0uV\n[    1.210238] gs101-devfreq 17000040.devfreq_disp: DEVFREQ :   465000Khz,        0uV\n[    1.210244] gs101-devfreq 17000040.devfreq_disp: DEVFREQ :   400000Khz,        0uV\n[    1.210250] gs101-devfreq 17000040.devfreq_disp: DEVFREQ :   310000Khz,        0uV\n[    1.210257] gs101-devfreq 17000040.devfreq_disp: DEVFREQ :   267000Khz,        0uV\n[    1.210263] gs101-devfreq 17000040.devfreq_disp: DEVFREQ :   134000Khz,        0uV\n[    1.210269] gs101-devfreq 17000040.devfreq_disp: max_freq: 664000Khz, get_max_freq: 664000Khz\n[    1.210275] gs101-devfreq 17000040.devfreq_disp: min_freq: 134000Khz, get_min_freq: 134000Khz\n[    1.210279] gs101-devfreq 17000040.devfreq_disp: min_freq: 134000Khz, max_freq: 664000Khz\n[    1.210285] gs101-devfreq 17000040.devfreq_disp: initial_freq: 400000Khz, suspend_freq: 134000Khz\n[    1.210291] gs101-devfreq 17000040.devfreq_disp: Initial Frequency: 400000, Initial Voltage: 0\n[    1.211103] gs101-devfreq 17000040.devfreq_disp: DISP cdev is initialized!!\n[    1.211110] gs101-devfreq 17000040.devfreq_disp: devfreq is initialized!!\n[    1.211310] gs101-devfreq 17000050.devfreq_cam: no power domain\n[    1.211320] gs101-devfreq 17000050.devfreq_cam: This doesn't use boot value\n[    1.211326] gs101-devfreq 17000050.devfreq_cam: This does not use acpm\n[    1.211331] gs101-devfreq 17000050.devfreq_cam: This does not bts update\n[    1.211336] gs101-devfreq 17000050.devfreq_cam: This does not update fvp\n[    1.211341] gs101-devfreq 17000050.devfreq_cam: Operation function get_dev_status will not be registered.\n[    1.211346] gs101-devfreq 17000050.devfreq_cam: Not registered UM monitor data\n[    1.211351] gs101-devfreq 17000050.devfreq_cam: ALT-DVFS is not declared by device tree.\n[    1.211363] gs101-devfreq 17000050.devfreq_cam: DEVFREQ :   664000Khz,        0uV\n[    1.211368] gs101-devfreq 17000050.devfreq_cam: DEVFREQ :   533000Khz,        0uV\n[    1.211374] gs101-devfreq 17000050.devfreq_cam: DEVFREQ :   465000Khz,        0uV\n[    1.211379] gs101-devfreq 17000050.devfreq_cam: DEVFREQ :   332000Khz,        0uV\n[    1.211386] gs101-devfreq 17000050.devfreq_cam: DEVFREQ :   233000Khz,        0uV\n[    1.211397] gs101-devfreq 17000050.devfreq_cam: DEVFREQ :   134000Khz,        0uV\n[    1.211402] gs101-devfreq 17000050.devfreq_cam: DEVFREQ :    67000Khz,        0uV\n[    1.211409] gs101-devfreq 17000050.devfreq_cam: max_freq: 664000Khz, get_max_freq: 664000Khz\n[    1.211415] gs101-devfreq 17000050.devfreq_cam: min_freq: 67000Khz, get_min_freq: 67000Khz\n[    1.211420] gs101-devfreq 17000050.devfreq_cam: min_freq: 67000Khz, max_freq: 664000Khz\n[    1.211426] gs101-devfreq 17000050.devfreq_cam: initial_freq: 67000Khz, suspend_freq: 67000Khz\n[    1.211432] gs101-devfreq 17000050.devfreq_cam: Initial Frequency: 67000, Initial Voltage: 0\n[    1.211882] gs101-devfreq 17000050.devfreq_cam: CAM cdev is initialized!!\n[    1.211889] gs101-devfreq 17000050.devfreq_cam: devfreq is initialized!!\n[    1.212096] gs101-devfreq 17000060.devfreq_tnr: no power domain\n[    1.212104] gs101-devfreq 17000060.devfreq_tnr: This doesn't use boot value\n[    1.212109] gs101-devfreq 17000060.devfreq_tnr: This does not use acpm\n[    1.212114] gs101-devfreq 17000060.devfreq_tnr: This does not bts update\n[    1.212119] gs101-devfreq 17000060.devfreq_tnr: This does not update fvp\n[    1.212125] gs101-devfreq 17000060.devfreq_tnr: Operation function get_dev_status will not be registered.\n[    1.212129] gs101-devfreq 17000060.devfreq_tnr: Not registered UM monitor data\n[    1.212134] gs101-devfreq 17000060.devfreq_tnr: ALT-DVFS is not declared by device tree.\n[    1.212145] gs101-devfreq 17000060.devfreq_tnr: DEVFREQ :   664000Khz,        0uV\n[    1.212152] gs101-devfreq 17000060.devfreq_tnr: DEVFREQ :   533000Khz,        0uV\n[    1.212158] gs101-devfreq 17000060.devfreq_tnr: DEVFREQ :   465000Khz,        0uV\n[    1.212163] gs101-devfreq 17000060.devfreq_tnr: DEVFREQ :   332000Khz,        0uV\n[    1.212173] gs101-devfreq 17000060.devfreq_tnr: DEVFREQ :   233000Khz,        0uV\n[    1.212179] gs101-devfreq 17000060.devfreq_tnr: DEVFREQ :   134000Khz,        0uV\n[    1.212185] gs101-devfreq 17000060.devfreq_tnr: DEVFREQ :    67000Khz,        0uV\n[    1.212191] gs101-devfreq 17000060.devfreq_tnr: max_freq: 664000Khz, get_max_freq: 664000Khz\n[    1.212197] gs101-devfreq 17000060.devfreq_tnr: min_freq: 67000Khz, get_min_freq: 67000Khz\n[    1.212203] gs101-devfreq 17000060.devfreq_tnr: min_freq: 67000Khz, max_freq: 664000Khz\n[    1.212209] gs101-devfreq 17000060.devfreq_tnr: initial_freq: 67000Khz, suspend_freq: 67000Khz\n[    1.212215] gs101-devfreq 17000060.devfreq_tnr: Initial Frequency: 67000, Initial Voltage: 0\n[    1.212676] gs101-devfreq 17000060.devfreq_tnr: TNR cdev is initialized!!\n[    1.212683] gs101-devfreq 17000060.devfreq_tnr: devfreq is initialized!!\n[    1.212886] gs101-devfreq 17000070.devfreq_mfc: no power domain\n[    1.212895] gs101-devfreq 17000070.devfreq_mfc: This doesn't use boot value\n[    1.212901] gs101-devfreq 17000070.devfreq_mfc: This does not use acpm\n[    1.212906] gs101-devfreq 17000070.devfreq_mfc: This does not bts update\n[    1.212911] gs101-devfreq 17000070.devfreq_mfc: This does not update fvp\n[    1.212915] gs101-devfreq 17000070.devfreq_mfc: Operation function get_dev_status will not be registered.\n[    1.212921] gs101-devfreq 17000070.devfreq_mfc: Not registered UM monitor data\n[    1.212926] gs101-devfreq 17000070.devfreq_mfc: ALT-DVFS is not declared by device tree.\n[    1.212938] gs101-devfreq 17000070.devfreq_mfc: DEVFREQ :   711000Khz,        0uV\n[    1.212943] gs101-devfreq 17000070.devfreq_mfc: DEVFREQ :   664000Khz,        0uV\n[    1.212949] gs101-devfreq 17000070.devfreq_mfc: DEVFREQ :   533000Khz,        0uV\n[    1.212956] gs101-devfreq 17000070.devfreq_mfc: DEVFREQ :   465000Khz,        0uV\n[    1.212963] gs101-devfreq 17000070.devfreq_mfc: DEVFREQ :   356000Khz,        0uV\n[    1.212970] gs101-devfreq 17000070.devfreq_mfc: DEVFREQ :   267000Khz,        0uV\n[    1.212975] gs101-devfreq 17000070.devfreq_mfc: DEVFREQ :   100000Khz,        0uV\n[    1.212982] gs101-devfreq 17000070.devfreq_mfc: max_freq: 711000Khz, get_max_freq: 711000Khz\n[    1.212987] gs101-devfreq 17000070.devfreq_mfc: min_freq: 100000Khz, get_min_freq: 100000Khz\n[    1.212992] gs101-devfreq 17000070.devfreq_mfc: min_freq: 100000Khz, max_freq: 711000Khz\n[    1.212997] gs101-devfreq 17000070.devfreq_mfc: initial_freq: 100000Khz, suspend_freq: 100000Khz\n[    1.213003] gs101-devfreq 17000070.devfreq_mfc: Initial Frequency: 100000, Initial Voltage: 0\n[    1.213464] gs101-devfreq 17000070.devfreq_mfc: MFC cdev is initialized!!\n[    1.213471] gs101-devfreq 17000070.devfreq_mfc: devfreq is initialized!!\n[    1.213674] gs101-devfreq 17000080.devfreq_bo: no power domain\n[    1.213682] gs101-devfreq 17000080.devfreq_bo: This doesn't use boot value\n[    1.213688] gs101-devfreq 17000080.devfreq_bo: This does not use acpm\n[    1.213692] gs101-devfreq 17000080.devfreq_bo: This does not bts update\n[    1.213697] gs101-devfreq 17000080.devfreq_bo: This does not update fvp\n[    1.213702] gs101-devfreq 17000080.devfreq_bo: Operation function get_dev_status will not be registered.\n[    1.213707] gs101-devfreq 17000080.devfreq_bo: Not registered UM monitor data\n[    1.213711] gs101-devfreq 17000080.devfreq_bo: ALT-DVFS is not declared by device tree.\n[    1.213724] gs101-devfreq 17000080.devfreq_bo: DEVFREQ :   620000Khz,        0uV\n[    1.213729] gs101-devfreq 17000080.devfreq_bo: DEVFREQ :   533000Khz,        0uV\n[    1.213735] gs101-devfreq 17000080.devfreq_bo: DEVFREQ :   465000Khz,        0uV\n[    1.213742] gs101-devfreq 17000080.devfreq_bo: DEVFREQ :   400000Khz,        0uV\n[    1.213748] gs101-devfreq 17000080.devfreq_bo: DEVFREQ :   310000Khz,        0uV\n[    1.213754] gs101-devfreq 17000080.devfreq_bo: DEVFREQ :   222000Khz,        0uV\n[    1.213760] gs101-devfreq 17000080.devfreq_bo: DEVFREQ :    95000Khz,        0uV\n[    1.213765] gs101-devfreq 17000080.devfreq_bo: max_freq: 620000Khz, get_max_freq: 620000Khz\n[    1.213771] gs101-devfreq 17000080.devfreq_bo: min_freq: 95000Khz, get_min_freq: 95000Khz\n[    1.213775] gs101-devfreq 17000080.devfreq_bo: min_freq: 95000Khz, max_freq: 620000Khz\n[    1.213780] gs101-devfreq 17000080.devfreq_bo: initial_freq: 95000Khz, suspend_freq: 95000Khz\n[    1.213788] gs101-devfreq 17000080.devfreq_bo: Initial Frequency: 95000, Initial Voltage: 0\n[    1.214246] gs101-devfreq 17000080.devfreq_bo: BO cdev is initialized!!\n[    1.214253] gs101-devfreq 17000080.devfreq_bo: devfreq is initialized!!\n[    1.215429] google,slc-acpm slc-acpm: channel 10\n[    1.215664] google,slc-acpm slc-acpm: found valid acpm firmware 1.8.\n[    1.215672] google,slc-acpm slc-acpm: Asynchronous notification enabled\n[    1.215961] slc-pmon: Error when fetching number of events (0).\n[    1.216574] gsa-gsc 17c90000.gsa-ns:gsa_gsc@0: Initiliazed\n[    1.216691] cpif: cpboot_spi_probe: bus_num:9 count:0\n[    1.219164] exynos-bts exynos-bts: exynos_bts_debugfs_init failed\n[    1.219170] bts_probe successfully done.\n[    1.220244] cpif: cpif_probe: Exynos CP interface driver CPIF-20220408R1\n[    1.220248] cpif: cpif_probe: cpif: +++ ()\n[    1.220256] cpif: parse_dt_common_pdata: protocol:1\n[    1.220263] cpif: parse_dt_common_pdata: capability_check:1\n[    1.220270] cpif: parse_dt_common_pdata: cp2ap_active_not_alive:0\n[    1.220484] cpif: parse_dt_iodevs_pdata: num_iodevs:52\n[    1.220486] cpif: modem_if_parse_dt_pdata: DT parse complete!\n[    1.220902] cpif: s5100_get_pdata: PCIe Channel Number:0\n[    1.220998] cpif: s5100_init_modemctl_device: Register GPIO interrupts\n[    1.221352] cpif: create_modemctl_device: s5300 is created!!!\n[    1.221408] cpif: create_link_device: +++\n[    1.221413] cpif: create_link_device: MODEM:s5300 LINK:PCIE\n[    1.221422] cpif: create_link_device: link_attrs:0x000017c8\n[    1.221458] cpif: create_link_device: PCIE<->s5300: LINK_ATTR_DPRAM_MAGIC\n[    1.221469] cpif: init_shmem_maps: ipc_base=000000007850ca1c, ipc_size=8388608\n[    1.221510] cpif: pktproc_get_info: version:2 cp_base:0x20000000 mode:1 num_queue:4\n[    1.221514] cpif: pktproc_get_info: use_netrx_mng:0 netrx_capacity:0 exclusive_irq:1\n[    1.221528] cpif: pktproc_get_info: iocc:1 max_packet_size:1584 baaw:0\n[    1.221546] cpif: pktproc_get_info: info_rgn 0x00000000 0x00001000 desc_rgn 0x00001000 0x000ff000 0 buff_rgn 0x00100000 0x01b00000\n[    1.221557] cpif: pktproc_get_info: cached:1/1/1\n[    1.221560] cpif: pktproc_adjust_size: adjusted iommu required:2032 true_packet_size:2048\n[    1.221566] cpif: pktproc_create: memaddr:0xe8000000 memsize:0x01c00000\n[    1.221655] cpif: pktproc_create: info + desc size:0x00100000\n[    1.221658] cpif: pktproc_create: Rounded down queue size from 0x006c0000 to 0x006c0000\n[    1.221661] cpif: pktproc_create: release iommu buffer region offset:0x00100000\n[    1.221666] cpif: cp_shmem_release_rmem: Release rmem base:0xe8000000 size:0x01c00000 headroom:0x00100000\n[    1.226851] cpif: pktproc_create: Total buff buffer size:0x01b00000 Queue:4 Size by queue:0x006c0000\n[    1.226855] cpif: pktproc_create: Create queue 0\n[    1.226861] cpif: pktproc_create: cp_desc_pbase - 36bit addr: 0x20001000, 32bit addr: 0x20001000\n[    1.226876] cpif: pktproc_create: num_desc:3456 cp_desc_pbase:0x20001000 desc_size:0x0000d800\n[    1.226880] cpif: pktproc_create: cp_buff_pbase:0x20100000 buff_size:0x006c0000\n[    1.226883] cpif: pktproc_create: Create queue 1\n[    1.226888] cpif: pktproc_create: cp_desc_pbase - 36bit addr: 0x2000e800, 32bit addr: 0x2000e800\n[    1.226897] cpif: pktproc_create: num_desc:3456 cp_desc_pbase:0x2000e800 desc_size:0x0000d800\n[    1.226900] cpif: pktproc_create: cp_buff_pbase:0x207c0000 buff_size:0x006c0000\n[    1.226904] cpif: pktproc_create: Create queue 2\n[    1.226908] cpif: pktproc_create: cp_desc_pbase - 36bit addr: 0x2001c000, 32bit addr: 0x2001c000\n[    1.226918] cpif: pktproc_create: num_desc:3456 cp_desc_pbase:0x2001c000 desc_size:0x0000d800\n[    1.226921] cpif: pktproc_create: cp_buff_pbase:0x20e80000 buff_size:0x006c0000\n[    1.226925] cpif: pktproc_create: Create queue 3\n[    1.226929] cpif: pktproc_create: cp_desc_pbase - 36bit addr: 0x20029800, 32bit addr: 0x20029800\n[    1.226938] cpif: pktproc_create: num_desc:3456 cp_desc_pbase:0x20029800 desc_size:0x0000d800\n[    1.226941] cpif: pktproc_create: cp_buff_pbase:0x21540000 buff_size:0x006c0000\n[    1.226996] cpif: pktproc_get_info_ul: cp_base:0x20000000 num_queue:2 max_packet_size:2048 hiprio_ack_only:1 iocc:1\n[    1.226999] cpif: pktproc_get_info_ul: cached: 1/1/1 padding_required:1\n[    1.227027] cpif: pktproc_get_info_ul: info_rgn 0x01c00000 0x00001000 desc_rgn 0x01c01000 0x0008f000 buff_rgn 0x01c90000 0x00370000\n[    1.227031] cpif: pktproc_create_ul: memaddr:0xe8000000 memsize:0x00400000\n[    1.227085] cpif: pktproc_create_ul: info + desc size:0x00090000\n[    1.227089] cpif: pktproc_create_ul: Total buffer size:0x00370000 Queue:2 Size by queue:0x001b8000\n[    1.227092] cpif: pktproc_create_ul: Queue 0\n[    1.227098] cpif: pktproc_create_ul: num_desc:1760 desc_offset:0x21c01000 desc_size:0x0000dc00 max_packet_size: 1024\n[    1.227102] cpif: pktproc_create_ul: buff_offset:0x21c90000 buff_size:0x001b8000\n[    1.227105] cpif: pktproc_create_ul: Queue 1\n[    1.227110] cpif: pktproc_create_ul: num_desc:880 desc_offset:0x21c0ec00 desc_size:0x00006e00 max_packet_size: 2048\n[    1.227113] cpif: pktproc_create_ul: buff_offset:0x21e48000 buff_size:0x001b8000\n[    1.227126] cpif: tpmon_create: register cpufreq notifier\n[    1.227136] cpif: tpmon_parse_dt: trigger min:500msec max:1500msec\n[    1.227141] cpif: tpmon_parse_dt: monitor interval:1000msec hold:3000msec stop:15mbps\n[    1.227144] cpif: tpmon_parse_dt: boost hold:6000msec\n[    1.227156] cpif: tpmon_parse_dt: name:RPS measure:0 target:0 extra_idx:0 level:2/3 proto:0\n[    1.227164] cpif: tpmon_parse_dt: name:GRO measure:0 target:1 extra_idx:0 level:1/2 proto:0\n[    1.227174] cpif: tpmon_set_cpufreq: notifier_call is registered\n[    1.227179] cpif: tpmon_parse_dt: name:CL1 measure:0 target:10 extra_idx:4 level:1/2 proto:0\n[    1.227188] cpif: tpmon_parse_dt: name:PCIE_LP measure:0 target:3 extra_idx:0 level:1/2 proto:0\n[    1.227196] cpif: tpmon_parse_dt: name:IRQ_0 measure:0 target:5 extra_idx:3 level:1/2 proto:0\n[    1.227349] cpif: create_link_device: ---\n[    1.227353] cpif: cpif_probe: s5300: PCIE link created\n[    1.227425] cpif: create_io_device: umts_ipc0 created. attrs:0x00002000\n[    1.227503] cpif: create_io_device: umts_ipc1 created. attrs:0x00002000\n[    1.227577] cpif: create_io_device: umts_rfs0 created. attrs:0x00000000\n[    1.227647] cpif: create_io_device: umts_router created. attrs:0x00000000\n[    1.227716] cpif: create_io_device: umts_dm0 created. attrs:0x00004000\n[    1.227787] cpif: create_io_device: umts_loopback created. attrs:0x00000000\n[    1.228321] cpif: create_io_device: rmnet0 created. attrs:0x00002000\n[    1.228711] cpif: create_io_device: rmnet1 created. attrs:0x00002000\n[    1.229106] cpif: create_io_device: rmnet2 created. attrs:0x00002000\n[    1.229499] cpif: create_io_device: rmnet3 created. attrs:0x00002000\n[    1.229895] cpif: create_io_device: rmnet4 created. attrs:0x00002000\n[    1.230292] cpif: create_io_device: rmnet5 created. attrs:0x00002000\n[    1.230729] cpif: create_io_device: rmnet6 created. attrs:0x00002000\n[    1.231125] cpif: create_io_device: rmnet7 created. attrs:0x00002000\n[    1.231516] cpif: create_io_device: rmnet8 created. attrs:0x00002000\n[    1.231910] cpif: create_io_device: rmnet9 created. attrs:0x00002000\n[    1.232298] cpif: create_io_device: rmnet10 created. attrs:0x00002000\n[    1.232695] cpif: create_io_device: rmnet11 created. attrs:0x00002000\n[    1.233098] cpif: create_io_device: rmnet12 created. attrs:0x00002000\n[    1.233489] cpif: create_io_device: rmnet13 created. attrs:0x00002000\n[    1.233884] cpif: create_io_device: rmnet14 created. attrs:0x00002000\n[    1.234284] cpif: create_io_device: rmnet15 created. attrs:0x00002000\n[    1.234677] cpif: create_io_device: rmnet16 created. attrs:0x00002000\n[    1.235067] cpif: create_io_device: rmnet17 created. attrs:0x00002000\n[    1.235462] cpif: create_io_device: rmnet18 created. attrs:0x00002000\n[    1.235870] cpif: create_io_device: rmnet19 created. attrs:0x00002000\n[    1.236280] cpif: create_io_device: rmnet20 created. attrs:0x00002000\n[    1.236786] cpif: create_io_device: rmnet21 created. attrs:0x00002000\n[    1.237182] cpif: create_io_device: rmnet22 created. attrs:0x00002000\n[    1.237581] cpif: create_io_device: rmnet23 created. attrs:0x00002000\n[    1.237983] cpif: create_io_device: rmnet24 created. attrs:0x00002000\n[    1.238366] cpif: create_io_device: rmnet25 created. attrs:0x00002000\n[    1.238754] cpif: create_io_device: rmnet26 created. attrs:0x00002000\n[    1.239147] cpif: create_io_device: rmnet27 created. attrs:0x00002000\n[    1.239549] cpif: create_io_device: rmnet28 created. attrs:0x00002000\n[    1.239940] cpif: create_io_device: rmnet29 created. attrs:0x00002000\n[    1.240343] cpif: create_io_device: umts_dummy created. attrs:0x00000000\n[    1.240427] cpif: create_io_device: multipdp created. attrs:0x00000000\n[    1.240468] cpif: create_io_device: BOOT device = umts_boot0\n[    1.240504] cpif: create_io_device: umts_boot0 created. attrs:0x00000200\n[    1.240576] cpif: create_io_device: umts_rcs0 created. attrs:0x00000000\n[    1.240648] cpif: create_io_device: umts_rcs1 created. attrs:0x00000000\n[    1.240721] cpif: create_io_device: umts_wfc0 created. attrs:0x00000000\n[    1.240793] cpif: create_io_device: umts_wfc1 created. attrs:0x00000000\n[    1.240866] cpif: create_io_device: oem_ipc0 created. attrs:0x00002000\n[    1.240936] cpif: create_io_device: oem_ipc1 created. attrs:0x00002000\n[    1.241006] cpif: create_io_device: oem_ipc2 created. attrs:0x00002000\n[    1.241075] cpif: create_io_device: oem_ipc3 created. attrs:0x00002000\n[    1.241156] cpif: create_io_device: oem_ipc4 created. attrs:0x00002000\n[    1.241224] cpif: create_io_device: oem_ipc5 created. attrs:0x00002000\n[    1.241294] cpif: create_io_device: oem_ipc6 created. attrs:0x00002000\n[    1.241368] cpif: create_io_device: oem_ipc7 created. attrs:0x00002000\n[    1.241436] cpif: create_io_device: oem_test created. attrs:0x00000000\n[    1.241484] cpif: cpif_probe: cpif: done ---\n[    1.242243] eh: starting probing\n[    1.255094] eh: starting probing done\n[    1.256483] s3c2410-wdt 10060000.watchdog_cl0: watchdog cluster0 probe\n[    1.256493] s3c2410-wdt 10060000.watchdog_cl0: It is not a multistage watchdog.\n[    1.256516] s3c2410-wdt 10060000.watchdog_cl0: NONCPU_INT_EN reg val: 1fc\n[    1.256533] s3c2410-wdt 10060000.watchdog_cl0: probe: mapped reg_base=00000000dbb308ba\n[    1.256693] s3c2410-wdt 10060000.watchdog_cl0: Watchdog cluster 0 stop done, WTCON = 15718\n[    1.256708] s3c2410-wdt 10060000.watchdog_cl0: NONCPU_OUT set true done, val = 78d10, en= 1\n[    1.256716] s3c2410-wdt 10060000.watchdog_cl0: NONCPU_INT_EN set true done, val = 1fc, mask = 0\n[    1.256737] s3c2410-wdt 10060000.watchdog_cl0: Watchdog cluster 0 stop done, WTCON = 15718\n[    1.256749] s3c2410-wdt 10060000.watchdog_cl0: watchdog cluster 0, inactive, reset disabled, irq disabled\n[    1.256756] s3c2410-wdt 10060000.watchdog_cl0: DBGACK enabled\n[    1.256763] s3c2410-wdt 10060000.watchdog_cl0: windowed watchdog disabled, wtmincnt=1ff5e\n[    1.256767] Multistage watchdog disabled\n[    1.256816] s3c2410-wdt 10070000.watchdog_cl1: watchdog cluster1 probe\n[    1.256835] s3c2410-wdt 10070000.watchdog_cl1: NONCPU_INT_EN reg val: 4\n[    1.256848] s3c2410-wdt 10070000.watchdog_cl1: probe: mapped reg_base=00000000d7f3d58f\n[    1.256902] s3c2410-wdt 10070000.watchdog_cl1: s3c2410wdt_multistage_wdt_stop: cluster 1 stop done, WTCON 00015701\n[    1.256911] s3c2410-wdt 10070000.watchdog_cl1: Watchdog cluster 1 stop done, WTCON = 15700\n[    1.256922] s3c2410-wdt 10070000.watchdog_cl1: NONCPU_OUT set true done, val = 88, en= 1\n[    1.256930] s3c2410-wdt 10070000.watchdog_cl1: s3c2410wdt_multistage_wdt_stop: cluster 1 stop done, WTCON 00015700\n[    1.256939] s3c2410-wdt 10070000.watchdog_cl1: Watchdog cluster 1 stop done, WTCON = 15700\n[    1.256947] s3c2410-wdt 10070000.watchdog_cl1: watchdog cluster 1, inactive, reset disabled, irq disabled\n[    1.256951] s3c2410-wdt 10070000.watchdog_cl1: DBGACK enabled\n[    1.256958] s3c2410-wdt 10070000.watchdog_cl1: windowed watchdog disabled, wtmincnt=19918\n[    1.256961] Multistage watchdog enabled\n[    1.257674] exynos-seclog seclog: [ERROR] EL3 Monitor doesn't support Secure log\n[    1.257679] exynos-seclog seclog: Fail to initialize Secure log\n[    1.257710] exynos-seclog: probe of seclog failed with error -22\n[    1.258959] exynos-uart 181b0000.serial: set usi mode - 0x1\n[    1.258997] exynos-uart 181b0000.serial: IRQ index 1 not found\n[    1.259003] exynos-uart 181b0000.serial: No explicit src-clk. Use default src-clk\n[    1.259039] 181b0000.serial: ttySAC18 at MMIO 0x181b0000 (irq = 191, base_baud = 0) is a S3C6400/10\n[    1.259439] logbuffer: id:tty18 registered\n[    1.259560] exynos-uart 10a00000.uart: usi offset is not specified\n[    1.259565] exynos-uart 10a00000.uart: no lookup for usi-phandle.\n[    1.259600] exynos-uart 10a00000.uart: IRQ index 1 not found\n[    1.259606] exynos-uart 10a00000.uart: No explicit src-clk. Use default src-clk\n[    1.259638] 10a00000.uart: ttySAC0 at MMIO 0x10a00000 (irq = 350, base_baud = 0) is a S3C6400/10\n[    1.261635] samsung-sysmmu 1a090000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.262809] samsung-sysmmu 1ca40000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.264055] samsung-sysmmu 1a510000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.265330] samsung-sysmmu 1a540000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.266689] samsung-sysmmu 1b080000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.267840] samsung-sysmmu 1c100000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.268937] samsung-sysmmu 1c110000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.270056] samsung-sysmmu 1c120000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.271014] samsung-sysmmu 1c660000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.271900] samsung-sysmmu 1c690000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.272771] samsung-sysmmu 1c710000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.274029] samsung-sysmmu 1a880000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.275340] samsung-sysmmu 1d0a0000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.276663] samsung-sysmmu 1d0d0000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.277961] samsung-sysmmu 1d100000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.279248] samsung-sysmmu 1ad00000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.280665] samsung-sysmmu 1b780000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.281935] samsung-sysmmu 1b7b0000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.283207] samsung-sysmmu 1b7e0000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.284575] samsung-sysmmu 1c870000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.285855] samsung-sysmmu 1c8a0000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.287156] samsung-sysmmu 1bc70000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.288428] samsung-sysmmu 1bca0000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.289711] samsung-sysmmu 1bcd0000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.290981] samsung-sysmmu 1bd00000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.292256] samsung-sysmmu 1bd30000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.293495] samsung-sysmmu 1cc40000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.294789] samsung-sysmmu 25a50000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.296037] samsung-sysmmu 25a80000.sysmmu: initialized IOMMU. Ver 8.1.0, no gate clock\n[    1.296855] exynos-g2d 1c640000.g2d: has sysmmu 1c660000.sysmmu (total count:1)\n[    1.296888] exynos-g2d 1c640000.g2d: has sysmmu 1c690000.sysmmu (total count:2)\n[    1.296931] exynos-g2d 1c640000.g2d: Adding to iommu group 5\n[    1.297016] exynos-g2d 1c640000.g2d: attached with pgtable 0x00000000e9380000\n[    1.298041] exynos-g2d 1c640000.g2d: Probed FIMG2D version 0xa0010004\n[    1.298582] zram: Added device: zram0\n[    1.299249] brcm gps spi spi5.0: ssp-host-req=48, ssp-mcu_req=128, ssp-mcu-resp=100 nstandby=101 \n[    1.299600] brcm gps spi spi5.0: Can not get ts default pinstate\n[    1.299636] brcm gps spi spi5.0: Probe OK. ssp-host-req=48, irq=371, priv=0x00000000552f5e46\n[    1.299738] GPSBBD: (511,1) registered /dev/bbd_sensor\n[    1.299773] GPSBBD: (511,2) registered /dev/bbd_control\n[    1.299807] GPSBBD: (511,3) registered /dev/bbd_patch\n[    1.299842] GPSBBD: (511,4) registered /dev/bbd_pwrstat\n[    1.299846] GPSBBD: 167888 nsec elapsed\n[    1.300408] exynos-ufs 14700000.ufs: exynos_ufs_probe: start\n[    1.300412] exynos-ufs 14700000.ufs: ===============================\n[    1.300427] exynos-ufs 14700000.ufs: reg_hci    00000000731aaa28\n[    1.300439] exynos-ufs 14700000.ufs: reg_unipro 000000008e3ef18f\n[    1.300451] exynos-ufs 14700000.ufs: reg_ufsp   0000000051ac70df\n[    1.300464] exynos-ufs 14700000.ufs: reg_phy    00000000df2f02fa\n[    1.300478] exynos-ufs 14700000.ufs: reg_cport  00000000bb976778\n[    1.300484] exynos-ufs 14700000.ufs: \n[    1.300554] exynos-ufs 14700000.ufs: ufs-iocc: offset 0x710, mask 0x3, value 0x3\n[    1.300560] exynos-ufs 14700000.ufs: No ufs-pm-qos node, not guarantee pm qos\n[    1.300569] exynos-ufs 14700000.ufs: evt version : 1, board: 1\n[    1.300575] exynos-ufs 14700000.ufs: ===============================\n[    1.300586] exynos-ufs 14700000.ufs: exynos_ufs_init_dbg:\n[    1.300591] exynos-ufs 14700000.ufs: UNIP_COMP_AXI_AUX_FIELD = 0x00000040\n[    1.300595] exynos-ufs 14700000.ufs: __WSTRB = 0x0f000000\n[    1.301791] exynos-ufs 14700000.ufs: ufshcd_populate_vreg: Unable to find vdd-hba-supply regulator, assuming enabled\n[    1.301800] exynos-ufs 14700000.ufs: ufshcd_populate_vreg: unable to find vcc-max-microamp\n[    1.301806] exynos-ufs 14700000.ufs: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    1.301813] exynos-ufs 14700000.ufs: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled\n[    1.302557] exynos-ufs 14700000.ufs: configured KDN with MKE=1, DT=0, KE=0\n[    1.302586] exynos-ufs 14700000.ufs: enabled inline encryption support with wrapped keys\n[    1.303917] scsi host0: ufshcd\n[    1.304178] exynos-ufs 14700000.ufs: kdn: evicting keyslot 0\n[    1.304758] exynos-ufs 14700000.ufs: kdn: evicting keyslot 1\n[    1.305319] exynos-ufs 14700000.ufs: kdn: evicting keyslot 2\n[    1.305854] exynos-ufs 14700000.ufs: kdn: evicting keyslot 3\n[    1.306410] exynos-ufs 14700000.ufs: kdn: evicting keyslot 4\n[    1.306968] exynos-ufs 14700000.ufs: kdn: evicting keyslot 5\n[    1.307487] exynos-ufs 14700000.ufs: kdn: evicting keyslot 6\n[    1.308024] exynos-ufs 14700000.ufs: kdn: evicting keyslot 7\n[    1.308579] exynos-ufs 14700000.ufs: kdn: evicting keyslot 8\n[    1.309116] exynos-ufs 14700000.ufs: kdn: evicting keyslot 9\n[    1.309674] exynos-ufs 14700000.ufs: kdn: evicting keyslot 10\n[    1.310200] exynos-ufs 14700000.ufs: kdn: evicting keyslot 11\n[    1.310757] exynos-ufs 14700000.ufs: kdn: evicting keyslot 12\n[    1.311316] exynos-ufs 14700000.ufs: kdn: evicting keyslot 13\n[    1.311855] exynos-ufs 14700000.ufs: kdn: evicting keyslot 14\n[    1.312426] exynos-ufs 14700000.ufs: mclk: 177664000\n[    1.312443] exynos-ufs 14700000.ufs: kdn: restoring keys\n[    1.314137] exynos-ufs 14700000.ufs: kdn: restored keys\n[    1.320112] logbuffer: id:tcpm registered\n[    1.320944] exynos5-hsi2c 10900000.hsi2c: set usi mode - 0x4\n[    1.321030] exynos5-hsi2c 10900000.hsi2c: exynos5_i2c_set_timing IPCLK = 199680000 OP_CLK = 1000000 DIV = 11 TIMING FS1(FS+) = 0x1E0FF00 TIMING FS2(FS+) = 0x30003E0 TIMING FS3(FS+) = 0xB0000\n[    1.321881] exynos5-hsi2c 10910000.hsi2c: set usi mode - 0x4\n[    1.321955] exynos5-hsi2c 10910000.hsi2c: exynos5_i2c_set_timing IPCLK = 199680000 OP_CLK = 950000 DIV = 12 TIMING FS1(FS+) = 0x1E0FF00 TIMING FS2(FS+) = 0x30003E0 TIMING FS3(FS+) = 0xC0000\n[    1.322455] exynos5-hsi2c 10920000.hsi2c: set usi mode - 0x4\n[    1.322530] exynos5-hsi2c 10920000.hsi2c: exynos5_i2c_set_timing IPCLK = 199680000 OP_CLK = 950000 DIV = 12 TIMING FS1(FS+) = 0x1E0FF00 TIMING FS2(FS+) = 0x30003E0 TIMING FS3(FS+) = 0xC0000\n[    1.323037] exynos5-hsi2c 10930000.hsi2c: set usi mode - 0x4\n[    1.323106] exynos5-hsi2c 10930000.hsi2c: exynos5_i2c_set_timing IPCLK = 199680000 OP_CLK = 1000000 DIV = 11 TIMING FS1(FS+) = 0x1E0FF00 TIMING FS2(FS+) = 0x30003E0 TIMING FS3(FS+) = 0xB0000\n[    1.323554] exynos5-hsi2c 10970000.hsi2c: set usi mode - 0x4\n[    1.323625] exynos5-hsi2c 10970000.hsi2c: exynos5_i2c_set_timing IPCLK = 199680000 OP_CLK = 400000 DIV = 31 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x1F0000\n[    1.325350] exynos5-hsi2c 10d60000.hsi2c: set usi mode - 0x4\n[    1.325427] exynos5-hsi2c 10d60000.hsi2c: exynos5_i2c_set_timing IPCLK = 199680000 OP_CLK = 400000 DIV = 31 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x1F0000\n[    1.326945] exynos5-hsi2c 10da0000.hsi2c: set usi mode - 0x4\n[    1.327017] exynos5-hsi2c 10da0000.hsi2c: exynos5_i2c_set_timing IPCLK = 199680000 OP_CLK = 400000 DIV = 31 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x1F0000\n[    1.327216] at24 6-0050: supply vcc not found, using dummy regulator\n[    1.328418] at24 6-0050: 1024 byte 24c08 EEPROM, writable, 1 bytes/write\n[    1.329708] i2c-acpm acpm_mfd_bus@18100000: acpm mfd bus driver probe started\n[    1.330360] s2mpg12 i2c-s2mpg12mfd: s2mpg12 i2c probe\n[    1.333343] s2mpg12_i2c_probe device found: rev.0x01\n[    1.335820] exynos-ufs 14700000.ufs: PA_ActiveTxDataLanes(2), PA_ActiveRxDataLanes(2)\n[    1.335825] exynos-ufs 14700000.ufs: max_gear(4), PA_MaxRxHSGear(4)\n[    1.335835] exynos-ufs 14700000.ufs: UFS link start-up passes\n[    1.347004] exynos-ufs 14700000.ufs: UFS device initialized\n[    1.349240] exynos-ufs 14700000.ufs: PA_ActiveTxDataLanes(2),PA_ActiveRxDataLanes(2)\n[    1.349339] exynos-ufs 14700000.ufs: Power mode change(0): M(1)G(4)L(2)HS-series(2)\n[    1.349344] exynos-ufs 14700000.ufs: HS mode config passes\n[    1.349615] scsi 0:0:0:49488: Well-known LUN    KIOXIA   THGJFGT1E45BAIPB 0100 PQ: 0 ANSI: 6\n[    1.350064] ufs_device_wlun 0:0:0:49488: Attached scsi generic sg0 type 30\n[    1.350609] scsi 0:0:0:49476: Well-known LUN    KIOXIA   THGJFGT1E45BAIPB 0100 PQ: 0 ANSI: 6\n[    1.351012] scsi 0:0:0:49476: Attached scsi generic sg1 type 30\n[    1.351322] scsi 0:0:0:49456: Well-known LUN    KIOXIA   THGJFGT1E45BAIPB 0100 PQ: 0 ANSI: 6\n[    1.351720] scsi 0:0:0:49456: Attached scsi generic sg2 type 30\n[    1.352215] scsi 0:0:0:0: Direct-Access     KIOXIA   THGJFGT1E45BAIPB 0100 PQ: 0 ANSI: 6\n[    1.352633] scsi 0:0:0:0: Attached scsi generic sg3 type 0\n[    1.353207] scsi 0:0:0:1: Direct-Access     KIOXIA   THGJFGT1E45BAIPB 0100 PQ: 0 ANSI: 6\n[    1.353472] sd 0:0:0:0: [sda] 62436352 4096-byte logical blocks: (256 GB/238 GiB)\n[    1.353707] scsi 0:0:0:1: Attached scsi generic sg4 type 0\n[    1.353948] sd 0:0:0:0: [sda] Write Protect is off\n[    1.353954] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.354101] sd 0:0:0:0: [sda] Disabling FUA\n[    1.354108] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA\n[    1.354155] scsi 0:0:0:2: Direct-Access     KIOXIA   THGJFGT1E45BAIPB 0100 PQ: 0 ANSI: 6\n[    1.354182] sd 0:0:0:0: [sda] Optimal transfer size 524288 bytes\n[    1.354799] scsi 0:0:0:2: Attached scsi generic sg5 type 0\n[    1.355158] scsi 0:0:0:3: Direct-Access     KIOXIA   THGJFGT1E45BAIPB 0100 PQ: 0 ANSI: 6\n[    1.355557] scsi 0:0:0:3: Attached scsi generic sg6 type 0\n[    1.356992] sd 0:0:0:1: [sdb] 8192 4096-byte logical blocks: (33.6 MB/32.0 MiB)\n[    1.357126] sd 0:0:0:1: [sdb] Write Protect is off\n[    1.357161] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.357308]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21 sda22 sda23 sda24 sda25 sda26 sda27 sda28 sda29 sda30 sda31\n[    1.358999] sd 0:0:0:1: [sdb] Disabling FUA\n[    1.359037] sd 0:0:0:1: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA\n[    1.359099] sd 0:0:0:2: [sdc] 8192 4096-byte logical blocks: (33.6 MB/32.0 MiB)\n[    1.359123] sd 0:0:0:1: [sdb] Optimal transfer size 524288 bytes\n[    1.359167] sd 0:0:0:2: [sdc] Write Protect is off\n[    1.359173] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.359392] sd 0:0:0:2: [sdc] Disabling FUA\n[    1.359400] sd 0:0:0:2: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA\n[    1.359876] sd 0:0:0:2: [sdc] Optimal transfer size 524288 bytes\n[    1.362037]  sdb: sdb1 sdb2 sdb3 sdb4 sdb5 sdb6 sdb7 sdb8 sdb9 sdb10\n[    1.362864]  sdc: sdc1 sdc2 sdc3 sdc4 sdc5 sdc6 sdc7 sdc8 sdc9 sdc10\n[    1.364395] sd 0:0:0:1: [sdb] Attached SCSI disk\n[    1.364723] sd 0:0:0:2: [sdc] Attached SCSI disk\n[    1.365387] sd 0:0:0:0: [sda] Attached SCSI disk\n[    1.365920] sd 0:0:0:3: [sdd] 1024 4096-byte logical blocks: (4.19 MB/4.00 MiB)\n[    1.365976] sd 0:0:0:3: [sdd] Write Protect is off\n[    1.365983] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.366112] sd 0:0:0:3: [sdd] Disabling FUA\n[    1.366120] sd 0:0:0:3: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA\n[    1.366203] sd 0:0:0:3: [sdd] Optimal transfer size 524288 bytes\n[    1.368058]  sdd: sdd1 sdd2 sdd3 sdd4\n[    1.369311] sd 0:0:0:3: [sdd] Attached SCSI disk\n[    1.386809] s2mpg12 i2c-s2mpg12mfd: s2mpg12 S2MPG12_COMMON_IBIM1=0xfe\n[    1.420055] s2mpg12-regulator s2mpg12-regulator: BUCK_OCP_CTRL1: 0xbb\n[    1.420188] s2mpg12-regulator s2mpg12-regulator: BUCK_OCP_CTRL2: 0xbb\n[    1.420322] s2mpg12-regulator s2mpg12-regulator: BUCK_OCP_CTRL3: 0xbb\n[    1.420460] s2mpg12-regulator s2mpg12-regulator: BUCK_OCP_CTRL4: 0xbb\n[    1.420596] s2mpg12-regulator s2mpg12-regulator: BUCK_OCP_CTRL5: 0xbb\n[    1.420730] s2mpg12-regulator s2mpg12-regulator: SMPL_WARN_CTRL : 0x68\n[    1.420866] s2mpg12-regulator s2mpg12-regulator: B2M_OCP_WARN : 0x80\n[    1.420998] s2mpg12-regulator s2mpg12-regulator: B3M_OCP_WARN : 0x80\n[    1.421129] s2mpg12-regulator s2mpg12-regulator: B10M_OCP_WARN : 0x80\n[    1.421265] s2mpg12-regulator s2mpg12-regulator: B2M_SOFT_OCP_WARN : 0x14\n[    1.421398] s2mpg12-regulator s2mpg12-regulator: B3M_SOFT_OCP_WARN : 0x0\n[    1.421532] s2mpg12-regulator s2mpg12-regulator: B10M_SOFT_OCP_WARN : 0x0\n[    1.425959] s2mpg12-rtc s2mpg12-rtc: s2m_rtc_enable_wtsr_smpl: WTSR: enable, COLDRST : disable, SMPL: disable\n[    1.430727] s2mpg12-rtc s2mpg12-rtc: s2m_rtc_read_time: 2023-04-23 06:17:14(0x01)AM\n[    1.432471] s2mpg12-rtc s2mpg12-rtc: s2m_rtc_read_alarm: 2023-04-23 03:14:21(0)\n[    1.434348] s2mpg12-rtc s2mpg12-rtc: s2m_rtc_read_time: 2023-04-23 06:17:14(0x01)AM\n[    1.434795] s2mpg12-rtc s2mpg12-rtc: registered as rtc0\n[    1.436552] s2mpg12-rtc s2mpg12-rtc: s2m_rtc_read_time: 2023-04-23 06:17:14(0x01)AM\n[    1.437396] s2mpg12-rtc s2mpg12-rtc: setting system clock to 2023-04-23T06:17:14 UTC (1682230634)\n[    1.440831] power_keys_probe: start\n[    1.442890] input: s2mpg12-power-keys as /devices/platform/acpm_mfd_bus@18100000/i2c-7/i2c-s2mpg12mfd/s2mpg12-power-keys/input/input1\n[    1.442947] s2mpg12-power-keys s2mpg12-power-keys: S2MPG12 Key probe End\n[    1.443122] i2c-acpm acpm_mfd_bus@18100000: acpm mfd bus driver probe was succeeded\n[    1.443242] i2c-acpm acpm_mfd_bus@18110000: acpm mfd bus driver probe started\n[    1.444530] s2mpg13 i2c-s2mpg13mfd: s2mpg13 i2c probe\n[    1.445702] exynos-pcie-rc 11920000.pcie: ## PCIe RC PROBE start\n[    1.445737] exynos-pcie-rc 11920000.pcie: ## PCIe ch 0 ##\n[    1.445858] logbuffer: id:pcie0 registered\n[    1.445874] exynos-pcie-rc 11920000.pcie: Failed to parse the number of chip-ver, default '0'\n[    1.445879] exynos-pcie-rc 11920000.pcie: parse the number of lanes: 2\n[    1.445884] exynos-pcie-rc 11920000.pcie: parse the separated msi: 1\n[    1.445890] exynos-pcie-rc 11920000.pcie: Cache Coherency unit is ENABLED.\n[    1.445895] exynos-pcie-rc 11920000.pcie: MSI is ENABLED.\n[    1.445899] exynos-pcie-rc 11920000.pcie: ## PCIe use SICD\n[    1.445904] exynos-pcie-rc 11920000.pcie: ## PCIe use PCIE ON Sleep\n[    1.445908] exynos-pcie-rc 11920000.pcie: PCIe SysMMU is ENABLED.\n[    1.445913] exynos-pcie-rc 11920000.pcie: PCIe I/A is ENABLED.\n[    1.445917] exynos-pcie-rc 11920000.pcie: PCIe L1SS(L1.2) is ENABLED.\n[    1.445922] exynos-pcie-rc 11920000.pcie: PCIe Secure ATU is ENABLED.\n[    1.445934] exynos-pcie-rc 11920000.pcie: exynos_pcie_rc_parse_dt: pcie int_min_lock = 200000\n[    1.446012] exynos-pcie-rc 11920000.pcie: wlan gpio is not defined -> don't use wifi through pcie#0\n[    1.446021] exynos-pcie-rc 11920000.pcie: ssd gpio is not defined -> don't use ssd through pcie#0\n[    1.446108] exynos-pcie-rc 11920000.pcie: No idle pin state(but it's OK)!!\n[    1.446163] exynos-pcie-rc 11920000.pcie: Initialize PHY functions.\n[    1.446167] exynos-pcie-rc 11920000.pcie: Initialize PCIe function.\n[    1.446360] exynos-pcie-rc 11920000.pcie: PCIe cap [0x1][Power Management]: 0x40\n[    1.446366] exynos-pcie-rc 11920000.pcie: PCIe cap [0x5][Message Signalled Interrupts]: 0x50\n[    1.446372] exynos-pcie-rc 11920000.pcie: PCIe cap [0x10][PCI Express]: 0x70\n[    1.446378] exynos-pcie-rc 11920000.pcie: PCIe ext cap [0x1][Advanced Error Reporting]: 0x100\n[    1.446384] exynos-pcie-rc 11920000.pcie: PCIe ext cap [0x19][Secondary PCIe Capability]: 0x148\n[    1.446390] exynos-pcie-rc 11920000.pcie: PCIe ext cap [0x1e][L1 PM Substates]: 0x194\n[    1.446395] exynos-pcie-rc 11920000.pcie: PCIe ext cap [0x25][Data Link Feature]: 0x1a4\n[    1.446400] exynos-pcie-rc 11920000.pcie: PCIe ext cap [0x26][Physical Layer 16GT/s]: 0x158\n[    1.446405] exynos-pcie-rc 11920000.pcie: PCIe ext cap [0x27][Physical Layer 16GT/s Margining]: 0x17c\n[    1.446484] exynos-pcie-rc 11920000.pcie: 314 separated MSI irq is defined.\n[    1.446519] exynos-pcie-rc 11920000.pcie: 315 separated MSI irq is defined.\n[    1.446532] exynos-pcie-rc 11920000.pcie: 316 separated MSI irq is defined.\n[    1.446547] exynos-pcie-rc 11920000.pcie: 317 separated MSI irq is defined.\n[    1.446563] exynos-pcie-rc 11920000.pcie: 318 separated MSI irq is defined.\n[    1.446621] exynos-pcie-rc 11920000.pcie: host bridge /pcie@11920000 ranges:\n[    1.446631] exynos-pcie-rc 11920000.pcie:   No bus range found for /pcie@11920000, using [bus 00-ff]\n[    1.446646] exynos-pcie-rc 11920000.pcie:      MEM 0x0040000000..0x0040feffff -> 0x0014e00000\n[    1.446716] exynos-pcie-rc 11920000.pcie: invalid resource\n[    1.446838] exynos-pcie-rc 11920000.pcie: PCI host bridge to bus 0000:00\n[    1.446845] pci_bus 0000:00: root bus resource [bus 00-ff]\n[    1.446852] pci_bus 0000:00: root bus resource [mem 0x40000000-0x40feffff] (bus address [0x14e00000-0x15deffff])\n[    1.446905] pci 0000:00:00.0: [144d:ecec] type 01 class 0x060400\n[    1.447054] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold\n[    1.457104] s2mpg13 i2c-s2mpg13mfd: device found: rev.0x01\n[    1.470791] pci 0000:00:00.0: PCI bridge to [bus 01-ff]\n[    1.470815] [exynos_pcie_quirks] async suspend disabled\n[    1.472525] pcieport 0000:00:00.0: PME: Signaling with IRQ 473\n[    1.472757] pcieport 0000:00:00.0: AER: enabled with IRQ 473\n[    1.472953] exynos-pcie-rc 11920000.pcie: PCIE idle ip index : 30\n[    1.472960] exynos-pcie-rc 11920000.pcie: exynos_pcie_rc_probe, ip idle status : 1, idle_ip_index: 30\n[    1.473050] exynos-pcie-rc 11920000.pcie: ## register pcie connection function\n[    1.473053] Registered pcie_is_connect func\n[    1.473057] exynos-pcie-rc 11920000.pcie: ## exynos_pcie_rc_probe: PCIe probe success\n[    1.568744] s2mpg13-regulator s2mpg13-regulator: OCP_CTRL1: 0xbb\n[    1.568880] s2mpg13-regulator s2mpg13-regulator: OCP_CTRL2: 0xbb\n[    1.569012] s2mpg13-regulator s2mpg13-regulator: OCP_CTRL3: 0xbb\n[    1.569148] s2mpg13-regulator s2mpg13-regulator: OCP_CTRL4: 0xbb\n[    1.569285] s2mpg13-regulator s2mpg13-regulator: OCP_CTRL5: 0xbb\n[    1.569417] s2mpg13-regulator s2mpg13-regulator: OCP_CTRL6: 0xbb\n[    1.569549] s2mpg13-regulator s2mpg13-regulator: OCP_CTRL7: 0xb\n[    1.569686] s2mpg13-regulator s2mpg13-regulator: B2S_OCP_WARN : 0x80\n[    1.569819] s2mpg13-regulator s2mpg13-regulator: B2S_SOFT_OCP_WARN : 0x0\n[    1.574098] exynos-pcie-rc 14520000.pcie: ## PCIe RC PROBE start\n[    1.574120] exynos-pcie-rc 14520000.pcie: ## PCIe ch 1 ##\n[    1.574239] logbuffer: id:pcie1 registered\n[    1.574253] exynos-pcie-rc 14520000.pcie: Failed to parse the number of chip-ver, default '0'\n[    1.574258] exynos-pcie-rc 14520000.pcie: parse the number of lanes: 1\n[    1.574264] exynos-pcie-rc 14520000.pcie: Unset separated-msi value, default '0'\n[    1.574268] exynos-pcie-rc 14520000.pcie: Cache Coherency unit is ENABLED.\n[    1.574272] exynos-pcie-rc 14520000.pcie: ## PCIe don't use MSI\n[    1.574277] exynos-pcie-rc 14520000.pcie: ## PCIe use SICD\n[    1.574281] exynos-pcie-rc 14520000.pcie: ## PCIe don't use PCIE ON Sleep\n[    1.574285] exynos-pcie-rc 14520000.pcie: PCIe SysMMU is ENABLED.\n[    1.574290] exynos-pcie-rc 14520000.pcie: PCIe I/A is ENABLED.\n[    1.574295] exynos-pcie-rc 14520000.pcie: PCIe L1SS(L1.2) is ENABLED.\n[    1.574299] exynos-pcie-rc 14520000.pcie: PCIe Secure ATU is DISABLED.\n[    1.574308] exynos-pcie-rc 14520000.pcie: exynos_pcie_rc_parse_dt: pcie int_min_lock = 200000\n[    1.574342] exynos-pcie-rc 14520000.pcie: ssd gpio is not defined -> don't use ssd through pcie#1\n[    1.574417] exynos-pcie-rc 14520000.pcie: No idle pin state(but it's OK)!!\n[    1.574473] exynos-pcie-rc 14520000.pcie: Initialize PHY functions.\n[    1.574477] exynos-pcie-rc 14520000.pcie: Initialize PCIe function.\n[    1.574625] exynos-pcie-rc 14520000.pcie: PCIe cap [0x1][Power Management]: 0x40\n[    1.574630] exynos-pcie-rc 14520000.pcie: PCIe cap [0x5][Message Signalled Interrupts]: 0x50\n[    1.574635] exynos-pcie-rc 14520000.pcie: PCIe cap [0x10][PCI Express]: 0x70\n[    1.574640] exynos-pcie-rc 14520000.pcie: PCIe ext cap [0x1][Advanced Error Reporting]: 0x100\n[    1.574646] exynos-pcie-rc 14520000.pcie: PCIe ext cap [0x19][Secondary PCIe Capability]: 0x148\n[    1.574651] exynos-pcie-rc 14520000.pcie: PCIe ext cap [0x1e][L1 PM Substates]: 0x194\n[    1.574657] exynos-pcie-rc 14520000.pcie: PCIe ext cap [0x25][Data Link Feature]: 0x1a4\n[    1.574662] exynos-pcie-rc 14520000.pcie: PCIe ext cap [0x26][Physical Layer 16GT/s]: 0x158\n[    1.574669] exynos-pcie-rc 14520000.pcie: PCIe ext cap [0x27][Physical Layer 16GT/s Margining]: 0x17c\n[    1.574728] exynos-pcie-rc 14520000.pcie: host bridge /pcie@14520000 ranges:\n[    1.574737] exynos-pcie-rc 14520000.pcie:   No bus range found for /pcie@14520000, using [bus 00-ff]\n[    1.574751] exynos-pcie-rc 14520000.pcie:      MEM 0x0060000000..0x0060feffff -> 0x0060000000\n[    1.574801] exynos-pcie-rc 14520000.pcie: invalid resource\n[    1.574915] exynos-pcie-rc 14520000.pcie: PCI host bridge to bus 0001:00\n[    1.574922] pci_bus 0001:00: root bus resource [bus 00-ff]\n[    1.574928] pci_bus 0001:00: root bus resource [mem 0x60000000-0x60feffff]\n[    1.574971] pci 0001:00:00.0: [144d:eced] type 01 class 0x060400\n[    1.574993] pci 0001:00:00.0: reg 0x10: [mem 0x00000000-0x000fffff]\n[    1.575015] pci 0001:00:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]\n[    1.575117] pci 0001:00:00.0: PME# supported from D0 D3hot D3cold\n[    1.586740] i2c-acpm acpm_mfd_bus@18110000: acpm mfd bus driver probe was succeeded\n[    1.587158] i2c /dev entries driver\n[    1.587964] s5p-mfc mfc: has sysmmu 1c870000.sysmmu (total count:1)\n[    1.588000] s5p-mfc mfc: has sysmmu 1c8a0000.sysmmu (total count:2)\n[    1.588044] s5p-mfc mfc: Adding to iommu group 3\n[    1.588136] s5p-mfc mfc: attached with pgtable 0x00000000e9900000\n[    1.588148] s5p-mfc mfc: Reserved IOMMU mapping [0x0..0x10000000)\n[    1.588153] s5p-mfc mfc: Reserved IOMMU mapping [0x10000000..0x10100000)\n[    1.588236] s5p-mfc mfc: Reserved IOMMU mapping [0x0..0x10000000)\n[    1.588241] s5p-mfc mfc: Reserved IOMMU mapping [0x10000000..0x10100000)\n[    1.588263] s5p-mfc mfc: mfc_probe is called\n[    1.588415] s5p-mfc mfc: __mfc_create_bitrate_table:716: [QoS] bitrate table[0] 134000KHz: ~ 49152Kbps\n[    1.588422] s5p-mfc mfc: __mfc_create_bitrate_table:716: [QoS] bitrate table[1] 267000KHz: ~ 98304Kbps\n[    1.588428] s5p-mfc mfc: __mfc_create_bitrate_table:716: [QoS] bitrate table[2] 400000KHz: ~ 147456Kbps\n[    1.588434] s5p-mfc mfc: __mfc_create_bitrate_table:716: [QoS] bitrate table[3] 534000KHz: ~ 196608Kbps\n[    1.588440] s5p-mfc mfc: __mfc_create_bitrate_table:716: [QoS] bitrate table[4] 666000KHz: ~ 245760Kbps\n[    1.588518] s5p-mfc mfc: video device registered as /dev/video6\n[    1.588564] s5p-mfc mfc: video device registered as /dev/video7\n[    1.588610] s5p-mfc mfc: video device registered as /dev/video8\n[    1.588653] s5p-mfc mfc: video device registered as /dev/video9\n[    1.588700] s5p-mfc mfc: video device registered as /dev/video10\n[    1.588746] s5p-mfc mfc: video device registered as /dev/video11\n[    1.600246] pci 0001:00:00.0: BAR 0: assigned [mem 0x60000000-0x600fffff]\n[    1.600259] pci 0001:00:00.0: BAR 6: assigned [mem 0x60100000-0x6010ffff pref]\n[    1.600265] pci 0001:00:00.0: PCI bridge to [bus 01-ff]\n[    1.600285] [exynos_pcie_quirks] async suspend disabled\n[    1.602222] mfc-core 1c8d0000.MFC-0: has sysmmu 1c870000.sysmmu (total count:1)\n[    1.602240] mfc-core 1c8d0000.MFC-0: has sysmmu 1c8a0000.sysmmu (total count:2)\n[    1.602270] mfc-core 1c8d0000.MFC-0: changed DMA range [0x0000000000000000..0x00000000ffffffff] successfully.\n[    1.602275] mfc-core 1c8d0000.MFC-0: attached with pgtable 0x00000000e9900000\n[    1.602280] mfc-core 1c8d0000.MFC-0: Adding to iommu group 3\n[    1.602296] mfc-core 1c8d0000.MFC-0: changed DMA range [0x0000000000000000..0x00000000ffffffff] successfully.\n[    1.602301] mfc-core 1c8d0000.MFC-0: attached with pgtable 0x00000000e9900000\n[    1.602313] mfc-core 1c8d0000.MFC-0: Reserved IOMMU mapping [0x10000000..0x10100000)\n[    1.602327] mfc-core 1c8d0000.MFC-0: mfc_core_probe is called\n[    1.603115] genirq: irq_chip PCI-MSI did not update eff. affinity mask of irq 474\n[    1.603137] pcieport 0001:00:00.0: PME: Signaling with IRQ 474\n[    1.603295] pcieport 0001:00:00.0: AER: enabled with IRQ 474\n[    1.603439] exynos-pcie-rc 14520000.pcie: PCIE idle ip index : 31\n[    1.603445] exynos-pcie-rc 14520000.pcie: exynos_pcie_rc_probe, ip idle status : 1, idle_ip_index: 31\n[    1.603582] exynos-pcie-rc 14520000.pcie: ## exynos_pcie_rc_probe: PCIe probe success\n[    1.604891] mfc-core 1c8d0000.MFC-0: mfc_core_probe:658: [QoS] control: mfc_freq(1), mo(1), bw(1)\n[    1.604897] mfc-core 1c8d0000.MFC-0: mfc_core_probe:662: [QoS]-------------------Default table\n[    1.604906] mfc-core 1c8d0000.MFC-0: mfc_core_probe:664: [QoS] table[0] mfc: 134000, int: 100000, mif: 421000, bts_scen: default(0)\n[    1.604915] mfc-core 1c8d0000.MFC-0: mfc_core_probe:664: [QoS] table[1] mfc: 267000, int: 200000, mif: 421000, bts_scen: default(0)\n[    1.604921] mfc-core 1c8d0000.MFC-0: mfc_core_probe:664: [QoS] table[2] mfc: 267000, int: 200000, mif: 676000, bts_scen: default(0)\n[    1.604928] mfc-core 1c8d0000.MFC-0: mfc_core_probe:664: [QoS] table[3] mfc: 356000, int: 332000, mif: 1014000, bts_scen: default(0)\n[    1.604935] mfc-core 1c8d0000.MFC-0: mfc_core_probe:664: [QoS] table[4] mfc: 465000, int: 332000, mif: 1014000, bts_scen: default(0)\n[    1.604942] mfc-core 1c8d0000.MFC-0: mfc_core_probe:664: [QoS] table[5] mfc: 664000, int: 332000, mif: 1539000, bts_scen: mfc_uhd(1)\n[    1.604948] mfc-core 1c8d0000.MFC-0: mfc_core_probe:664: [QoS] table[6] mfc: 664000, int: 533000, mif: 1539000, bts_scen: mfc_uhd_10bit(2)\n[    1.604955] mfc-core 1c8d0000.MFC-0: mfc_core_probe:664: [QoS] table[7] mfc: 711000, int: 533000, mif: 1539000, bts_scen: mfc_8k_dec30(3)\n[    1.604960] mfc-core 1c8d0000.MFC-0: mfc_core_probe:671: [QoS]-------------------Encoder only table\n[    1.604966] mfc-core 1c8d0000.MFC-0: mfc_core_probe:673: [QoS] table[0] mfc: 134000, int: 100000, mif: 421000, bts_scen: default(0)\n[    1.604973] mfc-core 1c8d0000.MFC-0: mfc_core_probe:673: [QoS] table[1] mfc: 267000, int: 200000, mif: 421000, bts_scen: default(0)\n[    1.604979] mfc-core 1c8d0000.MFC-0: mfc_core_probe:673: [QoS] table[2] mfc: 267000, int: 200000, mif: 676000, bts_scen: default(0)\n[    1.604985] mfc-core 1c8d0000.MFC-0: mfc_core_probe:673: [QoS] table[3] mfc: 356000, int: 332000, mif: 1014000, bts_scen: default(0)\n[    1.604993] mfc-core 1c8d0000.MFC-0: mfc_core_probe:673: [QoS] table[4] mfc: 465000, int: 332000, mif: 1014000, bts_scen: default(0)\n[    1.604999] mfc-core 1c8d0000.MFC-0: mfc_core_probe:673: [QoS] table[5] mfc: 533000, int: 200000, mif: 1539000, bts_scen: default(0)\n[    1.605005] mfc-core 1c8d0000.MFC-0: mfc_core_probe:673: [QoS] table[6] mfc: 664000, int: 332000, mif: 1539000, bts_scen: mfc_uhd(1)\n[    1.605011] mfc-core 1c8d0000.MFC-0: mfc_core_probe:673: [QoS] table[7] mfc: 664000, int: 533000, mif: 1539000, bts_scen: mfc_uhd_10bit(2)\n[    1.605466] mfc-core 1c8d0000.MFC-0: mfc_client_pt_register:112: [SLC] PT Client Register success\n[    1.606512] mfc-core 1c8d0000.MFC-0: mfc_core_probe is completed\n[    1.606561] s5p-mfc mfc: mfc_probe is completed\n[    1.607290] exynos-jpeg 1c700000.smfc: has sysmmu 1c710000.sysmmu (total count:1)\n[    1.607332] exynos-jpeg 1c700000.smfc: Adding to iommu group 6\n[    1.607417] exynos-jpeg 1c700000.smfc: attached with pgtable 0x0000000088840000\n[    1.607577] exynos-jpeg 1c700000.smfc: device ID is not declared: unique device\n[    1.607802] exynos-jpeg 1c700000.smfc: Probed H/W Version: 15.01.2015\n[    1.608206] odpm: s2mpg12-odpm: init\n[    1.608367] odpm: Configuring S2MPG12...\n[    1.608647] odpm: S2MPG12: Applied new sampling frequency (type 0) in Hz: 125.000000\n[    1.608789] odpm: S2MPG12: Applied new sampling frequency (type 1) in Hz: 31.250000\n[    1.608793] odpm: S2MPG12: CH0=VSYS_PWR_MMWAVE\n[    1.608799] s2mpg12-meter s2mpg12-meter: CH0, VSEN_C1\n[    1.608935] odpm: S2MPG12: CH1=VSYS_PWR_MODEM\n[    1.608940] s2mpg12-meter s2mpg12-meter: CH1, VSEN_C2\n[    1.609077] odpm: S2MPG12: CH2=VSYS_PWR_RFFE\n[    1.609081] s2mpg12-meter s2mpg12-meter: CH2, VSEN_C3\n[    1.609213] odpm: S2MPG12: CH3=S1M_VDD_MIF\n[    1.609219] s2mpg12-meter s2mpg12-meter: CH3, BUCK1M\n[    1.609350] odpm: S2MPG12: CH4=S2M_VDD_CPUCL2\n[    1.609355] s2mpg12-meter s2mpg12-meter: CH4, BUCK2M\n[    1.609488] odpm: S2MPG12: CH5=S3M_VDD_CPUCL1\n[    1.609494] s2mpg12-meter s2mpg12-meter: CH5, BUCK3M\n[    1.609625] odpm: S2MPG12: CH6=S4M_VDD_CPUCL0\n[    1.609630] s2mpg12-meter s2mpg12-meter: CH6, BUCK4M\n[    1.609763] odpm: S2MPG12: CH7=S5M_VDD_INT\n[    1.609768] s2mpg12-meter s2mpg12-meter: CH7, BUCK5M\n[    1.609899] odpm: S2MPG12: CH8=S8M_LLDO2\n[    1.609904] s2mpg12-meter s2mpg12-meter: CH8, BUCK8M\n[    1.610038] odpm: S2MPG12: CH9=L15M_VDD_SLC_M\n[    1.610044] s2mpg12-meter s2mpg12-meter: CH9, LDO15M\n[    1.610176] odpm: S2MPG12: CH10=S10M_VDD_TPU\n[    1.610180] s2mpg12-meter s2mpg12-meter: CH10, BUCK10M\n[    1.610314] odpm: S2MPG12: CH11=S6M_LLDO1\n[    1.610319] s2mpg12-meter s2mpg12-meter: CH11, BUCK6M\n[    1.610589] s2mpg12-meter s2mpg12-meter: s2mpg12 external meter off\n[    1.610850] s2mpg12-meter s2mpg12-meter: s2mpg12 meter on\n[    1.610983] s2mpg12-meter s2mpg12-meter: s2mpg12 external meter on\n[    1.611116] odpm: Configuring S2MPG12...done\n[    1.612943] odpm: S2MPG12: Starting at timestamp (ms): 1604\n[    1.613223] odpm: s2mpg12-odpm: init completed\n[    1.613263] odpm: s2mpg13-odpm: init\n[    1.613435] odpm: Configuring S2MPG13...\n[    1.613605] odpm: S2MPG13: Applied new sampling frequency (type 0) in Hz: 125.000000\n[    1.613743] odpm: S2MPG13: Applied new sampling frequency (type 1) in Hz: 31.250000\n[    1.613747] odpm: S2MPG13: CH0=VSYS_PWR_DISPLAY\n[    1.613752] s2mpg13-meter s2mpg13-meter: CH0, VSEN_C4\n[    1.613888] odpm: S2MPG13: CH1=VSYS_PWR_WLAN_BT\n[    1.613893] s2mpg13-meter s2mpg13-meter: CH1, VSEN_C5\n[    1.614024] odpm: S2MPG13: CH2=L9S_GNSS_CORE\n[    1.614030] s2mpg13-meter s2mpg13-meter: CH2, LDO9S\n[    1.614163] odpm: S2MPG13: CH3=S1S_VDD_CAM\n[    1.614169] s2mpg13-meter s2mpg13-meter: CH3, BUCK1S\n[    1.614300] odpm: S2MPG13: CH4=S2S_VDD_G3D\n[    1.614306] s2mpg13-meter s2mpg13-meter: CH4, BUCK2S\n[    1.614440] odpm: S2MPG13: CH5=S4S_VDD2H_MEM\n[    1.614445] s2mpg13-meter s2mpg13-meter: CH5, BUCK4S\n[    1.614579] odpm: S2MPG13: CH6=S5S_VDDQ_MEM\n[    1.614585] s2mpg13-meter s2mpg13-meter: CH6, BUCK5S\n[    1.614720] odpm: S2MPG13: CH7=S8S_VDD_G3D_L2\n[    1.614725] s2mpg13-meter s2mpg13-meter: CH7, BUCK8S\n[    1.614859] odpm: S2MPG13: CH8=S9S_VDD_AOC\n[    1.614864] s2mpg13-meter s2mpg13-meter: CH8, BUCK9S\n[    1.614996] odpm: S2MPG13: CH9=L7S_SENSORS\n[    1.615002] s2mpg13-meter s2mpg13-meter: CH9, LDO7S\n[    1.615136] odpm: S2MPG13: CH10=L14S_ALIVE\n[    1.615141] s2mpg13-meter s2mpg13-meter: CH10, LDO14S\n[    1.615272] odpm: S2MPG13: CH11=L2S_PLL_MIPI_UFS\n[    1.615279] s2mpg13-meter s2mpg13-meter: CH11, LDO2S\n[    1.615543] s2mpg13-meter s2mpg13-meter: s2mpg13 external meter off\n[    1.615806] s2mpg13_meter_onoff: s2mpg13 meter on\n[    1.615941] s2mpg13-meter s2mpg13-meter: s2mpg13 external meter on\n[    1.616074] odpm: Configuring S2MPG13...done\n[    1.617108] odpm: S2MPG13: Starting at timestamp (ms): 1609\n[    1.617356] odpm: s2mpg13-odpm: init completed\n[    1.617569] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: DMA mask not set\n[    1.617759] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: Registering 0 sensor\n[    1.618722] thermal thermal_zone33: Failed to set trips: -11\n[    1.618738] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: Registering 1 sensor\n[    1.619080] thermal thermal_zone34: Failed to set trips: -11\n[    1.619230] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: Set sensor 1 hot trip(mdegC):59000, ret:0\n[    1.619235] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: Registering 2 sensor\n[    1.619579] thermal thermal_zone35: Failed to set trips: -11\n[    1.619592] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: Registering 3 sensor\n[    1.619939] thermal thermal_zone36: Failed to set trips: -11\n[    1.619950] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: Registering 4 sensor\n[    1.620299] thermal thermal_zone37: Failed to set trips: -11\n[    1.620312] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: Registering 5 sensor\n[    1.620662] thermal thermal_zone38: Failed to set trips: -11\n[    1.620676] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: Registering 6 sensor\n[    1.621027] thermal thermal_zone39: Failed to set trips: -11\n[    1.621040] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: Registering 7 sensor\n[    1.621395] thermal thermal_zone40: Failed to set trips: -11\n[    1.642054] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: probe done, now wait for sensors\n[    1.642193] softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)\n[    1.642197] softdog:              soft_reboot_cmd=<not set> soft_active_on_boot=0\n[    1.642425] cpu cpu0: EM: created perf domain\n[    1.642430] exynos_acme: Complete to initialize cpufreq-domain0\n[    1.642434] exynos_acme: CPUFREQ of domain0 cal-id : 0xb040002\n[    1.642440] exynos_acme: CPUFREQ of domain0 sibling cpus : 0-3\n[    1.642443] exynos_acme: CPUFREQ of domain0 boot freq = 1197000 kHz, resume freq = 1197000 kHz\n[    1.642447] exynos_acme: CPUFREQ of domain0 max freq : 1803000 kHz, min freq : 300000 kHz\n[    1.642449] exynos_acme: CPUFREQ of domain0 table size = 11\n[    1.642453] exynos_acme: CPUFREQ of domain0 : L0    300000 kHz\n[    1.642459] exynos_acme: CPUFREQ of domain0 : L1    574000 kHz\n[    1.642462] exynos_acme: CPUFREQ of domain0 : L2    738000 kHz\n[    1.642465] exynos_acme: CPUFREQ of domain0 : L3    930000 kHz\n[    1.642468] exynos_acme: CPUFREQ of domain0 : L4   1098000 kHz\n[    1.642471] exynos_acme: CPUFREQ of domain0 : L5   1197000 kHz\n[    1.642474] exynos_acme: CPUFREQ of domain0 : L6   1328000 kHz\n[    1.642478] exynos_acme: CPUFREQ of domain0 : L7   1401000 kHz\n[    1.642482] exynos_acme: CPUFREQ of domain0 : L8   1598000 kHz\n[    1.642485] exynos_acme: CPUFREQ of domain0 : L9   1704000 kHz\n[    1.642488] exynos_acme: CPUFREQ of domain0 : L10  1803000 kHz\n[    1.642589] cpu cpu4: EM: created perf domain\n[    1.642593] exynos_acme: Complete to initialize cpufreq-domain1\n[    1.642597] exynos_acme: CPUFREQ of domain1 cal-id : 0xb040003\n[    1.642601] exynos_acme: CPUFREQ of domain1 sibling cpus : 4-5\n[    1.642604] exynos_acme: CPUFREQ of domain1 boot freq = 1197000 kHz, resume freq = 1491000 kHz\n[    1.642608] exynos_acme: CPUFREQ of domain1 max freq : 2348000 kHz, min freq : 400000 kHz\n[    1.642611] exynos_acme: CPUFREQ of domain1 table size = 15\n[    1.642615] exynos_acme: CPUFREQ of domain1 : L0    400000 kHz\n[    1.642618] exynos_acme: CPUFREQ of domain1 : L1    553000 kHz\n[    1.642622] exynos_acme: CPUFREQ of domain1 : L2    696000 kHz\n[    1.642625] exynos_acme: CPUFREQ of domain1 : L3    799000 kHz\n[    1.642629] exynos_acme: CPUFREQ of domain1 : L4    910000 kHz\n[    1.642632] exynos_acme: CPUFREQ of domain1 : L5   1024000 kHz\n[    1.642635] exynos_acme: CPUFREQ of domain1 : L6   1197000 kHz\n[    1.642638] exynos_acme: CPUFREQ of domain1 : L7   1328000 kHz\n[    1.642641] exynos_acme: CPUFREQ of domain1 : L8   1491000 kHz\n[    1.642645] exynos_acme: CPUFREQ of domain1 : L9   1663000 kHz\n[    1.642648] exynos_acme: CPUFREQ of domain1 : L10  1836000 kHz\n[    1.642651] exynos_acme: CPUFREQ of domain1 : L11  1999000 kHz\n[    1.642654] exynos_acme: CPUFREQ of domain1 : L12  2130000 kHz\n[    1.642657] exynos_acme: CPUFREQ of domain1 : L13  2253000 kHz\n[    1.642660] exynos_acme: CPUFREQ of domain1 : L14  2348000 kHz\n[    1.642774] cpu cpu6: EM: created perf domain\n[    1.642778] exynos_acme: Complete to initialize cpufreq-domain2\n[    1.642781] exynos_acme: CPUFREQ of domain2 cal-id : 0xb040004\n[    1.642784] exynos_acme: CPUFREQ of domain2 sibling cpus : 6-7\n[    1.642787] exynos_acme: CPUFREQ of domain2 boot freq = 1106000 kHz, resume freq = 1826000 kHz\n[    1.642791] exynos_acme: CPUFREQ of domain2 max freq : 2850000 kHz, min freq : 500000 kHz\n[    1.642795] exynos_acme: CPUFREQ of domain2 table size = 18\n[    1.642798] exynos_acme: CPUFREQ of domain2 : L0    500000 kHz\n[    1.642801] exynos_acme: CPUFREQ of domain2 : L1    851000 kHz\n[    1.642804] exynos_acme: CPUFREQ of domain2 : L2    984000 kHz\n[    1.642807] exynos_acme: CPUFREQ of domain2 : L3   1106000 kHz\n[    1.642810] exynos_acme: CPUFREQ of domain2 : L4   1277000 kHz\n[    1.642813] exynos_acme: CPUFREQ of domain2 : L5   1426000 kHz\n[    1.642817] exynos_acme: CPUFREQ of domain2 : L6   1582000 kHz\n[    1.642820] exynos_acme: CPUFREQ of domain2 : L7   1745000 kHz\n[    1.642823] exynos_acme: CPUFREQ of domain2 : L8   1826000 kHz\n[    1.642826] exynos_acme: CPUFREQ of domain2 : L9   2048000 kHz\n[    1.642829] exynos_acme: CPUFREQ of domain2 : L10  2188000 kHz\n[    1.642833] exynos_acme: CPUFREQ of domain2 : L11  2252000 kHz\n[    1.642836] exynos_acme: CPUFREQ of domain2 : L12  2401000 kHz\n[    1.642839] exynos_acme: CPUFREQ of domain2 : L13  2507000 kHz\n[    1.642842] exynos_acme: CPUFREQ of domain2 : L14  2630000 kHz\n[    1.642845] exynos_acme: CPUFREQ of domain2 : L15  2704000 kHz\n[    1.642849] exynos_acme: CPUFREQ of domain2 : L16  2802000 kHz\n[    1.642852] exynos_acme: CPUFREQ of domain2 : L17  2850000 kHz\n[    1.642908] exynos_acme: CPUFREQ domain0 registered\n[    1.643021] exynos_acme: CPUFREQ domain1 registered\n[    1.643033] cpif: tpmon_cpufreq_nb: freq_qos_add_request for cpu4 min\n[    1.643116] exynos_acme: CPUFREQ domain2 registered\n[    1.643218] cpu_cooling 0: freq:1803000 KHz\n[    1.643221] cpu_cooling 0: freq:1704000 KHz\n[    1.643224] cpu_cooling 0: freq:1598000 KHz\n[    1.643227] cpu_cooling 0: freq:1401000 KHz\n[    1.643230] cpu_cooling 0: freq:1328000 KHz\n[    1.643236] cpu_cooling 0: freq:1197000 KHz\n[    1.643239] cpu_cooling 0: freq:1098000 KHz\n[    1.643242] cpu_cooling 0: freq:930000 KHz\n[    1.643245] cpu_cooling 0: freq:738000 KHz\n[    1.643248] cpu_cooling 0: freq:574000 KHz\n[    1.643252] cpu_cooling 0: freq:300000 KHz\n[    1.643260] cpu_cooling 0: freq:1803000 power: 129, mV: 900, cap: 89\n[    1.643265] cpu_cooling 0: freq:1704000 power: 114, mV: 868, cap: 89\n[    1.643271] cpu_cooling 0: freq:1598000 power: 98, mV: 831, cap: 89\n[    1.643276] cpu_cooling 0: freq:1401000 power: 74, mV: 775, cap: 89\n[    1.643281] cpu_cooling 0: freq:1328000 power: 66, mV: 750, cap: 89\n[    1.643286] cpu_cooling 0: freq:1197000 power: 54, mV: 718, cap: 89\n[    1.643290] cpu_cooling 0: freq:1098000 power: 46, mV: 693, cap: 89\n[    1.643295] cpu_cooling 0: freq:930000 power: 35, mV: 656, cap: 89\n[    1.643300] cpu_cooling 0: freq:738000 power: 25, mV: 618, cap: 89\n[    1.643305] cpu_cooling 0: freq:574000 power: 17, mV: 593, cap: 89\n[    1.643311] cpu_cooling 0: freq:300000 power: 7, mV: 543, cap: 89\n[    1.643337] build_static_power_table: Failed to get param table from ECT\n[    1.643453] parse_ect_cooling_level: (LITTLE, 0)instance isn't valid\n[    1.643458] cpu cooling registered for cpu: 0, capacitance: 89, power_callback: true, static_power: false\n[    1.643466] exynos_acme: Skipping boot pm_qos domain0\n[    1.643555] cpu_cooling 4: freq:2348000 KHz\n[    1.643558] cpu_cooling 4: freq:2253000 KHz\n[    1.643562] cpu_cooling 4: freq:2130000 KHz\n[    1.643565] cpu_cooling 4: freq:1999000 KHz\n[    1.643569] cpu_cooling 4: freq:1836000 KHz\n[    1.643572] cpu_cooling 4: freq:1663000 KHz\n[    1.643575] cpu_cooling 4: freq:1491000 KHz\n[    1.643577] cpu_cooling 4: freq:1328000 KHz\n[    1.643580] cpu_cooling 4: freq:1197000 KHz\n[    1.643583] cpu_cooling 4: freq:1024000 KHz\n[    1.643586] cpu_cooling 4: freq:910000 KHz\n[    1.643589] cpu_cooling 4: freq:799000 KHz\n[    1.643591] cpu_cooling 4: freq:696000 KHz\n[    1.643594] cpu_cooling 4: freq:553000 KHz\n[    1.643597] cpu_cooling 4: freq:400000 KHz\n[    1.643603] cpu_cooling 4: freq:2348000 power: 1233, mV: 1012, cap: 513\n[    1.643608] cpu_cooling 4: freq:2253000 power: 1083, mV: 968, cap: 513\n[    1.643612] cpu_cooling 4: freq:2130000 power: 920, mV: 918, cap: 513\n[    1.643617] cpu_cooling 4: freq:1999000 power: 772, mV: 868, cap: 513\n[    1.643622] cpu_cooling 4: freq:1836000 power: 630, mV: 818, cap: 513\n[    1.643627] cpu_cooling 4: freq:1663000 power: 512, mV: 775, cap: 513\n[    1.643632] cpu_cooling 4: freq:1491000 power: 408, mV: 731, cap: 513\n[    1.643637] cpu_cooling 4: freq:1328000 power: 321, mV: 687, cap: 513\n[    1.643641] cpu_cooling 4: freq:1197000 power: 269, mV: 662, cap: 513\n[    1.643646] cpu_cooling 4: freq:1024000 power: 205, mV: 625, cap: 513\n[    1.643650] cpu_cooling 4: freq:910000 power: 171, mV: 606, cap: 513\n[    1.643654] cpu_cooling 4: freq:799000 power: 138, mV: 581, cap: 513\n[    1.643660] cpu_cooling 4: freq:696000 power: 112, mV: 562, cap: 513\n[    1.643665] cpu_cooling 4: freq:553000 power: 81, mV: 537, cap: 513\n[    1.643670] cpu_cooling 4: freq:400000 power: 52, mV: 506, cap: 513\n[    1.643772] cpu cooling registered for cpu: 4, capacitance: 513, power_callback: true, static_power: true\n[    1.643795] exynos_acme: Skipping boot pm_qos domain1\n[    1.643885] cpu_cooling 6: freq:2850000 KHz\n[    1.643888] cpu_cooling 6: freq:2802000 KHz\n[    1.643892] cpu_cooling 6: freq:2704000 KHz\n[    1.643895] cpu_cooling 6: freq:2630000 KHz\n[    1.643898] cpu_cooling 6: freq:2507000 KHz\n[    1.643900] cpu_cooling 6: freq:2401000 KHz\n[    1.643903] cpu_cooling 6: freq:2252000 KHz\n[    1.643906] cpu_cooling 6: freq:2188000 KHz\n[    1.643909] cpu_cooling 6: freq:2048000 KHz\n[    1.643912] cpu_cooling 6: freq:1826000 KHz\n[    1.643915] cpu_cooling 6: freq:1745000 KHz\n[    1.643918] cpu_cooling 6: freq:1582000 KHz\n[    1.643921] cpu_cooling 6: freq:1426000 KHz\n[    1.643923] cpu_cooling 6: freq:1277000 KHz\n[    1.643927] cpu_cooling 6: freq:1106000 KHz\n[    1.643930] cpu_cooling 6: freq:984000 KHz\n[    1.643933] cpu_cooling 6: freq:851000 KHz\n[    1.643936] cpu_cooling 6: freq:500000 KHz\n[    1.643941] cpu_cooling 6: freq:2850000 power: 2577, mV: 1093, cap: 757\n[    1.643947] cpu_cooling 6: freq:2802000 power: 2419, mV: 1068, cap: 757\n[    1.643952] cpu_cooling 6: freq:2704000 power: 2150, mV: 1025, cap: 757\n[    1.643956] cpu_cooling 6: freq:2630000 power: 1939, mV: 987, cap: 757\n[    1.643961] cpu_cooling 6: freq:2507000 power: 1687, mV: 943, cap: 757\n[    1.643968] cpu_cooling 6: freq:2401000 power: 1491, mV: 906, cap: 757\n[    1.643972] cpu_cooling 6: freq:2252000 power: 1249, mV: 856, cap: 757\n[    1.643977] cpu_cooling 6: freq:2188000 power: 1160, mV: 837, cap: 757\n[    1.643981] cpu_cooling 6: freq:2048000 power: 992, mV: 800, cap: 757\n[    1.643985] cpu_cooling 6: freq:1826000 power: 777, mV: 750, cap: 757\n[    1.643990] cpu_cooling 6: freq:1745000 power: 717, mV: 737, cap: 757\n[    1.643994] cpu_cooling 6: freq:1582000 power: 596, mV: 706, cap: 757\n[    1.643998] cpu_cooling 6: freq:1426000 power: 491, mV: 675, cap: 757\n[    1.644002] cpu_cooling 6: freq:1277000 power: 392, mV: 637, cap: 757\n[    1.644007] cpu_cooling 6: freq:1106000 power: 301, mV: 600, cap: 757\n[    1.644012] cpu_cooling 6: freq:984000 power: 246, mV: 575, cap: 757\n[    1.644017] cpu_cooling 6: freq:851000 power: 194, mV: 550, cap: 757\n[    1.644022] cpu_cooling 6: freq:500000 power: 94, mV: 500, cap: 757\n[    1.644127] cpu cooling registered for cpu: 6, capacitance: 757, power_callback: true, static_power: true\n[    1.644148] exynos_acme: Skipping boot pm_qos domain2\n[    1.644223] exynos_acme: Initialized Exynos cpufreq driver\n[    1.645223] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu0_memlat@17000010: DEVFREQ :  3172000Khz,        0uV\n[    1.645231] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu0_memlat@17000010: DEVFREQ :  2730000Khz,        0uV\n[    1.645238] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu0_memlat@17000010: DEVFREQ :  2535000Khz,        0uV\n[    1.645245] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu0_memlat@17000010: DEVFREQ :  2288000Khz,        0uV\n[    1.645251] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu0_memlat@17000010: DEVFREQ :  2028000Khz,        0uV\n[    1.645257] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu0_memlat@17000010: DEVFREQ :  1716000Khz,        0uV\n[    1.645264] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu0_memlat@17000010: DEVFREQ :  1539000Khz,        0uV\n[    1.645270] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu0_memlat@17000010: DEVFREQ :  1352000Khz,        0uV\n[    1.645276] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu0_memlat@17000010: DEVFREQ :  1014000Khz,        0uV\n[    1.645283] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu0_memlat@17000010: DEVFREQ :   845000Khz,        0uV\n[    1.645290] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu0_memlat@17000010: DEVFREQ :   676000Khz,        0uV\n[    1.645297] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu0_memlat@17000010: DEVFREQ :   546000Khz,        0uV\n[    1.645303] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu0_memlat@17000010: DEVFREQ :   421000Khz,        0uV\n[    1.645311] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu0_memlat@17000010: max_freq: 2147483647Khz, get_max_freq: 3172000Khz\n[    1.645317] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu0_memlat@17000010: min_freq: 0Khz, get_min_freq: 421000Khz\n[    1.645324] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu0_memlat@17000010: min_freq: 421000Khz, max_freq: 3172000Khz\n[    1.645330] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu0_memlat@17000010: initial_freq: 3172000Khz, suspend_freq: 421000Khz\n[    1.645504] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu0_memlat@17000010: devfreq is initialized!!\n[    1.645703] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu1_memlat@17000010: DEVFREQ :  3172000Khz,        0uV\n[    1.645710] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu1_memlat@17000010: DEVFREQ :  2730000Khz,        0uV\n[    1.645717] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu1_memlat@17000010: DEVFREQ :  2535000Khz,        0uV\n[    1.645725] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu1_memlat@17000010: DEVFREQ :  2288000Khz,        0uV\n[    1.645732] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu1_memlat@17000010: DEVFREQ :  2028000Khz,        0uV\n[    1.645739] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu1_memlat@17000010: DEVFREQ :  1716000Khz,        0uV\n[    1.645749] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu1_memlat@17000010: DEVFREQ :  1539000Khz,        0uV\n[    1.645755] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu1_memlat@17000010: DEVFREQ :  1352000Khz,        0uV\n[    1.645762] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu1_memlat@17000010: DEVFREQ :  1014000Khz,        0uV\n[    1.645768] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu1_memlat@17000010: DEVFREQ :   845000Khz,        0uV\n[    1.645774] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu1_memlat@17000010: DEVFREQ :   676000Khz,        0uV\n[    1.645780] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu1_memlat@17000010: DEVFREQ :   546000Khz,        0uV\n[    1.645787] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu1_memlat@17000010: DEVFREQ :   421000Khz,        0uV\n[    1.645792] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu1_memlat@17000010: max_freq: 2147483647Khz, get_max_freq: 3172000Khz\n[    1.645798] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu1_memlat@17000010: min_freq: 0Khz, get_min_freq: 421000Khz\n[    1.645804] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu1_memlat@17000010: min_freq: 421000Khz, max_freq: 3172000Khz\n[    1.645810] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu1_memlat@17000010: initial_freq: 3172000Khz, suspend_freq: 421000Khz\n[    1.646155] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu1_memlat@17000010: devfreq is initialized!!\n[    1.646359] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu2_memlat@17000010: DEVFREQ :  3172000Khz,        0uV\n[    1.646365] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu2_memlat@17000010: DEVFREQ :  2730000Khz,        0uV\n[    1.646372] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu2_memlat@17000010: DEVFREQ :  2535000Khz,        0uV\n[    1.646378] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu2_memlat@17000010: DEVFREQ :  2288000Khz,        0uV\n[    1.646385] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu2_memlat@17000010: DEVFREQ :  2028000Khz,        0uV\n[    1.646392] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu2_memlat@17000010: DEVFREQ :  1716000Khz,        0uV\n[    1.646399] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu2_memlat@17000010: DEVFREQ :  1539000Khz,        0uV\n[    1.646406] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu2_memlat@17000010: DEVFREQ :  1352000Khz,        0uV\n[    1.646412] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu2_memlat@17000010: DEVFREQ :  1014000Khz,        0uV\n[    1.646418] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu2_memlat@17000010: DEVFREQ :   845000Khz,        0uV\n[    1.646425] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu2_memlat@17000010: DEVFREQ :   676000Khz,        0uV\n[    1.646431] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu2_memlat@17000010: DEVFREQ :   546000Khz,        0uV\n[    1.646458] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu2_memlat@17000010: DEVFREQ :   421000Khz,        0uV\n[    1.646465] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu2_memlat@17000010: max_freq: 2147483647Khz, get_max_freq: 3172000Khz\n[    1.646472] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu2_memlat@17000010: min_freq: 0Khz, get_min_freq: 421000Khz\n[    1.646479] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu2_memlat@17000010: min_freq: 421000Khz, max_freq: 3172000Khz\n[    1.646486] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu2_memlat@17000010: initial_freq: 3172000Khz, suspend_freq: 421000Khz\n[    1.646799] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu2_memlat@17000010: devfreq is initialized!!\n[    1.646999] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu3_memlat@17000010: DEVFREQ :  3172000Khz,        0uV\n[    1.647006] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu3_memlat@17000010: DEVFREQ :  2730000Khz,        0uV\n[    1.647013] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu3_memlat@17000010: DEVFREQ :  2535000Khz,        0uV\n[    1.647021] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu3_memlat@17000010: DEVFREQ :  2288000Khz,        0uV\n[    1.647031] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu3_memlat@17000010: DEVFREQ :  2028000Khz,        0uV\n[    1.647040] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu3_memlat@17000010: DEVFREQ :  1716000Khz,        0uV\n[    1.647046] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu3_memlat@17000010: DEVFREQ :  1539000Khz,        0uV\n[    1.647053] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu3_memlat@17000010: DEVFREQ :  1352000Khz,        0uV\n[    1.647059] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu3_memlat@17000010: DEVFREQ :  1014000Khz,        0uV\n[    1.647065] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu3_memlat@17000010: DEVFREQ :   845000Khz,        0uV\n[    1.647072] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu3_memlat@17000010: DEVFREQ :   676000Khz,        0uV\n[    1.647079] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu3_memlat@17000010: DEVFREQ :   546000Khz,        0uV\n[    1.647085] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu3_memlat@17000010: DEVFREQ :   421000Khz,        0uV\n[    1.647092] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu3_memlat@17000010: max_freq: 2147483647Khz, get_max_freq: 3172000Khz\n[    1.647099] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu3_memlat@17000010: min_freq: 0Khz, get_min_freq: 421000Khz\n[    1.647105] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu3_memlat@17000010: min_freq: 421000Khz, max_freq: 3172000Khz\n[    1.647111] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu3_memlat@17000010: initial_freq: 3172000Khz, suspend_freq: 421000Khz\n[    1.647419] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu3_memlat@17000010: devfreq is initialized!!\n[    1.647618] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu4_memlat@17000010: DEVFREQ :  3172000Khz,        0uV\n[    1.647626] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu4_memlat@17000010: DEVFREQ :  2730000Khz,        0uV\n[    1.647633] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu4_memlat@17000010: DEVFREQ :  2535000Khz,        0uV\n[    1.647640] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu4_memlat@17000010: DEVFREQ :  2288000Khz,        0uV\n[    1.647647] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu4_memlat@17000010: DEVFREQ :  2028000Khz,        0uV\n[    1.647654] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu4_memlat@17000010: DEVFREQ :  1716000Khz,        0uV\n[    1.647660] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu4_memlat@17000010: DEVFREQ :  1539000Khz,        0uV\n[    1.647667] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu4_memlat@17000010: DEVFREQ :  1352000Khz,        0uV\n[    1.647673] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu4_memlat@17000010: DEVFREQ :  1014000Khz,        0uV\n[    1.647680] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu4_memlat@17000010: DEVFREQ :   845000Khz,        0uV\n[    1.647686] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu4_memlat@17000010: DEVFREQ :   676000Khz,        0uV\n[    1.647693] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu4_memlat@17000010: DEVFREQ :   546000Khz,        0uV\n[    1.647700] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu4_memlat@17000010: DEVFREQ :   421000Khz,        0uV\n[    1.647706] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu4_memlat@17000010: max_freq: 2147483647Khz, get_max_freq: 3172000Khz\n[    1.647712] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu4_memlat@17000010: min_freq: 0Khz, get_min_freq: 421000Khz\n[    1.647717] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu4_memlat@17000010: min_freq: 421000Khz, max_freq: 3172000Khz\n[    1.647724] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu4_memlat@17000010: initial_freq: 3172000Khz, suspend_freq: 421000Khz\n[    1.648287] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu4_memlat@17000010: devfreq is initialized!!\n[    1.648489] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu5_memlat@17000010: DEVFREQ :  3172000Khz,        0uV\n[    1.648501] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu5_memlat@17000010: DEVFREQ :  2730000Khz,        0uV\n[    1.648508] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu5_memlat@17000010: DEVFREQ :  2535000Khz,        0uV\n[    1.648515] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu5_memlat@17000010: DEVFREQ :  2288000Khz,        0uV\n[    1.648522] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu5_memlat@17000010: DEVFREQ :  2028000Khz,        0uV\n[    1.648528] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu5_memlat@17000010: DEVFREQ :  1716000Khz,        0uV\n[    1.648535] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu5_memlat@17000010: DEVFREQ :  1539000Khz,        0uV\n[    1.648545] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu5_memlat@17000010: DEVFREQ :  1352000Khz,        0uV\n[    1.648551] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu5_memlat@17000010: DEVFREQ :  1014000Khz,        0uV\n[    1.648558] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu5_memlat@17000010: DEVFREQ :   845000Khz,        0uV\n[    1.648564] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu5_memlat@17000010: DEVFREQ :   676000Khz,        0uV\n[    1.648571] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu5_memlat@17000010: DEVFREQ :   546000Khz,        0uV\n[    1.648578] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu5_memlat@17000010: DEVFREQ :   421000Khz,        0uV\n[    1.648584] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu5_memlat@17000010: max_freq: 2147483647Khz, get_max_freq: 3172000Khz\n[    1.648590] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu5_memlat@17000010: min_freq: 0Khz, get_min_freq: 421000Khz\n[    1.648596] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu5_memlat@17000010: min_freq: 421000Khz, max_freq: 3172000Khz\n[    1.648602] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu5_memlat@17000010: initial_freq: 3172000Khz, suspend_freq: 421000Khz\n[    1.649191] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu5_memlat@17000010: devfreq is initialized!!\n[    1.649395] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu6_memlat@17000010: DEVFREQ :  3172000Khz,        0uV\n[    1.649401] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu6_memlat@17000010: DEVFREQ :  2730000Khz,        0uV\n[    1.649409] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu6_memlat@17000010: DEVFREQ :  2535000Khz,        0uV\n[    1.649416] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu6_memlat@17000010: DEVFREQ :  2288000Khz,        0uV\n[    1.649422] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu6_memlat@17000010: DEVFREQ :  2028000Khz,        0uV\n[    1.649430] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu6_memlat@17000010: DEVFREQ :  1716000Khz,        0uV\n[    1.649436] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu6_memlat@17000010: DEVFREQ :  1539000Khz,        0uV\n[    1.649442] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu6_memlat@17000010: DEVFREQ :  1352000Khz,        0uV\n[    1.649449] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu6_memlat@17000010: DEVFREQ :  1014000Khz,        0uV\n[    1.649456] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu6_memlat@17000010: DEVFREQ :   845000Khz,        0uV\n[    1.649462] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu6_memlat@17000010: DEVFREQ :   676000Khz,        0uV\n[    1.649469] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu6_memlat@17000010: DEVFREQ :   546000Khz,        0uV\n[    1.649475] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu6_memlat@17000010: DEVFREQ :   421000Khz,        0uV\n[    1.649482] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu6_memlat@17000010: max_freq: 2147483647Khz, get_max_freq: 3172000Khz\n[    1.649488] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu6_memlat@17000010: min_freq: 0Khz, get_min_freq: 421000Khz\n[    1.649495] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu6_memlat@17000010: min_freq: 421000Khz, max_freq: 3172000Khz\n[    1.649501] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu6_memlat@17000010: initial_freq: 3172000Khz, suspend_freq: 421000Khz\n[    1.650091] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu6_memlat@17000010: devfreq is initialized!!\n[    1.650293] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu7_memlat@17000010: DEVFREQ :  3172000Khz,        0uV\n[    1.650300] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu7_memlat@17000010: DEVFREQ :  2730000Khz,        0uV\n[    1.650307] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu7_memlat@17000010: DEVFREQ :  2535000Khz,        0uV\n[    1.650314] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu7_memlat@17000010: DEVFREQ :  2288000Khz,        0uV\n[    1.650321] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu7_memlat@17000010: DEVFREQ :  2028000Khz,        0uV\n[    1.650327] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu7_memlat@17000010: DEVFREQ :  1716000Khz,        0uV\n[    1.650334] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu7_memlat@17000010: DEVFREQ :  1539000Khz,        0uV\n[    1.650340] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu7_memlat@17000010: DEVFREQ :  1352000Khz,        0uV\n[    1.650346] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu7_memlat@17000010: DEVFREQ :  1014000Khz,        0uV\n[    1.650355] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu7_memlat@17000010: DEVFREQ :   845000Khz,        0uV\n[    1.650361] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu7_memlat@17000010: DEVFREQ :   676000Khz,        0uV\n[    1.650369] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu7_memlat@17000010: DEVFREQ :   546000Khz,        0uV\n[    1.650375] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu7_memlat@17000010: DEVFREQ :   421000Khz,        0uV\n[    1.650381] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu7_memlat@17000010: max_freq: 2147483647Khz, get_max_freq: 3172000Khz\n[    1.650388] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu7_memlat@17000010: min_freq: 0Khz, get_min_freq: 421000Khz\n[    1.650395] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu7_memlat@17000010: min_freq: 421000Khz, max_freq: 3172000Khz\n[    1.650401] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu7_memlat@17000010: initial_freq: 3172000Khz, suspend_freq: 421000Khz\n[    1.650998] gs101-memlat-devfreq gs_memlat_devfreq:devfreq_mif_cpu7_memlat@17000010: devfreq is initialized!!\n[    1.652018] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: Applying NTC... disabling odpm [s2mpg13]\n[    1.654914] trusty-log trusty:log: /dev/trusty-log0 registered\n[    1.655469] trusty_ipc virtio0: vring0: va(id)  00000000e52fd086(ffffffc3) qsz 32 notifyid 1\n[    1.655507] trusty_ipc virtio0: vring1: va(id)  00000000bd79c14b(ffffffc4) qsz 32 notifyid 2\n[    1.657513] trusty-virtio trusty:virtio: initializing done\n[    1.657560] trusty_ipc virtio0: is online\n[    1.658406] usb_vendor_helper_init: AP suspend support is enabled\n[    1.659056] st33spi spi17.0: Loading st33spi driver, major: 508\n[    1.659103] st33spi spi17.0: st33spi_probe : TSU_NSS configuration be implemented!\n[    1.659107] st33spi spi17.0: Power mode: ST33\n[    1.659140] st33spi spi17.0: Default st33spi state: 0\n[    1.659144] st33spi spi17.0: st33spi: configure pinctrl: 0\n[    1.659454] st54spi spi10.0: Loading st54spi driver, major: 507\n[    1.659495] st54spi spi10.0: st54spi_probe : TSU_NSS configuration be implemented!\n[    1.659499] st54spi spi10.0: google-modules/nfc/ese/st54spi.c: Power mode: ST54J Combo\n[    1.660009] exynos_dpp_parse_dt: exynos-dpp[0]: attr(0x50047), port(0)\n[    1.660013] dpp_print_restriction: exynos-dpp[0]: src_f_w[16 65534 1] src_f_h[16 8190 1]\n[    1.660018] dpp_print_restriction: exynos-dpp[0]: src_w[16 4096 1] src_h[16 4096 1] src_x_y_align[1 1]\n[    1.660022] dpp_print_restriction: exynos-dpp[0]: dst_f_w[16 8190 1] dst_f_h[16 8190 1]\n[    1.660025] dpp_print_restriction: exynos-dpp[0]: dst_w[16 4096 1] dst_h[16 4096 1] dst_x_y_align[1 1]\n[    1.660029] dpp_print_restriction: exynos-dpp[0]: blk_w[4 4096 1] blk_h[4 4096 1] blk_x_y_align[1 1]\n[    1.660031] dpp_print_restriction: exynos-dpp[0]: src_h_rot_max[2160]\n[    1.660033] dpp_print_restriction: exynos-dpp[0]: max scale up(1x), down(1/1x) ratio\n[    1.660056] dpp_init_resources: exynos-dpp[0]: dma irq no = 147\n[    1.660099] dpp_init_resources: exynos-dpp[0]: dpp irq no = 148\n[    1.660131] dpp_probe: exynos-dpp[0]: successfully probed\n[    1.660378] exynos_dpp_parse_dt: exynos-dpp[1]: attr(0x50c7f), port(0)\n[    1.660382] dpp_print_restriction: exynos-dpp[1]: src_f_w[16 65534 1] src_f_h[16 8190 1]\n[    1.660386] dpp_print_restriction: exynos-dpp[1]: src_w[16 4096 1] src_h[16 4096 1] src_x_y_align[1 1]\n[    1.660391] dpp_print_restriction: exynos-dpp[1]: dst_f_w[16 8190 1] dst_f_h[16 8190 1]\n[    1.660395] dpp_print_restriction: exynos-dpp[1]: dst_w[16 4096 1] dst_h[16 4096 1] dst_x_y_align[1 1]\n[    1.660400] dpp_print_restriction: exynos-dpp[1]: blk_w[4 4096 1] blk_h[4 4096 1] blk_x_y_align[1 1]\n[    1.660402] dpp_print_restriction: exynos-dpp[1]: src_h_rot_max[2160]\n[    1.660405] dpp_print_restriction: exynos-dpp[1]: max scale up(8x), down(1/4x) ratio\n[    1.660423] dpp_init_resources: exynos-dpp[1]: dma irq no = 149\n[    1.660459] dpp_init_resources: exynos-dpp[1]: dpp irq no = 150\n[    1.660491] dpp_probe: exynos-dpp[1]: successfully probed\n[    1.660735] exynos_dpp_parse_dt: exynos-dpp[2]: attr(0x50047), port(1)\n[    1.660739] dpp_print_restriction: exynos-dpp[2]: src_f_w[16 65534 1] src_f_h[16 8190 1]\n[    1.660743] dpp_print_restriction: exynos-dpp[2]: src_w[16 4096 1] src_h[16 4096 1] src_x_y_align[1 1]\n[    1.660747] dpp_print_restriction: exynos-dpp[2]: dst_f_w[16 8190 1] dst_f_h[16 8190 1]\n[    1.660751] dpp_print_restriction: exynos-dpp[2]: dst_w[16 4096 1] dst_h[16 4096 1] dst_x_y_align[1 1]\n[    1.660756] dpp_print_restriction: exynos-dpp[2]: blk_w[4 4096 1] blk_h[4 4096 1] blk_x_y_align[1 1]\n[    1.660759] dpp_print_restriction: exynos-dpp[2]: src_h_rot_max[2160]\n[    1.660761] dpp_print_restriction: exynos-dpp[2]: max scale up(1x), down(1/1x) ratio\n[    1.660779] dpp_init_resources: exynos-dpp[2]: dma irq no = 151\n[    1.660817] dpp_init_resources: exynos-dpp[2]: dpp irq no = 152\n[    1.660845] dpp_probe: exynos-dpp[2]: successfully probed\n[    1.661088] exynos_dpp_parse_dt: exynos-dpp[3]: attr(0x50c7f), port(1)\n[    1.661092] dpp_print_restriction: exynos-dpp[3]: src_f_w[16 65534 1] src_f_h[16 8190 1]\n[    1.661096] dpp_print_restriction: exynos-dpp[3]: src_w[16 4096 1] src_h[16 4096 1] src_x_y_align[1 1]\n[    1.661100] dpp_print_restriction: exynos-dpp[3]: dst_f_w[16 8190 1] dst_f_h[16 8190 1]\n[    1.661104] dpp_print_restriction: exynos-dpp[3]: dst_w[16 4096 1] dst_h[16 4096 1] dst_x_y_align[1 1]\n[    1.661108] dpp_print_restriction: exynos-dpp[3]: blk_w[4 4096 1] blk_h[4 4096 1] blk_x_y_align[1 1]\n[    1.661110] dpp_print_restriction: exynos-dpp[3]: src_h_rot_max[2160]\n[    1.661112] dpp_print_restriction: exynos-dpp[3]: max scale up(8x), down(1/4x) ratio\n[    1.661130] dpp_init_resources: exynos-dpp[3]: dma irq no = 153\n[    1.661170] dpp_init_resources: exynos-dpp[3]: dpp irq no = 154\n[    1.661197] dpp_probe: exynos-dpp[3]: successfully probed\n[    1.661442] exynos_dpp_parse_dt: exynos-dpp[4]: attr(0x50047), port(2)\n[    1.661446] dpp_print_restriction: exynos-dpp[4]: src_f_w[16 65534 1] src_f_h[16 8190 1]\n[    1.661450] dpp_print_restriction: exynos-dpp[4]: src_w[16 4096 1] src_h[16 4096 1] src_x_y_align[1 1]\n[    1.661454] dpp_print_restriction: exynos-dpp[4]: dst_f_w[16 8190 1] dst_f_h[16 8190 1]\n[    1.661458] dpp_print_restriction: exynos-dpp[4]: dst_w[16 4096 1] dst_h[16 4096 1] dst_x_y_align[1 1]\n[    1.661461] dpp_print_restriction: exynos-dpp[4]: blk_w[4 4096 1] blk_h[4 4096 1] blk_x_y_align[1 1]\n[    1.661464] dpp_print_restriction: exynos-dpp[4]: src_h_rot_max[2160]\n[    1.661467] dpp_print_restriction: exynos-dpp[4]: max scale up(1x), down(1/1x) ratio\n[    1.661484] dpp_init_resources: exynos-dpp[4]: dma irq no = 155\n[    1.661524] dpp_init_resources: exynos-dpp[4]: dpp irq no = 156\n[    1.661556] dpp_probe: exynos-dpp[4]: successfully probed\n[    1.661804] exynos_dpp_parse_dt: exynos-dpp[5]: attr(0x50c7f), port(2)\n[    1.661808] dpp_print_restriction: exynos-dpp[5]: src_f_w[16 65534 1] src_f_h[16 8190 1]\n[    1.661813] dpp_print_restriction: exynos-dpp[5]: src_w[16 4096 1] src_h[16 4096 1] src_x_y_align[1 1]\n[    1.661818] dpp_print_restriction: exynos-dpp[5]: dst_f_w[16 8190 1] dst_f_h[16 8190 1]\n[    1.661823] dpp_print_restriction: exynos-dpp[5]: dst_w[16 4096 1] dst_h[16 4096 1] dst_x_y_align[1 1]\n[    1.661827] dpp_print_restriction: exynos-dpp[5]: blk_w[4 4096 1] blk_h[4 4096 1] blk_x_y_align[1 1]\n[    1.661830] dpp_print_restriction: exynos-dpp[5]: src_h_rot_max[2160]\n[    1.661832] dpp_print_restriction: exynos-dpp[5]: max scale up(8x), down(1/4x) ratio\n[    1.661856] dpp_init_resources: exynos-dpp[5]: dma irq no = 157\n[    1.661896] dpp_init_resources: exynos-dpp[5]: dpp irq no = 158\n[    1.661925] dpp_probe: exynos-dpp[5]: successfully probed\n[    1.662173] exynos_dpp_parse_dt: exynos-dpp[6]: attr(0x100000), port(0)\n[    1.662177] dpp_print_restriction: exynos-dpp[6]: src_f_w[16 65534 1] src_f_h[16 8190 1]\n[    1.662182] dpp_print_restriction: exynos-dpp[6]: src_w[16 4096 1] src_h[16 4096 1] src_x_y_align[1 1]\n[    1.662186] dpp_print_restriction: exynos-dpp[6]: dst_f_w[16 8190 1] dst_f_h[16 8190 1]\n[    1.662190] dpp_print_restriction: exynos-dpp[6]: dst_w[16 4096 1] dst_h[16 4096 1] dst_x_y_align[1 1]\n[    1.662194] dpp_print_restriction: exynos-dpp[6]: blk_w[4 4096 1] blk_h[4 4096 1] blk_x_y_align[1 1]\n[    1.662196] dpp_print_restriction: exynos-dpp[6]: src_h_rot_max[2160]\n[    1.662198] dpp_print_restriction: exynos-dpp[6]: max scale up(0x), down(1/0x) ratio\n[    1.662215] dpp_init_resources: exynos-dpp[6]: dma irq no = 159\n[    1.662238] dpp_probe: exynos-dpp[6]: successfully probed\n[    1.662493] exynos_dpp_parse_dt: exynos-dpp[7]: attr(0x100000), port(1)\n[    1.662498] dpp_print_restriction: exynos-dpp[7]: src_f_w[16 65534 1] src_f_h[16 8190 1]\n[    1.662501] dpp_print_restriction: exynos-dpp[7]: src_w[16 4096 1] src_h[16 4096 1] src_x_y_align[1 1]\n[    1.662505] dpp_print_restriction: exynos-dpp[7]: dst_f_w[16 8190 1] dst_f_h[16 8190 1]\n[    1.662509] dpp_print_restriction: exynos-dpp[7]: dst_w[16 4096 1] dst_h[16 4096 1] dst_x_y_align[1 1]\n[    1.662513] dpp_print_restriction: exynos-dpp[7]: blk_w[4 4096 1] blk_h[4 4096 1] blk_x_y_align[1 1]\n[    1.662515] dpp_print_restriction: exynos-dpp[7]: src_h_rot_max[2160]\n[    1.662518] dpp_print_restriction: exynos-dpp[7]: max scale up(0x), down(1/0x) ratio\n[    1.662536] dpp_init_resources: exynos-dpp[7]: dma irq no = 160\n[    1.662564] dpp_probe: exynos-dpp[7]: successfully probed\n[    1.663009] attr(0x60410), port(2)\n[    1.663013] src_f_w[16 65534 1] src_f_h[16 8190 1]\n[    1.663016] src_w[16 4096 1] src_h[16 4096 1] src_x_y_align[1 1]\n[    1.663018] dst_f_w[16 8190 1] dst_f_h[16 8190 1]\n[    1.663021] dst_w[16 4096 1] dst_h[16 4096 1] dst_x_y_align[1 1]\n[    1.663024] blk_w[4 4096 1] blk_h[4 4096 1] blk_x_y_align[1 1]\n[    1.663026] src_h_rot_max[2160]\n[    1.663028] max scale up(1x), down(1/1x) ratio\n[    1.663043] dma irq no = 161\n[    1.663070] writeback(dpp8) successfully probe\n[    1.663532] exynos-decon 1c240000.drmdecon: has sysmmu 1c100000.sysmmu (total count:1)\n[    1.663553] exynos-decon 1c240000.drmdecon: has sysmmu 1c110000.sysmmu (total count:2)\n[    1.663573] exynos-decon 1c240000.drmdecon: has sysmmu 1c120000.sysmmu (total count:3)\n[    1.663601] exynos-decon 1c240000.drmdecon: Adding to iommu group 0\n[    1.663799] exynos-decon 1c240000.drmdecon: attached with pgtable 0x0000000088980000\n[    1.663924] exynos-decon[0]: PPC(2)\n[    1.663927] exynos-decon[0]: rotator ppc(4)\n[    1.663930] exynos-decon[0]: scaler ppc(2)\n[    1.663932] exynos-decon[0]: line delay comp(4)\n[    1.663935] exynos-decon[0]: line delay scaler(3)\n[    1.663941] exynos-decon[0]: DPU DFS Level : \n[    1.663943] exynos-decon[0]: 664000 \n[    1.663945] exynos-decon[0]: 533000 \n[    1.663947] exynos-decon[0]: 465000 \n[    1.663949] exynos-decon[0]: 400000 \n[    1.663951] exynos-decon[0]: 310000 \n[    1.663953] exynos-decon[0]: 267000 \n[    1.663955] exynos-decon[0]: 134000 \n[    1.663958] exynos-decon[0]: \n[    1.663984] exynos-decon[0]: found dpp0\n[    1.664006] exynos-decon[0]: found dpp1\n[    1.664027] exynos-decon[0]: found dpp2\n[    1.664048] exynos-decon[0]: found dpp3\n[    1.664070] exynos-decon[0]: found dpp4\n[    1.664092] exynos-decon[0]: found dpp5\n[    1.664359] exynos-decon[0]: failed to get aclk(optional)\n[    1.664363] exynos-decon[0]: failed to get aclk_disp(optional)\n[    1.664450] doesn't need to get camera operation register\n[    1.664452] display hibernation is supported\n[    1.664456] [RECOVERY] exynos_recovery_register: ESD recovery is supported\n[    1.664533] exynos_dqe_register: display quality enhancer is supported(DQE_V3)\n[    1.664574] exynos-decon[0]: successfully probed\n[    1.664839] exynos-decon 1c242000.drmdecon: has sysmmu 1c100000.sysmmu (total count:1)\n[    1.664850] exynos-decon 1c242000.drmdecon: has sysmmu 1c110000.sysmmu (total count:2)\n[    1.664861] exynos-decon 1c242000.drmdecon: has sysmmu 1c120000.sysmmu (total count:3)\n[    1.664882] exynos-decon 1c242000.drmdecon: attached with pgtable 0x0000000088980000\n[    1.664885] exynos-decon 1c242000.drmdecon: Adding to iommu group 0\n[    1.664895] exynos-decon 1c242000.drmdecon: attached with pgtable 0x0000000088980000\n[    1.664917] exynos-decon[2]: failed to parse urgent rd_en(-22)\n[    1.664920] exynos-decon[2]: failed to parse urgent rd_hi_thres(-22)\n[    1.664923] exynos-decon[2]: failed to parse urgent rd_lo_thres(-22)\n[    1.664925] exynos-decon[2]: failed to parse urgent rd_wait_cycle(-22)\n[    1.664928] exynos-decon[2]: failed to parse urgent wr_en(-22)\n[    1.664931] exynos-decon[2]: failed to parse urgent wr_hi_thres(-22)\n[    1.664933] exynos-decon[2]: failed to parse urgent wr_lo_thres(-22)\n[    1.664936] exynos-decon[2]: PPC(2)\n[    1.664938] exynos-decon[2]: rotator ppc(4)\n[    1.664940] exynos-decon[2]: scaler ppc(2)\n[    1.664944] exynos-decon[2]: line delay comp(4)\n[    1.664946] exynos-decon[2]: line delay scaler(3)\n[    1.664954] exynos-decon[2]: DPU DFS Level : \n[    1.664956] exynos-decon[2]: 664000 \n[    1.664959] exynos-decon[2]: 533000 \n[    1.664961] exynos-decon[2]: 465000 \n[    1.664963] exynos-decon[2]: 400000 \n[    1.664965] exynos-decon[2]: 310000 \n[    1.664967] exynos-decon[2]: 267000 \n[    1.664969] exynos-decon[2]: 134000 \n[    1.664971] exynos-decon[2]: \n[    1.664982] exynos-decon[2]: found dpp0\n[    1.664993] exynos-decon[2]: found dpp1\n[    1.665004] exynos-decon[2]: found dpp2\n[    1.665015] exynos-decon[2]: found dpp3\n[    1.665026] exynos-decon[2]: found dpp4\n[    1.665040] exynos-decon[2]: found dpp5\n[    1.665223] exynos-decon[2]: dimming start irq is not supported\n[    1.665227] exynos-decon[2]: dimming end irq is not supported\n[    1.665230] exynos-decon[2]: failed to get aclk(optional)\n[    1.665234] exynos-decon[2]: failed to get aclk_disp(optional)\n[    1.665298] display hibernation is not supported\n[    1.665300] [RECOVERY] exynos_recovery_register: ESD recovery is supported\n[    1.665304] exynos_dqe_register: display quality enhancer is not supported\n[    1.665308] exynos-decon[2]: successfully probed\n[    1.665824] dsim_get_phys: exynos-dsim[0]: failed to get dsim extra phy\n[    1.665857] dsim_probe: exynos-dsim[0]: dsim idle_ip_index[32]\n[    1.666073] dsim_probe: exynos-dsim[0]: driver has been probed.\n[    1.667463] exynos-drm exynos-drm: bound 1c0b0000.drmdpp (ops 0xffffffda928357e8)\n[    1.667505] exynos-drm exynos-drm: bound 1c0b1000.drmdpp (ops 0xffffffda928357e8)\n[    1.667530] exynos-drm exynos-drm: bound 1c0b2000.drmdpp (ops 0xffffffda928357e8)\n[    1.667562] exynos-drm exynos-drm: bound 1c0b3000.drmdpp (ops 0xffffffda928357e8)\n[    1.667593] exynos-drm exynos-drm: bound 1c0b4000.drmdpp (ops 0xffffffda928357e8)\n[    1.667622] exynos-drm exynos-drm: bound 1c0b5000.drmdpp (ops 0xffffffda928357e8)\n[    1.667633] exynos-drm exynos-drm: bound 1c0b8000.drmdpp (ops 0xffffffda928357e8)\n[    1.667643] exynos-drm exynos-drm: bound 1c0b9000.drmdpp (ops 0xffffffda928357e8)\n[    1.667646] writeback_bind +\n[    1.667672] writeback_bind -\n[    1.667676] exynos-drm exynos-drm: bound 1c0bc000.drmdpp (ops 0xffffffda92836340)\n[    1.667709] [BTS] IDMA_TYPE(0) CH(0) Port(0)\n[    1.667711] [BTS] IDMA_TYPE(1) CH(1) Port(0)\n[    1.667713] [BTS] IDMA_TYPE(2) CH(2) Port(1)\n[    1.667715] [BTS] IDMA_TYPE(3) CH(3) Port(1)\n[    1.667717] [BTS] IDMA_TYPE(4) CH(4) Port(2)\n[    1.667719] [BTS] IDMA_TYPE(5) CH(5) Port(2)\n[    1.667721] [BTS] decon0 bts feature is enabled\n[    1.667727] exynos-drm exynos-drm: bound 1c240000.drmdecon (ops 0xffffffda92835470)\n[    1.667747] [BTS] IDMA_TYPE(0) CH(0) Port(0)\n[    1.667749] [BTS] IDMA_TYPE(1) CH(1) Port(0)\n[    1.667751] [BTS] IDMA_TYPE(2) CH(2) Port(1)\n[    1.667754] [BTS] IDMA_TYPE(3) CH(3) Port(1)\n[    1.667756] [BTS] IDMA_TYPE(4) CH(4) Port(2)\n[    1.667758] [BTS] IDMA_TYPE(5) CH(5) Port(2)\n[    1.667760] [BTS] decon2 bts feature is enabled\n[    1.667765] exynos-drm exynos-drm: bound 1c242000.drmdecon (ops 0xffffffda92835470)\n[    1.667775] exynos-drm exynos-drm: bound 1c2c0000.drmdsim (ops 0xffffffda92835cc0)\n[    1.667778] encoder[0] type(0x5) possible_clones(0x3)\n[    1.667781] encoder[1] type(0x6) possible_clones(0x3)\n[    1.668271] [drm] Initialized exynos 1.0.0 20110530 for exynos-drm on minor 0\n[    1.668464] exynos-reboot exynos-reboot: register restart handler successfully\n[    1.668592] janeiro error creating edgetpu debugfs dir\n[    1.668742] edgetpu_platform 1ce00000.janeiro: has sysmmu 1cc40000.sysmmu (total count:1)\n[    1.668772] edgetpu_platform 1ce00000.janeiro: Adding to iommu group 7\n[    1.668827] edgetpu_platform 1ce00000.janeiro: changed DMA range [0x0000000018000000..0x00000000fffff000] successfully.\n[    1.668831] edgetpu_platform 1ce00000.janeiro: attached with pgtable 0x0000000088a80000\n[    1.669621] edgetpu_platform 1ce00000.janeiro: Initial power state: 226000\n[    1.669873] edgetpu_platform 1ce00000.janeiro: Failed to create debug FS power\n[    1.669995] edgetpu janeiro: Failed to setup debugfs\n[    1.672129] edgetpu_platform 1ce00000.janeiro: failed to create debug fs for cooling\n[    1.672529] edgetpu_platform 1ce00000.janeiro: janeiro edgetpu initialized. Build: Not a git repository\n[    1.672534] edgetpu janeiro: Powering down\n[    1.673139] gsa 17c90000.gsa-ns: TZ: com.android.trusty.gsa.hwmgr.tpu connected\n[    1.766475] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: Set NTC channels (adc_ch_en : 0xff\n               )\n[    1.766608] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: Re-enabled odpm [s2mpg13] :)\n[    1.766745] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: Sensor 0 raw:0x939\n[    1.766882] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: Sensor 1 raw:0x982\n[    1.767018] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: Sensor 2 raw:0x906\n[    1.767153] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: Sensor 3 raw:0x96a\n[    1.767289] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: Sensor 4 raw:0x95d\n[    1.767425] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: Sensor 5 raw:0x971\n[    1.767561] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: Sensor 6 raw:0xfeb\n[    1.767698] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: Sensor 7 raw:0x929\n[    1.835018] edgetpu janeiro: janeiro_block_down: blk_shutdown timeout (20000 uS) exceeded\n[    1.835862] aoc 19000000.aoc: has sysmmu 1a090000.sysmmu (total count:1)\n[    1.835891] aoc 19000000.aoc: Adding to iommu group 4\n[    1.835948] aoc 19000000.aoc: attached with pgtable 0x0000000089840000\n[    1.836222] aoc: found aoc with interrupt:0 sram:[mem 0x19000000-0x19ffffff] dram:[mem 0x94000000-0x96ffffff]\n[    1.837678] aoc: sensor power is enabled.\n[    1.838047] nitrous_bluetooth odm:btbcm: Wake polarity not in dev tree\n[    1.838237] logbuffer: id:btlpm registered\n[    1.838263] nitrous_bluetooth odm:btbcm: IRQ: 476 active: High\n[    1.838358] nitrous_bluetooth odm:btbcm: rfkill: off (blocked=1)\n[    1.856923] p9221 i2c-p9412: selecting p9412\n[    1.856933] p9221 i2c-p9412: enable gpio:110\n[    1.856940] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    1.856949] p9221 i2c-p9412: WLC enable/disable pin:110\n[    1.856955] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    1.856959] p9221 i2c-p9412: has_rtx:1\n[    1.856997] p9221 i2c-p9412: Failed to parse dt\n[    1.857725] panel vddd found\n[    1.858650] panel-samsung-s6e3hc4 1c2c0000.drmdsim.0: panel enabled at boot\n[    1.865013] panel-samsung-s6e3hc4 1c2c0000.drmdsim.0: samsung common panel driver has been probed\n[    1.865261] p9221 i2c-p9412: selecting p9412\n[    1.865270] p9221 i2c-p9412: enable gpio:110\n[    1.865277] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    1.865284] p9221 i2c-p9412: WLC enable/disable pin:110\n[    1.865292] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    1.865296] p9221 i2c-p9412: has_rtx:1\n[    1.865304] p9221 i2c-p9412: Failed to parse dt\n[    1.865497] of_pca9468_dt: irq-gpio: 34 \n[    1.865501] of_pca9468_dt: pca9468,iin_cfg is 2500000\n[    1.865503] of_pca9468_dt: pca9468,v_float is 4300000\n[    1.865507] of_pca9468_dt: pca9468,iin_topoff is 500000\n[    1.865509] of_pca9468_dt: pca9468,fsw_cfg is 3\n[    1.865512] of_pca9468_dt: pca9468,ntc_th is 0\n[    1.865514] of_pca9468_dt: pca9468,iin_max_offset is 0\n[    1.865517] of_pca9468_dt: pca9468,iin_cc_comp_offset is 50000\n[    1.865522] of_pca9468_dt: pca9468,spread-spectrum is 0\n[    1.865524] of_pca9468_dt: google,usb-port-tz-name is usbc-therm-adc\n[    1.865783] logbuffer: id:pca9468 registered\n[    1.867287] pca9468 5-0057: pca9468_set_input_current: iin=2550000 real iin_cfg=2600000 (0)\n[    1.867393] pca9468 5-0057: pca9468_set_vfloat: v_float=4300000 (0)\n[    1.868211] pca9468 5-0057: Couldn't create debug dir\n[    1.868214] pca9468 5-0057: error while registering debugfs -2\n[    1.868259] pca9468: probe_done\n[    1.868329] st21nfc_dev_init: Loading st21nfc driver (version 2.0.19)\n[    1.869044] p9221 i2c-p9412: selecting p9412\n[    1.869053] p9221 i2c-p9412: enable gpio:110\n[    1.869059] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    1.869067] p9221 i2c-p9412: WLC enable/disable pin:110\n[    1.869076] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    1.869080] p9221 i2c-p9412: has_rtx:1\n[    1.869088] p9221 i2c-p9412: Failed to parse dt\n[    1.869616] p9221 i2c-p9412: selecting p9412\n[    1.869625] p9221 i2c-p9412: enable gpio:110\n[    1.869633] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    1.869642] p9221 i2c-p9412: WLC enable/disable pin:110\n[    1.869649] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    1.869654] p9221 i2c-p9412: has_rtx:1\n[    1.869662] p9221 i2c-p9412: Failed to parse dt\n[    1.869726] touch_bus_negotiator tbn: tbn_aoc2ap_irq_thread: bus_released:0 bus_requested:0.\n[    1.869748] touch_bus_negotiator tbn: tbn_probe: gpios(aoc2ap: 63 ap2aoc: 91), mode 1\n[    1.869834] [FTS_TS/D]fts_ts_init: Enter\n[    1.869865] [FTS_TS/D]fts_ts_init: Exit(3876)\n[    1.870119] [   info] syna_spi_parse_dt: Firmware name synaptics.img\n[    1.870189] spi_master spi0: will run message pump with realtime priority\n[    1.870690] [   info] syna_tcm_init_message_wrap: Resp reading method (default): polling\n[    1.870694] [   info] syna_tcm_allocate_device: TouchComm core module created, ver.: 1.25\n[    1.870697] [   info] syna_tcm_allocate_device: Capability: wr_chunk(512), rd_chunk(512), irq_control(yes)\n[    1.870755] [   info] syna_dev_probe: tbn_register_mask = 0x1.\n[    1.871021] p9221 i2c-p9412: selecting p9412\n[    1.871031] p9221 i2c-p9412: enable gpio:110\n[    1.871038] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    1.871046] p9221 i2c-p9412: WLC enable/disable pin:110\n[    1.871054] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    1.871058] p9221 i2c-p9412: has_rtx:1\n[    1.871066] p9221 i2c-p9412: Failed to parse dt\n[    2.086596] [   info] syna_spi_hw_reset: Trigger hardware reset.\n[    2.346786] [   info] syna_tcm_v1_parse_idinfo: TCM Fw mode: 0x01\n[    2.346790] [   info] syna_tcm_v1_detect: Message CRC appending is disabled\n[    2.346793] [   info] syna_tcm_detect_device: Device in Application FW, build id: 4024440, S3908GA1B0-15.0\n[    2.386962] [   info] syna_tcm_set_custom_touch_entity_callback: enabled\n[    2.387052] input: synaptics_tcm_touch as /devices/platform/10d10000.spi/spi_master/spi0/spi0.0/input/input2\n[    2.387174] [   info] syna_dev_request_irq: Interrupt handler registered\n[    2.387213] [   info] syna_dev_connect: TCM packrat: 4024440\n[    2.387216] [   info] syna_dev_connect: Configuration: name(synaptics_tcm), lpwg(no), hw_reset(yes), irq_ctrl(yes)\n[    2.506625] [   info] syna_tcm_set_reset_occurrence_callback: enabled\n[    2.506628] [   info] syna_dev_probe: synaptics_tcm TouchComm driver v1.2.8 installed\n[    2.507058] pixel-em: Loading 3 profile(s).\n[    2.507108] pixel-em: Successfully created/updated profile 'cam1'!\n[    2.507147] pixel-em: Successfully created/updated profile 'cam2'!\n[    2.507187] pixel-em: Successfully created/updated profile 'ui'!\n[    2.507191] pixel-em: Publishing EM profile to vh_sched!\n[    2.507193] pixel-em: Publishing EM profile to exynos_cpu_cooling!\n[    2.507194] pixel-em: Publishing EM profile to exynos acme!\n[    2.507393] pixel-em: Registered! :D\n[    2.508020] p9221 i2c-p9412: selecting p9412\n[    2.508028] p9221 i2c-p9412: enable gpio:110\n[    2.508035] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.508042] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.508050] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.508054] p9221 i2c-p9412: has_rtx:1\n[    2.508062] p9221 i2c-p9412: Failed to parse dt\n[    2.508466] null_blk: module loaded\n[    2.508500] sbb-mux: Initializing signal [0, '0']...\n[    2.508510] sbb-mux: Initializing signal [1, '1']...\n[    2.508521] sbb-mux: Initializing signal [2, 'kernel_test']...\n[    2.508532] sbb-mux: Initializing signal [3, 'userland_test']...\n[    2.508541] sbb-mux: Initializing signal [4, 'gp_region_0']...\n[    2.508551] sbb-mux: Initializing signal [5, 'gp_region_1']...\n[    2.508561] sbb-mux: Initializing signal [6, 'gp_region_2']...\n[    2.508571] sbb-mux: Initializing signal [7, 'gp_region_3']...\n[    2.508579] sbb-mux: Initializing signal [8, 'k_gp_region_0']...\n[    2.508589] sbb-mux: Initializing signal [9, 'k_gp_region_1']...\n[    2.508599] sbb-mux: Initializing signal [10, 'k_gp_region_2']...\n[    2.508608] sbb-mux: Initializing signal [11, 'k_gp_region_3']...\n[    2.508618] sbb-mux: Initializing signal [12, 'app_misc0']...\n[    2.508628] sbb-mux: Initializing signal [13, 'app_misc1']...\n[    2.508638] sbb-mux: Initializing signal [14, 'app_misc2']...\n[    2.508648] sbb-mux: Initializing signal [15, 'app_misc3']...\n[    2.508657] sbb-mux: Initializing signal [16, 'app_misc4']...\n[    2.508668] sbb-mux: Initializing signal [17, 'app_misc5']...\n[    2.508679] sbb-mux: Initializing signal [18, 'app_misc6']...\n[    2.508687] sbb-mux: Initializing signal [19, 'app_misc7']...\n[    2.508698] sbb-mux: Initializing signal [20, 'app_misc8']...\n[    2.508707] sbb-mux: Initializing signal [21, 'app_misc9']...\n[    2.508716] sbb-mux: Initializing signal [22, 'cam_misc0']...\n[    2.508725] sbb-mux: Initializing signal [23, 'cam_misc1']...\n[    2.508734] sbb-mux: Initializing signal [24, 'cam_misc2']...\n[    2.508742] sbb-mux: Initializing signal [25, 'cam_misc3']...\n[    2.508753] sbb-mux: Initializing signal [26, 'cam_misc4']...\n[    2.508763] sbb-mux: Initializing signal [27, 'cam_misc5']...\n[    2.508772] sbb-mux: Initializing signal [28, 'cam_misc6']...\n[    2.508782] sbb-mux: Initializing signal [29, 'cam_misc7']...\n[    2.508792] sbb-mux: Initializing signal [30, 'cam_misc8']...\n[    2.508800] sbb-mux: Initializing signal [31, 'cam_misc9']...\n[    2.508982] sbb-mux: Calling sbb_mux_drv_probe!\n[    2.509002] sbb-mux: Num GPIOs: 4.\n[    2.509016] sbb-mux: GPIO system id: 167.\n[    2.509031] Correctly initialized GPIO tracker #167 for GPIO C1_T0__KIBBLE1_TRIG0!\n[    2.509039] sbb-mux: GPIO system id: 168.\n[    2.509053] Correctly initialized GPIO tracker #168 for GPIO C1_T1__KIBBLE1_TRIG1!\n[    2.509063] sbb-mux: GPIO system id: 112.\n[    2.509077] Correctly initialized GPIO tracker #112 for GPIO C1_T2__KIBBLE1_TRIG2!\n[    2.509086] sbb-mux: GPIO system id: 115.\n[    2.509100] Correctly initialized GPIO tracker #115 for GPIO C1_T3__KIBBLE1_TRIG3!\n[    2.509160] sbb-mux: Registered! :D\n[    2.509608] p9221 i2c-p9412: selecting p9412\n[    2.509617] p9221 i2c-p9412: enable gpio:110\n[    2.509625] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.509634] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.509641] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.509645] p9221 i2c-p9412: has_rtx:1\n[    2.509653] p9221 i2c-p9412: Failed to parse dt\n[    2.526316] slg51002 4-0075: No init registers are overridden\n[    2.527255] slg51002 4-0075: chip_id: 0xb13103\n[    2.528214] ldo1: supplied by regulator-dummy\n[    2.529064] ldo2: supplied by regulator-dummy\n[    2.529657] ldo3: Bringing 1800000uV into 2250000-2250000uV\n[    2.530803] ldo3: supplied by regulator-dummy\n[    2.531653] ldo4: supplied by regulator-dummy\n[    2.532511] ldo5: supplied by regulator-dummy\n[    2.533102] ldo6: Bringing 1150000uV into 1100000-1100000uV\n[    2.534250] ldo6: supplied by regulator-dummy\n[    2.534843] ldo7: Bringing 1150000uV into 1000000-1000000uV\n[    2.535984] ldo7: supplied by regulator-dummy\n[    2.536843] ldo8: supplied by regulator-dummy\n[    2.540668] p9221 i2c-p9412: selecting p9412\n[    2.540678] p9221 i2c-p9412: enable gpio:110\n[    2.540685] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.540694] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.540701] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.540705] p9221 i2c-p9412: has_rtx:1\n[    2.540713] p9221 i2c-p9412: Failed to parse dt\n[    2.541853] ETR MIU configured\n[    2.542209] stmvl53l1 0-0029: stmvl53l1 : 0x29\n[    2.542348] stmvl53l1 0-0029: Selecting pinctrl state default\n[    2.543260] p9221 i2c-p9412: selecting p9412\n[    2.543269] p9221 i2c-p9412: enable gpio:110\n[    2.543278] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.543286] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.543293] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.543298] p9221 i2c-p9412: has_rtx:1\n[    2.543306] p9221 i2c-p9412: Failed to parse dt\n[    2.543871] stmvl53l1 0-0029: slow power on\n[    2.543900] stmvl53l1 0-0029: Shared i2c pinctrl state on_i2c\n[    2.543904] stmvl53l1 0-0029: Power up successfully\n[    2.547974] input: STM VL53L1 proximity sensor as /devices/virtual/input/input3\n[    2.560516] stmvl53l1 0-0029: device name VL53L3 cut1.1 type VL53L3\n[    2.560626] stmvl53l1 0-0029: Probe Success, device id 0xea\n[    2.560735] stmvl53l1 0-0029: Probe Success, device type 0xaa\n[    2.560797] stmvl53l1 0-0029: irq 483 now handled\n[    2.560800] stmvl53l1 0-0029: Misc device registration name:stmvl53l1_ranging\n[    2.560980] stmvl53l1 0-0029: Shared i2c pinctrl state off_i2c\n[    2.560983] stmvl53l1 0-0029: Power down successfully\n[    2.560988] stmvl53l1 0-0029: VL53L1 setscheduler rc = 0\n[    2.561308] input: goodix_fingerprint as /devices/virtual/input/input4\n[    2.561395] goodixfp: version V1.2.13\n[    2.561504] goodixfp: status = 0x0\n[    2.562041] p9221 i2c-p9412: selecting p9412\n[    2.562051] p9221 i2c-p9412: enable gpio:110\n[    2.562058] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.562067] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.562074] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.562078] p9221 i2c-p9412: has_rtx:1\n[    2.562086] p9221 i2c-p9412: Failed to parse dt\n[    2.563863] bigocean 1cb00000.bigocean: has sysmmu 1ca40000.sysmmu (total count:1)\n[    2.563893] bigocean 1cb00000.bigocean: Adding to iommu group 2\n[    2.563951] bigocean 1cb00000.bigocean: attached with pgtable 0x0000000089a40000\n[    2.564852] gxp_platform 25c00000.gxp: has sysmmu 25a50000.sysmmu (total count:1)\n[    2.564878] gxp_platform 25c00000.gxp: has sysmmu 25a80000.sysmmu (total count:2)\n[    2.564910] gxp_platform 25c00000.gxp: Adding to iommu group 8\n[    2.564968] gxp_platform 25c00000.gxp: changed DMA range [0x0000000030000000..0x00000000f0000000] successfully.\n[    2.564971] gxp_platform 25c00000.gxp: attached with pgtable 0x0000000089ac0000\n[    2.565035] gxp_platform 25c00000.gxp: Probing gxp driver with commit Not a git repository\n[    2.565440] p9221 i2c-p9412: selecting p9412\n[    2.565450] p9221 i2c-p9412: enable gpio:110\n[    2.565456] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.565465] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.565472] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.565476] p9221 i2c-p9412: has_rtx:1\n[    2.565484] p9221 i2c-p9412: Failed to parse dt\n[    2.565812] gxp_platform 25c00000.gxp: Powering on BLK ...\n[    2.566779] gxp_platform 25c00000.gxp: Aurora version: 0x10104\n[    2.566788] gxp_platform 25c00000.gxp: Aurora core 0 processor ID: 0x0\n[    2.566795] gxp_platform 25c00000.gxp: Aurora core 1 processor ID: 0x1\n[    2.566803] gxp_platform 25c00000.gxp: Aurora core 2 processor ID: 0x2\n[    2.566809] gxp_platform 25c00000.gxp: Aurora core 3 processor ID: 0x3\n[    2.566813] gxp_platform 25c00000.gxp: Powering off BLK ...\n[    2.566909] gxp_platform 25c00000.gxp: GSA device found, Firmware authentication available\n[    2.567218] gxp_platform 25c00000.gxp: failed to create debug fs for cooling\n[    2.567605] lwis-dev: LWIS device initialization\n[    2.567619] lwis-top-dev: Top device initialization\n[    2.567818] lwis lwis-top: Base Probe: Success\n[    2.568468] p9221 i2c-p9412: selecting p9412\n[    2.568477] p9221 i2c-p9412: enable gpio:110\n[    2.568485] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.568493] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.568500] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.568504] p9221 i2c-p9412: has_rtx:1\n[    2.568512] p9221 i2c-p9412: Failed to parse dt\n[    2.568751] lwis-ioreg-dev: IOREG device initialization\n[    2.568884] lwis-ioreg 1a440000.lwis_csi: has sysmmu 1a510000.sysmmu (total count:1)\n[    2.568906] lwis-ioreg 1a440000.lwis_csi: has sysmmu 1a540000.sysmmu (total count:2)\n[    2.568935] lwis-ioreg 1a440000.lwis_csi: Adding to iommu group 1\n[    2.568995] lwis-ioreg 1a440000.lwis_csi: attached with pgtable 0x0000000089e00000\n[    2.572624] lwis lwis-csi: Base Probe: Success\n[    2.572993] p9221 i2c-p9412: selecting p9412\n[    2.573002] p9221 i2c-p9412: enable gpio:110\n[    2.573009] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.573018] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.573025] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.573030] p9221 i2c-p9412: has_rtx:1\n[    2.573058] p9221 i2c-p9412: Failed to parse dt\n[    2.573132] lwis lwis-csi: IOREG Device Probe: Success\n[    2.573177] lwis-ioreg 1aa40000.lwis_pdp: has sysmmu 1a540000.sysmmu (total count:1)\n[    2.573203] lwis-ioreg 1aa40000.lwis_pdp: has sysmmu 1ad00000.sysmmu (total count:2)\n[    2.573226] lwis-ioreg 1aa40000.lwis_pdp: has sysmmu 1a880000.sysmmu (total count:3)\n[    2.573249] lwis-ioreg 1aa40000.lwis_pdp: attached with pgtable 0x0000000089e00000\n[    2.573252] lwis-ioreg 1aa40000.lwis_pdp: Adding to iommu group 1\n[    2.573264] lwis-ioreg 1aa40000.lwis_pdp: attached with pgtable 0x0000000089e00000\n[    2.573776] lwis lwis-pdp: Base Probe: Success\n[    2.574130] p9221 i2c-p9412: selecting p9412\n[    2.574149] p9221 i2c-p9412: enable gpio:110\n[    2.574156] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.574164] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.574173] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.574177] p9221 i2c-p9412: has_rtx:1\n[    2.574185] p9221 i2c-p9412: Failed to parse dt\n[    2.574266] lwis lwis-pdp: IOREG Device Probe: Success\n[    2.574308] lwis-ioreg 1ac40000.lwis_ipp: has sysmmu 1ad00000.sysmmu (total count:1)\n[    2.574326] lwis-ioreg 1ac40000.lwis_ipp: attached with pgtable 0x0000000089e00000\n[    2.574329] lwis-ioreg 1ac40000.lwis_ipp: Adding to iommu group 1\n[    2.574338] lwis-ioreg 1ac40000.lwis_ipp: attached with pgtable 0x0000000089e00000\n[    2.575132] lwis lwis-ipp: Base Probe: Success\n[    2.575457] p9221 i2c-p9412: selecting p9412\n[    2.575470] p9221 i2c-p9412: enable gpio:110\n[    2.575476] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.575484] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.575492] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.575496] p9221 i2c-p9412: has_rtx:1\n[    2.575504] p9221 i2c-p9412: Failed to parse dt\n[    2.575591] lwis lwis-ipp: IOREG Device Probe: Success\n[    2.575631] lwis-ioreg 1ac80000.lwis_gtnr_align: has sysmmu 1ad00000.sysmmu (total count:1)\n[    2.575654] lwis-ioreg 1ac80000.lwis_gtnr_align: has sysmmu 1b080000.sysmmu (total count:2)\n[    2.575673] lwis-ioreg 1ac80000.lwis_gtnr_align: attached with pgtable 0x0000000089e00000\n[    2.575676] lwis-ioreg 1ac80000.lwis_gtnr_align: Adding to iommu group 1\n[    2.575685] lwis-ioreg 1ac80000.lwis_gtnr_align: attached with pgtable 0x0000000089e00000\n[    2.575881] lwis lwis-gtnr-align: Base Probe: Success\n[    2.576201] p9221 i2c-p9412: selecting p9412\n[    2.576211] p9221 i2c-p9412: enable gpio:110\n[    2.576218] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.576226] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.576233] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.576238] p9221 i2c-p9412: has_rtx:1\n[    2.576245] p9221 i2c-p9412: Failed to parse dt\n[    2.576328] lwis lwis-gtnr-align: IOREG Device Probe: Success\n[    2.576385] lwis-ioreg 1bc40000.lwis_gtnr_merge: has sysmmu 1bc70000.sysmmu (total count:1)\n[    2.576410] lwis-ioreg 1bc40000.lwis_gtnr_merge: has sysmmu 1bca0000.sysmmu (total count:2)\n[    2.576434] lwis-ioreg 1bc40000.lwis_gtnr_merge: has sysmmu 1bcd0000.sysmmu (total count:3)\n[    2.576477] lwis-ioreg 1bc40000.lwis_gtnr_merge: has sysmmu 1bd00000.sysmmu (total count:4)\n[    2.576501] lwis-ioreg 1bc40000.lwis_gtnr_merge: has sysmmu 1bd30000.sysmmu (total count:5)\n[    2.576528] lwis-ioreg 1bc40000.lwis_gtnr_merge: attached with pgtable 0x0000000089e00000\n[    2.576531] lwis-ioreg 1bc40000.lwis_gtnr_merge: Adding to iommu group 1\n[    2.576542] lwis-ioreg 1bc40000.lwis_gtnr_merge: attached with pgtable 0x0000000089e00000\n[    2.576789] lwis lwis-gtnr-merge: Base Probe: Success\n[    2.577158] p9221 i2c-p9412: selecting p9412\n[    2.577167] p9221 i2c-p9412: enable gpio:110\n[    2.577174] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.577183] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.577190] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.577197] p9221 i2c-p9412: has_rtx:1\n[    2.577205] p9221 i2c-p9412: Failed to parse dt\n[    2.577292] lwis lwis-gtnr-merge: IOREG Device Probe: Success\n[    2.577332] lwis-ioreg 1a840000.lwis_g3aa: has sysmmu 1a880000.sysmmu (total count:1)\n[    2.577350] lwis-ioreg 1a840000.lwis_g3aa: attached with pgtable 0x0000000089e00000\n[    2.577354] lwis-ioreg 1a840000.lwis_g3aa: Adding to iommu group 1\n[    2.577365] lwis-ioreg 1a840000.lwis_g3aa: attached with pgtable 0x0000000089e00000\n[    2.577656] lwis lwis-g3aa: Base Probe: Success\n[    2.577978] p9221 i2c-p9412: selecting p9412\n[    2.577987] p9221 i2c-p9412: enable gpio:110\n[    2.577994] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.578002] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.578009] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.578014] p9221 i2c-p9412: has_rtx:1\n[    2.578022] p9221 i2c-p9412: Failed to parse dt\n[    2.578107] lwis lwis-g3aa: IOREG Device Probe: Success\n[    2.578146] lwis-ioreg 1b450000.lwis_itp: has sysmmu 1b080000.sysmmu (total count:1)\n[    2.578171] lwis-ioreg 1b450000.lwis_itp: has sysmmu 1b780000.sysmmu (total count:2)\n[    2.578191] lwis-ioreg 1b450000.lwis_itp: attached with pgtable 0x0000000089e00000\n[    2.578195] lwis-ioreg 1b450000.lwis_itp: Adding to iommu group 1\n[    2.578205] lwis-ioreg 1b450000.lwis_itp: attached with pgtable 0x0000000089e00000\n[    2.578745] lwis lwis-itp: Base Probe: Success\n[    2.579073] p9221 i2c-p9412: selecting p9412\n[    2.579082] p9221 i2c-p9412: enable gpio:110\n[    2.579089] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.579097] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.579104] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.579108] p9221 i2c-p9412: has_rtx:1\n[    2.579116] p9221 i2c-p9412: Failed to parse dt\n[    2.579202] lwis lwis-itp: IOREG Device Probe: Success\n[    2.579256] lwis-ioreg 1b760000.lwis_mcsc: has sysmmu 1b7b0000.sysmmu (total count:1)\n[    2.579279] lwis-ioreg 1b760000.lwis_mcsc: has sysmmu 1b7e0000.sysmmu (total count:2)\n[    2.579301] lwis-ioreg 1b760000.lwis_mcsc: attached with pgtable 0x0000000089e00000\n[    2.579304] lwis-ioreg 1b760000.lwis_mcsc: Adding to iommu group 1\n[    2.579314] lwis-ioreg 1b760000.lwis_mcsc: attached with pgtable 0x0000000089e00000\n[    2.579606] lwis lwis-mcsc: Base Probe: Success\n[    2.579928] p9221 i2c-p9412: selecting p9412\n[    2.579938] p9221 i2c-p9412: enable gpio:110\n[    2.579945] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.579954] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.579961] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.579964] p9221 i2c-p9412: has_rtx:1\n[    2.579972] p9221 i2c-p9412: Failed to parse dt\n[    2.580054] lwis lwis-mcsc: IOREG Device Probe: Success\n[    2.580107] lwis-ioreg 1d080000.lwis_scsc: has sysmmu 1d100000.sysmmu (total count:1)\n[    2.580127] lwis-ioreg 1d080000.lwis_scsc: attached with pgtable 0x0000000089e00000\n[    2.580130] lwis-ioreg 1d080000.lwis_scsc: Adding to iommu group 1\n[    2.580139] lwis-ioreg 1d080000.lwis_scsc: attached with pgtable 0x0000000089e00000\n[    2.580393] lwis lwis-scsc: Base Probe: Success\n[    2.580720] p9221 i2c-p9412: selecting p9412\n[    2.580729] p9221 i2c-p9412: enable gpio:110\n[    2.580736] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.580744] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.580751] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.580756] p9221 i2c-p9412: has_rtx:1\n[    2.580764] p9221 i2c-p9412: Failed to parse dt\n[    2.580845] lwis lwis-scsc: IOREG Device Probe: Success\n[    2.580898] lwis-ioreg 1d040000.lwis_gdc: has sysmmu 1d0a0000.sysmmu (total count:1)\n[    2.580918] lwis-ioreg 1d040000.lwis_gdc: attached with pgtable 0x0000000089e00000\n[    2.580922] lwis-ioreg 1d040000.lwis_gdc: Adding to iommu group 1\n[    2.580931] lwis-ioreg 1d040000.lwis_gdc: attached with pgtable 0x0000000089e00000\n[    2.581182] lwis lwis-gdc0: Base Probe: Success\n[    2.581502] p9221 i2c-p9412: selecting p9412\n[    2.581511] p9221 i2c-p9412: enable gpio:110\n[    2.581518] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.581526] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.581533] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.581540] p9221 i2c-p9412: has_rtx:1\n[    2.581548] p9221 i2c-p9412: Failed to parse dt\n[    2.581632] lwis lwis-gdc0: IOREG Device Probe: Success\n[    2.581686] lwis-ioreg 1d060000.lwis_gdc: has sysmmu 1d0d0000.sysmmu (total count:1)\n[    2.581704] lwis-ioreg 1d060000.lwis_gdc: attached with pgtable 0x0000000089e00000\n[    2.581708] lwis-ioreg 1d060000.lwis_gdc: Adding to iommu group 1\n[    2.581718] lwis-ioreg 1d060000.lwis_gdc: attached with pgtable 0x0000000089e00000\n[    2.581893] lwis lwis-gdc1: Base Probe: Success\n[    2.582215] p9221 i2c-p9412: selecting p9412\n[    2.582224] p9221 i2c-p9412: enable gpio:110\n[    2.582230] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.582239] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.582246] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.582250] p9221 i2c-p9412: has_rtx:1\n[    2.582259] p9221 i2c-p9412: Failed to parse dt\n[    2.582344] lwis lwis-gdc1: IOREG Device Probe: Success\n[    2.582387] lwis-ioreg 1a4e0000.lwis_votf: has sysmmu 1d0a0000.sysmmu (total count:1)\n[    2.582398] lwis-ioreg 1a4e0000.lwis_votf: has sysmmu 1d0d0000.sysmmu (total count:2)\n[    2.582410] lwis-ioreg 1a4e0000.lwis_votf: has sysmmu 1d100000.sysmmu (total count:3)\n[    2.582421] lwis-ioreg 1a4e0000.lwis_votf: has sysmmu 1ad00000.sysmmu (total count:4)\n[    2.582432] lwis-ioreg 1a4e0000.lwis_votf: has sysmmu 1b080000.sysmmu (total count:5)\n[    2.582445] lwis-ioreg 1a4e0000.lwis_votf: has sysmmu 1b780000.sysmmu (total count:6)\n[    2.582471] lwis-ioreg 1a4e0000.lwis_votf: has sysmmu 1b7b0000.sysmmu (total count:7)\n[    2.582485] lwis-ioreg 1a4e0000.lwis_votf: has sysmmu 1b7e0000.sysmmu (total count:8)\n[    2.582500] lwis-ioreg 1a4e0000.lwis_votf: has sysmmu 1bc70000.sysmmu (total count:9)\n[    2.582514] lwis-ioreg 1a4e0000.lwis_votf: has sysmmu 1bca0000.sysmmu (total count:10)\n[    2.582529] lwis-ioreg 1a4e0000.lwis_votf: has sysmmu 1bcd0000.sysmmu (total count:11)\n[    2.582545] lwis-ioreg 1a4e0000.lwis_votf: has sysmmu 1bd00000.sysmmu (total count:12)\n[    2.582561] lwis-ioreg 1a4e0000.lwis_votf: has sysmmu 1bd30000.sysmmu (total count:13)\n[    2.582576] lwis-ioreg 1a4e0000.lwis_votf: has sysmmu 1a510000.sysmmu (total count:14)\n[    2.582589] lwis-ioreg 1a4e0000.lwis_votf: has sysmmu 1a540000.sysmmu (total count:15)\n[    2.582618] lwis-ioreg 1a4e0000.lwis_votf: attached with pgtable 0x0000000089e00000\n[    2.582622] lwis-ioreg 1a4e0000.lwis_votf: Adding to iommu group 1\n[    2.582632] lwis-ioreg 1a4e0000.lwis_votf: attached with pgtable 0x0000000089e00000\n[    2.582854] lwis lwis-votf: Base Probe: Success\n[    2.583191] p9221 i2c-p9412: selecting p9412\n[    2.583201] p9221 i2c-p9412: enable gpio:110\n[    2.583208] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.583217] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.583224] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.583229] p9221 i2c-p9412: has_rtx:1\n[    2.583237] p9221 i2c-p9412: Failed to parse dt\n[    2.583346] lwis lwis-votf: IOREG Device Probe: Success\n[    2.583478] lwis-i2c-dev: I2C device initialization\n[    2.584240] lwis lwis-sensor-nagual: Base Probe: Success\n[    2.584607] p9221 i2c-p9412: selecting p9412\n[    2.584616] p9221 i2c-p9412: enable gpio:110\n[    2.584623] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.584631] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.584638] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.584642] p9221 i2c-p9412: has_rtx:1\n[    2.584651] p9221 i2c-p9412: Failed to parse dt\n[    2.584736] lwis lwis-sensor-nagual: I2C Device Probe: Success\n[    2.585111] lwis lwis-sensor-dokkaebi: Base Probe: Success\n[    2.585484] p9221 i2c-p9412: selecting p9412\n[    2.585497] p9221 i2c-p9412: enable gpio:110\n[    2.585505] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.585514] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.585521] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.585525] p9221 i2c-p9412: has_rtx:1\n[    2.585554] p9221 i2c-p9412: Failed to parse dt\n[    2.585652] lwis lwis-sensor-dokkaebi: I2C Device Probe: Success\n[    2.586069] lwis lwis-sensor-sandworm: Base Probe: Success\n[    2.586544] p9221 i2c-p9412: selecting p9412\n[    2.586553] p9221 i2c-p9412: enable gpio:110\n[    2.586562] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.586570] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.586577] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.586581] p9221 i2c-p9412: has_rtx:1\n[    2.586589] p9221 i2c-p9412: Failed to parse dt\n[    2.586656] lwis lwis-sensor-sandworm: I2C Device Probe: Success\n[    2.587039] lwis lwis-sensor-kraken: Base Probe: Success\n[    2.587415] p9221 i2c-p9412: selecting p9412\n[    2.587423] p9221 i2c-p9412: enable gpio:110\n[    2.587431] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.587440] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.587447] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.587451] p9221 i2c-p9412: has_rtx:1\n[    2.587460] p9221 i2c-p9412: Failed to parse dt\n[    2.587544] lwis lwis-sensor-kraken: I2C Device Probe: Success\n[    2.587738] lwis lwis-eeprom-gargoyle: Base Probe: Success\n[    2.588100] p9221 i2c-p9412: selecting p9412\n[    2.588109] p9221 i2c-p9412: enable gpio:110\n[    2.588116] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.588125] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.588132] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.588136] p9221 i2c-p9412: has_rtx:1\n[    2.588144] p9221 i2c-p9412: Failed to parse dt\n[    2.588228] lwis lwis-eeprom-gargoyle: I2C Device Probe: Success\n[    2.588357] lwis lwis-eeprom-smaug-dokkaebi: Base Probe: Success\n[    2.588720] p9221 i2c-p9412: selecting p9412\n[    2.588733] p9221 i2c-p9412: enable gpio:110\n[    2.588740] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.588748] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.588756] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.588760] p9221 i2c-p9412: has_rtx:1\n[    2.588789] p9221 i2c-p9412: Failed to parse dt\n[    2.588873] lwis lwis-eeprom-smaug-dokkaebi: I2C Device Probe: Success\n[    2.588996] lwis lwis-eeprom-smaug-sandworm: Base Probe: Success\n[    2.589337] p9221 i2c-p9412: selecting p9412\n[    2.589346] p9221 i2c-p9412: enable gpio:110\n[    2.589353] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.589362] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.589369] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.589373] p9221 i2c-p9412: has_rtx:1\n[    2.589381] p9221 i2c-p9412: Failed to parse dt\n[    2.589463] lwis lwis-eeprom-smaug-sandworm: I2C Device Probe: Success\n[    2.589698] lwis lwis-eeprom-jotnar: Base Probe: Success\n[    2.590040] p9221 i2c-p9412: selecting p9412\n[    2.590050] p9221 i2c-p9412: enable gpio:110\n[    2.590057] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.590065] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.590074] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.590078] p9221 i2c-p9412: has_rtx:1\n[    2.590086] p9221 i2c-p9412: Failed to parse dt\n[    2.590169] lwis lwis-eeprom-jotnar: I2C Device Probe: Success\n[    2.590343] lwis lwis-act-slenderman: Base Probe: Success\n[    2.590687] p9221 i2c-p9412: selecting p9412\n[    2.590696] p9221 i2c-p9412: enable gpio:110\n[    2.590703] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.590712] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.590719] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.590723] p9221 i2c-p9412: has_rtx:1\n[    2.590731] p9221 i2c-p9412: Failed to parse dt\n[    2.590823] lwis lwis-act-slenderman: I2C Device Probe: Success\n[    2.591039] lwis lwis-act-jotnar: Base Probe: Success\n[    2.591047] i2c i2c-3: Failed to register i2c client  at 0x34 (-16)\n[    2.591360] p9221 i2c-p9412: selecting p9412\n[    2.591369] p9221 i2c-p9412: enable gpio:110\n[    2.591377] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.591385] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.591392] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.591397] p9221 i2c-p9412: has_rtx:1\n[    2.591404] p9221 i2c-p9412: Failed to parse dt\n[    2.591492] lwis lwis-act-jotnar: I2C Device Probe: Success\n[    2.591664] lwis lwis-act-slenderman-sandworm: Base Probe: Success\n[    2.592008] p9221 i2c-p9412: selecting p9412\n[    2.592017] p9221 i2c-p9412: enable gpio:110\n[    2.592025] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.592035] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.592042] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.592047] p9221 i2c-p9412: has_rtx:1\n[    2.592055] p9221 i2c-p9412: Failed to parse dt\n[    2.592144] lwis lwis-act-slenderman-sandworm: I2C Device Probe: Success\n[    2.592384] lwis lwis-ois-gargoyle: Base Probe: Success\n[    2.592391] i2c i2c-0: Failed to register i2c client  at 0x24 (-16)\n[    2.592704] p9221 i2c-p9412: selecting p9412\n[    2.592713] p9221 i2c-p9412: enable gpio:110\n[    2.592720] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.592729] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.592737] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.592741] p9221 i2c-p9412: has_rtx:1\n[    2.592749] p9221 i2c-p9412: Failed to parse dt\n[    2.592836] lwis lwis-ois-gargoyle: I2C Device Probe: Success\n[    2.593048] lwis lwis-ois-jotnar: Base Probe: Success\n[    2.593055] i2c i2c-3: Failed to register i2c client  at 0x34 (-16)\n[    2.593372] p9221 i2c-p9412: selecting p9412\n[    2.593381] p9221 i2c-p9412: enable gpio:110\n[    2.593388] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.593397] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.593404] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.593407] p9221 i2c-p9412: has_rtx:1\n[    2.593415] p9221 i2c-p9412: Failed to parse dt\n[    2.593503] lwis lwis-ois-jotnar: I2C Device Probe: Success\n[    2.593617] lwis lwis-flash-lm3644: Base Probe: Success\n[    2.593988] p9221 i2c-p9412: selecting p9412\n[    2.593997] p9221 i2c-p9412: enable gpio:110\n[    2.594004] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.594014] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.594021] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.594025] p9221 i2c-p9412: has_rtx:1\n[    2.594033] p9221 i2c-p9412: Failed to parse dt\n[    2.594110] lwis lwis-flash-lm3644: I2C Device Probe: Success\n[    2.594165] SLC device initialization\n[    2.594326] lwis lwis-slc: Base Probe: Success\n[    2.594329] lwis lwis-slc: SLC Device Probe: Success\n[    2.594440] lwis-dpm: DPM device initialization\n[    2.594591] lwis lwis-dpm: Base Probe: Success\n[    2.594815] mali-mgm physical-memory-group-manager: Memory group manager probed successfully\n[    2.595028] mali-pcm priority-control-manager: Priority control manager probed successfully\n[    2.595246] mali-pma protected-memory-allocator: Protected memory allocator probed successfully\n[    2.596112] mali 28000000.mali: Kernel DDK version r38p1-01eac0\n[    2.596330] mali 28000000.mali: using synchronous suspend for TOP domain\n[    2.596969] mali 28000000.mali: Failed to find voltage for clock 1 frequency 633000 in gpu_dvfs_table_v2\n[    2.597065] p9221 i2c-p9412: selecting p9412\n[    2.597074] p9221 i2c-p9412: enable gpio:110\n[    2.597081] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.597102] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.597109] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.597113] p9221 i2c-p9412: has_rtx:1\n[    2.597121] p9221 i2c-p9412: Failed to parse dt\n[    2.597206] synaptics_tcm_spi spi0.0: Direct firmware load for synaptics.img failed with error -2\n[    2.597213] [  error] syna_dev_reflash_startup_work: Fail to request synaptics.img\n[    2.597553] [GPU cooling] index : 0, frequency : 848000\n[    2.597556] [GPU cooling] index : 1, frequency : 762000\n[    2.597558] [GPU cooling] index : 2, frequency : 701000\n[    2.597560] [GPU cooling] index : 3, frequency : 572000\n[    2.597562] [GPU cooling] index : 4, frequency : 510000\n[    2.597564] [GPU cooling] index : 5, frequency : 471000\n[    2.597565] [GPU cooling] index : 6, frequency : 400000\n[    2.597567] [GPU cooling] index : 7, frequency : 351000\n[    2.597569] [GPU cooling] index : 8, frequency : 302000\n[    2.597571] [GPU cooling] index : 9, frequency : 251000\n[    2.597573] [GPU cooling] index : 10, frequency : 202000\n[    2.597677] gpu cooling registered for thermal-gpufreq-0, capacitance: 4250, power_callback: true\n[    2.598346] mali 28000000.mali: No OPPs found in device tree! Scaling timeouts using 100000 kHz\n[    2.598356] mali 28000000.mali: GPU identified as 0x2 arch 10.8.6 r0p0 status 4\n[    2.598746] mali 28000000.mali: No priority control manager is configured\n[    2.598777] mali 28000000.mali: Memory group manager successfully loaded\n[    2.598816] mali 28000000.mali: Protected memory allocator successfully loaded\n[    2.599056] mali 28000000.mali: Capping CSF_FIRMWARE_TIMEOUT to CSF_FIRMWARE_PING_TIMEOUT\n[    2.599414] p9221 i2c-p9412: selecting p9412\n[    2.599423] p9221 i2c-p9412: enable gpio:110\n[    2.599430] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.599439] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.599446] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.599450] p9221 i2c-p9412: has_rtx:1\n[    2.599458] p9221 i2c-p9412: Failed to parse dt\n[    2.600223] mali 28000000.mali: Clock not available for devfreq\n[    2.600227] mali 28000000.mali: Continuing without devfreq\n[    2.600391] mali 28000000.mali: Probed as mali0\n[    2.600716] p9221 i2c-p9412: selecting p9412\n[    2.600728] p9221 i2c-p9412: enable gpio:110\n[    2.600735] p9221 i2c-p9412: unable to read idt,gpio_qi_vbus_en from dt: -2\n[    2.600744] p9221 i2c-p9412: WLC enable/disable pin:110\n[    2.600751] p9221 i2c-p9412: unable to read idt,gpio_slct from dt: -2\n[    2.600755] p9221 i2c-p9412: has_rtx:1\n[    2.600763] p9221 i2c-p9412: Failed to parse dt\n[    2.600791] clk: Not disabling unused clocks\n[    2.600829] exynos_pd: pd-eh sync_state: turn_off = 0\n[    2.600831] exynos_pd: pd-g3d sync_state: children need sync\n[    2.600834] exynos_pd: pd-disp sync_state: children need sync\n[    2.600836] exynos_pd: pd-g2d sync_state: turn_off = 1\n[    2.600968] exynos_pd: pd-mfc sync_state: turn_off = 1\n[    2.601117] exynos_pd: pd-csis sync_state: turn_off = 1\n[    2.601321] exynos_pd: pd-pdp sync_state: children need sync\n[    2.601324] exynos_pd: pd-g3aa sync_state: turn_off = 1\n[    2.601459] exynos_pd: pd-ipp sync_state: turn_off = 1\n[    2.601663] exynos_pd: pd-pdp sync_state: turn_off = 1\n[    2.601824] exynos_pd: pd-itp sync_state: children need sync\n[    2.601827] exynos_pd: pd-mcsc sync_state: turn_off = 1\n[    2.602025] exynos_pd: pd-gdc sync_state: turn_off = 1\n[    2.602241] exynos_pd: pd-tnr sync_state: turn_off = 1\n[    2.602450] exynos_pd: pd-bo sync_state: turn_off = 1\n[    2.602572] exynos_pd: pd-tpu sync_state: turn_off = 1\n[    2.602730] exynos_pd: pd-aur sync_state: turn_off = 1\n[    2.602895] exynos_pd: pd-embedded_g3d sync_state: turn_off = 1\n[    2.602987] exynos_pd: pd-g3d sync_state: turn_off = 1\n[    2.603144] exynos_pd: pd-dpu sync_state: turn_off = 1\n[    2.603333] exynos_pd: pd-disp sync_state: turn_off = 1\n[    2.603442] exynos_pd: pd-dns sync_state: turn_off = 1\n[    2.603596] exynos_pd: pd-itp sync_state: turn_off = 1\n[    2.603705] ALSA device list:\n[    2.603710]   No soundcards found.\n[    2.603731] Warning: unable to open an initial console.\n[    2.606270] Freeing unused kernel memory: 10176K\n[    2.636745] Failed to set sysctl parameter 'kernel.softlockup_panic=1': parameter not found\n[    2.636818] Run /init as init process\n[    2.636820]   with arguments:\n[    2.636822]     /init\n[    2.636824]     kasan_multi_shot\n[    2.636825]     bootconfig\n[    2.636827]     bootconfig\n[    2.636828]   with environment:\n[    2.636830]     HOME=/\n[    2.636831]     TERM=linux\n[    2.636833]     stack_depot_disable=off\n[    2.636835]     reserve-fimc=0xffffff90f9fe0000\n[    2.636836]     softlockup_panic=1\n[    2.636839]     dyndbg=func alloc_contig_dump_pages +p\n[    2.636840]     page_pinner=on\n[    2.636842]     buildvariant=userdebug\n[    2.769720] odpm: S2MPG12: Applied new sampling frequency (type 0) in Hz: 1000.000000\n[    3.445009] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    3.445162] cpu1 \n[    3.445211] cpu4 \n[    3.445256] cpu6 \n[    3.445294] \n               Offline CPUs: \n[    3.447617] cpu1 \n[    3.450384] psci: CPU1 killed (polled 0 ms)\n[    3.451031] cpu2 \n[    3.453409] psci: CPU2 killed (polled 0 ms)\n[    3.453787] cpu3 \n[    3.455458] psci: CPU3 killed (polled 0 ms)\n[    3.455836] cpu4 \n[    3.456520] psci: CPU4 killed (polled 10 ms)\n[    3.456888] cpu5 \n[    3.458650] psci: CPU5 killed (polled 0 ms)\n[    3.459029] cpu6 \n[    3.460257] psci: CPU6 killed (polled 0 ms)\n[    3.460636] cpu7 \n[    3.460801] psci: CPU7 killed (polled 0 ms)\n\n[   33.117080] S2MPG12_LDO7: disabling\n[   33.117437] S2MPG12_LDO8: disabling\n[   33.117775] S2MPG12_LDO9: disabling\n[   33.118117] S2MPG12_LDO10: disabling\n[   33.126553] slg51002 4-0075: No init registers are overridden\n[   33.488193] Detected VIPT I-cache on CPU1\n[   33.488288] GICv3: CPU1: found redistributor 100 region 0:0x0000000010460000\n[   33.488424] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]\n[   33.492637] Detected PIPT I-cache on CPU4\n[   33.492652] GICv3: CPU4: found redistributor 400 region 0:0x00000000104c0000\n[   33.492689] CPU4: Booted secondary processor 0x0000000400 [0x411fd411]\n[   34.499609] \n               ===== CPU 1 =====\n               Frequencies: 300 574 738 930 1098 1197 1328 1401 1598 1704 1803\n               \n                300: \n[   91.372867] s2mpg13-spmic-thermal s2mpg13-spmic-thermal: PMIC_THERM[1] IRQ, 466 ot_irq:0\n[  583.814654]  1109     3.7 C/MHz     38 mW   20.7 J   29.0 I/mJ   541.2 s\n                574: \n[  873.963120]  2127     3.7 C/MHz     55 mW   15.4 J   39.0 I/mJ   282.0 s\n                738: \n[ 1101.391022]  2736     3.7 C/MHz     65 mW   14.2 J   42.2 I/mJ   219.3 s\n                930: \n[ 1283.406647]  3450     3.7 C/MHz     76 mW   13.3 J   45.2 I/mJ   173.9 s\n               1098: \n[ 1438.799991]  4074     3.7 C/MHz     87 mW   12.7 J   47.1 I/mJ   147.3 s\n               1197: \n[ 1582.073972]  4440     3.7 C/MHz     93 mW   12.5 J   47.9 I/mJ   135.1 s\n               1328: \n[ 1711.996498]  4926     3.7 C/MHz    102 mW   12.4 J   48.4 I/mJ   121.8 s\n               1401: \n[ 1835.506165]  5200     3.7 C/MHz    107 mW   12.3 J   48.8 I/mJ   115.4 s\n               1598: \n[ 1944.817448]  5930     3.7 C/MHz    145 mW   14.7 J   40.8 I/mJ   101.2 s\n               1704: \n[ 2047.813468]  6325     3.7 C/MHz    169 mW   16.0 J   37.5 I/mJ    94.9 s\n               1803: \n[ 2145.631167] psci: CPU1 killed (polled 0 ms)\n[ 2145.634310] Detected PIPT I-cache on CPU6\n[ 2145.634379] GICv3: CPU6: found redistributor 600 region 0:0x0000000010500000\n[ 2145.634519] CPU6: Booted secondary processor 0x0000000600 [0x411fd440]\n[ 2146.638299]  6690     3.7 C/MHz    260 mW   23.3 J   25.8 I/mJ    89.7 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 400 553 696 799 910 1024 1197 1328 1491 1663 1836 1999 2130 2253 2348\n               \n                400: \n[ 2319.863246]  3634     9.1 C/MHz     26 mW    4.3 J   139.0 I/mJ   165.1 s\n                553: \n[ 2447.158371]  5035     9.1 C/MHz     38 mW    4.6 J   131.2 I/mJ   119.2 s\n                696: \n[ 2549.902152]  6342     9.1 C/MHz     52 mW    4.9 J   122.6 I/mJ    94.6 s\n                799: \n[ 2640.515552]  7274     9.1 C/MHz     63 mW    5.2 J   116.3 I/mJ    82.5 s\n                910: \n[ 2721.098620]  8281     9.1 C/MHz     77 mW    5.6 J   107.2 I/mJ    72.5 s\n               1024: \n[ 2793.534030]  9330     9.1 C/MHz     91 mW    5.8 J   102.7 I/mJ    64.3 s\n               1197: \n[ 2856.713972] 10898     9.1 C/MHz    120 mW    6.6 J   90.8 I/mJ    55.1 s\n               1328: \n[ 2914.468342] 12090     9.1 C/MHz    144 mW    7.2 J   83.9 I/mJ    49.6 s\n               1491: \n[ 2966.800531] 13573     9.1 C/MHz    182 mW    8.1 J   74.4 I/mJ    44.2 s\n               1663: \n[ 3014.540087] 15147     9.1 C/MHz    226 mW    9.0 J   66.9 I/mJ    39.6 s\n               1836: \n[ 3058.578356] 16708     9.1 C/MHz    286 mW   10.3 J   58.4 I/mJ    35.9 s\n               1999: \n[ 3099.663346] 18205     9.1 C/MHz    353 mW   11.6 J   51.6 I/mJ    33.0 s\n               2130: \n[ 3138.712691] 19403     9.1 C/MHz    440 mW   13.6 J   44.1 I/mJ    30.9 s\n               2253: \n[ 3176.088895] 20513     9.1 C/MHz    538 mW   15.7 J   38.1 I/mJ    29.3 s\n               2348: \n[ 3212.289486] psci: CPU4 killed (polled 0 ms)\n[ 3213.294506] 21377     9.1 C/MHz    634 mW   17.8 J   33.7 I/mJ    28.1 s\n               \n               \n               ===== CPU 6 =====\n               Frequencies: 500 851 984 1106 1277 1426 1582 1745 1826 2048 2188 2252 2401 2507 2630 2704 2802 2850\n               \n                500: \n[ 3350.660050]  4643     9.3 C/MHz     47 mW    6.1 J   99.0 I/mJ   129.2 s\n                851: \n[ 3434.555889]  7919     9.3 C/MHz     86 mW    6.5 J   92.0 I/mJ    75.8 s\n                984: \n[ 3508.331382]  9139     9.3 C/MHz    108 mW    7.1 J   84.7 I/mJ    65.7 s\n               1106: \n[ 3574.836238] 10278     9.3 C/MHz    132 mW    7.7 J   78.1 I/mJ    58.4 s\n               1277: \n[ 3633.462156] 11881     9.3 C/MHz    171 mW    8.6 J   69.6 I/mJ    50.5 s\n               1426: \n[ 3686.879846] 13248     9.3 C/MHz    210 mW    9.5 J   63.1 I/mJ    45.3 s\n               1582: \n[ 3735.814246] 14704     9.3 C/MHz    257 mW   10.5 J   57.1 I/mJ    40.8 s\n               1745: \n[ 3780.920187] 16225     9.3 C/MHz    316 mW   11.7 J   51.3 I/mJ    37.0 s\n               1826: \n[ 3824.358647] 16992     9.3 C/MHz    383 mW   13.5 J   44.3 I/mJ    35.3 s\n               2048: \n[ 3863.997557] 19041     9.3 C/MHz    497 mW   15.7 J   38.3 I/mJ    31.5 s\n               2188: \n[ 3901.633169] 20334     9.3 C/MHz    588 mW   17.4 J   34.6 I/mJ    29.5 s\n               2252: \n[ 3938.402531] 20948     9.3 C/MHz    640 mW   18.3 J   32.7 I/mJ    28.6 s\n               2401: \n[ 3973.424124] 22310     9.3 C/MHz    772 mW   20.8 J   28.9 I/mJ    26.9 s\n               2507: \n[ 4007.304159] 23297     9.3 C/MHz    900 mW   23.2 J   25.9 I/mJ    25.8 s\n               2630: \n[ 4039.978709] 24442     9.3 C/MHz   1055 mW   25.9 J   23.2 I/mJ    24.6 s\n               2704: \n[ 4071.977433] 25135     9.3 C/MHz   1203 mW   28.7 J   20.9 I/mJ    23.9 s\n               2802: \n[ 4103.128406] 26055     9.3 C/MHz   1433 mW   33.0 J   18.2 I/mJ    23.0 s\n               2850: \n[ 4133.901881] psci: CPU6 killed (polled 0 ms)\n[ 4133.911401] 26499     9.3 C/MHz   1568 mW   35.5 J   16.9 I/mJ    22.6 s\n               \n               \n               Benchmark finished!\n[ 4133.973825] \n               real\t68m51.199s\n               user\t62m20.677s\n               sys\t0m0.161s\n"
  },
  {
    "path": "results/gs201/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  9:          0     GICv3  25 Level     vgic\n 11:         93     GICv3  30 Level     arch_timer\n 12:          0     GICv3  27 Level     kvm guest vtimer\n 84:        138     GICv3 419 Level     11840000.pinctrl\n 85:          0     GICv3 453 Level     14440000.pinctrl\n 86:          0     GICv3 696 Level     10840000.pinctrl\n 87:          0     GICv3 715 Level     10c40000.pinctrl\n 88:          0     GICv3 454 Level     14460000.pinctrl\n 89:          0     GICv3 150 Level     1a090000.sysmmu\n 90:          0     GICv3 151 Level     1a090000.sysmmu\n 91:          0     GICv3 179 Level     1ca40000.sysmmu\n 92:          0     GICv3 180 Level     1ca40000.sysmmu\n 93:          0     GICv3 252 Level     1a510000.sysmmu\n 94:          0     GICv3 253 Level     1a510000.sysmmu\n 95:          0     GICv3 263 Level     1a540000.sysmmu\n 96:          0     GICv3 264 Level     1a540000.sysmmu\n 97:          0     GICv3 289 Level     1b080000.sysmmu\n 98:          0     GICv3 290 Level     1b080000.sysmmu\n 99:          0     GICv3 312 Level     1c100000.sysmmu\n100:          0     GICv3 313 Level     1c100000.sysmmu\n101:          0     GICv3 315 Level     1c110000.sysmmu\n102:          0     GICv3 316 Level     1c110000.sysmmu\n103:          0     GICv3 318 Level     1c120000.sysmmu\n104:          0     GICv3 319 Level     1c120000.sysmmu\n105:          0     GICv3 345 Level     1c660000.sysmmu\n106:          0     GICv3 347 Level     1c660000.sysmmu\n107:          0     GICv3 348 Level     1c690000.sysmmu\n108:          0     GICv3 350 Level     1c690000.sysmmu\n109:          0     GICv3 351 Level     1c710000.sysmmu\n110:          0     GICv3 353 Level     1c710000.sysmmu\n111:          0     GICv3 357 Level     1a880000.sysmmu\n112:          0     GICv3 358 Level     1a880000.sysmmu\n113:          0     GICv3 386 Level     1d0a0000.sysmmu\n114:          0     GICv3 387 Level     1d0a0000.sysmmu\n115:          0     GICv3 389 Level     1d0d0000.sysmmu\n116:          0     GICv3 390 Level     1d0d0000.sysmmu\n117:          0     GICv3 392 Level     1d100000.sysmmu\n118:          0     GICv3 393 Level     1d100000.sysmmu\n119:          0     GICv3 502 Level     1ad00000.sysmmu\n120:          0     GICv3 503 Level     1ad00000.sysmmu\n121:          0     GICv3 527 Level     1b780000.sysmmu\n122:          0     GICv3 528 Level     1b780000.sysmmu\n123:          0     GICv3 530 Level     1b7b0000.sysmmu\n124:          0     GICv3 531 Level     1b7b0000.sysmmu\n125:          0     GICv3 533 Level     1b7e0000.sysmmu\n126:          0     GICv3 534 Level     1b7e0000.sysmmu\n127:          0     GICv3 539 Level     1c870000.sysmmu\n128:          0     GICv3 540 Level     1c870000.sysmmu\n129:          0     GICv3 542 Level     1c8a0000.sysmmu\n130:          0     GICv3 543 Level     1c8a0000.sysmmu\n131:          0     GICv3 739 Level     1bc70000.sysmmu\n132:          0     GICv3 740 Level     1bc70000.sysmmu\n133:          0     GICv3 742 Level     1bca0000.sysmmu\n134:          0     GICv3 743 Level     1bca0000.sysmmu\n135:          0     GICv3 745 Level     1bcd0000.sysmmu\n136:          0     GICv3 746 Level     1bcd0000.sysmmu\n137:          0     GICv3 748 Level     1bd00000.sysmmu\n138:          0     GICv3 749 Level     1bd00000.sysmmu\n139:          0     GICv3 751 Level     1bd30000.sysmmu\n140:          0     GICv3 752 Level     1bd30000.sysmmu\n141:          0     GICv3 773 Level     1cc40000.sysmmu\n142:          0     GICv3 774 Level     1cc40000.sysmmu\n143:          0     GICv3 168 Level     25a50000.sysmmu\n144:          0     GICv3 170 Level     25a50000.sysmmu\n145:          0     GICv3 169 Level     25a80000.sysmmu\n146:          0     GICv3 171 Level     25a80000.sysmmu\n147:          0     GICv3 294 Level     1c0b0000.drmdpp\n148:          0     GICv3 303 Level     1c0b0000.drmdpp\n149:          0     GICv3 295 Level     1c0b1000.drmdpp\n150:          0     GICv3 304 Level     1c0b1000.drmdpp\n151:          0     GICv3 296 Level     1c0b2000.drmdpp\n152:          0     GICv3 305 Level     1c0b2000.drmdpp\n153:          0     GICv3 297 Level     1c0b3000.drmdpp\n154:          0     GICv3 306 Level     1c0b3000.drmdpp\n155:          0     GICv3 298 Level     1c0b4000.drmdpp\n156:          0     GICv3 307 Level     1c0b4000.drmdpp\n157:          0     GICv3 299 Level     1c0b5000.drmdpp\n158:          0     GICv3 308 Level     1c0b5000.drmdpp\n159:          0     GICv3 300 Level     1c0b8000.drmdpp\n160:          0     GICv3 301 Level     1c0b9000.drmdpp\n161:          0     GICv3 302 Level     1c0bc000.drmdpp\n162:          0     GICv3 282 Level     1c2c0000.drmdsim\n163:          0     GICv3 273 Level     1c240000.drmdecon\n164:          0     GICv3 272 Level     1c240000.drmdecon\n165:          0     GICv3 271 Level     1c240000.drmdecon\n166:          0     GICv3 270 Level     1c240000.drmdecon\n167:          0     GICv3 269 Level     1c240000.drmdecon\n168:          0     GICv3 292 Level     1c240000.drmdecon\n169:          0     GICv3 281 Level     1c242000.drmdecon\n170:          0     GICv3 280 Level     1c242000.drmdecon\n171:          0     GICv3 279 Level     1c242000.drmdecon\n172:          0     GICv3 361 Level     28000000.mali\n173:          0     GICv3 362 Level     28000000.mali\n174:          3     GICv3 360 Level     28000000.mali\n175:          0     GICv3 107 Level     18300000.mbox\n176:          0     GICv3 148 Level     19000000.aoc\n177:         48     GICv3 395 Level     gsa-mb-irq\n178:        298     GICv3 706 Level     10900000.hsi2c\n179:          0     GICv3 707 Level     10910000.hsi2c\n180:          0     GICv3 708 Level     10920000.hsi2c\n181:          0     GICv3 709 Level     10930000.hsi2c\n182:        272     GICv3 713 Level     10970000.hsi2c\n183:         60     GICv3 727 Level     10d60000.hsi2c\n184:          3     GICv3 728 Level     10da0000.hsi2c\n185:          0     GICv3 710 Level     spi-s3c64xx\n186:          0     GICv3 712 Level     spi-s3c64xx\n187:          0     GICv3 722 Level     spi-s3c64xx\n188:          0     GICv3 723 Level     spi-s3c64xx\n189:          0     GICv3 724 Level     spi-s3c64xx\n190:          0     GICv3 729 Level     spi-s3c64xx\n192:          0     GICv3 100 Level     spi-s3c64xx\n193:          0     GICv3 172 Level     25a70000.s2mpu_aur_idma\n194:          0     GICv3 173 Level     25aa0000.s2mpu_aur_inst_data\n195:          0     GICv3 181 Level     1ca60000.s2mpu_bo\n196:          0     GICv3 220 Level     20c70000.s2mpu_cpucl0\n197:          0     GICv3 262 Level     1a520000.s2mpu_csis0\n198:          0     GICv3 265 Level     1a550000.s2mpu_csis1\n199:          0     GICv3 291 Level     1b0a0000.s2s2mpu_dnsmpu\n200:          0     GICv3 314 Level     1c160000.s2mpu_dpu0\n201:          0     GICv3 317 Level     1c170000.s2mpu_dpu1\n202:          0     GICv3 320 Level     1c180000.s2mpu_dpu2\n203:          0     GICv3 333 Level     17040000.s2mpu_eh\n204:          0     GICv3 346 Level     1c680000.s2mpu_g2d0\n205:          0     GICv3 349 Level     1c6b0000.s2mpu_g2d1\n206:          0     GICv3 352 Level     1c730000.s2mpu_g2d2\n207:          0     GICv3 359 Level     1a8a0000.s2mpu_g3aa\n208:          0     GICv3 655 Level     20080000.s2mpu_g3d\n209:          0     GICv3 388 Level     1d0c0000.s2mpu_gdc0\n210:          0     GICv3 391 Level     1d0f0000.s2mpu_gdc1\n211:          0     GICv3 394 Level     1d120000.s2mpu_gdc2\n212:          0     GICv3 405 Level     11070000.s2mpu_hsi0\n213:          0     GICv3 440 Level     11880000.s2mpu_hsi1\n214:          0     GICv3 480 Level     145e0000.s2mpu_hsi2\n215:          0     GICv3 398 Level     17c60000.s2mpu_gsa\n216:          0     GICv3 504 Level     1ad20000.s2mpu_ipp\n217:          0     GICv3 529 Level     1b7a0000.s2mpu_mcsc0\n218:          0     GICv3 532 Level     1b7d0000.s2mpu_mcsc1\n219:          0     GICv3 535 Level     1b800000.s2mpu_mcsc2\n220:          0     GICv3 541 Level     1c890000.s2mpu_mfc0\n221:          0     GICv3 544 Level     1c8c0000.s2mpu_mfc1\n222:          0     GICv3 868 Level     101e0000.s2mpu_misc\n223:          0     GICv3 741 Level     1bc90000.s2mpu_tnr0\n224:          0     GICv3 744 Level     1bcc0000.s2mpu_tnr1\n225:          0     GICv3 747 Level     1bcf0000.s2mpu_tnr2\n226:          0     GICv3 750 Level     1bd20000.s2mpu_tnr3\n227:          0     GICv3 753 Level     1bd50000.s2mpu_tnr4\n228:          0     GICv3 775 Level     1cc60000.s2mpu_tpu\n229:        226     GICv3 485 Level     ufshcd\n230:          0     GICv3 762 Level     janeiro\n231:          0     GICv3 763 Level     janeiro\n232:          0     GICv3 764 Level     janeiro\n233:          0     GICv3 765 Level     janeiro\n234:          0     GICv3 766 Level     janeiro\n235:          0     GICv3 767 Level     janeiro\n236:          0     GICv3 768 Level     janeiro\n237:          0     GICv3 769 Level     janeiro\n243:          0     GICv3 221 Level     lwis-csi:csi-link0-src0, lwis-csi:csi-link0-src1, lwis-csi:csi-link0-fs, lwis-csi:csi-link0-fe\n244:          0     GICv3 222 Level     lwis-csi:csi-link1-src0, lwis-csi:csi-link1-src1, lwis-csi:csi-link1-fs, lwis-csi:csi-link1-fe\n245:          0     GICv3 223 Level     lwis-csi:csi-link2-src0, lwis-csi:csi-link2-src1, lwis-csi:csi-link2-fs, lwis-csi:csi-link2-fe\n246:          0     GICv3 224 Level     lwis-csi:csi-link3-src0, lwis-csi:csi-link3-src1, lwis-csi:csi-link3-fs, lwis-csi:csi-link3-fe\n247:          0     GICv3 225 Level     lwis-csi:csi-link4-src0, lwis-csi:csi-link4-src1, lwis-csi:csi-link4-fs, lwis-csi:csi-link4-fe\n248:          0     GICv3 226 Level     lwis-csi:csi-link5-src0, lwis-csi:csi-link5-src1, lwis-csi:csi-link5-fs, lwis-csi:csi-link5-fe\n249:          0     GICv3 227 Level     lwis-csi:csi-link6-src0, lwis-csi:csi-link6-src1, lwis-csi:csi-link6-fs, lwis-csi:csi-link6-fe\n250:          0     GICv3 228 Level     lwis-csi:csi-link7-src0, lwis-csi:csi-link7-src1, lwis-csi:csi-link7-fs, lwis-csi:csi-link7-fe\n251:          0     GICv3 266 Level     lwis-csi:zsl-dma0\n252:          0     GICv3 267 Level     lwis-csi:zsl-dma1\n253:          0     GICv3 268 Level     lwis-csi:zsl-dma2\n254:          0     GICv3 249 Level     lwis-csi:strp-dma0\n255:          0     GICv3 250 Level     lwis-csi:strp-dma1\n256:          0     GICv3 251 Level     lwis-csi:strp-dma2\n257:          0     GICv3 229 Level     lwis-csi:csis-dma0\n258:          0     GICv3 230 Level     lwis-csi:csis-dma1\n259:          0     GICv3 231 Level     lwis-csi:csis-dma2\n260:          0     GICv3 232 Level     lwis-csi:csis-dma3\n261:          0     GICv3 233 Level     lwis-csi:csi-ebuf0\n262:          0     GICv3 234 Level     lwis-csi:csi-ebuf1\n263:          0     GICv3 235 Level     lwis-csi:csi-ebuf2\n264:          0     GICv3 236 Level     lwis-csi:csi-ebuf3\n265:          0     GICv3 681 Level     lwis-pdp:pdp-ctx0-src1\n266:          0     GICv3 682 Level     lwis-pdp:pdp-ctx0-src2\n267:          0     GICv3 683 Level     lwis-pdp:pdp-ctx1-src1\n268:          0     GICv3 684 Level     lwis-pdp:pdp-ctx1-src2\n269:          0     GICv3 685 Level     lwis-pdp:pdp-ctx2-src1\n270:          0     GICv3 686 Level     lwis-pdp:pdp-ctx2-src2\n271:          0     GICv3 486 Level     lwis-ipp:ipp0-int1, lwis-ipp:ipp0_fro_int0\n272:          0     GICv3 487 Level     lwis-ipp:ipp0-int2, lwis-ipp:ipp0_fro_int1\n273:          0     GICv3 488 Level     lwis-ipp:ipp1-int1, lwis-ipp:ipp1_fro_int0\n274:          0     GICv3 489 Level     lwis-ipp:ipp1-int2, lwis-ipp:ipp1_fro_int1\n275:          0     GICv3 490 Level     lwis-ipp:ipp2-int1, lwis-ipp:ipp2_fro_int0\n276:          0     GICv3 491 Level     lwis-ipp:ipp2-int2, lwis-ipp:ipp2_fro_int1\n277:          0     GICv3 505 Level     lwis-gtnr-align:gtnr-align-int\n278:          0     GICv3 492 Level     lwis-gtnr-align:gtnr-align-mute\n279:          0     GICv3 754 Level     lwis-gtnr-merge:gtnr-merge-int0, lwis-gtnr-merge:gtnr-merge-cmdq\n280:          0     GICv3 755 Level     lwis-gtnr-merge:gtnr-merge-int1\n281:          0     GICv3 354 Level     lwis-g3aa:g3aa-ctx0-int, lwis-g3aa:g3aa-ctx1-int, lwis-g3aa:g3aa-ctx2-int, lwis-g3aa:g3aa-err-int\n282:          0     GICv3 506 Level     lwis-itp:itp-itp-int0, lwis-itp:itp-itp-cmdq-int\n283:          0     GICv3 284 Level     lwis-itp:itp-dns-int0, lwis-itp:itp-dns-cmdq-int\n284:          0     GICv3 285 Level     lwis-itp:itp-dns-int1\n285:          0     GICv3 515 Level     lwis-itp:itp-itsc-int0, lwis-itp:itp-itsc-cmdq-int\n286:          0     GICv3 516 Level     lwis-itp:itp-itsc-int1\n287:          0     GICv3 519 Level     lwis-mcsc:mcsc-int0, lwis-mcsc:mcsc-cmdq-int\n288:          0     GICv3 520 Level     lwis-mcsc:mcsc-int1\n289:          0     GICv3 383 Level     lwis-scsc:scsc-int0, lwis-scsc:scsc-cmdq-int\n290:          0     GICv3 384 Level     lwis-scsc:scsc-int1\n291:          0     GICv3 370 Level     lwis-gdc0:gdc-int0, lwis-gdc0:gdc-cmdq-int\n292:          0     GICv3 371 Level     lwis-gdc0:gdc-int1\n293:          0     GICv3 373 Level     lwis-gdc1:gdc-int0, lwis-gdc1:gdc-cmdq-int\n294:          0     GICv3 374 Level     lwis-gdc1:gdc-int1\n295:          0     GICv3 669 Level     BUS_DATA0\n296:          0     GICv3 672 Level     BUS_DATA1\n297:          0     GICv3 657 Level     BUS_DATA2\n298:          0     GICv3 628 Level     BUS_DATA3\n299:          0     GICv3 639 Level     BUS_PERI0\n300:          0     GICv3 670 Level     BUS_PERI1\n301:          0     GICv3 673 Level     BUS_PERI2\n302:          0     GICv3 658 Level     BUS_PERI3\n313:          0     GICv3 420 Level     exynos-pcie\n314:          0     GICv3 421 Level     exynos-pcie-msi0\n319:          0     GICv3 438 Level     11860000.sysmmu\n320:          0     GICv3 460 Level     exynos-pcie\n326:          0     GICv3 478 Level     145c0000.sysmmu\n327:          0     GICv3 176 Level     1cb00000.bigocean\n328:          0     GICv3 817 Level     mct_comp_irq\n332:     418816     GICv3 821 Level     exynos-mct\n333:          0     GICv3 822 Level     exynos-mct\n334:          0     GICv3 823 Level     exynos-mct\n335:          0     GICv3 824 Level     exynos-mct\n336:          0     GICv3 825 Level     exynos-mct\n337:          0     GICv3 826 Level     exynos-mct\n338:          0     GICv3 827 Level     exynos-mct\n339:          0     GICv3 828 Level     exynos-mct\n340:          0     GICv3 321 Level     eh_error\n351:          0     GICv3 838 Level     10110000.pdma0\n352:         21     GICv3  23 Level     arm-pmu\n353:          0     GICv3 184 Level     arm_dsu_0\n354:          0     GICv3 110 Level     18210000.acpm_ipc\n355:          0     GICv3 338 Level     1c700000.smfc\n359:          0     GICv3 337 Level     1c640000.g2d\n360:          0     GICv3 829 Level     10060000.watchdog_cl0\n361:          0     GICv3 830 Level     10070000.watchdog_cl1\n365:          0     gpa10   1 Edge      gpio-keys: KEY_VOLUMEDOWN\n366:          0      gpa8   5 Edge      gpio-keys: KEY_VOLUMEUP\n368:          0      gpa0   0 Edge      17c90000.gsa-ns:gsa_gsc@0\n371:          0      gpa6   4 Level     ttyBCM\n372:          2     GICv3 104 Level     s2mpg12-irq\n373:          0   s2mpg12     Edge      pwronf-irq\n374:          0   s2mpg12     Edge      pwronr-irq\n383:          0   s2mpg12     Edge      rtc-alarm0\n394:          0   s2mpg12     Edge      BUCK_OCP_IRQ\n395:          0   s2mpg12     Edge      BUCK_OCP_IRQ\n396:          0   s2mpg12     Edge      BUCK_OCP_IRQ\n397:          0   s2mpg12     Edge      BUCK_OCP_IRQ\n398:          0   s2mpg12     Edge      BUCK_OCP_IRQ\n399:          0   s2mpg12     Edge      BUCK_OCP_IRQ\n400:          0   s2mpg12     Edge      BUCK_OCP_IRQ\n401:          0   s2mpg12     Edge      BUCK_OCP_IRQ\n402:          0   s2mpg12     Edge      BUCK_OCP_IRQ\n403:          0   s2mpg12     Edge      BUCK_OCP_IRQ\n457:          0   s2mpg13     Edge      PMIC_THERM_IRQ\n458:          0   s2mpg13     Edge      PMIC_THERM_IRQ\n459:          0   s2mpg13     Edge      PMIC_THERM_IRQ\n460:          0   s2mpg13     Edge      PMIC_THERM_IRQ\n461:          0   s2mpg13     Edge      PMIC_THERM_IRQ\n462:          0   s2mpg13     Edge      PMIC_THERM_IRQ\n463:          0   s2mpg13     Edge      PMIC_THERM_IRQ\n464:          0   s2mpg13     Edge      PMIC_THERM_IRQ\n465:          0   s2mpg13     Edge      PMIC_THERM_IRQ\n466:          1   s2mpg13     Edge      PMIC_THERM_IRQ\n467:          0   s2mpg13     Edge      PMIC_THERM_IRQ\n468:          0   s2mpg13     Edge      PMIC_THERM_IRQ\n469:          0   s2mpg13     Edge      PMIC_THERM_IRQ\n470:          0   s2mpg13     Edge      PMIC_THERM_IRQ\n471:          0   s2mpg13     Edge      PMIC_THERM_IRQ\n472:          0   s2mpg13     Edge      PMIC_THERM_IRQ\n473:          0   PCI-MSI   0 Edge      PCIe PME, aerdrv\n474:          0   PCI-MSI 134217728 Edge      PCIe PME, aerdrv\n475:          0     GICv3  13 Edge      trusty\n478:          0      gpa9   0 Level     pca9468\n479:          1      gpa8   7 Edge      tbn\n480:        138      gph0   5 Edge      st21nfc_pw_stats_idle_handle\n482:          1      gpa7   0 Level     synaptics_tcm\n483:          1      gpa6   5 Edge      vl53l1_interrupt\n506:          0     GICv3 536 Level     1c8d0000.MFC-0\nIPI0:       357       Rescheduling interrupts\nIPI1:        11       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:         0       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/gs201/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  9:          0          0          0          0          0          0          0          0     GICv3  25 Level     vgic\n 11:         93         35         34         35         35         34         34         34     GICv3  30 Level     arch_timer\n 12:          0          0          0          0          0          0          0          0     GICv3  27 Level     kvm guest vtimer\n 84:          0          0          0          0          0          0          0          0     GICv3 419 Level     11840000.pinctrl\n 85:          0          0          0          0          0          0          0          0     GICv3 453 Level     14440000.pinctrl\n 86:          0          0          0          0          0          0          0          0     GICv3 696 Level     10840000.pinctrl\n 87:          0          0          0          0          0          0          0          0     GICv3 715 Level     10c40000.pinctrl\n 88:          0          0          0          0          0          0          0          0     GICv3 454 Level     14460000.pinctrl\n 89:          0          0          0          0          0          0          0          0     GICv3 150 Level     1a090000.sysmmu\n 90:          0          0          0          0          0          0          0          0     GICv3 151 Level     1a090000.sysmmu\n 91:          0          0          0          0          0          0          0          0     GICv3 179 Level     1ca40000.sysmmu\n 92:          0          0          0          0          0          0          0          0     GICv3 180 Level     1ca40000.sysmmu\n 93:          0          0          0          0          0          0          0          0     GICv3 252 Level     1a510000.sysmmu\n 94:          0          0          0          0          0          0          0          0     GICv3 253 Level     1a510000.sysmmu\n 95:          0          0          0          0          0          0          0          0     GICv3 263 Level     1a540000.sysmmu\n 96:          0          0          0          0          0          0          0          0     GICv3 264 Level     1a540000.sysmmu\n 97:          0          0          0          0          0          0          0          0     GICv3 289 Level     1b080000.sysmmu\n 98:          0          0          0          0          0          0          0          0     GICv3 290 Level     1b080000.sysmmu\n 99:          0          0          0          0          0          0          0          0     GICv3 312 Level     1c100000.sysmmu\n100:          0          0          0          0          0          0          0          0     GICv3 313 Level     1c100000.sysmmu\n101:          0          0          0          0          0          0          0          0     GICv3 315 Level     1c110000.sysmmu\n102:          0          0          0          0          0          0          0          0     GICv3 316 Level     1c110000.sysmmu\n103:          0          0          0          0          0          0          0          0     GICv3 318 Level     1c120000.sysmmu\n104:          0          0          0          0          0          0          0          0     GICv3 319 Level     1c120000.sysmmu\n105:          0          0          0          0          0          0          0          0     GICv3 345 Level     1c660000.sysmmu\n106:          0          0          0          0          0          0          0          0     GICv3 347 Level     1c660000.sysmmu\n107:          0          0          0          0          0          0          0          0     GICv3 348 Level     1c690000.sysmmu\n108:          0          0          0          0          0          0          0          0     GICv3 350 Level     1c690000.sysmmu\n109:          0          0          0          0          0          0          0          0     GICv3 351 Level     1c710000.sysmmu\n110:          0          0          0          0          0          0          0          0     GICv3 353 Level     1c710000.sysmmu\n111:          0          0          0          0          0          0          0          0     GICv3 357 Level     1a880000.sysmmu\n112:          0          0          0          0          0          0          0          0     GICv3 358 Level     1a880000.sysmmu\n113:          0          0          0          0          0          0          0          0     GICv3 386 Level     1d0a0000.sysmmu\n114:          0          0          0          0          0          0          0          0     GICv3 387 Level     1d0a0000.sysmmu\n115:          0          0          0          0          0          0          0          0     GICv3 389 Level     1d0d0000.sysmmu\n116:          0          0          0          0          0          0          0          0     GICv3 390 Level     1d0d0000.sysmmu\n117:          0          0          0          0          0          0          0          0     GICv3 392 Level     1d100000.sysmmu\n118:          0          0          0          0          0          0          0          0     GICv3 393 Level     1d100000.sysmmu\n119:          0          0          0          0          0          0          0          0     GICv3 502 Level     1ad00000.sysmmu\n120:          0          0          0          0          0          0          0          0     GICv3 503 Level     1ad00000.sysmmu\n121:          0          0          0          0          0          0          0          0     GICv3 527 Level     1b780000.sysmmu\n122:          0          0          0          0          0          0          0          0     GICv3 528 Level     1b780000.sysmmu\n123:          0          0          0          0          0          0          0          0     GICv3 530 Level     1b7b0000.sysmmu\n124:          0          0          0          0          0          0          0          0     GICv3 531 Level     1b7b0000.sysmmu\n125:          0          0          0          0          0          0          0          0     GICv3 533 Level     1b7e0000.sysmmu\n126:          0          0          0          0          0          0          0          0     GICv3 534 Level     1b7e0000.sysmmu\n127:          0          0          0          0          0          0          0          0     GICv3 539 Level     1c870000.sysmmu\n128:          0          0          0          0          0          0          0          0     GICv3 540 Level     1c870000.sysmmu\n129:          0          0          0          0          0          0          0          0     GICv3 542 Level     1c8a0000.sysmmu\n130:          0          0          0          0          0          0          0          0     GICv3 543 Level     1c8a0000.sysmmu\n131:          0          0          0          0          0          0          0          0     GICv3 739 Level     1bc70000.sysmmu\n132:          0          0          0          0          0          0          0          0     GICv3 740 Level     1bc70000.sysmmu\n133:          0          0          0          0          0          0          0          0     GICv3 742 Level     1bca0000.sysmmu\n134:          0          0          0          0          0          0          0          0     GICv3 743 Level     1bca0000.sysmmu\n135:          0          0          0          0          0          0          0          0     GICv3 745 Level     1bcd0000.sysmmu\n136:          0          0          0          0          0          0          0          0     GICv3 746 Level     1bcd0000.sysmmu\n137:          0          0          0          0          0          0          0          0     GICv3 748 Level     1bd00000.sysmmu\n138:          0          0          0          0          0          0          0          0     GICv3 749 Level     1bd00000.sysmmu\n139:          0          0          0          0          0          0          0          0     GICv3 751 Level     1bd30000.sysmmu\n140:          0          0          0          0          0          0          0          0     GICv3 752 Level     1bd30000.sysmmu\n141:          0          0          0          0          0          0          0          0     GICv3 773 Level     1cc40000.sysmmu\n142:          0          0          0          0          0          0          0          0     GICv3 774 Level     1cc40000.sysmmu\n143:          0          0          0          0          0          0          0          0     GICv3 168 Level     25a50000.sysmmu\n144:          0          0          0          0          0          0          0          0     GICv3 170 Level     25a50000.sysmmu\n145:          0          0          0          0          0          0          0          0     GICv3 169 Level     25a80000.sysmmu\n146:          0          0          0          0          0          0          0          0     GICv3 171 Level     25a80000.sysmmu\n147:          0          0          0          0          0          0          0          0     GICv3 294 Level     1c0b0000.drmdpp\n148:          0          0          0          0          0          0          0          0     GICv3 303 Level     1c0b0000.drmdpp\n149:          0          0          0          0          0          0          0          0     GICv3 295 Level     1c0b1000.drmdpp\n150:          0          0          0          0          0          0          0          0     GICv3 304 Level     1c0b1000.drmdpp\n151:          0          0          0          0          0          0          0          0     GICv3 296 Level     1c0b2000.drmdpp\n152:          0          0          0          0          0          0          0          0     GICv3 305 Level     1c0b2000.drmdpp\n153:          0          0          0          0          0          0          0          0     GICv3 297 Level     1c0b3000.drmdpp\n154:          0          0          0          0          0          0          0          0     GICv3 306 Level     1c0b3000.drmdpp\n155:          0          0          0          0          0          0          0          0     GICv3 298 Level     1c0b4000.drmdpp\n156:          0          0          0          0          0          0          0          0     GICv3 307 Level     1c0b4000.drmdpp\n157:          0          0          0          0          0          0          0          0     GICv3 299 Level     1c0b5000.drmdpp\n158:          0          0          0          0          0          0          0          0     GICv3 308 Level     1c0b5000.drmdpp\n159:          0          0          0          0          0          0          0          0     GICv3 300 Level     1c0b8000.drmdpp\n160:          0          0          0          0          0          0          0          0     GICv3 301 Level     1c0b9000.drmdpp\n161:          0          0          0          0          0          0          0          0     GICv3 302 Level     1c0bc000.drmdpp\n162:          0          0          0          0          0          0          0          0     GICv3 282 Level     1c2c0000.drmdsim\n163:          0          0          0          0          0          0          0          0     GICv3 273 Level     1c240000.drmdecon\n164:          0          0          0          0          0          0          0          0     GICv3 272 Level     1c240000.drmdecon\n165:          0          0          0          0          0          0          0          0     GICv3 271 Level     1c240000.drmdecon\n166:          0          0          0          0          0          0          0          0     GICv3 270 Level     1c240000.drmdecon\n167:          0          0          0          0          0          0          0          0     GICv3 269 Level     1c240000.drmdecon\n168:          0          0          0          0          0          0          0          0     GICv3 292 Level     1c240000.drmdecon\n169:          0          0          0          0          0          0          0          0     GICv3 281 Level     1c242000.drmdecon\n170:          0          0          0          0          0          0          0          0     GICv3 280 Level     1c242000.drmdecon\n171:          0          0          0          0          0          0          0          0     GICv3 279 Level     1c242000.drmdecon\n172:          0          0          0          0          0          0          0          0     GICv3 361 Level     28000000.mali\n173:          0          0          0          0          0          0          0          0     GICv3 362 Level     28000000.mali\n174:          3          0          0          0          0          0          0          0     GICv3 360 Level     28000000.mali\n175:          0          0          0          0          0          0          0          0     GICv3 107 Level     18300000.mbox\n176:          0          0          0          0          0          0          0          0     GICv3 148 Level     19000000.aoc\n177:         48          0          0          0          0          0          0          0     GICv3 395 Level     gsa-mb-irq\n178:        298          0          0          0          0          0          0          0     GICv3 706 Level     10900000.hsi2c\n179:          0          0          0          0          0          0          0          0     GICv3 707 Level     10910000.hsi2c\n180:          0          0          0          0          0          0          0          0     GICv3 708 Level     10920000.hsi2c\n181:          0          0          0          0          0          0          0          0     GICv3 709 Level     10930000.hsi2c\n182:        217          0          0          0          0          0          0          0     GICv3 713 Level     10970000.hsi2c\n183:         60          0          0          0          0          0          0          0     GICv3 727 Level     10d60000.hsi2c\n184:          3          0          0          0          0          0          0          0     GICv3 728 Level     10da0000.hsi2c\n185:          0          0          0          0          0          0          0          0     GICv3 710 Level     spi-s3c64xx\n186:          0          0          0          0          0          0          0          0     GICv3 712 Level     spi-s3c64xx\n187:          0          0          0          0          0          0          0          0     GICv3 722 Level     spi-s3c64xx\n188:          0          0          0          0          0          0          0          0     GICv3 723 Level     spi-s3c64xx\n189:          0          0          0          0          0          0          0          0     GICv3 724 Level     spi-s3c64xx\n190:          0          0          0          0          0          0          0          0     GICv3 729 Level     spi-s3c64xx\n192:          0          0          0          0          0          0          0          0     GICv3 100 Level     spi-s3c64xx\n193:          0          0          0          0          0          0          0          0     GICv3 172 Level     25a70000.s2mpu_aur_idma\n194:          0          0          0          0          0          0          0          0     GICv3 173 Level     25aa0000.s2mpu_aur_inst_data\n195:          0          0          0          0          0          0          0          0     GICv3 181 Level     1ca60000.s2mpu_bo\n196:          0          0          0          0          0          0          0          0     GICv3 220 Level     20c70000.s2mpu_cpucl0\n197:          0          0          0          0          0          0          0          0     GICv3 262 Level     1a520000.s2mpu_csis0\n198:          0          0          0          0          0          0          0          0     GICv3 265 Level     1a550000.s2mpu_csis1\n199:          0          0          0          0          0          0          0          0     GICv3 291 Level     1b0a0000.s2s2mpu_dnsmpu\n200:          0          0          0          0          0          0          0          0     GICv3 314 Level     1c160000.s2mpu_dpu0\n201:          0          0          0          0          0          0          0          0     GICv3 317 Level     1c170000.s2mpu_dpu1\n202:          0          0          0          0          0          0          0          0     GICv3 320 Level     1c180000.s2mpu_dpu2\n203:          0          0          0          0          0          0          0          0     GICv3 333 Level     17040000.s2mpu_eh\n204:          0          0          0          0          0          0          0          0     GICv3 346 Level     1c680000.s2mpu_g2d0\n205:          0          0          0          0          0          0          0          0     GICv3 349 Level     1c6b0000.s2mpu_g2d1\n206:          0          0          0          0          0          0          0          0     GICv3 352 Level     1c730000.s2mpu_g2d2\n207:          0          0          0          0          0          0          0          0     GICv3 359 Level     1a8a0000.s2mpu_g3aa\n208:          0          0          0          0          0          0          0          0     GICv3 655 Level     20080000.s2mpu_g3d\n209:          0          0          0          0          0          0          0          0     GICv3 388 Level     1d0c0000.s2mpu_gdc0\n210:          0          0          0          0          0          0          0          0     GICv3 391 Level     1d0f0000.s2mpu_gdc1\n211:          0          0          0          0          0          0          0          0     GICv3 394 Level     1d120000.s2mpu_gdc2\n212:          0          0          0          0          0          0          0          0     GICv3 405 Level     11070000.s2mpu_hsi0\n213:          0          0          0          0          0          0          0          0     GICv3 440 Level     11880000.s2mpu_hsi1\n214:          0          0          0          0          0          0          0          0     GICv3 480 Level     145e0000.s2mpu_hsi2\n215:          0          0          0          0          0          0          0          0     GICv3 398 Level     17c60000.s2mpu_gsa\n216:          0          0          0          0          0          0          0          0     GICv3 504 Level     1ad20000.s2mpu_ipp\n217:          0          0          0          0          0          0          0          0     GICv3 529 Level     1b7a0000.s2mpu_mcsc0\n218:          0          0          0          0          0          0          0          0     GICv3 532 Level     1b7d0000.s2mpu_mcsc1\n219:          0          0          0          0          0          0          0          0     GICv3 535 Level     1b800000.s2mpu_mcsc2\n220:          0          0          0          0          0          0          0          0     GICv3 541 Level     1c890000.s2mpu_mfc0\n221:          0          0          0          0          0          0          0          0     GICv3 544 Level     1c8c0000.s2mpu_mfc1\n222:          0          0          0          0          0          0          0          0     GICv3 868 Level     101e0000.s2mpu_misc\n223:          0          0          0          0          0          0          0          0     GICv3 741 Level     1bc90000.s2mpu_tnr0\n224:          0          0          0          0          0          0          0          0     GICv3 744 Level     1bcc0000.s2mpu_tnr1\n225:          0          0          0          0          0          0          0          0     GICv3 747 Level     1bcf0000.s2mpu_tnr2\n226:          0          0          0          0          0          0          0          0     GICv3 750 Level     1bd20000.s2mpu_tnr3\n227:          0          0          0          0          0          0          0          0     GICv3 753 Level     1bd50000.s2mpu_tnr4\n228:          0          0          0          0          0          0          0          0     GICv3 775 Level     1cc60000.s2mpu_tpu\n229:        226          0          0          0          0          0          0          0     GICv3 485 Level     ufshcd\n230:          0          0          0          0          0          0          0          0     GICv3 762 Level     janeiro\n231:          0          0          0          0          0          0          0          0     GICv3 763 Level     janeiro\n232:          0          0          0          0          0          0          0          0     GICv3 764 Level     janeiro\n233:          0          0          0          0          0          0          0          0     GICv3 765 Level     janeiro\n234:          0          0          0          0          0          0          0          0     GICv3 766 Level     janeiro\n235:          0          0          0          0          0          0          0          0     GICv3 767 Level     janeiro\n236:          0          0          0          0          0          0          0          0     GICv3 768 Level     janeiro\n237:          0          0          0          0          0          0          0          0     GICv3 769 Level     janeiro\n243:          0          0          0          0          0          0          0          0     GICv3 221 Level     lwis-csi:csi-link0-src0, lwis-csi:csi-link0-src1, lwis-csi:csi-link0-fs, lwis-csi:csi-link0-fe\n244:          0          0          0          0          0          0          0          0     GICv3 222 Level     lwis-csi:csi-link1-src0, lwis-csi:csi-link1-src1, lwis-csi:csi-link1-fs, lwis-csi:csi-link1-fe\n245:          0          0          0          0          0          0          0          0     GICv3 223 Level     lwis-csi:csi-link2-src0, lwis-csi:csi-link2-src1, lwis-csi:csi-link2-fs, lwis-csi:csi-link2-fe\n246:          0          0          0          0          0          0          0          0     GICv3 224 Level     lwis-csi:csi-link3-src0, lwis-csi:csi-link3-src1, lwis-csi:csi-link3-fs, lwis-csi:csi-link3-fe\n247:          0          0          0          0          0          0          0          0     GICv3 225 Level     lwis-csi:csi-link4-src0, lwis-csi:csi-link4-src1, lwis-csi:csi-link4-fs, lwis-csi:csi-link4-fe\n248:          0          0          0          0          0          0          0          0     GICv3 226 Level     lwis-csi:csi-link5-src0, lwis-csi:csi-link5-src1, lwis-csi:csi-link5-fs, lwis-csi:csi-link5-fe\n249:          0          0          0          0          0          0          0          0     GICv3 227 Level     lwis-csi:csi-link6-src0, lwis-csi:csi-link6-src1, lwis-csi:csi-link6-fs, lwis-csi:csi-link6-fe\n250:          0          0          0          0          0          0          0          0     GICv3 228 Level     lwis-csi:csi-link7-src0, lwis-csi:csi-link7-src1, lwis-csi:csi-link7-fs, lwis-csi:csi-link7-fe\n251:          0          0          0          0          0          0          0          0     GICv3 266 Level     lwis-csi:zsl-dma0\n252:          0          0          0          0          0          0          0          0     GICv3 267 Level     lwis-csi:zsl-dma1\n253:          0          0          0          0          0          0          0          0     GICv3 268 Level     lwis-csi:zsl-dma2\n254:          0          0          0          0          0          0          0          0     GICv3 249 Level     lwis-csi:strp-dma0\n255:          0          0          0          0          0          0          0          0     GICv3 250 Level     lwis-csi:strp-dma1\n256:          0          0          0          0          0          0          0          0     GICv3 251 Level     lwis-csi:strp-dma2\n257:          0          0          0          0          0          0          0          0     GICv3 229 Level     lwis-csi:csis-dma0\n258:          0          0          0          0          0          0          0          0     GICv3 230 Level     lwis-csi:csis-dma1\n259:          0          0          0          0          0          0          0          0     GICv3 231 Level     lwis-csi:csis-dma2\n260:          0          0          0          0          0          0          0          0     GICv3 232 Level     lwis-csi:csis-dma3\n261:          0          0          0          0          0          0          0          0     GICv3 233 Level     lwis-csi:csi-ebuf0\n262:          0          0          0          0          0          0          0          0     GICv3 234 Level     lwis-csi:csi-ebuf1\n263:          0          0          0          0          0          0          0          0     GICv3 235 Level     lwis-csi:csi-ebuf2\n264:          0          0          0          0          0          0          0          0     GICv3 236 Level     lwis-csi:csi-ebuf3\n265:          0          0          0          0          0          0          0          0     GICv3 681 Level     lwis-pdp:pdp-ctx0-src1\n266:          0          0          0          0          0          0          0          0     GICv3 682 Level     lwis-pdp:pdp-ctx0-src2\n267:          0          0          0          0          0          0          0          0     GICv3 683 Level     lwis-pdp:pdp-ctx1-src1\n268:          0          0          0          0          0          0          0          0     GICv3 684 Level     lwis-pdp:pdp-ctx1-src2\n269:          0          0          0          0          0          0          0          0     GICv3 685 Level     lwis-pdp:pdp-ctx2-src1\n270:          0          0          0          0          0          0          0          0     GICv3 686 Level     lwis-pdp:pdp-ctx2-src2\n271:          0          0          0          0          0          0          0          0     GICv3 486 Level     lwis-ipp:ipp0-int1, lwis-ipp:ipp0_fro_int0\n272:          0          0          0          0          0          0          0          0     GICv3 487 Level     lwis-ipp:ipp0-int2, lwis-ipp:ipp0_fro_int1\n273:          0          0          0          0          0          0          0          0     GICv3 488 Level     lwis-ipp:ipp1-int1, lwis-ipp:ipp1_fro_int0\n274:          0          0          0          0          0          0          0          0     GICv3 489 Level     lwis-ipp:ipp1-int2, lwis-ipp:ipp1_fro_int1\n275:          0          0          0          0          0          0          0          0     GICv3 490 Level     lwis-ipp:ipp2-int1, lwis-ipp:ipp2_fro_int0\n276:          0          0          0          0          0          0          0          0     GICv3 491 Level     lwis-ipp:ipp2-int2, lwis-ipp:ipp2_fro_int1\n277:          0          0          0          0          0          0          0          0     GICv3 505 Level     lwis-gtnr-align:gtnr-align-int\n278:          0          0          0          0          0          0          0          0     GICv3 492 Level     lwis-gtnr-align:gtnr-align-mute\n279:          0          0          0          0          0          0          0          0     GICv3 754 Level     lwis-gtnr-merge:gtnr-merge-int0, lwis-gtnr-merge:gtnr-merge-cmdq\n280:          0          0          0          0          0          0          0          0     GICv3 755 Level     lwis-gtnr-merge:gtnr-merge-int1\n281:          0          0          0          0          0          0          0          0     GICv3 354 Level     lwis-g3aa:g3aa-ctx0-int, lwis-g3aa:g3aa-ctx1-int, lwis-g3aa:g3aa-ctx2-int, lwis-g3aa:g3aa-err-int\n282:          0          0          0          0          0          0          0          0     GICv3 506 Level     lwis-itp:itp-itp-int0, lwis-itp:itp-itp-cmdq-int\n283:          0          0          0          0          0          0          0          0     GICv3 284 Level     lwis-itp:itp-dns-int0, lwis-itp:itp-dns-cmdq-int\n284:          0          0          0          0          0          0          0          0     GICv3 285 Level     lwis-itp:itp-dns-int1\n285:          0          0          0          0          0          0          0          0     GICv3 515 Level     lwis-itp:itp-itsc-int0, lwis-itp:itp-itsc-cmdq-int\n286:          0          0          0          0          0          0          0          0     GICv3 516 Level     lwis-itp:itp-itsc-int1\n287:          0          0          0          0          0          0          0          0     GICv3 519 Level     lwis-mcsc:mcsc-int0, lwis-mcsc:mcsc-cmdq-int\n288:          0          0          0          0          0          0          0          0     GICv3 520 Level     lwis-mcsc:mcsc-int1\n289:          0          0          0          0          0          0          0          0     GICv3 383 Level     lwis-scsc:scsc-int0, lwis-scsc:scsc-cmdq-int\n290:          0          0          0          0          0          0          0          0     GICv3 384 Level     lwis-scsc:scsc-int1\n291:          0          0          0          0          0          0          0          0     GICv3 370 Level     lwis-gdc0:gdc-int0, lwis-gdc0:gdc-cmdq-int\n292:          0          0          0          0          0          0          0          0     GICv3 371 Level     lwis-gdc0:gdc-int1\n293:          0          0          0          0          0          0          0          0     GICv3 373 Level     lwis-gdc1:gdc-int0, lwis-gdc1:gdc-cmdq-int\n294:          0          0          0          0          0          0          0          0     GICv3 374 Level     lwis-gdc1:gdc-int1\n295:          0          0          0          0          0          0          0          0     GICv3 669 Level     BUS_DATA0\n296:          0          0          0          0          0          0          0          0     GICv3 672 Level     BUS_DATA1\n297:          0          0          0          0          0          0          0          0     GICv3 657 Level     BUS_DATA2\n298:          0          0          0          0          0          0          0          0     GICv3 628 Level     BUS_DATA3\n299:          0          0          0          0          0          0          0          0     GICv3 639 Level     BUS_PERI0\n300:          0          0          0          0          0          0          0          0     GICv3 670 Level     BUS_PERI1\n301:          0          0          0          0          0          0          0          0     GICv3 673 Level     BUS_PERI2\n302:          0          0          0          0          0          0          0          0     GICv3 658 Level     BUS_PERI3\n313:          0          0          0          0          0          0          0          0     GICv3 420 Level     exynos-pcie\n314:          0          0          0          0          0          0          0          0     GICv3 421 Level     exynos-pcie-msi0\n319:          0          0          0          0          0          0          0          0     GICv3 438 Level     11860000.sysmmu\n320:          0          0          0          0          0          0          0          0     GICv3 460 Level     exynos-pcie\n326:          0          0          0          0          0          0          0          0     GICv3 478 Level     145c0000.sysmmu\n327:          0          0          0          0          0          0          0          0     GICv3 176 Level     1cb00000.bigocean\n328:          0          0          0          0          0          0          0          0     GICv3 817 Level     mct_comp_irq\n332:       3854          0          0          0          0          0          0          0     GICv3 821 Level     exynos-mct\n333:          0          0          0          0          0          0          0          0     GICv3 822 Level     exynos-mct\n334:          0          0          0          0          0          0          0          0     GICv3 823 Level     exynos-mct\n335:          0          0          0          0          0          0          0          0     GICv3 824 Level     exynos-mct\n336:          0          0          0          0          0          0          0          0     GICv3 825 Level     exynos-mct\n337:          0          0          0          0          0          0          0          0     GICv3 826 Level     exynos-mct\n338:          0          0          0          0          0          0          0          0     GICv3 827 Level     exynos-mct\n339:          0          0          0          0          0          0          0          0     GICv3 828 Level     exynos-mct\n340:          0          0          0          0          0          0          0          0     GICv3 321 Level     eh_error\n351:          0          0          0          0          0          0          0          0     GICv3 838 Level     10110000.pdma0\n352:          0          0          0          0          0          0          0          0     GICv3  23 Level     arm-pmu\n353:          0          0          0          0          0          0          0          0     GICv3 184 Level     arm_dsu_0\n354:          0          0          0          0          0          0          0          0     GICv3 110 Level     18210000.acpm_ipc\n355:          0          0          0          0          0          0          0          0     GICv3 338 Level     1c700000.smfc\n359:          0          0          0          0          0          0          0          0     GICv3 337 Level     1c640000.g2d\n360:          0          0          0          0          0          0          0          0     GICv3 829 Level     10060000.watchdog_cl0\n361:          0          0          0          0          0          0          0          0     GICv3 830 Level     10070000.watchdog_cl1\n365:          0          0          0          0          0          0          0          0     gpa10   1 Edge      gpio-keys: KEY_VOLUMEDOWN\n366:          0          0          0          0          0          0          0          0      gpa8   5 Edge      gpio-keys: KEY_VOLUMEUP\n368:          0          0          0          0          0          0          0          0      gpa0   0 Edge      17c90000.gsa-ns:gsa_gsc@0\n371:          0          0          0          0          0          0          0          0      gpa6   4 Level     ttyBCM\n372:          0          0          0          0          0          0          0          0     GICv3 104 Level     s2mpg12-irq\n373:          0          0          0          0          0          0          0          0   s2mpg12     Edge      pwronf-irq\n374:          0          0          0          0          0          0          0          0   s2mpg12     Edge      pwronr-irq\n383:          0          0          0          0          0          0          0          0   s2mpg12     Edge      rtc-alarm0\n394:          0          0          0          0          0          0          0          0   s2mpg12     Edge      BUCK_OCP_IRQ\n395:          0          0          0          0          0          0          0          0   s2mpg12     Edge      BUCK_OCP_IRQ\n396:          0          0          0          0          0          0          0          0   s2mpg12     Edge      BUCK_OCP_IRQ\n397:          0          0          0          0          0          0          0          0   s2mpg12     Edge      BUCK_OCP_IRQ\n398:          0          0          0          0          0          0          0          0   s2mpg12     Edge      BUCK_OCP_IRQ\n399:          0          0          0          0          0          0          0          0   s2mpg12     Edge      BUCK_OCP_IRQ\n400:          0          0          0          0          0          0          0          0   s2mpg12     Edge      BUCK_OCP_IRQ\n401:          0          0          0          0          0          0          0          0   s2mpg12     Edge      BUCK_OCP_IRQ\n402:          0          0          0          0          0          0          0          0   s2mpg12     Edge      BUCK_OCP_IRQ\n403:          0          0          0          0          0          0          0          0   s2mpg12     Edge      BUCK_OCP_IRQ\n457:          0          0          0          0          0          0          0          0   s2mpg13     Edge      PMIC_THERM_IRQ\n458:          0          0          0          0          0          0          0          0   s2mpg13     Edge      PMIC_THERM_IRQ\n459:          0          0          0          0          0          0          0          0   s2mpg13     Edge      PMIC_THERM_IRQ\n460:          0          0          0          0          0          0          0          0   s2mpg13     Edge      PMIC_THERM_IRQ\n461:          0          0          0          0          0          0          0          0   s2mpg13     Edge      PMIC_THERM_IRQ\n462:          0          0          0          0          0          0          0          0   s2mpg13     Edge      PMIC_THERM_IRQ\n463:          0          0          0          0          0          0          0          0   s2mpg13     Edge      PMIC_THERM_IRQ\n464:          0          0          0          0          0          0          0          0   s2mpg13     Edge      PMIC_THERM_IRQ\n465:          0          0          0          0          0          0          0          0   s2mpg13     Edge      PMIC_THERM_IRQ\n466:          0          0          0          0          0          0          0          0   s2mpg13     Edge      PMIC_THERM_IRQ\n467:          0          0          0          0          0          0          0          0   s2mpg13     Edge      PMIC_THERM_IRQ\n468:          0          0          0          0          0          0          0          0   s2mpg13     Edge      PMIC_THERM_IRQ\n469:          0          0          0          0          0          0          0          0   s2mpg13     Edge      PMIC_THERM_IRQ\n470:          0          0          0          0          0          0          0          0   s2mpg13     Edge      PMIC_THERM_IRQ\n471:          0          0          0          0          0          0          0          0   s2mpg13     Edge      PMIC_THERM_IRQ\n472:          0          0          0          0          0          0          0          0   s2mpg13     Edge      PMIC_THERM_IRQ\n473:          0          0          0          0          0          0          0          0   PCI-MSI   0 Edge      PCIe PME, aerdrv\n474:          0          0          0          0          0          0          0          0   PCI-MSI 134217728 Edge      PCIe PME, aerdrv\n475:          0          0          0          0          0          0          0          0     GICv3  13 Edge      trusty\n478:          0          0          0          0          0          0          0          0      gpa9   0 Level     pca9468\n479:          1          0          0          0          0          0          0          0      gpa8   7 Edge      tbn\n480:          0          0          0          0          0          0          0          0      gph0   5 Edge      st21nfc_pw_stats_idle_handle\n482:          1          0          0          0          0          0          0          0      gpa7   0 Level     synaptics_tcm\n483:          1          0          0          0          0          0          0          0      gpa6   5 Edge      vl53l1_interrupt\n506:          0          0          0          0          0          0          0          0     GICv3 536 Level     1c8d0000.MFC-0\nIPI0:        91         19         19         19         19         19         19         19       Rescheduling interrupts\nIPI1:         0         12         12         12         12         12         12         12       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         0          3          3          3          3          3          3          3       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/gs201/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init kasan_multi_shot bootconfig bootconfig\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    6 root      0:00 [kworker/0:0H-ev]\n    8 root      0:00 [mm_percpu_wq]\n    9 root      0:00 [rcu_tasks_kthre]\n   10 root      0:00 [rcu_tasks_trace]\n   11 root      0:00 [ksoftirqd/0]\n   12 root      0:00 [rcu_preempt]\n   13 root      0:00 [rcuog/0]\n   14 root      0:00 [rcuop/0]\n   15 root      0:00 [migration/0]\n   16 root      0:00 [cpuhp/0]\n   17 root      0:00 [cpuhp/1]\n   18 root      0:00 [migration/1]\n   19 root      0:00 [ksoftirqd/1]\n   21 root      0:00 [kworker/1:0H]\n   22 root      0:00 [rcuop/1]\n   23 root      0:00 [cpuhp/2]\n   24 root      0:00 [migration/2]\n   25 root      0:00 [ksoftirqd/2]\n   27 root      0:00 [kworker/2:0H]\n   28 root      0:00 [rcuop/2]\n   29 root      0:00 [cpuhp/3]\n   30 root      0:00 [migration/3]\n   31 root      0:00 [ksoftirqd/3]\n   33 root      0:00 [kworker/3:0H]\n   34 root      0:00 [rcuop/3]\n   35 root      0:00 [cpuhp/4]\n   36 root      0:00 [migration/4]\n   37 root      0:00 [ksoftirqd/4]\n   39 root      0:00 [kworker/4:0H]\n   40 root      0:00 [rcuog/4]\n   41 root      0:00 [rcuop/4]\n   42 root      0:00 [cpuhp/5]\n   43 root      0:00 [migration/5]\n   44 root      0:00 [ksoftirqd/5]\n   46 root      0:00 [kworker/5:0H]\n   47 root      0:00 [rcuop/5]\n   48 root      0:00 [cpuhp/6]\n   49 root      0:00 [migration/6]\n   50 root      0:00 [ksoftirqd/6]\n   51 root      0:00 [kworker/6:0-eve]\n   52 root      0:00 [kworker/6:0H]\n   53 root      0:00 [rcuop/6]\n   54 root      0:00 [cpuhp/7]\n   55 root      0:00 [migration/7]\n   56 root      0:00 [ksoftirqd/7]\n   58 root      0:00 [kworker/7:0H]\n   59 root      0:00 [rcuop/7]\n   60 root      0:00 [netns]\n   63 root      0:00 [kworker/2:1-eve]\n   64 root      0:00 [kworker/3:1-eve]\n   66 root      0:00 [kworker/5:1-mem]\n   67 root      0:00 [kworker/6:1-mem]\n   68 root      0:00 [kworker/7:1-mem]\n   69 root      0:00 [oom_reaper]\n   70 root      0:00 [writeback]\n   71 root      0:00 [kcompactd0]\n  113 root      0:00 [kblockd]\n  114 root      0:00 [blkcg_punt_bio]\n  115 root      0:00 [devfreq_wq]\n  116 root      0:00 [watchdogd]\n  117 root      0:00 [kworker/0:1H-kb]\n  118 root      0:00 [cfg80211]\n  139 root      0:00 [kswapd0]\n  140 root      0:00 [kworker/u17:0-t]\n  142 root      0:00 [dmabuf-deferred]\n  143 root      0:00 [uas]\n  144 root      0:00 [dm_bufio_cache]\n  145 root      0:00 [ipv6_addrconf]\n  146 root      0:00 [krfcommd]\n  155 root      0:00 [irq/354-1821000]\n  156 root      0:00 [acpm_log]\n  157 root      0:00 [spi5]\n  159 root      0:00 [spi7]\n  161 root      0:00 [spi0]\n  162 root      0:00 [spi9]\n  164 root      0:00 [spi10]\n  166 root      0:00 [spi16]\n  167 root      0:00 [memlat_wq]\n  169 root      0:06 [simpleinteracti]\n  171 root      0:00 [spi17]\n  173 root      0:00 [simpleinteracti]\n  174 root      0:00 [kworker/0:9-eve]\n  175 root      0:00 [simpleinteracti]\n  177 root      0:00 [simpleinteracti]\n  178 root      0:00 [kworker/0:11-me]\n  179 root      0:00 [simpleinteracti]\n  180 root      0:00 [simpleinteracti]\n  181 root      0:00 [simpleinteracti]\n  182 root      0:00 [simpleinteracti]\n  183 root      0:00 [PT_resize]\n  184 root      0:00 [cp2ap_wakeup_wq]\n  185 root      0:00 [trigger_cp_cras]\n  186 root      0:00 [cpif_tpmon_moni]\n  187 root      0:00 [cpif_tpmon_boos]\n  188 root      0:00 [irq/340-eh_erro]\n  189 root      0:00 [eh_comp_thread]\n  190 root      0:00 [irq/89-1a090000]\n  191 root      0:00 [irq/90-1a090000]\n  192 root      0:00 [irq/91-1ca40000]\n  193 root      0:00 [irq/92-1ca40000]\n  194 root      0:00 [irq/93-1a510000]\n  195 root      0:00 [irq/94-1a510000]\n  196 root      0:00 [irq/95-1a540000]\n  197 root      0:00 [irq/96-1a540000]\n  198 root      0:00 [irq/97-1b080000]\n  199 root      0:00 [irq/98-1b080000]\n  200 root      0:00 [irq/99-1c100000]\n  201 root      0:00 [irq/100-1c10000]\n  202 root      0:00 [irq/101-1c11000]\n  203 root      0:00 [irq/102-1c11000]\n  204 root      0:00 [irq/103-1c12000]\n  205 root      0:00 [irq/104-1c12000]\n  206 root      0:00 [irq/105-1c66000]\n  207 root      0:00 [irq/106-1c66000]\n  208 root      0:00 [irq/107-1c69000]\n  209 root      0:00 [irq/108-1c69000]\n  210 root      0:00 [irq/109-1c71000]\n  211 root      0:00 [irq/110-1c71000]\n  212 root      0:00 [irq/111-1a88000]\n  213 root      0:00 [irq/112-1a88000]\n  214 root      0:00 [irq/113-1d0a000]\n  215 root      0:00 [irq/114-1d0a000]\n  216 root      0:00 [irq/115-1d0d000]\n  217 root      0:00 [irq/116-1d0d000]\n  218 root      0:00 [irq/117-1d10000]\n  219 root      0:00 [irq/118-1d10000]\n  220 root      0:00 [irq/119-1ad0000]\n  221 root      0:00 [irq/120-1ad0000]\n  222 root      0:00 [irq/121-1b78000]\n  223 root      0:00 [irq/122-1b78000]\n  224 root      0:00 [irq/123-1b7b000]\n  225 root      0:00 [irq/124-1b7b000]\n  226 root      0:00 [irq/125-1b7e000]\n  227 root      0:00 [irq/126-1b7e000]\n  228 root      0:00 [irq/127-1c87000]\n  229 root      0:00 [irq/128-1c87000]\n  230 root      0:00 [irq/129-1c8a000]\n  231 root      0:00 [irq/130-1c8a000]\n  232 root      0:00 [irq/131-1bc7000]\n  233 root      0:00 [irq/132-1bc7000]\n  234 root      0:00 [irq/133-1bca000]\n  235 root      0:00 [irq/134-1bca000]\n  236 root      0:00 [irq/135-1bcd000]\n  237 root      0:00 [irq/136-1bcd000]\n  238 root      0:00 [irq/137-1bd0000]\n  239 root      0:00 [irq/138-1bd0000]\n  240 root      0:00 [irq/139-1bd3000]\n  241 root      0:00 [irq/140-1bd3000]\n  242 root      0:00 [irq/141-1cc4000]\n  243 root      0:00 [irq/142-1cc4000]\n  244 root      0:00 [irq/143-25a5000]\n  245 root      0:00 [irq/144-25a5000]\n  246 root      0:00 [irq/145-25a8000]\n  247 root      0:00 [irq/146-25a8000]\n  248 root      0:00 [g2d_completion]\n  249 root      0:00 [g2d_scheduler]\n  250 root      0:00 [bcm477x_wq]\n  251 root      0:00 [BBD_1HZ_TICK]\n  252 root      0:00 [scsi_eh_0]\n  253 root      0:00 [scsi_tmf_0]\n  254 root      0:00 [ufs_mgc_hibern8]\n  255 root      0:00 [ufs_eh_wq_0]\n  256 root      0:00 [ufs_clk_gating_]\n  257 root      0:00 [s2mpg12-wqueue]\n  258 root      0:00 [kworker/u16:3-e]\n  259 root      0:00 [kworker/u16:4-e]\n  260 root      0:00 [irq/372-s2mpg12]\n  261 root      0:00 [power-keys-wq0@]\n  262 root      0:00 [s2mpg13-wqueue]\n  263 root      0:00 [irq/473-aerdrv]\n  264 root      0:00 [pcie_wq]\n  265 root      0:00 [kworker/u17:1]\n  266 root      0:00 [mfc/inst_migrat]\n  267 root      0:00 [mfc/butler]\n  268 root      0:00 [irq/506-1c8d000]\n  269 root      0:00 [irq/474-aerdrv]\n  270 root      0:00 [pcie_wq]\n  271 root      0:00 [mfc_core/meerka]\n  272 root      0:00 [mfc_core/idle]\n  273 root      0:00 [mfc_core/butler]\n  274 root      0:00 [wq_odpm]\n  275 root      0:00 [wq_odpm]\n  276 root      0:00 [spmic-init]\n  277 root      0:00 [decon0_kthread]\n  278 root      0:00 [decon2_kthread]\n  279 root      0:00 [card0-crtc0]\n  280 root      0:00 [card0-crtc1]\n  281 root      0:00 [hbm_workq]\n  282 root      0:00 [pca9468_dc_wq]\n  283 root      0:00 [irq/478-pca9468]\n  284 root      0:00 [irq/479-tbn]\n  285 root      0:00 [st_pstate_work]\n  286 root      0:00 [irq/482-synapti]\n  287 root      0:00 [syna_reflash]\n  288 root      0:00 [slg51002wq]\n  289 root      0:00 [irq/483-vl53l1_]\n  290 root      0:00 [gxp_power_work_]\n  291 root      0:00 [lwis_s_top]\n  292 root      0:00 [lwis_t_top]\n  293 root      0:00 [lwis_p_top]\n  294 root      0:00 [lwis_t_csi]\n  295 root      0:00 [lwis_p_csi]\n  296 root      0:00 [lwis_t_pdp]\n  297 root      0:00 [lwis_p_pdp]\n  298 root      0:00 [lwis_t_ipp]\n  299 root      0:00 [lwis_p_ipp]\n  300 root      0:00 [lwis_t_gtnr-ali]\n  301 root      0:00 [lwis_p_gtnr-ali]\n  302 root      0:00 [lwis_t_gtnr-mer]\n  303 root      0:00 [lwis_p_gtnr-mer]\n  304 root      0:00 [lwis_t_g3aa]\n  305 root      0:00 [lwis_p_g3aa]\n  306 root      0:00 [lwis_t_itp]\n  307 root      0:00 [lwis_p_itp]\n  308 root      0:00 [lwis_t_mcsc]\n  309 root      0:00 [lwis_p_mcsc]\n  310 root      0:00 [lwis_t_scsc]\n  311 root      0:00 [lwis_p_scsc]\n  312 root      0:00 [lwis_t_gdc0]\n  313 root      0:00 [lwis_p_gdc0]\n  314 root      0:00 [lwis_t_gdc1]\n  315 root      0:00 [lwis_p_gdc1]\n  316 root      0:00 [lwis_t_votf]\n  317 root      0:00 [lwis_p_votf]\n  318 root      0:00 [lwis_t_sensor-n]\n  319 root      0:00 [lwis_p_sensor-n]\n  320 root      0:00 [lwis_t_sensor-d]\n  321 root      0:00 [lwis_p_sensor-d]\n  322 root      0:00 [lwis_t_sensor-s]\n  323 root      0:00 [lwis_p_sensor-s]\n  324 root      0:00 [lwis_t_sensor-k]\n  325 root      0:00 [lwis_p_sensor-k]\n  326 root      0:00 [lwis_t_eeprom-g]\n  327 root      0:00 [lwis_p_eeprom-g]\n  328 root      0:00 [lwis_t_eeprom-s]\n  329 root      0:00 [lwis_p_eeprom-s]\n  330 root      0:00 [lwis_t_eeprom-s]\n  331 root      0:00 [lwis_p_eeprom-s]\n  332 root      0:00 [lwis_t_eeprom-j]\n  333 root      0:00 [lwis_p_eeprom-j]\n  334 root      0:00 [lwis_t_act-slen]\n  335 root      0:00 [lwis_p_act-slen]\n  336 root      0:00 [lwis_t_act-jotn]\n  337 root      0:00 [lwis_p_act-jotn]\n  338 root      0:00 [lwis_t_act-slen]\n  339 root      0:00 [lwis_p_act-slen]\n  340 root      0:00 [lwis_t_ois-garg]\n  341 root      0:00 [lwis_p_ois-garg]\n  342 root      0:00 [lwis_t_ois-jotn]\n  343 root      0:00 [lwis_p_ois-jotn]\n  344 root      0:00 [lwis_t_flash-lm]\n  345 root      0:00 [lwis_p_flash-lm]\n  346 root      0:00 [gpu-dvfs-contro]\n  347 root      0:00 [gpu-dvfs-clockd]\n  348 root      0:00 [csf_scheduler]\n  360 root      0:00 [kworker/1:2-eve]\n  361 root      0:00 [kworker/2:2-mem]\n  362 root      0:00 [kworker/3:2-mem]\n  363 root      0:00 [kworker/4:2-eve]\n  364 root      0:00 [kworker/5:2]\n  366 root      0:00 [kworker/7:2]\n  378 root      0:00 [kworker/1:0-mem]\n  394 root      0:00 [kworker/4:0-mem]\n  413 root      0:00 [kworker/6:2]\n  457 root      0:00 ps -A\n"
  },
  {
    "path": "results/gs201/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1108.682276,3.6956075866666667,38.18325742107743,20.664588,29.03517844149615,541.195\r\n1,574000,2127.4936,3.7064348432055745,54.60245859497715,15.399586,38.96208638336122,282.031\r\n1,738000,2735.978112,3.707287414634146,64.88814463544755,14.230619,42.16260726255126,219.31\r\n1,930000,3450.496872,3.710211690322581,76.347564061278,13.276536,45.19251105860746,173.896\r\n1,1098000,4074.149521,3.710518689435337,86.54729151672348,12.746512000000001,47.07170087001055,147.278\r\n1,1197000,4439.610202,3.708947537176274,92.66093004328364,12.523588,47.90959268222493,135.155\r\n1,1328000,4926.22971,3.7095103237951803,101.6877303887361,12.386074,48.44149970361875,121.805\r\n1,1401000,5199.937601,3.7115900078515343,106.54847263746262,12.295161,48.79968631561636,115.395\r\n1,1598000,5929.615464,3.7106479749687113,145.2134768172655,14.695022999999999,40.8301504529799,101.196\r\n1,1704000,6324.510641,3.7115672775821595,168.75396306758296,16.010700999999997,37.47493629416976,94.876\r\n1,1803000,6689.783586,3.710362499168053,259.51000044595077,23.277009,25.776507626044225,89.696\r\n4,400000,3634.315204,9.08578801,26.147283816768926,4.3169949999999995,138.98556750702747,165.103\r\n4,553000,5034.993203,9.104870168173598,38.36046687252467,4.571647,131.24372901057322,119.176\r\n4,696000,6341.556218,9.11143134770115,51.72023715164389,4.893924,122.60100483783565,94.623\r\n4,799000,7274.049827,9.103942211514394,62.530050670351784,5.158354,116.31617372518443,82.494\r\n4,910000,8280.54486,9.099499846153845,77.26352684670263,5.599055999999999,107.16092141246668,72.467\r\n4,1024000,9330.389077,9.111708083007812,90.840565964394,5.842411,102.69732820919309,64.315\r\n4,1197000,10898.390671,9.104754111111111,119.98795924668107,6.606897,90.81419008045684,55.063\r\n4,1328000,12089.705616,9.103693987951807,144.14398533352136,7.154875,83.85890738831915,49.637\r\n4,1491000,13573.432269,9.103576303822939,182.3992807382611,8.064237,74.40257522193357,44.212\r\n4,1663000,15146.925174,9.108193129284425,226.46847551741544,8.972681,66.86964576139506,39.62\r\n4,1836000,16708.437761,9.100456296840958,285.8098671938079,10.265433000000002,58.44858175977574,35.917\r\n4,1999000,18204.988167,9.107047607303652,352.7863556391434,11.629955,51.590913292441805,32.966\r\n4,2130000,19403.033341,9.109405324413144,440.0872910672141,13.61234,44.0776530706697,30.931\r\n4,2253000,20512.820513,9.104669557478916,538.1068804046895,15.743393,38.1112254518451,29.257\r\n4,2348000,21377.41832,9.104522282793868,634.4323823770346,17.812958,33.683344450708304,28.077\r\n6,500000,4642.669225,9.28533845,46.86967017152937,6.057858,99.04490993351115,129.249\r\n6,851000,7919.014875,9.305540393654525,86.02164273648648,6.518376,92.04746703780205,75.776\r\n6,984000,9139.236264,9.287841731707315,107.86358305792047,7.082215,84.71925802873818,65.659\r\n6,1106000,10278.196519,9.293125243218805,131.57853900830693,7.682213,78.10249468479981,58.385\r\n6,1277000,11880.952852,9.30380019733751,170.5546118667221,8.614884,69.64690412546472,50.511\r\n6,1426000,13248.250127,9.290497985273491,209.96863065409832,9.511369,63.082401702636076,45.299\r\n6,1582000,14703.720041,9.294386878002529,257.37958153665227,10.505205,57.11454464715348,40.816\r\n6,1745000,16225.425241,9.298237960458453,316.17500270357954,11.694681000000001,51.30537549506481,36.988\r\n6,1826000,16991.872221,9.305516002738226,383.2010475651189,13.534661,44.33062638214581,35.32\r\n6,2048000,19040.96982,9.297348544921874,496.8119923857868,15.659514,38.31536534275585,31.52\r\n6,2188000,20334.157996,9.293490857404024,588.1929800786014,17.361104,34.5600141557818,29.516\r\n6,2252000,20948.257803,9.302068296181172,639.5158115183247,18.322128,32.74728786961864,28.65\r\n6,2401000,22309.808879,9.291882082049145,772.3615210199606,20.778842,28.87552636475122,26.903\r\n6,2507000,23297.351868,9.292920569605107,899.5568278860337,23.174383000000002,25.890656937878344,25.762\r\n6,2630000,24441.909728,9.29350179771863,1055.338152054404,25.915938999999998,23.15177543827372,24.557\r\n6,2704000,25135.101169,9.29552558025148,1203.396649916248,28.737112,20.878924785482965,23.88\r\n6,2802000,26055.237103,9.298799822626695,1433.4306116247776,33.021941,18.169737508767277,23.037\r\n6,2850000,26499.425846,9.298044156491228,1567.737374183295,35.512387000000004,16.89551310645494,22.652\r\n"
  },
  {
    "path": "results/gs201/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 4130.458914279938, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 541.195, \"elapsed_ns\": 541195000000.0, \"power_mean\": 38.18325742107743, \"energy_millijoules\": 20664.588, \"energy_joules\": 20.664588, \"coremark_score\": 1108.682276, \"coremarks_per_mhz\": 3.6956075866666667, \"ulpmark_cm_score\": 29.03517844149615}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 21.66207584830339, \"energy_millijoules\": 108.527, \"energy_joules\": 0.108527}}, \"574000\": {\"active\": {\"elapsed_sec\": 282.031, \"elapsed_ns\": 282031000000.0, \"power_mean\": 54.60245859497715, \"energy_millijoules\": 15399.586, \"energy_joules\": 15.399586, \"coremark_score\": 2127.4936, \"coremarks_per_mhz\": 3.7064348432055745, \"ulpmark_cm_score\": 38.96208638336122}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 25.625074865242564, \"energy_millijoules\": 128.356, \"energy_joules\": 0.128356}}, \"738000\": {\"active\": {\"elapsed_sec\": 219.31, \"elapsed_ns\": 219310000000.0, \"power_mean\": 64.88814463544755, \"energy_millijoules\": 14230.619, \"energy_joules\": 14.230619, \"coremark_score\": 2735.978112, \"coremarks_per_mhz\": 3.707287414634146, \"ulpmark_cm_score\": 42.16260726255126}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 25.541026152924736, \"energy_millijoules\": 127.935, \"energy_joules\": 0.127935}}, \"930000\": {\"active\": {\"elapsed_sec\": 173.896, \"elapsed_ns\": 173896000000.0, \"power_mean\": 76.347564061278, \"energy_millijoules\": 13276.536, \"energy_joules\": 13.276536, \"coremark_score\": 3450.496872, \"coremarks_per_mhz\": 3.710211690322581, \"ulpmark_cm_score\": 45.19251105860746}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 25.728343313373255, \"energy_millijoules\": 128.899, \"energy_joules\": 0.128899}}, \"1098000\": {\"active\": {\"elapsed_sec\": 147.278, \"elapsed_ns\": 147278000000.0, \"power_mean\": 86.54729151672348, \"energy_millijoules\": 12746.512, \"energy_joules\": 12.746512000000001, \"coremark_score\": 4074.149521, \"coremarks_per_mhz\": 3.710518689435337, \"ulpmark_cm_score\": 47.07170087001055}, \"idle\": {\"elapsed_sec\": 5.006, \"elapsed_ns\": 5006000000.0, \"power_mean\": 25.955053935277668, \"energy_millijoules\": 129.931, \"energy_joules\": 0.12993100000000002}}, \"1197000\": {\"active\": {\"elapsed_sec\": 135.155, \"elapsed_ns\": 135155000000.0, \"power_mean\": 92.66093004328364, \"energy_millijoules\": 12523.588, \"energy_joules\": 12.523588, \"coremark_score\": 4439.610202, \"coremarks_per_mhz\": 3.708947537176274, \"ulpmark_cm_score\": 47.90959268222493}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 25.982231982431625, \"energy_millijoules\": 130.145, \"energy_joules\": 0.130145}}, \"1328000\": {\"active\": {\"elapsed_sec\": 121.805, \"elapsed_ns\": 121805000000.0, \"power_mean\": 101.6877303887361, \"energy_millijoules\": 12386.074, \"energy_joules\": 12.386074, \"coremark_score\": 4926.22971, \"coremarks_per_mhz\": 3.7095103237951803, \"ulpmark_cm_score\": 48.44149970361875}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 26.30844479936115, \"energy_millijoules\": 131.779, \"energy_joules\": 0.131779}}, \"1401000\": {\"active\": {\"elapsed_sec\": 115.395, \"elapsed_ns\": 115395000000.0, \"power_mean\": 106.54847263746262, \"energy_millijoules\": 12295.161, \"energy_joules\": 12.295161, \"coremark_score\": 5199.937601, \"coremarks_per_mhz\": 3.7115900078515343, \"ulpmark_cm_score\": 48.79968631561636}, \"idle\": {\"elapsed_sec\": 5.006, \"elapsed_ns\": 5006000000.0, \"power_mean\": 26.287854574510586, \"energy_millijoules\": 131.597, \"energy_joules\": 0.13159700000000002}}, \"1598000\": {\"active\": {\"elapsed_sec\": 101.196, \"elapsed_ns\": 101196000000.0, \"power_mean\": 145.2134768172655, \"energy_millijoules\": 14695.023, \"energy_joules\": 14.695022999999999, \"coremark_score\": 5929.615464, \"coremarks_per_mhz\": 3.7106479749687113, \"ulpmark_cm_score\": 40.8301504529799}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 34.88340986224795, \"energy_millijoules\": 174.731, \"energy_joules\": 0.174731}}, \"1704000\": {\"active\": {\"elapsed_sec\": 94.876, \"elapsed_ns\": 94876000000.0, \"power_mean\": 168.75396306758296, \"energy_millijoules\": 16010.701, \"energy_joules\": 16.010700999999997, \"coremark_score\": 6324.510641, \"coremarks_per_mhz\": 3.7115672775821595, \"ulpmark_cm_score\": 37.47493629416976}, \"idle\": {\"elapsed_sec\": 5.011, \"elapsed_ns\": 5011000000.0, \"power_mean\": 39.96587507483536, \"energy_millijoules\": 200.269, \"energy_joules\": 0.200269}}, \"1803000\": {\"active\": {\"elapsed_sec\": 89.696, \"elapsed_ns\": 89696000000.0, \"power_mean\": 259.51000044595077, \"energy_millijoules\": 23277.009, \"energy_joules\": 23.277009, \"coremark_score\": 6689.783586, \"coremarks_per_mhz\": 3.710362499168053, \"ulpmark_cm_score\": 25.776507626044225}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 44.05689758434817, \"energy_millijoules\": 220.681, \"energy_joules\": 0.22068100000000002}}}}, \"4\": {\"freqs\": {\"400000\": {\"active\": {\"elapsed_sec\": 165.103, \"elapsed_ns\": 165103000000.0, \"power_mean\": 26.147283816768926, \"energy_millijoules\": 4316.995, \"energy_joules\": 4.3169949999999995, \"coremark_score\": 3634.315204, \"coremarks_per_mhz\": 9.08578801, \"ulpmark_cm_score\": 138.98556750702747}, \"idle\": {\"elapsed_sec\": 5.012, \"elapsed_ns\": 5012000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"553000\": {\"active\": {\"elapsed_sec\": 119.176, \"elapsed_ns\": 119176000000.0, \"power_mean\": 38.36046687252467, \"energy_millijoules\": 4571.647, \"energy_joules\": 4.571647, \"coremark_score\": 5034.993203, \"coremarks_per_mhz\": 9.104870168173598, \"ulpmark_cm_score\": 131.24372901057322}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 3.425034937113196, \"energy_millijoules\": 17.156, \"energy_joules\": 0.017155999999999998}}, \"696000\": {\"active\": {\"elapsed_sec\": 94.623, \"elapsed_ns\": 94623000000.0, \"power_mean\": 51.72023715164389, \"energy_millijoules\": 4893.924, \"energy_joules\": 4.893924, \"coremark_score\": 6341.556218, \"coremarks_per_mhz\": 9.11143134770115, \"ulpmark_cm_score\": 122.60100483783565}, \"idle\": {\"elapsed_sec\": 5.011, \"elapsed_ns\": 5011000000.0, \"power_mean\": 3.591897824785472, \"energy_millijoules\": 17.999, \"energy_joules\": 0.017998999999999998}}, \"799000\": {\"active\": {\"elapsed_sec\": 82.494, \"elapsed_ns\": 82494000000.0, \"power_mean\": 62.530050670351784, \"energy_millijoules\": 5158.354, \"energy_joules\": 5.158354, \"coremark_score\": 7274.049827, \"coremarks_per_mhz\": 9.103942211514394, \"ulpmark_cm_score\": 116.31617372518443}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 3.822554890219561, \"energy_millijoules\": 19.151, \"energy_joules\": 0.019151}}, \"910000\": {\"active\": {\"elapsed_sec\": 72.467, \"elapsed_ns\": 72467000000.0, \"power_mean\": 77.26352684670263, \"energy_millijoules\": 5599.056, \"energy_joules\": 5.599055999999999, \"coremark_score\": 8280.54486, \"coremarks_per_mhz\": 9.099499846153845, \"ulpmark_cm_score\": 107.16092141246668}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 4.21940507087243, \"energy_millijoules\": 21.135, \"energy_joules\": 0.021135}}, \"1024000\": {\"active\": {\"elapsed_sec\": 64.315, \"elapsed_ns\": 64315000000.0, \"power_mean\": 90.840565964394, \"energy_millijoules\": 5842.411, \"energy_joules\": 5.842411, \"coremark_score\": 9330.389077, \"coremarks_per_mhz\": 9.111708083007812, \"ulpmark_cm_score\": 102.69732820919309}, \"idle\": {\"elapsed_sec\": 5.011, \"elapsed_ns\": 5011000000.0, \"power_mean\": 4.382558371582518, \"energy_millijoules\": 21.961, \"energy_joules\": 0.021960999999999998}}, \"1197000\": {\"active\": {\"elapsed_sec\": 55.063, \"elapsed_ns\": 55063000000.0, \"power_mean\": 119.98795924668107, \"energy_millijoules\": 6606.897, \"energy_joules\": 6.606897, \"coremark_score\": 10898.390671, \"coremarks_per_mhz\": 9.104754111111111, \"ulpmark_cm_score\": 90.81419008045684}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 4.773607506488321, \"energy_millijoules\": 23.911, \"energy_joules\": 0.023911}}, \"1328000\": {\"active\": {\"elapsed_sec\": 49.637, \"elapsed_ns\": 49637000000.0, \"power_mean\": 144.14398533352136, \"energy_millijoules\": 7154.875, \"energy_joules\": 7.154875, \"coremark_score\": 12089.705616, \"coremarks_per_mhz\": 9.103693987951807, \"ulpmark_cm_score\": 83.85890738831915}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 5.2685166699940105, \"energy_millijoules\": 26.39, \"energy_joules\": 0.02639}}, \"1491000\": {\"active\": {\"elapsed_sec\": 44.212, \"elapsed_ns\": 44212000000.0, \"power_mean\": 182.3992807382611, \"energy_millijoules\": 8064.237, \"energy_joules\": 8.064237, \"coremark_score\": 13573.432269, \"coremarks_per_mhz\": 9.103576303822939, \"ulpmark_cm_score\": 74.40257522193357}, \"idle\": {\"elapsed_sec\": 5.011, \"elapsed_ns\": 5011000000.0, \"power_mean\": 6.11993614049092, \"energy_millijoules\": 30.667, \"energy_joules\": 0.030667000000000003}}, \"1663000\": {\"active\": {\"elapsed_sec\": 39.62, \"elapsed_ns\": 39620000000.0, \"power_mean\": 226.46847551741544, \"energy_millijoules\": 8972.681, \"energy_joules\": 8.972681, \"coremark_score\": 15146.925174, \"coremarks_per_mhz\": 9.108193129284425, \"ulpmark_cm_score\": 66.86964576139506}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 6.891017964071856, \"energy_millijoules\": 34.524, \"energy_joules\": 0.034524}}, \"1836000\": {\"active\": {\"elapsed_sec\": 35.917, \"elapsed_ns\": 35917000000.0, \"power_mean\": 285.8098671938079, \"energy_millijoules\": 10265.433, \"energy_joules\": 10.265433000000002, \"coremark_score\": 16708.437761, \"coremarks_per_mhz\": 9.100456296840958, \"ulpmark_cm_score\": 58.44858175977574}, \"idle\": {\"elapsed_sec\": 5.011, \"elapsed_ns\": 5011000000.0, \"power_mean\": 8.188784673717821, \"energy_millijoules\": 41.034, \"energy_joules\": 0.041034}}, \"1999000\": {\"active\": {\"elapsed_sec\": 32.966, \"elapsed_ns\": 32966000000.0, \"power_mean\": 352.7863556391434, \"energy_millijoules\": 11629.955, \"energy_joules\": 11.629955, \"coremark_score\": 18204.988167, \"coremarks_per_mhz\": 9.107047607303652, \"ulpmark_cm_score\": 51.590913292441805}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 10.216367265469062, \"energy_millijoules\": 51.184, \"energy_joules\": 0.051184}}, \"2130000\": {\"active\": {\"elapsed_sec\": 30.931, \"elapsed_ns\": 30931000000.0, \"power_mean\": 440.0872910672141, \"energy_millijoules\": 13612.34, \"energy_joules\": 13.61234, \"coremark_score\": 19403.033341, \"coremarks_per_mhz\": 9.109405324413144, \"ulpmark_cm_score\": 44.0776530706697}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 12.4535835496107, \"energy_millijoules\": 62.38, \"energy_joules\": 0.062380000000000005}}, \"2253000\": {\"active\": {\"elapsed_sec\": 29.257, \"elapsed_ns\": 29257000000.0, \"power_mean\": 538.1068804046895, \"energy_millijoules\": 15743.393, \"energy_joules\": 15.743393, \"coremark_score\": 20512.820513, \"coremarks_per_mhz\": 9.104669557478916, \"ulpmark_cm_score\": 38.1112254518451}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 16.228588540626873, \"energy_millijoules\": 81.289, \"energy_joules\": 0.081289}}, \"2348000\": {\"active\": {\"elapsed_sec\": 28.077, \"elapsed_ns\": 28077000000.0, \"power_mean\": 634.4323823770346, \"energy_millijoules\": 17812.958, \"energy_joules\": 17.812958, \"coremark_score\": 21377.41832, \"coremarks_per_mhz\": 9.104522282793868, \"ulpmark_cm_score\": 33.683344450708304}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 20.534131736526945, \"energy_millijoules\": 102.876, \"energy_joules\": 0.10287600000000001}}}}, \"6\": {\"freqs\": {\"500000\": {\"active\": {\"elapsed_sec\": 129.249, \"elapsed_ns\": 129249000000.0, \"power_mean\": 46.86967017152937, \"energy_millijoules\": 6057.858, \"energy_joules\": 6.057858, \"coremark_score\": 4642.669225, \"coremarks_per_mhz\": 9.28533845, \"ulpmark_cm_score\": 99.04490993351115}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"851000\": {\"active\": {\"elapsed_sec\": 75.776, \"elapsed_ns\": 75776000000.0, \"power_mean\": 86.02164273648648, \"energy_millijoules\": 6518.376, \"energy_joules\": 6.518376, \"coremark_score\": 7919.014875, \"coremarks_per_mhz\": 9.305540393654525, \"ulpmark_cm_score\": 92.04746703780205}, \"idle\": {\"elapsed_sec\": 5.011, \"elapsed_ns\": 5011000000.0, \"power_mean\": 8.486529634803432, \"energy_millijoules\": 42.526, \"energy_joules\": 0.042526}}, \"984000\": {\"active\": {\"elapsed_sec\": 65.659, \"elapsed_ns\": 65659000000.0, \"power_mean\": 107.86358305792047, \"energy_millijoules\": 7082.215, \"energy_joules\": 7.082215, \"coremark_score\": 9139.236264, \"coremarks_per_mhz\": 9.287841731707315, \"ulpmark_cm_score\": 84.71925802873818}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 9.245109780439122, \"energy_millijoules\": 46.318, \"energy_joules\": 0.046318}}, \"1106000\": {\"active\": {\"elapsed_sec\": 58.385, \"elapsed_ns\": 58385000000.0, \"power_mean\": 131.57853900830693, \"energy_millijoules\": 7682.213, \"energy_joules\": 7.682213, \"coremark_score\": 10278.196519, \"coremarks_per_mhz\": 9.293125243218805, \"ulpmark_cm_score\": 78.10249468479981}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 10.116966067864272, \"energy_millijoules\": 50.686, \"energy_joules\": 0.050686}}, \"1277000\": {\"active\": {\"elapsed_sec\": 50.511, \"elapsed_ns\": 50511000000.0, \"power_mean\": 170.5546118667221, \"energy_millijoules\": 8614.884, \"energy_joules\": 8.614884, \"coremark_score\": 11880.952852, \"coremarks_per_mhz\": 9.30380019733751, \"ulpmark_cm_score\": 69.64690412546472}, \"idle\": {\"elapsed_sec\": 5.006, \"elapsed_ns\": 5006000000.0, \"power_mean\": 11.61785856971634, \"energy_millijoules\": 58.159, \"energy_joules\": 0.058159}}, \"1426000\": {\"active\": {\"elapsed_sec\": 45.299, \"elapsed_ns\": 45299000000.0, \"power_mean\": 209.96863065409832, \"energy_millijoules\": 9511.369, \"energy_joules\": 9.511369, \"coremark_score\": 13248.250127, \"coremarks_per_mhz\": 9.290497985273491, \"ulpmark_cm_score\": 63.082401702636076}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 12.521157684630738, \"energy_millijoules\": 62.731, \"energy_joules\": 0.062731}}, \"1582000\": {\"active\": {\"elapsed_sec\": 40.816, \"elapsed_ns\": 40816000000.0, \"power_mean\": 257.37958153665227, \"energy_millijoules\": 10505.205, \"energy_joules\": 10.505205, \"coremark_score\": 14703.720041, \"coremarks_per_mhz\": 9.294386878002529, \"ulpmark_cm_score\": 57.11454464715348}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 13.867065868263474, \"energy_millijoules\": 69.474, \"energy_joules\": 0.06947400000000001}}, \"1745000\": {\"active\": {\"elapsed_sec\": 36.988, \"elapsed_ns\": 36988000000.0, \"power_mean\": 316.17500270357954, \"energy_millijoules\": 11694.681, \"energy_joules\": 11.694681000000001, \"coremark_score\": 16225.425241, \"coremarks_per_mhz\": 9.298237960458453, \"ulpmark_cm_score\": 51.30537549506481}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 15.943512974051897, \"energy_millijoules\": 79.877, \"energy_joules\": 0.07987699999999999}}, \"1826000\": {\"active\": {\"elapsed_sec\": 35.32, \"elapsed_ns\": 35320000000.0, \"power_mean\": 383.2010475651189, \"energy_millijoules\": 13534.661, \"energy_joules\": 13.534661, \"coremark_score\": 16991.872221, \"coremarks_per_mhz\": 9.305516002738226, \"ulpmark_cm_score\": 44.33062638214581}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 16.590537033339988, \"energy_millijoules\": 83.102, \"energy_joules\": 0.08310200000000001}}, \"2048000\": {\"active\": {\"elapsed_sec\": 31.52, \"elapsed_ns\": 31520000000.0, \"power_mean\": 496.8119923857868, \"energy_millijoules\": 15659.514, \"energy_joules\": 15.659514, \"coremark_score\": 19040.96982, \"coremarks_per_mhz\": 9.297348544921874, \"ulpmark_cm_score\": 38.31536534275585}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 19.478443113772457, \"energy_millijoules\": 97.587, \"energy_joules\": 0.09758700000000001}}, \"2188000\": {\"active\": {\"elapsed_sec\": 29.516, \"elapsed_ns\": 29516000000.0, \"power_mean\": 588.1929800786014, \"energy_millijoules\": 17361.104, \"energy_joules\": 17.361104, \"coremark_score\": 20334.157996, \"coremarks_per_mhz\": 9.293490857404024, \"ulpmark_cm_score\": 34.5600141557818}, \"idle\": {\"elapsed_sec\": 5.011, \"elapsed_ns\": 5011000000.0, \"power_mean\": 22.700458990221513, \"energy_millijoules\": 113.752, \"energy_joules\": 0.11375199999999999}}, \"2252000\": {\"active\": {\"elapsed_sec\": 28.65, \"elapsed_ns\": 28650000000.0, \"power_mean\": 639.5158115183247, \"energy_millijoules\": 18322.128, \"energy_joules\": 18.322128, \"coremark_score\": 20948.257803, \"coremarks_per_mhz\": 9.302068296181172, \"ulpmark_cm_score\": 32.74728786961864}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 24.828542914171656, \"energy_millijoules\": 124.391, \"energy_joules\": 0.124391}}, \"2401000\": {\"active\": {\"elapsed_sec\": 26.903, \"elapsed_ns\": 26903000000.0, \"power_mean\": 772.3615210199606, \"energy_millijoules\": 20778.842, \"energy_joules\": 20.778842, \"coremark_score\": 22309.808879, \"coremarks_per_mhz\": 9.291882082049145, \"ulpmark_cm_score\": 28.87552636475122}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 29.797405189620758, \"energy_millijoules\": 149.285, \"energy_joules\": 0.149285}}, \"2507000\": {\"active\": {\"elapsed_sec\": 25.762, \"elapsed_ns\": 25762000000.0, \"power_mean\": 899.5568278860337, \"energy_millijoules\": 23174.383, \"energy_joules\": 23.174383000000002, \"coremark_score\": 23297.351868, \"coremarks_per_mhz\": 9.292920569605107, \"ulpmark_cm_score\": 25.890656937878344}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 35.490219560878245, \"energy_millijoules\": 177.806, \"energy_joules\": 0.17780600000000002}}, \"2630000\": {\"active\": {\"elapsed_sec\": 24.557, \"elapsed_ns\": 24557000000.0, \"power_mean\": 1055.338152054404, \"energy_millijoules\": 25915.939, \"energy_joules\": 25.915938999999998, \"coremark_score\": 24441.909728, \"coremarks_per_mhz\": 9.29350179771863, \"ulpmark_cm_score\": 23.15177543827372}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 44.52095808383233, \"energy_millijoules\": 223.05, \"energy_joules\": 0.22305}}, \"2704000\": {\"active\": {\"elapsed_sec\": 23.88, \"elapsed_ns\": 23880000000.0, \"power_mean\": 1203.396649916248, \"energy_millijoules\": 28737.112, \"energy_joules\": 28.737112, \"coremark_score\": 25135.101169, \"coremarks_per_mhz\": 9.29552558025148, \"ulpmark_cm_score\": 20.878924785482965}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 51.79620758483034, \"energy_millijoules\": 259.499, \"energy_joules\": 0.25949900000000004}}, \"2802000\": {\"active\": {\"elapsed_sec\": 23.037, \"elapsed_ns\": 23037000000.0, \"power_mean\": 1433.4306116247776, \"energy_millijoules\": 33021.941, \"energy_joules\": 33.021941, \"coremark_score\": 26055.237103, \"coremarks_per_mhz\": 9.298799822626695, \"ulpmark_cm_score\": 18.169737508767277}, \"idle\": {\"elapsed_sec\": 5.005, \"elapsed_ns\": 5005000000.0, \"power_mean\": 66.06573426573426, \"energy_millijoules\": 330.659, \"energy_joules\": 0.330659}}, \"2850000\": {\"active\": {\"elapsed_sec\": 22.652, \"elapsed_ns\": 22652000000.0, \"power_mean\": 1567.737374183295, \"energy_millijoules\": 35512.387, \"energy_joules\": 35.512387000000004, \"coremark_score\": 26499.425846, \"coremarks_per_mhz\": 9.298044156491228, \"ulpmark_cm_score\": 16.89551310645494}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 75.7373253493014, \"energy_millijoules\": 379.444, \"energy_joules\": 0.379444}}}}}, \"meta\": {\"cpu_count\": 8}}"
  },
  {
    "path": "results/gs201/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \n\n===== CPU 1 =====\nFrequencies: 300 574 738 930 1098 1197 1328 1401 1598 1704 1803\n\n 300:  1109     3.7 C/MHz     38 mW   20.7 J   29.0 I/mJ   541.2 s\n 574:  2127     3.7 C/MHz     55 mW   15.4 J   39.0 I/mJ   282.0 s\n 738:  2736     3.7 C/MHz     65 mW   14.2 J   42.2 I/mJ   219.3 s\n 930:  3450     3.7 C/MHz     76 mW   13.3 J   45.2 I/mJ   173.9 s\n1098:  4074     3.7 C/MHz     87 mW   12.7 J   47.1 I/mJ   147.3 s\n1197:  4440     3.7 C/MHz     93 mW   12.5 J   47.9 I/mJ   135.1 s\n1328:  4926     3.7 C/MHz    102 mW   12.4 J   48.4 I/mJ   121.8 s\n1401:  5200     3.7 C/MHz    107 mW   12.3 J   48.8 I/mJ   115.4 s\n1598:  5930     3.7 C/MHz    145 mW   14.7 J   40.8 I/mJ   101.2 s\n1704:  6325     3.7 C/MHz    169 mW   16.0 J   37.5 I/mJ    94.9 s\n1803:  6690     3.7 C/MHz    260 mW   23.3 J   25.8 I/mJ    89.7 s\n\n\n===== CPU 4 =====\nFrequencies: 400 553 696 799 910 1024 1197 1328 1491 1663 1836 1999 2130 2253 2348\n\n 400:  3634     9.1 C/MHz     26 mW    4.3 J   139.0 I/mJ   165.1 s\n 553:  5035     9.1 C/MHz     38 mW    4.6 J   131.2 I/mJ   119.2 s\n 696:  6342     9.1 C/MHz     52 mW    4.9 J   122.6 I/mJ    94.6 s\n 799:  7274     9.1 C/MHz     63 mW    5.2 J   116.3 I/mJ    82.5 s\n 910:  8281     9.1 C/MHz     77 mW    5.6 J   107.2 I/mJ    72.5 s\n1024:  9330     9.1 C/MHz     91 mW    5.8 J   102.7 I/mJ    64.3 s\n1197: 10898     9.1 C/MHz    120 mW    6.6 J   90.8 I/mJ    55.1 s\n1328: 12090     9.1 C/MHz    144 mW    7.2 J   83.9 I/mJ    49.6 s\n1491: 13573     9.1 C/MHz    182 mW    8.1 J   74.4 I/mJ    44.2 s\n1663: 15147     9.1 C/MHz    226 mW    9.0 J   66.9 I/mJ    39.6 s\n1836: 16708     9.1 C/MHz    286 mW   10.3 J   58.4 I/mJ    35.9 s\n1999: 18205     9.1 C/MHz    353 mW   11.6 J   51.6 I/mJ    33.0 s\n2130: 19403     9.1 C/MHz    440 mW   13.6 J   44.1 I/mJ    30.9 s\n2253: 20513     9.1 C/MHz    538 mW   15.7 J   38.1 I/mJ    29.3 s\n2348: 21377     9.1 C/MHz    634 mW   17.8 J   33.7 I/mJ    28.1 s\n\n\n===== CPU 6 =====\nFrequencies: 500 851 984 1106 1277 1426 1582 1745 1826 2048 2188 2252 2401 2507 2630 2704 2802 2850\n\n 500:  4643     9.3 C/MHz     47 mW    6.1 J   99.0 I/mJ   129.2 s\n 851:  7919     9.3 C/MHz     86 mW    6.5 J   92.0 I/mJ    75.8 s\n 984:  9139     9.3 C/MHz    108 mW    7.1 J   84.7 I/mJ    65.7 s\n1106: 10278     9.3 C/MHz    132 mW    7.7 J   78.1 I/mJ    58.4 s\n1277: 11881     9.3 C/MHz    171 mW    8.6 J   69.6 I/mJ    50.5 s\n1426: 13248     9.3 C/MHz    210 mW    9.5 J   63.1 I/mJ    45.3 s\n1582: 14704     9.3 C/MHz    257 mW   10.5 J   57.1 I/mJ    40.8 s\n1745: 16225     9.3 C/MHz    316 mW   11.7 J   51.3 I/mJ    37.0 s\n1826: 16992     9.3 C/MHz    383 mW   13.5 J   44.3 I/mJ    35.3 s\n2048: 19041     9.3 C/MHz    497 mW   15.7 J   38.3 I/mJ    31.5 s\n2188: 20334     9.3 C/MHz    588 mW   17.4 J   34.6 I/mJ    29.5 s\n2252: 20948     9.3 C/MHz    640 mW   18.3 J   32.7 I/mJ    28.6 s\n2401: 22310     9.3 C/MHz    772 mW   20.8 J   28.9 I/mJ    26.9 s\n2507: 23297     9.3 C/MHz    900 mW   23.2 J   25.9 I/mJ    25.8 s\n2630: 24442     9.3 C/MHz   1055 mW   25.9 J   23.2 I/mJ    24.6 s\n2704: 25135     9.3 C/MHz   1203 mW   28.7 J   20.9 I/mJ    23.9 s\n2802: 26055     9.3 C/MHz   1433 mW   33.0 J   18.2 I/mJ    23.0 s\n2850: 26499     9.3 C/MHz   1568 mW   35.5 J   16.9 I/mJ    22.6 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/gs201/main/uptime.txt",
    "content": " 07:26:07 up  1:08,  load average: 0.82, 0.83, 0.89\n"
  },
  {
    "path": "results/gs201/main/versions.txt",
    "content": "Kernel: Linux version 5.10.149-Sultan (sultan@sultan-box) (aarch64-linux-gnu-gcc (GCC) 12.2.0, GNU ld (GNU Binutils) 2.40) #1 SMP PREEMPT Sat Apr 22 23:13:08 PDT 2023\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/msm8917/main/cmdline.txt",
    "content": "ramoops_memreserve=4M androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 androidboot.bootdevice=7824900.sdhci earlycon=msm_hsl_uart,0x78B0000 androidboot.usbconfigfs=true loop.max_part=7 buildvariant=userdebug rcu_nocbs=0-3 isolcpus=1-3 nohz_full=1-3 loglevel=0 printk.devkmsg=on androidboot.emmc=true androidboot.verifiedbootstate=orange androidboot.veritymode=enforcing androidboot.keymaster=1 androidboot.serialno=REDACTED device_locked=0 androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_ili9881c_ebbgDJN_c3b_720p_video:1:none:cfg:single_dsi board_id=S88505CA1:board_gpio_num=100\n"
  },
  {
    "path": "results/msm8917/main/cpufreq_stats/0/time_in_state",
    "content": "960000 17209\n1094400 7949\n1248000 7045\n1401000 6536\n"
  },
  {
    "path": "results/msm8917/main/cpufreq_stats/0/total_trans",
    "content": "15\n"
  },
  {
    "path": "results/msm8917/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 4 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nHardware\t: Qualcomm Technologies, Inc MSM8917\n"
  },
  {
    "path": "results/msm8917/main/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. MSM8917-PMI8937 QRD SKU5;\nCompatible: qcom,msm8917-qrd-sku5;qcom,msm8917-qrd;qcom,msm8917;qcom,qrd;\n"
  },
  {
    "path": "results/msm8917/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x100\n[    0.000000] Linux version 4.9.259-perf+ (mamles@buildbot) (Proton clang version 13.0.0 (https://github.com/llvm/llvm-project 7ee96429a0b057bcc97331a6a762fc3cd00aed61)) #1 SMP PREEMPT Wed Mar 17 06:21:26 UTC 2021\n[    0.000000] Boot CPU: AArch64 Processor [410fd034]\n[    0.000000] Machine: Qualcomm Technologies, Inc. MSM8917-PMI8937 QRD SKU5\n[    0.000000] ramoops: msm_reserve_ramoops_memory addr=b0000000,size=400000\n[    0.000000] ramoops: msm_reserve_ramoops_memory record_size=0,ftrace_size=0\n[    0.000000] efi: Getting EFI parameters from FDT:\n[    0.000000] efi: UEFI not found.\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff800000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ffc00000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff400000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x000000008f800000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node venus_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@0, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000084a00000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node other_ext_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086800000, size 85 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008bd00000, size 17 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_fw_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ce00000, size 7 MiB\n[    0.000000] OF: reserved mem: initialized node wcnss_fw_region@0, compatible id removed-dma-pool\n[    0.000000] cma: Reserved 16 MiB at 0x00000000fd400000\n[    0.000000] On node 0 totalpages: 488704\n[    0.000000]   DMA zone: 7636 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 488704 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.0 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] Did not receive the expected number of bytes from PRNG: 0\n[    0.000000] percpu: Embedded 22 pages/cpu s51096 r8192 d30824 u90112\n[    0.000000] pcpu-alloc: s51096 r8192 d30824 u90112 alloc=22*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 \n[    0.000000] CPU features: enabling workaround for ARM erratum 845719\n[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 481068\n[    0.000000] Kernel command line: ramoops_memreserve=4M androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 androidboot.bootdevice=7824900.sdhci earlycon=msm_hsl_uart,0x78B0000 androidboot.usbconfigfs=true loop.max_part=7 buildvariant=userdebug rcu_nocbs=0-3 isolcpus=1-3 nohz_full=1-3 loglevel=0 printk.devkmsg=on androidboot.emmc=true androidboot.verifiedbootstate=orange androidboot.veritymode=enforcing androidboot.keymaster=1 androidboot.serialno=REDACTED device_locked=0 androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_ili9881c_ebbgDJN_c3b_720p_video:1:none:cfg:single_dsi board_id=S88505CA1:board_gpio_num=100\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 393216 bytes\n[    0.000000] log_buf_len min size: 131072 bytes\n[    0.000000] log_buf_len: 524288 bytes\n[    0.000000] early log buf free: 126844(96%)\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)\n[    0.000000] Memory: 1792920K/1954816K available (17916K kernel code, 2744K rwdata, 6972K rodata, 6144K init, 2956K bss, 108648K reserved, 53248K cma-reserved)\n[    0.000000] Virtual kernel memory layout:\n[    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n[    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)\n[    0.000000]       .text : 0x        (ptrval) - 0x        (ptrval)   ( 17920 KB)\n[    0.000000]     .rodata : 0x        (ptrval) - 0x        (ptrval)   (  8192 KB)\n[    0.000000]       .init : 0x        (ptrval) - 0x        (ptrval)   (  6144 KB)\n[    0.000000]       .data : 0x        (ptrval) - 0x        (ptrval)   (  2745 KB)\n[    0.000000]        .bss : 0x        (ptrval) - 0x        (ptrval)   (  2957 KB)\n[    0.000000]     fixed   : 0xffffffbefe7fb000 - 0xffffffbefec00000   (  4116 KB)\n[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)\n[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)\n[    0.000000]               0xffffffbf00000000 - 0xffffffbf02000000   (    32 MB actual)\n[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc080000000   (  2048 MB)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tRCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4.\n[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4\n[    0.000000] NR_IRQS:64 nr_irqs:64 0\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-3.\n[    0.000000] \tOffload RCU callbacks from all CPUs\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-3.\n[    0.000000] arm_arch_timer: Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000004] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000015] clocksource: Switched to clocksource arch_sys_counter\n[    0.000503] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.000513] pid_max: default: 32768 minimum: 301\n[    0.000574] Security Framework initialized\n[    0.000579] SELinux:  Initializing.\n[    0.000626] SELinux:  Starting in permissive mode\n[    0.000653] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000659] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.001485] /cpus/cpu-map/cluster0: empty cluster\n[    0.001595] sched-energy: Sched-energy-costs installed from DT\n[    0.011634] ASID allocator initialised with 32768 entries\n[    0.019839] MSM Memory Dump base table set up\n[    0.019854] MSM Memory Dump apps data table set up\n[    0.020002] EFI services will not be available.\n[    0.030531] CPU1: Booted secondary processor [410fd034]\n[    0.038723] CPU2: Booted secondary processor [410fd034]\n[    0.046968] CPU3: Booted secondary processor [410fd034]\n[    0.047160] Brought up 4 CPUs\n[    0.047164] SMP: Total of 4 processors activated.\n[    0.047169] CPU features: detected feature: 32-bit EL0 Support\n[    0.047173] CPU features: detected feature: Kernel page table isolation (KPTI)\n[    0.050902] CPU: All CPU(s) started at EL1\n[    0.050929] alternatives: patching kernel code\n[    0.051217] CPU0: update max cpu_capacity 1024\n[    0.100964] DMI not present or invalid.\n[    0.101120] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.101133] futex hash table entries: 1024 (order: 5, 131072 bytes)\n[    0.103096] ramoops: msm_register_ramoops_device\n[    0.103187] pinctrl core: initialized pinctrl subsystem\n[    0.103881] NET: Registered protocol family 16\n[    0.104952] schedtune: init normalization constants...\n[    0.104960] schedtune: CLUSTER[0]        min_pwr:     1 max_pwr:    88\n[    0.104965] schedtune: CPU[0]            min_pwr:    40 max_pwr:   343\n[    0.104969] schedtune: SYSTEM            min_pwr:    41 max_pwr:   431\n[    0.104973] schedtune: using normalization constants mul: 1343553873 sh1: 1 sh2: 8\n[    0.104975] schedtune: verify normalization constants...\n[    0.104979] schedtune: max_pwr/2^0:  390 => norm_pwr:  1024\n[    0.104982] schedtune: max_pwr/2^1:  195 => norm_pwr:   512\n[    0.104986] schedtune: max_pwr/2^2:   97 => norm_pwr:   254\n[    0.104989] schedtune: max_pwr/2^3:   48 => norm_pwr:   126\n[    0.104992] schedtune: max_pwr/2^4:   24 => norm_pwr:    63\n[    0.104996] schedtune: max_pwr/2^5:   12 => norm_pwr:    31\n[    0.104999] schedtune: configured to support 5 boost groups\n[    0.105291] pstore: using zlib compression\n[    0.105308] console [pstore0] enabled\n[    0.105386] pstore: Registered ramoops as persistent store backend\n[    0.105391] ramoops: attached 0x400000@0xb0000000, ecc: 0/0\n[    0.106995] cpuidle: using governor menu\n[    0.107028] cpuidle: using governor qcom\n[    0.110105] vdso32: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.110113] vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.110119] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.110867] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.114741] msm8917-pinctrl 1000000.pinctrl: invalid resource\n[    0.130483] sps:sps is ready.\n[    0.130519] platform soc:mem_dump: assigned reserved memory node mem_dump_region\n[    0.133105] unable to find DT imem DLOAD mode node\n[    0.133944] unable to find DT imem EDLOAD mode node\n[    0.136932] msm_rpm_glink_dt_parse: qcom,rpm-glink compatible not matches\n[    0.137500] cpu-clock-8939 b011050.qcom,cpu-clock-8939: No PVS version available. Defaulting to 0!\n[    0.137507] cpu-clock-8939 b011050.qcom,cpu-clock-8939: Speed bin: 0 PVS Version: 0\n[    0.139125] msm_watchdog b017000.qcom,wdt: wdog absent resource not present\n[    0.139151] msm_watchdog b017000.qcom,wdt: No need to allocate memory for scandumps\n[    0.139733] msm_watchdog b017000.qcom,wdt: MSM Watchdog Initialized\n[    0.140280] spmi spmi-0: PMIC arbiter version v2 (0x20010000)\n[    0.141078] spm_regulator_probe: name=pm8937_s5, range=LV, voltage=1225000 uV, mode=AUTO, step rate=1200 uV/us\n[    0.147304] smd_channel_probe_now: allocation table not initialized\n[    0.149080] smd_channel_probe_now: allocation table not initialized\n[    0.149533] smd_channel_probe_now: allocation table not initialized\n[    0.152175] platform 4080000.qcom,mss: assigned reserved memory node modem_region@0\n[    0.152369] platform c200000.qcom,lpass: assigned reserved memory node adsp_fw_region@0\n[    0.152560] platform a21b000.qcom,pronto: assigned reserved memory node wcnss_fw_region@0\n[    0.152694] platform 1de0000.qcom,venus: assigned reserved memory node venus_region@0\n[    0.153268] platform soc:qcom,adsprpc-mem: assigned reserved memory node adsp_region@0\n[    0.154067] ACC: mem_acc_efuse_init: efuse_addr = 0x00000000000a4000 (len=0x1000)\n[    0.154193] ACC: mem_acc_parse_override_fuse_version_map: qcom,override-fuse-version-map tuple match not found\n[    0.154692] cpr_efuse_init: apc_corner: efuse_addr = 0x00000000000a4000 (len=0x1000)\n[    0.154717] cpr_read_fuse_revision: apc_corner: fuse revision = 2\n[    0.154726] cpr_parse_speed_bin_fuse: apc_corner: [row: 37]: 0xc1089d214faf70c4, speed_bits = 0\n[    0.154736] cpr_parse_pvs_version_fuse: apc_corner: [row: 37]: 0xc1089d214faf70c4, pvs_version = 5\n[    0.154812] cpr_pvs_init: apc_corner: pvs voltage: [1095000 1125000 1250000] uV\n[    0.154818] cpr_pvs_init: apc_corner: ceiling voltage: [1155000 1225000 1350000] uV\n[    0.154824] cpr_pvs_init: apc_corner: floor voltage: [1050000 1050000 1090000] uV\n[    0.154899] cpr_init_cpr_parameters: apc_corner: up threshold = 2, down threshold = 4\n[    0.154918] cpr_init_cpr_parameters: apc_corner: CPR is enabled by default.\n[    0.154938] cpr_init_cpr_efuse: apc_corner: [row:67] = 0x248ec263e4a92eaa\n[    0.154953] cpr_init_cpr_efuse: apc_corner: Corner[1]: ro_sel = 2, target quot = 944\n[    0.154959] cpr_init_cpr_efuse: apc_corner: Corner[2]: ro_sel = 2, target quot = 996\n[    0.154964] cpr_init_cpr_efuse: apc_corner: Corner[3]: ro_sel = 2, target quot = 1210\n[    0.154992] cpr_adjust_target_quots: apc_corner: Corner[3]: adjusted target quot = 1260\n[    0.155059] cpr_get_corner_quot_adjustment: apc_corner: fuse corner 2 quotient adjustment scaling factor: 0.388\n[    0.155064] cpr_get_corner_quot_adjustment: apc_corner: fuse corner 3 quotient adjustment scaling factor: 0.859\n[    0.155073] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[1] = 944\n[    0.155076] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[2] = 996\n[    0.155080] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[3] = 1129\n[    0.155084] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[4] = 1260\n[    0.155088] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[5] = 1260\n[    0.155472] cpr_config: apc_corner: Timer count: 0x17700 (for 5000 us)\n[    0.155768] apc_corner: Bringing 0uV into 1-1uV\n[    0.181989] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.181997] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.182016] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.182026] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.182058] mdss_pll_util_resource_init+0x2c/0xa8->msm_mdss_config_vreg: gdsc get failed. rc=-517\n[    0.182062] mdss_pll_util_resource_init: Vreg config failed rc=-517\n[    0.182066] mdss_pll_probe: Pll ndx=0 resource init failed rc=-517\n[    0.183928] KPI: Bootloader start count = 28955\n[    0.183933] KPI: Bootloader end count = 130876\n[    0.183936] KPI: Bootloader display count = 102558\n[    0.183939] KPI: Bootloader load kernel count = 2319\n[    0.183942] KPI: Kernel MPM timestamp = 142641\n[    0.183945] KPI: Kernel MPM Clock frequency = 32768\n[    0.183961] socinfo_print: v0.10, id=303, ver=1.0, raw_id=86, raw_ver=0, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65561, pmic_die_revision=65536 foundry_id=6 serial_number=1336897732\n[    0.185144] arm-smmu 1f00000.qcom,iommu: Couldn't get clock: iface_clk\n[    0.185525] arm-smmu 1e00000.qcom,iommu: Couldn't get clock: iface_clk\n[    0.189070] SCSI subsystem initialized\n[    0.189256] usbcore: registered new interface driver usbfs\n[    0.189300] usbcore: registered new interface driver hub\n[    0.189336] usbcore: registered new device driver usb\n[    0.190144] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pm8937@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'warm' boot\n[    0.190163] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pm8937@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from KPDPWR_N (Long Power Key hold)\n[    0.190384] input: qpnp_pon as /devices/virtual/input/input0\n[    0.191335] i2c-msm-v2 78b6000.i2c: probing driver i2c-msm-v2\n[    0.191390] i2c-msm-v2 78b6000.i2c: error on clk_get(core_clk):-517\n[    0.191399] i2c-msm-v2 78b6000.i2c: error probe() failed with err:-517\n[    0.191520] i2c-msm-v2 78b7000.i2c: probing driver i2c-msm-v2\n[    0.191552] i2c-msm-v2 78b7000.i2c: error on clk_get(core_clk):-517\n[    0.191559] i2c-msm-v2 78b7000.i2c: error probe() failed with err:-517\n[    0.191687] i2c-msm-v2 7af5000.i2c: probing driver i2c-msm-v2\n[    0.191719] i2c-msm-v2 7af5000.i2c: error on clk_get(core_clk):-517\n[    0.191726] i2c-msm-v2 7af5000.i2c: error probe() failed with err:-517\n[    0.191906] media: Linux media interface: v0.10\n[    0.191939] Linux video capture interface: v2.00\n[    0.198390] EDAC MC: Ver: 3.0.0\n[    0.200197] aw2013 led driver: initialize.\n[    0.200506] dmi: Firmware registration failed.\n[    0.201323] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@0\n[    0.201461] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.201695] ION heap system created\n[    0.201881] ION heap mm created at 0x00000000fd400000 with size 1000000\n[    0.201892] ION heap qsecom created at 0x00000000fe400000 with size 1000000\n[    0.201902] ION heap qsecom_ta created at 0x00000000ff800000 with size 400000\n[    0.203070] PMIC@SID0: PM8937 v1.0 options: 2, 2, 0, 0\n[    0.206548] Advanced Linux Sound Architecture Driver Initialized.\n[    0.206552] aw87319_pa_init Enter\n[    0.207043] Bluetooth: Core ver 2.22\n[    0.207070] NET: Registered protocol family 31\n[    0.207073] Bluetooth: HCI device and connection manager initialized\n[    0.207081] Bluetooth: HCI socket layer initialized\n[    0.207087] Bluetooth: L2CAP socket layer initialized\n[    0.208559] NetLabel: Initializing\n[    0.208562] NetLabel:  domain hash size = 128\n[    0.208564] NetLabel:  protocols = UNLABELED CIPSOv4\n[    0.208612] NetLabel:  unlabeled traffic allowed by default\n[    0.208770] msm_rpm_glink_dt_parse: qcom,rpm-glink compatible not matches\n[    0.209770] pm8937_s2_level: Bringing 1uV into 16-16uV\n[    0.210169] pm8937_s2_floor_level: Bringing 1uV into 16-16uV\n[    0.210793] pm8937_s2_level_ao: Bringing 1uV into 16-16uV\n[    0.212944] pm8937_l3_level_ao: Bringing 1uV into 16-16uV\n[    0.222610] qcom,gcc-8952 1800000.qcom,gcc: GPU speed bin: 0\n[    0.222830] gfx3d_clk_src: set OPP pair(19200000 Hz: 128 uV) on 1c00000.qcom,kgsl-3d0\n[    0.223104] gfx3d_clk_src: set OPP pair(200000000 Hz: 128 uV) on 1c00000.qcom,kgsl-3d0\n[    0.223738] gfx3d_clk_src: set OPP pair(598000000 Hz: 384 uV) on 1c00000.qcom,kgsl-3d0\n[    0.236910] qcom,gcc-8952 1800000.qcom,gcc: Registered GCC clocks\n[    0.237011] cpu-clock-8939 b011050.qcom,cpu-clock-8939: No PVS version available. Defaulting to 0!\n[    0.237017] cpu-clock-8939 b011050.qcom,cpu-clock-8939: Speed bin: 0 PVS Version: 0\n[    0.238446] populate_opp_table: clock-cpu-8939: OPP tables populated (cpu 0 and 3)\n[    0.238452] print_opp_table: clock_cpu: a53_c1: OPP voltage for 960000000: 1095000\n[    0.238456] print_opp_table: clock_cpu: a53_c1: OPP voltage for 1401000000: 1250000\n[    0.238556] sched-energy energy-costs: cpu=0 eff=1024 [freq=960000 cap=702 power_d0=159] -> [freq=1497600 cap=1024 power_d0=343]\n[    0.238560] CPU0: update cpu_power 1368064\n[    0.238564] CPU0: update cpu_capacity 1024\n[    0.238574] sched-energy energy-costs: cpu=1 eff=1024 [freq=960000 cap=702 power_d0=159] -> [freq=1497600 cap=1024 power_d0=343]\n[    0.238577] CPU1: update cpu_power 1368064\n[    0.238580] CPU1: update cpu_capacity 1024\n[    0.238590] sched-energy energy-costs: cpu=2 eff=1024 [freq=960000 cap=702 power_d0=159] -> [freq=1497600 cap=1024 power_d0=343]\n[    0.238593] CPU2: update cpu_power 1368064\n[    0.238596] CPU2: update cpu_capacity 1024\n[    0.238605] sched-energy energy-costs: cpu=3 eff=1024 [freq=960000 cap=702 power_d0=159] -> [freq=1497600 cap=1024 power_d0=343]\n[    0.238608] CPU3: update cpu_power 1368064\n[    0.238611] CPU3: update cpu_capacity 1024\n[    0.238921] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.241607] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.241617] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.241637] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.241647] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.242211] dsi_pll_clock_register_lpm: Registered DSI PLL:0 clocks successfully\n[    0.242636] arm-smmu 1f00000.qcom,iommu: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.242644] arm-smmu 1f00000.qcom,iommu: \tstream matching with 4 register groups, mask 0x7fff\n[    0.243805] arm-smmu 1e00000.qcom,iommu: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.243814] arm-smmu 1e00000.qcom,iommu: \tstream matching with 122 register groups, mask 0x7fff\n[    0.243905] arm-smmu 1e00000.qcom,iommu: found 32 context interrupt(s) but have 30 context banks. assuming 30 context interrupts.\n[    0.244427] iommu: Adding device soc:qcom,msm-audio-ion to group 0\n[    0.244640] i2c-msm-v2 78b6000.i2c: probing driver i2c-msm-v2\n[    0.244690] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.244698] i2c-msm-v2 78b6000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.244936] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.245063] aw2013_led_probe start\n[    0.370817] i2c-msm-v2 78b7000.i2c: probing driver i2c-msm-v2\n[    0.370869] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.370876] i2c-msm-v2 78b7000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.371099] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.371454] i2c-msm-v2 7af5000.i2c: probing driver i2c-msm-v2\n[    0.371496] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.371504] i2c-msm-v2 7af5000.i2c: msm_bus_scale_register_client(mstr-id:84):0 (not a problem)\n[    0.371722] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.373087] cpufreq: driver msm up and running\n[    0.373779] clocksource: Switched to clocksource arch_sys_counter\n[    0.420945] VFS: Disk quotas dquot_6.6.0\n[    0.420984] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.421035] msm_bus_fabric_init_driver\n[    0.426202] msm_bus_device 580000.ad-hoc-bus: Bus scaling driver probe successful\n[    0.427233] NET: Registered protocol family 2\n[    0.427613] TCP established hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.427703] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)\n[    0.427903] TCP: Hash tables configured (established 16384 bind 16384)\n[    0.427949] UDP hash table entries: 1024 (order: 3, 32768 bytes)\n[    0.427983] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)\n[    0.428086] NET: Registered protocol family 1\n[    0.428617] gcc-mdss-8952 soc:qcom,gcc-mdss@1800000: Registered GCC MDSS clocks.\n[    0.429459] Trying to unpack rootfs image as initramfs...\n[    0.707577] Freeing initrd memory: 7480K\n[    0.708250] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.711489] audit: initializing netlink subsys (disabled)\n[    0.711528] audit: type=2000 audit(0.709:1): initialized\n[    0.712969] workingset: timestamp_bits=61 max_order=19 bucket_order=0\n[    0.717842] exFAT: file-system version 5.8-2arter97\n[    0.717971] Registering sdcardfs 0.1\n[    0.718141] fuse init (API version 7.26)\n[    0.719850] SELinux:  Registering netfilter hooks\n[    0.720099] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    0.720101] pfk_f2fs [pfk_f2fs_init]: PFK F2FS inited successfully\n[    0.720104] pfk [pfk_init]: Driver initialized successfully\n[    0.723360] io scheduler noop registered\n[    0.723520] io scheduler cfq registered (default)\n[    0.731147] msm_mdss_get_res_byname: 'vbif_nrt_phys' resource not found\n[    0.731158] mdss_mdp_probe+0x224/0x6d0->msm_mdss_ioremap_byname: 'vbif_nrt_phys' msm_mdss_get_res_byname failed\n[    0.731323] mdss_mdp_irq_clk_register: unable to get clk: lut_clk\n[    0.731334] mdss_mdp_irq_clk_register: unable to get clk: mnoc_clk\n[    0.731700] No change in context(0==0), skip\n[    0.732127] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:0 num:0 rect:0 ndx:0x1 prio:0\n[    0.732143] mdss_mdp_pipe_addr_setup: type:1 ftchid:-1 xinid:1 num:3 rect:0 ndx:0x8 prio:1\n[    0.732146] mdss_mdp_pipe_addr_setup: type:1 ftchid:-1 xinid:5 num:4 rect:0 ndx:0x10 prio:2\n[    0.732159] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:2 num:6 rect:0 ndx:0x40 prio:3\n[    0.732171] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:7 num:10 rect:0 ndx:0x400 prio:0\n[    0.732179] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-pipe-sw-reset-off : u32 array read\n[    0.732272] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-ib-factor-overlap : u32 array read\n[    0.732279] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-bus-througput-factor : u32 array read\n[    0.732492] xlog_status: enable:0, panic:1, dump:2\n[    0.732739] iommu: Adding device 1a00000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb to group 1\n[    0.732934] iommu: Adding device 1a00000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb to group 2\n[    0.733117] mdss_mdp_probe: mdss version = 0x100f0000, bootloader display is on, num 1, intf_sel=0x00000100\n[    0.735706] mdss_smmu_util_parse_dt_clock: clocks are not defined\n[    0.735714] mdss_smmu_probe: iommu v2 domain[0] mapping and clk register successful!\n[    0.735730] mdss_smmu_util_parse_dt_clock: clocks are not defined\n[    0.735735] mdss_smmu_probe: iommu v2 domain[2] mapping and clk register successful!\n[    0.735852] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.735862] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.735870] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.736775] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->0\n[    0.736890] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_ili9881c_ebbgDJN_c3b_720p_video:1:none:cfg:single_dsi panel_name:qcom,mdss_dsi_ili9881c_ebbgDJN_c3b_720p_video\n[    0.736908] mdss_dsi_panel_init: Panel Name = ili9881c_HD720p_video_EbbgDJN_c3b\n[    0.737067] mdss_dsi_panel_timing_from_dt: found new timing \"qcom,mdss_dsi_ili9881c_ebbgDJN_c3b_720p_video\" (ffffffc00d5c7408)\n[    0.737082] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-post-panel-on-command\n[    0.737088] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-timing-switch-command\n[    0.737090] mdss_dsi_panel_get_dsc_cfg_np: cannot find dsc config node:\n[    0.737202] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-idle-on-command\n[    0.737208] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-idle-off-command\n[    0.737236] mdss_dsi_parse_panel_features: ulps feature disabled\n[    0.737241] mdss_dsi_parse_panel_features: ulps during suspend feature disabled\n[    0.737247] mdss_dsi_parse_dms_config: dynamic switch feature enabled: 0\n[    0.737317] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-on\n[    0.737323] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-off\n[    0.737373] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.737380] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.737385] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.737392] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.737481] 1a94000.qcom,mdss_dsi_ctrl0 supply lab not found, using dummy regulator\n[    0.737515] 1a94000.qcom,mdss_dsi_ctrl0 supply ibb not found, using dummy regulator\n[    0.737565] mdss_dsi_parse_ctrl_params:4167 Unable to read qcom,display-id, data=0000000000000000,len=45\n[    0.737573] mdss_dsi_parse_gpio_params: bklt_en gpio not specified\n[    0.737577] mdss_dsi_parse_gpio_params: ext vdd gpio not specified\n[    0.737603] mdss_dsi_retrieve_ctrl_resources: phy_regulator_base=ffffff800aab7b80 phy_regulator_size=30\n[    0.737606] mdss_dsi_retrieve_ctrl_resources: ctrl_base=ffffff800aab3000 ctrl_size=300 phy_base=ffffff800aab5400 phy_size=280\n[    0.737743] dsi_panel_device_register: Continuous splash enabled\n[    0.737833] mdss_register_panel: adding framebuffer device 1a94000.qcom,mdss_dsi_ctrl0\n[    0.759634] mdss_dsi_ctrl_probe: Dsi Ctrl->0 initialized, DSI rev:0x10040002, PHY rev:0x1\n[    0.759666] mdss_dsi_status_init: DSI status check interval:5000\n[    0.759938] mdss_register_panel: adding framebuffer device soc:qcom,mdss_wb_panel\n[    0.761044] mdss_fb_probe: fb0: split_mode:0 left:0 right:0\n[    0.761554] mdss_fb_register: FrameBuffer[0] 720x1280 registered successfully!\n[    0.761852] mdss_fb_probe: fb1: split_mode:0 left:0 right:0\n[    0.761943] mdss_fb_register: FrameBuffer[1] 640x640 registered successfully!\n[    0.762030] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    0.762218] qcom-sps-dma 7884000.qcom,sps-dma: dma_async_device_register: device has no channels!\n[    0.762279] qcom-sps-dma 7ac4000.qcom,sps-dma: dma_async_device_register: device has no channels!\n[    0.763808] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    0.763832] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    0.766336] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.766341] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    0.766346] memshare: hyp_assign_phys failed size=2097152 err=-5\n[    0.766380] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.766471] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.766559] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.767939] minidump-id not found for adsp\n[    0.768083] minidump-id not found for wcnss\n[    0.768351] minidump-id not found for venus\n[    0.768371] subsys-pil-tz 1de0000.qcom,venus: for venus segments only will be dumped.\n[    0.769878] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    0.769892] minidump-id not found for modem\n[    0.770654] msm-dcc b3000.dcc: DCC XPU is not specified\n[    0.772667] wcnss: wcnss_wlan probed in built-in mode\n[    0.777897] diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    0.777903] diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    0.845271] diag: In __diag_glink_init, unable to register for glink channel DIAG_CTRL\n[    0.846504] diag: In __diag_glink_init, unable to register for glink channel DIAG_DATA\n[    0.847657] diag: In __diag_glink_init, unable to register for glink channel DIAG_CMD\n[    0.848806] diag: In __diag_glink_init, unable to register for glink channel DIAG_DCI_DATA\n[    0.849954] diag: In __diag_glink_init, unable to register for glink channel DIAG_DCI_CMD\n[    0.850210] [srandom] mod_init /dev/srandom driver registered..\n[    0.850221] [srandom] mod_init /proc/srandom registion regisered..\n[    0.850222] [srandom] mod_init Module version         : 1.38.0\n[    0.850224] -----------------------:----------------------\n[    0.850226] Please support my work and efforts contributing\n[    0.850227] to the Linux community.  A $25 payment per\n[    0.850229] server would be highly appreciated.\n[    0.850230] -----------------------:----------------------\n[    0.850232] Author                 : Jonathan Senkerik\n[    0.850234] Website                : http://www.jintegrate.co\n[    0.850236] github                 : http://github.com/josenk/srandom\n[    0.850237] Paypal                 : josenk@jintegrate.co\n[    0.850239] Bitcoin                : 1MTNg7SqcEWs5uwLKwNiAfYqBfnKFJu65p\n[    0.850241] Commercial Invoice     : Avail on request.\n[    0.855049] iommu: Adding device 1f00000.qcom,kgsl-iommu:gfx3d_user to group 3\n[    0.883223] brd: module loaded\n[    0.907049] loop: module loaded\n[    0.908458] zram: Added device: zram0\n[    0.909391] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1000000\n[    0.909423] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.909431] QSEECOM: qseecom_probe: qseecom clocks handled by other subsystem\n[    0.909435] QSEECOM: qseecom_probe: qsee reentrancy support phase is not defined, setting to default 0\n[    0.909684] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    0.910376] fpc1020_init OK\n[    0.910614] wingtech vib.max_timeout = 50000\n[    0.912438] QCE50: __qce_get_device_tree_data: BAM Apps EE is not defined, setting to default 1\n[    0.912810] qce 720000.qcedev: QTI Crypto 5.3.3 device found @0x720000\n[    0.912820] qce 720000.qcedev: CE device = 0x0 IO base, CE = ffffff800b920000 Consumer (IN) PIPE 2,\n               Producer (OUT) PIPE 3 IO base BAM = 0000000000000000\n               BAM IRQ 128 Engines Availability = 0x2010853\n[    0.913040] sps:BAM 0x0000000000704000 is registered.\n[    0.913220] sps:BAM 0x0000000000704000 (va:0xffffff800b9a0000) enabled: ver:0x27, number of pipes:8\n[    0.913476] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000000704000 irq 128\n[    0.917841] QCE50: __qce_get_device_tree_data: BAM Apps EE is not defined, setting to default 1\n[    0.918130] qcrypto 720000.qcrypto: QTI Crypto 5.3.3 device found @0x720000\n[    0.918139] qcrypto 720000.qcrypto: CE device = 0x0 IO base, CE = ffffff800bc20000 Consumer (IN) PIPE 4,\n               Producer (OUT) PIPE 5 IO base BAM = 0000000000000000\n               BAM IRQ 128 Engines Availability = 0x2010853\n[    0.918508] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000000704000 irq 128\n[    0.919809] qcrypto 720000.qcrypto: qcrypto-ecb-aes\n[    0.919968] qcrypto 720000.qcrypto: qcrypto-cbc-aes\n[    0.920212] qcrypto 720000.qcrypto: qcrypto-ctr-aes\n[    0.920347] qcrypto 720000.qcrypto: qcrypto-ecb-des\n[    0.920480] qcrypto 720000.qcrypto: qcrypto-cbc-des\n[    0.920613] qcrypto 720000.qcrypto: qcrypto-ecb-3des\n[    0.920743] qcrypto 720000.qcrypto: qcrypto-cbc-3des\n[    0.920875] qcrypto 720000.qcrypto: qcrypto-xts-aes\n[    0.921015] qcrypto 720000.qcrypto: qcrypto-sha1\n[    0.921147] qcrypto 720000.qcrypto: qcrypto-sha256\n[    0.921280] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    0.921413] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    0.921545] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    0.921682] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    0.921814] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    0.921947] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    0.922086] qcrypto 720000.qcrypto: qcrypto-hmac-sha1\n[    0.922220] qcrypto 720000.qcrypto: qcrypto-hmac-sha256\n[    0.922359] qcrypto 720000.qcrypto: qcrypto-aes-ccm\n[    0.922494] qcrypto 720000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    0.923078] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    0.923141] ICE IRQ = 118\n[    0.923887] SCSI Media Changer driver v0.25 \n[    0.925260] spi_master spi7: will run message pump with realtime priority\n[    0.925631] sps: BAM device 0x0000000007ac4000 is not registered yet.\n[    0.925841] sps:BAM 0x0000000007ac4000 is registered.\n[    0.926408] sps:BAM 0x0000000007ac4000 (va:0xffffff800bca0000) enabled: ver:0x19, number of pipes:10\n[    0.927585] libphy: Fixed MDIO Bus: probed\n[    0.927589] tun: Universal TUN/TAP device driver, 1.6\n[    0.927591] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    0.927645] PPP generic driver version 2.4.2\n[    0.927719] PPP BSD Compression module registered\n[    0.927721] PPP Deflate Compression module registered\n[    0.927740] PPP MPPE Compression module registered\n[    0.927744] NET: Registered protocol family 24\n[    0.927757] PPTP driver version 0.8.5\n[    0.928059] usbcore: registered new interface driver r8152\n[    0.928097] usbcore: registered new interface driver asix\n[    0.928147] usbcore: registered new interface driver ax88179_178a\n[    0.928178] usbcore: registered new interface driver cdc_ether\n[    0.928209] usbcore: registered new interface driver net1080\n[    0.928240] usbcore: registered new interface driver cdc_subset\n[    0.928271] usbcore: registered new interface driver zaurus\n[    0.928315] usbcore: registered new interface driver cdc_ncm\n[    0.929381] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.929385] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    0.929392] msm_sharedmem: setup_shared_ram_perms: hyp_assign_phys failed IPA=0x0160x00000000fd800000 size=1572864 err=-5\n[    0.929484] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.930278] msm_otg 78db000.usb: msm_otg probe\n[    0.931927] msm_otg 78db000.usb: OTG regs = ffffff800ab99000\n[    0.933669] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.933672] ehci-platform: EHCI generic platform driver\n[    0.934220] ehci-msm: Qualcomm On-Chip EHCI Host Controller\n[    0.934581] Unable to get vbus_otg\n[    0.934588] msm_hsusb_host msm_hsusb_host: unable to register with transceiver\n[    0.934679] usbcore: registered new interface driver cdc_acm\n[    0.934681] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters\n[    0.934725] usbcore: registered new interface driver usb-storage\n[    0.934755] usbcore: registered new interface driver ums-alauda\n[    0.934784] usbcore: registered new interface driver ums-cypress\n[    0.934811] usbcore: registered new interface driver ums-datafab\n[    0.934838] usbcore: registered new interface driver ums-freecom\n[    0.934864] usbcore: registered new interface driver ums-isd200\n[    0.934892] usbcore: registered new interface driver ums-jumpshot\n[    0.934919] usbcore: registered new interface driver ums-karma\n[    0.934946] usbcore: registered new interface driver ums-onetouch\n[    0.934973] usbcore: registered new interface driver ums-sddr09\n[    0.935002] usbcore: registered new interface driver ums-sddr55\n[    0.935029] usbcore: registered new interface driver ums-usbat\n[    0.935096] usbcore: registered new interface driver usbserial\n[    0.935129] usbcore: registered new interface driver usb_ehset_test\n[    0.935470] msm_sharedmem: sharedmem_register_qmi: qmi init successful\n[    0.937403] usb_qcrndis_init: failed to register diag -17\n[    0.937431] CHRDEV \"rmnet_ctrl\" major number 233 goes below the dynamic allocation range\n[    0.938358] mousedev: PS/2 mouse device common for all mice\n[    0.939230] i2c-msm-v2 78b7000.i2c: msm_bus_scale_register_client(mstr-id:86):0xd (ok)\n[    0.939763] input: ft5346 as /devices/platform/soc/78b7000.i2c/i2c-3/3-0038/input/input1\n[    1.180218] ft5x06_720p 3-0038: Device ID = 0x54\n[    1.180583] ft5x06_720p 3-0038: report rate = 110Hz\n[    1.180883] ft5x06_720p 3-0038: WT: fw vendor id = 81 \n[    1.180962] Gt9xx driver installing..\n[    1.181375] goodix-ts 3-005d: GTP Driver Version: V2.8.0.2<2017/12/14>\n[    1.181380] goodix-ts 3-005d: GTP I2C Address: 0x5d\n[    1.181394] goodix-ts 3-005d: touch input parameters is [id x y w p]<10 720 1280 1024 1024>\n[    1.181400] goodix-ts 3-005d: int-sync enabled\n[    1.181405] goodix-ts 3-005d: driver-send-cfg enabled\n[    1.181412] goodix-ts 3-005d: slide-wakeup enabled\n[    1.181421] goodix-ts 3-005d: esd-protect enabled\n[    1.181427] goodix-ts 3-005d: resume-in-workqueue enabled\n[    1.181438] goodix-ts 3-005d: key-map is [8b ac 9e 0]\n[    1.181839] goodix-ts 3-005d: Success init INT pinctrl\n[    1.181846] goodix-ts 3-005d: Success init RST pinctrl\n[    1.181853] goodix-ts 3-005d: Failed to request GPIO:65, ERRNO:-16\n[    1.181857] goodix-ts 3-005d: Failed request IO port\n[    1.182573] qcom,qpnp-rtc 200f000.qcom,spmi:qcom,pm8937@0:qcom,pm8937_rtc: rtc core: registered qpnp_rtc as rtc0\n[    1.182981] i2c /dev entries driver\n[    1.188126] iommu: Adding device 1d00000.qcom,vidc:non_secure_cb to group 4\n[    1.188703] iommu: Adding device 1d00000.qcom,vidc:secure_bitstream_cb to group 5\n[    1.189153] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    1.189157] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    1.189265] iommu: Adding device 1d00000.qcom,vidc:secure_pixel_cb to group 6\n[    1.189657] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    1.189660] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    1.189786] iommu: Adding device 1d00000.qcom,vidc:secure_non_pixel_cb to group 7\n[    1.190278] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    1.190282] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    1.194727] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb1 to group 8\n[    1.195220] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb3 to group 9\n[    1.195448] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb4 to group 10\n[    1.197274] msm 1b00000.qcom,msm-cam: Entity type for entity msm_cci was not initialized!\n[    1.197340] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    1.201766] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csiphy was not initialized!\n[    1.201865] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    1.202026] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csiphy was not initialized!\n[    1.202099] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    1.202725] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    1.202739] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    1.202929] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    1.202941] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    1.203129] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    1.203141] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    1.203923] msm_actuator_platform_probe:2000 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    1.203931] msm 1b00000.qcom,msm-cam: Entity type for entity msm_actuator was not initialized!\n[    1.204601] msm_eeprom_platform_probe qcom,eeprom-name s5k5e8_ofilm_riva, rc 0\n[    1.204740] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    1.226274] msm_cci_init:1439: hw_version = 0x10020006\n[    1.320050] match id for s5k5e8_ofilm_riva module_id=7\n[    1.340133] msm 1b00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    1.340467] msm_eeprom_platform_probe qcom,eeprom-name s5k5e8_qtech_riva, rc 0\n[    1.340625] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    1.361322] msm_cci_init:1439: hw_version = 0x10020006\n[    1.460050] match id for s5k5e8_qtech_riva module_id=7\n[    1.460053] msm_eeprom_platform_probe match id for s5k5e8_qtech_riva failed\n[    1.480356] msm_eeprom_platform_probe qcom,eeprom-name ov13855_qtech, rc 0\n[    1.480482] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    1.510125] msm_cci_init:1439: hw_version = 0x10020006\n[    1.609257] random: fast init done\n[    1.854440] match id for ov13855_qtech module_id=7\n[    1.854443] msm_eeprom_platform_probe match id for ov13855_qtech failed\n[    1.884093] msm_eeprom_platform_probe qcom,eeprom-name s5k3l8_ofilm_riva, rc 0\n[    1.884211] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    1.914322] msm_cci_init:1439: hw_version = 0x10020006\n[    2.175787] match id for s5k3l8_ofilm_riva module_id=7\n[    2.204316] msm 1b00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    2.205342] msm_flash_get_dt_data:1110 No valid flash GPIOs data\n[    2.205353] msm 1b00000.qcom,msm-cam: Entity type for entity msm_camera_flash was not initialized!\n[    2.206193] adp1660 i2c_add_driver success\n[    2.206776] msm 1b00000.qcom,msm-cam: Entity type for entity msm_sensor_init was not initialized!\n[    2.207379] msm_camera_get_dt_gpio_set_tbl failed 794\n[    2.207687] msm_camera_get_dt_gpio_set_tbl failed 794\n[    2.210741] MSM-CPP cpp_init_hardware:1011 CPP HW Version: 0x40030004\n[    2.210748] MSM-CPP cpp_init_hardware:1029 stream_cnt:0\n[    2.210760] msm 1b00000.qcom,msm-cam: Entity type for entity 1b04000.qcom,cpp was not initialized!\n[    2.213553] CAM-SOC msm_camera_get_reg_base:787 err: mem resource vfe_fuse not found\n[    2.213557] CAM-SOC msm_camera_get_res_size:830 err: mem resource vfe_fuse not found\n[    2.213839] msm 1b00000.qcom,msm-cam: Entity type for entity 1b10000.qcom,vfe0 was not initialized!\n[    2.213990] CAM-SOC msm_camera_get_reg_base:787 err: mem resource vfe_fuse not found\n[    2.213993] CAM-SOC msm_camera_get_res_size:830 err: mem resource vfe_fuse not found\n[    2.214142] msm 1b00000.qcom,msm-cam: Entity type for entity 1b14000.qcom,vfe1 was not initialized!\n[    2.215081] msm 1b00000.qcom,msm-cam: Entity type for entity 1b31000.qcom,ispif was not initialized!\n[    2.215541] __msm_jpeg_init:1537] Jpeg Device id 0\n[    2.215763] CHRDEV \"jpeg0\" major number 232 goes below the dynamic allocation range\n[    2.216233] msm 1b00000.qcom,msm-cam: Entity type for entity msm_buf_mngr was not initialized!\n[    2.217288] i2c-msm-v2 7af5000.i2c: msm_bus_scale_register_client(mstr-id:84):0x12 (ok)\n[    2.240629] bq27426- fg_dump_registers: Reg[00] = 0x0202\n[    2.260622] bq27426- fg_dump_registers: Reg[02] = 0x0BF1\n[    2.280624] bq27426- fg_dump_registers: Reg[04] = 0x1042\n[    2.300622] bq27426- fg_dump_registers: Reg[06] = 0x0009\n[    2.320621] bq27426- fg_dump_registers: Reg[08] = 0x08C8\n[    2.340621] bq27426- fg_dump_registers: Reg[0A] = 0x0924\n[    2.360620] bq27426- fg_dump_registers: Reg[0C] = 0x0835\n[    2.380623] bq27426- fg_dump_registers: Reg[0E] = 0x0893\n[    2.400622] bq27426- fg_dump_registers: Reg[10] = 0xFF2A\n[    2.420621] bq27426- fg_dump_registers: Reg[16] = 0x0A23\n[    2.440621] bq27426- fg_dump_registers: Reg[18] = 0xFC85\n[    2.460621] bq27426- fg_dump_registers: Reg[1A] = 0x073D\n[    2.480623] bq27426- fg_dump_registers: Reg[1C] = 0x0060\n[    2.500621] bq27426- fg_dump_registers: Reg[1E] = 0x0C1A\n[    2.520621] bq27426- fg_dump_registers: Reg[20] = 0x0046\n[    2.540620] bq27426- fg_dump_registers: Reg[28] = 0x085C\n[    2.560621] bq27426- fg_dump_registers: Reg[2A] = 0x0835\n[    2.580622] bq27426- fg_dump_registers: Reg[2C] = 0x08B8\n[    2.600621] bq27426- fg_dump_registers: Reg[2E] = 0x0893\n[    2.620621] bq27426- fg_dump_registers: Reg[30] = 0x0060\n[    2.640620] bq27426- fg_dump_registers: Reg[66] = 0x0590\n[    2.660610] bq27426- fg_dump_registers: Reg[68] = 0x04F8\n[    2.680616] bq27426- fg_dump_registers: Reg[6C] = 0x0044\n[    2.700611] bq27426- fg_dump_registers: Reg[6E] = 0x0018\n[    2.720616] bq27426- fg_dump_registers: Reg[70] = 0x3C05\n[    2.720621] bq27426- fg_irq_thread: itpor=0, cfg_mode = 0, seal_state=0, batt_present=1\n[    2.720624] bq27426- fg_irq_thread: Battery inserted\n[    2.723340] bq27426- fg_irq_thread: RSOC:96, Volt:4162, Current:-214, Temperature:327\n[    2.723354] bq27426- bq_fg_probe: bq fuel gauge probe successfully, bq27426 FW ver:514\n[    2.724602] thermal thermal_zone0: failed to read out thermal zone (-517)\n[    2.724822] thermal thermal_zone1: failed to read out thermal zone (-517)\n[    2.724957] thermal thermal_zone2: failed to read out thermal zone (-517)\n[    2.725102] bq27426- fg_get_property: bq27426 current=214000\n[    2.725155] thermal thermal_zone3: failed to read out thermal zone (-517)\n[    2.731738] bq27426- fg_get_property: bq27426 current=214000\n[    2.748603] device-mapper: uevent: version 1.0.3\n[    2.748780] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com\n[    2.749954] device-mapper: req-crypt: dm-req-crypt successfully initalized.\n\n[    2.750600] CHRDEV \"bt\" major number 231 goes below the dynamic allocation range\n[    2.750713] sdhci: Secure Digital Host Controller Interface driver\n[    2.750715] sdhci: Copyright(c) Pierre Ossman\n[    2.750717] sdhci-pltfm: SDHCI platform and OF driver helper\n[    2.752738] usbcore: registered new interface driver usbhid\n[    2.752740] usbhid: USB HID core driver\n[    2.752896] ashmem: initialized\n[    2.753090] qpnp_coincell_charger_show_state: enabled=Y, voltage=3200 mV, resistance=2100 ohm\n[    2.756094] bimc-bwmon 408000.qcom,cpu-bwmon: BW HWmon governor registered.\n[    2.760247] sdhci_msm 7824900.sdhci: failed opening nvmem cell err : -2\n[    2.760258] qcom_ice_get_pdevice: found ice device ffffffc079b3e000\n[    2.760261] qcom_ice_get_pdevice: matching platform device ffffffc07a0c4000\n[    2.760566] sdhci_msm 7824900.sdhci: Failed to get dll hsr settings from dt\n[    2.762465] qcom_ice 7803000.sdcc1ice: QC ICE 2.1.44 device found @0xffffff800b9e8000\n[    2.763159] mmc0: SDHCI controller on 7824900.sdhci [7824900.sdhci] using 64-bit ADMA in CMDQ mode\n[    2.848304] mmc0: Out-of-interrupt timeout is 50[ms]\n[    2.848309] mmc0: eMMC FW version: 0xa5\n[    2.848312] mmc0: CMDQ supported: depth: 32\n[    2.848315] mmc0: cache barrier support 1 flush policy 1\n[    2.857029] cmdq_host_alloc_tdl: desc_size: 768 data_sz: 63488 slot-sz: 24\n[    2.857179] mmc0: CMDQ enabled on card\n[    2.857191] mmc0: new HS400 Enhanced strobe MMC card at address 0001\n[    2.859764] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0xf) latency=-1\n[    2.859861] mmcblk0: mmc0:0001 HAG4a2 14.7 GiB \n[    2.861083] mmcblk0rpmb: mmc0:0001 HAG4a2 partition 3 4.00 MiB\n[    2.863390]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42 p43 p44 p45 p46 p47 p48 p49\n[    2.870144] sdhci_msm 7864900.sdhci: failed opening nvmem cell err : -2\n[    2.870154] sdhci_msm 7864900.sdhci: sdhci_msm_probe: ICE device is not enabled\n[    2.870450] sdhci_msm 7864900.sdhci: Failed to get dll hsr settings from dt\n[    2.883551] mmc1: SDHCI controller on 7864900.sdhci [7864900.sdhci] using 64-bit ADMA in legacy mode\n[    2.912900] tz_log 8600720.tz-log: Hyp log service is not supported\n[    2.916791] CHRDEV \"sensors\" major number 230 goes below the dynamic allocation range\n[    2.917143] usbcore: registered new interface driver snd-usb-audio\n[    2.917853] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    2.919833] msm8917-pinctrl 1000000.pinctrl: pin GPIO_88 already requested by 7af7000.spi; cannot claim for soc:msm_cdc_pinctrl_quin\n[    2.919839] msm8917-pinctrl 1000000.pinctrl: pin-88 (soc:msm_cdc_pinctrl_quin) status -22\n[    2.919845] msm8917-pinctrl 1000000.pinctrl: could not request pin 88 (GPIO_88) from group gpio88  on device 1000000.pinctrl\n[    2.919850] msm-cdc-pinctrl soc:msm_cdc_pinctrl_quin: Error applying setting, reverse things back\n[    2.919855] msm-cdc-pinctrl soc:msm_cdc_pinctrl_quin: msm_cdc_pinctrl_probe: set cdc gpio sleep state fail: -22\n[    2.944490] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx group_id: 0x9100\n[    2.944770] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0 dev_id: 0x9000\n[    2.944782] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.944813] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx group_id: 0x9101\n[    2.945053] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0 dev_id: 0x9001\n[    2.945063] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.945090] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx group_id: 0x9110\n[    2.945303] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0 dev_id: 0x9010\n[    2.945313] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.945338] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx group_id: 0x9111\n[    2.945548] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0 dev_id: 0x9011\n[    2.945558] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.945585] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx group_id: 0x9120\n[    2.945794] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0 dev_id: 0x9020\n[    2.945803] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.945833] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx group_id: 0x9121\n[    2.946044] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0 dev_id: 0x9021\n[    2.946054] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.946080] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx group_id: 0x9130\n[    2.946286] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0 dev_id: 0x9030\n[    2.946296] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.946325] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx group_id: 0x9131\n[    2.946535] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0 dev_id: 0x9031\n[    2.946545] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.946571] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx group_id: 0x9140\n[    2.946779] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0 dev_id: 0x9040\n[    2.946789] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.946814] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx group_id: 0x9141\n[    2.947024] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0 dev_id: 0x9041\n[    2.947034] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.953308] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    2.953320] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    2.953335] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    2.954040] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    2.954047] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    2.957411] CHRDEV \"avtimer\" major number 229 goes below the dynamic allocation range\n[    2.958012] audio_notifier_init: PDR register failed, ret = -19, disable service\n[    2.959410] audio_notifer_reg_service: service SSR_ADSP is in use\n[    2.959414] audio_notifer_reg_service: service SSR_MODEM is in use\n[    2.962752] u32 classifier\n[    2.962755]     Actions configured\n[    2.962760] Netfilter messages via NETLINK v0.30.\n[    2.963094] mmc1: new high speed SDHC card at address aaaa\n[    2.963390] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    2.963487] ctnetlink v0.93: registering with nfnetlink.\n[    2.963810] xt_time: kernel timezone is -0000\n[    2.963888] gre: GRE over IPv4 demultiplexor driver\n[    2.963889] IPv4 over IPsec tunneling driver\n[    2.964213] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    2.964351] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    2.964374] Initializing XFRM netlink socket\n[    2.964388] IPsec XFRM device driver\n[    2.964616] NET: Registered protocol family 10\n[    2.966354] mip6: Mobile IPv6\n[    2.966367] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    2.966781] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    2.967597] NET: Registered protocol family 17\n[    2.967610] NET: Registered protocol family 15\n[    2.967627] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.\n[    2.967630] Ebtables v2.0 registered\n[    2.967680] l2tp_core: L2TP core driver, V2.0\n[    2.967687] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    2.967688] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    2.967698] l2tp_netlink: L2TP netlink interface\n[    2.967716] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    2.967718] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    2.967815] sctp: Hash tables configured (bind 256/256)\n[    2.968808] NET: Registered protocol family 27\n[    2.974618] minidump-id not found for adsp\n[    2.976401] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0xf) latency=-1\n[    2.976641] minidump-id not found for wcnss\n[    2.976786] subsys-pil-tz a21b000.qcom,pronto: for wcnss segments only will be dumped.\n[    2.977359] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    2.977368] minidump-id not found for modem\n[    2.977595] mmcblk1: mmc1:aaaa SS08G 7.40 GiB \n[    2.978153] pil-q6v5-mss 4080000.qcom,mss: for modem segments only will be dumped.\n[    2.978205] pil-q6v5-mss 4080000.qcom,mss: for md_modem segments only will be dumped.\n[    2.978390] Unable to get vbus_otg\n[    2.978394] msm_hsusb_host msm_hsusb_host: unable to register with transceiver\n[    2.980291]  mmcblk1: p1\n[    2.981688] bq2560x: bq2560x_init_device: Charger Enabled Successfully!\n[    2.983118] bq2560x: bq2560x_charger_interrupt: usb removed, set usb present = 0\n[    2.983156] bq2560x: bq2560x_external_power_changed: current_limit = 0\n[    2.983556] bq2560x: bq2560x_charger_probe: bq2560x probe successfully, Part Num:2, Revision:1\n               !\n[    2.983847] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    2.984722] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    2.984731] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    2.984745] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    2.985314] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    2.985320] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    2.985866] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    2.986615] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    2.986624] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    2.986637] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    2.987167] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    2.987172] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    2.987771] Registered cp15_barrier emulation handler\n[    2.987779] Registered setend emulation handler\n[    2.987804] core_ctl: Creating CPU group 0\n[    2.987806] core_ctl: Init CPU0 state\n[    2.987808] core_ctl: Init CPU1 state\n[    2.987809] core_ctl: Init CPU2 state\n[    2.987810] core_ctl: Init CPU3 state\n[    2.988459] registered taskstats version 1\n[    2.989743] qcom,cc-debug-8952 1874000.qcom,cc-debug: Registered Debug Mux successfully\n[    2.990552] msm_otg 78db000.usb: phy_reset: success\n[    2.990737] bq2560x: bq2560x_external_power_changed: current_limit = 0\n[    2.994529] runin_work:BatteryTestStatus_enable = 0 bq->usb_present = 0 \n[    2.995617] bq27426- fg_get_property: bq27426 current=214000\n[    2.997310] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb to group 11\n[    2.998484] CHRDEV \"adsprpc-smd\" major number 228 goes below the dynamic allocation range\n[    2.998918] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    2.999795] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    2.999805] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    2.999819] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.000489] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.000495] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.000845] power_supply battery: driver failed to report `resistance_id' property: -22\n[    3.000923] bq2560x: bq2560x_external_power_changed: current_limit = 0\n[    3.002135] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input2\n[    3.002435] qcom,qpnp-rtc 200f000.qcom,spmi:qcom,pm8937@0:qcom,pm8937_rtc: setting system clock to 1970-02-02 21:54:26 UTC (2843666)\n[    3.003161] lpm_levels_of: idx 1 594\n[    3.003316] lpm_levels: register_cluster_lpm_stats()\n[    3.004180] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.005317] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.005327] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.005341] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.005909] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.005915] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.007016] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.007863] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.007873] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.007886] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.008447] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.008452] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.009271] runin_work:BatteryTestStatus_enable = 0 bq->usb_present = 0 \n[    3.010348] bq27426- fg_get_property: bq27426 current=214000\n[    3.011930] RNDIS_IPA module is loaded.\n[    3.011944] clock_late_init: Removing enables held for handed-off clocks\n[    3.012186] power_supply battery: driver failed to report `resistance_id' property: -22\n[    3.015815] mem_acc_corner: disabling\n[    3.015853] adv_vreg: disabling\n[    3.016112] ALSA device list:\n[    3.016114]   No soundcards found.\n[    3.016198] Warning: unable to open an initial console.\n[    3.018140] Freeing unused kernel memory: 6144K\n[    3.111237] ipa_get_transport_type:2724 IPA HW is not supported\n[    3.112085] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.113003] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.113013] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.113026] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.113595] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.113600] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.115281] msm_otg 78db000.usb: USB in low power mode\n[    4.289723] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    4.289925] cpu1 \n[    4.289992] \n               Offline CPUs: \n[    4.294314] cpu1 \n[    4.345135] cpu2 \n[    4.384743] cpu3 \n\n[    9.435446] bq27426- fg_get_property: bq27426 current=144000\n[    9.435773] Sampling power every 1000 ms\n               Baseline power usage: \n[   26.459524] bq27426- fg_get_property: bq27426 current=132000\n[   28.469295] bq27426- fg_get_property: bq27426 current=132000\n[   30.475369] bq27426- fg_get_property: bq27426 current=132000\n[   32.485014] bq27426- fg_get_property: bq27426 current=131000\n[   34.493971] bq27426- fg_get_property: bq27426 current=131000\n[   36.503105] bq27426- fg_get_property: bq27426 current=131000\n[   38.510894] bq27426- fg_get_property: bq27426 current=131000\n[   40.519419] bq27426- fg_get_property: bq27426 current=131000\n[   42.525374] bq27426- fg_get_property: bq27426 current=131000\n[   44.534988] bq27426- fg_get_property: bq27426 current=131000\n[   46.543951] bq27426- fg_get_property: bq27426 current=131000\n[   48.553050] bq27426- fg_get_property: bq27426 current=131000\n[   50.560588] bq27426- fg_get_property: bq27426 current=131000\n[   52.569063] bq27426- fg_get_property: bq27426 current=131000\n[   54.246511] bq2560x: bq2560x_check_batt_capacity: Battery capacity changed, new capacity = 96\n[   54.249794] runin_work:BatteryTestStatus_enable = 0 bq->usb_present = 0 \n[   54.251288] bq27426- fg_get_property: bq27426 current=131000\n[   54.253840] power_supply battery: driver failed to report `resistance_id' property: -22\n[   54.575389] bq27426- fg_get_property: bq27426 current=131000\n[   56.585049] bq27426- fg_get_property: bq27426 current=131000\n[   58.594006] bq27426- fg_get_property: bq27426 current=131000\n[   60.603142] bq27426- fg_get_property: bq27426 current=131000\n[   61.281374] random: crng init done\n[   62.611623] bq27426- fg_get_property: bq27426 current=131000\n[   64.620301] bq27426- fg_get_property: bq27426 current=131000\n[   66.628763] bq27426- fg_get_property: bq27426 current=131000\n[   68.635451] bq27426- fg_get_property: bq27426 current=131000\n[   70.645055] bq27426- fg_get_property: bq27426 current=131000\n[   72.653954] bq27426- fg_get_property: bq27426 current=131000\n[   74.663175] bq27426- fg_get_property: bq27426 current=131000\n[   76.671044] bq27426- fg_get_property: bq27426 current=131000\n[   78.679346] bq27426- fg_get_property: bq27426 current=131000\n[   80.685374] bq27426- fg_get_property: bq27426 current=131000\n[   82.694957] bq27426- fg_get_property: bq27426 current=131000\n[   84.702388] CPU1: Booted secondary processor [410fd034]\n[   85.707714] 550 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 960 1094 1248 1401\n               \n                960: \n[   89.817733] bq27426- fg_get_property: bq27426 current=131000\n[   90.825491] bq27426- fg_get_property: bq27426 current=132000\n[   91.833497] bq27426- fg_get_property: bq27426 current=131000\n[   92.840309] bq27426- fg_get_property: bq27426 current=132000\n[   94.851305] bq27426- fg_get_property: bq27426 current=153000\n[   95.855902] bq27426- fg_get_property: bq27426 current=182000\n[   96.860449] bq27426- fg_get_property: bq27426 current=183000\n[   97.864997] bq27426- fg_get_property: bq27426 current=182000\n[   98.869533] bq27426- fg_get_property: bq27426 current=183000\n[   99.874278] bq27426- fg_get_property: bq27426 current=182000\n[  100.878809] bq27426- fg_get_property: bq27426 current=183000\n[  101.883521] bq27426- fg_get_property: bq27426 current=183000\n[  102.888076] bq27426- fg_get_property: bq27426 current=183000\n[  103.892336] bq27426- fg_get_property: bq27426 current=183000\n[  104.897039] bq27426- fg_get_property: bq27426 current=183000\n[  105.901663] bq27426- fg_get_property: bq27426 current=183000\n[  106.906235] bq27426- fg_get_property: bq27426 current=183000\n[  107.910817] bq27426- fg_get_property: bq27426 current=183000\n[  108.915361] bq27426- fg_get_property: bq27426 current=183000\n[  109.919901] bq27426- fg_get_property: bq27426 current=183000\n[  110.924522] bq27426- fg_get_property: bq27426 current=183000\n[  111.929065] bq27426- fg_get_property: bq27426 current=183000\n[  112.933654] bq27426- fg_get_property: bq27426 current=183000\n[  113.938208] bq27426- fg_get_property: bq27426 current=183000\n[  114.942322] bq27426- fg_get_property: bq27426 current=183000\n[  115.946859] bq27426- fg_get_property: bq27426 current=183000\n[  116.951463] bq27426- fg_get_property: bq27426 current=183000\n[  117.956015] bq27426- fg_get_property: bq27426 current=182000\n[  118.960548] bq27426- fg_get_property: bq27426 current=183000\n[  119.965127] bq27426- fg_get_property: bq27426 current=183000\n[  120.969668] bq27426- fg_get_property: bq27426 current=183000\n[  121.974423] bq27426- fg_get_property: bq27426 current=183000\n[  122.978957] bq27426- fg_get_property: bq27426 current=183000\n[  123.983635] bq27426- fg_get_property: bq27426 current=183000\n[  124.988173] bq27426- fg_get_property: bq27426 current=183000\n[  125.992301] bq27426- fg_get_property: bq27426 current=183000\n[  126.996833] bq27426- fg_get_property: bq27426 current=183000\n[  128.001473] bq27426- fg_get_property: bq27426 current=183000\n[  129.006022] bq27426- fg_get_property: bq27426 current=183000\n[  130.010630] bq27426- fg_get_property: bq27426 current=183000\n[  131.015235] bq27426- fg_get_property: bq27426 current=183000\n[  132.019770] bq27426- fg_get_property: bq27426 current=183000\n[  133.024484] bq27426- fg_get_property: bq27426 current=183000\n[  134.029031] bq27426- fg_get_property: bq27426 current=183000\n[  135.033623] bq27426- fg_get_property: bq27426 current=183000\n[  136.038172] bq27426- fg_get_property: bq27426 current=183000\n[  137.042355] bq27426- fg_get_property: bq27426 current=183000\n[  138.046889] bq27426- fg_get_property: bq27426 current=183000\n[  139.051350] bq27426- fg_get_property: bq27426 current=183000\n[  140.055899] bq27426- fg_get_property: bq27426 current=183000\n[  141.060438] bq27426- fg_get_property: bq27426 current=183000\n[  142.064984] bq27426- fg_get_property: bq27426 current=183000\n[  143.069526] bq27426- fg_get_property: bq27426 current=183000\n[  144.074278] bq27426- fg_get_property: bq27426 current=183000\n[  145.078814] bq27426- fg_get_property: bq27426 current=183000\n[  146.083521] bq27426- fg_get_property: bq27426 current=182000\n[  147.088063] bq27426- fg_get_property: bq27426 current=183000\n[  148.092300] bq27426- fg_get_property: bq27426 current=183000\n[  149.096843] bq27426- fg_get_property: bq27426 current=183000\n[  150.101480] bq27426- fg_get_property: bq27426 current=183000\n[  151.106036] bq27426- fg_get_property: bq27426 current=183000\n[  152.110657] bq27426- fg_get_property: bq27426 current=183000\n[  153.115265] bq27426- fg_get_property: bq27426 current=183000\n[  154.119817] bq27426- fg_get_property: bq27426 current=182000\n[  155.124577] bq27426- fg_get_property: bq27426 current=183000\n[  156.129115] bq27426- fg_get_property: bq27426 current=183000\n[  156.661055] bq27426- fg_dump_registers: Reg[00] = 0x0202\n[  156.680896] bq27426- fg_dump_registers: Reg[02] = 0x0BE3\n[  156.701066] bq27426- fg_dump_registers: Reg[04] = 0x1054\n[  156.720895] bq27426- fg_dump_registers: Reg[06] = 0x0009\n[  156.741124] bq27426- fg_dump_registers: Reg[08] = 0x08C1\n[  156.760895] bq27426- fg_dump_registers: Reg[0A] = 0x0924\n[  156.781050] bq27426- fg_dump_registers: Reg[0C] = 0x082F\n[  156.800916] bq27426- fg_dump_registers: Reg[0E] = 0x0893\n[  156.821049] bq27426- fg_dump_registers: Reg[10] = 0xFF49\n[  156.840972] bq27426- fg_dump_registers: Reg[16] = 0x0A23\n[  156.861049] bq27426- fg_dump_registers: Reg[18] = 0xFD03\n[  156.880897] bq27426- fg_dump_registers: Reg[1A] = 0x076A\n[  156.901067] bq27426- fg_dump_registers: Reg[1C] = 0x0060\n[  156.920896] bq27426- fg_dump_registers: Reg[1E] = 0x0BF5\n[  156.941127] bq27426- fg_dump_registers: Reg[20] = 0x0046\n[  156.960896] bq27426- fg_dump_registers: Reg[28] = 0x0855\n[  156.981050] bq27426- fg_dump_registers: Reg[2A] = 0x082F\n[  157.000914] bq27426- fg_dump_registers: Reg[2C] = 0x08B8\n[  157.021049] bq27426- fg_dump_registers: Reg[2E] = 0x0893\n[  157.040973] bq27426- fg_dump_registers: Reg[30] = 0x0060\n[  157.061050] bq27426- fg_dump_registers: Reg[66] = 0x0590\n[  157.080885] bq27426- fg_dump_registers: Reg[68] = 0x04F8\n[  157.101061] bq27426- fg_dump_registers: Reg[6C] = 0x004B\n[  157.120890] bq27426- fg_dump_registers: Reg[6E] = 0x0018\n[  157.132911] bq27426- fg_get_property: bq27426 current=183000\n[  157.141078] bq27426- fg_dump_registers: Reg[70] = 0x3C05\n[  157.141815] bq27426- fg_get_property: bq27426 current=183000\n[  157.141819] bq2560x: bq2560x_dump_status: FG current:183000\n[  157.141821] bq2560x: bq2560x_dump_status: bq Reg[0x00 -0x0B] = \n[  157.142095] 0x04, \n[  157.142480] 0x1A, \n[  157.142720] 0x08, \n[  157.142957] 0x30, \n[  157.143194] 0x88, \n[  157.143430] 0x8F, \n[  157.143667] 0x55, \n[  157.143903] 0x4D, \n[  157.144140] 0x00, \n[  157.144376] 0x00, \n[  157.144612] 0x03, \n[  157.144848] 0x11, \n\n[  157.144853] bq2560x: bq2560x_dump_status: Vbus voltage not good!\n[  157.144856] bq2560x: bq2560x_dump_status: Not Charging\n[  158.137432] bq27426- fg_get_property: bq27426 current=184000\n[  159.142113] bq27426- fg_get_property: bq27426 current=183000\n[  160.146654] bq27426- fg_get_property: bq27426 current=183000\n[  161.151280] bq27426- fg_get_property: bq27426 current=183000\n[  162.155821] bq27426- fg_get_property: bq27426 current=183000\n[  163.160358] bq27426- fg_get_property: bq27426 current=183000\n[  164.164917] bq27426- fg_get_property: bq27426 current=183000\n[  165.169465] bq27426- fg_get_property: bq27426 current=183000\n[  166.174207] bq27426- fg_get_property: bq27426 current=183000\n[  167.178774] bq27426- fg_get_property: bq27426 current=183000\n[  168.183481] bq27426- fg_get_property: bq27426 current=183000\n[  169.188019] bq27426- fg_get_property: bq27426 current=183000\n[  170.192305] bq27426- fg_get_property: bq27426 current=183000\n[  171.196856] bq27426- fg_get_property: bq27426 current=183000\n[  172.201470] bq27426- fg_get_property: bq27426 current=182000\n[  173.206016] bq27426- fg_get_property: bq27426 current=183000\n[  174.217038]  3117     3.2 C/MHz    214 mW   17.1 J   14.6 I/mJ    80.2 s\n               1094: \n[  178.328816] bq27426- fg_get_property: bq27426 current=132000\n[  179.335472] bq27426- fg_get_property: bq27426 current=133000\n[  180.343501] bq27426- fg_get_property: bq27426 current=133000\n[  181.350152] bq27426- fg_get_property: bq27426 current=133000\n[  183.360146] bq27426- fg_get_property: bq27426 current=142000\n[  184.364595] bq27426- fg_get_property: bq27426 current=196000\n[  185.368981] bq27426- fg_get_property: bq27426 current=196000\n[  186.373521] bq27426- fg_get_property: bq27426 current=195000\n[  187.377893] bq27426- fg_get_property: bq27426 current=196000\n[  188.382150] bq27426- fg_get_property: bq27426 current=196000\n[  189.386524] bq27426- fg_get_property: bq27426 current=196000\n[  190.391024] bq27426- fg_get_property: bq27426 current=196000\n[  191.395429] bq27426- fg_get_property: bq27426 current=196000\n[  192.399808] bq27426- fg_get_property: bq27426 current=196000\n[  193.404419] bq27426- fg_get_property: bq27426 current=197000\n[  194.408798] bq27426- fg_get_property: bq27426 current=196000\n[  195.412140] bq27426- fg_get_property: bq27426 current=196000\n[  196.416521] bq27426- fg_get_property: bq27426 current=196000\n[  197.420942] bq27426- fg_get_property: bq27426 current=196000\n[  198.425337] bq27426- fg_get_property: bq27426 current=196000\n[  199.429723] bq27426- fg_get_property: bq27426 current=196000\n[  200.434231] bq27426- fg_get_property: bq27426 current=196000\n[  201.438606] bq27426- fg_get_property: bq27426 current=196000\n[  202.442230] bq27426- fg_get_property: bq27426 current=196000\n[  203.446601] bq27426- fg_get_property: bq27426 current=197000\n[  204.450902] bq27426- fg_get_property: bq27426 current=196000\n[  205.455297] bq27426- fg_get_property: bq27426 current=197000\n[  206.459672] bq27426- fg_get_property: bq27426 current=197000\n[  207.464214] bq27426- fg_get_property: bq27426 current=197000\n[  208.468598] bq27426- fg_get_property: bq27426 current=196000\n[  209.472192] bq27426- fg_get_property: bq27426 current=198000\n[  210.476569] bq27426- fg_get_property: bq27426 current=196000\n[  211.481005] bq27426- fg_get_property: bq27426 current=197000\n[  212.485401] bq27426- fg_get_property: bq27426 current=196000\n[  213.489788] bq27426- fg_get_property: bq27426 current=197000\n[  214.494402] bq27426- fg_get_property: bq27426 current=196000\n[  215.498776] bq27426- fg_get_property: bq27426 current=196000\n[  216.503331] bq27426- fg_get_property: bq27426 current=196000\n[  217.507717] bq27426- fg_get_property: bq27426 current=196000\n[  218.512103] bq27426- fg_get_property: bq27426 current=195000\n[  219.516489] bq27426- fg_get_property: bq27426 current=196000\n[  220.520917] bq27426- fg_get_property: bq27426 current=196000\n[  221.525302] bq27426- fg_get_property: bq27426 current=196000\n[  222.529676] bq27426- fg_get_property: bq27426 current=196000\n[  223.534191] bq27426- fg_get_property: bq27426 current=196000\n[  224.538570] bq27426- fg_get_property: bq27426 current=196000\n[  225.542229] bq27426- fg_get_property: bq27426 current=196000\n[  226.546637] bq27426- fg_get_property: bq27426 current=196000\n[  227.550941] bq27426- fg_get_property: bq27426 current=196000\n[  228.555322] bq27426- fg_get_property: bq27426 current=196000\n[  229.559696] bq27426- fg_get_property: bq27426 current=197000\n[  230.564262] bq27426- fg_get_property: bq27426 current=196000\n[  231.568637] bq27426- fg_get_property: bq27426 current=197000\n[  232.572174] bq27426- fg_get_property: bq27426 current=196000\n[  233.576544] bq27426- fg_get_property: bq27426 current=197000\n[  234.580958] bq27426- fg_get_property: bq27426 current=197000\n[  235.585343] bq27426- fg_get_property: bq27426 current=197000\n[  236.589737] bq27426- fg_get_property: bq27426 current=196000\n[  237.594347] bq27426- fg_get_property: bq27426 current=196000\n[  238.598723] bq27426- fg_get_property: bq27426 current=195000\n[  239.602183] bq27426- fg_get_property: bq27426 current=196000\n[  240.606554] bq27426- fg_get_property: bq27426 current=196000\n[  241.610941] bq27426- fg_get_property: bq27426 current=197000\n[  242.615327] bq27426- fg_get_property: bq27426 current=195000\n[  243.619733] bq27426- fg_get_property: bq27426 current=196000\n[  244.624271] bq27426- fg_get_property: bq27426 current=195000\n[  245.628650] bq27426- fg_get_property: bq27426 current=196000\n[  246.632145] bq27426- fg_get_property: bq27426 current=195000\n[  247.636540] bq27426- fg_get_property: bq27426 current=196000\n[  248.641058] bq27426- fg_get_property: bq27426 current=196000\n[  249.645454] bq27426- fg_get_property: bq27426 current=196000\n[  250.649827] bq27426- fg_get_property: bq27426 current=196000\n[  251.654374] bq27426- fg_get_property: bq27426 current=196000\n[  252.658747] bq27426- fg_get_property: bq27426 current=195000\n[  253.665239]  3554     3.2 C/MHz    266 mW   18.7 J   13.4 I/mJ    70.4 s\n               1248: \n[  257.778676] bq27426- fg_get_property: bq27426 current=134000\n[  258.785400] bq27426- fg_get_property: bq27426 current=135000\n[  259.793240] bq27426- fg_get_property: bq27426 current=135000\n[  260.800588] bq27426- fg_get_property: bq27426 current=135000\n[  262.810631] bq27426- fg_get_property: bq27426 current=214000\n[  263.815113] bq27426- fg_get_property: bq27426 current=223000\n[  264.819368] bq27426- fg_get_property: bq27426 current=223000\n[  265.823660] bq27426- fg_get_property: bq27426 current=223000\n[  266.827930] bq27426- fg_get_property: bq27426 current=223000\n[  267.832097] bq27426- fg_get_property: bq27426 current=223000\n[  268.836360] bq27426- fg_get_property: bq27426 current=224000\n[  269.840693] bq27426- fg_get_property: bq27426 current=223000\n[  270.844974] bq27426- fg_get_property: bq27426 current=224000\n[  271.849244] bq27426- fg_get_property: bq27426 current=223000\n[  272.853538] bq27426- fg_get_property: bq27426 current=224000\n[  273.857810] bq27426- fg_get_property: bq27426 current=223000\n[  274.862093] bq27426- fg_get_property: bq27426 current=224000\n[  275.866354] bq27426- fg_get_property: bq27426 current=223000\n[  276.870696] bq27426- fg_get_property: bq27426 current=224000\n[  277.874973] bq27426- fg_get_property: bq27426 current=223000\n[  278.879194] bq27426- fg_get_property: bq27426 current=224000\n[  279.883493] bq27426- fg_get_property: bq27426 current=223000\n[  280.887752] bq27426- fg_get_property: bq27426 current=224000\n[  281.892085] bq27426- fg_get_property: bq27426 current=223000\n[  282.896346] bq27426- fg_get_property: bq27426 current=224000\n[  283.900601] bq27426- fg_get_property: bq27426 current=223000\n[  284.904893] bq27426- fg_get_property: bq27426 current=224000\n[  285.909152] bq27426- fg_get_property: bq27426 current=223000\n[  286.913453] bq27426- fg_get_property: bq27426 current=224000\n[  287.917724] bq27426- fg_get_property: bq27426 current=223000\n[  288.922025] bq27426- fg_get_property: bq27426 current=224000\n[  289.926283] bq27426- fg_get_property: bq27426 current=223000\n[  290.930540] bq27426- fg_get_property: bq27426 current=224000\n[  291.934800] bq27426- fg_get_property: bq27426 current=223000\n[  292.939059] bq27426- fg_get_property: bq27426 current=224000\n[  293.943496] bq27426- fg_get_property: bq27426 current=223000\n[  294.947761] bq27426- fg_get_property: bq27426 current=224000\n[  295.952045] bq27426- fg_get_property: bq27426 current=223000\n[  296.956307] bq27426- fg_get_property: bq27426 current=224000\n[  297.960646] bq27426- fg_get_property: bq27426 current=223000\n[  298.965104] bq27426- fg_get_property: bq27426 current=224000\n[  299.969364] bq27426- fg_get_property: bq27426 current=223000\n[  300.973658] bq27426- fg_get_property: bq27426 current=224000\n[  301.977936] bq27426- fg_get_property: bq27426 current=223000\n[  302.982092] bq27426- fg_get_property: bq27426 current=224000\n[  303.986356] bq27426- fg_get_property: bq27426 current=223000\n[  304.990739] bq27426- fg_get_property: bq27426 current=224000\n[  305.995065] bq27426- fg_get_property: bq27426 current=223000\n[  306.999345] bq27426- fg_get_property: bq27426 current=224000\n[  308.003681] bq27426- fg_get_property: bq27426 current=223000\n[  309.007946] bq27426- fg_get_property: bq27426 current=224000\n[  310.012071] bq27426- fg_get_property: bq27426 current=223000\n[  310.261017] bq27426- fg_dump_registers: Reg[00] = 0x0202\n[  310.280868] bq27426- fg_dump_registers: Reg[02] = 0x0BE0\n[  310.301025] bq27426- fg_dump_registers: Reg[04] = 0x1042\n[  310.320851] bq27426- fg_dump_registers: Reg[06] = 0x0009\n[  310.341075] bq27426- fg_dump_registers: Reg[08] = 0x08B9\n[  310.360869] bq27426- fg_dump_registers: Reg[0A] = 0x0924\n[  310.381013] bq27426- fg_dump_registers: Reg[0C] = 0x0827\n[  310.400881] bq27426- fg_dump_registers: Reg[0E] = 0x0893\n[  310.421012] bq27426- fg_dump_registers: Reg[10] = 0xFF21\n[  310.440931] bq27426- fg_dump_registers: Reg[16] = 0x0A23\n[  310.461012] bq27426- fg_dump_registers: Reg[18] = 0xFC60\n[  310.480868] bq27426- fg_dump_registers: Reg[1A] = 0x079C\n[  310.501025] bq27426- fg_dump_registers: Reg[1C] = 0x0060\n[  310.520868] bq27426- fg_dump_registers: Reg[1E] = 0x0BF7\n[  310.541076] bq27426- fg_dump_registers: Reg[20] = 0x0046\n[  310.560867] bq27426- fg_dump_registers: Reg[28] = 0x084D\n[  310.581011] bq27426- fg_dump_registers: Reg[2A] = 0x0827\n[  310.600881] bq27426- fg_dump_registers: Reg[2C] = 0x08B8\n[  310.621011] bq27426- fg_dump_registers: Reg[2E] = 0x0893\n[  310.640930] bq27426- fg_dump_registers: Reg[30] = 0x0060\n[  310.661012] bq27426- fg_dump_registers: Reg[66] = 0x0590\n[  310.680854] bq27426- fg_dump_registers: Reg[68] = 0x04F8\n[  310.701016] bq27426- fg_dump_registers: Reg[6C] = 0x0053\n[  310.720857] bq27426- fg_dump_registers: Reg[6E] = 0x0018\n[  310.741072] bq27426- fg_dump_registers: Reg[70] = 0x3C05\n[  310.741732] bq27426- fg_get_property: bq27426 current=223000\n[  310.741735] bq2560x: bq2560x_dump_status: FG current:223000\n[  310.741737] bq2560x: bq2560x_dump_status: bq Reg[0x00 -0x0B] = \n[  310.741969] 0x04, \n[  310.742329] 0x1A, \n[  310.742560] 0x08, \n[  310.742790] 0x30, \n[  310.743020] 0x88, \n[  310.743249] 0x8F, \n[  310.743479] 0x55, \n[  310.743708] 0x4D, \n[  310.743938] 0x00, \n[  310.744167] 0x00, \n[  310.744397] 0x03, \n[  310.744627] 0x11, \n\n[  310.744630] bq2560x: bq2560x_dump_status: Vbus voltage not good!\n[  310.744633] bq2560x: bq2560x_dump_status: Not Charging\n[  311.016328] bq27426- fg_get_property: bq27426 current=225000\n[  312.020547] bq27426- fg_get_property: bq27426 current=224000\n[  313.024776] bq27426- fg_get_property: bq27426 current=224000\n[  314.029034] bq27426- fg_get_property: bq27426 current=223000\n[  315.033379] bq27426- fg_get_property: bq27426 current=224000\n[  316.037637] bq27426- fg_get_property: bq27426 current=223000\n[  317.041996] bq27426- fg_get_property: bq27426 current=224000\n[  318.046263] bq27426- fg_get_property: bq27426 current=223000\n[  319.050545] bq27426- fg_get_property: bq27426 current=224000\n[  320.054809] bq27426- fg_get_property: bq27426 current=223000\n[  321.059062] bq27426- fg_get_property: bq27426 current=224000\n[  322.063400] bq27426- fg_get_property: bq27426 current=223000\n[  323.067655] bq27426- fg_get_property: bq27426 current=224000\n[  324.074358]  4053     3.2 C/MHz    380 mW   23.5 J   10.7 I/mJ    61.7 s\n               1401: \n[  328.188193] bq27426- fg_get_property: bq27426 current=136000\n[  329.195437] bq27426- fg_get_property: bq27426 current=137000\n[  330.203160] bq27426- fg_get_property: bq27426 current=137000\n[  331.210575] bq27426- fg_get_property: bq27426 current=137000\n[  333.220311] bq27426- fg_get_property: bq27426 current=211000\n[  334.224552] bq27426- fg_get_property: bq27426 current=247000\n[  334.420864] bq27426- fg_dump_registers: Reg[00] = 0x0202\n[  334.441008] bq27426- fg_dump_registers: Reg[02] = 0x0BDF\n[  334.460858] bq27426- fg_dump_registers: Reg[04] = 0x103D\n[  334.481004] bq27426- fg_dump_registers: Reg[06] = 0x0109\n[  334.500865] bq27426- fg_dump_registers: Reg[08] = 0x08B7\n[  334.520999] bq27426- fg_dump_registers: Reg[0A] = 0x0924\n[  334.540864] bq27426- fg_dump_registers: Reg[0C] = 0x0825\n[  334.560999] bq27426- fg_dump_registers: Reg[0E] = 0x0893\n[  334.580857] bq27426- fg_dump_registers: Reg[10] = 0xFF09\n[  334.601011] bq27426- fg_dump_registers: Reg[16] = 0x0A23\n[  334.620860] bq27426- fg_dump_registers: Reg[18] = 0xFBFD\n[  334.641007] bq27426- fg_dump_registers: Reg[1A] = 0x07A9\n[  334.660857] bq27426- fg_dump_registers: Reg[1C] = 0x005F\n[  334.681000] bq27426- fg_dump_registers: Reg[1E] = 0x0BF0\n[  334.700864] bq27426- fg_dump_registers: Reg[20] = 0x0046\n[  334.721006] bq27426- fg_dump_registers: Reg[28] = 0x084B\n[  334.740864] bq27426- fg_dump_registers: Reg[2A] = 0x0825\n[  334.761001] bq27426- fg_dump_registers: Reg[2C] = 0x08B8\n[  334.780857] bq27426- fg_dump_registers: Reg[2E] = 0x0893\n[  334.801007] bq27426- fg_dump_registers: Reg[30] = 0x0060\n[  334.820858] bq27426- fg_dump_registers: Reg[66] = 0x0590\n[  334.840999] bq27426- fg_dump_registers: Reg[68] = 0x04F8\n[  334.860852] bq27426- fg_dump_registers: Reg[6C] = 0x0055\n[  334.880991] bq27426- fg_dump_registers: Reg[6E] = 0x0018\n[  334.900830] bq27426- fg_dump_registers: Reg[70] = 0x3C05\n[  334.900833] bq27426- fg_irq_thread: itpor=0, cfg_mode = 0, seal_state=0, batt_present=1\n[  334.904118] bq27426- fg_irq_thread: RSOC:95, Volt:4156, Current:-249, Temperature:309\n[  334.906037] bq27426- fg_get_property: bq27426 current=249000\n[  335.228766] bq27426- fg_get_property: bq27426 current=249000\n[  336.232040] bq27426- fg_get_property: bq27426 current=248000\n[  337.236231] bq27426- fg_get_property: bq27426 current=248000\n[  338.240418] bq27426- fg_get_property: bq27426 current=248000\n[  339.244633] bq27426- fg_get_property: bq27426 current=248000\n[  340.248824] bq27426- fg_get_property: bq27426 current=248000\n[  341.252083] bq27426- fg_get_property: bq27426 current=248000\n[  342.256267] bq27426- fg_get_property: bq27426 current=248000\n[  343.260458] bq27426- fg_get_property: bq27426 current=248000\n[  344.264658] bq27426- fg_get_property: bq27426 current=248000\n[  345.268859] bq27426- fg_get_property: bq27426 current=248000\n[  346.272077] bq27426- fg_get_property: bq27426 current=248000\n[  347.276254] bq27426- fg_get_property: bq27426 current=248000\n[  348.280436] bq27426- fg_get_property: bq27426 current=248000\n[  349.284645] bq27426- fg_get_property: bq27426 current=248000\n[  350.288829] bq27426- fg_get_property: bq27426 current=248000\n[  351.292110] bq27426- fg_get_property: bq27426 current=248000\n[  352.296303] bq27426- fg_get_property: bq27426 current=248000\n[  353.300491] bq27426- fg_get_property: bq27426 current=248000\n[  354.304683] bq27426- fg_get_property: bq27426 current=248000\n[  355.308872] bq27426- fg_get_property: bq27426 current=249000\n[  356.312039] bq27426- fg_get_property: bq27426 current=248000\n[  357.316228] bq27426- fg_get_property: bq27426 current=248000\n[  358.320445] bq27426- fg_get_property: bq27426 current=248000\n[  359.324652] bq27426- fg_get_property: bq27426 current=248000\n[  360.328838] bq27426- fg_get_property: bq27426 current=248000\n[  361.332044] bq27426- fg_get_property: bq27426 current=249000\n[  361.441678] bq2560x: bq2560x_check_batt_capacity: Battery capacity changed, new capacity = 95\n[  361.444493] runin_work:BatteryTestStatus_enable = 0 bq->usb_present = 0 \n[  361.445789] bq27426- fg_get_property: bq27426 current=249000\n[  361.448189] power_supply battery: driver failed to report `resistance_id' property: -22\n[  362.336260] bq27426- fg_get_property: bq27426 current=248000\n[  363.340457] bq27426- fg_get_property: bq27426 current=248000\n[  364.344666] bq27426- fg_get_property: bq27426 current=248000\n[  365.348847] bq27426- fg_get_property: bq27426 current=248000\n[  366.352065] bq27426- fg_get_property: bq27426 current=248000\n[  367.356256] bq27426- fg_get_property: bq27426 current=248000\n[  368.360444] bq27426- fg_get_property: bq27426 current=248000\n[  369.364647] bq27426- fg_get_property: bq27426 current=248000\n[  370.368746] bq27426- fg_get_property: bq27426 current=248000\n[  371.372074] bq27426- fg_get_property: bq27426 current=248000\n[  372.376258] bq27426- fg_get_property: bq27426 current=248000\n[  373.380447] bq27426- fg_get_property: bq27426 current=248000\n[  374.384651] bq27426- fg_get_property: bq27426 current=248000\n[  375.388860] bq27426- fg_get_property: bq27426 current=249000\n[  376.393216] bq27426- fg_get_property: bq27426 current=248000\n[  377.397417] bq27426- fg_get_property: bq27426 current=249000\n[  378.401697] bq27426- fg_get_property: bq27426 current=248000\n[  379.405913] bq27426- fg_get_property: bq27426 current=248000\n[  380.410113] bq27426- fg_get_property: bq27426 current=248000\n[  381.414306] bq27426- fg_get_property: bq27426 current=248000\n[  382.418489] bq27426- fg_get_property: bq27426 current=248000\n[  383.422056] bq27426- fg_get_property: bq27426 current=249000\n[  384.426247] bq27426- fg_get_property: bq27426 current=248000\n[  385.430431] bq27426- fg_get_property: bq27426 current=249000\n[  386.434624] bq27426- fg_get_property: bq27426 current=248000\n[  387.480952]  4551     3.2 C/MHz    478 mW   26.2 J    9.5 I/mJ    54.9 s\n               \n               \n               Benchmark finished!\n[  387.517470] \n               real\t6m24.362s\n               user\t4m28.544s\n               sys\t0m0.260s\n"
  },
  {
    "path": "results/msm8917/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  1:      11489     GIC-0 203 Edge      mpm\n  4:       1459   mpm-gic  20 Level     arch_timer\n  6:      38615   mpm-gic  39 Level     arch_mem_timer\n  8:          0   mpm-gic 110 Edge      csiphy\n  9:          0   mpm-gic 111 Edge      csiphy\n 10:          0   mpm-gic  83 Edge      csid\n 11:          0   mpm-gic  84 Edge      csid\n 12:          0   mpm-gic 185 Edge      csid\n 13:          0   mpm-gic  87 Edge      ispif\n 14:          0   mpm-gic  89 Edge      vfe\n 15:          0   mpm-gic  61 Edge      vfe\n 18:        428   mpm-gic  82 Edge      cci\n 19:          0   mpm-gic  59 Edge      smp2p\n 20:          0   mpm-gic 175 Edge      smp2p\n 21:          0   mpm-gic 323 Edge      smp2p\n 23:          3   mpm-gic 224 Level     spdm_bw_hyp\n 24:          0   mpm-gic 104 Edge      MDSS\n 33:          0   mpm-gic  86 Level     arm-smmu-context-fault\n 34:          0   mpm-gic  90 Level     arm-smmu-context-fault\n 35:          0   mpm-gic  92 Level     arm-smmu-context-fault\n 46:          0   mpm-gic 138 Level     arm-smmu-context-fault\n 51:          0   mpm-gic 145 Level     arm-smmu-context-fault\n 61:          0   mpm-gic  65 Level     kgsl-3d0\n 62:          0   mpm-gic  76 Level     msm_vidc\n 63:          0   mpm-gic 216 Level     tsens-upper-lower\n 67:          0   mpm-gic 271 Level     sps\n 68:          1   mpm-gic 128 Level     i2c-msm-v2-irq\n 69:          8   mpm-gic 129 Level     i2c-msm-v2-irq\n 70:       1659   mpm-gic 331 Level     i2c-msm-v2-irq\n 71:          0   mpm-gic 166 Edge      msm_otg, msm_hsusb\n 72:          0   mpm-gic 172 Edge      msm_otg\n 73:          1   mpm-gic 168 Edge      msm_otg_phy_irq\n 75:          0   mpm-gic  35 Edge      apps_wdog_bark\n 92:          0  pmic_arb 8388655 Edge      qpnp_kpdpwr_status\n 93:          0  pmic_arb 8454191 Edge      qpnp_resin_status\n 96:          0  pmic_arb 37748779 Edge      pm8937_tz\n108:          0  pmic_arb 54722612 Edge      qpnp_adc_tm_high_interrupt\n109:          0  pmic_arb 54788148 Edge      qpnp_adc_tm_low_interrupt\n110:          0   mpm-gic  57 Edge      qcom,smd-modem\n111:          0   mpm-gic  58 Edge      qcom,smsm-modem\n112:          0   mpm-gic 174 Edge      qcom,smd-wcnss\n113:          0   mpm-gic 176 Edge      qcom,smsm-wcnss\n114:          0   mpm-gic 321 Edge      qcom,smd-adsp\n115:          0   mpm-gic 322 Edge      qcom,smsm-adsp\n116:       1806   mpm-gic 200 Edge      qcom,smd-rpm\n118:          0   mpm-gic 344 Edge      7803000.sdcc1ice\n120:         85   mpm-gic 155 Edge      mmc0\n121:          3   mpm-gic 170 Edge      7824900.sdhci\n122:         35     GIC-0 157 Edge      mmc1\n123:          2     GIC-0 253 Edge      7864900.sdhci\n124:          0   msmgpio  67 Edge      7864900.sdhci cd\n125:          0   mpm-gic  56 Edge      modem\n126:          0   mpm-gic 325 Edge      adsp\n127:          0   mpm-gic 181 Edge      wcnss\n128:          0   mpm-gic 239 Level     sps\n131:         19   mpm-gic  47 Edge      cpr\n132:          0   mpm-gic 333 Level     7af7000.spi\n261:          0   msmgpio  65 Edge      ft5x06_720p\n263:          0  pmic_arb 101777448 Edge      qpnp_rtc_alarm\n264:          0   msmgpio  61 Edge      bq2560x charger irq\n265:          1   msmgpio  25 Edge      bq fuel gauge irq\n266:          0  smp2p_gpio   0 Edge      modem\n267:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n268:          0  smp2p_gpio   2 Edge      modem\n269:          0  smp2p_gpio   3 Edge      modem\n298:          0  smp2p_gpio   0 Edge      adsp\n299:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n300:          0  smp2p_gpio   2 Edge      adsp\n301:          0  smp2p_gpio   3 Edge      adsp\n330:          0  smp2p_gpio   0 Edge      wcnss\n331:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n332:          0  smp2p_gpio   2 Edge      wcnss\n333:          0  smp2p_gpio   3 Edge      wcnss\n362:          0   msmgpio  91 Edge      volume_up\nIPI0:        46       Rescheduling interrupts\nIPI1:         4       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       Timer broadcast interrupts\nIPI4:     19252       IRQ work interrupts\nIPI5:         0       CPU wake-up interrupts\nIPI6:         0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/msm8917/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       \n  1:          0          0          0          0     GIC-0 203 Edge      mpm\n  4:        619          2          2          1   mpm-gic  20 Level     arch_timer\n  6:          0          0          0          0   mpm-gic  39 Level     arch_mem_timer\n  8:          0          0          0          0   mpm-gic 110 Edge      csiphy\n  9:          0          0          0          0   mpm-gic 111 Edge      csiphy\n 10:          0          0          0          0   mpm-gic  83 Edge      csid\n 11:          0          0          0          0   mpm-gic  84 Edge      csid\n 12:          0          0          0          0   mpm-gic 185 Edge      csid\n 13:          0          0          0          0   mpm-gic  87 Edge      ispif\n 14:          0          0          0          0   mpm-gic  89 Edge      vfe\n 15:          0          0          0          0   mpm-gic  61 Edge      vfe\n 18:        428          0          0          0   mpm-gic  82 Edge      cci\n 19:          0          0          0          0   mpm-gic  59 Edge      smp2p\n 20:          0          0          0          0   mpm-gic 175 Edge      smp2p\n 21:          0          0          0          0   mpm-gic 323 Edge      smp2p\n 23:          1          0          0          0   mpm-gic 224 Level     spdm_bw_hyp\n 24:          0          0          0          0   mpm-gic 104 Edge      MDSS\n 33:          0          0          0          0   mpm-gic  86 Level     arm-smmu-context-fault\n 34:          0          0          0          0   mpm-gic  90 Level     arm-smmu-context-fault\n 35:          0          0          0          0   mpm-gic  92 Level     arm-smmu-context-fault\n 46:          0          0          0          0   mpm-gic 138 Level     arm-smmu-context-fault\n 51:          0          0          0          0   mpm-gic 145 Level     arm-smmu-context-fault\n 61:          0          0          0          0   mpm-gic  65 Level     kgsl-3d0\n 62:          0          0          0          0   mpm-gic  76 Level     msm_vidc\n 63:          0          0          0          0   mpm-gic 216 Level     tsens-upper-lower\n 67:          0          0          0          0   mpm-gic 271 Level     sps\n 68:          1          0          0          0   mpm-gic 128 Level     i2c-msm-v2-irq\n 69:          8          0          0          0   mpm-gic 129 Level     i2c-msm-v2-irq\n 70:        190          0          0          0   mpm-gic 331 Level     i2c-msm-v2-irq\n 71:          0          0          0          0   mpm-gic 166 Edge      msm_otg, msm_hsusb\n 72:          0          0          0          0   mpm-gic 172 Edge      msm_otg\n 73:          1          0          0          0   mpm-gic 168 Edge      msm_otg_phy_irq\n 75:          0          0          0          0   mpm-gic  35 Edge      apps_wdog_bark\n 92:          0          0          0          0  pmic_arb 8388655 Edge      qpnp_kpdpwr_status\n 93:          0          0          0          0  pmic_arb 8454191 Edge      qpnp_resin_status\n 96:          0          0          0          0  pmic_arb 37748779 Edge      pm8937_tz\n108:          0          0          0          0  pmic_arb 54722612 Edge      qpnp_adc_tm_high_interrupt\n109:          0          0          0          0  pmic_arb 54788148 Edge      qpnp_adc_tm_low_interrupt\n110:          0          0          0          0   mpm-gic  57 Edge      qcom,smd-modem\n111:          0          0          0          0   mpm-gic  58 Edge      qcom,smsm-modem\n112:          0          0          0          0   mpm-gic 174 Edge      qcom,smd-wcnss\n113:          0          0          0          0   mpm-gic 176 Edge      qcom,smsm-wcnss\n114:          0          0          0          0   mpm-gic 321 Edge      qcom,smd-adsp\n115:          0          0          0          0   mpm-gic 322 Edge      qcom,smsm-adsp\n116:        352          0          0          0   mpm-gic 200 Edge      qcom,smd-rpm\n118:          0          0          0          0   mpm-gic 344 Edge      7803000.sdcc1ice\n120:         74          0          0          0   mpm-gic 155 Edge      mmc0\n121:          2          0          0          0   mpm-gic 170 Edge      7824900.sdhci\n122:         34          0          0          0     GIC-0 157 Edge      mmc1\n123:          1          0          0          0     GIC-0 253 Edge      7864900.sdhci\n124:          0          0          0          0   msmgpio  67 Edge      7864900.sdhci cd\n125:          0          0          0          0   mpm-gic  56 Edge      modem\n126:          0          0          0          0   mpm-gic 325 Edge      adsp\n127:          0          0          0          0   mpm-gic 181 Edge      wcnss\n128:          0          0          0          0   mpm-gic 239 Level     sps\n131:          0          0          0          0   mpm-gic  47 Edge      cpr\n132:          0          0          0          0   mpm-gic 333 Level     7af7000.spi\n261:          0          0          0          0   msmgpio  65 Edge      ft5x06_720p\n263:          0          0          0          0  pmic_arb 101777448 Edge      qpnp_rtc_alarm\n264:          0          0          0          0   msmgpio  61 Edge      bq2560x charger irq\n265:          0          0          0          0   msmgpio  25 Edge      bq fuel gauge irq\n266:          0          0          0          0  smp2p_gpio   0 Edge      modem\n267:          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n268:          0          0          0          0  smp2p_gpio   2 Edge      modem\n269:          0          0          0          0  smp2p_gpio   3 Edge      modem\n298:          0          0          0          0  smp2p_gpio   0 Edge      adsp\n299:          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n300:          0          0          0          0  smp2p_gpio   2 Edge      adsp\n301:          0          0          0          0  smp2p_gpio   3 Edge      adsp\n330:          0          0          0          0  smp2p_gpio   0 Edge      wcnss\n331:          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n332:          0          0          0          0  smp2p_gpio   2 Edge      wcnss\n333:          0          0          0          0  smp2p_gpio   3 Edge      wcnss\n362:          0          0          0          0   msmgpio  91 Edge      volume_up\nIPI0:        19         31         31         31       Rescheduling interrupts\nIPI1:         0          6          6          6       Function call interrupts\nIPI2:         0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0       Timer broadcast interrupts\nIPI4:       168          5          5          4       IRQ work interrupts\nIPI5:         0          0          0          0       CPU wake-up interrupts\nIPI6:         0          0          0          0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/msm8917/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    4 root      0:00 [kworker/0:0H]\n    5 root      0:00 [kworker/u8:0]\n    6 root      0:00 [ksoftirqd/0]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [lru-add-drain]\n   15 root      0:00 [cpuhp/0]\n   16 root      0:00 [cpuhp/1]\n   17 root      0:00 [migration/1]\n   18 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0H]\n   21 root      0:00 [rcuop/1]\n   22 root      0:00 [rcuos/1]\n   23 root      0:00 [rcuob/1]\n   24 root      0:00 [cpuhp/2]\n   25 root      0:00 [migration/2]\n   26 root      0:00 [ksoftirqd/2]\n   27 root      0:00 [kworker/2:0]\n   28 root      0:00 [kworker/2:0H]\n   29 root      0:00 [rcuop/2]\n   30 root      0:00 [rcuos/2]\n   31 root      0:00 [rcuob/2]\n   32 root      0:00 [cpuhp/3]\n   33 root      0:00 [migration/3]\n   34 root      0:00 [ksoftirqd/3]\n   35 root      0:00 [kworker/3:0]\n   36 root      0:00 [kworker/3:0H]\n   37 root      0:00 [rcuop/3]\n   38 root      0:00 [rcuos/3]\n   39 root      0:00 [rcuob/3]\n   40 root      0:00 [netns]\n   42 root      0:00 [smd_channel_clo]\n   43 root      0:00 [kworker/u9:0]\n   44 root      0:00 [kworker/u8:1]\n   45 root      0:00 [msm_watchdog]\n   46 root      0:00 [smsm_cb_wq]\n   47 root      0:00 [irq/131-cpr]\n   48 root      0:00 [oom_reaper]\n   49 root      0:00 [writeback]\n   50 root      0:00 [kcompactd0]\n   51 root      0:00 [crypto]\n   52 root      0:00 [bioset]\n   53 root      0:00 [kblockd]\n   54 root      0:00 [irq/63-tsens-up]\n   55 root      0:00 [edac-poller]\n   56 root      0:00 [system]\n   57 root      0:00 [devfreq_wq]\n   58 root      0:00 [governor_msm_ad]\n   59 root      0:00 [cfg80211]\n   60 root      0:00 [kworker/0:2]\n   86 root      0:00 [kswapd0]\n   87 root      0:00 [vmstat]\n   88 root      0:00 [bioset]\n  118 root      0:00 [rot_workq_0]\n  119 root      0:00 [mdss_dsi_event]\n  120 root      0:00 [mdss_dsi_dba]\n  121 root      0:00 [mem_share_svc]\n  122 root      0:00 [qmi_hndl0000000]\n  123 root      0:00 [diag_real_time_]\n  124 root      0:00 [diag_wq]\n  125 root      0:00 [msm_ipc_router]\n  127 root      0:00 [DIAG_USB_diag]\n  128 root      0:00 [diag_cntl_wq]\n  129 root      0:00 [diag_dci_wq]\n  130 root      0:00 [DIAG_SMD_MODEM_]\n  131 root      0:00 [DIAG_SMD_MODEM_]\n  132 root      0:00 [DIAG_SMD_MODEM_]\n  133 root      0:00 [DIAG_SMD_MODEM_]\n  134 root      0:00 [DIAG_SMD_MODEM_]\n  135 root      0:00 [DIAG_SMD_LPASS_]\n  136 root      0:00 [DIAG_SMD_LPASS_]\n  137 root      0:00 [DIAG_SMD_LPASS_]\n  138 root      0:00 [DIAG_SMD_LPASS_]\n  139 root      0:00 [DIAG_SMD_LPASS_]\n  140 root      0:00 [DIAG_SMD_WCNSS_]\n  141 root      0:00 [DIAG_SMD_WCNSS_]\n  142 root      0:00 [DIAG_SMD_WCNSS_]\n  143 root      0:00 [DIAG_SMD_WCNSS_]\n  144 root      0:00 [DIAG_SMD_WCNSS_]\n  145 root      0:00 [DIAG_SMD_SENSOR]\n  146 root      0:00 [DIAG_SMD_SENSOR]\n  147 root      0:00 [DIAG_SMD_SENSOR]\n  148 root      0:00 [DIAG_SMD_SENSOR]\n  149 root      0:00 [DIAG_SMD_SENSOR]\n  150 root      0:00 [DIAG_SMD_CDSP_C]\n  151 root      0:00 [DIAG_SMD_CDSP_D]\n  152 root      0:00 [DIAG_SMD_CDSP_C]\n  153 root      0:00 [DIAG_SMD_CDSP_D]\n  154 root      0:00 [DIAG_SMD_CDSP_D]\n  155 root      0:00 [DIAG_SOCKET_MOD]\n  156 root      0:00 [DIAG_SOCKET_MOD]\n  157 root      0:00 [DIAG_SOCKET_MOD]\n  158 root      0:00 [DIAG_SOCKET_MOD]\n  159 root      0:00 [DIAG_SOCKET_MOD]\n  160 root      0:00 [DIAG_SOCKET_LPA]\n  161 root      0:00 [DIAG_SOCKET_LPA]\n  162 root      0:00 [DIAG_SOCKET_LPA]\n  163 root      0:00 [DIAG_SOCKET_LPA]\n  164 root      0:00 [DIAG_SOCKET_LPA]\n  165 root      0:00 [DIAG_SOCKET_WCN]\n  166 root      0:00 [DIAG_SOCKET_WCN]\n  167 root      0:00 [DIAG_SOCKET_WCN]\n  168 root      0:00 [DIAG_SOCKET_WCN]\n  169 root      0:00 [DIAG_SOCKET_WCN]\n  170 root      0:00 [DIAG_SOCKET_SEN]\n  171 root      0:00 [DIAG_SOCKET_SEN]\n  172 root      0:00 [DIAG_SOCKET_SEN]\n  173 root      0:00 [DIAG_SOCKET_SEN]\n  174 root      0:00 [DIAG_SOCKET_SEN]\n  175 root      0:00 [DIAG_SOCKET_DIA]\n  176 root      0:00 [DIAG_SOCKET_DIA]\n  177 root      0:00 [DIAG_SOCKET_DIA]\n  178 root      0:00 [DIAG_SOCKET_DIA]\n  179 root      0:00 [DIAG_SOCKET_DIA]\n  180 root      0:00 [DIAG_SOCKET_CDS]\n  181 root      0:00 [DIAG_SOCKET_CDS]\n  182 root      0:00 [DIAG_SOCKET_CDS]\n  183 root      0:00 [DIAG_SOCKET_CDS]\n  184 root      0:00 [DIAG_SOCKET_CDS]\n  185 root      0:00 [DIAG_CNTL_SOCKE]\n  191 root      0:00 [mykthread]\n  192 root      0:00 [kgsl-workqueue]\n  193 root      0:00 [kgsl-mementry]\n  194 root      0:00 [kgsl_worker_thr]\n  195 root      0:00 [kgsl-events]\n  196 root      0:00 [kgsl_devfreq_wq]\n  197 root      0:00 [bioset]\n  198 root      0:00 [bioset]\n  199 root      0:00 [bioset]\n  200 root      0:00 [bioset]\n  201 root      0:00 [bioset]\n  202 root      0:00 [bioset]\n  203 root      0:00 [bioset]\n  204 root      0:00 [bioset]\n  205 root      0:00 [bioset]\n  206 root      0:00 [bioset]\n  207 root      0:00 [bioset]\n  208 root      0:00 [bioset]\n  209 root      0:00 [bioset]\n  210 root      0:00 [bioset]\n  211 root      0:00 [bioset]\n  212 root      0:00 [bioset]\n  213 root      0:00 [bioset]\n  214 root      0:00 [bioset]\n  215 root      0:00 [bioset]\n  216 root      0:00 [bioset]\n  217 root      0:00 [bioset]\n  218 root      0:00 [bioset]\n  219 root      0:00 [bioset]\n  220 root      0:00 [bioset]\n  221 root      0:00 [bioset]\n  222 root      0:00 [bioset]\n  223 root      0:00 [bioset]\n  224 root      0:00 [bioset]\n  225 root      0:00 [bioset]\n  226 root      0:00 [bioset]\n  227 root      0:00 [bioset]\n  228 root      0:00 [bioset]\n  229 root      0:00 [bioset]\n  230 root      0:00 [qseecom-unreg-l]\n  231 root      0:00 [qseecom-unload-]\n  232 root      0:00 [qcrypto_seq_res]\n  253 root      0:00 [spi7]\n  254 root      0:00 [sharedmem_qmi_w]\n  255 root      0:00 [qmi_hndl0000000]\n  256 root      0:00 [uether]\n  257 root      0:00 [irq/261-ft5x06_]\n  258 root      0:00 [msm_vidc_worker]\n  259 root      0:00 [pm_workerq_venu]\n  260 root      0:00 [irq/51-arm-smmu]\n  261 root      0:00 [irq/34-arm-smmu]\n  262 root      0:00 [irq/35-arm-smmu]\n  263 root      0:00 [irq/33-arm-smmu]\n  264 root      0:00 [msm_cci_wq]\n  265 root      0:00 [msm_cci_wq]\n  266 root      0:00 [msm_cpp_workque]\n  267 root      0:00 [irq/265-bq fuel]\n  268 root      0:00 [qmi_tmd_wq]\n  269 root      0:00 [qmi_svc_event_w]\n  270 root      0:00 [dm_bufio_cache]\n  271 root      0:00 [irq/23-spdm_bw_]\n  273 root      0:00 [mmc_clk_gate/mm]\n  274 root      0:00 [irq/121-7824900]\n  275 root      0:00 [irq/120-mmc0]\n  276 root      0:00 [bioset]\n  277 root      0:00 [sdhci_msm_pm_qo]\n  278 root      0:00 [mmc-cmdqd/0]\n  279 root      0:00 [bioset]\n  280 root      0:00 [mmcqd/0rpmb]\n  281 root      0:00 [mmc_clk_gate/mm]\n  282 root      0:00 [irq/123-7864900]\n  283 root      0:00 [irq/122-mmc1]\n  284 root      0:00 [irq/124-7864900]\n  285 root      0:00 [apr_driver]\n  286 root      0:00 [bioset]\n  287 root      0:00 [ipv6_addrconf]\n  288 root      0:00 [sdhci_msm_pm_qo]\n  290 root      0:00 [irq/300-adsp]\n  291 root      0:00 [sysmon_wq]\n  292 root      0:00 [mmcqd/1]\n  293 root      0:00 [irq/332-wcnss]\n  294 root      0:00 [irq/268-modem]\n  295 root      0:00 [irq/264-bq2560x]\n  296 root      0:00 [core_ctl/0]\n  297 root      0:00 [kworker/0:4]\n  298 root      0:00 [rq_stats]\n  299 root      0:00 [msm_perf:events]\n  300 root      0:00 [bam_dmux_rx]\n  301 root      0:00 [bam_dmux_tx]\n  302 root      0:00 [irq/46-arm-smmu]\n  308 root      0:00 [usb_bam_wq]\n  314 root      0:00 [kworker/1:1]\n  315 root      0:00 [kworker/1:2]\n  316 root      0:00 [kworker/2:1]\n  317 root      0:00 [kworker/3:1]\n  318 root      0:00 [kworker/0:1H]\n  329 root      0:00 [kworker/0:0]\n  333 root      0:00 [kworker/1:0]\n  377 root      0:00 ps -A\n"
  },
  {
    "path": "results/msm8917/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,960000,3117.401334,3.24729305625,213.65327848101265,17.135676150785386,14.589444723401924,80.203197782\r\n1,1094400,3553.761301,3.2472234110014617,265.8013142857142,18.699916396033107,13.369043727544877,70.352986953\r\n1,1248000,4052.783452,3.247422637820513,380.12227868852455,23.450328434839466,10.660831497292904,61.691539143\r\n1,1401000,4551.495621,3.2487477665952893,477.6627407407407,26.238957125692504,9.527817694980206,54.931973729\r\n"
  },
  {
    "path": "results/msm8917/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 383.1871738121845, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [553.74, 553.74, 553.872, 549.676, 549.676, 549.676, 549.676, 549.676, 549.676, 549.676, 549.807, 549.676, 549.807, 549.807, 549.807, 549.807, 549.807, 549.807, 549.807, 549.807, 549.807, 549.807, 549.807, 549.938, 549.807, 549.938, 549.938, 549.938, 550.069], \"power_mean\": 550.2093793103448, \"energy_millijoules\": 2751.0468965517243, \"energy_joules\": 2.7510468965517245}, \"cpus\": {\"1\": {\"freqs\": {\"960000\": {\"active\": {\"elapsed_sec\": 80.203197782, \"elapsed_ns\": 80203197782, \"power_samples\": [92.61799999999994, 211.99399999999991, 215.99599999999998, 211.812, 215.99599999999998, 211.812, 215.99599999999998, 215.813, 215.813, 215.813, 215.813, 215.813, 215.813, 215.813, 215.63, 215.813, 215.63, 215.63, 215.63, 215.63, 215.63, 215.813, 215.63, 211.44799999999998, 215.63, 215.63, 215.63, 215.63, 215.63, 215.63, 215.63, 215.63, 215.63, 215.447, 215.447, 215.447, 215.447, 215.447, 215.447, 215.447, 215.447, 215.447, 215.447, 215.447, 215.447, 215.447, 215.447, 215.447, 215.447, 215.447, 215.447, 211.26599999999996, 215.447, 215.264, 215.447, 215.447, 215.447, 215.264, 215.447, 211.26599999999996, 215.264, 215.447, 215.264, 219.44399999999996, 215.264, 215.264, 215.264, 215.264, 215.264, 215.264, 215.264, 215.264, 215.264, 215.264, 215.264, 215.264, 215.264, 211.08399999999995, 215.264], \"power_mean\": 213.65327848101265, \"energy_millijoules\": 17135.676150785384, \"energy_joules\": 17.135676150785386, \"coremark_score\": 3117.401334, \"coremarks_per_mhz\": 3.24729305625, \"ulpmark_cm_score\": 14.589444723401924}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [549.938, 554.136, 549.938, 554.136], \"power_mean\": 552.037, \"energy_millijoules\": 2760.1850000000004, \"energy_joules\": 2.7601850000000003}}, \"1094400\": {\"active\": {\"elapsed_sec\": 70.352986953, \"elapsed_ns\": 70352986953, \"power_samples\": [45.87199999999996, 269.6039999999999, 269.01599999999996, 264.83899999999994, 268.81999999999994, 268.81999999999994, 268.81999999999994, 268.81999999999994, 268.81999999999994, 268.81999999999994, 272.799, 268.81999999999994, 268.6239999999999, 268.6239999999999, 268.81999999999994, 268.6239999999999, 268.6239999999999, 268.6239999999999, 268.6239999999999, 268.6239999999999, 272.799, 268.428, 272.799, 272.799, 272.799, 268.6239999999999, 276.97399999999993, 268.428, 272.602, 268.6239999999999, 272.799, 268.428, 268.6239999999999, 268.428, 268.428, 264.2539999999999, 268.428, 268.428, 268.428, 268.428, 268.428, 268.428, 268.428, 268.428, 268.428, 268.428, 272.602, 268.23199999999997, 272.602, 268.23199999999997, 272.405, 272.405, 272.405, 268.23199999999997, 268.23199999999997, 264.05899999999997, 268.23199999999997, 268.23199999999997, 272.405, 264.2539999999999, 268.428, 264.05899999999997, 268.23199999999997, 264.05899999999997, 268.23199999999997, 268.23199999999997, 268.23199999999997, 268.23199999999997, 268.428, 264.2539999999999], \"power_mean\": 265.8013142857142, \"energy_millijoules\": 18699.916396033106, \"energy_joules\": 18.699916396033107, \"coremark_score\": 3553.761301, \"coremarks_per_mhz\": 3.2472234110014617, \"ulpmark_cm_score\": 13.369043727544877}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [553.608, 557.935, 557.802, 557.935], \"power_mean\": 556.8199999999999, \"energy_millijoules\": 2784.0999999999995, \"energy_joules\": 2.7840999999999996}}, \"1248000\": {\"active\": {\"elapsed_sec\": 61.691539143, \"elapsed_ns\": 61691539143, \"power_samples\": [343.98799999999994, 379.342, 379.342, 379.1189999999999, 379.342, 379.1189999999999, 383.284, 379.1189999999999, 383.284, 378.89599999999996, 383.284, 379.1189999999999, 383.284, 379.1189999999999, 383.05999999999995, 379.1189999999999, 383.05999999999995, 378.89599999999996, 383.05999999999995, 378.89599999999996, 383.05999999999995, 378.673, 382.8359999999999, 378.89599999999996, 383.05999999999995, 378.673, 382.8359999999999, 378.673, 382.61199999999997, 378.673, 382.8359999999999, 378.44999999999993, 382.61199999999997, 378.673, 382.8359999999999, 378.44999999999993, 382.61199999999997, 378.44999999999993, 382.61199999999997, 378.44999999999993, 382.61199999999997, 378.44999999999993, 382.61199999999997, 378.227, 382.3879999999999, 378.44999999999993, 382.3879999999999, 378.44999999999993, 386.549, 382.3879999999999, 382.3879999999999, 378.227, 382.3879999999999, 378.227, 382.61199999999997, 378.227, 382.3879999999999, 378.0039999999999, 382.3879999999999, 378.227, 382.164], \"power_mean\": 380.12227868852455, \"energy_millijoules\": 23450.328434839466, \"energy_joules\": 23.450328434839466, \"coremark_score\": 4052.783452, \"coremarks_per_mhz\": 3.247422637820513, \"ulpmark_cm_score\": 10.660831497292904}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [561.594, 565.785, 565.785, 565.785], \"power_mean\": 564.73725, \"energy_millijoules\": 2823.68625, \"energy_joules\": 2.82368625}}, \"1401000\": {\"active\": {\"elapsed_sec\": 54.931973729, \"elapsed_ns\": 54931973729, \"power_samples\": [333.78099999999995, 477.10299999999995, 485.168, 480.51599999999996, 480.51599999999996, 480.51599999999996, 480.51599999999996, 480.51599999999996, 480.2679999999999, 480.51599999999996, 480.2679999999999, 480.2679999999999, 480.2679999999999, 480.2679999999999, 480.2679999999999, 480.2679999999999, 480.2679999999999, 480.2679999999999, 480.2679999999999, 480.2679999999999, 480.01999999999987, 480.01999999999987, 484.1719999999999, 480.01999999999987, 480.01999999999987, 480.01999999999987, 480.01999999999987, 480.01999999999987, 484.1719999999999, 480.01999999999987, 479.524, 479.524, 479.77200000000005, 479.524, 479.77200000000005, 479.524, 479.524, 479.524, 479.77200000000005, 479.524, 479.524, 479.524, 483.42500000000007, 479.27599999999995, 483.42500000000007, 479.27599999999995, 479.27599999999995, 479.524, 479.27599999999995, 479.27599999999995, 483.42500000000007, 479.27599999999995, 483.42500000000007, 479.27599999999995], \"power_mean\": 477.6627407407407, \"energy_millijoules\": 26238.957125692505, \"energy_joules\": 26.238957125692504, \"coremark_score\": 4551.495621, \"coremarks_per_mhz\": 3.2487477665952893, \"ulpmark_cm_score\": 9.527817694980206}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [569.432, 573.482, 573.619, 573.756], \"power_mean\": 572.5722499999999, \"energy_millijoules\": 2862.86125, \"energy_joules\": 2.86286125}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 4}}"
  },
  {
    "path": "results/msm8917/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 \nOffline CPUs: cpu1 cpu2 cpu3 \nSampling power every 1000 ms\nBaseline power usage: 550 mW\n\n\n===== CPU 1 =====\nFrequencies: 960 1094 1248 1401\n\n 960:  3117     3.2 C/MHz    214 mW   17.1 J   14.6 I/mJ    80.2 s\n1094:  3554     3.2 C/MHz    266 mW   18.7 J   13.4 I/mJ    70.4 s\n1248:  4053     3.2 C/MHz    380 mW   23.5 J   10.7 I/mJ    61.7 s\n1401:  4551     3.2 C/MHz    478 mW   26.2 J    9.5 I/mJ    54.9 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/msm8917/main/uptime.txt",
    "content": " 22:00:51 up 6 min,  load average: 3.93, 2.76, 1.28\n"
  },
  {
    "path": "results/msm8917/main/versions.txt",
    "content": "Kernel: Linux version 4.9.259-perf+ (mamles@buildbot) (Proton clang version 13.0.0 (https://github.com/llvm/llvm-project 7ee96429a0b057bcc97331a6a762fc3cd00aed61)) #1 SMP PREEMPT Wed Mar 17 06:21:26 UTC 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/msm8940/main/cmdline.txt",
    "content": "sched_enable_hmp=1 kpti=0 androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 androidboot.bootdevice=7824900.sdhci androidboot.usbconfigfs=true earlycon=msm_hsl_uart,0x78b000 buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.emmc=true androidboot.verifiedbootstate=orange androidboot.veritymode=enforcing androidboot.keymaster=1 androidboot.serialno=REDACTED device_locked=0 androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_ili9881c_ebbgDJN_720p_video:1:none:cfg:single_dsi board_id=S88536BA2:board_vol=476685\n"
  },
  {
    "path": "results/msm8940/main/cpufreq_stats/0/time_in_state",
    "content": "960000 61200\n1094400 7925\n1248000 7023\n1344000 6621\n1401000 6321\n1497600 6806\n"
  },
  {
    "path": "results/msm8940/main/cpufreq_stats/0/total_trans",
    "content": "9\n"
  },
  {
    "path": "results/msm8940/main/cpufreq_stats/4/time_in_state",
    "content": "768000 10969\n902400 9432\n998400 8530\n1094400 7928\n1209600 59037\n"
  },
  {
    "path": "results/msm8940/main/cpufreq_stats/4/total_trans",
    "content": "7\n"
  },
  {
    "path": "results/msm8940/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 4 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nHardware\t: Qualcomm Technologies, Inc MSM8940\n"
  },
  {
    "path": "results/msm8940/main/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. MSM8940-PMI8950 QRD SKU7;\nCompatible: qcom,msm8940-qrd-sku7;qcom,msm8940-qrd;qcom,msm8940;qcom,qrd;\n"
  },
  {
    "path": "results/msm8940/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x100\n[    0.000000] Linux version 4.9.268-mi8937 (mi-msm8937@github.com) (Proton clang version 13.0.0 (https://github.com/llvm/llvm-project 9829f5e6b1bca9b61efc629770d28bb9014dec45)) #3 SMP PREEMPT Mon May 17 15:33:35 +04 2021\n[    0.000000] Boot CPU: AArch64 Processor [410fd034]\n[    0.000000] Machine: Qualcomm Technologies, Inc. MSM8940-PMI8950 QRD SKU7\n[    0.000000] efi: Getting EFI parameters from FDT:\n[    0.000000] efi: UEFI not found.\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ffc00000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fec00000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f7c00000, size 112 MiB\n[    0.000000] OF: reserved mem: initialized node secure_region@0, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: invalid size property in 'mem_dump_region' node.\n[    0.000000] Reserved memory: created CMA memory pool at 0x000000008f800000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node venus_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6c00000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@0, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000084a00000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node other_ext_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086800000, size 106 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008d200000, size 17 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_fw_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008e300000, size 7 MiB\n[    0.000000] OF: reserved mem: initialized node wcnss_fw_region@0, compatible id removed-dma-pool\n[    0.000000] cma: Reserved 16 MiB at 0x00000000f5c00000\n[    0.000000] On node 0 totalpages: 786432\n[    0.000000]   DMA zone: 12288 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 786432 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.0 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] Did not receive the expected number of bytes from PRNG: 0\n[    0.000000] percpu: Embedded 22 pages/cpu s51096 r8192 d30824 u90112\n[    0.000000] pcpu-alloc: s51096 r8192 d30824 u90112 alloc=22*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: enabling workaround for ARM erratum 845719\n[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 774144\n[    0.000000] Kernel command line: sched_enable_hmp=1 kpti=0 androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 androidboot.bootdevice=7824900.sdhci androidboot.usbconfigfs=true earlycon=msm_hsl_uart,0x78b000 buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.emmc=true androidboot.verifiedbootstate=orange androidboot.veritymode=enforcing androidboot.keymaster=1 androidboot.serialno=REDACTED device_locked=0 androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_ili9881c_ebbgDJN_720p_video:1:none:cfg:single_dsi board_id=S88536BA2:board_vol=476685\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 131072 bytes\n[    0.000000] log_buf_len: 1048576 bytes\n[    0.000000] early log buf free: 126904(96%)\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] Memory: 2675316K/3145728K available (17916K kernel code, 3004K rwdata, 7504K rodata, 6144K init, 3972K bss, 294284K reserved, 176128K cma-reserved)\n[    0.000000] Virtual kernel memory layout:\n[    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n[    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)\n[    0.000000]       .text : 0x        (ptrval) - 0x        (ptrval)   ( 17920 KB)\n[    0.000000]     .rodata : 0x        (ptrval) - 0x        (ptrval)   (  8192 KB)\n[    0.000000]       .init : 0x        (ptrval) - 0x        (ptrval)   (  6144 KB)\n[    0.000000]       .data : 0x        (ptrval) - 0x        (ptrval)   (  3005 KB)\n[    0.000000]        .bss : 0x        (ptrval) - 0x        (ptrval)   (  3973 KB)\n[    0.000000]     fixed   : 0xffffffbefe7fb000 - 0xffffffbefec00000   (  4116 KB)\n[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)\n[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)\n[    0.000000]               0xffffffbf00000000 - 0xffffffbf03000000   (    48 MB actual)\n[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc0c0000000   (  3072 MB)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n\n[    0.000000] **********************************************************\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **                                                      **\n[    0.000000] ** trace_printk() being used. Allocating extra memory.  **\n[    0.000000] **                                                      **\n[    0.000000] ** This means that this is a DEBUG kernel and it is     **\n[    0.000000] ** unsafe for production use.                           **\n[    0.000000] **                                                      **\n[    0.000000] ** If you see this message and you are not debugging    **\n[    0.000000] ** the kernel, report this immediately to your vendor!  **\n[    0.000000] **                                                      **\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **********************************************************\n[    0.000000] NR_IRQS:64 nr_irqs:64 0\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from all CPUs\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arm_arch_timer: Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000005] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000015] clocksource: Switched to clocksource arch_sys_counter\n[    0.000943] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.000953] pid_max: default: 32768 minimum: 301\n[    0.001014] Security Framework initialized\n[    0.001020] SELinux:  Initializing.\n[    0.001068] SELinux:  Starting in permissive mode\n[    0.001098] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001104] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.002329] sched-energy: Sched-energy-costs installed from DT\n[    0.011962] ASID allocator initialised with 32768 entries\n[    0.018468] cpu_clock_a53_init_little: A53 Power clocks configured\n[    0.019060] MSM Memory Dump base table set up\n[    0.019071] MSM Memory Dump apps data table set up\n[    0.019209] EFI services will not be available.\n[    0.030057] CPU1: Booted secondary processor [410fd034]\n[    0.038640] CPU2: Booted secondary processor [410fd034]\n[    0.047200] CPU3: Booted secondary processor [410fd034]\n[    0.055907] CPU4: Booted secondary processor [410fd034]\n[    0.064765] CPU5: Booted secondary processor [410fd034]\n[    0.073612] CPU6: Booted secondary processor [410fd034]\n[    0.082456] CPU7: Booted secondary processor [410fd034]\n[    0.082877] Brought up 8 CPUs\n[    0.082882] SMP: Total of 8 processors activated.\n[    0.082889] CPU features: detected feature: 32-bit EL0 Support\n[    0.082894] CPU features: kernel page table isolation forced OFF by command line option\n[    0.082902] CPU: All CPU(s) started at EL1\n[    0.082983] alternatives: patching kernel code\n[    0.083289] CPU0: update max cpu_capacity 1024\n[    0.141877] DMI not present or invalid.\n[    0.142055] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.142068] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.149248] pinctrl core: initialized pinctrl subsystem\n[    0.150107] NET: Registered protocol family 16\n[    0.151890] schedtune: init normalization constants...\n[    0.151899] schedtune: CLUSTER[0]        min_pwr:     1 max_pwr:   239\n[    0.151904] schedtune: CPU[0]            min_pwr:    40 max_pwr:  1740\n[    0.151908] schedtune: SYSTEM            min_pwr:    41 max_pwr:  1979\n[    0.151913] schedtune: using normalization constants mul: 243780394 sh1: 1 sh2: 10\n[    0.151915] schedtune: verify normalization constants...\n[    0.151919] schedtune: max_pwr/2^0: 1938 => norm_pwr:  1024\n[    0.151923] schedtune: max_pwr/2^1:  969 => norm_pwr:   512\n[    0.151926] schedtune: max_pwr/2^2:  484 => norm_pwr:   255\n[    0.151929] schedtune: max_pwr/2^3:  242 => norm_pwr:   127\n[    0.151933] schedtune: max_pwr/2^4:  121 => norm_pwr:    63\n[    0.151936] schedtune: max_pwr/2^5:   60 => norm_pwr:    31\n[    0.151940] schedtune: configured to support 5 boost groups\n[    0.153756] cpuidle: using governor menu\n[    0.153790] cpuidle: using governor qcom\n[    0.157444] vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.157451] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.158450] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.162279] pstore: using lz4 compression\n[    0.162341] console [pstore0] enabled\n[    0.162345] pstore: Registered ramoops as persistent store backend\n[    0.162350] ramoops: attached 0x400000@0xa0000000, ecc: 0/0\n[    0.162704] msm8937-pinctrl 1000000.pinctrl: invalid resource\n[    0.173116] unable to find DT imem DLOAD mode node\n[    0.174014] unable to find DT imem EDLOAD mode node\n[    0.175954] sps:sps is ready.\n[    0.177867] cpu-clock-8939 b011050.qcom,cpu-clock-8939: No PVS version available. Defaulting to 0!\n[    0.177874] cpu-clock-8939 b011050.qcom,cpu-clock-8939: Speed bin: 1 PVS Version: 0\n[    0.180502] smd_channel_probe_now: allocation table not initialized\n[    0.182189] smd_channel_probe_now: allocation table not initialized\n[    0.182684] smd_channel_probe_now: allocation table not initialized\n[    0.183508] msm_rpm_glink_dt_parse: qcom,rpm-glink compatible not matches\n[    0.184531] pm8937_s2_level: Bringing 1uV into 16-16uV\n[    0.184921] pm8937_s2_floor_level: Bringing 1uV into 16-16uV\n[    0.185485] pm8937_s2_level_ao: Bringing 1uV into 16-16uV\n[    0.187603] pm8937_l3_level_ao: Bringing 1uV into 16-16uV\n[    0.197498] msm_watchdog b017000.qcom,wdt: wdog absent resource not present\n[    0.198675] msm_watchdog b017000.qcom,wdt: MSM Watchdog Initialized\n[    0.199041] spmi spmi-0: PMIC arbiter version v2 (0x20010000)\n[    0.199849] spm_regulator_probe: name=pm8937_s5, range=LV, voltage=1225000 uV, mode=PWM, step rate=1200 uV/us\n[    0.207937] platform soc:qcom,adsprpc-mem: assigned reserved memory node adsp_region@0\n[    0.209443] platform 4080000.qcom,mss: assigned reserved memory node modem_region@0\n[    0.209636] platform c200000.qcom,lpass: assigned reserved memory node adsp_fw_region@0\n[    0.209825] platform a21b000.qcom,pronto: assigned reserved memory node wcnss_fw_region@0\n[    0.209952] platform 1de0000.qcom,venus: assigned reserved memory node venus_region@0\n[    0.210669] ACC: mem_acc_efuse_init: efuse_addr = 0x00000000000a4000 (len=0x1000)\n[    0.210867] ACC: mem_acc_parse_override_fuse_version_range: fuse_sel0 = 1 fuse_sel1 = 43 fuse_sel2 = 42  qcom,override-fuse-range-map tuple match not found\n[    0.211384] cpr_efuse_init: apc_corner: efuse_addr = 0x00000000000a4000 (len=0x1000)\n[    0.211411] cpr_read_fuse_revision: apc_corner: fuse revision = 1\n[    0.211420] cpr_parse_speed_bin_fuse: apc_corner: [row: 37]: 0x60807921b047619e, speed_bits = 0\n[    0.211430] cpr_parse_pvs_version_fuse: apc_corner: [row: 37]: 0x60807921b047619e, pvs_version = 1\n[    0.211505] cpr_adjust_init_voltages: apc_corner: adjusted initial voltage[3]: 1250000 -> 1270000 uV\n[    0.211511] cpr_pvs_per_corner_init: apc_corner: Warning: initial voltage[1] 1085000 below floor 1150000\n[    0.211516] cpr_pvs_per_corner_init: apc_corner: Warning: initial voltage[2] 1145000 below floor 1150000\n[    0.211523] cpr_pvs_init: apc_corner: pvs voltage: [1150000 1150000 1270000] uV\n[    0.211529] cpr_pvs_init: apc_corner: ceiling voltage: [1155000 1225000 1350000] uV\n[    0.211534] cpr_pvs_init: apc_corner: floor voltage: [1150000 1150000 1250000] uV\n[    0.211633] cpr_init_cpr_parameters: apc_corner: up threshold = 2, down threshold = 4\n[    0.211651] cpr_init_cpr_parameters: apc_corner: CPR is disabled by default.\n[    0.211671] cpr_init_cpr_efuse: apc_corner: [row:67] = 0x8367264a0c0aa\n[    0.211686] cpr_init_cpr_efuse: apc_corner: Corner[1]: ro_sel = 0, target quot = 525\n[    0.211692] cpr_init_cpr_efuse: apc_corner: Corner[2]: ro_sel = 0, target quot = 612\n[    0.211698] cpr_init_cpr_efuse: apc_corner: Corner[3]: ro_sel = 0, target quot = 770\n[    0.211719] cpr_adjust_target_quots: apc_corner: Corner[1]: adjusted target quot = 563\n[    0.211730] cpr_adjust_target_quots: apc_corner: Corner[3]: adjusted target quot = 798\n[    0.211793] cpr_get_corner_quot_adjustment: apc_corner: fuse corner 2 quotient adjustment scaling factor: 0.365\n[    0.211798] cpr_get_corner_quot_adjustment: apc_corner: fuse corner 3 quotient adjustment scaling factor: 0.605\n[    0.211807] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[1] = 563\n[    0.211811] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[2] = 612\n[    0.211815] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[3] = 682\n[    0.211819] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[4] = 706\n[    0.211822] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[5] = 764\n[    0.211826] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[6] = 798\n[    0.211829] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[7] = 798\n[    0.212309] cpr_config: apc_corner: Timer count: 0x17700 (for 5000 us)\n[    0.212599] apc_corner: Bringing 0uV into 1-1uV\n[    0.250064] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.250072] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.250093] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.250104] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.250155] mdss_pll_util_resource_init+0x2c/0xa8->msm_mdss_config_vreg: gdsc get failed. rc=-517\n[    0.250158] mdss_pll_util_resource_init: Vreg config failed rc=-517\n[    0.250162] mdss_pll_probe: Pll ndx=0 resource init failed rc=-517\n[    0.250200] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.250206] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.250222] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.250233] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.250262] mdss_pll_util_resource_init+0x2c/0xa8->msm_mdss_config_vreg: gdsc get failed. rc=-517\n[    0.250265] mdss_pll_util_resource_init: Vreg config failed rc=-517\n[    0.250269] mdss_pll_probe: Pll ndx=1 resource init failed rc=-517\n[    0.252459] KPI: Bootloader start count = 26793\n[    0.252462] KPI: Bootloader end count = 108085\n[    0.252465] KPI: Bootloader display count = 74970\n[    0.252468] KPI: Bootloader load kernel count = 2363\n[    0.252472] KPI: Kernel MPM timestamp = 124534\n[    0.252474] KPI: Kernel MPM Clock frequency = 32768\n[    0.252490] socinfo_print: v0.10, id=313, ver=1.0, raw_id=107, raw_ver=0, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65561, pmic_die_revision=65536 foundry_id=2 serial_number=2957468062\n[    0.253522] arm-smmu 1c40000.arm,smmu-kgsl: Couldn't get clock: gpu_ahb_clk\n[    0.253893] arm-smmu 1e00000.qcom,iommu: Couldn't get clock: iface_clk\n[    0.256231] SCSI subsystem initialized\n[    0.256428] usbcore: registered new interface driver usbfs\n[    0.256477] usbcore: registered new interface driver hub\n[    0.256515] usbcore: registered new device driver usb\n[    0.257086] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pm8937@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from PON1 (secondary PMIC) and 'warm' boot\n[    0.257106] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pm8937@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)\n[    0.257338] input: qpnp_pon as /devices/virtual/input/input0\n[    0.258149] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pmi8950@2:qcom,power-on@800: No PON config. specified\n[    0.258204] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pmi8950@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (secondary PMIC) and 'warm' boot\n[    0.258221] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pmi8950@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)\n[    0.258624] i2c-msm-v2 78b6000.i2c: probing driver i2c-msm-v2\n[    0.258682] i2c-msm-v2 78b6000.i2c: error on clk_get(core_clk):-517\n[    0.258691] i2c-msm-v2 78b6000.i2c: error probe() failed with err:-517\n[    0.258812] i2c-msm-v2 78b7000.i2c: probing driver i2c-msm-v2\n[    0.258845] i2c-msm-v2 78b7000.i2c: error on clk_get(core_clk):-517\n[    0.258853] i2c-msm-v2 78b7000.i2c: error probe() failed with err:-517\n[    0.259074] media: Linux media interface: v0.10\n[    0.259108] Linux video capture interface: v2.00\n[    0.267539] EDAC MC: Ver: 3.0.0\n[    0.269415] Unable to get pmic_revid rc=-22\n[    0.269556] dmi: Firmware registration failed.\n[    0.270217] platform soc:qcom,ion:qcom,ion-heap@8: assigned reserved memory node secure_region@0\n[    0.270359] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@0\n[    0.270502] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.270738] ION heap system created\n[    0.270883] ION heap mm created at 0x00000000f7c00000 with size 7000000\n[    0.270894] ION heap qsecom created at 0x00000000f6c00000 with size 1000000\n[    0.270908] ION heap qsecom_ta created at 0x00000000fec00000 with size 1000000\n[    0.272117] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.272122] ipa ipa_init:4022 fail to register with bus mgr!\n[    0.272202] ipa ipa_plat_drv_probe:5052 ipa_init failed\n[    0.272502] PMIC@SID0: PM8937 v1.0 options: 2, 2, 0, 0\n[    0.272609] PMIC@SID2: PMI8950 v2.0 options: 0, 0, 0, 0\n[    0.275990] Advanced Linux Sound Architecture Driver Initialized.\n[    0.275994] aw87319_pa_init Enter\n[    0.276516] Bluetooth: Core ver 2.22\n[    0.276542] NET: Registered protocol family 31\n[    0.276545] Bluetooth: HCI device and connection manager initialized\n[    0.276553] Bluetooth: HCI socket layer initialized\n[    0.276560] Bluetooth: L2CAP socket layer initialized\n[    0.278040] NetLabel: Initializing\n[    0.278044] NetLabel:  domain hash size = 128\n[    0.278046] NetLabel:  protocols = UNLABELED CIPSOv4\n[    0.278094] NetLabel:  unlabeled traffic allowed by default\n[    0.278694] qcom,gcc-8952 1800000.qcom,gcc: GPU speed bin: 0\n[    0.278902] gfx3d_clk_src: set OPP pair(19200000 Hz: 128 uV) on 1c00000.qcom,kgsl-3d0\n[    0.279188] gfx3d_clk_src: set OPP pair(200000000 Hz: 128 uV) on 1c00000.qcom,kgsl-3d0\n[    0.279754] gfx3d_clk_src: set OPP pair(475000000 Hz: 512 uV) on 1c00000.qcom,kgsl-3d0\n[    0.293742] qcom,gcc-spm-8952 b111200.qcom,spm: Registered GCC SPM clocks\n[    0.293763] qcom,gcc-8952 1800000.qcom,gcc: Registered GCC clocks\n[    0.293824] cpu-clock-8939 b011050.qcom,cpu-clock-8939: No PVS version available. Defaulting to 0!\n[    0.293831] cpu-clock-8939 b011050.qcom,cpu-clock-8939: Speed bin: 1 PVS Version: 0\n[    0.297523] populate_opp_table: clock-cpu-8939: OPP tables populated (cpu 7 and 3)\n[    0.297530] print_opp_table: clock_cpu: a53_c0: OPP voltage for 768000000: 1150000\n[    0.297534] print_opp_table: clock_cpu: a53_c0: OPP voltage for 1209600000: 1270000\n[    0.297538] print_opp_table: clock_cpu: a53_c1: OPP voltage for 960000000: 1150000\n[    0.297542] print_opp_table: clock_cpu: a53_c1: OPP voltage for 1497600000: 1270000\n[    0.298369] qpnp_labibb_regulator_probe: LAB/IBB registered successfully, lab_vreg enable=1 ibb_vreg enable=1 swire_control=0\n[    0.298448] sched-energy energy-costs: cpu=0 eff=1126 [freq=700000 cap=479 power_d0=623] -> [freq=1400000 cap=958 power_d0=1740]\n[    0.298452] CPU0: update cpu_power 1197\n[    0.298455] CPU0: update cpu_capacity 958\n[    0.298465] sched-energy energy-costs: cpu=1 eff=1126 [freq=700000 cap=479 power_d0=623] -> [freq=1400000 cap=958 power_d0=1740]\n[    0.298469] CPU1: update cpu_power 1197\n[    0.298471] CPU1: update cpu_capacity 958\n[    0.298482] sched-energy energy-costs: cpu=2 eff=1126 [freq=700000 cap=479 power_d0=623] -> [freq=1400000 cap=958 power_d0=1740]\n[    0.298484] CPU2: update cpu_power 1197\n[    0.298487] CPU2: update cpu_capacity 958\n[    0.298498] sched-energy energy-costs: cpu=3 eff=1126 [freq=700000 cap=479 power_d0=623] -> [freq=1400000 cap=958 power_d0=1740]\n[    0.298501] CPU3: update cpu_power 1197\n[    0.298503] CPU3: update cpu_capacity 958\n[    0.298514] sched-energy energy-costs: cpu=4 eff=1024 [freq=500000 cap=312 power_d0=70] -> [freq=1100000 cap=685 power_d0=213]\n[    0.298516] CPU4: update cpu_power 850\n[    0.298519] CPU4: update cpu_capacity 685\n[    0.298530] sched-energy energy-costs: cpu=5 eff=1024 [freq=500000 cap=312 power_d0=70] -> [freq=1100000 cap=685 power_d0=213]\n[    0.298532] CPU5: update cpu_power 850\n[    0.298535] CPU5: update cpu_capacity 685\n[    0.298545] sched-energy energy-costs: cpu=6 eff=1024 [freq=500000 cap=312 power_d0=70] -> [freq=1100000 cap=685 power_d0=213]\n[    0.298548] CPU6: update cpu_power 850\n[    0.298551] CPU6: update cpu_capacity 685\n[    0.298561] sched-energy energy-costs: cpu=7 eff=1024 [freq=500000 cap=312 power_d0=70] -> [freq=1100000 cap=685 power_d0=213]\n[    0.298564] CPU7: update cpu_power 850\n[    0.298567] CPU7: update cpu_capacity 685\n[    0.298794] CPU0: update max cpu_capacity 958\n[    0.300213] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.302990] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.302997] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.303016] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.303027] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.303598] dsi_pll_clock_register_lpm: Registered DSI PLL:0 clocks successfully\n[    0.303668] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.303674] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.303692] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.303703] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.304515] dsi_pll_clock_register_lpm: Registered DSI PLL:1 clocks successfully\n[    0.304983] arm-smmu 1c40000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.304994] arm-smmu 1c40000.arm,smmu-kgsl: \tstream matching with 4 register groups, mask 0x3\n[    0.306334] arm-smmu 1e00000.qcom,iommu: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.306343] arm-smmu 1e00000.qcom,iommu: \tstream matching with 122 register groups, mask 0x7fff\n[    0.306438] arm-smmu 1e00000.qcom,iommu: found 32 context interrupt(s) but have 30 context banks. assuming 30 context interrupts.\n[    0.307008] iommu: Adding device soc:qcom,msm-audio-ion to group 0\n[    0.307203] i2c-msm-v2 78b6000.i2c: probing driver i2c-msm-v2\n[    0.307256] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.307264] i2c-msm-v2 78b6000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.307504] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.360323] AW87319 CHIPID=0x9b\n[    0.380234] i2c-msm-v2 78b7000.i2c: probing driver i2c-msm-v2\n[    0.380279] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.380286] i2c-msm-v2 78b7000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.380496] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.382976] cpufreq: driver msm up and running\n[    0.385003] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.385006] ipa ipa_init:4022 fail to register with bus mgr!\n[    0.385060] ipa ipa_plat_drv_probe:5052 ipa_init failed\n[    0.385639] clocksource: Switched to clocksource arch_sys_counter\n[    0.424120] VFS: Disk quotas dquot_6.6.0\n[    0.424163] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.424222] msm_bus_fabric_init_driver\n[    0.429556] msm_bus_device 580000.ad-hoc-bus: Bus scaling driver probe successful\n[    0.430740] NET: Registered protocol family 2\n[    0.431153] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.431328] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.431801] TCP: Hash tables configured (established 32768 bind 32768)\n[    0.431842] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.431905] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.432059] NET: Registered protocol family 1\n[    0.432715] gcc-mdss-8952 soc:qcom,gcc-mdss@1800000: Registered GCC MDSS clocks.\n[    0.433583] ipa ipa2_uc_state_check:297 uC interface not initialized\n[    0.433594] ipa ipa_sps_irq_control_all:963 EP (2) not allocated.\n[    0.433598] ipa ipa_sps_irq_control_all:963 EP (5) not allocated.\n[    0.436609] sps:BAM 0x0000000007904000 is registered.\n[    0.439010] sps:BAM 0x0000000007904000 (va:0xffffff800b1c0000) enabled: ver:0x27, number of pipes:20\n[    0.450793] IPA driver initialization was successful.\n[    0.451168] Trying to unpack rootfs image as initramfs...\n[    0.729823] Freeing initrd memory: 7472K\n[    0.730725] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.734157] audit: initializing netlink subsys (disabled)\n[    0.734198] audit: type=2000 audit(0.729:1): initialized\n[    0.734425] Initialise system trusted keyrings\n[    0.735645] workingset: timestamp_bits=61 max_order=20 bucket_order=0\n[    0.740887] exFAT: file-system version 5.8-2arter97\n[    0.741015] Registering sdcardfs 0.1\n[    0.741196] fuse init (API version 7.26)\n[    0.742864] SELinux:  Registering netfilter hooks\n[    0.743080] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    0.743082] pfk_f2fs [pfk_f2fs_init]: PFK F2FS inited successfully\n[    0.743086] pfk [pfk_init]: Driver initialized successfully\n[    0.746720] Key type asymmetric registered\n[    0.746723] Asymmetric key parser 'x509' registered\n[    0.746732] io scheduler noop registered\n[    0.746879] io scheduler cfq registered (default)\n[    0.754830] msm_mdss_get_res_byname: 'vbif_nrt_phys' resource not found\n[    0.754841] mdss_mdp_probe+0x224/0x6d0->msm_mdss_ioremap_byname: 'vbif_nrt_phys' msm_mdss_get_res_byname failed\n[    0.755029] mdss_mdp_irq_clk_register: unable to get clk: lut_clk\n[    0.755041] mdss_mdp_irq_clk_register: unable to get clk: mnoc_clk\n[    0.755413] No change in context(0==0), skip\n[    0.755864] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:0 num:0 rect:0 ndx:0x1 prio:0\n[    0.755879] mdss_mdp_pipe_addr_setup: type:1 ftchid:-1 xinid:1 num:3 rect:0 ndx:0x8 prio:1\n[    0.755883] mdss_mdp_pipe_addr_setup: type:1 ftchid:-1 xinid:5 num:4 rect:0 ndx:0x10 prio:2\n[    0.755895] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:2 num:6 rect:0 ndx:0x40 prio:3\n[    0.755906] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:7 num:10 rect:0 ndx:0x400 prio:0\n[    0.755915] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-pipe-sw-reset-off : u32 array read\n[    0.756006] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-ib-factor-overlap : u32 array read\n[    0.756012] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-bus-througput-factor : u32 array read\n[    0.756244] xlog_status: enable:1, panic:1, dump:2\n[    0.756495] iommu: Adding device 1a00000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb to group 1\n[    0.756694] iommu: Adding device 1a00000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb to group 2\n[    0.756865] mdss_mdp_probe: mdss version = 0x100e0000, bootloader display is on, num 1, intf_sel=0x00000100\n[    0.759082] mdss_smmu_util_parse_dt_clock: clocks are not defined\n[    0.759089] mdss_smmu_probe: iommu v2 domain[0] mapping and clk register successful!\n[    0.759104] mdss_smmu_util_parse_dt_clock: clocks are not defined\n[    0.759108] mdss_smmu_probe: iommu v2 domain[2] mapping and clk register successful!\n[    0.759208] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.759217] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.759225] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.760112] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->0\n[    0.760293] Xiaomi series = landtoni\n[    0.760297] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_ili9881c_ebbgDJN_720p_video:1:none:cfg:single_dsi panel_name:qcom,mdss_dsi_ili9881c_ebbgDJN_720p_video\n[    0.760313] mdss_dsi_panel_init: Panel Name = ili9881c_HD720p_video_EbbgDJN\n[    0.760459] mdss_dsi_panel_timing_from_dt: found new timing \"qcom,mdss_dsi_ili9881c_ebbgDJN_720p_video\" (ffffffc0b18673d8)\n[    0.760478] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-post-panel-on-command\n[    0.760484] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-timing-switch-command\n[    0.760486] mdss_dsi_panel_get_dsc_cfg_np: cannot find dsc config node:\n[    0.760585] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-idle-on-command\n[    0.760591] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-idle-off-command\n[    0.760617] mdss_dsi_parse_panel_features: ulps feature enabled\n[    0.760621] mdss_dsi_parse_panel_features: ulps during suspend feature enabled\n[    0.760628] mdss_dsi_parse_dms_config: dynamic switch feature enabled: 0\n[    0.760689] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-on\n[    0.760694] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-off\n[    0.760743] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.760749] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.760756] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.760762] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.760914] mdss_dsi_parse_ctrl_params:4221 Unable to read qcom,display-id, data=0000000000000000,len=45\n[    0.760923] mdss_dsi_parse_gpio_params: bklt_en gpio not specified\n[    0.760927] mdss_dsi_parse_gpio_params: ext vdd gpio not specified\n[    0.760966] mdss_dsi_retrieve_ctrl_resources: phy_regulator_base=ffffff800b13db80 phy_regulator_size=30\n[    0.760969] mdss_dsi_retrieve_ctrl_resources: ctrl_base=ffffff800b11e000 ctrl_size=300 phy_base=ffffff800b13b400 phy_size=280\n[    0.761248] dsi_panel_device_register: Continuous splash enabled\n[    0.761314] mdss_register_panel: adding framebuffer device 1a94000.qcom,mdss_dsi_ctrl0\n[    0.783044] mdss_dsi_ctrl_probe: Dsi Ctrl->0 initialized, DSI rev:0x10040002, PHY rev:0x1\n[    0.783070] mdss_dsi_status_init: DSI status check interval:5000\n[    0.783262] mdss_register_panel: adding framebuffer device soc:qcom,mdss_wb_panel\n[    0.783810] mdss_fb_probe: fb0: split_mode:0 left:0 right:0\n[    0.784224] mdss_fb_register: FrameBuffer[0] 720x1280 registered successfully!\n[    0.784443] mdss_fb_probe: fb1: split_mode:0 left:0 right:0\n[    0.784512] mdss_fb_register: FrameBuffer[1] 640x640 registered successfully!\n[    0.784573] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    0.784669] qcom-sps-dma 7884000.qcom,sps-dma: dma_async_device_register: device has no channels!\n[    0.784708] qcom-sps-dma 7ac4000.qcom,sps-dma: dma_async_device_register: device has no channels!\n[    0.785717] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    0.785734] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    0.787528] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.787531] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    0.787535] memshare: hyp_assign_phys failed size=2097152 err=-5\n[    0.787560] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.787634] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.789776] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.789779] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    0.789783] memshare: hyp_assign_phys failed size=5242880 err=-5\n[    0.789790] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.791230] minidump-id not found for adsp\n[    0.791343] minidump-id not found for wcnss\n[    0.791552] minidump-id not found for venus\n[    0.791566] subsys-pil-tz 1de0000.qcom,venus: for venus segments only will be dumped.\n[    0.792719] minidump-id not found for modem\n[    0.793021] msm-dcc b3000.dcc: DCC XPU is not specified\n[    0.794338] wcnss: wcnss_wlan probed in built-in mode\n[    0.795005] msm_serial_hs module loaded\n[    0.796790] random: fast init done\n[    0.796872] random: crng init done\n[    0.800638] diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    0.800641] diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    0.865844] diag: In __diag_glink_init, unable to register for glink channel DIAG_CTRL\n[    0.866999] diag: In __diag_glink_init, unable to register for glink channel DIAG_DATA\n[    0.868106] diag: In __diag_glink_init, unable to register for glink channel DIAG_CMD\n[    0.869215] diag: In __diag_glink_init, unable to register for glink channel DIAG_DCI_DATA\n[    0.870321] diag: In __diag_glink_init, unable to register for glink channel DIAG_DCI_CMD\n[    0.875397] iommu: Adding device 1c40000.qcom,kgsl-iommu:gfx3d_user to group 3\n[    0.901585] brd: module loaded\n[    0.924112] loop: module loaded\n[    0.925410] zram: Added device: zram0\n[    0.926323] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1000000\n[    0.926346] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.926352] QSEECOM: qseecom_probe: qseecom clocks handled by other subsystem\n[    0.926355] QSEECOM: qseecom_probe: qsee reentrancy support phase is not defined, setting to default 0\n[    0.926563] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    0.928249] QCE50: __qce_get_device_tree_data: BAM Apps EE is not defined, setting to default 1\n[    0.928561] qce 720000.qcedev: QTI Crypto 5.3.3 device found @0x720000\n[    0.928568] qce 720000.qcedev: CE device = 0x0 IO base, CE = ffffff800b620000 Consumer (IN) PIPE 2,\n               Producer (OUT) PIPE 3 IO base BAM = 0000000000000000\n               BAM IRQ 121 Engines Availability = 0x2010853\n[    0.928731] sps:BAM 0x0000000000704000 is registered.\n[    0.928929] sps:BAM 0x0000000000704000 (va:0xffffff800c060000) enabled: ver:0x27, number of pipes:8\n[    0.929124] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000000704000 irq 121\n[    0.932462] QCE50: __qce_get_device_tree_data: BAM Apps EE is not defined, setting to default 1\n[    0.932808] qcrypto 720000.qcrypto: QTI Crypto 5.3.3 device found @0x720000\n[    0.932815] qcrypto 720000.qcrypto: CE device = 0x0 IO base, CE = ffffff800c0a0000 Consumer (IN) PIPE 4,\n               Producer (OUT) PIPE 5 IO base BAM = 0000000000000000\n               BAM IRQ 121 Engines Availability = 0x2010853\n[    0.933071] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000000704000 irq 121\n[    0.933980] qcrypto 720000.qcrypto: qcrypto-ecb-aes\n[    0.934105] qcrypto 720000.qcrypto: qcrypto-cbc-aes\n[    0.934200] qcrypto 720000.qcrypto: qcrypto-ctr-aes\n[    0.934295] qcrypto 720000.qcrypto: qcrypto-ecb-des\n[    0.934389] qcrypto 720000.qcrypto: qcrypto-cbc-des\n[    0.934483] qcrypto 720000.qcrypto: qcrypto-ecb-3des\n[    0.934583] qcrypto 720000.qcrypto: qcrypto-cbc-3des\n[    0.934680] qcrypto 720000.qcrypto: qcrypto-xts-aes\n[    0.934776] qcrypto 720000.qcrypto: qcrypto-sha1\n[    0.934871] qcrypto 720000.qcrypto: qcrypto-sha256\n[    0.934966] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    0.935061] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    0.935160] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    0.935255] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    0.935351] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    0.935449] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    0.935543] qcrypto 720000.qcrypto: qcrypto-hmac-sha1\n[    0.935639] qcrypto 720000.qcrypto: qcrypto-hmac-sha256\n[    0.935733] qcrypto 720000.qcrypto: qcrypto-aes-ccm\n[    0.935829] qcrypto 720000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    0.936192] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    0.936248] ICE IRQ = 115\n[    0.936689] SCSI Media Changer driver v0.25 \n[    0.937637] libphy: Fixed MDIO Bus: probed\n[    0.937640] tun: Universal TUN/TAP device driver, 1.6\n[    0.937642] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    0.937687] PPP generic driver version 2.4.2\n[    0.937743] PPP BSD Compression module registered\n[    0.937746] PPP Deflate Compression module registered\n[    0.937755] PPP MPPE Compression module registered\n[    0.937758] NET: Registered protocol family 24\n[    0.937768] PPTP driver version 0.8.5\n[    0.938043] usbcore: registered new interface driver r8152\n[    0.938072] usbcore: registered new interface driver asix\n[    0.938117] usbcore: registered new interface driver ax88179_178a\n[    0.938139] usbcore: registered new interface driver cdc_ether\n[    0.938160] usbcore: registered new interface driver net1080\n[    0.938182] usbcore: registered new interface driver cdc_subset\n[    0.938206] usbcore: registered new interface driver zaurus\n[    0.938239] usbcore: registered new interface driver cdc_ncm\n[    0.938243] CHRDEV \"uio\" major number 233 goes below the dynamic allocation range\n[    0.939222] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.939225] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    0.939230] msm_sharedmem: setup_shared_ram_perms: hyp_assign_phys failed IPA=0x0160x00000000f6700000 size=1572864 err=-5\n[    0.939303] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.939555] msm_otg 78db000.usb: msm_otg probe\n[    0.940866] msm_otg 78db000.usb: OTG regs = ffffff800b40a000\n[    0.942000] CHRDEV \"usbmon\" major number 232 goes below the dynamic allocation range\n[    0.942056] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.942058] ehci-platform: EHCI generic platform driver\n[    0.942395] ehci-msm: Qualcomm On-Chip EHCI Host Controller\n[    0.942617] Unable to get vbus_otg\n[    0.942621] msm_hsusb_host msm_hsusb_host: unable to register with transceiver\n[    0.942691] usbcore: registered new interface driver cdc_acm\n[    0.942693] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters\n[    0.942726] usbcore: registered new interface driver usb-storage\n[    0.942747] usbcore: registered new interface driver ums-alauda\n[    0.942766] usbcore: registered new interface driver ums-cypress\n[    0.942786] usbcore: registered new interface driver ums-datafab\n[    0.942806] usbcore: registered new interface driver ums-freecom\n[    0.942825] usbcore: registered new interface driver ums-isd200\n[    0.942845] usbcore: registered new interface driver ums-jumpshot\n[    0.942869] usbcore: registered new interface driver ums-karma\n[    0.942889] usbcore: registered new interface driver ums-onetouch\n[    0.942909] usbcore: registered new interface driver ums-sddr09\n[    0.942929] usbcore: registered new interface driver ums-sddr55\n[    0.942948] usbcore: registered new interface driver ums-usbat\n[    0.943000] usbcore: registered new interface driver usbserial\n[    0.943024] usbcore: registered new interface driver usb_ehset_test\n[    0.943050] CHRDEV \"ttyGS\" major number 231 goes below the dynamic allocation range\n[    0.944280] msm_sharedmem: sharedmem_register_qmi: qmi init successful\n[    0.945094] usb_qcrndis_init: failed to register diag -17\n[    0.945111] CHRDEV \"rmnet_ctrl\" major number 230 goes below the dynamic allocation range\n[    0.945836] mousedev: PS/2 mouse device common for all mice\n[    0.945923] xiaomi_dt2w_probe: Start registering sysctl dev.dt2w control node...\n[    0.945933] xiaomi_dt2w_probe: Registeration of sysctl dev.dt2w control node succeeded, now creating proc symlinks...\n[    0.945935] xiaomi_dt2w_proc_init: control_node_path parameter is /proc/sys/dev/dt2w\n[    0.945937] xiaomi_dt2w_proc_init: Starting dynamic symlinking...\n[    0.945968] esture/onoff\n[    0.945970] xiaomi_dt2w_proc_init: Creating proc directory gesture...\n[    0.945977] xiaomi_dt2w_proc_init: Linking of /proc/sys/dev/dt2w to /proc/gesture/onoff...\n[    0.945982] xiaomi_dt2w_proc_init: Symlink of /proc/sys/dev/dt2w to /proc/gesture/onoff done.\n[    0.945989] esture/onofftouchpanel/enable_dt2w\n[    0.945991] xiaomi_dt2w_proc_init: Creating proc directory touchpanel...\n[    0.946000] xiaomi_dt2w_proc_init: Linking of /proc/sys/dev/dt2w to /proc/touchpanel/enable_dt2w...\n[    0.946004] xiaomi_dt2w_proc_init: Symlink of /proc/sys/dev/dt2w to /proc/touchpanel/enable_dt2w done.\n[    0.946005] xiaomi_dt2w_proc_init: Dynamic symlinking done.\n[    0.946007] xiaomi_dt2w_probe: Probe done! Initial status = Enabled\n[    0.946546] Xiaomi device = santoni\n[    0.946548] [FTS]fts_ts_init: Enter\n[    0.946729] i2c-msm-v2 78b7000.i2c: msm_bus_scale_register_client(mstr-id:86):0xf (ok)\n[    0.947144] input: ft5x06_720p as /devices/platform/soc/78b7000.i2c/i2c-3/3-0038/input/input1\n[    1.180514] ft5x06_720p 3-0038: Device ID = 0x14\n[    1.181123] ft5x06_720p 3-0038: report rate = 110Hz\n[    1.182850] ft5x06_720p 3-0038: Firmware version = 5.0.0\n[    1.183293] FT5X06-TP-TAG DEBUG:[2943]tp battery supply not found\n\n[    1.183369] gf:gf_init, entry\n[    1.183371] --------gf_init start.--------\n[    1.183730] gf:gf_probe, entry\n[    1.183731] --------gf_probe start.--------\n[    1.183860] input: gf3208 as /devices/virtual/input/input2\n[    1.183906] --------gf_probe end---OK.--------\n[    1.183952]  status = 0x0\n[    1.183954] gf:gf_init, exit\n[    1.183955] --------gf_init end---OK.--------\n[    1.184269] fpc1020 soc:fpc1020: fpc1020_probe: ok\n[    1.184294] fpc1020_init OK\n[    1.184661] qcom,qpnp-rtc 200f000.qcom,spmi:qcom,pm8937@0:qcom,pm8937_rtc: rtc core: registered qpnp_rtc as rtc0\n[    1.184837] i2c /dev entries driver\n[    1.184997] CHRDEV \"BaseRemoteCtl\" major number 229 goes below the dynamic allocation range\n[    1.185000] lirc_dev: IR Remote Control driver registered, major 229\n[    1.185003] IR NEC protocol handler initialized\n[    1.185004] IR RC5(x/sz) protocol handler initialized\n[    1.185006] IR RC6 protocol handler initialized\n[    1.185008] IR JVC protocol handler initialized\n[    1.185009] IR Sony protocol handler initialized\n[    1.185011] IR SANYO protocol handler initialized\n[    1.185013] IR Sharp protocol handler initialized\n[    1.185014] IR LIRC bridge handler initialized\n[    1.185016] IR XMP protocol handler initialized\n[    1.189704] iommu: Adding device 1d00000.qcom,vidc:non_secure_cb to group 4\n[    1.190236] iommu: Adding device 1d00000.qcom,vidc:secure_bitstream_cb to group 5\n[    1.190569] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    1.190573] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    1.190649] iommu: Adding device 1d00000.qcom,vidc:secure_pixel_cb to group 6\n[    1.190916] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    1.190919] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    1.191003] iommu: Adding device 1d00000.qcom,vidc:secure_non_pixel_cb to group 7\n[    1.191268] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    1.191271] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    1.195271] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb1 to group 8\n[    1.195574] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb3 to group 9\n[    1.195729] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb4 to group 10\n[    1.196883] msm 1b00000.qcom,msm-cam: Entity type for entity msm_cci was not initialized!\n[    1.196931] msm_camera_get_dt_vreg_data:1256 number of entries is 0 or not present in dts\n[    1.200513] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csiphy was not initialized!\n[    1.200577] msm_camera_get_dt_vreg_data:1256 number of entries is 0 or not present in dts\n[    1.200691] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csiphy was not initialized!\n[    1.200748] msm_camera_get_dt_vreg_data:1256 number of entries is 0 or not present in dts\n[    1.201102] msm_camera_get_dt_vreg_data:1256 number of entries is 0 or not present in dts\n[    1.201110] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    1.201263] msm_camera_get_dt_vreg_data:1256 number of entries is 0 or not present in dts\n[    1.201271] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    1.201423] msm_camera_get_dt_vreg_data:1256 number of entries is 0 or not present in dts\n[    1.201432] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    1.201750] msm_actuator_platform_probe:2030 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    1.201756] msm 1b00000.qcom,msm-cam: Entity type for entity msm_actuator was not initialized!\n[    1.202270] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    1.250256] msm_cci_init:1460: hw_version = 0x10020004\n[    1.499554] match id for s5k3l8_ofilm module_id=7\n[    1.546942] msm 1b00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    1.547251] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    1.589080] msm_cci_init:1460: hw_version = 0x10020004\n[    1.662995] match id for ov5675_ofilm module_id=7\n[    1.704295] msm 1b00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    1.704573] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    1.756093] msm_cci_init:1460: hw_version = 0x10020004\n[    2.005368] match id for s5k3l8_sunny module_id=7\n[    2.005370] msm_eeprom_platform_probe match id for s5k3l8_sunny failed\n[    2.056507] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    2.098743] msm_cci_init:1460: hw_version = 0x10020004\n[    2.099191] msm_cci_irq:1812 MASTER_0 error 0x8000000\n[    2.590046] msm_cci_wait: 312 wait for queue: 0\n[    2.590059] msm_cci_transfer_end: 559 failed rc -110\n[    2.590061] msm_cci_data_queue: 819 failed rc -110\n[    2.590064] msm_camera_cci_i2c_write: line 144 rc = -110\n[    2.610029] read_eeprom_memory: page write failed\n[    2.610031] msm_eeprom_platform_probe read_eeprom_memory failed\n[    2.651333] qcom,eeprom: probe of 1b0c000.qcom,cci:qcom,eeprom@3 failed with error -110\n[    2.651555] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    2.703911] msm_cci_init:1460: hw_version = 0x10020004\n[    2.953188] match id for ov13855_sunny module_id=7\n[    2.953190] msm_eeprom_platform_probe match id for ov13855_sunny failed\n[    3.004836] msm_flash_get_dt_data:1044 flash_driver_type 0\n[    3.004856] msm_flash_get_dt_data:1072 No valid flash GPIOs data\n[    3.004862] msm 1b00000.qcom,msm-cam: Entity type for entity msm_camera_flash was not initialized!\n[    3.005407] adp1660 i2c_add_driver success\n[    3.005779] msm 1b00000.qcom,msm-cam: Entity type for entity msm_sensor_init was not initialized!\n[    3.006160] msm_camera_get_dt_gpio_set_tbl failed 825\n[    3.006364] msm_camera_get_dt_gpio_set_tbl failed 825\n[    3.009344] MSM-CPP cpp_init_hardware:1017 CPP HW Version: 0x40030002\n[    3.009349] MSM-CPP cpp_init_hardware:1035 stream_cnt:0\n[    3.009356] msm 1b00000.qcom,msm-cam: Entity type for entity 1b04000.qcom,cpp was not initialized!\n[    3.011410] CAM-SOC msm_camera_get_reg_base:787 err: mem resource vfe_fuse not found\n[    3.011413] CAM-SOC msm_camera_get_res_size:830 err: mem resource vfe_fuse not found\n[    3.011601] msm 1b00000.qcom,msm-cam: Entity type for entity 1b10000.qcom,vfe0 was not initialized!\n[    3.011709] CAM-SOC msm_camera_get_reg_base:787 err: mem resource vfe_fuse not found\n[    3.011711] CAM-SOC msm_camera_get_res_size:830 err: mem resource vfe_fuse not found\n[    3.011836] msm 1b00000.qcom,msm-cam: Entity type for entity 1b14000.qcom,vfe1 was not initialized!\n[    3.012443] msm 1b00000.qcom,msm-cam: Entity type for entity 1b31000.qcom,ispif was not initialized!\n[    3.012748] __msm_jpeg_init:1537] Jpeg Device id 0\n[    3.012895] CHRDEV \"jpeg0\" major number 228 goes below the dynamic allocation range\n[    3.013010] msm 1b00000.qcom,msm-cam: Entity type for entity msm_buf_mngr was not initialized!\n[    3.013762] FG: fg_check_ima_exception: Initial ima_err_sts=0 ima_exp_sts=0 ima_hw_sts=22\n[    3.015358] FG: fg_probe: FG Probe success - FG Revision DIG:3.1 ANA:1.2 PMIC subtype=17\n[    3.016694] thermal thermal_zone0: failed to read out thermal zone (-517)\n[    3.016869] thermal thermal_zone1: failed to read out thermal zone (-517)\n[    3.016960] thermal thermal_zone2: failed to read out thermal zone (-517)\n[    3.017256] qpnp_vadc_read: no vadc_chg_vote found\n[    3.017259] qpnp_vadc_get_temp: VADC read error with -22\n[    3.017263] thermal thermal_zone34: failed to read out thermal zone (-22)\n[    3.039546] device-mapper: uevent: version 1.0.3\n[    3.039676] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com\n[    3.040767] device-mapper: req-crypt: dm-req-crypt successfully initalized.\n\n[    3.041083] CHRDEV \"bt\" major number 227 goes below the dynamic allocation range\n[    3.041170] sdhci: Secure Digital Host Controller Interface driver\n[    3.041172] sdhci: Copyright(c) Pierre Ossman\n[    3.041174] sdhci-pltfm: SDHCI platform and OF driver helper\n[    3.041720] i2c-msm-v2 78b6000.i2c: msm_bus_scale_register_client(mstr-id:86):0x14 (ok)\n[    3.043999] qcom,leds-qpnp: probe of 200f000.qcom,spmi:qcom,pmi8950@2:qcom,leds@a100 failed with error -10\n[    3.044575] sdhci_msm 7824900.sdhci: failed opening nvmem cell err : -2\n[    3.044583] qcom_ice_get_pdevice: found ice device ffffffc0ae31ae00\n[    3.044585] qcom_ice_get_pdevice: matching platform device ffffffc0b0146400\n[    3.044801] sdhci_msm 7824900.sdhci: Failed to get dll hsr settings from dt\n[    3.046067] usbcore: registered new interface driver usbhid\n[    3.046069] usbhid: USB HID core driver\n[    3.046202] ashmem: initialized\n[    3.046372] qpnp_coincell_charger_show_state: enabled=Y, voltage=3200 mV, resistance=2100 ohm\n[    3.049302] qcom_ice 7803000.sdcc1ice: QC ICE 2.1.44 device found @0xffffff800b768000\n[    3.050093] mmc0: SDHCI controller on 7824900.sdhci [7824900.sdhci] using 64-bit ADMA in CMDQ mode\n[    3.156754] mmc0: Out-of-interrupt timeout is 100[ms]\n[    3.156758] mmc0: eMMC FW version: 0x03\n[    3.156760] mmc0: CMDQ supported: depth: 32\n[    3.156762] mmc0: cache barrier support 1 flush policy 1\n[    3.162723] cmdq_host_alloc_tdl: desc_size: 768 data_sz: 63488 slot-sz: 24\n[    3.162855] mmc0: CMDQ enabled on card\n[    3.162864] mmc0: new HS400 Enhanced strobe MMC card at address 0001\n[    3.165302] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0xf) latency=-1\n[    3.165306] sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xf0) latency=-1\n[    3.165377] mmcblk0: mmc0:0001 032G32 29.1 GiB \n[    3.166541] mmcblk0rpmb: mmc0:0001 032G32 partition 3 4.00 MiB\n[    3.168763]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42 p43 p44 p45 p46 p47 p49 p50\n[    3.174427] sdhci_msm 7864900.sdhci: failed opening nvmem cell err : -2\n[    3.174435] sdhci_msm 7864900.sdhci: sdhci_msm_probe: ICE device is not enabled\n[    3.174662] sdhci_msm 7864900.sdhci: Failed to get dll hsr settings from dt\n[    3.187344] mmc1: SDHCI controller on 7864900.sdhci [7864900.sdhci] using 64-bit ADMA in legacy mode\n[    3.217169] bimc-bwmon 408000.qcom,cpu-bwmon: BW HWmon governor registered.\n[    3.220725] CHRDEV \"sensors\" major number 226 goes below the dynamic allocation range\n[    3.221047] usbcore: registered new interface driver snd-usb-audio\n[    3.221443] tz_log 8600720.tz-log: Hyp log service is not supported\n[    3.223361] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.241573] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx group_id: 0x9100\n[    3.241761] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0 dev_id: 0x9000\n[    3.241771] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.241796] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx group_id: 0x9101\n[    3.241976] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0 dev_id: 0x9001\n[    3.241988] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.242012] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx group_id: 0x9110\n[    3.242190] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0 dev_id: 0x9010\n[    3.242198] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.242222] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx group_id: 0x9111\n[    3.242400] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0 dev_id: 0x9011\n[    3.242409] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.242432] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx group_id: 0x9120\n[    3.242616] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0 dev_id: 0x9020\n[    3.242625] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.242650] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx group_id: 0x9121\n[    3.242827] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0 dev_id: 0x9021\n[    3.242836] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.242860] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx group_id: 0x9130\n[    3.243041] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0 dev_id: 0x9030\n[    3.243049] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.243072] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx group_id: 0x9131\n[    3.243251] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0 dev_id: 0x9031\n[    3.243260] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.243284] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx group_id: 0x9140\n[    3.243464] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0 dev_id: 0x9040\n[    3.243473] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.243496] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx group_id: 0x9141\n[    3.243674] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0 dev_id: 0x9041\n[    3.243683] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.247194] msm8952_asoc_machine_probe: request landtoni_spk_pa_gpio  fail!\n[    3.247197] msm8952_asoc_machine_probe: [hjf] request landtoni_spk_pa_gpio is 124!\n[    3.247209] msm8952_asoc_machine_probe: [hjf] request landtoni_headset_gpio is 129!\n[    3.247228] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.247233] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.247240] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.247244] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.247255] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.247837] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.247842] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.250264] CHRDEV \"avtimer\" major number 224 goes below the dynamic allocation range\n[    3.250675] audio_notifier_init: PDR register failed, ret = -19, disable service\n[    3.252006] audio_notifer_reg_service: service SSR_ADSP is in use\n[    3.252010] audio_notifer_reg_service: service SSR_MODEM is in use\n[    3.253195] u32 classifier\n[    3.253197]     Actions configured\n[    3.253202] Netfilter messages via NETLINK v0.30.\n[    3.253359] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    3.253470] ctnetlink v0.93: registering with nfnetlink.\n[    3.253789] xt_time: kernel timezone is -0000\n[    3.253864] gre: GRE over IPv4 demultiplexor driver\n[    3.253866] IPv4 over IPsec tunneling driver\n[    3.254207] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    3.254383] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    3.254411] Initializing XFRM netlink socket\n[    3.254422] IPsec XFRM device driver\n[    3.254652] NET: Registered protocol family 10\n[    3.256413] mip6: Mobile IPv6\n[    3.256424] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    3.256823] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    3.257391] NET: Registered protocol family 17\n[    3.257403] NET: Registered protocol family 15\n[    3.257420] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.\n[    3.257422] Ebtables v2.0 registered\n[    3.257478] l2tp_core: L2TP core driver, V2.0\n[    3.257485] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    3.257487] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    3.257496] l2tp_netlink: L2TP netlink interface\n[    3.257520] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    3.257521] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    3.257619] sctp: Hash tables configured (bind 256/256)\n[    3.258394] NET: Registered protocol family 27\n[    3.262043] minidump-id not found for adsp\n[    3.264619] subsys-pil-tz c200000.qcom,lpass: for adsp segments only will be dumped.\n[    3.266062] minidump-id not found for wcnss\n[    3.266174] subsys-pil-tz a21b000.qcom,pronto: for wcnss segments only will be dumped.\n[    3.266685] minidump-id not found for modem\n[    3.266973] pil-q6v5-mss 4080000.qcom,mss: for modem segments only will be dumped.\n[    3.267019] pil-q6v5-mss 4080000.qcom,mss: for md_modem segments only will be dumped.\n[    3.267165] Unable to get vbus_otg\n[    3.267170] msm_hsusb_host msm_hsusb_host: unable to register with transceiver\n[    3.267536] SMBCHG: santoni_get_version_change_current: Normal version!\n[    3.267983] SMBCHG: smbchg_hvdcp_enable_cb: smbchg_hvdcp_enable_cb HVDCP enabled\n[    3.274437] qpnp-smbcharger 200f000.qcom,spmi:qcom,pmi8950@2:qcom,qpnp-smbcharger: SMBCHG successfully probe Charger version=SCHG_LITE Revision DIG:0.0 ANA:0.1 batt=1 dc=0 usb=0\n[    3.274696] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.275216] msm8952_asoc_machine_probe: request landtoni_spk_pa_gpio  fail!\n[    3.275219] msm8952_asoc_machine_probe: [hjf] request landtoni_spk_pa_gpio is 124!\n[    3.275223] msm8952_asoc_machine_probe: request landtoni_headset_gpio fail!\n[    3.275225] msm8952_asoc_machine_probe: [hjf] request landtoni_headset_gpio is 129!\n[    3.275244] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.275249] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.275256] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.275260] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.275271] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.275890] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.275896] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.276359] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.276797] msm8952_asoc_machine_probe: request landtoni_spk_pa_gpio  fail!\n[    3.276799] msm8952_asoc_machine_probe: [hjf] request landtoni_spk_pa_gpio is 124!\n[    3.276802] msm8952_asoc_machine_probe: request landtoni_headset_gpio fail!\n[    3.276804] msm8952_asoc_machine_probe: [hjf] request landtoni_headset_gpio is 129!\n[    3.276816] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.276821] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.276827] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.276832] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.276841] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.277364] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.277369] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.278130] Registered cp15_barrier emulation handler\n[    3.278141] Registered setend emulation handler\n[    3.278168] core_ctl: Creating CPU group 0\n[    3.278170] core_ctl: Init CPU0 state\n[    3.278171] core_ctl: Init CPU1 state\n[    3.278173] core_ctl: Init CPU2 state\n[    3.278174] core_ctl: Init CPU3 state\n[    3.278300] core_ctl: Creating CPU group 4\n[    3.278302] core_ctl: Init CPU4 state\n[    3.278303] core_ctl: Init CPU5 state\n[    3.278305] core_ctl: Init CPU6 state\n[    3.278306] core_ctl: Init CPU7 state\n[    3.278623] registered taskstats version 1\n[    3.278634] Loading compiled-in X.509 certificates\n[    3.279573] msm_otg 78db000.usb: phy_reset: success\n[    3.284864] Loaded X.509 cert 'Build time autogenerated kernel key: a730b630371b3809066d53ed6ee20d1ebea9b872'\n[    3.286276] qcom,cc-debug-8952 1874000.qcom,cc-debug: Registered Debug Mux successfully\n[    3.292046] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb to group 11\n[    3.293197] CHRDEV \"adsprpc-smd\" major number 223 goes below the dynamic allocation range\n[    3.293512] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.294002] msm8952_asoc_machine_probe: request landtoni_spk_pa_gpio  fail!\n[    3.294005] msm8952_asoc_machine_probe: [hjf] request landtoni_spk_pa_gpio is 124!\n[    3.294009] msm8952_asoc_machine_probe: request landtoni_headset_gpio fail!\n[    3.294011] msm8952_asoc_machine_probe: [hjf] request landtoni_headset_gpio is 129!\n[    3.294028] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.294033] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.294040] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.294045] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.294055] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.294664] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.294669] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.296089] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    3.296581] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.297058] msm8952_asoc_machine_probe: request landtoni_spk_pa_gpio  fail!\n[    3.297060] msm8952_asoc_machine_probe: [hjf] request landtoni_spk_pa_gpio is 124!\n[    3.297064] msm8952_asoc_machine_probe: request landtoni_headset_gpio fail!\n[    3.297066] msm8952_asoc_machine_probe: [hjf] request landtoni_headset_gpio is 129!\n[    3.297081] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.297086] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.297092] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.297097] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.297107] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.297668] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.297673] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.297912] input: dt2w_pwrkey as /devices/virtual/input/input4\n[    3.297974] [doubletap2wake]: doubletap2wake_init done\n[    3.298095] qcom,qpnp-rtc 200f000.qcom,spmi:qcom,pm8937@0:qcom,pm8937_rtc: setting system clock to 1970-01-24 02:30:49 UTC (1996249)\n[    3.299745] lpm_levels_of: idx 1 900\n[    3.299838] lpm_levels_of: Residency < 0 for LPM\n[    3.299840] lpm_levels_of: idx 1 400\n[    3.300478] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.301008] msm8952_asoc_machine_probe: request landtoni_spk_pa_gpio  fail!\n[    3.301011] msm8952_asoc_machine_probe: [hjf] request landtoni_spk_pa_gpio is 124!\n[    3.301015] msm8952_asoc_machine_probe: request landtoni_headset_gpio fail!\n[    3.301017] msm8952_asoc_machine_probe: [hjf] request landtoni_headset_gpio is 129!\n[    3.301033] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.301038] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.301045] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.301049] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.301060] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.301656] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.301661] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.301899] lpm_levels: register_cluster_lpm_stats()\n[    3.302073] lpm_levels: register_cluster_lpm_stats()\n[    3.304232] qcom,qpnp-flash-led 200f000.qcom,spmi:qcom,pmi8950@3:qcom,leds@d300: Unable to acquire pinctrl\n[    3.306019] rmnet_ipa started initialization\n[    3.306022] IPA SSR support = True\n[    3.306024] IPA ipa-loaduC = True\n[    3.306026] IPA SG support = True\n[    3.306028] IPA Napi Enable = False\n[    3.306030] using default for wan-rx-desc-size = 1024\n[    3.306496] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.307038] msm8952_asoc_machine_probe: request landtoni_spk_pa_gpio  fail!\n[    3.307041] msm8952_asoc_machine_probe: [hjf] request landtoni_spk_pa_gpio is 124!\n[    3.307044] msm8952_asoc_machine_probe: request landtoni_headset_gpio fail!\n[    3.307046] msm8952_asoc_machine_probe: [hjf] request landtoni_headset_gpio is 129!\n[    3.307063] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.307068] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.307075] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.307079] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.307090] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.307685] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.307691] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.313130] CHRDEV \"wwan_ioctl\" major number 222 goes below the dynamic allocation range\n[    3.314749] ipa ipa_sps_irq_control_all:963 EP (5) not allocated.\n[    3.314754] ipa ipa2_uc_state_check:302 uC is not loaded\n[    3.315254] rmnet_ipa completed initialization\n[    3.315525] RNDIS_IPA module is loaded.\n[    3.315536] clock_late_init: Removing enables held for handed-off clocks\n[    3.315793] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.316305] msm8952_asoc_machine_probe: request landtoni_spk_pa_gpio  fail!\n[    3.316307] msm8952_asoc_machine_probe: [hjf] request landtoni_spk_pa_gpio is 124!\n[    3.316311] msm8952_asoc_machine_probe: request landtoni_headset_gpio fail!\n[    3.316313] msm8952_asoc_machine_probe: [hjf] request landtoni_headset_gpio is 129!\n[    3.316329] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.316334] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.316341] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.316346] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.316356] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.316937] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.316942] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.320576] mem_acc_corner: disabling\n[    3.320600] adv_vreg: disabling\n[    3.320620] ALSA device list:\n[    3.320621]   No soundcards found.\n[    3.320679] Warning: unable to open an initial console.\n[    3.322439] Freeing unused kernel memory: 6144K\n[    3.392040] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.392636] msm8952_asoc_machine_probe: request landtoni_spk_pa_gpio  fail!\n[    3.392639] msm8952_asoc_machine_probe: [hjf] request landtoni_spk_pa_gpio is 124!\n[    3.392643] msm8952_asoc_machine_probe: request landtoni_headset_gpio fail!\n[    3.392645] msm8952_asoc_machine_probe: [hjf] request landtoni_headset_gpio is 129!\n[    3.392665] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.392670] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.392677] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.392682] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.392693] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.393312] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.393318] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.395202] msm_otg 78db000.usb: USB in low power mode\n[    4.569858] FG: fg_batt_profile_init: wingtech later init FG_DATA_BATT_ID =67293\n[    4.626499] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    4.626695] cpu1 \n[    4.626761] cpu4 \n[    4.626816] \n               Offline CPUs: \n[    4.631142] cpu1 \n[    4.653522] cpu2 \n[    4.705432] cpu3 \n[    4.755350] cpu4 \n[    4.806306] cpu5 \n[    4.855537] cpu6 \n[    4.905221] cpu7 \n\n[    6.561601] FG: fg_batt_profile_init: wingtech later init FG_DATA_BATT_ID =67293\n[    6.561837] of_batterydata_get_best_profile: qrd_msm8937_Atl_4100mah found\n[    6.577652] FG: fg_batt_profile_init: Battery SOC: 73, V: 3929420uV\n[    6.577934] of_batterydata_get_best_profile: qrd_msm8937_Atl_4100mah found\n[    9.962623] Sampling power every 1000 ms\n               Baseline power usage: \n[   85.073197] CPU1: Booted secondary processor [410fd034]\n[   86.078666] 786 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 960 1094 1248 1344 1401 1497\n               \n                960: \n[  175.344158]  3117     3.2 C/MHz    231 mW   18.5 J   13.5 I/mJ    80.2 s\n               1094: \n[  254.591100]  3554     3.2 C/MHz    279 mW   19.6 J   12.7 I/mJ    70.4 s\n               1248: \n[  324.822223]  4051     3.2 C/MHz    388 mW   23.9 J   10.5 I/mJ    61.7 s\n               1344: \n[  391.039074]  4365     3.2 C/MHz    437 mW   25.0 J   10.0 I/mJ    57.3 s\n               1401: \n[  400.576585] FG: santoni_battery_age_work: wingtech battery_age_work count_error=0\n[  400.577409] FG: santoni_battery_age_work: REG[560]=2e fa e8 ff,vin_error=ffe8fa2e\n[  454.248984]  4551     3.2 C/MHz    465 mW   25.6 J    9.8 I/mJ    54.9 s\n               1497: \n[  517.486774] CPU4: Booted secondary processor [410fd034]\n[  518.493673]  4551     3.0 C/MHz    476 mW   26.1 J    9.6 I/mJ    54.9 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 768 902 998 1094 1209\n               \n                768: \n[  627.876152]  2494     3.2 C/MHz    179 mW   17.9 J   14.0 I/mJ   100.3 s\n                902: \n[  722.196447]  2927     3.2 C/MHz    222 mW   18.9 J   13.2 I/mJ    85.4 s\n                998: \n[  807.493179]  3242     3.2 C/MHz    302 mW   23.3 J   10.7 I/mJ    77.1 s\n               1094: \n[  879.895675] FG: santoni_battery_age_work: wingtech battery_age_work count_error=0\n[  879.896683] FG: santoni_battery_age_work: REG[560]=d2 97 e6 ff,vin_error=ffe697d2\n[  886.778339]  3554     3.2 C/MHz    354 mW   24.9 J   10.0 I/mJ    70.4 s\n               1209: \n[  959.078395]  3928     3.2 C/MHz    376 mW   24.0 J   10.4 I/mJ    63.7 s\n               \n               \n               Benchmark finished!\n[  959.114781] \n               real\t15m55.642s\n               user\t12m57.847s\n               sys\t0m0.325s\n"
  },
  {
    "path": "results/msm8940/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  1:      17295     GIC-0 203 Edge      mpm\n  4:      54664   mpm-gic  20 Level     arch_timer\n  6:     102471   mpm-gic  39 Level     arch_mem_timer\n 16:          0   mpm-gic  86 Level     arm-smmu-context-fault\n 17:          0   mpm-gic  90 Level     arm-smmu-context-fault\n 18:          0   mpm-gic  92 Level     arm-smmu-context-fault\n 29:          0   mpm-gic 138 Level     arm-smmu-context-fault\n 34:          0   mpm-gic 145 Level     arm-smmu-context-fault\n 44:          0   mpm-gic  59 Edge      smp2p\n 45:          0   mpm-gic 175 Edge      smp2p\n 46:          0   mpm-gic 323 Edge      smp2p\n 47:         78   mpm-gic 224 Level     spdm_bw_hyp\n 48:          0   mpm-gic  76 Level     msm_vidc\n 49:          0   mpm-gic  65 Level     kgsl-3d0\n 50:          0   mpm-gic 104 Edge      MDSS\n 52:          0   mpm-gic 216 Level     tsens-upper-lower\n 56:          7   mpm-gic 128 Level     i2c-msm-v2-irq\n 57:         14   mpm-gic 129 Level     i2c-msm-v2-irq\n 59:          0   mpm-gic  57 Edge      qcom,smd-modem\n 60:          0   mpm-gic  58 Edge      qcom,smsm-modem\n 61:          0   mpm-gic 174 Edge      qcom,smd-wcnss\n 62:          0   mpm-gic 176 Edge      qcom,smsm-wcnss\n 63:          0   mpm-gic 321 Edge      qcom,smd-adsp\n 64:          0   mpm-gic 322 Edge      qcom,smsm-adsp\n 65:        619   mpm-gic 200 Edge      qcom,smd-rpm\n 66:          0   mpm-gic 166 Edge      msm_otg, msm_hsusb\n 67:          0   mpm-gic 172 Edge      msm_otg\n 68:          0   mpm-gic  35 Edge      apps_wdog_bark\n 85:          0  pmic_arb 8388655 Edge      qpnp_kpdpwr_status\n 86:          0  pmic_arb 8454191 Edge      qpnp_resin_status\n 89:          0  pmic_arb 37748779 Edge      pm8937_tz\n101:          0  pmic_arb 54722612 Edge      qpnp_adc_tm_high_interrupt\n102:          0  pmic_arb 54788148 Edge      qpnp_adc_tm_low_interrupt\n112:          0  pmic_arb 1031929862 Edge      qpnp_wled_sc_irq\n113:          0  pmic_arb 1006632968 Edge      haptics_sc_irq\n114:          0  pmic_arb 1006698504 Edge      haptics_play_irq\n115:          0   mpm-gic 344 Edge      7803000.sdcc1ice\n117:         90   mpm-gic 155 Edge      mmc0\n118:          3   mpm-gic 170 Edge      7824900.sdhci\n119:         13   mpm-gic 157 Edge      mmc1\n120:          2   mpm-gic 253 Edge      7864900.sdhci\n121:          0   mpm-gic 239 Level     sps\n122:          0   mpm-gic  56 Edge      modem\n123:          0   mpm-gic 325 Edge      adsp\n124:          0   mpm-gic 181 Edge      wcnss\n127:          0   mpm-gic  47 Edge      cpr\n128:          0   mpm-gic 110 Edge      csiphy\n129:          0   mpm-gic 111 Edge      csiphy\n130:          0   mpm-gic  83 Edge      csid\n131:          0   mpm-gic  84 Edge      csid\n132:          0   mpm-gic 185 Edge      csid\n133:          0   mpm-gic  87 Edge      ispif\n134:          0   mpm-gic  89 Edge      vfe\n135:          0   mpm-gic  61 Edge      vfe\n138:        526   mpm-gic  82 Edge      cci\n140:          0   mpm-gic 260 Edge      ipa\n141:         18   mpm-gic 262 Level     sps\n271:          0   msmgpio  65 Edge      ft5x06_720p\n272:          0  pmic_arb 101777448 Edge      qpnp_rtc_alarm\n273:          0  pmic_arb 604110881 Edge      full-soc\n274:          0  pmic_arb 604176417 Edge      empty-soc\n275:          2  pmic_arb 604241953 Edge      delta-soc\n276:          0  pmic_arb 604307489 Edge      first-est-done\n277:          0  pmic_arb 605028384 Edge      soft-cold\n278:          0  pmic_arb 605093920 Edge      soft-hot\n279:          0  pmic_arb 605421600 Edge      batt-missing\n280:          0  pmic_arb 605159456 Edge      vbatt-low\n281:      55935  pmic_arb 608174109 Edge      mem-avail\n282:          0   msmgpio  67 Edge      7864900.sdhci cd\n283:          0  smp2p_gpio   0 Edge      modem\n284:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n285:          0  smp2p_gpio   2 Edge      modem\n286:          0  smp2p_gpio   3 Edge      modem\n315:          0  smp2p_gpio   0 Edge      adsp\n316:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n317:          0  smp2p_gpio   2 Edge      adsp\n318:          0  smp2p_gpio   3 Edge      adsp\n347:          0  smp2p_gpio   0 Edge      wcnss\n348:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n349:          0  smp2p_gpio   2 Edge      wcnss\n350:          0  smp2p_gpio   3 Edge      wcnss\n379:          0  pmic_arb 553648167 Edge      chg-error\n380:          0  pmic_arb 554041383 Edge      chg-taper-thr\n381:          0  pmic_arb 554106919 Edge      chg-tcc-thr\n382:          0  pmic_arb 553975847 Edge      chg-rechg-thr\n383:          0  pmic_arb 553910311 Edge      chg-p2f-thr\n384:          0  pmic_arb 554893350 Edge      usbid-change\n385:          0  pmic_arb 554762278 Edge      otg-oc\n386:          0  pmic_arb 554696742 Edge      otg-fail\n387:          0  pmic_arb 555745298 Edge      batt-hot\n388:          0  pmic_arb 555810834 Edge      batt-warm\n389:          0  pmic_arb 555941906 Edge      batt-cool\n390:          0  pmic_arb 555876370 Edge      batt-cold\n391:          0  pmic_arb 556138514 Edge      batt-missing\n392:          0  pmic_arb 556072978 Edge      batt-low\n393:          0  pmic_arb 556793873 Edge      usbin-uv\n394:          0  pmic_arb 556859409 Edge      usbin-ov\n395:          0  pmic_arb 556924945 Edge      usbin-src-det\n396:          0  pmic_arb 557121553 Edge      aicl-done\n397:          0  pmic_arb 557842448 Edge      dcin-uv\n398:          0  pmic_arb 559939599 Edge      power-ok\n399:          0  pmic_arb 560005135 Edge      temp-shutdown\n400:          0  pmic_arb 560070671 Edge      wdog-timeout\n401:          0   msmgpio  91 Edge      volume_up\nIPI0:       119       Rescheduling interrupts\nIPI1:        14       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         1       Timer broadcast interrupts\nIPI4:     47575       IRQ work interrupts\nIPI5:         0       CPU wake-up interrupts\nIPI6:         0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/msm8940/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  1:          0          0          0          0          0          0          0          0     GIC-0 203 Edge      mpm\n  4:        806          1          1          1          1          1          1          1   mpm-gic  20 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   mpm-gic  39 Level     arch_mem_timer\n 16:          0          0          0          0          0          0          0          0   mpm-gic  86 Level     arm-smmu-context-fault\n 17:          0          0          0          0          0          0          0          0   mpm-gic  90 Level     arm-smmu-context-fault\n 18:          0          0          0          0          0          0          0          0   mpm-gic  92 Level     arm-smmu-context-fault\n 29:          0          0          0          0          0          0          0          0   mpm-gic 138 Level     arm-smmu-context-fault\n 34:          0          0          0          0          0          0          0          0   mpm-gic 145 Level     arm-smmu-context-fault\n 44:          0          0          0          0          0          0          0          0   mpm-gic  59 Edge      smp2p\n 45:          0          0          0          0          0          0          0          0   mpm-gic 175 Edge      smp2p\n 46:          0          0          0          0          0          0          0          0   mpm-gic 323 Edge      smp2p\n 47:         25          0          0          0          0          0          0          0   mpm-gic 224 Level     spdm_bw_hyp\n 48:          0          0          0          0          0          0          0          0   mpm-gic  76 Level     msm_vidc\n 49:          0          0          0          0          0          0          0          0   mpm-gic  65 Level     kgsl-3d0\n 50:          0          0          0          0          0          0          0          0   mpm-gic 104 Edge      MDSS\n 52:          0          0          0          0          0          0          0          0   mpm-gic 216 Level     tsens-upper-lower\n 56:          7          0          0          0          0          0          0          0   mpm-gic 128 Level     i2c-msm-v2-irq\n 57:         14          0          0          0          0          0          0          0   mpm-gic 129 Level     i2c-msm-v2-irq\n 59:          0          0          0          0          0          0          0          0   mpm-gic  57 Edge      qcom,smd-modem\n 60:          0          0          0          0          0          0          0          0   mpm-gic  58 Edge      qcom,smsm-modem\n 61:          0          0          0          0          0          0          0          0   mpm-gic 174 Edge      qcom,smd-wcnss\n 62:          0          0          0          0          0          0          0          0   mpm-gic 176 Edge      qcom,smsm-wcnss\n 63:          0          0          0          0          0          0          0          0   mpm-gic 321 Edge      qcom,smd-adsp\n 64:          0          0          0          0          0          0          0          0   mpm-gic 322 Edge      qcom,smsm-adsp\n 65:        463          0          0          0          0          0          0          0   mpm-gic 200 Edge      qcom,smd-rpm\n 66:          0          0          0          0          0          0          0          0   mpm-gic 166 Edge      msm_otg, msm_hsusb\n 67:          0          0          0          0          0          0          0          0   mpm-gic 172 Edge      msm_otg\n 68:          0          0          0          0          0          0          0          0   mpm-gic  35 Edge      apps_wdog_bark\n 85:          0          0          0          0          0          0          0          0  pmic_arb 8388655 Edge      qpnp_kpdpwr_status\n 86:          0          0          0          0          0          0          0          0  pmic_arb 8454191 Edge      qpnp_resin_status\n 89:          0          0          0          0          0          0          0          0  pmic_arb 37748779 Edge      pm8937_tz\n101:          0          0          0          0          0          0          0          0  pmic_arb 54722612 Edge      qpnp_adc_tm_high_interrupt\n102:          0          0          0          0          0          0          0          0  pmic_arb 54788148 Edge      qpnp_adc_tm_low_interrupt\n112:          0          0          0          0          0          0          0          0  pmic_arb 1031929862 Edge      qpnp_wled_sc_irq\n113:          0          0          0          0          0          0          0          0  pmic_arb 1006632968 Edge      haptics_sc_irq\n114:          0          0          0          0          0          0          0          0  pmic_arb 1006698504 Edge      haptics_play_irq\n115:          0          0          0          0          0          0          0          0   mpm-gic 344 Edge      7803000.sdcc1ice\n117:         79          0          0          0          0          0          0          0   mpm-gic 155 Edge      mmc0\n118:          2          0          0          0          0          0          0          0   mpm-gic 170 Edge      7824900.sdhci\n119:         13          0          0          0          0          0          0          0   mpm-gic 157 Edge      mmc1\n120:          2          0          0          0          0          0          0          0   mpm-gic 253 Edge      7864900.sdhci\n121:          0          0          0          0          0          0          0          0   mpm-gic 239 Level     sps\n122:          0          0          0          0          0          0          0          0   mpm-gic  56 Edge      modem\n123:          0          0          0          0          0          0          0          0   mpm-gic 325 Edge      adsp\n124:          0          0          0          0          0          0          0          0   mpm-gic 181 Edge      wcnss\n127:          0          0          0          0          0          0          0          0   mpm-gic  47 Edge      cpr\n128:          0          0          0          0          0          0          0          0   mpm-gic 110 Edge      csiphy\n129:          0          0          0          0          0          0          0          0   mpm-gic 111 Edge      csiphy\n130:          0          0          0          0          0          0          0          0   mpm-gic  83 Edge      csid\n131:          0          0          0          0          0          0          0          0   mpm-gic  84 Edge      csid\n132:          0          0          0          0          0          0          0          0   mpm-gic 185 Edge      csid\n133:          0          0          0          0          0          0          0          0   mpm-gic  87 Edge      ispif\n134:          0          0          0          0          0          0          0          0   mpm-gic  89 Edge      vfe\n135:          0          0          0          0          0          0          0          0   mpm-gic  61 Edge      vfe\n138:        526          0          0          0          0          0          0          0   mpm-gic  82 Edge      cci\n140:          0          0          0          0          0          0          0          0   mpm-gic 260 Edge      ipa\n141:         18          0          0          0          0          0          0          0   mpm-gic 262 Level     sps\n271:          0          0          0          0          0          0          0          0   msmgpio  65 Edge      ft5x06_720p\n272:          0          0          0          0          0          0          0          0  pmic_arb 101777448 Edge      qpnp_rtc_alarm\n273:          0          0          0          0          0          0          0          0  pmic_arb 604110881 Edge      full-soc\n274:          0          0          0          0          0          0          0          0  pmic_arb 604176417 Edge      empty-soc\n275:          0          0          0          0          0          0          0          0  pmic_arb 604241953 Edge      delta-soc\n276:          0          0          0          0          0          0          0          0  pmic_arb 604307489 Edge      first-est-done\n277:          0          0          0          0          0          0          0          0  pmic_arb 605028384 Edge      soft-cold\n278:          0          0          0          0          0          0          0          0  pmic_arb 605093920 Edge      soft-hot\n279:          0          0          0          0          0          0          0          0  pmic_arb 605421600 Edge      batt-missing\n280:          0          0          0          0          0          0          0          0  pmic_arb 605159456 Edge      vbatt-low\n281:        113          0          0          0          0          0          0          0  pmic_arb 608174109 Edge      mem-avail\n282:          0          0          0          0          0          0          0          0   msmgpio  67 Edge      7864900.sdhci cd\n283:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      modem\n284:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n285:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      modem\n286:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      modem\n315:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      adsp\n316:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n317:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      adsp\n318:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      adsp\n347:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      wcnss\n348:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n349:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      wcnss\n350:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      wcnss\n379:          0          0          0          0          0          0          0          0  pmic_arb 553648167 Edge      chg-error\n380:          0          0          0          0          0          0          0          0  pmic_arb 554041383 Edge      chg-taper-thr\n381:          0          0          0          0          0          0          0          0  pmic_arb 554106919 Edge      chg-tcc-thr\n382:          0          0          0          0          0          0          0          0  pmic_arb 553975847 Edge      chg-rechg-thr\n383:          0          0          0          0          0          0          0          0  pmic_arb 553910311 Edge      chg-p2f-thr\n384:          0          0          0          0          0          0          0          0  pmic_arb 554893350 Edge      usbid-change\n385:          0          0          0          0          0          0          0          0  pmic_arb 554762278 Edge      otg-oc\n386:          0          0          0          0          0          0          0          0  pmic_arb 554696742 Edge      otg-fail\n387:          0          0          0          0          0          0          0          0  pmic_arb 555745298 Edge      batt-hot\n388:          0          0          0          0          0          0          0          0  pmic_arb 555810834 Edge      batt-warm\n389:          0          0          0          0          0          0          0          0  pmic_arb 555941906 Edge      batt-cool\n390:          0          0          0          0          0          0          0          0  pmic_arb 555876370 Edge      batt-cold\n391:          0          0          0          0          0          0          0          0  pmic_arb 556138514 Edge      batt-missing\n392:          0          0          0          0          0          0          0          0  pmic_arb 556072978 Edge      batt-low\n393:          0          0          0          0          0          0          0          0  pmic_arb 556793873 Edge      usbin-uv\n394:          0          0          0          0          0          0          0          0  pmic_arb 556859409 Edge      usbin-ov\n395:          0          0          0          0          0          0          0          0  pmic_arb 556924945 Edge      usbin-src-det\n396:          0          0          0          0          0          0          0          0  pmic_arb 557121553 Edge      aicl-done\n397:          0          0          0          0          0          0          0          0  pmic_arb 557842448 Edge      dcin-uv\n398:          0          0          0          0          0          0          0          0  pmic_arb 559939599 Edge      power-ok\n399:          0          0          0          0          0          0          0          0  pmic_arb 560005135 Edge      temp-shutdown\n400:          0          0          0          0          0          0          0          0  pmic_arb 560070671 Edge      wdog-timeout\n401:          0          0          0          0          0          0          0          0   msmgpio  91 Edge      volume_up\nIPI0:        48         12         12         12         11         12         12         12       Rescheduling interrupts\nIPI1:         0          6          6          6          8          6          6          7       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI4:       180          4          4          4          4          4          4          4       IRQ work interrupts\nIPI5:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/msm8940/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [kworker/0:0]\n    4 root      0:00 [kworker/0:0H]\n    5 root      0:01 [kworker/u16:0]\n    6 root      0:00 [ksoftirqd/0]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [lru-add-drain]\n   15 root      0:00 [cpuhp/0]\n   16 root      0:00 [cpuhp/1]\n   17 root      0:00 [migration/1]\n   18 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0H]\n   21 root      0:00 [rcuop/1]\n   22 root      0:00 [rcuos/1]\n   23 root      0:00 [rcuob/1]\n   24 root      0:00 [cpuhp/2]\n   25 root      0:00 [migration/2]\n   26 root      0:00 [ksoftirqd/2]\n   27 root      0:00 [kworker/2:0]\n   28 root      0:00 [kworker/2:0H]\n   29 root      0:00 [rcuop/2]\n   30 root      0:00 [rcuos/2]\n   31 root      0:00 [rcuob/2]\n   32 root      0:00 [cpuhp/3]\n   33 root      0:00 [migration/3]\n   34 root      0:00 [ksoftirqd/3]\n   35 root      0:00 [kworker/3:0]\n   36 root      0:00 [kworker/3:0H]\n   37 root      0:00 [rcuop/3]\n   38 root      0:00 [rcuos/3]\n   39 root      0:00 [rcuob/3]\n   40 root      0:00 [cpuhp/4]\n   41 root      0:00 [migration/4]\n   42 root      0:00 [ksoftirqd/4]\n   43 root      0:00 [kworker/4:0]\n   44 root      0:00 [kworker/4:0H]\n   45 root      0:00 [rcuop/4]\n   46 root      0:00 [rcuos/4]\n   47 root      0:00 [rcuob/4]\n   48 root      0:00 [cpuhp/5]\n   49 root      0:00 [migration/5]\n   50 root      0:00 [ksoftirqd/5]\n   51 root      0:00 [kworker/5:0]\n   52 root      0:00 [kworker/5:0H]\n   53 root      0:00 [rcuop/5]\n   54 root      0:00 [rcuos/5]\n   55 root      0:00 [rcuob/5]\n   56 root      0:00 [cpuhp/6]\n   57 root      0:00 [migration/6]\n   58 root      0:00 [ksoftirqd/6]\n   59 root      0:00 [kworker/6:0]\n   60 root      0:00 [kworker/6:0H]\n   61 root      0:00 [rcuop/6]\n   62 root      0:00 [rcuos/6]\n   63 root      0:00 [rcuob/6]\n   64 root      0:00 [cpuhp/7]\n   65 root      0:00 [migration/7]\n   66 root      0:00 [ksoftirqd/7]\n   67 root      0:00 [kworker/7:0]\n   68 root      0:00 [kworker/7:0H]\n   69 root      0:00 [rcuop/7]\n   70 root      0:00 [rcuos/7]\n   71 root      0:00 [rcuob/7]\n   72 root      0:00 [netns]\n   73 root      0:04 [kworker/0:1]\n   74 root      0:00 [smd_channel_clo]\n   75 root      0:00 [kworker/u17:0]\n   77 root      0:00 [smsm_cb_wq]\n   78 root      0:00 [msm_watchdog]\n   79 root      0:00 [irq/127-cpr]\n   80 root      0:00 [oom_reaper]\n   81 root      0:00 [writeback]\n   82 root      0:00 [kcompactd0]\n   83 root      0:00 [crypto]\n   84 root      0:00 [bioset]\n   85 root      0:00 [kblockd]\n   86 root      0:00 [irq/52-tsens-up]\n   87 root      0:00 [edac-poller]\n   88 root      0:00 [system]\n   89 root      0:00 [devfreq_wq]\n   90 root      0:00 [governor_msm_ad]\n   91 root      0:00 [cfg80211]\n   94 root      0:00 [irq/112-qpnp_wl]\n   95 root      0:00 [ipa_power_mgmt]\n   96 root      0:00 [sps_ipa_power_m]\n   97 root      0:00 [ipawq36]\n   98 root      0:00 [iparepwq36]\n   99 root      0:00 [kworker/u17:1]\n  100 root      0:00 [ipawq33]\n  101 root      0:00 [iparepwq33]\n  102 root      0:00 [ipawq34]\n  103 root      0:00 [iparepwq34]\n  104 root      0:00 [ipa_rm_wq]\n  105 root      0:00 [ipa_interrupt_w]\n  106 root      0:00 [ipa_holb_wq]\n  131 root      0:00 [kswapd0]\n  132 root      0:00 [vmstat]\n  133 root      0:00 [bioset]\n  168 root      0:00 [rot_workq_0]\n  169 root      0:00 [mdss_dsi_event]\n  170 root      0:00 [mdss_dsi_dba]\n  171 root      0:00 [mem_share_svc]\n  172 root      0:00 [qmi_hndl0000000]\n  173 root      0:00 [hwrng]\n  175 root      0:00 [diag_real_time_]\n  176 root      0:00 [msm_ipc_router]\n  177 root      0:00 [diag_wq]\n  179 root      0:00 [DIAG_USB_diag]\n  180 root      0:00 [diag_cntl_wq]\n  181 root      0:00 [diag_dci_wq]\n  182 root      0:00 [DIAG_SMD_MODEM_]\n  183 root      0:00 [DIAG_SMD_MODEM_]\n  184 root      0:00 [DIAG_SMD_MODEM_]\n  185 root      0:00 [DIAG_SMD_MODEM_]\n  186 root      0:00 [DIAG_SMD_MODEM_]\n  187 root      0:00 [DIAG_SMD_LPASS_]\n  188 root      0:00 [DIAG_SMD_LPASS_]\n  189 root      0:00 [DIAG_SMD_LPASS_]\n  190 root      0:00 [DIAG_SMD_LPASS_]\n  191 root      0:00 [DIAG_SMD_LPASS_]\n  192 root      0:00 [DIAG_SMD_WCNSS_]\n  193 root      0:00 [DIAG_SMD_WCNSS_]\n  194 root      0:00 [DIAG_SMD_WCNSS_]\n  195 root      0:00 [DIAG_SMD_WCNSS_]\n  196 root      0:00 [DIAG_SMD_WCNSS_]\n  197 root      0:00 [DIAG_SMD_SENSOR]\n  198 root      0:00 [DIAG_SMD_SENSOR]\n  199 root      0:00 [DIAG_SMD_SENSOR]\n  200 root      0:00 [DIAG_SMD_SENSOR]\n  201 root      0:00 [DIAG_SMD_SENSOR]\n  202 root      0:00 [DIAG_SMD_CDSP_C]\n  203 root      0:00 [DIAG_SMD_CDSP_D]\n  204 root      0:00 [DIAG_SMD_CDSP_C]\n  205 root      0:00 [DIAG_SMD_CDSP_D]\n  206 root      0:00 [DIAG_SMD_CDSP_D]\n  207 root      0:00 [DIAG_SOCKET_MOD]\n  208 root      0:00 [DIAG_SOCKET_MOD]\n  209 root      0:00 [DIAG_SOCKET_MOD]\n  210 root      0:00 [DIAG_SOCKET_MOD]\n  211 root      0:00 [DIAG_SOCKET_MOD]\n  212 root      0:00 [DIAG_SOCKET_LPA]\n  213 root      0:00 [DIAG_SOCKET_LPA]\n  214 root      0:00 [DIAG_SOCKET_LPA]\n  215 root      0:00 [DIAG_SOCKET_LPA]\n  216 root      0:00 [DIAG_SOCKET_LPA]\n  217 root      0:00 [DIAG_SOCKET_WCN]\n  218 root      0:00 [DIAG_SOCKET_WCN]\n  219 root      0:00 [DIAG_SOCKET_WCN]\n  220 root      0:00 [DIAG_SOCKET_WCN]\n  221 root      0:00 [DIAG_SOCKET_WCN]\n  222 root      0:00 [DIAG_SOCKET_SEN]\n  223 root      0:00 [DIAG_SOCKET_SEN]\n  224 root      0:00 [DIAG_SOCKET_SEN]\n  225 root      0:00 [DIAG_SOCKET_SEN]\n  226 root      0:00 [DIAG_SOCKET_SEN]\n  227 root      0:00 [DIAG_SOCKET_DIA]\n  228 root      0:00 [DIAG_SOCKET_DIA]\n  229 root      0:00 [DIAG_SOCKET_DIA]\n  230 root      0:00 [DIAG_SOCKET_DIA]\n  231 root      0:00 [DIAG_SOCKET_DIA]\n  232 root      0:00 [DIAG_SOCKET_CDS]\n  233 root      0:00 [DIAG_SOCKET_CDS]\n  234 root      0:00 [DIAG_SOCKET_CDS]\n  235 root      0:00 [DIAG_SOCKET_CDS]\n  236 root      0:00 [DIAG_SOCKET_CDS]\n  237 root      0:00 [DIAG_CNTL_SOCKE]\n  243 root      0:00 [kgsl-workqueue]\n  244 root      0:00 [kgsl-mementry]\n  245 root      0:00 [kgsl_worker_thr]\n  246 root      0:00 [kgsl-events]\n  247 root      0:00 [kgsl_devfreq_wq]\n  248 root      0:00 [bioset]\n  249 root      0:00 [bioset]\n  250 root      0:00 [bioset]\n  251 root      0:00 [bioset]\n  252 root      0:00 [bioset]\n  253 root      0:00 [bioset]\n  254 root      0:00 [bioset]\n  255 root      0:00 [bioset]\n  256 root      0:00 [bioset]\n  257 root      0:00 [bioset]\n  258 root      0:00 [bioset]\n  259 root      0:00 [bioset]\n  260 root      0:00 [bioset]\n  261 root      0:00 [bioset]\n  262 root      0:00 [bioset]\n  263 root      0:00 [bioset]\n  264 root      0:00 [bioset]\n  265 root      0:00 [bioset]\n  266 root      0:00 [bioset]\n  267 root      0:00 [bioset]\n  268 root      0:00 [bioset]\n  269 root      0:00 [bioset]\n  270 root      0:00 [bioset]\n  271 root      0:00 [bioset]\n  272 root      0:00 [bioset]\n  273 root      0:00 [bioset]\n  274 root      0:00 [bioset]\n  275 root      0:00 [bioset]\n  276 root      0:00 [bioset]\n  277 root      0:00 [bioset]\n  278 root      0:00 [bioset]\n  279 root      0:00 [bioset]\n  280 root      0:00 [bioset]\n  281 root      0:00 [qseecom-unreg-l]\n  282 root      0:00 [qseecom-unload-]\n  283 root      0:00 [qcrypto_seq_res]\n  304 root      0:00 [sharedmem_qmi_w]\n  305 root      0:00 [qmi_hndl0000000]\n  306 root      0:00 [uether]\n  307 root      0:00 [irq/271-ft5x06_]\n  308 root      0:00 [msm_vidc_worker]\n  309 root      0:00 [pm_workerq_venu]\n  310 root      0:00 [irq/34-arm-smmu]\n  311 root      0:00 [irq/17-arm-smmu]\n  312 root      0:00 [irq/18-arm-smmu]\n  313 root      0:00 [irq/16-arm-smmu]\n  314 root      0:00 [msm_cci_wq]\n  315 root      0:00 [msm_cci_wq]\n  316 root      0:00 [msm_cpp_workque]\n  317 root      0:00 [irq/277-soft-co]\n  318 root      0:00 [irq/278-soft-ho]\n  319 root      0:00 [irq/279-batt-mi]\n  320 root      0:00 [qmi_tmd_wq]\n  321 root      0:00 [qmi_svc_event_w]\n  322 root      0:00 [dm_bufio_cache]\n  323 root      0:00 [mmc_clk_gate/mm]\n  324 root      0:00 [irq/114-haptics]\n  325 root      0:00 [irq/113-haptics]\n  326 root      0:00 [kworker/u16:2]\n  327 root      0:00 [irq/118-7824900]\n  328 root      0:00 [irq/117-mmc0]\n  329 root      0:00 [bioset]\n  330 root      0:00 [sdhci_msm_pm_qo]\n  331 root      0:00 [mmc-cmdqd/0]\n  332 root      0:00 [bioset]\n  333 root      0:00 [mmcqd/0rpmb]\n  334 root      0:00 [mmc_clk_gate/mm]\n  335 root      0:00 [irq/120-7864900]\n  336 root      0:00 [irq/119-mmc1]\n  337 root      0:00 [irq/282-7864900]\n  338 root      0:00 [irq/47-spdm_bw_]\n  339 root      0:00 [apr_driver]\n  340 root      0:00 [ipv6_addrconf]\n  341 root      0:00 [irq/317-adsp]\n  342 root      0:00 [sysmon_wq]\n  343 root      0:00 [irq/349-wcnss]\n  344 root      0:00 [irq/285-modem]\n  345 root      0:00 [irq/379-chg-err]\n  346 root      0:00 [irq/380-chg-tap]\n  347 root      0:00 [irq/381-chg-tcc]\n  348 root      0:00 [irq/382-chg-rec]\n  349 root      0:00 [irq/383-chg-p2f]\n  351 root      0:00 [irq/384-usbid-c]\n  352 root      0:00 [irq/385-otg-oc]\n  353 root      0:00 [irq/386-otg-fai]\n  354 root      0:00 [irq/387-batt-ho]\n  355 root      0:00 [irq/388-batt-wa]\n  356 root      0:00 [irq/389-batt-co]\n  358 root      0:00 [irq/390-batt-co]\n  359 root      0:00 [irq/391-batt-mi]\n  360 root      0:00 [irq/392-batt-lo]\n  361 root      0:00 [irq/393-usbin-u]\n  362 root      0:00 [irq/394-usbin-o]\n  363 root      0:00 [irq/395-usbin-s]\n  364 root      0:00 [irq/396-aicl-do]\n  365 root      0:00 [irq/397-dcin-uv]\n  366 root      0:00 [irq/398-power-o]\n  367 root      0:00 [irq/399-temp-sh]\n  368 root      0:00 [irq/400-wdog-ti]\n  369 root      0:00 [core_ctl/0]\n  370 root      0:00 [core_ctl/4]\n  376 root      0:00 [rq_stats]\n  377 root      0:00 [msm_perf:events]\n  378 root      0:00 [irq/29-arm-smmu]\n  379 root      0:00 [ipa_A7_svc]\n  380 root      0:00 [qmi_hndl0000000]\n  381 root      0:00 [clnt_req]\n  382 root      0:00 [clnt_resp]\n  383 root      0:00 [clnt_req]\n  389 root      0:00 [usb_bam_wq]\n  395 root      0:00 [kworker/1:1]\n  397 root      0:00 [kworker/2:1]\n  398 root      0:00 [kworker/3:1]\n  399 root      0:00 [kworker/4:1]\n  400 root      0:00 [kworker/5:1]\n  401 root      0:00 [kworker/6:1]\n  402 root      0:00 [kworker/7:1]\n  403 root      0:00 [kworker/0:1H]\n  425 root      0:00 [kworker/1:0]\n  435 root      0:00 [kworker/0:2]\n  439 root      0:00 [kworker/0:3]\n  443 root      0:00 [kworker/4:2]\n  487 root      0:00 ps -A\n"
  },
  {
    "path": "results/msm8940/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,960000,3117.129249,3.247009634375,230.58790206428753,18.4955317354171,13.516778191419874,80.210330073\r\n1,1094400,3553.66027,3.247131094663742,279.2931252866286,19.649928495769636,12.722692606938576,70.355933307\r\n1,1248000,4050.550875,3.2456337139423077,387.5475528054591,23.921162100088836,10.450997278224689,61.724456591\r\n1,1344000,4364.52514,3.247414538690476,437.1779552570351,25.043831306087927,9.98249816270034,57.285210759\r\n1,1401000,4551.495621,3.2487477665952893,465.1631829884445,25.552215238661972,9.783887528535516,54.93172326\r\n1,1497600,4551.495621,3.039193122996795,475.73244772692595,26.132682174634606,9.566564898671583,54.931468937\r\n4,768000,2493.865092,3.247220171875,178.69050132037,17.91437851684098,13.955270609303,100.253669806\r\n4,902400,2927.057722,3.2436366600177307,221.71678633882357,18.938843844655857,13.200383405164658,85.419079707\r\n4,998400,3242.037556,3.2472331290064105,301.8104988955132,23.275623984079566,10.740850607098611,77.119994398\r\n4,1094400,3553.912858,3.247361895102339,354.39658097687146,24.932508181601666,10.027069806979203,70.351999765\r\n4,1209600,3927.853193,3.247233129133598,376.4535877119524,23.963640467184387,10.432471658150101,63.656294559\r\n"
  },
  {
    "path": "results/msm8940/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 954.4434805738274, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [787.929350826, 793.99695048, 798.200741592, 797.59851309, 795.2590889749999, 786.846918832, 799.463205827, 792.316970928, 801.3593212469999, 789.4355396459999, 789.9728188990001, 791.2388477779999, 785.828923382, 785.828923382, 788.234646676, 789.4355396459999, 788.833124484, 786.4313385439999, 791.2388477779999, 791.2388477779999, 787.632231514, 795.44394185, 799.587092557, 791.2388477779999, 800.185524005, 793.640633718, 796.0424196579999, 787.69344406, 789.4968923399999], \"power_mean\": 792.1258443886206, \"energy_millijoules\": 3960.6292219431034, \"energy_joules\": 3.9606292219431034}, \"cpus\": {\"1\": {\"freqs\": {\"960000\": {\"active\": {\"elapsed_sec\": 80.210330073, \"elapsed_ns\": 80210330073, \"power_samples\": [3.6066162639999675, 235.66662784100015, 232.16193844999987, 232.16193844999987, 230.25014921800005, 230.7301653599999, 230.7301653599999, 230.0915641680001, 232.99867354599996, 232.99867354599996, 232.9192780809999, 235.22696267600008, 235.22696267600008, 232.83988261599995, 238.13295514399988, 238.13295514399988, 232.68083137300005, 237.45815870800004, 237.45815870800004, 233.27946452800006, 233.2000223980001, 233.2000223980001, 237.37839083799997, 233.2000223980001, 229.61632811800007, 229.61632811800007, 230.73033299300016, 233.12058026800014, 233.12058026800014, 233.12058026800014, 232.52204044300004, 232.52204044300004, 230.65107721800007, 232.44264497799998, 232.44264497799998, 231.80434733800018, 231.76480301800007, 231.76480301800007, 229.97728636299996, 231.13048671399997, 231.13048671399997, 230.49230581300003, 231.0907054899999, 231.0907054899999, 231.0907054899999, 231.05118427399998, 231.05118427399998, 238.21214654099992, 232.76296045000015, 232.76296045000015, 239.32503450600018, 241.116113122, 241.116113122, 232.68351832000008, 239.2450805860002, 239.2450805860002, 235.06882999000015, 238.0524247510001, 238.0524247510001, 237.4541416599999, 239.84336367700018, 235.66320273400015, 235.66320273400015, 232.68351832000008, 230.892579394, 230.892579394, 234.39070446100004, 232.60381572400013, 232.60381572400013, 229.54124502599996, 230.73371450599996, 230.73371450599996, 232.52437359399994, 237.29425151399982, 237.29425151399982, 230.73371450599996, 231.32799437800008, 231.32799437800008, 230.0562691230001, 230.0562691230001], \"power_mean\": 230.58790206428753, \"energy_millijoules\": 18495.5317354171, \"energy_joules\": 18.4955317354171, \"coremark_score\": 3117.129249, \"coremarks_per_mhz\": 3.247009634375, \"ulpmark_cm_score\": 13.516778191419874}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [792.439740748, 787.060399216, 787.060399216, 786.4924577599999], \"power_mean\": 788.2632492349999, \"energy_millijoules\": 3941.3162461749994, \"energy_joules\": 3.9413162461749995}}, \"1094400\": {\"active\": {\"elapsed_sec\": 70.355933307, \"elapsed_ns\": 70355933307, \"power_samples\": [279.98507825800004, 279.98507825800004, 281.7598611740001, 278.01533399200014, 278.01533399200014, 281.50953394600003, 283.2148150690001, 283.2148150690001, 280.82867004800016, 279.04003761, 274.82788165399995, 274.82788165399995, 280.1935701200001, 280.110038852, 280.110038852, 276.5331935040002, 278.23849757799974, 278.23849757799974, 276.45021459400016, 279.4293847179998, 279.4293847179998, 279.943522272, 279.30443086800017, 279.30443086800017, 278.11368341800005, 278.0722603779999, 278.0722603779999, 281.0091527730002, 278.0722603779999, 278.0722603779999, 277.39188592900007, 275.6079256480001, 275.6079256480001, 286.84074096999996, 280.2870532580001, 280.2870532580001, 286.7986951930003, 281.4357327429999, 281.4357327429999, 284.3719029739999, 280.8006378440001, 280.8006378440001, 280.2034754780001, 283.7786436299999, 283.7786436299999, 279.01305376799985, 283.0979438989999, 277.82263205800007, 277.82263205800007, 275.952069072, 280.71728652900003, 280.71728652900003, 280.71728652900003, 278.929842143, 278.929842143, 277.059325822, 273.48861884199994, 273.48861884199994, 280.6339352140002, 277.656394858, 277.656394858, 277.01765367099995, 276.9762538870001, 276.9762538870001, 281.14370416300005, 279.953561528, 279.953561528, 282.337748905, 274.554389796, 274.554389796], \"power_mean\": 279.2931252866286, \"energy_millijoules\": 19649.928495769636, \"energy_joules\": 19.649928495769636, \"coremark_score\": 3553.66027, \"coremarks_per_mhz\": 3.247131094663742, \"ulpmark_cm_score\": 12.722692606938576}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [796.5472427099999, 804.346239574, 799.6085908980001, 799.6085908980001], \"power_mean\": 800.02766602, \"energy_millijoules\": 4000.1383300999996, \"energy_joules\": 4.0001383300999995}}, \"1248000\": {\"active\": {\"elapsed_sec\": 61.724456591, \"elapsed_ns\": 61724456591, \"power_samples\": [29.718371387999923, 394.24927698199997, 394.24927698199997, 395.066922202, 394.289944408, 394.289944408, 395.9800239460002, 388.7616518450001, 389.8564825899999, 389.8564825899999, 392.73326070300016, 390.26328992800006, 390.26328992800006, 395.6092697380003, 393.1395554879999, 393.1395554879999, 388.301079103, 391.2693055180001, 391.2693055180001, 395.42404445800014, 390.03265486600014, 390.03265486600014, 395.9688742180002, 392.90833825699985, 392.90833825699985, 394.6898423829999, 391.13072387800014, 391.13072387800014, 394.5972764080001, 392.22471678800014, 392.22471678800014, 396.2859351789999, 397.97431457000005, 397.97431457000005, 396.1932295139999, 401.43947142000013, 401.43947142000013, 397.97431457000005, 396.1932295139999, 396.1932295139999, 399.06746995000015, 400.25347068500025, 400.25347068500025, 396.6915799530001, 399.02084840199984, 393.133577748, 393.133577748, 392.44590379499994, 388.88818158000015, 388.88818158000015, 389.479191172, 389.433245524, 389.433245524, 393.5392918900001, 392.9483286579999, 392.9483286579999, 389.2948040320001, 389.2948040320001, 389.2948040320001, 394.04157706299986, 391.670134353], \"power_mean\": 387.5475528054591, \"energy_millijoules\": 23921.162100088837, \"energy_joules\": 23.921162100088836, \"coremark_score\": 4050.550875, \"coremarks_per_mhz\": 3.2456337139423077, \"ulpmark_cm_score\": 10.450997278224689}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [810.5672932, 810.5672932, 818.985395648, 815.48395542], \"power_mean\": 813.900984367, \"energy_millijoules\": 4069.504921835, \"energy_joules\": 4.069504921835}}, \"1344000\": {\"active\": {\"elapsed_sec\": 57.285210759, \"elapsed_ns\": 57285210759, \"power_samples\": [32.89720189000002, 449.995462816, 443.1450490820001, 443.1450490820001, 445.325657794, 446.36520453000014, 446.36520453000014, 447.4530544350001, 444.9871840300001, 444.9871840300001, 449.6281960949999, 447.7562982559999, 447.7562982559999, 444.79354407699986, 442.421010914, 441.73436109800025, 441.73436109800025, 445.28705721799986, 432.84679670599996, 432.84679670599996, 444.00621032800007, 439.1695294, 439.1695294, 447.4656155659999, 439.763493454, 439.763493454, 441.5415034980002, 439.07328695500007, 439.07328695500007, 443.222945052, 438.43499563800003, 438.43499563800003, 440.754775174, 444.2132580640001, 444.2132580640001, 442.484086693, 438.290543812, 438.290543812, 441.2519009380002, 454.82244906799986, 454.82244906799986, 448.8029331529998, 451.76394158799997, 451.76394158799997, 448.8029331529998, 449.9417184260002, 449.9417184260002, 447.619305928, 444.068424253, 444.068424253, 448.11575466700003, 451.666356352, 451.666356352, 449.2992885619998, 444.609785018, 438.6397226289997, 438.6397226289997], \"power_mean\": 437.1779552570351, \"energy_millijoules\": 25043.831306087926, \"energy_joules\": 25.043831306087927, \"coremark_score\": 4364.52514, \"coremarks_per_mhz\": 3.247414538690476, \"ulpmark_cm_score\": 9.98249816270034}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [814.40656346, 821.054845107, 821.054845107, 813.3369565200001], \"power_mean\": 817.4633025485, \"energy_millijoules\": 4087.3165127425, \"energy_joules\": 4.0873165127425}}, \"1401000\": {\"active\": {\"elapsed_sec\": 54.93172326, \"elapsed_ns\": 54931723260, \"power_samples\": [34.147014801999944, 467.45816745800005, 467.45816745800005, 466.9654617340003, 472.095095046, 472.095095046, 473.67384698800004, 466.5221557320002, 466.5221557320002, 474.1640356740003, 469.9229266849999, 469.9229266849999, 473.42609707300005, 473.3270620479999, 473.3270620479999, 479.83408763599994, 476.186265338, 476.186265338, 479.63466762300015, 483.18621488299993, 483.18621488299993, 479.04532790299993, 480.1782511060002, 480.1782511060002, 478.94582744800016, 477.709620343, 477.709620343, 474.2120959179998, 478.94582744800016, 474.8013892779999, 474.8013892779999, 472.93059724299985, 467.6041144930001, 467.6041144930001, 468.79036174300006, 471.7443499930001, 471.7443499930001, 469.37960874299995, 465.14094333800006, 465.14094333800006, 476.3783950180001, 474.503540886, 474.503540886, 469.774803806, 473.32135661600034, 473.32135661600034, 473.914386758, 472.73220248799987, 472.73220248799987, 475.59033343, 472.63316746299995, 472.63316746299995, 469.57719918600003, 471.3482588139999], \"power_mean\": 465.1631829884445, \"energy_millijoules\": 25552.21523866197, \"energy_joules\": 25.552215238661972, \"coremark_score\": 4551.495621, \"coremarks_per_mhz\": 3.2487477665952893, \"ulpmark_cm_score\": 9.783887528535516}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [823.3100046080001, 823.3100046080001, 818.089262583, 816.921670117], \"power_mean\": 820.407735479, \"energy_millijoules\": 4102.038677395, \"energy_joules\": 4.102038677395}}, \"1497600\": {\"active\": {\"elapsed_sec\": 54.931468937, \"elapsed_ns\": 54931468937, \"power_samples\": [475.655521603, 475.655521603, 477.02409947800004, 477.9583011180001, 477.9583011180001, 482.54327173600007, 471.843291688, 471.15510299300024, 471.15510299300024, 472.88091737800016, 474.01383981800006, 474.01383981800006, 471.0065978670001, 473.32135661600034, 473.32135661600034, 474.40436647599984, 474.9479020729999, 474.9479020729999, 473.716130658, 473.716130658, 473.716130658, 476.0306328580001, 473.07381558200007, 473.07381558200007, 473.56727607799996, 472.38541754799996, 472.38541754799996, 474.6996867280001, 470.5117969450001, 470.5117969450001, 476.914037418, 478.7880301209999, 478.7880301209999, 481.594548336, 481.544822144, 481.544822144, 482.72640159900004, 474.55069245799984, 474.55069245799984, 481.544822144, 479.77051594600005, 479.77051594600005, 482.13754888699975, 483.90798105400006, 483.90798105400006, 480.363242689, 476.81463029300005, 470.90285898699983, 470.90285898699983, 470.90285898699983, 473.269891928, 473.269891928, 474.94493038600024, 474.94493038600024], \"power_mean\": 475.73244772692595, \"energy_millijoules\": 26132.682174634607, \"energy_joules\": 26.132682174634606, \"coremark_score\": 4551.495621, \"coremarks_per_mhz\": 3.039193122996795, \"ulpmark_cm_score\": 9.566564898671583}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [836.908963176, 834.6511027399999, 831.793114145, 831.793114145], \"power_mean\": 833.7865735514999, \"energy_millijoules\": 4168.9328677574995, \"energy_joules\": 4.1689328677574995}}}}, \"4\": {\"freqs\": {\"768000\": {\"active\": {\"elapsed_sec\": 100.253669806, \"elapsed_ns\": 100253669806, \"power_samples\": [64.52056052500006, 170.10391047400003, 170.10391047400003, 171.21939217199997, 173.6002355920001, 173.6002355920001, 172.40981388199998, 175.38781966800013, 175.38781966800013, 181.93709058399998, 175.98498203399993, 175.98498203399993, 181.34383124, 177.76866308800004, 177.76866308800004, 183.72467466, 180.822449162, 180.822449162, 177.84420989800003, 187.37613687400005, 187.37613687400005, 182.05065305799997, 182.088589867, 169.5813497349999, 169.5813497349999, 170.7719578, 173.750429779, 173.750429779, 172.5598217139999, 172.0374003600001, 172.0374003600001, 173.750429779, 176.80410865800013, 176.80410865800013, 174.941037844, 172.0374003600001, 172.0374003600001, 176.17300659799992, 175.01610505400015, 175.01610505400015, 171.3692136489999, 170.2533006939999, 170.2533006939999, 173.23200538800006, 175.01610505400015, 175.01610505400015, 167.867994576, 173.23200538800006, 173.23200538800006, 181.4952376509999, 179.110117888, 179.110117888, 176.728901758, 180.8979818019999, 180.8979818019999, 177.3261576069999, 180.8979818019999, 180.8979818019999, 176.728901758, 178.51676567200002, 178.51676567200002, 178.51676567200002, 177.3261576069999, 168.46529709000004, 168.46529709000004, 177.40141117200005, 167.2745960000001, 167.2745960000001, 176.2107100820001, 173.8254039640001, 173.8254039640001, 168.46529709000004, 171.44400178400008, 171.44400178400008, 178.55431544800012, 172.63470287400003, 172.63470287400003, 170.84669927000004, 170.84669927000004, 170.84669927000004, 173.8254039640001, 171.44400178400008, 171.44400178400008, 170.7719578, 172.59713953799996, 172.59713953799996, 172.5598217139999, 168.3907416699999, 168.3907416699999, 629.8758239379998, 177.76866308800004, 177.76866308800004, 179.63193412199996, 177.84420989800003, 177.84420989800003, 184.991203466, 178.44141908200004, 178.44141908200004, 179.03472493800007, 182.61017338599993], \"power_mean\": 178.69050132037, \"energy_millijoules\": 17914.37851684098, \"energy_joules\": 17.91437851684098, \"coremark_score\": 2493.865092, \"coremarks_per_mhz\": 3.247220171875, \"ulpmark_cm_score\": 13.955270609303}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [791.9394396199999, 791.9394396199999, 794.3637898440002, 793.888063605], \"power_mean\": 793.03268317225, \"energy_millijoules\": 3965.16341586125, \"energy_joules\": 3.96516341586125}}, \"902400\": {\"active\": {\"elapsed_sec\": 85.419079707, \"elapsed_ns\": 85419079707, \"power_samples\": [210.241071993, 210.241071993, 215.96959493500003, 212.32209841000008, 212.32209841000008, 217.00621926999997, 213.95200717600005, 213.95200717600005, 212.16575084200008, 210.8982605120001, 210.8982605120001, 212.68047733800017, 213.87382164600012, 213.87382164600012, 214.46659398199995, 216.77096453499985, 216.77096453499985, 212.60238513800016, 216.69254629, 216.69254629, 217.28522590600005, 223.79237831800003, 223.79237831800003, 220.85690043400018, 220.81739935300004, 220.81739935300004, 217.84242038799994, 221.41005571300002, 221.41005571300002, 221.41005571300002, 220.73865536800008, 219.03163216299993, 219.03163216299993, 223.79237831800003, 223.79237831800003, 220.81739935300004, 215.46009778299992, 211.29590704300006, 211.29590704300006, 213.67822964799996, 214.19265411800006, 214.19265411800006, 212.40702661800015, 211.814416618, 211.814416618, 215.9782816180001, 217.0889357630001, 217.0889357630001, 211.73637077800004, 213.521858588, 213.521858588, 209.9508829680001, 211.65832493800008, 211.65832493800008, 211.65832493800008, 215.225123038, 215.225123038, 215.225123038, 212.25084221800012, 220.5021652360001, 220.5021652360001, 226.4502599199999, 221.0946360040001, 221.0946360040001, 224.62564670799998, 215.74290992199997, 215.74290992199997, 220.42342125100015, 221.05536999600008, 221.05536999600008, 219.23467490600012, 219.313325866, 219.313325866, 219.82709931400007, 209.79481523799996, 209.79481523799996, 218.71695726399992, 213.28704565200007, 213.28704565200007, 672.7297812140001, 217.37109535399998, 217.37109535399998, 216.26086027899998, 216.18244203400002, 216.18244203400002], \"power_mean\": 221.71678633882357, \"energy_millijoules\": 18938.843844655858, \"energy_joules\": 18.938843844655857, \"coremark_score\": 2927.057722, \"coremarks_per_mhz\": 3.2436366600177307, \"ulpmark_cm_score\": 13.200383405164658}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [800.587005842, 797.663242189, 800.053672979, 800.053672979], \"power_mean\": 799.58939849725, \"energy_millijoules\": 3997.94699248625, \"energy_joules\": 3.9979469924862503}}, \"998400\": {\"active\": {\"elapsed_sec\": 77.119994398, \"elapsed_ns\": 77119994398, \"power_samples\": [20.077898749000042, 305.0310593800001, 297.650220483, 297.650220483, 306.34207613800015, 307.442817173, 307.442817173, 308.5433721580001, 308.5433721580001, 308.5433721580001, 313.2923808400002, 307.862516347, 307.862516347, 307.27136752299987, 311.9300177380002, 311.9300177380002, 310.82992787800015, 310.743923978, 310.743923978, 313.12000033000015, 305.4045576420002, 299.4702000100002, 299.4702000100002, 305.318972507, 299.3850803050001, 299.3850803050001, 302.946971037, 299.89457933200003, 299.89457933200003, 298.11377411399997, 298.70867192699995, 298.70867192699995, 300.40037619400016, 305.14752163000014, 305.14752163000014, 307.476405406, 302.7333333260002, 302.7333333260002, 308.6229881710002, 305.06193649500017, 305.06193649500017, 305.57110917800003, 303.87621514, 303.87621514, 304.38159354200013, 306.7567375079999, 306.7567375079999, 308.4940506370002, 309.67963230199973, 309.67963230199973, 310.2704795579999, 310.2704795579999, 310.2704795579999, 308.4940506370002, 310.822329751, 310.822329751, 313.788111514, 310.7791634019999, 310.7791634019999, 310.184475658, 307.8134983780002, 303.74783682400005, 303.74783682400005, 302.5622551590001, 301.33027330899984, 301.33027330899984, 301.8821683299999, 301.2874805859998, 301.2874805859998, 300.1019919460001, 306.5852878579998, 306.5852878579998, 302.982211525, 298.8313836010001, 298.8313836010001, 311.19777044800014], \"power_mean\": 301.8104988955132, \"energy_millijoules\": 23275.623984079564, \"energy_joules\": 23.275623984079566, \"coremark_score\": 3242.037556, \"coremarks_per_mhz\": 3.2472331290064105, \"ulpmark_cm_score\": 10.740850607098611}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [805.781260341, 806.443024608, 806.443024608, 811.223146812], \"power_mean\": 807.47261409225, \"energy_millijoules\": 4037.3630704612497, \"energy_joules\": 4.037363070461249}}, \"1094400\": {\"active\": {\"elapsed_sec\": 70.351999765, \"elapsed_ns\": 70351999765, \"power_samples\": [347.20770075400003, 347.20770075400003, 347.3866441020001, 355.41450861600003, 355.41450861600003, 355.32458072400016, 358.7915255620002, 358.7915255620002, 359.381700218, 351.5035407240001, 351.5035407240001, 360.3858267080001, 353.27766865, 353.27766865, 359.2017807179999, 357.92786800299984, 357.92786800299984, 357.92786800299984, 356.65414133799993, 356.14999764900006, 356.14999764900006, 354.2825399499999, 346.58550958600006, 346.58550958600006, 351.32483085399997, 353.09868000999984, 353.09868000999984, 353.602716172, 351.8251256560003, 351.8251256560003, 354.74181271800023, 347.6800019200001, 347.6800019200001, 353.55809246800015, 350.0030506680001, 350.0030506680001, 353.55809246800015, 351.7357243610003, 351.7357243610003, 346.9527806279999, 353.37871692099986, 353.37871692099986, 349.82423479700003, 348.0508741740001, 348.0508741740001, 354.472616806, 362.67029754, 362.67029754, 356.7496784860001, 353.1996349509999, 353.1996349509999, 356.7496784860001, 363.76326686999994, 363.76326686999994, 358.5266401680002, 362.0805635319999, 362.0805635319999, 359.120254005, 365.449570657, 365.449570657, 352.01628710600005, 351.9268391459999, 352.01628710600005, 352.01628710600005, 356.7049157020002, 353.6997816139998, 353.6997816139998, 357.25342559800004, 349.5564499819999, 349.5564499819999], \"power_mean\": 354.39658097687146, \"energy_millijoules\": 24932.508181601665, \"energy_joules\": 24.932508181601666, \"coremark_score\": 3553.912858, \"coremarks_per_mhz\": 3.247361895102339, \"ulpmark_cm_score\": 10.027069806979203}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [811.530681736, 815.172500381, 813.416805384, 813.416805384], \"power_mean\": 813.38419822125, \"energy_millijoules\": 4066.92099110625, \"energy_joules\": 4.06692099110625}}, \"1209600\": {\"active\": {\"elapsed_sec\": 63.656294559, \"elapsed_ns\": 63656294559, \"power_samples\": [28.272356326000022, 378.15695474200004, 378.15695474200004, 380.1571093619999, 380.56294726199997, 380.56294726199997, 378.744918559, 383.29203955800006, 383.29203955800006, 380.92674015800014, 388.52739959300004, 388.52739959300004, 385.56906928800015, 391.982410618, 391.982410618, 383.701288138, 389.52501036800015, 389.52501036800015, 386.0662154380001, 386.5671454930001, 381.3363608379999, 381.3363608379999, 396.0299871180001, 370.6864341280001, 370.6864341280001, 383.0161569930002, 375.2374535780001, 375.2374535780001, 374.64437661800014, 372.86902205800004, 372.86902205800004, 378.78428637800005, 378.1031966920001, 378.1031966920001, 380.4675652320001, 379.87453509, 379.87453509, 376.921012422, 379.19369918200016, 379.19369918200016, 378.0116079369999, 379.69107881, 379.69107881, 380.3757904270002, 375.55214733800005, 375.55214733800005, 372.0061526779999, 376.69242309000003, 376.69242309000003, 383.19509594600015, 391.9725381559998, 388.42308762000005, 388.42308762000005, 394.33625521600004, 383.7418315010001, 383.7418315010001, 391.287012418, 384.87751203000005, 384.87751203000005, 385.46650382200016, 386.05937056000005, 386.05937056000005, 391.287012418], \"power_mean\": 376.4535877119524, \"energy_millijoules\": 23963.64046718439, \"energy_joules\": 23.963640467184387, \"coremark_score\": 3927.853193, \"coremarks_per_mhz\": 3.247233129133598, \"ulpmark_cm_score\": 10.432471658150101}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [816.956076552, 816.956076552, 812.2159268300001, 810.48942034], \"power_mean\": 814.1543750685, \"energy_millijoules\": 4070.7718753425, \"energy_joules\": 4.0707718753425}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/msm8940/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 786 mW\n\n\n===== CPU 1 =====\nFrequencies: 960 1094 1248 1344 1401 1497\n\n 960:  3117     3.2 C/MHz    231 mW   18.5 J   13.5 I/mJ    80.2 s\n1094:  3554     3.2 C/MHz    279 mW   19.6 J   12.7 I/mJ    70.4 s\n1248:  4051     3.2 C/MHz    388 mW   23.9 J   10.5 I/mJ    61.7 s\n1344:  4365     3.2 C/MHz    437 mW   25.0 J   10.0 I/mJ    57.3 s\n1401:  4551     3.2 C/MHz    465 mW   25.6 J    9.8 I/mJ    54.9 s\n1497:  4551     3.0 C/MHz    476 mW   26.1 J    9.6 I/mJ    54.9 s\n\n\n===== CPU 4 =====\nFrequencies: 768 902 998 1094 1209\n\n 768:  2494     3.2 C/MHz    179 mW   17.9 J   14.0 I/mJ   100.3 s\n 902:  2927     3.2 C/MHz    222 mW   18.9 J   13.2 I/mJ    85.4 s\n 998:  3242     3.2 C/MHz    302 mW   23.3 J   10.7 I/mJ    77.1 s\n1094:  3554     3.2 C/MHz    354 mW   24.9 J   10.0 I/mJ    70.4 s\n1209:  3928     3.2 C/MHz    376 mW   24.0 J   10.4 I/mJ    63.7 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/msm8940/main/uptime.txt",
    "content": " 02:46:45 up 16 min,  load average: 2.95, 2.81, 1.87\n"
  },
  {
    "path": "results/msm8940/main/versions.txt",
    "content": "Kernel: Linux version 4.9.268-mi8937 (mi-msm8937@github.com) (Proton clang version 13.0.0 (https://github.com/llvm/llvm-project 9829f5e6b1bca9b61efc629770d28bb9014dec45)) #3 SMP PREEMPT Mon May 17 15:33:35 +04 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/msm8940/old/cmdline.txt",
    "content": "androidboot.usbconfigfs=true sched_enable_hmp=1 kpti=0 androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 androidboot.bootdevice=7824900.sdhci earlycon=msm_hsl_uart,0x78B0000 ignore_loglevel=0 androidboot.console=ttyHSL0 androidboot.selinux=permissive buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 printk.devkmsg=on androidboot.emmc=true androidboot.verifiedbootstate=orange androidboot.veritymode=enforcing androidboot.keymaster=1 androidboot.serialno=REDACTED device_locked=0 androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_ili9881c_ebbgDJN_720p_video:1:none:cfg:single_dsi board_id=S88536BA2:board_vol=476784\n"
  },
  {
    "path": "results/msm8940/old/cpufreq_stats/0/time_in_state",
    "content": "960000 53975\n1094400 7925\n1248000 7023\n1344000 6621\n1401000 6810\n"
  },
  {
    "path": "results/msm8940/old/cpufreq_stats/0/total_trans",
    "content": "8\n"
  },
  {
    "path": "results/msm8940/old/cpufreq_stats/4/time_in_state",
    "content": "768000 10868\n902400 9434\n998400 8630\n1094400 53423\n"
  },
  {
    "path": "results/msm8940/old/cpufreq_stats/4/total_trans",
    "content": "6\n"
  },
  {
    "path": "results/msm8940/old/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 4 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nHardware\t: Qualcomm Technologies, Inc MSM8940\n"
  },
  {
    "path": "results/msm8940/old/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. MSM8940-PMI8950 QRD SKU7;\nCompatible: qcom,msm8940-qrd-sku7;qcom,msm8940-qrd;qcom,msm8940;qcom,qrd;\n"
  },
  {
    "path": "results/msm8940/old/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x100\n[    0.000000] Linux version 4.9.227-perf+ (sid_key@manjaro) (gcc version 4.9.x 20150123 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Feb 15 20:33:52 +04 2021\n[    0.000000] Boot CPU: AArch64 Processor [410fd034]\n[    0.000000] Machine: Qualcomm Technologies, Inc. MSM8940-PMI8950 QRD SKU7\n[    0.000000] debug: ignoring loglevel setting.\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ffc00000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fec00000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f7c00000, size 112 MiB\n[    0.000000] OF: reserved mem: initialized node secure_region@0, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: invalid size property in 'mem_dump_region' node.\n[    0.000000] Reserved memory: created CMA memory pool at 0x000000008f800000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node venus_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6c00000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@0, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000084a00000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node other_ext_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086800000, size 106 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008d200000, size 17 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_fw_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008e300000, size 7 MiB\n[    0.000000] OF: reserved mem: initialized node wcnss_fw_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000009ff00000, size 3 MiB\n[    0.000000] OF: reserved mem: initialized node pstore_reserve_mem_region@0, compatible id removed-dma-pool\n[    0.000000] cma: Reserved 16 MiB at 0x00000000f5c00000\n[    0.000000] On node 0 totalpages: 744704\n[    0.000000]   DMA zone: 12288 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 744704 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.0 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] Did not receive the expected number of bytes from PRNG: 0\n[    0.000000] percpu: Embedded 22 pages/cpu s51096 r8192 d30824 u90112\n[    0.000000] pcpu-alloc: s51096 r8192 d30824 u90112 alloc=22*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: enabling workaround for ARM erratum 845719\n[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 732416\n[    0.000000] Kernel command line: androidboot.usbconfigfs=true sched_enable_hmp=1 kpti=0 androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 androidboot.bootdevice=7824900.sdhci earlycon=msm_hsl_uart,0x78B0000 ignore_loglevel=0 androidboot.console=ttyHSL0 androidboot.selinux=permissive buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 printk.devkmsg=on androidboot.emmc=true androidboot.verifiedbootstate=orange androidboot.veritymode=enforcing androidboot.keymaster=1 androidboot.serialno=REDACTED device_locked=0 androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_ili9881c_ebbgDJN_720p_video:1:none:cfg:single_dsi board_id=S88536BA2:board_vol=476784\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 131072 bytes\n[    0.000000] log_buf_len: 1048576 bytes\n[    0.000000] early log buf free: 126744(96%)\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] Memory: 2678544K/2978816K available (19966K kernel code, 2744K rwdata, 7184K rodata, 4096K init, 2971K bss, 124144K reserved, 176128K cma-reserved)\n[    0.000000] Virtual kernel memory layout:\n[    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n[    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)\n[    0.000000]       .text : 0x        (ptrval) - 0x        (ptrval)   ( 19968 KB)\n[    0.000000]     .rodata : 0x        (ptrval) - 0x        (ptrval)   (  7232 KB)\n[    0.000000]       .init : 0x        (ptrval) - 0x        (ptrval)   (  4096 KB)\n[    0.000000]       .data : 0x        (ptrval) - 0x        (ptrval)   (  2745 KB)\n[    0.000000]        .bss : 0x        (ptrval) - 0x        (ptrval)   (  2972 KB)\n[    0.000000]     fixed   : 0xffffffbefe7fb000 - 0xffffffbefec00000   (  4116 KB)\n[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)\n[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)\n[    0.000000]               0xffffffbf00000000 - 0xffffffbf03000000   (    48 MB actual)\n[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc0c0000000   (  3072 MB)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n\n[    0.000000] **********************************************************\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **                                                      **\n[    0.000000] ** trace_printk() being used. Allocating extra memory.  **\n[    0.000000] **                                                      **\n[    0.000000] ** This means that this is a DEBUG kernel and it is     **\n[    0.000000] ** unsafe for production use.                           **\n[    0.000000] **                                                      **\n[    0.000000] ** If you see this message and you are not debugging    **\n[    0.000000] ** the kernel, report this immediately to your vendor!  **\n[    0.000000] **                                                      **\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **********************************************************\n[    0.000000] NR_IRQS:64 nr_irqs:64 0\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from all CPUs\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arm_arch_timer: Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000005] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000018] clocksource: Switched to clocksource arch_sys_counter\n[    0.000993] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001005] pid_max: default: 32768 minimum: 301\n[    0.001074] Security Framework initialized\n[    0.001083] SELinux:  Initializing.\n[    0.001134] SELinux:  Starting in permissive mode\n[    0.001168] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001177] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.002456] sched-energy: Sched-energy-costs installed from DT\n[    0.011935] ASID allocator initialised with 32768 entries\n[    0.018395] cpu_clock_a53_init_little: A53 Power clocks configured\n[    0.018982] MSM Memory Dump base table set up\n[    0.018995] MSM Memory Dump apps data table set up\n[    0.029946] CPU1: Booted secondary processor [410fd034]\n[    0.038526] CPU2: Booted secondary processor [410fd034]\n[    0.047055] CPU3: Booted secondary processor [410fd034]\n[    0.055755] CPU4: Booted secondary processor [410fd034]\n[    0.064580] CPU5: Booted secondary processor [410fd034]\n[    0.073389] CPU6: Booted secondary processor [410fd034]\n[    0.082199] CPU7: Booted secondary processor [410fd034]\n[    0.082619] Brought up 8 CPUs\n[    0.082646] SMP: Total of 8 processors activated.\n[    0.082654] CPU features: detected feature: 32-bit EL0 Support\n[    0.082662] CPU features: kernel page table isolation forced OFF by command line option\n[    0.082673] CPU: All CPU(s) started at EL1\n[    0.082758] alternatives: patching kernel code\n[    0.083022] CPU0: update max cpu_capacity 1024\n[    0.137394] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.137414] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.144698] pinctrl core: initialized pinctrl subsystem\n[    0.145455] NET: Registered protocol family 16\n[    0.146820] schedtune: init normalization constants...\n[    0.146831] schedtune: CLUSTER[0]        min_pwr:     1 max_pwr:   239\n[    0.146839] schedtune: CPU[0]            min_pwr:    40 max_pwr:  1740\n[    0.146845] schedtune: SYSTEM            min_pwr:    41 max_pwr:  1979\n[    0.146852] schedtune: using normalization constants mul: 243780394 sh1: 1 sh2: 10\n[    0.146857] schedtune: verify normalization constants...\n[    0.146863] schedtune: max_pwr/2^0: 1938 => norm_pwr:  1024\n[    0.146868] schedtune: max_pwr/2^1:  969 => norm_pwr:   512\n[    0.146874] schedtune: max_pwr/2^2:  484 => norm_pwr:   255\n[    0.146880] schedtune: max_pwr/2^3:  242 => norm_pwr:   127\n[    0.146885] schedtune: max_pwr/2^4:  121 => norm_pwr:    63\n[    0.146891] schedtune: max_pwr/2^5:   60 => norm_pwr:    31\n[    0.146896] schedtune: configured to support 5 boost groups\n[    0.148658] cpuidle: using governor menu\n[    0.148697] cpuidle: using governor qcom\n[    0.152079] vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.152096] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.153073] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.156873] msm8937-pinctrl 1000000.pinctrl: invalid resource\n[    0.167156] sps:sps is ready.\n[    0.168966] cpu-clock-8939 b011050.qcom,cpu-clock-8939: No PVS version available. Defaulting to 0!\n[    0.168977] cpu-clock-8939 b011050.qcom,cpu-clock-8939: Speed bin: 0 PVS Version: 0\n[    0.171932] smd_channel_probe_now: allocation table not initialized\n[    0.173606] smd_channel_probe_now: allocation table not initialized\n[    0.174045] smd_channel_probe_now: allocation table not initialized\n[    0.174801] msm_rpm_glink_dt_parse: qcom,rpm-glink compatible not matches\n[    0.175779] pm8937_s2_level: Bringing 1uV into 16-16uV\n[    0.176151] pm8937_s2_floor_level: Bringing 1uV into 16-16uV\n[    0.176694] pm8937_s2_level_ao: Bringing 1uV into 16-16uV\n[    0.178694] pm8937_l3_level_ao: Bringing 1uV into 16-16uV\n[    0.188051] msm_watchdog b017000.qcom,wdt: wdog absent resource not present\n[    0.189212] msm_watchdog b017000.qcom,wdt: MSM Watchdog Initialized\n[    0.189573] spmi spmi-0: PMIC arbiter version v2 (0x20010000)\n[    0.190391] spm_regulator_probe: name=pm8937_s5, range=LV, voltage=1225000 uV, mode=PWM, step rate=1200 uV/us\n[    0.198136] platform soc:qcom,adsprpc-mem: assigned reserved memory node adsp_region@0\n[    0.199696] platform 4080000.qcom,mss: assigned reserved memory node modem_region@0\n[    0.199885] platform c200000.qcom,lpass: assigned reserved memory node adsp_fw_region@0\n[    0.200140] platform a21b000.qcom,pronto: assigned reserved memory node wcnss_fw_region@0\n[    0.200274] platform 1de0000.qcom,venus: assigned reserved memory node venus_region@0\n[    0.200929] ACC: mem_acc_efuse_init: efuse_addr = 0x00000000000a4000 (len=0x1000)\n[    0.201108] ACC: mem_acc_parse_override_fuse_version_range: fuse_sel0 = 1 fuse_sel1 = 43 fuse_sel2 = 42  qcom,override-fuse-range-map tuple match not found\n[    0.201602] cpr_efuse_init: apc_corner: efuse_addr = 0x00000000000a4000 (len=0x1000)\n[    0.201630] cpr_read_fuse_revision: apc_corner: fuse revision = 1\n[    0.201642] cpr_parse_speed_bin_fuse: apc_corner: [row: 37]: 0x60807921b047619e, speed_bits = 0\n[    0.201654] cpr_parse_pvs_version_fuse: apc_corner: [row: 37]: 0x60807921b047619e, pvs_version = 1\n[    0.201729] cpr_adjust_init_voltages: apc_corner: adjusted initial voltage[3]: 1250000 -> 1270000 uV\n[    0.201737] cpr_pvs_per_corner_init: apc_corner: Warning: initial voltage[1] 1085000 below floor 1150000\n[    0.201744] cpr_pvs_per_corner_init: apc_corner: Warning: initial voltage[2] 1145000 below floor 1150000\n[    0.201754] cpr_pvs_init: apc_corner: pvs voltage: [1150000 1150000 1270000] uV\n[    0.201763] cpr_pvs_init: apc_corner: ceiling voltage: [1155000 1225000 1350000] uV\n[    0.201771] cpr_pvs_init: apc_corner: floor voltage: [1150000 1150000 1250000] uV\n[    0.201867] cpr_init_cpr_parameters: apc_corner: up threshold = 2, down threshold = 4\n[    0.201888] cpr_init_cpr_parameters: apc_corner: CPR is disabled by default.\n[    0.201910] cpr_init_cpr_efuse: apc_corner: [row:67] = 0x8367264a0c0aa\n[    0.201928] cpr_init_cpr_efuse: apc_corner: Corner[1]: ro_sel = 0, target quot = 525\n[    0.201937] cpr_init_cpr_efuse: apc_corner: Corner[2]: ro_sel = 0, target quot = 612\n[    0.201945] cpr_init_cpr_efuse: apc_corner: Corner[3]: ro_sel = 0, target quot = 770\n[    0.201968] cpr_adjust_target_quots: apc_corner: Corner[1]: adjusted target quot = 563\n[    0.201982] cpr_adjust_target_quots: apc_corner: Corner[3]: adjusted target quot = 798\n[    0.202044] cpr_get_corner_quot_adjustment: apc_corner: fuse corner 2 quotient adjustment scaling factor: 0.365\n[    0.202051] cpr_get_corner_quot_adjustment: apc_corner: fuse corner 3 quotient adjustment scaling factor: 0.605\n[    0.202062] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[1] = 563\n[    0.202068] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[2] = 612\n[    0.202074] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[3] = 682\n[    0.202080] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[4] = 706\n[    0.202086] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[5] = 764\n[    0.202093] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[6] = 798\n[    0.202099] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[7] = 798\n[    0.202555] cpr_config: apc_corner: Timer count: 0x17700 (for 5000 us)\n[    0.202845] apc_corner: Bringing 0uV into 1-1uV\n[    0.237762] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.237775] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.237797] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.237811] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.237860] mdss_pll_util_resource_init+0x2c/0xac->msm_mdss_config_vreg: gdsc get failed. rc=-517\n[    0.237867] mdss_pll_util_resource_init: Vreg config failed rc=-517\n[    0.237873] mdss_pll_probe: Pll ndx=0 resource init failed rc=-517\n[    0.237910] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.237918] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.237936] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.237949] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.237981] mdss_pll_util_resource_init+0x2c/0xac->msm_mdss_config_vreg: gdsc get failed. rc=-517\n[    0.237987] mdss_pll_util_resource_init: Vreg config failed rc=-517\n[    0.237992] mdss_pll_probe: Pll ndx=1 resource init failed rc=-517\n[    0.240284] KPI: Bootloader start count = 25863\n[    0.240292] KPI: Bootloader end count = 108129\n[    0.240297] KPI: Bootloader display count = 73650\n[    0.240302] KPI: Bootloader load kernel count = 2249\n[    0.240308] KPI: Kernel MPM timestamp = 124061\n[    0.240313] KPI: Kernel MPM Clock frequency = 32768\n[    0.240332] socinfo_print: v0.10, id=313, ver=1.0, raw_id=107, raw_ver=0, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65561, pmic_die_revision=65536 foundry_id=2 serial_number=2957468062\n[    0.241392] arm-smmu 1c40000.arm,smmu-kgsl: Couldn't get clock: gpu_ahb_clk\n[    0.241749] arm-smmu 1e00000.qcom,iommu: Couldn't get clock: iface_clk\n[    0.244152] SCSI subsystem initialized\n[    0.244349] usbcore: registered new interface driver usbfs\n[    0.244397] usbcore: registered new interface driver hub\n[    0.244613] usbcore: registered new device driver usb\n[    0.245241] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pm8937@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.245264] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pm8937@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)\n[    0.245489] input: qpnp_pon as /devices/virtual/input/input0\n[    0.246277] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pmi8950@2:qcom,power-on@800: No PON config. specified\n[    0.246335] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pmi8950@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (secondary PMIC) and 'cold' boot\n[    0.246355] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pmi8950@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)\n[    0.246777] i2c-msm-v2 78b6000.i2c: probing driver i2c-msm-v2\n[    0.246837] i2c-msm-v2 78b6000.i2c: error on clk_get(core_clk):-517\n[    0.246848] i2c-msm-v2 78b6000.i2c: error probe() failed with err:-517\n[    0.246963] i2c-msm-v2 78b7000.i2c: probing driver i2c-msm-v2\n[    0.246998] i2c-msm-v2 78b7000.i2c: error on clk_get(core_clk):-517\n[    0.247008] i2c-msm-v2 78b7000.i2c: error probe() failed with err:-517\n[    0.247248] media: Linux media interface: v0.10\n[    0.247283] Linux video capture interface: v2.00\n[    0.247655] BATTERY: batterydata_init: Battery-data device created!\n[    0.255795] EDAC MC: Ver: 3.0.0\n[    0.257545] aw2013 led driver: initialize.\n[    0.257765] Unable to get pmic_revid rc=-22\n[    0.258538] platform soc:qcom,ion:qcom,ion-heap@8: assigned reserved memory node secure_region@0\n[    0.258679] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@0\n[    0.258816] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.259043] ION heap system created\n[    0.259194] ION heap mm created at 0x00000000f7c00000 with size 7000000\n[    0.259208] ION heap qsecom created at 0x00000000f6c00000 with size 1000000\n[    0.259224] ION heap qsecom_ta created at 0x00000000fec00000 with size 1000000\n[    0.260602] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.260609] ipa ipa_init:4022 fail to register with bus mgr!\n[    0.260692] ipa ipa_plat_drv_probe:5052 ipa_init failed\n[    0.260995] PMIC@SID0: PM8937 v1.0 options: 2, 2, 0, 0\n[    0.261104] PMIC@SID2: PMI8950 v2.0 options: 0, 0, 0, 0\n[    0.264597] Advanced Linux Sound Architecture Driver Initialized.\n[    0.264605] aw87319_pa_init Enter\n[    0.265104] Bluetooth: Core ver 2.22\n[    0.265133] NET: Registered protocol family 31\n[    0.265139] Bluetooth: HCI device and connection manager initialized\n[    0.265150] Bluetooth: HCI socket layer initialized\n[    0.265159] Bluetooth: L2CAP socket layer initialized\n[    0.266635] NetLabel: Initializing\n[    0.266642] NetLabel:  domain hash size = 128\n[    0.266646] NetLabel:  protocols = UNLABELED CIPSOv4\n[    0.266698] NetLabel:  unlabeled traffic allowed by default\n[    0.267276] qcom,gcc-8952 1800000.qcom,gcc: GPU speed bin: 0\n[    0.267486] gfx3d_clk_src: set OPP pair(19200000 Hz: 128 uV) on 1c00000.qcom,kgsl-3d0\n[    0.267755] gfx3d_clk_src: set OPP pair(200000000 Hz: 128 uV) on 1c00000.qcom,kgsl-3d0\n[    0.268282] gfx3d_clk_src: set OPP pair(475000000 Hz: 512 uV) on 1c00000.qcom,kgsl-3d0\n[    0.281705] qcom,gcc-spm-8952 b111200.qcom,spm: Registered GCC SPM clocks\n[    0.281730] qcom,gcc-8952 1800000.qcom,gcc: Registered GCC clocks\n[    0.281797] cpu-clock-8939 b011050.qcom,cpu-clock-8939: No PVS version available. Defaulting to 0!\n[    0.281807] cpu-clock-8939 b011050.qcom,cpu-clock-8939: Speed bin: 0 PVS Version: 0\n[    0.284835] populate_opp_table: clock-cpu-8939: OPP tables populated (cpu 7 and 3)\n[    0.284845] print_opp_table: clock_cpu: a53_c0: OPP voltage for 768000000: 1150000\n[    0.284853] print_opp_table: clock_cpu: a53_c0: OPP voltage for 1094400000: 1270000\n[    0.284860] print_opp_table: clock_cpu: a53_c1: OPP voltage for 960000000: 1150000\n[    0.284866] print_opp_table: clock_cpu: a53_c1: OPP voltage for 1401000000: 1270000\n[    0.285666] qpnp_labibb_regulator_probe: LAB/IBB registered successfully, lab_vreg enable=1 ibb_vreg enable=1 swire_control=0\n[    0.285747] sched-energy energy-costs: cpu=0 eff=1126 [freq=700000 cap=512 power_d0=623] -> [freq=1400000 cap=1024 power_d0=1740]\n[    0.285755] CPU0: update cpu_power 1197\n[    0.285760] CPU0: update cpu_capacity 1024\n[    0.285773] sched-energy energy-costs: cpu=1 eff=1126 [freq=700000 cap=512 power_d0=623] -> [freq=1400000 cap=1024 power_d0=1740]\n[    0.285778] CPU1: update cpu_power 1197\n[    0.285784] CPU1: update cpu_capacity 1024\n[    0.285796] sched-energy energy-costs: cpu=2 eff=1126 [freq=700000 cap=512 power_d0=623] -> [freq=1400000 cap=1024 power_d0=1740]\n[    0.285801] CPU2: update cpu_power 1197\n[    0.285807] CPU2: update cpu_capacity 1024\n[    0.285819] sched-energy energy-costs: cpu=3 eff=1126 [freq=700000 cap=512 power_d0=623] -> [freq=1400000 cap=1024 power_d0=1740]\n[    0.285824] CPU3: update cpu_power 1197\n[    0.285829] CPU3: update cpu_capacity 1024\n[    0.285841] sched-energy energy-costs: cpu=4 eff=1024 [freq=500000 cap=333 power_d0=70] -> [freq=1100000 cap=728 power_d0=213]\n[    0.285847] CPU4: update cpu_power 850\n[    0.285852] CPU4: update cpu_capacity 728\n[    0.285864] sched-energy energy-costs: cpu=5 eff=1024 [freq=500000 cap=333 power_d0=70] -> [freq=1100000 cap=728 power_d0=213]\n[    0.285869] CPU5: update cpu_power 850\n[    0.285875] CPU5: update cpu_capacity 728\n[    0.285886] sched-energy energy-costs: cpu=6 eff=1024 [freq=500000 cap=333 power_d0=70] -> [freq=1100000 cap=728 power_d0=213]\n[    0.285892] CPU6: update cpu_power 850\n[    0.285897] CPU6: update cpu_capacity 728\n[    0.285909] sched-energy energy-costs: cpu=7 eff=1024 [freq=500000 cap=333 power_d0=70] -> [freq=1100000 cap=728 power_d0=213]\n[    0.285915] CPU7: update cpu_power 850\n[    0.285920] CPU7: update cpu_capacity 728\n[    0.287495] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.290215] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.290225] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.290248] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.290263] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.290809] dsi_pll_clock_register_lpm: Registered DSI PLL:0 clocks successfully\n[    0.290880] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.290889] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.290909] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.290923] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.291693] dsi_pll_clock_register_lpm: Registered DSI PLL:1 clocks successfully\n[    0.292171] arm-smmu 1c40000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.292185] arm-smmu 1c40000.arm,smmu-kgsl: \tstream matching with 4 register groups, mask 0x3\n[    0.293488] arm-smmu 1e00000.qcom,iommu: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.293499] arm-smmu 1e00000.qcom,iommu: \tstream matching with 122 register groups, mask 0x7fff\n[    0.293594] arm-smmu 1e00000.qcom,iommu: found 32 context interrupt(s) but have 30 context banks. assuming 30 context interrupts.\n[    0.294131] iommu: Adding device soc:qcom,msm-audio-ion to group 0\n[    0.294321] i2c-msm-v2 78b6000.i2c: probing driver i2c-msm-v2\n[    0.294376] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.294386] i2c-msm-v2 78b6000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.294626] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.294750] aw2013_led_probe start\n[    0.480317] AW87319 CHIPID=0x9b\n[    0.500225] i2c-msm-v2 78b7000.i2c: probing driver i2c-msm-v2\n[    0.500275] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.500284] i2c-msm-v2 78b7000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.500484] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.502903] cpufreq: driver msm up and running\n[    0.504947] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.504951] ipa ipa_init:4022 fail to register with bus mgr!\n[    0.505008] ipa ipa_plat_drv_probe:5052 ipa_init failed\n[    0.505362] clocksource: Switched to clocksource arch_sys_counter\n[    0.541292] VFS: Disk quotas dquot_6.6.0\n[    0.541340] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.541398] msm_bus_fabric_init_driver\n[    0.546440] msm_bus_device 580000.ad-hoc-bus: Bus scaling driver probe successful\n[    0.547573] NET: Registered protocol family 2\n[    0.547979] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.548204] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.548687] TCP: Hash tables configured (established 32768 bind 32768)\n[    0.548728] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.548793] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.548955] NET: Registered protocol family 1\n[    0.549596] gcc-mdss-8952 soc:qcom,gcc-mdss@1800000: Registered GCC MDSS clocks.\n[    0.550542] ipa ipa2_uc_state_check:297 uC interface not initialized\n[    0.550554] ipa ipa_sps_irq_control_all:963 EP (2) not allocated.\n[    0.550559] ipa ipa_sps_irq_control_all:963 EP (5) not allocated.\n[    0.553573] sps:BAM 0x0000000007904000 is registered.\n[    0.555979] sps:BAM 0x0000000007904000 (va:0xffffff800ae40000) enabled: ver:0x27, number of pipes:20\n[    0.567636] IPA driver initialization was successful.\n[    0.568019] Trying to unpack rootfs image as initramfs...\n[    0.863124] Freeing initrd memory: 7472K\n[    0.863717] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.867131] audit: initializing netlink subsys (disabled)\n[    0.867173] audit: type=2000 audit(0.859:1): initialized\n[    0.867398] Initialise system trusted keyrings\n[    0.868742] workingset: timestamp_bits=61 max_order=20 bucket_order=0\n[    0.873736] Registering sdcardfs 0.1\n[    0.873914] fuse init (API version 7.26)\n[    0.874451] SELinux:  Registering netfilter hooks\n[    0.874649] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    0.874653] pfk_f2fs [pfk_f2fs_init]: PFK F2FS inited successfully\n[    0.874658] pfk [pfk_init]: Driver initialized successfully\n[    0.878128] Key type asymmetric registered\n[    0.878133] Asymmetric key parser 'x509' registered\n[    0.878144] io scheduler noop registered\n[    0.878282] io scheduler cfq registered (default)\n[    0.886217] msm_mdss_get_res_byname: 'vbif_nrt_phys' resource not found\n[    0.886231] mdss_mdp_probe+0x1ac/0x16dc->msm_mdss_ioremap_byname: 'vbif_nrt_phys' msm_mdss_get_res_byname failed\n[    0.886415] mdss_mdp_irq_clk_register: unable to get clk: lut_clk\n[    0.886428] mdss_mdp_irq_clk_register: unable to get clk: mnoc_clk\n[    0.886778] No change in context(0==0), skip\n[    0.887232] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:0 num:0 rect:0 ndx:0x1 prio:0\n[    0.887249] mdss_mdp_pipe_addr_setup: type:1 ftchid:-1 xinid:1 num:3 rect:0 ndx:0x8 prio:1\n[    0.887254] mdss_mdp_pipe_addr_setup: type:1 ftchid:-1 xinid:5 num:4 rect:0 ndx:0x10 prio:2\n[    0.887267] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:2 num:6 rect:0 ndx:0x40 prio:3\n[    0.887280] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:7 num:10 rect:0 ndx:0x400 prio:0\n[    0.887290] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-pipe-sw-reset-off : u32 array read\n[    0.887378] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-ib-factor-overlap : u32 array read\n[    0.887386] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-bus-througput-factor : u32 array read\n[    0.887605] xlog_status: enable:1, panic:1, dump:2\n[    0.887841] iommu: Adding device 1a00000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb to group 1\n[    0.888044] iommu: Adding device 1a00000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb to group 2\n[    0.888217] mdss_mdp_probe: mdss version = 0x100e0000, bootloader display is on, num 1, intf_sel=0x00000100\n[    0.890577] mdss_smmu_util_parse_dt_clock: clocks are not defined\n[    0.890586] mdss_smmu_probe: iommu v2 domain[0] mapping and clk register successful!\n[    0.890602] mdss_smmu_util_parse_dt_clock: clocks are not defined\n[    0.890608] mdss_smmu_probe: iommu v2 domain[2] mapping and clk register successful!\n[    0.890885] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.890896] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.890905] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.891399] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->0\n[    0.891563] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_ili9881c_ebbgDJN_720p_video:1:none:cfg:single_dsi panel_name:qcom,mdss_dsi_ili9881c_ebbgDJN_720p_video\n[    0.891581] mdss_dsi_panel_init: Panel Name = ili9881c_HD720p_video_EbbgDJN\n[    0.891720] mdss_dsi_panel_timing_from_dt: found new timing \"qcom,mdss_dsi_ili9881c_ebbgDJN_720p_video\" (ffffffc04ea67298)\n[    0.891735] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-post-panel-on-command\n[    0.891742] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-timing-switch-command\n[    0.891746] mdss_dsi_panel_get_dsc_cfg_np: cannot find dsc config node:\n[    0.891842] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-idle-on-command\n[    0.891848] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-idle-off-command\n[    0.891873] mdss_dsi_parse_panel_features: ulps feature enabled\n[    0.891879] mdss_dsi_parse_panel_features: ulps during suspend feature enabled\n[    0.891886] mdss_dsi_parse_dms_config: dynamic switch feature enabled: 0\n[    0.891945] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-on\n[    0.891951] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-off\n[    0.892000] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.892008] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.892016] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.892025] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.892166] mdss_dsi_parse_ctrl_params:4167 Unable to read qcom,display-id, data=0000000000000000,len=45\n[    0.892177] mdss_dsi_parse_gpio_params: bklt_en gpio not specified\n[    0.892182] mdss_dsi_parse_gpio_params: ext vdd gpio not specified\n[    0.892218] mdss_dsi_retrieve_ctrl_resources: phy_regulator_base=ffffff800ab1db80 phy_regulator_size=30\n[    0.892223] mdss_dsi_retrieve_ctrl_resources: ctrl_base=ffffff800a7de000 ctrl_size=300 phy_base=ffffff800ab1b400 phy_size=280\n[    0.892509] dsi_panel_device_register: Continuous splash enabled\n[    0.892583] mdss_register_panel: adding framebuffer device 1a94000.qcom,mdss_dsi_ctrl0\n[    0.914370] mdss_dsi_ctrl_probe: Dsi Ctrl->0 initialized, DSI rev:0x10040002, PHY rev:0x1\n[    0.914531] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->1\n[    0.914538] mdss_dsi_pinctrl_init: failed to get pinctrl\n[    0.914541] mdss_dsi_ctrl_probe: failed to get pin resources\n[    0.914569] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_ili9881c_ebbgDJN_720p_video:1:none:cfg:single_dsi panel_name:none\n[    0.914573] mdss_dsi_config_panel: can't find panel node 0:qcom,mdss_dsi_ili9881c_ebbgDJN_720p_video:1:none:cfg:single_dsi\n[    0.914577] mdss_dsi_ctrl_probe: panel configuration failed\n[    0.914588] mdss_dsi_ctrl: probe of 1a96000.qcom,mdss_dsi_ctrl1 failed with error -22\n[    0.914857] mdss_dsi_status_init: DSI status check interval:5000\n[    0.915053] mdss_register_panel: adding framebuffer device soc:qcom,mdss_wb_panel\n[    0.915541] mdss_fb_probe: fb0: split_mode:0 left:0 right:0\n[    0.915921] mdss_fb_register: FrameBuffer[0] 720x1280 registered successfully!\n[    0.916139] mdss_fb_probe: fb1: split_mode:0 left:0 right:0\n[    0.916205] mdss_fb_register: FrameBuffer[1] 640x640 registered successfully!\n[    0.916268] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    0.916364] qcom-sps-dma 7884000.qcom,sps-dma: dma_async_device_register: device has no channels!\n[    0.916404] qcom-sps-dma 7ac4000.qcom,sps-dma: dma_async_device_register: device has no channels!\n[    0.917433] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    0.917452] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    0.919006] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.919011] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    0.919017] memshare: hyp_assign_phys failed size=2097152 err=-5\n[    0.919044] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.919221] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.921581] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.921586] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    0.921591] memshare: hyp_assign_phys failed size=5242880 err=-5\n[    0.921600] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.923096] minidump-id not found for adsp\n[    0.923210] minidump-id not found for wcnss\n[    0.923404] minidump-id not found for venus\n[    0.923421] subsys-pil-tz 1de0000.qcom,venus: for venus segments only will be dumped.\n[    0.924490] minidump-id not found for modem\n[    0.924803] msm-dcc b3000.dcc: DCC XPU is not specified\n[    0.926135] wcnss: wcnss_wlan probed in built-in mode\n[    0.926804] msm_serial_hs module loaded\n[    0.928580] random: fast init done\n[    0.928663] random: crng init done\n[    0.932445] diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    0.932450] diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    0.998035] diag: In __diag_glink_init, unable to register for glink channel DIAG_CTRL\n[    0.999204] diag: In __diag_glink_init, unable to register for glink channel DIAG_DATA\n[    1.000321] diag: In __diag_glink_init, unable to register for glink channel DIAG_CMD\n[    1.001437] diag: In __diag_glink_init, unable to register for glink channel DIAG_DCI_DATA\n[    1.002551] diag: In __diag_glink_init, unable to register for glink channel DIAG_DCI_CMD\n[    1.007659] iommu: Adding device 1c40000.qcom,kgsl-iommu:gfx3d_user to group 3\n[    1.034752] brd: module loaded\n[    1.057691] loop: module loaded\n[    1.059048] zram: Added device: zram0\n[    1.059998] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1000000\n[    1.060064] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    1.060073] QSEECOM: qseecom_probe: qseecom clocks handled by other subsystem\n[    1.060077] QSEECOM: qseecom_probe: qsee reentrancy support phase is not defined, setting to default 0\n[    1.060282] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    1.061781] QCE50: __qce_get_device_tree_data: BAM Apps EE is not defined, setting to default 1\n[    1.062089] qce 720000.qcedev: QTI Crypto 5.3.3 device found @0x720000\n[    1.062099] qce 720000.qcedev: CE device = 0x0 IO base, CE = ffffff800b820000 Consumer (IN) PIPE 2,\n               Producer (OUT) PIPE 3 IO base BAM = 0000000000000000\n               BAM IRQ 122 Engines Availability = 0x2010853\n[    1.062265] sps:BAM 0x0000000000704000 is registered.\n[    1.062455] sps:BAM 0x0000000000704000 (va:0xffffff800baa0000) enabled: ver:0x27, number of pipes:8\n[    1.062645] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000000704000 irq 122\n[    1.067276] QCE50: __qce_get_device_tree_data: BAM Apps EE is not defined, setting to default 1\n[    1.067626] qcrypto 720000.qcrypto: QTI Crypto 5.3.3 device found @0x720000\n[    1.067634] qcrypto 720000.qcrypto: CE device = 0x0 IO base, CE = ffffff800bae0000 Consumer (IN) PIPE 4,\n               Producer (OUT) PIPE 5 IO base BAM = 0000000000000000\n               BAM IRQ 122 Engines Availability = 0x2010853\n[    1.067886] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000000704000 irq 122\n[    1.070259] qcrypto 720000.qcrypto: qcrypto-ecb-aes\n[    1.070389] qcrypto 720000.qcrypto: qcrypto-cbc-aes\n[    1.070485] qcrypto 720000.qcrypto: qcrypto-ctr-aes\n[    1.070580] qcrypto 720000.qcrypto: qcrypto-ecb-des\n[    1.070674] qcrypto 720000.qcrypto: qcrypto-cbc-des\n[    1.070768] qcrypto 720000.qcrypto: qcrypto-ecb-3des\n[    1.070863] qcrypto 720000.qcrypto: qcrypto-cbc-3des\n[    1.070962] qcrypto 720000.qcrypto: qcrypto-xts-aes\n[    1.071062] qcrypto 720000.qcrypto: qcrypto-sha1\n[    1.071160] qcrypto 720000.qcrypto: qcrypto-sha256\n[    1.071257] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    1.071352] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    1.071450] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    1.071544] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    1.071640] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    1.071736] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    1.071836] qcrypto 720000.qcrypto: qcrypto-hmac-sha1\n[    1.071932] qcrypto 720000.qcrypto: qcrypto-hmac-sha256\n[    1.072028] qcrypto 720000.qcrypto: qcrypto-aes-ccm\n[    1.072123] qcrypto 720000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    1.072545] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    1.072602] ICE IRQ = 115\n[    1.072609] CHRDEV \"icesdcc\" major number 233 goes below the dynamic allocation range\n[    1.073081] SCSI Media Changer driver v0.25 \n[    1.074043] libphy: Fixed MDIO Bus: probed\n[    1.074048] tun: Universal TUN/TAP device driver, 1.6\n[    1.074051] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    1.074094] PPP generic driver version 2.4.2\n[    1.074149] PPP BSD Compression module registered\n[    1.074153] PPP Deflate Compression module registered\n[    1.074164] PPP MPPE Compression module registered\n[    1.074168] NET: Registered protocol family 24\n[    1.074179] PPTP driver version 0.8.5\n[    1.074469] usbcore: registered new interface driver r8152\n[    1.074496] usbcore: registered new interface driver asix\n[    1.074544] usbcore: registered new interface driver ax88179_178a\n[    1.074570] usbcore: registered new interface driver cdc_ether\n[    1.074593] usbcore: registered new interface driver net1080\n[    1.074616] usbcore: registered new interface driver cdc_subset\n[    1.074639] usbcore: registered new interface driver zaurus\n[    1.074670] usbcore: registered new interface driver cdc_ncm\n[    1.074675] CHRDEV \"uio\" major number 232 goes below the dynamic allocation range\n[    1.075677] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    1.075682] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    1.075690] msm_sharedmem: setup_shared_ram_perms: hyp_assign_phys failed IPA=0x0160x00000000f6700000 size=1572864 err=-5\n[    1.075758] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.076035] msm_otg 78db000.usb: msm_otg probe\n[    1.077231] msm_otg 78db000.usb: OTG regs = ffffff800ae13000\n[    1.078306] CHRDEV \"usbmon\" major number 231 goes below the dynamic allocation range\n[    1.078359] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    1.078364] ehci-platform: EHCI generic platform driver\n[    1.078744] ehci-msm: Qualcomm On-Chip EHCI Host Controller\n[    1.078972] Unable to get vbus_otg\n[    1.078978] msm_hsusb_host msm_hsusb_host: unable to register with transceiver\n[    1.079050] usbcore: registered new interface driver cdc_acm\n[    1.079053] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters\n[    1.079084] usbcore: registered new interface driver usb-storage\n[    1.079105] usbcore: registered new interface driver ums-alauda\n[    1.079128] usbcore: registered new interface driver ums-cypress\n[    1.079148] usbcore: registered new interface driver ums-datafab\n[    1.079169] usbcore: registered new interface driver ums-freecom\n[    1.079190] usbcore: registered new interface driver ums-isd200\n[    1.079214] usbcore: registered new interface driver ums-jumpshot\n[    1.079235] usbcore: registered new interface driver ums-karma\n[    1.079255] usbcore: registered new interface driver ums-onetouch\n[    1.079276] usbcore: registered new interface driver ums-sddr09\n[    1.079296] usbcore: registered new interface driver ums-sddr55\n[    1.079319] usbcore: registered new interface driver ums-usbat\n[    1.079370] usbcore: registered new interface driver usbserial\n[    1.079394] usbcore: registered new interface driver usb_ehset_test\n[    1.079422] CHRDEV \"ttyGS\" major number 230 goes below the dynamic allocation range\n[    1.080729] msm_sharedmem: sharedmem_register_qmi: qmi init successful\n[    1.081548] CHRDEV \"rmnet_ctrl\" major number 229 goes below the dynamic allocation range\n[    1.082278] mousedev: PS/2 mouse device common for all mice\n[    1.082543] gf:gf_init, entry\n[    1.082547] --------gf_init start.--------\n[    1.082932] gf:gf_probe, entry\n[    1.082935] --------gf_probe start.--------\n[    1.083065] input: gf3208 as /devices/virtual/input/input1\n[    1.083108] --------gf_probe end---OK.--------\n[    1.083156]  status = 0x0\n[    1.083159] gf:gf_init, exit\n[    1.083162] --------gf_init end---OK.--------\n[    1.083461] fpc1020 soc:fpc1020: fpc1020_probe: ok\n[    1.083488] fpc1020_init OK\n[    1.083861] qcom,qpnp-rtc 200f000.qcom,spmi:qcom,pm8937@0:qcom,pm8937_rtc: rtc core: registered qpnp_rtc as rtc0\n[    1.084044] i2c /dev entries driver\n[    1.088813] iommu: Adding device 1d00000.qcom,vidc:non_secure_cb to group 4\n[    1.089303] iommu: Adding device 1d00000.qcom,vidc:secure_bitstream_cb to group 5\n[    1.089626] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    1.089631] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    1.089710] iommu: Adding device 1d00000.qcom,vidc:secure_pixel_cb to group 6\n[    1.089981] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    1.089985] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    1.090108] iommu: Adding device 1d00000.qcom,vidc:secure_non_pixel_cb to group 7\n[    1.090424] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    1.090428] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    1.094496] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb1 to group 8\n[    1.094797] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb3 to group 9\n[    1.094954] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb4 to group 10\n[    1.096092] msm 1b00000.qcom,msm-cam: Entity type for entity msm_cci was not initialized!\n[    1.096147] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    1.099741] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csiphy was not initialized!\n[    1.099806] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    1.099914] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csiphy was not initialized!\n[    1.099969] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    1.100408] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    1.100418] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    1.100563] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    1.100576] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    1.100716] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    1.100726] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    1.101068] msm_actuator_platform_probe:2000 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    1.101075] msm 1b00000.qcom,msm-cam: Entity type for entity msm_actuator was not initialized!\n[    1.101570] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    1.149839] msm_cci_init:1434: hw_version = 0x10020004\n[    1.399108] match id for s5k3l8_ofilm module_id=7\n[    1.446481] msm 1b00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    1.446758] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    1.489004] msm_cci_init:1434: hw_version = 0x10020004\n[    1.562996] match id for ov5675_ofilm module_id=7\n[    1.604291] msm 1b00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    1.604550] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    1.656093] msm_cci_init:1434: hw_version = 0x10020004\n[    1.905340] match id for s5k3l8_sunny module_id=7\n[    1.905344] msm_eeprom_platform_probe match id for s5k3l8_sunny failed\n[    1.956482] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    1.998699] msm_cci_init:1434: hw_version = 0x10020004\n[    1.999147] msm_cci_irq:1786 MASTER_0 error 0x8000000\n[    2.490046] msm_cci_wait: 301 wait for queue: 0\n[    2.490061] msm_cci_transfer_end: 548 failed rc -110\n[    2.490065] msm_cci_data_queue: 808 failed rc -110\n[    2.490069] msm_camera_cci_i2c_write: line 135 rc = -110\n[    2.510032] read_eeprom_memory: page write failed\n[    2.510035] msm_eeprom_platform_probe read_eeprom_memory failed\n[    2.551337] qcom,eeprom: probe of 1b0c000.qcom,cci:qcom,eeprom@3 failed with error -110\n[    2.551542] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    2.603652] msm_cci_init:1434: hw_version = 0x10020004\n[    2.852943] match id for ov13855_sunny module_id=7\n[    2.852947] msm_eeprom_platform_probe match id for ov13855_sunny failed\n[    2.904920] msm_flash_get_dt_data:1115 No valid flash GPIOs data\n[    2.904928] msm 1b00000.qcom,msm-cam: Entity type for entity msm_camera_flash was not initialized!\n[    2.905527] adp1660 i2c_add_driver success\n[    2.905914] msm 1b00000.qcom,msm-cam: Entity type for entity msm_sensor_init was not initialized!\n[    2.906298] msm_camera_get_dt_gpio_set_tbl failed 794\n[    2.906482] msm_camera_get_dt_gpio_set_tbl failed 794\n[    2.909451] MSM-CPP cpp_init_hardware:1011 CPP HW Version: 0x40030002\n[    2.909458] MSM-CPP cpp_init_hardware:1029 stream_cnt:0\n[    2.909467] msm 1b00000.qcom,msm-cam: Entity type for entity 1b04000.qcom,cpp was not initialized!\n[    2.911612] CAM-SOC msm_camera_get_reg_base:787 err: mem resource vfe_fuse not found\n[    2.911618] CAM-SOC msm_camera_get_res_size:830 err: mem resource vfe_fuse not found\n[    2.911801] msm 1b00000.qcom,msm-cam: Entity type for entity 1b10000.qcom,vfe0 was not initialized!\n[    2.911915] CAM-SOC msm_camera_get_reg_base:787 err: mem resource vfe_fuse not found\n[    2.911920] CAM-SOC msm_camera_get_res_size:830 err: mem resource vfe_fuse not found\n[    2.912026] msm 1b00000.qcom,msm-cam: Entity type for entity 1b14000.qcom,vfe1 was not initialized!\n[    2.912630] msm 1b00000.qcom,msm-cam: Entity type for entity 1b31000.qcom,ispif was not initialized!\n[    2.912948] __msm_jpeg_init:1537] Jpeg Device id 0\n[    2.913088] CHRDEV \"jpeg0\" major number 228 goes below the dynamic allocation range\n[    2.913208] msm 1b00000.qcom,msm-cam: Entity type for entity msm_buf_mngr was not initialized!\n[    2.913950] FG: fg_check_ima_exception: Initial ima_err_sts=0 ima_exp_sts=0 ima_hw_sts=0\n[    2.915455] FG: fg_probe: FG Probe success - FG Revision DIG:3.1 ANA:1.2 PMIC subtype=17\n[    2.917372] thermal thermal_zone0: failed to read out thermal zone (-517)\n[    2.917558] thermal thermal_zone1: failed to read out thermal zone (-517)\n[    2.917651] thermal thermal_zone2: failed to read out thermal zone (-517)\n[    2.917941] qpnp_vadc_read: no vadc_chg_vote found\n[    2.917945] qpnp_vadc_get_temp: VADC read error with -22\n[    2.917951] thermal thermal_zone34: failed to read out thermal zone (-22)\n[    2.940353] device-mapper: uevent: version 1.0.3\n[    2.940496] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com\n[    2.941646] device-mapper: req-crypt: dm-req-crypt successfully initalized.\n\n[    2.942021] CHRDEV \"bt\" major number 227 goes below the dynamic allocation range\n[    2.942114] sdhci: Secure Digital Host Controller Interface driver\n[    2.942117] sdhci: Copyright(c) Pierre Ossman\n[    2.942120] sdhci-pltfm: SDHCI platform and OF driver helper\n[    2.942797] qcom,leds-qpnp: probe of 200f000.qcom,spmi:qcom,pmi8950@2:qcom,leds@a100 failed with error -10\n[    2.945880] usbcore: registered new interface driver usbhid\n[    2.945885] usbhid: USB HID core driver\n[    2.946013] ashmem: initialized\n[    2.946161] qpnp_coincell_charger_show_state: enabled=Y, voltage=3200 mV, resistance=2100 ohm\n[    2.948044] sdhci_msm 7824900.sdhci: failed opening nvmem cell err : -2\n[    2.948055] qcom_ice_get_pdevice: found ice device ffffffc0aef42c00\n[    2.948059] qcom_ice_get_pdevice: matching platform device ffffffc0b08fe000\n[    2.948258] sdhci_msm 7824900.sdhci: Failed to get dll hsr settings from dt\n[    2.949841] qcom_ice 7803000.sdcc1ice: QC ICE 2.1.44 device found @0xffffff800b928000\n[    2.950472] mmc0: SDHCI controller on 7824900.sdhci [7824900.sdhci] using 64-bit ADMA in CMDQ mode\n[    3.045567] mmc0: Out-of-interrupt timeout is 100[ms]\n[    3.045573] mmc0: eMMC FW version: 0x03\n[    3.045576] mmc0: CMDQ supported: depth: 32\n[    3.045580] mmc0: cache barrier support 1 flush policy 1\n[    3.051630] cmdq_host_alloc_tdl: desc_size: 768 data_sz: 63488 slot-sz: 24\n[    3.051758] mmc0: CMDQ enabled on card\n[    3.051769] mmc0: new HS400 Enhanced strobe MMC card at address 0001\n[    3.054294] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0xf) latency=-1\n[    3.054301] sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xf0) latency=-1\n[    3.054368] mmcblk0: mmc0:0001 032G32 29.1 GiB \n[    3.055582] mmcblk0rpmb: mmc0:0001 032G32 partition 3 4.00 MiB\n[    3.057912]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42 p43 p44 p45 p46 p47 p48 p49\n[    3.063536] sdhci_msm 7864900.sdhci: failed opening nvmem cell err : -2\n[    3.063548] sdhci_msm 7864900.sdhci: sdhci_msm_probe: ICE device is not enabled\n[    3.063760] sdhci_msm 7864900.sdhci: Failed to get dll hsr settings from dt\n[    3.076430] mmc1: SDHCI controller on 7864900.sdhci [7864900.sdhci] using 64-bit ADMA in legacy mode\n[    3.106245] bimc-bwmon 408000.qcom,cpu-bwmon: BW HWmon governor registered.\n[    3.109827] CHRDEV \"sensors\" major number 226 goes below the dynamic allocation range\n[    3.110175] usbcore: registered new interface driver snd-usb-audio\n[    3.110697] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.111108] tz_log 8600720.tz-log: Hyp log service is not supported\n[    3.131505] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx group_id: 0x9100\n[    3.131703] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0 dev_id: 0x9000\n[    3.131715] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.131741] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx group_id: 0x9101\n[    3.131926] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0 dev_id: 0x9001\n[    3.131937] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.131963] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx group_id: 0x9110\n[    3.132151] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0 dev_id: 0x9010\n[    3.132162] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.132186] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx group_id: 0x9111\n[    3.132370] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0 dev_id: 0x9011\n[    3.132380] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.132406] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx group_id: 0x9120\n[    3.132591] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0 dev_id: 0x9020\n[    3.132602] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.132625] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx group_id: 0x9121\n[    3.132811] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0 dev_id: 0x9021\n[    3.132822] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.132848] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx group_id: 0x9130\n[    3.133034] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0 dev_id: 0x9030\n[    3.133048] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.133076] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx group_id: 0x9131\n[    3.133264] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0 dev_id: 0x9031\n[    3.133274] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.133301] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx group_id: 0x9140\n[    3.133486] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0 dev_id: 0x9040\n[    3.133497] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.133521] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx group_id: 0x9141\n[    3.133707] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0 dev_id: 0x9041\n[    3.133717] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.137388] msm8952_asoc_machine_probe: request spk_pa_gpio  fail!\n[    3.137392] msm8952_asoc_machine_probe: [hjf] request spk_pa_gpio is 124!\n[    3.137406] msm8952_asoc_machine_probe: [hjf] request headset_gpio is 129!\n[    3.137425] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.137431] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.137439] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.137445] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.137456] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.137989] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.137996] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.140430] CHRDEV \"avtimer\" major number 224 goes below the dynamic allocation range\n[    3.140856] audio_notifier_init: PDR register failed, ret = -19, disable service\n[    3.142190] audio_notifer_reg_service: service SSR_ADSP is in use\n[    3.142195] audio_notifer_reg_service: service SSR_MODEM is in use\n[    3.143492] u32 classifier\n[    3.143495]     Actions configured\n[    3.143502] Netfilter messages via NETLINK v0.30.\n[    3.143668] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    3.143771] ctnetlink v0.93: registering with nfnetlink.\n[    3.144023] xt_time: kernel timezone is -0000\n[    3.144094] gre: GRE over IPv4 demultiplexor driver\n[    3.144098] IPv4 over IPsec tunneling driver\n[    3.144417] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    3.144587] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    3.144617] Initializing XFRM netlink socket\n[    3.144630] IPsec XFRM device driver\n[    3.144850] NET: Registered protocol family 10\n[    3.146604] mip6: Mobile IPv6\n[    3.146618] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    3.147008] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    3.147544] NET: Registered protocol family 17\n[    3.147558] NET: Registered protocol family 15\n[    3.147576] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.\n[    3.147580] Ebtables v2.0 registered\n[    3.147645] l2tp_core: L2TP core driver, V2.0\n[    3.147654] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    3.147657] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    3.147668] l2tp_netlink: L2TP netlink interface\n[    3.147689] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    3.147693] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    3.147784] sctp: Hash tables configured (bind 256/256)\n[    3.148601] NET: Registered protocol family 27\n[    3.149125] spmi spmi-0: error: impermissible write to peripheral sid:0 addr:0xc741\n[    3.149131] qcom-spmi-gpio 200f000.qcom,spmi:qcom,pm8937@0:gpios: write 0x41 failed\n[    3.149138] adv_vreg: Failed to request enable GPIO1279: -19\n[    3.149143] reg-fixed-voltage soc:adv_vreg: Failed to register regulator: -19\n[    3.152255] minidump-id not found for adsp\n[    3.154684] subsys-pil-tz c200000.qcom,lpass: for adsp segments only will be dumped.\n[    3.156131] minidump-id not found for wcnss\n[    3.156240] subsys-pil-tz a21b000.qcom,pronto: for wcnss segments only will be dumped.\n[    3.156715] minidump-id not found for modem\n[    3.156991] pil-q6v5-mss 4080000.qcom,mss: for modem segments only will be dumped.\n[    3.157038] pil-q6v5-mss 4080000.qcom,mss: for md_modem segments only will be dumped.\n[    3.157175] Unable to get vbus_otg\n[    3.157180] msm_hsusb_host msm_hsusb_host: unable to register with transceiver\n[    3.157955] SMBCHG: smbchg_hvdcp_enable_cb: smbchg_hvdcp_enable_cb HVDCP enabled\n[    3.215463] qpnp-smbcharger 200f000.qcom,spmi:qcom,pmi8950@2:qcom,qpnp-smbcharger: SMBCHG successfully probe Charger version=SCHG_LITE Revision DIG:0.0 ANA:0.1 batt=1 dc=0 usb=0\n[    3.215771] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.216343] msm8952_asoc_machine_probe: request spk_pa_gpio  fail!\n[    3.216348] msm8952_asoc_machine_probe: [hjf] request spk_pa_gpio is 124!\n[    3.216353] msm8952_asoc_machine_probe: request headset_gpio fail!\n[    3.216356] msm8952_asoc_machine_probe: [hjf] request headset_gpio is 129!\n[    3.216375] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.216382] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.216390] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.216396] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.216407] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.216981] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.216988] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.217447] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.217915] msm8952_asoc_machine_probe: request spk_pa_gpio  fail!\n[    3.217919] msm8952_asoc_machine_probe: [hjf] request spk_pa_gpio is 124!\n[    3.217924] msm8952_asoc_machine_probe: request headset_gpio fail!\n[    3.217927] msm8952_asoc_machine_probe: [hjf] request headset_gpio is 129!\n[    3.217940] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.217946] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.217953] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.217959] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.217969] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.218444] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.218451] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.218939] Registered cp15_barrier emulation handler\n[    3.218953] Registered setend emulation handler\n[    3.218978] core_ctl: Creating CPU group 0\n[    3.218982] core_ctl: Init CPU0 state\n[    3.218985] core_ctl: Init CPU1 state\n[    3.218988] core_ctl: Init CPU2 state\n[    3.218990] core_ctl: Init CPU3 state\n[    3.219099] core_ctl: Creating CPU group 4\n[    3.219103] core_ctl: Init CPU4 state\n[    3.219106] core_ctl: Init CPU5 state\n[    3.219108] core_ctl: Init CPU6 state\n[    3.219111] core_ctl: Init CPU7 state\n[    3.219414] registered taskstats version 1\n[    3.219428] Loading compiled-in X.509 certificates\n[    3.220403] msm_otg 78db000.usb: phy_reset: success\n[    3.224555] Loaded X.509 cert 'Build time autogenerated kernel key: 9955f0cc9772f9ddadad2507e4c3585e8ea93706'\n[    3.225915] qcom,cc-debug-8952 1874000.qcom,cc-debug: Registered Debug Mux successfully\n[    3.230939] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb to group 11\n[    3.232022] CHRDEV \"adsprpc-smd\" major number 223 goes below the dynamic allocation range\n[    3.232333] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.232853] msm8952_asoc_machine_probe: request spk_pa_gpio  fail!\n[    3.232857] msm8952_asoc_machine_probe: [hjf] request spk_pa_gpio is 124!\n[    3.232863] msm8952_asoc_machine_probe: request headset_gpio fail!\n[    3.232866] msm8952_asoc_machine_probe: [hjf] request headset_gpio is 129!\n[    3.232884] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.232891] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.232898] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.232904] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.232916] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.233478] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.233484] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.234737] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input2\n[    3.235076] i2c-msm-v2 78b7000.i2c: msm_bus_scale_register_client(mstr-id:86):0x19 (ok)\n[    3.235312] [FTS_TS/I]fts_ts_probe:Touch Screen(I2C BUS) driver prboe...\n[    3.235319] [FTS_TS/I]fts_ts_probe_entry:Focaltech V3.1 20190807\n[    3.235325] [FTS_TS/I]fts_get_dt_coords:display x(0 720) y(0 1280)\n[    3.235335] [FTS_TS/I]fts_parse_dt:VK Number:3, key:(139,172,158), coords:(140,2000),(360,2000),(580,2000)\n[    3.235342] [FTS_TS/I]fts_parse_dt:max touch number:10, irq gpio:65, reset gpio:64\n[    3.235601] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.236118] msm8952_asoc_machine_probe: request spk_pa_gpio  fail!\n[    3.236122] msm8952_asoc_machine_probe: [hjf] request spk_pa_gpio is 124!\n[    3.236128] msm8952_asoc_machine_probe: request headset_gpio fail!\n[    3.236131] msm8952_asoc_machine_probe: [hjf] request headset_gpio is 129!\n[    3.236146] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.236153] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.236160] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.236166] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.236177] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.236697] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.236704] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.237940] [FTS_TS/I]fts_input_init:set key capabilities\n[    3.238040] input: fts_ts as /devices/platform/soc/78b7000.i2c/i2c-3/3-0038/input/input3\n[    3.332130] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.332644] msm8952_asoc_machine_probe: request spk_pa_gpio  fail!\n[    3.332648] msm8952_asoc_machine_probe: [hjf] request spk_pa_gpio is 124!\n[    3.332653] msm8952_asoc_machine_probe: request headset_gpio fail!\n[    3.332656] msm8952_asoc_machine_probe: [hjf] request headset_gpio is 129!\n[    3.332672] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.332678] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.332686] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.332692] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.332702] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.333214] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.333220] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.334130] msm_otg 78db000.usb: USB in low power mode\n[    3.480062] [FTS_TS/I]fts_create_apk_debug_channel:Create proc entry success!\n[    3.480089] [FTS_TS/I]fts_create_sysfs:[EX]: sysfs_create_group() succeeded!!\n[    3.480106] [FTS_TS/I]fts_irq_registration:irq:401, flag:2\n[    3.480270] [FTS_TS/I]fts_fwupg_init:fw upgrade init function\n[    3.480282] [FTS_TS/I]fts_ts_probe:Touch Screen(I2C BUS) driver prboe successfully\n[    3.480367] qcom,qpnp-rtc 200f000.qcom,spmi:qcom,pm8937@0:qcom,pm8937_rtc: setting system clock to 1970-01-22 00:38:54 UTC (1816734)\n[    3.481767] [FTS_TS/I]fts_fwupg_work:FTS_AUTO_UPGRADE_EN is disabled, not upgrade when power on\n[    3.482000] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.482545] msm8952_asoc_machine_probe: request spk_pa_gpio  fail!\n[    3.482550] msm8952_asoc_machine_probe: [hjf] request spk_pa_gpio is 124!\n[    3.482555] msm8952_asoc_machine_probe: request headset_gpio fail!\n[    3.482558] msm8952_asoc_machine_probe: [hjf] request headset_gpio is 129!\n[    3.482575] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.482581] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.482590] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.482596] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.482607] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.483136] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.483144] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.483760] lpm_levels_of: idx 1 900\n[    3.483931] lpm_levels_of: Residency < 0 for LPM\n[    3.483935] lpm_levels_of: idx 1 400\n[    3.484140] lpm_levels: register_cluster_lpm_stats()\n[    3.484306] lpm_levels: register_cluster_lpm_stats()\n[    3.485804] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.486340] msm8952_asoc_machine_probe: request spk_pa_gpio  fail!\n[    3.486344] msm8952_asoc_machine_probe: [hjf] request spk_pa_gpio is 124!\n[    3.486350] msm8952_asoc_machine_probe: request headset_gpio fail!\n[    3.486353] msm8952_asoc_machine_probe: [hjf] request headset_gpio is 129!\n[    3.486370] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.486376] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.486384] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.486390] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.486401] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.486933] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.486940] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.487897] qcom,qpnp-flash-led 200f000.qcom,spmi:qcom,pmi8950@3:qcom,leds@d300: Unable to acquire pinctrl\n[    3.490466] rmnet_ipa started initialization\n[    3.490471] IPA SSR support = True\n[    3.490474] IPA ipa-loaduC = True\n[    3.490478] IPA SG support = True\n[    3.490480] IPA Napi Enable = False\n[    3.490484] using default for wan-rx-desc-size = 1024\n[    3.490930] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.491492] msm8952_asoc_machine_probe: request spk_pa_gpio  fail!\n[    3.491496] msm8952_asoc_machine_probe: [hjf] request spk_pa_gpio is 124!\n[    3.491501] msm8952_asoc_machine_probe: request headset_gpio fail!\n[    3.491504] msm8952_asoc_machine_probe: [hjf] request headset_gpio is 129!\n[    3.491521] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.491528] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.491535] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.491541] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.491552] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.492102] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.492110] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.497524] CHRDEV \"wwan_ioctl\" major number 222 goes below the dynamic allocation range\n[    3.499124] ipa ipa_sps_irq_control_all:963 EP (5) not allocated.\n[    3.499130] ipa ipa2_uc_state_check:302 uC is not loaded\n[    3.499513] rmnet_ipa completed initialization\n[    3.499786] RNDIS_IPA module is loaded.\n[    3.499799] clock_late_init: Removing enables held for handed-off clocks\n[    3.500131] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8937@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.500673] msm8952_asoc_machine_probe: request spk_pa_gpio  fail!\n[    3.500677] msm8952_asoc_machine_probe: [hjf] request spk_pa_gpio is 124!\n[    3.500682] msm8952_asoc_machine_probe: request headset_gpio fail!\n[    3.500685] msm8952_asoc_machine_probe: [hjf] request headset_gpio is 129!\n[    3.500702] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.500709] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.500717] msm8952-asoc-wcd c051000.sound: property qcom,cdc-us-euro-gpios in node /soc/sound not found -2\n[    3.500723] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.500734] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.501266] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.501273] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.505555] mem_acc_corner: disabling\n[    3.505609] ALSA device list:\n[    3.505612]   No soundcards found.\n[    3.505679] Warning: unable to open an initial console.\n[    3.506860] Freeing unused kernel memory: 4096K\n[    4.794703] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    4.794906] cpu1 \n[    4.794978] cpu4 \n[    4.795036] \n               Offline CPUs: \n[    4.799082] cpu1 \n[    4.823758] cpu2 \n[    4.875629] cpu3 \n[    4.925450] cpu4 \n[    4.975424] cpu5 \n[    5.026199] cpu6 \n[    5.076046] cpu7 \n\n[    6.481879] of_batterydata_get_best_profile: qrd_msm8937_Atl_4100mah found\n[    6.497674] FG: fg_batt_profile_init: Battery SOC: 77, V: 3898750uV\n[    6.497946] of_batterydata_get_best_profile: qrd_msm8937_Atl_4100mah found\n[   10.132574] Sampling power every 1000 ms\n               Baseline power usage: \n[   85.243216] CPU1: Booted secondary processor [410fd034]\n[   86.248401] 786 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 960 1094 1248 1344 1401\n               \n                960: \n[  175.513582]  3109     3.2 C/MHz    144 mW   11.6 J   21.6 I/mJ    80.4 s\n               1094: \n[  254.761318]  3553     3.2 C/MHz    276 mW   19.4 J   12.9 I/mJ    70.4 s\n               1248: \n[  324.992210]  4040     3.2 C/MHz    371 mW   23.0 J   10.9 I/mJ    61.9 s\n               1344: \n[  391.209217]  4364     3.2 C/MHz    436 mW   25.0 J   10.0 I/mJ    57.3 s\n               1401: \n[  454.447024] CPU4: Booted secondary processor [410fd034]\n[  563.828887]  4550     3.2 C/MHz    259 mW   14.3 J   17.5 I/mJ    55.0 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 768 902 998 1094\n               \n                768: \n[  658.165793]  2494     3.2 C/MHz    136 mW   13.6 J   18.4 I/mJ   100.2 s\n                902: \n[  744.465409]  2915     3.2 C/MHz    210 mW   18.0 J   13.9 I/mJ    85.8 s\n                998: \n[  823.787410]  3219     3.2 C/MHz    194 mW   15.1 J   16.6 I/mJ    77.7 s\n               1094: \n[  823.787410]  3543     3.2 C/MHz    342 mW   24.2 J   10.4 I/mJ    70.6 s\n               \n               \n               Benchmark finished!\n[  823.823535] \n               real\t13m40.183s\n               user\t11m0.752s\n               sys\t0m0.255s\n"
  },
  {
    "path": "results/msm8940/old/post_bench_interrupts.txt",
    "content": "           CPU0       \n  1:      15836     GIC-0 203 Edge      mpm\n  4:       2369   mpm-gic  20 Level     arch_timer\n  6:      82669   mpm-gic  39 Level     arch_mem_timer\n 16:          0   mpm-gic  86 Level     arm-smmu-context-fault\n 17:          0   mpm-gic  90 Level     arm-smmu-context-fault\n 18:          0   mpm-gic  92 Level     arm-smmu-context-fault\n 29:          0   mpm-gic 138 Level     arm-smmu-context-fault\n 34:          0   mpm-gic 145 Level     arm-smmu-context-fault\n 44:          0   mpm-gic  59 Edge      smp2p\n 45:          0   mpm-gic 175 Edge      smp2p\n 46:          0   mpm-gic 323 Edge      smp2p\n 47:         84   mpm-gic 224 Level     spdm_bw_hyp\n 48:          0   mpm-gic  76 Level     msm_vidc\n 49:          0   mpm-gic  65 Level     kgsl-3d0\n 50:          0   mpm-gic 104 Edge      MDSS\n 52:          0   mpm-gic 216 Level     tsens-upper-lower\n 56:          5   mpm-gic 128 Level     i2c-msm-v2-irq\n 57:          0   mpm-gic 129 Level     i2c-msm-v2-irq\n 59:          0   mpm-gic  57 Edge      qcom,smd-modem\n 60:          0   mpm-gic  58 Edge      qcom,smsm-modem\n 61:          0   mpm-gic 174 Edge      qcom,smd-wcnss\n 62:          0   mpm-gic 176 Edge      qcom,smsm-wcnss\n 63:          0   mpm-gic 321 Edge      qcom,smd-adsp\n 64:          0   mpm-gic 322 Edge      qcom,smsm-adsp\n 65:        608   mpm-gic 200 Edge      qcom,smd-rpm\n 66:          0   mpm-gic 166 Edge      msm_otg, msm_hsusb\n 67:          0   mpm-gic 172 Edge      msm_otg\n 68:          0   mpm-gic  35 Edge      apps_wdog_bark\n 85:          0  pmic_arb 8388655 Edge      qpnp_kpdpwr_status\n 86:          0  pmic_arb 8454191 Edge      qpnp_resin_status\n 89:          0  pmic_arb 37748779 Edge      pm8937_tz\n101:          0  pmic_arb 54722612 Edge      qpnp_adc_tm_high_interrupt\n102:          0  pmic_arb 54788148 Edge      qpnp_adc_tm_low_interrupt\n112:          0  pmic_arb 1031929862 Edge      qpnp_wled_sc_irq\n113:          0  pmic_arb 1006632968 Edge      haptics_sc_irq\n114:          0  pmic_arb 1006698504 Edge      haptics_play_irq\n115:          0   mpm-gic 344 Edge      7803000.sdcc1ice\n117:         89   mpm-gic 155 Edge      mmc0\n118:          3   mpm-gic 170 Edge      7824900.sdhci\n119:         13     GIC-0 157 Edge      mmc1\n120:          2     GIC-0 253 Edge      7864900.sdhci\n121:          0   msmgpio  67 Edge      7864900.sdhci cd\n122:          0   mpm-gic 239 Level     sps\n123:          0   mpm-gic  56 Edge      modem\n124:          0   mpm-gic 325 Edge      adsp\n125:          0   mpm-gic 181 Edge      wcnss\n128:          0   mpm-gic  47 Edge      cpr\n129:          0   mpm-gic 110 Edge      csiphy\n130:          0   mpm-gic 111 Edge      csiphy\n131:          0   mpm-gic  83 Edge      csid\n132:          0   mpm-gic  84 Edge      csid\n133:          0   mpm-gic 185 Edge      csid\n134:          0   mpm-gic  87 Edge      ispif\n135:          0   mpm-gic  89 Edge      vfe\n136:          0   mpm-gic  61 Edge      vfe\n139:        526   mpm-gic  82 Edge      cci\n141:          0   mpm-gic 260 Edge      ipa\n142:         18   mpm-gic 262 Level     sps\n272:          0  pmic_arb 101777448 Edge      qpnp_rtc_alarm\n273:          0  pmic_arb 604110881 Edge      full-soc\n274:          0  pmic_arb 604176417 Edge      empty-soc\n275:          4  pmic_arb 604241953 Edge      delta-soc\n276:          0  pmic_arb 604307489 Edge      first-est-done\n277:          0  pmic_arb 605028384 Edge      soft-cold\n278:          0  pmic_arb 605093920 Edge      soft-hot\n279:          0  pmic_arb 605421600 Edge      batt-missing\n280:          0  pmic_arb 605159456 Edge      vbatt-low\n281:       1365  pmic_arb 608174109 Edge      mem-avail\n282:          0  smp2p_gpio   0 Edge      modem\n283:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n284:          0  smp2p_gpio   2 Edge      modem\n285:          0  smp2p_gpio   3 Edge      modem\n314:          0  smp2p_gpio   0 Edge      adsp\n315:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n316:          0  smp2p_gpio   2 Edge      adsp\n317:          0  smp2p_gpio   3 Edge      adsp\n346:          0  smp2p_gpio   0 Edge      wcnss\n347:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n348:          0  smp2p_gpio   2 Edge      wcnss\n349:          0  smp2p_gpio   3 Edge      wcnss\n378:          0  pmic_arb 553648167 Edge      chg-error\n379:          0  pmic_arb 554041383 Edge      chg-taper-thr\n380:          0  pmic_arb 554106919 Edge      chg-tcc-thr\n381:          0  pmic_arb 553975847 Edge      chg-rechg-thr\n382:          0  pmic_arb 553910311 Edge      chg-p2f-thr\n383:          0  pmic_arb 554893350 Edge      usbid-change\n384:          0  pmic_arb 554762278 Edge      otg-oc\n385:          0  pmic_arb 554696742 Edge      otg-fail\n386:          0  pmic_arb 555745298 Edge      batt-hot\n387:          0  pmic_arb 555810834 Edge      batt-warm\n388:          0  pmic_arb 555941906 Edge      batt-cool\n389:          0  pmic_arb 555876370 Edge      batt-cold\n390:          0  pmic_arb 556138514 Edge      batt-missing\n391:          0  pmic_arb 556072978 Edge      batt-low\n392:          0  pmic_arb 556793873 Edge      usbin-uv\n393:          0  pmic_arb 556859409 Edge      usbin-ov\n394:          0  pmic_arb 556924945 Edge      usbin-src-det\n395:          0  pmic_arb 557121553 Edge      aicl-done\n396:          0  pmic_arb 557842448 Edge      dcin-uv\n397:          0  pmic_arb 559939599 Edge      power-ok\n398:          0  pmic_arb 560005135 Edge      temp-shutdown\n399:          0  pmic_arb 560070671 Edge      wdog-timeout\n400:          0   msmgpio  91 Edge      volume_up\n401:          0   msmgpio  65 Edge      fts_ts\nIPI0:       111       Rescheduling interrupts\nIPI1:        14       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         1       Timer broadcast interrupts\nIPI4:     40867       IRQ work interrupts\nIPI5:         0       CPU wake-up interrupts\nIPI6:         0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/msm8940/old/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  1:          0          0          0          0          0          0          0          0     GIC-0 203 Edge      mpm\n  4:        821          1          1          1          1          1          1          1   mpm-gic  20 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   mpm-gic  39 Level     arch_mem_timer\n 16:          0          0          0          0          0          0          0          0   mpm-gic  86 Level     arm-smmu-context-fault\n 17:          0          0          0          0          0          0          0          0   mpm-gic  90 Level     arm-smmu-context-fault\n 18:          0          0          0          0          0          0          0          0   mpm-gic  92 Level     arm-smmu-context-fault\n 29:          0          0          0          0          0          0          0          0   mpm-gic 138 Level     arm-smmu-context-fault\n 34:          0          0          0          0          0          0          0          0   mpm-gic 145 Level     arm-smmu-context-fault\n 44:          0          0          0          0          0          0          0          0   mpm-gic  59 Edge      smp2p\n 45:          0          0          0          0          0          0          0          0   mpm-gic 175 Edge      smp2p\n 46:          0          0          0          0          0          0          0          0   mpm-gic 323 Edge      smp2p\n 47:         26          0          0          0          0          0          0          0   mpm-gic 224 Level     spdm_bw_hyp\n 48:          0          0          0          0          0          0          0          0   mpm-gic  76 Level     msm_vidc\n 49:          0          0          0          0          0          0          0          0   mpm-gic  65 Level     kgsl-3d0\n 50:          0          0          0          0          0          0          0          0   mpm-gic 104 Edge      MDSS\n 52:          0          0          0          0          0          0          0          0   mpm-gic 216 Level     tsens-upper-lower\n 56:          5          0          0          0          0          0          0          0   mpm-gic 128 Level     i2c-msm-v2-irq\n 57:          0          0          0          0          0          0          0          0   mpm-gic 129 Level     i2c-msm-v2-irq\n 59:          0          0          0          0          0          0          0          0   mpm-gic  57 Edge      qcom,smd-modem\n 60:          0          0          0          0          0          0          0          0   mpm-gic  58 Edge      qcom,smsm-modem\n 61:          0          0          0          0          0          0          0          0   mpm-gic 174 Edge      qcom,smd-wcnss\n 62:          0          0          0          0          0          0          0          0   mpm-gic 176 Edge      qcom,smsm-wcnss\n 63:          0          0          0          0          0          0          0          0   mpm-gic 321 Edge      qcom,smd-adsp\n 64:          0          0          0          0          0          0          0          0   mpm-gic 322 Edge      qcom,smsm-adsp\n 65:        461          0          0          0          0          0          0          0   mpm-gic 200 Edge      qcom,smd-rpm\n 66:          0          0          0          0          0          0          0          0   mpm-gic 166 Edge      msm_otg, msm_hsusb\n 67:          0          0          0          0          0          0          0          0   mpm-gic 172 Edge      msm_otg\n 68:          0          0          0          0          0          0          0          0   mpm-gic  35 Edge      apps_wdog_bark\n 85:          0          0          0          0          0          0          0          0  pmic_arb 8388655 Edge      qpnp_kpdpwr_status\n 86:          0          0          0          0          0          0          0          0  pmic_arb 8454191 Edge      qpnp_resin_status\n 89:          0          0          0          0          0          0          0          0  pmic_arb 37748779 Edge      pm8937_tz\n101:          0          0          0          0          0          0          0          0  pmic_arb 54722612 Edge      qpnp_adc_tm_high_interrupt\n102:          0          0          0          0          0          0          0          0  pmic_arb 54788148 Edge      qpnp_adc_tm_low_interrupt\n112:          0          0          0          0          0          0          0          0  pmic_arb 1031929862 Edge      qpnp_wled_sc_irq\n113:          0          0          0          0          0          0          0          0  pmic_arb 1006632968 Edge      haptics_sc_irq\n114:          0          0          0          0          0          0          0          0  pmic_arb 1006698504 Edge      haptics_play_irq\n115:          0          0          0          0          0          0          0          0   mpm-gic 344 Edge      7803000.sdcc1ice\n117:         78          0          0          0          0          0          0          0   mpm-gic 155 Edge      mmc0\n118:          2          0          0          0          0          0          0          0   mpm-gic 170 Edge      7824900.sdhci\n119:         13          0          0          0          0          0          0          0     GIC-0 157 Edge      mmc1\n120:          2          0          0          0          0          0          0          0     GIC-0 253 Edge      7864900.sdhci\n121:          0          0          0          0          0          0          0          0   msmgpio  67 Edge      7864900.sdhci cd\n122:          0          0          0          0          0          0          0          0   mpm-gic 239 Level     sps\n123:          0          0          0          0          0          0          0          0   mpm-gic  56 Edge      modem\n124:          0          0          0          0          0          0          0          0   mpm-gic 325 Edge      adsp\n125:          0          0          0          0          0          0          0          0   mpm-gic 181 Edge      wcnss\n128:          0          0          0          0          0          0          0          0   mpm-gic  47 Edge      cpr\n129:          0          0          0          0          0          0          0          0   mpm-gic 110 Edge      csiphy\n130:          0          0          0          0          0          0          0          0   mpm-gic 111 Edge      csiphy\n131:          0          0          0          0          0          0          0          0   mpm-gic  83 Edge      csid\n132:          0          0          0          0          0          0          0          0   mpm-gic  84 Edge      csid\n133:          0          0          0          0          0          0          0          0   mpm-gic 185 Edge      csid\n134:          0          0          0          0          0          0          0          0   mpm-gic  87 Edge      ispif\n135:          0          0          0          0          0          0          0          0   mpm-gic  89 Edge      vfe\n136:          0          0          0          0          0          0          0          0   mpm-gic  61 Edge      vfe\n139:        526          0          0          0          0          0          0          0   mpm-gic  82 Edge      cci\n141:          0          0          0          0          0          0          0          0   mpm-gic 260 Edge      ipa\n142:         18          0          0          0          0          0          0          0   mpm-gic 262 Level     sps\n272:          0          0          0          0          0          0          0          0  pmic_arb 101777448 Edge      qpnp_rtc_alarm\n273:          0          0          0          0          0          0          0          0  pmic_arb 604110881 Edge      full-soc\n274:          0          0          0          0          0          0          0          0  pmic_arb 604176417 Edge      empty-soc\n275:          0          0          0          0          0          0          0          0  pmic_arb 604241953 Edge      delta-soc\n276:          0          0          0          0          0          0          0          0  pmic_arb 604307489 Edge      first-est-done\n277:          0          0          0          0          0          0          0          0  pmic_arb 605028384 Edge      soft-cold\n278:          0          0          0          0          0          0          0          0  pmic_arb 605093920 Edge      soft-hot\n279:          0          0          0          0          0          0          0          0  pmic_arb 605421600 Edge      batt-missing\n280:          0          0          0          0          0          0          0          0  pmic_arb 605159456 Edge      vbatt-low\n281:        112          0          0          0          0          0          0          0  pmic_arb 608174109 Edge      mem-avail\n282:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      modem\n283:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n284:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      modem\n285:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      modem\n314:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      adsp\n315:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n316:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      adsp\n317:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      adsp\n346:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      wcnss\n347:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n348:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      wcnss\n349:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      wcnss\n378:          0          0          0          0          0          0          0          0  pmic_arb 553648167 Edge      chg-error\n379:          0          0          0          0          0          0          0          0  pmic_arb 554041383 Edge      chg-taper-thr\n380:          0          0          0          0          0          0          0          0  pmic_arb 554106919 Edge      chg-tcc-thr\n381:          0          0          0          0          0          0          0          0  pmic_arb 553975847 Edge      chg-rechg-thr\n382:          0          0          0          0          0          0          0          0  pmic_arb 553910311 Edge      chg-p2f-thr\n383:          0          0          0          0          0          0          0          0  pmic_arb 554893350 Edge      usbid-change\n384:          0          0          0          0          0          0          0          0  pmic_arb 554762278 Edge      otg-oc\n385:          0          0          0          0          0          0          0          0  pmic_arb 554696742 Edge      otg-fail\n386:          0          0          0          0          0          0          0          0  pmic_arb 555745298 Edge      batt-hot\n387:          0          0          0          0          0          0          0          0  pmic_arb 555810834 Edge      batt-warm\n388:          0          0          0          0          0          0          0          0  pmic_arb 555941906 Edge      batt-cool\n389:          0          0          0          0          0          0          0          0  pmic_arb 555876370 Edge      batt-cold\n390:          0          0          0          0          0          0          0          0  pmic_arb 556138514 Edge      batt-missing\n391:          0          0          0          0          0          0          0          0  pmic_arb 556072978 Edge      batt-low\n392:          0          0          0          0          0          0          0          0  pmic_arb 556793873 Edge      usbin-uv\n393:          0          0          0          0          0          0          0          0  pmic_arb 556859409 Edge      usbin-ov\n394:          0          0          0          0          0          0          0          0  pmic_arb 556924945 Edge      usbin-src-det\n395:          0          0          0          0          0          0          0          0  pmic_arb 557121553 Edge      aicl-done\n396:          0          0          0          0          0          0          0          0  pmic_arb 557842448 Edge      dcin-uv\n397:          0          0          0          0          0          0          0          0  pmic_arb 559939599 Edge      power-ok\n398:          0          0          0          0          0          0          0          0  pmic_arb 560005135 Edge      temp-shutdown\n399:          0          0          0          0          0          0          0          0  pmic_arb 560070671 Edge      wdog-timeout\n400:          0          0          0          0          0          0          0          0   msmgpio  91 Edge      volume_up\n401:          0          0          0          0          0          0          0          0   msmgpio  65 Edge      fts_ts\nIPI0:        47         72         73         73         72         73         71         71       Rescheduling interrupts\nIPI1:         0          6          6          6          8          6          6          7       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI4:       188          4          4          4          4          4          4          4       IRQ work interrupts\nIPI5:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/msm8940/old/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [kworker/0:0]\n    4 root      0:00 [kworker/0:0H]\n    5 root      0:00 [kworker/u16:0]\n    6 root      0:00 [ksoftirqd/0]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [lru-add-drain]\n   15 root      0:00 [cpuhp/0]\n   16 root      0:00 [cpuhp/1]\n   17 root      0:00 [migration/1]\n   18 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0H]\n   21 root      0:00 [rcuop/1]\n   22 root      0:00 [rcuos/1]\n   23 root      0:00 [rcuob/1]\n   24 root      0:00 [cpuhp/2]\n   25 root      0:00 [migration/2]\n   26 root      0:00 [ksoftirqd/2]\n   27 root      0:00 [kworker/2:0]\n   28 root      0:00 [kworker/2:0H]\n   29 root      0:00 [rcuop/2]\n   30 root      0:00 [rcuos/2]\n   31 root      0:00 [rcuob/2]\n   32 root      0:00 [cpuhp/3]\n   33 root      0:00 [migration/3]\n   34 root      0:00 [ksoftirqd/3]\n   35 root      0:00 [kworker/3:0]\n   36 root      0:00 [kworker/3:0H]\n   37 root      0:00 [rcuop/3]\n   38 root      0:00 [rcuos/3]\n   39 root      0:00 [rcuob/3]\n   40 root      0:00 [cpuhp/4]\n   41 root      0:00 [migration/4]\n   42 root      0:00 [ksoftirqd/4]\n   43 root      0:00 [kworker/4:0]\n   44 root      0:00 [kworker/4:0H]\n   45 root      0:00 [rcuop/4]\n   46 root      0:00 [rcuos/4]\n   47 root      0:00 [rcuob/4]\n   48 root      0:00 [cpuhp/5]\n   49 root      0:00 [migration/5]\n   50 root      0:00 [ksoftirqd/5]\n   51 root      0:00 [kworker/5:0]\n   52 root      0:00 [kworker/5:0H]\n   53 root      0:00 [rcuop/5]\n   54 root      0:00 [rcuos/5]\n   55 root      0:00 [rcuob/5]\n   56 root      0:00 [cpuhp/6]\n   57 root      0:00 [migration/6]\n   58 root      0:00 [ksoftirqd/6]\n   59 root      0:00 [kworker/6:0]\n   60 root      0:00 [kworker/6:0H]\n   61 root      0:00 [rcuop/6]\n   62 root      0:00 [rcuos/6]\n   63 root      0:00 [rcuob/6]\n   64 root      0:00 [cpuhp/7]\n   65 root      0:00 [migration/7]\n   66 root      0:00 [ksoftirqd/7]\n   67 root      0:00 [kworker/7:0]\n   68 root      0:00 [kworker/7:0H]\n   69 root      0:00 [rcuop/7]\n   70 root      0:00 [rcuos/7]\n   71 root      0:00 [rcuob/7]\n   72 root      0:00 [netns]\n   73 root      0:00 [kworker/0:1]\n   74 root      0:00 [smd_channel_clo]\n   75 root      0:00 [kworker/u17:0]\n   76 root      0:01 [kworker/u16:1]\n   77 root      0:00 [smsm_cb_wq]\n   78 root      0:00 [msm_watchdog]\n   79 root      0:00 [irq/128-cpr]\n   80 root      0:00 [oom_reaper]\n   81 root      0:00 [writeback]\n   82 root      0:00 [kcompactd0]\n   83 root      0:00 [crypto]\n   84 root      0:00 [bioset]\n   85 root      0:00 [kblockd]\n   86 root      0:00 [irq/52-tsens-up]\n   87 root      0:00 [edac-poller]\n   88 root      0:00 [system]\n   89 root      0:00 [devfreq_wq]\n   90 root      0:00 [governor_msm_ad]\n   91 root      0:00 [cfg80211]\n   93 root      0:00 [kworker/0:3]\n   94 root      0:00 [irq/112-qpnp_wl]\n   95 root      0:00 [ipa_power_mgmt]\n   96 root      0:00 [sps_ipa_power_m]\n   97 root      0:00 [ipawq36]\n   98 root      0:00 [iparepwq36]\n   99 root      0:00 [kworker/u17:1]\n  100 root      0:00 [ipawq33]\n  101 root      0:00 [iparepwq33]\n  102 root      0:00 [ipawq34]\n  103 root      0:00 [iparepwq34]\n  104 root      0:00 [ipa_rm_wq]\n  105 root      0:00 [ipa_interrupt_w]\n  106 root      0:00 [ipa_holb_wq]\n  131 root      0:00 [kswapd0]\n  132 root      0:00 [vmstat]\n  166 root      0:00 [rot_workq_0]\n  167 root      0:00 [mdss_dsi_event]\n  168 root      0:00 [mdss_dsi_dba]\n  169 root      0:00 [mem_share_svc]\n  170 root      0:00 [qmi_hndl0000000]\n  171 root      0:00 [hwrng]\n  173 root      0:00 [diag_real_time_]\n  174 root      0:00 [msm_ipc_router]\n  175 root      0:00 [diag_wq]\n  177 root      0:00 [DIAG_USB_diag]\n  178 root      0:00 [diag_cntl_wq]\n  179 root      0:00 [diag_dci_wq]\n  180 root      0:00 [DIAG_SMD_MODEM_]\n  181 root      0:00 [DIAG_SMD_MODEM_]\n  182 root      0:00 [DIAG_SMD_MODEM_]\n  183 root      0:00 [DIAG_SMD_MODEM_]\n  184 root      0:00 [DIAG_SMD_MODEM_]\n  185 root      0:00 [DIAG_SMD_LPASS_]\n  186 root      0:00 [DIAG_SMD_LPASS_]\n  187 root      0:00 [DIAG_SMD_LPASS_]\n  188 root      0:00 [DIAG_SMD_LPASS_]\n  189 root      0:00 [DIAG_SMD_LPASS_]\n  190 root      0:00 [DIAG_SMD_WCNSS_]\n  191 root      0:00 [DIAG_SMD_WCNSS_]\n  192 root      0:00 [DIAG_SMD_WCNSS_]\n  193 root      0:00 [DIAG_SMD_WCNSS_]\n  194 root      0:00 [DIAG_SMD_WCNSS_]\n  195 root      0:00 [DIAG_SMD_SENSOR]\n  196 root      0:00 [DIAG_SMD_SENSOR]\n  197 root      0:00 [DIAG_SMD_SENSOR]\n  198 root      0:00 [DIAG_SMD_SENSOR]\n  199 root      0:00 [DIAG_SMD_SENSOR]\n  200 root      0:00 [DIAG_SMD_CDSP_C]\n  201 root      0:00 [DIAG_SMD_CDSP_D]\n  202 root      0:00 [DIAG_SMD_CDSP_C]\n  203 root      0:00 [DIAG_SMD_CDSP_D]\n  204 root      0:00 [DIAG_SMD_CDSP_D]\n  205 root      0:00 [MODEM_CNTL]\n  206 root      0:00 [MODEM_DATA]\n  207 root      0:00 [MODEM_CMD]\n  208 root      0:00 [MODEM_DCI]\n  209 root      0:00 [MODEM_DCI_CMD]\n  210 root      0:00 [LPASS_CNTL]\n  211 root      0:00 [LPASS_DATA]\n  212 root      0:00 [LPASS_CMD]\n  213 root      0:00 [LPASS_DCI]\n  214 root      0:00 [LPASS_DCI_CMD]\n  215 root      0:00 [WCNSS_CNTL]\n  216 root      0:00 [WCNSS_DATA]\n  217 root      0:00 [WCNSS_CMD]\n  218 root      0:00 [WCNSS_DCI]\n  219 root      0:00 [WCNSS_DCI_CMD]\n  220 root      0:00 [SENSORS_CNTL]\n  221 root      0:00 [SENSORS_DATA]\n  222 root      0:00 [SENSORS_CMD]\n  223 root      0:00 [SENSORS_DCI]\n  224 root      0:00 [SENSORS_DCI_CMD]\n  225 root      0:00 [DIAG_CTRL]\n  226 root      0:00 [DIAG_DATA]\n  227 root      0:00 [DIAG_CMD]\n  228 root      0:00 [DIAG_DCI_DATA]\n  229 root      0:00 [DIAG_DCI_CMD]\n  230 root      0:00 [CDSP_CNTL]\n  231 root      0:00 [CDSP_DATA]\n  232 root      0:00 [CDSP_CMD]\n  233 root      0:00 [CDSP_DCI]\n  234 root      0:00 [CDSP_DCI_CMD]\n  235 root      0:00 [DIAG_CNTL_SOCKE]\n  241 root      0:00 [kgsl-workqueue]\n  242 root      0:00 [kgsl-mementry]\n  243 root      0:00 [kgsl_worker_thr]\n  244 root      0:00 [kgsl-events]\n  245 root      0:00 [kgsl_devfreq_wq]\n  246 root      0:00 [bioset]\n  247 root      0:00 [bioset]\n  248 root      0:00 [bioset]\n  249 root      0:00 [bioset]\n  250 root      0:00 [bioset]\n  251 root      0:00 [bioset]\n  252 root      0:00 [bioset]\n  253 root      0:00 [bioset]\n  254 root      0:00 [bioset]\n  255 root      0:00 [bioset]\n  256 root      0:00 [bioset]\n  257 root      0:00 [bioset]\n  258 root      0:00 [bioset]\n  259 root      0:00 [bioset]\n  260 root      0:00 [bioset]\n  261 root      0:00 [bioset]\n  262 root      0:00 [bioset]\n  263 root      0:00 [bioset]\n  264 root      0:00 [bioset]\n  265 root      0:00 [bioset]\n  266 root      0:00 [bioset]\n  267 root      0:00 [bioset]\n  268 root      0:00 [bioset]\n  269 root      0:00 [bioset]\n  270 root      0:00 [bioset]\n  271 root      0:00 [bioset]\n  272 root      0:00 [bioset]\n  273 root      0:00 [bioset]\n  274 root      0:00 [bioset]\n  275 root      0:00 [bioset]\n  276 root      0:00 [bioset]\n  277 root      0:00 [bioset]\n  278 root      0:00 [bioset]\n  279 root      0:00 [qseecom-unreg-l]\n  280 root      0:00 [qseecom-unload-]\n  281 root      0:00 [qcrypto_seq_res]\n  302 root      0:00 [sharedmem_qmi_w]\n  303 root      0:00 [uether]\n  304 root      0:00 [qmi_hndl0000000]\n  305 root      0:00 [msm_vidc_worker]\n  306 root      0:00 [pm_workerq_venu]\n  307 root      0:00 [irq/34-arm-smmu]\n  308 root      0:00 [irq/17-arm-smmu]\n  309 root      0:00 [irq/18-arm-smmu]\n  310 root      0:00 [irq/16-arm-smmu]\n  311 root      0:00 [msm_cci_wq]\n  312 root      0:00 [msm_cci_wq]\n  313 root      0:00 [msm_cpp_workque]\n  314 root      0:00 [irq/277-soft-co]\n  315 root      0:00 [irq/278-soft-ho]\n  316 root      0:00 [irq/279-batt-mi]\n  317 root      0:00 [qmi_tmd_wq]\n  318 root      0:00 [qmi_svc_event_w]\n  319 root      0:00 [dm_bufio_cache]\n  320 root      0:00 [irq/114-haptics]\n  321 root      0:00 [mmc_clk_gate/mm]\n  322 root      0:00 [irq/113-haptics]\n  324 root      0:00 [irq/118-7824900]\n  325 root      0:00 [irq/117-mmc0]\n  326 root      0:00 [bioset]\n  327 root      0:00 [sdhci_msm_pm_qo]\n  328 root      0:00 [mmc-cmdqd/0]\n  329 root      0:00 [bioset]\n  330 root      0:00 [mmcqd/0rpmb]\n  331 root      0:00 [mmc_clk_gate/mm]\n  332 root      0:00 [irq/120-7864900]\n  333 root      0:00 [irq/119-mmc1]\n  334 root      0:00 [irq/121-7864900]\n  335 root      0:00 [irq/47-spdm_bw_]\n  336 root      0:00 [apr_driver]\n  337 root      0:00 [ipv6_addrconf]\n  338 root      0:00 [irq/316-adsp]\n  339 root      0:00 [sysmon_wq]\n  340 root      0:00 [irq/348-wcnss]\n  341 root      0:00 [irq/284-modem]\n  342 root      0:00 [kworker/0:4]\n  343 root      0:00 [irq/378-chg-err]\n  344 root      0:00 [irq/379-chg-tap]\n  345 root      0:00 [irq/380-chg-tcc]\n  346 root      0:00 [irq/381-chg-rec]\n  347 root      0:00 [irq/382-chg-p2f]\n  348 root      0:00 [irq/383-usbid-c]\n  349 root      0:00 [irq/384-otg-oc]\n  350 root      0:00 [irq/385-otg-fai]\n  351 root      0:00 [irq/386-batt-ho]\n  352 root      0:00 [irq/387-batt-wa]\n  353 root      0:00 [irq/388-batt-co]\n  354 root      0:00 [irq/389-batt-co]\n  355 root      0:00 [irq/390-batt-mi]\n  356 root      0:00 [irq/391-batt-lo]\n  357 root      0:00 [irq/392-usbin-u]\n  358 root      0:00 [irq/393-usbin-o]\n  359 root      0:00 [irq/394-usbin-s]\n  360 root      0:00 [irq/395-aicl-do]\n  361 root      0:00 [irq/396-dcin-uv]\n  362 root      0:00 [irq/397-power-o]\n  363 root      0:00 [irq/398-temp-sh]\n  364 root      0:00 [irq/399-wdog-ti]\n  365 root      0:00 [core_ctl/0]\n  366 root      0:00 [core_ctl/4]\n  371 root      0:00 [rq_stats]\n  372 root      0:00 [msm_perf:events]\n  373 root      0:00 [irq/29-arm-smmu]\n  374 root      0:00 [fts_wq]\n  375 root      0:00 [usb_bam_wq]\n  376 root      0:00 [irq/401-fts_ts]\n  377 root      0:00 [ipa_A7_svc]\n  378 root      0:00 [qmi_hndl0000000]\n  379 root      0:00 [clnt_req]\n  380 root      0:00 [clnt_resp]\n  381 root      0:00 [clnt_req]\n  392 root      0:00 [kworker/1:1]\n  394 root      0:00 [kworker/2:1]\n  395 root      0:00 [kworker/3:1]\n  396 root      0:00 [kworker/4:1]\n  397 root      0:00 [kworker/5:1]\n  398 root      0:00 [kworker/6:1]\n  399 root      0:00 [kworker/7:1]\n  400 root      0:00 [kworker/0:1H]\n  417 root      0:00 [kworker/1:0]\n  421 root      0:00 [kworker/0:2]\n  431 root      0:00 [kworker/4:2]\n  475 root      0:00 ps -A\n"
  },
  {
    "path": "results/msm8940/old/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,960000,3109.104702,3.23865073125,144.11781619024998,11.589537785224653,21.571179509740386,80.417106584\r\n1,1094400,3552.751251,3.2463004851973682,276.0948149499714,19.429888677240335,12.866774697111028,70.37397164\r\n1,1248000,4040.208152,3.2373462756410256,371.33349511350815,22.97913332969148,10.879435547596282,61.882737841\r\n1,1344000,4363.991831,3.2470177313988096,435.7522365079999,24.965276991467302,10.013908521241149,57.292366854\r\n1,1401000,4549.756133,3.2475061620271233,259.4324104836668,14.256550414201632,17.53579882486601,54.952850292\r\n4,768000,2494.039246,3.2474469348958332,135.65692847162634,13.599357507702152,18.38322140280595,100.248160274\r\n4,902400,2915.281908,3.230587220744681,210.2220331910588,18.029181435986867,13.866408793301698,85.762568092\r\n4,998400,3218.621657,3.2237797045272436,193.82586453090917,15.056534997171909,16.604085870152588,77.680731793\r\n4,1094400,3542.682236,3.237099996345029,342.24968020828567,24.15432823064121,10.350111897662302,70.575166691\r\n"
  },
  {
    "path": "results/msm8940/old/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 818.9853494788986, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1526.5087775000002, 1526.5087775000002, 1526.5087775000002, 1526.5087775000002, 792.437515678, 792.437515678, 792.437515678, 792.437515678, 792.437515678, 792.437515678, 792.437515678, 792.437515678, 792.437515678, 792.437515678, 792.437515678, 792.437515678, 792.437515678, 792.437515678, 792.437515678, 785.68056112, 785.68056112, 785.68056112, 785.68056112, 785.68056112, 785.68056112, 785.68056112, 785.68056112, 785.68056112, 785.68056112], \"power_mean\": 891.3587398748276, \"energy_millijoules\": 4456.793699374138, \"energy_joules\": 4.4567936993741375}, \"cpus\": {\"1\": {\"freqs\": {\"960000\": {\"active\": {\"elapsed_sec\": 80.417106584, \"elapsed_ns\": 80417106584, \"power_samples\": [-1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, -1.639137470000037, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 232.918738448, 229.551863294, 229.551863294, 229.551863294, 229.551863294, 229.551863294, 229.551863294, 229.551863294, 229.551863294, 229.551863294, 229.551863294, 229.551863294, 229.551863294, 229.551863294, 229.551863294, 229.551863294, 229.551863294, 229.551863294, 229.551863294, 229.551863294, 229.551863294], \"power_mean\": 144.11781619024998, \"energy_millijoules\": 11589.537785224653, \"energy_joules\": 11.589537785224653, \"coremark_score\": 3109.104702, \"coremarks_per_mhz\": 3.23865073125, \"ulpmark_cm_score\": 21.571179509740386}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [785.68056112, 785.68056112, 785.68056112, 785.68056112], \"power_mean\": 785.68056112, \"energy_millijoules\": 3928.4028055999997, \"energy_joules\": 3.9284028055999998}}, \"1094400\": {\"active\": {\"elapsed_sec\": 70.37397164, \"elapsed_ns\": 70373971640, \"power_samples\": [229.551863294, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 273.60351967999986, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.030923366, 279.78354353600025, 279.78354353600025, 279.78354353600025, 279.78354353600025, 279.78354353600025, 279.78354353600025, 279.78354353600025, 279.78354353600025, 279.78354353600025], \"power_mean\": 276.0948149499714, \"energy_millijoules\": 19429.888677240335, \"energy_joules\": 19.429888677240335, \"coremark_score\": 3552.751251, \"coremarks_per_mhz\": 3.2463004851973682, \"ulpmark_cm_score\": 12.866774697111028}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1015.232424414, 1015.232424414, 1015.232424414, 1015.232424414], \"power_mean\": 1015.232424414, \"energy_millijoules\": 5076.16212207, \"energy_joules\": 5.0761621220699995}}, \"1248000\": {\"active\": {\"elapsed_sec\": 61.882737841, \"elapsed_ns\": 61882737841, \"power_samples\": [279.78354353600025, 279.78354353600025, 279.78354353600025, 279.78354353600025, 279.78354353600025, 279.78354353600025, 279.78354353600025, 279.78354353600025, 279.78354353600025, 279.78354353600025, 279.78354353600025, 279.78354353600025, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 394.28890009999986, 392.9091408679999, 392.9091408679999, 392.9091408679999, 392.9091408679999, 392.9091408679999, 392.9091408679999, 392.9091408679999, 392.9091408679999, 392.9091408679999, 392.9091408679999, 392.9091408679999, 392.9091408679999, 392.9091408679999, 392.9091408679999, 392.9091408679999, 392.9091408679999, 392.9091408679999, 392.9091408679999, 392.9091408679999], \"power_mean\": 371.33349511350815, \"energy_millijoules\": 22979.133329691478, \"energy_joules\": 22.97913332969148, \"coremark_score\": 4040.208152, \"coremarks_per_mhz\": 3.2373462756410256, \"ulpmark_cm_score\": 10.879435547596282}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1065.4641046560002, 1065.4641046560002, 1065.4641046560002, 1065.4641046560002], \"power_mean\": 1065.4641046560002, \"energy_millijoules\": 5327.320523280001, \"energy_joules\": 5.327320523280001}}, \"1344000\": {\"active\": {\"elapsed_sec\": 57.292366854, \"elapsed_ns\": 57292366854, \"power_samples\": [392.9091408679999, 392.9091408679999, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 435.6527241739998, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004, 439.29909896000004], \"power_mean\": 435.7522365079999, \"energy_millijoules\": 24965.2769914673, \"energy_joules\": 24.965276991467302, \"coremark_score\": 4363.991831, \"coremarks_per_mhz\": 3.2470177313988096, \"ulpmark_cm_score\": 10.013908521241149}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1178.589701988, 1178.589701988, 1178.589701988, 1178.589701988], \"power_mean\": 1178.589701988, \"energy_millijoules\": 5892.948509939999, \"energy_joules\": 5.892948509939999}}, \"1401000\": {\"active\": {\"elapsed_sec\": 54.952850292, \"elapsed_ns\": 54952850292, \"power_samples\": [34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 34.07955407899999, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023, 468.68863428800023], \"power_mean\": 259.4324104836668, \"energy_millijoules\": 14256.550414201633, \"energy_joules\": 14.256550414201632, \"coremark_score\": 4549.756133, \"coremarks_per_mhz\": 3.2475061620271233, \"ulpmark_cm_score\": 17.53579882486601}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1224.97966008, 819.760115199, 819.760115199, 819.760115199], \"power_mean\": 921.0650014192499, \"energy_millijoules\": 4605.3250070962495, \"energy_joules\": 4.6053250070962495}}}}, \"4\": {\"freqs\": {\"768000\": {\"active\": {\"elapsed_sec\": 100.248160274, \"elapsed_ns\": 100248160274, \"power_samples\": [8.65543594199994, 8.65543594199994, 8.65543594199994, 8.65543594199994, 8.65543594199994, 8.65543594199994, 8.65543594199994, 8.65543594199994, 8.65543594199994, 8.65543594199994, 8.65543594199994, 8.65543594199994, 8.65543594199994, 8.65543594199994, 8.65543594199994, 8.65543594199994, 8.65543594199994, 8.65543594199994, 8.65543594199994, 8.65543594199994, 8.65543594199994, 8.65543594199994, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 170.15422190000015, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.12517883500016, 173.01378270100008, 173.01378270100008, 173.01378270100008, 173.01378270100008, 173.01378270100008, 173.01378270100008, 173.01378270100008, 173.01378270100008, 173.01378270100008, 173.01378270100008, 173.01378270100008, 173.01378270100008, 173.01378270100008, 173.01378270100008, 173.01378270100008, 173.01378270100008, 173.01378270100008], \"power_mean\": 135.65692847162634, \"energy_millijoules\": 13599.357507702152, \"energy_joules\": 13.599357507702152, \"coremark_score\": 2494.039246, \"coremarks_per_mhz\": 3.2474469348958332, \"ulpmark_cm_score\": 18.38322140280595}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [794.3359970619999, 794.3359970619999, 794.3359970619999, 794.3359970619999], \"power_mean\": 794.3359970619999, \"energy_millijoules\": 3971.6799853099997, \"energy_joules\": 3.9716799853099998}}, \"902400\": {\"active\": {\"elapsed_sec\": 85.762568092, \"elapsed_ns\": 85762568092, \"power_samples\": [173.01378270100008, 173.01378270100008, 173.01378270100008, 173.01378270100008, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 211.17983694499992, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 213.19870800800004, 211.68863532600005, 211.68863532600005, 211.68863532600005, 211.68863532600005, 211.68863532600005, 211.68863532600005, 211.68863532600005, 211.68863532600005, 211.68863532600005, 211.68863532600005, 211.68863532600005, 211.68863532600005, 211.68863532600005, 211.68863532600005, 211.68863532600005, 211.68863532600005, 211.68863532600005, 211.68863532600005, 211.68863532600005, 211.68863532600005, 211.68863532600005], \"power_mean\": 210.2220331910588, \"energy_millijoules\": 18029.181435986866, \"energy_joules\": 18.029181435986867, \"coremark_score\": 2915.281908, \"coremarks_per_mhz\": 3.230587220744681, \"ulpmark_cm_score\": 13.866408793301698}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [958.6943438210001, 958.6943438210001, 958.6943438210001, 958.6943438210001], \"power_mean\": 958.6943438210001, \"energy_millijoules\": 4793.471719105, \"energy_joules\": 4.793471719105001}}, \"998400\": {\"active\": {\"elapsed_sec\": 77.680731793, \"elapsed_ns\": 77680731793, \"power_samples\": [20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 20.684111784000038, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.27946101600014, 304.45202264, 304.45202264, 304.45202264, 304.45202264, 304.45202264, 304.45202264, 304.45202264, 304.45202264, 304.45202264, 304.45202264, 304.45202264, 304.45202264, 304.45202264, 304.45202264, 304.45202264, 304.45202264, 304.45202264], \"power_mean\": 193.82586453090917, \"energy_millijoules\": 15056.534997171908, \"energy_joules\": 15.056534997171909, \"coremark_score\": 3218.621657, \"coremarks_per_mhz\": 3.2237797045272436, \"ulpmark_cm_score\": 16.604085870152588}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [997.369196446, 997.369196446, 997.369196446, 997.369196446], \"power_mean\": 997.369196446, \"energy_millijoules\": 4986.84598223, \"energy_joules\": 4.98684598223}}, \"1094400\": {\"active\": {\"elapsed_sec\": 70.575166691, \"elapsed_ns\": 70575166691, \"power_samples\": [304.45202264, 304.45202264, 304.45202264, 304.45202264, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 342.9974416399998, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 345.1953287020001, 348.98106896000013, 348.98106896000013, 348.98106896000013, 348.98106896000013, 348.98106896000013, 348.98106896000013], \"power_mean\": 342.24968020828567, \"energy_millijoules\": 24154.328230641207, \"energy_joules\": 24.15432823064121, \"coremark_score\": 3542.682236, \"coremarks_per_mhz\": 3.237099996345029, \"ulpmark_cm_score\": 10.350111897662302}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1090.13258376, 1090.13258376, 1090.13258376, 1090.13258376], \"power_mean\": 1090.13258376, \"energy_millijoules\": 5450.6629188, \"energy_joules\": 5.4506629188}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/msm8940/old/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 786 mW\n\n\n===== CPU 1 =====\nFrequencies: 960 1094 1248 1344 1401\n\n 960:  3109     3.2 C/MHz    144 mW   11.6 J   21.6 I/mJ    80.4 s\n1094:  3553     3.2 C/MHz    276 mW   19.4 J   12.9 I/mJ    70.4 s\n1248:  4040     3.2 C/MHz    371 mW   23.0 J   10.9 I/mJ    61.9 s\n1344:  4364     3.2 C/MHz    436 mW   25.0 J   10.0 I/mJ    57.3 s\n1401:  4550     3.2 C/MHz    259 mW   14.3 J   17.5 I/mJ    55.0 s\n\n\n===== CPU 4 =====\nFrequencies: 768 902 998 1094\n\n 768:  2494     3.2 C/MHz    136 mW   13.6 J   18.4 I/mJ   100.2 s\n 902:  2915     3.2 C/MHz    210 mW   18.0 J   13.9 I/mJ    85.8 s\n 998:  3219     3.2 C/MHz    194 mW   15.1 J   16.6 I/mJ    77.7 s\n1094:  3543     3.2 C/MHz    342 mW   24.2 J   10.4 I/mJ    70.6 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/msm8940/old/uptime.txt",
    "content": " 00:52:35 up 13 min,  load average: 2.94, 2.72, 1.69\n"
  },
  {
    "path": "results/msm8940/old/versions.txt",
    "content": "Kernel: Linux version 4.9.227-perf+ (sid_key@manjaro) (gcc version 4.9.x 20150123 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Feb 15 20:33:52 +04 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/msm8953/main/cmdline.txt",
    "content": "quiet core_ctl_disable_cpumask=0-7 kpti=0 noirqdebug androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 androidboot.bootdevice=7824900.sdhci earlycon=msm_hsl_uart,0x78af000 loop.max_part=16 androidboot.usbconfigfs=true buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.emmc=true androidboot.verifiedbootstate=orange androidboot.veritymode=enforcing androidboot.keymaster=1 androidboot.serialno=REDACTED androidboot.boot_reason= androidboot.secureboot=1 androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_nt35532_fhd_video:1:none:cfg:single_dsi\n"
  },
  {
    "path": "results/msm8953/main/cpufreq_stats/0/time_in_state",
    "content": "652800 20767\n1036800 8331\n1401600 6324\n1689600 5421\n1804800 5120\n1958400 4819\n2016000 5452\n"
  },
  {
    "path": "results/msm8953/main/cpufreq_stats/0/total_trans",
    "content": "10\n"
  },
  {
    "path": "results/msm8953/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 4 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nHardware\t: Qualcomm Technologies, Inc MSM8953\n"
  },
  {
    "path": "results/msm8953/main/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. MSM8953 + PMI8950 QRD SKU3;\nCompatible: qcom,msm8953-qrd-sku3;qcom,msm8953-qrd;qcom,msm8953;qcom,qrd;\n"
  },
  {
    "path": "results/msm8953/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Linux version 4.9.249~zLOS/f550b71b5277 (NATO66613@KREMLIN) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project 52586c46b0883600a332fd64731dc5287981f980)) #1 SMP PREEMPT Wed Jan 27 10:05:33 UTC 2021\n[    0.000000] Boot CPU: AArch64 Processor [410fd034]\n[    0.000000] Machine: Qualcomm Technologies, Inc. MSM8953 + PMI8950 QRD SKU3\n[    0.000000] core_ctl: disable_cpumask=0-7\n[    0.000000] efi: Getting EFI parameters from FDT:\n[    0.000000] efi: UEFI not found.\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000c7800000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_shmem_device_region@0xc0100000, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x000000008f800000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@0, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: invalid size property in 'mem_dump_region' node.\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff000000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f3c00000, size 180 MiB\n[    0.000000] OF: reserved mem: initialized node secure_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f2800000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f2400000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f2000000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x000000008f000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node venus_region@0, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000084a00000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node other_ext_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086c00000, size 106 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008d600000, size 17 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_fw_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008e700000, size 7 MiB\n[    0.000000] OF: reserved mem: initialized node wcnss_fw_region@0, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 745472\n[    0.000000]   DMA zone: 12288 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 745472 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.0 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] Did not receive the expected number of bytes from PRNG: 0\n[    0.000000] percpu: Embedded 22 pages/cpu s51224 r8192 d30696 u90112\n[    0.000000] pcpu-alloc: s51224 r8192 d30696 u90112 alloc=22*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: enabling workaround for ARM erratum 845719\n[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 733184\n[    0.000000] Kernel command line: quiet core_ctl_disable_cpumask=0-7 kpti=0 noirqdebug androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 androidboot.bootdevice=7824900.sdhci earlycon=msm_hsl_uart,0x78af000 loop.max_part=16 androidboot.usbconfigfs=true buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.emmc=true androidboot.verifiedbootstate=orange androidboot.veritymode=enforcing androidboot.keymaster=1 androidboot.serialno=REDACTED androidboot.boot_reason= androidboot.secureboot=1 androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_nt35532_fhd_video:1:none:cfg:single_dsi\n[    0.000000] IRQ lockup detection disabled\n[    0.000000] zakk: booting_into_recovery=0\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 131072 bytes\n[    0.000000] log_buf_len: 1048576 bytes\n[    0.000000] early log buf free: 126196(96%)\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] Memory: 2598312K/2981888K available (19964K kernel code, 3196K rwdata, 6428K rodata, 6144K init, 3854K bss, 129624K reserved, 253952K cma-reserved)\n[    0.000000] Virtual kernel memory layout:\n[    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n[    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)\n[    0.000000]       .text : 0x        (ptrval) - 0x        (ptrval)   ( 19968 KB)\n[    0.000000]     .rodata : 0x        (ptrval) - 0x        (ptrval)   (  8192 KB)\n[    0.000000]       .init : 0x        (ptrval) - 0x        (ptrval)   (  6144 KB)\n[    0.000000]       .data : 0x        (ptrval) - 0x        (ptrval)   (  3197 KB)\n[    0.000000]        .bss : 0x        (ptrval) - 0x        (ptrval)   (  3855 KB)\n[    0.000000]     fixed   : 0xffffffbefe7fb000 - 0xffffffbefec00000   (  4116 KB)\n[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)\n[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)\n[    0.000000]               0xffffffbf00000000 - 0xffffffbf03000000   (    48 MB actual)\n[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc0c0000000   (  3072 MB)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] NR_IRQS:64 nr_irqs:64 0\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from all CPUs\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arm_arch_timer: Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000005] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000017] clocksource: Switched to clocksource arch_sys_counter\n[    0.000896] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.000907] pid_max: default: 32768 minimum: 301\n[    0.000983] Security Framework initialized\n[    0.000989] SELinux:  Initializing.\n[    0.001037] SELinux:  Starting in permissive mode\n[    0.001069] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001076] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.002404] sched-energy: Sched-energy-costs installed from DT\n[    0.011747] ASID allocator initialised with 32768 entries\n[    0.018784] cpu_clock_pwr_init: Power clocks configured\n[    0.020930] MSM Memory Dump base table set up\n[    0.020947] MSM Memory Dump apps data table set up\n[    0.021091] EFI services will not be available.\n[    0.082409] Brought up 8 CPUs\n[    0.082415] SMP: Total of 8 processors activated.\n[    0.082420] CPU features: detected feature: 32-bit EL0 Support\n[    0.082425] CPU features: kernel page table isolation forced OFF by command line option\n[    0.082436] CPU: All CPU(s) started at EL1\n[    0.082514] alternatives: patching kernel code\n[    0.082752] CPU0: update max cpu_capacity 1024\n[    0.083456] devtmpfs: initialized\n[    0.139951] DMI not present or invalid.\n[    0.140377] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.140390] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.151130] pinctrl core: initialized pinctrl subsystem\n[    0.151930] NET: Registered protocol family 16\n[    0.153802] schedtune: init normalization constants...\n[    0.153811] schedtune: CLUSTER[0]        min_pwr:     1 max_pwr:   140\n[    0.153817] schedtune: CPU[0]            min_pwr:     1 max_pwr:    36\n[    0.153821] schedtune: SYSTEM            min_pwr:     2 max_pwr:   176\n[    0.153825] schedtune: using normalization constants mul: 2024065048 sh1: 1 sh2: 7\n[    0.153827] schedtune: verify normalization constants...\n[    0.153831] schedtune: max_pwr/2^0:  174 => norm_pwr:  1024\n[    0.153834] schedtune: max_pwr/2^1:   87 => norm_pwr:   512\n[    0.153838] schedtune: max_pwr/2^2:   43 => norm_pwr:   253\n[    0.153841] schedtune: max_pwr/2^3:   21 => norm_pwr:   123\n[    0.153845] schedtune: max_pwr/2^4:   10 => norm_pwr:    58\n[    0.153848] schedtune: max_pwr/2^5:    5 => norm_pwr:    29\n[    0.153851] schedtune: configured to support 6 boost groups\n[    0.154033] ramoops: using module parameters\n[    0.154529] pstore: using zlib compression\n[    0.154549] console [pstore0] enabled\n[    0.154553] pstore: Registered ramoops as persistent store backend\n[    0.154557] ramoops: attached 0x100000@0x9ff00000, ecc: 0/0\n[    0.156223] cpuidle: using governor menu\n[    0.156260] cpuidle: using governor qcom\n[    0.160140] vdso32: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.160150] vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.160156] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.161147] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.167364] smd_channel_probe_now: allocation table not initialized\n[    0.169176] smd_channel_probe_now: allocation table not initialized\n[    0.169619] smd_channel_probe_now: allocation table not initialized\n[    0.170338] msm_rpm_glink_dt_parse: qcom,rpm-glink compatible not matches\n[    0.170911] pm8953_s1: Bringing 1uV into 16-16uV\n[    0.171460] pm8953_s2_level: Bringing 1uV into 16-16uV\n[    0.171815] pm8953_s2_floor_level: Bringing 1uV into 16-16uV\n[    0.172740] pm8953_s2_level_ao: Bringing 1uV into 16-16uV\n[    0.174723] pm8953_s7_level_ao: Bringing 1uV into 16-16uV\n[    0.185077] qcom,gcc-8953 1800000.qcom,gcc: Venus speed bin: 2\n[    0.201184] branch_clk_handoff: gcc_usb_phy_cfg_ahb_clk clock is enabled in HW\n[    0.201191] branch_clk_handoff: even though ENABLE_BIT is not set\n[    0.202546] qcom,gcc-8953 1800000.qcom,gcc: Registered GCC clocks\n[    0.203061] msm8953-pinctrl 1000000.pinctrl: invalid resource\n[    0.213407] platform soc:qcom,kgsl-hyp: assigned reserved memory node gpu_region@0\n[    0.220628] sps:sps is ready.\n[    0.223908] cpu-clock-8953 b114000.qcom,cpu-clock-8953: Speed bin: 2 PVS Version: 0\n[    0.223994] cpu-clock-8953 b114000.qcom,cpu-clock-8953: Get vdd-pwrcl regulator!!!\n[    0.225587] msm_watchdog b017000.qcom,wdt: wdog absent resource not present\n[    0.226720] msm_watchdog b017000.qcom,wdt: MSM Watchdog Initialized\n[    0.228905] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region@0\n[    0.229852] spmi spmi-0: PMIC arbiter version v2 (0x20010000)\n[    0.233424] pm8953_s5_avs_limit: Bringing 0uV into 400000-400000uV\n[    0.233622] spm_regulator_probe: name=pm8953_s5, range=LV, voltage=870000 uV, mode=AUTO, step rate=1200 uV/us\n[    0.238045] platform 4080000.qcom,mss: assigned reserved memory node modem_region@0\n[    0.238242] platform c200000.qcom,lpass: assigned reserved memory node adsp_fw_region@0\n[    0.238437] platform a21b000.qcom,pronto: assigned reserved memory node wcnss_fw_region@0\n[    0.238572] platform 1de0000.qcom,venus: assigned reserved memory node venus_region@0\n[    0.239348] apc_mem_acc_corner: Bringing 0uV into 1-1uV\n[    0.240232] cpr4_apss_read_fuse_data: apc_corner: speed bin = 2, CPR fusing revision = 3, foundry id = 2\n[    0.240238] cpr4_msm8953_apss_read_fuse_data: apc_corner: CPR misc fuse value = 0\n[    0.240269] cpr4_msm8953_apss_read_fuse_data: apc_corner: Voltage boost fuse config = 0 boost = disable\n[    0.240362] cpr4_apss_calculate_open_loop_voltages: apc_corner: fused   LowSVS: open-loop= 625000 uV\n[    0.240367] cpr4_apss_calculate_open_loop_voltages: apc_corner: fused      SVS: open-loop= 680000 uV\n[    0.240371] cpr4_apss_calculate_open_loop_voltages: apc_corner: fused      NOM: open-loop= 785000 uV\n[    0.240375] cpr4_apss_calculate_open_loop_voltages: apc_corner: fused TURBO_L1: open-loop= 915000 uV\n[    0.240426] cpr4_apss_calculate_target_quotients: apc_corner: fused   LowSVS: quot[ 7]= 488\n[    0.240433] cpr4_apss_calculate_target_quotients: apc_corner: fused      SVS: quot[ 7]= 577, quot_offset[ 7]=  85\n[    0.240438] cpr4_apss_calculate_target_quotients: apc_corner: fused      NOM: quot[ 7]= 797, quot_offset[ 7]= 215\n[    0.240444] cpr4_apss_calculate_target_quotients: apc_corner: fused TURBO_L1: quot[ 7]=1060, quot_offset[ 7]= 260\n[    0.240598] cpr4_apss_init_aging: apc: sensor 6 aging init quotient diff = -5, aging RO scale = 2800 QUOT/V\n[    0.240724] cpr3_regulator_init_ctrl: apc: Default CPR mode = HW closed-loop\n[    0.241673] gfx_mem_acc_corner: Bringing 0uV into 1-1uV\n[    0.242115] GFX_LDO: msm_gfx_ldo_voltage_init: LDO corner 1: target-volt = 580000 uV\n[    0.242120] GFX_LDO: msm_gfx_ldo_voltage_init: LDO corner 2: target-volt = 650000 uV\n[    0.242125] GFX_LDO: msm_gfx_ldo_voltage_init: LDO corner 3: target-volt = 720000 uV\n[    0.242134] GFX_LDO: msm_gfx_ldo_adjust_init_voltage: adjusted the open-loop voltage[1] 580000 -> 615000\n[    0.242138] GFX_LDO: msm_gfx_ldo_adjust_init_voltage: adjusted the open-loop voltage[2] 650000 -> 675000\n[    0.242144] GFX_LDO: msm_gfx_ldo_voltage_init: LDO-mode fuse disabled by default\n[    0.252580] msm-sn-fuse a4128.snfuse: SN interface initialized\n[    0.279526] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.279549] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.280184] dsi_pll_clock_register_8996: Registered DSI PLL ndx=0 clocks successfully\n[    0.280218] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.280237] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.281332] pll_is_pll_locked_8996: DSI PLL ndx=1 status=0 failed to Lock\n[    0.281776] dsi_pll_clock_register_8996: Registered DSI PLL ndx=1 clocks successfully\n[    0.284343] KPI: Bootloader start count = 27092\n[    0.284349] KPI: Bootloader end count = 140849\n[    0.284352] KPI: Bootloader display count = 70746\n[    0.284354] KPI: Bootloader load kernel count = 2207\n[    0.284358] KPI: Kernel MPM timestamp = 157937\n[    0.284360] KPI: Kernel MPM Clock frequency = 32768\n[    0.284380] socinfo_print: v0.10, id=293, ver=1.1, raw_id=70, raw_ver=1, hw_plat=11, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65558, pmic_die_revision=65536 foundry_id=3 serial_number=3367401871\n[    0.286614] arm-smmu 1c40000.arm,smmu-kgsl: Couldn't get clock: gpu_ahb_clk\n[    0.287051] arm-smmu 1e00000.qcom,iommu: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.287061] arm-smmu 1e00000.qcom,iommu: \tstream matching with 122 register groups, mask 0x7fff\n[    0.287168] arm-smmu 1e00000.qcom,iommu: found 32 context interrupt(s) but have 30 context banks. assuming 30 context interrupts.\n[    0.287952] iommu: Adding device soc:qcom,msm-audio-ion to group 0\n[    0.291701] SCSI subsystem initialized\n[    0.291912] usbcore: registered new interface driver usbfs\n[    0.291958] usbcore: registered new interface driver hub\n[    0.292182] usbcore: registered new device driver usb\n[    0.293309] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pm8953@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.293330] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pm8953@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from KPDPWR_N (Long Power Key hold)\n[    0.293570] input: qpnp_pon as /devices/virtual/input/input0\n[    0.294636] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pmi8950@2:qcom,power-on@800: No PON config. specified\n[    0.294689] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pmi8950@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (secondary PMIC) and 'cold' boot\n[    0.294708] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pmi8950@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)\n[    0.295355] i2c-msm-v2 78b6000.i2c: probing driver i2c-msm-v2\n[    0.295424] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.295433] i2c-msm-v2 78b6000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.295698] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.296023] i2c-msm-v2 78b7000.i2c: probing driver i2c-msm-v2\n[    0.296068] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.296076] i2c-msm-v2 78b7000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.296197] i2c-msm-v2 78b7000.i2c: irq:70 when no active transfer\n[    0.296336] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.296933] i2c-msm-v2 7af5000.i2c: probing driver i2c-msm-v2\n[    0.296975] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.296982] i2c-msm-v2 7af5000.i2c: msm_bus_scale_register_client(mstr-id:84):0 (not a problem)\n[    0.297239] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.297743] media: Linux media interface: v0.10\n[    0.297780] Linux video capture interface: v2.00\n[    0.311211] EDAC MC: Ver: 3.0.0\n[    0.313575] Unable to get pmic_revid rc=-22\n[    0.313732] dmi: Firmware registration failed.\n[    0.314759] platform soc:qcom,ion:qcom,ion-heap@8: assigned reserved memory node secure_region@0\n[    0.314904] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@0\n[    0.315043] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.315412] ION heap system created\n[    0.315611] ION heap mm created at 0x00000000f3c00000 with size b400000\n[    0.315622] ION heap qsecom created at 0x00000000ff000000 with size 1000000\n[    0.315633] ION heap qsecom_ta created at 0x00000000f2400000 with size 400000\n[    0.316937] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.316942] ipa ipa_init:4024 fail to register with bus mgr!\n[    0.317025] ipa ipa_plat_drv_probe:5054 ipa_init failed\n[    0.317794] PMIC@SID0: PM8953 v1.0 options: 2, 2, 0, 0\n[    0.317910] PMIC@SID2: PMI8950 v2.0 options: 0, 0, 0, 0\n[    0.322292] Advanced Linux Sound Architecture Driver Initialized.\n[    0.322906] Bluetooth: Core ver 2.22\n[    0.322940] NET: Registered protocol family 31\n[    0.322944] Bluetooth: HCI device and connection manager initialized\n[    0.322956] Bluetooth: HCI socket layer initialized\n[    0.322963] Bluetooth: L2CAP socket layer initialized\n[    0.324509] NetLabel: Initializing\n[    0.324512] NetLabel:  domain hash size = 128\n[    0.324515] NetLabel:  protocols = UNLABELED CIPSOv4\n[    0.324566] NetLabel:  unlabeled traffic allowed by default\n[    0.325131] gcc_oxili_gfx3d_clk: set OPP pair(19200000 Hz: 615000 uV) on 1c00000.qcom,kgsl-3d0\n[    0.325501] gcc_oxili_gfx3d_clk: set OPP pair(200000000 Hz: 675000 uV) on 1c00000.qcom,kgsl-3d0\n[    0.325959] gcc_oxili_gfx3d_clk: set OPP pair(650000000 Hz: 0 uV) on 1c00000.qcom,kgsl-3d0\n[    0.326306] gcc-gfx-8953 1800000.qcom,gcc-gfx: Registered GCC GFX clocks.\n[    0.326420] cpu-clock-8953 b114000.qcom,cpu-clock-8953: Speed bin: 2 PVS Version: 0\n[    0.328095] cpu-clock-8953 b114000.qcom,cpu-clock-8953: missing qcom,dfs-sid-c0\n[    0.328102] cpu-clock-8953 b114000.qcom,cpu-clock-8953: No DFS SID tables found for Cluster-0\n[    0.328109] cpu-clock-8953 b114000.qcom,cpu-clock-8953: missing qcom,link-sid-c0\n[    0.328115] cpu-clock-8953 b114000.qcom,cpu-clock-8953: No Link SID tables found for Cluster-0\n[    0.328122] cpu-clock-8953 b114000.qcom,cpu-clock-8953: missing qcom,lmh-sid-c0\n[    0.328128] cpu-clock-8953 b114000.qcom,cpu-clock-8953: No LMH SID tables found for Cluster-0\n[    0.328131] ramp_lmh_sid: Use Default LMH SID\n[    0.328134] ramp_dfs_sid: Use Default DFS SID\n[    0.328137] ramp_link_sid: Use Default Link SID\n[    0.328178] cpu-clock-8953 b114000.qcom,cpu-clock-8953: missing qcom,dfs-sid-c1\n[    0.328183] cpu-clock-8953 b114000.qcom,cpu-clock-8953: No DFS SID tables found for Cluster-1\n[    0.328190] cpu-clock-8953 b114000.qcom,cpu-clock-8953: missing qcom,link-sid-c1\n[    0.328196] cpu-clock-8953 b114000.qcom,cpu-clock-8953: No Link SID tables found for Cluster-1\n[    0.328203] cpu-clock-8953 b114000.qcom,cpu-clock-8953: missing qcom,lmh-sid-c1\n[    0.328208] cpu-clock-8953 b114000.qcom,cpu-clock-8953: No LMH SID tables found for Cluster-1\n[    0.328211] ramp_lmh_sid: Use Default LMH SID\n[    0.328213] ramp_dfs_sid: Use Default DFS SID\n[    0.328215] ramp_link_sid: Use Default Link SID\n[    0.328261] clock_rcgwr_init: RCGwR  Init Completed\n[    0.331594] populate_opp_table: clock-cpu-8953: OPP tables populated (cpu 3 and 7)\n[    0.331601] print_opp_table: clock_cpu: a53 C0: OPP voltage for 652800000: 1\n[    0.331605] print_opp_table: clock_cpu: a53 C0: OPP voltage for 2016000000: 7\n[    0.331608] print_opp_table: clock_cpu: a53 C1: OPP voltage for 652800000: 1\n[    0.331611] print_opp_table: clock_cpu: a53 C2: OPP voltage for 2016000000: 7\n[    0.332577] qpnp_labibb_regulator_probe: LAB/IBB registered successfully, lab_vreg enable=1 ibb_vreg enable=1 swire_control=0\n[    0.332671] sched-energy energy-costs: cpu=0 eff=1024 [freq=652800 cap=302 power_d0=5] -> [freq=2016000 cap=932 power_d0=36]\n[    0.332674] CPU0: update cpu_power 975\n[    0.332684] sched-energy energy-costs: cpu=1 eff=1024 [freq=652800 cap=302 power_d0=5] -> [freq=2016000 cap=932 power_d0=36]\n[    0.332687] CPU1: update cpu_power 975\n[    0.332696] sched-energy energy-costs: cpu=2 eff=1024 [freq=652800 cap=302 power_d0=5] -> [freq=2016000 cap=932 power_d0=36]\n[    0.332698] CPU2: update cpu_power 975\n[    0.332707] sched-energy energy-costs: cpu=3 eff=1024 [freq=652800 cap=302 power_d0=5] -> [freq=2016000 cap=932 power_d0=36]\n[    0.332710] CPU3: update cpu_power 975\n[    0.332719] sched-energy energy-costs: cpu=4 eff=1126 [freq=652800 cap=332 power_d0=5] -> [freq=2016000 cap=1024 power_d0=36]\n[    0.332722] CPU4: update cpu_power 1072\n[    0.332731] sched-energy energy-costs: cpu=5 eff=1126 [freq=652800 cap=332 power_d0=5] -> [freq=2016000 cap=1024 power_d0=36]\n[    0.332734] CPU5: update cpu_power 1072\n[    0.332743] sched-energy energy-costs: cpu=6 eff=1126 [freq=652800 cap=332 power_d0=5] -> [freq=2016000 cap=1024 power_d0=36]\n[    0.332746] CPU6: update cpu_power 1072\n[    0.332755] sched-energy energy-costs: cpu=7 eff=1126 [freq=652800 cap=332 power_d0=5] -> [freq=2016000 cap=1024 power_d0=36]\n[    0.332758] CPU7: update cpu_power 1072\n[    0.333009] CPU0: update max cpu_capacity 932\n[    0.333189] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.333477] gdsc_oxili_gx: supplied by msm_gfx_ldo\n[    0.334461] arm-smmu 1c40000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.334470] arm-smmu 1c40000.arm,smmu-kgsl: \tstream matching with 4 register groups, mask 0x7fff\n[    0.337563] cpufreq: driver msm up and running\n[    0.339540] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.339544] ipa ipa_init:4024 fail to register with bus mgr!\n[    0.339582] ipa ipa_plat_drv_probe:5054 ipa_init failed\n[    0.340096] clocksource: Switched to clocksource arch_sys_counter\n[    0.369151] VFS: Disk quotas dquot_6.6.0\n[    0.369188] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.369238] msm_bus_fabric_init_driver\n[    0.373249] msm_bus_device 580000.ad-hoc-bus: Bus scaling driver probe successful\n[    0.374493] NET: Registered protocol family 2\n[    0.374815] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.374939] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.375201] TCP: Hash tables configured (established 32768 bind 32768)\n[    0.375244] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.375289] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.375424] NET: Registered protocol family 1\n[    0.376085] gcc-mdss-8953 1800000.qcom,gcc-mdss: Registered GCC MDSS clocks.\n[    0.376741] ipa ipa2_uc_state_check:297 uC interface not initialized\n[    0.376749] ipa ipa_sps_irq_control_all:963 EP (2) not allocated.\n[    0.376752] ipa ipa_sps_irq_control_all:963 EP (5) not allocated.\n[    0.380116] sps:BAM 0x0000000007904000 is registered.\n[    0.382494] sps:BAM 0x0000000007904000 (va:0xffffff800afc0000) enabled: ver:0x27, number of pipes:20\n[    0.393574] IPA driver initialization was successful.\n[    0.393844] Trying to unpack rootfs image as initramfs...\n[    0.590774] Freeing initrd memory: 7456K\n[    0.591559] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.594192] audit: initializing netlink subsys (disabled)\n[    0.594233] audit: type=2000 audit(0.589:1): initialized\n[    0.594399] Initialise system trusted keyrings\n[    0.595679] workingset: timestamp_bits=45 max_order=20 bucket_order=0\n[    0.599614] exFAT: file-system version 2.2.0-3arter97\n[    0.599946] Registering sdcardfs 0.1\n[    0.602585] fuse init (API version 7.26)\n[    0.604190] SELinux:  Registering netfilter hooks\n[    0.604375] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    0.604376] pfk_f2fs [pfk_f2fs_init]: PFK F2FS inited successfully\n[    0.604379] pfk [pfk_init]: Driver initialized successfully\n[    0.607175] Key type asymmetric registered\n[    0.607178] Asymmetric key parser 'x509' registered\n[    0.607189] io scheduler noop registered\n[    0.607288] io scheduler cfq registered\n[    0.607306] io scheduler bfq registered (default)\n[    0.607307] BFQ I/O-scheduler: v8r12 (with cgroups support)\n[    0.615290] msm_mdss_get_res_byname: 'vbif_nrt_phys' resource not found\n[    0.615300] mdss_mdp_probe+0x260/0x1508->msm_mdss_ioremap_byname: 'vbif_nrt_phys' msm_mdss_get_res_byname failed\n[    0.615468] mdss_mdp_irq_clk_register: unable to get clk: lut_clk\n[    0.615479] mdss_mdp_irq_clk_register: unable to get clk: mnoc_clk\n[    0.615767] No change in context(0==0), skip\n[    0.616441] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:0 num:0 rect:0 ndx:0x1 prio:0\n[    0.616452] mdss_mdp_pipe_addr_setup: type:1 ftchid:-1 xinid:1 num:3 rect:0 ndx:0x8 prio:1\n[    0.616455] mdss_mdp_pipe_addr_setup: type:1 ftchid:-1 xinid:5 num:4 rect:0 ndx:0x10 prio:2\n[    0.616465] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:2 num:6 rect:0 ndx:0x40 prio:3\n[    0.616474] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:7 num:10 rect:0 ndx:0x400 prio:0\n[    0.616480] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-pipe-sw-reset-off : u32 array read\n[    0.616553] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-ib-factor-overlap : u32 array read\n[    0.616557] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-bus-througput-factor : u32 array read\n[    0.616733] xlog_status: enable:1, panic:1, dump:2\n[    0.616936] iommu: Adding device 1a00000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb to group 1\n[    0.617112] iommu: Adding device 1a00000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb to group 2\n[    0.617265] mdss_mdp_probe: mdss version = 0x10100000, bootloader display is on, num 1, intf_sel=0x00000100\n[    0.619954] mdss_smmu_util_parse_dt_clock: clocks are not defined\n[    0.619963] mdss_smmu_probe: iommu v2 domain[0] mapping and clk register successful!\n[    0.619976] mdss_smmu_util_parse_dt_clock: clocks are not defined\n[    0.619980] mdss_smmu_probe: iommu v2 domain[2] mapping and clk register successful!\n[    0.620173] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.620180] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.620190] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.621080] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->0\n[    0.621170] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_nt35532_fhd_video:1:none:cfg:single_dsi panel_name:qcom,mdss_dsi_nt35532_fhd_video\n[    0.621178] mdss_dsi_panel_init: Panel Name = nt35532 fhd video mode dsi panel\n[    0.621266] mdss_dsi_panel_timing_from_dt: found new timing \"qcom,mdss_dsi_nt35532_fhd_video\" (ffffffc04ef03438)\n[    0.621275] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-post-panel-on-command\n[    0.621278] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-timing-switch-command\n[    0.621280] mdss_dsi_panel_get_dsc_cfg_np: cannot find dsc config node:\n[    0.621341] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-idle-on-command\n[    0.621344] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-idle-off-command\n[    0.621359] mdss_dsi_parse_panel_features: ulps feature disabled\n[    0.621362] mdss_dsi_parse_panel_features: ulps during suspend feature disabled\n[    0.621366] mdss_dsi_parse_dms_config: dynamic switch feature enabled: 0\n[    0.621398] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-on\n[    0.621402] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-off\n[    0.621430] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.621436] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.621440] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.621445] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.621474] 1a94000.qcom,mdss_dsi_ctrl0 supply vdd not found, using dummy regulator\n[    0.621599] mdss_dsi_parse_ctrl_params:4251 Unable to read qcom,display-id, data=0000000000000000,len=20\n[    0.621606] mdss_dsi_parse_gpio_params: bklt_en gpio not specified\n[    0.621609] mdss_dsi_parse_gpio_params: ext vdd gpio not specified\n[    0.621654] msm_mdss_get_res_byname: 'dsi_phy_regulator' resource not found\n[    0.621664] mdss_dsi_retrieve_ctrl_resources+0x184/0x1e8->msm_mdss_ioremap_byname: 'dsi_phy_regulator' msm_mdss_get_res_byname failed\n[    0.621666] mdss_dsi_retrieve_ctrl_resources: ctrl_base=ffffff800ae9d000 ctrl_size=400 phy_base=ffffff800aed8400 phy_size=580\n[    0.622014] dsi_panel_device_register: Continuous splash enabled\n[    0.622135] mdss_register_panel: adding framebuffer device 1a94000.qcom,mdss_dsi_ctrl0\n[    0.624520] mdss_dsi_ctrl_probe: Dsi Ctrl->0 initialized, DSI rev:0x10040002, PHY rev:0x2\n[    0.624590] mdss_dsi_status_init: DSI status check interval:2000\n[    0.624883] mdss_register_panel: adding framebuffer device soc:qcom,mdss_wb_panel\n[    0.625587] mdss_fb_probe: fb0: split_mode:0 left:0 right:0\n[    0.625982] mdss_fb_register: FrameBuffer[0] 1080x1920 registered successfully!\n[    0.626163] mdss_fb_probe: fb1: split_mode:0 left:0 right:0\n[    0.626253] mdss_fb_register: FrameBuffer[1] 640x640 registered successfully!\n[    0.626301] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    0.626566] mdss_mdp_kcal_store_fb0_ctl panel name nt35532 fhd video mode dsi panel\n[    0.626567] mdss_mdp_kcal_store_fb0_ctl panel found...\n[    0.626594] kcal_ctrl_init: registered\n[    0.626772] qcom-sps-dma 7884000.qcom,sps-dma: dma_async_device_register: device has no channels!\n[    0.626794] qcom-sps-dma 7ac4000.qcom,sps-dma: dma_async_device_register: device has no channels!\n[    0.629545] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.629549] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    0.629554] memshare: hyp_assign_phys failed size=2097152 err=-5\n[    0.629581] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.629701] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.631407] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.631410] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    0.631413] memshare: hyp_assign_phys failed size=5242880 err=-5\n[    0.631420] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.632532] minidump-id not found for a506_zap\n[    0.632546] subsys-pil-tz soc:qcom,kgsl-hyp: for a506_zap segments only will be dumped.\n[    0.633018] minidump-id not found for adsp\n[    0.633100] minidump-id not found for wcnss\n[    0.633252] minidump-id not found for venus\n[    0.633261] subsys-pil-tz 1de0000.qcom,venus: for venus segments only will be dumped.\n[    0.634328] minidump-id not found for modem\n[    0.635556] wcnss: wcnss_wlan probed in built-in mode\n[    0.636402] msm_serial_hs module loaded\n[    0.638719] random: fast init done\n[    0.638783] random: crng init done\n[    0.642405] diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    0.642409] diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    0.706768] diag: In __diag_glink_init, unable to register for glink channel DIAG_CTRL\n[    0.707924] diag: In __diag_glink_init, unable to register for glink channel DIAG_DATA\n[    0.709010] diag: In __diag_glink_init, unable to register for glink channel DIAG_CMD\n[    0.710096] diag: In __diag_glink_init, unable to register for glink channel DIAG_DCI_DATA\n[    0.711179] diag: In __diag_glink_init, unable to register for glink channel DIAG_DCI_CMD\n[    0.733415] brd: module loaded\n[    0.755563] loop: module loaded\n[    0.756876] zram: Added device: zram0\n[    0.757834] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1000000\n[    0.757855] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.757860] QSEECOM: qseecom_probe: qseecom clocks handled by other subsystem\n[    0.757862] QSEECOM: qseecom_probe: qsee reentrancy support phase is not defined, setting to default 0\n[    0.758031] QSEECOM: qseecom_probe: qseecom.whitelist_support = 0\n[    0.760735] QCE50: __qce_get_device_tree_data: BAM Apps EE is not defined, setting to default 1\n[    0.760988] qce 720000.qcedev: QTI Crypto 5.3.3 device found @0x720000\n[    0.760994] qce 720000.qcedev: CE device = 0x0 IO base, CE = ffffff800c0a0000 Consumer (IN) PIPE 2,\n               Producer (OUT) PIPE 3 IO base BAM = 0000000000000000\n               BAM IRQ 65 Engines Availability = 0x2010853\n[    0.761143] sps:BAM 0x0000000000704000 is registered.\n[    0.761295] sps:BAM 0x0000000000704000 (va:0xffffff800c200000) enabled: ver:0x27, number of pipes:8\n[    0.761452] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000000704000 irq 65\n[    0.767927] QCE50: __qce_get_device_tree_data: BAM Apps EE is not defined, setting to default 1\n[    0.768248] qcrypto 720000.qcrypto: QTI Crypto 5.3.3 device found @0x720000\n[    0.768253] qcrypto 720000.qcrypto: CE device = 0x0 IO base, CE = ffffff800c240000 Consumer (IN) PIPE 4,\n               Producer (OUT) PIPE 5 IO base BAM = 0000000000000000\n               BAM IRQ 65 Engines Availability = 0x2010853\n[    0.768499] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000000704000 irq 65\n[    0.770875] qcrypto 720000.qcrypto: qcrypto-ecb-aes\n[    0.770975] qcrypto 720000.qcrypto: qcrypto-cbc-aes\n[    0.771045] qcrypto 720000.qcrypto: qcrypto-ctr-aes\n[    0.771113] qcrypto 720000.qcrypto: qcrypto-ecb-des\n[    0.771182] qcrypto 720000.qcrypto: qcrypto-cbc-des\n[    0.771249] qcrypto 720000.qcrypto: qcrypto-ecb-3des\n[    0.771321] qcrypto 720000.qcrypto: qcrypto-cbc-3des\n[    0.771392] qcrypto 720000.qcrypto: qcrypto-xts-aes\n[    0.771461] qcrypto 720000.qcrypto: qcrypto-sha1\n[    0.771532] qcrypto 720000.qcrypto: qcrypto-sha256\n[    0.771601] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    0.771670] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    0.771739] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    0.771808] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    0.771878] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    0.771949] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    0.772018] qcrypto 720000.qcrypto: qcrypto-hmac-sha1\n[    0.772087] qcrypto 720000.qcrypto: qcrypto-hmac-sha256\n[    0.772156] qcrypto 720000.qcrypto: qcrypto-aes-ccm\n[    0.772227] qcrypto 720000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    0.772895] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    0.772943] ICE IRQ = 75\n[    0.773328] SCSI Media Changer driver v0.25 \n[    0.778230] iommu: Adding device 1c40000.qcom,kgsl-iommu:gfx3d_user to group 3\n[    0.778442] platform 1c40000.qcom,kgsl-iommu:gfx3d_secure: assigned reserved memory node secure_region@0\n[    0.778647] iommu: Adding device 1c40000.qcom,kgsl-iommu:gfx3d_secure to group 4\n[    0.784855] libphy: Fixed MDIO Bus: probed\n[    0.784859] tun: Universal TUN/TAP device driver, 1.6\n[    0.784861] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    0.784991] PPP generic driver version 2.4.2\n[    0.785063] PPP BSD Compression module registered\n[    0.785065] PPP Deflate Compression module registered\n[    0.785083] PPP MPPE Compression module registered\n[    0.785085] NET: Registered protocol family 24\n[    0.785097] PPTP driver version 0.8.5\n[    0.785342] usbcore: registered new interface driver r8152\n[    0.785362] usbcore: registered new interface driver asix\n[    0.785401] usbcore: registered new interface driver ax88179_178a\n[    0.785418] usbcore: registered new interface driver cdc_ether\n[    0.785433] usbcore: registered new interface driver net1080\n[    0.785449] usbcore: registered new interface driver cdc_subset\n[    0.785465] usbcore: registered new interface driver zaurus\n[    0.785489] usbcore: registered new interface driver cdc_ncm\n[    0.786344] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.786347] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    0.786351] msm_sharedmem: setup_shared_ram_perms: hyp_assign_phys failed IPA=0x0160x00000000f3300000 size=1572864 err=-5\n[    0.786539] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.789437] msm-dwc3 7000000.ssusb: unable to get dbm device\n[    0.790343] CHRDEV \"usbmon\" major number 233 goes below the dynamic allocation range\n[    0.790609] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.790611] ehci-platform: EHCI generic platform driver\n[    0.791073] ehci-msm: Qualcomm On-Chip EHCI Host Controller\n[    0.791776] usbcore: registered new interface driver cdc_acm\n[    0.791777] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters\n[    0.791804] usbcore: registered new interface driver usb-storage\n[    0.791821] usbcore: registered new interface driver ums-alauda\n[    0.791835] usbcore: registered new interface driver ums-cypress\n[    0.791849] usbcore: registered new interface driver ums-datafab\n[    0.791863] usbcore: registered new interface driver ums-freecom\n[    0.791877] usbcore: registered new interface driver ums-isd200\n[    0.791890] usbcore: registered new interface driver ums-jumpshot\n[    0.791904] usbcore: registered new interface driver ums-karma\n[    0.791918] usbcore: registered new interface driver ums-onetouch\n[    0.791932] usbcore: registered new interface driver ums-sddr09\n[    0.791948] usbcore: registered new interface driver ums-sddr55\n[    0.791962] usbcore: registered new interface driver ums-usbat\n[    0.792001] usbcore: registered new interface driver usbserial\n[    0.792017] usbcore: registered new interface driver usb_ehset_test\n[    0.792033] usbcore: registered new interface driver lvs\n[    0.792060] CHRDEV \"ttyGS\" major number 232 goes below the dynamic allocation range\n[    0.793331] msm_sharedmem: sharedmem_register_qmi: qmi init successful\n[    0.794077] usb_qcrndis_init: failed to register diag -17\n[    0.794103] CHRDEV \"rmnet_ctrl\" major number 231 goes below the dynamic allocation range\n[    0.794675] mousedev: PS/2 mouse device common for all mice\n[    0.794783] tony_test:[ft5435_ts_init]\n[    0.797133] i2c-msm-v2 78b7000.i2c: msm_bus_scale_register_client(mstr-id:86):0xe (ok)\n[    0.797363] ~~~~~ ft5435_ts_probe start\n[    0.797365] [ft5435_ts_probe]CONFIG_FB is defined\n[    0.797366] [ft5435_ts_probe]CONFIG_PM is defined\n[    0.797392] [ft5435_get_dt_vkey]000\n[    0.797393] [ft5435_get_dt_vkey]111\n[    0.797394] [ft5435_get_dt_vkey]222\n[    0.797394] [ft5435_get_dt_vkey]333\n[    0.797397] [FTS]keycode = 172, x= 500, y=2040 \n[    0.797400] [FTS]keycode = 139, x= 200, y=2040 \n[    0.797402] [FTS]keycode = 158, x= 800, y=2040 \n[    0.797403] [ft5435_get_dt_vkey]5555\n[    0.797490] input: ft5435_ts as /devices/platform/soc/78b7000.i2c/i2c-3/3-0038/input/input1\n[    1.040188] ft5435_ts 3-0038: Device ID = 0x54\n[    1.041607] ft5435_ts 3-0038: report rate = 110Hz\n[    1.042146] ft5435_ts 3-0038: Firmware version = 1.0.0\n[    1.042282] [Fu]fw_vendor_id=0x79\n[    1.042284] upgrade,fts_fw_vendor_id=0x79\n[    1.460259] FTS_UPGRADE_LOOP ok is  i = 0 \n[    1.480287] ft5435_fw_Vid_get_from_boot: REG VAL ID1 = 0x0, ID2 = 0x79\n[    1.480288] ft5435_fw_Vid_get_from_boot: reset the tp\n[    1.790024] get_Vid_from_boot, fw_vendor_id=0x79\n[    1.790026] [FTS] FW unmatched,stop upgrade\n[    1.790076] ~~~~~ tp_glove_register enable!!!!!\n[    1.790078] [fts]ft5435_fw_LockDownInfo_get_from_boot, fw_vendor_id=0x79\n[    2.210251] ft5435_fw_LockDownInfo_get_from_boot, FTS_UPGRADE_LOOP ok is  i = 0 \n[    2.250271] ft5435_fw_LockDownInfo_get_from_boot: REG VAL = 0x46, j=0\n[    2.250273] ft5435_fw_LockDownInfo_get_from_boot: REG VAL = 0x54, j=1\n[    2.250274] ft5435_fw_LockDownInfo_get_from_boot: REG VAL = 0x53, j=2\n[    2.250275] ft5435_fw_LockDownInfo_get_from_boot: REG VAL = 0x35, j=3\n[    2.250276] ft5435_fw_LockDownInfo_get_from_boot: REG VAL = 0x58, j=4\n[    2.250278] ft5435_fw_LockDownInfo_get_from_boot: REG VAL = 0x34, j=5\n[    2.250279] ft5435_fw_LockDownInfo_get_from_boot: REG VAL = 0x36, j=6\n[    2.250280] ft5435_fw_LockDownInfo_get_from_boot: REG VAL = 0x50, j=7\n[    2.250282] ft5435_fw_LockDownInfo_get_from_boot: reset the tp\n[    2.560032] tpd_probe, ft5x46_ctpm_LockDownInfo_get_from_boot, tp_lockdown_info=4654533558343650\n[    2.560041] ft5435_ts 3-0038: Create proc entry success!\n[    2.560140] ~~~~~ ft5435_ts_probe end\n[    2.560174] [ TSP ] ist30xx_init()\n[    2.560328] [ TSP ] ### IMAGIS probe(ver:3.0.0.0, addr:0x50) ###\n[    2.560338] [ TSP ] ##### Device tree #####\n[    2.560339] [ TSP ]  reset gpio: 64\n[    2.560341] [ TSP ]  irq gpio: 65\n[    2.560342] [ TSP ] ist30xx_request_gpio\n[    2.560344] [ TSP ] unable to request reset gpio: 64\n[    2.560346] [ TSP ] Error, ist30xx init driver\n[    2.560364] <<-GTP-INFO->> GTP driver installing...\n[    2.562673] <<-GTP-INFO->> GTP Driver Version: V2.4<2014/11/28>\n[    2.562674] <<-GTP-INFO->> GTP I2C Address: 0x14\n[    2.562762] <<-GTP-ERROR->> Failed to request GPIO:65, ERRNO:-16\n[    2.562767] <<-GTP-INFO->> gtp_request_io_port : ret = -19\n\n[    2.562768] <<-GTP-ERROR->> GTP request IO port failed.\n[    2.562769] <<-GTP-INFO->> destroy_workqueue :  goodix_wq\n[    2.562834] <<-GTP-INFO->> destroy_workqueue :  gtp_esd_check_workqueue\n[    2.562905] <<-GTP-INFO->> wmy i2c_add_driver, ret = 0\n[    2.562906] --------gf_init start.--------\n[    2.563573] --------gf_probe start.--------\n[    2.563757] input: gf3208 as /devices/virtual/input/input2\n[    2.563821] --------gf_probe end---OK.--------\n[    2.563881]  status = 0x0\n[    2.563882] --------gf_init end---OK.--------\n[    2.564439] fpc1020 soc:fpc1020: fpc1020_probe: ok\n[    2.564469] fpc1020_init OK\n[    2.565339] qcom,qpnp-rtc 200f000.qcom,spmi:qcom,pm8953@0:qcom,pm8953_rtc: rtc core: registered qpnp_rtc as rtc0\n[    2.565540] i2c /dev entries driver\n[    2.565772] CHRDEV \"BaseRemoteCtl\" major number 230 goes below the dynamic allocation range\n[    2.565773] lirc_dev: IR Remote Control driver registered, major 230\n[    2.565775] IR NEC protocol handler initialized\n[    2.565777] IR RC5(x/sz) protocol handler initialized\n[    2.565778] IR RC6 protocol handler initialized\n[    2.565779] IR JVC protocol handler initialized\n[    2.565780] IR Sony protocol handler initialized\n[    2.565781] IR SANYO protocol handler initialized\n[    2.565783] IR Sharp protocol handler initialized\n[    2.565784] IR LIRC bridge handler initialized\n[    2.565785] IR XMP protocol handler initialized\n[    2.570535] iommu: Adding device 1d00000.qcom,vidc:non_secure_cb to group 5\n[    2.570978] iommu: Adding device 1d00000.qcom,vidc:secure_bitstream_cb to group 6\n[    2.571276] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    2.571278] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    2.571344] iommu: Adding device 1d00000.qcom,vidc:secure_pixel_cb to group 7\n[    2.571593] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    2.571595] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    2.571659] iommu: Adding device 1d00000.qcom,vidc:secure_non_pixel_cb to group 8\n[    2.571896] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    2.571898] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    2.575838] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb1 to group 9\n[    2.576037] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb3 to group 10\n[    2.576172] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb4 to group 11\n[    2.577540] msm 1b00000.qcom,msm-cam: Entity type for entity msm_cci was not initialized!\n[    2.577579] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    2.581961] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csiphy was not initialized!\n[    2.582091] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    2.582232] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csiphy was not initialized!\n[    2.582305] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    2.582366] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csiphy was not initialized!\n[    2.582428] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    2.582985] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    2.582994] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    2.583128] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    2.583134] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    2.583269] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    2.583275] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    2.583834] msm_actuator_platform_probe:2014 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    2.583838] msm 1b00000.qcom,msm-cam: Entity type for entity msm_actuator was not initialized!\n[    2.584486] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    2.589775] msm_camera_config_single_vreg : can't find sub reg name\n[    2.598616] msm_cci_init:1438: hw_version = 0x10020005\n[    2.599064] msm_cci_irq:1790 MASTER_0 error 0x10000000\n[    2.599084] msm_cci_i2c_read:959 read_words = 0, exp words = 1\n[    2.599086] msm_cci_i2c_read_bytes:1042 failed rc -22\n[    2.599088] read_eeprom_memory error\n[    2.599089] msm_eeprom_platform_probe read_eeprom_memory failed\n[    2.607259] msm_camera_config_single_vreg : can't find sub reg name\n[    2.611429] qcom,eeprom: probe of 1b0c000.qcom,cci:qcom,eeprom@0 failed with error -22\n[    2.611648] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    2.617814] msm_camera_config_single_vreg : can't find sub reg name\n[    2.626170] msm_cci_init:1438: hw_version = 0x10020005\n[    2.626762] qcom,slave-addr = 0xB0\n[    2.627337] qcom,slave-addr = 0xB0\n[    2.628001] qcom,slave-addr = 0xB0\n[    2.628846] qcom,slave-addr = 0xB0\n[    2.629871] qcom,slave-addr = 0xB0\n[    2.847332] qcom,slave-addr = 0xB0\n[    2.957759] qcom,slave-addr = 0xB0\n[    2.966158] msm_camera_config_single_vreg : can't find sub reg name\n[    2.970075] msm 1b00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    2.970472] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    2.976666] msm_camera_config_single_vreg : can't find sub reg name\n[    2.985668] msm_cci_init:1438: hw_version = 0x10020005\n[    2.986260] qcom,slave-addr = 0xB0\n[    2.986745] qcom,slave-addr = 0xB0\n[    2.987230] qcom,slave-addr = 0xB0\n[    2.987895] qcom,slave-addr = 0xB0\n[    2.988740] qcom,slave-addr = 0xB0\n[    2.989224] qcom,slave-addr = 0xB0\n[    2.990160] qcom,slave-addr = 0xB0\n[    2.991095] qcom,slave-addr = 0xB0\n[    3.208555] qcom,slave-addr = 0xB0\n[    3.327741] msm_camera_config_single_vreg : can't find sub reg name\n[    3.331914] msm 1b00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    3.332322] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    3.352121] msm_cci_init:1438: hw_version = 0x10020005\n[    3.352566] msm_cci_irq:1796 MASTER_1 error 0x40000000\n[    3.352586] msm_cci_i2c_read:959 read_words = 0, exp words = 1\n[    3.352588] msm_cci_i2c_read_bytes:1042 failed rc -22\n[    3.352590] read_eeprom_memory error\n[    3.352591] msm_eeprom_platform_probe read_eeprom_memory failed\n[    3.371880] qcom,eeprom: probe of 1b0c000.qcom,cci:qcom,eeprom@3 failed with error -22\n[    3.372150] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    3.393491] msm_cci_init:1438: hw_version = 0x10020005\n[    3.393936] msm_cci_irq:1796 MASTER_1 error 0x40000000\n[    3.393956] msm_cci_i2c_read:959 read_words = 0, exp words = 1\n[    3.393957] msm_cci_i2c_read_bytes:1042 failed rc -22\n[    3.393959] read_eeprom_memory error\n[    3.393960] msm_eeprom_platform_probe read_eeprom_memory failed\n[    3.413240] qcom,eeprom: probe of 1b0c000.qcom,cci:qcom,eeprom@4 failed with error -22\n[    3.413508] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    3.434184] msm_cci_init:1438: hw_version = 0x10020005\n[    3.610073] msm 1b00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    3.610456] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    3.616638] msm_camera_config_single_vreg : can't find sub reg name\n[    3.625631] msm_cci_init:1438: hw_version = 0x10020005\n[    3.626224] qcom,slave-addr = 0xB0\n[    3.680476] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    3.680479] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    3.752250] qcom,slave-addr = 0xB0\n[    3.878254] qcom,slave-addr = 0xB0\n[    4.004248] qcom,slave-addr = 0xB0\n[    4.130257] qcom,slave-addr = 0xB0\n[    4.256250] qcom,slave-addr = 0xB0\n[    4.382260] qcom,slave-addr = 0xB0\n[    4.508254] qcom,slave-addr = 0xB0\n[    4.642157] msm_camera_config_single_vreg : can't find sub reg name\n[    4.646335] msm 1b00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    4.646753] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    4.652075] msm_camera_config_single_vreg : can't find sub reg name\n[    4.660160] msm_cci_init:1438: hw_version = 0x10020005\n[    4.660606] msm_cci_irq:1790 MASTER_0 error 0x10000000\n[    4.660626] msm_cci_i2c_read:959 read_words = 0, exp words = 1\n[    4.660627] msm_cci_i2c_read_bytes:1042 failed rc -22\n[    4.660629] read_eeprom_memory error\n[    4.660630] msm_eeprom_platform_probe read_eeprom_memory failed\n[    4.668798] msm_camera_config_single_vreg : can't find sub reg name\n[    4.672081] qcom,eeprom: probe of 1b0c000.qcom,cci:qcom,eeprom@7 failed with error -22\n[    4.672320] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    4.678489] msm_camera_config_single_vreg : can't find sub reg name\n[    4.687469] msm_cci_init:1438: hw_version = 0x10020005\n[    4.688060] qcom,slave-addr = 0xB0\n[    4.814065] qcom,slave-addr = 0xB0\n[    4.940061] qcom,slave-addr = 0xB0\n[    5.066063] qcom,slave-addr = 0xB0\n[    5.192063] qcom,slave-addr = 0xB0\n[    5.318054] qcom,slave-addr = 0xB0\n[    5.444080] qcom,slave-addr = 0xB0\n[    5.570075] qcom,slave-addr = 0xB0\n[    5.704142] msm_camera_config_single_vreg : can't find sub reg name\n[    5.708309] msm 1b00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    5.708692] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    5.714090] msm_camera_config_single_vreg : can't find sub reg name\n[    5.722156] msm_cci_init:1438: hw_version = 0x10020005\n[    5.722601] msm_cci_irq:1790 MASTER_0 error 0x10000000\n[    5.722621] msm_cci_i2c_read:959 read_words = 0, exp words = 1\n[    5.722623] msm_cci_i2c_read_bytes:1042 failed rc -22\n[    5.722624] read_eeprom_memory error\n[    5.722626] msm_eeprom_platform_probe read_eeprom_memory failed\n[    5.730103] msm_camera_config_single_vreg : can't find sub reg name\n[    5.734273] qcom,eeprom: probe of 1b0c000.qcom,cci:qcom,eeprom@9 failed with error -22\n[    5.735215] msm_flash_get_dt_data:1036 No valid flash GPIOs data\n[    5.735224] msm 1b00000.qcom,msm-cam: Entity type for entity msm_camera_flash was not initialized!\n[    5.735999] adp1660 i2c_add_driver success\n[    5.736381] msm 1b00000.qcom,msm-cam: Entity type for entity msm_sensor_init was not initialized!\n[    5.736859] msm_camera_get_dt_gpio_set_tbl failed 794\n[    5.737031] msm_camera_get_dt_gpio_set_tbl failed 794\n[    5.737217] msm_camera_get_dt_gpio_set_tbl failed 794\n[    5.740129] MSM-CPP cpp_init_hardware:1011 CPP HW Version: 0x40030003\n[    5.740139] MSM-CPP cpp_init_hardware:1029 stream_cnt:0\n[    5.740149] msm 1b00000.qcom,msm-cam: Entity type for entity 1b04000.qcom,cpp was not initialized!\n[    5.742953] msm 1b00000.qcom,msm-cam: Entity type for entity 1b10000.qcom,vfe0 was not initialized!\n[    5.743212] msm 1b00000.qcom,msm-cam: Entity type for entity 1b14000.qcom,vfe1 was not initialized!\n[    5.743917] msm 1b00000.qcom,msm-cam: Entity type for entity 1b31000.qcom,ispif was not initialized!\n[    5.744393] __msm_jpeg_init:1537] Jpeg Device id 0\n[    5.744537] CHRDEV \"jpeg0\" major number 229 goes below the dynamic allocation range\n[    5.744732] msm 1b00000.qcom,msm-cam: Entity type for entity msm_buf_mngr was not initialized!\n[    5.745834] FG: fg_check_ima_exception: Initial ima_err_sts=0 ima_exp_sts=0 ima_hw_sts=aa\n[    5.747186] FG: fg_probe: FG Probe success - FG Revision DIG:3.1 ANA:1.2 PMIC subtype=17\n[    5.748206] SMBCHG: smbchg_hvdcp_enable_cb: smbchg_hvdcp_enable_cb HVDCP disabled\n[    5.749230] FG: status_change_work: qpnp-fg: Battery dishcarged, full soc enable!\n[    5.749232] FG: status_change_work: qpnp-fg: Current capacity: 50\n[    5.758735] qpnp-smbcharger 200f000.qcom,spmi:qcom,pmi8950@2:qcom,qpnp-smbcharger: SMBCHG successfully probe Charger version=SCHG_LITE Revision DIG:0.0 ANA:0.1 batt=1 dc=0 usb=0\n[    5.846009] device-mapper: uevent: version 1.0.3\n[    5.846245] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com\n[    5.847389] device-mapper: req-crypt: dm-req-crypt successfully initalized.\n\n[    5.848002] CHRDEV \"bt\" major number 228 goes below the dynamic allocation range\n[    5.848121] sdhci: Secure Digital Host Controller Interface driver\n[    5.848122] sdhci: Copyright(c) Pierre Ossman\n[    5.848123] sdhci-pltfm: SDHCI platform and OF driver helper\n[    5.848513] qcom,leds-qpnp: probe of 200f000.qcom,spmi:qcom,pmi8950@2:qcom,leds@a100 failed with error -10\n[    5.850997] i2c-msm-v2 78b6000.i2c: msm_bus_scale_register_client(mstr-id:86):0x13 (ok)\n[    5.851700] sdhci_msm 7824900.sdhci: failed opening nvmem cell err : -2\n[    5.851709] qcom_ice_get_pdevice: found ice device ffffffc0abb2ac00\n[    5.851710] qcom_ice_get_pdevice: matching platform device ffffffc0ad420800\n[    5.851883] sdhci_msm 7824900.sdhci: Failed to get dll hsr settings from dt\n[    5.852634] usbcore: registered new interface driver usbhid\n[    5.852635] usbhid: USB HID core driver\n[    5.852838] ashmem: initialized\n[    5.853182] qpnp_coincell_charger_show_state: enabled=Y, voltage=3200 mV, resistance=2100 ohm\n[    5.857044] qcom_ice 7803000.sdcc1ice: QC ICE 2.1.44 device found @0xffffff800c2d0000\n[    5.857672] mmc0: SDHCI controller on 7824900.sdhci [7824900.sdhci] using 64-bit ADMA in CMDQ mode\n[    5.942997] mmc0: Out-of-interrupt timeout is 50[ms]\n[    5.943001] mmc0: eMMC FW version: 0xa5\n[    5.943002] mmc0: CMDQ supported: depth: 32\n[    5.943003] mmc0: cache barrier support 1 flush policy 1\n[    5.955266] cmdq_host_alloc_tdl: desc_size: 768 data_sz: 63488 slot-sz: 24\n[    5.955395] mmc0: CMDQ enabled on card\n[    5.955403] mmc0: new HS400 Enhanced strobe MMC card at address 0001\n[    5.957982] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0xf) latency=-1\n[    5.957986] sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xf0) latency=-1\n[    5.958037] mmcblk0: mmc0:0001 HBG4a2 29.1 GiB \n[    5.959263] mmcblk0rpmb: mmc0:0001 HBG4a2 partition 3 4.00 MiB\n[    5.961369]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42 p43 p44 p45 p46 p47 p48 p49\n[    5.967384] sdhci_msm 7864900.sdhci: failed opening nvmem cell err : -2\n[    5.967391] sdhci_msm 7864900.sdhci: sdhci_msm_probe: ICE device is not enabled\n[    5.967571] sdhci_msm 7864900.sdhci: Failed to get dll hsr settings from dt\n[    5.981684] mmc1: SDHCI controller on 7864900.sdhci [7864900.sdhci] using 64-bit ADMA in legacy mode\n[    6.011622] tz_log 8600720.tz-log: Hyp log service is not supported\n[    6.012567] bimc-bwmon 408000.qcom,cpu-bwmon: BW HWmon governor registered.\n[    6.017345] CHRDEV \"sensors\" major number 227 goes below the dynamic allocation range\n[    6.018742] usbcore: registered new interface driver snd-usb-audio\n[    6.019446] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    6.034827] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx group_id: 0x9100\n[    6.035628] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0 dev_id: 0x9000\n[    6.035639] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    6.035696] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx group_id: 0x9101\n[    6.036061] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0 dev_id: 0x9001\n[    6.036068] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    6.036092] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx group_id: 0x9110\n[    6.036304] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0 dev_id: 0x9010\n[    6.036311] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    6.036330] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx group_id: 0x9111\n[    6.036475] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0 dev_id: 0x9011\n[    6.036482] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    6.036500] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx group_id: 0x9120\n[    6.036704] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0 dev_id: 0x9020\n[    6.036711] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    6.036730] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx group_id: 0x9121\n[    6.036934] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0 dev_id: 0x9021\n[    6.036941] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    6.036965] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx group_id: 0x9130\n[    6.037104] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0 dev_id: 0x9030\n[    6.037111] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    6.037129] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx group_id: 0x9131\n[    6.037334] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0 dev_id: 0x9031\n[    6.037341] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    6.037360] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx group_id: 0x9140\n[    6.037561] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0 dev_id: 0x9040\n[    6.037568] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    6.037588] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx group_id: 0x9141\n[    6.037729] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0 dev_id: 0x9041\n[    6.037736] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    6.043751] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    6.043775] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    6.044192] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    6.044198] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    6.047504] CHRDEV \"avtimer\" major number 226 goes below the dynamic allocation range\n[    6.048135] audio_notifier_init: PDR register failed, ret = -19, disable service\n[    6.049539] audio_notifer_reg_service: service SSR_ADSP is in use\n[    6.049543] audio_notifer_reg_service: service SSR_MODEM is in use\n[    6.051172] u32 classifier\n[    6.051175]     Actions configured\n[    6.051180] Netfilter messages via NETLINK v0.30.\n[    6.051318] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    6.051408] ctnetlink v0.93: registering with nfnetlink.\n[    6.051737] xt_time: kernel timezone is -0000\n[    6.051771] wireguard: WireGuard 1.0.20201221 loaded. See www.wireguard.com for information.\n[    6.051772] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    6.051830] gre: GRE over IPv4 demultiplexor driver\n[    6.051832] IPv4 over IPsec tunneling driver\n[    6.052092] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    6.052227] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    6.052250] Initializing XFRM netlink socket\n[    6.052264] IPsec XFRM device driver\n[    6.052440] NET: Registered protocol family 10\n[    6.054090] mip6: Mobile IPv6\n[    6.054101] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    6.054445] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    6.054860] NET: Registered protocol family 17\n[    6.054871] NET: Registered protocol family 15\n[    6.054884] Ebtables v2.0 registered\n[    6.054965] l2tp_core: L2TP core driver, V2.0\n[    6.054971] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    6.054972] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    6.054981] l2tp_netlink: L2TP netlink interface\n[    6.054999] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    6.055000] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    6.055808] NET: Registered protocol family 27\n[    6.056037] spmi spmi-0: error: impermissible write to peripheral sid:0 addr:0xc441\n[    6.056042] qcom-spmi-gpio 200f000.qcom,spmi:qcom,pm8953@0:gpios: write 0x41 failed\n[    6.056047] adv_vreg: Failed to request enable GPIO1277: -19\n[    6.056050] reg-fixed-voltage soc:adv_vreg: Failed to register regulator: -19\n[    6.060837] minidump-id not found for adsp\n[    6.062603] minidump-id not found for wcnss\n[    6.062741] subsys-pil-tz a21b000.qcom,pronto: for wcnss segments only will be dumped.\n[    6.063360] minidump-id not found for modem\n[    6.063672] pil-q6v5-mss 4080000.qcom,mss: for modem segments only will be dumped.\n[    6.063732] pil-q6v5-mss 4080000.qcom,mss: for md_modem segments only will be dumped.\n[    6.068132] sps:BAM 0x0000000007104000 is registered.\n[    6.068812] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    6.069337] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    6.069359] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    6.069781] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    6.069787] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    6.070528] Registered cp15_barrier emulation handler\n[    6.070545] Registered setend emulation handler\n[    6.070954] registered taskstats version 1\n[    6.070963] Loading compiled-in X.509 certificates\n[    6.075229] Loaded X.509 cert 'Build time autogenerated kernel key: 8cdcb5924ff912b95900efb648c7e8284615d8b7'\n[    6.076536] qcom,cc-debug-8953 1874000.qcom,cc-debug: Registered Debug Mux successfully\n[    6.081908] msm-dwc3 7000000.ssusb: DWC3 exited from low power mode\n[    6.083831] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb to group 12\n[    6.084979] CHRDEV \"adsprpc-smd\" major number 224 goes below the dynamic allocation range\n[    6.085491] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    6.085952] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    6.085976] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    6.086405] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    6.086410] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    6.088013] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    6.088443] qcom,qpnp-rtc 200f000.qcom,spmi:qcom,pm8953@0:qcom,pm8953_rtc: setting system clock to 1970-12-03 19:43:56 UTC (29101436)\n[    6.088818] pwm-ir soc:pwm_ir: reg-id = vdd, low-active = 0, use-timer = 0\n[    6.088937] Registered IR keymap rc-lirc\n[    6.089040] input: pwm-ir as /devices/platform/soc/soc:pwm_ir/rc/rc0/input4\n[    6.089473] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    6.089960] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    6.089981] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    6.090454] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    6.090460] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    6.090786] rc rc0: pwm-ir as /devices/platform/soc/soc:pwm_ir/rc/rc0\n[    6.091062] msm-dwc3 7000000.ssusb: DWC3 in low power mode\n[    6.091950] rc rc0: lirc_dev: driver ir-lirc-codec (pwm-ir) registered at minor = 0\n[    6.093800] lpm_levels_of: idx 1 276\n[    6.093806] lpm_levels_of: Residency < 0 for LPM\n[    6.093880] lpm_levels_of: idx 1 286\n[    6.093883] lpm_levels_of: Residency < 0 for LPM\n[    6.093964] lpm_levels: register_cluster_lpm_stats()\n[    6.094096] lpm_levels: register_cluster_lpm_stats()\n[    6.094757] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    6.095240] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    6.095262] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    6.095691] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    6.095697] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    6.097091] qcom,qpnp-flash-led 200f000.qcom,spmi:qcom,pmi8950@3:qcom,leds@d300: Unable to acquire pinctrl\n[    6.098522] rmnet_ipa started initialization\n[    6.098526] IPA SSR support = True\n[    6.098527] IPA ipa-loaduC = True\n[    6.098528] IPA SG support = True\n[    6.098529] IPA Napi Enable = False\n[    6.098531] using default for wan-rx-desc-size = 1024\n[    6.099052] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    6.099541] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    6.099564] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    6.099992] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    6.099998] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    6.105655] CHRDEV \"wwan_ioctl\" major number 223 goes below the dynamic allocation range\n[    6.107244] ipa ipa_sps_irq_control_all:963 EP (5) not allocated.\n[    6.107249] ipa ipa2_uc_state_check:302 uC is not loaded\n[    6.108214] rmnet_ipa completed initialization\n[    6.108671] RNDIS_IPA module is loaded.\n[    6.108686] clock_late_init: Removing enables held for handed-off clocks\n[    6.109064] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    6.109584] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    6.109606] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    6.110104] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    6.110110] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    6.114257] apc_mem_acc_corner: disabling\n[    6.114261] gfx_mem_acc_corner: disabling\n[    6.114276] vdd_vreg: disabling\n[    6.114302] ALSA device list:\n[    6.114304]   No soundcards found.\n[    6.114345] Warning: unable to open an initial console.\n[    6.115960] Freeing unused kernel memory: 6144K\n[    7.088924] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    7.089132] cpu1 \n[    7.089176] \n               Offline CPUs: \n[    7.092994] cpu1 \n[    7.123129] cpu2 \n[    7.174718] cpu3 \n[    7.225027] cpu4 \n[    7.274649] cpu5 \n[    7.312692] FG: set_prop_enable_charging: qpnp-fg: disabling charging\n[    7.323262] cpu6 \n[    7.374646] cpu7 \n\n[    7.440978] cpr3_regulator_measure_aging: apc: average quotient delta=-9 (count=10)\n[    7.441010] cpr3_regulator_aging_adjust: apc: aging measurement successful; aging reference adjustment voltage=0 uV\n[    9.362422] of_batterydata_get_best_profile: qrd_msm8953_desay_4100mah found\n[    9.389873] FG: set_prop_enable_charging: qpnp-fg: enabling charging\n[    9.415034] FG: fg_batt_profile_init: Battery SOC: 66, V: 3838325uV\n[   10.075893] qpnp_adc_tm_req_sts_check: retry error=1001 with 0x7\n[   12.453051] Sampling power every 1000 ms\n               Baseline power usage: \n[   88.622011] 692 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 652 1036 1401 1689 1804 1958 2016\n               \n                652: \n[  215.085312]  2117     3.2 C/MHz     53 mW    6.2 J   40.3 I/mJ   118.1 s\n               1036: \n[  298.394442]  3366     3.2 C/MHz     89 mW    6.6 J   37.7 I/mJ    74.3 s\n               1401: \n[  361.634206]  4552     3.2 C/MHz    165 mW    9.1 J   27.6 I/mJ    54.9 s\n               1689: \n[  415.847703]  5483     3.2 C/MHz    206 mW    9.4 J   26.6 I/mJ    45.6 s\n               1804: \n[  467.044099]  5861     3.2 C/MHz    288 mW   12.3 J   20.3 I/mJ    42.7 s\n               1958: \n[  515.234124]  6360     3.2 C/MHz    323 mW   12.7 J   19.7 I/mJ    39.3 s\n               2016: \n[  562.464986]  6547     3.2 C/MHz    346 mW   13.2 J   18.9 I/mJ    38.2 s\n               \n               \n               Benchmark finished!\n[  562.501433] \n               real\t9m16.290s\n               user\t6m54.326s\n               sys\t0m0.247s\n"
  },
  {
    "path": "results/msm8953/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  1:        700     GIC-0 203 Edge      mpm\n  4:       4397   mpm-gic  20 Level     arch_timer\n  6:      60519   mpm-gic  39 Level     arch_mem_timer\n  7:          0   mpm-gic  57 Edge      qcom,smd-modem\n  8:          0   mpm-gic  58 Edge      qcom,smsm-modem\n  9:          0   mpm-gic 174 Edge      qcom,smd-wcnss\n 10:          0   mpm-gic 176 Edge      qcom,smsm-wcnss\n 11:          0   mpm-gic 321 Edge      qcom,smd-adsp\n 12:          0   mpm-gic 322 Edge      qcom,smsm-adsp\n 13:        646   mpm-gic 200 Edge      qcom,smd-rpm\n 15:         82   mpm-gic 155 Edge      mmc0\n 16:          2   mpm-gic 170 Edge      7824900.sdhci\n 17:          0   mpm-gic 224 Level     spdm_bw_hyp\n 20:          0   mpm-gic 264 Level     arm-smmu-context-fault\n 27:          0   mpm-gic  86 Level     arm-smmu-context-fault\n 28:          0   mpm-gic  90 Level     arm-smmu-context-fault\n 29:          0   mpm-gic  92 Level     arm-smmu-context-fault\n 40:          0   mpm-gic 138 Level     arm-smmu-context-fault\n 45:          0   mpm-gic 145 Level     arm-smmu-context-fault\n 55:          0   mpm-gic  76 Level     msm_vidc\n 56:          0   mpm-gic  65 Level     kgsl-3d0\n 57:          0   mpm-gic 104 Edge      MDSS\n 58:          0   mpm-gic  59 Edge      smp2p\n 59:          0   mpm-gic 175 Edge      smp2p\n 60:          0   mpm-gic 323 Edge      smp2p\n 63:          0   mpm-gic 216 Level     tsens-upper-lower\n 64:          0   mpm-gic 346 Level     tsens-critical\n 65:          0   mpm-gic 239 Level     sps\n 69:          3   mpm-gic 128 Level     i2c-msm-v2-irq\n 70:         47   mpm-gic 129 Level     i2c-msm-v2-irq\n 71:          0   mpm-gic 331 Level     i2c-msm-v2-irq\n 73:          0   mpm-gic  35 Edge      apps_wdog_bark\n 75:          0   mpm-gic 344 Edge      7803000.sdcc1ice\n 77:         13     GIC-0 157 Edge      mmc1\n 78:          2     GIC-0 253 Edge      7864900.sdhci\n 79:          0   msmgpio 133 Edge      7864900.sdhci cd\n 80:          0   mpm-gic 260 Edge      ipa\n 81:         18   mpm-gic 262 Level     sps\n 83:          0  pmic_arb 8388652 Edge      qpnp_kpdpwr_status\n 84:          0  pmic_arb 8454188 Edge      qpnp_resin_status\n 87:          0  pmic_arb 37748782 Edge      pm8953_tz\n100:          0  pmic_arb 54722572 Edge      qpnp_adc_tm_high_interrupt\n101:          0  pmic_arb 54788108 Edge      qpnp_adc_tm_low_interrupt\n124:          0  pmic_arb 1031929862 Edge      qpnp_wled_sc_irq\n125:          0  pmic_arb 1006632968 Edge      haptics_sc_irq\n126:          0  pmic_arb 1006698504 Edge      haptics_play_irq\n127:          0   mpm-gic 168 Edge      hs_phy_irq\n128:          0   mpm-gic 252 Level     ss_phy_irq\n129:          0   mpm-gic 166 Edge      pwr_event_irq\n130:          0   mpm-gic  56 Edge      modem\n131:          0   mpm-gic 325 Edge      adsp\n132:          0   mpm-gic 181 Edge      wcnss\n135:          1   mpm-gic  47 Edge      cpr3\n136:          0   mpm-gic 110 Edge      csiphy\n137:          0   mpm-gic 111 Edge      csiphy\n138:          0   mpm-gic 347 Edge      csiphy\n139:          0   mpm-gic  83 Edge      csid\n140:          0   mpm-gic  84 Edge      csid\n141:          0   mpm-gic 185 Edge      csid\n142:          0   mpm-gic  87 Edge      ispif\n143:          0   mpm-gic  89 Edge      vfe\n144:          0   mpm-gic  61 Edge      vfe\n147:       1932   mpm-gic  82 Edge      cci\n277:      33703   msmgpio  24 Edge      te-irq\n278:          0   msmgpio  65 Edge      ft5435_ts\n279:          0  pmic_arb 101777429 Edge      qpnp_rtc_alarm\n280:          0  pmic_arb 604110871 Edge      full-soc\n281:          0  pmic_arb 604176407 Edge      empty-soc\n282:          4  pmic_arb 604241943 Edge      delta-soc\n283:          0  pmic_arb 604307479 Edge      first-est-done\n284:          0  pmic_arb 605028384 Edge      soft-cold\n285:          0  pmic_arb 605093920 Edge      soft-hot\n286:          0  pmic_arb 605421600 Edge      batt-missing\n287:          0  pmic_arb 605159456 Edge      vbatt-low\n288:       5779  pmic_arb 608174109 Edge      mem-avail\n289:          0  pmic_arb 553648161 Edge      chg-error\n290:          0  pmic_arb 554041377 Edge      chg-taper-thr\n291:          0  pmic_arb 554106913 Edge      chg-tcc-thr\n292:          0  pmic_arb 553975841 Edge      chg-rechg-thr\n293:          0  pmic_arb 553910305 Edge      chg-p2f-thr\n294:          0  pmic_arb 554893350 Edge      usbid-change\n295:          0  pmic_arb 554762278 Edge      otg-oc\n296:          0  pmic_arb 554696742 Edge      otg-fail\n297:          0  pmic_arb 555745298 Edge      batt-hot\n298:          0  pmic_arb 555810834 Edge      batt-warm\n299:          0  pmic_arb 555941906 Edge      batt-cool\n300:          0  pmic_arb 555876370 Edge      batt-cold\n301:          0  pmic_arb 556138514 Edge      batt-missing\n302:          0  pmic_arb 556072978 Edge      batt-low\n303:          0  pmic_arb 556793873 Edge      usbin-uv\n304:          0  pmic_arb 556859409 Edge      usbin-ov\n305:          0  pmic_arb 556924945 Edge      usbin-src-det\n306:          0  pmic_arb 557121553 Edge      aicl-done\n307:          0  pmic_arb 557842448 Edge      dcin-uv\n308:          0  pmic_arb 559939599 Edge      power-ok\n309:          0  pmic_arb 560005135 Edge      temp-shutdown\n310:          0  pmic_arb 560070671 Edge      wdog-timeout\n311:          0  smp2p_gpio   0 Edge      modem\n312:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n313:          0  smp2p_gpio   2 Edge      modem\n314:          0  smp2p_gpio   3 Edge      modem\n343:          0  smp2p_gpio   0 Edge      adsp\n344:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n345:          0  smp2p_gpio   2 Edge      adsp\n346:          0  smp2p_gpio   3 Edge      adsp\n375:          0  smp2p_gpio   0 Edge      wcnss\n376:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n377:          0  smp2p_gpio   2 Edge      wcnss\n378:          0  smp2p_gpio   3 Edge      wcnss\n407:          0     GIC-0 172 Edge      dwc3\n409:          0   msmgpio  85 Edge      volume_up\nIPI0:        99       Rescheduling interrupts\nIPI1:         8       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       Timer broadcast interrupts\nIPI4:     27923       IRQ work interrupts\nIPI5:         0       CPU wake-up interrupts\nIPI6:         0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/msm8953/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  1:          0          0          0          0          0          0          0          0     GIC-0 203 Edge      mpm\n  4:       1223          1          1          1          1          1          1          1   mpm-gic  20 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   mpm-gic  39 Level     arch_mem_timer\n  7:          0          0          0          0          0          0          0          0   mpm-gic  57 Edge      qcom,smd-modem\n  8:          0          0          0          0          0          0          0          0   mpm-gic  58 Edge      qcom,smsm-modem\n  9:          0          0          0          0          0          0          0          0   mpm-gic 174 Edge      qcom,smd-wcnss\n 10:          0          0          0          0          0          0          0          0   mpm-gic 176 Edge      qcom,smsm-wcnss\n 11:          0          0          0          0          0          0          0          0   mpm-gic 321 Edge      qcom,smd-adsp\n 12:          0          0          0          0          0          0          0          0   mpm-gic 322 Edge      qcom,smsm-adsp\n 13:        582          0          0          0          0          0          0          0   mpm-gic 200 Edge      qcom,smd-rpm\n 15:         71          0          0          0          0          0          0          0   mpm-gic 155 Edge      mmc0\n 16:          1          0          0          0          0          0          0          0   mpm-gic 170 Edge      7824900.sdhci\n 17:          0          0          0          0          0          0          0          0   mpm-gic 224 Level     spdm_bw_hyp\n 20:          0          0          0          0          0          0          0          0   mpm-gic 264 Level     arm-smmu-context-fault\n 27:          0          0          0          0          0          0          0          0   mpm-gic  86 Level     arm-smmu-context-fault\n 28:          0          0          0          0          0          0          0          0   mpm-gic  90 Level     arm-smmu-context-fault\n 29:          0          0          0          0          0          0          0          0   mpm-gic  92 Level     arm-smmu-context-fault\n 40:          0          0          0          0          0          0          0          0   mpm-gic 138 Level     arm-smmu-context-fault\n 45:          0          0          0          0          0          0          0          0   mpm-gic 145 Level     arm-smmu-context-fault\n 55:          0          0          0          0          0          0          0          0   mpm-gic  76 Level     msm_vidc\n 56:          0          0          0          0          0          0          0          0   mpm-gic  65 Level     kgsl-3d0\n 57:          0          0          0          0          0          0          0          0   mpm-gic 104 Edge      MDSS\n 58:          0          0          0          0          0          0          0          0   mpm-gic  59 Edge      smp2p\n 59:          0          0          0          0          0          0          0          0   mpm-gic 175 Edge      smp2p\n 60:          0          0          0          0          0          0          0          0   mpm-gic 323 Edge      smp2p\n 63:          0          0          0          0          0          0          0          0   mpm-gic 216 Level     tsens-upper-lower\n 64:          0          0          0          0          0          0          0          0   mpm-gic 346 Level     tsens-critical\n 65:          0          0          0          0          0          0          0          0   mpm-gic 239 Level     sps\n 69:          3          0          0          0          0          0          0          0   mpm-gic 128 Level     i2c-msm-v2-irq\n 70:         47          0          0          0          0          0          0          0   mpm-gic 129 Level     i2c-msm-v2-irq\n 71:          0          0          0          0          0          0          0          0   mpm-gic 331 Level     i2c-msm-v2-irq\n 73:          0          0          0          0          0          0          0          0   mpm-gic  35 Edge      apps_wdog_bark\n 75:          0          0          0          0          0          0          0          0   mpm-gic 344 Edge      7803000.sdcc1ice\n 77:         13          0          0          0          0          0          0          0     GIC-0 157 Edge      mmc1\n 78:          2          0          0          0          0          0          0          0     GIC-0 253 Edge      7864900.sdhci\n 79:          0          0          0          0          0          0          0          0   msmgpio 133 Edge      7864900.sdhci cd\n 80:          0          0          0          0          0          0          0          0   mpm-gic 260 Edge      ipa\n 81:         18          0          0          0          0          0          0          0   mpm-gic 262 Level     sps\n 83:          0          0          0          0          0          0          0          0  pmic_arb 8388652 Edge      qpnp_kpdpwr_status\n 84:          0          0          0          0          0          0          0          0  pmic_arb 8454188 Edge      qpnp_resin_status\n 87:          0          0          0          0          0          0          0          0  pmic_arb 37748782 Edge      pm8953_tz\n100:          0          0          0          0          0          0          0          0  pmic_arb 54722572 Edge      qpnp_adc_tm_high_interrupt\n101:          0          0          0          0          0          0          0          0  pmic_arb 54788108 Edge      qpnp_adc_tm_low_interrupt\n124:          0          0          0          0          0          0          0          0  pmic_arb 1031929862 Edge      qpnp_wled_sc_irq\n125:          0          0          0          0          0          0          0          0  pmic_arb 1006632968 Edge      haptics_sc_irq\n126:          0          0          0          0          0          0          0          0  pmic_arb 1006698504 Edge      haptics_play_irq\n127:          0          0          0          0          0          0          0          0   mpm-gic 168 Edge      hs_phy_irq\n128:          0          0          0          0          0          0          0          0   mpm-gic 252 Level     ss_phy_irq\n129:          0          0          0          0          0          0          0          0   mpm-gic 166 Edge      pwr_event_irq\n130:          0          0          0          0          0          0          0          0   mpm-gic  56 Edge      modem\n131:          0          0          0          0          0          0          0          0   mpm-gic 325 Edge      adsp\n132:          0          0          0          0          0          0          0          0   mpm-gic 181 Edge      wcnss\n135:          0          0          0          0          0          0          0          0   mpm-gic  47 Edge      cpr3\n136:          0          0          0          0          0          0          0          0   mpm-gic 110 Edge      csiphy\n137:          0          0          0          0          0          0          0          0   mpm-gic 111 Edge      csiphy\n138:          0          0          0          0          0          0          0          0   mpm-gic 347 Edge      csiphy\n139:          0          0          0          0          0          0          0          0   mpm-gic  83 Edge      csid\n140:          0          0          0          0          0          0          0          0   mpm-gic  84 Edge      csid\n141:          0          0          0          0          0          0          0          0   mpm-gic 185 Edge      csid\n142:          0          0          0          0          0          0          0          0   mpm-gic  87 Edge      ispif\n143:          0          0          0          0          0          0          0          0   mpm-gic  89 Edge      vfe\n144:          0          0          0          0          0          0          0          0   mpm-gic  61 Edge      vfe\n147:       1932          0          0          0          0          0          0          0   mpm-gic  82 Edge      cci\n277:        336          0          0          0          0          0          0          0   msmgpio  24 Edge      te-irq\n278:          0          0          0          0          0          0          0          0   msmgpio  65 Edge      ft5435_ts\n279:          0          0          0          0          0          0          0          0  pmic_arb 101777429 Edge      qpnp_rtc_alarm\n280:          0          0          0          0          0          0          0          0  pmic_arb 604110871 Edge      full-soc\n281:          0          0          0          0          0          0          0          0  pmic_arb 604176407 Edge      empty-soc\n282:          0          0          0          0          0          0          0          0  pmic_arb 604241943 Edge      delta-soc\n283:          0          0          0          0          0          0          0          0  pmic_arb 604307479 Edge      first-est-done\n284:          0          0          0          0          0          0          0          0  pmic_arb 605028384 Edge      soft-cold\n285:          0          0          0          0          0          0          0          0  pmic_arb 605093920 Edge      soft-hot\n286:          0          0          0          0          0          0          0          0  pmic_arb 605421600 Edge      batt-missing\n287:          0          0          0          0          0          0          0          0  pmic_arb 605159456 Edge      vbatt-low\n288:        112          0          0          0          0          0          0          0  pmic_arb 608174109 Edge      mem-avail\n289:          0          0          0          0          0          0          0          0  pmic_arb 553648161 Edge      chg-error\n290:          0          0          0          0          0          0          0          0  pmic_arb 554041377 Edge      chg-taper-thr\n291:          0          0          0          0          0          0          0          0  pmic_arb 554106913 Edge      chg-tcc-thr\n292:          0          0          0          0          0          0          0          0  pmic_arb 553975841 Edge      chg-rechg-thr\n293:          0          0          0          0          0          0          0          0  pmic_arb 553910305 Edge      chg-p2f-thr\n294:          0          0          0          0          0          0          0          0  pmic_arb 554893350 Edge      usbid-change\n295:          0          0          0          0          0          0          0          0  pmic_arb 554762278 Edge      otg-oc\n296:          0          0          0          0          0          0          0          0  pmic_arb 554696742 Edge      otg-fail\n297:          0          0          0          0          0          0          0          0  pmic_arb 555745298 Edge      batt-hot\n298:          0          0          0          0          0          0          0          0  pmic_arb 555810834 Edge      batt-warm\n299:          0          0          0          0          0          0          0          0  pmic_arb 555941906 Edge      batt-cool\n300:          0          0          0          0          0          0          0          0  pmic_arb 555876370 Edge      batt-cold\n301:          0          0          0          0          0          0          0          0  pmic_arb 556138514 Edge      batt-missing\n302:          0          0          0          0          0          0          0          0  pmic_arb 556072978 Edge      batt-low\n303:          0          0          0          0          0          0          0          0  pmic_arb 556793873 Edge      usbin-uv\n304:          0          0          0          0          0          0          0          0  pmic_arb 556859409 Edge      usbin-ov\n305:          0          0          0          0          0          0          0          0  pmic_arb 556924945 Edge      usbin-src-det\n306:          0          0          0          0          0          0          0          0  pmic_arb 557121553 Edge      aicl-done\n307:          0          0          0          0          0          0          0          0  pmic_arb 557842448 Edge      dcin-uv\n308:          0          0          0          0          0          0          0          0  pmic_arb 559939599 Edge      power-ok\n309:          0          0          0          0          0          0          0          0  pmic_arb 560005135 Edge      temp-shutdown\n310:          0          0          0          0          0          0          0          0  pmic_arb 560070671 Edge      wdog-timeout\n311:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      modem\n312:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n313:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      modem\n314:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      modem\n343:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      adsp\n344:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n345:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      adsp\n346:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      adsp\n375:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      wcnss\n376:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n377:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      wcnss\n378:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      wcnss\n407:          0          0          0          0          0          0          0          0     GIC-0 172 Edge      dwc3\n409:          0          0          0          0          0          0          0          0   msmgpio  85 Edge      volume_up\nIPI0:        49         76         76         76         76         76         75         74       Rescheduling interrupts\nIPI1:         0          6          6          6          6          6          6          6       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI4:       317          4          4          4          4          4          4          4       IRQ work interrupts\nIPI5:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/msm8953/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [kworker/0:0]\n    4 root      0:00 [kworker/0:0H]\n    5 root      0:01 [kworker/u16:0]\n    6 root      0:00 [ksoftirqd/0]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [lru-add-drain]\n   15 root      0:00 [cpuhp/0]\n   16 root      0:00 [cpuhp/1]\n   17 root      0:00 [migration/1]\n   18 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0H]\n   21 root      0:00 [rcuop/1]\n   22 root      0:00 [rcuos/1]\n   23 root      0:00 [rcuob/1]\n   24 root      0:00 [cpuhp/2]\n   25 root      0:00 [migration/2]\n   26 root      0:00 [ksoftirqd/2]\n   27 root      0:00 [kworker/2:0]\n   28 root      0:00 [kworker/2:0H]\n   29 root      0:00 [rcuop/2]\n   30 root      0:00 [rcuos/2]\n   31 root      0:00 [rcuob/2]\n   32 root      0:00 [cpuhp/3]\n   33 root      0:00 [migration/3]\n   34 root      0:00 [ksoftirqd/3]\n   35 root      0:00 [kworker/3:0]\n   36 root      0:00 [kworker/3:0H]\n   37 root      0:00 [rcuop/3]\n   38 root      0:00 [rcuos/3]\n   39 root      0:00 [rcuob/3]\n   40 root      0:00 [cpuhp/4]\n   41 root      0:00 [migration/4]\n   42 root      0:00 [ksoftirqd/4]\n   43 root      0:00 [kworker/4:0]\n   44 root      0:00 [kworker/4:0H]\n   45 root      0:00 [rcuop/4]\n   46 root      0:00 [rcuos/4]\n   47 root      0:00 [rcuob/4]\n   48 root      0:00 [cpuhp/5]\n   49 root      0:00 [migration/5]\n   50 root      0:00 [ksoftirqd/5]\n   51 root      0:00 [kworker/5:0]\n   52 root      0:00 [kworker/5:0H]\n   53 root      0:00 [rcuop/5]\n   54 root      0:00 [rcuos/5]\n   55 root      0:00 [rcuob/5]\n   56 root      0:00 [cpuhp/6]\n   57 root      0:00 [migration/6]\n   58 root      0:00 [ksoftirqd/6]\n   59 root      0:00 [kworker/6:0]\n   60 root      0:00 [kworker/6:0H]\n   61 root      0:00 [rcuop/6]\n   62 root      0:00 [rcuos/6]\n   63 root      0:00 [rcuob/6]\n   64 root      0:00 [cpuhp/7]\n   65 root      0:00 [migration/7]\n   66 root      0:00 [ksoftirqd/7]\n   67 root      0:00 [kworker/7:0]\n   68 root      0:00 [kworker/7:0H]\n   69 root      0:00 [rcuop/7]\n   70 root      0:00 [rcuos/7]\n   71 root      0:00 [rcuob/7]\n   72 root      0:00 [kdevtmpfs]\n   73 root      0:00 [netns]\n   75 root      0:00 [smd_channel_clo]\n   76 root      0:00 [kworker/u17:0]\n   78 root      0:00 [smsm_cb_wq]\n   79 root      0:00 [msm_watchdog]\n   80 root      0:00 [irq/135-cpr3]\n   81 root      0:00 [oom_reaper]\n   82 root      0:00 [writeback]\n   83 root      0:00 [kcompactd0]\n   84 root      0:00 [crypto]\n   85 root      0:00 [bioset]\n   86 root      0:00 [kblockd]\n   87 root      0:00 [irq/63-tsens-up]\n   88 root      0:00 [irq/64-tsens-cr]\n   89 root      0:00 [edac-poller]\n   90 root      0:00 [system]\n   91 root      0:00 [devfreq_wq]\n   92 root      0:00 [governor_msm_ad]\n   93 root      0:00 [cfg80211]\n   95 root      0:00 [irq/124-qpnp_wl]\n   96 root      0:00 [ipa_power_mgmt]\n   97 root      0:00 [sps_ipa_power_m]\n   98 root      0:00 [ipawq36]\n   99 root      0:00 [iparepwq36]\n  100 root      0:00 [kworker/u17:1]\n  101 root      0:00 [ipawq33]\n  102 root      0:00 [iparepwq33]\n  103 root      0:00 [ipawq34]\n  104 root      0:00 [iparepwq34]\n  105 root      0:00 [ipa_rm_wq]\n  106 root      0:00 [ipa_interrupt_w]\n  107 root      0:00 [ipa_holb_wq]\n  132 root      0:00 [kswapd0]\n  133 root      0:00 [vmstat]\n  134 root      0:00 [ecryptfs-kthrea]\n  135 root      0:00 [cifsiod]\n  136 root      0:00 [cifsoplockd]\n  137 root      0:00 [bioset]\n  171 root      0:00 [rot_workq_0]\n  172 root      0:00 [mdss_dsi_event]\n  173 root      0:00 [mdss_dsi_dba]\n  174 root      0:00 [mdss_display_wa]\n  175 root      0:00 [mem_share_svc]\n  176 root      0:00 [hwrng]\n  178 root      0:00 [diag_real_time_]\n  179 root      0:00 [qmi_hndl0000000]\n  180 root      0:00 [diag_wq]\n  181 root      0:00 [msm_ipc_router]\n  183 root      0:00 [DIAG_USB_diag]\n  184 root      0:00 [diag_cntl_wq]\n  185 root      0:00 [diag_dci_wq]\n  186 root      0:00 [DIAG_SMD_MODEM_]\n  187 root      0:00 [DIAG_SMD_MODEM_]\n  188 root      0:00 [DIAG_SMD_MODEM_]\n  189 root      0:00 [DIAG_SMD_MODEM_]\n  190 root      0:00 [DIAG_SMD_MODEM_]\n  191 root      0:00 [DIAG_SMD_LPASS_]\n  192 root      0:00 [DIAG_SMD_LPASS_]\n  193 root      0:00 [DIAG_SMD_LPASS_]\n  194 root      0:00 [DIAG_SMD_LPASS_]\n  195 root      0:00 [DIAG_SMD_LPASS_]\n  196 root      0:00 [DIAG_SMD_WCNSS_]\n  197 root      0:00 [DIAG_SMD_WCNSS_]\n  198 root      0:00 [DIAG_SMD_WCNSS_]\n  199 root      0:00 [DIAG_SMD_WCNSS_]\n  200 root      0:00 [DIAG_SMD_WCNSS_]\n  201 root      0:00 [DIAG_SMD_SENSOR]\n  202 root      0:00 [DIAG_SMD_SENSOR]\n  203 root      0:00 [DIAG_SMD_SENSOR]\n  204 root      0:00 [DIAG_SMD_SENSOR]\n  205 root      0:00 [DIAG_SMD_SENSOR]\n  206 root      0:00 [DIAG_SMD_CDSP_C]\n  207 root      0:00 [DIAG_SMD_CDSP_D]\n  208 root      0:00 [DIAG_SMD_CDSP_C]\n  209 root      0:00 [DIAG_SMD_CDSP_D]\n  210 root      0:00 [DIAG_SMD_CDSP_D]\n  211 root      0:00 [DIAG_SOCKET_MOD]\n  212 root      0:00 [DIAG_SOCKET_MOD]\n  213 root      0:00 [DIAG_SOCKET_MOD]\n  214 root      0:00 [DIAG_SOCKET_MOD]\n  215 root      0:00 [DIAG_SOCKET_MOD]\n  216 root      0:00 [DIAG_SOCKET_LPA]\n  217 root      0:00 [DIAG_SOCKET_LPA]\n  218 root      0:00 [DIAG_SOCKET_LPA]\n  219 root      0:00 [DIAG_SOCKET_LPA]\n  220 root      0:00 [DIAG_SOCKET_LPA]\n  221 root      0:00 [DIAG_SOCKET_WCN]\n  222 root      0:00 [DIAG_SOCKET_WCN]\n  223 root      0:00 [DIAG_SOCKET_WCN]\n  224 root      0:00 [DIAG_SOCKET_WCN]\n  225 root      0:00 [DIAG_SOCKET_WCN]\n  226 root      0:00 [DIAG_SOCKET_SEN]\n  227 root      0:00 [DIAG_SOCKET_SEN]\n  228 root      0:00 [DIAG_SOCKET_SEN]\n  229 root      0:00 [DIAG_SOCKET_SEN]\n  230 root      0:00 [DIAG_SOCKET_SEN]\n  231 root      0:00 [DIAG_SOCKET_DIA]\n  232 root      0:00 [DIAG_SOCKET_DIA]\n  233 root      0:00 [DIAG_SOCKET_DIA]\n  234 root      0:00 [DIAG_SOCKET_DIA]\n  235 root      0:00 [DIAG_SOCKET_DIA]\n  236 root      0:00 [DIAG_SOCKET_CDS]\n  237 root      0:00 [DIAG_SOCKET_CDS]\n  238 root      0:00 [DIAG_SOCKET_CDS]\n  239 root      0:00 [DIAG_SOCKET_CDS]\n  240 root      0:00 [DIAG_SOCKET_CDS]\n  241 root      0:00 [DIAG_CNTL_SOCKE]\n  247 root      0:00 [bioset]\n  248 root      0:00 [bioset]\n  249 root      0:00 [bioset]\n  250 root      0:00 [bioset]\n  251 root      0:00 [bioset]\n  252 root      0:00 [bioset]\n  253 root      0:00 [bioset]\n  254 root      0:00 [bioset]\n  255 root      0:00 [bioset]\n  256 root      0:00 [bioset]\n  257 root      0:00 [bioset]\n  258 root      0:00 [bioset]\n  259 root      0:00 [bioset]\n  260 root      0:00 [bioset]\n  261 root      0:00 [bioset]\n  262 root      0:00 [bioset]\n  263 root      0:00 [bioset]\n  264 root      0:00 [bioset]\n  265 root      0:00 [bioset]\n  266 root      0:00 [bioset]\n  267 root      0:00 [bioset]\n  268 root      0:00 [bioset]\n  269 root      0:00 [bioset]\n  270 root      0:00 [bioset]\n  271 root      0:00 [bioset]\n  272 root      0:00 [bioset]\n  273 root      0:00 [bioset]\n  274 root      0:00 [bioset]\n  275 root      0:00 [bioset]\n  276 root      0:00 [bioset]\n  277 root      0:00 [bioset]\n  278 root      0:00 [bioset]\n  279 root      0:00 [bioset]\n  280 root      0:00 [qseecom-unreg-l]\n  281 root      0:00 [qseecom-unload-]\n  282 root      0:00 [qcrypto_seq_res]\n  303 root      0:00 [kgsl-workqueue]\n  304 root      0:00 [kgsl-mementry]\n  305 root      0:00 [kgsl_worker_thr]\n  306 root      0:00 [irq/20-arm-smmu]\n  307 root      0:00 [kgsl-events]\n  308 root      0:00 [kgsl_devfreq_wq]\n  309 root      0:00 [sharedmem_qmi_w]\n  313 root      0:00 [qmi_hndl0000000]\n  314 root      0:00 [uether]\n  315 root      0:00 [ft5435_wq]\n  316 root      0:00 [ft5435_wq_cover]\n  317 root      0:00 [irq/278-ft5435_]\n  318 root      0:00 [fts_resume_wq]\n  321 root      0:00 [msm_vidc_worker]\n  322 root      0:00 [pm_workerq_venu]\n  323 root      0:00 [irq/45-arm-smmu]\n  324 root      0:00 [irq/28-arm-smmu]\n  325 root      0:00 [irq/29-arm-smmu]\n  326 root      0:00 [irq/27-arm-smmu]\n  327 root      0:00 [msm_cci_wq]\n  328 root      0:00 [msm_cci_wq]\n  329 root      0:00 [msm_cpp_workque]\n  330 root      0:00 [irq/284-soft-co]\n  331 root      0:00 [irq/285-soft-ho]\n  332 root      0:00 [irq/286-batt-mi]\n  333 root      0:00 [irq/289-chg-err]\n  334 root      0:00 [kworker/u16:2]\n  335 root      0:00 [irq/290-chg-tap]\n  336 root      0:00 [irq/291-chg-tcc]\n  337 root      0:00 [irq/292-chg-rec]\n  338 root      0:00 [irq/293-chg-p2f]\n  339 root      0:00 [kworker/u16:3]\n  340 root      0:00 [irq/294-usbid-c]\n  341 root      0:00 [irq/295-otg-oc]\n  342 root      0:00 [irq/296-otg-fai]\n  343 root      0:00 [irq/297-batt-ho]\n  344 root      0:00 [irq/298-batt-wa]\n  345 root      0:00 [irq/299-batt-co]\n  346 root      0:00 [irq/300-batt-co]\n  347 root      0:00 [irq/301-batt-mi]\n  348 root      0:00 [irq/302-batt-lo]\n  349 root      0:00 [irq/303-usbin-u]\n  350 root      0:00 [irq/304-usbin-o]\n  351 root      0:00 [irq/305-usbin-s]\n  352 root      0:00 [irq/306-aicl-do]\n  353 root      0:00 [irq/307-dcin-uv]\n  354 root      0:00 [irq/308-power-o]\n  355 root      0:00 [irq/309-temp-sh]\n  356 root      0:00 [irq/310-wdog-ti]\n  357 root      0:00 [qmi_tmd_wq]\n  358 root      0:00 [qmi_svc_event_w]\n  359 root      0:00 [dm_bufio_cache]\n  360 root      0:00 [irq/126-haptics]\n  361 root      0:00 [mmc_clk_gate/mm]\n  362 root      0:00 [irq/125-haptics]\n  363 root      0:00 [irq/16-7824900.]\n  364 root      0:00 [irq/15-mmc0]\n  365 root      0:00 [bioset]\n  366 root      0:00 [sdhci_msm_pm_qo]\n  367 root      0:00 [mmc-cmdqd/0]\n  368 root      0:00 [bioset]\n  369 root      0:00 [mmcqd/0rpmb]\n  370 root      0:00 [mmc_clk_gate/mm]\n  371 root      0:00 [irq/78-7864900.]\n  372 root      0:00 [irq/77-mmc1]\n  373 root      0:00 [irq/79-7864900.]\n  374 root      0:00 [irq/17-spdm_bw_]\n  375 root      0:00 [apr_driver]\n  376 root      0:00 [ipv6_addrconf]\n  378 root      0:00 [irq/345-adsp]\n  379 root      0:00 [sysmon_wq]\n  380 root      0:00 [irq/377-wcnss]\n  381 root      0:00 [irq/313-modem]\n  382 root      0:00 [irq/127-hs_phy_]\n  383 root      0:00 [irq/129-pwr_eve]\n  384 root      0:00 [irq/128-ss_phy_]\n  385 root      0:00 [usb_bam_wq]\n  390 root      0:00 [rq_stats]\n  391 root      0:00 [msm_perf:events]\n  392 root      0:00 [irq/40-arm-smmu]\n  394 root      0:00 [rc0]\n  395 root      0:00 [ipa_A7_svc]\n  396 root      0:00 [qmi_hndl0000000]\n  397 root      0:00 [clnt_req]\n  398 root      0:00 [clnt_resp]\n  399 root      0:00 [clnt_req]\n  408 root      0:00 [kworker/1:1]\n  409 root      0:00 [kworker/1:2]\n  410 root      0:00 [kworker/2:1]\n  411 root      0:00 [kworker/3:1]\n  412 root      0:00 [kworker/4:1]\n  413 root      0:00 [kworker/5:1]\n  414 root      0:00 [kworker/6:1]\n  415 root      0:00 [kworker/7:1]\n  416 root      0:00 [kworker/0:1H]\n  417 root      0:00 [kworker/0:4]\n  419 root      0:00 [kworker/u16:4]\n  429 root      0:00 [kworker/0:1]\n  430 root      0:00 [kworker/0:2]\n  437 root      0:00 [kworker/0:3]\n  438 root      0:00 [kworker/u16:1]\n  445 root      0:00 [kworker/1:0]\n  489 root      0:00 ps -A\n"
  },
  {
    "path": "results/msm8953/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,652800,2116.850127,3.2427238465073533,52.523260880581226,6.203662555446254,40.29877475855334,118.112669538\r\n1,1036800,3366.141997,3.246664734760803,89.2348740016892,6.628354847093704,37.716749595808984,74.279870076\r\n1,1401600,4551.578487,3.247416157962329,164.7927488269074,9.05235956154409,27.61710892064441,54.931783261\r\n1,1689600,5482.9371,3.2451095525568183,206.42427979895555,9.41327244551527,26.558245439831776,45.601575816\r\n1,1804800,5860.84021,3.2473627050088654,288.18450796421433,12.2940603149672,20.335023059520996,42.660378942\r\n1,1958400,6359.866697,3.2474809523080066,322.7849045403846,12.690095686752613,19.70040306795944,39.314402589\r\n1,2016000,6546.730563,3.247386191964286,345.91752331300006,13.211102006179813,18.923478138542603,38.191479517\r\n"
  },
  {
    "path": "results/msm8953/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 555.3715802021325, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [698.7780120240001, 698.7780120240001, 698.7780120240001, 696.3986729320001, 696.3986729320001, 692.781241172, 700.4793285000001, 700.4793285000001, 698.045406201, 696.91268556, 696.91268556, 692.1040640670001, 699.1781197759999, 699.1781197759999, 693.2411361759998, 695.561432521, 695.561432521, 691.995628637, 699.068567436, 699.068567436, 698.476908348, 692.482698124, 692.482698124, 694.2653206859999, 695.989507604, 695.989507604, 697.8266736209999, 695.3432654620001, 695.3432654620001], \"power_mean\": 696.4792748555172, \"energy_millijoules\": 3482.3963742775863, \"energy_joules\": 3.4823963742775863}, \"cpus\": {\"1\": {\"freqs\": {\"652800\": {\"active\": {\"elapsed_sec\": 118.112669538, \"elapsed_ns\": 118112669538, \"power_samples\": [4.4253878750000695, 52.94422601200006, 52.94422601200006, 52.94422601200006, 55.139187377999974, 55.139187377999974, 55.139187377999974, 54.54850245800003, 54.54850245800003, 54.54850245800003, 50.87222208800006, 50.87222208800006, 50.87222208800006, 53.77829354300002, 53.77829354300002, 53.77829354300002, 52.59331669300002, 52.59331669300002, 52.59331669300002, 53.74892458099998, 53.74892458099998, 53.74892458099998, 53.74892458099998, 53.71974757300006, 53.71974757300006, 53.71974757300006, 50.72634335500004, 50.72634335500004, 50.72634335500004, 50.668030100000124, 50.668030100000124, 50.668030100000124, 51.8527742350002, 51.8527742350002, 51.8527742350002, 53.57328667100012, 53.57328667100012, 53.57328667100012, 51.203984451, 51.203984451, 51.203984451, 52.35931326399998, 52.35931326399998, 52.35931326399998, 50.55121239899995, 50.55121239899995, 50.55121239899995, 58.75865021600009, 58.75865021600009, 58.75865021600009, 52.21308507700007, 52.21308507700007, 52.21308507700007, 52.15463213199996, 52.15463213199996, 52.15463213199996, 55.707468247000065, 55.707468247000065, 55.707468247000065, 52.15463213199996, 52.15463213199996, 52.15463213199996, 55.11727033500006, 55.11727033500006, 55.11727033500006, 56.832921907000014, 56.832921907000014, 56.832921907000014, 48.53973957100004, 48.53973957100004, 48.53973957100004, 56.77409686200008, 56.77409686200008, 56.77409686200008, 50.25964612400003, 50.25964612400003, 50.25964612400003, 51.41443989100003, 51.41443989100003, 51.41443989100003, 53.19244993500001, 53.19244993500001, 53.19244993500001, 51.920628703000034, 51.920628703000034, 51.920628703000034, 53.66922871899999, 53.66922871899999, 53.66922871899999, 47.746047510999915, 47.746047510999915, 47.746047510999915, 48.871496335000074, 48.871496335000074, 48.871496335000074, 57.69664933800004, 57.69664933800004, 57.69664933800004, 52.958074100999966, 52.958074100999966, 52.958074100999966, 51.180623275000016, 51.180623275000016, 51.180623275000016, 50.53236701100002, 50.53236701100002, 50.53236701100002, 52.840982161000056, 52.840982161000056, 52.840982161000056, 58.168616212000074, 58.168616212000074, 58.168616212000074, 54.02446969599987, 54.02446969599987, 54.02446969599987, 54.02446969599987], \"power_mean\": 52.523260880581226, \"energy_millijoules\": 6203.6625554462535, \"energy_joules\": 6.203662555446254, \"coremark_score\": 2116.850127, \"coremarks_per_mhz\": 3.2427238465073533, \"ulpmark_cm_score\": 40.29877475855334}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [698.2578096660001, 698.2578096660001, 698.2578096660001, 696.421016512], \"power_mean\": 697.7986113775, \"energy_millijoules\": 3488.9930568875, \"energy_joules\": 3.4889930568875003}}, \"1036800\": {\"active\": {\"elapsed_sec\": 74.279870076, \"elapsed_ns\": 74279870076, \"power_samples\": [15.050763034999932, 15.050763034999932, 15.050763034999932, 94.01349839500017, 94.01349839500017, 94.01349839500017, 92.76568110099993, 92.76568110099993, 92.76568110099993, 89.75086624300002, 89.75086624300002, 89.75086624300002, 90.27835669100011, 90.27835669100011, 90.27835669100011, 91.99144138300005, 91.99144138300005, 91.99144138300005, 92.58041007099996, 92.58041007099996, 92.58041007099996, 93.11144987799992, 93.11144987799992, 93.11144987799992, 88.31906612500006, 88.31906612500006, 88.31906612500006, 91.27506775400002, 91.27506775400002, 91.27506775400002, 93.58034322700007, 93.58034322700007, 93.58034322700007, 92.98763989300005, 92.98763989300005, 92.98763989300005, 89.38151692300005, 89.38151692300005, 89.38151692300005, 96.44288578300007, 96.44288578300007, 96.44288578300007, 95.19562953799993, 95.19562953799993, 95.19562953799993, 94.60691605799991, 94.60691605799991, 94.60691605799991, 92.83302938799989, 92.83302938799989, 92.83302938799989, 94.54497269299998, 94.54497269299998, 94.54497269299998, 91.59001866300014, 91.59001866300014, 91.59001866300014, 89.75470072300016, 89.75470072300016, 89.75470072300016, 92.05517176299998, 92.05517176299998, 92.05517176299998, 92.61661520799998, 92.61661520799998, 92.61661520799998, 89.04303076300005, 89.04303076300005, 89.04303076300005, 98.43185319199995, 98.43185319199995, 98.43185319199995, 88.3889513260001, 88.3889513260001], \"power_mean\": 89.2348740016892, \"energy_millijoules\": 6628.354847093704, \"energy_joules\": 6.628354847093704, \"coremark_score\": 3366.141997, \"coremarks_per_mhz\": 3.246664734760803, \"ulpmark_cm_score\": 37.716749595808984}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [701.713519626, 701.768621841, 701.768621841, 701.768621841], \"power_mean\": 701.7548462872501, \"energy_millijoules\": 3508.7742314362504, \"energy_joules\": 3.5087742314362504}}, \"1401600\": {\"active\": {\"elapsed_sec\": 54.931783261, \"elapsed_ns\": 54931783261, \"power_samples\": [27.014599442000076, 169.14574598499996, 169.14574598499996, 169.14574598499996, 169.95038761900003, 169.95038761900003, 169.95038761900003, 169.29100872100003, 169.29100872100003, 169.29100872100003, 169.81408451699997, 169.81408451699997, 169.81408451699997, 164.43843089899997, 164.43843089899997, 164.43843089899997, 162.60560770000006, 162.60560770000006, 162.60560770000006, 162.60560770000006, 166.66304332099992, 166.66304332099992, 166.66304332099992, 168.43196847700005, 168.43196847700005, 168.43196847700005, 167.772916387, 167.772916387, 167.772916387, 165.97036214700006, 165.97036214700006, 165.97036214700006, 170.617516216, 170.617516216, 170.617516216, 165.24793635900005, 165.24793635900005, 165.24793635900005, 167.60327689899998, 167.60327689899998, 167.60327689899998, 167.53515395499994, 167.53515395499994, 167.53515395499994, 167.46725363500002, 167.46725363500002, 167.46725363500002, 168.57674420499995, 168.57674420499995, 168.57674420499995, 166.15415512999994, 166.15415512999994, 166.15415512999994, 167.33145299499995], \"power_mean\": 164.7927488269074, \"energy_millijoules\": 9052.35956154409, \"energy_joules\": 9.05235956154409, \"coremark_score\": 4551.578487, \"coremarks_per_mhz\": 3.247416157962329, \"ulpmark_cm_score\": 27.61710892064441}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [718.953683214, 718.953683214, 718.953683214, 719.0102280790001], \"power_mean\": 718.96781943025, \"energy_millijoules\": 3594.83909715125, \"energy_joules\": 3.59483909715125}}, \"1689600\": {\"active\": {\"elapsed_sec\": 45.601575816, \"elapsed_ns\": 45601575816, \"power_samples\": [24.476404468000055, 24.476404468000055, 210.0222482329999, 210.0222482329999, 210.0222482329999, 213.889684493, 213.889684493, 213.889684493, 214.99758500799987, 214.99758500799987, 214.99758500799987, 215.51170586299997, 215.51170586299997, 215.51170586299997, 217.20511766800007, 217.20511766800007, 217.20511766800007, 214.78206028400007, 214.78206028400007, 214.78206028400007, 218.20042349099992, 218.20042349099992, 218.20042349099992, 214.638533994, 214.638533994, 214.638533994, 213.38776080500008, 213.38776080500008, 213.38776080500008, 213.35180840600003, 213.35180840600003, 213.35180840600003, 216.8090432470001, 216.8090432470001, 216.8090432470001, 215.67007174900004, 215.67007174900004, 215.67007174900004, 217.912018407, 217.912018407, 217.912018407, 212.62293270399994, 212.62293270399994, 212.62293270399994, 213.13679896100007], \"power_mean\": 206.42427979895555, \"energy_millijoules\": 9413.27244551527, \"energy_joules\": 9.41327244551527, \"coremark_score\": 5482.9371, \"coremarks_per_mhz\": 3.2451095525568183, \"ulpmark_cm_score\": 26.558245439831776}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [718.6371226749999, 718.189864054, 718.189864054, 718.189864054], \"power_mean\": 718.30167870925, \"energy_millijoules\": 3591.5083935462503, \"energy_joules\": 3.5915083935462504}}, \"1804800\": {\"active\": {\"elapsed_sec\": 42.660378942, \"elapsed_ns\": 42660378942, \"power_samples\": [33.18996457900005, 33.18996457900005, 300.97428981400003, 300.97428981400003, 300.97428981400003, 300.73766045, 300.73766045, 300.73766045, 303.55113130300003, 303.55113130300003, 303.55113130300003, 303.55113130300003, 301.6730957550001, 301.6730957550001, 301.6730957550001, 301.01001808700016, 301.01001808700016, 301.01001808700016, 304.44604103200004, 304.44604103200004, 304.44604103200004, 304.406612688, 304.406612688, 304.406612688, 300.81279632100006, 300.81279632100006, 300.81279632100006, 297.21595688699995, 297.21595688699995, 297.21595688699995, 298.3911847710001, 298.3911847710001, 298.3911847710001, 299.98876467900004, 299.98876467900004, 299.98876467900004, 297.56775794399994, 297.56775794399994, 297.56775794399994, 300.4974482810002, 300.4974482810002, 300.4974482810002], \"power_mean\": 288.18450796421433, \"energy_millijoules\": 12294.0603149672, \"energy_joules\": 12.2940603149672, \"coremark_score\": 5860.84021, \"coremarks_per_mhz\": 3.2473627050088654, \"ulpmark_cm_score\": 20.335023059520996}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [731.925520695, 730.3881325000001, 730.3881325000001, 730.3881325000001], \"power_mean\": 730.7724795487501, \"energy_millijoules\": 3653.8623977437505, \"energy_joules\": 3.6538623977437505}}, \"1958400\": {\"active\": {\"elapsed_sec\": 39.314402589, \"elapsed_ns\": 39314402589, \"power_samples\": [44.101139371000045, 44.101139371000045, 44.101139371000045, 345.16603081900007, 345.16603081900007, 345.16603081900007, 344.372954314, 344.372954314, 344.372954314, 346.0468795869999, 346.0468795869999, 346.0468795869999, 344.08434760599994, 344.08434760599994, 344.08434760599994, 342.791335333, 342.791335333, 342.791335333, 345.63380817300003, 345.63380817300003, 345.63380817300003, 342.6266804730001, 342.6266804730001, 342.6266804730001, 347.2240553229999, 347.2240553229999, 347.2240553229999, 348.93403467100006, 348.93403467100006, 348.93403467100006, 354.6158615730001, 354.6158615730001, 354.6158615730001, 342.42072693499995, 342.42072693499995, 342.42072693499995, 348.1859048470001, 348.1859048470001, 348.1859048470001], \"power_mean\": 322.7849045403846, \"energy_millijoules\": 12690.095686752613, \"energy_joules\": 12.690095686752613, \"coremark_score\": 6359.866697, \"coremarks_per_mhz\": 3.2474809523080066, \"ulpmark_cm_score\": 19.70040306795944}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [736.51361517, 736.51361517, 734.2684345700001, 734.2684345700001], \"power_mean\": 735.39102487, \"energy_millijoules\": 3676.95512435, \"energy_joules\": 3.67695512435}}, \"2016000\": {\"active\": {\"elapsed_sec\": 38.191479517, \"elapsed_ns\": 38191479517, \"power_samples\": [44.610639771000024, 44.610639771000024, 44.610639771000024, 369.76873436300025, 369.76873436300025, 369.76873436300025, 369.59961186300006, 369.59961186300006, 369.59961186300006, 369.5150506130001, 369.5150506130001, 369.5150506130001, 372.93703292500004, 372.93703292500004, 372.93703292500004, 368.178079753, 368.178079753, 368.178079753, 368.178079753, 372.1391627349999, 372.1391627349999, 372.1391627349999, 370.34391342300023, 370.34391342300023, 370.34391342300023, 375.51781408600004, 375.51781408600004, 375.51781408600004, 372.4702703769999, 372.4702703769999, 372.4702703769999, 374.21908553000003, 374.21908553000003, 374.21908553000003, 375.88660770700017, 375.88660770700017, 375.88660770700017, 371.129796703], \"power_mean\": 345.91752331300006, \"energy_millijoules\": 13211.102006179812, \"energy_joules\": 13.211102006179813, \"coremark_score\": 6546.730563, \"coremarks_per_mhz\": 3.247386191964286, \"ulpmark_cm_score\": 18.923478138542603}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [738.761580352, 738.761580352, 739.523848704, 739.523848704], \"power_mean\": 739.1427145279999, \"energy_millijoules\": 3695.7135726399997, \"energy_joules\": 3.69571357264}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/msm8953/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 692 mW\n\n\n===== CPU 1 =====\nFrequencies: 652 1036 1401 1689 1804 1958 2016\n\n 652:  2117     3.2 C/MHz     53 mW    6.2 J   40.3 I/mJ   118.1 s\n1036:  3366     3.2 C/MHz     89 mW    6.6 J   37.7 I/mJ    74.3 s\n1401:  4552     3.2 C/MHz    165 mW    9.1 J   27.6 I/mJ    54.9 s\n1689:  5483     3.2 C/MHz    206 mW    9.4 J   26.6 I/mJ    45.6 s\n1804:  5861     3.2 C/MHz    288 mW   12.3 J   20.3 I/mJ    42.7 s\n1958:  6360     3.2 C/MHz    323 mW   12.7 J   19.7 I/mJ    39.3 s\n2016:  6547     3.2 C/MHz    346 mW   13.2 J   18.9 I/mJ    38.2 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/msm8953/main/uptime.txt",
    "content": " 19:53:13 up 9 min,  load average: 3.89, 3.26, 1.74\n"
  },
  {
    "path": "results/msm8953/main/versions.txt",
    "content": "Kernel: Linux version 4.9.249~zLOS/f550b71b5277 (NATO66613@KREMLIN) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project 52586c46b0883600a332fd64731dc5287981f980)) #1 SMP PREEMPT Wed Jan 27 10:05:33 UTC 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/msm8953/second/cmdline.txt",
    "content": "quiet core_ctl_disable_cpumask=0-7 kpti=0 noirqdebug androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 androidboot.bootdevice=7824900.sdhci earlycon=msm_hsl_uart,0x78af000 loop.max_part=16 androidboot.usbconfigfs=true buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.emmc=true androidboot.verifiedbootstate=orange androidboot.veritymode=enforcing androidboot.keymaster=1 androidboot.serialno=REDACTED androidboot.boot_reason= androidboot.secureboot=1 androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_nt35532_fhd_video:1:none:cfg:single_dsi\n"
  },
  {
    "path": "results/msm8953/second/cpufreq_stats/0/time_in_state",
    "content": "652800 20768\n1036800 8331\n1401600 6324\n1689600 5422\n1804800 5120\n1958400 4819\n2016000 5454\n"
  },
  {
    "path": "results/msm8953/second/cpufreq_stats/0/total_trans",
    "content": "10\n"
  },
  {
    "path": "results/msm8953/second/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 4 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nHardware\t: Qualcomm Technologies, Inc MSM8953\n"
  },
  {
    "path": "results/msm8953/second/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. MSM8953 + PMI8950 QRD SKU3;\nCompatible: qcom,msm8953-qrd-sku3;qcom,msm8953-qrd;qcom,msm8953;qcom,qrd;\n"
  },
  {
    "path": "results/msm8953/second/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Linux version 4.9.249~zLOS/f550b71b5277 (NATO66613@KREMLIN) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project 52586c46b0883600a332fd64731dc5287981f980)) #1 SMP PREEMPT Wed Jan 27 10:05:33 UTC 2021\n[    0.000000] Boot CPU: AArch64 Processor [410fd034]\n[    0.000000] Machine: Qualcomm Technologies, Inc. MSM8953 + PMI8950 QRD SKU3\n[    0.000000] core_ctl: disable_cpumask=0-7\n[    0.000000] efi: Getting EFI parameters from FDT:\n[    0.000000] efi: UEFI not found.\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000c7800000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_shmem_device_region@0xc0100000, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x000000008f800000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@0, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: invalid size property in 'mem_dump_region' node.\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff000000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f3c00000, size 180 MiB\n[    0.000000] OF: reserved mem: initialized node secure_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f2800000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f2400000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f2000000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x000000008f000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node venus_region@0, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000084a00000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node other_ext_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086c00000, size 106 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008d600000, size 17 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_fw_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008e700000, size 7 MiB\n[    0.000000] OF: reserved mem: initialized node wcnss_fw_region@0, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 745472\n[    0.000000]   DMA zone: 12288 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 745472 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.0 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] Did not receive the expected number of bytes from PRNG: 0\n[    0.000000] percpu: Embedded 22 pages/cpu s51224 r8192 d30696 u90112\n[    0.000000] pcpu-alloc: s51224 r8192 d30696 u90112 alloc=22*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: enabling workaround for ARM erratum 845719\n[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 733184\n[    0.000000] Kernel command line: quiet core_ctl_disable_cpumask=0-7 kpti=0 noirqdebug androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 androidboot.bootdevice=7824900.sdhci earlycon=msm_hsl_uart,0x78af000 loop.max_part=16 androidboot.usbconfigfs=true buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.emmc=true androidboot.verifiedbootstate=orange androidboot.veritymode=enforcing androidboot.keymaster=1 androidboot.serialno=REDACTED androidboot.boot_reason= androidboot.secureboot=1 androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_nt35532_fhd_video:1:none:cfg:single_dsi\n[    0.000000] IRQ lockup detection disabled\n[    0.000000] zakk: booting_into_recovery=0\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 131072 bytes\n[    0.000000] log_buf_len: 1048576 bytes\n[    0.000000] early log buf free: 126196(96%)\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] Memory: 2598312K/2981888K available (19964K kernel code, 3196K rwdata, 6428K rodata, 6144K init, 3854K bss, 129624K reserved, 253952K cma-reserved)\n[    0.000000] Virtual kernel memory layout:\n[    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n[    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)\n[    0.000000]       .text : 0x        (ptrval) - 0x        (ptrval)   ( 19968 KB)\n[    0.000000]     .rodata : 0x        (ptrval) - 0x        (ptrval)   (  8192 KB)\n[    0.000000]       .init : 0x        (ptrval) - 0x        (ptrval)   (  6144 KB)\n[    0.000000]       .data : 0x        (ptrval) - 0x        (ptrval)   (  3197 KB)\n[    0.000000]        .bss : 0x        (ptrval) - 0x        (ptrval)   (  3855 KB)\n[    0.000000]     fixed   : 0xffffffbefe7fb000 - 0xffffffbefec00000   (  4116 KB)\n[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)\n[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)\n[    0.000000]               0xffffffbf00000000 - 0xffffffbf03000000   (    48 MB actual)\n[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc0c0000000   (  3072 MB)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] NR_IRQS:64 nr_irqs:64 0\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from all CPUs\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arm_arch_timer: Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000005] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000018] clocksource: Switched to clocksource arch_sys_counter\n[    0.000921] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.000932] pid_max: default: 32768 minimum: 301\n[    0.001009] Security Framework initialized\n[    0.001016] SELinux:  Initializing.\n[    0.001065] SELinux:  Starting in permissive mode\n[    0.001098] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001105] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.002439] sched-energy: Sched-energy-costs installed from DT\n[    0.011729] ASID allocator initialised with 32768 entries\n[    0.018766] cpu_clock_pwr_init: Power clocks configured\n[    0.020978] MSM Memory Dump base table set up\n[    0.020995] MSM Memory Dump apps data table set up\n[    0.021140] EFI services will not be available.\n[    0.082454] Brought up 8 CPUs\n[    0.082460] SMP: Total of 8 processors activated.\n[    0.082465] CPU features: detected feature: 32-bit EL0 Support\n[    0.082469] CPU features: kernel page table isolation forced OFF by command line option\n[    0.082482] CPU: All CPU(s) started at EL1\n[    0.082560] alternatives: patching kernel code\n[    0.082801] CPU0: update max cpu_capacity 1024\n[    0.083511] devtmpfs: initialized\n[    0.140132] DMI not present or invalid.\n[    0.140494] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.140508] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.151277] pinctrl core: initialized pinctrl subsystem\n[    0.152087] NET: Registered protocol family 16\n[    0.153969] schedtune: init normalization constants...\n[    0.153980] schedtune: CLUSTER[0]        min_pwr:     1 max_pwr:   140\n[    0.153985] schedtune: CPU[0]            min_pwr:     1 max_pwr:    36\n[    0.153989] schedtune: SYSTEM            min_pwr:     2 max_pwr:   176\n[    0.153993] schedtune: using normalization constants mul: 2024065048 sh1: 1 sh2: 7\n[    0.153995] schedtune: verify normalization constants...\n[    0.153999] schedtune: max_pwr/2^0:  174 => norm_pwr:  1024\n[    0.154002] schedtune: max_pwr/2^1:   87 => norm_pwr:   512\n[    0.154006] schedtune: max_pwr/2^2:   43 => norm_pwr:   253\n[    0.154009] schedtune: max_pwr/2^3:   21 => norm_pwr:   123\n[    0.154012] schedtune: max_pwr/2^4:   10 => norm_pwr:    58\n[    0.154016] schedtune: max_pwr/2^5:    5 => norm_pwr:    29\n[    0.154020] schedtune: configured to support 6 boost groups\n[    0.154201] ramoops: using module parameters\n[    0.156967] pstore: using zlib compression\n[    0.156988] console [pstore0] enabled\n[    0.156992] pstore: Registered ramoops as persistent store backend\n[    0.156997] ramoops: attached 0x100000@0x9ff00000, ecc: 0/0\n[    0.158673] cpuidle: using governor menu\n[    0.158709] cpuidle: using governor qcom\n[    0.162507] vdso32: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.162517] vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.162523] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.163515] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.169823] smd_channel_probe_now: allocation table not initialized\n[    0.171686] smd_channel_probe_now: allocation table not initialized\n[    0.172128] smd_channel_probe_now: allocation table not initialized\n[    0.172806] msm_rpm_glink_dt_parse: qcom,rpm-glink compatible not matches\n[    0.173380] pm8953_s1: Bringing 1uV into 16-16uV\n[    0.173931] pm8953_s2_level: Bringing 1uV into 16-16uV\n[    0.174285] pm8953_s2_floor_level: Bringing 1uV into 16-16uV\n[    0.175184] pm8953_s2_level_ao: Bringing 1uV into 16-16uV\n[    0.177163] pm8953_s7_level_ao: Bringing 1uV into 16-16uV\n[    0.187529] qcom,gcc-8953 1800000.qcom,gcc: Venus speed bin: 2\n[    0.203714] branch_clk_handoff: gcc_usb_phy_cfg_ahb_clk clock is enabled in HW\n[    0.203721] branch_clk_handoff: even though ENABLE_BIT is not set\n[    0.205095] qcom,gcc-8953 1800000.qcom,gcc: Registered GCC clocks\n[    0.205620] msm8953-pinctrl 1000000.pinctrl: invalid resource\n[    0.215977] platform soc:qcom,kgsl-hyp: assigned reserved memory node gpu_region@0\n[    0.223223] sps:sps is ready.\n[    0.226505] cpu-clock-8953 b114000.qcom,cpu-clock-8953: Speed bin: 2 PVS Version: 0\n[    0.226590] cpu-clock-8953 b114000.qcom,cpu-clock-8953: Get vdd-pwrcl regulator!!!\n[    0.228171] msm_watchdog b017000.qcom,wdt: wdog absent resource not present\n[    0.229307] msm_watchdog b017000.qcom,wdt: MSM Watchdog Initialized\n[    0.231645] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region@0\n[    0.232592] spmi spmi-0: PMIC arbiter version v2 (0x20010000)\n[    0.236105] pm8953_s5_avs_limit: Bringing 0uV into 400000-400000uV\n[    0.236302] spm_regulator_probe: name=pm8953_s5, range=LV, voltage=870000 uV, mode=AUTO, step rate=1200 uV/us\n[    0.240832] platform 4080000.qcom,mss: assigned reserved memory node modem_region@0\n[    0.241030] platform c200000.qcom,lpass: assigned reserved memory node adsp_fw_region@0\n[    0.241226] platform a21b000.qcom,pronto: assigned reserved memory node wcnss_fw_region@0\n[    0.241359] platform 1de0000.qcom,venus: assigned reserved memory node venus_region@0\n[    0.242131] apc_mem_acc_corner: Bringing 0uV into 1-1uV\n[    0.242857] cpr4_apss_read_fuse_data: apc_corner: speed bin = 2, CPR fusing revision = 3, foundry id = 2\n[    0.242863] cpr4_msm8953_apss_read_fuse_data: apc_corner: CPR misc fuse value = 0\n[    0.242894] cpr4_msm8953_apss_read_fuse_data: apc_corner: Voltage boost fuse config = 0 boost = disable\n[    0.242986] cpr4_apss_calculate_open_loop_voltages: apc_corner: fused   LowSVS: open-loop= 625000 uV\n[    0.242991] cpr4_apss_calculate_open_loop_voltages: apc_corner: fused      SVS: open-loop= 680000 uV\n[    0.242995] cpr4_apss_calculate_open_loop_voltages: apc_corner: fused      NOM: open-loop= 775000 uV\n[    0.242999] cpr4_apss_calculate_open_loop_voltages: apc_corner: fused TURBO_L1: open-loop= 915000 uV\n[    0.243049] cpr4_apss_calculate_target_quotients: apc_corner: fused   LowSVS: quot[ 7]= 486\n[    0.243055] cpr4_apss_calculate_target_quotients: apc_corner: fused      SVS: quot[ 7]= 575, quot_offset[ 7]=  85\n[    0.243061] cpr4_apss_calculate_target_quotients: apc_corner: fused      NOM: quot[ 7]= 773, quot_offset[ 7]= 195\n[    0.243066] cpr4_apss_calculate_target_quotients: apc_corner: fused TURBO_L1: quot[ 7]=1057, quot_offset[ 7]= 280\n[    0.243223] cpr4_apss_init_aging: apc: sensor 6 aging init quotient diff = -2, aging RO scale = 2800 QUOT/V\n[    0.243341] cpr3_regulator_init_ctrl: apc: Default CPR mode = HW closed-loop\n[    0.244291] gfx_mem_acc_corner: Bringing 0uV into 1-1uV\n[    0.244726] GFX_LDO: msm_gfx_ldo_voltage_init: LDO corner 1: target-volt = 580000 uV\n[    0.244732] GFX_LDO: msm_gfx_ldo_voltage_init: LDO corner 2: target-volt = 650000 uV\n[    0.244736] GFX_LDO: msm_gfx_ldo_voltage_init: LDO corner 3: target-volt = 720000 uV\n[    0.244745] GFX_LDO: msm_gfx_ldo_adjust_init_voltage: adjusted the open-loop voltage[1] 580000 -> 615000\n[    0.244749] GFX_LDO: msm_gfx_ldo_adjust_init_voltage: adjusted the open-loop voltage[2] 650000 -> 675000\n[    0.244755] GFX_LDO: msm_gfx_ldo_voltage_init: LDO-mode fuse disabled by default\n[    0.255193] msm-sn-fuse a4128.snfuse: SN interface initialized\n[    0.282363] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.282386] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.282932] dsi_pll_clock_register_8996: Registered DSI PLL ndx=0 clocks successfully\n[    0.282965] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.282981] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.284073] pll_is_pll_locked_8996: DSI PLL ndx=1 status=0 failed to Lock\n[    0.284517] dsi_pll_clock_register_8996: Registered DSI PLL ndx=1 clocks successfully\n[    0.287133] KPI: Bootloader start count = 26109\n[    0.287139] KPI: Bootloader end count = 162108\n[    0.287141] KPI: Bootloader display count = 90688\n[    0.287144] KPI: Bootloader load kernel count = 2203\n[    0.287148] KPI: Kernel MPM timestamp = 179422\n[    0.287150] KPI: Kernel MPM Clock frequency = 32768\n[    0.287170] socinfo_print: v0.10, id=293, ver=1.1, raw_id=70, raw_ver=1, hw_plat=11, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65558, pmic_die_revision=65536 foundry_id=3 serial_number=2218285462\n[    0.289426] arm-smmu 1c40000.arm,smmu-kgsl: Couldn't get clock: gpu_ahb_clk\n[    0.289866] arm-smmu 1e00000.qcom,iommu: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.289876] arm-smmu 1e00000.qcom,iommu: \tstream matching with 122 register groups, mask 0x7fff\n[    0.289983] arm-smmu 1e00000.qcom,iommu: found 32 context interrupt(s) but have 30 context banks. assuming 30 context interrupts.\n[    0.290919] iommu: Adding device soc:qcom,msm-audio-ion to group 0\n[    0.294592] SCSI subsystem initialized\n[    0.294804] usbcore: registered new interface driver usbfs\n[    0.294850] usbcore: registered new interface driver hub\n[    0.295093] usbcore: registered new device driver usb\n[    0.296233] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pm8953@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'warm' boot\n[    0.296255] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pm8953@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from KPDPWR_N (Long Power Key hold)\n[    0.296506] input: qpnp_pon as /devices/virtual/input/input0\n[    0.297581] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pmi8950@2:qcom,power-on@800: No PON config. specified\n[    0.297634] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pmi8950@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (secondary PMIC) and 'warm' boot\n[    0.297653] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pmi8950@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)\n[    0.298305] i2c-msm-v2 78b6000.i2c: probing driver i2c-msm-v2\n[    0.298375] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.298383] i2c-msm-v2 78b6000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.298651] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.298976] i2c-msm-v2 78b7000.i2c: probing driver i2c-msm-v2\n[    0.299022] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.299029] i2c-msm-v2 78b7000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.299151] i2c-msm-v2 78b7000.i2c: irq:70 when no active transfer\n[    0.299290] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.299897] i2c-msm-v2 7af5000.i2c: probing driver i2c-msm-v2\n[    0.299939] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.299946] i2c-msm-v2 7af5000.i2c: msm_bus_scale_register_client(mstr-id:84):0 (not a problem)\n[    0.300279] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.300807] media: Linux media interface: v0.10\n[    0.300844] Linux video capture interface: v2.00\n[    0.314252] EDAC MC: Ver: 3.0.0\n[    0.316642] Unable to get pmic_revid rc=-22\n[    0.316799] dmi: Firmware registration failed.\n[    0.317839] platform soc:qcom,ion:qcom,ion-heap@8: assigned reserved memory node secure_region@0\n[    0.317985] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@0\n[    0.318125] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.318498] ION heap system created\n[    0.318698] ION heap mm created at 0x00000000f3c00000 with size b400000\n[    0.318709] ION heap qsecom created at 0x00000000ff000000 with size 1000000\n[    0.318719] ION heap qsecom_ta created at 0x00000000f2400000 with size 400000\n[    0.320125] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.320130] ipa ipa_init:4024 fail to register with bus mgr!\n[    0.320212] ipa ipa_plat_drv_probe:5054 ipa_init failed\n[    0.321015] PMIC@SID0: PM8953 v1.0 options: 2, 2, 0, 0\n[    0.321133] PMIC@SID2: PMI8950 v2.0 options: 0, 0, 0, 0\n[    0.325389] Advanced Linux Sound Architecture Driver Initialized.\n[    0.326004] Bluetooth: Core ver 2.22\n[    0.326039] NET: Registered protocol family 31\n[    0.326042] Bluetooth: HCI device and connection manager initialized\n[    0.326054] Bluetooth: HCI socket layer initialized\n[    0.326061] Bluetooth: L2CAP socket layer initialized\n[    0.327608] NetLabel: Initializing\n[    0.327612] NetLabel:  domain hash size = 128\n[    0.327614] NetLabel:  protocols = UNLABELED CIPSOv4\n[    0.327667] NetLabel:  unlabeled traffic allowed by default\n[    0.328235] gcc_oxili_gfx3d_clk: set OPP pair(19200000 Hz: 615000 uV) on 1c00000.qcom,kgsl-3d0\n[    0.328604] gcc_oxili_gfx3d_clk: set OPP pair(200000000 Hz: 675000 uV) on 1c00000.qcom,kgsl-3d0\n[    0.329073] gcc_oxili_gfx3d_clk: set OPP pair(650000000 Hz: 0 uV) on 1c00000.qcom,kgsl-3d0\n[    0.329443] gcc-gfx-8953 1800000.qcom,gcc-gfx: Registered GCC GFX clocks.\n[    0.329557] cpu-clock-8953 b114000.qcom,cpu-clock-8953: Speed bin: 2 PVS Version: 0\n[    0.331259] cpu-clock-8953 b114000.qcom,cpu-clock-8953: missing qcom,dfs-sid-c0\n[    0.331266] cpu-clock-8953 b114000.qcom,cpu-clock-8953: No DFS SID tables found for Cluster-0\n[    0.331273] cpu-clock-8953 b114000.qcom,cpu-clock-8953: missing qcom,link-sid-c0\n[    0.331279] cpu-clock-8953 b114000.qcom,cpu-clock-8953: No Link SID tables found for Cluster-0\n[    0.331286] cpu-clock-8953 b114000.qcom,cpu-clock-8953: missing qcom,lmh-sid-c0\n[    0.331292] cpu-clock-8953 b114000.qcom,cpu-clock-8953: No LMH SID tables found for Cluster-0\n[    0.331295] ramp_lmh_sid: Use Default LMH SID\n[    0.331298] ramp_dfs_sid: Use Default DFS SID\n[    0.331300] ramp_link_sid: Use Default Link SID\n[    0.331340] cpu-clock-8953 b114000.qcom,cpu-clock-8953: missing qcom,dfs-sid-c1\n[    0.331346] cpu-clock-8953 b114000.qcom,cpu-clock-8953: No DFS SID tables found for Cluster-1\n[    0.331353] cpu-clock-8953 b114000.qcom,cpu-clock-8953: missing qcom,link-sid-c1\n[    0.331359] cpu-clock-8953 b114000.qcom,cpu-clock-8953: No Link SID tables found for Cluster-1\n[    0.331366] cpu-clock-8953 b114000.qcom,cpu-clock-8953: missing qcom,lmh-sid-c1\n[    0.331371] cpu-clock-8953 b114000.qcom,cpu-clock-8953: No LMH SID tables found for Cluster-1\n[    0.331374] ramp_lmh_sid: Use Default LMH SID\n[    0.331376] ramp_dfs_sid: Use Default DFS SID\n[    0.331378] ramp_link_sid: Use Default Link SID\n[    0.331424] clock_rcgwr_init: RCGwR  Init Completed\n[    0.334725] populate_opp_table: clock-cpu-8953: OPP tables populated (cpu 3 and 7)\n[    0.334733] print_opp_table: clock_cpu: a53 C0: OPP voltage for 652800000: 1\n[    0.334736] print_opp_table: clock_cpu: a53 C0: OPP voltage for 2016000000: 7\n[    0.334740] print_opp_table: clock_cpu: a53 C1: OPP voltage for 652800000: 1\n[    0.334743] print_opp_table: clock_cpu: a53 C2: OPP voltage for 2016000000: 7\n[    0.335722] qpnp_labibb_regulator_probe: LAB/IBB registered successfully, lab_vreg enable=1 ibb_vreg enable=1 swire_control=0\n[    0.335816] sched-energy energy-costs: cpu=0 eff=1024 [freq=652800 cap=302 power_d0=5] -> [freq=2016000 cap=932 power_d0=36]\n[    0.335820] CPU0: update cpu_power 975\n[    0.335830] sched-energy energy-costs: cpu=1 eff=1024 [freq=652800 cap=302 power_d0=5] -> [freq=2016000 cap=932 power_d0=36]\n[    0.335833] CPU1: update cpu_power 975\n[    0.335842] sched-energy energy-costs: cpu=2 eff=1024 [freq=652800 cap=302 power_d0=5] -> [freq=2016000 cap=932 power_d0=36]\n[    0.335845] CPU2: update cpu_power 975\n[    0.335854] sched-energy energy-costs: cpu=3 eff=1024 [freq=652800 cap=302 power_d0=5] -> [freq=2016000 cap=932 power_d0=36]\n[    0.335856] CPU3: update cpu_power 975\n[    0.335865] sched-energy energy-costs: cpu=4 eff=1126 [freq=652800 cap=332 power_d0=5] -> [freq=2016000 cap=1024 power_d0=36]\n[    0.335868] CPU4: update cpu_power 1072\n[    0.335877] sched-energy energy-costs: cpu=5 eff=1126 [freq=652800 cap=332 power_d0=5] -> [freq=2016000 cap=1024 power_d0=36]\n[    0.335880] CPU5: update cpu_power 1072\n[    0.335889] sched-energy energy-costs: cpu=6 eff=1126 [freq=652800 cap=332 power_d0=5] -> [freq=2016000 cap=1024 power_d0=36]\n[    0.335892] CPU6: update cpu_power 1072\n[    0.335901] sched-energy energy-costs: cpu=7 eff=1126 [freq=652800 cap=332 power_d0=5] -> [freq=2016000 cap=1024 power_d0=36]\n[    0.335904] CPU7: update cpu_power 1072\n[    0.336167] CPU0: update max cpu_capacity 932\n[    0.336349] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.336636] gdsc_oxili_gx: supplied by msm_gfx_ldo\n[    0.337622] arm-smmu 1c40000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.337630] arm-smmu 1c40000.arm,smmu-kgsl: \tstream matching with 4 register groups, mask 0x7fff\n[    0.340910] cpufreq: driver msm up and running\n[    0.342898] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.342901] ipa ipa_init:4024 fail to register with bus mgr!\n[    0.342939] ipa ipa_plat_drv_probe:5054 ipa_init failed\n[    0.343400] clocksource: Switched to clocksource arch_sys_counter\n[    0.372719] VFS: Disk quotas dquot_6.6.0\n[    0.372758] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.372810] msm_bus_fabric_init_driver\n[    0.376792] msm_bus_device 580000.ad-hoc-bus: Bus scaling driver probe successful\n[    0.378049] NET: Registered protocol family 2\n[    0.378379] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.378503] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.378774] TCP: Hash tables configured (established 32768 bind 32768)\n[    0.378820] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.378864] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.379000] NET: Registered protocol family 1\n[    0.379679] gcc-mdss-8953 1800000.qcom,gcc-mdss: Registered GCC MDSS clocks.\n[    0.380415] ipa ipa2_uc_state_check:297 uC interface not initialized\n[    0.380422] ipa ipa_sps_irq_control_all:963 EP (2) not allocated.\n[    0.380425] ipa ipa_sps_irq_control_all:963 EP (5) not allocated.\n[    0.383728] sps:BAM 0x0000000007904000 is registered.\n[    0.386103] sps:BAM 0x0000000007904000 (va:0xffffff800afc0000) enabled: ver:0x27, number of pipes:20\n[    0.397208] IPA driver initialization was successful.\n[    0.397485] Trying to unpack rootfs image as initramfs...\n[    0.594609] Freeing initrd memory: 7456K\n[    0.595408] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.598073] audit: initializing netlink subsys (disabled)\n[    0.598115] audit: type=2000 audit(0.589:1): initialized\n[    0.598283] Initialise system trusted keyrings\n[    0.599568] workingset: timestamp_bits=45 max_order=20 bucket_order=0\n[    0.603619] exFAT: file-system version 2.2.0-3arter97\n[    0.603959] Registering sdcardfs 0.1\n[    0.606484] fuse init (API version 7.26)\n[    0.608087] SELinux:  Registering netfilter hooks\n[    0.608278] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    0.608280] pfk_f2fs [pfk_f2fs_init]: PFK F2FS inited successfully\n[    0.608283] pfk [pfk_init]: Driver initialized successfully\n[    0.611249] Key type asymmetric registered\n[    0.611253] Asymmetric key parser 'x509' registered\n[    0.611267] io scheduler noop registered\n[    0.611371] io scheduler cfq registered\n[    0.611388] io scheduler bfq registered (default)\n[    0.611390] BFQ I/O-scheduler: v8r12 (with cgroups support)\n[    0.619231] msm_mdss_get_res_byname: 'vbif_nrt_phys' resource not found\n[    0.619242] mdss_mdp_probe+0x260/0x1508->msm_mdss_ioremap_byname: 'vbif_nrt_phys' msm_mdss_get_res_byname failed\n[    0.619420] mdss_mdp_irq_clk_register: unable to get clk: lut_clk\n[    0.619430] mdss_mdp_irq_clk_register: unable to get clk: mnoc_clk\n[    0.619717] No change in context(0==0), skip\n[    0.620566] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:0 num:0 rect:0 ndx:0x1 prio:0\n[    0.620578] mdss_mdp_pipe_addr_setup: type:1 ftchid:-1 xinid:1 num:3 rect:0 ndx:0x8 prio:1\n[    0.620580] mdss_mdp_pipe_addr_setup: type:1 ftchid:-1 xinid:5 num:4 rect:0 ndx:0x10 prio:2\n[    0.620592] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:2 num:6 rect:0 ndx:0x40 prio:3\n[    0.620601] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:7 num:10 rect:0 ndx:0x400 prio:0\n[    0.620607] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-pipe-sw-reset-off : u32 array read\n[    0.620679] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-ib-factor-overlap : u32 array read\n[    0.620683] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-bus-througput-factor : u32 array read\n[    0.620860] xlog_status: enable:1, panic:1, dump:2\n[    0.621072] iommu: Adding device 1a00000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb to group 1\n[    0.621254] iommu: Adding device 1a00000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb to group 2\n[    0.621414] mdss_mdp_probe: mdss version = 0x10100000, bootloader display is on, num 1, intf_sel=0x00000100\n[    0.624147] mdss_smmu_util_parse_dt_clock: clocks are not defined\n[    0.624155] mdss_smmu_probe: iommu v2 domain[0] mapping and clk register successful!\n[    0.624168] mdss_smmu_util_parse_dt_clock: clocks are not defined\n[    0.624172] mdss_smmu_probe: iommu v2 domain[2] mapping and clk register successful!\n[    0.624302] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.624308] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.624314] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.625164] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->0\n[    0.625252] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_nt35532_fhd_video:1:none:cfg:single_dsi panel_name:qcom,mdss_dsi_nt35532_fhd_video\n[    0.625260] mdss_dsi_panel_init: Panel Name = nt35532 fhd video mode dsi panel\n[    0.625346] mdss_dsi_panel_timing_from_dt: found new timing \"qcom,mdss_dsi_nt35532_fhd_video\" (ffffffc04ef03438)\n[    0.625356] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-post-panel-on-command\n[    0.625359] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-timing-switch-command\n[    0.625361] mdss_dsi_panel_get_dsc_cfg_np: cannot find dsc config node:\n[    0.625422] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-idle-on-command\n[    0.625426] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-idle-off-command\n[    0.625442] mdss_dsi_parse_panel_features: ulps feature disabled\n[    0.625445] mdss_dsi_parse_panel_features: ulps during suspend feature disabled\n[    0.625449] mdss_dsi_parse_dms_config: dynamic switch feature enabled: 0\n[    0.625481] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-on\n[    0.625484] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-off\n[    0.625514] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.625519] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.625523] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.625528] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.625557] 1a94000.qcom,mdss_dsi_ctrl0 supply vdd not found, using dummy regulator\n[    0.625684] mdss_dsi_parse_ctrl_params:4251 Unable to read qcom,display-id, data=0000000000000000,len=20\n[    0.625691] mdss_dsi_parse_gpio_params: bklt_en gpio not specified\n[    0.625694] mdss_dsi_parse_gpio_params: ext vdd gpio not specified\n[    0.625742] msm_mdss_get_res_byname: 'dsi_phy_regulator' resource not found\n[    0.625752] mdss_dsi_retrieve_ctrl_resources+0x184/0x1e8->msm_mdss_ioremap_byname: 'dsi_phy_regulator' msm_mdss_get_res_byname failed\n[    0.625755] mdss_dsi_retrieve_ctrl_resources: ctrl_base=ffffff800ae9d000 ctrl_size=400 phy_base=ffffff800aed8400 phy_size=580\n[    0.625943] dsi_panel_device_register: Continuous splash enabled\n[    0.626053] mdss_register_panel: adding framebuffer device 1a94000.qcom,mdss_dsi_ctrl0\n[    0.628444] mdss_dsi_ctrl_probe: Dsi Ctrl->0 initialized, DSI rev:0x10040002, PHY rev:0x2\n[    0.628512] mdss_dsi_status_init: DSI status check interval:2000\n[    0.628811] mdss_register_panel: adding framebuffer device soc:qcom,mdss_wb_panel\n[    0.629523] mdss_fb_probe: fb0: split_mode:0 left:0 right:0\n[    0.629945] mdss_fb_register: FrameBuffer[0] 1080x1920 registered successfully!\n[    0.630171] mdss_fb_probe: fb1: split_mode:0 left:0 right:0\n[    0.630374] mdss_fb_register: FrameBuffer[1] 640x640 registered successfully!\n[    0.630425] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    0.630732] mdss_mdp_kcal_store_fb0_ctl panel name nt35532 fhd video mode dsi panel\n[    0.630733] mdss_mdp_kcal_store_fb0_ctl panel found...\n[    0.630760] kcal_ctrl_init: registered\n[    0.630955] qcom-sps-dma 7884000.qcom,sps-dma: dma_async_device_register: device has no channels!\n[    0.630977] qcom-sps-dma 7ac4000.qcom,sps-dma: dma_async_device_register: device has no channels!\n[    0.633796] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.633800] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    0.633804] memshare: hyp_assign_phys failed size=2097152 err=-5\n[    0.633834] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.633953] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.635528] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.635531] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    0.635534] memshare: hyp_assign_phys failed size=5242880 err=-5\n[    0.635539] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.636659] minidump-id not found for a506_zap\n[    0.636674] subsys-pil-tz soc:qcom,kgsl-hyp: for a506_zap segments only will be dumped.\n[    0.637158] minidump-id not found for adsp\n[    0.637241] minidump-id not found for wcnss\n[    0.637393] minidump-id not found for venus\n[    0.637402] subsys-pil-tz 1de0000.qcom,venus: for venus segments only will be dumped.\n[    0.638488] minidump-id not found for modem\n[    0.639752] wcnss: wcnss_wlan probed in built-in mode\n[    0.640900] msm_serial_hs module loaded\n[    0.643289] random: fast init done\n[    0.643354] random: crng init done\n[    0.646975] diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    0.646978] diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    0.711381] diag: In __diag_glink_init, unable to register for glink channel DIAG_CTRL\n[    0.712538] diag: In __diag_glink_init, unable to register for glink channel DIAG_DATA\n[    0.713623] diag: In __diag_glink_init, unable to register for glink channel DIAG_CMD\n[    0.714709] diag: In __diag_glink_init, unable to register for glink channel DIAG_DCI_DATA\n[    0.715791] diag: In __diag_glink_init, unable to register for glink channel DIAG_DCI_CMD\n[    0.738053] brd: module loaded\n[    0.760201] loop: module loaded\n[    0.761525] zram: Added device: zram0\n[    0.762480] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1000000\n[    0.762502] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.762507] QSEECOM: qseecom_probe: qseecom clocks handled by other subsystem\n[    0.762509] QSEECOM: qseecom_probe: qsee reentrancy support phase is not defined, setting to default 0\n[    0.762680] QSEECOM: qseecom_probe: qseecom.whitelist_support = 0\n[    0.765378] QCE50: __qce_get_device_tree_data: BAM Apps EE is not defined, setting to default 1\n[    0.765643] qce 720000.qcedev: QTI Crypto 5.3.3 device found @0x720000\n[    0.765648] qce 720000.qcedev: CE device = 0x0 IO base, CE = ffffff800c0a0000 Consumer (IN) PIPE 2,\n               Producer (OUT) PIPE 3 IO base BAM = 0000000000000000\n               BAM IRQ 65 Engines Availability = 0x2010853\n[    0.765796] sps:BAM 0x0000000000704000 is registered.\n[    0.765948] sps:BAM 0x0000000000704000 (va:0xffffff800c200000) enabled: ver:0x27, number of pipes:8\n[    0.766104] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000000704000 irq 65\n[    0.772641] QCE50: __qce_get_device_tree_data: BAM Apps EE is not defined, setting to default 1\n[    0.772971] qcrypto 720000.qcrypto: QTI Crypto 5.3.3 device found @0x720000\n[    0.772976] qcrypto 720000.qcrypto: CE device = 0x0 IO base, CE = ffffff800c240000 Consumer (IN) PIPE 4,\n               Producer (OUT) PIPE 5 IO base BAM = 0000000000000000\n               BAM IRQ 65 Engines Availability = 0x2010853\n[    0.773225] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000000704000 irq 65\n[    0.775610] qcrypto 720000.qcrypto: qcrypto-ecb-aes\n[    0.775711] qcrypto 720000.qcrypto: qcrypto-cbc-aes\n[    0.775782] qcrypto 720000.qcrypto: qcrypto-ctr-aes\n[    0.775850] qcrypto 720000.qcrypto: qcrypto-ecb-des\n[    0.775919] qcrypto 720000.qcrypto: qcrypto-cbc-des\n[    0.775988] qcrypto 720000.qcrypto: qcrypto-ecb-3des\n[    0.776060] qcrypto 720000.qcrypto: qcrypto-cbc-3des\n[    0.776133] qcrypto 720000.qcrypto: qcrypto-xts-aes\n[    0.776203] qcrypto 720000.qcrypto: qcrypto-sha1\n[    0.776275] qcrypto 720000.qcrypto: qcrypto-sha256\n[    0.776345] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    0.776414] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    0.776483] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    0.776554] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    0.776626] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    0.776699] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    0.776769] qcrypto 720000.qcrypto: qcrypto-hmac-sha1\n[    0.776839] qcrypto 720000.qcrypto: qcrypto-hmac-sha256\n[    0.776910] qcrypto 720000.qcrypto: qcrypto-aes-ccm\n[    0.776983] qcrypto 720000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    0.777676] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    0.777725] ICE IRQ = 75\n[    0.778120] SCSI Media Changer driver v0.25 \n[    0.783133] iommu: Adding device 1c40000.qcom,kgsl-iommu:gfx3d_user to group 3\n[    0.783354] platform 1c40000.qcom,kgsl-iommu:gfx3d_secure: assigned reserved memory node secure_region@0\n[    0.783559] iommu: Adding device 1c40000.qcom,kgsl-iommu:gfx3d_secure to group 4\n[    0.789824] libphy: Fixed MDIO Bus: probed\n[    0.789828] tun: Universal TUN/TAP device driver, 1.6\n[    0.789829] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    0.789961] PPP generic driver version 2.4.2\n[    0.790124] PPP BSD Compression module registered\n[    0.790126] PPP Deflate Compression module registered\n[    0.790144] PPP MPPE Compression module registered\n[    0.790147] NET: Registered protocol family 24\n[    0.790159] PPTP driver version 0.8.5\n[    0.790410] usbcore: registered new interface driver r8152\n[    0.790429] usbcore: registered new interface driver asix\n[    0.790470] usbcore: registered new interface driver ax88179_178a\n[    0.790486] usbcore: registered new interface driver cdc_ether\n[    0.790502] usbcore: registered new interface driver net1080\n[    0.790518] usbcore: registered new interface driver cdc_subset\n[    0.790534] usbcore: registered new interface driver zaurus\n[    0.790558] usbcore: registered new interface driver cdc_ncm\n[    0.791453] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.791455] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    0.791460] msm_sharedmem: setup_shared_ram_perms: hyp_assign_phys failed IPA=0x0160x00000000f3300000 size=1572864 err=-5\n[    0.791647] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.794600] msm-dwc3 7000000.ssusb: unable to get dbm device\n[    0.795487] CHRDEV \"usbmon\" major number 233 goes below the dynamic allocation range\n[    0.795676] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.795678] ehci-platform: EHCI generic platform driver\n[    0.796095] ehci-msm: Qualcomm On-Chip EHCI Host Controller\n[    0.796808] usbcore: registered new interface driver cdc_acm\n[    0.796809] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters\n[    0.796838] usbcore: registered new interface driver usb-storage\n[    0.796856] usbcore: registered new interface driver ums-alauda\n[    0.796870] usbcore: registered new interface driver ums-cypress\n[    0.796885] usbcore: registered new interface driver ums-datafab\n[    0.796898] usbcore: registered new interface driver ums-freecom\n[    0.796913] usbcore: registered new interface driver ums-isd200\n[    0.796927] usbcore: registered new interface driver ums-jumpshot\n[    0.796941] usbcore: registered new interface driver ums-karma\n[    0.796955] usbcore: registered new interface driver ums-onetouch\n[    0.796969] usbcore: registered new interface driver ums-sddr09\n[    0.796985] usbcore: registered new interface driver ums-sddr55\n[    0.796999] usbcore: registered new interface driver ums-usbat\n[    0.797040] usbcore: registered new interface driver usbserial\n[    0.797057] usbcore: registered new interface driver usb_ehset_test\n[    0.797074] usbcore: registered new interface driver lvs\n[    0.797101] CHRDEV \"ttyGS\" major number 232 goes below the dynamic allocation range\n[    0.798380] msm_sharedmem: sharedmem_register_qmi: qmi init successful\n[    0.799139] usb_qcrndis_init: failed to register diag -17\n[    0.799167] CHRDEV \"rmnet_ctrl\" major number 231 goes below the dynamic allocation range\n[    0.799756] mousedev: PS/2 mouse device common for all mice\n[    0.799868] tony_test:[ft5435_ts_init]\n[    0.802222] i2c-msm-v2 78b7000.i2c: msm_bus_scale_register_client(mstr-id:86):0xe (ok)\n[    0.802454] ~~~~~ ft5435_ts_probe start\n[    0.802455] [ft5435_ts_probe]CONFIG_FB is defined\n[    0.802456] [ft5435_ts_probe]CONFIG_PM is defined\n[    0.802482] [ft5435_get_dt_vkey]000\n[    0.802483] [ft5435_get_dt_vkey]111\n[    0.802484] [ft5435_get_dt_vkey]222\n[    0.802485] [ft5435_get_dt_vkey]333\n[    0.802487] [FTS]keycode = 172, x= 500, y=2040 \n[    0.802490] [FTS]keycode = 139, x= 200, y=2040 \n[    0.802492] [FTS]keycode = 158, x= 800, y=2040 \n[    0.802493] [ft5435_get_dt_vkey]5555\n[    0.802583] input: ft5435_ts as /devices/platform/soc/78b7000.i2c/i2c-3/3-0038/input/input1\n[    1.050181] ft5435_ts 3-0038: Device ID = 0x54\n[    1.051604] ft5435_ts 3-0038: report rate = 110Hz\n[    1.052145] ft5435_ts 3-0038: Firmware version = 1.0.0\n[    1.052280] [Fu]fw_vendor_id=0x79\n[    1.052282] upgrade,fts_fw_vendor_id=0x79\n[    1.470252] FTS_UPGRADE_LOOP ok is  i = 0 \n[    1.490279] ft5435_fw_Vid_get_from_boot: REG VAL ID1 = 0x0, ID2 = 0x79\n[    1.490280] ft5435_fw_Vid_get_from_boot: reset the tp\n[    1.800032] get_Vid_from_boot, fw_vendor_id=0x79\n[    1.800034] [FTS] FW unmatched,stop upgrade\n[    1.800086] ~~~~~ tp_glove_register enable!!!!!\n[    1.800087] [fts]ft5435_fw_LockDownInfo_get_from_boot, fw_vendor_id=0x79\n[    2.220260] ft5435_fw_LockDownInfo_get_from_boot, FTS_UPGRADE_LOOP ok is  i = 0 \n[    2.260278] ft5435_fw_LockDownInfo_get_from_boot: REG VAL = 0x46, j=0\n[    2.260280] ft5435_fw_LockDownInfo_get_from_boot: REG VAL = 0x54, j=1\n[    2.260281] ft5435_fw_LockDownInfo_get_from_boot: REG VAL = 0x53, j=2\n[    2.260283] ft5435_fw_LockDownInfo_get_from_boot: REG VAL = 0x35, j=3\n[    2.260284] ft5435_fw_LockDownInfo_get_from_boot: REG VAL = 0x58, j=4\n[    2.260285] ft5435_fw_LockDownInfo_get_from_boot: REG VAL = 0x34, j=5\n[    2.260287] ft5435_fw_LockDownInfo_get_from_boot: REG VAL = 0x36, j=6\n[    2.260288] ft5435_fw_LockDownInfo_get_from_boot: REG VAL = 0x50, j=7\n[    2.260290] ft5435_fw_LockDownInfo_get_from_boot: reset the tp\n[    2.570024] tpd_probe, ft5x46_ctpm_LockDownInfo_get_from_boot, tp_lockdown_info=4654533558343650\n[    2.570033] ft5435_ts 3-0038: Create proc entry success!\n[    2.570133] ~~~~~ ft5435_ts_probe end\n[    2.570168] [ TSP ] ist30xx_init()\n[    2.570321] [ TSP ] ### IMAGIS probe(ver:3.0.0.0, addr:0x50) ###\n[    2.570331] [ TSP ] ##### Device tree #####\n[    2.570332] [ TSP ]  reset gpio: 64\n[    2.570334] [ TSP ]  irq gpio: 65\n[    2.570335] [ TSP ] ist30xx_request_gpio\n[    2.570337] [ TSP ] unable to request reset gpio: 64\n[    2.570339] [ TSP ] Error, ist30xx init driver\n[    2.570358] <<-GTP-INFO->> GTP driver installing...\n[    2.572669] <<-GTP-INFO->> GTP Driver Version: V2.4<2014/11/28>\n[    2.572671] <<-GTP-INFO->> GTP I2C Address: 0x14\n[    2.572760] <<-GTP-ERROR->> Failed to request GPIO:65, ERRNO:-16\n[    2.572765] <<-GTP-INFO->> gtp_request_io_port : ret = -19\n\n[    2.572766] <<-GTP-ERROR->> GTP request IO port failed.\n[    2.572766] <<-GTP-INFO->> destroy_workqueue :  goodix_wq\n[    2.572833] <<-GTP-INFO->> destroy_workqueue :  gtp_esd_check_workqueue\n[    2.572903] <<-GTP-INFO->> wmy i2c_add_driver, ret = 0\n[    2.572904] --------gf_init start.--------\n[    2.573594] --------gf_probe start.--------\n[    2.573781] input: gf3208 as /devices/virtual/input/input2\n[    2.573845] --------gf_probe end---OK.--------\n[    2.573906]  status = 0x0\n[    2.573907] --------gf_init end---OK.--------\n[    2.574480] fpc1020 soc:fpc1020: fpc1020_probe: ok\n[    2.574511] fpc1020_init OK\n[    2.575395] qcom,qpnp-rtc 200f000.qcom,spmi:qcom,pm8953@0:qcom,pm8953_rtc: rtc core: registered qpnp_rtc as rtc0\n[    2.575601] i2c /dev entries driver\n[    2.575833] CHRDEV \"BaseRemoteCtl\" major number 230 goes below the dynamic allocation range\n[    2.575834] lirc_dev: IR Remote Control driver registered, major 230\n[    2.575836] IR NEC protocol handler initialized\n[    2.575838] IR RC5(x/sz) protocol handler initialized\n[    2.575839] IR RC6 protocol handler initialized\n[    2.575840] IR JVC protocol handler initialized\n[    2.575841] IR Sony protocol handler initialized\n[    2.575843] IR SANYO protocol handler initialized\n[    2.575844] IR Sharp protocol handler initialized\n[    2.575845] IR LIRC bridge handler initialized\n[    2.575846] IR XMP protocol handler initialized\n[    2.580779] iommu: Adding device 1d00000.qcom,vidc:non_secure_cb to group 5\n[    2.581237] iommu: Adding device 1d00000.qcom,vidc:secure_bitstream_cb to group 6\n[    2.581539] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    2.581541] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    2.581608] iommu: Adding device 1d00000.qcom,vidc:secure_pixel_cb to group 7\n[    2.581863] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    2.581865] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    2.581928] iommu: Adding device 1d00000.qcom,vidc:secure_non_pixel_cb to group 8\n[    2.582170] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    2.582172] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    2.586092] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb1 to group 9\n[    2.586296] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb3 to group 10\n[    2.586435] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb4 to group 11\n[    2.587831] msm 1b00000.qcom,msm-cam: Entity type for entity msm_cci was not initialized!\n[    2.587871] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    2.592279] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csiphy was not initialized!\n[    2.592412] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    2.592556] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csiphy was not initialized!\n[    2.592629] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    2.592689] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csiphy was not initialized!\n[    2.592751] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    2.593327] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    2.593336] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    2.593470] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    2.593476] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    2.593607] msm_camera_get_dt_vreg_data:1201 number of entries is 0 or not present in dts\n[    2.593614] msm 1b00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    2.594187] msm_actuator_platform_probe:2014 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    2.594192] msm 1b00000.qcom,msm-cam: Entity type for entity msm_actuator was not initialized!\n[    2.594849] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    2.600176] msm_camera_config_single_vreg : can't find sub reg name\n[    2.609020] msm_cci_init:1438: hw_version = 0x10020005\n[    2.609468] msm_cci_irq:1790 MASTER_0 error 0x10000000\n[    2.609488] msm_cci_i2c_read:959 read_words = 0, exp words = 1\n[    2.609490] msm_cci_i2c_read_bytes:1042 failed rc -22\n[    2.609491] read_eeprom_memory error\n[    2.609493] msm_eeprom_platform_probe read_eeprom_memory failed\n[    2.617661] msm_camera_config_single_vreg : can't find sub reg name\n[    2.621828] qcom,eeprom: probe of 1b0c000.qcom,cci:qcom,eeprom@0 failed with error -22\n[    2.622050] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    2.628253] msm_camera_config_single_vreg : can't find sub reg name\n[    2.637241] msm_cci_init:1438: hw_version = 0x10020005\n[    2.637832] qcom,slave-addr = 0xB0\n[    2.638407] qcom,slave-addr = 0xB0\n[    2.639072] qcom,slave-addr = 0xB0\n[    2.639918] qcom,slave-addr = 0xB0\n[    2.640944] qcom,slave-addr = 0xB0\n[    2.858402] qcom,slave-addr = 0xB0\n[    2.968831] qcom,slave-addr = 0xB0\n[    2.977673] msm_camera_config_single_vreg : can't find sub reg name\n[    2.981841] msm 1b00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    2.982240] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    2.988482] msm_camera_config_single_vreg : can't find sub reg name\n[    2.997477] msm_cci_init:1438: hw_version = 0x10020005\n[    2.998068] qcom,slave-addr = 0xB0\n[    2.998554] qcom,slave-addr = 0xB0\n[    2.999038] qcom,slave-addr = 0xB0\n[    2.999703] qcom,slave-addr = 0xB0\n[    3.000549] qcom,slave-addr = 0xB0\n[    3.001034] qcom,slave-addr = 0xB0\n[    3.001969] qcom,slave-addr = 0xB0\n[    3.002904] qcom,slave-addr = 0xB0\n[    3.220355] qcom,slave-addr = 0xB0\n[    3.339540] msm_camera_config_single_vreg : can't find sub reg name\n[    3.343715] msm 1b00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    3.344128] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    3.364149] msm_cci_init:1438: hw_version = 0x10020005\n[    3.364595] msm_cci_irq:1796 MASTER_1 error 0x40000000\n[    3.364615] msm_cci_i2c_read:959 read_words = 0, exp words = 1\n[    3.364617] msm_cci_i2c_read_bytes:1042 failed rc -22\n[    3.364618] read_eeprom_memory error\n[    3.364620] msm_eeprom_platform_probe read_eeprom_memory failed\n[    3.383909] qcom,eeprom: probe of 1b0c000.qcom,cci:qcom,eeprom@3 failed with error -22\n[    3.384181] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    3.405545] msm_cci_init:1438: hw_version = 0x10020005\n[    3.405989] msm_cci_irq:1796 MASTER_1 error 0x40000000\n[    3.406009] msm_cci_i2c_read:959 read_words = 0, exp words = 1\n[    3.406010] msm_cci_i2c_read_bytes:1042 failed rc -22\n[    3.406012] read_eeprom_memory error\n[    3.406013] msm_eeprom_platform_probe read_eeprom_memory failed\n[    3.425245] qcom,eeprom: probe of 1b0c000.qcom,cci:qcom,eeprom@4 failed with error -22\n[    3.425511] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    3.446877] msm_cci_init:1438: hw_version = 0x10020005\n[    3.620085] msm 1b00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    3.620467] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    3.626686] msm_camera_config_single_vreg : can't find sub reg name\n[    3.635678] msm_cci_init:1438: hw_version = 0x10020005\n[    3.636270] qcom,slave-addr = 0xB0\n[    3.680507] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    3.680510] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    3.762319] qcom,slave-addr = 0xB0\n[    3.888313] qcom,slave-addr = 0xB0\n[    4.014306] qcom,slave-addr = 0xB0\n[    4.140301] qcom,slave-addr = 0xB0\n[    4.266295] qcom,slave-addr = 0xB0\n[    4.392292] qcom,slave-addr = 0xB0\n[    4.518291] qcom,slave-addr = 0xB0\n[    4.652147] msm_camera_config_single_vreg : can't find sub reg name\n[    4.656331] msm 1b00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    4.656748] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    4.662129] msm_camera_config_single_vreg : can't find sub reg name\n[    4.671130] msm_cci_init:1438: hw_version = 0x10020005\n[    4.671577] msm_cci_irq:1790 MASTER_0 error 0x10000000\n[    4.671596] msm_cci_i2c_read:959 read_words = 0, exp words = 1\n[    4.671598] msm_cci_i2c_read_bytes:1042 failed rc -22\n[    4.671599] read_eeprom_memory error\n[    4.671601] msm_eeprom_platform_probe read_eeprom_memory failed\n[    4.679770] msm_camera_config_single_vreg : can't find sub reg name\n[    4.683935] qcom,eeprom: probe of 1b0c000.qcom,cci:qcom,eeprom@7 failed with error -22\n[    4.684175] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    4.690383] msm_camera_config_single_vreg : can't find sub reg name\n[    4.699362] msm_cci_init:1438: hw_version = 0x10020005\n[    4.699953] qcom,slave-addr = 0xB0\n[    4.825958] qcom,slave-addr = 0xB0\n[    4.951954] qcom,slave-addr = 0xB0\n[    5.077948] qcom,slave-addr = 0xB0\n[    5.203942] qcom,slave-addr = 0xB0\n[    5.329938] qcom,slave-addr = 0xB0\n[    5.455934] qcom,slave-addr = 0xB0\n[    5.581931] qcom,slave-addr = 0xB0\n[    5.716120] msm_camera_config_single_vreg : can't find sub reg name\n[    5.720086] msm 1b00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    5.720466] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    5.726688] msm_camera_config_single_vreg : can't find sub reg name\n[    5.735678] msm_cci_init:1438: hw_version = 0x10020005\n[    5.736123] msm_cci_irq:1790 MASTER_0 error 0x10000000\n[    5.736143] msm_cci_i2c_read:959 read_words = 0, exp words = 1\n[    5.736145] msm_cci_i2c_read_bytes:1042 failed rc -22\n[    5.736146] read_eeprom_memory error\n[    5.736148] msm_eeprom_platform_probe read_eeprom_memory failed\n[    5.744204] msm_camera_config_single_vreg : can't find sub reg name\n[    5.748373] qcom,eeprom: probe of 1b0c000.qcom,cci:qcom,eeprom@9 failed with error -22\n[    5.749351] msm_flash_get_dt_data:1036 No valid flash GPIOs data\n[    5.749360] msm 1b00000.qcom,msm-cam: Entity type for entity msm_camera_flash was not initialized!\n[    5.750250] adp1660 i2c_add_driver success\n[    5.750691] msm 1b00000.qcom,msm-cam: Entity type for entity msm_sensor_init was not initialized!\n[    5.751179] msm_camera_get_dt_gpio_set_tbl failed 794\n[    5.751350] msm_camera_get_dt_gpio_set_tbl failed 794\n[    5.751534] msm_camera_get_dt_gpio_set_tbl failed 794\n[    5.754546] MSM-CPP cpp_init_hardware:1011 CPP HW Version: 0x40030003\n[    5.754556] MSM-CPP cpp_init_hardware:1029 stream_cnt:0\n[    5.754566] msm 1b00000.qcom,msm-cam: Entity type for entity 1b04000.qcom,cpp was not initialized!\n[    5.757343] msm 1b00000.qcom,msm-cam: Entity type for entity 1b10000.qcom,vfe0 was not initialized!\n[    5.757605] msm 1b00000.qcom,msm-cam: Entity type for entity 1b14000.qcom,vfe1 was not initialized!\n[    5.758322] msm 1b00000.qcom,msm-cam: Entity type for entity 1b31000.qcom,ispif was not initialized!\n[    5.758807] __msm_jpeg_init:1537] Jpeg Device id 0\n[    5.758954] CHRDEV \"jpeg0\" major number 229 goes below the dynamic allocation range\n[    5.759151] msm 1b00000.qcom,msm-cam: Entity type for entity msm_buf_mngr was not initialized!\n[    5.760403] FG: fg_check_ima_exception: Initial ima_err_sts=0 ima_exp_sts=0 ima_hw_sts=0\n[    5.761753] FG: fg_probe: FG Probe success - FG Revision DIG:3.1 ANA:1.2 PMIC subtype=17\n[    5.762778] SMBCHG: smbchg_hvdcp_enable_cb: smbchg_hvdcp_enable_cb HVDCP disabled\n[    5.763681] FG: status_change_work: qpnp-fg: Battery dishcarged, full soc enable!\n[    5.763683] FG: status_change_work: qpnp-fg: Current capacity: 50\n[    5.772473] qpnp-smbcharger 200f000.qcom,spmi:qcom,pmi8950@2:qcom,qpnp-smbcharger: SMBCHG successfully probe Charger version=SCHG_LITE Revision DIG:0.0 ANA:0.1 batt=1 dc=0 usb=0\n[    5.860137] device-mapper: uevent: version 1.0.3\n[    5.860377] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com\n[    5.861521] device-mapper: req-crypt: dm-req-crypt successfully initalized.\n\n[    5.862155] CHRDEV \"bt\" major number 228 goes below the dynamic allocation range\n[    5.862276] sdhci: Secure Digital Host Controller Interface driver\n[    5.862277] sdhci: Copyright(c) Pierre Ossman\n[    5.862279] sdhci-pltfm: SDHCI platform and OF driver helper\n[    5.862676] qcom,leds-qpnp: probe of 200f000.qcom,spmi:qcom,pmi8950@2:qcom,leds@a100 failed with error -10\n[    5.865169] i2c-msm-v2 78b6000.i2c: msm_bus_scale_register_client(mstr-id:86):0x13 (ok)\n[    5.865497] sdhci_msm 7824900.sdhci: failed opening nvmem cell err : -2\n[    5.865505] qcom_ice_get_pdevice: found ice device ffffffc0abb4ac00\n[    5.865506] qcom_ice_get_pdevice: matching platform device ffffffc0ad480800\n[    5.865680] sdhci_msm 7824900.sdhci: Failed to get dll hsr settings from dt\n[    5.866787] usbcore: registered new interface driver usbhid\n[    5.866789] usbhid: USB HID core driver\n[    5.866990] ashmem: initialized\n[    5.867328] qpnp_coincell_charger_show_state: enabled=Y, voltage=3200 mV, resistance=2100 ohm\n[    5.871201] qcom_ice 7803000.sdcc1ice: QC ICE 2.1.44 device found @0xffffff800c2d0000\n[    5.871831] mmc0: SDHCI controller on 7824900.sdhci [7824900.sdhci] using 64-bit ADMA in CMDQ mode\n[    5.955583] mmc0: Out-of-interrupt timeout is 50[ms]\n[    5.955586] mmc0: eMMC FW version: 0xa5\n[    5.955588] mmc0: CMDQ supported: depth: 32\n[    5.955589] mmc0: cache barrier support 1 flush policy 1\n[    5.967858] cmdq_host_alloc_tdl: desc_size: 768 data_sz: 63488 slot-sz: 24\n[    5.967992] mmc0: CMDQ enabled on card\n[    5.968000] mmc0: new HS400 Enhanced strobe MMC card at address 0001\n[    5.970586] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0xf) latency=-1\n[    5.970590] sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xf0) latency=-1\n[    5.970643] mmcblk0: mmc0:0001 HBG4a2 29.1 GiB \n[    5.971856] mmcblk0rpmb: mmc0:0001 HBG4a2 partition 3 4.00 MiB\n[    5.975069]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42 p43 p44 p45 p46 p47 p48 p49\n[    5.981260] sdhci_msm 7864900.sdhci: failed opening nvmem cell err : -2\n[    5.981267] sdhci_msm 7864900.sdhci: sdhci_msm_probe: ICE device is not enabled\n[    5.981447] sdhci_msm 7864900.sdhci: Failed to get dll hsr settings from dt\n[    5.995590] mmc1: SDHCI controller on 7864900.sdhci [7864900.sdhci] using 64-bit ADMA in legacy mode\n[    6.025614] tz_log 8600720.tz-log: Hyp log service is not supported\n[    6.026580] bimc-bwmon 408000.qcom,cpu-bwmon: BW HWmon governor registered.\n[    6.032477] CHRDEV \"sensors\" major number 227 goes below the dynamic allocation range\n[    6.032852] usbcore: registered new interface driver snd-usb-audio\n[    6.033601] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    6.051342] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx group_id: 0x9100\n[    6.051627] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0 dev_id: 0x9000\n[    6.051636] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    6.051663] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx group_id: 0x9101\n[    6.051861] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0 dev_id: 0x9001\n[    6.051868] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    6.051887] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx group_id: 0x9110\n[    6.052032] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0 dev_id: 0x9010\n[    6.052038] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    6.052056] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx group_id: 0x9111\n[    6.052193] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0 dev_id: 0x9011\n[    6.052199] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    6.052217] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx group_id: 0x9120\n[    6.052354] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0 dev_id: 0x9020\n[    6.052361] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    6.052378] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx group_id: 0x9121\n[    6.052514] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0 dev_id: 0x9021\n[    6.052521] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    6.052544] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx group_id: 0x9130\n[    6.052676] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0 dev_id: 0x9030\n[    6.052683] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    6.052702] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx group_id: 0x9131\n[    6.052840] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0 dev_id: 0x9031\n[    6.052847] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    6.052866] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx group_id: 0x9140\n[    6.052999] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0 dev_id: 0x9040\n[    6.053006] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    6.053024] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx group_id: 0x9141\n[    6.053160] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0 dev_id: 0x9041\n[    6.053166] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    6.057619] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    6.057643] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    6.058063] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    6.058070] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    6.061527] CHRDEV \"avtimer\" major number 226 goes below the dynamic allocation range\n[    6.062173] audio_notifier_init: PDR register failed, ret = -19, disable service\n[    6.063574] audio_notifer_reg_service: service SSR_ADSP is in use\n[    6.063578] audio_notifer_reg_service: service SSR_MODEM is in use\n[    6.065185] u32 classifier\n[    6.065188]     Actions configured\n[    6.065193] Netfilter messages via NETLINK v0.30.\n[    6.065335] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    6.065427] ctnetlink v0.93: registering with nfnetlink.\n[    6.065750] xt_time: kernel timezone is -0000\n[    6.065784] wireguard: WireGuard 1.0.20201221 loaded. See www.wireguard.com for information.\n[    6.065786] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    6.065845] gre: GRE over IPv4 demultiplexor driver\n[    6.065847] IPv4 over IPsec tunneling driver\n[    6.066108] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    6.066243] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    6.066268] Initializing XFRM netlink socket\n[    6.066282] IPsec XFRM device driver\n[    6.066459] NET: Registered protocol family 10\n[    6.068113] mip6: Mobile IPv6\n[    6.068125] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    6.068477] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    6.068891] NET: Registered protocol family 17\n[    6.068901] NET: Registered protocol family 15\n[    6.068915] Ebtables v2.0 registered\n[    6.068999] l2tp_core: L2TP core driver, V2.0\n[    6.069005] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    6.069006] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    6.069016] l2tp_netlink: L2TP netlink interface\n[    6.069034] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    6.069035] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    6.069870] NET: Registered protocol family 27\n[    6.070143] spmi spmi-0: error: impermissible write to peripheral sid:0 addr:0xc441\n[    6.070149] qcom-spmi-gpio 200f000.qcom,spmi:qcom,pm8953@0:gpios: write 0x41 failed\n[    6.070154] adv_vreg: Failed to request enable GPIO1277: -19\n[    6.070157] reg-fixed-voltage soc:adv_vreg: Failed to register regulator: -19\n[    6.074943] minidump-id not found for adsp\n[    6.076733] minidump-id not found for wcnss\n[    6.076831] subsys-pil-tz a21b000.qcom,pronto: for wcnss segments only will be dumped.\n[    6.077392] minidump-id not found for modem\n[    6.077680] pil-q6v5-mss 4080000.qcom,mss: for modem segments only will be dumped.\n[    6.077741] pil-q6v5-mss 4080000.qcom,mss: for md_modem segments only will be dumped.\n[    6.082270] sps:BAM 0x0000000007104000 is registered.\n[    6.083008] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    6.083529] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    6.083551] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    6.083983] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    6.083988] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    6.084720] Registered cp15_barrier emulation handler\n[    6.084734] Registered setend emulation handler\n[    6.085076] registered taskstats version 1\n[    6.085086] Loading compiled-in X.509 certificates\n[    6.089178] Loaded X.509 cert 'Build time autogenerated kernel key: 8cdcb5924ff912b95900efb648c7e8284615d8b7'\n[    6.090537] qcom,cc-debug-8953 1874000.qcom,cc-debug: Registered Debug Mux successfully\n[    6.096017] msm-dwc3 7000000.ssusb: DWC3 exited from low power mode\n[    6.097930] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb to group 12\n[    6.099116] CHRDEV \"adsprpc-smd\" major number 224 goes below the dynamic allocation range\n[    6.099647] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    6.100190] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    6.100213] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    6.100649] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    6.100655] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    6.102404] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    6.102853] qcom,qpnp-rtc 200f000.qcom,spmi:qcom,pm8953@0:qcom,pm8953_rtc: setting system clock to 1970-06-08 21:59:37 UTC (13730377)\n[    6.103232] pwm-ir soc:pwm_ir: reg-id = vdd, low-active = 0, use-timer = 0\n[    6.103352] Registered IR keymap rc-lirc\n[    6.103455] input: pwm-ir as /devices/platform/soc/soc:pwm_ir/rc/rc0/input4\n[    6.103896] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    6.104394] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    6.104415] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    6.104846] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    6.104852] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    6.105071] rc rc0: pwm-ir as /devices/platform/soc/soc:pwm_ir/rc/rc0\n[    6.105350] msm-dwc3 7000000.ssusb: DWC3 in low power mode\n[    6.106270] rc rc0: lirc_dev: driver ir-lirc-codec (pwm-ir) registered at minor = 0\n[    6.108164] lpm_levels_of: idx 1 276\n[    6.108170] lpm_levels_of: Residency < 0 for LPM\n[    6.108244] lpm_levels_of: idx 1 286\n[    6.108247] lpm_levels_of: Residency < 0 for LPM\n[    6.108329] lpm_levels: register_cluster_lpm_stats()\n[    6.108464] lpm_levels: register_cluster_lpm_stats()\n[    6.109136] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    6.109629] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    6.109652] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    6.110145] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    6.110152] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    6.111747] qcom,qpnp-flash-led 200f000.qcom,spmi:qcom,pmi8950@3:qcom,leds@d300: Unable to acquire pinctrl\n[    6.113199] rmnet_ipa started initialization\n[    6.113203] IPA SSR support = True\n[    6.113205] IPA ipa-loaduC = True\n[    6.113206] IPA SG support = True\n[    6.113207] IPA Napi Enable = False\n[    6.113209] using default for wan-rx-desc-size = 1024\n[    6.113741] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    6.114243] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    6.114266] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    6.114699] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    6.114705] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    6.120374] CHRDEV \"wwan_ioctl\" major number 223 goes below the dynamic allocation range\n[    6.121993] ipa ipa_sps_irq_control_all:963 EP (5) not allocated.\n[    6.121999] ipa ipa2_uc_state_check:302 uC is not loaded\n[    6.122970] rmnet_ipa completed initialization\n[    6.123442] RNDIS_IPA module is loaded.\n[    6.123458] clock_late_init: Removing enables held for handed-off clocks\n[    6.123843] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    6.124342] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    6.124365] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    6.124795] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    6.124800] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    6.128784] apc_mem_acc_corner: disabling\n[    6.128787] gfx_mem_acc_corner: disabling\n[    6.128803] vdd_vreg: disabling\n[    6.128828] ALSA device list:\n[    6.128831]   No soundcards found.\n[    6.128875] Warning: unable to open an initial console.\n[    6.130570] Freeing unused kernel memory: 6144K\n[    7.106751] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    7.106961] cpu1 \n[    7.107006] \n               Offline CPUs: \n[    7.110935] cpu1 \n[    7.133193] cpu2 \n[    7.185186] cpu3 \n[    7.234957] cpu4 \n[    7.284873] cpu5 \n[    7.334346] cpu6 \n[    7.383023] cpu7 \n[    7.409211] FG: set_prop_enable_charging: qpnp-fg: disabling charging\n\n[    7.459442] cpr3_regulator_measure_aging: apc: average quotient delta=-7 (count=10)\n[    7.459474] cpr3_regulator_aging_adjust: apc: aging measurement successful; aging reference adjustment voltage=0 uV\n[    9.442062] of_batterydata_get_best_profile: qrd_msm8953_sunwoda_4100mah found\n[    9.469718] FG: set_prop_enable_charging: qpnp-fg: enabling charging\n[    9.494042] FG: fg_batt_profile_init: Battery SOC: 37, V: 3762948uV\n[   10.171844] qpnp_adc_tm_req_sts_check: retry error=1001 with 0x7\n[   12.473074] Sampling power every 1000 ms\n               Baseline power usage: \n[   88.643620] 827 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 652 1036 1401 1689 1804 1958 2016\n               \n                652: \n[  215.115139]  2120     3.2 C/MHz     57 mW    6.7 J   37.4 I/mJ   118.0 s\n               1036: \n[  298.425271]  3367     3.2 C/MHz     91 mW    6.7 J   37.2 I/mJ    74.3 s\n               1401: \n[  361.666118]  4551     3.2 C/MHz    166 mW    9.1 J   27.5 I/mJ    54.9 s\n               1689: \n[  415.881073]  5487     3.2 C/MHz    234 mW   10.7 J   23.4 I/mJ    45.6 s\n               1804: \n[  467.084484]  5861     3.2 C/MHz    266 mW   11.3 J   22.0 I/mJ    42.7 s\n               1958: \n[  515.276807]  6360     3.2 C/MHz    325 mW   12.8 J   19.6 I/mJ    39.3 s\n               2016: \n[  562.505118]  6547     3.2 C/MHz    380 mW   14.5 J   17.2 I/mJ    38.2 s\n               \n               \n               Benchmark finished!\n[  562.542612] \n               real\t9m16.317s\n               user\t6m54.132s\n               sys\t0m0.252s\n"
  },
  {
    "path": "results/msm8953/second/post_bench_interrupts.txt",
    "content": "           CPU0       \n  1:        698     GIC-0 203 Edge      mpm\n  4:       4389   mpm-gic  20 Level     arch_timer\n  6:      60562   mpm-gic  39 Level     arch_mem_timer\n  7:          0   mpm-gic  57 Edge      qcom,smd-modem\n  8:          0   mpm-gic  58 Edge      qcom,smsm-modem\n  9:          0   mpm-gic 174 Edge      qcom,smd-wcnss\n 10:          0   mpm-gic 176 Edge      qcom,smsm-wcnss\n 11:          0   mpm-gic 321 Edge      qcom,smd-adsp\n 12:          0   mpm-gic 322 Edge      qcom,smsm-adsp\n 13:        641   mpm-gic 200 Edge      qcom,smd-rpm\n 15:         82   mpm-gic 155 Edge      mmc0\n 16:          2   mpm-gic 170 Edge      7824900.sdhci\n 17:          0   mpm-gic 224 Level     spdm_bw_hyp\n 20:          0   mpm-gic 264 Level     arm-smmu-context-fault\n 27:          0   mpm-gic  86 Level     arm-smmu-context-fault\n 28:          0   mpm-gic  90 Level     arm-smmu-context-fault\n 29:          0   mpm-gic  92 Level     arm-smmu-context-fault\n 40:          0   mpm-gic 138 Level     arm-smmu-context-fault\n 45:          0   mpm-gic 145 Level     arm-smmu-context-fault\n 55:          0   mpm-gic  76 Level     msm_vidc\n 56:          0   mpm-gic  65 Level     kgsl-3d0\n 57:          0   mpm-gic 104 Edge      MDSS\n 58:          0   mpm-gic  59 Edge      smp2p\n 59:          0   mpm-gic 175 Edge      smp2p\n 60:          0   mpm-gic 323 Edge      smp2p\n 63:          0   mpm-gic 216 Level     tsens-upper-lower\n 64:          0   mpm-gic 346 Level     tsens-critical\n 65:          0   mpm-gic 239 Level     sps\n 69:          3   mpm-gic 128 Level     i2c-msm-v2-irq\n 70:         47   mpm-gic 129 Level     i2c-msm-v2-irq\n 71:          0   mpm-gic 331 Level     i2c-msm-v2-irq\n 73:          0   mpm-gic  35 Edge      apps_wdog_bark\n 75:          0   mpm-gic 344 Edge      7803000.sdcc1ice\n 77:         13     GIC-0 157 Edge      mmc1\n 78:          2     GIC-0 253 Edge      7864900.sdhci\n 79:          0   msmgpio 133 Edge      7864900.sdhci cd\n 80:          0   mpm-gic 260 Edge      ipa\n 81:         18   mpm-gic 262 Level     sps\n 83:          0  pmic_arb 8388652 Edge      qpnp_kpdpwr_status\n 84:          0  pmic_arb 8454188 Edge      qpnp_resin_status\n 87:          0  pmic_arb 37748782 Edge      pm8953_tz\n100:          0  pmic_arb 54722572 Edge      qpnp_adc_tm_high_interrupt\n101:          0  pmic_arb 54788108 Edge      qpnp_adc_tm_low_interrupt\n124:          0  pmic_arb 1031929862 Edge      qpnp_wled_sc_irq\n125:          0  pmic_arb 1006632968 Edge      haptics_sc_irq\n126:          0  pmic_arb 1006698504 Edge      haptics_play_irq\n127:          0   mpm-gic 168 Edge      hs_phy_irq\n128:          0   mpm-gic 252 Level     ss_phy_irq\n129:          0   mpm-gic 166 Edge      pwr_event_irq\n130:          0   mpm-gic  56 Edge      modem\n131:          0   mpm-gic 325 Edge      adsp\n132:          0   mpm-gic 181 Edge      wcnss\n135:          1   mpm-gic  47 Edge      cpr3\n136:          0   mpm-gic 110 Edge      csiphy\n137:          0   mpm-gic 111 Edge      csiphy\n138:          0   mpm-gic 347 Edge      csiphy\n139:          0   mpm-gic  83 Edge      csid\n140:          0   mpm-gic  84 Edge      csid\n141:          0   mpm-gic 185 Edge      csid\n142:          0   mpm-gic  87 Edge      ispif\n143:          0   mpm-gic  89 Edge      vfe\n144:          0   mpm-gic  61 Edge      vfe\n147:       1932   mpm-gic  82 Edge      cci\n277:      33705   msmgpio  24 Edge      te-irq\n278:          0   msmgpio  65 Edge      ft5435_ts\n279:          0  pmic_arb 101777429 Edge      qpnp_rtc_alarm\n280:          0  pmic_arb 604110871 Edge      full-soc\n281:          0  pmic_arb 604176407 Edge      empty-soc\n282:          1  pmic_arb 604241943 Edge      delta-soc\n283:          0  pmic_arb 604307479 Edge      first-est-done\n284:          0  pmic_arb 605028384 Edge      soft-cold\n285:          0  pmic_arb 605093920 Edge      soft-hot\n286:          0  pmic_arb 605421600 Edge      batt-missing\n287:          0  pmic_arb 605159456 Edge      vbatt-low\n288:       5752  pmic_arb 608174109 Edge      mem-avail\n289:          0  pmic_arb 553648161 Edge      chg-error\n290:          0  pmic_arb 554041377 Edge      chg-taper-thr\n291:          0  pmic_arb 554106913 Edge      chg-tcc-thr\n292:          0  pmic_arb 553975841 Edge      chg-rechg-thr\n293:          0  pmic_arb 553910305 Edge      chg-p2f-thr\n294:          0  pmic_arb 554893350 Edge      usbid-change\n295:          0  pmic_arb 554762278 Edge      otg-oc\n296:          0  pmic_arb 554696742 Edge      otg-fail\n297:          0  pmic_arb 555745298 Edge      batt-hot\n298:          0  pmic_arb 555810834 Edge      batt-warm\n299:          0  pmic_arb 555941906 Edge      batt-cool\n300:          0  pmic_arb 555876370 Edge      batt-cold\n301:          0  pmic_arb 556138514 Edge      batt-missing\n302:          0  pmic_arb 556072978 Edge      batt-low\n303:          0  pmic_arb 556793873 Edge      usbin-uv\n304:          0  pmic_arb 556859409 Edge      usbin-ov\n305:          0  pmic_arb 556924945 Edge      usbin-src-det\n306:          0  pmic_arb 557121553 Edge      aicl-done\n307:          0  pmic_arb 557842448 Edge      dcin-uv\n308:          0  pmic_arb 559939599 Edge      power-ok\n309:          0  pmic_arb 560005135 Edge      temp-shutdown\n310:          0  pmic_arb 560070671 Edge      wdog-timeout\n311:          0  smp2p_gpio   0 Edge      modem\n312:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n313:          0  smp2p_gpio   2 Edge      modem\n314:          0  smp2p_gpio   3 Edge      modem\n343:          0  smp2p_gpio   0 Edge      adsp\n344:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n345:          0  smp2p_gpio   2 Edge      adsp\n346:          0  smp2p_gpio   3 Edge      adsp\n375:          0  smp2p_gpio   0 Edge      wcnss\n376:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n377:          0  smp2p_gpio   2 Edge      wcnss\n378:          0  smp2p_gpio   3 Edge      wcnss\n407:          0     GIC-0 172 Edge      dwc3\n409:          0   msmgpio  85 Edge      volume_up\nIPI0:       104       Rescheduling interrupts\nIPI1:         8       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       Timer broadcast interrupts\nIPI4:     27926       IRQ work interrupts\nIPI5:         0       CPU wake-up interrupts\nIPI6:         0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/msm8953/second/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  1:          0          0          0          0          0          0          0          0     GIC-0 203 Edge      mpm\n  4:       1229          1          1          1          1          1          1          1   mpm-gic  20 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   mpm-gic  39 Level     arch_mem_timer\n  7:          0          0          0          0          0          0          0          0   mpm-gic  57 Edge      qcom,smd-modem\n  8:          0          0          0          0          0          0          0          0   mpm-gic  58 Edge      qcom,smsm-modem\n  9:          0          0          0          0          0          0          0          0   mpm-gic 174 Edge      qcom,smd-wcnss\n 10:          0          0          0          0          0          0          0          0   mpm-gic 176 Edge      qcom,smsm-wcnss\n 11:          0          0          0          0          0          0          0          0   mpm-gic 321 Edge      qcom,smd-adsp\n 12:          0          0          0          0          0          0          0          0   mpm-gic 322 Edge      qcom,smsm-adsp\n 13:        579          0          0          0          0          0          0          0   mpm-gic 200 Edge      qcom,smd-rpm\n 15:         71          0          0          0          0          0          0          0   mpm-gic 155 Edge      mmc0\n 16:          1          0          0          0          0          0          0          0   mpm-gic 170 Edge      7824900.sdhci\n 17:          0          0          0          0          0          0          0          0   mpm-gic 224 Level     spdm_bw_hyp\n 20:          0          0          0          0          0          0          0          0   mpm-gic 264 Level     arm-smmu-context-fault\n 27:          0          0          0          0          0          0          0          0   mpm-gic  86 Level     arm-smmu-context-fault\n 28:          0          0          0          0          0          0          0          0   mpm-gic  90 Level     arm-smmu-context-fault\n 29:          0          0          0          0          0          0          0          0   mpm-gic  92 Level     arm-smmu-context-fault\n 40:          0          0          0          0          0          0          0          0   mpm-gic 138 Level     arm-smmu-context-fault\n 45:          0          0          0          0          0          0          0          0   mpm-gic 145 Level     arm-smmu-context-fault\n 55:          0          0          0          0          0          0          0          0   mpm-gic  76 Level     msm_vidc\n 56:          0          0          0          0          0          0          0          0   mpm-gic  65 Level     kgsl-3d0\n 57:          0          0          0          0          0          0          0          0   mpm-gic 104 Edge      MDSS\n 58:          0          0          0          0          0          0          0          0   mpm-gic  59 Edge      smp2p\n 59:          0          0          0          0          0          0          0          0   mpm-gic 175 Edge      smp2p\n 60:          0          0          0          0          0          0          0          0   mpm-gic 323 Edge      smp2p\n 63:          0          0          0          0          0          0          0          0   mpm-gic 216 Level     tsens-upper-lower\n 64:          0          0          0          0          0          0          0          0   mpm-gic 346 Level     tsens-critical\n 65:          0          0          0          0          0          0          0          0   mpm-gic 239 Level     sps\n 69:          3          0          0          0          0          0          0          0   mpm-gic 128 Level     i2c-msm-v2-irq\n 70:         47          0          0          0          0          0          0          0   mpm-gic 129 Level     i2c-msm-v2-irq\n 71:          0          0          0          0          0          0          0          0   mpm-gic 331 Level     i2c-msm-v2-irq\n 73:          0          0          0          0          0          0          0          0   mpm-gic  35 Edge      apps_wdog_bark\n 75:          0          0          0          0          0          0          0          0   mpm-gic 344 Edge      7803000.sdcc1ice\n 77:         13          0          0          0          0          0          0          0     GIC-0 157 Edge      mmc1\n 78:          2          0          0          0          0          0          0          0     GIC-0 253 Edge      7864900.sdhci\n 79:          0          0          0          0          0          0          0          0   msmgpio 133 Edge      7864900.sdhci cd\n 80:          0          0          0          0          0          0          0          0   mpm-gic 260 Edge      ipa\n 81:         18          0          0          0          0          0          0          0   mpm-gic 262 Level     sps\n 83:          0          0          0          0          0          0          0          0  pmic_arb 8388652 Edge      qpnp_kpdpwr_status\n 84:          0          0          0          0          0          0          0          0  pmic_arb 8454188 Edge      qpnp_resin_status\n 87:          0          0          0          0          0          0          0          0  pmic_arb 37748782 Edge      pm8953_tz\n100:          0          0          0          0          0          0          0          0  pmic_arb 54722572 Edge      qpnp_adc_tm_high_interrupt\n101:          0          0          0          0          0          0          0          0  pmic_arb 54788108 Edge      qpnp_adc_tm_low_interrupt\n124:          0          0          0          0          0          0          0          0  pmic_arb 1031929862 Edge      qpnp_wled_sc_irq\n125:          0          0          0          0          0          0          0          0  pmic_arb 1006632968 Edge      haptics_sc_irq\n126:          0          0          0          0          0          0          0          0  pmic_arb 1006698504 Edge      haptics_play_irq\n127:          0          0          0          0          0          0          0          0   mpm-gic 168 Edge      hs_phy_irq\n128:          0          0          0          0          0          0          0          0   mpm-gic 252 Level     ss_phy_irq\n129:          0          0          0          0          0          0          0          0   mpm-gic 166 Edge      pwr_event_irq\n130:          0          0          0          0          0          0          0          0   mpm-gic  56 Edge      modem\n131:          0          0          0          0          0          0          0          0   mpm-gic 325 Edge      adsp\n132:          0          0          0          0          0          0          0          0   mpm-gic 181 Edge      wcnss\n135:          0          0          0          0          0          0          0          0   mpm-gic  47 Edge      cpr3\n136:          0          0          0          0          0          0          0          0   mpm-gic 110 Edge      csiphy\n137:          0          0          0          0          0          0          0          0   mpm-gic 111 Edge      csiphy\n138:          0          0          0          0          0          0          0          0   mpm-gic 347 Edge      csiphy\n139:          0          0          0          0          0          0          0          0   mpm-gic  83 Edge      csid\n140:          0          0          0          0          0          0          0          0   mpm-gic  84 Edge      csid\n141:          0          0          0          0          0          0          0          0   mpm-gic 185 Edge      csid\n142:          0          0          0          0          0          0          0          0   mpm-gic  87 Edge      ispif\n143:          0          0          0          0          0          0          0          0   mpm-gic  89 Edge      vfe\n144:          0          0          0          0          0          0          0          0   mpm-gic  61 Edge      vfe\n147:       1932          0          0          0          0          0          0          0   mpm-gic  82 Edge      cci\n277:        336          0          0          0          0          0          0          0   msmgpio  24 Edge      te-irq\n278:          0          0          0          0          0          0          0          0   msmgpio  65 Edge      ft5435_ts\n279:          0          0          0          0          0          0          0          0  pmic_arb 101777429 Edge      qpnp_rtc_alarm\n280:          0          0          0          0          0          0          0          0  pmic_arb 604110871 Edge      full-soc\n281:          0          0          0          0          0          0          0          0  pmic_arb 604176407 Edge      empty-soc\n282:          0          0          0          0          0          0          0          0  pmic_arb 604241943 Edge      delta-soc\n283:          0          0          0          0          0          0          0          0  pmic_arb 604307479 Edge      first-est-done\n284:          0          0          0          0          0          0          0          0  pmic_arb 605028384 Edge      soft-cold\n285:          0          0          0          0          0          0          0          0  pmic_arb 605093920 Edge      soft-hot\n286:          0          0          0          0          0          0          0          0  pmic_arb 605421600 Edge      batt-missing\n287:          0          0          0          0          0          0          0          0  pmic_arb 605159456 Edge      vbatt-low\n288:        114          0          0          0          0          0          0          0  pmic_arb 608174109 Edge      mem-avail\n289:          0          0          0          0          0          0          0          0  pmic_arb 553648161 Edge      chg-error\n290:          0          0          0          0          0          0          0          0  pmic_arb 554041377 Edge      chg-taper-thr\n291:          0          0          0          0          0          0          0          0  pmic_arb 554106913 Edge      chg-tcc-thr\n292:          0          0          0          0          0          0          0          0  pmic_arb 553975841 Edge      chg-rechg-thr\n293:          0          0          0          0          0          0          0          0  pmic_arb 553910305 Edge      chg-p2f-thr\n294:          0          0          0          0          0          0          0          0  pmic_arb 554893350 Edge      usbid-change\n295:          0          0          0          0          0          0          0          0  pmic_arb 554762278 Edge      otg-oc\n296:          0          0          0          0          0          0          0          0  pmic_arb 554696742 Edge      otg-fail\n297:          0          0          0          0          0          0          0          0  pmic_arb 555745298 Edge      batt-hot\n298:          0          0          0          0          0          0          0          0  pmic_arb 555810834 Edge      batt-warm\n299:          0          0          0          0          0          0          0          0  pmic_arb 555941906 Edge      batt-cool\n300:          0          0          0          0          0          0          0          0  pmic_arb 555876370 Edge      batt-cold\n301:          0          0          0          0          0          0          0          0  pmic_arb 556138514 Edge      batt-missing\n302:          0          0          0          0          0          0          0          0  pmic_arb 556072978 Edge      batt-low\n303:          0          0          0          0          0          0          0          0  pmic_arb 556793873 Edge      usbin-uv\n304:          0          0          0          0          0          0          0          0  pmic_arb 556859409 Edge      usbin-ov\n305:          0          0          0          0          0          0          0          0  pmic_arb 556924945 Edge      usbin-src-det\n306:          0          0          0          0          0          0          0          0  pmic_arb 557121553 Edge      aicl-done\n307:          0          0          0          0          0          0          0          0  pmic_arb 557842448 Edge      dcin-uv\n308:          0          0          0          0          0          0          0          0  pmic_arb 559939599 Edge      power-ok\n309:          0          0          0          0          0          0          0          0  pmic_arb 560005135 Edge      temp-shutdown\n310:          0          0          0          0          0          0          0          0  pmic_arb 560070671 Edge      wdog-timeout\n311:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      modem\n312:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n313:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      modem\n314:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      modem\n343:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      adsp\n344:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n345:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      adsp\n346:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      adsp\n375:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      wcnss\n376:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n377:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      wcnss\n378:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      wcnss\n407:          0          0          0          0          0          0          0          0     GIC-0 172 Edge      dwc3\n409:          0          0          0          0          0          0          0          0   msmgpio  85 Edge      volume_up\nIPI0:        49         76         76         76         76         76         75         74       Rescheduling interrupts\nIPI1:         0          6          6          6          6          6          6          6       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI4:       318          4          4          4          4          4          4          4       IRQ work interrupts\nIPI5:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/msm8953/second/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [kworker/0:0]\n    4 root      0:00 [kworker/0:0H]\n    5 root      0:00 [kworker/u16:0]\n    6 root      0:00 [ksoftirqd/0]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [lru-add-drain]\n   15 root      0:00 [cpuhp/0]\n   16 root      0:00 [cpuhp/1]\n   17 root      0:00 [migration/1]\n   18 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0H]\n   21 root      0:00 [rcuop/1]\n   22 root      0:00 [rcuos/1]\n   23 root      0:00 [rcuob/1]\n   24 root      0:00 [cpuhp/2]\n   25 root      0:00 [migration/2]\n   26 root      0:00 [ksoftirqd/2]\n   27 root      0:00 [kworker/2:0]\n   28 root      0:00 [kworker/2:0H]\n   29 root      0:00 [rcuop/2]\n   30 root      0:00 [rcuos/2]\n   31 root      0:00 [rcuob/2]\n   32 root      0:00 [cpuhp/3]\n   33 root      0:00 [migration/3]\n   34 root      0:00 [ksoftirqd/3]\n   35 root      0:00 [kworker/3:0]\n   36 root      0:00 [kworker/3:0H]\n   37 root      0:00 [rcuop/3]\n   38 root      0:00 [rcuos/3]\n   39 root      0:00 [rcuob/3]\n   40 root      0:00 [cpuhp/4]\n   41 root      0:00 [migration/4]\n   42 root      0:00 [ksoftirqd/4]\n   43 root      0:00 [kworker/4:0]\n   44 root      0:00 [kworker/4:0H]\n   45 root      0:00 [rcuop/4]\n   46 root      0:00 [rcuos/4]\n   47 root      0:00 [rcuob/4]\n   48 root      0:00 [cpuhp/5]\n   49 root      0:00 [migration/5]\n   50 root      0:00 [ksoftirqd/5]\n   51 root      0:00 [kworker/5:0]\n   52 root      0:00 [kworker/5:0H]\n   53 root      0:00 [rcuop/5]\n   54 root      0:00 [rcuos/5]\n   55 root      0:00 [rcuob/5]\n   56 root      0:00 [cpuhp/6]\n   57 root      0:00 [migration/6]\n   58 root      0:00 [ksoftirqd/6]\n   59 root      0:00 [kworker/6:0]\n   60 root      0:00 [kworker/6:0H]\n   61 root      0:00 [rcuop/6]\n   62 root      0:00 [rcuos/6]\n   63 root      0:00 [rcuob/6]\n   64 root      0:00 [cpuhp/7]\n   65 root      0:00 [migration/7]\n   66 root      0:00 [ksoftirqd/7]\n   67 root      0:00 [kworker/7:0]\n   68 root      0:00 [kworker/7:0H]\n   69 root      0:00 [rcuop/7]\n   70 root      0:00 [rcuos/7]\n   71 root      0:00 [rcuob/7]\n   72 root      0:00 [kdevtmpfs]\n   73 root      0:00 [netns]\n   74 root      0:00 [kworker/0:1]\n   75 root      0:00 [smd_channel_clo]\n   76 root      0:00 [kworker/u17:0]\n   77 root      0:01 [kworker/u16:1]\n   78 root      0:00 [smsm_cb_wq]\n   79 root      0:00 [msm_watchdog]\n   80 root      0:00 [irq/135-cpr3]\n   81 root      0:00 [oom_reaper]\n   82 root      0:00 [writeback]\n   83 root      0:00 [kcompactd0]\n   84 root      0:00 [crypto]\n   85 root      0:00 [bioset]\n   86 root      0:00 [kblockd]\n   87 root      0:00 [irq/63-tsens-up]\n   88 root      0:00 [irq/64-tsens-cr]\n   89 root      0:00 [edac-poller]\n   90 root      0:00 [system]\n   91 root      0:00 [devfreq_wq]\n   92 root      0:00 [governor_msm_ad]\n   93 root      0:00 [cfg80211]\n   95 root      0:00 [irq/124-qpnp_wl]\n   96 root      0:00 [ipa_power_mgmt]\n   97 root      0:00 [sps_ipa_power_m]\n   98 root      0:00 [ipawq36]\n   99 root      0:00 [iparepwq36]\n  100 root      0:00 [kworker/u17:1]\n  101 root      0:00 [ipawq33]\n  102 root      0:00 [iparepwq33]\n  103 root      0:00 [ipawq34]\n  104 root      0:00 [iparepwq34]\n  105 root      0:00 [ipa_rm_wq]\n  106 root      0:00 [ipa_interrupt_w]\n  107 root      0:00 [ipa_holb_wq]\n  132 root      0:00 [kswapd0]\n  133 root      0:00 [vmstat]\n  134 root      0:00 [ecryptfs-kthrea]\n  135 root      0:00 [cifsiod]\n  136 root      0:00 [cifsoplockd]\n  137 root      0:00 [bioset]\n  171 root      0:00 [rot_workq_0]\n  172 root      0:00 [mdss_dsi_event]\n  173 root      0:00 [mdss_dsi_dba]\n  174 root      0:00 [mdss_display_wa]\n  175 root      0:00 [mem_share_svc]\n  176 root      0:00 [hwrng]\n  178 root      0:00 [diag_real_time_]\n  179 root      0:00 [qmi_hndl0000000]\n  180 root      0:00 [diag_wq]\n  181 root      0:00 [msm_ipc_router]\n  183 root      0:00 [DIAG_USB_diag]\n  184 root      0:00 [diag_cntl_wq]\n  185 root      0:00 [diag_dci_wq]\n  186 root      0:00 [DIAG_SMD_MODEM_]\n  187 root      0:00 [DIAG_SMD_MODEM_]\n  188 root      0:00 [DIAG_SMD_MODEM_]\n  189 root      0:00 [DIAG_SMD_MODEM_]\n  190 root      0:00 [DIAG_SMD_MODEM_]\n  191 root      0:00 [DIAG_SMD_LPASS_]\n  192 root      0:00 [DIAG_SMD_LPASS_]\n  193 root      0:00 [DIAG_SMD_LPASS_]\n  194 root      0:00 [DIAG_SMD_LPASS_]\n  195 root      0:00 [DIAG_SMD_LPASS_]\n  196 root      0:00 [DIAG_SMD_WCNSS_]\n  197 root      0:00 [DIAG_SMD_WCNSS_]\n  198 root      0:00 [DIAG_SMD_WCNSS_]\n  199 root      0:00 [DIAG_SMD_WCNSS_]\n  200 root      0:00 [DIAG_SMD_WCNSS_]\n  201 root      0:00 [DIAG_SMD_SENSOR]\n  202 root      0:00 [DIAG_SMD_SENSOR]\n  203 root      0:00 [DIAG_SMD_SENSOR]\n  204 root      0:00 [DIAG_SMD_SENSOR]\n  205 root      0:00 [DIAG_SMD_SENSOR]\n  206 root      0:00 [DIAG_SMD_CDSP_C]\n  207 root      0:00 [DIAG_SMD_CDSP_D]\n  208 root      0:00 [DIAG_SMD_CDSP_C]\n  209 root      0:00 [DIAG_SMD_CDSP_D]\n  210 root      0:00 [DIAG_SMD_CDSP_D]\n  211 root      0:00 [DIAG_SOCKET_MOD]\n  212 root      0:00 [DIAG_SOCKET_MOD]\n  213 root      0:00 [DIAG_SOCKET_MOD]\n  214 root      0:00 [DIAG_SOCKET_MOD]\n  215 root      0:00 [DIAG_SOCKET_MOD]\n  216 root      0:00 [DIAG_SOCKET_LPA]\n  217 root      0:00 [DIAG_SOCKET_LPA]\n  218 root      0:00 [DIAG_SOCKET_LPA]\n  219 root      0:00 [DIAG_SOCKET_LPA]\n  220 root      0:00 [DIAG_SOCKET_LPA]\n  221 root      0:00 [DIAG_SOCKET_WCN]\n  222 root      0:00 [DIAG_SOCKET_WCN]\n  223 root      0:00 [DIAG_SOCKET_WCN]\n  224 root      0:00 [DIAG_SOCKET_WCN]\n  225 root      0:00 [DIAG_SOCKET_WCN]\n  226 root      0:00 [DIAG_SOCKET_SEN]\n  227 root      0:00 [DIAG_SOCKET_SEN]\n  228 root      0:00 [DIAG_SOCKET_SEN]\n  229 root      0:00 [DIAG_SOCKET_SEN]\n  230 root      0:00 [DIAG_SOCKET_SEN]\n  231 root      0:00 [DIAG_SOCKET_DIA]\n  232 root      0:00 [DIAG_SOCKET_DIA]\n  233 root      0:00 [DIAG_SOCKET_DIA]\n  234 root      0:00 [DIAG_SOCKET_DIA]\n  235 root      0:00 [DIAG_SOCKET_DIA]\n  236 root      0:00 [DIAG_SOCKET_CDS]\n  237 root      0:00 [DIAG_SOCKET_CDS]\n  238 root      0:00 [DIAG_SOCKET_CDS]\n  239 root      0:00 [DIAG_SOCKET_CDS]\n  240 root      0:00 [DIAG_SOCKET_CDS]\n  241 root      0:00 [DIAG_CNTL_SOCKE]\n  247 root      0:00 [bioset]\n  248 root      0:00 [bioset]\n  249 root      0:00 [bioset]\n  250 root      0:00 [bioset]\n  251 root      0:00 [bioset]\n  252 root      0:00 [bioset]\n  253 root      0:00 [bioset]\n  254 root      0:00 [bioset]\n  255 root      0:00 [bioset]\n  256 root      0:00 [bioset]\n  257 root      0:00 [bioset]\n  258 root      0:00 [bioset]\n  259 root      0:00 [bioset]\n  260 root      0:00 [bioset]\n  261 root      0:00 [bioset]\n  262 root      0:00 [bioset]\n  263 root      0:00 [bioset]\n  264 root      0:00 [bioset]\n  265 root      0:00 [bioset]\n  266 root      0:00 [bioset]\n  267 root      0:00 [bioset]\n  268 root      0:00 [bioset]\n  269 root      0:00 [bioset]\n  270 root      0:00 [bioset]\n  271 root      0:00 [bioset]\n  272 root      0:00 [bioset]\n  273 root      0:00 [bioset]\n  274 root      0:00 [bioset]\n  275 root      0:00 [bioset]\n  276 root      0:00 [bioset]\n  277 root      0:00 [bioset]\n  278 root      0:00 [bioset]\n  279 root      0:00 [bioset]\n  280 root      0:00 [qseecom-unreg-l]\n  281 root      0:00 [qseecom-unload-]\n  282 root      0:00 [qcrypto_seq_res]\n  303 root      0:00 [kgsl-workqueue]\n  304 root      0:00 [kgsl-mementry]\n  305 root      0:00 [kgsl_worker_thr]\n  306 root      0:00 [irq/20-arm-smmu]\n  307 root      0:00 [kgsl-events]\n  308 root      0:00 [kgsl_devfreq_wq]\n  309 root      0:00 [sharedmem_qmi_w]\n  313 root      0:00 [qmi_hndl0000000]\n  314 root      0:00 [uether]\n  315 root      0:00 [ft5435_wq]\n  316 root      0:00 [ft5435_wq_cover]\n  317 root      0:00 [irq/278-ft5435_]\n  318 root      0:00 [fts_resume_wq]\n  321 root      0:00 [msm_vidc_worker]\n  322 root      0:00 [pm_workerq_venu]\n  323 root      0:00 [irq/45-arm-smmu]\n  324 root      0:00 [irq/28-arm-smmu]\n  325 root      0:00 [irq/29-arm-smmu]\n  326 root      0:00 [irq/27-arm-smmu]\n  327 root      0:00 [msm_cci_wq]\n  328 root      0:00 [msm_cci_wq]\n  329 root      0:00 [msm_cpp_workque]\n  330 root      0:00 [irq/284-soft-co]\n  331 root      0:00 [irq/285-soft-ho]\n  332 root      0:00 [irq/286-batt-mi]\n  333 root      0:00 [irq/289-chg-err]\n  334 root      0:00 [irq/290-chg-tap]\n  335 root      0:00 [irq/291-chg-tcc]\n  336 root      0:00 [irq/292-chg-rec]\n  337 root      0:00 [irq/293-chg-p2f]\n  338 root      0:00 [irq/294-usbid-c]\n  339 root      0:00 [irq/295-otg-oc]\n  340 root      0:00 [irq/296-otg-fai]\n  341 root      0:00 [irq/297-batt-ho]\n  342 root      0:00 [irq/298-batt-wa]\n  343 root      0:00 [irq/299-batt-co]\n  344 root      0:00 [irq/300-batt-co]\n  345 root      0:00 [irq/301-batt-mi]\n  346 root      0:00 [irq/302-batt-lo]\n  347 root      0:00 [irq/303-usbin-u]\n  348 root      0:00 [irq/304-usbin-o]\n  349 root      0:00 [irq/305-usbin-s]\n  350 root      0:00 [irq/306-aicl-do]\n  351 root      0:00 [kworker/u16:2]\n  352 root      0:00 [irq/307-dcin-uv]\n  353 root      0:00 [irq/308-power-o]\n  354 root      0:00 [irq/309-temp-sh]\n  355 root      0:00 [irq/310-wdog-ti]\n  356 root      0:00 [kworker/u16:3]\n  357 root      0:00 [qmi_tmd_wq]\n  358 root      0:00 [qmi_svc_event_w]\n  359 root      0:00 [dm_bufio_cache]\n  360 root      0:00 [irq/126-haptics]\n  361 root      0:00 [mmc_clk_gate/mm]\n  362 root      0:00 [irq/125-haptics]\n  363 root      0:00 [irq/16-7824900.]\n  364 root      0:00 [irq/15-mmc0]\n  365 root      0:00 [bioset]\n  366 root      0:00 [sdhci_msm_pm_qo]\n  367 root      0:00 [mmc-cmdqd/0]\n  368 root      0:00 [bioset]\n  369 root      0:00 [mmcqd/0rpmb]\n  370 root      0:00 [mmc_clk_gate/mm]\n  371 root      0:00 [irq/78-7864900.]\n  372 root      0:00 [irq/77-mmc1]\n  373 root      0:00 [irq/79-7864900.]\n  374 root      0:00 [irq/17-spdm_bw_]\n  375 root      0:00 [apr_driver]\n  376 root      0:00 [ipv6_addrconf]\n  378 root      0:00 [irq/345-adsp]\n  379 root      0:00 [sysmon_wq]\n  380 root      0:00 [irq/377-wcnss]\n  381 root      0:00 [irq/313-modem]\n  382 root      0:00 [irq/127-hs_phy_]\n  383 root      0:00 [irq/129-pwr_eve]\n  384 root      0:00 [irq/128-ss_phy_]\n  385 root      0:00 [usb_bam_wq]\n  390 root      0:00 [rq_stats]\n  391 root      0:00 [msm_perf:events]\n  392 root      0:00 [irq/40-arm-smmu]\n  394 root      0:00 [rc0]\n  395 root      0:00 [ipa_A7_svc]\n  396 root      0:00 [qmi_hndl0000000]\n  397 root      0:00 [clnt_req]\n  398 root      0:00 [clnt_resp]\n  399 root      0:00 [clnt_req]\n  408 root      0:00 [kworker/1:1]\n  409 root      0:00 [kworker/1:2]\n  410 root      0:00 [kworker/2:1]\n  411 root      0:00 [kworker/3:1]\n  412 root      0:00 [kworker/4:1]\n  413 root      0:00 [kworker/5:1]\n  414 root      0:00 [kworker/6:1]\n  415 root      0:00 [kworker/7:1]\n  416 root      0:00 [kworker/0:1H]\n  427 root      0:00 [kworker/u16:4]\n  428 root      0:00 [kworker/0:2]\n  441 root      0:00 [kworker/1:0]\n  485 root      0:00 ps -A\n"
  },
  {
    "path": "results/msm8953/second/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,652800,2119.739866,3.24715053002451,56.61576675689745,6.677842507578269,37.43724110239056,117.950226414\r\n1,1036800,3366.867332,3.247364324845679,90.55644494416215,6.724911663774598,37.17520950448865,74.262098826\r\n1,1401600,4550.915644,3.246943239155251,165.6878750690926,9.102813176923151,27.46403723123566,54.939525135\r\n1,1689600,5486.546987,3.2472460860558714,233.95569863360004,10.66174387064292,23.448321684820648,45.571635711\r\n1,1804800,5860.977611,3.2474388358820923,265.93824640850005,11.344816455783114,22.036495784165854,42.659589619\r\n1,1958400,6359.866697,3.2474809523080066,325.2137877816923,12.785672013055386,19.553137273091806,39.314667746\r\n1,2016000,6546.902006,3.2474712331349207,379.5187384408421,14.494278469425666,17.248185242704682,38.191206392\r\n"
  },
  {
    "path": "results/msm8953/second/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 555.3939194250852, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [829.0631590290001, 829.0631590290001, 827.23951098, 827.779194124, 827.779194124, 832.281200637, 827.611660688, 827.611660688, 828.626923061, 829.712956704, 829.712956704, 830.218534305, 834.175212234, 834.175212234, 830.084129955, 828.2913907590001, 828.2913907590001, 831.708463595, 832.21364645, 832.21364645, 835.5959717439999, 830.49230568, 830.49230568, 829.81510092, 829.2089578169998, 829.2089578169998, 830.93001936, 831.4388753420001, 831.4388753420001], \"power_mean\": 830.2232611107241, \"energy_millijoules\": 4151.116305553621, \"energy_joules\": 4.151116305553621}, \"cpus\": {\"1\": {\"freqs\": {\"652800\": {\"active\": {\"elapsed_sec\": 117.950226414, \"elapsed_ns\": 117950226414, \"power_samples\": [442.992971484, 52.86333736999984, 52.86333736999984, 52.86333736999984, 56.30977820999999, 56.30977820999999, 56.30977820999999, 52.86333736999984, 52.86333736999984, 52.86333736999984, 56.810006875, 56.810006875, 56.810006875, 55.66254045000005, 55.66254045000005, 55.66254045000005, 55.66254045000005, 55.05480585200007, 55.05480585200007, 55.05480585200007, 51.00123660199995, 51.00123660199995, 51.00123660199995, 56.16629646900003, 56.16629646900003, 56.16629646900003, 50.354511090000074, 50.354511090000074, 50.354511090000074, 53.72867546899988, 53.72867546899988, 53.72867546899988, 53.153201311999965, 53.153201311999965, 53.153201311999965, 52.577727154999934, 52.577727154999934, 52.577727154999934, 53.11738890799995, 53.11738890799995, 53.11738890799995, 49.06510102000004, 49.06510102000004, 49.06510102000004, 55.95142610400001, 55.95142610400001, 55.95142610400001, 53.081810571999995, 53.081810571999995, 53.081810571999995, 49.02945202000001, 49.02945202000001, 49.02945202000001, 52.43503900500002, 52.43503900500002, 52.43503900500002, 54.73280165400013, 54.73280165400013, 54.73280165400013, 54.73280165400013, 54.73280165400013, 54.73280165400013, 50.10534135, 50.10534135, 50.10534135, 56.990827835999994, 56.990827835999994, 56.990827835999994, 50.10534135, 50.10534135, 50.10534135, 55.268516087999956, 55.268516087999956, 55.268516087999956, 52.32790593499999, 52.32790593499999, 52.32790593499999, 54.625388746, 54.625388746, 54.625388746, 52.90321668800004, 52.90321668800004, 52.90321668800004, 54.55385831600017, 54.55385831600017, 54.55385831600017, 53.407090036, 53.407090036, 53.407090036, 54.55385831600017, 54.55385831600017, 54.55385831600017, 52.83182594800007, 52.83182594800007, 52.83182594800007, 54.48232788600012, 54.48232788600012, 54.48232788600012, 51.613759953, 51.613759953, 51.613759953, 53.335652631000016, 53.335652631000016, 53.335652631000016, 55.629003141, 55.629003141, 55.629003141, 48.74519201999999, 48.74519201999999, 48.74519201999999, 48.74519201999999, 52.11363979500004, 52.11363979500004, 52.11363979500004, 53.263981005000005, 53.263981005000005, 53.263981005000005], \"power_mean\": 56.61576675689745, \"energy_millijoules\": 6677.842507578269, \"energy_joules\": 6.677842507578269, \"coremark_score\": 2119.739866, \"coremarks_per_mhz\": 3.24715053002451, \"ulpmark_cm_score\": 37.43724110239056}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [826.773993508, 826.773993508, 826.773993508, 1270.232482464], \"power_mean\": 937.638615747, \"energy_millijoules\": 4688.193078735, \"energy_joules\": 4.688193078735}}, \"1036800\": {\"active\": {\"elapsed_sec\": 74.262098826, \"elapsed_ns\": 74262098826, \"power_samples\": [9.533764719000033, 9.533764719000033, 9.533764719000033, 92.93126342400001, 92.93126342400001, 92.93126342400001, 96.86904111000001, 96.86904111000001, 96.86904111000001, 97.44010465400004, 97.44010465400004, 97.44010465400004, 94.00245239899994, 94.00245239899994, 94.00245239899994, 91.706927232, 91.706927232, 91.706927232, 92.85656831400001, 92.85656831400001, 92.85656831400001, 93.92741905699995, 93.92741905699995, 93.92741905699995, 91.02390833599998, 91.02390833599998, 91.02390833599998, 98.5143387679999, 98.5143387679999, 98.5143387679999, 90.986508404, 90.986508404, 90.986508404, 91.55747907599994, 91.55747907599994, 91.55747907599994, 96.14402638199999, 96.14402638199999, 96.14402638199999, 93.852630922, 93.852630922, 93.852630922, 91.55747907599994, 91.55747907599994, 91.55747907599994, 93.852630922, 93.852630922, 93.852630922, 95.57305571000006, 95.57305571000006, 95.57305571000006, 91.48287729600008, 91.48287729600008, 91.48287729600008, 89.76634827900011, 89.76634827900011, 89.76634827900011, 97.13958969199996, 97.13958969199996, 97.13958969199996, 93.70305465199999, 93.70305465199999, 93.70305465199999, 94.27393260400004, 94.27393260400004, 94.27393260400004, 97.13958969199996, 97.13958969199996, 97.13958969199996, 96.56871174000003, 96.56871174000003, 96.56871174000003, 91.98290924399987, 91.98290924399987], \"power_mean\": 90.55644494416215, \"energy_millijoules\": 6724.911663774597, \"energy_joules\": 6.724911663774598, \"coremark_score\": 3366.867332, \"coremarks_per_mhz\": 3.247364324845679, \"ulpmark_cm_score\": 37.17520950448865}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [832.756240407, 832.756240407, 831.609053362, 831.609053362], \"power_mean\": 832.1826468845, \"energy_millijoules\": 4160.9132344225, \"energy_joules\": 4.1609132344225}}, \"1401600\": {\"active\": {\"elapsed_sec\": 54.939525135, \"elapsed_ns\": 54939525135, \"power_samples\": [24.442415945000107, 166.7019820260001, 166.7019820260001, 166.7019820260001, 170.09490290399992, 170.09490290399992, 170.09490290399992, 170.0542345859999, 170.0542345859999, 170.0542345859999, 169.48018455300007, 169.48018455300007, 169.48018455300007, 168.25490530800005, 168.25490530800005, 168.25490530800005, 168.25490530800005, 165.3923917799999, 165.3923917799999, 165.3923917799999, 171.03625498100007, 171.03625498100007, 171.03625498100007, 163.59732594800005, 163.59732594800005, 163.59732594800005, 165.31169335499987, 165.31169335499987, 165.31169335499987, 168.1739741680001, 168.1739741680001, 168.1739741680001, 169.2371120580001, 169.2371120580001, 169.2371120580001, 166.94897399799993, 166.94897399799993, 166.94897399799993, 165.23099492999984, 165.23099492999984, 165.23099492999984, 170.30381463900005, 170.30381463900005, 170.30381463900005, 169.811022096, 169.811022096, 169.811022096, 173.16563002199996, 173.16563002199996, 173.16563002199996, 170.30381463900005, 170.30381463900005, 170.30381463900005, 165.15029650499991], \"power_mean\": 165.6878750690926, \"energy_millijoules\": 9102.813176923151, \"energy_joules\": 9.102813176923151, \"coremark_score\": 4550.915644, \"coremarks_per_mhz\": 3.246943239155251, \"ulpmark_cm_score\": 27.46403723123566}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [854.5497959500001, 854.5497959500001, 854.5497959500001, 851.6819269250001], \"power_mean\": 853.8328286937501, \"energy_millijoules\": 4269.164143468751, \"energy_joules\": 4.269164143468751}}, \"1689600\": {\"active\": {\"elapsed_sec\": 45.571635711, \"elapsed_ns\": 45571635711, \"power_samples\": [29.220553127999892, 29.220553127999892, 214.39010903999997, 214.39010903999997, 214.39010903999997, 213.16208388000018, 213.16208388000018, 213.16208388000018, 216.5956659120002, 216.5956659120002, 216.5956659120002, 213.16208388000018, 213.16208388000018, 213.16208388000018, 214.83633890700003, 214.83633890700003, 214.83633890700003, 213.0774296049999, 213.0774296049999, 213.0774296049999, 652.808245448, 652.808245448, 652.808245448, 211.31838243800007, 211.31838243800007, 211.31838243800007, 211.27598659699993, 211.27598659699993, 211.27598659699993, 209.56322325999986, 209.56322325999986, 209.56322325999986, 210.7063147649999, 210.7063147649999, 210.7063147649999, 214.09335456000008, 214.09335456000008, 214.09335456000008, 210.62184653999998, 210.62184653999998, 210.62184653999998, 212.90784350000013, 212.90784350000013, 212.90784350000013, 214.0086072600002], \"power_mean\": 233.95569863360004, \"energy_millijoules\": 10661.74387064292, \"energy_joules\": 10.66174387064292, \"coremark_score\": 5486.546987, \"coremarks_per_mhz\": 3.2472460860558714, \"ulpmark_cm_score\": 23.448321684820648}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [851.3708174820001, 851.910992856, 851.910992856, 851.910992856], \"power_mean\": 851.7759490125001, \"energy_millijoules\": 4258.879745062501, \"energy_joules\": 4.258879745062501}}, \"1804800\": {\"active\": {\"elapsed_sec\": 42.659589619, \"elapsed_ns\": 42659589619, \"power_samples\": [37.46895318300005, 37.46895318300005, 279.4389992719998, 279.4389992719998, 279.4389992719998, 280.0081377360002, 280.0081377360002, 280.0081377360002, 280.0081377360002, 277.724095216, 277.724095216, 277.724095216, 281.10486824200007, 281.10486824200007, 281.10486824200007, 266.86927674799995, 266.86927674799995, 266.86927674799995, 269.15331926800013, 269.15331926800013, 269.15331926800013, 269.10851872600006, 269.10851872600006, 269.10851872600006, 275.3912510880002, 275.3912510880002, 275.3912510880002, 285.977256508, 285.977256508, 285.977256508, 270.161092026, 270.161092026, 270.161092026, 281.9757072919999, 281.9757072919999, 281.9757072919999, 284.8318177240001, 284.8318177240001, 284.8318177240001, 283.07576183900005, 283.07576183900005, 283.07576183900005], \"power_mean\": 265.93824640850005, \"energy_millijoules\": 11344.816455783113, \"energy_joules\": 11.344816455783114, \"coremark_score\": 5860.977611, \"coremarks_per_mhz\": 3.2474388358820923, \"ulpmark_cm_score\": 22.036495784165854}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [858.4067838249999, 864.137632571, 864.137632571, 864.137632571], \"power_mean\": 862.7049203845, \"energy_millijoules\": 4313.524601922501, \"energy_joules\": 4.3135246019225}}, \"1958400\": {\"active\": {\"elapsed_sec\": 39.314667746, \"elapsed_ns\": 39314667746, \"power_samples\": [45.139767570000004, 45.139767570000004, 45.139767570000004, 349.5102124260002, 349.5102124260002, 349.5102124260002, 349.5102124260002, 349.5102124260002, 349.5102124260002, 346.5608167539999, 346.5608167539999, 346.5608167539999, 345.4201917839998, 345.4201917839998, 345.4201917839998, 352.7398815209999, 352.7398815209999, 352.7398815209999, 348.17775374100006, 348.17775374100006, 348.17775374100006, 350.4109469030002, 350.4109469030002, 350.4109469030002, 346.417377707, 346.417377707, 346.417377707, 349.22232231600015, 349.22232231600015, 349.22232231600015, 344.6568274919998, 344.6568274919998, 344.6568274919998, 350.83874720799986, 350.83874720799986, 350.83874720799986, 349.1741833140002, 349.1741833140002, 349.1741833140002], \"power_mean\": 325.2137877816923, \"energy_millijoules\": 12785.672013055386, \"energy_joules\": 12.785672013055386, \"coremark_score\": 6359.866697, \"coremarks_per_mhz\": 3.2474809523080066, \"ulpmark_cm_score\": 19.553137273091806}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [873.48862944, 873.48862944, 873.524231775, 873.524231775], \"power_mean\": 873.5064306075, \"energy_millijoules\": 4367.5321530374995, \"energy_joules\": 4.3675321530375}}, \"2016000\": {\"active\": {\"elapsed_sec\": 38.191206392, \"elapsed_ns\": 38191206392, \"power_samples\": [376.21470225400026, 376.21470225400026, 376.21470225400026, 376.68836061799993, 376.68836061799993, 376.68836061799993, 377.7790044600001, 377.7790044600001, 377.7790044600001, 376.59011676299997, 376.59011676299997, 376.59011676299997, 377.15818833899993, 377.15818833899993, 377.15818833899993, 377.15818833899993, 383.38357374, 383.38357374, 383.38357374, 385.5642529800002, 385.5642529800002, 385.5642529800002, 384.42451220500016, 384.42451220500016, 384.42451220500016, 378.7220714749999, 378.7220714749999, 378.7220714749999, 379.81271229799995, 379.81271229799995, 379.81271229799995, 378.1013023239998, 378.1013023239998, 378.1013023239998, 379.76328932, 379.76328932, 379.76328932, 381.94761208499995], \"power_mean\": 379.5187384408421, \"energy_millijoules\": 14494.278469425666, \"energy_joules\": 14.494278469425666, \"coremark_score\": 6546.902006, \"coremarks_per_mhz\": 3.2474712331349207, \"ulpmark_cm_score\": 17.248185242704682}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [874.349276, 874.349276, 876.70959597, 876.70959597], \"power_mean\": 875.529435985, \"energy_millijoules\": 4377.647179924999, \"energy_joules\": 4.377647179924999}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/msm8953/second/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 827 mW\n\n\n===== CPU 1 =====\nFrequencies: 652 1036 1401 1689 1804 1958 2016\n\n 652:  2120     3.2 C/MHz     57 mW    6.7 J   37.4 I/mJ   118.0 s\n1036:  3367     3.2 C/MHz     91 mW    6.7 J   37.2 I/mJ    74.3 s\n1401:  4551     3.2 C/MHz    166 mW    9.1 J   27.5 I/mJ    54.9 s\n1689:  5487     3.2 C/MHz    234 mW   10.7 J   23.4 I/mJ    45.6 s\n1804:  5861     3.2 C/MHz    266 mW   11.3 J   22.0 I/mJ    42.7 s\n1958:  6360     3.2 C/MHz    325 mW   12.8 J   19.6 I/mJ    39.3 s\n2016:  6547     3.2 C/MHz    380 mW   14.5 J   17.2 I/mJ    38.2 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/msm8953/second/uptime.txt",
    "content": " 22:08:54 up 9 min,  load average: 3.89, 3.25, 1.73\n"
  },
  {
    "path": "results/msm8953/second/versions.txt",
    "content": "Kernel: Linux version 4.9.249~zLOS/f550b71b5277 (NATO66613@KREMLIN) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project 52586c46b0883600a332fd64731dc5287981f980)) #1 SMP PREEMPT Wed Jan 27 10:05:33 UTC 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/msm8996/main/cmdline.txt",
    "content": "isolcpus=1-3 nohz_full=1-3 loglevel=0 fpsimd.fpsimd_settings=1 app_setting.use_app_setting=1 app_setting.use_32bit_app_setting=1 rcupdate.rcu_expedited=1 kpti=1 androidboot.selinux=permissive androidboot.usbconfigfs=true androidboot.hardware=qcom user_debug=31 msm_rtb.filter=0x237 ehci-hcd.park=3 buildvariant=userdebug rcu_nocbs=0-3 isolcpus=1-3 nohz_full=1-3 loglevel=0 printk.devkmsg=on lge.rev=rev_11 model.name=LG-H850 lge.sim_num=1 lge.bootreason=normal kswitch lge.bootreasoncode=0x77665501 bootcable.type=NO_INIT lge.battid=SW3800_VC0 lge.acc_nt_type=NT_TYPE_EU_GLOBAL androidboot.bl_unlock_complete=true androidboot.dlcomplete=0 lge.lcd=0 lge.lcd.rev=2 androidboot.ddr_size=4294967296 androidboot.ddr_info=0x6 lge.crash_handler=off lge.hreset=off boot_cpus=0-3 androidboot.revision=13 lge.boot.partition=boot lge.signed_image=false androidboot.verifiedbootstate=orange androidboot.veritymode=enforcing androidboot.rpmb_state=1 androidboot.bootdevice=624000.ufshc androidboot.serialno=REDACTED qpnp-power-on.warm_boot=1 gpt androidboot.authorized_kernel=true lge.signed_image=true androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_lgd_lg4946_1440p_mipi_cmd:1:qcom,mdss_dsi_lgd_lg4946_1440p_mipi_cmd:cfg:split_dsi\n"
  },
  {
    "path": "results/msm8996/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 2 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x211\nCPU revision\t: 2\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x211\nCPU revision\t: 2\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x205\nCPU revision\t: 2\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x205\nCPU revision\t: 2\n\nRevision\t: 000d\nHardware\t: Qualcomm Technologies, Inc MSM8996\n"
  },
  {
    "path": "results/msm8996/main/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. MSM 8996 v3.x + PMI8996 MTP;\nCompatible: qcom,msm8996-mtp;qcom,msm8996;qcom,mtp;\n"
  },
  {
    "path": "results/msm8996/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Linux version 4.4.186-mk2k-v0.1-FREQBENCH (stendro@github) (gcc version 12.1.0 (GCC) ) #2 SMP PREEMPT Mon Aug 8 16:19:19 CEST 2022\n[    0.000000] Boot CPU: AArch64 Processor [511f2112]\n[    0.000000] Machine: Qualcomm Technologies, Inc. MSM 8996 v3.x + PMI8996 MTP\n[    0.000000] Reserved memory: reserved region for node 'removed_regions@85800000': base 0x0000000085800000, size 40 MiB\n[    0.000000] Reserved memory: reserved region for node 'modem_region@88800000': base 0x0000000088800000, size 97 MiB\n[    0.000000] Reserved memory: reserved region for node 'cont_splash_mem_hdmi@bdd00000': base 0x00000000b1c00000, size 35 MiB\n[    0.000000] Reserved memory: reserved region for node 'ramoops_mem@c0000000': base 0x00000000c0000000, size 1 MiB\n[    0.000000] Reserved memory: reserved region for node 'peripheral_region@8e900000': base 0x000000008e900000, size 45 MiB\n[    0.000000] Reserved memory: reserved region for node 'crash_fb_mem@c0100000': base 0x00000000c0100000, size 12 MiB\n[    0.000000] Reserved memory: allocated memory for 'qseecom_region' node: base 0x00000000fe400000, size 24 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe400000, size 24 MiB\n[    0.000000] Reserved memory: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'adsp_region' node: base 0x00000000fe000000, size 4 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe000000, size 4 MiB\n[    0.000000] Reserved memory: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'linux,cma' node: base 0x00000000fc000000, size 32 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fc000000, size 32 MiB\n[    0.000000] Reserved memory: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'secure_region' node: base 0x00000000f6400000, size 92 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6400000, size 92 MiB\n[    0.000000] Reserved memory: initialized node secure_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085800000, size 40 MiB\n[    0.000000] Reserved memory: initialized node removed_regions@85800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000088800000, size 97 MiB\n[    0.000000] Reserved memory: initialized node modem_region@88800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008e900000, size 45 MiB\n[    0.000000] Reserved memory: initialized node peripheral_region@8e900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000c0000000, size 1 MiB\n[    0.000000] Reserved memory: initialized node ramoops_mem@c0000000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 994752\n[    0.000000]   DMA zone: 7460 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 477440 pages, LIFO batch:31\n[    0.000000]   Normal zone: 8083 pages used for memmap\n[    0.000000]   Normal zone: 517312 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.0 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] PERCPU: Embedded 19 pages/cpu @ffffffc0fe402000 s47128 r0 d30696 u77824\n[    0.000000] pcpu-alloc: s47128 r0 d30696 u77824 alloc=19*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 \n[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 979209\n[    0.000000] Kernel command line: isolcpus=1-3 nohz_full=1-3 loglevel=0 fpsimd.fpsimd_settings=1 app_setting.use_app_setting=1 app_setting.use_32bit_app_setting=1 rcupdate.rcu_expedited=1 kpti=1 androidboot.selinux=permissive androidboot.usbconfigfs=true androidboot.hardware=qcom user_debug=31 msm_rtb.filter=0x237 ehci-hcd.park=3 buildvariant=userdebug rcu_nocbs=0-3 isolcpus=1-3 nohz_full=1-3 loglevel=0 printk.devkmsg=on lge.rev=rev_11 model.name=LG-H850 lge.sim_num=1 lge.bootreason=normal kswitch lge.bootreasoncode=0x77665501 bootcable.type=NO_INIT lge.battid=SW3800_VC0 lge.acc_nt_type=NT_TYPE_EU_GLOBAL androidboot.bl_unlock_complete=true androidboot.dlcomplete=0 lge.lcd=0 lge.lcd.rev=2 androidboot.ddr_size=4294967296 androidboot.ddr_info=0x6 lge.crash_handler=off lge.hreset=off boot_cpus=0-3 androidboot.revision=13 lge.boot.partition=boot lge.signed_image=false androidboot.verifiedbootstate=orange androidboot.veritymode=enforcing androidboot.rpmb_state=1 androidboot.bootdevice=624000.u\n[    0.000000] BOARD: LGE rev_11\n[    0.000000] LGE BOOT REASON: 0x77665501\n[    0.000000] PANEL MAKER ID: 0\n[    0.000000] PANEL REVISION ID: 2\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] software IO TLB: mapped [mem 0xf2400000-0xf6400000] (64MB)\n[    0.000000] Memory: 3595344K/3979008K available (15870K kernel code, 1982K rwdata, 6112K rodata, 2048K init, 4476K bss, 228016K reserved, 155648K cma-reserved)\n[    0.000000] Virtual kernel memory layout:\n                   modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n                   vmalloc : 0xffffff8008000000 - 0xffffffbdbfff0000   (   246 GB)\n                     .init : 0xffffff8009600000 - 0xffffff8009800000   (  2048 KB)\n                     .text : 0xffffff8008080000 - 0xffffff8009000000   ( 15872 KB)\n                   .rodata : 0xffffff8009000000 - 0xffffff8009600000   (  6144 KB)\n                     .data : 0xffffff8009800000 - 0xffffff80099ef808   (  1983 KB)\n                   vmemmap : 0xffffffbdc0000000 - 0xffffffbfc0000000   (     8 GB maximum)\n                             0xffffffbdc0000000 - 0xffffffbdc3f93000   (    63 MB actual)\n                   fixed   : 0xffffffbffe7fd000 - 0xffffffbffec00000   (  4108 KB)\n                   PCI I/O : 0xffffffbffee00000 - 0xffffffbfffe00000   (    16 MB)\n                   memory  : 0xffffffc000000000 - 0xffffffc0fe4c0000   (  4068 MB)\n[    0.000000] SLUB: HWalign=128, Order=0-3, MinObjects=0, CPUs=4, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] NR_IRQS:64 nr_irqs:64 0\n[    0.000000] mpm_init_irq_domain(): Cannot find irq controller for qcom,gpio-parent\n[    0.000000] MPM 1 irq mapping errored -517\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-3.\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-3.\n[    0.000000] Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000019] clocksource: Switched to clocksource arch_sys_counter\n[    0.000115] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.000127] pid_max: default: 32768 minimum: 301\n[    0.000192] Security Framework initialized\n[    0.000202] SELinux:  Initializing.\n[    0.000240] SELinux:  Starting in permissive mode\n[    0.000279] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.000288] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001203] sched-energy: Sched-energy-costs installed from DT\n[    0.001252] ASID allocator initialised with 65536 entries\n[    0.015090] Configuring XPU violations to be fatal errors\n[    0.015984] MSM Memory Dump base table set up\n[    0.016002] MSM Memory Dump apps data table set up\n[    0.019692] clock-cpu-8996: configuring clocks for the perf cluster\n[    0.019869] cpu_clock_8996_early_init: finished CPU clock configuration\n[    0.024532] CPU1: Booted secondary processor [511f2112]\n[    0.029118] CPU2: Booted secondary processor [511f2052]\n[    0.033350] CPU3: Booted secondary processor [511f2052]\n[    0.033474] Brought up 4 CPUs\n[    0.033496] SMP: Total of 4 processors activated.\n[    0.033507] CPU features: detected feature: GIC system register CPU interface\n[    0.033515] CPU features: detected feature: 32-bit EL0 Support\n[    0.033525] CPU: All CPU(s) started at EL1\n[    0.136817] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.136846] futex hash table entries: 1024 (order: 4, 65536 bytes)\n[    0.144747] pinctrl core: initialized pinctrl subsystem\n[    0.145798] NET: Registered protocol family 16\n[    0.146457] schedtune: init normalization constants...\n[    0.146471] schedtune: CLUSTER[0]        min_pwr:     0 max_pwr:    52\n[    0.146482] schedtune: CPU[0]            min_pwr:     0 max_pwr:   925\n[    0.146490] schedtune: SYSTEM            min_pwr:     0 max_pwr:   977\n[    0.146499] schedtune: using normalization constants mul: 206615623 sh1: 1 sh2: 9\n[    0.146505] schedtune: verify normalization constants...\n[    0.146513] schedtune: max_pwr/2^0:  977 => norm_pwr:  1024\n[    0.146520] schedtune: max_pwr/2^1:  488 => norm_pwr:   511\n[    0.146527] schedtune: max_pwr/2^2:  244 => norm_pwr:   255\n[    0.146534] schedtune: max_pwr/2^3:  122 => norm_pwr:   127\n[    0.146541] schedtune: max_pwr/2^4:   61 => norm_pwr:    63\n[    0.146548] schedtune: max_pwr/2^5:   30 => norm_pwr:    31\n[    0.146556] schedtune: configured to support 5 boost groups\n[    0.147339] cpuidle: using governor qcom\n[    0.147555] vdso: 2 pages (1 code @ ffffff8009006000, 1 data @ ffffff8009804000)\n[    0.147599] hw-breakpoint: found 8 breakpoint and 4 watchpoint registers.\n[    0.148683] DMA: preallocated 2048 KiB pool for atomic allocations\n[    0.148816] msm_smem_init: unable to create logging context\n[    0.148861] msm_smd_init: unable to create SMD logging context\n[    0.148869] msm_smd_init: unable to create SMSM logging context\n[    0.156851] __of_mpm_init(): MPM driver mapping exists\n[    0.173448] spmi spmi-0: PMIC arbiter version v2 (0x20010000)\n[    0.182942] qcom,msm-apm 99e0000.apm: overriding clock sources across APM switch\n[    0.185564] unable to find DT imem DLOAD mode node\n[    0.187133] unable to find DT imem EDLOAD mode node\n[    0.189725] sps:sps is ready.\n[    0.196952] cpu-clock-8996 6400000.qcom,cpu-clock-8996: resources init failed\n[    0.314278] smd_channel_probe_now: allocation table not initialized\n[    0.314985] smd_channel_probe_now: allocation table not initialized\n[    0.315684] smd_channel_probe_now: allocation table not initialized\n[    0.316361] smd_channel_probe_now: allocation table not initialized\n[    0.317002] msm_watchdog 9830000.qcom,wdt: wdog absent resource not present\n[    0.317209] msm_watchdog 9830000.qcom,wdt: No need to allocate memory for scandumps\n[    0.317512] msm_watchdog 9830000.qcom,wdt: MSM Watchdog Initialized\n[    0.318695] msm_rpm_dev_probe: APSS-RPM communication over GLINK\n[    0.332108] platform 9300000.qcom,lpass: assigned reserved memory node peripheral_region@8e900000\n[    0.332853] platform ce0000.qcom,venus: assigned reserved memory node peripheral_region@8e900000\n[    0.333861] platform 1c00000.qcom,ssc: assigned reserved memory node peripheral_region@8e900000\n[    0.334993] platform 2080000.qcom,mss: assigned reserved memory node modem_region@88800000\n[    0.341097] msm_thermal:vdd_restriction_reg_init Defer regulator vdd-dig probe\n[    0.341116] msm_thermal:probe_vdd_rstr Err regulator init. err:-517. KTM continues.\n[    0.341132] msm-thermal 70000.qcom,msm-thermal: probe_vdd_rstr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,max-freq-level. err=-517. KTM continues\n[    0.350391] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.360118] smd_channel_probe_now: allocation table not initialized\n[    0.360748] msm_rpm_trans_notify_state: glink config params: transport=(null), edge=rpm, name=rpm_requests\n[    0.366994] kryo_regulator_probe: kryo0: default LDO functional volt=754021 uV, LDO retention volt=521789 uV, Vref func=325285 + 4466*(val), cluster-num=0\n[    0.367838] kryo_regulator_probe: kryo1: default LDO functional volt=754021 uV, LDO retention volt=521789 uV, Vref func=325285 + 4466*(val), cluster-num=1\n[    0.379457] platform soc:qcom,kgsl-hyp: assigned reserved memory node peripheral_region@8e900000\n[    0.382526] msm_mpm_dev_probe(): Cannot get clk resource for XO: -517\n[    0.419196] platform soc:ramoops: assigned reserved memory node ramoops_mem@c0000000\n[    0.419786] persistent_ram: found existing invalid buffer, size 143800, start 143800\n[    0.420310] console [pstore0] enabled\n[    0.420456] pstore: Registered ramoops as persistent store backend\n[    0.420466] ramoops: attached 0x100000@0xc0000000, ecc: 0/0\n[    0.424899] spm_regulator_probe: name=pm8994_s11, range=LV, voltage=905000 uV, mode=AUTO, step rate=2400 uV/us\n[    0.425680] cpu-clock-8996 6400000.qcom,cpu-clock-8996: resources init failed\n[    0.457191] pmi8994_boost_5v: regulator get failed, ret=-517\n[    0.457973] pmi8994_boost_pin_ctrl: regulator get failed, ret=-517\n[    0.460827] msm_thermal:vdd_restriction_reg_init Defer regulator vdd-gfx probe\n[    0.460847] msm_thermal:probe_vdd_rstr Err regulator init. err:-517. KTM continues.\n[    0.460862] msm-thermal 70000.qcom,msm-thermal: probe_vdd_rstr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,max-freq-level. err=-517. KTM continues\n[    0.462085] msm_mpm_dev_probe(): Cannot get clk resource for XO: -517\n[    0.462959] cpu-clock-8996 6400000.qcom,cpu-clock-8996: resources init failed\n[    0.484137] qcom,gcc-8996 300000.qcom,gcc: Registered GCC clocks.\n[    0.486328] vfe0_clk_src: set OPP pair(75000000 Hz: 3 uV) on a10000.qcom,vfe0\n[    0.486571] vfe0_clk_src: set OPP pair(320000000 Hz: 5 uV) on a10000.qcom,vfe0\n[    0.486727] vfe0_clk_src: set OPP pair(600000000 Hz: 7 uV) on a10000.qcom,vfe0\n[    0.487620] vfe1_clk_src: set OPP pair(75000000 Hz: 3 uV) on a14000.qcom,vfe1\n[    0.487856] vfe1_clk_src: set OPP pair(320000000 Hz: 5 uV) on a14000.qcom,vfe1\n[    0.488015] vfe1_clk_src: set OPP pair(600000000 Hz: 7 uV) on a14000.qcom,vfe1\n[    0.488932] cpp_clk_src: set OPP pair(100000000 Hz: 3 uV) on a04000.qcom,cpp\n[    0.489164] cpp_clk_src: set OPP pair(480000000 Hz: 5 uV) on a04000.qcom,cpp\n[    0.489255] cpp_clk_src: set OPP pair(640000000 Hz: 7 uV) on a04000.qcom,cpp\n[    0.502950] qcom,mmsscc-8996 8c0000.qcom,mmsscc: Registered MMSS clocks.\n[    0.507022] msm_thermal:vdd_restriction_reg_init Defer regulator vdd-gfx probe\n[    0.507040] msm_thermal:probe_vdd_rstr Err regulator init. err:-517. KTM continues.\n[    0.507055] msm-thermal 70000.qcom,msm-thermal: probe_vdd_rstr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,max-freq-level. err=-517. KTM continues\n[    0.508420] cpr3_msm8996_hmss_read_fuse_data: apc0_pwrcl_corner: speed bin = 0\n[    0.508436] cpr3_msm8996_hmss_read_fuse_data: apc0_pwrcl_corner: CPR fusing revision = 6\n[    0.508445] cpr3_msm8996_hmss_read_fuse_data: apc0_pwrcl_corner: using redundant fuses = N\n[    0.508455] cpr3_msm8996_hmss_read_fuse_data: apc0_pwrcl_corner: CPR limitation = none\n[    0.508464] cpr3_msm8996_hmss_read_fuse_data: apc0_pwrcl_corner: CPR partial binning limitation = none\n[    0.508474] cpr3_msm8996_hmss_read_fuse_data: apc0_pwrcl_corner: Retention voltage fuses: VDD_MX = 4, VDD_APCC = 4\n[    0.508942] cpr3_hmss_kvreg_init: apc0_pwrcl_corner: LDO min headroom=150000 uV, LDO max headroom=470000 uV, LDO adj=0 uV, LDO mode=allowed, LDO retention=490000 uV\n[    0.509337] cpr3_msm8996_hmss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused MinSVS: open-loop= 565000 uV\n[    0.509349] cpr3_msm8996_hmss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused    SVS: open-loop= 635000 uV\n[    0.509358] cpr3_msm8996_hmss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused    NOM: open-loop= 755000 uV\n[    0.509367] cpr3_msm8996_hmss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused  TURBO: open-loop= 890000 uV\n[    0.509501] cpr3_msm8996_hmss_calculate_target_quotients: apc0_pwrcl_corner: fused MinSVS: quot[ 7]= 314\n[    0.509511] cpr3_msm8996_hmss_calculate_target_quotients: apc0_pwrcl_corner: fused    SVS: quot[ 7]= 438, quot_offset[ 7]= 120\n[    0.509520] cpr3_msm8996_hmss_calculate_target_quotients: apc0_pwrcl_corner: fused    NOM: quot[ 7]= 691, quot_offset[ 7]= 250\n[    0.509529] cpr3_msm8996_hmss_calculate_target_quotients: apc0_pwrcl_corner: fused  TURBO: quot[ 7]= 953, quot_offset[ 7]= 260\n[    0.509727] cpr3_msm8996_hmss_read_fuse_data: apc0_cbf_corner: speed bin = 0\n[    0.509735] cpr3_msm8996_hmss_read_fuse_data: apc0_cbf_corner: CPR fusing revision = 6\n[    0.509744] cpr3_msm8996_hmss_read_fuse_data: apc0_cbf_corner: using redundant fuses = N\n[    0.509753] cpr3_msm8996_hmss_read_fuse_data: apc0_cbf_corner: CPR limitation = none\n[    0.509762] cpr3_msm8996_hmss_read_fuse_data: apc0_cbf_corner: CPR partial binning limitation = none\n[    0.509772] cpr3_msm8996_hmss_read_fuse_data: apc0_cbf_corner: Retention voltage fuses: VDD_MX = 4, VDD_APCC = 4\n[    0.509948] cpr3_msm8996_hmss_calculate_open_loop_voltages: apc0_cbf_corner: fused MinSVS: open-loop= 565000 uV\n[    0.509956] cpr3_msm8996_hmss_calculate_open_loop_voltages: apc0_cbf_corner: fused    SVS: open-loop= 635000 uV\n[    0.509965] cpr3_msm8996_hmss_calculate_open_loop_voltages: apc0_cbf_corner: fused    NOM: open-loop= 755000 uV\n[    0.509972] cpr3_msm8996_hmss_calculate_open_loop_voltages: apc0_cbf_corner: fused  TURBO: open-loop= 890000 uV\n[    0.510203] cpr3_msm8996_hmss_calculate_target_quotients: apc0_cbf_corner: fused MinSVS: quot[ 7]= 314\n[    0.510214] cpr3_msm8996_hmss_calculate_target_quotients: apc0_cbf_corner: fused    SVS: quot[ 7]= 438, quot_offset[ 7]= 120\n[    0.510223] cpr3_msm8996_hmss_calculate_target_quotients: apc0_cbf_corner: fused    NOM: quot[ 7]= 691, quot_offset[ 7]= 250\n[    0.510231] cpr3_msm8996_hmss_calculate_target_quotients: apc0_cbf_corner: fused  TURBO: quot[ 7]= 953, quot_offset[ 7]= 260\n[    0.510391] cpr3_msm8996_hmss_read_fuse_data: apc1_corner: speed bin = 0\n[    0.510400] cpr3_msm8996_hmss_read_fuse_data: apc1_corner: CPR fusing revision = 6\n[    0.510408] cpr3_msm8996_hmss_read_fuse_data: apc1_corner: using redundant fuses = N\n[    0.510416] cpr3_msm8996_hmss_read_fuse_data: apc1_corner: CPR limitation = none\n[    0.510425] cpr3_msm8996_hmss_read_fuse_data: apc1_corner: CPR partial binning limitation = none\n[    0.510434] cpr3_msm8996_hmss_read_fuse_data: apc1_corner: Retention voltage fuses: VDD_MX = 4, VDD_APCC = 4\n[    0.511073] cpr3_hmss_kvreg_init: apc1_corner: LDO min headroom=150000 uV, LDO max headroom=470000 uV, LDO adj=0 uV, LDO mode=allowed, LDO retention=490000 uV\n[    0.511517] cpr3_msm8996_hmss_calculate_open_loop_voltages: apc1_corner: fused MinSVS: open-loop= 585000 uV\n[    0.511529] cpr3_msm8996_hmss_calculate_open_loop_voltages: apc1_corner: fused    SVS: open-loop= 635000 uV\n[    0.511537] cpr3_msm8996_hmss_calculate_open_loop_voltages: apc1_corner: fused    NOM: open-loop= 695000 uV\n[    0.511545] cpr3_msm8996_hmss_calculate_open_loop_voltages: apc1_corner: fused  TURBO: open-loop= 930000 uV\n[    0.511729] cpr3_msm8996_hmss_calculate_target_quotients: apc1_corner: fused MinSVS: quot[ 7]= 351\n[    0.511738] cpr3_msm8996_hmss_calculate_target_quotients: apc1_corner: fused    SVS: quot[ 7]= 434, quot_offset[ 7]=  80\n[    0.511747] cpr3_msm8996_hmss_calculate_target_quotients: apc1_corner: fused    NOM: quot[ 7]= 559, quot_offset[ 7]= 125\n[    0.511756] cpr3_msm8996_hmss_calculate_target_quotients: apc1_corner: fused  TURBO: quot[ 7]=1019, quot_offset[ 7]= 460\n[    0.512527] cpr3_regulator_init_ctrl: apcc: Default CPR mode = SW closed-loop\n[    0.516986] cpr3_regulator_measure_aging: apcc: average quotient delta=3 (count=10)\n[    0.517017] cpr3_regulator_aging_adjust: apcc: aging measurement successful; aging reference adjustment voltage=937 uV\n[    0.521256] cpr3_msm8996_mmss_read_fuse_data: gfx_corner: CPR fusing revision = 4\n[    0.521273] cpr3_msm8996_mmss_read_fuse_data: gfx_corner: CPR limitation = none\n[    0.521765] cpr3_msm8996_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[0] open-loop= 620000 uV\n[    0.521774] cpr3_msm8996_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[1] open-loop= 675000 uV\n[    0.521783] cpr3_msm8996_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[2] open-loop= 795000 uV\n[    0.521791] cpr3_msm8996_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[3] open-loop= 885000 uV\n[    0.522071] cpr3_regulator_init_ctrl: gfx: Default CPR mode = closed-loop\n[    0.526865] cpu-clock-8996 6400000.qcom,cpu-clock-8996: using perf/pwr/cbf speed bin 0 and pvs_ver 0\n[    0.526889] soc_id = 246\n[    0.526897] qcom,perfcl-speedbin0-v0\n[    0.526916] qcom,pwrcl-speedbin0-v0\n[    0.531330] clock-cpu-8996: set OPP pair (307200000 Hz, 585000 uv) on cpu0\n[    0.532458] clock-cpu-8996: set OPP pair (1593600000 Hz, 875000 uv) on cpu0\n[    0.532559] clock-cpu-8996: set OPP pair (307200000 Hz, 585000 uv) on cpu1\n[    0.533660] clock-cpu-8996: set OPP pair (1593600000 Hz, 875000 uv) on cpu1\n[    0.533769] clock-cpu-8996: set OPP pair (307200000 Hz, 605000 uv) on cpu2\n[    0.535520] clock-cpu-8996: set OPP pair (2150400000 Hz, 925000 uv) on cpu2\n[    0.535638] clock-cpu-8996: set OPP pair (307200000 Hz, 605000 uv) on cpu3\n[    0.537409] clock-cpu-8996: set OPP pair (2150400000 Hz, 925000 uv) on cpu3\n[    0.538041] clock-cpu-8996: set OPP pair (307200000 Hz, 610000 uv) on soc:qcom,m4m\n[    0.539357] clock-cpu-8996: set OPP pair (1593600000 Hz, 865000 uv) on soc:qcom,m4m\n[    0.540644] qcom,gpucc-8996 8c0000.qcom,gpucc: using speed bin 0\n[    0.541719] gfx3d_clk_src_v2: set OPP pair(133000000 Hz: 550000 uV) on b00000.qcom,kgsl-3d0\n[    0.542189] gfx3d_clk_src_v2: set OPP pair(624000000 Hz: 885000 uV) on b00000.qcom,kgsl-3d0\n[    0.545097] qcom,gpucc-8996 8c0000.qcom,gpucc: Registered GPU clocks.\n[    0.547059] msm-thermal 70000.qcom,msm-thermal: probe_vdd_mx:Failed reading node=/soc/qcom,msm-thermal, key=qcom,mx-restriction-temp. KTM continues\n[    0.576635] KPI: Bootloader start count = 31550\n[    0.576650] KPI: Bootloader end count = 239340\n[    0.576658] KPI: Bootloader display count = 51993\n[    0.576666] KPI: Bootloader load kernel count = 2558\n[    0.576676] KPI: Kernel MPM timestamp = 265637\n[    0.576683] KPI: Kernel MPM Clock frequency = 32768\n[    0.576707] socinfo_print: v0.11, id=246, ver=3.1, raw_id=2375, raw_ver=4, hw_plat=8, hw_plat_ver=13\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65545, pmic_die_revision=131072 foundry_id=3 serial_number=963750547 num_pmics=2\n[    0.576728] msm_bus_fabric_init_driver\n[    0.601350] msm-bus-type fab-a0noc: Error: Failed to get regulator bus-gdsc:-517\n[    0.601467] msm-bus-type fab-a0noc: Error: Failed to get regulator bus-a-gdsc:-517\n[    0.602267] msm-bus-type fab-mnoc-ahb: Error: Failed to get regulator bus-gdsc:-517\n[    0.602379] msm-bus-type fab-mnoc-ahb: Error: Failed to get regulator bus-a-gdsc:-517\n[    0.610144] msm-bus-type slv-vmem-cfg: Error: Failed to get regulator node-gdsc:-517\n[    0.611681] msm-bus-type slv-vmem: Error: Failed to get regulator node-gdsc:-517\n[    0.633833] msm-bus-type fab-a0noc: Error: Failed to get regulator aggre0-snoc-axi-no-rate:-517\n[    0.633954] msm-bus-type fab-a0noc: Error: Failed to get regulator aggre0-snoc-axi-no-rate:-517\n[    0.634066] msm-bus-type fab-a0noc: Error: Failed to get regulator aggre0-snoc-axi-no-rate:-517\n[    0.634264] msm-bus-type fab-mnoc: Error: Failed to get regulator mmagic-ahb-no-rate:-517\n[    0.634378] msm-bus-type fab-mnoc: Error: Failed to get regulator mmagic-ahb-no-rate:-517\n[    0.634489] msm-bus-type fab-mnoc: Error: Failed to get regulator mmagic-ahb-no-rate:-517\n[    0.634600] msm-bus-type fab-mnoc: Error: Failed to get regulator mmagic-ahb-no-rate:-517\n[    0.634710] msm-bus-type fab-mnoc: Error: Failed to get regulator mmagic-ahb-no-rate:-517\n[    0.634818] msm-bus-type fab-mnoc: Error: Failed to get regulator mmagic-ahb-no-rate:-517\n[    0.634928] msm-bus-type fab-mnoc: Error: Failed to get regulator mmagic-ahb-no-rate:-517\n[    0.639963] usb_otg_vreg: regulator get failed, ret=-517\n[    0.643507] SCSI subsystem initialized\n[    0.645120] usbcore: registered new interface driver usbfs\n[    0.645180] usbcore: registered new interface driver hub\n[    0.645348] usbcore: registered new device driver usb\n[    0.646119] soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.647445] qcom,qpnp-power-on 400f000.qcom,spmi:qcom,pm8994@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from PON1 (secondary PMIC) and 'warm' boot\n[    0.647474] qcom,qpnp-power-on 400f000.qcom,spmi:qcom,pm8994@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)\n[    0.647819] input: qpnp_pon as /devices/virtual/input/input0\n[    0.648715] qcom,qpnp-power-on 400f000.qcom,spmi:qcom,pmi8994@2:qcom,power-on@800: No PON config. specified\n[    0.648779] qcom,qpnp-power-on 400f000.qcom,spmi:qcom,pmi8994@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (secondary PMIC) and 'warm' boot\n[    0.648800] qcom,qpnp-power-on 400f000.qcom,spmi:qcom,pmi8994@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)\n[    0.650846] i2c-msm-v2 757a000.i2c: probing driver i2c-msm-v2\n[    0.656715] i2c-msm-v2 75b5000.i2c: probing driver i2c-msm-v2\n[    0.662877] i2c-msm-v2 75b6000.i2c: probing driver i2c-msm-v2\n[    0.672084] i2c-msm-v2 7579000.i2c: probing driver i2c-msm-v2\n[    0.677869] media: Linux media interface: v0.10\n[    0.677990] Linux video capture interface: v2.00\n[    0.686580] cpufreq: driver msm up and running\n[    0.689983] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node adsp_region\n[    0.693779] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.697016] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_region\n[    0.700565] ION heap system created\n[    0.701025] ION heap adsp created at 0x00000000fe000000 with size 400000\n[    0.701042] ION heap qsecom created at 0x00000000fe400000 with size 1800000\n[    0.701055] ION heap secure_display created at 0x00000000f6400000 with size 5c00000\n[    0.701070] ION heap secure_heap created\n[    0.705748] PMIC@SID0: PM8994 v2.0 options: 0, 0, 2, 2\n[    0.705984] PMIC@SID2: PMI8996 v1.1 options: 0, 0, 0, 0\n[    0.712227] ipa get_ipa_dts_configuration:4871 : apps shutdown support = Disabled\n[    0.715077] ipa ipa2_uc_state_check:296 uC interface not initialized\n[    0.715104] ipa ipa_sps_irq_control_all:963 EP (2) not allocated.\n[    0.715111] ipa ipa_sps_irq_control_all:963 EP (5) not allocated.\n[    0.719217] sps:BAM 0x0000000000684000 is registered.\n[    0.723469] ipa ipa2_uc_state_check:296 uC interface not initialized\n[    0.723643] sps:BAM 0x0000000000684000 (va:0xffffff800a340000) enabled: ver:0x27, number of pipes:20\n[    0.728779] ipa ipa2_uc_state_check:296 uC interface not initialized\n[    0.733587] ipa ipa2_uc_state_check:296 uC interface not initialized\n[    0.739033] IPA driver initialization was successful.\n[    0.749481] gdsc_venus: supplied by gdsc_mmagic_video\n[    0.753727] gdsc_camss_top: supplied by gdsc_mmagic_camss\n[    0.754939] gdsc_vfe0: supplied by gdsc_camss_top\n[    0.756202] gdsc_vfe1: supplied by gdsc_camss_top\n[    0.757486] gdsc_mdss: supplied by gdsc_mmagic_mdss\n[    0.759524] gdsc_jpeg: supplied by gdsc_camss_top\n[    0.761170] gdsc_cpp: supplied by gdsc_camss_top\n[    0.764562] gdsc_fd: supplied by gdsc_camss_top\n[    0.767052] gdsc_gpu_gx: supplied by gfx_corner\n[    0.771719] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.771751] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.776615] dsi_pll_clock_register_8996: Registered DSI PLL ndx=0 clocks successfully\n[    0.776771] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.776784] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.778403] pll_is_pll_locked_8996: DSI PLL ndx=1 status=0 failed to Lock\n[    0.780691] dsi_pll_clock_register_8996: Registered DSI PLL ndx=1 clocks successfully\n[    0.780833] mdss_pll_probe: MDSS pll label = MDSS HDMI PLL\n[    0.780844] mdss_pll_probe: Unable to get the cell-index rc=-22\n[    0.998580] arm-smmu 1660000.arm,smmu-anoc1: Static smr mask not supported\n[    0.998637] arm-smmu 1660000.arm,smmu-anoc1: Static smr mask not supported\n[    0.998669] arm-smmu 1660000.arm,smmu-anoc1: Static smr mask not supported\n[    0.998700] arm-smmu 1660000.arm,smmu-anoc1: Static smr mask not supported\n[    0.998733] arm-smmu 1660000.arm,smmu-anoc1: Static smr mask not supported\n[    0.998765] arm-smmu 1660000.arm,smmu-anoc1: Static smr mask not supported\n[    0.998797] arm-smmu 1660000.arm,smmu-anoc1: Static smr mask not supported\n[    0.998827] arm-smmu 1660000.arm,smmu-anoc1: Static smr mask not supported\n[    0.998858] arm-smmu 1660000.arm,smmu-anoc1: Static smr mask not supported\n[    0.998889] arm-smmu 1660000.arm,smmu-anoc1: Static smr mask not supported\n[    0.998919] arm-smmu 1660000.arm,smmu-anoc1: Static smr mask not supported\n[    0.998951] arm-smmu 1660000.arm,smmu-anoc1: Static smr mask not supported\n[    0.998982] arm-smmu 1660000.arm,smmu-anoc1: Static smr mask not supported\n[    0.999013] arm-smmu 1660000.arm,smmu-anoc1: found 4 context interrupt(s) but have 3 context banks. assuming 3 context interrupts.\n[    1.005418] iommu: Adding device 600000.qcom,pcie to group 0\n[    1.006363] iommu: Adding device soc:usb_audio_qmi_dev to group 1\n[    1.006673] iommu: Adding device soc:qcom,msm-audio-ion to group 2\n[    1.014759] Advanced Linux Sound Architecture Driver Initialized.\n[    1.015623] Bluetooth: ffffffc0f94ebd28\n[    1.015709] NET: Registered protocol family 31\n[    1.015715] Bluetooth: ffffffc0f94ebd28\n[    1.015727] Bluetooth: ffffffc0f94ebd08\n[    1.015736] Bluetooth: ffffffc0f94ebce8\n[    1.015795] Bluetooth: ffffffc0f94ebce8\n[    1.016410] cfg80211: World regulatory domain updated:\n[    1.016424] cfg80211:  DFS Master region: unset\n[    1.016431] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)\n[    1.016440] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)\n[    1.016445] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)\n[    1.016450] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)\n[    1.016455] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    1.016460] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    1.016465] cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    1.016470] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    1.016475] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)\n[    1.018020] nfc: nfc_init: NFC Core ver 0.1\n[    1.018071] NET: Registered protocol family 39\n[    1.018093] pcie:pcie_init.\n[    1.020618] 600000.qcom,pcie supply vreg-3.3 not found, using dummy regulator\n[    1.028751] msm_pcie_get_resources: PCIe: RC0 can't get tcsr resource.\n[    1.032980] qpnp_ibb_soft_start_ctl_v1: [Display] IBB soft start R is set for PMI8996\n[    1.034329] qpnp_labibb_regulator_probe: LAB/IBB registered successfully, lab_vreg enable=1 ibb_vreg enable=1 swire_control=0\n[    1.034794] clocksource: Switched to clocksource arch_sys_counter\n[    1.087262] NET: Registered protocol family 2\n[    1.088167] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    1.088274] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    1.088686] TCP: Hash tables configured (established 32768 bind 32768)\n[    1.088888] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    1.088945] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    1.089426] NET: Registered protocol family 1\n[    1.090577] Trying to unpack rootfs image as initramfs...\n[    1.354706] Freeing initrd memory: 7488K\n[    1.359337] audit: initializing netlink subsys (disabled)\n[    1.359475] audit: type=2000 audit(1.349:1): initialized\n[    1.359820] Initialise system trusted keyring\n[    1.360728] vmscan: error setting kswapd cpu affinity mask\n[    1.366868] VFS: Disk quotas dquot_6.6.0\n[    1.367022] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    1.367928] [SDFAT] Filesystem version 2.4.5-lineage\n[    1.368590] Registering sdcardfs 0.1\n[    1.368885] fuse init (API version 7.23)\n[    1.369128] SELinux:  Registering netfilter hooks\n[    1.369662] pfk_ecryptfs [pfk_ecryptfs_init]: PFK ecryptfs inited successfully\n[    1.369674] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    1.369685] pfk [pfk_init]: Driver initialized successfully\n[    1.375009] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)\n[    1.375039] io scheduler noop registered\n[    1.375047] io scheduler deadline registered\n[    1.375203] io scheduler cfq registered (default)\n[    1.396488] mdss_mdp_irq_clk_setup: unable to get core gdsc regulator\n[    1.397365] mdss_mdp_irq_clk_register: unable to get clk: lut_clk\n[    1.397705] mdss_mdp_irq_clk_register: unable to get clk: mnoc_clk\n[    1.397717] mdss_mdp_irq_clk_register: unable to get clk: throttle_bus_clk\n[    1.399787] No change in context(0==0), skip\n[    1.401508] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:0 num:0 rect:0 ndx:0x1 prio:0\n[    1.401517] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:4 num:1 rect:0 ndx:0x2 prio:1\n[    1.401522] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:8 num:2 rect:0 ndx:0x4 prio:2\n[    1.401527] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:12 num:8 rect:0 ndx:0x100 prio:3\n[    1.401549] mdss_mdp_pipe_addr_setup: type:1 ftchid:-1 xinid:1 num:3 rect:0 ndx:0x8 prio:4\n[    1.401554] mdss_mdp_pipe_addr_setup: type:1 ftchid:-1 xinid:5 num:4 rect:0 ndx:0x10 prio:5\n[    1.401558] mdss_mdp_pipe_addr_setup: type:1 ftchid:-1 xinid:9 num:5 rect:0 ndx:0x20 prio:6\n[    1.401563] mdss_mdp_pipe_addr_setup: type:1 ftchid:-1 xinid:13 num:9 rect:0 ndx:0x200 prio:7\n[    1.401581] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:2 num:6 rect:0 ndx:0x40 prio:8\n[    1.401586] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:10 num:7 rect:0 ndx:0x80 prio:9\n[    1.401604] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:7 num:10 rect:0 ndx:0x400 prio:0\n[    1.401608] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:7 num:11 rect:0 ndx:0x800 prio:1\n[    1.401620] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-pipe-sw-reset-off : u32 array read\n[    1.401715] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-ib-factor-overlap : u32 array read\n[    1.401723] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-bus-througput-factor : u32 array read\n[    1.403279] xlog_status: enable:0, panic:0, dump:2\n[    1.404689] iommu: Adding device 900000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb to group 3\n[    1.405775] iommu: Adding device 900000.qcom,mdss_mdp:qcom,smmu_rot_unsec_cb to group 4\n[    1.406850] iommu: Adding device 900000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb to group 5\n[    1.407893] iommu: Adding device 900000.qcom,mdss_mdp:qcom,smmu_rot_sec_cb to group 6\n[    1.408253] mdss_mdp_probe: mdss version = 0x10070002, bootloader display is on, num 1, intf_sel=0x00010100\n[    1.419895] mdss_smmu_probe: iommu v2 domain[0] mapping and clk register successful!\n[    1.421048] mdss_smmu_probe: iommu v2 domain[1] mapping and clk register successful!\n[    1.421786] mdss_smmu_probe: iommu v2 domain[2] mapping and clk register successful!\n[    1.422555] mdss_smmu_probe: iommu v2 domain[3] mapping and clk register successful!\n[    1.428885] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->0\n[    1.430630] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_lgd_lg4946_1440p_mipi_cmd:1:qcom,mdss_dsi_lgd_lg4946_1440p_mipi_cmd:cfg:split_dsi panel_name:qcom,mdss_dsi_lgd_lg4946_1440p_mipi_cmd\n[    1.430707] mdss_dsi_panel_init: panel_type is LGD_SIC_LG4946_INCELL_CMD_PANEL\n[    1.430713] panel_type is 2\n[    1.430923] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-post-panel-on-command\n[    1.430931] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-timing-switch-command\n[    1.430936] mdss_dsi_panel_get_dsc_cfg_np: cannot find dsc config node:\n[    1.431056] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-on\n[    1.431064] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-off\n[    1.431089] mdss_dsi_set_refresh_rate_range:2506, Unable to read min refresh rate\n[    1.431097] mdss_dsi_set_refresh_rate_range:2521, Unable to read max refresh rate\n[    1.431108] [AOD] init start\n[    1.432418] no supply entry present: lge,extra-supply-entries\n[    1.432462] mdss_dsi_parse_ctrl_params:4371 Unable to read qcom,display-id, data=0000000000000000,len=20\n[    1.432584] mdss_dsi_parse_gpio_params: avdd_en gpio not specified\n[    1.432614] lge_mdss_dsi_parse_gpio_params: num_gpios=2\n[    1.432656] msm_dss_get_res_byname: 'dsi_phy_regulator' resource not found\n[    1.432682] mdss_dsi_retrieve_ctrl_resources+0xc0/0x230->msm_dss_ioremap_byname: 'dsi_phy_regulator' msm_dss_get_res_byname failed\n[    1.432689] mdss_dsi_retrieve_ctrl_resources: ctrl_base=ffffff800a756000 ctrl_size=400 phy_base=ffffff800a758400 phy_size=588\n[    1.432968] dsi_panel_device_register: Continuous splash enabled\n[    1.433730] mdss_register_panel: adding framebuffer device 994000.qcom,mdss_dsi_ctrl0\n[    1.436179] mdss_dsi_ctrl_probe: Dsi Ctrl->0 initialized, DSI rev:0x10040001, PHY rev:0x2\n[    1.436972] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->1\n[    1.438320] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_lgd_lg4946_1440p_mipi_cmd:1:qcom,mdss_dsi_lgd_lg4946_1440p_mipi_cmd:cfg:split_dsi panel_name:qcom,mdss_dsi_lgd_lg4946_1440p_mipi_cmd\n[    1.438393] mdss_dsi_panel_init: panel_type is LGD_SIC_LG4946_INCELL_CMD_PANEL\n[    1.438399] panel_type is 2\n[    1.438604] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-post-panel-on-command\n[    1.438612] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-timing-switch-command\n[    1.438735] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-on\n[    1.438743] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-off\n[    1.438768] mdss_dsi_set_refresh_rate_range:2506, Unable to read min refresh rate\n[    1.438776] mdss_dsi_set_refresh_rate_range:2521, Unable to read max refresh rate\n[    1.440861] no supply entry present: lge,extra-supply-entries\n[    1.440903] mdss_dsi_parse_ctrl_params:4371 Unable to read qcom,display-id, data=0000000000000000,len=20\n[    1.441031] mdss_dsi_parse_gpio_params: avdd_en gpio not specified\n[    1.441045] request reset gpio failed\n[    1.441053] lge_mdss_dsi_parse_gpio_params: num_gpios=2\n[    1.441093] msm_dss_get_res_byname: 'dsi_phy_regulator' resource not found\n[    1.441119] mdss_dsi_retrieve_ctrl_resources+0xc0/0x230->msm_dss_ioremap_byname: 'dsi_phy_regulator' msm_dss_get_res_byname failed\n[    1.441126] mdss_dsi_retrieve_ctrl_resources: ctrl_base=ffffff800a75c000 ctrl_size=400 phy_base=ffffff800a75e400 phy_size=558\n[    1.441153] dsi_panel_device_register: Continuous splash enabled\n[    1.441881] panel_debug_register_base: debugfs_create_file: data_type fail\n[    1.441900] [Display] lge_dsi_panel_power_onoff_precheck right ctrl gpio configuration not needed\n[    1.443359] mdss_dsi_ctrl_probe: Dsi Ctrl->1 initialized, DSI rev:0x10040001, PHY rev:0x2\n[    1.445217] mdss_dsi_status_init: DSI status check interval:5000\n[    1.446286] mdss_mdp_kcal_store_fb0_ctl MFD is NULL...\n[    1.446297] mdss_mdp_kcal_store_fb0_ctl MFD is NULL...\n[    1.446302] mdss_mdp_kcal_store_fb0_ctl MFD is NULL...\n[    1.446335] kcal_ctrl_init: registered\n[    1.447110] hdmi_tx_get_dt_data: id=0\n[    1.447117] hdmi_tx_get_dt_gpio_data: module: 'HDMI_TX_HPD_PM'\n[    1.447125] hdmi_tx_get_dt_gpio_data: no gpio\n[    1.447129] hdmi_tx_get_dt_gpio_data: module: 'HDMI_TX_DDC_PM'\n[    1.447135] hdmi_tx_get_dt_gpio_data: no gpio\n[    1.447139] hdmi_tx_get_dt_gpio_data: module: 'HDMI_TX_CORE_PM'\n[    1.447143] hdmi_tx_get_dt_gpio_data: no gpio\n[    1.447146] hdmi_tx_get_dt_gpio_data: module: 'HDMI_TX_CEC_PM'\n[    1.447151] hdmi_tx_get_dt_gpio_data: no gpio\n[    1.447155] hdmi_tx_get_dt_vreg_data: module: 'HDMI_TX_HPD_PM'\n[    1.447173] hdmi_tx_get_dt_vreg_data: hpd-gdsc min=0, max=0, enable=0 disable=0\n[    1.447179] hdmi_tx_get_dt_vreg_data: module: 'HDMI_TX_DDC_PM'\n[    1.447184] hdmi_tx_get_dt_vreg_data: no vreg\n[    1.447187] hdmi_tx_get_dt_vreg_data: module: 'HDMI_TX_CORE_PM'\n[    1.447192] hdmi_tx_get_dt_vreg_data: no vreg\n[    1.447196] hdmi_tx_get_dt_vreg_data: module: 'HDMI_TX_CEC_PM'\n[    1.447201] hdmi_tx_get_dt_vreg_data: no vreg\n[    1.447228] hdmi_tx_get_dt_data:5078 Unable to read qcom,display-id, data=0000000000000000,len=0\n[    1.447766] hdmi_tx_init_resource: 'core_physical': start = 0xffffff800a774000, len=0x50c\n[    1.447777] hdmi_tx_init_resource: 'qfprom_physical': start = 0xffffff800a778000, len=0x6158\n[    1.447867] hdmi_tx_init_resource: 'hdcp_physical': start = 0xffffff800a776000, len=0xfff\n[    1.449418] hdmi_tx_check_capability: Features <HDMI:ON, HDCP:ON, Deep Color:OFF>\n[    1.451663] mdss_register_panel: adding framebuffer device 9a0000.qcom,hdmi_tx\n[    1.452386] hdmi_tx_probe: Add child devices.\n[    1.455428] mdss_register_panel: adding framebuffer device soc:qcom,mdss_wb_panel\n[    1.459313] mdss_fb_probe: fb0: split_mode:2 left:720 right:720\n[    1.460675] mdss_fb_register: FrameBuffer[0] 1440x2560 registered successfully!\n[    1.462579] mdss_fb_probe: qcom,default-brightness = 255\n[    1.462649] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    1.462654] mdss_mdp_splash_parse_dt: no rsvd mem found in DT for splash screen\n[    1.462659] mdss_mdp_splash_init: splash memory reserve failed\n[    1.462736] mdss_fb_probe: fb1: split_mode:0 left:0 right:0\n[    1.462847] mdss_fb_register: FrameBuffer[1] 640x480 registered successfully!\n[    1.462954] hdmi_tx_sysfs_create: sysfs group ffffffc07195c810\n[    1.462960] hdmi_tx_init_panel: panel initialized\n[    1.464215] hdmi_tx_init_hdcp: HDCP 1.4 initialized\n[    1.464347] hdmi_tx_init_hdcp: HDCP 2.2 initialized\n[    1.464353] hdmi_tx_init_audio: audio initialized\n[    1.473621] mdss_fb_probe: fb2: split_mode:0 left:0 right:0\n[    1.473816] mdss_fb_register: FrameBuffer[2] 640x480 registered successfully!\n[    1.475275] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    1.476029] [anx7816_c] anx7816_i2c_probe start\n[    1.476253] [anx7816_c] gpio p_dwn : 1010, reset : 75, irq : 77, gpio_cbl_det 90\n[    1.476636] anx7816 init gpio\n[    1.488647] msm_hdmi_register_slimport: sucess \n[    1.488745] [anx7816_c] anx7816_i2c_probe end\n[    1.521868] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    1.522198] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    1.522498] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    1.522571] In memshare_probe, Memshare probe success\n[    1.527402] subsys-pil-tz ce0000.qcom,venus: for venus segments only will be dumped.\n[    1.529405] subsys-pil-tz soc:qcom,kgsl-hyp: for a530_zap segments only will be dumped.\n[    1.536961] smd_channel_probe_now: allocation table not initialized\n[    1.537379] pil-q6v5-mss 2080000.qcom,mss: No pas_id found.\n[    1.544693] pil: failed to find qcom,msm-imem-minidump node\n[    1.550830] IrRC: uei,reset-gpio: 73\n[    1.563430] msm_rpm_log_probe: OK\n[    1.564936] msm_serial 75b0000.serial: msm_serial: detected port #0\n[    1.565588] msm_serial 75b0000.serial: uartclk = 3686400\n[    1.565816] 75b0000.serial: ttyMSM0 at MMIO 0x75b0000 (irq = 183, base_baud = 230400) is a MSM\n[    1.567314] msm_serial 7574000.serial: msm_serial: detected port #1\n[    1.567996] msm_serial 7574000.serial: uartclk = 3686400\n[    1.568140] 7574000.serial: ttyMSM1 at MMIO 0x7574000 (irq = 364, base_baud = 230400) is a MSM\n[    1.568747] msm_serial: driver initialized\n[    1.569623] uart_tx_gpio is not available\n[    1.569635] uart_rx_gpio is not available\n[    1.569640] uart_cts_gpio is not available\n[    1.569645] uart_rfr_gpio is not available\n[    1.569651] msm_hs_dt_to_pdata:Out of Band sleep flag is set\n[    1.570495] Wakeup irq not specified.\n[    1.573018] sps: BAM device 0x0000000007544000 is not registered yet.\n[    1.573036] sps:BAM 0x0000000007544000 is registered.\n[    1.574643] 7570000.uart: ttyHS0 at MMIO 0x7570000 (irq = 188, base_baud = 460800) is a MSM HS UART\n[    1.577153] msm_serial_hs module loaded\n[    1.583726] random: nonblocking pool is initialized\n[    1.683315] iommu: Adding device b40000.qcom,kgsl-iommu:gfx3d_user to group 7\n[    1.684609] iommu: Adding device b40000.qcom,kgsl-iommu:gfx3d_secure to group 8\n[    1.719164] brd: module loaded\n[    1.719266] loop: module loaded\n[    1.720963] zram: Added device: zram0\n[    1.722257] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1001000\n[    1.722322] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    1.722333] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    1.722339] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    1.723025] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    1.730308] pn548_dev_init : start\n[    1.733744] qce 660000.qcedev: Qualcomm Crypto 5.3.1 device found @0x660000\n[    1.733765] qce 660000.qcedev: CE device = 0x0\n               IO base, CE = 0xffffff800bb80000\n               Consumer (IN) PIPE 2,    Producer (OUT) PIPE 3\n               IO base BAM = 0x0000000000000000\n               BAM IRQ 257\n               Engines Availability = 0x2011053\n[    1.733857] sps:BAM 0x0000000000644000 is registered.\n[    1.734088] sps:BAM 0x0000000000644000 (va:0xffffff800bd40000) enabled: ver:0x27, number of pipes:16\n[    1.734100] sps:BAM 0x0000000000644000 pipe 3 sharing violation\n[    1.734105] sps:Failed to connect BAM 0xffffffc0f4d16800 pipe 3\n[    1.734112] QCE50: qce_sps_init_ep_conn: sps_connect() fail pipe_handle=0xffffffc0f4d16c00, rc = -1\n[    1.734133] sps:De-init client in connected state: 0x1535053\n[    1.734238] qce: probe of 660000.qcedev failed with error -1\n[    1.739230] qcrypto 660000.qcrypto: Qualcomm Crypto 5.3.1 device found @0x660000\n[    1.739250] qcrypto 660000.qcrypto: CE device = 0x0\n               IO base, CE = 0xffffff800bd80000\n               Consumer (IN) PIPE 4,    Producer (OUT) PIPE 5\n               IO base BAM = 0x0000000000000000\n               BAM IRQ 257\n               Engines Availability = 0x2011053\n[    1.739341] sps:BAM 0x0000000000644000 is registered.\n[    1.739560] sps:BAM 0x0000000000644000 (va:0xffffff800bec0000) enabled: ver:0x27, number of pipes:16\n[    1.739800] QCE50: qce_sps_init:  Qualcomm MSM CE-BAM at 0x0000000000644000 irq 257\n[    1.743793] qcrypto 660000.qcrypto: qcrypto-ecb-aes\n[    1.743958] qcrypto 660000.qcrypto: qcrypto-cbc-aes\n[    1.744065] qcrypto 660000.qcrypto: qcrypto-ctr-aes\n[    1.744166] qcrypto 660000.qcrypto: qcrypto-ecb-des\n[    1.744267] qcrypto 660000.qcrypto: qcrypto-cbc-des\n[    1.744365] qcrypto 660000.qcrypto: qcrypto-ecb-3des\n[    1.744466] qcrypto 660000.qcrypto: qcrypto-cbc-3des\n[    1.744566] qcrypto 660000.qcrypto: qcrypto-xts-aes\n[    1.744662] qcrypto 660000.qcrypto: qcrypto-sha1\n[    1.744771] qcrypto 660000.qcrypto: qcrypto-sha256\n[    1.744873] qcrypto 660000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    1.744968] qcrypto 660000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    1.745068] qcrypto 660000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    1.745160] qcrypto 660000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    1.745255] qcrypto 660000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    1.745352] qcrypto 660000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    1.745449] qcrypto 660000.qcrypto: qcrypto-hmac-sha1\n[    1.745549] qcrypto 660000.qcrypto: qcrypto-hmac-sha256\n[    1.745655] qcrypto 660000.qcrypto: qcrypto-aes-ccm\n[    1.745756] qcrypto 660000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    1.750324] ICE IRQ = 196\n[    1.750579] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    1.751001] ICE IRQ = 197\n[    1.760822] qcom_ice_get_pdevice: found ice device ffffffc032172200\n[    1.760840] qcom_ice_get_pdevice: matching platform device ffffffc0f8931000\n[    1.762601] scm_call failed: func id 0x42000c02, ret: -2, syscall returns: 0xfffffffffffffffc, 0x0, 0x0\n[    1.763653] ufshcd-qcom 624000.ufshc: ufs_qcom_parse_reg_info: Unable to find qcom,vddp-ref-clk-supply regulator, assuming enabled\n[    1.768344] scsi host0: ufshcd\n[    1.775267] qcom_ice 630000.ufsice: QC ICE 2.1.44 device found @0xffffff800b820000\n[    1.797897] spi_master spi12: will run message pump with realtime priority\n[    1.799031] sps: BAM device 0x0000000007584000 is not registered yet.\n[    1.799050] sps:BAM 0x0000000007584000 is registered.\n[    1.800904] sps:BAM 0x0000000007584000 (va:0xffffff800bf00000) enabled: ver:0x19, number of pipes:24\n[    1.807825] tun: Universal TUN/TAP device driver, 1.6\n[    1.807838] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    1.807920] PPP generic driver version 2.4.2\n[    1.808013] PPP BSD Compression module registered\n[    1.808022] PPP Deflate Compression module registered\n[    1.808064] PPP MPPE Compression module registered\n[    1.808075] NET: Registered protocol family 24\n[    1.809925] dhd_init_wlan_mem: WIFI MEM Allocated\n[    1.809940] bcm_wifi_init_mem successfully\n[    1.809949] bcm_wifi_init_gpio: target does not use pinctrl for wifi reg on\n[    1.810599] bcm_wifi_init_gpio: gpio_wlan_power=1013\n[    1.810612] bcm_wifi_init_gpio: gpio_hostwake=78\n[    1.810620] bcm_wifi_init_gpio: Failed to request gpio 1013 for bcmdhd_wifi_reg_on:[-16]\n[    1.829597] ufshcd-qcom 624000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.830239] bcm_wifi_init_gpio successfully\n[    1.830245] skip bcm_wifi_power up here\n[    1.831449] usbcore: registered new interface driver asix\n[    1.831484] usbcore: registered new interface driver ax88179_178a\n[    1.831534] usbcore: registered new interface driver cdc_ether\n[    1.831565] usbcore: registered new interface driver net1080\n[    1.831595] usbcore: registered new interface driver cdc_subset\n[    1.831624] usbcore: registered new interface driver zaurus\n[    1.831712] usbcore: registered new interface driver cdc_ncm\n[    1.837539] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.843766] msm_sharedmem: sharedmem_register_qmi: qmi init successful\n[    1.850488] power_supply dpdm: driver failed to report `dp_dm' property: -22\n[    1.866603] msm-dwc3 6a00000.ssusb: unable to get dbm device\n[    1.871042] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    1.871064] ohci-pci: OHCI PCI platform driver\n[    1.871125] ohci-platform: OHCI generic platform driver\n[    1.875626] usbcore: registered new interface driver usb-storage\n[    1.875733] usbcore: registered new interface driver usbserial\n[    1.875743] anx7418_init\n[    1.875835] anx7418_async_init\n[    1.876681] anx7418_probe\n[    1.894663] u_lgeusb init\n[    1.902462] spi12.0 supply vdd not found, using dummy regulator\n[    1.902602] spi12.0 supply vio not found, using dummy regulator\n[    1.905427] fpc1020 spi8.1: found pin control fpc1020_spi_active\n[    1.905443] fpc1020 spi8.1: found pin control fpc1020_reset_reset\n[    1.905450] fpc1020 spi8.1: found pin control fpc1020_reset_active\n[    1.905455] fpc1020 spi8.1: found pin control fpc1020_cs_low\n[    1.905461] fpc1020 spi8.1: found pin control fpc1020_cs_high\n[    1.905466] fpc1020 spi8.1: found pin control fpc1020_cs_active\n[    1.905472] fpc1020 spi8.1: found pin control fpc1020_irq_active\n[    1.905525] fpc1020 spi8.1: fpc1020_probe enable-wakeup \n[    1.905754] input: fingerprint as /devices/virtual/input/lge_fingerprint\n[    1.906423] anx7418 6-0028: anx7418 power on\n[    1.906651] anx7418 6-0028: rom ver: 13\n[    1.906873] anx7418 6-0028: request_firmware(anx7418/ocm_hamming_13.bin)\n[    1.906882] anx7418 6-0028: new ver: 13\n[    1.906887] anx7418 6-0028: firmware update start\n[    1.906893] anx7418 6-0028: firmware updata not needed\n[    1.906899] anx7418 6-0028: firmware update end (0 ms)\n[    1.906907] anx7418 6-0028: anx7418 power down\n[    1.909385] anx7418 6-0028: ANX7418 probe done\n[    1.909503] fpc1020 spi8.1: Enabling hardware\n[    1.911902] input: touch_dev as /devices/virtual/input/input2\n[    1.912275] [Touch E] [lg4946_notify 1610] 3 is not supported\n[    1.914456] fpc1020 spi8.1: fpc1020_probe: ok\n[    1.914495] fpc1020_init OK\n[    1.915439] qcom,qpnp-rtc 400f000.qcom,spmi:qcom,pm8994@0:qcom,pm8994_rtc: rtc core: registered qpnp_rtc as rtc0\n[    1.917419] i2c /dev entries driver\n[    1.922096] ufshcd-qcom 624000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[1, 1], pwr[FAST MODE, FAST MODE], rate = 2\n[    1.922359] ufshcd_get_max_icc_level: Couldn't find valid icc_level = 0\n[    1.925813] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb1 to group 9\n[    1.926388] CAM-SMMU cam_smmu_populate_sids:2330 __debug cnt = 8, cb->name: :vfe sid [0] = 0\n[    1.926395] CAM-SMMU cam_smmu_populate_sids:2330 __debug cnt = 8, cb->name: :vfe sid [1] = 1\n[    1.926400] CAM-SMMU cam_smmu_populate_sids:2330 __debug cnt = 8, cb->name: :vfe sid [2] = 2\n[    1.926406] CAM-SMMU cam_smmu_populate_sids:2330 __debug cnt = 8, cb->name: :vfe sid [3] = 3\n[    1.927349] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb3 to group 10\n[    1.927880] CAM-SMMU cam_smmu_populate_sids:2330 __debug cnt = 2, cb->name: :cpp sid [0] = 0\n[    1.928818] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb4 to group 11\n[    1.929348] CAM-SMMU cam_smmu_populate_sids:2330 __debug cnt = 2, cb->name: :camera_fd sid [0] = 1\n[    1.930537] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb5 to group 12\n[    1.931096] CAM-SMMU cam_smmu_populate_sids:2330 __debug cnt = 2, cb->name: :jpeg_enc0 sid [0] = 0\n[    1.932539] scsi 0:0:0:49488: Well-known LUN    TOSHIBA  THGBF7G8K4LBATRB 0400 PQ: 0 ANSI: 6\n[    1.932846] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb6 to group 13\n[    1.934314] CAM-SMMU cam_smmu_populate_sids:2330 __debug cnt = 2, cb->name: :jpeg_dma sid [0] = 1\n[    1.935351] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb7 to group 14\n[    1.935880] CAM-SMMU cam_smmu_populate_sids:2330 __debug cnt = 2, cb->name: :jpeg_dec sid [0] = 2\n[    1.942100] scsi 0:0:0:49456: Well-known LUN    TOSHIBA  THGBF7G8K4LBATRB 0400 PQ: 0 ANSI: 6\n[    1.949857] scsi 0:0:0:49476: Well-known LUN    TOSHIBA  THGBF7G8K4LBATRB 0400 PQ: 0 ANSI: 6\n[    1.962747] scsi 0:0:0:0: Direct-Access     TOSHIBA  THGBF7G8K4LBATRB 0400 PQ: 0 ANSI: 6\n[    1.971946] scsi 0:0:0:1: Direct-Access     TOSHIBA  THGBF7G8K4LBATRB 0400 PQ: 0 ANSI: 6\n[    1.981964] scsi 0:0:0:2: Direct-Access     TOSHIBA  THGBF7G8K4LBATRB 0400 PQ: 0 ANSI: 6\n[    1.986749] msm_eeprom_platform_probe failed 1926\n[    1.987870] msm_eeprom_platform_probe failed 1926\n[    1.988598] msm_eeprom_i2c_probe failed 1027\n[    1.992542] scsi 0:0:0:3: Direct-Access     TOSHIBA  THGBF7G8K4LBATRB 0400 PQ: 0 ANSI: 6\n[    1.993874] msm_ois_platform_probe:1411 msm_ois_platform_probe: No/Error OIS GPIO\n[    2.002589] scsi 0:0:0:4: Direct-Access     TOSHIBA  THGBF7G8K4LBATRB 0400 PQ: 0 ANSI: 6\n[    2.007604] msm_sensor_get_sub_module_index qcom,tcs cell index 0, rc 0\n[    2.009559] msm_sensor_get_sub_module_index qcom,tcs cell index 0, rc 0\n[    2.012086] scsi 0:0:0:5: Direct-Access     TOSHIBA  THGBF7G8K4LBATRB 0400 PQ: 0 ANSI: 6\n[    2.012536] msm_sensor_get_sub_module_index:297 src_node NULL\n[    2.021937] scsi 0:0:0:6: Direct-Access     TOSHIBA  THGBF7G8K4LBATRB 0400 PQ: 0 ANSI: 6\n[    2.027642] MSM-CPP cpp_init_hardware:1149 CPP HW Version: 0x60000000\n[    2.027676] MSM-CPP cpp_init_hardware:1167 stream_cnt:0\n[    2.028841] MSM-CPP cpp_release_hardware:1230 cpp hw release done\n[    2.040703] GPT:Primary header LBA != Alt. header alternate_lba\n[    2.040718] GPT:1 != 7728127\n[    2.040724] GPT: Use GNU Parted to correct GPT errors.\n[    2.040757]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18\n[    2.042981]  sdb: sdb1 sdb2 sdb3 sdb4 sdb5 sdb6 sdb7 sdb8\n[    2.045150] CAM-SOC msm_camera_get_reg_base:864 err: mem resource vfe_fuse not found\n[    2.045164] CAM-SOC msm_camera_get_res_size:907 err: mem resource vfe_fuse not found\n[    2.059545]  sdc: sdc1 sdc2 sdc3\n[    2.061213]  sdd: sdd1 sdd2 sdd3 sdd4\n[    2.070778]  sdf: sdf1 sdf2 sdf3 sdf4\n[    2.072038]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29\n[    2.079599]  sdg: sdg1 sdg2\n[    2.080959] [Touch] Remove pending irq(132)\n[    2.089119] CAM-SOC msm_camera_get_reg_base:864 err: mem resource vfe_fuse not found\n[    2.089132] CAM-SOC msm_camera_get_res_size:907 err: mem resource vfe_fuse not found\n[    2.120278] __msm_jpeg_init:1576] Jpeg Device id 0\n[    2.123864] __msm_jpeg_init:1576] Jpeg Device id 2\n[    2.127244] __msm_jpeg_init:1576] Jpeg Device id 3\n[    2.144603] msm_fd_hw_set_dt_parms_by_name: Error property does not exist\n[    2.240840] msm_fd aa4000.qcom,fd: Face detection halt timeout\n[    2.255534] iommu: Adding device c00000.qcom,vidc:non_secure_cb to group 15\n[    2.266981] iommu: Adding device c00000.qcom,vidc:firmware_cb to group 16\n[    2.268556] iommu: Adding device c00000.qcom,vidc:secure_bitstream_cb to group 17\n[    2.275258] iommu: Adding device c00000.qcom,vidc:secure_pixel_cb to group 18\n[    2.280300] iommu: Adding device c00000.qcom,vidc:secure_non_pixel_cb to group 19\n[    2.293176] msm_vidc_vmem: Up and running with 4 banks of memory from [dma size 270707318217 pref disabled]\n[    2.306014] FG: fg_check_ima_exception: Initial ima_err_sts=0 ima_exp_sts=0 ima_hw_sts=88\n[    2.306119] FG: fg_of_init: lge_rid_disable: 0\n[    2.358299] thermal thermal_zone0: failed to read out thermal zone (-19)\n[    2.358502] FG: somc_fg_register: somc fg register success\n[    2.358511] FG: fg_probe: FG Probe success - FG Revision DIG:3.1 ANA:1.2 PMIC subtype=19\n[    2.362587] smb1351_parallel_charger_probe: smb1351 parallel successfully probed.\n[    2.370301] smb1351_is_usb_present: USB psy not found\n[    2.413055] device-mapper: uevent: version 1.0.3\n[    2.413391] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com\n[    2.413412] device-mapper: req-crypt: dm-req-crypt successfully initalized.\n\n[    2.413421] +++bluetooth_pm_init\n[    2.415655] bluetooth_pm_probe:  bluetooth_pm_probe is called \n[    2.415670] bluetooth_pm_parse_dt:  bluetooth_pm_parse_dt  is started   \n[    2.415685] bluetooth_pm_parse_dt: bt_reset GPIO Number = 81 \n[    2.415692] bluetooth_pm_parse_dt: host_wake GPIO Number = 24 \n[    2.415699] bluetooth_pm_parse_dt: ext_wake GPIO Number = 92 \n[    2.415750] bluetooth_pm_rfkill_set_power: blocked (1)\n[    2.415758] bluetooth_pm_rfkill_set_power: Receive same status(1)\n[    2.415939] bluetooth_pm_probe :  hostwake GPIO : 24(0),  btwake GPIO : 92(0) \n[    2.415943] bluetooth_pm_probe: bsi->host_wake_irq: 31 \n[    2.416159] bt_pinctrl_init: success to set gpio_default_config for bt\n[    2.416172] bluetooth_pm_create_bt_proc_interface: create bt proc interface\n[    2.416630] ---bluetooth_pm_init done\n[    2.419581] (fmdrv): FM driver version 1.01\n[    2.422071] sdhci: Secure Digital Host Controller Interface driver\n[    2.422083] sdhci: Copyright(c) Pierre Ossman\n[    2.422089] sdhci-pltfm: SDHCI platform and OF driver helper\n[    2.431325] sdhci_msm 7464900.sdhci: sdhci_msm_probe: ICE device is not enabled\n[    2.435016] sdhci_msm 74a4900.sdhci: sdhci_msm_probe: ICE device is not enabled\n[    2.448451] usbcore: registered new interface driver usbhid\n[    2.448464] usbhid: USB HID core driver\n[    2.448571] ashmem: initialized\n[    2.449998] qpnp_coincell_charger_show_state: enabled=Y, voltage=3200 mV, resistance=2100 ohm\n[    2.450201] [Touch] Remove pending irq(132)\n[    2.456343] sdhci_msm 74a4900.sdhci: No vmmc regulator found\n[    2.456358] sdhci_msm 74a4900.sdhci: No vqmmc regulator found\n[    2.459472] mmc0: SDHCI controller on 74a4900.sdhci [74a4900.sdhci] using 64-bit ADMA in legacy mode\n[    2.493978] bimc-bwmon 408000.qcom,cpu-bwmon: BW HWmon governor registered.\n[    2.496860] arm-memlat-mon soc:qcom,arm-memlat-mon-0: Memory Latency governor registered.\n[    2.497012] arm-memlat-mon soc:qcom,arm-memlat-mon-2: Memory Latency governor registered.\n[    2.506168] m4m-hwmon 6530000.qcom,m4m-hwmon: Cache HWmon governor registered.\n[    2.511739] devfreq soc:qcom,cpubw: Couldn't update frequency transition information.\n[    2.511973] devfreq soc:qcom,mincpubw: Couldn't update frequency transition information.\n[    2.512255] devfreq soc:qcom,memlat-cpu0: Couldn't update frequency transition information.\n[    2.512519] devfreq soc:qcom,memlat-cpu2: Couldn't update frequency transition information.\n[    2.514493] devfreq soc:qcom,m4m: Couldn't update frequency transition information.\n[    2.516919] kryo perfevents: CPU pmu for kryo-pmuv3 detected\n[    2.517019] hw perfevents: enabled with qcom,kryo-pmuv3 PMU driver, 9 counters available\n[    2.520639] usbcore: registered new interface driver snd-usb-audio\n[    2.552030] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx group_id: 0x9100\n[    2.552535] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0 dev_id: 0x9000\n[    2.552550] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.552942] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-1: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-1 dev_id: 0x9002\n[    2.552955] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-1: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.553333] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-2: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-2 dev_id: 0x9004\n[    2.553346] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-2: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.553717] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-3: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-3 dev_id: 0x9006\n[    2.553730] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-3: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.553767] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx group_id: 0x9101\n[    2.554151] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0 dev_id: 0x9001\n[    2.554164] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.554536] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-1: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-1 dev_id: 0x9003\n[    2.554549] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-1: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.554935] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-2: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-2 dev_id: 0x9005\n[    2.554948] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-2: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.555328] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-3: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-3 dev_id: 0x9007\n[    2.555341] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-3: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.555377] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx group_id: 0x9110\n[    2.555761] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0 dev_id: 0x9010\n[    2.555774] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.556150] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-1: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-1 dev_id: 0x9012\n[    2.556163] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-1: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.556543] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-2: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-2 dev_id: 0x9014\n[    2.556556] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-2: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.556930] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-3: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-3 dev_id: 0x9016\n[    2.556942] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-3: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.556978] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx group_id: 0x9111\n[    2.557357] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0 dev_id: 0x9011\n[    2.557370] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.557745] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-1: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-1 dev_id: 0x9013\n[    2.557757] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-1: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.558130] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-2: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-2 dev_id: 0x9015\n[    2.558143] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-2: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.558524] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-3: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-3 dev_id: 0x9017\n[    2.558536] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-3: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.558573] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx group_id: 0x9120\n[    2.559059] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0 dev_id: 0x9020\n[    2.559073] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.559612] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1 dev_id: 0x9022\n[    2.559627] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.560098] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-2: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-2 dev_id: 0x9024\n[    2.560113] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-2: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.560524] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-3: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-3 dev_id: 0x9026\n[    2.560537] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-3: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.560927] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-4: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-4 dev_id: 0x9028\n[    2.560940] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-4: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.560976] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx group_id: 0x9121\n[    2.561360] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0 dev_id: 0x9021\n[    2.561374] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.561759] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1 dev_id: 0x9023\n[    2.561771] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.562159] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-2: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-2 dev_id: 0x9025\n[    2.562173] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-2: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.562543] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-3: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-3 dev_id: 0x9027\n[    2.562556] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-3: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.562597] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx group_id: 0x9130\n[    2.562970] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0 dev_id: 0x9030\n[    2.562982] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.563362] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-1: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-1 dev_id: 0x9032\n[    2.563375] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-1: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.563746] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-2: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-2 dev_id: 0x9034\n[    2.563759] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-2: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.564151] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-3: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-3 dev_id: 0x9036\n[    2.564165] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-3: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.564205] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx group_id: 0x9131\n[    2.564585] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0 dev_id: 0x9031\n[    2.564599] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.564985] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-1: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-1 dev_id: 0x9033\n[    2.564998] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-1: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.565366] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-2: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-2 dev_id: 0x9035\n[    2.565378] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-2: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.565752] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-3: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-3 dev_id: 0x9037\n[    2.565765] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-3: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.617699] GACT probability NOT on\n[    2.617715] Mirror/redirect action on\n[    2.617771] u32 classifier\n[    2.617776]     Actions configured\n[    2.617799] Netfilter messages via NETLINK v0.30.\n[    2.617846] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    2.618068] ctnetlink v0.93: registering with nfnetlink.\n[    2.618429] xt_time: kernel timezone is -0000\n[    2.618500] IPv4 over IPsec tunneling driver\n[    2.618912] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    2.619083] arp_tables: (C) 2002 David S. Miller\n[    2.619156] Initializing XFRM netlink socket\n[    2.619549] NET: Registered protocol family 10\n[    2.621294] mip6: Mobile IPv6\n[    2.621321] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    2.621833] sit: IPv6 over IPv4 tunneling driver\n[    2.622519] NET: Registered protocol family 17\n[    2.622542] NET: Registered protocol family 15\n[    2.622588] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.\n[    2.622608] Bridge firewalling registered\n[    2.622616] Ebtables v2.0 registered\n[    2.622722] l2tp_core: L2TP core driver, V2.0\n[    2.622737] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    2.622743] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    2.622764] l2tp_netlink: L2TP netlink interface\n[    2.622789] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    2.622796] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    2.624081] NET: Registered protocol family 27\n[    2.633300] subsys-pil-tz 9300000.qcom,lpass: for adsp segments only will be dumped.\n[    2.638243] subsys-pil-tz 1c00000.qcom,ssc: for slpi segments only will be dumped.\n[    2.642303] pil-q6v5-mss 2080000.qcom,mss: No pas_id found.\n[    2.643730] pil-q6v5-mss 2080000.qcom,mss: for modem segments only will be dumped.\n[    2.643803] pil-q6v5-mss 2080000.qcom,mss: for md_modem segments only will be dumped.\n[    2.652257] sps:BAM 0x0000000006b04000 is registered.\n[    2.653746] Invalid index Defaulting curr to 0\n[    2.656640] SMBCHG: somc_chg_init: somc chg init success\n[    2.657662] pmi8994_boost_5v: supplied by pon_spare_reg\n[    2.657699] smbcharger_external_otg: supplied by pmi8994_boost_5v\n[    2.658141] SMBCHG: smbchg_hvdcp_enable_cb: smbchg_hvdcp_enable_cb HVDCP enabled\n[    2.660348] input: somc_chg_unplug_key as /devices/soc/400f000.qcom,spmi/spmi-0/spmi0-02/400f000.qcom,spmi:qcom,pmi8994@2:qcom,qpnp-smbcharger/input/input3\n[    2.660413] SMBCHG: somc_chg_register: somc chg register success\n[    2.660664] SMBCHG: somc_chg_temp_work: temp status:0->2\n[    2.662317] thermal thermal_zone30: failed to read out thermal zone (-19)\n[    2.667494] qpnp-smbcharger 400f000.qcom,spmi:qcom,pmi8994@2:qcom,qpnp-smbcharger: SMBCHG successfully probe Charger version=SCHG Revision DIG:2.0 ANA:2.1 batt=1 dc=0 usb=0\n[    2.696305] sps:BAM 0x0000000006b04000 is registered.\n[    2.703252] msm-dwc3 6a00000.ssusb: DWC3 exited from low power mode\n[    2.703759] msm-dwc3 6a00000.ssusb: DWC3 in low power mode\n[    2.706636] mmc0: new ultra high speed SDR50 SDXC card at address aaaa\n[    2.721187] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0x3) latency=-1\n[    2.721198] sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xc) latency=-1\n[    2.722100] Registered cp15_barrier emulation handler\n[    2.722129] Registered setend emulation handler\n[    2.722449] registered taskstats version 1\n[    2.722488] Loading compiled-in X.509 certificates\n[    2.722697] mmcblk0: mmc0:aaaa SL64G 59.5 GiB \n[    2.723385] Key type encrypted registered\n[    2.728561] fastrpc soc:qcom,msm-adsprpc-mem: for adsp_rh segments only will be dumped.\n[    2.728671] ADSPRPC: gcinfo[0].heap_vmid 6\n[    2.729078] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 20\n[    2.731257] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 21\n[    2.733009] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 22\n[    2.734743] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 23\n[    2.736468] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 24\n[    2.738189] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 25\n[    2.739903] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7 to group 26\n[    2.742009] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8 to group 27\n[    2.747317]  mmcblk0: p1\n[    2.780428] RNDIS_IPA module is loaded.\n[    2.782296] hallic_dev switch registration success\n[    2.782471] input: gpio-keys as /devices/soc/soc:gpio_keys/input/input4\n[    2.783096] qcom,qpnp-rtc 400f000.qcom,spmi:qcom,pm8994@0:qcom,pm8994_rtc: setting system clock to 1970-01-05 16:34:31 UTC (405271)\n[    2.813273] lmh_lite:lmh_parse_sensor Registering sensor:[DLMt_APC1]\n[    2.813574] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_cp00]\n[    2.813760] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_cp01]\n[    2.813945] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_cp10]\n[    2.820123] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_cp11]\n[    2.820377] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_m4m0]\n[    2.826733] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_l21-]\n[    2.826989] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_l20-]\n[    2.829955] parse_cpu_levels: idx 1 545\n[    2.829963] parse_cpu_levels: idx 2 6022\n[    2.829968] parse_cpu_levels: idx 2 11499\n[    2.830104] parse_cpu_levels: idx 1 545\n[    2.830108] parse_cpu_levels: idx 2 6022\n[    2.830112] parse_cpu_levels: idx 2 11499\n[    2.833269] qcom,qpnp-flash-led 400f000.qcom,spmi:qcom,pmi8994@3:qcom,leds@d300: Unable to acquire pinctrl\n[    2.851813] ipa-wan ipa_wwan_init:3286 Registering for q6_cleanup_cb\n[    2.851824] ipa register_ipa_platform_cb:2210 In register_ipa_platform_cb\n[    2.851829] ipa register_ipa_platform_cb:2213 reg q6_cleanup_cb\n[    2.852301] rmnet_ipa started initialization\n[    2.852308] IPA SSR support = True\n[    2.852312] IPA ipa-loaduC = True\n[    2.852316] IPA SG support = True\n[    2.852321] IPA Napi Enable = False\n[    2.852325] using default for wan-rx-desc-size = 1024\n[    2.879780] ipa ipa_sps_irq_control_all:963 EP (5) not allocated.\n[    2.879788] ipa ipa2_uc_state_check:301 uC is not loaded\n[    2.880575] rmnet_ipa completed initialization\n[    2.885099] qcom,cc-debug-8996 362000.qcom,cc-debug: Registered debug mux.\n[    2.886179] apc0_pwrcl_mem_acc_corner: disabling\n[    2.886188] apc1_perfcl_mem_acc_corner: disabling\n[    2.886193] apcc_l3_mem_acc_corner: disabling\n[    2.886199] gfx_mem_acc_corner: disabling\n[    2.886204] kryo0-retention: disabling\n[    2.886210] kryo1-retention: disabling\n[    2.886286] gdsc_mmagic_bimc: disabling\n[    2.886291] usb_otg_vreg: disabling\n[    2.886296] wlan_en_vreg: disabling\n[    2.886398] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    2.900721] dhd_module_init in\n[    2.901176] found wifi platform device bcmdhd_wlan\n[    2.902096] Power-up adapter 'DHD generic adapter'\n[    2.902104] wifi_platform_set_power = 1\n[    2.902149] [BRCM]: gpio_direction_output(1013,1)! ret = 0\n[    3.055510] bcm_wifi_set_power: wifi power successed to pull up\n[    3.055519] wifi_platform_bus_enumerate device present 1\n[    3.055525] msm_pcie_enable: PCIe: Assert the reset of endpoint of RC0.\n[    3.059483] msm_pcie_enable: PCIe RC0 PHY is ready!\n[    3.069592] msm_pcie_enable: PCIe: Release the reset of endpoint of RC0.\n[    3.105334] msm_pcie_enable: PCIe RC0 link initialized\n[    3.105429] PCI host bridge /soc/qcom,pcie@600000 ranges:\n[    3.105439]   No bus range found for /soc/qcom,pcie@600000, using [bus 00-ff]\n[    3.105461]    IO 0x0c200000..0x0c2fffff -> 0x0c200000\n[    3.105471]   MEM 0x0c300000..0x0cffffff -> 0x0c300000\n[    3.105607] pci-msm 600000.qcom,pcie: PCI host bridge to bus 0000:00\n[    3.105615] pci_bus 0000:00: root bus resource [bus 00-ff]\n[    3.105622] pci_bus 0000:00: root bus resource [io  0x0000-0xfffff] (bus address [0xc200000-0xc2fffff])\n[    3.105628] pci_bus 0000:00: root bus resource [mem 0x0c300000-0x0cffffff]\n[    3.105653] pci 0000:00:00.0: [17cb:0104] type 01 class 0x060400\n[    3.105688] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]\n[    3.105746] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold\n[    3.105894] iommu: Adding device 0000:00:00.0 to group 28\n[    3.106010] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring\n[    3.106232] pci 0000:01:00.0: [14e4:43ab] type 00 class 0x028000\n[    3.106316] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x00007fff 64bit]\n[    3.106355] pci 0000:01:00.0: reg 0x18: [mem 0x00000000-0x003fffff 64bit]\n[    3.106576] pci 0000:01:00.0: supports D1 D2\n[    3.106581] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold\n[    3.107017] iommu: Adding device 0000:01:00.0 to group 29\n[    3.107042] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01\n[    3.107140] pci 0000:00:00.0: BAR 8: assigned [mem 0x0c400000-0x0c9fffff]\n[    3.107148] pci 0000:00:00.0: BAR 0: assigned [mem 0x0c300000-0x0c300fff 64bit]\n[    3.107230] pci 0000:01:00.0: BAR 2: assigned [mem 0x0c400000-0x0c7fffff 64bit]\n[    3.107264] pci 0000:01:00.0: BAR 0: assigned [mem 0x0c800000-0x0c807fff 64bit]\n[    3.107297] pci 0000:00:00.0: PCI bridge to [bus 01]\n[    3.107313] pci 0000:00:00.0:   bridge window [mem 0x0c400000-0x0c9fffff]\n[    3.107495] [BRCM] Card detect done\n[    3.107568] PCI_PROBE:  bus 1, slot 0,vendor 14E4, device 43AB(good PCI location)\n[    3.107574] dhdpcie_init: found adapter info 'DHD generic adapter'\n[    3.107585] alloc static buf at ffffffc0f4dc0000!\n[    3.107687] pcieh 0000:01:00.0: enabling device (0000 -> 0002)\n[    3.108362] DHD: dongle ram size is set to 819200(orig 819200) at 0x198000\n[    3.108371] wifi_platform_get_mac_addr\n[    3.108378] [bcm_wifi_get_mac_addr] Exiting. MyMac :  0 : 90 : 4c : ed : 46 :f7\n[    3.108463] CFG80211-INFO2) wl_setup_wiphy : Registering Vendor80211\n[    3.108802] wl_create_event_handler(): thread:wl_event_handler:1e3 started\n[    3.108966] CFG80211-INFO2) wl_event_handler : tsk Enter, tsk = 0xffffffc031f4eda0\n[    3.108988] dhd_attach(): thread:dhd_watchdog_thread:1e4 started\n[    3.109044] dhd_attach(): thread:dhd_rpm_state_thread:1e5 started\n[    3.109054] dhd_deferred_work_init: work queue initialized \n[    3.109060] DHD LOAD BALANCING Enabled\n[    3.109224] Dongle Host Driver, version 1.78.18 (r)\n               Compiled in drivers/net/wireless/bcmdhd on 4.4.186-mk2k-v0.1-FREQBENCH\n[    3.109587] Register interface [wlan0]  MAC: 00:90:4c:84:f4:e9\n\n[    3.109614] CFG80211-INFO2) wl_event_handler : was terminated\n[    3.109657] wl_destroy_event_handler(): thread:wl_event_handler:1e3 terminated OK\n[    3.109665] dhd_wl_ioctl: returning as busstate=0\n[    3.109671] dhd_bus_devreset: == Power OFF ==\n[    3.109686] dhdpcie_oob_intr_unregister: irq is not registered\n[    3.119967] msm_pcie_disable: PCIe: Assert the reset of endpoint of RC0.\n[    3.121255] dhd_bus_devreset:  WLAN OFF Done\n[    3.121266] wifi_platform_set_power = 0\n[    3.121311] [BRCM]: gpio_direction_output(1013,0)! ret = 0\n[    3.121318] bcm_wifi_set_power: wifi power successed to pull down\n[    3.130557] dhd_module_init out\n[    3.130582] clock_late_init: Removing enables held for handed-off clocks\n[    3.140834] ALSA device list:\n[    3.141028]   No soundcards found.\n[    3.141179] Warning: unable to open an initial console.\n[    3.142333] Freeing unused kernel memory: 2048K\n[    3.916492] FG: comp_temp_by_chg_current: fg_temp = 267 comp_temp1 = 244 comp_temp2 = 244 delta1 = -23 delta2 = 0 avg_chg_curr = 0 now_chg_curr = 0 batt_charging = 0\n[    4.124904] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: cpu1 cpu2 \n               Offline CPUs: cpu1 \n[    4.140402] IRQ1 no longer affine to CPU1\n[    4.161508] cpu2 \n[    4.191042] IRQ260 no longer affine to CPU2\n[    4.211516] cpu3 \n[    4.240541] IRQ1 no longer affine to CPU3\n\n[    4.660197] SMBCHG: somc_chg_remove_work: input_report_key KEY_F24\n[    5.910711] of_batterydata_get_best_profile: lge_bl42d1f_2800mah_averaged_masterslave_nov30th2015 found\n[    5.933679] FG: somc_fg_aging_mode_check: soh=100 (learned:2757000 nom_cap:2757000)\n[    5.933758] FG: fg_batt_profile_init: Battery SOC: 68, V: 3851143uV\n[    9.272256] Sampling power every 1000 ms\n               Baseline power usage: \n[   84.433093] CPU1: Booted secondary processor [511f2112]\n[   85.446664] 757 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 307 422 480 556 652 729 844 960 1036 1113 1190 1228 1324 1401 1478 1593\n               \n                307:  2053     6.7 C/MHz    125 mW   18.2 J   16.5 I/mJ   146.2 s\n                422:  2806     6.6 C/MHz    163 mW   17.5 J   17.2 I/mJ   106.9 s\n                480:  3201     6.7 C/MHz    189 mW   17.7 J   16.9 I/mJ    93.7 s\n                556:  3686     6.6 C/MHz    223 mW   18.2 J   16.5 I/mJ    81.4 s\n                652:  4355     6.7 C/MHz    245 mW   16.9 J   17.7 I/mJ    68.9 s\n                729:  4837     6.6 C/MHz    274 mW   17.0 J   17.7 I/mJ    62.0 s\n                844:  5333     6.3 C/MHz    316 mW   17.8 J   16.9 I/mJ    56.3 s\n                960:  6430     6.7 C/MHz    426 mW   19.9 J   15.1 I/mJ    46.7 s\n               1036:  6872     6.6 C/MHz    479 mW   20.9 J   14.3 I/mJ    43.7 s\n               1113:  6620     5.9 C/MHz    501 mW   22.7 J   13.2 I/mJ    45.3 s\n               1190:  7885     6.6 C/MHz    615 mW   23.4 J   12.8 I/mJ    38.1 s\n               1228: \n[ 1014.382657]  8155     6.6 C/MHz    631 mW   23.2 J   12.9 I/mJ    36.8 s\n               1324:  8833     6.7 C/MHz    766 mW   26.0 J   11.5 I/mJ    34.0 s\n               1401:  9397     6.7 C/MHz    902 mW   28.8 J   10.4 I/mJ    31.9 s\n               1478:  9812     6.6 C/MHz    994 mW   30.4 J    9.9 I/mJ    30.6 s\n               1593: \n[ 1173.100823] IRQ1 no longer affine to CPU1\n[ 1173.108047] CPU2: Booted secondary processor [511f2052]\n[ 1174.123396] 10642     6.7 C/MHz   1230 mW   34.7 J    8.7 I/mJ    28.2 s\n               \n               \n               ===== CPU 2 =====\n               Frequencies: 307 403 480 556 652 729 806 883 940 1036 1113 1190 1248 1324 1401 1478 1555 1632 1708 1785 1824 1920 1996 2073 2150\n               \n                307:  2008     6.5 C/MHz    182 mW   27.1 J   11.1 I/mJ   149.4 s\n                403:  2687     6.7 C/MHz    217 mW   24.2 J   12.4 I/mJ   111.7 s\n                480:  3213     6.7 C/MHz    247 mW   23.1 J   13.0 I/mJ    93.4 s\n                556:  3731     6.7 C/MHz    276 mW   22.2 J   13.5 I/mJ    80.4 s\n                652:  4344     6.7 C/MHz    312 mW   21.5 J   13.9 I/mJ    69.1 s\n                729:  4852     6.6 C/MHz    351 mW   21.7 J   13.8 I/mJ    61.9 s\n                806:  5368     6.7 C/MHz    379 mW   21.2 J   14.1 I/mJ    55.9 s\n                883:  5875     6.7 C/MHz    421 mW   21.5 J   14.0 I/mJ    51.1 s\n                940:  6285     6.7 C/MHz    445 mW   21.3 J   14.1 I/mJ    47.8 s\n               1036: \n[ 2024.707370]  6885     6.6 C/MHz    513 mW   22.4 J   13.4 I/mJ    43.6 s\n               1113:  7411     6.7 C/MHz    581 mW   23.5 J   12.8 I/mJ    40.5 s\n               1190:  7944     6.7 C/MHz    631 mW   23.9 J   12.6 I/mJ    37.8 s\n               1248:  8279     6.6 C/MHz    661 mW   24.0 J   12.5 I/mJ    36.3 s\n               1324:  8790     6.6 C/MHz    768 mW   26.2 J   11.4 I/mJ    34.2 s\n               1401:  9371     6.7 C/MHz    863 mW   27.6 J   10.9 I/mJ    32.0 s\n               1478:  9808     6.6 C/MHz    904 mW   27.7 J   10.8 I/mJ    30.6 s\n               1555: 10420     6.7 C/MHz   1036 mW   29.9 J   10.0 I/mJ    28.8 s\n               1632: 10925     6.7 C/MHz   1132 mW   31.1 J    9.6 I/mJ    27.5 s\n               1708: 11367     6.7 C/MHz   1246 mW   32.9 J    9.1 I/mJ    26.4 s\n               1785: 11914     6.7 C/MHz   1348 mW   34.0 J    8.8 I/mJ    25.2 s\n               1824: \n[ 2459.168234] FG: comp_temp_by_chg_current: fg_temp = 300 comp_temp1 = 270 comp_temp2 = 270 delta1 = -30 delta2 = 0 avg_chg_curr = 0 now_chg_curr = 0 batt_charging = 0\n[ 2464.651102] 12157     6.7 C/MHz   1490 mW   36.8 J    8.1 I/mJ    24.7 s\n               1920: 12853     6.7 C/MHz   1680 mW   39.3 J    7.6 I/mJ    23.4 s\n               1996: 13367     6.7 C/MHz   1908 mW   42.9 J    7.0 I/mJ    22.5 s\n               2073: 13757     6.6 C/MHz   2206 mW   48.2 J    6.2 I/mJ    21.8 s\n               2150: \n[ 2559.361080] FG: comp_temp_by_chg_current: fg_temp = 307 comp_temp1 = 278 comp_temp2 = 278 delta1 = -29 delta2 = 0 avg_chg_curr = 0 now_chg_curr = 0 batt_charging = 0\n[ 2587.601047] IRQ1 no longer affine to CPU2\n[ 2587.625617] 14277     6.6 C/MHz   2337 mW   49.2 J    6.1 I/mJ    21.0 s\n               \n               \n               Benchmark finished!\n[ 2587.654227] \n               real\t43m4.302s\n               user\t35m51.611s\n               sys\t0m2.822s\n"
  },
  {
    "path": "results/msm8996/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  1:          1     GICv3  62 Level     arch_mem_timer\n  4:     422696     GICv3  27 Edge      arch_timer\n 16:          0   msmgpio   9 Edge      nfc-548\n 17:          0   msmgpio  10 Edge      VSYNC_GPIO\n 44:          0   msmgpio  37 Edge      msm_pcie_wake\n 45:          1   msmgpio  38 Edge      spi8.1\n 97:          0   msmgpio  90 Edge      anx7816\n102:          0   msmgpio  95 Edge      74a4900.sdhci cd\n131:          0   msmgpio 124 Edge      hall_ic\n132:          1   msmgpio 125 Edge      lge_touch\n138:          0   msmgpio 131 Edge      cbl_det_irq\n139:          0   msmgpio 132 Edge      i2c_irq\n157:          0     GICv3 115 Edge      MDSS\n158:          0     GICv3 483 Edge      smp2p\n159:          0     GICv3 190 Edge      smp2p\n160:          0     GICv3 210 Edge      smp2p\n162:         57     GICv3 138 Level     75ba000.spi\n163:          1     GICv3 271 Level     sps\n165:          0  pmic_arb 37748742 Edge      pm8994_tz\n166:          0  pmic_arb 8388611 Edge      qpnp_kpdpwr_status\n167:          0  pmic_arb 8454147 Edge      qpnp_resin_status\n169:          0  pmic_arb 8716291 Edge      qpnp_kpdpwr_resin_bark\n172:          0  pmic_arb 54722570 Edge      qpnp_adc_tm_high_interrupt\n173:          0  pmic_arb 54788106 Edge      qpnp_adc_tm_low_interrupt\n174:          0  pmic_arb 606076965 Edge      bcl_ibat_interrupt\n175:          0  pmic_arb 606142501 Edge      bcl_vbat_interrupt\n177:          0  pmic_arb 588447791 Edge      qpnp_vadc_high_interrupt\n178:          0  pmic_arb 588513327 Edge      qpnp_vadc_low_interrupt\n179:          0  pmic_arb 1031929869 Edge      qpnp_wled_sc_irq\n180:          0  pmic_arb 1006632992 Edge      haptics_sc_irq\n181:          0  pmic_arb 1006698528 Edge      haptics_play_irq\n185:          6     GICv3 132 Level     i2c-msm-v2-irq\n186:          0     GICv3 133 Level     i2c-msm-v2-irq\n187:          0     GICv3 134 Level     i2c-msm-v2-irq\n190:          0     GICv3 195 Level     ngd_slim_irq\n194:         67     GICv3 157 Edge      mmc0\n195:          3     GICv3 253 Edge      74a4900.sdhci\n196:          0     GICv3 290 Edge      630000.ufsice\n197:          0     GICv3 493 Edge      7443000.sdcc1ice\n198:        414     GICv3 297 Edge      ufshcd\n199:          0     GICv3 437 Edge      int_msi\n206:          0     GICv3 283 Edge      int_pls_err\n207:          0     GICv3 284 Edge      int_aer_legacy\n209:          0     GICv3 286 Edge      int_pls_link_down\n243:          0     GICv3 481 Edge      qcom,smd-modem\n244:          0     GICv3 188 Edge      qcom,smd-adsp\n245:          0     GICv3 208 Edge      qcom,smd-dsps\n246:        291     GICv3 200 Edge      qcom,smd-rpm, qcom,glink-smem-native-xprt-rpm\n247:          0     GICv3  60 Edge      apps_wdog_bark\n249:          0     GICv3 379 Edge      hs_phy_irq\n250:          0     GICv3 275 Level     ss_phy_irq\n251:          0     GICv3 212 Edge      msm_dwc3\n252:          0     GICv3 194 Edge      adsp\n253:          0     GICv3 422 Edge      slpi\n254:          0     GICv3 480 Edge      modem\n255:          0     GICv3 490 Level     tsens_interrupt\n256:          0     GICv3 477 Level     tsens_critical_interrupt\n257:          0     GICv3 238 Level     sps\n259:          0     GICv3 484 Edge      qcom,glink-smem-native-xprt-modem\n260:          0     GICv3 189 Edge      qcom,glink-smem-native-xprt-adsp\n261:          0     GICv3 211 Edge      qcom,glink-smem-native-xprt-dsps\n269:          0     GICv3  55 Level     lmh-interrupt\n270:        769     GICv3  80 Edge      cpr3\n271:          0     GICv3  79 Edge      cpr3_ceiling\n272:          0     GICv3 198 Edge      cpr3\n273:          0     GICv3 110 Edge      csiphy\n274:          0     GICv3 111 Edge      csiphy\n275:          0     GICv3 112 Edge      csiphy\n276:          0     GICv3 328 Edge      csid\n277:          0     GICv3 329 Edge      csid\n278:          0     GICv3 330 Edge      csid\n279:          0     GICv3 331 Edge      csid\n280:          0     GICv3 341 Edge      ispif\n281:          0     GICv3 346 Edge      vfe\n282:          0     GICv3 347 Edge      vfe\n287:          0     GICv3 325 Edge      fd\n288:          0     GICv3 327 Edge      cci\n289:          0     GICv3 332 Level     kgsl-3d0\n290:          0     GICv3 203 Edge      681b8.qcom,mpm\n291:          0     GICv3  99 Level     arm-smmu global fault\n295:          0     GICv3 366 Level     arm-smmu global fault\n298:          0     GICv3 108 Level     arm-smmu global fault\n301:          0     GICv3 318 Level     arm-smmu global fault\n302:          0     GICv3 367 Level     arm-smmu-context-fault\n303:          0     GICv3 368 Level     arm-smmu-context-fault\n304:          0     GICv3 369 Level     arm-smmu-context-fault\n305:          0     GICv3 370 Level     arm-smmu-context-fault\n309:          0     GICv3 105 Level     arm-smmu global fault\n312:          0     GICv3 385 Level     arm-smmu global fault\n315:          0     GICv3 296 Level     arm-smmu global fault\n319:          0     GICv3 436 Level     arm-smmu global fault\n320:          0     GICv3 258 Level     arm-smmu-context-fault\n321:          0     GICv3 425 Level     arm-smmu-context-fault\n322:          0     GICv3 426 Level     arm-smmu-context-fault\n323:          0     GICv3 427 Level     arm-smmu-context-fault\n324:          0     GICv3 428 Level     arm-smmu-context-fault\n325:          0     GICv3 429 Level     arm-smmu-context-fault\n326:          0     GICv3 430 Level     arm-smmu-context-fault\n327:          0     GICv3 431 Level     arm-smmu-context-fault\n328:          0     GICv3 432 Level     arm-smmu-context-fault\n332:          0     GICv3 394 Level     arm-smmu global fault\n340:          0     GICv3 403 Level     arm-smmu global fault\n345:          0     GICv3 413 Level     arm-smmu global fault\n354:          0     GICv3 319 Level     msm_vidc\n355:          0     GICv3 461 Level     vmem\n359:          0     GICv3 365 Edge      ipa\n360:         19     GICv3 464 Level     sps\n362:          0     GICv3 216 Level     tsens_interrupt\n363:          0     GICv3 462 Level     tsens_critical_interrupt\n365:          0     GICv3 131 Level     i2c-msm-v2-irq\n366:          0     GICv3 135 Level     75b7000.spi\n367:          0  pmic_arb 101777431 Edge      qpnp_rtc_alarm\n368:          0  pmic_arb 604110883 Edge      full-soc\n370:         13  pmic_arb 604241955 Edge      delta-soc\n371:          0  pmic_arb 604307491 Edge      first-est-done\n372:          0  pmic_arb 605028388 Edge      soft-cold\n373:          0  pmic_arb 605093924 Edge      soft-hot\n374:          0  pmic_arb 605421604 Edge      batt-missing\n375:          0  pmic_arb 605159460 Edge      vbatt-low\n376:     169183  pmic_arb 608174108 Edge      mem-avail\n377:          0  smp2p_gpio   0 Edge      modem\n378:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n379:          0  smp2p_gpio   2 Edge      modem\n380:          0  smp2p_gpio   3 Edge      modem\n409:          0  smp2p_gpio   0 Edge      adsp\n410:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n411:          0  smp2p_gpio   2 Edge      adsp\n412:          0  smp2p_gpio   3 Edge      adsp\n441:          0  smp2p_gpio   0 Edge      slpi\n442:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n443:          0  smp2p_gpio   2 Edge      slpi\n444:          0  smp2p_gpio   3 Edge      slpi\n537:          0     GICv3 163 Edge      dwc3\n539:          0  pmic_arb 553648144 Edge      chg-error\n540:          0  pmic_arb 554041360 Edge      chg-taper-thr\n541:          0  pmic_arb 554106896 Edge      chg-tcc-thr\n542:          0  pmic_arb 553975824 Edge      chg-rechg-thr\n543:          0  pmic_arb 553910288 Edge      chg-p2f-thr\n544:          0  pmic_arb 555745298 Edge      batt-hot\n545:          0  pmic_arb 555810834 Edge      batt-warm\n546:          0  pmic_arb 555941906 Edge      batt-cool\n547:          0  pmic_arb 555876370 Edge      batt-cold\n548:          0  pmic_arb 556138514 Edge      batt-missing\n549:          0  pmic_arb 556072978 Edge      batt-low\n550:          0  pmic_arb 556793875 Edge      usbin-uv\n551:          0  pmic_arb 556859411 Edge      usbin-ov\n552:          0  pmic_arb 556924947 Edge      usbin-src-det\n553:          0  pmic_arb 557121555 Edge      aicl-done\n554:          0  pmic_arb 556990483 Edge      otg-fail\n555:          0  pmic_arb 557056019 Edge      otg-oc\n556:          0  pmic_arb 557187091 Edge      usbid-change\n557:          0  pmic_arb 557842452 Edge      dcin-uv\n558:          0  pmic_arb 559939605 Edge      power-ok\n559:          0  pmic_arb 560005141 Edge      temp-shutdown\n560:          0  pmic_arb 560070677 Edge      wdog-timeout\n561:          0  pmic_arb 202375374 Edge      volume_up\n562:          0  pmic_arb 204472528 Edge      cam_snapshot\n563:          0  pmic_arb 205521088 Edge      cam_focus\nIPI0:       182       Rescheduling interrupts\nIPI1:         0       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       Timer broadcast interrupts\nIPI4:        55       IRQ work interrupts\nIPI5:         0       CPU wakeup interrupts\nIPI6:         0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/msm8996/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       \n  1:          0          0          0          0     GICv3  62 Level     arch_mem_timer\n  4:        934         41         37         37     GICv3  27 Edge      arch_timer\n 16:          0          0          0          0   msmgpio   9 Edge      nfc-548\n 17:          0          0          0          0   msmgpio  10 Edge      VSYNC_GPIO\n 44:          0          0          0          0   msmgpio  37 Edge      msm_pcie_wake\n 45:          1          0          0          0   msmgpio  38 Edge      spi8.1\n 97:          0          0          0          0   msmgpio  90 Edge      anx7816\n102:          0          0          0          0   msmgpio  95 Edge      74a4900.sdhci cd\n131:          0          0          0          0   msmgpio 124 Edge      hall_ic\n132:          1          0          0          0   msmgpio 125 Edge      lge_touch\n138:          0          0          0          0   msmgpio 131 Edge      cbl_det_irq\n139:          0          0          0          0   msmgpio 132 Edge      i2c_irq\n157:          0          0          0          0     GICv3 115 Edge      MDSS\n158:          0          0          0          0     GICv3 483 Edge      smp2p\n159:          0          0          0          0     GICv3 190 Edge      smp2p\n160:          0          0          0          0     GICv3 210 Edge      smp2p\n162:         57          0          0          0     GICv3 138 Level     75ba000.spi\n163:          1          0          0          0     GICv3 271 Level     sps\n165:          0          0          0          0  pmic_arb 37748742 Edge      pm8994_tz\n166:          0          0          0          0  pmic_arb 8388611 Edge      qpnp_kpdpwr_status\n167:          0          0          0          0  pmic_arb 8454147 Edge      qpnp_resin_status\n169:          0          0          0          0  pmic_arb 8716291 Edge      qpnp_kpdpwr_resin_bark\n172:          0          0          0          0  pmic_arb 54722570 Edge      qpnp_adc_tm_high_interrupt\n173:          0          0          0          0  pmic_arb 54788106 Edge      qpnp_adc_tm_low_interrupt\n174:          0          0          0          0  pmic_arb 606076965 Edge      bcl_ibat_interrupt\n175:          0          0          0          0  pmic_arb 606142501 Edge      bcl_vbat_interrupt\n177:          0          0          0          0  pmic_arb 588447791 Edge      qpnp_vadc_high_interrupt\n178:          0          0          0          0  pmic_arb 588513327 Edge      qpnp_vadc_low_interrupt\n179:          0          0          0          0  pmic_arb 1031929869 Edge      qpnp_wled_sc_irq\n180:          0          0          0          0  pmic_arb 1006632992 Edge      haptics_sc_irq\n181:          0          0          0          0  pmic_arb 1006698528 Edge      haptics_play_irq\n185:          6          0          0          0     GICv3 132 Level     i2c-msm-v2-irq\n186:          0          0          0          0     GICv3 133 Level     i2c-msm-v2-irq\n187:          0          0          0          0     GICv3 134 Level     i2c-msm-v2-irq\n190:          0          0          0          0     GICv3 195 Level     ngd_slim_irq\n194:         66          0          0          0     GICv3 157 Edge      mmc0\n195:          2          0          0          0     GICv3 253 Edge      74a4900.sdhci\n196:          0          0          0          0     GICv3 290 Edge      630000.ufsice\n197:          0          0          0          0     GICv3 493 Edge      7443000.sdcc1ice\n198:        402          0          0          0     GICv3 297 Edge      ufshcd\n199:          0          0          0          0     GICv3 437 Edge      int_msi\n206:          0          0          0          0     GICv3 283 Edge      int_pls_err\n207:          0          0          0          0     GICv3 284 Edge      int_aer_legacy\n209:          0          0          0          0     GICv3 286 Edge      int_pls_link_down\n243:          0          0          0          0     GICv3 481 Edge      qcom,smd-modem\n244:          0          0          0          0     GICv3 188 Edge      qcom,smd-adsp\n245:          0          0          0          0     GICv3 208 Edge      qcom,smd-dsps\n246:        235          0          0          0     GICv3 200 Edge      qcom,smd-rpm, qcom,glink-smem-native-xprt-rpm\n247:          0          0          0          0     GICv3  60 Edge      apps_wdog_bark\n249:          0          0          0          0     GICv3 379 Edge      hs_phy_irq\n250:          0          0          0          0     GICv3 275 Level     ss_phy_irq\n251:          0          0          0          0     GICv3 212 Edge      msm_dwc3\n252:          0          0          0          0     GICv3 194 Edge      adsp\n253:          0          0          0          0     GICv3 422 Edge      slpi\n254:          0          0          0          0     GICv3 480 Edge      modem\n255:          0          0          0          0     GICv3 490 Level     tsens_interrupt\n256:          0          0          0          0     GICv3 477 Level     tsens_critical_interrupt\n257:          0          0          0          0     GICv3 238 Level     sps\n259:          0          0          0          0     GICv3 484 Edge      qcom,glink-smem-native-xprt-modem\n260:          0          0          0          0     GICv3 189 Edge      qcom,glink-smem-native-xprt-adsp\n261:          0          0          0          0     GICv3 211 Edge      qcom,glink-smem-native-xprt-dsps\n269:          0          0          0          0     GICv3  55 Level     lmh-interrupt\n270:         29          0          0          0     GICv3  80 Edge      cpr3\n271:          0          0          0          0     GICv3  79 Edge      cpr3_ceiling\n272:          0          0          0          0     GICv3 198 Edge      cpr3\n273:          0          0          0          0     GICv3 110 Edge      csiphy\n274:          0          0          0          0     GICv3 111 Edge      csiphy\n275:          0          0          0          0     GICv3 112 Edge      csiphy\n276:          0          0          0          0     GICv3 328 Edge      csid\n277:          0          0          0          0     GICv3 329 Edge      csid\n278:          0          0          0          0     GICv3 330 Edge      csid\n279:          0          0          0          0     GICv3 331 Edge      csid\n280:          0          0          0          0     GICv3 341 Edge      ispif\n281:          0          0          0          0     GICv3 346 Edge      vfe\n282:          0          0          0          0     GICv3 347 Edge      vfe\n287:          0          0          0          0     GICv3 325 Edge      fd\n288:          0          0          0          0     GICv3 327 Edge      cci\n289:          0          0          0          0     GICv3 332 Level     kgsl-3d0\n290:          0          0          0          0     GICv3 203 Edge      681b8.qcom,mpm\n291:          0          0          0          0     GICv3  99 Level     arm-smmu global fault\n295:          0          0          0          0     GICv3 366 Level     arm-smmu global fault\n298:          0          0          0          0     GICv3 108 Level     arm-smmu global fault\n301:          0          0          0          0     GICv3 318 Level     arm-smmu global fault\n302:          0          0          0          0     GICv3 367 Level     arm-smmu-context-fault\n303:          0          0          0          0     GICv3 368 Level     arm-smmu-context-fault\n304:          0          0          0          0     GICv3 369 Level     arm-smmu-context-fault\n305:          0          0          0          0     GICv3 370 Level     arm-smmu-context-fault\n309:          0          0          0          0     GICv3 105 Level     arm-smmu global fault\n312:          0          0          0          0     GICv3 385 Level     arm-smmu global fault\n315:          0          0          0          0     GICv3 296 Level     arm-smmu global fault\n319:          0          0          0          0     GICv3 436 Level     arm-smmu global fault\n320:          0          0          0          0     GICv3 258 Level     arm-smmu-context-fault\n321:          0          0          0          0     GICv3 425 Level     arm-smmu-context-fault\n322:          0          0          0          0     GICv3 426 Level     arm-smmu-context-fault\n323:          0          0          0          0     GICv3 427 Level     arm-smmu-context-fault\n324:          0          0          0          0     GICv3 428 Level     arm-smmu-context-fault\n325:          0          0          0          0     GICv3 429 Level     arm-smmu-context-fault\n326:          0          0          0          0     GICv3 430 Level     arm-smmu-context-fault\n327:          0          0          0          0     GICv3 431 Level     arm-smmu-context-fault\n328:          0          0          0          0     GICv3 432 Level     arm-smmu-context-fault\n332:          0          0          0          0     GICv3 394 Level     arm-smmu global fault\n340:          0          0          0          0     GICv3 403 Level     arm-smmu global fault\n345:          0          0          0          0     GICv3 413 Level     arm-smmu global fault\n354:          0          0          0          0     GICv3 319 Level     msm_vidc\n355:          0          0          0          0     GICv3 461 Level     vmem\n359:          0          0          0          0     GICv3 365 Edge      ipa\n360:         19          0          0          0     GICv3 464 Level     sps\n362:          0          0          0          0     GICv3 216 Level     tsens_interrupt\n363:          0          0          0          0     GICv3 462 Level     tsens_critical_interrupt\n365:          0          0          0          0     GICv3 131 Level     i2c-msm-v2-irq\n366:          0          0          0          0     GICv3 135 Level     75b7000.spi\n367:          0          0          0          0  pmic_arb 101777431 Edge      qpnp_rtc_alarm\n368:          0          0          0          0  pmic_arb 604110883 Edge      full-soc\n370:          0          0          0          0  pmic_arb 604241955 Edge      delta-soc\n371:          0          0          0          0  pmic_arb 604307491 Edge      first-est-done\n372:          0          0          0          0  pmic_arb 605028388 Edge      soft-cold\n373:          0          0          0          0  pmic_arb 605093924 Edge      soft-hot\n374:          0          0          0          0  pmic_arb 605421604 Edge      batt-missing\n375:          0          0          0          0  pmic_arb 605159460 Edge      vbatt-low\n376:        126          0          0          0  pmic_arb 608174108 Edge      mem-avail\n377:          0          0          0          0  smp2p_gpio   0 Edge      modem\n378:          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n379:          0          0          0          0  smp2p_gpio   2 Edge      modem\n380:          0          0          0          0  smp2p_gpio   3 Edge      modem\n409:          0          0          0          0  smp2p_gpio   0 Edge      adsp\n410:          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n411:          0          0          0          0  smp2p_gpio   2 Edge      adsp\n412:          0          0          0          0  smp2p_gpio   3 Edge      adsp\n441:          0          0          0          0  smp2p_gpio   0 Edge      slpi\n442:          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n443:          0          0          0          0  smp2p_gpio   2 Edge      slpi\n444:          0          0          0          0  smp2p_gpio   3 Edge      slpi\n537:          0          0          0          0     GICv3 163 Edge      dwc3\n539:          0          0          0          0  pmic_arb 553648144 Edge      chg-error\n540:          0          0          0          0  pmic_arb 554041360 Edge      chg-taper-thr\n541:          0          0          0          0  pmic_arb 554106896 Edge      chg-tcc-thr\n542:          0          0          0          0  pmic_arb 553975824 Edge      chg-rechg-thr\n543:          0          0          0          0  pmic_arb 553910288 Edge      chg-p2f-thr\n544:          0          0          0          0  pmic_arb 555745298 Edge      batt-hot\n545:          0          0          0          0  pmic_arb 555810834 Edge      batt-warm\n546:          0          0          0          0  pmic_arb 555941906 Edge      batt-cool\n547:          0          0          0          0  pmic_arb 555876370 Edge      batt-cold\n548:          0          0          0          0  pmic_arb 556138514 Edge      batt-missing\n549:          0          0          0          0  pmic_arb 556072978 Edge      batt-low\n550:          0          0          0          0  pmic_arb 556793875 Edge      usbin-uv\n551:          0          0          0          0  pmic_arb 556859411 Edge      usbin-ov\n552:          0          0          0          0  pmic_arb 556924947 Edge      usbin-src-det\n553:          0          0          0          0  pmic_arb 557121555 Edge      aicl-done\n554:          0          0          0          0  pmic_arb 556990483 Edge      otg-fail\n555:          0          0          0          0  pmic_arb 557056019 Edge      otg-oc\n556:          0          0          0          0  pmic_arb 557187091 Edge      usbid-change\n557:          0          0          0          0  pmic_arb 557842452 Edge      dcin-uv\n558:          0          0          0          0  pmic_arb 559939605 Edge      power-ok\n559:          0          0          0          0  pmic_arb 560005141 Edge      temp-shutdown\n560:          0          0          0          0  pmic_arb 560070677 Edge      wdog-timeout\n561:          0          0          0          0  pmic_arb 202375374 Edge      volume_up\n562:          0          0          0          0  pmic_arb 204472528 Edge      cam_snapshot\n563:          0          0          0          0  pmic_arb 205521088 Edge      cam_focus\nIPI0:         5         71         70         69       Rescheduling interrupts\nIPI1:         0        111         11         13       Function call interrupts\nIPI2:         0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0       Timer broadcast interrupts\nIPI4:        52          0          1          0       IRQ work interrupts\nIPI5:         0          0          0          0       CPU wakeup interrupts\nIPI6:         0          0          0          0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/msm8996/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:02 bash /init kswitch\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [ksoftirqd/0]\n    5 root      0:00 [kworker/0:0H]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [migration/1]\n   15 root      0:00 [ksoftirqd/1]\n   17 root      0:00 [kworker/1:0H]\n   18 root      0:00 [rcuop/1]\n   19 root      0:00 [rcuos/1]\n   20 root      0:00 [rcuob/1]\n   21 root      0:00 [migration/2]\n   22 root      0:00 [ksoftirqd/2]\n   23 root      0:00 [kworker/2:0]\n   24 root      0:00 [kworker/2:0H]\n   25 root      0:00 [rcuop/2]\n   26 root      0:00 [rcuos/2]\n   27 root      0:00 [rcuob/2]\n   28 root      0:00 [migration/3]\n   29 root      0:00 [ksoftirqd/3]\n   30 root      0:00 [kworker/3:0]\n   31 root      0:00 [kworker/3:0H]\n   32 root      0:00 [rcuop/3]\n   33 root      0:00 [rcuos/3]\n   34 root      0:00 [rcuob/3]\n   35 root      0:00 [netns]\n   36 root      0:00 [perf]\n   37 root      0:00 [smd_channel_clo]\n   38 root      0:00 [dsps_smd_trans_]\n   39 root      0:00 [lpass_smd_trans]\n   40 root      0:00 [mpss_smd_trans_]\n   41 root      0:00 [wcnss_smd_trans]\n   42 root      0:00 [rpm_smd_trans_g]\n   43 root      0:00 [msm_watchdog]\n   45 root      0:00 [rpm_requests]\n   46 root      0:00 [smem_native_mps]\n   47 root      0:00 [mpss_smem_glink]\n   48 root      0:00 [smem_native_lpa]\n   49 root      0:00 [lpass_smem_glin]\n   50 root      0:00 [smem_native_dsp]\n   51 root      0:00 [dsps_smem_glink]\n   52 root      0:00 [smem_native_rpm]\n   53 root      0:00 [rpm_smem_glink_]\n   55 root      0:00 [deferwq]\n   56 root      0:00 [irq/270-cpr3]\n   57 root      0:00 [irq/271-cpr3_ce]\n   58 root      0:00 [irq/272-cpr3]\n   59 root      0:00 [mpm]\n   61 root      0:00 [writeback]\n   62 root      0:00 [kcompactd0]\n   63 root      0:00 [crypto]\n   64 root      0:00 [bioset]\n   65 root      0:00 [kblockd]\n   68 root      0:00 [system]\n   69 root      0:00 [ipa_power_mgmt]\n   70 root      0:00 [sps_ipa_power_m]\n   71 root      0:00 [kworker/u9:0]\n   72 root      0:00 [ipawq15]\n   73 root      0:00 [iparepwq15]\n   74 root      0:00 [kworker/u9:1]\n   75 root      0:00 [ipawq48]\n   76 root      0:00 [iparepwq48]\n   77 root      0:00 [ipawq14]\n   78 root      0:00 [iparepwq14]\n   79 root      0:00 [ipa_rm_wq]\n   80 root      0:00 [ipa_interrupt_w]\n   81 root      0:00 [ipa_holb_wq]\n   82 root      0:00 [irq/291-arm-smm]\n   83 root      0:00 [irq/295-arm-smm]\n   84 root      0:00 [irq/298-arm-smm]\n   85 root      0:00 [irq/301-arm-smm]\n   86 root      0:00 [irq/309-arm-smm]\n   87 root      0:00 [irq/312-arm-smm]\n   88 root      0:00 [irq/315-arm-smm]\n   89 root      0:00 [irq/319-arm-smm]\n   90 root      0:00 [irq/332-arm-smm]\n   91 root      0:00 [irq/340-arm-smm]\n   92 root      0:00 [irq/345-arm-smm]\n   93 root      0:00 [devfreq_wq]\n   94 root      0:00 [governor_msm_ad]\n   95 root      0:00 [cfg80211]\n   96 root      0:00 [irq/175-bcl_vba]\n   97 root      0:00 [irq/174-bcl_iba]\n  115 root      0:00 [kswapd0]\n  116 root      0:00 [vmstat]\n  117 root      0:00 [fsnotify_mark]\n  118 root      0:00 [ecryptfs-kthrea]\n  152 root      0:00 [ad_calc_wq]\n  153 root      0:00 [rot_workq_0]\n  154 root      0:00 [rot_workq_1]\n  155 root      0:00 [mdss_dsi_event]\n  156 root      0:00 [mdss_dsi_dba]\n  157 root      0:00 [mdss_dsi_dba]\n  158 root      0:00 [hdmi_tx_workq]\n  159 root      0:00 [cwb_wq]\n  160 root      0:00 [vsync_retire_wo]\n  161 root      0:00 [hdcp_1x_0]\n  162 root      0:00 [hdcp_tz_lib]\n  163 root      0:00 [hdmi_hdcp2p2]\n  164 root      0:00 [cwb_wq]\n  165 root      0:00 [cwb_wq]\n  166 root      0:00 [anx7816_work]\n  167 root      0:00 [glink_ssr_wq]\n  168 root      0:00 [irq/97-anx7816]\n  169 root      0:00 [glink_lbsrv]\n  170 root      0:00 [glink_xprt_wq]\n  171 root      0:00 [IPCRTR_mpss_smd]\n  172 root      0:00 [IPCRTR_lpass_sm]\n  173 root      0:00 [IPCRTR]\n  174 root      0:00 [IPCRTR_dsps_smd]\n  175 root      0:00 [IPCRTR]\n  176 root      0:00 [apr_driver]\n  177 root      0:00 [IPCRTR]\n  178 root      0:00 [glink_pkt_wq]\n  179 root      0:00 [mem_share_svc]\n  180 root      0:00 [qmi_hndl0000000]\n  182 root      0:00 [msm_ipc_router]\n  183 root      0:00 [k_hsuart]\n  184 root      0:00 [msm_serial_hs_0]\n  185 root      0:00 [msm_serial_hs_0]\n  186 root      0:00 [hwrng]\n  188 root      0:00 [diag_real_time_]\n  189 root      0:00 [diag_wq]\n  190 root      0:00 [DIAG_USB_diag]\n  191 root      0:00 [diag_cntl_wq]\n  192 root      0:00 [diag_dci_wq]\n  193 root      0:00 [DIAG_SMD_MODEM_]\n  194 root      0:00 [DIAG_SMD_MODEM_]\n  195 root      0:00 [DIAG_SMD_MODEM_]\n  196 root      0:00 [DIAG_SMD_MODEM_]\n  197 root      0:00 [DIAG_SMD_MODEM_]\n  198 root      0:00 [DIAG_SMD_LPASS_]\n  199 root      0:00 [DIAG_SMD_LPASS_]\n  200 root      0:00 [DIAG_SMD_LPASS_]\n  201 root      0:00 [DIAG_SMD_LPASS_]\n  202 root      0:00 [DIAG_SMD_LPASS_]\n  203 root      0:00 [DIAG_SMD_WCNSS_]\n  204 root      0:00 [DIAG_SMD_WCNSS_]\n  205 root      0:00 [DIAG_SMD_WCNSS_]\n  206 root      0:00 [DIAG_SMD_WCNSS_]\n  207 root      0:00 [DIAG_SMD_WCNSS_]\n  208 root      0:00 [DIAG_SMD_SENSOR]\n  209 root      0:00 [DIAG_SMD_SENSOR]\n  210 root      0:00 [DIAG_SMD_SENSOR]\n  211 root      0:00 [DIAG_SMD_SENSOR]\n  212 root      0:00 [DIAG_SMD_SENSOR]\n  213 root      0:00 [DIAG_SMD_DIAG_C]\n  214 root      0:00 [DIAG_SMD_DIAG_D]\n  215 root      0:00 [DIAG_SMD_DIAG_C]\n  216 root      0:00 [DIAG_SMD_DIAG_D]\n  217 root      0:00 [DIAG_SMD_DIAG_D]\n  218 root      0:00 [DIAG_SMD_CDSP_C]\n  219 root      0:00 [DIAG_SMD_CDSP_D]\n  220 root      0:00 [DIAG_SMD_CDSP_C]\n  221 root      0:00 [DIAG_SMD_CDSP_D]\n  222 root      0:00 [DIAG_SMD_CDSP_D]\n  223 root      0:00 [DIAG_SOCKMODEM_]\n  224 root      0:00 [DIAG_SOCKMODEM_]\n  225 root      0:00 [DIAG_SOCKMODEM_]\n  226 root      0:00 [DIAG_SOCKMODEM_]\n  227 root      0:00 [DIAG_SOCKMODEM_]\n  228 root      0:00 [DIAG_SOCKLPASS_]\n  229 root      0:00 [DIAG_SOCKLPASS_]\n  230 root      0:00 [DIAG_SOCKLPASS_]\n  231 root      0:00 [DIAG_SOCKLPASS_]\n  232 root      0:00 [DIAG_SOCKLPASS_]\n  233 root      0:00 [DIAG_SOCKWCNSS_]\n  234 root      0:00 [DIAG_SOCKWCNSS_]\n  235 root      0:00 [DIAG_SOCKWCNSS_]\n  236 root      0:00 [DIAG_SOCKWCNSS_]\n  237 root      0:00 [DIAG_SOCKWCNSS_]\n  238 root      0:00 [DIAG_SOCKSENSOR]\n  239 root      0:00 [DIAG_SOCKSENSOR]\n  240 root      0:00 [DIAG_SOCKSENSOR]\n  241 root      0:00 [DIAG_SOCKSENSOR]\n  242 root      0:00 [DIAG_SOCKSENSOR]\n  243 root      0:00 [DIAG_SOCKDIAG_C]\n  244 root      0:00 [DIAG_SOCKDIAG_D]\n  245 root      0:00 [DIAG_SOCKDIAG_C]\n  246 root      0:00 [DIAG_SOCKDIAG_D]\n  247 root      0:00 [DIAG_SOCKDIAG_D]\n  248 root      0:00 [DIAG_SOCKCDSP_C]\n  249 root      0:00 [DIAG_SOCKCDSP_D]\n  250 root      0:00 [DIAG_SOCKCDSP_C]\n  251 root      0:00 [DIAG_SOCKCDSP_D]\n  252 root      0:00 [DIAG_SOCKCDSP_D]\n  253 root      0:00 [DIAG_CNTL_SOCKE]\n  254 root      0:00 [DIAG_GLINK_DIAG]\n  255 root      0:00 [DIAG_GLINK_DIAG]\n  256 root      0:00 [DIAG_GLINK_DIAG]\n  257 root      0:00 [DIAG_GLINK_DIAG]\n  258 root      0:00 [DIAG_GLINK_DIAG]\n  259 root      0:00 [kgsl-workqueue]\n  260 root      0:00 [kgsl-mementry]\n  261 root      0:00 [kgsl_worker_thr]\n  262 root      0:00 [kgsl-events]\n  263 root      0:00 [kgsl_devfreq_wq]\n  264 root      0:00 [bioset]\n  265 root      0:00 [bioset]\n  266 root      0:00 [bioset]\n  267 root      0:00 [bioset]\n  268 root      0:00 [bioset]\n  269 root      0:00 [bioset]\n  270 root      0:00 [bioset]\n  271 root      0:00 [bioset]\n  272 root      0:00 [bioset]\n  273 root      0:00 [bioset]\n  274 root      0:00 [bioset]\n  275 root      0:00 [bioset]\n  276 root      0:00 [bioset]\n  277 root      0:00 [bioset]\n  278 root      0:00 [bioset]\n  279 root      0:00 [bioset]\n  280 root      0:00 [bioset]\n  281 root      0:00 [qcrypto_seq_res]\n  302 root      0:00 [scsi_eh_0]\n  303 root      0:00 [scsi_tmf_0]\n  304 root      0:00 [ufs_pm_qos_0]\n  305 root      0:00 [ufs_clk_gating_]\n  306 root      0:00 [ufs_clkscaling_]\n  307 root      0:00 [spi12]\n  308 root      0:00 [spi8]\n  309 root      0:00 [sharedmem_qmi_w]\n  310 root      0:00 [qmi_hndl0000000]\n  311 root      0:00 [k_sm_usb]\n  315 root      0:00 [anx_wq]\n  316 root      0:00 [k_gserial]\n  317 root      0:00 [irq/138-cbl_det]\n  318 root      0:00 [uether]\n  320 root      0:00 [touch_wq_log]\n  321 root      0:00 [irq/45-spi8.1]\n  322 root      0:00 [touch_wq]\n  323 root      0:00 [irq/132-lge_tou]\n  324 root      0:00 [bioset]\n  325 root      0:00 [bioset]\n  326 root      0:00 [bioset]\n  327 root      0:00 [msm_cci_wq]\n  328 root      0:00 [msm_cci_wq]\n  329 root      0:00 [bioset]\n  330 root      0:00 [bioset]\n  331 root      0:00 [bioset]\n  332 root      0:00 [bioset]\n  333 root      0:00 [bioset]\n  334 root      0:00 [bioset]\n  335 root      0:00 [bioset]\n  337 root      0:00 [msm_cpp_workque]\n  341 root      0:00 [kworker/0:1H]\n  343 root      0:00 [msm_vidc_worker]\n  344 root      0:00 [pm_workerq_venu]\n  345 root      0:00 [irq/302-arm-smm]\n  346 root      0:00 [irq/303-arm-smm]\n  347 root      0:00 [irq/304-arm-smm]\n  348 root      0:00 [irq/305-arm-smm]\n  349 root      0:00 [irq/372-soft-co]\n  350 root      0:00 [irq/373-soft-ho]\n  351 root      0:00 [irq/374-batt-mi]\n  352 root      0:00 [therm_core:noti]\n  353 root      0:00 [therm_core:noti]\n  354 root      0:00 [therm_core:noti]\n  355 root      0:00 [therm_core:noti]\n  356 root      0:00 [therm_core:noti]\n  357 root      0:00 [therm_core:noti]\n  358 root      0:00 [therm_core:noti]\n  359 root      0:00 [therm_core:noti]\n  360 root      0:00 [therm_core:noti]\n  361 root      0:00 [therm_core:noti]\n  362 root      0:00 [therm_core:noti]\n  363 root      0:00 [therm_core:noti]\n  364 root      0:00 [therm_core:noti]\n  365 root      0:00 [therm_core:noti]\n  366 root      0:00 [therm_core:noti]\n  367 root      0:00 [therm_core:noti]\n  368 root      0:00 [therm_core:noti]\n  369 root      0:00 [therm_core:noti]\n  370 root      0:00 [therm_core:noti]\n  371 root      0:00 [therm_core:noti]\n  372 root      0:00 [therm_core:noti]\n  373 root      0:00 [therm_core:noti]\n  374 root      0:00 [irq/255-tsens_i]\n  375 root      0:00 [irq/256-tsens_c]\n  376 root      0:00 [therm_core:noti]\n  377 root      0:00 [therm_core:noti]\n  378 root      0:00 [therm_core:noti]\n  379 root      0:00 [therm_core:noti]\n  380 root      0:00 [therm_core:noti]\n  381 root      0:00 [therm_core:noti]\n  382 root      0:00 [therm_core:noti]\n  383 root      0:00 [therm_core:noti]\n  384 root      0:00 [irq/362-tsens_i]\n  385 root      0:00 [irq/363-tsens_c]\n  386 root      0:00 [bt_drv]\n  387 root      0:00 [fm_drv_tx]\n  388 root      0:00 [fm_drv_rx]\n  389 root      0:00 [irq/179-qpnp_wl]\n  390 root      0:00 [irq/195-74a4900]\n  391 root      0:00 [irq/181-haptics]\n  392 root      0:00 [irq/180-haptics]\n  393 root      0:00 [irq/194-mmc0]\n  394 root      0:00 [irq/102-74a4900]\n  395 root      0:00 [binder]\n  396 root      0:00 [irq/320-arm-smm]\n  397 root      0:00 [uaudio_svc]\n  398 root      0:00 [qmi_hndl0000000]\n  399 root      0:00 [ipv6_addrconf]\n  400 root      0:00 [irq/411-adsp]\n  401 root      0:00 [sysmon_wq]\n  402 root      0:00 [qmi_svc_event_w]\n  403 root      0:00 [adsp]\n  404 root      0:00 [irq/443-slpi]\n  405 root      0:00 [sys_mon]\n  406 root      0:00 [slpi]\n  407 root      0:00 [sys_mon]\n  408 root      0:00 [irq/379-modem]\n  409 root      0:00 [k_sm_usb]\n  414 root      0:00 [chg_apsd]\n  416 root      0:00 [therm_core:noti]\n  417 root      0:00 [irq/539-chg-err]\n  418 root      0:00 [irq/540-chg-tap]\n  419 root      0:00 [irq/541-chg-tcc]\n  420 root      0:00 [irq/542-chg-rec]\n  421 root      0:00 [irq/543-chg-p2f]\n  422 root      0:00 [irq/544-batt-ho]\n  423 root      0:00 [irq/545-batt-wa]\n  424 root      0:00 [irq/546-batt-co]\n  425 root      0:00 [irq/547-batt-co]\n  426 root      0:00 [irq/548-batt-mi]\n  427 root      0:00 [irq/549-batt-lo]\n  428 root      0:00 [irq/550-usbin-u]\n  429 root      0:00 [irq/551-usbin-o]\n  430 root      0:00 [irq/552-usbin-s]\n  431 root      0:00 [irq/553-aicl-do]\n  432 root      0:00 [irq/554-otg-fai]\n  433 root      0:00 [irq/555-otg-oc]\n  434 root      0:00 [irq/556-usbid-c]\n  435 root      0:00 [irq/557-dcin-uv]\n  436 root      0:00 [irq/558-power-o]\n  437 root      0:00 [irq/559-temp-sh]\n  438 root      0:00 [irq/560-wdog-ti]\n  439 root      0:00 [k_sm_usb]\n  440 root      0:00 [irq/249-hs_phy_]\n  441 root      0:00 [irq/250-ss_phy_]\n  442 root      0:00 [irq/251-msm_dwc]\n  443 root      0:00 [usb_bam_wq]\n  444 root      0:00 [bioset]\n  445 root      0:00 [mmcqd/0]\n  450 root      0:00 [rq_stats]\n  451 root      0:00 [irq/321-arm-smm]\n  452 root      0:00 [irq/322-arm-smm]\n  453 root      0:00 [irq/323-arm-smm]\n  454 root      0:00 [irq/324-arm-smm]\n  455 root      0:00 [irq/325-arm-smm]\n  456 root      0:00 [irq/326-arm-smm]\n  457 root      0:00 [irq/327-arm-smm]\n  458 root      0:00 [irq/328-arm-smm]\n  459 root      0:00 [sb-1]\n  460 root      0:00 [ngd_rx_thread1]\n  461 root      0:00 [ngd_notify_sl1]\n  462 root      0:00 [msm_thermal:hot]\n  463 root      0:00 [msm_thermal:fre]\n  464 root      0:00 [msm_thermal:the]\n  465 root      0:00 [therm_core:noti]\n  466 root      0:00 [therm_core:noti]\n  467 root      0:00 [therm_core:noti]\n  468 root      0:00 [therm_core:noti]\n  469 root      0:00 [therm_core:noti]\n  470 root      0:00 [therm_core:noti]\n  471 root      0:00 [therm_core:noti]\n  472 root      0:00 [therm_core:noti]\n  473 root      0:00 [irq/269-lmh-int]\n  474 root      0:00 [ipa_A7_svc]\n  475 root      0:00 [qmi_hndl0000000]\n  476 root      0:00 [clnt_req]\n  477 root      0:00 [clnt_resp]\n  478 root      0:00 [clnt_req]\n  479 root      0:00 [kworker/1:1]\n  484 root      0:00 [dhd_watchdog_th]\n  485 root      0:00 [dhd_rpm_state_t]\n  496 root      0:00 [kworker/1:1H]\n  497 root      0:00 [kworker/1:2]\n  498 root      0:00 [kworker/2:1H]\n  499 root      0:00 [kworker/2:2]\n  500 root      0:00 [kworker/3:1H]\n  501 root      0:00 [kworker/3:2]\n  509 root      0:08 [kworker/0:5]\n  516 root      0:08 [kworker/0:6]\n  561 root      0:00 [kworker/u8:0]\n  576 root      0:00 [kworker/0:2]\n  599 root      0:00 [kworker/u8:2]\n  603 root      0:01 [kworker/0:3]\n  631 root      0:00 [kworker/0:0]\n  681 root      0:00 ps -A\n"
  },
  {
    "path": "results/msm8996/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,307200,2052.854152,6.6824679427083336,124.60653221037921,18.213107679545047,16.471653562830845,146.164951038\r\n1,422400,2806.22983,6.643536529356061,163.35429668809425,17.466680074938452,17.17555933428048,106.925134074\r\n1,480000,3200.648665,6.668018052083334,188.97926199991392,17.716489757715806,16.933376989611915,93.748327569\r\n1,556800,3686.318842,6.620543897270116,223.1457108353703,18.163634309823905,16.5165183840848,81.398088459\r\n1,652800,4355.463929,6.671972930453431,245.387794545544,16.905095295767264,17.746128889028782,68.891345338\r\n1,729600,4836.837353,6.629437161458333,273.83613478913105,16.987900177250374,17.659628139430083,62.036736643\r\n1,844800,5333.42815,6.31324354876894,315.6073030052678,17.7560620932003,16.895638144613454,56.259984874\r\n1,960000,6430.178973,6.698103096875,425.85028677699995,19.872205035757656,15.096462594874897,46.664768471\r\n1,1036800,6872.065056,6.628149166666668,479.35698525148825,20.930341775828367,14.333258539832267,43.663370765\r\n1,1113600,6620.470495,5.945106407147988,501.0947254211555,22.711250117740825,13.209312496878185,45.32326717\r\n1,1190400,7885.39887,6.624158996975806,615.1943551013513,23.409873963111746,12.815105304399625,38.05281009\r\n1,1228800,8155.054775,6.636600565592448,631.3473041811944,23.23018055237395,12.914234537421287,36.794614309\r\n1,1324800,8833.402038,6.667724968297102,765.9014554753938,26.016273865082752,11.531243926619304,33.968173946\r\n1,1401600,9396.729938,6.704287912385846,902.0019781196773,28.802976848485102,10.41559008216814,31.93227681\r\n1,1478400,9811.616954,6.636645666937229,993.9791480483333,30.398217565151228,9.868999698979803,30.582349363\r\n1,1593600,10641.694158,6.677769928463856,1229.887630385,34.680418534579886,8.650414633862324,28.198038323\r\n2,307200,2007.723041,6.535556774088541,181.6252667117229,27.143699717394714,11.052288491378668,149.448918693\r\n2,403200,2686.871944,6.663868908730159,217.07351657902694,24.243304232542695,12.374550808849678,111.68245954\r\n2,480000,3213.402029,6.694587560416666,247.10519152953754,23.075764955527156,13.000652441129297,93.384379392\r\n2,556800,3730.554485,6.699990095186783,276.0619679512999,22.206381846418722,13.509629892650961,80.439844761\r\n2,652800,4343.545491,6.653715519301471,311.7681301104117,21.54097796592704,13.926944286119793,69.092944036\r\n2,729600,4851.62125,6.649700178179825,351.0985103745245,21.71806276655754,13.813386729038909,61.857462008\r\n2,806400,5367.974663,6.656714611855159,379.2881782356544,21.20605521642728,14.146902709543303,55.910140187\r\n2,883200,5875.210528,6.652185833333332,420.84853466401995,21.498946491087633,13.95417213231191,51.084760241\r\n2,940800,6285.486811,6.681002137542517,445.4213848119148,21.26921931111086,14.104890057872623,47.750781701\r\n2,1036800,6884.839583,6.6404702768132715,512.7278587669999,22.35384166846831,13.420511983994743,43.597868316\r\n2,1113600,7411.067194,6.6550531555316095,580.6304660789749,23.517399354210795,12.756512549772427,40.503212849\r\n2,1190400,7944.494465,6.673802473958332,631.379532926081,23.856862589832698,12.574998027102433,37.785296079\r\n2,1248000,8279.287981,6.634044856570513,660.5697740398055,23.951958130920598,12.525071994540491,36.259543007\r\n2,1324800,8790.436006,6.635292878925121,767.8137089755588,26.22322953113259,11.440238497086554,34.153114518\r\n2,1401600,9371.192953,6.686068031535388,862.9514391859676,27.64756836695705,10.85086384517434,32.038382592\r\n2,1478400,9807.767752,6.63404204004329,903.9611331257667,27.672233856837707,10.841191988765704,30.612194311\r\n2,1555200,10419.922893,6.700053300540124,1036.4267451035714,29.864497271126464,10.045372512935131,28.81486551\r\n2,1632000,10924.583955,6.693985266544118,1131.99879201,31.112340544812486,9.642476096193942,27.484429104\r\n2,1708800,11367.080934,6.652083879915731,1246.0752468476153,32.91662386910169,9.1139359003827,26.416240875\r\n2,1785600,11913.74449,6.672123930331541,1347.7451555211198,33.97289037586048,8.83057039542228,25.207206449\r\n2,1824000,12156.576708,6.664789861842106,1490.4591906978749,36.81802847622876,8.148182084048644,24.702473376\r\n2,1920000,12852.919755,6.694229039062501,1680.3239538414782,39.264643538052994,7.640461569688199,23.36730572\r\n2,1996800,13366.601319,6.694011077223558,1908.045540524409,42.8701158565144,6.997881717980312,22.468077908\r\n2,2073600,13757.050488,6.634380057870371,2205.5759126656667,48.15240073375164,6.230218959565185,21.832121242\r\n2,2150400,14276.876219,6.639172348865327,2337.0954028912,49.17252353219184,6.1009681515246745,21.040015513\r\n"
  },
  {
    "path": "results/msm8996/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 2583.4865629730048, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [759.308998603, 760.536345312, 759.367963338, 758.829841825, 759.426928073, 758.287699088, 765.4807899120001, 757.74565589, 758.4056355299999, 759.0067901250001, 757.804480935, 759.0657085, 758.46450724, 763.800310425, 758.5233789499999, 757.922131025, 761.521759125, 758.5529113160001, 758.5529113160001, 757.98095607, 758.58225066, 757.3835915100001, 757.98095607, 757.3835915100001, 761.58086355, 757.98095607, 762.1230070499998, 757.3835915100001, 757.98095607], \"power_mean\": 759.2057057447587, \"energy_millijoules\": 3796.0285287237934, \"energy_joules\": 3.7960285287237934}, \"cpus\": {\"1\": {\"freqs\": {\"307200\": {\"active\": {\"elapsed_sec\": 146.164951038, \"elapsed_ns\": 146164951038, \"power_samples\": [0.02948570099988501, 112.51479486599987, 113.04721956599974, 113.04721956599974, 113.613740786, 117.16932770899996, 117.16932770899996, 115.3725886709999, 583.8320916049997, 583.8320916049997, 120.02613298199981, 112.91188435599986, 114.70848370399983, 114.70848370399983, 113.51205837399993, 114.70848370399983, 114.70848370399983, 113.44434410399992, 114.64067640899975, 114.64067640899975, 114.64067640899975, 118.16158695399986, 118.16158695399986, 119.92368204599995, 117.56542836199992, 114.5728691139999, 114.5728691139999, 113.37662983400003, 115.16902770599984, 115.16902770599984, 112.77654914599987, 114.53885430699995, 114.53885430699995, 113.34266169199998, 113.34266169199998, 113.34266169199998, 121.05155557599994, 114.53885430699995, 113.34266169199998, 113.34266169199998, 117.46325680599989, 114.47104701199987, 114.47104701199987, 114.47104701199987, 114.47104701199987, 114.47104701199987, 116.19921023099982, 115.03309792499999, 115.03309792499999, 120.38719387499998, 114.4032397169999, 113.20723315199996, 113.20723315199996, 114.4032397169999, 113.20723315199996, 113.20723315199996, 119.08488511499979, 114.93142867799986, 114.93142867799986, 116.72725950199992, 114.93142867799986, 114.93142867799986, 120.25042457999996, 114.93142867799986, 114.86335255199992, 114.86335255199992, 113.13951888199983, 113.1055507399999, 113.1055507399999, 114.26740280799993, 114.26740280799993, 114.26740280799993, 120.70973615399998, 114.7954988969999, 114.7954988969999, 121.90537031399992, 114.7954988969999, 114.19959551299985, 114.19959551299985, 115.32742237799994, 115.32742237799994, 114.19959551299985, 114.19959551299985, 114.727645242, 114.727645242, 114.727645242, 120.57309798400001, 115.32742237799994, 115.32742237799994, 124.1633618159999, 114.65979158699986, 117.65060432799999, 117.65060432799999, 115.25952205799979, 114.06398092299992, 114.06398092299992, 115.19162173799998, 114.06398092299992, 114.06398092299992, 116.98675365399981, 114.59193793199984, 114.59193793199984, 121.07012108999993, 113.99617362799984, 119.34342499800005, 119.34342499800005, 581.3282083649999, 118.70978667299994, 118.70978667299994, 115.1575602659999, 114.55789986899993, 114.55789986899993, 116.88458209799978, 115.68927367799984, 115.68927367799984, 121.59740366799986, 115.12372141799995, 113.89435152599981, 113.89435152599981, 115.68927367799984, 118.60740581099992, 118.60740581099992, 115.6213266929999, 117.34410404599998, 117.34410404599998, 118.5392264159999, 113.82654423099984, 113.82654423099984, 121.49467335199995, 114.422192559, 115.55337970799997, 115.55337970799997, 114.422192559, 115.55337970799997, 115.55337970799997, 114.35433890399997, 119.07029706600008, 119.07029706600008, 118.4708234819999, 119.66977064999992, 119.66977064999992, 120.79643393999982, 114.88573636199999, 114.88573636199999, 114.88573636199999], \"power_mean\": 124.60653221037921, \"energy_millijoules\": 18213.107679545046, \"energy_joules\": 18.213107679545047, \"coremark_score\": 2052.854152, \"coremarks_per_mhz\": 6.6824679427083336, \"ulpmark_cm_score\": 16.471653562830845}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [755.6130533969999, 755.6130533969999, 762.72032525, 757.3835915100001], \"power_mean\": 757.8325058885, \"energy_millijoules\": 3789.1625294425003, \"energy_joules\": 3.7891625294425}}, \"422400\": {\"active\": {\"elapsed_sec\": 106.925134074, \"elapsed_ns\": 106925134074, \"power_samples\": [9.091967224999962, 156.72937851999984, 159.04623006199995, 159.04623006199995, 157.85208521699985, 158.44720002499992, 158.44720002499992, 158.44720002499992, 158.97483932199998, 158.97483932199998, 158.37585594999985, 163.0842616739999, 163.0842616739999, 165.47217926400003, 162.48532496699988, 158.3045118749999, 158.3045118749999, 158.9034485819999, 158.3045118749999, 158.3045118749999, 158.2687228799998, 160.02592361199981, 160.02592361199981, 161.1838836479999, 158.79624543799991, 158.79624543799991, 164.69739895399994, 162.90485290599997, 158.19737880499986, 158.19737880499986, 164.69739895399994, 158.76066710199996, 158.76066710199996, 158.72485469799994, 158.72485469799994, 158.72485469799994, 158.65346395799997, 158.09024573499983, 158.09024573499983, 165.74722664399985, 158.65346395799997, 159.84709701299994, 159.84709701299994, 162.76141994599993, 160.37433988600003, 160.37433988600003, 164.4818304439998, 158.582073218, 158.582073218, 624.8812316149997, 159.70412948299986, 159.70412948299986, 165.60309235499994, 159.70412948299986, 159.70412948299986, 159.70412948299986, 160.30280945599998, 158.51068247799992, 158.51068247799992, 159.63241134499992, 158.43905767, 158.43905767, 164.93255666999994, 159.63241134499992, 159.63241134499992, 166.05773378999993, 159.5967866489999, 159.56092757999988, 159.56092757999988, 160.1595140699999, 160.1595140699999, 160.1595140699999, 160.1595140699999, 160.1595140699999, 158.36766692999993, 158.36766692999993, 160.68261143999996, 158.33208859399997, 158.33208859399997, 170.12717552999993, 159.48944381499985, 164.19417016999978, 164.19417016999978, 159.48944381499985, 160.61103464999985, 160.61103464999985, 159.4179600499998, 160.0164532099999, 160.0164532099999, 159.4179600499998, 160.0164532099999, 160.0164532099999, 166.47213793799995, 159.94492277999996, 163.523867505, 163.523867505, 159.94492277999996, 163.487845032, 163.487845032, 159.94492277999996, 159.909040302, 159.909040302, 161.62481722099994, 159.909040302, 159.909040302, 166.400095718], \"power_mean\": 163.35429668809425, \"energy_millijoules\": 17466.680074938453, \"energy_joules\": 17.466680074938452, \"coremark_score\": 2806.22983, \"coremarks_per_mhz\": 6.643536529356061, \"ulpmark_cm_score\": 17.17555933428048}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [763.5108242759999, 763.5108242759999, 763.5108242759999, 762.9103701150001], \"power_mean\": 763.36071073575, \"energy_millijoules\": 3816.80355367875, \"energy_joules\": 3.81680355367875}}, \"480000\": {\"active\": {\"elapsed_sec\": 93.748327569, \"elapsed_ns\": 93748327569, \"power_samples\": [4.100442884999893, 179.30974049099996, 179.30974049099996, 185.80112112999996, 179.2366743859999, 178.64239451399988, 178.64239451399988, 179.83486399399987, 183.937023532, 183.937023532, 179.7617512239999, 183.26548874399998, 183.26548874399998, 179.7617512239999, 179.16360828099994, 179.16360828099994, 186.77257693499985, 178.49635502399985, 180.28282560599996, 180.28282560599996, 178.49635502399985, 179.01747607099992, 179.01747607099992, 179.01747607099992, 184.3474244019999, 184.3474244019999, 180.77099318199998, 183.67986835599993, 183.67986835599993, 186.6619493249998, 180.13650734600003, 645.7247551349999, 645.7247551349999, 180.09980784799995, 180.69778738699995, 180.69778738699995, 179.5057366719999, 180.09980784799995, 180.09980784799995, 180.6245815919999, 180.6245815919999, 180.6245815919999, 185.32274221, 184.72485600099992, 179.35951113199997, 179.35951113199997, 183.532991336, 179.35951113199997, 179.35951113199997, 179.9534895879999, 179.880090592, 179.880090592, 179.880090592, 179.9534895879999, 179.9534895879999, 185.17534456999988, 179.880090592, 179.32283488999985, 179.32283488999985, 183.97975911799995, 179.80693146199997, 179.80693146199997, 185.13867609, 179.21304587799978, 179.21304587799978, 180.40472418799993, 179.21304587799978, 179.21304587799978, 186.88719087899995, 179.21304587799978, 180.40472418799993, 180.40472418799993, 179.73377233199994, 178.54218704699986, 178.54218704699986, 183.83278937799992, 179.13993310799992, 179.13993310799992, 183.79592647599986, 179.73377233199994, 179.73377233199994, 186.73975570899995, 179.66061320200004, 179.66061320200004, 179.66061320200004, 180.18510680299994, 180.25831259799997, 180.25831259799997, 179.587454072, 179.587454072, 179.587454072, 184.32007092799984, 179.587454072], \"power_mean\": 188.97926199991392, \"energy_millijoules\": 17716.489757715804, \"energy_joules\": 17.716489757715806, \"coremark_score\": 3200.648665, \"coremarks_per_mhz\": 6.668018052083334, \"ulpmark_cm_score\": 16.933376989611915}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [765.640994832, 765.640994832, 761.4543152159999, 762.079914675], \"power_mean\": 763.7040548887501, \"energy_millijoules\": 3818.52027444375, \"energy_joules\": 3.8185202744437503}}, \"556800\": {\"active\": {\"elapsed_sec\": 81.398088459, \"elapsed_ns\": 81398088459, \"power_samples\": [207.26348390399994, 207.26348390399994, 213.664110478, 211.35819457799983, 211.35819457799983, 211.1311775879998, 220.06659352499992, 210.68517306899992, 209.4943789539999, 209.4943789539999, 210.68517306899992, 208.90093401799993, 208.90093401799993, 210.60954740399995, 208.82544773799998, 208.82544773799998, 210.53392173899988, 209.9405695229998, 209.9405695229998, 216.45269541000005, 210.49598492999985, 214.07157260999986, 214.07157260999986, 210.49598492999985, 213.47434017, 213.47434017, 210.420359265, 674.0426360250001, 674.0426360250001, 211.01754503999996, 210.420359265, 210.420359265, 217.4908885699998, 209.82707666499994, 210.94187270999987, 210.94187270999987, 210.34473359999993, 214.4370473549999, 214.4370473549999, 211.46329282499983, 214.4370473549999, 214.4370473549999, 210.8662003799999, 210.8662003799999, 210.8662003799999, 216.14808155100002, 210.79027994399996, 210.79027994399996, 210.79027994399996, 210.1932343169999, 210.79027994399996, 210.79027994399996, 210.79027994399996, 214.88189448600008, 214.88189448600008, 210.11760865199994, 214.28489552399992, 214.28489552399992, 217.1859023059999, 210.714607614, 209.52451164399997, 209.52451164399997, 209.52451164399997, 211.23588758099982, 211.23588758099982, 208.85198004199992, 211.23588758099982, 211.23588758099982, 210.6389352839999, 211.82893822899996, 211.82893822899996, 218.82020992799994, 214.72989834600003, 211.75317287399992, 211.75317287399992, 214.1329927139999, 211.16016858599983, 211.16016858599983, 210.56326295399992, 211.71516599099982, 211.71516599099982], \"power_mean\": 223.1457108353703, \"energy_millijoules\": 18163.634309823905, \"energy_joules\": 18.163634309823905, \"coremark_score\": 3686.318842, \"coremarks_per_mhz\": 6.620543897270116, \"ulpmark_cm_score\": 16.5165183840848}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [763.7312487, 764.92576595, 763.7312487, 763.7312487], \"power_mean\": 764.0298780125, \"energy_millijoules\": 3820.1493900625, \"energy_joules\": 3.8201493900625}}, \"652800\": {\"active\": {\"elapsed_sec\": 68.891345338, \"elapsed_ns\": 68891345338, \"power_samples\": [11.694471361999945, 246.95896624999978, 246.95896624999978, 246.95896624999978, 248.03432290599994, 246.28775225999982, 246.28775225999982, 254.45780823999996, 246.80185098999982, 247.39835973999982, 247.39835973999982, 250.84726161799995, 247.31975544499994, 247.31975544499994, 251.40436466999972, 247.83756656999992, 247.83756656999992, 247.24115114999995, 249.57949221299998, 249.57949221299998, 254.8561169359998, 248.98699818900002, 247.20172014299987, 247.20172014299987, 248.98699818900002, 246.60532813199984, 246.60532813199984, 247.7194611939999, 247.7194611939999, 247.7194611939999, 251.2069101889998, 248.90825420399995, 248.90825420399995, 257.07465171299987, 248.90825420399995, 247.0445115529999, 247.0445115529999, 247.0445115529999, 247.6408102339999, 247.6408102339999, 247.6408102339999, 248.75050805699993, 248.75050805699993, 248.75050805699993, 248.67176407199997, 248.75050805699993, 248.75050805699993, 258.7004399209999, 249.30359684099983, 251.04879133199984, 251.04879133199984, 248.67176407199997, 248.67176407199997, 248.67176407199997, 247.40459948199998, 249.18528215899994, 249.18528215899994, 247.40459948199998, 248.5930200869999, 248.5930200869999, 254.45981015799987, 248.5930200869999, 248.55377718300008, 248.55377718300008, 246.72983665399988, 251.48704312999985, 251.48704312999985, 246.72983665399988], \"power_mean\": 245.387794545544, \"energy_millijoules\": 16905.095295767263, \"energy_joules\": 16.905095295767264, \"coremark_score\": 4355.463929, \"coremarks_per_mhz\": 6.671972930453431, \"ulpmark_cm_score\": 17.746128889028782}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [770.806334649, 769.078062872, 769.078062872, 770.806334649], \"power_mean\": 769.9421987605, \"energy_millijoules\": 3849.7109938025, \"energy_joules\": 3.8497109938025003}}, \"729600\": {\"active\": {\"elapsed_sec\": 62.036736643, \"elapsed_ns\": 62036736643, \"power_samples\": [14.642273816999932, 281.4407198159997, 281.4407198159997, 276.04868973, 278.97984354799996, 278.97984354799996, 277.15552771499983, 274.8205410439998, 274.8205410439998, 284.16742298500003, 275.92716034599994, 277.03385864100005, 277.03385864100005, 276.44199085699984, 276.44199085699984, 276.44199085699984, 277.548549462, 278.7360858719999, 278.7360858719999, 278.14426444799983, 281.03370204399994, 281.03370204399994, 283.3270525539999, 277.46747863199994, 277.46747863199994, 277.46747863199994, 278.0631469529999, 277.4268103139998, 277.4268103139998, 277.98202945799994, 277.98202945799994, 277.98202945799994, 277.345739484, 277.345739484, 277.345739484, 283.80016608000005, 279.12864142599983, 277.345739484, 277.345739484, 280.83019315799993, 277.345739484, 277.345739484, 276.66911707200006, 277.26466865399993, 277.26466865399993, 277.2240003359998, 276.66911707200006, 276.66911707200006, 285.4155912179999, 277.1835978239999, 277.1835978239999, 277.1835978239999, 280.66749273799996, 276.5880929069999, 276.5880929069999, 280.5858758059999, 277.10252699399985, 277.10252699399985, 277.616601792, 277.10252699399985, 277.10252699399985], \"power_mean\": 273.83613478913105, \"energy_millijoules\": 16987.900177250373, \"energy_joules\": 16.987900177250374, \"coremark_score\": 4836.837353, \"coremarks_per_mhz\": 6.629437161458333, \"ulpmark_cm_score\": 17.659628139430083}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [773.158113472, 780.854110216, 772.5940664, 773.1883695280001], \"power_mean\": 774.948664904, \"energy_millijoules\": 3874.74332452, \"energy_joules\": 3.87474332452}}, \"844800\": {\"active\": {\"elapsed_sec\": 56.259984874, \"elapsed_ns\": 56259984874, \"power_samples\": [23.54624274599996, 315.1551960899999, 316.85253478000004, 316.85253478000004, 326.1767975219998, 316.85253478000004, 317.9545327200001, 317.9545327200001, 320.24220793799964, 317.86992769799986, 317.86992769799986, 318.97164625799996, 319.52451850499983, 319.52451850499983, 324.14500994399987, 318.8872246979997, 318.8872246979997, 330.58383730599985, 318.29619185, 318.29619185, 319.4397733349999, 319.4397733349999, 319.39767769499986, 318.2118166499997, 318.2118166499997, 318.8028031379997, 319.904149598, 319.904149598, 318.71838157799993, 318.71838157799993, 318.71838157799993, 328.08441209399984, 318.6336832259999, 323.93276928599994, 323.93276928599994, 320.9667548079999, 323.93276928599994, 323.93276928599994, 319.7772391719998, 322.6585063499999, 322.6585063499999, 319.69272458699993, 322.06768219800006, 322.06768219800006, 328.50485714599995, 321.4729710450001, 321.43050513000003, 321.43050513000003, 322.06768219800006, 325.45404945999985, 325.45404945999985, 321.3883167700001, 323.6779692299997, 323.6779692299997, 320.7126536599999, 322.4887338899998], \"power_mean\": 315.6073030052678, \"energy_millijoules\": 17756.0620932003, \"energy_joules\": 17.7560620932003, \"coremark_score\": 5333.42815, \"coremarks_per_mhz\": 6.31324354876894, \"ulpmark_cm_score\": 16.895638144613454}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [784.447251728, 779.144409747, 779.144409747, 782.0642672079999], \"power_mean\": 781.2000846075, \"energy_millijoules\": 3906.0004230375, \"energy_joules\": 3.9060004230375}}, \"960000\": {\"active\": {\"elapsed_sec\": 46.664768471, \"elapsed_ns\": 46664768471, \"power_samples\": [290.0852177039999, 290.0852177039999, 427.4620414819999, 432.0132506440002, 432.0132506440002, 438.9290787279997, 428.959560258, 428.36596967699984, 428.36596967699984, 430.09603012599996, 430.64274227199985, 430.64274227199985, 430.59619348800015, 431.18583477599987, 431.18583477599987, 431.092384606, 434.0519959879998, 434.0519959879998, 439.78261343899976, 435.0472054759998, 431.59205506600006, 431.59205506600006, 430.90517787199997, 431.49855823099983, 431.49855823099983, 430.90517787199997, 430.31567581600007, 430.31567581600007, 430.8117277020001, 430.8117277020001, 430.8117277020001, 440.6827718339998, 430.718277532, 431.2180677260001, 431.2180677260001, 434.1765147699998, 430.6248273619999, 430.6248273619999, 434.6721018359999, 431.17116603500017, 431.17116603500017, 430.53137719200004, 432.3070812059998, 432.3070812059998, 440.9458496100001, 431.03076750900004], \"power_mean\": 425.85028677699995, \"energy_millijoules\": 19872.205035757655, \"energy_joules\": 19.872205035757656, \"coremark_score\": 6430.178973, \"coremarks_per_mhz\": 6.698103096875, \"ulpmark_cm_score\": 15.096462594874897}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [793.929108544, 793.3627926, 793.3627926, 793.3627926], \"power_mean\": 793.504371586, \"energy_millijoules\": 3967.5218579300004, \"energy_joules\": 3.9675218579300005}}, \"1036800\": {\"active\": {\"elapsed_sec\": 43.663370765, \"elapsed_ns\": 43663370765, \"power_samples\": [473.3787619520001, 473.3787619520001, 485.9011836999998, 476.44355605099986, 476.44355605099986, 476.44355605099986, 476.934986473, 476.8865591209999, 476.8865591209999, 476.29770640900006, 477.43051650200005, 477.43051650200005, 480.2399466300001, 479.0585535299999, 479.0585535299999, 492.9475878599999, 492.9475878599999, 476.69189390999986, 476.5947206049998, 476.5947206049998, 477.67875434999996, 480.04504125999983, 480.04504125999983, 477.0900872300001, 477.04163662199994, 477.04163662199994, 479.3550953099998, 477.5814880199998, 477.5814880199998, 489.79637883500004, 477.4842216899999, 482.1145391549999, 482.1145391549999, 479.2576892899997, 480.93361117999984, 480.93361117999984, 478.5717552299998, 479.1602832699998, 479.1602832699998, 479.0625578859999, 476.7008885959999, 476.7008885959999, 488.909065372], \"power_mean\": 479.35698525148825, \"energy_millijoules\": 20930.34177582837, \"energy_joules\": 20.930341775828367, \"coremark_score\": 6872.065056, \"coremarks_per_mhz\": 6.628149166666668, \"ulpmark_cm_score\": 14.333258539832267}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [798.600961641, 802.173335077, 798.0705748439999, 798.0705748439999], \"power_mean\": 799.2288616015, \"energy_millijoules\": 3996.1443080074996, \"energy_joules\": 3.9961443080074996}}, \"1113600\": {\"active\": {\"elapsed_sec\": 45.32326717, \"elapsed_ns\": 45323267170, \"power_samples\": [53.70600157799993, 503.7266935260002, 503.7266935260002, 516.32021592, 507.0195163619999, 508.64231249600016, 508.64231249600016, 510.36460832199964, 510.31481251399987, 510.31481251399987, 506.77025341800004, 511.395030099, 511.395030099, 508.34264676, 514.7345290499998, 514.7345290499998, 518.8701586599998, 511.7865872699999, 510.60276812999973, 510.60276812999973, 511.19467770000006, 512.3247396219999, 512.3247396219999, 508.24286723, 508.7850273519998, 508.7850273519998, 509.8650122219999, 511.636662936, 511.636662936, 519.6974576459997, 513.84575329, 509.764765398, 509.764765398, 514.9250866799998, 509.6648461779996, 509.6648461779996, 510.2527247219996, 510.7444586429999, 510.7444586429999, 511.8238850580001, 511.92399032799995, 511.92399032799995, 521.7034041219999, 513.5949765540001, 512.4155378940002], \"power_mean\": 501.0947254211555, \"energy_millijoules\": 22711.250117740823, \"energy_joules\": 22.711250117740825, \"coremark_score\": 6620.470495, \"coremarks_per_mhz\": 5.945106407147988, \"ulpmark_cm_score\": 13.209312496878185}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [815.124055356, 815.124055356, 812.8108328760001, 815.7840653339999], \"power_mean\": 814.7107522305, \"energy_millijoules\": 4073.5537611525, \"energy_joules\": 4.0735537611525}}, \"1190400\": {\"active\": {\"elapsed_sec\": 38.05281009, \"elapsed_ns\": 38052810090, \"power_samples\": [60.264991164999856, 633.05887596, 625.879361282, 624.6473730539999, 624.6473730539999, 628.0705051739999, 627.3739446300001, 627.3739446300001, 631.86375081, 628.9189256049999, 628.9189256049999, 634.001983265, 628.80937296, 628.80937296, 642.6095017039997, 628.167837339, 629.7671467700002, 629.7671467700002, 628.59026767, 629.1256572039999, 629.1256572039999, 628.480355836, 628.480355836, 631.904739435, 631.904739435, 628.961078568, 628.961078568, 628.961078568, 646.8206322419999, 631.850003475, 635.8596758129997, 635.8596758129997, 629.3828476839999, 631.7398113449999, 631.7398113449999, 630.45351929, 631.039820682], \"power_mean\": 615.1943551013513, \"energy_millijoules\": 23409.873963111746, \"energy_joules\": 23.409873963111746, \"coremark_score\": 7885.39887, \"coremarks_per_mhz\": 6.624158996975806, \"ulpmark_cm_score\": 12.815105304399625}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [821.646708174, 817.5524214530001, 817.5524214530001, 816.99265414], \"power_mean\": 818.4360513050001, \"energy_millijoules\": 4092.1802565250005, \"energy_joules\": 4.092180256525}}, \"1228800\": {\"active\": {\"elapsed_sec\": 36.794614309, \"elapsed_ns\": 36794614309, \"power_samples\": [67.34448192899993, 67.34448192899993, 659.6563173339998, 661.1982455519997, 661.1982455519997, 661.029753306, 662.1493681699999, 662.1493681699999, 674.2187426820001, 664.4451134159999, 662.0370696099999, 662.0370696099999, 661.9807362339998, 665.3393399900001, 665.3393399900001, 662.931714949, 665.2828666190001, 665.2828666190001, 662.819323364, 662.819323364, 662.819323364, 675.4167240940001, 664.471943325, 663.2965535399999, 663.2965535399999, 662.7069317790001, 663.1841152899997, 663.1841152899997, 663.07130839, 663.656983542, 663.656983542, 664.7196093370001, 667.6030915199999, 667.6030915199999, 676.783826586, 666.4280274749997], \"power_mean\": 631.3473041811944, \"energy_millijoules\": 23230.180552373953, \"energy_joules\": 23.23018055237395, \"coremark_score\": 8155.054775, \"coremarks_per_mhz\": 6.636600565592448, \"ulpmark_cm_score\": 12.914234537421287}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [838.02102194, 825.720704784, 828.754016293, 828.754016293], \"power_mean\": 830.3124398274999, \"energy_millijoules\": 4151.562199137499, \"energy_joules\": 4.1515621991375}}, \"1324800\": {\"active\": {\"elapsed_sec\": 33.968173946, \"elapsed_ns\": 33968173946, \"power_samples\": [669.21767765, 669.21767765, 783.4417182899999, 770.6493136979998, 768.1811849999997, 768.1811849999997, 768.0602302349998, 767.9392754699998, 767.9392754699998, 767.8183207049997, 770.0432124399999, 770.0432124399999, 768.8095668559997, 769.337182154, 769.337182154, 785.3972994769999, 769.2160876990001, 770.2676371139999, 770.2676371139999, 774.901476664, 773.0188398139999, 773.0188398139999, 774.1307865859997, 774.6579583369999, 774.6579583369999, 771.136880901, 771.0156003960001, 771.0156003960001, 787.7785621859998, 770.4313631639998, 772.6545792289999, 772.6545792289999, 770.3101290189998], \"power_mean\": 765.9014554753938, \"energy_millijoules\": 26016.273865082752, \"energy_joules\": 26.016273865082752, \"coremark_score\": 8833.402038, \"coremarks_per_mhz\": 6.667724968297102, \"ulpmark_cm_score\": 11.531243926619304}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [846.22644499, 844.5129669679999, 845.7686605890001, 845.7686605890001], \"power_mean\": 845.569183284, \"energy_millijoules\": 4227.84591642, \"energy_joules\": 4.227845916420001}}, \"1401600\": {\"active\": {\"elapsed_sec\": 31.93227681, \"elapsed_ns\": 31932276810, \"power_samples\": [869.9507335979997, 895.5263730109998, 895.5263730109998, 897.0169613599996, 898.059362962, 898.059362962, 899.031673254, 900.0698194439999, 900.0698194439999, 902.6660719139998, 900.9758881289999, 900.9758881289999, 920.4038925900002, 920.4038925900002, 900.7116727879998, 900.7116727879998, 900.7116727879998, 903.5051637719998, 900.51361939, 900.51361939, 901.6171830179999, 901.55097441, 901.55097441, 904.211573005, 903.17463675, 903.17463675, 920.0553982979998, 903.6289592850001, 907.4575941150001, 907.4575941150001, 902.77826424], \"power_mean\": 902.0019781196773, \"energy_millijoules\": 28802.9768484851, \"energy_joules\": 28.802976848485102, \"coremark_score\": 9396.729938, \"coremarks_per_mhz\": 6.704287912385846, \"ulpmark_cm_score\": 10.41559008216814}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [861.392193936, 864.9486335519999, 860.9334016880001, 860.9334016880001], \"power_mean\": 862.0519077160001, \"energy_millijoules\": 4310.2595385800005, \"energy_joules\": 4.31025953858}}, \"1478400\": {\"active\": {\"elapsed_sec\": 30.582349363, \"elapsed_ns\": 30582349363, \"power_samples\": [119.28054644099996, 1010.5286192099998, 1010.5286192099998, 1015.293046794, 1018.582238601, 1018.582238601, 1018.511220744, 1023.994319575, 1023.994319575, 1019.7672915359999, 1019.323746712, 1019.323746712, 1041.22618159, 1020.6498119739997, 1021.674322224, 1021.674322224, 1025.0349130710001, 1026.058864866, 1026.058864866, 1025.331665925, 1025.845227102, 1025.845227102, 1026.2878165889997, 1030.2277209059998, 1030.2277209059998, 1043.3527609619998, 1029.642908394, 1027.749837422, 1027.749837422, 1027.026484194], \"power_mean\": 993.9791480483333, \"energy_millijoules\": 30398.217565151226, \"energy_joules\": 30.398217565151228, \"coremark_score\": 9811.616954, \"coremarks_per_mhz\": 6.636645666937229, \"ulpmark_cm_score\": 9.868999698979803}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [878.129989122, 878.268116912, 877.2194301270001, 877.2194301270001], \"power_mean\": 877.7092415720001, \"energy_millijoules\": 4388.54620786, \"energy_joules\": 4.38854620786}}, \"1593600\": {\"active\": {\"elapsed_sec\": 28.198038323, \"elapsed_ns\": 28198038323, \"power_samples\": [478.45100576699997, 1242.2696639119997, 1242.2696639119997, 1246.360804403, 1248.363472223, 1248.363472223, 1251.5302445640002, 1251.8679903349998, 1251.8679903349998, 1252.12812379, 1252.71064834, 1252.71064834, 1280.6129226100002, 1258.0323865499997, 1260.1964418, 1260.1964418, 1260.9526223540001, 1258.711875348, 1258.711875348, 1266.515993952, 1262.9494540019996, 1262.9494540019996, 1262.20922184, 1260.3050137220002, 1260.3050137220002, 1284.608396015, 1259.561256489, 1261.1415530819997], \"power_mean\": 1229.887630385, \"energy_millijoules\": 34680.41853457988, \"energy_joules\": 34.680418534579886, \"coremark_score\": 10641.694158, \"coremarks_per_mhz\": 6.677769928463856, \"ulpmark_cm_score\": 8.650414633862324}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [915.3657531700001, 915.4378420549999, 919.05411024, 919.05411024], \"power_mean\": 917.2279539262499, \"energy_millijoules\": 4586.13976963125, \"energy_joules\": 4.58613976963125}}}}, \"2\": {\"freqs\": {\"307200\": {\"active\": {\"elapsed_sec\": 149.448918693, \"elapsed_ns\": 149448918693, \"power_samples\": [11.013596078999853, 182.1693957299998, 180.40070701799982, 180.40070701799982, 181.72935944100004, 179.95652067499998, 179.95652067499998, 184.090563911, 180.03037795, 180.03037795, 184.1647469259999, 177.77937349499985, 177.77937349499985, 184.23892994099992, 178.96020813999985, 177.85328626499984, 177.85328626499984, 177.85328626499984, 176.74593648999996, 176.74593648999996, 177.92695748999984, 177.92695748999984, 177.92695748999984, 176.74593648999996, 176.74593648999996, 176.26390773599985, 176.26390773599985, 185.6055300899999, 176.85642440999993, 176.89309288999993, 176.89309288999993, 176.3005529599999, 175.744875932, 175.744875932, 175.744875932, 176.3740844949998, 176.3740844949998, 175.78149789999986, 175.19278441999984, 175.19278441999984, 182.79912813999988, 175.85498277, 179.3292712399999, 179.3292712399999, 174.67358966999984, 179.40303548999987, 179.40303548999987, 174.67358966999984, 175.33990222199998, 175.33990222199998, 176.44761602999984, 175.33990222199998, 175.33990222199998, 180.54762102999985, 174.7472221439998, 175.92870857399987, 175.92870857399987, 174.7472221439998, 179.40303548999987, 179.40303548999987, 175.33990222199998, 179.47704158999989, 179.47704158999989, 174.7472221439998, 176.002193444, 176.002193444, 180.5844285899999, 174.15841579200003, 174.15841579200003, 174.15841579200003, 174.7472221439998, 175.33990222199998, 175.33990222199998, 175.33990222199998, 178.81040223000002, 178.81040223000002, 175.26622293000003, 178.81040223000002, 178.81040223000002, 180.5844285899999, 175.33990222199998, 174.15841579200003, 174.15841579200003, 174.15841579200003, 175.33990222199998, 175.33990222199998, 174.7472221439998, 634.024299678, 634.024299678, 174.71040590699977, 175.92870857399987, 175.92870857399987, 179.99179532999995, 178.81040223000002, 175.33990222199998, 175.33990222199998, 174.15841579200003, 174.15841579200003, 174.15841579200003, 174.15841579200003, 174.7472221439998, 174.7472221439998, 174.67358966999984, 173.56573571400008, 173.56573571400008, 180.51057131499988, 175.26622293000003, 173.52896614199994, 173.52896614199994, 178.22164238999994, 174.08482982999988, 174.08482982999988, 178.22164238999994, 174.08482982999988, 174.08482982999988, 173.49219657000003, 174.08482982999988, 174.08482982999988, 179.91798471999994, 173.49219657000003, 174.67358966999984, 174.67358966999984, 174.67358966999984, 174.08482982999988, 174.08482982999988, 176.9300026100001, 175.19278441999984, 175.19278441999984, 178.14797116499983, 174.01148434499987, 174.01148434499987, 179.25550698999984, 174.01148434499987, 175.19278441999984, 175.19278441999984, 174.01148434499987, 174.01148434499987, 174.01148434499987, 174.60019782499978, 174.60019782499978, 174.60019782499978, 178.58924947499997, 173.41889774999981, 173.41889774999981, 173.41889774999981, 184.49869210500003, 174.52680597999995, 173.34559892999994], \"power_mean\": 181.6252667117229, \"energy_millijoules\": 27143.699717394713, \"energy_joules\": 27.143699717394714, \"coremark_score\": 2007.723041, \"coremarks_per_mhz\": 6.535556774088541, \"ulpmark_cm_score\": 11.052288491378668}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [762.860135872, 762.860135872, 762.3906685080001, 762.480680164], \"power_mean\": 762.6479051040001, \"energy_millijoules\": 3813.2395255200004, \"energy_joules\": 3.8132395255200002}}, \"403200\": {\"active\": {\"elapsed_sec\": 111.68245954, \"elapsed_ns\": 111682459540, \"power_samples\": [1.4834460259999105, 74.88502471699996, 211.85213515500004, 213.03273738999985, 213.03273738999985, 214.1365320949999, 214.72872180799982, 214.72872180799982, 214.1365320949999, 214.6521186179998, 214.6521186179998, 215.24039144999983, 214.6521186179998, 214.6521186179998, 223.3176629809999, 215.1637419, 218.63165144599998, 218.63165144599998, 215.1637419, 214.5755154279999, 214.5755154279999, 215.1637419, 214.4989122379999, 214.4989122379999, 214.46048506399984, 215.67914206799992, 215.67914206799992, 220.8376283099999, 675.911919095, 215.01044279999996, 215.01044279999996, 216.19057960499993, 219.65758483499997, 219.65758483499997, 214.38388187399994, 218.47754135999992, 218.47754135999992, 218.47754135999992, 214.93354193999983, 214.93354193999983, 220.76051332999998, 215.44880195999997, 214.93354193999983, 214.93354193999983, 213.7534984649999, 214.85689238999987, 214.85689238999987, 215.44880195999997, 218.95029185399983, 218.95029185399983, 214.81869326999993, 219.54217816799996, 219.54217816799996, 220.64496727800008, 215.41057958399995, 215.41057958399995, 215.41057958399995, 214.78024283999991, 215.37210574499989, 215.37210574499989, 215.33388336899986, 214.74204371999997, 214.74204371999997, 215.29540952999992, 219.38788172699992, 219.38788172699992, 221.08223064799984, 218.7960888959999, 215.25693569099997, 215.25693569099997, 214.66514285999995, 214.66514285999995, 214.66514285999995, 216.35986418599998, 215.18023947599977, 215.18023947599977, 215.76811801999986, 215.18023947599977, 215.18023947599977, 221.0050690029999, 219.233837817, 215.18023947599977, 215.18023947599977, 219.233837817, 215.1035432609999, 215.1035432609999, 214.55029418999993, 215.69137544499995, 215.69137544499995, 215.61463286999992, 214.51184375999992, 214.51184375999992, 221.47696260899988, 215.61463286999992, 215.61463286999992, 215.61463286999992, 215.5761357749999, 215.61463286999992, 215.61463286999992, 219.07979390699995, 214.95015083099975, 214.95015083099975, 217.90044827199995, 215.5378902949999, 215.5378902949999, 220.77333107899983, 215.5378902949999, 216.0909759619999, 216.0909759619999, 214.9116769919999, 214.87320315299985], \"power_mean\": 217.07351657902694, \"energy_millijoules\": 24243.304232542694, \"energy_joules\": 24.243304232542695, \"coremark_score\": 2686.871944, \"coremarks_per_mhz\": 6.663868908730159, \"ulpmark_cm_score\": 12.374550808849678}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [758.309801136, 758.309801136, 763.580589364, 759.5536496960001], \"power_mean\": 759.9384603330001, \"energy_millijoules\": 3799.6923016650003, \"energy_joules\": 3.7996923016650004}}, \"480000\": {\"active\": {\"elapsed_sec\": 93.384379392, \"elapsed_ns\": 93384379392, \"power_samples\": [242.9935283829999, 242.9935283829999, 245.27219269099987, 243.4267588099999, 243.4267588099999, 243.97486108199996, 243.97486108199996, 243.97486108199996, 250.34455476799997, 245.11396052099985, 245.11396052099985, 250.85236478899992, 245.62610039000003, 246.764990065, 246.764990065, 246.13814692899973, 246.13814692899973, 245.5469376399999, 245.5469376399999, 247.31670139399978, 246.64623632999997, 246.64623632999997, 248.3362046159998, 246.0589375139998, 246.0589375139998, 255.96152343999995, 245.9794683959998, 249.47495878999996, 249.47495878999996, 245.9794683959998, 246.5667206999999, 246.5667206999999, 245.9794683959998, 245.93999353999982, 245.93999353999982, 245.93999353999982, 245.8607841249999, 245.8607841249999, 251.6719919819999, 245.8607841249999, 249.90672025899994, 249.90672025899994, 246.9594504019998, 249.90672025899994, 249.90672025899994, 246.36845133499992, 245.78131500699988, 245.78131500699988, 246.8801479619998, 245.78131500699988, 245.78131500699988, 251.51264290199993, 246.8801479619998, 246.28919555999994, 246.28919555999994, 245.6228961769998, 250.29477233800003, 250.29477233800003, 245.6228961769998, 250.25511204199995, 250.25511204199995, 246.20993978499996, 246.20993978499996, 246.20993978499996, 251.43296836199988, 245.54368676199977, 246.7215430819998, 246.7215430819998, 246.1306840100001, 246.1306840100001, 246.1306840100001, 245.54368676199977, 246.68176185799985, 246.68176185799985, 247.22919152999987, 250.68671475399992, 250.68671475399992, 251.86438502399983, 249.548681676, 246.051428235, 246.051428235, 246.6422406419997, 246.56293820199983, 246.56293820199983, 246.56293820199983, 245.97217246000002, 245.97217246000002, 247.07023377000007, 247.14984273000005, 247.14984273000005, 251.7844024379998, 250.016106574, 246.48337575399978], \"power_mean\": 247.10519152953754, \"energy_millijoules\": 23075.764955527156, \"energy_joules\": 23.075764955527156, \"coremark_score\": 3213.402029, \"coremarks_per_mhz\": 6.694587560416666, \"ulpmark_cm_score\": 13.000652441129297}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [758.7776410240001, 759.371114866, 759.371114866, 765.226086752], \"power_mean\": 760.686489377, \"energy_millijoules\": 3803.432446885, \"energy_joules\": 3.803432446885}}, \"556800\": {\"active\": {\"elapsed_sec\": 80.439844761, \"elapsed_ns\": 80439844761, \"power_samples\": [0.7074373540000352, 277.42021329, 279.65164879999975, 277.2974257799999, 277.2974257799999, 281.29623826500006, 276.66621315, 276.66621315, 276.58449083999994, 278.35187849, 278.35187849, 278.8603853499999, 277.6796476300001, 277.6796476300001, 282.8988874839997, 278.22895128999994, 278.1878860899999, 278.1878860899999, 282.22637770200004, 277.01110031999997, 277.01110031999997, 282.8166530789997, 279.28271683499975, 279.28271683499975, 278.1060240899999, 278.1060240899999, 278.1060240899999, 285.636478074, 278.655479411, 278.0652272899997, 278.0652272899997, 278.0652272899997, 278.5733021929998, 278.5733021929998, 280.2953134799998, 278.5733021929998, 278.5733021929998, 282.61093225599984, 278.4913935279999, 278.4913935279999, 285.47154383399993, 279.0776949199999, 277.8604380899999, 277.8604380899999, 277.311076252, 277.311076252, 277.81937288999984, 277.81937288999984, 278.9957398949998, 280.1721068999998, 280.1721068999998, 281.85639813800003, 278.40948486299976, 278.40948486299976, 288.79364371199995, 278.91378486999974, 283.03267211799994, 283.03267211799994, 278.91378486999974, 278.24566753299996, 278.24566753299996, 278.8318298449999, 278.8318298449999, 278.8318298449999, 279.9259627499998, 278.7907179799997, 278.7907179799997, 285.14140496999994, 279.9259627499998, 282.78556004999996, 282.78556004999996, 279.88480422, 284.4690593549999, 284.4690593549999, 279.9259627499998, 278.6676510899997, 278.6676510899997, 280.351476135, 279.76159764, 279.76159764], \"power_mean\": 276.0619679512999, \"energy_millijoules\": 22206.38184641872, \"energy_joules\": 22.206381846418722, \"coremark_score\": 3730.554485, \"coremarks_per_mhz\": 6.699990095186783, \"ulpmark_cm_score\": 13.509629892650961}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [758.624256131, 758.624256131, 758.624256131, 760.395176374], \"power_mean\": 759.0669861917501, \"energy_millijoules\": 3795.33493095875, \"energy_joules\": 3.79533493095875}}, \"652800\": {\"active\": {\"elapsed_sec\": 69.092944036, \"elapsed_ns\": 69092944036, \"power_samples\": [2.3828767599998173, 308.37757601400017, 311.73922141599996, 311.73922141599996, 319.2538279139999, 313.4157713100001, 313.33102400999996, 313.33102400999996, 313.9205991059996, 318.497750406, 318.497750406, 314.42505540599996, 317.2799171989998, 317.2799171989998, 314.3402147759998, 316.10095397299983, 316.10095397299983, 321.352170483, 314.3402147759998, 315.472997589, 315.472997589, 315.472997589, 314.2128147479998, 314.2128147479998, 314.2128147479998, 317.0670943719997, 317.0670943719997, 315.8883646239997, 320.50637502199993, 320.50637502199993, 322.2704778960001, 315.8883646239997, 315.803384609, 315.803384609, 315.217918153, 317.5674874829999, 317.5674874829999, 315.7184045939998, 315.1329844979998, 315.1329844979998, 317.986472952, 316.30767613800003, 316.30767613800003, 322.59932894200006, 319.6611395479997, 315.6334245789999, 315.6334245789999, 319.6611395479997, 316.1376227779999, 316.1376227779999, 316.1376227779999, 316.1376227779999, 316.1376227779999, 316.0523173219999, 315.46318592600005, 315.46318592600005, 323.0170562789999, 316.0523173219999, 315.46318592600005, 315.46318592600005, 320.62585826500003, 317.14160987699984, 317.14160987699984, 320.62585826500003, 315.3358552149998, 315.3358552149998, 315.3358552149998, 315.3358552149998], \"power_mean\": 311.7681301104117, \"energy_millijoules\": 21540.977965927043, \"energy_joules\": 21.54097796592704, \"coremark_score\": 4343.545491, \"coremarks_per_mhz\": 6.653715519301471, \"ulpmark_cm_score\": 13.926944286119793}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [759.676596762, 762.630503193, 762.630503193, 759.706423114], \"power_mean\": 761.1610065655, \"energy_millijoules\": 3805.8050328275, \"energy_joules\": 3.8058050328274997}}, \"729600\": {\"active\": {\"elapsed_sec\": 61.857462008, \"elapsed_ns\": 61857462008, \"power_samples\": [342.7739723699999, 342.7739723699999, 348.385355719, 347.79652772200006, 347.79652772200006, 354.08175597600007, 349.97215819200005, 349.3834236779999, 349.3834236779999, 348.12216968300004, 349.88438559699966, 349.88438559699966, 356.2084319219998, 349.79661300199996, 349.79661300199996, 354.3579916200001, 349.7528705939999, 349.7528705939999, 356.11985807999986, 349.66481021999994, 349.66481021999994, 349.66481021999994, 350.7943168019997, 350.7502399499999, 350.7502399499999, 349.577037625, 349.577037625, 349.577037625, 351.2470058499998, 351.2470058499998, 349.48926503000007, 349.48926503000007, 359.8738747399998, 350.6623743299999, 352.33595609999975, 352.33595609999975, 350.5745087099999, 349.4014924349999, 349.4014924349999, 351.07118188999993, 352.2479507899998, 352.2479507899998, 351.5713193060001, 349.31371984, 349.31371984, 357.35089017500013, 351.5713193060001, 353.82883445100015, 353.82883445100015, 350.9829816739998, 355.5898623129999, 355.5898623129999, 351.5274841779999, 350.89506969399986, 350.89506969399986, 351.98364631799996, 352.56804588599994, 352.56804588599994, 357.802775484, 350.8071577139999, 351.351566888], \"power_mean\": 351.0985103745245, \"energy_millijoules\": 21718.06276655754, \"energy_joules\": 21.71806276655754, \"coremark_score\": 4851.62125, \"coremarks_per_mhz\": 6.649700178179825, \"ulpmark_cm_score\": 13.813386729038909}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [759.047888658, 763.179161502, 759.639728307, 759.639728307], \"power_mean\": 760.3766266935, \"energy_millijoules\": 3801.8831334675, \"energy_joules\": 3.8018831334675003}}, \"806400\": {\"active\": {\"elapsed_sec\": 55.910140187, \"elapsed_ns\": 55910140187, \"power_samples\": [5.6943706710000015, 380.68188296599965, 383.252929431, 382.57826671399994, 382.57826671399994, 383.75039879400015, 387.0848092949998, 387.0848092949998, 384.15302376, 388.16581804999987, 388.16581804999987, 384.06241252999985, 384.06241252999985, 384.06241252999985, 392.1360215760001, 384.0172554579999, 384.0172554579999, 384.0172554579999, 384.51412448799965, 384.51412448799965, 384.51412448799965, 385.1019018339998, 388.43507359399996, 388.43507359399996, 388.43507359399996, 389.6066005539999, 389.6066005539999, 390.7323932129998, 384.3328086979998, 386.09201967399986, 386.09201967399986, 384.3328086979998, 384.9204927139999, 384.9204927139999, 384.82978815399974, 386.49417472799996, 386.49417472799996, 385.9104245039998, 386.49417472799996, 386.49417472799996, 391.67970650100006, 390.50461845899986, 385.81962691900003, 385.81962691900003, 385.9104245039998, 386.3121889890001, 386.3121889890001, 386.899686192, 387.4833435439998, 387.4833435439998, 385.63773405200004, 385.63773405200004, 385.63773405200004, 392.03498723999974, 386.8087955819997], \"power_mean\": 379.2881782356544, \"energy_millijoules\": 21206.05521642728, \"energy_joules\": 21.20605521642728, \"coremark_score\": 5367.974663, \"coremarks_per_mhz\": 6.656714611855159, \"ulpmark_cm_score\": 14.146902709543303}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [762.4264848920001, 763.0779621810001, 763.0779621810001, 764.2264466400001], \"power_mean\": 763.2022139735001, \"energy_millijoules\": 3816.0110698675003, \"energy_joules\": 3.8160110698675003}}, \"883200\": {\"active\": {\"elapsed_sec\": 51.084760241, \"elapsed_ns\": 51084760241, \"power_samples\": [410.96834552199994, 410.96834552199994, 422.7087554159998, 420.32052152999995, 417.932780546, 417.932780546, 421.93789401999993, 418.422686312, 418.422686312, 423.01422054499994, 418.32892974800006, 418.32892974800006, 419.8992137339999, 419.4057499380001, 419.4057499380001, 425.70675522199986, 419.8992137339999, 418.72903639900005, 418.72903639900005, 419.85226537799986, 419.85226537799986, 419.85226537799986, 424.4426622869996, 419.7586755179998, 419.7586755179998, 423.7618097700001, 421.42192052999985, 421.42192052999985, 427.18128453400004, 419.66508565799995, 420.788342414, 420.788342414, 421.911198988, 421.911198988, 421.911198988, 421.28117254999984, 421.28117254999984, 421.28117254999984, 425.2364787719998, 421.72364716799984, 421.72364716799984, 430.946705434, 422.4042199999999, 422.4042199999999, 421.14073188, 421.14073188, 422.21626723500003, 421.62956379599996, 421.62956379599996, 421.0466950199998], \"power_mean\": 420.84853466401995, \"energy_millijoules\": 21498.946491087634, \"energy_joules\": 21.498946491087633, \"coremark_score\": 5875.210528, \"coremarks_per_mhz\": 6.652185833333332, \"ulpmark_cm_score\": 13.95417213231191}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [767.099662952, 767.7472075799999, 766.5694442849998, 766.5694442849998], \"power_mean\": 766.9964397754999, \"energy_millijoules\": 3834.9821988774993, \"energy_joules\": 3.8349821988774995}}, \"940800\": {\"active\": {\"elapsed_sec\": 47.750781701, \"elapsed_ns\": 47750781701, \"power_samples\": [12.144853709999893, 444.8450714879998, 444.8450714879998, 449.86892779999994, 451.03808125, 451.03808125, 452.1109922549997, 452.69743896, 452.69743896, 460.0110808239999, 452.60114984999973, 457.08721217699986, 457.08721217699986, 454.16334353, 453.57703697299985, 453.57703697299985, 452.946552525, 453.48065483799996, 453.48065483799996, 455.1390809249997, 455.18750006999994, 455.18750006999994, 462.05740207400004, 453.92211344999987, 453.335923632, 453.335923632, 455.0906617799999, 458.9888014580001, 458.9888014580001, 454.9941399549998, 458.40270496999983, 458.40270496999983, 454.3115216420001, 454.8976181299997, 454.8976181299997, 461.81454222599973, 453.72925584999984, 453.63282705000006, 453.63282705000006, 455.9693655599999, 454.80109630499965, 454.80109630499965, 454.118571322, 459.2842152559997, 459.2842152559997, 456.362092353, 460.93707341499976], \"power_mean\": 445.4213848119148, \"energy_millijoules\": 21269.21931111086, \"energy_joules\": 21.26921931111086, \"coremark_score\": 6285.486811, \"coremarks_per_mhz\": 6.681002137542517, \"ulpmark_cm_score\": 14.104890057872623}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [780.5292503200001, 780.5292503200001, 769.4674193339999, 769.52844522], \"power_mean\": 775.0135912985, \"energy_millijoules\": 3875.0679564925003, \"energy_joules\": 3.8750679564925004}}, \"1036800\": {\"active\": {\"elapsed_sec\": 43.597868316, \"elapsed_ns\": 43597868316, \"power_samples\": [396.17249603799996, 396.17249603799996, 511.65102805900005, 516.7534761539998, 516.7534761539998, 521.8076766680001, 514.9031830020001, 515.383367659, 515.383367659, 515.2819127639998, 516.3978919620001, 516.3978919620001, 516.9832413509998, 515.8163683859998, 515.8163683859998, 516.2963440419999, 521.4506250439999, 521.4506250439999, 524.848439724, 520.178239266, 517.2636669899998, 517.2636669899998, 519.0116453759999, 518.9098647409996, 518.9098647409996, 517.1620257399998, 518.2774926900001, 518.2774926900001, 519.34211959, 518.705969764, 518.705969764, 525.024142812, 518.1247245, 518.0229902249998, 518.0229902249998, 523.7557216219998, 519.770410614, 519.770410614, 522.5857697899996, 518.5024084939998, 518.5024084939998, 519.03630383, 518.4513513229999], \"power_mean\": 512.7278587669999, \"energy_millijoules\": 22353.84166846831, \"energy_joules\": 22.35384166846831, \"coremark_score\": 6884.839583, \"coremarks_per_mhz\": 6.6404702768132715, \"ulpmark_cm_score\": 13.420511983994743}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [772.976376237, 774.18275366, 773.037528432, 773.037528432], \"power_mean\": 773.3085466902501, \"energy_millijoules\": 3866.5427334512506, \"energy_joules\": 3.8665427334512508}}, \"1113600\": {\"active\": {\"elapsed_sec\": 40.503212849, \"elapsed_ns\": 40503212849, \"power_samples\": [572.2822165919999, 572.2822165919999, 573.6073494579998, 576.36270657, 576.36270657, 583.72422891, 576.783429092, 577.3147555299997, 577.3147555299997, 578.3730997350001, 578.8469355899997, 578.8469355899997, 584.5673516479997, 579.908422968, 579.908422968, 583.1884472579998, 579.801615933, 579.801615933, 587.21238576, 581.4397189860001, 581.386070454, 581.386070454, 580.805729742, 580.805729742, 580.805729742, 580.698829682, 581.279124034, 581.279124034, 586.89015021, 581.6492499420001, 581.6492499420001, 581.6492499420001, 594.247274414, 581.6492499420001, 581.0652311939998, 581.0652311939998, 582.7063842119999, 582.1262289399999, 582.1262289399999, 582.0191891899999], \"power_mean\": 580.6304660789749, \"energy_millijoules\": 23517.399354210796, \"energy_joules\": 23.517399354210795, \"coremark_score\": 7411.067194, \"coremarks_per_mhz\": 6.6550531555316095, \"ulpmark_cm_score\": 12.756512549772427}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [778.2120174500001, 781.73665052, 776.5709323230001, 776.5709323230001], \"power_mean\": 778.272633154, \"energy_millijoules\": 3891.36316577, \"energy_joules\": 3.8913631657699996}}, \"1190400\": {\"active\": {\"elapsed_sec\": 37.785296079, \"elapsed_ns\": 37785296079, \"power_samples\": [18.602998079999907, 635.6182056899997, 635.6182056899997, 641.0482658819997, 643.2623657459999, 643.2623657459999, 643.6779324109998, 644.7846795539999, 644.7846795539999, 651.5970144599999, 646.9457181, 651.37157981, 651.37157981, 648.4630787459998, 650.7921667539999, 650.7921667539999, 647.7712274399998, 647.188049121, 647.188049121, 647.0756575360001, 647.6587891900001, 647.6587891900001, 655.5732141919998, 648.125256114, 650.3411134809999, 650.3411134809999, 649.1750371390001, 651.9697962299999, 651.9697962299999, 649.0624595039999, 654.7640898909999, 654.7640898909999, 650.694906295, 650.694906295, 650.694906295, 655.7562798719998, 650.5821889699998], \"power_mean\": 631.379532926081, \"energy_millijoules\": 23856.862589832697, \"energy_joules\": 23.856862589832698, \"coremark_score\": 7944.494465, \"coremarks_per_mhz\": 6.673802473958332, \"ulpmark_cm_score\": 12.574998027102433}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [779.3854126379999, 788.722557096, 777.6879646000001, 776.5756044], \"power_mean\": 780.5928846835, \"energy_millijoules\": 3902.9644234175, \"energy_joules\": 3.9029644234174996}}, \"1248000\": {\"active\": {\"elapsed_sec\": 36.259543007, \"elapsed_ns\": 36259543007, \"power_samples\": [25.650643859999832, 25.650643859999832, 695.98488565, 691.7976187529998, 692.7305785610001, 692.7305785610001, 692.1480306020001, 694.4122663899998, 694.4122663899998, 694.878443505, 699.8719838899999, 699.8719838899999, 695.8067113099999, 700.3375555800001, 700.3375555800001, 704.1678411489997, 698.47729233, 697.31651601, 697.31651601, 696.6176914529999, 696.5011579679999, 696.5011579679999, 697.08335571, 698.1272728050001, 698.1272728050001, 698.0105996299999, 699.7531082619998, 699.7531082619998, 705.382824264, 702.597306446, 697.9520717749999, 697.9520717749999, 703.0584910580001, 699.5776974679998, 699.5776974679998, 700.0390684349998], \"power_mean\": 660.5697740398055, \"energy_millijoules\": 23951.958130920597, \"energy_joules\": 23.951958130920598, \"coremark_score\": 8279.287981, \"coremarks_per_mhz\": 6.634044856570513, \"ulpmark_cm_score\": 12.525071994540491}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [784.0210024799999, 782.91006926, 787.60250646, 787.60250646], \"power_mean\": 785.534021165, \"energy_millijoules\": 3927.670105825, \"energy_joules\": 3.927670105825}}, \"1324800\": {\"active\": {\"elapsed_sec\": 34.153114518, \"elapsed_ns\": 34153114518, \"power_samples\": [95.38816749799992, 783.9394541459999, 783.9394541459999, 786.0098825959997, 788.7226870769998, 788.7226870769998, 789.1798082059997, 785.8238494079999, 785.8238494079999, 800.976239648, 780.02617407, 792.8636198000002, 792.8636198000002, 779.2019362139999, 794.9932047899997, 794.9932047899997, 800.0194389210001, 796.9973670700001, 796.9973670700001, 796.4202501259999, 755.5590299060002, 755.5590299060002, 804.216383556, 797.2657995270001, 796.6850025000001, 796.6850025000001, 756.3530324410001, 795.5272045049999, 795.5272045049999, 795.2776626549999, 797.015978297, 797.015978297, 781.6260364470002, 767.4504982659998], \"power_mean\": 767.8137089755588, \"energy_millijoules\": 26223.229531132587, \"energy_joules\": 26.22322953113259, \"coremark_score\": 8790.436006, \"coremarks_per_mhz\": 6.635292878925121, \"ulpmark_cm_score\": 11.440238497086554}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [788.6439449790001, 795.68002206, 792.2267791200001, 787.628058012], \"power_mean\": 791.04470104275, \"energy_millijoules\": 3955.2235052137503, \"energy_joules\": 3.95522350521375}}, \"1401600\": {\"active\": {\"elapsed_sec\": 32.038382592, \"elapsed_ns\": 32038382592, \"power_samples\": [847.0132624839998, 847.0132624839998, 857.94429958, 855.5621329349999, 855.5621329349999, 868.3515270359999, 858.5160284399999, 861.278829092, 861.278829092, 861.278829092, 861.8589024290002, 861.8589024290002, 861.8589024290002, 861.0832914879998, 862.8195104059998, 862.8195104059998, 864.8708580559999, 864.8708580559999, 864.8708580559999, 876.0438854999998, 866.34500609, 867.3700747949999, 867.3700747949999, 866.6595771299997, 866.0836430499999, 866.0836430499999, 868.26408988, 866.5288492499999, 866.5288492499999, 867.0429240479998, 866.4632710019998], \"power_mean\": 862.9514391859676, \"energy_millijoules\": 27647.56836695705, \"energy_joules\": 27.64756836695705, \"coremark_score\": 9371.192953, \"coremarks_per_mhz\": 6.686068031535388, \"ulpmark_cm_score\": 10.85086384517434}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [795.0163947599999, 795.0795480600001, 796.3141563050001, 796.3141563050001], \"power_mean\": 795.6810638575, \"energy_millijoules\": 3978.4053192875, \"energy_joules\": 3.9784053192875}}, \"1478400\": {\"active\": {\"elapsed_sec\": 30.612194311, \"elapsed_ns\": 30612194311, \"power_samples\": [43.01449709199994, 43.01449709199994, 953.9046878849999, 956.9530542, 956.9530542, 967.5061503080001, 960.0039814220002, 962.2422119739997, 962.2422119739997, 959.796074154, 967.6672152220001, 967.6672152220001, 965.2903091459998, 963.4192946419998, 963.4192946419998, 965.0124712259999, 964.8735522659997, 964.8735522659997, 973.249617618, 966.39277169, 966.9019096259999, 966.9019096259999, 967.4105448150001, 967.2713931399999, 967.2713931399999, 968.85964891, 972.7602711090001, 972.7602711090001, 968.7199011579999, 972.481036899], \"power_mean\": 903.9611331257667, \"energy_millijoules\": 27672.233856837705, \"energy_joules\": 27.672233856837707, \"coremark_score\": 9807.767752, \"coremarks_per_mhz\": 6.63404204004329, \"ulpmark_cm_score\": 10.841191988765704}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [803.6215338840001, 803.166182406, 802.611205812, 802.611205812], \"power_mean\": 803.0025319785, \"energy_millijoules\": 4015.0126598925, \"energy_joules\": 4.0150126598925}}, \"1555200\": {\"active\": {\"elapsed_sec\": 28.81486551, \"elapsed_ns\": 28814865510, \"power_samples\": [712.9184445899998, 712.9184445899998, 1048.5053681149998, 1054.98067597, 1054.98067597, 1060.952123239, 1056.489769482, 1057.3478564819998, 1057.3478564819998, 1057.2007313759998, 1060.510870467, 1060.510870467, 1060.363946782, 1060.790545089, 1060.790545089, 1060.6435750439998, 1067.33015809, 1067.33015809, 1070.6378759379998, 1066.4617877939997, 1062.003532171, 1062.003532171, 1063.006820826, 1064.009440494, 1064.009440494, 1066.166339966, 1064.868738816, 1064.868738816], \"power_mean\": 1036.4267451035714, \"energy_millijoules\": 29864.497271126464, \"energy_joules\": 29.864497271126464, \"coremark_score\": 10419.922893, \"coremarks_per_mhz\": 6.700053300540124, \"ulpmark_cm_score\": 10.045372512935131}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [811.14072984, 810.09684228, 808.9920520649999, 808.9920520649999], \"power_mean\": 809.8054190624999, \"energy_millijoules\": 4049.0270953124996, \"energy_joules\": 4.0490270953125}}, \"1632000\": {\"active\": {\"elapsed_sec\": 27.484429104, \"elapsed_ns\": 27484429104, \"power_samples\": [62.10188098599974, 1152.7389859619998, 1158.286092354, 1158.286092354, 1160.350611818, 1163.489386502, 1163.489386502, 1174.0932052379997, 1167.619441991, 1168.6894211140002, 1168.6894211140002, 1175.7627923309997, 1172.8124997300001, 1172.8124997300001, 1178.81790979, 1174.72087383, 1174.72087383, 1176.78083034, 1178.347121245, 1178.347121245, 1187.2938453180002, 1179.258796446, 1183.694470168, 1183.694470168, 1182.311025706, 1183.3791642289998, 1183.3791642289998], \"power_mean\": 1131.99879201, \"energy_millijoules\": 31112.340544812487, \"energy_joules\": 31.112340544812486, \"coremark_score\": 10924.583955, \"coremarks_per_mhz\": 6.693985266544118, \"ulpmark_cm_score\": 9.642476096193942}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [824.4203010000001, 819.908226707, 819.908226707, 819.4202250660001], \"power_mean\": 820.9142448700001, \"energy_millijoules\": 4104.57122435, \"energy_joules\": 4.10457122435}}, \"1708800\": {\"active\": {\"elapsed_sec\": 26.416240875, \"elapsed_ns\": 26416240875, \"power_samples\": [64.40231862299993, 1267.647925738, 1275.4260462709997, 1275.4260462709997, 1282.6312082130003, 1281.725286306, 1281.725286306, 1288.1867595, 1286.3836190910001, 1286.3836190910001, 1301.268584655, 1294.969464945, 1295.7807335300001, 1295.7807335300001, 1299.0473657209998, 1298.7131229309996, 1298.7131229309996, 1299.1200749779998, 1299.1200749779998, 1299.610266935, 1299.610266935, 1302.2215675140003, 1301.073607596, 1301.073607596, 1318.8009679650002, 1303.1147398879996], \"power_mean\": 1246.0752468476153, \"energy_millijoules\": 32916.62386910169, \"energy_joules\": 32.91662386910169, \"coremark_score\": 11367.080934, \"coremarks_per_mhz\": 6.652083879915731, \"ulpmark_cm_score\": 9.1139359003827}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [826.781490288, 826.781490288, 830.868273456, 823.9933611], \"power_mean\": 827.106153783, \"energy_millijoules\": 4135.5307689149995, \"energy_joules\": 4.135530768914999}}, \"1785600\": {\"active\": {\"elapsed_sec\": 25.207206449, \"elapsed_ns\": 25207206449, \"power_samples\": [72.43575080999994, 72.43575080999994, 1440.95863098, 1428.511093805, 1444.54572773, 1444.54572773, 1442.2925710819998, 1448.3047175999998, 1448.3047175999998, 1454.047818157, 1455.581288616, 1455.581288616, 1457.8937886700003, 1460.08558449, 1460.08558449, 1473.8097411999995, 1464.6772619319997, 1471.161189066, 1471.161189066, 1464.3148164020001, 1475.1796257900003, 1475.1796257900003, 1470.524656794, 1471.005370401, 1471.005370401], \"power_mean\": 1347.7451555211198, \"energy_millijoules\": 33972.89037586048, \"energy_joules\": 33.97289037586048, \"coremark_score\": 11913.74449, \"coremarks_per_mhz\": 6.672123930331541, \"ulpmark_cm_score\": 8.83057039542228}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [837.5203186560001, 833.637610074, 831.990054753, 831.990054753], \"power_mean\": 833.7845095590001, \"energy_millijoules\": 4168.922547795, \"energy_joules\": 4.168922547795001}}, \"1824000\": {\"active\": {\"elapsed_sec\": 24.702473376, \"elapsed_ns\": 24702473376, \"power_samples\": [87.34895473999995, 1493.077133691, 1520.9190105150003, 1520.9190105150003, 1532.146245795, 1538.995823807, 1538.995823807, 1550.871426159, 1545.5561752259998, 1548.599699002, 1548.599699002, 1554.3916895400005, 1557.5266537399996, 1557.5266537399996, 1559.5188887819997, 1568.0575528739998, 1568.0575528739998, 1562.9352303779995, 1571.0935153429998, 1571.0935153429998, 1577.0666506139999, 1564.073794562, 1566.82493835, 1566.82493835], \"power_mean\": 1490.4591906978749, \"energy_millijoules\": 36818.02847622876, \"energy_joules\": 36.81802847622876, \"coremark_score\": 12156.576708, \"coremarks_per_mhz\": 6.664789861842106, \"ulpmark_cm_score\": 8.148182084048644}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [846.1445196, 845.11465721, 845.11465721, 840.65211875], \"power_mean\": 844.2564881925, \"energy_millijoules\": 4221.2824409625, \"energy_joules\": 4.2212824409625}}, \"1920000\": {\"active\": {\"elapsed_sec\": 23.36730572, \"elapsed_ns\": 23367305720, \"power_samples\": [101.13541939799995, 1705.6049236709998, 1718.6576892799997, 1718.6576892799997, 1731.5751541379998, 1737.0057440820003, 1737.0057440820003, 1743.7672854900004, 1750.52958702, 1750.52958702, 1749.651828937, 1764.1420197559999, 1764.1420197559999, 1769.0416622650002, 1765.8949387259997, 1765.3263749670002, 1765.3263749670002, 1763.2105751829997, 1768.10833119, 1768.10833119, 1767.124658384, 1771.4524997859996, 1771.4524997859996], \"power_mean\": 1680.3239538414782, \"energy_millijoules\": 39264.643538052995, \"energy_joules\": 39.264643538052994, \"coremark_score\": 12852.919755, \"coremarks_per_mhz\": 6.694229039062501, \"ulpmark_cm_score\": 7.640461569688199}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [863.9293201149999, 863.9293201149999, 854.8173514, 855.5038906999999], \"power_mean\": 859.5449705824999, \"energy_millijoules\": 4297.724852912499, \"energy_joules\": 4.297724852912499}}, \"1996800\": {\"active\": {\"elapsed_sec\": 22.468077908, \"elapsed_ns\": 22468077908, \"power_samples\": [110.238468732, 1927.7392426979998, 1950.3032829, 1950.3032829, 1966.3754063220001, 1975.7618598689999, 1975.7618598689999, 1995.535592562, 1990.562269026, 1992.593232306, 1992.593232306, 2007.7144508119998, 2002.0697554479996, 2002.0697554479996, 2012.673017292, 2008.495314423, 2008.495314423, 2014.69386685, 2017.8513742899997, 2017.8513742899997, 2033.0570189370003, 2024.2629198339998], \"power_mean\": 1908.045540524409, \"energy_millijoules\": 42870.1158565144, \"energy_joules\": 42.8701158565144, \"coremark_score\": 13366.601319, \"coremarks_per_mhz\": 6.694011077223558, \"ulpmark_cm_score\": 6.997881717980312}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [882.7332765240001, 873.7066201050001, 873.7066201050001, 876.720670068], \"power_mean\": 876.7167967005, \"energy_millijoules\": 4383.5839835025, \"energy_joules\": 4.3835839835025}}, \"2073600\": {\"active\": {\"elapsed_sec\": 21.832121242, \"elapsed_ns\": 21832121242, \"power_samples\": [2086.5218487329994, 2086.5218487329994, 2167.5664133459995, 2177.7378463140003, 2187.2144851040002, 2187.2144851040002, 2196.2445631560004, 2204.506774765, 2204.506774765, 2215.2107412899995, 2218.4060449499993, 2218.4060449499993, 2234.2717065899997, 2229.092318682, 2229.092318682, 2258.23919493, 2240.209083195, 2243.3933319, 2243.3933319, 2243.3933319, 2245.95167699], \"power_mean\": 2205.5759126656667, \"energy_millijoules\": 48152.40073375164, \"energy_joules\": 48.15240073375164, \"coremark_score\": 13757.050488, \"coremarks_per_mhz\": 6.634380057870371, \"ulpmark_cm_score\": 6.230218959565185}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [880.755401463, 886.0578825599999, 875.9135525880001, 875.9135525880001], \"power_mean\": 879.6600972997501, \"energy_millijoules\": 4398.300486498751, \"energy_joules\": 4.3983004864987505}}, \"2150400\": {\"active\": {\"elapsed_sec\": 21.040015513, \"elapsed_ns\": 21040015513, \"power_samples\": [124.21888200000001, 2372.38653771, 2372.38653771, 2399.704319118, 2421.953404344, 2421.953404344, 2432.8169534500003, 2447.85360788, 2447.85360788, 2456.0306277299997, 2461.65078199, 2461.65078199, 2488.841306626, 2477.52574071, 2490.554704645, 2490.554704645, 2487.7791614400003, 2493.6713130420003, 2493.6713130420003, 2498.850367528], \"power_mean\": 2337.0954028912, \"energy_millijoules\": 49172.52353219184, \"energy_joules\": 49.17252353219184, \"coremark_score\": 14276.876219, \"coremarks_per_mhz\": 6.639172348865327, \"ulpmark_cm_score\": 6.1009681515246745}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [895.43627443, 887.051031808, 887.051031808, 901.565596068], \"power_mean\": 892.7759835285, \"energy_millijoules\": 4463.8799176425, \"energy_joules\": 4.4638799176425}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 4}}"
  },
  {
    "path": "results/msm8996/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu2 \nOffline CPUs: cpu1 cpu2 cpu3 \nSampling power every 1000 ms\nBaseline power usage: 757 mW\n\n\n===== CPU 1 =====\nFrequencies: 307 422 480 556 652 729 844 960 1036 1113 1190 1228 1324 1401 1478 1593\n\n 307:  2053     6.7 C/MHz    125 mW   18.2 J   16.5 I/mJ   146.2 s\n 422:  2806     6.6 C/MHz    163 mW   17.5 J   17.2 I/mJ   106.9 s\n 480:  3201     6.7 C/MHz    189 mW   17.7 J   16.9 I/mJ    93.7 s\n 556:  3686     6.6 C/MHz    223 mW   18.2 J   16.5 I/mJ    81.4 s\n 652:  4355     6.7 C/MHz    245 mW   16.9 J   17.7 I/mJ    68.9 s\n 729:  4837     6.6 C/MHz    274 mW   17.0 J   17.7 I/mJ    62.0 s\n 844:  5333     6.3 C/MHz    316 mW   17.8 J   16.9 I/mJ    56.3 s\n 960:  6430     6.7 C/MHz    426 mW   19.9 J   15.1 I/mJ    46.7 s\n1036:  6872     6.6 C/MHz    479 mW   20.9 J   14.3 I/mJ    43.7 s\n1113:  6620     5.9 C/MHz    501 mW   22.7 J   13.2 I/mJ    45.3 s\n1190:  7885     6.6 C/MHz    615 mW   23.4 J   12.8 I/mJ    38.1 s\n1228:  8155     6.6 C/MHz    631 mW   23.2 J   12.9 I/mJ    36.8 s\n1324:  8833     6.7 C/MHz    766 mW   26.0 J   11.5 I/mJ    34.0 s\n1401:  9397     6.7 C/MHz    902 mW   28.8 J   10.4 I/mJ    31.9 s\n1478:  9812     6.6 C/MHz    994 mW   30.4 J    9.9 I/mJ    30.6 s\n1593: 10642     6.7 C/MHz   1230 mW   34.7 J    8.7 I/mJ    28.2 s\n\n\n===== CPU 2 =====\nFrequencies: 307 403 480 556 652 729 806 883 940 1036 1113 1190 1248 1324 1401 1478 1555 1632 1708 1785 1824 1920 1996 2073 2150\n\n 307:  2008     6.5 C/MHz    182 mW   27.1 J   11.1 I/mJ   149.4 s\n 403:  2687     6.7 C/MHz    217 mW   24.2 J   12.4 I/mJ   111.7 s\n 480:  3213     6.7 C/MHz    247 mW   23.1 J   13.0 I/mJ    93.4 s\n 556:  3731     6.7 C/MHz    276 mW   22.2 J   13.5 I/mJ    80.4 s\n 652:  4344     6.7 C/MHz    312 mW   21.5 J   13.9 I/mJ    69.1 s\n 729:  4852     6.6 C/MHz    351 mW   21.7 J   13.8 I/mJ    61.9 s\n 806:  5368     6.7 C/MHz    379 mW   21.2 J   14.1 I/mJ    55.9 s\n 883:  5875     6.7 C/MHz    421 mW   21.5 J   14.0 I/mJ    51.1 s\n 940:  6285     6.7 C/MHz    445 mW   21.3 J   14.1 I/mJ    47.8 s\n1036:  6885     6.6 C/MHz    513 mW   22.4 J   13.4 I/mJ    43.6 s\n1113:  7411     6.7 C/MHz    581 mW   23.5 J   12.8 I/mJ    40.5 s\n1190:  7944     6.7 C/MHz    631 mW   23.9 J   12.6 I/mJ    37.8 s\n1248:  8279     6.6 C/MHz    661 mW   24.0 J   12.5 I/mJ    36.3 s\n1324:  8790     6.6 C/MHz    768 mW   26.2 J   11.4 I/mJ    34.2 s\n1401:  9371     6.7 C/MHz    863 mW   27.6 J   10.9 I/mJ    32.0 s\n1478:  9808     6.6 C/MHz    904 mW   27.7 J   10.8 I/mJ    30.6 s\n1555: 10420     6.7 C/MHz   1036 mW   29.9 J   10.0 I/mJ    28.8 s\n1632: 10925     6.7 C/MHz   1132 mW   31.1 J    9.6 I/mJ    27.5 s\n1708: 11367     6.7 C/MHz   1246 mW   32.9 J    9.1 I/mJ    26.4 s\n1785: 11914     6.7 C/MHz   1348 mW   34.0 J    8.8 I/mJ    25.2 s\n1824: 12157     6.7 C/MHz   1490 mW   36.8 J    8.1 I/mJ    24.7 s\n1920: 12853     6.7 C/MHz   1680 mW   39.3 J    7.6 I/mJ    23.4 s\n1996: 13367     6.7 C/MHz   1908 mW   42.9 J    7.0 I/mJ    22.5 s\n2073: 13757     6.6 C/MHz   2206 mW   48.2 J    6.2 I/mJ    21.8 s\n2150: 14277     6.6 C/MHz   2337 mW   49.2 J    6.1 I/mJ    21.0 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/msm8996/main/uptime.txt",
    "content": " 17:17:36 up 43 min,  load average: 3.30, 3.34, 3.15\n"
  },
  {
    "path": "results/msm8996/main/versions.txt",
    "content": "Kernel: Linux version 4.4.186-mk2k-v0.1-FREQBENCH (stendro@github) (gcc version 12.1.0 (GCC) ) #2 SMP PREEMPT Mon Aug 8 16:19:19 CEST 2022\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/msm8998/fts-irq-storm/cmdline.txt",
    "content": "isolcpus=1-7 nohz_full=1-7 loglevel=0 console=ttyMSM0,115200,n8 earlycon=msm_serial_dm,0xc1b0000 androidboot.hardware=taimen androidboot.console=ttyMSM0 lpm_levels.sleep_disabled=1 user_debug=31 msm_rtb.filter=0 ehci-hcd.park=3 service_locator.enable=1 swiotlb=2048 firmware_class.path=/vendor/firmware loop.max_part=7 raid=noautodetect usbcore.autosuspend=7 androidboot.dtbo_idx=12 buildvariant=user androidboot.revision=rev_10 androidboot.bootreason androidboot.hardware.sku=G011C bootcable.type=400MA androidboot.ddr_size=4096MB androidboot.ddr_info=SAMSUNG msm_poweroff.download_mode=0 androidboot.ramdump_enable=0 androidboot.hardware.display=MP androidboot.hardware.ufs=64GB,SAMSUNG androidboot.cid=00000000 androidboot.hardware.color=RCW androidboot.hardware.variant=GA00136-GB androidboot.hardware.mid=2 androidboot.theme=1 androidboot.boottime=1BLL:132,1BLE:1201,2BLL:34,2BLE:2840,AVB:43,KL:0,KD:1432,ODT:0,SW:10000 androidboot.verifiedbootstate=green androidboot.keymaster=1 root=PARTUUID=5b492f57-20d9-0460-5e05-f5f6fda52872 androidboot.bootdevice=1da4000.ufshc androidboot.serialno=REDACTED androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_sw43402_dsc_qhd_cmd:1:none:cfg:single_dsi androidboot.slot_suffix=_b skip_initramfs rootwait ro init=/init androidboot.bootloader=TMZ30m\n"
  },
  {
    "path": "results/msm8998/fts-irq-storm/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Initializing cgroup subsys cpuset\n[    0.000000] Initializing cgroup subsys cpu\n[    0.000000] Initializing cgroup subsys cpuacct\n[    0.000000] Initializing cgroup subsys schedtune\n[    0.000000] Linux version 4.4.223-proton-g295acc8d (kdrag0n@pinwheel) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project dcc06597b1d61d35c7246d3ab2d7a807134aaa45)) #625 SMP PREEMPT Sat Dec 5 19:01:00 PST 2020\n[    0.000000] Boot CPU: AArch64 Processor [51af8014]\n[    0.000000] Machine: Qualcomm Technologies, Inc. MSM8998 v2.1\n[    0.000000] enabling serial (console=ttyMSM0,115200,n8)\n[    0.000000] earlycon: Early serial console at MMIO 0xc1b0000 (options '')\n[    0.000000] bootconsole [uart0] enabled\n[    0.000000] Reserved memory: reserved region for node 'removed_regions@85800000': base 0x0000000000000000, size 55 MiB\n[    0.000000] Reserved memory: reserved region for node 'pil_ipa_gpu_region@95200000': base 0x0000000000000000, size 1 MiB\n[    0.000000] Reserved memory: reserved region for node 'pil_slpi_region@94300000': base 0x0000000000000000, size 15 MiB\n[    0.000000] Reserved memory: reserved region for node 'pil_mba_region@94100000': base 0x0000000000000000, size 2 MiB\n[    0.000000] Reserved memory: reserved region for node 'pil_video_region@93c00000': base 0x0000000000000000, size 5 MiB\n[    0.000000] Reserved memory: reserved region for node 'modem_region@8cc00000': base 0x0000000000000000, size 120 MiB\n[    0.000000] Reserved memory: reserved region for node 'pil_adsp_region@0x8b200000': base 0x0000000000000000, size 26 MiB\n[    0.000000] Reserved memory: reserved region for node 'spss_region@8ab00000': base 0x0000000000000000, size 7 MiB\n[    0.000000] Reserved memory: reserved region for node 'alt_ramoops_region@b0e00000': base 0x0000000000000000, size 2 MiB\n[    0.000000] Reserved memory: reserved region for node 'ramoops_region@b0000000': base 0x0000000000000000, size 2 MiB\n[    0.000000] Reserved memory: reserved region for node 'ramoops_meta_region@affff000': base 0x0000000000000000, size 0 MiB\n[    0.000000] Reserved memory: allocated memory for 'qseecom_region' node: base 0x0000000000000000, size 20 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x0000000000000000, size 20 MiB\n[    0.000000] Reserved memory: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'adsp_region' node: base 0x0000000000000000, size 8 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x0000000000000000, size 8 MiB\n[    0.000000] Reserved memory: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'sp_region' node: base 0x0000000000000000, size 8 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x0000000000000000, size 8 MiB\n[    0.000000] Reserved memory: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'secure_region' node: base 0x0000000000000000, size 92 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x0000000000000000, size 92 MiB\n[    0.000000] Reserved memory: initialized node secure_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'linux,cma' node: base 0x0000000000000000, size 32 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x0000000000000000, size 32 MiB\n[    0.000000] Reserved memory: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 55 MiB\n[    0.000000] Reserved memory: initialized node removed_regions@85800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 7 MiB\n[    0.000000] Reserved memory: initialized node spss_region@8ab00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 26 MiB\n[    0.000000] Reserved memory: initialized node pil_adsp_region@0x8b200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 120 MiB\n[    0.000000] Reserved memory: initialized node modem_region@8cc00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 5 MiB\n[    0.000000] Reserved memory: initialized node pil_video_region@93c00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 2 MiB\n[    0.000000] Reserved memory: initialized node pil_mba_region@94100000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 15 MiB\n[    0.000000] Reserved memory: initialized node pil_slpi_region@94300000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 1 MiB\n[    0.000000] Reserved memory: initialized node pil_ipa_gpu_region@95200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 0 MiB\n[    0.000000] Reserved memory: initialized node ramoops_meta_region@affff000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 2 MiB\n[    0.000000] Reserved memory: initialized node ramoops_region@b0000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 2 MiB\n[    0.000000] Reserved memory: initialized node alt_ramoops_region@b0e00000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 981439\n[    0.000000]   DMA zone: 7252 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 464127 pages, LIFO batch:31\n[    0.000000]   Normal zone: 8083 pages used for memmap\n[    0.000000]   Normal zone: 517312 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.0 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] PERCPU: Embedded 18 pages/cpu @0000000000000000 s42648 r0 d31080 u73728\n[    0.000000] pcpu-alloc: s42648 r0 d31080 u73728 alloc=18*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: enabling workaround for Kryo2xx Silver erratum 845719\n[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 966104\n[    0.000000] Kernel command line: isolcpus=1-7 nohz_full=1-7 loglevel=0 console=ttyMSM0,115200,n8 earlycon=msm_serial_dm,0xc1b0000 androidboot.hardware=taimen androidboot.console=ttyMSM0 lpm_levels.sleep_disabled=1 user_debug=31 msm_rtb.filter=0 ehci-hcd.park=3 service_locator.enable=1 swiotlb=2048 firmware_class.path=/vendor/firmware loop.max_part=7 raid=noautodetect usbcore.autosuspend=7 androidboot.dtbo_idx=12 buildvariant=user androidboot.revision=rev_10 androidboot.bootreason androidboot.hardware.sku=G011C bootcable.type=400MA androidboot.ddr_size=4096MB androidboot.ddr_info=SAMSUNG msm_poweroff.download_mode=0 androidboot.ramdump_enable=0 androidboot.hardware.display=MP androidboot.hardware.ufs=64GB,SAMSUNG androidboot.cid=00000000 androidboot.hardware.color=RCW androidboot.hardware.variant=GA00136-GB androidboot.hardware.mid=2 androidboot.theme=1 androidboot.boottime=1BLL:132,1BLE:1201,2BLL:34,2BLE:2840,AVB:43,KL:0,KD:1432,ODT:0,SW:10000 androidboot.verifiedbootstate=orange androi\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] software IO TLB: mapped [mem 0xf5800000-0xf5c00000] (4MB)\n[    0.000000] Memory: 3622296K/3925756K available (17918K kernel code, 1942K rwdata, 4768K rodata, 6144K init, 4204K bss, 139620K reserved, 163840K cma-reserved)\n[    0.000000] Virtual kernel memory layout:\n                   modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n                   vmalloc : 0xffffff8008000000 - 0xffffffbdbfff0000   (   246 GB)\n                     .init : 0x0000000000000000 - 0x0000000000000000   (  6144 KB)\n                     .text : 0x0000000000000000 - 0x0000000000000000   ( 17920 KB)\n                   .rodata : 0x0000000000000000 - 0x0000000000000000   (  6144 KB)\n                     .data : 0x0000000000000000 - 0x0000000000000000   (  1943 KB)\n                   vmemmap : 0xffffffbdc0000000 - 0xffffffbfc0000000   (     8 GB maximum)\n                             0xffffffbeac000000 - 0xffffffbeaff93000   (    63 MB actual)\n                   fixed   : 0xffffffbffe7fd000 - 0xffffffbffec00000   (  4108 KB)\n                   PCI I/O : 0xffffffbffee00000 - 0xffffffbfffe00000   (    16 MB)\n                   memory  : 0xfffffffb00000000 - 0xfffffffbfe4c0000   (  4068 MB)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] NR_IRQS:64 nr_irqs:64 0\n[    0.000000] mpm_init_irq_domain(): Cannot find irq controller for qcom,gpio-parent\n[    0.000000] MPM 1 irq mapping errored -517\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from all CPUs\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000011] clocksource: Switched to clocksource arch_sys_counter\n[    0.001532] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001540] pid_max: default: 32768 minimum: 301\n[    0.001580] Security Framework initialized\n[    0.001586] SELinux:  Initializing.\n[    0.001614] SELinux:  Starting in permissive mode\n[    0.001631] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001638] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.002006] Initializing cgroup subsys freezer\n[    0.002352] sched-energy: Sched-energy-costs installed from DT\n[    0.002390] ASID allocator initialised with 65536 entries\n[    0.009806] NOHZ: local_softirq_pending 02\n[    0.010018] NOHZ: local_softirq_pending 02\n[    0.278178] Brought up 8 CPUs\n[    0.278189] SMP: Total of 8 processors activated.\n[    0.278194] CPU features: detected feature: GIC system register CPU interface\n[    0.278198] CPU features: detected feature: 32-bit EL0 Support\n[    0.278203] CPU: All CPU(s) started at EL1\n[    0.278528] devtmpfs: initialized\n[    0.331632] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.331654] futex hash table entries: 2048 (order: 5, 131072 bytes)\n[    0.345452] pinctrl core: initialized pinctrl subsystem\n[    0.345940] NET: Registered protocol family 16\n[    0.346877] schedtune: init normalization constants...\n[    0.346884] schedtune: CLUSTER[0]        min_pwr:     0 max_pwr:    66\n[    0.346890] schedtune: CPU[0]            min_pwr:     0 max_pwr:   201\n[    0.346893] schedtune: SYSTEM            min_pwr:     0 max_pwr:   267\n[    0.346897] schedtune: using normalization constants mul: 3941074860 sh1: 1 sh2: 8\n[    0.346902] schedtune: configured to support 5 boost groups\n[    0.350074] cpuidle: using governor menu\n[    0.360033] cpuidle: using governor qcom\n[    0.360594] vdso32: 2 pages (1 code @ 0000000000000000, 1 data @ 0000000000000000)\n[    0.360603] vdso: 2 pages (1 code @ 0000000000000000, 1 data @ 0000000000000000)\n[    0.360612] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.360995] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.361048] msm_smem_init: unable to create logging context\n[    0.361067] msm_smd_init: unable to create SMD logging context\n[    0.361070] msm_smd_init: unable to create SMSM logging context\n[    0.371221] <CORE> glink_init: unable to create log context\n[    0.371279] <CORE> glink_core_register_transport: unable to create log context for [dsps:smd_trans]\n[    0.371324] <CORE> glink_core_register_transport: unable to create log context for [lpass:smd_trans]\n[    0.371369] <CORE> glink_core_register_transport: unable to create log context for [mpss:smd_trans]\n[    0.371410] <CORE> glink_core_register_transport: unable to create log context for [wcnss:smd_trans]\n[    0.371452] <CORE> glink_core_register_transport: unable to create log context for [rpm:smd_trans]\n[    0.371864] Failed to create IPC log0\n[    0.371867] Failed to create IPC log1\n[    0.371870] Failed to create IPC log2\n[    0.371872] Failed to create IPC log3\n[    0.371875] Failed to create IPC log4\n[    0.381967] exit: IPA_USB init success!\n[    0.387379] unable to find DT imem restart info node\n[    0.387395] restart_handler_init failure\n[    0.388713] unable to find DT imem DLOAD mode node\n[    0.389851] unable to find DT imem EDLOAD mode node\n[    0.390788] spmi spmi-0: PMIC arbiter version v3 (0x30000000)\n[    0.396777] sps:sps is ready.\n[    0.400232] (NULL device *): msm_gsi_probe:2842 failed to create IPC log, continue...\n[    0.401402] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.401694] msm_rpm_dev_probe: APSS-RPM communication over GLINK\n[    0.405331] <CORE> glink_core_register_transport: unable to create log context for [mpss:smem]\n[    0.405644] <CORE> glink_core_register_transport: unable to create log context for [lpass:smem]\n[    0.405954] <CORE> glink_core_register_transport: unable to create log context for [dsps:smem]\n[    0.406219] <CORE> glink_core_register_transport: unable to create log context for [rpm:smem]\n[    0.406536] <CORE> glink_core_register_transport: unable to create log context for [spss:mailbox]\n[    0.408270] platform 17300000.qcom,lpass: assigned reserved memory node pil_adsp_region@0x8b200000\n[    0.408563] platform 4080000.qcom,mss: assigned reserved memory node modem_region@8cc00000\n[    0.409697] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.409724] msm_thermal:vdd_restriction_reg_init Defer regulator vdd-dig probe\n[    0.409729] msm_thermal:probe_vdd_rstr Err regulator init. err:-517. KTM continues.\n[    0.409735] msm-thermal soc:qcom,msm-thermal: probe_vdd_rstr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,max-freq-level. err=-517. KTM continues\n[    0.414073] platform 5c00000.qcom,ssc: assigned reserved memory node pil_slpi_region@94300000\n[    0.414213] platform cce0000.qcom,venus: assigned reserved memory node pil_video_region@93c00000\n[    0.414369] msm_watchdog 17817000.qcom,wdt: wdog absent resource not present\n[    0.414497] msm_watchdog 17817000.qcom,wdt: MSM Watchdog Initialized\n[    0.414627] platform 1d0101c.qcom,spss: assigned reserved memory node spss_region@8ab00000\n[    0.417295] msm_mpm_dev_probe(): Cannot get clk resource for XO: -517\n[    0.426821] __of_mpm_init(): MPM driver mapping exists\n[    0.429754] irq: no irq domain found for /soc/qcom,mdss_mdp@c900000 !\n[    0.430156] msm_rpm_trans_notify_state: glink config params: transport=(null), edge=rpm, name=rpm_requests\n[    0.431378] i2c-msm-v2 c179000.i2c: probing driver i2c-msm-v2\n[    0.431431] i2c-msm-v2 c179000.i2c: error on clk_get(core_clk):-517\n[    0.431437] i2c-msm-v2 c179000.i2c: error probe() failed with err:-517\n[    0.431679] i2c-msm-v2 c17a000.i2c: probing driver i2c-msm-v2\n[    0.431712] i2c-msm-v2 c17a000.i2c: error on clk_get(core_clk):-517\n[    0.431717] i2c-msm-v2 c17a000.i2c: error probe() failed with err:-517\n[    0.431961] i2c-msm-v2 c1b5000.i2c: probing driver i2c-msm-v2\n[    0.431992] i2c-msm-v2 c1b5000.i2c: error on clk_get(core_clk):-517\n[    0.431998] i2c-msm-v2 c1b5000.i2c: error probe() failed with err:-517\n[    0.432203] i2c-msm-v2 c1b6000.i2c: probing driver i2c-msm-v2\n[    0.432235] i2c-msm-v2 c1b6000.i2c: error on clk_get(core_clk):-517\n[    0.432241] i2c-msm-v2 c1b6000.i2c: error probe() failed with err:-517\n[    0.432562] i2c-msm-v2 c1b7000.i2c: probing driver i2c-msm-v2\n[    0.432593] i2c-msm-v2 c1b7000.i2c: error on clk_get(core_clk):-517\n[    0.432599] i2c-msm-v2 c1b7000.i2c: error probe() failed with err:-517\n[    0.434508] irq: no irq domain found for /soc/qcom,sde_kms@c900000 !\n[    0.435336] platform soc:access_ramoops@0: assigned reserved memory node ramoops_meta_region@affff000\n[    0.435456] platform soc:access_ramoops@1: assigned reserved memory node alt_ramoops_region@b0e00000\n[    0.435573] platform soc:ramoops: assigned reserved memory node ramoops_region@b0000000\n[    0.436097] console [pstore-1] enabled\n[    0.436225] pstore: Registered ramoops as persistent store backend\n[    0.436273] ramoops: attached 0x200000@0xb0000000, ecc: 0/0\n[    0.437524] bldr_log_init: can't find compatible 'htc,bldr_log'\n[    0.469630] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.469706] msm_thermal:vdd_restriction_reg_init Defer regulator vdd-gfx probe\n[    0.469711] msm_thermal:probe_vdd_rstr Err regulator init. err:-517. KTM continues.\n[    0.469717] msm-thermal soc:qcom,msm-thermal: probe_vdd_rstr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,max-freq-level. err=-517. KTM continues\n[    0.469997] msm_mpm_dev_probe(): Cannot get clk resource for XO: -517\n[    0.470405] i2c-msm-v2 c179000.i2c: probing driver i2c-msm-v2\n[    0.470447] i2c-msm-v2 c179000.i2c: error on clk_get(core_clk):-517\n[    0.470454] i2c-msm-v2 c179000.i2c: error probe() failed with err:-517\n[    0.470627] i2c-msm-v2 c17a000.i2c: probing driver i2c-msm-v2\n[    0.470660] i2c-msm-v2 c17a000.i2c: error on clk_get(core_clk):-517\n[    0.470666] i2c-msm-v2 c17a000.i2c: error probe() failed with err:-517\n[    0.470845] i2c-msm-v2 c1b5000.i2c: probing driver i2c-msm-v2\n[    0.470876] i2c-msm-v2 c1b5000.i2c: error on clk_get(core_clk):-517\n[    0.470882] i2c-msm-v2 c1b5000.i2c: error probe() failed with err:-517\n[    0.471023] i2c-msm-v2 c1b6000.i2c: probing driver i2c-msm-v2\n[    0.471055] i2c-msm-v2 c1b6000.i2c: error on clk_get(core_clk):-517\n[    0.471060] i2c-msm-v2 c1b6000.i2c: error probe() failed with err:-517\n[    0.471310] i2c-msm-v2 c1b7000.i2c: probing driver i2c-msm-v2\n[    0.471343] i2c-msm-v2 c1b7000.i2c: error on clk_get(core_clk):-517\n[    0.471349] i2c-msm-v2 c1b7000.i2c: error probe() failed with err:-517\n[    0.476876] branch_clk_handoff: gcc_mss_mnoc_bimc_axi_clk clock is enabled in HW even though ENABLE_BIT is not set\n[    0.476968] qcom,gcc-8998 100000.qcom,gcc: Registered GCC clocks\n[    0.481186] qcom,mmsscc-8998 c8c0000.qcom,mmsscc: Registered MMSS clocks.\n[    0.482763] qcom,gpucc-8998 5065000.qcom,gpucc: Registered GPU clocks (barring gfx3d clocks)\n[    0.485111] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.485173] msm_thermal:vdd_restriction_reg_init Defer regulator vdd-gfx probe\n[    0.485177] msm_thermal:probe_vdd_rstr Err regulator init. err:-517. KTM continues.\n[    0.485183] msm-thermal soc:qcom,msm-thermal: probe_vdd_rstr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,max-freq-level. err=-517. KTM continues\n[    0.485329] cprh_kbss_read_fuse_data: apc0_pwrcl_corner: speed bin = 2\n[    0.485335] cprh_msm8998_kbss_read_fuse_data: apc0_pwrcl_corner: CPR fusing revision = 3\n[    0.485429] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused   LowSVS: open-loop= 608000 uV\n[    0.485433] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused      SVS: open-loop= 656000 uV\n[    0.485437] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused      NOM: open-loop= 768000 uV\n[    0.485441] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused TURBO_L1: open-loop= 866000 uV\n[    0.485503] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused   LowSVS: quot[11]= 596\n[    0.485508] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused      SVS: quot[11]= 714, quot_offset[11]= 115\n[    0.485514] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused      NOM: quot[11]=1022, quot_offset[11]= 305\n[    0.485519] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused TURBO_L1: quot[11]=1274, quot_offset[11]= 250\n[    0.485811] cpr3_regulator_init_ctrl: apc0: Default CPR mode = full HW closed-loop\n[    0.485924] cpr3_regulator_debugfs_ctrl_add: apc0: cpr3-regulator debugfs base directory creation failed\n[    0.486043] cprh_kbss_read_fuse_data: apc1_perfcl_corner: speed bin = 2\n[    0.486048] cprh_msm8998_kbss_read_fuse_data: apc1_perfcl_corner: CPR fusing revision = 3\n[    0.486144] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused   LowSVS: open-loop= 636000 uV\n[    0.486148] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused      SVS: open-loop= 636000 uV\n[    0.486152] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused      NOM: open-loop= 768000 uV\n[    0.486156] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused TURBO_L1: open-loop= 986000 uV\n[    0.486168] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fuse corner 1 voltage=636000 uV < fuse corner 0 voltage=644000 uV; overriding: fuse corner 1 voltage=644000\n[    0.486238] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused   LowSVS: quot[11]=1041\n[    0.486244] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused      SVS: quot[11]=1041, quot_offset[11]=   0\n[    0.486249] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused      NOM: quot[11]=1429, quot_offset[11]= 385\n[    0.486253] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused TURBO_L1: quot[11]=1941, quot_offset[11]= 510\n[    0.486578] cpr3_regulator_init_ctrl: apc1: Default CPR mode = full HW closed-loop\n[    0.486655] cpr3_regulator_debugfs_ctrl_add: apc1: cpr3-regulator debugfs base directory creation failed\n[    0.486816] cpr3_msm8996_mmss_read_fuse_data: gfx_corner: CPR fusing revision = 2\n[    0.486822] cpr3_msm8996_mmss_read_fuse_data: gfx_corner: CPR limitation = none\n[    0.487048] cpr3_msm8996_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[0] open-loop= 596000 uV\n[    0.487052] cpr3_msm8996_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[1] open-loop= 668000 uV\n[    0.487056] cpr3_msm8996_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[2] open-loop= 802000 uV\n[    0.487060] cpr3_msm8996_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[3] open-loop= 944000 uV\n[    0.487164] cpr3_regulator_init_ctrl: gfx: Default CPR mode = closed-loop\n[    0.487423] cpr3_regulator_debugfs_ctrl_add: gfx: cpr3-regulator debugfs base directory creation failed\n[    0.497916] i2c-msm-v2 c179000.i2c: probing driver i2c-msm-v2\n[    0.497971] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.497977] i2c-msm-v2 c179000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.498306] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.498531] i2c-msm-v2 c17a000.i2c: probing driver i2c-msm-v2\n[    0.498576] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.498580] i2c-msm-v2 c17a000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.498786] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.499000] i2c-msm-v2 c1b5000.i2c: probing driver i2c-msm-v2\n[    0.499047] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.499052] i2c-msm-v2 c1b5000.i2c: msm_bus_scale_register_client(mstr-id:84):0 (not a problem)\n[    0.499270] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.499520] i2c-msm-v2 c1b6000.i2c: probing driver i2c-msm-v2\n[    0.499565] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.499570] i2c-msm-v2 c1b6000.i2c: msm_bus_scale_register_client(mstr-id:84):0 (not a problem)\n[    0.499752] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.500056] i2c-msm-v2 c1b7000.i2c: probing driver i2c-msm-v2\n[    0.500102] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.500107] i2c-msm-v2 c1b7000.i2c: msm_bus_scale_register_client(mstr-id:84):0 (not a problem)\n[    0.500388] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.500826] gfx3d_clk_src: set OPP pair(257000000 Hz: 656000 uV) on 5000000.qcom,kgsl-3d0\n[    0.500838] gfx3d_clk_src: set OPP pair(710000000 Hz: 916000 uV) on 5000000.qcom,kgsl-3d0\n[    0.503561] qcom,gfxcc-8998 5065000.qcom,gfxcc: Completed registering all GPU clocks\n[    0.505231] cpu-clock-osm 179c0000.qcom,cpu-clock-8998: using pwrcl speed bin 0 and pvs_ver 0\n[    0.505251] cpu-clock-osm 179c0000.qcom,cpu-clock-8998: using perfcl speed bin 2 and pvs_ver 0\n[    0.507945] add_opp: Set OPP pair (300000000 Hz, 644000 uv) on cpu0\n[    0.508027] add_opp: Set OPP pair (1900800000 Hz, 868000 uv) on cpu0\n[    0.508073] add_opp: Set OPP pair (300000000 Hz, 644000 uv) on cpu1\n[    0.508164] add_opp: Set OPP pair (1900800000 Hz, 868000 uv) on cpu1\n[    0.508204] add_opp: Set OPP pair (300000000 Hz, 644000 uv) on cpu2\n[    0.508281] add_opp: Set OPP pair (1900800000 Hz, 868000 uv) on cpu2\n[    0.508305] add_opp: Set OPP pair (300000000 Hz, 644000 uv) on cpu3\n[    0.508326] add_opp: Set OPP pair (1900800000 Hz, 868000 uv) on cpu3\n[    0.508335] add_opp: Set OPP pair (300000000 Hz, 640000 uv) on cpu4\n[    0.508356] add_opp: Set OPP pair (2457600000 Hz, 1012000 uv) on cpu4\n[    0.508365] add_opp: Set OPP pair (300000000 Hz, 640000 uv) on cpu5\n[    0.508385] add_opp: Set OPP pair (2457600000 Hz, 1012000 uv) on cpu5\n[    0.508395] add_opp: Set OPP pair (300000000 Hz, 640000 uv) on cpu6\n[    0.508415] add_opp: Set OPP pair (2457600000 Hz, 1012000 uv) on cpu6\n[    0.508425] add_opp: Set OPP pair (300000000 Hz, 640000 uv) on cpu7\n[    0.508445] add_opp: Set OPP pair (2457600000 Hz, 1012000 uv) on cpu7\n[    0.508448] populate_debugfs_dir: osm debugfs base directory creation failed\n[    0.508451] populate_debugfs_dir: osm debugfs base directory creation failed\n[    0.508753] cpu_clock_osm_driver_probe: OSM driver inited\n[    0.508809] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.508877] msm-thermal soc:qcom,msm-thermal: probe_ocr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-opt-curr-temp err:-22. KTM continues\n[    0.508886] msm-thermal soc:qcom,msm-thermal: probe_vdd_mx:Failed reading node=/soc/qcom,msm-thermal, key=qcom,mx-restriction-temp. KTM continues\n[    0.509111] msm-thermal soc:qcom,msm-thermal: probe_freq_mitigation:Failed reading node=/soc/qcom,msm-thermal, key=qcom,limit-temp. err=-22. KTM continues\n[    0.509119] msm-thermal soc:qcom,msm-thermal: msm_thermal:Failed reading node=/soc/qcom,msm-thermal, key=qcom,rpm-phase-resource-type err=-22. KTM continues\n[    0.509126] msm-thermal soc:qcom,msm-thermal: msm_thermal:Failed reading node=/soc/qcom,msm-thermal, key=qcom,gfx-sensor-id. err=-22. KTM continues\n[    0.563198] socinfo_print: v0.11, id=292, ver=2.1, raw_id=94, raw_ver=2, hw_plat=8, hw_plat_ver=10\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65556, pmic_die_revision=131072 foundry_id=3 serial_number=3876385331 num_pmics=3\n[    0.563211] msm_bus_fabric_init_driver\n[    0.577545] msm_bus_dev_init_qos: Skipping QOS init for 1\n[    0.577595] msm-bus-type fab-mnoc: Error: Failed to get regulator clk-camss-ahb-no-rate:-517\n[    0.577616] msm-bus-type fab-mnoc: Error: Failed to get regulator clk-camss-ahb-no-rate:-517\n[    0.577652] fab-mnoc supply clk-mdss-ahb-no-rate not found, using dummy regulator\n[    0.577675] fab-mnoc supply clk-mdss-axi-no-rate not found, using dummy regulator\n[    0.577696] msm-bus-type fab-mnoc: Error: Failed to get regulator clk-camss-ahb-no-rate:-517\n[    0.577713] msm-bus-type fab-mnoc: Error: Failed to get regulator clk-camss-ahb-no-rate:-517\n[    0.577731] msm-bus-type fab-mnoc: Error: Failed to get regulator clk-camss-ahb-no-rate:-517\n[    0.577748] msm-bus-type fab-mnoc: Error: Failed to get regulator clk-camss-ahb-no-rate:-517\n[    0.577766] msm-bus-type fab-mnoc: Error: Failed to get regulator clk-camss-ahb-no-rate:-517\n[    0.577785] msm_bus_dev_init_qos: Skipping QOS init for 727\n[    0.579481] SCSI subsystem initialized\n[    0.579834] usbcore: registered new interface driver usbfs\n[    0.579856] usbcore: registered new interface driver hub\n[    0.579974] usbcore: registered new device driver usb\n[    0.580145] soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.580444] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm8998@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.580469] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm8998@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)\n[    0.580647] input: qpnp_pon as /devices/virtual/input/input0\n[    0.581149] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm8998@0:qcom,power-on@800: qcom,report-key:true\n[    0.581175] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pmi8998@2:qcom,power-on@800: No PON config. specified\n[    0.581216] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pmi8998@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (secondary PMIC) and 'cold' boot\n[    0.581239] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pmi8998@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from GP1 (Keypad_Reset1)\n[    0.581273] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pmi8998@2:qcom,power-on@800: qcom,report-key:false\n[    0.581520] media: Linux media interface: v0.10\n[    0.581542] Linux video capture interface: v2.00\n[    0.591759] EDAC MC: Ver: 3.0.0\n[    0.602647] cpufreq: driver msm up and running\n[    0.603174] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node adsp_region\n[    0.603395] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.603548] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.603694] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_region\n[    0.603946] ION heap system created\n[    0.603960] ION heap adsp created at 0x0000000000000000 with size 800000\n[    0.603964] ION heap qsecom created at 0x0000000000000000 with size 1400000\n[    0.603967] ION heap spss created at 0x0000000000000000 with size 800000\n[    0.603972] ION heap secure_display created at 0x0000000000000000 with size 5c00000\n[    0.603976] ION heap secure_heap created\n[    0.604278] PMIC@SID0: PM8998 v2.0 options: 0, 0, 0, 0\n[    0.604366] PMIC@SID2: PMI8998 v2.1 options: 0, 0, 0, 0\n[    0.604448] PMIC@SID4: PM8005 v2.0 options: 0, 0, 0, 0\n[    0.605233] ipa ipa_smmu_wlan_cb_probe:5135 could not alloc iommu domain\n[    0.605333] IPA smmu_info.s1_bypass=1 smmu_info.fast_map=0\n[    0.605825] ipa ipa_smmu_wlan_cb_probe:5135 could not alloc iommu domain\n[    0.608164] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.608170] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.620709] dp_pll_lock_status: dp_pll_lock_status: C_READY status is not high. Status=0\n[    0.621741] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.621745] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.624314] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.625432] mdss_pll_probe: MDSS pll label = MDSS HDMI PLL\n[    0.654321] arm-smmu cd00000.arm,smmu-mmss: found 20 context interrupt(s) but have 17 context banks. assuming 17 context interrupts.\n[    0.662907] iommu: Adding device soc:usb_audio_qmi_dev to group 0\n[    0.663028] iommu: Adding device 1c00000.qcom,pcie to group 1\n[    0.663128] iommu: Adding device 18800000.qcom,icnss to group 2\n[    0.663288] iommu: Adding device soc:iommu_test_device to group 3\n[    0.663955] iommu: Adding device soc:qcom,msm-audio-ion to group 4\n[    0.664259] iommu: Adding device c900000.qcom,sde_kms to group 5\n[    0.664769] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_ap to group 6\n[    0.664781] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_wlan to group 7\n[    0.664795] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_uc to group 8\n[    0.685237] Advanced Linux Sound Architecture Driver Initialized.\n[    0.685594] Bluetooth: 0000000000000000\n[    0.685605] NET: Registered protocol family 31\n[    0.685608] Bluetooth: 0000000000000000\n[    0.685615] Bluetooth: 0000000000000000\n[    0.685619] Bluetooth: 0000000000000000\n[    0.685623] Bluetooth: 0000000000000000\n[    0.685800] cfg80211: World regulatory domain updated:\n[    0.685804] cfg80211:  DFS Master region: unset\n[    0.685807] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)\n[    0.685811] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.685815] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.685819] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.685822] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.685825] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.685829] cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.685833] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.685837] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)\n[    0.695899] NetLabel: Initializing\n[    0.695902] NetLabel:  domain hash size = 128\n[    0.695904] NetLabel:  protocols = UNLABELED CIPSOv4\n[    0.695925] NetLabel:  unlabeled traffic allowed by default\n[    0.695985] pcie:pcie_init.\n[    0.695989] pcie_init: unable to create IPC log context for pcie0-short\n[    0.695992] pcie_init: unable to create IPC log context for pcie0-long\n[    0.695995] pcie_init: unable to create IPC log context for pcie0-dump\n[    0.695998] pcie_init: unable to create IPC log context for pcie1-short\n[    0.696001] pcie_init: unable to create IPC log context for pcie1-long\n[    0.696004] pcie_init: unable to create IPC log context for pcie1-dump\n[    0.696008] pcie_init: unable to create IPC log context for pcie2-short\n[    0.696010] pcie_init: unable to create IPC log context for pcie2-long\n[    0.696013] pcie_init: unable to create IPC log context for pcie2-dump\n[    0.696566] 1c00000.qcom,pcie supply vreg-3.3 not found, using dummy regulator\n[    0.696653] 1c00000.qcom,pcie supply gdsc-smmu not found, using dummy regulator\n[    0.697240] msm_pcie_get_resources: PCIe: RC0 can't get tcsr resource.\n[    0.697282] msm_pcie_probe: PCIe: RC0 could not get pinctrl sleep state\n[    0.698686] qpnp_labibb_regulator_probe: LAB/IBB registered successfully, lab_vreg enable=0 ibb_vreg enable=0 swire_control=0\n[    0.701235] ipa ipa3_pre_init:4314 failed to create IPC log, continue...\n[    0.701534] ipa ipa3_uc_state_check:302 uC interface not initialized\n[    0.703253] ipa ipa3_set_resorce_groups_min_max_limits:3412 skip configuring ipa_rx_hps_clients from HLOS\n[    0.743795] ipa ipa3_uc_state_check:302 uC interface not initialized\n[    0.745678] clocksource: Switched to clocksource arch_sys_counter\n[    0.775945] NET: Registered protocol family 2\n[    0.776338] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.776474] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.776870] TCP: Hash tables configured (established 32768 bind 32768)\n[    0.776927] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.776978] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.777136] NET: Registered protocol family 1\n[    0.777167] PCI: CLS 0 bytes, default 64\n[    0.777737] Trying to unpack rootfs image as initramfs...\n[    1.480186] Freeing initrd memory: 23664K\n[    1.481511] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    1.494937] Initialise system trusted keyring\n[    1.495025] vmscan: error setting kswapd cpu affinity mask\n[    1.507792] VFS: Disk quotas dquot_6.6.0\n[    1.507870] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    1.508415] Registering sdcardfs 0.1\n[    1.508547] fuse init (API version 7.23)\n[    1.508916] SELinux:  Registering netfilter hooks\n[    1.509311] pfk_ecryptfs [pfk_ecryptfs_init]: PFK ecryptfs inited successfully\n[    1.509315] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    1.509321] pfk [pfk_init]: Driver initialized successfully\n[    1.511425] Key type asymmetric registered\n[    1.511433] Asymmetric key parser 'x509' registered\n[    1.511451] io scheduler noop registered\n[    1.511539] io scheduler cfq registered (default)\n[    1.516352] msm_dss_get_res_byname: 'vbif_nrt_phys' resource not found\n[    1.516368] mdss_mdp_probe+0x2a0/0x1608->msm_dss_ioremap_byname: 'vbif_nrt_phys' msm_dss_get_res_byname failed\n[    1.517584] No change in context(0==0), skip\n[    1.518971] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:0 num:0 rect:0 ndx:0x1 prio:0\n[    1.518977] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:4 num:1 rect:0 ndx:0x2 prio:1\n[    1.518982] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:8 num:2 rect:0 ndx:0x4 prio:2\n[    1.518987] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:12 num:8 rect:0 ndx:0x100 prio:3\n[    1.519021] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:1 num:6 rect:0 ndx:0x40 prio:4\n[    1.519035] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:1 num:6 rect:1 ndx:0x40 prio:4\n[    1.519040] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:5 num:7 rect:0 ndx:0x80 prio:5\n[    1.519057] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:5 num:7 rect:1 ndx:0x80 prio:5\n[    1.519061] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:9 num:12 rect:0 ndx:0x1000 prio:6\n[    1.519075] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:9 num:12 rect:1 ndx:0x1000 prio:6\n[    1.519079] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:13 num:13 rect:0 ndx:0x2000 prio:7\n[    1.519094] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:13 num:13 rect:1 ndx:0x2000 prio:7\n[    1.519111] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:2 num:10 rect:0 ndx:0x400 prio:0\n[    1.519116] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:10 num:11 rect:0 ndx:0x800 prio:1\n[    1.519127] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-pipe-sw-reset-off : u32 array read\n[    1.519220] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-ib-factor-overlap : u32 array read\n[    1.529890] iommu: Adding device c900000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb to group 9\n[    1.530303] iommu: Adding device c900000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb to group 10\n[    1.530471] mdss_mdp_probe: mdss version = 0x30000001, bootloader display is on, num 1, intf_sel=0x00000100\n[    1.532809] mdss_smmu_probe: iommu v2 domain[0] mapping and clk register successful!\n[    1.532978] mdss_smmu_probe: iommu v2 domain[2] mapping and clk register successful!\n[    1.535759] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->0\n[    1.536186] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_sw43402_dsc_qhd_cmd:1:none:cfg:single_dsi panel_name:qcom,mdss_dsi_sw43402_dsc_qhd_cmd\n[    1.536497] mdss_dsi_panel_init: Panel Name = SW43402 cmd mode dsc dsi panel\n[    1.536653] mdss_dsi_panel_timing_from_dt: found new timing \"qcom,mdss_dsi_sw43402_dsc_qhd_cmd\" (0000000000000000)\n[    1.536678] mdss_dsi_panel_get_dsc_cfg_np: cannot find dsc config node:\n[    1.536769] mdss_dsi_parse_topology_config: cfg_node name config0 lm_split:720x720 pp_split:no\n[    1.536898] mdss_dsi_parse_partial_update_caps: partial_update_enabled=1\n[    1.536908] mdss_dsi_parse_panel_features: ulps feature enabled\n[    1.536917] mdss_dsi_parse_panel_features: ulps during suspend feature disabled\n[    1.536926] mdss_dsi_parse_dms_config: dynamic switch feature enabled: 0\n[    1.537016] mdss_dsi_set_refresh_rate_range:2600, Unable to read min refresh rate\n[    1.537024] mdss_dsi_set_refresh_rate_range:2615, Unable to read max refresh rate\n[    1.537028] dyn_fps: min = 60, max = 60\n[    1.537320] c994000.qcom,mdss_dsi_ctrl0 supply wqhd-vddio not found, using dummy regulator\n[    1.537358] mdss_dsi_parse_ctrl_params:4353 Unable to read qcom,display-id, data=0000000000000000,len=20\n[    1.537398] mdss_dsi_parse_gpio_params:4391: ERR_FG gpio not specified\n[    1.537425] mdss_dsi_parse_gpio_params: bklt_en gpio not specified\n[    1.537503] mdss_dsi_parse_gpio_params: lcd vcl gpio not specified\n[    1.537611] msm_dss_get_res_byname: 'dsi_phy_regulator' resource not found\n[    1.537633] mdss_dsi_retrieve_ctrl_resources+0x180/0x1e4->msm_dss_ioremap_byname: 'dsi_phy_regulator' msm_dss_get_res_byname failed\n[    1.537639] mdss_dsi_retrieve_ctrl_resources: ctrl_base=0000000000000000 ctrl_size=400 phy_base=0000000000000000 phy_size=7c0\n[    1.538145] dsi_panel_device_register: Continuous splash enabled\n[    1.538330] Unable to find fb node for device: c994000.qcom,mdss_dsi_ctrl0\n[    1.538576] mdss_register_panel: adding framebuffer device c994000.qcom,mdss_dsi_ctrl0\n[    1.555567] mdss_dsi_ctrl_probe: Dsi Ctrl->0 initialized, DSI rev:0x20000000, PHY rev:0x3\n[    1.555663] mdss_dsi_status_init: DSI status check interval:3000\n[    1.558137] mdss_register_panel: adding framebuffer device soc:qcom,mdss_wb_panel\n[    1.558852] mdss_fb_probe: fb0: split_mode:1 left:720 right:720\n[    1.559161] mdss_panel_debugfs_init: Debugfs create dir failed with error: -19\n[    1.559166] mdss_fb_register: FrameBuffer[0] 1440x2880 registered successfully!\n[    1.559215] mdss_dsi_debugfs_setup: debugfs_create_dir dsi fail, error -19\n[    1.559220] mdss_dsi_debugfs_init: Error in initilizing dsi ctrl debugfs\n[    1.569796] mdss_mdp_splash_parse_dt: mem reservation for splash screen fb not present\n[    1.569802] mdss_mdp_splash_parse_dt: no rsvd mem found in DT for splash screen\n[    1.569806] mdss_mdp_splash_init: splash memory reserve failed\n[    1.569840] mdss_fb_probe: fb1: split_mode:0 left:0 right:0\n[    1.569969] mdss_fb_register: FrameBuffer[1] 640x480 registered successfully!\n[    1.580126] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    1.591760] glink_loopback_server_init: unable to create log context\n[    1.602618] msm_smp2p_init: unable to create log context\n[    1.603919] qmi_log_init: Unable to create QMI IPC logging for Req/Resp\n[    1.603925] logging for Indications: Unable to create QMI IPC qmi_log_init\n[    1.644860] spcom [spcom_init]: spcom driver Ver 1.0 23-Nov-2015.\n[    1.645178] spcom [spcom_probe]: Driver Initialization ok.\n[    1.655507] apr_init: Unable to create ipc log context\n[    1.655523] audio_notifer_reg_service: service SSR_MODEM is in use\n[    1.668245] In memshare_probe, Memshare probe success\n[    1.680697] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    1.680865] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    1.680941] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    1.681546] subsys-pil-tz soc:qcom,ipa_fws@1e08000: for ipa_fws segments only will be dumped.\n[    1.682741] subsys-pil-tz cce0000.qcom,venus: for venus segments only will be dumped.\n[    1.683050] subsys-pil-tz 1d0101c.qcom,spss: for spss segments only will be dumped.\n[    1.683623] subsys-pil-tz soc:qcom,kgsl-hyp: for a540_zap segments only will be dumped.\n[    1.685416] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    1.686645] msm-dcc 10b3000.dcc: DCC XPU is not specified\n[    1.686919] msm-dcc 10b3000.dcc: DCC REG dump setup failed\n[    1.686940] msm-dcc 10b3000.dcc: DCC SRAM dump setup failed\n[    1.687203] icnss: Unable to create log context\n[    1.687206] icnss: Unable to create log long context\n[    1.709544] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    1.709714] icnss: Unable to create debugfs -19\n[    1.709747] icnss: Platform driver probed successfully\n[    1.711788] qiib_driver_data_init: unable to create logging context\n[    1.714144] msm_serial c1b0000.serial: msm_serial: detected port #0\n[    1.714219] msm_serial c1b0000.serial: uartclk = 0\n[    1.714278] c1b0000.serial: ttyMSM0 at MMIO 0xc1b0000 (irq = 30, base_baud = 0) is a MSM\n[    1.714303] msm_serial: console setup on port #0\n[    1.714384] console [ttyMSM0] enabled\n[    1.714389] bootconsole [uart0] disabled\n[    1.715733] msm_serial c16f000.serial: msm_serial: detected port #1\n[    1.715766] msm_serial c16f000.serial: uartclk = 19200000\n[    1.715801] c16f000.serial: ttyMSM1 at MMIO 0xc16f000 (irq = 363, base_baud = 1200000) is a MSM\n[    1.716165] msm_serial: driver initialized\n[    1.716406] msm_serial_hs: Cannot create debugfs dir\n[    1.717486] uart_tx_gpio is not available\n[    1.717490] uart_rx_gpio is not available\n[    1.717493] uart_cts_gpio is not available\n[    1.717496] uart_rfr_gpio is not available\n[    1.717877] msm_serial_hs c171000.uart: msm_hs_probe: error creating logging context\n[    1.728360] sps: BAM device 0x0000000000000000 is not registered yet.\n[    1.728373] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000000000000\n[    1.728379] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000000000000\n[    1.728383] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000000000000\n[    1.728385] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000000000000\n[    1.728390] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000000000000\n[    1.728394] sps:BAM 0x0000000000000000 is registered.\n[    1.728691] msm_serial_hs c171000.uart: msm_hs_probe: error creating tx logging context\n[    1.728699] msm_serial_hs c171000.uart: msm_hs_probe: error creating rx logging context\n[    1.728705] msm_serial_hs c171000.uart: msm_hs_probe: error creating usr logging context\n[    1.729851] msm_serial_debugfs_init(): Cannot create loopback.0 debug entry\n[    1.729896] c171000.uart: ttyHS0 at MMIO 0xc171000 (irq = 362, base_baud = 460800) is a MSM HS UART\n[    1.731127] msm_serial_hs module loaded\n[    1.731146] smd_tty_log_init: Unable to create IPC log\n[    1.734360] random: nonblocking pool is initialized\n[    1.734853] diag: Failed to create IPC logging context\n[    2.475368] gdsc_gpu_gx: supplied by gfx_corner\n[    2.478483] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 11\n[    2.479062] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 12\n[    2.479839] kgsl_pool_config: Pool order:1 not supprted.!!\n[    2.479844] kgsl_pool_config: Pool order:4 not supprted.!!\n[    2.479849] kgsl_pool_config: Pool order:8 not supprted.!!\n[    2.670767] brd: module loaded\n[    2.838312] loop: module loaded\n[    2.848720] zram: Added device: zram0\n[    2.850284] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1001000\n[    2.850307] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    2.850317] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    2.850322] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    2.850820] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    2.857239] thermal thermal_zone0: failed to read out thermal zone (-5)\n[    2.857556] thermal thermal_zone1: failed to read out thermal zone (-5)\n[    2.857772] thermal thermal_zone2: failed to read out thermal zone (-5)\n[    2.858025] thermal thermal_zone3: failed to read out thermal zone (-5)\n[    2.858032] mnh_thermal soc:mnh_thermal: mnh_thermal_probe: initialized\n[    2.858448] misc easelcomm-client: registered at misc device minor 60\n[    2.860226] fpc1020 soc:fp_fpc1020: found pin control fpc1020_reset_reset\n[    2.860234] fpc1020 soc:fp_fpc1020: found pin control fpc1020_reset_active\n[    2.860238] fpc1020 soc:fp_fpc1020: found pin control fpc1020_irq_active\n[    2.860283] fpc1020 soc:fp_fpc1020: Selected 'fpc1020_reset_reset'\n[    2.860305] fpc1020 soc:fp_fpc1020: Selected 'fpc1020_irq_active'\n[    2.860723] fpc1020 soc:fp_fpc1020: Selected 'fpc1020_reset_active'\n[    2.861047] fpc1020 soc:fp_fpc1020: Selected 'fpc1020_reset_reset'\n[    2.866184] fpc1020 soc:fp_fpc1020: Selected 'fpc1020_reset_active'\n[    2.871305] fpc1020 soc:fp_fpc1020: IRQ after reset 1\n[    2.871311] fpc1020 soc:fp_fpc1020: fpc1020_probe: ok\n[    2.871601] fpc1020_init OK\n[    2.884043] misc access-metadata: registered 'metadata' 10:59, (1000@0x0000000000000000)\n[    2.884257] misc access-ramoops: registered 'ramoops' 10:58, (200000@0x0000000000000000)\n[    2.885009] i2c-msm-v2 c1b5000.i2c: msm_bus_scale_register_client(mstr-id:84):0xe (ok)\n[    2.888152] prom_parse: Bad cell count for /soc/i2c@c1b5000/qcom,smb138x@8\n[    2.888161] prom_parse: Bad cell count for /soc/i2c@c1b5000/qcom,smb138x@8\n[    2.890361] PMIC@SID0: (null) v2.1 options: 0, 0, 0, 0\n[    2.890378] prom_parse: Bad cell count for /soc/i2c@c1b5000/qcom,smb138x@8\n[    2.890738] prom_parse: Bad cell count for /soc/i2c@c1b5000/qcom,smb138x@8\n[    2.891101] prom_parse: Bad cell count for /soc/i2c@c1b5000/qcom,smb138x@8\n[    2.891106] prom_parse: Bad cell count for /soc/i2c@c1b5000/qcom,smb138x@8\n[    2.891233] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    2.894096] nq-nci 8-0028: nqx_probe: probing NFCC NQxxx exited successfully\n[    2.895481] qce 1de0000.qcedev: Qualcomm Crypto 5.3.4 device found @0x1de0000\n[    2.895492] qce 1de0000.qcedev: CE device = 0x0\n               , IO base, CE = 0x0000000000000000\n               , Consumer (IN) PIPE 2,    Producer (OUT) PIPE 3\n               IO base BAM = 0x0000000000000000\n               BAM IRQ 63\n               Engines Availability = 0x2011053\n[    2.895527] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000000000000\n[    2.895534] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000000000000\n[    2.895539] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000000000000\n[    2.895541] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000000000000\n[    2.895546] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000000000000\n[    2.895551] sps:BAM 0x0000000000000000 is registered.\n[    2.895749] sps:BAM 0x0000000000000000 (va:0x0000000000000000) enabled: ver:0x27, number of pipes:16\n[    2.896005] QCE50: qce_sps_init:  Qualcomm MSM CE-BAM at 0x0000000001dc4000 irq 63\n[    2.909188] qcrypto 1de0000.qcrypto: Qualcomm Crypto 5.3.4 device found @0x1de0000\n[    2.909201] qcrypto 1de0000.qcrypto: CE device = 0x0\n               , IO base, CE = 0x0000000000000000\n               , Consumer (IN) PIPE 4,    Producer (OUT) PIPE 5\n               IO base BAM = 0x0000000000000000\n               BAM IRQ 63\n               Engines Availability = 0x2011053\n[    2.909546] QCE50: qce_sps_init:  Qualcomm MSM CE-BAM at 0x0000000001dc4000 irq 63\n[    2.910101] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    2.910255] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    2.910319] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    2.910381] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    2.910450] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    2.910517] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    2.910585] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    2.910646] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    2.910710] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    2.910775] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    2.910839] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    2.910903] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    2.910965] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    2.911031] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    2.911091] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    2.911160] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    2.911227] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    2.911293] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    2.911355] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    2.911422] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    2.927151] qcom_ice_get_pdevice: found ice device 0000000000000000\n[    2.927168] qcom_ice_get_pdevice: matching platform device 0000000000000000\n[    2.937867] scm_call failed: func id 0x42000c02, ret: -2, syscall returns: 0xfffffffffffffffc, 0x0, 0x0\n[    2.938360] ufshcd-qcom 1da4000.ufshc: ufs_qcom_parse_reg_info: Unable to find qcom,vddp-ref-clk-supply regulator, assuming enabled\n[    2.949530] scsi host0: ufshcd\n[    2.954353] qcom_ice 1db0000.ufsice: QC ICE 3.0.65 device found @0x0000000000000000\n[    2.975752] pn81a spi1.0: pn81a_probe: device tree set '8-0028' as eSE power controller\n[    2.975978] pn81a spi1.0: pn81a_probe: eSE is configured\n[    2.977259] sps: BAM device 0x0000000000000000 is not registered yet.\n[    2.977273] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000000000000\n[    2.977280] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000000000000\n[    2.977284] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000000000000\n[    2.977286] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000000000000\n[    2.977291] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000000000000\n[    2.977295] sps:BAM 0x0000000000000000 is registered.\n[    2.978202] sps:BAM 0x0000000000000000 (va:0x0000000000000000) enabled: ver:0x19, number of pipes:18\n[    2.979199] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    2.990692] tun: Universal TUN/TAP device driver, 1.6\n[    2.990697] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    2.990912] PPP generic driver version 2.4.2\n[    2.991066] ufshcd-qcom 1da4000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    2.991172] PPP BSD Compression module registered\n[    2.991181] PPP Deflate Compression module registered\n[    2.991236] PPP MPPE Compression module registered\n[    2.991243] NET: Registered protocol family 24\n[    2.991378] wcnss_pre_alloc_init: Failed to create debugfs dir\n[    2.991386] CLD80211: Initializing\n[    2.991490] usbcore: registered new interface driver rtl8150\n[    2.991511] usbcore: registered new interface driver r8152\n[    2.991532] usbcore: registered new interface driver asix\n[    2.991553] usbcore: registered new interface driver ax88179_178a\n[    2.991573] usbcore: registered new interface driver cdc_ether\n[    2.991608] usbcore: registered new interface driver cdc_ncm\n[    2.998700] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    3.003462] branch_clk_set_rate: Cannot scale gcc_rx1_usb2_clkref_clk clock while HW gating is enabled. Use corresponding hw_ctl_clk to scale it\n[    3.003582] pm8998_l24: supplied by pm8998_l12\n[    3.005757] msm-dwc3 a800000.ssusb: unable to get dbm device\n[    3.007545] usbcore: registered new interface driver usb-storage\n[    3.026058] msm_sharedmem: sharedmem_register_qmi: qmi init successful\n[    3.026069] msm_sharedmem: debugfs_init: Failed to create debug_fs directory\n[    3.030311] qpnp-pdphy 800f000.qcom,spmi:qcom,pmi8998@2:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    3.032685] usbcore: registered new interface driver xpad\n[    3.034200] fts_touch 5-0049: Failed to get tspid gpio\n[    3.034207] fts_touch 5-0049: Failed to get tspid2 gpio\n[    3.034280] fts_touch 5-0049: irq_gpio = 125\n[    3.034293] fts_touch 5-0049: client->irq = 500\n[    3.034301] fts_touch 5-0049: Failed to get grip_area property\n[    3.034312] fts_touch 5-0049: Failed to get vdd_gpio gpio\n[    3.034317] fts_touch 5-0049: Failed to get vio_gpio gpio\n[    3.034586] fts_touch 5-0049: FTS Support Hover Event\n[    3.034613] fts_touch 5-0049: switch_gpio = 75\n[    3.034734] fts_touch 5-0049: fts_power_ctrl: on\n[    3.056233] i2c-msm-v2 c179000.i2c: msm_bus_scale_register_client(mstr-id:86):0x12 (ok)\n[    3.056742] fts_touch 5-0049: FTS Enable WBCRC\n[    3.086245] ufshcd-qcom 1da4000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[2, 2], pwr[FAST MODE, FAST MODE], rate = 2\n[    3.097065] scsi 0:0:0:49488: Well-known LUN    SAMSUNG  KLUCG4J1ED-B0C1  0200 PQ: 0 ANSI: 6\n[    3.100717] fts_touch 5-0049: get_pure_autotune_status: PureAutotune : 1 (E)\n[    3.100724] fts_touch 5-0049: IC Firmware Version: 0x2064 [v0.44] IC Config Version: 0x0228 IC Main Version: 0x002C AFE Version: 0x07\n[    3.100729] fts_touch 5-0049: product id: [51 59 02]\n[    3.100734] fts_touch 5-0049: Chip revision: 0, fpc: 5, t_sensor: 1, site: 1, inspector_no: 72\n[    3.100739] fts_touch 5-0049: date : 17.10.29 02:57:12\n[    3.101080] fts_touch 5-0049: FTS Chip ID : 36 70\n[    3.107832] scsi 0:0:0:49456: Well-known LUN    SAMSUNG  KLUCG4J1ED-B0C1  0200 PQ: 0 ANSI: 6\n[    3.118504] scsi 0:0:0:49476: Well-known LUN    SAMSUNG  KLUCG4J1ED-B0C1  0200 PQ: 0 ANSI: 6\n[    3.129174] scsi 0:0:0:0: Direct-Access     SAMSUNG  KLUCG4J1ED-B0C1  0200 PQ: 0 ANSI: 6\n[    3.139345] fts_touch 5-0049: FTS Initialized\n[    3.139433] input: touchscreen as /devices/soc/c179000.i2c/i2c-5/5-0049/input/input1\n[    3.139442] fts_touch 5-0049: fts_input_open\n[    3.139446] fts_touch 5-0049: fts_start_device already power on\n[    3.139450] fts_touch 5-0049: FTS cmd after wakeup : h0\n[    3.139552] fts_touch 5-0049: installing direct irq on GPIO 125\n[    3.139792] power_supply touch: Not all required supplies found, defer probe\n[    3.140037] drv2624 6-005a: drv2624_i2c_probe enter\n[    3.140193] drv2624 6-005a: Looking up ti,irq-gpio property in node /soc/i2c@c17a000/drv2624@5a failed -2\n[    3.140230] fts_touch 5-0049: [FTS] Received Force Cal Event [ 0 ]\n[    3.140328] scsi 0:0:0:1: Direct-Access     SAMSUNG  KLUCG4J1ED-B0C1  0200 PQ: 0 ANSI: 6\n[    3.144405] drv2624 6-005a: drv2624_i2c_probe, ID status (0x3)\n[    3.144643] i2c-msm-v2 c17a000.i2c: msm_bus_scale_register_client(mstr-id:86):0x13 (ok)\n[    3.145564] drv2624 6-005a: dev_init_platform_data, LRA = 155, drive_time=0x1b\n[    3.156618] drv2624 6-005a: drv2624 probe succeeded\n[    3.157816] scsi 0:0:0:2: Direct-Access     SAMSUNG  KLUCG4J1ED-B0C1  0200 PQ: 0 ANSI: 6\n[    3.157968] [LASER] stmvl53l0_init: Enter\n[    3.157972] [LASER] stmvl53l0_init_i2c: Enter\n[    3.158013] [LASER] stmvl53l0_init_i2c: End with rc:0\n[    3.158017] [LASER] stmvl53l0_init: End\n[    3.159042] [LASER] stmvl53l0_probe: Enter++\n[    3.159048] [LASER] Laser_parse_dt: calib_file = /persist/ldaf_cal\n[    3.159051] [LASER] Laser_parse_dt: pwdn_gpio = 0\n[    3.159078] [LASER] Laser_parse_dt: pwdn_gpio = 39\n[    3.159148] [LASER] Laser_parse_dt: laser_irq_gpio = 62\n[    3.159248] [LASER] Laser_parse_dt: Laser_parse_dt: sensor cali_size = 0\n[    3.159268] [LASER] stmvl53l0_read_calibration: Could not read calibration from /persist/ldaf_cal\n[    3.159272] [LASER] stmvl53l0_parse_vdd: Enter++\n[    3.159332] 9-0029 supply vdd not found, using dummy regulator\n[    3.159340] [LASER] stmvl53l0_parse_vdd: End--\n[    3.159343] [LASER] Laser_pinctrl_init: Enter++\n[    3.160416] [LASER] Laser_pinctrl_init: End--\n[    3.160420] [LASER] stmvl53l0_setup: Enter++\n[    3.160430] [LASER] stmvl53l0_setup: register_irq: 260\n[    3.161221] qcom,qpnp-rtc 800f000.qcom,spmi:qcom,pm8998@0:qcom,pm8998_rtc: rtc core: registered qpnp_rtc as rtc0\n[    3.162150] i2c /dev entries driver\n[    3.163240] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb1 to group 13\n[    3.163559] CAM-SMMU cam_smmu_populate_sids:2326 __debug cnt = 8, cb->name: :vfe sid [0] = 3072\n               ,\n[    3.163564] CAM-SMMU cam_smmu_populate_sids:2326 __debug cnt = 8, cb->name: :vfe sid [1] = 3073\n               ,\n[    3.163575] CAM-SMMU cam_smmu_populate_sids:2326 __debug cnt = 8, cb->name: :vfe sid [2] = 3074\n               ,\n[    3.163577] CAM-SMMU cam_smmu_populate_sids:2326 __debug cnt = 8, cb->name: :vfe sid [3] = 3075\n               ,\n[    3.163735] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb2 to group 14\n[    3.163832] CAM-SMMU cam_smmu_populate_sids:2326 __debug cnt = 2, cb->name: :cpp sid [0] = 2560\n               ,\n[    3.163970] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb3 to group 15\n[    3.164059] CAM-SMMU cam_smmu_populate_sids:2326 __debug cnt = 2, cb->name: :camera_fd sid [0] = 2561\n               ,\n[    3.164198] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb4 to group 16\n[    3.164280] CAM-SMMU cam_smmu_populate_sids:2326 __debug cnt = 2, cb->name: :jpeg_enc0 sid [0] = 2048\n               ,\n[    3.164405] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb5 to group 17\n[    3.164495] CAM-SMMU cam_smmu_populate_sids:2326 __debug cnt = 2, cb->name: :jpeg_dma sid [0] = 2049\n               ,\n[    3.164843] fts_touch 5-0049: [FTS] Received Basic Autotune Protection Event [ 0 ]\n[    3.164848] fts_touch 5-0049: [FTS] Received Force Cal Done Event\n[    3.169332] [LASER] stmvl53l0_setup: interrupt is hooked\n[    3.169484] input: STM VL53L0 proximity sensor as /devices/virtual/input/input2\n[    3.169589] [LASER] stmvl53l0_setup: Misc device registration name:9-0029\n[    3.170007] i2c-msm-v2 c1b7000.i2c: msm_bus_scale_register_client(mstr-id:84):0x15 (ok)\n[    3.170444] [LASER] stmvl53l0_setupAPIFunctions: read REVISION_ID: 0x10\n                API_VERSION: 1.1.20.2\n[    3.170447] [LASER] stmvl53l0_setupAPIFunctions: to setup API cut 1.1\n[    3.170452] [LASER] stmvl53l0_init_client: Enter\n[    3.170455] [LASER] stmvl53l0_init_client: Call of VL53L0_DataInit\n[    3.177869] [LASER] stmvl53l0_init_client: Call of VL53L0_StaticInit\n[    3.179783] scsi 0:0:0:3: Direct-Access     SAMSUNG  KLUCG4J1ED-B0C1  0200 PQ: 0 ANSI: 6\n[    3.190948] scsi 0:0:0:4: Direct-Access     SAMSUNG  KLUCG4J1ED-B0C1  0200 PQ: 0 ANSI: 6\n[    3.193250] CAM-SOC msm_camera_get_reg_base:864 err: mem resource csiphy_clk_mux not found\n[    3.193254] csiphy_probe: no mem resource?\n[    3.194667] CAM-SOC msm_camera_get_reg_base:864 err: mem resource csiphy_clk_mux not found\n[    3.194670] csiphy_probe: no mem resource?\n[    3.196057] CAM-SOC msm_camera_get_reg_base:864 err: mem resource csiphy_clk_mux not found\n[    3.196066] csiphy_probe: no mem resource?\n[    3.207068] msm_actuator_platform_probe:1952 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    3.209785] msm_eeprom_platform_probe failed 1712\n[    3.214005] msm_eeprom_platform_probe failed 1782\n[    3.217408] msm_camera_pinctrl_init:1265 Getting pinctrl handle failed\n[    3.217413] msm_ois_platform_probe:1253 ERR:msm_ois_platform_probe: Error in reading OIS pinctrl\n[    3.217654] qcom,ois: probe of ca0c000.qcom,cci:qcom,ois@20 failed with error -22\n[    3.223334] [LASER] stmvl53l0_read_calibration: Could not read calibration from /persist/ldaf_cal\n[    3.223339] [LASER] stmvl53l0_init_client: failed: no calibration data\n[    3.223343] [LASER] stmvl53l0_setup: support ver. 1.1.20.2(1.0.5.1) enabled\n[    3.223345] [LASER] stmvl53l0_setup: End--\n[    3.223408] [LASER] stmvl53l0_probe: Success--\n[    3.226855] gdsc_cpp: supplied by gdsc_camss_top\n[    3.230245] MSM-CPP cpp_init_hardware:1144 CPP HW Version: 0x60010000\n[    3.230255] MSM-CPP cpp_init_hardware:1162 stream_cnt:0\n[    3.230602] MSM-CPP cpp_release_hardware:1225 cpp hw release done\n[    3.235747] scsi 0:0:0:5: Direct-Access     SAMSUNG  KLUCG4J1ED-B0C1  0200 PQ: 0 ANSI: 6\n[    3.242067] CAM-SOC msm_camera_get_reg_base:864 err: mem resource vfe_fuse not found\n[    3.242071] CAM-SOC msm_camera_get_res_size:907 err: mem resource vfe_fuse not found\n[    3.242118] gdsc_vfe0: supplied by gdsc_camss_top\n[    3.243362] CAM-SOC msm_camera_get_reg_base:864 err: mem resource vfe_fuse not found\n[    3.243366] CAM-SOC msm_camera_get_res_size:907 err: mem resource vfe_fuse not found\n[    3.243402] gdsc_vfe1: supplied by gdsc_camss_top\n[    3.246826] scsi 0:0:0:6: Direct-Access     SAMSUNG  KLUCG4J1ED-B0C1  0200 PQ: 0 ANSI: 6\n[    3.249132] sd 0:0:0:0: [sda] Write Protect is off\n[    3.249140] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    3.249296] sd 0:0:0:1: [sdb] Write Protect is off\n[    3.249302] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    3.253490]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13\n[    3.253697]  sdb: sdb1\n[    3.256330] sd 0:0:0:3: [sdd] Write Protect is off\n[    3.256337] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    3.256801] sd 0:0:0:2: [sdc] Write Protect is off\n[    3.256807] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    3.259090]  sdd: sdd1 sdd2\n[    3.259668] sd 0:0:0:4: [sde] Write Protect is off\n[    3.259674] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    3.261650] sd 0:0:0:5: [sdf] Write Protect is off\n[    3.261656] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    3.262389]  sdc: sdc1\n[    3.263837]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41\n[    3.264589]  sdf: sdf1 sdf2 sdf3\n[    3.267301] sd 0:0:0:6: [sdg] Write Protect is off\n[    3.267307] sd 0:0:0:6: [sdg] Mode Sense: 00 32 00 10\n[    3.270319]  sdg: sdg1\n[    3.276362] __msm_jpeg_init:1537] Jpeg Device id 0\n[    3.281029] msm_fd_hw_set_dt_parms_by_name: Error property does not exist\n[    3.281598] msm_vidc:  err: Failed to create debugfs for msm_vidc\n[    3.305517] msm_vidc:  err: Failed to create debugfs for msm_vidc\n[    3.306952] iommu: Adding device cc00000.qcom,vidc:non_secure_cb to group 18\n[    3.309650] iommu: Adding device cc00000.qcom,vidc:firmware_cb to group 19\n[    3.309879] iommu: Adding device cc00000.qcom,vidc:secure_bitstream_cb to group 20\n[    3.311930] iommu: Adding device cc00000.qcom,vidc:secure_pixel_cb to group 21\n[    3.313028] iommu: Adding device cc00000.qcom,vidc:secure_non_pixel_cb to group 22\n[    3.317014] c880000.qcom,vmem supply vdd not found, using dummy regulator\n[    3.318148] msm_vidc_vmem: Up and running with 4 banks of memory from [dma size 21110296265 64bit disabled]\n[    3.318152] Failed to create '<debugfs>/vmem'\n[    3.319537] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-rot-xin-id : doesn't exist in device tree\n[    3.319994] iommu: Adding device c900000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 23\n[    3.320386] iommu: Adding device c900000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 24\n[    3.321171] No change in context(0==0), skip\n[    3.322242] sde_rotator c900000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    3.323917] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    3.324133] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    3.330150] power_supply touch: touch: Found supply : dc\n[    3.330261] power_supply touch: touch: Found supply : usb\n[    3.330414] PMI: smblib_get_prop_usb_port_temp: Couldn't get USB thermal zone rc=-19\n[    3.330421] thermal thermal_zone4: failed to read out thermal zone (-61)\n[    3.331147] thermal thermal_zone5: failed to read out thermal zone (-19)\n[    3.332077] PMI: smblib_get_prop_usb_port_temp: Couldn't get USB thermal zone rc=-19\n[    3.332307] PMI: smblib_get_prop_usb_port_temp: Couldn't get USB thermal zone rc=-19\n[    3.332315] PMI: port_overheat_work: Couldn't get USB port temp rc=-19\n[    3.341927] QPNP SMB2 probed successfully usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    3.342555] PMI: smblib_get_prop_usb_port_temp: Couldn't get USB thermal zone rc=-19\n[    3.351770] lge_battery: bm_init: Couldn't get pl_psy\n[    3.351787] lge_battery: lge_battery_probe: bm_init fail\n[    3.352404] qpnp_adc_get_devicetree_data: Loaded custom map for usb_port_temp\n[    3.353043] qpnp_vadc_read: Error reading vadc_hc channel 21\n[    3.353055] thermal thermal_zone6: failed to read out thermal zone (-517)\n[    3.381716] tsens_debugfs_init: Error creating TSENS directory\n[    3.381838] lmh_interface:lmh_mon_init_driver Error creating debugfs dir:lmh_monitor. err:-19\n[    3.385466] msm_lmh_dcvs:lmh_activate_trip lmh_activate_trip: disable not supported\n[    3.386880] msm_lmh_dcvs:lmh_activate_trip lmh_activate_trip: disable not supported\n[    3.387650] md: linear personality registered for level -1\n[    3.387896] device-mapper: uevent: version 1.0.3\n[    3.388641] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com\n[    3.398737] device-mapper: verity-avb: AVB error handler initialized with vbmeta device: \n[    3.398749] device-mapper: req-crypt: dm-req-crypt successfully initalized.\n\n[    3.400834] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in device tree\n[    3.407454] ledtrig-cpu: registered to indicate activity on CPUs\n[    3.410760] hidraw: raw HID events driver (C) Jiri Kosina\n[    3.412298] usbcore: registered new interface driver usbhid\n[    3.412302] usbhid: USB HID core driver\n[    3.412609] ashmem: initialized\n[    3.418955] qpnp_coincell_charger_show_state: enabled=Y, voltage=3200 mV, resistance=800 ohm\n[    3.421534] bimc-bwmon 1008000.qcom,cpu-bwmon: BW HWmon governor registered.\n[    3.422773] arm-memlat-mon soc:qcom,arm-memlat-mon-0: Memory Latency governor registered.\n[    3.422824] arm-memlat-mon soc:qcom,arm-memlat-mon-4: Memory Latency governor registered.\n[    3.426614] devfreq soc:qcom,cpubw: Couldn't update frequency transition information.\n[    3.426727] devfreq soc:qcom,mincpubw: Couldn't update frequency transition information.\n[    3.426905] devfreq soc:qcom,memlat-cpu0: Couldn't update frequency transition information.\n[    3.427076] devfreq soc:qcom,memlat-cpu4: Couldn't update frequency transition information.\n[    3.428963] probe: Failed to create IPC log context\n[    3.434855] [smem]htc_radio_smem_init.\n[    3.435493] usbcore: registered new interface driver snd-usb-audio\n[    3.461515] tas2557s 7-004d: tas2557_i2c_probe enter\n[    3.470243] bcm15602 9-0008: bcm15602_resetb_irq_handler: completing reset\n[    3.470412] bcm15602 9-0008: Part: 0x5602, Rev: 2, Vendor Rev: 0x21\n[    3.470601] bcm15602 9-0008: Last reboot reason: normal\n[    3.520651] tas2557s 7-004d: PG2.1 found\n[    3.520977] tas2557s 7-004d: tas2557_register_codec, enter\n[    3.521076] tas2557s 7-004d: tas2557_register_misc, leave\n[    3.521082] tas2557s 7-004d: tiload_driver_init\n[    3.521102] tas2557s 7-004d: allocated Major Number: 227\n[    3.521221] tas2557s 7-004d: Registered TiLoad driver, Major number: 227\n[    3.535656] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx group_id: 0x9100\n[    3.536013] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0 dev_id: 0x9000\n[    3.536023] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.536045] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx group_id: 0x9101\n[    3.536286] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0 dev_id: 0x9001\n[    3.536295] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.536314] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx group_id: 0x9110\n[    3.536538] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0 dev_id: 0x9010\n[    3.536547] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.536572] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx group_id: 0x9111\n[    3.536798] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0 dev_id: 0x9011\n[    3.536807] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.536897] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx group_id: 0x9120\n[    3.537052] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0 dev_id: 0x9020\n[    3.537060] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.537154] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx group_id: 0x9121\n[    3.537381] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0 dev_id: 0x9021\n[    3.537390] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.537410] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx group_id: 0x9130\n[    3.537629] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0 dev_id: 0x9030\n[    3.537637] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.537657] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx group_id: 0x9131\n[    3.537880] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0 dev_id: 0x9031\n[    3.537889] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.557546] GACT probability NOT on\n[    3.557568] Mirror/redirect action on\n[    3.557588] u32 classifier\n[    3.557659]     Actions configured\n[    3.557684] Netfilter messages via NETLINK v0.30.\n[    3.557728] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    3.557982] ctnetlink v0.93: registering with nfnetlink.\n[    3.558630] xt_time: kernel timezone is -0000\n[    3.558666] wireguard: WireGuard 1.0.20201112 loaded. See www.wireguard.com for information.\n[    3.558670] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    3.558744] IPv4 over IPsec tunneling driver\n[    3.559292] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    3.559547] arp_tables: (C) 2002 David S. Miller\n[    3.559646] Initializing XFRM netlink socket\n[    3.560004] NET: Registered protocol family 10\n[    3.570891] mip6: Mobile IPv6\n[    3.570905] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    3.571477] sit: IPv6 over IPv4 tunneling driver\n[    3.572116] NET: Registered protocol family 17\n[    3.572129] NET: Registered protocol family 15\n[    3.572153] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.\n[    3.572161] Ebtables v2.0 registered\n[    3.572325] l2tp_core: L2TP core driver, V2.0\n[    3.572335] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    3.572340] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    3.572351] l2tp_netlink: L2TP netlink interface\n[    3.572372] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    3.572378] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    3.573670] NET: Registered protocol family 27\n[    3.576583] IPC_RTR: ipc_router_create_log_ctx: Unable to create IPC logging for [local_IPCRTR]\n[    3.579603] subsys-pil-tz 17300000.qcom,lpass: for adsp segments only will be dumped.\n[    3.590595] subsys-pil-tz 5c00000.qcom,ssc: for slpi segments only will be dumped.\n[    3.591203] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    3.591867] platform 4080000.qcom,mss:qcom,mba-mem@0: assigned reserved memory node pil_mba_region@94100000\n[    3.592234] pil-q6v5-mss 4080000.qcom,mss: for modem segments only will be dumped.\n[    3.604955] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000000000000\n[    3.604960] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000000000000\n[    3.604965] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000000000000\n[    3.604967] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000000000000\n[    3.604970] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000000000000\n[    3.604972] sps:BAM 0x0000000000000000 is registered.\n[    3.605635] Invalid index Defaulting curr to 0\n[    3.607007] qpnp-pdphy 800f000.qcom,spmi:qcom,pmi8998@2:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    3.616001] thermal thermal_zone37: failed to read out thermal zone (-19)\n[    3.617446] spmi spmi-0: cleanup_irq apid=36 sid=0x2 per=0x41 irq=6\n[    3.618597] qcom,fg-gen3 800f000.qcom,spmi:qcom,pmi8998@2:qpnp,fg: Start WAR to set SP_SAT_CC_CLR_AUTO_BIT\n[    3.619001] qcom,fg-gen3 800f000.qcom,spmi:qcom,pmi8998@2:qpnp,fg: WAR: 0x13 reg value: 0xbf\n[    3.619031] qcom,fg-gen3 800f000.qcom,spmi:qcom,pmi8998@2:qpnp,fg: WAR: Bit 3 has been set, no WAR needed\n[    3.619120] FG: comp_temp_by_chg_current: failed to get POWER_SUPPLY_PROP_CURRENT_NOW rc = -61\n[    3.619124] FG: fg_gen3_probe: battery SOC:71 voltage: 3915517uV temp: 230 id: 0KOhms\n[    3.627982] SMB138X: smb138x_probe: SMB138X probed successfully mode=1\n[    3.628203] lge_battery: bm_get_property: Couldn't get property 50, rc=-61\n[    3.628207] lge_battery: bm_get_property: Couldn't get property 12, rc=-61\n[    3.628211] lge_battery: bm_get_property: Couldn't get property 44, rc=-61\n[    3.628226] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.628229] lge_battery: lge_battery_probe: bm_init fail\n[    3.631690] FG: fg_psy_get_property: unsupported property 4\n[    3.635217] FG: fg_get_time_to_full: battery profile is not loaded\n[    3.638937] SMB138X: smb138x_get_prop_charger_temp: Couldnt read chg temp at 1th iteration rc = -61\n[    3.640153] SMB138X: smb138x_get_prop_connector_health: Couldn't read connector temperature rc=-61\n[    3.644007] ipa ipa3_smp2p_probe:5519 failed to enable irq wake\n[    3.645805] Invalid index Defaulting curr to 0\n[    3.667986] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.667992] lge_battery: lge_battery_probe: bm_init fail\n[    3.680600] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.680607] lge_battery: lge_battery_probe: bm_init fail\n[    3.691839] EDAC DEVICE0: Giving out device to module soc:arm64-cpu-erp controller cache: DEV soc:arm64-cpu-erp (POLLED)\n[    3.692304] ARM64 CPU ERP: Could not find <cci-irq> IRQ property. Proceeding anyway.\n[    3.694161] Registered cp15_barrier emulation handler\n[    3.694173] Registered setend emulation handler\n[    3.694625] registered taskstats version 1\n[    3.694636] Loading compiled-in X.509 certificates\n[    3.696892] Loaded X.509 cert 'Easel: 2d9cb8fb66a52266cb3b00b3e3db335fadf908e4'\n[    3.698818] spss_utils [spss_init]: spss-utils driver Ver 1.2 13-Jan-2017.\n[    3.699260] spss_utils [spss_probe]: Initialization completed ok, firmware_name [spss2p].\n[    3.702073] msm-dwc3 a800000.ssusb: dwc3_msm_resume: exiting lpm\n[    3.707406] msm-dwc3 a800000.ssusb: DWC3 exited from low power mode\n[    3.707483] msm-dwc3 a800000.ssusb: dwc3_msm_suspend: Calling suspend 1997\n[    3.708692] msm-dwc3 a800000.ssusb: DWC3 in low power mode\n[    3.710536] fastrpc soc:qcom,msm-adsprpc-mem: for adsp_rh segments only will be dumped.\n[    3.710912] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_cpz_cb1 to group 25\n[    3.712718] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 26\n[    3.713556] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 27\n[    3.714088] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 28\n[    3.714739] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 29\n[    3.715259] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 30\n[    3.715906] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7 to group 31\n[    3.716422] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8 to group 32\n[    3.718502] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.718506] lge_battery: lge_battery_probe: bm_init fail\n[    3.730101] ngd_msm_ctrl 171c0000.slim: error creating ipc_logging context\n[    3.741209] ngd_msm_ctrl 17240000.slim: error creating ipc_logging context\n[    3.741498] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.741568] lge_battery: lge_battery_probe: bm_init fail\n[    3.762945] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.762950] lge_battery: lge_battery_probe: bm_init fail\n[    3.765114] RNDIS_IPA module is loaded.\n[    3.776470] misc mnh_sm: mnh_ion_create_buffer: Ion cannot allocate buffer (-22)\n[    3.776478] misc mnh_sm: mnh_sm_probe: cannot claim ION buffer\n[    3.779737] msm_pcie_enable: PCIe: Assert the reset of endpoint of RC0.\n[    3.783307] msm_pcie_enable: PCIe RC0 PHY is ready!\n[    3.784319] msm_pcie_enable: PCIe: Release the reset of endpoint of RC0.\n[    3.784682] misc mnh_sm: mnh_sm_ready_irq_handler: mnh device is ready to boot\n[    3.800709] msm_pcie_enable: PCIe RC0 link initialized\n[    3.800844] PCI host bridge /soc/qcom,pcie@01c00000 ranges:\n[    3.800854]   No bus range found for /soc/qcom,pcie@01c00000, using [bus 00-ff]\n[    3.800866]    IO 0x1b030000..0x1b04ffff -> 0x1b030000\n[    3.800873]   MEM 0x1b100000..0x1bffffff -> 0x1b100000\n[    3.800957] pci-msm 1c00000.qcom,pcie: PCI host bridge to bus 0000:00\n[    3.801030] pci_bus 0000:00: root bus resource [bus 00-ff]\n[    3.801035] pci_bus 0000:00: root bus resource [io  0x0000-0x1ffff] (bus address [0x1b030000-0x1b04ffff])\n[    3.801040] pci_bus 0000:00: root bus resource [mem 0x00000000-0x00efffff]\n[    3.801073] pci 0000:00:00.0: [17cb:0105] type 01 class 0x060400\n[    3.801145] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]\n[    3.801317] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold\n[    3.801496] iommu: Adding device 0000:00:00.0 to group 33\n[    3.801521] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring\n[    3.801749] pci 0000:01:00.0: [8086:3140] type 00 class 0x000000\n[    3.801957] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit pref]\n[    3.802018] pci 0000:01:00.0: reg 0x18: [mem 0x00000000-0x007fffff 64bit]\n[    3.802083] pci 0000:01:00.0: reg 0x20: [mem 0x00000000-0x003fffff 64bit pref]\n[    3.802201] pci 0000:01:00.0: setting pcie class\n[    3.802412] pci 0000:01:00.0: supports D1 D2\n[    3.802418] pci 0000:01:00.0: PME# supported from D0 D1 D3hot D3cold\n[    3.802547] iommu: Adding device 0000:01:00.0 to group 34\n[    3.802564] pci_bus 0000:01: busn_res: [bus 00-fe] end is updated to 01\n[    3.802685] pci 0000:00:00.0: BAR 8: assigned [mem 0x00000000-0x007fffff]\n[    3.802692] pci 0000:00:00.0: BAR 9: assigned [mem 0x00000000-0x005fffff 64bit pref]\n[    3.802698] pci 0000:00:00.0: BAR 0: assigned [mem 0x00000000-0x00000fff 64bit]\n[    3.802730] pci 0000:01:00.0: BAR 2: assigned [mem 0x00000000-0x007fffff 64bit]\n[    3.802784] pci 0000:01:00.0: BAR 4: assigned [mem 0x00000000-0x003fffff 64bit pref]\n[    3.802899] pci 0000:01:00.0: BAR 0: assigned [mem 0x00000000-0x00000fff 64bit pref]\n[    3.802949] pci 0000:00:00.0: PCI bridge to [bus 00]\n[    3.802967] pci 0000:00:00.0:   bridge window [mem 0x00000000-0x007fffff]\n[    3.802980] pci 0000:00:00.0:   bridge window [mem 0x00000000-0x005fffff 64bit pref]\n[    3.803186] pci 0000:00:00.0: enabling device (0000 -> 0002)\n[    3.803210] mnh_pci 0000:01:00.0: enabling device (0000 -> 0002)\n[    3.804005] mnh_pci 0000:01:00.0: vector :10 , msi_num:10, irq:756\n[    3.804167] mnh_pci 0000:01:00.0: request irq:757\n[    3.804238] mnh_pci 0000:01:00.0: request irq:758\n[    3.804369] mnh_pci 0000:01:00.0: request irq:759\n[    3.804433] mnh_pci 0000:01:00.0: request irq:760\n[    3.804559] mnh_pci 0000:01:00.0: request irq:761\n[    3.804619] mnh_pci 0000:01:00.0: request irq:764\n[    3.804686] mnh_pci 0000:01:00.0: request irq:765\n[    3.807454] mnh_pci 0000:01:00.0: attached to IOMMU\n[    3.808050] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.808054] lge_battery: lge_battery_probe: bm_init fail\n[    3.820231] msm_pcie_disable: PCIe: Assert the reset of endpoint of RC0.\n[    3.820263] misc mnh_sm: mnh_sm_ready_irq_handler: mnh device is ready to suspend\n[    3.822553] misc mnh_sm: MNH SM initialized successfully\n[    3.823418] [KEY] gpio_keys_setup_key, error=-524, debounce(15, 15)\n[    3.823450] [KEY] keycode = 115, gpio = 126, irq = 324\n[    3.823457] [KEY] gpio_keys_setup_key, error=-524, debounce(15, 15)\n[    3.823481] [KEY] keycode = 222, gpio = 124, irq = 322\n[    3.823635] input: gpio-keys as /devices/soc/soc:gpio_keys/input/input3\n[    3.824113] qcom,qpnp-rtc 800f000.qcom,spmi:qcom,pm8998@0:qcom,pm8998_rtc: setting system clock to 1970-04-06 22:17:32 UTC (8288252)\n[    3.825762] msm_thermal:create_thermal_debugfs Error creating debugfs dir:msm_thermal. err:-19\n[    3.826195] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.826199] lge_battery: lge_battery_probe: bm_init fail\n[    3.827960] lmh_lite:lmh_parse_sensor Registering sensor:[GLM_soc]\n[    3.827969] lmh_interface:lmh_create_debugfs_nodes Error creating debugfs file:hw_trace_enable. err:-19\n[    3.838450] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_cp1-]\n[    3.838651] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_cp0-]\n[    3.838903] soc:qcom,lmh supply vdd-apss not found, using dummy regulator\n[    3.838914] lmh_lite:lmh_get_sensor_devicetree Error getting ODCM thresh. err:-22\n[    3.841381] lmh_interface:lmh_debug_register Error creating debugfs dir:debug. err:-19\n[    3.841385] lmh_lite:lmh_debug_init Error registering debug ops. err:-19\n[    3.841388] lmh_lite:lmh_probe LMH debug init failed. err:-19\n[    3.841755] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.841758] lge_battery: lge_battery_probe: bm_init fail\n[    3.847174] parse_cpu_levels: idx 1 503\n[    3.847179] parse_cpu_levels: idx 2 1744\n[    3.847183] parse_cpu_levels: idx 2 2222\n[    3.847261] parse_cpu_levels: idx 1 1301\n[    3.847264] parse_cpu_levels: idx 2 1820\n[    3.847266] parse_cpu_levels: idx 2 1999\n[    3.847277] calculate_residency: residency < 0 for LPM\n[    3.858111] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.858119] lge_battery: lge_battery_probe: bm_init fail\n[    3.869598] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.869604] lge_battery: lge_battery_probe: bm_init fail\n[    3.874142] rmnet_ipa3 started initialization\n[    3.876557] qcom,cc-debug-8998 162000.qcom,debugcc: Registered debug mux\n[    3.885212] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.885222] lge_battery: lge_battery_probe: bm_init fail\n[    3.895878] gfx_mem_acc_corner: disabling\n[    3.896007] apc0_pwrcl_corner: disabling\n[    3.896011] apc1_perfcl_corner: disabling\n[    3.896280] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    3.896487] clock_late_init: Removing enables held for handed-off clocks\n[    3.899895] ALSA device list:\n[    3.899900]   No soundcards found.\n[    3.901916] Freeing unused kernel memory: 6144K\n[    3.980860] of_batterydata_get_best_profile: lge_blt35_tocad_3620mah found\n[    4.167210] IRQ5 no longer affine to CPU1\n[    4.206810] IRQ5 no longer affine to CPU6\n[    4.218623] IRQ5 no longer affine to CPU7\n[    4.616109] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    4.616154] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[   63.150674] drv2624 6-005a: drv2624_firmware_load, ERROR!! firmware not found\n[   63.520591] tas2557s 7-004d: tas2557_fw_ready:\n[   63.520623] tas2557s 7-004d: tas2557s_PG21_uCDSP.bin firmware is not loaded.\n[ 2329.101121] IRQ5 no longer affine to CPU1\n[ 4083.551194] IRQ5 no longer affine to CPU4\n"
  },
  {
    "path": "results/msm8998/fts-irq-storm/post_bench_interrupts.txt",
    "content": "           CPU0       \n  3:     306304     GICv3  19 Edge      arch_timer\n  5:     513603     GICv3  39 Level     arch_mem_timer\n  6:          0     GICv3 483 Edge      smp2p\n  7:          0     GICv3 190 Edge      smp2p\n  8:          0     GICv3 210 Edge      smp2p\n 11:          0  pmic_arb 8388612 Edge      qpnp_kpdpwr_status\n 12:          0  pmic_arb 8454148 Edge      qpnp_resin_status\n 14:          0  pmic_arb 8716292 Edge      qpnp_kpdpwr_resin_bark\n 15:          0  pmic_arb 37748745 Edge      pm8998_tz\n 16:         10  pmic_arb 51380236 Edge      qpnp_vadc_interrupt\n 17:          0  pmic_arb 54525966 Edge      qpnp_adc_tm_interrupt\n 18:          0  pmic_arb 574619725 Edge      pmi8998_tz\n 19:          0  pmic_arb 560988177 Edge      sig-tx\n 20:          0  pmic_arb 561053713 Edge      sig-rx\n 21:          0  pmic_arb 561119249 Edge      msg-tx\n 22:          0  pmic_arb 561184785 Edge      msg-rx\n 23:          0  pmic_arb 561250321 Edge      msg-tx-failed\n 24:          0  pmic_arb 561315857 Edge      msg-tx-discarded\n 25:          0  pmic_arb 561381393 Edge      msg-rx-discarded\n 26:          0  pmic_arb 1026555970 Edge      qpnp_flash_led_fault_irq\n 27:          0  pmic_arb 1026752578 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 28:          0  pmic_arb 1026818114 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 29:          0  pmic_arb 1111490629 Edge      pm8005_tz\n 30:        198     GICv3 146 Level     msm_serial0\n 31:          0     GICv3 195 Level     ngd_slim_irq\n 33:          0     GICv3 323 Level     ngd_slim_irq\n 36:          0     GICv3  75 Edge      ARM64 primary DBE IRQ\n 37:          0     GICv3  76 Edge      ARM64 secondary DBE IRQ\n 39:          0     GICv3  73 Edge      ARM64 primary ext IRQ\n 40:          0     GICv3  74 Edge      ARM64 secondary ext IRQ\n 41:          0     GICv3  67 Edge      OSM IRQ\n 42:          0     GICv3  68 Edge      OSM IRQ\n 43:          0     GICv3 365 Edge      ipa\n 46:          0     GICv3 484 Edge      qcom,glink-smem-native-xprt-modem\n 47:          0     GICv3 189 Edge      qcom,glink-smem-native-xprt-adsp\n 48:          0     GICv3 211 Edge      qcom,glink-smem-native-xprt-dsps\n 49:        261     GICv3 200 Edge      qcom,glink-smem-native-xprt-rpm\n 50:          0     GICv3 380 Level     qcom,glink-mailbox-xprt-spss\n 51:        431     GICv3 297 Edge      ufshcd\n 52:          0     GICv3 379 Edge      hs_phy_irq\n 53:          0     GICv3 275 Edge      ss_phy_irq\n 54:          0     GICv3 212 Edge      msm_dwc3\n 55:          0     GICv3 194 Edge      adsp\n 56:          0     GICv3 480 Edge      modem\n 57:          0     GICv3 490 Level     tsens_interrupt\n 58:          0     GICv3 477 Level     tsens_critical_interrupt\n 59:          0     GICv3 216 Level     tsens_interrupt\n 60:          0  pmic_arb 606076988 Edge      bcl_ibat_interrupt\n 61:          0  pmic_arb 606208060 Edge      bcl_vbat_interrupt\n 62:          0     GICv3 462 Level     tsens_critical_interrupt\n 63:          0     GICv3 238 Level     sps\n 64:          0     GICv3 166 Level     lmh-interrupt\n 65:          0     GICv3 437 Edge      int_msi\n 70:          0     GICv3 310 Edge      int_global_int\n103:          0     GICv3 422 Edge      slpi\n104:          0     GICv3  35 Edge      apps_wdog_bark\n106:          0     GICv3 384 Level     spss\n107:          0     GICv3  22 Edge      arm-pmu\n124:          0     GICv3 317 Edge      cpr3\n125:          0     GICv3 203 Edge      7781b8.qcom,mpm\n126:          0     GICv3 396 Edge      arm-smmu-context-fault\n132:          0     GICv3 405 Edge      arm-smmu-context-fault\n133:          0     GICv3 406 Edge      arm-smmu-context-fault\n134:          0     GICv3 407 Edge      arm-smmu-context-fault\n135:          0     GICv3 408 Edge      arm-smmu-context-fault\n142:          0     GICv3 258 Level     arm-smmu-context-fault\n143:          0     GICv3 425 Level     arm-smmu-context-fault\n144:          0     GICv3 426 Level     arm-smmu-context-fault\n145:          0     GICv3 427 Level     arm-smmu-context-fault\n146:          0     GICv3 428 Level     arm-smmu-context-fault\n147:          0     GICv3 429 Level     arm-smmu-context-fault\n148:          0     GICv3 430 Level     arm-smmu-context-fault\n149:          0     GICv3 431 Level     arm-smmu-context-fault\n150:          0     GICv3 432 Level     arm-smmu-context-fault\n156:          0     GICv3 298 Level     arm-smmu-context-fault\n157:          0     GICv3 299 Level     arm-smmu-context-fault\n158:          0     GICv3 300 Level     arm-smmu-context-fault\n159:          0     GICv3 276 Level     arm-smmu-context-fault\n178:          0     GICv3 110 Edge      csiphy\n179:          0     GICv3 111 Edge      csiphy\n180:          0     GICv3 112 Edge      csiphy\n181:          0     GICv3 328 Edge      csid\n182:          0     GICv3 329 Edge      csid\n183:          0     GICv3 330 Edge      csid\n184:          0     GICv3 331 Edge      csid\n185:          0     GICv3 325 Edge      fd\n187:          0     GICv3 341 Edge      ispif\n188:          0     GICv3 346 Edge      vfe\n189:          0     GICv3 347 Edge      vfe\n190:          0     GICv3 327 Edge      cci\n193:          0     GICv3 319 Level     msm_vidc\n194:          0     GICv3 461 Level     vmem\n195:          0     GICv3 224 Edge      spdm_bw_hyp\n196:          0     GICv3 332 Level     kgsl-3d0\n224:          1   msmgpio  26 Edge      bcm15602-intb\n225:          2   msmgpio  27 Edge      mnh-ready\n260:          0   msmgpio  62 Edge      vl53l0_interrupt\n284:          2   msmgpio  86 Edge      soc:fp_fpc1020\n289:          1   msmgpio  91 Edge      bcm15602-resetb\n290:          0   msmgpio  92 Level     nq-nci\n322:          0   msmgpio 124 Edge      hall_ic\n324:          0   msmgpio 126 Edge      volume_up\n351:          0     GICv3 115 Edge      MDSS\n353:          0     GICv3 271 Level     sps\n354:   27263119     GICv3 131 Level     i2c-msm-v2-irq\n355:         15     GICv3 132 Level     i2c-msm-v2-irq\n356:        145     GICv3 133 Level     i2c-msm-v2-irq\n357:          0     GICv3 134 Level     i2c-msm-v2-irq\n358:        459     GICv3 135 Level     i2c-msm-v2-irq\n359:          0     GICv3 127 Level     c175000.spi\n361:          0     GICv3 136 Level     c1b8000.spi\n364:          0     GICv3  69 Level     limits_sensor-00\n365:          0     GICv3  70 Level     limits_sensor-01\n366:          0  pmic_arb 1036124238 Edge      ibb-sc-err\n367:          0  pmic_arb 1038090313 Edge      lab-vreg-ok\n368:          0  pmic_arb 1038155849 Edge      lab-sc-err\n497:          0     GICv3 381 Level     qsee_ipc_irq_spss\n498:          0  pmic_arb 219152615 Level     i2c_pmic_stat_irq\n499:          0  i2c_pmic_irq_chip 13825 Edge      eoc\n500:   13744775     GICv3 248 Level     fts_touch\n501:          0  pmic_arb 101777421 Edge      qpnp_rtc_alarm\n502:          0      mdss   2 Edge      sde_rotator_r3\n503:          0  pmic_arb 553648161 Edge      chg-error\n504:          0  pmic_arb 553713697 Edge      chg-state-change\n505:          0  pmic_arb 553779233 Edge      step-chg-state-change\n506:          0  pmic_arb 553844769 Edge      step-chg-soc-update-fail\n507:          0  pmic_arb 553910305 Edge      step-chg-soc-update-request\n508:          0  pmic_arb 554696738 Edge      otg-fail\n509:          0  pmic_arb 554762274 Edge      otg-overcurrent\n510:          0  pmic_arb 554827810 Edge      otg-oc-dis-sw-sts\n511:          0  pmic_arb 554893346 Edge      testmode-change-detect\n512:          0  pmic_arb 555745315 Edge      bat-temp\n513:          0  pmic_arb 555810851 Edge      bat-ocp\n514:          0  pmic_arb 555876387 Edge      bat-ov\n515:          0  pmic_arb 555941923 Edge      bat-low\n516:          0  pmic_arb 556007459 Edge      bat-therm-or-id-missing\n517:          0  pmic_arb 556072995 Edge      bat-terminal-missing\n518:          0  pmic_arb 556793926 Edge      usbin-collapse\n519:          0  pmic_arb 556859462 Edge      usbin-lt-3p6v\n520:          0  pmic_arb 556924998 Edge      usbin-uv\n521:          0  pmic_arb 556990534 Edge      usbin-ov\n522:          0  pmic_arb 557056070 Edge      usbin-plugin\n523:          0  pmic_arb 557121606 Edge      usbin-src-change\n524:          0  pmic_arb 557187142 Edge      usbin-icl-change\n525:          0  pmic_arb 557252678 Edge      type-c-change\n526:          0  pmic_arb 557842499 Edge      dcin-collapse\n527:          0  pmic_arb 557908035 Edge      dcin-lt-3p6v\n528:          0  pmic_arb 557973571 Edge      dcin-uv\n529:          0  pmic_arb 558039107 Edge      dcin-ov\n530:          0  pmic_arb 558104643 Edge      dcin-plugin\n531:          0  pmic_arb 558170179 Edge      div2-en-dg\n532:          0  pmic_arb 558235715 Edge      dcin-icl-change\n535:          0  pmic_arb 560070695 Edge      aicl-fail\n536:          0  pmic_arb 560136231 Edge      aicl-done\n537:          0  pmic_arb 560201767 Edge      high-duty-cycle\n538:          0  pmic_arb 560267303 Edge      input-current-limiting\n539:          0  pmic_arb 560332839 Edge      temperature-change\n540:          0  pmic_arb 560398375 Edge      switcher-power-ok\n541:          0  pmic_arb 207618268 Level     tas2557s\n542:          0  pmic_arb 208666845 Level     tas2557s\n543:          0  smp2p_gpio   0 Edge      modem\n544:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n545:          0  smp2p_gpio   2 Edge      modem\n546:          0  smp2p_gpio   3 Edge      modem\n575:          0  smp2p_gpio   0 Edge      adsp\n576:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n577:          0  smp2p_gpio   2 Edge      adsp\n578:          0  smp2p_gpio   3 Edge      adsp\n607:          0  smp2p_gpio   0 Edge      slpi\n608:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n609:          0  smp2p_gpio   2 Edge      slpi\n610:          0  smp2p_gpio   3 Edge      slpi\n639:          0  smp2p_gpio   0 Edge      ipa_smp2p_clk_vote\n735:          0     GICv3 163 Edge      dwc3\n737:          1  pmic_arb 603979834 Edge      soc-update\n738:          0  pmic_arb 604045370 Edge      soc-ready\n739:          0  pmic_arb 604110906 Edge      bsoc-delta\n740:         14  pmic_arb 604176442 Edge      msoc-delta\n741:          0  pmic_arb 604241978 Edge      msoc-low\n742:          0  pmic_arb 604307514 Edge      msoc-empty\n743:          0  pmic_arb 604373050 Edge      msoc-high\n744:          0  pmic_arb 604438586 Edge      msoc-full\n745:          0  pmic_arb 605028388 Edge      vbatt-pred-delta\n746:          0  pmic_arb 605093924 Edge      vbatt-low\n747:          0  pmic_arb 605159460 Edge      esr-delta\n748:          0  pmic_arb 605224996 Edge      batt-missing\n749:          2  pmic_arb 605421604 Edge      batt-temp-delta\n750:        730  pmic_arb 608174142 Edge      ima-rdy\n751:          0  pmic_arb 608239678 Edge      mem-xcp\n752:          0  pmic_arb 608305214 Edge      dma-grant\n753:          0  i2c_pmic_irq_chip 4098 Edge      chg-state-change\n754:          0  i2c_pmic_irq_chip 5634 Edge      wdog-bark\n755:          0  i2c_pmic_irq_chip 5696 Edge      temperature-change\n757:          0  msm-pcie-msi   1 Edge      mnh_pci\n758:          0  msm-pcie-msi   2 Edge      mnh_pci\n759:          0  msm-pcie-msi   3 Edge      mnh_pci\n760:          0  msm-pcie-msi   4 Edge      mnh_pci\n761:          0  msm-pcie-msi   5 Edge      mnh_pci\n764:          0  msm-pcie-msi   8 Edge      mnh_pci\n765:          0  msm-pcie-msi   9 Edge      mnh_pci\nIPI0:       143       Rescheduling interrupts\nIPI1:         0       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:      1901       Timer broadcast interrupts\nIPI4:         0       IRQ work interrupts\nIPI5:         0       CPU wakeup interrupts\nIPI6:         0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/msm8998/fts-irq-storm/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  3:       1049         64         64         64         64         64         64         63     GICv3  19 Edge      arch_timer\n  5:          0          0          0          0          0          0          0          0     GICv3  39 Level     arch_mem_timer\n  6:          0          0          0          0          0          0          0          0     GICv3 483 Edge      smp2p\n  7:          0          0          0          0          0          0          0          0     GICv3 190 Edge      smp2p\n  8:          0          0          0          0          0          0          0          0     GICv3 210 Edge      smp2p\n 11:          0          0          0          0          0          0          0          0  pmic_arb 8388612 Edge      qpnp_kpdpwr_status\n 12:          0          0          0          0          0          0          0          0  pmic_arb 8454148 Edge      qpnp_resin_status\n 14:          0          0          0          0          0          0          0          0  pmic_arb 8716292 Edge      qpnp_kpdpwr_resin_bark\n 15:          0          0          0          0          0          0          0          0  pmic_arb 37748745 Edge      pm8998_tz\n 16:          9          0          0          0          0          0          0          0  pmic_arb 51380236 Edge      qpnp_vadc_interrupt\n 17:          0          0          0          0          0          0          0          0  pmic_arb 54525966 Edge      qpnp_adc_tm_interrupt\n 18:          0          0          0          0          0          0          0          0  pmic_arb 574619725 Edge      pmi8998_tz\n 19:          0          0          0          0          0          0          0          0  pmic_arb 560988177 Edge      sig-tx\n 20:          0          0          0          0          0          0          0          0  pmic_arb 561053713 Edge      sig-rx\n 21:          0          0          0          0          0          0          0          0  pmic_arb 561119249 Edge      msg-tx\n 22:          0          0          0          0          0          0          0          0  pmic_arb 561184785 Edge      msg-rx\n 23:          0          0          0          0          0          0          0          0  pmic_arb 561250321 Edge      msg-tx-failed\n 24:          0          0          0          0          0          0          0          0  pmic_arb 561315857 Edge      msg-tx-discarded\n 25:          0          0          0          0          0          0          0          0  pmic_arb 561381393 Edge      msg-rx-discarded\n 26:          0          0          0          0          0          0          0          0  pmic_arb 1026555970 Edge      qpnp_flash_led_fault_irq\n 27:          0          0          0          0          0          0          0          0  pmic_arb 1026752578 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 28:          0          0          0          0          0          0          0          0  pmic_arb 1026818114 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 29:          0          0          0          0          0          0          0          0  pmic_arb 1111490629 Edge      pm8005_tz\n 30:          0          0          0          0          0          0          0          0     GICv3 146 Level     msm_serial0\n 31:          0          0          0          0          0          0          0          0     GICv3 195 Level     ngd_slim_irq\n 33:          0          0          0          0          0          0          0          0     GICv3 323 Level     ngd_slim_irq\n 36:          0          0          0          0          0          0          0          0     GICv3  75 Edge      ARM64 primary DBE IRQ\n 37:          0          0          0          0          0          0          0          0     GICv3  76 Edge      ARM64 secondary DBE IRQ\n 39:          0          0          0          0          0          0          0          0     GICv3  73 Edge      ARM64 primary ext IRQ\n 40:          0          0          0          0          0          0          0          0     GICv3  74 Edge      ARM64 secondary ext IRQ\n 41:          0          0          0          0          0          0          0          0     GICv3  67 Edge      OSM IRQ\n 42:          0          0          0          0          0          0          0          0     GICv3  68 Edge      OSM IRQ\n 43:          0          0          0          0          0          0          0          0     GICv3 365 Edge      ipa\n 46:          0          0          0          0          0          0          0          0     GICv3 484 Edge      qcom,glink-smem-native-xprt-modem\n 47:          0          0          0          0          0          0          0          0     GICv3 189 Edge      qcom,glink-smem-native-xprt-adsp\n 48:          0          0          0          0          0          0          0          0     GICv3 211 Edge      qcom,glink-smem-native-xprt-dsps\n 49:        197          0          0          0          0          0          0          0     GICv3 200 Edge      qcom,glink-smem-native-xprt-rpm\n 50:          0          0          0          0          0          0          0          0     GICv3 380 Level     qcom,glink-mailbox-xprt-spss\n 51:        419          0          0          0          0          0          0          0     GICv3 297 Edge      ufshcd\n 52:          0          0          0          0          0          0          0          0     GICv3 379 Edge      hs_phy_irq\n 53:          0          0          0          0          0          0          0          0     GICv3 275 Edge      ss_phy_irq\n 54:          0          0          0          0          0          0          0          0     GICv3 212 Edge      msm_dwc3\n 55:          0          0          0          0          0          0          0          0     GICv3 194 Edge      adsp\n 56:          0          0          0          0          0          0          0          0     GICv3 480 Edge      modem\n 57:          0          0          0          0          0          0          0          0     GICv3 490 Level     tsens_interrupt\n 58:          0          0          0          0          0          0          0          0     GICv3 477 Level     tsens_critical_interrupt\n 59:          0          0          0          0          0          0          0          0     GICv3 216 Level     tsens_interrupt\n 60:          0          0          0          0          0          0          0          0  pmic_arb 606076988 Edge      bcl_ibat_interrupt\n 61:          0          0          0          0          0          0          0          0  pmic_arb 606208060 Edge      bcl_vbat_interrupt\n 62:          0          0          0          0          0          0          0          0     GICv3 462 Level     tsens_critical_interrupt\n 63:          0          0          0          0          0          0          0          0     GICv3 238 Level     sps\n 64:          0          0          0          0          0          0          0          0     GICv3 166 Level     lmh-interrupt\n 65:          0          0          0          0          0          0          0          0     GICv3 437 Edge      int_msi\n 70:          0          0          0          0          0          0          0          0     GICv3 310 Edge      int_global_int\n103:          0          0          0          0          0          0          0          0     GICv3 422 Edge      slpi\n104:          0          0          0          0          0          0          0          0     GICv3  35 Edge      apps_wdog_bark\n106:          0          0          0          0          0          0          0          0     GICv3 384 Level     spss\n107:          0          0          0          0          0          0          0          0     GICv3  22 Edge      arm-pmu\n124:          0          0          0          0          0          0          0          0     GICv3 317 Edge      cpr3\n125:          0          0          0          0          0          0          0          0     GICv3 203 Edge      7781b8.qcom,mpm\n126:          0          0          0          0          0          0          0          0     GICv3 396 Edge      arm-smmu-context-fault\n132:          0          0          0          0          0          0          0          0     GICv3 405 Edge      arm-smmu-context-fault\n133:          0          0          0          0          0          0          0          0     GICv3 406 Edge      arm-smmu-context-fault\n134:          0          0          0          0          0          0          0          0     GICv3 407 Edge      arm-smmu-context-fault\n135:          0          0          0          0          0          0          0          0     GICv3 408 Edge      arm-smmu-context-fault\n142:          0          0          0          0          0          0          0          0     GICv3 258 Level     arm-smmu-context-fault\n143:          0          0          0          0          0          0          0          0     GICv3 425 Level     arm-smmu-context-fault\n144:          0          0          0          0          0          0          0          0     GICv3 426 Level     arm-smmu-context-fault\n145:          0          0          0          0          0          0          0          0     GICv3 427 Level     arm-smmu-context-fault\n146:          0          0          0          0          0          0          0          0     GICv3 428 Level     arm-smmu-context-fault\n147:          0          0          0          0          0          0          0          0     GICv3 429 Level     arm-smmu-context-fault\n148:          0          0          0          0          0          0          0          0     GICv3 430 Level     arm-smmu-context-fault\n149:          0          0          0          0          0          0          0          0     GICv3 431 Level     arm-smmu-context-fault\n150:          0          0          0          0          0          0          0          0     GICv3 432 Level     arm-smmu-context-fault\n156:          0          0          0          0          0          0          0          0     GICv3 298 Level     arm-smmu-context-fault\n157:          0          0          0          0          0          0          0          0     GICv3 299 Level     arm-smmu-context-fault\n158:          0          0          0          0          0          0          0          0     GICv3 300 Level     arm-smmu-context-fault\n159:          0          0          0          0          0          0          0          0     GICv3 276 Level     arm-smmu-context-fault\n178:          0          0          0          0          0          0          0          0     GICv3 110 Edge      csiphy\n179:          0          0          0          0          0          0          0          0     GICv3 111 Edge      csiphy\n180:          0          0          0          0          0          0          0          0     GICv3 112 Edge      csiphy\n181:          0          0          0          0          0          0          0          0     GICv3 328 Edge      csid\n182:          0          0          0          0          0          0          0          0     GICv3 329 Edge      csid\n183:          0          0          0          0          0          0          0          0     GICv3 330 Edge      csid\n184:          0          0          0          0          0          0          0          0     GICv3 331 Edge      csid\n185:          0          0          0          0          0          0          0          0     GICv3 325 Edge      fd\n187:          0          0          0          0          0          0          0          0     GICv3 341 Edge      ispif\n188:          0          0          0          0          0          0          0          0     GICv3 346 Edge      vfe\n189:          0          0          0          0          0          0          0          0     GICv3 347 Edge      vfe\n190:          0          0          0          0          0          0          0          0     GICv3 327 Edge      cci\n193:          0          0          0          0          0          0          0          0     GICv3 319 Level     msm_vidc\n194:          0          0          0          0          0          0          0          0     GICv3 461 Level     vmem\n195:          0          0          0          0          0          0          0          0     GICv3 224 Edge      spdm_bw_hyp\n196:          0          0          0          0          0          0          0          0     GICv3 332 Level     kgsl-3d0\n224:          1          0          0          0          0          0          0          0   msmgpio  26 Edge      bcm15602-intb\n225:          2          0          0          0          0          0          0          0   msmgpio  27 Edge      mnh-ready\n260:          0          0          0          0          0          0          0          0   msmgpio  62 Edge      vl53l0_interrupt\n284:          2          0          0          0          0          0          0          0   msmgpio  86 Edge      soc:fp_fpc1020\n289:          1          0          0          0          0          0          0          0   msmgpio  91 Edge      bcm15602-resetb\n290:          0          0          0          0          0          0          0          0   msmgpio  92 Level     nq-nci\n322:          0          0          0          0          0          0          0          0   msmgpio 124 Edge      hall_ic\n324:          0          0          0          0          0          0          0          0   msmgpio 126 Edge      volume_up\n351:          0          0          0          0          0          0          0          0     GICv3 115 Edge      MDSS\n353:          0          0          0          0          0          0          0          0     GICv3 271 Level     sps\n354:       6490          0          0          0          0          0          0          0     GICv3 131 Level     i2c-msm-v2-irq\n355:         15          0          0          0          0          0          0          0     GICv3 132 Level     i2c-msm-v2-irq\n356:        119          0          0          0          0          0          0          0     GICv3 133 Level     i2c-msm-v2-irq\n357:          0          0          0          0          0          0          0          0     GICv3 134 Level     i2c-msm-v2-irq\n358:        459          0          0          0          0          0          0          0     GICv3 135 Level     i2c-msm-v2-irq\n359:          0          0          0          0          0          0          0          0     GICv3 127 Level     c175000.spi\n361:          0          0          0          0          0          0          0          0     GICv3 136 Level     c1b8000.spi\n364:          0          0          0          0          0          0          0          0     GICv3  69 Level     limits_sensor-00\n365:          0          0          0          0          0          0          0          0     GICv3  70 Level     limits_sensor-01\n366:          0          0          0          0          0          0          0          0  pmic_arb 1036124238 Edge      ibb-sc-err\n367:          0          0          0          0          0          0          0          0  pmic_arb 1038090313 Edge      lab-vreg-ok\n368:          0          0          0          0          0          0          0          0  pmic_arb 1038155849 Edge      lab-sc-err\n497:          0          0          0          0          0          0          0          0     GICv3 381 Level     qsee_ipc_irq_spss\n498:          0          0          0          0          0          0          0          0  pmic_arb 219152615 Level     i2c_pmic_stat_irq\n499:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 13825 Edge      eoc\n500:       3244          0          0          0          0          0          0          0     GICv3 248 Level     fts_touch\n501:          0          0          0          0          0          0          0          0  pmic_arb 101777421 Edge      qpnp_rtc_alarm\n502:          0          0          0          0          0          0          0          0      mdss   2 Edge      sde_rotator_r3\n503:          0          0          0          0          0          0          0          0  pmic_arb 553648161 Edge      chg-error\n504:          0          0          0          0          0          0          0          0  pmic_arb 553713697 Edge      chg-state-change\n505:          0          0          0          0          0          0          0          0  pmic_arb 553779233 Edge      step-chg-state-change\n506:          0          0          0          0          0          0          0          0  pmic_arb 553844769 Edge      step-chg-soc-update-fail\n507:          0          0          0          0          0          0          0          0  pmic_arb 553910305 Edge      step-chg-soc-update-request\n508:          0          0          0          0          0          0          0          0  pmic_arb 554696738 Edge      otg-fail\n509:          0          0          0          0          0          0          0          0  pmic_arb 554762274 Edge      otg-overcurrent\n510:          0          0          0          0          0          0          0          0  pmic_arb 554827810 Edge      otg-oc-dis-sw-sts\n511:          0          0          0          0          0          0          0          0  pmic_arb 554893346 Edge      testmode-change-detect\n512:          0          0          0          0          0          0          0          0  pmic_arb 555745315 Edge      bat-temp\n513:          0          0          0          0          0          0          0          0  pmic_arb 555810851 Edge      bat-ocp\n514:          0          0          0          0          0          0          0          0  pmic_arb 555876387 Edge      bat-ov\n515:          0          0          0          0          0          0          0          0  pmic_arb 555941923 Edge      bat-low\n516:          0          0          0          0          0          0          0          0  pmic_arb 556007459 Edge      bat-therm-or-id-missing\n517:          0          0          0          0          0          0          0          0  pmic_arb 556072995 Edge      bat-terminal-missing\n518:          0          0          0          0          0          0          0          0  pmic_arb 556793926 Edge      usbin-collapse\n519:          0          0          0          0          0          0          0          0  pmic_arb 556859462 Edge      usbin-lt-3p6v\n520:          0          0          0          0          0          0          0          0  pmic_arb 556924998 Edge      usbin-uv\n521:          0          0          0          0          0          0          0          0  pmic_arb 556990534 Edge      usbin-ov\n522:          0          0          0          0          0          0          0          0  pmic_arb 557056070 Edge      usbin-plugin\n523:          0          0          0          0          0          0          0          0  pmic_arb 557121606 Edge      usbin-src-change\n524:          0          0          0          0          0          0          0          0  pmic_arb 557187142 Edge      usbin-icl-change\n525:          0          0          0          0          0          0          0          0  pmic_arb 557252678 Edge      type-c-change\n526:          0          0          0          0          0          0          0          0  pmic_arb 557842499 Edge      dcin-collapse\n527:          0          0          0          0          0          0          0          0  pmic_arb 557908035 Edge      dcin-lt-3p6v\n528:          0          0          0          0          0          0          0          0  pmic_arb 557973571 Edge      dcin-uv\n529:          0          0          0          0          0          0          0          0  pmic_arb 558039107 Edge      dcin-ov\n530:          0          0          0          0          0          0          0          0  pmic_arb 558104643 Edge      dcin-plugin\n531:          0          0          0          0          0          0          0          0  pmic_arb 558170179 Edge      div2-en-dg\n532:          0          0          0          0          0          0          0          0  pmic_arb 558235715 Edge      dcin-icl-change\n535:          0          0          0          0          0          0          0          0  pmic_arb 560070695 Edge      aicl-fail\n536:          0          0          0          0          0          0          0          0  pmic_arb 560136231 Edge      aicl-done\n537:          0          0          0          0          0          0          0          0  pmic_arb 560201767 Edge      high-duty-cycle\n538:          0          0          0          0          0          0          0          0  pmic_arb 560267303 Edge      input-current-limiting\n539:          0          0          0          0          0          0          0          0  pmic_arb 560332839 Edge      temperature-change\n540:          0          0          0          0          0          0          0          0  pmic_arb 560398375 Edge      switcher-power-ok\n541:          0          0          0          0          0          0          0          0  pmic_arb 207618268 Level     tas2557s\n542:          0          0          0          0          0          0          0          0  pmic_arb 208666845 Level     tas2557s\n543:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      modem\n544:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n545:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      modem\n546:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      modem\n575:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      adsp\n576:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n577:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      adsp\n578:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      adsp\n607:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      slpi\n608:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n609:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      slpi\n610:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      slpi\n639:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      ipa_smp2p_clk_vote\n735:          0          0          0          0          0          0          0          0     GICv3 163 Edge      dwc3\n737:          0          0          0          0          0          0          0          0  pmic_arb 603979834 Edge      soc-update\n738:          0          0          0          0          0          0          0          0  pmic_arb 604045370 Edge      soc-ready\n739:          0          0          0          0          0          0          0          0  pmic_arb 604110906 Edge      bsoc-delta\n740:          0          0          0          0          0          0          0          0  pmic_arb 604176442 Edge      msoc-delta\n741:          0          0          0          0          0          0          0          0  pmic_arb 604241978 Edge      msoc-low\n742:          0          0          0          0          0          0          0          0  pmic_arb 604307514 Edge      msoc-empty\n743:          0          0          0          0          0          0          0          0  pmic_arb 604373050 Edge      msoc-high\n744:          0          0          0          0          0          0          0          0  pmic_arb 604438586 Edge      msoc-full\n745:          0          0          0          0          0          0          0          0  pmic_arb 605028388 Edge      vbatt-pred-delta\n746:          0          0          0          0          0          0          0          0  pmic_arb 605093924 Edge      vbatt-low\n747:          0          0          0          0          0          0          0          0  pmic_arb 605159460 Edge      esr-delta\n748:          0          0          0          0          0          0          0          0  pmic_arb 605224996 Edge      batt-missing\n749:          0          0          0          0          0          0          0          0  pmic_arb 605421604 Edge      batt-temp-delta\n750:         33          0          0          0          0          0          0          0  pmic_arb 608174142 Edge      ima-rdy\n751:          0          0          0          0          0          0          0          0  pmic_arb 608239678 Edge      mem-xcp\n752:          0          0          0          0          0          0          0          0  pmic_arb 608305214 Edge      dma-grant\n753:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4098 Edge      chg-state-change\n754:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 5634 Edge      wdog-bark\n755:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 5696 Edge      temperature-change\n757:          0          0          0          0          0          0          0          0  msm-pcie-msi   1 Edge      mnh_pci\n758:          0          0          0          0          0          0          0          0  msm-pcie-msi   2 Edge      mnh_pci\n759:          0          0          0          0          0          0          0          0  msm-pcie-msi   3 Edge      mnh_pci\n760:          0          0          0          0          0          0          0          0  msm-pcie-msi   4 Edge      mnh_pci\n761:          0          0          0          0          0          0          0          0  msm-pcie-msi   5 Edge      mnh_pci\n764:          0          0          0          0          0          0          0          0  msm-pcie-msi   8 Edge      mnh_pci\n765:          0          0          0          0          0          0          0          0  msm-pcie-msi   9 Edge      mnh_pci\nIPI0:         3         75         75         75         75         75         74         73       Rescheduling interrupts\nIPI1:         0         45         46         45         44         44         44         44       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI4:         0          0          0          0          0          0          0          0       IRQ work interrupts\nIPI5:         0          0          0          0          0          0          0          0       CPU wakeup interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/msm8998/fts-irq-storm/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [ksoftirqd/0]\n    5 root      0:00 [kworker/0:0H]\n    6 root      0:00 [kworker/u16:0]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [migration/1]\n   15 root      0:00 [ksoftirqd/1]\n   16 root      0:00 [kworker/1:0]\n   17 root      0:00 [kworker/1:0H]\n   18 root      0:00 [rcuop/1]\n   19 root      0:00 [rcuos/1]\n   20 root      0:00 [rcuob/1]\n   21 root      0:00 [migration/2]\n   22 root      0:00 [ksoftirqd/2]\n   23 root      0:00 [kworker/2:0]\n   24 root      0:00 [kworker/2:0H]\n   25 root      0:00 [rcuop/2]\n   26 root      0:00 [rcuos/2]\n   27 root      0:00 [rcuob/2]\n   28 root      0:00 [migration/3]\n   29 root      0:00 [ksoftirqd/3]\n   30 root      0:00 [kworker/3:0]\n   31 root      0:00 [kworker/3:0H]\n   32 root      0:00 [rcuop/3]\n   33 root      0:00 [rcuos/3]\n   34 root      0:00 [rcuob/3]\n   35 root      0:00 [migration/4]\n   36 root      0:00 [ksoftirqd/4]\n   37 root      0:00 [kworker/4:0]\n   38 root      0:00 [kworker/4:0H]\n   39 root      0:00 [rcuop/4]\n   40 root      0:00 [rcuos/4]\n   41 root      0:00 [rcuob/4]\n   42 root      0:00 [migration/5]\n   43 root      0:00 [ksoftirqd/5]\n   44 root      0:00 [kworker/5:0]\n   45 root      0:00 [kworker/5:0H]\n   46 root      0:00 [rcuop/5]\n   47 root      0:00 [rcuos/5]\n   48 root      0:00 [rcuob/5]\n   49 root      0:00 [migration/6]\n   50 root      0:00 [ksoftirqd/6]\n   51 root      0:00 [kworker/6:0]\n   52 root      0:00 [kworker/6:0H]\n   53 root      0:00 [rcuop/6]\n   54 root      0:00 [rcuos/6]\n   55 root      0:00 [rcuob/6]\n   56 root      0:00 [migration/7]\n   57 root      0:00 [ksoftirqd/7]\n   58 root      0:00 [kworker/7:0]\n   59 root      0:00 [kworker/7:0H]\n   60 root      0:00 [rcuop/7]\n   61 root      0:00 [rcuos/7]\n   62 root      0:00 [rcuob/7]\n   63 root      0:00 [kdevtmpfs]\n   64 root      0:00 [netns]\n   65 root      0:00 [perf]\n   66 root      0:00 [smd_channel_clo]\n   67 root      0:00 [dsps_smd_trans_]\n   68 root      0:00 [lpass_smd_trans]\n   69 root      0:00 [mpss_smd_trans_]\n   70 root      0:00 [wcnss_smd_trans]\n   71 root      0:00 [rpm_smd_trans_g]\n   72 root      0:00 [ipa_usb_wq]\n   73 root      0:00 [kworker/0:1]\n   74 root      0:00 [smem_native_mps]\n   75 root      0:00 [mpss_smem_glink]\n   76 root      0:00 [smem_native_lpa]\n   77 root      0:00 [lpass_smem_glin]\n   78 root      0:00 [smem_native_dsp]\n   79 root      0:00 [dsps_smem_glink]\n   80 root      0:00 [smem_native_rpm]\n   81 root      0:00 [rpm_smem_glink_]\n   82 root      0:00 [smem_native_sps]\n   83 root      0:00 [spss_mailbox_gl]\n   84 root      0:00 [msm_watchdog]\n   85 root      0:00 [deferwq]\n   87 root      0:00 [irq/124-cpr3]\n   88 root      0:00 [mpm]\n   90 root      0:00 [writeback]\n   91 root      0:00 [kcompactd0]\n   92 root      0:00 [crypto]\n   93 root      0:00 [bioset]\n   94 root      0:00 [kblockd]\n   95 root      0:00 [md]\n   96 root      0:00 [edac-poller]\n   97 root      0:00 [devfreq_wq]\n   98 root      0:00 [governor_msm_ad]\n   99 root      0:00 [cfg80211]\n  100 root      0:00 [irq/366-ibb-sc-]\n  101 root      0:00 [irq/367-lab-vre]\n  102 root      0:00 [irq/368-lab-sc-]\n  103 root      0:00 [irq/132-arm-smm]\n  104 root      0:00 [ipa_power_mgmt]\n  105 root      0:00 [transport_power]\n  106 root      0:00 [ipa_rm_wq]\n  107 root      0:00 [ipa_interrupt_w]\n  108 root      0:00 [irq/133-arm-smm]\n  109 root      0:00 [irq/134-arm-smm]\n  110 root      0:00 [irq/61-bcl_vbat]\n  111 root      0:00 [irq/60-bcl_ibat]\n  112 root      0:00 [therm_core:noti]\n  113 root      0:00 [therm_core:noti]\n  114 root      0:00 [therm_core:noti]\n  115 root      0:00 [therm_core:noti]\n  141 root      0:00 [power_off_alarm]\n  142 root      0:00 [kswapd0]\n  143 root      0:00 [vmstat]\n  144 root      0:00 [fsnotify_mark]\n  176 root      0:00 [ad_calc_wq]\n  177 root      0:00 [mdss_dsi_event]\n  178 root      0:00 [mdss_dsi_dba]\n  179 root      0:00 [mdss_display_wa]\n  180 root      0:00 [cwb_wq]\n  181 root      0:00 [vsync_retire_wo]\n  182 root      0:00 [cwb_wq]\n  183 root      0:00 [glink_ssr_wq]\n  184 root      0:00 [glink_lbsrv]\n  185 root      0:00 [spi_wdsp]\n  186 root      0:00 [wdsp_spi_glink_]\n  187 root      0:00 [glink_xprt_wq]\n  188 root      0:00 [IPCRTR_mpss_sme]\n  189 root      0:00 [IPCRTR_lpass_sm]\n  190 root      0:00 [IPCRTR_dsps_sme]\n  191 root      0:00 [apr_driver]\n  192 root      0:00 [glink_pkt_wq]\n  193 root      0:00 [mem_share_svc]\n  195 root      0:00 [qmi_hndl0000000]\n  196 root      0:00 [irq/135-arm-smm]\n  197 root      0:00 [qmi_svc_event_w]\n  198 root      0:00 [msm_ipc_router]\n  199 root      0:00 [servloc_wq]\n  200 root      0:00 [tty_worker_thre]\n  201 root      0:00 [tty_worker_thre]\n  202 root      0:00 [tty_worker_thre]\n  203 root      0:00 [tty_worker_thre]\n  204 root      0:00 [tty_worker_thre]\n  205 root      0:00 [tty_worker_thre]\n  206 root      0:00 [tty_worker_thre]\n  207 root      0:00 [k_hsuart]\n  208 root      0:00 [msm_serial_hs_0]\n  209 root      0:00 [msm_serial_hs_0]\n  210 root      0:00 [hwrng]\n  212 root      0:00 [diag_real_time_]\n  213 root      0:00 [diag_wq]\n  214 root      0:00 [DIAG_USB_diag]\n  215 root      0:00 [diag_cntl_wq]\n  216 root      0:00 [diag_dci_wq]\n  217 root      0:00 [DIAG_SMD_MODEM_]\n  218 root      0:00 [DIAG_SMD_MODEM_]\n  219 root      0:00 [DIAG_SMD_MODEM_]\n  220 root      0:00 [DIAG_SMD_MODEM_]\n  221 root      0:00 [DIAG_SMD_MODEM_]\n  222 root      0:00 [DIAG_SMD_LPASS_]\n  223 root      0:00 [DIAG_SMD_LPASS_]\n  224 root      0:00 [DIAG_SMD_LPASS_]\n  225 root      0:00 [DIAG_SMD_LPASS_]\n  226 root      0:00 [DIAG_SMD_LPASS_]\n  227 root      0:00 [DIAG_SMD_WCNSS_]\n  228 root      0:00 [DIAG_SMD_WCNSS_]\n  229 root      0:00 [DIAG_SMD_WCNSS_]\n  230 root      0:00 [DIAG_SMD_WCNSS_]\n  231 root      0:00 [DIAG_SMD_WCNSS_]\n  232 root      0:00 [DIAG_SMD_SENSOR]\n  233 root      0:00 [DIAG_SMD_SENSOR]\n  234 root      0:00 [DIAG_SMD_SENSOR]\n  235 root      0:00 [DIAG_SMD_SENSOR]\n  236 root      0:00 [DIAG_SMD_SENSOR]\n  237 root      0:00 [DIAG_SMD_DIAG_C]\n  238 root      0:00 [DIAG_SMD_DIAG_D]\n  239 root      0:00 [DIAG_SMD_DIAG_C]\n  240 root      0:00 [DIAG_SMD_DIAG_D]\n  241 root      0:00 [DIAG_SMD_DIAG_D]\n  242 root      0:00 [DIAG_SMD_CDSP_C]\n  243 root      0:00 [DIAG_SMD_CDSP_D]\n  244 root      0:00 [DIAG_SMD_CDSP_C]\n  245 root      0:00 [DIAG_SMD_CDSP_D]\n  246 root      0:00 [DIAG_SMD_CDSP_D]\n  247 root      0:00 [DIAG_SOCKMODEM_]\n  248 root      0:00 [DIAG_SOCKMODEM_]\n  249 root      0:00 [DIAG_SOCKMODEM_]\n  250 root      0:00 [DIAG_SOCKMODEM_]\n  251 root      0:00 [DIAG_SOCKMODEM_]\n  252 root      0:00 [DIAG_SOCKLPASS_]\n  253 root      0:00 [DIAG_SOCKLPASS_]\n  254 root      0:00 [DIAG_SOCKLPASS_]\n  255 root      0:00 [DIAG_SOCKLPASS_]\n  256 root      0:00 [DIAG_SOCKLPASS_]\n  257 root      0:00 [DIAG_SOCKWCNSS_]\n  258 root      0:00 [DIAG_SOCKWCNSS_]\n  259 root      0:00 [DIAG_SOCKWCNSS_]\n  260 root      0:00 [DIAG_SOCKWCNSS_]\n  261 root      0:00 [DIAG_SOCKWCNSS_]\n  262 root      0:00 [DIAG_SOCKSENSOR]\n  263 root      0:00 [DIAG_SOCKSENSOR]\n  264 root      0:00 [DIAG_SOCKSENSOR]\n  265 root      0:00 [DIAG_SOCKSENSOR]\n  266 root      0:00 [DIAG_SOCKSENSOR]\n  267 root      0:00 [DIAG_SOCKDIAG_C]\n  268 root      0:00 [DIAG_SOCKDIAG_D]\n  269 root      0:00 [DIAG_SOCKDIAG_C]\n  270 root      0:00 [DIAG_SOCKDIAG_D]\n  271 root      0:00 [DIAG_SOCKDIAG_D]\n  272 root      0:00 [DIAG_SOCKCDSP_C]\n  273 root      0:00 [DIAG_SOCKCDSP_D]\n  274 root      0:00 [DIAG_SOCKCDSP_C]\n  275 root      0:00 [DIAG_SOCKCDSP_D]\n  276 root      0:00 [DIAG_SOCKCDSP_D]\n  277 root      0:00 [DIAG_CNTL_SOCKE]\n  278 root      0:00 [DIAG_GLINK_DIAG]\n  279 root      0:00 [DIAG_GLINK_DIAG]\n  280 root      0:00 [DIAG_GLINK_DIAG]\n  281 root      0:00 [DIAG_GLINK_DIAG]\n  282 root      0:00 [DIAG_GLINK_DIAG]\n  283 root      0:00 [kgsl-workqueue]\n  284 root      0:00 [kgsl-mementry]\n  285 root      0:00 [kgsl_worker_thr]\n  286 root      0:00 [kgsl-events]\n  287 root      0:00 [kgsl_devfreq_wq]\n  288 root      0:00 [bioset]\n  289 root      0:00 [bioset]\n  290 root      0:00 [bioset]\n  291 root      0:00 [bioset]\n  292 root      0:00 [bioset]\n  293 root      0:00 [bioset]\n  294 root      0:00 [bioset]\n  295 root      0:00 [bioset]\n  296 root      0:00 [bioset]\n  297 root      0:00 [bioset]\n  298 root      0:00 [bioset]\n  299 root      0:00 [bioset]\n  300 root      0:00 [bioset]\n  301 root      0:00 [bioset]\n  302 root      0:00 [bioset]\n  303 root      0:00 [bioset]\n  304 root      0:00 [bioset]\n  305 root      0:00 [bioset]\n  306 root      0:00 [bioset]\n  307 root      0:00 [bioset]\n  308 root      0:00 [bioset]\n  309 root      0:00 [bioset]\n  310 root      0:00 [bioset]\n  311 root      0:00 [bioset]\n  312 root      0:00 [bioset]\n  313 root      0:00 [bioset]\n  314 root      0:00 [bioset]\n  315 root      0:00 [bioset]\n  316 root      0:00 [bioset]\n  317 root      0:00 [bioset]\n  318 root      0:00 [bioset]\n  319 root      0:00 [bioset]\n  320 root      0:00 [bioset]\n  321 root      0:00 [irq/284-soc:fp_]\n  322 root      0:00 [memory_wq]\n  323 root      0:00 [irq/498-i2c_pmi]\n  324 root      0:00 [qcrypto_seq_res]\n  345 root      0:00 [scsi_eh_0]\n  346 root      0:00 [scsi_tmf_0]\n  347 root      0:00 [ufs_pm_qos_0]\n  348 root      0:00 [ufs_clk_gating_]\n  349 root      0:00 [spi1]\n  350 root      0:00 [spi2]\n  351 root      0:00 [spi10]\n  352 root      0:00 [bond0]\n  353 root      0:00 [sharedmem_qmi_w]\n  358 root      0:00 [uether]\n  359 root      0:00 [qmi_hndl0000000]\n  360 root      0:00 [k_ipa_usb]\n  365 root      0:00 [bioset]\n  366 root      0:00 [bioset]\n  367 root      0:00 [bioset]\n  368 root      0:00 [bioset]\n  369 root      0:00 [bioset]\n  370 root     28:15 [irq/500-fts_tou]\n  371 root      0:00 [bioset]\n  372 root      0:00 [kworker/u17:0]\n  374 root      0:00 [bioset]\n  375 root      0:00 [irq/260-vl53l0_]\n  376 root      0:00 [msm_cci_wq]\n  377 root      0:00 [msm_cci_wq]\n  378 root      0:00 [bioset]\n  379 root      0:00 [bioset]\n  380 root      0:00 [msm_cpp_workque]\n  381 root      0:00 [bioset]\n  383 root      0:00 [msm_vidc_worker]\n  384 root      0:00 [pm_workerq_venu]\n  385 root      0:00 [irq/156-arm-smm]\n  386 root      0:00 [irq/157-arm-smm]\n  387 root      0:00 [irq/158-arm-smm]\n  388 root      0:00 [irq/159-arm-smm]\n  389 root      0:00 [rot_commitq_0_0]\n  390 root      0:00 [rot_commitq_0_1]\n  391 root      0:00 [rot_doneq_0_0]\n  392 root      0:00 [rot_doneq_0_1]\n  393 root      0:00 [therm_core:noti]\n  394 root      0:00 [therm_core:noti]\n  395 root      0:00 [irq/503-chg-err]\n  396 root      0:00 [irq/504-chg-sta]\n  397 root      0:00 [irq/505-step-ch]\n  398 root      0:00 [irq/506-step-ch]\n  399 root      0:00 [irq/507-step-ch]\n  400 root      0:00 [irq/508-otg-fai]\n  401 root      0:00 [irq/509-otg-ove]\n  402 root      0:00 [irq/510-otg-oc-]\n  403 root      0:00 [irq/511-testmod]\n  404 root      0:00 [irq/512-bat-tem]\n  405 root      0:00 [irq/513-bat-ocp]\n  406 root      0:00 [irq/514-bat-ov]\n  407 root      0:00 [irq/515-bat-low]\n  408 root      0:00 [irq/516-bat-the]\n  409 root      0:00 [irq/517-bat-ter]\n  410 root      0:00 [irq/518-usbin-c]\n  411 root      0:00 [irq/519-usbin-l]\n  412 root      0:00 [irq/520-usbin-u]\n  413 root      0:00 [irq/521-usbin-o]\n  414 root      0:00 [irq/522-usbin-p]\n  415 root      0:00 [irq/523-usbin-s]\n  416 root      0:00 [irq/524-usbin-i]\n  417 root      0:00 [irq/525-type-c-]\n  418 root      0:00 [irq/526-dcin-co]\n  419 root      0:00 [irq/527-dcin-lt]\n  420 root      0:00 [irq/528-dcin-uv]\n  421 root      0:00 [irq/529-dcin-ov]\n  422 root      0:00 [irq/530-dcin-pl]\n  423 root      0:00 [irq/531-div2-en]\n  424 root      0:00 [irq/532-dcin-ic]\n  426 root      0:00 [irq/535-aicl-fa]\n  427 root      0:00 [irq/536-aicl-do]\n  428 root      0:00 [irq/537-high-du]\n  429 root      0:00 [irq/538-input-c]\n  430 root      0:00 [irq/539-tempera]\n  431 root      0:00 [irq/540-switche]\n  432 root      0:00 [therm_core:noti]\n  433 root      0:00 [therm_core:noti]\n  434 root      0:00 [therm_core:noti]\n  435 root      0:00 [therm_core:noti]\n  436 root      0:00 [therm_core:noti]\n  437 root      0:00 [therm_core:noti]\n  438 root      0:00 [therm_core:noti]\n  439 root      0:00 [therm_core:noti]\n  440 root      0:00 [therm_core:noti]\n  441 root      0:00 [therm_core:noti]\n  442 root      0:00 [therm_core:noti]\n  443 root      0:00 [therm_core:noti]\n  444 root      0:00 [therm_core:noti]\n  445 root      0:00 [therm_core:noti]\n  446 root      0:00 [therm_core:noti]\n  447 root      0:00 [therm_core:noti]\n  448 root      0:00 [therm_core:noti]\n  449 root      0:00 [therm_core:noti]\n  450 root      0:00 [therm_core:noti]\n  451 root      0:00 [therm_core:noti]\n  452 root      0:00 [irq/57-tsens_in]\n  453 root      0:00 [irq/58-tsens_cr]\n  454 root      0:00 [therm_core:noti]\n  455 root      0:00 [therm_core:noti]\n  456 root      0:00 [therm_core:noti]\n  457 root      0:00 [therm_core:noti]\n  458 root      0:00 [therm_core:noti]\n  459 root      0:00 [therm_core:noti]\n  460 root      0:00 [therm_core:noti]\n  461 root      0:00 [therm_core:noti]\n  462 root      0:00 [irq/59-tsens_in]\n  463 root      0:00 [irq/62-tsens_cr]\n  464 root      0:00 [therm_core:noti]\n  465 root      0:00 [irq/364-limits_]\n  466 root      0:00 [therm_core:noti]\n  467 root      0:00 [irq/365-limits_]\n  468 root      0:00 [dm_bufio_cache]\n  469 root      0:00 [irq/289-bcm1560]\n  470 root      0:00 [irq/195-spdm_bw]\n  471 root      0:00 [irq/224-bcm1560]\n  472 root      0:00 [irq/142-arm-smm]\n  473 root      0:00 [uaudio_svc]\n  474 root      0:00 [qmi_hndl0000000]\n  475 root      0:00 [therm_core:noti]\n  477 root      0:00 [ipv6_addrconf]\n  479 root      0:00 [irq/577-adsp]\n  480 root      0:00 [sysmon_wq]\n  481 root      0:00 [irq/609-slpi]\n  482 root      0:00 [irq/545-modem]\n  486 root      0:00 [usb_bam_wq]\n  490 root      0:00 [therm_core:noti]\n  491 root      0:00 [irq/737-soc-upd]\n  492 root      0:00 [irq/738-soc-rea]\n  493 root      0:00 [irq/739-bsoc-de]\n  494 root      0:00 [irq/740-msoc-de]\n  495 root      0:00 [irq/741-msoc-lo]\n  496 root      0:00 [irq/742-msoc-em]\n  497 root      0:00 [irq/743-msoc-hi]\n  498 root      0:00 [irq/744-msoc-fu]\n  499 root      0:00 [irq/745-vbatt-p]\n  500 root      0:00 [irq/746-vbatt-l]\n  501 root      0:00 [irq/747-esr-del]\n  502 root      0:00 [irq/748-batt-mi]\n  503 root      0:00 [irq/749-batt-te]\n  504 root      0:00 [irq/750-ima-rdy]\n  505 root      0:00 [irq/751-mem-xcp]\n  506 root      0:00 [irq/752-dma-gra]\n  512 root      0:00 [irq/19-sig-tx]\n  513 root      0:00 [irq/20-sig-rx]\n  514 root      0:00 [irq/22-msg-rx]\n  515 root      0:00 [usbpd0]\n  516 root      0:00 [kworker/0:7]\n  517 root      0:00 [usbpd0]\n  518 root      0:00 [irq/52-hs_phy_i]\n  519 root      0:00 [irq/53-ss_phy_i]\n  520 root      0:00 [irq/54-msm_dwc3]\n  522 root      0:00 [irq/36-ARM64 pr]\n  523 root      0:00 [irq/37-ARM64 se]\n  524 root      0:00 [irq/39-ARM64 pr]\n  525 root      0:00 [irq/40-ARM64 se]\n  526 root      0:00 [rq_stats]\n  528 root      0:00 [irq/143-arm-smm]\n  529 root      0:00 [irq/144-arm-smm]\n  530 root      0:00 [irq/145-arm-smm]\n  531 root      0:00 [irq/146-arm-smm]\n  532 root      0:00 [irq/147-arm-smm]\n  533 root      0:00 [irq/148-arm-smm]\n  534 root      0:00 [irq/149-arm-smm]\n  535 root      0:00 [irq/150-arm-smm]\n  536 root      0:00 [sb-1]\n  537 root      0:00 [ngd_rx_thread1]\n  538 root      0:00 [ngd_notify_sl1]\n  539 root      0:00 [sb-3]\n  540 root      0:00 [ngd_rx_thread3]\n  541 root      0:00 [ngd_notify_sl3]\n  542 root      0:00 [set_state_work]\n  543 root      0:00 [irq/225-mnh-rea]\n  544 root      0:00 [irq/757-mnh_pci]\n  545 root      0:00 [irq/758-mnh_pci]\n  546 root      0:00 [irq/759-mnh_pci]\n  547 root      0:00 [irq/760-mnh_pci]\n  548 root      0:00 [irq/761-mnh_pci]\n  549 root      0:00 [irq/764-mnh_pci]\n  550 root      0:00 [irq/765-mnh_pci]\n  551 root      0:00 [irq/126-arm-smm]\n  552 root      0:00 [therm_core:noti]\n  553 root      0:00 [therm_core:noti]\n  554 root      0:00 [therm_core:noti]\n  555 root      0:00 [irq/64-lmh-inte]\n  556 root      0:00 [irq/28-qpnp_fla]\n  557 root      0:00 [irq/27-qpnp_fla]\n  558 root      0:00 [irq/26-qpnp_fla]\n  559 root      0:00 [devfreq_boostd/]\n  567 root      0:00 [kworker/1:1H]\n  568 root      0:00 [kworker/2:1H]\n  569 root      0:00 [kworker/3:1H]\n  570 root      0:00 [kworker/4:1H]\n  571 root      0:00 [kworker/5:1H]\n  572 root      0:00 [kworker/6:1H]\n  573 root      0:00 [kworker/7:1H]\n  575 root      0:00 [kworker/0:1H]\n  580 root      0:00 [kworker/1:1]\n  633 root      0:05 [kworker/0:0]\n  654 root      0:01 [kworker/u16:4]\n  657 root      0:00 [kworker/4:1]\n  661 root      0:05 [kworker/0:2]\n  678 root      0:01 [kworker/u16:1]\n  701 root      0:00 [kworker/u16:3]\n  714 root      0:00 [kworker/0:3]\n  733 root      0:00 [kworker/u16:2]\n  740 root      0:00 [kworker/0:4]\n  747 root      0:00 [kworker/0:5]\n  763 root      0:00 ps -A\n"
  },
  {
    "path": "results/msm8998/fts-irq-storm/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,974.229677,3.247432256666667,22.519104474580352,5.779551837915734,43.25594907894397,256.651051308\r\n1,364800,1184.671301,3.2474542242324564,27.89107163218178,5.886575069076702,42.469517005448125,211.055894399\r\n1,441600,1434.037159,3.2473667549818837,41.0959303193815,7.165222443436499,34.890752097864805,174.353576808\r\n1,518400,1683.547032,3.2475830092592592,32.52234323682427,4.830009261465433,51.75973511987627,148.51356885\r\n1,595200,1932.890057,3.2474631334005375,43.396189701312494,5.613505780973162,44.535448925227584,129.354807867\r\n1,672000,2182.26257,3.247414538690476,38.15586298626316,4.371601507340208,57.187280126112476,114.572208966\r\n1,748800,2431.622768,3.247359465811966,39.276588565999994,4.038573756418358,61.903041786146446,102.823944336\r\n1,825600,2681.080154,3.2474323570736434,54.5917066935161,5.0911160166554055,49.10514692301921,93.258048246\r\n1,883200,2868.22239,3.247534408967391,61.21207385276741,5.336036968401242,46.85124962222737,87.172948612\r\n1,960000,3114.488601,3.244258959375,52.027176709949956,4.176705463874452,59.85578876995832,80.279302626\r\n1,1036800,3366.958021,3.2474517949459876,76.1968014809188,5.658424003760481,44.181913521124386,74.260649972\r\n1,1094400,3553.96338,3.2474080592105263,64.08407488962851,4.508453619101164,55.45138557948427,70.352168255\r\n1,1171200,3803.438308,3.247471232923497,70.11315856895385,4.609037533005454,54.241259310591985,65.737125913\r\n1,1248000,4051.798188,3.2466331634615386,75.48653898590163,4.658195868112941,53.66884671195166,61.708960706\r\n1,1324800,4301.963416,3.2472549939613526,84.5468442350345,4.9139528168542155,50.875539370775535,58.121067218\r\n1,1401600,4551.578487,3.247416157962329,94.85020485314814,5.210425725769285,47.980724255135435,54.933204771\r\n1,1478400,4792.117924,3.241421755952381,124.2948378421153,6.485248079176099,38.54902649024964,52.176326803\r\n1,1555200,5050.403022,3.247429926697531,107.88768727853055,5.341231857593105,46.80568203467886,49.507334825\r\n1,1670400,5424.640889,3.2475101107519158,135.91024674447823,6.264548545952514,39.90710554258909,46.093276232\r\n1,1747200,5673.823249,3.2473805225503662,145.3644274200465,6.406091039510266,39.02535859357878,44.069179463\r\n1,1824000,5923.468783,3.247515780153509,159.23707303128563,6.721705770024453,37.192940088939736,42.211939984\r\n1,1900800,6166.140489,3.243971216856061,184.79084898889994,7.493208202379006,33.36354646073065,40.54967139\r\n4,300000,1568.883394,5.229611313333333,59.175401472835446,9.431656026963202,26.506479804320733,159.384740825\r\n4,345600,1807.246335,5.229300737847222,56.36229177510944,7.7988601879899475,32.05596638147121,138.370175207\r\n4,422400,2210.335529,5.232801915246212,57.42007679669639,6.496648297104134,38.48138125492139,113.142452249\r\n4,499200,2611.64795,5.23166656650641,66.46631042372633,6.3649445038417545,39.277640181953664,95.761965171\r\n4,576000,3014.590619,5.233664269097222,91.35861046775605,7.579649732226599,32.983054472434034,82.965904291\r\n4,652800,3414.041269,5.229842630208333,104.28236858294436,7.639854266320235,32.72313728576049,73.261226899\r\n4,729600,3817.551575,5.232389768366228,101.93113076833843,6.678677640968561,37.432559772976894,65.521471121\r\n4,806400,4221.47549,5.2349646453373015,123.32151441075865,7.3075085806556395,34.21138644459445,59.255747998\r\n4,902400,4718.316505,5.2286308787677305,120.7567771302308,6.402175516286528,39.04922621443659,53.01711149\r\n4,979200,5125.051251,5.23391671875,130.80811913949995,6.3851321185116285,39.15345765128426,48.812964826\r\n4,1056000,5523.88528,5.23095196969697,161.5364410394545,7.316324226054424,34.170164180219906,45.29209743\r\n4,1132800,5923.468783,5.229050832450565,153.95917889878044,6.502980053765557,38.44391308800605,42.238339411\r\n4,1190400,6232.548863,5.235676128192204,160.7956924319487,6.455186401331047,38.7285485587915,40.145269464\r\n4,1267200,6624.446859,5.227625362215909,179.5899143313514,6.783485029581861,36.85421268120793,37.772082329\r\n4,1344000,7030.766635,5.231225174851191,187.27291726519996,6.665524346076675,37.50642665451367,35.592569622\r\n4,1420800,7431.849936,5.230750236486486,217.80891013903027,7.334458769087334,34.08567801262708,33.673823373\r\n4,1497600,7835.025699,5.231721219951924,278.1739538070968,8.885120425089,28.13692871219535,31.940878373\r\n4,1574400,8236.418146,5.231464777693089,267.4189274030666,8.126284898875829,30.764365649373723,30.387844936\r\n4,1651200,8640.055296,5.232591627906977,292.6075116419286,8.476709718817927,29.492575337929868,28.969556083\r\n4,1728000,9038.649264,5.230699805555555,303.30439905651843,8.398811052048083,29.766117900585048,27.691029468\r\n4,1804800,9440.018125,5.230506496564717,334.1022366506154,8.858771438987338,28.220617466181963,26.515151553\r\n4,1881600,9832.068274,5.225376421130952,374.67750234335995,9.540540511873616,26.203966084402047,25.463339678\r\n4,1958400,10243.382775,5.23048548560049,478.45765210058335,11.693039986643248,21.38023989360941,24.439028063\r\n4,2035200,10638.750585,5.227373518573113,497.9177184988694,11.717813427440506,21.335038447920304,23.533634157\r\n4,2112000,11051.189108,5.232570600378788,550.6899646493636,12.47603806217917,20.038412736000655,22.655284939\r\n4,2208000,11850.02607,5.366859633152174,588.0101748539,12.425509197043919,20.119899799315753,21.1314527\r\n4,2265600,12242.299594,5.403557377295198,715.9546483153,14.64474586453753,17.070968817927987,20.454851294\r\n4,2323200,12649.901331,5.445033286415289,786.7593449778947,15.575724706758042,16.050617528668138,19.797317701\r\n4,2342400,12755.752845,5.445591207735656,821.5346509803684,16.12746102186394,15.501510105098124,19.630895669\r\n4,2361600,12862.067191,5.446336039549458,775.4415509754737,15.097233746520857,16.559324986116234,19.469209159\r\n4,2457600,12848.846174,5.228208892415365,861.0768330211579,16.782154260671835,14.896776427914435,19.489729159\r\n"
  },
  {
    "path": "results/msm8998/fts-irq-storm/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 4079.405817818828, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1312.3496173490003, 1310.2641854610001, 1308.422276553, 1317.959823768, 1310.2641854610001, 1313.947288845, 1313.947288845, 1310.020781553, 1311.9433488089999, 1313.7845432850002, 1317.633379096, 1319.5558272800001, 1317.306599952, 1313.45871867, 1311.5367472619998, 1303.683368812, 1313.45871867, 1309.69591049, 1307.6117888820002, 1307.5307733180002, 1316.8982096399998, 1307.5307733180002, 1307.5307733180002, 1311.1301457149998, 1313.2959731100002, 1307.206379031, 1311.048892007, 1316.8165984720001, 1307.125363467], \"power_mean\": 1311.826147601345, \"energy_millijoules\": 6559.130738006725, \"energy_joules\": 6.559130738006725}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 256.651051308, \"elapsed_ns\": 256651051308, \"power_samples\": [31.61204260799991, 31.61204260799991, 25.847554747999993, 25.847554747999993, 24.009696483999733, 24.009696483999733, 24.009696483999733, 24.009696483999733, 14.400309267999774, 14.400309267999774, 18.162882536000097, 18.162882536000097, 23.845044307999842, 23.845044307999842, 12.480005843999834, 12.480005843999834, 27.76773909999997, 27.76773909999997, 21.92104446799999, 21.92104446799999, 18.162882536000097, 18.162882536000097, 22.08545801199989, 22.08545801199989, 18.080913907999957, 18.080913907999957, 25.76510958799986, 25.76510958799986, 27.43714379400012, 27.43714379400012, 17.834672087000172, 17.834672087000172, 23.597728641999993, 23.597728641999993, 21.674087239000073, 21.674087239000073, 17.670734831000118, 17.670734831000118, 27.3545795619998, 27.3545795619998, 17.670734831000118, 17.670734831000118, 21.509673694999947, 21.509673694999947, 21.59188046700001, 21.59188046700001, 17.588766202999977, 17.588766202999977, 23.350750377999702, 23.350750377999702, 21.427466922999884, 21.427466922999884, 11.826782027999798, 11.826782027999798, 567.3801443780001, 567.3801443780001, 25.270100737999883, 25.270100737999883, 21.427466922999884, 21.427466922999884, 17.42482894700015, 17.42482894700015, 23.350750377999702, 23.350750377999702, 7.739696377999962, 7.739696377999962, 13.50060670799985, 13.50060670799985, 23.18609820200004, 23.18609820200004, 17.42482894700015, 17.42482894700015, 11.500002883999969, 11.500002883999969, 26.85885579199976, 26.85885579199976, 15.423531725999965, 15.423531725999965, 17.260555754000052, 17.260555754000052, 17.17858712599991, 17.17858712599991, 13.173685747999798, 13.173685747999798, 13.173685747999798, 13.173685747999798, 17.014649869999857, 17.014649869999857, 20.769475834000104, 20.769475834000104, 20.769475834000104, 20.769475834000104, 13.091955507999955, 13.091955507999955, 16.932681241999944, 16.932681241999944, 11.173558211999762, 11.173558211999762, 16.932681241999944, 16.932681241999944, 20.851682606000168, 20.851682606000168, 13.091955507999955, 13.091955507999955, 12.928495028000043, 12.928495028000043, 17.014649869999857, 17.014649869999857, 14.850584834000074, 14.850584834000074, 14.850584834000074, 14.850584834000074, 7.1700869179999245, 7.1700869179999245, 20.605062289999978, 20.605062289999978, 24.445311247999825, 24.445311247999825, 20.605062289999978, 20.605062289999978, 16.76874398599989, 16.76874398599989, 16.60447079300002, 16.60447079300002, 16.440533536999965, 16.440533536999965, 14.604700717000014, 14.604700717000014, 16.440533536999965, 16.440533536999965, 14.522851161000062, 14.522851161000062, 22.197510341999987, 22.197510341999987, 12.601239107999845, 12.601239107999845, 12.601239107999845, 12.601239107999845, 20.358105060999833, 20.358105060999833, 10.683556731999943, 10.683556731999943, 16.35856490900005, 16.35856490900005, 16.35856490900005, 16.35856490900005, 12.601239107999845, 12.601239107999845, 29.789366902999973, 29.789366902999973, 20.029277973000035, 20.029277973000035, 14.27730249299998, 14.27730249299998, 16.440533536999965, 16.440533536999965, 21.867868587999965, 21.867868587999965, 14.19511748800005, 14.19511748800005, 16.194627652999998, 16.194627652999998, 22.115184253999814, 22.115184253999814, 12.519508868000003, 12.519508868000003, 21.785542499999792, 21.785542499999792, 12.273983187999875, 12.273983187999875, 19.946734288000016, 19.946734288000016, 10.438723228000072, 10.438723228000072, 20.029277973000035, 20.029277973000035, 16.35856490900005, 16.35856490900005, 10.275166420000005, 10.275166420000005, 12.110522707999735, 12.110522707999735, 14.19511748800005, 14.19511748800005, 21.785542499999792, 21.785542499999792, 15.948385831999985, 15.948385831999985, 12.110522707999735, 12.110522707999735, 13.867719264000016, 13.867719264000016, 19.782320744000117, 19.782320744000117, 21.867868587999965, 21.867868587999965, 21.703216412000074, 21.703216412000074, 21.538564235999957, 21.538564235999957, 10.030332916000134, 10.030332916000134, 19.782320744000117, 19.782320744000117, 25.372022860000015, 25.372022860000015, 6.355692127999873, 6.355692127999873, 19.782320744000117, 19.782320744000117, 23.620183867999913, 23.620183867999913, 14.03141837599992, 14.03141837599992, 15.620511319999878, 15.620511319999878, 21.538564235999957, 21.538564235999957, 21.538564235999957, 21.538564235999957, 21.703216412000074, 21.703216412000074, 29.209409208000125, 29.209409208000125, 15.784448576000159, 15.784448576000159, 21.37391205999984, 21.37391205999984, 23.290403227999832, 23.290403227999832, 19.45349365600009, 19.45349365600009, 21.29124856999988, 21.29124856999988, 13.458136035000052, 13.458136035000052, 19.370949971000073, 19.370949971000073, 19.206536426999946, 19.206536426999946, 19.370949971000073, 19.370949971000073, 13.458136035000052, 13.458136035000052, 19.206536426999946, 19.206536426999946, 11.45634582799994, 11.45634582799994, 13.3762864790001, 13.3762864790001, 21.044270305999817, 21.044270305999817, 15.292300870999952, 15.292300870999952, 21.044270305999817], \"power_mean\": 22.519104474580352, \"energy_millijoules\": 5779.551837915734, \"energy_joules\": 5.779551837915734, \"coremark_score\": 974.229677, \"coremarks_per_mhz\": 3.247432256666667, \"ulpmark_cm_score\": 43.25594907894397}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1318.3288688, 1318.3288688, 1335.5438192800002, 1335.5438192800002], \"power_mean\": 1326.9363440400002, \"energy_millijoules\": 6634.681720200001, \"energy_joules\": 6.6346817202000015}}, \"364800\": {\"active\": {\"elapsed_sec\": 211.055894399, \"elapsed_ns\": 211055894399, \"power_samples\": [21.044270305999817, 21.044270305999817, 20.879618129999926, 20.879618129999926, 24.79373485799988, 24.79373485799988, 28.380704298000182, 28.380704298000182, 22.63016616799996, 22.63016616799996, 20.714628552000022, 20.714628552000022, 22.547721007999826, 22.547721007999826, 18.959916110999984, 18.959916110999984, 24.545703784000125, 24.545703784000125, 20.879618129999926, 20.879618129999926, 24.711170626000012, 24.711170626000012, 20.63230246399985, 20.63230246399985, 28.297901678000017, 28.297901678000017, 22.547721007999826, 22.547721007999826, 22.63016616799996, 22.63016616799996, 22.63016616799996, 22.63016616799996, 32.21177953000006, 32.21177953000006, 20.714628552000022, 20.714628552000022, 24.463139551999802, 24.463139551999802, 28.215099058000078, 28.215099058000078, 22.46527584799992, 22.46527584799992, 22.382830688000013, 22.382830688000013, 22.46527584799992, 22.46527584799992, 22.46527584799992, 22.46527584799992, 22.46527584799992, 22.46527584799992, 18.630752109999776, 18.630752109999776, 24.463139551999802, 24.463139551999802, 20.549976375999904, 20.549976375999904, 30.047476837999966, 30.047476837999966, 20.46765028799996, 20.46765028799996, 20.138008533999937, 20.138008533999937, 18.301925022000205, 18.301925022000205, 14.389974089000134, 14.389974089000134, 24.05031839200001, 24.05031839200001, 27.883888578000096, 27.883888578000096, 22.052712158000077, 22.052712158000077, 23.96741578199976, 23.96741578199976, 29.63252853500012, 29.63252853500012, 562.8237245479997, 562.8237245479997, 20.05568244599999, 20.05568244599999, 27.800746603000107, 27.800746603000107, 21.970266997999943, 21.970266997999943, 27.800746603000107, 27.800746603000107, 23.884851549999894, 23.884851549999894, 17.972761020999997, 17.972761020999997, 29.71545022700002, 29.71545022700002, 23.96741578199976, 23.96741578199976, 27.552338742999837, 27.552338742999837, 17.972761020999997, 17.972761020999997, 19.80870418199993, 19.80870418199993, 20.05568244599999, 20.05568244599999, 23.884851549999894, 23.884851549999894, 14.14406820499994, 14.14406820499994, 29.300841767000065, 29.300841767000065, 13.980130949000113, 13.980130949000113, 23.71972308599993, 23.71972308599993, 21.805376677999902, 21.805376677999902, 21.722931517999996, 21.722931517999996, 17.972761020999997, 17.972761020999997, 29.383763459000193, 29.383763459000193, 19.726378093999983, 19.726378093999983, 23.554594621999968, 23.554594621999968, 29.300841767000065, 29.300841767000065, 19.64405200599981, 19.64405200599981, 33.21614072800003, 33.21614072800003, 27.469536123000125, 27.469536123000125, 21.640486357999862, 21.640486357999862, 21.558041197999955, 21.558041197999955, 23.306563547999986, 23.306563547999986, 23.472030389999873, 23.472030389999873, 21.558041197999955, 21.558041197999955, 17.561390247999952, 17.561390247999952, 17.561390247999952, 17.561390247999952, 21.392812987999832, 21.392812987999832, 21.310367827999926, 21.310367827999926, 27.137986288000093, 27.137986288000093, 27.137986288000093, 27.137986288000093, 21.310367827999926, 21.310367827999926, 28.96881515600012, 28.96881515600012, 19.479062427999907, 19.479062427999907, 23.306563547999986, 23.306563547999986, 27.055183668000154, 27.055183668000154, 26.97238104799999, 26.97238104799999, 19.067431987999953, 19.067431987999953, 17.47918347599989, 17.47918347599989, 23.141435083999795, 23.141435083999795, 19.39673633999996, 19.39673633999996, 21.227922667999792, 21.227922667999792, 23.306563547999986, 23.306563547999986, 23.223999316000118, 23.223999316000118, 22.810839777999945, 22.810839777999945, 19.31441025199979, 19.31441025199979, 22.810839777999945, 22.810839777999945, 27.055183668000154, 27.055183668000154, 30.799405879999995, 30.799405879999995, 21.227922667999792, 21.227922667999792, 19.067431987999953, 19.067431987999953, 13.32404598800008, 13.32404598800008, 19.067431987999953, 19.067431987999953, 20.897804138000083, 20.897804138000083, 18.984768497999767, 18.984768497999767, 22.810839777999945, 22.810839777999945, 18.984768497999767, 18.984768497999767, 19.067431987999953, 19.067431987999953, 22.728275546000077], \"power_mean\": 27.89107163218178, \"energy_millijoules\": 5886.575069076703, \"energy_joules\": 5.886575069076702, \"coremark_score\": 1184.671301, \"coremarks_per_mhz\": 3.2474542242324564, \"ulpmark_cm_score\": 42.469517005448125}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1313.223700248, 1313.223700248, 1316.977805735, 1316.977805735], \"power_mean\": 1315.1007529915, \"energy_millijoules\": 6575.503764957501, \"energy_joules\": 6.5755037649575}}, \"441600\": {\"active\": {\"elapsed_sec\": 174.353576808, \"elapsed_ns\": 174353576808, \"power_samples\": [28.22218008499999, 28.22218008499999, 572.254556118, 572.254556118, 30.134739437000007, 30.134739437000007, 26.309620732999974, 26.309620732999974, 22.48058285000002, 22.48058285000002, 28.388023469000018, 28.388023469000018, 26.47522597299985, 26.47522597299985, 35.79293844799986, 35.79293844799986, 22.48058285000002, 22.48058285000002, 30.134739437000007, 30.134739437000007, 28.13925839300009, 28.13925839300009, 28.13925839300009, 28.13925839300009, 32.051217967999946, 32.051217967999946, 26.309620732999974, 26.309620732999974, 37.788896023999996, 37.788896023999996, 32.051217967999946, 32.051217967999946, 28.13925839300009, 28.13925839300009, 31.801737728000035, 31.801737728000035, 22.315454386000056, 22.315454386000056, 22.315454386000056, 22.315454386000056, 31.801737728000035, 31.801737728000035, 27.973415009000064, 27.973415009000064, 26.226818113000036, 26.226818113000036, 35.626141999999845, 35.626141999999845, 26.144015493000097, 26.144015493000097, 31.801737728000035, 31.801737728000035, 27.807231782000144, 27.807231782000144, 27.807231782000144, 27.807231782000144, 31.801737728000035, 31.801737728000035, 27.973415009000064, 27.973415009000064, 35.626141999999845, 35.626141999999845, 25.895268278000003, 25.895268278000003, 27.807231782000144, 27.807231782000144, 27.973415009000064, 27.973415009000064, 31.801737728000035, 31.801737728000035, 20.0730146479998, 20.0730146479998, 27.724310090000017, 27.724310090000017, 37.28744996399996, 37.28744996399996, 21.819730616000015, 21.819730616000015, 20.155459807999932, 20.155459807999932, 27.807231782000144, 27.807231782000144, 29.71919528600006, 29.71919528600006, 20.0730146479998, 20.0730146479998, 31.551916667999876, 31.551916667999876, 25.646860418000188, 25.646860418000188, 27.558466706000218, 27.558466706000218, 29.30399146600007, 29.30399146600007, 25.812465658000065, 25.812465658000065, 21.98485907999998, 21.98485907999998, 31.385596507999935, 31.385596507999935, 31.385596507999935, 31.385596507999935, 29.22061037100002, 29.22061037100002, 36.95338077999986, 36.95338077999986, 27.392623321999963, 27.392623321999963, 36.86952120000001, 36.86952120000001, 25.398113202999866, 25.398113202999866, 31.135775448000004, 31.135775448000004, 19.660450957999956, 19.660450957999956, 19.578005797999822, 19.578005797999822, 36.7860039039997, 36.7860039039997, 29.0545288430003, 29.0545288430003, 31.052615367999806, 31.052615367999806, 34.87487439199981, 34.87487439199981, 21.489135309999938, 21.489135309999938, 29.137569606999932, 29.137569606999932, 27.143518403000144, 27.143518403000144, 21.40657107800007, 21.40657107800007, 29.0545288430003, 29.0545288430003, 30.969455288000063, 30.969455288000063, 29.0545288430003, 29.0545288430003, 34.79147616799992, 34.79147616799992, 29.137569606999932, 29.137569606999932, 27.226440095000044, 27.226440095000044, 574.2908890399999, 574.2908890399999, 27.143518403000144, 27.143518403000144, 34.624679719999676, 34.624679719999676, 21.40657107800007, 21.40657107800007, 34.624679719999676, 34.624679719999676, 29.0545288430003, 29.0545288430003, 30.803135127999894, 30.803135127999894, 28.888447314999894, 28.888447314999894, 26.977675019000117, 26.977675019000117, 28.722365786999944, 28.722365786999944, 26.81183163500009, 26.81183163500009, 26.72857010000007, 26.72857010000007, 28.805406551000033, 28.805406551000033, 26.89475332699999], \"power_mean\": 41.0959303193815, \"energy_millijoules\": 7165.222443436499, \"energy_joules\": 7.165222443436499, \"coremark_score\": 1434.037159, \"coremarks_per_mhz\": 3.2473667549818837, \"ulpmark_cm_score\": 34.890752097864805}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1320.668974743, 1320.668974743, 1322.6681373099998, 1322.6681373099998], \"power_mean\": 1321.6685560265, \"energy_millijoules\": 6608.3427801325, \"energy_joules\": 6.608342780132499}}, \"518400\": {\"active\": {\"elapsed_sec\": 148.51356885, \"elapsed_ns\": 148513568850, \"power_samples\": [24.818155508000018, 24.818155508000018, 34.207346803999826, 34.207346803999826, 36.117523251999955, 36.117523251999955, 28.389862400000084, 28.389862400000084, 34.207346803999826, 34.207346803999826, 34.12394857999993, 34.12394857999993, 24.569747648000202, 24.569747648000202, 39.85803476000001, 39.85803476000001, 34.12394857999993, 34.12394857999993, 36.117523251999955, 36.117523251999955, 36.0340059560001, 36.0340059560001, 34.207346803999826, 34.207346803999826, 30.137513667999883, 30.137513667999883, 36.0340059560001, 36.0340059560001, 28.223780872000134, 28.223780872000134, 36.117523251999955, 36.117523251999955, 36.0340059560001, 36.0340059560001, 33.95715213199992, 33.95715213199992, 28.472903163999945, 28.472903163999945, 34.12394857999993, 34.12394857999993, 33.95715213199992, 33.95715213199992, 20.580590379999876, 20.580590379999876, 35.86697136399994, 35.86697136399994, 33.790013887999976, 33.790013887999976, 37.61308816299993, 37.61308816299993, 29.887692607999952, 29.887692607999952, 29.887692607999952, 29.887692607999952, 29.887692607999952, 29.887692607999952, 35.61607719199992, 35.61607719199992, 33.70661566400008, 33.70661566400008, 26.06485672100007, 26.06485672100007, 37.529451550999966, 37.529451550999966, 33.95715213199992, 33.95715213199992, 29.804532527999754, 29.804532527999754, 27.974318249000135, 27.974318249000135, 35.61607719199992, 35.61607719199992, 25.899013336999815, 25.899013336999815, 29.804532527999754, 29.804532527999754, 35.449042599999984, 35.449042599999984, 33.62321743999996, 33.62321743999996, 27.891277485000046, 27.891277485000046, 29.804532527999754, 29.804532527999754, 24.072592573000065, 24.072592573000065, 35.53255989599984, 35.53255989599984, 35.28200800799982, 35.28200800799982, 33.373022768000055, 33.373022768000055, 33.53981921599984, 33.53981921599984, 35.28200800799982, 35.28200800799982, 35.28200800799982, 35.28200800799982, 25.899013336999815, 25.899013336999815, 33.373022768000055, 33.373022768000055, 33.289624543999935, 33.289624543999935, 39.02013465900018, 39.02013465900018, 33.289624543999935, 33.289624543999935, 35.198490711999966, 35.198490711999966, 35.198490711999966, 35.198490711999966, 29.388391307999882, 29.388391307999882, 35.11463113200011, 35.11463113200011, 44.666186903999915, 44.666186903999915, 44.666186903999915, 44.666186903999915, 29.471892207999872, 29.471892207999872, 25.566986726000096, 25.566986726000096, 29.388391307999882, 29.388391307999882, 35.11463113200011, 35.11463113200011, 42.67344622399992, 42.67344622399992, 27.22661104200006, 27.22661104200006, 33.122486299999764, 33.122486299999764, 29.13891106799997, 29.13891106799997, 33.122486299999764, 33.122486299999764, 29.30523122799991, 29.30523122799991, 33.122486299999764, 33.122486299999764, 25.566986726000096, 25.566986726000096, 29.30523122799991, 29.30523122799991, 28.972590907999802, 28.972590907999802], \"power_mean\": 32.52234323682427, \"energy_millijoules\": 4830.009261465433, \"energy_joules\": 4.830009261465433, \"coremark_score\": 1683.547032, \"coremarks_per_mhz\": 3.2475830092592592, \"ulpmark_cm_score\": 51.75973511987627}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1328.6674689150002, 1328.6674689150002, 1330.578122139, 1330.578122139], \"power_mean\": 1329.622795527, \"energy_millijoules\": 6648.113977635001, \"energy_joules\": 6.648113977635001}}, \"595200\": {\"active\": {\"elapsed_sec\": 129.354807867, \"elapsed_ns\": 129354807867, \"power_samples\": [19.754271303999758, 19.754271303999758, 34.446150479999915, 34.446150479999915, 36.52546943399989, 36.52546943399989, 36.35785343700013, 36.35785343700013, 26.81106689100011, 26.81106689100011, 36.35785343700013, 36.35785343700013, 38.43350161000012, 38.43350161000012, 26.81106689100011, 26.81106689100011, 34.446150479999915, 34.446150479999915, 43.992937025999936, 43.992937025999936, 34.36263318399983, 34.36263318399983, 38.18189129700022, 38.18189129700022, 32.45495871199978, 32.45495871199978, 38.09813561300007, 38.09813561300007, 32.45495871199978, 32.45495871199978, 32.371560487999886, 32.371560487999886, 36.27421682500017, 36.27421682500017, 34.446150479999915, 34.446150479999915, 24.820351654999968, 24.820351654999968, 34.36263318399983, 34.36263318399983, 32.371560487999886, 32.371560487999886, 42.08514348199992, 42.08514348199992, 32.45495871199978, 32.45495871199978, 32.5383569359999, 32.5383569359999, 32.45495871199978, 32.45495871199978, 26.72802612700002, 26.72802612700002, 34.279115888000206, 34.279115888000206, 36.1905802130002, 36.1905802130002, 38.18189129700022, 38.18189129700022, 38.09813561300007, 38.09813561300007, 38.01437992900014, 38.01437992900014, 38.01437992900014, 38.01437992900014, 43.740597594000064, 43.740597594000064, 38.01437992900014, 38.01437992900014, 38.01437992900014, 38.01437992900014, 34.279115888000206, 34.279115888000206, 34.1955985919999, 34.1955985919999, 34.02856399999996, 34.02856399999996, 36.1905802130002, 36.1905802130002, 36.10694360100001, 36.10694360100001, 41.833161265999934, 41.833161265999934, 38.01437992900014, 38.01437992900014, 32.28816226399999, 32.28816226399999, 32.03762579599993, 32.03762579599993, 41.58083481199992, 41.58083481199992, 43.57237130599992, 43.57237130599992, 41.58083481199992, 41.58083481199992, 574.0814795660001, 574.0814795660001, 26.312481976000072, 26.312481976000072, 28.14030846799983, 28.14030846799983, 33.94470441999988, 33.94470441999988, 35.855690991999836, 35.855690991999836, 35.939670377000084, 35.939670377000084, 35.855690991999836, 35.855690991999836, 35.855690991999836, 35.855690991999836, 32.03762579599993, 32.03762579599993, 37.67901393200009, 37.67901393200009, 33.527117939999926, 33.527117939999926, 41.41284666799993, 41.41284666799993, 31.870829347999916, 31.870829347999916, 35.43750793200002, 35.43750793200002, 31.62063467600001, 31.62063467600001, 35.688417768000136, 35.688417768000136, 33.44360064400007, 33.44360064400007], \"power_mean\": 43.396189701312494, \"energy_millijoules\": 5613.505780973162, \"energy_joules\": 5.613505780973162, \"coremark_score\": 1932.890057, \"coremarks_per_mhz\": 3.2474631334005375, \"ulpmark_cm_score\": 44.535448925227584}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1323.520204348, 1323.520204348, 1330.909979854, 1330.909979854], \"power_mean\": 1327.2150921010002, \"energy_millijoules\": 6636.075460505001, \"energy_joules\": 6.636075460505}}, \"672000\": {\"active\": {\"elapsed_sec\": 114.572208966, \"elapsed_ns\": 114572208966, \"power_samples\": [44.97383098, 44.97383098, 41.076870379999946, 41.076870379999946, 37.176479827999856, 37.176479827999856, 33.36008334799976, 33.36008334799976, 40.82454392599993, 40.82454392599993, 33.36008334799976, 33.36008334799976, 44.80536654799971, 44.80536654799971, 33.192706472000054, 33.192706472000054, 37.008625199000335, 37.008625199000335, 37.008625199000335, 37.008625199000335, 37.008625199000335, 37.008625199000335, 40.74054985399994, 40.74054985399994, 37.008625199000335, 37.008625199000335, 27.391526928000076, 27.391526928000076, 40.82454392599993, 40.82454392599993, 44.80536654799971, 44.80536654799971, 42.73055041400016, 42.73055041400016, 44.636556902000166, 44.636556902000166, 40.82454392599993, 40.82454392599993, 40.65655578199994, 40.65655578199994, 40.74054985399994, 40.74054985399994, 44.468092469999874, 44.468092469999874, 42.56232412600002, 42.56232412600002, 44.468092469999874, 44.468092469999874, 33.02567187999989, 33.02567187999989, 36.924869514999955, 36.924869514999955, 36.924869514999955, 36.924869514999955, 44.55232468600002, 44.55232468600002, 42.64643726999998, 42.64643726999998, 36.84111383100003, 36.84111383100003, 36.924869514999955, 36.924869514999955, 40.572561709999945, 40.572561709999945, 34.851708874999986, 34.851708874999986, 40.572561709999945, 40.572561709999945, 40.404573565999954, 40.404573565999954, 32.94215458399981, 32.94215458399981, 36.58984677900003, 36.58984677900003, 42.56232412600002, 42.56232412600002, 36.757358147000105, 36.757358147000105, 27.058886607999966, 27.058886607999966, 36.757358147000105, 36.757358147000105, 34.68443565100006, 34.68443565100006, 36.5057478340002, 36.5057478340002, 40.404573565999954, 40.404573565999954, 32.94215458399981, 32.94215458399981, 36.5057478340002, 36.5057478340002, 36.5057478340002, 36.5057478340002, 34.60045626600004, 34.60045626600004, 34.516819654000074, 34.516819654000074, 40.23624118399994, 40.23624118399994, 42.141413679999914, 42.141413679999914, 44.13081839200004, 44.13081839200004, 34.265909817999955, 34.265909817999955, 36.17072509800005, 36.17072509800005, 34.18227320599999, 34.18227320599999, 36.17072509800005, 36.17072509800005, 32.35719122799992, 32.35719122799992], \"power_mean\": 38.15586298626316, \"energy_millijoules\": 4371.601507340208, \"energy_joules\": 4.371601507340208, \"coremark_score\": 2182.26257, \"coremarks_per_mhz\": 3.247414538690476, \"ulpmark_cm_score\": 57.187280126112476}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1328.0058504720002, 1328.0058504720002, 1330.0792318830001, 1330.0792318830001], \"power_mean\": 1329.0425411775002, \"energy_millijoules\": 6645.212705887501, \"energy_joules\": 6.645212705887501}}, \"748800\": {\"active\": {\"elapsed_sec\": 102.823944336, \"elapsed_ns\": 102823944336, \"power_samples\": [25.149570949000008, 25.149570949000008, 39.90026489599995, 39.90026489599995, 36.08696941400012, 36.08696941400012, 41.72084796000013, 41.72084796000013, 39.816270824000185, 39.816270824000185, 43.70965731199976, 43.70965731199976, 39.90026489599995, 39.90026489599995, 43.70965731199976, 43.70965731199976, 39.816270824000185, 39.816270824000185, 43.54084766600022, 43.54084766600022, 35.75160341700007, 35.75160341700007, 45.27660266599992, 45.27660266599992, 43.54084766600022, 43.54084766600022, 32.10629705600013, 32.10629705600013, 34.014657209000234, 34.014657209000234, 39.563944369999945, 39.563944369999945, 35.75160341700007, 35.75160341700007, 33.68011076100015, 33.68011076100015, 45.27660266599992, 45.27660266599992, 43.28815101799978, 43.28815101799978, 39.39595622599995, 39.39595622599995, 43.28815101799978, 43.28815101799978, 35.66784773299992, 35.66784773299992, 45.19225137799981, 45.19225137799981, 35.66784773299992, 35.66784773299992, 35.75160341700007, 35.75160341700007, 35.66784773299992, 35.66784773299992, 43.372383233999926, 43.372383233999926, 31.855745167999885, 31.855745167999885, 39.47995029799995, 39.47995029799995, 48.91976426700012, 48.91976426700012, 39.31196215399996, 39.31196215399996, 41.21582436999984, 41.21582436999984, 39.31196215399996, 39.31196215399996, 35.50033636500007, 35.50033636500007, 35.50033636500007, 35.50033636500007, 42.950876939999944, 42.950876939999944, 39.14362977199994, 39.14362977199994, 43.11968658599994, 43.11968658599994, 35.33248173600009, 35.33248173600009, 42.950876939999944, 42.950876939999944, 33.4288581520002, 33.4288581520002, 31.521333700000014, 31.521333700000014, 41.047253356000056, 41.047253356000056, 39.14362977199994, 39.14362977199994, 40.9631402120001, 40.9631402120001, 39.059635699999944, 39.059635699999944, 40.9631402120001, 40.9631402120001, 31.437816403999705, 31.437816403999705, 42.950876939999944, 42.950876939999944, 52.391968531999964, 52.391968531999964], \"power_mean\": 39.276588565999994, \"energy_millijoules\": 4038.5737564183573, \"energy_joules\": 4.038573756418358, \"coremark_score\": 2431.622768, \"coremarks_per_mhz\": 3.247359465811966, \"ulpmark_cm_score\": 61.903041786146446}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1330.5755944399998, 1330.5755944399998, 1330.65875452, 1330.65875452], \"power_mean\": 1330.61717448, \"energy_millijoules\": 6653.085872399999, \"energy_joules\": 6.653085872399999}}, \"825600\": {\"active\": {\"elapsed_sec\": 93.258048246, \"elapsed_ns\": 93258048246, \"power_samples\": [38.72365941199996, 38.72365941199996, 40.62668763600004, 40.62668763600004, 42.5297158599999, 42.5297158599999, 42.5297158599999, 42.5297158599999, 44.601446659999965, 44.601446659999965, 581.7786895490001, 581.7786895490001, 48.2427001799997, 48.2427001799997, 48.2427001799997, 48.2427001799997, 44.26369580599999, 44.26369580599999, 44.43274408399998, 44.43274408399998, 40.62668763600004, 40.62668763600004, 33.010675092000156, 33.010675092000156, 48.0731741489999, 48.0731741489999, 42.44548364399998, 42.44548364399998, 42.44548364399998, 42.44548364399998, 44.43274408399998, 44.43274408399998, 42.44548364399998, 42.44548364399998, 34.745848687000034, 34.745848687000034, 38.555327029999944, 38.555327029999944, 42.10820956600014, 42.10820956600014, 40.37400347800008, 40.37400347800008, 51.882652492000034, 51.882652492000034, 40.37400347800008, 40.37400347800008, 44.34839279599987, 44.34839279599987, 48.15811050399998, 48.15811050399998, 44.43274408399998, 44.43274408399998, 48.15811050399998, 48.15811050399998, 44.26369580599999, 44.26369580599999, 44.34839279599987, 44.34839279599987, 42.27667399799998, 42.27667399799998, 48.0731741489999, 48.0731741489999, 38.303344814000184, 38.303344814000184, 34.66209300300011, 34.66209300300011, 49.721837497000024, 49.721837497000024, 49.721837497000024, 49.721837497000024, 48.0731741489999, 48.0731741489999, 47.73481544499987, 47.73481544499987, 42.023977349999996, 42.023977349999996, 34.32707026700018, 34.32707026700018, 47.65022576899969, 47.65022576899969, 43.841939365999906, 43.841939365999906, 40.03755090199979, 40.03755090199979, 39.953437758000064, 39.953437758000064, 39.953437758000064, 39.953437758000064, 41.85551291799993, 41.85551291799993, 34.32707026700018, 34.32707026700018, 49.552420000999746], \"power_mean\": 54.5917066935161, \"energy_millijoules\": 5091.1160166554055, \"energy_joules\": 5.0911160166554055, \"coremark_score\": 2681.080154, \"coremarks_per_mhz\": 3.2474323570736434, \"ulpmark_cm_score\": 49.10514692301921}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1323.9450047349999, 1323.9450047349999, 1323.9450047349999, 1323.9450047349999], \"power_mean\": 1323.9450047349999, \"energy_millijoules\": 6619.725023675, \"energy_joules\": 6.619725023675}}, \"883200\": {\"active\": {\"elapsed_sec\": 87.172948612, \"elapsed_ns\": 87172948612, \"power_samples\": [51.373684108000134, 51.373684108000134, 53.105516852000164, 53.105516852000164, 43.41983722400005, 43.41983722400005, 47.396110061999934, 47.396110061999934, 51.20368032400006, 51.20368032400006, 51.20368032400006, 51.20368032400006, 50.949196132, 50.949196132, 50.779540003999955, 50.779540003999955, 47.142341033999855, 47.142341033999855, 48.8744028499998, 48.8744028499998, 51.03402419600002, 51.03402419600002, 47.142341033999855, 47.142341033999855, 47.142341033999855, 47.142341033999855, 41.43400662399995, 41.43400662399995, 50.779540003999955, 50.779540003999955, 46.88822532699987, 46.88822532699987, 48.78934693499991, 48.78934693499991, 52.59548589199994, 52.59548589199994, 52.59548589199994, 52.59548589199994, 52.59548589199994, 52.59548589199994, 48.78934693499991, 48.78934693499991, 48.70463818699977, 48.70463818699977, 52.59548589199994, 52.59548589199994, 56.483263507999936, 56.483263507999936, 50.6943642839999, 50.6943642839999, 46.88822532699987, 46.88822532699987, 587.089100612, 587.089100612, 48.70463818699977, 48.70463818699977, 46.88822532699987, 46.88822532699987, 42.91338379400008, 42.91338379400008, 46.54986662299984, 46.54986662299984, 42.91338379400008, 42.91338379400008, 48.61992943899986, 48.61992943899986, 56.22735854800021, 56.22735854800021, 50.52470815600009, 50.52470815600009, 39.11161686600008, 39.11161686600008, 48.61992943899986, 48.61992943899986, 42.91338379400008, 42.91338379400008, 50.355052028000046, 50.355052028000046, 46.71904597499997, 46.71904597499997, 42.744681218000096, 42.744681218000096, 50.355052028000046, 50.355052028000046, 50.270223964000024, 50.270223964000024], \"power_mean\": 61.21207385276741, \"energy_millijoules\": 5336.036968401242, \"energy_joules\": 5.336036968401242, \"coremark_score\": 2868.22239, \"coremarks_per_mhz\": 3.247534408967391, \"ulpmark_cm_score\": 46.85124962222737}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1332.466754892, 1332.466754892, 1334.5362218599998, 1334.5362218599998], \"power_mean\": 1333.501488376, \"energy_millijoules\": 6667.5074418799995, \"energy_joules\": 6.66750744188}}, \"960000\": {\"active\": {\"elapsed_sec\": 80.279302626, \"elapsed_ns\": 80279302626, \"power_samples\": [39.27984315399999, 39.27984315399999, 55.97180270800004, 55.97180270800004, 50.1853959, 50.1853959, 50.10056783599998, 50.10056783599998, 55.88661742799991, 55.88661742799991, 55.54552718800005, 55.54552718800005, 55.801432147999776, 55.801432147999776, 51.74566638800002, 51.74566638800002, 51.74566638800002, 51.74566638800002, 47.94191228799991, 47.94191228799991, 55.460341908000146, 55.460341908000146, 51.74566638800002, 51.74566638800002, 55.460341908000146, 55.460341908000146, 47.85720353999977, 47.85720353999977, 50.10056783599998, 50.10056783599998, 59.34928128799993, 59.34928128799993, 55.54552718800005, 55.54552718800005, 55.460341908000146, 55.460341908000146, 49.845735988000115, 49.845735988000115, 51.74566638800002, 51.74566638800002, 57.364046291999784, 57.364046291999784, 57.364046291999784, 57.364046291999784, 49.67607986000007, 49.67607986000007, 45.70362318399975, 45.70362318399975, 55.204786067999976, 55.204786067999976, 49.50642373200003, 49.50642373200003, 47.60307729599981, 47.60307729599981, 47.60307729599981, 47.60307729599981, 55.37515662800001, 55.37515662800001, 55.204786067999976, 55.204786067999976, 47.85720353999977, 47.85720353999977, 47.77249479199986, 47.77249479199986, 49.67607986000007, 49.67607986000007, 58.92181285099991, 58.92181285099991, 49.421248012000206, 49.421248012000206, 57.022478298999886, 57.022478298999886, 41.73177435799994, 41.73177435799994, 55.03406638799993, 55.03406638799993, 55.03406638799993, 55.03406638799993, 51.235635427999796, 51.235635427999796], \"power_mean\": 52.027176709949956, \"energy_millijoules\": 4176.705463874452, \"energy_joules\": 4.176705463874452, \"coremark_score\": 3114.488601, \"coremarks_per_mhz\": 3.244258959375, \"ulpmark_cm_score\": 59.85578876995832}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1327.8299485199998, 1327.8299485199998, 1331.548690836, 1331.548690836], \"power_mean\": 1329.689319678, \"energy_millijoules\": 6648.44659839, \"energy_joules\": 6.64844659839}}, \"1036800\": {\"active\": {\"elapsed_sec\": 74.260649972, \"elapsed_ns\": 74260649972, \"power_samples\": [56.93717370299987, 56.93717370299987, 56.85186910699986, 56.85186910699986, 56.681259915000055, 56.681259915000055, 66.35124273800011, 66.35124273800011, 54.77851054800021, 54.77851054800021, 70.15332714499982, 70.15332714499982, 599.931064543, 599.931064543, 60.3934337029998, 60.3934337029998, 64.19480294599998, 64.19480294599998, 64.02288912799986, 64.02288912799986, 66.00764193799978, 66.00764193799978, 60.22199763799972, 60.22199763799972, 64.02288912799986, 64.02288912799986, 60.30789096299986, 60.30789096299986, 60.22199763799972, 60.22199763799972, 65.92138968799986, 65.92138968799986, 64.02288912799986, 64.02288912799986, 56.5106507229998, 56.5106507229998, 66.00764193799978, 66.00764193799978, 56.42499651799994, 56.42499651799994, 65.57778888799976, 65.57778888799976, 65.57778888799976, 65.57778888799976, 63.76554574399984, 63.76554574399984, 58.06722607399979, 58.06722607399979, 57.981802405999815, 57.981802405999815, 57.89637873799984, 57.89637873799984, 59.79428393799981, 59.79428393799981, 65.66368908800018, 65.66368908800018, 59.96536941799968, 59.96536941799968, 63.76554574399984, 63.76554574399984, 69.37772682599984, 69.37772682599984, 57.89637873799984, 57.89637873799984, 59.879826677999745, 59.879826677999745, 57.639757636999775, 57.639757636999775, 59.622847872999955, 59.622847872999955, 63.42206966999993, 63.42206966999993, 63.42206966999993, 63.42206966999993], \"power_mean\": 76.1968014809188, \"energy_millijoules\": 5658.424003760481, \"energy_joules\": 5.658424003760481, \"coremark_score\": 3366.958021, \"coremarks_per_mhz\": 3.2474517949459876, \"ulpmark_cm_score\": 44.181913521124386}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1342.0376226560002, 1342.0376226560002, 1334.5181209000002, 1334.5181209000002], \"power_mean\": 1338.2778717780002, \"energy_millijoules\": 6691.389358890001, \"energy_joules\": 6.691389358890001}}, \"1094400\": {\"active\": {\"elapsed_sec\": 70.352168255, \"elapsed_ns\": 70352168255, \"power_samples\": [59.622847872999955, 59.622847872999955, 69.03281944699984, 69.03281944699984, 65.14793583799997, 65.14793583799997, 72.65516097499994, 72.65516097499994, 59.366219652999916, 59.366219652999916, 67.0453642619998, 67.0453642619998, 63.164726285999905, 63.164726285999905, 67.0453642619998, 67.0453642619998, 65.14793583799997, 65.14793583799997, 67.13138353399995, 67.13138353399995, 65.062035638, 65.062035638, 63.25050741399991, 63.25050741399991, 63.25050741399991, 63.25050741399991, 65.062035638, 65.062035638, 68.9466808589998, 68.9466808589998, 62.99316402999989, 62.99316402999989, 68.86054227099999, 68.86054227099999, 57.29806296499987, 57.29806296499987, 57.21263929700012, 57.21263929700012, 68.60212650699987, 68.60212650699987, 64.80433503800009, 64.80433503800009, 64.71808278799995, 64.71808278799995, 59.10959143299988, 59.10959143299988, 64.80433503800009, 64.80433503800009, 59.10959143299988, 59.10959143299988, 57.21263929700012, 57.21263929700012, 64.80433503800009, 64.80433503800009, 62.90738290199988, 62.90738290199988, 66.787306446, 66.787306446, 64.89023523799983, 64.89023523799983, 59.10959143299988, 59.10959143299988, 64.71808278799995, 64.71808278799995, 64.46038218799981, 64.46038218799981, 62.90738290199988, 62.90738290199988, 66.70128717400007, 66.70128717400007], \"power_mean\": 64.08407488962851, \"energy_millijoules\": 4508.453619101165, \"energy_joules\": 4.508453619101164, \"coremark_score\": 3553.96338, \"coremarks_per_mhz\": 3.2474080592105263, \"ulpmark_cm_score\": 55.45138557948427}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1339.3815204419998, 1339.3815204419998, 1341.19614649, 1341.19614649], \"power_mean\": 1340.288833466, \"energy_millijoules\": 6701.44416733, \"energy_joules\": 6.70144416733}}, \"1171200\": {\"active\": {\"elapsed_sec\": 65.737125913, \"elapsed_ns\": 65737125913, \"power_samples\": [64.2885817880001, 64.2885817880001, 71.87741638400007, 71.87741638400007, 66.18481900400002, 66.18481900400002, 71.9637931159998, 71.9637931159998, 64.2885817880001, 64.2885817880001, 75.67377654799998, 75.67377654799998, 68.08494195200001, 68.08494195200001, 64.20268158800013, 64.20268158800013, 71.79103965199988, 71.79103965199988, 64.03052913799979, 64.03052913799979, 71.79103965199988, 71.79103965199988, 64.20268158800013, 64.20268158800013, 67.740034573, 67.740034573, 65.92640864999998, 65.92640864999998, 71.53155545300001, 71.53155545300001, 67.740034573, 67.740034573, 66.09879973200009, 66.09879973200009, 71.53155545300001, 71.53155545300001, 65.84038937800028, 65.84038937800028, 73.43120064800019, 73.43120064800019, 75.32696108799996, 75.32696108799996, 73.43120064800019, 73.43120064800019, 65.92640864999998, 65.92640864999998, 81.01812716300014, 81.01812716300014, 67.56775739699992, 67.56775739699992, 75.32696108799996, 75.32696108799996, 75.15373084800012, 75.15373084800012, 71.44517872099982, 71.44517872099982, 71.44517872099982, 71.44517872099982, 73.34470459999989, 73.34470459999989, 75.24034596799993, 75.24034596799993, 67.56775739699992, 67.56775739699992, 75.32696108799996], \"power_mean\": 70.11315856895385, \"energy_millijoules\": 4609.037533005454, \"energy_joules\": 4.609037533005454, \"coremark_score\": 3803.438308, \"coremarks_per_mhz\": 3.247471232923497, \"ulpmark_cm_score\": 54.241259310591985}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1879.525464672, 1879.525464672, 1338.372903102, 1338.372903102], \"power_mean\": 1608.949183887, \"energy_millijoules\": 8044.745919434999, \"energy_joules\": 8.044745919435}}, \"1248000\": {\"active\": {\"elapsed_sec\": 61.708960706, \"elapsed_ns\": 61708960706, \"power_samples\": [65.49631228999988, 65.49631228999988, 73.08521645600013, 73.08521645600013, 73.08521645600013, 73.08521645600013, 76.61522671600005, 76.61522671600005, 71.09931778999999, 71.09931778999999, 73.08521645600013, 73.08521645600013, 80.67023684300011, 80.67023684300011, 82.47807240999987, 82.47807240999987, 84.37323700199977, 84.37323700199977, 80.58290781799997, 80.58290781799997, 70.92656432599983, 70.92656432599983, 74.54707002800001, 74.54707002800001, 82.12970580199999, 82.12970580199999, 70.66743412999995, 70.66743412999995, 82.12970580199999, 82.12970580199999, 80.40896265799984, 80.40896265799984, 76.61522671600005, 76.61522671600005, 76.44175833200006, 76.44175833200006, 70.66743412999995, 70.66743412999995, 70.66743412999995, 70.66743412999995, 74.46045490799997, 74.46045490799997, 76.35502414000007, 76.35502414000007, 74.37383978799994, 74.37383978799994, 74.37383978799994, 74.37383978799994, 72.47938962800026, 72.47938962800026, 80.06107233800003, 80.06107233800003, 72.56588567599988, 72.56588567599988, 76.18155575600008, 76.18155575600008, 79.97409975799997, 79.97409975799997, 70.49468066600002, 70.49468066600002, 70.49468066600002], \"power_mean\": 75.48653898590163, \"energy_millijoules\": 4658.195868112941, \"energy_joules\": 4.658195868112941, \"coremark_score\": 4051.798188, \"coremarks_per_mhz\": 3.2466331634615386, \"ulpmark_cm_score\": 53.66884671195166}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1343.389675152, 1343.389675152, 1341.493318864, 1341.493318864], \"power_mean\": 1342.4414970080002, \"energy_millijoules\": 6712.20748504, \"energy_joules\": 6.71220748504}}, \"1324800\": {\"active\": {\"elapsed_sec\": 58.121067218, \"elapsed_ns\": 58121067218, \"power_samples\": [85.65709302200003, 85.65709302200003, 91.34396811200008, 91.34396811200008, 89.18657358600012, 89.18657358600012, 85.30741592899994, 85.30741592899994, 85.30741592899994, 85.30741592899994, 85.3947457249999, 85.3947457249999, 85.48207552099984, 85.48207552099984, 89.0990054020001, 89.0990054020001, 83.41356161699991, 83.41356161699991, 75.83426352000015, 75.83426352000015, 89.18657358600012, 89.18657358600012, 91.08054696999989, 91.08054696999989, 83.5007723409999, 83.5007723409999, 79.62585299299985, 79.62585299299985, 83.15192944499995, 83.15192944499995, 83.32635089299993, 83.32635089299993, 83.15192944499995, 83.15192944499995, 83.15192944499995, 83.15192944499995, 84.87040903999991, 84.87040903999991, 81.25843234900003, 81.25843234900003, 79.19063364800013, 79.19063364800013, 79.19063364800013, 79.19063364800013, 81.25843234900003, 81.25843234900003, 85.0454265410001, 85.0454265410001, 88.66080559600027, 88.66080559600027, 85.0454265410001, 85.0454265410001, 85.0454265410001, 85.0454265410001, 85.0454265410001, 85.0454265410001, 85.0454265410001, 85.0454265410001], \"power_mean\": 84.5468442350345, \"energy_millijoules\": 4913.952816854216, \"energy_joules\": 4.9139528168542155, \"coremark_score\": 4301.963416, \"coremarks_per_mhz\": 3.2472549939613526, \"ulpmark_cm_score\": 50.875539370775535}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1348.489321589, 1348.489321589, 1352.369197584, 1352.369197584], \"power_mean\": 1350.4292595865, \"energy_millijoules\": 6752.1462979325, \"energy_joules\": 6.7521462979325}}, \"1401600\": {\"active\": {\"elapsed_sec\": 54.933204771, \"elapsed_ns\": 54933204771, \"power_samples\": [103.81463256400002, 103.81463256400002, 90.20331503600005, 90.20331503600005, 84.43376005999994, 84.43376005999994, 90.11562778000007, 90.11562778000007, 92.01216929199995, 92.01216929199995, 101.47936321999987, 101.47936321999987, 97.86648618000004, 97.86648618000004, 92.09997586400004, 92.09997586400004, 97.69015860399986, 97.69015860399986, 90.20331503600005, 90.20331503600005, 92.18778243600013, 92.18778243600013, 88.22296467600017, 88.22296467600017, 90.11562778000007, 90.11562778000007, 91.74838971299982, 91.74838971299982, 99.498055196, 99.498055196, 93.90483239600007, 93.90483239600007, 93.90483239600007, 93.90483239600007, 99.58670011599975, 99.58670011599975, 99.32148898799983, 99.32148898799983, 101.39059873999986, 101.39059873999986, 97.60163348900005, 97.60163348900005, 93.8165464010001, 93.8165464010001, 97.60163348900005, 97.60163348900005, 93.64069511300022, 93.64069511300022, 93.46484382499989, 93.46484382499989, 91.924002857, 91.924002857, 103.10609978799994, 103.10609978799994], \"power_mean\": 94.85020485314814, \"energy_millijoules\": 5210.425725769285, \"energy_joules\": 5.210425725769285, \"coremark_score\": 4551.578487, \"coremarks_per_mhz\": 3.247416157962329, \"ulpmark_cm_score\": 47.980724255135435}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1347.7265956899998, 1347.7265956899998, 1351.434430944, 1351.434430944], \"power_mean\": 1349.580513317, \"energy_millijoules\": 6747.9025665849995, \"energy_joules\": 6.747902566584999}}, \"1478400\": {\"active\": {\"elapsed_sec\": 52.176326803, \"elapsed_ns\": 52176326803, \"power_samples\": [54.73395253700005, 54.73395253700005, 101.0369900359999, 101.0369900359999, 106.62830935500006, 106.62830935500006, 108.52025753900011, 108.52025753900011, 645.7702465789996, 645.7702465789996, 106.36166667799989, 106.36166667799989, 108.253257158, 108.253257158, 106.62830935500006, 106.62830935500006, 102.48608825999986, 102.48608825999986, 102.48608825999986, 102.48608825999986, 110.14484763799987, 110.14484763799987, 106.00662813400004, 106.00662813400004, 98.61486233999995, 98.61486233999995, 102.48608825999986, 102.48608825999986, 100.59461685199972, 100.59461685199972, 106.27290704199982, 106.27290704199982, 111.95119723199991, 111.95119723199991, 102.39756701200008, 102.39756701200008, 102.22052451599984, 102.22052451599984, 107.89774232599984, 107.89774232599984, 107.89774232599984, 107.89774232599984, 106.00662813400004, 106.00662813400004, 108.07549974199992, 108.07549974199992, 107.89774232599984, 107.89774232599984, 102.22052451599984, 102.22052451599984, 108.07549974199992, 108.07549974199992], \"power_mean\": 124.2948378421153, \"energy_millijoules\": 6485.248079176099, \"energy_joules\": 6.485248079176099, \"coremark_score\": 4792.117924, \"coremarks_per_mhz\": 3.241421755952381, \"ulpmark_cm_score\": 38.54902649024964}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1358.417321349, 1358.417321349, 1366.16699025, 1366.16699025], \"power_mean\": 1362.2921557995, \"energy_millijoules\": 6811.4607789975, \"energy_joules\": 6.8114607789975}}, \"1555200\": {\"active\": {\"elapsed_sec\": 49.507334825, \"elapsed_ns\": 49507334825, \"power_samples\": [55.77132106299996, 55.77132106299996, 115.01893191799968, 115.01893191799968, 111.41612942200004, 111.41612942200004, 109.52149843300003, 109.52149843300003, 111.41612942200004, 111.41612942200004, 111.23789522999982, 111.23789522999982, 111.14877813399994, 111.14877813399994, 101.60051298799976, 101.60051298799976, 109.25450509300003, 109.25450509300003, 107.45298452899988, 107.45298452899988, 105.38494691300002, 105.38494691300002, 109.25450509300003, 109.25450509300003, 107.27522711300003, 107.27522711300003, 107.36410582099984, 107.36410582099984, 114.92957667799988, 114.92957667799988, 109.16550731300003, 109.16550731300003, 114.92957667799988, 114.92957667799988, 114.57178950799994, 114.57178950799994, 107.00822673199991, 107.00822673199991, 114.57178950799994, 114.57178950799994, 110.70282741999995, 110.70282741999995, 110.79194451599983, 110.79194451599983, 108.89814922799997, 108.89814922799997, 109.16550731300003, 109.16550731300003, 110.79194451599983], \"power_mean\": 107.88768727853055, \"energy_millijoules\": 5341.231857593105, \"energy_joules\": 5.341231857593105, \"coremark_score\": 5050.403022, \"coremarks_per_mhz\": 3.247429926697531, \"ulpmark_cm_score\": 46.80568203467886}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1369.0962494009998, 1369.0962494009998, 1367.199827694, 1367.199827694], \"power_mean\": 1368.1480385475, \"energy_millijoules\": 6840.7401927374995, \"energy_joules\": 6.840740192737499}}, \"1670400\": {\"active\": {\"elapsed_sec\": 46.093276232, \"elapsed_ns\": 46093276232, \"power_samples\": [73.75157650799997, 73.75157650799997, 136.63048299799993, 136.63048299799993, 138.51957150199996, 138.51957150199996, 142.29774851000002, 142.29774851000002, 147.87738534899995, 147.87738534899995, 138.24685904600005, 138.24685904600005, 128.79546190399992, 128.79546190399992, 126.81654138399995, 126.81654138399995, 136.26734267799998, 136.26734267799998, 141.93317932600007, 141.93317932600007, 138.15595489399993, 138.15595489399993, 147.41988656900025, 147.41988656900025, 136.26734267799998, 136.26734267799998, 136.08577251799989, 136.08577251799989, 132.48624813899983, 132.48624813899983, 132.48624813899983, 132.48624813899983, 145.714273865, 145.714273865, 147.23651205800024, 147.23651205800024, 137.97414658999992, 137.97414658999992, 141.568236608, 141.568236608, 136.08577251799989, 136.08577251799989, 141.568236608, 141.568236608, 141.75089473399998, 141.75089473399998], \"power_mean\": 135.91024674447823, \"energy_millijoules\": 6264.548545952513, \"energy_joules\": 6.264548545952514, \"coremark_score\": 5424.640889, \"coremarks_per_mhz\": 3.2475101107519158, \"ulpmark_cm_score\": 39.90710554258909}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1375.5439502000002, 1375.5439502000002, 1381.22081055, 1381.22081055], \"power_mean\": 1378.3823803750001, \"energy_millijoules\": 6891.911901875001, \"energy_joules\": 6.891911901875001}}, \"1747200\": {\"active\": {\"elapsed_sec\": 44.069179463, \"elapsed_ns\": 44069179463, \"power_samples\": [132.93898159900027, 132.93898159900027, 147.14501230199994, 147.14501230199994, 150.741437636, 150.741437636, 145.2569959340001, 145.2569959340001, 144.89147319800009, 144.89147319800009, 141.29480971999988, 141.29480971999988, 145.0742345660001, 145.0742345660001, 141.1125251279998, 141.1125251279998, 144.89147319800009, 144.89147319800009, 143.00393311800008, 143.00393311800008, 146.77901327799987, 146.77901327799987, 146.77901327799987, 146.77901327799987, 150.55796134799994, 150.55796134799994, 150.55796134799994, 150.55796134799994, 144.89147319800009, 144.89147319800009, 141.1125251279998, 141.1125251279998, 144.70833731900007, 144.70833731900007, 152.2614105319999, 152.2614105319999, 144.70833731900007, 144.70833731900007, 146.59563876699985, 146.59563876699985, 144.79971800299995, 144.79971800299995, 150.46584722800003], \"power_mean\": 145.3644274200465, \"energy_millijoules\": 6406.0910395102665, \"energy_joules\": 6.406091039510266, \"coremark_score\": 5673.823249, \"coremarks_per_mhz\": 3.2473805225503662, \"ulpmark_cm_score\": 39.02535859357878}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1380.785591205, 1380.785591205, 1375.0239045, 1375.0239045], \"power_mean\": 1377.9047478525, \"energy_millijoules\": 6889.5237392624995, \"energy_joules\": 6.8895237392625}}, \"1824000\": {\"active\": {\"elapsed_sec\": 42.211939984, \"elapsed_ns\": 42211939984, \"power_samples\": [156.0398808489997, 156.0398808489997, 151.9858388839998, 151.9858388839998, 161.24338729399983, 161.24338729399983, 163.13009338200004, 163.13009338200004, 155.30273857599968, 155.30273857599968, 151.7098907720001, 151.7098907720001, 160.96564919599996, 160.96564919599996, 160.96564919599996, 160.96564919599996, 159.26010283999994, 159.26010283999994, 160.96564919599996, 160.96564919599996, 151.7098907720001, 151.7098907720001, 155.30273857599968, 155.30273857599968, 162.85199757999976, 162.85199757999976, 170.40125658399984, 170.40125658399984, 164.6456547560001, 164.6456547560001, 155.21064297199973, 155.21064297199973, 164.6456547560001, 164.6456547560001, 162.75942544400004, 162.75942544400004, 158.9831015960001, 158.9831015960001, 160.780743068, 160.780743068, 155.118547368, 155.118547368], \"power_mean\": 159.23707303128563, \"energy_millijoules\": 6721.705770024453, \"energy_joules\": 6.721705770024453, \"coremark_score\": 5923.468783, \"coremarks_per_mhz\": 3.247515780153509, \"ulpmark_cm_score\": 37.192940088939736}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1389.452988792, 1389.452988792, 1395.036555777, 1395.036555777], \"power_mean\": 1392.2447722845, \"energy_millijoules\": 6961.2238614225, \"energy_joules\": 6.9612238614225}}, \"1900800\": {\"active\": {\"elapsed_sec\": 40.54967139, \"elapsed_ns\": 40549671390, \"power_samples\": [183.1436281429999, 183.1436281429999, 186.63277080299986, 186.63277080299986, 190.50178415000005, 190.50178415000005, 186.63277080299986, 186.63277080299986, 186.72689160699997, 186.72689160699997, 182.67421484299985, 182.67421484299985, 186.44452919499986, 186.44452919499986, 188.33354939800006, 188.33354939800006, 186.25590184599992, 186.25590184599992, 180.60114621399975, 180.60114621399975, 186.16178104200003, 186.16178104200003, 176.733921388, 176.733921388, 188.33354939800006, 188.33354939800006, 185.97353943400003, 185.97353943400003, 182.204416778, 182.204416778, 185.97353943400003, 185.97353943400003, 185.97353943400003, 185.97353943400003, 185.97353943400003, 185.97353943400003, 178.43143231599993, 178.43143231599993, 182.1105341179998, 182.1105341179998], \"power_mean\": 184.79084898889994, \"energy_millijoules\": 7493.208202379006, \"energy_joules\": 7.493208202379006, \"coremark_score\": 6166.140489, \"coremarks_per_mhz\": 3.243971216856061, \"ulpmark_cm_score\": 33.36354646073065}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1394.0690133419998, 1394.0690133419998, 1401.712873344, 1401.712873344], \"power_mean\": 1397.890943343, \"energy_millijoules\": 6989.454716714999, \"energy_joules\": 6.989454716715}}}}, \"4\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 159.384740825, \"elapsed_ns\": 159384740825, \"power_samples\": [51.31490523499974, 51.31490523499974, 57.24231283400013, 57.24231283400013, 56.98496945000011, 56.98496945000011, 57.15653170600012, 57.15653170600012, 56.98496945000011, 56.98496945000011, 49.426173946999825, 49.426173946999825, 58.873700738000025, 58.873700738000025, 53.203636522999886, 53.203636522999886, 51.22948156699999, 51.22948156699999, 53.203636522999886, 53.203636522999886, 47.533572307999975, 47.533572307999975, 51.48575257099992, 51.48575257099992, 49.596783138999854, 49.596783138999854, 56.98496945000011, 56.98496945000011, 60.76243202600017, 60.76243202600017, 53.11809378299995, 53.11809378299995, 58.873700738000025, 58.873700738000025, 51.22948156699999, 51.22948156699999, 47.44838702800007, 47.44838702800007, 49.34086935100004, 49.34086935100004, 56.8991883220001, 56.8991883220001, 49.34086935100004, 49.34086935100004, 51.22948156699999, 51.22948156699999, 49.426173946999825, 49.426173946999825, 47.27801646800003, 47.27801646800003, 43.75610973200014, 43.75610973200014, 49.34086935100004, 49.34086935100004, 52.947008303000075, 52.947008303000075, 49.34086935100004, 49.34086935100004, 51.058634230999814, 51.058634230999814, 51.058634230999814, 51.058634230999814, 51.058634230999814, 51.058634230999814, 53.11809378299995, 53.11809378299995, 53.203636522999886, 53.203636522999886, 53.11809378299995, 53.11809378299995, 53.203636522999886, 53.203636522999886, 58.787800538000056, 58.787800538000056, 51.22948156699999, 51.22948156699999, 51.22948156699999, 51.22948156699999, 48.99930135800014, 48.99930135800014, 56.55571224799996, 56.55571224799996, 52.775572237999995, 52.775572237999995, 53.11809378299995, 53.11809378299995, 51.058634230999814, 51.058634230999814, 52.947008303000075, 52.947008303000075, 60.50437421000015, 60.50437421000015, 52.947008303000075, 52.947008303000075, 56.727626066000084, 56.727626066000084, 48.9139967619999, 48.9139967619999, 48.99930135800014, 48.99930135800014, 60.331983128000275, 60.331983128000275, 48.99930135800014, 48.99930135800014, 48.99930135800014, 48.99930135800014, 43.24607877199992, 43.24607877199992, 58.443847688000005, 58.443847688000005, 48.9139967619999, 48.9139967619999, 50.88743679799995, 50.88743679799995, 587.5961108380002, 587.5961108380002, 50.88743679799995, 50.88743679799995, 50.88743679799995, 50.88743679799995, 58.27204728800007, 58.27204728800007, 43.161131635999936, 43.161131635999936, 50.716589461999774, 50.716589461999774, 48.9139967619999, 48.9139967619999, 60.24596385600012, 60.24596385600012, 56.469931119999956, 56.469931119999956, 60.24596385600012, 60.24596385600012, 60.24596385600012, 60.24596385600012, 43.24607877199992, 43.24607877199992, 50.80201312999998, 50.80201312999998, 58.27204728800007, 58.27204728800007, 56.38414999199995, 56.38414999199995, 46.85174094800004, 46.85174094800004, 50.631165794000026, 50.631165794000026, 43.07618450000018, 43.07618450000018, 58.27204728800007, 58.27204728800007, 48.57277837799984, 48.57277837799984, 48.487124172999984, 48.487124172999984, 50.631165794000026, 50.631165794000026], \"power_mean\": 59.175401472835446, \"energy_millijoules\": 9431.656026963201, \"energy_joules\": 9.431656026963202, \"coremark_score\": 1568.883394, \"coremarks_per_mhz\": 5.229611313333333, \"ulpmark_cm_score\": 26.506479804320733}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1356.887005335, 1356.887005335, 1351.55768224, 1351.55768224], \"power_mean\": 1354.2223437875, \"energy_millijoules\": 6771.1117189375, \"energy_joules\": 6.7711117189375}}, \"345600\": {\"active\": {\"elapsed_sec\": 138.370175207, \"elapsed_ns\": 138370175207, \"power_samples\": [50.46031845799985, 50.46031845799985, 42.90629022799999, 42.90629022799999, 52.51894401799996, 52.51894401799996, 52.26196521299994, 52.26196521299994, 46.59583598799986, 46.59583598799986, 46.59583598799986, 46.59583598799986, 46.59583598799986, 46.59583598799986, 48.57277837799984, 48.57277837799984, 48.57277837799984, 48.57277837799984, 46.681370388000005, 46.681370388000005, 38.95757749499967, 38.95757749499967, 50.46031845799985, 50.46031845799985, 42.90629022799999, 42.90629022799999, 52.347858537999855, 52.347858537999855, 52.347858537999855, 52.347858537999855, 46.51065070799973, 46.51065070799973, 50.289121024999986, 50.289121024999986, 59.64347641400013, 59.64347641400013, 46.51065070799973, 46.51065070799973, 50.20369735700001, 50.20369735700001, 50.03285002099983, 50.03285002099983, 48.316514980999955, 48.316514980999955, 50.20369735700001, 50.20369735700001, 40.763918300000114, 40.763918300000114, 48.316514980999955, 48.316514980999955, 55.69754940600001, 55.69754940600001, 42.65110067599994, 42.65110067599994, 42.48120640399998, 42.48120640399998, 42.48120640399998, 42.48120640399998, 51.919794252999964, 51.919794252999964, 48.145905788999926, 48.145905788999926, 48.316514980999955, 48.316514980999955, 47.9752965969999, 47.9752965969999, 46.42546542800005, 46.42546542800005, 49.86200268499988, 49.86200268499988, 40.4246060439998, 40.4246060439998, 49.86200268499988, 49.86200268499988, 46.255094868000015, 46.255094868000015, 55.69754940600001, 55.69754940600001, 55.69754940600001, 55.69754940600001, 46.42546542800005, 46.42546542800005, 51.919794252999964, 51.919794252999964, 51.919794252999964, 51.919794252999964, 55.52598714999999, 55.52598714999999, 57.32644098800006, 57.32644098800006, 587.7947174970002, 587.7947174970002, 55.18251107600008, 55.18251107600008, 45.8288193479998, 45.8288193479998, 45.99918990800006, 45.99918990800006, 46.08472430799998, 46.08472430799998, 49.86200268499988, 49.86200268499988, 49.86200268499988, 49.86200268499988, 45.8288193479998, 45.8288193479998, 41.97117544399998, 41.97117544399998, 51.40618722799991, 51.40618722799991, 49.51995791600007, 49.51995791600007, 49.51995791600007, 49.51995791600007, 41.97117544399998, 41.97117544399998, 49.43453424799986, 49.43453424799986, 51.32064448799997, 51.32064448799997, 36.308622283999966, 36.308622283999966, 45.99918990800006, 45.99918990800006, 57.06874038800015, 57.06874038800015, 51.40618722799991, 51.40618722799991, 45.74363406800012, 45.74363406800012, 47.46311941199997, 47.46311941199997, 47.46311941199997, 47.46311941199997, 47.46311941199997, 47.46311941199997, 47.46311941199997], \"power_mean\": 56.36229177510944, \"energy_millijoules\": 7798.860187989948, \"energy_joules\": 7.7988601879899475, \"coremark_score\": 1807.246335, \"coremarks_per_mhz\": 5.229300737847222, \"ulpmark_cm_score\": 32.05596638147121}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1345.041431216, 1345.041431216, 1335.593611604, 1335.593611604], \"power_mean\": 1340.3175214100002, \"energy_millijoules\": 6701.587607050001, \"energy_joules\": 6.7015876070500005}}, \"422400\": {\"active\": {\"elapsed_sec\": 113.142452249, \"elapsed_ns\": 113142452249, \"power_samples\": [60.41401826900005, 60.41401826900005, 58.43850153000017, 58.43850153000017, 54.75325387399994, 54.75325387399994, 50.89258020299985, 50.89258020299985, 64.09890846500002, 64.09890846500002, 54.66747274600016, 54.66747274600016, 58.35248225800001, 58.35248225800001, 56.552987137999935, 56.552987137999935, 50.89258020299985, 50.89258020299985, 54.58169161800015, 54.58169161800015, 50.807037462999915, 50.807037462999915, 54.58169161800015, 54.58169161800015, 58.18044371399992, 58.18044371399992, 46.8656376309998, 46.8656376309998, 58.18044371399992, 58.18044371399992, 58.35248225800001, 58.35248225800001, 65.90179056800002, 65.90179056800002, 56.467086937999966, 56.467086937999966, 64.01253173299983, 64.01253173299983, 50.63595198299981, 50.63595198299981, 56.29528653800003, 56.29528653800003, 54.23821554400001, 54.23821554400001, 59.81069512599993, 59.81069512599993, 54.23821554400001, 54.23821554400001, 60.069463916999894, 60.069463916999894, 59.89683371399974, 59.89683371399974, 58.008052632000044, 58.008052632000044, 63.66667080199977, 63.66667080199977, 63.66667080199977, 63.66667080199977, 63.66667080199977, 63.66667080199977, 50.3789731779998, 50.3789731779998, 63.66667080199977, 63.66667080199977, 46.69467882999993, 46.69467882999993, 57.92203335999989, 57.92203335999989, 56.037233887999946, 56.037233887999946, 54.152434416000006, 54.152434416000006, 56.123134087999915, 56.123134087999915, 63.66667080199977, 63.66667080199977, 59.638417950000076, 59.638417950000076, 56.037233887999946, 56.037233887999946, 55.86543348800001, 55.86543348800001, 53.89509103199998, 53.89509103199998, 59.638417950000076, 59.638417950000076, 53.89509103199998, 53.89509103199998, 63.32116387399992, 63.32116387399992, 59.638417950000076, 59.638417950000076, 59.552279362000036, 59.552279362000036, 65.20946769200009, 65.20946769200009, 55.69363308800007, 55.69363308800007, 53.89509103199998, 53.89509103199998, 55.77953328800004, 55.77953328800004, 63.32116387399992, 63.32116387399992, 53.8093099040002, 53.8093099040002, 55.69363308800007, 55.69363308800007, 57.577956272000165, 57.577956272000165, 63.23478714199996, 63.23478714199996], \"power_mean\": 57.42007679669639, \"energy_millijoules\": 6496.648297104134, \"energy_joules\": 6.496648297104134, \"coremark_score\": 2210.335529, \"coremarks_per_mhz\": 5.232801915246212, \"ulpmark_cm_score\": 38.48138125492139}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1343.598658816, 1343.598658816, 1349.5121881599998, 1349.5121881599998], \"power_mean\": 1346.5554234879999, \"energy_millijoules\": 6732.7771174399995, \"energy_joules\": 6.7327771174399995}}, \"499200\": {\"active\": {\"elapsed_sec\": 95.761965171, \"elapsed_ns\": 95761965171, \"power_samples\": [38.89665792400001, 38.89665792400001, 62.802549478999936, 62.802549478999936, 68.45759158400006, 68.45759158400006, 74.11263368899995, 74.11263368899995, 75.99636102500017, 75.99636102500017, 72.3158789329998, 72.3158789329998, 64.69013691200007, 64.69013691200007, 64.69013691200007, 64.69013691200007, 72.14193377299989, 72.14193377299989, 66.57386424800029, 66.57386424800029, 71.88065958799984, 71.88065958799984, 72.14193377299989, 72.14193377299989, 64.69013691200007, 64.69013691200007, 72.22890635299996, 72.22890635299996, 66.22704878800005, 66.22704878800005, 62.456688547999875, 62.456688547999875, 64.603640864, 64.603640864, 66.22704878800005, 66.22704878800005, 66.22704878800005, 66.22704878800005, 62.37031181600014, 62.37031181600014, 73.6768184959999, 73.6768184959999, 68.11029934800013, 68.11029934800013, 64.2573021799999, 64.2573021799999, 62.456688547999875, 62.456688547999875, 64.2573021799999, 64.2573021799999, 66.14043366800001, 66.14043366800001, 62.37031181600014, 62.37031181600014, 64.2573021799999, 64.2573021799999, 56.71705847599992, 56.71705847599992, 68.02356515600013, 68.02356515600013, 65.88058830799991, 65.88058830799991, 66.14043366800001, 66.14043366800001, 71.793687008, 71.793687008, 68.02356515600013, 68.02356515600013, 66.14043366800001, 66.14043366800001, 73.5897268440001, 73.5897268440001, 66.05381854799998, 66.05381854799998, 73.41554353999982, 73.41554353999982, 65.88058830799991, 65.88058830799991, 65.88058830799991, 65.88058830799991, 63.911317988000064, 63.911317988000064, 65.79397318800011, 65.79397318800011, 71.35882410800014, 71.35882410800014, 67.67662838800015, 67.67662838800015, 67.76336258000015, 67.76336258000015, 65.79397318800011, 65.79397318800011, 58.25949448799997, 58.25949448799997, 67.58989419600016], \"power_mean\": 66.46631042372633, \"energy_millijoules\": 6364.944503841754, \"energy_joules\": 6.3649445038417545, \"coremark_score\": 2611.64795, \"coremarks_per_mhz\": 5.23166656650641, \"ulpmark_cm_score\": 39.277640181953664}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1344.464588064, 1344.464588064, 1344.464588064, 1344.464588064], \"power_mean\": 1344.464588064, \"energy_millijoules\": 6722.32294032, \"energy_joules\": 6.722322940320001}}, \"576000\": {\"active\": {\"elapsed_sec\": 82.965904291, \"elapsed_ns\": 82965904291, \"power_samples\": [47.29754216000015, 47.29754216000015, 74.68748532299992, 74.68748532299992, 82.39447739000002, 82.39447739000002, 616.8011135239999, 616.8011135239999, 82.30679013400004, 82.30679013400004, 82.39447739000002, 82.39447739000002, 76.5694256029999, 76.5694256029999, 84.28051273699975, 84.28051273699975, 84.19270616499989, 84.19270616499989, 82.21910287800006, 82.21910287800006, 84.10489959300003, 84.10489959300003, 76.65675539900008, 76.65675539900008, 74.42585315099996, 74.42585315099996, 85.72306294100008, 85.72306294100008, 80.07445804600002, 80.07445804600002, 82.21910287800006, 82.21910287800006, 76.21974851000004, 76.21974851000004, 70.57535799799984, 70.57535799799984, 81.8679944800001, 81.8679944800001, 89.75072043299997, 89.75072043299997, 74.25107428199999, 74.25107428199999, 76.1324187140001, 76.1324187140001, 76.5694256029999, 76.5694256029999, 80.07445804600002, 80.07445804600002, 85.45892565799977, 85.45892565799977, 74.16386355799978, 74.16386355799978, 79.811394608, 79.811394608, 72.36972984999989, 72.36972984999989, 79.89896279200025, 79.89896279200025, 72.28263819799986, 72.28263819799986, 76.04508891799992, 76.04508891799992, 79.811394608, 79.811394608, 76.04508891799992, 76.04508891799992, 79.811394608, 79.811394608, 79.63625823999996, 79.63625823999996, 81.51724545599996, 81.51724545599996, 72.28263819799986, 72.28263819799986, 81.69261996799992, 81.69261996799992, 73.9894421099998, 73.9894421099998, 83.31428058199981, 83.31428058199981, 75.78309952999984, 75.78309952999984], \"power_mean\": 91.35861046775605, \"energy_millijoules\": 7579.6497322266, \"energy_joules\": 7.579649732226599, \"coremark_score\": 3014.590619, \"coremarks_per_mhz\": 5.233664269097222, \"ulpmark_cm_score\": 32.983054472434034}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1347.12560384, 1347.12560384, 1358.5172958000003, 1358.5172958000003], \"power_mean\": 1352.82144982, \"energy_millijoules\": 6764.1072490999995, \"energy_joules\": 6.764107249099999}}, \"652800\": {\"active\": {\"elapsed_sec\": 73.261226899, \"elapsed_ns\": 73261226899, \"power_samples\": [61.24706029699996, 61.24706029699996, 90.48811316399997, 90.48811316399997, 92.36850453199986, 92.36850453199986, 85.01893708700004, 85.01893708700004, 94.16037465199975, 94.16037465199975, 97.92477226099982, 97.92477226099982, 88.51570474699997, 88.51570474699997, 88.51570474699997, 88.51570474699997, 90.48811316399997, 90.48811316399997, 92.36850453199986, 92.36850453199986, 94.24889589999975, 94.24889589999975, 90.22326385199995, 90.22326385199995, 90.04633582799988, 90.04633582799988, 90.22326385199995, 90.22326385199995, 90.22326385199995, 90.22326385199995, 93.98333215599996, 93.98333215599996, 84.40309722799998, 84.40309722799998, 88.16268826800001, 88.16268826800001, 91.9261313479999, 91.9261313479999, 89.9580527239998, 89.9580527239998, 91.9261313479999, 91.9261313479999, 89.9580527239998, 89.9580527239998, 97.48061031199995, 97.48061031199995, 82.43549513599987, 82.43549513599987, 93.71740561999968, 93.71740561999968, 80.46427963600013, 80.46427963600013, 89.9580527239998, 89.9580527239998, 89.78148651599986, 89.78148651599986, 84.22724593999988, 84.22724593999988, 623.7004676389997, 623.7004676389997, 91.66092481999999, 91.66092481999999, 91.66092481999999, 91.66092481999999, 87.89819690400009, 87.89819690400009, 93.5403631239999, 93.5403631239999, 87.89819690400009, 87.89819690400009, 93.36332062799988, 93.36332062799988], \"power_mean\": 104.28236858294436, \"energy_millijoules\": 7639.854266320235, \"energy_joules\": 7.639854266320235, \"coremark_score\": 3414.041269, \"coremarks_per_mhz\": 5.229842630208333, \"ulpmark_cm_score\": 32.72313728576049}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1357.65794175, 1357.65794175, 1351.751636255, 1351.751636255], \"power_mean\": 1354.7047890025, \"energy_millijoules\": 6773.523945012501, \"energy_joules\": 6.773523945012501}}, \"729600\": {\"active\": {\"elapsed_sec\": 65.521471121, \"elapsed_ns\": 65521471121, \"power_samples\": [74.99641554799996, 74.99641554799996, 96.85892909099994, 96.85892909099994, 106.07828097799984, 106.07828097799984, 100.438618443, 100.438618443, 98.73777154699997, 98.73777154699997, 96.68140981900001, 96.68140981900001, 100.438618443, 100.438618443, 102.32107235399985, 102.32107235399985, 102.32107235399985, 102.32107235399985, 106.2569914579999, 106.2569914579999, 102.32107235399985, 102.32107235399985, 111.53851811300001, 111.53851811300001, 106.07828097799984, 106.07828097799984, 100.438618443, 100.438618443, 102.32107235399985, 102.32107235399985, 105.81021525799997, 105.81021525799997, 105.81021525799997, 105.81021525799997, 101.87512163999986, 101.87512163999986, 100.171625103, 100.171625103, 96.415130911, 96.415130911, 107.78178577699987, 107.78178577699987, 105.81021525799997, 105.81021525799997, 107.69231122100018, 107.69231122100018, 100.171625103, 100.171625103, 107.69231122100018, 107.69231122100018, 98.293378007, 98.293378007, 109.39100387400003, 109.39100387400003, 99.99326479800015, 99.99326479800015, 99.90426701799993, 99.90426701799993, 99.99326479800015, 99.99326479800015, 99.90426701799993, 99.90426701799993, 109.21181661800006, 109.21181661800006, 98.02637762600011], \"power_mean\": 101.93113076833843, \"energy_millijoules\": 6678.677640968562, \"energy_joules\": 6.678677640968561, \"coremark_score\": 3817.551575, \"coremarks_per_mhz\": 5.232389768366228, \"ulpmark_cm_score\": 37.432559772976894}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1351.0665931649996, 1351.0665931649996, 1349.015116317, 1349.015116317], \"power_mean\": 1350.0408547409997, \"energy_millijoules\": 6750.204273704999, \"energy_joules\": 6.750204273704998}}, \"806400\": {\"active\": {\"elapsed_sec\": 59.255747998, \"elapsed_ns\": 59255747998, \"power_samples\": [51.997812188000125, 51.997812188000125, 107.24457174200029, 107.24457174200029, 101.60777035199999, 101.60777035199999, 107.24457174200029, 107.24457174200029, 110.82044883800017, 110.82044883800017, 101.34005382999999, 101.34005382999999, 101.42953615999977, 101.42953615999977, 107.24457174200029, 107.24457174200029, 105.18436236799994, 105.18436236799994, 109.12222298999995, 109.12222298999995, 108.85307491899994, 108.85307491899994, 105.18436236799994, 105.18436236799994, 105.18436236799994, 105.18436236799994, 101.34005382999999, 101.34005382999999, 107.06562263000001, 107.06562263000001, 108.85307491899994, 108.85307491899994, 108.85307491899994, 108.85307491899994, 108.76348129099983, 108.76348129099983, 108.67388766300019, 108.67388766300019, 101.161819638, 101.161819638, 115.91574520799986, 115.91574520799986, 110.5509430630002, 110.5509430630002, 108.67388766300019, 108.67388766300019, 643.5250180399998, 643.5250180399998, 110.28180496300001, 110.28180496300001, 113.94909593600005, 113.94909593600005, 106.52840859499997, 106.52840859499997, 98.92492669300009, 98.92492669300009, 100.80535125400002, 100.80535125400002], \"power_mean\": 123.32151441075865, \"energy_millijoules\": 7307.50858065564, \"energy_joules\": 7.3075085806556395, \"coremark_score\": 4221.47549, \"coremarks_per_mhz\": 5.2349646453373015, \"ulpmark_cm_score\": 34.21138644459445}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1359.6157093159998, 1359.6157093159998, 1357.5603811600001, 1357.5603811600001], \"power_mean\": 1358.588045238, \"energy_millijoules\": 6792.9402261899995, \"energy_joules\": 6.79294022619}}, \"902400\": {\"active\": {\"elapsed_sec\": 53.01711149, \"elapsed_ns\": 53017111490, \"power_samples\": [123.06382577599993, 123.06382577599993, 126.82011330799969, 126.82011330799969, 126.72932822799999, 126.72932822799999, 122.97327908400007, 122.97327908400007, 119.21722994000015, 119.21722994000015, 124.8493814200001, 124.8493814200001, 122.97327908400007, 122.97327908400007, 124.8493814200001, 124.8493814200001, 119.21722994000015, 119.21722994000015, 124.75871565600005, 124.75871565600005, 122.88273239200021, 122.88273239200021, 113.40902075599979, 113.40902075599979, 117.25093837200006, 117.25093837200006, 122.88273239200021, 122.88273239200021, 119.03661333199989, 119.03661333199989, 116.98037067600012, 116.98037067600012, 115.2848849479999, 115.2848849479999, 122.79218569999989, 122.79218569999989, 124.4867183639999, 124.4867183639999, 118.76531830400017, 118.76531830400017, 118.76531830400017, 118.76531830400017, 116.88981181600002, 116.88981181600002, 115.01430532800009, 115.01430532800009, 122.42962783899998, 122.42962783899998, 124.30501525500017, 124.30501525500017, 113.0488477519998, 113.0488477519998], \"power_mean\": 120.7567771302308, \"energy_millijoules\": 6402.175516286528, \"energy_joules\": 6.402175516286528, \"coremark_score\": 4718.316505, \"coremarks_per_mhz\": 5.2286308787677305, \"ulpmark_cm_score\": 39.04922621443659}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1362.596841333, 1362.596841333, 1353.201161382, 1353.201161382], \"power_mean\": 1357.8990013574999, \"energy_millijoules\": 6789.4950067875, \"energy_joules\": 6.7894950067875}}, \"979200\": {\"active\": {\"elapsed_sec\": 48.812964826, \"elapsed_ns\": 48812964826, \"power_samples\": [133.32459190100008, 133.32459190100008, 140.82807844400008, 140.82807844400008, 133.23333028900015, 133.23333028900015, 135.01636714999995, 135.01636714999995, 125.82110535800007, 125.82110535800007, 131.26318061599977, 131.26318061599977, 131.26318061599977, 131.26318061599977, 131.26318061599977, 131.26318061599977, 131.26318061599977, 131.26318061599977, 125.63916312799984, 125.63916312799984, 123.76064909000002, 123.76064909000002, 132.95917142999997, 132.95917142999997, 130.98975372799987, 130.98975372799987, 125.36680788800004, 125.36680788800004, 127.33202731999995, 127.33202731999995, 130.98975372799987, 130.98975372799987, 125.27602280799988, 125.27602280799988, 125.27602280799988, 125.27602280799988, 132.77664820600012, 132.77664820600012, 127.33202731999995, 127.33202731999995, 134.65084441399995, 134.65084441399995, 134.65084441399995, 134.65084441399995, 136.43354086599993, 136.43354086599993, 132.6853865940002, 132.6853865940002], \"power_mean\": 130.80811913949995, \"energy_millijoules\": 6385.1321185116285, \"energy_joules\": 6.3851321185116285, \"coremark_score\": 5125.051251, \"coremarks_per_mhz\": 5.23391671875, \"ulpmark_cm_score\": 39.15345765128426}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1363.699883196, 1363.699883196, 1356.183015194, 1356.183015194], \"power_mean\": 1359.9414491950001, \"energy_millijoules\": 6799.707245975001, \"energy_joules\": 6.799707245975001}}, \"1056000\": {\"active\": {\"elapsed_sec\": 45.29209743, \"elapsed_ns\": 45292097430, \"power_samples\": [57.53073680300008, 57.53073680300008, 145.1665605209996, 145.1665605209996, 671.3428461039998, 671.3428461039998, 143.28947876400002, 143.28947876400002, 143.19750247600018, 143.19750247600018, 134.19356648300004, 134.19356648300004, 141.32437840400007, 141.32437840400007, 145.1665605209996, 145.1665605209996, 141.32437840400007, 141.32437840400007, 133.73628855200013, 133.73628855200013, 141.32437840400007, 141.32437840400007, 141.32437840400007, 141.32437840400007, 139.45125433199996, 139.45125433199996, 148.72800089599968, 148.72800089599968, 141.2321447239999, 141.2321447239999, 141.2321447239999, 141.2321447239999, 140.9565730759998, 140.9565730759998, 139.08392577999984, 139.08392577999984, 133.64490786800002, 133.64490786800002, 141.14028750800003, 141.14028750800003, 150.32748433999996, 150.32748433999996, 139.08392577999984, 139.08392577999984], \"power_mean\": 161.5364410394545, \"energy_millijoules\": 7316.324226054424, \"energy_joules\": 7.316324226054424, \"coremark_score\": 5523.88528, \"coremarks_per_mhz\": 5.23095196969697, \"ulpmark_cm_score\": 34.170164180219906}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1357.461185535, 1357.461185535, 1355.58088029, 1355.58088029], \"power_mean\": 1356.5210329125, \"energy_millijoules\": 6782.6051645625, \"energy_joules\": 6.7826051645625}}, \"1132800\": {\"active\": {\"elapsed_sec\": 42.238339411, \"elapsed_ns\": 42238339411, \"power_samples\": [152.38527590800004, 152.38527590800004, 153.88739651600008, 153.88739651600008, 153.88739651600008, 153.88739651600008, 152.01498736400004, 152.01498736400004, 159.4154122079999, 159.4154122079999, 150.05012514799978, 150.05012514799978, 153.79470530799995, 153.79470530799995, 157.54312212799982, 157.54312212799982, 153.60894300999985, 153.60894300999985, 151.73689156199998, 151.73689156199998, 151.73689156199998, 151.73689156199998, 157.35688207699968, 157.35688207699968, 159.13588485700006, 159.13588485700006, 147.89661874700005, 147.89661874700005, 151.64431942600004, 151.64431942600004, 157.26395248099993, 157.26395248099993, 151.64431942600004, 151.64431942600004, 157.07809328899998, 157.07809328899998, 158.94978752099996, 158.94978752099996, 149.40257479399997, 149.40257479399997, 151.45917515399992], \"power_mean\": 153.95917889878044, \"energy_millijoules\": 6502.980053765557, \"energy_joules\": 6.502980053765557, \"coremark_score\": 5923.468783, \"coremarks_per_mhz\": 5.229050832450565, \"ulpmark_cm_score\": 38.44391308800605}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1364.19062486, 1364.19062486, 1360.522383753, 1360.522383753], \"power_mean\": 1362.3565043065, \"energy_millijoules\": 6811.7825215325, \"energy_joules\": 6.8117825215325}}, \"1190400\": {\"active\": {\"elapsed_sec\": 40.145269464, \"elapsed_ns\": 40145269464, \"power_samples\": [61.60168026800011, 61.60168026800011, 167.84348897199993, 167.84348897199993, 167.65620042800015, 167.65620042800015, 160.4484289579998, 160.4484289579998, 160.16892573799987, 160.16892573799987, 169.53089439799987, 169.53089439799987, 169.3433672220001, 169.3433672220001, 171.30787197799987, 171.30787197799987, 165.69181498800003, 165.69181498800003, 165.78534018799996, 165.78534018799996, 165.69181498800003, 165.69181498800003, 161.85704559600026, 161.85704559600026, 169.43713080999987, 169.43713080999987, 158.11196816200004, 158.11196816200004, 169.3433672220001, 169.3433672220001, 169.24960363399987, 169.24960363399987, 167.1875952800001, 167.1875952800001, 165.31733088800001, 165.31733088800001, 165.31733088800001, 165.31733088800001, 169.24960363399987], \"power_mean\": 160.7956924319487, \"energy_millijoules\": 6455.186401331047, \"energy_joules\": 6.455186401331047, \"coremark_score\": 6232.548863, \"coremarks_per_mhz\": 5.235676128192204, \"ulpmark_cm_score\": 38.7285485587915}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1359.65826243, 1359.65826243, 1363.67057916, 1363.67057916], \"power_mean\": 1361.6644207949998, \"energy_millijoules\": 6808.322103974999, \"energy_joules\": 6.808322103974999}}, \"1267200\": {\"active\": {\"elapsed_sec\": 37.772082329, \"elapsed_ns\": 37772082329, \"power_samples\": [176.07538165799997, 176.07538165799997, 177.94505069000002, 177.94505069000002, 177.85030478, 177.85030478, 183.4627842399998, 183.4627842399998, 175.88651518799998, 175.88651518799998, 175.88651518799998, 175.88651518799998, 179.53089772400017, 179.53089772400017, 177.66158639600008, 177.66158639600008, 184.952990816, 184.952990816, 183.27335093599982, 183.27335093599982, 179.3419411960001, 179.3419411960001, 175.60379482800022, 175.60379482800022, 188.885115476, 188.885115476, 183.08391763199984, 183.08391763199984, 177.47286801200016, 177.47286801200016, 175.50955470800022, 175.50955470800022, 175.60379482800022, 175.60379482800022, 184.7633193680001, 184.7633193680001, 179.24746293199996], \"power_mean\": 179.5899143313514, \"energy_millijoules\": 6783.485029581861, \"energy_joules\": 6.783485029581861, \"coremark_score\": 6624.446859, \"coremarks_per_mhz\": 5.227625362215909, \"ulpmark_cm_score\": 36.85421268120793}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1361.01708774, 1361.01708774, 1364.76428846, 1364.76428846], \"power_mean\": 1362.8906881, \"energy_millijoules\": 6814.4534405, \"energy_joules\": 6.8144534405}}, \"1344000\": {\"active\": {\"elapsed_sec\": 35.592569622, \"elapsed_ns\": 35592569622, \"power_samples\": [58.51404334800009, 58.51404334800009, 197.37408313899982, 197.37408313899982, 201.11438988199984, 201.11438988199984, 195.4102933029999, 195.4102933029999, 195.4102933029999, 195.4102933029999, 197.37408313899982, 197.37408313899982, 193.35091892600008, 193.35091892600008, 195.21880041400004, 195.21880041400004, 195.21880041400004, 195.21880041400004, 200.73036439999987, 200.73036439999987, 191.67022494799994, 191.67022494799994, 193.16005578199997, 193.16005578199997, 191.38389755599997, 191.38389755599997, 195.02769912600002, 195.02769912600002, 191.19327304400008, 191.19327304400008, 191.00264853199997, 191.00264853199997, 196.6083333219999, 196.6083333219999, 195.02769912600002], \"power_mean\": 187.27291726519996, \"energy_millijoules\": 6665.524346076675, \"energy_joules\": 6.665524346076675, \"coremark_score\": 7030.766635, \"coremarks_per_mhz\": 5.231225174851191, \"ulpmark_cm_score\": 37.50642665451367}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1364.070059456, 1364.070059456, 1362.19741216, 1362.19741216], \"power_mean\": 1363.133735808, \"energy_millijoules\": 6815.66867904, \"energy_joules\": 6.81566867904}}, \"1420800\": {\"active\": {\"elapsed_sec\": 33.673823373, \"elapsed_ns\": 33673823373, \"power_samples\": [209.97650015399995, 209.97650015399995, 224.53547409399994, 224.53547409399994, 222.57057041300004, 222.57057041300004, 220.4118670329999, 220.4118670329999, 212.9412807279998, 212.9412807279998, 213.2315070159998, 213.2315070159998, 220.217429777, 220.217429777, 218.3509776410001, 218.3509776410001, 218.253878085, 218.253878085, 218.3509776410001, 218.3509776410001, 214.51738750399977, 214.51738750399977, 212.7477965359999, 212.7477965359999, 220.217429777, 220.217429777, 221.98654421300012, 221.98654421300012, 218.253878085, 218.253878085, 218.253878085, 218.253878085, 218.05928102400003], \"power_mean\": 217.80891013903027, \"energy_millijoules\": 7334.458769087334, \"energy_joules\": 7.334458769087334, \"coremark_score\": 7431.849936, \"coremarks_per_mhz\": 5.230750236486486, \"ulpmark_cm_score\": 34.08567801262708}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1363.202362068, 1363.202362068, 1376.485360954, 1376.485360954], \"power_mean\": 1369.843861511, \"energy_millijoules\": 6849.219307554999, \"energy_joules\": 6.849219307555}}, \"1497600\": {\"active\": {\"elapsed_sec\": 31.940878373, \"elapsed_ns\": 31940878373, \"power_samples\": [249.99683798499996, 249.99683798499996, 247.33764792700003, 247.33764792700003, 246.94162519100018, 246.94162519100018, 239.67524907599977, 239.67524907599977, 779.3566944900003, 779.3566944900003, 246.94162519100018, 246.94162519100018, 239.2811324679999, 239.2811324679999, 248.60827890299993, 248.60827890299993, 244.97783535500002, 244.97783535500002, 239.37966161999998, 239.37966161999998, 237.416467388, 237.416467388, 250.47676501799992, 250.47676501799992, 241.04714932399997, 241.04714932399997, 240.84944857999994, 240.84944857999994, 238.985141204, 238.985141204, 240.84944857999994], \"power_mean\": 278.1739538070968, \"energy_millijoules\": 8885.120425088999, \"energy_joules\": 8.885120425089, \"coremark_score\": 7835.025699, \"coremarks_per_mhz\": 5.231721219951924, \"ulpmark_cm_score\": 28.13692871219535}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1366.4269172699999, 1366.4269172699999, 1368.123475134, 1368.123475134], \"power_mean\": 1367.275196202, \"energy_millijoules\": 6836.37598101, \"energy_joules\": 6.83637598101}}, \"1574400\": {\"active\": {\"elapsed_sec\": 30.387844936, \"elapsed_ns\": 30387844936, \"power_samples\": [268.6284698679999, 268.6284698679999, 272.360428146, 272.360428146, 272.05840714199985, 272.05840714199985, 262.53546169599986, 262.53546169599986, 268.32716402799997, 268.32716402799997, 262.53546169599986, 262.53546169599986, 266.16209225600005, 266.16209225600005, 262.4353836319999, 262.4353836319999, 273.4177423729998, 273.4177423729998, 267.8245760079999, 267.8245760079999, 262.1351494400001, 262.1351494400001, 264.09834367200006, 264.09834367200006, 267.623705448, 267.623705448, 273.31694963300015, 273.31694963300015, 267.8245760079999, 267.8245760079999], \"power_mean\": 267.4189274030666, \"energy_millijoules\": 8126.28489887583, \"energy_joules\": 8.126284898875829, \"coremark_score\": 8236.418146, \"coremarks_per_mhz\": 5.231464777693089, \"ulpmark_cm_score\": 30.764365649373723}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1378.914766551, 1378.914766551, 1378.739153407, 1378.739153407], \"power_mean\": 1378.826959979, \"energy_millijoules\": 6894.1347998950005, \"energy_joules\": 6.894134799895}}, \"1651200\": {\"active\": {\"elapsed_sec\": 28.969556083, \"elapsed_ns\": 28969556083, \"power_samples\": [293.4125390280001, 293.4125390280001, 293.2083325000001, 293.2083325000001, 300.7638571519999, 300.7638571519999, 291.3460503240001, 291.3460503240001, 293.2083325000001, 293.2083325000001, 289.1777553080001, 289.1777553080001, 298.18381091499987, 298.18381091499987, 292.6973977240002, 292.6973977240002, 292.5952944599999, 292.5952944599999, 300.3531175589999, 300.3531175589999, 288.9740250680002, 288.9740250680002, 288.8721599480002, 288.8721599480002, 288.8721599480002, 288.8721599480002, 284.84033055300006, 284.84033055300006], \"power_mean\": 292.6075116419286, \"energy_millijoules\": 8476.709718817927, \"energy_joules\": 8.476709718817927, \"coremark_score\": 8640.055296, \"coremarks_per_mhz\": 5.232591627906977, \"ulpmark_cm_score\": 29.492575337929868}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1376.4268574320001, 1376.4268574320001, 1387.8257610239998, 1387.8257610239998], \"power_mean\": 1382.126309228, \"energy_millijoules\": 6910.631546140001, \"energy_joules\": 6.910631546140001}}, \"1728000\": {\"active\": {\"elapsed_sec\": 27.691029468, \"elapsed_ns\": 27691029468, \"power_samples\": [73.91357943299977, 73.91357943299977, 325.28816901799996, 325.28816901799996, 319.81021700600013, 319.81021700600013, 317.8418995159998, 317.8418995159998, 321.46293099800005, 321.46293099800005, 321.46293099800005, 321.46293099800005, 319.6024358779998, 319.6024358779998, 325.18392123800004, 325.18392123800004, 319.186447841, 319.186447841, 324.7665028729998, 324.7665028729998, 326.52596563399993, 326.52596563399993, 317.2188467359997, 317.2188467359997, 319.082557277, 319.082557277, 326.52596563399993], \"power_mean\": 303.30439905651843, \"energy_millijoules\": 8398.811052048084, \"energy_joules\": 8.398811052048083, \"coremark_score\": 9038.649264, \"coremarks_per_mhz\": 5.230699805555555, \"ulpmark_cm_score\": 29.766117900585048}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1387.029779136, 1387.029779136, 1373.85687989, 1373.85687989], \"power_mean\": 1380.443329513, \"energy_millijoules\": 6902.216647565, \"energy_joules\": 6.902216647565}}, \"1804800\": {\"active\": {\"elapsed_sec\": 26.515151553, \"elapsed_ns\": 26515151553, \"power_samples\": [88.24451540200016, 88.24451540200016, 362.88857187200006, 362.88857187200006, 351.62505022799996, 351.62505022799996, 353.4838773639999, 353.4838773639999, 355.2364312760001, 355.2364312760001, 356.66913412200006, 356.66913412200006, 351.09444025799985, 351.09444025799985, 354.70462960999976, 354.70462960999976, 347.162576447, 347.162576447, 354.598356386, 354.598356386, 360.2827738650001, 360.2827738650001, 347.162576447, 347.162576447, 360.17614318100004, 360.17614318100004], \"power_mean\": 334.1022366506154, \"energy_millijoules\": 8858.771438987338, \"energy_joules\": 8.858771438987338, \"coremark_score\": 9440.018125, \"coremarks_per_mhz\": 5.230506496564717, \"ulpmark_cm_score\": 28.220617466181963}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1388.0120802639997, 1388.0120802639997, 1388.100964304, 1388.100964304], \"power_mean\": 1388.0565222839998, \"energy_millijoules\": 6940.282611419999, \"energy_joules\": 6.940282611419999}}, \"1881600\": {\"active\": {\"elapsed_sec\": 25.463339678, \"elapsed_ns\": 25463339678, \"power_samples\": [93.13689819000001, 93.13689819000001, 397.90635693299987, 397.90635693299987, 401.6194835409999, 401.6194835409999, 401.5101127369999, 401.5101127369999, 390.1503309, 390.1503309, 401.291371129, 401.291371129, 401.07218128, 401.07218128, 401.07218128, 401.07218128, 397.36024636799993, 397.36024636799993, 395.28625173600017, 395.28625173600017, 398.9977103599999, 398.9977103599999, 400.8534396719999, 400.8534396719999, 406.42443033199993], \"power_mean\": 374.67750234335995, \"energy_millijoules\": 9540.540511873616, \"energy_joules\": 9.540540511873616, \"coremark_score\": 9832.068274, \"coremarks_per_mhz\": 5.225376421130952, \"ulpmark_cm_score\": 26.203966084402047}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1396.5525504799998, 1396.5525504799998, 1400.55293313, 1400.55293313], \"power_mean\": 1398.5527418049999, \"energy_millijoules\": 6992.763709024999, \"energy_joules\": 6.992763709024999}}, \"1958400\": {\"active\": {\"elapsed_sec\": 24.439028063, \"elapsed_ns\": 24439028063, \"power_samples\": [478.8397034640002, 478.8397034640002, 478.5224404180001, 478.5224404180001, 478.2934522740002, 478.2934522740002, 476.4364273410001, 476.4364273410001, 476.207677829, 476.207677829, 478.0644641299998, 478.0644641299998, 481.6557102979998, 481.6557102979998, 481.54097808200004, 481.54097808200004, 485.1353061949999, 485.1353061949999, 479.343917876, 479.343917876, 475.63533529999995, 475.63533529999995, 471.8164119999999, 471.8164119999999], \"power_mean\": 478.45765210058335, \"energy_millijoules\": 11693.039986643247, \"energy_joules\": 11.693039986643248, \"coremark_score\": 10243.382775, \"coremarks_per_mhz\": 5.23048548560049, \"ulpmark_cm_score\": 21.38023989360941}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1399.8373587899998, 1399.8373587899998, 1401.7964020560003, 1401.7964020560003], \"power_mean\": 1400.816880423, \"energy_millijoules\": 7004.084402115, \"energy_joules\": 7.004084402115}}, \"2035200\": {\"active\": {\"elapsed_sec\": 23.533634157, \"elapsed_ns\": 23533634157, \"power_samples\": [498.3429319729996, 498.3429319729996, 502.8556099519999, 502.8556099519999, 495.3284639479998, 495.3284639479998, 497.06813219900005, 497.06813219900005, 498.9196915509999, 498.9196915509999, 498.45599687899994, 498.45599687899994, 498.571920547, 498.571920547, 496.48910921899983, 496.48910921899983, 498.34007321099966, 498.34007321099966, 496.3728300139999, 496.3728300139999, 497.9918271099998, 497.9918271099998, 494.63435226799993], \"power_mean\": 497.9177184988694, \"energy_millijoules\": 11717.813427440506, \"energy_joules\": 11.717813427440506, \"coremark_score\": 10638.750585, \"coremarks_per_mhz\": 5.227373518573113, \"ulpmark_cm_score\": 21.335038447920304}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1413.774278424, 1413.774278424, 1413.774278424, 1413.774278424], \"power_mean\": 1413.774278424, \"energy_millijoules\": 7068.87139212, \"energy_joules\": 7.068871392119999}}, \"2112000\": {\"active\": {\"elapsed_sec\": 22.655284939, \"elapsed_ns\": 22655284939, \"power_samples\": [550.015389125, 550.015389125, 543.4507273559998, 543.4507273559998, 541.125822644, 541.125822644, 555.92776979, 555.92776979, 559.3859214839999, 559.3859214839999, 540.6502034119997, 540.6502034119997, 557.2971536279997, 557.2971536279997, 549.7787094280002, 549.7787094280002, 555.0891258919999, 555.0891258919999, 547.6914899959997, 547.6914899959997, 557.177298388, 557.177298388], \"power_mean\": 550.6899646493636, \"energy_millijoules\": 12476.03806217917, \"energy_joules\": 12.47603806217917, \"coremark_score\": 11051.189108, \"coremarks_per_mhz\": 5.232570600378788, \"ulpmark_cm_score\": 20.038412736000655}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1416.6909453810001, 1416.6909453810001, 1422.556466742, 1422.556466742], \"power_mean\": 1419.6237060615001, \"energy_millijoules\": 7098.118530307501, \"energy_joules\": 7.0981185303075005}}, \"2208000\": {\"active\": {\"elapsed_sec\": 21.1314527, \"elapsed_ns\": 21131452700, \"power_samples\": [132.68452960399986, 132.68452960399986, 639.2571555190002, 639.2571555190002, 639.131306124, 639.131306124, 639.0059704000003, 639.0059704000003, 639.0059704000003, 639.0059704000003, 640.349753552, 640.349753552, 634.5636675530002, 634.5636675530002, 636.4085549690001, 636.4085549690001, 639.8474202089997, 639.8474202089997, 639.8474202089997, 639.8474202089997], \"power_mean\": 588.0101748539, \"energy_millijoules\": 12425.509197043919, \"energy_joules\": 12.425509197043919, \"coremark_score\": 11850.02607, \"coremarks_per_mhz\": 5.366859633152174, \"ulpmark_cm_score\": 20.119899799315753}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1443.6347442269998, 1443.6347442269998, 1436.367898416, 1436.367898416], \"power_mean\": 1440.0013213214997, \"energy_millijoules\": 7200.006606607499, \"energy_joules\": 7.200006606607499}}, \"2265600\": {\"active\": {\"elapsed_sec\": 20.454851294, \"elapsed_ns\": 20454851294, \"power_samples\": [712.245790982, 712.245790982, 715.279640559, 715.279640559, 715.279640559, 715.279640559, 715.1491818110001, 715.1491818110001, 711.3337130630002, 711.3337130630002, 720.2878451399997, 720.2878451399997, 716.4689594479999, 716.4689594479999, 714.3658946560001, 714.3658946560001, 714.1049771600001, 714.1049771600001, 725.0308397749998, 725.0308397749998], \"power_mean\": 715.9546483153, \"energy_millijoules\": 14644.74586453753, \"energy_joules\": 14.64474586453753, \"coremark_score\": 12242.299594, \"coremarks_per_mhz\": 5.403557377295198, \"ulpmark_cm_score\": 17.070968817927987}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1444.5753359399998, 1444.5753359399998, 1455.92845463, 1455.92845463], \"power_mean\": 1450.251895285, \"energy_millijoules\": 7251.259476425001, \"energy_joules\": 7.251259476425001}}, \"2323200\": {\"active\": {\"elapsed_sec\": 19.797317701, \"elapsed_ns\": 19797317701, \"power_samples\": [781.3436951260001, 781.3436951260001, 785.5128546579999, 785.5128546579999, 786.9502388589999, 786.9502388589999, 777.6115124930002, 777.6115124930002, 788.3825836880001, 788.3825836880001, 787.8407328879998, 787.8407328879998, 788.111658288, 788.111658288, 793.2240423879998, 793.2240423879998, 787.7052701879998, 787.7052701879998, 795.0623774280002], \"power_mean\": 786.7593449778947, \"energy_millijoules\": 15575.724706758041, \"energy_joules\": 15.575724706758042, \"coremark_score\": 12649.901331, \"coremarks_per_mhz\": 5.445033286415289, \"ulpmark_cm_score\": 16.050617528668138}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1460.5788321, 1460.5788321, 1455.1827308749998, 1455.1827308749998], \"power_mean\": 1457.8807814875, \"energy_millijoules\": 7289.4039074375, \"energy_joules\": 7.289403907437499}}, \"2342400\": {\"active\": {\"elapsed_sec\": 19.630895669, \"elapsed_ns\": 19630895669, \"power_samples\": [831.1145521059998, 831.1145521059998, 824.2183173190001, 824.2183173190001, 825.3665903469996, 825.3665903469996, 812.7708136369997, 812.7708136369997, 823.2528331500002, 823.2528331500002, 821.4118058519998, 821.4118058519998, 819.43693622, 819.43693622, 815.2094095819998, 815.2094095819998, 820.7231744119999, 820.7231744119999, 822.1495033770002], \"power_mean\": 821.5346509803684, \"energy_millijoules\": 16127.461021863941, \"energy_joules\": 16.12746102186394, \"coremark_score\": 12755.752845, \"coremarks_per_mhz\": 5.445591207735656, \"ulpmark_cm_score\": 15.501510105098124}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1459.6428134999999, 1459.6428134999999, 1459.9237724000002, 1459.9237724000002], \"power_mean\": 1459.78329295, \"energy_millijoules\": 7298.91646475, \"energy_joules\": 7.29891646475}}, \"2361600\": {\"active\": {\"elapsed_sec\": 19.469209159, \"elapsed_ns\": 19469209159, \"power_samples\": [164.78440056299996, 164.78440056299996, 842.2210389080001, 842.2210389080001, 851.4057529930001, 851.4057529930001, 849.011032073, 849.011032073, 837.8497376280002, 837.8497376280002, 848.8708271479995, 848.8708271479995, 844.6382997320002, 844.6382997320002, 850.0076629200003, 850.0076629200003, 855.6565295719997, 855.6565295719997, 844.4989054600001], \"power_mean\": 775.4415509754737, \"energy_millijoules\": 15097.233746520857, \"energy_joules\": 15.097233746520857, \"coremark_score\": 12862.067191, \"coremarks_per_mhz\": 5.446336039549458, \"ulpmark_cm_score\": 16.559324986116234}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1468.37326283, 1468.37326283, 1468.37326283, 1468.37326283], \"power_mean\": 1468.37326283, \"energy_millijoules\": 7341.86631415, \"energy_joules\": 7.34186631415}}, \"2457600\": {\"active\": {\"elapsed_sec\": 19.489729159, \"elapsed_ns\": 19489729159, \"power_samples\": [856.3423810480003, 856.3423810480003, 855.6565295719997, 855.6565295719997, 856.7899316899998, 856.7899316899998, 858.9094836079998, 858.9094836079998, 863.9910753450004, 863.9910753450004, 861.8755006730003, 861.8755006730003, 867.3817544479998, 867.3817544479998, 865.265941144, 865.265941144, 865.1245398840001, 865.1245398840001, 857.7855525780001], \"power_mean\": 861.0768330211579, \"energy_millijoules\": 16782.154260671836, \"energy_joules\": 16.782154260671835, \"coremark_score\": 12848.846174, \"coremarks_per_mhz\": 5.228208892415365, \"ulpmark_cm_score\": 14.896776427914435}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1471.431439278, 1471.431439278, 1469.85774442, 1469.85774442], \"power_mean\": 1470.6445918489999, \"energy_millijoules\": 7353.222959244999, \"energy_joules\": 7.353222959245}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/msm8998/fts-irq-storm/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nBaseline power usage: 1304 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 364 441 518 595 672 748 825 883 960 1036 1094 1171 1248 1324 1401 1478 1555 1670 1747 1824 1900\n\n 300:   974     3.2 C/MHz     23 mW    5.8 J   43.3 I/mJ   256.7 s\n 364:  1185     3.2 C/MHz     28 mW    5.9 J   42.5 I/mJ   211.1 s\n 441:  1434     3.2 C/MHz     41 mW    7.2 J   34.9 I/mJ   174.4 s\n 518:  1684     3.2 C/MHz     33 mW    4.8 J   51.8 I/mJ   148.5 s\n 595:  1933     3.2 C/MHz     43 mW    5.6 J   44.5 I/mJ   129.4 s\n 672:  2182     3.2 C/MHz     38 mW    4.4 J   57.2 I/mJ   114.6 s\n 748:  2432     3.2 C/MHz     39 mW    4.0 J   61.9 I/mJ   102.8 s\n 825:  2681     3.2 C/MHz     55 mW    5.1 J   49.1 I/mJ    93.3 s\n 883:  2868     3.2 C/MHz     61 mW    5.3 J   46.9 I/mJ    87.2 s\n 960:  3114     3.2 C/MHz     52 mW    4.2 J   59.9 I/mJ    80.3 s\n1036:  3367     3.2 C/MHz     76 mW    5.7 J   44.2 I/mJ    74.3 s\n1094:  3554     3.2 C/MHz     64 mW    4.5 J   55.5 I/mJ    70.4 s\n1171:  3803     3.2 C/MHz     70 mW    4.6 J   54.2 I/mJ    65.7 s\n1248:  4052     3.2 C/MHz     75 mW    4.7 J   53.7 I/mJ    61.7 s\n1324:  4302     3.2 C/MHz     85 mW    4.9 J   50.9 I/mJ    58.1 s\n1401:  4552     3.2 C/MHz     95 mW    5.2 J   48.0 I/mJ    54.9 s\n1478:  4792     3.2 C/MHz    124 mW    6.5 J   38.5 I/mJ    52.2 s\n1555:  5050     3.2 C/MHz    108 mW    5.3 J   46.8 I/mJ    49.5 s\n1670:  5425     3.2 C/MHz    136 mW    6.3 J   39.9 I/mJ    46.1 s\n1747:  5674     3.2 C/MHz    145 mW    6.4 J   39.0 I/mJ    44.1 s\n1824:  5923     3.2 C/MHz    159 mW    6.7 J   37.2 I/mJ    42.2 s\n1900:  6166     3.2 C/MHz    185 mW    7.5 J   33.4 I/mJ    40.5 s\n\n\n===== CPU 4 =====\nFrequencies: 300 345 422 499 576 652 729 806 902 979 1056 1132 1190 1267 1344 1420 1497 1574 1651 1728 1804 1881 1958 2035 2112 2208 2265 2323 2342 2361 2457\n\n 300:  1569     5.2 C/MHz     59 mW    9.4 J   26.5 I/mJ   159.4 s\n 345:  1807     5.2 C/MHz     56 mW    7.8 J   32.1 I/mJ   138.4 s\n 422:  2210     5.2 C/MHz     57 mW    6.5 J   38.5 I/mJ   113.1 s\n 499:  2612     5.2 C/MHz     66 mW    6.4 J   39.3 I/mJ    95.8 s\n 576:  3015     5.2 C/MHz     91 mW    7.6 J   33.0 I/mJ    83.0 s\n 652:  3414     5.2 C/MHz    104 mW    7.6 J   32.7 I/mJ    73.3 s\n 729:  3818     5.2 C/MHz    102 mW    6.7 J   37.4 I/mJ    65.5 s\n 806:  4221     5.2 C/MHz    123 mW    7.3 J   34.2 I/mJ    59.3 s\n 902:  4718     5.2 C/MHz    121 mW    6.4 J   39.0 I/mJ    53.0 s\n 979:  5125     5.2 C/MHz    131 mW    6.4 J   39.2 I/mJ    48.8 s\n1056:  5524     5.2 C/MHz    162 mW    7.3 J   34.2 I/mJ    45.3 s\n1132:  5923     5.2 C/MHz    154 mW    6.5 J   38.4 I/mJ    42.2 s\n1190:  6233     5.2 C/MHz    161 mW    6.5 J   38.7 I/mJ    40.1 s\n1267:  6624     5.2 C/MHz    180 mW    6.8 J   36.9 I/mJ    37.8 s\n1344:  7031     5.2 C/MHz    187 mW    6.7 J   37.5 I/mJ    35.6 s\n1420:  7432     5.2 C/MHz    218 mW    7.3 J   34.1 I/mJ    33.7 s\n1497:  7835     5.2 C/MHz    278 mW    8.9 J   28.1 I/mJ    31.9 s\n1574:  8236     5.2 C/MHz    267 mW    8.1 J   30.8 I/mJ    30.4 s\n1651:  8640     5.2 C/MHz    293 mW    8.5 J   29.5 I/mJ    29.0 s\n1728:  9039     5.2 C/MHz    303 mW    8.4 J   29.8 I/mJ    27.7 s\n1804:  9440     5.2 C/MHz    334 mW    8.9 J   28.2 I/mJ    26.5 s\n1881:  9832     5.2 C/MHz    375 mW    9.5 J   26.2 I/mJ    25.5 s\n1958: 10243     5.2 C/MHz    478 mW   11.7 J   21.4 I/mJ    24.4 s\n2035: 10639     5.2 C/MHz    498 mW   11.7 J   21.3 I/mJ    23.5 s\n2112: 11051     5.2 C/MHz    551 mW   12.5 J   20.0 I/mJ    22.7 s\n2208: 11850     5.4 C/MHz    588 mW   12.4 J   20.1 I/mJ    21.1 s\n2265: 12242     5.4 C/MHz    716 mW   14.6 J   17.1 I/mJ    20.5 s\n2323: 12650     5.4 C/MHz    787 mW   15.6 J   16.1 I/mJ    19.8 s\n2342: 12756     5.4 C/MHz    822 mW   16.1 J   15.5 I/mJ    19.6 s\n2361: 12862     5.4 C/MHz    775 mW   15.1 J   16.6 I/mJ    19.5 s\n2457: 12849     5.2 C/MHz    861 mW   16.8 J   14.9 I/mJ    19.5 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/msm8998/fts-irq-storm/versions.txt",
    "content": "Kernel: Linux version 4.4.223-proton-g295acc8d (kdrag0n@pinwheel) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project dcc06597b1d61d35c7246d3ab2d7a807134aaa45)) #625 SMP PREEMPT Sat Dec 5 19:01:00 PST 2020\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/msm8998/main/cmdline.txt",
    "content": "isolcpus=1-7 nohz_full=1-7 loglevel=0 console=ttyMSM0,115200,n8 earlycon=msm_serial_dm,0xc1b0000 androidboot.hardware=taimen androidboot.console=ttyMSM0 lpm_levels.sleep_disabled=1 user_debug=31 msm_rtb.filter=0 ehci-hcd.park=3 service_locator.enable=1 swiotlb=2048 firmware_class.path=/vendor/firmware loop.max_part=7 raid=noautodetect usbcore.autosuspend=7 androidboot.dtbo_idx=12 buildvariant=user androidboot.revision=rev_10 androidboot.bootreason androidboot.hardware.sku=G011C bootcable.type=NO_INIT androidboot.ddr_size=4096MB androidboot.ddr_info=SAMSUNG msm_poweroff.download_mode=0 androidboot.ramdump_enable=0 androidboot.hardware.display=MP androidboot.hardware.ufs=64GB,SAMSUNG androidboot.cid=00000000 androidboot.hardware.color=RCW androidboot.hardware.variant=GA00136-GB androidboot.hardware.mid=2 androidboot.theme=1 androidboot.boottime=1BLL:132,1BLE:1199,2BLL:35,2BLE:15558,AVB:43,KL:0,KD:1411,ODT:0,SW:9993 androidboot.verifiedbootstate=green androidboot.keymaster=1 root=PARTUUID=5b492f57-20d9-0460-5e05-f5f6fda52872 androidboot.bootdevice=1da4000.ufshc androidboot.serialno=REDACTED androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_sw43402_dsc_qhd_cmd:1:none:cfg:single_dsi androidboot.slot_suffix=_b skip_initramfs rootwait ro init=/init androidboot.bootloader=TMZ30m\n"
  },
  {
    "path": "results/msm8998/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 4 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 1\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 1\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 1\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 1\n\nHardware\t: Qualcomm Technologies, Inc MSM8998\n"
  },
  {
    "path": "results/msm8998/main/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. MSM8998 v2.1\nCompatible: qcom,msm8998-mtp,qcom,msm8998,qcom,mtp,\n"
  },
  {
    "path": "results/msm8998/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Initializing cgroup subsys cpuset\n[    0.000000] Initializing cgroup subsys cpu\n[    0.000000] Initializing cgroup subsys cpuacct\n[    0.000000] Initializing cgroup subsys schedtune\n[    0.000000] Linux version 4.4.223-proton-g87ac3f89 (kdrag0n@pinwheel) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project dcc06597b1d61d35c7246d3ab2d7a807134aaa45)) #628 SMP PREEMPT Fri Dec 18 18:16:09 PST 2020\n[    0.000000] Boot CPU: AArch64 Processor [51af8014]\n[    0.000000] Machine: Qualcomm Technologies, Inc. MSM8998 v2.1\n[    0.000000] enabling serial (console=ttyMSM0,115200,n8)\n[    0.000000] earlycon: Early serial console at MMIO 0xc1b0000 (options '')\n[    0.000000] bootconsole [uart0] enabled\n[    0.000000] Reserved memory: reserved region for node 'removed_regions@85800000': base 0x0000000000000000, size 55 MiB\n[    0.000000] Reserved memory: reserved region for node 'pil_ipa_gpu_region@95200000': base 0x0000000000000000, size 1 MiB\n[    0.000000] Reserved memory: reserved region for node 'pil_slpi_region@94300000': base 0x0000000000000000, size 15 MiB\n[    0.000000] Reserved memory: reserved region for node 'pil_mba_region@94100000': base 0x0000000000000000, size 2 MiB\n[    0.000000] Reserved memory: reserved region for node 'pil_video_region@93c00000': base 0x0000000000000000, size 5 MiB\n[    0.000000] Reserved memory: reserved region for node 'modem_region@8cc00000': base 0x0000000000000000, size 120 MiB\n[    0.000000] Reserved memory: reserved region for node 'pil_adsp_region@0x8b200000': base 0x0000000000000000, size 26 MiB\n[    0.000000] Reserved memory: reserved region for node 'spss_region@8ab00000': base 0x0000000000000000, size 7 MiB\n[    0.000000] Reserved memory: reserved region for node 'alt_ramoops_region@b0e00000': base 0x0000000000000000, size 2 MiB\n[    0.000000] Reserved memory: reserved region for node 'ramoops_region@b0000000': base 0x0000000000000000, size 2 MiB\n[    0.000000] Reserved memory: reserved region for node 'ramoops_meta_region@affff000': base 0x0000000000000000, size 0 MiB\n[    0.000000] Reserved memory: allocated memory for 'qseecom_region' node: base 0x0000000000000000, size 20 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x0000000000000000, size 20 MiB\n[    0.000000] Reserved memory: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'adsp_region' node: base 0x0000000000000000, size 8 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x0000000000000000, size 8 MiB\n[    0.000000] Reserved memory: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'sp_region' node: base 0x0000000000000000, size 8 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x0000000000000000, size 8 MiB\n[    0.000000] Reserved memory: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'secure_region' node: base 0x0000000000000000, size 92 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x0000000000000000, size 92 MiB\n[    0.000000] Reserved memory: initialized node secure_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'linux,cma' node: base 0x0000000000000000, size 32 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x0000000000000000, size 32 MiB\n[    0.000000] Reserved memory: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 55 MiB\n[    0.000000] Reserved memory: initialized node removed_regions@85800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 7 MiB\n[    0.000000] Reserved memory: initialized node spss_region@8ab00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 26 MiB\n[    0.000000] Reserved memory: initialized node pil_adsp_region@0x8b200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 120 MiB\n[    0.000000] Reserved memory: initialized node modem_region@8cc00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 5 MiB\n[    0.000000] Reserved memory: initialized node pil_video_region@93c00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 2 MiB\n[    0.000000] Reserved memory: initialized node pil_mba_region@94100000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 15 MiB\n[    0.000000] Reserved memory: initialized node pil_slpi_region@94300000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 1 MiB\n[    0.000000] Reserved memory: initialized node pil_ipa_gpu_region@95200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 0 MiB\n[    0.000000] Reserved memory: initialized node ramoops_meta_region@affff000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 2 MiB\n[    0.000000] Reserved memory: initialized node ramoops_region@b0000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000000000000, size 2 MiB\n[    0.000000] Reserved memory: initialized node alt_ramoops_region@b0e00000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 981439\n[    0.000000]   DMA zone: 7252 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 464127 pages, LIFO batch:31\n[    0.000000]   Normal zone: 8083 pages used for memmap\n[    0.000000]   Normal zone: 517312 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.0 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] PERCPU: Embedded 18 pages/cpu @0000000000000000 s42648 r0 d31080 u73728\n[    0.000000] pcpu-alloc: s42648 r0 d31080 u73728 alloc=18*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: enabling workaround for Kryo2xx Silver erratum 845719\n[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 966104\n[    0.000000] Kernel command line: isolcpus=1-7 nohz_full=1-7 loglevel=0 console=ttyMSM0,115200,n8 earlycon=msm_serial_dm,0xc1b0000 androidboot.hardware=taimen androidboot.console=ttyMSM0 lpm_levels.sleep_disabled=1 user_debug=31 msm_rtb.filter=0 ehci-hcd.park=3 service_locator.enable=1 swiotlb=2048 firmware_class.path=/vendor/firmware loop.max_part=7 raid=noautodetect usbcore.autosuspend=7 androidboot.dtbo_idx=12 buildvariant=user androidboot.revision=rev_10 androidboot.bootreason androidboot.hardware.sku=G011C bootcable.type=NO_INIT androidboot.ddr_size=4096MB androidboot.ddr_info=SAMSUNG msm_poweroff.download_mode=0 androidboot.ramdump_enable=0 androidboot.hardware.display=MP androidboot.hardware.ufs=64GB,SAMSUNG androidboot.cid=00000000 androidboot.hardware.color=RCW androidboot.hardware.variant=GA00136-GB androidboot.hardware.mid=2 androidboot.theme=1 androidboot.boottime=1BLL:132,1BLE:1199,2BLL:35,2BLE:15558,AVB:43,KL:0,KD:1411,ODT:0,SW:9993 androidboot.verifiedbootstate=orange andr\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] software IO TLB: mapped [mem 0xf5800000-0xf5c00000] (4MB)\n[    0.000000] Memory: 3624344K/3925756K available (15870K kernel code, 1940K rwdata, 4752K rodata, 6144K init, 4206K bss, 137572K reserved, 163840K cma-reserved)\n[    0.000000] Virtual kernel memory layout:\n                   modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n                   vmalloc : 0xffffff8008000000 - 0xffffffbdbfff0000   (   246 GB)\n                     .init : 0x0000000000000000 - 0x0000000000000000   (  6144 KB)\n                     .text : 0x0000000000000000 - 0x0000000000000000   ( 15872 KB)\n                   .rodata : 0x0000000000000000 - 0x0000000000000000   (  6144 KB)\n                     .data : 0x0000000000000000 - 0x0000000000000000   (  1941 KB)\n                   vmemmap : 0xffffffbdc0000000 - 0xffffffbfc0000000   (     8 GB maximum)\n                             0xffffffbe74000000 - 0xffffffbe77f93000   (    63 MB actual)\n                   fixed   : 0xffffffbffe7fd000 - 0xffffffbffec00000   (  4108 KB)\n                   PCI I/O : 0xffffffbffee00000 - 0xffffffbfffe00000   (    16 MB)\n                   memory  : 0xffffffed00000000 - 0xffffffedfe4c0000   (  4068 MB)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] NR_IRQS:64 nr_irqs:64 0\n[    0.000000] mpm_init_irq_domain(): Cannot find irq controller for qcom,gpio-parent\n[    0.000000] MPM 1 irq mapping errored -517\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from all CPUs\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000010] clocksource: Switched to clocksource arch_sys_counter\n[    0.001557] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001566] pid_max: default: 32768 minimum: 301\n[    0.001604] Security Framework initialized\n[    0.001610] SELinux:  Initializing.\n[    0.001637] SELinux:  Starting in permissive mode\n[    0.001655] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001661] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.002029] Initializing cgroup subsys freezer\n[    0.002370] sched-energy: Sched-energy-costs installed from DT\n[    0.002404] ASID allocator initialised with 65536 entries\n[    0.009804] NOHZ: local_softirq_pending 02\n[    0.010018] NOHZ: local_softirq_pending 02\n[    0.278116] Brought up 8 CPUs\n[    0.278127] SMP: Total of 8 processors activated.\n[    0.278131] CPU features: detected feature: GIC system register CPU interface\n[    0.278135] CPU features: detected feature: 32-bit EL0 Support\n[    0.278139] CPU: All CPU(s) started at EL1\n[    0.278465] devtmpfs: initialized\n[    0.331584] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.331604] futex hash table entries: 2048 (order: 5, 131072 bytes)\n[    0.345395] pinctrl core: initialized pinctrl subsystem\n[    0.345890] NET: Registered protocol family 16\n[    0.346818] schedtune: init normalization constants...\n[    0.346825] schedtune: CLUSTER[0]        min_pwr:     0 max_pwr:    66\n[    0.346830] schedtune: CPU[0]            min_pwr:     0 max_pwr:   201\n[    0.346834] schedtune: SYSTEM            min_pwr:     0 max_pwr:   267\n[    0.346838] schedtune: using normalization constants mul: 3941074860 sh1: 1 sh2: 8\n[    0.346842] schedtune: configured to support 5 boost groups\n[    0.350075] cpuidle: using governor menu\n[    0.360031] cpuidle: using governor qcom\n[    0.360584] vdso32: 2 pages (1 code @ 0000000000000000, 1 data @ 0000000000000000)\n[    0.360591] vdso: 2 pages (1 code @ 0000000000000000, 1 data @ 0000000000000000)\n[    0.360600] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.360979] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.361035] msm_smem_init: unable to create logging context\n[    0.361055] msm_smd_init: unable to create SMD logging context\n[    0.361059] msm_smd_init: unable to create SMSM logging context\n[    0.371210] <CORE> glink_init: unable to create log context\n[    0.371271] <CORE> glink_core_register_transport: unable to create log context for [dsps:smd_trans]\n[    0.371317] <CORE> glink_core_register_transport: unable to create log context for [lpass:smd_trans]\n[    0.371362] <CORE> glink_core_register_transport: unable to create log context for [mpss:smd_trans]\n[    0.371405] <CORE> glink_core_register_transport: unable to create log context for [wcnss:smd_trans]\n[    0.371446] <CORE> glink_core_register_transport: unable to create log context for [rpm:smd_trans]\n[    0.371862] Failed to create IPC log0\n[    0.371865] Failed to create IPC log1\n[    0.371868] Failed to create IPC log2\n[    0.371870] Failed to create IPC log3\n[    0.371873] Failed to create IPC log4\n[    0.381962] exit: IPA_USB init success!\n[    0.387284] unable to find DT imem restart info node\n[    0.387300] restart_handler_init failure\n[    0.388614] unable to find DT imem DLOAD mode node\n[    0.389728] unable to find DT imem EDLOAD mode node\n[    0.390633] spmi spmi-0: PMIC arbiter version v3 (0x30000000)\n[    0.396609] sps:sps is ready.\n[    0.399972] (NULL device *): msm_gsi_probe:2842 failed to create IPC log, continue...\n[    0.401178] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.401465] msm_rpm_dev_probe: APSS-RPM communication over GLINK\n[    0.405065] <CORE> glink_core_register_transport: unable to create log context for [mpss:smem]\n[    0.405382] <CORE> glink_core_register_transport: unable to create log context for [lpass:smem]\n[    0.405692] <CORE> glink_core_register_transport: unable to create log context for [dsps:smem]\n[    0.405956] <CORE> glink_core_register_transport: unable to create log context for [rpm:smem]\n[    0.406273] <CORE> glink_core_register_transport: unable to create log context for [spss:mailbox]\n[    0.407989] platform 17300000.qcom,lpass: assigned reserved memory node pil_adsp_region@0x8b200000\n[    0.408281] platform 4080000.qcom,mss: assigned reserved memory node modem_region@8cc00000\n[    0.409408] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.409436] msm_thermal:vdd_restriction_reg_init Defer regulator vdd-dig probe\n[    0.409441] msm_thermal:probe_vdd_rstr Err regulator init. err:-517. KTM continues.\n[    0.409446] msm-thermal soc:qcom,msm-thermal: probe_vdd_rstr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,max-freq-level. err=-517. KTM continues\n[    0.413807] platform 5c00000.qcom,ssc: assigned reserved memory node pil_slpi_region@94300000\n[    0.413943] platform cce0000.qcom,venus: assigned reserved memory node pil_video_region@93c00000\n[    0.414100] msm_watchdog 17817000.qcom,wdt: wdog absent resource not present\n[    0.414224] msm_watchdog 17817000.qcom,wdt: MSM Watchdog Initialized\n[    0.414352] platform 1d0101c.qcom,spss: assigned reserved memory node spss_region@8ab00000\n[    0.417002] msm_mpm_dev_probe(): Cannot get clk resource for XO: -517\n[    0.426449] __of_mpm_init(): MPM driver mapping exists\n[    0.429356] irq: no irq domain found for /soc/qcom,mdss_mdp@c900000 !\n[    0.430155] msm_rpm_trans_notify_state: glink config params: transport=(null), edge=rpm, name=rpm_requests\n[    0.430966] i2c-msm-v2 c179000.i2c: probing driver i2c-msm-v2\n[    0.431019] i2c-msm-v2 c179000.i2c: error on clk_get(core_clk):-517\n[    0.431027] i2c-msm-v2 c179000.i2c: error probe() failed with err:-517\n[    0.431271] i2c-msm-v2 c17a000.i2c: probing driver i2c-msm-v2\n[    0.431303] i2c-msm-v2 c17a000.i2c: error on clk_get(core_clk):-517\n[    0.431309] i2c-msm-v2 c17a000.i2c: error probe() failed with err:-517\n[    0.431554] i2c-msm-v2 c1b5000.i2c: probing driver i2c-msm-v2\n[    0.431585] i2c-msm-v2 c1b5000.i2c: error on clk_get(core_clk):-517\n[    0.431591] i2c-msm-v2 c1b5000.i2c: error probe() failed with err:-517\n[    0.431797] i2c-msm-v2 c1b6000.i2c: probing driver i2c-msm-v2\n[    0.431830] i2c-msm-v2 c1b6000.i2c: error on clk_get(core_clk):-517\n[    0.431836] i2c-msm-v2 c1b6000.i2c: error probe() failed with err:-517\n[    0.432156] i2c-msm-v2 c1b7000.i2c: probing driver i2c-msm-v2\n[    0.432189] i2c-msm-v2 c1b7000.i2c: error on clk_get(core_clk):-517\n[    0.432195] i2c-msm-v2 c1b7000.i2c: error probe() failed with err:-517\n[    0.434097] irq: no irq domain found for /soc/qcom,sde_kms@c900000 !\n[    0.434914] platform soc:access_ramoops@0: assigned reserved memory node ramoops_meta_region@affff000\n[    0.435034] platform soc:access_ramoops@1: assigned reserved memory node alt_ramoops_region@b0e00000\n[    0.435149] platform soc:ramoops: assigned reserved memory node ramoops_region@b0000000\n[    0.435662] console [pstore-1] enabled\n[    0.435793] pstore: Registered ramoops as persistent store backend\n[    0.435840] ramoops: attached 0x200000@0xb0000000, ecc: 0/0\n[    0.437026] bldr_log_init: can't find compatible 'htc,bldr_log'\n[    0.469116] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.469191] msm_thermal:vdd_restriction_reg_init Defer regulator vdd-gfx probe\n[    0.469195] msm_thermal:probe_vdd_rstr Err regulator init. err:-517. KTM continues.\n[    0.469201] msm-thermal soc:qcom,msm-thermal: probe_vdd_rstr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,max-freq-level. err=-517. KTM continues\n[    0.469480] msm_mpm_dev_probe(): Cannot get clk resource for XO: -517\n[    0.469866] i2c-msm-v2 c179000.i2c: probing driver i2c-msm-v2\n[    0.469907] i2c-msm-v2 c179000.i2c: error on clk_get(core_clk):-517\n[    0.469916] i2c-msm-v2 c179000.i2c: error probe() failed with err:-517\n[    0.470115] i2c-msm-v2 c17a000.i2c: probing driver i2c-msm-v2\n[    0.470147] i2c-msm-v2 c17a000.i2c: error on clk_get(core_clk):-517\n[    0.470154] i2c-msm-v2 c17a000.i2c: error probe() failed with err:-517\n[    0.470330] i2c-msm-v2 c1b5000.i2c: probing driver i2c-msm-v2\n[    0.470362] i2c-msm-v2 c1b5000.i2c: error on clk_get(core_clk):-517\n[    0.470367] i2c-msm-v2 c1b5000.i2c: error probe() failed with err:-517\n[    0.470509] i2c-msm-v2 c1b6000.i2c: probing driver i2c-msm-v2\n[    0.470543] i2c-msm-v2 c1b6000.i2c: error on clk_get(core_clk):-517\n[    0.470548] i2c-msm-v2 c1b6000.i2c: error probe() failed with err:-517\n[    0.470798] i2c-msm-v2 c1b7000.i2c: probing driver i2c-msm-v2\n[    0.470830] i2c-msm-v2 c1b7000.i2c: error on clk_get(core_clk):-517\n[    0.470836] i2c-msm-v2 c1b7000.i2c: error probe() failed with err:-517\n[    0.476318] branch_clk_handoff: gcc_mss_mnoc_bimc_axi_clk clock is enabled in HW even though ENABLE_BIT is not set\n[    0.476410] qcom,gcc-8998 100000.qcom,gcc: Registered GCC clocks\n[    0.480625] qcom,mmsscc-8998 c8c0000.qcom,mmsscc: Registered MMSS clocks.\n[    0.482200] qcom,gpucc-8998 5065000.qcom,gpucc: Registered GPU clocks (barring gfx3d clocks)\n[    0.484542] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.484605] msm_thermal:vdd_restriction_reg_init Defer regulator vdd-gfx probe\n[    0.484610] msm_thermal:probe_vdd_rstr Err regulator init. err:-517. KTM continues.\n[    0.484617] msm-thermal soc:qcom,msm-thermal: probe_vdd_rstr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,max-freq-level. err=-517. KTM continues\n[    0.484763] cprh_kbss_read_fuse_data: apc0_pwrcl_corner: speed bin = 2\n[    0.484770] cprh_msm8998_kbss_read_fuse_data: apc0_pwrcl_corner: CPR fusing revision = 3\n[    0.484865] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused   LowSVS: open-loop= 608000 uV\n[    0.484869] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused      SVS: open-loop= 656000 uV\n[    0.484873] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused      NOM: open-loop= 768000 uV\n[    0.484878] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused TURBO_L1: open-loop= 866000 uV\n[    0.484941] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused   LowSVS: quot[11]= 596\n[    0.484946] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused      SVS: quot[11]= 714, quot_offset[11]= 115\n[    0.484951] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused      NOM: quot[11]=1022, quot_offset[11]= 305\n[    0.484956] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused TURBO_L1: quot[11]=1274, quot_offset[11]= 250\n[    0.485245] cpr3_regulator_init_ctrl: apc0: Default CPR mode = full HW closed-loop\n[    0.485358] cpr3_regulator_debugfs_ctrl_add: apc0: cpr3-regulator debugfs base directory creation failed\n[    0.485475] cprh_kbss_read_fuse_data: apc1_perfcl_corner: speed bin = 2\n[    0.485480] cprh_msm8998_kbss_read_fuse_data: apc1_perfcl_corner: CPR fusing revision = 3\n[    0.485578] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused   LowSVS: open-loop= 636000 uV\n[    0.485582] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused      SVS: open-loop= 636000 uV\n[    0.485586] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused      NOM: open-loop= 768000 uV\n[    0.485590] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused TURBO_L1: open-loop= 986000 uV\n[    0.485601] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fuse corner 1 voltage=636000 uV < fuse corner 0 voltage=644000 uV; overriding: fuse corner 1 voltage=644000\n[    0.485669] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused   LowSVS: quot[11]=1041\n[    0.485674] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused      SVS: quot[11]=1041, quot_offset[11]=   0\n[    0.485679] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused      NOM: quot[11]=1429, quot_offset[11]= 385\n[    0.485683] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused TURBO_L1: quot[11]=1941, quot_offset[11]= 510\n[    0.486000] cpr3_regulator_init_ctrl: apc1: Default CPR mode = full HW closed-loop\n[    0.486076] cpr3_regulator_debugfs_ctrl_add: apc1: cpr3-regulator debugfs base directory creation failed\n[    0.486237] cpr3_msm8996_mmss_read_fuse_data: gfx_corner: CPR fusing revision = 2\n[    0.486244] cpr3_msm8996_mmss_read_fuse_data: gfx_corner: CPR limitation = none\n[    0.486473] cpr3_msm8996_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[0] open-loop= 596000 uV\n[    0.486477] cpr3_msm8996_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[1] open-loop= 668000 uV\n[    0.486481] cpr3_msm8996_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[2] open-loop= 802000 uV\n[    0.486485] cpr3_msm8996_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[3] open-loop= 944000 uV\n[    0.486590] cpr3_regulator_init_ctrl: gfx: Default CPR mode = closed-loop\n[    0.486845] cpr3_regulator_debugfs_ctrl_add: gfx: cpr3-regulator debugfs base directory creation failed\n[    0.497334] i2c-msm-v2 c179000.i2c: probing driver i2c-msm-v2\n[    0.497388] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.497394] i2c-msm-v2 c179000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.497723] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.497946] i2c-msm-v2 c17a000.i2c: probing driver i2c-msm-v2\n[    0.497992] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.497997] i2c-msm-v2 c17a000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.498205] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.498420] i2c-msm-v2 c1b5000.i2c: probing driver i2c-msm-v2\n[    0.498464] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.498469] i2c-msm-v2 c1b5000.i2c: msm_bus_scale_register_client(mstr-id:84):0 (not a problem)\n[    0.498687] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.498938] i2c-msm-v2 c1b6000.i2c: probing driver i2c-msm-v2\n[    0.498983] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.498988] i2c-msm-v2 c1b6000.i2c: msm_bus_scale_register_client(mstr-id:84):0 (not a problem)\n[    0.499168] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.499458] i2c-msm-v2 c1b7000.i2c: probing driver i2c-msm-v2\n[    0.499505] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.499510] i2c-msm-v2 c1b7000.i2c: msm_bus_scale_register_client(mstr-id:84):0 (not a problem)\n[    0.499792] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.500250] gfx3d_clk_src: set OPP pair(257000000 Hz: 656000 uV) on 5000000.qcom,kgsl-3d0\n[    0.500262] gfx3d_clk_src: set OPP pair(710000000 Hz: 916000 uV) on 5000000.qcom,kgsl-3d0\n[    0.502975] qcom,gfxcc-8998 5065000.qcom,gfxcc: Completed registering all GPU clocks\n[    0.504608] cpu-clock-osm 179c0000.qcom,cpu-clock-8998: using pwrcl speed bin 0 and pvs_ver 0\n[    0.504627] cpu-clock-osm 179c0000.qcom,cpu-clock-8998: using perfcl speed bin 2 and pvs_ver 0\n[    0.507300] add_opp: Set OPP pair (300000000 Hz, 644000 uv) on cpu0\n[    0.507383] add_opp: Set OPP pair (1900800000 Hz, 868000 uv) on cpu0\n[    0.507429] add_opp: Set OPP pair (300000000 Hz, 644000 uv) on cpu1\n[    0.507518] add_opp: Set OPP pair (1900800000 Hz, 868000 uv) on cpu1\n[    0.507559] add_opp: Set OPP pair (300000000 Hz, 644000 uv) on cpu2\n[    0.507635] add_opp: Set OPP pair (1900800000 Hz, 868000 uv) on cpu2\n[    0.507659] add_opp: Set OPP pair (300000000 Hz, 644000 uv) on cpu3\n[    0.507681] add_opp: Set OPP pair (1900800000 Hz, 868000 uv) on cpu3\n[    0.507689] add_opp: Set OPP pair (300000000 Hz, 640000 uv) on cpu4\n[    0.507709] add_opp: Set OPP pair (2457600000 Hz, 1012000 uv) on cpu4\n[    0.507717] add_opp: Set OPP pair (300000000 Hz, 640000 uv) on cpu5\n[    0.507737] add_opp: Set OPP pair (2457600000 Hz, 1012000 uv) on cpu5\n[    0.507747] add_opp: Set OPP pair (300000000 Hz, 640000 uv) on cpu6\n[    0.507767] add_opp: Set OPP pair (2457600000 Hz, 1012000 uv) on cpu6\n[    0.507777] add_opp: Set OPP pair (300000000 Hz, 640000 uv) on cpu7\n[    0.507797] add_opp: Set OPP pair (2457600000 Hz, 1012000 uv) on cpu7\n[    0.507802] populate_debugfs_dir: osm debugfs base directory creation failed\n[    0.507805] populate_debugfs_dir: osm debugfs base directory creation failed\n[    0.508108] cpu_clock_osm_driver_probe: OSM driver inited\n[    0.508164] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.508231] msm-thermal soc:qcom,msm-thermal: probe_ocr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-opt-curr-temp err:-22. KTM continues\n[    0.508241] msm-thermal soc:qcom,msm-thermal: probe_vdd_mx:Failed reading node=/soc/qcom,msm-thermal, key=qcom,mx-restriction-temp. KTM continues\n[    0.508458] msm-thermal soc:qcom,msm-thermal: probe_freq_mitigation:Failed reading node=/soc/qcom,msm-thermal, key=qcom,limit-temp. err=-22. KTM continues\n[    0.508468] msm-thermal soc:qcom,msm-thermal: msm_thermal:Failed reading node=/soc/qcom,msm-thermal, key=qcom,rpm-phase-resource-type err=-22. KTM continues\n[    0.508476] msm-thermal soc:qcom,msm-thermal: msm_thermal:Failed reading node=/soc/qcom,msm-thermal, key=qcom,gfx-sensor-id. err=-22. KTM continues\n[    0.563185] socinfo_print: v0.11, id=292, ver=2.1, raw_id=94, raw_ver=2, hw_plat=8, hw_plat_ver=10\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65556, pmic_die_revision=131072 foundry_id=3 serial_number=3876385331 num_pmics=3\n[    0.563200] msm_bus_fabric_init_driver\n[    0.577537] msm_bus_dev_init_qos: Skipping QOS init for 1\n[    0.577588] msm-bus-type fab-mnoc: Error: Failed to get regulator clk-camss-ahb-no-rate:-517\n[    0.577609] msm-bus-type fab-mnoc: Error: Failed to get regulator clk-camss-ahb-no-rate:-517\n[    0.577647] fab-mnoc supply clk-mdss-ahb-no-rate not found, using dummy regulator\n[    0.577670] fab-mnoc supply clk-mdss-axi-no-rate not found, using dummy regulator\n[    0.577693] msm-bus-type fab-mnoc: Error: Failed to get regulator clk-camss-ahb-no-rate:-517\n[    0.577711] msm-bus-type fab-mnoc: Error: Failed to get regulator clk-camss-ahb-no-rate:-517\n[    0.577727] msm-bus-type fab-mnoc: Error: Failed to get regulator clk-camss-ahb-no-rate:-517\n[    0.577745] msm-bus-type fab-mnoc: Error: Failed to get regulator clk-camss-ahb-no-rate:-517\n[    0.577762] msm-bus-type fab-mnoc: Error: Failed to get regulator clk-camss-ahb-no-rate:-517\n[    0.577781] msm_bus_dev_init_qos: Skipping QOS init for 727\n[    0.579478] SCSI subsystem initialized\n[    0.579826] usbcore: registered new interface driver usbfs\n[    0.579848] usbcore: registered new interface driver hub\n[    0.579965] usbcore: registered new device driver usb\n[    0.580131] soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.580417] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm8998@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.580443] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm8998@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)\n[    0.580618] input: qpnp_pon as /devices/virtual/input/input0\n[    0.581117] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm8998@0:qcom,power-on@800: qcom,report-key:true\n[    0.581142] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pmi8998@2:qcom,power-on@800: No PON config. specified\n[    0.581183] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pmi8998@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (secondary PMIC) and 'cold' boot\n[    0.581206] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pmi8998@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from GP1 (Keypad_Reset1)\n[    0.581241] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pmi8998@2:qcom,power-on@800: qcom,report-key:false\n[    0.581479] media: Linux media interface: v0.10\n[    0.581501] Linux video capture interface: v2.00\n[    0.591717] EDAC MC: Ver: 3.0.0\n[    0.602599] cpufreq: driver msm up and running\n[    0.603129] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node adsp_region\n[    0.603356] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.603505] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.603652] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_region\n[    0.603906] ION heap system created\n[    0.603921] ION heap adsp created at 0x0000000000000000 with size 800000\n[    0.603925] ION heap qsecom created at 0x0000000000000000 with size 1400000\n[    0.603929] ION heap spss created at 0x0000000000000000 with size 800000\n[    0.603932] ION heap secure_display created at 0x0000000000000000 with size 5c00000\n[    0.603935] ION heap secure_heap created\n[    0.604237] PMIC@SID0: PM8998 v2.0 options: 0, 0, 0, 0\n[    0.604324] PMIC@SID2: PMI8998 v2.1 options: 0, 0, 0, 0\n[    0.604408] PMIC@SID4: PM8005 v2.0 options: 0, 0, 0, 0\n[    0.605186] ipa ipa_smmu_wlan_cb_probe:5135 could not alloc iommu domain\n[    0.605286] IPA smmu_info.s1_bypass=1 smmu_info.fast_map=0\n[    0.605765] ipa ipa_smmu_wlan_cb_probe:5135 could not alloc iommu domain\n[    0.608062] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.608068] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.620608] dp_pll_lock_status: dp_pll_lock_status: C_READY status is not high. Status=0\n[    0.621640] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.621644] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.624213] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.625332] mdss_pll_probe: MDSS pll label = MDSS HDMI PLL\n[    0.654286] arm-smmu cd00000.arm,smmu-mmss: found 20 context interrupt(s) but have 17 context banks. assuming 17 context interrupts.\n[    0.662882] iommu: Adding device soc:usb_audio_qmi_dev to group 0\n[    0.663004] iommu: Adding device 1c00000.qcom,pcie to group 1\n[    0.663105] iommu: Adding device 18800000.qcom,icnss to group 2\n[    0.663266] iommu: Adding device soc:iommu_test_device to group 3\n[    0.663937] iommu: Adding device soc:qcom,msm-audio-ion to group 4\n[    0.664244] iommu: Adding device c900000.qcom,sde_kms to group 5\n[    0.664757] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_ap to group 6\n[    0.664770] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_wlan to group 7\n[    0.664784] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_uc to group 8\n[    0.685224] Advanced Linux Sound Architecture Driver Initialized.\n[    0.685585] Bluetooth: 0000000000000000\n[    0.685595] NET: Registered protocol family 31\n[    0.685597] Bluetooth: 0000000000000000\n[    0.685603] Bluetooth: 0000000000000000\n[    0.685607] Bluetooth: 0000000000000000\n[    0.685611] Bluetooth: 0000000000000000\n[    0.685785] cfg80211: World regulatory domain updated:\n[    0.685789] cfg80211:  DFS Master region: unset\n[    0.685791] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)\n[    0.685796] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.685800] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.685804] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.685807] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.685811] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.685815] cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.685819] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.685823] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)\n[    0.695882] NetLabel: Initializing\n[    0.695885] NetLabel:  domain hash size = 128\n[    0.695887] NetLabel:  protocols = UNLABELED CIPSOv4\n[    0.695908] NetLabel:  unlabeled traffic allowed by default\n[    0.695969] pcie:pcie_init.\n[    0.695972] pcie_init: unable to create IPC log context for pcie0-short\n[    0.695975] pcie_init: unable to create IPC log context for pcie0-long\n[    0.695978] pcie_init: unable to create IPC log context for pcie0-dump\n[    0.695981] pcie_init: unable to create IPC log context for pcie1-short\n[    0.695984] pcie_init: unable to create IPC log context for pcie1-long\n[    0.695987] pcie_init: unable to create IPC log context for pcie1-dump\n[    0.695991] pcie_init: unable to create IPC log context for pcie2-short\n[    0.695994] pcie_init: unable to create IPC log context for pcie2-long\n[    0.695996] pcie_init: unable to create IPC log context for pcie2-dump\n[    0.696550] 1c00000.qcom,pcie supply vreg-3.3 not found, using dummy regulator\n[    0.696639] 1c00000.qcom,pcie supply gdsc-smmu not found, using dummy regulator\n[    0.697224] msm_pcie_get_resources: PCIe: RC0 can't get tcsr resource.\n[    0.697266] msm_pcie_probe: PCIe: RC0 could not get pinctrl sleep state\n[    0.698668] qpnp_labibb_regulator_probe: LAB/IBB registered successfully, lab_vreg enable=0 ibb_vreg enable=0 swire_control=0\n[    0.701210] ipa ipa3_pre_init:4314 failed to create IPC log, continue...\n[    0.701511] ipa ipa3_uc_state_check:302 uC interface not initialized\n[    0.703231] ipa ipa3_set_resorce_groups_min_max_limits:3412 skip configuring ipa_rx_hps_clients from HLOS\n[    0.743776] ipa ipa3_uc_state_check:302 uC interface not initialized\n[    0.745657] clocksource: Switched to clocksource arch_sys_counter\n[    0.775884] NET: Registered protocol family 2\n[    0.776267] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.776403] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.776798] TCP: Hash tables configured (established 32768 bind 32768)\n[    0.776851] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.776903] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.777061] NET: Registered protocol family 1\n[    0.777092] PCI: CLS 0 bytes, default 64\n[    0.777655] Trying to unpack rootfs image as initramfs...\n[    1.479904] Freeing initrd memory: 23664K\n[    1.481358] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    1.494770] Initialise system trusted keyring\n[    1.494855] vmscan: error setting kswapd cpu affinity mask\n[    1.507604] VFS: Disk quotas dquot_6.6.0\n[    1.507682] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    1.508225] Registering sdcardfs 0.1\n[    1.508359] fuse init (API version 7.23)\n[    1.508738] SELinux:  Registering netfilter hooks\n[    1.509128] pfk_ecryptfs [pfk_ecryptfs_init]: PFK ecryptfs inited successfully\n[    1.509132] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    1.509137] pfk [pfk_init]: Driver initialized successfully\n[    1.511225] Key type asymmetric registered\n[    1.511233] Asymmetric key parser 'x509' registered\n[    1.511249] io scheduler noop registered\n[    1.511338] io scheduler cfq registered (default)\n[    1.516171] msm_dss_get_res_byname: 'vbif_nrt_phys' resource not found\n[    1.516185] mdss_mdp_probe+0x2a0/0x1608->msm_dss_ioremap_byname: 'vbif_nrt_phys' msm_dss_get_res_byname failed\n[    1.517398] No change in context(0==0), skip\n[    1.518771] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:0 num:0 rect:0 ndx:0x1 prio:0\n[    1.518776] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:4 num:1 rect:0 ndx:0x2 prio:1\n[    1.518781] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:8 num:2 rect:0 ndx:0x4 prio:2\n[    1.518785] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:12 num:8 rect:0 ndx:0x100 prio:3\n[    1.518828] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:1 num:6 rect:0 ndx:0x40 prio:4\n[    1.518843] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:1 num:6 rect:1 ndx:0x40 prio:4\n[    1.518847] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:5 num:7 rect:0 ndx:0x80 prio:5\n[    1.518863] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:5 num:7 rect:1 ndx:0x80 prio:5\n[    1.518867] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:9 num:12 rect:0 ndx:0x1000 prio:6\n[    1.518882] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:9 num:12 rect:1 ndx:0x1000 prio:6\n[    1.518887] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:13 num:13 rect:0 ndx:0x2000 prio:7\n[    1.518901] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:13 num:13 rect:1 ndx:0x2000 prio:7\n[    1.518918] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:2 num:10 rect:0 ndx:0x400 prio:0\n[    1.518923] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:10 num:11 rect:0 ndx:0x800 prio:1\n[    1.518935] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-pipe-sw-reset-off : u32 array read\n[    1.519035] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-ib-factor-overlap : u32 array read\n[    1.529687] iommu: Adding device c900000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb to group 9\n[    1.530097] iommu: Adding device c900000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb to group 10\n[    1.530271] mdss_mdp_probe: mdss version = 0x30000001, bootloader display is on, num 1, intf_sel=0x00000100\n[    1.532574] mdss_smmu_probe: iommu v2 domain[0] mapping and clk register successful!\n[    1.532736] mdss_smmu_probe: iommu v2 domain[2] mapping and clk register successful!\n[    1.535521] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->0\n[    1.535952] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_sw43402_dsc_qhd_cmd:1:none:cfg:single_dsi panel_name:qcom,mdss_dsi_sw43402_dsc_qhd_cmd\n[    1.536263] mdss_dsi_panel_init: Panel Name = SW43402 cmd mode dsc dsi panel\n[    1.536419] mdss_dsi_panel_timing_from_dt: found new timing \"qcom,mdss_dsi_sw43402_dsc_qhd_cmd\" (0000000000000000)\n[    1.536445] mdss_dsi_panel_get_dsc_cfg_np: cannot find dsc config node:\n[    1.536539] mdss_dsi_parse_topology_config: cfg_node name config0 lm_split:720x720 pp_split:no\n[    1.536672] mdss_dsi_parse_partial_update_caps: partial_update_enabled=1\n[    1.536683] mdss_dsi_parse_panel_features: ulps feature enabled\n[    1.536690] mdss_dsi_parse_panel_features: ulps during suspend feature disabled\n[    1.536700] mdss_dsi_parse_dms_config: dynamic switch feature enabled: 0\n[    1.536793] mdss_dsi_set_refresh_rate_range:2600, Unable to read min refresh rate\n[    1.536800] mdss_dsi_set_refresh_rate_range:2615, Unable to read max refresh rate\n[    1.536803] dyn_fps: min = 60, max = 60\n[    1.537091] c994000.qcom,mdss_dsi_ctrl0 supply wqhd-vddio not found, using dummy regulator\n[    1.537129] mdss_dsi_parse_ctrl_params:4353 Unable to read qcom,display-id, data=0000000000000000,len=20\n[    1.537166] mdss_dsi_parse_gpio_params:4391: ERR_FG gpio not specified\n[    1.537193] mdss_dsi_parse_gpio_params: bklt_en gpio not specified\n[    1.537270] mdss_dsi_parse_gpio_params: lcd vcl gpio not specified\n[    1.537375] msm_dss_get_res_byname: 'dsi_phy_regulator' resource not found\n[    1.537396] mdss_dsi_retrieve_ctrl_resources+0x180/0x1e4->msm_dss_ioremap_byname: 'dsi_phy_regulator' msm_dss_get_res_byname failed\n[    1.537401] mdss_dsi_retrieve_ctrl_resources: ctrl_base=0000000000000000 ctrl_size=400 phy_base=0000000000000000 phy_size=7c0\n[    1.537887] dsi_panel_device_register: Continuous splash enabled\n[    1.538059] Unable to find fb node for device: c994000.qcom,mdss_dsi_ctrl0\n[    1.538320] mdss_register_panel: adding framebuffer device c994000.qcom,mdss_dsi_ctrl0\n[    1.555297] mdss_dsi_ctrl_probe: Dsi Ctrl->0 initialized, DSI rev:0x20000000, PHY rev:0x3\n[    1.555391] mdss_dsi_status_init: DSI status check interval:3000\n[    1.557851] mdss_register_panel: adding framebuffer device soc:qcom,mdss_wb_panel\n[    1.558576] mdss_fb_probe: fb0: split_mode:1 left:720 right:720\n[    1.558884] mdss_panel_debugfs_init: Debugfs create dir failed with error: -19\n[    1.558889] mdss_fb_register: FrameBuffer[0] 1440x2880 registered successfully!\n[    1.558935] mdss_dsi_debugfs_setup: debugfs_create_dir dsi fail, error -19\n[    1.558941] mdss_dsi_debugfs_init: Error in initilizing dsi ctrl debugfs\n[    1.569505] mdss_mdp_splash_parse_dt: mem reservation for splash screen fb not present\n[    1.569509] mdss_mdp_splash_parse_dt: no rsvd mem found in DT for splash screen\n[    1.569515] mdss_mdp_splash_init: splash memory reserve failed\n[    1.569550] mdss_fb_probe: fb1: split_mode:0 left:0 right:0\n[    1.569681] mdss_fb_register: FrameBuffer[1] 640x480 registered successfully!\n[    1.579821] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    1.591505] glink_loopback_server_init: unable to create log context\n[    1.602405] msm_smp2p_init: unable to create log context\n[    1.603688] qmi_log_init: Unable to create QMI IPC logging for Req/Resp\n[    1.603696] logging for Indications: Unable to create QMI IPC qmi_log_init\n[    1.644645] spcom [spcom_init]: spcom driver Ver 1.0 23-Nov-2015.\n[    1.644973] spcom [spcom_probe]: Driver Initialization ok.\n[    1.655293] apr_init: Unable to create ipc log context\n[    1.655310] audio_notifer_reg_service: service SSR_MODEM is in use\n[    1.668070] In memshare_probe, Memshare probe success\n[    1.680541] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    1.680703] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    1.680781] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    1.681387] subsys-pil-tz soc:qcom,ipa_fws@1e08000: for ipa_fws segments only will be dumped.\n[    1.682562] subsys-pil-tz cce0000.qcom,venus: for venus segments only will be dumped.\n[    1.682864] subsys-pil-tz 1d0101c.qcom,spss: for spss segments only will be dumped.\n[    1.683433] subsys-pil-tz soc:qcom,kgsl-hyp: for a540_zap segments only will be dumped.\n[    1.685223] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    1.686446] msm-dcc 10b3000.dcc: DCC XPU is not specified\n[    1.686716] msm-dcc 10b3000.dcc: DCC REG dump setup failed\n[    1.686736] msm-dcc 10b3000.dcc: DCC SRAM dump setup failed\n[    1.687005] icnss: Unable to create log context\n[    1.687008] icnss: Unable to create log long context\n[    1.709343] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    1.709512] icnss: Unable to create debugfs -19\n[    1.709546] icnss: Platform driver probed successfully\n[    1.711552] qiib_driver_data_init: unable to create logging context\n[    1.713874] msm_serial c1b0000.serial: msm_serial: detected port #0\n[    1.713947] msm_serial c1b0000.serial: uartclk = 0\n[    1.714008] c1b0000.serial: ttyMSM0 at MMIO 0xc1b0000 (irq = 30, base_baud = 0) is a MSM\n[    1.714035] msm_serial: console setup on port #0\n[    1.714117] console [ttyMSM0] enabled\n[    1.714123] bootconsole [uart0] disabled\n[    1.715459] msm_serial c16f000.serial: msm_serial: detected port #1\n[    1.715495] msm_serial c16f000.serial: uartclk = 19200000\n[    1.715528] c16f000.serial: ttyMSM1 at MMIO 0xc16f000 (irq = 363, base_baud = 1200000) is a MSM\n[    1.715898] msm_serial: driver initialized\n[    1.716130] msm_serial_hs: Cannot create debugfs dir\n[    1.717241] uart_tx_gpio is not available\n[    1.717246] uart_rx_gpio is not available\n[    1.717249] uart_cts_gpio is not available\n[    1.717253] uart_rfr_gpio is not available\n[    1.717645] msm_serial_hs c171000.uart: msm_hs_probe: error creating logging context\n[    1.728134] sps: BAM device 0x0000000000000000 is not registered yet.\n[    1.728146] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000000000000\n[    1.728152] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000000000000\n[    1.728155] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000000000000\n[    1.728158] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000000000000\n[    1.728162] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000000000000\n[    1.728166] sps:BAM 0x0000000000000000 is registered.\n[    1.728464] msm_serial_hs c171000.uart: msm_hs_probe: error creating tx logging context\n[    1.728471] msm_serial_hs c171000.uart: msm_hs_probe: error creating rx logging context\n[    1.728477] msm_serial_hs c171000.uart: msm_hs_probe: error creating usr logging context\n[    1.729600] msm_serial_debugfs_init(): Cannot create loopback.0 debug entry\n[    1.729647] c171000.uart: ttyHS0 at MMIO 0xc171000 (irq = 362, base_baud = 460800) is a MSM HS UART\n[    1.730949] msm_serial_hs module loaded\n[    1.730972] smd_tty_log_init: Unable to create IPC log\n[    1.734199] random: nonblocking pool is initialized\n[    1.734689] diag: Failed to create IPC logging context\n[    2.475346] gdsc_gpu_gx: supplied by gfx_corner\n[    2.478544] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 11\n[    2.479123] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 12\n[    2.479904] kgsl_pool_config: Pool order:1 not supprted.!!\n[    2.479909] kgsl_pool_config: Pool order:4 not supprted.!!\n[    2.479915] kgsl_pool_config: Pool order:8 not supprted.!!\n[    2.670822] brd: module loaded\n[    2.838400] loop: module loaded\n[    2.848802] zram: Added device: zram0\n[    2.850356] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1001000\n[    2.850377] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    2.850386] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    2.850390] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    2.850852] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    2.857284] thermal thermal_zone0: failed to read out thermal zone (-5)\n[    2.857601] thermal thermal_zone1: failed to read out thermal zone (-5)\n[    2.857821] thermal thermal_zone2: failed to read out thermal zone (-5)\n[    2.858072] thermal thermal_zone3: failed to read out thermal zone (-5)\n[    2.858080] mnh_thermal soc:mnh_thermal: mnh_thermal_probe: initialized\n[    2.858503] misc easelcomm-client: registered at misc device minor 60\n[    2.860305] fpc1020 soc:fp_fpc1020: found pin control fpc1020_reset_reset\n[    2.860311] fpc1020 soc:fp_fpc1020: found pin control fpc1020_reset_active\n[    2.860317] fpc1020 soc:fp_fpc1020: found pin control fpc1020_irq_active\n[    2.860362] fpc1020 soc:fp_fpc1020: Selected 'fpc1020_reset_reset'\n[    2.860382] fpc1020 soc:fp_fpc1020: Selected 'fpc1020_irq_active'\n[    2.860782] fpc1020 soc:fp_fpc1020: Selected 'fpc1020_reset_active'\n[    2.861103] fpc1020 soc:fp_fpc1020: Selected 'fpc1020_reset_reset'\n[    2.866241] fpc1020 soc:fp_fpc1020: Selected 'fpc1020_reset_active'\n[    2.871363] fpc1020 soc:fp_fpc1020: IRQ after reset 1\n[    2.871368] fpc1020 soc:fp_fpc1020: fpc1020_probe: ok\n[    2.871666] fpc1020_init OK\n[    2.884143] misc access-metadata: registered 'metadata' 10:59, (1000@0x0000000000000000)\n[    2.884352] misc access-ramoops: registered 'ramoops' 10:58, (200000@0x0000000000000000)\n[    2.885108] i2c-msm-v2 c1b5000.i2c: msm_bus_scale_register_client(mstr-id:84):0xe (ok)\n[    2.888251] prom_parse: Bad cell count for /soc/i2c@c1b5000/qcom,smb138x@8\n[    2.888260] prom_parse: Bad cell count for /soc/i2c@c1b5000/qcom,smb138x@8\n[    2.890488] PMIC@SID0: (null) v2.1 options: 0, 0, 0, 0\n[    2.890504] prom_parse: Bad cell count for /soc/i2c@c1b5000/qcom,smb138x@8\n[    2.890864] prom_parse: Bad cell count for /soc/i2c@c1b5000/qcom,smb138x@8\n[    2.891232] prom_parse: Bad cell count for /soc/i2c@c1b5000/qcom,smb138x@8\n[    2.891237] prom_parse: Bad cell count for /soc/i2c@c1b5000/qcom,smb138x@8\n[    2.891362] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    2.894266] nq-nci 8-0028: nqx_probe: probing NFCC NQxxx exited successfully\n[    2.895678] qce 1de0000.qcedev: Qualcomm Crypto 5.3.4 device found @0x1de0000\n[    2.895689] qce 1de0000.qcedev: CE device = 0x0\n               , IO base, CE = 0x0000000000000000\n               , Consumer (IN) PIPE 2,    Producer (OUT) PIPE 3\n               IO base BAM = 0x0000000000000000\n               BAM IRQ 63\n               Engines Availability = 0x2011053\n[    2.895725] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000000000000\n[    2.895730] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000000000000\n[    2.895734] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000000000000\n[    2.895736] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000000000000\n[    2.895741] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000000000000\n[    2.895744] sps:BAM 0x0000000000000000 is registered.\n[    2.895941] sps:BAM 0x0000000000000000 (va:0x0000000000000000) enabled: ver:0x27, number of pipes:16\n[    2.896207] QCE50: qce_sps_init:  Qualcomm MSM CE-BAM at 0x0000000001dc4000 irq 63\n[    2.909445] qcrypto 1de0000.qcrypto: Qualcomm Crypto 5.3.4 device found @0x1de0000\n[    2.909457] qcrypto 1de0000.qcrypto: CE device = 0x0\n               , IO base, CE = 0x0000000000000000\n               , Consumer (IN) PIPE 4,    Producer (OUT) PIPE 5\n               IO base BAM = 0x0000000000000000\n               BAM IRQ 63\n               Engines Availability = 0x2011053\n[    2.909802] QCE50: qce_sps_init:  Qualcomm MSM CE-BAM at 0x0000000001dc4000 irq 63\n[    2.910373] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    2.910526] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    2.910591] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    2.910653] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    2.910722] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    2.910789] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    2.910856] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    2.910917] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    2.910985] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    2.911048] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    2.911115] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    2.911179] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    2.911243] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    2.911309] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    2.911373] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    2.911436] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    2.911505] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    2.911572] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    2.911635] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    2.911700] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    2.927527] qcom_ice_get_pdevice: found ice device 0000000000000000\n[    2.927545] qcom_ice_get_pdevice: matching platform device 0000000000000000\n[    2.938249] scm_call failed: func id 0x42000c02, ret: -2, syscall returns: 0xfffffffffffffffc, 0x0, 0x0\n[    2.938747] ufshcd-qcom 1da4000.ufshc: ufs_qcom_parse_reg_info: Unable to find qcom,vddp-ref-clk-supply regulator, assuming enabled\n[    2.949921] scsi host0: ufshcd\n[    2.954771] qcom_ice 1db0000.ufsice: QC ICE 3.0.65 device found @0x0000000000000000\n[    2.975828] pn81a spi1.0: pn81a_probe: device tree set '8-0028' as eSE power controller\n[    2.976056] pn81a spi1.0: pn81a_probe: eSE is configured\n[    2.977357] sps: BAM device 0x0000000000000000 is not registered yet.\n[    2.977374] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000000000000\n[    2.977380] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000000000000\n[    2.977384] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000000000000\n[    2.977386] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000000000000\n[    2.977390] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000000000000\n[    2.977393] sps:BAM 0x0000000000000000 is registered.\n[    2.978303] sps:BAM 0x0000000000000000 (va:0x0000000000000000) enabled: ver:0x19, number of pipes:18\n[    2.979294] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    2.990784] tun: Universal TUN/TAP device driver, 1.6\n[    2.990788] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    2.991068] ufshcd-qcom 1da4000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    2.991153] PPP generic driver version 2.4.2\n[    2.991267] PPP BSD Compression module registered\n[    2.991277] PPP Deflate Compression module registered\n[    2.991334] PPP MPPE Compression module registered\n[    2.991342] NET: Registered protocol family 24\n[    2.991464] wcnss_pre_alloc_init: Failed to create debugfs dir\n[    2.991473] CLD80211: Initializing\n[    2.991575] usbcore: registered new interface driver rtl8150\n[    2.991597] usbcore: registered new interface driver r8152\n[    2.991617] usbcore: registered new interface driver asix\n[    2.991640] usbcore: registered new interface driver ax88179_178a\n[    2.991659] usbcore: registered new interface driver cdc_ether\n[    2.991692] usbcore: registered new interface driver cdc_ncm\n[    2.998786] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    3.003579] branch_clk_set_rate: Cannot scale gcc_rx1_usb2_clkref_clk clock while HW gating is enabled. Use corresponding hw_ctl_clk to scale it\n[    3.003696] pm8998_l24: supplied by pm8998_l12\n[    3.005857] msm-dwc3 a800000.ssusb: unable to get dbm device\n[    3.007617] usbcore: registered new interface driver usb-storage\n[    3.026149] msm_sharedmem: sharedmem_register_qmi: qmi init successful\n[    3.026162] msm_sharedmem: debugfs_init: Failed to create debug_fs directory\n[    3.030329] qpnp-pdphy 800f000.qcom,spmi:qcom,pmi8998@2:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    3.032711] usbcore: registered new interface driver xpad\n[    3.033368] drv2624 6-005a: drv2624_i2c_probe enter\n[    3.033704] drv2624 6-005a: Looking up ti,irq-gpio property in node /soc/i2c@c17a000/drv2624@5a failed -2\n[    3.037797] drv2624 6-005a: drv2624_i2c_probe, ID status (0x3)\n[    3.038200] i2c-msm-v2 c17a000.i2c: msm_bus_scale_register_client(mstr-id:86):0x12 (ok)\n[    3.039849] drv2624 6-005a: dev_init_platform_data, LRA = 155, drive_time=0x1b\n[    3.051646] drv2624 6-005a: drv2624 probe succeeded\n[    3.052392] [LASER] stmvl53l0_init: Enter\n[    3.052397] [LASER] stmvl53l0_init_i2c: Enter\n[    3.052431] [LASER] stmvl53l0_init_i2c: End with rc:0\n[    3.052435] [LASER] stmvl53l0_init: End\n[    3.054378] [LASER] stmvl53l0_probe: Enter++\n[    3.054389] [LASER] Laser_parse_dt: calib_file = /persist/ldaf_cal\n[    3.054392] [LASER] Laser_parse_dt: pwdn_gpio = 0\n[    3.054423] [LASER] Laser_parse_dt: pwdn_gpio = 39\n[    3.054512] [LASER] Laser_parse_dt: laser_irq_gpio = 62\n[    3.054564] [LASER] Laser_parse_dt: Laser_parse_dt: sensor cali_size = 0\n[    3.054593] [LASER] stmvl53l0_read_calibration: Could not read calibration from /persist/ldaf_cal\n[    3.054597] [LASER] stmvl53l0_parse_vdd: Enter++\n[    3.054722] 9-0029 supply vdd not found, using dummy regulator\n[    3.054738] [LASER] stmvl53l0_parse_vdd: End--\n[    3.054741] [LASER] Laser_pinctrl_init: Enter++\n[    3.055081] qcom,qpnp-rtc 800f000.qcom,spmi:qcom,pm8998@0:qcom,pm8998_rtc: rtc core: registered qpnp_rtc as rtc0\n[    3.056255] i2c /dev entries driver\n[    3.056569] [LASER] Laser_pinctrl_init: End--\n[    3.056574] [LASER] stmvl53l0_setup: Enter++\n[    3.056599] [LASER] stmvl53l0_setup: register_irq: 260\n[    3.057721] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb1 to group 13\n[    3.058254] CAM-SMMU cam_smmu_populate_sids:2326 __debug cnt = 8, cb->name: :vfe sid [0] = 3072\n               ,\n[    3.058260] CAM-SMMU cam_smmu_populate_sids:2326 __debug cnt = 8, cb->name: :vfe sid [1] = 3073\n               ,\n[    3.058265] CAM-SMMU cam_smmu_populate_sids:2326 __debug cnt = 8, cb->name: :vfe sid [2] = 3074\n               ,\n[    3.058267] CAM-SMMU cam_smmu_populate_sids:2326 __debug cnt = 8, cb->name: :vfe sid [3] = 3075\n               ,\n[    3.058393] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb2 to group 14\n[    3.058513] CAM-SMMU cam_smmu_populate_sids:2326 __debug cnt = 2, cb->name: :cpp sid [0] = 2560\n               ,\n[    3.058612] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb3 to group 15\n[    3.058693] CAM-SMMU cam_smmu_populate_sids:2326 __debug cnt = 2, cb->name: :camera_fd sid [0] = 2561\n               ,\n[    3.058794] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb4 to group 16\n[    3.058871] CAM-SMMU cam_smmu_populate_sids:2326 __debug cnt = 2, cb->name: :jpeg_enc0 sid [0] = 2048\n               ,\n[    3.058964] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb5 to group 17\n[    3.059043] CAM-SMMU cam_smmu_populate_sids:2326 __debug cnt = 2, cb->name: :jpeg_dma sid [0] = 2049\n               ,\n[    3.064688] [LASER] stmvl53l0_setup: interrupt is hooked\n[    3.064839] input: STM VL53L0 proximity sensor as /devices/virtual/input/input1\n[    3.065016] [LASER] stmvl53l0_setup: Misc device registration name:9-0029\n[    3.065488] i2c-msm-v2 c1b7000.i2c: msm_bus_scale_register_client(mstr-id:84):0x14 (ok)\n[    3.065954] [LASER] stmvl53l0_setupAPIFunctions: read REVISION_ID: 0x10\n                API_VERSION: 1.1.20.2\n[    3.065958] [LASER] stmvl53l0_setupAPIFunctions: to setup API cut 1.1\n[    3.065965] [LASER] stmvl53l0_init_client: Enter\n[    3.065968] [LASER] stmvl53l0_init_client: Call of VL53L0_DataInit\n[    3.079300] CAM-SOC msm_camera_get_reg_base:864 err: mem resource csiphy_clk_mux not found\n[    3.079306] csiphy_probe: no mem resource?\n[    3.080270] CAM-SOC msm_camera_get_reg_base:864 err: mem resource csiphy_clk_mux not found\n[    3.080273] csiphy_probe: no mem resource?\n[    3.081832] CAM-SOC msm_camera_get_reg_base:864 err: mem resource csiphy_clk_mux not found\n[    3.081836] csiphy_probe: no mem resource?\n[    3.082750] [LASER] stmvl53l0_init_client: Call of VL53L0_StaticInit\n[    3.084300] ufshcd-qcom 1da4000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[2, 2], pwr[FAST MODE, FAST MODE], rate = 2\n[    3.087950] msm_actuator_platform_probe:1952 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    3.088811] msm_eeprom_platform_probe failed 1712\n[    3.089745] msm_eeprom_platform_probe failed 1782\n[    3.090616] msm_camera_pinctrl_init:1265 Getting pinctrl handle failed\n[    3.090621] msm_ois_platform_probe:1253 ERR:msm_ois_platform_probe: Error in reading OIS pinctrl\n[    3.090708] qcom,ois: probe of ca0c000.qcom,cci:qcom,ois@20 failed with error -22\n[    3.094229] gdsc_cpp: supplied by gdsc_camss_top\n[    3.097252] MSM-CPP cpp_init_hardware:1144 CPP HW Version: 0x60010000\n[    3.097262] MSM-CPP cpp_init_hardware:1162 stream_cnt:0\n[    3.097522] MSM-CPP cpp_release_hardware:1225 cpp hw release done\n[    3.101376] scsi 0:0:0:49488: Well-known LUN    SAMSUNG  KLUCG4J1ED-B0C1  0200 PQ: 0 ANSI: 6\n[    3.108543] CAM-SOC msm_camera_get_reg_base:864 err: mem resource vfe_fuse not found\n[    3.108547] CAM-SOC msm_camera_get_res_size:907 err: mem resource vfe_fuse not found\n[    3.108597] gdsc_vfe0: supplied by gdsc_camss_top\n[    3.109462] CAM-SOC msm_camera_get_reg_base:864 err: mem resource vfe_fuse not found\n[    3.109465] CAM-SOC msm_camera_get_res_size:907 err: mem resource vfe_fuse not found\n[    3.109495] gdsc_vfe1: supplied by gdsc_camss_top\n[    3.112400] scsi 0:0:0:49456: Well-known LUN    SAMSUNG  KLUCG4J1ED-B0C1  0200 PQ: 0 ANSI: 6\n[    3.115705] __msm_jpeg_init:1537] Jpeg Device id 0\n[    3.121679] msm_fd_hw_set_dt_parms_by_name: Error property does not exist\n[    3.122480] msm_vidc:  err: Failed to create debugfs for msm_vidc\n[    3.133582] [LASER] stmvl53l0_read_calibration: Could not read calibration from /persist/ldaf_cal\n[    3.133594] [LASER] stmvl53l0_init_client: failed: no calibration data\n[    3.133598] [LASER] stmvl53l0_setup: support ver. 1.1.20.2(1.0.5.1) enabled\n[    3.133601] [LASER] stmvl53l0_setup: End--\n[    3.133661] [LASER] stmvl53l0_probe: Success--\n[    3.137290] scsi 0:0:0:49476: Well-known LUN    SAMSUNG  KLUCG4J1ED-B0C1  0200 PQ: 0 ANSI: 6\n[    3.147075] msm_vidc:  err: Failed to create debugfs for msm_vidc\n[    3.148043] iommu: Adding device cc00000.qcom,vidc:non_secure_cb to group 18\n[    3.150112] iommu: Adding device cc00000.qcom,vidc:firmware_cb to group 19\n[    3.150264] iommu: Adding device cc00000.qcom,vidc:secure_bitstream_cb to group 20\n[    3.151096] scsi 0:0:0:0: Direct-Access     SAMSUNG  KLUCG4J1ED-B0C1  0200 PQ: 0 ANSI: 6\n[    3.151806] iommu: Adding device cc00000.qcom,vidc:secure_pixel_cb to group 21\n[    3.152718] iommu: Adding device cc00000.qcom,vidc:secure_non_pixel_cb to group 22\n[    3.155556] c880000.qcom,vmem supply vdd not found, using dummy regulator\n[    3.156341] msm_vidc_vmem: Up and running with 4 banks of memory from [mem size 0x12ea458ec9]\n[    3.156344] Failed to create '<debugfs>/vmem'\n[    3.157215] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-rot-xin-id : doesn't exist in device tree\n[    3.157516] iommu: Adding device c900000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 23\n[    3.157800] iommu: Adding device c900000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 24\n[    3.158275] No change in context(0==0), skip\n[    3.159081] sde_rotator c900000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    3.160173] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    3.160307] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    3.162533] thermal thermal_zone4: failed to read out thermal zone (-19)\n[    3.162846] thermal thermal_zone5: failed to read out thermal zone (-19)\n[    3.163250] PMI: smblib_get_prop_usb_port_temp: Couldn't get USB thermal zone rc=-19\n[    3.163355] PMI: smblib_get_prop_usb_port_temp: Couldn't get USB thermal zone rc=-19\n[    3.163360] PMI: port_overheat_work: Couldn't get USB port temp rc=-19\n[    3.166616] scsi 0:0:0:1: Direct-Access     SAMSUNG  KLUCG4J1ED-B0C1  0200 PQ: 0 ANSI: 6\n[    3.168391] QPNP SMB2 probed successfully usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    3.171005] lge_battery: bm_init: Couldn't get pl_psy\n[    3.171013] lge_battery: lge_battery_probe: bm_init fail\n[    3.171186] qpnp_adc_get_devicetree_data: Loaded custom map for usb_port_temp\n[    3.171859] qpnp_vadc_read: Error reading vadc_hc channel 21\n[    3.171863] PMI: smblib_get_prop_usb_port_temp: Couldn't get temp USB thermal zone rc=-517\n[    3.171983] qpnp_vadc_read: Error reading vadc_hc channel 21\n[    3.171990] thermal thermal_zone6: failed to read out thermal zone (-517)\n[    3.177436] scsi 0:0:0:2: Direct-Access     SAMSUNG  KLUCG4J1ED-B0C1  0200 PQ: 0 ANSI: 6\n[    3.188890] scsi 0:0:0:3: Direct-Access     SAMSUNG  KLUCG4J1ED-B0C1  0200 PQ: 0 ANSI: 6\n[    3.191558] tsens_debugfs_init: Error creating TSENS directory\n[    3.191570] lmh_interface:lmh_mon_init_driver Error creating debugfs dir:lmh_monitor. err:-19\n[    3.192684] msm_lmh_dcvs:lmh_activate_trip lmh_activate_trip: disable not supported\n[    3.193230] msm_lmh_dcvs:lmh_activate_trip lmh_activate_trip: disable not supported\n[    3.193500] md: linear personality registered for level -1\n[    3.193584] device-mapper: uevent: version 1.0.3\n[    3.193814] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com\n[    3.199706] scsi 0:0:0:4: Direct-Access     SAMSUNG  KLUCG4J1ED-B0C1  0200 PQ: 0 ANSI: 6\n[    3.203881] device-mapper: verity-avb: AVB error handler initialized with vbmeta device: \n[    3.203892] device-mapper: req-crypt: dm-req-crypt successfully initalized.\n\n[    3.204524] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in device tree\n[    3.206957] ledtrig-cpu: registered to indicate activity on CPUs\n[    3.207031] hidraw: raw HID events driver (C) Jiri Kosina\n[    3.208450] usbcore: registered new interface driver usbhid\n[    3.208456] usbhid: USB HID core driver\n[    3.208577] ashmem: initialized\n[    3.209322] qpnp_coincell_charger_show_state: enabled=Y, voltage=3200 mV, resistance=800 ohm\n[    3.211356] scsi 0:0:0:5: Direct-Access     SAMSUNG  KLUCG4J1ED-B0C1  0200 PQ: 0 ANSI: 6\n[    3.211851] bimc-bwmon 1008000.qcom,cpu-bwmon: BW HWmon governor registered.\n[    3.212625] arm-memlat-mon soc:qcom,arm-memlat-mon-0: Memory Latency governor registered.\n[    3.212653] arm-memlat-mon soc:qcom,arm-memlat-mon-4: Memory Latency governor registered.\n[    3.214592] devfreq soc:qcom,cpubw: Couldn't update frequency transition information.\n[    3.214701] devfreq soc:qcom,mincpubw: Couldn't update frequency transition information.\n[    3.214797] devfreq soc:qcom,memlat-cpu0: Couldn't update frequency transition information.\n[    3.214893] devfreq soc:qcom,memlat-cpu4: Couldn't update frequency transition information.\n[    3.216237] probe: Failed to create IPC log context\n[    3.220569] [smem]htc_radio_smem_init.\n[    3.220969] usbcore: registered new interface driver snd-usb-audio\n[    3.223578] scsi 0:0:0:6: Direct-Access     SAMSUNG  KLUCG4J1ED-B0C1  0200 PQ: 0 ANSI: 6\n[    3.225505] sd 0:0:0:0: [sda] Write Protect is off\n[    3.225511] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    3.225971] sd 0:0:0:1: [sdb] Write Protect is off\n[    3.225977] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    3.228289]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13\n[    3.229113]  sdb: sdb1\n[    3.230623] sd 0:0:0:2: [sdc] Write Protect is off\n[    3.230629] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    3.230893] sd 0:0:0:3: [sdd] Write Protect is off\n[    3.230911] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    3.232271]  sdc: sdc1\n[    3.233098]  sdd: sdd1 sdd2\n[    3.233964] sd 0:0:0:4: [sde] Write Protect is off\n[    3.233969] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    3.234595] sd 0:0:0:5: [sdf] Write Protect is off\n[    3.234601] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    3.236051]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41\n[    3.236708] sd 0:0:0:6: [sdg] Write Protect is off\n[    3.236714] sd 0:0:0:6: [sdg] Mode Sense: 00 32 00 10\n[    3.237542]  sdf: sdf1 sdf2 sdf3\n[    3.239711]  sdg: sdg1\n[    3.245782] tas2557s 7-004d: tas2557_i2c_probe enter\n[    3.260132] bcm15602 9-0008: bcm15602_resetb_irq_handler: completing reset\n[    3.260307] bcm15602 9-0008: Part: 0x5602, Rev: 2, Vendor Rev: 0x21\n[    3.260458] bcm15602 9-0008: Last reboot reason: normal\n[    3.300328] tas2557s 7-004d: PG2.1 found\n[    3.300518] tas2557s 7-004d: tas2557_register_codec, enter\n[    3.300622] tas2557s 7-004d: tas2557_register_misc, leave\n[    3.300627] tas2557s 7-004d: tiload_driver_init\n[    3.300640] tas2557s 7-004d: allocated Major Number: 227\n[    3.300693] tas2557s 7-004d: Registered TiLoad driver, Major number: 227\n[    3.310480] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx group_id: 0x9100\n[    3.310709] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0 dev_id: 0x9000\n[    3.310717] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.310740] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx group_id: 0x9101\n[    3.310896] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0 dev_id: 0x9001\n[    3.310905] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.310924] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx group_id: 0x9110\n[    3.311070] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0 dev_id: 0x9010\n[    3.311078] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.311096] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx group_id: 0x9111\n[    3.311240] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0 dev_id: 0x9011\n[    3.311249] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.311270] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx group_id: 0x9120\n[    3.311416] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0 dev_id: 0x9020\n[    3.311425] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.311443] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx group_id: 0x9121\n[    3.311588] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0 dev_id: 0x9021\n[    3.311596] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.311616] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx group_id: 0x9130\n[    3.311759] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0 dev_id: 0x9030\n[    3.311768] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.311790] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx group_id: 0x9131\n[    3.311937] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0 dev_id: 0x9031\n[    3.311946] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.325469] GACT probability NOT on\n[    3.325482] Mirror/redirect action on\n[    3.325498] u32 classifier\n[    3.325500]     Actions configured\n[    3.325518] Netfilter messages via NETLINK v0.30.\n[    3.325560] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    3.325732] ctnetlink v0.93: registering with nfnetlink.\n[    3.326136] xt_time: kernel timezone is -0000\n[    3.326170] wireguard: WireGuard 1.0.20201112 loaded. See www.wireguard.com for information.\n[    3.326173] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    3.326245] IPv4 over IPsec tunneling driver\n[    3.326596] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    3.326715] arp_tables: (C) 2002 David S. Miller\n[    3.326821] Initializing XFRM netlink socket\n[    3.327042] NET: Registered protocol family 10\n[    3.337617] mip6: Mobile IPv6\n[    3.337629] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    3.338035] sit: IPv6 over IPv4 tunneling driver\n[    3.338450] NET: Registered protocol family 17\n[    3.338464] NET: Registered protocol family 15\n[    3.338487] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.\n[    3.338493] Ebtables v2.0 registered\n[    3.338578] l2tp_core: L2TP core driver, V2.0\n[    3.338587] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    3.338591] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    3.338604] l2tp_netlink: L2TP netlink interface\n[    3.338625] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    3.338630] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    3.339485] NET: Registered protocol family 27\n[    3.341379] IPC_RTR: ipc_router_create_log_ctx: Unable to create IPC logging for [local_IPCRTR]\n[    3.343433] subsys-pil-tz 17300000.qcom,lpass: for adsp segments only will be dumped.\n[    3.353993] subsys-pil-tz 5c00000.qcom,ssc: for slpi segments only will be dumped.\n[    3.354438] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    3.354881] platform 4080000.qcom,mss:qcom,mba-mem@0: assigned reserved memory node pil_mba_region@94100000\n[    3.355166] pil-q6v5-mss 4080000.qcom,mss: for modem segments only will be dumped.\n[    3.366981] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000000000000\n[    3.366985] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000000000000\n[    3.366989] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000000000000\n[    3.366991] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000000000000\n[    3.366994] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000000000000\n[    3.366997] sps:BAM 0x0000000000000000 is registered.\n[    3.367441] Invalid index Defaulting curr to 0\n[    3.368439] qpnp-pdphy 800f000.qcom,spmi:qcom,pmi8998@2:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    3.374816] thermal thermal_zone37: failed to read out thermal zone (-19)\n[    3.375847] spmi spmi-0: cleanup_irq apid=36 sid=0x2 per=0x41 irq=6\n[    3.376657] qcom,fg-gen3 800f000.qcom,spmi:qcom,pmi8998@2:qpnp,fg: Start WAR to set SP_SAT_CC_CLR_AUTO_BIT\n[    3.376963] qcom,fg-gen3 800f000.qcom,spmi:qcom,pmi8998@2:qpnp,fg: WAR: 0x13 reg value: 0xbf\n[    3.376993] qcom,fg-gen3 800f000.qcom,spmi:qcom,pmi8998@2:qpnp,fg: WAR: Bit 3 has been set, no WAR needed\n[    3.377074] FG: comp_temp_by_chg_current: failed to get POWER_SUPPLY_PROP_CURRENT_NOW rc = -61\n[    3.377079] FG: fg_gen3_probe: battery SOC:85 voltage: 4044423uV temp: 238 id: 0KOhms\n[    3.383600] SMB138X: smb138x_probe: SMB138X probed successfully mode=1\n[    3.383729] lge_battery: bm_get_property: Couldn't get property 50, rc=-61\n[    3.383733] lge_battery: bm_get_property: Couldn't get property 12, rc=-61\n[    3.383736] lge_battery: bm_get_property: Couldn't get property 44, rc=-61\n[    3.383751] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.383754] lge_battery: lge_battery_probe: bm_init fail\n[    3.390181] FG: fg_psy_get_property: unsupported property 4\n[    3.392740] FG: fg_get_time_to_full: battery profile is not loaded\n[    3.393952] ipa ipa3_smp2p_probe:5519 failed to enable irq wake\n[    3.395448] Invalid index Defaulting curr to 0\n[    3.396499] SMB138X: smb138x_get_prop_charger_temp: Couldnt read chg temp at 1th iteration rc = -61\n[    3.397741] SMB138X: smb138x_get_prop_connector_health: Couldn't read connector temperature rc=-61\n[    3.417490] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.417495] lge_battery: lge_battery_probe: bm_init fail\n[    3.426684] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.426691] lge_battery: lge_battery_probe: bm_init fail\n[    3.434786] EDAC DEVICE0: Giving out device to module soc:arm64-cpu-erp controller cache: DEV soc:arm64-cpu-erp (POLLED)\n[    3.435166] ARM64 CPU ERP: Could not find <cci-irq> IRQ property. Proceeding anyway.\n[    3.436435] Registered cp15_barrier emulation handler\n[    3.436446] Registered setend emulation handler\n[    3.436752] registered taskstats version 1\n[    3.436761] Loading compiled-in X.509 certificates\n[    3.438323] Loaded X.509 cert 'Easel: 2d9cb8fb66a52266cb3b00b3e3db335fadf908e4'\n[    3.440185] spss_utils [spss_init]: spss-utils driver Ver 1.2 13-Jan-2017.\n[    3.440475] spss_utils [spss_probe]: Initialization completed ok, firmware_name [spss2p].\n[    3.445007] msm-dwc3 a800000.ssusb: dwc3_msm_resume: exiting lpm\n[    3.449936] msm-dwc3 a800000.ssusb: DWC3 exited from low power mode\n[    3.449950] msm-dwc3 a800000.ssusb: dwc3_msm_suspend: Calling suspend 1997\n[    3.451104] msm-dwc3 a800000.ssusb: DWC3 in low power mode\n[    3.451563] fastrpc soc:qcom,msm-adsprpc-mem: for adsp_rh segments only will be dumped.\n[    3.451806] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_cpz_cb1 to group 25\n[    3.452951] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 26\n[    3.453469] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 27\n[    3.453926] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 28\n[    3.454363] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 29\n[    3.454804] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 30\n[    3.455246] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7 to group 31\n[    3.455721] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8 to group 32\n[    3.457226] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.457230] lge_battery: lge_battery_probe: bm_init fail\n[    3.465326] ngd_msm_ctrl 171c0000.slim: error creating ipc_logging context\n[    3.476023] ngd_msm_ctrl 17240000.slim: error creating ipc_logging context\n[    3.476288] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.476292] lge_battery: lge_battery_probe: bm_init fail\n[    3.494853] RNDIS_IPA module is loaded.\n[    3.495676] [KEY] gpio_keys_setup_key, error=-524, debounce(15, 15)\n[    3.495707] [KEY] keycode = 115, gpio = 126, irq = 324\n[    3.495713] [KEY] gpio_keys_setup_key, error=-524, debounce(15, 15)\n[    3.495733] [KEY] keycode = 222, gpio = 124, irq = 322\n[    3.495825] input: gpio-keys as /devices/soc/soc:gpio_keys/input/input2\n[    3.496093] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.496096] lge_battery: lge_battery_probe: bm_init fail\n[    3.504199] qcom,qpnp-rtc 800f000.qcom,spmi:qcom,pm8998@0:qcom,pm8998_rtc: setting system clock to 1970-04-19 21:34:00 UTC (9408840)\n[    3.505143] msm_thermal:create_thermal_debugfs Error creating debugfs dir:msm_thermal. err:-19\n[    3.505872] lmh_lite:lmh_parse_sensor Registering sensor:[GLM_soc]\n[    3.505878] lmh_interface:lmh_create_debugfs_nodes Error creating debugfs file:hw_trace_enable. err:-19\n[    3.506294] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.506297] lge_battery: lge_battery_probe: bm_init fail\n[    3.514393] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_cp1-]\n[    3.514548] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_cp0-]\n[    3.514718] soc:qcom,lmh supply vdd-apss not found, using dummy regulator\n[    3.514728] lmh_lite:lmh_get_sensor_devicetree Error getting ODCM thresh. err:-22\n[    3.517354] lmh_interface:lmh_debug_register Error creating debugfs dir:debug. err:-19\n[    3.517357] lmh_lite:lmh_debug_init Error registering debug ops. err:-19\n[    3.517361] lmh_lite:lmh_probe LMH debug init failed. err:-19\n[    3.518300] parse_cpu_levels: idx 1 503\n[    3.518303] parse_cpu_levels: idx 2 1744\n[    3.518306] parse_cpu_levels: idx 2 2222\n[    3.518388] parse_cpu_levels: idx 1 1301\n[    3.518391] parse_cpu_levels: idx 2 1820\n[    3.518393] parse_cpu_levels: idx 2 1999\n[    3.518399] calculate_residency: residency < 0 for LPM\n[    3.520874] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.520880] lge_battery: lge_battery_probe: bm_init fail\n[    3.529149] misc mnh_sm: mnh_ion_create_buffer: Ion cannot allocate buffer (-22)\n[    3.529156] misc mnh_sm: mnh_sm_probe: cannot claim ION buffer\n[    3.531991] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.531999] lge_battery: lge_battery_probe: bm_init fail\n[    3.539245] msm_pcie_enable: PCIe: Assert the reset of endpoint of RC0.\n[    3.543206] msm_pcie_enable: PCIe RC0 PHY is ready!\n[    3.544223] msm_pcie_enable: PCIe: Release the reset of endpoint of RC0.\n[    3.544555] misc mnh_sm: mnh_sm_ready_irq_handler: mnh device is ready to boot\n[    3.560585] msm_pcie_enable: PCIe RC0 link initialized\n[    3.560657] PCI host bridge /soc/qcom,pcie@01c00000 ranges:\n[    3.560666]   No bus range found for /soc/qcom,pcie@01c00000, using [bus 00-ff]\n[    3.560677]    IO 0x1b030000..0x1b04ffff -> 0x1b030000\n[    3.560684]   MEM 0x1b100000..0x1bffffff -> 0x1b100000\n[    3.560764] pci-msm 1c00000.qcom,pcie: PCI host bridge to bus 0000:00\n[    3.560770] pci_bus 0000:00: root bus resource [bus 00-ff]\n[    3.560776] pci_bus 0000:00: root bus resource [io  0x0000-0x1ffff] (bus address [0x1b030000-0x1b04ffff])\n[    3.560780] pci_bus 0000:00: root bus resource [mem 0x00000000-0x00efffff]\n[    3.560814] pci 0000:00:00.0: [17cb:0105] type 01 class 0x060400\n[    3.560886] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]\n[    3.560986] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold\n[    3.561092] iommu: Adding device 0000:00:00.0 to group 33\n[    3.561117] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring\n[    3.561270] pci 0000:01:00.0: [8086:3140] type 00 class 0x000000\n[    3.561407] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit pref]\n[    3.561467] pci 0000:01:00.0: reg 0x18: [mem 0x00000000-0x007fffff 64bit]\n[    3.561526] pci 0000:01:00.0: reg 0x20: [mem 0x00000000-0x003fffff 64bit pref]\n[    3.561581] pci 0000:01:00.0: setting pcie class\n[    3.561723] pci 0000:01:00.0: supports D1 D2\n[    3.561727] pci 0000:01:00.0: PME# supported from D0 D1 D3hot D3cold\n[    3.561851] iommu: Adding device 0000:01:00.0 to group 34\n[    3.561867] pci_bus 0000:01: busn_res: [bus 00-fe] end is updated to 01\n[    3.561924] pci 0000:00:00.0: BAR 8: assigned [mem 0x00000000-0x007fffff]\n[    3.561930] pci 0000:00:00.0: BAR 9: assigned [mem 0x00000000-0x005fffff 64bit pref]\n[    3.561936] pci 0000:00:00.0: BAR 0: assigned [mem 0x00000000-0x00000fff 64bit]\n[    3.561966] pci 0000:01:00.0: BAR 2: assigned [mem 0x00000000-0x007fffff 64bit]\n[    3.562015] pci 0000:01:00.0: BAR 4: assigned [mem 0x00000000-0x003fffff 64bit pref]\n[    3.562064] pci 0000:01:00.0: BAR 0: assigned [mem 0x00000000-0x00000fff 64bit pref]\n[    3.562113] pci 0000:00:00.0: PCI bridge to [bus 00]\n[    3.562131] pci 0000:00:00.0:   bridge window [mem 0x00000000-0x007fffff]\n[    3.562143] pci 0000:00:00.0:   bridge window [mem 0x00000000-0x005fffff 64bit pref]\n[    3.562276] pci 0000:00:00.0: enabling device (0000 -> 0002)\n[    3.562299] mnh_pci 0000:01:00.0: enabling device (0000 -> 0002)\n[    3.562875] mnh_pci 0000:01:00.0: vector :10 , msi_num:10, irq:755\n[    3.562986] mnh_pci 0000:01:00.0: request irq:756\n[    3.563047] mnh_pci 0000:01:00.0: request irq:757\n[    3.563111] mnh_pci 0000:01:00.0: request irq:758\n[    3.563174] mnh_pci 0000:01:00.0: request irq:759\n[    3.563232] mnh_pci 0000:01:00.0: request irq:760\n[    3.563292] mnh_pci 0000:01:00.0: request irq:763\n[    3.563352] mnh_pci 0000:01:00.0: request irq:764\n[    3.565332] mnh_pci 0000:01:00.0: attached to IOMMU\n[    3.565848] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.565851] lge_battery: lge_battery_probe: bm_init fail\n[    3.590025] msm_pcie_disable: PCIe: Assert the reset of endpoint of RC0.\n[    3.590054] misc mnh_sm: mnh_sm_ready_irq_handler: mnh device is ready to suspend\n[    3.591901] misc mnh_sm: MNH SM initialized successfully\n[    3.592359] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.592362] lge_battery: lge_battery_probe: bm_init fail\n[    3.600041] rmnet_ipa3 started initialization\n[    3.600986] qcom,cc-debug-8998 162000.qcom,debugcc: Registered debug mux\n[    3.601901] lge_battery: bm_init: Battery id is zero, deferring probe!\n[    3.601905] lge_battery: lge_battery_probe: bm_init fail\n[    3.609513] gfx_mem_acc_corner: disabling\n[    3.609570] apc0_pwrcl_corner: disabling\n[    3.609574] apc1_perfcl_corner: disabling\n[    3.609830] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    3.609918] clock_late_init: Removing enables held for handed-off clocks\n[    3.612806] ALSA device list:\n[    3.612811]   No soundcards found.\n[    3.614165] Freeing unused kernel memory: 6144K\n[    3.792545] of_batterydata_get_best_profile: lge_blt35_tocad_3620mah found\n[    3.797186] IRQ5 no longer affine to CPU2\n[    3.808296] IRQ5 no longer affine to CPU3\n[    3.810255] IRQ5 no longer affine to CPU4\n[    3.817435] IRQ5 no longer affine to CPU5\n[    3.821316] IRQ5 no longer affine to CPU7\n[    4.613258] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    4.613289] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[   63.051246] drv2624 6-005a: drv2624_firmware_load, ERROR!! firmware not found\n[   63.311254] tas2557s 7-004d: tas2557_fw_ready:\n[   63.311288] tas2557s 7-004d: tas2557s_PG21_uCDSP.bin firmware is not loaded.\n[ 4083.683964] IRQ5 no longer affine to CPU4\n"
  },
  {
    "path": "results/msm8998/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  3:       2138     GICv3  19 Edge      arch_timer\n  5:     410884     GICv3  39 Level     arch_mem_timer\n  6:          0     GICv3 483 Edge      smp2p\n  7:          0     GICv3 190 Edge      smp2p\n  8:          0     GICv3 210 Edge      smp2p\n 11:          0  pmic_arb 8388612 Edge      qpnp_kpdpwr_status\n 12:          0  pmic_arb 8454148 Edge      qpnp_resin_status\n 14:          0  pmic_arb 8716292 Edge      qpnp_kpdpwr_resin_bark\n 15:          0  pmic_arb 37748745 Edge      pm8998_tz\n 16:         10  pmic_arb 51380236 Edge      qpnp_vadc_interrupt\n 17:          0  pmic_arb 54525966 Edge      qpnp_adc_tm_interrupt\n 18:          0  pmic_arb 574619725 Edge      pmi8998_tz\n 19:          0  pmic_arb 560988177 Edge      sig-tx\n 20:          0  pmic_arb 561053713 Edge      sig-rx\n 21:          0  pmic_arb 561119249 Edge      msg-tx\n 22:          0  pmic_arb 561184785 Edge      msg-rx\n 23:          0  pmic_arb 561250321 Edge      msg-tx-failed\n 24:          0  pmic_arb 561315857 Edge      msg-tx-discarded\n 25:          0  pmic_arb 561381393 Edge      msg-rx-discarded\n 26:          0  pmic_arb 1026555970 Edge      qpnp_flash_led_fault_irq\n 27:          0  pmic_arb 1026752578 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 28:          0  pmic_arb 1026818114 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 29:          0  pmic_arb 1111490629 Edge      pm8005_tz\n 30:        206     GICv3 146 Level     msm_serial0\n 31:          0     GICv3 195 Level     ngd_slim_irq\n 33:          0     GICv3 323 Level     ngd_slim_irq\n 36:          0     GICv3  75 Edge      ARM64 primary DBE IRQ\n 37:          0     GICv3  76 Edge      ARM64 secondary DBE IRQ\n 39:          0     GICv3  73 Edge      ARM64 primary ext IRQ\n 40:          0     GICv3  74 Edge      ARM64 secondary ext IRQ\n 41:          0     GICv3  67 Edge      OSM IRQ\n 42:          0     GICv3  68 Edge      OSM IRQ\n 43:          0     GICv3 365 Edge      ipa\n 46:          0     GICv3 484 Edge      qcom,glink-smem-native-xprt-modem\n 47:          0     GICv3 189 Edge      qcom,glink-smem-native-xprt-adsp\n 48:          0     GICv3 211 Edge      qcom,glink-smem-native-xprt-dsps\n 49:        258     GICv3 200 Edge      qcom,glink-smem-native-xprt-rpm\n 50:          0     GICv3 380 Level     qcom,glink-mailbox-xprt-spss\n 51:        428     GICv3 297 Edge      ufshcd\n 52:          0     GICv3 379 Edge      hs_phy_irq\n 53:          0     GICv3 275 Edge      ss_phy_irq\n 54:          0     GICv3 212 Edge      msm_dwc3\n 55:          0     GICv3 194 Edge      adsp\n 56:          0     GICv3 480 Edge      modem\n 57:          0     GICv3 490 Level     tsens_interrupt\n 58:          0     GICv3 477 Level     tsens_critical_interrupt\n 59:          0     GICv3 216 Level     tsens_interrupt\n 60:          0  pmic_arb 606076988 Edge      bcl_ibat_interrupt\n 61:          0  pmic_arb 606208060 Edge      bcl_vbat_interrupt\n 62:          0     GICv3 462 Level     tsens_critical_interrupt\n 63:          0     GICv3 238 Level     sps\n 64:          0     GICv3 166 Level     lmh-interrupt\n 65:          0     GICv3 437 Edge      int_msi\n 70:          0     GICv3 310 Edge      int_global_int\n103:          0     GICv3 422 Edge      slpi\n104:          0     GICv3  35 Edge      apps_wdog_bark\n106:          0     GICv3 384 Level     spss\n107:          0     GICv3  22 Edge      arm-pmu\n124:          0     GICv3 317 Edge      cpr3\n125:          0     GICv3 203 Edge      7781b8.qcom,mpm\n126:          0     GICv3 396 Edge      arm-smmu-context-fault\n132:          0     GICv3 405 Edge      arm-smmu-context-fault\n133:          0     GICv3 406 Edge      arm-smmu-context-fault\n134:          0     GICv3 407 Edge      arm-smmu-context-fault\n135:          0     GICv3 408 Edge      arm-smmu-context-fault\n142:          0     GICv3 258 Level     arm-smmu-context-fault\n143:          0     GICv3 425 Level     arm-smmu-context-fault\n144:          0     GICv3 426 Level     arm-smmu-context-fault\n145:          0     GICv3 427 Level     arm-smmu-context-fault\n146:          0     GICv3 428 Level     arm-smmu-context-fault\n147:          0     GICv3 429 Level     arm-smmu-context-fault\n148:          0     GICv3 430 Level     arm-smmu-context-fault\n149:          0     GICv3 431 Level     arm-smmu-context-fault\n150:          0     GICv3 432 Level     arm-smmu-context-fault\n156:          0     GICv3 298 Level     arm-smmu-context-fault\n157:          0     GICv3 299 Level     arm-smmu-context-fault\n158:          0     GICv3 300 Level     arm-smmu-context-fault\n159:          0     GICv3 276 Level     arm-smmu-context-fault\n178:          0     GICv3 110 Edge      csiphy\n179:          0     GICv3 111 Edge      csiphy\n180:          0     GICv3 112 Edge      csiphy\n181:          0     GICv3 328 Edge      csid\n182:          0     GICv3 329 Edge      csid\n183:          0     GICv3 330 Edge      csid\n184:          0     GICv3 331 Edge      csid\n185:          0     GICv3 325 Edge      fd\n187:          0     GICv3 341 Edge      ispif\n188:          0     GICv3 346 Edge      vfe\n189:          0     GICv3 347 Edge      vfe\n190:          0     GICv3 327 Edge      cci\n193:          0     GICv3 319 Level     msm_vidc\n194:          0     GICv3 461 Level     vmem\n195:          0     GICv3 224 Edge      spdm_bw_hyp\n196:          0     GICv3 332 Level     kgsl-3d0\n224:          1   msmgpio  26 Edge      bcm15602-intb\n225:          2   msmgpio  27 Edge      mnh-ready\n260:          0   msmgpio  62 Edge      vl53l0_interrupt\n284:          2   msmgpio  86 Edge      soc:fp_fpc1020\n289:          1   msmgpio  91 Edge      bcm15602-resetb\n290:          0   msmgpio  92 Level     nq-nci\n322:          0   msmgpio 124 Edge      hall_ic\n324:          0   msmgpio 126 Edge      volume_up\n351:          0     GICv3 115 Edge      MDSS\n353:          0     GICv3 271 Level     sps\n354:          0     GICv3 131 Level     i2c-msm-v2-irq\n355:         15     GICv3 132 Level     i2c-msm-v2-irq\n356:        157     GICv3 133 Level     i2c-msm-v2-irq\n357:          0     GICv3 134 Level     i2c-msm-v2-irq\n358:        459     GICv3 135 Level     i2c-msm-v2-irq\n359:          0     GICv3 127 Level     c175000.spi\n361:          0     GICv3 136 Level     c1b8000.spi\n364:          0     GICv3  69 Level     limits_sensor-00\n365:          0     GICv3  70 Level     limits_sensor-01\n366:          0  pmic_arb 1036124238 Edge      ibb-sc-err\n367:          0  pmic_arb 1038090313 Edge      lab-vreg-ok\n368:          0  pmic_arb 1038155849 Edge      lab-sc-err\n497:          0     GICv3 381 Level     qsee_ipc_irq_spss\n498:          0  pmic_arb 219152615 Level     i2c_pmic_stat_irq\n499:          0  i2c_pmic_irq_chip 13825 Edge      eoc\n500:          0  pmic_arb 101777421 Edge      qpnp_rtc_alarm\n501:          0      mdss   2 Edge      sde_rotator_r3\n502:          0  pmic_arb 553648161 Edge      chg-error\n503:          0  pmic_arb 553713697 Edge      chg-state-change\n504:          0  pmic_arb 553779233 Edge      step-chg-state-change\n505:          0  pmic_arb 553844769 Edge      step-chg-soc-update-fail\n506:          0  pmic_arb 553910305 Edge      step-chg-soc-update-request\n507:          0  pmic_arb 554696738 Edge      otg-fail\n508:          0  pmic_arb 554762274 Edge      otg-overcurrent\n509:          0  pmic_arb 554827810 Edge      otg-oc-dis-sw-sts\n510:          0  pmic_arb 554893346 Edge      testmode-change-detect\n511:          0  pmic_arb 555745315 Edge      bat-temp\n512:          0  pmic_arb 555810851 Edge      bat-ocp\n513:          0  pmic_arb 555876387 Edge      bat-ov\n514:          0  pmic_arb 555941923 Edge      bat-low\n515:          0  pmic_arb 556007459 Edge      bat-therm-or-id-missing\n516:          0  pmic_arb 556072995 Edge      bat-terminal-missing\n517:          0  pmic_arb 556793926 Edge      usbin-collapse\n518:          0  pmic_arb 556859462 Edge      usbin-lt-3p6v\n519:          0  pmic_arb 556924998 Edge      usbin-uv\n520:          0  pmic_arb 556990534 Edge      usbin-ov\n521:          0  pmic_arb 557056070 Edge      usbin-plugin\n522:          0  pmic_arb 557121606 Edge      usbin-src-change\n523:          0  pmic_arb 557187142 Edge      usbin-icl-change\n524:          0  pmic_arb 557252678 Edge      type-c-change\n525:          0  pmic_arb 557842499 Edge      dcin-collapse\n526:          0  pmic_arb 557908035 Edge      dcin-lt-3p6v\n527:          0  pmic_arb 557973571 Edge      dcin-uv\n528:          0  pmic_arb 558039107 Edge      dcin-ov\n529:          0  pmic_arb 558104643 Edge      dcin-plugin\n530:          0  pmic_arb 558170179 Edge      div2-en-dg\n531:          0  pmic_arb 558235715 Edge      dcin-icl-change\n534:          0  pmic_arb 560070695 Edge      aicl-fail\n535:          0  pmic_arb 560136231 Edge      aicl-done\n536:          0  pmic_arb 560201767 Edge      high-duty-cycle\n537:          0  pmic_arb 560267303 Edge      input-current-limiting\n538:          0  pmic_arb 560332839 Edge      temperature-change\n539:          0  pmic_arb 560398375 Edge      switcher-power-ok\n540:          0  pmic_arb 207618268 Level     tas2557s\n541:          0  pmic_arb 208666845 Level     tas2557s\n542:          0  smp2p_gpio   0 Edge      modem\n543:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n544:          0  smp2p_gpio   2 Edge      modem\n545:          0  smp2p_gpio   3 Edge      modem\n574:          0  smp2p_gpio   0 Edge      adsp\n575:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n576:          0  smp2p_gpio   2 Edge      adsp\n577:          0  smp2p_gpio   3 Edge      adsp\n606:          0  smp2p_gpio   0 Edge      slpi\n607:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n608:          0  smp2p_gpio   2 Edge      slpi\n609:          0  smp2p_gpio   3 Edge      slpi\n638:          0  smp2p_gpio   0 Edge      ipa_smp2p_clk_vote\n734:          0     GICv3 163 Edge      dwc3\n736:          1  pmic_arb 603979834 Edge      soc-update\n737:          0  pmic_arb 604045370 Edge      soc-ready\n738:          0  pmic_arb 604110906 Edge      bsoc-delta\n739:         14  pmic_arb 604176442 Edge      msoc-delta\n740:          0  pmic_arb 604241978 Edge      msoc-low\n741:          0  pmic_arb 604307514 Edge      msoc-empty\n742:          1  pmic_arb 604373050 Edge      msoc-high\n743:          0  pmic_arb 604438586 Edge      msoc-full\n744:          0  pmic_arb 605028388 Edge      vbatt-pred-delta\n745:          0  pmic_arb 605093924 Edge      vbatt-low\n746:          0  pmic_arb 605159460 Edge      esr-delta\n747:          0  pmic_arb 605224996 Edge      batt-missing\n748:          2  pmic_arb 605421604 Edge      batt-temp-delta\n749:        733  pmic_arb 608174142 Edge      ima-rdy\n750:          0  pmic_arb 608239678 Edge      mem-xcp\n751:          0  pmic_arb 608305214 Edge      dma-grant\n752:          0  i2c_pmic_irq_chip 4098 Edge      chg-state-change\n753:          0  i2c_pmic_irq_chip 5634 Edge      wdog-bark\n754:          0  i2c_pmic_irq_chip 5696 Edge      temperature-change\n756:          0  msm-pcie-msi   1 Edge      mnh_pci\n757:          0  msm-pcie-msi   2 Edge      mnh_pci\n758:          0  msm-pcie-msi   3 Edge      mnh_pci\n759:          0  msm-pcie-msi   4 Edge      mnh_pci\n760:          0  msm-pcie-msi   5 Edge      mnh_pci\n763:          0  msm-pcie-msi   8 Edge      mnh_pci\n764:          0  msm-pcie-msi   9 Edge      mnh_pci\nIPI0:       168       Rescheduling interrupts\nIPI1:         0       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:       128       Timer broadcast interrupts\nIPI4:         0       IRQ work interrupts\nIPI5:         0       CPU wakeup interrupts\nIPI6:         0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/msm8998/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  3:       1093         62         62         62         62         62         62         61     GICv3  19 Edge      arch_timer\n  5:          0          0          0          0          0          0          0          0     GICv3  39 Level     arch_mem_timer\n  6:          0          0          0          0          0          0          0          0     GICv3 483 Edge      smp2p\n  7:          0          0          0          0          0          0          0          0     GICv3 190 Edge      smp2p\n  8:          0          0          0          0          0          0          0          0     GICv3 210 Edge      smp2p\n 11:          0          0          0          0          0          0          0          0  pmic_arb 8388612 Edge      qpnp_kpdpwr_status\n 12:          0          0          0          0          0          0          0          0  pmic_arb 8454148 Edge      qpnp_resin_status\n 14:          0          0          0          0          0          0          0          0  pmic_arb 8716292 Edge      qpnp_kpdpwr_resin_bark\n 15:          0          0          0          0          0          0          0          0  pmic_arb 37748745 Edge      pm8998_tz\n 16:          9          0          0          0          0          0          0          0  pmic_arb 51380236 Edge      qpnp_vadc_interrupt\n 17:          0          0          0          0          0          0          0          0  pmic_arb 54525966 Edge      qpnp_adc_tm_interrupt\n 18:          0          0          0          0          0          0          0          0  pmic_arb 574619725 Edge      pmi8998_tz\n 19:          0          0          0          0          0          0          0          0  pmic_arb 560988177 Edge      sig-tx\n 20:          0          0          0          0          0          0          0          0  pmic_arb 561053713 Edge      sig-rx\n 21:          0          0          0          0          0          0          0          0  pmic_arb 561119249 Edge      msg-tx\n 22:          0          0          0          0          0          0          0          0  pmic_arb 561184785 Edge      msg-rx\n 23:          0          0          0          0          0          0          0          0  pmic_arb 561250321 Edge      msg-tx-failed\n 24:          0          0          0          0          0          0          0          0  pmic_arb 561315857 Edge      msg-tx-discarded\n 25:          0          0          0          0          0          0          0          0  pmic_arb 561381393 Edge      msg-rx-discarded\n 26:          0          0          0          0          0          0          0          0  pmic_arb 1026555970 Edge      qpnp_flash_led_fault_irq\n 27:          0          0          0          0          0          0          0          0  pmic_arb 1026752578 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 28:          0          0          0          0          0          0          0          0  pmic_arb 1026818114 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 29:          0          0          0          0          0          0          0          0  pmic_arb 1111490629 Edge      pm8005_tz\n 30:          0          0          0          0          0          0          0          0     GICv3 146 Level     msm_serial0\n 31:          0          0          0          0          0          0          0          0     GICv3 195 Level     ngd_slim_irq\n 33:          0          0          0          0          0          0          0          0     GICv3 323 Level     ngd_slim_irq\n 36:          0          0          0          0          0          0          0          0     GICv3  75 Edge      ARM64 primary DBE IRQ\n 37:          0          0          0          0          0          0          0          0     GICv3  76 Edge      ARM64 secondary DBE IRQ\n 39:          0          0          0          0          0          0          0          0     GICv3  73 Edge      ARM64 primary ext IRQ\n 40:          0          0          0          0          0          0          0          0     GICv3  74 Edge      ARM64 secondary ext IRQ\n 41:          0          0          0          0          0          0          0          0     GICv3  67 Edge      OSM IRQ\n 42:          0          0          0          0          0          0          0          0     GICv3  68 Edge      OSM IRQ\n 43:          0          0          0          0          0          0          0          0     GICv3 365 Edge      ipa\n 46:          0          0          0          0          0          0          0          0     GICv3 484 Edge      qcom,glink-smem-native-xprt-modem\n 47:          0          0          0          0          0          0          0          0     GICv3 189 Edge      qcom,glink-smem-native-xprt-adsp\n 48:          0          0          0          0          0          0          0          0     GICv3 211 Edge      qcom,glink-smem-native-xprt-dsps\n 49:        195          0          0          0          0          0          0          0     GICv3 200 Edge      qcom,glink-smem-native-xprt-rpm\n 50:          0          0          0          0          0          0          0          0     GICv3 380 Level     qcom,glink-mailbox-xprt-spss\n 51:        417          0          0          0          0          0          0          0     GICv3 297 Edge      ufshcd\n 52:          0          0          0          0          0          0          0          0     GICv3 379 Edge      hs_phy_irq\n 53:          0          0          0          0          0          0          0          0     GICv3 275 Edge      ss_phy_irq\n 54:          0          0          0          0          0          0          0          0     GICv3 212 Edge      msm_dwc3\n 55:          0          0          0          0          0          0          0          0     GICv3 194 Edge      adsp\n 56:          0          0          0          0          0          0          0          0     GICv3 480 Edge      modem\n 57:          0          0          0          0          0          0          0          0     GICv3 490 Level     tsens_interrupt\n 58:          0          0          0          0          0          0          0          0     GICv3 477 Level     tsens_critical_interrupt\n 59:          0          0          0          0          0          0          0          0     GICv3 216 Level     tsens_interrupt\n 60:          0          0          0          0          0          0          0          0  pmic_arb 606076988 Edge      bcl_ibat_interrupt\n 61:          0          0          0          0          0          0          0          0  pmic_arb 606208060 Edge      bcl_vbat_interrupt\n 62:          0          0          0          0          0          0          0          0     GICv3 462 Level     tsens_critical_interrupt\n 63:          0          0          0          0          0          0          0          0     GICv3 238 Level     sps\n 64:          0          0          0          0          0          0          0          0     GICv3 166 Level     lmh-interrupt\n 65:          0          0          0          0          0          0          0          0     GICv3 437 Edge      int_msi\n 70:          0          0          0          0          0          0          0          0     GICv3 310 Edge      int_global_int\n103:          0          0          0          0          0          0          0          0     GICv3 422 Edge      slpi\n104:          0          0          0          0          0          0          0          0     GICv3  35 Edge      apps_wdog_bark\n106:          0          0          0          0          0          0          0          0     GICv3 384 Level     spss\n107:          0          0          0          0          0          0          0          0     GICv3  22 Edge      arm-pmu\n124:          0          0          0          0          0          0          0          0     GICv3 317 Edge      cpr3\n125:          0          0          0          0          0          0          0          0     GICv3 203 Edge      7781b8.qcom,mpm\n126:          0          0          0          0          0          0          0          0     GICv3 396 Edge      arm-smmu-context-fault\n132:          0          0          0          0          0          0          0          0     GICv3 405 Edge      arm-smmu-context-fault\n133:          0          0          0          0          0          0          0          0     GICv3 406 Edge      arm-smmu-context-fault\n134:          0          0          0          0          0          0          0          0     GICv3 407 Edge      arm-smmu-context-fault\n135:          0          0          0          0          0          0          0          0     GICv3 408 Edge      arm-smmu-context-fault\n142:          0          0          0          0          0          0          0          0     GICv3 258 Level     arm-smmu-context-fault\n143:          0          0          0          0          0          0          0          0     GICv3 425 Level     arm-smmu-context-fault\n144:          0          0          0          0          0          0          0          0     GICv3 426 Level     arm-smmu-context-fault\n145:          0          0          0          0          0          0          0          0     GICv3 427 Level     arm-smmu-context-fault\n146:          0          0          0          0          0          0          0          0     GICv3 428 Level     arm-smmu-context-fault\n147:          0          0          0          0          0          0          0          0     GICv3 429 Level     arm-smmu-context-fault\n148:          0          0          0          0          0          0          0          0     GICv3 430 Level     arm-smmu-context-fault\n149:          0          0          0          0          0          0          0          0     GICv3 431 Level     arm-smmu-context-fault\n150:          0          0          0          0          0          0          0          0     GICv3 432 Level     arm-smmu-context-fault\n156:          0          0          0          0          0          0          0          0     GICv3 298 Level     arm-smmu-context-fault\n157:          0          0          0          0          0          0          0          0     GICv3 299 Level     arm-smmu-context-fault\n158:          0          0          0          0          0          0          0          0     GICv3 300 Level     arm-smmu-context-fault\n159:          0          0          0          0          0          0          0          0     GICv3 276 Level     arm-smmu-context-fault\n178:          0          0          0          0          0          0          0          0     GICv3 110 Edge      csiphy\n179:          0          0          0          0          0          0          0          0     GICv3 111 Edge      csiphy\n180:          0          0          0          0          0          0          0          0     GICv3 112 Edge      csiphy\n181:          0          0          0          0          0          0          0          0     GICv3 328 Edge      csid\n182:          0          0          0          0          0          0          0          0     GICv3 329 Edge      csid\n183:          0          0          0          0          0          0          0          0     GICv3 330 Edge      csid\n184:          0          0          0          0          0          0          0          0     GICv3 331 Edge      csid\n185:          0          0          0          0          0          0          0          0     GICv3 325 Edge      fd\n187:          0          0          0          0          0          0          0          0     GICv3 341 Edge      ispif\n188:          0          0          0          0          0          0          0          0     GICv3 346 Edge      vfe\n189:          0          0          0          0          0          0          0          0     GICv3 347 Edge      vfe\n190:          0          0          0          0          0          0          0          0     GICv3 327 Edge      cci\n193:          0          0          0          0          0          0          0          0     GICv3 319 Level     msm_vidc\n194:          0          0          0          0          0          0          0          0     GICv3 461 Level     vmem\n195:          0          0          0          0          0          0          0          0     GICv3 224 Edge      spdm_bw_hyp\n196:          0          0          0          0          0          0          0          0     GICv3 332 Level     kgsl-3d0\n224:          1          0          0          0          0          0          0          0   msmgpio  26 Edge      bcm15602-intb\n225:          2          0          0          0          0          0          0          0   msmgpio  27 Edge      mnh-ready\n260:          0          0          0          0          0          0          0          0   msmgpio  62 Edge      vl53l0_interrupt\n284:          2          0          0          0          0          0          0          0   msmgpio  86 Edge      soc:fp_fpc1020\n289:          1          0          0          0          0          0          0          0   msmgpio  91 Edge      bcm15602-resetb\n290:          0          0          0          0          0          0          0          0   msmgpio  92 Level     nq-nci\n322:          0          0          0          0          0          0          0          0   msmgpio 124 Edge      hall_ic\n324:          0          0          0          0          0          0          0          0   msmgpio 126 Edge      volume_up\n351:          0          0          0          0          0          0          0          0     GICv3 115 Edge      MDSS\n353:          0          0          0          0          0          0          0          0     GICv3 271 Level     sps\n354:          0          0          0          0          0          0          0          0     GICv3 131 Level     i2c-msm-v2-irq\n355:         15          0          0          0          0          0          0          0     GICv3 132 Level     i2c-msm-v2-irq\n356:        131          0          0          0          0          0          0          0     GICv3 133 Level     i2c-msm-v2-irq\n357:          0          0          0          0          0          0          0          0     GICv3 134 Level     i2c-msm-v2-irq\n358:        459          0          0          0          0          0          0          0     GICv3 135 Level     i2c-msm-v2-irq\n359:          0          0          0          0          0          0          0          0     GICv3 127 Level     c175000.spi\n361:          0          0          0          0          0          0          0          0     GICv3 136 Level     c1b8000.spi\n364:          0          0          0          0          0          0          0          0     GICv3  69 Level     limits_sensor-00\n365:          0          0          0          0          0          0          0          0     GICv3  70 Level     limits_sensor-01\n366:          0          0          0          0          0          0          0          0  pmic_arb 1036124238 Edge      ibb-sc-err\n367:          0          0          0          0          0          0          0          0  pmic_arb 1038090313 Edge      lab-vreg-ok\n368:          0          0          0          0          0          0          0          0  pmic_arb 1038155849 Edge      lab-sc-err\n497:          0          0          0          0          0          0          0          0     GICv3 381 Level     qsee_ipc_irq_spss\n498:          0          0          0          0          0          0          0          0  pmic_arb 219152615 Level     i2c_pmic_stat_irq\n499:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 13825 Edge      eoc\n500:          0          0          0          0          0          0          0          0  pmic_arb 101777421 Edge      qpnp_rtc_alarm\n501:          0          0          0          0          0          0          0          0      mdss   2 Edge      sde_rotator_r3\n502:          0          0          0          0          0          0          0          0  pmic_arb 553648161 Edge      chg-error\n503:          0          0          0          0          0          0          0          0  pmic_arb 553713697 Edge      chg-state-change\n504:          0          0          0          0          0          0          0          0  pmic_arb 553779233 Edge      step-chg-state-change\n505:          0          0          0          0          0          0          0          0  pmic_arb 553844769 Edge      step-chg-soc-update-fail\n506:          0          0          0          0          0          0          0          0  pmic_arb 553910305 Edge      step-chg-soc-update-request\n507:          0          0          0          0          0          0          0          0  pmic_arb 554696738 Edge      otg-fail\n508:          0          0          0          0          0          0          0          0  pmic_arb 554762274 Edge      otg-overcurrent\n509:          0          0          0          0          0          0          0          0  pmic_arb 554827810 Edge      otg-oc-dis-sw-sts\n510:          0          0          0          0          0          0          0          0  pmic_arb 554893346 Edge      testmode-change-detect\n511:          0          0          0          0          0          0          0          0  pmic_arb 555745315 Edge      bat-temp\n512:          0          0          0          0          0          0          0          0  pmic_arb 555810851 Edge      bat-ocp\n513:          0          0          0          0          0          0          0          0  pmic_arb 555876387 Edge      bat-ov\n514:          0          0          0          0          0          0          0          0  pmic_arb 555941923 Edge      bat-low\n515:          0          0          0          0          0          0          0          0  pmic_arb 556007459 Edge      bat-therm-or-id-missing\n516:          0          0          0          0          0          0          0          0  pmic_arb 556072995 Edge      bat-terminal-missing\n517:          0          0          0          0          0          0          0          0  pmic_arb 556793926 Edge      usbin-collapse\n518:          0          0          0          0          0          0          0          0  pmic_arb 556859462 Edge      usbin-lt-3p6v\n519:          0          0          0          0          0          0          0          0  pmic_arb 556924998 Edge      usbin-uv\n520:          0          0          0          0          0          0          0          0  pmic_arb 556990534 Edge      usbin-ov\n521:          0          0          0          0          0          0          0          0  pmic_arb 557056070 Edge      usbin-plugin\n522:          0          0          0          0          0          0          0          0  pmic_arb 557121606 Edge      usbin-src-change\n523:          0          0          0          0          0          0          0          0  pmic_arb 557187142 Edge      usbin-icl-change\n524:          0          0          0          0          0          0          0          0  pmic_arb 557252678 Edge      type-c-change\n525:          0          0          0          0          0          0          0          0  pmic_arb 557842499 Edge      dcin-collapse\n526:          0          0          0          0          0          0          0          0  pmic_arb 557908035 Edge      dcin-lt-3p6v\n527:          0          0          0          0          0          0          0          0  pmic_arb 557973571 Edge      dcin-uv\n528:          0          0          0          0          0          0          0          0  pmic_arb 558039107 Edge      dcin-ov\n529:          0          0          0          0          0          0          0          0  pmic_arb 558104643 Edge      dcin-plugin\n530:          0          0          0          0          0          0          0          0  pmic_arb 558170179 Edge      div2-en-dg\n531:          0          0          0          0          0          0          0          0  pmic_arb 558235715 Edge      dcin-icl-change\n534:          0          0          0          0          0          0          0          0  pmic_arb 560070695 Edge      aicl-fail\n535:          0          0          0          0          0          0          0          0  pmic_arb 560136231 Edge      aicl-done\n536:          0          0          0          0          0          0          0          0  pmic_arb 560201767 Edge      high-duty-cycle\n537:          0          0          0          0          0          0          0          0  pmic_arb 560267303 Edge      input-current-limiting\n538:          0          0          0          0          0          0          0          0  pmic_arb 560332839 Edge      temperature-change\n539:          0          0          0          0          0          0          0          0  pmic_arb 560398375 Edge      switcher-power-ok\n540:          0          0          0          0          0          0          0          0  pmic_arb 207618268 Level     tas2557s\n541:          0          0          0          0          0          0          0          0  pmic_arb 208666845 Level     tas2557s\n542:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      modem\n543:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n544:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      modem\n545:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      modem\n574:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      adsp\n575:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n576:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      adsp\n577:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      adsp\n606:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      slpi\n607:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n608:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      slpi\n609:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      slpi\n638:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      ipa_smp2p_clk_vote\n734:          0          0          0          0          0          0          0          0     GICv3 163 Edge      dwc3\n736:          1          0          0          0          0          0          0          0  pmic_arb 603979834 Edge      soc-update\n737:          0          0          0          0          0          0          0          0  pmic_arb 604045370 Edge      soc-ready\n738:          0          0          0          0          0          0          0          0  pmic_arb 604110906 Edge      bsoc-delta\n739:          0          0          0          0          0          0          0          0  pmic_arb 604176442 Edge      msoc-delta\n740:          0          0          0          0          0          0          0          0  pmic_arb 604241978 Edge      msoc-low\n741:          0          0          0          0          0          0          0          0  pmic_arb 604307514 Edge      msoc-empty\n742:          0          0          0          0          0          0          0          0  pmic_arb 604373050 Edge      msoc-high\n743:          0          0          0          0          0          0          0          0  pmic_arb 604438586 Edge      msoc-full\n744:          0          0          0          0          0          0          0          0  pmic_arb 605028388 Edge      vbatt-pred-delta\n745:          0          0          0          0          0          0          0          0  pmic_arb 605093924 Edge      vbatt-low\n746:          0          0          0          0          0          0          0          0  pmic_arb 605159460 Edge      esr-delta\n747:          0          0          0          0          0          0          0          0  pmic_arb 605224996 Edge      batt-missing\n748:          0          0          0          0          0          0          0          0  pmic_arb 605421604 Edge      batt-temp-delta\n749:         63          0          0          0          0          0          0          0  pmic_arb 608174142 Edge      ima-rdy\n750:          0          0          0          0          0          0          0          0  pmic_arb 608239678 Edge      mem-xcp\n751:          0          0          0          0          0          0          0          0  pmic_arb 608305214 Edge      dma-grant\n752:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4098 Edge      chg-state-change\n753:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 5634 Edge      wdog-bark\n754:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 5696 Edge      temperature-change\n756:          0          0          0          0          0          0          0          0  msm-pcie-msi   1 Edge      mnh_pci\n757:          0          0          0          0          0          0          0          0  msm-pcie-msi   2 Edge      mnh_pci\n758:          0          0          0          0          0          0          0          0  msm-pcie-msi   3 Edge      mnh_pci\n759:          0          0          0          0          0          0          0          0  msm-pcie-msi   4 Edge      mnh_pci\n760:          0          0          0          0          0          0          0          0  msm-pcie-msi   5 Edge      mnh_pci\n763:          0          0          0          0          0          0          0          0  msm-pcie-msi   8 Edge      mnh_pci\n764:          0          0          0          0          0          0          0          0  msm-pcie-msi   9 Edge      mnh_pci\nIPI0:         4         75         75         75         75         75         74         73       Rescheduling interrupts\nIPI1:         0         44         45         45         44         44         44         44       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI4:         0          0          0          0          0          0          0          0       IRQ work interrupts\nIPI5:         0          0          0          0          0          0          0          0       CPU wakeup interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/msm8998/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [ksoftirqd/0]\n    5 root      0:00 [kworker/0:0H]\n    6 root      0:00 [kworker/u16:0]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [migration/1]\n   15 root      0:00 [ksoftirqd/1]\n   16 root      0:00 [kworker/1:0]\n   17 root      0:00 [kworker/1:0H]\n   18 root      0:00 [rcuop/1]\n   19 root      0:00 [rcuos/1]\n   20 root      0:00 [rcuob/1]\n   21 root      0:00 [migration/2]\n   22 root      0:00 [ksoftirqd/2]\n   23 root      0:00 [kworker/2:0]\n   24 root      0:00 [kworker/2:0H]\n   25 root      0:00 [rcuop/2]\n   26 root      0:00 [rcuos/2]\n   27 root      0:00 [rcuob/2]\n   28 root      0:00 [migration/3]\n   29 root      0:00 [ksoftirqd/3]\n   30 root      0:00 [kworker/3:0]\n   31 root      0:00 [kworker/3:0H]\n   32 root      0:00 [rcuop/3]\n   33 root      0:00 [rcuos/3]\n   34 root      0:00 [rcuob/3]\n   35 root      0:00 [migration/4]\n   36 root      0:00 [ksoftirqd/4]\n   37 root      0:00 [kworker/4:0]\n   38 root      0:00 [kworker/4:0H]\n   39 root      0:00 [rcuop/4]\n   40 root      0:00 [rcuos/4]\n   41 root      0:00 [rcuob/4]\n   42 root      0:00 [migration/5]\n   43 root      0:00 [ksoftirqd/5]\n   44 root      0:00 [kworker/5:0]\n   45 root      0:00 [kworker/5:0H]\n   46 root      0:00 [rcuop/5]\n   47 root      0:00 [rcuos/5]\n   48 root      0:00 [rcuob/5]\n   49 root      0:00 [migration/6]\n   50 root      0:00 [ksoftirqd/6]\n   51 root      0:00 [kworker/6:0]\n   52 root      0:00 [kworker/6:0H]\n   53 root      0:00 [rcuop/6]\n   54 root      0:00 [rcuos/6]\n   55 root      0:00 [rcuob/6]\n   56 root      0:00 [migration/7]\n   57 root      0:00 [ksoftirqd/7]\n   58 root      0:00 [kworker/7:0]\n   59 root      0:00 [kworker/7:0H]\n   60 root      0:00 [rcuop/7]\n   61 root      0:00 [rcuos/7]\n   62 root      0:00 [rcuob/7]\n   63 root      0:00 [kdevtmpfs]\n   64 root      0:00 [netns]\n   65 root      0:00 [perf]\n   66 root      0:00 [smd_channel_clo]\n   67 root      0:00 [dsps_smd_trans_]\n   68 root      0:00 [lpass_smd_trans]\n   69 root      0:00 [mpss_smd_trans_]\n   70 root      0:00 [wcnss_smd_trans]\n   71 root      0:00 [rpm_smd_trans_g]\n   72 root      0:00 [ipa_usb_wq]\n   73 root      0:00 [kworker/0:1]\n   74 root      0:00 [smem_native_mps]\n   75 root      0:00 [mpss_smem_glink]\n   76 root      0:00 [smem_native_lpa]\n   77 root      0:00 [lpass_smem_glin]\n   78 root      0:00 [smem_native_dsp]\n   79 root      0:00 [dsps_smem_glink]\n   80 root      0:00 [smem_native_rpm]\n   81 root      0:00 [rpm_smem_glink_]\n   82 root      0:00 [smem_native_sps]\n   83 root      0:00 [spss_mailbox_gl]\n   84 root      0:00 [msm_watchdog]\n   85 root      0:00 [deferwq]\n   87 root      0:00 [irq/124-cpr3]\n   88 root      0:00 [mpm]\n   89 root      0:05 [kworker/u16:2]\n   90 root      0:00 [writeback]\n   91 root      0:00 [kcompactd0]\n   92 root      0:00 [crypto]\n   93 root      0:00 [bioset]\n   94 root      0:00 [kblockd]\n   95 root      0:00 [md]\n   96 root      0:00 [edac-poller]\n   97 root      0:00 [devfreq_wq]\n   98 root      0:00 [governor_msm_ad]\n   99 root      0:00 [cfg80211]\n  100 root      0:00 [irq/366-ibb-sc-]\n  101 root      0:00 [irq/367-lab-vre]\n  102 root      0:00 [irq/368-lab-sc-]\n  103 root      0:00 [irq/132-arm-smm]\n  104 root      0:00 [ipa_power_mgmt]\n  105 root      0:00 [transport_power]\n  106 root      0:00 [ipa_rm_wq]\n  107 root      0:00 [ipa_interrupt_w]\n  108 root      0:00 [irq/133-arm-smm]\n  109 root      0:00 [irq/134-arm-smm]\n  110 root      0:00 [irq/61-bcl_vbat]\n  111 root      0:00 [irq/60-bcl_ibat]\n  112 root      0:00 [therm_core:noti]\n  113 root      0:00 [therm_core:noti]\n  114 root      0:00 [therm_core:noti]\n  115 root      0:00 [therm_core:noti]\n  141 root      0:00 [power_off_alarm]\n  142 root      0:00 [kswapd0]\n  143 root      0:00 [vmstat]\n  144 root      0:00 [fsnotify_mark]\n  176 root      0:00 [ad_calc_wq]\n  177 root      0:00 [mdss_dsi_event]\n  178 root      0:00 [mdss_dsi_dba]\n  179 root      0:00 [mdss_display_wa]\n  180 root      0:00 [cwb_wq]\n  181 root      0:00 [vsync_retire_wo]\n  182 root      0:00 [cwb_wq]\n  183 root      0:00 [glink_ssr_wq]\n  184 root      0:00 [glink_lbsrv]\n  185 root      0:00 [spi_wdsp]\n  186 root      0:00 [wdsp_spi_glink_]\n  187 root      0:00 [glink_xprt_wq]\n  188 root      0:00 [IPCRTR_mpss_sme]\n  189 root      0:00 [IPCRTR_lpass_sm]\n  190 root      0:00 [IPCRTR_dsps_sme]\n  191 root      0:00 [apr_driver]\n  192 root      0:00 [glink_pkt_wq]\n  193 root      0:00 [mem_share_svc]\n  195 root      0:00 [qmi_hndl0000000]\n  196 root      0:00 [irq/135-arm-smm]\n  197 root      0:00 [qmi_svc_event_w]\n  198 root      0:00 [msm_ipc_router]\n  199 root      0:00 [servloc_wq]\n  200 root      0:00 [tty_worker_thre]\n  201 root      0:00 [tty_worker_thre]\n  202 root      0:00 [tty_worker_thre]\n  203 root      0:00 [tty_worker_thre]\n  204 root      0:00 [tty_worker_thre]\n  205 root      0:00 [tty_worker_thre]\n  206 root      0:00 [tty_worker_thre]\n  207 root      0:00 [k_hsuart]\n  208 root      0:00 [msm_serial_hs_0]\n  209 root      0:00 [msm_serial_hs_0]\n  210 root      0:00 [hwrng]\n  212 root      0:00 [diag_real_time_]\n  213 root      0:00 [diag_wq]\n  214 root      0:00 [DIAG_USB_diag]\n  215 root      0:00 [diag_cntl_wq]\n  216 root      0:00 [diag_dci_wq]\n  217 root      0:00 [DIAG_SMD_MODEM_]\n  218 root      0:00 [DIAG_SMD_MODEM_]\n  219 root      0:00 [DIAG_SMD_MODEM_]\n  220 root      0:00 [DIAG_SMD_MODEM_]\n  221 root      0:00 [DIAG_SMD_MODEM_]\n  222 root      0:00 [DIAG_SMD_LPASS_]\n  223 root      0:00 [DIAG_SMD_LPASS_]\n  224 root      0:00 [DIAG_SMD_LPASS_]\n  225 root      0:00 [DIAG_SMD_LPASS_]\n  226 root      0:00 [DIAG_SMD_LPASS_]\n  227 root      0:00 [DIAG_SMD_WCNSS_]\n  228 root      0:00 [DIAG_SMD_WCNSS_]\n  229 root      0:00 [DIAG_SMD_WCNSS_]\n  230 root      0:00 [DIAG_SMD_WCNSS_]\n  231 root      0:00 [DIAG_SMD_WCNSS_]\n  232 root      0:00 [DIAG_SMD_SENSOR]\n  233 root      0:00 [DIAG_SMD_SENSOR]\n  234 root      0:00 [DIAG_SMD_SENSOR]\n  235 root      0:00 [DIAG_SMD_SENSOR]\n  236 root      0:00 [DIAG_SMD_SENSOR]\n  237 root      0:00 [DIAG_SMD_DIAG_C]\n  238 root      0:00 [DIAG_SMD_DIAG_D]\n  239 root      0:00 [DIAG_SMD_DIAG_C]\n  240 root      0:00 [DIAG_SMD_DIAG_D]\n  241 root      0:00 [DIAG_SMD_DIAG_D]\n  242 root      0:00 [DIAG_SMD_CDSP_C]\n  243 root      0:00 [DIAG_SMD_CDSP_D]\n  244 root      0:00 [DIAG_SMD_CDSP_C]\n  245 root      0:00 [DIAG_SMD_CDSP_D]\n  246 root      0:00 [DIAG_SMD_CDSP_D]\n  247 root      0:00 [DIAG_SOCKMODEM_]\n  248 root      0:00 [DIAG_SOCKMODEM_]\n  249 root      0:00 [DIAG_SOCKMODEM_]\n  250 root      0:00 [DIAG_SOCKMODEM_]\n  251 root      0:00 [DIAG_SOCKMODEM_]\n  252 root      0:00 [DIAG_SOCKLPASS_]\n  253 root      0:00 [DIAG_SOCKLPASS_]\n  254 root      0:00 [DIAG_SOCKLPASS_]\n  255 root      0:00 [DIAG_SOCKLPASS_]\n  256 root      0:00 [DIAG_SOCKLPASS_]\n  257 root      0:00 [DIAG_SOCKWCNSS_]\n  258 root      0:00 [DIAG_SOCKWCNSS_]\n  259 root      0:00 [DIAG_SOCKWCNSS_]\n  260 root      0:00 [DIAG_SOCKWCNSS_]\n  261 root      0:00 [DIAG_SOCKWCNSS_]\n  262 root      0:00 [DIAG_SOCKSENSOR]\n  263 root      0:00 [DIAG_SOCKSENSOR]\n  264 root      0:00 [DIAG_SOCKSENSOR]\n  265 root      0:00 [DIAG_SOCKSENSOR]\n  266 root      0:00 [DIAG_SOCKSENSOR]\n  267 root      0:00 [DIAG_SOCKDIAG_C]\n  268 root      0:00 [DIAG_SOCKDIAG_D]\n  269 root      0:00 [DIAG_SOCKDIAG_C]\n  270 root      0:00 [DIAG_SOCKDIAG_D]\n  271 root      0:00 [DIAG_SOCKDIAG_D]\n  272 root      0:00 [DIAG_SOCKCDSP_C]\n  273 root      0:00 [DIAG_SOCKCDSP_D]\n  274 root      0:00 [DIAG_SOCKCDSP_C]\n  275 root      0:00 [DIAG_SOCKCDSP_D]\n  276 root      0:00 [DIAG_SOCKCDSP_D]\n  277 root      0:00 [DIAG_CNTL_SOCKE]\n  278 root      0:00 [DIAG_GLINK_DIAG]\n  279 root      0:00 [DIAG_GLINK_DIAG]\n  280 root      0:00 [DIAG_GLINK_DIAG]\n  281 root      0:00 [DIAG_GLINK_DIAG]\n  282 root      0:00 [DIAG_GLINK_DIAG]\n  283 root      0:00 [kgsl-workqueue]\n  284 root      0:00 [kgsl-mementry]\n  285 root      0:00 [kgsl_worker_thr]\n  286 root      0:00 [kgsl-events]\n  287 root      0:00 [kgsl_devfreq_wq]\n  288 root      0:00 [bioset]\n  289 root      0:00 [bioset]\n  290 root      0:00 [bioset]\n  291 root      0:00 [bioset]\n  292 root      0:00 [bioset]\n  293 root      0:00 [bioset]\n  294 root      0:00 [bioset]\n  295 root      0:00 [bioset]\n  296 root      0:00 [bioset]\n  297 root      0:00 [bioset]\n  298 root      0:00 [bioset]\n  299 root      0:00 [bioset]\n  300 root      0:00 [bioset]\n  301 root      0:00 [bioset]\n  302 root      0:00 [bioset]\n  303 root      0:00 [bioset]\n  304 root      0:00 [bioset]\n  305 root      0:00 [bioset]\n  306 root      0:00 [bioset]\n  307 root      0:00 [bioset]\n  308 root      0:00 [bioset]\n  309 root      0:00 [bioset]\n  310 root      0:00 [bioset]\n  311 root      0:00 [bioset]\n  312 root      0:00 [bioset]\n  313 root      0:00 [bioset]\n  314 root      0:00 [bioset]\n  315 root      0:00 [bioset]\n  316 root      0:00 [bioset]\n  317 root      0:00 [bioset]\n  318 root      0:00 [bioset]\n  319 root      0:00 [bioset]\n  320 root      0:00 [bioset]\n  321 root      0:00 [irq/284-soc:fp_]\n  322 root      0:00 [memory_wq]\n  323 root      0:00 [irq/498-i2c_pmi]\n  324 root      0:00 [qcrypto_seq_res]\n  345 root      0:00 [scsi_eh_0]\n  346 root      0:00 [scsi_tmf_0]\n  347 root      0:00 [ufs_pm_qos_0]\n  348 root      0:00 [ufs_clk_gating_]\n  349 root      0:00 [spi1]\n  350 root      0:00 [spi2]\n  351 root      0:00 [spi10]\n  352 root      0:00 [bond0]\n  353 root      0:00 [sharedmem_qmi_w]\n  358 root      0:00 [uether]\n  359 root      0:00 [qmi_hndl0000000]\n  360 root      0:00 [k_ipa_usb]\n  365 root      0:00 [kworker/u17:0]\n  366 root      0:00 [irq/260-vl53l0_]\n  367 root      0:00 [msm_cci_wq]\n  368 root      0:00 [msm_cci_wq]\n  369 root      0:00 [bioset]\n  370 root      0:00 [msm_cpp_workque]\n  372 root      0:00 [bioset]\n  373 root      0:00 [bioset]\n  374 root      0:00 [msm_vidc_worker]\n  375 root      0:00 [pm_workerq_venu]\n  376 root      0:00 [bioset]\n  377 root      0:00 [irq/156-arm-smm]\n  378 root      0:00 [irq/157-arm-smm]\n  379 root      0:00 [irq/158-arm-smm]\n  380 root      0:00 [irq/159-arm-smm]\n  381 root      0:00 [bioset]\n  382 root      0:00 [rot_commitq_0_0]\n  383 root      0:00 [rot_commitq_0_1]\n  384 root      0:00 [rot_doneq_0_0]\n  385 root      0:00 [rot_doneq_0_1]\n  386 root      0:00 [therm_core:noti]\n  387 root      0:00 [therm_core:noti]\n  388 root      0:00 [irq/502-chg-err]\n  389 root      0:00 [irq/503-chg-sta]\n  390 root      0:00 [irq/504-step-ch]\n  391 root      0:00 [irq/505-step-ch]\n  392 root      0:00 [irq/506-step-ch]\n  393 root      0:00 [irq/507-otg-fai]\n  394 root      0:00 [irq/508-otg-ove]\n  395 root      0:00 [irq/509-otg-oc-]\n  396 root      0:00 [irq/510-testmod]\n  397 root      0:00 [irq/511-bat-tem]\n  398 root      0:00 [irq/512-bat-ocp]\n  399 root      0:00 [irq/513-bat-ov]\n  400 root      0:00 [irq/514-bat-low]\n  401 root      0:00 [irq/515-bat-the]\n  402 root      0:00 [irq/516-bat-ter]\n  403 root      0:00 [irq/517-usbin-c]\n  404 root      0:00 [irq/518-usbin-l]\n  405 root      0:00 [irq/519-usbin-u]\n  406 root      0:00 [irq/520-usbin-o]\n  407 root      0:00 [irq/521-usbin-p]\n  408 root      0:00 [irq/522-usbin-s]\n  409 root      0:00 [irq/523-usbin-i]\n  410 root      0:00 [irq/524-type-c-]\n  411 root      0:00 [irq/525-dcin-co]\n  412 root      0:00 [irq/526-dcin-lt]\n  413 root      0:00 [bioset]\n  414 root      0:00 [irq/527-dcin-uv]\n  415 root      0:00 [irq/528-dcin-ov]\n  416 root      0:00 [irq/529-dcin-pl]\n  417 root      0:00 [irq/530-div2-en]\n  418 root      0:00 [irq/531-dcin-ic]\n  419 root      0:00 [irq/534-aicl-fa]\n  420 root      0:00 [irq/535-aicl-do]\n  421 root      0:00 [irq/536-high-du]\n  422 root      0:00 [irq/537-input-c]\n  423 root      0:00 [irq/538-tempera]\n  424 root      0:00 [irq/539-switche]\n  425 root      0:00 [therm_core:noti]\n  426 root      0:00 [therm_core:noti]\n  427 root      0:00 [bioset]\n  428 root      0:00 [therm_core:noti]\n  429 root      0:00 [therm_core:noti]\n  430 root      0:00 [therm_core:noti]\n  431 root      0:00 [therm_core:noti]\n  432 root      0:00 [therm_core:noti]\n  433 root      0:00 [therm_core:noti]\n  434 root      0:00 [therm_core:noti]\n  435 root      0:00 [therm_core:noti]\n  436 root      0:00 [therm_core:noti]\n  437 root      0:00 [bioset]\n  438 root      0:00 [therm_core:noti]\n  439 root      0:00 [therm_core:noti]\n  440 root      0:00 [therm_core:noti]\n  441 root      0:00 [therm_core:noti]\n  442 root      0:00 [therm_core:noti]\n  443 root      0:00 [therm_core:noti]\n  444 root      0:00 [therm_core:noti]\n  445 root      0:00 [therm_core:noti]\n  446 root      0:00 [therm_core:noti]\n  447 root      0:00 [irq/57-tsens_in]\n  448 root      0:00 [irq/58-tsens_cr]\n  449 root      0:00 [therm_core:noti]\n  450 root      0:00 [therm_core:noti]\n  451 root      0:00 [therm_core:noti]\n  452 root      0:00 [therm_core:noti]\n  453 root      0:00 [therm_core:noti]\n  454 root      0:00 [therm_core:noti]\n  455 root      0:00 [therm_core:noti]\n  456 root      0:00 [therm_core:noti]\n  457 root      0:00 [irq/59-tsens_in]\n  458 root      0:00 [irq/62-tsens_cr]\n  459 root      0:00 [therm_core:noti]\n  460 root      0:00 [irq/364-limits_]\n  461 root      0:00 [therm_core:noti]\n  462 root      0:00 [irq/365-limits_]\n  463 root      0:00 [dm_bufio_cache]\n  464 root      0:00 [bioset]\n  465 root      0:00 [irq/289-bcm1560]\n  466 root      0:00 [bioset]\n  467 root      0:00 [irq/195-spdm_bw]\n  468 root      0:00 [irq/224-bcm1560]\n  469 root      0:00 [irq/142-arm-smm]\n  470 root      0:00 [uaudio_svc]\n  472 root      0:00 [qmi_hndl0000000]\n  474 root      0:00 [therm_core:noti]\n  476 root      0:00 [ipv6_addrconf]\n  477 root      0:00 [irq/576-adsp]\n  478 root      0:00 [sysmon_wq]\n  479 root      0:00 [irq/608-slpi]\n  480 root      0:00 [irq/544-modem]\n  484 root      0:00 [usb_bam_wq]\n  488 root      0:00 [therm_core:noti]\n  489 root      0:00 [irq/736-soc-upd]\n  490 root      0:00 [irq/737-soc-rea]\n  491 root      0:00 [irq/738-bsoc-de]\n  492 root      0:00 [irq/739-msoc-de]\n  493 root      0:00 [irq/740-msoc-lo]\n  494 root      0:00 [irq/741-msoc-em]\n  495 root      0:00 [irq/742-msoc-hi]\n  496 root      0:00 [irq/743-msoc-fu]\n  497 root      0:00 [irq/744-vbatt-p]\n  498 root      0:00 [irq/745-vbatt-l]\n  499 root      0:00 [irq/746-esr-del]\n  500 root      0:00 [irq/747-batt-mi]\n  501 root      0:00 [irq/748-batt-te]\n  502 root      0:00 [irq/749-ima-rdy]\n  503 root      0:00 [irq/750-mem-xcp]\n  504 root      0:00 [irq/751-dma-gra]\n  510 root      0:00 [irq/19-sig-tx]\n  511 root      0:00 [irq/20-sig-rx]\n  512 root      0:00 [irq/22-msg-rx]\n  513 root      0:00 [usbpd0]\n  514 root      0:00 [kworker/0:7]\n  515 root      0:00 [usbpd0]\n  516 root      0:00 [irq/52-hs_phy_i]\n  517 root      0:00 [irq/53-ss_phy_i]\n  518 root      0:00 [irq/54-msm_dwc3]\n  519 root      0:00 [irq/36-ARM64 pr]\n  521 root      0:00 [irq/37-ARM64 se]\n  522 root      0:00 [irq/39-ARM64 pr]\n  523 root      0:00 [irq/40-ARM64 se]\n  524 root      0:00 [rq_stats]\n  526 root      0:00 [irq/143-arm-smm]\n  527 root      0:00 [irq/144-arm-smm]\n  528 root      0:00 [irq/145-arm-smm]\n  529 root      0:00 [irq/146-arm-smm]\n  530 root      0:00 [irq/147-arm-smm]\n  531 root      0:00 [irq/148-arm-smm]\n  532 root      0:00 [irq/149-arm-smm]\n  533 root      0:00 [irq/150-arm-smm]\n  534 root      0:00 [sb-1]\n  535 root      0:00 [ngd_rx_thread1]\n  536 root      0:00 [ngd_notify_sl1]\n  537 root      0:00 [sb-3]\n  538 root      0:00 [ngd_rx_thread3]\n  539 root      0:00 [ngd_notify_sl3]\n  540 root      0:00 [therm_core:noti]\n  541 root      0:00 [therm_core:noti]\n  542 root      0:00 [therm_core:noti]\n  543 root      0:00 [irq/64-lmh-inte]\n  544 root      0:00 [irq/28-qpnp_fla]\n  545 root      0:00 [set_state_work]\n  546 root      0:00 [irq/27-qpnp_fla]\n  547 root      0:00 [irq/225-mnh-rea]\n  548 root      0:00 [irq/26-qpnp_fla]\n  549 root      0:00 [irq/756-mnh_pci]\n  550 root      0:00 [irq/757-mnh_pci]\n  551 root      0:00 [irq/758-mnh_pci]\n  552 root      0:00 [irq/759-mnh_pci]\n  553 root      0:00 [irq/760-mnh_pci]\n  554 root      0:00 [irq/763-mnh_pci]\n  555 root      0:00 [irq/764-mnh_pci]\n  556 root      0:00 [irq/126-arm-smm]\n  557 root      0:00 [devfreq_boostd/]\n  565 root      0:00 [kworker/1:1H]\n  566 root      0:00 [kworker/2:1H]\n  567 root      0:00 [kworker/3:1H]\n  568 root      0:00 [kworker/4:1H]\n  569 root      0:00 [kworker/5:1H]\n  570 root      0:00 [kworker/6:1H]\n  571 root      0:00 [kworker/7:1H]\n  572 root      0:00 [kworker/0:1H]\n  577 root      0:00 [kworker/1:1]\n  625 root      0:08 [kworker/0:5]\n  638 root      0:03 [kworker/u16:1]\n  641 root      0:02 [kworker/0:6]\n  651 root      0:00 [kworker/4:1]\n  690 root      0:00 [kworker/0:3]\n  739 root      0:00 [kworker/0:0]\n  755 root      0:00 ps -A\n"
  },
  {
    "path": "results/msm8998/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,974.23727,3.2474575666666667,24.7184255250395,6.3434020831891695,39.411028454672945,256.626461777\r\n1,364800,1183.684098,3.2447480756578946,11.646984099481282,2.4600451075505156,101.62415283877732,211.21734919\r\n1,441600,1434.053611,3.2474040104166666,17.024542801046564,2.9680698771420366,84.2298228641186,174.340651131\r\n1,518400,1683.161651,3.246839604552469,12.04604325172321,1.7893062391521213,139.7189561684336,148.538918694\r\n1,595200,1932.875113,3.247438025873656,14.599944879628193,1.888467172599279,132.38249709996333,129.347554951\r\n1,672000,2182.338769,3.247527930059524,16.448171390351156,1.884355124777229,132.67138275199338,114.56319855\r\n1,748800,2428.19818,3.242786030982906,13.693028063167008,1.409874902746292,177.32069668949038,102.962974752\r\n1,825600,2681.108907,3.247467183866279,22.47004287872077,2.095338707953969,119.3124524693752,93.25032085\r\n1,883200,2868.189484,3.247497151268116,23.570041584264676,2.054589581235764,121.67880256145061,87.169535696\r\n1,960000,3117.401334,3.24729305625,21.22289593402531,1.7020970395282158,146.8776422226165,80.200979396\r\n1,1036800,3365.281068,3.2458343634259257,43.81004738270302,3.2547891311864534,76.80989149329888,74.293211846\r\n1,1094400,3553.96338,3.2474080592105263,31.17746938647172,2.1932906643818137,113.9839803542242,70.348578879\r\n1,1171200,3803.496174,3.2475206403688524,51.94126574075423,3.414305364567473,73.221335910495,65.733965391\r\n1,1248000,4052.783452,3.247422637820513,41.16778729154134,2.539631630772311,98.43947325698339,61.68977732\r\n1,1324800,4301.001273,3.246528738677536,65.88220448884523,3.8297396140547666,65.2785894588041,58.130107269\r\n1,1401600,4551.661356,3.2474752825342463,56.31979444159289,3.093561185418744,80.81301290511247,54.928488573\r\n1,1478400,4800.860314,3.247335169101731,83.67634154153878,4.357608853372949,57.37091336375701,52.076952375\r\n1,1555200,5050.403022,3.247429926697531,71.33687052428596,3.5315263939366113,70.7909193116135,49.504924564\r\n1,1670400,5424.758598,3.2475805783045977,114.8614233562829,5.293899264279198,47.224170223049995,46.089445086\r\n1,1747200,5673.952021,3.2474542244734432,93.48559674229575,4.119440739833821,60.687849586612835,44.064977744\r\n1,1824000,5923.328437,3.2474388360745614,107.21103191295273,4.525399103111715,55.243746309159164,42.210200036\r\n1,1900800,6157.635468,3.239496773989899,157.5337717845503,6.396391608863538,39.08453629599112,40.603303891\r\n4,300000,1569.326571,5.23108857,42.56944879495601,6.782075380882581,36.86187279851001,159.317904574\r\n4,345600,1807.612217,5.230359424189815,37.81332194344562,5.230257041970098,47.79879803112538,138.317840728\r\n4,422400,2209.808012,5.231553058712121,51.46234354550035,5.822770615248949,42.93488727604829,113.146238863\r\n4,499200,2611.047866,5.2304644751602565,49.80619689054766,4.76950564685047,52.416333790292676,95.761289651\r\n4,576000,3013.209912,5.231267208333333,67.42048432111007,5.594607545706247,44.685886893330014,82.980827\r\n4,652800,3414.740753,5.230914143688726,78.59637580836144,5.755208780755813,43.43891065011342,73.224862108\r\n4,729600,3816.619086,5.2311116858552635,80.42884218623111,5.269444579885761,47.44333035672991,65.516852371\r\n4,806400,4217.700847,5.230283788442461,97.80807120471219,5.798762642393298,43.112645820732986,59.287158728\r\n4,902400,4718.850865,5.22922303302305,100.74704498209647,5.3387802693601305,46.827175382133355,52.991929146\r\n4,979200,5123.160785,5.231986095792483,111.09560319814608,5.422771195019945,46.10188979199231,48.811753471\r\n4,1056000,5522.177063,5.229334339962121,145.89310628437812,6.60694726726534,37.83895797665064,45.286219723\r\n4,1132800,5926.558092,5.231777976694915,127.17201733202415,5.366086696206479,46.58888574736146,42.195498733\r\n4,1190400,6226.339908,5.230460272177419,141.68474581770033,5.69090551336332,43.92974007615358,40.165971859\r\n4,1267200,6627.080903,5.229703995422979,194.00521267975702,7.321208699445221,34.14736695307487,37.737175194\r\n4,1344000,7027.60443,5.22887234375,180.18654384682884,6.412341900291486,38.98731600519238,35.587240664\r\n4,1420800,7435.828797,5.2335506735641895,200.4769264931216,6.742973435457494,37.075631751030045,33.634660873\r\n4,1497600,7834.534629,5.231393315304487,240.4474649950325,7.6760151017389875,32.568982302205605,31.923876186\r\n4,1574400,8237.23229,5.231981891514227,256.19080395226706,7.779170979123601,32.13710055620412,30.364754937\r\n4,1651200,8641.24987,5.233315085998061,267.34321588696463,7.737835778762952,32.30877562510993,28.943452906\r\n4,1728000,9039.629737,5.231267208912037,317.2113843021485,8.7771993157381,28.482889701699428,27.669874885\r\n4,1804800,9437.16734,5.22892693927305,387.5799936317695,10.272624333395605,24.336527053487877,26.504526813\r\n4,1881600,9841.35732,5.230313201530612,384.09550014464037,9.762200575420106,25.608980072532624,25.416076397\r\n4,1958400,10250.522777,5.234131319955065,444.158916103167,10.838167914894639,23.066629153847202,24.401554313\r\n4,2035200,10641.014727,5.2284860097287735,479.3687077326524,11.269384619912618,22.18399747917544,23.50880322\r\n4,2112000,11048.747072,5.231414333333333,516.4081397242276,11.692022480918734,21.382100522642475,22.64104994\r\n4,2208000,11855.08346,5.369150117753623,692.9479567864765,14.622955329248091,17.09640728368791,21.102530408\r\n4,2265600,12258.507404,5.410711248234463,656.8729021499004,13.404139917031216,18.650954223653812,20.405987023\r\n4,2323200,12654.383478,5.446962585227273,731.7546396817371,14.465369045884305,17.282656198192893,19.768059212\r\n4,2342400,12761.613068,5.4480930105874315,797.5970819875267,15.6365682999373,15.98816282476779,19.60459567\r\n4,2361600,12854.792267,5.4432555331131445,828.7449952890004,16.128615712738405,15.500400310396733,19.461493951\r\n4,2457600,12856.775521,5.2314353519694015,807.475179411316,15.711606302064038,15.911803999770376,19.45769567\r\n"
  },
  {
    "path": "results/msm8998/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 4079.9105869885534, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1333.6675670519999, 1335.5770285800002, 1333.5877429400002, 1339.479494693, 1339.399313121, 1329.286752359, 1335.176985024, 1337.246065196, 1329.286752359, 1333.188295232, 1332.868998784, 1326.900284064, 1328.6494142249999, 1334.6170551, 1326.502625121, 1332.3897269640001, 1328.410657053, 1328.331071329, 1328.410657053, 1334.377225548, 1326.264225165, 1328.251485605, 1336.2045996200002, 1326.264225165, 1334.2173391800002, 1326.104966178, 1327.932816538, 1325.9460328739997, 1327.853230814], \"power_mean\": 1331.2549183771034, \"energy_millijoules\": 6656.274591885517, \"energy_joules\": 6.656274591885517}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 256.626461777, \"elapsed_ns\": 256626461777, \"power_samples\": [1.5885288730000866, 18.992480763999993, 18.992480763999993, 24.790606350000417, 24.790606350000417, 20.816068742000198, 10.805645306000315, 10.805645306000315, 28.761075854000183, 18.75017588600008, 18.75017588600008, 20.735291566000114, 24.709590786000263, 24.709590786000263, 14.85629638200021, 14.615037234000283, 14.615037234000283, 20.573737214000175, 16.357968329000414, 24.30418093500043, 24.30418093500043, 24.54755965800041, 18.34655480000015, 18.34655480000015, 10.645282162000285, 14.373448497000254, 14.373448497000254, 18.265896696000254, 26.20756613100025, 26.20756613100025, 20.250297456, 18.265896696000254, 18.265896696000254, 24.142149807000123, 16.357968329000414, 16.277429541000174, 16.277429541000174, 14.29302878100043, 24.142149807000123, 24.142149807000123, 14.051769633000276, 10.0035009730002, 10.0035009730002, 8.01551108200033, 17.94326428000022, 17.94326428000022, 23.980118679000498, 23.899103115000344, 23.899103115000344, 20.007965928000203, 17.94326428000022, 17.94326428000022, 15.955274389000351, 23.899103115000344, 19.84641157600049, 19.84641157600049, 7.855386570000519, 9.84313782900017, 9.84313782900017, 15.874735601000339, 582.4288012050004, 582.4288012050004, 13.649341464000372, 19.60374899400017, 19.60374899400017, 13.56892174800032, 19.522971818000087, 19.522971818000087, 15.552250372000344, 23.16963100800035, 23.41267770000036, 23.41267770000036, 9.522082928000373, 19.19986311400021, 19.19986311400021, 17.217010778000258, 23.16963100800035, 23.16963100800035, 17.217010778000258, 13.166493579000417, 13.166493579000417, 13.166493579000417, 19.19986311400021, 19.19986311400021, 15.230095220000294, 23.088283413000227, 16.974705900000345, 16.974705900000345, 9.201028027000348, 17.217010778000258, 17.217010778000258, 13.086073863000365, 15.149226355000337, 15.149226355000337, 17.136022108000134, 24.74647764500037, 24.74647764500037, 23.007267849000527, 18.795646180000176, 18.795646180000176, 14.746532415000274, 24.74647764500037, 12.764394999000388, 12.764394999000388, 14.746532415000274, 8.800120167000387, 8.800120167000387, 18.634091828000237, 22.76422115700052, 22.76422115700052, 16.813389692000328, 14.665993627000262, 14.665993627000262, 18.634091828000237, 4.75184039400051, 4.75184039400051, 26.56622671700029, 26.647480425000367, 22.602190029000212, 22.602190029000212, 14.665993627000262, 12.683975283000336, 12.683975283000336, 22.602190029000212, 16.571084814000187, 16.571084814000187, 18.55298359800031, 14.343508398000267, 14.343508398000267, 18.310652070000287, 8.479065266000362, 8.479065266000362, 12.361966830000483, 12.361966830000483, 16.329110502000276, 16.329110502000276, 26.24087887800033, 16.329110502000276, 16.329110502000276, 16.248452398000154, 16.248452398000154, 16.248452398000154, 14.262969610000482, 8.077828793000208, 8.077828793000208, 13.940484381000488, 21.953401455000403, 21.953401455000403, 13.940484381000488, 8.077828793000208, 17.98721231200011, 17.98721231200011, 13.940484381000488, 17.98721231200011, 17.98721231200011, 16.00614752000024, 14.021023169000273, 14.021023169000273, 15.925489416000346, 5.932579930000429, 5.932579930000429, 15.925489416000346, 13.940484381000488, 13.940484381000488, 17.82565796000017, 15.844831312000224, 17.906435136000255, 17.906435136000255, 11.959538661000352, 23.77219697500027, 23.77219697500027, 15.925489416000346, 15.844831312000224, 15.844831312000224, 11.8791189450003, 15.844831312000224, 15.844831312000224, 23.69106233900061, 15.844831312000224, 15.844831312000224, 15.602857000000085, 7.837284077000504, 11.798699229000476, 11.798699229000476, 15.602857000000085, 3.63198054600025, 3.63198054600025, 11.476690776000396, 23.447658431000264, 23.447658431000264, 11.557440081000095, 15.441210226000067, 15.441210226000067, 7.4360476040003505, 11.557440081000095, 11.557440081000095, 21.385960476000264, 13.456921576000468, 15.199235914000155, 15.199235914000155, 13.215305212000203, 15.199235914000155, 15.199235914000155, 15.199235914000155, 586.3866434460003, 586.3866434460003, 15.199235914000155, 15.118577810000033, 15.118577810000033, 5.451878270000634, 11.396271060000345, 11.396271060000345, 15.199235914000155, 13.215305212000203, 13.215305212000203, 17.179109498000116, 11.235431628000242, 13.215305212000203, 13.215305212000203, 16.93677797000032, 10.833003459000338, 10.833003459000338, 14.795614828000225, 6.874447987000394, 6.874447987000394, 14.795614828000225, 6.874447987000394, 6.874447987000394, 10.752583743000287, 20.7375039330002, 20.7375039330002, 10.833003459000338, 12.731742407000183, 10.752583743000287, 10.752583743000287, 4.811052098000346, 6.874447987000394, 6.874447987000394, 20.7375039330002, 14.795614828000225, 14.795614828000225, 14.795614828000225, 12.651203619000398, 12.651203619000398, 4.650927586000307, 6.714084843000364, 6.714084843000364, 10.672164027000463, 16.61333821200037, 12.651203619000398, 12.651203619000398, 16.53256103600006, 14.634298620000436, 14.634298620000436, 12.651203619000398], \"power_mean\": 24.7184255250395, \"energy_millijoules\": 6343.402083189169, \"energy_joules\": 6.3434020831891695, \"coremark_score\": 974.23727, \"coremarks_per_mhz\": 3.2474575666666667, \"ulpmark_cm_score\": 39.411028454672945}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1325.8665662219998, 1327.694059366, 1327.694059366, 1333.817295624], \"power_mean\": 1328.7679951445, \"energy_millijoules\": 6643.8399757225, \"energy_joules\": 6.6438399757225}}, \"364800\": {\"active\": {\"elapsed_sec\": 211.21734919, \"elapsed_ns\": 211217349190, \"power_samples\": [6.633903271000236, 20.332426113000565, 20.332426113000565, 16.289898454000195, 6.393029942000112, 6.393029942000112, 12.570664831000158, 12.570664831000158, 12.570664831000158, 14.553640516000314, 10.672164027000463, 10.672164027000463, 16.53256103600006, 12.570664831000158, 6.633903271000236, 6.633903271000236, 12.570664831000158, 10.430904879000309, 10.430904879000309, 12.409587255000133, 4.490803074000496, 4.490803074000496, 14.311335637999946, -3.427981106999596, -3.427981106999596, 4.4104126940003425, 0.3734629500004303, 0.3734629500004303, 12.248179602000164, 6.312848370000438, 6.312848370000438, 6.312848370000438, 12.167640814000379, 10.18931614200028, 10.18931614200028, 12.248179602000164, 12.006563238000354, 12.006563238000354, 15.966789750000316, 2.112077142000544, 2.112077142000544, 15.80523539800015, 6.0723036540002795, 6.0723036540002795, 13.98870322200014, 4.090163670000493, 2.112077142000544, 2.112077142000544, 4.090163670000493, 4.090163670000493, 4.090163670000493, 13.827387014000124, 5.91194051000025, 5.91194051000025, 11.845485662000328, 9.867637278000302, 9.867637278000302, 3.930039158000227, 9.787217562000478, 9.787217562000478, 9.787217562000478, 9.6260485410005, 21.661698882000337, 21.661698882000337, 1.87224759000037, 4.090163670000493, 4.090163670000493, 3.930039158000227, 9.867637278000302, 9.867637278000302, 9.787217562000478, 11.764946874000543, 11.764946874000543, 9.545628825000449, 1.5521472180003002, 1.5521472180003002, 1.6320904020003582, 9.545628825000449, 11.523000433000334, 11.523000433000334, 5.510704037000323, -4.383662136999874, -4.383662136999874, 5.671067181000353, 568.4511898980002, 568.4511898980002, 5.510704037000323, 5.510704037000323, 5.510704037000323, 1.6320904020003582, 3.529399754000451, 3.529399754000451, 9.46520910900017, 3.6094620100004704, 3.6094620100004704, 5.430522465000195, 13.343107824000072, 11.361922857000309, 11.361922857000309, 3.449337498000432, 5.430522465000195, 5.430522465000195, 9.223949961000244, 9.223949961000244, 9.223949961000244, 11.200845281000284, 1.4722040340004696, 1.4722040340004696, 9.384789393000347, 5.270159321000165, 5.270159321000165, 11.200845281000284, 5.270159321000165, 9.143200656000317, 9.143200656000317, 11.119976416000327, 9.143200656000317, 9.143200656000317, 15.077578706000168, 11.039437628000087, 11.039437628000087, 5.189649136000526, 5.10946756400017, 5.10946756400017, 10.958898840000302, 1.1521036620003997, 1.1521036620003997, 5.10946756400017, 3.128760350000448, -0.9043771379997452, -0.9043771379997452, 3.128760350000448, 1.0721604780003418, 1.0721604780003418, 1.0721604780003418, 5.029285992000268, 5.029285992000268, 2.808511326000371, 10.717282476000264, 10.717282476000264, -1.223673585999677, -1.1438494739995804, -1.1438494739995804, 8.660682360000237, 0.7523877420005647, 8.660682360000237, 8.660682360000237, -1.1438494739995804, 10.636743688000251, 10.636743688000251, 0.6721169220004413, -1.303824845999543, -1.303824845999543, 0.6721169220004413, 1.0721604780003418, 1.0721604780003418, 2.808511326000371, 2.7284490700003516, 2.7284490700003516, 8.419093623000208, 12.374549444000195, 2.487934178000387, 2.487934178000387, 10.555874823000295, 2.6480586900004255, 2.6480586900004255, 12.535865652000211, 2.6480586900004255, 2.6480586900004255, 2.7284490700003516, 2.6480586900004255, 2.6480586900004255, 8.419093623000208, 4.387504803000411, 4.387504803000411, 4.387504803000411, 8.338673907000384, 4.387504803000411, 4.387504803000411, 2.4078719220003677, 4.387504803000411, 4.387504803000411, 12.213233236000178, 4.307323231000282, 4.307323231000282, 0.3523441860004368, 4.307323231000282, 4.307323231000282, -1.6231212939997022, 2.3278096660003484, 2.3278096660003484, 8.177834475000282, 4.227141659000381, 4.227141659000381, 2.0872947740003838, 0.3523441860004368, 8.177834475000282, 8.177834475000282, -5.6576860629995736, 8.177834475000282, 8.177834475000282, 4.227141659000381, 2.0072325180003645, 2.0072325180003645, 8.016665454000304, 2.0072325180003645, 2.0072325180003645, 4.307323231000282, -1.6231212939997022, -1.6231212939997022], \"power_mean\": 11.646984099481282, \"energy_millijoules\": 2460.0451075505157, \"energy_joules\": 2.4600451075505156, \"coremark_score\": 1183.684098, \"coremarks_per_mhz\": 3.2447480756578946, \"ulpmark_cm_score\": 101.62415283877732}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1319.11644527, 1319.11644527, 1327.038567128, 1320.936702651], \"power_mean\": 1321.55204007975, \"energy_millijoules\": 6607.76020039875, \"energy_joules\": 6.607760200398751}}, \"441600\": {\"active\": {\"elapsed_sec\": 174.340651131, \"elapsed_ns\": 174340651131, \"power_samples\": [-15.380485703999511, 1.9271702620003452, 3.906086758000356, 3.906086758000356, 1.6869834940002875, 7.614566874000275, 7.614566874000275, 7.614566874000275, 7.614566874000275, 569.8565586830005, 569.8565586830005, 7.614566874000275, 7.855826022000429, 7.855826022000429, 3.906086758000356, 11.809612150000248, 11.809612150000248, 11.486979734000215, 3.585360470000296, 3.585360470000296, 13.461373078000179, 3.5048502850002023, 7.453397853000524, 7.453397853000524, 1.4464686020003228, 9.427671637000458, 9.427671637000458, 9.427671637000458, 9.508540502000187, 9.508540502000187, 11.486979734000215, 9.427671637000458, 9.427671637000458, 3.5048502850002023, 7.453397853000524, 7.453397853000524, 9.427671637000458, 7.372978137000246, 9.427671637000458, 9.427671637000458, 11.325332960000196, 7.372978137000246, 7.372978137000246, 7.2121387050003705, 3.2643055690004985, 3.2643055690004985, 9.186055273000193, 18.982593299000428, 18.982593299000428, 3.2643055690004985, 3.2643055690004985, 3.2643055690004985, 11.083358648000058, 9.186055273000193, 9.186055273000193, 9.186055273000193, 13.057156144000146, 9.105516485000408, 9.105516485000408, 11.083358648000058, 7.131718989000319, 7.131718989000319, 11.164016752000407, 7.2121387050003705, 7.2121387050003705, 11.083358648000058, 7.2121387050003705, 7.2121387050003705, 9.186055273000193, 11.164016752000407, 11.164016752000407, 11.164016752000407, 3.424668713000301, 20.95639079500029, 20.95639079500029, 7.131718989000319, 7.131718989000319, 7.131718989000319, 3.18412399700037, 7.051299273000268, 7.051299273000268, 1.0461573220004539, 10.922042440000268, 10.922042440000268, 12.895601792000434, 7.051299273000268, 7.051299273000268, 2.863069096000345, -1.1675592179994965, 6.809710536000466, 6.809710536000466, 8.783031256000413, 10.679737562000128, 10.679737562000128, 0.8056424300002618, 2.782887524000216, 2.782887524000216, 2.6225243800004137, 6.729290820000415, 6.729290820000415, 12.491384858000174, 6.568451388000312, 6.568451388000312, 10.679737562000128, 10.679737562000128, 6.40761195600021, 6.40761195600021, 2.6225243800004137, 16.441354824000427, 16.441354824000427, 8.541414892000148, 2.4621612360003837, 2.4621612360003837, 8.38033731600035, 6.40761195600021, 6.40761195600021, 0.6455179180004507, 6.326862651000283, 6.326862651000283, 6.326862651000283, 6.326862651000283, 6.246442935000232, 6.246442935000232, 6.326862651000283, 8.299468451000394, 8.299468451000394, 6.40761195600021, 10.357105146000094, 10.357105146000094, 2.6225243800004137, 2.4621612360003837, 2.4621612360003837, 8.38033731600035, 6.326862651000283, 6.326862651000283, 8.38033731600035, -1.647545957999455, 0.2448785140002201, 0.2448785140002201, 8.218929663000381, 10.114800268000408, 10.114800268000408, 19.98068028500029, 6.246442935000232, 6.246442935000232, 10.195458372000303, 2.22128790700026, 2.22128790700026, 12.087167924000369, 11.925613572000202, 11.925613572000202, 11.925613572000202, 6.166023219000408, 6.166023219000408, 567.2103500270002, 7.977313299000116, 15.873913845000288, 15.873913845000288, 0.08475400200040895, 1.9807431910003288, 1.9807431910003288, 0.08475400200040895, 7.896774511000331, 7.896774511000331, 7.896774511000331, -3.939329133999763, -3.939329133999763, 11.764059220000263, 12.087167924000369, 12.087167924000369, 0.08475400200040895, 1.9807431910003288, 1.9807431910003288], \"power_mean\": 17.024542801046564, \"energy_millijoules\": 2968.0698771420366, \"energy_joules\": 2.9680698771420366, \"coremark_score\": 1434.053611, \"coremarks_per_mhz\": 3.2474040104166666, \"ulpmark_cm_score\": 84.2298228641186}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1314.5167162740001, 1314.5959445380001, 1314.5959445380001, 1318.392467055], \"power_mean\": 1315.52526810125, \"energy_millijoules\": 6577.62634050625, \"energy_joules\": 6.57762634050625}}, \"518400\": {\"active\": {\"elapsed_sec\": 148.538918694, \"elapsed_ns\": 148538918694, \"power_samples\": [-13.411322023999446, 17.440037658000165, 1.8203800470002989, 15.630867153000281, 15.630867153000281, 5.602755618000174, 11.68328204400018, 11.68328204400018, 7.7356969350003055, 5.763924639000152, 5.763924639000152, 5.763924639000152, 9.549862974000007, 9.549862974000007, 17.602639449000208, 9.549862974000007, 9.549862974000007, 15.46850399400023, 7.574289282000336, 15.46850399400023, 15.46850399400023, 15.46850399400023, 9.549862974000007, 9.549862974000007, 9.388546766000218, 15.46850399400023, 15.46850399400023, 9.307888662000096, 5.361496470000247, 5.361496470000247, 7.413211706000311, 5.441916186000299, 5.441916186000299, 5.361496470000247, 9.307888662000096, 9.146572454000307, 9.146572454000307, 17.03436447800027, 9.146572454000307, 9.146572454000307, 7.090726477000317, 5.200657038000372, 5.200657038000372, 7.090726477000317, 14.982078579000245, 14.982078579000245, 14.982078579000245, 11.03640252800028, 11.03640252800028, 9.307888662000096, 7.090726477000317, 5.039488017000394, 5.039488017000394, 14.982078579000245, 7.010187689000304, 7.010187689000304, 5.200657038000372, 11.03640252800028, 11.03640252800028, 9.06558378400041, 7.090726477000317, 7.090726477000317, 7.090726477000317, 10.955625352000197, 10.955625352000197, 5.119907733000446, 11.03640252800028, 1.017907101000219, 1.017907101000219, -0.9567115739996552, 8.984925680000288, 8.984925680000288, 1.017907101000219, 1.017907101000219, 1.017907101000219, 8.904267576000166, 7.010187689000304, 7.010187689000304, 10.874848176000114, 8.904267576000166, 8.904267576000166, 8.904267576000166, 14.901063015000318, 14.65801632300031, 10.713293824000175, 8.74295136800015, 4.798228869000241, 4.798228869000241, 4.798228869000241, 6.688032537000254, 6.688032537000254, 6.688032537000254, 8.662293264000027, 8.662293264000027, 6.688032537000254, 8.662293264000027, 8.662293264000027, 6.688032537000254, 8.662293264000027, 8.662293264000027, 6.607493749000469, 10.632516648000319, -3.247064909999608, -3.247064909999608, 4.637389437000365, 16.38462235200018, 16.38462235200018, 14.49598519500023, 8.662293264000027, 8.662293264000027, 10.551739472000236, 4.637389437000365, 4.637389437000365, 10.551739472000236, 4.5566401320002115, 4.5566401320002115, 576.7795498860003, 4.395800700000336, 10.470631242000081, 10.470631242000081, 8.500646490000008, 4.5566401320002115, 4.5566401320002115, 4.5566401320002115, 6.526624884000057, 6.526624884000057, 6.365547308000487, 14.414637600000333, 14.414637600000333, 14.414637600000333, 8.500646490000008, 8.500646490000008, 8.339330282000219, 4.234961268000461, 6.123930944000222, 6.123930944000222, 14.009559780000245, 14.009559780000245, 14.009559780000245, 0.05507101100033651, 3.993372531000432, 3.993372531000432, 3.9129528150003807, 10.06674536200012, 10.06674536200012, 7.855051092000167, -1.998177149999492, -1.998177149999492], \"power_mean\": 12.04604325172321, \"energy_millijoules\": 1789.3062391521212, \"energy_joules\": 1.7893062391521213, \"coremark_score\": 1683.161651, \"coremarks_per_mhz\": 3.246839604552469, \"ulpmark_cm_score\": 139.7189561684336}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1312.5347108500002, 1314.5113588749998, 1314.5113588749998, 1318.376984751], \"power_mean\": 1314.98360333775, \"energy_millijoules\": 6574.918016688751, \"energy_joules\": 6.574918016688751}}, \"595200\": {\"active\": {\"elapsed_sec\": 129.347554951, \"elapsed_ns\": 129347554951, \"power_samples\": [-22.96021932699955, 9.824082780000253, 3.832533099000557, 3.832533099000557, 7.7743929880002725, 9.74330560400017, 15.654078109000466, 15.654078109000466, 9.74330560400017, 15.654078109000466, 15.654078109000466, 9.74330560400017, 13.604149929000414, 13.604149929000414, 9.74330560400017, 13.68516549300034, 13.68516549300034, 15.57294347300035, 9.74330560400017, 9.74330560400017, 9.74330560400017, 9.824082780000253, 9.824082780000253, 3.591273951000403, 3.832533099000557, 7.6937348840001505, 7.6937348840001505, 5.559829351000417, 7.532418676000134, 7.532418676000134, 5.559829351000417, 13.604149929000414, 13.604149929000414, 7.532418676000134, 9.500974076000375, 9.500974076000375, 13.442118801000333, 15.410674201000347, 15.410674201000347, 5.559829351000417, 13.361103237000407, 7.451760572000239, 7.451760572000239, 9.420196900000292, 7.370771902000115, 7.370771902000115, 9.339088670000365, 7.451760572000239, 7.451760572000239, 9.420196900000292, 7.451760572000239, 7.451760572000239, 19.18470594600035, 5.479290563000177, 5.479290563000177, 7.451760572000239, 13.27975564200051, 7.370771902000115, 7.370771902000115, 9.258311494000054, 9.258311494000054, 9.258311494000054, 9.258311494000054, 13.198740078000128, 13.198740078000128, 15.166937774000417, 5.076266546000397, 5.076266546000397, 13.198740078000128, 3.1084260660004475, 3.1084260660004475, 5.076266546000397, 9.015979966000259, 9.015979966000259, 17.135135470000478, 9.015979966000259, 5.076266546000397, 5.076266546000397, 9.015979966000259, 12.874677822000194, 12.874677822000194, 8.935202790000176, 6.967481382000187, 6.967481382000187, 22.635705910000297, 16.728866930000322, 16.728866930000322, 12.793662258000495, 14.842399230000183, 14.842399230000183, 6.967481382000187, 8.854425614000093, 22.798928246000287, 22.798928246000287, 13.198740078000128, -0.9876180379997095, -0.9876180379997095, 12.793662258000495, 14.761264594000295, 14.761264594000295, 8.854425614000093, 12.793662258000495, 12.793662258000495, 572.5083764060003, 8.69254020800031, 8.69254020800031, 4.753781317000403, 2.7864176130001397, 12.55028353500029, 12.55028353500029, 14.59866280300048, 12.55028353500029, 12.55028353500029, 8.530985856000143, 8.611763032000226, 8.611763032000226, 12.55028353500029, 14.517528167000364, 14.517528167000364, 14.517528167000364, 8.450208680000287, 8.450208680000287, 14.436393531000249, 12.469267971000363, 12.469267971000363, 8.611763032000226, 14.517528167000364, 22.308926766000013, 22.308926766000013], \"power_mean\": 14.599944879628193, \"energy_millijoules\": 1888.467172599279, \"energy_joules\": 1.888467172599279, \"coremark_score\": 1932.875113, \"coremarks_per_mhz\": 3.247438025873656, \"ulpmark_cm_score\": 132.38249709996333}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1314.814513617, 1304.9599549580003, 1304.9599549580003, 1304.9599549580003], \"power_mean\": 1307.4235946227502, \"energy_millijoules\": 6537.117973113751, \"energy_joules\": 6.537117973113751}}, \"672000\": {\"active\": {\"elapsed_sec\": 114.56319855, \"elapsed_ns\": 114563198550, \"power_samples\": [-6.7348087939997185, 8.28865432800012, 14.192989623000358, 14.192989623000358, 18.044820036000374, 15.996917544000098, 15.996917544000098, 14.111522468000203, 12.063858120000305, 12.063858120000305, 14.111522468000203, 8.207546098000194, 8.207546098000194, 15.996917544000098, 6.1602392100001, 6.1602392100001, 15.996917544000098, 14.111522468000203, 6.1602392100001, 6.1602392100001, 14.030387832000315, 17.719328916000222, 17.719328916000222, 7.884437394000315, 7.884437394000315, 7.884437394000315, 11.820811428000297, 7.8036602180000045, 7.8036602180000045, 11.73979586400037, 7.884437394000315, 7.884437394000315, 15.753156420000323, 12.063858120000305, 17.963447256000336, 17.963447256000336, 13.705849288000309, 5.837606794000294, 5.837606794000294, 15.671902712000247, 21.655702950000205, 21.655702950000205, 21.655702950000205, 11.73979586400037, 11.73979586400037, 11.658780300000217, 15.590649004000397, 15.590649004000397, 11.73979586400037, 15.590649004000397, 15.590649004000397, 13.543580016000305, 5.6762905860002775, 11.415401577000466, 11.415401577000466, 15.671902712000247, 3.7064469960002953, 3.7064469960002953, 11.57776473600029, 11.658780300000217, 11.658780300000217, 11.415401577000466, 15.346554873000287, 15.346554873000287, 13.380978225000263, 11.334386013000312, 11.334386013000312, 11.253370449000386, 11.253370449000386, 17.230758741000272, 17.230758741000272, 7.318666108000116, 13.299843589000602, 13.299843589000602, 11.253370449000386, 15.18404745700036, 15.18404745700036, 11.172354885000459, 7.318666108000116, 7.318666108000116, 5.353327604000242, 13.137574317000144, 13.137574317000144, 7.076334580000093, 17.068013181000424, 13.218708953000487, 13.218708953000487, 15.18404745700036, 13.218708953000487, 13.218708953000487, 16.90526762100035, 7.076334580000093, 7.076334580000093, 5.111353292000331, 7.23788893200026, 7.23788893200026, 11.010323757000378, 12.975305045000368, 12.975305045000368, 11.010323757000378, 3.142345403000263, 3.142345403000263, 11.010323757000378, 7.076334580000093, 7.076334580000093, 7.076334580000093, 7.076334580000093, 7.076334580000093, 7.076334580000093, 572.0336086860004, 14.8586996180004, 14.8586996180004, 15.102793749000284, 12.975305045000368], \"power_mean\": 16.448171390351156, \"energy_millijoules\": 1884.355124777229, \"energy_joules\": 1.884355124777229, \"coremark_score\": 2182.338769, \"coremarks_per_mhz\": 3.247527930059524, \"ulpmark_cm_score\": 132.67138275199338}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1295.816191296, 1295.816191296, 1311.6532200200002, 1315.510267832], \"power_mean\": 1304.698967611, \"energy_millijoules\": 6523.4948380549995, \"energy_joules\": 6.523494838054999}}, \"748800\": {\"active\": {\"elapsed_sec\": 102.962974752, \"elapsed_ns\": 102962974752, \"power_samples\": [10.60491390600032, 10.60491390600032, 16.49807022600021, 10.60491390600032, 10.60491390600032, 16.49807022600021, 14.452431078000245, 14.452431078000245, 16.4166974460004, 12.48816471000032, 14.452431078000245, 14.452431078000245, 12.569299346000207, 20.34925531800036, 20.34925531800036, 16.4166974460004, 12.48816471000032, 12.48816471000032, 16.33532466600036, 14.371177370000169, 14.371177370000169, 22.231791446000216, 16.33532466600036, 16.33532466600036, 12.407030074000204, 10.361535183000342, 12.325562919000276, 12.325562919000276, 16.33532466600036, 12.325562919000276, 12.325562919000276, 14.289590655000211, 20.185698510000066, 20.185698510000066, 16.253618391000373, 12.325562919000276, 12.325562919000276, 14.289590655000211, 12.325562919000276, 12.325562919000276, 16.090872831000297, 12.1632936470005, 12.1632936470005, 14.127083239000513, 12.1632936470005, 16.090872831000297, 16.090872831000297, 14.127083239000513, 14.045829531000436, 14.045829531000436, 20.022476174000303, 12.1632936470005, 12.1632936470005, 12.082159011000385, 10.03747292700018, 10.03747292700018, 4.223453016000121, 12.082159011000385, 12.082159011000385, 10.03747292700018, 12.082159011000385, 13.88332211500051, 13.88332211500051, 9.956457363000482, 6.025569184000233, 6.025569184000233, 13.720481692000476, 9.956457363000482, 9.956457363000482, 15.84675449100041, 13.88332211500051, 13.88332211500051, 23.708530849000226, 9.956457363000482, 9.956457363000482, 11.919889739000382, 19.777642670000205, 9.956457363000482, 9.956457363000482, 16.00950005100026, 9.956457363000482, 9.956457363000482, 13.96457582300036, 12.00102437500027, 12.00102437500027, 23.708530849000226, 13.720481692000476, 13.720481692000476, 13.720481692000476, 11.919889739000382, 11.919889739000382, 19.777642670000205, 13.557974276000323, 13.557974276000323, 9.63206307600035, 13.88332211500051, 15.683675436000385, 15.683675436000385, 19.614085862000366, 11.595018676000336, 11.595018676000336, 19.450863526000376], \"power_mean\": 13.693028063167008, \"energy_millijoules\": 1409.874902746292, \"energy_joules\": 1.409874902746292, \"coremark_score\": 2428.19818, \"coremarks_per_mhz\": 3.242786030982906, \"ulpmark_cm_score\": 177.32069668949038}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1308.1748833880001, 1304.16378642, 1308.01642686, 1308.01642686], \"power_mean\": 1307.092880882, \"energy_millijoules\": 6535.46440441, \"energy_joules\": 6.53546440441}}, \"825600\": {\"active\": {\"elapsed_sec\": 93.25032085, \"elapsed_ns\": 93250320850, \"power_samples\": [15.683675436000385, 11.75728794800034, 11.75728794800034, 19.614085862000366, 15.52092987600031, 15.52092987600031, 15.52092987600031, 15.683675436000385, 15.683675436000385, 5.702129426000056, 13.557974276000323, 13.557974276000323, 19.369252358000267, 19.20603002200005, 23.13524850800036, 23.13524850800036, 13.31421315200032, 13.31421315200032, 13.31421315200032, 579.4822804860003, 15.113732481000397, 15.113732481000397, 23.053398952000407, 9.308000820000188, 9.308000820000188, 23.053398952000407, 19.124418854000396, 19.124418854000396, 11.189012977000175, 11.27048013200033, 11.27048013200033, 25.01587826400055, 13.232959444000471, 13.232959444000471, 13.232959444000471, 19.04247321400021, 15.03235970100036, 15.03235970100036, 22.725665279000395, 15.03235970100036, 15.03235970100036, 18.960862046000102, 22.8893643910003, 22.8893643910003, 11.107878341000514, 13.070119021000437, 13.070119021000437, 15.03235970100036, 10.945609069000284, 22.725665279000395, 22.725665279000395, 18.797639710000112, 18.797639710000112, 18.797639710000112, 18.960862046000102, 10.945609069000284, 10.945609069000284, 14.869614141000284, 24.85160507100045, 24.85160507100045, 14.869614141000284, 12.826357897000435, 12.826357897000435, 14.788241361000473, 20.5961817660002, 18.71602854200023, 18.71602854200023, 14.706868581000435, 18.63441737400035, 18.63441737400035, 10.864474433000396, 14.788241361000473, 14.788241361000473, 20.677912006000497, 24.52373055900034, 24.52373055900034, 12.826357897000435, 18.63441737400035, 18.63441737400035, 14.706868581000435, 18.71602854200023, 18.71602854200023, 20.677912006000497, 12.745104189000358, 14.706868581000435, 14.706868581000435, 14.706868581000435, 12.745104189000358, 12.745104189000358, 14.706868581000435, 20.5961817660002, 20.5961817660002, 10.458468734000462], \"power_mean\": 22.47004287872077, \"energy_millijoules\": 2095.3387079539693, \"energy_joules\": 2.095338707953969, \"coremark_score\": 2681.108907, \"coremarks_per_mhz\": 3.247467183866279, \"ulpmark_cm_score\": 119.3124524693752}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1307.0650382800002, 1303.1362674, 1301.17188196, 1308.95410152], \"power_mean\": 1305.08182229, \"energy_millijoules\": 6525.40911145, \"energy_joules\": 6.52540911145}}, \"883200\": {\"active\": {\"elapsed_sec\": 87.169535696, \"elapsed_ns\": 87169535696, \"power_samples\": [24.52373055900034, 24.44176193100043, 24.44176193100043, 24.44176193100043, 10.458468734000462, 10.458468734000462, 18.307638230000293, 12.338502642000549, 12.338502642000549, 14.299671186000523, 20.18719560600016, 18.226027062000412, 18.226027062000412, 18.144415894000304, 14.05555284600041, 14.05555284600041, 4.409032502000173, 19.942004886000404, 19.942004886000404, 12.094741518000319, 13.973846571000422, 13.973846571000422, 14.05555284600041, 19.942004886000404, 19.942004886000404, 27.789268254000262, 12.094741518000319, 12.094741518000319, 17.981193558000086, 21.906834270000445, 14.218298406000258, 14.218298406000258, 21.824649265000517, 19.778209446000346, 19.778209446000346, 19.778209446000346, 23.703372405000437, 23.703372405000437, 17.817636750000247, 19.778209446000346, 19.778209446000346, 13.892473791000384, 19.69647920600005, 19.69647920600005, 11.931901095000512, 21.742799709000337, 11.850647387000436, 11.850647387000436, 13.811101011000119, 13.811101011000119, 13.811101011000119, 17.736025582000366, 21.497251041000254, 21.497251041000254, 9.890193763000298, 11.850647387000436, 11.850647387000436, 21.497251041000254, 19.533018726000137, 19.533018726000137, 19.533018726000137, 567.5195121660004, 17.57280324600015, 17.57280324600015, 17.736025582000366, 21.497251041000254, 21.497251041000254, 19.451288486000294, 17.57280324600015, 17.57280324600015, 19.533018726000137, 11.606886263000206, 11.606886263000206, 13.56698267100046, 21.33355192900035, 21.33355192900035, 11.606886263000206, 19.69647920600005, 19.69647920600005, 13.811101011000119, 19.533018726000137, 13.56698267100046, 13.56698267100046, 19.451288486000294, 19.533018726000137, 19.533018726000137, 13.64835545100027], \"power_mean\": 23.570041584264676, \"energy_millijoules\": 2054.589581235764, \"energy_joules\": 2.054589581235764, \"coremark_score\": 2868.189484, \"coremarks_per_mhz\": 3.247497151268116, \"ulpmark_cm_score\": 121.67880256145061}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1307.84258501, 1307.84258501, 1308.00128017, 1298.021549654], \"power_mean\": 1305.426999961, \"energy_millijoules\": 6527.134999805001, \"energy_joules\": 6.527134999805001}}, \"960000\": {\"active\": {\"elapsed_sec\": 80.200979396, \"elapsed_ns\": 80200979396, \"power_samples\": [19.369558246000224, 21.00581825600034, 21.00581825600034, 17.082801766000102, 17.082801766000102, 17.082801766000102, 17.082801766000102, 17.082801766000102, 17.082801766000102, 26.802113164000275, 22.883350188000577, 22.883350188000577, 20.923968700000387, 20.923968700000387, 28.847835866000196, 28.847835866000196, 17.082801766000102, 22.883350188000577, 22.883350188000577, 17.00119059800045, 20.923968700000387, 20.923968700000387, 22.965318816000263, 20.842119144000435, 20.842119144000435, 13.07841249600051, 26.71990639200044, 26.71990639200044, 18.87884184600034, 22.801381560000436, 12.834294156000396, 12.834294156000396, 26.555492848000313, 16.756357094000123, 16.756357094000123, 22.637444304000155, 20.596235027000375, 20.596235027000375, 28.518531514000188, 20.596235027000375, 20.596235027000375, 26.390742391000458, 18.633316165999986, 18.633316165999986, 22.637444304000155, 20.678420032000304, 20.678420032000304, 20.596235027000375, 20.596235027000375, 22.555139739000424, 22.555139739000424, 20.514385471000423, 26.472949163000294, 26.472949163000294, 22.473171111000283, 18.633316165999986, 18.633316165999986, 20.43253591500047, 22.39120248300037, 22.39120248300037, 22.555139739000424, 22.473171111000283, 22.473171111000283, 18.4698556860003, 18.30639520600016, 22.227265227000316, 22.227265227000316, 18.4698556860003, 22.473171111000283, 22.473171111000283, 20.514385471000423, 26.390742391000458, 26.390742391000458, 22.227265227000316, 20.26883680300034, 20.26883680300034, 28.271215848000338, 18.4698556860003, 18.4698556860003, 22.227265227000316], \"power_mean\": 21.22289593402531, \"energy_millijoules\": 1702.0970395282159, \"energy_joules\": 1.7020970395282158, \"coremark_score\": 3117.401334, \"coremarks_per_mhz\": 3.24729305625, \"ulpmark_cm_score\": 146.8776422226165}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1297.3912130449999, 1306.96911124, 1308.850932204, 1305.24181409], \"power_mean\": 1304.61326764475, \"energy_millijoules\": 6523.066338223751, \"energy_joules\": 6.52306633822375}}, \"1036800\": {\"active\": {\"elapsed_sec\": 74.293211846, \"elapsed_ns\": 74293211846, \"power_samples\": [28.353541936000283, 35.77868530100045, 35.77868530100045, 35.52993808600036, 31.610260982000455, 31.610260982000455, 29.900101776000156, 31.85829205600021, 22.063327971000263, 22.063327971000263, 25.97970853100037, 31.527696750000132, 31.527696750000132, 19.777404018000425, 25.568337758000325, 25.568337758000325, 27.44761756600019, 21.653148894000424, 21.653148894000424, 21.653148894000424, 582.6182223510002, 582.6182223510002, 31.445132518000264, 31.527696750000132, 27.529943654000135, 27.529943654000135, 29.487538086000313, 27.529943654000135, 27.529943654000135, 29.487538086000313, 37.072822359000384, 37.072822359000384, 25.321380529000635, 29.40509292600018, 29.40509292600018, 25.321380529000635, 31.197101444000282, 31.197101444000282, 29.239864716000284, 27.282627988000286, 25.321380529000635, 25.321380529000635, 29.239864716000284, 29.157419556000377, 29.157419556000377, 27.282627988000286, 29.157419556000377, 29.157419556000377, 27.282627988000286, 31.197101444000282, 31.197101444000282, 19.36782078900046, 36.989900667000484, 36.989900667000484, 29.074974396000243, 25.15696698500051, 25.15696698500051, 31.03197298000009, 25.15696698500051, 31.114537212000414, 31.114537212000414, 31.03197298000009, 27.200301900000113, 27.200301900000113, 27.200301900000113, 35.03278301100045, 35.03278301100045, 31.03197298000009, 27.200301900000113, 27.200301900000113, 29.074974396000243, 29.074974396000243, 29.074974396000243, 25.23917375700057], \"power_mean\": 43.81004738270302, \"energy_millijoules\": 3254.7891311864532, \"energy_joules\": 3.2547891311864534, \"coremark_score\": 3365.281068, \"coremarks_per_mhz\": 3.2458343634259257, \"ulpmark_cm_score\": 76.80989149329888}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1296.4455467550001, 1296.4455467550001, 1300.29100443, 1298.0151005880002], \"power_mean\": 1297.7992996320002, \"energy_millijoules\": 6488.996498160001, \"energy_joules\": 6.488996498160001}}, \"1094400\": {\"active\": {\"elapsed_sec\": 70.348578879, \"elapsed_ns\": 70348578879, \"power_samples\": [29.487538086000313, 28.745193756000162, 28.745193756000162, 26.870997548000332, 34.6187699110003, 28.745193756000162, 28.745193756000162, 28.745193756000162, 30.53624921000005, 30.53624921000005, 28.745193756000162, 44.405390658000215, 44.405390658000215, 30.701716052000393, 34.701572531000465, 34.701572531000465, 38.531814503000305, 34.6187699110003, 34.6187699110003, 36.40910898000038, 28.579965546000267, 28.415075226000226, 28.415075226000226, 34.287220076000494, 30.371120746000315, 30.371120746000315, 30.371120746000315, 30.371120746000315, 30.371120746000315, 28.579965546000267, 34.20441745600033, 34.20441745600033, 30.371120746000315, 28.33263006600032, 28.33263006600032, 36.160343904000456, 30.371120746000315, 30.371120746000315, 36.243265596000356, 20.75082211200015, 30.371120746000315, 30.371120746000315, 28.33263006600032, 26.459029706000138, 26.459029706000138, 34.12161483600039, 26.212051442000302, 26.212051442000302, 30.205992282000352, 28.16773974600028, 28.16773974600028, 26.294377530000247, 30.205992282000352, 30.205992282000352, 30.205992282000352, 35.99450052000043, 34.12161483600039, 34.12161483600039, 34.20441745600033, 24.08760512300023, 24.08760512300023, 34.12161483600039, 30.205992282000352, 30.205992282000352, 30.205992282000352, 34.038812216000224, 34.038812216000224, 35.82831729300028, 34.038812216000224, 34.038812216000224], \"power_mean\": 31.17746938647172, \"energy_millijoules\": 2193.2906643818137, \"energy_joules\": 2.1932906643818137, \"coremark_score\": 3553.96338, \"coremarks_per_mhz\": 3.2474080592105263, \"ulpmark_cm_score\": 113.9839803542242}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1297.4626800100002, 1297.4626800100002, 1299.5004557700001, 1297.620745348], \"power_mean\": 1298.0116402845001, \"energy_millijoules\": 6490.0582014225, \"energy_joules\": 6.4900582014225}}, \"1171200\": {\"active\": {\"elapsed_sec\": 65.733965391, \"elapsed_ns\": 65733965391, \"power_samples\": [-29.272386585999584, 37.78376696500027, 594.0152794340004, 594.0152794340004, 35.74539560100038, 37.617685437000546, 37.617685437000546, 35.579552217000355, 35.579552217000355, 33.62445976100025, 33.62445976100025, 37.53464467300046, 29.71026851200031, 29.71026851200031, 37.53464467300046, 33.458854521000376, 33.458854521000376, 35.413708833000555, 33.70726238100042, 33.70726238100042, 39.49374346600007, 35.579552217000355, 35.579552217000355, 29.71026851200031, 35.579552217000355, 35.579552217000355, 35.579552217000355, 37.53464467300046, 37.617685437000546, 37.617685437000546, 43.069993686000316, 35.24752560600041, 35.24752560600041, 37.2021412860006, 37.53464467300046, 37.53464467300046, 35.413708833000555, 39.327423306000355, 39.327423306000355, 37.2021412860006, 47.150846403000514, 33.458854521000376, 33.458854521000376, 39.160762326000395, 29.54514004800035, 29.54514004800035, 39.327423306000355, 34.99876053000048, 34.99876053000048, 44.77405747800026, 36.95301899400033, 36.95301899400033, 38.91128208600048, 34.915838838000354, 34.915838838000354, 29.131980510000176, 39.0776022460002, 39.0776022460002, 32.961699446000466, 34.915838838000354, 32.961699446000466, 32.961699446000466, 29.049416278000308, 34.915838838000354, 34.915838838000354], \"power_mean\": 51.94126574075423, \"energy_millijoules\": 3414.3053645674727, \"energy_joules\": 3.414305364567473, \"coremark_score\": 3803.496174, \"coremarks_per_mhz\": 3.2475206403688524, \"ulpmark_cm_score\": 73.221335910495}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1298.63124072, 1302.546429584, 1302.546429584, 1298.63124072], \"power_mean\": 1300.588835152, \"energy_millijoules\": 6502.94417576, \"energy_joules\": 6.50294417576}}, \"1248000\": {\"active\": {\"elapsed_sec\": 61.68977732, \"elapsed_ns\": 61689777320, \"power_samples\": [-33.89960311899972, 46.56504734600048, 36.70389670200052, 36.70389670200052, 36.53747484300038, 36.70389670200052, 36.70389670200052, 38.661801846000344, 44.35612871400053, 44.35612871400053, 46.31379473700031, 48.26745735300051, 48.26745735300051, 38.411980786000186, 46.48141073400052, 52.3471183740005, 52.3471183740005, 46.230158125000344, 38.49514086600038, 38.49514086600038, 34.50089053500028, 42.40246609800033, 42.40246609800033, 44.35612871400053, 44.35612871400053, 44.35612871400053, 48.18370166900036, 44.18909412200014, 44.18909412200014, 36.37139331500043, 42.23566965000009, 42.23566965000009, 36.28835255100057, 38.24566062600047, 44.18909412200014, 44.18909412200014, 44.18909412200014, 44.272611418000224, 44.272611418000224, 42.1522714260002, 46.14652151300038, 46.14652151300038, 42.1522714260002, 36.038889928000344, 36.038889928000344, 41.90173495800036, 37.99583956600031, 37.99583956600031, 41.90173495800036, 41.90173495800036, 44.10557682600029, 44.10557682600029, 37.99583956600031, 43.85468265400027, 43.85468265400027, 45.72799568000028, 41.81833673400024, 41.81833673400024, 41.81833673400024, 45.64435906800054, 45.64435906800054], \"power_mean\": 41.16778729154134, \"energy_millijoules\": 2539.631630772311, \"energy_joules\": 2.539631630772311, \"coremark_score\": 4052.783452, \"coremarks_per_mhz\": 3.247422637820513, \"ulpmark_cm_score\": 98.43947325698339}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1293.8451258339999, 1293.8451258339999, 1297.76170194, 1295.64767618], \"power_mean\": 1295.2749074469998, \"energy_millijoules\": 6476.374537234999, \"energy_joules\": 6.476374537234999}}, \"1324800\": {\"active\": {\"elapsed_sec\": 58.130107269, \"elapsed_ns\": 58130107269, \"power_samples\": [-24.905914423999775, 45.64435906800054, 606.4921931180004, 606.4921931180004, 43.43709617400032, 43.43709617400032, 43.43709617400032, 47.42955725200045, 53.29097244200034, 53.29097244200034, 43.43709617400032, 51.338501034000274, 47.42955725200045, 47.42955725200045, 45.477085844000385, 45.39344923200042, 45.39344923200042, 45.477085844000385, 47.5970686200003, 47.5970686200003, 47.345801568000525, 51.17051289000028, 51.17051289000028, 43.43709617400032, 51.254506962000505, 51.254506962000505, 55.07497941800034, 51.08617458000049, 45.30981262000023, 45.30981262000023, 51.17051289000028, 41.3176055940005, 41.3176055940005, 45.22583323500044, 51.08617458000049, 51.08617458000049, 51.08617458000049, 51.08617458000049, 51.08617458000049, 51.08617458000049, 55.07497941800034, 55.07497941800034, 41.3176055940005, 51.08617458000049, 45.05856001100051, 45.05856001100051, 50.9181864360005, 53.03828828400037, 53.03828828400037, 50.83419236400027, 41.150809146000256, 41.150809146000256, 44.974923399000545, 46.926679887000546, 46.926679887000546, 47.010435571000244, 44.974923399000545, 44.974923399000545], \"power_mean\": 65.88220448884523, \"energy_millijoules\": 3829.7396140547667, \"energy_joules\": 3.8297396140547666, \"coremark_score\": 4301.001273, \"coremarks_per_mhz\": 3.246528738677536, \"ulpmark_cm_score\": 65.2785894588041}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1293.136037493, 1302.9201082949999, 1302.9201082949999, 1291.1808259650002], \"power_mean\": 1297.539270012, \"energy_millijoules\": 6487.69635006, \"energy_joules\": 6.48769635006}}, \"1401600\": {\"active\": {\"elapsed_sec\": 54.928488573, \"elapsed_ns\": 54928488573, \"power_samples\": [-31.324326801999632, 50.75019829200028, 56.6894618280005, 56.6894618280005, 60.25826892200007, 54.231966830000374, 54.231966830000374, 52.28092526200021, 62.04013113800033, 56.18300839800031, 56.18300839800031, 52.449151550000124, 62.124839886000245, 62.124839886000245, 60.08908957000017, 62.04013113800033, 62.04013113800033, 63.995170742000255, 56.18300839800031, 56.18300839800031, 55.929954534000444, 61.78600489400037, 61.78600489400037, 53.97927018200039, 60.00449989400022, 54.14773461400023, 54.14773461400023, 63.910342678000234, 52.02858583000034, 52.02858583000034, 55.929954534000444, 52.19681211800025, 52.19681211800025, 53.97927018200039, 55.929954534000444, 55.929954534000444, 55.929954534000444, 63.74068655000042, 63.74068655000042, 55.84560324600034, 61.95542238999997, 61.95542238999997, 55.84560324600034, 55.84560324600034, 55.84560324600034, 55.84560324600034, 59.665794511000286, 59.75073086600014, 59.75073086600014, 55.84560324600034, 71.46211666600016, 71.46211666600016, 59.665794511000286, 55.76090625600045], \"power_mean\": 56.31979444159289, \"energy_millijoules\": 3093.561185418744, \"energy_joules\": 3.093561185418744, \"coremark_score\": 4551.661356, \"coremarks_per_mhz\": 3.2474752825342463, \"ulpmark_cm_score\": 80.81301290511247}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1294.621706072, 1290.70870774, 1290.70870774, 1292.505700884], \"power_mean\": 1292.136205609, \"energy_millijoules\": 6460.681028045, \"energy_joules\": 6.460681028045}}, \"1478400\": {\"active\": {\"elapsed_sec\": 52.076952375, \"elapsed_ns\": 52076952375, \"power_samples\": [60.00449989400022, 60.00449989400022, 63.570682766000346, 71.29115786500029, 71.29115786500029, 61.362113987000384, 63.31619857400028, 63.31619857400028, 55.676554968000346, 59.58120483500011, 55.676554968000346, 55.676554968000346, 63.31619857400028, 63.485854702000324, 63.485854702000324, 69.16646408600036, 609.9402535100003, 609.9402535100003, 59.327435807000256, 65.18133994200025, 65.18133994200025, 61.362113987000384, 61.362113987000384, 61.362113987000384, 59.58120483500011, 69.3368346460004, 69.3368346460004, 61.27740523900002, 61.27740523900002, 65.01144567000028, 65.01144567000028, 63.061714382000446, 63.061714382000446, 63.061714382000446, 61.107987743000194, 63.061714382000446, 63.061714382000446, 69.08127880600046, 63.23137051000049, 63.23137051000049, 53.47353167200026, 65.18133994200025, 65.18133994200025, 65.01144567000028, 55.085750250000274, 63.061714382000446, 63.061714382000446, 55.42350110400048, 63.23137051000049, 63.23137051000049, 61.27740523900002, 61.27740523900002], \"power_mean\": 83.67634154153878, \"energy_millijoules\": 4357.608853372949, \"energy_joules\": 4.357608853372949, \"coremark_score\": 4800.860314, \"coremarks_per_mhz\": 3.247335169101731, \"ulpmark_cm_score\": 57.37091336375701}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1299.851045078, 1299.851045078, 1290.0793241949998, 1290.0793241949998], \"power_mean\": 1294.9651846365, \"energy_millijoules\": 6474.8259231824995, \"energy_joules\": 6.474825923182499}}, \"1555200\": {\"active\": {\"elapsed_sec\": 49.504924564, \"elapsed_ns\": 49504924564, \"power_samples\": [70.6083714880001, 70.6083714880001, 74.42157591600017, 64.67130898200026, 64.67130898200026, 70.52306689200032, 70.4377622960003, 70.4377622960003, 68.4846327260002, 68.56981800600033, 68.56981800600033, 70.52306689200032, 72.47232140400024, 72.47232140400024, 68.56981800600033, 70.4377622960003, 72.47232140400024, 72.47232140400024, 70.4377622960003, 72.38689773600026, 72.38689773600026, 72.21605040000009, 74.07905437100021, 74.07905437100021, 68.31426216600039, 68.31426216600039, 68.31426216600039, 70.18149889900019, 70.18149889900019, 70.18149889900019, 77.89482211200016, 74.16494769600013, 70.26715310400004, 70.26715310400004, 73.99351163100027, 73.99351163100027, 73.99351163100027, 70.01088970700039, 73.90796889100034, 73.90796889100034, 72.1302766350002, 72.1302766350002, 72.1302766350002, 72.1302766350002, 73.90796889100034, 73.90796889100034, 70.09619430300017, 74.07905437100021, 70.09619430300017], \"power_mean\": 71.33687052428596, \"energy_millijoules\": 3531.5263939366114, \"energy_joules\": 3.5315263939366113, \"coremark_score\": 5050.403022, \"coremarks_per_mhz\": 3.247429926697531, \"ulpmark_cm_score\": 70.7909193116135}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1293.4379938680001, 1293.516864916, 1295.3907034200001, 1295.3907034200001], \"power_mean\": 1294.434066406, \"energy_millijoules\": 6472.17033203, \"energy_joules\": 6.47217033203}}, \"1670400\": {\"active\": {\"elapsed_sec\": 46.089445086, \"elapsed_ns\": 46089445086, \"power_samples\": [-32.90271748799955, 100.85465191900016, 87.12384819300019, 87.12384819300019, 86.95074072600028, 91.02372834600033, 96.69725112600031, 96.69725112600031, 92.79784872600021, 98.55786507400035, 98.55786507400035, 92.71111453400044, 88.7294454300004, 88.7294454300004, 96.52330596600018, 88.81594147800047, 88.81594147800047, 98.55786507400035, 98.47077342200032, 98.47077342200032, 90.67691288600031, 96.52330596600018, 92.62438034200022, 92.62438034200022, 96.52330596600018, 96.26238822600021, 96.26238822600021, 100.33103015400025, 98.3836817700003, 98.3836817700003, 92.53764615000023, 106.17706577400031, 106.17706577400031, 98.20949846600024, 86.51885706600024, 86.51885706600024, 82.53814497100029, 88.3831067460003, 96.1750592010003, 96.1750592010003, 92.19035391400053, 645.5817139860001, 645.5817139860001, 82.36586779500021, 88.29661069800045, 88.29661069800045], \"power_mean\": 114.8614233562829, \"energy_millijoules\": 5293.899264279198, \"energy_joules\": 5.293899264279198, \"coremark_score\": 5424.758598, \"coremarks_per_mhz\": 3.2475805783045977, \"ulpmark_cm_score\": 47.224170223049995}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1291.087201449, 1298.899656498, 1298.899656498, 1292.88557329], \"power_mean\": 1295.44302193375, \"energy_millijoules\": 6477.21510966875, \"energy_joules\": 6.477215109668751}}, \"1747200\": {\"active\": {\"elapsed_sec\": 44.064977744, \"elapsed_ns\": 44064977744, \"power_samples\": [-33.612880161999556, 92.10361972200053, 99.89461911300032, 99.89461911300032, 92.10361972200053, 99.9818298370003, 99.9818298370003, 99.63298694100035, 91.84341714600032, 91.84341714600032, 95.65322372100013, 99.89461911300032, 99.89461911300032, 97.94786657700024, 97.68659162100016, 91.75668295400033, 91.75668295400033, 95.65322372100013, 99.45820807200039, 99.45820807200039, 99.89461911300032, 99.63298694100035, 99.63298694100035, 97.68659162100016, 95.7401963010002, 95.7401963010002, 105.38859323200063, 97.59949996900036, 97.59949996900036, 95.65322372100013, 97.59949996900036, 91.66959329400038, 91.66959329400038, 97.51205138400019, 95.56589469600021, 95.56589469600021, 95.56589469600021, 95.65322372100013, 95.65322372100013, 95.56589469600021, 91.49612491000039, 91.49612491000039, 95.39194953600031, 95.56589469600021], \"power_mean\": 93.48559674229575, \"energy_millijoules\": 4119.440739833821, \"energy_joules\": 4.119440739833821, \"coremark_score\": 5673.952021, \"coremarks_per_mhz\": 3.2474542244734432, \"ulpmark_cm_score\": 60.687849586612835}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1297.948592624, 1297.948592624, 1294.28419428, 1300.1413170199999], \"power_mean\": 1297.580674137, \"energy_millijoules\": 6487.903370685, \"energy_joules\": 6.487903370684999}}, \"1824000\": {\"active\": {\"elapsed_sec\": 42.210200036, \"elapsed_ns\": 42210200036, \"power_samples\": [99.1965759000002, 99.1965759000002, 104.95039342600057, 104.95039342600057, 104.95039342600057, 106.89607382600047, 110.8793473200003, 110.8793473200003, 106.8083865700005, 104.86282524200055, 106.8083865700005, 106.8083865700005, 108.58196169700045, 108.75793470400026, 108.75793470400026, 108.58196169700045, 108.58196169700045, 108.58196169700045, 104.59976180400031, 108.49415512500013, 108.49415512500013, 110.5272843930004, 104.68732998800033, 104.68732998800033, 108.49415512500013, 116.1906725900003, 106.54496542800052, 106.54496542800052, 110.3514331050003, 104.59976180400031, 104.59976180400031, 108.49415512500013, 110.5272843930004, 110.5272843930004, 106.45727817200031, 104.51219362000029, 104.51219362000029, 106.45727817200031, 106.45727817200031, 106.45727817200031, 104.51219362000029, 116.10238948600022], \"power_mean\": 107.21103191295273, \"energy_millijoules\": 4525.399103111715, \"energy_joules\": 4.525399103111715, \"coremark_score\": 5923.328437, \"coremarks_per_mhz\": 3.2474388360745614, \"ulpmark_cm_score\": 55.243746309159164}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1291.859603182, 1297.710583126, 1293.80992983, 1293.80992983], \"power_mean\": 1294.297511492, \"energy_millijoules\": 6471.48755746, \"energy_joules\": 6.47148755746}}, \"1900800\": {\"active\": {\"elapsed_sec\": 40.603303891, \"elapsed_ns\": 40603303891, \"power_samples\": [133.1679075660004, 133.1679075660004, 127.33081430600032, 129.10093411000048, 129.10093411000048, 125.20868725800028, 125.20868725800028, 127.06382096600032, 127.06382096600032, 132.98919708600033, 129.10093411000048, 129.10093411000048, 134.9373124500005, 129.01181701400014, 129.01181701400014, 132.72113136600024, 125.0309298420002, 125.0309298420002, 132.81048660600004, 126.97482318600032, 126.97482318600032, 126.88582540600032, 128.83358282200015, 126.70746510100048, 126.70746510100048, 128.65498339600026, 679.162769776, 679.162769776, 132.54205467600036, 126.88582540600032, 126.88582540600032, 136.4331086110003, 134.6688887820003, 134.6688887820003, 136.61266305400022, 128.65498339600026, 128.65498339600026, 136.4331086110003, 136.34351498300043, 136.34351498300043], \"power_mean\": 157.5337717845503, \"energy_millijoules\": 6396.391608863538, \"energy_joules\": 6.396391608863538, \"coremark_score\": 6157.635468, \"coremarks_per_mhz\": 3.239496773989899, \"ulpmark_cm_score\": 39.08453629599112}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1287.4042024300002, 1299.10914809, 1293.25667526, 1293.25667526], \"power_mean\": 1293.25667526, \"energy_millijoules\": 6466.2833763, \"energy_joules\": 6.4662833763}}}}, \"4\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 159.317904574, \"elapsed_ns\": 159317904574, \"power_samples\": [-32.926327973999605, 49.25112844800037, 37.64603296200039, 29.771635347000483, 29.771635347000483, 37.64603296200039, 37.64603296200039, 37.64603296200039, 33.752289746000315, 41.54376566900055, 41.54376566900055, 39.50938727400012, 33.752289746000315, 33.752289746000315, 33.669129666000345, 29.854557039000383, 29.854557039000383, 39.59290457000043, 33.835449826000286, 37.56263473800027, 37.56263473800027, 39.50938727400012, 39.50938727400012, 39.50938727400012, 37.64603296200039, 39.50938727400012, 39.50938727400012, 39.25883538600033, 33.669129666000345, 33.669129666000345, 41.20921922100047, 37.56263473800027, 37.56263473800027, 37.31244006600036, 43.40688159300021, 39.25883538600033, 39.25883538600033, 43.49063727700036, 37.64603296200039, 37.64603296200039, 33.752289746000315, 33.669129666000345, 33.669129666000345, 31.80142864700042, 37.56263473800027, 37.56263473800027, 33.336489346000235, 39.25883538600033, 39.25883538600033, 39.175318090000246, 39.175318090000246, 37.22904184200047, 37.22904184200047, 41.1255826090005, 37.31244006600036, 37.31244006600036, 29.35668704400041, 39.175318090000246, 39.175318090000246, 39.175318090000246, 39.25883538600033, 39.25883538600033, 33.419649426000205, 39.175318090000246, 39.175318090000246, 39.091458510000166, 39.091458510000166, 37.14530182200019, 37.14530182200019, 33.336489346000235, 39.091458510000166, 39.091458510000166, 39.091458510000166, 33.252988446000245, 33.252988446000245, 36.97850537400018, 31.302843732000383, 31.302843732000383, 41.1255826090005, 41.041603224000255, 41.041603224000255, 33.086668286000304, 40.87433000000033, 38.84090662200015, 38.84090662200015, 29.35668704400041, 37.14530182200019, 37.14530182200019, 31.302843732000383, 33.252988446000245, 33.252988446000245, 36.97850537400018, 36.97850537400018, 36.97850537400018, 31.136762204000433, 42.82024854400038, 42.82024854400038, 42.82024854400038, 31.053721440000345, 33.003508206000106, 33.003508206000106, 38.75738932600029, 31.053721440000345, 31.053721440000345, 38.92442391800023, 31.053721440000345, 31.053721440000345, 38.84090662200015, 36.89510715000006, 36.89510715000006, 36.811708926000165, 32.83718804600039, 32.83718804600039, 38.75738932600029, 36.7283107020005, 40.70705677600063, 40.70705677600063, 30.970680676000484, 36.811708926000165, 36.811708926000165, 38.75738932600029, 582.3151464660004, 582.3151464660004, 48.40965228200048, 32.83718804600039, 32.83718804600039, 38.67387203000021, 32.83718804600039, 32.83718804600039, 32.83718804600039, 27.079319876000454, 32.83718804600039, 32.83718804600039, 26.83057266100036, 22.935940952000237, 22.935940952000237, 36.56117245800033, 32.67052706600043, 32.67052706600043, 32.83718804600039, 28.77589535700031, 28.77589535700031, 42.31737117900025, 38.50649515400028, 38.50649515400028, 38.42297785800042, 40.45580416700045, 30.638177289000396, 30.638177289000396, 40.37216755500026, 36.47777423400021, 36.47777423400021, 40.37216755500026, 32.50420690600026, 32.50420690600026, 32.587366986000234, 28.61005197300051, 28.61005197300051], \"power_mean\": 42.56944879495601, \"energy_millijoules\": 6782.075380882581, \"energy_joules\": 6.782075380882581, \"coremark_score\": 1569.326571, \"coremarks_per_mhz\": 5.23108857, \"ulpmark_cm_score\": 36.86187279851001}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1286.932084205, 1292.8617246600002, 1292.8617246600002, 1286.932084205], \"power_mean\": 1289.8969044325, \"energy_millijoules\": 6449.4845221625, \"energy_joules\": 6.4494845221625}}, \"345600\": {\"active\": {\"elapsed_sec\": 138.317840728, \"elapsed_ns\": 138317840728, \"power_samples\": [-34.11182723399952, 26.74777004100042, 26.996517256000516, 26.996517256000516, 36.56117245800033, 26.83057266100036, 26.83057266100036, 32.587366986000234, 32.587366986000234, 36.47777423400021, 36.47777423400021, 32.67052706600043, 32.587366986000234, 32.587366986000234, 30.638177289000396, 32.50420690600026, 32.50420690600026, 36.310977786000194, 32.67052706600043, 32.67052706600043, 36.394376010000315, 26.664967421000483, 26.664967421000483, 42.23361549500032, 28.278365205000455, 22.688248256000406, 22.688248256000406, 32.42104682600029, 28.52713028100061, 28.52713028100061, 20.495947296000168, 32.171566586000154, 32.171566586000154, 30.222973469000408, 30.47209576100022, 30.47209576100022, 32.42104682600029, 30.47209576100022, 30.47209576100022, 28.278365205000455, 28.278365205000455, 32.171566586000154, 32.171566586000154, 28.278365205000455, 28.278365205000455, 28.278365205000455, 30.47209576100022, 28.278365205000455, 28.278365205000455, 26.333756941000274, 30.555136525000535, 30.555136525000535, 32.42104682600029, 30.222973469000408, 30.222973469000408, 30.222973469000408, 35.977043094000464, 30.139592374000358, 30.139592374000358, 35.893644870000344, 30.139592374000358, 30.139592374000358, 32.08806568600039, 35.977043094000464, 35.977043094000464, 28.278365205000455, 28.278365205000455, 28.278365205000455, 30.139592374000358, 30.139592374000358, 30.139592374000358, 30.05655161000027, 28.195103670000435, 32.00490560600042, 32.00490560600042, 20.16582876600023, 30.05655161000027, 30.05655161000027, 35.72684842200033, 29.890470082000547, 29.890470082000547, 29.890470082000547, 28.112181978000535, 28.112181978000535, 32.00490560600042, 32.00490560600042, 32.00490560600042, 37.838014502000306, 30.05655161000027, 35.977043094000464, 35.977043094000464, 37.838014502000306, 32.00490560600042, 32.00490560600042, 31.83858544600048, 31.75542536600028, 31.75542536600028, 31.83858544600048, 584.7706206690002, 584.7706206690002, 27.94633859400051, 29.80742931800046, 29.80742931800046, 31.75542536600028, 29.890470082000547, 27.94633859400051, 27.94633859400051, 31.75542536600028, 29.72438855400037, 29.72438855400037, 27.78049521000048, 31.83858544600048, 31.83858544600048, 25.919404486000303, 25.836601866000365, 25.836601866000365, 21.944831790000308, 29.72438855400037, 29.72438855400037, 31.58910520600034, 20.00093844600042, 20.00093844600042, 29.72438855400037, 21.944831790000308, 29.72438855400037, 29.72438855400037, 29.64134779000028, 31.67226528600031, 31.67226528600031, 35.56005197400032, 21.944831790000308, 21.944831790000308, 21.862267558000212, 35.56005197400032, 35.56005197400032, 35.476653750000196, 21.862267558000212], \"power_mean\": 37.81332194344562, \"energy_millijoules\": 5230.257041970099, \"energy_joules\": 5.230257041970098, \"coremark_score\": 1807.612217, \"coremarks_per_mhz\": 5.230359424189815, \"ulpmark_cm_score\": 47.79879803112538}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1289.965728304, 1291.8342056400002, 1291.8342056400002, 1295.728902408], \"power_mean\": 1292.3407604980002, \"energy_millijoules\": 6461.703802490001, \"energy_joules\": 6.4617038024900015}}, \"422400\": {\"active\": {\"elapsed_sec\": 113.146238863, \"elapsed_ns\": 113146238863, \"power_samples\": [46.97869465600024, 46.97869465600024, 40.976593713000284, 31.339284146000182, 46.894581512000286, 46.894581512000286, 41.06034939700044, 40.976593713000284, 40.976593713000284, 40.976593713000284, 46.81046836800033, 46.81046836800033, 41.06034939700044, 48.83799808000049, 48.83799808000049, 37.169533850000334, 46.81046836800033, 46.81046836800033, 48.50106921600036, 46.55812893600023, 37.08601655400025, 37.08601655400025, 40.72532666100028, 38.78238638100038, 38.78238638100038, 44.53085034600031, 40.64122771600046, 40.64122771600046, 36.835464666000235, 44.61518865600033, 44.61518865600033, 38.69840699600036, 46.55812893600023, 46.55812893600023, 38.78238638100038, 44.867170872000315, 44.61518865600033, 44.61518865600033, 39.0332962170005, 44.61518865600033, 44.61518865600033, 44.53085034600031, 36.75160508600038, 36.75160508600038, 44.61518865600033, 34.89252438600033, 34.89252438600033, 38.78238638100038, 40.64122771600046, 40.64122771600046, 50.35931250600038, 38.78238638100038, 38.78238638100038, 36.75160508600038, 48.416491786000506, 40.55747203200053, 40.55747203200053, 36.584570494000445, 38.614770384000394, 38.614770384000394, 34.64198791800027, 38.53113377200066, 38.53113377200066, 40.47371634800038, 36.584570494000445, 36.584570494000445, 36.41753590200028, 48.07956292200038, 48.07956292200038, 44.19487405800032, 36.41753590200028, 40.30620498000053, 40.30620498000053, 36.3340186060002, 44.19487405800032, 44.19487405800032, 40.55747203200053, 44.36286220200054, 44.36286220200054, 30.50734252600023, 36.41753590200028, 36.41753590200028, 44.19487405800032, 44.11087998600033, 44.11087998600033, 44.11087998600033, 38.3638605480005, 46.13721849000012, 46.13721849000012, 38.3638605480005, 44.19487405800032, 44.19487405800032, 40.30620498000053, 44.19487405800032, 44.19487405800032, 46.13721849000012, 592.5482488140001, 592.5482488140001, 47.99533070600023, 40.13869361200045, 40.13869361200045, 44.02688591400033, 36.250501310000345, 38.112950712000384, 38.112950712000384, 44.02688591400033, 40.13869361200045, 40.13869361200045, 44.11087998600033, 40.0549379280003, 40.0549379280003, 40.0549379280003], \"power_mean\": 51.46234354550035, \"energy_millijoules\": 5822.770615248949, \"energy_joules\": 5.822770615248949, \"coremark_score\": 2209.808012, \"coremarks_per_mhz\": 5.231553058712121, \"ulpmark_cm_score\": 42.93488727604829}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1296.6480723299999, 1288.7820161000002, 1285.0439335699998, 1285.0439335699998], \"power_mean\": 1288.8794888925, \"energy_millijoules\": 6444.3974444625, \"energy_joules\": 6.4443974444625}}, \"499200\": {\"active\": {\"elapsed_sec\": 95.761289651, \"elapsed_ns\": 95761289651, \"power_samples\": [48.07956292200038, 47.82686627400017, 47.82686627400017, 57.54476131800038, 47.57382441200025, 47.57382441200025, 49.34675134800045, 53.65680740400012, 53.65680740400012, 63.20000328600031, 49.59980521200032, 47.405359980000185, 47.405359980000185, 53.06433299300011, 43.69056538800032, 43.69056538800032, 53.48728137300009, 57.37475753400054, 57.37475753400054, 45.29574232400023, 47.23689554800035, 47.23689554800035, 52.979396638000026, 43.35458910000034, 43.35458910000034, 47.23689554800035, 56.95061721400043, 55.005486217000225, 55.005486217000225, 47.23689554800035, 49.009000494000475, 49.009000494000475, 47.15231811800027, 45.21128445400018, 45.21128445400018, 56.780613430000585, 47.06808590200035, 47.06808590200035, 54.92043030200034, 52.979396638000026, 52.979396638000026, 49.093351782000354, 43.18625671800032, 54.8357215540002, 54.8357215540002, 47.06808590200035, 54.92043030200034, 54.92043030200034, 45.12717131000045, 52.8948069620003, 52.8948069620003, 52.8948069620003, 46.98385368600043, 46.98385368600043, 56.69578536600034, 49.009000494000475, 49.009000494000475, 44.87483187800035, 44.87483187800035, 42.934274502000335, 42.934274502000335, 52.55644825800027, 58.46668661400031, 58.46668661400031, 52.641037934000224, 46.73115703800022, 46.73115703800022, 46.73115703800022, 42.85028043000034, 42.85028043000034, 54.4968865620001, 48.75594663000015, 48.75594663000015, 52.641037934000224, 54.4968865620001, 54.41217781400019, 54.41217781400019, 48.587244054000166, 52.55644825800027, 52.55644825800027, 54.41217781400019, 44.70660559000021, 44.70660559000021, 46.56234739200045, 46.39388296000038, 46.39388296000038, 48.50254706400028, 48.50254706400028, 48.50254706400028, 54.3271218990003, 52.21774287500034, 44.622147720000385, 44.622147720000385, 46.39388296000038, 46.39388296000038], \"power_mean\": 49.80619689054766, \"energy_millijoules\": 4769.50564685047, \"energy_joules\": 4.76950564685047, \"coremark_score\": 2611.047866, \"coremarks_per_mhz\": 5.2304644751602565, \"ulpmark_cm_score\": 52.416333790292676}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1287.913788088, 1287.913788088, 1289.85815772, 1288.0718534260002], \"power_mean\": 1288.4393968305, \"energy_millijoules\": 6442.196984152501, \"energy_joules\": 6.442196984152501}}, \"576000\": {\"active\": {\"elapsed_sec\": 82.980827, \"elapsed_ns\": 82980827000, \"power_samples\": [63.865462705000255, 63.865462705000255, 63.694853513000226, 63.60954891700021, 63.60954891700021, 57.871708518000105, 63.694853513000226, 63.694853513000226, 61.75115528600031, 61.66597000600041, 61.66597000600041, 65.37795579600015, 55.84715707000032, 55.84715707000032, 61.410065046000454, 612.8558592000002, 57.5315718300003, 57.5315718300003, 61.49525032600036, 63.43859011600034, 63.43859011600034, 63.60954891700021, 57.61651896600051, 57.61651896600051, 65.37795579600015, 65.29253212800018, 65.29253212800018, 61.410065046000454, 63.35328552000033, 63.35328552000033, 63.35328552000033, 55.67715328600025, 57.61651896600051, 57.61651896600051, 63.43859011600034, 55.84715707000032, 55.84715707000032, 61.32487976600032, 55.42266909400041, 55.42266909400041, 55.592325222000454, 55.42266909400041, 55.42266909400041, 63.267980924000085, 63.267980924000085, 63.267980924000085, 53.56439599999999, 63.267980924000085, 61.23969448600042, 61.23969448600042, 67.14623599600009, 57.36167755800034, 57.36167755800034, 63.01206713600027, 67.06069325600038, 67.06069325600038, 70.94268356200041, 55.42266909400041, 55.42266909400041, 57.191783286000145, 55.25301296600037, 55.25301296600037, 64.8654137880003, 55.16818490200035, 55.16818490200035, 55.16818490200035, 53.22556100800034, 61.06932392600038, 61.06932392600038, 61.06932392600038, 62.926762540000254, 62.926762540000254, 57.10683615000039, 62.926762540000254, 62.926762540000254, 64.8654137880003, 63.01206713600027, 63.01206713600027, 66.7181717110002, 57.10683615000039, 62.926762540000254, 62.926762540000254], \"power_mean\": 67.42048432111007, \"energy_millijoules\": 5594.607545706247, \"energy_joules\": 5.594607545706247, \"coremark_score\": 3013.209912, \"coremarks_per_mhz\": 5.231267208333333, \"ulpmark_cm_score\": 44.685886893330014}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1284.7835126060002, 1288.90995255, 1288.90995255, 1279.030178448], \"power_mean\": 1285.4083990385002, \"energy_millijoules\": 6427.041995192501, \"energy_joules\": 6.427041995192502}}, \"652800\": {\"active\": {\"elapsed_sec\": 73.224862108, \"elapsed_ns\": 73224862108, \"power_samples\": [-29.896396667999852, 70.25608297600047, 70.25608297600047, 70.25608297600047, 74.04617450400042, 72.02233797600047, 72.02233797600047, 66.37600075100022, 76.0742206010002, 76.0742206010002, 66.29045801100028, 73.96015523200026, 73.96015523200026, 70.08452072000023, 66.20491527100012, 66.29045801100028, 66.29045801100028, 73.96015523200026, 66.29045801100028, 66.29045801100028, 76.0742206010002, 76.0742206010002, 76.0742206010002, 70.17030184800046, 76.0742206010002, 76.0742206010002, 72.10823817600044, 75.90194342500035, 75.90194342500035, 72.02233797600047, 72.02233797600047, 79.77757793700039, 79.77757793700039, 73.96015523200026, 72.02233797600047, 72.02233797600047, 75.64317463400039, 70.08452072000023, 70.08452072000023, 73.78776415000038, 71.85018552600013, 71.85018552600013, 81.45952349400045, 75.55703604600035, 75.55703604600035, 73.70174487800045, 65.94793646600033, 73.78776415000038, 73.78776415000038, 79.51809373800029, 69.74104464600032, 69.74104464600032, 69.65526351800031, 71.67838512600042, 71.67838512600042, 63.92505324600029, 75.55703604600035, 75.55703604600035, 63.83962957800031, 65.77685098600023, 65.77685098600023, 73.52970633400037, 73.6157256060003, 73.6157256060003, 73.3576677900005, 75.47089745800031, 73.3576677900005, 73.3576677900005, 625.8728724780003, 73.3576677900005, 73.3576677900005, 71.33443227600037], \"power_mean\": 78.59637580836144, \"energy_millijoules\": 5755.208780755814, \"energy_joules\": 5.755208780755813, \"coremark_score\": 3414.740753, \"coremarks_per_mhz\": 5.230914143688726, \"ulpmark_cm_score\": 43.43891065011342}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1291.923672794, 1291.923672794, 1288.04041377, 1286.1776553060001], \"power_mean\": 1289.516353666, \"energy_millijoules\": 6447.58176833, \"energy_joules\": 6.44758176833}}, \"729600\": {\"active\": {\"elapsed_sec\": 65.516852371, \"elapsed_ns\": 65516852371, \"power_samples\": [85.16097421400036, 80.68070457000044, 80.68070457000044, 88.3432496610003, 74.86757431500018, 74.86757431500018, 82.61709198600033, 84.81368197800043, 84.81368197800043, 74.86757431500018, 82.61709198600033, 78.9994793430003, 78.9994793430003, 78.65397241500023, 74.78143572700037, 74.78143572700037, 72.7551803480003, 80.59420852200037, 80.59420852200037, 80.5077124740003, 74.78143572700037, 74.78143572700037, 84.38001101800046, 90.1924263530002, 90.1924263530002, 82.44386174600027, 78.56759568300026, 78.56759568300026, 82.44386174600027, 82.35724662600046, 72.84119962000045, 72.84119962000045, 84.38001101800046, 78.4812189510003, 78.4812189510003, 80.5077124740003, 82.35724662600046, 82.35724662600046, 78.30811148400039, 80.2478698380005, 80.2478698380005, 78.2217347520002, 82.18366140600051, 82.18366140600051, 82.18366140600051, 87.99500289600019, 80.16137379000043, 80.16137379000043, 84.0327187820003, 72.49676999400026, 72.49676999400026, 87.99500289600019, 82.09704628600025, 82.09704628600025, 82.09704628600025, 84.0327187820003, 84.0327187820003, 82.01043116600022, 74.35038976000033, 74.35038976000033, 82.01043116600022, 83.94598459000031, 81.92381604600041, 81.92381604600041, 78.13535802000024], \"power_mean\": 80.42884218623111, \"energy_millijoules\": 5269.4445798857605, \"energy_joules\": 5.269444579885761, \"coremark_score\": 3816.619086, \"coremarks_per_mhz\": 5.2311116858552635, \"ulpmark_cm_score\": 47.44333035672991}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1287.25018884, 1287.25018884, 1285.3097505360001, 1285.388621584], \"power_mean\": 1286.29968745, \"energy_millijoules\": 6431.49843725, \"energy_joules\": 6.43149843725}}, \"806400\": {\"active\": {\"elapsed_sec\": 59.287158728, \"elapsed_ns\": 59287158728, \"power_samples\": [88.1693045010004, 89.66951950800035, 89.66951950800035, 89.40788761900035, 93.27804091500047, 93.27804091500047, 89.40788761900035, 89.49533620400007, 89.49533620400007, 91.43053241200005, 93.27804091500047, 93.27804091500047, 89.2337043150003, 81.49038546600036, 91.3429642670003, 91.3429642670003, 89.2337043150003, 83.42522397000062, 83.42522397000062, 83.59869235400038, 87.12492065100014, 87.12492065100014, 96.97702316400046, 83.42522397000062, 83.42522397000062, 90.99412137100012, 87.12492065100014, 87.12492065100014, 90.90691064700036, 87.12492065100014, 96.71431861200062, 96.71431861200062, 89.05952101100024, 87.29886581100027, 87.29886581100027, 90.90691064700036, 92.84139193500027, 92.84139193500027, 90.90691064700036, 81.23054010600049, 81.23054010600049, 90.90691064700036, 87.0379480710003, 87.0379480710003, 86.95097549100024, 88.88533770700019, 88.88533770700019, 88.88533770700019, 90.90691064700036, 83.07828720200018, 83.07828720200018, 88.88533770700019, 79.29605881800057, 79.29605881800057, 90.90691064700036, 88.88533770700019, 88.88533770700019, 640.6572009870006, 86.86364646600032], \"power_mean\": 97.80807120471219, \"energy_millijoules\": 5798.762642393298, \"energy_joules\": 5.798762642393298, \"coremark_score\": 4217.700847, \"coremarks_per_mhz\": 5.230283788442461, \"ulpmark_cm_score\": 43.112645820732986}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1286.5386303, 1286.4596401800002, 1284.7573299580001, 1284.59926462], \"power_mean\": 1285.5887162645001, \"energy_millijoules\": 6427.943581322501, \"energy_joules\": 6.427943581322501}}, \"902400\": {\"active\": {\"elapsed_sec\": 52.991929146, \"elapsed_ns\": 52991929146, \"power_samples\": [108.15220651800041, 108.15220651800041, 102.08173800600025, 107.88735720600039, 107.88735720600039, 102.08173800600025, 115.62686184600034, 100.14785256600044, 100.14785256600044, 100.14785256600044, 98.21000424600061, 98.21000424600061, 92.49171484200019, 105.86134509800036, 105.86134509800036, 101.9938123620002, 98.1223169900004, 98.1223169900004, 105.94950888600033, 109.64443829400011, 109.64443829400011, 105.59649240700037, 101.90588671800015, 90.38328888200022, 90.38328888200022, 99.97223942200026, 99.97223942200026, 99.97223942200026, 97.8588958480002, 101.72967507900034, 101.72967507900034, 92.05470795300039, 90.12129928900004, 90.12129928900004, 99.79626641500022, 99.97223942200026, 99.97223942200026, 105.59649240700037, 101.90588671800015, 99.97223942200026, 99.97223942200026, 97.59583408000026, 105.59649240700037, 105.59649240700037, 101.46589814700042, 95.66278263200047, 95.66278263200047, 99.70845984300036, 97.59583408000026, 97.59583408000026, 95.66278263200047, 101.29004685900031], \"power_mean\": 100.74704498209647, \"energy_millijoules\": 5338.780269360131, \"energy_joules\": 5.3387802693601305, \"coremark_score\": 4718.850865, \"coremarks_per_mhz\": 5.22922303302305, \"ulpmark_cm_score\": 46.827175382133355}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1282.104339953, 1291.8049431949999, 1284.0468440420002, 1284.0468440420002], \"power_mean\": 1285.500742808, \"energy_millijoules\": 6427.50371404, \"energy_joules\": 6.42750371404}}, \"979200\": {\"active\": {\"elapsed_sec\": 48.811753471, \"elapsed_ns\": 48811753471, \"power_samples\": [116.93823207300034, 116.93823207300034, 110.95807406200015, 111.13511655800016, 111.13511655800016, 114.73890171700032, 114.64977831200031, 106.91551943000013, 106.91551943000013, 109.02526075800029, 110.78066877400033, 110.78066877400033, 114.64977831200031, 120.54094485200017, 120.54094485200017, 114.64977831200031, 108.75969192599996, 108.75969192599996, 110.6921475260001, 114.56101867600023, 114.56101867600023, 108.5828875740001, 106.65067011800033, 110.51510503000031, 110.51510503000031, 114.3834994040003, 116.3157168600003, 116.3157168600003, 106.56238701400002, 110.6921475260001, 110.6921475260001, 116.3157168600003, 104.62632941200036, 104.62632941200036, 118.15893653600028, 110.3380625340003, 110.3380625340003, 100.7621326440003, 114.1172204960003, 104.53816562400038, 104.53816562400038, 120.09499413800017, 108.40608322200023, 108.40608322200023, 110.24954128600007, 108.31768104600042, 108.31768104600042, 100.5862813560002], \"power_mean\": 111.09560319814608, \"energy_millijoules\": 5422.7711950199455, \"energy_joules\": 5.422771195019945, \"coremark_score\": 5123.160785, \"coremarks_per_mhz\": 5.231986095792483, \"ulpmark_cm_score\": 46.10188979199231}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1289.4662977860003, 1289.228288288, 1281.395251612, 1281.395251612], \"power_mean\": 1285.3712723245, \"energy_millijoules\": 6426.8563616225, \"energy_joules\": 6.4268563616225}}, \"1056000\": {\"active\": {\"elapsed_sec\": 45.286219723, \"elapsed_ns\": 45286219723, \"power_samples\": [126.34298798700047, 117.80258067100044, 117.80258067100044, 123.6014037360003, 115.69320164700048, 115.69320164700048, 123.42269325600046, 115.69320164700048, 115.69320164700048, 119.47080923200019, 123.3333380160002, 117.53558733100044, 117.53558733100044, 125.08961080500058, 675.5379388020006, 675.5379388020006, 124.99976955000011, 119.29257504000043, 119.29257504000043, 123.06490608600029, 119.20309271000019, 119.20309271000019, 117.17923146600037, 123.3333380160002, 123.3333380160002, 127.02063705300043, 124.99976955000011, 124.91029499400042, 124.91029499400042, 122.97555084600026, 119.20309271000019, 119.20309271000019, 123.06490608600029, 123.06490608600029, 123.06490608600029, 119.11397561400031, 122.97555084600026, 122.97555084600026, 117.26822924600015, 119.11397561400031, 119.11397561400031, 115.24844385000051, 128.77187022600037, 126.75148898200018, 126.75148898200018], \"power_mean\": 145.89310628437812, \"energy_millijoules\": 6606.94726726534, \"energy_joules\": 6.60694726726534, \"coremark_score\": 5522.177063, \"coremarks_per_mhz\": 5.229334339962121, \"ulpmark_cm_score\": 37.83895797665064}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1284.8788665900001, 1284.8788665900001, 1284.8788665900001, 1284.95818044], \"power_mean\": 1284.8986950525, \"energy_millijoules\": 6424.4934752624995, \"energy_joules\": 6.4244934752625}}, \"1132800\": {\"active\": {\"elapsed_sec\": 42.195498733, \"elapsed_ns\": 42195498733, \"power_samples\": [29.0512307460001, 126.75148898200018, 124.64187132600046, 124.64187132600046, 128.5027321260004, 132.36754872600022, 132.36754872600022, 132.36754872600022, 128.41301942600035, 128.41301942600035, 134.11783880600024, 134.11783880600024, 134.11783880600024, 132.18764655000018, 134.20790896600033, 134.20790896600033, 136.0480310620003, 128.32330672600028, 124.4629222140004, 124.4629222140004, 124.37344765800049, 126.03437277100033, 126.03437277100033, 127.96408825100048, 126.03437277100033, 126.03437277100033, 126.03437277100033, 135.68690450600025, 135.68690450600025, 134.02776864600037, 125.94477914300046, 125.94477914300046, 136.0480310620003, 134.02776864600037, 128.23359402600045, 128.23359402600045, 127.96408825100048, 127.87437555100041, 127.87437555100041, 131.64757137000038, 127.87437555100041, 127.87437555100041], \"power_mean\": 127.17201733202415, \"energy_millijoules\": 5366.086696206479, \"energy_joules\": 5.366086696206479, \"coremark_score\": 5926.558092, \"coremarks_per_mhz\": 5.231777976694915, \"ulpmark_cm_score\": 46.58888574736146}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1284.08864166, 1284.08864166, 1287.959986652, 1284.1676317800002], \"power_mean\": 1285.076225438, \"energy_millijoules\": 6425.3811271899995, \"energy_joules\": 6.42538112719}}, \"1190400\": {\"active\": {\"elapsed_sec\": 40.165971859, \"elapsed_ns\": 40165971859, \"power_samples\": [-34.26966799199977, 145.25260549600011, 152.88368360700042, 152.88368360700042, 142.95602036000037, 152.60952474800047, 152.60952474800047, 150.58530970600032, 150.58530970600032, 150.58530970600032, 146.7273085860004, 127.42544437600031, 140.93635403600047, 140.93635403600047, 154.1731216440005, 142.5933573040004, 142.5933573040004, 146.63640443400027, 150.58530970600032, 150.58530970600032, 144.70752294600038, 142.50269154000034, 142.50269154000034, 146.36369197800013, 140.57416726800034, 140.57416726800034, 152.15321668800016, 150.31188281800019, 150.22074052200014, 150.22074052200014, 146.27278782600047, 144.34438262600042, 144.34438262600042, 144.34438262600042, 152.2444783000003, 152.2444783000003, 136.6228585260003, 140.48362057600048, 140.48362057600048, 145.99970281200035], \"power_mean\": 141.68474581770033, \"energy_millijoules\": 5690.90551336332, \"energy_joules\": 5.69090551336332, \"coremark_score\": 6226.339908, \"coremarks_per_mhz\": 5.230460272177419, \"ulpmark_cm_score\": 43.92974007615358}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1281.758290682, 1289.5822353699998, 1289.5822353699998, 1281.995227068], \"power_mean\": 1285.7294971224999, \"energy_millijoules\": 6428.6474856125, \"energy_joules\": 6.428647485612499}}, \"1267200\": {\"active\": {\"elapsed_sec\": 37.737175194, \"elapsed_ns\": 37737175194, \"power_samples\": [172.19031850800047, 159.41219897400015, 159.41219897400015, 174.65814529600038, 718.2077957780002, 718.2077957780002, 164.83117506200006, 162.89977371800023, 161.1564129660003, 161.1564129660003, 165.01574371100014, 164.83117506200006, 164.83117506200006, 164.83117506200006, 160.97232207000025, 160.97232207000025, 164.73907945800033, 172.5449313500003, 172.5449313500003, 168.68607835800026, 162.89977371800023, 162.89977371800023, 168.59374461000039, 164.64698385400038, 158.95313227800034, 158.95313227800034, 162.8077974300004, 160.78860763800049, 160.78860763800049, 162.71582114200032, 154.91151816200045, 154.91151816200045, 162.62384485400025, 168.40907711400018, 168.40907711400018, 164.5548882500002, 168.2244096180002], \"power_mean\": 194.00521267975702, \"energy_millijoules\": 7321.208699445221, \"energy_joules\": 7.321208699445221, \"coremark_score\": 6627.080903, \"coremarks_per_mhz\": 5.229703995422979, \"ulpmark_cm_score\": 34.14736695307487}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1287.0881510420002, 1287.0881510420002, 1287.0881510420002, 1281.285064394], \"power_mean\": 1285.63737938, \"energy_millijoules\": 6428.186896900001, \"energy_joules\": 6.428186896900001}}, \"1344000\": {\"active\": {\"elapsed_sec\": 35.587240664, \"elapsed_ns\": 35587240664, \"power_samples\": [182.18613928600007, 182.18613928600007, 181.44041553100033, 177.5874183630001, 177.5874183630001, 181.16091231100017, 182.99771363400032, 177.30862957500017, 177.30862957500017, 187.0368086260005, 183.09100069000033, 183.09100069000033, 179.23477094300029, 182.99771363400032, 182.99771363400032, 181.16091231100017, 186.8497582260004, 186.8497582260004, 182.99771363400032, 182.99771363400032, 182.99771363400032, 179.04867360700018, 177.12277038300022, 177.12277038300022, 177.12277038300022, 180.78785951600025, 176.9365303320003, 176.9365303320003, 178.86219492400028, 169.41521096400038, 169.41521096400038, 179.04867360700018, 180.97457683100038, 180.97457683100038, 180.69469177600035], \"power_mean\": 180.18654384682884, \"energy_millijoules\": 6412.341900291486, \"energy_joules\": 6.412341900291486, \"coremark_score\": 7027.60443, \"coremarks_per_mhz\": 5.22887234375, \"ulpmark_cm_score\": 38.98731600519238}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1290.483713736, 1286.6124567519998, 1280.811514864, 1280.811514864], \"power_mean\": 1284.679800054, \"energy_millijoules\": 6423.39900027, \"energy_joules\": 6.42339900027}}, \"1420800\": {\"active\": {\"elapsed_sec\": 33.634660873, \"elapsed_ns\": 33634660873, \"power_samples\": [212.56974357400054, 196.01282671200033, 196.01282671200033, 201.50961681000035, 199.77326596200032, 199.77326596200032, 205.36370008800031, 197.65947834600024, 205.36370008800031, 205.36370008800031, 189.95525660400017, 197.65947834600024, 197.65947834600024, 205.55313339200052, 199.5845475780004, 199.5845475780004, 199.3954424760002, 201.32027307600038, 201.32027307600038, 205.07916194900054, 199.30108328400047, 199.30108328400047, 207.0038734770003, 195.25947453900017, 205.07916194900054, 205.07916194900054, 197.47061187600025, 197.37637175600048, 197.37637175600048, 199.11236490000033, 199.0180057080006, 199.0180057080006, 198.82928732400023], \"power_mean\": 200.4769264931216, \"energy_millijoules\": 6742.973435457494, \"energy_joules\": 6.742973435457494, \"coremark_score\": 7435.828797, \"coremarks_per_mhz\": 5.2335506735641895, \"ulpmark_cm_score\": 37.075631751030045}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1272.519919704, 1272.519919704, 1280.2590942860002, 1287.994308185], \"power_mean\": 1278.32331046975, \"energy_millijoules\": 6391.61655234875, \"energy_joules\": 6.39161655234875}}, \"1497600\": {\"active\": {\"elapsed_sec\": 31.923876186, \"elapsed_ns\": 31923876186, \"power_samples\": [226.55129608200014, 227.41796850200035, 227.41796850200035, 217.60413276600025, 217.6996834100005, 217.6996834100005, 225.30215568600033, 217.7952340540005, 217.7952340540005, 219.52765308600033, 223.37863536600003, 223.4745434700003, 223.4745434700003, 225.30215568600033, 219.24025184900051, 219.24025184900051, 774.8587941300002, 223.0905179880001, 223.0905179880001, 222.99460988400028, 224.821626252, 224.821626252, 222.89870178, 222.89870178, 222.89870178, 217.12598794500036, 219.04891241700034, 226.55225822800003, 226.55225822800003, 226.55225822800003, 226.7445507240002], \"power_mean\": 240.4474649950325, \"energy_millijoules\": 7676.015101738987, \"energy_joules\": 7.6760151017389875, \"coremark_score\": 7834.534629, \"coremarks_per_mhz\": 5.231393315304487, \"ulpmark_cm_score\": 32.568982302205605}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1272.049232784, 1272.049232784, 1285.5026116440001, 1285.5818399080001], \"power_mean\": 1278.7957292800002, \"energy_millijoules\": 6393.978646400001, \"energy_joules\": 6.393978646400001}}, \"1574400\": {\"active\": {\"elapsed_sec\": 30.364754937, \"elapsed_ns\": 30364754937, \"power_samples\": [256.84427417600045, 256.84427417600045, 252.80052604200023, 252.70271181000044, 252.70271181000044, 260.49187360800056, 256.6481689360005, 256.6481689360005, 262.3192540860002, 260.0983077210003, 260.0983077210003, 263.84646693400055, 256.15750398100045, 256.15750398100045, 256.2555566010003, 252.31105400400043, 254.13437718800014, 254.13437718800014, 252.31105400400043, 256.15750398100045, 256.15750398100045, 259.9017261930005, 255.86334612100018, 255.86334612100018, 259.9017261930005, 256.15750398100045, 256.15750398100045, 256.05945136100036, 249.99901687600027, 249.99901687600027], \"power_mean\": 256.19080395226706, \"energy_millijoules\": 7779.170979123601, \"energy_joules\": 7.779170979123601, \"coremark_score\": 8237.23229, \"coremarks_per_mhz\": 5.231981891514227, \"ulpmark_cm_score\": 32.13710055620412}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1294.7709784440003, 1288.893403647, 1288.893403647, 1277.297902277], \"power_mean\": 1287.4639220037502, \"energy_millijoules\": 6437.319610018751, \"energy_joules\": 6.437319610018751}}, \"1651200\": {\"active\": {\"elapsed_sec\": 28.943452906, \"elapsed_ns\": 28943452906, \"power_samples\": [-41.23635328199953, 280.6472346860003, 282.5718311060002, 282.5718311060002, 280.3484308220002, 278.42812739800024, 272.6632820780003, 272.6632820780003, 280.3484308220002, 282.4721105020003, 282.4721105020003, 280.3484308220002, 274.4882764780002, 274.4882764780002, 272.46503256600045, 278.3286451820004, 278.3286451820004, 287.53671413800043, 282.0732280860002, 282.0732280860002, 287.8373584860003, 272.1672520490006, 279.85001618000047, 279.85001618000047, 274.0908934520005, 273.99164938000035, 273.99164938000035, 279.7504148920002], \"power_mean\": 267.34321588696463, \"energy_millijoules\": 7737.835778762952, \"energy_joules\": 7.737835778762952, \"coremark_score\": 8641.24987, \"coremarks_per_mhz\": 5.233315085998061, \"ulpmark_cm_score\": 32.30877562510993}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1284.6304513280002, 1290.505998972, 1290.505998972, 1288.575211356], \"power_mean\": 1288.554415157, \"energy_millijoules\": 6442.772075785, \"energy_joules\": 6.442772075785}}, \"1728000\": {\"active\": {\"elapsed_sec\": 27.669874885, \"elapsed_ns\": 27669874885, \"power_samples\": [318.77810959000044, 315.6345897660003, 315.6345897660003, 309.7725292360001, 317.2475107740004, 317.2475107740004, 326.8440240000002, 317.2475107740004, 317.2475107740004, 315.2271292860005, 315.2271292860005, 315.2271292860005, 315.02339904600035, 318.85971735000044, 326.5362846120004, 326.5362846120004, 318.85971735000044, 309.0615596010002, 309.0615596010002, 328.0471570720006, 314.7173862060001, 314.7173862060001, 324.1054019190001, 310.6745999250004, 310.6745999250004, 316.4312192700004, 320.06583015100045], \"power_mean\": 317.2113843021485, \"energy_millijoules\": 8777.1993157381, \"energy_joules\": 8.7771993157381, \"coremark_score\": 9039.629737, \"coremarks_per_mhz\": 5.231267208912037, \"ulpmark_cm_score\": 28.482889701699428}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1284.2343100080002, 1280.3741636400002, 1286.24768584, 1284.3135382720002], \"power_mean\": 1283.79242444, \"energy_millijoules\": 6418.9621222000005, \"energy_joules\": 6.418962122200001}}, \"1804800\": {\"active\": {\"elapsed_sec\": 26.504526813, \"elapsed_ns\": 26504526813, \"power_samples\": [363.97752692600056, 363.97752692600056, 357.5942787360002, 351.94591194600025, 351.94591194600025, 355.67790712800024, 329.1418725900003, 889.4145749680001, 889.4145749680001, 344.4835625340004, 342.56683322200024, 342.56683322200024, 338.7294468740006, 348.3209488820005, 348.3209488820005, 342.25545189000036, 334.3796871790005, 334.3796871790005, 346.09212209700036, 344.1718234980003, 344.1718234980003, 343.8605097540001, 338.1085403190002, 343.8605097540001, 343.8605097540001, 343.8605097540001], \"power_mean\": 387.5799936317695, \"energy_millijoules\": 10272.624333395604, \"energy_joules\": 10.272624333395605, \"coremark_score\": 9437.16734, \"coremarks_per_mhz\": 5.22892693927305, \"ulpmark_cm_score\": 24.336527053487877}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1287.541819197, 1283.679387454, 1283.599834484, 1283.599834484], \"power_mean\": 1284.60521890475, \"energy_millijoules\": 6423.02609452375, \"energy_joules\": 6.42302609452375}}, \"1881600\": {\"active\": {\"elapsed_sec\": 25.416076397, \"elapsed_ns\": 25416076397, \"power_samples\": [376.7697757890005, 381.46084102600025, 381.46084102600025, 379.5456606260004, 388.69852742900025, 388.69852742900025, 383.0572017540003, 375.1819582230005, 375.1819582230005, 380.7173269040004, 390.2929817850004, 390.2929817850004, 390.1862320290004, 384.4396274240005, 384.4396274240005, 388.37863537700036, 384.54601972000023, 388.37863537700036, 388.37863537700036, 380.61117275200036, 384.4396274240005, 384.4396274240005, 388.1653740090005, 382.3128536400002, 382.3128536400002], \"power_mean\": 384.09550014464037, \"energy_millijoules\": 9762.200575420105, \"energy_joules\": 9.762200575420106, \"coremark_score\": 9841.35732, \"coremarks_per_mhz\": 5.230313201530612, \"ulpmark_cm_score\": 25.608980072532624}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1286.98522695, 1292.7743942000002, 1282.8864554020001, 1282.8864554020001], \"power_mean\": 1286.3831329885002, \"energy_millijoules\": 6431.9156649425, \"energy_joules\": 6.4319156649425}}, \"1958400\": {\"active\": {\"elapsed_sec\": 24.401554313, \"elapsed_ns\": 24401554313, \"power_samples\": [-41.28627421899978, 464.9057179830004, 466.2592894200004, 466.2592894200004, 465.92392799300046, 465.92392799300046, 465.92392799300046, 465.81229335700027, 465.7006587210003, 463.7896482810004, 463.7896482810004, 473.46072765400027, 458.0527009560003, 458.0527009560003, 471.4376060460004, 461.98611808400005, 461.98611808400005, 463.56661715300015, 463.56661715300015, 463.56661715300015, 473.0122829820002, 463.4551015890004, 463.4551015890004, 471.21362185400017], \"power_mean\": 444.158916103167, \"energy_millijoules\": 10838.167914894639, \"energy_joules\": 10.838167914894639, \"coremark_score\": 10250.522777, \"coremarks_per_mhz\": 5.234131319955065, \"ulpmark_cm_score\": 23.066629153847202}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1284.580411075, 1278.87238017, 1278.87238017, 1278.9513702899999], \"power_mean\": 1280.3191354262499, \"energy_millijoules\": 6401.595677131249, \"energy_joules\": 6.401595677131249}}, \"2035200\": {\"active\": {\"elapsed_sec\": 23.50880322, \"elapsed_ns\": 23508803220, \"power_samples\": [463.7249532220003, 480.9965742510003, 480.9965742510003, 482.5694643750003, 482.5694643750003, 472.90017181400026, 472.90017181400026, 474.69801576600025, 486.16833288600037, 486.16833288600037, 474.69801576600025, 476.2713824220002, 476.2713824220002, 472.2270453340002, 481.78005505800024, 481.78005505800024, 479.6445990010002, 485.60360708600024, 485.60360708600024, 481.5541796010002, 479.6445990010002, 483.3548471880001, 483.3548471880001], \"power_mean\": 479.3687077326524, \"energy_millijoules\": 11269.384619912618, \"energy_joules\": 11.269384619912618, \"coremark_score\": 10641.014727, \"coremarks_per_mhz\": 5.2284860097287735, \"ulpmark_cm_score\": 22.18399747917544}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1276.234408144, 1276.234408144, 1282.331532848, 1286.189909064], \"power_mean\": 1280.24756455, \"energy_millijoules\": 6401.23782275, \"energy_joules\": 6.401237822750001}}, \"2112000\": {\"active\": {\"elapsed_sec\": 22.64104994, \"elapsed_ns\": 22641049940, \"power_samples\": [167.10236874000043, 539.6219168260004, 535.5689037840004, 535.5689037840004, 529.4965616430004, 525.5614989340004, 525.5614989340004, 529.4965616430004, 531.2884315190001, 531.2884315190001, 531.0565841830003, 527.2378028460005, 527.2378028460005, 536.7828018480004, 536.5502395920005, 536.5502395920005, 536.5502395920005, 536.5502395920005, 534.5224953300001, 534.5224953300001, 534.5224953300001, 538.3405605260002], \"power_mean\": 516.4081397242276, \"energy_millijoules\": 11692.022480918733, \"energy_joules\": 11.692022480918734, \"coremark_score\": 11048.747072, \"coremarks_per_mhz\": 5.231414333333333, \"ulpmark_cm_score\": 21.382100522642475}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1275.839729662, 1275.839729662, 1283.5482421450001, 1285.5538501649999], \"power_mean\": 1280.1953879085, \"energy_millijoules\": 6400.976939542499, \"energy_joules\": 6.400976939542499}}, \"2208000\": {\"active\": {\"elapsed_sec\": 21.102530408, \"elapsed_ns\": 21102530408, \"power_samples\": [687.3426532100004, 687.3426532100004, 701.5638465110005, 693.4436331000004, 693.4436331000004, 697.2480215640003, 693.3172249960007, 693.3172249960007, 691.1581569880004, 694.9657272500003, 694.9657272500003, 690.7792906240004, 686.7242307120002, 686.7242307120002, 700.0407108600004, 694.5861457220003, 696.1071672480005, 696.1071672480005, 699.7864215690004, 686.4716128230002, 686.4716128230002], \"power_mean\": 692.9479567864765, \"energy_millijoules\": 14622.95532924809, \"energy_joules\": 14.622955329248091, \"coremark_score\": 11855.08346, \"coremarks_per_mhz\": 5.369150117753623, \"ulpmark_cm_score\": 17.09640728368791}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1282.9924838900001, 1287.00227009, 1287.00227009, 1281.2216877399999], \"power_mean\": 1284.5546779525, \"energy_millijoules\": 6422.7733897625, \"energy_joules\": 6.4227733897625}}, \"2265600\": {\"active\": {\"elapsed_sec\": 20.405987023, \"elapsed_ns\": 20405987023, \"power_samples\": [-50.81646588599983, 691.5375409290002, 692.6846664100003, 692.6846664100003, 686.5976634670003, 692.3049240320004, 692.3049240320004, 692.1785159280003, 692.0521078240004, 692.0521078240004, 689.8947515310003, 699.4057676610003, 699.4057676610003, 693.5734097600002, 701.3064129810002, 695.3472897600004, 695.3472897600004, 691.5464754080006, 699.0251137530004, 699.0251137530004], \"power_mean\": 656.8729021499004, \"energy_millijoules\": 13404.139917031216, \"energy_joules\": 13.404139917031216, \"coremark_score\": 12258.507404, \"coremarks_per_mhz\": 5.410711248234463, \"ulpmark_cm_score\": 18.650954223653812}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1280.508308658, 1280.508308658, 1282.5954207949999, 1273.042726725], \"power_mean\": 1279.163691209, \"energy_millijoules\": 6395.818456045, \"energy_joules\": 6.395818456045}}, \"2323200\": {\"active\": {\"elapsed_sec\": 19.768059212, \"elapsed_ns\": 19768059212, \"power_samples\": [-45.59618074399964, 760.1988007220002, 774.60629337, 774.60629337, 772.5764998260001, 783.9724242460002, 783.9724242460002, 774.0786762440007, 775.8483428850004, 775.8483428850004, 771.9177092760001, 773.4198298840001, 773.4198298840001, 775.7164542970004, 773.6833684280004, 773.6833684280004, 780.8797563530002, 773.2880606120007, 777.2178597410002], \"power_mean\": 731.7546396817371, \"energy_millijoules\": 14465.369045884305, \"energy_joules\": 14.465369045884305, \"coremark_score\": 12654.383478, \"coremarks_per_mhz\": 5.446962585227273, \"ulpmark_cm_score\": 17.282656198192893}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1285.807831888, 1285.807831888, 1280.1118426320002, 1276.4223915300001], \"power_mean\": 1282.0374744845, \"energy_millijoules\": 6410.187372422501, \"energy_joules\": 6.4101873724225005}}, \"2342400\": {\"active\": {\"elapsed_sec\": 19.60459567, \"elapsed_ns\": 19604595670, \"power_samples\": [793.3334742760007, 793.3334742760007, 799.9943765600005, 796.2002341440007, 796.2002341440007, 801.2270049860003, 795.5336926860004, 795.5336926860004, 798.6589102520002, 800.558674763, 800.558674763, 800.4251181910008, 790.9385464810002, 790.9385464810002, 798.3920357400002, 792.7012271250005, 792.7012271250005, 809.639500794, 807.4759122900005], \"power_mean\": 797.5970819875267, \"energy_millijoules\": 15636.5682999373, \"energy_joules\": 15.6365682999373, \"coremark_score\": 12761.613068, \"coremarks_per_mhz\": 5.4480930105874315, \"ulpmark_cm_score\": 15.98816282476779}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1281.245861545, 1279.477691814, 1279.477691814, 1285.329991373], \"power_mean\": 1281.3828091365, \"energy_millijoules\": 6406.914045682501, \"energy_joules\": 6.406914045682501}}, \"2361600\": {\"active\": {\"elapsed_sec\": 19.461493951, \"elapsed_ns\": 19461493951, \"power_samples\": [823.4491163000002, 823.4491163000002, 826.4365213680003, 822.240441338, 825.7598456100004, 825.7598456100004, 819.8060465060003, 825.4893969860004, 825.4893969860004, 831.0410477640007, 834.8335917660002, 834.8335917660002, 826.9811436450004, 836.1836087980005, 836.1836087980005, 830.3625832410003, 833.8822940060004, 833.8822940060004, 830.0914196970002], \"power_mean\": 828.7449952890004, \"energy_millijoules\": 16128.615712738405, \"energy_joules\": 16.128615712738405, \"coremark_score\": 12854.792267, \"coremarks_per_mhz\": 5.4432555331131445, \"ulpmark_cm_score\": 15.500400310396733}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1290.46318956, 1284.69297941, 1288.700747304, 1288.700747304], \"power_mean\": 1288.1394158945, \"energy_millijoules\": 6440.6970794725, \"energy_joules\": 6.440697079472501}}, \"2457600\": {\"active\": {\"elapsed_sec\": 19.45769567, \"elapsed_ns\": 19457695670, \"power_samples\": [483.47158046400045, 822.5104136740001, 822.5104136740001, 821.7004966660002, 825.0831698520001, 826.9811436450004, 826.9811436450004, 828.604310701, 818.9962911960006, 818.9962911960006, 833.8822940060004, 814.6658735219999, 814.6658735219999, 827.7909793260001, 835.3674162780007, 835.3674162780007, 829.6841187180003, 827.3845912259999, 827.3845912259999], \"power_mean\": 807.475179411316, \"energy_millijoules\": 15711.606302064038, \"energy_joules\": 15.711606302064038, \"coremark_score\": 12856.775521, \"coremarks_per_mhz\": 5.2314353519694015, \"ulpmark_cm_score\": 15.911803999770376}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1282.134830031, 1282.134830031, 1282.532488974, 1280.69010329], \"power_mean\": 1281.8730630815, \"energy_millijoules\": 6409.3653154075, \"energy_joules\": 6.4093653154075}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/msm8998/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 1326 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 364 441 518 595 672 748 825 883 960 1036 1094 1171 1248 1324 1401 1478 1555 1670 1747 1824 1900\n\n 300:   974     3.2 C/MHz     25 mW    6.3 J   39.4 I/mJ   256.6 s\n 364:  1184     3.2 C/MHz     12 mW    2.5 J   101.6 I/mJ   211.2 s\n 441:  1434     3.2 C/MHz     17 mW    3.0 J   84.2 I/mJ   174.3 s\n 518:  1683     3.2 C/MHz     12 mW    1.8 J   139.7 I/mJ   148.5 s\n 595:  1933     3.2 C/MHz     15 mW    1.9 J   132.4 I/mJ   129.3 s\n 672:  2182     3.2 C/MHz     16 mW    1.9 J   132.7 I/mJ   114.6 s\n 748:  2428     3.2 C/MHz     14 mW    1.4 J   177.3 I/mJ   103.0 s\n 825:  2681     3.2 C/MHz     22 mW    2.1 J   119.3 I/mJ    93.3 s\n 883:  2868     3.2 C/MHz     24 mW    2.1 J   121.7 I/mJ    87.2 s\n 960:  3117     3.2 C/MHz     21 mW    1.7 J   146.9 I/mJ    80.2 s\n1036:  3365     3.2 C/MHz     44 mW    3.3 J   76.8 I/mJ    74.3 s\n1094:  3554     3.2 C/MHz     31 mW    2.2 J   114.0 I/mJ    70.3 s\n1171:  3803     3.2 C/MHz     52 mW    3.4 J   73.2 I/mJ    65.7 s\n1248:  4053     3.2 C/MHz     41 mW    2.5 J   98.4 I/mJ    61.7 s\n1324:  4301     3.2 C/MHz     66 mW    3.8 J   65.3 I/mJ    58.1 s\n1401:  4552     3.2 C/MHz     56 mW    3.1 J   80.8 I/mJ    54.9 s\n1478:  4801     3.2 C/MHz     84 mW    4.4 J   57.4 I/mJ    52.1 s\n1555:  5050     3.2 C/MHz     71 mW    3.5 J   70.8 I/mJ    49.5 s\n1670:  5425     3.2 C/MHz    115 mW    5.3 J   47.2 I/mJ    46.1 s\n1747:  5674     3.2 C/MHz     93 mW    4.1 J   60.7 I/mJ    44.1 s\n1824:  5923     3.2 C/MHz    107 mW    4.5 J   55.2 I/mJ    42.2 s\n1900:  6158     3.2 C/MHz    158 mW    6.4 J   39.1 I/mJ    40.6 s\n\n\n===== CPU 4 =====\nFrequencies: 300 345 422 499 576 652 729 806 902 979 1056 1132 1190 1267 1344 1420 1497 1574 1651 1728 1804 1881 1958 2035 2112 2208 2265 2323 2342 2361 2457\n\n 300:  1569     5.2 C/MHz     43 mW    6.8 J   36.9 I/mJ   159.3 s\n 345:  1808     5.2 C/MHz     38 mW    5.2 J   47.8 I/mJ   138.3 s\n 422:  2210     5.2 C/MHz     51 mW    5.8 J   42.9 I/mJ   113.1 s\n 499:  2611     5.2 C/MHz     50 mW    4.8 J   52.4 I/mJ    95.8 s\n 576:  3013     5.2 C/MHz     67 mW    5.6 J   44.7 I/mJ    83.0 s\n 652:  3415     5.2 C/MHz     79 mW    5.8 J   43.4 I/mJ    73.2 s\n 729:  3817     5.2 C/MHz     80 mW    5.3 J   47.4 I/mJ    65.5 s\n 806:  4218     5.2 C/MHz     98 mW    5.8 J   43.1 I/mJ    59.3 s\n 902:  4719     5.2 C/MHz    101 mW    5.3 J   46.8 I/mJ    53.0 s\n 979:  5123     5.2 C/MHz    111 mW    5.4 J   46.1 I/mJ    48.8 s\n1056:  5522     5.2 C/MHz    146 mW    6.6 J   37.8 I/mJ    45.3 s\n1132:  5927     5.2 C/MHz    127 mW    5.4 J   46.6 I/mJ    42.2 s\n1190:  6226     5.2 C/MHz    142 mW    5.7 J   43.9 I/mJ    40.2 s\n1267:  6627     5.2 C/MHz    194 mW    7.3 J   34.1 I/mJ    37.7 s\n1344:  7028     5.2 C/MHz    180 mW    6.4 J   39.0 I/mJ    35.6 s\n1420:  7436     5.2 C/MHz    200 mW    6.7 J   37.1 I/mJ    33.6 s\n1497:  7835     5.2 C/MHz    240 mW    7.7 J   32.6 I/mJ    31.9 s\n1574:  8237     5.2 C/MHz    256 mW    7.8 J   32.1 I/mJ    30.4 s\n1651:  8641     5.2 C/MHz    267 mW    7.7 J   32.3 I/mJ    28.9 s\n1728:  9040     5.2 C/MHz    317 mW    8.8 J   28.5 I/mJ    27.7 s\n1804:  9437     5.2 C/MHz    388 mW   10.3 J   24.3 I/mJ    26.5 s\n1881:  9841     5.2 C/MHz    384 mW    9.8 J   25.6 I/mJ    25.4 s\n1958: 10251     5.2 C/MHz    444 mW   10.8 J   23.1 I/mJ    24.4 s\n2035: 10641     5.2 C/MHz    479 mW   11.3 J   22.2 I/mJ    23.5 s\n2112: 11049     5.2 C/MHz    516 mW   11.7 J   21.4 I/mJ    22.6 s\n2208: 11855     5.4 C/MHz    693 mW   14.6 J   17.1 I/mJ    21.1 s\n2265: 12259     5.4 C/MHz    657 mW   13.4 J   18.7 I/mJ    20.4 s\n2323: 12654     5.4 C/MHz    732 mW   14.5 J   17.3 I/mJ    19.8 s\n2342: 12762     5.4 C/MHz    798 mW   15.6 J   16.0 I/mJ    19.6 s\n2361: 12855     5.4 C/MHz    829 mW   16.1 J   15.5 I/mJ    19.5 s\n2457: 12857     5.2 C/MHz    807 mW   15.7 J   15.9 I/mJ    19.5 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/msm8998/main/uptime.txt",
    "content": " 22:42:00 up  1:08,  load average: 7.10, 7.08, 7.07\n"
  },
  {
    "path": "results/msm8998/main/versions.txt",
    "content": "Kernel: Linux version 4.4.223-proton-g87ac3f89 (kdrag0n@pinwheel) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project dcc06597b1d61d35c7246d3ab2d7a807134aaa45)) #628 SMP PREEMPT Fri Dec 18 18:16:09 PST 2020\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/mt6768/main/cmdline.txt",
    "content": "console=tty0 console=ttyS0,921600n1 root=/dev/ram vmalloc=400M slub_debug=OFZPU swiotlb=noforce cgroup.memory=nosocket,nokmem firmware_class.path=/vendor/firmware page_owner=on  has_battery_removed=0 androidboot.boot_devices=bootdevice,soc/11230000.mmc,11230000.mmc ramoops.mem_address=0x4d010000 ramoops.mem_size=0xe0000 ramoops.pmsg_size=0x10000 ramoops.console_size=0x40000 phx_rus_conf.main_on=1 phx_rus_conf.recovery_method=2 phx_rus_conf.kernel_time=240 phx_rus_conf.android_time=250 androidboot.sbootstate=on bootopt=64S3,32N2,64N2 androidboot.init_fatal_reboot_target=recovery buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on root=/dev/ram  oppo_boot_mode=0 lcm=1-ilt9881h_truly_hdp_dsi_vdo_lcm_drv--1-fps=5961 is_lm3697=1 androidboot.atm=disabled androidboot.meta_log_disable=0  androidboot.prjname=19741 mtk_printk_ctrl.disable_uart=1 lcdgateic=SM5109 androidboot.serialno=REDACTED ogauge_auth=AHLCNCBOBGJGHC@EMCHMLDNBJCCFLNDANFCGFDLNILNCLGMBMCN@MFJJ@LGLFNDHLG@OAJEOJ@AALEHD androidboot.bootreason=kernel_panic gpt=1 usb2jtag_mode=0 androidboot.dtb_idx=0 androidboot.dtbo_idx=1\n"
  },
  {
    "path": "results/mt6768/main/cpuinfo.txt",
    "content": "processor\t: 0\nBogoMIPS\t: 26.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0xd05\nCPU revision\t: 0\n\nHardware\t: MT6769V/CB\n"
  },
  {
    "path": "results/mt6768/main/device.txt",
    "content": "Model: MT6769V/CB;\nCompatible: mediatek,MT6768;\n"
  },
  {
    "path": "results/mt6768/main/kernel.log",
    "content": "[ 2164.874936]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(0): 0(idle)\t500Mhz\t9(rel)\t2(abs)\t12(util)\t495(cap)\n[ 2164.874956]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(1): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t3(util)\t495(cap)\n[ 2164.874973]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(2): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t376(util)\t495(cap)\n[ 2164.874989]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(3): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t362(util)\t495(cap)\n[ 2164.875004]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(4): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t349(util)\t495(cap)\n[ 2164.875020]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(5): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t241(util)\t495(cap)\n[ 2164.875035]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(6): 0(idle)\t1950Mhz\t0(rel)\t0(abs)\t997(util)\t1024(cap)\n[ 2164.875051]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(7): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t47(util)\t1024(cap)\n[ 2164.875066]  (0)[0:swapper/0][POWER_DEBUG]gpu_dram_info 850Mhz(gpu)\t0(gpu_load)\t2(ddr opp)\t3(vcore opp)\t650000(uv)\n[ 2164.876258]  (0)[0:swapper/0][POWER_DEBUG]irq/27-touchpan\t307\t13980720\t13980720\n[ 2164.876268]  (0)[0:swapper/0][POWER_DEBUG]spi2\t301\t3584800\t3584800\n[ 2164.876278]  (0)[0:swapper/0][POWER_DEBUG]python3\t373\t358480\t358480\n[ 2164.876286]  (0)[0:swapper/0][POWER_DEBUG]print active wakeup sources\n[ 2164.876296]  (0)[0:swapper/0]active wakeup source: battery suspend wakelock\n[ 2164.876319]  (0)[0:swapper/0]active wakeup source: pri_disp_wakelock\n[ 2164.876327]  (0)[0:swapper/0]active wakeup source: USB suspend lock\n[ 2164.876354]  (0)[0:swapper/0]active wakeup source: (null)\n[ 2164.956574] -(6)[496:coremark][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2164.994324]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 357  576   16]\n[ 2166.260275]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 360  579   16]\n[ 2167.035521] -(6)[496:coremark][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2167.523627]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 360  579   16]\n[ 2167.651157]  (0)[135:irq/170-mt6358-]mt6358-pmic 1000d000.pwrap:mt6358-pmic: Reg[0xf9e]=0x10,name=bat_temp_h,hwirq=116,type=4\n[ 2167.651174]  (0)[135:irq/170-mt6358-]mt6358-pmic 1000d000.pwrap:mt6358-pmic: [PMIC_INT][MT6358_IRQ_BAT_TEMP_H]\n[ 2167.651188]  (0)[135:irq/170-mt6358-][fg_bat_temp_int_h_handler]\n[ 2167.651435]  (0)[135:irq/170-mt6358-][CH3_DBG] bat_cur = 6\n[ 2167.651802] -(0)[135:irq/170-mt6358-]mt635x_auxadc_read_raw: 5 callbacks suppressed\n[ 2167.652072]  (0)[135:irq/170-mt6358-][pmic_enable_interrupt] intNo=117, en=0, depth=1\n[ 2167.652153]  (0)[135:irq/170-mt6358-][pmic_enable_interrupt] intNo=116, en=0, depth=1\n[ 2167.652552]  (0)[135:irq/170-mt6358-][pmic_enable_interrupt] intNo=117, en=1, depth=0\n[ 2167.652630]  (0)[135:irq/170-mt6358-][pmic_enable_interrupt] intNo=116, en=1, depth=0\n[ 2167.652802]  (0)[135:irq/170-mt6358-][fg_bat_temp_int_internal][FG_TEMP_INT] T[30] V[65535 65535] C[65535 65535] h[9851 9389]\n[ 2168.714889]  (0)[0:swapper/0][name:spm&]Power/swap IdleBus26m: No enter --- IdleSyspll: No enter --- IdleDram: No enter --- \n[ 2168.729428]  (0)[0:swapper/0][mcdi]mcdi cpu: 1175, 0, 0, 0, 0, 0, 0, 0, cluster : 0, pause = 0, multi core = 0, latency = 0, residency = 0, last core = 0, avail cpu = 0041, cluster = 0001, enabled = 1, max_s_state = 5, system_idle_hint = 00000000\n[ 2168.789558]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 360  579   16]\n[ 2168.889253] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 1183, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 499, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 499, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: , t:  2168890000000, N:000000009c211422, N:00000000da0d23a3, N:00000000ba318931, N:000000007ceb8dd5, N:000000007fd2c0f2, 2169060000000, N:0000000024f4f619,\n[ 2169.115217]  (0)[350:tbatt_pwroff][CH3_DBG] bat_cur = 22\n[ 2169.117195]  (0)[479:kworker/0:2][MUSB]usb20_check_vbus_on 162: vbus_on<0>\n[ 2169.117207]  (0)[479:kworker/0:2][pmic_chrdet_status],Charger exist and USB is not host\n[ 2169.117224] -(6)[496:coremark][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2169.118539]  (0)[479:kworker/0:2][MDRT_ADC] OLD = 0x33f3, NOW = 0x33cb, CNT = 0\n[ 2169.119223]  (0)[480:kworker/u16:6][CH3_DBG] bat_cur = 14\n[ 2169.119328]  (0)[479:kworker/0:2]vbat_out_old=43930, vthr=689, T_curr=350, vbat_out=43957\n[ 2169.121050]  (0)[479:kworker/0:2]vbat_out_old=43930, vthr=689, T_curr=350, vbat_out=43957\n[ 2169.123451]  (0)[479:kworker/0:2]vbat_out_old=43930, vthr=689, T_curr=350, vbat_out=43957\n[ 2169.124613]  (0)[479:kworker/0:2][CH3_DBG] bat_cur = 0\n[ 2169.126096]  (0)[479:kworker/0:2][OPLUS_MIDAS_CHG_DEBUG]oplus_midas_chg_processing: passedchg=-128, realpassedchg=-128,accu_delta=0, prev_chg_stat=1, reset_counts=0\n[ 2169.126477]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_mivr mivr = 4586000(0x06)\n[ 2169.127102]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_check_status_full]is_batt_full : 0,  chip->charging_state= 2\n[ 2169.127113]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_full_action][BATTERY] Battery full !!\n[ 2169.127131]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_ichg ichg = 1350000(0x1B)\n[ 2169.194913]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_ichg ichg = 350000(0x07)\n[ 2169.264964]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_wdt time = 0(0x00)\n[ 2169.265687]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_enable_chg en = 0\n[ 2169.266305]  (0)[479:kworker/0:2]last full = 1, full = 1\n[ 2169.266322]  (0)[479:kworker/0:2][OPLUS_CHG][battery_notify_vbat_check][BATTERY] FULL,tbatt_status:0,notify_code:128\n[ 2169.267247]  (0)[497:kworker/0:3]get prop 101 is not supported in batt\n[ 2169.267262]  (0)[497:kworker/0:3]get prop 102 is not supported in batt\n[ 2169.267291]  (0)[497:kworker/0:3]get prop 103 is not supported in batt\n[ 2169.267303]  (0)[497:kworker/0:3]get prop 104 is not supported in batt\n[ 2169.269135]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_dump_registers ICHG = 350mA, AICR = 500mA, MIVR = 4500mV, IEOC = 250mA,CV = 4430mV,CHG_EN = 0, IC_STAT = ready, STAT0 = 0xC0, STAT1 = 0x00, STAT2 = 0x00, STAT3 = 0x00\n[ 2169.269333]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_write_filedata]open file /data/oplus_charge/oplus_chg_debug_monitor.txt failed[-2].\n[ 2169.269384]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_print_log] CHGR[ 1 / 4 / 4986 / 4 / 0 ], BAT[ 1 / 1 / 0 / 0 / 2 / 5 ], GAUGE[ 300 / 4386 / 4386 / 3 / -1 / -1 / 100 / 55 / -1 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 /], STATUS[ 0x0 / 0 / 0 / 0 / 16 / 0x100080 ], OTHER[ 0 / 1 / 7 / 0 / 0/ 0 / -2740]\n[ 2169.375379]  (0)[479:kworker/0:2]rt9471 7-0053: rt9471_buck_dwork_handler chip_rev = 4\n[ 2169.375848]  (0)[479:kworker/0:2]rt9471 7-0053: rt9471_buck_dwork_handler chg_rdy = 1\n[ 2169.376089]  (0)[479:kworker/0:2]rt9471 7-0053: rt9471_buck_dwork_handler chg_done = 0, chg_done_once = 0\n[ 2169.914888]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(0): 1(idle)\t500Mhz\t10(rel)\t2(abs)\t13(util)\t495(cap)\n[ 2169.914907]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(1): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t3(util)\t495(cap)\n[ 2169.914924]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(2): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t376(util)\t495(cap)\n[ 2169.914939]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(3): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t362(util)\t495(cap)\n[ 2169.914954]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(4): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t349(util)\t495(cap)\n[ 2169.914970]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(5): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t241(util)\t495(cap)\n[ 2169.914986]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(6): 0(idle)\t1950Mhz\t0(rel)\t0(abs)\t997(util)\t1024(cap)\n[ 2169.915001]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(7): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t47(util)\t1024(cap)\n[ 2169.915016]  (0)[0:swapper/0][POWER_DEBUG]gpu_dram_info 850Mhz(gpu)\t0(gpu_load)\t2(ddr opp)\t3(vcore opp)\t650000(uv)\n[ 2169.916135]  (0)[0:swapper/0][POWER_DEBUG]irq/27-touchpan\t307\t10754400\t10754400\n[ 2169.916146]  (0)[0:swapper/0][POWER_DEBUG]spi2\t301\t5377200\t5377200\n[ 2169.916153]  (0)[0:swapper/0][POWER_DEBUG]print active wakeup sources\n[ 2169.916164]  (0)[0:swapper/0]active wakeup source: battery suspend wakelock\n[ 2169.916185]  (0)[0:swapper/0]active wakeup source: pri_disp_wakelock\n[ 2169.916193]  (0)[0:swapper/0]active wakeup source: USB suspend lock\n[ 2169.916221]  (0)[0:swapper/0]active wakeup source: (null)\n[ 2170.053675]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 360  579   17]\n[ 2171.195525] -(6)[496:coremark][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2171.318854]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 360  579   16]\n[ 2171.811758]  (0)[318:battery_thread][read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xe4 pl:0 0\n[ 2171.813950]  (0)[318:battery_thread]vbat_out_old=43930, vthr=689, T_curr=350, vbat_out=43957\n[ 2171.813964] -(0)[318:battery_thread]mt635x_auxadc_read_raw: 5 callbacks suppressed\n[ 2171.814587]  (0)[318:battery_thread][CH3_DBG] bat_cur = 14\n[ 2171.815176]  (0)[318:battery_thread]lbat 0 0 0 0\n[ 2171.815199]  (0)[318:battery_thread]car[60,0,0,0,0, cycle_car:28,ncar:0] c:0 22 vbat:4396 vbus:4986 soc:-1 -1 gm3:0 0 0 0\n[ 2171.815528]  (0)[318:battery_thread]tmp:30 65535 65535 hcar2:65535 lcar2:65535 time:2171 sw_iavg:0 0 1 nafg_m:0 1 0\n[ 2171.815584]  (0)[318:battery_thread]GM3log-nint-nafg 2171 2171 0 43927 10072 0 0\n[ 2172.582915]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 360  579   16]\n[ 2173.275574] -(6)[496:coremark][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2173.721168]  (0)[0:swapper/0][name:spm&]Power/swap IdleBus26m: No enter --- IdleSyspll: No enter --- IdleDram: No enter --- \n[ 2173.730674]  (0)[0:swapper/0][mcdi]mcdi cpu: 1178, 0, 0, 0, 0, 0, 0, 0, cluster : 0, pause = 0, multi core = 0, latency = 0, residency = 0, last core = 0, avail cpu = 0041, cluster = 0001, enabled = 1, max_s_state = 5, system_idle_hint = 00000000\n[ 2173.848075]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 360  579   16]\n[ 2173.894967] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 1172, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 499, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 499, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  2173890000000, N:000000009c211422, N:00000000da0d23a3, N:00000000ba318931, N:000000007ceb8dd5, N:000000007fd2c0f2, 2174010000000, N:0000000024f4f619,\n[ 2174.075175]  (0)[350:tbatt_pwroff][CH3_DBG] bat_cur = 44\n[ 2174.075407]  (0)[479:kworker/0:2][MUSB]usb20_check_vbus_on 162: vbus_on<0>\n[ 2174.075418]  (0)[479:kworker/0:2][pmic_chrdet_status],Charger exist and USB is not host\n[ 2174.077663]  (0)[479:kworker/0:2][MDRT_ADC] OLD = 0x33cb, NOW = 0x33a7, CNT = 0\n[ 2174.078028]  (0)[479:kworker/0:2]vbat_out_old=43930, vthr=689, T_curr=350, vbat_out=43957\n[ 2174.079696]  (0)[479:kworker/0:2]vbat_out_old=43930, vthr=689, T_curr=350, vbat_out=43957\n[ 2174.081371]  (0)[479:kworker/0:2]vbat_out_old=43930, vthr=689, T_curr=350, vbat_out=43957\n[ 2174.082440]  (0)[479:kworker/0:2][CH3_DBG] bat_cur = 22\n[ 2174.083256]  (0)[479:kworker/0:2][OPLUS_MIDAS_CHG_DEBUG]oplus_midas_chg_processing: passedchg=-128, realpassedchg=-128,accu_delta=0, prev_chg_stat=1, reset_counts=0\n[ 2174.083640]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_mivr mivr = 4586000(0x06)\n[ 2174.084140]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_check_status_full]is_batt_full : 0,  chip->charging_state= 2\n[ 2174.084152]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_full_action][BATTERY] Battery full !!\n[ 2174.084169]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_ichg ichg = 1350000(0x1B)\n[ 2174.144963]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_ichg ichg = 350000(0x07)\n[ 2174.155223]  (0)[484:kworker/u16:7][CH3_DBG] bat_cur = 38\n[ 2174.215007]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_wdt time = 0(0x00)\n[ 2174.215443]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_enable_chg en = 0\n[ 2174.216200]  (0)[479:kworker/0:2]last full = 1, full = 1\n[ 2174.216284]  (0)[479:kworker/0:2][OPLUS_CHG][battery_notify_vbat_check][BATTERY] FULL,tbatt_status:0,notify_code:128\n[ 2174.217301]  (0)[497:kworker/0:3]get prop 101 is not supported in batt\n[ 2174.217316]  (0)[497:kworker/0:3]get prop 102 is not supported in batt\n[ 2174.217345]  (0)[497:kworker/0:3]get prop 103 is not supported in batt\n[ 2174.217357]  (0)[497:kworker/0:3]get prop 104 is not supported in batt\n[ 2174.219151]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_dump_registers ICHG = 350mA, AICR = 500mA, MIVR = 4500mV, IEOC = 250mA,CV = 4430mV,CHG_EN = 0, IC_STAT = ready, STAT0 = 0xC0, STAT1 = 0x00, STAT2 = 0x00, STAT3 = 0x00\n[ 2174.219344]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_write_filedata]open file /data/oplus_charge/oplus_chg_debug_monitor.txt failed[-2].\n[ 2174.219394]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_print_log] CHGR[ 1 / 4 / 4976 / 4 / 0 ], BAT[ 1 / 1 / 0 / 0 / 2 / 5 ], GAUGE[ 300 / 4386 / 4386 / 0 / -1 / -1 / 100 / 55 / -1 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 /], STATUS[ 0x0 / 0 / 0 / 0 / 16 / 0x100080 ], OTHER[ 0 / 1 / 7 / 0 / 0/ 0 / -2740]\n[ 2174.324938]  (0)[479:kworker/0:2]rt9471 7-0053: rt9471_buck_dwork_handler chip_rev = 4\n[ 2174.325191]  (0)[479:kworker/0:2]rt9471 7-0053: rt9471_buck_dwork_handler chg_rdy = 1\n[ 2174.325432]  (0)[479:kworker/0:2]rt9471 7-0053: rt9471_buck_dwork_handler chg_done = 0, chg_done_once = 0\n[ 2174.537386]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2174.537510]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2174.537520]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2174.616651]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2174.616758]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2174.616768]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2174.627283]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2174.627394]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2174.627405]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2174.846812]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2174.846919]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2174.846930]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2174.886778]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2174.886898]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2174.886908]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2174.954991]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(0): 1(idle)\t500Mhz\t5(rel)\t1(abs)\t3(util)\t495(cap)\n[ 2174.955010]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(1): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t3(util)\t495(cap)\n[ 2174.955027]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(2): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t376(util)\t495(cap)\n[ 2174.955043]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(3): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t362(util)\t495(cap)\n[ 2174.955061]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(4): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t349(util)\t495(cap)\n[ 2174.955077]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(5): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t241(util)\t495(cap)\n[ 2174.955091]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(6): 1(idle)\t1950Mhz\t0(rel)\t0(abs)\t36(util)\t1024(cap)\n[ 2174.955107]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(7): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t47(util)\t1024(cap)\n[ 2174.955122]  (0)[0:swapper/0][POWER_DEBUG]gpu_dram_info 850Mhz(gpu)\t0(gpu_load)\t2(ddr opp)\t3(vcore opp)\t650000(uv)\n[ 2174.956261]  (0)[0:swapper/0][POWER_DEBUG]irq/27-touchpan\t307\t11829840\t11829840\n[ 2174.956272]  (0)[0:swapper/0][POWER_DEBUG]spi2\t301\t2509360\t2509360\n[ 2174.956282]  (0)[0:swapper/0][POWER_DEBUG]kworker/0:2\t479\t1792400\t1792400\n[ 2174.956289]  (0)[0:swapper/0][POWER_DEBUG]print active wakeup sources\n[ 2174.956300]  (0)[0:swapper/0]active wakeup source: battery suspend wakelock\n[ 2174.956322]  (0)[0:swapper/0]active wakeup source: pri_disp_wakelock\n[ 2174.956330]  (0)[0:swapper/0]active wakeup source: USB suspend lock\n[ 2174.956357]  (0)[0:swapper/0]active wakeup source: (null)\n[ 2174.986619]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2174.986733]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2174.986743]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2175.037332]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2175.037439]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2175.037450]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2175.066679]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2175.066786]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2175.066796]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2175.086813]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2175.086920]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2175.086930]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2175.096795]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2175.096902]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2175.096912]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2175.222179]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 360  579   19]\n[ 2175.286828]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2175.286935]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2175.286945]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2175.335681]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2175.335802]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2175.335813]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2175.341880] -(0)[0:swapper/0]11907     6.1 C/MHz      0 mW    0.0 J   1507583.4 I/mJ    25.2 s\n               2000: \n[ 2175.356011] -(0)[0:swapper/0][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2175.366780]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2175.366899]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2175.366908]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2175.466731]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2175.466838]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2175.466849]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2175.499459]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2175.499565]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2175.499575]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2175.536754]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2175.536871]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2175.536881]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2175.566805]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2175.566911]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2175.566921]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2175.706702]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2175.706806]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2175.706817]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2175.716747]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2175.716853]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2175.716863]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2175.756749]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2175.756865]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2175.756875]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2175.766777]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2175.766882]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2175.766892]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2175.806785]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2175.806891]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2175.806902]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2175.816681]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2175.816787]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2175.816798]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2175.856769]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2175.856885]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2175.856895]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2175.906613]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2175.906736]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2175.906747]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2175.916813]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2175.916919]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2175.916930]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2175.956665]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2175.956778]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2175.956788]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.006846]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.006962]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.006972]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.086655]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.086762]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.086772]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.103844]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.103948]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.103958]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.165049]  (0)[356:wdtk-0][wdk-c] cpu=0,lbit=0x1,cbit=0x41,6,1,1487419113699,0,0,[2176165034341,15000000]\n[ 2176.165056]  (6)[362:wdtk-6][wdk-k] cpu=6,lbit=0x41,cbit=0x41,6,1,1487419113699,0,0,[2176165046956,14999987]\n[ 2176.165063]  (6)[362:wdtk-6][thread:362][RT:2176165059956] 2021-10-26 10:04:46.901416 UTC;android time 2021-10-26 10:04:46.901416\n[ 2176.206828]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.206932]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.206943]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.226724]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.226830]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.226840]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.235478]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.235586]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.235597]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.276658]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.276774]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.276784]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.326774]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.326890]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.326900]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.356690]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.356796]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.356806]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.406806]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.406921]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.406931]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.456752]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.456868]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.456878]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.476751]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.476857]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.476868]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.486657]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.486772]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.486782]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.556506]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.556579]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.556589]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.576681]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.576785]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.576795]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.586779]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.586884]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.586895]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.606797]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.606912]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.606922]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.621498]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.621605]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.621615]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.726807]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.726912]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.726923]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.776696]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.776811]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.776821]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.856773]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.856889]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.856899]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.876747]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.876854]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.876865]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2176.938717]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 360  579   16]\n[ 2176.996751]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2176.996857]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2176.996867]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.005647]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.005762]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.005772]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.046667]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.046783]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.046793]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.056763]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.056879]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.056889]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.076774]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.076880]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.076891]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.126777]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.126892]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.126902]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.176669]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.176774]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.176785]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.192926]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.193030]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.193040]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.226646]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.226752]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.226762]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.246827]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.246933]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.246943]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.287716]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.287821]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.287832]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.376673]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.376779]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.376790]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.396746]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.396851]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.396861]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.435717] -(0)[307:irq/27-touchpan][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2177.496677]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.496784]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.496794]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.546724]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.546829]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.546839]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.561412]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.561517]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.561528]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.596691]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.596797]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.596807]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.626772]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.626878]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.626888]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.716644]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.716750]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.716760]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.816644]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.816751]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.816761]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.826801]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.826907]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.826917]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.846448]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.846553]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.846563]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.861155]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.861261]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.861272]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.877282]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.877388]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.877399]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.916619]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.916725]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.916735]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2177.996647]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2177.996752]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2177.996763]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.013574]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.013677]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.013687]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.046799]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.046905]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.046915]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.077244]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.077360]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.077370]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.116746]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.116851]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.116862]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.166803]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.166908]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.166919]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.236746]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.236853]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.236863]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.246821]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.246928]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.246938]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.286771]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.286887]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.286897]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.296675]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.296780]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.296790]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.316622]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.316728]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.316738]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.332216]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.332320]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.332330]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.416726]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.416831]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.416841]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.436747]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.436853]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.436863]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.446650]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.446765]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.446775]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.547357]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.547463]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.547474]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.579444]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.579549]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.579559]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.636744]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.636851]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.636861]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.676070]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 360  579   16]\n[ 2178.716772]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.716878]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.716888]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.724007]  (6)[0:swapper/6][name:spm&]Power/swap IdleBus26m: No enter --- IdleSyspll: No enter --- IdleDram: No enter --- \n[ 2178.735029]  (0)[0:swapper/0][mcdi]mcdi cpu: 1144, 0, 0, 0, 0, 0, 2829, 0, cluster : 0, pause = 0, multi core = 0, latency = 1433, residency = 0, last core = 1433, avail cpu = 0041, cluster = 0001, enabled = 1, max_s_state = 5, system_idle_hint = 00000000\n[ 2178.766775]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.766880]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.766890]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.816684]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.816790]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.816800]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.835490]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.835597]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.835608]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.850187]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.850293]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.850303]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.865301]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.865411]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.865422]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.895076] -(6)[0:swapper/6][name:bc&]tick broadcast enter counter cpu: 1144, 0, 0, 0, 0, 0, 3863, 0, success counter cpu: 142, 0, 0, 0, 0, 0, 260, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 348, 0, 0, 0, 0, 0, 361, 0, o: , p: , f: , t:  2178900000000, N:000000009c211422, N:00000000da0d23a3, N:00000000ba318931, N:000000007ceb8dd5, N:000000007fd2c0f2, 2178893563283, N:0000000024f4f619,\n[ 2178.906721]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.906827]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.906837]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.936667]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.936773]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.936783]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.956701]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2178.956811]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2178.956822]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2178.957438] -(0)[484:kworker/u16:7]mt635x_auxadc_read_raw: 5 callbacks suppressed\n[ 2179.006821]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2179.006936]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2179.006947]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2179.016678]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2179.016783]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2179.016793]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2179.086798]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2179.086902]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2179.086913]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2179.115308]  (0)[350:tbatt_pwroff][CH3_DBG] bat_cur = 0\n[ 2179.116637]  (0)[479:kworker/0:2][MUSB]usb20_check_vbus_on 162: vbus_on<0>\n[ 2179.116649]  (0)[479:kworker/0:2][pmic_chrdet_status],Charger exist and USB is not host\n[ 2179.118419]  (0)[479:kworker/0:2][MDRT_ADC] OLD = 0x33a7, NOW = 0x33b2, CNT = 0\n[ 2179.118786]  (0)[479:kworker/0:2]vbat_out_old=43930, vthr=690, T_curr=344, vbat_out=43955\n[ 2179.121624]  (0)[479:kworker/0:2]vbat_out_old=43930, vthr=690, T_curr=344, vbat_out=43955\n[ 2179.123361]  (0)[479:kworker/0:2]vbat_out_old=43930, vthr=690, T_curr=344, vbat_out=43955\n[ 2179.124307]  (0)[479:kworker/0:2][CH3_DBG] bat_cur = -14\n[ 2179.125147]  (0)[479:kworker/0:2][OPLUS_MIDAS_CHG_DEBUG]oplus_midas_chg_processing: passedchg=-128, realpassedchg=-128,accu_delta=0, prev_chg_stat=1, reset_counts=0\n[ 2179.126024]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_mivr mivr = 4586000(0x06)\n[ 2179.145522]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_check_status_full]is_batt_full : 0,  chip->charging_state= 2\n[ 2179.145775]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_full_action][BATTERY] Battery full !!\n[ 2179.145797]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_ichg ichg = 1350000(0x1B)\n[ 2179.186622]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2179.186726]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2179.186737]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2179.195255]  (6)[480:kworker/u16:6][CH3_DBG] bat_cur = -6\n[ 2179.225012]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_ichg ichg = 350000(0x07)\n[ 2179.295539]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_wdt time = 0(0x00)\n[ 2179.298576]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_enable_chg en = 0\n[ 2179.305704]  (0)[479:kworker/0:2]last full = 1, full = 1\n[ 2179.305985]  (0)[479:kworker/0:2][OPLUS_CHG][battery_notify_vbat_check][BATTERY] FULL,tbatt_status:0,notify_code:128\n[ 2179.306932]  (0)[497:kworker/0:3]get prop 101 is not supported in batt\n[ 2179.306948]  (0)[497:kworker/0:3]get prop 102 is not supported in batt\n[ 2179.306976]  (0)[497:kworker/0:3]get prop 103 is not supported in batt\n[ 2179.306988]  (0)[497:kworker/0:3]get prop 104 is not supported in batt\n[ 2179.317239]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2179.317351]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2179.317362]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2179.345293]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_dump_registers ICHG = 350mA, AICR = 500mA, MIVR = 4500mV, IEOC = 250mA,CV = 4430mV,CHG_EN = 0, IC_STAT = ready, STAT0 = 0xC0, STAT1 = 0x00, STAT2 = 0x00, STAT3 = 0x00\n[ 2179.345861]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_write_filedata]open file /data/oplus_charge/oplus_chg_debug_monitor.txt failed[-2].\n[ 2179.345912]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_print_log] CHGR[ 1 / 4 / 5118 / 4 / 0 ], BAT[ 1 / 1 / 0 / 0 / 2 / 5 ], GAUGE[ 300 / 4386 / 4386 / -2 / -1 / -1 / 100 / 55 / -1 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 /], STATUS[ 0x0 / 0 / 0 / 0 / 16 / 0x100080 ], OTHER[ 0 / 1 / 7 / 0 / 0/ 0 / -2740]\n[ 2179.415298]  (0)[479:kworker/0:2]rt9471 7-0053: rt9471_buck_dwork_handler chip_rev = 4\n[ 2179.415711]  (0)[479:kworker/0:2]rt9471 7-0053: rt9471_buck_dwork_handler chg_rdy = 1\n[ 2179.416630]  (0)[479:kworker/0:2]rt9471 7-0053: rt9471_buck_dwork_handler chg_done = 0, chg_done_once = 0\n[ 2179.486827]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2179.486945]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2179.486956]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2179.505483]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2179.505597]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2179.505607]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2179.515918] -(0)[0:swapper/0][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2179.576695]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2179.576800]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2179.576811]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2179.626771]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2179.626878]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2179.626888]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2179.656737]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2179.656852]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2179.656862]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2179.676695]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2179.676802]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2179.676812]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2179.686805]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2179.686911]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2179.686921]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2179.756648]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2179.756754]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2179.756765]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2179.772729]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2179.772832]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2179.772843]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2179.826623]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2179.826729]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2179.826739]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2179.836596]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2179.836701]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2179.836711]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2179.906688]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2179.906804]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2179.906814]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2179.976648]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2179.976753]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2179.976763]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2179.994893]  (0)[307:irq/27-touchpan][POWER_DEBUG]cpu_info(0): 0(idle)\t500Mhz\t17(rel)\t5(abs)\t4(util)\t495(cap)\n[ 2179.994912]  (0)[307:irq/27-touchpan][POWER_DEBUG]cpu_info(1): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t3(util)\t495(cap)\n[ 2179.994929]  (0)[307:irq/27-touchpan][POWER_DEBUG]cpu_info(2): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t376(util)\t495(cap)\n[ 2179.994946]  (0)[307:irq/27-touchpan][POWER_DEBUG]cpu_info(3): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t362(util)\t495(cap)\n[ 2179.994961]  (0)[307:irq/27-touchpan][POWER_DEBUG]cpu_info(4): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t349(util)\t495(cap)\n[ 2179.994977]  (0)[307:irq/27-touchpan][POWER_DEBUG]cpu_info(5): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t241(util)\t495(cap)\n[ 2179.994992]  (0)[307:irq/27-touchpan][POWER_DEBUG]cpu_info(6): 1(idle)\t2000Mhz\t0(rel)\t0(abs)\t47(util)\t1024(cap)\n[ 2179.995008]  (0)[307:irq/27-touchpan][POWER_DEBUG]cpu_info(7): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t47(util)\t1024(cap)\n[ 2179.995023]  (0)[307:irq/27-touchpan][POWER_DEBUG]gpu_dram_info 850Mhz(gpu)\t0(gpu_load)\t2(ddr opp)\t3(vcore opp)\t650000(uv)\n[ 2179.995997]  (0)[307:irq/27-touchpan][POWER_DEBUG]irq/27-touchpan\t307\t5377200\t5377200\n[ 2179.996009]  (0)[307:irq/27-touchpan][POWER_DEBUG]kworker/0:2\t479\t358480\t358480\n[ 2179.996016]  (0)[307:irq/27-touchpan][POWER_DEBUG]print active wakeup sources\n[ 2179.996027]  (0)[307:irq/27-touchpan]active wakeup source: battery suspend wakelock\n[ 2179.996049]  (0)[307:irq/27-touchpan]active wakeup source: pri_disp_wakelock\n[ 2179.996057]  (0)[307:irq/27-touchpan]active wakeup source: USB suspend lock\n[ 2179.996086]  (0)[307:irq/27-touchpan]active wakeup source: (null)\n[ 2180.026753]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2180.026869]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2180.026879]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2180.106708]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2180.106814]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2180.106825]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2180.126704]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2180.126809]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2180.126819]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2180.141361]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2180.141468]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2180.141479]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2180.206670]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2180.206775]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2180.206785]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2180.296659]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2180.296765]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2180.296775]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2180.306771]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2180.306887]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2180.306898]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2180.326712]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2180.326827]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2180.326838]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2180.342698]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2180.342803]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2180.342814]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2180.388619]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 360  579   16]\n[ 2180.426725]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2180.426830]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2180.426841]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2180.476611]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2180.476719]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2180.476730]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2180.596751]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2180.596856]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2180.596866]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2180.657288]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2180.657408]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2180.657418]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2180.676748]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2180.676855]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2180.676865]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2180.710256]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2180.710362]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2180.710372]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2180.726780]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2180.726896]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2180.726906]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2180.742578]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2180.742682]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2180.742692]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2180.796699]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2180.796811]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2180.796821]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2180.826608]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2180.826717]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2180.826728]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2180.996639]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2180.996756]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2180.996766]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.016682]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.016787]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.016797]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.026647]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.026753]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.026763]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.046639]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.046749]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.046759]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.066650]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.066769]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.066779]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.096658]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.096774]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.096784]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.116592]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.116696]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.116707]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.126659]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.126770]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.126780]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.196644]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.196751]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.196761]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.216639]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.216749]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.216759]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.246779]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.246894]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.246904]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.305146]  (0)[135:irq/170-mt6358-]mt6358-pmic 1000d000.pwrap:mt6358-pmic: Reg[0xf9e]=0x10,name=bat_temp_h,hwirq=116,type=4\n[ 2181.305162]  (0)[135:irq/170-mt6358-]mt6358-pmic 1000d000.pwrap:mt6358-pmic: [PMIC_INT][MT6358_IRQ_BAT_TEMP_H]\n[ 2181.305177]  (0)[135:irq/170-mt6358-][fg_bat_temp_int_h_handler]\n[ 2181.305430]  (0)[135:irq/170-mt6358-][CH3_DBG] bat_cur = 22\n[ 2181.305828] -(0)[135:irq/170-mt6358-]mt635x_auxadc_read_raw: 5 callbacks suppressed\n[ 2181.306122]  (0)[135:irq/170-mt6358-][pmic_enable_interrupt] intNo=117, en=0, depth=1\n[ 2181.306189]  (0)[135:irq/170-mt6358-][pmic_enable_interrupt] intNo=116, en=0, depth=1\n[ 2181.306578]  (0)[135:irq/170-mt6358-][pmic_enable_interrupt] intNo=117, en=1, depth=0\n[ 2181.306649]  (0)[135:irq/170-mt6358-][pmic_enable_interrupt] intNo=116, en=1, depth=0\n[ 2181.306778]  (0)[135:irq/170-mt6358-][fg_bat_temp_int_internal][FG_TEMP_INT] T[30] V[65535 65535] C[65535 65535] h[9851 9389]\n[ 2181.316632]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.316748]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.316758]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.346621]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.346730]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.346740]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.366786]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.366902]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.366912]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.396643]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.396750]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.396760]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.446646]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.446752]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.446762]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.566642]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.566751]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.566761]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.586644]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.586750]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.586760]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.595976] -(0)[307:irq/27-touchpan][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2181.597229]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.597344]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.597354]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.636661]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.636767]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.636778]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.646653]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.646758]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.646769]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.686752]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.686867]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.686877]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.716651]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.716757]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.716767]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.736643]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.736753]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.736763]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.766797]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.766912]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.766922]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.786596]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.786708]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.786719]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.796776]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.796882]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.796892]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.866619]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.866728]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.866738]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.886660]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.886770]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.886780]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.916630]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.916737]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.916747]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.936680]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.936786]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.936797]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.966622]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.966729]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.966739]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2181.986636]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2181.986751]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2181.986762]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.016645]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.016761]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.016771]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.036592]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.036708]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.036718]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.047277]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.047383]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.047394]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.116650]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.116761]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.116771]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.186656]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.186761]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.186771]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.216671]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.216786]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.216796]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.236688]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.236794]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.236804]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.245874]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 360  579   16]\n[ 2182.286607]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.286715]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.286725]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.306685]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.306791]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.306801]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.316695]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.316806]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.316816]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.356690]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.356796]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.356806]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.366619]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.366725]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.366735]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.386618]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.386728]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.386739]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.406631]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.406743]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.406753]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.436624]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.436730]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.436740]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.456664]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.456773]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.456783]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.486642]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.486753]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.486763]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.586612]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.586717]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.586727]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.606655]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.606763]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.606774]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.617322]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.617428]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.617439]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.636696]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.636802]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.636813]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.686619]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.686725]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.686735]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.706656]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.706772]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.706782]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.736681]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.736786]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.736797]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.756681]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.756786]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.756796]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.806665]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.806780]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.806790]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.822751]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.822855]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.822866]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.877562]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.877668]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.877678]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.906643]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.906753]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.906763]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.926700]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.926810]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.926820]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.956635]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.956745]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.956755]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.976681]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.976786]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.976796]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2182.986648]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2182.986755]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2182.986765]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2183.006685]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2183.006794]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2183.006804]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2183.026594]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2183.026709]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2183.026719]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2183.056772]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2183.056888]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2183.056898]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2183.076564]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2183.076679]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2183.076690]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2183.086666]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2183.086771]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2183.086782]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2183.106678]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2183.106784]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2183.106795]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2183.156681]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2183.156787]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2183.156798]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2183.176683]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2183.176789]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2183.176799]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2183.206690]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2183.206795]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2183.206806]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2183.276621]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2183.276727]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2183.276737]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2183.326642]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2183.326758]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2183.326768]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2183.337375]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2183.337479]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2183.337490]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2183.357086]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2183.357203]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2183.357213]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2183.376660]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2183.376776]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2183.376786]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2183.406805]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2183.406922]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2183.406932]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2183.455031]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2183.455146]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2183.455156]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2183.675546] -(6)[500:coremark][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2183.729802]  (0)[0:swapper/0][name:spm&]Power/swap IdleBus26m: No enter --- IdleSyspll: No enter --- IdleDram: No enter --- \n[ 2183.737565]  (0)[0:swapper/0][mcdi]mcdi cpu: 1071, 0, 0, 0, 0, 0, 3380, 0, cluster : 0, pause = 0, multi core = 0, latency = 1642, residency = 0, last core = 1642, avail cpu = 0041, cluster = 0001, enabled = 1, max_s_state = 5, system_idle_hint = 00000000\n[ 2183.774923]  (0)[331:rpmb_open]Trustonic TEE: request_send: daemon not connected after 1090s, waiting\n[ 2183.897410] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 1071, 0, 0, 0, 0, 0, 4018, 0, success counter cpu: 80, 0, 0, 0, 0, 0, 592, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 179, 0, 0, 0, 0, 0, 426, 0, o: , p: , f: , t:  2183900000000, N:000000009c211422, N:00000000da0d23a3, N:00000000ba318931, N:000000007ceb8dd5, N:000000007fd2c0f2, 2184470000000, N:0000000024f4f619,\n[ 2183.948456]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 360  579   16]\n[ 2184.075150]  (0)[350:tbatt_pwroff][CH3_DBG] bat_cur = 30\n[ 2184.235117]  (0)[484:kworker/u16:7][CH3_DBG] bat_cur = 14\n[ 2185.034954]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(0): 0(idle)\t500Mhz\t9(rel)\t2(abs)\t21(util)\t495(cap)\n[ 2185.034973]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(1): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t3(util)\t495(cap)\n[ 2185.034989]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(2): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t376(util)\t495(cap)\n[ 2185.035005]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(3): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t362(util)\t495(cap)\n[ 2185.035020]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(4): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t349(util)\t495(cap)\n[ 2185.035036]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(5): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t241(util)\t495(cap)\n[ 2185.035051]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(6): 0(idle)\t2000Mhz\t0(rel)\t0(abs)\t1024(util)\t1024(cap)\n[ 2185.035067]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(7): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t47(util)\t1024(cap)\n[ 2185.035082]  (0)[0:swapper/0][POWER_DEBUG]gpu_dram_info 850Mhz(gpu)\t0(gpu_load)\t2(ddr opp)\t3(vcore opp)\t650000(uv)\n[ 2185.036063]  (0)[0:swapper/0][POWER_DEBUG]irq/27-touchpan\t307\t2867840\t2867840\n[ 2185.036073]  (0)[0:swapper/0][POWER_DEBUG]spi2\t301\t2150880\t2150880\n[ 2185.036083]  (0)[0:swapper/0][POWER_DEBUG]python3\t373\t358480\t358480\n[ 2185.036092]  (0)[0:swapper/0][POWER_DEBUG]python3\t500\t358480\t358480\n[ 2185.036101]  (0)[0:swapper/0][POWER_DEBUG]python3\t373\t358480\t358480\n[ 2185.036108]  (0)[0:swapper/0][POWER_DEBUG]print active wakeup sources\n[ 2185.036119]  (0)[0:swapper/0]active wakeup source: battery suspend wakelock\n[ 2185.036142]  (0)[0:swapper/0]active wakeup source: pri_disp_wakelock\n[ 2185.036149]  (0)[0:swapper/0]active wakeup source: USB suspend lock\n[ 2185.036176]  (0)[0:swapper/0]active wakeup source: (null)\n[ 2185.211652]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 360  579   16]\n[ 2185.435438]  (0)[479:kworker/0:2][MUSB]usb20_check_vbus_on 162: vbus_on<0>\n[ 2185.435449]  (0)[479:kworker/0:2][pmic_chrdet_status],Charger exist and USB is not host\n[ 2185.436792]  (0)[479:kworker/0:2][MDRT_ADC] OLD = 0x33b2, NOW = 0x33f1, CNT = 0\n[ 2185.437521]  (0)[479:kworker/0:2]vbat_out_old=43930, vthr=690, T_curr=344, vbat_out=43955\n[ 2185.439274]  (0)[479:kworker/0:2]vbat_out_old=43930, vthr=690, T_curr=344, vbat_out=43955\n[ 2185.441002]  (0)[479:kworker/0:2]vbat_out_old=43930, vthr=690, T_curr=344, vbat_out=43955\n[ 2185.441676]  (0)[479:kworker/0:2][CH3_DBG] bat_cur = 30\n[ 2185.442720]  (0)[479:kworker/0:2][OPLUS_MIDAS_CHG_DEBUG]oplus_midas_chg_processing: passedchg=-128, realpassedchg=-128,accu_delta=0, prev_chg_stat=1, reset_counts=0\n[ 2185.443102]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_mivr mivr = 4586000(0x06)\n[ 2185.443603]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_check_status_full]is_batt_full : 0,  chip->charging_state= 2\n[ 2185.443615]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_full_action][BATTERY] Battery full !!\n[ 2185.443633]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_ichg ichg = 1350000(0x1B)\n[ 2185.505044]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_ichg ichg = 350000(0x07)\n[ 2185.574955]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_wdt time = 0(0x00)\n[ 2185.575387]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_enable_chg en = 0\n[ 2185.575817]  (0)[479:kworker/0:2]last full = 1, full = 1\n[ 2185.575834]  (0)[479:kworker/0:2][OPLUS_CHG][battery_notify_vbat_check][BATTERY] FULL,tbatt_status:0,notify_code:128\n[ 2185.576800]  (0)[497:kworker/0:3]get prop 101 is not supported in batt\n[ 2185.576815]  (0)[497:kworker/0:3]get prop 102 is not supported in batt\n[ 2185.576844]  (0)[497:kworker/0:3]get prop 103 is not supported in batt\n[ 2185.576856]  (0)[497:kworker/0:3]get prop 104 is not supported in batt\n[ 2185.578616]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_dump_registers ICHG = 350mA, AICR = 500mA, MIVR = 4500mV, IEOC = 250mA,CV = 4430mV,CHG_EN = 0, IC_STAT = ready, STAT0 = 0xC0, STAT1 = 0x00, STAT2 = 0x00, STAT3 = 0x00\n[ 2185.578801]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_write_filedata]open file /data/oplus_charge/oplus_chg_debug_monitor.txt failed[-2].\n[ 2185.578851]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_print_log] CHGR[ 1 / 4 / 4986 / 4 / 0 ], BAT[ 1 / 1 / 0 / 0 / 2 / 5 ], GAUGE[ 300 / 4386 / 4386 / -4 / -1 / -1 / 100 / 55 / -1 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 /], STATUS[ 0x0 / 0 / 0 / 0 / 16 / 0x100080 ], OTHER[ 0 / 1 / 7 / 0 / 0/ 0 / -2740]\n[ 2185.684936]  (0)[479:kworker/0:2]rt9471 7-0053: rt9471_buck_dwork_handler chip_rev = 4\n[ 2185.685178]  (0)[479:kworker/0:2]rt9471 7-0053: rt9471_buck_dwork_handler chg_rdy = 1\n[ 2185.685418]  (0)[479:kworker/0:2]rt9471 7-0053: rt9471_buck_dwork_handler chg_done = 0, chg_done_once = 0\n[ 2185.755652] -(6)[500:coremark][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2186.477738]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 360  579   16]\n[ 2187.741167]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 360  579   16]\n[ 2187.835509] -(6)[500:coremark][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2188.734964]  (0)[0:swapper/0][name:spm&]Power/swap IdleBus26m: No enter --- IdleSyspll: No enter --- IdleDram: No enter --- \n[ 2188.738175]  (0)[0:swapper/0][mcdi]mcdi cpu: 1168, 0, 0, 0, 0, 0, 0, 0, cluster : 0, pause = 0, multi core = 0, latency = 0, residency = 0, last core = 0, avail cpu = 0041, cluster = 0001, enabled = 1, max_s_state = 5, system_idle_hint = 00000000\n[ 2188.904965] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 1175, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 499, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 499, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  2188900000000, N:000000009c211422, N:00000000da0d23a3, N:00000000ba318931, N:000000007ceb8dd5, N:000000007fd2c0f2, 2189430000000, N:0000000024f4f619,\n[ 2189.007013]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 360  579   16]\n[ 2189.115189]  (0)[350:tbatt_pwroff][CH3_DBG] bat_cur = 22\n[ 2189.275251]  (0)[480:kworker/u16:6][CH3_DBG] bat_cur = 38\n[ 2189.915530] -(6)[500:coremark][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2190.074934]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(0): 0(idle)\t500Mhz\t9(rel)\t2(abs)\t12(util)\t495(cap)\n[ 2190.074954]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(1): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t3(util)\t495(cap)\n[ 2190.074970]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(2): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t376(util)\t495(cap)\n[ 2190.074985]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(3): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t362(util)\t495(cap)\n[ 2190.075001]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(4): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t349(util)\t495(cap)\n[ 2190.075016]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(5): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t241(util)\t495(cap)\n[ 2190.075031]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(6): 0(idle)\t2000Mhz\t0(rel)\t0(abs)\t1024(util)\t1024(cap)\n[ 2190.075047]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(7): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t47(util)\t1024(cap)\n[ 2190.075062]  (0)[0:swapper/0][POWER_DEBUG]gpu_dram_info 850Mhz(gpu)\t0(gpu_load)\t2(ddr opp)\t3(vcore opp)\t650000(uv)\n[ 2190.076210]  (0)[0:swapper/0][POWER_DEBUG]irq/27-touchpan\t307\t13263760\t13263760\n[ 2190.076220]  (0)[0:swapper/0][POWER_DEBUG]spi2\t301\t2150880\t2150880\n[ 2190.076230]  (0)[0:swapper/0][POWER_DEBUG]kworker/0:2\t479\t358480\t358480\n[ 2190.076239]  (0)[0:swapper/0][POWER_DEBUG]python3\t373\t358480\t358480\n[ 2190.076246]  (0)[0:swapper/0][POWER_DEBUG]print active wakeup sources\n[ 2190.076256]  (0)[0:swapper/0]active wakeup source: battery suspend wakelock\n[ 2190.076279]  (0)[0:swapper/0]active wakeup source: pri_disp_wakelock\n[ 2190.076286]  (0)[0:swapper/0]active wakeup source: USB suspend lock\n[ 2190.076312]  (0)[0:swapper/0]active wakeup source: (null)\n[ 2190.270415]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 362  579   16]\n[ 2191.194922]  (0)[479:kworker/0:2][MUSB]usb20_check_vbus_on 162: vbus_on<0>\n[ 2191.194934]  (0)[479:kworker/0:2][pmic_chrdet_status],Charger exist and USB is not host\n[ 2191.196272]  (0)[479:kworker/0:2][MDRT_ADC] OLD = 0x33f1, NOW = 0x33dc, CNT = 0\n[ 2191.196636]  (0)[479:kworker/0:2]vbat_out_old=43930, vthr=689, T_curr=350, vbat_out=43957\n[ 2191.198318]  (0)[479:kworker/0:2]vbat_out_old=43930, vthr=689, T_curr=350, vbat_out=43957\n[ 2191.200013]  (0)[479:kworker/0:2]vbat_out_old=43930, vthr=689, T_curr=350, vbat_out=43957\n[ 2191.201091]  (0)[479:kworker/0:2][CH3_DBG] bat_cur = -6\n[ 2191.202184]  (0)[479:kworker/0:2][OPLUS_MIDAS_CHG_DEBUG]oplus_midas_chg_processing: passedchg=-128, realpassedchg=-128,accu_delta=0, prev_chg_stat=1, reset_counts=0\n[ 2191.202567]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_mivr mivr = 4586000(0x06)\n[ 2191.203068]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_check_status_full]is_batt_full : 0,  chip->charging_state= 2\n[ 2191.203080]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_full_action][BATTERY] Battery full !!\n[ 2191.203097]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_ichg ichg = 1350000(0x1B)\n[ 2191.264943]  (6)[362:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1487419113699,0,0,[2191264939916,15000000]\n[ 2191.264950]  (6)[362:wdtk-6][thread:362][RT:2191264947300] 2021-10-26 10:05:02.1303 UTC;android time 2021-10-26 10:05:02.1303\n[ 2191.264997]  (0)[356:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1487419113699,0,0,[2191264980531,14999960]\n[ 2191.265038]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_ichg ichg = 350000(0x07)\n[ 2191.335004]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_wdt time = 0(0x00)\n[ 2191.335558]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_enable_chg en = 0\n[ 2191.335987]  (0)[479:kworker/0:2]last full = 1, full = 1\n[ 2191.336004]  (0)[479:kworker/0:2][OPLUS_CHG][battery_notify_vbat_check][BATTERY] FULL,tbatt_status:0,notify_code:128\n[ 2191.336932]  (0)[497:kworker/0:3]get prop 101 is not supported in batt\n[ 2191.336947]  (0)[497:kworker/0:3]get prop 102 is not supported in batt\n[ 2191.336975]  (0)[497:kworker/0:3]get prop 103 is not supported in batt\n[ 2191.336987]  (0)[497:kworker/0:3]get prop 104 is not supported in batt\n[ 2191.338748]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_dump_registers ICHG = 350mA, AICR = 500mA, MIVR = 4500mV, IEOC = 250mA,CV = 4430mV,CHG_EN = 0, IC_STAT = ready, STAT0 = 0xC0, STAT1 = 0x00, STAT2 = 0x00, STAT3 = 0x00\n[ 2191.338939]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_write_filedata]open file /data/oplus_charge/oplus_chg_debug_monitor.txt failed[-2].\n[ 2191.338991]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_print_log] CHGR[ 1 / 4 / 4976 / 4 / 0 ], BAT[ 1 / 1 / 0 / 0 / 2 / 5 ], GAUGE[ 300 / 4386 / 4386 / -2 / -1 / -1 / 100 / 55 / -1 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 /], STATUS[ 0x0 / 0 / 0 / 0 / 16 / 0x100080 ], OTHER[ 0 / 1 / 7 / 0 / 0/ 0 / -2740]\n[ 2191.444935]  (0)[479:kworker/0:2]rt9471 7-0053: rt9471_buck_dwork_handler chip_rev = 4\n[ 2191.445180]  (0)[479:kworker/0:2]rt9471 7-0053: rt9471_buck_dwork_handler chg_rdy = 1\n[ 2191.445420]  (0)[479:kworker/0:2]rt9471 7-0053: rt9471_buck_dwork_handler chg_done = 0, chg_done_once = 0\n[ 2191.536268]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 362  579   16]\n[ 2191.995945] -(6)[500:coremark][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2192.799628]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 362  579   16]\n[ 2193.736674]  (0)[0:swapper/0][name:spm&]Power/swap IdleBus26m: No enter --- IdleSyspll: No enter --- IdleDram: No enter --- \n[ 2193.744965]  (0)[0:swapper/0][mcdi]mcdi cpu: 1195, 0, 0, 0, 0, 0, 0, 0, cluster : 0, pause = 0, multi core = 0, latency = 0, residency = 0, last core = 0, avail cpu = 0041, cluster = 0001, enabled = 1, max_s_state = 5, system_idle_hint = 00000000\n[ 2193.913967] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 1190, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 500, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 500, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: , t:  2193910000000, N:000000009c211422, N:00000000da0d23a3, N:00000000ba318931, N:000000007ceb8dd5, N:000000007fd2c0f2, 2194390000000, N:0000000024f4f619,\n[ 2194.065536]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 362  579   16]\n[ 2194.075209]  (0)[350:tbatt_pwroff][CH3_DBG] bat_cur = 0\n[ 2194.076869] -(6)[500:coremark][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2194.315229]  (0)[403:kworker/u16:1][CH3_DBG] bat_cur = -60\n[ 2194.958505]  (0)[135:irq/170-mt6358-]mt6358-pmic 1000d000.pwrap:mt6358-pmic: Reg[0xf9e]=0x10,name=bat_temp_h,hwirq=116,type=4\n[ 2194.958522]  (0)[135:irq/170-mt6358-]mt6358-pmic 1000d000.pwrap:mt6358-pmic: [PMIC_INT][MT6358_IRQ_BAT_TEMP_H]\n[ 2194.958537]  (0)[135:irq/170-mt6358-][fg_bat_temp_int_h_handler]\n[ 2194.958749]  (0)[135:irq/170-mt6358-][CH3_DBG] bat_cur = -30\n[ 2194.959406]  (0)[135:irq/170-mt6358-][pmic_enable_interrupt] intNo=117, en=0, depth=1\n[ 2194.959475]  (0)[135:irq/170-mt6358-][pmic_enable_interrupt] intNo=116, en=0, depth=1\n[ 2194.959828]  (0)[135:irq/170-mt6358-][pmic_enable_interrupt] intNo=117, en=1, depth=0\n[ 2194.959892]  (0)[135:irq/170-mt6358-][pmic_enable_interrupt] intNo=116, en=1, depth=0\n[ 2194.960027]  (0)[135:irq/170-mt6358-][fg_bat_temp_int_internal][FG_TEMP_INT] T[30] V[65535 65535] C[65535 65535] h[9851 9389]\n[ 2195.114919]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(0): 1(idle)\t500Mhz\t9(rel)\t2(abs)\t20(util)\t495(cap)\n[ 2195.114938]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(1): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t3(util)\t495(cap)\n[ 2195.114954]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(2): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t376(util)\t495(cap)\n[ 2195.114970]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(3): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t362(util)\t495(cap)\n[ 2195.114985]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(4): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t349(util)\t495(cap)\n[ 2195.115001]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(5): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t241(util)\t495(cap)\n[ 2195.115016]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(6): 0(idle)\t2000Mhz\t0(rel)\t0(abs)\t1024(util)\t1024(cap)\n[ 2195.115031]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(7): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t47(util)\t1024(cap)\n[ 2195.115046]  (0)[0:swapper/0][POWER_DEBUG]gpu_dram_info 850Mhz(gpu)\t0(gpu_load)\t2(ddr opp)\t3(vcore opp)\t650000(uv)\n[ 2195.116189]  (0)[0:swapper/0][POWER_DEBUG]irq/27-touchpan\t307\t11829840\t11829840\n[ 2195.116199]  (0)[0:swapper/0][POWER_DEBUG]spi2\t301\t4301760\t4301760\n[ 2195.116209]  (0)[0:swapper/0][POWER_DEBUG]python3\t373\t716960\t716960\n[ 2195.116218]  (0)[0:swapper/0][POWER_DEBUG]kworker/0:2\t479\t358480\t358480\n[ 2195.116225]  (0)[0:swapper/0][POWER_DEBUG]print active wakeup sources\n[ 2195.116236]  (0)[0:swapper/0]active wakeup source: battery suspend wakelock\n[ 2195.116258]  (0)[0:swapper/0]active wakeup source: pri_disp_wakelock\n[ 2195.116266]  (0)[0:swapper/0]active wakeup source: USB suspend lock\n[ 2195.116292]  (0)[0:swapper/0]active wakeup source: (null)\n[ 2195.329776]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 362  579   16]\n[ 2196.155644] -(6)[500:coremark][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2196.594768]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 362  579   16]\n[ 2197.595205]  (0)[479:kworker/0:2][MUSB]usb20_check_vbus_on 162: vbus_on<0>\n[ 2197.595217]  (0)[479:kworker/0:2][pmic_chrdet_status],Charger exist and USB is not host\n[ 2197.596558]  (0)[479:kworker/0:2][MDRT_ADC] OLD = 0x33dc, NOW = 0x33ac, CNT = 0\n[ 2197.596922]  (0)[479:kworker/0:2]vbat_out_old=43930, vthr=689, T_curr=350, vbat_out=43957\n[ 2197.596935] -(0)[479:kworker/0:2]mt635x_auxadc_read_raw: 1 callbacks suppressed\n[ 2197.598601]  (0)[479:kworker/0:2]vbat_out_old=43930, vthr=689, T_curr=350, vbat_out=43957\n[ 2197.600297]  (0)[479:kworker/0:2]vbat_out_old=43930, vthr=689, T_curr=350, vbat_out=43957\n[ 2197.600963]  (0)[479:kworker/0:2][CH3_DBG] bat_cur = -14\n[ 2197.602774]  (0)[479:kworker/0:2][OPLUS_MIDAS_CHG_DEBUG]oplus_midas_chg_processing: passedchg=-128, realpassedchg=-128,accu_delta=0, prev_chg_stat=1, reset_counts=0\n[ 2197.603159]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_mivr mivr = 4586000(0x06)\n[ 2197.603662]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_check_status_full]is_batt_full : 0,  chip->charging_state= 2\n[ 2197.603674]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_full_action][BATTERY] Battery full !!\n[ 2197.603691]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_ichg ichg = 1350000(0x1B)\n[ 2197.664961]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_ichg ichg = 350000(0x07)\n[ 2197.734955]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_wdt time = 0(0x00)\n[ 2197.735387]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_enable_chg en = 0\n[ 2197.735818]  (0)[479:kworker/0:2]last full = 1, full = 1\n[ 2197.735835]  (0)[479:kworker/0:2][OPLUS_CHG][battery_notify_vbat_check][BATTERY] FULL,tbatt_status:0,notify_code:128\n[ 2197.736836]  (0)[497:kworker/0:3]get prop 101 is not supported in batt\n[ 2197.736851]  (0)[497:kworker/0:3]get prop 102 is not supported in batt\n[ 2197.736879]  (0)[497:kworker/0:3]get prop 103 is not supported in batt\n[ 2197.736891]  (0)[497:kworker/0:3]get prop 104 is not supported in batt\n[ 2197.738654]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_dump_registers ICHG = 350mA, AICR = 500mA, MIVR = 4500mV, IEOC = 250mA,CV = 4430mV,CHG_EN = 0, IC_STAT = ready, STAT0 = 0xC0, STAT1 = 0x00, STAT2 = 0x00, STAT3 = 0x00\n[ 2197.738846]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_write_filedata]open file /data/oplus_charge/oplus_chg_debug_monitor.txt failed[-2].\n[ 2197.738897]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_print_log] CHGR[ 1 / 4 / 4986 / 4 / 0 ], BAT[ 1 / 1 / 0 / 0 / 2 / 5 ], GAUGE[ 300 / 4386 / 4386 / 3 / -1 / -1 / 100 / 55 / -1 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 /], STATUS[ 0x0 / 0 / 0 / 0 / 16 / 0x100080 ], OTHER[ 0 / 1 / 7 / 0 / 0/ 0 / -2740]\n[ 2197.844935]  (0)[479:kworker/0:2]rt9471 7-0053: rt9471_buck_dwork_handler chip_rev = 4\n[ 2197.845176]  (0)[479:kworker/0:2]rt9471 7-0053: rt9471_buck_dwork_handler chg_rdy = 1\n[ 2197.845416]  (0)[479:kworker/0:2]rt9471 7-0053: rt9471_buck_dwork_handler chg_done = 0, chg_done_once = 0\n[ 2197.858494]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 362  579   16]\n[ 2198.235748] -(0)[403:kworker/u16:1][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2198.737978]  (0)[0:swapper/0][name:spm&]Power/swap IdleBus26m: No enter --- IdleSyspll: No enter --- IdleDram: No enter --- \n[ 2198.745558]  (0)[0:swapper/0][mcdi]mcdi cpu: 1169, 0, 0, 0, 0, 0, 0, 0, cluster : 0, pause = 0, multi core = 0, latency = 0, residency = 0, last core = 0, avail cpu = 0041, cluster = 0001, enabled = 1, max_s_state = 5, system_idle_hint = 00000000\n[ 2198.922292] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 1172, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: , t:  2198920000000, N:000000009c211422, N:00000000da0d23a3, N:00000000ba318931, N:000000007ceb8dd5, N:000000007fd2c0f2, 2199350000000, N:0000000024f4f619,\n[ 2199.115186]  (0)[350:tbatt_pwroff][CH3_DBG] bat_cur = 6\n[ 2199.124004]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 362  579   16]\n[ 2199.355264]  (0)[484:kworker/u16:7][CH3_DBG] bat_cur = 22\n[ 2200.154888]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(0): 1(idle)\t500Mhz\t13(rel)\t3(abs)\t14(util)\t495(cap)\n[ 2200.154908]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(1): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t3(util)\t495(cap)\n[ 2200.154925]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(2): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t376(util)\t495(cap)\n[ 2200.154940]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(3): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t362(util)\t495(cap)\n[ 2200.154956]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(4): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t349(util)\t495(cap)\n[ 2200.154971]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(5): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t241(util)\t495(cap)\n[ 2200.154986]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(6): 0(idle)\t2000Mhz\t0(rel)\t0(abs)\t1024(util)\t1024(cap)\n[ 2200.155001]  (0)[0:swapper/0][POWER_DEBUG]cpu_info(7): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t47(util)\t1024(cap)\n[ 2200.155016]  (0)[0:swapper/0][POWER_DEBUG]gpu_dram_info 850Mhz(gpu)\t0(gpu_load)\t2(ddr opp)\t3(vcore opp)\t650000(uv)\n[ 2200.156156]  (0)[0:swapper/0][POWER_DEBUG]irq/27-touchpan\t307\t12546800\t12546800\n[ 2200.156166]  (0)[0:swapper/0][POWER_DEBUG]spi2\t301\t3943280\t3943280\n[ 2200.156175]  (0)[0:swapper/0][POWER_DEBUG]kworker/0:2\t479\t1075440\t1075440\n[ 2200.156183]  (0)[0:swapper/0][POWER_DEBUG]print active wakeup sources\n[ 2200.156193]  (0)[0:swapper/0]active wakeup source: battery suspend wakelock\n[ 2200.156216]  (0)[0:swapper/0]active wakeup source: pri_disp_wakelock\n[ 2200.156224]  (0)[0:swapper/0]active wakeup source: USB suspend lock\n[ 2200.156251]  (0)[0:swapper/0]active wakeup source: (null)\n[ 2200.315529] -(6)[500:coremark][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2200.387568]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 362  579   16]\n[ 2201.653265]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 362  579   16]\n[ 2202.395571] -(6)[500:coremark][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2202.916842]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 362  579   17]\n[ 2203.355000]  (0)[479:kworker/0:2][MUSB]usb20_check_vbus_on 162: vbus_on<0>\n[ 2203.355012]  (0)[479:kworker/0:2][pmic_chrdet_status],Charger exist and USB is not host\n[ 2203.356357]  (0)[479:kworker/0:2][MDRT_ADC] OLD = 0x33ac, NOW = 0x337f, CNT = 0\n[ 2203.356735]  (0)[479:kworker/0:2]vbat_out_old=43930, vthr=688, T_curr=356, vbat_out=43958\n[ 2203.358423]  (0)[479:kworker/0:2]vbat_out_old=43930, vthr=688, T_curr=356, vbat_out=43958\n[ 2203.360089]  (0)[479:kworker/0:2]vbat_out_old=43930, vthr=689, T_curr=350, vbat_out=43957\n[ 2203.360725]  (0)[479:kworker/0:2][CH3_DBG] bat_cur = 14\n[ 2203.362187]  (0)[479:kworker/0:2][OPLUS_MIDAS_CHG_DEBUG]oplus_midas_chg_processing: passedchg=-128, realpassedchg=-128,accu_delta=0, prev_chg_stat=1, reset_counts=0\n[ 2203.362575]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_mivr mivr = 4586000(0x06)\n[ 2203.363075]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_check_status_full]is_batt_full : 0,  chip->charging_state= 2\n[ 2203.363086]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_full_action][BATTERY] Battery full !!\n[ 2203.363104]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_ichg ichg = 1350000(0x1B)\n[ 2203.424962]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_ichg ichg = 350000(0x07)\n[ 2203.495416]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_set_wdt time = 0(0x00)\n[ 2203.495982]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_enable_chg en = 0\n[ 2203.496411]  (0)[479:kworker/0:2]last full = 1, full = 1\n[ 2203.496428]  (0)[479:kworker/0:2][OPLUS_CHG][battery_notify_vbat_check][BATTERY] FULL,tbatt_status:0,notify_code:128\n[ 2203.497363]  (0)[497:kworker/0:3]get prop 101 is not supported in batt\n[ 2203.497379]  (0)[497:kworker/0:3]get prop 102 is not supported in batt\n[ 2203.497407]  (0)[497:kworker/0:3]get prop 103 is not supported in batt\n[ 2203.497419]  (0)[497:kworker/0:3]get prop 104 is not supported in batt\n[ 2203.499180]  (0)[479:kworker/0:2]rt9471 7-0053: __rt9471_dump_registers ICHG = 350mA, AICR = 500mA, MIVR = 4500mV, IEOC = 250mA,CV = 4430mV,CHG_EN = 0, IC_STAT = ready, STAT0 = 0xC0, STAT1 = 0x00, STAT2 = 0x00, STAT3 = 0x00\n[ 2203.499369]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_write_filedata]open file /data/oplus_charge/oplus_chg_debug_monitor.txt failed[-2].\n[ 2203.499419]  (0)[479:kworker/0:2][OPLUS_CHG][oplus_chg_print_log] CHGR[ 1 / 4 / 4976 / 4 / 0 ], BAT[ 1 / 1 / 0 / 0 / 2 / 5 ], GAUGE[ 300 / 4386 / 4386 / 0 / -1 / -1 / 100 / 55 / -1 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 / 0 /], STATUS[ 0x0 / 0 / 0 / 0 / 16 / 0x100080 ], OTHER[ 0 / 1 / 7 / 0 / 0/ 0 / -2740]\n[ 2203.605014]  (0)[479:kworker/0:2]rt9471 7-0053: rt9471_buck_dwork_handler chip_rev = 4\n[ 2203.605258]  (0)[479:kworker/0:2]rt9471 7-0053: rt9471_buck_dwork_handler chg_rdy = 1\n[ 2203.605498]  (0)[479:kworker/0:2]rt9471 7-0053: rt9471_buck_dwork_handler chg_done = 0, chg_done_once = 0\n[ 2203.744934]  (0)[0:swapper/0][name:spm&]Power/swap IdleBus26m: No enter --- IdleSyspll: No enter --- IdleDram: No enter --- \n[ 2203.746307]  (0)[0:swapper/0][mcdi]mcdi cpu: 1180, 0, 0, 0, 0, 0, 0, 0, cluster : 0, pause = 0, multi core = 0, latency = 0, residency = 0, last core = 0, avail cpu = 0041, cluster = 0001, enabled = 1, max_s_state = 5, system_idle_hint = 00000000\n[ 2203.774921]  (0)[331:rpmb_open]Trustonic TEE: request_send: daemon not connected after 1100s, waiting\n[ 2203.930586] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 1179, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 499, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 499, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: , t:  2203930000000, N:000000009c211422, N:00000000da0d23a3, N:00000000ba318931, N:000000007ceb8dd5, N:000000007fd2c0f2, 2204300000000, N:0000000024f4f619,\n[ 2204.075167]  (0)[350:tbatt_pwroff][CH3_DBG] bat_cur = 22\n[ 2204.182566]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 362  578   16]\n[ 2204.395123]  (0)[428:kworker/u16:2][CH3_DBG] bat_cur = 44\n[ 2204.395499] -(0)[428:kworker/u16:2]mt635x_auxadc_read_raw: 4 callbacks suppressed\n[ 2204.475531] -(6)[500:coremark][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2205.194919]  (0)[307:irq/27-touchpan][POWER_DEBUG]cpu_info(0): 0(idle)\t500Mhz\t12(rel)\t3(abs)\t27(util)\t495(cap)\n[ 2205.194939]  (0)[307:irq/27-touchpan][POWER_DEBUG]cpu_info(1): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t3(util)\t495(cap)\n[ 2205.194956]  (0)[307:irq/27-touchpan][POWER_DEBUG]cpu_info(2): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t376(util)\t495(cap)\n[ 2205.194972]  (0)[307:irq/27-touchpan][POWER_DEBUG]cpu_info(3): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t362(util)\t495(cap)\n[ 2205.194987]  (0)[307:irq/27-touchpan][POWER_DEBUG]cpu_info(4): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t349(util)\t495(cap)\n[ 2205.195003]  (0)[307:irq/27-touchpan][POWER_DEBUG]cpu_info(5): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t241(util)\t495(cap)\n[ 2205.195019]  (0)[307:irq/27-touchpan][POWER_DEBUG]cpu_info(6): 0(idle)\t2000Mhz\t0(rel)\t0(abs)\t1024(util)\t1024(cap)\n[ 2205.195034]  (0)[307:irq/27-touchpan][POWER_DEBUG]cpu_info(7): 0(idle)\t0Mhz\t0(rel)\t0(abs)\t47(util)\t1024(cap)\n[ 2205.195049]  (0)[307:irq/27-touchpan][POWER_DEBUG]gpu_dram_info 850Mhz(gpu)\t0(gpu_load)\t2(ddr opp)\t3(vcore opp)\t650000(uv)\n[ 2205.196194]  (0)[307:irq/27-touchpan][POWER_DEBUG]irq/27-touchpan\t307\t9678960\t9678960\n[ 2205.196205]  (0)[307:irq/27-touchpan][POWER_DEBUG]spi2\t301\t3226320\t3226320\n[ 2205.196215]  (0)[307:irq/27-touchpan][POWER_DEBUG]python3\t373\t716960\t716960\n[ 2205.196222]  (0)[307:irq/27-touchpan][POWER_DEBUG]print active wakeup sources\n[ 2205.196234]  (0)[307:irq/27-touchpan]active wakeup source: battery suspend wakelock\n[ 2205.196256]  (0)[307:irq/27-touchpan]active wakeup source: pri_disp_wakelock\n[ 2205.196264]  (0)[307:irq/27-touchpan]active wakeup source: USB suspend lock\n[ 2205.196292]  (0)[307:irq/27-touchpan]active wakeup source: (null)\n[ 2205.445803]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 362  578   18]\n[ 2206.364971]  (6)[362:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1487419113699,0,0,[2206364968336,15000000]\n[ 2206.364977]  (6)[362:wdtk-6][thread:362][RT:2206364974182] 2021-10-26 10:05:17.101330 UTC;android time 2021-10-26 10:05:17.101330\n[ 2206.365011]  (0)[356:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1487419113699,0,0,[2206364995413,14999972]\n[ 2206.555699] -(6)[500:coremark][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2206.711897]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 362  578   16]\n[ 2207.975908]  (0)[307:irq/27-touchpan][TP]touchpanel: touchpanel: Touchpanel id 0 :Down[ 362  578   17]\n[ 2208.096511]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2208.096588]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2208.096598]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2208.146645]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2208.146751]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2208.146762]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2208.177318]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2208.177422]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2208.177433]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2208.296699]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2208.296810]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2208.296820]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2208.366744]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2208.366863]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2208.366873]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2208.436583]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2208.436699]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2208.436709]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2208.446649]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2208.446756]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2208.446766]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2208.486614]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2208.486729]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2208.486739]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2208.496744]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2208.496856]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2208.496867]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2208.536675]  (0)[307:irq/27-touchpan]ILITEK: (core_rx_lock_check, 58): Rx check lock error, lock = 0x9881, size = 43\n[ 2208.536780]  (0)[307:irq/27-touchpan]ILITEK: (ilitek_tddi_report_handler, 1130): Length of packet is invaild\n[ 2208.536791]  (0)[307:irq/27-touchpan][TP]ilitek,ili9881h: get point info error ignore\n[ 2208.612553]  (0)[135:irq/170-mt6358-]mt6358-pmic 1000d000.pwrap:mt6358-pmic: Reg[0xf9e]=0x10,name=bat_temp_h,hwirq=116,type=4\n[ 2208.612574]  (0)[135:irq/170-mt6358-]mt6358-pmic 1000d000.pwrap:mt6358-pmic: [PMIC_INT][MT6358_IRQ_BAT_TEMP_H]\n[ 2208.612591]  (0)[135:irq/170-mt6358-][fg_bat_temp_int_h_handler]\n[ 2208.612865]  (0)[135:irq/170-mt6358-][CH3_DBG] bat_cur = 14\n[ 2208.613578]  (0)[135:irq/170-mt6358-][pmic_enable_interrupt] intNo=117, en=0, depth=1\n[ 2208.613715]  (0)[135:irq/170-mt6358-][pmic_enable_interrupt] intNo=116, en=0, depth=1\n[ 2208.614062]  (0)[135:irq/170-mt6358-][pmic_enable_interrupt] intNo=117, en=1, depth=0\n[ 2208.614139]  (0)[135:irq/170-mt6358-][pmic_enable_interrupt] intNo=116, en=1, depth=0\n[ 2208.614264]  (0)[135:irq/170-mt6358-][fg_bat_temp_int_internal][FG_TEMP_INT] T[30] V[65535 65535] C[65535 65535] h[9851 9389]\n[ 2208.623912]  (0)[373:python3]CPU6: shutdown\n[ 2208.623932]  (0)[373:python3]psci: CPU6 killed (polled 0 ms)\n[ 2208.635606] -(0)[373:python3][sensorHub] cannot find cmd! try to find oppo cmd\n[ 2208.643311]  (0)[374:tee]12207     6.1 C/MHz      0 mW    0.0 J   2225406.7 I/mJ    24.6 s\n               \n               \n               Benchmark finished!\n[ 2208.698004]  (0)[1:bash]\n               real\t36m46.687s\n               user\t29m50.416s\n               sys\t0m36.828s\n"
  },
  {
    "path": "results/mt6768/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  3:     141685     GICv3  30 Level     arch_timer\n  6:     174409  MT_SYSIRQ 207 Level     mtk-clkevt\n  7:          0  MT_SYSIRQ 295 Level     CIRQ\n  8:          0  MT_SYSIRQ  22 Level     cache_parity\n  9:          0  MT_SYSIRQ  23 Level     cache_parity\n 10:          0  MT_SYSIRQ  24 Level     cache_parity\n 11:          0  MT_SYSIRQ  25 Level     cache_parity\n 12:          0  MT_SYSIRQ  26 Level     cache_parity\n 13:          0  MT_SYSIRQ  27 Level     cache_parity\n 14:          0  MT_SYSIRQ  28 Level     cache_parity\n 15:          0  MT_SYSIRQ  29 Level     cache_parity\n 16:          0  MT_SYSIRQ  19 Level     cache_parity\n 17:          0  MT_SYSIRQ 297 Edge      trustonic\n 18:          0  MT_SYSIRQ 298 Edge      tee_sanity\n 21:          0     GICv3  23 Level     arm-pmu\n 22:          0  MT_SYSIRQ  18 Level     arm_dsu_0\n 24:        282  MT_SYSIRQ 205 Level     SCP A IPC2HOST\n 26:          0   mt-eint   0 Level     mrdump_ext_rst-eint\n 27:      46425   mt-eint   1 Edge      touchpanel\n 32:          0   mt-eint   6 Level     pn544\n 33:          1   mt-eint   7 Edge      primary_chg-irq\n 44:          0   mt-eint  18 Edge      11240000.msdc cd\n 83:          0   mt-eint  57 Level     swtp0-eint\n120:          0   mt-eint  94 Edge      mtk-kpd-vol-down\n170:         54   mt-eint 144 Level     mt6358-irq\n173:          0   mt-eint 147 Level     USB_IDDIG\n238:          0  MT_SYSIRQ 195 Level     SPM\n239:          0  MT_SYSIRQ 156 Level     mt_wdt\n242:          0  MT_SYSIRQ 194 Level     mt-pmic-pwrap\n243:          0  MT_SYSIRQ  73 Edge      mtk-kpd\n244:          0  MT_SYSIRQ 174 Level     m4u\n245:          0  MT_SYSIRQ 159 Level     devapc\n247:          0  MT_SYSIRQ 164 Level     CCIF_AP_DATA\n251:          0  MT_SYSIRQ 134 Level     CQDMA\n252:          0  MT_SYSIRQ 135 Level     CQDMA\n253:          0  MT_SYSIRQ 136 Level     CQDMA\n254:          0  MT_SYSIRQ 161 Level     mpu\n258:        364  MT_SYSIRQ 170 Level     mtk_cmdq\n263:          1  MT_SYSIRQ 218 Level     SSPM_MBOX\n264:        151  MT_SYSIRQ 219 Level     SSPM_MBOX\n265:         62  MT_SYSIRQ 220 Level     SSPM_MBOX\n266:          0  MT_SYSIRQ 221 Level     SSPM_MBOX\n276:          0  MT_SYSIRQ  98 Level     mt-pwm\n277:          0  MT_SYSIRQ 105 Level     mt-i2c\n278:          0  MT_SYSIRQ 106 Level     mt-i2c\n279:          0  MT_SYSIRQ 107 Level     mt-i2c\n280:          0  MT_SYSIRQ 108 Level     mt-i2c\n281:          0  MT_SYSIRQ 109 Level     mt-i2c\n282:          1  MT_SYSIRQ 147 Level     mt-i2c\n283:          0  MT_SYSIRQ 148 Level     mt-i2c\n284:       4515  MT_SYSIRQ 110 Level     mt-i2c\n285:          0  MT_SYSIRQ 111 Level     mt-i2c\n286:          0  MT_SYSIRQ 138 Level     1100a000.spi0\n287:         11  MT_SYSIRQ 142 Level     eem\n288:          0  MT_SYSIRQ  99 Level     mtk-thermal\n295:          0  MT_SYSIRQ 139 Level     11010000.spi1\n296:    1163806  MT_SYSIRQ 145 Level     11012000.spi2\n297:          0  MT_SYSIRQ 146 Level     11013000.spi3\n298:          0  MT_SYSIRQ 116 Level     11014000.spi4\n299:          0  MT_SYSIRQ 117 Level     11015000.spi5\n300:          0  MT_SYSIRQ  97 Level     musb-hdrc\n301:         50  MT_SYSIRQ 100 Level     mtk-msdc\n302:          2  MT_SYSIRQ 101 Level     mtk-msdc\n303:          0  MT_SYSIRQ 169 Level     Afe_ISR_Handle\n304:          0  MT_SYSIRQ 283 Level     BTCVSD_ISR_Handle\n305:          0  MT_SYSIRQ 274 Level     13040000.mali\n306:          0  MT_SYSIRQ 275 Level     13040000.mali\n307:          0  MT_SYSIRQ 276 Level     13040000.mali\n311:       1473  MT_SYSIRQ 223 Level     mutex\n318:        919  MT_SYSIRQ 230 Level     ovl0\n319:       1424  MT_SYSIRQ 231 Level     rdma0\n320:          1  MT_SYSIRQ 232 Level     wdma0\n322:          0  MT_SYSIRQ 234 Level     ccorr0\n323:          1  MT_SYSIRQ 235 Level     aal0\n326:        399  MT_SYSIRQ 238 Level     dsi0\n327:        919  MT_SYSIRQ 242 Level     ovl0_2l\n330:          0  MT_SYSIRQ 273 Level     camera-fdvt\n331:          0  MT_SYSIRQ 271 Level     dpe\n332:          0  MT_SYSIRQ 246 Level     16000000.vdec_gcon\n334:          0  MT_SYSIRQ 243 Level     17000000.venc_gcon\n335:          0  MT_SYSIRQ 245 Level     jpeg_enc_driver\n338:          0  MT_SYSIRQ 251 Level     cam2\n339:          0  MT_SYSIRQ 252 Level     cam3\n340:          0  MT_SYSIRQ 258 Level     camsv1\n341:          0  MT_SYSIRQ 259 Level     camsv2\n342:          0  MT_SYSIRQ 256 Level     camsv3\n343:          0  MT_SYSIRQ 257 Level     camsv4\n344:          0  MT_SYSIRQ 261 Level     ccu\n346:          0  MT_SYSIRQ 305 Edge      amms_irq\n347:          0  mt6358-irq  48 Level     pwrkey\n348:          0  mt6358-irq  50 Level     pwrkey_r\n349:          0  mt6358-irq  49 Level     homekey\n350:          0  mt6358-irq  51 Level     homekey_r\n351:          0  mt6358-irq 112 Level     bat_h\n352:          0  mt6358-irq 113 Level     bat_l\n353:          0  mt6358-irq 133 Level     accdet\n354:          0  mt6358-irq 134 Level     accdet_eint0\n355:          0  mt6358-irq  64 Level     mt6358-rtc\n356:          0  mt6358-irq 117 Level     bat_temp_l\n357:        158  mt6358-irq 116 Level     bat_temp_h\n358:          0  mt6358-irq  40 Level     vmch_oc\nIPI0:   1290705       Rescheduling interrupts\nIPI1:         9       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:      8751       Timer broadcast interrupts\nIPI5:         0       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/mt6768/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  3:        242         41         37         30         30         45         48         72     GICv3  30 Level     arch_timer\n  6:          0          7          2          0          0          1          0          0  MT_SYSIRQ 207 Level     mtk-clkevt\n  7:          0          0          0          0          0          0          0          0  MT_SYSIRQ 295 Level     CIRQ\n  8:          0          0          0          0          0          0          0          0  MT_SYSIRQ  22 Level     cache_parity\n  9:          0          0          0          0          0          0          0          0  MT_SYSIRQ  23 Level     cache_parity\n 10:          0          0          0          0          0          0          0          0  MT_SYSIRQ  24 Level     cache_parity\n 11:          0          0          0          0          0          0          0          0  MT_SYSIRQ  25 Level     cache_parity\n 12:          0          0          0          0          0          0          0          0  MT_SYSIRQ  26 Level     cache_parity\n 13:          0          0          0          0          0          0          0          0  MT_SYSIRQ  27 Level     cache_parity\n 14:          0          0          0          0          0          0          0          0  MT_SYSIRQ  28 Level     cache_parity\n 15:          0          0          0          0          0          0          0          0  MT_SYSIRQ  29 Level     cache_parity\n 16:          0          0          0          0          0          0          0          0  MT_SYSIRQ  19 Level     cache_parity\n 17:          0          1          0          0          0          0          0          0  MT_SYSIRQ 297 Edge      trustonic\n 18:          0          0          0          0          0          0          0          0  MT_SYSIRQ 298 Edge      tee_sanity\n 21:          0          0          0          0          0          0          0          0     GICv3  23 Level     arm-pmu\n 22:          0          0          0          0          0          0          0          0  MT_SYSIRQ  18 Level     arm_dsu_0\n 24:          3          1          1          0          0          0          1          6  MT_SYSIRQ 205 Level     SCP A IPC2HOST\n 26:          0          0          0          0          0          0          0          0   mt-eint   0 Level     mrdump_ext_rst-eint\n 27:          1          1          0          0          0          0          1          0   mt-eint   1 Edge      touchpanel\n 32:          0          0          0          0          0          0          0          0   mt-eint   6 Level     pn544\n 33:          0          0          0          0          0          0          0          0   mt-eint   7 Edge      primary_chg-irq\n 83:          0          0          0          0          0          0          0          0   mt-eint  57 Level     swtp0-eint\n120:          0          0          0          0          0          0          0          0   mt-eint  94 Edge      mtk-kpd-vol-down\n170:          0          0          0          0          0          0          0          0   mt-eint 144 Level     mt6358-irq\n173:          0          0          0          0          0          0          0          0   mt-eint 147 Level     USB_IDDIG\n238:          0          0          0          0          0          0          0          0  MT_SYSIRQ 195 Level     SPM\n239:          0          0          0          0          0          0          0          0  MT_SYSIRQ 156 Level     mt_wdt\n242:          0          0          0          0          0          0          0          0  MT_SYSIRQ 194 Level     mt-pmic-pwrap\n243:          0          0          0          0          0          0          0          0  MT_SYSIRQ  73 Edge      mtk-kpd\n244:          0          0          0          0          0          0          0          0  MT_SYSIRQ 174 Level     m4u\n245:          0          0          0          0          0          0          0          0  MT_SYSIRQ 159 Level     devapc\n247:          0          0          0          0          0          0          0          0  MT_SYSIRQ 164 Level     CCIF_AP_DATA\n251:          0          0          0          0          0          0          0          0  MT_SYSIRQ 134 Level     CQDMA\n252:          0          0          0          0          0          0          0          0  MT_SYSIRQ 135 Level     CQDMA\n253:          0          0          0          0          0          0          0          0  MT_SYSIRQ 136 Level     CQDMA\n254:          0          0          0          0          0          0          0          0  MT_SYSIRQ 161 Level     mpu\n258:          0          0          0          1          0          0          0          1  MT_SYSIRQ 170 Level     mtk_cmdq\n263:          0          2          3          1          1          1          3         26  MT_SYSIRQ 218 Level     SSPM_MBOX\n264:         20         58         43         38         27         25         34         30  MT_SYSIRQ 219 Level     SSPM_MBOX\n265:          3          4          0          0          0          0          2          6  MT_SYSIRQ 220 Level     SSPM_MBOX\n266:          0          0          0          0          0          0          0          0  MT_SYSIRQ 221 Level     SSPM_MBOX\n276:          0          0          0          0          0          0          0          0  MT_SYSIRQ  98 Level     mt-pwm\n277:          0          0          0          0          0          0          0          0  MT_SYSIRQ 105 Level     mt-i2c\n278:          0          0          0          0          0          0          0          0  MT_SYSIRQ 106 Level     mt-i2c\n279:          0          0          0          0          0          0          0          0  MT_SYSIRQ 107 Level     mt-i2c\n280:          0          0          0          0          1          0          0          0  MT_SYSIRQ 108 Level     mt-i2c\n281:          0          0          0          0          0          0          0          0  MT_SYSIRQ 109 Level     mt-i2c\n282:          1          1          1          0          0          1          1          1  MT_SYSIRQ 147 Level     mt-i2c\n283:          0          0          0          1          0          0          0          0  MT_SYSIRQ 148 Level     mt-i2c\n284:         33         16         11         10          8          7         10         21  MT_SYSIRQ 110 Level     mt-i2c\n285:          0          0          0          0          0          0          0          0  MT_SYSIRQ 111 Level     mt-i2c\n286:          0          0          0          0          0          0          0          0  MT_SYSIRQ 138 Level     1100a000.spi0\n287:          3          1          0          0          0          0          1          2  MT_SYSIRQ 142 Level     eem\n288:          0          0          0          0          0          0          0          0  MT_SYSIRQ  99 Level     mtk-thermal\n295:          0          0          0          0          0          0          0          0  MT_SYSIRQ 139 Level     11010000.spi1\n296:        133         47         33         20         16         14          8          3  MT_SYSIRQ 145 Level     11012000.spi2\n297:          0          0          0          0          0          0          0          0  MT_SYSIRQ 146 Level     11013000.spi3\n298:          0          0          0          0          0          0          0          0  MT_SYSIRQ 116 Level     11014000.spi4\n299:          0          0          0          0          0          0          0          0  MT_SYSIRQ 117 Level     11015000.spi5\n300:          0          0          0          0          0          0          0          0  MT_SYSIRQ  97 Level     musb-hdrc\n301:         50         30          5          1          2          0          4         71  MT_SYSIRQ 100 Level     mtk-msdc\n302:          0          0          0          0          0          0          0          0  MT_SYSIRQ 101 Level     mtk-msdc\n303:          0          0          0          0          0          0          0          0  MT_SYSIRQ 169 Level     Afe_ISR_Handle\n304:          0          0          0          0          0          0          0          0  MT_SYSIRQ 283 Level     BTCVSD_ISR_Handle\n305:          0          0          1          0          0          0          0          0  MT_SYSIRQ 274 Level     13040000.mali\n306:          0          0          0          0          0          0          0          0  MT_SYSIRQ 275 Level     13040000.mali\n307:          0          0          0          0          0          0          0          0  MT_SYSIRQ 276 Level     13040000.mali\n311:         23         13          9          2          1          1          7         14  MT_SYSIRQ 223 Level     mutex\n318:          5          6         11         12          2          0          1          1  MT_SYSIRQ 230 Level     ovl0\n319:         13         13          8          6          6          8          8         11  MT_SYSIRQ 231 Level     rdma0\n320:          0          0          0          0          0          0          0          0  MT_SYSIRQ 232 Level     wdma0\n322:          0          0          0          0          0          0          0          0  MT_SYSIRQ 234 Level     ccorr0\n323:          0          1          0          0          0          0          0          0  MT_SYSIRQ 235 Level     aal0\n326:          0          0          0          0          0          0          0          0  MT_SYSIRQ 238 Level     dsi0\n327:          7          7          6          6          7          2          1          2  MT_SYSIRQ 242 Level     ovl0_2l\n330:          0          0          0          0          0          0          0          0  MT_SYSIRQ 273 Level     camera-fdvt\n331:          0          0          0          0          0          0          0          0  MT_SYSIRQ 271 Level     dpe\n332:          0          0          0          0          0          0          0          0  MT_SYSIRQ 246 Level     16000000.vdec_gcon\n334:          0          0          0          0          0          0          0          0  MT_SYSIRQ 243 Level     17000000.venc_gcon\n335:          0          0          0          0          0          0          0          0  MT_SYSIRQ 245 Level     jpeg_enc_driver\n338:          0          0          0          0          0          0          0          0  MT_SYSIRQ 251 Level     cam2\n339:          0          0          0          0          0          0          0          0  MT_SYSIRQ 252 Level     cam3\n340:          0          0          0          0          0          0          0          0  MT_SYSIRQ 258 Level     camsv1\n341:          0          0          0          0          0          0          0          0  MT_SYSIRQ 259 Level     camsv2\n342:          0          0          0          0          0          0          0          0  MT_SYSIRQ 256 Level     camsv3\n343:          0          0          0          0          0          0          0          0  MT_SYSIRQ 257 Level     camsv4\n344:          0          0          0          0          0          0          0          0  MT_SYSIRQ 261 Level     ccu\n346:          0          0          0          0          0          0          0          0  MT_SYSIRQ 305 Edge      amms_irq\n347:          0          0          0          0          0          0          0          0  mt6358-irq  48 Level     pwrkey\n348:          0          0          0          0          0          0          0          0  mt6358-irq  50 Level     pwrkey_r\n349:          0          0          0          0          0          0          0          0  mt6358-irq  49 Level     homekey\n350:          0          0          0          0          0          0          0          0  mt6358-irq  51 Level     homekey_r\n351:          0          0          0          0          0          0          0          0  mt6358-irq 112 Level     bat_h\n352:          0          0          0          0          0          0          0          0  mt6358-irq 113 Level     bat_l\n353:          0          0          0          0          0          0          0          0  mt6358-irq 133 Level     accdet\n354:          0          0          0          0          0          0          0          0  mt6358-irq 134 Level     accdet_eint0\n355:          0          0          0          0          0          0          0          0  mt6358-irq  64 Level     mt6358-rtc\nIPI0:       772        232         38         20         23         20        502        698       Rescheduling interrupts\nIPI1:         0          9          5          4          4          4         38          8       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          1          1          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         0         41         12          2          3          2          8         56       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/mt6768/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    4 root      0:00 [kworker/0:0H]\n    6 root      0:00 [mm_percpu_wq]\n    7 root      0:00 [ksoftirqd/0]\n    8 root      0:00 [rcu_preempt]\n    9 root      0:00 [rcu_sched]\n   10 root      0:00 [rcu_bh]\n   11 root      0:00 [rcuop/0]\n   12 root      0:00 [rcuos/0]\n   13 root      0:00 [rcuob/0]\n   14 root      0:00 [migration/0]\n   15 root      0:00 [cpuhp/0]\n   16 root      0:00 [cpuhp/1]\n   17 root      0:00 [migration/1]\n   18 root      0:00 [ksoftirqd/1]\n   19 root      0:00 [kworker/1:0]\n   20 root      0:00 [kworker/1:0H]\n   21 root      0:00 [rcuop/1]\n   22 root      0:00 [rcuos/1]\n   23 root      0:00 [rcuob/1]\n   24 root      0:00 [cpuhp/2]\n   25 root      0:00 [migration/2]\n   26 root      0:00 [ksoftirqd/2]\n   28 root      0:00 [kworker/2:0H]\n   29 root      0:00 [rcuop/2]\n   30 root      0:00 [rcuos/2]\n   31 root      0:00 [rcuob/2]\n   32 root      0:00 [cpuhp/3]\n   33 root      0:00 [migration/3]\n   34 root      0:00 [ksoftirqd/3]\n   36 root      0:00 [kworker/3:0H]\n   37 root      0:00 [rcuop/3]\n   38 root      0:00 [rcuos/3]\n   39 root      0:00 [rcuob/3]\n   40 root      0:00 [cpuhp/4]\n   41 root      0:00 [migration/4]\n   42 root      0:00 [ksoftirqd/4]\n   44 root      0:00 [kworker/4:0H]\n   45 root      0:00 [rcuop/4]\n   46 root      0:00 [rcuos/4]\n   47 root      0:00 [rcuob/4]\n   48 root      0:00 [cpuhp/5]\n   49 root      0:00 [migration/5]\n   50 root      0:00 [ksoftirqd/5]\n   51 root      0:00 [kworker/5:0]\n   52 root      0:00 [kworker/5:0H]\n   53 root      0:00 [rcuop/5]\n   54 root      0:00 [rcuos/5]\n   55 root      0:00 [rcuob/5]\n   56 root      0:00 [cpuhp/6]\n   57 root      0:00 [migration/6]\n   58 root      0:00 [ksoftirqd/6]\n   60 root      0:00 [kworker/6:0H]\n   61 root      0:00 [rcuop/6]\n   62 root      0:00 [rcuos/6]\n   63 root      0:00 [rcuob/6]\n   64 root      0:00 [cpuhp/7]\n   65 root      0:00 [migration/7]\n   66 root      0:00 [ksoftirqd/7]\n   67 root      0:00 [kworker/7:0]\n   68 root      0:00 [kworker/7:0H]\n   69 root      0:00 [rcuop/7]\n   70 root      0:00 [rcuos/7]\n   71 root      0:00 [rcuob/7]\n   72 root      0:00 [netns]\n   73 root      0:00 [fb_flush]\n   75 root      0:00 [keylog]\n   76 root      0:00 [SSPM_WQ]\n   77 root      0:00 [amms_task]\n   79 root      0:00 [kworker/u17:0]\n   80 root      0:00 [cmdq_buf_dump]\n   81 root      0:00 [cmdq_timeout_ha]\n   82 root      0:00 [cmdq_timeout_wq]\n   83 root      0:00 [khungtaskd]\n   84 root      0:00 [oom_reaper]\n   85 root      0:00 [writeback]\n   86 root      0:00 [kcompactd0]\n   87 root      0:00 [crypto]\n   88 root      0:00 [kblockd]\n   89 root      0:00 [blk_crypto_wq]\n   90 root      0:00 [conn-md-thread]\n   91 root      0:00 [pool_reload_wor]\n   92 root      0:00 [cmdq_flushq]\n   93 root      0:00 [cmdq_flushq]\n   94 root      0:00 [cmdq_flushq]\n   95 root      0:00 [cmdq_flushq]\n   96 root      0:00 [cmdq_flushq]\n   97 root      0:00 [cmdq_flushq]\n   98 root      0:00 [task_exec_wq]\n   99 root      0:00 [cmdq_flushq]\n  100 root      0:00 [task_exec_wq]\n  101 root      0:00 [cmdq_flushq]\n  102 root      0:00 [task_exec_wq]\n  103 root      0:00 [cmdq_flushq]\n  104 root      0:00 [cmdq_flushq]\n  105 root      0:00 [cmdq_flushq]\n  106 root      0:00 [cmdq_flushq]\n  107 root      0:00 [cmdq_flushq]\n  108 root      0:00 [cmdq_flushq]\n  109 root      0:00 [cmdq_auto_relea]\n  110 root      0:00 [cmdq_auto_relea]\n  111 root      0:00 [cmdq_auto_relea]\n  112 root      0:00 [cmdq_auto_relea]\n  113 root      0:00 [cmdq_auto_relea]\n  114 root      0:00 [cmdq_auto_relea]\n  115 root      0:00 [cmdq_auto_relea]\n  116 root      0:00 [cmdq_auto_relea]\n  117 root      0:00 [cmdq_auto_relea]\n  118 root      0:00 [cmdq_auto_relea]\n  119 root      0:00 [cmdq_auto_relea]\n  120 root      0:00 [cmdq_auto_relea]\n  121 root      0:00 [cmdq_auto_relea]\n  122 root      0:00 [cmdq_auto_relea]\n  123 root      0:00 [cmdq_auto_relea]\n  124 root      0:00 [cmdq_auto_relea]\n  125 root      0:00 [cmdq_resource]\n  126 root      0:00 [cmdq_mdp_task]\n  127 root      0:00 [pd_dbg_info]\n  128 root      0:00 [chgdet_thread]\n  129 root      0:00 [tcpc_power_off]\n  130 root      0:00 [charger_in]\n  131 root      0:00 [devfreq_wq]\n  132 root      0:00 [cfg80211]\n  134 root      0:00 [kworker/7:1]\n  135 root      0:00 [irq/170-mt6358-]\n  136 root      0:00 [lbat_service]\n  137 root      0:00 [ion_system_heap]\n  139 root      0:00 [ion_mm_heap]\n  141 root      0:00 [ion_mm_heap_for]\n  142 root      0:00 [ion_comm_pool]\n  143 root      0:00 [ion_mm_heap_for]\n  144 root      0:00 [ion_comm_pool]\n  145 root      0:00 [ion_mm_heap_for]\n  146 root      0:00 [ion_carveout_he]\n  147 root      0:00 [ion_history]\n  148 root      0:00 [mdrt_thread]\n  155 root      0:00 [kworker/6:1]\n  170 root      0:00 [panic_flush]\n  171 root      0:00 [kauditd]\n  172 root      0:00 [kswapd0]\n  209 root      0:00 [acm_fwk_loop]\n  210 root      0:00 [acm_logging_loo]\n  211 root      0:00 [hwrng]\n  212 root      0:00 [btif_rxd]\n  213 root      0:00 [tee_log]\n  214 root      0:00 [tee_irq_bh]\n  215 root      0:00 [tee_worker/0]\n  216 root      0:00 [tmem_regmgr_def]\n  217 root      0:00 [tmem_regmgr_def]\n  218 root      0:00 [tmem_regmgr_def]\n  220 root      0:00 [ree_dummy_task]\n  221 root      0:00 [accdet]\n  222 root      0:00 [dismicQueue]\n  223 root      0:00 [accdet_eint]\n  224 root      0:00 [ged_notify_sw_v]\n  225 root      0:00 [ged_kpi]\n  226 root      0:00 [kworker/u17:1]\n  227 root      0:00 [mali_aeewp]\n  228 root      0:00 [ipi_master]\n  229 root      0:00 [chre_kthread]\n  230 root      0:00 [scp_power_reset]\n  231 root      0:00 [SCP_WQ]\n  232 root      0:00 [SCP_LOG_WQ]\n  233 root      0:00 [SCP_RESET_WQ]\n  234 root      0:00 [ccci_fsm1]\n  235 root      0:00 [ccci_poll1]\n  236 root      0:00 [ccmni0_rx_q_wor]\n  237 root      0:00 [ccmni1_rx_q_wor]\n  238 root      0:00 [ccmni2_rx_q_wor]\n  239 root      0:00 [ccmni3_rx_q_wor]\n  240 root      0:00 [ccmni4_rx_q_wor]\n  241 root      0:00 [ccmni5_rx_q_wor]\n  242 root      0:00 [ccmni6_rx_q_wor]\n  243 root      0:00 [ccmni7_rx_q_wor]\n  244 root      0:00 [ccmni8_rx_q_wor]\n  245 root      0:00 [ccmni9_rx_q_wor]\n  246 root      0:00 [ccmni10_rx_q_wo]\n  247 root      0:00 [ccmni11_rx_q_wo]\n  248 root      0:00 [ccmni12_rx_q_wo]\n  249 root      0:00 [ccmni13_rx_q_wo]\n  250 root      0:00 [ccmni14_rx_q_wo]\n  251 root      0:00 [ccmni15_rx_q_wo]\n  252 root      0:00 [ccmni16_rx_q_wo]\n  253 root      0:00 [ccmni17_rx_q_wo]\n  254 root      0:00 [ccmni18_rx_q_wo]\n  255 root      0:00 [ccmni19_rx_q_wo]\n  256 root      0:00 [ccmni20_rx_q_wo]\n  257 root      0:00 [ccmni21_rx_q_wo]\n  258 root      0:02 [kworker/1:1]\n  259 root      0:00 [kworker/2:1]\n  260 root      0:00 [kworker/3:1]\n  261 root      0:00 [kworker/4:1]\n  262 root      0:00 [kworker/5:1]\n  263 root      0:00 [ccci_rpc_k]\n  264 root      0:00 [ccci_udc]\n  265 root      0:00 [ccci_ipc_3]\n  266 root      0:00 [ccci_ipc_6]\n  267 root      0:00 [ccci_ipc_7]\n  268 root      0:00 [ccci_ipc_8]\n  269 root      0:00 [ccci_sys]\n  270 root      0:00 [ccci_ctrl]\n  271 root      0:00 [md1_cldma_worke]\n  272 root      0:00 [mtk_vibrator]\n  273 root      0:00 [usb20_st_wq]\n  274 root      0:00 [ddp_irq_log_kth]\n  277 root      0:00 [disp_idlemgr]\n  278 root      0:00 [disp_check]\n  279 root      0:00 [decouple_update]\n  280 root      0:00 [decouple_trigge]\n  281 root      0:00 [display_check_a]\n  282 root      0:00 [disp_delay_trig]\n  283 root      0:00 [disp_od_trigger]\n  284 root      0:00 [present_fence_w]\n  285 root      0:00 [ion_fb_heap]\n  286 root      0:00 [disp_switch_mod]\n  287 root      0:00 [ccu-enque]\n  288 root      0:00 [cpu_freq_wq]\n  289 root      0:00 [cpu_core_wq]\n  290 root      0:00 [dram_vcore_wq]\n  291 root      0:00 [bcct_chrlmt_wor]\n  292 root      0:00 [bcct_2nd_chrlmt]\n  293 root      0:00 [krtatm]\n  294 root      0:00 [mt_usrtch__work]\n  295 root      0:00 [fpsgo_notifier_]\n  296 root      0:00 [mt_fstb]\n  297 root      0:00 [eara_thrm]\n  298 root      0:00 [mem_thrash_dete]\n  299 root      0:00 [spi0]\n  300 root      0:00 [spi1]\n  301 root      0:38 [spi2]\n  302 root      0:00 [spi3]\n  303 root      0:00 [spi4]\n  304 root      0:00 [spi5]\n  305 root      0:00 [uether]\n  306 root      0:00 [uether_rx1]\n  307 root      2:04 [irq/27-touchpan]\n  308 root      0:00 [speedup_resume_]\n  309 root      0:00 [lcd_trigger_loa]\n  310 root      0:00 [esd_workthread]\n  311 root      0:00 [nav_thread]\n  312 root      0:00 [SecTimerCbWq]\n  313 root      0:00 [cmdq_flushq]\n  314 root      0:00 [cmdq_flushq]\n  315 root      0:00 [mtk-vcodec-dec]\n  316 root      0:00 [mtk-vcodec-enc]\n  317 root      0:00 [gauge_coulomb_t]\n  318 root      0:00 [battery_thread]\n  319 root      0:00 [power_misc_thre]\n  320 root      0:00 [gauge_timer_thr]\n  321 root      0:00 [rt9471.7-0053]\n  322 root      0:00 [irq/33-primary_]\n  323 root      0:00 [dm_bufio_cache]\n  324 root      0:00 [nanohub]\n  326 root      0:00 [kworker/u16:4]\n  329 root      0:00 [ipv6_addrconf]\n  330 root      0:00 [workqueue_sla]\n  331 root      0:01 [rpmb_open]\n  333 root      0:00 [ipi_cpu_dvfs_rt]\n  336 root      0:00 [EEM_CTRL_L]\n  337 root      0:00 [EEM_CTRL_B]\n  338 root      0:00 [EEM_CTRL_CCI]\n  339 root      0:00 [EEM_CTRL_GPU]\n  340 root      0:00 [Init_1_Stress]\n  341 root      0:00 [cpuhp-ppm]\n  342 root      0:00 [sys_timer_wq]\n  343 root      0:00 [ksched_hint]\n  344 root      0:00 [accel_polling]\n  345 root      0:00 [gyro_polling]\n  346 root      0:00 [mag_polling]\n  347 root      0:00 [shortc_thread]\n  348 root      0:00 [oplus_chg_debug]\n  349 root      0:00 [mmc-cmdqd/0]\n  350 root      0:00 [tbatt_pwroff]\n  351 root      0:00 [mmcqd/0boot0]\n  352 root      0:00 [mmcqd/0boot1]\n  353 root      0:00 [mmcqd/0rpmb]\n  355 root      0:00 [mt-wdk]\n  356 root      0:00 [wdtk-0]\n  357 root      0:00 [wdtk-1]\n  358 root      0:00 [wdtk-2]\n  359 root      0:00 [wdtk-3]\n  360 root      0:00 [wdtk-4]\n  361 root      0:00 [wdtk-5]\n  362 root      0:00 [wdtk-6]\n  363 root      0:00 [wdtk-7]\n  364 root      0:00 [qos_recv]\n  375 root      0:00 [kworker/1:1H]\n  376 root      0:00 [kworker/2:2]\n  377 root      0:00 [kworker/2:1H]\n  378 root      0:00 [kworker/3:2]\n  379 root      0:00 [kworker/3:1H]\n  380 root      0:00 [kworker/4:2]\n  381 root      0:00 [kworker/4:1H]\n  382 root      0:00 [kworker/5:1H]\n  383 root      0:00 [kworker/6:2]\n  384 root      0:00 [kworker/6:1H]\n  385 root      0:00 [kworker/7:1H]\n  386 root      0:00 [irq/44-11240000]\n  387 root      0:00 [mmcqd/1]\n  388 root      0:00 [kworker/0:1H]\n  396 root      0:01 [kworker/0:0]\n  403 root      0:00 [kworker/u16:1]\n  414 root      0:00 [kworker/u16:0]\n  428 root      0:00 [kworker/u16:2]\n  445 root      0:00 [kworker/u16:3]\n  456 root      0:02 [kworker/0:1]\n  460 root      0:00 [kworker/u16:5]\n  479 root      0:01 [kworker/0:2]\n  480 root      0:00 [kworker/u16:6]\n  484 root      0:00 [kworker/u16:7]\n  497 root      0:00 [kworker/0:3]\n  544 root      0:00 ps -A\n"
  },
  {
    "path": "results/mt6768/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,500000,1856.182945,3.71236589,0.0068951055900621115,0.0011144847423725465,269182.6891782758,161.634180625\r\n1,774000,2873.810961,3.712934058139535,0.007381682692307692,0.0007706519204307091,389280.80505182315,104.400575391\r\n1,850000,3123.861092,3.6751306964705885,0.006049442105263157,0.0005810185818722507,516334.6050539248,96.044985928\r\n1,900000,3174.670363,3.5274115144444447,0.007140287234042552,0.0006748141275432672,444566.8633112084,94.507980621\r\n1,950000,3357.507387,3.534218302105263,0.007097786516853932,0.0006342590423599541,472992.86248053884,89.360118236\r\n1,999000,3537.652414,3.5411936076076076,0.004961071428571428,0.0004207521680772289,713008.8036645248,84.810745851\r\n1,1050000,3723.146804,3.545854099047619,0.006031762499999999,0.00048606362727862554,617203.1461799371,80.584012928\r\n1,1100000,3915.018009,3.5591072809090907,0.005309973684210526,0.00040693221054876217,737223.5282024975,76.635447697\r\n1,1175000,4189.768585,3.5657604978723403,0.006981239436619718,0.0004999288196185067,600085.4286194753,71.610324235\r\n1,1275000,4560.448748,3.57682254745098,0.0075578153846153845,0.0004972202832631451,603354.3081371648,65.788889773\r\n1,1325000,4747.286135,3.5828574603773586,0.008981523809523809,0.0005676494470688965,528495.1858036225,63.201908619\r\n1,1375000,4936.646372,3.5902882705454546,0.00606755,0.00036876404560015125,813528.3349323276,60.776432926\r\n1,1450000,5214.036185,3.595887024137931,0.005617157894736842,0.00032323360817712604,928121.310441226,57.543977619\r\n1,1500000,5398.304932,3.5988699546666667,0.005661927272727273,0.00031468528420447846,953333.4256744712,55.579181619\r\n1,1625000,5862.351976,3.607601216,0.007138,0.000365324822736536,821187.0131155944,51.180277772\r\n1,1700000,6220.839813,3.6593175370588233,0.007766875,0.00037459632331687944,800862.1049551073,48.229992541\r\n6,850000,5141.652527,6.049002972941176,0.007562068965517242,0.0004413287202642517,679765.4134550111,58.360843081\r\n6,909000,5506.304719,6.057540944994499,0.007797333333333334,0.0004249193027814187,706016.4083774795,54.495464618\r\n6,998000,6034.396058,6.046489036072145,0.006981795918367347,0.0003471918409034846,864075.6050583476,49.728156618\r\n6,1087000,6596.306069,6.068358849126035,0.007504933333333334,0.0003414254150152898,878669.2109214112,45.493464079\r\n6,1176000,7127.245082,6.060582552721089,0.006953414634146342,0.00029278084192472414,1024657.2078549181,42.106052541\r\n6,1295000,7851.347815,6.062816845559846,0.005193947368421053,0.00019852268036749107,1511162.3490306565,38.221927618\r\n6,1354000,8204.342832,6.0593373943870015,0.005360666666666667,0.00019608832909320603,1529922.7719840582,36.579093849\r\n6,1443000,8748.14102,6.062467789327789,0.005031000000000001,0.00017259068258090103,1738216.661026162,34.305442771\r\n6,1532000,9290.802106,6.064492236292428,0.0079495,0.0002567973673128955,1168236.2757031857,32.303587309\r\n6,1621000,9820.610187,6.058365322023443,0.0068713,0.00020998781599184164,1428654.3177898258,30.560129232\r\n6,1710000,10428.616123,6.098605919883041,0.0075183571428571435,0.00021638209684662714,1386436.3289382563,28.78050254\r\n6,1800000,10964.110811,6.091172672777778,0.007309481481481482,0.00020009274353162103,1499304.7459144385,27.374410078\r\n6,1850000,11284.558962,6.099761601081081,0.0069157307692307695,0.00018393528886192898,1631008.393529069,26.596652617\r\n6,1900000,11601.825354,6.106223870526316,0.00631516,0.0001633659044292791,1836368.4946871498,25.868846463\r\n6,1950000,11906.651849,6.105975307179487,0.00789432,0.00019899396241662338,1507583.427942932,25.207232848\r\n6,2000000,12206.534565,6.1032672825,0.0054825,0.00013480682238235504,2225406.6574546546,24.588567694\r\n"
  },
  {
    "path": "results/mt6768/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 2205.7003462314606, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1.209436, 1.184828, 1.1804070000000002, 1.1804070000000002, 1.1361970000000001, 1.145039, 1.14946, 1.145039, 1.1317760000000001, 1.145039, 1.118513, 1.145039, 1.1361970000000001, 0.013265999999999998, 0.0, 0.017688, 0.008782, 0.0, 0.004391, 0.0, 0.008782, 0.013173, 0.00439, 0.0, 0.00439, 0.00439, 0.013169999999999998, 0.013169999999999998, 0.0], \"power_mean\": 0.5211368620689655, \"energy_millijoules\": 2.6056843103448273, \"energy_joules\": 0.002605684310344827}, \"cpus\": {\"1\": {\"freqs\": {\"500000\": {\"active\": {\"elapsed_sec\": 161.634180625, \"elapsed_ns\": 161634180625, \"power_samples\": [0.0043890000000000005, 0.013167000000000002, 0.0, 0.0043890000000000005, 0.008778000000000001, 0.017556000000000002, 0.021945, 0.0, 0.013167000000000002, 0.0, 0.0, 0.008778000000000001, 0.008778000000000001, 0.017556000000000002, 0.008778000000000001, 0.0, 0.0043890000000000005, 0.017556000000000002, 0.017556000000000002, 0.008778000000000001, 0.0, 0.0043890000000000005, 0.008778000000000001, 0.017556000000000002, 0.0043879999999999995, 0.0, 0.008775999999999999, 0.013164, 0.0, 0.0043879999999999995, 0.013167000000000002, 0.0043890000000000005, 0.0, 0.0, 0.008778000000000001, 0.0043879999999999995, 0.0, 0.0043879999999999995, 0.0, 0.008775999999999999, 0.0, 0.008775999999999999, 0.008775999999999999, 0.008775999999999999, 0.0, 0.008775999999999999, 0.0, 0.0, 0.0, 0.008775999999999999, 0.008775999999999999, 0.013164, 0.0043879999999999995, 0.013164, 0.008775999999999999, 0.0043879999999999995, 0.0, 0.0, 0.008775999999999999, 0.0043879999999999995, 0.013164, 0.0, 0.0043879999999999995, 0.0, 0.013164, 0.0043879999999999995, 0.013164, 0.0043879999999999995, 0.0, 0.0, 0.0, 0.013164, 0.0043879999999999995, 0.008775999999999999, 0.008775999999999999, 0.008775999999999999, 0.0, 0.008775999999999999, 0.0, 0.0043879999999999995, 0.013164, 0.013164, 0.017551999999999998, 0.008775999999999999, 0.0, 0.026328, 0.0043879999999999995, 0.0, 0.013164, 0.026328, 0.0, 0.0, 0.0, 0.0, 0.0043879999999999995, 0.008775999999999999, 0.0, 0.0043879999999999995, 0.0, 0.008775999999999999, 0.013160999999999997, 0.013160999999999997, 0.013160999999999997, 0.008773999999999999, 0.026321999999999995, 0.017547999999999998, 0.008773999999999999, 0.0, 0.013160999999999997, 0.008773999999999999, 0.008773999999999999, 0.0, 0.008773999999999999, 0.004386999999999999, 0.0, 0.0, 0.013160999999999997, 0.008773999999999999, 0.0, 0.0, 0.0, 0.0, 0.013160999999999997, 0.0, 0.0, 0.013160999999999997, 0.013160999999999997, 0.0, 0.0, 0.013160999999999997, 0.008773999999999999, 0.013160999999999997, 0.004386999999999999, 0.013160999999999997, 0.004386999999999999, 0.0, 0.0, 0.013160999999999997, 0.0, 0.013160999999999997, 0.004386999999999999, 0.004386999999999999, 0.017547999999999998, 0.0, 0.021935, 0.013160999999999997, 0.004386999999999999, 0.004386999999999999, 0.004386999999999999, 0.021935, 0.004386999999999999, 0.008773999999999999, 0.008773999999999999, 0.013160999999999997, 0.004386999999999999, 0.0, 0.0, 0.017547999999999998, 0.0, 0.004386999999999999, 0.013160999999999997], \"power_mean\": 0.0068951055900621115, \"energy_millijoules\": 1.1144847423725466, \"energy_joules\": 0.0011144847423725465, \"coremark_score\": 1856.182945, \"coremarks_per_mhz\": 3.71236589, \"ulpmark_cm_score\": 269182.6891782758}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0043890000000000005, 0.013167000000000002, 0.0, 0.0], \"power_mean\": 0.0043890000000000005, \"energy_millijoules\": 0.021945000000000003, \"energy_joules\": 2.1945000000000004e-05}}, \"774000\": {\"active\": {\"elapsed_sec\": 104.400575391, \"elapsed_ns\": 104400575391, \"power_samples\": [0.013160999999999997, 0.004386999999999999, 0.0, 0.0, 0.013160999999999997, 0.0, 0.013160999999999997, 0.013160999999999997, 0.013160999999999997, 0.013160999999999997, 0.008773999999999999, 0.008773999999999999, 0.008773999999999999, 0.0, 0.021935, 0.004386999999999999, 0.0, 0.0, 0.004386999999999999, 0.008773999999999999, 0.013160999999999997, 0.013160999999999997, 0.0, 0.0, 0.021935, 0.004386999999999999, 0.004386999999999999, 0.013160999999999997, 0.008773999999999999, 0.008773999999999999, 0.0, 0.013160999999999997, 0.0, 0.0, 0.0, 0.0, 0.008773999999999999, 0.004386999999999999, 0.004386999999999999, 0.017547999999999998, 0.0, 0.004386999999999999, 0.004386999999999999, 0.0, 0.0, 0.013160999999999997, 0.0, 0.013160999999999997, 0.004386999999999999, 0.0, 0.013158000000000001, 0.013158000000000001, 0.008772, 0.013158000000000001, 0.013158000000000001, 0.0, 0.021929999999999998, 0.004386, 0.013158000000000001, 0.008772, 0.013160999999999997, 0.0, 0.013160999999999997, 0.004386999999999999, 0.008773999999999999, 0.021935, 0.0, 0.004386999999999999, 0.013160999999999997, 0.013160999999999997, 0.013160999999999997, 0.013160999999999997, 0.0, 0.0, 0.013160999999999997, 0.004386999999999999, 0.0, 0.0, 0.008773999999999999, 0.004386999999999999, 0.0, 0.004386, 0.013158000000000001, 0.0, 0.004386, 0.004386999999999999, 0.0, 0.013160999999999997, 0.004386999999999999, 0.017547999999999998, 0.0, 0.026321999999999995, 0.008773999999999999, 0.017547999999999998, 0.004386999999999999, 0.0, 0.008773999999999999, 0.013160999999999997, 0.0, 0.004386999999999999, 0.013160999999999997, 0.013160999999999997, 0.008773999999999999, 0.004386999999999999], \"power_mean\": 0.007381682692307692, \"energy_millijoules\": 0.7706519204307091, \"energy_joules\": 0.0007706519204307091, \"coremark_score\": 2873.810961, \"coremarks_per_mhz\": 3.712934058139535, \"ulpmark_cm_score\": 389280.80505182315}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.013160999999999997, 0.0, 0.013160999999999997, 0.004386999999999999], \"power_mean\": 0.007677249999999998, \"energy_millijoules\": 0.03838624999999999, \"energy_joules\": 3.838624999999999e-05}}, \"850000\": {\"active\": {\"elapsed_sec\": 96.044985928, \"elapsed_ns\": 96044985928, \"power_samples\": [0.004386999999999999, 0.0, 0.0, 0.0, 0.013160999999999997, 0.004386999999999999, 0.0, 0.0, 0.004386999999999999, 0.008773999999999999, 0.004386999999999999, 0.0, 0.004386999999999999, 0.013160999999999997, 0.013160999999999997, 0.0, 0.004386999999999999, 0.0, 0.008773999999999999, 0.0, 0.0, 0.0, 0.0, 0.017547999999999998, 0.0, 0.004386999999999999, 0.004386999999999999, 0.004386999999999999, 0.004386999999999999, 0.013160999999999997, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.004386999999999999, 0.013160999999999997, 0.0, 0.013160999999999997, 0.004386999999999999, 0.008773999999999999, 0.013160999999999997, 0.0, 0.0, 0.0, 0.013160999999999997, 0.004386999999999999, 0.013160999999999997, 0.0, 0.013160999999999997, 0.004386999999999999, 0.021935, 0.008773999999999999, 0.004386999999999999, 0.0, 0.026321999999999995, 0.0, 0.0, 0.008773999999999999, 0.0, 0.004386999999999999, 0.013160999999999997, 0.008773999999999999, 0.0, 0.004386999999999999, 0.013160999999999997, 0.026321999999999995, 0.013160999999999997, 0.0, 0.017547999999999998, 0.021935, 0.0, 0.0, 0.004386999999999999, 0.013160999999999997, 0.013160999999999997, 0.004386999999999999, 0.017547999999999998, 0.0, 0.004386999999999999, 0.021935, 0.004386999999999999, 0.013160999999999997, 0.013160999999999997, 0.0, 0.008773999999999999, 0.0, 0.013160999999999997, 0.0, 0.008773999999999999, 0.004386999999999999, 0.0], \"power_mean\": 0.006049442105263157, \"energy_millijoules\": 0.5810185818722506, \"energy_joules\": 0.0005810185818722507, \"coremark_score\": 3123.861092, \"coremarks_per_mhz\": 3.6751306964705885, \"ulpmark_cm_score\": 516334.6050539248}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0, 0.004386999999999999, 0.004386999999999999, 0.0], \"power_mean\": 0.0021934999999999997, \"energy_millijoules\": 0.010967499999999998, \"energy_joules\": 1.0967499999999998e-05}}, \"900000\": {\"active\": {\"elapsed_sec\": 94.507980621, \"elapsed_ns\": 94507980621, \"power_samples\": [0.008773999999999999, 0.0, 0.013160999999999997, 0.008773999999999999, 0.004386999999999999, 0.013160999999999997, 0.008773999999999999, 0.013160999999999997, 0.008773999999999999, 0.0, 0.004386999999999999, 0.026321999999999995, 0.004386999999999999, 0.026321999999999995, 0.0, 0.008773999999999999, 0.0, 0.004386999999999999, 0.0, 0.004386999999999999, 0.0, 0.0, 0.013160999999999997, 0.013160999999999997, 0.008773999999999999, 0.0, 0.008773999999999999, 0.013160999999999997, 0.013160999999999997, 0.004386999999999999, 0.0, 0.013160999999999997, 0.0, 0.004386999999999999, 0.013160999999999997, 0.008773999999999999, 0.0, 0.004386, 0.0, 0.0, 0.021929999999999998, 0.013160999999999997, 0.026321999999999995, 0.0, 0.0, 0.004386999999999999, 0.0, 0.004386, 0.013158000000000001, 0.0, 0.0, 0.0, 0.004386999999999999, 0.004386999999999999, 0.004386999999999999, 0.017547999999999998, 0.013158000000000001, 0.008772, 0.0, 0.0, 0.013158000000000001, 0.0, 0.013158000000000001, 0.013158000000000001, 0.0, 0.0, 0.017547999999999998, 0.013160999999999997, 0.013160999999999997, 0.004386999999999999, 0.013160999999999997, 0.013160999999999997, 0.013160999999999997, 0.004386999999999999, 0.004386999999999999, 0.008773999999999999, 0.008773999999999999, 0.004386999999999999, 0.013160999999999997, 0.004386999999999999, 0.017547999999999998, 0.0, 0.013160999999999997, 0.004386999999999999, 0.004386999999999999, 0.0, 0.0, 0.004386999999999999, 0.008773999999999999, 0.0, 0.0, 0.013160999999999997, 0.013160999999999997, 0.004386999999999999], \"power_mean\": 0.007140287234042552, \"energy_millijoules\": 0.6748141275432672, \"energy_joules\": 0.0006748141275432672, \"coremark_score\": 3174.670363, \"coremarks_per_mhz\": 3.5274115144444447, \"ulpmark_cm_score\": 444566.8633112084}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.004386999999999999, 0.013160999999999997, 0.008773999999999999, 0.0], \"power_mean\": 0.006580499999999999, \"energy_millijoules\": 0.032902499999999994, \"energy_joules\": 3.290249999999999e-05}}, \"950000\": {\"active\": {\"elapsed_sec\": 89.360118236, \"elapsed_ns\": 89360118236, \"power_samples\": [0.004386999999999999, 0.004386999999999999, 0.021935, 0.021935, 0.0, 0.0, 0.0, 0.0, 0.0, 0.021935, 0.0, 0.013160999999999997, 0.013160999999999997, 0.008773999999999999, 0.013160999999999997, 0.0, 0.008773999999999999, 0.013160999999999997, 0.008773999999999999, 0.0, 0.026321999999999995, 0.0, 0.026321999999999995, 0.004386999999999999, 0.0, 0.013160999999999997, 0.004386999999999999, 0.0, 0.013160999999999997, 0.004386999999999999, 0.004386999999999999, 0.013160999999999997, 0.008773999999999999, 0.013160999999999997, 0.026321999999999995, 0.004386999999999999, 0.017547999999999998, 0.013160999999999997, 0.0, 0.017547999999999998, 0.004386999999999999, 0.004386999999999999, 0.0, 0.0, 0.0, 0.017547999999999998, 0.0, 0.004386999999999999, 0.013160999999999997, 0.008773999999999999, 0.0, 0.013160999999999997, 0.013160999999999997, 0.004386999999999999, 0.0, 0.004386999999999999, 0.004386999999999999, 0.013160999999999997, 0.008773999999999999, 0.008773999999999999, 0.004386999999999999, 0.004386999999999999, 0.0, 0.008773999999999999, 0.0, 0.0, 0.0, 0.004386999999999999, 0.004386999999999999, 0.004386, 0.013158000000000001, 0.008772, 0.004386, 0.008772, 0.013158000000000001, 0.017544, 0.008772, 0.008772, 0.013158000000000001, 0.004386999999999999, 0.004386999999999999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008772, 0.0], \"power_mean\": 0.007097786516853932, \"energy_millijoules\": 0.634259042359954, \"energy_joules\": 0.0006342590423599541, \"coremark_score\": 3357.507387, \"coremarks_per_mhz\": 3.534218302105263, \"ulpmark_cm_score\": 472992.86248053884}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0, 0.0, 0.004386999999999999, 0.008773999999999999], \"power_mean\": 0.0032902499999999998, \"energy_millijoules\": 0.01645125, \"energy_joules\": 1.645125e-05}}, \"999000\": {\"active\": {\"elapsed_sec\": 84.810745851, \"elapsed_ns\": 84810745851, \"power_samples\": [0.0, 0.008773999999999999, 0.008773999999999999, 0.0, 0.008773999999999999, 0.008773999999999999, 0.0, 0.0, 0.013160999999999997, 0.004386999999999999, 0.013160999999999997, 0.0, 0.004386999999999999, 0.004386999999999999, 0.0, 0.004386999999999999, 0.013160999999999997, 0.004386999999999999, 0.0, 0.0, 0.0, 0.004386999999999999, 0.0, 0.008773999999999999, 0.0, 0.004386999999999999, 0.008773999999999999, 0.0, 0.0, 0.004386999999999999, 0.008773999999999999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.004386, 0.0, 0.004386, 0.004386, 0.0, 0.0, 0.008773999999999999, 0.004386999999999999, 0.0, 0.004386999999999999, 0.013158000000000001, 0.004386, 0.013158000000000001, 0.0, 0.013158000000000001, 0.004386999999999999, 0.008773999999999999, 0.013160999999999997, 0.017547999999999998, 0.0, 0.0, 0.004386999999999999, 0.0, 0.013160999999999997, 0.004386999999999999, 0.0, 0.0, 0.0, 0.008772, 0.004386, 0.017544, 0.013158000000000001, 0.013158000000000001, 0.008772, 0.0, 0.008773999999999999, 0.004386999999999999, 0.0, 0.013160999999999997, 0.008773999999999999, 0.0, 0.0, 0.008773999999999999, 0.0, 0.0, 0.017544, 0.013158000000000001, 0.0], \"power_mean\": 0.004961071428571428, \"energy_millijoules\": 0.42075216807722887, \"energy_joules\": 0.0004207521680772289, \"coremark_score\": 3537.652414, \"coremarks_per_mhz\": 3.5411936076076076, \"ulpmark_cm_score\": 713008.8036645248}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0, 0.013160999999999997, 0.013160999999999997, 0.013160999999999997], \"power_mean\": 0.009870749999999998, \"energy_millijoules\": 0.04935374999999999, \"energy_joules\": 4.9353749999999985e-05}}, \"1050000\": {\"active\": {\"elapsed_sec\": 80.584012928, \"elapsed_ns\": 80584012928, \"power_samples\": [0.013160999999999997, 0.004386999999999999, 0.0, 0.013160999999999997, 0.0, 0.0, 0.004386999999999999, 0.004386999999999999, 0.013160999999999997, 0.013160999999999997, 0.017544, 0.008772, 0.013158000000000001, 0.017544, 0.0, 0.0, 0.004386, 0.008772, 0.004386, 0.004386, 0.004386, 0.0, 0.004386, 0.0, 0.0, 0.008772, 0.0, 0.004386, 0.0, 0.008773999999999999, 0.0, 0.013160999999999997, 0.004386999999999999, 0.0, 0.0, 0.004386999999999999, 0.0, 0.008773999999999999, 0.0, 0.008773999999999999, 0.004386, 0.013158000000000001, 0.004386, 0.0, 0.004386, 0.008773999999999999, 0.013160999999999997, 0.0, 0.004386999999999999, 0.008773999999999999, 0.017547999999999998, 0.013160999999999997, 0.008773999999999999, 0.013160999999999997, 0.0, 0.004386999999999999, 0.004386999999999999, 0.0, 0.0, 0.0, 0.0, 0.004386999999999999, 0.021935, 0.0, 0.013160999999999997, 0.004386999999999999, 0.008773999999999999, 0.0, 0.004386999999999999, 0.0, 0.004386999999999999, 0.0, 0.008773999999999999, 0.0, 0.004386999999999999, 0.0, 0.026321999999999995, 0.0, 0.026321999999999995, 0.017547999999999998], \"power_mean\": 0.006031762499999999, \"energy_millijoules\": 0.48606362727862557, \"energy_joules\": 0.00048606362727862554, \"coremark_score\": 3723.146804, \"coremarks_per_mhz\": 3.545854099047619, \"ulpmark_cm_score\": 617203.1461799371}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.008773999999999999, 0.004386999999999999, 0.004386999999999999, 0.008773999999999999], \"power_mean\": 0.0065804999999999995, \"energy_millijoules\": 0.0329025, \"energy_joules\": 3.29025e-05}}, \"1100000\": {\"active\": {\"elapsed_sec\": 76.635447697, \"elapsed_ns\": 76635447697, \"power_samples\": [0.0, 0.008773999999999999, 0.008773999999999999, 0.0, 0.013160999999999997, 0.0, 0.0, 0.004386, 0.0, 0.0, 0.0, 0.008772, 0.0, 0.008772, 0.0, 0.0, 0.013158000000000001, 0.0, 0.008772, 0.004386, 0.0, 0.008773999999999999, 0.004386999999999999, 0.017547999999999998, 0.004386999999999999, 0.0, 0.0, 0.013160999999999997, 0.004386999999999999, 0.0, 0.008773999999999999, 0.013160999999999997, 0.004386999999999999, 0.0, 0.004386999999999999, 0.0, 0.0, 0.004386, 0.013158000000000001, 0.0, 0.0, 0.004386999999999999, 0.004386999999999999, 0.0, 0.013160999999999997, 0.008772, 0.008772, 0.004386, 0.013158000000000001, 0.017544, 0.004386, 0.008772, 0.004386, 0.008772, 0.0, 0.013160999999999997, 0.004386999999999999, 0.008773999999999999, 0.013160999999999997, 0.0, 0.013158000000000001, 0.0, 0.021929999999999998, 0.004386, 0.004386, 0.0, 0.004386, 0.004386, 0.004386, 0.0, 0.0, 0.0, 0.008773999999999999, 0.013160999999999997, 0.004386999999999999, 0.0], \"power_mean\": 0.005309973684210526, \"energy_millijoules\": 0.40693221054876216, \"energy_joules\": 0.00040693221054876217, \"coremark_score\": 3915.018009, \"coremarks_per_mhz\": 3.5591072809090907, \"ulpmark_cm_score\": 737223.5282024975}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.004386999999999999, 0.004386, 0.0, 0.013158000000000001], \"power_mean\": 0.00548275, \"energy_millijoules\": 0.02741375, \"energy_joules\": 2.741375e-05}}, \"1175000\": {\"active\": {\"elapsed_sec\": 71.610324235, \"elapsed_ns\": 71610324235, \"power_samples\": [0.0, 0.013160999999999997, 0.013158000000000001, 0.017544, 0.0, 0.0, 0.013158000000000001, 0.004386999999999999, 0.0, 0.026321999999999995, 0.004386999999999999, 0.013160999999999997, 0.013160999999999997, 0.004386999999999999, 0.0, 0.0, 0.013160999999999997, 0.008773999999999999, 0.0, 0.008773999999999999, 0.0, 0.008773999999999999, 0.017547999999999998, 0.004386999999999999, 0.0, 0.0, 0.004386999999999999, 0.004386999999999999, 0.0, 0.0, 0.013158000000000001, 0.008772, 0.004386, 0.008772, 0.0, 0.004386999999999999, 0.013160999999999997, 0.017547999999999998, 0.008773999999999999, 0.017547999999999998, 0.008772, 0.004386, 0.0, 0.008772, 0.0, 0.0, 0.004386, 0.0, 0.013158000000000001, 0.008772, 0.004386, 0.0, 0.004386, 0.004386, 0.0, 0.008772, 0.013158000000000001, 0.026316000000000003, 0.021929999999999998, 0.004386, 0.013158000000000001, 0.008772, 0.0, 0.008772, 0.013158000000000001, 0.004386, 0.008772, 0.004386, 0.0, 0.0, 0.008773999999999999], \"power_mean\": 0.006981239436619718, \"energy_millijoules\": 0.4999288196185067, \"energy_joules\": 0.0004999288196185067, \"coremark_score\": 4189.768585, \"coremarks_per_mhz\": 3.5657604978723403, \"ulpmark_cm_score\": 600085.4286194753}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0, 0.013160999999999997, 0.0, 0.004386999999999999], \"power_mean\": 0.004386999999999999, \"energy_millijoules\": 0.021934999999999996, \"energy_joules\": 2.1934999999999996e-05}}, \"1275000\": {\"active\": {\"elapsed_sec\": 65.788889773, \"elapsed_ns\": 65788889773, \"power_samples\": [0.004386999999999999, 0.013160999999999997, 0.004386999999999999, 0.004386999999999999, 0.0, 0.013160999999999997, 0.004386999999999999, 0.013160999999999997, 0.0, 0.008773999999999999, 0.004386999999999999, 0.0, 0.0, 0.004386999999999999, 0.0, 0.004386999999999999, 0.008773999999999999, 0.008773999999999999, 0.017547999999999998, 0.004386, 0.0, 0.013158000000000001, 0.013158000000000001, 0.0, 0.0, 0.004386, 0.0, 0.008772, 0.004386, 0.0, 0.004386, 0.004386, 0.0, 0.0, 0.008772, 0.017544, 0.013158000000000001, 0.013158000000000001, 0.004386, 0.008772, 0.013158000000000001, 0.013158000000000001, 0.0, 0.026316000000000003, 0.008772, 0.013158000000000001, 0.013158000000000001, 0.013158000000000001, 0.008772, 0.004386, 0.013158000000000001, 0.004386, 0.004386, 0.008772, 0.004386, 0.004386, 0.008772, 0.021929999999999998, 0.021929999999999998, 0.0, 0.013158000000000001, 0.013158000000000001, 0.013158000000000001, 0.008772, 0.0], \"power_mean\": 0.0075578153846153845, \"energy_millijoules\": 0.4972202832631451, \"energy_joules\": 0.0004972202832631451, \"coremark_score\": 4560.448748, \"coremarks_per_mhz\": 3.57682254745098, \"ulpmark_cm_score\": 603354.3081371648}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.021935, 0.013160999999999997, 0.004386999999999999, 0.0], \"power_mean\": 0.00987075, \"energy_millijoules\": 0.049353749999999995, \"energy_joules\": 4.935375e-05}}, \"1325000\": {\"active\": {\"elapsed_sec\": 63.201908619, \"elapsed_ns\": 63201908619, \"power_samples\": [0.0, 0.026316000000000003, 0.013158000000000001, 0.0, 0.0, 0.0, 0.008772, 0.0, 0.004386999999999999, 0.0, 0.0, 0.021935, 0.004386999999999999, 0.017544, 0.0, 0.0, 0.017544, 0.013158000000000001, 0.008772, 0.013158000000000001, 0.013158000000000001, 0.013158000000000001, 0.008772, 0.008772, 0.0, 0.004386, 0.013158000000000001, 0.008772, 0.026321999999999995, 0.0, 0.017547999999999998, 0.013160999999999997, 0.008773999999999999, 0.008772, 0.0, 0.013158000000000001, 0.004386, 0.004386, 0.004386, 0.008772, 0.021929999999999998, 0.008772, 0.013158000000000001, 0.004386, 0.004386, 0.017544, 0.017544, 0.008772, 0.008772, 0.004386, 0.013158000000000001, 0.013158000000000001, 0.013158000000000001, 0.013160999999999997, 0.013160999999999997, 0.004386999999999999, 0.0, 0.004386999999999999, 0.013160999999999997, 0.013160999999999997, 0.004386999999999999, 0.008773999999999999, 0.013160999999999997], \"power_mean\": 0.008981523809523809, \"energy_millijoules\": 0.5676494470688965, \"energy_joules\": 0.0005676494470688965, \"coremark_score\": 4747.286135, \"coremarks_per_mhz\": 3.5828574603773586, \"ulpmark_cm_score\": 528495.1858036225}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.004386, 0.0, 0.013158000000000001, 0.008772], \"power_mean\": 0.006579000000000001, \"energy_millijoules\": 0.032895, \"energy_joules\": 3.2895e-05}}, \"1375000\": {\"active\": {\"elapsed_sec\": 60.776432926, \"elapsed_ns\": 60776432926, \"power_samples\": [0.013158000000000001, 0.0, 0.0, 0.0, 0.008773999999999999, 0.013160999999999997, 0.004386999999999999, 0.008773999999999999, 0.0, 0.0, 0.017544, 0.013158000000000001, 0.0, 0.0, 0.008772, 0.0, 0.0, 0.017547999999999998, 0.0, 0.013160999999999997, 0.013158000000000001, 0.013158000000000001, 0.004386, 0.0, 0.004386, 0.0, 0.004386, 0.008772, 0.021929999999999998, 0.004386, 0.004386, 0.004386, 0.013158000000000001, 0.021929999999999998, 0.0, 0.013158000000000001, 0.0, 0.004386, 0.008772, 0.0, 0.004386, 0.008772, 0.004386, 0.008772, 0.013158000000000001, 0.008772, 0.008772, 0.0, 0.004386, 0.0, 0.004386, 0.0, 0.0, 0.0, 0.008772, 0.017544, 0.004386, 0.0, 0.0, 0.004386], \"power_mean\": 0.00606755, \"energy_millijoules\": 0.36876404560015125, \"energy_joules\": 0.00036876404560015125, \"coremark_score\": 4936.646372, \"coremarks_per_mhz\": 3.5902882705454546, \"ulpmark_cm_score\": 813528.3349323276}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.013158000000000001, 0.008772, 0.013158000000000001, 0.0], \"power_mean\": 0.008772, \"energy_millijoules\": 0.04386, \"energy_joules\": 4.3860000000000004e-05}}, \"1450000\": {\"active\": {\"elapsed_sec\": 57.543977619, \"elapsed_ns\": 57543977619, \"power_samples\": [0.0, 0.013158000000000001, 0.008772, 0.008772, 0.0, 0.004386, 0.017544, 0.008772, 0.004386, 0.0, 0.004386, 0.008772, 0.0, 0.0, 0.0, 0.013158000000000001, 0.008772, 0.013158000000000001, 0.004386, 0.004386, 0.008772, 0.008772, 0.0, 0.013158000000000001, 0.008772, 0.013158000000000001, 0.004386, 0.0, 0.004386, 0.008772, 0.0, 0.0, 0.008772, 0.017544, 0.004386, 0.0, 0.004386, 0.004386, 0.0, 0.008772, 0.013158000000000001, 0.004386, 0.0, 0.0, 0.004386, 0.017544, 0.004386, 0.004386, 0.0, 0.0, 0.008772, 0.004386, 0.004386, 0.0, 0.013158000000000001, 0.0, 0.0], \"power_mean\": 0.005617157894736842, \"energy_millijoules\": 0.32323360817712604, \"energy_joules\": 0.00032323360817712604, \"coremark_score\": 5214.036185, \"coremarks_per_mhz\": 3.595887024137931, \"ulpmark_cm_score\": 928121.310441226}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.013158000000000001, 0.0, 0.004386, 0.004386], \"power_mean\": 0.0054825, \"energy_millijoules\": 0.027412500000000003, \"energy_joules\": 2.7412500000000002e-05}}, \"1500000\": {\"active\": {\"elapsed_sec\": 55.579181619, \"elapsed_ns\": 55579181619, \"power_samples\": [0.0, 0.0, 0.013158000000000001, 0.0, 0.0, 0.0, 0.0, 0.013158000000000001, 0.004386, 0.017544, 0.004386, 0.008772, 0.0, 0.004386, 0.0, 0.021929999999999998, 0.004386, 0.004386, 0.004386, 0.0, 0.008772, 0.0, 0.004386, 0.004386, 0.008772, 0.013158000000000001, 0.013158000000000001, 0.004386, 0.013158000000000001, 0.017544, 0.0, 0.004386, 0.0, 0.017544, 0.0, 0.0, 0.0, 0.004386, 0.021929999999999998, 0.0, 0.0, 0.0, 0.013158000000000001, 0.008772, 0.008772, 0.008772, 0.0, 0.004386, 0.0, 0.008772, 0.0, 0.008772, 0.0, 0.008772, 0.004386], \"power_mean\": 0.005661927272727273, \"energy_millijoules\": 0.31468528420447844, \"energy_joules\": 0.00031468528420447846, \"coremark_score\": 5398.304932, \"coremarks_per_mhz\": 3.5988699546666667, \"ulpmark_cm_score\": 953333.4256744712}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0, 0.013158000000000001, 0.013158000000000001, 0.0], \"power_mean\": 0.006579000000000001, \"energy_millijoules\": 0.032895, \"energy_joules\": 3.2895e-05}}, \"1625000\": {\"active\": {\"elapsed_sec\": 51.180277772, \"elapsed_ns\": 51180277772, \"power_samples\": [0.008772, 0.021929999999999998, 0.013158000000000001, 0.008772, 0.013158000000000001, 0.017544, 0.008772, 0.0, 0.008772, 0.004386, 0.004386, 0.0, 0.0, 0.004386, 0.0, 0.008772, 0.008772, 0.004386, 0.008772, 0.004386, 0.021929999999999998, 0.013158000000000001, 0.013158000000000001, 0.017544, 0.0, 0.013158000000000001, 0.004386, 0.0, 0.013158000000000001, 0.004386, 0.004386, 0.0, 0.013158000000000001, 0.013158000000000001, 0.008772, 0.008772, 0.013158000000000001, 0.013158000000000001, 0.013158000000000001, 0.0, 0.0, 0.008772, 0.008772, 0.004386, 0.0, 0.0, 0.0, 0.0, 0.0, 0.004386, 0.0], \"power_mean\": 0.007138, \"energy_millijoules\": 0.365324822736536, \"energy_joules\": 0.000365324822736536, \"coremark_score\": 5862.351976, \"coremarks_per_mhz\": 3.607601216, \"ulpmark_cm_score\": 821187.0131155944}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0, 0.0, 0.0, 0.008772], \"power_mean\": 0.002193, \"energy_millijoules\": 0.010965, \"energy_joules\": 1.0965000000000001e-05}}, \"1700000\": {\"active\": {\"elapsed_sec\": 48.229992541, \"elapsed_ns\": 48229992541, \"power_samples\": [0.0, 0.017544, 0.0, 0.013158000000000001, 0.0, 0.0, 0.013158000000000001, 0.0, 0.0, 0.026316000000000003, 0.013158000000000001, 0.008772, 0.0, 0.0, 0.013158000000000001, 0.021929999999999998, 0.008772, 0.017544, 0.0, 0.021929999999999998, 0.0, 0.008772, 0.013158000000000001, 0.008772, 0.0, 0.0, 0.004386, 0.0, 0.026316000000000003, 0.013158000000000001, 0.008772, 0.004386, 0.008772, 0.008772, 0.0, 0.004386, 0.004386, 0.0, 0.0, 0.008772, 0.008772, 0.008772, 0.013158000000000001, 0.013158000000000001, 0.0, 0.017544, 0.008772, 0.004386], \"power_mean\": 0.007766875, \"energy_millijoules\": 0.3745963233168794, \"energy_joules\": 0.00037459632331687944, \"coremark_score\": 6220.839813, \"coremarks_per_mhz\": 3.6593175370588233, \"ulpmark_cm_score\": 800862.1049551073}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.004386, 0.0, 0.0, 0.008772], \"power_mean\": 0.0032895, \"energy_millijoules\": 0.0164475, \"energy_joules\": 1.64475e-05}}}}, \"6\": {\"freqs\": {\"850000\": {\"active\": {\"elapsed_sec\": 58.360843081, \"elapsed_ns\": 58360843081, \"power_samples\": [0.013158000000000001, 0.013158000000000001, 0.013158000000000001, 0.0, 0.026316000000000003, 0.017544, 0.0, 0.0, 0.017544, 0.013158000000000001, 0.0, 0.0, 0.017544, 0.017544, 0.0, 0.008772, 0.013158000000000001, 0.004386, 0.004386, 0.0, 0.013158000000000001, 0.004386, 0.013158000000000001, 0.017544, 0.021929999999999998, 0.004386, 0.004386, 0.004386, 0.0, 0.0, 0.0, 0.0, 0.008772, 0.026316000000000003, 0.004386, 0.008772, 0.0, 0.0, 0.008772, 0.0, 0.008772, 0.004386, 0.0, 0.004386, 0.013158000000000001, 0.0, 0.008772, 0.013158000000000001, 0.013158000000000001, 0.004386, 0.008772, 0.0, 0.004386, 0.0, 0.0, 0.0, 0.021929999999999998, 0.013158000000000001], \"power_mean\": 0.007562068965517242, \"energy_millijoules\": 0.44132872026425174, \"energy_joules\": 0.0004413287202642517, \"coremark_score\": 5141.652527, \"coremarks_per_mhz\": 6.049002972941176, \"ulpmark_cm_score\": 679765.4134550111}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.008772, 0.008772, 0.004386, 0.004386], \"power_mean\": 0.006579, \"energy_millijoules\": 0.032895, \"energy_joules\": 3.2895e-05}}, \"909000\": {\"active\": {\"elapsed_sec\": 54.495464618, \"elapsed_ns\": 54495464618, \"power_samples\": [0.0, 0.017544, 0.0, 0.0, 0.004386, 0.030702, 0.0, 0.013158000000000001, 0.0, 0.013158000000000001, 0.004386, 0.013158000000000001, 0.008772, 0.0, 0.013158000000000001, 0.004386, 0.0, 0.017544, 0.004386, 0.013158000000000001, 0.008772, 0.0, 0.008772, 0.017544, 0.0, 0.0, 0.0, 0.0, 0.004386, 0.0, 0.004386, 0.013158000000000001, 0.008772, 0.013158000000000001, 0.013158000000000001, 0.0, 0.004386, 0.013158000000000001, 0.017544, 0.013158000000000001, 0.013158000000000001, 0.021929999999999998, 0.0, 0.004386, 0.0, 0.0, 0.013158000000000001, 0.0, 0.013158000000000001, 0.030702, 0.004386, 0.0, 0.008772, 0.013158000000000001], \"power_mean\": 0.007797333333333334, \"energy_millijoules\": 0.4249193027814187, \"energy_joules\": 0.0004249193027814187, \"coremark_score\": 5506.304719, \"coremarks_per_mhz\": 6.057540944994499, \"ulpmark_cm_score\": 706016.4083774795}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.004386, 0.004386, 0.004386, 0.008772], \"power_mean\": 0.0054825, \"energy_millijoules\": 0.027412500000000003, \"energy_joules\": 2.7412500000000002e-05}}, \"998000\": {\"active\": {\"elapsed_sec\": 49.728156618, \"elapsed_ns\": 49728156618, \"power_samples\": [0.0, 0.013158000000000001, 0.0, 0.013158000000000001, 0.013158000000000001, 0.0, 0.013158000000000001, 0.0, 0.026316000000000003, 0.0, 0.013158000000000001, 0.0, 0.008772, 0.013158000000000001, 0.0, 0.013158000000000001, 0.008772, 0.0, 0.0, 0.013158000000000001, 0.004386, 0.0, 0.013158000000000001, 0.0, 0.008772, 0.0, 0.013158000000000001, 0.0, 0.0, 0.0, 0.013158000000000001, 0.021929999999999998, 0.0, 0.013158000000000001, 0.013158000000000001, 0.008772, 0.008772, 0.0, 0.004386, 0.004386, 0.004386, 0.008772, 0.008772, 0.0, 0.013158000000000001, 0.004386, 0.013158000000000001, 0.013158000000000001, 0.0], \"power_mean\": 0.006981795918367347, \"energy_millijoules\": 0.3471918409034846, \"energy_joules\": 0.0003471918409034846, \"coremark_score\": 6034.396058, \"coremarks_per_mhz\": 6.046489036072145, \"ulpmark_cm_score\": 864075.6050583476}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0, 0.004386, 0.008772, 0.008772], \"power_mean\": 0.0054825, \"energy_millijoules\": 0.027412500000000003, \"energy_joules\": 2.7412500000000002e-05}}, \"1087000\": {\"active\": {\"elapsed_sec\": 45.493464079, \"elapsed_ns\": 45493464079, \"power_samples\": [0.0, 0.008772, 0.013158000000000001, 0.0, 0.004386, 0.008772, 0.004386, 0.013158000000000001, 0.008772, 0.004386, 0.0, 0.0, 0.017544, 0.0, 0.013158000000000001, 0.017544, 0.026316000000000003, 0.004386, 0.013158000000000001, 0.013158000000000001, 0.0, 0.013158000000000001, 0.008772, 0.004386, 0.013158000000000001, 0.008772, 0.004386, 0.0, 0.004386, 0.013158000000000001, 0.0, 0.0, 0.013158000000000001, 0.0, 0.017544, 0.013158000000000001, 0.0, 0.0, 0.0, 0.0, 0.017544, 0.0, 0.013158000000000001, 0.008772, 0.013158000000000001], \"power_mean\": 0.007504933333333334, \"energy_millijoules\": 0.3414254150152898, \"energy_joules\": 0.0003414254150152898, \"coremark_score\": 6596.306069, \"coremarks_per_mhz\": 6.068358849126035, \"ulpmark_cm_score\": 878669.2109214112}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0, 0.008772, 0.013158000000000001, 0.0], \"power_mean\": 0.0054825, \"energy_millijoules\": 0.027412500000000003, \"energy_joules\": 2.7412500000000002e-05}}, \"1176000\": {\"active\": {\"elapsed_sec\": 42.106052541, \"elapsed_ns\": 42106052541, \"power_samples\": [0.0, 0.004386, 0.013158000000000001, 0.004386, 0.0, 0.008772, 0.021929999999999998, 0.008772, 0.013158000000000001, 0.013158000000000001, 0.0, 0.004386, 0.004386, 0.0, 0.004386, 0.0, 0.008772, 0.013158000000000001, 0.013158000000000001, 0.013158000000000001, 0.008772, 0.0, 0.013158000000000001, 0.0, 0.004386, 0.008772, 0.008772, 0.0, 0.004386, 0.0, 0.008772, 0.013158000000000001, 0.013158000000000001, 0.004386, 0.021929999999999998, 0.0, 0.0, 0.008772, 0.013158000000000001, 0.004386, 0.0], \"power_mean\": 0.006953414634146342, \"energy_millijoules\": 0.29278084192472414, \"energy_joules\": 0.00029278084192472414, \"coremark_score\": 7127.245082, \"coremarks_per_mhz\": 6.060582552721089, \"ulpmark_cm_score\": 1024657.2078549181}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.008772, 0.013158000000000001, 0.004386, 0.013158000000000001], \"power_mean\": 0.0098685, \"energy_millijoules\": 0.049342500000000004, \"energy_joules\": 4.9342500000000004e-05}}, \"1295000\": {\"active\": {\"elapsed_sec\": 38.221927618, \"elapsed_ns\": 38221927618, \"power_samples\": [0.0, 0.021929999999999998, 0.004386, 0.013158000000000001, 0.0, 0.0, 0.0, 0.0, 0.013158000000000001, 0.008772, 0.0, 0.0, 0.0, 0.0, 0.004386, 0.013158000000000001, 0.004386, 0.017544, 0.004386, 0.004386, 0.004386, 0.008772, 0.0, 0.0, 0.0, 0.008772, 0.017544, 0.0, 0.004386, 0.004386, 0.004386, 0.004386, 0.0, 0.013158000000000001, 0.004386, 0.013158000000000001, 0.0, 0.0], \"power_mean\": 0.005193947368421053, \"energy_millijoules\": 0.19852268036749107, \"energy_joules\": 0.00019852268036749107, \"coremark_score\": 7851.347815, \"coremarks_per_mhz\": 6.062816845559846, \"ulpmark_cm_score\": 1511162.3490306565}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.008772, 0.0, 0.008772, 0.013158000000000001], \"power_mean\": 0.0076755, \"energy_millijoules\": 0.0383775, \"energy_joules\": 3.83775e-05}}, \"1354000\": {\"active\": {\"elapsed_sec\": 36.579093849, \"elapsed_ns\": 36579093849, \"power_samples\": [0.008772, 0.004386, 0.004386, 0.004386, 0.004386, 0.008772, 0.017544, 0.0, 0.0, 0.008772, 0.004386, 0.0, 0.013158000000000001, 0.008772, 0.0, 0.013158000000000001, 0.004386, 0.0, 0.008772, 0.0, 0.0, 0.013158000000000001, 0.0, 0.0, 0.004386, 0.0, 0.013158000000000001, 0.004386, 0.0, 0.013158000000000001, 0.008772, 0.0, 0.013158000000000001, 0.0, 0.008772, 0.0], \"power_mean\": 0.005360666666666667, \"energy_millijoules\": 0.19608832909320603, \"energy_joules\": 0.00019608832909320603, \"coremark_score\": 8204.342832, \"coremarks_per_mhz\": 6.0593373943870015, \"ulpmark_cm_score\": 1529922.7719840582}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0, 0.0, 0.0, 0.004386], \"power_mean\": 0.0010965, \"energy_millijoules\": 0.0054825, \"energy_joules\": 5.4825000000000004e-06}}, \"1443000\": {\"active\": {\"elapsed_sec\": 34.305442771, \"elapsed_ns\": 34305442771, \"power_samples\": [0.0, 0.0, 0.0, 0.004386, 0.004386, 0.0, 0.008772, 0.0, 0.013158000000000001, 0.013158000000000001, 0.0, 0.008772, 0.013158000000000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.004386, 0.017544, 0.013158000000000001, 0.0, 0.004386, 0.0, 0.0, 0.013158000000000001, 0.008772, 0.0, 0.008772, 0.013158000000000001, 0.0, 0.013158000000000001, 0.008772], \"power_mean\": 0.005031000000000001, \"energy_millijoules\": 0.17259068258090104, \"energy_joules\": 0.00017259068258090103, \"coremark_score\": 8748.14102, \"coremarks_per_mhz\": 6.062467789327789, \"ulpmark_cm_score\": 1738216.661026162}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.008772, 0.017544, 0.013158000000000001, 0.013158000000000001], \"power_mean\": 0.013158000000000001, \"energy_millijoules\": 0.06579, \"energy_joules\": 6.579e-05}}, \"1532000\": {\"active\": {\"elapsed_sec\": 32.303587309, \"elapsed_ns\": 32303587309, \"power_samples\": [0.013158000000000001, 0.004386, 0.004386, 0.004386, 0.021929999999999998, 0.0, 0.021929999999999998, 0.0, 0.013158000000000001, 0.0, 0.0, 0.008772, 0.017544, 0.017544, 0.013158000000000001, 0.013158000000000001, 0.004386, 0.013158000000000001, 0.008772, 0.013158000000000001, 0.008772, 0.004386, 0.017544, 0.0, 0.004386, 0.0, 0.008772, 0.004385, 0.004385, 0.0, 0.0, 0.00877], \"power_mean\": 0.0079495, \"energy_millijoules\": 0.2567973673128955, \"energy_joules\": 0.0002567973673128955, \"coremark_score\": 9290.802106, \"coremarks_per_mhz\": 6.064492236292428, \"ulpmark_cm_score\": 1168236.2757031857}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0, 0.013158000000000001, 0.008772, 0.004386], \"power_mean\": 0.006579000000000001, \"energy_millijoules\": 0.032895, \"energy_joules\": 3.2895e-05}}, \"1621000\": {\"active\": {\"elapsed_sec\": 30.560129232, \"elapsed_ns\": 30560129232, \"power_samples\": [0.013155, 0.008772, 0.0, 0.008772, 0.0, 0.013158000000000001, 0.0, 0.004386, 0.008772, 0.017544, 0.004386, 0.013158000000000001, 0.004386, 0.021929999999999998, 0.0, 0.004386, 0.0, 0.013158000000000001, 0.0, 0.0, 0.013158000000000001, 0.004386, 0.0, 0.008772, 0.0, 0.008772, 0.004386, 0.013158000000000001, 0.013158000000000001, 0.004386], \"power_mean\": 0.0068713, \"energy_millijoules\": 0.20998781599184163, \"energy_joules\": 0.00020998781599184164, \"coremark_score\": 9820.610187, \"coremarks_per_mhz\": 6.058365322023443, \"ulpmark_cm_score\": 1428654.3177898258}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.008772, 0.00877, 0.00877, 0.013155], \"power_mean\": 0.00986675, \"energy_millijoules\": 0.04933375, \"energy_joules\": 4.933375e-05}}, \"1710000\": {\"active\": {\"elapsed_sec\": 28.78050254, \"elapsed_ns\": 28780502540, \"power_samples\": [0.013158000000000001, 0.004386, 0.004386, 0.0, 0.0, 0.017544, 0.0, 0.008772, 0.017544, 0.013158000000000001, 0.004386, 0.0, 0.0, 0.008772, 0.004386, 0.013158000000000001, 0.008772, 0.013158000000000001, 0.004386, 0.013158000000000001, 0.021924999999999997, 0.0, 0.00877, 0.00877, 0.004385, 0.00877, 0.004385, 0.004385], \"power_mean\": 0.0075183571428571435, \"energy_millijoules\": 0.21638209684662715, \"energy_joules\": 0.00021638209684662714, \"coremark_score\": 10428.616123, \"coremarks_per_mhz\": 6.098605919883041, \"ulpmark_cm_score\": 1386436.3289382563}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.00877, 0.013155, 0.00877, 0.004385], \"power_mean\": 0.00877, \"energy_millijoules\": 0.04385, \"energy_joules\": 4.385e-05}}, \"1800000\": {\"active\": {\"elapsed_sec\": 27.374410078, \"elapsed_ns\": 27374410078, \"power_samples\": [0.021929999999999998, 0.013158000000000001, 0.013158000000000001, 0.008772, 0.008772, 0.0, 0.013155, 0.00877, 0.0, 0.00877, 0.0, 0.0, 0.008772, 0.0, 0.0, 0.013158000000000001, 0.026316000000000003, 0.017544, 0.0, 0.004386, 0.013155, 0.0, 0.004385, 0.004385, 0.00877, 0.0, 0.0], \"power_mean\": 0.007309481481481482, \"energy_millijoules\": 0.20009274353162104, \"energy_joules\": 0.00020009274353162103, \"coremark_score\": 10964.110811, \"coremarks_per_mhz\": 6.091172672777778, \"ulpmark_cm_score\": 1499304.7459144385}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0, 0.008772, 0.008772, 0.0], \"power_mean\": 0.004386, \"energy_millijoules\": 0.02193, \"energy_joules\": 2.1930000000000002e-05}}, \"1850000\": {\"active\": {\"elapsed_sec\": 26.596652617, \"elapsed_ns\": 26596652617, \"power_samples\": [0.008772, 0.013158000000000001, 0.0, 0.004386, 0.013158000000000001, 0.013155, 0.0, 0.013155, 0.004385, 0.0, 0.01754, 0.0, 0.004385, 0.013155, 0.00877, 0.0, 0.0, 0.004386, 0.013158000000000001, 0.013158000000000001, 0.013158000000000001, 0.013158000000000001, 0.004386, 0.0, 0.0, 0.004386], \"power_mean\": 0.0069157307692307695, \"energy_millijoules\": 0.18393528886192897, \"energy_joules\": 0.00018393528886192898, \"coremark_score\": 11284.558962, \"coremarks_per_mhz\": 6.099761601081081, \"ulpmark_cm_score\": 1631008.393529069}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0, 0.004385, 0.0, 0.0], \"power_mean\": 0.00109625, \"energy_millijoules\": 0.00548125, \"energy_joules\": 5.48125e-06}}, \"1900000\": {\"active\": {\"elapsed_sec\": 25.868846463, \"elapsed_ns\": 25868846463, \"power_samples\": [0.00877, 0.00877, 0.013155, 0.00877, 0.00877, 0.004385, 0.0, 0.00877, 0.013155, 0.0, 0.008772, 0.013158000000000001, 0.004386, 0.013158000000000001, 0.004386, 0.004386, 0.0, 0.008772, 0.004386, 0.004386, 0.004386, 0.0, 0.0, 0.008772, 0.004386], \"power_mean\": 0.00631516, \"energy_millijoules\": 0.1633659044292791, \"energy_joules\": 0.0001633659044292791, \"coremark_score\": 11601.825354, \"coremarks_per_mhz\": 6.106223870526316, \"ulpmark_cm_score\": 1836368.4946871498}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.013158000000000001, 0.0, 0.0, 0.00877], \"power_mean\": 0.005482000000000001, \"energy_millijoules\": 0.027410000000000004, \"energy_joules\": 2.7410000000000004e-05}}, \"1950000\": {\"active\": {\"elapsed_sec\": 25.207232848, \"elapsed_ns\": 25207232848, \"power_samples\": [0.013152, 0.0, 0.0, 0.013152, 0.004386, 0.013158000000000001, 0.017544, 0.004386, 0.004386, 0.013158000000000001, 0.017544, 0.004386, 0.004386, 0.0, 0.0, 0.004386, 0.017544, 0.008772, 0.013158000000000001, 0.004386, 0.017544, 0.021929999999999998, 0.0, 0.0, 0.0], \"power_mean\": 0.00789432, \"energy_millijoules\": 0.19899396241662337, \"energy_joules\": 0.00019899396241662338, \"coremark_score\": 11906.651849, \"coremarks_per_mhz\": 6.105975307179487, \"ulpmark_cm_score\": 1507583.427942932}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.01754, 0.00877, 0.004385, 0.013155], \"power_mean\": 0.0109625, \"energy_millijoules\": 0.0548125, \"energy_joules\": 5.48125e-05}}, \"2000000\": {\"active\": {\"elapsed_sec\": 24.588567694, \"elapsed_ns\": 24588567694, \"power_samples\": [0.004386, 0.008772, 0.0, 0.004386, 0.0, 0.013158000000000001, 0.004386, 0.0, 0.0, 0.0, 0.013158000000000001, 0.0, 0.008772, 0.004386, 0.0, 0.021929999999999998, 0.004386, 0.013158000000000001, 0.0, 0.013158000000000001, 0.013158000000000001, 0.0, 0.0, 0.004386], \"power_mean\": 0.0054825, \"energy_millijoules\": 0.13480682238235503, \"energy_joules\": 0.00013480682238235504, \"coremark_score\": 12206.534565, \"coremarks_per_mhz\": 6.1032672825, \"ulpmark_cm_score\": 2225406.6574546546}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0, 0.0, 0.0, 0.008772], \"power_mean\": 0.002193, \"energy_millijoules\": 0.010965, \"energy_joules\": 1.0965000000000001e-05}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/mt6768/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \n\n=============== WARNING ===============\nDetected power supply in charging state!\nPower measurements will be invalid and benchmark results may be affected.\nUnplug the device and restart the benchmark for valid results.\n=============== WARNING ===============\n\nSampling power every 1000 ms\nBaseline power usage: 0 mW\n\n\n===== CPU 1 =====\nFrequencies: 500 774 850 900 950 999 1050 1100 1175 1275 1325 1375 1450 1500 1625 1700\n\n 500:  1856     3.7 C/MHz      0 mW    0.0 J   269182.7 I/mJ   161.6 s\n 774:  2874     3.7 C/MHz      0 mW    0.0 J   389280.8 I/mJ   104.4 s\n 850:  3124     3.7 C/MHz      0 mW    0.0 J   516334.6 I/mJ    96.0 s\n 900:  3175     3.5 C/MHz      0 mW    0.0 J   444566.9 I/mJ    94.5 s\n 950:  3358     3.5 C/MHz      0 mW    0.0 J   472992.9 I/mJ    89.4 s\n 999:  3538     3.5 C/MHz      0 mW    0.0 J   713008.8 I/mJ    84.8 s\n1050:  3723     3.5 C/MHz      0 mW    0.0 J   617203.1 I/mJ    80.6 s\n1100:  3915     3.6 C/MHz      0 mW    0.0 J   737223.5 I/mJ    76.6 s\n1175:  4190     3.6 C/MHz      0 mW    0.0 J   600085.4 I/mJ    71.6 s\n1275:  4560     3.6 C/MHz      0 mW    0.0 J   603354.3 I/mJ    65.8 s\n1325:  4747     3.6 C/MHz      0 mW    0.0 J   528495.2 I/mJ    63.2 s\n1375:  4937     3.6 C/MHz      0 mW    0.0 J   813528.3 I/mJ    60.8 s\n1450:  5214     3.6 C/MHz      0 mW    0.0 J   928121.3 I/mJ    57.5 s\n1500:  5398     3.6 C/MHz      0 mW    0.0 J   953333.4 I/mJ    55.6 s\n1625:  5862     3.6 C/MHz      0 mW    0.0 J   821187.0 I/mJ    51.2 s\n1700:  6221     3.7 C/MHz      0 mW    0.0 J   800862.1 I/mJ    48.2 s\n\n\n===== CPU 6 =====\nFrequencies: 850 909 998 1087 1176 1295 1354 1443 1532 1621 1710 1800 1850 1900 1950 2000\n\n 850:  5142     6.0 C/MHz      0 mW    0.0 J   679765.4 I/mJ    58.4 s\n 909:  5506     6.1 C/MHz      0 mW    0.0 J   706016.4 I/mJ    54.5 s\n 998:  6034     6.0 C/MHz      0 mW    0.0 J   864075.6 I/mJ    49.7 s\n1087:  6596     6.1 C/MHz      0 mW    0.0 J   878669.2 I/mJ    45.5 s\n1176:  7127     6.1 C/MHz      0 mW    0.0 J   1024657.2 I/mJ    42.1 s\n1295:  7851     6.1 C/MHz      0 mW    0.0 J   1511162.3 I/mJ    38.2 s\n1354:  8204     6.1 C/MHz      0 mW    0.0 J   1529922.8 I/mJ    36.6 s\n1443:  8748     6.1 C/MHz      0 mW    0.0 J   1738216.7 I/mJ    34.3 s\n1532:  9291     6.1 C/MHz      0 mW    0.0 J   1168236.3 I/mJ    32.3 s\n1621:  9821     6.1 C/MHz      0 mW    0.0 J   1428654.3 I/mJ    30.6 s\n1710: 10429     6.1 C/MHz      0 mW    0.0 J   1386436.3 I/mJ    28.8 s\n1800: 10964     6.1 C/MHz      0 mW    0.0 J   1499304.7 I/mJ    27.4 s\n1850: 11285     6.1 C/MHz      0 mW    0.0 J   1631008.4 I/mJ    26.6 s\n1900: 11602     6.1 C/MHz      0 mW    0.0 J   1836368.5 I/mJ    25.9 s\n1950: 11907     6.1 C/MHz      0 mW    0.0 J   1507583.4 I/mJ    25.2 s\n2000: 12207     6.1 C/MHz      0 mW    0.0 J   2225406.7 I/mJ    24.6 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/mt6768/main/uptime.txt",
    "content": " 10:05:19 up 36 min,  load average: 32.20, 32.17, 29.15\n"
  },
  {
    "path": "results/mt6768/main/versions.txt",
    "content": "Kernel: Linux version 4.14.253-NetErnels (cyberknight777@cloud.drone.io) (Android (6443078 based on r383902) clang version 11.0.1 (https://android.googlesource.com/toolchain/llvm-project b397f81060ce6d701042b782172ed13bee898b79), GNU ld (Linaro_Binutils-2019.12) 2.28.2.20170706) #3 SMP PREEMPT Sat Oct 30 18:00:52 UTC 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/mt6853t/main/cmdline.txt",
    "content": "console=tty0 console=ttyS0,921600n1 root=/dev/ram vmalloc=400M slub_debug=OFZPU swiotlb=noforce firmware_class.path=/vendor/firmware page_owner=on loop.max_part=7 has_battery_removed=0 androidboot.boot_devices=bootdevice,11230000.mmc root=/dev/ram  androidboot.verifiedbootstate=orange bootopt=64S3,32N2,64N2 buildvariant=user rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.atm=disabled androidboot.meta_log_disable=0 printk.disable_uart=1 bootprof.pl_t=1711 bootprof.lk_t=5971 bootprof.logo_t=2319 androidboot.serialno=REDACTED LCM_name=dsi_vdo_j22_42_02_0a_lcm_drv androidboot.bootreason=reboot androidboot.hwc=GL androidboot.hwlevel=MP androidboot.hwversion=1.19.0 androidboot.secureboot=1 androidboot.dp=7 androidboot.chipid=0xcc5ace5c25fe72ee4dfc37120d1f987d androidboot.cpuid=REDACTED gpt=1 usb2jtag_mode=0 mrdump_ddrsv=yes mrdump_cb=0x11e000,0x2000 androidboot.dtb_idx=0 androidboot.dtbo_idx=0\n"
  },
  {
    "path": "results/mt6853t/main/cpuinfo.txt",
    "content": "processor\t: 0\nBogoMIPS\t: 26.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x2\nCPU part\t: 0xd05\nCPU revision\t: 0\n\nHardware\t: MT6853T\n"
  },
  {
    "path": "results/mt6853t/main/device.txt",
    "content": "Model: MT6853T;\nCompatible: mediatek,MT6853;\n"
  },
  {
    "path": "results/mt6853t/main/kernel.log",
    "content": "[    0.000000] -(0)[0:swapper]Booting Linux on physical CPU 0x0\n[    0.000000] -(0)[0:swapper]Linux version 4.14.141-g37f4efb4a (mvaisakh@cloud.drone.io) (Android (6052599 based on r353983c1) clang version 9.0.3 (https://android.googlesource.com/toolchain/clang 745b335211bb9eadfa6aa6301f84715cee4b37c5) (https://android.googlesource.com/toolchain/llvm 31c3f8c4ae6cc980405a3b90e7e88db00249eba5) (based on LLVM 9.0.3svn)) #249 SMP PREEMPT Mon Jul 12 15:26:19 UTC 2021\n[    0.000000] -(0)[0:swapper]Boot CPU: AArch64 Processor [412fd050]\n[    0.000000] -(0)[0:swapper]Machine model: MT6853T\n[    0.000000] -(0)[0:swapper]mrdump_get_cb: mrdump_cbaddr=0x000000000011e000, mrdump_cbsize=0x0000000000002000\n[    0.000000] -(0)[0:swapper]ion_reserve_memory_to_camera: name:ion-carveout-heap,base:bfff3000,size:0xc000\n[    0.000000] -(0)[0:swapper]OF: reserved mem: initialized node ion-carveout-heap, compatible id mediatek,ion-carveout-heap\n[    0.000000] -(0)[0:swapper]OF: reserved mem: initialized node reserve-memory-adsp_share, compatible id mediatek,reserve-memory-adsp_share\n[    0.000000] -(0)[0:swapper]OF: reserved mem: initialized node reserve-memory-sspm_share, compatible id mediatek,reserve-memory-sspm_share\n[    0.000000] -(0)[0:swapper]OF: reserved mem: initialized node soter-shared-mem, compatible id microtrust,shared_mem\n[    0.000000] -(0)[0:swapper][SCP]scp_reserve_mem_of_init 0x0000000087000000 0x0000000000300000\n[    0.000000] -(0)[0:swapper]OF: reserved mem: initialized node reserve-memory-scp_share, compatible id mediatek,reserve-memory-scp_share\n[    0.000000] -(0)[0:swapper]OF: reserved mem: initialized node reserve-memory-mcupm_share, compatible id mediatek,reserve-memory-mcupm_share\n[    0.000000] -(0)[0:swapper][CONNADP][W]reserve_memory_wifi_fn: name: wifi-reserve-memory,base: 0xbe000000,size: 0x600000\n[    0.000000] -(0)[0:swapper]OF: reserved mem: initialized node wifi-reserve-memory, compatible id mediatek,wifi-reserve-memory\n[    0.000000] -(0)[0:swapper]ZMC: zmc_memory_init, name: zone-movable-cma-memory, base: 0x0000000112000000, size: 0x000000002d000000\n[    0.000000] -(0)[0:swapper]ZMC: Start to zone: 0\n[    0.000000] -(0)[0:swapper]memory-ssmr: setup_feature_size, rmem->size: 0x000000002d000000\n[    0.000000] -(0)[0:swapper]memory-ssmr: setup_feature_size, svp-size: 0x0000000010000000\n[    0.000000] -(0)[0:swapper]memory-ssmr: setup_feature_size, wfd-size: 0x0000000004000000\n[    0.000000] -(0)[0:swapper]memory-ssmr: finalize_scenario_size, svp_scheme: 0x0000000014000000\n[    0.000000] -(0)[0:swapper]memory-ssmr: finalize_scenario_size, face_registration_scheme: 0x0000000000000000\n[    0.000000] -(0)[0:swapper]memory-ssmr: finalize_scenario_size, face_payment_scheme: 0x0000000000000000\n[    0.000000] -(0)[0:swapper]memory-ssmr: finalize_scenario_size, face_unlock_scheme: 0x0000000000000000\n[    0.000000] -(0)[0:swapper]memory-ssmr: finalize_scenario_size, tui_scheme: 0x0000000000000000\n[    0.000000] -(0)[0:swapper]memory-ssmr: ssmr_preinit, final target size: 0x0000000014000000\n[    0.000000] -(0)[0:swapper]memory-ssmr: ssmr_preinit, SSMR init: continue\n[    0.000000] -(0)[0:swapper]ZMC: ::[memory-ssmr]: size: 0x0000000014000000, align: 0x0000000001000000\n[    0.000000] -(0)[0:swapper]ZMC: ::[0x0000000112000000-0x000000013f000000] remain of rmem\n[    0.000000] -(0)[0:swapper]ZMC: ::cma_init_reserved_mem - [0x000000012b000000 - 0x000000013f000000]\n[    0.000000] -(0)[0:swapper]ZMC: ===> MOVABLE ZONE: Update range[0x000000012b000000,0x000000013f000000)\n[    0.000000] -(0)[0:swapper]memory-ssmr: zmc_ssmr_init, base: 0x000000012b000000, size: 0x0000000014000000\n[    0.000000] -(0)[0:swapper]ZMC: ::[PASS]: memory-ssmr[0x000000012b000000-0x000000013f000000] (rmem->size=0x0000000019000000)\n[    0.000000] -(0)[0:swapper]ZMC: Start to zone: 1\n[    0.000000] -(0)[0:swapper]OF: reserved mem: initialized node zone-movable-cma-memory, compatible id mediatek,zone_movable_cma\n[    0.000000] -(0)[0:swapper][CONNADP][W]reserve_memory_consys_fn: name: consys-reserve-memory,base: 0x9d000000,size: 0x400000\n[    0.000000] -(0)[0:swapper]OF: reserved mem: initialized node consys-reserve-memory, compatible id mediatek,consys-reserve-memory\n[    0.000000] -(0)[0:swapper][memblock]mediatek,ram_console: 0x4d000000 - 0x4d010000 (0x10000)\n[    0.000000] -(0)[0:swapper]OF: reserved mem: initialized node mblock-12-ram_console, compatible id mediatek,ram_console\n[    0.000000] -(0)[0:swapper][memblock]mediatek,pstore: 0x4d010000 - 0x4d0f0000 (0xe0000)\n[    0.000000] -(0)[0:swapper]OF: reserved mem: initialized node mblock-13-pstore, compatible id mediatek,pstore\n[    0.000000] -(0)[0:swapper][memblock]mediatek,minirdump: 0x4d0f0000 - 0x4d100000 (0x10000)\n[    0.000000] -(0)[0:swapper]OF: reserved mem: initialized node mblock-14-minirdump, compatible id mediatek,minirdump\n[    0.000000] -(0)[0:swapper]memory_ccci_share_init, name: mblock-22-md_smem_ncache, base: 0x0x000000008e000000, size: 0x0x00000000001b0000\n[    0.000000] -(0)[0:swapper]pos_addr=0x0000000000000000 pos_length=0x0000000000000000\n[    0.000000] -(0)[0:swapper]memory_ccci_share_init MD_POS no support,no CMA init\n[    0.000000] -(0)[0:swapper]OF: reserved mem: initialized node mblock-22-md_smem_ncache, compatible id mediatek,md_smem_ncache\n[    0.000000] -(0)[0:swapper]OF: reserved mem: initialized node mblock-6-atf-log-reserved, compatible id mediatek,atf-log-reserved\n[    0.000000] -(0)[0:swapper]ZMC: Query return: [0x000000012b000000,0x000000013f000000)\n[    0.000000] -(0)[0:swapper]On node 0 totalpages: 986337\n[    0.000000] -(0)[0:swapper]  DMA zone: 7226 pages used for memmap\n[    0.000000] -(0)[0:swapper]  DMA zone: 0 pages reserved\n[    0.000000] -(0)[0:swapper]  DMA zone: 462450 pages, LIFO batch:31\n[    0.000000] -(0)[0:swapper]  Normal zone: 6848 pages used for memmap\n[    0.000000] -(0)[0:swapper]  Normal zone: 437872 pages, LIFO batch:31\n[    0.000000] -(0)[0:swapper]  Movable zone: 1344 pages used for memmap\n[    0.000000] -(0)[0:swapper]  Movable zone: 86015 pages, LIFO batch:15\n[    0.000000] -(0)[0:swapper]psci: probing for conduit method from DT.\n[    0.000000] -(0)[0:swapper]psci: PSCIv1.1 detected in firmware.\n[    0.000000] -(0)[0:swapper]psci: Using standard PSCI v0.2 function IDs\n[    0.000000] -(0)[0:swapper]psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] -(0)[0:swapper]psci: SMC Calling Convention v1.1\n[    0.000000] -(0)[0:swapper]random: get_random_bytes called from start_kernel+0x8c/0x46c with crng_init=0\n[    0.000000] -(0)[0:swapper]percpu: Embedded 23 pages/cpu s55320 r8192 d30696 u94208\n[    0.000000] -(0)[0:swapper]pcpu-alloc: s55320 r8192 d30696 u94208 alloc=23*4096\n[    0.000000] -(0)[0:swapper]pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] -(0)[0:swapper]Detected VIPT I-cache on CPU0\n[    0.000000] -(0)[0:swapper]Built 1 zonelists, mobility grouping on.  Total pages: 886248\n[    0.000000] -(0)[0:swapper]Kernel command line: console=tty0 console=ttyS0,921600n1 root=/dev/ram vmalloc=400M slub_debug=OFZPU swiotlb=noforce firmware_class.path=/vendor/firmware page_owner=on loop.max_part=7 has_battery_removed=0 androidboot.boot_devices=bootdevice,11230000.mmc root=/dev/ram  androidboot.verifiedbootstate=orange bootopt=64S3,32N2,64N2 buildvariant=user rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.atm=disabled androidboot.meta_log_disable=0 printk.disable_uart=1 bootprof.pl_t=1711 bootprof.lk_t=5971 bootprof.logo_t=2319 androidboot.serialno=REDACTED LCM_name=dsi_vdo_j22_42_02_0a_lcm_drv androidboot.bootreason=reboot androidboot.hwc=GL androidboot.hwlevel=MP androidboot.hwversion=1.19.0 androidboot.secureboot=1 androidboot.dp=7 androidboot.chipid=0xcc5ace5c25fe72ee4dfc37120d1f987d androidboot.cpuid=REDACTED gpt=1 usb2jtag_mode=0 mrdump_ddrsv=yes mrdump_cb=0x11e000,0x2000 android\n[    0.000000] -(0)[0:swapper]PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] -(0)[0:swapper]Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] -(0)[0:swapper]Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] -(0)[0:swapper]software IO TLB: mapped [mem 0xbfff1000-0xbfff1800] (0MB)\n[    0.000000] -(0)[0:swapper]Memory: 2938652K/3945348K available (15806K kernel code, 2466K rwdata, 6128K rodata, 5568K init, 11185K bss, 679016K reserved, 327680K cma-reserved)\n[    0.000000] -(0)[0:swapper]Virtual kernel memory layout:\n[    0.000000] -(0)[0:swapper]    modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n[    0.000000] -(0)[0:swapper]    vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)\n[    0.000000] -(0)[0:swapper]      .text : 0x        (ptrval) - 0x        (ptrval)   ( 15808 KB)\n[    0.000000] -(0)[0:swapper]    .rodata : 0x        (ptrval) - 0x        (ptrval)   (  6208 KB)\n[    0.000000] -(0)[0:swapper]      .init : 0x        (ptrval) - 0x        (ptrval)   (  5568 KB)\n[    0.000000] -(0)[0:swapper]      .data : 0x        (ptrval) - 0x        (ptrval)   (  2466 KB)\n[    0.000000] -(0)[0:swapper]       .bss : 0x        (ptrval) - 0x        (ptrval)   ( 11186 KB)\n[    0.000000] -(0)[0:swapper]    fixed   : 0xffffffbefe7fb000 - 0xffffffbefec00000   (  4116 KB)\n[    0.000000] -(0)[0:swapper]    PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)\n[    0.000000] -(0)[0:swapper]    vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)\n[    0.000000] -(0)[0:swapper]              0xffffffbf71000000 - 0xffffffbf74ffffc0   (    63 MB actual)\n[    0.000000] -(0)[0:swapper]    memory  : 0xffffffdc40000000 - 0xffffffdd3ffff000   (  4095 MB)\n[    0.000000] -(0)[0:swapper]SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] -(0)[0:swapper]\n[    0.000000] -(0)[0:swapper]**********************************************************\n[    0.000000] -(0)[0:swapper]**   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] -(0)[0:swapper]**                                                      **\n[    0.000000] -(0)[0:swapper]** trace_printk() being used. Allocating extra memory.  **\n[    0.000000] -(0)[0:swapper]**                                                      **\n[    0.000000] -(0)[0:swapper]** This means that this is a DEBUG kernel and it is     **\n[    0.000000] -(0)[0:swapper]** unsafe for production use.                           **\n[    0.000000] -(0)[0:swapper]**                                                      **\n[    0.000000] -(0)[0:swapper]** If you see this message and you are not debugging    **\n[    0.000000] -(0)[0:swapper]** the kernel, report this immediately to your vendor!  **\n[    0.000000] -(0)[0:swapper]**                                                      **\n[    0.000000] -(0)[0:swapper]**   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] -(0)[0:swapper]**********************************************************\n[    0.000000] -(0)[0:swapper/0]sched-energy: CPU0: update cpu_capacity 366\n[    0.000000] -(0)[0:swapper/0]sched-energy: CPU1: update cpu_capacity 366\n[    0.000000] -(0)[0:swapper/0]sched-energy: CPU2: update cpu_capacity 366\n[    0.000000] -(0)[0:swapper/0]sched-energy: CPU3: update cpu_capacity 366\n[    0.000000] -(0)[0:swapper/0]sched-energy: CPU4: update cpu_capacity 366\n[    0.000000] -(0)[0:swapper/0]sched-energy: CPU5: update cpu_capacity 366\n[    0.000000] -(0)[0:swapper/0]sched-energy: CPU6: update cpu_capacity 1024\n[    0.000000] -(0)[0:swapper/0]sched-energy: CPU7: update cpu_capacity 1024\n[    0.000000] -(0)[0:swapper/0]Preemptible hierarchical RCU implementation.\n[    0.000000] -(0)[0:swapper/0]\tTasks RCU enabled.\n[    0.000000] -(0)[0:swapper/0]NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] -(0)[0:swapper/0]GICv3: GIC: Using split EOI/Deactivate mode\n[    0.000000] -(0)[0:swapper/0]GICv3: no VLPI support, no direct LPI support\n[    0.000000] -(0)[0:swapper/0]GICv3: CPU0: found redistributor 0 region 0:0x000000000c040000\n[    0.000000] -(0)[0:swapper/0]### gic-v3 init done. ###\n[    0.000000] -(0)[0:swapper/0]NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] -(0)[0:swapper/0]\tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] -(0)[0:swapper/0]arch_timer: cp15 timer(s) running at 13.00MHz (phys).\n[    0.000000] -(0)[0:swapper/0]clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2ff89eacb, max_idle_ns: 440795202429 ns\n[    0.000003] -(0)[0:swapper/0]sched_clock: 56 bits at 13MHz, resolution 76ns, wraps every 4398046511101ns\n[    0.000288] -(0)[0:swapper/0]base=0xffffff8008005000, irq=6\n[    0.000293] -(0)[0:swapper/0]stmr0, base=0xffffff8008005040\n[    0.000316] -(0)[0:swapper/0]stmr0, mult=55834574, shift=32, hz=100, freq=13000000\n[    0.000325] -(0)[0:swapper/0]clkevt, freq=13000000\n[    0.000949]  (0)[0:swapper/0]ram_console:[DT] 0x800@0x11d000, 0x1(0xec0)\n[    0.000965]  (0)[0:swapper/0]ram_console: [DT] 0xe0000@0x4d010000-0x10000@0x4d0f0000\n[    0.000979]  (0)[0:swapper/0]ram_console: using sram:0x11d000\n[    0.000986]  (0)[0:swapper/0]ram_console: buffer start: 0xffffff8008015000, size: 0x800\n[    0.001301]  (0)[0:swapper/0]pmic & external buck: 0xff\n[    0.001306]  (0)[0:swapper/0]ram_console: CPU notifier status: 0, 0, 0x0, 0\n[    0.001311]  (0)[0:swapper/0]ram_console: CPU HPS footprint: 0, 0x0, 0, 0\n[    0.001315]  (0)[0:swapper/0]ram_console: last init function: 0xffffffffffffffff\n[    0.001455]  (0)[0:swapper/0]Calibrating delay loop (skipped), value calculated using timer frequency.. 26.00 BogoMIPS (lpj=130000)\n[    0.001464]  (0)[0:swapper/0]pid_max: default: 32768 minimum: 301\n[    0.001531]  (0)[0:swapper/0]Security Framework initialized\n[    0.001540]  (0)[0:swapper/0]SELinux:  Initializing.\n[    0.001579]  (0)[0:swapper/0]SELinux:  Starting in permissive mode\n[    0.001614]  (0)[0:swapper/0]Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001627]  (0)[0:swapper/0]Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.002224] -(0)[0:swapper/0]assertion failed at ../drivers/misc/mediatek/sched/sched_avg.c:1001\n[    0.002264] -(0)[0:swapper/0]assertion failed at ../drivers/misc/mediatek/sched/sched_avg.c:1001\n[    0.002275] -(0)[0:swapper/0]assertion failed at ../drivers/misc/mediatek/sched/sched_avg.c:1001\n[    0.002279] -(0)[0:swapper/0]assertion failed at ../drivers/misc/mediatek/sched/sched_avg.c:1001\n[    0.002294] -(0)[2:kthreadd]assertion failed at ../drivers/misc/mediatek/sched/sched_avg.c:1001\n[    0.002299] -(0)[2:kthreadd]assertion failed at ../drivers/misc/mediatek/sched/sched_avg.c:1001\n[    0.002306] -(0)[2:kthreadd]assertion failed at ../drivers/misc/mediatek/sched/sched_avg.c:1001\n[    0.002313] -(0)[2:kthreadd]assertion failed at ../drivers/misc/mediatek/sched/sched_avg.c:1001\n[    0.002317] -(0)[2:kthreadd]assertion failed at ../drivers/misc/mediatek/sched/sched_avg.c:1001\n[    0.002320] -(0)[2:kthreadd]assertion failed at ../drivers/misc/mediatek/sched/sched_avg.c:1001\n[    0.002327] -(0)[2:kthreadd]assertion failed at ../drivers/misc/mediatek/sched/sched_avg.c:1001\n[    0.002330] -(0)[2:kthreadd]assertion failed at ../drivers/misc/mediatek/sched/sched_avg.c:1001\n[    0.002334] -(0)[2:kthreadd]assertion failed at ../drivers/misc/mediatek/sched/sched_avg.c:1001\n[    0.002339] -(0)[2:kthreadd]assertion failed at ../drivers/misc/mediatek/sched/sched_avg.c:1001\n[    0.002343] -(0)[2:kthreadd]assertion failed at ../drivers/misc/mediatek/sched/sched_avg.c:1001\n[    0.002512] -(0)[1:swapper/0]init_heavy_tlb start.\n[    0.002520] -(0)[1:swapper/0]init_heavy_tlb: cpu=0 thresh_l=2147483647 thresh_h=358 max_capaicy=1024\n[    0.002525] -(0)[1:swapper/0]init_heavy_tlb: cpu=1 thresh_l=2147483647 thresh_h=358 max_capaicy=1024\n[    0.002529] -(0)[1:swapper/0]init_heavy_tlb: cpu=2 thresh_l=2147483647 thresh_h=358 max_capaicy=1024\n[    0.002533] -(0)[1:swapper/0]init_heavy_tlb: cpu=3 thresh_l=2147483647 thresh_h=358 max_capaicy=1024\n[    0.002537] -(0)[1:swapper/0]init_heavy_tlb: cpu=4 thresh_l=2147483647 thresh_h=358 max_capaicy=1024\n[    0.002541] -(0)[1:swapper/0]init_heavy_tlb: cpu=5 thresh_l=2147483647 thresh_h=358 max_capaicy=1024\n[    0.002545] -(0)[1:swapper/0]init_heavy_tlb: cpu=6 thresh_l=358 thresh_h=2147483647 max_capaicy=1024\n[    0.002549] -(0)[1:swapper/0]init_heavy_tlb: cpu=7 thresh_l=358 thresh_h=2147483647 max_capaicy=1024\n[    0.039823]  (0)[1:swapper/0]ASID allocator initialised with 32768 entries\n[    0.059837]  (0)[1:swapper/0]Hierarchical SRCU implementation.\n[    0.083146]  (0)[1:swapper/0]tag_devinfo_data size:220, HRID size:4\n[    0.083154]  (0)[1:swapper/0][devinfo][SegCode] Segment Code=0x20\n[    0.083162]  (0)[1:swapper/0]BOOTPROF:        83.159999: ON\n[    0.083240]  (0)[1:swapper/0][BOOT_REASON] 'boot_reason=' is not found\n[    0.083293]  (0)[1:swapper/0]log_store:[DT] log_store: 0x11df00@0x100\n[    0.083301]  (0)[1:swapper/0]log_store: get ok, sram addr:0x11df00, size:0x100\n[    0.083312]  (0)[1:swapper/0]log_store: sram header address 0x        (ptrval).\n[    0.083318]  (0)[1:swapper/0]log_store printk log buff addr:0x41de1da8, size 0x200000. buff flag 0x427.\n[    0.083324]  (0)[1:swapper/0]sig 0x5678ef90 flag 0x427 add 0x7ffbf000 size 0x40000 offsize 0x20 point 0x23edb\n[    0.099884]  (0)[1:swapper/0]smp: Bringing up secondary CPUs ...\n[    0.170694] -(1)[0:swapper/1]Detected VIPT I-cache on CPU1\n[    0.170723] -(1)[0:swapper/1]GICv3: CPU1: found redistributor 100 region 0:0x000000000c060000\n[    0.170751] -(1)[0:swapper/1]CPU1: Booted secondary processor [412fd050]\n[    0.191023] -(2)[0:swapper/2]Detected VIPT I-cache on CPU2\n[    0.191047] -(2)[0:swapper/2]GICv3: CPU2: found redistributor 200 region 0:0x000000000c080000\n[    0.191071] -(2)[0:swapper/2]CPU2: Booted secondary processor [412fd050]\n[    0.192400] -(3)[0:swapper/3]Detected VIPT I-cache on CPU3\n[    0.192422] -(3)[0:swapper/3]GICv3: CPU3: found redistributor 300 region 0:0x000000000c0a0000\n[    0.192443] -(3)[0:swapper/3]CPU3: Booted secondary processor [412fd050]\n[    0.193733] -(4)[0:swapper/4]Detected VIPT I-cache on CPU4\n[    0.193755] -(4)[0:swapper/4]GICv3: CPU4: found redistributor 400 region 0:0x000000000c0c0000\n[    0.193777] -(4)[0:swapper/4]CPU4: Booted secondary processor [412fd050]\n[    0.195077] -(5)[0:swapper/5]Detected VIPT I-cache on CPU5\n[    0.195098] -(5)[0:swapper/5]GICv3: CPU5: found redistributor 500 region 0:0x000000000c0e0000\n[    0.195117] -(5)[0:swapper/5]CPU5: Booted secondary processor [412fd050]\n[    0.196479] -(6)[0:swapper/6]CPU features: enabling workaround for Mismatched cache type\n[    0.196484] -(6)[0:swapper/6]Detected PIPT I-cache on CPU6\n[    0.196490] -(6)[0:swapper/6]CPU features: SANITY CHECK: Unexpected variation in SYS_CTR_EL0. Boot CPU: 0x00000084448004, CPU6: 0x0000009444c004\n[    0.196496] -(6)[0:swapper/6]CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU6: 0x1100000011111112\n[    0.196501] -(6)[0:swapper/6]CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU6: 0x00000000010142\n[    0.196506] -(6)[0:swapper/6]CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU6: 0x00000010010131\n[    0.196509] -(6)[0:swapper/6]CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU6: 0x00000010010000\n[    0.196511] -(6)[0:swapper/6]CPU features: Unsupported CPU feature variation detected.\n[    0.196519] -(6)[0:swapper/6]GICv3: CPU6: found redistributor 600 region 0:0x000000000c100000\n[    0.196534] -(6)[0:swapper/6]CPU6: Booted secondary processor [414fd0b0]\n[    0.197799] -(7)[0:swapper/7]Detected PIPT I-cache on CPU7\n[    0.197805] -(7)[0:swapper/7]CPU features: SANITY CHECK: Unexpected variation in SYS_CTR_EL0. Boot CPU: 0x00000084448004, CPU7: 0x0000009444c004\n[    0.197812] -(7)[0:swapper/7]CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU7: 0x1100000011111112\n[    0.197817] -(7)[0:swapper/7]CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU7: 0x00000000010142\n[    0.197822] -(7)[0:swapper/7]CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU7: 0x00000010010131\n[    0.197824] -(7)[0:swapper/7]CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU7: 0x00000010010000\n[    0.197834] -(7)[0:swapper/7]GICv3: CPU7: found redistributor 700 region 0:0x000000000c120000\n[    0.197848] -(7)[0:swapper/7]CPU7: Booted secondary processor [414fd0b0]\n[    0.197935]  (0)[1:swapper/0]smp: Brought up 1 node, 8 CPUs\n[    0.197946]  (0)[1:swapper/0]SMP: Total of 8 processors activated.\n[    0.197952]  (0)[1:swapper/0]CPU features: detected feature: GIC system register CPU interface\n[    0.197956]  (0)[1:swapper/0]CPU features: detected feature: Privileged Access Never\n[    0.197960]  (0)[1:swapper/0]CPU features: detected feature: User Access Override\n[    0.197965]  (0)[1:swapper/0]CPU features: detected feature: 32-bit EL0 Support\n[    0.197970]  (0)[1:swapper/0]CPU features: detected feature: Kernel page table isolation (KPTI)\n[    0.197974]  (0)[1:swapper/0]------------[ cut here ]------------\n[    0.197988]  (0)[1:swapper/0]WARNING: CPU: 0 PID: 1 at ../arch/arm64/kernel/cpufeature.c:755 has_cpuid_feature+0x40c/0x410\n[    0.197992]  (0)[1:swapper/0]Modules linked in:\n[    0.198002] -(0)[1:swapper/0]CPU: 0 PID: 1 Comm: swapper/0 Tainted: G S              4.14.141-g37f4efb4a #249\n[    0.198006] -(0)[1:swapper/0]Hardware name: MT6853T (DT)\n[    0.198011] -(0)[1:swapper/0]Call trace:\n[    0.198020] -(0)[1:swapper/0][<ffffff828808ca04>] dump_backtrace+0x0/0x508\n[    0.198027] -(0)[1:swapper/0][<ffffff828808cf20>] show_stack+0x14/0x1c\n[    0.198035] -(0)[1:swapper/0][<ffffff8288fc1218>] dump_stack+0xc4/0xfc\n[    0.198042] -(0)[1:swapper/0][<ffffff82880ae1e0>] __warn+0xdc/0x168\n[    0.198048] -(0)[1:swapper/0][<ffffff82880ae3b0>] warn_slowpath_null+0x1c/0x24\n[    0.198054] -(0)[1:swapper/0][<ffffff8288092b1c>] has_cpuid_feature+0x40c/0x410\n[    0.198061] -(0)[1:swapper/0][<ffffff8288091c38>] update_cpu_capabilities+0x4c/0xd8\n[    0.198068] -(0)[1:swapper/0][<ffffff8289604ecc>] setup_cpu_features+0x2c/0x3b0\n[    0.198075] -(0)[1:swapper/0][<ffffff828960535c>] smp_cpus_done+0x28/0x94\n[    0.198081] -(0)[1:swapper/0][<ffffff8289612770>] smp_init+0x160/0x17c\n[    0.198088] -(0)[1:swapper/0][<ffffff8289600f1c>] kernel_init_freeable+0xd8/0x234\n[    0.198095] -(0)[1:swapper/0][<ffffff8288fd5748>] kernel_init+0x10/0x214\n[    0.198101] -(0)[1:swapper/0][<ffffff8288085658>] ret_from_fork+0x10/0x18\n[    0.198109]  (0)[1:swapper/0]---[ end trace bebbd334637347ca ]---\n[    0.198113]  (0)[1:swapper/0]CPU features: detected feature: Speculative Store Bypassing Safe (SSBS)\n[    0.203669]  (0)[1:swapper/0]CPU: All CPU(s) started at EL2\n[    0.203710] -(0)[14:migration/0]alternatives: patching kernel code\n[    0.205244]  (0)[1:swapper/0]Sort hmp_domains from little to big:\n[    0.205250]  (0)[1:swapper/0]    cpumask: 0x3f\n[    0.205254]  (0)[1:swapper/0]    cpumask: 0xc0\n[    0.205257]  (0)[1:swapper/0]Initializing HMP scheduler:\n[    0.205262]  (0)[1:swapper/0]Initializing HMP scheduler done\n[    0.205301]  (0)[1:swapper/0]WARN: cpu=0, domain=MC: incr. energy eff 249[0]->273[1]\n[    0.205308]  (0)[1:swapper/0]CPU0: update max cpu_capacity 366\n[    0.223860]  (0)[1:swapper/0]\n                register_restart_handler- 0x        (ptrval), Notify call: - 0x        (ptrval)\n[    0.223867]  (0)[1:swapper/0]ARCH_RESET register mtk_restart_handler  ok!!!!\n[    0.224222]  (0)[1:swapper/0]Registered cp15_barrier emulation handler\n[    0.224233]  (0)[1:swapper/0]Registered setend emulation handler\n[    0.224487]  (0)[1:swapper/0]clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.224501]  (0)[1:swapper/0]futex hash table entries: 2048 (order: 5, 131072 bytes)\n[    0.233613]  (0)[1:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[    0.235960]  (0)[1:swapper/0]pinctrl core: initialized pinctrl subsystem\n[    0.236522]  (0)[1:swapper/0]mtk_dbgtop_get_base_addr: compatible node found: dbgtop\n[    0.236602]  (0)[1:swapper/0]set_sram_flag_timestamp: tick=0x718afc7, ts=236599076\n[    0.236608]  (0)[1:swapper/0]set_sram_flag_timestamp: kernel_start_tick = 0x6e9c0fe\n[    0.237840]  (0)[1:swapper/0]mtk_wdt_get_base_addr: compatible node found: toprgu\n[    0.238060]  (0)[1:swapper/0]NET: Registered protocol family 16\n[    0.238664]  (0)[1:swapper/0]schedtune: configured to support 10 boost groups\n[    0.238793]  (0)[1:swapper/0]ramoops: using module parameters\n[    0.238886]  (0)[1:swapper/0]ramoops: pstore:address is 0x4d010000, size is 0xe0000, console_size is 0x40000, pmsg_size is 0x10000\n[    0.243642]  (0)[1:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[    0.243838]  (0)[1:swapper/0]pstore: using zlib compression\n[    0.243881]  (0)[1:swapper/0]console [pstore-1] enabled\n[    0.243960]  (0)[1:swapper/0]pstore: Registered ramoops as persistent store backend\n[    0.243967]  (0)[1:swapper/0]ramoops: attached 0xe0000@0x4d010000, ecc: 0/0\n[    0.244424]  (0)[1:swapper/0]bus_tracer_init: running...\n[    0.244568]  (0)[1:swapper/0]mtk_wdt_init ok\n[    0.244756]  (0)[1:swapper/0]cpuidle: using governor menu\n[    0.244792]  (0)[1:swapper/0]cpuidle: using governor mtk_menu\n[    0.245279]  (0)[1:swapper/0]vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.245288]  (0)[1:swapper/0]hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.245575]  (0)[1:swapper/0]DMA: preallocated 256 KiB pool for atomic allocations\n[    0.245969]  (0)[1:swapper/0][Power/PPM] cluster_num = 2\n[    0.245977]  (0)[1:swapper/0][Power/PPM] ppm cluster 0 -> core_num = 6, cpu_id = 0\n[    0.245981]  (0)[1:swapper/0][Power/PPM] ppm cluster 1 -> core_num = 2, cpu_id = 6\n[    0.245988]  (0)[1:swapper/0][Power/PPM] @ppm_main_data_init: done!\n[    0.246104]  (0)[1:swapper/0][Power/PPM] @ppm_main_pdrv_probe: ppm probe done!\n[    0.246133]  (0)[1:swapper/0][Power/PPM] ppm_profile_init done\n[    0.246148]  (0)[1:swapper/0][Power/PPM] ppm driver init done (no DoE)!\n[    0.246480]  (0)[1:swapper/0]mrdump_dbgtop_dram_reserved: DDR Reserved Mode ready or not? (yes)\n[    0.246486]  (0)[1:swapper/0]mrdump_dbgtop_dram_reserved: Trying to enable DDR Reserve Mode(1)\n[    0.246493]  (0)[1:swapper/0]mtk_dbgtop_dram_reserved: MTK_DBGTOP_MODE(0x1)\n[    0.246497]  (0)[1:swapper/0]mrdump_dbgtop_dram_reserved: DDR reserved mode enable ok\n[    0.246516]  (0)[1:swapper/0]mrdump_dbgtop_dram_reserved: DFD_BASIC_DUMP enabled\n[    0.246520]  (0)[1:swapper/0]mrdump_hw_init: init_done.\n[    0.249554]  (0)[1:swapper/0]mrdump_cblock_init: done.\n[    0.249939]  (0)[1:swapper/0]minirdump: [DT] reserved 0x4d0f0000+0x10000->        (ptrval)\n[    0.250395]  (0)[1:swapper/0]mrdump_full_init: MT-RAMDUMP init failed, lk version  not matched.\n[    0.250604]  (0)[1:swapper/0]\n                MTK_SIP_KERNEL_WDT - 0x        (ptrval)\n[    0.250614]  (0)[1:swapper/0]\n                atf_aee_debug_virt_addr = 0x        (ptrval)\n[    0.253636]  (0)[1:swapper/0]clk_mt6853_top_probe init begin\n[    0.397257]  (0)[1:swapper/0]clk_mt6853_top_probe init end\n[    0.397279]  (0)[1:swapper/0]BOOTPROF:       397.276077:probe: probe=platform_drv_probe drv=clk-mt6853(0xffffff8289beedf8)   143.633770ms\n[    0.397465]  (0)[1:swapper/0]clk_mt6853_ifrao_probe init begin\n[    0.496758]  (0)[1:swapper/0]clk_mt6853_ifrao_probe init end\n[    0.496773]  (0)[1:swapper/0]BOOTPROF:       496.770846:probe: probe=platform_drv_probe drv=clk-mt6853(0xffffff8289beedf8)    99.303693ms\n[    0.526274]  (0)[1:swapper/0]BOOTPROF:       526.271385:probe: probe=platform_drv_probe drv=clk-mt6853-scpsys(0xffffff8289bf0780)    29.316693ms\n[    0.527485]  (0)[1:swapper/0]clk_mt6853_peri_probe init begin\n[    0.527509]  (0)[1:swapper/0]clk_mt6853_peri_probe init end\n[    0.530376] -(0)[1:swapper/0]genirq: irq_chip GICv3 did not update eff. affinity mask of irq 25\n[    0.531382]  (0)[1:swapper/0]mtk wdt driver probe ..\n[    0.531403]  (0)[1:swapper/0]wdt_sspm_irq_id is not found\n[    0.531544]  (0)[1:swapper/0]ext_debugkey_eint=1\n[    0.532096]  (0)[1:swapper/0]clk_mt6853_apmixed_probe init begin\n[    0.544496]  (0)[1:swapper/0]clk_mt6853_apmixed_probe init end\n[    0.545130]  (0)[1:swapper/0]mt-pmic-pwrap 10026000.pwrap: [PWRAP] Write Test pass\n[    0.545209]  (0)[1:swapper/0]mt-pmic-pwrap 10026000.pwrap: [PWRAP] kthread_create done\n[    0.549139]  (0)[1:swapper/0]systracker probe\n[    0.549165]  (0)[1:swapper/0]of_iomap for systracker @ 0x        (ptrval)\n[    0.549173]  (0)[1:swapper/0][systracker] bus_dbg_con is in infra_ao\n[    0.549186]  (0)[1:swapper/0]systracker_platform_probe_default:117: irq # 0\n[    0.552940]  (0)[1:swapper/0][DEVMPU] Device MPU probe: 1021a000.device_mpu_low\n[    0.552988]  (0)[1:swapper/0][DEVMPU] Create context [0]\n[    0.552994]  (0)[1:swapper/0][DEVMPU] reg_base=0xffffff8008829000\n[    0.552998]  (0)[1:swapper/0][DEVMPU] prot_base=0x40000000\n[    0.553002]  (0)[1:swapper/0][DEVMPU] prot_size=0x400000000\n[    0.553006]  (0)[1:swapper/0][DEVMPU] page_size=0x200000\n[    0.553010]  (0)[1:swapper/0][DEVMPU] virq=0xb1\n[    0.555568]  (0)[1:swapper/0][cmdq] cmdq_sec_probe\n[    0.555825]  (0)[1:swapper/0][cmdq] cmdq_util_track_ctrl cmdq:        (ptrval) sec:true\n[    0.555832]  (0)[1:swapper/0]MMP: mmprofile_enable(): enable: 1\n[    0.555849]  (0)[1:swapper/0]MMP: mmprofile_force_start(): start: 1\n[    0.556490]  (0)[1:swapper/0][cmdq] cmdq:        (ptrval)(0) va:        (ptrval) pa:0x0000000010228000\n[    0.560857]  (0)[1:swapper/0]pmif 10027000.spmi: [PMIF]:mtk-pmif arb infra ao base:0x883d000\n[    0.560909]  (0)[1:swapper/0]pmif 10027000.spmi: [PMIF]:mtk-pmif arb topckgen base:0x88c2000\n[    0.561023]  (0)[1:swapper/0]pmif 10027000.spmi: [PMIF]:mtk-pmif arb toprgu base:0x88c4000\n[    0.561092]  (0)[1:swapper/0]pmif 10027000.spmi: [PMIF]:enable ulposc1 osc d10.\n[    0.561164]  (0)[1:swapper/0]pmif 10027000.spmi: [SPMIMST]:enable ulposc1 osc d10.\n[    0.561183]  (0)[1:swapper/0][SPMIMST]:mtk_spmimst_init done\n[    0.561979]  (0)[1:swapper/0]amms_dev->dma_ops=0x0xffffff8289257088\n[    0.561985]  (0)[1:swapper/0]amms irq num 185\n[    0.562989]  (0)[1:swapper/0][DEVMPU] Device MPU probe: 1030d000.device_mpu_acp\n[    0.563044]  (0)[1:swapper/0][DEVMPU] Create context [1]\n[    0.563049]  (0)[1:swapper/0][DEVMPU] reg_base=0xffffff80088cd000\n[    0.563053]  (0)[1:swapper/0][DEVMPU] prot_base=0x40000000\n[    0.563057]  (0)[1:swapper/0][DEVMPU] prot_size=0x400000000\n[    0.563061]  (0)[1:swapper/0][DEVMPU] page_size=0x200000\n[    0.563065]  (0)[1:swapper/0][DEVMPU] virq=0xbe\n[    0.563770]  (0)[1:swapper/0]clk_mt6853_scp_par_probe init begin\n[    0.564151]  (0)[1:swapper/0]clk_mt6853_scp_par_probe init end\n[    0.565155]  (0)[1:swapper/0]sspm 10400000.sspm: invalid resource\n[    0.565161]  (0)[1:swapper/0]MBOX 0 can't find init reg\n[    0.565176]  (0)[1:swapper/0]sspm 10400000.sspm: invalid resource\n[    0.565180]  (0)[1:swapper/0]MBOX 0 can't find send status reg\n[    0.565187]  (0)[1:swapper/0]sspm 10400000.sspm: invalid resource\n[    0.565191]  (0)[1:swapper/0]MBOX 0 can't find recv status reg\n[    0.565233]  (0)[1:swapper/0]sspm 10400000.sspm: invalid resource\n[    0.565237]  (0)[1:swapper/0]MBOX 1 can't find init reg\n[    0.565252]  (0)[1:swapper/0]sspm 10400000.sspm: invalid resource\n[    0.565256]  (0)[1:swapper/0]MBOX 1 can't find send status reg\n[    0.565263]  (0)[1:swapper/0]sspm 10400000.sspm: invalid resource\n[    0.565266]  (0)[1:swapper/0]MBOX 1 can't find recv status reg\n[    0.565304]  (0)[1:swapper/0]sspm 10400000.sspm: invalid resource\n[    0.565308]  (0)[1:swapper/0]MBOX 2 can't find init reg\n[    0.565326]  (0)[1:swapper/0]sspm 10400000.sspm: invalid resource\n[    0.565330]  (0)[1:swapper/0]MBOX 2 can't find send status reg\n[    0.565336]  (0)[1:swapper/0]sspm 10400000.sspm: invalid resource\n[    0.565340]  (0)[1:swapper/0]MBOX 2 can't find recv status reg\n[    0.565379]  (0)[1:swapper/0]sspm 10400000.sspm: invalid resource\n[    0.565383]  (0)[1:swapper/0]MBOX 3 can't find init reg\n[    0.565398]  (0)[1:swapper/0]sspm 10400000.sspm: invalid resource\n[    0.565402]  (0)[1:swapper/0]MBOX 3 can't find send status reg\n[    0.565408]  (0)[1:swapper/0]sspm 10400000.sspm: invalid resource\n[    0.565412]  (0)[1:swapper/0]MBOX 3 can't find recv status reg\n[    0.565449]  (0)[1:swapper/0]sspm 10400000.sspm: invalid resource\n[    0.565453]  (0)[1:swapper/0]MBOX 4 can't find init reg\n[    0.565469]  (0)[1:swapper/0]sspm 10400000.sspm: invalid resource\n[    0.565472]  (0)[1:swapper/0]MBOX 4 can't find send status reg\n[    0.565479]  (0)[1:swapper/0]sspm 10400000.sspm: invalid resource\n[    0.565482]  (0)[1:swapper/0]MBOX 4 can't find recv status reg\n[    0.565597]  (0)[1:swapper/0]sspm_ipidev (with 17 IPI) has registered.\n[    0.565602]  (0)[1:swapper/0]SSPM is ready to service IPI\n[    0.566783]  (0)[1:swapper/0][MCUPM]  mbox-0, probe\n[    0.566809]  (0)[1:swapper/0]mcupm c540000.mcupm: invalid resource\n[    0.566814]  (0)[1:swapper/0]MBOX 0 can't find init reg\n[    0.566867]  (0)[1:swapper/0][MCUPM]  mbox-1, probe\n[    0.566902]  (0)[1:swapper/0][MCUPM]  mbox-2, probe\n[    0.566934]  (0)[1:swapper/0][MCUPM]  mbox-3, probe\n[    0.566970]  (0)[1:swapper/0][MCUPM]  mbox-4, probe\n[    0.567004]  (0)[1:swapper/0][MCUPM]  mbox-5, probe\n[    0.567042]  (0)[1:swapper/0][MCUPM]  mbox-6, probe\n[    0.567076]  (0)[1:swapper/0][MCUPM]  mbox-7, probe\n[    0.567176]  (0)[1:swapper/0]mcupm_ipidev (with 8 IPI) has registered.\n[    0.567181]  (0)[1:swapper/0]MCUPM is ready to service IPI\n[    0.569584]  (0)[1:swapper/0]clk_mt6853_audsys_probe init begin\n[    0.577834]  (0)[1:swapper/0]clk_mt6853_audsys_probe init end\n[    0.578692]  (0)[1:swapper/0]clk_mt6853_impc_probe init begin\n[    0.579280]  (0)[1:swapper/0]clk_mt6853_impc_probe init end\n[    0.579425]  (0)[1:swapper/0]clk_mt6853_impe_probe init begin\n[    0.579736]  (0)[1:swapper/0]clk_mt6853_impe_probe init end\n[    0.579876]  (0)[1:swapper/0]clk_mt6853_impn_probe init begin\n[    0.580182]  (0)[1:swapper/0]clk_mt6853_impn_probe init end\n[    0.580326]  (0)[1:swapper/0]clk_mt6853_imps_probe init begin\n[    0.581436]  (0)[1:swapper/0]clk_mt6853_imps_probe init end\n[    0.582307]  (0)[1:swapper/0]clk_mt6853_impw_probe init begin\n[    0.582624]  (0)[1:swapper/0]clk_mt6853_impw_probe init end\n[    0.582770]  (0)[1:swapper/0]clk_mt6853_impws_probe init begin\n[    0.583625]  (0)[1:swapper/0]clk_mt6853_impws_probe init end\n[    0.584444]  (0)[1:swapper/0]clk_mt6853_mfgcfg_probe init begin\n[    0.584799]  (0)[1:swapper/0]clk_mt6853_mfgcfg_probe init end\n[    0.585038]  (0)[1:swapper/0]clk_mt6853_mm_probe init begin\n[    0.592508]  (0)[1:swapper/0]clk_mt6853_mm_probe init end\n[    0.602043]  (0)[1:swapper/0]clk_mt6853_imgsys1_probe init begin\n[    0.603278]  (0)[1:swapper/0]clk_mt6853_imgsys1_probe init end\n[    0.607046]  (0)[1:swapper/0]clk_mt6853_imgsys2_probe init begin\n[    0.608893]  (0)[1:swapper/0]clk_mt6853_imgsys2_probe init end\n[    0.609984]  (0)[1:swapper/0]clk_mt6853_vdec_probe init begin\n[    0.610968]  (0)[1:swapper/0]clk_mt6853_vdec_probe init end\n[    0.611124]  (0)[1:swapper/0]clk_mt6853_venc_probe init begin\n[    0.612383]  (0)[1:swapper/0]clk_mt6853_venc_probe init end\n[    0.612852]  (0)[1:swapper/0]------------[ cut here ]------------\n[    0.612870]  (0)[1:swapper/0]WARNING: CPU: 0 PID: 1 at ../fs/sysfs/dir.c:31 sysfs_create_dir_ns+0xbc/0xf4\n[    0.612875]  (0)[1:swapper/0]sysfs: cannot create duplicate filename '/devices/platform/17020000.venc'\n[    0.612879]  (0)[1:swapper/0]Modules linked in:\n[    0.612889] -(0)[1:swapper/0]CPU: 0 PID: 1 Comm: swapper/0 Tainted: G S      W       4.14.141-g37f4efb4a #249\n[    0.612893] -(0)[1:swapper/0]Hardware name: MT6853T (DT)\n[    0.612898] -(0)[1:swapper/0]Call trace:\n[    0.612907] -(0)[1:swapper/0][<ffffff828808ca04>] dump_backtrace+0x0/0x508\n[    0.612914] -(0)[1:swapper/0][<ffffff828808cf20>] show_stack+0x14/0x1c\n[    0.612922] -(0)[1:swapper/0][<ffffff8288fc1218>] dump_stack+0xc4/0xfc\n[    0.612929] -(0)[1:swapper/0][<ffffff82880ae1e0>] __warn+0xdc/0x168\n[    0.612935] -(0)[1:swapper/0][<ffffff82880ae2dc>] warn_slowpath_fmt+0x70/0x94\n[    0.612942] -(0)[1:swapper/0][<ffffff8288303888>] sysfs_create_dir_ns+0xbc/0xf4\n[    0.612949] -(0)[1:swapper/0][<ffffff8288fc7dfc>] kobject_add_internal+0x23c/0x448\n[    0.612955] -(0)[1:swapper/0][<ffffff8288fc6fd0>] kobject_add+0xe0/0x114\n[    0.612963] -(0)[1:swapper/0][<ffffff8288609040>] device_add+0x1a8/0x858\n[    0.612972] -(0)[1:swapper/0][<ffffff8288c76254>] of_device_add+0x34/0x44\n[    0.612977] -(0)[1:swapper/0][<ffffff8288c76d6c>] of_platform_device_create_pdata+0x7c/0xb0\n[    0.612983] -(0)[1:swapper/0][<ffffff8288c770b0>] of_platform_bus_create+0x1ec/0x46c\n[    0.612988] -(0)[1:swapper/0][<ffffff8288c773b4>] of_platform_populate+0x84/0x100\n[    0.612997] -(0)[1:swapper/0][<ffffff8289662a94>] of_platform_default_populate_init+0x64/0x78\n[    0.613003] -(0)[1:swapper/0][<ffffff828808416c>] do_one_initcall+0x124/0x1f4\n[    0.613010] -(0)[1:swapper/0][<ffffff8289600fdc>] kernel_init_freeable+0x198/0x234\n[    0.613018] -(0)[1:swapper/0][<ffffff8288fd5748>] kernel_init+0x10/0x214\n[    0.613024] -(0)[1:swapper/0][<ffffff8288085658>] ret_from_fork+0x10/0x18\n[    0.613028]  (0)[1:swapper/0]---[ end trace bebbd334637347cb ]---\n[    0.613034]  (0)[1:swapper/0]kobject_add_internal failed for 17020000.venc with -EEXIST, don't try to register things with the same name in the same directory.\n[    0.613365]  (0)[1:swapper/0]clk_mt6853_apu0_probe init begin\n[    0.614728]  (0)[1:swapper/0]clk_mt6853_apu0_probe init end\n[    0.614868]  (0)[1:swapper/0]clk_mt6853_apu1_probe init begin\n[    0.616207]  (0)[1:swapper/0]clk_mt6853_apu1_probe init end\n[    0.616339]  (0)[1:swapper/0]clk_mt6853_apuv_probe init begin\n[    0.617679]  (0)[1:swapper/0]clk_mt6853_apuv_probe init end\n[    0.617814]  (0)[1:swapper/0]clk_mt6853_apuc_probe init begin\n[    0.623672]  (0)[1:swapper/0]clk_mt6853_apuc_probe init end\n[    0.624628]  (0)[1:swapper/0]clk_mt6853_cam_m_probe init begin\n[    0.630146]  (0)[1:swapper/0]clk_mt6853_cam_m_probe init end\n[    0.630284]  (0)[1:swapper/0]clk_mt6853_cam_ra_probe init begin\n[    0.631400]  (0)[1:swapper/0]clk_mt6853_cam_ra_probe init end\n[    0.631539]  (0)[1:swapper/0]clk_mt6853_cam_rb_probe init begin\n[    0.632662]  (0)[1:swapper/0]clk_mt6853_cam_rb_probe init end\n[    0.634607]  (0)[1:swapper/0]clk_mt6853_ipe_probe init begin\n[    0.637593]  (0)[1:swapper/0]clk_mt6853_ipe_probe init end\n[    0.638337]  (0)[1:swapper/0]clk_mt6853_mdp_probe init begin\n[    0.645850]  (0)[1:swapper/0]clk_mt6853_mdp_probe init end\n[    0.652019]  (0)[1:swapper/0]BOOTPROF:       652.016001:initcall: of_platform_default_populate_init   401.193924ms\n[    0.652028]  (0)[1:swapper/0][cmdq] cmdq_drv_init enter\n[    0.652378]  (0)[1:swapper/0][cmdq] cmdq device: addr:0x        (ptrval) va:0x        (ptrval) irq:179 mask:0xffffff\n[    0.652420]  (0)[1:swapper/0][cmdq] init cmd buffer:0xffffff80089a9000 (0xbff48000)\n[    0.652429]  (0)[1:swapper/0][cmdq] mbox set dma mask bit:32 result:0\n\n[    0.652748]  (0)[1:swapper/0][cmdq] cmdq_util_track_ctrl cmdq:        (ptrval) sec:false\n[    0.652754]  (0)[1:swapper/0]MMP: mmprofile_enable(): enable: 1\n[    0.652781]  (0)[1:swapper/0]MMP: mmprofile_force_start(): start: 1\n[    0.653858]  (0)[1:swapper/0]mtk-smi-common 14002000.disp_smi_common: COMMON21 nr_dev:29\n[    0.653898]  (0)[1:swapper/0]mtk-smi-common 14002000.disp_smi_common: SMI21 base: VA=        (ptrval), PA=0x0000000014002000\n[    0.653921]  (0)[1:swapper/0]mtk-smi-common 14002000.disp_smi_common: SMI21 CLK0:scp-dis\n[    0.654009]  (0)[1:swapper/0]mtk-smi-common 14002000.disp_smi_common: SMI21 CLK1:mm-comm\n[    0.654075]  (0)[1:swapper/0]mtk-smi-common 14002000.disp_smi_common: SMI21 CLK2:mm-gals\n[    0.654159]  (0)[1:swapper/0]mtk-smi-common 14002000.disp_smi_common: SMI21 CLK3:mm-infra\n[    0.654309]  (0)[1:swapper/0]mtk-smi-common 14002000.disp_smi_common: SMI21 CLK4:mm-iommu\n[    0.654397]  (0)[1:swapper/0]mtk-smi-common 1a00c000.cam_smi_subcom: SMI26 base: VA=        (ptrval), PA=0x000000001a00c000\n[    0.654417]  (0)[1:swapper/0]mtk-smi-common 1a00c000.cam_smi_subcom: SMI26 CLK0:scp-cam\n[    0.654469]  (0)[1:swapper/0]mtk-smi-common 1a00d000.cam_smi_subcom: SMI27 base: VA=        (ptrval), PA=0x000000001a00d000\n[    0.654485]  (0)[1:swapper/0]mtk-smi-common 1a00d000.cam_smi_subcom: SMI27 CLK0:scp-cam\n[    0.654653]  (0)[1:swapper/0]mtk-smi-common 1401b000.disp_smi_2x1_sub_common_u0: SMI22 base: VA=        (ptrval), PA=0x000000001401b000\n[    0.654672]  (0)[1:swapper/0]mtk-smi-common 1401b000.disp_smi_2x1_sub_common_u0: SMI22 CLK0:scp-dis\n[    0.654728]  (0)[1:swapper/0]mtk-smi-common 1401c000.disp_smi_2x1_sub_common_u1: SMI23 base: VA=        (ptrval), PA=0x000000001401c000\n[    0.654745]  (0)[1:swapper/0]mtk-smi-common 1401c000.disp_smi_2x1_sub_common_u1: SMI23 CLK0:scp-dis\n[    0.654798]  (0)[1:swapper/0]mtk-smi-common 1401e000.img1_smi_2x1_sub_common: SMI24 base: VA=        (ptrval), PA=0x000000001401e000\n[    0.654813]  (0)[1:swapper/0]mtk-smi-common 1401e000.img1_smi_2x1_sub_common: SMI24 CLK0:scp-dis\n[    0.654899]  (0)[1:swapper/0]mtk-smi-common 1502f000.2x1_sub_common: SMI28 base: VA=        (ptrval), PA=0x000000001502f000\n[    0.654916]  (0)[1:swapper/0]mtk-smi-common 1502f000.2x1_sub_common: SMI28 CLK0:scp-isp\n[    0.655088]  (0)[1:swapper/0]mtk-smi-common 1b00e000.ipe_smi_subcom: SMI25 base: VA=        (ptrval), PA=0x000000001b00e000\n[    0.655105]  (0)[1:swapper/0]mtk-smi-common 1b00e000.ipe_smi_subcom: SMI25 CLK0:scp-ipe\n[    0.655589]  (0)[1:swapper/0]mtk-smi-larb 14003000.smi_larb0: SMI0 base: VA=        (ptrval), PA=0x0000000014003000\n[    0.655609]  (0)[1:swapper/0]mtk-smi-larb 14003000.smi_larb0: SMI0 CLK0:scp-dis\n[    0.655661]  (0)[1:swapper/0]mtk-smi-larb 14004000.smi_larb1: SMI1 base: VA=        (ptrval), PA=0x0000000014004000\n[    0.655677]  (0)[1:swapper/0]mtk-smi-larb 14004000.smi_larb1: SMI1 CLK0:scp-dis\n[    0.655727]  (0)[1:swapper/0]mtk-smi-larb 1f002000.smi_larb2: SMI2 base: VA=        (ptrval), PA=0x000000001f002000\n[    0.655749]  (0)[1:swapper/0]mtk-smi-larb 1f002000.smi_larb2: SMI2 CLK0:scp-dis\n[    0.655818]  (0)[1:swapper/0]mtk-smi-larb 1f002000.smi_larb2: SMI2 CLK1:mdp-smi\n[    0.655873]  (0)[1:swapper/0]mtk-smi-larb 1f00f000.smi_larb3: SMI3 base: VA=        (ptrval), PA=0x000000001f00f000\n[    0.655892]  (0)[1:swapper/0]mtk-smi-larb 1f00f000.smi_larb3: SMI3 CLK0:scp-dis\n[    0.655942]  (0)[1:swapper/0]mtk-smi-larb 1f00f000.smi_larb3: SMI3 CLK1:mdp-smi\n[    0.655997]  (0)[1:swapper/0]mtk-smi-larb 1602e000.smi_larb4: SMI4 base: VA=        (ptrval), PA=0x000000001602e000\n[    0.656016]  (0)[1:swapper/0]mtk-smi-larb 1602e000.smi_larb4: SMI4 CLK0:scp-vdec\n[    0.656064]  (0)[1:swapper/0]mtk-smi-larb 1602e000.smi_larb4: SMI4 CLK1:vdec-larb\n[    0.656118]  (0)[1:swapper/0]mtk-smi-larb 16030000.smi_larb5: SMI5 base: VA=        (ptrval), PA=0x0000000016030000\n[    0.656136]  (0)[1:swapper/0]mtk-smi-larb 16030000.smi_larb5: SMI5 CLK0:scp-vdec\n[    0.656186]  (0)[1:swapper/0]mtk-smi-larb 16031000.smi_larb6: SMI6 base: VA=        (ptrval), PA=0x0000000016031000\n[    0.656201]  (0)[1:swapper/0]mtk-smi-larb 16031000.smi_larb6: SMI6 CLK0:scp-vdec\n[    0.656249]  (0)[1:swapper/0]mtk-smi-larb 1a001000.smi_larb13: SMI13 base: VA=        (ptrval), PA=0x000000001a001000\n[    0.656265]  (0)[1:swapper/0]mtk-smi-larb 1a001000.smi_larb13: SMI13 CLK0:scp-cam\n[    0.656315]  (0)[1:swapper/0]mtk-smi-larb 1a001000.smi_larb13: SMI13 CLK1:cam-larb13\n[    0.656375]  (0)[1:swapper/0]mtk-smi-larb 1a002000.smi_larb14: SMI14 base: VA=        (ptrval), PA=0x000000001a002000\n[    0.656394]  (0)[1:swapper/0]mtk-smi-larb 1a002000.smi_larb14: SMI14 CLK0:scp-cam\n[    0.656443]  (0)[1:swapper/0]mtk-smi-larb 1a002000.smi_larb14: SMI14 CLK1:cam-larb14\n[    0.656499]  (0)[1:swapper/0]mtk-smi-larb 1a003000.smi_larb15: SMI15 base: VA=        (ptrval), PA=0x000000001a003000\n[    0.656518]  (0)[1:swapper/0]mtk-smi-larb 1a003000.smi_larb15: SMI15 CLK0:scp-cam\n[    0.656573]  (0)[1:swapper/0]mtk-smi-larb 1a00f000.smi_larb16: SMI16 base: VA=        (ptrval), PA=0x000000001a00f000\n[    0.656592]  (0)[1:swapper/0]mtk-smi-larb 1a00f000.smi_larb16: SMI16 CLK0:scp-cam-rawa\n[    0.656641]  (0)[1:swapper/0]mtk-smi-larb 1a00f000.smi_larb16: SMI16 CLK1:cam-rawa-larbx\n[    0.656697]  (0)[1:swapper/0]mtk-smi-larb 1a010000.smi_larb17: SMI17 base: VA=        (ptrval), PA=0x000000001a010000\n[    0.656716]  (0)[1:swapper/0]mtk-smi-larb 1a010000.smi_larb17: SMI17 CLK0:scp-cam-rawb\n[    0.656764]  (0)[1:swapper/0]mtk-smi-larb 1a010000.smi_larb17: SMI17 CLK1:cam-rawb-larbx\n[    0.656820]  (0)[1:swapper/0]mtk-smi-larb 1a011000.smi_larb18: SMI18 base: VA=        (ptrval), PA=0x000000001a011000\n[    0.656843]  (0)[1:swapper/0]mtk-smi-larb 1a011000.smi_larb18: SMI18 CLK0:scp-cam-rawb\n[    0.656898]  (0)[1:swapper/0]mtk-smi-larb 1b10f000.smi_larb19: SMI19 base: VA=        (ptrval), PA=0x000000001b10f000\n[    0.656915]  (0)[1:swapper/0]mtk-smi-larb 1b10f000.smi_larb19: SMI19 CLK0:scp-ipe\n[    0.656969]  (0)[1:swapper/0]mtk-smi-larb 1b10f000.smi_larb19: SMI19 CLK1:ipe-larb19\n[    0.657025]  (0)[1:swapper/0]mtk-smi-larb 1b00f000.smi_larb20: SMI20 base: VA=        (ptrval), PA=0x000000001b00f000\n[    0.657043]  (0)[1:swapper/0]mtk-smi-larb 1b00f000.smi_larb20: SMI20 CLK0:scp-ipe\n[    0.657093]  (0)[1:swapper/0]mtk-smi-larb 1b00f000.smi_larb20: SMI20 CLK1:ipe-larb20\n[    0.657248]  (0)[1:swapper/0]mtk-smi-larb 1502e000.smi_larb9: SMI9 base: VA=        (ptrval), PA=0x000000001502e000\n[    0.657268]  (0)[1:swapper/0]mtk-smi-larb 1502e000.smi_larb9: SMI9 CLK0:scp-isp\n[    0.657316]  (0)[1:swapper/0]mtk-smi-larb 1502e000.smi_larb9: SMI9 CLK1:img1-larb9\n[    0.657371]  (0)[1:swapper/0]mtk-smi-larb 15030000.smi_larb10: SMI10 base: VA=        (ptrval), PA=0x0000000015030000\n[    0.657390]  (0)[1:swapper/0]mtk-smi-larb 15030000.smi_larb10: SMI10 CLK0:scp-isp\n[    0.657464]  (0)[1:swapper/0]mtk-smi-larb 1582e000.smi_larb11: SMI11 base: VA=        (ptrval), PA=0x000000001582e000\n[    0.657482]  (0)[1:swapper/0]mtk-smi-larb 1582e000.smi_larb11: SMI11 CLK0:scp-isp2\n[    0.657530]  (0)[1:swapper/0]mtk-smi-larb 1582e000.smi_larb11: SMI11 CLK1:img2-larb9\n[    0.657585]  (0)[1:swapper/0]mtk-smi-larb 15830000.smi_larb12: SMI12 base: VA=        (ptrval), PA=0x0000000015830000\n[    0.657604]  (0)[1:swapper/0]mtk-smi-larb 15830000.smi_larb12: SMI12 CLK0:scp-isp2\n[    0.657667]  (0)[1:swapper/0]mtk-smi-larb 17010000.smi_larb7: SMI7 base: VA=        (ptrval), PA=0x0000000017010000\n[    0.657688]  (0)[1:swapper/0]mtk-smi-larb 17010000.smi_larb7: SMI7 CLK0:scp-venc\n[    0.657739]  (0)[1:swapper/0]mtk-smi-larb 17010000.smi_larb7: SMI7 CLK1:venc-set1\n[    0.657820]  (0)[1:swapper/0]mtk-smi-larb 17010000.smi_larb7: SMI7 CLK2:venc-set2\n[    0.657879]  (0)[1:swapper/0]mtk-smi-larb 17011000.smi_larb8: SMI8 base: VA=        (ptrval), PA=0x0000000017011000\n[    0.657898]  (0)[1:swapper/0]mtk-smi-larb 17011000.smi_larb8: SMI8 CLK0:scp-venc\n[    0.658168]  (0)[1:swapper/0][MTK_SMI]MMSYS base: VA=        (ptrval), PA=0x0000000014000000\n[    0.658512]  (0)[1:swapper/0][MTK_SMI]======== LARB0 non-zero value, clk:1 ========\n[    0.658527]  (0)[1:swapper/0][MTK_SMI] 0x10=0xff3, 0x24=0x370256, 0x40=0x1, 0x60=0xf, 0x80=0xf, 0xb0=0xaaaaa, 0xb4=0xd83e0, 0xb8=0x200020, 0xc8=0x4, 0x200=0x202,\n[    0.658536]  (0)[1:swapper/0][MTK_SMI] 0x204=0x202, 0x208=0x2828, 0x20c=0x2828, 0x288=0x2, 0x38c=0x8,\n[    0.658570]  (0)[1:swapper/0][MTK_SMI]======== LARB1 non-zero value, clk:1 ========\n[    0.658583]  (0)[1:swapper/0][MTK_SMI] 0x0=0x1, 0x10=0xff3, 0x24=0x370256, 0x40=0x1, 0x60=0x1f, 0x80=0x1f, 0xb0=0xaaaaa, 0xb4=0xda3e8, 0xb8=0x200020, 0x200=0x202,\n[    0.658591]  (0)[1:swapper/0][MTK_SMI] 0x204=0x1818, 0x208=0xa0a, 0x20c=0xc0c, 0x210=0x2828, 0x390=0x8,\n[    0.658627]  (0)[1:swapper/0][MTK_SMI]======== LARB2 non-zero value, clk:1 ========\n[    0.658640]  (0)[1:swapper/0][MTK_SMI] 0x10=0xff3, 0x24=0x370256, 0x40=0x1, 0x60=0x1f, 0x80=0x1f, 0xb0=0xaaaaa, 0xb4=0xc03e0, 0xb8=0x200020, 0x200=0x505,\n[    0.658651]  (0)[1:swapper/0][MTK_SMI] 0x204=0x505, 0x208=0x505, 0x20c=0x505, 0x210=0x101, 0x380=0x9, 0x384=0x9, 0x388=0x9, 0x38c=0x9, 0x390=0x9,\n[    0.658655]  (0)[1:swapper/0][MTK_SMI]======== LARB3 OFF ========\n[    0.658659]  (0)[1:swapper/0][MTK_SMI]======== LARB4 OFF ========\n[    0.658662]  (0)[1:swapper/0][MTK_SMI]======== LARB5 OFF ========\n[    0.658666]  (0)[1:swapper/0][MTK_SMI]======== LARB6 OFF ========\n[    0.658670]  (0)[1:swapper/0][MTK_SMI]======== LARB7 OFF ========\n[    0.658673]  (0)[1:swapper/0][MTK_SMI]======== LARB8 OFF ========\n[    0.658677]  (0)[1:swapper/0][MTK_SMI]======== LARB9 OFF ========\n[    0.658681]  (0)[1:swapper/0][MTK_SMI]======== LARB10 OFF ========\n[    0.658685]  (0)[1:swapper/0][MTK_SMI]======== LARB11 OFF ========\n[    0.658688]  (0)[1:swapper/0][MTK_SMI]======== LARB12 OFF ========\n[    0.658692]  (0)[1:swapper/0][MTK_SMI]======== LARB13 OFF ========\n[    0.658696]  (0)[1:swapper/0][MTK_SMI]======== LARB14 OFF ========\n[    0.658699]  (0)[1:swapper/0][MTK_SMI]======== LARB15 OFF ========\n[    0.658703]  (0)[1:swapper/0][MTK_SMI]======== LARB16 OFF ========\n[    0.658706]  (0)[1:swapper/0][MTK_SMI]======== LARB17 OFF ========\n[    0.658710]  (0)[1:swapper/0][MTK_SMI]======== LARB18 OFF ========\n[    0.658714]  (0)[1:swapper/0][MTK_SMI]======== LARB19 OFF ========\n[    0.658717]  (0)[1:swapper/0][MTK_SMI]======== LARB20 OFF ========\n[    0.658733]  (0)[1:swapper/0][MTK_SMI]======== COMM21 non-zero value, clk:8 ========\n[    0.658745]  (0)[1:swapper/0][MTK_SMI] 0x100=0xb, 0x220=0x4514, 0x228=0x1041041, 0x22c=0x1041, 0x230=0xf23e4000, 0x234=0xe100e10, 0x238=0x9100910, 0x23c=0x5060910,\n[    0.658757]  (0)[1:swapper/0][MTK_SMI] 0x300=0x4f1, 0x308=0x1041041, 0x30c=0x1041, 0x310=0x1041041, 0x314=0x1041, 0x318=0x1041041, 0x31c=0x1041, 0x320=0x1041041,\n[    0.658769]  (0)[1:swapper/0][MTK_SMI] 0x324=0x1041, 0x400=0x2c5, 0x404=0x2c5, 0x408=0x2c0, 0x40c=0x2c0, 0x410=0x2c5, 0x414=0x2c5, 0x418=0x2c0, 0x41c=0x2c0,\n[    0.658779]  (0)[1:swapper/0][MTK_SMI] 0x420=0x10005, 0x424=0x10005, 0x430=0x6015, 0x434=0x15, 0x440=0x1, 0x444=0x1, 0x710=0xffff0000,\n[    0.658794]  (0)[1:swapper/0][MTK_SMI]======== COMM22 non-zero value, clk:1 ========\n[    0.658807]  (0)[1:swapper/0][MTK_SMI] 0x100=0xa, 0x228=0x41, 0x230=0x17, 0x234=0x3efe, 0x244=0x2105, 0x300=0x4f1, 0x400=0x5, 0x404=0x5, 0x430=0x315, 0x440=0x1,\n[    0.658811]  (0)[1:swapper/0][MTK_SMI] 0x444=0x1,\n[    0.658827]  (0)[1:swapper/0][MTK_SMI]======== COMM23 non-zero value, clk:1 ========\n[    0.658839]  (0)[1:swapper/0][MTK_SMI] 0x100=0xa, 0x228=0x41, 0x230=0x17, 0x234=0x3efe, 0x244=0x2105, 0x300=0x4f1, 0x400=0x5, 0x404=0x5, 0x430=0x315, 0x444=0x1,\n[    0.658854]  (0)[1:swapper/0][MTK_SMI]======== COMM24 non-zero value, clk:1 ========\n[    0.658867]  (0)[1:swapper/0][MTK_SMI] 0x100=0xa, 0x228=0x41, 0x230=0x17, 0x234=0x3efe, 0x244=0x2105, 0x300=0x4f1, 0x400=0x280, 0x404=0x280, 0x430=0x315, 0x440=0x1,\n[    0.658871]  (0)[1:swapper/0][MTK_SMI] 0x444=0x1,\n[    0.658875]  (0)[1:swapper/0][MTK_SMI]======== COMM25 OFF ========\n[    0.658879]  (0)[1:swapper/0][MTK_SMI]======== COMM26 OFF ========\n[    0.658882]  (0)[1:swapper/0][MTK_SMI]======== COMM27 OFF ========\n[    0.658886]  (0)[1:swapper/0][MTK_SMI]======== COMM28 OFF ========\n[    0.658896]  (0)[1:swapper/0][MTK_SMI]======== MMSYS29 non-zero value, clk:8 ========\n[    0.658907]  (0)[1:swapper/0][MTK_SMI] 0x520=0x7514, 0x524=0x7514, 0x528=0x1007500, 0x52c=0x1007500, 0x530=0x1007500, 0x538=0x1007500, 0x540=0x1007500,\n[    0.658912]  (0)[1:swapper/0][MTK_SMI] 0x544=0x1007500,\n[    0.658916]  (0)[1:swapper/0][MTK_SMI]SCEN=SMI_BWC_SCEN_NORMAL(0), SMI_SCEN=0\n[    0.658923]  (0)[1:swapper/0][MTK_SMI]LARB0:[ ON][    0.     0][         MTK_SMI]/[*OFF][    0.     0][                ]\n[    0.658929]  (0)[1:swapper/0][MTK_SMI]LARB1:[ ON][    0.     0][         MTK_SMI]/[*OFF][    0.     0][                ]\n[    0.658935]  (0)[1:swapper/0][MTK_SMI]LARB2:[ ON][    0.     0][         MTK_SMI]/[*OFF][    0.     0][                ]\n[    0.658941]  (0)[1:swapper/0][MTK_SMI]LARB3:[ ON][    0.     0][                ]/[*OFF][    0.     0][                ]\n[    0.658947]  (0)[1:swapper/0][MTK_SMI]LARB4:[ ON][    0.     0][                ]/[*OFF][    0.     0][                ]\n[    0.658952]  (0)[1:swapper/0][MTK_SMI]LARB5:[ ON][    0.     0][                ]/[*OFF][    0.     0][                ]\n[    0.658958]  (0)[1:swapper/0][MTK_SMI]LARB6:[ ON][    0.     0][                ]/[*OFF][    0.     0][                ]\n[    0.658964]  (0)[1:swapper/0][MTK_SMI]LARB7:[ ON][    0.     0][                ]/[*OFF][    0.     0][                ]\n[    0.658969]  (0)[1:swapper/0][MTK_SMI]LARB8:[ ON][    0.     0][                ]/[*OFF][    0.     0][                ]\n[    0.658975]  (0)[1:swapper/0][MTK_SMI]LARB9:[ ON][    0.     0][                ]/[*OFF][    0.     0][                ]\n[    0.658981]  (0)[1:swapper/0][MTK_SMI]LARB10:[ ON][    0.     0][                ]/[*OFF][    0.     0][                ]\n[    0.658987]  (0)[1:swapper/0][MTK_SMI]LARB11:[ ON][    0.     0][                ]/[*OFF][    0.     0][                ]\n[    0.658992]  (0)[1:swapper/0][MTK_SMI]LARB12:[ ON][    0.     0][                ]/[*OFF][    0.     0][                ]\n[    0.658998]  (0)[1:swapper/0][MTK_SMI]LARB13:[ ON][    0.     0][                ]/[*OFF][    0.     0][                ]\n[    0.659004]  (0)[1:swapper/0][MTK_SMI]LARB14:[ ON][    0.     0][                ]/[*OFF][    0.     0][                ]\n[    0.659009]  (0)[1:swapper/0][MTK_SMI]LARB15:[ ON][    0.     0][                ]/[*OFF][    0.     0][                ]\n[    0.659015]  (0)[1:swapper/0][MTK_SMI]LARB16:[ ON][    0.     0][                ]/[*OFF][    0.     0][                ]\n[    0.659021]  (0)[1:swapper/0][MTK_SMI]LARB17:[ ON][    0.     0][                ]/[*OFF][    0.     0][                ]\n[    0.659027]  (0)[1:swapper/0][MTK_SMI]LARB18:[ ON][    0.     0][                ]/[*OFF][    0.     0][                ]\n[    0.659032]  (0)[1:swapper/0][MTK_SMI]LARB19:[ ON][    0.     0][                ]/[*OFF][    0.     0][                ]\n[    0.659038]  (0)[1:swapper/0][MTK_SMI]LARB20:[ ON][    0.     0][                ]/[*OFF][    0.     0][                ]\n[    0.671842]  (0)[1:swapper/0]mtk-8250-dma: DMA address bits: 34\n[    0.671852]  (0)[1:swapper/0]mtk-8250-dma: Missing dma-requests property, using 127.\n[    0.672873]  (0)[1:swapper/0][xiaomi socinfo]:  hw_product = 1,hw_version_major = 19, hw_version_minor = 0\n[    0.672880]  (0)[1:swapper/0][xiaomi socinfo]:  hwc = GL\n[    0.673329]  (0)[1:swapper/0]mtk_iommu_probe+, 4431\n[    0.674336]  (0)[1:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[    0.677582]  (0)[1:swapper/0]mtk-iommu-v2 14016000.m4u: iommu:0 clks0 of disp-iommu-ck init done\n[    0.677631]  (0)[1:swapper/0]mtk-iommu-v2 14016000.m4u: iommu:0 power0 of power init done\n[    0.677643]  (0)[1:swapper/0]mtk_iommu_power_switch: 890: enable power pass of iommu0 for iommu_probe, ret=0\n[    0.677650]  (0)[1:swapper/0]mtk_iommu_power_switch, 902, enable clock pass at iommu0, for iommu_probe, ret=0\n[    0.677976]  (0)[1:swapper/0]mtk_iommu_hw_init, secure bank, of_iomap: 0xffffff8008b71000, irq_num: 265, m4u_id:0\n[    0.678250]  (0)[1:swapper/0]mtk_iommu_hw_init, bank:1, of_iomap: 0xffffff8008b73000, irq_num: 262, m4u_id:0\n[    0.678518]  (0)[1:swapper/0]mtk_iommu_hw_init, bank:2, of_iomap: 0xffffff8008b75000, irq_num: 263, m4u_id:0\n[    0.678793]  (0)[1:swapper/0]mtk_iommu_hw_init, bank:3, of_iomap: 0xffffff8008b77000, irq_num: 264, m4u_id:0\n[    0.678817]  (0)[1:swapper/0]mtk_iommu_hw_init, done\n[    0.679106] -(0)[1:swapper/0]mau_start_monitor iommu:0, slave:0, mau:0, start=0x40000000(0x4), end=0xffffffff(0x7), vir:0, wr:1, io:0x1, port:0xffffffff, larb:0xffffffff\n[    0.679522] -(0)[1:swapper/0]mau_start_monitor iommu:0, slave:1, mau:0, start=0x40000000(0x4), end=0xffffffff(0x7), vir:0, wr:1, io:0x1, port:0xffffffff, larb:0xffffffff\n[    0.679735]  (0)[1:swapper/0]mtk_iommu_power_switch: 890: disable clock pass of iommu0 for iommu_probe, ret=0\n[    0.679742]  (0)[1:swapper/0]mtk_iommu_power_switch, 902, disable power pass at iommu0, for iommu_probe, ret=0\n[    0.679748]  (0)[1:swapper/0]mtk_iommu_probe-, 4584,total=1,m4u0,base=0xffffff8008b6f000,protect=0x0x000000012626a500\n[    0.679807]  (0)[1:swapper/0]mtk_iommu_probe+, 4431\n[    0.679841]  (0)[1:swapper/0]mtk_iommu_larbs_get, 4356, no larbs of iommu1, larbnr=-2\n[    0.679896]  (0)[1:swapper/0]mtk-iommu-v2 19010000.m4u: iommu:1 clks0 of clock init done\n[    0.679950]  (0)[1:swapper/0]mtk-iommu-v2 19010000.m4u: iommu:1 power0 of power init done\n[    0.680206] -(0)[1:swapper/0]mtk_iommu_pg_after_on, 3984 iommu 1 is null\n[    0.680215]  (0)[1:swapper/0]mtk_iommu_power_switch: 890: enable power pass of iommu1 for iommu_probe, ret=0\n[    0.680222]  (0)[1:swapper/0]mtk_iommu_power_switch, 902, enable clock pass at iommu1, for iommu_probe, ret=0\n[    0.680513]  (0)[1:swapper/0]mtk_iommu_hw_init, secure bank, of_iomap: 0xffffff8008b7b000, irq_num: 270, m4u_id:1\n[    0.680785]  (0)[1:swapper/0]mtk_iommu_hw_init, bank:1, of_iomap: 0xffffff8008b7d000, irq_num: 267, m4u_id:1\n[    0.681056]  (0)[1:swapper/0]mtk_iommu_hw_init, bank:2, of_iomap: 0xffffff8008b7f000, irq_num: 268, m4u_id:1\n[    0.681328]  (0)[1:swapper/0]mtk_iommu_hw_init, bank:3, of_iomap: 0xffffff8008b81000, irq_num: 269, m4u_id:1\n[    0.681356]  (0)[1:swapper/0]mtk_iommu_hw_init, done\n[    0.681807] -(0)[1:swapper/0]mau_start_monitor iommu:1, slave:0, mau:0, start=0x40000000(0x4), end=0xffffffff(0x7), vir:0, wr:1, io:0x1, port:0xffffffff, larb:0xffffffff\n[    0.682227] -(0)[1:swapper/0]mau_start_monitor iommu:1, slave:1, mau:0, start=0x40000000(0x4), end=0xffffffff(0x7), vir:0, wr:1, io:0x1, port:0xffffffff, larb:0xffffffff\n[    0.682438]  (0)[1:swapper/0]mtk_iommu_power_switch: 890: disable clock pass of iommu1 for iommu_probe, ret=0\n[    0.683114]  (0)[1:swapper/0]mtk_iommu_power_switch, 902, disable power pass at iommu1, for iommu_probe, ret=0\n[    0.683121]  (0)[1:swapper/0]mtk_iommu_probe-, 4584,total=2,m4u1,base=0xffffff8008b79000,protect=0x0x000000012626b500\n[    0.683502]  (0)[1:swapper/0][Picachu] [PICACHU] phys:0x5ff00000, size:0x80000, virt:0xffffff8009180000\n[    0.683513]  (0)[1:swapper/0][Power/cpufreq] mediatek/cannon-mt6853-overlay mediatek/k6853v1_64_6360 4, 0, Settle time(1250, 500) efuse_val = 0x20 0xda572499\n[    0.683522]  (0)[1:swapper/0][CONN-MD-DFT][I]conn_md_init:init message queue list succeed\n[    0.683526]  (0)[1:swapper/0][CONN-MD-DFT][I]conn_md_init:init active queue list succeed\n[    0.683531]  (0)[1:swapper/0][CONN-MD-DFT][I]conn_md_init:init user information list succeed\n[    0.683550]  (0)[1:swapper/0][CONN_MD_DMP][I]conn_md_dmp_init:alloc msg_log memory done, size:0x00000428\n[    0.683556]  (0)[1:swapper/0][CONN-MD-DFT][I]conn_md_init:conn_md_dmp_init succeed\n[    0.683634]  (0)[1:swapper/0][CONN-MD-DFT][I]conn_md_init:create conn_md_thread succeed, wakeup it\n[    0.683653]  (0)[1:swapper/0][TMEM]trusted_mem_subsys_init:248\n[    0.683657]  (0)[1:swapper/0][TMEM]trusted_mem_subsys_init:259 (end)\n[    0.683661]  (0)[1:swapper/0][FH]: init\n[    0.685175]  (0)[1:swapper/0][FH] freqhopping_debug_proc_init\n[    0.685186]  (0)[1:swapper/0][FH]: init success\n[    0.694447]  (0)[1:swapper/0][SCP] register scp A notify callback..\n[    0.695016]  (0)[1:swapper/0]adsp_common 1080b000.adsp_common: invalid resource\n[    0.695022]  (0)[1:swapper/0]MBOX 0 can't find send status reg\n[    0.695029]  (0)[1:swapper/0]adsp_common 1080b000.adsp_common: invalid resource\n[    0.695034]  (0)[1:swapper/0]MBOX 0 can't find recv status reg\n[    0.695114]  (0)[1:swapper/0]adsp_common 1080b000.adsp_common: invalid resource\n[    0.695119]  (0)[1:swapper/0]MBOX 1 can't find send status reg\n[    0.695125]  (0)[1:swapper/0]adsp_common 1080b000.adsp_common: invalid resource\n[    0.695129]  (0)[1:swapper/0]MBOX 1 can't find recv status reg\n[    0.695188]  (0)[1:swapper/0]adsp_common 1080b000.adsp_common: invalid resource\n[    0.695192]  (0)[1:swapper/0]MBOX 2 can't find send status reg\n[    0.695199]  (0)[1:swapper/0]adsp_common 1080b000.adsp_common: invalid resource\n[    0.695203]  (0)[1:swapper/0]MBOX 2 can't find recv status reg\n[    0.695258]  (0)[1:swapper/0]adsp_common 1080b000.adsp_common: invalid resource\n[    0.695262]  (0)[1:swapper/0]MBOX 3 can't find send status reg\n[    0.695269]  (0)[1:swapper/0]adsp_common 1080b000.adsp_common: invalid resource\n[    0.695273]  (0)[1:swapper/0]MBOX 3 can't find recv status reg\n[    0.695358]  (0)[1:swapper/0]adsp_common_drv_probe, success\n[    0.696214]  (0)[1:swapper/0]adsp_core_drv_probe, id:0 success\n[    0.696621]  (0)[1:swapper/0]adsp_init, ret(1)\n[    0.696983]  (0)[1:swapper/0][ccci0/util]opt_md2_support using default\n[    0.697091]  (0)[1:swapper/0][ccci0/util]opt_md5_support using default\n[    0.697185]  (0)[1:swapper/0][ccci0/util]opt_irat_support using default\n[    0.736179]  (0)[1:swapper/0]Freeing modem memory: 214592K from phys ab0f0000\n[    0.739780]  (0)[1:swapper/0]Freeing modem memory: 19264K from phys 9fd30000\n[    0.742301]  (0)[1:swapper/0]Freeing modem memory: 13184K from phys a1320000\n[    0.750706]  (0)[1:swapper/0]Freeing modem memory: 46080K from phys bb300000\n[    0.751060]  (0)[1:swapper/0][ccci0/util]Invalid udc layout info dt para\n[    0.751162]  (0)[1:swapper/0][ccci0/util]get sib info fail\n[    0.751263]  (0)[1:swapper/0][ccci0/util]using 0 as phy capture size\n[    0.751363]  (0)[1:swapper/0][ccci0/util]get smem dfd size fail\n[    0.751463]  (0)[1:swapper/0][ccci0/util]get smem amms pos size fail\n[    0.751564]  (0)[1:swapper/0][ccci0/util]get smem align padding size fail\n[    0.751771]  (0)[1:swapper/0][ccci0/util]using 0 as MTEE support\n[    0.752117]  (0)[1:swapper/0][ccci0/util]Using default META MD setting[0][0]\n[    0.752154]  (0)[1:swapper/0]Freeing modem memory: 64K from phys bff60000\n[    0.752393]  (0)[1:swapper/0][ccci0/util]md sib mem info: (0x0 0x0           (null) 0)\n[    0.752410]  (0)[1:swapper/0]BOOTPROF:       752.407770:initcall: ccci_util_init    55.770461ms\n[    0.752748] -(0)[1:swapper/0]CPU0: update max cpu_capacity 366\n[    0.752839]  (0)[1:swapper/0][SCP] register scp A notify callback..\n[    0.752916]  (0)[1:swapper/0][MDP]cmdq_init CMDQ driver init begin\n[    0.753752]  (0)[1:swapper/0][MDP]CMDQ driver probe begin\n[    0.754021]  (0)[1:swapper/0][MDP][CMDQ] platform_dev: dev:        (ptrval) PA:0x000000001f003000 VA:ffffff8008bda000 irqId:0 irqSecId:0\n[    0.754032]  (0)[1:swapper/0][MDP]set dma mask bit:32 result:0\n[    0.754079]  (0)[1:swapper/0][MDP]DEV: VA ref(mmsys_config):0xffffff8008bdc000\n[    0.754135]  (0)[1:swapper/0][MDP]DEV: VA ref(mdp_rdma0):0xffffff8008bde000\n[    0.754182]  (0)[1:swapper/0][MDP]DEV: VA ref(mdp_rdma1):0xffffff8008bfa000\n[    0.754230]  (0)[1:swapper/0][MDP]DEV: VA ref(mdp_rsz0):0xffffff8008bfc000\n[    0.754276]  (0)[1:swapper/0][MDP]DEV: VA ref(mdp_rsz1):0xffffff8008bfe000\n[    0.754321]  (0)[1:swapper/0][MDP]DEV: VA ref(mdp_wrot0):0xffffff8009112000\n[    0.754367]  (0)[1:swapper/0][MDP]DEV: VA ref(mdp_wrot1):0xffffff8009114000\n[    0.754411]  (0)[1:swapper/0][MDP]DEV: VA ref(mdp_tdshp0):0xffffff8009116000\n[    0.754460]  (0)[1:swapper/0][MDP]DEV: VA ref(mdp_tdshp1):0xffffff800911d000\n[    0.754506]  (0)[1:swapper/0][MDP]DEV: VA ref(mdp_aal0):0xffffff800911f000\n[    0.754594]  (0)[1:swapper/0][MDP]DEV: VA ref(mdp_aal1):0xffffff8009121000\n[    0.754646]  (0)[1:swapper/0][MDP]DEV: VA ref(mdp_color0):0xffffff8009123000\n[    0.754694]  (0)[1:swapper/0][MDP]DEV: VA ref(mdp_hdr0):0xffffff8009125000\n[    0.754701]  (0)[1:swapper/0][MDP]DEV: VA ref(venc):0x0\n[    0.754747]  (0)[1:swapper/0][MDP]DEV: VA ref(mm_mutex):0xffffff8009127000\n[    0.756819]  (0)[1:swapper/0][MDP]DEV: PA ref(mm_mutex): start:0x000000001f001000\n[    0.757036]  (0)[1:swapper/0][MDP]chan 10 0xffffffdd26ac69f0 dev:0xffffffdd261e7410\n[    0.757178]  (0)[1:swapper/0][MDP]chan 19 0xffffffdd2621b2a8 dev:0xffffffdd261e7410\n[    0.757328]  (0)[1:swapper/0][MDP]chan 20 0xffffffdd2621b3a0 dev:0xffffffdd261e7410\n[    0.757496]  (0)[1:swapper/0][MDP]chan 21 0xffffffdd2621b498 dev:0xffffffdd261e7410\n[    0.757676]  (0)[1:swapper/0][MDP]chan 22 0xffffffdd2621b590 dev:0xffffffdd261e7410\n[    0.757783]  (0)[1:swapper/0][cmdq][err] channel request fail:-19 @cmdq_mbox_create,191\n[    0.757877]  (0)[1:swapper/0][cmdq][err] channel request fail:-19 @cmdq_mbox_create,191\n[    0.757971]  (0)[1:swapper/0][cmdq][err] channel request fail:-19 @cmdq_mbox_create,191\n[    0.758065]  (0)[1:swapper/0][cmdq][err] channel request fail:-19 @cmdq_mbox_create,191\n[    0.758159]  (0)[1:swapper/0][cmdq][err] channel request fail:-19 @cmdq_mbox_create,191\n[    0.758253]  (0)[1:swapper/0][cmdq][err] channel request fail:-19 @cmdq_mbox_create,191\n[    0.758345]  (0)[1:swapper/0][cmdq][err] channel request fail:-19 @cmdq_mbox_create,191\n[    0.758440]  (0)[1:swapper/0][cmdq][err] channel request fail:-19 @cmdq_mbox_create,191\n[    0.758534]  (0)[1:swapper/0][cmdq][err] channel request fail:-19 @cmdq_mbox_create,191\n[    0.758627]  (0)[1:swapper/0][cmdq][err] channel request fail:-19 @cmdq_mbox_create,191\n[    0.758718]  (0)[1:swapper/0][cmdq][err] channel request fail:-19 @cmdq_mbox_create,191\n[    0.758812]  (0)[1:swapper/0][cmdq][err] channel request fail:-19 @cmdq_mbox_create,191\n[    0.758905]  (0)[1:swapper/0][cmdq][err] channel request fail:-19 @cmdq_mbox_create,191\n[    0.759000]  (0)[1:swapper/0][cmdq][err] channel request fail:-19 @cmdq_mbox_create,191\n[    0.759092]  (0)[1:swapper/0][cmdq][err] channel request fail:-19 @cmdq_mbox_create,191\n[    0.759186]  (0)[1:swapper/0][cmdq][err] channel request fail:-19 @cmdq_mbox_create,191\n[    0.759279]  (0)[1:swapper/0][cmdq][err] channel request fail:-19 @cmdq_mbox_create,191\n[    0.759372]  (0)[1:swapper/0][cmdq][err] channel request fail:-19 @cmdq_mbox_create,191\n[    0.759466]  (0)[1:swapper/0][cmdq][err] channel request fail:-19 @cmdq_mbox_create,191\n[    0.759487]  (0)[1:swapper/0][MDP]available thread pool: max:24\n[    0.761152]  (0)[1:swapper/0]MMP: mmprofile_enable(): enable: 1\n[    0.761183]  (0)[1:swapper/0]MMP: mmprofile_force_start(): start: 1\n[    0.761197]  (0)[1:swapper/0][MDP]cmdq_mdp_init\n[    0.761355]  (0)[1:swapper/0][MDP]cmdq_core_register_status_dump notifier:0x        (ptrval)\n[    0.762162]  (0)[1:swapper/0][MDP]MDP limit dev create end\n[    0.762168]  (0)[1:swapper/0][MDP]CMDQ driver probe end\n[    0.762307]  (0)[1:swapper/0][MDP]CMDQ driver init end\n[    0.762314]  (0)[1:swapper/0]Init Richtek RegMap 1.1.14_G\n[    0.762341]  (0)[1:swapper/0]tcpc_class_init (2.0.10_MTK)\n[    0.762346]  (0)[1:swapper/0]SVDM supported mode [0]: name = DisplayPort, svid = 0xff01\n[    0.762351]  (0)[1:swapper/0]SVDM supported mode [1]: name = Direct Charge, svid = 0x29cf\n[    0.762355]  (0)[1:swapper/0]dpm_check_supported_modes : found \"disorder\"...\n[    0.762368]  (0)[1:swapper/0]TCPC class init OK\n[    0.762374]  (0)[1:swapper/0]pd_dbg_info_init\n[    0.762821]  (0)[1:swapper/0]SCSI subsystem initialized\n[    0.762913]  (0)[1:swapper/0]usbcore: registered new interface driver usbfs\n[    0.762945]  (0)[1:swapper/0]usbcore: registered new interface driver hub\n[    0.763111]  (0)[1:swapper/0]usbcore: registered new device driver usb\n[    0.764472]  (0)[1:swapper/0][MI_TOUCH][xiaomi_touch_probe:429]Enter\n[    0.764479]  (0)[1:swapper/0][MI_TOUCH][xiaomi_touch_parse_dt:414]touch,name:xiaomi-touch\n[    0.764620]  (0)[1:swapper/0][MI_TOUCH][xiaomi_touch_probe:477]Over\n[    0.764657]  (0)[1:swapper/0][MI_TOUCH][xiaomi_touch_init:524]out --\n[    0.764673]  (0)[1:swapper/0]media: Linux media interface: v0.10\n[    0.764696]  (0)[1:swapper/0]Linux video capture interface: v2.00\n[    0.765455]  (0)[1:swapper/0]mt_charger_probe KPOC(0)\n[    0.765696]  (0)[1:swapper/0]mt_charger_probe\n[    0.766493]  (0)[1:swapper/0]find node mediatek,cali-en-bit:20\n[    0.766500]  (0)[1:swapper/0]find node mediatek,cali-ge-bit:10\n[    0.766505]  (0)[1:swapper/0]find node mediatek,cali-oe-bit:0\n[    0.766510]  (0)[1:swapper/0]find node mediatek,cali-efuse-index:113\n[    0.768280]  (0)[1:swapper/0]Advanced Linux Sound Architecture Driver Initialized.\n[    0.768614]  (0)[1:swapper/0]Bluetooth: Core ver 2.22\n[    0.768641]  (0)[1:swapper/0]NET: Registered protocol family 31\n[    0.768646]  (0)[1:swapper/0]Bluetooth: HCI device and connection manager initialized\n[    0.768655]  (0)[1:swapper/0]Bluetooth: HCI socket layer initialized\n[    0.768662]  (0)[1:swapper/0]Bluetooth: L2CAP socket layer initialized\n[    0.768684]  (0)[1:swapper/0]Bluetooth: SCO socket layer initialized\n[    0.768901]  (0)[1:swapper/0]------------[ cut here ]------------\n[    0.768916]  (0)[1:swapper/0]WARNING: CPU: 0 PID: 1 at ../net/wireless/reg.c:517 regulatory_init+0x15c/0x164\n[    0.768920]  (0)[1:swapper/0]db.txt is empty, you should update it...\n[    0.768924]  (0)[1:swapper/0]Modules linked in:\n[    0.768935] -(0)[1:swapper/0]CPU: 0 PID: 1 Comm: swapper/0 Tainted: G S      W       4.14.141-g37f4efb4a #249\n[    0.768938] -(0)[1:swapper/0]Hardware name: MT6853T (DT)\n[    0.768943] -(0)[1:swapper/0]Call trace:\n[    0.768953] -(0)[1:swapper/0][<ffffff828808ca04>] dump_backtrace+0x0/0x508\n[    0.768960] -(0)[1:swapper/0][<ffffff828808cf20>] show_stack+0x14/0x1c\n[    0.768968] -(0)[1:swapper/0][<ffffff8288fc1218>] dump_stack+0xc4/0xfc\n[    0.768975] -(0)[1:swapper/0][<ffffff82880ae1e0>] __warn+0xdc/0x168\n[    0.768980] -(0)[1:swapper/0][<ffffff82880ae2dc>] warn_slowpath_fmt+0x70/0x94\n[    0.768987] -(0)[1:swapper/0][<ffffff828967644c>] regulatory_init+0x15c/0x164\n[    0.768993] -(0)[1:swapper/0][<ffffff8289676270>] cfg80211_init+0x68/0xe8\n[    0.769000] -(0)[1:swapper/0][<ffffff828808416c>] do_one_initcall+0x124/0x1f4\n[    0.769007] -(0)[1:swapper/0][<ffffff8289600fdc>] kernel_init_freeable+0x198/0x234\n[    0.769015] -(0)[1:swapper/0][<ffffff8288fd5748>] kernel_init+0x10/0x214\n[    0.769021] -(0)[1:swapper/0][<ffffff8288085658>] ret_from_fork+0x10/0x18\n[    0.769025]  (0)[1:swapper/0]---[ end trace bebbd334637347cc ]---\n[    0.769173]  (0)[1:swapper/0]nfc: nfc_init: NFC Core ver 0.1\n[    0.769213]  (0)[1:swapper/0]NET: Registered protocol family 39\n[    0.769639]  (0)[1:swapper/0]clocksource: Switched to clocksource arch_sys_counter\n[    0.774637]  (0)[1:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[    0.789907]  (7)[67:kworker/7:0]mt_charger_plugin type:0 plugin:0\n[    0.789922]  (7)[67:kworker/7:0]mt_charger_plugin type:0 plugin:0\n[    0.789931]  (7)[67:kworker/7:0]mt_charger_plugin type:0 plugin:0\n[    0.789943]  (7)[67:kworker/7:0]*** Error : can't find primary charger ***\n[    0.793434]  (0)[1:swapper/0]BOOTPROF:       793.430232:initcall: tracer_init_tracefs    23.776000ms\n[    0.817900]  (0)[1:swapper/0]BOOTPROF:       817.896001:initcall: event_trace_init    24.435769ms\n[    0.818136]  (0)[1:swapper/0]VFS: Disk quotas dquot_6.6.0\n[    0.818183]  (0)[1:swapper/0]VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.818810]  (0)[1:swapper/0][Power/cpufreq] @@~cpuhvfs_pre_module_init DVFS state = 1\n[    0.819959]  (0)[1:swapper/0][Power/cpufreq] mediatek/cannon-mt6853-overlay mediatek/k6853v1_64_6360 4, 0, Settle time(1250, 500) efuse_val = 0x20 0xda572499\n[    0.819989]  (0)[1:swapper/0][Power/cpufreq] DVFS - @(Record)cpuhvfs_pvt_tbl_create----->(        (ptrval))\n[    0.820002]  (0)[1:swapper/0][Power/cpufreq] DVFS - @(Record)cpuhvfs_pvt_tbl_create----->(        (ptrval))\n[    0.820625]  (0)[1:swapper/0]****[pmic_mt_init] Initialization : DONE !!\n[    0.820636]  (0)[1:swapper/0][BLOCK_TAG] DRAM: 0x0000000040000000 - 0x000000013ffff000, size: 0xfffff000\n[    0.820641]  (0)[1:swapper/0]mt6358_init!!\n[    0.820807]  (0)[1:swapper/0]mt6358-pmic 10026000.pwrap:mt6359-pmic: PMIC irq=144, PMIC HWCID=0x5930, ret=0\n[    0.821441]  (0)[1:swapper/0]******** MT pmic driver probe!! ********\n[    0.821456]  (0)[1:swapper/0][record_md_vosel] vrfdig=0x30\n[    0.826260]  (0)[1:swapper/0][PMIC_LP_INIT_SETTING] Chip Ver = 2\n[    0.826696]  (0)[1:swapper/0][PMIC]regulators node not found\n[    0.826701]  (0)[1:swapper/0]pmic_regulator_buck_dts_parser fail\n[    0.826745]  (0)[1:swapper/0]Get car_tune_value from DT: 1000\n[    0.826750]  (0)[1:swapper/0]Get r_fg_value from DT: 50\n[    0.826754]  (0)[1:swapper/0]Get default UNIT_FGCURRENT= 610352\n[    0.826760]  (0)[1:swapper/0][lbat_service_init]\n[    0.827214]  (0)[1:swapper/0][lbat_service_init] r_ratio = 7/2\n[    0.827219]  (0)[1:swapper/0][PMIC] no define LOW_BATTERY_PROTECT\n[    0.827223]  (0)[1:swapper/0][PMIC] no define BATTERY_OC_PROTECT\n[    0.827227]  (0)[1:swapper/0][PMIC] no define BATTERY_PERCENT_PROTECT\n[    0.827230]  (0)[1:swapper/0][PMIC] no define DLPT_FEATURE_SUPPORT\n[    0.827296]  (0)[1:swapper/0]POWER_UVLO_VOLT_LEVEL = 2600, RG_UVLO_VTHL = 0x2\n[    0.829190]  (0)[1:swapper/0]thermal_sys: of_parse_thermal_message board sensor: VIRTUAL-SENSOR\n[    0.829461]  (0)[1:swapper/0][ION]ion_init()\n[    0.830101]  (0)[1:swapper/0]arm-v7s io-pgtable: arm_v7s_alloc_pgtable, 1209, pgd=0xffffffdc7fea0000, cf.ttbr=0x7fea006a,pgd_pa=0x7fea0000, quirks=0xf\n[    0.830107]  (0)[1:swapper/0]mtk_iommu_create_pgtable, 1813, create pgtable done\n[    0.830114] -(0)[1:swapper/0]mtk_iommu_attach_pgtable, 1854, iommu:0 config pgtable base addr=0x7fea0000, quiks=0xf\n[    0.830141]  (0)[1:swapper/0]mtk_iommu_create_iova_space, 2347, dev:iommu allocated IOVA group0:        (ptrval), domain0:        (ptrval) owner:-1 start:0x40000000 end:0xffffffff ext=34\n[    0.830250]  (0)[1:swapper/0][ION]ion_drv_probe, start\n[    0.830772]  (0)[1:swapper/0][ION]ion_sec_heap_create enter:ion_sec_heap\n[    0.830788]  (0)[1:swapper/0][ION]ion_sec_heap_create enter:ion_sec_heap_protected\n[    0.830802]  (0)[1:swapper/0][ION]ion_sec_heap_create enter:ion_sec_heap_2d_fr\n[    0.830816]  (0)[1:swapper/0][ION]ion_sec_heap_create enter:ion_sec_heap_wfd\n[    0.830833]  (0)[1:swapper/0][ION]ion_sec_heap_create enter:ion_sec_heap_happ\n[    0.830851]  (0)[1:swapper/0][ION]ion_sec_heap_create enter:ion_sec_heap_happ_mem\n[    0.830876]  (0)[1:swapper/0][ION]ion_sec_heap_create enter:ion_sec_heap_sdsp\n[    0.830889]  (0)[1:swapper/0][ION]ion_sec_heap_create enter:ion_sec_heap_sdsp_shared\n[    0.831575]  (0)[1:swapper/0][ION]ion_drv_probe, done\n[    0.831907]  (0)[1:swapper/0][ION]ion_init fd register notifer fail\n[    0.833185]  (0)[1:swapper/0]mt635x-auxadc mt635x-auxadc: mt635x_auxadc_probe done\n[    0.833203]  (0)[1:swapper/0]AUXADC_VCDT get fail with list 1, dev_name:mt635x-auxadc\n[    0.834160]  (0)[1:swapper/0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[    0.834168]  (0)[1:swapper/0]****[pmic_auxadc_chip_init] VBIF28 = 2799, MDRT_ADC = 0x0\n[    0.834297]  (0)[1:swapper/0]NET: Registered protocol family 2\n[    0.834704]  (0)[1:swapper/0]TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.834911]  (0)[1:swapper/0]TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.835290]  (0)[1:swapper/0]TCP: Hash tables configured (established 32768 bind 32768)\n[    0.835383]  (0)[1:swapper/0]UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.835447]  (0)[1:swapper/0]UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.835617]  (0)[1:swapper/0]NET: Registered protocol family 1\n[    0.836267]  (0)[1:swapper/0][Power/clkbuf] clk_buf_dump_dts_log: CLK_BUF?_STATUS=2 1 1 2 0 0 1\n[    0.836274]  (0)[1:swapper/0][Power/clkbuf] clk_buf_dump_dts_log: CLK_BUF?_OUTPUT_IMPEDANCE=6 4 4 4 0 0 4\n[    0.836280]  (0)[1:swapper/0][Power/clkbuf] clk_buf_dump_dts_log: CLK_BUF?_CONTROLS_DESENSE=0 4 0 4 0 0 0\n[    0.836373]  (0)[1:swapper/0][Power/clkbuf] clk_buf_dump_clkbuf_log DCXO_CW00/08/09/10/12/13/15/19=0x4a4d 5c5a 51f0 8c14 8100 4c f0f 924c\n[    0.836380]  (0)[1:swapper/0][Power/clkbuf] clk_buf_dump_clkbuf_log in3_en/rf_op/bb_op/rf_en/bb_en=0x1 1 1 0 0\n[    0.836384]  (0)[1:swapper/0][Power/clkbuf] clk_buf_dump_clkbuf_log vrfck_hv_en=0x0\n[    0.836409]  (0)[1:swapper/0][Power/clkbuf] pwrap_clk_buf_inf: pwrap_inf=1, rc_inf=0x10, dcxo_inf=0x0\n[    0.836691]  (0)[1:swapper/0][Power/srclken] srclken_dump_cfg_log: rc cfg : 0x10\n               centrol 1: 0x10401425\n               centrol 2: 0x1010\n               centrol 3: 0x400f\n               centrol 4: 0x20800\n               cmd cfg: 0x0\n               subsys cfg: = 0x1041efb\n               pmrc_rc: 0x1a6\n               pmrc setclr: 0x1aa01a8\n               fpm cfg: 0x8\n\n[    0.836855]  (0)[1:swapper/0]dvfsrc_opp_init: vcore_arg = 00000000\n[    0.836861]  (0)[1:swapper/0]is_rising_need: PTPOD: 0x8db2334\n[    0.836865]  (0)[1:swapper/0]is_rising_need: PTPOD: 0x8db2334\n[    0.836870]  (0)[1:swapper/0]dvfsrc_opp_init: CT=0, VMODE=0, RSV4=0\n[    0.836876]  (0)[1:swapper/0]dvfsrc_opp_init: FINAL vcore_opp_uv: 725000, 650000, 600000, 550000\n[    0.837070]  (0)[1:swapper/0]Trying to unpack rootfs image as initramfs...\n[    0.839660]  (0)[1:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[    0.879645]  (6)[127:chgdet_thread]chgdet_task_threadfn get tcpc device type_c_port0 fail\n[    0.999666]  (6)[127:chgdet_thread]chgdet_task_threadfn get tcpc device type_c_port0 fail\n[    1.119665]  (6)[127:chgdet_thread]chgdet_task_threadfn get tcpc device type_c_port0 fail\n[    1.161369]  (0)[1:swapper/0]Freeing initrd memory: 7488K\n[    1.161404]  (0)[1:swapper/0]BOOTPROF:      1161.402232:initcall: populate_rootfs   324.501539ms\n[    1.162612]  (0)[1:swapper/0]hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    1.166731]  (0)[1:swapper/0]audit: initializing netlink subsys (disabled)\n[    1.166853]  (6)[172:kauditd]audit: type=2000 audit(1.150:1): state=initialized audit_enabled=0 res=1\n[    1.167192]  (0)[1:swapper/0]workingset: timestamp_bits=45 max_order=20 bucket_order=0\n[    1.170801]  (0)[1:swapper/0]Registering sdcardfs 0.1\n[    1.170958]  (0)[1:swapper/0]fuse init (API version 7.26)\n[    1.171479]  (0)[1:swapper/0]SELinux:  Registering netfilter hooks\n[    1.175765]  (0)[1:swapper/0]io scheduler noop registered\n[    1.175773]  (0)[1:swapper/0]io scheduler deadline registered\n[    1.175865]  (0)[1:swapper/0]io scheduler cfq registered (default)\n[    1.175873]  (0)[1:swapper/0]io scheduler mq-deadline registered\n[    1.175878]  (0)[1:swapper/0]io scheduler kyber registered\n[    1.178156]  (0)[1:swapper/0][mtk_disp_pwm]mtk_disp_pwm_probe start\n[    1.178246]  (0)[1:swapper/0]mediatek-disp-pwm 1100e000.disp_pwm0: no pwm_src node\n[    1.178299]  (0)[1:swapper/0][mtk_disp_pwm]mtk_disp_pwm_probe end\n[    1.179652]  (0)[1:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[    1.181611]  (0)[1:swapper/0]sum: 1\n[    1.181628]  (0)[1:swapper/0]get clk [0]: clk26m ok\n[    1.184627]  (0)[1:swapper/0]mt6359p-regulator mt6359p-regulator: Chip ID = 0x5920\n[    1.194101]  (0)[1:swapper/0]Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled\n[    1.194884]  (0)[1:swapper/0]console [ttyS0] disabled\n[    1.215184]  (0)[1:swapper/0]11002000.serial: ttyS0 at MMIO 0x11002000 (irq = 23, base_baud = 1625000) is a ST16650V2\n[    1.215354]  (0)[1:swapper/0]console [ttyS0] enabled\n[    1.215457]  (0)[1:swapper/0]BOOTPROF:      1215.454156:probe: probe=platform_drv_probe drv=mt6577-uart(0xffffff8289bff690)    20.712077ms\n[    1.235883]  (0)[1:swapper/0]11003000.serial: ttyS1 at MMIO 0x11003000 (irq = 24, base_baud = 1625000) is a ST16650V2\n[    1.236024]  (0)[1:swapper/0]BOOTPROF:      1236.021233:probe: probe=platform_drv_probe drv=mt6577-uart(0xffffff8289bff690)    20.510770ms\n[    1.236751]  (0)[1:swapper/0]BOOTPROF:      1236.748925:initcall: mtk8250_platform_driver_init    42.061924ms\n[    1.236955]  (0)[1:swapper/0]mt67xx_rng: driver registered\n[    1.238048]  (6)[211:hwrng]random: fast init done\n[    1.238860]  (6)[211:hwrng]random: crng init done\n[    1.239163]  (0)[1:swapper/0]drm_mmp_init\n[    1.239171]  (0)[1:swapper/0]MMP: mmprofile_enable(): enable: 1\n[    1.239576]  (0)[1:swapper/0]MMP: mmprofile_force_start(): start: 1\n[    1.239676]  (7)[127:chgdet_thread]chgdet_task_threadfn get tcpc device type_c_port0 fail\n[    1.246766]  (0)[1:swapper/0]mediatek-drm 14000000.dispsys_config: Adding component match for /disp_ovl0@14005000\n[    1.246820]  (0)[1:swapper/0]mediatek-drm 14000000.dispsys_config: Adding component match for /disp_ovl0_2l@14006000\n[    1.246870]  (0)[1:swapper/0]mediatek-drm 14000000.dispsys_config: Adding component match for /disp_rdma0@14007000\n[    1.246921]  (0)[1:swapper/0]mediatek-drm 14000000.dispsys_config: Adding component match for /disp_rsz0@14008000\n[    1.246972]  (0)[1:swapper/0]mediatek-drm 14000000.dispsys_config: Adding component match for /disp_color0@14009000\n[    1.247022]  (0)[1:swapper/0]mediatek-drm 14000000.dispsys_config: Adding component match for /disp_ccorr1@1400a000\n[    1.247073]  (0)[1:swapper/0]mediatek-drm 14000000.dispsys_config: Adding component match for /disp_ccorr0@1400b000\n[    1.247123]  (0)[1:swapper/0]mediatek-drm 14000000.dispsys_config: Adding component match for /disp_aal0@1400c000\n[    1.247174]  (0)[1:swapper/0]mediatek-drm 14000000.dispsys_config: Adding component match for /disp_gamma0@1400d000\n[    1.247224]  (0)[1:swapper/0]mediatek-drm 14000000.dispsys_config: Adding component match for /disp_postmask0@1400e000\n[    1.247273]  (0)[1:swapper/0]mediatek-drm 14000000.dispsys_config: Adding component match for /disp_dither0@1400f000\n[    1.247364]  (0)[1:swapper/0]mediatek-drm 14000000.dispsys_config: Adding component match for /disp_dsc_wrap@14012000\n[    1.247450]  (0)[1:swapper/0]mediatek-drm 14000000.dispsys_config: Adding component match for /dsi@14013000\n[    1.247520]  (0)[1:swapper/0]mediatek-drm 14000000.dispsys_config: Adding component match for /disp_wdma0@14014000\n[    1.262369]  (0)[1:swapper/0]mediatek-disp-postmask 1400e000.disp_postmask0: mtk_ddp_comp_set_larb: DDP_COMPONENT_POSTMASK0 need larb device\n[    1.262380]  (0)[1:swapper/0]DDP_COMPONENT_POSTMASK0: smi-id:0\n[    1.265287]  (0)[1:swapper/0]mediatek-disp-ovl 14005000.disp_ovl0: mtk_ddp_comp_set_larb: DDP_COMPONENT_OVL0 need larb device\n[    1.265297]  (0)[1:swapper/0]DDP_COMPONENT_OVL0: smi-id:0\n[    1.265879]  (0)[1:swapper/0]mediatek-disp-ovl 14006000.disp_ovl0_2l: mtk_ddp_comp_set_larb: DDP_COMPONENT_OVL0_2L need larb device\n[    1.265887]  (0)[1:swapper/0]DDP_COMPONENT_OVL0_2L: smi-id:1\n[    1.267738]  (0)[1:swapper/0]mediatek-disp-rdma 14007000.disp_rdma0: mtk_ddp_comp_set_larb: DDP_COMPONENT_RDMA0 need larb device\n[    1.267747]  (0)[1:swapper/0]DDP_COMPONENT_RDMA0: smi-id:0\n[    1.269362]  (0)[1:swapper/0]mtk_disp_wdma_probe+\n[    1.269590]  (0)[1:swapper/0]mediatek-disp-wdma 14014000.disp_wdma0: mtk_ddp_comp_set_larb: DDP_COMPONENT_WDMA0 need larb device\n[    1.269597]  (0)[1:swapper/0]DDP_COMPONENT_WDMA0: smi-id:0\n[    1.269710]  (0)[1:swapper/0]mtk_disp_wdma_probe-\n[    1.272279]  (0)[1:swapper/0]mtk_dsi_probe-5483:dsi = 00000000555f56fa, ddp_comp = 00000000555f56fa \n[    1.272465]  (0)[1:swapper/0]mtk-dsi 14013000.dsi: Waiting for bridge or panel driver\n[    1.275828]  (0)[1:swapper/0]mtk_disp_dsc_probe+\n[    1.276004]  (0)[1:swapper/0]mtk_disp_dsc_probe-\n[    1.276373]  (0)[1:swapper/0]BOOTPROF:      1276.370540:initcall: mtk_drm_init    38.499000ms\n[    1.276547]  (0)[15:cpuhp/0]cacheinfo: Unable to detect cache hierarchy for CPU 0\n[    1.281188]  (0)[1:swapper/0]brd: module loaded\n[    1.290709]  (0)[1:swapper/0]loop: module loaded\n[    1.290958]  (0)[1:swapper/0]zram: Added device: zram0\n[    1.291826]  (0)[1:swapper/0]simtray_probe enter\n[    1.292553]  (0)[1:swapper/0]testing_mode_probe enter\n[    1.293458]  (0)[1:swapper/0][PTP3][INFO][ptp3_reserve_memory_init():133][PTP3] phys:0x5ff00000, size:0x80000, virt:0xffffff8009d00000\n[    1.293468]  (0)[1:swapper/0][FLL][INFO][fll_probe():774]fll_doe_fll05 from DTree; rc(0) fll_doe_fll05(0x0)\n[    1.293474]  (0)[1:swapper/0][FLL][INFO][fll_probe():796]fll_doe_fll06 from DTree; rc(0) fll_doe_fll06(0x0)\n[    1.293480]  (0)[1:swapper/0][FLL][INFO][fll_probe():818]fll_doe_fll07 from DTree; rc(0) fll_doe_fll07(0x0)\n[    1.293486]  (0)[1:swapper/0][FLL][INFO][fll_probe():840]fll_doe_fll08 from DTree; rc(0) fll_doe_fll08(0x0)\n[    1.293492]  (0)[1:swapper/0][FLL][INFO][fll_probe():862]fll_doe_fll09 from DTree; rc(0) fll_doe_fll09(0x0)\n[    1.293497]  (0)[1:swapper/0][FLL][INFO][fll_probe():884]fll_doe_pllclken from DTree; rc(0) fll_doe_pllclken(0x100)\n[    1.293503]  (0)[1:swapper/0][FLL][INFO][fll_probe():898]fll_doe_bren from DTree; rc(0) fll_doe_bren(0x100)\n[    1.293510]  (0)[1:swapper/0][FLL][INFO][fll_reserve_memory_dump():146]buf: 0xffffff8009d00000, aee_log_buf: 0xffffffdd23fef000\n[    1.293701]  (0)[1:swapper/0][FLL][INFO][fll_probe():908]fll probe ok!!\n[    1.293708]  (0)[1:swapper/0][CINST][INFO][cinst_probe():930]cinst_doe_enable from DTree; rc(0) cinst_doe_enable(0x10000)\n[    1.293714]  (0)[1:swapper/0][CINST][INFO][cinst_probe():956]cinst_doe_const_mode from DTree; rc(0) cinst_doe_const_mode(0x100)\n[    1.293720]  (0)[1:swapper/0][CINST][INFO][cinst_probe():976]cinst_doe_ls_idx_sel from DTree; rc(0) cinst_doe_ls_idx_sel(0x100)\n[    1.293726]  (0)[1:swapper/0][CINST][INFO][cinst_probe():996]cinst_doe_ls_period from DTree; rc(0) cinst_doe_ls_period(0x8)\n[    1.293732]  (0)[1:swapper/0][CINST][INFO][cinst_probe():1016]cinst_doe_ls_credit from DTree; rc(0) cinst_doe_ls_credit(0x20)\n[    1.293739]  (0)[1:swapper/0][CINST][INFO][cinst_probe():1036]cinst_doe_ls_low_freq_period from DTree; rc(0) cinst_doe_ls_low_freq_period(0x8)\n[    1.293745]  (0)[1:swapper/0][CINST][INFO][cinst_probe():1057]cinst_doe_ls_low_freq_enable from DTree; rc(0) cinst_doe_ls_low_freq_enable(0x2)\n[    1.293751]  (0)[1:swapper/0][CINST][INFO][cinst_probe():1077]cinst_doe_vx_period from DTree; rc(0) cinst_doe_vx_period(0x8)\n[    1.293757]  (0)[1:swapper/0][CINST][INFO][cinst_probe():1097]cinst_doe_vx_credit from DTree; rc(0) cinst_doe_vx_credit(0x20)\n[    1.293764]  (0)[1:swapper/0][CINST][INFO][cinst_probe():1117]cinst_doe_vx_low_freq_period from DTree; rc(0) cinst_doe_vx_low_freq_period(0x8)\n[    1.293771]  (0)[1:swapper/0][CINST][INFO][cinst_probe():1138]cinst_doe_vx_low_freq_enable from DTree; rc(0) cinst_doe_vx_low_freq_enable(0x2)\n[    1.293780]  (0)[1:swapper/0][CINST][INFO][cinst_reserve_memory_dump():227][CPU6] bcpu_value=0x07c607c6, ao_value=0x00068000\n[    1.293794]  (0)[1:swapper/0][CINST][INFO][cinst_reserve_memory_dump():227][CPU7] bcpu_value=0x07c607c6, ao_value=0x00068000\n[    1.293805]  (0)[1:swapper/0][CINST][INFO][cinst_reserve_memory_dump():338]\n               \n               [Kernel Probe]\n               cpu6 LS period=6 credit=6 low_period=7 low_freq_en=0 enable=1\n               cpu6 VX period=6 credit=6 low_period=7 low_freq_en=0 enable=1\n               cpu6 const_mode=0 ls_index_select=1\n               cpu7 LS period=6 credit=6 low_period=7 low_freq_en=0 enable=1\n               cpu7 VX period=6 credit=6 low_period=7 low_freq_en=0 enable=1\n               cpu7 const_mode=0 ls_index_select=1\n[    1.293863]  (0)[1:swapper/0][CINST][INFO][cinst_reserve_memory_dump():339]\n               \n               [Kernel Probe]\n               cpu6 LS period=6 credit=6 low_period=7 low_freq_en=0 enable=1\n               cpu6 VX period=6 credit=6 low_period=7 low_freq_en=0 enable=1\n               cpu6 const_mode=0 ls_index_select=1\n               cpu7 LS period=6 credit=6 low_period=7 low_freq_en=0 enable=1\n               cpu7 VX period=6 credit=6 low_period=7 low_freq_en=0 enable=1\n               cpu7 const_mode=0 ls_index_select=1\n[    1.293867]  (0)[1:swapper/0][CINST][INFO][cinst_probe():1154]cinst probe ok!!\n[    1.293874]  (0)[1:swapper/0][DRCC][INFO][drcc_smc_handle():264][drcc_smc_handle]:cpu(0) group(0) val(0)\n[    1.294011]  (0)[1:swapper/0][DRCC][INFO][drcc_smc_handle():264][drcc_smc_handle]:cpu(1) group(0) val(0)\n[    1.294142]  (0)[1:swapper/0][DRCC][INFO][drcc_smc_handle():264][drcc_smc_handle]:cpu(2) group(0) val(0)\n[    1.294273]  (0)[1:swapper/0][DRCC][INFO][drcc_smc_handle():264][drcc_smc_handle]:cpu(3) group(0) val(0)\n[    1.294405]  (0)[1:swapper/0][DRCC][INFO][drcc_smc_handle():264][drcc_smc_handle]:cpu(4) group(0) val(0)\n[    1.294536]  (0)[1:swapper/0][DRCC][INFO][drcc_smc_handle():264][drcc_smc_handle]:cpu(5) group(0) val(0)\n[    1.294666]  (0)[1:swapper/0][DRCC][INFO][drcc_smc_handle():264][drcc_smc_handle]:cpu(6) group(0) val(0)\n[    1.294797]  (0)[1:swapper/0][DRCC][INFO][drcc_smc_handle():264][drcc_smc_handle]:cpu(7) group(0) val(0)\n[    1.294967]  (0)[1:swapper/0][DRCC][INFO][drcc_reserve_memory_dump():196]buf: 0xffffff8009d20000, aee_log_buf: 0xffffffdd23fef000\n[    1.300527]  (0)[1:swapper/0][DRCC][INFO][drcc_probe():1090]drcc probe ok!!\n[    1.300794]  (0)[1:swapper/0][Power/spower] 6/18/9/17/31/41/3/2/7/4/1/0/13/4/\n[    1.300809]  (0)[1:swapper/0][Power/spower] 6.2/18.5/9.0/17.9/31.2/41.3/3.9/2.7/7.2/4.0/1.7/0.8/13.2/4.4/\n[    1.300825]  (0)[1:swapper/0][Power/cpufreq] mediatek/cannon-mt6853-overlay mediatek/k6853v1_64_6360 4, 0, Settle time(1250, 500) efuse_val = 0x20 0xda572499\n[    1.300830]  (0)[1:swapper/0][Power/cpufreq] @@~_mt_cpufreq_tbl_init DVFS state = 1\n[    1.300838]  (0)[1:swapper/0]DISABLE_PBM_FEATURE is defined.\n[    1.300859]  (0)[1:swapper/0][Power/PPM] @ppm_cpi_init: CPI done! enable = 0\n[    1.300872]  (0)[1:swapper/0][Power/PPM] @ppm_sysboost_policy_init: register PPM_POLICY_SYS_BOOST done!\n[    1.300879]  (0)[1:swapper/0][Power/PPM] @ppm_ptpod_policy_init: register PPM_POLICY_PTPOD done!\n[    1.300885]  (0)[1:swapper/0][Power/PPM] @ppm_pwrthro_policy_init: register PPM_POLICY_PWR_THRO done!\n[    1.300894]  (0)[1:swapper/0][Power/PPM] @ppm_thermal_policy_init: register PPM_POLICY_THERMAL done!\n[    1.300907]  (0)[1:swapper/0][Power/PPM] @ppm_hard_userlimit_policy_init: register PPM_POLICY_HARD_USER_LIMIT done!\n[    1.300918]  (0)[1:swapper/0][Power/PPM] @ppm_userlimit_policy_init: register PPM_POLICY_USER_LIMIT done!\n[    1.300926]  (0)[1:swapper/0][Power/PPM] @ppm_forcelimit_policy_init: register PPM_POLICY_FORCE_LIMIT done!\n[    1.300934]  (0)[1:swapper/0][Power/PPM] @ppm_ut_policy_init: register PPM_POLICY_UT done!\n[    1.301268]  (0)[1:swapper/0][GPU/DVFS] @__mt_gpufreq_pdrv_probe start\n[    1.302846]  (0)[1:swapper/0][GPU/DVFS] invalid efuse id: 0x0\n[    1.302854]  (0)[1:swapper/0][GPU/DVFS] @__mt_gpufreq_get_segment_id: efuse_id: 0x20, segment_id: 2\n[    1.302876]  (0)[1:swapper/0][Thermal/TZ/CPU][0].gpufreq_khz=950000, .gpufreq_power=1044\n[    1.302881]  (0)[1:swapper/0][Thermal/TZ/CPU][1].gpufreq_khz=941000, .gpufreq_power=1034\n[    1.302885]  (0)[1:swapper/0][Thermal/TZ/CPU][2].gpufreq_khz=932000, .gpufreq_power=1001\n[    1.302890]  (0)[1:swapper/0][Thermal/TZ/CPU][3].gpufreq_khz=923000, .gpufreq_power=969\n[    1.302894]  (0)[1:swapper/0][Thermal/TZ/CPU][4].gpufreq_khz=915000, .gpufreq_power=959\n[    1.302899]  (0)[1:swapper/0][Thermal/TZ/CPU][5].gpufreq_khz=906000, .gpufreq_power=928\n[    1.302903]  (0)[1:swapper/0][Thermal/TZ/CPU][6].gpufreq_khz=897000, .gpufreq_power=897\n[    1.302907]  (0)[1:swapper/0][Thermal/TZ/CPU][7].gpufreq_khz=888000, .gpufreq_power=888\n[    1.302912]  (0)[1:swapper/0][Thermal/TZ/CPU][8].gpufreq_khz=880000, .gpufreq_power=858\n[    1.302916]  (0)[1:swapper/0][Thermal/TZ/CPU][9].gpufreq_khz=865000, .gpufreq_power=829\n[    1.302920]  (0)[1:swapper/0][Thermal/TZ/CPU][10].gpufreq_khz=850000, .gpufreq_power=792\n[    1.302924]  (0)[1:swapper/0][Thermal/TZ/CPU][11].gpufreq_khz=835000, .gpufreq_power=775\n[    1.302929]  (0)[1:swapper/0][Thermal/TZ/CPU][12].gpufreq_khz=820000, .gpufreq_power=748\n[    1.302933]  (0)[1:swapper/0][Thermal/TZ/CPU][13].gpufreq_khz=805000, .gpufreq_power=713\n[    1.302937]  (0)[1:swapper/0][Thermal/TZ/CPU][14].gpufreq_khz=790000, .gpufreq_power=697\n[    1.302942]  (0)[1:swapper/0][Thermal/TZ/CPU][15].gpufreq_khz=775000, .gpufreq_power=672\n[    1.302946]  (0)[1:swapper/0][Thermal/TZ/CPU][16].gpufreq_khz=760000, .gpufreq_power=639\n[    1.302950]  (0)[1:swapper/0][Thermal/TZ/CPU][17].gpufreq_khz=745000, .gpufreq_power=624\n[    1.302955]  (0)[1:swapper/0][Thermal/TZ/CPU][18].gpufreq_khz=730000, .gpufreq_power=601\n[    1.302959]  (0)[1:swapper/0][Thermal/TZ/CPU][19].gpufreq_khz=715000, .gpufreq_power=571\n[    1.302963]  (0)[1:swapper/0][Thermal/TZ/CPU][20].gpufreq_khz=700000, .gpufreq_power=556\n[    1.302967]  (0)[1:swapper/0][Thermal/TZ/CPU][21].gpufreq_khz=685000, .gpufreq_power=534\n[    1.302972]  (0)[1:swapper/0][Thermal/TZ/CPU][22].gpufreq_khz=670000, .gpufreq_power=506\n[    1.302976]  (0)[1:swapper/0][Thermal/TZ/CPU][23].gpufreq_khz=655000, .gpufreq_power=479\n[    1.302980]  (0)[1:swapper/0][Thermal/TZ/CPU][24].gpufreq_khz=640000, .gpufreq_power=472\n[    1.302984]  (0)[1:swapper/0][Thermal/TZ/CPU][25].gpufreq_khz=619000, .gpufreq_power=452\n[    1.302989]  (0)[1:swapper/0][Thermal/TZ/CPU][26].gpufreq_khz=598000, .gpufreq_power=439\n[    1.302993]  (0)[1:swapper/0][Thermal/TZ/CPU][27].gpufreq_khz=577000, .gpufreq_power=414\n[    1.302997]  (0)[1:swapper/0][Thermal/TZ/CPU][28].gpufreq_khz=556000, .gpufreq_power=395\n[    1.303001]  (0)[1:swapper/0][Thermal/TZ/CPU][29].gpufreq_khz=535000, .gpufreq_power=382\n[    1.303006]  (0)[1:swapper/0][Thermal/TZ/CPU][30].gpufreq_khz=515000, .gpufreq_power=358\n[    1.303010]  (0)[1:swapper/0][Thermal/TZ/CPU][31].gpufreq_khz=494000, .gpufreq_power=340\n[    1.303014]  (0)[1:swapper/0][Thermal/TZ/CPU][32].gpufreq_khz=473000, .gpufreq_power=327\n[    1.303019]  (0)[1:swapper/0][Thermal/TZ/CPU][33].gpufreq_khz=452000, .gpufreq_power=314\n[    1.303023]  (0)[1:swapper/0][Thermal/TZ/CPU][34].gpufreq_khz=431000, .gpufreq_power=295\n[    1.303027]  (0)[1:swapper/0][Thermal/TZ/CPU][35].gpufreq_khz=410000, .gpufreq_power=283\n[    1.303031]  (0)[1:swapper/0][Thermal/TZ/CPU][36].gpufreq_khz=390000, .gpufreq_power=263\n[    1.303118]  (0)[1:swapper/0][GPU/DVFS] Preloader init freq is 390000\n[    1.303153]  (0)[1:swapper/0][GPU/DVFS] GPU DVFS and CUST INIT Enable !!!\n[    1.303392]  (0)[1:swapper/0][GPU/DVFS] @__mt_gpufreq_pdrv_probe: GPU driver init done\n[    1.309063]  (0)[1:swapper/0][PSEUDO][pseudo_port_probe #3743]: done, larbid:0, mask:0x7ffffffff)\n[    1.309895]  (0)[1:swapper/0][PSEUDO][pseudo_port_probe #3743]: done, larbid:1, mask:0x7ffffffff)\n[    1.310613]  (0)[1:swapper/0]mtk_iommu_create_iova_space, 2347, dev:pseudo_m4u-larb2 allocated IOVA group1:0000000011db5443, domain2:00000000b449a712 owner:-1 start:0x200000000 end:0x2ffffffff ext=34\n[    1.310719]  (0)[1:swapper/0]iova_reserve_iommu_regions, 252, reserved iova from 0x240000000 to 0x243fff000\n[    1.310726]  (0)[1:swapper/0]iova_reserve_iommu_regions, 252, reserved iova from 0x244000000 to 0x247fff000\n[    1.310742]  (0)[1:swapper/0][PSEUDO][pseudo_port_probe #3743]: done, larbid:2, mask:0x7ffffffff)\n[    1.313393]  (0)[1:swapper/0]mtk_iommu_create_iova_space, 2347, dev:pseudo_m4u-larb4 allocated IOVA group2:000000009fe73bef, domain1:000000002441d799 owner:-1 start:0x100000000 end:0x1ffffffff ext=34\n[    1.313500]  (0)[1:swapper/0][PSEUDO][pseudo_port_probe #3743]: done, larbid:4, mask:0x7ffffffff)\n[    1.316526]  (0)[1:swapper/0][PSEUDO][pseudo_port_probe #3743]: done, larbid:7, mask:0x7ffffffff)\n[    1.329493]  (0)[1:swapper/0][PSEUDO][pseudo_port_probe #3743]: done, larbid:9, mask:0x7ffffffff)\n[    1.342442]  (0)[1:swapper/0][PSEUDO][pseudo_port_probe #3743]: done, larbid:11, mask:0x7ffffffff)\n[    1.345085]  (0)[1:swapper/0][PSEUDO][pseudo_port_probe #3743]: done, larbid:13, mask:0x7ffffffff)\n[    1.345992]  (0)[1:swapper/0][PSEUDO][pseudo_port_probe #3743]: done, larbid:14, mask:0x7ffffffff)\n[    1.350871]  (0)[1:swapper/0][PSEUDO][pseudo_port_probe #3743]: done, larbid:16, mask:0x7ffffffff)\n[    1.355697]  (0)[1:swapper/0][PSEUDO][pseudo_port_probe #3743]: done, larbid:17, mask:0x7ffffffff)\n[    1.359683]  (6)[127:chgdet_thread]chgdet_task_threadfn get tcpc device type_c_port0 fail\n[    1.360604]  (0)[1:swapper/0][PSEUDO][pseudo_port_probe #3743]: done, larbid:18, mask:0x7ffffffff)\n[    1.361150]  (0)[1:swapper/0][PSEUDO][pseudo_port_probe #3743]: done, larbid:19, mask:0x7ffffffff)\n[    1.362034]  (0)[1:swapper/0][PSEUDO][pseudo_port_probe #3743]: done, larbid:20, mask:0x7ffffffff)\n[    1.362428]  (0)[1:swapper/0]mtk_iommu_create_iova_space, 2347, dev:pseudo_m4u-ccu0 allocated IOVA group3:00000000cb6c3b57, domain3:00000000b843ea33 owner:-1 start:0x240000000 end:0x243ffffff ext=34\n[    1.362543]  (0)[1:swapper/0][PSEUDO][pseudo_port_probe #3743]: done, larbid:22, mask:0x7ffffffff)\n[    1.362955]  (0)[1:swapper/0]mtk_iommu_create_iova_space, 2347, dev:pseudo_m4u-ccu1 allocated IOVA group4:00000000af6ca87e, domain4:0000000016493a00 owner:-1 start:0x244000000 end:0x247ffffff ext=34\n[    1.363072]  (0)[1:swapper/0][PSEUDO][pseudo_port_probe #3743]: done, larbid:23, mask:0x7ffffffff)\n[    1.363272]  (0)[1:swapper/0]mtk_iommu_attach_pgtable, 1861, iommu:1 backup pgtable base addr=0x7fea0000, quiks=0xf\n[    1.363297]  (0)[1:swapper/0]mtk_iommu_create_iova_space, 2347, dev:pseudo_m4u-vpu-code allocated IOVA group5:000000008318c3db, domain6:000000003e125457 owner:672 start:0x370000000 end:0x3825fffff ext=34\n[    1.363413]  (0)[1:swapper/0][PSEUDO][pseudo_port_probe #3743]: done, larbid:25, mask:0x7ffffffff)\n[    1.363624]  (0)[1:swapper/0]mtk_iommu_create_iova_space, 2347, dev:pseudo_m4u-vpu-data allocated IOVA group6:00000000e3e8f4ce, domain5:0000000075ba2ac4 owner:673 start:0x300000000 end:0x3ffffffff ext=34\n[    1.363738]  (0)[1:swapper/0]iova_reserve_iommu_regions, 252, reserved iova from 0x310000000 to 0x31ffff000\n[    1.363745]  (0)[1:swapper/0]iova_reserve_iommu_regions, 252, reserved iova from 0x370000000 to 0x3825ff000\n[    1.363751]  (0)[1:swapper/0]iova_reserve_iommu_regions, 252, reserved iova from 0x304000000 to 0x307fff000\n[    1.363767]  (0)[1:swapper/0][PSEUDO][pseudo_port_probe #3743]: done, larbid:26, mask:0x7ffffffff)\n[    1.363972]  (0)[1:swapper/0]mtk_iommu_create_iova_space, 2347, dev:pseudo_m4u-vpu-vlm allocated IOVA group7:00000000a7970046, domain7:00000000a3ce0556 owner:674 start:0x304000000 end:0x307ffffff ext=34\n[    1.364097]  (0)[1:swapper/0][PSEUDO][pseudo_port_probe #3743]: done, larbid:27, mask:0x7ffffffff)\n[    1.364306]  (0)[1:swapper/0][PSEUDO][pseudo_port_probe #3743]: done, larbid:24, mask:0x7ffffffff)\n[    1.365265]  (0)[1:swapper/0][PSEUDO][pseudo_probe #3575]: pseudo_probe: 1\n[    1.366548]  (0)[1:swapper/0][PSEUDO][pseudo_probe #3633]: cannot find larb 3, skip it\n[    1.367317]  (0)[1:swapper/0][PSEUDO][pseudo_probe #3633]: cannot find larb 5, skip it\n[    1.367581]  (0)[1:swapper/0][PSEUDO][pseudo_probe #3633]: cannot find larb 6, skip it\n[    1.368288]  (0)[1:swapper/0][PSEUDO][pseudo_probe #3633]: cannot find larb 8, skip it\n[    1.369023]  (0)[1:swapper/0][PSEUDO][pseudo_probe #3633]: cannot find larb 10, skip it\n[    1.369832]  (0)[1:swapper/0][PSEUDO][pseudo_probe #3633]: cannot find larb 12, skip it\n[    1.371024]  (0)[1:swapper/0][PSEUDO][pseudo_probe #3633]: cannot find larb 15, skip it\n[    1.373667]  (0)[1:swapper/0][PSEUDO][pseudo_probe #3677]: pg_callback replace fb_notifier\n[    1.373674]  (0)[1:swapper/0][PSEUDO][pseudo_probe #3686]: pseudo_probe done\n[    1.374007]  (0)[1:swapper/0]BOOTPROF:      1374.004310:initcall: mtk_pseudo_init    65.816000ms\n[    1.374485]  (0)[1:swapper/0]MMP: mmprofile_enable(): enable: 1\n[    1.374538]  (0)[1:swapper/0]MMP: mmprofile_force_start(): start: 1\n[    1.374560]  (0)[1:swapper/0][mmdvfs]vcore_steps: [0, 1, 2, 3, 0, 0], count:4\n[    1.374564]  (0)[1:swapper/0][mmdvfs]start get step node of disp_freq\n[    1.374570]  (0)[1:swapper/0][mmdvfs] node name disp_step0\n[    1.374602]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_DISP_SEL\n[    1.374643]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MAINPLL_D4\n[    1.374649]  (0)[1:swapper/0][mmdvfs]disp_step0: 546MHz, clk:1/0/10\n[    1.374656]  (0)[1:swapper/0][mmdvfs]read freq steps disp_step0_ext failed (-22)\n[    1.374660]  (0)[1:swapper/0][mmdvfs] node name disp_step1\n[    1.374675]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_DISP_SEL\n[    1.374717]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_UNIVPLL_D6\n[    1.374722]  (0)[1:swapper/0][mmdvfs]disp_step1: 416MHz, clk:1/0/11\n[    1.374729]  (0)[1:swapper/0][mmdvfs]read freq steps disp_step1_ext failed (-22)\n[    1.374732]  (0)[1:swapper/0][mmdvfs] node name disp_step2\n[    1.374748]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_DISP_SEL\n[    1.374792]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_UNIVPLL_D4_D2\n[    1.374797]  (0)[1:swapper/0][mmdvfs]disp_step2: 312MHz, clk:1/0/12\n[    1.374803]  (0)[1:swapper/0][mmdvfs]read freq steps disp_step2_ext failed (-22)\n[    1.374807]  (0)[1:swapper/0][mmdvfs] node name disp_step3\n[    1.374822]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_DISP_SEL\n[    1.374869]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_UNIVPLL_D6_D2\n[    1.374873]  (0)[1:swapper/0][mmdvfs]disp_step3: 208MHz, clk:1/0/13\n[    1.374880]  (0)[1:swapper/0][mmdvfs]read freq steps disp_step3_ext failed (-22)\n[    1.374884]  (0)[1:swapper/0][mmdvfs]disp_freq: step size:4\n[    1.374889]  (0)[1:swapper/0][mmdvfs]disp_freq: add notifier\n[    1.374892]  (0)[1:swapper/0][mmdvfs]MMDVFS limit is off\n[    1.374896]  (0)[1:swapper/0][mmdvfs]start get step node of mdp_freq\n[    1.374902]  (0)[1:swapper/0][mmdvfs] node name mdp_step0\n[    1.374938]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MDP_SEL\n[    1.375011]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_TVDPLL\n[    1.375016]  (0)[1:swapper/0][mmdvfs]mdp_step0: 594MHz, clk:1/8/24\n[    1.375022]  (0)[1:swapper/0][mmdvfs]mdp_step0_ext: 594MHz, clk:3/9/1732923\n[    1.375026]  (0)[1:swapper/0][mmdvfs] node name mdp_step1\n[    1.375061]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MDP_SEL\n[    1.375136]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MAINPLL_D5\n[    1.375141]  (0)[1:swapper/0][mmdvfs]mdp_step1: 436MHz, clk:1/8/25\n[    1.375148]  (0)[1:swapper/0][mmdvfs]mdp_step1_ext: 436MHz, clk:3/9/1732923\n[    1.375151]  (0)[1:swapper/0][mmdvfs] node name mdp_step2\n[    1.375187]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MDP_SEL\n[    1.375245]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MMPLL_D4_D2\n[    1.375249]  (0)[1:swapper/0][mmdvfs]mdp_step2: 343MHz, clk:1/8/18\n[    1.375256]  (0)[1:swapper/0][mmdvfs]mdp_step2_ext: 343MHz, clk:3/9/1732923\n[    1.375260]  (0)[1:swapper/0][mmdvfs] node name mdp_step3\n[    1.375296]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MDP_SEL\n[    1.375356]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MMPLL_D5_D2\n[    1.375361]  (0)[1:swapper/0][mmdvfs]mdp_step3: 229MHz, clk:1/8/19\n[    1.375368]  (0)[1:swapper/0][mmdvfs]mdp_step3_ext: 229MHz, clk:3/9/1443052\n[    1.375372]  (0)[1:swapper/0][mmdvfs]mdp_freq: step size:4\n[    1.375376]  (0)[1:swapper/0][mmdvfs]mdp_freq: add notifier\n[    1.375379]  (0)[1:swapper/0][mmdvfs]MMDVFS limit is off\n[    1.375383]  (0)[1:swapper/0][mmdvfs]start get step node of vdec_freq\n[    1.375388]  (0)[1:swapper/0][mmdvfs] node name vdec_step0\n[    1.375425]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_VDEC_SEL\n[    1.375463]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MAINPLL_D4\n[    1.375468]  (0)[1:swapper/0][mmdvfs]vdec_step0: 546MHz, clk:1/7/10\n[    1.375475]  (0)[1:swapper/0][mmdvfs]read freq steps vdec_step0_ext failed (-22)\n[    1.375478]  (0)[1:swapper/0][mmdvfs] node name vdec_step1\n[    1.375511]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_VDEC_SEL\n[    1.375552]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_UNIVPLL_D6\n[    1.375557]  (0)[1:swapper/0][mmdvfs]vdec_step1: 416MHz, clk:1/7/11\n[    1.375564]  (0)[1:swapper/0][mmdvfs]read freq steps vdec_step1_ext failed (-22)\n[    1.375567]  (0)[1:swapper/0][mmdvfs] node name vdec_step2\n[    1.375600]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_VDEC_SEL\n[    1.375643]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_UNIVPLL_D4_D2\n[    1.375648]  (0)[1:swapper/0][mmdvfs]vdec_step2: 312MHz, clk:1/7/12\n[    1.375655]  (0)[1:swapper/0][mmdvfs]read freq steps vdec_step2_ext failed (-22)\n[    1.375658]  (0)[1:swapper/0][mmdvfs] node name vdec_step3\n[    1.375691]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_VDEC_SEL\n[    1.375761]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MAINPLL_D5_D2\n[    1.375765]  (0)[1:swapper/0][mmdvfs]vdec_step3: 218MHz, clk:1/7/23\n[    1.375772]  (0)[1:swapper/0][mmdvfs]read freq steps vdec_step3_ext failed (-22)\n[    1.375776]  (0)[1:swapper/0][mmdvfs]vdec_freq: step size:4\n[    1.375780]  (0)[1:swapper/0][mmdvfs]vdec_freq: add notifier\n[    1.375783]  (0)[1:swapper/0][mmdvfs]MMDVFS limit is off\n[    1.375787]  (0)[1:swapper/0][mmdvfs]start get step node of venc_freq\n[    1.375792]  (0)[1:swapper/0][mmdvfs] node name venc_step0\n[    1.375823]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_VENC_SEL\n[    1.375872]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_UNIVPLL_D4\n[    1.375876]  (0)[1:swapper/0][mmdvfs]venc_step0: 624MHz, clk:1/6/14\n[    1.375883]  (0)[1:swapper/0][mmdvfs]read freq steps venc_step0_ext failed (-22)\n[    1.375886]  (0)[1:swapper/0][mmdvfs] node name venc_step1\n[    1.375917]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_VENC_SEL\n[    1.375982]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MMPLL_D6\n[    1.375987]  (0)[1:swapper/0][mmdvfs]venc_step1: 458MHz, clk:1/6/20\n[    1.375994]  (0)[1:swapper/0][mmdvfs]read freq steps venc_step1_ext failed (-22)\n[    1.375997]  (0)[1:swapper/0][mmdvfs] node name venc_step2\n[    1.376028]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_VENC_SEL\n[    1.376093]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MAINPLL_D6\n[    1.376098]  (0)[1:swapper/0][mmdvfs]venc_step2: 364MHz, clk:1/6/21\n[    1.376104]  (0)[1:swapper/0][mmdvfs]read freq steps venc_step2_ext failed (-22)\n[    1.376108]  (0)[1:swapper/0][mmdvfs] node name venc_step3\n[    1.376138]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_VENC_SEL\n[    1.376206]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_UNIVPLL_D5_D2\n[    1.376211]  (0)[1:swapper/0][mmdvfs]venc_step3: 249MHz, clk:1/6/22\n[    1.376217]  (0)[1:swapper/0][mmdvfs]read freq steps venc_step3_ext failed (-22)\n[    1.376221]  (0)[1:swapper/0][mmdvfs]venc_freq: step size:4\n[    1.376225]  (0)[1:swapper/0][mmdvfs]venc_freq: add notifier\n[    1.376228]  (0)[1:swapper/0][mmdvfs]MMDVFS limit is off\n[    1.376232]  (0)[1:swapper/0][mmdvfs]start get step node of img_freq\n[    1.376238]  (0)[1:swapper/0][mmdvfs] node name img_step0\n[    1.376259]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_IMG1_SEL\n[    1.376307]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_UNIVPLL_D4\n[    1.376312]  (0)[1:swapper/0][mmdvfs]img_step0: 624MHz, clk:1/2/14\n[    1.376319]  (0)[1:swapper/0][mmdvfs]read freq steps img_step0_ext failed (-22)\n[    1.376322]  (0)[1:swapper/0][mmdvfs] node name img_step1\n[    1.376342]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_IMG1_SEL\n[    1.376404]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MMPLL_D6\n[    1.376409]  (0)[1:swapper/0][mmdvfs]img_step1: 458MHz, clk:1/2/20\n[    1.376416]  (0)[1:swapper/0][mmdvfs]read freq steps img_step1_ext failed (-22)\n[    1.376419]  (0)[1:swapper/0][mmdvfs] node name img_step2\n[    1.376440]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_IMG1_SEL\n[    1.376497]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MMPLL_D4_D2\n[    1.376501]  (0)[1:swapper/0][mmdvfs]img_step2: 343MHz, clk:1/2/18\n[    1.376508]  (0)[1:swapper/0][mmdvfs]read freq steps img_step2_ext failed (-22)\n[    1.376512]  (0)[1:swapper/0][mmdvfs] node name img_step3\n[    1.376532]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_IMG1_SEL\n[    1.376592]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MMPLL_D5_D2\n[    1.376596]  (0)[1:swapper/0][mmdvfs]img_step3: 229MHz, clk:1/2/19\n[    1.376603]  (0)[1:swapper/0][mmdvfs]read freq steps img_step3_ext failed (-22)\n[    1.376607]  (0)[1:swapper/0][mmdvfs]img_freq: step size:4\n[    1.376611]  (0)[1:swapper/0][mmdvfs]img_freq: add notifier\n[    1.376614]  (0)[1:swapper/0][mmdvfs]MMDVFS limit is off\n[    1.376618]  (0)[1:swapper/0][mmdvfs]start get step node of cam_freq\n[    1.376623]  (0)[1:swapper/0][mmdvfs] node name cam_step0\n[    1.376642]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_CAM_SEL\n[    1.376690]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_UNIVPLL_D4\n[    1.376695]  (0)[1:swapper/0][mmdvfs]cam_step0: 624MHz, clk:1/1/14\n[    1.376701]  (0)[1:swapper/0][mmdvfs]read freq steps cam_step0_ext failed (-22)\n[    1.376705]  (0)[1:swapper/0][mmdvfs] node name cam_step1\n[    1.376723]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_CAM_SEL\n[    1.376773]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_UNIVPLL_D5\n[    1.376778]  (0)[1:swapper/0][mmdvfs]cam_step1: 499MHz, clk:1/1/15\n[    1.376785]  (0)[1:swapper/0][mmdvfs]read freq steps cam_step1_ext failed (-22)\n[    1.376789]  (0)[1:swapper/0][mmdvfs] node name cam_step2\n[    1.376807]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_CAM_SEL\n[    1.376859]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MMPLL_D7\n[    1.376864]  (0)[1:swapper/0][mmdvfs]cam_step2: 392MHz, clk:1/1/16\n[    1.376871]  (0)[1:swapper/0][mmdvfs]read freq steps cam_step2_ext failed (-22)\n[    1.376874]  (0)[1:swapper/0][mmdvfs] node name cam_step3\n[    1.376892]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_CAM_SEL\n[    1.376948]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MAINPLL_D4_D2\n[    1.376952]  (0)[1:swapper/0][mmdvfs]cam_step3: 273MHz, clk:1/1/17\n[    1.376959]  (0)[1:swapper/0][mmdvfs]read freq steps cam_step3_ext failed (-22)\n[    1.376963]  (0)[1:swapper/0][mmdvfs]cam_freq: step size:4\n[    1.376967]  (0)[1:swapper/0][mmdvfs]cam_freq: add notifier\n[    1.376970]  (0)[1:swapper/0][mmdvfs]MMDVFS limit is off\n[    1.376974]  (0)[1:swapper/0][mmdvfs]start get step node of dpe_freq\n[    1.376979]  (0)[1:swapper/0][mmdvfs] node name dpe_step0\n[    1.377008]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_DPE_SEL\n[    1.377046]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MAINPLL_D4\n[    1.377051]  (0)[1:swapper/0][mmdvfs]dpe_step0: 546MHz, clk:1/4/10\n[    1.377057]  (0)[1:swapper/0][mmdvfs]read freq steps dpe_step0_ext failed (-22)\n[    1.377061]  (0)[1:swapper/0][mmdvfs] node name dpe_step1\n[    1.377087]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_DPE_SEL\n[    1.377149]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MMPLL_D6\n[    1.377153]  (0)[1:swapper/0][mmdvfs]dpe_step1: 458MHz, clk:1/4/20\n[    1.377160]  (0)[1:swapper/0][mmdvfs]read freq steps dpe_step1_ext failed (-22)\n[    1.377164]  (0)[1:swapper/0][mmdvfs] node name dpe_step2\n[    1.377189]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_DPE_SEL\n[    1.377253]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MAINPLL_D6\n[    1.377258]  (0)[1:swapper/0][mmdvfs]dpe_step2: 364MHz, clk:1/4/21\n[    1.377265]  (0)[1:swapper/0][mmdvfs]read freq steps dpe_step2_ext failed (-22)\n[    1.377268]  (0)[1:swapper/0][mmdvfs] node name dpe_step3\n[    1.377294]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_DPE_SEL\n[    1.377360]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_UNIVPLL_D5_D2\n[    1.377365]  (0)[1:swapper/0][mmdvfs]dpe_step3: 249MHz, clk:1/4/22\n[    1.377372]  (0)[1:swapper/0][mmdvfs]read freq steps dpe_step3_ext failed (-22)\n[    1.377376]  (0)[1:swapper/0][mmdvfs]dpe_freq: step size:4\n[    1.377380]  (0)[1:swapper/0][mmdvfs]dpe_freq: add notifier\n[    1.377383]  (0)[1:swapper/0][mmdvfs]MMDVFS limit is off\n[    1.377386]  (0)[1:swapper/0][mmdvfs]start get step node of ipe_freq\n[    1.377392]  (0)[1:swapper/0][mmdvfs] node name ipe_step0\n[    1.377420]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_IPE_SEL\n[    1.377458]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MAINPLL_D4\n[    1.377463]  (0)[1:swapper/0][mmdvfs]ipe_step0: 546MHz, clk:1/5/10\n[    1.377470]  (0)[1:swapper/0][mmdvfs]read freq steps ipe_step0_ext failed (-22)\n[    1.377473]  (0)[1:swapper/0][mmdvfs] node name ipe_step1\n[    1.377501]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_IPE_SEL\n[    1.377545]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_UNIVPLL_D6\n[    1.377549]  (0)[1:swapper/0][mmdvfs]ipe_step1: 416MHz, clk:1/5/11\n[    1.377556]  (0)[1:swapper/0][mmdvfs]read freq steps ipe_step1_ext failed (-22)\n[    1.377560]  (0)[1:swapper/0][mmdvfs] node name ipe_step2\n[    1.377588]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_IPE_SEL\n[    1.377631]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_UNIVPLL_D4_D2\n[    1.377636]  (0)[1:swapper/0][mmdvfs]ipe_step2: 312MHz, clk:1/5/12\n[    1.377643]  (0)[1:swapper/0][mmdvfs]read freq steps ipe_step2_ext failed (-22)\n[    1.377646]  (0)[1:swapper/0][mmdvfs] node name ipe_step3\n[    1.377674]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_IPE_SEL\n[    1.377734]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MMPLL_D5_D2\n[    1.377739]  (0)[1:swapper/0][mmdvfs]ipe_step3: 229MHz, clk:1/5/19\n[    1.377745]  (0)[1:swapper/0][mmdvfs]read freq steps ipe_step3_ext failed (-22)\n[    1.377749]  (0)[1:swapper/0][mmdvfs]ipe_freq: step size:4\n[    1.377752]  (0)[1:swapper/0][mmdvfs]MMDVFS limit is off\n[    1.377756]  (0)[1:swapper/0][mmdvfs]start get step node of ccu_freq\n[    1.377761]  (0)[1:swapper/0][mmdvfs] node name ccu_step0\n[    1.377799]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_CCU_SEL\n[    1.377849]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_UNIVPLL_D5\n[    1.377854]  (0)[1:swapper/0][mmdvfs]ccu_step0: 499MHz, clk:1/9/15\n[    1.377861]  (0)[1:swapper/0][mmdvfs]read freq steps ccu_step0_ext failed (-22)\n[    1.377864]  (0)[1:swapper/0][mmdvfs] node name ccu_step1\n[    1.377902]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_CCU_SEL\n[    1.377954]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MMPLL_D7\n[    1.377959]  (0)[1:swapper/0][mmdvfs]ccu_step1: 392MHz, clk:1/9/16\n[    1.377966]  (0)[1:swapper/0][mmdvfs]read freq steps ccu_step1_ext failed (-22)\n[    1.377969]  (0)[1:swapper/0][mmdvfs] node name ccu_step2\n[    1.378007]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_CCU_SEL\n[    1.378071]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MAINPLL_D6\n[    1.378076]  (0)[1:swapper/0][mmdvfs]ccu_step2: 364MHz, clk:1/9/21\n[    1.378083]  (0)[1:swapper/0][mmdvfs]read freq steps ccu_step2_ext failed (-22)\n[    1.378086]  (0)[1:swapper/0][mmdvfs] node name ccu_step3\n[    1.378124]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_CCU_SEL\n[    1.378183]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MMPLL_D5_D2\n[    1.378188]  (0)[1:swapper/0][mmdvfs]ccu_step3: 229MHz, clk:1/9/19\n[    1.378195]  (0)[1:swapper/0][mmdvfs]read freq steps ccu_step3_ext failed (-22)\n[    1.378198]  (0)[1:swapper/0][mmdvfs]ccu_freq: step size:4\n[    1.378202]  (0)[1:swapper/0][mmdvfs]MMDVFS limit is off\n[    1.378205]  (0)[1:swapper/0][mmdvfs]start get step node of img2_freq\n[    1.378211]  (0)[1:swapper/0][mmdvfs] node name img2_step0\n[    1.378235]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_IMG2_SEL\n[    1.378282]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_UNIVPLL_D4\n[    1.378287]  (0)[1:swapper/0][mmdvfs]img2_step0: 624MHz, clk:1/3/14\n[    1.378294]  (0)[1:swapper/0][mmdvfs]read freq steps img2_step0_ext failed (-22)\n[    1.378297]  (0)[1:swapper/0][mmdvfs] node name img2_step1\n[    1.378321]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_IMG2_SEL\n[    1.378383]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MMPLL_D6\n[    1.378387]  (0)[1:swapper/0][mmdvfs]img2_step1: 458MHz, clk:1/3/20\n[    1.378394]  (0)[1:swapper/0][mmdvfs]read freq steps img2_step1_ext failed (-22)\n[    1.378397]  (0)[1:swapper/0][mmdvfs] node name img2_step2\n[    1.378421]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_IMG2_SEL\n[    1.378477]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MMPLL_D4_D2\n[    1.378482]  (0)[1:swapper/0][mmdvfs]img2_step2: 343MHz, clk:1/3/18\n[    1.378489]  (0)[1:swapper/0][mmdvfs]read freq steps img2_step2_ext failed (-22)\n[    1.378493]  (0)[1:swapper/0][mmdvfs] node name img2_step3\n[    1.378516]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_IMG2_SEL\n[    1.378575]  (0)[1:swapper/0][mmdvfs]Get module clock: CLK_TOP_MMPLL_D5_D2\n[    1.378580]  (0)[1:swapper/0][mmdvfs]img2_step3: 229MHz, clk:1/3/19\n[    1.378587]  (0)[1:swapper/0][mmdvfs]read freq steps img2_step3_ext failed (-22)\n[    1.378591]  (0)[1:swapper/0][mmdvfs]img2_freq: step size:4\n[    1.378594]  (0)[1:swapper/0][mmdvfs]MMDVFS limit is off\n[    1.378627]  (0)[1:swapper/0][mmdvfs]larb[0].comm_port=0 channel=0\n[    1.378631]  (0)[1:swapper/0][mmdvfs]larb[1].comm_port=1 channel=1\n[    1.378635]  (0)[1:swapper/0][mmdvfs]larb[2].comm_port=4 channel=1\n[    1.378639]  (0)[1:swapper/0][mmdvfs]larb[3].comm_port=8 channel=0\n[    1.378643]  (0)[1:swapper/0][mmdvfs]larb[4].comm_port=2 channel=1\n[    1.378647]  (0)[1:swapper/0][mmdvfs]larb[5].comm_port=2 channel=1\n[    1.378651]  (0)[1:swapper/0][mmdvfs]larb[6].comm_port=8 channel=0\n[    1.378655]  (0)[1:swapper/0][mmdvfs]larb[7].comm_port=3 channel=0\n[    1.378659]  (0)[1:swapper/0][mmdvfs]larb[8].comm_port=8 channel=0\n[    1.378662]  (0)[1:swapper/0][mmdvfs]larb[9].comm_port=5 channel=1\n[    1.378666]  (0)[1:swapper/0][mmdvfs]larb[10].comm_port=8 channel=0\n[    1.378670]  (0)[1:swapper/0][mmdvfs]larb[11].comm_port=5 channel=1\n[    1.378674]  (0)[1:swapper/0][mmdvfs]larb[12].comm_port=8 channel=0\n[    1.378678]  (0)[1:swapper/0][mmdvfs]larb[13].comm_port=7 channel=1\n[    1.378682]  (0)[1:swapper/0][mmdvfs]larb[14].comm_port=6 channel=0\n[    1.378686]  (0)[1:swapper/0][mmdvfs]larb[15].comm_port=8 channel=0\n[    1.378690]  (0)[1:swapper/0][mmdvfs]larb[16].comm_port=6 channel=0\n[    1.378694]  (0)[1:swapper/0][mmdvfs]larb[17].comm_port=7 channel=1\n[    1.378698]  (0)[1:swapper/0][mmdvfs]larb[18].comm_port=7 channel=1\n[    1.378702]  (0)[1:swapper/0][mmdvfs]larb[19].comm_port=5 channel=1\n[    1.378706]  (0)[1:swapper/0][mmdvfs]larb[20].comm_port=5 channel=1\n[    1.378709]  (0)[1:swapper/0][mmdvfs]disp step size:4\n[    1.378713]  (0)[1:swapper/0][mmdvfs] - step[0]: 546\n[    1.378717]  (0)[1:swapper/0][mmdvfs] - step[1]: 416\n[    1.378721]  (0)[1:swapper/0][mmdvfs] - step[2]: 312\n[    1.378725]  (0)[1:swapper/0][mmdvfs] - step[3]: 208\n[    1.379142]  (0)[1:swapper/0][mmdvfs]mmdvfs_pmqos_init\n[    1.380886]  (0)[1:swapper/0][TMEM]tee_smem_devs_init:203 (2)\n[    1.380995]  (0)[1:swapper/0][TMEM]trusted mem device:0 created\n[    1.381000]  (0)[1:swapper/0][TMEM]SECMEM_TEE_GP_OPS\n[    1.381006]  (0)[1:swapper/0][TMEM]trusted mem type 'SECMEM_SVP' 0 registered!\n[    1.381093]  (0)[1:swapper/0][TMEM]trusted mem device:2 created\n[    1.381097]  (0)[1:swapper/0][TMEM]SECMEM_TEE_GP_OPS\n[    1.381102]  (0)[1:swapper/0][TMEM]trusted mem type 'SECMEM_WFD' 2 registered!\n[    1.381106]  (0)[1:swapper/0][TMEM]tee_smem_devs_init:219 (end)\n[    1.381349]  (0)[1:swapper/0]tee_sanity: driver registered\n[    1.381973]  (0)[1:swapper/0]atf_log: inited\n[    1.382635]  (0)[1:swapper/0]SSPM platform service is ready\n[    1.384658]  (0)[72:kworker/0:1][apu_power_2.0][error] Vol bin: vpu_efuse=3\n[    1.384850]  (0)[72:kworker/0:1][apu_power_2.0][error] regulator_get vpu failed, ret: -517\n[    1.384864]  (0)[72:kworker/0:1][apu_power_2.0][error] hal_config_power apu power state : 0, force return!\n[    1.388755]  (6)[219:reviser][reviser]reviser_mem_alloc mem(0x4000000/6291456/0xffffff800ae01000)\n[    1.388760]  (6)[219:reviser][reviser]reviser_memory_func reviser memory init\n[    1.389283]  (0)[1:swapper/0]mdw_tags_init: unable to register\n[    1.389975]  (0)[1:swapper/0]debug_INIT debug driver init\n[    1.390316]  (0)[1:swapper/0]debug_probe in\n[    1.390337]  (0)[1:swapper/0]debug probe done, dbglog_buf= 0x          (null)\n[    1.390444]  (0)[1:swapper/0]MCUPM: plt IPI success ret=0, ackdata=1\n[    1.390450]  (0)[1:swapper/0]MCUPM platform service is ready\n[    1.390694]  (0)[1:swapper/0]mt_accdet_probe() begin!\n[    1.390840]  (0)[1:swapper/0]input: ACCDET as /devices/virtual/input/input0\n[    1.390960]  (0)[1:swapper/0][pmic_register_interrupt_callback] intNo=133, callback=accdet_int_handler\n[    1.390967]  (0)[1:swapper/0][pmic_register_interrupt_callback] intNo=134, callback=accdet_eint_handler\n[    1.391600]  (0)[1:swapper/0]accdet mic_vol=8, plugout_deb=1 mic_mode=2\n[    1.391606]  (0)[1:swapper/0]accdet key thresh mid = 80, up = 220, down = 400\n[    1.391612]  (0)[1:swapper/0]accdet pwm_width=0x500, thresh=0x500, fall=0x1, rise=0x1f0\n[    1.391617]  (0)[1:swapper/0]deb0=0x800, deb1=0x1200, deb3=0x20, deb4=0x44\n[    1.391621]  (0)[1:swapper/0]e_pwm_width=0x4, e_pwm_thresh=0x1\n[    1.391625]  (0)[1:swapper/0]e_deb0=0x5, deb1=0x3, deb2=0x3, deb3=0x7\n[    1.391630]  (0)[1:swapper/0]e_inv_deb=0xe, mdet_en=0x0, e_det_m=0x4, m_det_m=0x4\n[    1.391635]  (0)[1:swapper/0]m_vth=0x0, m_vref2=0x0, e_e_res=0x0, m_e_res=0xffffffff\n[    1.392450]  (0)[1:swapper/0]accdet_get_efuse efuse=0xaf4,auxadc_val=-6mv\n[    1.393049]  (0)[1:swapper/0]accdet_get_efuse moisture_vdd efuse=0xff0e, moisture_vdd_offset=-1 mv\n[    1.393648]  (0)[1:swapper/0]accdet_get_efuse moisture_efuse efuse=0x0,moisture_offset=0 mv\n[    1.393817]  (0)[1:swapper/0]mt_accdet_probe done!\n[    1.394825]  (0)[1:swapper/0]accdet_mod_init() done!\n[    1.394989]  (0)[1:swapper/0]mtk_dbgtop_probe: already got the base addr\n[    1.395540]  (0)[1:swapper/0][cache_parity_init_platform] adopt default flow\n[    1.397679]  (0)[1:swapper/0]kbase_platform_device_probe start\n[    1.397693]  (0)[1:swapper/0][GPU/MALI][INFO]@mtk_platform_init: initialize successfully\n[    1.397830]  (0)[1:swapper/0][GPU/DVFS] @mt_gpufreq_get_shader_present: segment_id: 2, shader_present: 65541\n[    1.398817]  (0)[1:swapper/0]mali 13000000.mali: GPU identified as 0x3 arch 9.0.9 r0p0 status 0\n[    1.400761]  (0)[1:swapper/0]mali 13000000.mali: No memory group manager is configured\n[    1.402504]  (0)[1:swapper/0]qos ipi not ready, skip cmd=14\n[    1.402849]  (0)[1:swapper/0]mali 13000000.mali: Keeping requested GPU VA of 0x100000000\n[    1.404063]  (0)[1:swapper/0]mali 13000000.mali: Probed as mali0, dummy clear\n[    1.404580]  (0)[1:swapper/0][DIP][DIP_Init] - E. Magic: 68\n[    1.405646]  (0)[1:swapper/0][DIP][DIP_probe] - E. DIP driver probe. nr_dip_devs : 0.\n[    1.405666]  (0)[1:swapper/0][DIP][DIP_probe] nr_dip_devs=1, devnode(imgsys_config), map_addr=0xffffff8009db1000\n[    1.405693]  (0)[1:swapper/0][DIP][DIP_probe] No IRQ!!: nr_dip_devs=1, devnode(imgsys_config), irq=0\n[    1.405697]  (0)[1:swapper/0][DIP][DIP_RegCharDev] - E.\n[    1.405706]  (0)[1:swapper/0][DIP][DIP_RegCharDev] - X.\n[    1.406321]  (0)[1:swapper/0][DIP][DIP_probe] - X. DIP driver probe.\n[    1.406384]  (0)[1:swapper/0][DIP][DIP_probe] - E. DIP driver probe. nr_dip_devs : 1.\n[    1.406402]  (0)[1:swapper/0][DIP][DIP_probe] nr_dip_devs=2, devnode(dip_a0), map_addr=0xffffff800a910000\n[    1.406424]  (0)[1:swapper/0][DIP][DIP_probe] No corresponding ISR!!\n[    1.406429]  (0)[1:swapper/0][DIP][DIP_probe] nr_dip_devs=2, devnode(dip_a0), irq=271\n[    1.406432]  (0)[1:swapper/0][DIP][DIP_probe] - X. DIP driver probe.\n[    1.406553]  (0)[1:swapper/0][DIP][DIP_probe] - E. DIP driver probe. nr_dip_devs : 2.\n[    1.406609]  (0)[1:swapper/0][DIP][DIP_probe] nr_dip_devs=3, devnode(mssdl), map_addr=0xffffff8009db3000\n[    1.406634]  (0)[1:swapper/0][DIP][DIP_probe] No corresponding ISR!!\n[    1.406640]  (0)[1:swapper/0][DIP][DIP_probe] nr_dip_devs=3, devnode(mssdl), irq=276\n[    1.406643]  (0)[1:swapper/0][DIP][DIP_probe] - X. DIP driver probe.\n[    1.406684]  (0)[1:swapper/0][DIP][DIP_probe] - E. DIP driver probe. nr_dip_devs : 3.\n[    1.406699]  (0)[1:swapper/0][DIP][DIP_probe] nr_dip_devs=4, devnode(msfdl), map_addr=0xffffff8009db5000\n[    1.406713]  (0)[1:swapper/0][DIP][DIP_probe] No corresponding ISR!!\n[    1.406717]  (0)[1:swapper/0][DIP][DIP_probe] nr_dip_devs=4, devnode(msfdl), irq=277\n[    1.406721]  (0)[1:swapper/0][DIP][DIP_probe] - X. DIP driver probe.\n[    1.406757]  (0)[1:swapper/0][DIP][DIP_probe] - E. DIP driver probe. nr_dip_devs : 4.\n[    1.406768]  (0)[1:swapper/0][DIP][DIP_probe] nr_dip_devs=5, devnode(imgsys2_config), map_addr=0xffffff8009dbd000\n[    1.406778]  (0)[1:swapper/0][DIP][DIP_probe] No IRQ!!: nr_dip_devs=5, devnode(imgsys2_config), irq=0\n[    1.406782]  (0)[1:swapper/0][DIP][DIP_probe] - X. DIP driver probe.\n[    1.407169]  (0)[1:swapper/0][DIP][DIP_Init] register dip callback for MDP\n[    1.407174]  (0)[1:swapper/0][DIP][DIP_Init] register dip callback for GCE\n[    1.407181]  (0)[1:swapper/0][DIP][DIP_Init] - X. Ret: 0.\n[    1.409699]  (0)[1:swapper/0][ISP][ISP_probe] - E. ISP driver probe.\n[    1.409717]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=1, devnode(camsys), map_addr=0xffffff800a920000\n[    1.409732]  (0)[1:swapper/0][ISP][ISP_probe] No IRQ!!: nr_isp_devs=1, devnode(camsys), irq=0\n[    1.415481]  (0)[1:swapper/0][ISP][ISP_probe] - X. ISP driver probe.\n[    1.415538]  (0)[1:swapper/0][ISP][ISP_probe] - E. ISP driver probe.\n[    1.415592]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=2, devnode(camsys_a), map_addr=0xffffff8009e01000\n[    1.415605]  (0)[1:swapper/0][ISP][ISP_probe] No IRQ!!: nr_isp_devs=2, devnode(camsys_a), irq=0\n[    1.415609]  (0)[1:swapper/0][ISP][ISP_probe] - X. ISP driver probe.\n[    1.415652]  (0)[1:swapper/0][ISP][ISP_probe] - E. ISP driver probe.\n[    1.415663]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=3, devnode(camsys_b), map_addr=0xffffff8009e03000\n[    1.415673]  (0)[1:swapper/0][ISP][ISP_probe] No IRQ!!: nr_isp_devs=3, devnode(camsys_b), irq=0\n[    1.415677]  (0)[1:swapper/0][ISP][ISP_probe] - X. ISP driver probe.\n[    1.415727]  (0)[1:swapper/0][ISP][ISP_probe] - E. ISP driver probe.\n[    1.415737]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=4, devnode(camsys_c), map_addr=0xffffff8009e05000\n[    1.415747]  (0)[1:swapper/0][ISP][ISP_probe] No IRQ!!: nr_isp_devs=4, devnode(camsys_c), irq=0\n[    1.415751]  (0)[1:swapper/0][ISP][ISP_probe] - X. ISP driver probe.\n[    1.415791]  (0)[1:swapper/0][ISP][ISP_probe] - E. ISP driver probe.\n[    1.415804]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=5, devnode(cam1_inner), map_addr=0xffffff800a938000\n[    1.415813]  (0)[1:swapper/0][ISP][ISP_probe] No IRQ!!: nr_isp_devs=5, devnode(cam1_inner), irq=0\n[    1.415817]  (0)[1:swapper/0][ISP][ISP_probe] - X. ISP driver probe.\n[    1.415855]  (0)[1:swapper/0][ISP][ISP_probe] - E. ISP driver probe.\n[    1.415866]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=6, devnode(cam2_inner), map_addr=0xffffff800a948000\n[    1.415876]  (0)[1:swapper/0][ISP][ISP_probe] No IRQ!!: nr_isp_devs=6, devnode(cam2_inner), irq=0\n[    1.415880]  (0)[1:swapper/0][ISP][ISP_probe] - X. ISP driver probe.\n[    1.415918]  (0)[1:swapper/0][ISP][ISP_probe] - E. ISP driver probe.\n[    1.415929]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=7, devnode(cam3_inner), map_addr=0xffffff800a958000\n[    1.415939]  (0)[1:swapper/0][ISP][ISP_probe] No IRQ!!: nr_isp_devs=7, devnode(cam3_inner), irq=0\n[    1.415942]  (0)[1:swapper/0][ISP][ISP_probe] - X. ISP driver probe.\n[    1.415984]  (0)[1:swapper/0][ISP][ISP_probe] - E. ISP driver probe.\n[    1.415995]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=8, devnode(cam1), map_addr=0xffffff800a968000\n[    1.416045]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=8, devnode(cam1), irq=287, ISR: cam1\n[    1.416049]  (0)[1:swapper/0][ISP][ISP_probe] - X. ISP driver probe.\n[    1.416089]  (0)[1:swapper/0][ISP][ISP_probe] - E. ISP driver probe.\n[    1.416101]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=9, devnode(cam2), map_addr=0xffffff800a978000\n[    1.416139]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=9, devnode(cam2), irq=288, ISR: cam2\n[    1.416143]  (0)[1:swapper/0][ISP][ISP_probe] - X. ISP driver probe.\n[    1.416183]  (0)[1:swapper/0][ISP][ISP_probe] - E. ISP driver probe.\n[    1.416195]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=10, devnode(cam3), map_addr=0xffffff800a988000\n[    1.416205]  (0)[1:swapper/0][ISP][ISP_probe] No IRQ!!: nr_isp_devs=10, devnode(cam3), irq=0\n[    1.416209]  (0)[1:swapper/0][ISP][ISP_probe] - X. ISP driver probe.\n[    1.416248]  (0)[1:swapper/0][ISP][ISP_probe] - E. ISP driver probe.\n[    1.416285]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=11, devnode(camsv3), map_addr=0xffffff8009e0d000\n[    1.416323]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=11, devnode(camsv3), irq=289, ISR: camsv3\n[    1.416327]  (0)[1:swapper/0][ISP][ISP_probe] - X. ISP driver probe.\n[    1.416370]  (0)[1:swapper/0][ISP][ISP_probe] - E. ISP driver probe.\n[    1.416381]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=12, devnode(camsv4), map_addr=0xffffff8009e15000\n[    1.416417]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=12, devnode(camsv4), irq=290, ISR: camsv4\n[    1.416421]  (0)[1:swapper/0][ISP][ISP_probe] - X. ISP driver probe.\n[    1.416463]  (0)[1:swapper/0][ISP][ISP_probe] - E. ISP driver probe.\n[    1.416474]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=13, devnode(camsv5), map_addr=0xffffff8009e1d000\n[    1.416507]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=13, devnode(camsv5), irq=291, ISR: camsv5\n[    1.416511]  (0)[1:swapper/0][ISP][ISP_probe] - X. ISP driver probe.\n[    1.416551]  (0)[1:swapper/0][ISP][ISP_probe] - E. ISP driver probe.\n[    1.416562]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=14, devnode(camsv6), map_addr=0xffffff8009e25000\n[    1.416595]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=14, devnode(camsv6), irq=292, ISR: camsv6\n[    1.416599]  (0)[1:swapper/0][ISP][ISP_probe] - X. ISP driver probe.\n[    1.416639]  (0)[1:swapper/0][ISP][ISP_probe] - E. ISP driver probe.\n[    1.416651]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=15, devnode(camsv7), map_addr=0xffffff8009fbd000\n[    1.416686]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=15, devnode(camsv7), irq=293, ISR: camsv7\n[    1.416690]  (0)[1:swapper/0][ISP][ISP_probe] - X. ISP driver probe.\n[    1.416732]  (0)[1:swapper/0][ISP][ISP_probe] - E. ISP driver probe.\n[    1.416743]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=16, devnode(camsv8), map_addr=0xffffff8009fc5000\n[    1.416776]  (0)[1:swapper/0][ISP][ISP_probe] nr_isp_devs=16, devnode(camsv8), irq=294, ISR: camsv8\n[    1.416780]  (0)[1:swapper/0][ISP][ISP_probe] - X. ISP driver probe.\n[    1.417211]  (0)[1:swapper/0][ISP][ISP_Init] Finding SMI_LARB compatible: mediatek,smi_larb0\n[    1.417438]  (0)[1:swapper/0][ISP][ISP_Init] SMI_LARB0_BASE: ffffff8009fcd000\n[    1.417443]  (0)[1:swapper/0][ISP][ISP_Init] Finding SMI_LARB compatible: mediatek,smi_larb1\n[    1.417651]  (0)[1:swapper/0][ISP][ISP_Init] SMI_LARB1_BASE: ffffff8009ffb000\n[    1.417656]  (0)[1:swapper/0][ISP][ISP_Init] Finding SMI_LARB compatible: mediatek,smi_larb2\n[    1.417866]  (0)[1:swapper/0][ISP][ISP_Init] SMI_LARB2_BASE: ffffff8009ffd000\n[    1.417871]  (0)[1:swapper/0][ISP][ISP_Init] Finding SMI_LARB compatible: mediatek,smi_larb3\n[    1.418079]  (0)[1:swapper/0][ISP][ISP_Init] SMI_LARB3_BASE: ffffff800a901000\n[    1.418084]  (0)[1:swapper/0][ISP][ISP_Init] Finding SMI_LARB compatible: mediatek,smi_larb4\n[    1.418293]  (0)[1:swapper/0][ISP][ISP_Init] SMI_LARB4_BASE: ffffff800a903000\n[    1.418298]  (0)[1:swapper/0][ISP][ISP_Init] Finding SMI_LARB compatible: mediatek,smi_larb5\n[    1.418515]  (0)[1:swapper/0][ISP][ISP_Init] SMI_LARB5_BASE: ffffff800a905000\n[    1.418520]  (0)[1:swapper/0][ISP][ISP_Init] Finding SMI_LARB compatible: mediatek,smi_larb6\n[    1.418732]  (0)[1:swapper/0][ISP][ISP_Init] SMI_LARB6_BASE: ffffff800a90d000\n[    1.418737]  (0)[1:swapper/0][ISP][ISP_Init] Finding SMI_LARB compatible: mediatek,smi_larb7\n[    1.419008]  (0)[1:swapper/0][ISP][ISP_Init] SMI_LARB7_BASE: ffffff800a91d000\n[    1.419013]  (0)[1:swapper/0][ISP][ISP_Init] Finding SMI_LARB compatible: mediatek,smi_larb8\n[    1.419278]  (0)[1:swapper/0][ISP][ISP_Init] SMI_LARB8_BASE: ffffff800a931000\n[    1.419283]  (0)[1:swapper/0][ISP][ISP_Init] Finding SMI_LARB compatible: mediatek,smi_larb9\n[    1.419530]  (0)[1:swapper/0][ISP][ISP_Init] SMI_LARB9_BASE: ffffff800a933000\n[    1.419535]  (0)[1:swapper/0][ISP][ISP_Init] Finding SMI_LARB compatible: mediatek,smi_larb10\n[    1.419894]  (0)[1:swapper/0][ISP][ISP_Init] SMI_LARB10_BASE: ffffff800a935000\n[    1.419900]  (0)[1:swapper/0][ISP][ISP_Init] Finding SMI_LARB compatible: mediatek,smi_larb11\n[    1.420163]  (0)[1:swapper/0][ISP][ISP_Init] SMI_LARB11_BASE: ffffff800a941000\n[    1.420168]  (0)[1:swapper/0][ISP][ISP_Init] Finding SMI_LARB compatible: mediatek,smi_larb12\n[    1.420426]  (0)[1:swapper/0][ISP][ISP_Init] SMI_LARB12_BASE: ffffff800a943000\n[    1.420432]  (0)[1:swapper/0][ISP][ISP_Init] Finding SMI_LARB compatible: mediatek,smi_larb13\n[    1.420640]  (0)[1:swapper/0][ISP][ISP_Init] SMI_LARB13_BASE: ffffff800a945000\n[    1.420644]  (0)[1:swapper/0][ISP][ISP_Init] Finding SMI_LARB compatible: mediatek,smi_larb14\n[    1.420858]  (0)[1:swapper/0][ISP][ISP_Init] SMI_LARB14_BASE: ffffff800a951000\n[    1.420863]  (0)[1:swapper/0][ISP][ISP_Init] Finding SMI_LARB compatible: mediatek,smi_larb15\n[    1.421081]  (0)[1:swapper/0][ISP][ISP_Init] SMI_LARB15_BASE: ffffff800a953000\n[    1.421086]  (0)[1:swapper/0][ISP][ISP_Init] Finding SMI_LARB compatible: mediatek,smi_larb16\n[    1.421302]  (0)[1:swapper/0][ISP][ISP_Init] SMI_LARB16_BASE: ffffff800a955000\n[    1.421307]  (0)[1:swapper/0][ISP][ISP_Init] Finding SMI_LARB compatible: mediatek,smi_larb17\n[    1.421528]  (0)[1:swapper/0][ISP][ISP_Init] SMI_LARB17_BASE: ffffff800a961000\n[    1.421534]  (0)[1:swapper/0][ISP][ISP_Init] Finding SMI_LARB compatible: mediatek,smi_larb18\n[    1.421746]  (0)[1:swapper/0][ISP][ISP_Init] SMI_LARB18_BASE: ffffff800a963000\n[    1.421751]  (0)[1:swapper/0][ISP][ISP_Init] Finding SMI_LARB compatible: mediatek,smi_larb19\n[    1.421968]  (0)[1:swapper/0][ISP][ISP_Init] SMI_LARB19_BASE: ffffff800a965000\n[    1.422101]  (0)[1:swapper/0][ISP][ISP_SetPMQOS] PM_QOS:module:0,ON\n[    1.422121]  (0)[1:swapper/0][ISP][ISP_SetPMQOS] PM_QOS:module:1,ON\n[    1.422139]  (0)[1:swapper/0][ISP][ISP_SetPMQOS] PM_QOS:module:2,ON\n[    1.422153]  (0)[1:swapper/0][ISP][ISP_SetPMQOS] DFS_add\n[    1.422158]  (0)[1:swapper/0][ISP][mtk_pmqos_add] unsupported port:1\n[    1.422162]  (0)[1:swapper/0][ISP][mtk_pmqos_add] unsupported port:1\n[    1.422169]  (0)[1:swapper/0][ISP][SV_SetPMQOS] unsupport cmd:5\n[    1.422761]  (0)[1:swapper/0][RSC]- E. RSC driver probe.\n[    1.422778]  (0)[1:swapper/0][RSC]nr_RSC_devs=1, devnode(ipesys_config), map_addr=0xffffff800a971000\n[    1.422795]  (0)[1:swapper/0][RSC]No IRQ!!: nr_RSC_devs=1, devnode(ipesys_config), irq=0\n[    1.422799]  (0)[1:swapper/0][RSC]- X. RSC driver probe.\n[    1.423151]  (0)[1:swapper/0][RSC]- E. RSC driver probe.\n[    1.423166]  (0)[1:swapper/0][RSC]nr_RSC_devs=2, devnode(rsc), map_addr=0xffffff800a973000\n[    1.423184]  (0)[1:swapper/0][RSC]- E. RSC setup irq.\n[    1.423224]  (0)[1:swapper/0][RSC]nr_RSC_devs=2, devnode(rsc), irq=297, ISR: rsc\n[    1.423641]  (0)[1:swapper/0][RSC]- X. RSC driver probe.\n[    1.423826]  (0)[1:swapper/0][WPE][WPE_Init] - E.\n[    1.424344]  (0)[1:swapper/0][WPE][WPE_probe] - E. WPE driver probe.\n[    1.424422]  (0)[1:swapper/0][WPE][WPE_probe] nr_WPE_devs=1, devnode(wpe_a), map_addr=0xffffff800a975000\n[    1.424472]  (0)[1:swapper/0][WPE][WPE_probe] nr_WPE_devs=1, devnode(wpe_a), irq=274, ISR: wpe_a\n[    1.424476]  (0)[1:swapper/0][WPE][WPE_RegCharDev] - E.\n[    1.424484]  (0)[1:swapper/0][WPE][WPE_RegCharDev] - X.\n[    1.424539]  (0)[1:swapper/0][WPE][WPE_probe] devm_clk_get CG_IMGSYS_LARB9\n[    1.424616]  (0)[1:swapper/0][WPE][WPE_probe] devm_clk_get WPE_CLK_IMG_WPE_A\n[    1.424696]  (0)[1:swapper/0][WPE][WPE_probe] devm_clk_get CG_IMGSYS1\n[    1.424770]  (0)[1:swapper/0][WPE][WPE_probe] - X. WPE driver probe.\n[    1.425002]  (0)[1:swapper/0][WPE][WPE_Init] register wpe callback for CMDQ\n[    1.425008]  (0)[1:swapper/0][WPE][WPE_Init] - X. Ret: 0.\n[    1.425680]  (0)[1:swapper/0][DPE]- E. DPE driver probe.\n[    1.425699]  (0)[1:swapper/0][DPE]nr_DPE_devs=1, devnode(dvs), map_addr=0xffffff800a981000\n[    1.425825]  (0)[1:swapper/0][DPE][Debug]cmdq_mbox_create 0xffffffdd22824b00\n[    1.425832]  (0)[1:swapper/0][DPE][Debug]dvs_event_id 180\n[    1.425879]  (0)[1:swapper/0][DPE]nr_DPE_devs=1, devnode(dvs), irq=242, ISR: dvs\n[    1.425884]  (0)[1:swapper/0][DPE]- X. DPE driver probe.\n[    1.426086]  (0)[1:swapper/0][DPE]- E. DPE driver probe.\n[    1.426163]  (0)[1:swapper/0][DPE]nr_DPE_devs=2, devnode(dvp), map_addr=0xffffff800a983000\n[    1.426168]  (0)[1:swapper/0][DPE][Debug]dvp_event_id 181\n[    1.426208]  (0)[1:swapper/0][DPE]nr_DPE_devs=2, devnode(dvp), irq=243, ISR: dvp\n[    1.427633]  (0)[1:swapper/0][DPE]- X. DPE driver probe.\n[    1.428845]  (0)[1:swapper/0][MFB]- E. MFB driver probe. nr_MFB_devs : 0.\n[    1.428894]  (0)[1:swapper/0][MFB]nr_MFB_devs=1, devnode(mss_b), map_addr=0xffffff800a985000\n[    1.428921]  (0)[1:swapper/0][MFB]No corresponding ISR!!: nr_MFB_devs=1, devnode(mss_b), irq=276\n[    1.429056]  (0)[1:swapper/0][MFB]mss_clt: 0x000000005424e65f\n[    1.429064]  (0)[1:swapper/0][MFB]- X. MFB driver probe.\n[    1.429109]  (0)[1:swapper/0][MFB]- E. MFB driver probe. nr_MFB_devs : 1.\n[    1.429143]  (0)[1:swapper/0][MFB]nr_MFB_devs=2, devnode(msf_b), map_addr=0xffffff800a991000\n[    1.429164]  (0)[1:swapper/0][MFB]No corresponding ISR!!: nr_MFB_devs=2, devnode(msf_b), irq=277\n[    1.429284]  (0)[1:swapper/0][MFB]msf_clt: 0x00000000ac0f24c0\n[    1.429900]  (0)[1:swapper/0][MFB]- X. MFB driver probe.\n[    1.429948]  (0)[1:swapper/0][MFB]- E. MFB driver probe. nr_MFB_devs : 2.\n[    1.429987]  (0)[1:swapper/0][MFB]nr_MFB_devs=3, devnode(imgsys_mfb_b), map_addr=0xffffff800a993000\n[    1.430003]  (0)[1:swapper/0][MFB]No IRQ!!: nr_MFB_devs=3, devnode(imgsys_mfb_b), irq=0\n[    1.430007]  (0)[1:swapper/0][MFB]- X. MFB driver probe.\n[    1.430914]  (0)[1:swapper/0][FDVT][FDVT_probe] - E. FDVT driver probe.\n[    1.430931]  (0)[1:swapper/0][FDVT][FDVT_probe] nr_fdvt_devs=1, devnode(fdvt), map_addr=0xffffff800a995000\n[    1.430986]  (0)[1:swapper/0][FDVT][FDVT_probe] nr_fdvt_devs=1, devnode(fdvt), irq=295, ISR: fdvt\n[    1.431119]  (0)[1:swapper/0][FDVT][FDVT_probe] cmdq mbox create done\n[    1.431339]  (0)[1:swapper/0][FDVT][FDVT_probe] cmdq mbox create done\n[    1.431346]  (0)[1:swapper/0][FDVT][FDVT_probe] fdvt event id is 177\n[    1.431475]  (0)[1:swapper/0][FDVT][FDVT_probe] - X. FDVT driver probe.\n[    1.437617]  (0)[1:swapper/0]amms_sysfs_init: done.\n[    1.438932]  (0)[1:swapper/0]aw8622_haptic_probe enter \r\n[    1.439030]  (0)[1:swapper/0]aw8622_parse_devicetree_info dt info def_pwm_freq = 26000Hz center_freq = 208 \n[    1.439035]  (0)[1:swapper/0]aw8622_parse_devicetree_info dt info pwmc_ch = 0\n[    1.439174]  (0)[1:swapper/0]aw8622_haptic_probe waveform_sample_period = 41666\n[    1.439189]  (0)[1:swapper/0]aw8622_switch_pwm_gpio_mode() [PinC] to mode:1 done.\n[    1.439214]  (0)[1:swapper/0]aw8622_haptic_probe probe success \r\n[    1.439820]  (0)[1:swapper/0][SCP] register scp A notify callback..\n[    1.439964]  (0)[1:swapper/0][mtk_nanohub]init done, data_unit_t:44, SCP_SENSOR_HUB_DATA:48\n[    1.439994]  (0)[1:swapper/0][SCP2] scp_init begins\n[    1.439999]  (0)[1:swapper/0][scp_dvfs]: scp_dvfs_init\n[    1.440275]  (0)[1:swapper/0][scp_dvfs]: mt_scp_dvfs_pdrv_probe()\n[    1.441715]  (0)[1:swapper/0][SCP] sram base = 0xffffff800b800000 c0000\n[    1.441762]  (0)[1:swapper/0][SCP] cfg base = 0xffffff800a9ed000\n[    1.441777]  (0)[1:swapper/0][SCP] clkctrl base = 0xffffff800a9f5000\n[    1.441787]  (0)[1:swapper/0][SCP] cfg_core0 base = 0x000000000aecd3e4\n[    1.441795]  (0)[1:swapper/0][SCP] cfg_core1 base = 0x000000009230091d\n[    1.441804]  (0)[1:swapper/0][SCP] bus_tracker base = 0x00000000423a004f\n[    1.441814]  (0)[1:swapper/0][SCP] l1cctrl base = 0x0000000039a8cd41\n[    1.441843]  (0)[1:swapper/0][SCP] cfg_sec base = 0x000000002c7161f8\n[    1.441849]  (0)[1:swapper/0][SCP] scpreg.scp_tcmsize = 786432\n[    1.441854]  (0)[1:swapper/0][SCP] core_0 enable\n[    1.441913]  (0)[1:swapper/0]ipc0 191\n[    1.441946]  (0)[1:swapper/0]ipc1 192\n[    1.441950]  (0)[1:swapper/0][SCP] mbox mbox probe\n[    1.441981]  (0)[1:swapper/0]scp 10500000.scp: invalid resource\n[    1.441986]  (0)[1:swapper/0]MBOX 0 can't find send status reg\n[    1.441993]  (0)[1:swapper/0]scp 10500000.scp: invalid resource\n[    1.441997]  (0)[1:swapper/0]MBOX 0 can't find recv status reg\n[    1.442058]  (0)[1:swapper/0]scp 10500000.scp: invalid resource\n[    1.442062]  (0)[1:swapper/0]MBOX 1 can't find send status reg\n[    1.442070]  (0)[1:swapper/0]scp 10500000.scp: invalid resource\n[    1.442073]  (0)[1:swapper/0]MBOX 1 can't find recv status reg\n[    1.442130]  (0)[1:swapper/0]scp 10500000.scp: invalid resource\n[    1.442134]  (0)[1:swapper/0]MBOX 2 can't find send status reg\n[    1.442141]  (0)[1:swapper/0]scp 10500000.scp: invalid resource\n[    1.442145]  (0)[1:swapper/0]MBOX 2 can't find recv status reg\n[    1.442205]  (0)[1:swapper/0]scp 10500000.scp: invalid resource\n[    1.442210]  (0)[1:swapper/0]MBOX 3 can't find send status reg\n[    1.442217]  (0)[1:swapper/0]scp 10500000.scp: invalid resource\n[    1.442220]  (0)[1:swapper/0]MBOX 3 can't find recv status reg\n[    1.442279]  (0)[1:swapper/0]scp 10500000.scp: invalid resource\n[    1.442283]  (0)[1:swapper/0]MBOX 4 can't find send status reg\n[    1.442290]  (0)[1:swapper/0]scp 10500000.scp: invalid resource\n[    1.442294]  (0)[1:swapper/0]MBOX 4 can't find recv status reg\n[    1.443697]  (0)[1:swapper/0]scp_ipidev (with 29 IPI) has registered.\n[    1.444218]  (0)[1:swapper/0][SCP] scpreg.scpsys = ffffff800ac3b000\n[    1.444792]  (0)[1:swapper/0][SCP] scp_region_info = ffffff800b800004\n[    1.444811]  (0)[1:swapper/0][SCP] platform init\n[    1.444982]  (0)[1:swapper/0][SCP] sysfs init\n[    1.445062]  (0)[1:swapper/0][SCP] scp_reserve_memory_ioremap\n[    1.445082]  (0)[1:swapper/0][SCP] rsrv_phy_base = 0x87000000, len:0x300000\n[    1.445087]  (0)[1:swapper/0][SCP] rsrv_vir_base = 0xffffff800bc00000, len:0x300000\n[    1.445093]  (0)[1:swapper/0][SCP] [0] phys:0x87000000, virt:0xffffff800bc00000, len:0x38300\n[    1.445098]  (0)[1:swapper/0][SCP] [1] phys:0x87038300, virt:0xffffff800bc38300, len:0x100000\n[    1.445104]  (0)[1:swapper/0][SCP] [2] phys:0x87138300, virt:0xffffff800bd38300, len:0x180000\n[    1.445109]  (0)[1:swapper/0][SCP] [3] phys:0x872b8300, virt:0xffffff800beb8300, len:0x19000\n[    1.445114]  (0)[1:swapper/0][SCP] [4] phys:0x872d1300, virt:0xffffff800bed1300, len:0x4600\n[    1.445119]  (0)[1:swapper/0][SCP] [5] phys:0x872d5900, virt:0xffffff800bed5900, len:0x100\n[    1.445124]  (0)[1:swapper/0][SCP][rsrv_mem-0] phy:0x87000000 - 0x870382ff, len:0x38300\n[    1.445129]  (0)[1:swapper/0][SCP][rsrv_mem-0] vir:0xffffff800bc00000 - 0xffffff800bc382ff, len:0x38300\n[    1.445134]  (0)[1:swapper/0][SCP][rsrv_mem-1] phy:0x87038300 - 0x871382ff, len:0x100000\n[    1.445138]  (0)[1:swapper/0][SCP][rsrv_mem-1] vir:0xffffff800bc38300 - 0xffffff800bd382ff, len:0x100000\n[    1.445143]  (0)[1:swapper/0][SCP][rsrv_mem-2] phy:0x87138300 - 0x872b82ff, len:0x180000\n[    1.445148]  (0)[1:swapper/0][SCP][rsrv_mem-2] vir:0xffffff800bd38300 - 0xffffff800beb82ff, len:0x180000\n[    1.445152]  (0)[1:swapper/0][SCP][rsrv_mem-3] phy:0x872b8300 - 0x872d12ff, len:0x19000\n[    1.445157]  (0)[1:swapper/0][SCP][rsrv_mem-3] vir:0xffffff800beb8300 - 0xffffff800bed12ff, len:0x19000\n[    1.445161]  (0)[1:swapper/0][SCP][rsrv_mem-4] phy:0x872d1300 - 0x872d58ff, len:0x4600\n[    1.445166]  (0)[1:swapper/0][SCP][rsrv_mem-4] vir:0xffffff800bed1300 - 0xffffff800bed58ff, len:0x4600\n[    1.445171]  (0)[1:swapper/0][SCP][rsrv_mem-5] phy:0x872d5900 - 0x872d59ff, len:0x100\n[    1.445175]  (0)[1:swapper/0][SCP][rsrv_mem-5] vir:0xffffff800bed5900 - 0xffffff800bed59ff, len:0x100\n[    1.445179]  (0)[1:swapper/0][SCP] logger init\n[    1.445454]  (0)[1:swapper/0][SCP] loader image mem: virt:0xffffff800aca0000 - 0xffffff800aca4000\n[    1.445472]  (0)[1:swapper/0][SCP] scp_regdump_virt map: 0x10700000 + 0x100000\n[    1.445494]  (0)[1:swapper/0][SCP] scp_ap_dram_virt map: 0xbe800000 + 0x76e58\n[    1.445514]  (0)[1:swapper/0][ccci1/cor]SCP stop---\n[    1.445528]  (0)[1:swapper/0][SCP] reset_scp: done\n[    1.445845]  (0)[1:swapper/0][ADSP] mpu info=(0x7d940000, 0x440000)\n[    1.457681]  (0)[1:swapper/0]adsp_core0_resume(), done elapse 0 us\n[    1.457696]  (0)[1:swapper/0]_adsp_deregister_feature, send suspend work cid(0), fid(0), delay(100)\n[    1.457698]  (0)[1:swapper/0]adsp_module_init done\n[    1.457706]  (0)[1:swapper/0]is_audio_dsp_support(), dsp_id 1 not support!!\n[    1.457852]  (0)[1:swapper/0]is_audio_dsp_support(), dsp_id 3 not support!!\n[    1.457858]  (0)[1:swapper/0]is_audio_dsp_support(), dsp_id 1 not support!!\n[    1.457864]  (0)[1:swapper/0][IPI][DMA] init_audio_ipi_dma(), dsp_id(2), mem_id(0), size(2097152)\n[    1.458642]  (0)[1:swapper/0][IPI][DMA] init_audio_ipi_dma(), dsp_id 2, dma 00000000e0a34127, phy 000000003434c86f/0x7d940000, vir 00000000e0a34127/0xffffff8009800000, sz 0x200000, checksum 17024, offset 17152, cache align mask 127\n[    1.458646]  (0)[1:swapper/0][IPI][DMA] init_audio_ipi_dma(), +gen_pool_create, g_cache_alilgn_order[2] = 7\n[    1.458652]  (0)[1:swapper/0][IPI][DMA] init_audio_ipi_dma(), -gen_pool_create, g_dma_pool[2] = 00000000fdbbb721\n[    1.458692]  (0)[72:kworker/0:1]adsp_core0_resume(), done elapse 0 us\n[    1.458858]  (0)[1:swapper/0]_adsp_deregister_feature, send suspend work cid(0), fid(1), delay(100)\n[    1.458945]  (0)[1:swapper/0]is_audio_dsp_support(), dsp_id 3 not support!!\n[    1.458980]  (0)[1:swapper/0]audio_get_dsp_id(), task 18 not support!!\n[    1.458984]  (0)[1:swapper/0]is_audio_dsp_support(), dsp_id 5 not support!!\n[    1.463422]  (0)[1:swapper/0][ccci0/pot]can not find port ccmni8\n[    1.463431]  (0)[1:swapper/0][ccci0/net]Fail to init net port ccmni8 for channel -1\n[    1.468401]  (0)[1:swapper/0][ccci1/rpc]interrupts:  not found\n[    1.468413]  (0)[1:swapper/0][ccci1/rpc]debounce:  not found\n[    1.468421]  (0)[1:swapper/0][ccci1/rpc]interrupts:  not found\n[    1.468428]  (0)[1:swapper/0][ccci1/rpc]interrupts:  not found\n[    1.468436]  (0)[1:swapper/0][ccci1/rpc]sockettype:  not found\n[    1.468443]  (0)[1:swapper/0][ccci1/rpc]dedicated:  not found\n[    1.468450]  (0)[1:swapper/0][ccci1/rpc]src_pin:  not found\n[    1.468701]  (0)[1:swapper/0][ccci0/rpc]get_md_dtsi_val 1, mediatek,md_drdi_rf_set_idx -- 0xe\n[    1.469716]  (0)[1:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[    1.471010]  (0)[1:swapper/0][CONN-MD-DFT][W]conn_md_add_user:uid (0x00000005) is added to user list successfully\n[    1.471998]  (0)[1:swapper/0][ccci1/sys]swtp_init can't find compatible node\n[    1.472352]  (0)[1:swapper/0][ccci1/sys]swtp_init can't find compatible node\n[    1.472966]  (0)[1:swapper/0][ccci1/cif]irq_set_irq_wake ccif irq0(164) error -6\n[    1.474340]  (0)[1:swapper/0][ccci1/ccci_adc]md_ch = 2, val = 1842\n[    1.475397]  (0)[1:swapper/0][pmic_register_interrupt_callback] intNo=42, callback=vibrator_oc_handler\n[    1.475470] -(0)[1:swapper/0]CPU: 0 PID: 1 Comm: swapper/0 Tainted: G S      W       4.14.141-g37f4efb4a #249\n[    1.475475] -(0)[1:swapper/0]Hardware name: MT6853T (DT)\n[    1.475480] -(0)[1:swapper/0]Call trace:\n[    1.475491] -(0)[1:swapper/0][<ffffff828808ca04>] dump_backtrace+0x0/0x508\n[    1.475498] -(0)[1:swapper/0][<ffffff828808cf20>] show_stack+0x14/0x1c\n[    1.475506] -(0)[1:swapper/0][<ffffff8288fc1218>] dump_stack+0xc4/0xfc\n[    1.475515] -(0)[1:swapper/0][<ffffff8288c5709c>] led_init_core+0x30/0x5c\n[    1.475522] -(0)[1:swapper/0][<ffffff8288c57950>] of_led_classdev_register+0x198/0x208\n[    1.475528] -(0)[1:swapper/0][<ffffff8288c57ab8>] devm_of_led_classdev_register+0x50/0x90\n[    1.475534] -(0)[1:swapper/0][<ffffff82888bed68>] vib_probe+0x54/0x15c\n[    1.475542] -(0)[1:swapper/0][<ffffff8288611354>] platform_drv_probe+0x80/0xb8\n[    1.475549] -(0)[1:swapper/0][<ffffff828860e85c>] driver_probe_device+0x4b0/0x648\n[    1.475556] -(0)[1:swapper/0][<ffffff828860ecc4>] __driver_attach+0xe0/0x180\n[    1.475562] -(0)[1:swapper/0][<ffffff828860c3ac>] bus_for_each_dev+0x80/0xc8\n[    1.475569] -(0)[1:swapper/0][<ffffff828860ebdc>] driver_attach+0x20/0x28\n[    1.475575] -(0)[1:swapper/0][<ffffff828860cb90>] bus_add_driver+0x134/0x23c\n[    1.475582] -(0)[1:swapper/0][<ffffff828860fd14>] driver_register+0xa4/0xf0\n[    1.475587] -(0)[1:swapper/0][<ffffff82886112cc>] __platform_driver_register+0x40/0x48\n[    1.475594] -(0)[1:swapper/0][<ffffff82888bec68>] vib_mod_init+0x1c/0x84\n[    1.475600] -(0)[1:swapper/0][<ffffff828808416c>] do_one_initcall+0x124/0x1f4\n[    1.475607] -(0)[1:swapper/0][<ffffff8289600fdc>] kernel_init_freeable+0x198/0x234\n[    1.475614] -(0)[1:swapper/0][<ffffff8288fd5748>] kernel_init+0x10/0x214\n[    1.475620] -(0)[1:swapper/0][<ffffff8288085658>] ret_from_fork+0x10/0x18\n[    1.475730]  (0)[1:swapper/0]vibrator init_cust_vibrator_dtsi(83) :get cust dtsi [start] ++\n[    1.475737]  (0)[1:swapper/0]vibrator init_cust_vibrator_dtsi(114) :pvib_cust = 25, 9, 9\n[    1.475744]  (0)[1:swapper/0]vibrator init_cust_vibrator_dtsi(115) :get cust dtsi [end] ++\n[    1.475747]  (0)[1:swapper/0]vibrator vibr_power_set(132) :vibrator set voltage = 9\n[    1.475789]  (0)[1:swapper/0]vibrator_drv vib_probe(271) :probe done!\n[    1.476387]  (0)[1:swapper/0][BOOT_COMMON] [create_sysfs] No atag,meta found !\n[    1.476535]  (0)[1:swapper/0][DEVAPC]: driver registered\n[    1.476668]  (0)[1:swapper/0][DEVAPC]: [SLAVE_TYPE_INFRA] VIO_SHIFT_STA: 0x0\n[    1.476675]  (0)[1:swapper/0][DEVAPC]: [SLAVE_TYPE_PERI] VIO_SHIFT_STA: 0x100\n[    1.476680]  (0)[1:swapper/0][DEVAPC]: [SLAVE_TYPE_PERI2] VIO_SHIFT_STA: 0x0\n[    1.476684]  (0)[1:swapper/0][DEVAPC]: [SLAVE_TYPE_PERI_PAR] VIO_SHIFT_STA: 0x0\n[    1.476690]  (0)[1:swapper/0][DEVAPC]: SRAMROM violation is triggered\n[    1.477130]  (0)[1:swapper/0][DEVAPC]: sramrom_vio_handler, ROM violation is triggered\n[    1.477137]  (0)[1:swapper/0][DEVAPC]: sramrom_vio_handler: master_id:0x103, domain_id:0x0, rw:Read, vio_addr:0x4\n[    1.477463]  (0)[1:swapper/0][DEVAPC]: clear slave_type:0x1 VIO_SHIFT_STA:0x100 to 0x0\n[    1.477467]  (0)[1:swapper/0][DEVAPC]: check_type2_vio_status: no violation for slave_type:0x1\n[    1.477615]  (0)[1:swapper/0][DEVAPC]: check_type2_vio_status: no violation for slave_type:0x2\n[    1.477793]  (0)[1:swapper/0][DEVAPC]: check_type2_vio_status: no violation for slave_type:0x3\n[    1.477847]  (0)[1:swapper/0][DEVAPC]: [SLAVE_TYPE_INFRA] VIO_SHIFT_STA: 0x0\n[    1.477852]  (0)[1:swapper/0][DEVAPC]: [SLAVE_TYPE_PERI] VIO_SHIFT_STA: 0x0\n[    1.477856]  (0)[1:swapper/0][DEVAPC]: [SLAVE_TYPE_PERI2] VIO_SHIFT_STA: 0x0\n[    1.477860]  (0)[1:swapper/0][DEVAPC]: [SLAVE_TYPE_PERI_PAR] VIO_SHIFT_STA: 0x0\n[    1.477865]  (0)[1:swapper/0][DEVAPC]: start_devapc done\n[    1.479667]  (7)[127:chgdet_thread]chgdet_task_threadfn get tcpc device type_c_port0 fail\n[    1.480413]  (0)[1:swapper/0]mrdump_sysfs_init: done.\n[    1.480636]  (0)[1:swapper/0]mrdump_key_probe:80\n[    1.480809]  (0)[1:swapper/0]mrdump_key_probe:default to EINT\n[    1.480815]  (0)[1:swapper/0]mrdump_key_probe:force_mode=EINT\n[    1.480820]  (0)[1:swapper/0]mrdump_key_probe:mode=IRQ\n[    1.480826]  (0)[1:swapper/0]RGU ext_debugkey_io_eint is 1\n[    1.480833]  (0)[1:swapper/0]mrdump_key_probe: enabled MRDUMP_KEY EINT mode\n[    1.481870]  (0)[1:swapper/0][cmdq] gce dev:0000000037794d8c va:000000006d6a57fc pa:0x0000000010228000\n[    1.482093]  (0)[1:swapper/0][cmdq] mmsys dev:00000000a9b11dc1 va:00000000206a7ca6 pa:0x000000001f000000\n[    1.482313]  (0)[1:swapper/0][cmdq][err] channel request fail:-16 @cmdq_mbox_create,191\n[    1.484611]  (0)[1:swapper/0][ccu][init_check_sw_ver] have a wrong software version:0!\n[    1.484741]  (0)[1:swapper/0][ccu][ccu_probe] ccu probe cuccess...\n[    1.485134]  (0)[1:swapper/0]usb_function_register name=via_modem\n[    1.485141]  (0)[1:swapper/0]usb_function_register name=via_ets\n[    1.485146]  (0)[1:swapper/0]usb_function_register name=via_atc\n[    1.485151]  (0)[1:swapper/0]usb_function_register name=via_pcv\n[    1.485156]  (0)[1:swapper/0]usb_function_register name=via_gps\n[    1.485161]  (0)[1:swapper/0]C2K_USB_NOTE,<init 721>, rawbulk functions go!!!\n[    1.485180]  (0)[1:swapper/0]C2K_USB_NOTE,<rawbulk_alloc_function 604>, rawbulk_alloc_function\n[    1.485234]  (0)[1:swapper/0]C2K_USB_NOTE,<rawbulk_alloc_function 604>, rawbulk_alloc_function\n[    1.485277]  (0)[1:swapper/0]C2K_USB_NOTE,<rawbulk_alloc_function 604>, rawbulk_alloc_function\n[    1.485314]  (0)[1:swapper/0]C2K_USB_NOTE,<rawbulk_alloc_function 604>, rawbulk_alloc_function\n[    1.485359]  (0)[1:swapper/0]C2K_USB_NOTE,<rawbulk_alloc_function 604>, rawbulk_alloc_function\n[    1.485397]  (0)[1:swapper/0]C2K_USB_NOTE,<rawbulk_alloc_function 604>, rawbulk_alloc_function\n[    1.485438]  (0)[1:swapper/0]C2K_USB_NOTE,<rawbulk_alloc_function 604>, rawbulk_alloc_function\n[    1.485478]  (0)[1:swapper/0]C2K_USB_NOTE,<rawbulk_alloc_function 604>, rawbulk_alloc_function\n[    1.485517]  (0)[1:swapper/0]C2K_USB_NOTE,<rawbulk_init 1321>, rawbulk_init\n[    1.485816]  (0)[1:swapper/0]USB_BOOST, <create_sys_fs(), 543> \n[    1.485962]  (0)[1:swapper/0]USB_BOOST, <usb_boost_set_para_and_arg(), 147> para_range:<4>\n[    1.485968]  (0)[1:swapper/0]USB_BOOST, <usb_boost_set_para_and_arg(), 147> para_range:<4>\n[    1.485972]  (0)[1:swapper/0]USB_BOOST, <usb_boost_set_para_and_arg(), 147> para_range:<4>\n[    1.485977]  (0)[1:swapper/0]USB_BOOST, <usb_boost_set_para_and_arg(), 147> para_range:<4>\n[    1.485981]  (0)[1:swapper/0]USB_BOOST, <usb_boost_set_para_and_arg(), 147> para_range:<4>\n[    1.485985]  (0)[1:swapper/0]USB_BOOST, <usb_boost_set_para_and_arg(), 147> para_range:<4>\n[    1.486025]  (0)[1:swapper/0]mtk_cooler_shutdown: thermal/cooler/shutdown init\n[    1.486035]  (0)[1:swapper/0]mtk_cooler_shutdown: thermal/cooler/shutdown register ltf\n[    1.486156]  (0)[1:swapper/0]mtk_cooler_backlight_cus: thermal/cooler/backlight init\n[    1.486161]  (0)[1:swapper/0]mtk_cooler_backlight_cus: thermal/cooler/backlight register ltf\n[    1.486197]  (0)[1:swapper/0]mtk_cooler_flashlight_cus: thermal/cooler/flashlight init\n[    1.486202]  (0)[1:swapper/0]mtk_cooler_flashlight_cus: thermal/cooler/flashlight register ltf\n[    1.486243]  (0)[1:swapper/0]mtk_cooler_kshutdown: thermal/cooler/kshutdown init\n[    1.486247]  (0)[1:swapper/0]mtk_cooler_kshutdown: thermal/cooler/kshutdown register ltf\n[    1.487261]  (0)[1:swapper/0][Thermal/TZ/BTS][mtkts_bts_probe]get auxadc iio ch: 0\n[    1.487692]  (0)[1:swapper/0][Thermal/TZ/BTS] mtkts_bts_prepare_table table_num=7\n[    1.487818]  (0)[1:swapper/0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[    1.487823]  (0)[1:swapper/0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[    1.487827]  (0)[1:swapper/0][Thermal/TZ/BTS]T_AP=40400\n[    1.488212]  (0)[1:swapper/0][Thermal/TZ/BTSMDPA][mtkts_btsmdpa_probe]get auxadc iio ch: 1\n[    1.488564]  (0)[1:swapper/0][Thermal/TZ/BTSMDPA] mtkts_btsmdpa_prepare_table table_num=7\n[    1.489059]  (0)[1:swapper/0][Thermal/TZ/BTSNRPA][mtkts_btsnrpa_probe]get auxadc iio ch: 2\n[    1.489388]  (0)[1:swapper/0][Thermal/TZ/BTSNRPA] mtkts_btsnrpa_prepare_table table_num=7\n[    1.489539]  (0)[1:swapper/0][Thermal/TZ/CPU]tscpu_init\n[    1.489835]  (0)[72:kworker/0:1][apu_power_2.0][error] regulator_get vpu failed, ret: -517\n[    1.490052]  (0)[1:swapper/0][Thermal/TZ/CPU]thermal_prob\n[    1.490313]  (0)[1:swapper/0][Thermal/TZ/CPU][THERM_CTRL] thermal_irq_number=222\n[    1.490326]  (0)[1:swapper/0][Thermal/TZ/CPU][THERM_CTRL] mcu_irq_num = 223\n[    1.490750]  (0)[1:swapper/0][Thermal/TZ/CPU]tscpu_thermal_clock_on\n[    1.490773]  (0)[1:swapper/0][Thermal/TZ/LVTS][lvts_call] 0: 0x3c000000, 1: 0x8a7c, 2: 0x9008a90, 3: 0xe7008a77, 4: 0x8a78\n[    1.490780]  (0)[1:swapper/0][Thermal/TZ/LVTS][lvts_call] 5: 0x9008aab, 6: 0xdf008a89, 7: 0x89dc, 8: 0x8a09, 9: 0x89e8\n[    1.490787]  (0)[1:swapper/0][Thermal/TZ/LVTS][lvts_call] 10: 0x89e4, 11: 0x8a70, 12: 0x8a00, 13: 0x8a11, 14: 0x89e1\n[    1.490793]  (0)[1:swapper/0][Thermal/TZ/LVTS][lvts_call] 15: 0x9e4, 16: 0x9c5, 17: 0x9ee, 18: 0x9ea, 19: 0x8a7c\n[    1.490798]  (0)[1:swapper/0][Thermal/TZ/LVTS][lvts_call] 20: 0x9008a90,  21: 0xe7008a77\n[    1.490803]  (0)[1:swapper/0][Thermal/TZ/LVTS][lvts_cal] g_golden_temp = 60\n[    1.490821]  (0)[1:swapper/0][Thermal/TZ/LVTS][lvts_cal] num:g_count_r:g_count_rc 0:35452:2532 1:35472:2501 2:35447:2542 3:35448:2538 4:35499:2535 5:35465:0 6:35292:0 7:35337:0 8:35304:0 9:35300:0 10:35440:0 11:35328:0 12:35345:0 13:35297:0 \n[    1.493086]  (0)[1:swapper/0][Thermal/TZ/CPU]read_all_tc_temperature, 1,0,0\n[    1.495096]  (0)[1:swapper/0][Thermal/TZ/CPU]read_all_tc_temperature, 2,0,0\n[    1.495105] -(0)[1:swapper/0][Thermal/TZ/CPU]Driver is ready to report valid temperatures\n[    1.495109]  (0)[1:swapper/0][Thermal/TZ/LVTS]lvts_ipi_send_efuse_data\n[    1.495114]  (0)[1:swapper/0][Thermal/TZ/CPU]cmd(6) lvts efuse to MCUPM (0)\n[    1.495980]  (0)[1:swapper/0][Thermal/TZ/PMIC] [mtktspmic_init]\n[    1.495987]  (0)[1:swapper/0][Thermal/TZ/PMIC] [pmic_debug]  start\n[    1.496042]  (0)[1:swapper/0][Thermal/TZ/PMIC] [pmic_debug] 6359_efuse: g_o_vts        = 1614\n[    1.496046]  (0)[1:swapper/0][Thermal/TZ/PMIC] [pmic_debug] 6359_efuse: g_o_vts_2      = 1560\n[    1.496050]  (0)[1:swapper/0][Thermal/TZ/PMIC] [pmic_debug] 6359_efuse: g_o_vts_3      = 1556\n[    1.496054]  (0)[1:swapper/0][Thermal/TZ/PMIC] [pmic_debug] 6359_efuse: g_o_vts_4      = 1554\n[    1.496058]  (0)[1:swapper/0][Thermal/TZ/PMIC] [pmic_debug] 6359_efuse: g_degc_cali    = 47\n[    1.496062]  (0)[1:swapper/0][Thermal/TZ/PMIC] [pmic_debug] 6359_efuse: g_adc_cali_en  = 1\n[    1.496066]  (0)[1:swapper/0][Thermal/TZ/PMIC] [pmic_debug] 6359_efuse: g_o_slope_sign = 0\n[    1.496070]  (0)[1:swapper/0][Thermal/TZ/PMIC] [pmic_debug] 6359_efuse: g_o_slope      = 0\n[    1.496074]  (0)[1:swapper/0][Thermal/TZ/PMIC] [pmic_debug] 6359_efuse: g_id\t\t   = 0\n[    1.496077]  (0)[1:swapper/0][Thermal/TZ/PMIC] [pmic_debug]  end\n[    1.496082]  (0)[1:swapper/0][Thermal/TZ/PMIC] [pmic_debug] g_o_vts        = 0x64e\n[    1.496085]  (0)[1:swapper/0][Thermal/TZ/PMIC] [pmic_debug] g_o_vts_2      = 0x618\n[    1.496089]  (0)[1:swapper/0][Thermal/TZ/PMIC] [pmic_debug] g_o_vts_3      = 0x614\n[    1.496093]  (0)[1:swapper/0][Thermal/TZ/PMIC] [pmic_debug] g_o_vts_4      = 0x612\n[    1.496097]  (0)[1:swapper/0][Thermal/TZ/PMIC] [pmic_debug] g_degc_cali    = 0x2f\n[    1.496100]  (0)[1:swapper/0][Thermal/TZ/PMIC] [pmic_debug] g_adc_cali_en  = 0x1\n[    1.496104]  (0)[1:swapper/0][Thermal/TZ/PMIC] [pmic_debug] g_o_slope      = 0x0\n[    1.496108]  (0)[1:swapper/0][Thermal/TZ/PMIC] [pmic_debug] g_o_slope_sign = 0x0\n[    1.496112]  (0)[1:swapper/0][Thermal/TZ/PMIC] [pmic_debug] g_id           = 0x0\n[    1.496117]  (0)[1:swapper/0][Thermal/TZ/PMIC] [Thermal calibration] SLOPE1=1000000 SLOPE2=-1681 INTERCEPT=445272, Vbe = -709000\n[    1.496122]  (0)[1:swapper/0][Thermal/TZ/PMIC] [Thermal calibration] SLOPE1=1000000 SLOPE2=-1863 INTERCEPT=391186, Vbe = -685000\n[    1.496128]  (0)[1:swapper/0][Thermal/TZ/PMIC] [Thermal calibration] SLOPE1=1000000 SLOPE2=-1863 INTERCEPT=390112, Vbe = -683000\n[    1.496133]  (0)[1:swapper/0][Thermal/TZ/PMIC] [Thermal calibration] SLOPE1=1000000 SLOPE2=-1863 INTERCEPT=389576, Vbe = -682000\n[    1.497066]  (0)[1:swapper/0]mt635x-auxadc mt635x-auxadc: name:CHIP_TEMP, channel=4, adc_out=0x609, adc_result=678\n[    1.497890]  (0)[1:swapper/0][Thermal/TZ/XMCHARGER] mtkts_xmcharger_prepare_table table_num=7\n[    1.498768]  (0)[1:swapper/0][Thermal/TZ/LCD] mtkts_lcd_prepare_table table_num=7\n[    1.499530]  (0)[1:swapper/0][Thermal/TZ/QUITE] mtkts_quite_prepare_table table_num=7\n[    1.499918]  (0)[1:swapper/0][W]mtk_wcn_cmb_stub_query_ctrl:Thermal query not registered\n[    1.500567]  (0)[1:swapper/0][Thermal/TZ/IMGS][mtk_imgs_init]\n[    1.502465]  (0)[1:swapper/0][Thermal/TZ/CPU]tscpu_bind binding OK, 1\n[    1.502701]  (0)[1:swapper/0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[    1.502709]  (0)[1:swapper/0]mtk_cooler_gpu_cus: thermal/cooler/gpu mtk_cooler_gpu_register_ltf\n[    1.502776]  (0)[1:swapper/0]mtk_cooler_char_curr_cus: thermal/cooler/char_curr mtk_cooler_char_curr_register_ltf\n[    1.504482]  (0)[1:swapper/0]mtk_cooler_md_cus: thermal/cooler/md mtk_cooler_md_register_ltf\n[    1.506264]  (0)[1:swapper/0][Thermal/TZ/CPU]tscpu_bind binding OK, 0\n[    1.506433]  (0)[1:swapper/0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[    1.506439]  (0)[1:swapper/0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[    1.506443]  (0)[1:swapper/0][Thermal/TZ/BTS]T_AP=40400\n[    1.506456]  (0)[1:swapper/0][Thermal timer][mtk_thermal_pm_init:314] - Registry thermal pm notify (0)\n[    1.506460]  (0)[1:swapper/0][Thermal/TZ/CPU][thermal_ipi_init]\n[    1.506471]  (0)[1:swapper/0][Thermal/TZ/PMIC] [mt6359vcore_init]\n[    1.506534]  (0)[1:swapper/0][Thermal/TZ/PMIC] [mt6359vproc_init]\n[    1.506591]  (0)[1:swapper/0][Thermal/TZ/PMIC] [mt6359vgpu_init]\n[    1.506652]  (0)[1:swapper/0][Thermal/TZ/PMIC] [mt6359tsx_init]\n[    1.506709]  (0)[1:swapper/0][Thermal/TZ/PMIC] [mt6359dcxo_init]\n[    1.511030]  (0)[1:swapper/0][fps]: drm_register_fps_chg_callback, entry[0] done!\n[    1.512649]  (7)[133:kworker/u16:2][Power/PPM] (0x0)(-1)(0)(0-7)(15)(0)(6)(6) (15)(0)(2)(2) \n[    1.514387]  (0)[1:swapper/0][SCP] register scp A notify callback..\n[    1.514568]  (0)[1:swapper/0]spm_twam_con 0x990\n[    1.514574]  (0)[1:swapper/0]spm_twam_window_len 0x994\n[    1.514578]  (0)[1:swapper/0]spm_twam_idle_sel 0x998\n[    1.514583]  (0)[1:swapper/0]spm_irq_mask 0xb4\n[    1.514587]  (0)[1:swapper/0]spm_irq_sta 0x128\n[    1.514592]  (0)[1:swapper/0]spm_twam_last_sta0 0x1d0\n[    1.514596]  (0)[1:swapper/0]spm_twam_last_sta1 0x1d4\n[    1.514601]  (0)[1:swapper/0]spm_twam_last_sta2 0x1d8\n[    1.514605]  (0)[1:swapper/0]spm_twam_last_sta3 0x1dc\n[    1.514641]  (0)[1:swapper/0]spmtwam base 00000000cf5b1fa8 irq 18\n[    1.515514] -(0)[1:swapper/0][name:mtk_lpm][P] - suspend-method:system (mtk_lpm_init:387)\n[    1.515623]  (0)[1:swapper/0][name:mtk_lpm][P] - /kp@10010000 set irq(0) as type = 0x1\n[    1.515632]  (0)[1:swapper/0][name:mtk_lpm][P] - irq_160, wakeup-src=0x4 (/kp@10010000) (mtk_lpm_irqremain_parsing:246)\n[    1.515671]  (0)[1:swapper/0][name:mtk_lpm][P] - /mddriver set irq(0) as type = 0x1\n[    1.515678]  (0)[1:swapper/0][name:mtk_lpm][P] - irq_163, wakeup-src=0x2000000 (/mddriver) (mtk_lpm_irqremain_parsing:246)\n[    1.515760]  (0)[1:swapper/0][name:mtk_lpm][P] - /vpu_core0@19030000 irq(0) type = 0x4 ?\n[    1.515767]  (0)[1:swapper/0][name:mtk_lpm][P] - irq_285, wakeup-src=0x0 (/vpu_core0@19030000) (mtk_lpm_irqremain_parsing:246)\n[    1.515821]  (0)[1:swapper/0][name:mtk_lpm][P] - /vpu_core1@19031000 irq(0) type = 0x4 ?\n[    1.515828]  (0)[1:swapper/0][name:mtk_lpm][P] - irq_286, wakeup-src=0x0 (/vpu_core1@19031000) (mtk_lpm_irqremain_parsing:246)\n[    1.515873]  (0)[1:swapper/0][name:mtk_lpm][P] - /mali@13000000 irq(0) type = 0x4 ?\n[    1.515880]  (0)[1:swapper/0][name:mtk_lpm][P] - irq_233, wakeup-src=0x0 (/mali@13000000) (mtk_lpm_irqremain_parsing:246)\n[    1.515925]  (0)[1:swapper/0][name:mtk_lpm][P] - /mali@13000000 irq(1) type = 0x4 ?\n[    1.515931]  (0)[1:swapper/0][name:mtk_lpm][P] - irq_234, wakeup-src=0x0 (/mali@13000000) (mtk_lpm_irqremain_parsing:246)\n[    1.515976]  (0)[1:swapper/0][name:mtk_lpm][P] - /mali@13000000 irq(2) type = 0x4 ?\n[    1.515982]  (0)[1:swapper/0][name:mtk_lpm][P] - irq_235, wakeup-src=0x0 (/mali@13000000) (mtk_lpm_irqremain_parsing:246)\n[    1.516028]  (0)[1:swapper/0][name:mtk_lpm][P] - /mali@13000000 irq(3) type = 0x4 ?\n[    1.516035]  (0)[1:swapper/0][name:mtk_lpm][P] - irq_236, wakeup-src=0x0 (/mali@13000000) (mtk_lpm_irqremain_parsing:246)\n[    1.516083]  (0)[1:swapper/0][name:mtk_lpm][P] - /mali@13000000 irq(4) type = 0x4 ?\n[    1.516089]  (0)[1:swapper/0][name:mtk_lpm][P] - irq_237, wakeup-src=0x0 (/mali@13000000) (mtk_lpm_irqremain_parsing:246)\n[    1.516253]  (0)[1:swapper/0]mtk_dbg_common_fs_init 316: finish\n[    1.516478]  (0)[1:swapper/0]mt6853_dbg_fs_init 26: finish\n[    1.516853]  (0)[1:swapper/0]mddpwh_sm_init: 00000000ac268155, 0000000034c5ee35\n[    1.516862]  (6)[308:mddp_rx]mddp_ipc_md_smem_layout_config: smem total_len(48)\n               !\n[    1.516957]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[    1.516964]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[    1.517029]  (0)[1:swapper/0]__mddp_dev_devnode: Set permission of dev node(mddp).\n[    1.517293]  (0)[1:swapper/0][mt_udi] udipin_base = 0xffffff800b4cd000.\n[    1.517299]  (0)[1:swapper/0][mt_udi] get udi_offset1(0x3f0)\n[    1.517304]  (0)[1:swapper/0][mt_udi] get udi_value1(0x44400000)\n[    1.517309]  (0)[1:swapper/0][mt_udi] get udi_offset2(0x400)\n[    1.517313]  (0)[1:swapper/0][mt_udi] get udi_value2(0x44)\n[    1.517317]  (0)[1:swapper/0][mt_udi] get ecc_debug(0x1)\n[    1.518048]  (0)[1:swapper/0]pmic_spmi_probe MT6315 usid:3\n[    1.518370]  (0)[1:swapper/0]mt6315-regulator 10027000.spmi:mt6315@3:mt6315_3_regulator: Chip ID = 0x15\n[    1.519055]  (0)[1:swapper/0][mt6315_S3_default_vosel] record vmodem=0x84, vnr=0x84, vsram_md=0x84\n[    1.519061]  (0)[1:swapper/0]mt6315_misc_init sid=3 done\n[    1.520064]  (0)[1:swapper/0]mt635x-ot-debug mt635x-ot-debug: mt635x_ot_debug_probe\n[    1.521056]  (0)[1:swapper/0]mt6358-misc mt6359p-misc: no match data\n[    1.521064]  (0)[1:swapper/0]mt6358_misc: mt6358_misc_probe: rtc_misc->addr_base =0x580\n[    1.521068]  (0)[1:swapper/0]mt6358_misc: mt6358_misc_probe done\n[    1.521113]  (0)[1:swapper/0]Loading pn544 driver\n[    1.521671]  (0)[1:swapper/0]ufshcd 11270000.ufshci: ufshcd_parse_clock_info: vendor clk ufs-vendor-crypto-clk-mux is found and skipped\n[    1.521680]  (0)[1:swapper/0]ufshcd 11270000.ufshci: ufshcd_parse_clock_info: vendor clk ufs-vendor-crypto-normal-parent-clk is found and skipped\n[    1.521687]  (0)[1:swapper/0]ufshcd 11270000.ufshci: ufshcd_parse_clock_info: vendor clk ufs-vendor-crypto-perf-parent-clk is found and skipped\n[    1.521696]  (0)[1:swapper/0]ufshcd 11270000.ufshci: ufshcd_populate_vreg: Unable to find vdd-hba-supply regulator, assuming enabled\n[    1.521744]  (0)[1:swapper/0]ufshcd 11270000.ufshci: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    1.521751]  (0)[1:swapper/0]ufshcd 11270000.ufshci: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled\n[    1.521884]  (0)[1:swapper/0]ufshcd 11270000.ufshci: ufs_mtk_pltfrm_xo_ufs_req: card not init skip\n[    1.521976]  (0)[1:swapper/0]ufshcd 11270000.ufshci: ufshcd_config_vreg: count:14 fixed:3000000 plus:0\n[    1.522586]  (0)[1:swapper/0]ufshcd bootdevice: hci quirks: 0x400\n[    1.522601]  (0)[1:swapper/0]ufshcd bootdevice: auto-hibern8 timer 10 ms\n[    1.522935]  (0)[1:swapper/0]scsi host0: ufshcd\n[    1.538116]  (0)[1:swapper/0]ufshcd bootdevice: ufs_mtk_pltfrm_ufs_device_reset: UFS device reset done\n[    1.538906]  (0)[1:swapper/0]ufshcd bootdevice: keyhint enabled: 0\n[    1.538940]  (0)[1:swapper/0]BOOTPROF:      1538.920080:probe: probe=platform_drv_probe drv=ufshcd(0xffffff8289c81c98)    17.614846ms\n[    1.539664]  (0)[1:swapper/0]BOOTPROF:      1539.661310:initcall: ufs_mtk_pltform_init    18.456923ms\n[    1.541870]  (0)[1:swapper/0]mtk-spi 1100a000.spi0: No 'mediatek,kthread-rt' property\n[    1.542308]  (0)[1:swapper/0]mtk-spi 11010000.spi1: No 'mediatek,kthread-rt' property\n[    1.542768]  (0)[1:swapper/0]mtk-spi 11012000.spi2: No 'mediatek,kthread-rt' property\n[    1.543108]  (0)[1:swapper/0]mtk-spi 11013000.spi3: No 'mediatek,kthread-rt' property\n[    1.543446]  (0)[1:swapper/0]mtk-spi 11018000.spi4: No 'mediatek,kthread-rt' property\n[    1.543875]  (0)[1:swapper/0]mtk-spi 11019000.spi5: No 'mediatek,kthread-rt' property\n[    1.544304]  (0)[1:swapper/0]mtk-spi 1101d000.spi6: No 'mediatek,kthread-rt' property\n[    1.544640]  (0)[1:swapper/0]mtk-spi 1101e000.spi7: No 'mediatek,kthread-rt' property\n[    1.545147]  (0)[1:swapper/0]spi_dev_init().\n[    1.545685]  (0)[1:swapper/0]tun: Universal TUN/TAP device driver, 1.6\n[    1.545751]  (0)[1:swapper/0]PPP generic driver version 2.4.2\n[    1.545815]  (0)[1:swapper/0]PPP BSD Compression module registered\n[    1.545821]  (0)[1:swapper/0]PPP Deflate Compression module registered\n[    1.545844]  (0)[1:swapper/0]PPP MPPE Compression module registered\n[    1.545851]  (0)[1:swapper/0]NET: Registered protocol family 24\n[    1.545868]  (0)[1:swapper/0]PPTP driver version 0.8.5\n[    1.546103]  (0)[1:swapper/0]usbcore: registered new interface driver r8152\n[    1.547737]  (0)[1:swapper/0]usbcore: registered new interface driver usb-storage\n[    1.547787]  (0)[1:swapper/0]usbcore: registered new interface driver ums-alauda\n[    1.547809]  (0)[1:swapper/0]usbcore: registered new interface driver ums-cypress\n[    1.547832]  (0)[1:swapper/0]usbcore: registered new interface driver ums-datafab\n[    1.547854]  (0)[1:swapper/0]usbcore: registered new interface driver ums-freecom\n[    1.547876]  (0)[1:swapper/0]usbcore: registered new interface driver ums-isd200\n[    1.547897]  (0)[1:swapper/0]usbcore: registered new interface driver ums-jumpshot\n[    1.547918]  (0)[1:swapper/0]usbcore: registered new interface driver ums-karma\n[    1.547943]  (0)[1:swapper/0]usbcore: registered new interface driver ums-onetouch\n[    1.547965]  (0)[1:swapper/0]usbcore: registered new interface driver ums-sddr09\n[    1.547986]  (0)[1:swapper/0]usbcore: registered new interface driver ums-sddr55\n[    1.548008]  (0)[1:swapper/0]usbcore: registered new interface driver ums-usbat\n[    1.548031]  (0)[1:swapper/0]usbcore: registered new interface driver trancevibrator\n[    1.548071]  (0)[1:swapper/0]usb_function_register name=acm\n[    1.548094]  (0)[1:swapper/0]usb_function_register name=gser\n[    1.548411]  (0)[1:swapper/0]usb_function_register name=rndis\n[    1.548419]  (0)[1:swapper/0]usb_function_register name=mass_storage\n[    1.548424]  (0)[1:swapper/0]usb_function_register name=ffs\n[    1.548429]  (0)[1:swapper/0]usb_function_register name=midi\n[    1.548434]  (0)[1:swapper/0]usb_function_register name=hid\n[    1.548439]  (0)[1:swapper/0]usb_function_register name=audio_source\n[    1.548444]  (0)[1:swapper/0]usb_function_register name=accessory\n[    1.548449]  (0)[1:swapper/0]usb_function_register name=mtp\n[    1.548454]  (0)[1:swapper/0]usb_function_register name=ptp\n[    1.548662]  (0)[1:swapper/0]kpd: kpd-clk is default set by ccf.\n[    1.548866]  (0)[1:swapper/0]input: mtk-kpd as /devices/platform/10010000.kp/input/input1\n[    1.549665]  (0)[1:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[    1.549855]  (0)[1:swapper/0][TP_SPI]: Start register spi for tp\n[    1.549905]  (0)[1:swapper/0][TP_SPI]: Start probe\n[    1.549912]  (0)[1:swapper/0][TP_SPI]: init ts_xsfer device successful\n[    1.550769]  (0)[1:swapper/0]rtc_mt6358: mtk_rtc_pdrv_probe: rtc->irq = 361(361)\n[    1.550777]  (0)[1:swapper/0]rtc_mt6358: mtk_rtc_pdrv_probe: rtc->addr_base =0x580\n[    1.550975]  (0)[1:swapper/0]rtc_mt6358: read al time = 1970/01/01 00:00:00 (0)\n[    1.551080]  (0)[1:swapper/0]mt-rtc mt6359-rtc: rtc core: registered mt-rtc as rtc0\n[    1.551555]  (0)[1:swapper/0]Cannot find dma_node\n[    1.551863]  (0)[1:swapper/0][I2C]No clk_compatible(-22)\n[    1.551871]  (0)[1:swapper/0]Get compatible data from dts successfully.\n[    1.551875]  (0)[1:swapper/0]mt_i2c_init: driver as platform device\n[    1.552480]  (0)[1:swapper/0][I2C]id:0,freq:400000,div:5,ch_offset:0x0,offset_dma:0x0,offset_ccu:0x0\n[    1.552666]  (6)[133:kworker/u16:2]ufshcd bootdevice: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.552674]  (0)[1:swapper/0]mt-i2c 11e00000.i2c0: i2c0 clock source 000000000809b1b2,clock src frequency 24960000\n[    1.553006]  (0)[1:swapper/0][I2C]id:1,freq:400000,div:5,ch_offset:0x0,offset_dma:0x0,offset_ccu:0x0\n[    1.553166]  (0)[1:swapper/0]mt-i2c 11d20000.i2c1: i2c1 clock source 00000000d1dce00d,clock src frequency 24960000\n[    1.553381]  (0)[1:swapper/0][I2C]id:2,freq:400000,div:5,ch_offset:0x0,offset_dma:0x0,offset_ccu:0x0\n[    1.553525]  (0)[1:swapper/0]mt-i2c 11d21000.i2c2: i2c2 clock source 00000000d3f63819,clock src frequency 24960000\n[    1.553912]  (0)[1:swapper/0]MAINAF [AF_i2c_probe] Start\n[    1.553918]  (0)[1:swapper/0]MAINAF [Register_AF_CharDrv] Start\n[    1.553973]  (0)[1:swapper/0]MAINAF [Register_AF_CharDrv] End\n[    1.553978]  (0)[1:swapper/0]MAINAF [AF_i2c_probe] Attached!!\n[    1.554118]  (0)[1:swapper/0][I2C]id:3,freq:400000,div:5,ch_offset:0x0,offset_dma:0x0,offset_ccu:0x0\n[    1.554261]  (0)[1:swapper/0]mt-i2c 11cb0000.i2c3: i2c3 clock source 00000000adac530c,clock src frequency 24960000\n[    1.554646]  (0)[1:swapper/0][I2C]id:4,freq:400000,div:5,ch_offset:0x0,offset_dma:0x0,offset_ccu:0x0\n[    1.554829]  (0)[1:swapper/0]mt-i2c 11d22000.i2c4: i2c4 clock source 00000000cac1e70a,clock src frequency 24960000\n[    1.554943]  (6)[132:kworker/u16:1]pn544_probe: enter\n[    1.554947]  (6)[132:kworker/u16:1]going to pn544_parse_dt\n[    1.554961]  (6)[132:kworker/u16:1]pn544_parse_dt: 305, 311, 392,  error:0\n[    1.554967]  (6)[132:kworker/u16:1]pn544_probe, inside nfc-nci flags = 0\n[    1.555005]  (7)[132:kworker/u16:1]going to init mutex\n[    1.555185]  (7)[132:kworker/u16:1]pn544_probe : requesting IRQ 31\n[    1.555222]  (7)[132:kworker/u16:1]pn544_probe : requesting IRQ  ret is 0\n[    1.555289]  (0)[1:swapper/0][I2C]id:5,freq:3400000,div:5,ch_offset:0x0,offset_dma:0x0,offset_ccu:0x0\n[    1.555478]  (0)[1:swapper/0]mt-i2c 11d00000.i2c5: i2c5 clock source 0000000037007c3d,clock src frequency 24960000\n[    1.555835]  (0)[1:swapper/0]mt6360_pmu 5-0034: find mt6360_pmu_dts node\n[    1.555844]  (0)[1:swapper/0]mt6360_pmu 5-0034: mt6360_pmu_parse_dt_data ++\n[    1.555863]  (0)[1:swapper/0]mt6360_pmu 5-0034: mt6360_pmu_parse_dt_data --, irq gpio310\n[    1.555869]  (0)[1:swapper/0]mt6360_pmu 5-0034: chip_rev [03]\n[    1.555877]  (0)[1:swapper/0]regmap_device_register: name = mt6360_pmu.5-0034\n[    1.555911]  (0)[1:swapper/0] rt_regmap_mt6360_pmu.5-0034: rt register cache data init\n[    1.555930]  (0)[1:swapper/0] rt_regmap_mt6360_pmu.5-0034: cache cata init successfully\n[    1.559701]  (6)[297:krtatm][Thermal/TZ/CPU]krtatm_thread c 42749 p 0 cl 2147483647 gl 2147483647 s 0\n[    1.559707]  (6)[297:krtatm][Thermal/TZ/CPU]tjs 75000 ttj 85000 75000 on 2 sspm 0 0\n[    1.561000]  (0)[1:swapper/0]mt6360_pmu 5-0034: booton irq status ++\n[    1.561008]  (0)[1:swapper/0]mt6360_pmu 5-0034: irq[00], 00\n[    1.561014]  (0)[1:swapper/0]mt6360_pmu 5-0034: irq[01], 00\n[    1.561020]  (0)[1:swapper/0]mt6360_pmu 5-0034: irq[02], 00\n[    1.561025]  (0)[1:swapper/0]mt6360_pmu 5-0034: irq[03], 00\n[    1.561031]  (0)[1:swapper/0]mt6360_pmu 5-0034: irq[04], 00\n[    1.561036]  (0)[1:swapper/0]mt6360_pmu 5-0034: irq[05], 10\n[    1.561042]  (0)[1:swapper/0]mt6360_pmu 5-0034: irq[06], 00\n[    1.561047]  (0)[1:swapper/0]mt6360_pmu 5-0034: irq[07], 00\n[    1.561052]  (0)[1:swapper/0]mt6360_pmu 5-0034: irq[08], 12\n[    1.561058]  (0)[1:swapper/0]mt6360_pmu 5-0034: irq[09], 00\n[    1.561063]  (0)[1:swapper/0]mt6360_pmu 5-0034: irq[0a], 00\n[    1.561068]  (0)[1:swapper/0]mt6360_pmu 5-0034: irq[0b], 00\n[    1.561074]  (0)[1:swapper/0]mt6360_pmu 5-0034: irq[0c], 00\n[    1.561079]  (0)[1:swapper/0]mt6360_pmu 5-0034: irq[0d], 00\n[    1.561084]  (0)[1:swapper/0]mt6360_pmu 5-0034: irq[0e], 00\n[    1.561089]  (0)[1:swapper/0]mt6360_pmu 5-0034: irq[0f], 00\n[    1.561094]  (0)[1:swapper/0]mt6360_pmu 5-0034: booton irq status --\n[    1.581057]  (0)[1:swapper/0]mt6360_pmu_core mt6360_pmu_core.0.auto: mt6360_pmu_core_probe: successfully probed\n[    1.583765]  (0)[1:swapper/0]mt6360_pmu_adc mt6360_pmu_adc.1.auto: mt6360_pmu_adc_probe: successfully probed\n[    1.584003]  (0)[1:swapper/0]mt6360_pmu_chg mt6360_pmu_chg.2.auto: mt6360_pmu_chg_probe\n[    1.585742]  (0)[1:swapper/0]mt6360_pmu_chg mt6360_pmu_chg.2.auto: mt6360_chg_init_setting\n[    1.592413]  (0)[1:swapper/0]mt6360_pmu_chg mt6360_pmu_chg.2.auto: __mt6360_enable_usbchgen: en = 0\n[    1.592421]  (0)[1:swapper/0]mt6360_pmu_chg mt6360_pmu_chg.2.auto: mt6360_set_usbsw_state: state = 1\n[    1.593180]  (0)[1:swapper/0]mt6360_pmu_chg mt6360_pmu_chg.2.auto: mt6360_read_zcv: zcv = (0x00, 0x00, 0mV)\n[    1.599658]  (6)[127:chgdet_thread]chgdet_task_threadfn get tcpc device type_c_port0 fail\n[    1.609735]  (6)[132:kworker/u16:1]pn544_probe : the ret1 result is 0\n[    1.609738]  (6)[132:kworker/u16:1]pn544_probe : we going to return 0\n[    1.609755]  (6)[132:kworker/u16:1]BOOTPROF:      1609.753234:probe: probe=i2c_device_probe drv=nq-nci(0xffffff8289c7bad0)    54.814461ms\n[    1.615397]  (6)[133:kworker/u16:2]ufshcd bootdevice: ufshcd_change_power_mode: data lanes: available tx(2),rx(2)\n[    1.615402]  (6)[133:kworker/u16:2]ufshcd bootdevice: ufshcd_change_power_mode: data lanes: connected tx(2),rx(2)\n[    1.619295]  (6)[133:kworker/u16:2]ufshcd bootdevice: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[2, 2], pwr[FAST MODE, FAST MODE], rate = 2\n[    1.619407]  (7)[326:mivr_thread.mt6]mt6360_pmu_chg mt6360_pmu_chg.2.auto: mt6360_chg_mivr_task_threadfn ++\n[    1.619431]  (6)[133:kworker/u16:2]ufshcd bootdevice: ufshcd_find_max_sup_active_icc_level: Regulator capability was not set, actvIccLevel=0\n[    1.619541]  (0)[1:swapper/0]mt6360_pmu_chg mt6360_pmu_chg.2.auto: mt6360_pmu_chg_probe: successfully probed\n[    1.619561]  (0)[1:swapper/0]BOOTPROF:      1619.557926:probe: probe=platform_drv_probe drv=mt6360_pmu_chg(0xffffff8289c31668)    35.550462ms\n[    1.619650]  (6)[133:kworker/u16:2]scsi 0:0:0:49488: Well-known LUN    SAMSUNG  KM5V8001DM-B622  2302 PQ: 0 ANSI: 6\n[    1.619971]  (0)[1:swapper/0]mt6360_pmu_fled_probe (1.0.1_MTK) id = 3\n[    1.620123]  (6)[133:kworker/u16:2]scsi 0:0:0:49456: Well-known LUN    SAMSUNG  KM5V8001DM-B622  2302 PQ: 0 ANSI: 6\n[    1.620465]  (0)[1:swapper/0]mt6360_transform_strb_cur 750000\n[    1.620472]  (0)[1:swapper/0]mt6360_transform_strb_cur 0xF4\n[    1.620567]  (6)[133:kworker/u16:2]scsi 0:0:0:49476: Well-known LUN    SAMSUNG  KM5V8001DM-B622  2302 PQ: 0 ANSI: 6\n[    1.620872]  (6)[133:kworker/u16:2]ufshcd bootdevice: rpmb rw_size: 64\n[    1.620941]  (6)[133:kworker/u16:2]ufsf_read_dev_desc:218 device lu count 3\n[    1.620947]  (6)[133:kworker/u16:2]ufsf_read_dev_desc:225 sel=1 length=95(0x5f) bSupport=0x81, extend=0x01_81\n[    1.620951]  (6)[133:kworker/u16:2]ufshpb_get_dev_info:2717 bUFSFeaturesSupport: HPB is set\n[    1.620955]  (6)[133:kworker/u16:2]ufstw_get_dev_info:655 bUFSExFeaturesSupport: TW support\n[    1.620959]  (6)[133:kworker/u16:2]ufstw_get_dev_info:671 tw_dev [53] bTurboWriteBufferNoUserSpaceReductionEn 1\n[    1.620962]  (6)[133:kworker/u16:2]ufstw_get_dev_info:673 tw_dev [54] bTurboWriteBufferType 0\n[    1.621005]  (6)[133:kworker/u16:2]ufshpb_get_geo_info:2748 [48] bHPBRegionSiz 15\n[    1.621009]  (6)[133:kworker/u16:2]ufshpb_get_geo_info:2749 [49] bHPBNumberLU 1\n[    1.621013]  (6)[133:kworker/u16:2]ufshpb_get_geo_info:2750 [4A] bHPBSubRegionSize 15\n[    1.621016]  (6)[133:kworker/u16:2]ufshpb_get_geo_info:2752 [4B:4C] wDeviceMaxActiveHPBRegions 7629\n[    1.621020]  (6)[133:kworker/u16:2]ufshpb_init_constant:2139 sects_per_blk_shift: 3 3\n[    1.621025]  (6)[133:kworker/u16:2]ufshpb_init_constant:2144 bits_per_dword 32 shift 5 mask 0x1F\n[    1.621028]  (6)[133:kworker/u16:2]ufshpb_init_constant:2148 bits_per_byte 8 shift 3\n[    1.621032]  (6)[133:kworker/u16:2]ufstw_get_geo_info:686 tw_geo [4F:52] dTurboWriteBufferMaxNAllocUnits 7627\n[    1.621036]  (6)[133:kworker/u16:2]ufstw_get_geo_info:688 tw_geo [53] bDeviceMaxTurboWriteLUs 1\n[    1.621040]  (6)[133:kworker/u16:2]ufstw_get_geo_info:690 tw_geo [54] bTurboWriteBufferCapAdjFac 3\n[    1.621043]  (6)[133:kworker/u16:2]ufstw_get_geo_info:692 tw_geo [55] bSupportedTurboWriteBufferUserSpaceReductionTypes 2\n[    1.621047]  (6)[133:kworker/u16:2]ufstw_get_geo_info:694 tw_geo [56] bSupportedTurboWriteBufferTypes 2\n[    1.621088]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2782 LUN(0) [0A] bLogicalBlockSize 12\n[    1.621091]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2784 LUN(0) [0B] qLogicalBlockCount 1024\n[    1.621095]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2785 LUN(0) [03] bLuEnable 1\n[    1.621099]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2786 LUN(0) [06] bLuQueueDepth 0\n[    1.621102]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2788 LUN(0) [23:24] wLUMaxActiveHPBRegions 0\n[    1.621106]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2790 LUN(0) [25:26] wHPBPinnedRegionStartIdx 0\n[    1.621110]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2792 LUN(0) [27:28] wNumHPBPinnedRegions 0\n[    1.621114]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2795 LUN(0) PINNED Start 0 End -1\n[    1.621117]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2817 ===== LU 0 is hpb-disabled.\n[    1.621121]  (6)[133:kworker/u16:2]ufstw_get_lu_info:723 tw_lu LUN(0) [29:2C] dLUNumTurboWriteBufferAllocUnits 0\n[    1.621125]  (6)[133:kworker/u16:2]ufstw_get_lu_info:724 ===== LUN(0) is TurboWrite-disabled.\n[    1.621164]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2782 LUN(1) [0A] bLogicalBlockSize 12\n[    1.621168]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2784 LUN(1) [0B] qLogicalBlockCount 1024\n[    1.621171]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2785 LUN(1) [03] bLuEnable 1\n[    1.621175]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2786 LUN(1) [06] bLuQueueDepth 0\n[    1.621178]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2788 LUN(1) [23:24] wLUMaxActiveHPBRegions 0\n[    1.621182]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2790 LUN(1) [25:26] wHPBPinnedRegionStartIdx 0\n[    1.621186]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2792 LUN(1) [27:28] wNumHPBPinnedRegions 0\n[    1.621189]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2795 LUN(1) PINNED Start 0 End -1\n[    1.621193]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2817 ===== LU 1 is hpb-disabled.\n[    1.621196]  (6)[133:kworker/u16:2]ufstw_get_lu_info:723 tw_lu LUN(1) [29:2C] dLUNumTurboWriteBufferAllocUnits 0\n[    1.621200]  (6)[133:kworker/u16:2]ufstw_get_lu_info:724 ===== LUN(1) is TurboWrite-disabled.\n[    1.621242]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2782 LUN(2) [0A] bLogicalBlockSize 12\n[    1.621246]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2784 LUN(2) [0B] qLogicalBlockCount 31240192\n[    1.621249]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2785 LUN(2) [03] bLuEnable 2\n[    1.621253]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2786 LUN(2) [06] bLuQueueDepth 0\n[    1.621257]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2788 LUN(2) [23:24] wLUMaxActiveHPBRegions 2048\n[    1.621260]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2790 LUN(2) [25:26] wHPBPinnedRegionStartIdx 0\n[    1.621264]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2792 LUN(2) [27:28] wNumHPBPinnedRegions 0\n[    1.621268]  (6)[133:kworker/u16:2]ufshpb_get_lu_info:2795 LUN(2) PINNED Start 0 End -1\n[    1.621272]  (6)[133:kworker/u16:2]ufstw_get_lu_info:720 tw_lu LUN(2) [29:2C] dLUNumTurboWriteBufferAllocUnits 3072\n[    1.621457]  (6)[133:kworker/u16:2]ufsf_tw_init:636 init start.. tw_state 0\n\n[    1.621470]  (6)[133:kworker/u16:2]ufsf_tw_reset:648 reset start.. tw_state 0\n\n[    1.621676]  (6)[132:kworker/u16:1]scsi 0:0:0:0: Direct-Access     SAMSUNG  KM5V8001DM-B622  2302 PQ: 0 ANSI: 6\n[    1.621683]  (6)[132:kworker/u16:1]ufshcd_slave_configure: ufsfeature set lun 0 sdev 00000000b3c9bff9 q 0000000011052460\n[    1.622078]  (6)[132:kworker/u16:1]scsi 0:0:0:1: Direct-Access     SAMSUNG  KM5V8001DM-B622  2302 PQ: 0 ANSI: 6\n[    1.622082]  (6)[132:kworker/u16:1]ufshcd_slave_configure: ufsfeature set lun 1 sdev 00000000e3d1924b q 000000003af26dff\n[    1.622417]  (6)[132:kworker/u16:1]scsi 0:0:0:2: Direct-Access     SAMSUNG  KM5V8001DM-B622  2302 PQ: 0 ANSI: 6\n[    1.622421]  (6)[132:kworker/u16:1]ufshcd_slave_configure: ufsfeature set lun 2 sdev 000000005465539f q 00000000002982ae\n[    1.623279]  (6)[133:kworker/u16:2]sd 0:0:0:0: [sda] 1024 4096-byte logical blocks: (4.19 MB/4.00 MiB)\n[    1.623384]  (6)[133:kworker/u16:2]sd 0:0:0:0: [sda] Write Protect is off\n[    1.623390]  (6)[133:kworker/u16:2]sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.623526]  (7)[133:kworker/u16:2]sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    1.623606]  (7)[5:kworker/u16:0]sd 0:0:0:2: [sdc] 31240192 4096-byte logical blocks: (128 GB/119 GiB)\n[    1.623644]  (0)[1:swapper/0]mt6360_pmu_fled_probe (1.0.1_MTK) id = 0\n[    1.623655]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.0: mt6360_pmu_fled_probe flash name mt-flash-led1\n[    1.623665]  (7)[5:kworker/u16:0]sd 0:0:0:2: [sdc] Write Protect is off\n[    1.623689]  (7)[5:kworker/u16:0]sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.623709]  (1)[132:kworker/u16:1]sd 0:0:0:1: [sdb] 1024 4096-byte logical blocks: (4.19 MB/4.00 MiB)\n[    1.623787]  (6)[132:kworker/u16:1]sd 0:0:0:1: [sdb] Write Protect is off\n[    1.623793]  (6)[132:kworker/u16:1]sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.623815]  (0)[1:swapper/0]rt-flash-led:rtfled_probe() line-392: Richtek FlashLED Driver is probing\n[    1.623819]  (7)[5:kworker/u16:0]sd 0:0:0:2: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    1.623825]  (0)[1:swapper/0]rt-flash-led:rtfled_check_hal_implement() line-374: check_hal_implemented have NULL item.\n[    1.623932]  (1)[132:kworker/u16:1]sd 0:0:0:1: [sdb] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    1.623970]  (0)[1:swapper/0]rt-flash-led:rtfled_probe() line-410: Richtek FlashLED Driver initialized successfully\n[    1.624018]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.0: mt6360_pmu_fled_probe: successfully probed\n[    1.624294]  (0)[1:swapper/0]mt6360_pmu_fled_probe (1.0.1_MTK) id = 1\n[    1.624303]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.1: mt6360_pmu_fled_probe flash name mt-flash-led2\n[    1.624491]  (0)[1:swapper/0]rt-flash-led:rtfled_probe() line-392: Richtek FlashLED Driver is probing\n[    1.624497]  (0)[1:swapper/0]rt-flash-led:rtfled_check_hal_implement() line-374: check_hal_implemented have NULL item.\n[    1.624588]  (0)[1:swapper/0]rt-flash-led:rtfled_probe() line-410: Richtek FlashLED Driver initialized successfully\n[    1.624639]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.1: mt6360_pmu_fled_probe: successfully probed\n[    1.624657]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.3.auto: mt6360_pmu_fled_probe: successfully probed\n[    1.625130]  (0)[1:swapper/0]mt6360_pmu 5-0034: mt6360_pmu_i2c_probe: successfully probed\n[    1.625151]  (0)[1:swapper/0]BOOTPROF:      1625.148618:probe: probe=i2c_device_probe drv=mt6360_pmu(0xffffff8289c2ecf0)    69.442077ms\n[    1.625500]  (0)[1:swapper/0]mt6360_pmic 5-001a: find mt6360_pmic_dts node\n[    1.628130]  (7)[133:kworker/u16:2]sd 0:0:0:0: [sda] Attached SCSI disk\n[    1.628229]  (7)[132:kworker/u16:1]sd 0:0:0:1: [sdb] Attached SCSI disk\n[    1.628340]  (6)[5:kworker/u16:0] sdc: sdc1 sdc2 sdc3 sdc4 sdc5 sdc6 sdc7 sdc8 sdc9 sdc10 sdc11 sdc12 sdc13 sdc14 sdc15 sdc16 sdc17 sdc18 sdc19 sdc20 sdc21 sdc22 sdc23 sdc24 sdc25 sdc26 sdc27 sdc28 sdc29 sdc30 sdc31 sdc32 sdc33 sdc34 sdc35 sdc36 sdc37 sdc38 sdc39 sdc40 sdc41 sdc42 sdc43 sdc44 sdc45 sdc46 sdc47 sdc48 sdc49 sdc50 sdc51 sdc52 sdc53 sdc54 sdc55 sdc56 sdc57 sdc58 sdc59 sdc60\n[    1.630918]  (6)[5:kworker/u16:0]sd 0:0:0:2: [sdc] Attached SCSI disk\n[    1.631541]  (0)[1:swapper/0]mt6360_pmic 5-001a: chip_rev [03]\n[    1.631551]  (0)[1:swapper/0]regmap_device_register: name = mt6360_pmic.5-001a\n[    1.631603]  (0)[1:swapper/0] rt_regmap_mt6360_pmic.5-001a: rt register cache data init\n[    1.631613]  (6)[59:kworker/6:0]ufstw_init_work_fn:948 TW_INIT_START\n[    1.631617]  (0)[1:swapper/0] rt_regmap_mt6360_pmic.5-001a: cache cata init successfully\n[    1.631622]  (6)[59:kworker/6:0]ufstw_init_lu_jobs:628 INIT_DELAYED_WORK(tw_flush_work) ufstw_lu2\n[    1.631626]  (6)[59:kworker/6:0]ufstw_init_lu_jobs:631 INIT_WORK(tw_lifetime_work)\n[    1.631632]  (6)[59:kworker/6:0]ufstw_create_sysfs:1715 ufstw creates sysfs ufstw_lu(2) 000000000521db50 dev->kobj 000000004507c4fd\n[    1.631641]  (6)[59:kworker/6:0]ufstw_create_sysfs:1723 ufstw_lu2 sysfs attr creates: tw_mode\n[    1.631646]  (6)[59:kworker/6:0]ufstw_create_sysfs:1723 ufstw_lu2 sysfs attr creates: tw_enable\n[    1.631651]  (6)[59:kworker/6:0]ufstw_create_sysfs:1723 ufstw_lu2 sysfs attr creates: flush_enable\n[    1.631656]  (6)[59:kworker/6:0]ufstw_create_sysfs:1723 ufstw_lu2 sysfs attr creates: flush_during_hibern_enter\n[    1.631660]  (6)[59:kworker/6:0]ufstw_create_sysfs:1723 ufstw_lu2 sysfs attr creates: ee_mode\n[    1.631665]  (6)[59:kworker/6:0]ufstw_create_sysfs:1723 ufstw_lu2 sysfs attr creates: flush_status\n[    1.631670]  (6)[59:kworker/6:0]ufstw_create_sysfs:1723 ufstw_lu2 sysfs attr creates: available_buffer_size\n[    1.631675]  (6)[59:kworker/6:0]ufstw_create_sysfs:1723 ufstw_lu2 sysfs attr creates: current_tw_buffer_size\n[    1.631679]  (6)[59:kworker/6:0]ufstw_create_sysfs:1723 ufstw_lu2 sysfs attr creates: lifetime_est\n[    1.631684]  (6)[59:kworker/6:0]ufstw_create_sysfs:1723 ufstw_lu2 sysfs attr creates: debug\n[    1.631689]  (6)[59:kworker/6:0]ufstw_create_sysfs:1723 ufstw_lu2 sysfs attr creates: debug_active_cnt\n[    1.631693]  (6)[59:kworker/6:0]ufstw_create_sysfs:1723 ufstw_lu2 sysfs attr creates: flush_th_max\n[    1.631698]  (6)[59:kworker/6:0]ufstw_create_sysfs:1723 ufstw_lu2 sysfs attr creates: flush_th_min\n[    1.631703]  (6)[59:kworker/6:0]ufstw_create_sysfs:1723 ufstw_lu2 sysfs attr creates: version\n[    1.631707]  (6)[59:kworker/6:0]ufstw_create_sysfs:1727 ufstw_lu2 sysfs adds uevent\n[    1.632005]  (6)[59:kworker/6:0]ufstw_lu_init:809 warn: lun 2 - dTurboWriteBufferLifeTimeEst[31] == 1\n[    1.632008]  (6)[59:kworker/6:0]ufstw_lu_init:810 Device not guarantee the lifetime of Turbo Write Buffer\n[    1.632011]  (6)[59:kworker/6:0]ufstw_lu_init:811 but we will ignore them for PoC\n[    1.632016]  (6)[59:kworker/6:0]ufstw_print_lu_flag_attr:734 tw_flag LUN(2) [14] fTurboWriteEn 0\n[    1.632020]  (6)[59:kworker/6:0]ufstw_print_lu_flag_attr:736 tw_flag LUN(2) [15] fTurboWriteBufferFlushEn 0\n[    1.632024]  (6)[59:kworker/6:0]ufstw_print_lu_flag_attr:739 tw_flag LUN(2) [16] fTurboWriteBufferFlushDuringHibernateEnter 0\n[    1.632028]  (6)[59:kworker/6:0]ufstw_print_lu_flag_attr:742 tw_attr LUN(2) [28] flush_status  0\n[    1.632032]  (6)[59:kworker/6:0]ufstw_print_lu_flag_attr:744 tw_attr LUN(2) [29] buffer_size  10\n[    1.632036]  (6)[59:kworker/6:0]ufstw_print_lu_flag_attr:747 tw_attr LUN(2) [30] bufffer_lifetime  129(0x81)\n[    1.632040]  (6)[59:kworker/6:0]ufstw_init:852 UFSTW LU 2 working\n[    1.632044]  (6)[59:kworker/6:0]ufstw_init_dev_jobs:622 INIT_WORK(tw_reset_work)\n[    1.639944]  (0)[1:swapper/0]mt6360_pmic 5-001a: mt6360_pmic_i2c_probe: successfully probed\n[    1.640205]  (0)[1:swapper/0]mt6360_ldo 5-0064: find mt6360_ldo_dts node\n[    1.643876]  (0)[1:swapper/0]mt6360_ldo 5-0064: chip_rev [03]\n[    1.643885]  (0)[1:swapper/0]regmap_device_register: name = mt6360_ldo.5-0064\n[    1.643919]  (0)[1:swapper/0] rt_regmap_mt6360_ldo.5-0064: rt register cache data init\n[    1.643929]  (0)[1:swapper/0] rt_regmap_mt6360_ldo.5-0064: cache cata init successfully\n[    1.648998]  (0)[1:swapper/0]mt6360_ldo 5-0064: mt6360_ldo_i2c_probe: successfully probed\n[    1.649051]  (0)[1:swapper/0]BOOTPROF:      1649.048003:probe: probe=platform_drv_probe drv=mt-i2c(0xffffff8289d080f0)    93.768231ms\n[    1.649125]  (0)[1:swapper/0][I2C]id:6,freq:400000,div:5,ch_offset:0x0,offset_dma:0x0,offset_ccu:0x0\n[    1.649444]  (0)[1:swapper/0]mt-i2c 11f00000.i2c6: i2c6 clock source 000000009fc0c106,clock src frequency 24960000\n[    1.649904]  (0)[1:swapper/0][I2C]id:7,freq:400000,div:5,ch_offset:0x0,offset_dma:0x0,offset_ccu:0x0\n[    1.650062]  (0)[1:swapper/0]mt-i2c 11d01000.i2c7: i2c7 clock source 00000000c491d653,clock src frequency 24960000\n[    1.650375]  (0)[1:swapper/0][I2C]id:8,freq:400000,div:5,ch_offset:0x0,offset_dma:0x0,offset_ccu:0x0\n[    1.650515]  (0)[1:swapper/0]mt-i2c 11d02000.i2c8: i2c8 clock source 00000000dda09084,clock src frequency 24960000\n[    1.651137]  (0)[1:swapper/0][I2C]id:9,freq:400000,div:5,ch_offset:0x0,offset_dma:0x0,offset_ccu:0x0\n[    1.651276]  (0)[1:swapper/0]mt-i2c 11d03000.i2c9: i2c9 clock source 000000008295ce31,clock src frequency 24960000\n[    1.651525]  (0)[1:swapper/0]PM8008: pm8008_pmic_chip_i2c_probe: pm8008_chip_probe ++++ i2c addr 0x8\n[    1.651794]  (0)[1:swapper/0]gpio gpiochip0: (pinctrl_paris): gpiochip_lock_as_irq: tried to flag a GPIO set as output for IRQ\n[    1.651804]  (0)[1:swapper/0]mt6853-pinctrl pinctrl: unable to lock HW IRQ 7 for IRQ\n[    1.651810]  (0)[1:swapper/0]genirq: Failed to request resources for ocp (irq 33) on irqchip mt-eint\n[    1.651865]  (0)[1:swapper/0]PM8008: pm8008_pmic_chip_i2c_probe: Failed to request 'pm8008-ocp-irq' rc=-5\n[    1.651869]  (0)[1:swapper/0]PM8008: pm8008_pmic_chip_i2c_probe: PM8008 chip registered\n[    1.651976]  (0)[1:swapper/0]PM8008: pm8008_regulator_i2c_probe: pm8008_regulator_i2c_probe ++++ i2c addr 0x9\n[    1.652028]  (0)[1:swapper/0]PM8008: pm8008_masked_write: Writing 0x04 to 0x4088 with mask 0x04\n[    1.652135]  (0)[1:swapper/0]i2c i2c-9: error:addr=0x9,irq_stat=0x3,ch_offset=0x0,mask:0x12f\n[    1.652141]  (0)[1:swapper/0]i2c_dump_info: +++++++++++++++++++\n[    1.652151]  (0)[1:swapper/0]I2C structure:\n               [I2C]Clk=24960000,Id=9,Op=0x3,Irq_stat=0x3,Total_len=0x2\n               [I2C]Trans_len=0x2,Trans_num=0x1,Trans_auxlen=0x1,\n               [I2C]speed=400000,Trans_stop=1,cg_cnt=1,hs_only=0,\n               [I2C]ch_offset=0x0,ch_offset_default=0x0\n[    1.652156]  (0)[1:swapper/0]base addr:0x00000000853e6dfe\n[    1.652181]  (0)[1:swapper/0]I2C register:\n               [I2C]SLAVE_ADDR=0x12,INTR_MASK=0x0,INTR_STAT=0x0,\n               [I2C]CONTROL=0x3a,TRANSFER_LEN=0x2,TRANSAC_LEN=0x2,\n               [I2C]DELAY_LEN=0xa,TIMING=0x405,LTIMING=0x23,START=0x0\n               [I2C]FIFO_STAT=0x0,IO_CONFIG=0x3,HS=0x0\n               [I2C]DCM_EN=0x0,DEBUGSTAT=0x700,EXT_CONF=0x1801\n               [I2C]TRANSFER_LEN_AUX=0x1,OFFSET_DMA_FSM_DEBUG=0x8900\n               [I2C]OFFSET_MCU_INTR=0x1\n[    1.652191]  (0)[1:swapper/0]before enable DMA register(0x0):\n               [I2C]INT_FLAG=0x0,INT_EN=0x0,EN=0x0,RST=0x0,\n               [I2C]STOP=0x0,FLUSH=0x0,CON=0x0,\n               [I2C]TX_MEM_ADDR=0x0, RX_MEM_ADDR=0x0\n               [I2C]TX_LEN=0x0,RX_LEN=0x0,INT_BUF_SIZE=0x0,\n               [I2C]DEBUGSTA=0x0,TX_MEM_ADDR2=0x0, RX_MEM_ADDR2=0x0\n[    1.652205]  (0)[1:swapper/0]DMA register(0x000000000282f402):\n               [I2C]INT_FLAG=0x0,INT_EN=0x0,EN=0x0,RST=0x0,\n               [I2C]STOP=0x0,FLUSH=0x0,CON=0x8,\n               [I2C]TX_MEM_ADDR=0x0, RX_MEM_ADDR=0x0,\n               [I2C]TX_LEN=0x0,RX_LEN=x0,INT_BUF_SIZE=0x0,\n               [I2C]DEBUGSTA=0x0,TX_MEM_ADDR2=0x0, RX_MEM_ADDR2=0x0\n[    1.652209]  (0)[1:swapper/0]i2c_dump_info: -----------------------\n[    1.652214]  (0)[1:swapper/0]i2c i2c-9: last transfer info:\n[    1.652224]  (0)[1:swapper/0]i2c i2c-9: [00] [    1.652129] SLAVE_ADDR=12,INTR_STAT=3,CONTROL=3a,FIFO_STAT=441,DEBUGSTAT=300, tmo=200\n[    1.652232]  (0)[1:swapper/0]i2c i2c-9: [01] [    0.000000] SLAVE_ADDR=0,INTR_STAT=0,CONTROL=0,FIFO_STAT=0,DEBUGSTAT=0, tmo=0\n[    1.652239]  (0)[1:swapper/0]i2c i2c-9: [02] [    0.000000] SLAVE_ADDR=0,INTR_STAT=0,CONTROL=0,FIFO_STAT=0,DEBUGSTAT=0, tmo=0\n[    1.652247]  (0)[1:swapper/0]i2c i2c-9: [03] [    0.000000] SLAVE_ADDR=0,INTR_STAT=0,CONTROL=0,FIFO_STAT=0,DEBUGSTAT=0, tmo=0\n[    1.652255]  (0)[1:swapper/0]i2c i2c-9: [04] [    0.000000] SLAVE_ADDR=0,INTR_STAT=0,CONTROL=0,FIFO_STAT=0,DEBUGSTAT=0, tmo=0\n[    1.652262]  (0)[1:swapper/0]i2c i2c-9: [05] [    0.000000] SLAVE_ADDR=0,INTR_STAT=0,CONTROL=0,FIFO_STAT=0,DEBUGSTAT=0, tmo=0\n[    1.652270]  (0)[1:swapper/0]i2c i2c-9: [06] [    0.000000] SLAVE_ADDR=0,INTR_STAT=0,CONTROL=0,FIFO_STAT=0,DEBUGSTAT=0, tmo=0\n[    1.652278]  (0)[1:swapper/0]i2c i2c-9: [07] [    0.000000] SLAVE_ADDR=0,INTR_STAT=0,CONTROL=0,FIFO_STAT=0,DEBUGSTAT=0, tmo=0\n[    1.652285]  (0)[1:swapper/0]i2c i2c-9: [08] [    0.000000] SLAVE_ADDR=0,INTR_STAT=0,CONTROL=0,FIFO_STAT=0,DEBUGSTAT=0, tmo=0\n[    1.652293]  (0)[1:swapper/0]i2c i2c-9: [09] [    0.000000] SLAVE_ADDR=0,INTR_STAT=0,CONTROL=0,FIFO_STAT=0,DEBUGSTAT=0, tmo=0\n[    1.652298]  (0)[1:swapper/0]i2c i2c-9: i2c_gpio_dump_info +++++++++++++++++++\n[    1.652309]  (0)[1:swapper/0]i2c i2c-9: I2C gpio structure:\n               [I2C]EH_CFG=0x3fffffff,PU_CFG=0xc10b7f8,RSEL_CFG=0xfffffff\n[    1.652314]  (0)[1:swapper/0]i2c i2c-9: addr:0x9,ACK error\n[    1.652343]  (0)[1:swapper/0]PM8008: pm8008_masked_write: failed to write 0x04 to 0x4088 with mask 0x04\n[    1.652348]  (0)[1:swapper/0]PM8008: pm8008_register_ldo: pm8008_l1: failed to configure ocp broadcast rc=-121\n[    1.652352]  (0)[1:swapper/0]PM8008: pm8008_parse_regulator: failed to register regulator pm8008_l1 rc=-121\n[    1.652356]  (0)[1:swapper/0]PM8008: pm8008_regulator_i2c_probe: failed to parse device tree rc=-121\n[    1.652408]  (0)[1:swapper/0]qcom,pm8008-regulator: probe of 9-0009 failed with error -121\n[    1.652722]  (0)[1:swapper/0]FAN53870 get Product ID: [01]\n[    1.652890]  (0)[1:swapper/0]try to register ldo fan53870-l1\n[    1.653511]  (0)[1:swapper/0]fan53870-l1 regulator register done\n[    1.653675]  (0)[1:swapper/0]try to register ldo fan53870-l2\n[    1.654294]  (0)[1:swapper/0]fan53870-l2 regulator register done\n[    1.654460]  (0)[1:swapper/0]try to register ldo fan53870-l3\n[    1.655078]  (0)[1:swapper/0]fan53870-l3 regulator register done\n[    1.655244]  (0)[1:swapper/0]try to register ldo fan53870-l4\n[    1.655854]  (0)[1:swapper/0]fan53870-l4 regulator register done\n[    1.656018]  (0)[1:swapper/0]try to register ldo fan53870-l5\n[    1.656643]  (0)[1:swapper/0]fan53870-l5 regulator register done\n[    1.656810]  (0)[1:swapper/0]try to register ldo fan53870-l6\n[    1.657415]  (0)[1:swapper/0]fan53870-l6 regulator register done\n[    1.657580]  (0)[1:swapper/0]try to register ldo fan53870-l7\n[    1.658206]  (0)[1:swapper/0]fan53870-l7 regulator register done\n[    1.658287]  (0)[1:swapper/0][I2C]id:10,freq:100000,div:5,ch_offset:0x0,offset_dma:0x0,offset_ccu:0x0\n[    1.658448]  (0)[1:swapper/0]mt-i2c 11015000.i2c10: i2c10 clock source 00000000728c7021,clock src frequency 24960000\n[    1.658641]  (0)[1:swapper/0][I2C]id:11,freq:100000,div:5,ch_offset:0x0,offset_dma:0x0,offset_ccu:0x0\n[    1.658746]  (0)[1:swapper/0]mt-i2c 11017000.i2c11: i2c11 clock source 00000000a1d41800,clock src frequency 24960000\n[    1.659012]  (0)[1:swapper/0]BOOTPROF:      1659.008926:initcall: mt_i2c_init   107.850692ms\n[    1.659217]  (0)[1:swapper/0]IR NEC protocol handler initialized\n[    1.659223]  (0)[1:swapper/0]IR RC5(x/sz) protocol handler initialized\n[    1.659228]  (0)[1:swapper/0]IR RC6 protocol handler initialized\n[    1.659232]  (0)[1:swapper/0]IR JVC protocol handler initialized\n[    1.659237]  (0)[1:swapper/0]IR Sony protocol handler initialized\n[    1.659241]  (0)[1:swapper/0]IR SANYO protocol handler initialized\n[    1.659245]  (0)[1:swapper/0]IR Sharp protocol handler initialized\n[    1.659249]  (0)[1:swapper/0]IR MCE Keyboard/mouse protocol handler initialized\n[    1.659254]  (0)[1:swapper/0]IR XMP protocol handler initialized\n[    1.660773]  (0)[1:swapper/0][VCU] vdec_log_info 00000000beda5e74 1024 vcuid 0 vcu_ptr 000000008e5c01aa\n[    1.664368]  (0)[1:swapper/0][cmdq][err] no gce-event-names property or no such event:vdec_lat_pic_start @cmdq_dev_get_event,369\n[    1.664378]  (0)[1:swapper/0][cmdq][err] no gce-event-names property or no such event:vdec_lat_decode_done @cmdq_dev_get_event,369\n[    1.664385]  (0)[1:swapper/0][cmdq][err] no gce-event-names property or no such event:vdec_lat_pause @cmdq_dev_get_event,369\n[    1.664392]  (0)[1:swapper/0][cmdq][err] no gce-event-names property or no such event:vdec_lat_dec_error @cmdq_dev_get_event,369\n[    1.664399]  (0)[1:swapper/0][cmdq][err] no gce-event-names property or no such event:vdec_lat_mc_busy_overflow_timeout @cmdq_dev_get_event,369\n[    1.664405]  (0)[1:swapper/0][cmdq][err] no gce-event-names property or no such event:vdec_lat_all_dram_req_done @cmdq_dev_get_event,369\n[    1.664412]  (0)[1:swapper/0][cmdq][err] no gce-event-names property or no such event:vdec_lat_ini_fetch_rdy @cmdq_dev_get_event,369\n[    1.664419]  (0)[1:swapper/0][cmdq][err] no gce-event-names property or no such event:vdec_lat_process_flag @cmdq_dev_get_event,369\n[    1.664425]  (0)[1:swapper/0][cmdq][err] no gce-event-names property or no such event:vdec_lat_search_start_code_done @cmdq_dev_get_event,369\n[    1.664432]  (0)[1:swapper/0][cmdq][err] no gce-event-names property or no such event:vdec_lat_ref_reorder_done @cmdq_dev_get_event,369\n[    1.664438]  (0)[1:swapper/0][cmdq][err] no gce-event-names property or no such event:vdec_lat_wp_tble_done @cmdq_dev_get_event,369\n[    1.664445]  (0)[1:swapper/0][cmdq][err] no gce-event-names property or no such event:vdec_lat_count_sram_clr_done @cmdq_dev_get_event,369\n[    1.664452]  (0)[1:swapper/0][cmdq][err] no gce-event-names property or no such event:vdec_lat_gce_cnt_op_threshold @cmdq_dev_get_event,369\n[    1.664681]  (0)[1:swapper/0][cmdq][err] no gce-event-names property or no such event:venc_eof_c1 @cmdq_dev_get_event,369\n[    1.664688]  (0)[1:swapper/0][cmdq][err] no gce-event-names property or no such event:venc_wp_2nd_done @cmdq_dev_get_event,369\n[    1.664694]  (0)[1:swapper/0][cmdq][err] no gce-event-names property or no such event:venc_wp_3nd_done @cmdq_dev_get_event,369\n[    1.667861]  (0)[1:swapper/0][MTK_V4L2] level=0 mtk_vcodec_dec_probe(),385: decoder registered as /dev/video1\n[    1.670848]  (0)[1:swapper/0][MTK_V4L2] level=0 mtk_vcodec_enc_probe(),365: encoder registered as /dev/video2\n[    1.672553]  (0)[1:swapper/0]jpeg 1 core platform\n[    1.672578]  (0)[1:swapper/0]mtk_jpeg_probe irq0 283\n[    1.672634]  (0)[1:swapper/0]freq 0  270\n[    1.672638]  (0)[1:swapper/0]freq 1  1ca\n[    1.672642]  (0)[1:swapper/0]freq 2  16c\n[    1.672646]  (0)[1:swapper/0]freq 3  f9\n[    1.672773]  (0)[1:swapper/0]jpeg_clk_init id 7\n[    1.672902]  (0)[1:swapper/0]mtk-jpeg 17030000.jpgenc: jpeg device 0 registered as /dev/video3 (81,3)\n[    1.673619]  (0)[1:swapper/0]bat_plug:1 chr:1 info:0x6a3e\n[    1.673700] -(0)[1:swapper/0]mt6358_misc: mtk_rtc_get_spare_register: cmd[14], get rg[0x24, 0xff , 8] = 0x60\n[    1.673711] -(0)[1:swapper/0]mt6358_misc: mtk_rtc_get_spare_register: cmd[0], get rg[0x2a, 0xff , 8] = 0xa5\n[    1.673718]  (0)[1:swapper/0][fgauge_read_RTC_boot_status] rtc_invalid 0 plugout 0 plugout_time 0 spare3 0xa5 spare0 0x60 hw_id 0x5930\n[    1.673789]  (0)[1:swapper/0][fgauge_get_profile_id] find battery node success \n[    1.673814]  (0)[1:swapper/0][fgauge_get_profile_id] find battery dev success \n[    1.673853]  (0)[1:swapper/0][fgauge_get_profile_id] get channel success\n[    1.673888]  (0)[1:swapper/0][fgauge_get_profile_id] auxadc_voltage is 2440\n[    1.673892]  (0)[1:swapper/0][fgauge_get_profile_id] battery_id_voltage is 893000\n[    1.673911]  (0)[1:swapper/0]fg active table:5\n[    1.673979]  (0)[1:swapper/0][fgauge_get_profile_id] find battery node success \n[    1.674003]  (0)[1:swapper/0][fgauge_get_profile_id] find battery dev success \n[    1.674036]  (0)[1:swapper/0][fgauge_get_profile_id] get channel success\n[    1.674068]  (0)[1:swapper/0][fgauge_get_profile_id] auxadc_voltage is 2441\n[    1.674072]  (0)[1:swapper/0][fgauge_get_profile_id] battery_id_voltage is 893000\n[    1.674076]  (0)[1:swapper/0]fg_custom_init_from_dts\n[    1.674082]  (0)[1:swapper/0]Get MULTI_BATTERY failed\n[    1.674089]  (0)[1:swapper/0]Get Q_MAX_L_CURRENT failed\n[    1.674094]  (0)[1:swapper/0]Get Q_MAX_H_CURRENT failed\n[    1.674100]  (0)[1:swapper/0]Get g_Q_MAX_SYS_VOLTAGE failed, idx 0\n[    1.674105]  (0)[1:swapper/0]Get PSEUDO1_EN failed\n[    1.674110]  (0)[1:swapper/0]Get PSEUDO100_EN failed\n[    1.674115]  (0)[1:swapper/0]Get PSEUDO100_EN_DIS failed\n[    1.674121]  (0)[1:swapper/0]Get g_FG_PSEUDO1_OFFSET failed, idx 0\n[    1.674126]  (0)[1:swapper/0]Get QMAX_SEL failed\n[    1.674131]  (0)[1:swapper/0]Get IBOOT_SEL failed\n[    1.674136]  (0)[1:swapper/0]Get SHUTDOWN_SYSTEM_IBOOT failed\n[    1.674143]  (0)[1:swapper/0]Get NO_BAT_TEMP_COMPENSATE failed\n[    1.674151]  (0)[1:swapper/0]Get FULL_TRACKING_BAT_INT2_MULTIPLY failed\n[    1.674157]  (0)[1:swapper/0]Get AGING_ONE_EN failed\n[    1.674161]  (0)[1:swapper/0]Get AGING1_UPDATE_SOC failed\n[    1.674166]  (0)[1:swapper/0]Get AGING1_LOAD_SOC failed\n[    1.674171]  (0)[1:swapper/0]Get AGING4_UPDATE_SOC failed\n[    1.674176]  (0)[1:swapper/0]Get AGING4_LOAD_SOC failed\n[    1.674181]  (0)[1:swapper/0]Get AGING5_UPDATE_SOC failed\n[    1.674186]  (0)[1:swapper/0]Get AGING5_LOAD_SOC failed\n[    1.674191]  (0)[1:swapper/0]Get AGING6_UPDATE_SOC failed\n[    1.674195]  (0)[1:swapper/0]Get AGING6_LOAD_SOC failed\n[    1.674200]  (0)[1:swapper/0]Get AGING_TEMP_DIFF failed\n[    1.674205]  (0)[1:swapper/0]Get AGING_TEMP_LOW_LIMIT failed\n[    1.674210]  (0)[1:swapper/0]Get AGING_TEMP_HIGH_LIMIT failed\n[    1.674215]  (0)[1:swapper/0]Get AGING_100_EN failed\n[    1.674220]  (0)[1:swapper/0]Get DIFFERENCE_VOLTAGE_UPDATE failed\n[    1.674224]  (0)[1:swapper/0]Get AGING_FACTOR_MIN failed\n[    1.674229]  (0)[1:swapper/0]Get AGING_FACTOR_DIFF failed\n[    1.674234]  (0)[1:swapper/0]Get AGING_TWO_EN failed\n[    1.674239]  (0)[1:swapper/0]Get AGING_THIRD_EN failed\n[    1.674244]  (0)[1:swapper/0]Get DIFF_SOC_SETTING failed\n[    1.674250]  (0)[1:swapper/0]Get DIFFERENCE_FULL_CV failed\n[    1.674255]  (0)[1:swapper/0]Get DIFF_BAT_TEMP_SETTING failed\n[    1.674260]  (0)[1:swapper/0]Get DIFF_BAT_TEMP_SETTING_C failed\n[    1.674265]  (0)[1:swapper/0]Get DISCHARGE_TRACKING_TIME failed\n[    1.674270]  (0)[1:swapper/0]Get CHARGE_TRACKING_TIME failed\n[    1.674275]  (0)[1:swapper/0]Get DIFFERENCE_FULLOCV_VTH failed\n[    1.674280]  (0)[1:swapper/0]Get CHARGE_PSEUDO_FULL_LEVEL failed\n[    1.674285]  (0)[1:swapper/0]Get OVER_DISCHARGE_LEVEL failed\n[    1.674290]  (0)[1:swapper/0]Get FG_PRE_TRACKING_EN failed\n[    1.674295]  (0)[1:swapper/0]Get VBAT2_DET_TIME failed\n[    1.674300]  (0)[1:swapper/0]Get VBAT2_DET_COUNTER failed\n[    1.674304]  (0)[1:swapper/0]Get VBAT2_DET_VOLTAGE1 failed\n[    1.674309]  (0)[1:swapper/0]Get VBAT2_DET_VOLTAGE2 failed\n[    1.674314]  (0)[1:swapper/0]Get VBAT2_DET_VOLTAGE3 failed\n[    1.674319]  (0)[1:swapper/0]Get DIFFERENCE_FGC_FGV_TH1 failed\n[    1.674324]  (0)[1:swapper/0]Get DIFFERENCE_FGC_FGV_TH2 failed\n[    1.674329]  (0)[1:swapper/0]Get DIFFERENCE_FGC_FGV_TH3 failed\n[    1.674333]  (0)[1:swapper/0]Get DIFFERENCE_FGC_FGV_TH_SOC1 failed\n[    1.674338]  (0)[1:swapper/0]Get DIFFERENCE_FGC_FGV_TH_SOC2 failed\n[    1.674343]  (0)[1:swapper/0]Get NAFG_TIME_SETTING failed\n[    1.674348]  (0)[1:swapper/0]Get NAFG_RATIO failed\n[    1.674353]  (0)[1:swapper/0]Get NAFG_RATIO_EN failed\n[    1.674358]  (0)[1:swapper/0]Get NAFG_RATIO_TMP_THR failed\n[    1.674362]  (0)[1:swapper/0]Get NAFG_RESISTANCE failed\n[    1.674368]  (0)[1:swapper/0]Get PMIC_SHUTDOWN_SW_EN failed\n[    1.674373]  (0)[1:swapper/0]Get FORCE_VC_MODE failed\n[    1.674378]  (0)[1:swapper/0]Get LOADING_1_EN failed\n[    1.674383]  (0)[1:swapper/0]Get LOADING_2_EN failed\n[    1.674388]  (0)[1:swapper/0]Get DIFF_IAVG_TH failed\n[    1.674392]  (0)[1:swapper/0]Get SHUTDOWN_GAUGE0 failed\n[    1.674397]  (0)[1:swapper/0]Get SHUTDOWN_GAUGE1_XMINS failed\n[    1.674403]  (0)[1:swapper/0]Get SHUTDOWN_GAUGE1_VBAT_EN failed\n[    1.674408]  (0)[1:swapper/0]Get SHUTDOWN_GAUGE1_VBAT failed\n[    1.674413]  (0)[1:swapper/0]Get ZCV_SUSPEND_TIME failed\n[    1.674418]  (0)[1:swapper/0]Get SLEEP_CURRENT_AVG failed\n[    1.674423]  (0)[1:swapper/0]Get ZCV_CAR_GAP_PERCENTAGE failed\n[    1.674428]  (0)[1:swapper/0]Get HWOCV_OLDOCV_DIFF failed\n[    1.674432]  (0)[1:swapper/0]Get HWOCV_OLDOCV_DIFF_CHR failed\n[    1.674437]  (0)[1:swapper/0]Get HWOCV_SWOCV_DIFF failed\n[    1.674442]  (0)[1:swapper/0]Get HWOCV_SWOCV_DIFF_LT failed\n[    1.674446]  (0)[1:swapper/0]Get HWOCV_SWOCV_DIFF_LT_TEMP failed\n[    1.674451]  (0)[1:swapper/0]Get SWOCV_OLDOCV_DIFF failed\n[    1.674456]  (0)[1:swapper/0]Get SWOCV_OLDOCV_DIFF_CHR failed\n[    1.674461]  (0)[1:swapper/0]Get VBAT_OLDOCV_DIFF failed\n[    1.674465]  (0)[1:swapper/0]Get SWOCV_OLDOCV_DIFF_EMB failed\n[    1.674470]  (0)[1:swapper/0]Get PMIC_SHUTDOWN_TIME failed\n[    1.674475]  (0)[1:swapper/0]Get TNEW_TOLD_PON_DIFF failed\n[    1.674480]  (0)[1:swapper/0]Get TNEW_TOLD_PON_DIFF2 failed\n[    1.674485]  (0)[1:swapper/0]Get EXT_HWOCV_SWOCV failed\n[    1.674490]  (0)[1:swapper/0]Get EXT_HWOCV_SWOCV_LT failed\n[    1.674495]  (0)[1:swapper/0]Get EXT_HWOCV_SWOCV_LT_TEMP failed\n[    1.674500]  (0)[1:swapper/0]Get DC_RATIO_SEL failed\n[    1.674504]  (0)[1:swapper/0]Get DC_R_CNT failed\n[    1.674509]  (0)[1:swapper/0]Get PSEUDO1_SEL failed\n[    1.674514]  (0)[1:swapper/0]Get D0_SEL failed\n[    1.674518]  (0)[1:swapper/0]Get AGING_SEL failed\n[    1.674523]  (0)[1:swapper/0]Get BAT_PAR_I failed\n[    1.674528]  (0)[1:swapper/0]Get RECORD_LOG failed\n[    1.674533]  (0)[1:swapper/0]Get FG_TRACKING_CURRENT failed\n[    1.674538]  (0)[1:swapper/0]Get FG_TRACKING_CURRENT_IBOOT_EN failed\n[    1.674543]  (0)[1:swapper/0]Get UI_FAST_TRACKING_EN failed\n[    1.674547]  (0)[1:swapper/0]Get UI_FAST_TRACKING_GAP failed\n[    1.674552]  (0)[1:swapper/0]Get BAT_PLUG_OUT_TIME failed\n[    1.674557]  (0)[1:swapper/0]Get KEEP_100_PERCENT_MINSOC failed\n[    1.674562]  (0)[1:swapper/0]Get UISOC_UPDATE_TYPE failed\n[    1.674567]  (0)[1:swapper/0]Get BATTERY_TMP_TO_DISABLE_GM30 failed\n[    1.674572]  (0)[1:swapper/0]Get BATTERY_TMP_TO_DISABLE_NAFG failed\n[    1.674577]  (0)[1:swapper/0]Get BATTERY_TMP_TO_ENABLE_NAFG failed\n[    1.674581]  (0)[1:swapper/0]Get LOW_TEMP_MODE failed\n[    1.674586]  (0)[1:swapper/0]Get LOW_TEMP_MODE_TEMP failed\n[    1.674591]  (0)[1:swapper/0]Get UI_FULL_LIMIT_EN failed\n[    1.674596]  (0)[1:swapper/0]Get UI_FULL_LIMIT_SOC0 failed\n[    1.674601]  (0)[1:swapper/0]Get UI_FULL_LIMIT_ITH0 failed\n[    1.674605]  (0)[1:swapper/0]Get UI_FULL_LIMIT_SOC1 failed\n[    1.674610]  (0)[1:swapper/0]Get UI_FULL_LIMIT_ITH1 failed\n[    1.674615]  (0)[1:swapper/0]Get UI_FULL_LIMIT_SOC2 failed\n[    1.674619]  (0)[1:swapper/0]Get UI_FULL_LIMIT_ITH2 failed\n[    1.674624]  (0)[1:swapper/0]Get UI_FULL_LIMIT_SOC3 failed\n[    1.674629]  (0)[1:swapper/0]Get UI_FULL_LIMIT_ITH3 failed\n[    1.674634]  (0)[1:swapper/0]Get UI_FULL_LIMIT_SOC4 failed\n[    1.674638]  (0)[1:swapper/0]Get UI_FULL_LIMIT_ITH4 failed\n[    1.674643]  (0)[1:swapper/0]Get UI_FULL_LIMIT_TIME failed\n[    1.674648]  (0)[1:swapper/0]Get UI_LOW_LIMIT_EN failed\n[    1.674653]  (0)[1:swapper/0]Get UI_LOW_LIMIT_SOC0 failed\n[    1.674658]  (0)[1:swapper/0]Get UI_LOW_LIMIT_VTH0 failed\n[    1.674662]  (0)[1:swapper/0]Get UI_LOW_LIMIT_SOC1 failed\n[    1.674667]  (0)[1:swapper/0]Get UI_LOW_LIMIT_VTH1 failed\n[    1.674672]  (0)[1:swapper/0]Get UI_LOW_LIMIT_SOC2 failed\n[    1.674677]  (0)[1:swapper/0]Get UI_LOW_LIMIT_VTH2 failed\n[    1.674682]  (0)[1:swapper/0]Get UI_LOW_LIMIT_SOC3 failed\n[    1.674686]  (0)[1:swapper/0]Get UI_LOW_LIMIT_VTH3 failed\n[    1.674691]  (0)[1:swapper/0]Get UI_LOW_LIMIT_SOC4 failed\n[    1.674696]  (0)[1:swapper/0]Get UI_LOW_LIMIT_VTH4 failed\n[    1.674700]  (0)[1:swapper/0]Get UI_LOW_LIMIT_TIME failed\n[    1.674705]  (0)[1:swapper/0]Get MOVING_BATTEMP_EN failed\n[    1.674710]  (0)[1:swapper/0]Get MOVING_BATTEMP_THR failed\n[    1.674714]  (0)[1:swapper/0]Get DISABLE_MTKBATTERY failed\n[    1.674720]  (0)[1:swapper/0]Get FGC_FGV_TH1 failed\n[    1.674725]  (0)[1:swapper/0]Get FGC_FGV_TH2 failed\n[    1.674730]  (0)[1:swapper/0]Get FGC_FGV_TH3 failed\n[    1.674735]  (0)[1:swapper/0]Get UISOC_UPDATE_T failed\n[    1.674740]  (0)[1:swapper/0]Get UIFULLLIMIT_EN failed\n[    1.674744]  (0)[1:swapper/0]Get MTK_CHR_EXIST failed\n[    1.674749]  (0)[1:swapper/0]Get GM30_DISABLE_NAFG failed\n[    1.674753]  (0)[1:swapper/0]fg active table:5\n[    1.674765]  (0)[1:swapper/0]Get TEMPERATURE_TB0 failed\n[    1.674770]  (0)[1:swapper/0]Get TEMPERATURE_TB1 failed\n[    1.674776]  (0)[1:swapper/0]Get g_temperature failed, idx 0\n[    1.674781]  (0)[1:swapper/0]Get g_Q_MAX failed, idx 0\n[    1.674787]  (0)[1:swapper/0]Get g_Q_MAX_H_CURRENT failed, idx 0\n[    1.674792]  (0)[1:swapper/0]Get g_FG_PSEUDO1 failed, idx 0\n[    1.674806]  (0)[1:swapper/0]Get g_SHUTDOWN_HL_ZCV failed, idx 0\n[    1.674812]  (0)[1:swapper/0]Get g_temperature failed, idx 1\n[    1.674817]  (0)[1:swapper/0]Get g_Q_MAX failed, idx 4\n[    1.674822]  (0)[1:swapper/0]Get g_Q_MAX_H_CURRENT failed, idx 4\n[    1.674828]  (0)[1:swapper/0]Get g_FG_PSEUDO1 failed, idx 4\n[    1.674840]  (0)[1:swapper/0]Get g_SHUTDOWN_HL_ZCV failed, idx 4\n[    1.674846]  (0)[1:swapper/0]Get g_temperature failed, idx 2\n[    1.674851]  (0)[1:swapper/0]Get g_Q_MAX failed, idx 8\n[    1.674856]  (0)[1:swapper/0]Get g_Q_MAX_H_CURRENT failed, idx 8\n[    1.674862]  (0)[1:swapper/0]Get g_FG_PSEUDO1 failed, idx 8\n[    1.674874]  (0)[1:swapper/0]Get g_SHUTDOWN_HL_ZCV failed, idx 8\n[    1.674880]  (0)[1:swapper/0]Get g_temperature failed, idx 3\n[    1.674885]  (0)[1:swapper/0]Get g_Q_MAX failed, idx 12\n[    1.674890]  (0)[1:swapper/0]Get g_Q_MAX_H_CURRENT failed, idx 12\n[    1.674896]  (0)[1:swapper/0]Get g_FG_PSEUDO1 failed, idx 12\n[    1.674908]  (0)[1:swapper/0]Get g_SHUTDOWN_HL_ZCV failed, idx 12\n[    1.674914]  (0)[1:swapper/0]Get g_temperature failed, idx 4\n[    1.674919]  (0)[1:swapper/0]Get g_Q_MAX failed, idx 16\n[    1.674925]  (0)[1:swapper/0]Get g_Q_MAX_H_CURRENT failed, idx 16\n[    1.674930]  (0)[1:swapper/0]Get g_FG_PSEUDO1 failed, idx 16\n[    1.674942]  (0)[1:swapper/0]Get g_SHUTDOWN_HL_ZCV failed, idx 16\n[    1.674948]  (0)[1:swapper/0]Get g_temperature failed, idx 5\n[    1.674953]  (0)[1:swapper/0]Get g_Q_MAX failed, idx 20\n[    1.674959]  (0)[1:swapper/0]Get g_Q_MAX_H_CURRENT failed, idx 20\n[    1.674964]  (0)[1:swapper/0]Get g_FG_PSEUDO1 failed, idx 20\n[    1.674976]  (0)[1:swapper/0]Get g_SHUTDOWN_HL_ZCV failed, idx 20\n[    1.674982]  (0)[1:swapper/0]Get g_temperature failed, idx 6\n[    1.674987]  (0)[1:swapper/0]Get g_Q_MAX failed, idx 24\n[    1.674992]  (0)[1:swapper/0]Get g_Q_MAX_H_CURRENT failed, idx 24\n[    1.674998]  (0)[1:swapper/0]Get g_FG_PSEUDO1 failed, idx 24\n[    1.675010]  (0)[1:swapper/0]Get g_SHUTDOWN_HL_ZCV failed, idx 24\n[    1.675016]  (0)[1:swapper/0]Get g_temperature failed, idx 7\n[    1.675021]  (0)[1:swapper/0]Get g_Q_MAX failed, idx 28\n[    1.675027]  (0)[1:swapper/0]Get g_Q_MAX_H_CURRENT failed, idx 28\n[    1.675032]  (0)[1:swapper/0]Get g_FG_PSEUDO1 failed, idx 28\n[    1.675044]  (0)[1:swapper/0]Get g_SHUTDOWN_HL_ZCV failed, idx 28\n[    1.675050]  (0)[1:swapper/0]Get g_temperature failed, idx 8\n[    1.675055]  (0)[1:swapper/0]Get g_Q_MAX failed, idx 32\n[    1.675061]  (0)[1:swapper/0]Get g_Q_MAX_H_CURRENT failed, idx 32\n[    1.675066]  (0)[1:swapper/0]Get g_FG_PSEUDO1 failed, idx 32\n[    1.675078]  (0)[1:swapper/0]Get g_SHUTDOWN_HL_ZCV failed, idx 32\n[    1.675084]  (0)[1:swapper/0]Get g_temperature failed, idx 9\n[    1.675089]  (0)[1:swapper/0]Get g_Q_MAX failed, idx 36\n[    1.675095]  (0)[1:swapper/0]Get g_Q_MAX_H_CURRENT failed, idx 36\n[    1.675100]  (0)[1:swapper/0]Get g_FG_PSEUDO1 failed, idx 36\n[    1.675112]  (0)[1:swapper/0]Get g_SHUTDOWN_HL_ZCV failed, idx 36\n[    1.675120]  (0)[1:swapper/0]Get PSEUDO1_IQ_OFFSET_BAT0 failed\n[    1.675134]  (0)[1:swapper/0]Get battery0_profile_t0_col failed\n[    1.675140]  (0)[1:swapper/0]fg_custom_parse_table: battery0_profile_t0, 100, column:3\n[    1.675429]  (0)[1:swapper/0]Get battery0_profile_t1_col failed\n[    1.675435]  (0)[1:swapper/0]fg_custom_parse_table: battery0_profile_t1, 100, column:3\n[    1.675778]  (0)[1:swapper/0]fg_custom_parse_table: battery0_profile_t2, 100, column:4\n[    1.676328]  (0)[1:swapper/0]fg_custom_parse_table: battery0_profile_t3, 100, column:4\n[    1.676981]  (0)[1:swapper/0]Get battery0_profile_t4_col failed\n[    1.676986]  (0)[1:swapper/0]fg_custom_parse_table: battery0_profile_t4, 100, column:3\n[    1.677685]  (0)[1:swapper/0][pmic_register_interrupt_callback] intNo=81, callback=wake_up_gauge_coulomb\n[    1.677692]  (0)[1:swapper/0][pmic_register_interrupt_callback] intNo=80, callback=wake_up_gauge_coulomb\n[    1.678459]  (0)[1:swapper/0][PMIC] [pmic_enable_interrupt] No callback at intNo=117\n[    1.678645]  (0)[1:swapper/0][PMIC] [pmic_enable_interrupt] No callback at intNo=116\n[    1.678814]  (0)[1:swapper/0]mtk_power_misc_init INIT done, init:1\n[    1.678831]  (0)[1:swapper/0][pmic_register_interrupt_callback] intNo=121, callback=fg_nafg_int_handler\n[    1.678837]  (0)[1:swapper/0][pmic_register_interrupt_callback] intNo=84, callback=fg_zcv_int_handler\n[    1.679097]  (0)[1:swapper/0][pmic_register_interrupt_callback] intNo=87, callback=fg_cycle_int_handler\n[    1.679103]  (0)[1:swapper/0][pmic_register_interrupt_callback] intNo=88, callback=fg_iavg_int_ht_handler\n[    1.679108]  (0)[1:swapper/0][pmic_register_interrupt_callback] intNo=89, callback=fg_iavg_int_lt_handler\n[    1.679114]  (0)[1:swapper/0][pmic_register_interrupt_callback] intNo=99, callback=fg_bat_plugout_int_handler\n[    1.679120]  (0)[1:swapper/0][pmic_register_interrupt_callback] intNo=116, callback=fg_bat_temp_int_h_handler\n[    1.679125]  (0)[1:swapper/0][pmic_register_interrupt_callback] intNo=117, callback=fg_bat_temp_int_l_handler\n[    1.679131]  (0)[1:swapper/0][pmic_register_interrupt_callback] intNo=114, callback=fg_vbat2_h_int_handler\n[    1.679137]  (0)[1:swapper/0][pmic_register_interrupt_callback] intNo=115, callback=fg_vbat2_l_int_handler\n[    1.679153] -(0)[1:swapper/0]mt6358_misc: mtk_rtc_get_spare_register: cmd[0], get rg[0x2a, 0xff , 8] = 0xa5\n[    1.679161]  (0)[1:swapper/0][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[    1.679514]  (0)[1:swapper/0][BAT_probe] power_supply_register Battery Success !!\n[    1.679721]  (0)[1:swapper/0][BAT_probe] power_supply_register BMS Success !!\n[    1.679930]  (0)[1:swapper/0] fg_swocv_v = 37483 len 5 fg_swocv_v_tmp 37483 ptim_lk_v[37483]\n[    1.679980]  (6)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be9, adc_result=3736\n[    1.679986]  (0)[1:swapper/0] fg_swocv_i = -7189 len 5 fg_swocv_i_tmp -7189 ptim_lk_i[-7189]\n[    1.680040]  (0)[1:swapper/0] shutdown_time = 1802 len 4 shutdown_time_tmp 1802 pl_shutdown_time[1802]\n[    1.680092]  (0)[1:swapper/0]boot_voltage=3752 len 4 boot_voltage_tmp 3752 pl_bat_vol[3752]\n[    1.680989]  (0)[1:swapper/0][battery_init] Initialization : DONE\n[    1.681619]  (0)[1:swapper/0]mtk_pd_adapter_probe\n[    1.681625]  (0)[1:swapper/0]adapter_parse_dt\n[    1.681630]  (0)[1:swapper/0]adapter_device_register: name=pd_adapter\n[    1.681690]  (0)[1:swapper/0]mtk_pd_adapter_probe: tcpc device not ready, defer\n[    1.682554]  (0)[1:swapper/0]device-mapper: uevent: version 1.0.3\n[    1.682690]  (0)[1:swapper/0]device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com\n[    1.684041]  (0)[1:swapper/0][msdc]msdc_dt_init: msdc_of_parse error!!: -19\n[    1.684087]  (0)[1:swapper/0][msdc]DT probe msdc1!\n[    1.684143]  (0)[1:swapper/0]mtk-msdc 11240000.msdc: Got CD GPIO\n[    1.684307]  (0)[1:swapper/0][msdc][msdc1] get irq # 155\n[    1.684682]  (0)[1:swapper/0][msdc][msdc1] device renamed to externdevice.\n[    1.685322]  (0)[1:swapper/0][msdc][msdc1] src_hclk_ctl:0, hclk:191999939, clk_ctl:000000002cf14ea3, hclk_ctl:00000000fd6323e5\n[    1.686666]  (0)[1:swapper/0]gpt1, base=0xffffff800c613010\n[    1.686673]  (0)[1:swapper/0]gpt2, base=0xffffff800c613020\n[    1.686677]  (0)[1:swapper/0]gpt3, base=0xffffff800c613030\n[    1.686681]  (0)[1:swapper/0]gpt4, base=0xffffff800c613040\n[    1.686685]  (0)[1:swapper/0]gpt5, base=0xffffff800c613050\n[    1.686689]  (0)[1:swapper/0]gpt6, base=0xffffff800c613060\n[    1.686706]  (0)[1:swapper/0]base=0xffffff800c613000, disabled\n[    1.686761]  (0)[1:swapper/0]hidraw: raw HID events driver (C) Jiri Kosina\n[    1.687453]  (0)[1:swapper/0]usbcore: registered new interface driver usbhid\n[    1.687458]  (0)[1:swapper/0]usbhid: USB HID core driver\n[    1.687576]  (0)[1:swapper/0]ashmem: initialized\n[    1.688753]  (0)[1:swapper/0]dramc_probe: module probe.\n[    1.688769]  (0)[1:swapper/0]dramc_probe: dram_type(6),support_ch_cnt(2),ch_cnt(2),rk_cnt(2),mr_cnt(4),freq_cnt(7),mr4(true)\n[    1.688776]  (0)[1:swapper/0]dramc_probe: mr65535(ffff)\n[    1.688780]  (0)[1:swapper/0]dramc_probe: mr65535(ffff)\n[    1.688784]  (0)[1:swapper/0]dramc_probe: mr65535(ffff)\n[    1.688788]  (0)[1:swapper/0]dramc_probe: mr65535(ffff)\n[    1.689045]  (0)[1:swapper/0]dramc_probe: fmeter_version(1)\n[    1.689069]  (0)[1:swapper/0]dramc_probe: DRAM data type = 6\n[    1.689077]  (0)[1:swapper/0]dramc_probe: DRAM data rate = 4266\n[    1.689857]  (0)[1:swapper/0]emicen_probe: module probe.\n[    1.689866]  (0)[1:swapper/0]emicen_probe: ch_cnt(2), rk_cnt(2)\n[    1.689872]  (0)[1:swapper/0]emicen_probe: rk_size0(0x80000000)\n[    1.689876]  (0)[1:swapper/0]emicen_probe: rk_size1(0x80000000)\n[    1.690591]  (0)[1:swapper/0]emimpu_probe: module probe.\n[    1.690605]  (0)[1:swapper/0]emimpu_probe: region_cnt(32),domain_cnt(16),addr_align(16),dram_start(40000000),dram_end(13fffffff),ctrl_intf(1)\n[    1.691264]  (0)[1:swapper/0]emiisu_probe: module probe.\n[    1.691281]  (0)[1:swapper/0]emiisu_probe: buf_size(800000),buf_addr(0),ver_addr(ffffff800c67586c),con_addr(ffffff800c677858),ctrl_intf(1)\n[    1.692790]  (0)[1:swapper/0][NXP-P61] :  Entry : p61_dev_init\n[    1.692796]  (0)[1:swapper/0][nxp]p61_dev_init\n[    1.692840]  (0)[1:swapper/0][NXP-P61] :  p61_probe chip select : 0 , bus number = 1 \n[    1.692846]  (0)[1:swapper/0][NXP-P61] :  Entry : p61_probe\n[    1.692849]  (0)[1:swapper/0][nxp]p61_probe\n[    1.692852]  (0)[1:swapper/0]p61_parse_dt: 0\n[    1.692857]  (0)[1:swapper/0][NXP-P61] :  Entry : p61_hw_setup\n[    1.692861]  (0)[1:swapper/0][NXP-P61] :  Exit : p61_hw_setup\n[    1.692927]  (0)[1:swapper/0]p61_probe 703 now enable spi clk API\n[    1.692929]  (0)[1:swapper/0][NXP-P61] :  Exit : p61_probe\n[    1.692936]  (0)[1:swapper/0]p61_probe 705 now disable spi clk API\n[    1.692966]  (0)[1:swapper/0][NXP-P61] :  finished\n[    1.692972]  (0)[1:swapper/0][NXP-P61] :  Exit : p61_dev_init\n[    1.693190]  (0)[1:swapper/0]usbcore: registered new interface driver snd-usb-audio\n[    1.694165]  (0)[1:swapper/0]mt6359-sound mt6359_snd: mt6359_platform_driver_probe(), dev name mt6359_snd\n[    1.694493]  (0)[1:swapper/0]aw87359_pa_init enter\n[    1.694499]  (0)[1:swapper/0]aw87359_pa_init: driver version: v1.0.4\n[    1.694578]  (0)[1:swapper/0]aw87359_i2c_probe Enter\n[    1.694824]  (0)[1:swapper/0]aw87359_read_chipid: This Chip is aw87359 chipid=0x59\n[    1.694839]  (0)[1:swapper/0]aw87359_i2c_probe aw87359->AGC_bypass_flag = 0\n[    1.694845]  (0)[1:swapper/0]aw87359_hw_off enter\n[    1.694908]  (0)[1:swapper/0]aw87519_pa_init enter\n[    1.694913]  (0)[1:swapper/0]aw87519_pa_init: driver version: v1.0.7\n[    1.694967]  (0)[1:swapper/0]aw87519_i2c_probe Enter\n[    1.694984]  (0)[1:swapper/0]aw87519_pa 6-0058: aw87519_parse_dt: reset gpio provided ok\n[    1.695008]  (0)[1:swapper/0]aw87519_hw_reset enter\n[    1.699955]  (0)[1:swapper/0]aw87519_read_chipid This Chip is  AW87519 chipid=0x59\n[    1.699972]  (0)[1:swapper/0]aw87519_i2c_probe aw87519->AGC_bypass_flag = 0\n[    1.699977]  (0)[1:swapper/0]aw87519_hw_off enter\n[    1.701881]  (6)[332:kworker/6:3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf5, adc_result=3738\n[    1.702853]  (0)[1:swapper/0]snd_audio_dsp snd_audio_dsp: dai_dsp_register()\n[    1.702882]  (0)[1:swapper/0]dsp_pcm_taskattr_init\n[    1.702901]  (0)[1:swapper/0]dump_task_attr dl[1] ul[-1] ref[-1] feature[15] default[31] runtime[0]\n[    1.702907]  (0)[1:swapper/0]dump_task_attr dl[0] ul[-1] ref[-1] feature[4] default[31] runtime[0]\n[    1.702912]  (0)[1:swapper/0]dump_task_attr dl[6] ul[-1] ref[-1] feature[7] default[0] runtime[0]\n[    1.702917]  (0)[1:swapper/0]dump_task_attr dl[3] ul[-1] ref[-1] feature[6] default[5] runtime[0]\n[    1.702923]  (0)[1:swapper/0]dump_task_attr dl[4] ul[16] ref[20] feature[8] default[1] runtime[0]\n[    1.702928]  (0)[1:swapper/0]dump_task_attr dl[-1] ul[-1] ref[-1] feature[9] default[1] runtime[0]\n[    1.702933]  (0)[1:swapper/0]dump_task_attr dl[-1] ul[13] ref[19] feature[12] default[1] runtime[0]\n[    1.702938]  (0)[1:swapper/0]dump_task_attr dl[-1] ul[-1] ref[-1] feature[18] default[0] runtime[0]\n[    1.702943]  (0)[1:swapper/0]dump_task_attr dl[-1] ul[15] ref[-1] feature[13] default[0] runtime[0]\n[    1.702948]  (0)[1:swapper/0]dump_task_attr dl[4] ul[16] ref[20] feature[17] default[1] runtime[0]\n[    1.702953]  (0)[1:swapper/0]dump_task_attr dl[2] ul[-1] ref[-1] feature[5] default[7] runtime[0]\n[    1.702958]  (0)[1:swapper/0]dump_task_attr dl[8] ul[18] ref[-1] feature[19] default[1] runtime[0]\n[    1.702971]  (0)[1:swapper/0]mtk_adsp_gen_pool_create success to add chunk va_start= 0xffffff8009b00400 va_chunk = 1265664 dsp_dram_pool[0] = 00000000d79ece1f\n[    1.702976]  (0)[1:swapper/0]gen_pool_avail = 1265664 gen_pool_size = 1265664\n[    1.702982]  (0)[1:swapper/0]mtk_adsp_init_gen_pool task_id = 0\n[    1.702989]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[2]\n[    1.702993]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[0] i[2]\n[    1.702997]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[3]\n[    1.703002]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[0] i[3]\n[    1.703010]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 00000000c54a0873 va_addr = 0xffffff8009b00400 phy_addr =0x7dc40400 size=1024\n[    1.703017]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 00000000c6cc2923 va_addr = 0xffffff8009b00800 phy_addr =0x7dc40800 size=1024\n[    1.703021]  (0)[1:swapper/0]mtk_adsp_init_gen_pool task_id = 1\n[    1.703025]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[2]\n[    1.703029]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[1] i[2]\n[    1.703033]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[3]\n[    1.703037]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[1] i[3]\n[    1.703044]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 0000000082937f41 va_addr = 0xffffff8009b00c00 phy_addr =0x7dc40c00 size=1024\n[    1.703050]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 000000001ea28cc0 va_addr = 0xffffff8009b01000 phy_addr =0x7dc41000 size=1024\n[    1.703054]  (0)[1:swapper/0]mtk_adsp_init_gen_pool task_id = 2\n[    1.703059]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[2]\n[    1.703063]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[2] i[2]\n[    1.703067]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[3]\n[    1.703071]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[2] i[3]\n[    1.703077]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 0000000030eae19c va_addr = 0xffffff8009b01400 phy_addr =0x7dc41400 size=1024\n[    1.703084]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 000000001e315505 va_addr = 0xffffff8009b01800 phy_addr =0x7dc41800 size=1024\n[    1.703088]  (0)[1:swapper/0]mtk_adsp_init_gen_pool task_id = 3\n[    1.703092]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[2]\n[    1.703096]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[3] i[2]\n[    1.703100]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[3]\n[    1.703104]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[3] i[3]\n[    1.703110]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 000000001b290721 va_addr = 0xffffff8009b01c00 phy_addr =0x7dc41c00 size=1024\n[    1.703117]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 000000003da26d49 va_addr = 0xffffff8009b02000 phy_addr =0x7dc42000 size=1024\n[    1.703121]  (0)[1:swapper/0]mtk_adsp_init_gen_pool task_id = 4\n[    1.703125]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[2]\n[    1.703129]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[4] i[2]\n[    1.703133]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[3]\n[    1.703137]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[4] i[3]\n[    1.703144]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 0000000082d15e8e va_addr = 0xffffff8009b02400 phy_addr =0x7dc42400 size=1024\n[    1.703150]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 00000000c686b880 va_addr = 0xffffff8009b02800 phy_addr =0x7dc42800 size=1024\n[    1.703154]  (0)[1:swapper/0]mtk_adsp_init_gen_pool task_id = 5\n[    1.703158]  (0)[1:swapper/0]mtk_get_adsp_sharemem_block err audio_task_id = 5\n[    1.703162]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[0]\n[    1.703166]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[5] i[0]\n[    1.703170]  (0)[1:swapper/0]mtk_get_adsp_sharemem_block err audio_task_id = 5\n[    1.703173]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[1]\n[    1.703177]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[5] i[1]\n[    1.703181]  (0)[1:swapper/0]mtk_get_adsp_sharemem_block err audio_task_id = 5\n[    1.703185]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[2]\n[    1.703189]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[5] i[2]\n[    1.703193]  (0)[1:swapper/0]mtk_get_adsp_sharemem_block err audio_task_id = 5\n[    1.703196]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[3]\n[    1.703200]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[5] i[3]\n[    1.703207]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr =           (null) va_addr = 0x0 phy_addr =0x0 size=0\n[    1.703213]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr =           (null) va_addr = 0x0 phy_addr =0x0 size=0\n[    1.703216]  (0)[1:swapper/0]mtk_adsp_init_gen_pool task_id = 6\n[    1.703221]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[2]\n[    1.703225]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[6] i[2]\n[    1.703229]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[3]\n[    1.703233]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[6] i[3]\n[    1.703240]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 00000000023b57c9 va_addr = 0xffffff8009b02c00 phy_addr =0x7dc42c00 size=1024\n[    1.703246]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 000000000c0eae1a va_addr = 0xffffff8009b03000 phy_addr =0x7dc43000 size=1024\n[    1.703250]  (0)[1:swapper/0]mtk_adsp_init_gen_pool task_id = 7\n[    1.703254]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[2]\n[    1.703258]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[7] i[2]\n[    1.703262]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[3]\n[    1.703266]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[7] i[3]\n[    1.703273]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 00000000f3a9b498 va_addr = 0xffffff8009b03400 phy_addr =0x7dc43400 size=1024\n[    1.703279]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 00000000ccf12b4d va_addr = 0xffffff8009b03800 phy_addr =0x7dc43800 size=1024\n[    1.703283]  (0)[1:swapper/0]mtk_adsp_init_gen_pool task_id = 8\n[    1.703288]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[2]\n[    1.703291]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[8] i[2]\n[    1.703295]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[3]\n[    1.703299]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[8] i[3]\n[    1.703305]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 00000000fa83bb08 va_addr = 0xffffff8009b03c00 phy_addr =0x7dc43c00 size=1024\n[    1.703312]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 0000000046c1990d va_addr = 0xffffff8009b04000 phy_addr =0x7dc44000 size=1024\n[    1.703316]  (0)[1:swapper/0]mtk_adsp_init_gen_pool task_id = 9\n[    1.703321]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[2]\n[    1.703325]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[9] i[2]\n[    1.703329]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[3]\n[    1.703333]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[9] i[3]\n[    1.703339]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 00000000145d03e8 va_addr = 0xffffff8009b04400 phy_addr =0x7dc44400 size=1024\n[    1.703345]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 000000007ff47c0f va_addr = 0xffffff8009b04800 phy_addr =0x7dc44800 size=1024\n[    1.703349]  (0)[1:swapper/0]mtk_adsp_init_gen_pool task_id = 10\n[    1.703354]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[2]\n[    1.703358]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[10] i[2]\n[    1.703362]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[3]\n[    1.703366]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[10] i[3]\n[    1.703373]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 00000000c609cb37 va_addr = 0xffffff8009b04c00 phy_addr =0x7dc44c00 size=1024\n[    1.703379]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 00000000c16d785f va_addr = 0xffffff8009b05000 phy_addr =0x7dc45000 size=1024\n[    1.703383]  (0)[1:swapper/0]mtk_adsp_init_gen_pool task_id = 11\n[    1.703388]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[2]\n[    1.703392]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[11] i[2]\n[    1.703396]  (0)[1:swapper/0]aud_genppol_allocate_sharemem_msg size[0] id[3]\n[    1.703400]  (0)[1:swapper/0]mtk_adsp_init_gen_pool not allocate task_id[11] i[3]\n[    1.703406]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 000000001a2b6861 va_addr = 0xffffff8009b05400 phy_addr =0x7dc45400 size=1024\n[    1.703412]  (0)[1:swapper/0]ALSA ../sound/soc/mediatek/audio_dsp/audio_buf.c:420 dump_audio_dsp_dram dsp_dram vir_addr = 0000000087cbf86d va_addr = 0xffffff8009b05800 phy_addr =0x7dc45800 size=1024\n[    1.703421]  (0)[1:swapper/0]adsp_core0_resume(), done elapse 0 us\n[    1.703424]  (0)[1:swapper/0]set_mtk_adsp_mpu_sharedram phy_addr[0x7dc40400] size[0x135000]\n[    1.703703]  (6)[332:kworker/6:3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4beb, adc_result=3736\n[    1.703709]  (0)[1:swapper/0]_adsp_deregister_feature, send suspend work cid(0), fid(3), delay(100)\n[    1.703715]  (6)[332:kworker/6:3]adsp_core0_resume(), done elapse 0 us\n[    1.704730]  (6)[332:kworker/6:3][CH3_DBG] bat_cur = -2752\n[    1.706232]  (6)[332:kworker/6:3]mtk_bif_is_hw_exist: do not have bif driver\n[    1.706268]  (6)[332:kworker/6:3]gm.battery_id :0.\n[    1.706528]  (0)[1:swapper/0]adsp_core_mem_initall task_scene[19] core_id[0] dsp_type[2]\n[    1.706703]  (0)[1:swapper/0]adsp_core_mem_initall get gen_pool_alloc size used\n[    1.706709]  (0)[1:swapper/0]adsp_core_mem_initall task_scene[20] core_id[0] dsp_type[2]\n[    1.706886]  (0)[1:swapper/0]_adsp_deregister_feature, send suspend work cid(0), fid(3), delay(100)\n[    1.707581]  (0)[1:swapper/0]mtk_dloffload_probe: dev name mt_soc_offload_common\n[    1.707993]  (0)[1:swapper/0][ccci1/shm]phy address: 0x8d400000, \n[    1.708002]  (0)[1:swapper/0][ccci1/shm]0x60000\n[    1.708062]  (0)[1:swapper/0]adsp_core0_resume(), done elapse 0 us\n[    1.708229]  (6)[127:chgdet_thread]_adsp_deregister_feature, send suspend work cid(0), fid(14), delay(100)\n[    1.719693]  (6)[127:chgdet_thread]chgdet_task_threadfn get tcpc device type_c_port0 fail\n[    1.726153]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_afe_runtime_resume()\n[    1.726163]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_afe_enable_clock()\n[    1.726601]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: No cache defaults, reading back from HW\n[    1.727540]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_afe_runtime_suspend()\n[    1.727554]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_afe_disable_clock()\n[    1.729167]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_afe_gpio_init(), pinctrl_lookup_state aud_gpio_i2s1_off fail, ret -19\n[    1.729176]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_afe_gpio_init(), pinctrl_lookup_state aud_gpio_i2s1_on fail, ret -19\n[    1.729184]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_afe_gpio_init(), pinctrl_lookup_state aud_gpio_i2s2_off fail, ret -19\n[    1.729192]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_afe_gpio_init(), pinctrl_lookup_state aud_gpio_i2s2_on fail, ret -19\n[    1.729202]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_afe_gpio_init(), pinctrl_lookup_state aud_gpio_i2s5_off fail, ret -19\n[    1.729209]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_afe_gpio_init(), pinctrl_lookup_state aud_gpio_i2s5_on fail, ret -19\n[    1.729493]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_audio_sram_init(), size 98304, block_size 4096, block_num 24, virt_addr 00000000c361a919, phys_addr 0x0000000011212000\n[    1.729502]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_audio_sram_init(), prefer_mode 0, mode_size[0] 0x12000, mode_size[1] 0x18000\n[    1.729910]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_dai_adda_register()\n[    1.729920]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_dai_i2s_register()\n[    1.729936]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_dai_hw_gain_register()\n[    1.729943]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_dai_src_register()\n[    1.729950]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_dai_pcm_register()\n[    1.729956]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_dai_tdm_register()\n[    1.729963]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_dai_hostless_register()\n[    1.729970]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_combine_sub_dai(), num of dai 54\n[    1.730085]  (0)[1:swapper/0]BOOTPROF:      1730.081926:probe: probe=platform_drv_probe drv=mt6853-audio(0xffffff8289d39128)    19.314462ms\n[    1.730626]  (0)[1:swapper/0]BOOTPROF:      1730.623388:initcall: mt6853_afe_pcm_driver_init    21.686462ms\n[    1.731074]  (0)[1:swapper/0]mt6853-mt6359 sound: mtk_spk_update_info(), mtk_spk_i2s_mck no use\n[    1.731093]  (0)[1:swapper/0]mt6853-mt6359 sound: mtk_spk_update_info(), mtk_spk_type 0, spk_out_dai_link_idx 35, spk_out_dai_link_idx 34, mck: -1\n[    1.750139]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_src_en_connect(), source HW_SRC_1_Enable, sink HW_SRC_1_Out, dl_rate 0, ul_rate 0\n[    1.750151]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_src_en_connect(), source HW_SRC_1_Enable, sink HW_SRC_1_In, dl_rate 0, ul_rate 0\n[    1.750158]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_src_en_connect(), source HW_SRC_2_Enable, sink HW_SRC_2_Out, dl_rate 0, ul_rate 0\n[    1.750165]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_src_en_connect(), source HW_SRC_2_Enable, sink HW_SRC_2_In, dl_rate 0, ul_rate 0\n[    1.751396]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_add_misc_control()\n[    1.754199]  (0)[1:swapper/0]mt6359-sound mt6359_snd: get_hp_current_calibrate_val(), efuse: 0\n[    1.757631]  (0)[1:swapper/0]mtk_dsp_probe\n[    1.758791]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Playback_1, memif_id : 0, size : 196608, ret : 0\n[    1.758800]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> DL1 mapping ok\n[    1.758947]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Playback_12, memif_id : 1, size : 196608, ret : 0\n[    1.758955]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> DL12 mapping ok\n[    1.759089]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Playback_2, memif_id : 2, size : 196608, ret : 0\n[    1.759096]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> DL2 mapping ok\n[    1.759239]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Playback_3, memif_id : 3, size : 196608, ret : 0\n[    1.759245]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> DL3 mapping ok\n[    1.759374]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Playback_4, memif_id : 4, size : 196608, ret : 0\n[    1.759381]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> DL4 mapping ok\n[    1.759510]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Playback_5, memif_id : 5, size : 196608, ret : 0\n[    1.759517]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> DL5 mapping ok\n[    1.759743]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Playback_6, memif_id : 6, size : 196608, ret : 0\n[    1.759751]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> DL6 mapping ok\n[    1.759888]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Playback_7, memif_id : 7, size : 196608, ret : 0\n[    1.759895]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> DL7 mapping ok\n[    1.760022]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Playback_8, memif_id : 8, size : 196608, ret : 0\n[    1.760029]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> DL8 mapping ok\n[    1.760160]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Playback_9, memif_id : 9, size : 196608, ret : 0\n[    1.760167]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> DL9 mapping ok\n[    1.760296]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Capture_1, memif_id : 13, size : 196608, ret : 0\n[    1.760303]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> UL1 mapping ok\n[    1.760429]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Capture_2, memif_id : 19, size : 196608, ret : 0\n[    1.760436]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> UL2 mapping ok\n[    1.760564]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Capture_3, memif_id : 14, size : 196608, ret : 0\n[    1.760570]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> UL3 mapping ok\n[    1.760700]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Capture_4, memif_id : 20, size : 196608, ret : 0\n[    1.760706]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> UL4 mapping ok\n[    1.760837]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Capture_5, memif_id : 15, size : 196608, ret : 0\n[    1.760844]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> UL5 mapping ok\n[    1.760970]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Capture_6, memif_id : 16, size : 196608, ret : 0\n[    1.760977]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> UL6 mapping ok\n[    1.761113]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Capture_7, memif_id : 17, size : 196608, ret : 0\n[    1.761120]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> UL7 mapping ok\n[    1.761251]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Capture_8, memif_id : 18, size : 196608, ret : 0\n[    1.761258]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> UL8 mapping ok\n[    1.761387]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Capture_Mono_1, memif_id : 12, size : 196608, ret : 0\n[    1.761394]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> UL_MONO_1 mapping ok\n[    1.761525]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Capture_Mono_2, memif_id : 10, size : 196608, ret : 0\n[    1.761531]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> UL_MONO_2 mapping ok\n[    1.761661]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Capture_Mono_3, memif_id : 11, size : 196608, ret : 0\n[    1.761668]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> UL_MONO_3 mapping ok\n[    1.761794]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Playback_HDMI, memif_id : 21, size : 196608, ret : 0\n[    1.761801]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> HDMI mapping ok\n[    1.761901]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Hostless_LPBK, memif_id : 40, size : 0, ret : 0\n[    1.761908]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> Hostless LPBK DAI mapping ok\n[    1.762002]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Hostless_FM, memif_id : 41, size : 0, ret : 0\n[    1.762009]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> Hostless FM DAI mapping ok\n[    1.762103]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Hostless_Speech, memif_id : 44, size : 0, ret : 0\n[    1.762109]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> Hostless Speech DAI mapping ok\n[    1.762202]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Hostless_Sph_Echo_Ref, memif_id : 45, size : 0, ret : 0\n[    1.762209]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> Hostless_Sph_Echo_Ref_DAI mapping ok\n[    1.762301]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Hostless_Spk_Init, memif_id : 46, size : 0, ret : 0\n[    1.762308]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> Hostless_Spk_Init_DAI mapping ok\n[    1.762376]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Hostless_ADDA_DL_I2S_OUT, memif_id : 47, size : 0, ret : 0\n[    1.762382]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> Hostless_ADDA_DL_I2S_OUT DAI mapping ok\n[    1.762479]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Hostless_SRC_1, memif_id : 48, size : 0, ret : 0\n[    1.762486]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> Hostless_SRC_1_DAI mapping ok\n[    1.762591]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Hostless_SRC_Bargein, memif_id : 49, size : 0, ret : 0\n[    1.762598]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> Hostless_SRC_Bargein_DAI mapping ok\n[    1.762605]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_mt6359_mtkaif_calibration(), start\n[    1.762615]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_afe_runtime_resume()\n[    1.762620]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_afe_enable_clock()\n[    1.763643]  (0)[72:kworker/0:1]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_afe_runtime_suspend()\n[    1.763659]  (0)[72:kworker/0:1]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_afe_disable_clock()\n[    1.763820]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mt6853_mt6359_mtkaif_calibration(), mtkaif_chosen_phase[0/1/2]:2/1/2\n[    1.763874]  (0)[1:swapper/0]mt6853-mt6359 sound: mt6359-snd-codec-aif1 <-> ADDA mapping ok\n[    1.763920]  (0)[1:swapper/0]mt6853-mt6359 sound: mt6359-snd-codec-aif2 <-> ADDA_CH34 mapping ok\n[    1.763952]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> AP_DMIC mapping ok\n[    1.763984]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> AP_DMIC_CH34 mapping ok\n[    1.764022]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> I2S3 mapping ok\n[    1.764054]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> I2S0 mapping ok\n[    1.764088]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> I2S1 mapping ok\n[    1.764121]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> I2S2 mapping ok\n[    1.764153]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> I2S5 mapping ok\n[    1.764192]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> HW Gain 1 mapping ok\n[    1.764228]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> HW Gain 2 mapping ok\n[    1.764266]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> HW_SRC_1 mapping ok\n[    1.764304]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> HW_SRC_2 mapping ok\n[    1.764336]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> CONNSYS_I2S mapping ok\n[    1.764380]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> PCM 1 mapping ok\n[    1.764416]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> PCM 2 mapping ok\n[    1.764447]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> TDM mapping ok\n[    1.764481]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> Hostless_UL1 DAI mapping ok\n[    1.764512]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> Hostless_UL2 DAI mapping ok\n[    1.764546]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> Hostless_UL3 DAI mapping ok\n[    1.764583]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> Hostless_UL6 DAI mapping ok\n[    1.764616]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> Hostless_DSP_DL DAI mapping ok\n[    1.764693]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Hostless_HW_Gain_AAudio, memif_id : 42, size : 0, ret : 0\n[    1.764699]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> Hostless HW Gain AAudio DAI mapping ok\n[    1.764800]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : Hostless_SRC_AAudio, memif_id : 43, size : 0, ret : 0\n[    1.764807]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> Hostless SRC AAudio DAI mapping ok\n[    1.764892]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> snd-soc-dummy-dai mapping ok\n[    1.764936]  (0)[1:swapper/0]compress asoc: snd-soc-dummy-dai <-> audio_task_offload_dai mapping ok\n[    1.764989]  (0)[1:swapper/0]mtk_dsp_pcm_new()\n[    1.764996]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> audio_task_voip_dai mapping ok\n[    1.765048]  (0)[1:swapper/0]mtk_dsp_pcm_new()\n[    1.765054]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> audio_task_primary_dai mapping ok\n[    1.765113]  (0)[1:swapper/0]mtk_dsp_pcm_new()\n[    1.765120]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> audio_task_deepbuf_dai mapping ok\n[    1.765172]  (0)[1:swapper/0]mtk_dsp_pcm_new()\n[    1.765179]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> audio_task_Playback_dai mapping ok\n[    1.765234]  (0)[1:swapper/0]mtk_dsp_pcm_new()\n[    1.765241]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> audio_task_capture_ul1_dai mapping ok\n[    1.765297]  (0)[1:swapper/0]mtk_dsp_pcm_new()\n[    1.765303]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> audio_task_call_final_dai mapping ok\n[    1.765356]  (0)[1:swapper/0]mtk_dsp_pcm_new()\n[    1.765362]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> audio_task_fast_dai mapping ok\n[    1.765414]  (0)[1:swapper/0]mtk_dsp_pcm_new()\n[    1.765421]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> audio_task_ktv_dai mapping ok\n[    1.765473]  (0)[1:swapper/0]mtk_dsp_pcm_new()\n[    1.765480]  (0)[1:swapper/0]mt6853-mt6359 sound: snd-soc-dummy-dai <-> audio_task_a2dp_dai mapping ok\n[    1.765600]  (0)[1:swapper/0]mt6853-audio 11210000.mt6853-afe-pcm: mtk_afe_pcm_new(), dai_link_name : VOW_Capture, memif_id : 0, size : 196608, ret : 0\n[    1.765607]  (0)[1:swapper/0]mt6853-mt6359 sound: mt6359-snd-codec-vow <-> snd-soc-dummy-dai mapping ok\n[    1.768938]  (0)[1:swapper/0]mt6359-sound mt6359_snd: mt_vow_digital_cfg_event(), event 0x4\n[    1.769192]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_trim_offset(), Start DCtrim Calibrating\n[    1.769202]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_trim_offset(), initial MT6359_AUDDEC_ANA_CON3 = 0x0\n[    1.769208]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_trim_offset(), before trim_code R:(0x0/0x0), L:(0x0/0x0)\n[    1.769224]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: calculate_lr_trim_code(), Start DCtrim Calibrating\n[    1.769233]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: calculate_lr_trim_code(), initial MT6359_AUDDEC_ANA_CON2 = 0x8000\n[    1.769251]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: calculate_lr_trim_code(), initial MT6359_AUDDEC_ANA_CON3 = 0x0\n[    1.771921]  (0)[1:swapper/0]BOOTPROF:      1771.916926:probe: probe=platform_drv_probe drv=mt6853-mt6359(0xffffff8289d46b98)    40.837538ms\n[    1.772474]  (0)[1:swapper/0]BOOTPROF:      1772.471465:initcall: mt6853_mt6359_driver_init    41.830154ms\n[    1.772617]  (0)[1:swapper/0]u32 classifier\n[    1.772622]  (0)[1:swapper/0]    Performance counters on\n[    1.772626]  (0)[1:swapper/0]    Actions configured\n[    1.772638]  (0)[1:swapper/0]Netfilter messages via NETLINK v0.30.\n[    1.772791]  (0)[1:swapper/0]nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    1.772917]  (0)[1:swapper/0]ctnetlink v0.93: registering with nfnetlink.\n[    1.773150]  (0)[1:swapper/0]xt_time: kernel timezone is -0000\n[    1.773259]  (0)[1:swapper/0]gre: GRE over IPv4 demultiplexor driver\n[    1.773264]  (0)[1:swapper/0]IPv4 over IPsec tunneling driver\n[    1.773657]  (0)[1:swapper/0]ip_tables: (C) 2000-2006 Netfilter Core Team\n[    1.774186]  (0)[1:swapper/0]arp_tables: arp_tables: (C) 2002 David S. Miller\n[    1.774321]  (0)[1:swapper/0]Initializing XFRM netlink socket\n[    1.774342]  (0)[1:swapper/0]IPsec XFRM device driver\n[    1.774623]  (0)[1:swapper/0]NET: Registered protocol family 10\n[    1.777038]  (0)[1:swapper/0]Segment Routing with IPv6\n[    1.777129]  (0)[1:swapper/0]mip6: Mobile IPv6\n[    1.777175]  (0)[1:swapper/0]ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    1.777929]  (0)[1:swapper/0]sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    1.778651]  (0)[1:swapper/0]NET: Registered protocol family 17\n[    1.778675]  (0)[1:swapper/0]NET: Registered protocol family 15\n[    1.778708]  (0)[1:swapper/0]bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.\n[    1.778743]  (0)[1:swapper/0]l2tp_core: L2TP core driver, V2.0\n[    1.778753]  (0)[1:swapper/0]l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    1.778758]  (0)[1:swapper/0]8021q: 802.1Q VLAN Support v1.8\n[    1.778781]  (0)[1:swapper/0]mt6360_init (2.0.2_MTK)\n[    1.779069]  (0)[1:swapper/0]mt6360_init usb_type_c node found\n[    1.779166]  (0)[1:swapper/0]mt6360_i2c_probe\n[    1.779172]  (0)[1:swapper/0]mt6360_i2c_probe I2C functionality : ok\n[    1.779662]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[    1.779668]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: start_trim_hardware(), ++\n[    1.779776]  (6)[126:pd_dbg_info]///PD dbg info 97d\n[    1.779779]  (6)[126:pd_dbg_info]<    1.779>0\n               <    1.779>pd_dbg_info : t2-t1 = 15\n               <    1.779>1\n               <    1.779>pd_dbg_info : t2-t1 = 1\n[    1.779803]  (0)[1:swapper/0]0\n[    1.779808]  (0)[1:swapper/0]pr_info : t2-t1 = 5\n[    1.779811]  (0)[1:swapper/0]1\n[    1.779815]  (0)[1:swapper/0]pr_info : t2-t1 = 3\n[    1.779818]  (0)[1:swapper/0]2\n[    1.779822]  (0)[1:swapper/0]pr_info : t2-t1 = 3\n[    1.779825]  (0)[1:swapper/0]3\n[    1.779828]  (0)[1:swapper/0]pr_info : t2-t1 = 3\n[    1.779832]  (0)[1:swapper/0]4\n[    1.779835]  (0)[1:swapper/0]pr_info : t2-t1 = 3\n[    1.779838]  (0)[1:swapper/0]5\n[    1.779841]  (0)[1:swapper/0]pr_info : t2-t1 = 3\n[    1.779845]  (0)[1:swapper/0]6\n[    1.779848]  (0)[1:swapper/0]pr_info : t2-t1 = 3\n[    1.779851]  (0)[1:swapper/0]7\n[    1.779854]  (0)[1:swapper/0]pr_info : t2-t1 = 3\n[    1.779858]  (0)[1:swapper/0]8\n[    1.779861]  (0)[1:swapper/0]pr_info : t2-t1 = 3\n[    1.779864]  (0)[1:swapper/0]9\n[    1.779867]  (0)[1:swapper/0]pr_info : t2-t1 = 3\n[    1.779873]  (0)[1:swapper/0]mt6360_parse_dt\n[    1.780569]  (0)[1:swapper/0]usb_type_c 5-004e: mt6360_i2c_probe chipID = 0x3493\n[    1.780578]  (0)[1:swapper/0]regmap_device_register: name = mt6360-4e\n[    1.780611]  (0)[1:swapper/0] rt_regmap_mt6360-4e: rt register cache data init\n[    1.780626]  (0)[1:swapper/0] rt_regmap_mt6360-4e: cache cata init successfully\n[    1.780715]  (0)[1:swapper/0]tcpc_device_register register tcpc device (type_c_port0)\n[    1.780797]  (0)[1:swapper/0]PD Timer number = 58\n[    1.780902]  (0)[1:swapper/0]tcpci_timer_init : init OK\n[    1.780907]  (0)[1:swapper/0]pd_parse_pdata\n[    1.780915]  (0)[1:swapper/0]pd_parse_pdata src pdo data =\n[    1.780920]  (0)[1:swapper/0]pd_parse_pdata 0: 0x00019096\n[    1.780925]  (0)[1:swapper/0]pd_parse_pdata snk pdo data =\n[    1.780929]  (0)[1:swapper/0]pd_parse_pdata 0: 0x000190c8\n[    1.780933]  (0)[1:swapper/0]pd_parse_pdata 1: 0x000190c8\n[    1.780939]  (0)[1:swapper/0]pd_parse_pdata id vdos data =\n[    1.780943]  (0)[1:swapper/0]pd_parse_pdata 0: 0xd00029cf\n[    1.780947]  (0)[1:swapper/0]pd_parse_pdata 1: 0x00000000\n[    1.780951]  (0)[1:swapper/0]pd_parse_pdata 2: 0x00010000\n[    1.780955]  (0)[1:swapper/0]pd_parse_pdata charging_policy = 33\n[    1.780960]  (0)[1:swapper/0]pd_parse_pdata_bats get pd bat NR fail\n[    1.780964]  (0)[1:swapper/0]pd_parse_pdata_countries get country nr fail\n[    1.780969]  (0)[1:swapper/0]pd_parse_pdata_src_cap_ext get source-cap-ext fail\n[    1.780973]  (0)[1:swapper/0]pd_parse_pdata_mfrs get pd vid fail\n[    1.780977]  (0)[1:swapper/0]pd_parse_pdata_mfrs get pd pid fail\n[    1.780981]  (0)[1:swapper/0]pd_parse_pdata_mfrs VID = 0x29cf, PID = 0x1\n[    1.780985]  (0)[1:swapper/0]pd_parse_pdata_mfrs get pd mfrs fail\n[    1.780990]  (0)[1:swapper/0]pd_parse_pdata_mfrs PD mfrs_string = no_mfrs_string\n[    1.780994]  (0)[1:swapper/0]dpm_caps: local_dr_power\n[    1.780998]  (0)[1:swapper/0]dpm_caps: local_dr_data\n[    1.781003]  (0)[1:swapper/0]dpm_caps: local_ext_power\n[    1.781006]  (0)[1:swapper/0]dpm_caps: local_usb_comm\n[    1.781010]  (0)[1:swapper/0]dpm_caps: local_usb_suspend\n[    1.781014]  (0)[1:swapper/0]dpm_caps: local_high_cap\n[    1.781018]  (0)[1:swapper/0]dpm_caps: local_give_back\n[    1.781022]  (0)[1:swapper/0]dpm_caps: local_no_suspend\n[    1.781025]  (0)[1:swapper/0]dpm_caps: local_vconn_supply\n[    1.781029]  (0)[1:swapper/0]dpm_caps: attemp_discover_cable_dfp\n[    1.781033]  (0)[1:swapper/0]dpm_caps: attemp_enter_dp_mode\n[    1.781037]  (0)[1:swapper/0]dpm_caps: attemp_discover_cable\n[    1.781041]  (0)[1:swapper/0]dpm_caps: attemp_discover_id\n[    1.781045]  (0)[1:swapper/0]dpm_caps: pr_reject_as_source\n[    1.781049]  (0)[1:swapper/0]dpm_caps: pr_reject_as_sink\n[    1.781053]  (0)[1:swapper/0]dpm_caps: pr_check_gp_source\n[    1.781056]  (0)[1:swapper/0]dpm_caps: pr_check_gp_sink\n[    1.781060]  (0)[1:swapper/0]dpm_caps: dr_reject_as_dfp\n[    1.781064]  (0)[1:swapper/0]dpm_caps: dr_reject_as_ufp\n[    1.781068]  (0)[1:swapper/0]dpm_caps = 0x0000e18b\n[    1.781074]  (0)[1:swapper/0]dp, svid\r\n[    1.781078]  (0)[1:swapper/0]dp, ufp_np\n[    1.781083]  (0)[1:swapper/0]dp, dfp_np\n[    1.781091]  (0)[1:swapper/0]dp, 1st_connection\n[    1.781095]  (0)[1:swapper/0]dp, 2nd_connection\n[    1.781286]  (0)[1:swapper/0]usb_type_c 5-004e: mt6360_tcpcdev_init PD REV30\n[    1.784858]  (0)[1:swapper/0]usb_type_c 5-004e: mt6360_init_alert name = type_c_port0, gpio = 309\n[    1.784885]  (0)[1:swapper/0]usb_type_c 5-004e: mt6360_init_alert IRQ number = 35\n[    1.785019]  (0)[1:swapper/0]usb_type_c 5-004e: mt6360_i2c_probe successfully!\n[    1.787205]  (0)[1:swapper/0]registered taskstats version 1\n[    1.802630]  (0)[1:swapper/0]BOOTPROF:      1802.627157:initcall: clk_debug_init    15.350693ms\n[    1.803000]  (0)[72:kworker/0:1]mtk_dsi_probe-5483:dsi = 000000009ebace6d, ddp_comp = 000000009ebace6d \n[    1.803118]  (0)[72:kworker/0:1]lcm_probe-\n[    1.803223]  (0)[72:kworker/0:1]lcm_probe-\n[    1.804364]  (0)[72:kworker/0:1]mediatek-drm 14000000.dispsys_config: bound 14005000.disp_ovl0 (ops 0xffffff82892ef680)\n[    1.804377]  (0)[72:kworker/0:1]mediatek-drm 14000000.dispsys_config: bound 14006000.disp_ovl0_2l (ops 0xffffff82892ef680)\n[    1.804390]  (0)[72:kworker/0:1]mediatek-drm 14000000.dispsys_config: bound 14007000.disp_rdma0 (ops 0xffffff82892eff68)\n[    1.804395]  (0)[72:kworker/0:1]mtk_disp_rsz_bind\n[    1.804403]  (0)[72:kworker/0:1]mediatek-drm 14000000.dispsys_config: bound 14008000.disp_rsz0 (ops 0xffffff82892f03f0)\n[    1.804412]  (0)[72:kworker/0:1]mediatek-drm 14000000.dispsys_config: bound 14009000.disp_color0 (ops 0xffffff82892edcd8)\n[    1.804423]  (0)[72:kworker/0:1]mediatek-drm 14000000.dispsys_config: bound 1400a000.disp_ccorr1 (ops 0xffffff82892ee250)\n[    1.804434]  (0)[72:kworker/0:1]mediatek-drm 14000000.dispsys_config: bound 1400b000.disp_ccorr0 (ops 0xffffff82892ee250)\n[    1.804443]  (0)[72:kworker/0:1]mediatek-drm 14000000.dispsys_config: bound 1400c000.disp_aal0 (ops 0xffffff82892eeb68)\n[    1.804453]  (0)[72:kworker/0:1]mediatek-drm 14000000.dispsys_config: bound 1400d000.disp_gamma0 (ops 0xffffff82892ee790)\n[    1.804464]  (0)[72:kworker/0:1]mediatek-drm 14000000.dispsys_config: bound 1400e000.disp_postmask0 (ops 0xffffff82892f6238)\n[    1.804475]  (0)[72:kworker/0:1]mediatek-drm 14000000.dispsys_config: bound 1400f000.disp_dither0 (ops 0xffffff82892ef050)\n[    1.804485]  (0)[72:kworker/0:1]mediatek-drm 14000000.dispsys_config: bound 14012000.disp_dsc_wrap (ops 0xffffff82892f6648)\n[    1.804506]  (0)[72:kworker/0:1]mtk_dsi_create_conn_enc init mtk ealry resume resources\n[    1.804517]  (0)[72:kworker/0:1]mediatek-drm 14000000.dispsys_config: bound 14013000.dsi (ops 0xffffff82892f4b58)\n[    1.804528]  (0)[72:kworker/0:1]mediatek-drm 14000000.dispsys_config: bound 14014000.disp_wdma0 (ops 0xffffff82892f0ac8)\n[    1.804534]  (0)[72:kworker/0:1]mtk_drm_crtc_create+\n[    1.804756]  (0)[72:kworker/0:1][drm] mtk_crtc_init_gce_obj(), CLIENT_CFG, 0\n[    1.804949]  (0)[72:kworker/0:1][drm] mtk_crtc_init_gce_obj(), CLIENT_TRIG_LOOP, 0\n[    1.805148]  (0)[72:kworker/0:1][drm] mtk_crtc_init_gce_obj(), CLIENT_SODI_LOOP, 0\n[    1.805347]  (0)[72:kworker/0:1][drm] mtk_crtc_init_gce_obj(), CLIENT_SUB_CFG, 0\n[    1.805573]  (0)[72:kworker/0:1][drm] mtk_crtc_init_gce_obj(), CLIENT_DSI_CFG, 0\n[    1.805801]  (0)[72:kworker/0:1][drm] mtk_crtc_init_gce_obj(), CLIENT_SEC_CFG, 0\n[    1.809704]  (0)[72:kworker/0:1]create ESD thread\n[    1.810427]  (0)[72:kworker/0:1]mtk_drm_crtc_create-CRTC0 create successfully\n[    1.810436]  (0)[72:kworker/0:1]mtk_drm_crtc_create+\n[    1.810549]  (0)[72:kworker/0:1][drm] mtk_crtc_init_gce_obj(), CLIENT_CFG, 1\n[    1.810702]  (0)[72:kworker/0:1][drm] mtk_crtc_init_gce_obj(), CLIENT_TRIG_LOOP, 1\n[    1.810711]  (0)[72:kworker/0:1][drm] mtk_crtc_init_gce_obj(), CLIENT_SODI_LOOP, 1\n[    1.810717]  (0)[72:kworker/0:1][drm] mtk_crtc_init_gce_obj(), CLIENT_SUB_CFG, 1\n[    1.810723]  (0)[72:kworker/0:1][drm] mtk_crtc_init_gce_obj(), CLIENT_DSI_CFG, 1\n[    1.810729]  (0)[72:kworker/0:1][drm] mtk_crtc_init_gce_obj(), CLIENT_SEC_CFG, 1\n[    1.810740]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_wdma0_eof @cmdq_dev_get_event,369\n[    1.810749]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_mutex1_eof @cmdq_dev_get_event,369\n[    1.810756]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_token_stream_eof1 @cmdq_dev_get_event,369\n[    1.810764]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_token_stream_dirty1 @cmdq_dev_get_event,369\n[    1.810771]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_token_sodi1 @cmdq_dev_get_event,369\n[    1.810779]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_wait_wdma0_te @cmdq_dev_get_event,369\n[    1.810786]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_token_esd_eof1 @cmdq_dev_get_event,369\n[    1.810793]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_rdma0_eof1 @cmdq_dev_get_event,369\n[    1.810800]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_wdma0_eof1 @cmdq_dev_get_event,369\n[    1.810808]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_token_stream_block1 @cmdq_dev_get_event,369\n[    1.810814]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_token_cabc_eof1 @cmdq_dev_get_event,369\n[    1.810821]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_dsi0_sof1 @cmdq_dev_get_event,369\n[    1.811381]  (0)[72:kworker/0:1]mtk_drm_crtc_create-CRTC1 create successfully\n[    1.811389]  (0)[72:kworker/0:1]mtk_drm_crtc_create+\n[    1.811490]  (0)[72:kworker/0:1][drm] mtk_crtc_init_gce_obj(), CLIENT_CFG, 2\n[    1.811654]  (0)[72:kworker/0:1][drm] mtk_crtc_init_gce_obj(), CLIENT_TRIG_LOOP, 2\n[    1.811663]  (0)[72:kworker/0:1][drm] mtk_crtc_init_gce_obj(), CLIENT_SODI_LOOP, 2\n[    1.811669]  (0)[72:kworker/0:1][drm] mtk_crtc_init_gce_obj(), CLIENT_SUB_CFG, 2\n[    1.811675]  (0)[72:kworker/0:1][drm] mtk_crtc_init_gce_obj(), CLIENT_DSI_CFG, 2\n[    1.811681]  (0)[72:kworker/0:1][drm] mtk_crtc_init_gce_obj(), CLIENT_SEC_CFG, 2\n[    1.811690]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_wdma0_eof @cmdq_dev_get_event,369\n[    1.811699]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_mutex2_eof @cmdq_dev_get_event,369\n[    1.811707]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_token_stream_eof2 @cmdq_dev_get_event,369\n[    1.811714]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_token_stream_dirty2 @cmdq_dev_get_event,369\n[    1.811721]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_token_sodi2 @cmdq_dev_get_event,369\n[    1.811729]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_wait_wdma0_te @cmdq_dev_get_event,369\n[    1.811736]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_token_esd_eof2 @cmdq_dev_get_event,369\n[    1.811743]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_rdma0_eof2 @cmdq_dev_get_event,369\n[    1.811973]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_token_stream_block2 @cmdq_dev_get_event,369\n[    1.811980]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_token_cabc_eof2 @cmdq_dev_get_event,369\n[    1.811987]  (0)[72:kworker/0:1][cmdq][err] no gce-event-names property or no such event:disp_dsi0_sof2 @cmdq_dev_get_event,369\n[    1.812524]  (0)[72:kworker/0:1]mtk_drm_crtc_create-CRTC2 create successfully\n[    1.812638]  (0)[72:kworker/0:1][drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    1.812643]  (0)[72:kworker/0:1][drm] Driver supports precise vblank timestamp query.\n[    1.812692]  (0)[72:kworker/0:1]mtk_fbdev_init+\n[    1.812749]  (0)[72:kworker/0:1]mtk_fbdev_probe+\n[    1.814317]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: start_trim_hardware(), --\n[    1.814341]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get on_valueL\n[    1.819691]  (7)[126:pd_dbg_info]///PD dbg info 518d\n[    1.819696]  (7)[126:pd_dbg_info]<    1.779>2\n               <    1.779>pd_dbg_info : t2-t1 = 3\n               <    1.779>3\n               <    1.779>pd_dbg_info : t2-t1 = 1\n               <    1.779>4\n               <    1.779>pd_dbg_i\n[    1.819700]  (7)[126:pd_dbg_info]nfo : t2-t1 = 1\n               <    1.779>5\n               <    1.779>pd_dbg_info : t2-t1 = 1\n               <    1.779>6\n               <    1.779>pd_dbg_info : t2-t1 = 1\n               <    1.779>7\n               <  \n[    1.819702]  (7)[126:pd_dbg_info]  1.779>pd_dbg_info : t2-t1 = 1\n               <    1.779>8\n               <    1.779>pd_dbg_info : t2-t1 = 1\n               <    1.779>9\n               <    1.779>pd_dbg_info : t2-t1 = 1\n[    1.819707]  (7)[126:pd_dbg_info]<    1.781>TCPC-PE:pd_core_init\r\n               <    1.785>mt6360_water_calibration() line-1948: mt6360_water_calibration not to calibrate, use\n[    1.819708]  (7)[126:pd_dbg_info] 1.8V\n[    1.820622]  (0)[72:kworker/0:1][drm:mtk_drm_gem_create] cookie = 0000000054892a11 dma_addr = 0x00000000fddb2000 size = 5054464\n[    1.820632]  (0)[72:kworker/0:1]mtk_fbdev_probe-\n[    1.820745]  (0)[72:kworker/0:1]mediatek-drm 14000000.dispsys_config: fb0:  frame buffer device\n[    1.820832]  (0)[72:kworker/0:1]mtk_fbdev_init-\n[    1.820842]  (0)[72:kworker/0:1][fps]: drm_invoke_fps_chg_callbacks,new_fps =60\n[    1.820873]  (0)[72:kworker/0:1]width:1080, height:2340\n[    1.822589]  (0)[72:kworker/0:1]CRTC0 hold wakelock mtk_drm_crtc_first_enable 3840\n[    1.822744]  (0)[72:kworker/0:1][drm:mtk_drm_gem_create] cookie = 00000000eb9deffb dma_addr = 0x00000000fddb1000 size = 4096\n[    1.823294]  (0)[72:kworker/0:1][disp_aal]disp_aal_get_cust_led mode=4\n[    1.836155]  (0)[72:kworker/0:1][drm] Initialized mediatek 1.0.0 20150513 for 14000000.dispsys_config on minor 0\n[    1.838623]  (0)[72:kworker/0:1]BOOTPROF:      1838.620696:probe: probe=platform_drv_probe drv=mtk-dsi(0xffffff8289c07f28)    35.622770ms\n[    1.839016]  (0)[72:kworker/0:1]mtk_pd_adapter_probe\n[    1.839022]  (0)[72:kworker/0:1]adapter_parse_dt\n[    1.839028]  (0)[72:kworker/0:1]adapter_device_register: name=pd_adapter\n[    1.839152]  (0)[1:swapper/0]BOOTPROF:      1839.149849:initcall: deferred_probe_initcall    36.419153ms\n[    1.839163]  (0)[1:swapper/0][Power/cpufreq] @@~ _mt_cpufreq_pdrv_init DVFS state = 1\n[    1.839440]  (0)[1:swapper/0][Power/cpufreq] cluster_id = 0, cluster_cpuid = 0\n[    1.839445]  (0)[1:swapper/0][Power/cpufreq] cluster_id = 1, cluster_cpuid = 6\n[    1.839681]  (7)[127:chgdet_thread]chgdet_task_threadfn: get tcpc and charger consumer done\n[    1.839685]  (7)[127:chgdet_thread]chgdet_task_threadfn: ++\n[    1.840010]  (0)[1:swapper/0][Power/cpufreq] mediatek/cannon-mt6853-overlay mediatek/k6853v1_64_6360 4, 0, Settle time(1250, 500) efuse_val = 0x20 0xda572499\n[    1.840310]  (0)[1:swapper/0][Power/cpufreq] @@regulator map success!!\n[    1.840319]  (0)[1:swapper/0][Power/cpufreq] mediatek/cannon-mt6853-overlay mediatek/k6853v1_64_6360 4, 0, Settle time(1250, 500) efuse_val = 0x20 0xda572499\n[    1.840454] -(6)[346:dc_trim_thread]mt635x_auxadc_read_raw: 9 callbacks suppressed\n[    1.840463]  (6)[346:dc_trim_thread]mt635x-auxadc mt635x-auxadc: name:HPOFS_CAL, channel=9, adc_out=0x70db, adc_result=28891\n[    1.842487]  (0)[1:swapper/0][Power/cpufreq] mediatek/cannon-mt6853-overlay mediatek/k6853v1_64_6360 4, 0, Settle time(1250, 500) efuse_val = 0x20 0xda572499\n[    1.842688]  (0)[1:swapper/0][Power/cpufreq] mediatek/cannon-mt6853-overlay mediatek/k6853v1_64_6360 4, 0, Settle time(1250, 500) efuse_val = 0x20 0xda572499\n[    1.842851]  (0)[1:swapper/0][Power/PPM] DVFS table type = 4\n[    1.842854]  (0)[1:swapper/0][Power/PPM] DVFS table of cluster 0:\n[    1.842857]  (0)[1:swapper/0][Power/PPM] 0: 2000000 KHz\n[    1.842859]  (0)[1:swapper/0][Power/PPM] 1: 1916000 KHz\n[    1.842861]  (0)[1:swapper/0][Power/PPM] 2: 1812000 KHz\n[    1.842863]  (0)[1:swapper/0][Power/PPM] 3: 1750000 KHz\n[    1.842865]  (0)[1:swapper/0][Power/PPM] 4: 1645000 KHz\n[    1.842867]  (0)[1:swapper/0][Power/PPM] 5: 1500000 KHz\n[    1.842868]  (0)[1:swapper/0][Power/PPM] 6: 1393000 KHz\n[    1.842870]  (0)[1:swapper/0][Power/PPM] 7: 1287000 KHz\n[    1.842872]  (0)[1:swapper/0][Power/PPM] 8: 1128000 KHz\n[    1.842874]  (0)[1:swapper/0][Power/PPM] 9: 1048000 KHz\n[    1.842876]  (0)[1:swapper/0][Power/PPM] 10: 968000 KHz\n[    1.842878]  (0)[1:swapper/0][Power/PPM] 11: 862000 KHz\n[    1.842880]  (0)[1:swapper/0][Power/PPM] 12: 756000 KHz\n[    1.842882]  (0)[1:swapper/0][Power/PPM] 13: 703000 KHz\n[    1.842884]  (0)[1:swapper/0][Power/PPM] 14: 650000 KHz\n[    1.842886]  (0)[1:swapper/0][Power/PPM] 15: 500000 KHz\n[    1.842889]  (0)[1:swapper/0][Power/PPM] DVFS table type = 4\n[    1.842891]  (0)[1:swapper/0][Power/PPM] DVFS table of cluster 1:\n[    1.842893]  (0)[1:swapper/0][Power/PPM] 0: 2400000 KHz\n[    1.842895]  (0)[1:swapper/0][Power/PPM] 1: 2306000 KHz\n[    1.842897]  (0)[1:swapper/0][Power/PPM] 2: 2210000 KHz\n[    1.842899]  (0)[1:swapper/0][Power/PPM] 3: 2118000 KHz\n[    1.842901]  (0)[1:swapper/0][Power/PPM] 4: 1993000 KHz\n[    1.842902]  (0)[1:swapper/0][Power/PPM] 5: 1837000 KHz\n[    1.842904]  (0)[1:swapper/0][Power/PPM] 6: 1650000 KHz\n[    1.842906]  (0)[1:swapper/0][Power/PPM] 7: 1534000 KHz\n[    1.842908]  (0)[1:swapper/0][Power/PPM] 8: 1418000 KHz\n[    1.842910]  (0)[1:swapper/0][Power/PPM] 9: 1274000 KHz\n[    1.842912]  (0)[1:swapper/0][Power/PPM] 10: 1129000 KHz\n[    1.842914]  (0)[1:swapper/0][Power/PPM] 11: 1042000 KHz\n[    1.842916]  (0)[1:swapper/0][Power/PPM] 12: 985000 KHz\n[    1.842918]  (0)[1:swapper/0][Power/PPM] 13: 898000 KHz\n[    1.842920]  (0)[1:swapper/0][Power/PPM] 14: 840000 KHz\n[    1.842921]  (0)[1:swapper/0][Power/PPM] 15: 725000 KHz\n[    1.843067]  (6)[346:dc_trim_thread]mt635x-auxadc mt635x-auxadc: name:HPOFS_CAL, channel=9, adc_out=0x70e9, adc_result=28905\n[    1.844757] -(0)[1:swapper/0][CPU][EEM]eem init check restart, vboot_check_cnt:1\n[    1.844853] -(0)[1:swapper/0][CPU][EEM]eem init check restart, vboot_check_cnt:2\n[    1.844952] -(0)[1:swapper/0][CPU][EEM]eem init check restart, vboot_check_cnt:3\n[    1.845052] -(0)[1:swapper/0][CPU][EEM]eem init check restart, vboot_check_cnt:4\n[    1.845152] -(0)[1:swapper/0][CPU][EEM]eem init check restart, vboot_check_cnt:5\n[    1.845252] -(0)[1:swapper/0][CPU][EEM]eem init check restart, vboot_check_cnt:6\n[    1.845349] -(0)[1:swapper/0][CPU][EEM]eem init check restart, vboot_check_cnt:7\n[    1.845449] -(0)[1:swapper/0][CPU][EEM]eem init check restart, vboot_check_cnt:8\n[    1.845549] -(0)[1:swapper/0][CPU][EEM]eem init check restart, vboot_check_cnt:9\n[    1.845650] -(0)[1:swapper/0][CPU][EEM]eem init check disabled, cnt:9, done:1\n[    1.845657]  (6)[346:dc_trim_thread]mt635x-auxadc mt635x-auxadc: name:HPOFS_CAL, channel=9, adc_out=0x70e5, adc_result=28901\n[    1.845660]  (0)[1:swapper/0][xxxxEEMG] gpu_vb_volt:72500, efuse_val:4\n[    1.847450]  (0)[1:swapper/0][xxxxEEMG] det[0]->vmin = 28\n[    1.847455]  (0)[1:swapper/0][xxxxEEMG] det[1]->vmin = 28\n[    1.848173]  (7)[374:EEMG_CTRL_GPU][xxxxEEMG] cur_flag:0x1, g_flag:0x3\n[    1.848381]  (6)[346:dc_trim_thread]mt635x-auxadc mt635x-auxadc: name:HPOFS_CAL, channel=9, adc_out=0x70eb, adc_result=28907\n[    1.848386]  (7)[375:EEMG_CTRL_GPU_H][xxxxEEMG] cur_flag:0x3, g_flag:0x3\n[    1.849357]  (0)[1:swapper/0][Power/PPM] @ppm_lcmoff_policy_init: register PPM_POLICY_LCM_OFF done!\n[    1.849362]  (0)[1:swapper/0][Power/PPM] cobra_tbl: 000000000f12590e\n[    1.849389]  (0)[1:swapper/0][Power/PPM] COBRA init done!\n[    1.849402]  (0)[1:swapper/0][Power/PPM] (0x0)(-1)(0)(0-7)(15)(0)(6)(6) (15)(0)(2)(2) \n[    1.849408]  (0)[1:swapper/0][Power/PPM] power data init done!\n[    1.849609]  (0)[1:swapper/0][Power/dcm] weak function of dcm_pre_init\n[    1.849613]  (0)[1:swapper/0][Power/dcm] [dcm_set_default]type:0x00000187, init_dcm_type=0x187, INIT_DCM_TYPE_BY_K=0x0\n[    1.849616]  (0)[1:swapper/0][Power/dcm] [     ARMCORE_DCM 0x00000001] current state:1 (0)\n[    1.849619]  (0)[1:swapper/0][Power/dcm] [      MCUSYS_DCM 0x00000002] current state:1 (0)\n[    1.849622]  (0)[1:swapper/0][Power/dcm] [       INFRA_DCM 0x00000004] current state:1 (0)\n[    1.849654]  (0)[1:swapper/0][Power/dcm] [       STALL_DCM 0x00000080] current state:1 (0)\n[    1.849657]  (0)[1:swapper/0][Power/dcm] [    BIG_CORE_DCM 0x00000100] current state:1 (0)\n[    1.849659]  (0)[1:swapper/0][Power/dcm] \n               ******** dcm dump register *********\n[    1.849662]  (0)[1:swapper/0][Power/dcm] MP_CPUSYS_TOP_MP_ADB_DCM_CFG0 (0xffffff800ff1a500): 0x00020000\n[    1.849665]  (0)[1:swapper/0][Power/dcm] MP_CPUSYS_TOP_MP_ADB_DCM_CFG4 (0xffffff800ff1a510): 0x00278000\n[    1.849668]  (0)[1:swapper/0][Power/dcm] MP_CPUSYS_TOP_MCUSYS_DCM_CFG0 (0xffffff800ff1a5c0): 0x00078100\n[    1.849670]  (0)[1:swapper/0][Power/dcm] MP_CPUSYS_TOP_MP_MISC_DCM_CFG0(0xffffff800ff1a518): 0x0000003a\n[    1.849673]  (0)[1:swapper/0][Power/dcm] MP_CPUSYS_TOP_MCUSYS_DCM_CFG0 (0xffffff800ff1a5c0): 0x00078100\n[    1.849676]  (0)[1:swapper/0][Power/dcm] MP_CPUSYS_TOP_MP0_DCM_CFG0    (0xffffff800ff1c880): 0x0001000f\n[    1.849679]  (0)[1:swapper/0][Power/dcm] MP_CPUSYS_TOP_MCSIC_DCM0      (0xffffff800ff1a440): 0x0000ffff\n[    1.849682]  (0)[1:swapper/0][Power/dcm] MP_CPUSYS_TOP_BUS_PLLDIV_CFG  (0xffffff800ff1a2e0): 0x80100aff\n[    1.849684]  (0)[1:swapper/0][Power/dcm] MP_CPUSYS_TOP_MP_MISC_DCM_CFG0(0xffffff800ff1a518): 0x0000003a\n[    1.849687]  (0)[1:swapper/0][Power/dcm] MP_CPUSYS_TOP_MP_MISC_DCM_CFG0(0xffffff800ff1a518): 0x0000003a\n[    1.849690]  (0)[1:swapper/0][Power/dcm] MP_CPUSYS_TOP_MP0_DCM_CFG0    (0xffffff800ff1c880): 0x0001000f\n[    1.849692]  (0)[1:swapper/0][Power/dcm] CPCCFG_REG_EMI_WFIFO          (0xffffff800fe72900): 0x0000000f\n[    1.849695]  (0)[1:swapper/0][Power/dcm] MP_CPUSYS_TOP_BUS_PLLDIV_CFG  (0xffffff800ff1a2e0): 0x80100aff\n[    1.849698]  (0)[1:swapper/0][Power/dcm] MP_CPUSYS_TOP_CPU_PLLDIV_CFG0 (0xffffff800ff1a2a0): 0x00110aff\n[    1.849700]  (0)[1:swapper/0][Power/dcm] MP_CPUSYS_TOP_CPU_PLLDIV_CFG1 (0xffffff800ff1a2a4): 0x00110aff\n[    1.849703]  (0)[1:swapper/0][Power/dcm] MP_CPUSYS_TOP_MP0_DCM_CFG7    (0xffffff800ff1c89c): 0x00001011\n[    1.849705]  (0)[1:swapper/0][Power/dcm] MP_CPUSYS_TOP_MP0_DCM_CFG7    (0xffffff800ff1c89c): 0x00001011\n[    1.849708]  (0)[1:swapper/0][Power/dcm] INFRA_AXIMEM_IDLE_BIT_EN_0    (0xffffff800cfa5a30): 0x00030000\n[    1.849711]  (0)[1:swapper/0][Power/dcm] INFRA_BUS_DCM_CTRL            (0xffffff800cfa5070): 0x40f80603\n[    1.849714]  (0)[1:swapper/0][Power/dcm] MODULE_SW_CG_2_SET            (0xffffff800cfa50a4): 0x17fc2ed0\n[    1.849716]  (0)[1:swapper/0][Power/dcm] MODULE_SW_CG_2_CLR            (0xffffff800cfa50a8): 0x17fc2ed0\n[    1.849719]  (0)[1:swapper/0][Power/dcm] P2P_RX_CLK_ON                 (0xffffff800cfa50a0): 0x00000000\n[    1.849722]  (0)[1:swapper/0][Power/dcm] PERI_BUS_DCM_CTRL             (0xffffff800cfa5074): 0xa47f83e3\n[    1.849724]  (0)[1:swapper/0][Power/dcm] PERI_BUS_DCM_CTRL             (0xffffff800cfa5074): 0xa47f83e3\n[    1.849727]  (0)[1:swapper/0][Power/dcm] VDNR_DCM_TOP_INFRA_PAR_BUS_u_INFRA_PAR_BUS_CTRL_0(0xffffff800cfb5034): 0x10000003\n[    1.849730]  (0)[1:swapper/0][Power/dcm] VDNR_DCM_TOP_INFRA_PAR_BUS_u_INFRA_PAR_BUS_CTRL_1(0xffffff800cfb5038): 0x04880010\n[    1.849732]  (0)[1:swapper/0][Power/dcm] VDNR_DCM_TOP_INFRA_PAR_BUS_u_INFRA_PAR_BUS_CTRL_10(0xffffff800cfb505c): 0x02021010\n[    1.849735]  (0)[1:swapper/0][Power/dcm] VDNR_DCM_TOP_INFRA_PAR_BUS_u_INFRA_PAR_BUS_CTRL_1(0xffffff800cfb5038): 0x04880010\n[    1.849738]  (0)[1:swapper/0][Power/dcm] VDNR_DCM_TOP_INFRA_PAR_BUS_u_INFRA_PAR_BUS_CTRL_2(0xffffff800cfb503c): 0x00880010\n[    1.849740]  (0)[1:swapper/0][Power/dcm] VDNR_DCM_TOP_INFRA_PAR_BUS_u_INFRA_PAR_BUS_CTRL_10(0xffffff800cfb505c): 0x02021010\n[    1.849743]  (0)[1:swapper/0][Power/dcm] EMI_CONM                      (0xffffff800cfbd060): 0x007816ff\n[    1.849745]  (0)[1:swapper/0][Power/dcm] EMI_CONN                      (0xffffff800cfbd068): 0x00600000\n[    1.849748]  (0)[1:swapper/0][Power/dcm] EMI_THRO_CTRL0                (0xffffff800cfbd830): 0x0fc39a30\n[    1.849751]  (0)[1:swapper/0][Power/dcm] CHN0_EMI_CHN_EMI_CONB         (0xffffff800cfc5008): 0x00ff6048\n[    1.849753]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP0_DDRCOMMON0     (0xffffff800cfea000): 0x00080100\n[    1.849756]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP0_TEST2_A0       (0xffffff800cfea100): 0x000055aa\n[    1.849759]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP0_TEST2_A3       (0xffffff800cfea108): 0x12070021\n[    1.849762]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP0_DUMMY_RD       (0xffffff800cfea110): 0x09228010\n[    1.849764]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP0_SREF_DPD_CTRL  (0xffffff800cfea168): 0x00588780\n[    1.849767]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP0_ACTIMING_CTRL  (0xffffff800cfea190): 0x00200041\n[    1.849770]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP0_ZQ_SET0        (0xffffff800cfea1a0): 0x60000a56\n[    1.849772]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP0_TX_TRACKING_SET0(0xffffff800cfea1b0): 0x00080000\n[    1.849775]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP0_DRAMC_PD_CTRL  (0xffffff800cfea1fc): 0xc0000007\n[    1.849777]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP0_DCM_CTRL0      (0xffffff800cfea200): 0x00020000\n[    1.849780]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP0_DVFS_CTRL0     (0xffffff800cfea208): 0x00108620\n[    1.849783]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP0_CMD_DEC_CTRL0  (0xffffff800cfea21c): 0x00000100\n[    1.849786]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP0_TX_CG_SET0     (0xffffff800cfea23c): 0x18000000\n[    1.849788]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP0_RX_CG_SET0     (0xffffff800cfea244): 0x00000000\n[    1.849791]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP0_MISCTL0        (0xffffff800cfea250): 0x81084001\n[    1.849793]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP0_CLKAR          (0xffffff800cfea260): 0x01340000\n[    1.849796]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP0_SCSMCTRL_CG    (0xffffff800cfea288): 0x00000000\n[    1.849799]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP0_SHU_APHY_TX_PICG_CTRL(0xffffff800cfeb6ac): 0x80002333\n[    1.849801]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP5_MISC_CG_CTRL0  (0xffffff800cfcd4ec): 0x20000110\n[    1.849804]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP5_MISC_CG_CTRL2  (0xffffff800cfcd4f4): 0x80600bae\n[    1.849807]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP5_MISC_CG_CTRL5  (0xffffff800cfcd500): 0x00770000\n[    1.849809]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP5_MISC_DUTYSCAN1 (0xffffff800cfcd624): 0x00000800\n[    1.849812]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP5_MISC_CTRL3     (0xffffff800cfcd648): 0x11001100\n[    1.849815]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP5_MISC_CTRL4     (0xffffff800cfcd64c): 0x000001ff\n[    1.849817]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP5_MISC_RX_AUTOK_CFG0(0xffffff800cfcd670): 0x40fc0000\n[    1.849820]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP5_SHU_B0_DQ7     (0xffffff800cfcd884): 0x3500c000\n[    1.849822]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP5_SHU_B0_DQ8     (0xffffff800cfcd888): 0x01200100\n[    1.849825]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP5_SHU_B1_DQ7     (0xffffff800cfcda04): 0x3500c000\n[    1.849827]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP5_SHU_B1_DQ8     (0xffffff800cfcda08): 0x01200100\n[    1.849830]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP5_SHU_CA_CMD8    (0xffffff800cfcdb88): 0x00000000\n[    1.849833]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP5_MISC_SHU_RX_CG_CTRL(0xffffff800cfcdda0): 0x00020327\n[    1.849836]  (0)[1:swapper/0][Power/dcm] DRAMC_CH0_TOP5_MISC_SHU_CG_CTRL0(0xffffff800cfcdda4): 0x33403000\n[    1.849838]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP0_DDRCOMMON0     (0xffffff800fe52000): 0x00080100\n[    1.849841]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP0_TEST2_A0       (0xffffff800fe52100): 0x000055aa\n[    1.849844]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP0_TEST2_A3       (0xffffff800fe52108): 0x12070021\n[    1.849846]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP0_DUMMY_RD       (0xffffff800fe52110): 0x09228010\n[    1.849849]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP0_SREF_DPD_CTRL  (0xffffff800fe52168): 0x00588780\n[    1.849851]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP0_ACTIMING_CTRL  (0xffffff800fe52190): 0x00200041\n[    1.849854]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP0_ZQ_SET0        (0xffffff800fe521a0): 0x40000a56\n[    1.849856]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP0_TX_TRACKING_SET0(0xffffff800fe521b0): 0x00080000\n[    1.849859]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP0_DRAMC_PD_CTRL  (0xffffff800fe521fc): 0xc0000007\n[    1.849862]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP0_DCM_CTRL0      (0xffffff800fe52200): 0x00020000\n[    1.849864]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP0_DVFS_CTRL0     (0xffffff800fe52208): 0x00108622\n[    1.849867]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP0_CMD_DEC_CTRL0  (0xffffff800fe5221c): 0x00000100\n[    1.849869]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP0_TX_CG_SET0     (0xffffff800fe5223c): 0x18000000\n[    1.849872]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP0_RX_CG_SET0     (0xffffff800fe52244): 0x00000000\n[    1.849875]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP0_MISCTL0        (0xffffff800fe52250): 0x81084001\n[    1.849877]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP0_CLKAR          (0xffffff800fe52260): 0x01340000\n[    1.849880]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP0_SCSMCTRL_CG    (0xffffff800fe52288): 0x00000000\n[    1.849883]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP0_SHU_APHY_TX_PICG_CTRL(0xffffff800fe536ac): 0x80002333\n[    1.849886]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP5_MISC_CG_CTRL0  (0xffffff800cfd54ec): 0x20000110\n[    1.849888]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP5_MISC_CG_CTRL2  (0xffffff800cfd54f4): 0x80600bae\n[    1.849891]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP5_MISC_CG_CTRL5  (0xffffff800cfd5500): 0x00770000\n[    1.849893]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP5_MISC_DUTYSCAN1 (0xffffff800cfd5624): 0x00000800\n[    1.849896]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP5_MISC_CTRL3     (0xffffff800cfd5648): 0x11001100\n[    1.849899]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP5_MISC_CTRL4     (0xffffff800cfd564c): 0x000001ff\n[    1.849901]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP5_MISC_RX_AUTOK_CFG0(0xffffff800cfd5670): 0x40fc0000\n[    1.849904]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP5_SHU_B0_DQ7     (0xffffff800cfd5884): 0x3500c000\n[    1.849907]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP5_SHU_B0_DQ8     (0xffffff800cfd5888): 0x01200100\n[    1.849909]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP5_SHU_B1_DQ7     (0xffffff800cfd5a04): 0x3500c000\n[    1.849912]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP5_SHU_B1_DQ8     (0xffffff800cfd5a08): 0x01200100\n[    1.849915]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP5_SHU_CA_CMD8    (0xffffff800cfd5b88): 0x00000000\n[    1.849917]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP5_MISC_SHU_RX_CG_CTRL(0xffffff800cfd5da0): 0x00020327\n[    1.849920]  (0)[1:swapper/0][Power/dcm] DRAMC_CH1_TOP5_MISC_SHU_CG_CTRL0(0xffffff800cfd5da4): 0x33403000\n[    1.849924]  (0)[1:swapper/0][Power/dcm] [ARMCORE_DCM      0x00000001] sync hw state:1 (0)\n[    1.849930]  (0)[1:swapper/0][Power/dcm] [MCUSYS_DCM       0x00000002] sync hw state:1 (0)\n[    1.849934]  (0)[1:swapper/0][Power/dcm] [INFRA_DCM        0x00000004] sync hw state:1 (0)\n[    1.849938]  (0)[1:swapper/0][Power/dcm] [STALL_DCM        0x00000080] sync hw state:1 (0)\n[    1.850191]  (0)[1:swapper/0]#@# slbc_module_init(1203) slbc_enable 1\n[    1.850348]  (0)[1:swapper/0]qos ipi is ready!\n[    1.850521]  (7)[377:qos_ipi_recv]qos_ipi_recv_thread start!\n[    1.850970]  (6)[346:dc_trim_thread]mt635x-auxadc mt635x-auxadc: name:HPOFS_CAL, channel=9, adc_out=0x70e7, adc_result=28903\n[    1.851633]  (0)[1:swapper/0]SSPM is ready to service CM IPI\n[    1.851733]  (0)[1:swapper/0]#@# cm_mgr_check_dram_type(318) ddr_type 0x6, ddr_hz 4266, cm_mgr_idx 0x0\n[    1.855471]  (0)[1:swapper/0][mmdvfs]force flip step0 when late_init\n[    1.855477]  (0)[1:swapper/0][TMEM]trusted_mem_init:385\n[    1.855484]  (0)[1:swapper/0][TMEM]trusted_mem_init:389 (end)\n[    1.855741]  (0)[1:swapper/0]vpu_init_bin: mapped vpu firmware: pa: 0xbeab0000, size: 0x1350000, kva: 0xffffff8016000000\n[    1.855744]  (0)[1:swapper/0]vpu_init_bin: header: 0xb61000, preload:0xb6b000\n[    1.856109]  (0)[1:swapper/0]vpu_init_drv_tags: unable to register\n[    1.856938]  (0)[1:swapper/0]vpu 19030000.vpu_core0: mapped reg: 0xffffff800cffd000: 0x19030000 ~ 0x19030fff\n[    1.856952]  (0)[1:swapper/0]vpu 19030000.vpu_core0: mapped dmem: 0xffffff800ff80000: 0x1d100000 ~ 0x1d13ffff\n[    1.856961]  (0)[1:swapper/0]vpu 19030000.vpu_core0: mapped imem: 0xffffff8015480000: 0x1d140000 ~ 0x1d16ffff\n[    1.856989]  (0)[1:swapper/0]vpu 19030000.vpu_core0: mapped dbg: 0xffffff800ff44000: 0xd190000 ~ 0xd193fff\n[    1.856994]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_iova_dts: reset-vector: addr: 7da00000h, size: 00100000h, bin: 00000000h\n[    1.856998]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_iova_dts: main-prog: addr: 7db00000h, size: 00300000h, bin: 00100000h\n[    1.857002]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_iova_dts: kernel-lib: addr: 7de00000h, size: 00500000h, bin: ffffffffh\n[    1.857006]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_iova_dts: iram-data: addr: 00000000h, size: 00010000h, bin: 00b40000h\n[    1.857010]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_iova_dts: work-buf: addr: 00000000h, size: 00012000h, bin: ffffffffh\n[    1.857014]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_iova_dts: algo: addr: 00000000h, size: 00340000h, bin: 00800000h\n[    1.857102]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_map_sg_to_iova: sg_dma_address: size: 340000, mapped iova: 0x3822c0000 (dynamic alloc)\n[    1.857126]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_map_sg_to_iova: sg_dma_address: size: 100000, mapped iova: 0x37da00000 (static alloc)\n[    1.857191]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_map_sg_to_iova: sg_dma_address: size: 300000, mapped iova: 0x37db00000 (static alloc)\n[    1.857202]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_map_sg_to_iova: sg_dma_address: size: 12000, mapped iova: 0x3822a0000 (dynamic alloc)\n[    1.857210]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_map_sg_to_iova: sg_dma_address: size: 10000, mapped iova: 0x382290000 (dynamic alloc)\n[    1.857228]  (0)[1:swapper/0]vpu_init_dev_irq: vpu0: IRQ: 285\n[    1.857259]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_map_sg_to_iova: sg_dma_address: size: 2000, mapped iova: 0x38228e000 (dynamic alloc)\n[    1.857270]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_map_sg_to_iova: sg_dma_address: size: 2000, mapped iova: 0x38228c000 (dynamic alloc)\n[    1.857279]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_map_sg_to_iova: sg_dma_address: size: 2000, mapped iova: 0x38228a000 (dynamic alloc)\n[    1.857282]  (0)[1:swapper/0]vpu_init_dev_pwr: vpu0: apu_power_device_register call\n[    1.857287]  (0)[1:swapper/0]vpu_init_dev_algo_normal: vpu0, total algo count: 0\n[    1.857292]  (0)[1:swapper/0]vpu_init_dev_algo_normal: vpu0(61h): vpu_flo_d2d_k7: off: 800000, mva: 822c0000, len: 7d66c\n[    1.857299]  (0)[1:swapper/0]vpu_init_dev_algo_normal: vpu0, total algo count: 1\n[    1.857304]  (0)[1:swapper/0]vpu_init_dev_algo_normal: vpu0(61h): almaAlignment: off: 8face0, mva: 823bace0, len: 3e216\n[    1.857313]  (0)[1:swapper/0]vpu_init_dev_algo_normal: vpu0(61h): almaFinalUpScale: off: 938f00, mva: 823f8f00, len: 2db82\n[    1.857322]  (0)[1:swapper/0]vpu_init_dev_algo_normal: vpu0(61h): almaProcessing: off: 966a90, mva: 82426a90, len: bb314\n[    1.857330]  (0)[1:swapper/0]vpu_init_dev_algo_normal: vpu0, total algo count: 4\n[    1.857369]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_map_sg_to_iova: sg_dma_address: size: 40000, mapped iova: 0x370a00000 (static alloc)\n[    1.857372]  (0)[1:swapper/0]preload_iova_alloc: vpu0: addr:0x70A00000, size: 0x40000, bin: 0xB6B000, mva: 0x370a00000\n[    1.857379]  (0)[1:swapper/0]vpu_init_dev_algo_preload_entry: vpu0(61h): vpu_lib_d2d_dsdnblnv12 <PROG>: off: b6b000, mva: 370a00000, size: 40000, addr: 70a00000\n[    1.857408]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_map_sg_to_iova: sg_dma_address: size: 34000, mapped iova: 0x382256000 (dynamic alloc)\n[    1.857411]  (0)[1:swapper/0]preload_iova_alloc: vpu0: addr:0x0, size: 0x34000, bin: 0xBAB000, mva: 0x382256000\n[    1.857417]  (0)[1:swapper/0]vpu_init_dev_algo_preload_entry: vpu0(61h): vpu_lib_d2d_dsdnblnv12 <IRAM>: off: bab000, mva: 382256000, size: 34000, addr: 0\n[    1.857448]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_map_sg_to_iova: sg_dma_address: size: 20000, mapped iova: 0x371400000 (static alloc)\n[    1.857451]  (0)[1:swapper/0]preload_iova_alloc: vpu0: addr:0x71400000, size: 0x20000, bin: 0xBDF000, mva: 0x371400000\n[    1.857456]  (0)[1:swapper/0]vpu_init_dev_algo_preload_entry: vpu0(61h): vpu_flo_d2d_k7 <PROG>: off: bdf000, mva: 371400000, size: 20000, addr: 71400000\n[    1.857471]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_map_sg_to_iova: sg_dma_address: size: 37000, mapped iova: 0x38221f000 (dynamic alloc)\n[    1.857474]  (0)[1:swapper/0]preload_iova_alloc: vpu0: addr:0x0, size: 0x37000, bin: 0xBFF000, mva: 0x38221f000\n[    1.857479]  (0)[1:swapper/0]vpu_init_dev_algo_preload_entry: vpu0(61h): vpu_flo_d2d_k7 <IRAM>: off: bff000, mva: 38221f000, size: 37000, addr: 0\n[    1.857510]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_map_sg_to_iova: sg_dma_address: size: 20000, mapped iova: 0x370500000 (static alloc)\n[    1.857513]  (0)[1:swapper/0]preload_iova_alloc: vpu0: addr:0x70500000, size: 0x20000, bin: 0xC36000, mva: 0x370500000\n[    1.857517]  (0)[1:swapper/0]vpu_init_dev_algo_preload_entry: vpu0(61h): vpu_lib_pdaf <PROG>: off: c36000, mva: 370500000, size: 20000, addr: 70500000\n[    1.857548]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_map_sg_to_iova: sg_dma_address: size: 33000, mapped iova: 0x3821ec000 (dynamic alloc)\n[    1.857551]  (0)[1:swapper/0]preload_iova_alloc: vpu0: addr:0x0, size: 0x33000, bin: 0xC56000, mva: 0x3821ec000\n[    1.857556]  (0)[1:swapper/0]vpu_init_dev_algo_preload_entry: vpu0(61h): vpu_lib_pdaf <IRAM>: off: c56000, mva: 3821ec000, size: 33000, addr: 0\n[    1.857580]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_map_sg_to_iova: sg_dma_address: size: 10000, mapped iova: 0x371900000 (static alloc)\n[    1.857584]  (0)[1:swapper/0]preload_iova_alloc: vpu0: addr:0x71900000, size: 0x10000, bin: 0xC89000, mva: 0x371900000\n[    1.857589]  (0)[1:swapper/0]vpu_init_dev_algo_preload_entry: vpu0(61h): vpu_flo_d2d_ksample <PROG>: off: c89000, mva: 371900000, size: 10000, addr: 71900000\n[    1.857600]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_map_sg_to_iova: sg_dma_address: size: 4000, mapped iova: 0x3821e8000 (dynamic alloc)\n[    1.857603]  (0)[1:swapper/0]preload_iova_alloc: vpu0: addr:0x0, size: 0x4000, bin: 0xC99000, mva: 0x3821e8000\n[    1.857609]  (0)[1:swapper/0]vpu_init_dev_algo_preload_entry: vpu0(61h): vpu_flo_d2d_ksample <IRAM>: off: c99000, mva: 3821e8000, size: 4000, addr: 0\n[    1.857799]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_map_sg_to_iova: sg_dma_address: size: 190000, mapped iova: 0x370000000 (static alloc)\n[    1.857802]  (0)[1:swapper/0]preload_iova_alloc: vpu0: addr:0x70000000, size: 0x190000, bin: 0xDCF000, mva: 0x370000000\n[    1.857807]  (0)[1:swapper/0]vpu_init_dev_algo_preload_entry: vpu0(61h): apu_lib_apunn <PROG>: off: dcf000, mva: 370000000, size: 190000, addr: 70000000\n[    1.857815]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_map_sg_to_iova: sg_dma_address: size: 2000, mapped iova: 0x3821e6000 (dynamic alloc)\n[    1.857818]  (0)[1:swapper/0]preload_iova_alloc: vpu0: addr:0x0, size: 0x2000, bin: 0xF5F000, mva: 0x3821e6000\n[    1.857823]  (0)[1:swapper/0]vpu_init_dev_algo_preload_entry: vpu0(61h): apu_lib_apunn <IRAM>: off: f5f000, mva: 3821e6000, size: 2000, addr: 0\n[    1.858016]  (0)[1:swapper/0]vpu 19030000.vpu_core0: vpu_probe: succeed\n[    1.858242]  (0)[1:swapper/0]vpu 19031000.vpu_core1: mapped reg: 0xffffff800fe55000: 0x19031000 ~ 0x19031fff\n[    1.858255]  (0)[1:swapper/0]vpu 19031000.vpu_core1: mapped dmem: 0xffffff80154c0000: 0x1d200000 ~ 0x1d23ffff\n[    1.858267]  (0)[1:swapper/0]vpu 19031000.vpu_core1: mapped imem: 0xffffff8015540000: 0x1d240000 ~ 0x1d26ffff\n[    1.858292]  (0)[1:swapper/0]vpu 19031000.vpu_core1: mapped dbg: 0xffffff800ff60000: 0xd194000 ~ 0xd197fff\n[    1.858297]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_iova_dts: reset-vector: addr: 7e300000h, size: 00100000h, bin: 00400000h\n[    1.858301]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_iova_dts: main-prog: addr: 7e400000h, size: 00300000h, bin: 00500000h\n[    1.858305]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_iova_dts: kernel-lib: addr: 7e700000h, size: 00500000h, bin: ffffffffh\n[    1.858309]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_iova_dts: iram-data: addr: 00000000h, size: 00010000h, bin: 00b50000h\n[    1.858315]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_iova_dts: work-buf: addr: 00000000h, size: 00012000h, bin: ffffffffh\n[    1.858394]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_map_sg_to_iova: sg_dma_address: size: 100000, mapped iova: 0x37e300000 (static alloc)\n[    1.858601]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_map_sg_to_iova: sg_dma_address: size: 300000, mapped iova: 0x37e400000 (static alloc)\n[    1.858654]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_map_sg_to_iova: sg_dma_address: size: 12000, mapped iova: 0x3821c6000 (dynamic alloc)\n[    1.858697]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_map_sg_to_iova: sg_dma_address: size: 10000, mapped iova: 0x3821b6000 (dynamic alloc)\n[    1.858734]  (0)[1:swapper/0]vpu_init_dev_irq: vpu1: IRQ: 286\n[    1.858813]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_map_sg_to_iova: sg_dma_address: size: 2000, mapped iova: 0x3821b4000 (dynamic alloc)\n[    1.858844]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_map_sg_to_iova: sg_dma_address: size: 2000, mapped iova: 0x3821b2000 (dynamic alloc)\n[    1.858869]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_map_sg_to_iova: sg_dma_address: size: 2000, mapped iova: 0x3821b0000 (dynamic alloc)\n[    1.858880]  (0)[1:swapper/0]vpu_init_dev_pwr: vpu1: apu_power_device_register call\n[    1.858892]  (0)[1:swapper/0]vpu_init_dev_algo_normal: vpu1, total algo count: 0\n[    1.858907]  (0)[1:swapper/0]vpu_init_dev_algo_normal: vpu1(62h): vpu_flo_d2d_k7: off: 87d670, mva: 8233d670, len: 7d66c\n[    1.858923]  (0)[1:swapper/0]vpu_init_dev_algo_normal: vpu1, total algo count: 1\n[    1.858937]  (0)[1:swapper/0]vpu_init_dev_algo_normal: vpu1(62h): almaAlignment: off: a21db0, mva: 824e1db0, len: 3d742\n[    1.858959]  (0)[1:swapper/0]vpu_init_dev_algo_normal: vpu1(62h): almaFinalUpScale: off: a5f500, mva: 8251f500, len: 2d966\n[    1.858983]  (0)[1:swapper/0]vpu_init_dev_algo_normal: vpu1(62h): almaProcessing: off: a8ce70, mva: 8254ce70, len: b01e9\n[    1.858999]  (0)[1:swapper/0]vpu_init_dev_algo_normal: vpu1, total algo count: 4\n[    1.859121]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_map_sg_to_iova: sg_dma_address: size: 40000, mapped iova: 0x374a00000 (static alloc)\n[    1.859134]  (0)[1:swapper/0]preload_iova_alloc: vpu1: addr:0x74A00000, size: 0x40000, bin: 0xC9D000, mva: 0x374a00000\n[    1.859150]  (0)[1:swapper/0]vpu_init_dev_algo_preload_entry: vpu1(62h): vpu_lib_d2d_dsdnblnv12 <PROG>: off: c9d000, mva: 374a00000, size: 40000, addr: 74a00000\n[    1.859243]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_map_sg_to_iova: sg_dma_address: size: 34000, mapped iova: 0x38217c000 (dynamic alloc)\n[    1.859254]  (0)[1:swapper/0]preload_iova_alloc: vpu1: addr:0x0, size: 0x34000, bin: 0xCDD000, mva: 0x38217c000\n[    1.859270]  (0)[1:swapper/0]vpu_init_dev_algo_preload_entry: vpu1(62h): vpu_lib_d2d_dsdnblnv12 <IRAM>: off: cdd000, mva: 38217c000, size: 34000, addr: 0\n[    1.859354]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_map_sg_to_iova: sg_dma_address: size: 20000, mapped iova: 0x375400000 (static alloc)\n[    1.859365]  (0)[1:swapper/0]preload_iova_alloc: vpu1: addr:0x75400000, size: 0x20000, bin: 0xD11000, mva: 0x375400000\n[    1.859380]  (0)[1:swapper/0]vpu_init_dev_algo_preload_entry: vpu1(62h): vpu_flo_d2d_k7 <PROG>: off: d11000, mva: 375400000, size: 20000, addr: 75400000\n[    1.859479]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_map_sg_to_iova: sg_dma_address: size: 37000, mapped iova: 0x382145000 (dynamic alloc)\n[    1.859490]  (0)[1:swapper/0]preload_iova_alloc: vpu1: addr:0x0, size: 0x37000, bin: 0xD31000, mva: 0x382145000\n[    1.859505]  (0)[1:swapper/0]vpu_init_dev_algo_preload_entry: vpu1(62h): vpu_flo_d2d_k7 <IRAM>: off: d31000, mva: 382145000, size: 37000, addr: 0\n[    1.859593]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_map_sg_to_iova: sg_dma_address: size: 20000, mapped iova: 0x374500000 (static alloc)\n[    1.859604]  (0)[1:swapper/0]preload_iova_alloc: vpu1: addr:0x74500000, size: 0x20000, bin: 0xD68000, mva: 0x374500000\n[    1.859619]  (0)[1:swapper/0]vpu_init_dev_algo_preload_entry: vpu1(62h): vpu_lib_pdaf <PROG>: off: d68000, mva: 374500000, size: 20000, addr: 74500000\n[    1.859803]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_map_sg_to_iova: sg_dma_address: size: 33000, mapped iova: 0x382112000 (dynamic alloc)\n[    1.859815]  (0)[1:swapper/0]preload_iova_alloc: vpu1: addr:0x0, size: 0x33000, bin: 0xD88000, mva: 0x382112000\n[    1.859830]  (0)[1:swapper/0]vpu_init_dev_algo_preload_entry: vpu1(62h): vpu_lib_pdaf <IRAM>: off: d88000, mva: 382112000, size: 33000, addr: 0\n[    1.859894]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_map_sg_to_iova: sg_dma_address: size: 10000, mapped iova: 0x375900000 (static alloc)\n[    1.859906]  (0)[1:swapper/0]preload_iova_alloc: vpu1: addr:0x75900000, size: 0x10000, bin: 0xDBB000, mva: 0x375900000\n[    1.859921]  (0)[1:swapper/0]vpu_init_dev_algo_preload_entry: vpu1(62h): vpu_flo_d2d_ksample <PROG>: off: dbb000, mva: 375900000, size: 10000, addr: 75900000\n[    1.859956]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_map_sg_to_iova: sg_dma_address: size: 4000, mapped iova: 0x38210e000 (dynamic alloc)\n[    1.859967]  (0)[1:swapper/0]preload_iova_alloc: vpu1: addr:0x0, size: 0x4000, bin: 0xDCB000, mva: 0x38210e000\n[    1.859982]  (0)[1:swapper/0]vpu_init_dev_algo_preload_entry: vpu1(62h): vpu_flo_d2d_ksample <IRAM>: off: dcb000, mva: 38210e000, size: 4000, addr: 0\n[    1.860406]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_map_sg_to_iova: sg_dma_address: size: 190000, mapped iova: 0x374000000 (static alloc)\n[    1.860409]  (0)[1:swapper/0]preload_iova_alloc: vpu1: addr:0x74000000, size: 0x190000, bin: 0xF61000, mva: 0x374000000\n[    1.860414]  (0)[1:swapper/0]vpu_init_dev_algo_preload_entry: vpu1(62h): apu_lib_apunn <PROG>: off: f61000, mva: 374000000, size: 190000, addr: 74000000\n[    1.860422]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_map_sg_to_iova: sg_dma_address: size: 2000, mapped iova: 0x38210c000 (dynamic alloc)\n[    1.860425]  (0)[1:swapper/0]preload_iova_alloc: vpu1: addr:0x0, size: 0x2000, bin: 0x10F1000, mva: 0x38210c000\n[    1.860430]  (0)[1:swapper/0]vpu_init_dev_algo_preload_entry: vpu1(62h): apu_lib_apunn <IRAM>: off: 10f1000, mva: 38210c000, size: 2000, addr: 0\n[    1.860435]  (0)[1:swapper/0][apusys][warn] apusys_register_device over write dev idx(0->1)\n[    1.860480]  (0)[1:swapper/0][apusys][warn] apusys_register_device over write dev idx(0->1)\n[    1.860560]  (0)[1:swapper/0]vpu 19031000.vpu_core1: vpu_probe: succeed\n[    1.861566]  (0)[1:swapper/0]sys_timer 10017000.sys_timer: invalid resource\n[    1.861569]  (0)[1:swapper/0]unable to ioremap sysram base, might be disabled\n[    1.861573]  (0)[1:swapper/0]mult=161319385, shift=21, maxsec=5000\n[    1.861583]  (0)[1:swapper/0]enabled: 1, support_sysram: 0\n[    1.862102]  (0)[1:swapper/0]dramc_apxgpt3_init: base=0xffffff800fe75000, irq=157\n[    1.872111]  (0)[1:swapper/0]flashlights_mt6360: mt6360_parse_dt: Channel number(2).\n[    1.872119]  (0)[1:swapper/0]flashlights_mt6360: mt6360_parse_dt: Parse dt (type,ct,part,name,channel,decouple)=(0,0,0,flashlights-mt6360,0,1).\n[    1.872123]  (0)[1:swapper/0]flashlights_mt6360: mt6360_parse_dt: Parse dt (type,ct,part,name,channel,decouple)=(0,1,0,flashlights-mt6360,1,1).\n[    1.872252]  (0)[1:swapper/0]flashlight: flashlight_dev_register_by_device_id: Register device (0,0,0)\n[    1.872256]  (0)[1:swapper/0]flashlight: flashlight_dev_register_by_device_id: Register device (0,1,0)\n[    1.872262]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.0: mt6360_fled_set_mode set off mutex_lock +\n[    1.872265]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.0: mt6360_fled_set_mode set off mutex_lock -\n[    1.872454]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.0: mt6360_fled_set_mode set off\n[    1.872459]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.1: mt6360_fled_set_mode set off mutex_lock +\n[    1.872462]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.1: mt6360_fled_set_mode set off mutex_lock -\n[    1.872648]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.1: mt6360_fled_set_mode set off\n[    1.872690] -(0)[1:swapper/0]CPU: 0 PID: 1 Comm: swapper/0 Tainted: G S      W       4.14.141-g37f4efb4a #249\n[    1.872692] -(0)[1:swapper/0]Hardware name: MT6853T (DT)\n[    1.872695] -(0)[1:swapper/0]Call trace:\n[    1.872704] -(0)[1:swapper/0][<ffffff828808ca04>] dump_backtrace+0x0/0x508\n[    1.872708] -(0)[1:swapper/0][<ffffff828808cf20>] show_stack+0x14/0x1c\n[    1.872713] -(0)[1:swapper/0][<ffffff8288fc1218>] dump_stack+0xc4/0xfc\n[    1.872718] -(0)[1:swapper/0][<ffffff8288c5709c>] led_init_core+0x30/0x5c\n[    1.872723] -(0)[1:swapper/0][<ffffff8288c57950>] of_led_classdev_register+0x198/0x208\n[    1.872728] -(0)[1:swapper/0][<ffffff8288834828>] mtk_flashlight_create_classdev+0x54/0x108\n[    1.872731] -(0)[1:swapper/0][<ffffff8288835db4>] mt6360_probe+0x220/0x4e0\n[    1.872736] -(0)[1:swapper/0][<ffffff8288611354>] platform_drv_probe+0x80/0xb8\n[    1.872740] -(0)[1:swapper/0][<ffffff828860e85c>] driver_probe_device+0x4b0/0x648\n[    1.872744] -(0)[1:swapper/0][<ffffff828860ecc4>] __driver_attach+0xe0/0x180\n[    1.872748] -(0)[1:swapper/0][<ffffff828860c3ac>] bus_for_each_dev+0x80/0xc8\n[    1.872751] -(0)[1:swapper/0][<ffffff828860ebdc>] driver_attach+0x20/0x28\n[    1.872754] -(0)[1:swapper/0][<ffffff828860cb90>] bus_add_driver+0x134/0x23c\n[    1.872758] -(0)[1:swapper/0][<ffffff828860fd14>] driver_register+0xa4/0xf0\n[    1.872761] -(0)[1:swapper/0][<ffffff82886112cc>] __platform_driver_register+0x40/0x48\n[    1.872766] -(0)[1:swapper/0][<ffffff82896450e8>] flashlight_mt6360_init+0x28/0xa4\n[    1.872769] -(0)[1:swapper/0][<ffffff828808416c>] do_one_initcall+0x124/0x1f4\n[    1.872773] -(0)[1:swapper/0][<ffffff8289600fdc>] kernel_init_freeable+0x198/0x234\n[    1.872777] -(0)[1:swapper/0][<ffffff8288fd5748>] kernel_init+0x10/0x214\n[    1.872781] -(0)[1:swapper/0][<ffffff8288085658>] ret_from_fork+0x10/0x18\n[    1.872785]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.0: mt6360_fled_set_mode set off mutex_lock +\n[    1.872788]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.0: mt6360_fled_set_mode set off mutex_lock -\n[    1.872979]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.0: mt6360_fled_set_mode set off\n[    1.872983]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.1: mt6360_fled_set_mode set off mutex_lock +\n[    1.872986]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.1: mt6360_fled_set_mode set off mutex_lock -\n[    1.873172]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.1: mt6360_fled_set_mode set off\n[    1.873205] -(0)[1:swapper/0]CPU: 0 PID: 1 Comm: swapper/0 Tainted: G S      W       4.14.141-g37f4efb4a #249\n[    1.873208] -(0)[1:swapper/0]Hardware name: MT6853T (DT)\n[    1.873209] -(0)[1:swapper/0]Call trace:\n[    1.873214] -(0)[1:swapper/0][<ffffff828808ca04>] dump_backtrace+0x0/0x508\n[    1.873217] -(0)[1:swapper/0][<ffffff828808cf20>] show_stack+0x14/0x1c\n[    1.873221] -(0)[1:swapper/0][<ffffff8288fc1218>] dump_stack+0xc4/0xfc\n[    1.873224] -(0)[1:swapper/0][<ffffff8288c5709c>] led_init_core+0x30/0x5c\n[    1.873227] -(0)[1:swapper/0][<ffffff8288c57950>] of_led_classdev_register+0x198/0x208\n[    1.873231] -(0)[1:swapper/0][<ffffff8288834828>] mtk_flashlight_create_classdev+0x54/0x108\n[    1.873234] -(0)[1:swapper/0][<ffffff8288835db4>] mt6360_probe+0x220/0x4e0\n[    1.873237] -(0)[1:swapper/0][<ffffff8288611354>] platform_drv_probe+0x80/0xb8\n[    1.873241] -(0)[1:swapper/0][<ffffff828860e85c>] driver_probe_device+0x4b0/0x648\n[    1.873244] -(0)[1:swapper/0][<ffffff828860ecc4>] __driver_attach+0xe0/0x180\n[    1.873248] -(0)[1:swapper/0][<ffffff828860c3ac>] bus_for_each_dev+0x80/0xc8\n[    1.873251] -(0)[1:swapper/0][<ffffff828860ebdc>] driver_attach+0x20/0x28\n[    1.873254] -(0)[1:swapper/0][<ffffff828860cb90>] bus_add_driver+0x134/0x23c\n[    1.873257] -(0)[1:swapper/0][<ffffff828860fd14>] driver_register+0xa4/0xf0\n[    1.873260] -(0)[1:swapper/0][<ffffff82886112cc>] __platform_driver_register+0x40/0x48\n[    1.873264] -(0)[1:swapper/0][<ffffff82896450e8>] flashlight_mt6360_init+0x28/0xa4\n[    1.873267] -(0)[1:swapper/0][<ffffff828808416c>] do_one_initcall+0x124/0x1f4\n[    1.873270] -(0)[1:swapper/0][<ffffff8289600fdc>] kernel_init_freeable+0x198/0x234\n[    1.873273] -(0)[1:swapper/0][<ffffff8288fd5748>] kernel_init+0x10/0x214\n[    1.873277] -(0)[1:swapper/0][<ffffff8288085658>] ret_from_fork+0x10/0x18\n[    1.873280]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.0: mt6360_fled_set_mode set off mutex_lock +\n[    1.873283]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.0: mt6360_fled_set_mode set off mutex_lock -\n[    1.873472]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.0: mt6360_fled_set_mode set off\n[    1.873476]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.1: mt6360_fled_set_mode set off mutex_lock +\n[    1.873479]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.1: mt6360_fled_set_mode set off mutex_lock -\n[    1.873665]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.1: mt6360_fled_set_mode set off\n[    1.873692] -(0)[1:swapper/0]CPU: 0 PID: 1 Comm: swapper/0 Tainted: G S      W       4.14.141-g37f4efb4a #249\n[    1.873694] -(0)[1:swapper/0]Hardware name: MT6853T (DT)\n[    1.873696] -(0)[1:swapper/0]Call trace:\n[    1.873700] -(0)[1:swapper/0][<ffffff828808ca04>] dump_backtrace+0x0/0x508\n[    1.873703] -(0)[1:swapper/0][<ffffff828808cf20>] show_stack+0x14/0x1c\n[    1.873707] -(0)[1:swapper/0][<ffffff8288fc1218>] dump_stack+0xc4/0xfc\n[    1.873710] -(0)[1:swapper/0][<ffffff8288c5709c>] led_init_core+0x30/0x5c\n[    1.873713] -(0)[1:swapper/0][<ffffff8288c57950>] of_led_classdev_register+0x198/0x208\n[    1.873717] -(0)[1:swapper/0][<ffffff8288834828>] mtk_flashlight_create_classdev+0x54/0x108\n[    1.873720] -(0)[1:swapper/0][<ffffff8288835db4>] mt6360_probe+0x220/0x4e0\n[    1.873723] -(0)[1:swapper/0][<ffffff8288611354>] platform_drv_probe+0x80/0xb8\n[    1.873727] -(0)[1:swapper/0][<ffffff828860e85c>] driver_probe_device+0x4b0/0x648\n[    1.873730] -(0)[1:swapper/0][<ffffff828860ecc4>] __driver_attach+0xe0/0x180\n[    1.873733] -(0)[1:swapper/0][<ffffff828860c3ac>] bus_for_each_dev+0x80/0xc8\n[    1.873736] -(0)[1:swapper/0][<ffffff828860ebdc>] driver_attach+0x20/0x28\n[    1.873740] -(0)[1:swapper/0][<ffffff828860cb90>] bus_add_driver+0x134/0x23c\n[    1.873743] -(0)[1:swapper/0][<ffffff828860fd14>] driver_register+0xa4/0xf0\n[    1.873746] -(0)[1:swapper/0][<ffffff82886112cc>] __platform_driver_register+0x40/0x48\n[    1.873749] -(0)[1:swapper/0][<ffffff82896450e8>] flashlight_mt6360_init+0x28/0xa4\n[    1.873752] -(0)[1:swapper/0][<ffffff828808416c>] do_one_initcall+0x124/0x1f4\n[    1.873756] -(0)[1:swapper/0][<ffffff8289600fdc>] kernel_init_freeable+0x198/0x234\n[    1.873759] -(0)[1:swapper/0][<ffffff8288fd5748>] kernel_init+0x10/0x214\n[    1.873762] -(0)[1:swapper/0][<ffffff8288085658>] ret_from_fork+0x10/0x18\n[    1.873789] -(0)[1:swapper/0]CPU: 0 PID: 1 Comm: swapper/0 Tainted: G S      W       4.14.141-g37f4efb4a #249\n[    1.873791] -(0)[1:swapper/0]Hardware name: MT6853T (DT)\n[    1.873793] -(0)[1:swapper/0]Call trace:\n[    1.873797] -(0)[1:swapper/0][<ffffff828808ca04>] dump_backtrace+0x0/0x508\n[    1.873800] -(0)[1:swapper/0][<ffffff828808cf20>] show_stack+0x14/0x1c\n[    1.873803] -(0)[1:swapper/0][<ffffff8288fc1218>] dump_stack+0xc4/0xfc\n[    1.873806] -(0)[1:swapper/0][<ffffff8288c5709c>] led_init_core+0x30/0x5c\n[    1.873810] -(0)[1:swapper/0][<ffffff8288c57950>] of_led_classdev_register+0x198/0x208\n[    1.873813] -(0)[1:swapper/0][<ffffff8288834888>] mtk_flashlight_create_classdev+0xb4/0x108\n[    1.873816] -(0)[1:swapper/0][<ffffff8288835db4>] mt6360_probe+0x220/0x4e0\n[    1.873819] -(0)[1:swapper/0][<ffffff8288611354>] platform_drv_probe+0x80/0xb8\n[    1.873822] -(0)[1:swapper/0][<ffffff828860e85c>] driver_probe_device+0x4b0/0x648\n[    1.873826] -(0)[1:swapper/0][<ffffff828860ecc4>] __driver_attach+0xe0/0x180\n[    1.873829] -(0)[1:swapper/0][<ffffff828860c3ac>] bus_for_each_dev+0x80/0xc8\n[    1.873832] -(0)[1:swapper/0][<ffffff828860ebdc>] driver_attach+0x20/0x28\n[    1.873835] -(0)[1:swapper/0][<ffffff828860cb90>] bus_add_driver+0x134/0x23c\n[    1.873839] -(0)[1:swapper/0][<ffffff828860fd14>] driver_register+0xa4/0xf0\n[    1.873841] -(0)[1:swapper/0][<ffffff82886112cc>] __platform_driver_register+0x40/0x48\n[    1.873845] -(0)[1:swapper/0][<ffffff82896450e8>] flashlight_mt6360_init+0x28/0xa4\n[    1.873848] -(0)[1:swapper/0][<ffffff828808416c>] do_one_initcall+0x124/0x1f4\n[    1.873851] -(0)[1:swapper/0][<ffffff8289600fdc>] kernel_init_freeable+0x198/0x234\n[    1.873854] -(0)[1:swapper/0][<ffffff8288fd5748>] kernel_init+0x10/0x214\n[    1.873857] -(0)[1:swapper/0][<ffffff8288085658>] ret_from_fork+0x10/0x18\n[    1.873884] -(0)[1:swapper/0]CPU: 0 PID: 1 Comm: swapper/0 Tainted: G S      W       4.14.141-g37f4efb4a #249\n[    1.873886] -(0)[1:swapper/0]Hardware name: MT6853T (DT)\n[    1.873888] -(0)[1:swapper/0]Call trace:\n[    1.873891] -(0)[1:swapper/0][<ffffff828808ca04>] dump_backtrace+0x0/0x508\n[    1.873894] -(0)[1:swapper/0][<ffffff828808cf20>] show_stack+0x14/0x1c\n[    1.873897] -(0)[1:swapper/0][<ffffff8288fc1218>] dump_stack+0xc4/0xfc\n[    1.873901] -(0)[1:swapper/0][<ffffff8288c5709c>] led_init_core+0x30/0x5c\n[    1.873904] -(0)[1:swapper/0][<ffffff8288c57950>] of_led_classdev_register+0x198/0x208\n[    1.873907] -(0)[1:swapper/0][<ffffff8288834888>] mtk_flashlight_create_classdev+0xb4/0x108\n[    1.873910] -(0)[1:swapper/0][<ffffff8288835db4>] mt6360_probe+0x220/0x4e0\n[    1.873913] -(0)[1:swapper/0][<ffffff8288611354>] platform_drv_probe+0x80/0xb8\n[    1.873917] -(0)[1:swapper/0][<ffffff828860e85c>] driver_probe_device+0x4b0/0x648\n[    1.873920] -(0)[1:swapper/0][<ffffff828860ecc4>] __driver_attach+0xe0/0x180\n[    1.873923] -(0)[1:swapper/0][<ffffff828860c3ac>] bus_for_each_dev+0x80/0xc8\n[    1.873926] -(0)[1:swapper/0][<ffffff828860ebdc>] driver_attach+0x20/0x28\n[    1.873929] -(0)[1:swapper/0][<ffffff828860cb90>] bus_add_driver+0x134/0x23c\n[    1.873933] -(0)[1:swapper/0][<ffffff828860fd14>] driver_register+0xa4/0xf0\n[    1.873936] -(0)[1:swapper/0][<ffffff82886112cc>] __platform_driver_register+0x40/0x48\n[    1.873939] -(0)[1:swapper/0][<ffffff82896450e8>] flashlight_mt6360_init+0x28/0xa4\n[    1.873942] -(0)[1:swapper/0][<ffffff828808416c>] do_one_initcall+0x124/0x1f4\n[    1.873945] -(0)[1:swapper/0][<ffffff8289600fdc>] kernel_init_freeable+0x198/0x234\n[    1.873948] -(0)[1:swapper/0][<ffffff8288fd5748>] kernel_init+0x10/0x214\n[    1.873951] -(0)[1:swapper/0][<ffffff8288085658>] ret_from_fork+0x10/0x18\n[    1.873973] -(0)[1:swapper/0]CPU: 0 PID: 1 Comm: swapper/0 Tainted: G S      W       4.14.141-g37f4efb4a #249\n[    1.873975] -(0)[1:swapper/0]Hardware name: MT6853T (DT)\n[    1.873977] -(0)[1:swapper/0]Call trace:\n[    1.873980] -(0)[1:swapper/0][<ffffff828808ca04>] dump_backtrace+0x0/0x508\n[    1.873984] -(0)[1:swapper/0][<ffffff828808cf20>] show_stack+0x14/0x1c\n[    1.873987] -(0)[1:swapper/0][<ffffff8288fc1218>] dump_stack+0xc4/0xfc\n[    1.873990] -(0)[1:swapper/0][<ffffff8288c5709c>] led_init_core+0x30/0x5c\n[    1.873993] -(0)[1:swapper/0][<ffffff8288c57950>] of_led_classdev_register+0x198/0x208\n[    1.873996] -(0)[1:swapper/0][<ffffff8288834888>] mtk_flashlight_create_classdev+0xb4/0x108\n[    1.873999] -(0)[1:swapper/0][<ffffff8288835db4>] mt6360_probe+0x220/0x4e0\n[    1.874002] -(0)[1:swapper/0][<ffffff8288611354>] platform_drv_probe+0x80/0xb8\n[    1.874005] -(0)[1:swapper/0][<ffffff828860e85c>] driver_probe_device+0x4b0/0x648\n[    1.874009] -(0)[1:swapper/0][<ffffff828860ecc4>] __driver_attach+0xe0/0x180\n[    1.874012] -(0)[1:swapper/0][<ffffff828860c3ac>] bus_for_each_dev+0x80/0xc8\n[    1.874015] -(0)[1:swapper/0][<ffffff828860ebdc>] driver_attach+0x20/0x28\n[    1.874018] -(0)[1:swapper/0][<ffffff828860cb90>] bus_add_driver+0x134/0x23c\n[    1.874022] -(0)[1:swapper/0][<ffffff828860fd14>] driver_register+0xa4/0xf0\n[    1.874025] -(0)[1:swapper/0][<ffffff82886112cc>] __platform_driver_register+0x40/0x48\n[    1.874028] -(0)[1:swapper/0][<ffffff82896450e8>] flashlight_mt6360_init+0x28/0xa4\n[    1.874031] -(0)[1:swapper/0][<ffffff828808416c>] do_one_initcall+0x124/0x1f4\n[    1.874034] -(0)[1:swapper/0][<ffffff8289600fdc>] kernel_init_freeable+0x198/0x234\n[    1.874037] -(0)[1:swapper/0][<ffffff8288fd5748>] kernel_init+0x10/0x214\n[    1.874040] -(0)[1:swapper/0][<ffffff8288085658>] ret_from_fork+0x10/0x18\n[    1.874236]  (0)[1:swapper/0]irtx_init()\n[    1.874765]  (0)[1:swapper/0]irtx_probe() device tree info: major=0 pwm=2 invert=0\n[    1.874857]  (0)[1:swapper/0]irtx_probe() irtx_ldo regulator not found\n[    1.874878]  (0)[1:swapper/0]switch_irtx_gpio() [PinC] to mode:0 done.\n[    1.874926]  (0)[1:swapper/0]irtx_probe() Done.\n[    1.875001]  (0)[1:swapper/0][SCP] scp_late_init\n[    1.875016]  (0)[1:swapper/0][ADSP] late_init done\n[    1.875020]  (0)[1:swapper/0]memory-ssmr: [PASS]: SSMR sanity.\n[    1.875044]  (0)[1:swapper/0]memory-ssmr: memory_ssmr_init_feature: svp is enable with size: 0x0000000010000000\n[    1.875047]  (0)[1:swapper/0]memory-ssmr: memory_ssmr_init_feature: wfd is enable with size: 0x0000000004000000\n[    1.875050]  (0)[1:swapper/0]leds_mtk_disp mtk_leds_init(513) :Leds init\n[    1.875096]  (0)[1:swapper/0]leds_mtk_disp mtk_leds_probe(418) :probe begain +++\n[    1.875099]  (0)[1:swapper/0]leds_mtk_disp mtk_leds_probe(421) :Load dts node nums: 1\n[    1.875108] -(0)[1:swapper/0]leds_mtk_disp mtk_leds_parse_dt(385) :parse 0 leds dt: lcd-backlight, 2047, 11\n[    1.875136] -(0)[1:swapper/0]CPU: 0 PID: 1 Comm: swapper/0 Tainted: G S      W       4.14.141-g37f4efb4a #249\n[    1.875140] -(0)[1:swapper/0]Hardware name: MT6853T (DT)\n[    1.875141] -(0)[1:swapper/0]Call trace:\n[    1.875147] -(0)[1:swapper/0][<ffffff828808ca04>] dump_backtrace+0x0/0x508\n[    1.875150] -(0)[1:swapper/0][<ffffff828808cf20>] show_stack+0x14/0x1c\n[    1.875154] -(0)[1:swapper/0][<ffffff8288fc1218>] dump_stack+0xc4/0xfc\n[    1.875157] -(0)[1:swapper/0][<ffffff8288c5709c>] led_init_core+0x30/0x5c\n[    1.875161] -(0)[1:swapper/0][<ffffff8288c57950>] of_led_classdev_register+0x198/0x208\n[    1.875164] -(0)[1:swapper/0][<ffffff8288c57ab8>] devm_of_led_classdev_register+0x50/0x90\n[    1.875168] -(0)[1:swapper/0][<ffffff82888c2878>] mtk_leds_probe+0x308/0x504\n[    1.875172] -(0)[1:swapper/0][<ffffff8288611354>] platform_drv_probe+0x80/0xb8\n[    1.875176] -(0)[1:swapper/0][<ffffff828860e85c>] driver_probe_device+0x4b0/0x648\n[    1.875179] -(0)[1:swapper/0][<ffffff828860ecc4>] __driver_attach+0xe0/0x180\n[    1.875183] -(0)[1:swapper/0][<ffffff828860c3ac>] bus_for_each_dev+0x80/0xc8\n[    1.875186] -(0)[1:swapper/0][<ffffff828860ebdc>] driver_attach+0x20/0x28\n[    1.875189] -(0)[1:swapper/0][<ffffff828860cb90>] bus_add_driver+0x134/0x23c\n[    1.875192] -(0)[1:swapper/0][<ffffff828860fd14>] driver_register+0xa4/0xf0\n[    1.875195] -(0)[1:swapper/0][<ffffff82886112cc>] __platform_driver_register+0x40/0x48\n[    1.875199] -(0)[1:swapper/0][<ffffff828964a5d8>] mtk_leds_init+0x34/0x68\n[    1.875202] -(0)[1:swapper/0][<ffffff828808416c>] do_one_initcall+0x124/0x1f4\n[    1.875205] -(0)[1:swapper/0][<ffffff8289600fdc>] kernel_init_freeable+0x198/0x234\n[    1.875209] -(0)[1:swapper/0][<ffffff8288fd5748>] kernel_init+0x10/0x214\n[    1.875212] -(0)[1:swapper/0][<ffffff8288085658>] ret_from_fork+0x10/0x18\n[    1.875216]  (0)[72:kworker/0:1]leds_mtk_disp led_data_init(316) :lcd-backlight devm_led_classdev_register ok! \n[    1.875748]  (0)[72:kworker/0:1][mtk_nanohub]cabc_backlight_value_notification_work [100, 500, 0, 0]\n[    1.875870]  (0)[1:swapper/0]leds_mtk_disp mtk_leds_parse_dt(398) :load dts ok!\n[    1.875873]  (0)[1:swapper/0]leds_mtk_disp mtk_leds_probe(446) :probe end ---\n[    1.876305]  (0)[1:swapper/0][cmdq] cmdq_util_init begin\n[    1.876452]  (0)[1:swapper/0][cmdq] data:          (null) val:0x1 bit_feature:0x2\n[    1.876456]  (0)[1:swapper/0][cmdq] cmdq_util_init end\n[    1.876458]  (0)[1:swapper/0][MDP]mdp_late_init begin\n[    1.876470]  (0)[1:swapper/0][MDP]mdp_late_init end\n[    1.876473]  (0)[1:swapper/0][MDP]CMDQ driver late init begin\n[    1.876477]  (0)[1:swapper/0]MMP: mmprofile_enable(): enable: 1\n[    1.876507]  (0)[1:swapper/0]MMP: mmprofile_force_start(): start: 1\n[    1.877699]  (0)[1:swapper/0]rt_pd_manager_probe (1.0.5_MTK)\n[    1.877703]  (0)[1:swapper/0]rt_pd_manager_probe KPOC(0)\n[    1.877714]  (0)[1:swapper/0]rt_pd_manager_probe OK!!\n[    1.877766]  (0)[1:swapper/0]log store:sram_dram_buff addr 0x7ffbf000, size 0x40000.\n[    1.877805]  (0)[1:swapper/0][PHY layout]log_store_mem   :   0x7ffbf000 - 0x7fffefff (0x40000)\n[    1.877811]  (0)[1:swapper/0]buff 000000009ad235ce, sig cdab3412 size 40000 pl 20, sz 9753 lk 9773, sz 1a788 p c, l c\n[    1.877824]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.0: mt6360_fled_set_mode set dual off mutex_lock +\n[    1.877828]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.0: mt6360_fled_set_mode set dual off mutex_lock -\n[    1.878041]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.0: mt6360_fled_set_mode set dual off\n[    1.878046]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.0: mt6360_fled_set_mode set dual off mutex_lock +\n[    1.878049]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.0: mt6360_fled_set_mode set dual off mutex_lock -\n[    1.878235]  (0)[1:swapper/0]mt6360_pmu_fled mt6360_pmu_fled.0: mt6360_fled_set_mode set dual off\n[    1.878238]  (0)[1:swapper/0]flashlight: flashlight_get_max_duty: get max duty:45\n[    1.880093]  (0)[1:swapper/0]mtk_cooler_char_curr_cus: thermal/cooler/char_curr mtkcooler_char_curr_pdrv_probe\n[    1.880797]  (0)[1:swapper/0]mtu3_phone musb-hdrc: dr_mode: 3, is_u3_dr: 0, is_u3h_dr: 0\n[    1.887221]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get off_valueL\n[    1.894272]  (0)[1:swapper/0]mtu3_phone musb-hdrc: irq 182\n[    1.894296]  (0)[1:swapper/0]mtu3_phone musb-hdrc: IP version 0x20180724(U3 IP)\n[    1.894414]  (0)[1:swapper/0]mtu3_phone musb-hdrc: DMA 36bits:1\n[    1.894419]  (0)[1:swapper/0]mtu3_phone musb-hdrc: fifosz/epnum: Tx=0x2000/8, Rx=0x2000/8\n[    1.894434]  (0)[1:swapper/0]mtu3_phone musb-hdrc: max_speed: super-speed\n[    1.894581]  (0)[1:swapper/0]mtu3_phone musb-hdrc: switch_port_to_none\n[    1.894637]  (0)[1:swapper/0][MTKPHY]phy_savecurrent\n[    1.897582]  (0)[1:swapper/0]BOOTPROF:      1897.580696:probe: probe=platform_drv_probe drv=mtu3_phone(0xffffff8289c864c8)    17.015923ms\n[    1.898218]  (0)[1:swapper/0]BOOTPROF:      1898.216696:initcall: mtu3_driver_init    17.931769ms\n[    1.898224]  (0)[1:swapper/0][NVT-ts-spi] nvt_driver_init 3162: j22 nvt start\n[    1.898752]  (0)[1:swapper/0][NVT-ts-spi] nvt_ts_probe 2272: start\n[    1.898771]  (0)[1:swapper/0][NVT-ts-spi] nvt_parse_dt 1096: novatek,reset-gpio=315\n[    1.898777]  (0)[1:swapper/0][NVT-ts-spi] nvt_parse_dt 1099: novatek,irq-gpio=314\n[    1.898780]  (0)[1:swapper/0][NVT-ts-spi] nvt_parse_dt 1106: SWRST_N8_ADDR=0x03F0FE\n[    1.898783]  (0)[1:swapper/0][NVT-ts-spi] nvt_parse_dt 1115: SPI_RD_FAST_ADDR=0x03F310\n[    1.898787]  (0)[1:swapper/0][NVT-ts-spi] nvt_parse_dt 1123: config-array-size: 2\n[    1.898790]  (0)[1:swapper/0][NVT-ts-spi] nvt_parse_dt 1131: spi-max-frequency: 5000000\n[    1.898794]  (0)[1:swapper/0][NVT-ts-spi] nvt_parse_dt 1153: tp vendor: 83\n[    1.898797]  (0)[1:swapper/0][NVT-ts-spi] nvt_parse_dt 1161: tp hw version: 66\n[    1.898800]  (0)[1:swapper/0][NVT-ts-spi] nvt_parse_dt 1169: fw_name: novatek_nt36672a_g7_fw01.bin\n[    1.898803]  (0)[1:swapper/0][NVT-ts-spi] nvt_parse_dt 1177: mp_name: novatek_nt36672a_g7_mp01.bin\n[    1.898805]  (0)[1:swapper/0][NVT-ts-spi] nvt_parse_dt 1153: tp vendor: 70\n[    1.898808]  (0)[1:swapper/0][NVT-ts-spi] nvt_parse_dt 1161: tp hw version: 54\n[    1.898811]  (0)[1:swapper/0][NVT-ts-spi] nvt_parse_dt 1169: fw_name: novatek_nt36672a_g7_fw02.bin\n[    1.898813]  (0)[1:swapper/0][NVT-ts-spi] nvt_parse_dt 1177: mp_name: novatek_nt36672a_g7_mp02.bin\n[    1.898815]  (0)[1:swapper/0][NVT-ts-spi] nvt_parse_dt 1144: parse 2 config down\n[    1.898829]  (0)[1:swapper/0][NVT-ts-spi] nvt_ts_probe 2353: mode=0, max_speed_hz=5000000\n[    1.929736]  (0)[1:swapper/0][NVT-ts-spi] nvt_ts_probe 2389: start check chip\n[    1.935320]  (0)[1:swapper/0][NVT-ts-spi] nvt_ts_check_chip_ver_trim 1604: buf[1]=0x0A, buf[2]=0x00, buf[3]=0x00, buf[4]=0x72, buf[5]=0x66, buf[6]=0x03\n[    1.935334]  (0)[1:swapper/0][NVT-ts-spi] nvt_ts_check_chip_ver_trim 1623: This is NVT touch IC\n[    1.935343]  (0)[1:swapper/0][NVT-ts-spi] nvt_ts_probe 2396: finish check chip\n[    1.935472]  (0)[1:swapper/0]input: NVTCapacitiveTouchScreen as /devices/virtual/input/input2\n[    1.935532]  (0)[1:swapper/0][NVT-ts-spi] nvt_ts_probe 2472: int_trigger_type=1\n[    1.935727]  (0)[1:swapper/0][NVT-ts-spi] nvt_irq_enable 244: enable=0, desc->depth=1\n[    1.935734]  (0)[1:swapper/0][NVT-ts-spi] nvt_ts_probe 2481: request irq 40 succeed\n[    1.935763]  (0)[1:swapper/0][NVT-ts-spi] nvt_get_panel_type 1222: mismatch panel type, use default fw\n[    1.946067]  (0)[1:swapper/0][NVT-ts-spi] nvt_ts_probe 2529: NVT_TOUCH_ESD_PROTECT is 0\n[    1.946094]  (0)[1:swapper/0][NVT-ts-spi] nvt_flash_proc_init 943: Succeeded!\n[    1.946105]  (0)[1:swapper/0][NVT-ts-spi] nvt_flash_proc_init 946: ============================================================\n[    1.946114]  (0)[1:swapper/0][NVT-ts-spi] nvt_flash_proc_init 947: Create /proc/NVTSPI\n[    1.946123]  (0)[1:swapper/0][NVT-ts-spi] nvt_flash_proc_init 948: ============================================================\n[    1.946140]  (0)[1:swapper/0][NVT-ts-spi] nvt_extra_proc_init 804: create proc/nvt_fw_version Succeeded!\n[    1.946155]  (0)[1:swapper/0][NVT-ts-spi] nvt_extra_proc_init 812: create proc/nvt_baseline Succeeded!\n[    1.946169]  (0)[1:swapper/0][NVT-ts-spi] nvt_extra_proc_init 820: create proc/nvt_raw Succeeded!\n[    1.946184]  (0)[1:swapper/0][NVT-ts-spi] nvt_extra_proc_init 828: create proc/nvt_diff Succeeded!\n[    1.946197]  (0)[1:swapper/0][NVT-ts-spi] nvt_extra_proc_init 846: create proc/tp_lockdown_info Succeeded!\n[    1.946210]  (0)[1:swapper/0][NVT-ts-spi] nvt_extra_proc_init 854: create proc/nvt_pocket_palm_switch Succeeded!\n[    1.946249]  (0)[1:swapper/0][NVT-ts-spi] nvt_mp_proc_init 2401: create /proc/nvt_selftest Succeeded!\n[    1.946264]  (0)[1:swapper/0][NVT-ts-spi] nvt_mp_proc_init 2410: create /proc/tp_selftest Succeeded!\n[    1.946278]  (0)[1:swapper/0][NVT-ts-spi] nvt_test_data_proc_init 2651: create proc/nvt_test_data Succeeded!\n[    1.946388]  (0)[1:swapper/0][NVT-ts-spi] nvt_ts_probe 2633: register callback for charger mode successful\n[    1.946429]  (0)[1:swapper/0][NVT-ts-spi] nvt_init_touchmode_data 1794: nvt_init_touchmode_data,ENTER\n[    1.946446]  (0)[1:swapper/0][NVT-ts-spi] nvt_init_touchmode_data 1851: mode:0, set cur:0, get cur:0, def:0 min:0 max:1\n[    1.946458]  (0)[1:swapper/0][NVT-ts-spi] nvt_init_touchmode_data 1851: mode:1, set cur:0, get cur:0, def:0 min:0 max:1\n[    1.946470]  (0)[1:swapper/0][NVT-ts-spi] nvt_init_touchmode_data 1851: mode:2, set cur:0, get cur:0, def:0 min:0 max:2\n[    1.946482]  (0)[1:swapper/0][NVT-ts-spi] nvt_init_touchmode_data 1851: mode:3, set cur:0, get cur:0, def:0 min:0 max:2\n[    1.946494]  (0)[1:swapper/0][NVT-ts-spi] nvt_init_touchmode_data 1851: mode:4, set cur:0, get cur:0, def:0 min:0 max:0\n[    1.946505]  (0)[1:swapper/0][NVT-ts-spi] nvt_init_touchmode_data 1851: mode:5, set cur:0, get cur:0, def:0 min:0 max:0\n[    1.946517]  (0)[1:swapper/0][NVT-ts-spi] nvt_init_touchmode_data 1851: mode:6, set cur:0, get cur:0, def:0 min:0 max:0\n[    1.946529]  (0)[1:swapper/0][NVT-ts-spi] nvt_init_touchmode_data 1851: mode:7, set cur:0, get cur:0, def:2 min:0 max:3\n[    1.946540]  (0)[1:swapper/0][NVT-ts-spi] nvt_init_touchmode_data 1851: mode:8, set cur:0, get cur:0, def:0 min:0 max:3\n[    1.946552]  (0)[1:swapper/0][NVT-ts-spi] nvt_init_touchmode_data 1851: mode:9, set cur:0, get cur:0, def:0 min:0 max:0\n[    1.946564]  (0)[1:swapper/0][NVT-ts-spi] nvt_init_touchmode_data 1851: mode:10, set cur:0, get cur:0, def:0 min:0 max:0\n[    1.946576]  (0)[1:swapper/0][NVT-ts-spi] nvt_init_touchmode_data 1851: mode:11, set cur:0, get cur:0, def:0 min:0 max:0\n[    1.946588]  (0)[1:swapper/0][NVT-ts-spi] nvt_init_touchmode_data 1851: mode:12, set cur:0, get cur:0, def:0 min:0 max:1\n[    1.946600]  (0)[1:swapper/0][NVT-ts-spi] nvt_init_touchmode_data 1851: mode:13, set cur:0, get cur:0, def:0 min:0 max:0\n[    1.946612]  (0)[1:swapper/0][NVT-ts-spi] nvt_init_touchmode_data 1851: mode:14, set cur:0, get cur:0, def:0 min:0 max:0\n[    1.946624]  (0)[1:swapper/0][NVT-ts-spi] nvt_init_touchmode_data 1851: mode:15, set cur:0, get cur:0, def:0 min:0 max:0\n[    1.946636]  (0)[1:swapper/0][NVT-ts-spi] nvt_init_touchmode_data 1851: mode:16, set cur:0, get cur:0, def:0 min:0 max:0\n[    1.946648]  (0)[1:swapper/0][NVT-ts-spi] nvt_init_touchmode_data 1851: mode:17, set cur:0, get cur:0, def:0 min:0 max:0\n[    1.946660]  (0)[1:swapper/0][NVT-ts-spi] nvt_init_touchmode_data 1851: mode:18, set cur:0, get cur:0, def:0 min:0 max:0\n[    1.946668]  (0)[1:swapper/0][MI_TOUCH][xiaomitouch_register_modedata:162]Enter\n[    1.946678]  (0)[1:swapper/0][NVT-ts-spi] nvt_ts_probe 2653: end\n[    1.946690]  (0)[1:swapper/0][NVT-ts-spi] nvt_irq_enable 244: enable=1, desc->depth=0\n[    1.946720]  (0)[1:swapper/0]BOOTPROF:      1946.714850:probe: probe=platform_drv_probe drv=NVT-ts-spi(0xffffff8289c942f8)    47.947923ms\n[    1.946910]  (0)[1:swapper/0][NVT-ts-spi] nvt_driver_init 3171: finished\n[    1.946934]  (0)[1:swapper/0]BOOTPROF:      1946.930157:initcall: nvt_driver_init    48.694770ms\n[    1.946945]  (0)[1:swapper/0][FTS_TS]fts_ts_init: Enter\n[    1.947824]  (0)[1:swapper/0][FTS_TS/I]fts_ts_probe:Touch Screen(SPI BUS) driver prboe...\n[    1.947829]  (0)[1:swapper/0][FTS_TS]fts_ts_probe_entry: Enter\n[    1.947834]  (0)[1:swapper/0][FTS_TS/I]fts_ts_probe_entry:Focaltech V3.1 20190420\n[    1.947837]  (0)[1:swapper/0][FTS_TS]fts_parse_dt: Enter\n[    1.947844]  (0)[1:swapper/0][FTS_TS/I]fts_get_dt_coords:display x(0 1080) y(0 2340)\n[    1.947872]  (0)[1:swapper/0][FTS_TS/I]fts_parse_dt:max touch number:10, irq gpio:314, reset gpio:315, spi freq: 4000000\n[    1.947876]  (0)[1:swapper/0][FTS_TS]fts_parse_dt: Exit(1361)\n[    1.947880]  (0)[1:swapper/0][TP_SPI]: ts_xsfer belong to NVT-ts-spi, can't tmporary use it\n[    1.947884]  (0)[1:swapper/0][FTS_TS/E]fts_ts_probe_entry:ts_xsfer has been used, exit fts probe\n[    1.947888]  (0)[1:swapper/0][FTS_TS]fts_ts_probe_entry: Exit(2145)\n[    1.947891]  (0)[1:swapper/0][FTS_TS/E]fts_ts_probe:Touch Screen(SPI BUS) driver probe fail\n[    1.947907]  (0)[1:swapper/0]fts_ts: probe of ts_focal failed with error -1\n[    1.947954]  (0)[1:swapper/0][FTS_TS]fts_ts_init: Exit(2403)\n[    1.947960]  (0)[1:swapper/0][GT9886-INF][goodix_i2c_init:2418] GT9886 i2c layer init\n[    1.948040]  (0)[1:swapper/0][GT9886-INF][goodix_fwu_module_init:1509] run goodix_fwu_module\n\n[    1.948046]  (0)[1:swapper/0][GT9886-INF][goodix_register_ext_module:146] goodix_register_ext_module IN\n[    1.948051]  (0)[1:swapper/0][GT9886-INF][goodix_register_ext_module:151] goodix_register_ext_module OUT\n[    1.948056]  (0)[1:swapper/0][GT9896s-INF][gt9896s_spi_init:1443] GT9896S SPI driver init\n[    1.948082]  (0)[1:swapper/0][GT9896s-INF][gt9896s_fwu_module_init:1616] gt9896s_fwupdate_module_ini IN\n[    1.948087]  (0)[1:swapper/0][GT9896s-INF][gt9896s_register_ext_module:152] gt9896s_register_ext_module IN\n[    1.948092]  (0)[1:swapper/0][GT9896s-INF][gt9896s_register_ext_module:157] gt9896s_register_ext_module OUT\n[    1.948096]  (0)[1:swapper/0][goodixFP] gf_init, 2547, enter\n[    1.948100]  (0)[1:swapper/0]gf_init 2548\n[    1.948137]  (0)[1:swapper/0][goodixFP] gf_probe, 2110, enter\n[    1.948143]  (0)[1:swapper/0][goodixFP] cluster_num = 2 \n[    1.948147]  (0)[1:swapper/0][goodixFP]  Setting gf device configuration==========\n[    1.948293]  (0)[72:kworker/0:1][GT9886-INF][__do_register_ext_module:63] __do_register_ext_module IN, goodix_modules.core_exit:1\n[    1.948317]  (0)[352:kworker/0:2][GT9896s-INF][__do_register_ext_module:57] __do_register_ext_module IN\n[    1.948821]  (0)[1:swapper/0][goodixFP] gf_probe, regulator_value 3000000!!\n[    1.948826]  (0)[1:swapper/0][goodixFP] gf_get_gpio_dts_info, from dts pinctrl\n[    1.948996]  (0)[1:swapper/0][goodixFP] [gf][goodix_test] gf_get_gpio_dts_info node = 000000003265b3fa\n[    1.949020]  (0)[1:swapper/0][goodixFP] [gf][goodix_test] gf_get_gpio_dts_info virq = 74\n[    1.949026]  (0)[1:swapper/0][goodixFP] [gf][goodix_test] gf_get_gpio_dts_info CONFIG_MTK_EIC define\n[    1.949203]  (0)[1:swapper/0][goodixFP] [gf][goodix_test] gf_get_gpio_dts_info goodix_irq found\n[    1.949209]  (0)[1:swapper/0][goodixFP] gf_get_gpio_dts_info, get pinctrl success!\n[    1.949480]  (0)[1:swapper/0][goodixFP] gf_get_sensor_dts_info, get netlink event[30] from dts\n[    1.949485]  (0)[1:swapper/0]gf_probe 2216 now get dts info done!\n[    1.949487]  (0)[1:swapper/0]gf_hw_power_enable\n[    1.949492]  (0)[1:swapper/0]gf_hw_power_enable 373 now reset sensor,pull low\n[    1.957160]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get on_valueR\n[    1.964512]  (0)[1:swapper/0]gf_hw_power_enable 382 now reset sensor pull high\n[    1.964528]  (0)[1:swapper/0]gf_probe 2220 now enable spi clk API\n[    1.964532]  (0)[1:swapper/0]gf_spi_clk_enable : ree control spi clk, enable spi clk\n[    1.964546]  (0)[1:swapper/0][goodixFP] gf_spi_clk_enable : increase spi clk ref to 1\n[    1.964552]  (0)[1:swapper/0]gf_probe 2223 now enable spi clk Done\n[    1.964565]  (0)[1:swapper/0][goodixFP] gf_probe, Success create authen_fd node.\n[    1.965575]  (0)[1:swapper/0][goodixFP] gf_spi_read_bytes 2005, now spi-clock:1000000\n[    1.965770]  (0)[1:swapper/0]gf_probe rx_test chip id:0x0 0x0 0x0 0x0 \n[    1.965777]  (0)[1:swapper/0][goodixFP] gf_probe, get goodix FP sensor chipID fail!!\n[    1.965782]  (0)[1:swapper/0]gf_probe cannot find the sensor,now exit\n[    1.965786]  (0)[1:swapper/0]gf_hw_power_enable\n[    1.965791]  (0)[1:swapper/0]gf_hw_power_enable 387 do nothing\n[    1.965796]  (0)[1:swapper/0][goodixFP] gf_spi_clk_enable : decrease spi clk ref to 0\n[    1.965801]  (0)[1:swapper/0]gf_spi_clk_enable :ree control spi clk, disable spi clk\n[    1.965831]  (0)[1:swapper/0]BOOTPROF:      1965.828619:probe: probe=spi_drv_probe drv=goodix_fp(0xffffff8289d06880)    17.690846ms\n[    1.966008]  (0)[1:swapper/0][goodixFP] gf_init, 2563, exit\n[    1.966024]  (0)[1:swapper/0]BOOTPROF:      1966.021542:initcall: gf_init    17.918462ms\n[    1.966031]  (0)[1:swapper/0]fpc1022_init\n[    1.966251]  (0)[1:swapper/0]------------[ cut here ]------------\n[    1.966267]  (0)[1:swapper/0]WARNING: CPU: 0 PID: 1 at ../drivers/base/dd.c:387 driver_probe_device+0x5c8/0x648\n[    1.966272]  (0)[1:swapper/0]Modules linked in:\n[    1.966284] -(0)[1:swapper/0]CPU: 0 PID: 1 Comm: swapper/0 Tainted: G S      W       4.14.141-g37f4efb4a #249\n[    1.966289] -(0)[1:swapper/0]Hardware name: MT6853T (DT)\n[    1.966294] -(0)[1:swapper/0]Call trace:\n[    1.966307] -(0)[1:swapper/0][<ffffff828808ca04>] dump_backtrace+0x0/0x508\n[    1.966318] -(0)[1:swapper/0][<ffffff828808cf20>] show_stack+0x14/0x1c\n[    1.966330] -(0)[1:swapper/0][<ffffff8288fc1218>] dump_stack+0xc4/0xfc\n[    1.966341] -(0)[1:swapper/0][<ffffff82880ae1e0>] __warn+0xdc/0x168\n[    1.966350] -(0)[1:swapper/0][<ffffff82880ae3b0>] warn_slowpath_null+0x1c/0x24\n[    1.966360] -(0)[1:swapper/0][<ffffff828860e974>] driver_probe_device+0x5c8/0x648\n[    1.966369] -(0)[1:swapper/0][<ffffff828860ecc4>] __driver_attach+0xe0/0x180\n[    1.966379] -(0)[1:swapper/0][<ffffff828860c3ac>] bus_for_each_dev+0x80/0xc8\n[    1.966388] -(0)[1:swapper/0][<ffffff828860ebdc>] driver_attach+0x20/0x28\n[    1.966398] -(0)[1:swapper/0][<ffffff828860cb90>] bus_add_driver+0x134/0x23c\n[    1.966408] -(0)[1:swapper/0][<ffffff828860fd14>] driver_register+0xa4/0xf0\n[    1.966417] -(0)[1:swapper/0][<ffffff82886112cc>] __platform_driver_register+0x40/0x48\n[    1.966426] -(0)[1:swapper/0][<ffffff828965b148>] fpc1022_init+0x44/0x88\n[    1.966434] -(0)[1:swapper/0][<ffffff828808416c>] do_one_initcall+0x124/0x1f4\n[    1.966444] -(0)[1:swapper/0][<ffffff8289600fdc>] kernel_init_freeable+0x198/0x234\n[    1.966454] -(0)[1:swapper/0][<ffffff8288fd5748>] kernel_init+0x10/0x214\n[    1.966462] -(0)[1:swapper/0][<ffffff8288085658>] ret_from_fork+0x10/0x18\n[    1.966468]  (0)[1:swapper/0]---[ end trace bebbd334637347ce ]---\n[    1.966519]  (0)[1:swapper/0]fpc1022_irq fingerprint: fpc1022_platform_probe\n[    1.966528]  (0)[1:swapper/0]fpc1022_irq fingerprint: fpc1022_platform_probe test new\n[    1.966537]  (0)[1:swapper/0]spi_read_hwid 720, now spi-clock:1000000\n[    1.966683]  (0)[1:swapper/0]check_hwid, fpc1022 chip version is 0x18, 0x11\n[    1.966691]  (0)[1:swapper/0]fpc hardware_id[0]= 0x18 id[1]=0x11\n[    1.966696]  (0)[1:swapper/0]fpc match hardware_id = 0x1811 is true\n[    1.966702]  (0)[1:swapper/0]fpc check_hwid, fpc1022 chip version check pass, time_out=1\n[    1.966710]  (0)[1:swapper/0]fpc1022_get_irqNum\n[    1.966932]  (0)[1:swapper/0]fpc1022_get_irqNum , fpc1022->irq_num = 74, fpc1022->irq_gpio = 348\n[    1.967087]  (0)[1:swapper/0]input: fpc_irq@fingerprint as /devices/platform/fingerprint/input/input3\n[    1.967336]  (0)[1:swapper/0]fpc1022_irq fingerprint: requested irq 74\n[    1.972967]  (0)[1:swapper/0]fpc1022_irq fingerprint: IRQ after reset 1\n[    1.972982]  (0)[1:swapper/0]fpc1022_irq fingerprint: fpc1022_platform_probe: ok\n[    1.974112]  (0)[1:swapper/0]fpc1022_init: register platform driver success\n[    1.974216]  (0)[1:swapper/0]mt-rtc mt6359-rtc: setting system clock to 2021-07-12 15:36:08 UTC (1626104168)\n[    1.975433]  (0)[1:swapper/0]mtk_charger_probe: starts\n[    1.975447]  (0)[1:swapper/0]mtk_charger_parse_dt: starts\n[    1.975666]  (0)[1:swapper/0]use default pe40_max_vbus:9000\n[    1.975680]  (0)[1:swapper/0]use default pe40_max_ibus:3000\n[    1.975749]  (0)[1:swapper/0]use default CHG2_EFF:90\n[    1.975790]  (0)[1:swapper/0]use default MAX_CHARGING_TIME:43200\n[    1.975803]  (0)[1:swapper/0]use default BC12_CHARGER:0\n[    1.975810]  (0)[1:swapper/0]found SwitchCharging2\n[    1.975822]  (0)[1:swapper/0]Found primary charger [mt6360_chg]\n[    1.975831]  (0)[1:swapper/0]Can't find primary divider charger\n[    1.975839]  (0)[1:swapper/0]Can't find secondary divider charger\n[    1.975847]  (0)[1:swapper/0]pe50 init fail\n[    1.975856]  (0)[1:swapper/0]pe40_init: done\n[    1.975865]  (0)[1:swapper/0]algorithm name:SwitchCharging2\n[    1.975956]  (0)[1:swapper/0]mtk_charger_start_timer: alarm timer start:11 966327691\n[    1.975966] -(0)[1:swapper/0]alarmtimer_enqueue, 11966327691\n[    1.976260]  (0)[1:swapper/0]Found PD adapter [(null)]\n[    1.976413]  (0)[1:swapper/0]mtk_charger_get_atm_mode: atm_enabled = 0\n[    1.984118]  (0)[1:swapper/0][CH3_DBG] bat_cur = -3131\n[    2.006064]  (0)[1:swapper/0][SW_JEITA] tmp:34 sm:3\n[    2.006096]  (0)[1:swapper/0]BOOTPROF:      2006.094773:probe: probe=platform_drv_probe drv=charger(0xffffff8289d224a8)    30.668308ms\n[    2.006179]  (0)[1:swapper/0]BOOTPROF:      2006.177927:initcall: mtk_charger_init    31.948308ms\n[    2.016917]  (1)[5:kworker/u16:0][wdk] bind thread 394 to cpu 0\n[    2.017153]  (2)[5:kworker/u16:0][wdk] bind thread 395 to cpu 1\n[    2.017237]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0xff,7,1,2016697235,0,0,[2017222850,20000000]\n[    2.017413]  (2)[5:kworker/u16:0][wdk] bind thread 396 to cpu 2\n[    2.017460]  (2)[396:wdtk-2][wdk-c] cpu=2,lbit=0x6,cbit=0xff,7,1,2016697235,0,0,[2017457004,19999766]\n[    2.017488]  (2)[5:kworker/u16:0][wdk] bind thread 397 to cpu 3\n[    2.017509]  (3)[397:wdtk-3][wdk-c] cpu=3,lbit=0xe,cbit=0xff,7,1,2016697235,0,0,[2017505927,19999717]\n[    2.017554]  (1)[5:kworker/u16:0][wdk] bind thread 398 to cpu 4\n[    2.017577]  (4)[398:wdtk-4][wdk-c] cpu=4,lbit=0x1e,cbit=0xff,7,1,2016697235,0,0,[2017573850,19999649]\n[    2.017615]  (2)[5:kworker/u16:0][wdk] bind thread 399 to cpu 5\n[    2.017637]  (5)[399:wdtk-5][wdk-c] cpu=5,lbit=0x3e,cbit=0xff,7,1,2016697235,0,0,[2017633619,19999589]\n[    2.017672]  (1)[5:kworker/u16:0][wdk] bind thread 400 to cpu 6\n[    2.017733]  (2)[5:kworker/u16:0][wdk] bind thread 401 to cpu 7\n[    2.017742]  (2)[5:kworker/u16:0][wdk] WDT start kicker done CPU_NR=8\n[    2.017746]  (2)[5:kworker/u16:0][wdk]init_wk done late_initcall cpus_kick_bit=0xff -----\n[    2.017902]  (0)[394:wdtk-0][wdk-c] cpu=0,lbit=0x3f,cbit=0xff,7,1,2016697235,0,0,[2017898542,19999324]\n[    2.018375] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_3rd_dac_hires), p(audio_h_sel) is enabled\n[    2.018383] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_adda6_adc_hires), p(audio_h_sel) is enabled\n[    2.018388] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_adc_hires_tml), p(audio_h_sel) is enabled\n[    2.018393] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_adc_hires), p(audio_h_sel) is enabled\n[    2.018399] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_dac_hires), p(audio_h_sel) is enabled\n[    2.018411] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_apll2_tuner), p(aud_engen2_sel) is enabled\n[    2.018416] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_24m), p(aud_engen2_sel) is enabled\n[    2.018441] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_tdm_ck), p(aud_1_sel) is enabled\n[    2.018449] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_apll_tuner), p(aud_engen1_sel) is enabled\n[    2.018454] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_22m), p(aud_engen1_sel) is enabled\n[    2.018464] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mfgcfg_bg3d), p(mfg_pll_sel) is enabled\n[    2.018474] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ipe_gals), p(img2_sel) is disabled\n[    2.018481] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ipe_rsc), p(ipe_sel) is disabled\n[    2.018485] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ipe_fe), p(ipe_sel) is disabled\n[    2.018489] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ipe_fd), p(ipe_sel) is disabled\n[    2.018493] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ipe_smi_subcom), p(ipe_sel) is disabled\n[    2.018497] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ipe_larb20), p(ipe_sel) is disabled\n[    2.018501] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ipe_larb19), p(ipe_sel) is disabled\n[    2.018507] -(0)[1:swapper/0]mtk_cg_is_enabled: c(imgsys2_gals), p(img1_sel) is disabled\n[    2.018510] -(0)[1:swapper/0]mtk_cg_is_enabled: c(imgsys2_mss), p(img1_sel) is disabled\n[    2.018514] -(0)[1:swapper/0]mtk_cg_is_enabled: c(imgsys2_wpe), p(img1_sel) is disabled\n[    2.018518] -(0)[1:swapper/0]mtk_cg_is_enabled: c(imgsys2_mfb), p(img1_sel) is disabled\n[    2.018522] -(0)[1:swapper/0]mtk_cg_is_enabled: c(imgsys2_larb10), p(img1_sel) is disabled\n[    2.018526] -(0)[1:swapper/0]mtk_cg_is_enabled: c(imgsys2_larb9), p(img1_sel) is disabled\n[    2.018529] -(0)[1:swapper/0]mtk_cg_is_enabled: c(imgsys1_gals), p(img1_sel) is disabled\n[    2.018533] -(0)[1:swapper/0]mtk_cg_is_enabled: c(imgsys1_dip), p(img1_sel) is disabled\n[    2.018537] -(0)[1:swapper/0]mtk_cg_is_enabled: c(imgsys1_larb10), p(img1_sel) is disabled\n[    2.018541] -(0)[1:swapper/0]mtk_cg_is_enabled: c(imgsys1_larb9), p(img1_sel) is disabled\n[    2.018547] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mdp_img_dl_rel1_as1), p(mdp_sel) is disabled\n[    2.018551] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mdp_img_dl_rel0_as0), p(mdp_sel) is disabled\n[    2.018555] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mdp_color0), p(mdp_sel) is disabled\n[    2.018558] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mdp_aal1), p(mdp_sel) is disabled\n[    2.018562] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mdp_aal0), p(mdp_sel) is disabled\n[    2.018566] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mdp_fake_eng0), p(mdp_sel) is disabled\n[    2.018569] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mdp_rsz1), p(mdp_sel) is disabled\n[    2.018573] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mdp_wrot1), p(mdp_sel) is disabled\n[    2.018577] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mdp_mutex0), p(mdp_sel) is disabled\n[    2.018580] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mdp_hdr0), p(mdp_sel) is disabled\n[    2.018584] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mdp_rsz0), p(mdp_sel) is disabled\n[    2.018588] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mdp_wrot0), p(mdp_sel) is disabled\n[    2.018592] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mdp_apb_bus), p(mdp_sel) is disabled\n[    2.018596] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mdp_smi0), p(mdp_sel) is disabled\n[    2.018600] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mdp_tdshp1), p(mdp_sel) is disabled\n[    2.018603] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mdp_rdma1), p(mdp_sel) is disabled\n[    2.018607] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mdp_img_dl_async1), p(mdp_sel) is disabled\n[    2.018611] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mdp_img_dl_async0), p(mdp_sel) is disabled\n[    2.018615] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mdp_tdshp0), p(mdp_sel) is disabled\n[    2.018619] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mdp_rdma0), p(mdp_sel) is disabled\n[    2.018626] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_fbist2fpc), p(msdc50_0_sel) is enabled\n[    2.018631] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_md_msdc0), p(msdc50_0_sel) is enabled\n[    2.018634] -(0)[1:swapper/0]disable_unused - ifrao_md_msdc0\n[    2.018638] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_ap_msdc0), p(msdc50_0_sel) is enabled\n[    2.018640] -(0)[1:swapper/0]disable_unused - ifrao_ap_msdc0\n[    2.018644] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_msdc2sf), p(msdc50_0_sel) is enabled\n[    2.018647] -(0)[1:swapper/0]disable_unused - ifrao_msdc2sf\n[    2.018651] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_msdc1sf), p(msdc50_0_sel) is enabled\n[    2.018653] -(0)[1:swapper/0]disable_unused - ifrao_msdc1sf\n[    2.018657] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_msdc0sf), p(msdc50_0_sel) is enabled\n[    2.018660] -(0)[1:swapper/0]disable_unused - ifrao_msdc0sf\n[    2.018664] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_msdc0_clk), p(msdc50_0_sel) is enabled\n[    2.018667] -(0)[1:swapper/0]disable_unused - ifrao_msdc0_clk\n[    2.018673] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_ufs), p(ufs_sel) is disabled\n[    2.018677] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_unipro_sysclk), p(ufs_sel) is disabled\n[    2.018683] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_msdc1_clk), p(msdc30_1_sel) is disabled\n[    2.018704] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ipe_dpe), p(dpe_sel) is disabled\n[    2.018710] -(0)[1:swapper/0]mtk_en_is_enabled: c(venc_set5_gals), p(venc_sel) is disabled\n[    2.018714] -(0)[1:swapper/0]mtk_en_is_enabled: c(jpgenc), p(venc_sel) is disabled\n[    2.018718] -(0)[1:swapper/0]mtk_en_is_enabled: c(venc_set1_venc), p(venc_sel) is disabled\n[    2.018722] -(0)[1:swapper/0]mtk_en_is_enabled: c(venc_set0_larb), p(venc_sel) is disabled\n[    2.018729] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018732] -(0)[1:swapper/0]mtk_cg_is_enabled: c(impws_ap_i2c4), p(ifrao_i2c0) is disabled\n[    2.018735] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018739] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018741] -(0)[1:swapper/0]mtk_cg_is_enabled: c(impws_ap_i2c2), p(ifrao_i2c0) is disabled\n[    2.018744] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018748] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018751] -(0)[1:swapper/0]mtk_cg_is_enabled: c(impws_ap_i2c1), p(ifrao_i2c0) is disabled\n[    2.018754] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018757] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018760] -(0)[1:swapper/0]mtk_cg_is_enabled: c(impw_ap_i2c0), p(ifrao_i2c0) is disabled\n[    2.018763] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018767] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018770] -(0)[1:swapper/0]mtk_cg_is_enabled: c(imps_ap_i2c9), p(ifrao_i2c0) is disabled\n[    2.018773] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018776] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018779] -(0)[1:swapper/0]mtk_cg_is_enabled: c(imps_ap_i2c8), p(ifrao_i2c0) is disabled\n[    2.018782] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018785] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018788] -(0)[1:swapper/0]mtk_cg_is_enabled: c(imps_ap_i2c7), p(ifrao_i2c0) is disabled\n[    2.018791] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018795] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018798] -(0)[1:swapper/0]mtk_cg_is_enabled: c(imps_ap_i2c5), p(ifrao_i2c0) is disabled\n[    2.018801] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018805] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018808] -(0)[1:swapper/0]mtk_cg_is_enabled: c(impn_ap_i2c6), p(ifrao_i2c0) is disabled\n[    2.018810] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018814] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018817] -(0)[1:swapper/0]mtk_cg_is_enabled: c(impe_ap_i2c3), p(ifrao_i2c0) is disabled\n[    2.018820] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018824] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018826] -(0)[1:swapper/0]mtk_cg_is_enabled: c(impc_ap_i2c11), p(ifrao_i2c0) is disabled\n[    2.018829] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018833] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018836] -(0)[1:swapper/0]mtk_cg_is_enabled: c(impc_ap_i2c10), p(ifrao_i2c0) is disabled\n[    2.018838] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018842] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c0), p(i2c_sel) is disabled\n[    2.018848] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_ssusb_xhci), p(ssusb_xhci_sel) is disabled\n[    2.018854] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_msdc0_aes_clk), p(aes_msdcfde_sel) is enabled\n[    2.018856] -(0)[1:swapper/0]disable_unused - ifrao_msdc0_aes_clk\n[    2.018862] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_aes), p(aes_ufsfde_sel) is disabled\n[    2.018869] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mm_disp_fake_eng1), p(disp_sel) is enabled\n[    2.018874] -(0)[1:swapper/0]disable_unused - mm_disp_fake_eng1\n[    2.018877] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mm_disp_fake_eng0), p(disp_sel) is enabled\n[    2.018881] -(0)[1:swapper/0]disable_unused - mm_disp_fake_eng0\n[    2.018885] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mm_disp_cm0), p(disp_sel) is enabled\n[    2.018888] -(0)[1:swapper/0]disable_unused - mm_disp_cm0\n[    2.018892] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mm_disp_spr0), p(disp_sel) is enabled\n[    2.018896] -(0)[1:swapper/0]disable_unused - mm_disp_spr0\n[    2.018900] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mm_disp_dsc_wrap), p(disp_sel) is enabled\n[    2.018904] -(0)[1:swapper/0]disable_unused - mm_disp_dsc_wrap\n[    2.018908] -(0)[1:swapper/0]mtk_cg_is_enabled: c(mm_disp_wdma0), p(disp_sel) is enabled\n[    2.018912] -(0)[1:swapper/0]disable_unused - mm_disp_wdma0\n[    2.018919] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_ssusb), p(usb_sel) is disabled\n[    2.018927] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_rb_camtg), p(cam_sel) is disabled\n[    2.018931] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_rb_cam), p(cam_sel) is disabled\n[    2.018935] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_rb_larbx), p(cam_sel) is disabled\n[    2.018939] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_ra_camtg), p(cam_sel) is disabled\n[    2.018942] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_ra_cam), p(cam_sel) is disabled\n[    2.018946] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_ra_larbx), p(cam_sel) is disabled\n[    2.018950] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_m_cam2mm_gals), p(cam_sel) is disabled\n[    2.018954] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_m_ccu_gals), p(cam_sel) is disabled\n[    2.018958] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_m_fake_eng), p(cam_sel) is disabled\n[    2.018961] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_m_reserved2), p(cam_sel) is disabled\n[    2.018965] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_m_mraw0), p(cam_sel) is disabled\n[    2.018969] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_m_ccu1), p(cam_sel) is disabled\n[    2.018972] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_m_ccu0), p(cam_sel) is disabled\n[    2.018976] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_m_camsv3), p(cam_sel) is disabled\n[    2.018979] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_m_camsv2), p(cam_sel) is disabled\n[    2.018983] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_m_camsv1), p(cam_sel) is disabled\n[    2.018987] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_m_seninf), p(cam_sel) is disabled\n[    2.018991] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_m_camtg), p(cam_sel) is disabled\n[    2.018994] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_m_cam), p(cam_sel) is disabled\n[    2.018998] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_m_reserved0), p(cam_sel) is disabled\n[    2.019002] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_m_larb14), p(cam_sel) is disabled\n[    2.019005] -(0)[1:swapper/0]mtk_cg_is_enabled: c(cam_m_larb13), p(cam_sel) is disabled\n[    2.019011] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_dpmaif_main), p(dpmaif_main_sel) is enabled\n[    2.019014] -(0)[1:swapper/0]disable_unused - ifrao_dpmaif_main\n[    2.019020] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_secore), p(dxcc_sel) is enabled\n[    2.019022] -(0)[1:swapper/0]disable_unused - ifrao_secore\n[    2.019038] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apu1_pclk), p(dsp2_npupll_sel) is enabled\n[    2.019042] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apu1_jtag), p(dsp2_npupll_sel) is enabled\n[    2.019045] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apu1_axi_m), p(dsp2_npupll_sel) is enabled\n[    2.019048] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apu1_apu), p(dsp2_npupll_sel) is enabled\n[    2.019055] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apu0_pclk), p(dsp1_npupll_sel) is enabled\n[    2.019058] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apu0_jtag), p(dsp1_npupll_sel) is enabled\n[    2.019061] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apu0_axi_m), p(dsp1_npupll_sel) is enabled\n[    2.019065] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apu0_apu), p(dsp1_npupll_sel) is enabled\n[    2.019072] -(0)[1:swapper/0]mtk_en_is_enabled: c(vdec_larb1_cken), p(vdec_sel) is disabled\n[    2.019076] -(0)[1:swapper/0]mtk_en_is_enabled: c(vdec_active), p(vdec_sel) is disabled\n[    2.019080] -(0)[1:swapper/0]mtk_en_is_enabled: c(vdec_cken), p(vdec_sel) is disabled\n[    2.019091] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_spi7_ck), p(spi_sel) is disabled\n[    2.019095] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_spi6_ck), p(spi_sel) is disabled\n[    2.019099] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_spi5), p(spi_sel) is disabled\n[    2.019103] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_spi4), p(spi_sel) is disabled\n[    2.019107] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_spi3), p(spi_sel) is disabled\n[    2.019111] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_spi2), p(spi_sel) is disabled\n[    2.019114] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_spi1), p(spi_sel) is disabled\n[    2.019118] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_spi0), p(spi_sel) is disabled\n[    2.019127] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_peru_bus_66m), p(axi_sel) is enabled\n[    2.019129] -(0)[1:swapper/0]disable_unused - ifrao_peru_bus_66m\n[    2.019132] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_peru_bus_133m), p(axi_sel) is enabled\n[    2.019134] -(0)[1:swapper/0]disable_unused - ifrao_peru_bus_133m\n[    2.019137] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_infra_66m), p(axi_sel) is enabled\n[    2.019140] -(0)[1:swapper/0]disable_unused - ifrao_infra_66m\n[    2.019142] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_infra_133m), p(axi_sel) is enabled\n[    2.019145] -(0)[1:swapper/0]disable_unused - ifrao_infra_133m\n[    2.019148] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_66m_peri_mclk), p(axi_sel) is enabled\n[    2.019150] -(0)[1:swapper/0]disable_unused - ifrao_66m_peri_mclk\n[    2.019153] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_ccif4_md), p(axi_sel) is enabled\n[    2.019155] -(0)[1:swapper/0]disable_unused - ifrao_ccif4_md\n[    2.019158] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_ccif4_ap), p(axi_sel) is enabled\n[    2.019160] -(0)[1:swapper/0]disable_unused - ifrao_ccif4_ap\n[    2.019163] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_ccif2_md), p(axi_sel) is enabled\n[    2.019165] -(0)[1:swapper/0]disable_unused - ifrao_ccif2_md\n[    2.019168] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_ccif2_ap), p(axi_sel) is enabled\n[    2.019170] -(0)[1:swapper/0]disable_unused - ifrao_ccif2_ap\n[    2.019173] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_flashif_h_133m), p(axi_sel) is enabled\n[    2.019175] -(0)[1:swapper/0]disable_unused - ifrao_flashif_h_133m\n[    2.019178] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_ccif5_md), p(axi_sel) is enabled\n[    2.019180] -(0)[1:swapper/0]disable_unused - ifrao_ccif5_md\n[    2.019183] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_ccif5_ap), p(axi_sel) is enabled\n[    2.019185] -(0)[1:swapper/0]disable_unused - ifrao_ccif5_ap\n[    2.019188] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_cq_dma), p(axi_sel) is enabled\n[    2.019191] -(0)[1:swapper/0]disable_unused - ifrao_cq_dma\n[    2.019194] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_cldmabclk), p(axi_sel) is enabled\n[    2.019196] -(0)[1:swapper/0]disable_unused - ifrao_cldmabclk\n[    2.019199] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_ccif_md), p(axi_sel) is enabled\n[    2.019201] -(0)[1:swapper/0]disable_unused - ifrao_ccif_md\n[    2.019204] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_audio), p(axi_sel) is enabled\n[    2.019207] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_ccif_ap), p(axi_sel) is enabled\n[    2.019209] -(0)[1:swapper/0]disable_unused - ifrao_ccif_ap\n[    2.019212] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_pcie_pl_p_250m), p(axi_sel) is enabled\n[    2.019215] -(0)[1:swapper/0]disable_unused - ifrao_pcie_pl_p_250m\n[    2.019217] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_pcie_tl_96m), p(axi_sel) is enabled\n[    2.019220] -(0)[1:swapper/0]disable_unused - ifrao_pcie_tl_96m\n[    2.019222] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_pcie_tl_26m), p(axi_sel) is enabled\n[    2.019224] -(0)[1:swapper/0]disable_unused - ifrao_pcie_tl_26m\n[    2.019228] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_ccif1_md), p(axi_sel) is enabled\n[    2.019229] -(0)[1:swapper/0]disable_unused - ifrao_ccif1_md\n[    2.019232] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_ccif1_ap), p(axi_sel) is enabled\n[    2.019235] -(0)[1:swapper/0]disable_unused - ifrao_ccif1_ap\n[    2.019237] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_cpum), p(axi_sel) is enabled\n[    2.019240] -(0)[1:swapper/0]disable_unused - ifrao_cpum\n[    2.019243] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_msdc1), p(axi_sel) is enabled\n[    2.019246] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_msdc0), p(axi_sel) is enabled\n[    2.019248] -(0)[1:swapper/0]disable_unused - ifrao_msdc0\n[    2.019251] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_btif), p(axi_sel) is enabled\n[    2.019253] -(0)[1:swapper/0]disable_unused - ifrao_btif\n[    2.019256] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_dma), p(axi_sel) is enabled\n[    2.019258] -(0)[1:swapper/0]disable_unused - ifrao_dma\n[    2.019261] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_pwm_hclk), p(axi_sel) is enabled\n[    2.019263] -(0)[1:swapper/0]disable_unused - ifrao_pwm_hclk\n[    2.019267] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c1), p(axi_sel) is enabled\n[    2.019269] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_ap_dma), p(ifrao_i2c1) is disabled\n[    2.019272] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c1), p(axi_sel) is enabled\n[    2.019274] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_i2c1), p(axi_sel) is enabled\n[    2.019278] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_gce2), p(axi_sel) is enabled\n[    2.019280] -(0)[1:swapper/0]disable_unused - ifrao_gce2\n[    2.019288] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apuc_md32_32k), p(dsp_sel) is disabled\n[    2.019292] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apuc_iommu_0), p(dsp_sel) is disabled\n[    2.019296] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apuc_md32), p(dsp_sel) is disabled\n[    2.019300] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apuc_tcm), p(dsp_sel) is disabled\n[    2.019304] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apuc_mnoc), p(dsp_sel) is disabled\n[    2.019307] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apuc_edmal_1), p(dsp_sel) is disabled\n[    2.019311] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apuc_edmal_0), p(dsp_sel) is disabled\n[    2.019315] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apuc_edma_1), p(dsp_sel) is disabled\n[    2.019318] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apuc_edma_0), p(dsp_sel) is disabled\n[    2.019322] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apuc_vpu_udi), p(dsp_sel) is disabled\n[    2.019326] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apuc_emi_26m), p(dsp_sel) is disabled\n[    2.019329] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apuc_img_adl), p(dsp_sel) is disabled\n[    2.019333] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apuc_cam_adl), p(dsp_sel) is disabled\n[    2.019337] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apuc_isp), p(dsp_sel) is disabled\n[    2.019340] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apuc_axi), p(dsp_sel) is disabled\n[    2.019344] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apuc_ahb), p(dsp_sel) is disabled\n[    2.019348] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apuc_apu), p(dsp_sel) is disabled\n[    2.019354] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_flash_26m), p(clk26m) is enabled\n[    2.019356] -(0)[1:swapper/0]disable_unused - ifrao_flash_26m\n[    2.019359] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_ufs_bclk), p(clk26m) is enabled\n[    2.019362] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_audio26m), p(clk26m) is enabled\n[    2.019368] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_i2s9_bclk), p(audio_sel) is disabled\n[    2.019372] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_i2s8_bclk), p(audio_sel) is disabled\n[    2.019376] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_i2s7_bclk), p(audio_sel) is disabled\n[    2.019380] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_i2s6_bclk), p(audio_sel) is disabled\n[    2.019384] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_i2s5_bclk), p(audio_sel) is disabled\n[    2.019388] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_3rd_dac_tml), p(audio_sel) is disabled\n[    2.019392] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_3rd_dac_predis), p(audio_sel) is disabled\n[    2.019395] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_3rd_dac), p(audio_sel) is disabled\n[    2.019399] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_adda6_adc), p(audio_sel) is disabled\n[    2.019403] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_general2_asrc), p(audio_sel) is disabled\n[    2.019407] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_general1_asrc), p(audio_sel) is disabled\n[    2.019411] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_connsys_i2s_asrc), p(audio_sel) is disabled\n[    2.019414] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_i2s4_bclk), p(audio_sel) is disabled\n[    2.019418] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_i2s3_bclk), p(audio_sel) is disabled\n[    2.019421] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_i2s2_bclk), p(audio_sel) is disabled\n[    2.019425] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_i2s1_bclk), p(audio_sel) is disabled\n[    2.019429] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_nle), p(audio_sel) is disabled\n[    2.019433] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_tml), p(audio_sel) is disabled\n[    2.019436] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_dac_predis), p(audio_sel) is disabled\n[    2.019440] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_dac), p(audio_sel) is disabled\n[    2.019444] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_adc), p(audio_sel) is disabled\n[    2.019448] -(0)[1:swapper/0]mtk_cg_is_enabled: c(aud_afe), p(audio_sel) is disabled\n[    2.019453] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apuv_qos), p(ipu_if_sel) is enabled\n[    2.019458] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apuv_adl), p(ipu_if_sel) is enabled\n[    2.019462] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apuv_axi), p(ipu_if_sel) is enabled\n[    2.019466] -(0)[1:swapper/0]mtk_cg_is_enabled: c(apuv_ahb), p(ipu_if_sel) is enabled\n[    2.019472] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_sflash_ck), p(sflash_sel) is enabled\n[    2.019475] -(0)[1:swapper/0]disable_unused - ifrao_sflash_ck\n[    2.019483] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_pwm), p(pwm_sel) is enabled\n[    2.019485] -(0)[1:swapper/0]disable_unused - ifrao_pwm\n[    2.019489] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_pwm4), p(pwm_sel) is enabled\n[    2.019492] -(0)[1:swapper/0]disable_unused - ifrao_pwm4\n[    2.019496] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_pwm3), p(pwm_sel) is enabled\n[    2.019499] -(0)[1:swapper/0]disable_unused - ifrao_pwm3\n[    2.019502] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_pwm2), p(pwm_sel) is enabled\n[    2.019505] -(0)[1:swapper/0]disable_unused - ifrao_pwm2\n[    2.019509] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_pwm1), p(pwm_sel) is enabled\n[    2.019511] -(0)[1:swapper/0]disable_unused - ifrao_pwm1\n[    2.019518] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_disp_pwm), p(disp_pwm_sel) is enabled\n[    2.019520] -(0)[1:swapper/0]disable_unused - ifrao_disp_pwm\n[    2.019526] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_uart3), p(uart_sel) is enabled\n[    2.019529] -(0)[1:swapper/0]disable_unused - ifrao_uart3\n[    2.019533] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_uart2), p(uart_sel) is enabled\n[    2.019536] -(0)[1:swapper/0]disable_unused - ifrao_uart2\n[    2.019539] -(0)[1:swapper/0]mtk_cg_is_enabled: c(ifrao_uart1), p(uart_sel) is enabled\n[    2.019635]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x7f,cbit=0xff,7,1,2016697235,0,0,[2019633850,19997589]\n[    2.019637]  (7)[401:wdtk-7][wdk-k] cpu=7,lbit=0xff,cbit=0xff,7,1,2016697235,0,0,[2019635158,19997588]\n[    2.019640]  (6)[400:wdtk-6][thread:400][RT:2019637850] 2021-07-12 15:36:08.545456 UTC;android time 2021-07-12 15:36:08.545456\n[    2.019654]  (0)[1:swapper/0]vs1: disabling\n[    2.019661]  (0)[1:swapper/0]regulator regulator.1: mt6359_regulator_disable:VS1 should not be disable.(use_count=0)\n[    2.019664]  (0)[1:swapper/0]vs1: couldn't disable: -1\n[    2.019670]  (0)[1:swapper/0]vgpu11: disabling\n[    2.019674]  (0)[1:swapper/0]regulator regulator.2: mt6359_regulator_disable:VGPU11 should not be disable.(use_count=0)\n[    2.019676]  (0)[1:swapper/0]vgpu11: couldn't disable: -1\n[    2.019688]  (0)[1:swapper/0]vpu: disabling\n[    2.019692]  (0)[1:swapper/0]regulator regulator.4: mt6359_regulator_disable:VPU should not be disable.(use_count=0)\n[    2.019694]  (0)[1:swapper/0]vpu: couldn't disable: -1\n[    2.019700]  (0)[1:swapper/0]vcore: disabling\n[    2.019704]  (0)[1:swapper/0]regulator regulator.5: mt6359_regulator_disable:VCORE should not be disable.(use_count=0)\n[    2.019706]  (0)[1:swapper/0]vcore: couldn't disable: -1\n[    2.019713]  (0)[1:swapper/0]vs2: disabling\n[    2.019716]  (0)[1:swapper/0]regulator regulator.6: mt6359_regulator_disable:VS2 should not be disable.(use_count=0)\n[    2.019719]  (0)[1:swapper/0]vs2: couldn't disable: -1\n[    2.019731]  (0)[1:swapper/0]vproc2: disabling\n[    2.019734]  (0)[1:swapper/0]regulator regulator.8: mt6359_regulator_disable:VPROC2 should not be disable.(use_count=0)\n[    2.019736]  (0)[1:swapper/0]vproc2: couldn't disable: -1\n[    2.019748]  (0)[1:swapper/0]vaud18: disabling\n[    2.019752]  (0)[1:swapper/0]regulator regulator.10: mt6359_regulator_disable:VAUD18 should not be disable.(use_count=0)\n[    2.019754]  (0)[1:swapper/0]vaud18: couldn't disable: -1\n[    2.019770]  (0)[1:swapper/0]vrf12: disabling\n[    2.019774]  (0)[1:swapper/0]regulator regulator.13: mt6359_regulator_disable:VRF12 should not be disable.(use_count=0)\n[    2.019776]  (0)[1:swapper/0]vrf12: couldn't disable: -1\n[    2.019783]  (0)[1:swapper/0]vsram_proc2: disabling\n[    2.019787]  (0)[1:swapper/0]regulator regulator.15: mt6359_regulator_disable:VSRAM_PROC2 should not be disable.(use_count=0)\n[    2.019789]  (0)[1:swapper/0]vsram_proc2: couldn't disable: -1\n[    2.019795]  (0)[1:swapper/0]vio18: disabling\n[    2.019799]  (0)[1:swapper/0]regulator regulator.16: mt6359_regulator_disable:VIO18 should not be disable.(use_count=0)\n[    2.019801]  (0)[1:swapper/0]vio18: couldn't disable: -1\n[    2.019837]  (0)[1:swapper/0]vaux18: disabling\n[    2.019841]  (0)[1:swapper/0]regulator regulator.23: mt6359_regulator_disable:VAUX18 should not be disable.(use_count=0)\n[    2.019843]  (0)[1:swapper/0]vaux18: couldn't disable: -1\n[    2.019849]  (0)[1:swapper/0]vsram_others: disabling\n[    2.019853]  (0)[1:swapper/0]regulator regulator.24: mt6359_regulator_disable:VSRAM_OTHERS should not be disable.(use_count=0)\n[    2.019855]  (0)[1:swapper/0]vsram_others: couldn't disable: -1\n[    2.019866]  (0)[1:swapper/0]vxo22: disabling\n[    2.019870]  (0)[1:swapper/0]regulator regulator.26: mt6359_regulator_disable:VXO22 should not be disable.(use_count=0)\n[    2.019872]  (0)[1:swapper/0]vxo22: couldn't disable: -1\n[    2.019883]  (0)[1:swapper/0]vbif28: disabling\n[    2.019887]  (0)[1:swapper/0]regulator regulator.28: mt6359_regulator_disable:VBIF28 should not be disable.(use_count=0)\n[    2.019889]  (0)[1:swapper/0]vbif28: couldn't disable: -1\n[    2.019896]  (0)[1:swapper/0]vio28: disabling\n[    2.019899]  (0)[1:swapper/0]regulator regulator.29: mt6359_regulator_disable:VIO28 should not be disable.(use_count=0)\n[    2.019901]  (0)[1:swapper/0]vio28: couldn't disable: -1\n[    2.019917]  (0)[1:swapper/0]va12: disabling\n[    2.019921]  (0)[1:swapper/0]regulator regulator.33: mt6359_regulator_disable:VA12 should not be disable.(use_count=0)\n[    2.019923]  (0)[1:swapper/0]va12: couldn't disable: -1\n[    2.019939]  (0)[1:swapper/0]vufs: disabling\n[    2.019943]  (0)[1:swapper/0]regulator regulator.37: mt6359_regulator_disable:VUFS should not be disable.(use_count=0)\n[    2.019945]  (0)[1:swapper/0]vufs: couldn't disable: -1\n[    2.019951]  (0)[1:swapper/0]vm18: disabling\n[    2.019955]  (0)[1:swapper/0]regulator regulator.38: mt6359_regulator_disable:VM18 should not be disable.(use_count=0)\n[    2.019957]  (0)[1:swapper/0]vm18: couldn't disable: -1\n[    2.019968]  (0)[1:swapper/0]vsram_proc1: disabling\n[    2.019972]  (0)[1:swapper/0]regulator regulator.40: mt6359_regulator_disable:VSRAM_PROC1 should not be disable.(use_count=0)\n[    2.019974]  (0)[1:swapper/0]vsram_proc1: couldn't disable: -1\n[    2.019989]  (0)[1:swapper/0]3_vbuck1: disabling\n[    2.019993]  (0)[1:swapper/0]regulator regulator.42: mt6315_regulator_disable:3_VBUCK1 should not be disable.(use_count=0)\n[    2.019995]  (0)[1:swapper/0]3_vbuck1: couldn't disable: -1\n[    2.020003]  (0)[1:swapper/0]3_vbuck3: disabling\n[    2.020007]  (0)[1:swapper/0]regulator regulator.43: mt6315_regulator_disable:3_VBUCK3 should not be disable.(use_count=0)\n[    2.020009]  (0)[1:swapper/0]3_vbuck3: couldn't disable: -1\n[    2.020016]  (0)[1:swapper/0]3_vbuck4: disabling\n[    2.020020]  (0)[1:swapper/0]regulator regulator.44: mt6315_regulator_disable:3_VBUCK4 should not be disable.(use_count=0)\n[    2.020022]  (0)[1:swapper/0]3_vbuck4: couldn't disable: -1\n[    2.020145]  (0)[1:swapper/0]VDRAM1: disabling\n[    2.020639]  (0)[1:swapper/0]i2c i2c-9: error:addr=0x8,irq_stat=0x3,ch_offset=0x0,mask:0x12f\n[    2.020644]  (0)[1:swapper/0]i2c_dump_info: +++++++++++++++++++\n[    2.020651]  (0)[1:swapper/0]I2C structure:\n               [I2C]Clk=24960000,Id=9,Op=0x3,Irq_stat=0x3,Total_len=0x2\n               [I2C]Trans_len=0x2,Trans_num=0x1,Trans_auxlen=0x1,\n               [I2C]speed=400000,Trans_stop=1,cg_cnt=1,hs_only=0,\n               [I2C]ch_offset=0x0,ch_offset_default=0x0\n[    2.020655]  (0)[1:swapper/0]base addr:0x00000000853e6dfe\n[    2.020677]  (0)[1:swapper/0]I2C register:\n               [I2C]SLAVE_ADDR=0x10,INTR_MASK=0x0,INTR_STAT=0x0,\n               [I2C]CONTROL=0x3a,TRANSFER_LEN=0x2,TRANSAC_LEN=0x2,\n               [I2C]DELAY_LEN=0xa,TIMING=0x405,LTIMING=0x23,START=0x0\n               [I2C]FIFO_STAT=0x0,IO_CONFIG=0x3,HS=0x0\n               [I2C]DCM_EN=0x0,DEBUGSTAT=0x700,EXT_CONF=0x1801\n               [I2C]TRANSFER_LEN_AUX=0x1,OFFSET_DMA_FSM_DEBUG=0x8900\n               [I2C]OFFSET_MCU_INTR=0x1\n[    2.020684]  (0)[1:swapper/0]before enable DMA register(0x0):\n               [I2C]INT_FLAG=0x0,INT_EN=0x0,EN=0x0,RST=0x0,\n               [I2C]STOP=0x0,FLUSH=0x0,CON=0x0,\n               [I2C]TX_MEM_ADDR=0x0, RX_MEM_ADDR=0x0\n               [I2C]TX_LEN=0x0,RX_LEN=0x0,INT_BUF_SIZE=0x0,\n               [I2C]DEBUGSTA=0x0,TX_MEM_ADDR2=0x0, RX_MEM_ADDR2=0x0\n[    2.020696]  (0)[1:swapper/0]DMA register(0x000000000282f402):\n               [I2C]INT_FLAG=0x0,INT_EN=0x0,EN=0x0,RST=0x0,\n               [I2C]STOP=0x0,FLUSH=0x0,CON=0x8,\n               [I2C]TX_MEM_ADDR=0x0, RX_MEM_ADDR=0x0,\n               [I2C]TX_LEN=0x0,RX_LEN=x0,INT_BUF_SIZE=0x0,\n               [I2C]DEBUGSTA=0x0,TX_MEM_ADDR2=0x0, RX_MEM_ADDR2=0x0\n[    2.020698]  (0)[1:swapper/0]i2c_dump_info: -----------------------\n[    2.020702]  (0)[1:swapper/0]i2c i2c-9: last transfer info:\n[    2.020708]  (0)[1:swapper/0]i2c i2c-9: [00] [    2.020634] SLAVE_ADDR=10,INTR_STAT=3,CONTROL=3a,FIFO_STAT=441,DEBUGSTAT=300, tmo=200\n[    2.020714]  (0)[1:swapper/0]i2c i2c-9: [01] [    1.658119] SLAVE_ADDR=6a,INTR_STAT=1,CONTROL=3a,FIFO_STAT=441,DEBUGSTAT=300, tmo=200\n[    2.020720]  (0)[1:swapper/0]i2c i2c-9: [02] [    1.657926] SLAVE_ADDR=6a,INTR_STAT=1,CONTROL=3a,FIFO_STAT=441,DEBUGSTAT=300, tmo=200\n[    2.020726]  (0)[1:swapper/0]i2c i2c-9: [03] [    1.657755] SLAVE_ADDR=6a,INTR_STAT=1,CONTROL=3a,FIFO_STAT=441,DEBUGSTAT=300, tmo=200\n[    2.020732]  (0)[1:swapper/0]i2c i2c-9: [04] [    1.657569] SLAVE_ADDR=6a,INTR_STAT=1,CONTROL=28,FIFO_STAT=840,DEBUGSTAT=700, tmo=200\n[    2.020737]  (0)[1:swapper/0]i2c i2c-9: [05] [    1.657335] SLAVE_ADDR=6a,INTR_STAT=1,CONTROL=3a,FIFO_STAT=441,DEBUGSTAT=300, tmo=200\n[    2.020743]  (0)[1:swapper/0]i2c i2c-9: [06] [    1.657147] SLAVE_ADDR=6a,INTR_STAT=1,CONTROL=3a,FIFO_STAT=441,DEBUGSTAT=300, tmo=200\n[    2.020749]  (0)[1:swapper/0]i2c i2c-9: [07] [    1.656979] SLAVE_ADDR=6a,INTR_STAT=1,CONTROL=3a,FIFO_STAT=441,DEBUGSTAT=300, tmo=200\n[    2.020754]  (0)[1:swapper/0]i2c i2c-9: [08] [    1.656799] SLAVE_ADDR=6a,INTR_STAT=1,CONTROL=28,FIFO_STAT=840,DEBUGSTAT=700, tmo=200\n[    2.020760]  (0)[1:swapper/0]i2c i2c-9: [09] [    1.656547] SLAVE_ADDR=6a,INTR_STAT=1,CONTROL=3a,FIFO_STAT=441,DEBUGSTAT=300, tmo=200\n[    2.020764]  (0)[1:swapper/0]i2c i2c-9: i2c_gpio_dump_info +++++++++++++++++++\n[    2.020772]  (0)[1:swapper/0]i2c i2c-9: I2C gpio structure:\n               [I2C]EH_CFG=0x3fffffff,PU_CFG=0xc10b7f8,RSEL_CFG=0xfffffff\n[    2.020776]  (0)[1:swapper/0]i2c i2c-9: addr:0x8,ACK error\n[    2.020798]  (0)[1:swapper/0]PM8008: pm8008_read: failed to read 0x0950\n[    2.020801]  (0)[1:swapper/0]PM8008: pm8008_enable_regulator_is_enabled: qcom,pm8008-chip-en: failed to get chip state rc=-121\n[    2.020804]  (0)[1:swapper/0]pm8008-chip-en: disabling\n[    2.020808]  (0)[1:swapper/0]PM8008: pm8008_masked_write: Writing 0x00 to 0x0950 with mask 0x01\n[    2.020889]  (0)[1:swapper/0]i2c i2c-9: error:addr=0x8,irq_stat=0x3,ch_offset=0x0,mask:0x12f\n[    2.020893]  (0)[1:swapper/0]i2c_dump_info: +++++++++++++++++++\n[    2.020899]  (0)[1:swapper/0]I2C structure:\n               [I2C]Clk=24960000,Id=9,Op=0x3,Irq_stat=0x3,Total_len=0x2\n               [I2C]Trans_len=0x2,Trans_num=0x1,Trans_auxlen=0x1,\n               [I2C]speed=400000,Trans_stop=1,cg_cnt=1,hs_only=0,\n               [I2C]ch_offset=0x0,ch_offset_default=0x0\n[    2.020902]  (0)[1:swapper/0]base addr:0x00000000853e6dfe\n[    2.020922]  (0)[1:swapper/0]I2C register:\n               [I2C]SLAVE_ADDR=0x10,INTR_MASK=0x0,INTR_STAT=0x0,\n               [I2C]CONTROL=0x3a,TRANSFER_LEN=0x2,TRANSAC_LEN=0x2,\n               [I2C]DELAY_LEN=0xa,TIMING=0x405,LTIMING=0x23,START=0x0\n               [I2C]FIFO_STAT=0x0,IO_CONFIG=0x3,HS=0x0\n               [I2C]DCM_EN=0x0,DEBUGSTAT=0x700,EXT_CONF=0x1801\n               [I2C]TRANSFER_LEN_AUX=0x1,OFFSET_DMA_FSM_DEBUG=0x8900\n               [I2C]OFFSET_MCU_INTR=0x1\n[    2.020929]  (0)[1:swapper/0]before enable DMA register(0x0):\n               [I2C]INT_FLAG=0x0,INT_EN=0x0,EN=0x0,RST=0x0,\n               [I2C]STOP=0x0,FLUSH=0x0,CON=0x0,\n               [I2C]TX_MEM_ADDR=0x0, RX_MEM_ADDR=0x0\n               [I2C]TX_LEN=0x0,RX_LEN=0x0,INT_BUF_SIZE=0x0,\n               [I2C]DEBUGSTA=0x0,TX_MEM_ADDR2=0x0, RX_MEM_ADDR2=0x0\n[    2.020938]  (0)[1:swapper/0]DMA register(0x000000000282f402):\n               [I2C]INT_FLAG=0x0,INT_EN=0x0,EN=0x0,RST=0x0,\n               [I2C]STOP=0x0,FLUSH=0x0,CON=0x8,\n               [I2C]TX_MEM_ADDR=0x0, RX_MEM_ADDR=0x0,\n               [I2C]TX_LEN=0x0,RX_LEN=x0,INT_BUF_SIZE=0x0,\n               [I2C]DEBUGSTA=0x0,TX_MEM_ADDR2=0x0, RX_MEM_ADDR2=0x0\n[    2.020941]  (0)[1:swapper/0]i2c_dump_info: -----------------------\n[    2.020945]  (0)[1:swapper/0]i2c i2c-9: last transfer info:\n[    2.020950]  (0)[1:swapper/0]i2c i2c-9: [00] [    2.020886] SLAVE_ADDR=10,INTR_STAT=3,CONTROL=3a,FIFO_STAT=441,DEBUGSTAT=300, tmo=200\n[    2.020956]  (0)[1:swapper/0]i2c i2c-9: [01] [    2.020634] SLAVE_ADDR=10,INTR_STAT=3,CONTROL=3a,FIFO_STAT=441,DEBUGSTAT=300, tmo=200\n[    2.020962]  (0)[1:swapper/0]i2c i2c-9: [02] [    1.658119] SLAVE_ADDR=6a,INTR_STAT=1,CONTROL=3a,FIFO_STAT=441,DEBUGSTAT=300, tmo=200\n[    2.020967]  (0)[1:swapper/0]i2c i2c-9: [03] [    1.657926] SLAVE_ADDR=6a,INTR_STAT=1,CONTROL=3a,FIFO_STAT=441,DEBUGSTAT=300, tmo=200\n[    2.020973]  (0)[1:swapper/0]i2c i2c-9: [04] [    1.657755] SLAVE_ADDR=6a,INTR_STAT=1,CONTROL=3a,FIFO_STAT=441,DEBUGSTAT=300, tmo=200\n[    2.020979]  (0)[1:swapper/0]i2c i2c-9: [05] [    1.657569] SLAVE_ADDR=6a,INTR_STAT=1,CONTROL=28,FIFO_STAT=840,DEBUGSTAT=700, tmo=200\n[    2.020984]  (0)[1:swapper/0]i2c i2c-9: [06] [    1.657335] SLAVE_ADDR=6a,INTR_STAT=1,CONTROL=3a,FIFO_STAT=441,DEBUGSTAT=300, tmo=200\n[    2.020990]  (0)[1:swapper/0]i2c i2c-9: [07] [    1.657147] SLAVE_ADDR=6a,INTR_STAT=1,CONTROL=3a,FIFO_STAT=441,DEBUGSTAT=300, tmo=200\n[    2.020995]  (0)[1:swapper/0]i2c i2c-9: [08] [    1.656979] SLAVE_ADDR=6a,INTR_STAT=1,CONTROL=3a,FIFO_STAT=441,DEBUGSTAT=300, tmo=200\n[    2.021001]  (0)[1:swapper/0]i2c i2c-9: [09] [    1.656799] SLAVE_ADDR=6a,INTR_STAT=1,CONTROL=28,FIFO_STAT=840,DEBUGSTAT=700, tmo=200\n[    2.021004]  (0)[1:swapper/0]i2c i2c-9: i2c_gpio_dump_info +++++++++++++++++++\n[    2.021012]  (0)[1:swapper/0]i2c i2c-9: I2C gpio structure:\n               [I2C]EH_CFG=0x3fffffff,PU_CFG=0xc10b7f8,RSEL_CFG=0xfffffff\n[    2.021016]  (0)[1:swapper/0]i2c i2c-9: addr:0x8,ACK error\n[    2.021038]  (0)[1:swapper/0]PM8008: pm8008_masked_write: failed to write 0x00 to 0x0950 with mask 0x01\n[    2.021042]  (0)[1:swapper/0]PM8008: pm8008_enable_regulator_disable: qcom,pm8008-chip-en: failed to disable chip rc=-121\n[    2.021044]  (0)[1:swapper/0]pm8008-chip-en: couldn't disable: -121\n[    2.022174]  (0)[1:swapper/0][SWPM] phy_addr = 0x9dff3800, virt_addr=0xffffff8008b03800, size = 6144\n[    2.022195]  (0)[1:swapper/0][SWPM] aphy core_bw[168]/core[350]/core_volt[8]\n[    2.022200]  (0)[1:swapper/0][SWPM] aphy others_bw[154]/others[966]/idd[84]/dram_opp[14]\n[    2.022203]  (0)[1:swapper/0][SWPM] ME disp_resolution=0 disp_fps=0\n[    2.022257]  (0)[1:swapper/0]__tcpc_class_complete_work = type_c_port0\n[    2.022282]  (1)[126:pd_dbg_info]///PD dbg info 42d\n[    2.022286]  (1)[126:pd_dbg_info]<    2.022>mt6360_tcpc_init() line-1958: \n[    2.028070]  (0)[1:swapper/0]pd_tcp_notifier_call sink vbus 0mv 0ma type(0)\n[    2.028077]  (0)[1:swapper/0]otg_tcp_notifier_call source vbus = 0mv\n[    2.028083]  (0)[1:swapper/0]pd_tcp_notifier_call ext discharge = 1\n[    2.028801]  (0)[1:swapper/0]usb_type_c 5-004e: mt6360_init_alert_mask\n[    2.029945]  (0)[1:swapper/0]tcpc_device_irq_enable : tcpc irq enable OK!\n[    2.031171]  (7)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get off_valueR\n[    2.042273]  (0)[1:swapper/0][name:spm&][SPM] get 'mediatek,apirq' failed\n[    2.043741]  (0)[1:swapper/0][name:spm&][SPM] find 'mediatek,adsp_core_1' node failed\n[    2.046445]  (0)[1:swapper/0]mtk_dbgtop_cfg_dvfsrc: MTK_DBGTOP_DEBUG_CTL2(0x2ff)\n[    2.046450]  (0)[1:swapper/0]mtk_dbgtop_cfg_dvfsrc: MTK_DBGTOP_LATCH_CTL(0x27e71)\n[    2.046480]  (0)[1:swapper/0]DVFSRC OUT Disable\n[    2.046484]  (0)[1:swapper/0]DVFSRC OUT Disable\n[    2.046488]  (0)[1:swapper/0]DVFSRC OUT Disable\n[    2.046492]  (0)[1:swapper/0]DVFSRC OUT Disable\n[    2.046495]  (0)[1:swapper/0]DVFSRC OUT Disable\n[    2.046500]  (0)[1:swapper/0]DVFSRC OUT Disable\n[    2.046504]  (0)[1:swapper/0]DVFSRC OUT Disable\n[    2.046508]  (0)[1:swapper/0]DVFSRC OUT Disable\n[    2.046513]  (0)[1:swapper/0]DVFSRC OUT Disable\n[    2.046517]  (0)[1:swapper/0]DVFSRC OUT Disable\n[    2.046522]  (0)[1:swapper/0]DVFSRC OUT Disable\n[    2.046526]  (0)[1:swapper/0]DVFSRC OUT Disable\n[    2.046529]  (0)[1:swapper/0]DVFSRC OUT Disable\n[    2.046606]  (0)[1:swapper/0]MMP: mmprofile_enable(): enable: 1\n[    2.046625]  (0)[1:swapper/0]MMP: mmprofile_force_start(): start: 1\n[    2.046684]  (0)[1:swapper/0]helio_dvfsrc_probe: init done\n[    2.048019]  (0)[1:swapper/0]emimpu_ap_region_init: enable AP region\n[    2.048042]  (0)[1:swapper/0]ALSA device list:\n[    2.048045]  (0)[1:swapper/0]  #0: mt6853-mt6359\n[    2.050908]  (0)[1:swapper/0]Freeing unused kernel memory: 5568K\n[    2.050955]  (0)[1:swapper/0]BOOTPROF:      2050.952312:Kernel_init_done\n[    2.059681]  (1)[126:pd_dbg_info]///PD dbg info 719d\n[    2.059692]  (1)[126:pd_dbg_info]<    2.026>TCPC-TYPEC:typec_init: TrySNK\r\n               <    2.026>TCPC-TYPEC:** Unattached.SNK\r\n               <    2.026>mt6360_set_cc() line-1301: mt6360_\n[    2.059695]  (1)[126:pd_dbg_info]set_cc 4\n               <    2.029>TCPC-TCPC:FaultAlert=0x80\r\n               <    2.029>TCPC-TCPC:tcpc_typec_handle_ctd: cable_type = 0\n               <    2.029>TCPC-TCPC:t\n[    2.059697]  (1)[126:pd_dbg_info]cpc_typec_handle_ctd: typec_state=Unattached.SNK, pre_ct=0, ct=0, typec_ct=0\n               <    2.029>TCPC-TCPC:tcpc_typec_handle_ctd cable (0\n[    2.059700]  (1)[126:pd_dbg_info], 0)\n               <    2.030>TCPC-TCPC:ps_change=0\r\n               <    2.030>mt6360_alert_vendor_defined_handler() line-1684: Vend INT1:0x02\n               <    2.030>mt6\n[    2.059703]  (1)[126:pd_dbg_info]360_alert_vendor_defined_handler() line-1685: Mask INT1:0x0B\n               <    2.031>mt6360_vsafe0v_irq_handler() line-1482: mt6360_vsafe0v_i\n[    2.059704]  (1)[126:pd_dbg_info]rq_handler\n               <    2.031>TCPC-TCPC:ps_change=0\r\n               <    2.031>TCPC-TCPC:ps_change=0\r\n[    2.073891]  (0)[416:mdev]__mddp_dev_devnode: Set permission of dev node(mddp).\n[    2.078824]  (0)[348:tcpc_timer_type]pd_tcp_notifier_call ext discharge = 0\n[    2.082213] -(0)[416:mdev][SCP] scp_A_set_ready()\n[    2.082231] -(0)[416:mdev][SCP] ramdump init\n[    2.082235] -(0)[416:mdev][SCP] get scp_A_task_context_addr: 0xaac70\n[    2.082240]  (1)[5:kworker/u16:0][SCP] notify blocking call\n[    2.082251]  (1)[5:kworker/u16:0][ccci0/fsm]register IPI\n[    2.082257]  (1)[5:kworker/u16:0][ccci1/cor]SCP reboot---\n[    2.085377] -(0)[416:mdev][SCP]scp_get_reserve_mem_phys=87138300\n[    2.085402]  (1)[132:kworker/u16:1][SCP] scp_logger_notify_ws: id=20\n[    2.108090]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: stop_trim_hardware(), ++\n[    2.108990]  (6)[391:charger_thread][CH3_DBG] bat_cur = -5560\n[    2.110313]  (7)[391:charger_thread]Vbat=3733,Ibat=-3253,I=0,VChr=0,T=34,Soc=-1:-1,CT:0:0 hv:1 pd:0:0\n[    2.110317]  (7)[391:charger_thread]mt_charger_plugin type:0 plugin:0\n[    2.110321]  (7)[391:charger_thread]mtk_is_charger_on: online=0, type=0, info->type=0.\n[    2.111280]  (6)[391:charger_thread][CH3_DBG] bat_cur = -5517\n[    2.141678]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: stop_trim_hardware(), --\n[    2.141698]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), R_offset = -206, L_offset = -186\n[    2.141704]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: calculate_lr_trim_code(), step0 trim_value(R/L) = (-206/-186)\n[    2.156744]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: start_trim_hardware(), ++\n[    2.191414]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: start_trim_hardware(), --\n[    2.191439]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get on_valueL\n[    2.267239]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get off_valueL\n[    2.337118]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get on_valueR\n[    2.407243]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get off_valueR\n[    2.477297]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: stop_trim_hardware(), ++\n[    2.510908]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: stop_trim_hardware(), --\n[    2.510929]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), R_offset = -142, L_offset = -97\n[    2.510935]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: calculate_lr_trim_code(), step1 trim_value(R/L) = (-142/-97)\n[    2.525982]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: start_trim_hardware(), ++\n[    2.559686]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[    2.559693]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[    2.559730]  (7)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[    2.559735]  (7)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[    2.559738]  (7)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[    2.559742]  (7)[132:kworker/u16:1][Thermal/TZ/BTS]T_AP=40400\n[    2.560540]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: start_trim_hardware(), --\n[    2.560561]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get on_valueL\n[    2.600200]  (7)[5:kworker/u16:0][SCP] clear scp reset flag and unlock\n[    2.637368]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get off_valueL\n[    2.707331]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get on_valueR\n[    2.720516]  (6)[346:dc_trim_thread]adsp_core0_suspend(), done elapse 670 us\n[    2.777107]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get off_valueR\n[    2.847309]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: stop_trim_hardware(), ++\n[    2.880895]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: stop_trim_hardware(), --\n[    2.880916]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), R_offset = -101, L_offset = -77\n[    2.880922]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: calculate_lr_trim_code(), step2 trim_value(R/L) = (-101/-77)\n[    2.880927]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: calculate_lr_trim_code(), step3 hp_trim_code(R/L) = (0x4/0x3)\n[    2.880932]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: calculate_lr_trim_code(), need to calculate step4 trim_code\n[    2.895973]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: start_trim_hardware(), ++\n[    2.930535]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: start_trim_hardware(), --\n[    2.930558]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get on_valueL\n[    2.942272] -(6)[346:dc_trim_thread]mt635x_auxadc_read_raw: 308 callbacks suppressed\n[    2.942281]  (6)[346:dc_trim_thread]mt635x-auxadc mt635x-auxadc: name:HPOFS_CAL, channel=9, adc_out=0x7164, adc_result=29028\n[    2.944877]  (6)[346:dc_trim_thread]mt635x-auxadc mt635x-auxadc: name:HPOFS_CAL, channel=9, adc_out=0x716d, adc_result=29037\n[    2.947472]  (6)[346:dc_trim_thread]mt635x-auxadc mt635x-auxadc: name:HPOFS_CAL, channel=9, adc_out=0x7169, adc_result=29033\n[    2.950068]  (6)[346:dc_trim_thread]mt635x-auxadc mt635x-auxadc: name:HPOFS_CAL, channel=9, adc_out=0x716c, adc_result=29036\n[    2.952664]  (6)[346:dc_trim_thread]mt635x-auxadc mt635x-auxadc: name:HPOFS_CAL, channel=9, adc_out=0x7168, adc_result=29032\n[    3.007296]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get off_valueL\n[    3.077338]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get on_valueR\n[    3.147221]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get off_valueR\n[    3.217278]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: stop_trim_hardware(), ++\n[    3.220529] -(1)[17:migration/1]IRQ 10: no longer affine to CPU1\n[    3.220900]  (0)[420:python3]CPU1: shutdown\n[    3.249674]  (0)[420:python3]psci: Retrying again to check for CPU kill\n[    3.249690]  (0)[420:python3]psci: CPU1 killed.\n[    3.251670]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: stop_trim_hardware(), --\n[    3.251691]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), R_offset = -77, L_offset = -64\n[    3.251696]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: calculate_lr_trim_code(), step3 trim_value(R/L) = (-77/-64)\n[    3.251715]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: calculate_lr_trim_code(), result hp_trim_code(R/L) = (0x5/0x4)\n[    3.251725]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: calculate_lr_finetrim_code(), initial MT6359_AUDDEC_ANA_CON3 = 0x504\n[    3.266776]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: start_trim_hardware(), ++\n[    3.301437]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: start_trim_hardware(), --\n[    3.301460]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get on_valueL\n[    3.377321]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get off_valueL\n[    3.390483] -(2)[25:migration/2]IRQ 11: no longer affine to CPU2\n[    3.390875]  (0)[420:python3]CPU2: shutdown\n[    3.419672]  (0)[420:python3]psci: Retrying again to check for CPU kill\n[    3.419688]  (0)[420:python3]psci: CPU2 killed.\n[    3.447266]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get on_valueR\n[    3.517381]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get off_valueR\n[    3.587327]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: stop_trim_hardware(), ++\n[    3.599702]  (7)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[    3.599707]  (6)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[    3.599711]  (6)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[    3.599716]  (7)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[    3.599720]  (6)[132:kworker/u16:1][Thermal/TZ/BTS]T_AP=40100\n[    3.600473] -(3)[33:migration/3]IRQ 12: no longer affine to CPU3\n[    3.600846]  (0)[420:python3]CPU3: shutdown\n[    3.621244]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: stop_trim_hardware(), --\n[    3.621264]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), R_offset = -55, L_offset = -39\n[    3.621270]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: calculate_lr_finetrim_code(), step0 finetrim(R/L) = (-55/-39)\n[    3.629675]  (0)[420:python3]psci: Retrying again to check for CPU kill\n[    3.629691]  (0)[420:python3]psci: CPU3 killed.\n[    3.636325]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: start_trim_hardware(), ++\n[    3.670998]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: start_trim_hardware(), --\n[    3.671022]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get on_valueL\n[    3.747322]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get off_valueL\n[    3.817351]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get on_valueR\n[    3.830302] -(4)[41:migration/4]IRQ 13: no longer affine to CPU4\n[    3.830660]  (0)[420:python3]CPU4: shutdown\n[    3.859672]  (0)[420:python3]psci: Retrying again to check for CPU kill\n[    3.859686]  (0)[420:python3]psci: CPU4 killed.\n[    3.887127]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get off_valueR\n[    3.929650]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[    3.952054] -(6)[346:dc_trim_thread]mt635x_auxadc_read_raw: 304 callbacks suppressed\n[    3.952064]  (6)[346:dc_trim_thread]mt635x-auxadc mt635x-auxadc: name:HPOFS_CAL, channel=9, adc_out=0x719b, adc_result=29083\n[    3.954672]  (6)[346:dc_trim_thread]mt635x-auxadc mt635x-auxadc: name:HPOFS_CAL, channel=9, adc_out=0x719e, adc_result=29086\n[    3.957269]  (6)[346:dc_trim_thread]mt635x-auxadc mt635x-auxadc: name:HPOFS_CAL, channel=9, adc_out=0x719b, adc_result=29083\n[    3.957292]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: stop_trim_hardware(), ++\n[    3.991032]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: stop_trim_hardware(), --\n[    3.991051]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), R_offset = -32, L_offset = -25\n[    3.991057]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: calculate_lr_finetrim_code(), step1 finetrim(R/L) = (-32/-25)\n[    4.000307] -(5)[49:migration/5]IRQ 14: no longer affine to CPU5\n[    4.000641]  (0)[420:python3]CPU5: shutdown\n[    4.006113]  (6)[346:dc_trim_thread]mt6359-sound mt6359_snd: start_trim_hardware(), ++\n[    4.029671]  (0)[420:python3]psci: Retrying again to check for CPU kill\n[    4.029687]  (0)[420:python3]psci: CPU5 killed.\n[    4.041297]  (0)[346:dc_trim_thread]mt6359-sound mt6359_snd: start_trim_hardware(), --\n[    4.041325]  (0)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get on_valueL\n[    4.049734]  (0)[388:kworker/0:3]sd 0:0:0:2: [sdc] Synchronizing SCSI cache\n[    4.050494]  (0)[3:kworker/0:0]sd 0:0:0:0: [sda] Synchronizing SCSI cache\n[    4.051385]  (0)[3:kworker/0:0]sd 0:0:0:1: [sdb] Synchronizing SCSI cache\n[    4.053268]  (0)[346:dc_trim_thread]mt635x-auxadc mt635x-auxadc: name:HPOFS_CAL, channel=9, adc_out=0x71af, adc_result=29103\n[    4.053879]  (0)[3:kworker/0:0]ufshcd bootdevice: ufshcd_config_vreg: count:14 fixed:3000000 plus:0\n[    4.054269]  (0)[3:kworker/0:0]ufshcd bootdevice: rs,ret 0,2802 us\n[    4.055871]  (0)[346:dc_trim_thread]mt635x-auxadc mt635x-auxadc: name:HPOFS_CAL, channel=9, adc_out=0x7193, adc_result=29075\n[    4.099783] -(6)[57:migration/6]IRQ 15: no longer affine to CPU6\n[    4.099913]  (0)[420:python3]CPU6: shutdown\n[    4.103750]  (7)[246:scp_power_reset][mtk_nanohub]mtk_nanohub_send_dram_info_to_hub success\n[    4.107500]  (7)[246:scp_power_reset][mtk_nanohub]set_cust fail!\n[    4.107504]  (7)[246:scp_power_reset][mtk_nanohub]type(6) not registered\n[    4.110372]  (7)[246:scp_power_reset][mtk_nanohub]set_cust fail!\n[    4.110375]  (7)[246:scp_power_reset][mtk_nanohub]type(73) not registered\n[    4.118180]  (0)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get off_valueL\n[    4.129653]  (0)[420:python3]psci: Retrying again to check for CPU kill\n[    4.129658]  (0)[420:python3]psci: CPU6 killed.\n[    4.187345]  (7)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get on_valueR\n[    4.239779] -(7)[65:migration/7]IRQ 16: no longer affine to CPU7\n[    4.239906]  (0)[420:python3]CPU7: shutdown\n[    4.257237]  (0)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), get off_valueR\n[    4.269640]  (0)[420:python3]psci: Retrying again to check for CPU kill\n[    4.269645]  (0)[420:python3]psci: CPU7 killed.\n[    4.329764]  (0)[346:dc_trim_thread]mt6359-sound mt6359_snd: stop_trim_hardware(), ++\n[    4.364753]  (0)[346:dc_trim_thread]mt6359-sound mt6359_snd: stop_trim_hardware(), --\n[    4.364798]  (0)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_dctrim_offset(), R_offset = -33, L_offset = -14\n[    4.364814]  (0)[346:dc_trim_thread]mt6359-sound mt6359_snd: calculate_lr_finetrim_code(), step2 finetrim(R/L) = (-33/-14)\n[    4.364845]  (0)[346:dc_trim_thread]mt6359-sound mt6359_snd: calculate_lr_finetrim_code(), result finetrim_code(R/L) = (0x0/0x0)\n[    4.364877]  (0)[346:dc_trim_thread]mt6359-sound mt6359_snd: get_hp_trim_offset(), after trim_code R:(0x0/0x5), L:(0x0/0x4)\n[    4.364893]  (0)[346:dc_trim_thread]accdet_late_init()  now init accdet!\n[    4.367947]  (0)[346:dc_trim_thread]accdet_init() done.\n[    4.368105]  (0)[346:dc_trim_thread]config_digital_moisture_init_by_mode() disable digital moisture.\n[    4.368134]  (0)[346:dc_trim_thread]accdet_init_once() done.\n[    4.368289]  (0)[308:mddp_rx]\n               accdet (0x268a)=0x40 (0x268c)=0x67 (0x26ac)=0x1000 (0x26ae)=0x27(0x26b0)=0x100 (0x26b4)=0x0\n               accdet (0x26b6)=0x0 (0x26ba)=0xff(0x26bc)=0xff (0x26c0)=0x7000 (0x26c4)=0x0 (0x26ba)=0xff\n               accdet (0x2526)=0x0 (0x2528)=0x3004 (0x252a)=0x0 (0x252c)=0x8f\n               accdet (0x252e)=0x3000 (0x2530)=0x4 (0x2532)=0x103 (0x2534)=0x0\n                302\n[    4.639823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[    4.639842]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[    4.642497]  (0)[5:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[    4.642508]  (0)[5:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[    5.679727]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[    5.679741]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[    5.679805]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[    5.679815]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[    5.679822]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[    6.080146]  (0)[3:kworker/0:0]tcpc_event_init_work typec attache new = 0\n[    6.560696] -(0)[132:kworker/u16:1]mt635x_auxadc_read_raw: 102 callbacks suppressed\n[    6.560718]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[    6.560996]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1989\n[    6.562078]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3e1, adc_result=1090\n[    6.719732]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[    6.719746]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[    6.719776]  (0)[3:kworker/0:0]aw87519_cfg_work_routine enter\n[    6.719785]  (0)[3:kworker/0:0]aw87519_kspk_update enter\n[    6.719798]  (0)[3:kworker/0:0]aw87519_drcv_update enter\n[    6.719808]  (0)[3:kworker/0:0]aw87519_hvload_update enter\n[    6.719819]  (0)[3:kworker/0:0]aw87359_cfg_work_routine enter\n[    6.719827]  (0)[3:kworker/0:0]aw87359_dspk_update enter\n[    6.719836]  (0)[3:kworker/0:0]aw87359_drcv_update enter\n[    6.719845]  (0)[3:kworker/0:0]aw87359_abspk_update enter\n[    6.719853]  (0)[3:kworker/0:0]aw87359_abrcv_update enter\n[    6.720035]  (0)[3:kworker/0:0]aw87519_pa 6-0058: Direct firmware load for aw87519_kspk.bin failed with error -2\n[    6.720048]  (0)[3:kworker/0:0]aw87519_pa 6-0058: Falling back to user helper\n[    6.720396]  (0)[429:kworker/0:5]aw87519_pa 6-0058: Direct firmware load for aw87519_drcv.bin failed with error -2\n[    6.720410]  (0)[429:kworker/0:5]aw87519_pa 6-0058: Falling back to user helper\n[    6.720647]  (0)[403:kworker/0:4]aw87519_pa 6-0058: Direct firmware load for aw87519_hvload.bin failed with error -2\n[    6.720661]  (0)[403:kworker/0:4]aw87519_pa 6-0058: Falling back to user helper\n[    6.724261]  (0)[132:kworker/u16:1][msdc]msdc1 power on\n[    6.732649]  (0)[388:kworker/0:3]aw87359_pa 6-0059: Direct firmware load for aw87359_dspk.bin failed with error -2\n[    6.732664]  (0)[388:kworker/0:3]aw87359_pa 6-0059: Falling back to user helper\n[    6.744512]  (0)[433:kworker/0:6]aw87359_pa 6-0059: Direct firmware load for aw87359_drcv.bin failed with error -2\n[    6.744527]  (0)[433:kworker/0:6]aw87359_pa 6-0059: Falling back to user helper\n[    6.754990]  (0)[434:kworker/0:7]aw87359_pa 6-0059: Direct firmware load for aw87359_abspk.bin failed with error -2\n[    6.755005]  (0)[434:kworker/0:7]aw87359_pa 6-0059: Falling back to user helper\n[    6.759912]  (0)[132:kworker/u16:1][msdc]msdc1 -> !!! Set<260KHz> Source<191999KHz> -> sclk<259KHz> timing<0> mode<0> div<185> hs400_div_dis<0>\n[    6.761436]  (0)[132:kworker/u16:1][msdc]msdc1 -> !!! Set<400KHz> Source<191999KHz> -> sclk<399KHz> timing<0> mode<0> div<120> hs400_div_dis<0>\n[    6.765485]  (0)[435:kworker/0:8]aw87359_pa 6-0059: Direct firmware load for aw87359_abrcv.bin failed with error -2\n[    6.765500]  (0)[435:kworker/0:8]aw87359_pa 6-0059: Falling back to user helper\n[    6.790097]  (0)[437:kworker/0:10][msdc]msdc1 -> Card insert<1> Block bad card<0>, mrq<          (null)> claimed<1> pwrcnt<0> trigger card event<0> <- msdc_ops_get_cd() : L<4453> PID<kworker/0:10><0x1b5>\n[    6.804349]  (0)[437:kworker/0:10][msdc][msdc_command_resp_polling]: msdc1 CMD<8> MSDC_INT_CMDTMO Arg<0x000001aa>\n[    6.804427]  (0)[437:kworker/0:10][msdc]msdc1 -> XXX CMD<8><0x1aa> Error<-110> Resp<0x0> <- msdc_dump_trans_error() : L<3772> PID<kworker/0:10><0x1b5>\n[    6.804874]  (0)[437:kworker/0:10][msdc][msdc_command_resp_polling]: msdc1 CMD<55> MSDC_INT_CMDTMO Arg<0x00000000>\n[    6.804950]  (0)[437:kworker/0:10][msdc]msdc1 -> XXX CMD<55><0x0> Error<-110> Resp<0x0> <- msdc_dump_trans_error() : L<3772> PID<kworker/0:10><0x1b5>\n[    6.805392]  (0)[437:kworker/0:10][msdc][msdc_command_resp_polling]: msdc1 CMD<55> MSDC_INT_CMDTMO Arg<0x00000000>\n[    6.805478]  (0)[437:kworker/0:10][msdc]msdc1 -> XXX CMD<55><0x0> Error<-110> Resp<0x0> <- msdc_dump_trans_error() : L<3772> PID<kworker/0:10><0x1b5>\n[    6.805919]  (0)[437:kworker/0:10][msdc][msdc_command_resp_polling]: msdc1 CMD<55> MSDC_INT_CMDTMO Arg<0x00000000>\n[    6.805993]  (0)[437:kworker/0:10][msdc]msdc1 -> XXX CMD<55><0x0> Error<-110> Resp<0x0> <- msdc_dump_trans_error() : L<3772> PID<kworker/0:10><0x1b5>\n[    6.806434]  (0)[437:kworker/0:10][msdc][msdc_command_resp_polling]: msdc1 CMD<55> MSDC_INT_CMDTMO Arg<0x00000000>\n[    6.806503]  (0)[437:kworker/0:10][msdc]msdc1 -> XXX CMD<55><0x0> Error<-110> Resp<0x0> <- msdc_dump_trans_error() : L<3772> PID<kworker/0:10><0x1b5>\n[    6.807107]  (0)[437:kworker/0:10][msdc][msdc_command_resp_polling]: msdc1 CMD<1> MSDC_INT_CMDTMO Arg<0x00000000>\n[    6.807176]  (0)[437:kworker/0:10][msdc]msdc1 -> XXX CMD<1><0x0> Error<-110> Resp<0x0> <- msdc_dump_trans_error() : L<3772> PID<kworker/0:10><0x1b5>\n[    6.807393]  (0)[437:kworker/0:10][msdc]msdc power off\n[    6.807997]  (0)[437:kworker/0:10][msdc]msdc power off\n[    6.808296]  (0)[437:kworker/0:10][msdc]msdc1 power off\n[    6.822105]  (0)[437:kworker/0:10][msdc]msdc1 power on\n[    6.860064]  (0)[437:kworker/0:10][msdc]msdc1 -> !!! Set<260KHz> Source<191999KHz> -> sclk<259KHz> timing<0> mode<0> div<185> hs400_div_dis<0>\n[    6.861631]  (0)[437:kworker/0:10][msdc]msdc1 -> !!! Set<300KHz> Source<191999KHz> -> sclk<299KHz> timing<0> mode<0> div<160> hs400_div_dis<0>\n[    6.904339]  (0)[437:kworker/0:10][msdc][msdc_command_resp_polling]: msdc1 CMD<8> MSDC_INT_CMDTMO Arg<0x000001aa>\n[    6.904433]  (0)[437:kworker/0:10][msdc]msdc1 -> XXX CMD<8><0x1aa> Error<-110> Resp<0x0> <- msdc_dump_trans_error() : L<3772> PID<kworker/0:10><0x1b5>\n[    6.905020]  (0)[437:kworker/0:10][msdc][msdc_command_resp_polling]: msdc1 CMD<55> MSDC_INT_CMDTMO Arg<0x00000000>\n[    6.905113]  (0)[437:kworker/0:10][msdc]msdc1 -> XXX CMD<55><0x0> Error<-110> Resp<0x0> <- msdc_dump_trans_error() : L<3772> PID<kworker/0:10><0x1b5>\n[    6.905696]  (0)[437:kworker/0:10][msdc][msdc_command_resp_polling]: msdc1 CMD<55> MSDC_INT_CMDTMO Arg<0x00000000>\n[    6.905783]  (0)[437:kworker/0:10][msdc]msdc1 -> XXX CMD<55><0x0> Error<-110> Resp<0x0> <- msdc_dump_trans_error() : L<3772> PID<kworker/0:10><0x1b5>\n[    6.906366]  (0)[437:kworker/0:10][msdc][msdc_command_resp_polling]: msdc1 CMD<55> MSDC_INT_CMDTMO Arg<0x00000000>\n[    6.906453]  (0)[437:kworker/0:10][msdc]msdc1 -> XXX CMD<55><0x0> Error<-110> Resp<0x0> <- msdc_dump_trans_error() : L<3772> PID<kworker/0:10><0x1b5>\n[    6.907033]  (0)[437:kworker/0:10][msdc][msdc_command_resp_polling]: msdc1 CMD<55> MSDC_INT_CMDTMO Arg<0x00000000>\n[    6.907123]  (0)[437:kworker/0:10][msdc]msdc1 -> XXX CMD<55><0x0> Error<-110> Resp<0x0> <- msdc_dump_trans_error() : L<3772> PID<kworker/0:10><0x1b5>\n[    6.907916]  (0)[437:kworker/0:10][msdc][msdc_command_resp_polling]: msdc1 CMD<1> MSDC_INT_CMDTMO Arg<0x00000000>\n[    6.908010]  (0)[437:kworker/0:10][msdc]msdc1 -> XXX CMD<1><0x0> Error<-110> Resp<0x0> <- msdc_dump_trans_error() : L<3772> PID<kworker/0:10><0x1b5>\n[    6.908276]  (0)[437:kworker/0:10][msdc]msdc power off\n[    6.908866]  (0)[437:kworker/0:10][msdc]msdc power off\n[    6.909163]  (0)[437:kworker/0:10][msdc]msdc1 power off\n[    6.922804]  (0)[437:kworker/0:10][msdc]msdc1 power on\n[    6.959694]  (0)[132:kworker/u16:1]get_lockdown_info_for_nvt begin +\n[    6.959711]  (0)[132:kworker/u16:1]mtk_ddic_dsi_send_cmd +\n[    6.960050]  (0)[132:kworker/u16:1]mtk_mipi_dsi_write_gce +, dsi_mode = 2, use_lpm = 0\n[    6.960124]  (0)[132:kworker/u16:1]mtk_mipi_dsi_write_gce -\n[    6.960674]  (0)[437:kworker/0:10][msdc]msdc1 -> !!! Set<260KHz> Source<191999KHz> -> sclk<259KHz> timing<0> mode<0> div<185> hs400_div_dis<0>\n[    6.962269]  (0)[437:kworker/0:10][msdc]msdc1 -> !!! Set<260KHz> Source<191999KHz> -> sclk<259KHz> timing<0> mode<0> div<185> hs400_div_dis<0>\n[    6.970446]  (0)[132:kworker/u16:1]mtk_ddic_dsi_send_cmd -\n[    6.970471]  (0)[132:kworker/u16:1]mtk_ddic_dsi_read_cmd +\n[    6.970495]  (0)[132:kworker/u16:1]mtk_mipi_dsi_read_gce +\n[    6.970539]  (0)[132:kworker/u16:1]_mtk_mipi_dsi_read_gce +\n[    6.970598]  (0)[132:kworker/u16:1]_mtk_mipi_dsi_read_gce -\n[    6.987279]  (0)[132:kworker/u16:1]mtk_mipi_dsi_read_gce -\n[    6.987295]  (0)[132:kworker/u16:1]mtk_ddic_dsi_read_cmd -\n[    6.987312]  (0)[132:kworker/u16:1]read lcm addr:0xf7--dlen:8\n[    6.987321]  (0)[132:kworker/u16:1]read lcm addr:0xf7--byte:0,val:0x53\n[    6.987330]  (0)[132:kworker/u16:1]read lcm addr:0xf7--byte:1,val:0x42\n[    6.987339]  (0)[132:kworker/u16:1]read lcm addr:0xf7--byte:2,val:0x32\n[    6.987348]  (0)[132:kworker/u16:1]read lcm addr:0xf7--byte:3,val:0x1\n[    6.987356]  (0)[132:kworker/u16:1]read lcm addr:0xf7--byte:4,val:0x4a\n[    6.987365]  (0)[132:kworker/u16:1]read lcm addr:0xf7--byte:5,val:0x22\n[    6.987373]  (0)[132:kworker/u16:1]read lcm addr:0xf7--byte:6,val:0x31\n[    6.987382]  (0)[132:kworker/u16:1]read lcm addr:0xf7--byte:7,val:0x0\n[    6.987391]  (0)[132:kworker/u16:1]get_lockdown_info_for_nvt end -\n[    6.987407]  (0)[132:kworker/u16:1][NVT-ts-spi] get_lockdown_info 2203: Lockdown:0x53,0x42,0x32,0x01,0x4a,0x22,0x31,0x00\n[    7.004571]  (0)[437:kworker/0:10][msdc][msdc_command_resp_polling]: msdc1 CMD<8> MSDC_INT_CMDTMO Arg<0x000001aa>\n[    7.004682]  (0)[437:kworker/0:10][msdc]msdc1 -> XXX CMD<8><0x1aa> Error<-110> Resp<0x0> <- msdc_dump_trans_error() : L<3772> PID<kworker/0:10><0x1b5>\n[    7.005356]  (0)[437:kworker/0:10][msdc][msdc_command_resp_polling]: msdc1 CMD<55> MSDC_INT_CMDTMO Arg<0x00000000>\n[    7.005456]  (0)[437:kworker/0:10][msdc]msdc1 -> XXX CMD<55><0x0> Error<-110> Resp<0x0> <- msdc_dump_trans_error() : L<3772> PID<kworker/0:10><0x1b5>\n[    7.006126]  (0)[437:kworker/0:10][msdc][msdc_command_resp_polling]: msdc1 CMD<55> MSDC_INT_CMDTMO Arg<0x00000000>\n[    7.006230]  (0)[437:kworker/0:10][msdc]msdc1 -> XXX CMD<55><0x0> Error<-110> Resp<0x0> <- msdc_dump_trans_error() : L<3772> PID<kworker/0:10><0x1b5>\n[    7.006901]  (0)[437:kworker/0:10][msdc][msdc_command_resp_polling]: msdc1 CMD<55> MSDC_INT_CMDTMO Arg<0x00000000>\n[    7.007005]  (0)[437:kworker/0:10][msdc]msdc1 -> XXX CMD<55><0x0> Error<-110> Resp<0x0> <- msdc_dump_trans_error() : L<3772> PID<kworker/0:10><0x1b5>\n[    7.007675]  (0)[437:kworker/0:10][msdc][msdc_command_resp_polling]: msdc1 CMD<55> MSDC_INT_CMDTMO Arg<0x00000000>\n[    7.007779]  (0)[437:kworker/0:10][msdc]msdc1 -> XXX CMD<55><0x0> Error<-110> Resp<0x0> <- msdc_dump_trans_error() : L<3772> PID<kworker/0:10><0x1b5>\n[    7.008686]  (0)[437:kworker/0:10][msdc][msdc_command_resp_polling]: msdc1 CMD<1> MSDC_INT_CMDTMO Arg<0x00000000>\n[    7.008794]  (0)[437:kworker/0:10][msdc]msdc1 -> XXX CMD<1><0x0> Error<-110> Resp<0x0> <- msdc_dump_trans_error() : L<3772> PID<kworker/0:10><0x1b5>\n[    7.009095]  (0)[437:kworker/0:10][msdc]msdc power off\n[    7.009751]  (0)[437:kworker/0:10][msdc]msdc power off\n[    7.010054]  (0)[437:kworker/0:10][msdc]msdc1 power off\n[    7.010069]  (0)[437:kworker/0:10][msdc][msdc_set_power_mode]: msdc1 power off at clk 260000hz set block_bad_card = 1\n[    7.119808]  (0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF Didn't enter low power scenario\n[    7.129684]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[    7.759717]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[    7.759731]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[    8.799708]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[    8.799721]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[    9.839709]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[    9.839722]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   10.329681]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[   10.719713]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[   10.719725]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[   10.879708]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   10.879722]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   11.600626]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[   11.600885]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1855\n[   11.601964]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3e1, adc_result=1090\n[   11.678072]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[   11.680452]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c25, adc_result=3747\n[   11.713508]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[   11.713741]  (0)[341:battery_thread][CH3_DBG] bat_cur = -1928\n[   11.714841]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3e2, adc_result=1092\n[   11.715115]  (0)[341:battery_thread]lbat 0 0 0 0\n[   11.715136]  (0)[341:battery_thread]car[-23,0,0,0,0, cycle_car:-16,ncar:0] c:0 1904 vbat:3747 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[   11.715444]  (0)[341:battery_thread]tmp:34 65535 65535 hcar2:65535 lcar2:65535 time:11 sw_iavg:0 -1934 0 nafg_m:0 0 0\n[   11.919708]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   11.919721]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   11.975962] -(0)[0:swapper/0]mtk_charger_alarm_timer_func: not suspend, wake up charger\n[   11.999850]  (0)[149:kworker/6:1]ufshpb_init_handler:3111 HPB_INIT_START\n[   11.999867]  (0)[149:kworker/6:1]ufshpb_find_lu_qd:2472 lu 2 queue_depth 32\n[   11.999878]  (0)[149:kworker/6:1]ufshpb_init_lu_constant:2541 ===== From Device Descriptor! =====\n[   11.999889]  (0)[149:kworker/6:1]ufshpb_init_lu_constant:2544 hpb_region_size = 15, hpb_subregion_size = 15\n[   11.999898]  (0)[149:kworker/6:1]ufshpb_init_lu_constant:2545 =====   Constant Values(LU)   =====\n[   11.999909]  (0)[149:kworker/6:1]ufshpb_init_lu_constant:2547 region_unit_size = 16777216, region_mem_size 32768\n[   11.999920]  (0)[149:kworker/6:1]ufshpb_init_lu_constant:2549 subregion_unit_size = 16777216, subregion_mem_size 32768\n[   11.999930]  (0)[149:kworker/6:1]ufshpb_init_lu_constant:2551 lu_num_blocks = 31240192\n[   11.999941]  (0)[149:kworker/6:1]ufshpb_init_lu_constant:2553 regions_per_lu = 7627, subregions_per_lu = 7627\n[   11.999950]  (0)[149:kworker/6:1]ufshpb_init_lu_constant:2555 subregions_per_region = 1\n[   11.999961]  (0)[149:kworker/6:1]ufshpb_init_lu_constant:2558 entries_per_region 4096 shift 12 mask 0xFFF\n[   11.999972]  (0)[149:kworker/6:1]ufshpb_init_lu_constant:2561 entries_per_subregion 4096 shift 12 mask 0xFFF\n[   11.999981]  (0)[149:kworker/6:1]ufshpb_init_lu_constant:2562 mpages_per_subregion : 8\n[   11.999990]  (0)[149:kworker/6:1]ufshpb_init_lu_constant:2563 ===================================\n\n[   12.000133]  (0)[149:kworker/6:1]ufshpb_lu_hpb_init:2584 active_region_table bytes: 427112\n[   12.009933]  (0)[437:kworker/0:10]aw8622_waveform_data_delay_work load wavefile func enter\n[   12.010267]  (0)[437:kworker/0:10]awinic,aw8622-haptic haptic_pwm: Direct firmware load for aw8622_f0_info.bin failed with error -2\n[   12.010283]  (0)[437:kworker/0:10]awinic,aw8622-haptic haptic_pwm: Falling back to user helper\n[   12.012233]  (0)[341:battery_thread]GM3log-nint-nafg 11 11 0 0 0 0 0\n[   12.046532]  (0)[391:charger_thread][CH3_DBG] bat_cur = -2148\n[   12.047970]  (0)[391:charger_thread]Vbat=3747,Ibat=-2368,I=0,VChr=0,T=34,Soc=-1:-1,CT:0:0 hv:1 pd:0:0\n[   12.047991]  (0)[391:charger_thread]mt_charger_plugin type:0 plugin:0\n[   12.048003]  (0)[391:charger_thread]mtk_is_charger_on: online=0, type=0, info->type=0.\n[   12.049163]  (0)[391:charger_thread][CH3_DBG] bat_cur = -2056\n[   12.064660]  (0)[149:kworker/6:1]ufshpb_table_mempool_init:2329 The number of mctx = 2048. debug_free_table 2048\n[   12.064683]  (0)[149:kworker/6:1]ufshpb_lu_hpb_init:2623 total_subregion_count: 7627\n[   12.068473]  (0)[149:kworker/6:1]ufshpb_create_sysfs:3706 ufshpb creates sysfs lu 2 00000000085c9e7f dev->kobj 000000004507c4fd\n[   12.068529]  (0)[149:kworker/6:1]ufshpb_create_sysfs:3714 ufshpb_lu2 sysfs attr creates: hpb_read_disable\n[   12.068547]  (0)[149:kworker/6:1]ufshpb_create_sysfs:3714 ufshpb_lu2 sysfs attr creates: map_cmd_disable\n[   12.068562]  (0)[149:kworker/6:1]ufshpb_create_sysfs:3714 ufshpb_lu2 sysfs attr creates: throttle_map_req\n[   12.068577]  (0)[149:kworker/6:1]ufshpb_create_sysfs:3714 ufshpb_lu2 sysfs attr creates: throttle_pre_req\n[   12.068590]  (0)[149:kworker/6:1]ufshpb_create_sysfs:3714 ufshpb_lu2 sysfs attr creates: pre_req_min_tr_len\n[   12.068603]  (0)[149:kworker/6:1]ufshpb_create_sysfs:3714 ufshpb_lu2 sysfs attr creates: pre_req_max_tr_len\n[   12.068616]  (0)[149:kworker/6:1]ufshpb_create_sysfs:3714 ufshpb_lu2 sysfs attr creates: debug\n[   12.068629]  (0)[149:kworker/6:1]ufshpb_create_sysfs:3714 ufshpb_lu2 sysfs attr creates: hpb_version\n[   12.068642]  (0)[149:kworker/6:1]ufshpb_create_sysfs:3714 ufshpb_lu2 sysfs attr creates: hit_count\n[   12.068654]  (0)[149:kworker/6:1]ufshpb_create_sysfs:3714 ufshpb_lu2 sysfs attr creates: miss_count\n[   12.068667]  (0)[149:kworker/6:1]ufshpb_create_sysfs:3714 ufshpb_lu2 sysfs attr creates: map_req_count\n[   12.068679]  (0)[149:kworker/6:1]ufshpb_create_sysfs:3714 ufshpb_lu2 sysfs attr creates: pre_req_count\n[   12.068692]  (0)[149:kworker/6:1]ufshpb_create_sysfs:3714 ufshpb_lu2 sysfs attr creates: region_stat_count\n[   12.068704]  (0)[149:kworker/6:1]ufshpb_create_sysfs:3714 ufshpb_lu2 sysfs attr creates: count_reset\n[   12.068717]  (0)[149:kworker/6:1]ufshpb_create_sysfs:3714 ufshpb_lu2 sysfs attr creates: get_info_from_lba\n[   12.068730]  (0)[149:kworker/6:1]ufshpb_create_sysfs:3714 ufshpb_lu2 sysfs attr creates: get_info_from_region\n[   12.068743]  (0)[149:kworker/6:1]ufshpb_create_sysfs:3714 ufshpb_lu2 sysfs attr creates: release\n[   12.068755]  (0)[149:kworker/6:1]ufshpb_create_sysfs:3718 ufshpb_lu2 sysfs adds uevent\n[   12.068769]  (0)[149:kworker/6:1]ufshpb_init:2879 UFSHPB LU 2 working\n[   12.159643]  (0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF Didn't enter low power scenario\n[   12.959746]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   12.959761]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   13.529682]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[   13.999708]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   13.999721]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   15.039704]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   15.039718]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   15.759719]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[   15.759732]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[   16.079831]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   16.079844]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   16.479710]  (0)[329:kworker/u16:3][NVT-ts-spi] update_firmware_request 319: filename is novatek_ts_fw.bin\n[   16.479734]  (0)[329:kworker/u16:3][NVT-ts-spi] nvt_get_fw_need_write_size 73: fw_need_write_size = 110592(0x1b000), NVT end flag\n[   16.479751]  (0)[329:kworker/u16:3][NVT-ts-spi] nvt_bin_header_parser 180: ovly_info = 0, ilm_dlm_num = 2, ovly_sec_num = 0, info_sec_num = 13, partition = 15\n[   16.629868]  (0)[329:kworker/u16:3][NVT-ts-spi] nvt_update_firmware 914: Update firmware success! <150058 us>\n[   16.630176]  (0)[329:kworker/u16:3][NVT-ts-spi] nvt_get_fw_info 716: buf[1]=0x0A, buf[2]=0x00, buf[3]=0x00, buf[4]=0x72, buf[5]=0x66, buf[6]=0x03\n[   16.630502]  (0)[329:kworker/u16:3][NVT-ts-spi] nvt_get_fw_info 758: FW type is 0x01, fw_ver=18\n[   16.630938]  (0)[329:kworker/u16:3][NVT-ts-spi] nvt_read_pid 685: PID=593A\n[   16.631244]  (0)[329:kworker/u16:3][NVT-ts-spi] nvt_get_fw_info 716: buf[1]=0x0A, buf[2]=0x00, buf[3]=0x00, buf[4]=0x72, buf[5]=0x66, buf[6]=0x03\n[   16.631568]  (0)[329:kworker/u16:3][NVT-ts-spi] nvt_get_fw_info 758: FW type is 0x01, fw_ver=18\n[   16.632002]  (0)[329:kworker/u16:3][NVT-ts-spi] nvt_read_pid 685: PID=593A\n[   16.640844] -(0)[329:kworker/u16:3]mt635x_auxadc_read_raw: 7 callbacks suppressed\n[   16.640868]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[   16.641136]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1910\n[   16.642212]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3e1, adc_result=1090\n[   16.729683]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[   17.119844]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   17.119858]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   17.199642]  (0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF Didn't enter low power scenario\n[   18.159714]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   18.159728]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   19.199703]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   19.199717]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   19.929680]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[   20.239705]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   20.239718]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   20.799749]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[   20.799761]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[   20.799769]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[   21.279705]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   21.279719]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   21.680601]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[   21.680873]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1849\n[   21.682181]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3e2, adc_result=1092\n[   22.109822]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x1,cbit=0x1,7,0,4269655163,0,0,[22109806206,20000000]\n[   22.109851]  (0)[394:wdtk-0][thread:394][RT:22109833975] 2021-07-12 15:36:28.635650 UTC;android time 2021-07-12 15:36:28.635650\n[   22.239677]  (0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF Didn't enter low power scenario\n[   22.319707]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   22.319720]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   23.129681]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[   23.359743]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   23.359756]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   24.399705]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   24.399718]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   25.439720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   25.439734]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   25.839714]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[   25.839727]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[   26.297176]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c25, adc_result=3747\n[   26.329680]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[   26.479706]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   26.479720]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   26.720681]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[   26.720938]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1843\n[   26.722248]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3e3, adc_result=1093\n[   27.279643]  (0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF Didn't enter low power scenario\n[   27.359697]  (0)[352:kworker/0:2][GT9896s-ERR][__do_register_ext_module:69] Module [gt9896s-fwu] timeout\n[   27.359737]  (0)[72:kworker/0:1][GT9886-ERR][__do_register_ext_module:67] Module [goodix-fwu] timeout\n[   27.519703]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   27.519717]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   28.302743]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c20, adc_result=3746\n[   28.559703]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   28.559717]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   29.529681]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[   29.599703]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   29.599716]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   30.308312]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c26, adc_result=3747\n[   30.639703]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   30.639717]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   30.879775]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[   30.879786]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[   31.679727]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   31.679741]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   31.760605]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[   31.760887]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1934\n[   31.762195]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3e3, adc_result=1093\n[   32.312858]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c26, adc_result=3747\n[   32.319650]  (0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF Didn't enter low power scenario\n[   32.719720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   32.719734]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   32.729680]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[   33.759707]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   33.759721]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   34.318289]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c28, adc_result=3748\n[   34.799706]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   34.799719]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   35.839705]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   35.839719]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   35.919770]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[   35.919782]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[   35.919790]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[   35.929680]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[   36.322790]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c25, adc_result=3747\n[   36.800605]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[   36.800837]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1892\n[   36.801914]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3e5, adc_result=1095\n[   36.879707]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   36.879720]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   37.359641]  (0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF Didn't enter low power scenario\n[   37.919706]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   37.919720]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   38.328440]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c26, adc_result=3747\n[   38.959706]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   38.959720]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   39.999704]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   39.999718]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   40.333034]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c27, adc_result=3748\n[   40.959711]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[   40.959723]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[   41.039705]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   41.039719]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   41.840654]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[   41.840934]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1867\n[   41.842010]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3e7, adc_result=1097\n[   42.079872]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   42.079886]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   42.209857]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x1,cbit=0x1,7,0,4269655163,0,0,[42209840484,20000000]\n[   42.209886]  (0)[394:wdtk-0][thread:394][RT:42209868484] 2021-07-12 15:36:48.735684 UTC;android time 2021-07-12 15:36:48.735684\n[   42.338696]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c27, adc_result=3748\n[   42.399642]  (0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF Didn't enter low power scenario\n[   43.119840]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   43.119853]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   44.159706]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   44.159720]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   44.342736]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c27, adc_result=3748\n[   45.199747]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   45.199761]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   45.999711]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[   45.999723]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[   46.239705]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   46.239719]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   46.348599]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c28, adc_result=3748\n[   46.880583]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[   46.880948]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1818\n[   46.882025]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3e9, adc_result=1099\n[   47.279707]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   47.279720]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   47.439643]  (0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF Didn't enter low power scenario\n[   48.319714]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   48.319727]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   48.352806]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c22, adc_result=3747\n[   49.359706]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   49.359720]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   50.358297]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c26, adc_result=3747\n[   50.399704]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   50.399717]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   51.039713]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[   51.039725]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[   51.039733]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[   51.439704]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   51.439718]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   51.920603]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[   51.920861]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1861\n[   51.921940]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3ea, adc_result=1100\n[   52.362750]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c25, adc_result=3747\n[   52.479687]  (0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF Didn't enter low power scenario\n[   52.479720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   52.479732]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   53.519702]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   53.519716]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   54.368158]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c27, adc_result=3748\n[   54.559703]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   54.559717]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   55.599702]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   55.599717]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   56.079845]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[   56.079857]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[   56.372846]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c25, adc_result=3747\n[   56.639705]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   56.639719]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   56.960478]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[   56.960746]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1837\n[   56.961846]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3ea, adc_result=1100\n[   57.519642]  (0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF Didn't enter low power scenario\n[   57.679703]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   57.679716]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   58.378346]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c24, adc_result=3747\n[   58.719720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   58.719734]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   59.759721]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   59.759734]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   60.382895]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c27, adc_result=3748\n[   60.799704]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   60.799718]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   61.119847]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[   61.119859]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[   61.370555] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 1, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 1, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  61360000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[   61.840956]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   61.840981]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   62.001575]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[   62.001855]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1800\n[   62.002937]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3ec, adc_result=1103\n[   62.311013]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x1,cbit=0x1,7,0,4269655163,0,0,[62310993148,20000000]\n[   62.311051]  (0)[394:wdtk-0][thread:394][RT:62311032840] 2021-07-12 15:37:08.836848 UTC;android time 2021-07-12 15:37:08.836848\n[   62.390344]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c24, adc_result=3747\n[   62.560920]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 287, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[   62.880942]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   62.880975]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   63.920959]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   63.920984]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   64.396967]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c22, adc_result=3747\n[   64.960954]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   64.960981]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   66.000962]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   66.000987]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   66.160793]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[   66.160819]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[   66.160828]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[   66.380554] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 508, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  66370000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[   66.404538]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c25, adc_result=3747\n[   67.041050]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   67.041076]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   67.041875]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[   67.042140]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1806\n[   67.043221]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3ed, adc_result=1104\n[   67.600660]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 287, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[   68.081147]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   68.081182]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   68.412384]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c26, adc_result=3747\n[   69.121150]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   69.121176]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   69.601021]  (0)[435:kworker/0:8]aw87359_abrcv_cfg_loaded enter\n[   69.601044]  (0)[435:kworker/0:8]aw87359_abrcv_cfg_loaded: failed to read aw87359_abrcv.bin\n[   69.601063]  (0)[435:kworker/0:8]aw87359_abrcv_cfg_loaded:restart hrtimer to load firmware\n[   69.601326]  (0)[434:kworker/0:7]aw87359_abspk_cfg_loaded enter\n[   69.601337]  (0)[434:kworker/0:7]aw87359_abspk_cfg_loaded: failed to read aw87359_abspk.bin\n[   69.601346]  (0)[434:kworker/0:7]aw87359_abspk_cfg_loaded:restart hrtimer to load firmware\n[   69.601510]  (0)[433:kworker/0:6]aw87359_drcv_cfg_loaded enter\n[   69.601522]  (0)[433:kworker/0:6]aw87359_drcv_cfg_loaded: failed to read aw87359_drcv.bin\n[   69.601530]  (0)[433:kworker/0:6]aw87359_drcv_cfg_loaded:restart hrtimer to load firmware\n[   69.601655]  (0)[388:kworker/0:3]aw87359_dspk_cfg_loaded enter\n[   69.601666]  (0)[388:kworker/0:3]aw87359_dspk_cfg_loaded: failed to read aw87359_dspk.bin\n[   69.601674]  (0)[388:kworker/0:3]aw87359_dspk_cfg_loaded:restart hrtimer to load firmware\n[   69.601796]  (0)[403:kworker/0:4]aw87519_hvload_cfg_loaded enter\n[   69.601807]  (0)[403:kworker/0:4]aw87519_hvload_cfg_loaded: failed to read aw87519_hvload.bin\n[   69.601818]  (0)[403:kworker/0:4]aw87519_hvload_cfg_loaded:restart hrtimer to load firmware\n[   69.601935]  (0)[429:kworker/0:5]aw87519_drcv_cfg_loaded enter\n[   69.601945]  (0)[429:kworker/0:5]aw87519_drcv_cfg_loaded: failed to read aw87519_drcv.bin\n[   69.601954]  (0)[429:kworker/0:5]aw87519_drcv_cfg_loaded:restart hrtimer to load firmware\n[   69.602074]  (0)[3:kworker/0:0]aw87519_kspk_cfg_loaded enter\n[   69.602084]  (0)[3:kworker/0:0]aw87519_kspk_cfg_loaded: failed to read aw87519_kspk.bin\n[   69.602093]  (0)[3:kworker/0:0]aw87519_kspk_cfg_loaded:restart hrtimer to load firmware\n[   70.160945]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   70.160971]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   70.420068]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c22, adc_result=3747\n[   71.200981]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   71.201007]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   71.201110]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[   71.201120]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[   71.390555] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  71380000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[   71.680875]  (0)[3:kworker/0:0]aw87519_cfg_work_routine enter\n[   71.680898]  (0)[3:kworker/0:0]aw87519_kspk_update enter\n[   71.680918]  (0)[3:kworker/0:0]aw87519_drcv_update enter\n[   71.680927]  (0)[3:kworker/0:0]aw87519_hvload_update enter\n[   71.680942]  (0)[3:kworker/0:0]aw87359_cfg_work_routine enter\n[   71.680950]  (0)[3:kworker/0:0]aw87359_dspk_update enter\n[   71.680960]  (0)[3:kworker/0:0]aw87359_drcv_update enter\n[   71.680969]  (0)[3:kworker/0:0]aw87359_abspk_update enter\n[   71.680978]  (0)[3:kworker/0:0]aw87359_abrcv_update enter\n[   71.681362]  (0)[3:kworker/0:0]aw87519_pa 6-0058: Direct firmware load for aw87519_kspk.bin failed with error -2\n[   71.681376]  (0)[3:kworker/0:0]aw87519_pa 6-0058: Falling back to user helper\n[   71.681723]  (0)[429:kworker/0:5]aw87519_pa 6-0058: Direct firmware load for aw87519_drcv.bin failed with error -2\n[   71.681738]  (0)[429:kworker/0:5]aw87519_pa 6-0058: Falling back to user helper\n[   71.681989]  (0)[403:kworker/0:4]aw87519_pa 6-0058: Direct firmware load for aw87519_hvload.bin failed with error -2\n[   71.682003]  (0)[403:kworker/0:4]aw87519_pa 6-0058: Falling back to user helper\n[   71.682250]  (0)[388:kworker/0:3]aw87359_pa 6-0059: Direct firmware load for aw87359_dspk.bin failed with error -2\n[   71.682264]  (0)[388:kworker/0:3]aw87359_pa 6-0059: Falling back to user helper\n[   71.682513]  (0)[433:kworker/0:6]aw87359_pa 6-0059: Direct firmware load for aw87359_drcv.bin failed with error -2\n[   71.682527]  (0)[433:kworker/0:6]aw87359_pa 6-0059: Falling back to user helper\n[   71.682776]  (0)[434:kworker/0:7]aw87359_pa 6-0059: Direct firmware load for aw87359_abspk.bin failed with error -2\n[   71.682790]  (0)[434:kworker/0:7]aw87359_pa 6-0059: Falling back to user helper\n[   71.683034]  (0)[435:kworker/0:8]aw87359_pa 6-0059: Direct firmware load for aw87359_abrcv.bin failed with error -2\n[   71.683047]  (0)[435:kworker/0:8]aw87359_pa 6-0059: Falling back to user helper\n[   72.012646]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[   72.015369]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c21, adc_result=3746\n[   72.055062]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[   72.055400]  (0)[341:battery_thread][CH3_DBG] bat_cur = -1922\n[   72.056474]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3ee, adc_result=1105\n[   72.056765]  (0)[341:battery_thread]lbat 0 0 0 0\n[   72.056788]  (0)[341:battery_thread]car[-55,0,0,0,0, cycle_car:-16,ncar:0] c:0 1861 vbat:3746 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[   72.057091]  (0)[341:battery_thread]tmp:34 65535 65535 hcar2:65535 lcar2:65535 time:72 sw_iavg:-2005 -1873 1 nafg_m:0 0 0\n[   72.081225]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[   72.240944]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   72.240970]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   72.351413]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1782\n[   72.351647]  (0)[341:battery_thread]GM3log-nint-nafg 72 72 0 0 0 0 0\n[   72.352545]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3ee, adc_result=1105\n[   72.640796]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 292, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[   73.280953]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   73.280986]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   74.320944]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   74.320970]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   74.434212] -(0)[441:python3]mt635x_auxadc_read_raw: 1 callbacks suppressed\n[   74.434244]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c24, adc_result=3747\n[   74.721061]  (0)[437:kworker/0:10]awinic,aw8622-haptic haptic_pwm: aw8622_get_f0_info request_firmware failed\n[   74.721671]  (0)[437:kworker/0:10]aw8622_waveform_data_delay_work waveform file offset idx = 10\n[   74.722116]  (0)[72:kworker/0:1]awinic,aw8622-haptic haptic_pwm: Direct firmware load for aw8622_mid_f0_LONG_cfg.bin failed with error -2\n[   74.722132]  (0)[72:kworker/0:1]awinic,aw8622-haptic haptic_pwm: Falling back to user helper\n[   75.360950]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   75.360977]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   76.240938]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[   76.240961]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[   76.400557] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 509, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 500, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1000, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  76390000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[   76.401024]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   76.401039]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   76.441813]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c22, adc_result=3747\n[   77.361686]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[   77.361964]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1763\n[   77.363114]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3f0, adc_result=1107\n[   77.440811]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   77.440841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   77.680761]  (0)[441:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[   78.449258]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c23, adc_result=3747\n[   78.480815]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   78.480844]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   79.520823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   79.520853]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   80.454856]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c22, adc_result=3747\n[   80.560810]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   80.560839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   81.280791]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[   81.280818]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[   81.280827]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[   81.410558] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  81400000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[   81.600816]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   81.600846]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   82.401798]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[   82.402096]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1818\n[   82.403177]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3f1, adc_result=1108\n[   82.411075]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x1,cbit=0x1,7,0,4269655163,0,0,[82411054965,20000000]\n[   82.411114]  (0)[394:wdtk-0][thread:394][RT:82411095042] 2021-07-12 15:37:28.936910 UTC;android time 2021-07-12 15:37:28.936910\n[   82.462715]  (0)[441:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c22, adc_result=3747\n[   82.640849]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   82.640879]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   82.720792]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 289, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[   83.681076]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   83.681113]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   84.469351] -(1)[0:swapper/1]Detected VIPT I-cache on CPU1\n[   84.469417] -(1)[0:swapper/1]GICv3: CPU1: found redistributor 100 region 0:0x000000000c060000\n[   84.469495] -(1)[0:swapper/1]CPU1: Booted secondary processor [412fd050]\n[   84.720853]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   84.720883]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   85.760858]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   85.760888]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   86.320924]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[   86.320949]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[   86.420554] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 514, 30, 0, 0, 0, 0, 0, 0, success counter cpu: 499, 8, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 902, 8, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  86410000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[   86.800838]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   86.800867]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   87.441823]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[   87.442101]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1837\n[   87.443183]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3f1, adc_result=1108\n[   87.760788]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 292, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[   87.840963]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   87.840996]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   88.881039]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   88.881066]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   89.594260]  (0)[442:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c22, adc_result=3747\n[   89.920945]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   89.920971]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   90.600547]  (0)[442:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c23, adc_result=3747\n[   90.960955]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   90.960981]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   91.360812]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[   91.360842]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[   91.430556] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 508, 66, 0, 0, 0, 0, 0, 0, success counter cpu: 496, 5, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 990, 10, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  91420000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[   91.605941]  (0)[442:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c21, adc_result=3746\n[   92.001009]  (1)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   92.001036]  (1)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   92.481679]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[   92.482059]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1818\n[   92.483373]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3f3, adc_result=1110\n[   92.612685]  (0)[442:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c23, adc_result=3747\n[   92.800683]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 287, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[   93.040958]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   93.040991]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   94.080059]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   94.080086]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   94.629398]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1d, adc_result=3746\n[   95.120026]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   95.120043]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   95.634068]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1f, adc_result=3746\n[   96.159834]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   96.159849]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   96.399899]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[   96.399911]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[   96.399920]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[   96.439787] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 34, 0, 0, 0, 0, 0, 0, success counter cpu: 497, 5, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 994, 9, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  96430000000, 96610000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[   96.638683]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1d, adc_result=3746\n[   97.199851]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   97.199865]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   97.520663]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[   97.520926]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1904\n[   97.522015]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3f4, adc_result=1111\n[   97.642939]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1e, adc_result=3746\n[   97.839805]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[   98.239833]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   98.239852]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   98.647505]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c21, adc_result=3746\n[   98.839780]  (0)[437:kworker/0:10]aw8622_waveform_data_delay_work: load waveform file aw8622_mid_f0_LONG_cfg.bin faied\n[   99.279823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[   99.279837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[   99.652243]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1f, adc_result=3746\n[  100.319842]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  100.319856]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  100.329779]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[  100.657002]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1d, adc_result=3746\n[  101.359821]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  101.359836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  101.439826]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  101.439839]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  101.449783] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  101440000000, 101560000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  101.661751]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c20, adc_result=3746\n[  102.399823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  102.399837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  102.509896]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[102509881859,20000000]\n[  102.509927]  (1)[395:wdtk-1][thread:395][RT:102509910090] 2021-07-12 15:37:49.35725 UTC;android time 2021-07-12 15:37:49.35725\n[  102.509967]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[102509947397,19999934]\n[  102.560689]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  102.560938]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1861\n[  102.562027]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3f4, adc_result=1111\n[  102.666402]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c21, adc_result=3746\n[  102.879830]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  103.439823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  103.439842]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  103.670954]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c21, adc_result=3746\n[  104.479827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  104.479841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  104.675521]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1d, adc_result=3746\n[  105.519826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  105.519840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  105.680253]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1e, adc_result=3746\n[  106.459784] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  106450000000, 107130000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  106.479827]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  106.479840]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  106.559836]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  106.559849]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  106.684693]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1f, adc_result=3746\n[  107.599839]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  107.599852]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  107.600836]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f5, adc_result=2800\n[  107.601101]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1940\n[  107.602190]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3f6, adc_result=1114\n[  107.689256]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1d, adc_result=3746\n[  107.919802]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  108.639873]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  108.639892]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  108.694036]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1f, adc_result=3746\n[  109.679824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  109.679838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  109.698820]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1f, adc_result=3746\n[  110.703035]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1f, adc_result=3746\n[  110.719875]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  110.719888]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  111.469783] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  111460000000, 112080000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  111.519827]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  111.519840]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  111.519848]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  111.707590]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1f, adc_result=3746\n[  111.759824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  111.759838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  112.640665]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  112.640894]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1922\n[  112.641983]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3f6, adc_result=1114\n[  112.712530]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1f, adc_result=3746\n[  112.799826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  112.799840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  112.959804]  (0)[443:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  113.717087]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1f, adc_result=3746\n[  113.839822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  113.839836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  114.721708]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1c, adc_result=3746\n[  114.879824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  114.879839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  115.726270]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c20, adc_result=3746\n[  115.919823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  115.919838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  116.479783] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  116470000000, 117030000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  116.559826]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  116.559839]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  116.730804]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1e, adc_result=3746\n[  116.959830]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  116.959844]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  117.680647]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  117.680908]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1879\n[  117.682000]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3f7, adc_result=1115\n[  117.735388]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c20, adc_result=3746\n[  117.999863]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x7c000013 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  117.999895]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  117.999911]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  118.740083]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1e, adc_result=3746\n[  119.039825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  119.039839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  119.744600]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1e, adc_result=3746\n[  120.079991]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  120.080006]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  120.749230]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c20, adc_result=3746\n[  121.119991]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  121.120005]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  121.489783] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  121480000000, 121980000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  121.599825]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  121.599839]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  121.752956]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1e, adc_result=3746\n[  122.159822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  122.159836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  122.609886]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[122609871061,20000000]\n[  122.609918]  (1)[395:wdtk-1][thread:395][RT:122609900907] 2021-07-12 15:38:09.135716 UTC;android time 2021-07-12 15:38:09.135716\n[  122.609975]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[122609957599,19999913]\n[  122.720649]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  122.720913]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1916\n[  122.722002]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3f7, adc_result=1115\n[  122.757783]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1c, adc_result=3746\n[  123.039802]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  123.199842]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  123.199861]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  123.762400]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1e, adc_result=3746\n[  124.239828]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  124.239842]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  124.767158]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1b, adc_result=3745\n[  125.279825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  125.279839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  125.771842]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1b, adc_result=3745\n[  125.919848]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  125.929786]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[  126.319827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  126.319841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  126.499784] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  126490000000, 126940000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  126.639827]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  126.639839]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  126.639848]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  126.776443]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1b, adc_result=3745\n[  127.359825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  127.359839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  127.760649]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  127.760917]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1898\n[  127.762006]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3f8, adc_result=1116\n[  127.780983]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1d, adc_result=3746\n[  128.079996]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  128.399826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  128.399845]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  128.785779]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1e, adc_result=3746\n[  129.439827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  129.439841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  129.790544]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1d, adc_result=3746\n[  130.479824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  130.479839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  130.795115]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1d, adc_result=3746\n[  131.509783] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  131500000000, 131890000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  131.519825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  131.519839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  131.679826]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  131.679838]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  131.799939]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1c, adc_result=3746\n[  132.351995]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[  132.354384]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1c, adc_result=3746\n[  132.388553]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  132.388821]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2008\n[  132.389946]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3fa, adc_result=1118\n[  132.390332]  (0)[341:battery_thread]lbat 0 0 0 0\n[  132.390355]  (0)[341:battery_thread]car[-87,0,0,0,0, cycle_car:-16,ncar:0] c:0 1904 vbat:3746 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[  132.390650]  (0)[341:battery_thread]tmp:33 65535 65535 hcar2:65535 lcar2:65535 time:132 sw_iavg:-1920 -1931 1 nafg_m:0 0 0\n[  132.559890]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  132.559904]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  132.689885]  (0)[341:battery_thread]GM3log-nint-nafg 132 132 0 0 0 0 0\n[  132.800749]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  132.801018]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1947\n[  133.119985]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  133.599847]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  133.599866]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  133.809356] -(0)[443:python3]mt635x_auxadc_read_raw: 2 callbacks suppressed\n[  133.809375]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1d, adc_result=3746\n[  134.639823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  134.639837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  134.814199]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1b, adc_result=3745\n[  135.679831]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  135.679845]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  135.818756]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1b, adc_result=3745\n[  136.160052]  (0)[72:kworker/0:1]aw8622_wavefrom_data_load enter\n[  136.160066]  (0)[72:kworker/0:1]aw8622_wavefrom_data_load: failed to read aw8622_mid_f0_LONG_cfg.bin\n[  136.160203]  (0)[435:kworker/0:8]aw87359_abrcv_cfg_loaded enter\n[  136.160214]  (0)[435:kworker/0:8]aw87359_abrcv_cfg_loaded: failed to read aw87359_abrcv.bin\n[  136.160227]  (0)[435:kworker/0:8]aw87359_abrcv_cfg_loaded:restart hrtimer to load firmware\n[  136.160347]  (0)[434:kworker/0:7]aw87359_abspk_cfg_loaded enter\n[  136.160359]  (0)[434:kworker/0:7]aw87359_abspk_cfg_loaded: failed to read aw87359_abspk.bin\n[  136.160368]  (0)[434:kworker/0:7]aw87359_abspk_cfg_loaded:restart hrtimer to load firmware\n[  136.160482]  (0)[433:kworker/0:6]aw87359_drcv_cfg_loaded enter\n[  136.160493]  (0)[433:kworker/0:6]aw87359_drcv_cfg_loaded: failed to read aw87359_drcv.bin\n[  136.160501]  (0)[433:kworker/0:6]aw87359_drcv_cfg_loaded:restart hrtimer to load firmware\n[  136.160624]  (0)[388:kworker/0:3]aw87359_dspk_cfg_loaded enter\n[  136.160635]  (0)[388:kworker/0:3]aw87359_dspk_cfg_loaded: failed to read aw87359_dspk.bin\n[  136.160643]  (0)[388:kworker/0:3]aw87359_dspk_cfg_loaded:restart hrtimer to load firmware\n[  136.160762]  (0)[403:kworker/0:4]aw87519_hvload_cfg_loaded enter\n[  136.160773]  (0)[403:kworker/0:4]aw87519_hvload_cfg_loaded: failed to read aw87519_hvload.bin\n[  136.160784]  (0)[403:kworker/0:4]aw87519_hvload_cfg_loaded:restart hrtimer to load firmware\n[  136.160934]  (0)[429:kworker/0:5]aw87519_drcv_cfg_loaded enter\n[  136.160945]  (0)[429:kworker/0:5]aw87519_drcv_cfg_loaded: failed to read aw87519_drcv.bin\n[  136.160954]  (0)[429:kworker/0:5]aw87519_drcv_cfg_loaded:restart hrtimer to load firmware\n[  136.161073]  (0)[3:kworker/0:0]aw87519_kspk_cfg_loaded enter\n[  136.161083]  (0)[3:kworker/0:0]aw87519_kspk_cfg_loaded: failed to read aw87519_kspk.bin\n[  136.161092]  (0)[3:kworker/0:0]aw87519_kspk_cfg_loaded:restart hrtimer to load firmware\n[  136.519783] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 512, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 498, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 996, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  136510000000, 136630000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  136.719852]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  136.719865]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  136.719937]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  136.719946]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  136.823178]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1b, adc_result=3745\n[  137.759825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  137.759839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  137.827734]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1c, adc_result=3746\n[  137.840679]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  137.840935]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1898\n[  137.842023]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3fa, adc_result=1118\n[  138.159801]  (0)[3:kworker/0:0][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  138.239783]  (0)[3:kworker/0:0]aw87519_cfg_work_routine enter\n[  138.239801]  (0)[3:kworker/0:0]aw87519_kspk_update enter\n[  138.239816]  (0)[3:kworker/0:0]aw87519_drcv_update enter\n[  138.239825]  (0)[3:kworker/0:0]aw87519_hvload_update enter\n[  138.239837]  (0)[3:kworker/0:0]aw87359_cfg_work_routine enter\n[  138.239845]  (0)[3:kworker/0:0]aw87359_dspk_update enter\n[  138.239854]  (0)[3:kworker/0:0]aw87359_drcv_update enter\n[  138.239864]  (0)[3:kworker/0:0]aw87359_abspk_update enter\n[  138.239873]  (0)[3:kworker/0:0]aw87359_abrcv_update enter\n[  138.240074]  (0)[3:kworker/0:0]aw87519_pa 6-0058: Direct firmware load for aw87519_kspk.bin failed with error -2\n[  138.240088]  (0)[3:kworker/0:0]aw87519_pa 6-0058: Falling back to user helper\n[  138.240400]  (0)[429:kworker/0:5]aw87519_pa 6-0058: Direct firmware load for aw87519_drcv.bin failed with error -2\n[  138.240414]  (0)[429:kworker/0:5]aw87519_pa 6-0058: Falling back to user helper\n[  138.240653]  (0)[403:kworker/0:4]aw87519_pa 6-0058: Direct firmware load for aw87519_hvload.bin failed with error -2\n[  138.240667]  (0)[403:kworker/0:4]aw87519_pa 6-0058: Falling back to user helper\n[  138.240907]  (0)[388:kworker/0:3]aw87359_pa 6-0059: Direct firmware load for aw87359_dspk.bin failed with error -2\n[  138.240921]  (0)[388:kworker/0:3]aw87359_pa 6-0059: Falling back to user helper\n[  138.241165]  (0)[433:kworker/0:6]aw87359_pa 6-0059: Direct firmware load for aw87359_drcv.bin failed with error -2\n[  138.241179]  (0)[433:kworker/0:6]aw87359_pa 6-0059: Falling back to user helper\n[  138.241413]  (0)[434:kworker/0:7]aw87359_pa 6-0059: Direct firmware load for aw87359_abspk.bin failed with error -2\n[  138.241427]  (0)[434:kworker/0:7]aw87359_pa 6-0059: Falling back to user helper\n[  138.241668]  (0)[435:kworker/0:8]aw87359_pa 6-0059: Direct firmware load for aw87359_abrcv.bin failed with error -2\n[  138.241682]  (0)[435:kworker/0:8]aw87359_pa 6-0059: Falling back to user helper\n[  138.799826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  138.799840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  138.832373]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c18, adc_result=3745\n[  139.836949]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1b, adc_result=3745\n[  139.839834]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  139.839848]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  140.841548]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  140.879826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  140.879840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  141.529783] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  141520000000, 141590000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  141.759827]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  141.759840]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  141.759849]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  141.846102]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1a, adc_result=3745\n[  141.919825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  141.919839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  142.709857]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[142709842878,20000000]\n[  142.709888]  (1)[395:wdtk-1][thread:395][RT:142709871108] 2021-07-12 15:38:29.235686 UTC;android time 2021-07-12 15:38:29.235686\n[  142.709935]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[142709916108,19999926]\n[  142.850677]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1d, adc_result=3746\n[  142.880657]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  142.880913]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1928\n[  142.881999]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3fa, adc_result=1118\n[  142.959829]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  142.959843]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  143.199826]  (0)[443:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  143.855258]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1c, adc_result=3746\n[  143.999825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  143.999839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  144.859804]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1c, adc_result=3746\n[  145.039823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  145.039836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  145.864336]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1d, adc_result=3746\n[  146.079989]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  146.080004]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  146.539782] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  146530000000, 146540000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  146.799838]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  146.799851]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  146.868898]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1c, adc_result=3746\n[  147.119989]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  147.120002]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  147.872912]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  147.920647]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  147.920925]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1971\n[  147.922014]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3fb, adc_result=1119\n[  148.159826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  148.159840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  148.239803]  (0)[443:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  148.877503]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c18, adc_result=3745\n[  149.199826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  149.199840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  149.882105]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1c, adc_result=3746\n[  150.239825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  150.239840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  150.886666]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1c, adc_result=3746\n[  151.279822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  151.279837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  151.549784] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  151540000000, 152490000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  151.839825]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  151.839837]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  151.891227]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1c, adc_result=3746\n[  152.319828]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  152.319842]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  152.895782]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1b, adc_result=3745\n[  152.960649]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  152.960930]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1879\n[  152.962022]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3fc, adc_result=1120\n[  153.279801]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  153.359822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  153.359841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  153.900343]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  154.399866]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  154.399880]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  154.904821]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1b, adc_result=3745\n[  155.439822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  155.439836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  155.909374]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1b, adc_result=3745\n[  155.999812]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  156.479869]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  156.479884]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  156.559784] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  156550000000, 157450000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  156.879827]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  156.879840]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  156.879848]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  156.913972]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c18, adc_result=3745\n[  157.519821]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  157.519835]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  157.918577]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c19, adc_result=3745\n[  158.000648]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  158.000910]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1831\n[  158.001998]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3fc, adc_result=1120\n[  158.319802]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  158.559825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  158.559844]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  158.923003]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1b, adc_result=3745\n[  159.599824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  159.599838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  159.927737]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1c, adc_result=3746\n[  160.639825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  160.639839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  160.932478]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  161.569784] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 500, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1000, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  161560000000, 162400000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  161.679823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  161.679837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  161.919891]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  161.919903]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  161.937104]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c19, adc_result=3745\n[  162.719870]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  162.719884]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  162.809856]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[162809841003,20000000]\n[  162.809887]  (1)[395:wdtk-1][thread:395][RT:162809869926] 2021-07-12 15:38:49.335686 UTC;android time 2021-07-12 15:38:49.335686\n[  162.809932]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[162809914618,19999926]\n[  162.941938]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1a, adc_result=3745\n[  163.040648]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  163.040920]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1922\n[  163.042007]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3fd, adc_result=1121\n[  163.359802]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  163.759825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  163.759844]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  163.946731]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c19, adc_result=3745\n[  164.799826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  164.799840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  164.951538]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c19, adc_result=3745\n[  165.839824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  165.839839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  165.956093]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c19, adc_result=3745\n[  166.579784] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1008, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  166570000000, 167360000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  166.879833]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  166.879847]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  166.959759]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  166.959772]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  166.960625]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c19, adc_result=3745\n[  167.919824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  167.919838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  167.965178]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c15, adc_result=3744\n[  168.080815]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  168.081184]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1879\n[  168.082271]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3fd, adc_result=1121\n[  168.399801]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  168.959827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  168.959846]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  168.969754]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1a, adc_result=3745\n[  169.974205]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c18, adc_result=3745\n[  169.999828]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  169.999842]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  170.978762]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c19, adc_result=3745\n[  171.039824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  171.039838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  171.589782] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  171580000000, 172320000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  171.983068]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1c, adc_result=3746\n[  171.999854]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  171.999866]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  171.999875]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  172.079992]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  172.080006]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  172.987653]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  173.120014]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  173.120029]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  173.120953]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  173.121213]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1873\n[  173.122302]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3fe, adc_result=1122\n[  173.439801]  (0)[443:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  173.992478]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c18, adc_result=3745\n[  174.159830]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  174.159845]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  174.997029]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c19, adc_result=3745\n[  175.199822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  175.199837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  176.001719]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1a, adc_result=3745\n[  176.239865]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  176.239880]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  176.599783] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  176590000000, 177280000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  177.006643]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c18, adc_result=3745\n[  177.039835]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  177.039848]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  177.279826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  177.279840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  178.011191]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c19, adc_result=3745\n[  178.160648]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  178.160916]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1934\n[  178.162006]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x3ff, adc_result=1123\n[  178.319822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  178.319836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  178.479802]  (0)[443:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  179.015750]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1b, adc_result=3745\n[  179.359826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  179.359841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  180.020291]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1a, adc_result=3745\n[  180.399821]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  180.399836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  181.024729]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c15, adc_result=3744\n[  181.439827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  181.439841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  181.600581] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: , t:  181600000000, 182270000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  182.029313]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c19, adc_result=3745\n[  182.079990]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  182.080003]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  182.479823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  182.479837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  182.909826]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[182909810358,20000000]\n[  182.909858]  (1)[395:wdtk-1][thread:395][RT:182909840743] 2021-07-12 15:39:09.435656 UTC;android time 2021-07-12 15:39:09.435656\n[  182.909902]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[182909883512,19999926]\n[  183.032945]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  183.200493]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  183.200782]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1947\n[  183.201957]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x400, adc_result=1125\n[  183.519867]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  183.519899]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  183.519917]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  184.037517]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  184.559824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  184.559838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  185.042499]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c18, adc_result=3745\n[  185.599823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  185.599837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  186.047107]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c18, adc_result=3745\n[  186.079836]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  186.609783] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 500, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1000, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  186600000000, 187220000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  186.639847]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  186.639861]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  187.051818]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  187.119990]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  187.120004]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  187.120012]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  187.679825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  187.679839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  188.056610]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c16, adc_result=3744\n[  188.240652]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  188.240927]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1904\n[  188.242033]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x400, adc_result=1125\n[  188.559815]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  188.719822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  188.719840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  189.061242]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c19, adc_result=3745\n[  189.759824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  189.759839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  190.065865]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1a, adc_result=3745\n[  190.799823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  190.799838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  191.070400]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c19, adc_result=3745\n[  191.619784] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  191610000000, 191760000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  191.839841]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  191.839855]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  192.074924]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  192.159830]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  192.159842]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  192.690223]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[  192.692664]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c14, adc_result=3744\n[  192.726588]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  192.726862]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2014\n[  192.727948]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x401, adc_result=1126\n[  192.728217]  (0)[341:battery_thread]lbat 0 0 0 0\n[  192.728240]  (0)[341:battery_thread]car[-119,0,0,0,0, cycle_car:-16,ncar:0] c:0 1879 vbat:3744 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[  192.728540]  (0)[341:battery_thread]tmp:33 65535 65535 hcar2:65535 lcar2:65535 time:192 sw_iavg:-1920 -1925 1 nafg_m:0 0 0\n[  192.879830]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  192.879844]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  193.019827]  (0)[341:battery_thread]GM3log-nint-nafg 192 192 0 0 0 0 0\n[  193.079671]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c19, adc_result=3745\n[  193.280648]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  193.280905]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1940\n[  193.599804]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  193.919832]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  193.919850]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  194.084177] -(0)[443:python3]mt635x_auxadc_read_raw: 1 callbacks suppressed\n[  194.084196]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c14, adc_result=3744\n[  194.959821]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  194.959835]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  195.088968]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c16, adc_result=3744\n[  195.999824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  195.999838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  196.092929]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c1a, adc_result=3745\n[  196.629783] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 511, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  196620000000, 196710000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  197.039834]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  197.039847]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  197.097482]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c19, adc_result=3745\n[  197.199827]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  197.199841]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  198.080043]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  198.080057]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  198.102132]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c19, adc_result=3745\n[  198.320724]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  198.320979]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1971\n[  198.322066]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x401, adc_result=1126\n[  198.639803]  (0)[443:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  199.106738]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  199.119997]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  199.120011]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  200.111276]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c18, adc_result=3745\n[  200.159825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  200.159839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  201.115822]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c16, adc_result=3744\n[  201.199824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  201.199838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  201.639783] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  201630000000, 202170000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  202.120400]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  202.239843]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  202.239857]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  202.239927]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  202.239937]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  202.239945]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  202.720029]  (0)[435:kworker/0:8]aw87359_abrcv_cfg_loaded enter\n[  202.720042]  (0)[435:kworker/0:8]aw87359_abrcv_cfg_loaded: failed to read aw87359_abrcv.bin\n[  202.720170]  (0)[434:kworker/0:7]aw87359_abspk_cfg_loaded enter\n[  202.720181]  (0)[434:kworker/0:7]aw87359_abspk_cfg_loaded: failed to read aw87359_abspk.bin\n[  202.720303]  (0)[433:kworker/0:6]aw87359_drcv_cfg_loaded enter\n[  202.720314]  (0)[433:kworker/0:6]aw87359_drcv_cfg_loaded: failed to read aw87359_drcv.bin\n[  202.720438]  (0)[388:kworker/0:3]aw87359_dspk_cfg_loaded enter\n[  202.720449]  (0)[388:kworker/0:3]aw87359_dspk_cfg_loaded: failed to read aw87359_dspk.bin\n[  202.720600]  (0)[403:kworker/0:4]aw87519_hvload_cfg_loaded enter\n[  202.720611]  (0)[403:kworker/0:4]aw87519_hvload_cfg_loaded: failed to read aw87519_hvload.bin\n[  202.720731]  (0)[429:kworker/0:5]aw87519_drcv_cfg_loaded enter\n[  202.720741]  (0)[429:kworker/0:5]aw87519_drcv_cfg_loaded: failed to read aw87519_drcv.bin\n[  202.720861]  (0)[3:kworker/0:0]aw87519_kspk_cfg_loaded enter\n[  202.720872]  (0)[3:kworker/0:0]aw87519_kspk_cfg_loaded: failed to read aw87519_kspk.bin\n[  203.009862]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[203009847329,20000000]\n[  203.009893]  (1)[395:wdtk-1][thread:395][RT:203009876175] 2021-07-12 15:39:29.535692 UTC;android time 2021-07-12 15:39:29.535692\n[  203.009940]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[203009922945,19999924]\n[  203.124922]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  203.279827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  203.279841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  203.360651]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  203.361040]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1934\n[  203.362127]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x402, adc_result=1127\n[  203.679804]  (0)[443:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  204.129496]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c18, adc_result=3745\n[  204.319828]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  204.319842]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  205.134092]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c18, adc_result=3745\n[  205.359822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  205.359835]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  206.138718]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c15, adc_result=3744\n[  206.399822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  206.399836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  206.649782] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  206640000000, 207130000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  207.142921]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  207.279826]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  207.279839]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  207.439826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  207.439840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  208.147479]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c16, adc_result=3744\n[  208.400650]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  208.400904]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1879\n[  208.402585]  (0)[132:kworker/u16:1]BAT_TEMP_PREV:1127,BAT_TEMP:1127,VBIF28:2799\n[  208.402605]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x402, adc_result=1127\n[  208.479825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  208.479839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  208.719827]  (0)[443:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  209.152107]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c16, adc_result=3744\n[  209.519823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  209.519837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  210.156770]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c19, adc_result=3745\n[  210.559823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  210.559838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  211.161458]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  211.599822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  211.599836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  211.659783] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  211650000000, 211750000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  212.166170]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  212.319845]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  212.319858]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  212.639824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  212.639838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  213.170713]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  213.440648]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  213.440910]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1867\n[  213.442094]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x403, adc_result=1128\n[  213.679821]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  213.679835]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  213.759802]  (0)[443:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  214.175279]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c15, adc_result=3744\n[  214.719824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  214.719838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  215.179918]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c16, adc_result=3744\n[  215.759820]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  215.759835]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  216.159833]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  216.184409]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c18, adc_result=3745\n[  216.669784] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  216660000000, 216710000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  216.799850]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  216.799865]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  217.188969]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c15, adc_result=3744\n[  217.359829]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  217.359842]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  217.359849]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  217.839820]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  217.839834]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  218.193036]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c16, adc_result=3744\n[  218.480648]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  218.480934]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1947\n[  218.482011]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x403, adc_result=1128\n[  218.799803]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  218.879824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  218.879843]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  219.197693]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c14, adc_result=3744\n[  219.919864]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  219.919878]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  220.202298]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  220.959823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  220.959837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  221.206849]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c16, adc_result=3744\n[  221.679783] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  221670000000, 222650000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  221.999820]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  221.999834]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  222.211399]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  222.399827]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  222.399839]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  223.039823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  223.039837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  223.109823]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[223109808608,20000000]\n[  223.109854]  (1)[395:wdtk-1][thread:395][RT:223109837454] 2021-07-12 15:39:49.635652 UTC;android time 2021-07-12 15:39:49.635652\n[  223.109903]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[223109884223,19999925]\n[  223.215994]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  223.520650]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  223.520995]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1904\n[  223.522085]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x403, adc_result=1128\n[  223.839803]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  224.079990]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  224.080009]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  224.220595]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c18, adc_result=3745\n[  225.120007]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  225.120021]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  225.225205]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c15, adc_result=3744\n[  226.159822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  226.159835]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  226.229805]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c14, adc_result=3744\n[  226.689784] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  226680000000, 227610000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  227.199836]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  227.199850]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  227.234364]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c14, adc_result=3744\n[  227.439895]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  227.439906]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  228.238953]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c15, adc_result=3744\n[  228.239763]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  228.239777]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  228.560649]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  228.560908]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1940\n[  228.561995]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x405, adc_result=1130\n[  228.879803]  (0)[443:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  229.242925]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  229.279837]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  229.279851]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  230.247480]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  230.319845]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  230.319859]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  231.252156]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c16, adc_result=3744\n[  231.359826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  231.359840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  231.699782] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 500, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1000, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  231690000000, 232560000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  232.256829]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c13, adc_result=3744\n[  232.399821]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  232.399835]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  232.479827]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  232.479840]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  232.479848]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  233.261385]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c13, adc_result=3744\n[  233.439829]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  233.439843]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  233.600646]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  233.600975]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1934\n[  233.602052]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x406, adc_result=1131\n[  233.919802]  (0)[443:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  234.266022]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c16, adc_result=3744\n[  234.479825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  234.479839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  235.270572]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c15, adc_result=3744\n[  235.519826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  235.519840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  236.275212]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c15, adc_result=3744\n[  236.559830]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  236.559844]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  236.709784] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 510, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1008, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  236700000000, 237510000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  237.279887]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c15, adc_result=3744\n[  237.519830]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  237.519842]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  237.599827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  237.599840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  238.284415]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c13, adc_result=3744\n[  238.639843]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  238.639858]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  238.640754]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  238.641014]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1904\n[  238.642100]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x405, adc_result=1130\n[  238.959802]  (0)[443:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  239.288980]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c15, adc_result=3744\n[  239.679827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  239.679840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  240.292973]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c13, adc_result=3744\n[  240.719822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  240.719836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  241.297515]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  241.719781] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 500, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1000, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  241710000000, 242460000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  241.759870]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  241.759884]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  242.302179]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c14, adc_result=3744\n[  242.559827]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  242.559840]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  242.799823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  242.799837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  243.209860]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[243209843733,20000000]\n[  243.209891]  (1)[395:wdtk-1][thread:395][RT:243209874194] 2021-07-12 15:40:09.735689 UTC;android time 2021-07-12 15:40:09.735689\n[  243.209934]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[243209917271,19999927]\n[  243.306784]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c14, adc_result=3744\n[  243.680651]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  243.680944]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1904\n[  243.682024]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x406, adc_result=1131\n[  243.839827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  243.839841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  243.999804]  (0)[443:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  244.311340]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c16, adc_result=3744\n[  244.879823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  244.879837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  245.315892]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c11, adc_result=3743\n[  245.919821]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  245.919835]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  246.239803]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  246.320483]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  246.729784] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  246720000000, 247410000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  246.959824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  246.959838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  247.325049]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c13, adc_result=3744\n[  247.599830]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  247.599843]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  247.599850]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  247.999826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  247.999840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  248.329628]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c14, adc_result=3744\n[  248.720649]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  248.720908]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1928\n[  248.721995]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x406, adc_result=1131\n[  248.809780]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[  249.039861]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  249.039894]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  249.039911]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  249.334199]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c16, adc_result=3744\n[  250.080007]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  250.080023]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  250.338794]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c14, adc_result=3744\n[  251.119984]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  251.119998]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  251.342861]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c13, adc_result=3744\n[  251.739783] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  251730000000, 251760000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  252.159826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  252.159840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  252.347685]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c11, adc_result=3743\n[  252.639825]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  252.639838]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  253.020178]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[  253.022723]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c14, adc_result=3744\n[  253.056804]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  253.057060]  (0)[341:battery_thread][CH3_DBG] bat_cur = -1983\n[  253.058146]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x406, adc_result=1131\n[  253.058385]  (0)[341:battery_thread]lbat 0 0 0 0\n[  253.058408]  (0)[341:battery_thread]car[-152,0,0,0,0, cycle_car:-16,ncar:0] c:0 1916 vbat:3744 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[  253.058708]  (0)[341:battery_thread]tmp:33 65535 65535 hcar2:65535 lcar2:65535 time:253 sw_iavg:-1980 -1943 1 nafg_m:0 0 0\n[  253.199845]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  253.199860]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  253.349773]  (0)[341:battery_thread]GM3log-nint-nafg 253 253 0 0 0 0 0\n[  253.352552]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c16, adc_result=3744\n[  253.760645]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  253.760890]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1947\n[  254.079981]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 98, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  254.239829]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  254.239848]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  254.357189] -(0)[443:python3]mt635x_auxadc_read_raw: 1 callbacks suppressed\n[  254.357209]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c16, adc_result=3744\n[  255.279837]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  255.279851]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  255.361811]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c14, adc_result=3744\n[  256.319825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  256.319839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  256.366591]  (0)[443:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c14, adc_result=3744\n[  256.740560] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 516, 7, 0, 0, 0, 0, 0, 0, success counter cpu: 498, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 994, 0, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  256730000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  257.360973]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  257.361000]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  257.680907]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  257.680927]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  258.400924]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  258.400947]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  258.801625]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  258.801963]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1800\n[  258.803032]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x407, adc_result=1132\n[  259.121017]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 288, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  259.440925]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  259.440955]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  260.480911]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  260.480935]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  261.497639]  (0)[445:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c14, adc_result=3744\n[  261.520864]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  261.520888]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  261.750538] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 55, 0, 0, 0, 0, 0, 0, success counter cpu: 491, 8, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 982, 15, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  261740000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  262.503758]  (0)[445:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  262.560824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  262.560847]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  262.720762]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  262.720787]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  262.720793]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  263.310785]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[263310753627,20000000]\n[  263.310798]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[263310775704,19999978]\n[  263.310826]  (0)[394:wdtk-0][thread:394][RT:263310812319] 2021-07-12 15:40:29.836627 UTC;android time 2021-07-12 15:40:29.836627\n[  263.509811]  (0)[445:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c17, adc_result=3745\n[  263.600987]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  263.601010]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  263.841702]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  263.842068]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1831\n[  263.843346]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x408, adc_result=1133\n[  264.160631]  (0)[445:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 288, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  264.514539]  (0)[445:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c16, adc_result=3744\n[  264.640917]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  264.640940]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  265.679854]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  265.679878]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  266.529606]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c10, adc_result=3743\n[  266.719836]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  266.719850]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  266.759769] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 49, 0, 0, 0, 0, 0, 0, success counter cpu: 495, 8, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 986, 14, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  266750000000, 267520000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  267.534148]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c13, adc_result=3744\n[  267.759824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  267.759836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  267.759902]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  267.759911]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  268.538712]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c14, adc_result=3744\n[  268.799809]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  268.799821]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  268.880596]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  268.880848]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1934\n[  268.882130]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x409, adc_result=1134\n[  269.199786]  (0)[446:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  269.542889]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c14, adc_result=3744\n[  269.839805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  269.839816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  270.547135]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c14, adc_result=3744\n[  270.879802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  270.879814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  271.551606]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c14, adc_result=3744\n[  271.769768] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  271760000000, 272230000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  271.919802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  271.919812]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  272.556082]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c13, adc_result=3744\n[  272.799810]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  272.799821]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  272.959801]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  272.959813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  273.560660]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c14, adc_result=3744\n[  273.920603]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  273.920831]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1922\n[  273.922101]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x409, adc_result=1134\n[  273.999803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  273.999814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  274.239806]  (0)[446:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  274.565183]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c13, adc_result=3744\n[  275.039801]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  275.039812]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  275.569778]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  276.079958]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  276.079969]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  276.319793]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  276.574381]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c15, adc_result=3744\n[  276.779767] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  276770000000, 277180000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  277.119972]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  277.119983]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  277.578886]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c13, adc_result=3744\n[  277.839811]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  277.839821]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  277.839828]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  278.159805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  278.159816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  278.582676]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c11, adc_result=3743\n[  278.960607]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  278.960840]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1922\n[  278.962111]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x409, adc_result=1134\n[  279.199807]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  279.199818]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  279.279785]  (0)[446:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  279.587157]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  280.239805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  280.239817]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  280.591484]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c13, adc_result=3744\n[  281.279800]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  281.279812]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  281.595996]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  281.789764] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  281780000000, 282130000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  282.319801]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  282.319812]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  282.600450]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  282.879810]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  282.879820]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  283.359803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  283.359814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  283.409832]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[283409819752,20000000]\n[  283.409857]  (1)[395:wdtk-1][thread:395][RT:283409843752] 2021-07-12 15:40:49.935659 UTC;android time 2021-07-12 15:40:49.935659\n[  283.409902]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[283409888059,19999932]\n[  283.604675]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0d, adc_result=3743\n[  284.000494]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  284.000764]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1910\n[  284.001815]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x409, adc_result=1134\n[  284.319785]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  284.399803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  284.399819]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  284.608961]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  285.439845]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  285.439856]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  285.612698]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  286.479815]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  286.479827]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  286.617211]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  286.799764] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  286790000000, 287090000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  287.519809]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  287.519820]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  287.621673]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  287.919808]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  287.919819]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  288.559802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  288.559813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  288.625938]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c11, adc_result=3743\n[  289.040605]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  289.040887]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1904\n[  289.041944]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x40b, adc_result=1137\n[  289.359783]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  289.599801]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  289.599817]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  289.630423]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c13, adc_result=3744\n[  290.634729]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c10, adc_result=3743\n[  290.639805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  290.639816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  291.639034]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  291.679803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  291.679814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  291.809765] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  291800000000, 292050000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  292.642964]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  292.719801]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  292.719812]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  292.959896]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  292.959906]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  292.959913]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  293.647469]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c10, adc_result=3743\n[  293.759838]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  293.759849]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  294.080754]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  294.081091]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1892\n[  294.082372]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x40c, adc_result=1138\n[  294.399785]  (0)[446:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  294.652070]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0d, adc_result=3743\n[  294.799805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  294.799816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  295.656578]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  295.839803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  295.839814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  296.661141]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c10, adc_result=3743\n[  296.819765] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  296810000000, 297000000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  296.879802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  296.879813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  297.665643]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c13, adc_result=3744\n[  297.919802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  297.919814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  297.999810]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  297.999821]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  298.669978]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  298.959802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  298.959813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  299.120777]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  299.121057]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1861\n[  299.122112]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x40b, adc_result=1137\n[  299.439783]  (0)[446:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  299.674471]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  299.999807]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  299.999818]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  300.678958]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  301.039803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  301.039814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  301.682853]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c13, adc_result=3744\n[  301.829764] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  301820000000, 301960000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  302.079963]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  302.079975]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  302.687120]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c11, adc_result=3743\n[  303.039808]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  303.039818]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  303.119957]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  303.119969]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  303.509808]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[303509795569,20000000]\n[  303.509834]  (1)[395:wdtk-1][thread:395][RT:303509820492] 2021-07-12 15:41:10.35636 UTC;android time 2021-07-12 15:41:10.35636\n[  303.509874]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[303509858646,19999937]\n[  303.691639]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c10, adc_result=3743\n[  304.159818]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  304.159830]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  304.160693]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  304.160944]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1928\n[  304.162216]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x40c, adc_result=1138\n[  304.479805]  (0)[446:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  304.696032]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  305.199808]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  305.199820]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  305.700556]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0f, adc_result=3743\n[  306.239804]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  306.239816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  306.399788]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  306.705096]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c10, adc_result=3743\n[  306.839767] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1008, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  306830000000, 306910000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  307.279838]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  307.279849]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  307.709451]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  308.079966]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  308.079978]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  308.079984]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  308.319852]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  308.319863]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  308.713753]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0f, adc_result=3743\n[  309.200593]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  309.200890]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1916\n[  309.202160]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x40b, adc_result=1137\n[  309.359801]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  309.359813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  309.519786]  (0)[446:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  309.718225]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  310.399805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  310.399817]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  310.722816]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  311.439802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  311.439813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  311.727298]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c11, adc_result=3743\n[  311.849766] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  311840000000, 311860000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  312.479805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  312.479816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  312.731933]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0d, adc_result=3743\n[  313.119960]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  313.119971]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  313.350133]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[  313.352668]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  313.385941]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  313.386205]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2014\n[  313.387476]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x40d, adc_result=1139\n[  313.387728]  (0)[341:battery_thread]lbat 0 0 0 0\n[  313.387746]  (0)[341:battery_thread]car[-184,0,0,0,0, cycle_car:-16,ncar:0] c:0 1947 vbat:3743 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[  313.388052]  (0)[341:battery_thread]tmp:33 65535 65535 hcar2:65535 lcar2:65535 time:313 sw_iavg:-1920 -1919 1 nafg_m:0 0 0\n[  313.519821]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  313.519832]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  313.679807]  (0)[341:battery_thread]GM3log-nint-nafg 313 313 0 0 0 0 0\n[  313.736510]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  314.240594]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  314.240839]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1892\n[  314.242112]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x40d, adc_result=1139\n[  314.559858]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b7, req_sta =  0xfc00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  314.559886]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  314.559899]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  314.741024]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c11, adc_result=3743\n[  315.599814]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  315.599826]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  315.745611]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  316.639803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  316.639814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  316.749967]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  316.859766] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 509, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  316850000000, 317800000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  317.679804]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  317.679816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  317.754423]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  318.159810]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  318.159821]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  318.719805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  318.719817]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  318.758697]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0d, adc_result=3743\n[  319.280593]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  319.280859]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1892\n[  319.282130]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x40d, adc_result=1139\n[  319.599785]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  319.759813]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  319.759829]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  319.762969]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c11, adc_result=3743\n[  320.767300]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c11, adc_result=3743\n[  320.799811]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  320.799822]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  321.771725]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c11, adc_result=3743\n[  321.839805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  321.839816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  321.869765] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  321860000000, 322760000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  322.776026]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  322.879803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  322.879815]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  323.199811]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  323.199822]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  323.199829]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  323.609834]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[323609821463,20000000]\n[  323.609860]  (1)[395:wdtk-1][thread:395][RT:323609846309] 2021-07-12 15:41:30.135661 UTC;android time 2021-07-12 15:41:30.135661\n[  323.609900]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[323609885155,19999936]\n[  323.780317]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0f, adc_result=3743\n[  323.919806]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  323.919816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  324.320606]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  324.320882]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1959\n[  324.322153]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x40d, adc_result=1139\n[  324.639784]  (0)[446:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  324.784527]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c11, adc_result=3743\n[  324.959819]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  324.959830]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  325.788998]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0f, adc_result=3743\n[  325.999803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  325.999814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  326.792901]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c12, adc_result=3744\n[  326.879766] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  326870000000, 327710000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  327.039805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  327.039816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  327.797420]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0f, adc_result=3743\n[  328.079958]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  328.079969]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  328.239808]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  328.239819]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  328.802021]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  329.120005]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  329.120017]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  329.360654]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  329.360979]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1916\n[  329.362265]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x40e, adc_result=1140\n[  329.679803]  (0)[446:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  329.806514]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0d, adc_result=3743\n[  330.159803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  330.159815]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  330.810992]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c10, adc_result=3743\n[  331.199803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  331.199814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  331.815603]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c10, adc_result=3743\n[  331.889767] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  331880000000, 332670000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  332.239803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  332.239814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  332.819922]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0c, adc_result=3742\n[  333.279818]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  333.279829]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  333.279906]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  333.279915]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  333.824145]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  334.319803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  334.319815]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  334.400595]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  334.400874]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1922\n[  334.402144]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x40e, adc_result=1140\n[  334.719786]  (0)[446:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  334.828382]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c10, adc_result=3743\n[  335.359804]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  335.359816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  335.832891]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0d, adc_result=3743\n[  336.399801]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  336.399813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  336.479792]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  336.837435]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0f, adc_result=3743\n[  336.899765] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 500, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1000, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  336890000000, 337630000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  337.439806]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  337.439817]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  337.841839]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0f, adc_result=3743\n[  338.319810]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  338.319820]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  338.319827]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  338.479802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  338.479813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  338.846112]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  339.440606]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  339.440941]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1916\n[  339.442213]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x40f, adc_result=1141\n[  339.519802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  339.519813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  339.759813]  (0)[446:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  339.850708]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  340.559805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  340.559817]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  340.855051]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0c, adc_result=3742\n[  341.599807]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  341.599819]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  341.859551]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0f, adc_result=3743\n[  341.909765] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  341900000000, 342580000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  342.639818]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  342.639829]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  342.863847]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  343.359808]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  343.359818]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  343.679804]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  343.679815]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  343.709803]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[343709791049,20000000]\n[  343.709828]  (1)[395:wdtk-1][thread:395][RT:343709815049] 2021-07-12 15:41:50.235630 UTC;android time 2021-07-12 15:41:50.235630\n[  343.709874]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[343709858972,19999932]\n[  343.868346]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0f, adc_result=3743\n[  344.480606]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  344.480829]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1904\n[  344.482109]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x410, adc_result=1142\n[  344.719804]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  344.719815]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  344.799784]  (0)[446:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  344.873034]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0f, adc_result=3743\n[  345.759812]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  345.759824]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  345.877478]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0f, adc_result=3743\n[  346.799802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  346.799814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  346.882024]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c10, adc_result=3743\n[  346.919765] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  346910000000, 347540000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  347.839802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  347.839813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  347.886583]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  348.399810]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  348.399822]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  348.879800]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  348.879811]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  348.891194]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0c, adc_result=3742\n[  349.520702]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  349.520960]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1873\n[  349.522090]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x40f, adc_result=1141\n[  349.839784]  (0)[446:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  349.895771]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0f, adc_result=3743\n[  349.919948]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  349.919959]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  350.900260]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  350.959839]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  350.959850]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  351.904479]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c10, adc_result=3743\n[  351.929764] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  351920000000, 352500000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  351.999804]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  351.999815]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  352.908959]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0d, adc_result=3743\n[  353.039800]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  353.039811]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  353.439809]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  353.439820]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  353.439826]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  353.912644]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  354.079956]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  354.079967]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  354.560605]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  354.560846]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1940\n[  354.562114]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x410, adc_result=1142\n[  354.879785]  (0)[446:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  354.916984]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0d, adc_result=3743\n[  355.119960]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  355.119971]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  355.921470]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  356.159801]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  356.159812]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  356.925989]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  356.939767] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  356930000000, 357450000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  357.199802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  357.199814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  357.930295]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0d, adc_result=3743\n[  358.239805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  358.239816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  358.479871]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  358.479880]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  358.934726]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0d, adc_result=3743\n[  359.279915]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  359.279927]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  359.600606]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  359.600884]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1947\n[  359.602166]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x411, adc_result=1143\n[  359.919785]  (0)[446:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  359.939239]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  360.319803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  360.319814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  360.942642]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  361.359801]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  361.359813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  361.944027] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  361934261557, 362410000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  361.946990]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  362.399804]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  362.399816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  362.951282]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0f, adc_result=3743\n[  363.439804]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  363.439816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  363.519808]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  363.519818]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  363.809834]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[363809822174,20000000]\n[  363.809860]  (1)[395:wdtk-1][thread:395][RT:363809846482] 2021-07-12 15:42:10.335661 UTC;android time 2021-07-12 15:42:10.335661\n[  363.809901]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[363809887097,19999935]\n[  363.955905]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0b, adc_result=3742\n[  364.479808]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  364.479819]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  364.640606]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  364.640862]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1904\n[  364.642134]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x411, adc_result=1143\n[  364.959717]  (0)[446:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  364.960282]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0d, adc_result=3743\n[  365.519801]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  365.519813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  365.964731]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0f, adc_result=3743\n[  366.559787]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  366.559853]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  366.559865]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  366.949766] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  366940000000, 367360000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  366.969337]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0f, adc_result=3743\n[  367.599805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  367.599816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  367.972901]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0f, adc_result=3743\n[  368.559811]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  368.559822]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  368.559828]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  368.639804]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  368.639815]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  368.977470]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  369.679816]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  369.679828]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  369.680790]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  369.681061]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1861\n[  369.682118]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x411, adc_result=1143\n[  369.982019]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0b, adc_result=3742\n[  369.999783]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  370.719801]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  370.719833]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  370.986501]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  371.689764]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[  371.759805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  371.759816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  371.959766] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  371950000000, 372320000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  371.990956]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0d, adc_result=3743\n[  372.799839]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  372.799849]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  372.995414]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0f, adc_result=3743\n[  373.599810]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  373.599820]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  373.680145]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[  373.682455]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c11, adc_result=3743\n[  373.715515]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  373.715754]  (0)[341:battery_thread][CH3_DBG] bat_cur = -1977\n[  373.717031]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x412, adc_result=1144\n[  373.717298]  (0)[341:battery_thread]lbat 0 0 0 0\n[  373.717316]  (0)[341:battery_thread]car[-216,0,0,0,0, cycle_car:-16,ncar:0] c:0 1879 vbat:3743 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[  373.717612]  (0)[341:battery_thread]tmp:33 65535 65535 hcar2:65535 lcar2:65535 time:373 sw_iavg:-1920 -1922 1 nafg_m:0 0 0\n[  373.839806]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  373.839817]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  374.009865]  (0)[341:battery_thread]GM3log-nint-nafg 373 373 0 0 0 0 0\n[  374.012583]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0f, adc_result=3743\n[  374.720603]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  374.720876]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1898\n[  374.722153]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x412, adc_result=1144\n[  374.879807]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  374.879819]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  375.017139]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0c, adc_result=3742\n[  375.039786]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  375.919815]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  375.919831]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  376.021448]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0d, adc_result=3743\n[  376.959816]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  376.959827]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  376.969767] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 510, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  376960000000, 377280000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  377.026031]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  377.999803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  377.999816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  378.030611]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0d, adc_result=3743\n[  378.639812]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  378.639822]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  379.035098]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0c, adc_result=3742\n[  379.039808]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  379.039819]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  379.760605]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  379.760856]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1940\n[  379.761911]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x413, adc_result=1145\n[  380.039494]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0c, adc_result=3742\n[  380.079994]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  380.080023]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  380.080036]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  381.043944]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  381.119953]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  381.119965]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  381.979766] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  381970000000, 382240000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  382.048424]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0d, adc_result=3743\n[  382.159805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  382.159817]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  383.052943]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  383.199802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  383.199813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  383.679809]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  383.679820]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  383.679826]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  383.909807]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[383909795068,20000000]\n[  383.909833]  (1)[395:wdtk-1][thread:395][RT:383909820068] 2021-07-12 15:42:30.435635 UTC;android time 2021-07-12 15:42:30.435635\n[  383.909874]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[383909858837,19999936]\n[  384.057211]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  384.239805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  384.239817]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  384.800595]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  384.800836]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1928\n[  384.802113]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x413, adc_result=1145\n[  385.061748]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0a, adc_result=3742\n[  385.119975]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  385.279802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  385.279818]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  386.065997]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0d, adc_result=3743\n[  386.319802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  386.319815]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  386.989766] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  386980000000, 387190000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  387.070403]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0c, adc_result=3742\n[  387.359805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  387.359816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  388.074895]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  388.399800]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  388.399811]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  388.719808]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  388.719818]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  389.079271]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0d, adc_result=3743\n[  389.439803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  389.439814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  389.840604]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  389.840983]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1898\n[  389.842265]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x413, adc_result=1145\n[  390.083100]  (0)[446:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0d, adc_result=3743\n[  390.159785]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  390.479803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  390.479818]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  391.520790]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  391.520816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  391.990512] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 509, 28, 0, 0, 0, 0, 0, 0, success counter cpu: 497, 4, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 992, 8, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  391980000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  392.560788]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  392.560814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  393.600794]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  393.600821]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  393.760864]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  393.760885]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  394.640867]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  394.640889]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  394.881654]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  394.881951]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1843\n[  394.883066]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x413, adc_result=1145\n[  395.200735]  (0)[448:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 294, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  395.207415]  (0)[448:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0f, adc_result=3743\n[  395.680793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  395.680818]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  396.213806]  (0)[448:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c10, adc_result=3743\n[  396.640915]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  396.720719]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  396.720745]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  397.000508] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 516, 53, 0, 0, 0, 0, 0, 0, success counter cpu: 497, 5, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 992, 10, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  396990000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  397.219811]  (0)[448:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  397.760879]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  397.760901]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  398.224552]  (0)[448:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0f, adc_result=3743\n[  398.800924]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  398.800946]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  398.800965]  (1)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  398.800976]  (1)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  398.800983]  (1)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  399.839842]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  399.839865]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  399.920721]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  399.920982]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1940\n[  399.922352]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x414, adc_result=1146\n[  400.239076]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0e, adc_result=3743\n[  400.239701]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  400.879819]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  400.879834]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  401.242596]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0c, adc_result=3742\n[  401.919802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  401.919813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  402.009761] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 35, 0, 0, 0, 0, 0, 0, success counter cpu: 495, 8, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 989, 15, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  402000000000, 402200000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  402.247020]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0d, adc_result=3743\n[  402.959794]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  402.959805]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  403.251434]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c09, adc_result=3742\n[  403.839802]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  403.839813]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  403.999793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  403.999803]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  404.009827]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[404009815424,20000000]\n[  404.009851]  (1)[395:wdtk-1][thread:395][RT:404009838808] 2021-07-12 15:42:50.535654 UTC;android time 2021-07-12 15:42:50.535654\n[  404.009886]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[404009873347,19999942]\n[  404.255875]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0b, adc_result=3742\n[  404.960592]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  404.960837]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1916\n[  404.962097]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x414, adc_result=1146\n[  405.039796]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  405.039806]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  405.260160]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0c, adc_result=3742\n[  405.279796]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  406.079941]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  406.079956]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  406.264505]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0c, adc_result=3742\n[  407.019759] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  407010000000, 407150000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  407.119943]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  407.119954]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  407.268895]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0c, adc_result=3742\n[  408.159797]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  408.159808]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  408.272836]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0b, adc_result=3742\n[  408.879801]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  408.879812]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  409.199790]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  409.199801]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  409.277224]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c08, adc_result=3742\n[  410.000576]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  410.000816]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1947\n[  410.001960]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x415, adc_result=1148\n[  410.239795]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  410.239805]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  410.281827]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c08, adc_result=3742\n[  410.319781]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  411.279789]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  411.279804]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  411.286227]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0b, adc_result=3742\n[  412.029758] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  412020000000, 412100000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  412.290686]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c09, adc_result=3742\n[  412.319800]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  412.319811]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  413.295131]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0a, adc_result=3742\n[  413.359789]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  413.359800]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  413.919802]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  413.919812]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  413.919819]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  414.299507]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c09, adc_result=3742\n[  414.399794]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  414.399805]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  415.040580]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  415.040822]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1928\n[  415.042081]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x415, adc_result=1148\n[  415.303876]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c08, adc_result=3742\n[  415.359776]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  415.439793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  415.439807]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  416.308009]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c09, adc_result=3742\n[  416.479826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  416.479836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  417.039757] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  417030000000, 417060000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  417.312447]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0a, adc_result=3742\n[  417.519794]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  417.519804]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  418.316835]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c08, adc_result=3742\n[  418.559791]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  418.559801]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  418.959801]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  418.959810]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  419.321302]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c06, adc_result=3741\n[  419.599791]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  419.599801]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  420.080726]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  420.081035]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1898\n[  420.082306]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x416, adc_result=1149\n[  420.325873]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0a, adc_result=3742\n[  420.399775]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  420.639793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  420.639807]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  421.330277]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c09, adc_result=3742\n[  421.679792]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  421.679803]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  422.049758] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  422040000000, 423000000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  422.334659]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0b, adc_result=3742\n[  422.719796]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  422.719806]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  423.339024]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c09, adc_result=3742\n[  423.759791]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  423.759802]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  423.999852]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  423.999861]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  424.109795]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[424109783856,20000000]\n[  424.109820]  (1)[395:wdtk-1][thread:395][RT:424109807549] 2021-07-12 15:43:10.635622 UTC;android time 2021-07-12 15:43:10.635622\n[  424.109858]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[424109844395,19999940]\n[  424.342653]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c09, adc_result=3742\n[  424.799840]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  424.799850]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  425.120729]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  425.120963]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1910\n[  425.122223]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x415, adc_result=1148\n[  425.347132]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  425.439796]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  425.839792]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  425.839807]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  426.351529]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0b, adc_result=3742\n[  426.719779]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  426.879796]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  426.879807]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  427.059757] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  427050000000, 427960000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  427.355971]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c08, adc_result=3742\n[  427.919792]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  427.919802]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  428.360138]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c09, adc_result=3742\n[  428.959790]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  428.959801]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  429.039801]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  429.039811]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  429.039817]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  429.364479]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c09, adc_result=3742\n[  429.999791]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  429.999802]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  430.160600]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  430.160853]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1965\n[  430.162110]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x416, adc_result=1149\n[  430.368962]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0b, adc_result=3742\n[  430.479776]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  431.039789]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  431.039804]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  431.372629]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c05, adc_result=3741\n[  432.069757] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  432060000000, 432920000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  432.079936]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  432.079946]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  432.377055]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c08, adc_result=3742\n[  433.119938]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  433.119948]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  433.381219]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c09, adc_result=3742\n[  434.010314]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[  434.012797]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  434.045938]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  434.046224]  (0)[341:battery_thread][CH3_DBG] bat_cur = -1989\n[  434.047481]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x416, adc_result=1149\n[  434.047761]  (0)[341:battery_thread]lbat 0 0 0 0\n[  434.047777]  (0)[341:battery_thread]car[-248,0,0,0,0, cycle_car:-16,ncar:0] c:0 1898 vbat:3741 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[  434.048134]  (0)[341:battery_thread]tmp:32 65535 65535 hcar2:65535 lcar2:65535 time:434 sw_iavg:-1920 -1928 1 nafg_m:0 0 0\n[  434.079950]  (0)[132:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  434.079961]  (0)[132:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  434.159797]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  434.159808]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  434.339819]  (0)[341:battery_thread]GM3log-nint-nafg 434 434 0 0 0 0 0\n[  434.385767]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  435.199803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  435.199814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  435.200667]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  435.200889]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1879\n[  435.202148]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x416, adc_result=1149\n[  435.390246]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0a, adc_result=3742\n[  435.519797]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  436.239797]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  436.239811]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  436.394573]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  437.079759] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 511, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  437070000000, 437880000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  437.279792]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  437.279803]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  437.398963]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  438.319822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  438.319832]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  438.402776]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0a, adc_result=3742\n[  439.119947]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  439.119957]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  439.359790]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  439.359801]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  439.407077]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c09, adc_result=3742\n[  440.240591]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  440.240877]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1940\n[  440.243001]  (0)[132:kworker/u16:1]BAT_TEMP_PREV:1149,BAT_TEMP:1149,VBIF28:2798\n[  440.243017]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x416, adc_result=1149\n[  440.399803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  440.399814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  440.411497]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c08, adc_result=3742\n[  440.559775]  (0)[449:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  441.415896]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0a, adc_result=3742\n[  441.439796]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  441.439806]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  442.089759] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 508, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  442080000000, 442830000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  442.420090]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  442.479793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  442.479803]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  443.424431]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c08, adc_result=3742\n[  443.519793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  443.519803]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  444.159800]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  444.159811]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  444.159817]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  444.209822]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[444209810366,20000000]\n[  444.209846]  (1)[395:wdtk-1][thread:395][RT:444209833135] 2021-07-12 15:43:30.735648 UTC;android time 2021-07-12 15:43:30.735648\n[  444.209881]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[444209868443,19999942]\n[  444.428841]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c08, adc_result=3742\n[  444.559793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  444.559803]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  445.280614]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  445.280877]  (0)[132:kworker/u16:1][CH3_DBG] bat_cur = -1904\n[  445.282137]  (0)[132:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x417, adc_result=1150\n[  445.432780]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  445.599825]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  445.599851]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  445.599863]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  446.437142]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c08, adc_result=3742\n[  446.639790]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  446.639801]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  447.099757] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  447090000000, 447790000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  447.441530]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c04, adc_result=3741\n[  447.679792]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  447.679802]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  448.445675]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c09, adc_result=3742\n[  448.719790]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  448.719801]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  449.199800]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  449.199810]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  449.450005]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0a, adc_result=3742\n[  449.759792]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  449.759803]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  450.320587]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  450.320852]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1904\n[  450.322110]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x418, adc_result=1151\n[  450.454293]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c09, adc_result=3742\n[  450.639775]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  450.799792]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  450.799807]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  451.458617]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c06, adc_result=3741\n[  451.839795]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  451.839805]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  452.109757] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  452100000000, 452750000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  452.462807]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  452.879793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  452.879803]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  453.467295]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c08, adc_result=3742\n[  453.919791]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  453.919802]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  454.239801]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  454.239811]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  454.471694]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0b, adc_result=3742\n[  454.959789]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  454.959800]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  455.360591]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  455.360893]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1904\n[  455.362164]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x418, adc_result=1151\n[  455.476111]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c09, adc_result=3742\n[  455.679774]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  455.999794]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  455.999808]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  456.480507]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  456.799786]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  457.039794]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  457.039806]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  457.119757] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  457110000000, 457700000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  457.484679]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0a, adc_result=3742\n[  458.079946]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  458.079956]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  458.488966]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c06, adc_result=3741\n[  459.119938]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  459.119948]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  459.279799]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  459.279809]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  459.279815]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  459.492861]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c09, adc_result=3742\n[  460.159836]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  460.159846]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  460.400634]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  460.400903]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1934\n[  460.402162]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x418, adc_result=1151\n[  460.497259]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  460.719776]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  461.199791]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  461.199807]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  461.501434]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c08, adc_result=3742\n[  462.129757] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  462120000000, 462660000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  462.239789]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  462.239800]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  462.506069]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  463.279791]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  463.279802]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  463.510438]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c06, adc_result=3741\n[  464.309797]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[464309785491,20000000]\n[  464.309822]  (1)[395:wdtk-1][thread:395][RT:464309809491] 2021-07-12 15:43:50.835624 UTC;android time 2021-07-12 15:43:50.835624\n[  464.309856]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[464309841414,19999944]\n[  464.319808]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  464.319818]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  464.319878]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  464.319885]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  464.514618]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  465.359789]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  465.359799]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  465.440577]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  465.440849]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1898\n[  465.442149]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x418, adc_result=1151\n[  465.518988]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  465.759774]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  466.399800]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  466.399814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  466.522855]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c09, adc_result=3742\n[  467.139758] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  467130000000, 467620000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  467.439790]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  467.439800]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  467.527226]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c06, adc_result=3741\n[  468.479794]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  468.479805]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  468.531489]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c05, adc_result=3741\n[  469.359799]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  469.359809]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  469.519786]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  469.519797]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  469.535864]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c05, adc_result=3741\n[  470.480590]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  470.480857]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1940\n[  470.482126]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x418, adc_result=1151\n[  470.540255]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  470.559795]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  470.559806]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  470.799793]  (0)[449:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  471.544344]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c08, adc_result=3742\n[  471.599790]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  471.599801]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  472.149759] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  472140000000, 472570000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  472.548610]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0a, adc_result=3742\n[  472.639790]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  472.639800]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  473.552826]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c09, adc_result=3742\n[  473.679790]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  473.679800]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  474.399810]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  474.399820]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  474.399826]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  474.557332]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c05, adc_result=3741\n[  474.719793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  474.719804]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  475.520579]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  475.520865]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1922\n[  475.522135]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x419, adc_result=1152\n[  475.561773]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  475.759791]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  475.759802]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  475.839774]  (0)[449:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  476.566168]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c09, adc_result=3742\n[  476.799791]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  476.799802]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  477.159757] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  477150000000, 477540000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  477.570538]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  477.839788]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  477.839799]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  478.574880]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c03, adc_result=3741\n[  478.879792]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  478.879803]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  479.439813]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  479.439823]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  479.579264]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c04, adc_result=3741\n[  479.919790]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  479.919801]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  480.560590]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  480.560812]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1947\n[  480.562081]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x419, adc_result=1152\n[  480.582770]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c08, adc_result=3742\n[  480.879775]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  480.959790]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  480.959805]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  481.587160]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c08, adc_result=3742\n[  481.999823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  481.999833]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  482.169757] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  482160000000, 482490000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  482.591555]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c08, adc_result=3742\n[  483.039960]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  483.039970]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  483.595987]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c08, adc_result=3742\n[  484.079944]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  484.079955]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  484.409825]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[484409813538,20000000]\n[  484.409849]  (1)[395:wdtk-1][thread:395][RT:484409837154] 2021-07-12 15:44:10.935652 UTC;android time 2021-07-12 15:44:10.935652\n[  484.409886]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[484409872538,19999941]\n[  484.479814]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  484.479824]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  484.600407]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  485.119940]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  485.119950]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  485.600590]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  485.600914]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1971\n[  485.602007]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x419, adc_result=1152\n[  485.604655]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  485.919775]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  486.159791]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  486.159806]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  486.609074]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c08, adc_result=3742\n[  486.879779]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  487.179759] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  487170000000, 487440000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  487.199796]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  487.199806]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  487.612712]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  488.239792]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  488.239803]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  488.617103]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c06, adc_result=3741\n[  489.279792]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  489.279802]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  489.519852]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  489.519861]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  489.519867]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  489.621495]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  490.319827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  490.319837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  490.625887]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c01, adc_result=3740\n[  490.640583]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  490.640863]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1904\n[  490.642122]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x41a, adc_result=1153\n[  490.959774]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  491.359793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  491.359808]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  491.630470]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c06, adc_result=3741\n[  492.189756] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  492180000000, 492400000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  492.399791]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  492.399801]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  492.634920]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c06, adc_result=3741\n[  493.439792]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  493.439803]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  493.639292]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c06, adc_result=3741\n[  494.340219]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[  494.342694]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c06, adc_result=3741\n[  494.375848]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  494.376119]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2001\n[  494.377473]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x41b, adc_result=1154\n[  494.377718]  (0)[341:battery_thread]lbat 0 0 0 0\n[  494.377735]  (0)[341:battery_thread]car[-281,0,0,0,0, cycle_car:-16,ncar:0] c:0 1898 vbat:3741 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[  494.378042]  (0)[341:battery_thread]tmp:32 65535 65535 hcar2:65535 lcar2:65535 time:494 sw_iavg:-1980 -1940 1 nafg_m:0 0 0\n[  494.479804]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  494.479815]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  494.559845]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  494.559855]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  494.569755]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[  494.669810]  (0)[341:battery_thread]GM3log-nint-nafg 494 494 0 0 0 0 0\n[  494.672628]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c05, adc_result=3741\n[  495.519796]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  495.519806]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  495.677038]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  495.680491]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  495.680745]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1947\n[  495.682003]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x41b, adc_result=1154\n[  495.999775]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  496.559800]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  496.559816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  496.681405]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c06, adc_result=3741\n[  497.199759] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 510, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  497190000000, 497360000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  497.599794]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  497.599804]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  497.685586]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c06, adc_result=3741\n[  498.639792]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  498.639803]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  498.689947]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  499.599800]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  499.599811]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  499.679791]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  499.679802]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  499.694336]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c04, adc_result=3741\n[  500.698733]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c06, adc_result=3741\n[  500.719807]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  500.719818]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  500.720660]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  500.720908]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1885\n[  500.722168]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x41b, adc_result=1154\n[  501.039774]  (0)[449:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  501.702908]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c09, adc_result=3742\n[  501.759793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  501.759804]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  502.209758] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  502200000000, 502320000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  502.707346]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c06, adc_result=3741\n[  502.799792]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  502.799802]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  503.711752]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c05, adc_result=3741\n[  503.839835]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  503.839845]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  504.509800]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[504509788279,20000000]\n[  504.509824]  (1)[395:wdtk-1][thread:395][RT:504509811971] 2021-07-12 15:44:31.35627 UTC;android time 2021-07-12 15:44:31.35627\n[  504.509859]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[504509845202,19999943]\n[  504.639801]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  504.639811]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  504.639817]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  504.715919]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c03, adc_result=3741\n[  504.879795]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  504.879805]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  505.720140]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  505.760576]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  505.760825]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1989\n[  505.762094]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x41b, adc_result=1154\n[  505.919792]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  505.919803]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  506.079936]  (0)[449:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  506.724471]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c03, adc_result=3741\n[  506.959793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  506.959803]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  507.219758] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  507210000000, 507270000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  507.728900]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c05, adc_result=3741\n[  507.999827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  507.999837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  508.732851]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c05, adc_result=3741\n[  509.039789]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  509.039800]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  509.679800]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  509.679811]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  509.737259]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  510.079940]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  510.079951]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  510.741677]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c04, adc_result=3741\n[  510.800581]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  510.800805]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1940\n[  510.802069]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x41c, adc_result=1155\n[  511.119993]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 165, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0xdc00077 0x1b8000 0x50000013 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  511.120021]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  511.120034]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  511.746041]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c06, adc_result=3741\n[  512.159793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  512.159804]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  512.229757] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  512220000000, 512230000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  512.750276]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c04, adc_result=3741\n[  513.199792]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  513.199803]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  513.754600]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c06, adc_result=3741\n[  514.239793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  514.239804]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  514.719798]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  514.719807]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  514.758785]  (0)[449:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c07, adc_result=3741\n[  515.280880]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  515.280903]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  515.841546]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  515.841819]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1837\n[  515.843072]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x41c, adc_result=1155\n[  516.160590]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 290, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  516.320887]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  516.320914]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  516.960837]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  517.230488] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 34, 0, 0, 0, 0, 0, 0, success counter cpu: 494, 5, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 984, 10, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  517220000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  517.360854]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  517.360876]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  518.400861]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  518.400883]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  519.440855]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  519.440877]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  519.760846]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  519.760866]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  519.760872]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  519.883517]  (0)[453:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c06, adc_result=3741\n[  520.480875]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  520.480898]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  520.881666]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  520.881951]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1831\n[  520.883207]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x41c, adc_result=1155\n[  520.888616]  (0)[453:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c0a, adc_result=3742\n[  521.200701]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 294, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  521.520854]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  521.520882]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  521.894458]  (0)[453:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c08, adc_result=3742\n[  522.240493] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 518, 66, 0, 0, 0, 0, 0, 0, success counter cpu: 492, 11, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 983, 22, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  522230000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  522.560860]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  522.560881]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  522.900596]  (0)[453:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c09, adc_result=3742\n[  523.600862]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  523.600884]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  524.609822]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[524609807480,20000000]\n[  524.609857]  (1)[395:wdtk-1][thread:395][RT:524609845557] 2021-07-12 15:44:51.135659 UTC;android time 2021-07-12 15:44:51.135659\n[  524.609876]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[524609863404,19999944]\n[  524.639835]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  524.639846]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  524.799796]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  524.799806]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  524.912961]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c05, adc_result=3741\n[  525.679866]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  525.679876]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  525.917387]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c04, adc_result=3741\n[  525.920626]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  525.920859]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2001\n[  525.922108]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x41c, adc_result=1155\n[  526.239772]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  526.719792]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  526.719805]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  526.921793]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c03, adc_result=3741\n[  527.249755] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 18, 0, 0, 0, 0, 0, 0, success counter cpu: 499, 3, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 997, 6, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  527240000000, 527890000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  527.759786]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  527.759796]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  527.926179]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c00, adc_result=3740\n[  528.799786]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  528.799796]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  528.930577]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c05, adc_result=3741\n[  529.839799]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  529.839809]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  529.839870]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  529.839877]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  529.934700]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  530.879786]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  530.879796]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  530.938996]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c04, adc_result=3741\n[  530.960567]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  530.960805]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1904\n[  530.962066]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x41d, adc_result=1156\n[  531.279769]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000013 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  531.919782]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  531.919796]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  531.942596]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c04, adc_result=3741\n[  532.259753] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  532250000000, 532840000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  532.946986]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c00, adc_result=3740\n[  532.959809]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  532.959819]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  533.951345]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c04, adc_result=3741\n[  533.999785]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  533.999795]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  534.879794]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  534.879803]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  534.879809]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  534.955636]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c05, adc_result=3741\n[  535.039787]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  535.039797]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  535.959902]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c03, adc_result=3741\n[  536.000563]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  536.000814]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1971\n[  536.002085]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x41d, adc_result=1156\n[  536.079929]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  536.079938]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  536.319787]  (0)[454:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  536.964156]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c03, adc_result=3741\n[  537.119931]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  537.119941]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  537.269753] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  537260000000, 537790000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  537.968469]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bff, adc_result=3740\n[  538.159785]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  538.159796]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  538.972768]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c03, adc_result=3741\n[  539.199802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  539.199812]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  539.919793]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  539.919802]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  539.977082]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c03, adc_result=3741\n[  540.239784]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  540.239795]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  540.981409]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c03, adc_result=3741\n[  541.040573]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  541.040822]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1940\n[  541.042072]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x41d, adc_result=1156\n[  541.279788]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  541.279798]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  541.359769]  (0)[454:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  541.985726]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c03, adc_result=3741\n[  542.279752] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  542270000000, 542740000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  542.319786]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  542.319796]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  542.990017]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c06, adc_result=3741\n[  543.359787]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  543.359796]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  543.994260]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c01, adc_result=3740\n[  544.399782]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  544.399792]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  544.709793]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[544709782913,20000000]\n[  544.709816]  (1)[395:wdtk-1][thread:395][RT:544709804682] 2021-07-12 15:45:11.235619 UTC;android time 2021-07-12 15:45:11.235619\n[  544.709866]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[544709852682,19999930]\n[  544.959792]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  544.959801]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  544.998729]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c03, adc_result=3741\n[  545.439790]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  545.439800]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  546.002711]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c05, adc_result=3741\n[  546.080709]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  546.080953]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1934\n[  546.082203]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x41e, adc_result=1157\n[  546.399768]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  546.479787]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  546.479801]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  547.007013]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  547.039770]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  547.289754] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  547280000000, 547690000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  547.519821]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  547.519830]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  548.011357]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  548.559786]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  548.559795]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  549.015690]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bff, adc_result=3740\n[  549.599788]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  549.599798]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  549.999792]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  549.999801]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  549.999807]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  550.019988]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c00, adc_result=3740\n[  550.639788]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  550.639798]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  551.024200]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  551.120721]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  551.120961]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1922\n[  551.122211]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x41e, adc_result=1157\n[  551.439768]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  551.679786]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  551.679799]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  552.028528]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  552.299751] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  552290000000, 552650000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  552.719783]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  552.719792]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  553.032845]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c05, adc_result=3741\n[  553.759785]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  553.759795]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  554.037244]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c04, adc_result=3741\n[  554.670262]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[  554.672766]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c00, adc_result=3740\n[  554.705593]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  554.705861]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2001\n[  554.707113]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x41f, adc_result=1159\n[  554.707396]  (0)[341:battery_thread]lbat 0 0 0 0\n[  554.707412]  (0)[341:battery_thread]car[-313,0,0,0,0, cycle_car:-16,ncar:0] c:0 1971 vbat:3740 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[  554.707690]  (0)[341:battery_thread]tmp:32 65535 65535 hcar2:65535 lcar2:65535 time:554 sw_iavg:-1920 -1934 1 nafg_m:0 0 0\n[  554.799809]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  554.799818]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  554.999791]  (0)[341:battery_thread]GM3log-nint-nafg 554 554 0 0 0 0 0\n[  555.039802]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  555.039811]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  555.041610]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c00, adc_result=3740\n[  555.839821]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  555.839832]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  556.045924]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  556.160566]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  556.160789]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1934\n[  556.162050]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x41f, adc_result=1159\n[  556.479770]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  556.879785]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  556.879799]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  557.050180]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  557.309751] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 510, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  557300000000, 557600000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  557.919785]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  557.919794]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  558.054382]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  558.959785]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  558.959795]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  559.058710]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c01, adc_result=3740\n[  559.999782]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  559.999792]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  560.062496]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c00, adc_result=3740\n[  560.079941]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  560.079951]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  561.039782]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  561.039792]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  561.066837]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c03, adc_result=3741\n[  561.200564]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  561.200826]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1879\n[  561.202075]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x41f, adc_result=1159\n[  561.519768]  (0)[454:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  562.071220]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c01, adc_result=3740\n[  562.079901]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  562.079911]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  562.319752] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  562310000000, 562560000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  563.075665]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  563.119928]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  563.119938]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  564.079818]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bff, adc_result=3740\n[  564.159786]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  564.159796]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  564.809815]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[564809804115,20000000]\n[  564.809838]  (1)[395:wdtk-1][thread:395][RT:564809826576] 2021-07-12 15:45:31.335641 UTC;android time 2021-07-12 15:45:31.335641\n[  564.809873]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[564809860730,19999943]\n[  565.084055]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c00, adc_result=3740\n[  565.119947]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  565.119956]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  565.119962]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  565.199786]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  565.199795]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  566.088497]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c04, adc_result=3741\n[  566.239798]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  566.239808]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  566.240644]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  566.240947]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1940\n[  566.242196]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x41f, adc_result=1159\n[  566.559769]  (0)[454:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  567.092825]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c03, adc_result=3741\n[  567.279815]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  567.279825]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  567.329752] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  567320000000, 567520000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  568.097218]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  568.319788]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  568.319798]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  569.101515]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c03, adc_result=3741\n[  569.359816]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  569.359825]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  570.105829]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c00, adc_result=3740\n[  570.159791]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  570.159801]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  570.399787]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  570.399796]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  571.110132]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  571.280571]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  571.280844]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1904\n[  571.282091]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x41f, adc_result=1159\n[  571.439785]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  571.439795]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  571.599768]  (0)[454:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  572.114446]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c06, adc_result=3741\n[  572.339752] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  572330000000, 572480000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  572.479787]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  572.479797]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  573.118716]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c01, adc_result=3740\n[  573.519785]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  573.519795]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  574.122738]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  574.559830]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  574.559840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  575.127065]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c03, adc_result=3741\n[  575.199897]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  575.199906]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  575.599783]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  575.599793]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  576.131430]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c00, adc_result=3740\n[  576.320564]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  576.320873]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1947\n[  576.322123]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x420, adc_result=1160\n[  576.639818]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  576.639842]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  576.639853]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  577.119777]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  577.135644]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bff, adc_result=3740\n[  577.349754] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  577340000000, 577430000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  577.679791]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  577.679801]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  578.139900]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c01, adc_result=3740\n[  578.719784]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  578.719793]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  579.144101]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfe, adc_result=3740\n[  579.759784]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  579.759793]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  580.148436]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  580.239794]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  580.239804]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  580.239810]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  580.799786]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  580.799795]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  581.152754]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfc, adc_result=3739\n[  581.360565]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  581.360830]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1959\n[  581.362083]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x420, adc_result=1160\n[  581.679769]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  581.839785]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  581.839799]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  582.157071]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c00, adc_result=3740\n[  582.359752] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  582350000000, 582380000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  582.879787]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  582.879797]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  583.161369]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  583.919785]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  583.919795]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  584.165644]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c01, adc_result=3740\n[  584.909790]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[584909779009,20000000]\n[  584.909814]  (1)[395:wdtk-1][thread:395][RT:584909802086] 2021-07-12 15:45:51.435616 UTC;android time 2021-07-12 15:45:51.435616\n[  584.909851]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[584909837086,19999941]\n[  584.959794]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  584.959803]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  585.170048]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c00, adc_result=3740\n[  585.279792]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  585.279801]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  585.999784]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  585.999794]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  586.174249]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c03, adc_result=3741\n[  586.400565]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  586.400809]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1928\n[  586.402058]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x420, adc_result=1160\n[  586.719770]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  587.039785]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  587.039798]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  587.178558]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bff, adc_result=3740\n[  587.369751] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  587360000000, 588320000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  588.079928]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  588.079938]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  588.182698]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  589.119930]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  589.119940]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  589.186974]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  590.159783]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  590.159794]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  590.191273]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c01, adc_result=3740\n[  590.319794]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  590.319803]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  591.195340]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfc, adc_result=3739\n[  591.200317]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  591.200327]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  591.440631]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  591.440877]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1971\n[  591.442125]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x420, adc_result=1160\n[  591.759767]  (0)[454:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  592.199517]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bff, adc_result=3740\n[  592.239790]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  592.239799]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  592.379750] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  592370000000, 593270000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  593.203765]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c03, adc_result=3741\n[  593.279790]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  593.279799]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  594.208069]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c00, adc_result=3740\n[  594.319783]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  594.319794]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  595.212466]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c01, adc_result=3740\n[  595.359825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  595.359835]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  595.359894]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  595.359901]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  595.359906]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  596.216815]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bff, adc_result=3740\n[  596.399787]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  596.399798]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  596.480575]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  596.480794]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2008\n[  596.482042]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x421, adc_result=1161\n[  596.799768]  (0)[454:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  597.221267]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  597.389752] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  597380000000, 598230000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  597.439788]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  597.439798]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  598.225549]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bff, adc_result=3740\n[  598.479786]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  598.479796]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  599.229903]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bff, adc_result=3740\n[  599.519786]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  599.519796]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  600.234097]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  600.399793]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  600.399802]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  600.559784]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  600.559794]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  601.238397]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c01, adc_result=3740\n[  601.520562]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  601.520805]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1898\n[  601.522063]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x421, adc_result=1161\n[  601.599790]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  601.599799]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  601.839785]  (0)[454:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x1b8000 0x50000013 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  602.242707]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfe, adc_result=3740\n[  602.399752] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  602390000000, 603190000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  602.639783]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  602.639792]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  603.247007]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bff, adc_result=3740\n[  603.679786]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  603.679796]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  604.251392]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c01, adc_result=3740\n[  604.719786]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  604.719797]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  605.009817]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[605009806134,20000000]\n[  605.009840]  (1)[395:wdtk-1][thread:395][RT:605009828518] 2021-07-12 15:46:11.535643 UTC;android time 2021-07-12 15:46:11.535643\n[  605.009875]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[605009862134,19999944]\n[  605.255796]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  605.439792]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  605.439801]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  605.759787]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  605.759796]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  606.260070]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bff, adc_result=3740\n[  606.560564]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  606.560782]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1928\n[  606.562029]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x420, adc_result=1160\n[  606.799787]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  606.799796]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  606.879770]  (1)[290:hang_detect][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  607.199768]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  607.264245]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c00, adc_result=3740\n[  607.409752] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  607400000000, 608140000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  607.839790]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  607.839800]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  608.268607]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c00, adc_result=3740\n[  608.879786]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  608.879796]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  609.272696]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c00, adc_result=3740\n[  609.919786]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  609.919796]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  610.276999]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfe, adc_result=3740\n[  610.479794]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  610.479803]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  610.479809]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  610.959782]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  610.959791]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  611.281271]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c00, adc_result=3740\n[  611.600562]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  611.600789]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1953\n[  611.602039]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x421, adc_result=1161\n[  611.919769]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000013 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  611.999786]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  611.999799]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  612.285578]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c00, adc_result=3740\n[  612.419750] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  612410000000, 613100000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  613.039814]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  613.039823]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  613.289795]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  614.079926]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  614.079936]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  614.294011]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  615.000121]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[  615.002704]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bff, adc_result=3740\n[  615.035551]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  615.035819]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2056\n[  615.037066]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x421, adc_result=1161\n[  615.037445]  (0)[341:battery_thread]lbat 0 0 0 0\n[  615.037462]  (0)[341:battery_thread]car[-346,0,0,0,0, cycle_car:-16,ncar:0] c:0 1898 vbat:3740 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[  615.037768]  (0)[341:battery_thread]tmp:32 65535 65535 hcar2:65535 lcar2:65535 time:615 sw_iavg:-1980 -1950 1 nafg_m:0 1 0\n[  615.038571]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  615.119935]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  615.119944]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  615.329840]  (0)[341:battery_thread]GM3log-nint-nafg 615 615 0 0 0 0 0\n[  615.332641]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfc, adc_result=3739\n[  615.519861]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  615.519871]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  616.159806]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  616.159816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  616.336940]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bff, adc_result=3740\n[  616.640575]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f1, adc_result=2796\n[  616.640798]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1910\n[  616.642047]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x421, adc_result=1161\n[  616.959801]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  617.199784]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  617.199797]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  617.341240]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c01, adc_result=3740\n[  617.429753] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 509, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  617420000000, 618050000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  617.449749]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[  618.239787]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  618.239797]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  618.345549]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c01, adc_result=3740\n[  619.279785]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  619.279795]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  619.349849]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfe, adc_result=3740\n[  620.319786]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  620.319796]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  620.354062]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c00, adc_result=3740\n[  620.559839]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  620.559847]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  621.358225]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c01, adc_result=3740\n[  621.359736]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  621.359745]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  621.680578]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  621.680840]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1953\n[  621.682090]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x422, adc_result=1162\n[  621.999767]  (0)[454:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  622.362579]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfe, adc_result=3740\n[  622.399793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  622.399803]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  622.439751] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  622430000000, 623010000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  623.366874]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  623.439791]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  623.439820]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  624.371177]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  624.479803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  624.479813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  625.109790]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[625109779643,20000000]\n[  625.109813]  (1)[395:wdtk-1][thread:395][RT:625109801797] 2021-07-12 15:46:31.635616 UTC;android time 2021-07-12 15:46:31.635616\n[  625.109863]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[625109848566,19999931]\n[  625.375515]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  625.519790]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  625.519799]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  625.599793]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  625.599802]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  625.599807]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  626.379814]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bff, adc_result=3740\n[  626.559789]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  626.559799]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  626.720562]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  626.720784]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1922\n[  626.722034]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x422, adc_result=1162\n[  627.039768]  (0)[454:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 286, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  627.384069]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfe, adc_result=3740\n[  627.449752] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  627440000000, 627960000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  627.599786]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  627.599796]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  628.388371]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c00, adc_result=3740\n[  628.639788]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  628.639798]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  629.392660]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfe, adc_result=3740\n[  629.679784]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  629.679794]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  630.396815]  (0)[454:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfc, adc_result=3739\n[  630.639794]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  630.639803]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  630.719794]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  630.719803]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  631.760860]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  631.760881]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  631.761572]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  631.761812]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1806\n[  631.763050]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x423, adc_result=1163\n[  632.080896] -(0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 295, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  632.450463] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 513, 24, 0, 0, 0, 0, 0, 0, success counter cpu: 500, 3, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 996, 8, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  632440000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  632.800843]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  632.800863]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  633.840819]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  633.840841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  634.880879]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  634.880898]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  635.517267]  (0)[456:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c01, adc_result=3740\n[  635.680802]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  635.680822]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  635.920827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  635.920848]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  636.523440]  (0)[456:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  636.801516]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  636.801749]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1806\n[  636.802987]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x421, adc_result=1161\n[  636.960824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  636.960845]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  637.120900]  (1)[290:hang_detect][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 291, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  637.280683]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  637.460463] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 511, 51, 0, 0, 0, 0, 0, 0, success counter cpu: 498, 4, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 966, 8, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  637450000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  637.529406]  (0)[456:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c02, adc_result=3741\n[  638.000813]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  638.000834]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  638.534499]  (0)[456:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c03, adc_result=3741\n[  639.040758]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  639.040782]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  640.079980]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  640.079999]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  640.547477]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  640.719789]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  640.719797]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  640.719803]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  641.119949]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  641.119959]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  641.551861]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  641.840545]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  641.840810]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1971\n[  641.842044]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x421, adc_result=1161\n[  642.159808]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 162, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  642.159833]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  642.159844]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  642.469744] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 510, 32, 0, 0, 0, 0, 0, 0, success counter cpu: 498, 6, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 992, 12, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  642460000000, 642520000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  642.556090]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  643.199775]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  643.199784]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  643.560263]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bff, adc_result=3740\n[  644.239768]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  644.239777]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  644.564477]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c00, adc_result=3740\n[  645.209801]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[645209791076,20000000]\n[  645.209822]  (1)[395:wdtk-1][thread:395][RT:645209811460] 2021-07-12 15:46:51.735626 UTC;android time 2021-07-12 15:46:51.735626\n[  645.209852]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[645209841537,19999949]\n[  645.279777]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  645.279786]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  645.568700]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  645.759781]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  645.759790]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  646.319770]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  646.319778]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  646.572658]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  646.880640]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  646.880912]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1977\n[  646.882147]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x423, adc_result=1163\n[  647.199760]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 162, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  647.359775]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  647.359787]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  647.479741] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  647470000000, 648460000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  647.576979]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfe, adc_result=3740\n[  648.399772]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  648.399781]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  648.581164]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  649.439773]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  649.439782]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  649.585318]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfc, adc_result=3739\n[  650.479775]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  650.479784]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  650.589501]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfc, adc_result=3739\n[  650.799784]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  650.799793]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  651.519780]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  651.519789]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  651.593685]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfc, adc_result=3739\n[  651.920542]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  651.920767]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1947\n[  651.922001]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x422, adc_result=1162\n[  652.239758] -(0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 162, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  652.489742] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  652480000000, 653420000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  652.559771]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  652.559780]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  652.597873]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bff, adc_result=3740\n[  653.599716]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  653.599725]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  653.602133]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  654.606281]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfc, adc_result=3739\n[  654.639778]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  654.639786]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  655.610428]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf8, adc_result=3739\n[  655.679771]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  655.679780]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  655.839795]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  655.839803]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  655.839808]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  656.614526]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  656.719807]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  656.719816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  656.960587]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  656.960807]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1904\n[  656.962043]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x423, adc_result=1163\n[  657.279757] -(0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 162, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  657.499742] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  657490000000, 658380000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  657.618705]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4c00, adc_result=3740\n[  657.759772]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  657.759780]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  658.622606]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  658.799770]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  658.799779]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  659.626850]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfe, adc_result=3740\n[  659.839772]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  659.839780]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  660.631029]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfc, adc_result=3739\n[  660.879780]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  660.879788]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  660.879846]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  660.879852]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  661.635218]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bff, adc_result=3740\n[  661.919770]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  661.919779]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  662.000553]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  662.000905]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1947\n[  662.002140]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x423, adc_result=1163\n[  662.319757] -(0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 162, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  662.509741] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  662500000000, 663330000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  662.639521]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bff, adc_result=3740\n[  662.959774]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  662.959782]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  663.643640]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfe, adc_result=3740\n[  663.999769]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  663.999778]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  664.647818]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bff, adc_result=3740\n[  665.039769]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  665.039778]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  665.309781]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[665309770508,20000000]\n[  665.309801]  (1)[395:wdtk-1][thread:395][RT:665309791431] 2021-07-12 15:47:11.835606 UTC;android time 2021-07-12 15:47:11.835606\n[  665.309835]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[665309821585,19999948]\n[  665.652157]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfa, adc_result=3739\n[  665.919782]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  665.919790]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  666.079910]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  666.079919]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  666.656325]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfc, adc_result=3739\n[  667.040541]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  667.040760]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1989\n[  667.041993]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x423, adc_result=1163\n[  667.119912]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  667.119921]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  667.359778]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  667.359837] -(0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 162, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000013 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  667.519744] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  667510000000, 668290000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  667.660529]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfc, adc_result=3739\n[  668.159777]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  668.159785]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  668.664699]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  669.199770]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  669.199780]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  669.668841]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  670.239769]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  670.239778]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  670.672629]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  670.959782]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  670.959790]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  670.959795]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  671.279768]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  671.279776]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  671.676789]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  672.080695]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  672.080986]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1916\n[  672.082231]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x423, adc_result=1163\n[  672.319768]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  672.319777]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  672.399757] -(0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 162, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  672.529741] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  672520000000, 673240000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  672.680973]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfc, adc_result=3739\n[  673.359771]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  673.359780]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  673.685175]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfc, adc_result=3739\n[  674.399770]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  674.399779]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  674.689321]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  675.330264]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[  675.332760]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  675.365250]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  675.365498]  (0)[341:battery_thread][CH3_DBG] bat_cur = -1977\n[  675.367500]  (0)[341:battery_thread]BAT_TEMP_PREV:1163,BAT_TEMP:1162,VBIF28:2796\n[  675.367512]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x422, adc_result=1162\n[  675.367734]  (0)[341:battery_thread]lbat 0 0 0 0\n[  675.367748]  (0)[341:battery_thread]car[-378,0,0,0,0, cycle_car:-16,ncar:0] c:0 1971 vbat:3739 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[  675.368026]  (0)[341:battery_thread]tmp:32 65535 65535 hcar2:65535 lcar2:65535 time:675 sw_iavg:-1920 -1947 1 nafg_m:0 1 0\n[  675.439783]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  675.439792]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  675.659775]  (0)[341:battery_thread]GM3log-nint-nafg 675 675 0 0 0 0 0\n[  675.692711]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  675.999781]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  675.999790]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  676.479775]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  676.479783]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  676.696856]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfc, adc_result=3739\n[  677.120683]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  677.120902]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1947\n[  677.122134]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x424, adc_result=1164\n[  677.439772]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 162, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  677.519769]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  677.519781]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  677.539741] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 508, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  677530000000, 678200000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  677.701113]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfa, adc_result=3739\n[  678.559798]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  678.559806]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  678.705252]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  679.599777]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  679.599786]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  679.709511]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf8, adc_result=3739\n[  680.639769]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  680.639778]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  680.713719]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  681.039782]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  681.039791]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  681.679767]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  681.679776]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  681.717854]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  682.160550]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  682.160789]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1989\n[  682.162022]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x424, adc_result=1164\n[  682.479758] -(0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 162, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  682.549742] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  682540000000, 683160000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  682.719714]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  682.719722]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  682.722132]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  683.726304]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  683.759778]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  683.759787]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  684.730451]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  684.799772]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  684.799781]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  685.409800]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[685409789633,20000000]\n[  685.409820]  (1)[395:wdtk-1][thread:395][RT:685409810018] 2021-07-12 15:47:31.935625 UTC;android time 2021-07-12 15:47:31.935625\n[  685.409852]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[685409840710,19999949]\n[  685.734556]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfc, adc_result=3739\n[  685.839773]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  685.839782]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  686.079958]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  686.079966]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  686.079971]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  686.738698]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  686.879803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  686.879811]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  687.200542]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  687.200767]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1910\n[  687.202001]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x424, adc_result=1164\n[  687.519758] -(0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 162, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  687.559742] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  687550000000, 688120000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  687.742608]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  687.919771]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  687.919780]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  688.746759]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfa, adc_result=3739\n[  688.959771]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  688.959780]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  689.750982]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf8, adc_result=3739\n[  689.999768]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  689.999777]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  690.755144]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf8, adc_result=3739\n[  691.039770]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  691.039779]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  691.119923]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  691.119931]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  691.759297]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  692.079908]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  692.079916]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  692.240544]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  692.240858]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1971\n[  692.242092]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x425, adc_result=1165\n[  692.559757] -(0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 162, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  692.569741] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  692560000000, 693080000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  692.762670]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfc, adc_result=3739\n[  693.119912]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  693.119920]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  693.766924]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  694.159780]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  694.159789]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  694.771104]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf6, adc_result=3738\n[  695.199773]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  695.199782]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  695.775288]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  696.159782]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  696.159790]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  696.239768]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  696.239777]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  696.779525]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf8, adc_result=3739\n[  697.279781]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  697.279790]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  697.280623]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  697.280873]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1947\n[  697.282107]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x425, adc_result=1165\n[  697.439780]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  697.579742] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  697570000000, 698030000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  697.599758]  (0)[457:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 162, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  697.783704]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf8, adc_result=3739\n[  698.319775]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  698.319784]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  698.787891]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfa, adc_result=3739\n[  699.359770]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  699.359778]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  699.792158]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfa, adc_result=3739\n[  700.399801]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  700.399810]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  700.796314]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  701.199782]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  701.199790]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  701.199795]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  701.439773]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  701.439781]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  701.800496]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfc, adc_result=3739\n[  702.320556]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  702.320790]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1971\n[  702.322034]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x424, adc_result=1164\n[  702.479771]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  702.479779]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  702.589740] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  702580000000, 702990000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  702.639756]  (0)[457:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 162, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  702.804717]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  703.519781]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  703.519790]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  703.808889]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  704.559770]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  704.559779]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  704.812684]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfa, adc_result=3739\n[  705.509778]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[705509768143,20000000]\n[  705.509800]  (1)[395:wdtk-1][thread:395][RT:705509789681] 2021-07-12 15:47:52.35604 UTC;android time 2021-07-12 15:47:52.35604\n[  705.509833]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[705509820527,19999947]\n[  705.599776]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  705.599784]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  705.816865]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfc, adc_result=3739\n[  706.239781]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  706.239789]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  706.639769]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  706.639778]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  706.821032]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  707.360545]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f1, adc_result=2796\n[  707.360770]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1947\n[  707.362007]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x425, adc_result=1165\n[  707.599741] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  707590000000, 707940000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  707.679820]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 162, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  707.679861]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  707.679889]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  707.825191]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfc, adc_result=3739\n[  708.719768]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  708.719777]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  708.829336]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf7, adc_result=3738\n[  709.759769]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  709.759778]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  709.832600]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfa, adc_result=3739\n[  710.799770]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  710.799779]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  710.836748]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  711.279781]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  711.279789]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  711.839715]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  711.839723]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  711.840895]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf8, adc_result=3739\n[  712.400542]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  712.400866]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1971\n[  712.402099]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x425, adc_result=1165\n[  712.609739] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  712600000000, 712900000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  712.719758]  (0)[457:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 162, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  712.844947]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  712.879777]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  712.879786]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  713.849127]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf8, adc_result=3739\n[  713.919771]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  713.919779]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  714.852623]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  714.959770]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  714.959779]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  715.856774]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  715.999772]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  715.999781]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  716.319781]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  716.319791]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  716.319795]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  716.860916]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfa, adc_result=3739\n[  717.039771]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  717.039780]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  717.440543]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  717.440788]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1977\n[  717.442023]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x425, adc_result=1165\n[  717.619740] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  717610000000, 717860000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  717.759756]  (0)[457:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 162, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000013 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  717.865155]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf5, adc_result=3738\n[  718.079911]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  718.079919]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  718.869316]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  719.119909]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  719.119917]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  719.872642]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfa, adc_result=3739\n[  720.159770]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  720.159779]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  720.876803]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfc, adc_result=3739\n[  721.199771]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  721.199780]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  721.359781]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  721.359789]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  721.880971]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf7, adc_result=3738\n[  722.239811]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  722.239819]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  722.480486]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  722.480705]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1971\n[  722.481951]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x425, adc_result=1165\n[  722.629741] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  722620000000, 722810000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  722.799758]  (0)[457:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 162, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  722.885163]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf6, adc_result=3738\n[  723.279775]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  723.279783]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  723.889366]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfa, adc_result=3739\n[  724.319783]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  724.319793]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  724.892658]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfa, adc_result=3739\n[  725.359772]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  725.359781]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  725.609799]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[725609789421,20000000]\n[  725.609819]  (1)[395:wdtk-1][thread:395][RT:725609809190] 2021-07-12 15:48:12.135624 UTC;android time 2021-07-12 15:48:12.135624\n[  725.609852]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[725609841114,19999948]\n[  725.896843]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  726.399782]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  726.399790]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  726.399847]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  726.399853]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  726.900996]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf6, adc_result=3738\n[  727.439770]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  727.439779]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  727.519755]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  727.520592]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f5, adc_result=2800\n[  727.520864]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1959\n[  727.522110]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x426, adc_result=1166\n[  727.639741] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  727630000000, 727770000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  727.839758]  (0)[457:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 162, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  727.905220]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf7, adc_result=3738\n[  728.479778]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  728.479787]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  728.909469]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  729.519771]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  729.519780]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  729.913471]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  730.559774]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  730.559783]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  730.917731]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfb, adc_result=3739\n[  731.439782]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  731.439790]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  731.439795]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  731.599772]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  731.599781]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  731.922004]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfa, adc_result=3739\n[  732.560650]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  732.560981]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1928\n[  732.562216]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x426, adc_result=1166\n[  732.639783]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  732.639791]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  732.649739] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  732640000000, 732730000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  732.879773]  (0)[457:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 162, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  732.926171]  (0)[457:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf7, adc_result=3738\n[  733.679777]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  733.679786]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  734.720798]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  734.720817]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  735.661044]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[  735.663532]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfe, adc_result=3740\n[  735.703460]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  735.703694]  (0)[341:battery_thread][CH3_DBG] bat_cur = -1995\n[  735.704915]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x426, adc_result=1166\n[  735.705229]  (0)[341:battery_thread]lbat 0 0 0 0\n[  735.705242]  (0)[341:battery_thread]car[-411,0,0,0,0, cycle_car:-16,ncar:0] c:0 1794 vbat:3740 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[  735.705521]  (0)[341:battery_thread]tmp:32 65535 65535 hcar2:65535 lcar2:65535 time:735 sw_iavg:-1980 -1962 1 nafg_m:0 1 0\n[  735.760789]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  735.760809]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  736.000857]  (1)[341:battery_thread]GM3log-nint-nafg 735 735 0 0 0 0 0\n[  736.480703]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  736.480726]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  736.800809]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  736.800829]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  737.601509]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  737.601906]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1824\n[  737.603132]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x426, adc_result=1166\n[  737.650402] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 512, 69, 0, 0, 0, 0, 0, 0, success counter cpu: 495, 8, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 984, 16, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  737640000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  737.840797]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  737.840818]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  737.920563]  (0)[459:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 292, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  738.047205]  (0)[459:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfe, adc_result=3740\n[  738.880788]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  738.880807]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  739.053403]  (0)[459:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfc, adc_result=3739\n[  739.920792]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  739.920811]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  740.059234]  (0)[459:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bfd, adc_result=3740\n[  740.330555]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[  740.960798]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  740.960818]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  741.064275]  (0)[459:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bff, adc_result=3740\n[  741.520670]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  741.520695]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  742.000793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  742.000812]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  742.640586]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  742.640831]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1959\n[  742.642055]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x427, adc_result=1167\n[  742.659737] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 510, 61, 0, 0, 0, 0, 0, 0, success counter cpu: 491, 12, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 982, 22, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  742650000000, 743060000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  742.959766]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 163, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  743.039801]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  743.039813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  743.076382]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf4, adc_result=3738\n[  744.079894]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  744.079904]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  744.080406]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf6, adc_result=3738\n[  745.084481]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf7, adc_result=3738\n[  745.119906]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  745.119915]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  745.709772]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[745709763700,20000000]\n[  745.709792]  (1)[395:wdtk-1][thread:395][RT:745709782469] 2021-07-12 15:48:32.235597 UTC;android time 2021-07-12 15:48:32.235597\n[  745.709821]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[745709809161,19999955]\n[  746.088632]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf5, adc_result=3738\n[  746.159763]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  746.159770]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  746.559774]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  746.559781]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  746.559786]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  747.092530]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf7, adc_result=3738\n[  747.199762]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  747.199770]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  747.669736] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  747660000000, 748020000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  747.680525]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  747.680744]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1971\n[  747.681966]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x427, adc_result=1167\n[  747.999764]  (0)[460:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 163, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  748.096607]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf7, adc_result=3738\n[  748.239761]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  748.239769]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  749.100644]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf6, adc_result=3738\n[  749.279868]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  749.279876]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  750.104714]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf6, adc_result=3738\n[  750.319759]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  750.319767]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  751.108732]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf5, adc_result=3738\n[  751.359760]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  751.359768]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  751.599809]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  751.599816]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  752.112550]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf5, adc_result=3738\n[  752.399788]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  752.399796]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  752.679735] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  752670000000, 752980000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  752.720556]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  752.720787]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1934\n[  752.722010]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x427, adc_result=1167\n[  753.039748]  (0)[460:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 163, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  753.116569]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf8, adc_result=3739\n[  753.439762]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  753.439769]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  754.120725]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf4, adc_result=3738\n[  754.479757]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  754.479765]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  755.124850]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf7, adc_result=3738\n[  755.519761]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  755.519769]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  756.128906]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf3, adc_result=3738\n[  756.559757]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  756.559765]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  756.639770]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  756.639778]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  757.132542]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf7, adc_result=3738\n[  757.599757]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  757.599815]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  757.599823]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  757.689736] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  757680000000, 757930000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  757.760536]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  757.760760]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1947\n[  757.761983]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x427, adc_result=1167\n[  758.079892]  (0)[460:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 163, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  758.136762]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf8, adc_result=3739\n[  758.639763]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  758.639770]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  759.140696]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf7, adc_result=3738\n[  759.679761]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  759.679769]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  760.144747]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf5, adc_result=3738\n[  760.719758]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  760.719767]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  761.148775]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf5, adc_result=3738\n[  761.679771]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  761.679780]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  761.679785]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  761.759757]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  761.759764]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  762.152540]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf5, adc_result=3738\n[  762.699733] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  762690000000, 762890000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  762.799765]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  762.799772]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  762.800584]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  762.800845]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1965\n[  762.801935]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x427, adc_result=1167\n[  763.119891]  (0)[460:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 163, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  763.156654]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf5, adc_result=3738\n[  763.839765]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  763.839773]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  764.160860]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf8, adc_result=3739\n[  764.879761]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  764.879768]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  765.164915]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf4, adc_result=3738\n[  765.809787]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[765809778132,20000000]\n[  765.809806]  (1)[395:wdtk-1][thread:395][RT:765809797286] 2021-07-12 15:48:52.335612 UTC;android time 2021-07-12 15:48:52.335612\n[  765.809836]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[765809825517,19999952]\n[  765.919787]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  765.919794]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  766.168983]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf4, adc_result=3738\n[  766.719770]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  766.719777]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  766.959758]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  766.959766]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  767.172556]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf5, adc_result=3738\n[  767.709733] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  767700000000, 767840000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  767.840532]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  767.840779]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1959\n[  767.842013]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x428, adc_result=1168\n[  767.999761]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  767.999769]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  768.159748]  (0)[460:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 163, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  768.176655]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf7, adc_result=3738\n[  769.039758]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  769.039766]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  769.180696]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf2, adc_result=3737\n[  770.079888]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  770.079896]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  770.184769]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf4, adc_result=3738\n[  771.119889]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  771.119898]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  771.188952]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf4, adc_result=3738\n[  771.759770]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  771.759778]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  772.159758]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  772.159765]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  772.192538]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf4, adc_result=3738\n[  772.719733] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  772710000000, 772800000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  772.880534]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  772.880759]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1977\n[  772.881992]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x428, adc_result=1168\n[  773.196655]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf3, adc_result=3738\n[  773.199789]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 163, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  773.199810]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  773.199819]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  774.200930]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf5, adc_result=3738\n[  774.239759]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  774.239767]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  775.205017]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf4, adc_result=3738\n[  775.279756]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  775.279765]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  776.209079]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf4, adc_result=3738\n[  776.319759]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  776.319768]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  776.799771]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  776.799779]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  776.799784]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  777.212569]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf5, adc_result=3738\n[  777.359757]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  777.359766]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  777.729732] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  777720000000, 777760000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  777.920533]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  777.920765]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1965\n[  777.921996]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x427, adc_result=1167\n[  778.216653]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf2, adc_result=3737\n[  778.239748]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 163, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  778.399762]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  778.399773]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  779.220702]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf2, adc_result=3737\n[  779.439756]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  779.439764]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  780.224777]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf5, adc_result=3738\n[  780.479758]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  780.479766]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  781.228816]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf6, adc_result=3738\n[  781.519759]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  781.519766]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  781.839769]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  781.839777]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  782.232575]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf7, adc_result=3738\n[  782.559761]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  782.559768]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  782.739733] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  782730000000, 783710000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  782.960421]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  782.960789]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2014\n[  782.962022]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x428, adc_result=1168\n[  783.236683]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf5, adc_result=3738\n[  783.279747]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 163, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  783.599763]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  783.599774]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  784.240724]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf4, adc_result=3738\n[  784.639761]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  784.639769]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  785.244889]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf6, adc_result=3738\n[  785.679757]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  785.679765]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  785.909769]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[785909760027,20000000]\n[  785.909788]  (1)[395:wdtk-1][thread:395][RT:785909778873] 2021-07-12 15:49:12.435593 UTC;android time 2021-07-12 15:49:12.435593\n[  785.909819]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[785909807719,19999951]\n[  786.249061]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf6, adc_result=3738\n[  786.719761]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  786.719769]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  786.879782]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  786.879789]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  787.252632]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf3, adc_result=3738\n[  787.679745]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  787.749734] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  787740000000, 788660000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  787.759796]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  787.759803]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  788.000568]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  788.000784]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1989\n[  788.002006]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x428, adc_result=1168\n[  788.256806]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf3, adc_result=3738\n[  788.319748]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 163, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  788.799761]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  788.799772]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  789.260835]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf6, adc_result=3738\n[  789.839757]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  789.839765]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  790.264904]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf4, adc_result=3738\n[  790.879761]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  790.879769]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  791.269074]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf3, adc_result=3738\n[  791.919769]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  791.919777]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  791.919831]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  791.919837]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  791.919842]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  792.272522]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf3, adc_result=3738\n[  792.759732] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  792750000000, 793610000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  792.959760]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  792.959768]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  793.040529]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  793.040760]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2014\n[  793.041983]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x428, adc_result=1168\n[  793.276586]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf4, adc_result=3738\n[  793.359748]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 163, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  793.999764]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  793.999776]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  794.280637]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf3, adc_result=3738\n[  795.039759]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  795.039766]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  795.284729]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf4, adc_result=3738\n[  796.001190]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[  796.003709]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf3, adc_result=3738\n[  796.036228]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  796.036460]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2081\n[  796.037679]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x428, adc_result=1168\n[  796.037899]  (0)[341:battery_thread]lbat 0 0 0 0\n[  796.037912]  (0)[341:battery_thread]car[-445,0,0,0,0, cycle_car:-16,ncar:0] c:0 1989 vbat:3738 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[  796.038193]  (0)[341:battery_thread]tmp:32 65535 65535 hcar2:65535 lcar2:65535 time:796 sw_iavg:-2040 -1989 1 nafg_m:0 1 0\n[  796.079909]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  796.079916]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  796.329805]  (0)[341:battery_thread]GM3log-nint-nafg 796 796 0 0 0 0 0\n[  796.332452]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf5, adc_result=3738\n[  796.959770]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  796.959778]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  797.119898]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  797.119906]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  797.336531]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf5, adc_result=3738\n[  797.769735] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 519, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1008, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  797760000000, 798560000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  798.080659]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  798.080890]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1959\n[  798.082112]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x427, adc_result=1167\n[  798.159760]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  798.159767]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  798.340610]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bef, adc_result=3737\n[  798.399763]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 163, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  799.199760]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  799.199772]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  799.344669]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf3, adc_result=3738\n[  800.239756]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  800.239764]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  800.348755]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf5, adc_result=3738\n[  801.279757]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  801.279765]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  801.352542]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf2, adc_result=3737\n[  801.999770]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  801.999778]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  802.319758]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  802.319766]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  802.356641]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf1, adc_result=3737\n[  802.779735] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  802770000000, 803510000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  803.120661]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  803.120909]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1934\n[  803.122131]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x429, adc_result=1170\n[  803.359706]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  803.359714]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  803.360720]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf2, adc_result=3737\n[  803.439748]  (0)[460:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 163, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  804.364856]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf2, adc_result=3737\n[  804.399763]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  804.399771]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  805.368898]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf1, adc_result=3737\n[  805.439758]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  805.439767]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  806.009787]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[806009778228,20000000]\n[  806.009806]  (1)[395:wdtk-1][thread:395][RT:806009797074] 2021-07-12 15:49:32.535611 UTC;android time 2021-07-12 15:49:32.535611\n[  806.009837]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[806009826536,19999952]\n[  806.372577]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf2, adc_result=3737\n[  806.479761]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  806.479769]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  807.039771]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  807.039778]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  807.039783]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  807.376619]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf1, adc_result=3737\n[  807.519760]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  807.519768]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  807.789733] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  807780000000, 808470000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  808.160525]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  808.160755]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1953\n[  808.161987]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x429, adc_result=1170\n[  808.380708]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf5, adc_result=3738\n[  808.479749]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 163, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  808.559760]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  808.559772]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  809.384771]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf7, adc_result=3738\n[  809.599783]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  809.599790]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  810.388932]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf5, adc_result=3738\n[  810.639758]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  810.639766]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  811.392641]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bef, adc_result=3737\n[  811.679757]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  811.679765]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  812.079910]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  812.079918]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  812.396708]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf2, adc_result=3737\n[  812.719754]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  812.719762]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  812.799733] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  812790000000, 813420000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  813.200526]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  813.200764]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1971\n[  813.201873]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x428, adc_result=1168\n[  813.400769]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf4, adc_result=3738\n[  813.519749]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 163, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  813.759756]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  813.759767]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  814.404894]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf3, adc_result=3738\n[  814.799758]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  814.799766]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  815.408999]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf2, adc_result=3737\n[  815.839758]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  815.839767]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  816.412548]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bed, adc_result=3736\n[  816.879756]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  816.879765]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  817.119939]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  817.119945]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  817.416675]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf3, adc_result=3738\n[  817.759757]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  817.809736] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  817800000000, 818380000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  817.919795]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  817.919802]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  818.240543]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  818.240802]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1971\n[  818.242024]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x428, adc_result=1168\n[  818.420855]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf3, adc_result=3738\n[  818.559748]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 163, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  818.959758]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  818.959769]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  819.424933]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf4, adc_result=3738\n[  819.999757]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  819.999764]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  820.429022]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf1, adc_result=3737\n[  821.039767]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  821.039775]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  821.432612]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf3, adc_result=3738\n[  822.079890]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  822.079898]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  822.159778]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  822.159787]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  822.159793]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  822.436650]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf2, adc_result=3737\n[  822.819733] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  822810000000, 823340000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  823.119892]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  823.119900]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  823.280524]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  823.280751]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1977\n[  823.281973]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42a, adc_result=1171\n[  823.440708]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf1, adc_result=3737\n[  823.599748]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 163, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  824.159775]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  824.159787]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  824.444821]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf0, adc_result=3737\n[  825.199758]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  825.199766]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  825.448903]  (0)[460:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf2, adc_result=3737\n[  826.110722]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[826110710045,20000000]\n[  826.110733]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[826110716199,19999994]\n[  826.110754]  (0)[394:wdtk-0][thread:394][RT:826110744430] 2021-07-12 15:49:52.636558 UTC;android time 2021-07-12 15:49:52.636558\n[  826.240793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  826.240814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  827.200771]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  827.200788]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  827.280795]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  827.280816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  827.820438] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 514, 36, 0, 0, 0, 0, 0, 0, success counter cpu: 496, 7, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 987, 14, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  827810000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  828.320815]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  828.320834]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  828.321610]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  828.321829]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1782\n[  828.323153]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x429, adc_result=1170\n[  828.640635]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 296, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  829.360797]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  829.360820]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  830.400785]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  830.400804]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  830.567006]  (0)[463:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf6, adc_result=3738\n[  831.440844]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  831.440863]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  831.573082]  (0)[463:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf8, adc_result=3739\n[  832.240771]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  832.240789]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  832.480793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  832.480814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  832.578977]  (0)[463:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf4, adc_result=3738\n[  832.830439] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 510, 56, 0, 0, 0, 0, 0, 0, success counter cpu: 497, 6, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 995, 10, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  832820000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  833.361344]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  833.361592]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1794\n[  833.362810]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x429, adc_result=1170\n[  833.520798]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  833.520818]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  833.584267]  (0)[463:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf8, adc_result=3739\n[  833.680637]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 292, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  834.560788]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  834.560812]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  835.596412]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf1, adc_result=3737\n[  835.599784]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  835.599796]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  836.600549]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf4, adc_result=3738\n[  836.639767]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  836.639775]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  837.279770]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  837.279778]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  837.279782]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  837.604681]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bef, adc_result=3737\n[  837.679758]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  837.679765]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  837.839732] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 514, 21, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 4, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1000, 8, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  837830000000, 838560000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  838.400523]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  838.400755]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1971\n[  838.401971]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x429, adc_result=1170\n[  838.608686]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf1, adc_result=3737\n[  838.719784]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 161, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  838.719802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  838.719810]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  839.612623]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf1, adc_result=3737\n[  839.759753]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  839.759760]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  840.616616]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf0, adc_result=3737\n[  840.799789]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  840.799795]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  841.620734]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf0, adc_result=3737\n[  841.839752]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  841.839760]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  842.319767]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  842.319774]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  842.624883]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bec, adc_result=3736\n[  842.849729] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  842840000000, 843510000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  842.879756]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  842.879764]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  843.440518]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  843.440753]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2014\n[  843.441968]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42a, adc_result=1171\n[  843.628885]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bee, adc_result=3737\n[  843.759744]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 161, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  843.919755]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  843.919765]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  844.632486]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf4, adc_result=3738\n[  844.959753]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  844.959761]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  845.636516]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bef, adc_result=3737\n[  845.999753]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  845.999760]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  846.209772]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[846209763324,20000000]\n[  846.209791]  (1)[395:wdtk-1][thread:395][RT:846209782093] 2021-07-12 15:50:12.735597 UTC;android time 2021-07-12 15:50:12.735597\n[  846.209845]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[846209834093,19999929]\n[  846.640590]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf3, adc_result=3738\n[  847.039759]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  847.039766]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  847.359767]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  847.359775]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  847.644691]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bed, adc_result=3736\n[  847.839756]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  847.859731] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  847850000000, 848470000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  848.079891]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  848.079906]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  848.480522]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  848.480766]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2014\n[  848.481981]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42a, adc_result=1171\n[  848.648765]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf1, adc_result=3737\n[  848.799744]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 161, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000013 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  849.119890]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  849.119900]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  849.652507]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bef, adc_result=3737\n[  850.159755]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  850.159762]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  850.656503]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf0, adc_result=3737\n[  851.199756]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  851.199763]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  851.660499]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bee, adc_result=3737\n[  852.239753]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  852.239761]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  852.399766]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  852.399773]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  852.399778]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  852.664501]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bee, adc_result=3737\n[  852.869729] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  852860000000, 853420000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  853.279788]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  853.279795]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  853.520555]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  853.520771]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1947\n[  853.521986]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42a, adc_result=1171\n[  853.668510]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bee, adc_result=3737\n[  853.839744]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 161, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  854.319758]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  854.319768]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  854.672510]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf2, adc_result=3737\n[  855.359754]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  855.359761]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  855.676543]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bef, adc_result=3737\n[  856.330104]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[  856.332563]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bed, adc_result=3736\n[  856.364635]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  856.364919]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2044\n[  856.366132]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42a, adc_result=1171\n[  856.366361]  (0)[341:battery_thread]lbat 0 0 0 0\n[  856.366373]  (0)[341:battery_thread]car[-478,0,0,0,0, cycle_car:-16,ncar:0] c:0 1959 vbat:3736 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[  856.366652]  (0)[341:battery_thread]tmp:32 65535 65535 hcar2:65535 lcar2:65535 time:856 sw_iavg:-1980 -1962 1 nafg_m:0 1 0\n[  856.399765]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  856.399772]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  856.659761]  (0)[341:battery_thread]GM3log-nint-nafg 856 856 0 0 0 0 0\n[  856.680611]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf0, adc_result=3737\n[  857.439777]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  857.439784]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  857.439838]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  857.439843]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  857.684862]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf0, adc_result=3737\n[  857.879729] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 499, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 998, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  857870000000, 858370000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  858.479758]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  858.479765]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  858.560517]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  858.560825]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1947\n[  858.562039]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42b, adc_result=1172\n[  858.688884]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bed, adc_result=3736\n[  858.879745]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 161, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  859.519756]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  859.519767]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  859.692521]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf0, adc_result=3737\n[  860.559754]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  860.559762]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  860.696521]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bec, adc_result=3736\n[  861.599752]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  861.599760]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  861.700516]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bec, adc_result=3736\n[  862.479768]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  862.479776]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  862.639751]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  862.639758]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  862.704542]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf0, adc_result=3737\n[  862.889729] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  862880000000, 863320000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  863.209725]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[  863.600515]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  863.600759]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2075\n[  863.601975]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x429, adc_result=1170\n[  863.679753]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  863.679760]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  863.708678]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bee, adc_result=3737\n[  863.919762]  (0)[464:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 161, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  864.712489]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf4, adc_result=3738\n[  864.719757]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  864.719764]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  865.716507]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bed, adc_result=3736\n[  865.759754]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  865.759762]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  866.299692]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[866299682757,20000000]\n[  866.299710]  (1)[395:wdtk-1][thread:395][RT:866299701526] 2021-07-12 15:50:32.825516 UTC;android time 2021-07-12 15:50:32.825516\n[  866.309789]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[866309778372,19989904]\n[  866.720534]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bee, adc_result=3737\n[  866.799757]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  866.799764]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  867.519767]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  867.519775]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  867.519779]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  867.724473]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bef, adc_result=3737\n[  867.839756]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  867.839763]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  867.899730] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  867890000000, 868270000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  868.640515]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  868.640739]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1983\n[  868.641954]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42a, adc_result=1171\n[  868.728498]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf0, adc_result=3737\n[  868.879755]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  868.879762]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  868.959743]  (0)[464:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 161, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  869.732494]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf0, adc_result=3737\n[  869.919754]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  869.919761]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  870.736491]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bee, adc_result=3737\n[  870.959753]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  870.959760]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  871.740491]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf3, adc_result=3738\n[  871.999753]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  871.999760]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  872.559767]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  872.559775]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  872.744487]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf1, adc_result=3737\n[  872.909729] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  872900000000, 873230000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  873.039755]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  873.039762]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  873.680517]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  873.680744]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1947\n[  873.681960]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42a, adc_result=1171\n[  873.748527]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bec, adc_result=3736\n[  873.999743]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 161, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  874.079899]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  874.079909]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  874.752514]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bec, adc_result=3736\n[  875.119915]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  875.119922]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  875.756512]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4beb, adc_result=3736\n[  876.159755]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  876.159762]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  876.760506]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bef, adc_result=3737\n[  877.199758]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  877.199765]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  877.599766]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  877.599772]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  877.764508]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bee, adc_result=3737\n[  877.919728] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  877910000000, 878180000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  877.919820]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  878.239775]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  878.239783]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  878.720413]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  878.720633]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2014\n[  878.721859]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42b, adc_result=1172\n[  878.768714]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bed, adc_result=3736\n[  879.039745]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 161, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  879.279757]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  879.279768]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  879.772505]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bee, adc_result=3737\n[  880.319755]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  880.319762]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  880.776501]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bef, adc_result=3737\n[  881.359756]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  881.359764]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  881.780528]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bed, adc_result=3736\n[  882.399767]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  882.399774]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  882.639804]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  882.639810]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  882.639815]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  882.784560]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bef, adc_result=3737\n[  882.929729] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  882920000000, 883140000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  883.439785]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  883.439792]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  883.760515]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  883.760730]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1971\n[  883.761944]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42b, adc_result=1172\n[  883.788565]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf0, adc_result=3737\n[  884.079884]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 161, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  884.479767]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  884.479778]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  884.792491]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf0, adc_result=3737\n[  885.519753]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  885.519761]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  885.796489]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bed, adc_result=3736\n[  886.399759]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[886399750497,20000000]\n[  886.399768]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[886399756958,19999993]\n[  886.399778]  (1)[395:wdtk-1][thread:395][RT:886399768574] 2021-07-12 15:50:52.925583 UTC;android time 2021-07-12 15:50:52.925583\n[  886.559753]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  886.559760]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  886.800546]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bef, adc_result=3737\n[  887.599753]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  887.599761]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  887.679766]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  887.679773]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  887.804547]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bee, adc_result=3737\n[  887.939728] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  887930000000, 888100000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  888.639754]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  888.639762]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  888.800519]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  888.800740]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1959\n[  888.801955]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42a, adc_result=1171\n[  888.808548]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be9, adc_result=3736\n[  889.119886]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 161, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  889.679754]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  889.679764]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  889.812509]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bef, adc_result=3737\n[  890.719754]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  890.719764]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  890.816507]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bef, adc_result=3737\n[  891.759754]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  891.759762]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  891.820538]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bee, adc_result=3737\n[  892.719767]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  892.719774]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  892.799754]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  892.799761]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  892.824532]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bed, adc_result=3736\n[  892.949728] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  892940000000, 893050000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  893.828542]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bef, adc_result=3737\n[  893.839768]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  893.839775]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  893.840589]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  893.840810]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1947\n[  893.842026]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42b, adc_result=1172\n[  894.159744]  (0)[464:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 161, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  894.832503]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bee, adc_result=3737\n[  894.879756]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  894.879763]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  895.836498]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf0, adc_result=3737\n[  895.919754]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  895.919762]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  896.840523]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bec, adc_result=3736\n[  896.959776]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  896.959783]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  897.759768]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  897.759776]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  897.759780]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  897.844526]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bed, adc_result=3736\n[  897.959728] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  897950000000, 898010000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  897.999753]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  897.999760]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  898.848551]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bed, adc_result=3736\n[  898.880518]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  898.880788]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2050\n[  898.882004]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42b, adc_result=1172\n[  899.039760]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  899.039767]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  899.199744]  (0)[464:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 161, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  899.852523]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bed, adc_result=3736\n[  900.079888]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  900.079895]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  900.856572]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bec, adc_result=3736\n[  901.119893]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  901.119900]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  901.860639]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bee, adc_result=3737\n[  902.159753]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  902.159760]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  902.799766]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  902.799773]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  902.864674]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bea, adc_result=3736\n[  902.969729] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  902960000000, 902970000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  903.199759]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  903.199766]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  903.868703]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bef, adc_result=3737\n[  903.920514]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  903.920738]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2026\n[  903.921979]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42a, adc_result=1171\n[  904.239781]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 161, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  904.239800]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  904.239808]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  904.872515]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf0, adc_result=3737\n[  905.279757]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  905.279764]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  905.876578]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bee, adc_result=3737\n[  906.319751]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  906.319759]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  906.499764]  (0)[394:wdtk-0][wdk-c] cpu=0,lbit=0x1,cbit=0x3,1,1,84470350739,0,0,[906499754776,20000000]\n[  906.499772]  (1)[395:wdtk-1][wdk-k] cpu=1,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[906499762468,19999992]\n[  906.499782]  (0)[394:wdtk-0][thread:394][RT:906499772929] 2021-07-12 15:51:13.25587 UTC;android time 2021-07-12 15:51:13.25587\n[  906.880610]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bea, adc_result=3736\n[  907.359787]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  907.359794]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  907.839765]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  907.839772]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  907.884623]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf0, adc_result=3737\n[  907.979729] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  907970000000, 908900000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  907.999740]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  908.399757]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  908.399764]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  908.888728]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bed, adc_result=3736\n[  908.960516]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  908.960745]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1971\n[  908.962622]  (0)[329:kworker/u16:3]BAT_TEMP_PREV:1171,BAT_TEMP:1172,VBIF28:2798\n[  908.962633]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42b, adc_result=1172\n[  909.279744]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 161, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  909.439760]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  909.439769]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  909.892527]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bef, adc_result=3737\n[  910.479756]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  910.479763]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  910.896527]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bed, adc_result=3736\n[  911.519755]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  911.519762]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  911.900583]  (0)[464:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bec, adc_result=3736\n[  912.560816]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  912.560835]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  912.880773]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  912.880792]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  912.880797]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  912.980424] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 509, 17, 0, 0, 0, 0, 0, 0, success counter cpu: 500, 1, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 996, 0, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  912970000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  913.600763]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  913.600781]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  914.001553]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  914.001792]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1849\n[  914.003004]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42b, adc_result=1172\n[  914.320620]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 297, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  914.640670]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  914.640694]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  915.680765]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  915.680785]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  916.660900]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[  916.663492]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf5, adc_result=3738\n[  916.720809]  (1)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  916.720829]  (1)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  917.016340]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  917.016592]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2001\n[  917.017800]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42c, adc_result=1173\n[  917.018064]  (0)[341:battery_thread]lbat 0 0 0 0\n[  917.018075]  (0)[341:battery_thread]car[-511,0,0,0,0, cycle_car:-16,ncar:0] c:0 1824 vbat:3738 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[  917.018353]  (0)[341:battery_thread]tmp:32 65535 65535 hcar2:65535 lcar2:65535 time:917 sw_iavg:-1980 -1980 1 nafg_m:0 1 0\n[  917.020343]  (0)[467:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf1, adc_result=3737\n[  917.310652]  (0)[341:battery_thread]GM3log-nint-nafg 917 917 0 0 0 0 0\n[  917.760776]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  917.760795]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  917.920755]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  917.920773]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  917.990425] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 536, 76, 0, 0, 0, 0, 0, 0, success counter cpu: 491, 9, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 975, 18, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  917980000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  918.025186]  (0)[467:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf2, adc_result=3737\n[  918.800854]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  918.800874]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  919.030885]  (0)[467:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf1, adc_result=3737\n[  919.041282]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  919.041554]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1879\n[  919.042766]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42c, adc_result=1173\n[  919.360536]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 293, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  919.840771]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  919.840795]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  920.035744]  (0)[467:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf3, adc_result=3738\n[  920.880657]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  920.880678]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  921.919793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  921.919811]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  922.047116]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bec, adc_result=3736\n[  922.959780]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  922.959789]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  922.959844]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  922.959850]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  922.999727] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 512, 50, 0, 0, 0, 0, 0, 0, success counter cpu: 497, 7, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 989, 13, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  922990000000, 923020000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  923.051056]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bea, adc_result=3736\n[  923.999759]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  923.999766]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  924.055041]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be9, adc_result=3736\n[  924.080644]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  924.080891]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1995\n[  924.082099]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42c, adc_result=1173\n[  924.399739]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 205, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  925.039750]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  925.039761]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  925.059004]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4beb, adc_result=3736\n[  926.062447]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bee, adc_result=3737\n[  926.079886]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  926.079893]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  926.599742]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[926599733900,20000000]\n[  926.599759]  (1)[395:wdtk-1][thread:395][RT:926599751131] 2021-07-12 15:51:33.125565 UTC;android time 2021-07-12 15:51:33.125565\n[  926.599769]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[926599759208,19999974]\n[  927.066458]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bed, adc_result=3736\n[  927.119881]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  927.119888]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  927.999761]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  927.999768]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  927.999773]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  928.009725] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  928000000000, 928960000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  928.070379]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be9, adc_result=3736\n[  928.159747]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  928.159753]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  929.074309]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4beb, adc_result=3736\n[  929.120575]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  929.120808]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1989\n[  929.122020]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42c, adc_result=1173\n[  929.199746]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  929.199752]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  929.439750]  (0)[468:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 205, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  930.078254]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bec, adc_result=3736\n[  930.239748]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  930.239754]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  931.082254]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bec, adc_result=3736\n[  931.279747]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  931.279754]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  932.086246]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4beb, adc_result=3736\n[  932.319757]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  932.319764]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  933.019725] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  933010000000, 933920000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  933.039762]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  933.039769]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  933.090126]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bed, adc_result=3736\n[  933.359749]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  933.359756]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  934.094094]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bea, adc_result=3736\n[  934.160502]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  934.160727]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2038\n[  934.161937]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42c, adc_result=1173\n[  934.399752]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  934.399758]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  934.479739]  (0)[468:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 205, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  935.098050]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bea, adc_result=3736\n[  935.439748]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  935.439755]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  936.102001]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bea, adc_result=3736\n[  936.479746]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  936.479752]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  937.105900]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be8, adc_result=3736\n[  937.519747]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  937.519754]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  938.029726] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  938020000000, 938880000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  938.079759]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  938.080075]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  938.080093]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  938.109881]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bea, adc_result=3736\n[  938.559750]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  938.559757]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  939.113802]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4beb, adc_result=3736\n[  939.200508]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  939.200734]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1965\n[  939.201941]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42c, adc_result=1173\n[  939.519738]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 205, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  939.599749]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  939.599758]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  940.117763]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4beb, adc_result=3736\n[  940.639769]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  940.639775]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  941.121865]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bea, adc_result=3736\n[  941.679747]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  941.679754]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  942.125804]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4beb, adc_result=3736\n[  942.719753]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  942.719759]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  943.039726] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  943030000000, 943840000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  943.119893]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  943.119900]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  943.119904]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  943.129772]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bed, adc_result=3736\n[  943.759747]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  943.759753]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  944.133681]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bec, adc_result=3736\n[  944.240517]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  944.240837]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1971\n[  944.242045]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42c, adc_result=1173\n[  944.559736]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 205, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000013 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  944.799749]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  944.799758]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  945.137614]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4beb, adc_result=3736\n[  945.839745]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  945.839752]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  946.141550]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be8, adc_result=3736\n[  946.699754]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[946699746564,20000000]\n[  946.699763]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[946699753102,19999993]\n[  946.699773]  (1)[395:wdtk-1][thread:395][RT:946699764410] 2021-07-12 15:51:53.225578 UTC;android time 2021-07-12 15:51:53.225578\n[  946.879746]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  946.879752]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  947.145521]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bec, adc_result=3736\n[  947.919752]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  947.919759]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  948.049724] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  948040000000, 948790000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  948.149449]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bec, adc_result=3736\n[  948.159802]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  948.159807]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  948.959775]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  948.959781]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  949.152411]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bea, adc_result=3736\n[  949.280514]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  949.280752]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2038\n[  949.281959]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42d, adc_result=1174\n[  949.599750]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 205, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  949.999745]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  949.999754]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  950.156351]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bea, adc_result=3736\n[  951.039747]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  951.039753]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  951.160281]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4beb, adc_result=3736\n[  952.079877]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  952.079884]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  952.164222]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bea, adc_result=3736\n[  953.059725] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  953050000000, 953750000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  953.119875]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  953.119882]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  953.168171]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be8, adc_result=3736\n[  953.199764]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  953.199770]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  954.159747]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  954.159754]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  954.172132]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be8, adc_result=3736\n[  954.320504]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  954.320729]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2014\n[  954.321937]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42d, adc_result=1174\n[  954.639737]  (0)[468:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 205, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  955.176097]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be9, adc_result=3736\n[  955.199750]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  955.199756]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  956.180032]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be7, adc_result=3735\n[  956.239746]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  956.239753]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  957.183939]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4beb, adc_result=3736\n[  957.279750]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  957.279757]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  958.069723] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  958060000000, 958710000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  958.187905]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be8, adc_result=3736\n[  958.239761]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  958.239768]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  958.239772]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  958.319747]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  958.319754]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  959.191865]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bea, adc_result=3736\n[  959.359759]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  959.359765]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  959.360562]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  959.360829]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1995\n[  959.362041]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42d, adc_result=1174\n[  959.679737]  (0)[468:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 205, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  960.195811]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bec, adc_result=3736\n[  960.399748]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  960.399755]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  961.199662]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4beb, adc_result=3736\n[  961.439752]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  961.439758]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  962.203532]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be8, adc_result=3736\n[  962.479769]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  962.479775]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  963.079725] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  963070000000, 963660000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  963.207535]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be9, adc_result=3736\n[  963.279760]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  963.279766]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  963.519747]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  963.519753]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  964.211459]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bea, adc_result=3736\n[  964.400504]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  964.400818]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1965\n[  964.402029]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42e, adc_result=1175\n[  964.559748]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  964.559754]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  964.719735]  (0)[468:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 205, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  965.215431]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4beb, adc_result=3736\n[  965.599762]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  965.599768]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  966.219393]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be8, adc_result=3736\n[  966.639748]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  966.639755]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  966.799757]  (0)[394:wdtk-0][wdk-c] cpu=0,lbit=0x1,cbit=0x3,1,1,84470350739,0,0,[966799748227,20000000]\n[  966.799765]  (1)[395:wdtk-1][wdk-k] cpu=1,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[966799755227,19999993]\n[  966.799774]  (0)[394:wdtk-0][thread:394][RT:966799765766] 2021-07-12 15:52:13.325580 UTC;android time 2021-07-12 15:52:13.325580\n[  967.222460]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be8, adc_result=3736\n[  967.679751]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  967.679757]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  968.089724] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  968080000000, 968620000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  968.159733]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  968.226425]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bea, adc_result=3736\n[  968.319760]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  968.319766]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  968.719751]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  968.719757]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  969.230353]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be9, adc_result=3736\n[  969.440503]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  969.440724]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2093\n[  969.441933]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42d, adc_result=1174\n[  969.759775]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 205, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  969.759791]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  969.759799]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  970.234235]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bea, adc_result=3736\n[  970.799747]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  970.799754]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  971.238167]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be6, adc_result=3735\n[  971.839747]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  971.839754]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  972.242260]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be9, adc_result=3736\n[  972.879754]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  972.879761]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  973.099724] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  973090000000, 973580000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  973.246296]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bec, adc_result=3736\n[  973.359761]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  973.359767]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  973.359771]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  973.919746]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  973.919752]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  974.250247]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bea, adc_result=3736\n[  974.480394]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  974.480610]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2020\n[  974.481819]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42d, adc_result=1174\n[  974.799737]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 205, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  974.959746]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  974.959756]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  975.254133]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be9, adc_result=3736\n[  975.999750]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  975.999756]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  976.258077]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be9, adc_result=3736\n[  977.039746]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  977.039754]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  977.262023]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be8, adc_result=3736\n[  977.310973]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[  977.313432]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4beb, adc_result=3736\n[  977.345650]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  977.345875]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2056\n[  977.347082]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42d, adc_result=1174\n[  977.347318]  (0)[341:battery_thread]lbat 0 0 0 0\n[  977.347329]  (0)[341:battery_thread]car[-545,0,0,0,0, cycle_car:-16,ncar:0] c:0 1995 vbat:3736 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[  977.347610]  (0)[341:battery_thread]tmp:32 65535 65535 hcar2:65535 lcar2:65535 time:977 sw_iavg:-2040 -2014 1 nafg_m:0 1 0\n[  977.639755]  (0)[341:battery_thread]GM3log-nint-nafg 977 977 0 0 0 0 0\n[  978.079884]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  978.079891]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  978.109724] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 511, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  978100000000, 978330154289, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  978.266024]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be8, adc_result=3736\n[  978.399773]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  978.399779]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  979.119882]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  979.119889]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  979.269974]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bea, adc_result=3736\n[  979.520500]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  979.520712]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1995\n[  979.521921]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42d, adc_result=1174\n[  979.839738]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 205, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  980.159747]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  980.159756]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  980.273850]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be8, adc_result=3736\n[  981.199747]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  981.199754]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  981.277820]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be9, adc_result=3736\n[  982.239747]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  982.239754]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  982.281771]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4beb, adc_result=3736\n[  983.119725] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  983110000000, 983490000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  983.279747]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  983.279753]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  983.285847]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be8, adc_result=3736\n[  983.439759]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  983.439766]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  984.289768]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be8, adc_result=3736\n[  984.319781]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  984.319787]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  984.560540]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[  984.560779]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1928\n[  984.561997]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42d, adc_result=1174\n[  984.879736]  (0)[468:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 205, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  985.293685]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bea, adc_result=3736\n[  985.359749]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  985.359755]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  986.089720]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[  986.297502]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be9, adc_result=3736\n[  986.399748]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  986.399754]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  986.899742]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[986899734121,20000000]\n[  986.899758]  (1)[395:wdtk-1][thread:395][RT:986899750429] 2021-07-12 15:52:33.425565 UTC;android time 2021-07-12 15:52:33.425565\n[  986.899776]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[986899765429,19999969]\n[  987.301462]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bea, adc_result=3736\n[  987.439747]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  987.439753]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  988.129725] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  988120000000, 988440000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  988.305391]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be7, adc_result=3735\n[  988.479757]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  988.479763]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  988.479816]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[  988.479822]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  988.479825]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  989.309334]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be8, adc_result=3736\n[  989.519755]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  989.519762]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  989.600503]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  989.600726]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2081\n[  989.601934]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42d, adc_result=1174\n[  989.919735]  (0)[468:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 205, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  990.312448]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4beb, adc_result=3736\n[  990.559755]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  990.559762]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  991.316411]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be9, adc_result=3736\n[  991.599747]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  991.599754]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  992.320379]  (0)[468:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bea, adc_result=3736\n[  992.639749]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  992.639755]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  993.130418] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 509, 9, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1000, 0, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  993120000000, 993120000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  993.520527]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  993.520546]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  993.680723]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  993.680741]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  994.641523]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[  994.641775]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1806\n[  994.642974]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42e, adc_result=1175\n[  994.720765]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  994.720784]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  994.960663]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 297, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[  995.760743]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  995.760766]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  996.800746]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  996.800764]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  997.436722]  (0)[470:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bef, adc_result=3737\n[  997.840732]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  997.840751]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  998.140405] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 509, 52, 0, 0, 0, 0, 0, 0, success counter cpu: 497, 6, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 991, 11, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  998130000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[  998.240706]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[  998.442404]  (0)[470:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bef, adc_result=3737\n[  998.560720]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[  998.560737]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[  998.880732]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  998.880750]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[  999.447232]  (0)[470:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bf2, adc_result=3737\n[  999.681521]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[  999.681783]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1794\n[  999.682983]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42e, adc_result=1175\n[  999.920732]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[  999.920750]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1000.000598]  (0)[470:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 297, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1000.453066]  (0)[470:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bef, adc_result=3737\n[ 1000.960731]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1000.960749]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1001.999783]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1001.999800]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1002.464224]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be8, adc_result=3736\n[ 1003.039767]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1003.039776]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1003.149721] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 511, 48, 0, 0, 0, 0, 0, 0, success counter cpu: 498, 6, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 994, 11, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1003140000000, 1003440000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1003.468187]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be5, adc_result=3735\n[ 1003.599755]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1003.599762]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1003.599765]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1004.079875]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1004.079881]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1004.472087]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be7, adc_result=3735\n[ 1004.720489]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1004.720735]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2032\n[ 1004.721944]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42e, adc_result=1175\n[ 1005.039739]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 119, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1005.119870]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1005.119878]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1005.475948]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be7, adc_result=3735\n[ 1006.159758]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1006.159764]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1006.479899]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be6, adc_result=3735\n[ 1006.999751]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[1006999743938,20000000]\n[ 1006.999766]  (1)[395:wdtk-1][thread:395][RT:1006999759092] 2021-07-12 15:52:53.525573 UTC;android time 2021-07-12 15:52:53.525573\n[ 1006.999775]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1006999766477,19999977]\n[ 1007.199736]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1007.199742]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1007.483740]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be4, adc_result=3735\n[ 1008.159719] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1008150000000, 1008400000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1008.239737]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1008.239743]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1008.487683]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be4, adc_result=3735\n[ 1008.639752]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1008.639758]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1009.279737]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1009.279743]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1009.491536]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be6, adc_result=3735\n[ 1009.760489]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1009.760702]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1995\n[ 1009.761900]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42e, adc_result=1175\n[ 1010.079864]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 119, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1010.319736]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1010.319744]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1010.495389]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be5, adc_result=3735\n[ 1011.359743]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1011.359749]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1011.499237]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be5, adc_result=3735\n[ 1012.399738]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1012.399744]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1012.502347]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be4, adc_result=3735\n[ 1013.169719] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1013160000000, 1013360000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1013.439735]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1013.439740]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1013.506192]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be7, adc_result=3735\n[ 1013.679783]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1013.679788]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1014.479765]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1014.479771]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1014.510035]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be4, adc_result=3735\n[ 1014.800500]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1014.800740]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2008\n[ 1014.801938]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42e, adc_result=1175\n[ 1015.119864]  (0)[471:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 119, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1015.513849]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be6, adc_result=3735\n[ 1015.519818]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1015.519824]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1016.517695]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be2, adc_result=3734\n[ 1016.559737]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1016.559743]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1017.521538]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be3, adc_result=3735\n[ 1017.599748]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1017.599754]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1018.179718] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1018170000000, 1018310000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1018.525385]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be5, adc_result=3735\n[ 1018.639736]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1018.639742]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1018.719754]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1018.719759]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1018.719763]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1019.529356]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be6, adc_result=3735\n[ 1019.679737]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1019.679743]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1019.840500]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1019.840716]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1989\n[ 1019.841924]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42e, adc_result=1175\n[ 1020.159727]  (0)[471:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 119, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1020.532372]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be6, adc_result=3735\n[ 1020.719739]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1020.719745]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1021.536250]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be4, adc_result=3735\n[ 1021.759736]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1021.759743]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1022.540120]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be6, adc_result=3735\n[ 1022.799733]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1022.799739]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1023.189717] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1023180000000, 1023270000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1023.543906]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be3, adc_result=3735\n[ 1023.759751]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1023.759756]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1023.839746]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1023.839752]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1024.547754]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be4, adc_result=3735\n[ 1024.879743]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1024.879749]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1024.880547]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1024.880878]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2062\n[ 1024.882075]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42e, adc_result=1175\n[ 1025.199729]  (0)[471:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 119, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1025.551620]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be7, adc_result=3735\n[ 1025.919738]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1025.919744]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1026.555471]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be5, adc_result=3735\n[ 1026.959736]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1026.959741]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1027.099748]  (0)[394:wdtk-0][wdk-c] cpu=0,lbit=0x1,cbit=0x3,1,1,84470350739,0,0,[1027099739755,20000000]\n[ 1027.099755]  (1)[395:wdtk-1][wdk-k] cpu=1,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1027099746448,19999993]\n[ 1027.099764]  (0)[394:wdtk-0][thread:394][RT:1027099755986] 2021-07-12 15:53:13.625570 UTC;android time 2021-07-12 15:53:13.625570\n[ 1027.559385]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be5, adc_result=3735\n[ 1027.999755]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1027.999761]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1028.199717] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1028190000000, 1028220000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1028.319726]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1028.562386]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be6, adc_result=3735\n[ 1028.799751]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1028.799757]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1029.039740]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1029.039745]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1029.566362]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be6, adc_result=3735\n[ 1029.920489]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1029.920702]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2014\n[ 1029.921902]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42f, adc_result=1176\n[ 1030.079867]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1030.079872]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1030.239755]  (0)[471:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 119, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1030.570208]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be6, adc_result=3735\n[ 1031.119864]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1031.119870]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1031.574001]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be2, adc_result=3734\n[ 1032.159737]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1032.159743]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1032.577943]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be4, adc_result=3735\n[ 1033.199743]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1033.199749]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1033.209718] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1033200000000, 1034170000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1033.581803]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be4, adc_result=3735\n[ 1033.839752]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1033.839757]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1033.839761]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1034.239737]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1034.239743]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1034.585496]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be5, adc_result=3735\n[ 1034.960487]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1034.960816]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2014\n[ 1034.962014]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42e, adc_result=1175\n[ 1035.279762]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 119, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1035.279777]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1035.279784]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1035.589393]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be5, adc_result=3735\n[ 1036.319737]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1036.319743]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1036.592338]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be7, adc_result=3735\n[ 1037.359738]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1037.359744]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1037.596188]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be5, adc_result=3735\n[ 1037.640073]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[ 1037.642610]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be5, adc_result=3735\n[ 1037.674359]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1037.674581]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2075\n[ 1037.675777]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42e, adc_result=1175\n[ 1037.676024]  (0)[341:battery_thread]lbat 0 0 0 0\n[ 1037.676034]  (0)[341:battery_thread]car[-578,0,0,0,0, cycle_car:-16,ncar:0] c:0 2026 vbat:3735 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[ 1037.676435]  (0)[341:battery_thread]tmp:32 65535 65535 hcar2:65535 lcar2:65535 time:1037 sw_iavg:-1980 -2035 1 nafg_m:0 1 0\n[ 1037.969768]  (0)[341:battery_thread]GM3log-nint-nafg 1037 1037 0 0 0 0 0\n[ 1038.219718] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1038210000000, 1038659301292, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1038.399744]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1038.399749]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1038.600094]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be5, adc_result=3735\n[ 1038.879752]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1038.879757]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1039.439739]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1039.439745]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1039.603908]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be4, adc_result=3735\n[ 1040.000487]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1040.000719]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2044\n[ 1040.001916]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42f, adc_result=1176\n[ 1040.319730]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 119, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1040.479738]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1040.479746]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1040.607785]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be4, adc_result=3735\n[ 1041.519737]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1041.519743]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1041.611685]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be5, adc_result=3735\n[ 1042.559734]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1042.559740]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1042.615533]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be4, adc_result=3735\n[ 1043.229718] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1043220000000, 1044080000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1043.599733]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1043.599738]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1043.619374]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be5, adc_result=3735\n[ 1043.919753]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1043.919758]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1044.622380]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be5, adc_result=3735\n[ 1044.639743]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1044.639749]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1045.040592]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1045.040821]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2056\n[ 1045.042123]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42e, adc_result=1175\n[ 1045.359730]  (0)[471:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 119, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1045.626216]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be4, adc_result=3735\n[ 1045.679734]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1045.679749]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1046.630183]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be3, adc_result=3735\n[ 1046.719735]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1046.719741]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1047.199733]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[1047199725957,20000000]\n[ 1047.199749]  (1)[395:wdtk-1][thread:395][RT:1047199741573] 2021-07-12 15:53:33.725555 UTC;android time 2021-07-12 15:53:33.725555\n[ 1047.199758]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1047199748957,19999977]\n[ 1047.634000]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be4, adc_result=3735\n[ 1047.759736]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1047.759742]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1048.239717] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1048230000000, 1049040000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1048.637913]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be2, adc_result=3734\n[ 1048.799737]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1048.799743]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1048.959753]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1048.959759]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1048.959764]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1049.641770]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be5, adc_result=3735\n[ 1049.839766]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1049.839772]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1050.080650]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1050.080860]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2020\n[ 1050.082056]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42f, adc_result=1176\n[ 1050.399740]  (0)[471:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 119, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1050.645622]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be4, adc_result=3735\n[ 1050.879740]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1050.879746]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1051.649676]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be3, adc_result=3735\n[ 1051.919737]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1051.919743]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1052.653467]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be1, adc_result=3734\n[ 1052.959737]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1052.959742]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1053.249719] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1053240000000, 1054000000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1053.657312]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be6, adc_result=3735\n[ 1053.999744]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1053.999750]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1053.999800]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1053.999805]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1054.661158]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be4, adc_result=3735\n[ 1055.039738]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1055.039744]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1055.120520]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1055.120749]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2014\n[ 1055.121947]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42f, adc_result=1176\n[ 1055.439728]  (0)[471:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 119, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1055.665107]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be2, adc_result=3734\n[ 1056.079866]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1056.079872]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1056.669038]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be2, adc_result=3734\n[ 1057.119864]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1057.119870]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1057.672431]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be3, adc_result=3735\n[ 1058.159738]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1058.159744]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1058.259716] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1058250000000, 1058960000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1058.399735]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1058.676343]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be6, adc_result=3735\n[ 1059.039752]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1059.039757]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1059.199744]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1059.199750]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1059.680094]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be3, adc_result=3735\n[ 1060.160500]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1060.160724]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2075\n[ 1060.161922]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42f, adc_result=1176\n[ 1060.239735]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1060.239740]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1060.479740]  (0)[471:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 119, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1060.684017]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be2, adc_result=3734\n[ 1061.279736]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1061.279742]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1061.687861]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be3, adc_result=3735\n[ 1062.319737]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1062.319743]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1062.691779]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be5, adc_result=3735\n[ 1063.269719] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1063260000000, 1063910000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1063.359741]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1063.359747]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1063.695645]  (0)[471:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be4, adc_result=3735\n[ 1064.079880]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1064.079886]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1064.079889]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1064.399734]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1064.399740]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1065.201505]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1065.201741]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1776\n[ 1065.202935]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42f, adc_result=1176\n[ 1065.440624]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1065.440645]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1065.520569]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1066.480640]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1066.480665]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1067.300568]  (0)[394:wdtk-0][wdk-c] cpu=0,lbit=0x1,cbit=0x3,1,1,84470350739,0,0,[1067300543851,20000000]\n[ 1067.300577]  (1)[395:wdtk-1][wdk-k] cpu=1,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1067300560467,19999983]\n[ 1067.300594]  (1)[395:wdtk-1][thread:395][RT:1067300587467] 2021-07-12 15:53:53.826401 UTC;android time 2021-07-12 15:53:53.826401\n[ 1067.520643]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1067.520663]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1068.270379] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 510, 44, 0, 0, 0, 0, 0, 0, success counter cpu: 495, 8, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 979, 12, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  1068260000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1068.560641]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1068.560662]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1068.813595]  (0)[473:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be9, adc_result=3736\n[ 1069.120884]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1069.120900]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1069.600600]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1069.600620]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1069.819070]  (0)[473:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bec, adc_result=3736\n[ 1070.241508]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1070.241752]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1782\n[ 1070.242946]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42f, adc_result=1176\n[ 1070.560648]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 294, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1070.640645]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1070.640670]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1070.823954]  (0)[473:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bea, adc_result=3736\n[ 1071.680717]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1071.680734]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1071.829517]  (0)[473:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4beb, adc_result=3736\n[ 1072.720705]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1072.720722]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1073.279720] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 514, 75, 0, 0, 0, 0, 0, 0, success counter cpu: 490, 11, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 983, 18, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1073270000000, 1073820000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1073.759780]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1073.759788]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1073.839546]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be1, adc_result=3734\n[ 1074.159754]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1074.159759]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1074.799764]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1074.799770]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1074.843408]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be0, adc_result=3734\n[ 1075.280489]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1075.280721]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2087\n[ 1075.281923]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42f, adc_result=1176\n[ 1075.599726]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1075.839744]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1075.839753]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1075.847305]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be0, adc_result=3734\n[ 1076.851104]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be2, adc_result=3734\n[ 1076.879740]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1076.879746]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1077.854738]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be0, adc_result=3734\n[ 1077.919734]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1077.919740]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1078.289715] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1078280000000, 1078770000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1078.858634]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be0, adc_result=3734\n[ 1078.959734]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1078.959741]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1079.199776]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1079.199782]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1079.199786]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1079.862316]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdf, adc_result=3734\n[ 1079.999765]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1079.999771]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1080.320481]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1080.320696]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2081\n[ 1080.321889]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42f, adc_result=1176\n[ 1080.639726]  (0)[474:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1080.866123]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be1, adc_result=3734\n[ 1081.039734]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1081.039739]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1081.869768]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be0, adc_result=3734\n[ 1082.079860]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1082.079866]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1082.873507]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be2, adc_result=3734\n[ 1083.119860]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1083.119866]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1083.299714] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1083290000000, 1083720000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1083.877320]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdd, adc_result=3733\n[ 1084.159734]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1084.159740]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1084.239747]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1084.239753]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1084.881101]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdf, adc_result=3734\n[ 1085.199733]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1085.199739]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1085.360481]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1085.360858]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2038\n[ 1085.362050]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x430, adc_result=1177\n[ 1085.679726]  (0)[474:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1085.884922]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be1, adc_result=3734\n[ 1086.239733]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1086.239739]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1086.888760]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be1, adc_result=3734\n[ 1087.279732]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1087.279738]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1087.399734]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[1087399727515,20000000]\n[ 1087.399749]  (1)[395:wdtk-1][thread:395][RT:1087399741976] 2021-07-12 15:54:13.925556 UTC;android time 2021-07-12 15:54:13.925556\n[ 1087.399757]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1087399748822,19999979]\n[ 1087.892374]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdf, adc_result=3734\n[ 1088.309714] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1088300000000, 1088670000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1088.319733]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1088.319738]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1088.479721]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1088.896325]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be1, adc_result=3734\n[ 1089.279748]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1089.279754]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1089.359734]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1089.359739]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1089.900087]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdf, adc_result=3734\n[ 1090.399738]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1090.399744]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1090.400527]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1090.400747]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2075\n[ 1090.401939]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42f, adc_result=1176\n[ 1090.719726]  (0)[474:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1090.903842]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be0, adc_result=3734\n[ 1091.439732]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1091.439738]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1091.907655]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bde, adc_result=3734\n[ 1092.479757]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1092.479762]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1092.911463]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bde, adc_result=3734\n[ 1093.319714] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1093310000000, 1093630000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1093.519753]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1093.519758]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1093.915411]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdf, adc_result=3734\n[ 1094.319758]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1094.319764]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1094.319767]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1094.559732]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1094.559737]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1094.919190]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be0, adc_result=3734\n[ 1095.440565]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1095.440786]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2093\n[ 1095.441978]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x430, adc_result=1177\n[ 1095.599733]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1095.599738]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1095.759725]  (0)[474:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1095.922348]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be0, adc_result=3734\n[ 1096.639733]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1096.639738]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1096.926149]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bde, adc_result=3734\n[ 1097.679732]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1097.679738]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1097.929964]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdf, adc_result=3734\n[ 1097.970057]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[ 1097.972437]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be1, adc_result=3734\n[ 1098.004093]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1098.004322]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2099\n[ 1098.005514]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x430, adc_result=1177\n[ 1098.005735]  (0)[341:battery_thread]lbat 0 0 0 0\n[ 1098.005745]  (0)[341:battery_thread]car[-612,0,0,0,0, cycle_car:-16,ncar:0] c:0 2069 vbat:3734 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[ 1098.006021]  (0)[341:battery_thread]tmp:32 65535 65535 hcar2:65535 lcar2:65535 time:1097 sw_iavg:-2040 -2011 1 nafg_m:0 1 0\n[ 1098.299739]  (0)[341:battery_thread]GM3log-nint-nafg 1097 1098 0 0 0 0 0\n[ 1098.329714] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 500, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1000, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1098320000000, 1098590000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1098.719739]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1098.719745]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1098.933793]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdf, adc_result=3734\n[ 1099.359748]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1099.359754]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1099.759735]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1099.759741]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1099.937592]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdc, adc_result=3733\n[ 1100.480480]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1100.480703]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2087\n[ 1100.481909]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42f, adc_result=1176\n[ 1100.799760]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1100.799773]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1100.799780]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1100.941406]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be0, adc_result=3734\n[ 1101.839731]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1101.839737]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1101.945343]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdf, adc_result=3734\n[ 1102.879732]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1102.879739]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1102.949126]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bde, adc_result=3734\n[ 1103.339714] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1103330000000, 1103540000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1103.919732]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1103.919738]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1103.952431]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdf, adc_result=3734\n[ 1104.399748]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1104.399753]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1104.956235]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be1, adc_result=3734\n[ 1104.959730]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1104.959735]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1105.520487]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1105.520710]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2056\n[ 1105.521901]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x430, adc_result=1177\n[ 1105.839725]  (0)[474:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1105.960087]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be0, adc_result=3734\n[ 1105.999732]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1105.999737]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1106.963927]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be1, adc_result=3734\n[ 1107.039787]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1107.039793]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1107.499766]  (0)[394:wdtk-0][wdk-c] cpu=0,lbit=0x1,cbit=0x3,1,1,84470350739,0,0,[1107499757793,20000000]\n[ 1107.499772]  (1)[395:wdtk-1][wdk-k] cpu=1,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1107499763947,19999994]\n[ 1107.499780]  (0)[394:wdtk-0][thread:394][RT:1107499774101] 2021-07-12 15:54:34.25587 UTC;android time 2021-07-12 15:54:34.25587\n[ 1107.967644]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdc, adc_result=3733\n[ 1108.079858]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1108.079863]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1108.349714] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1108340000000, 1108500000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1108.969658]  (0)[474:python3][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[ 1108.971434]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdf, adc_result=3734\n[ 1109.119861]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1109.119866]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1109.439749]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1109.439755]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1109.439758]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1109.975338]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be0, adc_result=3734\n[ 1110.159731]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1110.159736]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1110.560480]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1110.560718]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2062\n[ 1110.561909]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x430, adc_result=1177\n[ 1110.879724]  (0)[474:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1110.979131]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be1, adc_result=3734\n[ 1111.199733]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1111.199739]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1111.982373]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be1, adc_result=3734\n[ 1112.239732]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1112.239738]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1112.986179]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bde, adc_result=3734\n[ 1113.279733]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1113.279738]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1113.359715] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1113350000000, 1113450000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1113.989832]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bde, adc_result=3734\n[ 1114.319734]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1114.319739]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1114.479751]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1114.479756]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1114.993594]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be0, adc_result=3734\n[ 1115.359760]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1115.359765]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1115.600512]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1115.600850]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2093\n[ 1115.602040]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x430, adc_result=1177\n[ 1115.919724]  (0)[474:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1115.997411]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdb, adc_result=3733\n[ 1116.399733]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1116.399738]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1117.001189]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bde, adc_result=3734\n[ 1117.439734]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1117.439740]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1118.005028]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdd, adc_result=3733\n[ 1118.369714] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1118360000000, 1118410000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1118.479732]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1118.479738]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1118.559734]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1119.008890]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bde, adc_result=3734\n[ 1119.519744]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1119.519750]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1119.519798]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1119.519802]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1120.012408]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdd, adc_result=3733\n[ 1120.559735]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1120.559740]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1120.640483]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1120.640703]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2038\n[ 1120.641894]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x430, adc_result=1177\n[ 1120.959724]  (0)[474:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1121.016204]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdc, adc_result=3733\n[ 1121.599738]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1121.599744]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1122.020053]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdf, adc_result=3734\n[ 1122.639730]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1122.639736]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1123.023772]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdf, adc_result=3734\n[ 1123.379714] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1123370000000, 1124360000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1123.679738]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1123.679743]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1124.027558]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdd, adc_result=3733\n[ 1124.559749]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1124.559754]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1124.559758]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1124.719734]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1124.719739]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1125.031338]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bde, adc_result=3734\n[ 1125.680489]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1125.680714]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2038\n[ 1125.681906]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x430, adc_result=1177\n[ 1125.759732]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1125.759738]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1125.999734]  (0)[474:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1126.035282]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bde, adc_result=3734\n[ 1126.799733]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1126.799738]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1127.039104]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bde, adc_result=3734\n[ 1127.599732]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[1127599723995,20000000]\n[ 1127.599747]  (1)[395:wdtk-1][thread:395][RT:1127599741149] 2021-07-12 15:54:54.125555 UTC;android time 2021-07-12 15:54:54.125555\n[ 1127.599757]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1127599747918,19999976]\n[ 1127.839733]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1127.839738]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1128.042404]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bde, adc_result=3734\n[ 1128.389715] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1128380000000, 1129320000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1128.879732]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1128.879738]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1129.046215]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdf, adc_result=3734\n[ 1129.599748]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1129.599753]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1129.919729]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1129.919735]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1130.050015]  (0)[474:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be0, adc_result=3734\n[ 1130.720480]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1130.720723]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2050\n[ 1130.721914]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x430, adc_result=1177\n[ 1130.959732]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1130.959737]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1131.039685]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1132.000731]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1132.000753]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1133.040704]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1133.040721]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1133.390373] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 27, 0, 0, 0, 0, 0, 0, success counter cpu: 499, 4, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 995, 8, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  1133380000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1134.080892]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1134.080909]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1134.640594]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1134.640615]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1135.120865]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1135.120882]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1135.166604]  (0)[476:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be6, adc_result=3735\n[ 1135.761482]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1135.761739]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1782\n[ 1135.762930]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x430, adc_result=1177\n[ 1136.080793]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1136.160717]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1136.160738]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1136.172230]  (0)[476:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be5, adc_result=3735\n[ 1137.176970]  (0)[476:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be6, adc_result=3735\n[ 1137.200702]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1137.200720]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1138.182453]  (0)[476:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be8, adc_result=3736\n[ 1138.240650]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1138.240668]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1138.400373] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 512, 68, 0, 0, 0, 0, 0, 0, success counter cpu: 492, 11, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 983, 21, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  1138390000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1139.279775]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1139.279793]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1139.679756]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1139.679762]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1139.679766]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1140.192727]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bda, adc_result=3733\n[ 1140.319755]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1140.319761]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1140.800594]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f5, adc_result=2800\n[ 1140.800952]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2069\n[ 1140.802886]  (0)[329:kworker/u16:3]BAT_TEMP_PREV:1177,BAT_TEMP:1177,VBIF28:2798\n[ 1140.802894]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x430, adc_result=1177\n[ 1141.119868]  (0)[477:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 100, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1141.196587]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdf, adc_result=3734\n[ 1141.359741]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1141.359747]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1142.200356]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd9, adc_result=3733\n[ 1142.399731]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1142.399736]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1143.204052]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdc, adc_result=3733\n[ 1143.409714] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 8, 0, 0, 0, 0, 0, 0, success counter cpu: 500, 2, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1000, 4, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1143400000000, 1144150000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1143.439731]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1143.439736]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1144.207805]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bde, adc_result=3734\n[ 1144.479730]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1144.479735]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1144.719772]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1144.719777]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1145.211554]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdd, adc_result=3733\n[ 1145.519756]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1145.519761]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1145.840475]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1145.840686]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2081\n[ 1145.841874]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x430, adc_result=1177\n[ 1146.159722]  (0)[477:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 100, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000013 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1146.215310]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdc, adc_result=3733\n[ 1146.559730]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1146.559735]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1147.219063]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdc, adc_result=3733\n[ 1147.599731]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1147.599736]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1147.699740]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[1147699734120,20000000]\n[ 1147.699754]  (1)[395:wdtk-1][thread:395][RT:1147699747428] 2021-07-12 15:55:14.225561 UTC;android time 2021-07-12 15:55:14.225561\n[ 1147.699761]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1147699753889,19999980]\n[ 1148.222271]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdd, adc_result=3733\n[ 1148.419712] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1148410000000, 1149100000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1148.639730]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1148.639753]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1148.639758]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1149.226064]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdd, adc_result=3733\n[ 1149.679733]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1149.679738]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1149.759751]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1149.759756]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1150.229868]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd7, adc_result=3732\n[ 1150.719727]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1150.719732]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1150.880475]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1150.880694]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2105\n[ 1150.881880]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1151.199723]  (0)[477:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 100, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1151.233563]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bda, adc_result=3733\n[ 1151.759733]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1151.759738]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1152.237313]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdb, adc_result=3733\n[ 1152.799727]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1152.799733]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1153.241189]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdc, adc_result=3733\n[ 1153.429711] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1153420000000, 1154050000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1153.839727]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1153.839732]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1154.245010]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bda, adc_result=3733\n[ 1154.799746]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1154.799751]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1154.799754]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1154.879727]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1154.879732]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1155.248759]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdb, adc_result=3733\n[ 1155.919735]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1155.919740]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1155.920518]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1155.920734]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2038\n[ 1155.921924]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x430, adc_result=1177\n[ 1156.239724]  (0)[477:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 100, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1156.252404]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdb, adc_result=3733\n[ 1156.959728]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1156.959733]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1157.256264]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bda, adc_result=3733\n[ 1157.999725]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1157.999730]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1158.260014]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd7, adc_result=3732\n[ 1158.300042]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[ 1158.302555]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdc, adc_result=3733\n[ 1158.334119]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1158.334338]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2099\n[ 1158.335526]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1158.335748]  (0)[341:battery_thread]lbat 0 0 0 0\n[ 1158.335756]  (0)[341:battery_thread]car[-647,0,0,0,0, cycle_car:-16,ncar:0] c:0 2093 vbat:3733 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[ 1158.336037]  (0)[341:battery_thread]tmp:31 65535 65535 hcar2:65535 lcar2:65535 time:1158 sw_iavg:-2100 -2014 1 nafg_m:0 1 0\n[ 1158.439711] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 498, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 996, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1158430000000, 1159010000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1158.629753]  (0)[341:battery_thread]GM3log-nint-nafg 1158 1158 0 0 0 0 0\n[ 1159.039754]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1159.039759]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1159.263797]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bda, adc_result=3733\n[ 1159.839750]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1159.839755]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1160.079858]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1160.079863]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1160.267663]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bda, adc_result=3733\n[ 1160.960473]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1160.960682]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2038\n[ 1160.961868]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x430, adc_result=1177\n[ 1161.119855]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1161.119860]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1161.271430]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdc, adc_result=3733\n[ 1161.279725]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 100, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1162.159727]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1162.159736]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1162.275178]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bda, adc_result=3733\n[ 1163.199728]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1163.199733]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1163.278937]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdc, adc_result=3733\n[ 1163.449710] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1163440000000, 1163960000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1164.239726]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1164.239732]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1164.282266]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd9, adc_result=3733\n[ 1164.879744]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1164.879749]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1165.279730]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1165.279736]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1165.286093]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bda, adc_result=3733\n[ 1166.000489]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1166.000719]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2056\n[ 1166.001916]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1166.289886]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd8, adc_result=3732\n[ 1166.319759]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 100, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1166.319773]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1166.319780]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1167.293587]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd9, adc_result=3733\n[ 1167.359730]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1167.359735]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1167.799739]  (0)[394:wdtk-0][wdk-c] cpu=0,lbit=0x1,cbit=0x3,1,1,84470350739,0,0,[1167799731091,20000000]\n[ 1167.799745]  (1)[395:wdtk-1][wdk-k] cpu=1,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1167799736706,19999994]\n[ 1167.799753]  (0)[394:wdtk-0][thread:394][RT:1167799746552] 2021-07-12 15:55:34.325560 UTC;android time 2021-07-12 15:55:34.325560\n[ 1168.297342]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdb, adc_result=3733\n[ 1168.399730]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1168.399735]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1168.459711] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1168450000000, 1168920000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1169.301105]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdb, adc_result=3733\n[ 1169.439731]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1169.439736]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1169.919747]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1169.919752]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1169.919755]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1170.304922]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd8, adc_result=3732\n[ 1170.479730]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1170.479735]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1171.040474]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1171.040700]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2081\n[ 1171.041887]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1171.308690]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd9, adc_result=3733\n[ 1171.359724]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 100, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1171.519730]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1171.519737]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1172.312262]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdb, adc_result=3733\n[ 1172.559728]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1172.559733]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1173.315895]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdb, adc_result=3733\n[ 1173.469712] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1173460000000, 1173880000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1173.599730]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1173.599735]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1174.319655]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bda, adc_result=3733\n[ 1174.639733]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1174.639738]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1174.959744]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1174.959749]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1175.323419]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bda, adc_result=3733\n[ 1175.679729]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1175.679734]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1176.080598]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1176.080831]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2056\n[ 1176.082017]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1176.327157]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdd, adc_result=3733\n[ 1176.399722]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 100, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1176.719728]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1176.719736]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1177.330835]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bda, adc_result=3733\n[ 1177.759728]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1177.759733]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1178.334700]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd8, adc_result=3732\n[ 1178.479710] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1178470000000, 1178840000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1178.719732]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1178.799742]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1178.799748]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1179.338569]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdd, adc_result=3733\n[ 1179.839730]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1179.839735]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1179.999745]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1179.999750]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1180.342324]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdc, adc_result=3733\n[ 1180.879752]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1180.879757]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1181.120636]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1181.120939]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2087\n[ 1181.122125]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1181.346078]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdc, adc_result=3733\n[ 1181.439723]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 100, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000013 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1181.919734]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1181.919741]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1182.349893]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd8, adc_result=3732\n[ 1182.959729]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1182.959734]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1183.353584]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdd, adc_result=3733\n[ 1183.489710] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1183480000000, 1183790000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1183.999732]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1183.999736]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1184.357339]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdb, adc_result=3733\n[ 1185.039733]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1185.039738]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1185.039787]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1185.039791]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1185.039793]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1185.361115]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdc, adc_result=3733\n[ 1186.079837]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1186.079842]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1186.160473]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1186.160691]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2130\n[ 1186.161878]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x430, adc_result=1177\n[ 1186.364950]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd8, adc_result=3732\n[ 1186.479725]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 100, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1187.119853]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1187.119860]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1187.368722]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bda, adc_result=3733\n[ 1187.899727]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[1187899720062,20000000]\n[ 1187.899740]  (1)[395:wdtk-1][thread:395][RT:1187899734216] 2021-07-12 15:55:54.425548 UTC;android time 2021-07-12 15:55:54.425548\n[ 1187.899749]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1187899740754,19999979]\n[ 1188.159729]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1188.159734]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1188.372297]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdb, adc_result=3733\n[ 1188.499710] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1188490000000, 1188750000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1189.199727]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1189.199732]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1189.376045]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdd, adc_result=3733\n[ 1190.079869]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1190.079874]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1190.239727]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1190.239732]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1190.379959]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd9, adc_result=3733\n[ 1191.200485]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1191.200704]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2081\n[ 1191.201889]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1191.279726]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1191.279731]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1191.383645]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdb, adc_result=3733\n[ 1191.519733]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 100, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1192.319728]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1192.319736]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1192.387400]  (0)[477:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdb, adc_result=3733\n[ 1193.360699]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1193.360716]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1193.500358] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 16, 0, 0, 0, 0, 0, 0, success counter cpu: 500, 3, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1000, 2, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  1193490000000, 1193490000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1194.400697]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1194.400713]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1195.120854]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1195.120870]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1195.440693]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1195.440710]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1196.241506]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1196.241751]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -1800\n[ 1196.242937]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1196.480707]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1196.480724]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1196.560488]  (0)[479:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1197.504074]  (0)[479:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be4, adc_result=3735\n[ 1197.520597]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1197.520610]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1198.505966] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 42, 0, 0, 0, 0, 0, 0, success counter cpu: 496, 5, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 969, 10, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  1198495605374, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1198.509585]  (0)[479:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be4, adc_result=3735\n[ 1198.560571]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1198.560585]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1199.514011]  (0)[479:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be3, adc_result=3735\n[ 1199.600585]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1199.600598]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1200.160618]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1200.160637]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1200.160641]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1200.519506]  (0)[479:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be4, adc_result=3735\n[ 1200.640698]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1200.640715]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1201.281393]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1201.281638]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1782\n[ 1201.282824]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1201.599732]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 296, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1201.679775]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1201.679789]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1202.528974]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd9, adc_result=3733\n[ 1202.719768]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1202.719775]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1203.509710] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 42, 0, 0, 0, 0, 0, 0, success counter cpu: 495, 7, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 988, 15, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1203500000000, 1203520000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1203.532390]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd8, adc_result=3732\n[ 1203.759731]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1203.759736]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1204.536127]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd6, adc_result=3732\n[ 1204.799724]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1204.799729]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1205.199744]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1205.199751]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1205.539865]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd5, adc_result=3732\n[ 1205.839725]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1205.839730]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1206.320468]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1206.320698]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2093\n[ 1206.321880]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1206.543503]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd8, adc_result=3732\n[ 1206.639721]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 296, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1206.879724]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1206.879731]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1207.547230]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd1, adc_result=3731\n[ 1207.919727]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1207.919731]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1207.999733]  (0)[394:wdtk-0][wdk-c] cpu=0,lbit=0x1,cbit=0x3,1,1,84470350739,0,0,[1207999726956,20000000]\n[ 1207.999740]  (1)[395:wdtk-1][wdk-k] cpu=1,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1207999732418,19999995]\n[ 1207.999746]  (0)[394:wdtk-0][thread:394][RT:1207999740725] 2021-07-12 15:56:14.525554 UTC;android time 2021-07-12 15:56:14.525554\n[ 1208.519710] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1208510000000, 1209470000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1208.550951]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd6, adc_result=3732\n[ 1208.799712]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1208.959731]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1208.959736]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1209.554682]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd5, adc_result=3732\n[ 1209.999723]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1209.999727]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1210.239767]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1210.239772]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1210.558399]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd6, adc_result=3732\n[ 1211.039754]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1211.039758]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1211.360568]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1211.360797]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2154\n[ 1211.362083]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1211.562118]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd6, adc_result=3732\n[ 1211.679720]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 296, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1212.079849]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1212.079856]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1212.565845]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd2, adc_result=3731\n[ 1213.119850]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1213.119854]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1213.529711] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1213520000000, 1214420000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1213.569538]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd5, adc_result=3732\n[ 1214.159721]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1214.159726]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1214.573228]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd8, adc_result=3732\n[ 1215.199724]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1215.199729]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1215.279740]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1215.279745]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1215.279749]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1215.576832]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd4, adc_result=3732\n[ 1216.239723]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1216.239729]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1216.400467]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1216.400682]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2136\n[ 1216.401864]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1216.580567]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd8, adc_result=3732\n[ 1216.719719]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 296, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1217.279727]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1217.279734]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1217.584282]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd6, adc_result=3732\n[ 1218.319725]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1218.319729]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1218.539709] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1218530000000, 1219370000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1218.587997]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd3, adc_result=3731\n[ 1218.630061]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[ 1218.632436]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd7, adc_result=3732\n[ 1218.663881]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1218.664113]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2124\n[ 1218.665292]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1218.665519]  (0)[341:battery_thread]lbat 0 0 0 0\n[ 1218.665528]  (0)[341:battery_thread]car[-681,0,0,0,0, cycle_car:-16,ncar:0] c:0 2111 vbat:3732 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[ 1218.665870]  (0)[341:battery_thread]tmp:31 65535 65535 hcar2:65535 lcar2:65535 time:1218 sw_iavg:-2040 -2053 1 nafg_m:0 1 0\n[ 1218.666626]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f5, adc_result=2800\n[ 1218.959732]  (0)[341:battery_thread]GM3log-nint-nafg 1218 1218 0 0 0 0 0\n[ 1219.359730]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1219.359735]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1219.591785]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd3, adc_result=3731\n[ 1220.319821]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1220.319827]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1220.399727]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1220.399732]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1220.595617]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd7, adc_result=3732\n[ 1221.439729]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1221.439733]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1221.440613]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1221.440844]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2142\n[ 1221.442120]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x430, adc_result=1177\n[ 1221.599350]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd6, adc_result=3732\n[ 1221.759719]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 296, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1222.479724]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1222.479732]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1222.602250]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd5, adc_result=3732\n[ 1223.519730]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1223.519736]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1223.549708] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 499, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 998, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1223540000000, 1224320000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1223.605940]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd7, adc_result=3732\n[ 1224.559740]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1224.559745]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1224.609669]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd6, adc_result=3732\n[ 1225.359742]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1225.359747]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1225.599723]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1225.599727]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1225.613418]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd2, adc_result=3731\n[ 1226.480470]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1226.480701]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2148\n[ 1226.481883]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1226.617149]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd7, adc_result=3732\n[ 1226.639730]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1226.639734]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1226.799722]  (0)[480:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 296, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1227.620865]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcf, adc_result=3731\n[ 1227.679725]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1227.679729]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1228.099730]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[1228099723004,20000000]\n[ 1228.099736]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1228099727850,19999995]\n[ 1228.099743]  (1)[395:wdtk-1][thread:395][RT:1228099737081] 2021-07-12 15:56:34.625551 UTC;android time 2021-07-12 15:56:34.625551\n[ 1228.559709] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1228550000000, 1229270000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1228.624674]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd2, adc_result=3731\n[ 1228.719724]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1228.719728]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1229.628374]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd3, adc_result=3731\n[ 1229.759723]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1229.759728]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1230.399742]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1230.399746]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1230.399750]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1230.632095]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd3, adc_result=3731\n[ 1230.799722]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1230.799727]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1231.520465]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1231.520677]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2099\n[ 1231.521858]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1231.635684]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd4, adc_result=3732\n[ 1231.839757]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 296, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1231.839785]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1231.839791]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1231.849701]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[ 1232.639286]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd4, adc_result=3732\n[ 1232.879724]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1232.879729]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1233.569710] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1233560000000, 1234230000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1233.642278]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd4, adc_result=3732\n[ 1233.919723]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1233.919728]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1234.645979]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd3, adc_result=3731\n[ 1234.959722]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1234.959727]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1235.439745]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1235.439750]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1235.649668]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd4, adc_result=3732\n[ 1235.999723]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1235.999728]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1236.560467]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1236.560686]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2124\n[ 1236.561866]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1236.653415]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd0, adc_result=3731\n[ 1236.879719]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 296, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1237.039725]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1237.039732]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1237.657121]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd4, adc_result=3732\n[ 1238.079847]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1238.079852]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1238.579708] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1238570000000, 1239180000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1238.660884]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd1, adc_result=3731\n[ 1238.879729]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1239.119853]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1239.119858]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1239.664640]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd4, adc_result=3732\n[ 1240.159724]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1240.159729]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1240.479741]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1240.479745]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1240.668351]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd5, adc_result=3732\n[ 1241.199726]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1241.199731]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1241.600466]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1241.600695]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2142\n[ 1241.601876]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1241.672121]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd4, adc_result=3732\n[ 1241.919719]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 296, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1242.239739]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1242.239746]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1242.675831]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd1, adc_result=3731\n[ 1243.279725]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1243.279731]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1243.589709] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1243580000000, 1244140000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1243.679520]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd5, adc_result=3732\n[ 1244.319725]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1244.319730]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1244.682238]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd2, adc_result=3731\n[ 1245.359723]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1245.359728]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1245.519741]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1245.519745]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1245.519748]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1245.685932]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd2, adc_result=3731\n[ 1246.399747]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1246.399752]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1246.640493]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1246.640703]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2099\n[ 1246.641884]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1246.689782]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd3, adc_result=3731\n[ 1246.959718]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 296, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1247.439726]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1247.439733]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1247.693439]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd5, adc_result=3732\n[ 1248.199735]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[1248199728513,20000000]\n[ 1248.199742]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1248199733513,19999994]\n[ 1248.199750]  (1)[395:wdtk-1][thread:395][RT:1248199743667] 2021-07-12 15:56:54.725556 UTC;android time 2021-07-12 15:56:54.725556\n[ 1248.479726]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1248.479730]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1248.599707] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1248590000000, 1249100000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1248.697163]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd3, adc_result=3731\n[ 1249.519722]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1249.519727]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1249.700850]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd3, adc_result=3731\n[ 1250.559731]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1250.559736]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1250.559782]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1250.559785]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1250.704545]  (0)[480:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd4, adc_result=3732\n[ 1251.600687]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1251.600704]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1251.681487]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1251.681722]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1806\n[ 1251.682907]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1252.000543]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 299, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1252.640692]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1252.640712]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1253.600351] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 510, 43, 0, 0, 0, 0, 0, 0, success counter cpu: 495, 7, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 984, 12, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  1253590000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1253.680699]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1253.680717]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1254.720679]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1254.720695]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1255.600595]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1255.600618]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1255.760687]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1255.760703]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1255.821864]  (0)[483:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4be0, adc_result=3734\n[ 1256.721379]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1256.721609]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1818\n[ 1256.722790]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1256.800732]  (1)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1256.800749]  (1)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1256.826317]  (0)[483:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdd, adc_result=3733\n[ 1257.040544]  (0)[483:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 295, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1257.831781]  (0)[483:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdc, adc_result=3733\n[ 1257.840513]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1257.840529]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1258.610354] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 515, 57, 0, 0, 0, 0, 0, 0, success counter cpu: 493, 11, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 981, 23, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  1258600000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1258.836309]  (0)[483:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd8, adc_result=3732\n[ 1258.880483]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1258.880498]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1259.919770]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1259.919788]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1260.639764]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1260.639770]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1260.639774]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1260.846860]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd0, adc_result=3731\n[ 1260.959745]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1260.959750]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1261.760482]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1261.760701]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2197\n[ 1261.761879]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1261.850690]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd0, adc_result=3731\n[ 1261.999730]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1261.999735]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1262.079852]  (0)[484:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 225, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1262.854405]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd0, adc_result=3731\n[ 1263.039720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1263.039725]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1263.619708] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 15, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 3, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 5, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1263610000000, 1264040000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1263.858094]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1264.079844]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1264.079848]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1264.861772]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcf, adc_result=3731\n[ 1265.119851]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1265.119856]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1265.679739]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1265.679743]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1265.865447]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1266.159719]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1266.159724]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1266.800464]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1266.800676]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2191\n[ 1266.801855]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1266.869143]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd1, adc_result=3731\n[ 1267.119841]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 225, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1267.199722]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1267.199728]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1267.872228]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1268.239736]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1268.239740]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1268.299732]  (0)[394:wdtk-0][wdk-c] cpu=0,lbit=0x1,cbit=0x3,1,1,84470350739,0,0,[1268299725869,20000000]\n[ 1268.299738]  (1)[395:wdtk-1][wdk-k] cpu=1,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1268299731023,19999995]\n[ 1268.299744]  (0)[394:wdtk-0][thread:394][RT:1268299739023] 2021-07-12 15:57:14.825553 UTC;android time 2021-07-12 15:57:14.825553\n[ 1268.629708] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1268620000000, 1269000000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1268.876006]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd1, adc_result=3731\n[ 1268.959708]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1269.279727]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1269.279731]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1269.879652]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd1, adc_result=3731\n[ 1270.319728]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1270.319732]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1270.719737]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1270.719742]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1270.883273]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd0, adc_result=3731\n[ 1271.359720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1271.359725]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1271.840463]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1271.840684]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2185\n[ 1271.841862]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1271.886967]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd0, adc_result=3731\n[ 1272.159717]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 225, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1272.399722]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1272.399728]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1272.890730]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd1, adc_result=3731\n[ 1273.439724]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1273.439729]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1273.639707] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1273630000000, 1273960000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1273.894481]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcf, adc_result=3731\n[ 1274.479721]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1274.479726]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1274.898227]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcf, adc_result=3731\n[ 1275.519719]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1275.519724]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1275.759760]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1275.759764]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1275.759767]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1275.901924]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bca, adc_result=3730\n[ 1276.559749]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1276.559754]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1276.880473]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1276.880788]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2185\n[ 1276.881966]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1276.905609]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1277.199717]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 225, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1277.599722]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1277.599729]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1277.909275]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd0, adc_result=3731\n[ 1278.639721]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1278.639726]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1278.649707] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1278640000000, 1278910000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1278.912200]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1278.959984]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[ 1278.962387]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1278.993783]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f0, adc_result=2794\n[ 1278.994006]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2172\n[ 1278.995183]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1278.995414]  (0)[341:battery_thread]lbat 0 0 0 0\n[ 1278.995422]  (0)[341:battery_thread]car[-717,0,0,0,0, cycle_car:-16,ncar:0] c:0 2166 vbat:3731 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[ 1278.995702]  (0)[341:battery_thread]tmp:31 65535 65535 hcar2:65535 lcar2:65535 time:1278 sw_iavg:-2160 -2090 1 nafg_m:0 1 0\n[ 1279.289745]  (0)[341:battery_thread]GM3log-nint-nafg 1278 1278 0 0 0 0 0\n[ 1279.679725]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1279.679729]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1279.915939]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd0, adc_result=3731\n[ 1280.719721]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1280.719725]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1280.799737]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1280.799742]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1280.919622]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1281.759731]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1281.759736]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1281.920344]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1281.920770]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2142\n[ 1281.921963]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1281.924256]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcf, adc_result=3731\n[ 1282.239716]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 225, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1282.799721]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1282.799728]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1282.928108]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1283.659707] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 499, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 998, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1283650000000, 1283870000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1283.839720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1283.839724]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1283.931831]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcb, adc_result=3730\n[ 1284.879718]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1284.879723]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1284.935487]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcf, adc_result=3731\n[ 1285.839737]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1285.839742]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1285.919719]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1285.919723]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1285.939192]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd0, adc_result=3731\n[ 1286.942230]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1286.959732]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1286.959736]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1286.960509]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1286.960846]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2148\n[ 1286.962025]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1287.279716]  (0)[484:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 225, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1287.945893]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1287.999720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1287.999725]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1288.399721]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[1288399714840,20000000]\n[ 1288.399734]  (1)[395:wdtk-1][thread:395][RT:1288399728994] 2021-07-12 15:57:34.925542 UTC;android time 2021-07-12 15:57:34.925542\n[ 1288.399757]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1288399750225,19999964]\n[ 1288.669707] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1288660000000, 1288830000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1288.949588]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd0, adc_result=3731\n[ 1289.039720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1289.039724]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1289.953130]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcf, adc_result=3731\n[ 1290.079858]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1290.079863]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1290.879737]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1290.879741]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1290.879744]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1290.956894]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcf, adc_result=3731\n[ 1291.119843]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1291.119847]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1291.960693]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd0, adc_result=3731\n[ 1292.000535]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1292.000749]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2209\n[ 1292.001927]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1292.159722]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1292.159727]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1292.319716]  (0)[484:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 225, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1292.964357]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd0, adc_result=3731\n[ 1293.199719]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1293.199724]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1293.679707] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1293670000000, 1293780000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1293.968019]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd0, adc_result=3731\n[ 1294.239721]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1294.239726]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1294.971721]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1295.279720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1295.279725]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1295.919736]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1295.919741]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1295.975409]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1296.319721]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1296.319726]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1296.979127]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcf, adc_result=3731\n[ 1297.040460]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1297.040669]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2209\n[ 1297.041852]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1297.359745]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 225, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1297.359756]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1297.359762]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1297.982224]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd2, adc_result=3731\n[ 1298.399745]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1298.399749]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1298.689705] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1298680000000, 1298740000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1298.986005]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1299.039724]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1299.439724]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1299.439728]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1299.989652]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcf, adc_result=3731\n[ 1300.479722]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1300.479727]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1300.959746]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1300.959751]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1300.993286]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1301.519720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1301.519725]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1301.996951]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1302.080585]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1302.080798]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2148\n[ 1302.081974]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1302.399716]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 225, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1302.559722]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1302.559729]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1303.000648]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd0, adc_result=3731\n[ 1303.599720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1303.599726]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1303.699706] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1303690000000, 1304680000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1304.004410]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcf, adc_result=3731\n[ 1304.639721]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1304.639726]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1305.008087]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1305.679721]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1305.679725]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1305.999736]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1305.999740]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1305.999743]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1306.011795]  (0)[484:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1306.720700]  (1)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1306.720717]  (1)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1307.120607]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1307.120838]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -1837\n[ 1307.122016]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1307.440554]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 299, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1307.760674]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1307.760694]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1308.500576]  (0)[394:wdtk-0][wdk-c] cpu=0,lbit=0x1,cbit=0x3,1,1,84470350739,0,0,[1308500563503,20000000]\n[ 1308.500587]  (1)[395:wdtk-1][wdk-k] cpu=1,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1308500580657,19999983]\n[ 1308.500601]  (1)[395:wdtk-1][thread:395][RT:1308500595811] 2021-07-12 15:57:55.26409 UTC;android time 2021-07-12 15:57:55.26409\n[ 1308.700355] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 512, 44, 0, 0, 0, 0, 0, 0, success counter cpu: 495, 8, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 987, 16, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  1308690000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1308.800679]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1308.800695]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1309.840690]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1309.840706]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1310.880585]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1310.880601]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1311.040675]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1311.040691]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1311.126387]  (0)[486:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdc, adc_result=3733\n[ 1311.920737]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1311.920754]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1312.131989]  (0)[486:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdf, adc_result=3734\n[ 1312.161188]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1312.161429]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1818\n[ 1312.162608]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1312.480552]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 296, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1312.960692]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1312.960713]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1313.136492]  (0)[486:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdf, adc_result=3734\n[ 1313.710352] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 514, 57, 0, 0, 0, 0, 0, 0, success counter cpu: 497, 9, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 988, 18, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  1313700000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1314.000644]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1314.000663]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1314.141894]  (0)[486:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bda, adc_result=3733\n[ 1315.040593]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1315.040613]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1316.079910]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1316.079927]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1316.079978]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1316.079982]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1316.151552]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1317.119885]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1317.119891]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1317.155319]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcf, adc_result=3731\n[ 1317.200462]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1317.200671]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2172\n[ 1317.201847]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1317.519718]  (0)[487:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 322, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1318.158995]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1318.159673]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1318.159677]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1318.719707] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 18, 0, 0, 0, 0, 0, 0, success counter cpu: 500, 3, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1001, 4, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1318710000000, 1319120000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1319.162199]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1319.199729]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1319.199734]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1320.165888]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1320.239723]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1320.239728]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1321.119860]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1321.119865]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1321.119869]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1321.169550]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1321.279722]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1321.279726]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1322.173221]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1322.240461]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1322.240712]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2166\n[ 1322.241889]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1322.319721]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1322.319726]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1322.559726]  (0)[487:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 322, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000013 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1323.176987]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1323.359721]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1323.359726]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1323.729706] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1323720000000, 1324070000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1324.180738]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1324.399722]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1324.399726]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1325.184474]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1325.439721]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1325.439726]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1326.159737]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1326.159743]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1326.188133]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1326.479722]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1326.479726]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1327.191819]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1327.280459]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1327.280690]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2209\n[ 1327.281865]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1327.519722]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1327.519726]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1327.599714]  (0)[487:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 322, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1328.195494]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1328.559724]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1328.559728]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1328.599722]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[1328599717013,20000000]\n[ 1328.599734]  (1)[395:wdtk-1][thread:395][RT:1328599728782] 2021-07-12 15:58:15.125542 UTC;android time 2021-07-12 15:58:15.125542\n[ 1328.599742]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1328599734628,19999982]\n[ 1328.739705] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 509, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1328730000000, 1329020000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1329.119707]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1329.199334]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1329.599733]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1329.599737]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1330.202206]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1330.639725]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1330.639730]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1331.199738]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1331.199743]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1331.205867]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1331.679729]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1331.679734]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1332.209526]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1332.320479]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1332.320699]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2178\n[ 1332.321938]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1332.639716]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 322, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1332.719726]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1332.719733]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1333.212244]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcb, adc_result=3730\n[ 1333.749707] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1333740000000, 1333970000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1333.759740]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1333.759744]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1334.215969]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1334.799718]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1334.799723]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1335.219645]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1335.839719]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1335.839723]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1336.223278]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1336.239742]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1336.239747]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1336.239750]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1336.879727]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1336.879731]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1337.226962]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bca, adc_result=3730\n[ 1337.360472]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1337.360707]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2252\n[ 1337.361883]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1337.679715]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 322, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1337.919724]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1337.919731]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1338.230653]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc7, adc_result=3729\n[ 1338.759705] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1338750000000, 1339010000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1338.959727]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1338.959731]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1339.234431]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bca, adc_result=3730\n[ 1339.290125]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[ 1339.292526]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bca, adc_result=3730\n[ 1339.323876]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1339.324153]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2301\n[ 1339.325338]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1339.325555]  (0)[341:battery_thread]lbat 0 0 0 0\n[ 1339.325563]  (0)[341:battery_thread]car[-753,0,0,0,0, cycle_car:-16,ncar:0] c:0 2276 vbat:3730 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[ 1339.325844]  (0)[341:battery_thread]tmp:31 65535 65535 hcar2:65535 lcar2:65535 time:1339 sw_iavg:-2160 -2099 1 nafg_m:0 1 0\n[ 1339.619727]  (0)[341:battery_thread]GM3log-nint-nafg 1339 1339 0 0 0 0 0\n[ 1339.999729]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1339.999734]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1340.238143]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1341.039723]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1341.039728]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1341.241819]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1341.279769]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1341.279773]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1342.079873]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1342.079878]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1342.245477]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1342.400461]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1342.400685]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2172\n[ 1342.401860]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1342.719723]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 322, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1343.119842]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1343.119848]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1343.249146]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1343.769706] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1343760000000, 1343970000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1344.159720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1344.159725]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1344.252227]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcb, adc_result=3730\n[ 1345.199720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1345.199724]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1345.255889]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc9, adc_result=3730\n[ 1346.239719]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1346.239724]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1346.259547]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1346.319738]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1346.319742]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1347.262285]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1347.279723]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1347.279728]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1347.440458]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1347.440692]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2203\n[ 1347.441869]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1347.759716]  (0)[487:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 322, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1348.265957]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1348.319722]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1348.319726]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1348.699730]  (0)[394:wdtk-0][wdk-c] cpu=0,lbit=0x1,cbit=0x3,1,1,84470350739,0,0,[1348699724445,20000000]\n[ 1348.699736]  (1)[395:wdtk-1][wdk-k] cpu=1,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1348699729138,19999995]\n[ 1348.699742]  (0)[394:wdtk-0][thread:394][RT:1348699737061] 2021-07-12 15:58:35.225551 UTC;android time 2021-07-12 15:58:35.225551\n[ 1348.779706] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1348770000000, 1348920000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1349.269623]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1349.359723]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1349.359727]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1350.273251]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcf, adc_result=3731\n[ 1350.399721]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1350.399726]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1351.276923]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcf, adc_result=3731\n[ 1351.359738]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1351.359742]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1351.359745]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1351.439720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1351.439724]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1352.280574]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcb, adc_result=3730\n[ 1352.479726]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1352.479731]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1352.480502]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1352.480772]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2209\n[ 1352.482022]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1352.799738]  (0)[487:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 322, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1353.284368]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1353.519723]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1353.519728]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1353.789706] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1353780000000, 1353880000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1354.288024]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcb, adc_result=3730\n[ 1354.559724]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1354.559729]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1354.729698]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[ 1355.291723]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bca, adc_result=3730\n[ 1355.599737]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1355.599742]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1356.295372]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc7, adc_result=3729\n[ 1356.399738]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1356.399742]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1356.639718]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1356.639723]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1357.298910]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcb, adc_result=3730\n[ 1357.520462]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1357.520678]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2166\n[ 1357.521853]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1357.679721]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1357.679725]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1357.839723]  (0)[487:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 322, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1358.302212]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcb, adc_result=3730\n[ 1358.719720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1358.719725]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1358.799705] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1358790000000, 1358840000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1359.199732]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1359.306034]  (0)[487:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bca, adc_result=3730\n[ 1359.759735]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1359.759740]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1360.800683]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1360.800699]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1361.440665]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1361.440682]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1361.840666]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1361.840683]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1362.561457]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1362.561695]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1763\n[ 1362.562873]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1362.880657]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 299, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1362.880720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1362.880731]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1363.800347] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 512, 53, 0, 0, 0, 0, 0, 0, success counter cpu: 494, 8, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 983, 15, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  1363790000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1363.920669]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1363.920686]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1364.422978]  (0)[489:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bda, adc_result=3733\n[ 1364.960684]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1364.960700]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1365.428332]  (0)[489:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd8, adc_result=3732\n[ 1366.000668]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1366.000685]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1366.433733]  (0)[489:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bda, adc_result=3733\n[ 1366.480480]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1366.480492]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1366.480495]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1367.040670]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1367.040686]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1367.439076]  (0)[489:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdb, adc_result=3733\n[ 1367.601391]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1367.601642]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1831\n[ 1367.602819]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1367.920461]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 296, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1368.080818]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1368.080838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1368.799723]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[1368799713416,20000000]\n[ 1368.799738]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1368799730032,19999983]\n[ 1368.799746]  (1)[395:wdtk-1][thread:395][RT:1368799741416] 2021-07-12 15:58:55.325554 UTC;android time 2021-07-12 15:58:55.325554\n[ 1368.809706] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 513, 64, 0, 0, 0, 0, 0, 0, success counter cpu: 496, 11, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 989, 19, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1368800000000, 1369450000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1369.119901]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1369.119907]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1369.448613]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1370.159744]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1370.159750]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1370.452257]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1371.199727]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1371.199732]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1371.456005]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1371.519737]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1371.519742]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1372.239718]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1372.239723]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1372.459650]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1372.640458]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1372.640794]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2276\n[ 1372.642708]  (0)[451:kworker/u16:0]BAT_TEMP_PREV:1179,BAT_TEMP:1178,VBIF28:2799\n[ 1372.642714]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1372.959716]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1373.279726]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1373.279732]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1373.463239]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc7, adc_result=3729\n[ 1373.819705] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1373810000000, 1374400000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1374.319718]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1374.319723]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1374.466874]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1375.359719]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1375.359724]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1375.470501]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1376.399717]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1376.399722]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1376.474131]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc9, adc_result=3730\n[ 1376.559735]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1376.559739]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1377.439738]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1377.439742]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1377.477770]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc7, adc_result=3729\n[ 1377.680483]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1377.680711]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2215\n[ 1377.681885]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1377.999713]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1378.479674]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1378.479681]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1378.481511]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1378.829704] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1378820000000, 1379360000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1379.485157]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc7, adc_result=3729\n[ 1379.519725]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1379.519730]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1380.488782]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc9, adc_result=3730\n[ 1380.559719]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1380.559723]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1381.492267]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1381.599725]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1381.599729]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1381.599775]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1381.599779]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1381.599781]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1382.495923]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1382.639721]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1382.639725]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1382.720456]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1382.720761]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2252\n[ 1382.721933]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1383.039712]  (0)[490:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000013 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1383.499590]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1383.679722]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1383.679726]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1383.839705] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1383830000000, 1384320000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1384.503189]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1384.719718]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1384.719722]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1385.506824]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1385.759718]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1385.759722]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1386.510481]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1386.639737]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1386.639741]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1386.799721]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1386.799725]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1387.514185]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1387.760456]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1387.760668]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2197\n[ 1387.761842]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1387.839717]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1387.839721]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1388.079843]  (0)[490:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1388.517872]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1388.849704] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1388840000000, 1389280000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1388.879719]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1388.879723]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1388.899728]  (0)[394:wdtk-0][wdk-c] cpu=0,lbit=0x1,cbit=0x3,1,1,84470350739,0,0,[1388899722080,20000000]\n[ 1388.899733]  (1)[395:wdtk-1][wdk-k] cpu=1,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1388899727080,19999994]\n[ 1388.899740]  (0)[394:wdtk-0][thread:394][RT:1388899734695] 2021-07-12 15:59:15.425548 UTC;android time 2021-07-12 15:59:15.425548\n[ 1389.279704]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1389.521592]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1389.919729]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1389.919734]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1390.525226]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1390.959720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1390.959724]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1391.528886]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1391.679736]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1391.679740]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1391.999723]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1391.999727]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1392.532212]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc7, adc_result=3729\n[ 1392.800455]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1392.800770]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2209\n[ 1392.801943]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1393.039718]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1393.039722]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1393.119845]  (0)[490:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1393.535887]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1393.859704] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1393850000000, 1394230000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1394.079839]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1394.079843]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1394.539609]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc7, adc_result=3729\n[ 1395.119836]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1395.119840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1395.543302]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1396.159718]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1396.159722]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1396.546920]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1396.719736]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1396.719740]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1396.719743]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1397.199719]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1397.199723]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1397.550579]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1397.840457]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1397.840687]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2270\n[ 1397.841860]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1398.159713]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1398.239722]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1398.239728]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1398.554220]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1398.869702] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1398860000000, 1399190000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1399.279736]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1399.279740]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1399.557840]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1399.620094]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[ 1399.622485]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1399.653902]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1399.654131]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2307\n[ 1399.655301]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1399.655509]  (0)[341:battery_thread]lbat 0 0 0 0\n[ 1399.655517]  (0)[341:battery_thread]car[-790,0,0,0,0, cycle_car:-16,ncar:0] c:0 2252 vbat:3729 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[ 1399.655796]  (0)[341:battery_thread]tmp:31 65535 65535 hcar2:65535 lcar2:65535 time:1399 sw_iavg:-2220 -2178 1 nafg_m:0 1 0\n[ 1399.949725]  (0)[341:battery_thread]GM3log-nint-nafg 1399 1399 0 0 0 0 0\n[ 1400.319725]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1400.319729]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1400.561696]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc3, adc_result=3728\n[ 1401.359721]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1401.359726]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1401.565355]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1401.759745]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1401.759749]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1402.399720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1402.399725]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1402.568982]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1402.880456]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1402.880736]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2301\n[ 1402.881908]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1403.199713]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1403.439718]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1403.439725]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1403.572228]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc3, adc_result=3728\n[ 1403.879704] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 498, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 996, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1403870000000, 1404140000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1404.479718]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1404.479722]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1404.575911]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc2, adc_result=3728\n[ 1405.519716]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1405.519721]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1405.579546]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1406.559718]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1406.559723]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1406.583174]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1406.799758]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1406.799763]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1407.586808]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1407.599751]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1407.599755]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1407.920456]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f5, adc_result=2800\n[ 1407.920671]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2239\n[ 1407.921844]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1408.239713]  (0)[490:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1408.590477]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc2, adc_result=3728\n[ 1408.639720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1408.639724]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1408.889704] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1408880000000, 1409100000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1408.999717]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[1408999712051,20000000]\n[ 1408.999728]  (1)[395:wdtk-1][thread:395][RT:1408999723128] 2021-07-12 15:59:35.525537 UTC;android time 2021-07-12 15:59:35.525537\n[ 1408.999735]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1408999728666,19999984]\n[ 1409.594132]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1409.679720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1409.679724]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1410.597831]  (0)[490:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1410.719719]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1410.719723]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1411.760676]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1411.760692]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1411.840589]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1411.840607]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1411.840610]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1412.800668]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1412.800684]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1412.961343]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1412.961599]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1794\n[ 1412.962774]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1413.280451]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 296, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1413.840665]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1413.840685]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1413.890340] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 508, 56, 0, 0, 0, 0, 0, 0, success counter cpu: 494, 9, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 983, 16, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  1413880000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1414.880700]  (1)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1414.880716]  (1)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1415.713832]  (0)[492:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd6, adc_result=3732\n[ 1415.920551]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1415.920564]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1416.719090]  (0)[492:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd6, adc_result=3732\n[ 1416.880670]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1416.880685]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1416.960669]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1416.960685]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1417.723893]  (0)[492:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd7, adc_result=3732\n[ 1418.000683]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1418.000700]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1418.001554]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1418.001820]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -1788\n[ 1418.003091]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1418.320524]  (0)[492:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 299, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1418.729223]  (0)[492:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd5, adc_result=3732\n[ 1418.900344] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 511, 67, 0, 0, 0, 0, 0, 0, success counter cpu: 495, 9, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 987, 17, 0, 0, 0, 0, 0, 0, o: 1, p: , f: 0, t:  1418890000000, 9223372036854775807, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1419.040601]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1419.040617]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1419.360641]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1420.079902]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1420.079918]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1420.738711]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1421.119901]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1421.119909]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1421.742208]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1421.919735]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1421.919741]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1422.159723]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1422.159728]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1422.746074]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1423.040457]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1423.040667]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2294\n[ 1423.041840]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1423.199729]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1423.199733]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1423.359714]  (0)[493:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 299, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1423.749649]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc3, adc_result=3728\n[ 1423.909705] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 11, 0, 0, 0, 0, 0, 0, success counter cpu: 500, 2, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 999, 4, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1423900000000, 1424680000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1424.239717]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1424.239721]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1424.753241]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbf, adc_result=3728\n[ 1425.279721]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1425.279727]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1425.756875]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc1, adc_result=3728\n[ 1426.319718]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1426.319722]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1426.760496]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1426.959734]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1426.959738]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1426.959741]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1427.359715]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1427.359720]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1427.764137]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1428.080575]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1428.080799]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2276\n[ 1428.081971]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1428.399739]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 299, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1428.399749]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1428.399755]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1428.767649]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc2, adc_result=3728\n[ 1428.919705] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1428910000000, 1429630000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1429.099731]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[1429099725560,20000000]\n[ 1429.099740]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1429099734560,19999991]\n[ 1429.099747]  (1)[395:wdtk-1][thread:395][RT:1429099742560] 2021-07-12 15:59:55.625556 UTC;android time 2021-07-12 15:59:55.625556\n[ 1429.439721]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1429.439724]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1429.771384]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc1, adc_result=3728\n[ 1430.479716]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1430.479720]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1430.774999]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1431.519719]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1431.519723]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1431.778629]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1431.999736]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1431.999740]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1432.559715]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1432.559719]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1432.782201]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbf, adc_result=3728\n[ 1433.120573]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1433.120806]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2264\n[ 1433.122083]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1433.439714]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 299, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000013 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1433.599719]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1433.599724]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1433.785835]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1433.929704] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1433920000000, 1434580000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1434.639717]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1434.639722]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1434.789464]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc2, adc_result=3728\n[ 1435.679717]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1435.679722]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1435.792088]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1436.719713]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1436.719717]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1436.795734]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1437.039735]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1437.039739]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1437.759716]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1437.759720]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1437.799419]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc1, adc_result=3728\n[ 1438.160454]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1438.160704]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2282\n[ 1438.161875]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1438.479712]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 299, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1438.799719]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1438.799725]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1438.802254]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1438.939704] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1438930000000, 1439530000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1439.805881]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbd, adc_result=3727\n[ 1439.839720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1439.839724]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1440.809515]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1440.879718]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1440.879722]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1441.812095]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc1, adc_result=3728\n[ 1441.919718]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1441.919722]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1442.079853]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1442.079857]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1442.079860]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1442.815748]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbe, adc_result=3727\n[ 1442.959737]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1442.959740]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1443.200480]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1443.200700]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2264\n[ 1443.201870]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1443.519713]  (0)[493:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 299, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1443.819441]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc2, adc_result=3728\n[ 1443.949704] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1443940000000, 1444490000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1443.999719]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1443.999723]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1444.822147]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1445.039715]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1445.039719]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1445.825780]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc1, adc_result=3728\n[ 1446.079837]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1446.079841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1446.829407]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbe, adc_result=3727\n[ 1447.119839]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1447.119843]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1447.119887]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1447.119890]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1447.832155]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1448.159718]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1448.159722]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1448.240454]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1448.240741]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2276\n[ 1448.241911]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1448.559712]  (0)[493:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 299, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1448.835793]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1448.959703] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1448950000000, 1449450000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1449.199733]  (1)[395:wdtk-1][wdk-c] cpu=1,lbit=0x2,cbit=0x3,1,1,84470350739,0,0,[1449199726916,20000000]\n[ 1449.199744]  (1)[395:wdtk-1][thread:395][RT:1449199739223] 2021-07-12 16:00:15.725552 UTC;android time 2021-07-12 16:00:15.725552\n[ 1449.199752]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x3,cbit=0x3,1,1,84470350739,0,0,[1449199745685,19999981]\n[ 1449.199766]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1449.199769]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1449.439704]  (1)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1449.839465]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbb, adc_result=3727\n[ 1450.239720]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1450.239723]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1450.842170]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbf, adc_result=3728\n[ 1451.279719]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1451.279723]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1451.845798]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc1, adc_result=3728\n[ 1452.159736]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1452.159741]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1452.319716]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1452.319720]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1452.849435]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc2, adc_result=3728\n[ 1453.280458]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1453.280690]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2337\n[ 1453.281862]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1453.359717]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1453.359721]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1453.599721]  (0)[493:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 299, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1453.852181]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc1, adc_result=3728\n[ 1453.969704] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1453960000000, 1454400000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1454.399716]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1454.399720]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1454.855697]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1455.439719]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1455.439723]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1455.859413]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1456.479717]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1456.479721]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1456.862154]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc1, adc_result=3728\n[ 1457.199737]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1457.199741]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1457.199744]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1457.519713]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1457.519717]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1457.865789]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbf, adc_result=3728\n[ 1458.320453]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1458.320667]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2258\n[ 1458.321838]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1458.559714]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1458.559718]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1458.639710]  (0)[493:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 299, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000013 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1458.869421]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc2, adc_result=3728\n[ 1458.979703] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1458970000000, 1459360000000, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, N:0000000021cbbfe1, N:00000000b53b7878,\n[ 1459.599717]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1459.599721]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1459.872169]  (0)[493:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1459.950005]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[ 1459.952457]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc2, adc_result=3728\n[ 1459.983744]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f5, adc_result=2800\n[ 1459.983966]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2288\n[ 1459.985136]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1459.985478]  (0)[341:battery_thread]lbat 0 0 0 0\n[ 1459.985485]  (0)[341:battery_thread]car[-827,0,0,0,0, cycle_car:-16,ncar:0] c:0 2252 vbat:3728 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[ 1459.985755]  (0)[341:battery_thread]tmp:32 65535 65535 hcar2:65535 lcar2:65535 time:1459 sw_iavg:-2220 -2291 1 nafg_m:0 1 0\n[ 1460.280801]  (1)[341:battery_thread]GM3log-nint-nafg 1459 1459 0 0 0 0 0\n[ 1460.640611]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1460.640630]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1460.932309]  (0)[420:python3]CPU1: shutdown\n[ 1460.959673]  (0)[420:python3]psci: Retrying again to check for CPU kill\n[ 1460.959688]  (0)[420:python3]psci: CPU1 killed.\n[ 1460.964740] -(6)[0:swapper/6]Detected PIPT I-cache on CPU6\n[ 1460.964749] -(6)[0:swapper/6]CPU features: SANITY CHECK: Unexpected variation in SYS_CTR_EL0. Boot CPU: 0x00000084448004, CPU6: 0x0000009444c004\n[ 1460.964760] -(6)[0:swapper/6]CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU6: 0x1100000011111112\n[ 1460.964765] -(6)[0:swapper/6]CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU6: 0x00000000010142\n[ 1460.964771] -(6)[0:swapper/6]CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU6: 0x00000010010131\n[ 1460.964774] -(6)[0:swapper/6]CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU6: 0x00000010010000\n[ 1460.964790] -(6)[0:swapper/6]GICv3: CPU6: found redistributor 600 region 0:0x000000000c100000\n[ 1460.964826] -(6)[0:swapper/6]CPU6: Booted secondary processor [414fd0b0]\n[ 1460.965191]  (6)[56:cpuhp/6][Power/cpufreq] mediatek/cannon-mt6853-overlay mediatek/k6853v1_64_6360 4, 0, Settle time(1250, 500) efuse_val = 0x20 0xda572499\n[ 1461.680852]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1461.680864]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1462.240999]  (6)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1462.241009]  (6)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1462.720842]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1462.720855]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1463.361676]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1463.361900]  (6)[451:kworker/u16:0][CH3_DBG] bat_cur = -1818\n[ 1463.363081]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1463.680793]  (6)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 287, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1463.760759]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1463.760773]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1463.980565] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 521, 17, 0, 0, 0, 0, 90, 0, success counter cpu: 487, 6, 0, 0, 0, 0, 15, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 904, 0, 0, 0, 0, 0, 28, 0, o: 6, p: , f: 0, t:  1463970000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 9223372036854775807, N:00000000b53b7878,\n[ 1464.800844]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1464.800857]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1465.840973]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1465.840985]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1466.114851]  (0)[496:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdd, adc_result=3733\n[ 1466.880961]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1466.880973]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1467.121136]  (0)[496:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd8, adc_result=3732\n[ 1467.280884]  (6)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1467.280896]  (6)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1467.920961]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1467.920972]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1468.126654]  (0)[496:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdb, adc_result=3733\n[ 1468.401624]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1468.401849]  (6)[451:kworker/u16:0][CH3_DBG] bat_cur = -1831\n[ 1468.403137]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1468.720693]  (6)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 287, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1468.960973]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1468.960989]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1468.990561] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 514, 0, 0, 0, 0, 0, 123, 0, success counter cpu: 480, 0, 0, 0, 0, 0, 25, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 941, 0, 0, 0, 0, 0, 48, 0, o: 6, p: , f: 0, t:  1468980000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 9223372036854775807, N:00000000b53b7878,\n[ 1469.133329]  (0)[496:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bdb, adc_result=3733\n[ 1469.300798]  (0)[394:wdtk-0][wdk-c] cpu=0,lbit=0x1,cbit=0x41,6,1,1460965842944,0,0,[1469300778041,20000000]\n[ 1469.300841]  (0)[394:wdtk-0][thread:394][RT:1469300824117] 2021-07-12 16:00:35.826636 UTC;android time 2021-07-12 16:00:35.826636\n[ 1469.310831]  (6)[400:wdtk-6][wdk-k] cpu=6,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1469310819194,19989959]\n[ 1470.000959]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1470.000971]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1471.039875]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1471.039901]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1471.149769]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1472.080024]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1472.080041]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1472.154324]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1472.319904]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1472.319917]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1472.319926]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1473.120030]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1473.120044]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1473.158861]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1473.440643]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1473.440961]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2087\n[ 1473.442037]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1473.759808] -(0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 123, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1473.999790] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 44, 0, success counter cpu: 491, 0, 0, 0, 0, 0, 10, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 978, 0, 0, 0, 0, 0, 21, 0, o: , p: , f: 0, t:  1473990000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1474160000000, N:00000000b53b7878,\n[ 1474.159841]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1474.159855]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1474.162974]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1475.167486]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1475.199837]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1475.199851]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1476.172132]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcf, adc_result=3731\n[ 1476.239825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1476.239840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1477.176644]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcf, adc_result=3731\n[ 1477.279825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1477.279840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1477.359830]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1477.359843]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1477.609783]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[ 1478.181467]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd0, adc_result=3731\n[ 1478.319829]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1478.319843]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1478.480654]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1478.480935]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2087\n[ 1478.482016]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1478.799807] -(0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 123, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1479.009789] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1479000000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1479190000000, N:00000000b53b7878,\n[ 1479.186040]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1479.359825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1479.359839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1479.519797]  (6)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1480.190709]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcb, adc_result=3730\n[ 1480.399843]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1480.399857]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1481.195540]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1481.439838]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1481.439852]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1482.200276]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1482.399828]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1482.399841]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1482.479824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1482.479838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1483.204688]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1483.519842]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1483.519856]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1483.520741]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f1, adc_result=2796\n[ 1483.521024]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2069\n[ 1483.522332]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1483.839806] -(0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 123, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1484.019788] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1484010000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1484150000000, N:00000000b53b7878,\n[ 1484.209205]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1484.559824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1484.559838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1485.212931]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1485.599826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1485.599840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1486.217442]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1486.639866]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1486.639879]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1487.221983]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1487.439842]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1487.439856]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1487.439863]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1487.679826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1487.679840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1488.226563]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1488.560640]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1488.560908]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2148\n[ 1488.561986]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1488.719825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1488.719839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1488.879806] -(0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 123, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1489.029786] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1489020000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1489230000000, N:00000000b53b7878,\n[ 1489.231083]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcf, adc_result=3731\n[ 1489.399770]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1489399764165,20000000]\n[ 1489.399782]  (6)[400:wdtk-6][thread:400][RT:1489399775550] 2021-07-12 16:00:55.925589 UTC;android time 2021-07-12 16:00:55.925589\n[ 1489.399849]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1489399830935,19999934]\n[ 1489.759827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1489.759841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1490.235763]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1490.799823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1490.799837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1491.240340]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1491.839827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1491.839840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1492.244942]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcf, adc_result=3731\n[ 1492.479830]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1492.479842]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1492.879824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1492.879838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1493.249453]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcf, adc_result=3731\n[ 1493.600639]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f5, adc_result=2800\n[ 1493.601073]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2111\n[ 1493.602153]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1493.919864]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 123, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1493.919897]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1493.919914]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1494.039786] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1494030000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1494230000000, N:00000000b53b7878,\n[ 1494.254007]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1494.959835]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1494.959849]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1495.258522]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1495.999823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1495.999837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1496.262917]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1497.039824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1497.039838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1497.267428]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1497.519841]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1497.519853]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1498.079979]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1498.079993]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1498.272079]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1498.640639]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f5, adc_result=2800\n[ 1498.640867]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2044\n[ 1498.641944]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x434, adc_result=1182\n[ 1498.959804] -(0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 123, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1499.049785] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 500, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1000, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1499040000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1499240000000, N:00000000b53b7878,\n[ 1499.119980]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1499.119994]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1499.276619]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1500.159823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1500.159838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1500.281131]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1501.199822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1501.199836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1501.285650]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1502.239822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1502.239836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1502.290175]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcb, adc_result=3730\n[ 1502.559844]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1502.559858]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1502.559866]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1503.279821]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1503.279835]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1503.294658]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcb, adc_result=3730\n[ 1503.680738]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1503.680994]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2093\n[ 1503.682068]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1503.999804] -(0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 123, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1504.059785] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1504050000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1504300000000, N:00000000b53b7878,\n[ 1504.299165]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1504.319832]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1504.319846]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1505.303089]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1505.359827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1505.359841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1506.307709]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcb, adc_result=3730\n[ 1506.399871]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1506.399885]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1507.312306]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcb, adc_result=3730\n[ 1507.439822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1507.439836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1507.599828]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1507.599841]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1508.316837]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1508.479885]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1508.479899]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1508.720712]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1508.720972]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2142\n[ 1508.722047]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1509.039804] -(0)[0:swapper/0][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 123, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1509.069785] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1509060000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1509330000000, N:00000000b53b7878,\n[ 1509.321345]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcb, adc_result=3730\n[ 1509.499809]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1509499803598,20000000]\n[ 1509.499821]  (6)[400:wdtk-6][thread:400][RT:1509499814444] 2021-07-12 16:01:16.25629 UTC;android time 2021-07-12 16:01:16.25629\n[ 1509.499851]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1509499832906,19999971]\n[ 1509.519827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1509.519840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1509.599769]  (6)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1510.326030]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcb, adc_result=3730\n[ 1510.559829]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1510.559843]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1511.330573]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1511.599837]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1511.599851]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1512.335093]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1512.639839]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1512.639853]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1512.639923]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1512.639931]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1513.339608]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1513.679822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1513.679836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1513.760642]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1513.760892]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2081\n[ 1513.762202]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1514.079786] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1514070000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1514360000000, N:00000000b53b7878,\n[ 1514.080064]  (0)[497:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 123, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1514.344293]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcb, adc_result=3730\n[ 1514.719826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1514.719840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1515.348793]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1515.759823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1515.759837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1516.352899]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1516.799824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1516.799839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1517.357626]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1517.679828]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1517.679841]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1517.679849]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1517.839823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1517.839837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1518.362149]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcb, adc_result=3730\n[ 1518.800640]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1518.800897]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2075\n[ 1518.802206]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1518.879840]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1518.879854]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1519.089786] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 500, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1000, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1519080000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1519390000000, N:00000000b53b7878,\n[ 1519.119986]  (0)[497:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 123, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1519.366904]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1519.919824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1519.919838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1520.281167]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[ 1520.283741]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcb, adc_result=3730\n[ 1520.317520]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1520.317775]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2105\n[ 1520.318848]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x434, adc_result=1182\n[ 1520.319099]  (0)[341:battery_thread]lbat 0 0 0 0\n[ 1520.319122]  (0)[341:battery_thread]car[-862,0,0,0,0, cycle_car:-16,ncar:0] c:0 2093 vbat:3730 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[ 1520.319430]  (0)[341:battery_thread]tmp:31 65535 65535 hcar2:65535 lcar2:65535 time:1520 sw_iavg:-2100 -2117 1 nafg_m:0 1 0\n[ 1520.612187]  (0)[341:battery_thread]GM3log-nint-nafg 1520 1520 0 0 0 0 0\n[ 1520.612596]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcb, adc_result=3730\n[ 1520.959830]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1520.959844]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1521.617209]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1521.999825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1521.999839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1522.622036]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1522.719830]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1522.719843]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1523.039857]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1523.039871]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1523.626796]  (0)[497:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc7, adc_result=3729\n[ 1523.841627]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1523.841851]  (6)[451:kworker/u16:0][CH3_DBG] bat_cur = -1904\n[ 1523.843031]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1524.081143]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1524.081155]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1524.090556] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 517, 0, 0, 0, 0, 0, 24, 0, success counter cpu: 500, 0, 0, 0, 0, 0, 3, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 998, 0, 0, 0, 0, 0, 4, 0, o: 6, p: , f: 0, t:  1524080000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1525070000000, N:00000000b53b7878,\n[ 1524.160696]  (6)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 287, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1525.120963]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1525.120976]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1526.160954]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1526.160965]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1527.200955]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1527.200967]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1527.761004]  (6)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1527.761013]  (6)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1528.240968]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1528.240980]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1528.753450]  (0)[499:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd9, adc_result=3733\n[ 1528.881776]  (6)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1528.882008]  (6)[329:kworker/u16:3][CH3_DBG] bat_cur = -1788\n[ 1528.883183]  (6)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1529.100561] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 515, 0, 0, 0, 0, 0, 126, 0, success counter cpu: 483, 0, 0, 0, 0, 0, 24, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 924, 0, 0, 0, 0, 0, 45, 0, o: 6, p: , f: 0, t:  1529090000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 9223372036854775807, N:00000000b53b7878,\n[ 1529.200814]  (6)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 291, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1529.280782]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1529.280798]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1529.600796]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1529600789492,20000000]\n[ 1529.600820]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1529600798184,19999992]\n[ 1529.600828]  (6)[400:wdtk-6][thread:400][RT:1529600816030] 2021-07-12 16:01:36.126630 UTC;android time 2021-07-12 16:01:36.126630\n[ 1529.759815]  (0)[499:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd8, adc_result=3732\n[ 1530.320977]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1530.320989]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1530.764767]  (0)[499:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd8, adc_result=3732\n[ 1531.360960]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1531.360973]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1531.771104]  (0)[499:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd7, adc_result=3732\n[ 1532.400960]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1532.400973]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1532.799886]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1532.799909]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1532.799918]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1533.439874]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1533.439893]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1533.786664]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc9, adc_result=3730\n[ 1533.920793]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1533.921081]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2130\n[ 1533.922160]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1534.109789] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 511, 0, 0, 0, 0, 0, 92, 0, success counter cpu: 487, 0, 0, 0, 0, 0, 17, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 971, 0, 0, 0, 0, 0, 32, 0, o: , p: , f: 0, t:  1534100000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1534810000000, N:00000000b53b7878,\n[ 1534.239807]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 292, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1534.479851]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1534.479870]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1534.791278]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1535.519835]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1535.519849]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1535.796080]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1536.559827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1536.559842]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1536.800602]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bca, adc_result=3730\n[ 1537.599829]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1537.599842]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1537.805123]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc9, adc_result=3730\n[ 1537.839908]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1537.839921]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1538.639852]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1538.639867]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1538.809677]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc9, adc_result=3730\n[ 1538.960640]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1538.960902]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2148\n[ 1538.961979]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1539.119789] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1539110000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1539790000000, N:00000000b53b7878,\n[ 1539.279810]  (6)[290:hang_detect][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 292, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1539.679791]  (6)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1539.679890]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1539.679909]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1539.814178]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bca, adc_result=3730\n[ 1540.719826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1540.719841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1540.818703]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc3, adc_result=3728\n[ 1541.759836]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1541.759850]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1541.823084]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1542.799824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1542.799838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1542.827609]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bca, adc_result=3730\n[ 1542.879830]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1542.879843]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1543.832153]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bca, adc_result=3730\n[ 1543.839832]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1543.839847]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1544.000638]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1544.000912]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2154\n[ 1544.001989]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1544.129787] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 500, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1000, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1544120000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1544820000000, N:00000000b53b7878,\n[ 1544.319808]  (0)[500:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 292, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1544.836680]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bca, adc_result=3730\n[ 1544.879830]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1544.879844]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1545.841258]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc9, adc_result=3730\n[ 1545.919827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1545.919841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1546.845786]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1546.959827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1546.959841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1547.850282]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1547.919833]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1547.919847]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1547.919855]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1547.999854]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1547.999868]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1548.854706]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bca, adc_result=3730\n[ 1549.039843]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1549.039856]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1549.040740]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1549.041014]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2148\n[ 1549.042094]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x434, adc_result=1182\n[ 1549.139785] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 508, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1549130000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1549820000000, N:00000000b53b7878,\n[ 1549.359829]  (6)[400:wdtk-6][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 292, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1549.699789]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1549699784078,20000000]\n[ 1549.699802]  (6)[400:wdtk-6][thread:400][RT:1549699796386] 2021-07-12 16:01:56.225611 UTC;android time 2021-07-12 16:01:56.225611\n[ 1549.699846]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1549699828001,19999956]\n[ 1549.859433]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1550.079988]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1550.080002]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1550.864134]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1551.120011]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1551.120026]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1551.868750]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bca, adc_result=3730\n[ 1552.159869]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1552.159883]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1552.872964]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1552.959834]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1552.959846]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1553.199824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1553.199838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1553.877529]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1554.080803]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1554.081084]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2154\n[ 1554.082259]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x434, adc_result=1182\n[ 1554.149787] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1554140000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1554860000000, N:00000000b53b7878,\n[ 1554.239829]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1554.239843]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1554.399806]  (0)[500:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 292, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1554.882160]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1555.279828]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1555.279842]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1555.886932]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc7, adc_result=3729\n[ 1556.319829]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1556.319843]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1556.891729]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1557.359827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1557.359841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1557.896217]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc7, adc_result=3729\n[ 1557.999829]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1557.999842]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1558.399826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1558.399840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1558.900764]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc7, adc_result=3729\n[ 1559.120799]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1559.121030]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2154\n[ 1559.122106]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x434, adc_result=1182\n[ 1559.159786] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1559150000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1559910000000, N:00000000b53b7878,\n[ 1559.439860]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 292, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1559.439893]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1559.439909]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1559.905275]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1560.479827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1560.479841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1560.909800]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1561.519824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1561.519838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1561.914255]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1562.559824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1562.559839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1562.918868]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1563.039831]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1563.039844]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1563.039852]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1563.599823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1563.599838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1563.923101]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1564.160640]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1564.160889]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2185\n[ 1564.161966]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x434, adc_result=1182\n[ 1564.169785] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1564160000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1564870000000, N:00000000b53b7878,\n[ 1564.479805]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 292, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1564.639828]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1564.639847]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1564.927886]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1565.679825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1565.679839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1565.932500]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc7, adc_result=3729\n[ 1566.719827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1566.719841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1566.937108]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1567.759825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1567.759839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1567.941683]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1568.079987]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1568.080000]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1568.799824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1568.799838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1568.946201]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1569.179785] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1569170000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1569950000000, N:00000000b53b7878,\n[ 1569.200641]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1569.200925]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2148\n[ 1569.202002]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x434, adc_result=1182\n[ 1569.519802]  (6)[290:hang_detect][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 292, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1569.759791]  (6)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1569.799759]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1569799754203,20000000]\n[ 1569.799769]  (6)[400:wdtk-6][thread:400][RT:1569799762895] 2021-07-12 16:02:16.325577 UTC;android time 2021-07-12 16:02:16.325577\n[ 1569.799880]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1569799863511,19999891]\n[ 1569.839841]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1569.839855]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1569.951028]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1570.879825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1570.879840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1570.955572]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1571.919823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1571.919837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1571.960173]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1572.959862]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1572.959876]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1572.964545]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1573.119989]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1573.120002]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1573.969062]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1573.999895]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1573.999909]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1574.189787] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1574180000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1574980000000, N:00000000b53b7878,\n[ 1574.240657]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1574.240930]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2197\n[ 1574.242012]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1574.559803]  (0)[500:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 292, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b7, req_sta =  0x5c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1574.972956]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1575.039835]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1575.039848]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1575.977453]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc7, adc_result=3729\n[ 1576.079983]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1576.079998]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1576.982020]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1577.119984]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1577.119998]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1577.986641]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1578.159841]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1578.159855]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1578.159924]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1578.159934]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1578.159941]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1578.991123]  (0)[500:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc3, adc_result=3728\n[ 1579.190560] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 15, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 5, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 985, 0, 0, 0, 0, 0, 0, 0, o: 6, p: , f: 0, t:  1579180000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1589890145323, N:00000000b53b7878,\n[ 1579.200975]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1579.200986]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1579.281609]  (6)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1579.281853]  (6)[329:kworker/u16:3][CH3_DBG] bat_cur = -1849\n[ 1579.283026]  (6)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1579.600696]  (6)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 287, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1580.240965]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1580.240977]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1580.612728]  (6)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[ 1580.615243]  (6)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd3, adc_result=3731\n[ 1580.665615]  (6)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1580.665853]  (6)[341:battery_thread][CH3_DBG] bat_cur = -1934\n[ 1580.667023]  (6)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1580.667258]  (6)[341:battery_thread]lbat 0 0 0 0\n[ 1580.667266]  (6)[341:battery_thread]car[-898,0,0,0,0, cycle_car:-16,ncar:0] c:0 1843 vbat:3731 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[ 1580.667604]  (6)[341:battery_thread]tmp:31 65535 65535 hcar2:65535 lcar2:65535 time:1580 sw_iavg:-2160 -2185 1 nafg_m:0 1 0\n[ 1580.960995]  (6)[341:battery_thread]GM3log-nint-nafg 1580 1580 0 0 0 0 0\n[ 1581.280964]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1581.280976]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1582.320962]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1582.320973]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1583.200841]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1583.200873]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1583.360964]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1583.360976]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1584.114894]  (0)[503:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd7, adc_result=3732\n[ 1584.200562] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 508, 0, 0, 0, 0, 0, 113, 0, success counter cpu: 497, 0, 0, 0, 0, 0, 21, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 501, 0, 0, 0, 0, 0, 3, 0, o: 6, p: , f: 0, t:  1584190000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1589890145323, N:00000000b53b7878,\n[ 1584.321767]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1584.321982]  (6)[451:kworker/u16:0][CH3_DBG] bat_cur = -1800\n[ 1584.323153]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1584.400968]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1584.400979]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1584.640898]  (0)[503:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 291, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000015 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1585.121594]  (0)[503:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd5, adc_result=3732\n[ 1585.440961]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1585.440973]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1586.127346]  (0)[503:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd9, adc_result=3733\n[ 1586.480974]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1586.480984]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1587.133975]  (0)[503:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd8, adc_result=3732\n[ 1587.520972]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1587.520984]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1588.239859]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1588.239884]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1588.559868]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1588.559885]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1589.150542]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1589.209789] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 511, 0, 0, 0, 0, 0, 70, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 19, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 606, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1589200000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1589890145323, N:00000000b53b7878,\n[ 1589.360652]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1589.360901]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2142\n[ 1589.361978]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1589.599853]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1589.599868]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1589.679809]  (6)[400:wdtk-6][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 144, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1589.899798]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1589899793636,20000000]\n[ 1589.899811]  (6)[400:wdtk-6][thread:400][RT:1589899805405] 2021-07-12 16:02:36.425620 UTC;android time 2021-07-12 16:02:36.425620\n[ 1589.899842]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1589899823482,19999970]\n[ 1590.155328]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc1, adc_result=3728\n[ 1590.639839]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1590.639853]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1591.159862]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1591.679829]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1591.679843]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1592.164327]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1592.719826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1592.719840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1593.169026]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1593.279833]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1593.279846]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1593.279854]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1593.759825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1593.759839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1594.173007]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1594.219789] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1594210000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1595180000000, N:00000000b53b7878,\n[ 1594.400639]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1594.400909]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2166\n[ 1594.401986]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1594.719829]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 144, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1594.799825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1594.799843]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1595.177621]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc8, adc_result=3729\n[ 1595.839865]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1595.839879]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1596.182241]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc3, adc_result=3728\n[ 1596.879822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1596.879836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1597.186790]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1597.919822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1597.919836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1598.191289]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1598.319829]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1598.319842]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1598.959822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1598.959836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1599.195806]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc7, adc_result=3729\n[ 1599.229787] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1599220000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1600160000000, N:00000000b53b7878,\n[ 1599.440640]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1599.441011]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2191\n[ 1599.442319]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1599.759804]  (6)[290:hang_detect][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 144, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1599.839786]  (6)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1599.999841]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1599.999856]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1600.200368]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc2, adc_result=3728\n[ 1600.489783]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[ 1601.039822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1601.039836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1601.204901]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc3, adc_result=3728\n[ 1602.079978]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1602.079992]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1602.209418]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc2, adc_result=3728\n[ 1603.119975]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1603.119989]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1603.213903]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1603.359897]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1603.359909]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1604.159849]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1604.159863]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1604.218420]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1604.239786] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1604230000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1605220000000, N:00000000b53b7878,\n[ 1604.480674]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1604.480956]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2148\n[ 1604.483076]  (0)[462:kworker/u16:1]BAT_TEMP_PREV:1184,BAT_TEMP:1184,VBIF28:2798\n[ 1604.483097]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1604.799805]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 144, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1605.199823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1605.199842]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1605.222882]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1606.227387]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc3, adc_result=3728\n[ 1606.239836]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1606.239850]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1607.232003]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1607.279832]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1607.279846]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1608.236487]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1608.319825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1608.319839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1608.399829]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1608.399842]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1608.399850]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1609.240998]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1609.241498] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: , t:  1609240000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1610220000000, N:00000000b53b7878,\n[ 1609.359822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1609.359836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1609.520639]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1609.520871]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2136\n[ 1609.522179]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1609.839804]  (6)[400:wdtk-6][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 144, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1609.999765]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1609999760145,20000000]\n[ 1609.999777]  (6)[400:wdtk-6][thread:400][RT:1609999771530] 2021-07-12 16:02:56.525586 UTC;android time 2021-07-12 16:02:56.525586\n[ 1609.999846]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1609999827914,19999932]\n[ 1610.245562]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc3, adc_result=3728\n[ 1610.399828]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1610.399842]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1611.250063]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1611.439824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1611.439838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1612.254485]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1612.479825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1612.479838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1613.258946]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc3, adc_result=3728\n[ 1613.439829]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1613.439842]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1613.519824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1613.519838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1614.249786] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1614240000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1614250000000, N:00000000b53b7878,\n[ 1614.262889]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1614.559843]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1614.559856]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1614.560740]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1614.561002]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2221\n[ 1614.562080]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1614.879802]  (0)[504:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 144, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1615.267602]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc2, adc_result=3728\n[ 1615.599827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1615.599841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1616.272148]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1616.639825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1616.639839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1617.276644]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1617.679864]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1617.679878]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1618.281130]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1618.479829]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1618.479841]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1618.719825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1618.719839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1619.259786] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1619250000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1619260000000, N:00000000b53b7878,\n[ 1619.285679]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1619.600640]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1619.600917]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2172\n[ 1619.601998]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1619.759826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1619.759840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1619.919804]  (0)[504:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 144, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1620.290246]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1620.799825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1620.799839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1621.294651]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc2, adc_result=3728\n[ 1621.839824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1621.839837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1622.299227]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1622.879845]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1622.879859]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1623.302861]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1623.519850]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1623.519863]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1623.519871]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1623.919824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1623.919839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1624.269787] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1624260000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1624300000000, N:00000000b53b7878,\n[ 1624.307381]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1624.640643]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1624.640930]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2209\n[ 1624.642005]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x437, adc_result=1185\n[ 1624.959867]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 144, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1624.959899]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1624.959916]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1625.312179]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc3, adc_result=3728\n[ 1625.999824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1625.999838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1626.316719]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc1, adc_result=3728\n[ 1627.039824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1627.039838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1627.321429]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1628.079981]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1628.079995]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1628.326159]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1628.559829]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1628.559842]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1629.119979]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1629.119993]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1629.279787] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1629270000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1629310000000, N:00000000b53b7878,\n[ 1629.330921]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1629.680641]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1629.680905]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2221\n[ 1629.681982]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1629.919819]  (6)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1629.999804]  (6)[400:wdtk-6][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 144, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1630.099797]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1630099792808,20000000]\n[ 1630.099820]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1630099801424,19999992]\n[ 1630.099827]  (6)[400:wdtk-6][thread:400][RT:1630099817424] 2021-07-12 16:03:16.625631 UTC;android time 2021-07-12 16:03:16.625631\n[ 1630.159841]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1630.159854]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1630.335506]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc2, adc_result=3728\n[ 1631.199825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1631.199839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1631.340264]  (0)[504:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc3, adc_result=3728\n[ 1632.240853]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1632.240865]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1633.280826]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1633.280837]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1633.600986]  (6)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1633.600996]  (6)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1634.280433] -(6)[0:swapper/6][name:bc&]tick broadcast enter counter cpu: 513, 0, 0, 0, 0, 0, 81, 0, success counter cpu: 488, 0, 0, 0, 0, 0, 15, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 973, 0, 0, 0, 0, 0, 30, 0, o: 0, p: , f: 6, t:  1634270000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1634270000000, N:00000000b53b7878,\n[ 1634.320824]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1634.320834]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1634.721622]  (6)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1634.721852]  (6)[462:kworker/u16:1][CH3_DBG] bat_cur = -1800\n[ 1634.723020]  (6)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x437, adc_result=1185\n[ 1635.040678]  (6)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 288, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1635.360932]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1635.360945]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1636.400936]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1636.400946]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1636.464621]  (0)[506:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd6, adc_result=3732\n[ 1637.440938]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1637.440949]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1637.470923]  (0)[506:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd4, adc_result=3732\n[ 1638.476254]  (0)[506:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd5, adc_result=3732\n[ 1638.480813]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1638.480825]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1638.640834]  (6)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1638.640845]  (6)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1638.640848]  (6)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1639.290549] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 513, 0, 0, 0, 0, 0, 132, 0, success counter cpu: 478, 0, 0, 0, 0, 0, 30, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 903, 0, 0, 0, 0, 0, 56, 0, o: 6, p: , f: 0, t:  1639280000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 9223372036854775807, N:00000000b53b7878,\n[ 1639.482620]  (0)[506:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd4, adc_result=3732\n[ 1639.521105]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1639.521134]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1639.761770]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1639.762015]  (6)[451:kworker/u16:0][CH3_DBG] bat_cur = -1794\n[ 1639.763184]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1640.081032]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 290, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1640.559868]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1640.559901]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1640.961376]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[ 1640.963910]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc2, adc_result=3728\n[ 1640.997534]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1640.997896]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2319\n[ 1640.998970]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1640.999214]  (0)[341:battery_thread]lbat 0 0 0 0\n[ 1640.999237]  (0)[341:battery_thread]car[-933,0,0,0,0, cycle_car:-16,ncar:0] c:0 2246 vbat:3728 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[ 1640.999543]  (0)[341:battery_thread]tmp:31 65535 65535 hcar2:65535 lcar2:65535 time:1640 sw_iavg:-2100 -2130 1 nafg_m:0 1 0\n[ 1641.289883]  (0)[341:battery_thread]GM3log-nint-nafg 1640 1640 0 0 0 0 0\n[ 1641.499210]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc3, adc_result=3728\n[ 1641.599854]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1641.599868]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1642.503104]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc1, adc_result=3728\n[ 1642.639832]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1642.639846]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1643.507645]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbf, adc_result=3728\n[ 1643.679843]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1643.679857]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1643.679929]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1643.679939]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1644.299787] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 513, 0, 0, 0, 0, 0, 30, 0, success counter cpu: 493, 0, 0, 0, 0, 0, 7, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 986, 0, 0, 0, 0, 0, 13, 0, o: , p: , f: 0, t:  1644290000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1644500000000, N:00000000b53b7878,\n[ 1644.512174]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc1, adc_result=3728\n[ 1644.719823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1644.719837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1644.800641]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1644.800869]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2209\n[ 1644.801957]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x437, adc_result=1185\n[ 1645.119970]  (0)[507:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 103, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1645.516720]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc2, adc_result=3728\n[ 1645.759838]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1645.759852]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1646.521199]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc1, adc_result=3728\n[ 1646.799820]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1646.799834]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1647.525786]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc1, adc_result=3728\n[ 1647.839821]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1647.839835]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1648.530327]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc1, adc_result=3728\n[ 1648.719827]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1648.719839]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1648.879819]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1648.879832]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1649.309785] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1649300000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1649530000000, N:00000000b53b7878,\n[ 1649.534730]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1649.840635]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1649.840909]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2264\n[ 1649.842218]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1649.919824]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1649.919837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1650.159828]  (6)[400:wdtk-6][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 103, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1650.199791]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1650199785241,20000000]\n[ 1650.199804]  (6)[400:wdtk-6][thread:400][RT:1650199798703] 2021-07-12 16:03:36.725612 UTC;android time 2021-07-12 16:03:36.725612\n[ 1650.199846]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1650199827010,19999958]\n[ 1650.539488]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbe, adc_result=3727\n[ 1650.959819]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1650.959833]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1651.543913]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbe, adc_result=3727\n[ 1651.999819]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1651.999833]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1652.548396]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc1, adc_result=3728\n[ 1653.039817]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1653.039831]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1653.552948]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1653.759826]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1653.759839]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1653.759847]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1654.079975]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1654.079989]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1654.319785] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1654310000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1654540000000, N:00000000b53b7878,\n[ 1654.557501]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc2, adc_result=3728\n[ 1654.880635]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1654.880919]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2148\n[ 1654.882225]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1655.119976]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1655.119990]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1655.199801]  (0)[507:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 103, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1655.562137]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1656.159842]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1656.159856]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1656.566661]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbb, adc_result=3727\n[ 1657.199819]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1657.199834]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1657.571435]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbf, adc_result=3728\n[ 1658.239820]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1658.239834]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1658.575924]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbf, adc_result=3728\n[ 1658.799824]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1658.799836]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1659.279818]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1659.279832]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1659.329785] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1659320000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1659540000000, N:00000000b53b7878,\n[ 1659.580404]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbf, adc_result=3728\n[ 1659.920654]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1659.920896]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2221\n[ 1659.921972]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x437, adc_result=1185\n[ 1659.999820]  (6)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1660.239807]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 103, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1660.319836]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1660.319855]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1660.585241]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbf, adc_result=3728\n[ 1661.359862]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1661.359876]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1661.589935]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1662.399821]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1662.399835]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1662.594329]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb9, adc_result=3726\n[ 1663.439820]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1663.439834]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1663.599093]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbf, adc_result=3728\n[ 1663.839826]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1663.839839]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1664.339785] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1664330000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1664600000000, N:00000000b53b7878,\n[ 1664.479822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1664.479836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1664.602839]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc1, adc_result=3728\n[ 1664.960636]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1664.960995]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2233\n[ 1664.962084]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1665.279829]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 103, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1665.519819]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1665.519838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1665.607328]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc1, adc_result=3728\n[ 1666.559820]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1666.559834]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1666.612177]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1667.599820]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1667.599835]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1667.616708]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1668.621175]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc1, adc_result=3728\n[ 1668.639823]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1668.639837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1668.879893]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1668.879905]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1668.879913]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1669.349784] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1669340000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1669600000000, N:00000000b53b7878,\n[ 1669.625703]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb9, adc_result=3726\n[ 1669.679845]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1669.679859]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1670.000634]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1670.000913]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2246\n[ 1670.001988]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1670.299763]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1670299758750,20000000]\n[ 1670.299773]  (6)[400:wdtk-6][thread:400][RT:1670299768597] 2021-07-12 16:03:56.825583 UTC;android time 2021-07-12 16:03:56.825583\n[ 1670.299846]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1670299827674,19999931]\n[ 1670.319801]  (0)[507:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 103, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1670.630519]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbe, adc_result=3727\n[ 1670.719826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1670.719839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1671.635040]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbf, adc_result=3728\n[ 1671.759819]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1671.759833]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1672.639491]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbf, adc_result=3728\n[ 1672.799821]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1672.799835]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1673.643945]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1673.839820]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1673.839834]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1673.919824]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1673.919836]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1674.359782] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1674350000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1674610000000, N:00000000b53b7878,\n[ 1674.648435]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbf, adc_result=3728\n[ 1674.879825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1674.879839]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1675.040655]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1675.041019]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2185\n[ 1675.042128]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1675.359828]  (0)[507:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 103, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1675.652980]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb9, adc_result=3726\n[ 1675.919818]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1675.919832]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1676.657464]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbf, adc_result=3728\n[ 1676.959818]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1676.959831]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1677.662230]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 1677.999817]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1677.999831]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1678.666741]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbe, adc_result=3727\n[ 1678.959828]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1678.959841]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1679.039817]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1679.039830]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1679.369782] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 500, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1000, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1679360000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1679670000000, N:00000000b53b7878,\n[ 1679.671228]  (0)[507:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbe, adc_result=3727\n[ 1680.080981]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1680.080994]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1680.081802]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1680.082144]  (6)[451:kworker/u16:0][CH3_DBG] bat_cur = -1794\n[ 1680.083322]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1680.400724]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 287, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1681.121080]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1681.121116]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1682.160744]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1682.160756]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1683.200778]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1683.200788]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1684.000977]  (6)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1684.000986]  (6)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1684.000989]  (6)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1684.240788]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1684.240800]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1684.370537] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 516, 0, 0, 0, 0, 0, 76, 0, success counter cpu: 500, 0, 0, 0, 0, 0, 20, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 557, 0, 0, 0, 0, 0, 0, 0, o: 6, p: , f: 0, t:  1684360000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1690390149714, N:00000000b53b7878,\n[ 1684.794874]  (0)[509:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd1, adc_result=3731\n[ 1685.121882]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1685.122195]  (6)[451:kworker/u16:0][CH3_DBG] bat_cur = -1818\n[ 1685.123359]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x437, adc_result=1185\n[ 1685.280816]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1685.280827]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1685.440776]  (0)[509:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 292, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1685.801074]  (0)[509:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd1, adc_result=3731\n[ 1686.320816]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1686.320827]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1686.806492]  (0)[509:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd4, adc_result=3732\n[ 1687.360818]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1687.360830]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1687.812990]  (0)[509:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bd3, adc_result=3731\n[ 1688.400813]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1688.400824]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1689.039840]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1689.039864]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1689.379787] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 510, 0, 0, 0, 0, 0, 83, 0, success counter cpu: 500, 0, 0, 0, 0, 0, 24, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 555, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1689370000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1689830000000, N:00000000b53b7878,\n[ 1689.439861]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1689.439876]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1689.829296]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbe, adc_result=3727\n[ 1690.079784]  (6)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1690.160643]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1690.160917]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2252\n[ 1690.162229]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1690.399796]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1690399791721,20000000]\n[ 1690.399814]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1690399796952,19999995]\n[ 1690.399821]  (6)[400:wdtk-6][thread:400][RT:1690399812106] 2021-07-12 16:04:16.925626 UTC;android time 2021-07-12 16:04:16.925626\n[ 1690.479894]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 108, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1690.479932]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1690.479949]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1690.834163]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbe, adc_result=3727\n[ 1691.519828]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1691.519841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1691.838686]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bba, adc_result=3727\n[ 1692.559818]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1692.559832]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1692.842825]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbb, adc_result=3727\n[ 1693.599816]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1693.599830]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1693.847305]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbb, adc_result=3727\n[ 1694.079976]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1694.079989]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1694.389784] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1694380000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1694860000000, N:00000000b53b7878,\n[ 1694.639813]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1694.639827]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1694.852047]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbf, adc_result=3728\n[ 1695.200631]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1695.200952]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2252\n[ 1695.202259]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x437, adc_result=1185\n[ 1695.519801]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 108, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1695.679822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1695.679841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1695.856523]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbd, adc_result=3727\n[ 1696.719816]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1696.719830]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1696.861201]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb9, adc_result=3726\n[ 1697.759816]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1697.759831]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1697.865741]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb8, adc_result=3726\n[ 1698.799815]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1698.799829]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1698.870421]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbb, adc_result=3727\n[ 1699.119980]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1699.119993]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1699.120001]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1699.399781] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1699390000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1699890000000, N:00000000b53b7878,\n[ 1699.839816]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1699.839829]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1699.875027]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbe, adc_result=3727\n[ 1700.240631]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1700.240904]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2264\n[ 1700.241981]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x437, adc_result=1185\n[ 1700.559801]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 108, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1700.879736]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1700.879757]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1700.879805]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bba, adc_result=3727\n[ 1701.290231]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[ 1701.292539]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb9, adc_result=3726\n[ 1701.325708]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1701.326029]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2319\n[ 1701.327212]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1701.327489]  (0)[341:battery_thread]lbat 0 0 0 0\n[ 1701.327512]  (0)[341:battery_thread]car[-970,0,0,0,0, cycle_car:-16,ncar:0] c:0 2294 vbat:3726 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[ 1701.327817]  (0)[341:battery_thread]tmp:31 65535 65535 hcar2:65535 lcar2:65535 time:1701 sw_iavg:-2220 -2148 1 nafg_m:0 1 0\n[ 1701.619823]  (0)[341:battery_thread]GM3log-nint-nafg 1701 1701 0 0 0 0 0\n[ 1701.884214]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbb, adc_result=3727\n[ 1701.919837]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1701.919850]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1702.888701]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbd, adc_result=3727\n[ 1702.959819]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1702.959833]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1703.892884]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bba, adc_result=3727\n[ 1703.999822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1703.999835]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1704.159823]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1704.159835]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1704.409782] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 499, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 998, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1704400000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1704900000000, N:00000000b53b7878,\n[ 1704.897639]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb7, adc_result=3726\n[ 1705.039875]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1705.039888]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1705.280699]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1705.281061]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2294\n[ 1705.282145]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1705.599800]  (0)[510:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 108, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1705.902218]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbe, adc_result=3727\n[ 1706.080017]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1706.080032]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1706.906665]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbb, adc_result=3727\n[ 1707.119967]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1707.119981]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1707.911346]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbb, adc_result=3727\n[ 1708.159819]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1708.159833]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1708.916048]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb9, adc_result=3726\n[ 1709.199834]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1709.199848]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1709.199938]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1709.199947]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1709.419781] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1709410000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1709880000000, N:00000000b53b7878,\n[ 1709.920512]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb9, adc_result=3726\n[ 1710.239817]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1710.239831]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1710.320630]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1710.320889]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2252\n[ 1710.321962]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x437, adc_result=1185\n[ 1710.499783]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1710499778846,20000000]\n[ 1710.499793]  (6)[400:wdtk-6][thread:400][RT:1710499788385] 2021-07-12 16:04:37.25602 UTC;android time 2021-07-12 16:04:37.25602\n[ 1710.499888]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1710499872154,19999907]\n[ 1710.639799]  (0)[510:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 108, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1710.925013]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb6, adc_result=3726\n[ 1711.279816]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1711.279830]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1711.929703]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbd, adc_result=3727\n[ 1712.319815]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1712.319829]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1712.934330]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbd, adc_result=3727\n[ 1713.359815]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1713.359829]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1713.938840]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb9, adc_result=3726\n[ 1714.239822]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1714.239837]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1714.239845]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1714.399816]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1714.399830]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1714.429783] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1714420000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1714960000000, N:00000000b53b7878,\n[ 1714.943087]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb7, adc_result=3726\n[ 1715.360632]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1715.360997]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2252\n[ 1715.362070]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1715.439815]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1715.439829]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1715.679840]  (0)[510:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 108, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1715.947602]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb9, adc_result=3726\n[ 1716.479817]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1716.479831]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1716.952128]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbb, adc_result=3727\n[ 1717.519816]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1717.519830]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1717.956787]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb8, adc_result=3726\n[ 1718.559814]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1718.559829]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1718.961237]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbd, adc_result=3727\n[ 1719.279822]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1719.279834]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1719.439781] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1719430000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1719940000000, N:00000000b53b7878,\n[ 1719.599815]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1719.599829]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1719.966038]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb9, adc_result=3726\n[ 1720.159779]  (6)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1720.400634]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1720.400877]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2233\n[ 1720.401952]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1720.639832]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1720.639846]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1720.719798]  (0)[510:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 108, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1720.970547]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb9, adc_result=3726\n[ 1721.679817]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1721.679830]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1721.975285]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb7, adc_result=3726\n[ 1722.719815]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1722.719829]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1722.979934]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb8, adc_result=3726\n[ 1723.369776]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[ 1723.759814]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1723.759828]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1723.984531]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb6, adc_result=3726\n[ 1724.319822]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1724.319834]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1724.449781] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1724440000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1724970000000, N:00000000b53b7878,\n[ 1724.799816]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1724.799829]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1724.988994]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb9, adc_result=3726\n[ 1725.440632]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1725.440918]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2276\n[ 1725.441993]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x437, adc_result=1185\n[ 1725.759798]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 108, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1725.839818]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1725.839837]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1725.993168]  (0)[510:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb9, adc_result=3726\n[ 1726.880927]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1726.880938]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1727.920914]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1727.920924]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1728.960917]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1728.960928]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1729.360949]  (6)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1729.360958]  (6)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1729.360961]  (6)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1729.450529] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 512, 0, 0, 0, 0, 0, 92, 0, success counter cpu: 479, 0, 0, 0, 0, 0, 21, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 957, 0, 0, 0, 0, 0, 40, 0, o: 6, p: , f: 0, t:  1729440000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 9223372036854775807, N:00000000b53b7878,\n[ 1730.000901]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1730.000912]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1730.481716]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1730.481953]  (6)[451:kworker/u16:0][CH3_DBG] bat_cur = -1818\n[ 1730.483115]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x437, adc_result=1185\n[ 1730.600739]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1730600733125,20000000]\n[ 1730.600753]  (6)[400:wdtk-6][thread:400][RT:1730600749356] 2021-07-12 16:04:57.126563 UTC;android time 2021-07-12 16:04:57.126563\n[ 1730.600815]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1730600798894,19999934]\n[ 1730.800754]  (6)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 289, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1731.040911]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1731.040924]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1731.116179]  (0)[512:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1732.081072]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1732.081083]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1732.122561]  (0)[512:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1733.120953]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1733.120963]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1733.128219]  (0)[512:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1734.134736]  (0)[512:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1734.160829]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1734.160839]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1734.400833]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1734.400860]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1734.460524] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 518, 0, 0, 0, 0, 0, 126, 0, success counter cpu: 478, 0, 0, 0, 0, 0, 29, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 932, 0, 0, 0, 0, 0, 56, 0, o: 6, p: , f: 0, t:  1734450000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 9223372036854775807, N:00000000b53b7878,\n[ 1735.199914]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1735.199940]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1735.520668]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1735.520930]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2307\n[ 1735.522236]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1735.839799]  (0)[513:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 167, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1736.150962]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb8, adc_result=3726\n[ 1736.239843]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1736.239858]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1737.155542]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb8, adc_result=3726\n[ 1737.279820]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1737.279834]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1738.160113]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb6, adc_result=3726\n[ 1738.319814]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1738.319828]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1739.164474]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb7, adc_result=3726\n[ 1739.359813]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1739.359827]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1739.439821]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1739.439834]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1739.469785] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 509, 0, 0, 0, 0, 0, 10, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 2, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 4, 0, o: , p: , f: 0, t:  1739460000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1740190000000, N:00000000b53b7878,\n[ 1740.168934]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb4, adc_result=3726\n[ 1740.399812]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1740.399826]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1740.560626]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1740.560880]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2349\n[ 1740.562185]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x437, adc_result=1185\n[ 1740.879798]  (0)[513:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 167, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1741.172860]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb7, adc_result=3726\n[ 1741.439811]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1741.439825]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1742.177317]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb8, adc_result=3726\n[ 1742.479813]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1742.479827]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1743.181795]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb6, adc_result=3726\n[ 1743.519812]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1743.519826]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1744.186202]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb4, adc_result=3726\n[ 1744.479782] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1744470000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1745170000000, N:00000000b53b7878,\n[ 1744.479919]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1744.479930]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1744.479938]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1744.559812]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1744.559825]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1745.190653]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb3, adc_result=3725\n[ 1745.599826]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1745.599840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1745.600719]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1745.600978]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2307\n[ 1745.602081]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1745.919809]  (0)[513:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 167, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1746.195084]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb4, adc_result=3726\n[ 1746.639810]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1746.639824]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1747.199535]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb6, adc_result=3726\n[ 1747.679811]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1747.679825]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1748.204193]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb5, adc_result=3726\n[ 1748.719881]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1748.719894]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1749.208718]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb6, adc_result=3726\n[ 1749.489780] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1749480000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1750230000000, N:00000000b53b7878,\n[ 1749.519818]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1749.519831]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1749.759815]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1749.759828]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1750.212867]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb7, adc_result=3726\n[ 1750.239782]  (6)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1750.640630]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1750.640895]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2319\n[ 1750.641971]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x437, adc_result=1185\n[ 1750.699752]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1750699748558,20000000]\n[ 1750.699760]  (6)[400:wdtk-6][thread:400][RT:1750699756558] 2021-07-12 16:05:17.225571 UTC;android time 2021-07-12 16:05:17.225571\n[ 1750.699822]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1750699804481,19999944]\n[ 1750.799828]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1750.799842]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1750.959798]  (0)[513:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 167, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1751.217402]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb3, adc_result=3725\n[ 1751.839814]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1751.839828]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1752.221921]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb5, adc_result=3726\n[ 1752.879810]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1752.879824]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1753.226478]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb5, adc_result=3726\n[ 1753.919811]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1753.919825]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1754.231163]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb6, adc_result=3726\n[ 1754.499779] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1754490000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1755210000000, N:00000000b53b7878,\n[ 1754.559820]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1754.559833]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1754.959815]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1754.959829]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1755.235868]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb2, adc_result=3725\n[ 1755.680629]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1755.680905]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2301\n[ 1755.682056]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1755.999847]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 167, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1755.999878]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1755.999895]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1756.240333]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb4, adc_result=3726\n[ 1757.039811]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1757.039824]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1757.244792]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb3, adc_result=3725\n[ 1758.079966]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1758.079980]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1758.249447]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb4, adc_result=3726\n[ 1759.119963]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1759.119977]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1759.253854]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb4, adc_result=3726\n[ 1759.509781] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1759500000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1760240000000, N:00000000b53b7878,\n[ 1759.599825]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1759.599837]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1759.599846]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1760.159810]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1760.159823]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1760.258306]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb5, adc_result=3726\n[ 1760.720627]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1760.720882]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2331\n[ 1760.721957]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1761.039795]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 167, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1761.199812]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1761.199831]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1761.263032]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb4, adc_result=3726\n[ 1761.620189]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[ 1761.622593]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb5, adc_result=3726\n[ 1761.655732]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1761.656002]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2349\n[ 1761.657540]  (0)[341:battery_thread]lbat 0 0 0 0\n[ 1761.657565]  (0)[341:battery_thread]car[-1007,0,0,0,0, cycle_car:-16,ncar:0] c:0 2294 vbat:3726 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[ 1761.657868]  (0)[341:battery_thread]tmp:31 65535 65535 hcar2:65535 lcar2:65535 time:1761 sw_iavg:-2220 -2200 1 nafg_m:0 1 0\n[ 1761.949881]  (0)[341:battery_thread]GM3log-nint-nafg 1761 1761 0 0 0 0 0\n[ 1762.239816]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1762.239830]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1762.267544] -(0)[513:python3]mt635x_auxadc_read_raw: 1 callbacks suppressed\n[ 1762.267563]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb5, adc_result=3726\n[ 1763.272060]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb6, adc_result=3726\n[ 1763.279816]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1763.279830]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1764.276465]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb3, adc_result=3725\n[ 1764.319814]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1764.319828]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1764.519779] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 508, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1764510000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1765270000000, N:00000000b53b7878,\n[ 1764.639817]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1764.639830]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1765.281063]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb3, adc_result=3725\n[ 1765.359812]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1765.359826]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1765.760625]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1765.760949]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2294\n[ 1765.762078]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1766.079958]  (0)[513:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 167, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1766.285580]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb5, adc_result=3726\n[ 1766.399816]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1766.399830]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1767.290095]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb7, adc_result=3726\n[ 1767.439809]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1767.439823]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1768.294896]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb6, adc_result=3726\n[ 1768.479813]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1768.479827]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1769.299359]  (0)[513:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb4, adc_result=3726\n[ 1769.519810]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1769.519823]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1769.529779] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1769520000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1770280000000, N:00000000b53b7878,\n[ 1769.680965]  (6)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1769.680974]  (6)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1770.560791]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1770.560802]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1770.800647]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1770800641529,20000000]\n[ 1770.800661]  (6)[400:wdtk-6][thread:400][RT:1770800657144] 2021-07-12 16:05:37.326471 UTC;android time 2021-07-12 16:05:37.326471\n[ 1770.800879]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1770800845529,19999796]\n[ 1770.801711]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1770.801930]  (6)[451:kworker/u16:0][CH3_DBG] bat_cur = -1818\n[ 1770.803087]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1771.120988]  (6)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 293, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1771.600792]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1771.600804]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1772.640784]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1772.640795]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1773.680779]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1773.680790]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1774.422270]  (0)[515:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1774.530516] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 511, 0, 0, 0, 0, 0, 109, 0, success counter cpu: 482, 0, 0, 0, 0, 0, 26, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 832, 0, 0, 0, 0, 0, 40, 0, o: 6, p: , f: 0, t:  1774520000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 9223372036854775807, N:00000000b53b7878,\n[ 1774.720786]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1774.720795]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1774.720918]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1774.720939]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1774.720947]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1775.428591]  (0)[515:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bce, adc_result=3731\n[ 1775.760895]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1775.760905]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1775.841541]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1775.841754]  (6)[451:kworker/u16:0][CH3_DBG] bat_cur = -1837\n[ 1775.842911]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1776.160640]  (0)[515:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 289, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1776.434689]  (0)[515:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1776.800891]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1776.800901]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1777.441031]  (0)[515:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1777.840897]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1777.840907]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1778.879876]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1778.879903]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1779.456390]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bad, adc_result=3724\n[ 1779.539781] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 515, 0, 0, 0, 0, 0, 109, 0, success counter cpu: 482, 0, 0, 0, 0, 0, 26, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 954, 0, 0, 0, 0, 0, 49, 0, o: , p: , f: 0, t:  1779530000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1780440000000, N:00000000b53b7878,\n[ 1779.759820]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1779.759833]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1779.919837]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1779.919851]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1780.319780]  (6)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1780.461086]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb1, adc_result=3725\n[ 1780.880481]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1780.880767]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2362\n[ 1780.881844]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1780.959846]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1780.959860]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1781.199824]  (0)[516:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 289, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1781.465563]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb1, adc_result=3725\n[ 1781.999817]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1781.999832]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1782.470174]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb2, adc_result=3725\n[ 1783.039813]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1783.039827]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1783.474581]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb1, adc_result=3725\n[ 1784.079968]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1784.079982]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1784.478976]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb1, adc_result=3725\n[ 1784.549781] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1784540000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1785470000000, N:00000000b53b7878,\n[ 1784.799838]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1784.799851]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1785.119962]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1785.119976]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1785.482793]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb1, adc_result=3725\n[ 1785.920626]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1785.920896]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2362\n[ 1785.922200]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1786.159811]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1786.159824]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1786.239795]  (0)[516:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 289, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1786.487218]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb0, adc_result=3725\n[ 1787.199812]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1787.199826]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1787.491691]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4baf, adc_result=3725\n[ 1788.239809]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1788.239823]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1788.496212]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb0, adc_result=3725\n[ 1789.279827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1789.279841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1789.500670]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb0, adc_result=3725\n[ 1789.559781] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1789550000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1790500000000, N:00000000b53b7878,\n[ 1789.839819]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1789.839832]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1789.839841]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1790.319812]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1790.319826]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1790.505095]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4baf, adc_result=3725\n[ 1790.899755]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1790899751653,20000000]\n[ 1790.899763]  (6)[400:wdtk-6][thread:400][RT:1790899759653] 2021-07-12 16:05:57.425573 UTC;android time 2021-07-12 16:05:57.425573\n[ 1790.899835]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1790899817192,19999934]\n[ 1790.960636]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1790.960906]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2410\n[ 1790.961980]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1791.279794]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 289, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1791.359811]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1791.359829]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1791.509700]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bad, adc_result=3724\n[ 1792.399849]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1792.399862]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1792.514067]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4baf, adc_result=3725\n[ 1793.439810]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1793.439824]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1793.518754]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb0, adc_result=3725\n[ 1794.479809]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1794.479823]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1794.522895]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bae, adc_result=3724\n[ 1794.569779] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1794560000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1795510000000, N:00000000b53b7878,\n[ 1794.879818]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1794.879830]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1795.519812]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1795.519826]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1795.527416]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4baf, adc_result=3725\n[ 1796.000626]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1796.000880]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2416\n[ 1796.002063]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x434, adc_result=1182\n[ 1796.319794]  (0)[516:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 289, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1796.532121]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4baf, adc_result=3725\n[ 1796.559816]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1796.559830]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1797.536774]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bad, adc_result=3724\n[ 1797.599813]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1797.599827]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1798.541279]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bae, adc_result=3724\n[ 1798.639810]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1798.639823]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1799.545951]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4baf, adc_result=3725\n[ 1799.579776] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1799570000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1800510000000, N:00000000b53b7878,\n[ 1799.679813]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1799.679826]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1799.919883]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1799.919894]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1800.550585]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bad, adc_result=3724\n[ 1800.719844]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1800.719857]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1801.040641]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1801.040891]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2416\n[ 1801.041968]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1801.359795]  (0)[516:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 289, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1801.555285]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bad, adc_result=3724\n[ 1801.759813]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1801.759827]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1802.559931]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bae, adc_result=3724\n[ 1802.799810]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1802.799824]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1803.564319]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bab, adc_result=3724\n[ 1803.839809]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1803.839823]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1804.568729]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bac, adc_result=3724\n[ 1804.589778] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1804580000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1805570000000, N:00000000b53b7878,\n[ 1804.879827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1804.879840]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1804.959821]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1804.959834]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1804.959842]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1805.573048]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bae, adc_result=3724\n[ 1805.919812]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1805.919826]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1806.080779]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1806.081105]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2410\n[ 1806.082179]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1806.399793]  (0)[516:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 289, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1806.577685]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bad, adc_result=3724\n[ 1806.959813]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1806.959826]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1807.582165]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4baf, adc_result=3725\n[ 1807.999812]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1807.999826]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1808.586620]  (0)[516:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bae, adc_result=3724\n[ 1809.040904]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1809.040914]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1809.596909] -(6)[0:swapper/6][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 16, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 2, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 938, 0, 0, 0, 0, 0, 0, 0, o: 0, p: , f: , t:  1809590000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1810990138875, N:00000000b53b7878,\n[ 1810.000918]  (6)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1810.000927]  (6)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1810.081048]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1810.081058]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1810.400863]  (6)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1811.000626]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1811000621624,20000000]\n[ 1811.000640]  (6)[400:wdtk-6][thread:400][RT:1811000636624] 2021-07-12 16:06:17.526450 UTC;android time 2021-07-12 16:06:17.526450\n[ 1811.000714]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1811000694240,19999927]\n[ 1811.120877]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1811.120887]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1811.121905]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1811.122120]  (6)[451:kworker/u16:0][CH3_DBG] bat_cur = -1837\n[ 1811.123273]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1811.440732]  (6)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 294, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1812.160881]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1812.160892]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1813.200678]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1813.200691]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1813.708655]  (0)[518:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcc, adc_result=3730\n[ 1814.240993]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1814.241020]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1814.600506] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 509, 0, 0, 0, 0, 0, 104, 0, success counter cpu: 485, 0, 0, 0, 0, 0, 24, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 829, 0, 0, 0, 0, 0, 33, 0, o: 6, p: , f: 0, t:  1814590000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 9223372036854775807, N:00000000b53b7878,\n[ 1814.714644]  (0)[518:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcb, adc_result=3730\n[ 1815.040936]  (6)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1815.040945]  (6)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1815.280877]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1815.280888]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1815.720757]  (0)[518:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bca, adc_result=3730\n[ 1816.161538]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1816.161777]  (6)[451:kworker/u16:0][CH3_DBG] bat_cur = -1818\n[ 1816.162931]  (6)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1816.320869]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1816.320880]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1816.480734]  (0)[518:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 289, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1816.726067]  (0)[518:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bcd, adc_result=3730\n[ 1817.360875]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1817.360884]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1818.399860]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1818.399884]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1818.742055]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bab, adc_result=3724\n[ 1819.439833]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1819.439851]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1819.609781] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 511, 0, 0, 0, 0, 0, 81, 0, success counter cpu: 484, 0, 0, 0, 0, 0, 19, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 962, 0, 0, 0, 0, 0, 40, 0, o: , p: , f: 0, t:  1819600000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1819770000000, N:00000000b53b7878,\n[ 1819.746628]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4baa, adc_result=3724\n[ 1820.079972]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1820.079984]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1820.079993]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1820.479816]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1820.479830]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1820.751129]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4baa, adc_result=3724\n[ 1821.200502]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1821.200771]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2471\n[ 1821.202076]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1821.519852]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 222, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1821.519883]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1821.519900]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1821.755529]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4baa, adc_result=3724\n[ 1821.950233]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[ 1821.952573]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba9, adc_result=3723\n[ 1821.985553]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1821.985804]  (0)[341:battery_thread][CH3_DBG] bat_cur = -2563\n[ 1821.986874]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1821.987156]  (0)[341:battery_thread]lbat 0 0 0 0\n[ 1821.987178]  (0)[341:battery_thread]car[-1045,0,0,0,0, cycle_car:-16,ncar:0] c:0 2471 vbat:3723 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[ 1821.987580]  (0)[341:battery_thread]tmp:31 65535 65535 hcar2:65535 lcar2:65535 time:1821 sw_iavg:-2280 -2270 1 nafg_m:0 1 0\n[ 1821.988417]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1822.279865]  (0)[341:battery_thread]GM3log-nint-nafg 1821 1821 0 0 0 0 0\n[ 1822.559831]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1822.559845]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1822.760038]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba7, adc_result=3723\n[ 1823.599809]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1823.599824]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1823.764401]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba6, adc_result=3723\n[ 1824.619780] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 510, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1824610000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1824750000000, N:00000000b53b7878,\n[ 1824.639807]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1824.639820]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1824.768825]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba7, adc_result=3723\n[ 1825.119966]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1825.119980]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1825.679807]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1825.679821]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1825.773022]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba7, adc_result=3723\n[ 1826.240623]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1826.240904]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2478\n[ 1826.242208]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x436, adc_result=1184\n[ 1826.559798]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 222, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1826.719806]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1826.719824]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1826.777432]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba9, adc_result=3723\n[ 1827.759805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1827.759820]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1827.782148]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba9, adc_result=3723\n[ 1828.786551]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba8, adc_result=3723\n[ 1828.799816]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1828.799830]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1829.629778] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1829620000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1829810000000, N:00000000b53b7878,\n[ 1829.790946]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba5, adc_result=3723\n[ 1829.839807]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1829.839822]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1830.159813]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1830.159825]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1830.795635]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba8, adc_result=3723\n[ 1830.879808]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1830.879821]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1831.099755]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1831099751518,20000000]\n[ 1831.099763]  (6)[400:wdtk-6][thread:400][RT:1831099759518] 2021-07-12 16:06:37.625573 UTC;android time 2021-07-12 16:06:37.625573\n[ 1831.099834]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1831099816749,19999935]\n[ 1831.280617]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1831.280933]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2502\n[ 1831.282005]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1831.599792]  (0)[519:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 222, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1831.800305]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba8, adc_result=3723\n[ 1831.919810]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1831.919824]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1832.804654]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4baa, adc_result=3724\n[ 1832.959836]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1832.959849]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1833.809308]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba8, adc_result=3723\n[ 1833.999806]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1833.999820]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1834.639776] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 506, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1834630000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1834790000000, N:00000000b53b7878,\n[ 1834.813057]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba6, adc_result=3723\n[ 1835.039807]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1835.039821]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1835.199825]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1835.199837]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1835.199845]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1835.817697]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba7, adc_result=3723\n[ 1836.080012]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1836.080026]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1836.320685]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f5, adc_result=2800\n[ 1836.320953]  (0)[451:kworker/u16:0][CH3_DBG] bat_cur = -2471\n[ 1836.322602]  (0)[451:kworker/u16:0]BAT_TEMP_PREV:1183,BAT_TEMP:1183,VBIF28:2798\n[ 1836.322622]  (0)[451:kworker/u16:0]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1836.639812]  (0)[519:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 222, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1836.822431]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba8, adc_result=3723\n[ 1837.119956]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1837.119969]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1837.827066]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba5, adc_result=3723\n[ 1838.159808]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1838.159822]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1838.831524]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba7, adc_result=3723\n[ 1839.199819]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1839.199832]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1839.649776] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1839640000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1839810000000, N:00000000b53b7878,\n[ 1839.836191]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba9, adc_result=3723\n[ 1840.239822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1840.239835]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1840.239903]  (0)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1840.239911]  (0)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1840.479788]  (6)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1840.840924]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba6, adc_result=3723\n[ 1841.279811]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1841.279824]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1841.360714]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1841.361052]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2471\n[ 1841.362125]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x434, adc_result=1182\n[ 1841.679792]  (0)[519:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 222, r13 = 0xc4001ea4, debug_flag = 0xfc1c1000 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1841.845328]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba6, adc_result=3723\n[ 1842.319807]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1842.319822]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1842.849933]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba3, adc_result=3722\n[ 1843.359806]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1843.359819]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1843.854535]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bab, adc_result=3724\n[ 1844.399803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1844.399817]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1844.659775] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1844650000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1844820000000, N:00000000b53b7878,\n[ 1844.858912]  (0)[519:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba6, adc_result=3723\n[ 1845.280805]  (6)[451:kworker/u16:0][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1845.280815]  (6)[451:kworker/u16:0][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1845.440886]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1845.440895]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1846.250614]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[ 1846.401471]  (6)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1846.401692]  (6)[462:kworker/u16:1][CH3_DBG] bat_cur = -1855\n[ 1846.402841]  (6)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1846.480831]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1846.480840]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1846.720677]  (6)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 291, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000015 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1847.520828]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1847.520839]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1848.560694]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1848.560705]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1849.600697]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1849.600706]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1849.660467] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 512, 0, 0, 0, 0, 0, 84, 0, success counter cpu: 500, 0, 0, 0, 0, 0, 29, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 546, 0, 0, 0, 0, 0, 0, 0, o: 6, p: , f: 0, t:  1849650000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1851190138339, N:00000000b53b7878,\n[ 1849.981641]  (0)[521:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1850.320787]  (6)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1850.320796]  (6)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1850.320799]  (6)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1850.640693]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1850.640703]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1850.987130]  (0)[521:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc9, adc_result=3730\n[ 1851.200577]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1851200571489,20000000]\n[ 1851.200590]  (6)[400:wdtk-6][thread:400][RT:1851200586643] 2021-07-12 16:06:57.726400 UTC;android time 2021-07-12 16:06:57.726400\n[ 1851.200839]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1851200819489,19999752]\n[ 1851.441605]  (6)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1851.441883]  (6)[462:kworker/u16:1][CH3_DBG] bat_cur = -1800\n[ 1851.443042]  (6)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1851.680690]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1851.680699]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1851.760681]  (0)[521:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 294, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1851.993381]  (0)[521:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc6, adc_result=3729\n[ 1852.720684]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1852.720694]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1852.999565]  (0)[521:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc7, adc_result=3729\n[ 1853.760691]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1853.760701]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1854.669787] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 515, 0, 0, 0, 0, 0, 107, 0, success counter cpu: 492, 0, 0, 0, 0, 0, 23, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 826, 0, 0, 0, 0, 0, 34, 0, o: , p: , f: 0, t:  1854660000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1855000000000, N:00000000b53b7878,\n[ 1854.799849]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1854.799864]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1855.013586]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9f, adc_result=3721\n[ 1855.359819]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1855.359831]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1855.839835]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1855.839849]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1856.018306]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9f, adc_result=3721\n[ 1856.480768]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1856.481046]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2563\n[ 1856.482116]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1856.799797]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 291, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1856.879816]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1856.879835]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1857.022747]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba2, adc_result=3722\n[ 1857.919850]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1857.919863]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1858.027160]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba1, adc_result=3722\n[ 1858.959805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1858.959819]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1859.031806]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba0, adc_result=3722\n[ 1859.679785] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1859670000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1859990000000, N:00000000b53b7878,\n[ 1859.999810]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1859.999823]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1860.036421]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba0, adc_result=3722\n[ 1860.399815]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1860.399827]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1861.039739]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1861.039753]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1861.041002]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba1, adc_result=3722\n[ 1861.520615]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1861.520873]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2581\n[ 1861.522173]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1861.839795]  (0)[522:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 291, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1862.045582]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9c, adc_result=3721\n[ 1862.079961]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1862.079974]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1863.049986]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9f, adc_result=3721\n[ 1863.119951]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1863.119964]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1864.054269]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba0, adc_result=3722\n[ 1864.159807]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1864.159820]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1864.689783] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1864680000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1864950000000, N:00000000b53b7878,\n[ 1865.058882]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9f, adc_result=3721\n[ 1865.199809]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1865.199822]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1865.439993]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1865.440004]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1865.440012]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1866.062842]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9e, adc_result=3721\n[ 1866.239841]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1866.239854]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1866.560613]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1866.560848]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2593\n[ 1866.562149]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1866.879793]  (0)[522:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 291, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1867.067271]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba0, adc_result=3722\n[ 1867.279810]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1867.279823]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1868.071653]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9c, adc_result=3721\n[ 1868.319806]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1868.319819]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1869.075987]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9f, adc_result=3721\n[ 1869.359815]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1869.359829]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1869.699784] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1869690000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1869900000000, N:00000000b53b7878,\n[ 1870.080341]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9f, adc_result=3721\n[ 1870.399808]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1870.399821]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1870.479814]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1870.479826]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1870.559780]  (6)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1871.084988]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba2, adc_result=3722\n[ 1871.299748]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1871299745384,20000000]\n[ 1871.299755]  (6)[400:wdtk-6][thread:400][RT:1871299752230] 2021-07-12 16:07:17.825566 UTC;android time 2021-07-12 16:07:17.825566\n[ 1871.299817]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1871299799922,19999945]\n[ 1871.439813]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1871.439826]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1871.600617]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1871.600886]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2575\n[ 1871.602103]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1871.919812]  (0)[522:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 291, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1872.089417]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba2, adc_result=3722\n[ 1872.479812]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1872.479826]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1873.094045]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba1, adc_result=3722\n[ 1873.519809]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1873.519822]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1874.098653]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9c, adc_result=3721\n[ 1874.559809]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1874.559822]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1874.709786] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1874700000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1874850000000, N:00000000b53b7878,\n[ 1875.102717]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba0, adc_result=3722\n[ 1875.519814]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1875.519826]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1875.599808]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1875.599822]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1876.107385]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4ba3, adc_result=3722\n[ 1876.639822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1876.639836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1876.640706]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1876.640955]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2575\n[ 1876.642255]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x434, adc_result=1182\n[ 1876.959794]  (0)[522:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 291, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1877.111801]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9f, adc_result=3721\n[ 1877.679805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1877.679818]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1878.116413]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9e, adc_result=3721\n[ 1878.719803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1878.719817]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1879.120983]  (0)[522:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9a, adc_result=3721\n[ 1879.710470] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 11, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 1, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 962, 0, 0, 0, 0, 0, 0, 0, o: 6, p: , f: 0, t:  1879700000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1891390130649, N:00000000b53b7878,\n[ 1879.760698]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1879.760707]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1880.560873]  (6)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1880.560881]  (6)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1880.560883]  (6)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1880.800686]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1880.800697]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1881.681602]  (6)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1881.681814]  (6)[329:kworker/u16:3][CH3_DBG] bat_cur = -1818\n[ 1881.682961]  (6)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x435, adc_result=1183\n[ 1881.840619]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1881.840630]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1882.000678]  (6)[341:battery_thread][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 295, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1882.280909]  (6)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[ 1882.283343]  (6)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbb, adc_result=3727\n[ 1882.591214]  (6)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1882.591449]  (6)[341:battery_thread][CH3_DBG] bat_cur = -1837\n[ 1882.592596]  (6)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x434, adc_result=1182\n[ 1882.592929]  (6)[341:battery_thread]lbat 0 0 0 0\n[ 1882.592934]  (6)[341:battery_thread]car[-1086,0,0,0,0, cycle_car:-16,ncar:0] c:0 1751 vbat:3727 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[ 1882.593206]  (6)[341:battery_thread]tmp:31 65535 65535 hcar2:65535 lcar2:65535 time:1882 sw_iavg:-2460 -2432 1 nafg_m:0 1 0\n[ 1882.880715]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1882.880725]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1882.890707]  (6)[341:battery_thread]GM3log-nint-nafg 1882 1882 0 0 0 0 0\n[ 1883.920707]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1883.920717]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1884.243931]  (0)[525:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1884.720461] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 542, 0, 0, 0, 0, 0, 119, 0, success counter cpu: 500, 0, 0, 0, 0, 0, 35, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 509, 0, 0, 0, 0, 0, 0, 0, o: 6, p: , f: 0, t:  1884710000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1891390130649, N:00000000b53b7878,\n[ 1884.960709]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1884.960719]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1885.250108]  (0)[525:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc5, adc_result=3729\n[ 1885.600855]  (6)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1885.600862]  (6)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1886.000711]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1886.000720]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1886.255461]  (0)[525:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc7, adc_result=3729\n[ 1886.721371]  (6)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1886.721608]  (6)[329:kworker/u16:3][CH3_DBG] bat_cur = -1818\n[ 1886.722764]  (6)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x434, adc_result=1182\n[ 1887.040706]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1887.040716]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1887.040742]  (0)[525:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 291, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000011 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1887.261720]  (0)[525:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc4, adc_result=3729\n[ 1888.080987]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1888.080996]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1889.120030]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1889.120054]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1889.276697]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9b, adc_result=3721\n[ 1889.729784] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 510, 0, 0, 0, 0, 0, 64, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 15, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 648, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1889720000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1890280000000, N:00000000b53b7878,\n[ 1890.159828]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1890.159841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1890.281415]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b99, adc_result=3720\n[ 1890.639813]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1890.639826]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1891.199811]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1891.199824]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1891.285751]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9a, adc_result=3721\n[ 1891.399778]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1891399774355,20000000]\n[ 1891.399786]  (6)[400:wdtk-6][thread:400][RT:1891399782431] 2021-07-12 16:07:37.925596 UTC;android time 2021-07-12 16:07:37.925596\n[ 1891.399835]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1891399818124,19999956]\n[ 1891.760615]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1891.760890]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2673\n[ 1891.761960]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x434, adc_result=1182\n[ 1892.079944]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 284, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1892.239800]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1892.239818]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1892.290223]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9a, adc_result=3721\n[ 1893.279805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1893.279818]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1893.294710]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9a, adc_result=3721\n[ 1894.299054]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b99, adc_result=3720\n[ 1894.319806]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1894.319819]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1894.739783] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1894730000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1895280000000, N:00000000b53b7878,\n[ 1895.303005]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b99, adc_result=3720\n[ 1895.359805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1895.359818]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1895.679813]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1895.679825]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1895.679834]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1896.307553]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9b, adc_result=3721\n[ 1896.399801]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1896.399814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1896.800624]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1896.800897]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2679\n[ 1896.802065]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1897.119941]  (0)[526:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 284, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1897.311915]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b99, adc_result=3720\n[ 1897.439806]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1897.439819]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1898.316495]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9b, adc_result=3721\n[ 1898.479803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1898.479816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1899.321039]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b97, adc_result=3720\n[ 1899.519829]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1899.519842]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1899.749780] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1899740000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1900320000000, N:00000000b53b7878,\n[ 1900.325559]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b98, adc_result=3720\n[ 1900.559802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1900.559815]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1900.639771]  (6)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1900.719810]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1900.719822]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1901.329938]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b99, adc_result=3720\n[ 1901.599863]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1901.599876]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1901.840679]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1901.840937]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2752\n[ 1901.842005]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1902.159794]  (0)[526:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 284, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1902.334218]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b99, adc_result=3720\n[ 1902.639805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1902.639818]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1903.338582]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9b, adc_result=3721\n[ 1903.679806]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1903.679819]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1904.342959]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b99, adc_result=3720\n[ 1904.719802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1904.719815]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1904.759781] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1904750000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1905350000000, N:00000000b53b7878,\n[ 1905.347295]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b98, adc_result=3720\n[ 1905.759863]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1905.759876]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1905.759975]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1905.759984]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1906.351940]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b99, adc_result=3720\n[ 1906.799805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1906.799817]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1906.880609]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1906.880854]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2679\n[ 1906.881923]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1907.199796]  (0)[526:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 284, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1907.356277]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9b, adc_result=3721\n[ 1907.839806]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1907.839819]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1908.360836]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b9a, adc_result=3721\n[ 1908.879802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1908.879815]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1909.365153]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b99, adc_result=3720\n[ 1909.769781] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1909760000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1910330000000, N:00000000b53b7878,\n[ 1909.919801]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1909.919814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1910.369598]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b98, adc_result=3720\n[ 1910.799812]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1910.799824]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1910.799832]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1910.959800]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1910.959812]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1911.374088]  (0)[526:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b98, adc_result=3720\n[ 1911.499748]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1911499745479,20000000]\n[ 1911.499755]  (6)[400:wdtk-6][thread:400][RT:1911499751710] 2021-07-12 16:07:58.25565 UTC;android time 2021-07-12 16:07:58.25565\n[ 1911.499842]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1911499824864,19999921]\n[ 1911.921596]  (6)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1911.921831]  (6)[329:kworker/u16:3][CH3_DBG] bat_cur = -1812\n[ 1911.922979]  (6)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x434, adc_result=1182\n[ 1912.000714]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1912.000723]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1912.240783]  (6)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 291, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000015 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1913.040703]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1913.040714]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1914.080874]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1914.080883]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1914.770457] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 514, 0, 0, 0, 0, 0, 57, 0, success counter cpu: 500, 0, 0, 0, 0, 0, 13, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 704, 0, 0, 0, 0, 0, 2, 0, o: 6, p: , f: 0, t:  1914760000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1931590129343, N:00000000b53b7878,\n[ 1915.120703]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1915.120714]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1915.840741]  (6)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1915.840751]  (6)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1916.160798]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1916.160807]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1916.495652]  (0)[528:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc2, adc_result=3728\n[ 1916.961455]  (6)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1916.961687]  (6)[329:kworker/u16:3][CH3_DBG] bat_cur = -1837\n[ 1916.962833]  (6)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x434, adc_result=1182\n[ 1917.200821]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1917.200830]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1917.280572]  (0)[528:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 291, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1917.501830]  (0)[528:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc2, adc_result=3728\n[ 1918.240808]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1918.240816]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1918.507229]  (0)[528:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc1, adc_result=3728\n[ 1919.280814]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1919.280823]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1919.513460]  (0)[528:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc3, adc_result=3728\n[ 1919.780457] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 514, 0, 0, 0, 0, 0, 87, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 20, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, o: 6, p: , f: 0, t:  1919770000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1931590129343, N:00000000b53b7878,\n[ 1920.320814]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1920.320824]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1920.879815]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1920.879838]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1921.359837]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1921.359853]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1921.529074]  (0)[529:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b8e, adc_result=3718\n[ 1922.000620]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1922.000855]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2850\n[ 1922.001934]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1922.319791]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 139, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1922.399841]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1922.399860]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1922.533209]  (0)[529:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b92, adc_result=3719\n[ 1923.439845]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1923.439858]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1923.537749]  (0)[529:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b8e, adc_result=3718\n[ 1924.479804]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1924.479817]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1924.542305]  (0)[529:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b8a, adc_result=3717\n[ 1924.789782] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 502, 0, 0, 0, 0, 0, 12, 0, success counter cpu: 500, 0, 0, 0, 0, 0, 3, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 924, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1924780000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1925550000000, N:00000000b53b7878,\n[ 1925.519802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1925.519816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1925.546670]  (0)[529:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b8e, adc_result=3718\n[ 1925.919810]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1925.919822]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1925.919831]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1926.551166]  (0)[529:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b8f, adc_result=3718\n[ 1926.559811]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1926.559825]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1927.040623]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1927.040857]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2819\n[ 1927.042158]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x434, adc_result=1182\n[ 1927.359792]  (0)[529:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 139, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1927.555692]  (0)[529:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b8e, adc_result=3718\n[ 1927.599801]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1927.599814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1928.560059]  (0)[529:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b90, adc_result=3719\n[ 1928.639800]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1928.639813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1929.564506]  (0)[529:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b8c, adc_result=3718\n[ 1929.679808]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1929.679821]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1929.799778] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1929790000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1930530000000, N:00000000b53b7878,\n[ 1930.569052]  (0)[529:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b8d, adc_result=3718\n[ 1930.719774]  (6)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1930.719867]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1930.719885]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1930.959872]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1930.959883]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1931.573041]  (0)[529:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b8f, adc_result=3718\n[ 1931.599770]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1931599766835,20000000]\n[ 1931.599776]  (6)[400:wdtk-6][thread:400][RT:1931599773604] 2021-07-12 16:08:18.125587 UTC;android time 2021-07-12 16:08:18.125587\n[ 1931.599800]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1931599782220,19999985]\n[ 1931.759825]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1931.759838]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1932.080751]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1932.081022]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -2868\n[ 1932.082091]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1932.399790]  (0)[529:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 139, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1932.577347]  (0)[529:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b8c, adc_result=3718\n[ 1932.799803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1932.799816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1933.581945]  (0)[529:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b8d, adc_result=3718\n[ 1933.839798]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1933.839811]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1934.586504]  (0)[529:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b8c, adc_result=3718\n[ 1934.809778] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1934800000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1935610000000, N:00000000b53b7878,\n[ 1934.879797]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1934.879810]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1935.591054]  (0)[529:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b8f, adc_result=3718\n[ 1935.919800]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1935.919813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1935.999808]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1935.999819]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1936.595375]  (0)[529:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b8a, adc_result=3717\n[ 1936.959798]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1936.959811]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1937.120868]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1937.121119]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -2899\n[ 1937.122187]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1937.439790]  (0)[529:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 139, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1937.599925]  (0)[529:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b8d, adc_result=3718\n[ 1937.999800]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1937.999813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1938.604166]  (0)[529:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b8d, adc_result=3718\n[ 1939.039800]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1939.039813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1939.608582]  (0)[529:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b8b, adc_result=3718\n[ 1939.819778] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1939810000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1940590000000, N:00000000b53b7878,\n[ 1940.079943]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1940.079956]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1940.612739]  (0)[529:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b8d, adc_result=3718\n[ 1941.039808]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1941.039820]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1941.039828]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1941.119941]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1941.119954]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1941.617272]  (0)[529:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b87, adc_result=3717\n[ 1942.160697]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1942.160707]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1942.161542]  (6)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1942.161764]  (6)[329:kworker/u16:3][CH3_DBG] bat_cur = -1770\n[ 1942.162921]  (6)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1942.480671]  (6)[341:battery_thread][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 291, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1942.891106]  (6)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[ 1942.893472]  (6)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb2, adc_result=3725\n[ 1943.200751]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1943.200778]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1943.221363]  (6)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1943.221578]  (6)[341:battery_thread][CH3_DBG] bat_cur = -1818\n[ 1943.222721]  (6)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1943.223043]  (6)[341:battery_thread]lbat 0 0 0 0\n[ 1943.223047]  (6)[341:battery_thread]car[-1129,0,0,0,0, cycle_car:-16,ncar:0] c:0 1770 vbat:3725 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[ 1943.223299]  (6)[341:battery_thread]tmp:31 65535 65535 hcar2:65535 lcar2:65535 time:1943 sw_iavg:-2580 -2578 1 nafg_m:0 1 0\n[ 1943.520831]  (6)[341:battery_thread]GM3log-nint-nafg 1943 1943 0 0 0 0 0\n[ 1944.240599]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1944.240609]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1944.820452] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 542, 0, 0, 0, 0, 0, 119, 0, success counter cpu: 483, 0, 0, 0, 0, 0, 26, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 866, 0, 0, 0, 0, 0, 44, 0, o: 6, p: , f: 0, t:  1944810000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 9223372036854775807, N:00000000b53b7878,\n[ 1945.280597]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1945.280605]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1946.080876]  (6)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1946.080886]  (6)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1946.320805]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1946.320814]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1946.738531]  (0)[531:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbf, adc_result=3728\n[ 1947.201574]  (6)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1947.201881]  (6)[462:kworker/u16:1][CH3_DBG] bat_cur = -1757\n[ 1947.203024]  (6)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1947.360848]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1947.360874]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1947.520543]  (0)[531:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 292, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1947.744571]  (0)[531:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbe, adc_result=3727\n[ 1948.400805]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1948.400813]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1948.750578]  (0)[531:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbd, adc_result=3727\n[ 1949.440802]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1949.440811]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1949.755814]  (0)[531:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbd, adc_result=3727\n[ 1949.830451] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 515, 0, 0, 0, 0, 0, 133, 0, success counter cpu: 473, 0, 0, 0, 0, 0, 35, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 935, 0, 0, 0, 0, 0, 68, 0, o: 6, p: , f: 0, t:  1949820000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 9223372036854775807, N:00000000b53b7878,\n[ 1950.480799]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1950.480808]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1951.119981]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1951.120004]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1951.519840]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1951.519856]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1951.699749]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1951699745960,20000000]\n[ 1951.699756]  (6)[400:wdtk-6][thread:400][RT:1951699752652] 2021-07-12 16:08:38.225566 UTC;android time 2021-07-12 16:08:38.225566\n[ 1951.699825]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1951699808729,19999937]\n[ 1951.771465]  (0)[532:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b83, adc_result=3716\n[ 1952.240615]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1952.241008]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -3063\n[ 1952.242308]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1952.559856]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 218, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1952.559889]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1952.559906]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1952.775938]  (0)[532:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b83, adc_result=3716\n[ 1953.599804]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1953.599817]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1953.780396]  (0)[532:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b84, adc_result=3716\n[ 1954.639796]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1954.639810]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1954.784910]  (0)[532:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b80, adc_result=3716\n[ 1954.839777] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 23, 0, success counter cpu: 495, 0, 0, 0, 0, 0, 7, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 989, 0, 0, 0, 0, 0, 14, 0, o: , p: , f: 0, t:  1954830000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1955810000000, N:00000000b53b7878,\n[ 1955.679795]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1955.679809]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1955.789483]  (0)[532:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b83, adc_result=3716\n[ 1956.159805]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1956.159836]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1956.159845]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1956.719793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1956.719806]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1956.794087]  (0)[532:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b82, adc_result=3716\n[ 1957.280605]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1957.280880]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -3106\n[ 1957.282179]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x433, adc_result=1181\n[ 1957.599816]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 218, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1957.759806]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1957.759824]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1957.798608]  (0)[532:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b83, adc_result=3716\n[ 1958.799807]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1958.799821]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1958.803001]  (0)[532:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b82, adc_result=3716\n[ 1959.807517]  (0)[532:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b7c, adc_result=3715\n[ 1959.839814]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1959.839827]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1959.849775] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1959840000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1960790000000, N:00000000b53b7878,\n[ 1960.799764]  (6)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1960.812223]  (0)[532:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b7b, adc_result=3715\n[ 1960.879803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1960.879816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1961.199806]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1961.199819]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1961.816771]  (0)[532:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b7e, adc_result=3715\n[ 1961.919798]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1961.919812]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1962.320703]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 1962.321027]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -3045\n[ 1962.322094]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1962.639786]  (0)[532:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 218, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1962.821311]  (0)[532:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b80, adc_result=3716\n[ 1962.959813]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1962.959826]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1963.825858]  (0)[532:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b80, adc_result=3716\n[ 1963.999798]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1963.999811]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1964.830408]  (0)[532:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b7d, adc_result=3715\n[ 1964.859775] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1964850000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1965810000000, N:00000000b53b7878,\n[ 1965.039795]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1965.039809]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1965.835012]  (0)[532:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b7e, adc_result=3715\n[ 1966.079939]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1966.079952]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1966.239803]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1966.239815]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1966.839502]  (0)[532:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b7e, adc_result=3715\n[ 1967.119994]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1967.120006]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1967.360664]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1967.360896]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -3057\n[ 1967.362195]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1967.679785]  (0)[532:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 218, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1967.844082]  (0)[532:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b80, adc_result=3716\n[ 1968.159796]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1968.159809]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1968.848657]  (0)[532:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b7d, adc_result=3715\n[ 1969.129764]  (0)[0:swapper/0][mtk_net][rtnl_lock]There is no process hold rtnl lock\n[ 1969.199793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1969.199806]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1969.852986]  (0)[532:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b80, adc_result=3716\n[ 1969.869775] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1969860000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1970850000000, N:00000000b53b7878,\n[ 1970.239795]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1970.239809]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1971.280698]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1971.280706]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1971.280776]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1971.280799]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1971.280808]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1971.800538]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1971800528392,20000000]\n[ 1971.800549]  (6)[400:wdtk-6][thread:400][RT:1971800546008] 2021-07-12 16:08:58.326359 UTC;android time 2021-07-12 16:08:58.326359\n[ 1971.800674]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1971800657623,19999871]\n[ 1972.320798]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1972.320808]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1972.401467]  (6)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 1972.401690]  (6)[462:kworker/u16:1][CH3_DBG] bat_cur = -1855\n[ 1972.402831]  (6)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1972.720655]  (6)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 292, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000015 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1973.360797]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1973.360807]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1974.400801]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1974.400809]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1974.870448] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 516, 0, 0, 0, 0, 0, 100, 0, success counter cpu: 490, 0, 0, 0, 0, 0, 21, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 804, 0, 0, 0, 0, 0, 28, 0, o: 6, p: , f: 0, t:  1974860000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 9223372036854775807, N:00000000b53b7878,\n[ 1974.974615]  (0)[534:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbe, adc_result=3727\n[ 1975.440799]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1975.440808]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1975.980703]  (0)[534:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bba, adc_result=3727\n[ 1976.320697]  (6)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1976.320706]  (6)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1976.480799]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1976.480808]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1976.985824]  (0)[534:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbf, adc_result=3728\n[ 1977.441474]  (6)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1977.441701]  (6)[329:kworker/u16:3][CH3_DBG] bat_cur = -1788\n[ 1977.442842]  (6)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x432, adc_result=1179\n[ 1977.520792]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1977.520800]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1977.760754]  (0)[534:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 295, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000015 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1977.992048]  (0)[534:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbe, adc_result=3727\n[ 1978.560792]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1978.560801]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1979.599845]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1979.599869]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1979.879778] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 513, 0, 0, 0, 0, 0, 124, 0, success counter cpu: 473, 0, 0, 0, 0, 0, 31, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 937, 0, 0, 0, 0, 0, 62, 0, o: , p: , f: 0, t:  1979870000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1980070000000, N:00000000b53b7878,\n[ 1980.007784]  (0)[535:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b74, adc_result=3713\n[ 1980.639827]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1980.639841]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1981.012370]  (0)[535:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b75, adc_result=3713\n[ 1981.359807]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1981.359820]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1981.679802]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1981.679817]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1982.016997]  (0)[535:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b76, adc_result=3714\n[ 1982.480628]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1982.480892]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -3210\n[ 1982.481962]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1982.719801]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1982.719815]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1982.799788]  (0)[535:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 91, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1983.021458]  (0)[535:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b76, adc_result=3714\n[ 1983.759796]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1983.759809]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1984.025966]  (0)[535:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b74, adc_result=3713\n[ 1984.799796]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1984.799809]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1984.889776] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1984880000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1985030000000, N:00000000b53b7878,\n[ 1985.030424]  (0)[535:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b75, adc_result=3713\n[ 1985.839795]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1985.839808]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1986.034968]  (0)[535:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b75, adc_result=3713\n[ 1986.399806]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 1986.399818]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1986.399826]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1986.879795]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1986.879808]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1987.039306]  (0)[535:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b72, adc_result=3713\n[ 1987.520710]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f5, adc_result=2800\n[ 1987.520973]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -3271\n[ 1987.522270]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42f, adc_result=1176\n[ 1987.839784]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 91, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1987.919805]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1987.919823]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1988.042709]  (0)[535:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b75, adc_result=3713\n[ 1988.959795]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1988.959809]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1989.047133]  (0)[535:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b74, adc_result=3713\n[ 1989.899775] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1989890000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1990060000000, N:00000000b53b7878,\n[ 1989.999795]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1989.999808]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1990.051853]  (0)[535:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b74, adc_result=3713\n[ 1990.879761]  (6)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 1991.039798]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1991.039811]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1991.056426]  (0)[535:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b74, adc_result=3713\n[ 1991.439804]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1991.439815]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1991.899740]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[1991899737056,20000000]\n[ 1991.899746]  (6)[400:wdtk-6][thread:400][RT:1991899743210] 2021-07-12 16:09:18.425557 UTC;android time 2021-07-12 16:09:18.425557\n[ 1991.899851]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[1991899836440,19999900]\n[ 1992.061065]  (0)[535:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b70, adc_result=3712\n[ 1992.079940]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1992.079953]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1992.560605]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1992.560876]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -3265\n[ 1992.561944]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x431, adc_result=1178\n[ 1992.879794]  (0)[535:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 91, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1993.065379]  (0)[535:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b71, adc_result=3713\n[ 1993.119949]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1993.119962]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1994.069697]  (0)[535:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b74, adc_result=3713\n[ 1994.159795]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1994.159809]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1994.909773] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  1994900000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 1995090000000, N:00000000b53b7878,\n[ 1995.074192]  (0)[535:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b73, adc_result=3713\n[ 1995.199795]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1995.199808]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1996.078650]  (0)[535:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b73, adc_result=3713\n[ 1996.239794]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1996.239808]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1996.479865]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 1996.479876]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 1997.082723]  (0)[535:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b72, adc_result=3713\n[ 1997.279901]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1997.279914]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1997.601483]  (6)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 1997.601772]  (6)[329:kworker/u16:3][CH3_DBG] bat_cur = -1837\n[ 1997.602924]  (6)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x430, adc_result=1177\n[ 1997.920753]  (6)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 285, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000013 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 1998.320692]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1998.320703]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1999.360697]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 1999.360706]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 1999.910452] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 508, 0, 0, 0, 0, 0, 59, 0, success counter cpu: 500, 0, 0, 0, 0, 0, 16, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 743, 0, 0, 0, 0, 0, 0, 0, o: 6, p: , f: 0, t:  1999900000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 2011990120194, N:00000000b53b7878,\n[ 2000.400808]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2000.400817]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2001.440800]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2001.440810]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2001.520730]  (6)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 2001.520739]  (6)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 2001.520740]  (6)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 2002.204718]  (0)[537:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bc0, adc_result=3728\n[ 2002.480805]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2002.480813]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2002.641442]  (6)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 2002.641773]  (6)[462:kworker/u16:1][CH3_DBG] bat_cur = -1843\n[ 2002.642915]  (6)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x430, adc_result=1177\n[ 2002.960546]  (0)[537:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 298, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 2003.210685]  (0)[537:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb5, adc_result=3726\n[ 2003.520799]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2003.520807]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2003.521236]  (6)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[ 2003.523661]  (6)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bab, adc_result=3724\n[ 2003.811194]  (6)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 2003.811478]  (6)[341:battery_thread][CH3_DBG] bat_cur = -1818\n[ 2003.812619]  (6)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x430, adc_result=1177\n[ 2003.812824]  (6)[341:battery_thread]lbat 0 0 0 0\n[ 2003.812828]  (6)[341:battery_thread]car[-1174,0,0,0,0, cycle_car:-16,ncar:0] c:0 1776 vbat:3724 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[ 2003.813082]  (6)[341:battery_thread]tmp:32 65535 65535 hcar2:65535 lcar2:65535 time:2003 sw_iavg:-2700 -2810 1 nafg_m:0 1 0\n[ 2004.110832]  (6)[341:battery_thread]GM3log-nint-nafg 2003 2003 0 0 0 0 0\n[ 2004.215778]  (0)[537:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb9, adc_result=3726\n[ 2004.560824]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2004.560832]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2004.920450] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 547, 0, 0, 0, 0, 0, 117, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 31, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 512, 0, 0, 0, 0, 0, 0, 0, o: 6, p: , f: 0, t:  2004910000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 2011990120194, N:00000000b53b7878,\n[ 2005.222035]  (0)[537:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bba, adc_result=3727\n[ 2005.600809]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2005.600818]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2006.559822]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 2006.559843]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 2006.639839]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2006.639854]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2007.236721]  (0)[538:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b71, adc_result=3713\n[ 2007.679991]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2007.680006]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2007.680676]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f6, adc_result=2801\n[ 2007.680936]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -3350\n[ 2007.682113]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42f, adc_result=1176\n[ 2007.999803]  (0)[538:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 289, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 2008.241404]  (0)[538:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b72, adc_result=3713\n[ 2008.719810]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2008.719825]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2009.245964]  (0)[538:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b70, adc_result=3712\n[ 2009.759803]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2009.759816]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2009.929776] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 507, 0, 0, 0, 0, 0, 24, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 6, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 872, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  2009920000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 2010210000000, N:00000000b53b7878,\n[ 2010.250512]  (0)[538:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b6c, adc_result=3712\n[ 2010.799799]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2010.799812]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2011.255060]  (0)[538:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b6b, adc_result=3711\n[ 2011.599807]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 2011.599819]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 2011.839797]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2011.839810]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2011.999766]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[2011999763257,20000000]\n[ 2011.999772]  (6)[400:wdtk-6][thread:400][RT:2011999770104] 2021-07-12 16:09:38.525583 UTC;android time 2021-07-12 16:09:38.525583\n[ 2011.999812]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[2011999795873,19999967]\n[ 2012.259386]  (0)[538:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b6f, adc_result=3712\n[ 2012.720602]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 2012.720851]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -3344\n[ 2012.722164]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42f, adc_result=1176\n[ 2012.879798]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2012.879811]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2013.039787]  (0)[538:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 289, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 2013.262935]  (0)[538:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b6e, adc_result=3712\n[ 2013.919798]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2013.919811]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2014.267512]  (0)[538:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b6e, adc_result=3712\n[ 2014.939776] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  2014930000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 2015290000000, N:00000000b53b7878,\n[ 2014.959836]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2014.959848]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2015.271859]  (0)[538:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b70, adc_result=3712\n[ 2015.999797]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2015.999810]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2016.276245]  (0)[538:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b6b, adc_result=3711\n[ 2016.639806]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 2016.639818]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 2016.639827]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 2017.039797]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2017.039810]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2017.280566]  (0)[538:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b6d, adc_result=3712\n[ 2017.760605]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 2017.760861]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -3326\n[ 2017.761929]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x430, adc_result=1177\n[ 2018.079978]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 289, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b7, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 2018.080007]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2018.080023]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2018.285119]  (0)[538:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b6b, adc_result=3711\n[ 2019.119953]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2019.119966]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2019.289691]  (0)[538:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b6b, adc_result=3711\n[ 2019.949775] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  2019940000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 2020270000000, N:00000000b53b7878,\n[ 2020.159796]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2020.159809]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2020.294151]  (0)[538:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b6e, adc_result=3712\n[ 2020.959764]  (6)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 2021.199797]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2021.199810]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2021.298482]  (0)[538:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b6c, adc_result=3712\n[ 2021.679805]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 2021.679817]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 2022.239818]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2022.239832]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2022.302784]  (0)[538:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b6c, adc_result=3712\n[ 2022.800604]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 2022.800930]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -3356\n[ 2022.801997]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42f, adc_result=1176\n[ 2023.119934]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 289, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 2023.279795]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2023.279814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2023.307080]  (0)[538:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b6b, adc_result=3711\n[ 2024.320631]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2024.320640]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2024.950451] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 512, 0, 0, 0, 0, 0, 50, 0, success counter cpu: 491, 0, 0, 0, 0, 0, 12, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 967, 0, 0, 0, 0, 0, 23, 0, o: 6, p: , f: 0, t:  2024940000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 9223372036854775807, N:00000000b53b7878,\n[ 2025.360686]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2025.360695]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2026.400624]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2026.400634]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2026.720829]  (6)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 2026.720836]  (6)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 2027.440699]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2027.440707]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2027.841453]  (6)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 2027.841663]  (6)[462:kworker/u16:1][CH3_DBG] bat_cur = -1843\n[ 2027.842803]  (6)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42f, adc_result=1176\n[ 2028.160631]  (0)[540:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 291, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 2028.428353]  (0)[540:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb9, adc_result=3726\n[ 2028.480802]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2028.480810]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2029.434359]  (0)[540:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bba, adc_result=3727\n[ 2029.520796]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2029.520804]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2029.960452] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 515, 0, 0, 0, 0, 0, 114, 0, success counter cpu: 477, 0, 0, 0, 0, 0, 28, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 949, 0, 0, 0, 0, 0, 55, 0, o: 6, p: , f: 0, t:  2029950000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 9223372036854775807, N:00000000b53b7878,\n[ 2030.440372]  (0)[540:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb6, adc_result=3726\n[ 2030.560821]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2030.560830]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2031.445580]  (0)[540:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bbd, adc_result=3727\n[ 2031.600796]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2031.600805]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2031.760699]  (6)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 2031.760707]  (6)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 2031.760709]  (6)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 2032.100604]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[2032100593536,20000000]\n[ 2032.100616]  (6)[400:wdtk-6][thread:400][RT:2032100613767] 2021-07-12 16:09:58.626427 UTC;android time 2021-07-12 16:09:58.626427\n[ 2032.100694]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[2032100671690,19999922]\n[ 2032.639872]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2032.639896]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2032.880730]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 2032.881013]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -3503\n[ 2032.882313]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42d, adc_result=1174\n[ 2033.199787]  (0)[541:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 203, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 2033.461135]  (0)[541:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b68, adc_result=3711\n[ 2033.679822]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2033.679836]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2034.465762]  (0)[541:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b64, adc_result=3710\n[ 2034.719804]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2034.719817]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2034.969778] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 509, 0, 0, 0, 0, 0, 68, 0, success counter cpu: 488, 0, 0, 0, 0, 0, 17, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 970, 0, 0, 0, 0, 0, 32, 0, o: , p: , f: 0, t:  2034960000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 2035490000000, N:00000000b53b7878,\n[ 2035.470157]  (0)[541:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b66, adc_result=3711\n[ 2035.759798]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2035.759811]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2036.474403]  (0)[541:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b65, adc_result=3710\n[ 2036.799812]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2036.799825]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2036.799893]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 2036.799903]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 2037.478936]  (0)[541:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b65, adc_result=3710\n[ 2037.839801]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2037.839814]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2037.920605]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f0, adc_result=2794\n[ 2037.920832]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -3460\n[ 2037.921901]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42e, adc_result=1175\n[ 2038.239811]  (0)[541:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 203, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x38000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 2038.482753]  (0)[541:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b68, adc_result=3711\n[ 2038.879797]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2038.879811]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2039.487266]  (0)[541:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b65, adc_result=3710\n[ 2039.919836]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2039.919848]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2039.979776] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  2039970000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 2040470000000, N:00000000b53b7878,\n[ 2040.491629]  (0)[541:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b63, adc_result=3710\n[ 2040.959797]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2040.959810]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2041.495917]  (0)[541:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b66, adc_result=3711\n[ 2041.839803]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 2041.839816]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 2041.999793]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2041.999807]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2042.500220]  (0)[541:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b65, adc_result=3710\n[ 2042.960602]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f6, adc_result=2801\n[ 2042.960840]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -3497\n[ 2042.962138]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42f, adc_result=1176\n[ 2043.039796]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2043.039809]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2043.279808]  (0)[541:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 203, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x7c00077 0x1b8000 0x7c000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 2043.504561]  (0)[541:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b66, adc_result=3711\n[ 2044.079937]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2044.079951]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2044.508913]  (0)[541:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b65, adc_result=3710\n[ 2044.989776] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 504, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 502, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1004, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  2044980000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 2045500000000, N:00000000b53b7878,\n[ 2045.119935]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2045.119948]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2045.512715]  (0)[541:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b61, adc_result=3710\n[ 2046.159796]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2046.159810]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2046.517108]  (0)[541:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b63, adc_result=3710\n[ 2046.879804]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 2046.879816]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 2046.879824]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 2047.199811]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2047.199824]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2047.521439]  (0)[541:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b65, adc_result=3710\n[ 2048.000601]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f7, adc_result=2802\n[ 2048.000882]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -3527\n[ 2048.002181]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42c, adc_result=1173\n[ 2048.239808]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2048.239821]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2048.319785]  (0)[541:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 203, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 2048.525763]  (0)[541:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b63, adc_result=3710\n[ 2049.279795]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2049.279808]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2049.990451] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 511, 0, 0, 0, 0, 0, 35, 0, success counter cpu: 497, 0, 0, 0, 0, 0, 7, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 990, 0, 0, 0, 0, 0, 12, 0, o: 6, p: , f: 0, t:  2049980000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 9223372036854775807, N:00000000b53b7878,\n[ 2050.320669]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2050.320679]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2051.040634]  (6)[290:hang_detect][Hang_Detect] hang_detect thread counts down 2147483647:2147483647, status 0.\n[ 2051.360690]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2051.360701]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2051.920842]  (6)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 2051.920849]  (6)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 2052.200612]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[2052200599738,20000000]\n[ 2052.200637]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[2052200618199,19999982]\n[ 2052.200643]  (6)[400:wdtk-6][thread:400][RT:2052200633815] 2021-07-12 16:10:18.726447 UTC;android time 2021-07-12 16:10:18.726447\n[ 2052.400682]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2052.400692]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2053.041577]  (6)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f2, adc_result=2797\n[ 2053.041798]  (6)[329:kworker/u16:3][CH3_DBG] bat_cur = -1910\n[ 2053.042938]  (6)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42e, adc_result=1175\n[ 2053.360660]  (6)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 292, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x7c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 2053.440721]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2053.440731]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2053.648626]  (0)[543:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb5, adc_result=3726\n[ 2054.480684]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2054.480692]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2054.654586]  (0)[543:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb8, adc_result=3726\n[ 2055.000451] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 514, 0, 0, 0, 0, 0, 119, 0, success counter cpu: 485, 0, 0, 0, 0, 0, 25, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 956, 0, 0, 0, 0, 0, 48, 0, o: 6, p: , f: 0, t:  2054990000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 9223372036854775807, N:00000000b53b7878,\n[ 2055.520728]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2055.520738]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2055.660692]  (0)[543:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb2, adc_result=3725\n[ 2056.560799]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2056.560808]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2056.665957]  (0)[543:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4bb8, adc_result=3726\n[ 2056.960719]  (6)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 2056.960728]  (6)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 2057.600796]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2057.600804]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2058.080812]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 2058.081081]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -3619\n[ 2058.082381]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42e, adc_result=1175\n[ 2058.399787]  (0)[308:mddp_rx][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 215, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 2058.639840]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2058.639859]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2058.681358]  (0)[544:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b5c, adc_result=3709\n[ 2059.679819]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2059.679833]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2059.685978]  (0)[544:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b5c, adc_result=3709\n[ 2060.009777] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 511, 0, 0, 0, 0, 0, 73, 0, success counter cpu: 488, 0, 0, 0, 0, 0, 18, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 970, 0, 0, 0, 0, 0, 36, 0, o: , p: , f: 0, t:  2060000000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 2060670000000, N:00000000b53b7878,\n[ 2060.690515]  (0)[544:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b5a, adc_result=3708\n[ 2060.719854]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2060.719867]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2061.694831]  (0)[544:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b5b, adc_result=3708\n[ 2061.759815]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2061.759828]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2061.999870]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] status: 0x1000\n[ 2061.999882]  (0)[462:kworker/u16:1][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 2061.999891]  (0)[462:kworker/u16:1][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 2062.699264]  (0)[544:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b5b, adc_result=3708\n[ 2062.799835]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2062.799848]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2063.120752]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 2063.121030]  (0)[329:kworker/u16:3][CH3_DBG] bat_cur = -3656\n[ 2063.122098]  (0)[329:kworker/u16:3]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42d, adc_result=1174\n[ 2063.439810]  (0)[544:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 215, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992141b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 2063.702706]  (0)[544:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b5a, adc_result=3708\n[ 2063.839800]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2063.839813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2064.111184]  (0)[341:battery_thread][fgauge_read_boot_battery_plug_out_status] rtc_invalid 0 plugout 0 bat_plug_out_time 0 sp3:0xa5 pl:0 0\n[ 2064.113721]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b5c, adc_result=3709\n[ 2064.146711]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 2064.146968]  (0)[341:battery_thread][CH3_DBG] bat_cur = -3680\n[ 2064.148262]  (0)[341:battery_thread]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42d, adc_result=1174\n[ 2064.148502]  (0)[341:battery_thread]lbat 0 0 0 0\n[ 2064.148524]  (0)[341:battery_thread]car[-1223,0,0,0,0, cycle_car:-16,ncar:0] c:0 3588 vbat:3709 vbus:0 soc:-1 -1 gm3:0 0 0 0\n[ 2064.148829]  (0)[341:battery_thread]tmp:32 65535 65535 hcar2:65535 lcar2:65535 time:2064 sw_iavg:-2940 -3021 1 nafg_m:0 1 0\n[ 2064.439820]  (0)[341:battery_thread]GM3log-nint-nafg 2064 2064 0 0 0 0 0\n[ 2064.707312]  (0)[544:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b5b, adc_result=3708\n[ 2064.879801]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2064.879815]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2065.019778] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 514, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 501, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1002, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  2065010000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 2065130499584, N:00000000b53b7878,\n[ 2065.711926]  (0)[544:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b5d, adc_result=3709\n[ 2065.919800]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2065.919813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2066.716195]  (0)[544:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b5c, adc_result=3709\n[ 2066.959797]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2066.959810]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2067.039806]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 2067.039818]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 2067.720490]  (0)[544:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b5a, adc_result=3708\n[ 2067.999798]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2067.999811]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2068.160604]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f4, adc_result=2799\n[ 2068.160854]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -3570\n[ 2068.162508]  (0)[462:kworker/u16:1]BAT_TEMP_PREV:1174,BAT_TEMP:1172,VBIF28:2798\n[ 2068.162528]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42b, adc_result=1172\n[ 2068.479824]  (0)[544:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 215, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b3, req_sta =  0x5c00077 0x1b8000 0x50000017 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x184255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 2068.725002]  (0)[544:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b5a, adc_result=3708\n[ 2069.039799]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2069.039813]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2069.729514]  (0)[544:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b5a, adc_result=3708\n[ 2070.029776] -(0)[0:swapper/0][name:bc&]tick broadcast enter counter cpu: 505, 0, 0, 0, 0, 0, 0, 0, success counter cpu: 503, 0, 0, 0, 0, 0, 0, 0, fail counter cpu: 0, 0, 0, 0, 0, 0, 0, 0, interrupt counter cpu: 1006, 0, 0, 0, 0, 0, 0, 0, o: , p: , f: 0, t:  2070020000000, N:000000006181971d, N:00000000501fdfc7, N:00000000efec440b, N:0000000020aaadeb, N:00000000363fa6fa, 2070730000000, N:00000000b53b7878,\n[ 2070.079937]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2070.079950]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2070.733799]  (0)[544:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b5c, adc_result=3709\n[ 2071.119937]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2071.119951]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2071.738302]  (0)[544:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b5c, adc_result=3709\n[ 2072.079944]  (0)[329:kworker/u16:3][Thermal/TC/TA][wakeup_ta_algo] error,g_tad_pid=0\n[ 2072.079956]  (0)[329:kworker/u16:3][Thermal/TZ/BTS]wakeup_ta_algo out of memory\n[ 2072.159836]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2072.159849]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2072.299769]  (6)[400:wdtk-6][wdk-c] cpu=6,lbit=0x40,cbit=0x41,6,1,1460965842944,0,0,[2072299766170,20000000]\n[ 2072.299775]  (6)[400:wdtk-6][thread:400][RT:2072299772401] 2021-07-12 16:10:38.825585 UTC;android time 2021-07-12 16:10:38.825585\n[ 2072.299827]  (0)[394:wdtk-0][wdk-k] cpu=0,lbit=0x41,cbit=0x41,6,1,1460965842944,0,0,[2072299809632,19999956]\n[ 2072.742855]  (0)[544:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b5a, adc_result=3708\n[ 2073.199813]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2073.199825]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2073.200692]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:VBIF, channel=11, adc_out=0x9f3, adc_result=2798\n[ 2073.200922]  (0)[462:kworker/u16:1][CH3_DBG] bat_cur = -3607\n[ 2073.201989]  (0)[462:kworker/u16:1]mt635x-auxadc mt635x-auxadc: name:BAT_TEMP, channel=3, adc_out=0x42c, adc_result=1173\n[ 2073.519808]  (0)[544:python3][name:spm&][SPM] MCUSYSOFF wake up by  R12_SYS_TIMER_EVENT_B, timer_out = 215, r13 = 0xc4001ea4, debug_flag = 0xfc1e1800 0x40000002, connectivity sleep,modem not sleep,subsys not sleepr12 = 0x10000, r12_ext = 0x0, raw_sta = 0x0 0x0 0x0, idle_sta = 0x992341b7, req_sta =  0x5c00077 0x1b8000 0x50000013 0x1f0000 0x0, cg_check_sta =0x0, isr = 0x0, rt_req_sta0 = 0x0 rt_req_sta1 = 0x0 rt_req_sta2 = 0xffffffff rt_req_sta3 = 0xffffffff dram_sw_con_3 = 0x0, raw_ext_sta = 0x180255, wake_misc = 0x390000, pcm_flag = 0x400502 0x0 0x400102 0x400102, req = 0x1a,  clk_settle = 0x60fe, \n[ 2073.747375]  (0)[544:python3]mt635x-auxadc mt635x-auxadc: name:BATADC, channel=0, adc_out=0x4b5c, adc_result=3709\n[ 2074.240673]  (6)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2074.240684]  (6)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2074.811601]  (0)[420:python3]CPU6: shutdown\n[ 2074.839678]  (0)[420:python3]psci: Retrying again to check for CPU kill\n[ 2074.839693]  (0)[420:python3]psci: CPU6 killed.\n[ 2075.279832]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2075.279847]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n[ 2076.319847]  (0)[308:mddp_rx]port ccci_0_200 read data fail when md_state = 0\n[ 2076.319861]  (0)[308:mddp_rx]mddp_md_msg_hdlr: Failed to read TTY (54), count(-19)!\n"
  },
  {
    "path": "results/mt6853t/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  3:      16271     GICv3  30 Level     arch_timer\n  6:     395758     GICv3 265 Level     mtk-clkevt\n  7:          0     GICv3  23 Level     arm-pmu\n  8:          0     GICv3  50 Level     arm_dsu_0\n  9:          0     GICv3  33 Level     cache_parity\n 10:          0     GICv3  34 Level     cache_parity\n 11:          0     GICv3  35 Level     cache_parity\n 12:          0     GICv3  36 Level     cache_parity\n 13:          0     GICv3  37 Level     cache_parity\n 14:          0     GICv3  38 Level     cache_parity\n 15:          0     GICv3  39 Level     cache_parity\n 16:          0     GICv3  40 Level     cache_parity\n 17:          0     GICv3  32 Level     cache_parity\n 18:          0     GICv3 254 Level     TWAM\n 23:        239     GICv3 141 Level     ttyS0\n 26:          0   mt-eint   0 Level     10027000.spmi:mt6315@3:mt6315_3_regulator\n 30:          0   mt-eint   4 Edge      11240000.msdc cd\n 31:          0   mt-eint   5 Level     nq-nci\n 35:          0   mt-eint   9 Edge      type_c_port0-IRQ\n 36:         12   mt-eint  10 Edge      5-0034\n 40:         76   mt-eint  14 Edge      NVT-ts-spi\n 58:          0   mt-eint  32 Edge      ESD_TE-eint\n 59:          0   mt-eint  33 Edge      testing_mode\n 74:          0   mt-eint  48 Edge      fingerprint\n144:          0   mt-eint 118 Level     mt6358-irq\n155:          0     GICv3 135 Level     mtk-msdc\n156:          0     GICv3 465 Level     mt_wdt\n157:          0     GICv3 243 Level     dramc_apxgpt3\n159:          0     GICv3 252 Level     mt-pmic-pwrap\n160:          0     GICv3 106 Edge      mtk-kpd\n161:          0     GICv3 281 Level     dvfsrc\n164:          0     GICv3 226 Level     CCIF_AP_DATA\n166:          0     GICv3 219 Level     devapc\n167:         76     GICv3 137 Level     ufshcd\n169:          1     GICv3 199 Level     eemg\n173:          0     GICv3 186 Level     CQDMA\n174:          0     GICv3 187 Level     CQDMA\n175:          0     GICv3 188 Level     CQDMA\n176:          0     GICv3 189 Level     CQDMA\n177:          0     GICv3 220 Level     devmpu\n178:          0     GICv3 221 Level     emimpu\n179:      22469     GICv3 235 Level     mtk_cmdq\n182:          0     GICv3 128 Level     musb-hdrc\n184:          0     GICv3 253 Level     event_0, event_1, event_2, event_3, event_4\n185:          0     GICv3 327 Edge      amms_irq\n187:          0     GICv3 116 Edge      tee_sanity\n188:          0     GICv3 328 Edge      tz_drivers_service\n190:          0     GICv3 232 Level     devmpu\n191:          0     GICv3 466 Level     SCP IPC0\n192:          0     GICv3 467 Level     SCP IPC1\n193:          0     GICv3 468 Level     MBOX_ISR\n194:          1     GICv3 469 Level     MBOX_ISR\n195:         46     GICv3 470 Level     MBOX_ISR\n196:          1     GICv3 471 Level     MBOX_ISR\n197:          0     GICv3 472 Level     MBOX_ISR\n198:          0     GICv3 482 Level     MBOX_ISR\n199:          1     GICv3 483 Level     MBOX_ISR\n200:          0     GICv3 484 Level     MBOX_ISR\n201:          0     GICv3 485 Level     MBOX_ISR\n203:          0     GICv3 478 Level     adsp_0\n204:          0     GICv3 480 Level     adsp_0\n206:          0     GICv3 276 Level     MBOX_ISR\n207:          0     GICv3 277 Level     MBOX_ISR\n208:        149     GICv3 278 Level     MBOX_ISR\n209:          0     GICv3 279 Level     MBOX_ISR\n210:          0     GICv3 280 Level     MBOX_ISR\n211:          0     GICv3  65 Level     MBOX_ISR\n212:         84     GICv3  66 Level     MBOX_ISR\n213:          0     GICv3  67 Level     MBOX_ISR\n214:          0     GICv3  68 Level     MBOX_ISR\n215:          0     GICv3  69 Level     MBOX_ISR\n216:          0     GICv3  70 Level     MBOX_ISR\n217:          0     GICv3  71 Level     MBOX_ISR\n218:          0     GICv3  72 Level     MBOX_ISR\n220:          0     GICv3 242 Level     mt-pwm\n222:          0     GICv3 201 Level     mtk-thermal\n231:          0     GICv3 234 Level     Afe_ISR_Handle\n232:          0     GICv3 407 Level     BTCVSD_ISR_Handle\n233:          1     GICv3 396 Level     13000000.mali\n234:          0     GICv3 397 Level     13000000.mali\n235:          0     GICv3 398 Level     13000000.mali\n239:          0     GICv3 285 Level     14001000.disp_mutex\n242:          0     GICv3 394 Level     dvs\n243:          0     GICv3 395 Level     dvp\n244:      27674     GICv3 287 Level     14005000.disp_ovl0\n245:      26735     GICv3 288 Level     14006000.disp_ovl0_2l\n246:      35422     GICv3 289 Level     14007000.disp_rdma0\n249:          0     GICv3 293 Level     1400a000.disp_ccorr1\n250:          0     GICv3 292 Level     1400b000.disp_ccorr0\n251:          0     GICv3 294 Level     1400c000.disp_aal0\n253:      27215     GICv3 296 Level     1400e000.disp_postmask0\n258:      20617     GICv3 301 Level     14013000.dsi\n259:          0     GICv3 302 Level     14014000.disp_wdma0\n260:          0     GICv3 363 Level     ccu\n261:          0     GICv3 303 Level     14016000.m4u\n262:          0     GICv3 304 Level     bank_m4u\n263:          0     GICv3 305 Level     bank_m4u\n264:          0     GICv3 306 Level     bank_m4u\n265:          0     GICv3 307 Level     secure_m4u\n266:          0     GICv3 427 Level     19010000.m4u\n267:          0     GICv3 428 Level     bank_m4u\n268:          0     GICv3 429 Level     bank_m4u\n269:          0     GICv3 430 Level     bank_m4u\n270:          0     GICv3 431 Level     secure_m4u\n274:          0     GICv3 381 Level     wpe_a\n280:          0     GICv3 458 Level     1602f000.vdec\n281:          0     GICv3 342 Level     17020000.venc\n283:          0     GICv3 343 Level     17030000.jpgenc\n284:          0     GICv3 440 Level     apusys_reviser, apusys_mnoc\n285:          0     GICv3 453 Level     vpu0\n286:          0     GICv3 454 Level     vpu1\n287:          0     GICv3 352 Level     cam1\n288:          0     GICv3 353 Level     cam2\n289:          0     GICv3 359 Level     camsv3\n290:          0     GICv3 360 Level     camsv4\n291:          0     GICv3 361 Level     camsv5\n292:          0     GICv3 362 Level     camsv6\n293:          0     GICv3 366 Level     camsv7\n294:          0     GICv3 367 Level     camsv8\n295:          0     GICv3 391 Level     fdvt\n297:          0     GICv3 392 Level     rsc\n298:          0     GICv3 191 Level     1100a000.spi0\n299:          0     GICv3 192 Level     11010000.spi1\n300:          0     GICv3 193 Level     11012000.spi2\n301:          0     GICv3 194 Level     11013000.spi3\n302:        136     GICv3 195 Level     11018000.spi4\n303:          1     GICv3 196 Level     11019000.spi5\n304:          0     GICv3 197 Level     1101d000.spi6\n305:          0     GICv3 198 Level     1101e000.spi7\n306:          0     GICv3 144 Level     mt-i2c\n307:          0     GICv3 145 Level     mt-i2c\n308:          0     GICv3 146 Level     mt-i2c\n309:          0     GICv3 147 Level     mt-i2c\n310:          0     GICv3 148 Level     mt-i2c\n311:       1159     GICv3 149 Level     mt-i2c\n312:          0     GICv3 150 Level     mt-i2c\n313:          1     GICv3 151 Level     mt-i2c\n314:          0     GICv3 152 Level     mt-i2c\n315:          5     GICv3 153 Level     mt-i2c\n316:          0     GICv3 154 Level     mt-i2c\n317:          0     GICv3 155 Level     mt-i2c\n318:          0  mt6358-irq  48 Level     pwrkey\n319:          0  mt6358-irq  50 Level     pwrkey_r\n320:          0  mt6358-irq  49 Level     homekey\n321:          0  mt6358-irq  51 Level     homekey_r\n322:          0  mt6358-irq 112 Level     bat_h\n323:          0  mt6358-irq 113 Level     bat_l\n324:          0  mt6358-irq   7 Level     VS1\n325:          0  mt6358-irq   2 Level     VGPU11\n326:          0  mt6358-irq   4 Level     VMODEM\n327:          0  mt6358-irq   0 Level     VPU\n328:          0  mt6358-irq   1 Level     VCORE\n329:          0  mt6358-irq   8 Level     VS2\n330:          0  mt6358-irq   9 Level     VPA\n331:          0  mt6358-irq   6 Level     VPROC2\n332:          0  mt6358-irq   5 Level     VPROC1\n333:          0  mt6358-irq  29 Level     VAUD18\n334:          0  mt6358-irq  19 Level     VRF12\n335:          0  mt6358-irq  38 Level     VUSB\n336:          0  mt6358-irq  32 Level     VSRAM_PROC2\n337:          0  mt6358-irq  30 Level     VIO18\n338:          0  mt6358-irq  24 Level     VCN18\n339:          0  mt6358-irq  16 Level     VFE28\n340:          0  mt6358-irq  23 Level     VCN13\n341:          0  mt6358-irq  21 Level     VCN33_1_BT\n342:          0  mt6358-irq  28 Level     VAUX18\n343:          0  mt6358-irq  33 Level     VSRAM_OTHERS\n344:          0  mt6358-irq  20 Level     VEFUSE\n345:          0  mt6358-irq  17 Level     VXO22\n346:          0  mt6358-irq  39 Level     VRFCK\n347:          0  mt6358-irq  41 Level     VBIF28\n348:          0  mt6358-irq  43 Level     VIO28\n349:          0  mt6358-irq  35 Level     VEMC\n350:          0  mt6358-irq  22 Level     VCN33_2_BT\n351:          0  mt6358-irq  27 Level     VA12\n352:          0  mt6358-irq  25 Level     VA09\n353:          0  mt6358-irq  18 Level     VRF18\n354:          0  mt6358-irq  34 Level     VSRAM_MD\n355:          0  mt6358-irq  45 Level     VUFS\n356:          0  mt6358-irq  44 Level     VM18\n357:          0  mt6358-irq  31 Level     VSRAM_PROC1\n358:          0  mt6358-irq 133 Level     accdet\n359:          0  mt6358-irq 134 Level     accdet_eint0\n360:          0  mt6315-irq   5 Edge      PMIC_OT\n361:          0  mt6358-irq  64 Level     mt6358-rtc\n362:          0  mt6360_pmu_irqs  65 Edge      ap_wdtrst_evt\n363:          0  mt6360_pmu_irqs  66 Edge      en_evt\n364:          0  mt6360_pmu_irqs  67 Edge      qonb_rst_evt\n365:          0  mt6360_pmu_irqs  68 Edge      mrstb_evt\n366:          0  mt6360_pmu_irqs  69 Edge      otp_evt\n367:          0  mt6360_pmu_irqs  70 Edge      vddaov_evt\n368:          0  mt6360_pmu_irqs  71 Edge      sysuv_evt\n369:          0  mt6360_pmu_irqs  41 Edge      bat_ovp_adc_evt\n370:          0  mt6360_pmu_irqs  43 Edge      adc_wakeup_evt\n371:         37  mt6360_pmu_irqs  44 Edge      adc_donei\n372:          0  mt6360_pmu_irqs   4 Edge      chg_treg_evt\n373:          0  mt6360_pmu_irqs   6 Edge      chg_mivr_evt\n374:          0  mt6360_pmu_irqs   7 Edge      pwr_rdy_evt\n375:          0  mt6360_pmu_irqs   9 Edge      chg_batsysuv_evt\n376:          0  mt6360_pmu_irqs  12 Edge      chg_vsysuv_evt\n377:          0  mt6360_pmu_irqs  13 Edge      chg_vsysov_evt\n378:          0  mt6360_pmu_irqs  14 Edge      chg_vbatov_evt\n379:          0  mt6360_pmu_irqs  15 Edge      chg_vbusov_evt\n380:          0  mt6360_pmu_irqs  27 Edge      chg_tmri\n381:          0  mt6360_pmu_irqs  29 Edge      chg_adpbadi\n382:          0  mt6360_pmu_irqs  32 Edge      chg_aiccmeasl\n383:          0  mt6360_pmu_irqs  35 Edge      wdtmri\n384:          0  mt6360_pmu_irqs  40 Edge      pumpx_donei\n385:          0  mt6360_pmu_irqs  48 Edge      attachi\n386:          0  mt6360_pmu_irqs  60 Edge      chrdet_ext_evt\n387:          0  mt6360_pmu_irqs  11 Edge      fled_chg_vinovp_evt\n388:          0  mt6360_pmu_irqs  74 Edge      fled_tx_evt\n389:          0  mt6360_pmu_irqs  75 Edge      fled_lvf_evt\n390:          0  mt6360_pmu_irqs  78 Edge      fled2_short_evt\n391:          0  mt6360_pmu_irqs  79 Edge      fled1_short_evt\n392:          0  mt6360_pmu_irqs  96 Edge      buck1_pgb_evt\n393:          0  mt6360_pmu_irqs 100 Edge      buck1_oc_evt\n394:          0  mt6360_pmu_irqs 101 Edge      buck1_ov_evt\n395:          0  mt6360_pmu_irqs 102 Edge      buck1_uv_evt\n396:          0  mt6360_pmu_irqs 104 Edge      buck2_pgb_evt\n397:          0  mt6360_pmu_irqs 108 Edge      buck2_oc_evt\n398:          0  mt6360_pmu_irqs 109 Edge      buck2_ov_evt\n399:          0  mt6360_pmu_irqs 110 Edge      buck2_uv_evt\n400:          0  mt6360_pmu_irqs 118 Edge      ldo6_oc_evt\n401:          0  mt6360_pmu_irqs 119 Edge      ldo7_oc_evt\n402:          0  mt6360_pmu_irqs 126 Edge      ldo6_pgb_evt\n403:          0  mt6360_pmu_irqs 127 Edge      ldo7_pgb_evt\n404:          0  mt6360_pmu_irqs 113 Edge      ldo1_oc_evt\n405:          0  mt6360_pmu_irqs 114 Edge      ldo2_oc_evt\n406:          0  mt6360_pmu_irqs 115 Edge      ldo3_oc_evt\n407:          0  mt6360_pmu_irqs 117 Edge      ldo5_oc_evt\n408:          0  mt6360_pmu_irqs 121 Edge      ldo1_pgb_evt\n409:          0  mt6360_pmu_irqs 122 Edge      ldo2_pgb_evt\n410:          0  mt6360_pmu_irqs 123 Edge      ldo3_pgb_evt\n411:          0  mt6360_pmu_irqs 125 Edge      ldo5_pgb_evt\n414:          0  mt6360_pmu_irqs  64 Edge      usbid_evt\nIPI0:      3906       Rescheduling interrupts\nIPI1:         9       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:       710       Timer broadcast interrupts\nIPI5:         0       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/mt6853t/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  3:        284         95         88         88         89         89        240        101     GICv3  30 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0     GICv3 265 Level     mtk-clkevt\n  7:          0          0          0          0          0          0          0          0     GICv3  23 Level     arm-pmu\n  8:          0          0          0          0          0          0          0          0     GICv3  50 Level     arm_dsu_0\n  9:          0          0          0          0          0          0          0          0     GICv3  33 Level     cache_parity\n 10:          0          0          0          0          0          0          0          0     GICv3  34 Level     cache_parity\n 11:          0          0          0          0          0          0          0          0     GICv3  35 Level     cache_parity\n 12:          0          0          0          0          0          0          0          0     GICv3  36 Level     cache_parity\n 13:          0          0          0          0          0          0          0          0     GICv3  37 Level     cache_parity\n 14:          0          0          0          0          0          0          0          0     GICv3  38 Level     cache_parity\n 15:          0          0          0          0          0          0          0          0     GICv3  39 Level     cache_parity\n 16:          0          0          0          0          0          0          0          0     GICv3  40 Level     cache_parity\n 17:          0          0          0          0          0          0          0          0     GICv3  32 Level     cache_parity\n 18:          0          0          0          0          0          0          0          0     GICv3 254 Level     TWAM\n 23:          0          0          0          0          0          0          0          1     GICv3 141 Level     ttyS0\n 26:          0          0          0          0          0          0          0          0   mt-eint   0 Level     10027000.spmi:mt6315@3:mt6315_3_regulator\n 31:          0          0          0          0          0          0          0          0   mt-eint   5 Level     nq-nci\n 35:          0          0          0          1          0          0          0          1   mt-eint   9 Edge      type_c_port0-IRQ\n 36:          0          0          0          0          0          0          1          0   mt-eint  10 Edge      5-0034\n 40:          0          0          0          0          0          0          0          0   mt-eint  14 Edge      NVT-ts-spi\n 58:          0          0          0          0          0          0          0          0   mt-eint  32 Edge      ESD_TE-eint\n 59:          0          0          0          0          0          0          0          0   mt-eint  33 Edge      testing_mode\n 74:          0          1          0          0          0          0          0          0   mt-eint  48 Edge      fingerprint\n144:          0          0          0          0          0          0          0          0   mt-eint 118 Level     mt6358-irq\n155:          0          0          0          0          0          0          0          0     GICv3 135 Level     mtk-msdc\n156:          0          0          0          0          0          0          0          0     GICv3 465 Level     mt_wdt\n157:          0          0          0          0          0          0          0          0     GICv3 243 Level     dramc_apxgpt3\n159:          0          0          0          0          0          0          0          0     GICv3 252 Level     mt-pmic-pwrap\n160:          0          0          0          0          0          0          0          0     GICv3 106 Edge      mtk-kpd\n161:          0          0          0          0          0          0          0          0     GICv3 281 Level     dvfsrc\n164:          0          0          0          0          0          0          0          0     GICv3 226 Level     CCIF_AP_DATA\n166:          0          0          0          0          0          0          0          0     GICv3 219 Level     devapc\n167:         72         41         33         16         12          9         37         29     GICv3 137 Level     ufshcd\n169:          1          0          0          0          0          0          2          0     GICv3 199 Level     eemg\n173:          0          0          0          0          0          0          0          0     GICv3 186 Level     CQDMA\n174:          0          0          0          0          0          0          0          0     GICv3 187 Level     CQDMA\n175:          0          0          0          0          0          0          0          0     GICv3 188 Level     CQDMA\n176:          0          0          0          0          0          0          0          0     GICv3 189 Level     CQDMA\n177:          0          0          0          0          0          0          0          0     GICv3 220 Level     devmpu\n178:          0          0          0          0          0          0          0          0     GICv3 221 Level     emimpu\n179:          6          4          6          2          2          0          4          1     GICv3 235 Level     mtk_cmdq\n182:          0          0          0          0          0          0          0          0     GICv3 128 Level     musb-hdrc\n184:          0          0          0          0          0          0          0          0     GICv3 253 Level     event_0, event_1, event_2, event_3, event_4\n185:          0          0          0          0          0          0          0          0     GICv3 327 Edge      amms_irq\n187:          0          0          0          0          0          0          0          0     GICv3 116 Edge      tee_sanity\n188:          0          0          0          0          0          0          0          0     GICv3 328 Edge      tz_drivers_service\n190:          0          0          0          0          0          0          0          0     GICv3 232 Level     devmpu\n191:          0          0          0          0          0          0          0          0     GICv3 466 Level     SCP IPC0\n192:          0          0          0          0          0          0          0          0     GICv3 467 Level     SCP IPC1\n193:          0          0          0          0          0          0          0          0     GICv3 468 Level     MBOX_ISR\n194:          1          0          0          0          0          0          0          0     GICv3 469 Level     MBOX_ISR\n195:          0          0          0          0          0          0          0          0     GICv3 470 Level     MBOX_ISR\n196:          1          0          0          0          0          0          0          0     GICv3 471 Level     MBOX_ISR\n197:          0          0          0          0          0          0          0          0     GICv3 472 Level     MBOX_ISR\n198:          0          0          0          0          0          0          0          0     GICv3 482 Level     MBOX_ISR\n199:          1          0          0          0          0          0          0          1     GICv3 483 Level     MBOX_ISR\n200:          0          0          0          0          0          0          0          0     GICv3 484 Level     MBOX_ISR\n201:          0          0          0          0          0          0          0          0     GICv3 485 Level     MBOX_ISR\n203:          0          0          0          0          0          0          0          0     GICv3 478 Level     adsp_0\n204:          0          0          0          0          0          0          0          0     GICv3 480 Level     adsp_0\n206:          0          0          0          0          0          0          0          0     GICv3 276 Level     MBOX_ISR\n207:          0          0          0          0          0          0          0          0     GICv3 277 Level     MBOX_ISR\n208:         36         85         59         48         40         41        100         98     GICv3 278 Level     MBOX_ISR\n209:          0          0          0          0          0          0          0          0     GICv3 279 Level     MBOX_ISR\n210:          0          0          0          0          0          0          0          0     GICv3 280 Level     MBOX_ISR\n211:          0          1          0          0          1          0          0          0     GICv3  65 Level     MBOX_ISR\n212:          4          1          3          1          0          1          5          1     GICv3  66 Level     MBOX_ISR\n213:          0          2          2          2          2          2          5          2     GICv3  67 Level     MBOX_ISR\n214:          0          0          0          0          0          0          0          0     GICv3  68 Level     MBOX_ISR\n215:          0          0          0          0          0          0          0          0     GICv3  69 Level     MBOX_ISR\n216:          0          0          0          0          0          0          0          0     GICv3  70 Level     MBOX_ISR\n217:          0          0          0          0          0          0          0          0     GICv3  71 Level     MBOX_ISR\n218:          0          1          0          0          0          0          1          1     GICv3  72 Level     MBOX_ISR\n220:          0          0          0          0          0          0          0          0     GICv3 242 Level     mt-pwm\n222:          0          0          0          0          0          0          0          0     GICv3 201 Level     mtk-thermal\n231:          0          0          0          0          0          0          0          0     GICv3 234 Level     Afe_ISR_Handle\n232:          0          0          0          0          0          0          0          0     GICv3 407 Level     BTCVSD_ISR_Handle\n233:          1          1          2          1          1          1          0          0     GICv3 396 Level     13000000.mali\n234:          0          0          0          0          0          0          0          0     GICv3 397 Level     13000000.mali\n235:          0          0          0          0          0          0          0          0     GICv3 398 Level     13000000.mali\n239:          0          0          0          0          0          0          0          0     GICv3 285 Level     14001000.disp_mutex\n242:          0          0          0          0          0          0          0          0     GICv3 394 Level     dvs\n243:          0          0          0          0          0          0          0          0     GICv3 395 Level     dvp\n244:          6         19         14          7          8          3          8         12     GICv3 287 Level     14005000.disp_ovl0\n245:         17         17         14          7          2          4          9          7     GICv3 288 Level     14006000.disp_ovl0_2l\n246:         20         10          5          9          1          0         11          6     GICv3 289 Level     14007000.disp_rdma0\n249:          0          0          0          0          0          0          0          0     GICv3 293 Level     1400a000.disp_ccorr1\n250:          0          0          0          0          0          0          0          0     GICv3 292 Level     1400b000.disp_ccorr0\n251:          0          0          0          0          0          0          0          0     GICv3 294 Level     1400c000.disp_aal0\n253:         31         11         12          9         12          8         21          7     GICv3 296 Level     1400e000.disp_postmask0\n258:          3          6          2          1          0          1          0          8     GICv3 301 Level     14013000.dsi\n259:          0          0          0          0          0          0          0          0     GICv3 302 Level     14014000.disp_wdma0\n260:          0          0          0          0          0          0          0          0     GICv3 363 Level     ccu\n261:          0          0          0          0          0          0          0          0     GICv3 303 Level     14016000.m4u\n262:          0          0          0          0          0          0          0          0     GICv3 304 Level     bank_m4u\n263:          0          0          0          0          0          0          0          0     GICv3 305 Level     bank_m4u\n264:          0          0          0          0          0          0          0          0     GICv3 306 Level     bank_m4u\n265:          0          0          0          0          0          0          0          0     GICv3 307 Level     secure_m4u\n266:          0          0          0          0          0          0          0          0     GICv3 427 Level     19010000.m4u\n267:          0          0          0          0          0          0          0          0     GICv3 428 Level     bank_m4u\n268:          0          0          0          0          0          0          0          0     GICv3 429 Level     bank_m4u\n269:          0          0          0          0          0          0          0          0     GICv3 430 Level     bank_m4u\n270:          0          0          0          0          0          0          0          0     GICv3 431 Level     secure_m4u\n274:          0          0          0          0          0          0          0          0     GICv3 381 Level     wpe_a\n280:          0          0          0          0          0          0          0          0     GICv3 458 Level     1602f000.vdec\n281:          0          0          0          0          0          0          0          0     GICv3 342 Level     17020000.venc\n283:          0          0          0          0          0          0          0          0     GICv3 343 Level     17030000.jpgenc\n284:          0          0          0          0          0          0          0          0     GICv3 440 Level     apusys_reviser, apusys_mnoc\n285:          0          0          0          0          0          0          0          0     GICv3 453 Level     vpu0\n286:          0          0          0          0          0          0          0          0     GICv3 454 Level     vpu1\n287:          0          0          0          0          0          0          0          0     GICv3 352 Level     cam1\n288:          0          0          0          0          0          0          0          0     GICv3 353 Level     cam2\n289:          0          0          0          0          0          0          0          0     GICv3 359 Level     camsv3\n290:          0          0          0          0          0          0          0          0     GICv3 360 Level     camsv4\n291:          0          0          0          0          0          0          0          0     GICv3 361 Level     camsv5\n292:          0          0          0          0          0          0          0          0     GICv3 362 Level     camsv6\n293:          0          0          0          0          0          0          0          0     GICv3 366 Level     camsv7\n294:          0          0          0          0          0          0          0          0     GICv3 367 Level     camsv8\n295:          0          0          0          0          0          0          0          0     GICv3 391 Level     fdvt\n297:          0          0          0          0          0          0          0          0     GICv3 392 Level     rsc\n298:          0          0          0          0          0          0          0          0     GICv3 191 Level     1100a000.spi0\n299:          0          0          0          0          0          0          0          0     GICv3 192 Level     11010000.spi1\n300:          0          0          0          0          0          0          0          0     GICv3 193 Level     11012000.spi2\n301:          0          0          0          0          0          0          0          0     GICv3 194 Level     11013000.spi3\n302:          1          0          0          0          0          0          7          0     GICv3 195 Level     11018000.spi4\n303:          1          0          0          0          0          0          2          1     GICv3 196 Level     11019000.spi5\n304:          0          0          0          0          0          0          0          0     GICv3 197 Level     1101d000.spi6\n305:          0          0          0          0          0          0          0          0     GICv3 198 Level     1101e000.spi7\n306:          0          0          0          0          0          0          0          0     GICv3 144 Level     mt-i2c\n307:          0          0          0          0          0          0          0          0     GICv3 145 Level     mt-i2c\n308:          0          0          0          0          0          0          0          0     GICv3 146 Level     mt-i2c\n309:          0          0          0          0          0          0          0          0     GICv3 147 Level     mt-i2c\n310:          0          0          0          0          0          0          0          0     GICv3 148 Level     mt-i2c\n311:         95        102         87         82         69         60        114        107     GICv3 149 Level     mt-i2c\n312:          0          1          1          1          0          0          0          0     GICv3 150 Level     mt-i2c\n313:          1          0          0          0          0          0          3          0     GICv3 151 Level     mt-i2c\n314:          0          0          0          0          0          0          0          0     GICv3 152 Level     mt-i2c\n315:          5          5          4          4          3          4          9          5     GICv3 153 Level     mt-i2c\n316:          0          0          0          0          0          0          0          0     GICv3 154 Level     mt-i2c\n317:          0          0          0          0          0          0          0          0     GICv3 155 Level     mt-i2c\n318:          0          0          0          0          0          0          0          0  mt6358-irq  48 Level     pwrkey\n319:          0          0          0          0          0          0          0          0  mt6358-irq  50 Level     pwrkey_r\n320:          0          0          0          0          0          0          0          0  mt6358-irq  49 Level     homekey\n321:          0          0          0          0          0          0          0          0  mt6358-irq  51 Level     homekey_r\n322:          0          0          0          0          0          0          0          0  mt6358-irq 112 Level     bat_h\n323:          0          0          0          0          0          0          0          0  mt6358-irq 113 Level     bat_l\n324:          0          0          0          0          0          0          0          0  mt6358-irq   7 Level     VS1\n325:          0          0          0          0          0          0          0          0  mt6358-irq   2 Level     VGPU11\n326:          0          0          0          0          0          0          0          0  mt6358-irq   4 Level     VMODEM\n327:          0          0          0          0          0          0          0          0  mt6358-irq   0 Level     VPU\n328:          0          0          0          0          0          0          0          0  mt6358-irq   1 Level     VCORE\n329:          0          0          0          0          0          0          0          0  mt6358-irq   8 Level     VS2\n330:          0          0          0          0          0          0          0          0  mt6358-irq   9 Level     VPA\n331:          0          0          0          0          0          0          0          0  mt6358-irq   6 Level     VPROC2\n332:          0          0          0          0          0          0          0          0  mt6358-irq   5 Level     VPROC1\n333:          0          0          0          0          0          0          0          0  mt6358-irq  29 Level     VAUD18\n334:          0          0          0          0          0          0          0          0  mt6358-irq  19 Level     VRF12\n335:          0          0          0          0          0          0          0          0  mt6358-irq  38 Level     VUSB\n336:          0          0          0          0          0          0          0          0  mt6358-irq  32 Level     VSRAM_PROC2\n337:          0          0          0          0          0          0          0          0  mt6358-irq  30 Level     VIO18\n338:          0          0          0          0          0          0          0          0  mt6358-irq  24 Level     VCN18\n339:          0          0          0          0          0          0          0          0  mt6358-irq  16 Level     VFE28\n340:          0          0          0          0          0          0          0          0  mt6358-irq  23 Level     VCN13\n341:          0          0          0          0          0          0          0          0  mt6358-irq  21 Level     VCN33_1_BT\n342:          0          0          0          0          0          0          0          0  mt6358-irq  28 Level     VAUX18\n343:          0          0          0          0          0          0          0          0  mt6358-irq  33 Level     VSRAM_OTHERS\n344:          0          0          0          0          0          0          0          0  mt6358-irq  20 Level     VEFUSE\n345:          0          0          0          0          0          0          0          0  mt6358-irq  17 Level     VXO22\n346:          0          0          0          0          0          0          0          0  mt6358-irq  39 Level     VRFCK\n347:          0          0          0          0          0          0          0          0  mt6358-irq  41 Level     VBIF28\n348:          0          0          0          0          0          0          0          0  mt6358-irq  43 Level     VIO28\n349:          0          0          0          0          0          0          0          0  mt6358-irq  35 Level     VEMC\n350:          0          0          0          0          0          0          0          0  mt6358-irq  22 Level     VCN33_2_BT\n351:          0          0          0          0          0          0          0          0  mt6358-irq  27 Level     VA12\n352:          0          0          0          0          0          0          0          0  mt6358-irq  25 Level     VA09\n353:          0          0          0          0          0          0          0          0  mt6358-irq  18 Level     VRF18\n354:          0          0          0          0          0          0          0          0  mt6358-irq  34 Level     VSRAM_MD\n355:          0          0          0          0          0          0          0          0  mt6358-irq  45 Level     VUFS\n356:          0          0          0          0          0          0          0          0  mt6358-irq  44 Level     VM18\n357:          0          0          0          0          0          0          0          0  mt6358-irq  31 Level     VSRAM_PROC1\n358:          0          0          0          0          0          0          0          0  mt6358-irq 133 Level     accdet\n359:          0          0          0          0          0          0          0          0  mt6358-irq 134 Level     accdet_eint0\n360:          0          0          0          0          0          0          0          0  mt6315-irq   5 Edge      PMIC_OT\n361:          0          0          0          0          0          0          0          0  mt6358-irq  64 Level     mt6358-rtc\n362:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  65 Edge      ap_wdtrst_evt\n363:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  66 Edge      en_evt\n364:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  67 Edge      qonb_rst_evt\n365:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  68 Edge      mrstb_evt\n366:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  69 Edge      otp_evt\n367:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  70 Edge      vddaov_evt\n368:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  71 Edge      sysuv_evt\n369:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  41 Edge      bat_ovp_adc_evt\n370:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  43 Edge      adc_wakeup_evt\n371:          0          1          0          0          0          0          0          0  mt6360_pmu_irqs  44 Edge      adc_donei\n372:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs   4 Edge      chg_treg_evt\n373:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs   6 Edge      chg_mivr_evt\n374:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs   7 Edge      pwr_rdy_evt\n375:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs   9 Edge      chg_batsysuv_evt\n376:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  12 Edge      chg_vsysuv_evt\n377:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  13 Edge      chg_vsysov_evt\n378:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  14 Edge      chg_vbatov_evt\n379:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  15 Edge      chg_vbusov_evt\n380:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  27 Edge      chg_tmri\n381:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  29 Edge      chg_adpbadi\n382:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  32 Edge      chg_aiccmeasl\n383:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  35 Edge      wdtmri\n384:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  40 Edge      pumpx_donei\n385:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  48 Edge      attachi\n386:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  60 Edge      chrdet_ext_evt\n387:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  11 Edge      fled_chg_vinovp_evt\n388:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  74 Edge      fled_tx_evt\n389:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  75 Edge      fled_lvf_evt\n390:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  78 Edge      fled2_short_evt\n391:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  79 Edge      fled1_short_evt\n392:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  96 Edge      buck1_pgb_evt\n393:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs 100 Edge      buck1_oc_evt\n394:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs 101 Edge      buck1_ov_evt\n395:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs 102 Edge      buck1_uv_evt\n396:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs 104 Edge      buck2_pgb_evt\n397:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs 108 Edge      buck2_oc_evt\n398:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs 109 Edge      buck2_ov_evt\n399:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs 110 Edge      buck2_uv_evt\n400:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs 118 Edge      ldo6_oc_evt\n401:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs 119 Edge      ldo7_oc_evt\n402:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs 126 Edge      ldo6_pgb_evt\n403:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs 127 Edge      ldo7_pgb_evt\n404:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs 113 Edge      ldo1_oc_evt\n405:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs 114 Edge      ldo2_oc_evt\n406:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs 115 Edge      ldo3_oc_evt\n407:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs 117 Edge      ldo5_oc_evt\n408:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs 121 Edge      ldo1_pgb_evt\n409:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs 122 Edge      ldo2_pgb_evt\n410:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs 123 Edge      ldo3_pgb_evt\n411:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs 125 Edge      ldo5_pgb_evt\n414:          0          0          0          0          0          0          0          0  mt6360_pmu_irqs  64 Edge      usbid_evt\nIPI0:      1219        260         84         60         57         57       1029        551       Rescheduling interrupts\nIPI1:         0         16          8          6          6          7         27         19       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         0         41         14          3          3          3         31         11       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/mt6853t/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    4 root      0:00 [kworker/0:0H]\n    6 root      0:00 [mm_percpu_wq]\n    7 root      0:00 [ksoftirqd/0]\n    8 root      0:00 [rcu_preempt]\n    9 root      0:00 [rcu_sched]\n   10 root      0:00 [rcu_bh]\n   11 root      0:00 [rcuop/0]\n   12 root      0:00 [rcuos/0]\n   13 root      0:00 [rcuob/0]\n   14 root      0:00 [migration/0]\n   15 root      0:00 [cpuhp/0]\n   16 root      0:00 [cpuhp/1]\n   17 root      0:00 [migration/1]\n   18 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0H]\n   21 root      0:00 [rcuop/1]\n   22 root      0:00 [rcuos/1]\n   23 root      0:00 [rcuob/1]\n   24 root      0:00 [cpuhp/2]\n   25 root      0:00 [migration/2]\n   26 root      0:00 [ksoftirqd/2]\n   28 root      0:00 [kworker/2:0H]\n   29 root      0:00 [rcuop/2]\n   30 root      0:00 [rcuos/2]\n   31 root      0:00 [rcuob/2]\n   32 root      0:00 [cpuhp/3]\n   33 root      0:00 [migration/3]\n   34 root      0:00 [ksoftirqd/3]\n   35 root      0:00 [kworker/3:0]\n   36 root      0:00 [kworker/3:0H]\n   37 root      0:00 [rcuop/3]\n   38 root      0:00 [rcuos/3]\n   39 root      0:00 [rcuob/3]\n   40 root      0:00 [cpuhp/4]\n   41 root      0:00 [migration/4]\n   42 root      0:00 [ksoftirqd/4]\n   44 root      0:00 [kworker/4:0H]\n   45 root      0:00 [rcuop/4]\n   46 root      0:00 [rcuos/4]\n   47 root      0:00 [rcuob/4]\n   48 root      0:00 [cpuhp/5]\n   49 root      0:00 [migration/5]\n   50 root      0:00 [ksoftirqd/5]\n   52 root      0:00 [kworker/5:0H]\n   53 root      0:00 [rcuop/5]\n   54 root      0:00 [rcuos/5]\n   55 root      0:00 [rcuob/5]\n   56 root      0:00 [cpuhp/6]\n   57 root      0:00 [migration/6]\n   58 root      0:00 [ksoftirqd/6]\n   60 root      0:00 [kworker/6:0H]\n   61 root      0:00 [rcuop/6]\n   62 root      0:00 [rcuos/6]\n   63 root      0:00 [rcuob/6]\n   64 root      0:00 [cpuhp/7]\n   65 root      0:00 [migration/7]\n   66 root      0:00 [ksoftirqd/7]\n   68 root      0:00 [kworker/7:0H]\n   69 root      0:00 [rcuop/7]\n   70 root      0:00 [rcuos/7]\n   71 root      0:00 [rcuob/7]\n   73 root      0:00 [SSPM_WQ]\n   74 root      0:00 [amms_task]\n   75 root      0:00 [pwrap_thread]\n   76 root      0:00 [cmdq_sec_notify]\n   77 root      0:00 [cmdq_sec_timeou]\n   78 root      0:00 [irq/184-event_0]\n   79 root      0:00 [irq/184-event_1]\n   80 root      0:00 [irq/184-event_2]\n   81 root      0:00 [irq/184-event_3]\n   82 root      0:00 [irq/184-event_4]\n   83 root      0:00 [kworker/u17:0]\n   84 root      0:00 [cmdq_buf_dump]\n   85 root      0:00 [cmdq_timeout_ha]\n   86 root      0:00 [oom_reaper]\n   87 root      0:00 [writeback]\n   88 root      0:00 [kcompactd0]\n   89 root      0:00 [crypto]\n   90 root      0:00 [kblockd]\n   91 root      0:00 [conn-md-thread]\n   92 root      0:00 [hf_manager]\n   93 root      0:00 [pool_reload_wor]\n   94 root      0:00 [task_exec_wq_10]\n   95 root      0:00 [cmdq_flushq]\n   96 root      0:00 [cmdq_flushq]\n   97 root      0:00 [cmdq_flushq]\n   98 root      0:00 [cmdq_flushq]\n   99 root      0:00 [cmdq_flushq]\n  100 root      0:00 [cmdq_auto_relea]\n  101 root      0:00 [cmdq_auto_relea]\n  102 root      0:00 [cmdq_auto_relea]\n  103 root      0:00 [cmdq_auto_relea]\n  104 root      0:00 [cmdq_auto_relea]\n  105 root      0:00 [cmdq_auto_relea]\n  106 root      0:00 [cmdq_auto_relea]\n  107 root      0:00 [cmdq_auto_relea]\n  108 root      0:00 [cmdq_auto_relea]\n  109 root      0:00 [cmdq_auto_relea]\n  110 root      0:00 [cmdq_auto_relea]\n  111 root      0:00 [cmdq_auto_relea]\n  112 root      0:00 [cmdq_auto_relea]\n  113 root      0:00 [cmdq_auto_relea]\n  114 root      0:00 [cmdq_auto_relea]\n  115 root      0:00 [cmdq_auto_relea]\n  116 root      0:00 [cmdq_auto_relea]\n  117 root      0:00 [cmdq_auto_relea]\n  118 root      0:00 [cmdq_auto_relea]\n  119 root      0:00 [cmdq_auto_relea]\n  120 root      0:00 [cmdq_auto_relea]\n  121 root      0:00 [cmdq_auto_relea]\n  122 root      0:00 [cmdq_auto_relea]\n  123 root      0:00 [cmdq_auto_relea]\n  124 root      0:00 [cmdq_resource]\n  125 root      0:00 [cmdq_mdp_task]\n  126 root      0:00 [pd_dbg_info]\n  127 root      0:00 [chgdet_thread]\n  128 root      0:00 [tcpc_power_off]\n  129 root      0:00 [charger_in]\n  130 root      0:00 [devfreq_wq]\n  131 root      0:00 [cfg80211]\n  134 root      0:00 [kworker/7:1]\n  135 root      0:00 [irq/144-mt6358-]\n  136 root      0:00 [lbat_service]\n  137 root      0:00 [ion_system_heap]\n  139 root      0:00 [ion_mm_heap]\n  141 root      0:00 [ion_mm_heap_for]\n  142 root      0:00 [ion_comm_pool]\n  143 root      0:00 [ion_mm_heap_for]\n  144 root      0:00 [ion_comm_pool]\n  145 root      0:00 [ion_mm_heap_for]\n  146 root      0:00 [ion_carveout_he]\n  147 root      0:00 [ion_history]\n  148 root      0:00 [mdrt_thread]\n  149 root      0:00 [kworker/6:1]\n  150 root      0:00 [kworker/1:1]\n  151 root      0:00 [kworker/2:1]\n  172 root      0:00 [kauditd]\n  173 root      0:00 [kswapd0]\n  211 root      0:00 [hwrng]\n  212 root      0:00 [aal_flip_sram]\n  213 root      0:00 [irq/59-testing_]\n  214 root      0:00 [btif_rxd]\n  215 root      0:00 [tmem_regmgr_def]\n  216 root      0:00 [tmem_regmgr_def]\n  217 root      0:00 [apu_pwr_drv_wq]\n  218 root      0:00 [apu_pwr_policy]\n  220 root      0:00 [apusys_sched]\n  221 root      0:00 [apusys_worker0]\n  222 root      0:00 [apusys_worker1]\n  223 root      0:00 [accdet]\n  224 root      0:00 [dismicQueue]\n  225 root      0:00 [accdet_eint]\n  226 root      0:00 [ged_notify_sw_v]\n  227 root      0:00 [ged_kpi]\n  228 root      0:00 [kworker/u17:1]\n  229 root      0:00 [kbase_job_fault]\n  230 root      0:00 [mali_aeewp]\n  231 root      0:00 [kbase_event]\n  232 root      0:00 [RSC-CMDQ-WQ]\n  233 root      0:00 [cmdq_flushq]\n  234 root      0:00 [cmdq_flushq]\n  235 root      0:00 [DPE-CMDQ-WQ]\n  236 root      0:00 [cmdq_flushq]\n  237 root      0:00 [cmdq_flushq]\n  238 root      0:00 [MSS-CMDQ-WQ]\n  239 root      0:00 [MSF-CMDQ-WQ]\n  240 root      0:00 [cmdq_flushq]\n  241 root      0:00 [task_exec_wq_11]\n  242 root      0:00 [cmdq_flushq]\n  243 root      0:00 [aw8622 vibrator]\n  244 root      0:00 [ipi_master]\n  245 root      0:00 [chre_kthread]\n  246 root      0:00 [scp_power_reset]\n  247 root      0:00 [SCP_WQ]\n  248 root      0:00 [SCP_LOG_WQ]\n  249 root      0:00 [SCP_RESET_WQ]\n  250 root      0:00 [adsp_wq]\n  251 root      0:00 [scp_send_thread]\n  252 root      0:00 [scp_recv_thread]\n  253 root      0:00 [ccci_fsm1]\n  254 root      0:00 [ccci_poll1]\n  255 root      0:00 [ccmni0_rx_q_wor]\n  256 root      0:00 [ccmni1_rx_q_wor]\n  257 root      0:00 [ccmni2_rx_q_wor]\n  258 root      0:00 [ccmni3_rx_q_wor]\n  259 root      0:00 [ccmni4_rx_q_wor]\n  260 root      0:00 [ccmni5_rx_q_wor]\n  261 root      0:00 [ccmni6_rx_q_wor]\n  262 root      0:00 [ccmni7_rx_q_wor]\n  263 root      0:00 [ccmni8_rx_q_wor]\n  264 root      0:00 [ccmni9_rx_q_wor]\n  265 root      0:00 [ccmni10_rx_q_wo]\n  266 root      0:00 [ccmni11_rx_q_wo]\n  267 root      0:00 [ccmni12_rx_q_wo]\n  268 root      0:00 [ccmni13_rx_q_wo]\n  269 root      0:00 [ccmni14_rx_q_wo]\n  270 root      0:00 [ccmni15_rx_q_wo]\n  271 root      0:00 [ccmni16_rx_q_wo]\n  272 root      0:00 [ccmni17_rx_q_wo]\n  273 root      0:00 [ccmni18_rx_q_wo]\n  274 root      0:00 [ccmni19_rx_q_wo]\n  275 root      0:00 [ccmni20_rx_q_wo]\n  276 root      0:00 [ccmni21_rx_q_wo]\n  277 root      0:00 [ccci_rpc_k]\n  278 root      0:00 [ccci_udc]\n  279 root      0:00 [ccci_ipc_3]\n  280 root      0:00 [ccci_ipc_6]\n  281 root      0:00 [ccci_ipc_7]\n  282 root      0:00 [ccci_ipc_8]\n  283 root      0:00 [ccci_sys]\n  284 root      0:00 [ccci_ctrl]\n  285 root      0:00 [ccci_net_speed_]\n  286 root      0:00 [mtk_vibrator]\n  287 root      0:00 [teei_switch_thr]\n  288 root      0:00 [teei_log_thread]\n  289 root      0:00 [teei_bdrv_threa]\n  290 root      0:00 [hang_detect]\n  291 root      0:00 [hang_detect1]\n  292 root      0:00 [cmdq_flushq]\n  293 root      0:00 [ccu-enque]\n  294 root      0:00 [cpu_freq_wq]\n  295 root      0:00 [cpu_core_wq]\n  296 root      0:00 [dram_vcore_wq]\n  297 root      0:00 [krtatm]\n  298 root      0:00 [mt_usrtch__work]\n  299 root      0:00 [pobqos_ntf_wq]\n  300 root      0:00 [fpsgo_notifier_]\n  301 root      0:00 [mt_fstb]\n  302 root      0:00 [gbe_notifier_wq]\n  303 root      0:00 [eara_thrm]\n  304 root      0:00 [lt_wq]\n  305 root      0:00 [dump_recog_data]\n  306 root      0:00 [dump_input_data]\n  307 root      0:00 [dump_bargein_re]\n  308 root      0:00 [mddp_rx]\n  309 root      0:00 [irq/26-10027000]\n  310 root      0:00 [scsi_eh_0]\n  311 root      0:00 [scsi_tmf_0]\n  312 root      0:00 [ufs_clk_gating_]\n  313 root      0:00 [spi0]\n  314 root      0:00 [spi1]\n  315 root      0:00 [spi2]\n  316 root      0:00 [spi3]\n  317 root      0:00 [spi4]\n  318 root      0:00 [spi5]\n  319 root      0:00 [spi6]\n  320 root      0:00 [spi7]\n  321 root      0:00 [uether]\n  322 root      0:00 [uether_rx1]\n  323 root      0:00 [uether_rps]\n  324 root      0:00 [SecTimerCbWq]\n  325 root      0:00 [irq/36-5-0034]\n  326 root      0:00 [mivr_thread.mt6]\n  327 root      0:00 [pe_pattern]\n  329 root      0:00 [kworker/u16:3]\n  332 root      0:00 [kworker/6:3]\n  334 root      0:00 [cmdq_flushq]\n  335 root      0:00 [cmdq_flushq]\n  336 root      0:00 [task_exec_wq_12]\n  337 root      0:00 [cmdq_flushq]\n  338 root      0:00 [mtk-vcodec-dec]\n  339 root      0:00 [mtk-vcodec-enc]\n  340 root      0:00 [gauge_coulomb_t]\n  341 root      0:00 [battery_thread]\n  342 root      0:00 [power_misc_thre]\n  343 root      0:00 [gauge_timer_thr]\n  344 root      0:00 [dm_bufio_cache]\n  345 root      0:00 [usb_extcon_work]\n  347 root      0:00 [ipv6_addrconf]\n  348 root      0:00 [tcpc_timer_type]\n  349 root      0:00 [pps_request_tas]\n  350 root      0:00 [type_c_port0]\n  351 root      0:00 [cmdq_flushq]\n  353 root      0:00 [cmdq_flushq]\n  354 root      0:00 [cmdq_flushq]\n  355 root      0:00 [cmdq_flushq]\n  356 root      0:00 [cmdq_flushq]\n  357 root      0:00 [task_exec_wq_8]\n  358 root      0:00 [cmdq_flushq]\n  359 root      0:00 [mtk_drm_disp_id]\n  360 root      0:00 [enable_vblank]\n  361 root      0:00 [disp_esd_check]\n  362 root      0:00 [decouple_update]\n  363 root      0:00 [ddp_trig]\n  364 root      0:00 [ddp_trig_d]\n  365 root      0:00 [cmdq_flushq]\n  366 root      0:00 [ddp_trig]\n  367 root      0:00 [ddp_trig_d]\n  368 root      0:00 [cmdq_flushq]\n  369 root      0:00 [ddp_trig]\n  370 root      0:00 [ddp_trig_d]\n  371 root      0:00 [ipi_cpu_dvfs_rt]\n  374 root      0:00 [EEMG_CTRL_GPU]\n  375 root      0:00 [EEMG_CTRL_GPU_H]\n  376 root      0:00 [cpuhp-ppm]\n  377 root      0:00 [qos_ipi_recv]\n  378 root      0:00 [vpu_wq]\n  379 root      0:00 [apusys_worker2]\n  380 root      0:00 [apusys_worker3]\n  381 root      0:00 [apusys_worker4]\n  382 root      0:00 [apusys_worker5]\n  383 root      0:00 [sys_timer_wq]\n  384 root      0:00 [ksched_hint]\n  385 root      0:00 [irq/40-NVT-ts-s]\n  386 root      0:00 [nvt_lockdown_wq]\n  387 root      0:00 [nvt_fwu_wq]\n  389 root      0:00 [irq/74-fingerpr]\n  390 root      0:00 [kworker/4:1]\n  391 root      0:00 [charger_thread]\n  392 root      0:00 [mt-wdk]\n  393 root      0:00 [kworker/5:1]\n  394 root      0:00 [wdtk-0]\n  395 root      0:00 [wdtk-1]\n  396 root      0:00 [wdtk-2]\n  397 root      0:00 [wdtk-3]\n  398 root      0:00 [wdtk-4]\n  399 root      0:00 [wdtk-5]\n  400 root      0:00 [wdtk-6]\n  401 root      0:00 [wdtk-7]\n  402 root      0:00 [boost_workq]\n  404 root      0:00 [kworker/1:2]\n  405 root      0:00 [kworker/2:2]\n  407 root      0:00 [kworker/3:2]\n  408 root      0:00 [kworker/4:2]\n  409 root      0:00 [kworker/5:2]\n  410 root      0:00 [kworker/7:2]\n  422 root      0:00 [usb_dr_workq]\n  423 root      0:00 [kworker/0:1H]\n  424 root      0:00 [kworker/1:1H]\n  425 root      0:00 [kworker/2:1H]\n  426 root      0:00 [kworker/3:1H]\n  427 root      0:00 [kworker/4:1H]\n  428 root      0:00 [kworker/5:1H]\n  429 root      0:00 [kworker/0:5]\n  430 root      0:00 [kworker/6:1H]\n  431 root      0:00 [kworker/7:1H]\n  432 root      0:00 [tcpc_event_type]\n  438 root      0:00 [irq/30-11240000]\n  451 root      0:00 [kworker/u16:0]\n  462 root      0:00 [kworker/u16:1]\n  502 root      0:00 [kworker/0:0]\n  524 root      0:00 [kworker/0:1]\n  589 root      0:00 ps -A\n"
  },
  {
    "path": "results/mt6853t/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,500000,1842.152125,3.6843042500000003,55.028891358024644,8.962311745331373,33.47350644840884,162.865569779\r\n1,650000,2398.426632,3.689887126153846,52.95357661290318,6.6241210427230515,45.289027489853304,125.092986469\r\n1,703000,2594.95368,3.691257012802276,56.66887391304342,6.55193443648895,45.78800397165817,115.61786893\r\n1,756000,2791.684502,3.692704367724868,61.219784905660326,6.579389705109321,45.596934282070364,107.471624006\r\n1,862000,3184.950049,3.6948376438515083,65.80269462365587,6.1986955861581565,48.39727904527326,94.20124239\r\n1,968000,3578.158918,3.6964451632231405,75.85333132530117,6.360223434629565,47.16815424542908,83.848966466\r\n1,1048000,3874.967709,3.6974882719465647,75.42008831168827,5.839622368766788,51.373184951915654,77.427943927\r\n1,1128000,4171.765491,3.698373662234043,85.4435126760563,6.144930074479013,48.82073455090292,71.918041312\r\n1,1287000,4761.526863,3.6997100722610723,93.08081129032254,5.865170798996135,51.14940558105266,63.011599466\r\n1,1393000,5154.639175,3.700387060301508,106.05444385964907,6.173066373408139,48.59821389452687,58.206579081\r\n1,1500000,5551.854319,3.7012362126666667,109.8584415094339,5.937040915690217,50.53022275914755,54.042646465\r\n1,1645000,6089.763108,3.7019836522796354,134.64656122448974,6.633820150689271,45.22281177140885,49.268396388\r\n1,1750000,6479.201762,3.7024010068571425,148.01654130434775,6.854326027883369,43.767979343206214,46.30783808\r\n1,1812000,6708.857929,3.7024602257174393,156.58977272727267,7.002923992620799,42.83924833628345,44.721464695\r\n1,1916000,7095.05002,3.7030532463465553,175.86608571428565,7.436957392302887,40.3390774176674,42.287615387\r\n1,2000000,7406.675884,3.703337942,184.71278499999994,7.482603808960159,40.09299538761632,40.509398464\r\n6,725000,5597.223777,7.720308657931034,122.66208679245277,6.575730168864814,45.62230996345609,53.608497465\r\n6,840000,6490.275404,7.7265183380952385,145.59457608695647,6.731572841432707,44.56610766409679,46.23505231\r\n6,898000,6939.62526,7.727867772828508,155.0881697674418,6.706317579193238,44.733938775993614,43.241967387\r\n6,985000,7606.683739,7.722521562436548,167.7885871794871,6.619345427183854,45.32170186616663,39.450510541\r\n6,1042000,8046.994448,7.722643424184262,181.25150270270265,6.759282960819657,44.38340601199226,37.292286464\r\n6,1129000,8725.242125,7.728292404782994,198.09257647058817,6.813062911554821,44.0330588304426,34.393327771\r\n6,1274000,9843.488532,7.726443117739403,230.44091666666662,7.025561207456739,42.70121505476149,30.487472924\r\n6,1418000,10959.704819,7.728987883638928,259.97902222222217,7.119310901253486,42.13890981319266,27.384174463\r\n6,1534000,11862.396204,7.732983183833117,302.93645599999996,7.664617947443857,39.14089417856107,25.301074848\r\n6,1650000,12759.984688,7.733324053333334,341.94980869565217,8.04279804319648,37.30045170707405,23.520405155\r\n6,1837000,14201.855709,7.731004740881873,400.76995714285715,8.4701424553276,35.418530630651226,21.134674155\r\n6,1993000,15401.201294,7.727647412945309,478.3988736842105,9.323979181860263,32.17510401392229,19.489968925\r\n6,2118000,16376.439762,7.732030104815864,541.2753055555555,9.921352805214688,30.237811908303396,18.329587002\r\n6,2210000,17087.201686,7.73176546877828,580.7876176470588,10.202702915076143,29.403972897878024,17.56701177\r\n6,2306000,17823.193916,7.729052001734606,632.1438062499999,10.64627592883772,28.178867615800346,16.841541155\r\n6,2400000,18550.581252,7.729408855,679.6284625,10.99859031082256,27.27622281782797,16.183239693\r\n"
  },
  {
    "path": "results/mt6853t/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 2071.807536840439, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [699.5648999999999, 708.7432, 697.3167, 704.0613000000001, 706.498, 717.9251999999999, 713.4288, 722.6144, 706.498, 697.5028, 722.6144, 686.0757, 692.8203000000001, 681.2046000000001, 681.3864, 717.9251999999999, 706.3095, 699.7515999999999, 688.3238999999999, 674.46, 672.2118, 688.3238999999999, 706.3095, 674.28, 663.219, 690.5721000000001, 704.0613000000001, 697.3167, 681.2046000000001], \"power_mean\": 696.6387517241379, \"energy_millijoules\": 3483.1937586206896, \"energy_joules\": 3.4831937586206894}, \"cpus\": {\"1\": {\"freqs\": {\"500000\": {\"active\": {\"elapsed_sec\": 162.865569779, \"elapsed_ns\": 162865569779, \"power_samples\": [54.51459999999997, 59.00980000000004, 36.15919999999994, 52.26699999999994, 52.26699999999994, 59.00980000000004, 61.25739999999996, 50.01940000000002, 72.87, 56.76219999999989, 61.25739999999996, 59.00980000000004, 66.1271999999999, 72.87, 63.504999999999995, 56.76219999999989, 38.406799999999976, 42.90199999999993, 40.65440000000001, 40.65440000000001, 42.90199999999993, 50.01940000000002, 36.15919999999994, 36.15919999999994, 54.51459999999997, 63.504999999999995, 66.1271999999999, 56.76219999999989, 59.00980000000004, 52.26699999999994, 49.82899999999995, 40.466499999999996, 63.31099999999992, 50.01940000000002, 56.76219999999989, 54.51459999999997, 50.01940000000002, 47.771799999999985, 40.65440000000001, 75.11759999999992, 58.816999999999894, 58.816999999999894, 58.816999999999894, 50.01940000000002, 49.82899999999995, 54.32299999999998, 33.7254999999999, 49.82899999999995, 59.00980000000004, 61.25739999999996, 52.26699999999994, 66.1271999999999, 59.00980000000004, 74.92049999999995, 58.816999999999894, 66.1271999999999, 42.90199999999993, 33.91159999999991, 54.32299999999998, 45.33499999999992, 49.82899999999995, 42.713499999999954, 31.47849999999994, 35.97249999999997, 58.816999999999894, 61.25739999999996, 72.67349999999999, 61.063999999999965, 54.32299999999998, 61.063999999999965, 47.581999999999994, 58.816999999999894, 49.82899999999995, 58.62419999999997, 49.82899999999995, 49.82899999999995, 42.713499999999954, 40.65440000000001, 49.82899999999995, 49.82899999999995, 58.816999999999894, 68.17949999999996, 47.581999999999994, 47.581999999999994, 47.581999999999994, 54.32299999999998, 56.377799999999866, 58.816999999999894, 49.82899999999995, 49.82899999999995, 45.33499999999992, 49.82899999999995, 77.1674999999999, 81.46259999999995, 52.07599999999991, 52.07599999999991, 54.32299999999998, 54.32299999999998, 65.9325, 74.72339999999997, 65.73779999999988, 74.92049999999995, 61.063999999999965, 70.42649999999992, 49.82899999999995, 72.67349999999999, 54.131399999999985, 74.92049999999995, 40.466499999999996, 52.07599999999991, 52.07599999999991, 65.73779999999988, 52.07599999999991, 42.52499999999998, 42.52499999999998, 33.7254999999999, 35.97249999999997, 45.33499999999992, 72.67349999999999, 60.87059999999997, 49.63859999999988, 40.466499999999996, 45.145799999999895, 49.63859999999988, 49.63859999999988, 58.62419999999997, 56.377799999999866, 49.82899999999995, 58.816999999999894, 63.31099999999992, 70.23059999999998, 56.377799999999866, 79.21620000000007, 67.98419999999999, 49.82899999999995, 58.816999999999894, 49.63859999999988, 58.62419999999997, 58.62419999999997, 65.73779999999988, 49.63859999999988, 51.88499999999999, 49.63859999999988, 49.63859999999988, 83.70899999999995, 67.98419999999999, 65.9325, 58.62419999999997, 67.98419999999999, 60.87059999999997, 58.43139999999994, 72.47699999999998, 49.63859999999988, 60.87059999999997, 45.145799999999895, 38.03219999999999, 58.62419999999997, 65.54309999999998, 58.62419999999997, 54.131399999999985, 42.52499999999998, 45.145799999999895], \"power_mean\": 55.028891358024644, \"energy_millijoules\": 8962.311745331373, \"energy_joules\": 8.962311745331373, \"coremark_score\": 1842.152125, \"coremarks_per_mhz\": 3.6843042500000003, \"ulpmark_cm_score\": 33.47350644840884}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [672.2118, 697.3167, 653.677, 674.46], \"power_mean\": 674.416375, \"energy_millijoules\": 3372.081875, \"energy_joules\": 3.3720818749999997}}, \"650000\": {\"active\": {\"elapsed_sec\": 125.092986469, \"elapsed_ns\": 125092986469, \"power_samples\": [65.54309999999998, 49.63859999999988, 58.62419999999997, 51.88499999999999, 65.73779999999988, 56.377799999999866, 58.62419999999997, 63.11699999999996, 56.377799999999866, 42.52499999999998, 49.63859999999988, 74.72339999999997, 51.69399999999996, 65.73779999999988, 40.27859999999987, 45.145799999999895, 47.3922, 47.20240000000001, 70.23059999999998, 49.63859999999988, 45.145799999999895, 42.52499999999998, 53.93979999999988, 65.73779999999988, 47.20240000000001, 47.3922, 42.52499999999998, 40.09069999999997, 53.93979999999988, 51.88499999999999, 33.35329999999988, 40.27859999999987, 31.292999999999893, 49.63859999999988, 60.67719999999997, 63.11699999999996, 42.3365, 47.20240000000001, 60.87059999999997, 58.43139999999994, 67.78890000000001, 58.62419999999997, 49.44820000000004, 49.63859999999988, 49.44820000000004, 74.52629999999988, 76.77209999999991, 60.87059999999997, 53.93979999999988, 49.63859999999988, 65.73779999999988, 58.43139999999994, 72.28049999999996, 65.54309999999998, 56.18559999999991, 51.69399999999996, 58.43139999999994, 58.43139999999994, 81.26369999999997, 53.93979999999988, 51.88499999999999, 37.84489999999994, 37.84489999999994, 51.69399999999996, 49.44820000000004, 33.35329999999988, 33.167199999999866, 40.09069999999997, 42.3365, 60.67719999999997, 74.52629999999988, 49.44820000000004, 42.3365, 53.93979999999988, 44.76739999999984, 72.28049999999996, 60.67719999999997, 35.59909999999991, 40.09069999999997, 47.20240000000001, 58.43139999999994, 60.67719999999997, 47.01260000000002, 42.3365, 44.95659999999998, 67.78890000000001, 65.54309999999998, 65.54309999999998, 56.18559999999991, 72.28049999999996, 58.43139999999994, 62.923, 81.26369999999997, 56.18559999999991, 42.3365, 31.10749999999996, 40.09069999999997, 53.74819999999988, 49.44820000000004, 40.09069999999997, 40.09069999999997, 37.84489999999994, 53.93979999999988, 51.50299999999993, 56.18559999999991, 40.09069999999997, 33.35329999999988, 40.09069999999997, 51.50299999999993, 40.09069999999997, 56.18559999999991, 31.10749999999996, 72.08399999999995, 58.23860000000002, 44.95659999999998, 51.69399999999996, 58.43139999999994, 42.3365, 58.23860000000002, 56.18559999999991, 58.23860000000002, 49.44820000000004, 58.43139999999994, 70.03470000000004], \"power_mean\": 52.95357661290318, \"energy_millijoules\": 6624.121042723052, \"energy_joules\": 6.6241210427230515, \"coremark_score\": 2398.426632, \"coremarks_per_mhz\": 3.689887126153846, \"ulpmark_cm_score\": 45.289027489853304}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [712.8575999999999, 662.865, 717.542, 685.5264], \"power_mean\": 694.69775, \"energy_millijoules\": 3473.4887500000004, \"energy_joules\": 3.4734887500000005}}, \"703000\": {\"active\": {\"elapsed_sec\": 115.61786893, \"elapsed_ns\": 115617868930, \"power_samples\": [58.43139999999994, 42.14799999999991, 53.93979999999988, 58.23860000000002, 49.257799999999975, 58.23860000000002, 51.50299999999993, 49.257799999999975, 47.01260000000002, 74.3291999999999, 60.483799999999974, 51.50299999999993, 39.90279999999996, 33.167199999999866, 49.257799999999975, 65.34839999999986, 67.59360000000004, 30.921999999999912, 47.01260000000002, 58.045799999999986, 37.6576, 53.74819999999988, 47.01260000000002, 55.99339999999984, 42.14799999999991, 49.06740000000002, 55.99339999999984, 49.257799999999975, 55.99339999999984, 49.257799999999975, 55.99339999999984, 65.15369999999996, 62.72899999999993, 35.41239999999982, 44.578199999999924, 33.167199999999866, 37.47029999999995, 65.15369999999996, 44.76739999999984, 49.257799999999975, 53.74819999999988, 85.5551999999999, 83.1105, 65.34839999999986, 67.59360000000004, 51.3119999999999, 58.23860000000002, 65.15369999999996, 49.257799999999975, 47.01260000000002, 49.257799999999975, 41.959499999999935, 53.55659999999989, 65.34839999999986, 35.41239999999982, 49.257799999999975, 53.55659999999989, 65.34839999999986, 78.62130000000002, 65.34839999999986, 69.64289999999994, 51.50299999999993, 65.15369999999996, 69.64289999999994, 65.15369999999996, 60.29039999999998, 39.90279999999996, 49.06740000000002, 46.82280000000003, 69.64289999999994, 62.53499999999997, 58.23860000000002, 49.257799999999975, 55.99339999999984, 74.13209999999992, 74.13209999999992, 62.72899999999993, 62.53499999999997, 58.045799999999986, 58.045799999999986, 78.81960000000004, 65.34839999999986, 55.99339999999984, 60.483799999999974, 69.64289999999994, 74.13209999999992, 72.08399999999995, 39.71489999999994, 51.3119999999999, 53.55659999999989, 55.608999999999924, 71.88749999999993, 65.15369999999996, 49.06740000000002, 49.06740000000002, 51.3119999999999, 39.71489999999994, 55.80119999999988, 49.06740000000002, 53.55659999999989, 55.80119999999988, 42.14799999999991, 41.959499999999935, 67.39829999999995, 62.53499999999997, 76.37669999999991, 58.045799999999986, 49.06740000000002, 69.64289999999994, 67.39829999999995, 83.1105, 65.15369999999996, 65.15369999999996, 55.80119999999988, 74.13209999999992], \"power_mean\": 56.66887391304342, \"energy_millijoules\": 6551.93443648895, \"energy_joules\": 6.55193443648895, \"coremark_score\": 2594.95368, \"coremarks_per_mhz\": 3.691257012802276, \"ulpmark_cm_score\": 45.78800397165817}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [687.5891, 675.9857999999999, 719.4046, 673.74], \"power_mean\": 689.179875, \"energy_millijoules\": 3445.899375, \"energy_joules\": 3.4458993749999998}}, \"756000\": {\"active\": {\"elapsed_sec\": 107.471624006, \"elapsed_ns\": 107471624006, \"power_samples\": [65.15369999999996, 69.64289999999994, 46.82280000000003, 64.95899999999995, 60.29039999999998, 58.045799999999986, 49.06740000000002, 49.06740000000002, 71.69099999999992, 60.29039999999998, 46.82280000000003, 65.15369999999996, 65.15369999999996, 73.93499999999995, 80.86590000000001, 67.39829999999995, 69.64289999999994, 55.80119999999988, 71.88749999999993, 85.15499999999997, 62.53499999999997, 58.045799999999986, 62.53499999999997, 51.3119999999999, 64.95899999999995, 71.69099999999992, 58.045799999999986, 53.55659999999989, 58.045799999999986, 67.39829999999995, 69.447, 53.55659999999989, 46.82280000000003, 58.045799999999986, 60.09699999999998, 64.95899999999995, 53.55659999999989, 48.87699999999995, 49.06740000000002, 39.52699999999993, 67.20299999999997, 80.86590000000001, 49.06740000000002, 51.3119999999999, 51.3119999999999, 48.87699999999995, 71.88749999999993, 67.39829999999995, 57.85299999999995, 53.55659999999989, 62.53499999999997, 80.66699999999992, 90.01699999999994, 64.95899999999995, 57.85299999999995, 53.55659999999989, 59.90359999999987, 67.20299999999997, 67.39829999999995, 57.85299999999995, 60.09699999999998, 65.15369999999996, 69.447, 58.045799999999986, 53.55659999999989, 55.608999999999924, 71.4944999999999, 67.20299999999997, 69.64289999999994, 64.95899999999995, 53.364999999999895, 55.608999999999924, 90.21839999999997, 64.95899999999995, 57.85299999999995, 58.045799999999986, 57.85299999999995, 53.364999999999895, 64.95899999999995, 62.340999999999894, 51.12099999999998, 48.87699999999995, 57.85299999999995, 64.95899999999995, 73.93499999999995, 53.364999999999895, 48.87699999999995, 55.608999999999924, 55.608999999999924, 69.64289999999994, 62.146999999999935, 46.632999999999925, 51.12099999999998, 48.87699999999995, 76.17899999999997, 69.447, 57.85299999999995, 57.85299999999995, 51.3119999999999, 57.85299999999995, 57.85299999999995, 73.93499999999995, 62.340999999999894, 57.85299999999995, 64.95899999999995, 69.25109999999995], \"power_mean\": 61.219784905660326, \"energy_millijoules\": 6579.389705109321, \"energy_joules\": 6.579389705109321, \"coremark_score\": 2791.684502, \"coremarks_per_mhz\": 3.692704367724868, \"ulpmark_cm_score\": 45.596934282070364}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [668.8908, 712.4768, 673.56, 700.8766], \"power_mean\": 688.95105, \"energy_millijoules\": 3444.75525, \"energy_joules\": 3.44475525}}, \"862000\": {\"active\": {\"elapsed_sec\": 94.20124239, \"elapsed_ns\": 94201242390, \"power_samples\": [80.46809999999994, 76.17899999999997, 64.95899999999995, 80.66699999999992, 64.95899999999995, 96.54579999999987, 57.85299999999995, 60.09699999999998, 57.85299999999995, 50.92999999999995, 69.25109999999995, 67.0077, 57.85299999999995, 48.87699999999995, 64.76429999999993, 67.0077, 62.146999999999935, 46.632999999999925, 46.632999999999925, 41.77099999999996, 59.90359999999987, 48.87699999999995, 55.608999999999924, 39.52699999999993, 53.364999999999895, 73.73789999999997, 64.76429999999993, 53.173400000000015, 48.87699999999995, 57.66020000000003, 64.95899999999995, 73.93499999999995, 50.92999999999995, 59.90359999999987, 73.93499999999995, 62.340999999999894, 64.76429999999993, 64.76429999999993, 60.09699999999998, 73.73789999999997, 64.76429999999993, 73.73789999999997, 62.340999999999894, 59.90359999999987, 62.146999999999935, 75.98129999999992, 51.12099999999998, 50.92999999999995, 80.46809999999994, 92.05899999999997, 87.57220000000007, 73.93499999999995, 73.73789999999997, 78.423, 103.07099999999991, 84.95489999999995, 57.66020000000003, 62.146999999999935, 67.0077, 62.146999999999935, 78.22469999999998, 64.76429999999993, 59.90359999999987, 73.93499999999995, 80.46809999999994, 64.76429999999993, 64.76429999999993, 57.66020000000003, 71.298, 64.76429999999993, 64.76429999999993, 64.76429999999993, 73.73789999999997, 89.8155999999999, 71.69099999999992, 57.66020000000003, 67.0077, 52.98179999999991, 73.73789999999997, 67.0077, 64.76429999999993, 71.298, 73.54079999999988, 69.25109999999995, 67.0077, 64.76429999999993, 64.56959999999992, 66.81240000000003, 64.76429999999993, 59.90359999999987, 57.66020000000003, 59.90359999999987, 80.26920000000007], \"power_mean\": 65.80269462365587, \"energy_millijoules\": 6198.695586158156, \"energy_joules\": 6.1986955861581565, \"coremark_score\": 3184.950049, \"coremarks_per_mhz\": 3.6948376438515083, \"ulpmark_cm_score\": 48.39727904527326}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [700.502, 673.38, 712.2864000000001, 675.6246], \"power_mean\": 690.44825, \"energy_millijoules\": 3452.24125, \"energy_joules\": 3.45224125}}, \"968000\": {\"active\": {\"elapsed_sec\": 83.848966466, \"elapsed_ns\": 83848966466, \"power_samples\": [73.54079999999988, 71.298, 71.298, 84.75479999999993, 89.61419999999998, 73.54079999999988, 91.85699999999997, 82.51199999999994, 78.02639999999997, 84.75479999999993, 69.25109999999995, 66.81240000000003, 71.298, 78.02639999999997, 84.75479999999993, 64.76429999999993, 66.81240000000003, 50.73899999999992, 82.51199999999994, 66.81240000000003, 48.496200000000044, 75.98129999999992, 78.02639999999997, 82.51199999999994, 73.54079999999988, 73.54079999999988, 71.10149999999999, 80.26920000000007, 80.26920000000007, 66.81240000000003, 71.298, 84.75479999999993, 80.26920000000007, 73.54079999999988, 73.54079999999988, 77.82810000000006, 84.55469999999991, 87.3714, 69.05520000000001, 80.26920000000007, 94.09979999999985, 80.26920000000007, 61.952999999999975, 61.952999999999975, 78.02639999999997, 89.61419999999998, 84.75479999999993, 59.710199999999986, 71.298, 80.26920000000007, 105.3137999999999, 80.26920000000007, 64.56959999999992, 80.26920000000007, 94.09979999999985, 96.13939999999991, 107.55659999999989, 61.952999999999975, 66.61710000000005, 55.032399999999825, 64.37489999999991, 64.37489999999991, 61.7589999999999, 48.30579999999998, 82.3125, 78.02639999999997, 73.54079999999988, 71.298, 77.82810000000006, 80.07029999999997, 71.298, 73.54079999999988, 80.07029999999997, 79.8714, 80.26920000000007, 66.81240000000003, 73.54079999999988, 80.07029999999997, 84.75479999999993, 89.41279999999995, 71.10149999999999, 73.3436999999999, 80.07029999999997], \"power_mean\": 75.85333132530117, \"energy_millijoules\": 6360.2234346295645, \"energy_joules\": 6.360223434629565, \"coremark_score\": 3578.158918, \"coremarks_per_mhz\": 3.6964451632231405, \"ulpmark_cm_score\": 47.16815424542908}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [684.794, 679.7502000000001, 737.154, 679.932], \"power_mean\": 695.40755, \"energy_millijoules\": 3477.03775, \"energy_joules\": 3.47703775}}, \"1048000\": {\"active\": {\"elapsed_sec\": 77.427943927, \"elapsed_ns\": 77427943927, \"power_samples\": [68.85929999999996, 71.298, 71.10149999999999, 82.3125, 100.62379999999996, 73.3436999999999, 80.07029999999997, 73.14659999999992, 73.3436999999999, 75.78359999999998, 73.3436999999999, 71.298, 104.9025999999999, 77.82810000000006, 73.3436999999999, 55.032399999999825, 73.3436999999999, 80.07029999999997, 64.37489999999991, 64.37489999999991, 66.61710000000005, 80.07029999999997, 98.38160000000005, 86.96979999999996, 73.3436999999999, 89.21140000000003, 77.62980000000005, 89.41279999999995, 80.07029999999997, 59.710199999999986, 86.96979999999996, 82.3125, 66.61710000000005, 71.10149999999999, 64.37489999999991, 82.3125, 75.78359999999998, 71.10149999999999, 70.90499999999997, 79.8714, 73.14659999999992, 64.37489999999991, 73.3436999999999, 64.1801999999999, 66.61710000000005, 71.10149999999999, 73.14659999999992, 59.51679999999999, 77.82810000000006, 71.10149999999999, 66.42179999999996, 57.27460000000008, 61.7589999999999, 89.21140000000003, 77.82810000000006, 66.61710000000005, 61.7589999999999, 75.38819999999987, 80.07029999999997, 61.7589999999999, 57.27460000000008, 77.62980000000005, 95.93619999999987, 98.17780000000005, 73.14659999999992, 75.38819999999987, 87.17060000000004, 104.9025999999999, 89.41279999999995, 64.37489999999991, 71.10149999999999, 73.14659999999992, 73.3436999999999, 66.42179999999996, 80.07029999999997, 79.8714, 86.96979999999996], \"power_mean\": 75.42008831168827, \"energy_millijoules\": 5839.622368766788, \"energy_joules\": 5.839622368766788, \"coremark_score\": 3874.967709, \"coremarks_per_mhz\": 3.6974882719465647, \"ulpmark_cm_score\": 51.373184951915654}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [686.6705999999999, 679.7502000000001, 713.958, 679.7502000000001], \"power_mean\": 690.03225, \"energy_millijoules\": 3450.16125, \"energy_joules\": 3.4501612500000003}}, \"1128000\": {\"active\": {\"elapsed_sec\": 71.918041312, \"elapsed_ns\": 71918041312, \"power_samples\": [84.35459999999989, 95.93619999999987, 120.9674, 82.11299999999994, 98.38160000000005, 79.8714, 93.69459999999992, 100.4194, 86.96979999999996, 77.62980000000005, 98.17780000000005, 98.17780000000005, 79.8714, 89.21140000000003, 86.96979999999996, 102.66099999999994, 75.38819999999987, 79.8714, 89.21140000000003, 86.96979999999996, 79.8714, 73.14659999999992, 79.8714, 102.66099999999994, 89.21140000000003, 93.69459999999992, 84.35459999999989, 84.35459999999989, 93.69459999999992, 82.11299999999994, 89.21140000000003, 84.35459999999989, 84.35459999999989, 79.8714, 72.94949999999994, 89.21140000000003, 104.9025999999999, 95.93619999999987, 79.8714, 89.21140000000003, 70.90499999999997, 82.11299999999994, 75.38819999999987, 68.66340000000002, 89.21140000000003, 84.35459999999989, 89.21140000000003, 68.66340000000002, 66.42179999999996, 79.6724999999999, 89.21140000000003, 75.38819999999987, 86.96979999999996, 98.17780000000005, 107.14419999999996, 66.42179999999996, 70.90499999999997, 75.38819999999987, 84.35459999999989, 77.62980000000005, 70.90499999999997, 66.42179999999996, 89.21140000000003, 79.8714, 89.21140000000003, 68.66340000000002, 97.97399999999993, 107.14419999999996, 79.8714, 82.11299999999994, 89.21140000000003], \"power_mean\": 85.4435126760563, \"energy_millijoules\": 6144.930074479013, \"energy_joules\": 6.144930074479013, \"coremark_score\": 4171.765491, \"coremarks_per_mhz\": 3.698373662234043, \"ulpmark_cm_score\": 48.82073455090292}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [716.0092, 670.4178, 686.4868999999999, 677.3256], \"power_mean\": 687.5598749999999, \"energy_millijoules\": 3437.7993749999996, \"energy_joules\": 3.4377993749999995}}, \"1287000\": {\"active\": {\"elapsed_sec\": 63.011599466, \"elapsed_ns\": 63011599466, \"power_samples\": [98.17780000000005, 102.4559999999999, 111.7935, 95.73299999999995, 89.00999999999999, 86.769, 97.97399999999993, 97.97399999999993, 72.94949999999994, 86.769, 100.21499999999992, 93.49199999999996, 89.00999999999999, 89.00999999999999, 91.04899999999998, 95.73299999999995, 75.19049999999993, 89.00999999999999, 95.73299999999995, 89.00999999999999, 77.43149999999991, 84.15449999999998, 79.6724999999999, 114.03449999999998, 93.49199999999996, 97.97399999999993, 120.75749999999994, 95.73299999999995, 86.769, 86.56820000000005, 114.03449999999998, 93.49199999999996, 97.97399999999993, 93.49199999999996, 104.697, 95.73299999999995, 89.00999999999999, 84.15449999999998, 104.697, 79.6724999999999, 91.25099999999998, 95.73299999999995, 111.7935, 89.00999999999999, 79.6724999999999, 84.15449999999998, 97.77020000000005, 93.49199999999996, 86.769, 89.00999999999999, 86.56820000000005, 116.27549999999997, 72.94949999999994, 100.01059999999995, 91.04899999999998, 89.00999999999999, 89.00999999999999, 97.97399999999993, 106.73179999999991, 93.49199999999996, 86.769, 81.9135], \"power_mean\": 93.08081129032254, \"energy_millijoules\": 5865.170798996135, \"energy_joules\": 5.865170798996135, \"coremark_score\": 4761.526863, \"coremarks_per_mhz\": 3.6997100722610723, \"ulpmark_cm_score\": 51.14940558105266}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [690.9713, 668.1756000000001, 697.6978999999999, 670.4178], \"power_mean\": 681.81565, \"energy_millijoules\": 3409.07825, \"energy_joules\": 3.40907825}}, \"1393000\": {\"active\": {\"elapsed_sec\": 58.206579081, \"elapsed_ns\": 58206579081, \"power_samples\": [97.77020000000005, 97.77020000000005, 109.34559999999988, 97.77020000000005, 95.52979999999991, 100.01059999999995, 88.80859999999996, 118.30719999999997, 88.80859999999996, 91.04899999999998, 113.61829999999986, 106.73179999999991, 88.80859999999996, 86.56820000000005, 97.77020000000005, 129.8825999999999, 106.73179999999991, 104.4914, 111.5859999999999, 120.54759999999987, 116.06679999999983, 100.01059999999995, 134.36339999999996, 118.30719999999997, 118.30719999999997, 113.82639999999992, 120.33770000000004, 118.30719999999997, 106.73179999999991, 104.4914, 113.82639999999992, 129.8825999999999, 111.5859999999999, 102.25099999999998, 111.37849999999992, 109.34559999999988, 104.4914, 113.82639999999992, 129.8825999999999, 100.01059999999995, 97.77020000000005, 95.52979999999991, 86.36739999999998, 113.82639999999992, 95.32659999999987, 83.95439999999996, 102.04599999999994, 99.80619999999999, 102.25099999999998, 97.77020000000005, 97.56639999999993, 109.34559999999988, 106.73179999999991, 106.73179999999991, 118.30719999999997, 113.82639999999992, 88.80859999999996], \"power_mean\": 106.05444385964907, \"energy_millijoules\": 6173.066373408138, \"energy_joules\": 6.173066373408139, \"coremark_score\": 5154.639175, \"coremarks_per_mhz\": 3.700387060301508, \"ulpmark_cm_score\": 48.59821389452687}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [686.3032, 738.6071999999999, 676.9631999999999, 706.8512], \"power_mean\": 702.1812, \"energy_millijoules\": 3510.906, \"energy_joules\": 3.510906}}, \"1500000\": {\"active\": {\"elapsed_sec\": 54.042646465, \"elapsed_ns\": 54042646465, \"power_samples\": [104.28579999999988, 97.77020000000005, 109.13869999999997, 111.37849999999992, 120.54759999999987, 88.60720000000003, 124.81729999999993, 129.67020000000002, 97.56639999999993, 97.56639999999993, 106.31939999999986, 104.28579999999988, 95.32659999999987, 97.56639999999993, 106.52559999999994, 109.13869999999997, 104.28579999999988, 104.28579999999988, 113.41019999999992, 109.13869999999997, 106.52559999999994, 97.56639999999993, 120.33770000000004, 129.67020000000002, 104.28579999999988, 95.32659999999987, 92.88419999999985, 104.28579999999988, 111.37849999999992, 99.80619999999999, 120.12779999999998, 111.37849999999992, 97.56639999999993, 104.28579999999988, 90.84699999999998, 111.37849999999992, 104.28579999999988, 113.61829999999986, 136.17539999999985, 124.81729999999993, 118.09789999999998, 97.56639999999993, 113.41019999999992, 118.09789999999998, 120.33770000000004, 113.61829999999986, 138.41460000000006, 115.85809999999992, 104.28579999999988, 120.33770000000004, 115.85809999999992, 131.90999999999997, 106.52559999999994], \"power_mean\": 109.8584415094339, \"energy_millijoules\": 5937.040915690217, \"energy_joules\": 5.937040915690217, \"coremark_score\": 5551.854319, \"coremarks_per_mhz\": 3.7012362126666667, \"ulpmark_cm_score\": 50.53022275914755}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [672.3, 679.023, 727.2045, 667.9968], \"power_mean\": 686.631075, \"energy_millijoules\": 3433.1553750000003, \"energy_joules\": 3.433155375}}, \"1645000\": {\"active\": {\"elapsed_sec\": 49.268396388, \"elapsed_ns\": 49268396388, \"power_samples\": [120.33770000000004, 129.45780000000002, 138.41460000000006, 117.8886, 111.17099999999994, 115.44069999999988, 122.36699999999996, 138.41460000000006, 145.1321999999999, 147.37139999999988, 149.39279999999997, 129.45780000000002, 129.45780000000002, 152.22299999999996, 145.1321999999999, 131.697, 124.39509999999996, 140.4384, 167.89739999999983, 120.12779999999998, 124.60619999999994, 131.697, 136.17539999999985, 119.91789999999992, 126.84539999999981, 147.15419999999995, 131.48399999999992, 129.24540000000002, 122.15649999999994, 140.65380000000005, 120.12779999999998, 136.17539999999985, 142.6769999999999, 161.1798, 124.39509999999996, 145.1321999999999, 156.48169999999993, 133.93619999999987, 140.65380000000005, 129.45780000000002, 140.4384, 145.1321999999999, 133.72259999999994, 126.63369999999986, 138.19979999999998, 115.6493999999999, 122.15649999999994, 131.48399999999992, 167.89739999999983], \"power_mean\": 134.64656122448974, \"energy_millijoules\": 6633.820150689271, \"energy_joules\": 6.633820150689271, \"coremark_score\": 6089.763108, \"coremarks_per_mhz\": 3.7019836522796354, \"ulpmark_cm_score\": 45.22281177140885}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [686.1195, 708.903, 679.023, 727.2045], \"power_mean\": 700.3125, \"energy_millijoules\": 3501.5625, \"energy_joules\": 3.5015625}}, \"1750000\": {\"active\": {\"elapsed_sec\": 46.30783808, \"elapsed_ns\": 46307838080, \"power_samples\": [167.67469999999992, 154.2430999999999, 154.2430999999999, 160.73799999999994, 156.48169999999993, 149.39279999999997, 160.95889999999997, 154.024, 156.48169999999993, 140.4384, 144.91559999999993, 149.39279999999997, 142.6769999999999, 142.6769999999999, 156.48169999999993, 169.68999999999994, 144.91559999999993, 144.91559999999993, 144.91559999999993, 149.39279999999997, 138.19979999999998, 135.96119999999985, 144.91559999999993, 154.024, 126.63369999999986, 135.96119999999985, 129.0329999999999, 124.39509999999996, 138.19979999999998, 144.91559999999993, 160.95889999999997, 163.1975, 140.4384, 144.91559999999993, 146.9369999999999, 156.48169999999993, 140.4384, 142.6769999999999, 177.0021999999999, 144.91559999999993, 135.96119999999985, 138.19979999999998, 165.4360999999999, 140.4384, 146.9369999999999, 146.9369999999999], \"power_mean\": 148.01654130434775, \"energy_millijoules\": 6854.326027883369, \"energy_joules\": 6.854326027883369, \"coremark_score\": 6479.201762, \"coremarks_per_mhz\": 3.7024010068571425, \"ulpmark_cm_score\": 43.767979343206214}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [674.3604, 683.5123, 678.6594, 694.5251999999999], \"power_mean\": 682.764325, \"energy_millijoules\": 3413.821625, \"energy_joules\": 3.413821625}}, \"1812000\": {\"active\": {\"elapsed_sec\": 44.721464695, \"elapsed_ns\": 44721464695, \"power_samples\": [169.68999999999994, 142.6769999999999, 144.91559999999993, 151.78599999999994, 146.9369999999999, 156.26199999999994, 147.15419999999995, 169.68999999999994, 160.95889999999997, 137.9849999999999, 160.73799999999994, 149.17499999999995, 142.6769999999999, 137.9849999999999, 144.69899999999996, 165.4360999999999, 142.6769999999999, 126.42199999999991, 156.26199999999994, 154.024, 176.55179999999984, 183.49099999999999, 178.78920000000005, 183.49099999999999, 183.2639999999999, 187.73879999999986, 146.9369999999999, 149.17499999999995, 137.9849999999999, 162.976, 167.452, 154.024, 153.80489999999998, 149.17499999999995, 154.2430999999999, 149.39279999999997, 165.21399999999994, 176.77699999999993, 158.5, 137.9849999999999, 140.0075999999999, 176.77699999999993, 154.024, 154.024], \"power_mean\": 156.58977272727267, \"energy_millijoules\": 7002.923992620799, \"energy_joules\": 7.002923992620799, \"coremark_score\": 6708.857929, \"coremarks_per_mhz\": 3.7024602257174393, \"ulpmark_cm_score\": 42.83924833628345}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [674.1797999999999, 685.9358, 683.6954000000001, 667.4604], \"power_mean\": 677.81785, \"energy_millijoules\": 3389.08925, \"energy_joules\": 3.38908925}}, \"1916000\": {\"active\": {\"elapsed_sec\": 42.287615387, \"elapsed_ns\": 42287615387, \"power_samples\": [189.97620000000006, 183.2639999999999, 183.2639999999999, 185.5014, 174.31439999999998, 192.21359999999993, 171.70409999999993, 169.68999999999994, 176.55179999999984, 185.5014, 174.31439999999998, 167.452, 162.7544999999999, 169.46670000000006, 156.04229999999984, 164.9919, 176.55179999999984, 176.55179999999984, 160.5170999999999, 162.7544999999999, 176.55179999999984, 171.70409999999993, 167.22929999999985, 156.04229999999984, 194.82389999999998, 169.46670000000006, 174.31439999999998, 167.22929999999985, 187.73879999999986, 171.70409999999993, 169.46670000000006, 176.32659999999987, 208.24829999999986, 185.5014, 180.80020000000002, 183.03699999999992, 183.2639999999999, 183.2639999999999, 185.5014, 183.03699999999992, 167.22929999999985, 160.5170999999999], \"power_mean\": 175.86608571428565, \"energy_millijoules\": 7436.957392302887, \"energy_joules\": 7.436957392302887, \"coremark_score\": 7095.05002, \"coremarks_per_mhz\": 3.7030532463465553, \"ulpmark_cm_score\": 40.3390774176674}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [680.8992000000001, 710.5728, 662.9807999999999, 708.5234], \"power_mean\": 690.74405, \"energy_millijoules\": 3453.7202500000003, \"energy_joules\": 3.4537202500000004}}, \"2000000\": {\"active\": {\"elapsed_sec\": 40.509398464, \"elapsed_ns\": 40509398464, \"power_samples\": [178.78920000000005, 187.51059999999995, 178.78920000000005, 183.03699999999992, 171.48019999999997, 194.59379999999987, 189.97620000000006, 185.5014, 187.51059999999995, 180.80020000000002, 181.02659999999992, 187.73879999999986, 178.5634, 187.51059999999995, 180.80020000000002, 178.5634, 185.27379999999982, 171.48019999999997, 183.03699999999992, 196.59989999999982, 199.29870000000005, 185.27379999999982, 189.5186, 189.74739999999997, 160.2962, 185.27379999999982, 198.8361, 183.03699999999992, 187.51059999999995, 194.36369999999988, 176.32659999999987, 178.5634, 187.51059999999995, 185.27379999999982, 180.80020000000002, 194.59379999999987, 185.27379999999982, 176.32659999999987, 183.03699999999992, 199.06740000000002], \"power_mean\": 184.71278499999994, \"energy_millijoules\": 7482.60380896016, \"energy_joules\": 7.482603808960159, \"coremark_score\": 7406.675884, \"coremarks_per_mhz\": 3.703337942, \"ulpmark_cm_score\": 40.09299538761632}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [687.8076000000001, 737.8163999999999, 673.9992, 728.8596000000001], \"power_mean\": 707.1207, \"energy_millijoules\": 3535.6035, \"energy_joules\": 3.5356035}}}}, \"6\": {\"freqs\": {\"725000\": {\"active\": {\"elapsed_sec\": 53.608497465, \"elapsed_ns\": 53608497465, \"power_samples\": [119.91789999999992, 119.70799999999997, 133.5089999999999, 124.18399999999997, 119.91789999999992, 103.87459999999987, 117.67930000000001, 119.91789999999992, 126.63369999999986, 142.4609999999999, 129.0329999999999, 108.51799999999992, 126.42199999999991, 117.67930000000001, 124.18399999999997, 131.27099999999996, 121.94599999999991, 112.99399999999991, 126.63369999999986, 121.94599999999991, 133.5089999999999, 154.2430999999999, 144.91559999999993, 129.0329999999999, 119.70799999999997, 122.15649999999994, 138.19979999999998, 101.43099999999993, 103.66899999999998, 99.19299999999998, 99.39739999999995, 99.19299999999998, 96.95499999999993, 99.19299999999998, 129.0329999999999, 119.70799999999997, 124.18399999999997, 129.24540000000002, 126.42199999999991, 119.70799999999997, 126.21029999999985, 126.42199999999991, 142.6769999999999, 110.75599999999997, 121.94599999999991, 112.99399999999991, 131.27099999999996, 119.70799999999997, 131.27099999999996, 110.75599999999997, 108.51799999999992, 156.04229999999984, 164.9919], \"power_mean\": 122.66208679245277, \"energy_millijoules\": 6575.730168864814, \"energy_joules\": 6.575730168864814, \"coremark_score\": 5597.223777, \"coremarks_per_mhz\": 7.720308657931034, \"ulpmark_cm_score\": 45.62230996345609}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [687.9919, 687.8076000000001, 685.7520999999999, 694.7112999999999], \"power_mean\": 689.0657249999999, \"energy_millijoules\": 3445.3286249999996, \"energy_joules\": 3.4453286249999997}}, \"840000\": {\"active\": {\"elapsed_sec\": 46.23505231, \"elapsed_ns\": 46235052310, \"power_samples\": [149.17499999999995, 142.245, 137.77020000000005, 144.69899999999996, 140.22299999999996, 142.4609999999999, 142.4609999999999, 144.2657999999999, 135.53279999999984, 154.024, 126.42199999999991, 140.22299999999996, 142.4609999999999, 140.0075999999999, 148.95720000000006, 149.17499999999995, 133.29539999999997, 137.77020000000005, 140.22299999999996, 135.53279999999984, 146.71979999999985, 151.5675, 140.0075999999999, 148.95720000000006, 137.77020000000005, 131.058, 160.5170999999999, 169.46670000000006, 162.7544999999999, 153.80489999999998, 146.71979999999985, 164.9919, 153.80489999999998, 153.80489999999998, 164.9919, 137.77020000000005, 140.0075999999999, 144.48239999999998, 128.8205999999999, 153.80489999999998, 160.5170999999999, 133.29539999999997, 131.058, 140.0075999999999, 144.48239999999998, 169.24339999999995], \"power_mean\": 145.59457608695647, \"energy_millijoules\": 6731.572841432708, \"energy_joules\": 6.731572841432707, \"coremark_score\": 6490.275404, \"coremarks_per_mhz\": 7.7265183380952385, \"ulpmark_cm_score\": 44.56610766409679}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [683.5123, 703.482, 660.564, 676.2384], \"power_mean\": 680.949175, \"energy_millijoules\": 3404.7458749999996, \"energy_joules\": 3.4047458749999997}}, \"898000\": {\"active\": {\"elapsed_sec\": 43.241967387, \"elapsed_ns\": 43241967387, \"power_samples\": [146.71979999999985, 148.73939999999993, 156.04229999999984, 144.48239999999998, 144.48239999999998, 151.5675, 153.80489999999998, 176.32659999999987, 174.31439999999998, 153.80489999999998, 144.48239999999998, 148.73939999999993, 153.58579999999984, 153.58579999999984, 158.27970000000005, 144.48239999999998, 148.95720000000006, 158.05939999999998, 135.53279999999984, 153.80489999999998, 153.58579999999984, 167.00659999999993, 148.95720000000006, 151.5675, 153.58579999999984, 148.73939999999993, 169.24339999999995, 178.78920000000005, 160.5170999999999, 148.95720000000006, 151.5675, 160.5170999999999, 178.5634, 176.55179999999984, 153.80489999999998, 156.04229999999984, 151.34899999999993, 153.58579999999984, 158.05939999999998, 164.9919, 146.71979999999985, 137.55539999999996, 148.73939999999993], \"power_mean\": 155.0881697674418, \"energy_millijoules\": 6706.317579193238, \"energy_joules\": 6.706317579193238, \"coremark_score\": 6939.62526, \"coremarks_per_mhz\": 7.727867772828508, \"ulpmark_cm_score\": 44.733938775993614}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [685.5683999999999, 673.9992, 678.6594, 660.564], \"power_mean\": 674.6977499999999, \"energy_millijoules\": 3373.4887499999995, \"energy_joules\": 3.3734887499999995}}, \"985000\": {\"active\": {\"elapsed_sec\": 39.450510541, \"elapsed_ns\": 39450510541, \"power_samples\": [158.05939999999998, 174.08979999999985, 185.27379999999982, 178.5634, 178.5634, 164.76979999999992, 167.00659999999993, 169.24339999999995, 167.00659999999993, 166.7838999999999, 148.52160000000003, 153.58579999999984, 137.55539999999996, 153.58579999999984, 153.58579999999984, 173.86519999999996, 144.2657999999999, 160.2962, 174.08979999999985, 169.24339999999995, 164.76979999999992, 171.03239999999994, 171.48019999999997, 167.00659999999993, 164.76979999999992, 183.03699999999992, 160.2962, 185.27379999999982, 175.87619999999993, 185.04619999999989, 160.2962, 178.5634, 176.32659999999987, 169.24339999999995, 166.56119999999987, 176.32659999999987, 176.32659999999987, 164.54769999999985, 169.02010000000007], \"power_mean\": 167.7885871794871, \"energy_millijoules\": 6619.345427183854, \"energy_joules\": 6.619345427183854, \"coremark_score\": 7606.683739, \"coremarks_per_mhz\": 7.722521562436548, \"ulpmark_cm_score\": 45.32170186616663}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [678.4776, 685.5683999999999, 687.8076000000001, 673.9992], \"power_mean\": 681.4632, \"energy_millijoules\": 3407.3160000000003, \"energy_joules\": 3.4073160000000002}}, \"1042000\": {\"active\": {\"elapsed_sec\": 37.292286464, \"elapsed_ns\": 37292286464, \"power_samples\": [180.5738, 182.80999999999995, 194.36369999999988, 196.59989999999982, 178.33760000000007, 183.03699999999992, 180.5738, 175.87619999999993, 184.81859999999995, 187.28239999999983, 169.02010000000007, 166.7838999999999, 160.07529999999997, 178.33760000000007, 176.1013999999999, 175.87619999999993, 169.02010000000007, 180.5738, 185.04619999999989, 189.2898, 196.36919999999986, 189.2898, 201.07230000000004, 194.36369999999988, 175.87619999999993, 171.03239999999994, 175.87619999999993, 189.5186, 203.0759999999999, 182.80999999999995, 168.79679999999996, 173.64059999999995, 166.56119999999987, 168.79679999999996, 175.87619999999993, 196.36919999999986, 182.58299999999997], \"power_mean\": 181.25150270270265, \"energy_millijoules\": 6759.282960819657, \"energy_joules\": 6.759282960819657, \"coremark_score\": 8046.994448, \"coremarks_per_mhz\": 7.722643424184262, \"ulpmark_cm_score\": 44.38340601199226}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [676.0572, 673.8186, 680.7168, 662.6256], \"power_mean\": 673.30455, \"energy_millijoules\": 3366.5227499999996, \"energy_joules\": 3.3665227499999997}}, \"1129000\": {\"active\": {\"elapsed_sec\": 34.393327771, \"elapsed_ns\": 34393327771, \"power_samples\": [198.60479999999995, 194.1335999999999, 191.5254, 216.86219999999992, 200.84039999999993, 200.84039999999993, 200.84039999999993, 200.84039999999993, 205.31159999999988, 198.37349999999992, 203.0759999999999, 203.0759999999999, 184.81859999999995, 194.1335999999999, 200.84039999999993, 216.62599999999998, 214.2539999999999, 189.2898, 187.05419999999992, 186.8259999999999, 198.60479999999995, 193.9034999999999, 187.05419999999992, 189.2898, 189.2898, 182.58299999999997, 194.1335999999999, 198.60479999999995, 214.0184999999999, 202.84349999999995, 198.60479999999995, 194.1335999999999, 205.31159999999988, 198.60479999999995], \"power_mean\": 198.09257647058817, \"energy_millijoules\": 6813.062911554822, \"energy_joules\": 6.813062911554821, \"coremark_score\": 8725.242125, \"coremarks_per_mhz\": 7.728292404782994, \"ulpmark_cm_score\": 44.0330588304426}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [680.5344, 694.153, 767.0935999999999, 694.153], \"power_mean\": 708.9835, \"energy_millijoules\": 3544.9175000000005, \"energy_joules\": 3.5449175000000004}}, \"1274000\": {\"active\": {\"elapsed_sec\": 30.487472924, \"elapsed_ns\": 30487472924, \"power_samples\": [216.38979999999992, 234.50599999999997, 218.861, 211.7835, 202.84349999999995, 234.50599999999997, 241.58349999999996, 218.861, 234.50599999999997, 232.27099999999996, 236.74099999999999, 227.80099999999993, 241.34059999999988, 241.58349999999996, 234.50599999999997, 232.03059999999994, 232.27099999999996, 241.58349999999996, 241.34059999999988, 241.34059999999988, 234.50599999999997, 232.03059999999994, 216.38979999999992, 232.03059999999994, 232.03059999999994, 250.27819999999997, 223.09299999999996, 225.3274, 218.861, 232.03059999999994], \"power_mean\": 230.44091666666662, \"energy_millijoules\": 7025.561207456739, \"energy_joules\": 7.025561207456739, \"coremark_score\": 9843.488532, \"coremarks_per_mhz\": 7.726443117739403, \"ulpmark_cm_score\": 42.70121505476149}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [671.58, 696.5776999999999, 669.162, 675.876], \"power_mean\": 678.298925, \"energy_millijoules\": 3391.4946250000003, \"energy_joules\": 3.3914946250000004}}, \"1418000\": {\"active\": {\"elapsed_sec\": 27.384174463, \"elapsed_ns\": 27384174463, \"power_samples\": [275.2289999999999, 261.82259999999997, 254.74699999999996, 266.29139999999995, 256.73429999999985, 266.04179999999985, 270.5094, 263.808, 250.03289999999993, 247.79909999999995, 259.34039999999993, 268.27559999999994, 250.03289999999993, 261.5742, 241.34059999999988, 256.73429999999985, 252.26670000000001, 272.7432, 266.04179999999985, 250.03289999999993, 259.34039999999993, 247.79909999999995, 266.04179999999985, 261.5742, 276.9581999999999, 256.9814, 259.34039999999993], \"power_mean\": 259.97902222222217, \"energy_millijoules\": 7119.310901253486, \"energy_joules\": 7.119310901253486, \"coremark_score\": 10959.704819, \"coremarks_per_mhz\": 7.728987883638928, \"ulpmark_cm_score\": 42.13890981319266}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [726.231, 669.162, 694.153, 689.677], \"power_mean\": 694.80575, \"energy_millijoules\": 3474.02875, \"energy_joules\": 3.47402875}}, \"1534000\": {\"active\": {\"elapsed_sec\": 25.301074848, \"elapsed_ns\": 25301074848, \"power_samples\": [299.40369999999996, 315.404, 297.42920000000004, 306.7342, 304.501, 297.42920000000004, 301.89560000000006, 329.1716999999999, 310.9388, 286.26319999999987, 292.7058999999998, 299.40369999999996, 306.7342, 290.4733, 304.241, 297.1711, 295.1959999999999, 306.7342, 324.972, 329.1716999999999, 295.1959999999999, 286.26319999999987, 297.1711, 297.1711, 301.6363], \"power_mean\": 302.93645599999996, \"energy_millijoules\": 7664.617947443858, \"energy_joules\": 7.664617947443857, \"coremark_score\": 11862.396204, \"coremarks_per_mhz\": 7.732983183833117, \"ulpmark_cm_score\": 39.14089417856107}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [682.7799, 680.352, 680.1696, 714.4764], \"power_mean\": 689.444475, \"energy_millijoules\": 3447.2223750000003, \"energy_joules\": 3.4472223750000004}}, \"1650000\": {\"active\": {\"elapsed_sec\": 23.520405155, \"elapsed_ns\": 23520405155, \"power_samples\": [342.56730000000005, 349.3649999999999, 347.4046000000001, 338.10210000000006, 354.1023999999999, 360.525, 324.4409999999999, 335.8694999999999, 321.837, 335.8694999999999, 340.06499999999994, 344.5289999999999, 335.601, 337.8330000000001, 347.4046000000001, 353.82899999999984, 356.0609999999999, 347.13300000000004, 335.8694999999999, 338.10210000000006, 333.3689999999998, 337.8330000000001, 347.13300000000004], \"power_mean\": 341.94980869565217, \"energy_millijoules\": 8042.798043196481, \"energy_joules\": 8.04279804319648, \"coremark_score\": 12759.984688, \"coremarks_per_mhz\": 7.733324053333334, \"ulpmark_cm_score\": 37.30045170707405}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [687.2547000000001, 710.0015999999999, 685.0173, 691.7295], \"power_mean\": 693.500775, \"energy_millijoules\": 3467.503875, \"energy_joules\": 3.467503875}}, \"1837000\": {\"active\": {\"elapsed_sec\": 21.134674155, \"elapsed_ns\": 21134674155, \"power_samples\": [412.39840000000004, 401.1587999999999, 405.3342, 409.50720000000024, 405.3342, 391.9494000000002, 389.7185999999997, 392.2331999999999, 387.116, 412.39840000000004, 396.41100000000006, 403.1034000000002, 389.7185999999997, 405.3342, 405.3342, 429.9507000000001, 403.1034000000002, 394.1802, 403.1034000000002, 387.116, 391.66560000000004], \"power_mean\": 400.76995714285715, \"energy_millijoules\": 8470.142455327601, \"energy_joules\": 8.4701424553276, \"coremark_score\": 14201.855709, \"coremarks_per_mhz\": 7.731004740881873, \"ulpmark_cm_score\": 35.418530630651226}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [693.7807999999999, 682.5967999999999, 720.9952000000001, 687.0704000000001], \"power_mean\": 696.1107999999999, \"energy_millijoules\": 3480.5539999999996, \"energy_joules\": 3.4805539999999997}}, \"1993000\": {\"active\": {\"elapsed_sec\": 19.489968925, \"elapsed_ns\": 19489968925, \"power_samples\": [461.6142, 474.9918, 457.155, 484.2818, 490.9706000000001, 474.9918, 484.2818, 468.3029999999999, 465.7694999999999, 470.22749999999996, 490.65999999999985, 477.59299999999985, 472.7621999999999, 483.97299999999996, 481.7439999999999, 477.28600000000006, 500.26060000000007, 488.43100000000004, 484.2818], \"power_mean\": 478.3988736842105, \"energy_millijoules\": 9323.979181860263, \"energy_joules\": 9.323979181860263, \"coremark_score\": 15401.201294, \"coremarks_per_mhz\": 7.727647412945309, \"ulpmark_cm_score\": 32.17510401392229}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [782.5072000000001, 677.5686000000001, 714.0931999999999, 677.5686000000001], \"power_mean\": 712.9344000000001, \"energy_millijoules\": 3564.6720000000005, \"energy_joules\": 3.5646720000000003}}, \"2118000\": {\"active\": {\"elapsed_sec\": 18.329587002, \"elapsed_ns\": 18329587002, \"power_samples\": [535.3374000000001, 524.1984, 544.9451999999999, 522.2898, 526.4261999999999, 521.9705999999999, 517.1436999999999, 571.7248, 551.3033, 537.5652, 542.3920999999998, 562.8135999999997, 544.2946, 544.6199000000001, 553.5310999999997, 533.1095999999998, 555.7589, 553.5310999999997], \"power_mean\": 541.2753055555555, \"energy_millijoules\": 9921.352805214688, \"energy_joules\": 9.921352805214688, \"coremark_score\": 16376.439762, \"coremarks_per_mhz\": 7.732030104815864, \"ulpmark_cm_score\": 30.237811908303396}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [686.8861, 700.3033, 671.04, 670.86], \"power_mean\": 682.27235, \"energy_millijoules\": 3411.36175, \"energy_joules\": 3.41136175}}, \"2210000\": {\"active\": {\"elapsed_sec\": 17.56701177, \"elapsed_ns\": 17567011770, \"power_samples\": [576.1804000000002, 571.7248, 575.8466000000001, 589.5809999999999, 568.8329999999999, 585.1266, 573.6193999999998, 573.6193999999998, 580.3009999999999, 593.6967, 594.0353999999998, 573.2862, 579.9659999999999, 585.1266, 585.1266, 587.3537999999999, 579.9659999999999], \"power_mean\": 580.7876176470588, \"energy_millijoules\": 10202.702915076143, \"energy_joules\": 10.202702915076143, \"coremark_score\": 17087.201686, \"coremarks_per_mhz\": 7.73176546877828, \"ulpmark_cm_score\": 29.403972897878024}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [675.5136, 691.173, 670.68, 670.86], \"power_mean\": 677.05665, \"energy_millijoules\": 3385.28325, \"energy_joules\": 3.38528325}}, \"2306000\": {\"active\": {\"elapsed_sec\": 16.841541155, \"elapsed_ns\": 16841541155, \"power_samples\": [632.2911000000001, 638.6199999999999, 638.9708999999998, 624.893, 629.7159999999999, 630.0645, 638.6199999999999, 620.441, 630.0645, 629.7159999999999, 627.8378999999998, 624.893, 638.6199999999999, 650.1209999999999, 631.942, 627.49], \"power_mean\": 632.1438062499999, \"energy_millijoules\": 10646.27592883772, \"energy_joules\": 10.64627592883772, \"coremark_score\": 17823.193916, \"coremarks_per_mhz\": 7.729052001734606, \"ulpmark_cm_score\": 28.178867615800346}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [720.6084000000001, 664.1513999999999, 741.1014, 679.8048], \"power_mean\": 701.4165, \"energy_millijoules\": 3507.0825000000004, \"energy_joules\": 3.5070825000000005}}, \"2400000\": {\"active\": {\"elapsed_sec\": 16.183239693, \"elapsed_ns\": 16183239693, \"power_samples\": [674.6172999999999, 658.6685999999997, 687.6054000000001, 687.6054000000001, 701.325, 710.2241999999999, 685.3805999999997, 660.894, 660.894, 669.4361999999999, 669.4361999999999, 674.2565999999997, 676.8426999999999, 690.1950999999999, 685.3805999999997, 681.2935], \"power_mean\": 679.6284625, \"energy_millijoules\": 10998.590310822561, \"energy_joules\": 10.99859031082256, \"coremark_score\": 18550.581252, \"coremarks_per_mhz\": 7.729408855, \"ulpmark_cm_score\": 27.27622281782797}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [763.83, 682.2306, 715.945, 693.4086], \"power_mean\": 713.85355, \"energy_millijoules\": 3569.26775, \"energy_joules\": 3.56926775}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/mt6853t/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 663 mW\n\n\n===== CPU 1 =====\nFrequencies: 500 650 703 756 862 968 1048 1128 1287 1393 1500 1645 1750 1812 1916 2000\n\n 500:  1842     3.7 C/MHz     55 mW    9.0 J   33.5 I/mJ   162.9 s\n 650:  2398     3.7 C/MHz     53 mW    6.6 J   45.3 I/mJ   125.1 s\n 703:  2595     3.7 C/MHz     57 mW    6.6 J   45.8 I/mJ   115.6 s\n 756:  2792     3.7 C/MHz     61 mW    6.6 J   45.6 I/mJ   107.5 s\n 862:  3185     3.7 C/MHz     66 mW    6.2 J   48.4 I/mJ    94.2 s\n 968:  3578     3.7 C/MHz     76 mW    6.4 J   47.2 I/mJ    83.8 s\n1048:  3875     3.7 C/MHz     75 mW    5.8 J   51.4 I/mJ    77.4 s\n1128:  4172     3.7 C/MHz     85 mW    6.1 J   48.8 I/mJ    71.9 s\n1287:  4762     3.7 C/MHz     93 mW    5.9 J   51.1 I/mJ    63.0 s\n1393:  5155     3.7 C/MHz    106 mW    6.2 J   48.6 I/mJ    58.2 s\n1500:  5552     3.7 C/MHz    110 mW    5.9 J   50.5 I/mJ    54.0 s\n1645:  6090     3.7 C/MHz    135 mW    6.6 J   45.2 I/mJ    49.3 s\n1750:  6479     3.7 C/MHz    148 mW    6.9 J   43.8 I/mJ    46.3 s\n1812:  6709     3.7 C/MHz    157 mW    7.0 J   42.8 I/mJ    44.7 s\n1916:  7095     3.7 C/MHz    176 mW    7.4 J   40.3 I/mJ    42.3 s\n2000:  7407     3.7 C/MHz    185 mW    7.5 J   40.1 I/mJ    40.5 s\n\n\n===== CPU 6 =====\nFrequencies: 725 840 898 985 1042 1129 1274 1418 1534 1650 1837 1993 2118 2210 2306 2400\n\n 725:  5597     7.7 C/MHz    123 mW    6.6 J   45.6 I/mJ    53.6 s\n 840:  6490     7.7 C/MHz    146 mW    6.7 J   44.6 I/mJ    46.2 s\n 898:  6940     7.7 C/MHz    155 mW    6.7 J   44.7 I/mJ    43.2 s\n 985:  7607     7.7 C/MHz    168 mW    6.6 J   45.3 I/mJ    39.5 s\n1042:  8047     7.7 C/MHz    181 mW    6.8 J   44.4 I/mJ    37.3 s\n1129:  8725     7.7 C/MHz    198 mW    6.8 J   44.0 I/mJ    34.4 s\n1274:  9843     7.7 C/MHz    230 mW    7.0 J   42.7 I/mJ    30.5 s\n1418: 10960     7.7 C/MHz    260 mW    7.1 J   42.1 I/mJ    27.4 s\n1534: 11862     7.7 C/MHz    303 mW    7.7 J   39.1 I/mJ    25.3 s\n1650: 12760     7.7 C/MHz    342 mW    8.0 J   37.3 I/mJ    23.5 s\n1837: 14202     7.7 C/MHz    401 mW    8.5 J   35.4 I/mJ    21.1 s\n1993: 15401     7.7 C/MHz    478 mW    9.3 J   32.2 I/mJ    19.5 s\n2118: 16376     7.7 C/MHz    541 mW    9.9 J   30.2 I/mJ    18.3 s\n2210: 17087     7.7 C/MHz    581 mW   10.2 J   29.4 I/mJ    17.6 s\n2306: 17823     7.7 C/MHz    632 mW   10.6 J   28.2 I/mJ    16.8 s\n2400: 18551     7.7 C/MHz    680 mW   11.0 J   27.3 I/mJ    16.2 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/mt6853t/main/uptime.txt",
    "content": " 16:10:43 up 34 min,  load average: 25.67, 25.75, 23.30\n"
  },
  {
    "path": "results/mt6853t/main/versions.txt",
    "content": "Kernel: Linux version 4.14.141-g37f4efb4a (mvaisakh@cloud.drone.io) (Android (6052599 based on r353983c1) clang version 9.0.3 (https://android.googlesource.com/toolchain/clang 745b335211bb9eadfa6aa6301f84715cee4b37c5) (https://android.googlesource.com/toolchain/llvm 31c3f8c4ae6cc980405a3b90e7e88db00249eba5) (based on LLVM 9.0.3svn)) #249 SMP PREEMPT Mon Jul 12 15:26:19 UTC 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sdm439/main/cmdline.txt",
    "content": "sched_enable_hmp=1 kpti=0 console=ttyMSM0,115200,n8 androidboot.console=ttyMSM0 androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 androidboot.bootdevice=7824900.sdhci earlycon=msm_serial_dm,0x78B0000 androidboot.usbconfigfs=true loop.max_part=7 buildvariant=user rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.emmc=true androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=6986ee02-0ef3-b011-a7ed-ef243e883077 androidboot.serialno=REDACTED androidboot.secureboot=1 androidboot.dp=0x0 androidboot.efuse=1 androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_nvt36525b_hdplus_video_c3i:bklic=24:wpoint=305317:tplock=47353201<3493200:1:none:cfg:single_dsi skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=17 androidboot.dtb_idx=0\n"
  },
  {
    "path": "results/sdm439/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 4 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nHardware\t: Qualcomm Technologies, Inc SDM439\n"
  },
  {
    "path": "results/sdm439/main/device.txt",
    "content": "Model: Olive QRD;\nCompatible: qcom,sdm439;\n"
  },
  {
    "path": "results/sdm439/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x100\n[    0.000000] Linux version 4.9.268-LOLZ-freqbench (Jprimero15@LinuxDEV) (Proton clang version 13.0.0 (https://github.com/llvm/llvm-project f933f7fbd047802456f9d614daf0f0dfb3c7c45f)) #1 SMP PREEMPT Sat May 22 04:36:09 UTC 2021\n[    0.000000] Boot CPU: AArch64 Processor [410fd034]\n[    0.000000] Powerup reason=0x401a1\n[    0.000000] OF: fdt:Powerup reason 0x401a1\n[    0.000000] Machine: Olive QRD\n[    0.000000] efi: Getting EFI parameters from FDT:\n[    0.000000] efi: UEFI not found.\n[    0.000000] Reserved memory: created CMA memory pool at 0x000000008f800000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node venus_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ffc00000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f8c00000, size 112 MiB\n[    0.000000] OF: reserved mem: initialized node secure_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x000000008f000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@0, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: invalid size property in 'mem_dump_region' node.\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f7c00000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6c00000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000084a00000, size 29 MiB\n[    0.000000] OF: reserved mem: initialized node other_ext_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086800000, size 85 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008bd00000, size 24 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_fw_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008d500000, size 7 MiB\n[    0.000000] OF: reserved mem: initialized node wcnss_fw_region@0, compatible id removed-dma-pool\n[    0.000000] cma: Reserved 16 MiB at 0x00000000f5c00000\n[    0.000000] On node 0 totalpages: 524288\n[    0.000000]   DMA zone: 8192 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 524288 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.0 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] Did not receive the expected number of bytes from PRNG: 0\n[    0.000000] percpu: Embedded 21 pages/cpu s46616 r8192 d31208 u86016\n[    0.000000] pcpu-alloc: s46616 r8192 d31208 u86016 alloc=21*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: enabling workaround for ARM erratum 845719\n[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 516096\n[    0.000000] Kernel command line: sched_enable_hmp=1 kpti=0 console=ttyMSM0,115200,n8 androidboot.console=ttyMSM0 androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 androidboot.bootdevice=7824900.sdhci earlycon=msm_serial_dm,0x78B0000 androidboot.usbconfigfs=true loop.max_part=7 buildvariant=user rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.emmc=true androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=6986ee02-0ef3-b011-a7ed-ef243e883077 androidboot.serialno=REDACTED androidboot.secureboot=1 androidboot.dp=0x0 androidboot.efuse=1 androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_nvt36525b_hdplus_video_c3i:bklic=24:wpoint=305317:tplock=47353201<3493200:1:none:cfg:single_dsi skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=17 androidboot.dtb_idx=0\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)\n[    0.000000] Memory: 1660824K/2097152K available (15868K kernel code, 2316K rwdata, 5412K rodata, 4096K init, 3982K bss, 252008K reserved, 184320K cma-reserved)\n[    0.000000] Virtual kernel memory layout:\n[    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n[    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)\n[    0.000000]       .text : 0x        (ptrval) - 0x        (ptrval)   ( 15872 KB)\n[    0.000000]     .rodata : 0x        (ptrval) - 0x        (ptrval)   (  6144 KB)\n[    0.000000]       .init : 0x        (ptrval) - 0x        (ptrval)   (  4096 KB)\n[    0.000000]       .data : 0x        (ptrval) - 0x        (ptrval)   (  2317 KB)\n[    0.000000]        .bss : 0x        (ptrval) - 0x        (ptrval)   (  3983 KB)\n[    0.000000]     fixed   : 0xffffffbefe7fb000 - 0xffffffbefec00000   (  4116 KB)\n[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)\n[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)\n[    0.000000]               0xffffffbf31000000 - 0xffffffbf33000000   (    32 MB actual)\n[    0.000000]     memory  : 0xffffffcc40000000 - 0xffffffccc0000000   (  2048 MB)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] NR_IRQS:64 nr_irqs:64 0\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from all CPUs\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arm_arch_timer: Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000005] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000014] clocksource: Switched to clocksource arch_sys_counter\n[    0.001263] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001274] pid_max: default: 32768 minimum: 301\n[    0.001335] Security Framework initialized\n[    0.001341] SELinux:  Initializing.\n[    0.001389] SELinux:  Starting in permissive mode\n[    0.001423] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.001429] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.002403] /cpus/cpu@100: Missing clock-frequency property\n[    0.002410] /cpus/cpu@101: Missing clock-frequency property\n[    0.002417] /cpus/cpu@102: Missing clock-frequency property\n[    0.002425] /cpus/cpu@103: Missing clock-frequency property\n[    0.002433] /cpus/cpu@0: Missing clock-frequency property\n[    0.002443] /cpus/cpu@1: Missing clock-frequency property\n[    0.002452] /cpus/cpu@2: Missing clock-frequency property\n[    0.002462] /cpus/cpu@3: Missing clock-frequency property\n[    0.002551] sched-energy: Sched-energy-costs installed from DT\n[    0.011897] ASID allocator initialised with 32768 entries\n[    0.019620] cpu_clock_a53_init_little: A53 Power clocks configured\n[    0.020348] MSM Memory Dump base table set up\n[    0.020361] MSM Memory Dump apps data table set up\n[    0.020506] EFI services will not be available.\n[    0.030930] CPU1: Booted secondary processor [410fd034]\n[    0.039046] CPU2: Booted secondary processor [410fd034]\n[    0.047144] CPU3: Booted secondary processor [410fd034]\n[    0.055389] CPU4: Booted secondary processor [410fd034]\n[    0.063835] CPU5: Booted secondary processor [410fd034]\n[    0.072190] CPU6: Booted secondary processor [410fd034]\n[    0.080555] CPU7: Booted secondary processor [410fd034]\n[    0.080937] Brought up 8 CPUs\n[    0.080942] SMP: Total of 8 processors activated.\n[    0.080948] CPU features: detected feature: 32-bit EL0 Support\n[    0.080953] CPU features: kernel page table isolation forced OFF by command line option\n[    0.080961] CPU: All CPU(s) started at EL1\n[    0.081037] alternatives: patching kernel code\n[    0.145251] DMI not present or invalid.\n[    0.145416] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.145429] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.152965] ramoops: msm_register_ramoops_device\n[    0.153073] pinctrl core: initialized pinctrl subsystem\n[    0.153926] NET: Registered protocol family 16\n[    0.155845] schedtune: init normalization constants...\n[    0.155853] schedtune: CLUSTER[0]        min_pwr:     1 max_pwr:   120\n[    0.155858] schedtune: CPU[0]            min_pwr:    40 max_pwr:   470\n[    0.155862] schedtune: SYSTEM            min_pwr:    41 max_pwr:   590\n[    0.155866] schedtune: using normalization constants mul: 3716046386 sh1: 1 sh2: 9\n[    0.155870] schedtune: configured to support 5 boost groups\n[    0.156064] ramoops: The memory size and the record/console size must be non-zero\n[    0.156077] ramoops: probe of ramoops.0 failed with error -22\n[    0.157684] cpuidle: using governor menu\n[    0.157712] cpuidle: using governor qcom\n[    0.162275] vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.162281] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.163193] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.163423] msm_smem_init: unable to create logging context\n[    0.163448] msm_smd_init: unable to create SMD logging context\n[    0.163451] msm_smd_init: unable to create SMSM logging context\n[    0.166217] Failed to create IPC log0\n[    0.166219] Failed to create IPC log1\n[    0.166221] Failed to create IPC log2\n[    0.166223] Failed to create IPC log3\n[    0.166225] Failed to create IPC log4\n[    0.166619] pstore: using zlib compression\n[    0.166643] console [pstore-1] enabled\n[    0.166729] pstore: Registered ramoops as persistent store backend\n[    0.166734] ramoops: attached 0x400000@0xb0000000, ecc: 0/0\n[    0.167070] msm8937-pinctrl 1000000.pinctrl: invalid resource\n[    0.177372] unable to find DT imem DLOAD mode node\n[    0.178548] unable to find DT imem EDLOAD mode node\n[    0.181018] sps:sps is ready.\n[    0.183079] cpu-clock-8939 b011050.qcom,cpu-clock-8939: No PVS version available. Defaulting to 0!\n[    0.183086] cpu-clock-8939 b011050.qcom,cpu-clock-8939: Speed bin: 4 PVS Version: 0\n[    0.186249] smd_channel_probe_now: allocation table not initialized\n[    0.187930] smd_channel_probe_now: allocation table not initialized\n[    0.188402] smd_channel_probe_now: allocation table not initialized\n[    0.189219] msm_rpm_glink_dt_parse: qcom,rpm-glink compatible not matches\n[    0.189684] pm8953_s1: Bringing 1uV into 16-16uV\n[    0.190282] pm8953_s2_level: Bringing 1uV into 16-16uV\n[    0.190629] pm8953_s2_floor_level: Bringing 1uV into 16-16uV\n[    0.191202] pm8953_s2_level_ao: Bringing 1uV into 16-16uV\n[    0.200504] pm8953_l19: Bringing 1224000uV into 1350000-1350000uV\n[    0.202377] pm8953_s7_level_ao: Bringing 1uV into 16-16uV\n[    0.204655] msm_watchdog b017000.qcom,wdt: wdog absent resource not present\n[    0.205821] msm_watchdog b017000.qcom,wdt: MSM Watchdog Initialized\n[    0.206181] spmi spmi-0: PMIC arbiter version v2 (0x20010000)\n[    0.209537] pm8953_s5_avs_limit: Bringing 0uV into 490000-490000uV\n[    0.209752] spm_regulator_probe: name=pm8953_s5, range=LV, voltage=735000 uV, mode=AUTO, step rate=2400 uV/us\n[    0.213641] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.216099] platform soc:qcom,adsprpc-mem: assigned reserved memory node adsp_region@0\n[    0.217733] platform 4080000.qcom,mss: assigned reserved memory node modem_region@0\n[    0.217928] platform c200000.qcom,lpass: assigned reserved memory node adsp_fw_region@0\n[    0.218113] platform a21b000.qcom,pronto: assigned reserved memory node wcnss_fw_region@0\n[    0.218246] platform 1de0000.qcom,venus: assigned reserved memory node venus_region@0\n[    0.219229] cpr_regulator_probe: apc_corner: mem_acc intialization error rc=-517\n[    0.234200] msm-sn-fuse a4128.snfuse: SN interface initialized\n[    0.234210] msm-sn-fuse a4128.snfuse: CFI interface initialized\n[    0.234241] platform soc:qcom,kgsl-hyp: assigned reserved memory node gpu_region@0\n[    0.255640] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.255650] mdss_pll_probe:  mdss_dsi_nvt36525b_hdplus_video_c3i:bklic=24:wpoint=305317:tplock=47353201<3493200:1:none:cfg:single_dsi skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=17 androidboot.dtb_idx=0 res=160\n[    0.255654] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.255674] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.255686] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.255733] mdss_pll_util_resource_init+0x2c/0xa8->msm_mdss_config_vreg: gdsc get failed. rc=-517\n[    0.255736] mdss_pll_util_resource_init: Vreg config failed rc=-517\n[    0.255740] mdss_pll_probe: Pll ndx=0 resource init failed rc=-517\n[    0.255797] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.255805] mdss_pll_probe:  mdss_dsi_nvt36525b_hdplus_video_c3i:bklic=24:wpoint=305317:tplock=47353201<3493200:1:none:cfg:single_dsi skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=17 androidboot.dtb_idx=0 res=160\n[    0.255808] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.255824] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.255834] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.255863] mdss_pll_util_resource_init+0x2c/0xa8->msm_mdss_config_vreg: gdsc get failed. rc=-517\n[    0.255866] mdss_pll_util_resource_init: Vreg config failed rc=-517\n[    0.255869] mdss_pll_probe: Pll ndx=1 resource init failed rc=-517\n[    0.258338] KPI: Bootloader start count = 23367\n[    0.258342] KPI: Bootloader end count = 151320\n[    0.258345] KPI: Bootloader display count = 41085\n[    0.258348] KPI: Bootloader load kernel count = 6997\n[    0.258351] KPI: Kernel MPM timestamp = 166707\n[    0.258354] KPI: Kernel MPM Clock frequency = 32768\n[    0.258370] socinfo_print: v0.10, id=353, ver=1.0, raw_id=191, raw_ver=0, hw_plat=11, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=2, pmic_model=65558, pmic_die_revision=65536 foundry_id=1 serial_number=3468759203\n[    0.259692] arm-smmu 1c40000.arm,smmu-kgsl: Couldn't get clock: gpu_ahb_clk\n[    0.260145] arm-smmu 1e00000.qcom,iommu: Couldn't get clock: iface_clk\n[    0.262336] pcba config =111.\n[    0.262597] SCSI subsystem initialized\n[    0.262782] usbcore: registered new interface driver usbfs\n[    0.262826] usbcore: registered new interface driver hub\n[    0.262863] usbcore: registered new device driver usb\n[    0.263486] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pm8953@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'warm' boot\n[    0.263505] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pm8953@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from KPDPWR_N (Long Power Key hold)\n[    0.263737] input: qpnp_pon as /devices/virtual/input/input0\n[    0.264591] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pmi632@2:qcom,power-on@800: No PON config. specified\n[    0.264637] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pmi632@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (secondary PMIC) and 'warm' boot\n[    0.264662] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pmi632@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from GP2 (Keypad_Reset2)\n[    0.265099] i2c-msm-v2 78b6000.i2c: probing driver i2c-msm-v2\n[    0.265156] i2c-msm-v2 78b6000.i2c: error on clk_get(core_clk):-517\n[    0.265165] i2c-msm-v2 78b6000.i2c: error probe() failed with err:-517\n[    0.265299] i2c-msm-v2 7af5000.i2c: probing driver i2c-msm-v2\n[    0.265332] i2c-msm-v2 7af5000.i2c: error on clk_get(core_clk):-517\n[    0.265339] i2c-msm-v2 7af5000.i2c: error probe() failed with err:-517\n[    0.265589] media: Linux media interface: v0.10\n[    0.265620] Linux video capture interface: v2.00\n[    0.266017] BATTERY: batterydata_init: Battery-data device created!\n[    0.275555] EDAC MC: Ver: 3.0.0\n[    0.277597] dmi: Firmware registration failed.\n[    0.278467] platform soc:qcom,ion:qcom,ion-heap@8: assigned reserved memory node secure_region@0\n[    0.278606] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@0\n[    0.278749] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.278971] ION heap system created\n[    0.279140] ION heap mm created at 0x00000000f8c00000 with size 7000000\n[    0.279151] ION heap qsecom created at 0x00000000f7c00000 with size 1000000\n[    0.279161] ION heap qsecom_ta created at 0x00000000f6c00000 with size 1000000\n[    0.280654] PMIC@SID0: PM8953 v1.0 options: 2, 2, 0, 0\n[    0.280754] PMIC@SID2: PMI632 v2.0 options: 0, 0, 0, 0\n[    0.284099] SDAM base=0xb600 size=128 registered successfully\n[    0.284294] Advanced Linux Sound Architecture Driver Initialized.\n[    0.284772] Bluetooth: Core ver 2.22\n[    0.284797] NET: Registered protocol family 31\n[    0.284800] Bluetooth: HCI device and connection manager initialized\n[    0.284808] Bluetooth: HCI socket layer initialized\n[    0.284815] Bluetooth: L2CAP socket layer initialized\n[    0.286258] NetLabel: Initializing\n[    0.286262] NetLabel:  domain hash size = 128\n[    0.286264] NetLabel:  protocols = UNLABELED CIPSOv4\n[    0.286311] NetLabel:  unlabeled traffic allowed by default\n[    0.287084] gfx3d_clk_src: set OPP pair(19200000 Hz: 128 uV) on 1c00000.qcom,kgsl-3d0\n[    0.287364] gfx3d_clk_src: set OPP pair(200000000 Hz: 128 uV) on 1c00000.qcom,kgsl-3d0\n[    0.288094] gfx3d_clk_src: set OPP pair(650000000 Hz: 384 uV) on 1c00000.qcom,kgsl-3d0\n[    0.301291] qcom,gcc-spm-8952 b111200.qcom,spm: Registered GCC SPM clocks\n[    0.301311] qcom,gcc-8952 1800000.qcom,gcc: Registered GCC clocks\n[    0.301371] cpu-clock-8939 b011050.qcom,cpu-clock-8939: No PVS version available. Defaulting to 0!\n[    0.301377] cpu-clock-8939 b011050.qcom,cpu-clock-8939: Speed bin: 4 PVS Version: 0\n[    0.301740] lcdb_ldo: Bringing 5500000uV into 6000000-6000000uV\n[    0.302117] lcdb_ncp: Bringing 5500000uV into 6000000-6000000uV\n[    0.302709] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=6000mV ncp_voltage=6000mV bst_voltage=6150mV\n[    0.302870] cpr_efuse_init: apc_corner: efuse_addr = 0x00000000000a4000 (len=0x1000)\n[    0.302898] cpr_read_fuse_revision: apc_corner: fuse revision = 1\n[    0.302907] cpr_parse_speed_bin_fuse: apc_corner: [row: 37]: 0xaff06871cec110a3, speed_bits = 4\n[    0.302976] cpr_pvs_init: apc_corner: pvs voltage: [750000 785000 910000] uV\n[    0.302982] cpr_pvs_init: apc_corner: ceiling voltage: [810000 845000 980000] uV\n[    0.302987] cpr_pvs_init: apc_corner: floor voltage: [700000 700000 790000] uV\n[    0.303091] cpr_init_cpr_parameters: apc_corner: up threshold = 2, down threshold = 4\n[    0.303109] cpr_init_cpr_parameters: apc_corner: CPR is enabled by default.\n[    0.303130] cpr_init_cpr_efuse: apc_corner: [row:67] = 0x5b4aea130584fde0\n[    0.303145] cpr_init_cpr_efuse: apc_corner: Corner[1]: ro_sel = 5, target quot = 698\n[    0.303151] cpr_init_cpr_efuse: apc_corner: Corner[2]: ro_sel = 5, target quot = 773\n[    0.303157] cpr_init_cpr_efuse: apc_corner: Corner[3]: ro_sel = 5, target quot = 1015\n[    0.303179] cpr_adjust_target_quots: apc_corner: Corner[1]: adjusted target quot = 624\n[    0.303189] cpr_adjust_target_quots: apc_corner: Corner[3]: adjusted target quot = 985\n[    0.303253] cpr_get_corner_quot_adjustment: apc_corner: fuse corner 2 quotient adjustment scaling factor: 0.776\n[    0.303258] cpr_get_corner_quot_adjustment: apc_corner: fuse corner 3 quotient adjustment scaling factor: 0.408\n[    0.303279] cpr_virtual_corner_quot_adjust: apc_corner: corner=3 adjusted quotient=838\n[    0.303295] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[1] = 624\n[    0.303299] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[2] = 773\n[    0.303303] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[3] = 838\n[    0.303306] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[4] = 899\n[    0.303310] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[5] = 962\n[    0.303314] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[6] = 985\n[    0.303353] cpr_fill_override_voltage: apc_corner: ceiling override voltage: [810000 845000 885000 980000 980000 980000] uV\n[    0.303778] cpr_init_floor_to_ceiling_range: apc_corner: Final floor override voltages: [700000 735000 790000 795000 835000 845000] uV\n[    0.303809] cpr_config: apc_corner: Timer count: 0x17700 (for 5000 us)\n[    0.303998] apc_corner: Bringing 0uV into 1-1uV\n[    0.307101] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.307111] mdss_pll_probe:  mdss_dsi_nvt36525b_hdplus_video_c3i:bklic=24:wpoint=305317:tplock=47353201<3493200:1:none:cfg:single_dsi skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=17 androidboot.dtb_idx=0 res=160\n[    0.307115] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.307135] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.307146] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.307734] dsi_pll_clock_register_12nm: Registered DSI PLL ndx=0 clocks successfully\n[    0.307828] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.307835] mdss_pll_probe:  mdss_dsi_nvt36525b_hdplus_video_c3i:bklic=24:wpoint=305317:tplock=47353201<3493200:1:none:cfg:single_dsi skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=17 androidboot.dtb_idx=0 res=160\n[    0.307839] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.307858] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.307868] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.309257] dsi_pll_clock_register_12nm: Registered DSI PLL ndx=1 clocks successfully\n[    0.309750] arm-smmu 1c40000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.309759] arm-smmu 1c40000.arm,smmu-kgsl: \tstream matching with 4 register groups, mask 0x7fff\n[    0.311190] arm-smmu 1e00000.qcom,iommu: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.311199] arm-smmu 1e00000.qcom,iommu: \tstream matching with 123 register groups, mask 0x7fff\n[    0.311298] arm-smmu 1e00000.qcom,iommu: found 32 context interrupt(s) but have 30 context banks. assuming 30 context interrupts.\n[    0.311891] iommu: Adding device soc:qcom,msm-audio-ion to group 0\n[    0.312094] i2c-msm-v2 78b6000.i2c: probing driver i2c-msm-v2\n[    0.312146] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.312154] i2c-msm-v2 78b6000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.312379] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.312812] i2c-msm-v2 7af5000.i2c: probing driver i2c-msm-v2\n[    0.312852] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.312859] i2c-msm-v2 7af5000.i2c: msm_bus_scale_register_client(mstr-id:84):0 (not a problem)\n[    0.313065] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.313512] cpu-clock-8939 b011050.qcom,cpu-clock-8939: No PVS version available. Defaulting to 0!\n[    0.313519] cpu-clock-8939 b011050.qcom,cpu-clock-8939: Speed bin: 4 PVS Version: 0\n[    0.317157] populate_opp_table: clock-cpu-8939: OPP tables populated (cpu 7 and 3)\n[    0.317163] print_opp_table: clock_cpu: a53_c0: OPP voltage for 768000000: 750000\n[    0.317167] print_opp_table: clock_cpu: a53_c0: OPP voltage for 1459200000: 900000\n[    0.317171] print_opp_table: clock_cpu: a53_c1: OPP voltage for 960000000: 750000\n[    0.317175] print_opp_table: clock_cpu: a53_c1: OPP voltage for 2016000000: 910000\n[    0.317258] sched-energy energy-costs: cpu=0 eff=1126 [freq=800000 cap=407 power_d0=137] -> [freq=2016000 cap=1024 power_d0=470]\n[    0.317262] CPU0: update cpu_capacity 1024\n[    0.317273] sched-energy energy-costs: cpu=1 eff=1126 [freq=800000 cap=407 power_d0=137] -> [freq=2016000 cap=1024 power_d0=470]\n[    0.317276] CPU1: update cpu_capacity 1024\n[    0.317286] sched-energy energy-costs: cpu=2 eff=1126 [freq=800000 cap=407 power_d0=137] -> [freq=2016000 cap=1024 power_d0=470]\n[    0.317289] CPU2: update cpu_capacity 1024\n[    0.317298] sched-energy energy-costs: cpu=3 eff=1126 [freq=800000 cap=407 power_d0=137] -> [freq=2016000 cap=1024 power_d0=470]\n[    0.317301] CPU3: update cpu_capacity 1024\n[    0.317311] sched-energy energy-costs: cpu=4 eff=1024 [freq=768000 cap=356 power_d0=43] -> [freq=1459200 cap=675 power_d0=120]\n[    0.317314] CPU4: update cpu_capacity 675\n[    0.317324] sched-energy energy-costs: cpu=5 eff=1024 [freq=768000 cap=356 power_d0=43] -> [freq=1459200 cap=675 power_d0=120]\n[    0.317327] CPU5: update cpu_capacity 675\n[    0.317337] sched-energy energy-costs: cpu=6 eff=1024 [freq=768000 cap=356 power_d0=43] -> [freq=1459200 cap=675 power_d0=120]\n[    0.317340] CPU6: update cpu_capacity 675\n[    0.317350] sched-energy energy-costs: cpu=7 eff=1024 [freq=768000 cap=356 power_d0=43] -> [freq=1459200 cap=675 power_d0=120]\n[    0.317353] CPU7: update cpu_capacity 675\n[    0.317604] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.319881] cpufreq: driver msm up and running\n[    0.320353] clocksource: Switched to clocksource arch_sys_counter\n[    0.320409] VFS: Disk quotas dquot_6.6.0\n[    0.320440] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.320485] msm_bus_fabric_init_driver\n[    0.324492] msm_bus_device 580000.ad-hoc-bus: Bus scaling driver probe successful\n[    0.325461] NET: Registered protocol family 2\n[    0.325770] TCP established hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.325834] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)\n[    0.326006] TCP: Hash tables configured (established 16384 bind 16384)\n[    0.326041] UDP hash table entries: 1024 (order: 3, 32768 bytes)\n[    0.326065] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)\n[    0.326161] NET: Registered protocol family 1\n[    0.326685] gcc-mdss-8952 soc:qcom,gcc-mdss@1800000: Registered GCC MDSS clocks.\n[    0.327194] Trying to unpack rootfs image as initramfs...\n[    0.520582] Freeing initrd memory: 7492K\n[    0.521272] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.523774] audit: initializing netlink subsys (disabled)\n[    0.523810] audit: type=2000 audit(0.519:1): initialized\n[    0.523957] Initialise system trusted keyrings\n[    0.525117] workingset: timestamp_bits=61 max_order=19 bucket_order=0\n[    0.527816] exFAT: file-system version 5.8-2\n[    0.527884] Registering sdcardfs 0.1\n[    0.527996] ntfs: driver 2.1.32 [Flags: R/W].\n[    0.528077] fuse init (API version 7.26)\n[    0.528407] SELinux:  Registering netfilter hooks\n[    0.528581] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    0.528583] pfk_f2fs [pfk_f2fs_init]: PFK F2FS inited successfully\n[    0.528586] pfk [pfk_init]: Driver initialized successfully\n[    0.531125] Key type asymmetric registered\n[    0.531127] Asymmetric key parser 'x509' registered\n[    0.531136] io scheduler noop registered\n[    0.531213] io scheduler cfq registered (default)\n[    0.537326] [ktd]probe start!\n\n[    0.537329] [ktd]hwen --<-2>\n\n[    0.537331] [ktd]pwmmode --<0>\n\n[    0.537332] [ktd]using_lsb --<1>\n\n[    0.537334] [ktd]pwm-frequency --<100>\n\n[    0.537336] [ktd]full-scale led current --<152 mA>\n\n[    0.537337] [ktd]ramp on time --<0 ms>\n\n[    0.537338] [ktd]ramp off time --<0 ms>\n\n[    0.537340] [ktd]pwm trnasition dimming  --<0 ms>\n\n[    0.537341] [ktd]i2c transition dimming --<0 ms>\n\n[    0.537343] [ktd]bl-channel --<2>\n\n[    0.537345] [ktd]ovp-level --<32> --temp <32>\n\n[    0.537346] [ktd]switching frequency --<1000>\n\n[    0.537348] [ktd]inductor current limit --<2600>\n\n[    0.537350] invalid flash-time value!\n[    0.537351] [ktd]linear_ramp --<1>\n\n[    0.537353] [ktd]linear_backlight --<1>\n\n[    0.537354] invalid flash current value!\n[    0.537550] [ktd]Device ID is --<0x03>\n\n[    0.538489] [ktd]register pwm<0x06> current value is --<1b>\n\n[    0.538845] [ktd]rampon time is 0\n\n[    0.539201] [ktd]rampoff time is 0\n\n[    0.540602] [ktd]read control register -before--<0x6e> -after--<0x6e>\n\n[    0.541579] [ktd]Successfully added driver ktd,ktd3137\n\n[    0.541655] msm_mdss_get_res_byname: 'vbif_nrt_phys' resource not found\n[    0.541664] mdss_mdp_probe+0x224/0x6c4->msm_mdss_ioremap_byname: 'vbif_nrt_phys' msm_mdss_get_res_byname failed\n[    0.541811] mdss_mdp_irq_clk_register: unable to get clk: lut_clk\n[    0.541819] mdss_mdp_irq_clk_register: unable to get clk: mnoc_clk\n[    0.542112] No change in context(0==0), skip\n[    0.542530] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:0 num:0 rect:0 ndx:0x1 prio:0\n[    0.542542] mdss_mdp_pipe_addr_setup: type:1 ftchid:-1 xinid:1 num:3 rect:0 ndx:0x8 prio:1\n[    0.542544] mdss_mdp_pipe_addr_setup: type:1 ftchid:-1 xinid:5 num:4 rect:0 ndx:0x10 prio:2\n[    0.542553] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:2 num:6 rect:0 ndx:0x40 prio:3\n[    0.542562] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:7 num:10 rect:0 ndx:0x400 prio:0\n[    0.542568] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-pipe-sw-reset-off : u32 array read\n[    0.542631] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-ib-factor-overlap : u32 array read\n[    0.542636] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-bus-througput-factor : u32 array read\n[    0.542814] xlog_status: enable:0, panic:1, dump:2\n[    0.543023] iommu: Adding device 1a00000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb to group 1\n[    0.543183] iommu: Adding device 1a00000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb to group 2\n[    0.543325] mdss_mdp_probe: mdss version = 0x100e0000, bootloader display is on, num 1, intf_sel=0x00000100\n[    0.545363] mdss_smmu_util_parse_dt_clock: clocks are not defined\n[    0.545369] mdss_smmu_probe: iommu v2 domain[0] mapping and clk register successful!\n[    0.545381] mdss_smmu_util_parse_dt_clock: clocks are not defined\n[    0.545385] mdss_smmu_probe: iommu v2 domain[2] mapping and clk register successful!\n[    0.545459] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.545466] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.545472] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.546109] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->0\n[    0.546246] [white point calibration] white_point_num_x = 305,white_point_num_y = 317\n[    0.546251] [tp lockdown info] tp_lockdown_info = 47353201c3493200\n[    0.546255] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_nvt36525b_hdplus_video_c3i:bklic=24:wpoint=305317:tplock=47353201<3493200:1:none:cfg:single_dsi panel_name:qcom,mdss_dsi_nvt36525b_hdplus_video_c3i\n[    0.546271] mdss_dsi_panel_init: Panel Name = nvt36525b hdplus c3i video mode dsi panel\n[    0.546373] mdss_dsi_panel_timing_from_dt: found new timing \"qcom,mdss_dsi_nvt36525b_hdplus_video_c3i\" (ffffffcc46767388)\n[    0.546388] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-post-panel-on-command\n[    0.546392] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-timing-switch-command\n[    0.546393] mdss_dsi_panel_get_dsc_cfg_np: cannot find dsc config node:\n[    0.546461] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-idle-on-command\n[    0.546465] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-idle-off-command\n[    0.546499] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-cold_gamma-command\n[    0.546502] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-warm_gamma-command\n[    0.546506] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-default_gamma-command\n[    0.546509] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-PM1-command\n[    0.546513] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-PM2-command\n[    0.546517] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-PM3-command\n[    0.546520] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-PM4-command\n[    0.546524] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-PM5-command\n[    0.546528] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-PM6-command\n[    0.546531] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-PM7-command\n[    0.546535] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-PM8-command\n[    0.546551] mdss_dsi_parse_panel_features: ulps feature disabled\n[    0.546555] mdss_dsi_parse_panel_features: ulps during suspend feature disabled\n[    0.546559] mdss_dsi_parse_dms_config: dynamic switch feature enabled: 0\n[    0.546598] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-on\n[    0.546601] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-off\n[    0.546632] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.546636] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.546641] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.546646] mdss_dsi_get_dt_vreg_data: error reading ulp load. rc=-22\n[    0.546754] mdss_dsi_parse_ctrl_params:4199, Unable to read Phy Strength ctrl settings\n[    0.546756] mdss_dsi_parse_ctrl_params:4213, Unable to read Phy regulator settings\n[    0.546759] mdss_dsi_parse_ctrl_params:4233, Unable to read Phy lane configure settings\n[    0.546766] mdss_dsi_parse_ctrl_params:4265 Unable to read qcom,display-id, data=0000000000000000,len=-52\n[    0.546773] mdss_dsi_parse_gpio_params: bklt_en gpio not specified\n[    0.546775] mdss_dsi_parse_gpio_params: ext vdd gpio not specified\n[    0.546800] msm_mdss_get_res_byname: 'dsi_phy_regulator' resource not found\n[    0.546809] mdss_dsi_retrieve_ctrl_resources+0x198/0x1fc->msm_mdss_ioremap_byname: 'dsi_phy_regulator' msm_mdss_get_res_byname failed\n[    0.546811] mdss_dsi_retrieve_ctrl_resources: ctrl_base=ffffff8008745000 ctrl_size=300 phy_base=ffffff8008747400 phy_size=400\n[    0.546883] dsi_panel_device_register: Continuous splash enabled\n[    0.546931] mdss_register_panel: adding framebuffer device 1a94000.qcom,mdss_dsi_ctrl0\n[    0.568592] mdss_dsi_ctrl_probe: Dsi Ctrl->0 initialized, DSI rev:0x10040002, PHY rev:0x3\n[    0.568611] mdss_dsi_status_init: DSI status check interval:5000\n[    0.568756] mdss_register_panel: adding framebuffer device soc:qcom,mdss_wb_panel\n[    0.569193] mdss_fb_probe: fb0: split_mode:0 left:0 right:0\n[    0.569519] mdss_fb_register: FrameBuffer[0] 720x1520 registered successfully!\n[    0.569697] mdss_fb_probe: fb1: split_mode:0 left:0 right:0\n[    0.569756] mdss_fb_register: FrameBuffer[1] 640x640 registered successfully!\n[    0.569810] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    0.569882] qcom-sps-dma 7884000.qcom,sps-dma: dma_async_device_register: device has no channels!\n[    0.569910] qcom-sps-dma 7ac4000.qcom,sps-dma: dma_async_device_register: device has no channels!\n[    0.570049] msm_smp2p_init: unable to create log context\n[    0.570702] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    0.570715] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    0.570770] qmi_log_init: Unable to create QMI IPC logging for Req/Resp\n[    0.570772] logging for Indications: Unable to create QMI IPC qmi_log_init\n[    0.572214] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.572216] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    0.572219] memshare: hyp_assign_phys failed size=2097152 err=-5\n[    0.572241] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.572289] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.574267] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.574269] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    0.574271] memshare: hyp_assign_phys failed size=5242880 err=-5\n[    0.574276] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.575588] minidump-id not found for adsp\n[    0.575678] minidump-id not found for wcnss\n[    0.575829] minidump-id not found for venus\n[    0.575839] subsys-pil-tz 1de0000.qcom,venus: for venus segments only will be dumped.\n[    0.576130] minidump-id not found for a506_zap\n[    0.576137] subsys-pil-tz soc:qcom,kgsl-hyp: for a506_zap segments only will be dumped.\n[    0.576963] minidump-id not found for modem\n[    0.577189] msm-dcc b3000.dcc: DCC XPU is not specified\n[    0.577743] wcnss: Unable to create log context\n[    0.578128] wcnss: wcnss_wlan probed in built-in mode\n[    0.578724] msm_serial_hs module loaded\n[    0.578726] smd_tty_log_init: Unable to create IPC log\n[    0.580216] random: fast init done\n[    0.580280] random: crng init done\n[    0.583766] diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    0.583768] diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    0.647262] diag: In __diag_glink_init, unable to register for glink channel DIAG_CTRL\n[    0.648364] diag: In __diag_glink_init, unable to register for glink channel DIAG_DATA\n[    0.649433] diag: In __diag_glink_init, unable to register for glink channel DIAG_CMD\n[    0.650500] diag: In __diag_glink_init, unable to register for glink channel DIAG_DCI_DATA\n[    0.651567] diag: In __diag_glink_init, unable to register for glink channel DIAG_DCI_CMD\n[    0.654683] No device tree entries found\n[    0.659506] iommu: Adding device 1c40000.qcom,kgsl-iommu:gfx3d_user to group 3\n[    0.659707] platform 1c40000.qcom,kgsl-iommu:gfx3d_secure: assigned reserved memory node secure_region@0\n[    0.659910] iommu: Adding device 1c40000.qcom,kgsl-iommu:gfx3d_secure to group 4\n[    0.684921] brd: module loaded\n[    0.705793] loop: module loaded\n[    0.707023] zram: Added device: zram0\n[    0.707825] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1001000\n[    0.707844] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.707849] QSEECOM: qseecom_probe: qseecom clocks handled by other subsystem\n[    0.707851] QSEECOM: qseecom_probe: qsee reentrancy support phase is not defined, setting to default 0\n[    0.708024] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    0.708418] msm8937-pinctrl 1000000.pinctrl: function 'fpc_reset_gpio_low' not supported\n[    0.708420] msm8937-pinctrl 1000000.pinctrl: invalid function fpc_reset_gpio_low in map table\n[    0.708442] msm8937-pinctrl 1000000.pinctrl: function 'fpc_reset_gpio_high' not supported\n[    0.708445] msm8937-pinctrl 1000000.pinctrl: invalid function fpc_reset_gpio_high in map table\n[    0.708483] fpc1020 soc:fpc1020: fpc1020_probe: ok\n[    0.708501] fpc1020_init OK\n[    0.708502] zhong-in gf_init\n[    0.708761] msm8937-pinctrl 1000000.pinctrl: function 'fpc_reset_gpio_low' not supported\n[    0.708763] msm8937-pinctrl 1000000.pinctrl: invalid function fpc_reset_gpio_low in map table\n[    0.708774] msm8937-pinctrl 1000000.pinctrl: function 'fpc_reset_gpio_high' not supported\n[    0.708776] msm8937-pinctrl 1000000.pinctrl: invalid function fpc_reset_gpio_high in map table\n[    0.708795] gf_spi: zhong probe\n[    0.708906] input: uinput-goodix as /devices/virtual/input/input1\n[    0.708912] gf_spi: version V1.2.11\n[    0.708913] gf probe success\n[    0.708947] zhong-out status = 0x0\n[    0.709066] enter lan_enable_probe \n[    0.709112]  enter lan_enable_probe, ok \n[    0.709171] simtray_probe enter\n[    0.709433] i2c-msm-v2 78b6000.i2c: msm_bus_scale_register_client(mstr-id:86):0xb (ok)\n[    0.709896] i2c-msm-v2 78b6000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:5 tx:2) mode:FIFO slv_addr:0x8 MSTR_STS:0x0d1300c8 OPER:0x00000010\n[    0.709968] i2c-msm-v2 78b6000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:5 tx:2) mode:FIFO slv_addr:0x8 MSTR_STS:0x011363c8 OPER:0x00000010\n[    0.710080] i2c-msm-v2 78b6000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:5 tx:2) mode:FIFO slv_addr:0x8 MSTR_STS:0x0d1300c8 OPER:0x00000010\n[    0.710146] i2c-msm-v2 78b6000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:5 tx:2) mode:FIFO slv_addr:0x8 MSTR_STS:0x011363c8 OPER:0x00000010\n[    0.710157] I2C PMIC: i2c_pmic_read: i2c_pmic_read failed for 3 retries, rc = -107\n[    0.710158] I2C PMIC: i2c_pmic_determine_initial_status: Couldn't read irq data rc=-107\n[    0.710160] I2C PMIC: i2c_pmic_probe: Couldn't determine initial status rc=-107\n[    0.710212] i2c_pmic: probe of 2-0008 failed with error -107\n[    0.710565] i2c-msm-v2 78b6000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:5 tx:2) mode:FIFO slv_addr:0xc MSTR_STS:0x011363c8 OPER:0x00000010\n[    0.710631] i2c-msm-v2 78b6000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:5 tx:2) mode:FIFO slv_addr:0xc MSTR_STS:0x011363c8 OPER:0x00000010\n[    0.710697] i2c-msm-v2 78b6000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:5 tx:2) mode:FIFO slv_addr:0xc MSTR_STS:0x011363c8 OPER:0x00000010\n[    0.710762] i2c-msm-v2 78b6000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:5 tx:2) mode:FIFO slv_addr:0xc MSTR_STS:0x011363c8 OPER:0x00000010\n[    0.710772] I2C PMIC: i2c_pmic_read: i2c_pmic_read failed for 3 retries, rc = -107\n[    0.710773] I2C PMIC: i2c_pmic_determine_initial_status: Couldn't read irq data rc=-107\n[    0.710774] I2C PMIC: i2c_pmic_probe: Couldn't determine initial status rc=-107\n[    0.710800] i2c_pmic: probe of 2-000c failed with error -107\n[    0.712116] QCE50: __qce_get_device_tree_data: BAM Apps EE is not defined, setting to default 1\n[    0.712391] qce 720000.qcedev: QTI Crypto 5.3.3 device found @0x720000\n[    0.712396] qce 720000.qcedev: CE device = 0x0 IO base, CE = ffffff8008fa0000 Consumer (IN) PIPE 2,\n               Producer (OUT) PIPE 3 IO base BAM = 0000000000000000\n               BAM IRQ 129 Engines Availability = 0x2010853\n[    0.712407] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000000704000\n[    0.712410] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000000704000\n[    0.712411] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000000704000\n[    0.712413] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000000704000\n[    0.712415] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000000704000\n[    0.712417] sps:BAM 0x0000000000704000 is registered.\n[    0.712530] sps:BAM 0x0000000000704000 (va:0xffffff8009920000) enabled: ver:0x27, number of pipes:8\n[    0.712648] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000000704000 irq 129\n[    0.715841] QCE50: __qce_get_device_tree_data: BAM Apps EE is not defined, setting to default 1\n[    0.716114] qcrypto 720000.qcrypto: QTI Crypto 5.3.3 device found @0x720000\n[    0.716118] qcrypto 720000.qcrypto: CE device = 0x0 IO base, CE = ffffff8009960000 Consumer (IN) PIPE 4,\n               Producer (OUT) PIPE 5 IO base BAM = 0000000000000000\n               BAM IRQ 129 Engines Availability = 0x2010853\n[    0.716274] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000000704000 irq 129\n[    0.717120] qcrypto 720000.qcrypto: qcrypto-ecb-aes\n[    0.717213] qcrypto 720000.qcrypto: qcrypto-cbc-aes\n[    0.717275] qcrypto 720000.qcrypto: qcrypto-ctr-aes\n[    0.717338] qcrypto 720000.qcrypto: qcrypto-ecb-des\n[    0.717397] qcrypto 720000.qcrypto: qcrypto-cbc-des\n[    0.717457] qcrypto 720000.qcrypto: qcrypto-ecb-3des\n[    0.717517] qcrypto 720000.qcrypto: qcrypto-cbc-3des\n[    0.717578] qcrypto 720000.qcrypto: qcrypto-xts-aes\n[    0.717638] qcrypto 720000.qcrypto: qcrypto-sha1\n[    0.717698] qcrypto 720000.qcrypto: qcrypto-sha256\n[    0.717758] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    0.717818] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    0.717880] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    0.717940] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    0.718000] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    0.718063] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    0.718126] qcrypto 720000.qcrypto: qcrypto-hmac-sha1\n[    0.718188] qcrypto 720000.qcrypto: qcrypto-hmac-sha256\n[    0.718250] qcrypto 720000.qcrypto: qcrypto-aes-ccm\n[    0.718310] qcrypto 720000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    0.718660] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    0.718699] ICE IRQ = 123\n[    0.718907] SCSI Media Changer driver v0.25 \n[    0.719603] sps: BAM device 0x0000000007884000 is not registered yet.\n[    0.719607] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000007884000\n[    0.719610] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000007884000\n[    0.719612] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000007884000\n[    0.719614] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000007884000\n[    0.719616] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000007884000\n[    0.719617] sps:BAM 0x0000000007884000 is registered.\n[    0.719906] sps:BAM 0x0000000007884000 (va:0xffffff80099e0000) enabled: ver:0x19, number of pipes:12\n[    0.720741] sps: BAM device 0x0000000007ac4000 is not registered yet.\n[    0.720744] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000007ac4000\n[    0.720747] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000007ac4000\n[    0.720748] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000007ac4000\n[    0.720750] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000007ac4000\n[    0.720752] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000007ac4000\n[    0.720754] sps:BAM 0x0000000007ac4000 is registered.\n[    0.720972] sps:BAM 0x0000000007ac4000 (va:0xffffff8009aa0000) enabled: ver:0x19, number of pipes:12\n[    0.721795] libphy: Fixed MDIO Bus: probed\n[    0.721797] tun: Universal TUN/TAP device driver, 1.6\n[    0.721798] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    0.721832] PPP generic driver version 2.4.2\n[    0.721877] PPP BSD Compression module registered\n[    0.721879] PPP Deflate Compression module registered\n[    0.721893] PPP MPPE Compression module registered\n[    0.721896] NET: Registered protocol family 24\n[    0.721979] usbcore: registered new interface driver r8152\n[    0.721997] usbcore: registered new interface driver asix\n[    0.722035] usbcore: registered new interface driver ax88179_178a\n[    0.722052] usbcore: registered new interface driver cdc_ether\n[    0.722069] usbcore: registered new interface driver net1080\n[    0.722085] usbcore: registered new interface driver cdc_subset\n[    0.722101] usbcore: registered new interface driver zaurus\n[    0.722123] usbcore: registered new interface driver cdc_ncm\n[    0.722125] CHRDEV \"uio\" major number 233 goes below the dynamic allocation range\n[    0.723027] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.723030] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    0.723033] msm_sharedmem: setup_shared_ram_perms: hyp_assign_phys failed IPA=0x0160x00000000f6700000 size=1572864 err=-5\n[    0.723088] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.723467] msm_otg 78db000.usb: msm_otg probe\n[    0.724559] msm_otg 78db000.usb: OTG regs = ffffff8008b3a000\n[    0.725162] Attribute otg_status: write permission without 'store'\n[    0.725199] ------------[ cut here ]------------\n[    0.725208] WARNING: CPU: 0 PID: 1 at drivers/base/core.c:601 device_create_file+0x70/0x94\n[    0.725210] Modules linked in:\n[    0.725216] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.9.268-LOLZ-freqbench #1\n[    0.725218] Hardware name: Olive QRD (DT)\n[    0.725221] task: 00000000c93f213f task.stack: 00000000f7fa1694\n[    0.725223] PC is at device_create_file+0x70/0x94\n[    0.725225] LR is at device_create_file+0x70/0x94\n[    0.725227] pc : [<ffffff84e5461400>] lr : [<ffffff84e5461400>] pstate: 60400005\n[    0.725228] sp : ffffffcc46767af0\n[    0.725229] x29: ffffffcc46767af0 x28: ffffff84e4ec69d0 \n[    0.725232] x27: ffffffccb01f85b0 x26: ffffff84e6cb9280 \n[    0.725234] x25: ffffffccb01f8550 x24: ffffff84e6cb9000 \n[    0.725237] x23: ffffffccb01f02d0 x22: ffffffccb0050918 \n[    0.725239] x21: ffffffccb24f8c00 x20: ffffffccb24f8c10 \n[    0.725242] x19: ffffff84e68bc8a8 x18: 00000000ffff27dc \n[    0.725245] x17: 0000000000000000 x16: 00000000001f27dc \n[    0.725247] x15: 0000000000000048 x14: 0000000000000082 \n[    0.725250] x13: 000000000000d86c x12: 0000000000000000 \n[    0.725252] x11: 0000000000000000 x10: 0000000000000000 \n[    0.725255] x9 : 0000000000040900 x8 : 0000000000040900 \n[    0.725257] x7 : 0000000000000000 x6 : ffffff84e6a59986 \n[    0.725260] x5 : ffffff84e6830000 x4 : 0000000000000004 \n[    0.725262] x3 : 0000000000002765 x2 : 0000000000000002 \n[    0.725265] x1 : 0000000000000000 x0 : 0000000000000036 \n[    0.725268] \n               PC: 0xffffff84e54613c0:\n[    0.725269] 13c0  52802489 6a09011f 54000060 f9400a68 b40001e8 91004280 aa1303e1 aa1f03e2\n[    0.725280] 13e0  97f026ec a9414ff4 a8c27bfd d65f03c0 f9400261 d0006660 911b1c00 97eaaa70\n[    0.725287] 1400  d4210000 79401268 17ffffee f9400261 d0006660 911bdc00 97eaaa69 d4210000\n[    0.725295] 1420  17ffffed b40000e0 a9bf7bfd 91004000 aa1f03e2 910003fd 97f02771 a8c17bfd\n[    0.725304] \n               LR: 0xffffff84e54613c0:\n[    0.725304] 13c0  52802489 6a09011f 54000060 f9400a68 b40001e8 91004280 aa1303e1 aa1f03e2\n[    0.725312] 13e0  97f026ec a9414ff4 a8c27bfd d65f03c0 f9400261 d0006660 911b1c00 97eaaa70\n[    0.725320] 1400  d4210000 79401268 17ffffee f9400261 d0006660 911bdc00 97eaaa69 d4210000\n[    0.725328] 1420  17ffffed b40000e0 a9bf7bfd 91004000 aa1f03e2 910003fd 97f02771 a8c17bfd\n[    0.725336] \n               SP: 0xffffffcc46767ab0:\n[    0.725337] 7ab0  e5461400 ffffff84 46767af0 ffffffcc e5461400 ffffff84 60400005 00000000\n[    0.725345] 7ad0  46767af0 ffffffcc e5461400 ffffff84 ffffffff ffffffff e54613e4 ffffff84\n[    0.725352] 7af0  46767b30 ffffffcc e556b670 ffffff84 b24f8c10 ffffffcc b01f0000 ffffffcc\n[    0.725360] 7b10  46767b70 ffffffcc 00000000 00000000 000c3500 000c3500 00040900 00000000\n[    0.725370] ---[ end trace e0189ea7ce9e40c7 ]---\n[    0.725372] Call trace:\n[    0.725375] Exception stack(0xffffffcc46767990 to 0xffffffcc46767ac0)\n[    0.725377] 7980:                                   0000000060400005 0000000000000000\n[    0.725380] 79a0: ffffff84e5461400 000000008202c000 0000007fffffffff ffffff84e68bc8a8\n[    0.725383] 79c0: 0000000000000036 0000000000000000 0000000000000002 0000000000002765\n[    0.725385] 79e0: 0000000000000004 ffffff84e6830000 ffffff84e6a59986 0000000000000000\n[    0.725388] 7a00: 0000000000040900 0000000000040900 0000000000000000 0000000000000000\n[    0.725390] 7a20: 0000000000000000 000000000000d86c 0000000000000082 0000000000000048\n[    0.725393] 7a40: 00000000001f27dc 0000000000000000 00000000ffff27dc ffffff84e68bc8a8\n[    0.725396] 7a60: ffffffccb24f8c10 ffffffccb24f8c00 ffffffccb0050918 ffffffccb01f02d0\n[    0.725399] 7a80: ffffff84e6cb9000 ffffffccb01f8550 ffffff84e6cb9280 ffffffccb01f85b0\n[    0.725401] 7aa0: ffffff84e4ec69d0 ffffffcc46767af0 ffffff84e5461400 ffffffcc46767af0\n[    0.725404] [<000000006359b6e2>] device_create_file+0x70/0x94\n[    0.725408] [<00000000b63c988a>] msm_otg_probe+0x1038/0x13e4\n[    0.725411] [<000000006f939fee>] platform_drv_probe+0x48/0x9c\n[    0.725415] [<000000009db7d078>] driver_probe_device+0x3d0/0x408\n[    0.725417] [<000000008024e434>] __driver_attach+0xb8/0xe4\n[    0.725420] [<000000009ec227d4>] bus_for_each_dev+0x80/0xc8\n[    0.725423] [<000000008808191a>] driver_attach+0x20/0x28\n[    0.725425] [<00000000eee9b289>] bus_add_driver+0x118/0x1e0\n[    0.725428] [<00000000766bcd34>] driver_register+0xa4/0xf0\n[    0.725430] [<0000000084c860f1>] __platform_driver_register+0x40/0x48\n[    0.725434] [<00000000b709a8ab>] msm_otg_driver_init+0x18/0x20\n[    0.725438] [<00000000749b11bc>] do_one_initcall+0xe0/0x1a8\n[    0.725442] [<000000003874bd9a>] kernel_init_freeable+0x1b0/0x240\n[    0.725446] [<00000000e65ccb66>] kernel_init+0x10/0x1f4\n[    0.725448] [<0000000040a3b0a2>] ret_from_fork+0x10/0x50\n[    0.725836] CHRDEV \"usbmon\" major number 232 goes below the dynamic allocation range\n[    0.725881] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.725883] ehci-platform: EHCI generic platform driver\n[    0.726194] ehci-msm: Qualcomm On-Chip EHCI Host Controller\n[    0.726379] Unable to get vbus_otg\n[    0.726382] msm_hsusb_host msm_hsusb_host: unable to register with transceiver\n[    0.726441] usbcore: registered new interface driver cdc_acm\n[    0.726443] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters\n[    0.726466] usbcore: registered new interface driver usb-storage\n[    0.726480] usbcore: registered new interface driver ums-alauda\n[    0.726494] usbcore: registered new interface driver ums-cypress\n[    0.726508] usbcore: registered new interface driver ums-datafab\n[    0.726522] usbcore: registered new interface driver ums-freecom\n[    0.726538] usbcore: registered new interface driver ums-isd200\n[    0.726553] usbcore: registered new interface driver ums-jumpshot\n[    0.726567] usbcore: registered new interface driver ums-karma\n[    0.726581] usbcore: registered new interface driver ums-onetouch\n[    0.726595] usbcore: registered new interface driver ums-sddr09\n[    0.726609] usbcore: registered new interface driver ums-sddr55\n[    0.726623] usbcore: registered new interface driver ums-usbat\n[    0.726665] usbcore: registered new interface driver usbserial\n[    0.726683] usbcore: registered new interface driver usb_ehset_test\n[    0.726705] CHRDEV \"ttyGS\" major number 231 goes below the dynamic allocation range\n[    0.727878] msm_sharedmem: sharedmem_register_qmi: qmi init successful\n[    0.728650] usb_qcrndis_init: failed to register diag -17\n[    0.728663] CHRDEV \"rmnet_ctrl\" major number 230 goes below the dynamic allocation range\n[    0.729281] mousedev: PS/2 mouse device common for all mice\n[    0.729402] usbcore: registered new interface driver xpad\n[    0.729531] ILITEK:INFO (ilitek_plat_dev_init, 470): ILITEK TP driver init for QCOM\n[    0.729533] ILITEK:INFO (ilitek_tddi_dev_init, 812): TP Interface: SPI\n[    0.729535] ILITEK:INFO (ilitek_tddi_interface_dev_init, 677): ilitek start\n[    0.729538] ILITEK:INFO (ilitek_tddi_interface_dev_init, 702): ilitek_tddi_interface_dev_init \n[    0.729703] ILITEK:INFO (ilitek_spi_probe, 579): ilitek spi probe\n[    0.729751] ILITEK:INFO (core_spi_setup, 553): spi clock = 10485760\n[    0.729807] ILITEK:INFO (core_spi_setup, 569): name = ilitek, bus_num = 3,cs = 0, mode = 0, speed = 10485760\n[    0.729809] ILITEK:INFO (ilitek_plat_probe, 423): platform probe\n[    0.729815] ILITEK:INFO (ilitek_plat_gpio_register, 183): TP INT: 65\n[    0.729816] ILITEK:INFO (ilitek_plat_gpio_register, 184): TP RESET: 64\n[    0.729827] ILITEK:INFO (ilitek_tddi_init, 700): ilitek tddi main init\n[    0.732022] ILITEK:INFO (ilitek_tddi_reset_ctrl, 675): TP HW RST\n[    0.740133] i2c-msm-v2 7af5000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:4) mode:FIFO slv_addr:0x28 MSTR_STS:0x0d1343c8 OPER:0x00000090\n[    0.740148] nq-nci 5-0028: nfcc_hw_check: - i2c_master_send core reset Error\n[    0.743108] ILITEK:INFO (ilitek_ice_mode_ctrl, 215): Enable ICE mode, mcu on = 0\n[    0.743516] ILITEK:ERR (ilitek_tddi_ic_check_support, 77): ERROR, ILITEK CHIP (ffffffff, ffff) Not found !!\n[    0.743880] ILITEK:ERR (ilitek_tddi_ic_check_support, 77): ERROR, ILITEK CHIP (ffffffff, ffff) Not found !!\n[    0.744244] ILITEK:ERR (ilitek_tddi_ic_check_support, 77): ERROR, ILITEK CHIP (ffffffff, ffff) Not found !!\n[    0.744246] ILITEK:ERR (ilitek_ice_mode_ctrl, 244): Enter to ICE Mode failed !!\n[    0.744248] ILITEK:ERR (ilitek_tddi_init, 733): Enable ice mode failed during init\n[    0.744249] ILITEK:ERR (ilitek_tddi_ic_get_info, 1091): ice mode doesn't enable\n[    0.744251] ILITEK:ERR (ilitek_tddi_init, 736): Not found ilitek chips\n[    0.744252] ILITEK:ERR (ilitek_plat_probe, 431): platform probe failed\n[    0.744277] [NVT-ts] nvt_driver_init 2357: start\n[    0.744292] [NVT-ts] nvt_ts_probe 1574: start\n[    0.744331] [NVT-ts] nvt_ts_probe 1623: mode=0, max_speed_hz=9600000\n[    0.744335] [NVT-ts] nvt_parse_dt 1087: novatek,irq-gpio=65\n[    0.744337] [NVT-ts] nvt_parse_dt 1094: SWRST_N8_ADDR=0x03F0FE\n[    0.744339] [NVT-ts] nvt_parse_dt 1103: SPI_RD_FAST_ADDR=0x03F310\n[    0.765318] [NVT-ts] nvt_ts_check_chip_ver_trim 1504: buf[1]=0x0B, buf[2]=0x00, buf[3]=0x00, buf[4]=0x25, buf[5]=0x65, buf[6]=0x03\n[    0.765320] [NVT-ts] nvt_ts_check_chip_ver_trim 1523: This is NVT touch IC\n[    0.765401] input: NVTCapacitiveTouchScreen as /devices/virtual/input/input2\n[    0.765439] [NVT-ts] nvt_ts_probe 1733: int_trigger_type=1\n[    0.765549] [NVT-ts] nvt_irq_enable 235: enable=0, desc->depth=1\n[    0.765551] [NVT-ts] nvt_ts_probe 1742: request irq 280 succeed\n[    0.766617] [NVT-ts] nvt_ts_probe 1762: NVT_TOUCH_ESD_PROTECT is 0\n[    0.766623] [NVT-ts] nvt_flash_proc_init 933: Succeeded!\n[    0.766625] [NVT-ts] nvt_flash_proc_init 936: ============================================================\n[    0.766626] [NVT-ts] nvt_flash_proc_init 937: Create /proc/NVTSPI\n[    0.766628] [NVT-ts] nvt_flash_proc_init 938: ============================================================\n[    0.766633] [NVT-ts] nvt_extra_proc_init 1510: create proc/nvt_fw_version Succeeded!\n[    0.766637] [NVT-ts] nvt_extra_proc_init 1518: create proc/nvt_baseline Succeeded!\n[    0.766641] [NVT-ts] nvt_extra_proc_init 1526: create proc/nvt_raw Succeeded!\n[    0.766645] [NVT-ts] nvt_extra_proc_init 1534: create proc/nvt_diff Succeeded!\n[    0.766648] [NVT-ts] nvt_extra_proc_init 1542: create proc/nvt_xiaomi_config_info Succeeded!\n[    0.766652] [NVT-ts] nvt_extra_proc_init 1550: create proc/nvt_pf_switch Succeeded!\n[    0.766655] [NVT-ts] nvt_extra_proc_init 1558: create proc/nvt_sensitivity_switch Succeeded!\n[    0.766658] [NVT-ts] nvt_extra_proc_init 1566: create proc/nvt_er_range_switch Succeeded!\n[    0.766661] [NVT-ts] nvt_extra_proc_init 1573: create proc/nvt_edge_reject_switch Succeeded!\n[    0.766665] [NVT-ts] nvt_extra_proc_init 1580: create proc/nvt_pocket_palm_switch Succeeded!\n[    0.766678] [NVT-ts] nvt_mp_proc_init 2014: create /proc/nvt_selftest Succeeded!\n[    0.766682] [NVT-ts] nvt_tp_selftest_proc_init 2111: create /proc/tp_selftest Succeeded!\n[    0.766686] [NVT-ts] nvt_proc_tp_lockdown_info 2077: Sucess to creat ilitek_tp_lockdown_info /proc\n[    0.766689] [NVT-ts] nvt_ts_probe 1849: end\n[    0.766699] [NVT-ts] nvt_irq_enable 235: enable=1, desc->depth=0\n[    0.766711] [NVT-ts] nvt_driver_init 2366: finished\n[    0.766713] [FTS_TS]fts_ts_init: Enter\n[    0.766841] irq: type mismatch, failed to map hwirq-65 for /soc/pinctrl@1000000!\n[    0.766843] [FTS_TS/I]fts_ts_probe:Touch Screen(SPI BUS) driver prboe...\n[    0.766861] [FTS_TS]fts_ts_probe_entry: Enter\n[    0.766862] [FTS_TS/I]fts_ts_probe_entry:Focaltech V3.1 20190807\n[    0.766863] [FTS_TS]fts_parse_dt: Enter\n[    0.766866] [FTS_TS/I]fts_get_dt_coords:display x(0 720) y(0 1520)\n[    0.766872] [FTS_TS/I]fts_parse_dt:max touch number:10, irq gpio:65, reset gpio:64\n[    0.766873] [FTS_TS]fts_parse_dt: Exit(1278)\n[    0.767924] [FTS_TS]fts_bus_init: Enter\n[    0.767928] [FTS_TS]fts_bus_init: Exit(325)\n[    0.767929] [FTS_TS]fts_input_init: Enter\n[    0.768006] input: fts_ts as /devices/platform/soc/78b7000.spi/spi_master/spi3/spi3.2/input/input3\n[    0.768040] [FTS_TS]fts_input_init: Exit(819)\n[    0.768042] [FTS_TS]fts_gpio_configure: Enter\n[    0.768043] [FTS_TS/E]fts_gpio_configure:[GPIO]irq gpio request failed\n[    0.768045] [FTS_TS]fts_gpio_configure: Exit(1155)\n[    0.768046] [FTS_TS/E]fts_ts_probe_entry:configure the gpios fail\n[    0.768181] [FTS_TS]fts_ts_probe_entry: Exit(1591)\n[    0.768183] [FTS_TS/E]fts_ts_probe:Touch Screen(SPI BUS) driver probe fail\n[    0.768187] fts_ts: probe of spi3.2 failed with error -16\n[    0.768197] [FTS_TS]fts_ts_init: Exit(1818)\n[    0.768198] SAR  virtualsar_init - Start driver initialization...\n[    0.770538] i2c-msm-v2 7af5000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:8) mode:FIFO slv_addr:0x28 MSTR_STS:0x011363c8 OPER:0x00000090\n[    0.770550] nq-nci 5-0028: nfcc_hw_check: - i2c_master_send get version cmd Error\n[    0.770553] nq-nci 5-0028: nfcc_hw_check: - NFCC HW not available\n[    0.770608] nq-nci 5-0028: nqx_probe: probing nqxx failed, check hardware\n[    0.770670] virtualsar,sar 5-0033: virtualsar_probe\n[    0.770672] SAR  virtualsar_probe - Device tree matched!\n[    0.770674] parse irq gpio correctly\n                \n[    0.770675] sar_parse_dt success\n[    0.770738] input: vitural-sar as /devices/virtual/input/input4\n[    0.770808] after sar_irq_enable,probe end \n[    0.770826] ret : 0\n[    0.771252] qcom,qpnp-rtc 200f000.qcom,spmi:qcom,pm8953@0:qcom,pm8953_rtc: rtc core: registered qpnp_rtc as rtc0\n[    0.771536] i2c /dev entries driver\n[    0.771663] CHRDEV \"BaseRemoteCtl\" major number 229 goes below the dynamic allocation range\n[    0.771664] lirc_dev: IR Remote Control driver registered, major 229\n[    0.771666] IR NEC protocol handler initialized\n[    0.771668] IR RC5(x/sz) protocol handler initialized\n[    0.771669] IR RC6 protocol handler initialized\n[    0.771670] IR JVC protocol handler initialized\n[    0.771671] IR Sony protocol handler initialized\n[    0.771672] IR SANYO protocol handler initialized\n[    0.771674] IR Sharp protocol handler initialized\n[    0.771675] IR MCE Keyboard/mouse protocol handler initialized\n[    0.771676] IR LIRC bridge handler initialized\n[    0.771678] IR XMP protocol handler initialized\n[    0.771769] ir-spi spi6.0: lirc_dev: driver ir-spi registered at minor = 0\n[    0.776572] iommu: Adding device 1d00000.qcom,vidc:non_secure_cb to group 5\n[    0.777010] iommu: Adding device 1d00000.qcom,vidc:secure_bitstream_cb to group 6\n[    0.777251] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.777254] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    0.777311] iommu: Adding device 1d00000.qcom,vidc:secure_pixel_cb to group 7\n[    0.777508] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.777510] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    0.777568] iommu: Adding device 1d00000.qcom,vidc:secure_non_pixel_cb to group 8\n[    0.777767] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.777769] batched_hyp_assign: Failed to assign memory protection, ret = -5\n[    0.781476] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb1 to group 9\n[    0.781552] CAM-SMMU cam_smmu_populate_sids:2081 __debug cnt = 6, cb->name: :vfe sid [0] = 1024\n               ,\n[    0.781555] CAM-SMMU cam_smmu_populate_sids:2081 __debug cnt = 6, cb->name: :vfe sid [1] = 9216\n               ,\n[    0.781707] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb3 to group 10\n[    0.781774] CAM-SMMU cam_smmu_populate_sids:2081 __debug cnt = 3, cb->name: :cpp sid [0] = 7168\n               ,\n[    0.781821] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb4 to group 11\n[    0.781889] CAM-SMMU cam_smmu_populate_sids:2081 __debug cnt = 3, cb->name: :jpeg_enc0 sid [0] = 6144\n               ,\n[    0.782819] msm_camera_get_dt_vreg_data:1127 number of entries is 0 or not present in dts\n[    0.786565] msm_camera_get_dt_vreg_data:1127 number of entries is 0 or not present in dts\n[    0.786692] msm_camera_get_dt_vreg_data:1127 number of entries is 0 or not present in dts\n[    0.786990] msm_camera_get_dt_vreg_data:1127 number of entries is 0 or not present in dts\n[    0.787104] msm_camera_get_dt_vreg_data:1127 number of entries is 0 or not present in dts\n[    0.787217] msm_camera_get_dt_vreg_data:1127 number of entries is 0 or not present in dts\n[    0.787481] msm_actuator_platform_probe:1995 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    0.796271] msm_cci_init:1447: hw_version = 0x10020004\n[    1.075286] msm_cci_init:1447: hw_version = 0x10020004\n[    1.354152] msm_cci_init:1447: hw_version = 0x10020004\n[    1.354284] msm_cci_irq:1820 MASTER_0 error 0x10000000\n[    1.354302] msm_cci_i2c_read:967 read_words = 0, exp words = 4\n[    1.354303] msm_cci_i2c_read_bytes:1050 failed rc -22\n[    1.354328] read_eeprom_memory: read failed\n[    1.354329] msm_eeprom_platform_probe read_eeprom_memory failed\n[    1.362197] qcom,eeprom: probe of 1b0c000.qcom,cci:qcom,eeprom@2 failed with error -22\n[    1.372069] msm_cci_init:1447: hw_version = 0x10020004\n[    1.372205] msm_cci_irq:1820 MASTER_0 error 0x10000000\n[    1.372222] msm_cci_i2c_read:967 read_words = 0, exp words = 4\n[    1.372224] msm_cci_i2c_read_bytes:1050 failed rc -22\n[    1.372246] read_eeprom_memory: read failed\n[    1.372247] msm_eeprom_platform_probe read_eeprom_memory failed\n[    1.380186] qcom,eeprom: probe of 1b0c000.qcom,cci:qcom,eeprom@3 failed with error -22\n[    1.380483] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    1.390080] msm_cci_init:1447: hw_version = 0x10020004\n[    1.648940] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    1.658751] msm_cci_init:1447: hw_version = 0x10020004\n[    1.918605] msm_cci_init:1447: hw_version = 0x10020004\n[    2.197440] msm_cci_init:1447: hw_version = 0x10020004\n[    2.483410] msm_cci_init:1447: hw_version = 0x10020004\n[    2.483541] msm_cci_irq:1826 MASTER_1 error 0x20000000\n[    3.520031] msm_cci_wait: 308 wait for queue: 0\n[    3.520033] msm_cci_transfer_end: 560 failed rc -110\n[    3.520044] msm_cci_data_queue: 818 failed rc -110\n[    3.520046] msm_camera_cci_i2c_write: line 134 rc = -110\n[    3.580029] read_eeprom_memory: page write failed\n[    3.580030] msm_eeprom_platform_probe read_eeprom_memory failed\n[    3.595235] qcom,eeprom: probe of 1b0c000.qcom,cci:qcom,eeprom@8 failed with error -110\n[    3.600554] MSM-CPP cpp_init_hardware:1133 CPP HW Version: 0x40030002\n[    3.600559] MSM-CPP cpp_init_hardware:1151 stream_cnt:0\n[    3.600636] MSM-CPP cpp_release_hardware:1214 cpp hw release done\n[    3.602567] CAM-SOC msm_camera_get_reg_base:870 err: mem resource vfe_fuse not found\n[    3.602569] CAM-SOC msm_camera_get_res_size:913 err: mem resource vfe_fuse not found\n[    3.602639] msm_vfe47_get_clks: cannot find camss_vfe_stream_clk\n[    3.603167] CAM-SOC msm_camera_get_reg_base:870 err: mem resource vfe_fuse not found\n[    3.603169] CAM-SOC msm_camera_get_res_size:913 err: mem resource vfe_fuse not found\n[    3.603228] msm_vfe47_get_clks: cannot find camss_vfe_stream_clk\n[    3.604000] __msm_jpeg_init:1591] Jpeg Device id 0\n[    3.604116] CHRDEV \"jpeg0\" major number 228 goes below the dynamic allocation range\n[    3.605494] sw_jeita_enable = 0, hw_jeita_enable = 1\n[    3.605578] PL_DISABLE: effective vote is now 1 voted by CHG_STATE_VOTER,0\n[    3.606146] USB_ICL: effective vote is now -22 voted by (null),-22\n[    3.606149] DC_SUSPEND: effective vote is now 0 voted by DEFAULT_VOTER,0\n[    3.606152] FCC: effective vote is now -22 voted by (null),-22\n[    3.606154] FV: effective vote is now 4400000 voted by HW_LIMIT_VOTER,0\n[    3.606157] FCC: effective vote is now 2000000 voted by BATT_PROFILE_VOTER,1\n[    3.606159] USB_ICL: effective vote is now 2000000 voted by HW_LIMIT_VOTER,1\n[    3.606175] CHG_DISABLE: effective vote is now 0 voted by DEFAULT_VOTER,0\n[    3.607671] pmi632_charger: usb_source_change_irq_handler: APSD_STATUS = 0x00,APSD_RESULT = 0x00\n[    3.607907] PL_ENABLE_INDIRECT: effective vote is now 0 voted by USBIN_I_VOTER,0\n[    3.608144] pmi632_charger: smblib_eval_chg_termination: Couldn't read SOC value, rc=-22\n[    3.613237] SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    3.613255] QPNP SMB5 probed successfully\n[    3.614829] thermal thermal_zone1: failed to read out thermal zone (-517)\n[    3.635725] bcl_soc:bcl_read_soc battery percentage read error:-61\n[    3.635731] thermal thermal_zone39: failed to read out thermal zone (-61)\n[    3.635781] IRQ1 no longer affine to CPU0\n[    3.635785] IRQ6 no longer affine to CPU0\n[    3.636099] IRQ1 no longer affine to CPU1\n[    3.636103] IRQ6 no longer affine to CPU1\n[    3.636305] IRQ1 no longer affine to CPU2\n[    3.636309] IRQ6 no longer affine to CPU2\n[    3.636495] IRQ1 no longer affine to CPU3\n[    3.636498] IRQ6 no longer affine to CPU3\n[    3.636648] bcl_soc:bcl_read_soc battery percentage read error:-61\n[    3.636652] thermal thermal_zone39: failed to read out thermal zone (-61)\n[    3.637241] bcl_soc:bcl_read_soc battery percentage read error:-61\n[    3.666489] pmi632_charger: smblib_set_prop_system_temp_level: system_temp_level = 1, ibus =2000000\n[    3.666503] pmi632_charger: smblib_set_prop_system_temp_level: system_temp_level = 2, ibus =2000000\n[    3.666507] pmi632_charger: smblib_set_prop_system_temp_level: system_temp_level = 2, ibus =2000000\n[    3.666510] pmi632_charger: smblib_set_prop_system_temp_level: system_temp_level = 2, ibus =2000000\n[    3.666514] pmi632_charger: smblib_set_prop_system_temp_level: system_temp_level = 2, ibus =2000000\n[    3.667923] device-mapper: uevent: version 1.0.3\n[    3.668019] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com\n[    3.669079] device-mapper: req-crypt: dm-req-crypt successfully initalized.\n\n[    3.669500] CHRDEV \"bt\" major number 227 goes below the dynamic allocation range\n[    3.669570] sdhci: Secure Digital Host Controller Interface driver\n[    3.669571] sdhci: Copyright(c) Pierre Ossman\n[    3.669572] sdhci-pltfm: SDHCI platform and OF driver helper\n[    3.670406] qpnp_vibrator_ldo_probe: Vibrator LDO successfully registered: uV = 2800000, overdrive = disabled\n[    3.670873] CHRDEV \"hidraw\" major number 226 goes below the dynamic allocation range\n[    3.670883] hidraw: raw HID events driver (C) Jiri Kosina\n[    3.671100] usbcore: registered new interface driver usbhid\n[    3.671101] usbhid: USB HID core driver\n[    3.671175] ashmem: initialized\n[    3.671284] qpnp_coincell_charger_show_state: enabled=Y, voltage=3200 mV, resistance=2100 ohm\n[    3.672724] bimc-bwmon 408000.qcom,cpu-bwmon: BW HWmon governor registered.\n[    3.674245] CHRDEV \"sensors\" major number 225 goes below the dynamic allocation range\n[    3.674412] usbcore: registered new interface driver snd-usb-audio\n[    3.674825] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.676548] aw87329_pa_init enter\n[    3.676549] aw87329_pa_init: driver version: v1.1.2\n[    3.676568] aw87519_pa_init enter\n[    3.676569] aw87519_pa_init: driver version: v1.0.3\n[    3.676635] aw87519_i2c_probe Enter\n[    3.676643] AW87519_PA 2-0058: aw87519_parse_dt: reset gpio provided ok\n[    3.676653] aw87519_hw_reset enter\n[    3.679067] sdhci_msm 7824900.sdhci: failed opening nvmem cell err : -2\n[    3.679075] qcom_ice_get_pdevice: found ice device ffffffccb06bba00\n[    3.679076] qcom_ice_get_pdevice: matching platform device ffffffccb25b8c00\n[    3.680608] qcom_ice 7803000.sdcc1ice: QC ICE 2.1.44 device found @0xffffff8009870000\n[    3.681224] mmc0: SDHCI controller on 7824900.sdhci [7824900.sdhci] using 64-bit ADMA in CMDQ mode\n[    3.710345] aw87519_read_chipid This Chip is  AW87519 chipid=0x59\n[    3.710355] aw87519_hw_off enter\n[    3.731424] bcl_soc:bcl_read_soc battery percentage read error:-61\n[    3.731428] thermal thermal_zone39: failed to read out thermal zone (-61)\n[    3.753157] mmc0: Out-of-interrupt timeout is 100[ms]\n[    3.753160] mmc0: eMMC FW version: 0x04\n[    3.753161] mmc0: CMDQ supported: depth: 16\n[    3.753163] mmc0: cache barrier support 0 flush policy 0\n[    3.759015] cmdq_host_alloc_tdl: desc_size: 768 data_sz: 63488 slot-sz: 24\n[    3.759120] mmc0: CMDQ enabled on card\n[    3.759127] mmc0: new HS400 Enhanced strobe MMC card at address 0001\n[    3.761429] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0xf) latency=-1\n[    3.761432] sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xf0) latency=-1\n[    3.761474] mmcblk0: mmc0:0001 QD63MB 29.1 GiB \n[    3.762590] mmcblk0rpmb: mmc0:0001 QD63MB partition 3 16.0 MiB\n[    3.764176]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42 p43 p44 p45 p46 p47 p48 p49 p50 p51 p52 p53 p54 p55 p56 p57 p58 p59 p60 p61 p62\n[    3.769452] sdhci_msm 7864900.sdhci: failed opening nvmem cell err : -2\n[    3.769458] sdhci_msm 7864900.sdhci: sdhci_msm_probe: ICE device is not enabled\n[    3.782103] mmc1: SDHCI controller on 7864900.sdhci [7864900.sdhci] using 64-bit ADMA in legacy mode\n[    3.813094] tz_log 8600720.tz-log: Hyp log service is not supported\n[    3.821460] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx group_id: 0x9100\n[    3.821605] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0 dev_id: 0x9000\n[    3.821613] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.821631] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx group_id: 0x9101\n[    3.821766] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0 dev_id: 0x9001\n[    3.821772] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.821790] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx group_id: 0x9110\n[    3.821922] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0 dev_id: 0x9010\n[    3.821929] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.821947] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx group_id: 0x9111\n[    3.822078] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0 dev_id: 0x9011\n[    3.822085] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.822102] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx group_id: 0x9120\n[    3.822233] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0 dev_id: 0x9020\n[    3.822239] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.822256] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx group_id: 0x9121\n[    3.822389] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0 dev_id: 0x9021\n[    3.822396] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.822413] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx group_id: 0x9130\n[    3.822544] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0 dev_id: 0x9030\n[    3.822551] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.822567] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx group_id: 0x9131\n[    3.822701] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0 dev_id: 0x9031\n[    3.822707] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.822724] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx group_id: 0x9140\n[    3.822855] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0 dev_id: 0x9040\n[    3.822861] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.822877] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx group_id: 0x9141\n[    3.823010] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0 dev_id: 0x9041\n[    3.823017] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.825813] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.825818] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.825827] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.825835] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.826245] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.826249] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.828129] CHRDEV \"avtimer\" major number 224 goes below the dynamic allocation range\n[    3.828447] audio_notifier_init: PDR register failed, ret = -19, disable service\n[    3.828705] apr_probe: Unable to create ipc log context\n[    3.828711] audio_notifer_reg_service: service SSR_ADSP is in use\n[    3.828714] audio_notifer_reg_service: service SSR_MODEM is in use\n[    3.829696] netem: version 1.3\n[    3.829697] u32 classifier\n[    3.829698]     Actions configured\n[    3.829702] Netfilter messages via NETLINK v0.30.\n[    3.829825] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    3.829909] ctnetlink v0.93: registering with nfnetlink.\n[    3.830056] bcl_soc:bcl_read_soc battery percentage read error:-61\n[    3.830061] thermal thermal_zone39: failed to read out thermal zone (-61)\n[    3.830188] xt_time: kernel timezone is -0000\n[    3.830223] wireguard: WireGuard 1.0.20210424 loaded. See www.wireguard.com for information.\n[    3.830225] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    3.830283] gre: GRE over IPv4 demultiplexor driver\n[    3.830285] IPv4 over IPsec tunneling driver\n[    3.832641] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    3.832767] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    3.832789] Initializing XFRM netlink socket\n[    3.832800] IPsec XFRM device driver\n[    3.832931] NET: Registered protocol family 10\n[    3.834887] mip6: Mobile IPv6\n[    3.834897] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    3.835269] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    3.835709] NET: Registered protocol family 17\n[    3.835718] NET: Registered protocol family 15\n[    3.835739] Bridge firewalling registered\n[    3.835741] Ebtables v2.0 registered\n[    3.835794] l2tp_core: L2TP core driver, V2.0\n[    3.835800] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    3.835801] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    3.835809] l2tp_netlink: L2TP netlink interface\n[    3.835826] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    3.835827] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    3.835888] sctp: Hash tables configured (bind 256/256)\n[    3.836630] NET: Registered protocol family 27\n[    3.838348] IPC_RTR: ipc_router_create_log_ctx: Unable to create IPC logging for [local_IPCRTR]\n[    3.840552] minidump-id not found for adsp\n[    3.840755] subsys-pil-tz c200000.qcom,lpass: for adsp segments only will be dumped.\n[    3.843155] minidump-id not found for wcnss\n[    3.844263] subsys-pil-tz a21b000.qcom,pronto: for wcnss segments only will be dumped.\n[    3.844638] minidump-id not found for modem\n[    3.844844] pil-q6v5-mss 4080000.qcom,mss: for modem segments only will be dumped.\n[    3.844884] pil-q6v5-mss 4080000.qcom,mss: for md_modem segments only will be dumped.\n[    3.847811] msm_otg 78db000.usb: phy_reset: success\n[    3.858741] QG-K: qg_load_battery_profile: batt_id_ohm=100200\n[    3.858743] COSLIGHT match succ.\n[    3.858744] QG-K: qg_load_battery_profile: batt_id=100200\n[    3.858895] of_batterydata_get_best_profile: dhx batt_ids.kohm = 330\n[    3.858898] of_batterydata_get_best_profile: dhx batt_ids.kohm = 100\n[    3.858900] of_batterydata_get_best_profile: dhx batt_ids.kohm = 200\n[    3.858902] of_batterydata_get_best_profile: checknum = 0,best_id_kohm = 100, batt_id_kohm = 100,match = 1,id_range_pct = 10\n[    3.858905] of_batterydata_get_best_profile: GY-5000mah-100kohm found\n[    3.858908] CHRDEV \"qg_battery\" major number 223 goes below the dynamic allocation range\n[    3.859138] QG-K: qg_batterydata_init: QG Battery-profile loaded, '/dev/qg_battery' created!\n[    3.859143] QG-K: qg_setup_battery: battery_missing=0 batt_id_ohm=100200 Ohm profile_loaded=1 profile=GY-5000mah-100kohm\n[    3.859144] CHRDEV \"qg\" major number 222 goes below the dynamic allocation range\n[    3.861681] QG-K: qg_determine_pon_soc: using SHUTDOWN_SOC @ PON ocv_uv=4248700uV soc=91\n[    3.862583] QG-K: qpnp_qg_probe: QG initialized! battery_profile=GY-5000mah-100kohm SOC=91\n[    3.862767] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.863183] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.863188] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.863197] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.863205] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.863658] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.863662] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.864229] Registered cp15_barrier emulation handler\n[    3.864239] Registered setend emulation handler\n[    3.864253] core_ctl: Creating CPU group 0\n[    3.864255] core_ctl: Init CPU0 state\n[    3.864256] core_ctl: Init CPU1 state\n[    3.864257] core_ctl: Init CPU2 state\n[    3.864258] core_ctl: Init CPU3 state\n[    3.864331] core_ctl: Creating CPU group 4\n[    3.864333] core_ctl: Init CPU4 state\n[    3.864334] core_ctl: Init CPU5 state\n[    3.864335] core_ctl: Init CPU6 state\n[    3.864336] core_ctl: Init CPU7 state\n[    3.864549] registered taskstats version 1\n[    3.864551] Loading compiled-in X.509 certificates\n[    3.867872] Loaded X.509 cert 'Build time autogenerated kernel key: a6bdd85b51c16bf7e7e2b1d9b80e54f6bed1f5d3'\n[    3.869014] qcom,cc-debug-8952 1874000.qcom,cc-debug: Registered Debug Mux successfully\n[    3.870379] of_batterydata_get_best_profile: dhx batt_ids.kohm = 330\n[    3.870382] of_batterydata_get_best_profile: dhx batt_ids.kohm = 100\n[    3.870384] of_batterydata_get_best_profile: dhx batt_ids.kohm = 200\n[    3.870387] of_batterydata_get_best_profile: checknum = 0,best_id_kohm = 100, batt_id_kohm = 100,match = 1,id_range_pct = 10\n[    3.870390] of_batterydata_get_best_profile: GY-5000mah-100kohm found\n[    3.870735] FCC: effective vote is now 3000000 voted by BATT_PROFILE_VOTER,1\n[    3.872127] bam_dmux_init : unable to create IPC Logging Context\n[    3.875546] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb to group 12\n[    3.876566] CHRDEV \"adsprpc-smd\" major number 221 goes below the dynamic allocation range\n[    3.876826] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.877215] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.877219] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.877229] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.877237] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.877665] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.877669] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.877822] proc_dir_entry '/proc/cpumaxfreq' already registered\n[    3.877837] ------------[ cut here ]------------\n[    3.877846] WARNING: CPU: 0 PID: 1 at fs/proc/generic.c:345 proc_register+0xfc/0x15c\n[    3.877847] Modules linked in:\n[    3.877854] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W       4.9.268-LOLZ-freqbench #1\n[    3.877855] Hardware name: Olive QRD (DT)\n[    3.877858] task: 00000000c93f213f task.stack: 00000000f7fa1694\n[    3.877860] PC is at proc_register+0xfc/0x15c\n[    3.877862] LR is at proc_register+0xfc/0x15c\n[    3.877864] pc : [<ffffff84e505c9a8>] lr : [<ffffff84e505c9a8>] pstate: 60400145\n[    3.877865] sp : ffffffcc46767c70\n[    3.877866] x29: ffffffcc46767c70 x28: ffffff84e645fa80 \n[    3.877869] x27: ffffff84e645f9f0 x26: ffffff84e6455770 \n[    3.877871] x25: ffffff84e6455730 x24: ffffff84e6a47000 \n[    3.877874] x23: ffffffcc46709e48 x22: ffffffccafa39185 \n[    3.877876] x21: ffffff84e683b3c8 x20: ffffff84e683b400 \n[    3.877879] x19: ffffffccafa39100 x18: 00000000fffe7d9c \n[    3.877882] x17: 0000000000000000 x16: 00000000001e7d9c \n[    3.877884] x15: 0000000000000044 x14: 0000000000000082 \n[    3.877887] x13: 00000000000182a8 x12: 0000000000000000 \n[    3.877889] x11: 0000000000000000 x10: 0000000000000000 \n[    3.877892] x9 : 0000000000040900 x8 : 0000000000040900 \n[    3.877894] x7 : 0000000000000000 x6 : ffffff84e6a643c4 \n[    3.877897] x5 : ffffff84e6830000 x4 : 0000000000000004 \n[    3.877899] x3 : 0000000000000030 x2 : 0000000000000000 \n[    3.877901] x1 : 0000000000000140 x0 : 0000000000000034 \n[    3.877905] \n               PC: 0xffffff84e505c968:\n[    3.877905] c968  a9847e69 aa1303e0 aa1403e1 f9000a7f f90002f3 94066524 9000e000 9124f000\n[    3.877916] c988  94318876 2a1f03e0 14000019 d00082a0 910216a1 9138e800 aa1603e2 97fabd06\n[    3.877924] c9a8  d4210000 9000e000 9124f000 9431886b b9400275 9000e013 9124e273 aa1303e0\n[    3.877932] c9c8  943186c5 aa0003f4 52a20008 9000e000 0b0802a1 91242000 9406506f aa1303e0\n[    3.877940] \n               LR: 0xffffff84e505c968:\n[    3.877941] c968  a9847e69 aa1303e0 aa1403e1 f9000a7f f90002f3 94066524 9000e000 9124f000\n[    3.877949] c988  94318876 2a1f03e0 14000019 d00082a0 910216a1 9138e800 aa1603e2 97fabd06\n[    3.877956] c9a8  d4210000 9000e000 9124f000 9431886b b9400275 9000e013 9124e273 aa1303e0\n[    3.877964] c9c8  943186c5 aa0003f4 52a20008 9000e000 0b0802a1 91242000 9406506f aa1303e0\n[    3.877972] \n               SP: 0xffffffcc46767c30:\n[    3.877973] 7c30  e505c9a8 ffffff84 46767c70 ffffffcc e505c9a8 ffffff84 60400145 00000000\n[    3.877981] 7c50  46767c70 ffffffcc e505c9a8 ffffff84 ffffffff ffffffff e505c8e0 ffffff84\n[    3.877989] 7c70  46767cc0 ffffffcc e505cd98 ffffff84 00000000 00000000 00000000 00000000\n[    3.877996] 7c90  46780000 ffffffcc afa39100 ffffffcc 00000000 00000000 e5e7b478 ffffff84\n[    3.878005] ---[ end trace e0189ea7ce9e40c9 ]---\n[    3.878006] Call trace:\n[    3.878009] Exception stack(0xffffffcc46767b10 to 0xffffffcc46767c40)\n[    3.878011] 7b00:                                   0000000060400145 0000000000000000\n[    3.878014] 7b20: ffffff84e505c9a8 000000008202c000 0000007fffffffff ffffffccafa39100\n[    3.878017] 7b40: 0000000000000034 0000000000000140 0000000000000000 0000000000000030\n[    3.878019] 7b60: 0000000000000004 ffffff84e6830000 ffffff84e6a643c4 0000000000000000\n[    3.878022] 7b80: 0000000000040900 0000000000040900 0000000000000000 0000000000000000\n[    3.878024] 7ba0: 0000000000000000 00000000000182a8 0000000000000082 0000000000000044\n[    3.878027] 7bc0: 00000000001e7d9c 0000000000000000 00000000fffe7d9c ffffffccafa39100\n[    3.878030] 7be0: ffffff84e683b400 ffffff84e683b3c8 ffffffccafa39185 ffffffcc46709e48\n[    3.878033] 7c00: ffffff84e6a47000 ffffff84e6455730 ffffff84e6455770 ffffff84e645f9f0\n[    3.878035] 7c20: ffffff84e645fa80 ffffffcc46767c70 ffffff84e505c9a8 ffffffcc46767c70\n[    3.878038] [<00000000418e1c01>] proc_register+0xfc/0x15c\n[    3.878041] [<000000004860f7c2>] proc_create_data+0x98/0xe8\n[    3.878045] [<000000007210c4d3>] mi_fs_init+0x28/0x90\n[    3.878049] [<00000000749b11bc>] do_one_initcall+0xe0/0x1a8\n[    3.878053] [<000000003874bd9a>] kernel_init_freeable+0x1b0/0x240\n[    3.878056] [<00000000e65ccb66>] kernel_init+0x10/0x1f4\n[    3.878059] [<0000000040a3b0a2>] ret_from_fork+0x10/0x50\n[    3.879185] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input5\n[    3.879385] qcom,qpnp-rtc 200f000.qcom,spmi:qcom,pm8953@0:qcom,pm8953_rtc: setting system clock to 1970-01-23 11:57:59 UTC (1943879)\n[    3.880440] lpm_levels_of: idx 1 900\n[    3.880504] lpm_levels_of: Residency < 0 for LPM\n[    3.880505] lpm_levels_of: idx 1 400\n[    3.880713] lpm_levels: register_cluster_lpm_stats()\n[    3.880839] lpm_levels: register_cluster_lpm_stats()\n[    3.881340] POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:5000000 \n[    3.881395] power_supply bms: driver failed to report `cc_soc' property: -22\n[    3.881810] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.882255] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.882260] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.882270] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.882277] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.882706] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.882710] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.883579] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.883929] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.883933] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.883939] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.883945] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.884298] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.884301] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.887317] RNDIS_IPA module is loaded.\n[    3.887327] clock_late_init: Removing enables held for handed-off clocks\n[    3.887596] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.888013] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.888018] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.888026] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.888034] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.888446] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.888450] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.893541] apc_mem_acc_corner: disabling\n[    3.893545] dbu1: disabling\n[    3.893581] ALSA device list:\n[    3.893582]   No soundcards found.\n[    3.893670] Warning: unable to open an initial console.\n[    3.894806] Freeing unused kernel memory: 4096K\n[    3.899161] process 390 (bash) no longer affine to cpu0\n[    3.901381] process 1 (bash) no longer affine to cpu0\n[    3.951973] ipa_get_transport_type:2724 IPA HW is not supported\n[    3.952298] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.952787] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.952792] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.952802] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.952809] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.953255] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.953259] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    3.953868] mmc1: new ultra high speed SDR104 SDHC card at address 1234\n[    3.954718] msm_otg 78db000.usb: USB in low power mode\n[    3.956267] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0xf) latency=-1\n[    3.956271] sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xf0) latency=-1\n[    3.956316] mmcblk1: mmc1:1234 SA16G 14.4 GiB \n[    3.956988]  mmcblk1: p1\n[    3.957393] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:analog-codec@f000: Adsp is not loaded yet 0\n[    3.957764] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe:of read string qcom,msm-ext-pa i 0 ret 0\n[    3.957769] msm8952-asoc-wcd c051000.sound: msm8952_asoc_machine_probe: missing qcom,msm-spk-ext-pa in dt node\n[    3.957777] msm8952-asoc-wcd c051000.sound: is_ext_spk_gpio_support: missing qcom,msm-spk-ext-pa in dt node\n[    3.957784] msm8952-asoc-wcd c051000.sound: Headset is using internal micbias\n[    3.958157] msm8952-asoc-wcd c051000.sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    3.958161] msm8952-asoc-wcd c051000.sound: snd_soc_register_card failed (-517)\n[    4.855462] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: cpu1 cpu4 \n               Offline CPUs: cpu1 \n[    4.883396] cpu2 \n[    4.934013] cpu3 \n[    4.984426] cpu4 \n[    5.045008] cpu5 \n[    5.094627] cpu6 \n[    5.144988] cpu7 \n[    5.193093] IRQ7 no longer affine to CPU7\n[    5.193100] IRQ8 no longer affine to CPU7\n\n[    5.601616] of_batterydata_get_best_profile: dhx batt_ids.kohm = 330\n[    5.601624] of_batterydata_get_best_profile: dhx batt_ids.kohm = 100\n[    5.601629] of_batterydata_get_best_profile: dhx batt_ids.kohm = 200\n[    5.601634] of_batterydata_get_best_profile: checknum = 0,best_id_kohm = 100, batt_id_kohm = 100,match = 1,id_range_pct = 10\n[    5.601639] of_batterydata_get_best_profile: GY-5000mah-100kohm found\n[    5.601648] QCOM-STEPCHG: read_range_data_from_node: Count qcom,step-chg-ranges failed, rc=-22\n[    5.601652] QCOM-STEPCHG: read_range_data_from_node: Count qcom,jeita-fcc-ranges failed, rc=-22\n[    5.601656] QCOM-STEPCHG: read_range_data_from_node: Count qcom,jeita-fv-ranges failed, rc=-22\n[    8.721589] aw87519_cfg_work_routine enter\n[    8.721595] aw87519_cfg_update enter\n[   10.202649] Sampling power every 250 ms\n               Baseline power usage: \n[   11.681640] PL_AWAKE: effective vote is now 0 voted by PL_VOTER,0\n[   15.201617] [NVT-ts] update_firmware_request 328: filename is novatek_ts_fw.bin\n[   67.636266] QG_WS: effective vote is now 1 voted by FIFO_DONE_VOTER,0\n[   69.601688] aw87519_speaker_cfg_loaded enter\n[   69.601695] aw87519_speaker_cfg_loaded: failed to read aw87519_spk.bin\n[   79.841710] [NVT-ts] update_firmware_request 345: firmware load failed, ret=-11\n[   79.841717] [NVT-ts] update_firmware_request 328: filename is novatek_ts_fw.bin\n[   85.513073] CPU1: Booted secondary processor [410fd034]\n[   86.518620] 1506 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 960 1305 1497 1708 1958 2016\n               \n                960: \n[  141.280386] [NVT-ts] update_firmware_request 345: firmware load failed, ret=-11\n[  141.280392] [NVT-ts] update_firmware_request 328: filename is novatek_ts_fw.bin\n[  175.315787]  3104     3.2 C/MHz     90 mW    7.2 J   34.5 I/mJ    80.5 s\n               1305: \n[  202.720349] [NVT-ts] update_firmware_request 345: firmware load failed, ret=-11\n[  202.720355] [NVT-ts] update_firmware_request 384: error, retry=3\n[  202.720359] [NVT-ts] nvt_update_firmware 921: update_firmware_request failed. (-11)\n[  242.458072]  4240     3.2 C/MHz    114 mW    6.7 J   37.1 I/mJ    59.0 s\n               1497: \n[  302.046651]  4863     3.2 C/MHz    161 mW    8.3 J   30.1 I/mJ    51.4 s\n               1708: \n[  355.346951]  5549     3.2 C/MHz    209 mW    9.4 J   26.6 I/mJ    45.1 s\n               1958: \n[  402.866308]  6355     3.2 C/MHz    263 mW   10.3 J   24.2 I/mJ    39.3 s\n               2016: \n[  449.416296] CPU4: Booted secondary processor [410fd034]\n[  450.422583]  6547     3.2 C/MHz    284 mW   10.9 J   23.0 I/mJ    38.2 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 768 998 1171 1305 1459\n               \n                768: \n[  559.077341]  2494     3.2 C/MHz     61 mW    6.1 J   40.9 I/mJ   100.3 s\n                998: \n[  644.808956]  3229     3.2 C/MHz     76 mW    5.9 J   42.7 I/mJ    77.4 s\n               1171: \n[  718.908736]  3803     3.2 C/MHz    108 mW    7.1 J   35.4 I/mJ    65.7 s\n               1305: \n[  763.922124] pmi632_charger: smblib_set_prop_system_temp_level: system_temp_level = 3, ibus =2000000\n[  786.210093]  4240     3.2 C/MHz    130 mW    7.6 J   32.7 I/mJ    59.0 s\n               1459: \n[  847.512890]  4730     3.2 C/MHz    170 mW    9.0 J   27.8 I/mJ    52.9 s\n               \n               \n               Benchmark finished!\n[  847.542602] \n               real\t14m3.508s\n               user\t11m11.247s\n               sys\t0m1.093s\n"
  },
  {
    "path": "results/sdm439/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  1:      16520     GIC-0 203 Edge      mpm\n  4:       1286   mpm-gic  20 Level     arch_timer\n  6:      86921   mpm-gic  39 Level     arch_mem_timer\n  9:          0   mpm-gic 264 Level     arm-smmu-context-fault\n 16:          0   mpm-gic  86 Level     arm-smmu-context-fault\n 17:          0   mpm-gic  90 Level     arm-smmu-context-fault\n 18:          0   mpm-gic  92 Level     arm-smmu-context-fault\n 29:          0   mpm-gic 138 Level     arm-smmu-context-fault\n 34:          0   mpm-gic 145 Level     arm-smmu-context-fault\n 44:          0   mpm-gic  59 Edge      smp2p\n 45:          0   mpm-gic 175 Edge      smp2p\n 46:          0   mpm-gic 323 Edge      smp2p\n 47:          0   mpm-gic  76 Level     msm_vidc\n 48:          0   mpm-gic  65 Level     kgsl-3d0\n 49:          0   mpm-gic 104 Edge      MDSS\n 51:          0   mpm-gic 216 Level     tsens-upper-lower\n 53:          0   mpm-gic 270 Level     sps\n 54:          0   mpm-gic 271 Level     sps\n 55:          8   mpm-gic 128 Level     i2c-msm-v2-irq\n 56:         58   mpm-gic 331 Level     i2c-msm-v2-irq\n 57:         29   mpm-gic 129 Level     78b7000.spi\n 58:          0   mpm-gic 332 Level     7af6000.spi\n 60:          0   mpm-gic  57 Edge      qcom,smd-modem\n 61:          0   mpm-gic  58 Edge      qcom,smsm-modem\n 62:          0   mpm-gic 174 Edge      qcom,smd-wcnss\n 63:          0   mpm-gic 176 Edge      qcom,smsm-wcnss\n 64:          0   mpm-gic 321 Edge      qcom,smd-adsp\n 65:          0   mpm-gic 322 Edge      qcom,smsm-adsp\n 66:        407   mpm-gic 200 Edge      qcom,smd-rpm\n 67:          0   mpm-gic 166 Edge      msm_otg, msm_hsusb\n 68:          0   mpm-gic 172 Edge      msm_otg\n 69:          0   mpm-gic  35 Edge      apps_wdog_bark\n 72:          0  pmic_arb 8388645 Edge      qpnp_kpdpwr_status\n 73:          0  pmic_arb 8454181 Edge      qpnp_resin_status\n 75:          0  pmic_arb 8716325 Edge      qpnp_kpdpwr_resin_bark\n 76:          0  pmic_arb 37748788 Edge      pm8953_tz\n 89:          0  pmic_arb 54722600 Edge      qpnp_adc_tm_high_interrupt\n 90:          0  pmic_arb 54788136 Edge      qpnp_adc_tm_low_interrupt\n105:       1648  pmic_arb 588251167 Edge      qpnp_vadc_interrupt\n106:         13  pmic_arb 592445473 Edge      qpnp_adc_tm_interrupt\n107:          0  pmic_arb 574619676 Edge      pmi632_tz\n116:          0  pmic_arb 600834063 Edge      bcl-vbat-lvl0\n117:          0  pmic_arb 600899599 Edge      bcl-vbat-lvl1\n118:          0  pmic_arb 600965135 Edge      bcl-vbat-lvl2\n119:          0  pmic_arb 1052835852 Edge      qpnp_lcdb_sc_irq\n120:          0  pmic_arb 1026555915 Edge      qpnp_flash_led_fault_irq\n121:          0  pmic_arb 1026752523 Edge      qpnp_flash_led_all_ramp_down_done_irq\n122:          0  pmic_arb 1026818059 Edge      qpnp_flash_led_all_ramp_up_done_irq\n123:          0   mpm-gic 344 Edge      7803000.sdcc1ice\n125:         12   mpm-gic 155 Edge      mmc0\n126:          1   mpm-gic 170 Edge      7824900.sdhci\n127:          1   mpm-gic 157 Edge      mmc1\n128:          1   mpm-gic 253 Edge      7864900.sdhci\n129:          0   mpm-gic 239 Level     sps\n130:          0   mpm-gic  56 Edge      modem\n131:          0   mpm-gic 325 Edge      adsp\n132:          0   mpm-gic 181 Edge      wcnss\n136:       2059   mpm-gic  47 Edge      cpr\n137:          0   mpm-gic 110 Edge      csiphy\n138:          0   mpm-gic 111 Edge      csiphy\n139:          0   mpm-gic  83 Edge      csid\n140:          0   mpm-gic  84 Edge      csid\n141:          0   mpm-gic 185 Edge      csid\n142:          0   mpm-gic  87 Edge      ispif\n143:          0   mpm-gic  89 Edge      vfe\n144:          0   mpm-gic  61 Edge      vfe\n147:       2864   mpm-gic  82 Edge      cci\n280:          0   msmgpio  65 Edge      NVT-ts\n281:          0   msmgpio 126 Edge      sar\n282:          0  pmic_arb 101777422 Edge      qpnp_rtc_alarm\n283:          0  pmic_arb 553648147 Edge      chgr-error\n284:          0  pmic_arb 553713683 Edge      chg-state-change\n291:          0  pmic_arb 554696724 Edge      otg-fail\n295:          0  pmic_arb 554958868 Edge      high-duty-cycle\n296:          0  pmic_arb 555024404 Edge      input-current-limiting\n298:          0  pmic_arb 555155476 Edge      switcher-power-ok\n299:          0  pmic_arb 555745301 Edge      bat-temp\n301:          0  pmic_arb 555876373 Edge      bat-ov\n302:          0  pmic_arb 555941909 Edge      bat-low\n303:          0  pmic_arb 556007445 Edge      bat-therm-or-id-missing\n304:          0  pmic_arb 556072981 Edge      bat-terminal-missing\n307:          0  pmic_arb 556793878 Edge      usbin-collapse\n308:          0  pmic_arb 556859414 Edge      usbin-vashdn\n309:          0  pmic_arb 556924950 Edge      usbin-uv\n310:          0  pmic_arb 556990486 Edge      usbin-ov\n311:          0  pmic_arb 557056022 Edge      usbin-plugin\n313:          0  pmic_arb 557187094 Edge      usbin-src-change\n314:          0  pmic_arb 557252630 Edge      usbin-icl-change\n315:          0  pmic_arb 558891031 Edge      typec-or-rid-detect-change\n317:          0  pmic_arb 559022103 Edge      typec-cc-state-change\n318:          0  pmic_arb 559087639 Edge      typec-vconn-oc\n320:          0  pmic_arb 559218711 Edge      typec-attach-detach\n321:          0  pmic_arb 559284247 Edge      typec-legacy-cable-detect\n324:          0  pmic_arb 560005121 Edge      wdog-bark\n326:          0  pmic_arb 560136193 Edge      aicl-done\n331:          0  pmic_arb 711065626 Edge      flash-state-change\n333:          0  pmic_arb 711327770 Edge      ilim2-s2\n335:          0   msmgpio  67 Edge      7864900.sdhci cd\n336:          0  smp2p_gpio   0 Edge      modem\n337:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n338:          0  smp2p_gpio   2 Edge      modem\n339:          0  smp2p_gpio   3 Edge      modem\n368:          0  smp2p_gpio   0 Edge      adsp\n369:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n370:          0  smp2p_gpio   2 Edge      adsp\n371:          0  smp2p_gpio   3 Edge      adsp\n400:          0  smp2p_gpio   0 Edge      wcnss\n401:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n402:          0  smp2p_gpio   2 Edge      wcnss\n403:          0  smp2p_gpio   3 Edge      wcnss\n433:          0  pmic_arb 612433961 Edge      qg-vbat-low\n434:          0  pmic_arb 612499497 Edge      qg-vbat-empty\n435:         13  pmic_arb 612565033 Edge      qg-fifo-done\n436:          0  pmic_arb 612630569 Edge      qg-good-ocv\n437:          0   msmgpio 128 Edge      camera_focus\n438:          0   msmgpio 127 Edge      camera_snapshot\n439:          0   msmgpio  91 Edge      volume_up\nIPI0:       337       Rescheduling interrupts\nIPI1:        13       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       Timer broadcast interrupts\nIPI4:     42065       IRQ work interrupts\nIPI5:         0       CPU wake-up interrupts\nIPI6:         0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm439/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  1:          0          0          0          0          0          0          0          0     GIC-0 203 Edge      mpm\n  4:        727          1          1          1          5          1          1          1   mpm-gic  20 Level     arch_timer\n  6:          8          0          0          0          0          0          0          0   mpm-gic  39 Level     arch_mem_timer\n  9:          0          0          0          0          0          0          0          0   mpm-gic 264 Level     arm-smmu-context-fault\n 16:          0          0          0          0          0          0          0          0   mpm-gic  86 Level     arm-smmu-context-fault\n 17:          0          0          0          0          0          0          0          0   mpm-gic  90 Level     arm-smmu-context-fault\n 18:          0          0          0          0          0          0          0          0   mpm-gic  92 Level     arm-smmu-context-fault\n 29:          0          0          0          0          0          0          0          0   mpm-gic 138 Level     arm-smmu-context-fault\n 34:          0          0          0          0          0          0          0          0   mpm-gic 145 Level     arm-smmu-context-fault\n 44:          0          0          0          0          0          0          0          0   mpm-gic  59 Edge      smp2p\n 45:          0          0          0          0          0          0          0          0   mpm-gic 175 Edge      smp2p\n 46:          0          0          0          0          0          0          0          0   mpm-gic 323 Edge      smp2p\n 47:          0          0          0          0          0          0          0          0   mpm-gic  76 Level     msm_vidc\n 48:          0          0          0          0          0          0          0          0   mpm-gic  65 Level     kgsl-3d0\n 49:          0          0          0          0          0          0          0          0   mpm-gic 104 Edge      MDSS\n 51:          0          0          0          0          0          0          0          0   mpm-gic 216 Level     tsens-upper-lower\n 53:          0          0          0          0          0          0          0          0   mpm-gic 270 Level     sps\n 54:          0          0          0          0          0          0          0          0   mpm-gic 271 Level     sps\n 55:          8          0          0          0          3          0          0          0   mpm-gic 128 Level     i2c-msm-v2-irq\n 56:         58          0          0          0          0          0          0          0   mpm-gic 331 Level     i2c-msm-v2-irq\n 57:         29          0          0          0          0          0          0          0   mpm-gic 129 Level     78b7000.spi\n 58:          0          0          0          0          0          0          0          0   mpm-gic 332 Level     7af6000.spi\n 60:          0          0          0          0          0          0          0          0   mpm-gic  57 Edge      qcom,smd-modem\n 61:          0          0          0          0          0          0          0          0   mpm-gic  58 Edge      qcom,smsm-modem\n 62:          0          0          0          0          0          0          0          0   mpm-gic 174 Edge      qcom,smd-wcnss\n 63:          0          0          0          0          0          0          0          0   mpm-gic 176 Edge      qcom,smsm-wcnss\n 64:          0          0          0          0          0          0          0          0   mpm-gic 321 Edge      qcom,smd-adsp\n 65:          0          0          0          0          0          0          0          0   mpm-gic 322 Edge      qcom,smsm-adsp\n 66:        337          0          0          0        167          0          0          0   mpm-gic 200 Edge      qcom,smd-rpm\n 67:          0          0          0          0          0          0          0          0   mpm-gic 166 Edge      msm_otg, msm_hsusb\n 68:          0          0          0          0          0          0          0          0   mpm-gic 172 Edge      msm_otg\n 69:          0          0          0          0          0          0          0          0   mpm-gic  35 Edge      apps_wdog_bark\n 72:          0          0          0          0          0          0          0          0  pmic_arb 8388645 Edge      qpnp_kpdpwr_status\n 73:          0          0          0          0          0          0          0          0  pmic_arb 8454181 Edge      qpnp_resin_status\n 75:          0          0          0          0          0          0          0          0  pmic_arb 8716325 Edge      qpnp_kpdpwr_resin_bark\n 76:          0          0          0          0          0          0          0          0  pmic_arb 37748788 Edge      pm8953_tz\n 89:          0          0          0          0          0          0          0          0  pmic_arb 54722600 Edge      qpnp_adc_tm_high_interrupt\n 90:          0          0          0          0          0          0          0          0  pmic_arb 54788136 Edge      qpnp_adc_tm_low_interrupt\n105:          0          0          0          0         11          0          0          0  pmic_arb 588251167 Edge      qpnp_vadc_interrupt\n106:          0          0          0          0          0          0          0          0  pmic_arb 592445473 Edge      qpnp_adc_tm_interrupt\n107:          0          0          0          0          0          0          0          0  pmic_arb 574619676 Edge      pmi632_tz\n116:          0          0          0          0          0          0          0          0  pmic_arb 600834063 Edge      bcl-vbat-lvl0\n117:          0          0          0          0          0          0          0          0  pmic_arb 600899599 Edge      bcl-vbat-lvl1\n118:          0          0          0          0          0          0          0          0  pmic_arb 600965135 Edge      bcl-vbat-lvl2\n119:          0          0          0          0          0          0          0          0  pmic_arb 1052835852 Edge      qpnp_lcdb_sc_irq\n120:          0          0          0          0          0          0          0          0  pmic_arb 1026555915 Edge      qpnp_flash_led_fault_irq\n121:          0          0          0          0          0          0          0          0  pmic_arb 1026752523 Edge      qpnp_flash_led_all_ramp_down_done_irq\n122:          0          0          0          0          0          0          0          0  pmic_arb 1026818059 Edge      qpnp_flash_led_all_ramp_up_done_irq\n123:          0          0          0          0          0          0          0          0   mpm-gic 344 Edge      7803000.sdcc1ice\n125:          0          0          0          0         69          0          0          0   mpm-gic 155 Edge      mmc0\n126:          0          0          0          0          2          0          0          0   mpm-gic 170 Edge      7824900.sdhci\n127:          0          0          0          0         82          0          0          0   mpm-gic 157 Edge      mmc1\n128:          0          0          0          0          2          0          0          0   mpm-gic 253 Edge      7864900.sdhci\n129:          0          0          0          0          0          0          0          0   mpm-gic 239 Level     sps\n130:          0          0          0          0          0          0          0          0   mpm-gic  56 Edge      modem\n131:          0          0          0          0          0          0          0          0   mpm-gic 325 Edge      adsp\n132:          0          0          0          0          0          0          0          0   mpm-gic 181 Edge      wcnss\n136:          5          0          0          0          0          0          0          0   mpm-gic  47 Edge      cpr\n137:          0          0          0          0          0          0          0          0   mpm-gic 110 Edge      csiphy\n138:          0          0          0          0          0          0          0          0   mpm-gic 111 Edge      csiphy\n139:          0          0          0          0          0          0          0          0   mpm-gic  83 Edge      csid\n140:          0          0          0          0          0          0          0          0   mpm-gic  84 Edge      csid\n141:          0          0          0          0          0          0          0          0   mpm-gic 185 Edge      csid\n142:          0          0          0          0          0          0          0          0   mpm-gic  87 Edge      ispif\n143:          0          0          0          0          0          0          0          0   mpm-gic  89 Edge      vfe\n144:          0          0          0          0          0          0          0          0   mpm-gic  61 Edge      vfe\n147:       2864          0          0          0          0          0          0          0   mpm-gic  82 Edge      cci\n280:          0          0          0          0          0          0          0          0   msmgpio  65 Edge      NVT-ts\n281:          0          0          0          0          0          0          0          0   msmgpio 126 Edge      sar\n282:          0          0          0          0          0          0          0          0  pmic_arb 101777422 Edge      qpnp_rtc_alarm\n283:          0          0          0          0          0          0          0          0  pmic_arb 553648147 Edge      chgr-error\n284:          0          0          0          0          0          0          0          0  pmic_arb 553713683 Edge      chg-state-change\n291:          0          0          0          0          0          0          0          0  pmic_arb 554696724 Edge      otg-fail\n295:          0          0          0          0          0          0          0          0  pmic_arb 554958868 Edge      high-duty-cycle\n296:          0          0          0          0          0          0          0          0  pmic_arb 555024404 Edge      input-current-limiting\n298:          0          0          0          0          0          0          0          0  pmic_arb 555155476 Edge      switcher-power-ok\n299:          0          0          0          0          0          0          0          0  pmic_arb 555745301 Edge      bat-temp\n301:          0          0          0          0          0          0          0          0  pmic_arb 555876373 Edge      bat-ov\n302:          0          0          0          0          0          0          0          0  pmic_arb 555941909 Edge      bat-low\n303:          0          0          0          0          0          0          0          0  pmic_arb 556007445 Edge      bat-therm-or-id-missing\n304:          0          0          0          0          0          0          0          0  pmic_arb 556072981 Edge      bat-terminal-missing\n307:          0          0          0          0          0          0          0          0  pmic_arb 556793878 Edge      usbin-collapse\n308:          0          0          0          0          0          0          0          0  pmic_arb 556859414 Edge      usbin-vashdn\n309:          0          0          0          0          0          0          0          0  pmic_arb 556924950 Edge      usbin-uv\n310:          0          0          0          0          0          0          0          0  pmic_arb 556990486 Edge      usbin-ov\n311:          0          0          0          0          0          0          0          0  pmic_arb 557056022 Edge      usbin-plugin\n313:          0          0          0          0          0          0          0          0  pmic_arb 557187094 Edge      usbin-src-change\n314:          0          0          0          0          0          0          0          0  pmic_arb 557252630 Edge      usbin-icl-change\n315:          0          0          0          0          0          0          0          0  pmic_arb 558891031 Edge      typec-or-rid-detect-change\n317:          0          0          0          0          0          0          0          0  pmic_arb 559022103 Edge      typec-cc-state-change\n318:          0          0          0          0          0          0          0          0  pmic_arb 559087639 Edge      typec-vconn-oc\n320:          0          0          0          0          0          0          0          0  pmic_arb 559218711 Edge      typec-attach-detach\n321:          0          0          0          0          0          0          0          0  pmic_arb 559284247 Edge      typec-legacy-cable-detect\n324:          0          0          0          0          0          0          0          0  pmic_arb 560005121 Edge      wdog-bark\n326:          0          0          0          0          0          0          0          0  pmic_arb 560136193 Edge      aicl-done\n331:          0          0          0          0          0          0          0          0  pmic_arb 711065626 Edge      flash-state-change\n333:          0          0          0          0          0          0          0          0  pmic_arb 711327770 Edge      ilim2-s2\n335:          0          0          0          0          0          0          0          0   msmgpio  67 Edge      7864900.sdhci cd\n336:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      modem\n337:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n338:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      modem\n339:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      modem\n368:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      adsp\n369:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n370:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      adsp\n371:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      adsp\n400:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      wcnss\n401:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n402:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      wcnss\n403:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      wcnss\n433:          0          0          0          0          0          0          0          0  pmic_arb 612433961 Edge      qg-vbat-low\n434:          0          0          0          0          0          0          0          0  pmic_arb 612499497 Edge      qg-vbat-empty\n435:          0          0          0          0          0          0          0          0  pmic_arb 612565033 Edge      qg-fifo-done\n436:          0          0          0          0          0          0          0          0  pmic_arb 612630569 Edge      qg-good-ocv\n437:          0          0          0          0          0          0          0          0   msmgpio 128 Edge      camera_focus\n438:          0          0          0          0          0          0          0          0   msmgpio 127 Edge      camera_snapshot\n439:          0          0          0          0          0          0          0          0   msmgpio  91 Edge      volume_up\nIPI0:       247         16         16         16         19         20         14         14       Rescheduling interrupts\nIPI1:         0         10         10         10         12          7          6          7       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI4:       212          7          7          7         17          4          4          4       IRQ work interrupts\nIPI5:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm439/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    5 root      0:00 [kworker/u16:0]\n    6 root      0:00 [ksoftirqd/0]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [lru-add-drain]\n   15 root      0:00 [cpuhp/0]\n   16 root      0:00 [cpuhp/1]\n   17 root      0:00 [migration/1]\n   18 root      0:00 [ksoftirqd/1]\n   19 root      0:00 [kworker/1:0]\n   20 root      0:00 [kworker/1:0H]\n   21 root      0:00 [rcuop/1]\n   22 root      0:00 [rcuos/1]\n   23 root      0:00 [rcuob/1]\n   24 root      0:00 [cpuhp/2]\n   25 root      0:00 [migration/2]\n   26 root      0:00 [ksoftirqd/2]\n   27 root      0:00 [kworker/2:0]\n   28 root      0:00 [kworker/2:0H]\n   29 root      0:00 [rcuop/2]\n   30 root      0:00 [rcuos/2]\n   31 root      0:00 [rcuob/2]\n   32 root      0:00 [cpuhp/3]\n   33 root      0:00 [migration/3]\n   34 root      0:00 [ksoftirqd/3]\n   35 root      0:00 [kworker/3:0]\n   36 root      0:00 [kworker/3:0H]\n   37 root      0:00 [rcuop/3]\n   38 root      0:00 [rcuos/3]\n   39 root      0:00 [rcuob/3]\n   40 root      0:00 [cpuhp/4]\n   41 root      0:00 [migration/4]\n   42 root      0:00 [ksoftirqd/4]\n   43 root      0:00 [kworker/4:0]\n   44 root      0:00 [kworker/4:0H]\n   45 root      0:00 [rcuop/4]\n   46 root      0:00 [rcuos/4]\n   47 root      0:00 [rcuob/4]\n   48 root      0:00 [cpuhp/5]\n   49 root      0:00 [migration/5]\n   50 root      0:00 [ksoftirqd/5]\n   51 root      0:00 [kworker/5:0]\n   52 root      0:00 [kworker/5:0H]\n   53 root      0:00 [rcuop/5]\n   54 root      0:00 [rcuos/5]\n   55 root      0:00 [rcuob/5]\n   56 root      0:00 [cpuhp/6]\n   57 root      0:00 [migration/6]\n   58 root      0:00 [ksoftirqd/6]\n   59 root      0:00 [kworker/6:0]\n   60 root      0:00 [kworker/6:0H]\n   61 root      0:00 [rcuop/6]\n   62 root      0:00 [rcuos/6]\n   63 root      0:00 [rcuob/6]\n   64 root      0:00 [cpuhp/7]\n   65 root      0:00 [migration/7]\n   66 root      0:00 [ksoftirqd/7]\n   67 root      0:00 [kworker/7:0]\n   68 root      0:00 [kworker/7:0H]\n   69 root      0:00 [rcuop/7]\n   70 root      0:00 [rcuos/7]\n   71 root      0:00 [rcuob/7]\n   72 root      0:00 [netns]\n   74 root      0:00 [smd_channel_clo]\n   75 root      0:00 [kworker/u17:0]\n   77 root      0:00 [smsm_cb_wq]\n   78 root      0:00 [msm_watchdog]\n   79 root      0:00 [oom_reaper]\n   80 root      0:00 [writeback]\n   81 root      0:00 [kcompactd0]\n   82 root      0:00 [crypto]\n   83 root      0:00 [bioset]\n   84 root      0:00 [kblockd]\n   85 root      0:00 [irq/51-tsens-up]\n   86 root      0:00 [edac-poller]\n   87 root      0:00 [system]\n   88 root      0:00 [devfreq_wq]\n   89 root      0:00 [governor_msm_ad]\n   90 root      0:00 [cfg80211]\n   91 root      0:00 [irq/119-qpnp_lc]\n   93 root      0:00 [irq/136-cpr]\n   94 root      0:00 [kworker/0:3]\n  119 root      0:00 [kswapd0]\n  120 root      0:00 [vmstat]\n  157 root      0:00 [rot_workq_0]\n  158 root      0:00 [mdss_dsi_event]\n  159 root      0:00 [mdss_dsi_dba]\n  160 root      0:00 [mem_share_svc]\n  161 root      0:00 [hwrng]\n  162 root      0:00 [qmi_hndl0000000]\n  164 root      0:00 [diag_real_time_]\n  165 root      0:00 [msm_ipc_router]\n  166 root      0:00 [diag_wq]\n  168 root      0:00 [DIAG_USB_diag]\n  169 root      0:00 [diag_cntl_wq]\n  170 root      0:00 [diag_dci_wq]\n  171 root      0:00 [DIAG_SMD_MODEM_]\n  172 root      0:00 [DIAG_SMD_MODEM_]\n  173 root      0:00 [DIAG_SMD_MODEM_]\n  174 root      0:00 [DIAG_SMD_MODEM_]\n  175 root      0:00 [DIAG_SMD_MODEM_]\n  176 root      0:00 [DIAG_SMD_LPASS_]\n  177 root      0:00 [DIAG_SMD_LPASS_]\n  178 root      0:00 [DIAG_SMD_LPASS_]\n  179 root      0:00 [DIAG_SMD_LPASS_]\n  180 root      0:00 [DIAG_SMD_LPASS_]\n  181 root      0:00 [DIAG_SMD_WCNSS_]\n  182 root      0:00 [DIAG_SMD_WCNSS_]\n  183 root      0:00 [DIAG_SMD_WCNSS_]\n  184 root      0:00 [DIAG_SMD_WCNSS_]\n  185 root      0:00 [DIAG_SMD_WCNSS_]\n  186 root      0:00 [DIAG_SMD_SENSOR]\n  187 root      0:00 [DIAG_SMD_SENSOR]\n  188 root      0:00 [DIAG_SMD_SENSOR]\n  189 root      0:00 [DIAG_SMD_SENSOR]\n  190 root      0:00 [DIAG_SMD_SENSOR]\n  191 root      0:00 [DIAG_SMD_CDSP_C]\n  192 root      0:00 [DIAG_SMD_CDSP_D]\n  193 root      0:00 [DIAG_SMD_CDSP_C]\n  194 root      0:00 [DIAG_SMD_CDSP_D]\n  195 root      0:00 [DIAG_SMD_CDSP_D]\n  196 root      0:00 [MODEM_CNTL]\n  197 root      0:00 [MODEM_DATA]\n  198 root      0:00 [MODEM_CMD]\n  199 root      0:00 [MODEM_DCI]\n  200 root      0:00 [MODEM_DCI_CMD]\n  201 root      0:00 [LPASS_CNTL]\n  202 root      0:00 [LPASS_DATA]\n  203 root      0:00 [LPASS_CMD]\n  204 root      0:00 [LPASS_DCI]\n  205 root      0:00 [LPASS_DCI_CMD]\n  206 root      0:00 [WCNSS_CNTL]\n  207 root      0:00 [WCNSS_DATA]\n  208 root      0:00 [WCNSS_CMD]\n  209 root      0:00 [WCNSS_DCI]\n  210 root      0:00 [WCNSS_DCI_CMD]\n  211 root      0:00 [SENSORS_CNTL]\n  212 root      0:00 [SENSORS_DATA]\n  213 root      0:00 [SENSORS_CMD]\n  214 root      0:00 [SENSORS_DCI]\n  215 root      0:00 [SENSORS_DCI_CMD]\n  216 root      0:00 [DIAG_CTRL]\n  217 root      0:00 [DIAG_DATA]\n  218 root      0:00 [DIAG_CMD]\n  219 root      0:00 [DIAG_DCI_DATA]\n  220 root      0:00 [DIAG_DCI_CMD]\n  221 root      0:00 [CDSP_CNTL]\n  222 root      0:00 [CDSP_DATA]\n  223 root      0:00 [CDSP_CMD]\n  224 root      0:00 [CDSP_DCI]\n  225 root      0:00 [CDSP_DCI_CMD]\n  226 root      0:00 [DIAG_CNTL_SOCKE]\n  232 root      0:00 [kgsl-workqueue]\n  233 root      0:00 [kgsl-mementry]\n  234 root      0:00 [kgsl_worker_thr]\n  235 root      0:00 [irq/9-arm-smmu-]\n  236 root      0:00 [kgsl-events]\n  237 root      0:00 [kgsl_devfreq_wq]\n  238 root      0:00 [bioset]\n  239 root      0:00 [bioset]\n  240 root      0:00 [bioset]\n  241 root      0:00 [bioset]\n  242 root      0:00 [bioset]\n  243 root      0:00 [bioset]\n  244 root      0:00 [bioset]\n  245 root      0:00 [bioset]\n  246 root      0:00 [bioset]\n  247 root      0:00 [bioset]\n  248 root      0:00 [bioset]\n  249 root      0:00 [bioset]\n  250 root      0:00 [bioset]\n  251 root      0:00 [bioset]\n  252 root      0:00 [bioset]\n  253 root      0:00 [bioset]\n  254 root      0:00 [bioset]\n  255 root      0:00 [bioset]\n  256 root      0:00 [bioset]\n  257 root      0:00 [bioset]\n  258 root      0:00 [bioset]\n  259 root      0:00 [bioset]\n  260 root      0:00 [bioset]\n  261 root      0:00 [bioset]\n  262 root      0:00 [bioset]\n  263 root      0:00 [bioset]\n  264 root      0:00 [bioset]\n  265 root      0:00 [bioset]\n  266 root      0:00 [bioset]\n  267 root      0:00 [bioset]\n  268 root      0:00 [bioset]\n  269 root      0:00 [bioset]\n  270 root      0:00 [bioset]\n  271 root      0:00 [qseecom-unreg-l]\n  272 root      0:00 [qseecom-unload-]\n  273 root      0:00 [qcrypto_seq_res]\n  294 root      0:00 [spi3]\n  295 root      0:00 [spi6]\n  296 root      0:00 [sharedmem_qmi_w]\n  297 root      0:00 [qmi_hndl0000000]\n  298 root      0:00 [uether]\n  299 root      0:00 [kworker/u16:2]\n  300 root      0:00 [esd_check]\n  301 root      0:00 [bat_check]\n  302 root      0:00 [irq/280-NVT-ts]\n  303 root      0:00 [nvt_fwu_wq]\n  305 root      0:00 [msm_vidc_worker]\n  306 root      0:00 [pm_workerq_venu]\n  307 root      0:00 [irq/34-arm-smmu]\n  308 root      0:00 [irq/17-arm-smmu]\n  309 root      0:00 [irq/18-arm-smmu]\n  310 root      0:00 [irq/16-arm-smmu]\n  311 root      0:00 [msm_cci_wq]\n  312 root      0:00 [msm_cci_wq]\n  313 root      0:00 [msm_cpp_workque]\n  314 root      0:00 [irq/283-chgr-er]\n  315 root      0:00 [irq/284-chg-sta]\n  316 root      0:00 [irq/291-otg-fai]\n  317 root      0:00 [irq/295-high-du]\n  318 root      0:00 [irq/296-input-c]\n  319 root      0:00 [irq/298-switche]\n  320 root      0:00 [irq/299-bat-tem]\n  322 root      0:00 [irq/301-bat-ov]\n  323 root      0:00 [irq/302-bat-low]\n  324 root      0:00 [irq/303-bat-the]\n  325 root      0:00 [irq/304-bat-ter]\n  326 root      0:00 [irq/307-usbin-c]\n  327 root      0:00 [irq/308-usbin-v]\n  328 root      0:00 [irq/309-usbin-u]\n  329 root      0:00 [irq/310-usbin-o]\n  330 root      0:00 [irq/311-usbin-p]\n  332 root      0:00 [irq/313-usbin-s]\n  333 root      0:00 [irq/314-usbin-i]\n  334 root      0:00 [irq/315-typec-o]\n  335 root      0:00 [irq/317-typec-c]\n  336 root      0:00 [irq/318-typec-v]\n  337 root      0:00 [irq/320-typec-a]\n  338 root      0:00 [irq/321-typec-l]\n  339 root      0:00 [irq/324-wdog-ba]\n  340 root      0:00 [irq/326-aicl-do]\n  341 root      0:00 [irq/331-flash-s]\n  342 root      0:00 [irq/333-ilim2-s]\n  343 root      0:00 [qmi_tmd_wq]\n  344 root      0:00 [qmi_svc_event_w]\n  345 root      0:00 [irq/116-bcl-vba]\n  346 root      0:00 [irq/117-bcl-vba]\n  347 root      0:00 [irq/118-bcl-vba]\n  348 root      0:00 [kworker/1:1]\n  349 root      0:00 [kworker/2:1]\n  350 root      0:00 [kworker/3:1]\n  352 root      0:00 [dm_bufio_cache]\n  353 root      0:00 [mmc_clk_gate/mm]\n  354 root      0:00 [irq/126-7824900]\n  355 root      0:00 [irq/125-mmc0]\n  356 root      0:00 [kworker/u17:1]\n  358 root      0:00 [bioset]\n  359 root      0:00 [sdhci_msm_pm_qo]\n  360 root      0:00 [mmc-cmdqd/0]\n  361 root      0:00 [bioset]\n  362 root      0:00 [mmcqd/0rpmb]\n  363 root      0:00 [mmc_clk_gate/mm]\n  364 root      0:00 [irq/128-7864900]\n  365 root      0:00 [irq/127-mmc1]\n  366 root      0:00 [irq/335-7864900]\n  367 root      0:00 [apr_driver]\n  368 root      0:00 [ipv6_addrconf]\n  369 root      0:00 [irq/370-adsp]\n  370 root      0:00 [sysmon_wq]\n  371 root      0:00 [irq/402-wcnss]\n  372 root      0:00 [irq/338-modem]\n  373 root      0:00 [irq/433-qg-vbat]\n  374 root      0:00 [irq/434-qg-vbat]\n  375 root      0:00 [irq/435-qg-fifo]\n  376 root      0:00 [irq/436-qg-good]\n  377 root      0:00 [core_ctl/0]\n  378 root      0:00 [core_ctl/4]\n  383 root      0:00 [rq_stats]\n  384 root      0:00 [bam_dmux_rx]\n  385 root      0:00 [bam_dmux_tx]\n  386 root      0:00 [irq/29-arm-smmu]\n  387 root      0:00 [irq/122-qpnp_fl]\n  388 root      0:00 [irq/121-qpnp_fl]\n  389 root      0:00 [irq/120-qpnp_fl]\n  395 root      0:00 [usb_bam_wq]\n  396 root      0:00 [bioset]\n  397 root      0:00 [sdhci_msm_pm_qo]\n  398 root      0:00 [mmcqd/1]\n  405 root      0:00 [kworker/4:2]\n  406 root      0:00 [kworker/5:2]\n  408 root      0:00 [kworker/6:2]\n  409 root      0:00 [kworker/7:1]\n  410 root      0:00 [kworker/0:1H]\n  415 root      0:00 [kworker/0:2H]\n  428 root      0:00 [kworker/0:1]\n  441 root      0:00 [kworker/0:0]\n  491 root      0:00 ps -A\n"
  },
  {
    "path": "results/sdm439/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,960000,3104.471681,3.2338246677083333,89.85719861774989,7.236846120695363,34.54543537758385,80.53718825\r\n1,1305600,4239.731371,3.2473432682291667,114.2018432730554,6.73460015669192,37.12172871192425,58.97102852\r\n1,1497600,4863.245536,3.247359465811966,161.39578698730378,8.297562807106056,30.1293290345328,51.411272636\r\n1,1708800,5549.266387,3.2474639437031834,208.72479008959203,9.40430616064538,26.58356669056418,45.05600967\r\n1,1958400,6354.532052,3.2447569709967317,262.5989406186473,10.332297842194864,24.195973036999984,39.34630436\r\n1,2016000,6546.902006,3.2474712331349207,284.2798800118288,10.8566781964047,23.02730130499678,38.190104048\r\n4,768000,2493.914848,3.247284958333333,60.93459864591943,6.1088418622758835,40.9242873913356,100.252434545\r\n4,998400,3229.056341,3.2342311107772437,75.56135572913341,5.850659557364874,42.730225122276565,77.429256012\r\n4,1171200,3803.322583,3.247372424009563,107.5474748373255,7.070054253667127,35.360407576834206,65.738914506\r\n4,1305600,4239.731371,3.2473432682291667,129.71670824895287,7.649773028264278,32.68070818262233,58.972919769\r\n4,1459200,4729.563556,3.241203094846491,169.88875431007605,8.981313920713701,27.835570853772555,52.865853053\r\n"
  },
  {
    "path": "results/sdm439/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 842.6458622829523, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1517.6876323459999, 1520.314740519, 1525.15834416, 1516.8296510399998, 1516.679649275, 1509.851458125, 1513.907510585, 1514.9069991000001, 1511.774199375, 1513.13554092, 1522.600334866, 1523.1652985439998, 1518.682116496, 1510.49377125, 1514.2689137400002, 1521.884989064, 1517.538225, 1519.821210486, 1521.320500271, 1523.023785484, 1528.1445476039999, 1509.073498792, 1506.8012317179998, 1515.4845212, 1506.8712443230002, 1514.2047460800002, 1515.268406496, 1525.513654528, 1521.3908347769996, 1519.038222666, 1514.1285944380002, 1519.680357087, 1515.8359444750004, 1516.126506752, 1514.6358942, 1525.160004056, 1515.057569064, 1509.291484632, 1515.057569064, 1514.4855029399998, 1505.8799138240001, 1516.2670633439998, 1514.3546572830003, 1527.6486788160003, 1519.398650289, 1514.9171311170003, 1513.13554092, 1518.6860569920002, 1509.58347219, 1511.3645533000001, 1523.5972685999998, 1518.8268508739998, 1527.0108892480002, 1522.600334866, 1514.0643676500001, 1510.6528261770004, 1517.4849666219998, 1508.731511139, 1518.192735498, 1523.243914893, 1521.1791061609997, 1512.7144009999997, 1514.0643676500001, 1515.98595016, 1518.40410729, 1517.0544129630002, 1508.0312745360002, 1522.3901720579997, 1527.4360596, 1518.333891318, 1511.22441216, 1518.764266857, 1513.85361957, 1516.772700856, 1521.8234644519998, 1514.6408164000002, 1516.4913503819998, 1519.9728998720002, 1513.6428714899998, 1513.7128802700001, 1517.0544129630002, 1512.433520865, 1515.4233624639999, 1520.8263459839998, 1515.634016688, 1517.124569765, 1517.76643613, 1516.553192, 1514.425056768, 1513.7128802700001, 1513.29174498, 1517.8481766270002, 1525.519139312, 1516.913376093, 1512.29326108, 1519.9728998720002, 1518.192735498, 1512.8649992839999, 1518.051941616, 1523.81555072, 1525.8066713500002, 1524.452339648, 1509.6649482899998, 1513.005318586, 1511.731861375, 1515.3529035039999, 1511.731861375, 1516.2801567099998, 1523.7450387039999, 1526.9401908119999, 1523.6026421760002, 1509.5245658400002, 1517.3442318679997, 1517.132948844, 1516.4913503819998, 1518.485344971, 1524.9527509790003, 1520.191160136, 1512.5136599520004], \"power_mean\": 1517.0176233504706, \"energy_millijoules\": 7585.088116752353, \"energy_joules\": 7.585088116752353}, \"cpus\": {\"1\": {\"freqs\": {\"960000\": {\"active\": {\"elapsed_sec\": 80.53718825, \"elapsed_ns\": 80537188250, \"power_samples\": [85.15371204999974, 83.23846023899978, 93.58973695099962, 81.09784327299985, 86.77744009599996, 91.25251495600014, 86.85117871999978, 92.3863074960002, 91.17818797599966, 85.72124381499998, 93.02315040799999, 88.12923211499992, 92.757477806, 92.94873411799972, 93.02315040799999, 90.39310190799984, 80.38327882599992, 91.89360714100007, 84.6366450939995, 82.86951712599989, 96.14536916099973, 83.5063895259998, 86.55546403199969, 92.94873411799972, 88.62231847599969, 84.8583536860001, 84.29507192999995, 85.42538662599986, 89.41147584899977, 96.14536916099973, 85.3517071719998, 85.49944587100003, 93.81269355099994, 87.75910194199992, 90.73298842399981, 90.88164238399963, 86.55546403199969, 85.84456167999974, 87.19646686499982, 85.20358868199992, 85.05584998299969, 99.26729034399978, 86.40760668799976, 85.77085254399981, 93.66418307599997, 85.77085254399981, 87.19646686499982, 89.82636658000001, 89.67783156999963, 87.68530414799966, 90.88164238399963, 92.3119208459998, 82.50057401299978, 87.75910194199992, 86.40760668799976, 90.02237723199983, 89.9480798919999, 89.04104793799979, 88.8929529149998, 88.32624746399961, 86.900252894, 97.1250697559999, 91.52258569999981, 86.55546403199969, 88.10400392799966, 92.16352901599976, 89.04104793799979, 88.54849100000001, 89.4554099139998, 92.80028315999971, 87.34438372599993, 93.70598372200016, 85.54896524799983, 86.33348796799987, 93.44122647599966, 90.51038864799989, 82.84179811000013, 97.98953371399989, 88.81871504999981, 90.73298842399981, 92.23753419599984, 93.36678035099976, 92.01475571600008, 91.7919772360001, 95.2066076000001, 87.75910194199992, 90.88164238399963, 92.80028315999971, 88.59638216199983, 90.73298842399981, 84.11919850000004, 85.54896524799983, 90.73298842399981, 91.52258569999981, 83.77821199799973, 87.38897176899991, 90.92887513099981, 86.03739318399994, 90.73298842399981, 92.50299962199983, 89.87378255199997, 91.22553975699975, 91.940750536, 86.82648458799986, 92.65145058000007, 90.36211585199999, 88.10400392799966, 91.22553975699975, 82.98973797999975, 82.84179811000013, 89.23298825799975, 87.46314996399997, 87.31479357400008, 84.7599927939998, 91.29989657199985, 88.67062002699981, 89.87378255199997, 90.43644283199978, 83.89786954599981, 96.38035501599984, 91.22553975699975, 86.60441917200001, 97.05082789599965, 92.42858333200002, 92.57741591199988, 93.069377626, 88.59638216199983, 83.74981072599985, 88.17783140399979, 84.7599927939998, 84.04554872799963, 89.79986622399974, 89.87378255199997, 86.67818747800015, 92.57741591199988, 91.0772074439999, 89.72556888400004, 92.92086715099981, 89.50305787599996, 88.37442998099982, 93.55741411900021, 90.58471562799969, 84.61225409500003, 96.1907603279999, 89.01094746099966, 85.66755977599996, 89.79986622399974, 85.1051906560001, 85.96365455999967, 96.75271238599998, 90.85451831599994, 90.28817003599966, 96.90157879599997, 86.87086560700004, 86.60441917200001, 101.7915484409998, 89.50305787599996, 83.11335252599997, 95.40124795099973, 93.4833202809998, 85.66755977599996, 94.8346958640002, 87.73372488599966, 85.1792797359999, 92.84680280099974, 88.59638216199983, 82.76820750799993, 94.61147237600017, 88.44828713899983, 88.93667995599981, 89.72556888400004, 89.50305787599996, 94.34677801599992, 90.78016150100007, 89.87378255199997, 89.72556888400004, 91.4208069260003, 92.35454866399982, 83.0397322419999, 92.280132374, 91.49519357600002, 85.74167849599985, 86.30820520099996, 88.37442998099982, 86.53027061700004, 87.58530882600007, 96.52922142599982, 88.22595425100008, 93.4833202809998, 98.10467815599986, 91.49519357600002, 93.26027491299988, 95.8185508539998, 85.74167849599985, 97.80632505100016, 92.69791055099995, 85.44558371199969, 90.85451831599994, 91.49519357600002, 84.80921427999965, 87.51148134999971, 95.32668287599972, 88.78852580499984, 88.93667995599981, 92.54940007599976, 90.06557025999973, 93.78045948700014, 91.34680174599976, 89.99124327999994, 88.78852580499984, 95.9673581359998, 91.98323045799998, 90.21384305599986, 91.98323045799998, 88.78852580499984, 86.16028834000008, 90.63182918799998, 85.5197024319998, 88.86241245099995, 93.67775593599981, 81.12207204399988, 88.56610414899978, 98.29792590400007, 83.45445236199976, 90.85451831599994, 97.09559530899992, 90.70618600299986, 93.26027491299988, 89.91691629999968, 86.38235375600016, 93.40884451600004, 90.13951607600006, 90.40914006000025, 90.63182918799998, 91.90881416799994, 84.95739243999992, 84.3167766969998, 86.53027061700004, 89.99124327999994, 87.21502978399985, 91.19802844599985, 84.88330336000013, 92.69791055099995, 89.35484420800003, 91.83439787799989, 95.02880496099965, 88.00362136299987, 93.82638505599994, 90.97524996600009, 92.47495395099963, 88.49183664399993, 95.52055375200007, 85.93822292400023, 83.38042295199989, 96.30573046599966, 90.13951607600006, 83.94686026299973, 92.3264434759999, 88.07785922799985, 88.15209709299984, 98.44697047600016, 91.4630796719996, 87.78128847499988, 93.52874473599968, 90.55747237299965, 91.19802844599985, 93.26027491299988, 94.23956064000004, 89.69431652399976, 92.40088960100002, 93.03722954499995, 86.42655723899998, 85.44558371199969, 94.23956064000004, 85.79030606300012, 87.78128847499988, 89.20663053999988, 88.49183664399993, 91.4208069260003, 89.69431652399976, 89.76864350400001, 89.13233319999995, 93.67775593599981, 88.41756913899962, 92.3264434759999, 90.82685813599983, 90.90124478600023, 91.76036320999992, 96.79736061200015, 85.79030606300012, 88.90982219199987, 90.40914006000025, 87.21502978399985, 83.52810213399971, 95.85913123599994, 87.28923781399999, 91.76036320999992, 97.5083549410001, 89.13233319999995, 93.67775593599981, 96.72270622699989, 90.26080774699994, 91.88053027599949, 93.94218414400007, 89.13233319999995, 89.47209791199975, 93.38011561599956, 92.1779330009997, 90.90124478600023, 89.69431652399976, 88.34368249299996, 84.0209195079999, 94.16502539999988, 86.57453322799984, 90.4834968749999, 98.19260806599982, 87.21502978399985, 95.37174646999983, 94.16502539999988, 91.4630796719996], \"power_mean\": 89.85719861774989, \"energy_millijoules\": 7236.8461206953625, \"energy_joules\": 7.236846120695363, \"coremark_score\": 3104.471681, \"coremarks_per_mhz\": 3.2338246677083333, \"ulpmark_cm_score\": 34.54543537758385}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1508.5328503500002, 1514.8604134399998, 1510.66348734, 1513.0106272500002, 1512.4436806600002, 1508.5328503500002, 1514.2893931250003, 1526.872728657, 1514.227728112, 1517.3476102680002, 1531.991271768, 1515.141887952, 1516.2801567099998, 1511.300862708, 1520.61668848, 1510.4530955, 1510.021918713, 1513.0809969, 1510.59323664], \"power_mean\": 1514.7506044696315, \"energy_millijoules\": 7573.753022348157, \"energy_joules\": 7.573753022348157}}, \"1305600\": {\"active\": {\"elapsed_sec\": 58.97102852, \"elapsed_ns\": 58971028520, \"power_samples\": [113.592746068, 114.56790218399965, 110.3246041760001, 116.14564730799975, 110.3246041760001, 108.33270486599986, 118.47184967599969, 110.3246041760001, 109.12307635599973, 117.42209792799963, 110.88536881599975, 111.29990823099979, 121.25563487199975, 114.00280367599998, 113.3667596759999, 119.82806203099972, 114.56790218399965, 127.41412617599985, 121.81631211600006, 115.43016997599989, 112.57606208599987, 117.76052766199973, 115.20391669599962, 110.5844006079999, 117.19557717599969, 109.53375767600005, 113.92770336599983, 114.6430321759999, 113.29168885399986, 110.73507788799952, 115.91930467599991, 119.75230667599976, 115.88228911599981, 117.04469263399983, 114.79406669599985, 117.12032884399969, 113.21623106900006, 111.52562715099953, 114.153778526, 115.12836979600002, 112.01129121799954, 112.1617007909997, 110.17398617599974, 111.37527670599957, 116.33310119199996, 108.03221184800009, 113.4422174609997, 117.60919557200009, 109.15813394499992, 114.6430321759999, 117.34684959599986, 115.20391669599962, 109.53375767600005, 116.33310119199996, 120.31295432199977, 112.57606208599987, 113.85221594099971, 115.76853877899953, 114.34173767199968, 118.96101547199987, 111.22453975599979, 112.35016504600003, 121.81631211600006, 110.17398617599974, 105.63022456799968, 120.23716932699995, 113.29168885399986, 116.40870776199972, 117.83580567600006, 114.49238492399968, 110.5844006079999, 117.83580567600006, 114.34173767199968, 119.45006223399969, 115.84411551399944, 113.21623106900006, 113.47555304599996, 112.57606208599987, 115.54219614699969, 110.6597392479996, 114.97766341599981, 111.6350739569998, 113.85221594099971, 112.72653117599998, 112.65149003599981, 119.82806203099972, 115.12836979600002, 107.05637289099968, 114.90211651599998, 114.56790218399965, 111.37527670599957, 115.12836979600002, 116.6672873399998, 114.90211651599998, 122.00213265399952, 109.30830622799999, 111.29990823099979, 116.7859651599997, 111.37527670599957, 110.02375437599972, 116.96905642399975, 110.50944831999982, 113.1407732839998, 118.96101547199987, 114.34173767199968, 114.34173767199968, 124.32661301799976, 118.58316454399983, 112.50063413599992, 113.62614078099978, 117.45825151299982, 113.55104047099962, 115.31585351499984, 116.6672873399998, 116.6672873399998, 110.84847039099986, 103.5637895599998, 115.46700698499967, 119.37430687899973, 107.80732426199961, 108.67235099599975, 117.6848616169998, 120.72609744399983, 111.07418931099983, 112.8397160699999, 116.33310119199996, 114.90211651599998, 114.26622041199994, 110.99920734099987, 110.92383886599987, 111.6350739569998, 109.08324082699983, 111.22453975599979, 113.06570246199976, 109.87352257599969, 112.8397160699999, 118.6588900639997, 107.88215820999994, 114.19109041999968, 116.81817188199989, 113.32496531099991, 111.5596758419997, 117.38297349899972, 115.46700698499967, 114.04005589999974, 114.75141013599978, 120.34780088199977, 114.04005589999974, 112.9151738549997, 112.68918746300005, 116.03145036399974, 116.6672873399998, 107.43161155400003, 109.72329077599966, 115.31585351499984, 105.74109698799998, 115.31585351499984, 116.44076658799986, 112.7642582850001, 119.07206243699989, 117.94314442999985, 114.37445047599977, 114.82695703599984, 113.24947788600002, 106.38108726700011, 112.68918746300005, 111.48427772700006, 108.93268249700009, 114.82695703599984, 112.8397160699999, 108.857789379, 109.4977499759998, 116.03145036399974, 108.857789379, 118.58316454399983, 122.41073581399974, 114.04005589999974, 116.81817188199989, 117.86744874500005, 114.11557315999971, 114.11557315999971, 115.88062494999986, 113.24947788600002, 118.92055172699997, 118.6588900639997, 110.62275147100013, 113.24947788600002, 116.59165112999995, 108.22201153099991, 115.24066435299983, 115.88062494999986, 115.88062494999986, 118.92055172699997, 119.22318465799981, 116.74292354999966, 121.77489883799967, 118.12958809600013, 110.20848011199996, 115.24066435299983, 116.10705693399973, 115.65419296599975, 110.05818918399973, 115.72941180999987, 111.97379891599985, 111.48427772700006, 116.51640279799972, 107.35677760599992, 115.80501837999986, 118.84518486099978, 112.538271893, 112.50063413599992, 113.81389138799977, 113.32496531099991, 113.09889015099998, 113.17399046100013, 115.88062494999986, 116.365130378, 117.56544237099979, 113.88940864799997, 110.95765089299971, 115.089510883, 113.09889015099998, 109.2722091759997, 119.14742930299985, 112.46320107099996, 108.93268249700009, 114.52515685599997, 109.19690017599987, 112.6137296779998, 121.47179071699998, 106.56652665099978, 108.22201153099991, 125.2986492020002, 113.73876139599975], \"power_mean\": 114.2018432730554, \"energy_millijoules\": 6734.60015669192, \"energy_joules\": 6.73460015669192, \"coremark_score\": 4239.731371, \"coremarks_per_mhz\": 3.2473432682291667, \"ulpmark_cm_score\": 37.12172871192425}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1531.846075982, 1528.72156107, 1525.4547929460002, 1525.7385257789997, 1519.987060358, 1521.193882338, 1514.23140596, 1510.969065476, 1520.911344636, 1516.0091635439999, 1509.687298184, 1516.579409763, 1511.25463383, 1508.5599292, 1523.112079839, 1518.2870599569999, 1519.069039738, 1531.9173049289998, 1525.525817211], \"power_mean\": 1519.9502868810525, \"energy_millijoules\": 7599.751434405262, \"energy_joules\": 7.599751434405262}}, \"1497600\": {\"active\": {\"elapsed_sec\": 51.411272636, \"elapsed_ns\": 51411272636, \"power_samples\": [152.76130203199978, 156.82314076000011, 164.01267172599978, 157.94366132899995, 162.408966125, 166.56260470599955, 159.70357763199968, 161.618296096, 164.7259921269997, 152.125820128, 158.0212613839999, 163.04865866599994, 157.6336590579997, 155.9512539579996, 162.2537485119999, 160.33903004800004, 164.168466976, 161.2888610079999, 162.73770523599978, 161.21151087999965, 166.39433331400005, 159.78086858999973, 160.10627159199998, 164.64806486199996, 168.5552504349996, 162.02072258399994, 165.13212379599963, 160.33903004800004, 161.54051742099978, 164.3238627510002, 155.9512539579996, 154.85168010199982, 161.54051742099978, 164.7259921269997, 158.58335386999988, 169.11671790399987, 166.718637856, 155.64200596, 167.28022446999967, 164.8986522759999, 154.28964736999978, 161.30758026099966, 162.73770523599978, 161.2298015859999, 159.06394460799993, 162.6602662560001, 158.1960006239999, 157.4788568969998, 161.4627387459998, 158.35086230199954, 159.47090794399992, 161.15242177599976, 154.85168010199982, 158.27323241199974, 162.81554338599972, 160.59031758399988, 163.7018801759998, 164.64806486199996, 168.8827114400001, 160.90091423199965, 168.32133332299986, 163.21776211399992, 165.0541666959998, 161.2298015859999, 154.85168010199982, 161.94291426899963, 162.97082051599978, 161.2298015859999, 154.2121960999998, 158.75370474199985, 158.44386312999995, 162.6602662560001, 163.7018801759998, 155.00664231200017, 161.30758026099966, 167.60374343599983, 160.74581526399993, 162.42715097599967, 165.3655953159996, 160.74581526399993, 155.56449521499962, 160.66806642399956, 160.10627159199998, 153.57271209799978, 165.77163763299973, 158.75370474199985, 153.65013353299992, 166.17332200099963, 153.98063666199982, 159.0832579329999, 167.1245318880001, 166.8127464859997, 164.10377288799987, 163.13989432399967, 164.18170015300007, 162.50458995600002, 161.30758026099966, 157.0916525199998, 159.8735131359997, 166.89079289599977, 157.32405473599988, 153.98063666199982, 166.89079289599977, 158.28854406999994, 157.40125684200007, 164.25922779100006, 153.98063666199982, 161.86510595399977, 168.47714454999982, 160.84170594099987, 167.4479917259996, 168.24322743799985, 166.17332200099963, 161.7098883409999, 163.06242585599966, 163.21776211399992, 157.73101748799968, 162.34931282599996, 156.04932553599974, 157.32405473599988, 161.55467072799956, 156.37471733200005, 157.73101748799968, 162.42715097599967, 165.0541666959998, 157.65338759799988, 165.69365069799983, 165.77163763299973, 160.35786848800012, 166.73510031399996, 160.20237080799984, 159.71847368500016, 161.78769665599975, 163.54648440100027, 161.78769665599975, 158.36620359999984, 159.64075467999987, 157.80864737799993, 162.98455806599986, 164.50966633599978, 159.00556856799972, 161.3994531149997, 159.64075467999987, 159.95083358199986, 164.5876234359996, 162.50458995600002, 162.1940356959999, 158.44386312999995, 162.1940356959999, 162.82922180799983, 159.23823825599948, 161.15242177599976, 166.50136132199964, 159.00556856799972, 159.96952299999975, 160.93340125899977, 157.97870245799982, 166.65705390399967, 158.28854406999994, 155.89464202, 162.75135401800003, 159.64075467999987, 160.4352186159997, 158.055963734, 165.30451588899996, 163.31319100099995, 165.30451588899996, 168.4150992079999, 158.77289887999973, 167.61958198699995, 164.0258456229999, 159.56303567500004, 160.53138897099984, 158.92787920299997, 162.75135401800003, 166.98033620599995, 160.84170594099987, 157.01405246500008, 167.85349909899992, 162.03875856599984, 155.10022572699972, 164.10377288799987, 159.16054889099973, 165.07095501699996, 166.4233149119998, 157.65338759799988, 167.2141639659999, 165.30451588899996, 162.6738855499998, 160.53138897099984, 165.78403929599972, 161.32164479999983, 158.28854406999994, 165.9396723609998, 157.01405246500008, 161.63247904299988, 159.40799622399982, 157.42089602999977, 162.34931282599996, 164.6651807559997, 162.44068150199973, 162.11619754599997, 161.72780513600014, 156.85925030399972], \"power_mean\": 161.39578698730378, \"energy_millijoules\": 8297.562807106056, \"energy_joules\": 8.297562807106056, \"coremark_score\": 4863.245536, \"coremarks_per_mhz\": 3.247359465811966, \"ulpmark_cm_score\": 30.1293290345328}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1526.734424195, 1526.7315697149998, 1513.17588436, 1518.3629834939998, 1524.8902182, 1526.45033458, 1524.887661416, 1523.186069028, 1533.0459735000002, 1536.102888562, 1524.5332986359997, 1519.4225980079998, 1527.8689444299998, 1518.145969268, 1512.328949472, 1516.2995707090001, 1524.96090792, 1519.634593512, 1521.909499458], \"power_mean\": 1523.088017813842, \"energy_millijoules\": 7615.44008906921, \"energy_joules\": 7.61544008906921}}, \"1708800\": {\"active\": {\"elapsed_sec\": 45.05600967, \"elapsed_ns\": 45056009670, \"power_samples\": [209.53726660799975, 205.47124076799992, 202.28411041599998, 203.56230424, 208.97801033999986, 204.91618242999994, 202.20477702599965, 210.25178976999973, 204.11780180599953, 211.05067465599996, 204.27705568299984, 203.48291148599992, 209.93238784000005, 200.29592915599983, 212.24435421600015, 204.27705568299984, 211.8455014719998, 212.324572731, 210.65161395699965, 211.13083369599985, 206.66571690599972, 209.85269923600003, 206.42627515399977, 206.82520807299966, 205.95090564099974, 205.95090564099974, 208.57874168599983, 209.6925004960001, 205.791473602, 208.57874168599983, 206.50581573599993, 206.98527261200002, 212.4845983839998, 218.5376205539999, 205.791473602, 216.3066485439997, 213.67874879600004, 207.06525303199987, 208.41866189600023, 207.86384111100006, 208.97801033999986, 207.06525303199987, 206.50581573599993, 203.8787162939998, 208.97801033999986, 206.9052921919997, 204.67700756599993, 212.0041100479998, 212.79934862999994, 208.41866189600023, 206.346324569, 212.324572731, 212.0041100479998, 208.33903246199998, 210.01181307399997, 208.17895267199992, 208.41866189600023, 211.44538051999984, 207.14482329600014, 201.96595898600003, 205.63163171199972, 206.98527261200002, 214.71210593799992, 204.19865783799946, 207.06525303199987, 214.7920314160001, 204.3579712319995, 214.87236888100006, 215.270716516, 205.23197713599984, 210.7304495679998, 210.65070160000005, 205.39175935599974, 210.01181307399997, 206.18683340199982, 209.5327125220001, 209.2928251779997, 213.2777705279998, 204.11879636799972, 209.85155466399965, 212.0843285630001, 203.00491799799988, 212.63885231999961, 208.73821176399997, 210.81060860799994, 209.13303720400017, 205.63163171199972, 206.66576108799995, 208.17895267199992, 214.86970429599978, 205.47219967299952, 209.2928251779997, 211.36519183999985, 208.65814203399964, 210.2507285439999, 208.81787087999965, 206.98527261200002, 209.9316838689997, 202.92511600299963, 206.26637398399976, 215.1103940559999, 202.8453140079996, 211.92430290999982, 212.0843285630001, 206.18683340199982, 210.65070160000005, 209.13303720400017, 210.7304495679998, 209.21272580799996, 212.63678165399983, 206.74574150799958, 211.20522570399976, 217.97483376499986, 206.18683340199982, 208.57807230399976, 210.5705425599997, 203.47996751199958, 208.65814203399964, 210.5705425599997, 207.93924344800007, 217.49662417599984, 214.31083059999992, 205.23284668899987, 218.05534985000008, 212.63885231999961, 205.94739164999987, 205.5521206179999, 214.31083059999992, 212.55901569399975, 207.699944685, 211.0452595679999, 206.42664014000002, 205.7079498979997, 208.41834345799975, 199.42137775800006, 210.41063555200003, 206.98536954199994, 207.3846001989998, 209.13303720400017, 215.03002675599964, 207.7795741189998, 209.45173047699973, 208.33868434199985, 205.7079498979997, 214.86970429599978, 202.44712251499982, 203.16145975799964, 209.6917071729997, 202.68611925899972, 200.7739862049998, 204.7534498719997, 207.93924344800007, 204.7534498719997, 216.45633843899964, 206.3466597199997, 204.99349370499976, 217.57711042599954, 211.68405874199993, 209.21175378099974, 216.0627007109997, 210.96507088799967, 206.3466597199997, 215.26354978399968, 212.23843460299986, 208.89314985999977, 205.23284668899987, 205.7079498979997, 204.11879636799972, 210.1705695039998, 205.78790048299993, 205.23284668899987, 205.15333559499982, 207.53986489499994, 208.41834345799975, 214.62901453599966, 212.7973376340001, 210.96507088799967, 214.70938183599992, 205.6279993129997], \"power_mean\": 208.72479008959203, \"energy_millijoules\": 9404.30616064538, \"energy_joules\": 9.40430616064538, \"coremark_score\": 5549.266387, \"coremarks_per_mhz\": 3.2474639437031834, \"ulpmark_cm_score\": 26.58356669056418}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1536.227908707, 1531.974205764, 1535.5923971630002, 1543.89448339, 1530.7066446979998, 1537.797588768, 1527.43939887, 1531.1997486940002, 1527.01707171, 1516.5924987619999, 1517.1576090430003, 1532.546987094, 1540.7030459029997, 1513.541499222, 1524.320938865, 1527.0882745949998, 1529.781673162, 1529.566847508, 1539.3555392679998], \"power_mean\": 1530.1318084834736, \"energy_millijoules\": 7650.659042417368, \"energy_joules\": 7.650659042417368}}, \"1958400\": {\"active\": {\"elapsed_sec\": 39.34630436, \"elapsed_ns\": 39346304360, \"power_samples\": [259.44062194899993, 260.47054891899984, 270.573868016, 262.4598224719998, 261.5785449279997, 254.7368235609997, 258.47685703799993, 251.38898735199973, 258.6995732529999, 264.28885947399976, 258.39482976399995, 267.5553131029999, 258.39482976399995, 256.56570456200006, 265.09240205799983, 261.5785449279997, 249.64574282099989, 264.7622600919997, 262.37761768799965, 260.30589338799973, 265.39649954799984, 259.6674813039997, 262.603645292, 270.2426578559998, 254.7368235609997, 257.98300211000014, 266.6691510879996, 261.9653225599998, 253.46405337600004, 264.5144414439999, 267.94597525599966, 265.3137222429998, 262.603645292, 264.0411301779998, 258.2299295739999, 267.2246965569998, 267.78018235600007, 255.59878341599983, 266.0349116319999, 263.7934008819998, 258.946589485, 264.43169377899994, 260.30589338799973, 262.04752734399995, 267.2246965569998, 260.857563799, 259.6674813039997, 266.5863143079998, 260.6928491399997, 259.976159047, 271.04664518499976, 261.5785449279997, 266.50347752799985, 266.5863143079998, 266.0349116319999, 260.857563799, 264.348946114, 259.090760566, 257.98300211000014, 271.5151312759997, 259.02906921999966, 252.41968588799955, 263.1592798339998, 262.1301558639998, 256.71064764000016, 256.87542887999984, 259.976159047, 261.9653225599998, 265.14859213199975, 266.81121339599986, 258.47685703799993, 264.26662279599987, 266.5863143079998, 263.3242321719997, 260.6102800949998, 268.1660095240002, 263.1592798339998, 265.53891809599986, 260.6102800949998, 260.362996391, 270.88098058799983, 256.87542887999984, 261.24857299200016, 264.348946114, 256.62867953599994, 259.4203757199996, 267.14182994199996, 263.4629537559997, 261.63523221599985, 267.9176565159996, 258.7820529879998, 269.6043351239998, 261.63523221599985, 256.0723845780001, 265.53891809599986, 259.2553565799999, 256.62867953599994, 265.70410772399987, 261.80006551999986, 258.53503675599995, 265.37330381599986, 262.603645292, 264.9006847160001, 268.8872285110001, 260.362996391, 269.2728184309999, 268.307387866, 258.6995732529999, 267.3665503259999, 266.2553919919999, 264.9006847160001, 260.4455654359997, 264.26662279599987, 259.0082509959998, 262.5813105879997, 262.43832858199994, 258.06545220499993, 266.0901432359999, 261.3051418719997, 265.0429245600001, 270.88098058799983, 265.37330381599986, 260.9186010559997, 267.3665503259999, 260.5277110500001, 262.82895111599964, 257.7360746459999, 266.56303850799986, 267.3665503259999, 263.8761187119999, 257.180321196, 262.99432749599964, 257.81852474100015, 255.74378616399986, 259.56430858, 266.64548016599974, 268.72174207600006, 257.015903344, 261.55260369599955, 266.56303850799986, 264.01880414799984, 257.7360746459999, 267.1182860859999, 265.37330381599986, 260.362996391, 262.9116393060001, 264.8179074110001, 260.1157126869998, 266.952918296, 256.8510628239999, 264.26662279599987, 271.4894686839998, 260.1157126869998, 270.5492255209999, 271.821461346, 260.19828173199994], \"power_mean\": 262.5989406186473, \"energy_millijoules\": 10332.297842194863, \"energy_joules\": 10.332297842194864, \"coremark_score\": 6354.532052, \"coremarks_per_mhz\": 3.2447569709967317, \"ulpmark_cm_score\": 24.195973036999984}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1529.283517576, 1541.972598585, 1523.823227976, 1515.176588812, 1530.7707690640002, 1539.770759646, 1530.416018516, 1528.2877008, 1525.169337681, 1524.5339149049998, 1540.113036576, 1521.555742911, 1545.0787357200002, 1547.569108224, 1535.520777758, 1529.3531584040002, 1537.0105914240003, 1539.9858742939998, 1515.7455842979998], \"power_mean\": 1531.6387917457894, \"energy_millijoules\": 7658.193958728947, \"energy_joules\": 7.658193958728947}}, \"2016000\": {\"active\": {\"elapsed_sec\": 38.190104048, \"elapsed_ns\": 38190104048, \"power_samples\": [272.28965125599984, 275.3054633739998, 287.6152555609997, 288.588393192, 288.0337866459997, 285.873196537, 292.32012383699976, 280.0643984879998, 286.4273728959995, 275.7773490379998, 288.67187100399997, 276.7441468239999, 271.3236854419997, 271.2410069100001, 278.5709761119997, 272.1233825559998, 278.186811736, 276.4945463920001, 287.9503385159999, 281.6696250099999, 291.4345294689997, 291.4345294689997, 283.16221567699995, 284.13452133600026, 290.326652941, 291.9846401230002, 288.9708947759998, 290.7965939799999, 277.04922862299986, 271.70856346599976, 288.50448508199975, 285.4064603960003, 290.7965939799999, 285.62225932900014, 278.65440803199976, 291.5185863639997, 288.33709915999975, 281.33615942799975, 289.5248925149997, 278.3211082079997, 283.4127966449996, 293.9779323989999, 289.0548325259999, 290.4942166359999, 284.13452133600026, 285.1556119559998, 281.33615942799975, 289.6928276849999, 292.45431319, 289.30578487599973, 273.95066827200003, 293.42414291999967, 279.75954242199987, 276.16160334999995, 281.97412475199985, 302.79985360900014, 274.4226428989998, 277.21554596199985, 285.2393712810001, 285.53847036399975, 272.81847303999984, 295.1658305200001, 274.2561359089998, 279.34294176899994, 280.0643984879998, 270.60301175099994, 289.5248925149997, 280.61881274699977, 286.1763463359996, 287.8664602409997, 283.96755086600024, 280.61881274699977, 288.80344972600005, 278.45921853699997, 293.2562824179997, 288.88695702599966, 276.7165939449999, 278.8760993029998, 290.326652941, 283.63318069599995, 275.6111503439995, 279.8142631119997, 274.1733093549999, 275.5278373739998, 284.7376744009998, 284.9047635159998, 295.8875693529999, 276.32828857000004, 291.4345294689997, 281.89051421199974, 285.07185263099996, 290.71299782799997, 281.6401113639997, 281.97412475199985, 273.5354035480002, 289.357387948, 284.82100419099993, 284.7376744009998, 277.27109747199984, 287.53180743100006, 269.38872159599987, 282.4410689319998, 274.640479573, 277.35449975200004, 284.9885228410003, 283.63318069599995, 291.1827898449999, 268.91654005600003, 289.273420363, 279.8142631119997, 292.6225459300001, 288.5520669259997, 279.25987853499987, 289.18988338099985, 283.76536936799994, 276.4945463920001, 279.09289574499985, 289.273420363, 286.6427862959997, 294.1957031359998, 282.1069371359997, 281.89051421199974, 289.99109479599974, 291.73281173099986, 283.07897473899993, 285.9253197759997, 293.64209236099964, 292.2865118159998, 295.46710783599997, 292.1187104419996, 295.59582170800013, 278.9263411159998, 278.9263411159998, 282.9116347089998, 280.66879964500004, 281.72372190399983, 279.25987853499987, 275.91200291799987, 283.07897473899993, 291.3509036349999, 286.6427862959997, 287.1967244759999, 292.6681233839997, 292.8359838859999, 294.66128255199965, 296.57029571, 294.7450858960001, 279.00983251099956, 300.55272663599976, 289.57197018099964, 277.571504496, 280.4521390839998], \"power_mean\": 284.2798800118288, \"energy_millijoules\": 10856.678196404699, \"energy_joules\": 10.8566781964047, \"coremark_score\": 6546.902006, \"coremarks_per_mhz\": 3.2474712331349207, \"ulpmark_cm_score\": 23.02730130499678}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1526.3731027649999, 1537.498263805, 1539.197243367, 1535.7229446719998, 1527.7184616, 1529.418510466, 1531.332069732, 1543.6600533150001, 1529.266939155, 1537.2065420299998, 1561.71398312, 1540.2669864999998, 1536.648260157, 1536.008925024, 1531.6890563160002, 1519.9967621229998, 1524.6012864719999, 1528.429118568, 1537.355154984], \"power_mean\": 1534.426508640579, \"energy_millijoules\": 7672.132543202895, \"energy_joules\": 7.6721325432028955}}}}, \"4\": {\"freqs\": {\"768000\": {\"active\": {\"elapsed_sec\": 100.252434545, \"elapsed_ns\": 100252434545, \"power_samples\": [62.89813923199972, 64.0988603679998, 59.785007124, 64.88406307500009, 73.65713380599982, 59.71190006399979, 62.752003212999625, 66.94322341599991, 65.0835137419997, 55.745435346999784, 64.59105858399971, 65.22988743999986, 60.91276922199995, 58.85830028799978, 54.471893511999724, 58.93137770799967, 61.40526500799979, 57.92803029799984, 65.59638610799993, 77.96888639199983, 58.58433475399988, 65.37663741999972, 66.30421585600016, 58.29251901699968, 54.61725814399961, 59.71190006399979, 57.018977181999844, 67.28495151399989, 53.978339935999884, 49.22866096199982, 61.40526500799979, 59.00445512800002, 59.91312208499994, 61.040033889999904, 65.71810811799969, 66.65023872999996, 59.36909271599984, 60.278056437999794, 64.17179971199971, 61.478461377999565, 53.32428015100004, 65.44963612799984, 64.17179971199971, 55.179475455999864, 59.27438242800008, 56.30716021599983, 56.38011849099962, 68.68332183899997, 55.3977980159998, 67.99695708799959, 67.28495151399989, 53.266985620000014, 66.7232966079996, 59.15023521199987, 62.044093863999706, 59.785007124, 63.87929038399989, 57.58064257599972, 70.25058149200004, 58.51128716899984, 59.91312208499994, 60.278056437999794, 59.98588391899966, 59.07715779199975, 63.244666368000026, 75.0779988459999, 54.96115289599993, 56.873375259999875, 61.971243177999895, 60.278056437999794, 64.88406307500009, 55.10657665599956, 60.204919542999505, 66.65023872999996, 64.0988603679998, 54.25365971999963, 58.29251901699968, 65.86454094400005, 58.98232909599983, 57.7092621459999, 57.65366032599968, 67.21148740899957, 57.383169136000106, 58.073750864999965, 59.56606085199974, 58.78559762400005, 51.77550734200008, 61.69767512199974, 67.77685215999986, 59.49295379199998, 53.048930531999986, 56.45307676599987, 59.63916791199995, 60.05902081399995, 55.38154015799955, 57.434981525999774, 69.19744134999996, 55.10657665599956, 57.72667807599987, 61.624478751999504, 59.71190006399979, 54.39902435199974, 62.044093863999706, 59.49295379199998, 67.99695708799959, 64.59105858399971, 55.745435346999784, 63.39086190399962, 65.86454094400005, 60.69364483000004, 60.89401651599974, 73.43622704599989, 66.1369506489998, 50.50208415199995, 59.347114579999925, 55.59995206999997, 62.752003212999625, 51.92063429499967, 56.234576085999834, 65.30326242999968, 56.234576085999834, 57.018977181999844, 58.27480519599976, 59.420221640000136, 63.80597506399977, 58.98232909599983, 65.0835137419997, 77.18673147899972, 58.219471431999864, 66.28381957900001, 63.31757622399982, 62.53261134899958, 56.59861917099988, 56.94598907199975, 63.95222972799979, 56.873375259999875, 59.49295379199998, 61.33244400399985, 63.87929038399989, 63.39086190399962, 68.11816543199961, 57.434981525999774, 78.46009519399968, 68.41150566399983, 56.94598907199975, 63.95222972799979, 63.87929038399989, 64.0988603679998, 59.98588391899966, 58.00107788300011, 64.02554504799969, 62.45973117499989, 46.11512598399986, 56.873375259999875, 59.56606085199974, 57.070641675999696, 58.42096003599977, 71.18319625599975, 69.46916832600004, 64.66440373899968, 63.17138068799977, 60.42395516700003, 67.06493593799996, 53.19417612999973, 63.17138068799977, 66.84492036199958, 57.507999275999964, 48.02743719999967, 61.40526500799979, 56.45307676599987, 60.4745204379999, 56.14461705400004, 64.17179971199971, 69.98311902600017, 62.044093863999706, 57.507999275999964, 62.11732006899979, 64.02554504799969, 50.429393611999785, 66.01135020400011, 64.66440373899968, 59.128168307999886, 56.08903368099982, 59.62094956599981, 62.752003212999625, 67.92384003999996, 55.870533000999785, 52.976121041999704, 72.8016030299998, 56.94598907199975, 65.86454094400005, 65.44963612799984, 57.507999275999964, 58.78559762400005, 61.40526500799979, 56.94598907199975, 57.09196529199994, 56.234576085999834, 49.156029896999826, 64.0988603679998, 60.7664361520001, 53.89006129599966, 56.08903368099982, 68.41150566399983, 56.161617810999815, 63.80597506399977, 65.64507992199992, 57.72667807599987, 56.436195195999744, 58.93137770799967, 61.25924763399962, 60.278056437999794, 65.79151274800006, 53.614890380999896, 63.098470831999975, 64.22508506699978, 61.386560094999595, 60.7664361520001, 69.61595747600018, 63.93245670499982, 61.33244400399985, 62.95189947199992, 65.64507992199992, 65.64507992199992, 59.56606085199974, 62.45973117499989, 70.03012032399988, 59.347114579999925, 61.25924763399962, 70.10373321399993, 63.31757622399982, 64.4976426679998, 59.54781267099975, 62.45973117499989, 66.84492036199958, 56.161617810999815, 56.65478522799981, 58.63981753999974, 54.25365971999963, 56.08903368099982, 61.45941078099986, 61.33244400399985, 62.11732006899979, 54.74283033599954, 53.59895834400004, 66.77145625699973, 64.22508506699978, 57.344773426999836, 61.75194008199969, 73.85403010799973, 56.08903368099982, 69.10162942600004, 59.76684829499982, 56.30716021599983, 55.308611522999854, 58.56674011999962, 62.38647532999971, 61.25924763399962, 53.68772970600003, 59.83998518999965, 66.57680426499974, 60.89401651599974, 65.13200037999991, 58.34788261599965, 75.05342419299996, 64.29843022199975, 58.7125202039997, 60.4745204379999, 60.96721288599974, 54.88825409599963, 48.37243041199986, 62.605867193999984, 57.434981525999774, 55.59995206999997, 52.90368493400001, 54.59740657599991, 63.65972039999974, 60.25539604599976, 49.5730147769998, 76.32660978799981, 66.99147183299965, 57.36233822599979, 59.83998518999965, 63.58640507999962, 61.75194008199969, 54.815729135999845, 63.02518515199995, 57.143659425999886, 60.620478294999884, 59.20127536799964, 50.85037475099966, 62.24033931100007, 60.109438189, 60.03627165399985, 64.86376505399994, 76.25307835600006, 63.098470831999975, 58.56674011999962, 60.13178264799967, 63.02518515199995, 58.49366269999973, 54.88825409599963, 56.50918330600007, 60.32856258100014, 55.23605688099997, 47.79273751400001, 59.69408646099987, 55.94311713099978, 63.2938957519998, 62.38647532999971, 55.52702343499959, 69.61595747600018, 65.15688873199974, 57.85498271300003, 60.96721288599974, 61.678713876999836, 58.34788261599965, 65.49827066199987, 64.79076634599983, 61.605863191000026, 58.00107788300011, 52.83087544399973, 55.017644968999775, 60.89401651599974, 63.73303571999986, 60.25539604599976, 68.88125702599996, 53.32428015100004, 56.363207085999875, 65.0835137419997, 62.31321948499976, 57.7092621459999, 58.34788261599965, 60.4745204379999, 63.513465735999944, 63.513465735999944, 52.051153726000166, 64.79076634599983, 64.64401636599973, 60.18222951100006, 58.27480519599976, 72.8016030299998, 60.40135390299997, 58.42096003599977, 60.40135390299997, 62.95189947199992, 58.78559762400005, 58.63981753999974, 62.95189947199992, 68.16957952499979, 61.75194008199969, 48.22760026600008, 67.41013624399966, 61.45941078099986, 58.47170439999968, 59.3287770469999, 65.35183783599996, 62.878989616000126, 64.0787708859998, 56.363207085999875, 61.11323025999968, 61.040033889999904, 51.26700339099966, 65.15688873199974, 65.49827066199987, 54.59740657599991, 60.96721288599974, 62.53261134899958, 61.605863191000026, 65.62403915499976, 59.25601521299973, 67.33701919600003, 77.30467430899989, 56.65478522799981, 54.03542592799977, 70.30137183099964, 60.32856258100014, 53.178601501, 63.65972039999974, 59.128168307999886, 63.513465735999944, 60.25539604599976, 56.92498062599975, 67.04342032799991, 60.67480277199979, 64.29843022199975, 63.220580431999906, 73.63303399599977, 53.32428015100004, 63.366835095999704, 56.436195195999744, 57.21630272599987, 61.678713876999836, 55.163128245999815, 59.69408646099987, 61.605863191000026, 59.128168307999886, 61.386560094999595], \"power_mean\": 60.93459864591943, \"energy_millijoules\": 6108.841862275884, \"energy_joules\": 6.1088418622758835, \"coremark_score\": 2493.914848, \"coremarks_per_mhz\": 3.247284958333333, \"ulpmark_cm_score\": 40.9242873913356}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1513.906753228, 1518.7245781550002, 1508.171055339, 1517.5920084480001, 1524.104013641, 1518.0146652800001, 1518.299873499, 1527.2914408000001, 1523.185309775, 1522.6173561199998, 1524.104013641, 1521.414058608, 1514.263846535, 1514.616606712, 1509.515649664, 1510.719326069, 1524.246300071, 1507.3915204800003, 1513.197321657], \"power_mean\": 1517.4408261958947, \"energy_millijoules\": 7587.204130979473, \"energy_joules\": 7.587204130979473}}, \"998400\": {\"active\": {\"elapsed_sec\": 77.429256012, \"elapsed_ns\": 77429256012, \"power_samples\": [73.04383716999996, 70.15408638099984, 83.59932192999963, 73.48582939399967, 75.95781554399991, 84.87221075999969, 74.04639559599991, 73.75186813599976, 75.17607506799982, 75.95781554399991, 77.64761566800007, 75.73646319199997, 63.85911154999985, 71.55042711299984, 70.22772910599974, 79.55876814399994, 71.69751306999979, 73.48582939399967, 84.94653773999971, 71.5006179359998, 71.84497713999963, 79.55876814399994, 77.08314383699985, 64.91216292400009, 75.88390508399993, 77.79523572199969, 79.70656636000012, 69.29550143199981, 65.20540500999982, 71.27988929599996, 78.57762261399944, 74.31642923499999, 66.89680933999966, 84.38606671599996, 80.60941343800005, 74.04639559599991, 75.0286923039996, 78.99438562299997, 74.53760346699983, 70.71511989499982, 80.26715580799987, 76.86161336499981, 74.04639559599991, 70.15408638099984, 77.08314383699985, 83.8671283719998, 75.07240613599993, 72.06541701899982, 87.75938033199986, 78.99438562299997, 72.2128810889999, 77.08314383699985, 72.77350676599985, 83.22874612299984, 69.10162942600004, 73.11762867999983, 81.05354426999997, 82.2979655539998, 75.3234578319998, 71.91833106199988, 78.28188461199989, 76.30134384399958, 78.89310625599978, 68.58767872599992, 80.97939571500024, 83.15447861799998, 66.25833773899967, 79.55876814399994, 79.70656636000012, 71.27988929599996, 67.38443780799957, 84.2378530479998, 73.82531071599988, 77.57399538399977, 75.1021942479997, 71.99206309699957, 76.44884525299972, 79.97106102399994, 77.61675883599946, 67.16424411199955, 84.57566516799966, 74.46375248200002, 72.62636168099971, 77.08314383699985, 68.80805112599978, 72.33169324599999, 76.86161336499981, 75.66293175999976, 78.35591402199952, 78.2082348399997, 71.69751306999979, 77.13075573599986, 81.39195000399968, 71.77124510499971, 75.07240613599993, 84.42701120799984, 84.42701120799984, 76.15346325399992, 74.24257824999995, 70.15408638099984, 78.2082348399997, 72.55260000599992, 69.3687368200001, 77.425995844, 78.84664692399974, 75.1021942479997, 67.38443780799957, 80.11929846399971, 78.99438562299997, 77.91249683799992, 81.09561762499993, 82.66877417199976, 83.94142571199973, 72.9700456600001, 68.80805112599978, 79.18908263199978, 74.65966707999974, 69.14827565199994, 70.56815297199978, 71.13286285599975, 70.42080824200002, 75.58902130000001, 69.29550143199981, 80.75771054799975, 80.68356199299978, 70.7651077759997, 80.46149657699993, 86.97624862599992, 73.60422583600007, 76.86161336499981, 80.8314788539999, 76.640082893, 75.44157940799982, 70.7651077759997, 77.64761566800007, 74.3902802199998, 71.13286285599975, 68.58767872599992, 76.22740354899975, 76.00596184499977, 79.3051328319998, 72.74904954800013, 85.70371603600006, 85.85248933599973, 75.0286923039996, 76.71405282799992, 74.31642923499999, 73.11762867999983, 68.14693392599997, 74.88093066399983, 78.55078973499985, 71.13286285599975, 70.34751368399998, 71.69751306999979, 69.34552702599944, 69.14827565199994, 74.24257824999995, 68.00014477600007, 86.07488634600008, 81.39195000399968, 64.69232546800004, 80.60941343800005, 78.7725876789998, 75.44157940799982, 72.40545492099977, 79.18908263199978, 76.00596184499977, 81.24359361400002, 64.13152028199988, 76.76113637199978, 80.04517974399982, 71.55042711299984, 72.86752861600007, 77.76481765599965, 79.18908263199978, 68.14693392599997, 78.13420542999961, 72.822841058, 73.45696210599999, 71.55042711299984, 70.34751368399998, 72.33169324599999, 73.45696210599999, 73.94793175599989, 70.91213421599991, 69.86027079099972, 66.57680955999967, 78.1812530919999, 77.91249683799992, 78.55078973499985, 78.6248489799998, 71.55042711299984, 71.62415914799976, 79.41096992799999, 77.98652624799956, 72.11078648600005, 79.74908496000012, 78.92032637800003, 73.38314095600003, 69.14827565199994, 73.94793175599989, 74.02140401800011, 82.70963530599965, 73.65290653899956, 79.18908263199978, 88.17465769599994, 72.822841058, 73.57905555399975, 77.83846742800006, 70.91213421599991, 71.77124510499971, 81.65970249199995, 73.45696210599999, 84.27873841199971, 77.20437601999993, 69.07504026399965, 79.18908263199978, 76.49252235600011, 71.88987972599966, 78.32899179099991, 80.5356451319999, 77.425995844, 76.22740354899975, 70.98583641599976, 73.45696210599999, 72.33169324599999, 69.78662806599982, 77.499995614, 79.89732239999967, 76.0799021399996, 66.43013944399968, 80.31357971600005, 78.55078973499985, 74.7036118919998, 76.98275619599963, 83.42210635600009, 83.64461736399994, 75.36766894800007, 77.83846742800006, 72.18454816099984, 77.27837578999993, 66.23649455600003, 76.640082893, 76.00596184499977, 71.47669507799992, 75.66293175999976, 73.30969837599991, 73.38314095600003, 81.28942344999973, 76.640082893, 72.52805343599971, 93.52939088599965, 74.58616513599964, 68.85457909599995, 80.79928524599973, 73.0147923459997, 68.36730632600006, 68.22051717599993, 77.13075573599986, 75.85846043599986, 76.27099188400007, 66.94405041599975, 74.65966707999974, 81.65970249199995, 77.95945514799996, 77.39505024399978, 84.20441143199992, 81.36363147999987, 75.22022705599989, 76.00596184499977, 73.53078325599972, 78.89310625599978, 73.30969837599991, 71.03505909399973, 70.98583641599976, 75.22022705599989, 74.09525500299992, 67.58228379599996, 75.93202154999994, 79.67534633599985, 76.27099188400007, 68.4868921479997, 82.07563266599982, 80.79928524599973, 72.11078648600005, 84.54600986800006, 78.32899179099991, 75.85846043599986, 67.65546001400003, 77.61675883599946, 70.7651077759997, 75.63701873199989, 76.34458248600004, 65.01170838799953, 76.41855242100019, 80.23943116100008, 72.42535885599978, 69.49281247599993, 92.55568682800003, 88.43651441599991, 74.43840349599964, 80.31357971600005, 76.27099188400007, 79.74908496000012, 69.34552702599944, 71.81649631599998, 74.43840349599964], \"power_mean\": 75.56135572913341, \"energy_millijoules\": 5850.659557364874, \"energy_joules\": 5.850659557364874, \"coremark_score\": 3229.056341, \"coremarks_per_mhz\": 3.2342311107772437, \"ulpmark_cm_score\": 42.730225122276565}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1512.562671921, 1517.5196273120002, 1511.505066489, 1514.9714184359998, 1523.6777642599998, 1523.7489373100002, 1522.475632765, 1513.2721978320003, 1521.55686996, 1521.41476176, 1512.2102094819998, 1511.8573810320001, 1511.148336204, 1518.2289681840002, 1515.5366187779998, 1508.7420464159998, 1516.104935271, 1511.289130086, 1514.122164374], \"power_mean\": 1515.8918283090527, \"energy_millijoules\": 7579.459141545263, \"energy_joules\": 7.5794591415452635}}, \"1171200\": {\"active\": {\"elapsed_sec\": 65.738914506, \"elapsed_ns\": 65738914506, \"power_samples\": [101.0167445799998, 110.97511559799977, 101.12989357900005, 106.47761562599999, 115.01772069699973, 104.53662477600005, 98.9955177409995, 110.41266749199985, 107.15530674599972, 108.0947757639999, 100.08316837199982, 101.4297635649998, 109.14072843199983, 107.56734519499992, 101.6884402119997, 112.24699518299985, 106.44227044700006, 106.85436856599995, 105.50735779599995, 103.11430531099973, 112.72984673999963, 109.14072843199983, 103.8986296170001, 104.46131577599954, 106.74308959299947, 104.53662477600005, 106.44227044700006, 113.6699374719999, 110.89989675399988, 107.86878937200026, 103.97352273499996, 110.29581964599993, 105.73307671599969, 116.13847840800031, 102.02582316600001, 105.24540231999958, 125.30360514100016, 103.82335045199989, 104.46131577599954, 108.27659859599976, 112.3979392419999, 98.73213698399968, 103.97352273499996, 105.95879563599988, 109.06521117199964, 109.62390643599997, 96.90153238300013, 111.45808579999948, 110.26190159499993, 107.82444827599988, 107.86878937200026, 114.23265496399995, 113.93002203299966, 106.85436856599995, 109.47281263599984, 103.18955483599962, 105.32074095999997, 106.29147421699963, 98.88183429799983, 108.4271863309998, 109.39765315599993, 108.20111117099987, 102.21361242999978, 109.69906591599965, 106.51728190499966, 109.73363959599988, 109.5072969639998, 113.14102383999989, 122.42620195999984, 104.31108397599996, 109.39765315599993, 110.03555896299986, 108.91456391999964, 101.8384343329999, 107.56734519499992, 108.91456391999964, 108.12601086100017, 106.77894061599977, 103.11430531099973, 107.56734519499992, 113.10754879899969, 113.93002203299966, 107.67386054099984, 108.3520860210001, 121.07862997699976, 101.8384343329999, 106.21646275900002, 108.91456391999964, 103.67317816900027, 99.93296689199974, 97.31079737499999, 101.91362418799963, 107.19083019599998, 100.64186324799971, 96.67706088700015, 110.59785819999979, 104.31108397599996, 105.20627040099976, 106.29147421699963, 112.65415105499983, 115.68418947999999, 108.20111117099987, 110.37142621599969, 109.24655935600003, 112.65415105499983, 98.50739859999999, 105.65770824099991, 114.33682166499989, 104.16046597599984, 106.36687233199973, 105.17045003199974, 108.91456391999964, 110.29581964599993, 114.82342693599958, 110.37142621599969, 123.3178555239997, 113.14102383999989, 105.65770824099991, 110.59785819999979, 109.95998222799972, 105.99065507099976, 101.7636300669999, 107.08026560599978, 103.11430531099973, 107.26628798099978, 102.81407900099975, 100.97957314899986, 109.24655935600003, 104.16046597599984, 100.60454294800002, 107.19083019599998, 111.08068050599968, 108.12601086100017, 108.4271863309998, 113.14102383999989, 108.27659859599976, 112.88084992699987, 102.96419215599963, 101.16326799399963, 110.18632485999956, 110.5222516299998, 97.08623711099995, 104.34327039999948, 106.85436856599995, 106.06566652899983, 108.71889331600005, 101.46325623599978, 123.62227080699995, 117.59364827199988, 104.71919089599965, 106.51728190499966, 112.80554242499989, 99.70804980399998, 102.96419215599963, 109.95998222799972, 105.50735779599995, 111.94510706500023, 102.25109649399997, 101.05473336399973, 104.23577497599968, 107.04030158899991, 99.63333419599962, 113.93002203299966, 120.06076118199985, 92.85796468300009, 107.89993570099978, 111.30720125800008, 107.37229795600001, 101.27982857199959, 106.70351266599982, 111.86944101999984, 114.82342693599958, 106.21646275900002, 99.14527457199961, 113.62777759099959, 107.26628798099978, 105.38863012199977, 107.59837311599995, 113.62777759099959, 103.44772672099998, 108.08542313199973, 107.89993570099978, 107.41681658799985, 111.15592883799968, 95.1769564809997, 109.95998222799972, 112.3521446809998, 105.99065507099976, 104.86948182399965, 111.23156504799954, 110.59785819999979, 106.40257448599982, 108.56818693599985, 109.020306076, 117.44217011599972, 99.70804980399998, 102.40153587400005, 106.85436856599995, 103.52261983900007, 97.72405356599984, 112.42745218299979, 107.82444827599988, 112.98996113599969, 111.08068050599968, 99.48313271599977, 108.64334641599999, 109.17139987599967, 113.21674936, 101.16326799399963, 118.8200688400002, 109.80921633099956, 105.35700735099954, 112.91423561599981, 101.53844609099974, 105.99065507099976, 104.64385225599972, 105.35700735099954, 109.17139987599967, 111.64283091599987, 97.01125551599989, 111.7184969609998, 115.45704501600017, 111.0386666490001, 109.76773683399983, 111.49188685699983, 121.33645345599984, 112.98996113599969, 107.26628798099978, 110.29581964599993, 112.20075331099974, 103.372447556, 103.44772672099998, 111.23156504799954, 108.94514659599986, 104.26793175999978, 105.1312884309998, 104.01023417599981, 111.23156504799954, 112.87138950799977, 99.25860075999981, 126.83164426100006, 116.57703107699967, 108.53775215599967, 107.67386054099984, 106.70351266599982, 105.1312884309998, 101.46325623599978, 107.11537241100018, 101.87576952799986, 104.71919089599965, 98.28266021599984, 95.06670438399988, 105.76484738299973, 105.91525695599967, 104.75521906599988, 111.0050442959996, 116.8043536609996, 107.19083019599998, 112.20075331099974, 110.92940808599974, 101.31326211499982], \"power_mean\": 107.5474748373255, \"energy_millijoules\": 7070.054253667127, \"energy_joules\": 7.070054253667127, \"coremark_score\": 3803.322583, \"coremarks_per_mhz\": 3.247372424009563, \"ulpmark_cm_score\": 35.360407576834206}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1519.0033776120001, 1521.48183894, 1519.4286160440001, 1516.670575408, 1517.0966648460003, 1518.7201280400002, 1520.55957298, 1529.897663244, 1521.69484218, 1524.52434477, 1520.0671471619999, 1520.7056782799998, 1522.120429575, 1511.787109658, 1516.1776348320002, 1519.286991258, 1525.4415048, 1517.5184039260002, 1516.8828383839998], \"power_mean\": 1519.9508085231053, \"energy_millijoules\": 7599.7540426155265, \"energy_joules\": 7.599754042615526}}, \"1305600\": {\"active\": {\"elapsed_sec\": 58.972919769, \"elapsed_ns\": 58972919769, \"power_samples\": [128.58819953199986, 131.78987551, 134.8721270499998, 123.57535660599979, 134.56545266700005, 133.2136485239996, 125.20329127599985, 129.4775664240001, 142.3490511519999, 125.88926935600011, 122.78561724999963, 123.42328483599977, 130.0343892799997, 127.54164247599988, 119.40793488299983, 128.51212223799962, 137.18419826199988, 134.23445946399988, 123.60416747800014, 130.18750639999985, 129.88166476799984, 127.97762042500017, 131.7683499599998, 126.37453852999988, 137.97104608899986, 131.4626628679996, 128.28310605399997, 125.81291905600006, 133.5200845329996, 118.182460924, 135.50562687399974, 135.5820296999998, 128.99262389199998, 133.5200845329996, 127.16037729100003, 133.3670632139997, 133.9279042679998, 132.7336521579998, 126.32143714600011, 144.09950977099993, 123.2708221360001, 123.75629876499988, 134.48868565199973, 129.88166476799984, 127.64552781999964, 123.42328483599977, 129.24837211999989, 129.70676072800006, 135.4288302189998, 121.77164867599959, 126.85513003599976, 133.3670632139997, 132.12141017499994, 126.24502737099988, 139.649171927, 134.48868565199973, 123.22364371900017, 133.06062720499972, 128.84001802499984, 127.64552781999964, 127.95050226399985, 125.96561965599994, 125.58425969599989, 126.22177825999961, 133.06062720499972, 124.69445224599986, 130.74849623900013, 133.29035586899977, 131.40742229199986, 126.32143714600011, 133.85116708799956, 140.84303735199978, 130.74849623900013, 127.56908821000002, 135.52947050399985, 126.37453852999988, 121.69586742599995, 132.7336521579998, 124.3896801809999, 122.329189714, 128.20663660900004, 118.69454214000007, 139.16934631599997, 133.13733454999988, 123.6283368710001, 124.79865798800006, 148.47242617999973, 135.27563073800002, 127.90115097999978, 135.04563460200006, 133.77482343199995, 130.0343892799997, 124.23748976599995, 124.23748976599995, 124.79865798800006, 129.95822332800003, 117.24594503399999, 130.82508463399995, 133.5450054160001, 128.9430413519999, 134.25877828399985, 135.9132089719999, 140.61223938399985, 125.50830093600007, 135.6831234839999, 126.85513003599976, 133.85116708799956, 123.1949817159998, 118.59238943199989, 133.69808625199994, 131.48407016199963, 122.5574034819997, 120.50077833599971, 128.1301671639999, 121.39157055099963, 128.7899835119997, 119.89305009599957, 131.9427781839995, 137.81760931799977, 127.26372176799964, 134.33554529900016, 132.58029674799968, 133.06062720499972, 124.16119894100007, 135.19883408300007, 134.9688379470001, 127.34016137799995, 136.0862715159999, 122.25298819900013, 128.51212223799962, 136.7236710459997, 129.40103750399976, 122.6621441259997, 142.11807447999945, 130.74849623900013, 123.11875036600009, 126.931539811, 125.66060999600018, 130.1109478400001, 122.8904472459999, 123.52790629300011, 136.7236710459997, 127.00794958599977, 117.65167726599975, 130.82508463399995, 124.00900852599989, 127.41660098800003, 127.29057187299986, 126.70270233099995, 134.81563846599988, 131.78987551, 125.43195063600024, 129.6523816959998, 130.41678947199966, 121.69586742599995, 136.1627335119997, 137.03042633199948, 129.88166476799984, 127.18767415599996, 126.77911210600018, 130.36633978600003, 130.28975139099998, 122.8427288769999, 120.348943856, 144.02229659599948, 127.49264859999971, 126.70270233099995, 134.41231231400002, 126.55027462600015, 123.52790629300011, 133.77482343199995, 135.45303799600015, 127.11123454599965, 132.3506568519997, 125.84066097099958, 129.0191778159999, 136.23958964199983, 132.5248559029999, 122.35800058600012, 136.23958964199983, 128.45830720599997, 129.88166476799984, 131.15658286200005, 123.52790629300011, 127.825073686, 124.57008739599951, 128.56078920799996, 139.09276578599975, 134.25877828399985, 122.81421589599972, 138.65008251699987, 128.9430413519999, 130.36633978600003, 133.0853693839997, 140.13304587599987, 130.28975139099998, 127.90115097999978, 132.90760588599983, 129.095706736, 133.6213490719997, 118.99797303199989, 128.53441398799987, 129.5762157439999, 132.12141017499994, 123.68003757999986, 133.23845021999978, 131.0799646319997, 132.83089854099944, 132.21841989399968, 136.80016272399962, 140.68930377399988, 127.97762042500017, 128.9430413519999, 134.66243898499988, 128.61091307300012, 116.38104421599996, 136.80016272399962, 128.9430413519999, 130.28975139099998, 129.728940256, 122.8904472459999, 129.55409534399973, 134.43244284899993, 122.76685877500017, 137.20346779500005, 145.1431843050002, 125.35560033599995, 137.3569045659999, 133.46826823599963, 125.20329127599985, 125.84066097099958, 124.57008739599951, 128.45830720599997, 131.7132276399998], \"power_mean\": 129.71670824895287, \"energy_millijoules\": 7649.773028264278, \"energy_joules\": 7.649773028264278, \"coremark_score\": 4239.731371, \"coremarks_per_mhz\": 3.2473432682291667, \"ulpmark_cm_score\": 32.68070818262233}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1526.29089109, 1520.63065672, 1519.8544866, 1521.197776525, 1519.64168868, 1526.4332285240002, 1516.4596078620002, 1520.4884892399998, 1519.2873371550002, 1525.011888289, 1524.1604424, 1527.9791813640002, 1531.0938432359999, 1529.960110776, 1521.76066559, 1525.5813657099998, 1527.7055829940002, 1513.4190401039998, 1519.145652852], \"power_mean\": 1522.9527334584736, \"energy_millijoules\": 7614.763667292368, \"energy_joules\": 7.614763667292368}}, \"1459200\": {\"active\": {\"elapsed_sec\": 52.865853053, \"elapsed_ns\": 52865853053, \"power_samples\": [170.0226840140001, 164.79308171599996, 168.20432768199998, 180.74782123199975, 174.07799102199988, 161.52542284599986, 191.86891217800007, 170.0226840140001, 168.11509706799984, 170.1897831389997, 178.7614441459998, 173.68057480599987, 174.87249471100017, 167.1762212919998, 164.93717383700005, 172.2494320479998, 164.7029004850001, 168.36741200200004, 168.7591752559997, 177.41281104099994, 164.30408821299966, 172.8079518070001, 168.830349115, 170.25767042999996, 169.78769759800002, 162.9556162079998, 175.58381848499994, 174.31360114999984, 174.07799102199988, 167.88037812400012, 165.19558243000006, 165.41791515799991, 170.0226840140001, 161.8637196080001, 171.69501707200016, 180.59028867999996, 161.13584337599968, 166.0551061489998, 174.07799102199988, 168.595540819, 162.7216097439998, 169.30700025799956, 167.6456591799997, 172.96517523700004, 165.66448654199985, 161.0481185719998, 169.63077173800002, 170.97933335799962, 167.57830624899998, 164.7807241669998, 181.86044684500007, 167.95834982799965, 170.42485890700004, 172.40619282399985, 169.39618769599997, 167.89151799999968, 164.62467564999997, 167.0127510919997, 172.64153547999967, 177.09793534599976, 162.00637238499985, 165.8206540929998, 171.6164648319998, 166.14113831099985, 174.48360790999982, 178.36785591599983, 176.70102384999973, 169.47424825200005, 172.18026749800015, 170.8226912269995, 168.3607325229998, 156.4447901860001, 161.13584337599968, 168.8372061299999, 167.72363088399993, 176.46505689799983, 161.21351903599975, 170.26787337699966, 170.11129037399996, 170.91070316799983, 174.8768574879998, 179.16231194500006, 182.02407058599965, 166.93440711199992, 171.8573286159999, 169.9547073709998, 167.48931385599963, 159.31072001799998, 167.48931385599963, 172.49431122099986, 175.98513187599974, 156.61137894599983, 173.92105208399994, 175.11264573599988, 170.91595799199968, 172.5729229359997, 180.91186072999994, 179.87418844599983, 164.94959105599946, 175.11264573599988, 168.20432768199998, 172.09267127199973, 161.8505611579999, 164.15612894600008, 173.288173636, 174.55809420600008, 156.92205146200013, 168.68074216099967, 166.8564648959998, 169.0042754200001, 172.49431122099986, 180.83326725599954, 185.83347636099984, 165.66448654199985, 173.288173636, 172.49431122099986, 175.3480302370001, 160.26925542399954, 166.93440711199992, 172.49431122099986, 168.20432768199998, 167.410940236, 167.3325666159999, 166.69977693600003, 170.75400151999997, 165.35960330499984, 171.3812109439998, 188.61490346399978, 162.96455185599984, 171.3812109439998, 179.48030345099983, 175.43502007599977, 156.0563977759998, 171.45976318399948, 174.32239472600008, 168.68074216099967, 166.69977693600003, 157.10350672899972, 170.50900428599994, 175.98513187599974, 164.01214023999978, 160.74586351599987, 182.34094464400005, 165.58660349599973, 168.91563922499995, 173.3668151859997, 170.11129037399996, 168.1263262959999, 168.1263262959999, 172.5729229359997, 175.67089767599964, 164.87133638599994, 154.70875770099974, 173.05265227600012, 167.343497953, 168.054484064, 166.69977693600003, 177.4203869439998, 179.32283041599976, 169.87621460599985, 166.69977693600003, 174.40109575099996, 170.98925540799974, 155.90072147599994, 174.79812682299985, 172.65113151399987, 170.5972998719999, 167.1762212919998, 162.80862198399996, 175.9931229939998, 168.28938112799983, 170.3620459839999, 166.54349073999992, 179.959753504, 171.14595705599982, 159.07715914599999, 167.969519386, 170.50900428599994, 169.23926183599997, 166.4720644599995, 175.9931229939998, 167.3325666159999, 171.8573286159999, 165.75037080799984, 167.89151799999968, 177.6565320159998, 172.0234472049999, 167.410940236, 175.6787697599998, 180.59667659199954, 167.969519386, 163.52333926599977, 168.04792284099995, 167.89151799999968, 164.23435378099975, 160.90201561599974, 171.70056783999962, 170.03320013599955, 168.44584509699985, 165.5083189909999, 171.22450929599972, 169.9547073709998, 169.7196316029997, 164.09039490999976, 170.98925540799974, 177.6565320159998, 168.04792284099995, 164.7152283519997, 170.91070316799983, 173.05265227600012], \"power_mean\": 169.88875431007605, \"energy_millijoules\": 8981.313920713701, \"energy_joules\": 8.981313920713701, \"coremark_score\": 4729.563556, \"coremarks_per_mhz\": 3.241203094846491, \"ulpmark_cm_score\": 27.835570853772555}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1533.7748592359999, 1516.7395744970001, 1519.28714694, 1530.522228054, 1526.1411931919997, 1520.6939710100003, 1524.3030264000004, 1535.9636435, 1535.684318028, 1527.911762418, 1523.740186824, 1526.9929363879999, 1524.0865331989999, 1517.519439566, 1530.593817624, 1530.522228054, 1523.5980275519998, 1522.888919055, 1517.235944328], \"power_mean\": 1525.6947239928948, \"energy_millijoules\": 7628.473619964474, \"energy_joules\": 7.628473619964474}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sdm439/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 250 ms\nBaseline power usage: 1506 mW\n\n\n===== CPU 1 =====\nFrequencies: 960 1305 1497 1708 1958 2016\n\n 960:  3104     3.2 C/MHz     90 mW    7.2 J   34.5 I/mJ    80.5 s\n1305:  4240     3.2 C/MHz    114 mW    6.7 J   37.1 I/mJ    59.0 s\n1497:  4863     3.2 C/MHz    161 mW    8.3 J   30.1 I/mJ    51.4 s\n1708:  5549     3.2 C/MHz    209 mW    9.4 J   26.6 I/mJ    45.1 s\n1958:  6355     3.2 C/MHz    263 mW   10.3 J   24.2 I/mJ    39.3 s\n2016:  6547     3.2 C/MHz    284 mW   10.9 J   23.0 I/mJ    38.2 s\n\n\n===== CPU 4 =====\nFrequencies: 768 998 1171 1305 1459\n\n 768:  2494     3.2 C/MHz     61 mW    6.1 J   40.9 I/mJ   100.3 s\n 998:  3229     3.2 C/MHz     76 mW    5.9 J   42.7 I/mJ    77.4 s\n1171:  3803     3.2 C/MHz    108 mW    7.1 J   35.4 I/mJ    65.7 s\n1305:  4240     3.2 C/MHz    130 mW    7.6 J   32.7 I/mJ    59.0 s\n1459:  4730     3.2 C/MHz    170 mW    9.0 J   27.8 I/mJ    52.9 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sdm439/main/uptime.txt",
    "content": " 12:12:03 up 14 min,  load average: 2.91, 2.78, 1.84\n"
  },
  {
    "path": "results/sdm439/main/versions.txt",
    "content": "Kernel: Linux version 4.9.268-LOLZ-freqbench (Jprimero15@LinuxDEV) (Proton clang version 13.0.0 (https://github.com/llvm/llvm-project f933f7fbd047802456f9d614daf0f0dfb3c7c45f)) #1 SMP PREEMPT Sat May 22 04:36:09 UTC 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sdm439/olive/cmdline.txt",
    "content": "cgroup_disable=pressure sched_enable_hmp=1 kpti=0 androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 androidboot.bootdevice=7824900.sdhci loop.max_part=7 androidboot.usbconfigfs=true androidboot.init_fatal_reboot_target=recovery printk.devkmsg=on console=ttyMSM0,115200,n8 androidboot.console=ttyMSM0 androidboot.android_dt_dir=/non-existent androidboot.boot_devices=soc/7824900.sdhci androidboot.super_partition=system rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 androidboot.emmc=true androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=40fca06b-79d8-07f1-da12-69a302153e99 androidboot.serialno=REDACTED androidboot.secureboot=1 androidboot.dp=0x0 androidboot.efuse=1 androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_ili9881h_hdplus_video_c3i:bklic=24:wpoint=288308:1:none:cfg:single_dsi want_initramfs rootwait ro init=/init androidboot.dtbo_idx=0 androidboot.dtb_idx=0\n"
  },
  {
    "path": "results/sdm439/olive/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 4 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd03\nCPU revision\t: 4\n\nHardware\t: Qualcomm Technologies, Inc SDM439\n"
  },
  {
    "path": "results/sdm439/olive/device.txt",
    "content": "Model: Olive QRD;\nCompatible: qcom,sdm439;xiaomi,olive;\n"
  },
  {
    "path": "results/sdm439/olive/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000100 [0x410fd034]\n[    0.000000] Linux version 4.19.306-freqbench-test-gce0ce72ffcb4 (Jprimero15@Linux) (Android (10386919, +pgo, +bolt, +lto, -mlgo, based on r498229) clang version 17.0.3 (https://android.googlesource.com/toolchain/llvm-project e34ed7d63863b45858e74126edaa738e75887800), LLD 17.0.3) #1 SMP PREEMPT Thu Feb 22 08:40:02 PST 2024\n[    0.000000] Machine model: Olive QRD\n[    0.000000] efi: Getting EFI parameters from FDT:\n[    0.000000] efi: UEFI not found.\n[    0.000000] Reserved memory: created CMA memory pool at 0x000000008f800000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node venus_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ffc00000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f8c00000, size 112 MiB\n[    0.000000] OF: reserved mem: initialized node secure_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x000000008f000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@0, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: invalid size property in 'mem_dump_region' node.\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f7c00000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6c00000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000084a00000, size 29 MiB\n[    0.000000] OF: reserved mem: initialized node other_ext_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086800000, size 85 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008bd00000, size 24 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_fw_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008d500000, size 7 MiB\n[    0.000000] OF: reserved mem: initialized node wcnss_fw_region@0, compatible id removed-dma-pool\n[    0.000000] cma: Reserved 16 MiB at 0x00000000f5c00000\n[    0.000000] On node 0 totalpages: 945920\n[    0.000000]   DMA32 zone: 15360 pages used for memmap\n[    0.000000]   DMA32 zone: 0 pages reserved\n[    0.000000]   DMA32 zone: 945920 pages, LIFO batch:63\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.0 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] Did not receive the expected number of bytes from PRNG: 0\n[    0.000000] percpu: Embedded 24 pages/cpu s60440 r8192 d29672 u98304\n[    0.000000] pcpu-alloc: s60440 r8192 d29672 u98304 alloc=24*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: enabling workaround for ARM erratum 845719\n[    0.000000] CPU features: kernel page table isolation forced OFF by kpti command line option\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 930560\n[    0.000000] Kernel command line: cgroup_disable=pressure sched_enable_hmp=1 kpti=0 androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 androidboot.bootdevice=7824900.sdhci loop.max_part=7 androidboot.usbconfigfs=true androidboot.init_fatal_reboot_target=recovery printk.devkmsg=on console=ttyMSM0,115200,n8 androidboot.console=ttyMSM0 androidboot.android_dt_dir=/non-existent androidboot.boot_devices=soc/7824900.sdhci androidboot.super_partition=system rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 androidboot.emmc=true androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=40fca06b-79d8-07f1-da12-69a302153e99 androidboot.serialno=REDACTED androidboot.secureboot=1 androidboot.dp=0x0 androidboot.efuse=1 androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_ili9881h_hdplus_video_c3i:bklic=24:wpoint=288308:1:none:cfg:single_dsi skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=0 androidboot.dtb_idx=0\n[    0.000000] cgroup: Disabling pressure control group feature\n[    0.000000] cgroup: Disabling pressure control group feature\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 131072 bytes\n[    0.000000] log_buf_len: 1048576 bytes\n[    0.000000] early log buf free: 126080(96%)\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off\n[    0.000000] Memory: 3453852K/3783680K available (22012K kernel code, 2988K rwdata, 7088K rodata, 2048K init, 3408K bss, 145508K reserved, 184320K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n\n[    0.000000] **********************************************************\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **                                                      **\n[    0.000000] ** trace_printk() being used. Allocating extra memory.  **\n[    0.000000] **                                                      **\n[    0.000000] ** This means that this is a DEBUG kernel and it is     **\n[    0.000000] ** unsafe for production use.                           **\n[    0.000000] **                                                      **\n[    0.000000] ** If you see this message and you are not debugging    **\n[    0.000000] ** the kernel, report this immediately to your vendor!  **\n[    0.000000] **                                                      **\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **********************************************************\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000005] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000016] clocksource: Switched to clocksource arch_sys_counter\n[    0.001435] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001447] pid_max: default: 32768 minimum: 301\n[    0.001581] Security Framework initialized\n[    0.001589] SELinux:  Initializing.\n[    0.001702] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001721] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.003594] ASID allocator initialised with 32768 entries\n[    0.003742] rcu: Hierarchical SRCU implementation.\n[    0.007629] cpu_clock_a53_init_little: A53 Power clocks configured\n[    0.007747] scm_call failed: func id 0x42000c1c, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.007753] Failed to enable shmbridge, rsp = 0, ret = -95\n[    0.007756] shmbridge is not supported by this target\n[    0.007796] EFI services will not be available.\n[    0.008394] smp: Bringing up secondary CPUs ...\n[    0.010144] Detected VIPT I-cache on CPU1\n[    0.010211] CPU1: Booted secondary processor 0x0000000101 [0x410fd034]\n[    0.012079] Detected VIPT I-cache on CPU2\n[    0.012120] CPU2: Booted secondary processor 0x0000000102 [0x410fd034]\n[    0.021859] Detected VIPT I-cache on CPU3\n[    0.021899] CPU3: Booted secondary processor 0x0000000103 [0x410fd034]\n[    0.023865] Detected VIPT I-cache on CPU4\n[    0.023961] CPU4: Booted secondary processor 0x0000000000 [0x410fd034]\n[    0.026144] Detected VIPT I-cache on CPU5\n[    0.026218] CPU5: Booted secondary processor 0x0000000001 [0x410fd034]\n[    0.028364] Detected VIPT I-cache on CPU6\n[    0.028439] CPU6: Booted secondary processor 0x0000000002 [0x410fd034]\n[    0.030604] Detected VIPT I-cache on CPU7\n[    0.030680] CPU7: Booted secondary processor 0x0000000003 [0x410fd034]\n[    0.031203] smp: Brought up 1 node, 8 CPUs\n[    0.031209] SMP: Total of 8 processors activated.\n[    0.031216] CPU features: detected: 32-bit EL0 Support\n[    0.031335] CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching\n[    0.031339] CPU: All CPU(s) started at EL1\n[    0.031418] alternatives: patching kernel code\n[    0.085287] Registered cp15_barrier emulation handler\n[    0.085306] Registered setend emulation handler\n[    0.085620] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.085634] futex hash table entries: 2048 (order: 5, 131072 bytes)\n[    0.092182] pinctrl core: initialized pinctrl subsystem\n[    0.092263] regulator: Failed to create debugfs directory\n[    0.092552] DMI not present or invalid.\n[    0.092564] xiaomi_sdm439_mach_set_machine: Set machine to: Redmi 8 (olive)\n[    0.092585] xiaomi_sdm439_backlight_ic_type_init: Backlight IC type is KTD3136\n[    0.093045] NET: Registered protocol family 16\n[    0.094588] schedtune: configured to support 6 boost groups\n[    0.094729] audit: initializing netlink subsys (disabled)\n[    0.095410] cpuidle: using governor qcom\n[    0.095756] NET: Registered protocol family 42\n[    0.096225] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.096395] audit: type=2000 audit(0.089:1): state=initialized audit_enabled=0 res=1\n[    0.097967] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.110686] console [pstore-1] enabled\n[    0.110772] pstore: Registered ramoops as persistent store backend\n[    0.110778] ramoops: attached 0x100000@0x9ff00000, ecc: 0/0\n[    0.117563] ------------[ cut here ]------------\n[    0.117635] WARNING: CPU: 0 PID: 1 at drivers/irqchip/irq-gic.c:1008 gic_irq_domain_alloc+0x128/0x134\n[    0.117639] Modules linked in:\n[    0.117650] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.19.306-freqbench-test-gce0ce72ffcb4 #1\n[    0.117654] Hardware name: Olive QRD (DT)\n[    0.117660] pstate: 60400005 (nZCv daif +PAN -UAO)\n[    0.117667] pc : gic_irq_domain_alloc+0x128/0x134\n[    0.117673] lr : gic_irq_domain_alloc+0x128/0x134\n[    0.117676] sp : ffffff800804b670\n[    0.117680] x29: ffffff800804b670 x28: 0000000000000000 \n[    0.117687] x27: ffffffa114d4af49 x26: 0000000000000000 \n[    0.117694] x25: ffffffa114e82000 x24: 0000000000000001 \n[    0.117700] x23: fffffff86f78f480 x22: 000000000000008c \n[    0.117706] x21: fffffff806710800 x20: 0000000000000032 \n[    0.117712] x19: 0000000000000001 x18: fffffff871640008 \n[    0.117719] x17: 0000000000000000 x16: 0000000000000000 \n[    0.117725] x15: 0000000000000000 x14: 0000000000000086 \n[    0.117731] x13: 0000000000000034 x12: 0000000000000000 \n[    0.117737] x11: 0000000000000000 x10: ffffffffffffffff \n[    0.117744] x9 : 526365e073ed5300 x8 : 526365e073ed5300 \n[    0.117750] x7 : 0000000000000000 x6 : fffffff871642a50 \n[    0.117756] x5 : 0000000000000000 x4 : 000000000000000e \n[    0.117762] x3 : 0000000000002d2d x2 : 0000000000000001 \n[    0.117768] x1 : 0000000000000000 x0 : 0000000000000024 \n[    0.117775] Call trace:\n[    0.117782]  gic_irq_domain_alloc+0x128/0x134\n[    0.117791]  irq_domain_alloc_irqs_parent+0x20/0x34\n[    0.117798]  msm_mpm_gic_chip_alloc+0xfc/0x18c\n[    0.117804]  __irq_domain_alloc_irqs+0x1a4/0x300\n[    0.117811]  irq_create_fwspec_mapping+0x290/0x380\n[    0.117816]  irq_create_of_mapping+0x6c/0x90\n[    0.117826]  of_irq_to_resource+0xd0/0x200\n[    0.117833]  of_irq_to_resource_table+0x38/0x80\n[    0.117839]  of_device_alloc+0x13c/0x1ec\n[    0.117845]  of_platform_device_create_pdata+0x50/0xdc\n[    0.117850]  of_platform_bus_create+0x20c/0x3cc\n[    0.117856]  of_platform_bus_create+0x258/0x3cc\n[    0.117862]  of_platform_populate+0x70/0xc4\n[    0.117870]  of_platform_default_populate_init+0xac/0xc8\n[    0.117877]  do_one_initcall+0x180/0x2f4\n[    0.117886]  do_initcall_level+0x140/0x168\n[    0.117893]  do_basic_setup+0x30/0x48\n[    0.117900]  kernel_init_freeable+0xb8/0x138\n[    0.117909]  kernel_init+0x14/0x294\n[    0.117915]  ret_from_fork+0x10/0x18\n[    0.117939] ---[ end trace 1ad3f03d52beb5ce ]---\n[    0.119642] ------------[ cut here ]------------\n[    0.119691] WARNING: CPU: 0 PID: 1 at drivers/irqchip/irq-gic.c:1008 gic_irq_domain_alloc+0x128/0x134\n[    0.119693] Modules linked in:\n[    0.119702] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.306-freqbench-test-gce0ce72ffcb4 #1\n[    0.119705] Hardware name: Olive QRD (DT)\n[    0.119711] pstate: 60400005 (nZCv daif +PAN -UAO)\n[    0.119717] pc : gic_irq_domain_alloc+0x128/0x134\n[    0.119723] lr : gic_irq_domain_alloc+0x128/0x134\n[    0.119726] sp : ffffff800804b670\n[    0.119730] x29: ffffff800804b670 x28: 0000000000000000 \n[    0.119737] x27: ffffffa114d4af49 x26: 0000000000000000 \n[    0.119743] x25: ffffffa114e82000 x24: 0000000000000001 \n[    0.119749] x23: fffffff86f794d00 x22: 000000000000014c \n[    0.119756] x21: fffffff806710800 x20: 0000000000000038 \n[    0.119762] x19: 0000000000000001 x18: fffffff871640008 \n[    0.119768] x17: 0000000000000000 x16: 0000000000000000 \n[    0.119774] x15: 0000000000000000 x14: 0000000000000086 \n[    0.119780] x13: 0000000000000034 x12: 0000000000000000 \n[    0.119786] x11: 0000000000000000 x10: ffffffffffffffff \n[    0.119793] x9 : 526365e073ed5300 x8 : 526365e073ed5300 \n[    0.119799] x7 : 0000000000000000 x6 : fffffff871643430 \n[    0.119805] x5 : 0000000000000000 x4 : 000000000000000e \n[    0.119811] x3 : 0000000000002d2d x2 : 0000000000000001 \n[    0.119817] x1 : 0000000000000000 x0 : 0000000000000024 \n[    0.119823] Call trace:\n[    0.119830]  gic_irq_domain_alloc+0x128/0x134\n[    0.119837]  irq_domain_alloc_irqs_parent+0x20/0x34\n[    0.119842]  msm_mpm_gic_chip_alloc+0xfc/0x18c\n[    0.119849]  __irq_domain_alloc_irqs+0x1a4/0x300\n[    0.119855]  irq_create_fwspec_mapping+0x290/0x380\n[    0.119861]  irq_create_of_mapping+0x6c/0x90\n[    0.119868]  of_irq_to_resource+0xd0/0x200\n[    0.119874]  of_irq_to_resource_table+0x38/0x80\n[    0.119880]  of_device_alloc+0x13c/0x1ec\n[    0.119886]  of_platform_device_create_pdata+0x50/0xdc\n[    0.119892]  of_platform_bus_create+0x20c/0x3cc\n[    0.119898]  of_platform_bus_create+0x258/0x3cc\n[    0.119903]  of_platform_populate+0x70/0xc4\n[    0.119909]  of_platform_default_populate_init+0xac/0xc8\n[    0.119915]  do_one_initcall+0x180/0x2f4\n[    0.119923]  do_initcall_level+0x140/0x168\n[    0.119929]  do_basic_setup+0x30/0x48\n[    0.119936]  kernel_init_freeable+0xb8/0x138\n[    0.119943]  kernel_init+0x14/0x294\n[    0.119949]  ret_from_fork+0x10/0x18\n[    0.119953] ---[ end trace 1ad3f03d52beb5cf ]---\n[    0.125145] platform soc:qcom,adsprpc-mem: assigned reserved memory node adsp_region@0\n[    0.126846] platform 4080000.qcom,mss: assigned reserved memory node modem_region@0\n[    0.127011] platform c200000.qcom,lpass: assigned reserved memory node adsp_fw_region@0\n[    0.127177] platform a21b000.qcom,pronto: assigned reserved memory node wcnss_fw_region@0\n[    0.127313] platform 1de0000.qcom,venus: assigned reserved memory node venus_region@0\n[    0.144984] platform soc:qcom,kgsl-hyp: assigned reserved memory node gpu_region@0\n[    0.149183] Unable to find DT property: qcom,msm-imem-download_mode\n[    0.150392] Unable to find DT property: qcom,msm-imem-emergency_download_mode\n[    0.152438] sps:sps is ready.\n[    0.154797] MSM Memory Dump base table set up\n[    0.154809] MSM Memory Dump apps data table set up\n[    0.155448] cpu-clock-8939 b011050.qcom,cpu-clock-8939: No PVS version available. Defaulting to 0!\n[    0.155455] cpu-clock-8939 b011050.qcom,cpu-clock-8939: Speed bin: 4 PVS Version: 0\n[    0.156012] msm_watchdog b017000.qcom,wdt: wdog absent resource not present\n[    0.156310] msm_watchdog b017000.qcom,wdt: MSM Watchdog Initialized\n[    0.156524] spmi spmi-0: PMIC arbiter version v2 (0x20010000)\n[    0.160107] pm8953_s5_avs_limit: Bringing 0uV into 490000-490000uV\n[    0.160204] spm_regulator_probe: name=pm8953_s5, range=LV, voltage=735000 uV, mode=AUTO, step rate=2400 uV/us\n[    0.164272] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.167482] qcom_smd_rpm_probe: RPM-SMD running version 0\n[    0.169855] qcom,rpm-smd-regulator-resource soc:qcom,rpm-smd:rpm-regulator-ldoa14: qcom,regulator-hw-type is missing in DT node rc=-22\n[    0.169867] qcom,rpm-smd-regulator-resource: probe of soc:qcom,rpm-smd:rpm-regulator-ldoa14 failed with error -22\n[    0.170010] qcom,rpm-smd-regulator-resource soc:qcom,rpm-smd:rpm-regulator-ldoa15: qcom,regulator-hw-type is missing in DT node rc=-22\n[    0.170069] qcom,rpm-smd-regulator-resource: probe of soc:qcom,rpm-smd:rpm-regulator-ldoa15 failed with error -22\n[    0.171265] qcom,rpm-smd-regulator-resource soc:qcom,rpm-smd:rpm-regulator-ldoa4: qcom,regulator-hw-type is missing in DT node rc=-22\n[    0.171276] qcom,rpm-smd-regulator-resource: probe of soc:qcom,rpm-smd:rpm-regulator-ldoa4 failed with error -22\n[    0.172061] cpr_regulator_probe: apc_corner: mem_acc initialization error rc=-517\n[    0.186053] cryptd: max_cpu_qlen set to 1000\n[    0.187825] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.187834] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.187857] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.187870] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.187908] mdss_pll_util_resource_init+0x2c/0xcc->msm_dss_config_vreg: gdsc get failed. rc=-517\n[    0.187913] mdss_pll_util_resource_init: Vreg config failed rc=-517\n[    0.187917] mdss_pll_probe: Pll ndx=0 resource init failed rc=-517\n[    0.187960] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.187966] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.187985] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.187996] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.188022] mdss_pll_util_resource_init+0x2c/0xcc->msm_dss_config_vreg: gdsc get failed. rc=-517\n[    0.188026] mdss_pll_util_resource_init: Vreg config failed rc=-517\n[    0.188030] mdss_pll_probe: Pll ndx=1 resource init failed rc=-517\n[    0.189348] ------------[ cut here ]------------\n[    0.189406] WARNING: CPU: 0 PID: 1 at drivers/soc/qcom/smem.c:652 qcom_smem_get+0x1bc/0x1f0\n[    0.189410] Modules linked in:\n[    0.189422] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.306-freqbench-test-gce0ce72ffcb4 #1\n[    0.189425] Hardware name: Olive QRD (DT)\n[    0.189432] pstate: 60400005 (nZCv daif +PAN -UAO)\n[    0.189438] pc : qcom_smem_get+0x1bc/0x1f0\n[    0.189444] lr : qcom_smem_get+0x1b8/0x1f0\n[    0.189447] sp : ffffff800804bba0\n[    0.189451] x29: ffffff800804bbb0 x28: 0000000000000000 \n[    0.189458] x27: 0000000000000000 x26: 0000000000000000 \n[    0.189464] x25: 0000000000000000 x24: ffffffa115119028 \n[    0.189471] x23: ffffffa11520db00 x22: ffffffa11554c000 \n[    0.189477] x21: fffffff870d88000 x20: 000000000000025a \n[    0.189484] x19: ffffffffffffffea x18: fffffff871640008 \n[    0.189490] x17: 0000000000000000 x16: 0000000000000000 \n[    0.189496] x15: 0000000000000000 x14: 0000000000000086 \n[    0.189502] x13: 0000000000000034 x12: 0000000000000000 \n[    0.189508] x11: 0000000000000000 x10: ffffffffffffffff \n[    0.189515] x9 : 526365e073ed5300 x8 : 526365e073ed5300 \n[    0.189521] x7 : 0000000000000000 x6 : fffffff871644f54 \n[    0.189527] x5 : 0000000000000000 x4 : 000000000000000e \n[    0.189533] x3 : 0000000000002d2d x2 : 0000000000000001 \n[    0.189539] x1 : 0000000000000000 x0 : 0000000000000024 \n[    0.189546] Call trace:\n[    0.189553]  qcom_smem_get+0x1bc/0x1f0\n[    0.189561]  msm_pil_init+0x110/0x21c\n[    0.189569]  do_one_initcall+0x180/0x2f4\n[    0.189578]  do_initcall_level+0x140/0x168\n[    0.189584]  do_basic_setup+0x30/0x48\n[    0.189591]  kernel_init_freeable+0xb8/0x138\n[    0.189600]  kernel_init+0x14/0x294\n[    0.189606]  ret_from_fork+0x10/0x18\n[    0.189611] ---[ end trace 1ad3f03d52beb5d0 ]---\n[    0.190801] KPI: Bootloader start count = 22462\n[    0.190806] KPI: Bootloader end count = 138915\n[    0.190809] KPI: Bootloader display count = 40064\n[    0.190812] KPI: Bootloader load kernel count = 7529\n[    0.190817] KPI: Kernel MPM timestamp = 154618\n[    0.190820] KPI: Kernel MPM Clock frequency = 32768\n[    0.190839] socinfo_print: v0.10, id=353, ver=1.0, raw_id=191, raw_ver=0, hw_plat=11, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=2, pmic_model=65558, pmic_die_revision=65536 foundry_id=1 serial_number=2922791761\n[    0.192138] arm-smmu 1c40000.arm,smmu-kgsl: Couldn't get clock: gpu_ahb_clk\n[    0.192623] arm-smmu 1e00000.qcom,iommu: Couldn't get clock: iface_clk\n[    0.194887] Error: Driver 'arm-smmu' is already registered, aborting...\n[    0.195253] SCSI subsystem initialized\n[    0.195417] usbcore: registered new interface driver usbfs\n[    0.195461] usbcore: registered new interface driver hub\n[    0.195500] usbcore: registered new device driver usb\n[    0.196188] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pm8953@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'warm' boot\n[    0.196208] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pm8953@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from KPDPWR_N (Long Power Key Hold)\n[    0.196457] input: qpnp_pon as /devices/platform/soc/200f000.qcom,spmi/spmi-0/spmi0-00/200f000.qcom,spmi:qcom,pm8953@0:qcom,power-on@800/input/input0\n[    0.197409] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pmi632@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'warm' boot\n[    0.197436] qcom,qpnp-power-on 200f000.qcom,spmi:qcom,pmi632@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from GP2 (Keypad_Reset2)\n[    0.197883] i2c-msm-v2 78b6000.i2c: error on clk_get(core_clk):-517\n[    0.197893] i2c-msm-v2 78b6000.i2c: error probe() failed with err:-517\n[    0.198088] i2c-msm-v2 7af5000.i2c: error on clk_get(core_clk):-517\n[    0.198097] i2c-msm-v2 7af5000.i2c: error probe() failed with err:-517\n[    0.198337] media: Linux media interface: v0.10\n[    0.198368] videodev: Linux video capture interface: v2.00\n[    0.198496] BATTERY: batterydata_init: Battery-data device created!\n[    0.207944] EDAC MC: Ver: 3.0.0\n[    0.209573] platform soc:qcom,ion:qcom,ion-heap@8: assigned reserved memory node secure_region@0\n[    0.209724] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@0\n[    0.209862] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.220120] ION heap system created\n[    0.230098] ION heap mm created at 0x00000000f8c00000 with size 7000000\n[    0.230105] ION heap qsecom created at 0x00000000f7c00000 with size 1000000\n[    0.230110] ION heap qsecom_ta created at 0x00000000f6c00000 with size 1000000\n[    0.231263] PMIC@SID0: (null) v1.0 options: 2, 2, 0, 0\n[    0.231399] PMIC@SID2: PMI632 v2.0 options: 0, 0, 0, 0\n[    0.232914] SDAM base=0xb600 size=128 registered successfully\n[    0.233032] Advanced Linux Sound Architecture Driver Initialized.\n[    0.233050] pcba config =48.\n[    0.233055] xiaomi_sdm439_mach_set_machine: Set machine to: Redmi 8 (olive)\n[    0.233560] Bluetooth: Core ver 2.22\n[    0.233581] NET: Registered protocol family 31\n[    0.233585] Bluetooth: HCI device and connection manager initialized\n[    0.233593] Bluetooth: HCI socket layer initialized\n[    0.233600] Bluetooth: L2CAP socket layer initialized\n[    0.233609] NetLabel: Initializing\n[    0.233612] NetLabel:  domain hash size = 128\n[    0.233615] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\n[    0.233674] NetLabel:  unlabeled traffic allowed by default\n[    0.234295] cpu-clock-8939 b011050.qcom,cpu-clock-8939: No PVS version available. Defaulting to 0!\n[    0.234302] cpu-clock-8939 b011050.qcom,cpu-clock-8939: Speed bin: 4 PVS Version: 0\n[    0.234515] qcom,cpr-regulator b018000.regulator: Linked as a consumer to regulator.3\n[    0.234532] cpr_efuse_init: apc_corner: efuse_addr = 0x00000000000a4000 (len=0x1000)\n[    0.234561] cpr_read_fuse_revision: apc_corner: fuse revision = 1\n[    0.234572] cpr_parse_speed_bin_fuse: apc_corner: [row: 37]: 0x3ff8c071ae364351, speed_bits = 4\n[    0.234650] cpr_pvs_init: apc_corner: pvs voltage: [760000 795000 920000] uV\n[    0.234656] cpr_pvs_init: apc_corner: ceiling voltage: [810000 845000 980000] uV\n[    0.234662] cpr_pvs_init: apc_corner: floor voltage: [700000 700000 790000] uV\n[    0.234705] qcom,cpr-regulator b018000.regulator: Linked as a consumer to regulator.1\n[    0.234733] cpr_init_cpr_parameters: apc_corner: up threshold = 2, down threshold = 4\n[    0.234755] cpr_init_cpr_parameters: apc_corner: CPR is enabled by default.\n[    0.234778] cpr_init_cpr_efuse: apc_corner: [row:67] = 0x5b4a5a02df80f3c1\n[    0.234794] cpr_init_cpr_efuse: apc_corner: Corner[1]: ro_sel = 5, target quot = 662\n[    0.234801] cpr_init_cpr_efuse: apc_corner: Corner[2]: ro_sel = 5, target quot = 735\n[    0.234807] cpr_init_cpr_efuse: apc_corner: Corner[3]: ro_sel = 5, target quot = 975\n[    0.234830] cpr_adjust_target_quots: apc_corner: Corner[1]: adjusted target quot = 588\n[    0.234842] cpr_adjust_target_quots: apc_corner: Corner[3]: adjusted target quot = 945\n[    0.234911] cpr_get_corner_quot_adjustment: apc_corner: fuse corner 2 quotient adjustment scaling factor: 0.765\n[    0.234916] cpr_get_corner_quot_adjustment: apc_corner: fuse corner 3 quotient adjustment scaling factor: 0.404\n[    0.234940] cpr_virtual_corner_quot_adjust: apc_corner: corner=3 adjusted quotient=799\n[    0.234957] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[1] = 588\n[    0.234961] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[2] = 735\n[    0.234965] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[3] = 799\n[    0.234970] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[4] = 860\n[    0.234974] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[5] = 922\n[    0.234978] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[6] = 945\n[    0.235023] cpr_fill_override_voltage: apc_corner: ceiling override voltage: [810000 845000 885000 980000 980000 980000] uV\n[    0.235099] cpr_init_floor_to_ceiling_range: apc_corner: Final floor override voltages: [710000 745000 790000 805000 845000 855000] uV\n[    0.235136] cpr_config: apc_corner: Timer count: 0x17700 (for 5000 us)\n[    0.240209] apc_corner: Bringing 0uV into 1-1uV\n[    0.240599] lcdb_ldo: Bringing 5500000uV into 6000000-6000000uV\n[    0.240825] lcdb_ncp: Bringing 5500000uV into 6000000-6000000uV\n[    0.250196] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=6000mV ncp_voltage=6000mV bst_voltage=6150mV\n[    0.250503] pm8953_s1: Bringing 1uV into 16-16uV\n[    0.250901] pm8953_s2_level: Bringing 1uV into 16-16uV\n[    0.251201] pm8953_s2_floor_level: Bringing 1uV into 16-16uV\n[    0.251717] pm8953_s2_level_ao: Bringing 1uV into 16-16uV\n[    0.258216] pm8953_l19: Bringing 1224000uV into 1350000-1350000uV\n[    0.259674] pm8953_s7_level_ao: Bringing 1uV into 16-16uV\n[    0.262009] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.262016] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.262041] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.262054] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.262102] mdss_pll_util_resource_init+0x2c/0xcc->msm_dss_config_vreg: gdsc get failed. rc=-517\n[    0.262107] mdss_pll_util_resource_init: Vreg config failed rc=-517\n[    0.262111] mdss_pll_probe: Pll ndx=0 resource init failed rc=-517\n[    0.262210] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.262216] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.262236] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.262247] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.262281] mdss_pll_util_resource_init+0x2c/0xcc->msm_dss_config_vreg: gdsc get failed. rc=-517\n[    0.262285] mdss_pll_util_resource_init: Vreg config failed rc=-517\n[    0.262289] mdss_pll_probe: Pll ndx=1 resource init failed rc=-517\n[    0.262491] arm-smmu 1c40000.arm,smmu-kgsl: Couldn't get clock: gpu_ahb_clk\n[    0.263022] arm-smmu 1e00000.qcom,iommu: Couldn't get clock: iface_clk\n[    0.263299] i2c-msm-v2 78b6000.i2c: error on clk_get(core_clk):-517\n[    0.263309] i2c-msm-v2 78b6000.i2c: error probe() failed with err:-517\n[    0.263565] i2c-msm-v2 7af5000.i2c: error on clk_get(core_clk):-517\n[    0.263574] i2c-msm-v2 7af5000.i2c: error probe() failed with err:-517\n[    0.270194] qcom,gcc-8952 1800000.qcom,gcc: Linked as a consumer to regulator.9\n[    0.270224] qcom,gcc-8952 1800000.qcom,gcc: Linked as a consumer to regulator.19\n[    0.270248] qcom,gcc-8952 1800000.qcom,gcc: Linked as a consumer to regulator.11\n[    0.270427] gfx3d_clk_src: set OPP pair(19200000 Hz: 128 uV) on 1c00000.qcom,kgsl-3d0\n[    0.270441] gfx3d_clk_src: set OPP pair(200000000 Hz: 128 uV) on 1c00000.qcom,kgsl-3d0\n[    0.270467] gfx3d_clk_src: set OPP pair(650000000 Hz: 384 uV) on 1c00000.qcom,kgsl-3d0\n[    0.275445] qcom,gcc-spm-8952 b111200.qcom,spm: Registered GCC SPM clocks\n[    0.275479] qcom,gcc-8952 1800000.qcom,gcc: Registered GCC clocks\n[    0.275570] cpu-clock-8939 b011050.qcom,cpu-clock-8939: No PVS version available. Defaulting to 0!\n[    0.275578] cpu-clock-8939 b011050.qcom,cpu-clock-8939: Speed bin: 4 PVS Version: 0\n[    0.275608] cpu-clock-8939 b011050.qcom,cpu-clock-8939: Linked as a consumer to regulator.5\n[    0.276459] populate_opp_table: clock-cpu-8939: OPP tables populated (cpu 7 and 3)\n[    0.276466] print_opp_table: clock_cpu: a53_c0: OPP voltage for 768000000: 760000\n[    0.276471] print_opp_table: clock_cpu: a53_c0: OPP voltage for 1459200000: 910000\n[    0.276477] print_opp_table: clock_cpu: a53_c1: OPP voltage for 960000000: 760000\n[    0.276481] print_opp_table: clock_cpu: a53_c1: OPP voltage for 2016000000: 920000\n[    0.278590] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.278597] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.278619] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.278631] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.278675] mdss_pll 1a94400.qcom,mdss_dsi_pll: Linked as a consumer to regulator.36\n[    0.278700] mdss_pll 1a94400.qcom,mdss_dsi_pll: Linked as a consumer to regulator.17\n[    0.278922] dsi_pll_clock_register_12nm: Registered DSI PLL ndx=0 clocks successfully\n[    0.279012] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.279018] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.279038] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.279049] mdss_pll_util_parse_dt_supply: : error reading ulp load. rc=-22\n[    0.279090] mdss_pll 1a96400.qcom,mdss_dsi_pll: Linked as a consumer to regulator.36\n[    0.279116] mdss_pll 1a96400.qcom,mdss_dsi_pll: Linked as a consumer to regulator.17\n[    0.280190] dsi_pll_clock_register_12nm: Registered DSI PLL ndx=1 clocks successfully\n[    0.280423] arm-smmu 1c40000.arm,smmu-kgsl: Linked as a consumer to regulator.43\n[    0.280698] arm-smmu 1c40000.arm,smmu-kgsl: \tnon-coherent table walk\n[    0.280705] arm-smmu 1c40000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by FW configuration)\n[    0.280717] arm-smmu 1c40000.arm,smmu-kgsl: \tstream matching with 4 register groups\n[    0.281519] arm-smmu 1e00000.qcom,iommu: 1e00000.qcom,iommu supply vdd not found, using dummy regulator\n[    0.281538] arm-smmu 1e00000.qcom,iommu: Linked as a consumer to regulator.0\n[    0.281564] arm-smmu 1e00000.qcom,iommu: \tnon-coherent table walk\n[    0.281569] arm-smmu 1e00000.qcom,iommu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.281577] arm-smmu 1e00000.qcom,iommu: \tstream matching with 123 register groups\n[    0.281945] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.281953] i2c-msm-v2 78b6000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.282194] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.282570] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.282578] i2c-msm-v2 7af5000.i2c: msm_bus_scale_register_client(mstr-id:84):0 (not a problem)\n[    0.282802] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.283459] legacy-dt-em: Registering EM of 0-3\n[    0.283467] energy_model: pd0: EM: OPP:1708875 is inefficient\n[    0.283470] energy_model: pd0: EM: OPP:799312 is inefficient\n[    0.284197] legacy-dt-em: Registering EM of 4-7\n[    0.284393] cpufreq: driver msm up and running\n[    0.284603] clocksource: Switched to clocksource arch_sys_counter\n[    0.337817] VFS: Disk quotas dquot_6.6.0\n[    0.337851] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.337923] msm_bus_fabric_init_driver\n[    0.352060] msm_bus_device 580000.ad-hoc-bus: Bus scaling driver probe successful\n[    0.353014] NET: Registered protocol family 2\n[    0.353177] IP idents hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.354072] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes)\n[    0.354101] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.354223] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.354591] TCP: Hash tables configured (established 32768 bind 32768)\n[    0.354665] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.354709] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.354833] NET: Registered protocol family 1\n[    0.355279] gcc-mdss-8952 soc:qcom,gcc-mdss@1800000: Registered GCC MDSS clocks.\n[    0.355873] Trying to unpack rootfs image as initramfs...\n[    0.587023] Freeing initrd memory: 7476K\n[    0.588211] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.621318] Initialise system trusted keyrings\n[    0.621406] workingset: timestamp_bits=45 max_order=20 bucket_order=0\n[    0.623854] ntfs: driver 2.1.32 [Flags: R/W].\n[    0.623917] fuse init (API version 7.27)\n[    0.628180] Key type asymmetric registered\n[    0.628183] Asymmetric key parser 'x509' registered\n[    0.628192] io scheduler noop registered\n[    0.628257] io scheduler cfq registered (default)\n[    0.628261] io scheduler mq-deadline registered\n[    0.628263] io scheduler kyber registered\n[    0.628304] io scheduler bfq registered\n[    0.632523] msm_mdss_get_res_byname: 'vbif_nrt_phys' resource not found\n[    0.632534] mdss_mdp_probe+0x1d8/0x3620->msm_dss_ioremap_byname: 'vbif_nrt_phys' msm_mdss_get_res_byname failed\n[    0.632634] mdp 1a00000.qcom,mdss_mdp: Linked as a consumer to regulator.36\n[    0.632759] mdss_mdp_irq_clk_setup: unable to get core gdsc regulator\n[    0.632841] mdss_mdp_irq_clk_register: unable to get clk: lut_clk\n[    0.632851] mdss_mdp_irq_clk_register: unable to get clk: bimc_clk\n[    0.632854] mdss_mdp_irq_clk_register: unable to get clk: mnoc_clk\n[    0.632857] mdss_mdp_irq_clk_register: unable to get clk: throttle_bus_clk\n[    0.633159] No change in context(0==0), skip\n[    0.633593] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:0 num:0 rect:0 ndx:0x1 prio:0\n[    0.633607] mdss_mdp_pipe_addr_setup: type:1 ftchid:-1 xinid:1 num:3 rect:0 ndx:0x8 prio:1\n[    0.633610] mdss_mdp_pipe_addr_setup: type:1 ftchid:-1 xinid:5 num:4 rect:0 ndx:0x10 prio:2\n[    0.633621] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:2 num:6 rect:0 ndx:0x40 prio:3\n[    0.633631] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:7 num:10 rect:0 ndx:0x400 prio:0\n[    0.633638] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-pipe-sw-reset-off : u32 array read\n[    0.633710] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-ib-factor-overlap : u32 array read\n[    0.633715] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-bus-througput-factor : u32 array read\n[    0.634118] mdss_mdp_probe: mdss version = 0x100e0000, bootloader display is on, num 1, intf_sel=0x00000100\n[    0.634551] mdss_rotator soc:qcom,mdss_rotator: Linked as a consumer to regulator.36\n[    0.635128] mdss_smmu 1a00000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb: Linked as a consumer to 1e00000.qcom,iommu\n[    0.635318] iommu: Adding device 1a00000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb to group 0\n[    0.635413] mdss_smmu_util_parse_dt_clock: clocks are not defined\n[    0.635426] mdss_smmu_probe: iommu v2 domain[0] mapping and clk register successful!\n[    0.635456] mdss_smmu 1a00000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb: Linked as a consumer to 1e00000.qcom,iommu\n[    0.635641] iommu: Adding device 1a00000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb to group 1\n[    0.635715] mdss_smmu_util_parse_dt_clock: clocks are not defined\n[    0.635725] mdss_smmu_probe: iommu v2 domain[2] mapping and clk register successful!\n[    0.635852] mdss_dsi soc:qcom,mdss_dsi@0: Linked as a consumer to regulator.36\n[    0.635867] mdss_dsi soc:qcom,mdss_dsi@0: Linked as a consumer to regulator.30\n[    0.635886] mdss_dsi soc:qcom,mdss_dsi@0: Linked as a consumer to regulator.16\n[    0.636532] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->0\n[    0.636632] [white point calibration] white_point_num_x = 288,white_point_num_y = 308\n[    0.636638] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_ili9881h_hdplus_video_c3i:bklic=24:wpoint=288308:1:none:cfg:single_dsi panel_name:qcom,mdss_dsi_ili9881h_hdplus_video_c3i\n[    0.636650] mdss_dsi_panel_init: Panel Name = ili9881h hdplus c3i video mode dsi panel\n[    0.636732] mdss_dsi_parse_split_link_settings: enable 0 sublinks-count 0 lanes per sublink 0\n[    0.636765] mdss_dsi_panel_timing_from_dt: found new timing \"qcom,mdss_dsi_ili9881h_hdplus_video_c3i\" ((____ptrval____))\n[    0.636780] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-post-panel-on-command\n[    0.636784] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-timing-switch-command\n[    0.636786] mdss_dsi_panel_get_dsc_cfg_np: cannot find dsc config node:\n[    0.636885] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-cold_gamma-command\n[    0.636889] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-warm_gamma-command\n[    0.636894] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-default_gamma-command\n[    0.636898] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-PM1-command\n[    0.636902] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-PM2-command\n[    0.636906] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-PM3-command\n[    0.636910] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-PM4-command\n[    0.636915] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-PM5-command\n[    0.636919] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-PM6-command\n[    0.636923] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-PM7-command\n[    0.636927] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-PM8-command\n[    0.636944] mdss_dsi_parse_panel_features: ulps feature disabled\n[    0.636948] mdss_dsi_parse_panel_features: ulps during suspend feature disabled\n[    0.636952] mdss_dsi_parse_dms_config: dynamic switch feature enabled: 0\n[    0.636983] mdss_dsi_parse_esd_status_len: request property number(1) not match command count(2)\n[    0.636999] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-on\n[    0.637004] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-off\n[    0.637018] mdss_dsi_set_refresh_rate_range:2703, Unable to read min refresh rate\n[    0.637022] mdss_dsi_set_refresh_rate_range:2718, Unable to read max refresh rate\n[    0.637024] dyn_fps: min = 60, max = 60\n[    0.637068] mdss_dsi_ctrl 1a94000.qcom,mdss_dsi_ctrl0: Linked as a consumer to regulator.27\n[    0.637084] mdss_dsi_ctrl 1a94000.qcom,mdss_dsi_ctrl0: Linked as a consumer to regulator.17\n[    0.637102] mdss_dsi_ctrl 1a94000.qcom,mdss_dsi_ctrl0: Linked as a consumer to regulator.6\n[    0.637155] mdss_dsi_ctrl 1a94000.qcom,mdss_dsi_ctrl0: Linked as a consumer to regulator.7\n[    0.637192] mdss_dsi_parse_ctrl_params:4493, Unable to read Phy Strength ctrl settings\n[    0.637197] mdss_dsi_parse_ctrl_params:4528, Unable to read Phy lane configure settings\n[    0.637206] mdss_dsi_parse_ctrl_params:4559 Unable to read qcom,display-id, data=(____ptrval____),len=0\n[    0.637223] mdss_dsi_parse_gpio_params: bklt_en gpio not specified\n[    0.637228] mdss_dsi_parse_gpio_params: avdd_en gpio not specified\n[    0.637250] msm_mdss_get_res_byname: 'dsi_phy_regulator' resource not found\n[    0.637260] mdss_dsi_retrieve_ctrl_resources+0x124/0x200->msm_dss_ioremap_byname: 'dsi_phy_regulator' msm_mdss_get_res_byname failed\n[    0.637263] mdss_dsi_retrieve_ctrl_resources: ctrl_base=(____ptrval____) ctrl_size=300 phy_base=(____ptrval____) phy_size=400\n[    0.637344] dsi_panel_device_register: Continuous splash enabled\n[    0.637387] mdss_register_panel: adding framebuffer device 1a94000.qcom,mdss_dsi_ctrl0\n[    0.658202] mdss_dsi_ctrl_probe: Dsi Ctrl->0 initialized, DSI rev:0x10040002, PHY rev:0x4\n[    0.658237] mdss_dsi_status_init: DSI status check interval:5000\n[    0.658369] mdss_register_panel: adding framebuffer device soc:qcom,mdss_wb_panel\n[    0.658855] mdss_fb_probe: fb0: split_mode:0 left:0 right:0\n[    0.658914] mdss_panel_debugfs_init: Debugfs create dir failed with error: -19\n[    0.658916] mdss_fb_register: FrameBuffer[0] 720x1520 registered successfully!\n[    0.658942] mdss_dsi_debugfs_setup: debugfs_create_dir dsi fail, error -19\n[    0.658944] mdss_dsi_debugfs_init: Error in initilizing dsi ctrl debugfs\n[    0.659070] mdss_fb_probe: fb1: split_mode:0 left:0 right:0\n[    0.659109] mdss_fb_register: FrameBuffer[1] 640x640 registered successfully!\n[    0.659151] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    0.659221] qcom-sps-dma 7884000.qcom,sps-dma: dma_async_device_register: device has no channels!\n[    0.659254] qcom-sps-dma 7ac4000.qcom,sps-dma: dma_async_device_register: device has no channels!\n[    0.660832] pil-q6v5-mss 4080000.qcom,mss: Linked as a consumer to regulator.9\n[    0.660851] pil-q6v5-mss 4080000.qcom,mss: Linked as a consumer to regulator.18\n[    0.661098] pil-q6v5-mss 4080000.qcom,mss: Linked as a consumer to regulator.8\n[    0.661117] pil-q6v5-mss 4080000.qcom,mss: Linked as a consumer to regulator.32\n[    0.661141] minidump-id not found for modem\n[    0.661468] pil-q6v5-mss 4080000.qcom,mss: for modem segments only will be dumped.\n[    0.661502] pil-q6v5-mss 4080000.qcom,mss: for md_modem segments only will be dumped.\n[    0.661797] subsys-pil-tz c200000.qcom,lpass: Linked as a consumer to regulator.9\n[    0.661931] minidump-id not found for adsp\n[    0.661993] subsys-pil-tz c200000.qcom,lpass: for adsp segments only will be dumped.\n[    0.662027] subsys-pil-tz c200000.qcom,lpass: for md_adsp segments only will be dumped.\n[    0.662273] minidump-id not found for wcnss\n[    0.662335] subsys-pil-tz a21b000.qcom,pronto: for wcnss segments only will be dumped.\n[    0.662367] subsys-pil-tz a21b000.qcom,pronto: for md_wcnss segments only will be dumped.\n[    0.662642] subsys-pil-tz 1de0000.qcom,venus: Linked as a consumer to regulator.35\n[    0.662701] minidump-id not found for venus\n[    0.662732] subsys-pil-tz 1de0000.qcom,venus: for venus segments only will be dumped.\n[    0.662767] subsys-pil-tz 1de0000.qcom,venus: for md_venus segments only will be dumped.\n[    0.662950] minidump-id not found for a506_zap\n[    0.662983] subsys-pil-tz soc:qcom,kgsl-hyp: for a506_zap segments only will be dumped.\n[    0.663014] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a506_zap segments only will be dumped.\n[    0.665784] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.665788] batched_hyp_assign: Failed to assign memory protection, ret = -95\n[    0.665795] memshare_child soc:qcom,memshare:qcom,client_1: memshare: hyp_assign_phys failed size=2097152 err=-99\n[    0.665801] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.665885] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.668021] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.668023] batched_hyp_assign: Failed to assign memory protection, ret = -95\n[    0.668027] memshare_child soc:qcom,memshare:qcom,client_3: memshare: hyp_assign_phys failed size=5242880 err=-99\n[    0.668032] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.668527] msm-dcc b3000.dcc: DCC XPU is not specified\n[    0.669374] wcnss: wcnss_wlan probed in built-in mode\n\n[    0.669768] msm_serial_hs: Cannot create debugfs dir\n[    0.671267] random: crng init done\n[    0.704618] kgsl-3d 1c00000.qcom,kgsl-3d0: Linked as a consumer to regulator.43\n[    0.704641] kgsl-3d 1c00000.qcom,kgsl-3d0: Linked as a consumer to regulator.41\n[    0.705378] platform 1c40000.qcom,kgsl-iommu:gfx3d_secure: Linked as a consumer to 1c40000.arm,smmu-kgsl\n[    0.705397] iommu: Failed to add device 1c40000.qcom,kgsl-iommu:gfx3d_secure to group 2: -14\n[    0.705413] platform 1c40000.qcom,kgsl-iommu:gfx3d_secure: Dropping the link to 1c40000.arm,smmu-kgsl\n[    0.705445] platform 1c40000.qcom,kgsl-iommu:gfx3d_secure: assigned reserved memory node secure_region@0\n[    0.705825] platform 1c40000.qcom,kgsl-iommu:gfx3d_user: Linked as a consumer to 1c40000.arm,smmu-kgsl\n[    0.705864] iommu: Adding device 1c40000.qcom,kgsl-iommu:gfx3d_user to group 2\n[    0.706162] platform 1c40000.qcom,kgsl-iommu:gfx3d_secure: Linked as a consumer to 1c40000.arm,smmu-kgsl\n[    0.706499] iommu: Adding device 1c40000.qcom,kgsl-iommu:gfx3d_secure to group 3\n[    0.709677] kgsl kgsl-3d0: Bus scaling not enabled\n[    0.713633] brd: module loaded\n[    0.716482] loop: module loaded\n[    0.716636] zram: Added device: zram0\n[    0.717313] QSEECOM: qseecom_init_control: qseecom.qsee_version = 0x1001000\n[    0.717326] QSEECOM: qseecom_parse_dt: qsee reentrancy support phase is not defined, setting to default 0\n[    0.717334] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.718159] QSEECOM: qseecom_register_heap_shmbridge: Could not get heap 26 info: No shmbridge created\n[    0.719558] QCE50: __qce_get_device_tree_data: BAM Apps EE is not defined, setting to default 1\n[    0.719937] qce 720000.qcedev: QTI Crypto 5.3.3 device found @0x720000\n[    0.720007] sps:BAM 0x0000000000704000 is registered.\n[    0.720320] sps:BAM 0x0000000000704000 (va:0x00000000c04250fb) enabled: ver:0x27, number of pipes:8\n[    0.720531] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000000704000 irq 73\n[    0.722671] QCE50: __qce_get_device_tree_data: BAM Apps EE is not defined, setting to default 1\n[    0.723105] qcrypto 720000.qcrypto: QTI Crypto 5.3.3 device found @0x720000\n[    0.723423] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000000704000 irq 73\n[    0.724309] qcrypto 720000.qcrypto: qcrypto-ecb-aes\n[    0.724433] qcrypto 720000.qcrypto: qcrypto-cbc-aes\n[    0.724510] qcrypto 720000.qcrypto: qcrypto-ctr-aes\n[    0.724585] qcrypto 720000.qcrypto: qcrypto-ecb-des\n[    0.724663] qcrypto 720000.qcrypto: qcrypto-cbc-des\n[    0.724738] qcrypto 720000.qcrypto: qcrypto-ecb-3des\n[    0.724813] qcrypto 720000.qcrypto: qcrypto-cbc-3des\n[    0.724890] qcrypto 720000.qcrypto: qcrypto-xts-aes\n[    0.724969] qcrypto 720000.qcrypto: qcrypto-sha1\n[    0.725052] qcrypto 720000.qcrypto: qcrypto-sha256\n[    0.725131] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    0.725208] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    0.725285] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    0.725363] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    0.725440] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    0.725518] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    0.725599] qcrypto 720000.qcrypto: qcrypto-hmac-sha1\n[    0.725679] qcrypto 720000.qcrypto: qcrypto-hmac-sha256\n[    0.725755] qcrypto 720000.qcrypto: qcrypto-aes-ccm\n[    0.725831] qcrypto 720000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    0.726208] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    0.726257] ICE IRQ = 67\n[    0.726840] SCSI Media Changer driver v0.25 \n[    0.727267] spi_qsd 78b7000.spi: msm_spi_probe: DMA is disabled by dt property\n[    0.728330] sps: BAM device 0x0000000007ac4000 is not registered yet.\n[    0.728391] sps:BAM 0x0000000007ac4000 is registered.\n[    0.728809] sps:BAM 0x0000000007ac4000 (va:0x00000000b7ff93fc) enabled: ver:0x19, number of pipes:12\n[    0.729361] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.\n[    0.729363] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    0.729497] tun: Universal TUN/TAP device driver, 1.6\n[    0.730611] PPP generic driver version 2.4.2\n[    0.730652] PPP BSD Compression module registered\n[    0.730655] PPP Deflate Compression module registered\n[    0.730677] PPP MPPE Compression module registered\n[    0.730680] NET: Registered protocol family 24\n[    0.730689] PPTP driver version 0.8.5\n[    0.730876] wcnss_pre_alloc_init: Failed to create debugfs dir\n[    0.730908] usbcore: registered new interface driver r8152\n[    0.730926] usbcore: registered new interface driver asix\n[    0.730958] usbcore: registered new interface driver ax_usb_nic\n[    0.730973] usbcore: registered new interface driver cdc_ether\n[    0.730987] usbcore: registered new interface driver net1080\n[    0.731004] usbcore: registered new interface driver cdc_subset\n[    0.731018] usbcore: registered new interface driver zaurus\n[    0.731040] usbcore: registered new interface driver cdc_ncm\n[    0.732190] scm_call failed: func id 0x42000c16, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.732193] batched_hyp_assign: Failed to assign memory protection, ret = -95\n[    0.732199] msm_sharedmem: setup_shared_ram_perms: hyp_assign_phys failed IPA=0x0160x00000000f6700000 size=1572864 err=-99\n[    0.732242] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.732507] msm_otg 78db000.usb: msm_otg probe\n[    0.733516] msm_otg 78db000.usb: OTG regs = 000000004a5ffc4e\n[    0.733572] msm_otg 78db000.usb: Linked as a consumer to regulator.30\n[    0.733603] msm_otg 78db000.usb: Linked as a consumer to regulator.25\n[    0.733618] msm_otg 78db000.usb: Linked as a consumer to regulator.18\n[    0.733926] msm_otg 78db000.usb: usb_add_phy failed\n[    0.734891] msm_otg 78db000.usb: Dropping the link to regulator.18\n[    0.734903] msm_otg 78db000.usb: Dropping the link to regulator.25\n[    0.734908] msm_otg 78db000.usb: Dropping the link to regulator.30\n[    0.735140] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.735142] ehci-platform: EHCI generic platform driver\n[    0.735382] ehci-msm: Qualcomm Technologies, Inc. On-Chip EHCI Host Controller\n[    0.735552] usbcore: registered new interface driver cdc_acm\n[    0.735554] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters\n[    0.735575] usbcore: registered new interface driver usb-storage\n[    0.735591] usbcore: registered new interface driver ums-alauda\n[    0.735605] usbcore: registered new interface driver ums-cypress\n[    0.735618] usbcore: registered new interface driver ums-datafab\n[    0.735631] usbcore: registered new interface driver ums-freecom\n[    0.735645] usbcore: registered new interface driver ums-isd200\n[    0.735660] usbcore: registered new interface driver ums-jumpshot\n[    0.735674] usbcore: registered new interface driver ums-karma\n[    0.735690] usbcore: registered new interface driver ums-onetouch\n[    0.735703] usbcore: registered new interface driver ums-sddr09\n[    0.735717] usbcore: registered new interface driver ums-sddr55\n[    0.735731] usbcore: registered new interface driver ums-usbat\n[    0.735767] usbcore: registered new interface driver usb_ehset_test\n[    0.736518] usb_qcrndis_init: failed to register diag -17\n[    0.736824] usbcore: registered new interface driver xpad\n[    0.737525] rtc-pm8xxx 200f000.qcom,spmi:qcom,pm8953@0:qcom,pm8953_rtc: rtc core: registered pm8xxx_rtc as rtc0\n[    0.737573] rtc-pm8xxx 200f000.qcom,spmi:qcom,pm8953@0:qcom,pm8953_rtc: setting system clock to 1970-11-07 01:44:18 UTC (26790258)\n[    0.737755] i2c /dev entries driver\n[    0.737896] msm_vidc:  err: Failed to create debugfs for msm_vidc\n[    0.740362] msm_vidc_v4l2 1d00000.qcom,vidc: Linked as a consumer to regulator.35\n[    0.740381] msm_vidc_v4l2 1d00000.qcom,vidc: Linked as a consumer to regulator.42\n[    0.740757] msm_vidc_v4l2 1d00000.qcom,vidc:non_secure_cb: Linked as a consumer to 1e00000.qcom,iommu\n[    0.740955] iommu: Adding device 1d00000.qcom,vidc:non_secure_cb to group 4\n[    0.741195] msm_vidc_v4l2 1d00000.qcom,vidc:secure_bitstream_cb: Linked as a consumer to 1e00000.qcom,iommu\n[    0.741380] iommu: Adding device 1d00000.qcom,vidc:secure_bitstream_cb to group 5\n[    0.741566] msm_vidc_v4l2 1d00000.qcom,vidc:secure_pixel_cb: Linked as a consumer to 1e00000.qcom,iommu\n[    0.741720] iommu: Adding device 1d00000.qcom,vidc:secure_pixel_cb to group 6\n[    0.741915] msm_vidc_v4l2 1d00000.qcom,vidc:secure_non_pixel_cb: Linked as a consumer to 1e00000.qcom,iommu\n[    0.742069] iommu: Adding device 1d00000.qcom,vidc:secure_non_pixel_cb to group 7\n[    0.744449] msm_vidc_v4l2 1d00000.qcom,vidc: Dropping the link to regulator.42\n[    0.744464] msm_vidc_v4l2 1d00000.qcom,vidc: Dropping the link to regulator.35\n[    0.745266] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cb1: Linked as a consumer to 1e00000.qcom,iommu\n[    0.745398] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb1 to group 8\n[    0.745474] CAM-SMMU cam_smmu_populate_sids:2130\n               __debug cnt = 6, cb->name: :vfe sid [0] = 1024\n[    0.745477] CAM-SMMU cam_smmu_populate_sids:2130\n               __debug cnt = 6, cb->name: :vfe sid [1] = 9216\n[    0.745609] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cb3: Linked as a consumer to 1e00000.qcom,iommu\n[    0.745724] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb3 to group 9\n[    0.745792] CAM-SMMU cam_smmu_populate_sids:2130\n               __debug cnt = 3, cb->name: :cpp sid [0] = 7168\n[    0.745904] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cb4: Linked as a consumer to 1e00000.qcom,iommu\n[    0.746022] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb4 to group 10\n[    0.746094] CAM-SMMU cam_smmu_populate_sids:2130\n               __debug cnt = 3, cb->name: :jpeg_enc0 sid [0] = 6144\n[    0.747211] msm_camera_get_dt_vreg_data:1129 number of entries is 0 or not present in dts\n[    0.748918] msm_camera_get_dt_vreg_data:1129 number of entries is 0 or not present in dts\n[    0.749043] msm_camera_get_dt_vreg_data:1129 number of entries is 0 or not present in dts\n[    0.749348] msm_camera_get_dt_vreg_data:1129 number of entries is 0 or not present in dts\n[    0.749478] msm_camera_get_dt_vreg_data:1129 number of entries is 0 or not present in dts\n[    0.749611] msm_camera_get_dt_vreg_data:1129 number of entries is 0 or not present in dts\n[    0.749902] msm_actuator_platform_probe:2021 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    0.750555] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@0: Linked as a consumer to regulator.15\n[    0.750950] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@0: Linked as a consumer to regulator.29\n[    0.751388] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@0: Linked as a consumer to regulator.17\n[    0.759626] msm_cci_init:1468: hw_version = 0x10020004\n[    1.029365] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@0: Dropping the link to regulator.17\n[    1.029585] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@0: Dropping the link to regulator.29\n[    1.029887] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@0: Dropping the link to regulator.15\n[    1.030360] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@1: Linked as a consumer to regulator.15\n[    1.031121] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@1: Linked as a consumer to regulator.29\n[    1.031824] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@1: Linked as a consumer to regulator.17\n[    1.039895] msm_cci_init:1468: hw_version = 0x10020004\n[    1.309572] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@1: Dropping the link to regulator.17\n[    1.309794] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@1: Dropping the link to regulator.29\n[    1.310098] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@1: Dropping the link to regulator.15\n[    1.310524] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@2: Linked as a consumer to regulator.15\n[    1.311268] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@2: Linked as a consumer to regulator.29\n[    1.311942] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@2: Linked as a consumer to regulator.17\n[    1.320047] msm_cci_init:1468: hw_version = 0x10020004\n[    1.320182] msm_cci_irq:1833 MASTER_0 error 0x10000000\n[    1.320202] msm_cci_i2c_read:971 read_words = 0, exp words = 4\n[    1.320204] msm_cci_i2c_read_bytes:1054 failed rc -22\n[    1.320209] read_eeprom_memory: read failed\n[    1.320211] msm_eeprom_platform_probe read_eeprom_memory failed\n[    1.328270] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@2: Dropping the link to regulator.17\n[    1.328503] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@2: Dropping the link to regulator.29\n[    1.328805] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@2: Dropping the link to regulator.15\n[    1.328836] qcom,eeprom: probe of 1b0c000.qcom,cci:qcom,eeprom@2 failed with error -22\n[    1.329190] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@3: Linked as a consumer to regulator.15\n[    1.329947] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@3: Linked as a consumer to regulator.29\n[    1.330623] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@3: Linked as a consumer to regulator.17\n[    1.338692] msm_cci_init:1468: hw_version = 0x10020004\n[    1.338825] msm_cci_irq:1833 MASTER_0 error 0x10000000\n[    1.338844] msm_cci_i2c_read:971 read_words = 0, exp words = 4\n[    1.338846] msm_cci_i2c_read_bytes:1054 failed rc -22\n[    1.338851] read_eeprom_memory: read failed\n[    1.338853] msm_eeprom_platform_probe read_eeprom_memory failed\n[    1.346910] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@3: Dropping the link to regulator.17\n[    1.347120] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@3: Dropping the link to regulator.29\n[    1.347423] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@3: Dropping the link to regulator.15\n[    1.347450] qcom,eeprom: probe of 1b0c000.qcom,cci:qcom,eeprom@3 failed with error -22\n[    1.347746] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    1.347965] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@4: Linked as a consumer to regulator.15\n[    1.348716] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@4: Linked as a consumer to regulator.29\n[    1.349300] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@4: Linked as a consumer to regulator.17\n[    1.357373] msm_cci_init:1468: hw_version = 0x10020004\n[    1.608481] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@4: Dropping the link to regulator.17\n[    1.608714] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@4: Dropping the link to regulator.29\n[    1.609017] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@4: Dropping the link to regulator.15\n[    1.609370] msm_eeprom_platform_probe qcom,i2c-freq-mode read fail. Setting to 0 -22\n[    1.609590] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@5: Linked as a consumer to regulator.15\n[    1.610342] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@5: Linked as a consumer to regulator.29\n[    1.610926] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@5: Linked as a consumer to regulator.17\n[    1.618995] msm_cci_init:1468: hw_version = 0x10020004\n[    1.868481] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@5: Dropping the link to regulator.17\n[    1.868691] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@5: Dropping the link to regulator.29\n[    1.868993] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@5: Dropping the link to regulator.15\n[    1.869416] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@6: Linked as a consumer to regulator.15\n[    1.870166] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@6: Linked as a consumer to regulator.29\n[    1.870749] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@6: Linked as a consumer to regulator.17\n[    1.878818] msm_cci_init:1468: hw_version = 0x10020004\n[    2.148486] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@6: Dropping the link to regulator.17\n[    2.148719] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@6: Dropping the link to regulator.29\n[    2.149023] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@6: Dropping the link to regulator.15\n[    2.149442] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@7: Linked as a consumer to regulator.15\n[    2.150194] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@7: Linked as a consumer to regulator.29\n[    2.150777] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@7: Linked as a consumer to regulator.17\n[    2.158847] msm_cci_init:1468: hw_version = 0x10020004\n[    2.428574] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@7: Dropping the link to regulator.17\n[    2.428808] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@7: Dropping the link to regulator.29\n[    2.429111] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@7: Dropping the link to regulator.15\n[    2.429589] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@8: Linked as a consumer to regulator.15\n[    2.430345] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@8: Linked as a consumer to regulator.29\n[    2.430927] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@8: Linked as a consumer to regulator.17\n[    2.446007] msm_cci_init:1468: hw_version = 0x10020004\n[    2.446140] msm_cci_irq:1839 MASTER_1 error 0x20000000\n[    3.440035] msm_cci_wait: 313 wait for queue: 0\n[    3.440047] msm_cci_transfer_end: 565 failed rc -110\n[    3.440049] msm_cci_data_queue: 822 failed rc -110\n[    3.440050] msm_camera_cci_i2c_write: line 135 rc = -110\n[    3.500033] read_eeprom_memory: page write failed\n[    3.500035] msm_eeprom_platform_probe read_eeprom_memory failed\n[    3.512093] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@8: Dropping the link to regulator.17\n[    3.515319] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@8: Dropping the link to regulator.29\n[    3.515622] qcom,eeprom 1b0c000.qcom,cci:qcom,eeprom@8: Dropping the link to regulator.15\n[    3.515655] qcom,eeprom: probe of 1b0c000.qcom,cci:qcom,eeprom@8 failed with error -110\n[    3.516339] msm_flash_get_dt_data:1146\n               flash_driver_type 0\n[    3.518097] msm_cpp 1b04000.qcom,cpp: Linked as a consumer to regulator.40\n[    3.520869] MSM-CPP cpp_init_hardware:1136 CPP HW Version: 0x40030002\n[    3.520875] MSM-CPP cpp_init_hardware:1154 stream_cnt:0\n[    3.521094] MSM-CPP cpp_release_hardware:1217 cpp hw release done\n[    3.522052] CAM-SOC msm_camera_get_reg_base:822 err: mem resource vfe_fuse not found\n[    3.522054] CAM-SOC msm_camera_get_res_size:865 err: mem resource vfe_fuse not found\n[    3.522080] msm_vfe40 1b10000.qcom,vfe0: Linked as a consumer to regulator.38\n[    3.522127] msm_vfe47_get_clks: cannot find camss_vfe_stream_clk\n[    3.522638] CAM-SOC msm_camera_get_reg_base:822 err: mem resource vfe_fuse not found\n[    3.522640] CAM-SOC msm_camera_get_res_size:865 err: mem resource vfe_fuse not found\n[    3.522660] msm_vfe40 1b14000.qcom,vfe1: Linked as a consumer to regulator.39\n[    3.522702] msm_vfe47_get_clks: cannot find camss_vfe_stream_clk\n[    3.522946] msm_ispif 1b31000.qcom,ispif: Linked as a consumer to regulator.38\n[    3.522959] msm_ispif 1b31000.qcom,ispif: Linked as a consumer to regulator.39\n[    3.523410] __msm_jpeg_init:1579] Jpeg Device id 0\n[    3.523468] msm_jpeg 1b1c000.qcom,jpeg: Linked as a consumer to regulator.37\n[    3.524183] Couldn't parse device tree rc=-517\n[    3.527882] reg-cooling-device soc:qcom,rpm-smd:rpm-regulator-smpa2:regulator-cx-cdev: regulator register err:-12\n[    3.527890] reg-cooling-device: probe of soc:qcom,rpm-smd:rpm-regulator-smpa2:regulator-cx-cdev failed with error -12\n[    3.528164] device-mapper: uevent: version 1.0.3\n[    3.528243] device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel@redhat.com\n[    3.528709] sdhci: Secure Digital Host Controller Interface driver\n[    3.528711] sdhci: Copyright(c) Pierre Ossman\n[    3.528712] sdhci-pltfm: SDHCI platform and OF driver helper\n[    3.529181] qpnp_vibrator_ldo_probe: Vibrator LDO successfully registered: uV = 2800000, overdrive = disabled\n[    3.529751] usbcore: registered new interface driver usbhid\n[    3.529753] usbhid: USB HID core driver\n[    3.529815] ashmem: initialized\n[    3.530103] bimc-bwmon 408000.qcom,cpu-cpu-ddr-bwmon: BW HWmon governor registered.\n[    3.532015] sdhci_msm 7824900.sdhci: core_reset unavailable,err = -2\n[    3.532018] sdhci_msm 7824900.sdhci: Reset data parsing error\n[    3.532021] sdhci_msm 7824900.sdhci: unable to acquire core_reset\n[    3.532528] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-computemon: Compute governor registered.\n[    3.532925] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-computemon: Compute governor registered.\n[    3.534135] sdhci_msm 7824900.sdhci: Linked as a consumer to regulator.20\n[    3.534152] sdhci_msm 7824900.sdhci: Linked as a consumer to regulator.16\n[    3.535005] devfreq-simple-dev: probe of soc:qcom,cci failed with error -22\n[    3.535551] Override ADC channel 13 specification from dt property\n[    3.536884] cqhci_crypto_qti_init_crypto: Error initiating crypto capabilities, err -19\n[    3.536887] mmc0: CQHCI version 5.10 Crypto init failed err -19\n[    3.536890] mmc0: CQHCI version 5.10\n[    3.537259] mmc0: SDHCI controller on 7824900.sdhci [7824900.sdhci] using 64-bit ADMA in CMDQ mode\n[    3.540669] coresight-stm 6002000.stm: stm_register_device failed, probing deffered\n[    3.541126] OF: graph: no port node found in /soc/csr@6001000\n[    3.541167] coresight-csr 6001000.csr: CSR initialized: coresight-csr\n[    3.541343] OF: graph: no port node found in /soc/hwevent@6101000\n[    3.541380] coresight-hwevent 6101000.hwevent: Hardware Event driver initialized\n[    3.541799] coresight-remote-etm soc:wcn_etm0: Remote ETM initialized\n[    3.541900] coresight-remote-etm soc:rpm_etm0: Remote ETM initialized\n[    3.542006] coresight-remote-etm soc:audio_etm0: Remote ETM initialized\n[    3.542105] coresight-remote-etm soc:modem_etm0: Remote ETM initialized\n[    3.542709] usbcore: registered new interface driver snd-usb-audio\n[    3.543255] enter lan_enable_probe \n[    3.543305]  enter lan_enable_probe, ok \n[    3.543371] aw87329_pa_init enter\n[    3.543372] aw87329_pa_init: driver version: v1.1.2\n[    3.543401] aw87519_pa_init enter\n[    3.543403] aw87519_pa_init: driver version: v1.0.3\n[    3.543550] i2c-msm-v2 78b6000.i2c: msm_bus_scale_register_client(mstr-id:86):0x16 (ok)\n[    3.543603] aw87519_i2c_probe Enter\n[    3.543612] AW87519_PA 2-0058: aw87519_parse_dt: reset gpio provided ok\n[    3.543620] aw87519_hw_reset enter\n[    3.568158] sdhci_msm 7824900.sdhci: mmc0: CQE init: success\n[    3.580292] aw87519_read_chipid This Chip is  AW87519 chipid=0x59\n[    3.580301] aw87519_hw_off enter\n[    3.600167] i2c-msm-v2 7af5000.i2c: msm_bus_scale_register_client(mstr-id:84):0x17 (ok)\n[    3.600197] [ktd]probe start!\n\n[    3.600202] [ktd]hwen --<-2>\n\n[    3.600204] [ktd]pwmmode --<0>\n\n[    3.600206] [ktd]using_lsb --<1>\n\n[    3.600208] [ktd]pwm-frequency --<100>\n\n[    3.600209] [ktd]full-scale led current --<152 mA>\n\n[    3.600211] [ktd]ramp on time --<0 ms>\n\n[    3.600213] [ktd]ramp off time --<0 ms>\n\n[    3.600215] [ktd]pwm trnasition dimming  --<0 ms>\n\n[    3.600216] [ktd]i2c transition dimming --<0 ms>\n\n[    3.600218] [ktd]bl-channel --<2>\n\n[    3.600220] [ktd]ovp-level --<32> --temp <32>\n\n[    3.600222] [ktd]switching frequency --<1000>\n\n[    3.600224] [ktd]inductor current limit --<2600>\n\n[    3.600226] invalid flash-time value!\n[    3.600228] [ktd]linear_ramp --<1>\n\n[    3.600230] [ktd]linear_backlight --<1>\n\n[    3.600231] invalid flash current value!\n[    3.600401] [ktd]Device ID is --<0x03>\n\n[    3.601345] [ktd]register pwm<0x06> current value is --<1b>\n\n[    3.601704] [ktd]rampon time is 0\n\n[    3.602062] [ktd]rampoff time is 0\n\n[    3.603264] [ktd]read control register -before--<0x6e> -after--<0x6e>\n\n[    3.604237] [ktd]Successfully added driver ktd,ktd3137\n\n[    3.604581] msm8937-pinctrl 1000000.pinctrl: invalid function fpc_reset_gpio_low in map table\n[    3.604600] msm8937-pinctrl 1000000.pinctrl: invalid function fpc_reset_gpio_high in map table\n[    3.604672] fpc1020 soc:fpc1020: fpc1020_probe: ok\n[    3.604768] fpc1020_init OK\n[    3.604769] zhong-in gf_init\n[    3.605026] msm8937-pinctrl 1000000.pinctrl: invalid function fpc_reset_gpio_low in map table\n[    3.605039] msm8937-pinctrl 1000000.pinctrl: invalid function fpc_reset_gpio_high in map table\n[    3.605063] gf_spi: zhong probe\n[    3.605151] input: uinput-goodix as /devices/virtual/input/input1\n[    3.605208] gf_spi: version V1.2.11\n[    3.605209] gf probe success\n[    3.605305] zhong-out status = 0x0\n[    3.605360] ir-spi spi6.0: Linked as a consumer to regulator.20\n[    3.605423] <<GTP-INF>>[gt1x_ts_init:1181] GTP driver installing...\n[    3.605440] [FTS]fts_ts_init: Enter\n[    3.605454] [FTS]fts_ts_init: Exit(1865)\n[    3.605461] ILITEK:INFO (ilitek_plat_dev_init, 473): ILITEK TP driver init for QCOM\n[    3.605463] ILITEK:INFO (ilitek_tddi_dev_init, 812): TP Interface: SPI\n[    3.605465] ILITEK:INFO (ilitek_tddi_interface_dev_init, 680): ilitek start\n[    3.605470] ILITEK:INFO (ilitek_tddi_interface_dev_init, 705): ilitek_tddi_interface_dev_init \n[    3.605638] ILITEK:INFO (ilitek_spi_probe, 582): ilitek spi probe\n[    3.605713] ILITEK:INFO (core_spi_setup, 553): spi clock = 10485760\n[    3.605786] ILITEK:INFO (core_spi_setup, 569): name = ilitek, bus_num = 3,cs = 0, mode = 0, speed = 10485760\n[    3.605788] ILITEK:INFO (ilitek_plat_probe, 423): platform probe\n[    3.605803] ILITEK:INFO (ilitek_plat_gpio_register, 183): TP INT: 1211\n[    3.605805] ILITEK:INFO (ilitek_plat_gpio_register, 184): TP RESET: 1210\n[    3.605814] ILITEK:INFO (ilitek_tddi_init, 700): ilitek tddi main init\n[    3.606000] ILITEK:INFO (ilitek_tddi_reset_ctrl, 675): TP HW RST\n[    3.617009] ILITEK:INFO (ilitek_ice_mode_ctrl, 215): Enable ICE mode, mcu on = 0\n[    3.617524] ILITEK:INFO (ilitek_tddi_ic_check_support, 81): ILITEK CHIP (98811105, 9881) found.\n[    3.618330] ILITEK:INFO (ilitek_tddi_ic_get_info, 1115): CHIP INFO: PID = 98811105, ID = 9881, TYPE = 110005, OTP = 11, ANA = 11\n[    3.618332] ILITEK:INFO (ilitek_tddi_ic_check_support, 81): ILITEK CHIP (98811105, 9881) found.\n[    3.619333] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.619541] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.619744] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.620006] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.620233] ILITEK:INFO (ilitek_tddi_ic_rd_pack, 465): check  ok 0x4800A read 0x3 retry = 99\n[    3.620554] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.620753] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.621962] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.622161] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.622359] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.622618] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x5 retry = 99\n[    3.622816] ILITEK:INFO (ilitek_tddi_ic_rd_pack, 465): check  ok 0x4800A read 0x7 retry = 99\n[    3.623136] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x5 retry = 99\n[    3.623334] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x5 retry = 99\n[    3.624541] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x5 retry = 99\n[    3.624739] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.624937] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.625196] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.625393] ILITEK:INFO (ilitek_tddi_ic_rd_pack, 465): check  ok 0x4800A read 0x7 retry = 99\n[    3.625713] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.625912] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.627121] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.627318] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.627517] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.627775] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.627974] ILITEK:INFO (ilitek_tddi_ic_rd_pack, 465): check  ok 0x4800A read 0x7 retry = 99\n[    3.628294] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.628493] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.629701] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.629899] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.630107] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.630277] mmc0: Out-of-interrupt timeout is 50[ms]\n[    3.630280] mmc0: eMMC FW version: 0xa2\n[    3.630414] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.630618] ILITEK:INFO (ilitek_tddi_ic_rd_pack, 465): check  ok 0x4800A read 0x7 retry = 99\n[    3.630963] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.631196] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.633504] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.633790] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.633989] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.634285] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.636240] ILITEK:INFO (ilitek_tddi_ic_rd_pack, 465): check  ok 0x4800A read 0x7 retry = 99\n[    3.636651] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.637107] mmc0: Command Queue Engine enabled\n[    3.637115] mmc0: new HS400 Enhanced strobe MMC card at address 0001\n[    3.637313] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.638766] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.638846] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0xf) latency=-1\n[    3.638849] sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xf0) latency=-1\n[    3.638860] mmcblk0: mmc0:0001 HCG8a4 58.2 GiB \n[    3.638893] mmcblk0rpmb: mmc0:0001 HCG8a4 partition 3 4.00 MiB, chardev (503:0)\n[    3.639260] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.639439] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x5 retry = 99\n[    3.639674] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x5 retry = 99\n[    3.639898] ILITEK:INFO (ilitek_tddi_ic_rd_pack, 465): check  ok 0x4800A read 0x7 retry = 99\n[    3.640290] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x5 retry = 99\n[    3.640534] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x5 retry = 99\n[    3.641687]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42 p43 p44 p45 p46 p47 p48 p49 p50 p51 p52 p53 p54 p55 p56 p57 p58 p59 p60 p61 p62\n[    3.645443] sdhci_msm 7864900.sdhci: core_reset unavailable,err = -2\n[    3.645448] sdhci_msm 7864900.sdhci: Reset data parsing error\n[    3.645450] sdhci_msm 7864900.sdhci: unable to acquire core_reset\n[    3.646668] sdhci_msm 7864900.sdhci: Linked as a consumer to regulator.23\n[    3.646682] sdhci_msm 7864900.sdhci: Linked as a consumer to regulator.24\n[    3.647082] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.647262] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.647443] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.647760] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.647941] ILITEK:INFO (ilitek_tddi_ic_rd_pack, 465): check  ok 0x4800A read 0x7 retry = 99\n[    3.648230] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.648409] ILITEK:INFO (ilitek_tddi_ic_wr_pack, 440): check ok 0x73010 read 0x1 retry = 99\n[    3.648692] ILITEK:INFO (ilitek_tddi_node_lock_down_info, 1943): Sucess to creat ilitek_tp_lockdown_info /proc\n[    3.648697] ILITEK:INFO (ilitek_mp_test, 1955): Succeed to create ilitek_mptest success /proc\n[    3.648701] ILITEK:INFO (ilitek_tp_selftest, 1965): Succeed to create ilitek_mptest success /proc\n[    3.648706] ILITEK:INFO (ilitek_tddi_node_init, 1987): Succeed to create ioctl under /proc\n[    3.648708] ILITEK:INFO (ilitek_tddi_node_init, 1987): Succeed to create fw_process under /proc\n[    3.648711] ILITEK:INFO (ilitek_tddi_node_init, 1987): Succeed to create fw_upgrade under /proc\n[    3.648714] ILITEK:INFO (ilitek_tddi_node_init, 1987): Succeed to create debug_level under /proc\n[    3.648719] ILITEK:INFO (ilitek_tddi_node_init, 1987): Succeed to create mp_lcm_on_test under /proc\n[    3.648722] ILITEK:INFO (ilitek_tddi_node_init, 1987): Succeed to create mp_lcm_off_test under /proc\n[    3.648725] ILITEK:INFO (ilitek_tddi_node_init, 1987): Succeed to create debug_message under /proc\n[    3.648727] ILITEK:INFO (ilitek_tddi_node_init, 1987): Succeed to create debug_message_switch under /proc\n[    3.648730] ILITEK:INFO (ilitek_tddi_node_init, 1987): Succeed to create fw_pc_counter under /proc\n[    3.648733] ILITEK:INFO (ilitek_tddi_node_init, 1987): Succeed to create show_delta_data under /proc\n[    3.648736] ILITEK:INFO (ilitek_tddi_node_init, 1987): Succeed to create show_raw_data under /proc\n[    3.648739] ILITEK:INFO (ilitek_tddi_node_init, 1987): Succeed to create get_debug_mode_data under /proc\n[    3.648741] ILITEK:INFO (ilitek_tddi_node_init, 1987): Succeed to create rw_tp_reg under /proc\n[    3.648762] ILITEK:INFO (netlink_init, 1927): Initialise Netlink and create its socket\n[    3.648764] ILITEK:INFO (itk9881h_mi439_ops_enable_dt2w, 97): gesture = 0\n[    3.648767] ILITEK:INFO (ilitek_ice_mode_ctrl, 215): Disable ICE mode, mcu on = 0\n[    3.648876] ILITEK:INFO (ilitek_plat_irq_register, 317): idev->irq_num = 161\n[    3.648924] ILITEK:INFO (ilitek_tddi_fw_upgrade_handler, 460): get touch lock\n[    3.648980] ILITEK:INFO (ilitek_tddi_fw_upgrade, 1432): Convert FW file from HEX_FILE\n[    3.648983] ILITEK:INFO (ilitek_tdd_fw_hex_open, 1315): Open file method = FILP_OPEN, path = /vendor/firmware/ILITEK_FW\n[    3.649015] ILITEK:ERR (ilitek_tdd_fw_hex_open, 1346): Failed to open the file at -2.\n[    3.649017] ILITEK:ERR (ilitek_tddi_fw_upgrade, 1436): Open hex file fail, try upgrade from ILI file\n[    3.649020] ILITEK:INFO (ilitek_tddi_fw_ili_convert, 1148): Start to parse ILI file, type = 159, block_count = 5\n[    3.649023] ILITEK:INFO (ilitek_tddi_fw_ili_convert, 1184): Block[1]: start_addr = 0, end = ffff\n[    3.649025] ILITEK:INFO (ilitek_tddi_fw_ili_convert, 1184): Block[2]: start_addr = 10000, end = 11fff\n[    3.649027] ILITEK:INFO (ilitek_tddi_fw_ili_convert, 1184): Block[3]: start_addr = 12000, end = 121ff\n[    3.649029] ILITEK:INFO (ilitek_tddi_fw_ili_convert, 1184): Block[4]: start_addr = 1d000, end = 1efff\n[    3.649031] ILITEK:INFO (ilitek_tddi_fw_ili_convert, 1184): Block[5]: start_addr = 13000, end = 1cfff\n[    3.649033] ILITEK:INFO (ilitek_tddi_fw_ili_convert, 1195): Tag 0xB0: change Block[2] to addr = 0x20870\n[    3.649035] ILITEK:INFO (ilitek_tddi_fw_ili_convert, 1195): Tag 0xB0: change Block[3] to addr = 0x20670\n[    3.649116] ILITEK:INFO (ilitek_tddi_fw_update_block_info, 1138): New FW ver = 0x4011600\n[    3.649119] ILITEK:INFO (ilitek_tddi_fw_update_block_info, 1139): star_addr = 0x000000, end_addr = 0x01F000, Block Num = 5\n[    3.649122] ILITEK:INFO (ilitek_ice_mode_ctrl, 215): Enable ICE mode, mcu on = 0\n[    3.649334] ILITEK:INFO (ilitek_tddi_ic_check_support, 81): ILITEK CHIP (98811105, 9881) found.\n[    3.649425] genirq: irq_chip msmgpio did not update eff. affinity mask of irq 161\n[    3.649450] ILITEK:INFO (ilitek_plat_sleep_init, 403): Init notifier_fb struct\n[    3.649501] [NVT-ts] nvt_driver_init 2387: start\n[    3.649542] [NVT-ts] nvt_driver_init 2396: finished\n[    3.649544] [FTS_TS]fts_ts_init: Enter\n[    3.649719] [FTS_TS]fts_ts_init: Exit(1827)\n[    3.654887] ILITEK:INFO (ilitek_tddi_reset_ctrl, 675): TP HW RST\n[    3.665900] ILITEK:INFO (ilitek_ice_mode_ctrl, 215): Enable ICE mode, mcu on = 0\n[    3.665977] audio_notifer_reg_service: service SSR_ADSP is in use\n[    3.666454] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:anlg-cdc@f000: Adsp is not loaded yet 0\n[    3.666824] msm-cdc-pinctrl soc:msm_cdc_pinctrl_us_euro_sw: Probe\n[    3.667106] msm-cdc-pinctrl soc:msm_cdc_pinctrl_pri: Probe\n[    3.667403] msm-cdc-pinctrl soc:wsa881x_analog_vi_pctrl: Probe\n[    3.667560] msm-cdc-pinctrl soc:wsa881x_analog_clk_pctrl: Probe\n[    3.667692] msm-cdc-pinctrl soc:wsa881x_analog_reset_pctrl: Probe\n[    3.680397] ILITEK:INFO (ilitek_tddi_ic_check_support, 81): ILITEK CHIP (98811105, 9881) found.\n[    3.686549] u32 classifier\n[    3.686551]     Actions configured\n[    3.687660] ILITEK:INFO (ilitek_tddi_fw_iram_upgrade, 824): Download AP code from hex 0x0 to IRAM 0x0, len = 0x10000\n[    3.787980] mmc1: SDHCI controller on 7864900.sdhci [7864900.sdhci] using 64-bit ADMA in legacy mode\n[    3.788296] xt_time: kernel timezone is -0000\n[    3.788370] gre: GRE over IPv4 demultiplexor driver\n[    3.788372] IPv4 over IPsec tunneling driver\n[    3.790666] Initializing XFRM netlink socket\n[    3.790676] IPsec XFRM device driver\n[    3.790979] NET: Registered protocol family 10\n[    3.792085] Segment Routing with IPv6\n[    3.792179] mip6: Mobile IPv6\n[    3.798517] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    3.799495] NET: Registered protocol family 17\n[    3.799508] NET: Registered protocol family 15\n[    3.799554] l2tp_core: L2TP core driver, V2.0\n[    3.799560] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    3.799561] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    3.799569] l2tp_netlink: L2TP netlink interface\n[    3.799586] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    3.799588] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    3.799615] sctp: Hash tables configured (bind 256/256)\n[    3.799965] msm_otg 78db000.usb: msm_otg probe\n[    3.801107] msm_otg 78db000.usb: OTG regs = 0000000078af2f04\n[    3.801139] irq: type mismatch, failed to map hwirq-172 for wake-gic!\n[    3.801172] msm_otg 78db000.usb: Linked as a consumer to regulator.30\n[    3.801199] msm_otg 78db000.usb: Linked as a consumer to regulator.25\n[    3.801214] msm_otg 78db000.usb: Linked as a consumer to regulator.18\n[    3.801532] ILITEK:INFO (ilitek_tddi_fw_iram_upgrade, 838): AP CRC is Correct ! (f56fa10e) : (f56fa10e)\n[    3.801535] ILITEK:INFO (ilitek_tddi_fw_iram_upgrade, 824): Download DATA code from hex 0x10000 to IRAM 0x20870, len = 0x2000\n[    3.801794] msm_otg 78db000.usb: usb_add_phy failed\n[    3.802724] msm_otg 78db000.usb: Dropping the link to regulator.18\n[    3.802736] msm_otg 78db000.usb: Dropping the link to regulator.25\n[    3.802741] msm_otg 78db000.usb: Dropping the link to regulator.30\n[    3.803152] sw_jeita_enable = 0, hw_jeita_enable = 1\n[    3.803509] QCOM-BATT: qcom_batt_create_debugfs: Couldn't create battery debugfs rc=-19\n[    3.804718] pmi632_charger: smblib_request_dpdm: Couldn't get dpdm regulator rc=-517\n[    3.804721] pmi632_charger: smblib_usb_plugin_locked: Couldn't disable DPDM rc=-517\n[    3.804821] pmi632_charger: smblib_eval_chg_termination: Couldn't read SOC value, rc=-22\n[    3.804988] ------------[ cut here ]------------\n[    3.805005] WARNING: CPU: 0 PID: 96 at kernel/workqueue.c:1485 __queue_work+0x4dc/0x548\n[    3.805006] Modules linked in:\n[    3.805013] CPU: 0 PID: 96 Comm: kworker/0:2 Tainted: G        W         4.19.306-freqbench-test-gce0ce72ffcb4 #1\n[    3.805015] Hardware name: Olive QRD (DT)\n[    3.805025] Workqueue: events power_supply_changed_work\n[    3.805029] pstate: 60400085 (nZCv daIf +PAN -UAO)\n[    3.805032] pc : __queue_work+0x4dc/0x548\n[    3.805034] lr : __queue_work+0x4dc/0x548\n[    3.805036] sp : ffffff80086e3c60\n[    3.805037] x29: ffffff80086e3c70 x28: fffffff87174ca80 \n[    3.805040] x27: 0000000000000000 x26: ffffffa1154f0748 \n[    3.805043] x25: ffffffa115119028 x24: ffffffa1154f0000 \n[    3.805045] x23: fffffff80670c600 x22: fffffff852d5c618 \n[    3.805048] x21: ffffffa11520db00 x20: fffffff871752000 \n[    3.805050] x19: fffffff852d5c610 x18: fffffff871640008 \n[    3.805053] x17: 0000000000000000 x16: 0000000000000000 \n[    3.805056] x15: 0000000000000000 x14: 0000000000000086 \n[    3.805058] x13: 0000000000000034 x12: 0000000000000000 \n[    3.805061] x11: 0000000000000000 x10: ffffffffffffffff \n[    3.805063] x9 : 526365e073ed5300 x8 : 526365e073ed5300 \n[    3.805066] x7 : 0000000000000000 x6 : fffffff871658e14 \n[    3.805068] x5 : 0000000000000000 x4 : 000000000000000e \n[    3.805071] x3 : 0000000000002d2d x2 : 0000000000000001 \n[    3.805073] x1 : 0000000000000000 x0 : 0000000000000024 \n[    3.805076] Call trace:\n[    3.805080]  __queue_work+0x4dc/0x548\n[    3.805082]  queue_work_on+0x3c/0x54\n[    3.805086]  smblib_notifier_call+0x5c/0x13c\n[    3.805090]  atomic_notifier_call_chain+0x4c/0x84\n[    3.805093]  power_supply_changed_work+0x78/0xbc\n[    3.805097]  process_one_work+0x21c/0x448\n[    3.805099]  worker_thread+0x248/0x5a4\n[    3.805102]  kthread+0x138/0x154\n[    3.805105]  ret_from_fork+0x10/0x18\n[    3.805107] ---[ end trace 1ad3f03d52beb5d1 ]---\n[    3.820866] ILITEK:INFO (ilitek_tddi_fw_iram_upgrade, 838): DATA CRC is Correct ! (18dcba9) : (18dcba9)\n[    3.820869] ILITEK:INFO (ilitek_tddi_fw_iram_upgrade, 824): Download TUNING code from hex 0x12000 to IRAM 0x20670, len = 0x200\n[    3.824263] ILITEK:INFO (ilitek_tddi_fw_iram_upgrade, 838): TUNING CRC is Correct ! (17d552db) : (17d552db)\n[    3.824266] ILITEK:INFO (ilitek_tddi_reset_ctrl, 663): TP IC Code RST \n[    3.824326] ILITEK:INFO (ilitek_ice_mode_ctrl, 215): Disable ICE mode, mcu on = 0\n[    3.850258] bcl_soc:bcl_read_soc battery percentage read error:-61\n[    3.925937] ILITEK:INFO (ilitek_tddi_fw_check_update, 1391): FW upgrade PASS\n[    3.925959] ILITEK:INFO (ilitek_tddi_fw_upgrade_handler, 476): Flash FW completed ... update TP/FW info\n[    3.925963] ILITEK:INFO (ilitek_tddi_ic_check_protocol_ver, 1026): update protocol version = 50500\n[    3.925965] ILITEK:INFO (ilitek_tddi_ic_get_protocl_ver, 1082): Protocol version = 5.5.0\n[    3.925970] ILITEK:INFO (ilitek_tddi_ic_get_fw_ver, 880): [Vendor]Tianma(TP) + Tianma(LCD), [TP-IC]ILITEK9881H, [FW]Ver:4.1.22.0\n[    3.925973] ILITEK:INFO (ilitek_tddi_ic_get_core_ver, 829): Core version = 1.4.0.0\n[    3.925977] ILITEK:INFO (ilitek_tddi_ic_get_tp_info, 1010): TP Info: xch = 18, ych = 32, stx = 18, srx = 32, max_x = 2047, max_y = 2047\n\n[    3.925980] ILITEK:INFO (ilitek_tddi_ic_get_panel_info, 919): Panel info: width = 720, height = 1520\n[    3.925982] ILITEK:INFO (ilitek_plat_input_register, 41): \n[    3.926066] input: ILITEK_TDDI as /devices/platform/soc/78b7000.spi/spi_master/spi3/spi3.0/input/input2\n[    3.928739] SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    3.928782] QPNP SMB5 probed successfully\n[    3.930475] bcl_soc:bcl_read_soc battery percentage read error:-61\n[    3.942639] SUNWODA match succ.\n[    3.942641] QG-K: qg_load_battery_profile: qg_load_battery_profile: xiaomi sdm439 batt_id=328947\n[    3.942822] of_batterydata_get_best_profile: dhx batt_ids.kohm = 200\n[    3.942824] of_batterydata_get_best_profile: dhx batt_ids.kohm = 330\n[    3.942827] of_batterydata_get_best_profile: dhx batt_ids.kohm = 100\n[    3.942830] of_batterydata_get_best_profile: (null): xiaomi sdm439 checknum = 330,best_id_kohm = 328, batt_id_kohm = 1,match = 10,id_range_pct = 0\n[    3.942833] of_batterydata_get_best_profile: SWD-5000mah-330kohm found\n[    3.943111] QG-K: qg_batterydata_init: QG Battery-profile loaded\n[    3.946279] QG-K: qg_determine_pon_soc: using SHUTDOWN_SOC @ PON ocv_uv=3922900uV soc=59\n[    3.947132] QG-K: qpnp_qg_probe: QG initialized! battery_profile=SWD-5000mah-330kohm SOC=59 QG_subtype=3 QG_version=QG_PMIC5 QG_mode=QG_V_I\n[    3.950046] ------------[ cut here ]------------\n[    3.950063] WARNING: CPU: 0 PID: 331 at kernel/workqueue.c:1485 __queue_work+0x4dc/0x548\n[    3.950065] Modules linked in:\n[    3.950071] CPU: 0 PID: 331 Comm: kworker/0:3 Tainted: G        W         4.19.306-freqbench-test-gce0ce72ffcb4 #1\n[    3.950073] Hardware name: Olive QRD (DT)\n[    3.950083] Workqueue: events power_supply_changed_work\n[    3.950087] pstate: 60400085 (nZCv daIf +PAN -UAO)\n[    3.950090] pc : __queue_work+0x4dc/0x548\n[    3.950092] lr : __queue_work+0x4dc/0x548\n[    3.950093] sp : ffffff800aadbc60\n[    3.950095] x29: ffffff800aadbc70 x28: fffffff87174ca80 \n[    3.950098] x27: 0000000000000000 x26: ffffffa1154f0748 \n[    3.950100] x25: ffffffa115119028 x24: ffffffa1154f0000 \n[    3.950103] x23: fffffff80670c600 x22: fffffff852d5c5b8 \n[    3.950106] x21: ffffffa11520db00 x20: fffffff871752000 \n[    3.950108] x19: fffffff852d5c5b0 x18: fffffff871640008 \n[    3.950111] x17: 0000000000000000 x16: 0000000000000000 \n[    3.950113] x15: 0000000000000000 x14: 0000000000000086 \n[    3.950116] x13: 0000000000000034 x12: 0000000000000000 \n[    3.950118] x11: 0000000000000000 x10: ffffffffffffffff \n[    3.950121] x9 : 526365e073ed5300 x8 : 526365e073ed5300 \n[    3.950124] x7 : 0000000000000000 x6 : fffffff87165a068 \n[    3.950126] x5 : 0000000000000000 x4 : 000000000000000e \n[    3.950129] x3 : 0000000000002d2d x2 : 0000000000000001 \n[    3.950131] x1 : 0000000000000000 x0 : 0000000000000024 \n[    3.950134] Call trace:\n[    3.950138]  __queue_work+0x4dc/0x548\n[    3.950140]  queue_work_on+0x3c/0x54\n[    3.950144]  smblib_notifier_call+0xcc/0x13c\n[    3.950148]  atomic_notifier_call_chain+0x4c/0x84\n[    3.950151]  power_supply_changed_work+0x78/0xbc\n[    3.950155]  process_one_work+0x21c/0x448\n[    3.950157]  worker_thread+0x248/0x5a4\n[    3.950160]  kthread+0x138/0x154\n[    3.950163]  ret_from_fork+0x10/0x18\n[    3.950165] ---[ end trace 1ad3f03d52beb5d2 ]---\n[    3.950785] Error registering TZ zone:-19 for dt_ch:19\n[    3.964650] pmi632_charger: smblib_set_prop_system_temp_level: system_temp_level = 1, ibus =2000000\n[    3.964655] pmi632_charger: smblib_set_prop_system_temp_level: system_temp_level = 2, ibus =2000000\n[    3.964659] pmi632_charger: smblib_set_prop_system_temp_level: system_temp_level = 2, ibus =2000000\n[    3.964662] pmi632_charger: smblib_set_prop_system_temp_level: system_temp_level = 2, ibus =2000000\n[    3.964668] pmi632_charger: smblib_set_prop_system_temp_level: system_temp_level = 2, ibus =2000000\n[    3.973531] coresight-tmc: probe of 6028000.tmc failed with error -13\n[    3.974104] coresight-stm 6002000.stm: STM32 initialized\n[    3.974295] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:anlg-cdc@f000: Adsp is not loaded yet 0\n[    3.974773] msm_otg 78db000.usb: msm_otg probe\n[    3.975892] msm_otg 78db000.usb: OTG regs = 00000000d69de2da\n[    3.975916] irq: type mismatch, failed to map hwirq-172 for wake-gic!\n[    3.975947] msm_otg 78db000.usb: Linked as a consumer to regulator.30\n[    3.975977] msm_otg 78db000.usb: Linked as a consumer to regulator.25\n[    3.975993] msm_otg 78db000.usb: Linked as a consumer to regulator.18\n[    3.976686] msm_otg 78db000.usb: No separate ID extcon device\n[    3.977347] msm_otg 78db000.usb: 78db000.usb supply vbus_otg not found, using dummy regulator\n[    3.977359] msm_otg 78db000.usb: Linked as a consumer to regulator.0\n[    3.977623] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:anlg-cdc@f000: Adsp is not loaded yet 0\n[    3.978278] core_ctl: Creating CPU group 4\n[    3.978280] core_ctl: Init CPU4 state\n[    3.978281] core_ctl: Init CPU5 state\n[    3.978282] core_ctl: Init CPU6 state\n[    3.978283] core_ctl: Init CPU7 state\n[    3.978421] core_ctl: Creating CPU group 0\n[    3.978422] core_ctl: Init CPU0 state\n[    3.978423] core_ctl: Init CPU1 state\n[    3.978425] core_ctl: Init CPU2 state\n[    3.978426] core_ctl: Init CPU3 state\n[    3.978624] registered taskstats version 1\n[    3.978626] Loading compiled-in X.509 certificates\n[    3.978767] msm_otg 78db000.usb: phy_reset: success\n[    3.980193] Loaded X.509 cert 'Build time autogenerated kernel key: 10d2ee089431e992fb5d55d081813c7b795f9320'\n[    3.980269] Key type ._fscrypt registered\n[    3.980271] Key type .fscrypt registered\n[    3.980272] Key type fscrypt-provisioning registered\n[    3.980336] pstore: Invalid compression size for deflate: 0\n[    3.980525] qcom,cc-debug-8952 1874000.qcom,cc-debug: Registered Debug Mux successfully\n[    3.982219] Error: swapper/0: fastrpc_device_init: failed to create debugfs root dir\n[    3.982549] fastrpc soc:qcom,adsprpc-mem: for adsp_rh segments only will be dumped.\n[    3.982963] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb: Linked as a consumer to 1e00000.qcom,iommu\n[    3.983166] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb to group 11\n[    3.983841] adsprpc: fastrpc_device_init: SSR notifier registered for adsp\n[    3.983844] adsprpc: fastrpc_device_init: SSR notifier registered for modem\n[    3.983847] adsprpc: fastrpc_device_init: SSR notifier registered for slpi\n[    3.983850] adsprpc: fastrpc_device_init: SSR notifier registered for cdsp\n[    3.984117] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:anlg-cdc@f000: Adsp is not loaded yet 0\n[    3.984632] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:anlg-cdc@f000: Adsp is not loaded yet 0\n[    3.985869] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    3.987450] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:anlg-cdc@f000: Adsp is not loaded yet 0\n[    3.987971] lpm_levels: Cluster (system) stats not registered\n[    3.987974] lpm_levels: Cluster (pwr) stats not registered\n[    3.987976] lpm_levels: Cluster (perf) stats not registered\n[    3.989719] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:anlg-cdc@f000: Adsp is not loaded yet 0\n[    3.992187] RNDIS_IPA module is loaded.\n[    3.992228] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    3.992549] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:anlg-cdc@f000: Adsp is not loaded yet 0\n[    3.993480] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    3.993855] cfg80211: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'\n[    3.993864] clock_late_init: Removing enables held for handed-off clocks\n[    3.998282] ALSA device list:\n[    3.998285]   No soundcards found.\n[    3.998335] Warning: unable to open an initial console.\n[    3.998917] Freeing unused kernel memory: 2048K\n[    3.998956] Run /init as init process\n[    4.090260] sps:BAM 0x00000000078c4000 is registered.\n[    4.090277] ipa_get_transport_type:2925 IPA HW is not supported\n[    4.090883] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:anlg-cdc@f000: Adsp is not loaded yet 0\n[    4.093089] msm_otg 78db000.usb: USB in low power mode\n[    4.959400] mmc1: new high speed SDHC card at address 0001\n[    4.961583] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    4.961764] cpu1 \n[    4.961815] cpu4 \n[    4.961855] \n               Offline CPUs: \n[    4.964996] cpu1 \n[    4.965902] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0xf) latency=-1\n[    4.965906] sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xf0) latency=-1\n[    4.965918] mmcblk1: mmc1:0001 ASTC 14.9 GiB \n[    4.969703]  mmcblk1: p1\n[    4.969942] mmc_host mmc1: _opp_is_duplicate: duplicate OPPs detected. Existing: freq: 50000000, volt: 0, enabled: 1. New: freq: 50000000, volt: 0, enabled: 1\n[    4.970355] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:anlg-cdc@f000: Adsp is not loaded yet 0\n[    4.991599] CPU1: shutdown\n[    4.991608] psci: CPU1 killed (polled 0 ms)\n[    4.992729] cpu2 \n[    5.022420] CPU2: shutdown\n[    5.022435] psci: CPU2 killed (polled 0 ms)\n[    5.023470] cpu3 \n[    5.052305] CPU3: shutdown\n[    5.052316] psci: CPU3 killed (polled 0 ms)\n[    5.053342] cpu4 \n[    5.084457] CPU4: shutdown\n[    5.084468] psci: CPU4 killed (polled 0 ms)\n[    5.085237] cpu5 \n[    5.113367] CPU5: shutdown\n[    5.113373] psci: CPU5 killed (polled 0 ms)\n[    5.114129] cpu6 \n[    5.154054] CPU6: shutdown\n[    5.154061] psci: CPU6 killed (polled 0 ms)\n[    5.154815] cpu7 \n[    5.183938] CPU7: shutdown\n[    5.183945] psci: CPU7 killed (polled 0 ms)\n\n[    5.841274] qcom,qpnp-smb5 200f000.qcom,spmi:qcom,pmi632@2:qcom,qpnp-smb5: Linked as a consumer to regulator.44\n[    5.841298] of_batterydata_get_best_profile: dhx batt_ids.kohm = 200\n[    5.841303] of_batterydata_get_best_profile: dhx batt_ids.kohm = 330\n[    5.841308] of_batterydata_get_best_profile: dhx batt_ids.kohm = 100\n[    5.841314] of_batterydata_get_best_profile: (null): xiaomi sdm439 checknum = 330,best_id_kohm = 328, batt_id_kohm = 1,match = 10,id_range_pct = 0\n[    5.841320] of_batterydata_get_best_profile: SWD-5000mah-330kohm found\n[    5.841333] QCOM-STEPCHG: read_range_data_from_node: Count qcom,step-chg-ranges failed, rc=-22\n[    5.841338] QCOM-STEPCHG: read_range_data_from_node: Count qcom,jeita-fcc-ranges failed, rc=-22\n[    5.841343] QCOM-STEPCHG: read_range_data_from_node: Count qcom,jeita-fv-ranges failed, rc=-22\n[    8.641004] aw87519_cfg_work_routine enter\n[    8.641009] aw87519_cfg_update enter\n[    8.641190] AW87519_PA 2-0058: Falling back to syfs fallback for: aw87519_spk.bin\n[   10.191932] Sampling power every 250 ms\n               Baseline power usage: \n[   34.401023] apc_mem_acc_corner: disabling\n[   34.401030] dbu1: disabling\n[   34.401599] pmic_analog_codec 200f000.qcom,spmi:qcom,pm8953@1:anlg-cdc@f000: Adsp is not loaded yet 0\n[   34.402486] platform 200f000.qcom,spmi:qcom,pm8953@1:anlg-cdc@f000: deferred probe pending\n[   34.402491] platform soc:qcom,msm-pcm-voice: deferred probe pending\n[   34.402496] platform soc:qcom,msm-voip-dsp: deferred probe pending\n[   34.402500] platform c051000.sound: deferred probe pending\n[   69.601085] aw87519_speaker_cfg_loaded enter\n[   69.601091] aw87519_speaker_cfg_loaded: failed to read aw87519_spk.bin\n[   85.467245] Detected VIPT I-cache on CPU1\n[   85.467341] CPU1: Booted secondary processor 0x0000000101 [0x410fd034]\n[   86.472060] 1574 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 960 1305 1497 1708 1958 2016\n               \n                960: \n[  191.088468]  3118     3.2 C/MHz     46 mW    4.4 J   68.4 I/mJ    96.2 s\n               1305: \n[  270.018033]  4240     3.2 C/MHz     72 mW    5.1 J   58.6 I/mJ    70.8 s\n               1497: \n[  339.886572]  4863     3.2 C/MHz    112 mW    6.9 J   43.5 I/mJ    61.7 s\n               1708: \n[  402.219394]  5549     3.2 C/MHz    144 mW    7.8 J   38.5 I/mJ    54.1 s\n               1958: \n[  457.767660]  6360     3.2 C/MHz    221 mW   10.4 J   28.7 I/mJ    47.2 s\n               2016: \n[  511.831960] CPU1: shutdown\n[  511.831975] psci: CPU1 killed (polled 0 ms)\n[  511.834186] Detected VIPT I-cache on CPU4\n[  511.834490] CPU4: Booted secondary processor 0x0000000000 [0x410fd034]\n[  512.841390]  6547     3.2 C/MHz    227 mW   10.4 J   28.9 I/mJ    45.8 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 768 998 1171 1305 1459\n               \n                768: \n[  641.325429]  2494     3.2 C/MHz     21 mW    2.5 J   121.4 I/mJ   120.3 s\n                998: \n[  742.116179]  3242     3.2 C/MHz     35 mW    3.2 J   93.1 I/mJ    92.5 s\n               1171: \n[  829.316057]  3804     3.2 C/MHz     61 mW    4.8 J   62.2 I/mJ    78.9 s\n               1305: \n[  908.453274]  4240     3.2 C/MHz     79 mW    5.6 J   53.5 I/mJ    70.8 s\n               1459: \n[  980.064714] CPU4: shutdown\n[  980.064731] psci: CPU4 killed (polled 0 ms)\n[  980.085191]  4739     3.2 C/MHz    112 mW    7.1 J   42.3 I/mJ    63.3 s\n               \n               \n               Benchmark finished!\n[  980.117597] \n               real\t16m16.004s\n               user\t13m24.369s\n               sys\t0m1.186s\n"
  },
  {
    "path": "results/sdm439/olive/post_bench_interrupts.txt",
    "content": "           CPU0       \n  1:          0   mpm-gic 203 Edge      mpm\n  4:       2403   mpm-gic  20 Level     arch_timer\n  6:     100009   mpm-gic  39 Level     arch_mem_timer\n  9:          0   mpm-gic 257 Level     arm-smmu-context-fault\n 10:          0   mpm-gic 264 Level     arm-smmu-context-fault, arm-smmu-context-fault\n 15:          0   mpm-gic 287 Level     arm-smmu-context-fault\n 17:          0   mpm-gic  86 Level     arm-smmu-context-fault\n 18:          0   mpm-gic  90 Level     arm-smmu-context-fault\n 19:          0   mpm-gic  92 Level     arm-smmu-context-fault\n 30:          0   mpm-gic 138 Level     arm-smmu-context-fault\n 31:          0   mpm-gic 141 Level     arm-smmu-context-fault\n 32:          0   mpm-gic 142 Level     arm-smmu-context-fault\n 33:          0   mpm-gic 143 Level     arm-smmu-context-fault\n 34:          0   mpm-gic 144 Level     arm-smmu-context-fault\n 35:          0   mpm-gic 145 Level     arm-smmu-context-fault\n 45:          0   mpm-gic  76 Level     msm_vidc\n 46:          0   mpm-gic  65 Level     kgsl_3d0_irq\n 47:          0   mpm-gic 104 Level     MDSS\n 48:          0   mpm-gic  23 Level     arm-pmu\n 49:          0   mpm-gic 216 Level     tsens-upper-lower\n 52:          0   mpm-gic 271 Level     sps\n 53:          3   mpm-gic 128 Level     i2c-msm-v2-irq\n 54:         56   mpm-gic 331 Level     i2c-msm-v2-irq\n 55:       5878   mpm-gic 129 Level     78b7000.spi\n 56:          0   mpm-gic 332 Level     7af6000.spi\n 58:       2205   mpm-gic 200 Edge      rpm\n 59:          0   mpm-gic 166 Level     msm_otg, msm_hsusb\n 60:          0   mpm-gic 172 Edge      msm_otg\n 61:          0   mpm-gic  35 Edge      apps_wdog_bark\n 64:          0   mpm-gic  59 Edge      smp2p\n 65:          0   mpm-gic 323 Edge      smp2p\n 66:          0   mpm-gic 175 Edge      smp2p\n 67:          0   mpm-gic 344 Level     7803000.sdcc1ice\n 69:         79   mpm-gic 155 Level     mmc0\n 70:          3   mpm-gic 170 Level     7824900.sdhci\n 71:        201   mpm-gic 157 Level     mmc1\n 72:          2   mpm-gic 253 Level     7864900.sdhci\n 73:          0   mpm-gic 239 Level     sps\n 77:       3541   mpm-gic  47 Edge      cpr\n 78:          0   mpm-gic 110 Edge      csiphy\n 79:          0   mpm-gic 111 Edge      csiphy\n 80:          0   mpm-gic  83 Edge      csid\n 81:          0   mpm-gic  84 Edge      csid\n 82:          0   mpm-gic 185 Edge      csid\n 83:          0   mpm-gic  87 Edge      ispif\n 84:          0   mpm-gic  89 Edge      vfe\n 85:          0   mpm-gic  61 Edge      vfe\n 88:       2864   mpm-gic  82 Edge      cci\n 90:          0  pmic_arb 8388645 Edge      pon_kpdpwr_status\n 91:          0  pmic_arb 8454181 Edge      pon_resin_status\n 93:          0  pmic_arb 8716325 Edge      pon_kpdpwr_resin_bark\n 94:          0  pmic_arb 37748788 Edge      qcom,temp-alarm\n105:         12  pmic_arb 51380266 Edge      spmi-vadc\n107:          0  pmic_arb 54722600 Edge      qpnp_adc_tm_high_interrupt\n108:          0  pmic_arb 54788136 Edge      qpnp_adc_tm_low_interrupt\n109:          0  pmic_arb 101777422 Edge      pm8xxx_rtc_alarm\n124:       1908  pmic_arb 588251167 Edge      pm-adc5\n125:          8  pmic_arb 592445473 Edge      thr-int-en\n126:          0  pmic_arb 574619676 Edge      qcom,temp-alarm\n135:          0  pmic_arb 600834063 Edge      bcl-lvl0\n136:          0  pmic_arb 600899599 Edge      bcl-lvl1\n137:          0  pmic_arb 600965135 Edge      bcl-lvl2\n138:          0  pmic_arb 1052835852 Edge      qpnp_lcdb_sc_irq\n139:          0  pmic_arb 1026555915 Edge      qpnp_flash_led_fault_irq\n140:          0  pmic_arb 1026752523 Edge      qpnp_flash_led_all_ramp_down_done_irq\n141:          0  pmic_arb 1026818059 Edge      qpnp_flash_led_all_ramp_up_done_irq\n142:          0   mpm-gic  57 Edge      modem\n143:          0   mpm-gic 321 Edge      adsp\n144:          0   mpm-gic 174 Edge      wcnss\n145:          0   mpm-gic  58 Edge      smsm\n146:          0   mpm-gic 322 Edge      smsm\n147:          0   mpm-gic 176 Edge      smsm\n148:          0     smp2p   2 Edge      modem\n149:          0     smp2p   0 Edge      modem\n150:          0     smp2p   1 Edge      error_ready_interrupt\n151:          0     smp2p   3 Edge      modem\n152:          0     smp2p   7 Edge      modem\n153:          0     smp2p   2 Edge      adsp\n154:          0     smp2p   0 Edge      adsp\n155:          0     smp2p   1 Edge      error_ready_interrupt\n156:          0     smp2p   3 Edge      adsp\n157:          0     smp2p   2 Edge      wcnss\n158:          0     smp2p   0 Edge      wcnss\n159:          0     smp2p   1 Edge      error_ready_interrupt\n160:          0     smp2p   3 Edge      wcnss\n161:         20   msmgpio  65 Edge      ilitek\n162:          0  pmic_arb 553648147 Edge      chgr-error\n163:          0  pmic_arb 553713683 Edge      chg-state-change\n164:          0   msmgpio  67 Edge      7864900.sdhci cd\n171:          0  pmic_arb 554696724 Edge      otg-fail\n175:          0  pmic_arb 554958868 Edge      high-duty-cycle\n176:          0  pmic_arb 555024404 Edge      input-current-limiting\n178:          0  pmic_arb 555155476 Edge      switcher-power-ok\n179:          0  pmic_arb 555745301 Edge      bat-temp\n181:          0  pmic_arb 555876373 Edge      bat-ov\n182:          0  pmic_arb 555941909 Edge      bat-low\n183:          0  pmic_arb 556007445 Edge      bat-therm-or-id-missing\n184:          0  pmic_arb 556072981 Edge      bat-terminal-missing\n187:          0  pmic_arb 556793878 Edge      usbin-collapse\n188:          0  pmic_arb 556859414 Edge      usbin-vashdn\n189:          0  pmic_arb 556924950 Edge      usbin-uv\n190:          0  pmic_arb 556990486 Edge      usbin-ov\n191:          0  pmic_arb 557056022 Edge      usbin-plugin\n193:          0  pmic_arb 557187094 Edge      usbin-src-change\n194:          0  pmic_arb 557252630 Edge      usbin-icl-change\n195:          0  pmic_arb 558891031 Edge      typec-or-rid-detect-change\n197:          0  pmic_arb 559022103 Edge      typec-cc-state-change\n198:          0  pmic_arb 559087639 Edge      typec-vconn-oc\n200:          0  pmic_arb 559218711 Edge      typec-attach-detach\n201:          0  pmic_arb 559284247 Edge      typec-legacy-cable-detect\n203:          0  pmic_arb 559939585 Edge      wdog-snarl\n204:          0  pmic_arb 560005121 Edge      wdog-bark\n206:          0  pmic_arb 560136193 Edge      aicl-done\n207:          0  pmic_arb 560201729 Edge      smb-en\n209:          0  pmic_arb 560332801 Edge      temp-change\n211:          0  pmic_arb 711065626 Edge      flash-state-change\n213:          0  pmic_arb 711327770 Edge      ilim2-s2\n216:          0  pmic_arb 612433961 Edge      qg-vbat-low\n217:          0  pmic_arb 612499497 Edge      qg-vbat-empty\n218:         15  pmic_arb 612565033 Edge      qg-fifo-done\n219:          0  pmic_arb 612630569 Edge      qg-good-ocv\n220:          0      smsm   1 Edge      4044000.qcom,bam_dmux\n221:          0      smsm  11 Edge      4044000.qcom,bam_dmux\n222:          0   msmgpio  91 Edge      volume_up\nIPI0:       134       Rescheduling interrupts\nIPI1:         9       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:     49020       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sdm439/olive/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  1:          0          0          0          0          0          0          0          0   mpm-gic 203 Edge      mpm\n  4:        503          2          1          1          1          1          1          1   mpm-gic  20 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   mpm-gic  39 Level     arch_mem_timer\n  9:          0          0          0          0          0          0          0          0   mpm-gic 257 Level     arm-smmu-context-fault\n 10:          0          0          0          0          0          0          0          0   mpm-gic 264 Level     arm-smmu-context-fault, arm-smmu-context-fault\n 15:          0          0          0          0          0          0          0          0   mpm-gic 287 Level     arm-smmu-context-fault\n 17:          0          0          0          0          0          0          0          0   mpm-gic  86 Level     arm-smmu-context-fault\n 18:          0          0          0          0          0          0          0          0   mpm-gic  90 Level     arm-smmu-context-fault\n 19:          0          0          0          0          0          0          0          0   mpm-gic  92 Level     arm-smmu-context-fault\n 30:          0          0          0          0          0          0          0          0   mpm-gic 138 Level     arm-smmu-context-fault\n 31:          0          0          0          0          0          0          0          0   mpm-gic 141 Level     arm-smmu-context-fault\n 32:          0          0          0          0          0          0          0          0   mpm-gic 142 Level     arm-smmu-context-fault\n 33:          0          0          0          0          0          0          0          0   mpm-gic 143 Level     arm-smmu-context-fault\n 34:          0          0          0          0          0          0          0          0   mpm-gic 144 Level     arm-smmu-context-fault\n 35:          0          0          0          0          0          0          0          0   mpm-gic 145 Level     arm-smmu-context-fault\n 45:          0          0          0          0          0          0          0          0   mpm-gic  76 Level     msm_vidc\n 46:          0          0          0          0          0          0          0          0   mpm-gic  65 Level     kgsl_3d0_irq\n 47:          0          0          0          0          0          0          0          0   mpm-gic 104 Level     MDSS\n 48:          0          0          0          0          0          0          0          0   mpm-gic  23 Level     arm-pmu\n 49:          0          0          0          0          0          0          0          0   mpm-gic 216 Level     tsens-upper-lower\n 52:          0          0          0          0          0          0          0          0   mpm-gic 271 Level     sps\n 53:          3          0          0          0          0          0          0          0   mpm-gic 128 Level     i2c-msm-v2-irq\n 54:         56          0          0          0          0          0          0          0   mpm-gic 331 Level     i2c-msm-v2-irq\n 55:       5126          0          0          0          0          0          0          0   mpm-gic 129 Level     78b7000.spi\n 56:          0          0          0          0          0          0          0          0   mpm-gic 332 Level     7af6000.spi\n 58:        668          0          0          0          0          0          0          0   mpm-gic 200 Edge      rpm\n 59:          0          0          0          0          0          0          0          0   mpm-gic 166 Level     msm_otg, msm_hsusb\n 60:          0          0          0          0          0          0          0          0   mpm-gic 172 Edge      msm_otg\n 61:          0          0          0          0          0          0          0          0   mpm-gic  35 Edge      apps_wdog_bark\n 64:          0          0          0          0          0          0          0          0   mpm-gic  59 Edge      smp2p\n 65:          0          0          0          0          0          0          0          0   mpm-gic 323 Edge      smp2p\n 66:          0          0          0          0          0          0          0          0   mpm-gic 175 Edge      smp2p\n 67:          0          0          0          0          0          0          0          0   mpm-gic 344 Level     7803000.sdcc1ice\n 69:         71          0          0          0          0          0          0          0   mpm-gic 155 Level     mmc0\n 70:          2          0          0          0          0          0          0          0   mpm-gic 170 Level     7824900.sdhci\n 71:         52          0          0          0          0          0          0          0   mpm-gic 157 Level     mmc1\n 72:          1          0          0          0          0          0          0          0   mpm-gic 253 Level     7864900.sdhci\n 73:          0          0          0          0          0          0          0          0   mpm-gic 239 Level     sps\n 77:          4          0          0          0          0          0          0          0   mpm-gic  47 Edge      cpr\n 78:          0          0          0          0          0          0          0          0   mpm-gic 110 Edge      csiphy\n 79:          0          0          0          0          0          0          0          0   mpm-gic 111 Edge      csiphy\n 80:          0          0          0          0          0          0          0          0   mpm-gic  83 Edge      csid\n 81:          0          0          0          0          0          0          0          0   mpm-gic  84 Edge      csid\n 82:          0          0          0          0          0          0          0          0   mpm-gic 185 Edge      csid\n 83:          0          0          0          0          0          0          0          0   mpm-gic  87 Edge      ispif\n 84:          0          0          0          0          0          0          0          0   mpm-gic  89 Edge      vfe\n 85:          0          0          0          0          0          0          0          0   mpm-gic  61 Edge      vfe\n 88:       2864          0          0          0          0          0          0          0   mpm-gic  82 Edge      cci\n 90:          0          0          0          0          0          0          0          0  pmic_arb 8388645 Edge      pon_kpdpwr_status\n 91:          0          0          0          0          0          0          0          0  pmic_arb 8454181 Edge      pon_resin_status\n 93:          0          0          0          0          0          0          0          0  pmic_arb 8716325 Edge      pon_kpdpwr_resin_bark\n 94:          0          0          0          0          0          0          0          0  pmic_arb 37748788 Edge      qcom,temp-alarm\n105:         12          0          0          0          0          0          0          0  pmic_arb 51380266 Edge      spmi-vadc\n107:          0          0          0          0          0          0          0          0  pmic_arb 54722600 Edge      qpnp_adc_tm_high_interrupt\n108:          0          0          0          0          0          0          0          0  pmic_arb 54788136 Edge      qpnp_adc_tm_low_interrupt\n109:          0          0          0          0          0          0          0          0  pmic_arb 101777422 Edge      pm8xxx_rtc_alarm\n124:         11          0          0          0          0          0          0          0  pmic_arb 588251167 Edge      pm-adc5\n125:          0          0          0          0          0          0          0          0  pmic_arb 592445473 Edge      thr-int-en\n126:          0          0          0          0          0          0          0          0  pmic_arb 574619676 Edge      qcom,temp-alarm\n135:          0          0          0          0          0          0          0          0  pmic_arb 600834063 Edge      bcl-lvl0\n136:          0          0          0          0          0          0          0          0  pmic_arb 600899599 Edge      bcl-lvl1\n137:          0          0          0          0          0          0          0          0  pmic_arb 600965135 Edge      bcl-lvl2\n138:          0          0          0          0          0          0          0          0  pmic_arb 1052835852 Edge      qpnp_lcdb_sc_irq\n139:          0          0          0          0          0          0          0          0  pmic_arb 1026555915 Edge      qpnp_flash_led_fault_irq\n140:          0          0          0          0          0          0          0          0  pmic_arb 1026752523 Edge      qpnp_flash_led_all_ramp_down_done_irq\n141:          0          0          0          0          0          0          0          0  pmic_arb 1026818059 Edge      qpnp_flash_led_all_ramp_up_done_irq\n142:          0          0          0          0          0          0          0          0   mpm-gic  57 Edge      modem\n143:          0          0          0          0          0          0          0          0   mpm-gic 321 Edge      adsp\n144:          0          0          0          0          0          0          0          0   mpm-gic 174 Edge      wcnss\n145:          0          0          0          0          0          0          0          0   mpm-gic  58 Edge      smsm\n146:          0          0          0          0          0          0          0          0   mpm-gic 322 Edge      smsm\n147:          0          0          0          0          0          0          0          0   mpm-gic 176 Edge      smsm\n148:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n149:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n150:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n151:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n152:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n153:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n154:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n155:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n156:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n157:          0          0          0          0          0          0          0          0     smp2p   2 Edge      wcnss\n158:          0          0          0          0          0          0          0          0     smp2p   0 Edge      wcnss\n159:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n160:          0          0          0          0          0          0          0          0     smp2p   3 Edge      wcnss\n161:          1          0          0          0          0          0          0          0   msmgpio  65 Edge      ilitek\n162:          0          0          0          0          0          0          0          0  pmic_arb 553648147 Edge      chgr-error\n163:          0          0          0          0          0          0          0          0  pmic_arb 553713683 Edge      chg-state-change\n164:          0          0          0          0          0          0          0          0   msmgpio  67 Edge      7864900.sdhci cd\n171:          0          0          0          0          0          0          0          0  pmic_arb 554696724 Edge      otg-fail\n175:          0          0          0          0          0          0          0          0  pmic_arb 554958868 Edge      high-duty-cycle\n176:          0          0          0          0          0          0          0          0  pmic_arb 555024404 Edge      input-current-limiting\n178:          0          0          0          0          0          0          0          0  pmic_arb 555155476 Edge      switcher-power-ok\n179:          0          0          0          0          0          0          0          0  pmic_arb 555745301 Edge      bat-temp\n181:          0          0          0          0          0          0          0          0  pmic_arb 555876373 Edge      bat-ov\n182:          0          0          0          0          0          0          0          0  pmic_arb 555941909 Edge      bat-low\n183:          0          0          0          0          0          0          0          0  pmic_arb 556007445 Edge      bat-therm-or-id-missing\n184:          0          0          0          0          0          0          0          0  pmic_arb 556072981 Edge      bat-terminal-missing\n187:          0          0          0          0          0          0          0          0  pmic_arb 556793878 Edge      usbin-collapse\n188:          0          0          0          0          0          0          0          0  pmic_arb 556859414 Edge      usbin-vashdn\n189:          0          0          0          0          0          0          0          0  pmic_arb 556924950 Edge      usbin-uv\n190:          0          0          0          0          0          0          0          0  pmic_arb 556990486 Edge      usbin-ov\n191:          0          0          0          0          0          0          0          0  pmic_arb 557056022 Edge      usbin-plugin\n193:          0          0          0          0          0          0          0          0  pmic_arb 557187094 Edge      usbin-src-change\n194:          0          0          0          0          0          0          0          0  pmic_arb 557252630 Edge      usbin-icl-change\n195:          0          0          0          0          0          0          0          0  pmic_arb 558891031 Edge      typec-or-rid-detect-change\n197:          0          0          0          0          0          0          0          0  pmic_arb 559022103 Edge      typec-cc-state-change\n198:          0          0          0          0          0          0          0          0  pmic_arb 559087639 Edge      typec-vconn-oc\n200:          0          0          0          0          0          0          0          0  pmic_arb 559218711 Edge      typec-attach-detach\n201:          0          0          0          0          0          0          0          0  pmic_arb 559284247 Edge      typec-legacy-cable-detect\n203:          0          0          0          0          0          0          0          0  pmic_arb 559939585 Edge      wdog-snarl\n204:          0          0          0          0          0          0          0          0  pmic_arb 560005121 Edge      wdog-bark\n206:          0          0          0          0          0          0          0          0  pmic_arb 560136193 Edge      aicl-done\n207:          0          0          0          0          0          0          0          0  pmic_arb 560201729 Edge      smb-en\n209:          0          0          0          0          0          0          0          0  pmic_arb 560332801 Edge      temp-change\n211:          0          0          0          0          0          0          0          0  pmic_arb 711065626 Edge      flash-state-change\n213:          0          0          0          0          0          0          0          0  pmic_arb 711327770 Edge      ilim2-s2\n216:          0          0          0          0          0          0          0          0  pmic_arb 612433961 Edge      qg-vbat-low\n217:          0          0          0          0          0          0          0          0  pmic_arb 612499497 Edge      qg-vbat-empty\n218:          0          0          0          0          0          0          0          0  pmic_arb 612565033 Edge      qg-fifo-done\n219:          0          0          0          0          0          0          0          0  pmic_arb 612630569 Edge      qg-good-ocv\n220:          0          0          0          0          0          0          0          0      smsm   1 Edge      4044000.qcom,bam_dmux\n221:          0          0          0          0          0          0          0          0      smsm  11 Edge      4044000.qcom,bam_dmux\n222:          0          0          0          0          0          0          0          0   msmgpio  91 Edge      volume_up\nIPI0:        68         18         18         18         18         18         18         18       Rescheduling interrupts\nIPI1:         0          3          3          3          5          3          3          3       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:       210          5          6          5          5          5          5          6       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sdm439/olive/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    6 root      0:00 [kworker/0:0H-kb]\n    7 root      0:00 [kworker/u16:0+L]\n    8 root      0:00 [mm_percpu_wq]\n    9 root      0:00 [ksoftirqd/0]\n   10 root      0:00 [rcu_preempt]\n   11 root      0:00 [rcu_sched]\n   12 root      0:00 [rcu_bh]\n   13 root      0:00 [rcuop/0]\n   14 root      0:00 [rcuos/0]\n   15 root      0:00 [rcuob/0]\n   16 root      0:00 [migration/0]\n   17 root      0:00 [cpuhp/0]\n   18 root      0:00 [cpuhp/1]\n   19 root      0:00 [migration/1]\n   20 root      0:00 [ksoftirqd/1]\n   21 root      0:00 [kworker/1:0-mm_]\n   22 root      0:00 [kworker/1:0H]\n   23 root      0:00 [rcuop/1]\n   24 root      0:00 [rcuos/1]\n   25 root      0:00 [rcuob/1]\n   26 root      0:00 [kworker/0:1-mm_]\n   27 root      0:00 [cpuhp/2]\n   28 root      0:00 [migration/2]\n   29 root      0:00 [ksoftirqd/2]\n   30 root      0:00 [kworker/2:0-mm_]\n   31 root      0:00 [kworker/2:0H]\n   32 root      0:00 [rcuop/2]\n   33 root      0:00 [rcuos/2]\n   34 root      0:00 [rcuob/2]\n   35 root      0:00 [cpuhp/3]\n   36 root      0:00 [migration/3]\n   37 root      0:00 [ksoftirqd/3]\n   38 root      0:00 [kworker/3:0-mm_]\n   39 root      0:00 [kworker/3:0H]\n   40 root      0:00 [rcuop/3]\n   41 root      0:00 [rcuos/3]\n   42 root      0:00 [rcuob/3]\n   43 root      0:00 [cpuhp/4]\n   44 root      0:00 [migration/4]\n   45 root      0:00 [ksoftirqd/4]\n   46 root      0:00 [kworker/4:0-mm_]\n   47 root      0:00 [kworker/4:0H]\n   48 root      0:00 [rcuop/4]\n   49 root      0:00 [rcuos/4]\n   50 root      0:00 [rcuob/4]\n   51 root      0:00 [cpuhp/5]\n   52 root      0:00 [migration/5]\n   53 root      0:00 [ksoftirqd/5]\n   54 root      0:00 [kworker/5:0-mm_]\n   55 root      0:00 [kworker/5:0H]\n   56 root      0:00 [rcuop/5]\n   57 root      0:00 [rcuos/5]\n   58 root      0:00 [rcuob/5]\n   59 root      0:00 [cpuhp/6]\n   60 root      0:00 [migration/6]\n   61 root      0:00 [ksoftirqd/6]\n   62 root      0:00 [kworker/6:0-mm_]\n   63 root      0:00 [kworker/6:0H]\n   64 root      0:00 [rcuop/6]\n   65 root      0:00 [rcuos/6]\n   66 root      0:00 [rcuob/6]\n   67 root      0:00 [cpuhp/7]\n   68 root      0:00 [migration/7]\n   69 root      0:00 [ksoftirqd/7]\n   70 root      0:00 [kworker/7:0-mm_]\n   71 root      0:00 [kworker/7:0H]\n   72 root      0:00 [rcuop/7]\n   73 root      0:00 [rcuos/7]\n   74 root      0:00 [rcuob/7]\n   75 root      0:00 [netns]\n   76 root      0:00 [rcu_tasks_kthre]\n   77 root      0:00 [kauditd]\n   78 root      0:00 [kworker/u16:1+M]\n   79 root      0:00 [kworker/u17:0-t]\n   80 root      0:00 [msm_watchdog]\n   81 root      0:00 [oom_reaper]\n   82 root      0:00 [writeback]\n   83 root      0:00 [kcompactd0]\n   84 root      0:00 [crypto]\n   85 root      0:00 [kblockd]\n   86 root      0:00 [blk_crypto_wq]\n   87 root      0:00 [irq/49-tsens-up]\n   88 root      0:00 [edac-poller]\n   89 root      0:00 [ion-pool-uncach]\n   90 root      0:00 [ion-pool-cached]\n   91 root      0:00 [system]\n   92 root      0:00 [devfreq_wq]\n   93 root      0:00 [governor_msm_ad]\n   94 root      0:00 [irq/77-cpr]\n   95 root      0:00 [irq/138-qpnp_lc]\n   97 root      0:00 [cfg80211]\n  138 root      0:00 [kswapd0:0]\n  181 root      0:00 [rot_workq_0]\n  182 root      0:00 [irq/34-arm-smmu]\n  183 root      0:00 [irq/15-arm-smmu]\n  184 root      0:00 [mdss_dsi_event]\n  185 root      0:00 [mdss_dsi_dba]\n  186 root      0:00 [irq/64-smp2p]\n  187 root      0:00 [irq/65-smp2p]\n  188 root      0:00 [irq/66-smp2p]\n  189 root      0:00 [irq/145-smsm]\n  190 root      0:00 [irq/146-smsm]\n  191 root      0:00 [irq/147-smsm]\n  192 root      0:00 [kworker/1:1-eve]\n  193 root      0:00 [kworker/2:1-eve]\n  194 root      0:00 [kworker/3:1-eve]\n  195 root      0:00 [kworker/4:1-eve]\n  196 root      0:00 [kworker/5:1-eve]\n  197 root      0:00 [kworker/6:1-eve]\n  198 root      0:00 [kworker/7:1-eve]\n  199 root      0:00 [mem_share_svc]\n  200 root      0:00 [hwrng]\n  202 root      0:00 [diag_real_time_]\n  203 root      0:00 [diag_wq]\n  204 root      0:00 [DIAG_USB_diag]\n  205 root      0:00 [diag_cntl_wq]\n  206 root      0:00 [diag_dci_wq]\n  207 root      0:00 [MODEM_CNTL]\n  208 root      0:00 [MODEM_DATA]\n  209 root      0:00 [MODEM_CMD]\n  210 root      0:00 [MODEM_DCI]\n  211 root      0:00 [MODEM_DCI_CMD]\n  212 root      0:00 [LPASS_CNTL]\n  213 root      0:00 [LPASS_DATA]\n  214 root      0:00 [LPASS_CMD]\n  215 root      0:00 [LPASS_DCI]\n  216 root      0:00 [LPASS_DCI_CMD]\n  217 root      0:00 [WCNSS_CNTL]\n  218 root      0:00 [WCNSS_DATA]\n  219 root      0:00 [WCNSS_CMD]\n  220 root      0:00 [WCNSS_DCI]\n  221 root      0:00 [WCNSS_DCI_CMD]\n  222 root      0:00 [SENSORS_CNTL]\n  223 root      0:00 [SENSORS_DATA]\n  224 root      0:00 [SENSORS_CMD]\n  225 root      0:00 [SENSORS_DCI]\n  226 root      0:00 [SENSORS_DCI_CMD]\n  227 root      0:00 [DIAG_CTRL+DIAG_]\n  228 root      0:00 [DIAG_DATA]\n  229 root      0:00 [DIAG_CMD]\n  230 root      0:00 [DIAG_DCI_DATA]\n  231 root      0:00 [DIAG_DCI_CMD]\n  232 root      0:00 [CDSP_CNTL+CDSP_]\n  233 root      0:00 [CDSP_DATA]\n  234 root      0:00 [CDSP_CMD]\n  235 root      0:00 [CDSP_DCI]\n  236 root      0:00 [CDSP_DCI_CMD]\n  237 root      0:00 [NPU_CNTL+NPU_CN]\n  238 root      0:00 [NPU_DATA]\n  239 root      0:00 [NPU_CMD]\n  240 root      0:00 [NPU_DCI]\n  241 root      0:00 [NPU_DCI_CMD]\n  242 root      0:00 [DIAG_RPMSG_DIAG]\n  243 root      0:00 [DIAG_RPMSG_DIAG]\n  244 root      0:00 [DIAG_RPMSG_DIAG]\n  245 root      0:00 [DIAG_RPMSG_DIAG]\n  246 root      0:00 [DIAG_RPMSG_DIAG]\n  247 root      0:00 [DIAG_RPMSG_DIAG]\n  248 root      0:00 [DIAG_RPMSG_DIAG]\n  249 root      0:00 [DIAG_RPMSG_DIAG]\n  250 root      0:00 [DIAG_RPMSG_DIAG]\n  251 root      0:00 [DIAG_RPMSG_DIAG]\n  252 root      0:00 [DIAG_RPMSG_APPS]\n  253 root      0:00 [DIAG_RPMSG_APPS]\n  254 root      0:00 [DIAG_RPMSG_DIAG]\n  255 root      0:00 [DIAG_RPMSG_DIAG]\n  256 root      0:00 [DIAG_RPMSG_DIAG]\n  257 root      0:00 [DIAG_RPMSG_DIAG]\n  258 root      0:00 [DIAG_RPMSG_DIAG]\n  259 root      0:00 [DIAG_RPMSG_DIAG]\n  260 root      0:00 [DIAG_RPMSG_DIAG]\n  261 root      0:00 [DIAG_RPMSG_DIAG]\n  262 root      0:00 [kgsl-workqueue]\n  263 root      0:00 [kworker/u16:2+W]\n  264 root      0:00 [kgsl-mementry]\n  265 root      0:00 [kworker/u16:3+S]\n  266 root      0:00 [kworker/u16:4-r]\n  267 root      0:00 [kgsl_worker_thr]\n  269 root      0:00 [irq/10-arm-smmu]\n  270 root      0:00 [irq/9-arm-smmu-]\n  271 root      0:00 [irq/10-arm-smmu]\n  272 root      0:00 [kgsl-events]\n  273 root      0:00 [kgsl_devfreq_wq]\n  274 root      0:00 [qseecom-unreg-l]\n  275 root      0:00 [qseecom-unload-]\n  276 root      0:00 [qcrypto_seq_res]\n  297 root      0:00 [spi3]\n  298 root      0:00 [spi6]\n  299 root      0:00 [msm_vidc_worker]\n  300 root      0:00 [pm_workerq_venu]\n  301 root      0:00 [irq/35-arm-smmu]\n  302 root      0:00 [irq/18-arm-smmu]\n  303 root      0:00 [irq/19-arm-smmu]\n  304 root      0:00 [irq/17-arm-smmu]\n  305 root      0:00 [irq/33-arm-smmu]\n  306 root      0:00 [irq/31-arm-smmu]\n  307 root      0:00 [irq/32-arm-smmu]\n  308 root      0:00 [msm_cci_wq]\n  309 root      0:00 [msm_cci_wq]\n  310 root      0:00 [msm_cpp_workque]\n  311 root      0:00 [irq/135-bcl-lvl]\n  312 root      0:00 [irq/136-bcl-lvl]\n  313 root      0:00 [irq/137-bcl-lvl]\n  314 root      0:00 [dm_bufio_cache]\n  315 root      0:00 [memlat_wq]\n  316 root      0:00 [irq/70-7824900.]\n  317 root      0:00 [irq/69-mmc0]\n  318 root      0:00 [esd_check]\n  319 root      0:00 [bat_check]\n  320 root      0:00 [mmc_complete]\n  321 root      0:00 [sdhci_msm_pm_qo]\n  322 root      0:00 [kworker/0:1H-kb]\n  323 root      0:00 [irq/72-7864900.]\n  325 root      0:00 [irq/161-ilitek]\n  326 root      0:00 [apr_driver]\n  327 root      0:00 [irq/71-mmc1]\n  328 root      0:00 [kworker/u16:6-e]\n  329 root      0:00 [ipv6_addrconf]\n  330 root      0:00 [irq/162-chgr-er]\n  332 root      0:00 [irq/163-chg-sta]\n  334 root      0:00 [irq/164-7864900]\n  335 root      0:00 [kworker/0:5-eve]\n  336 root      0:00 [irq/171-otg-fai]\n  338 root      0:00 [irq/175-high-du]\n  340 root      0:00 [irq/176-input-c]\n  342 root      0:00 [irq/178-switche]\n  343 root      0:00 [irq/179-bat-tem]\n  344 root      0:00 [irq/181-bat-ov]\n  345 root      0:00 [irq/182-bat-low]\n  346 root      0:00 [irq/183-bat-the]\n  347 root      0:00 [irq/184-bat-ter]\n  348 root      0:00 [irq/187-usbin-c]\n  349 root      0:00 [irq/188-usbin-v]\n  350 root      0:00 [irq/189-usbin-u]\n  351 root      0:00 [irq/190-usbin-o]\n  352 root      0:00 [irq/191-usbin-p]\n  353 root      0:00 [irq/193-usbin-s]\n  354 root      0:00 [irq/194-usbin-i]\n  355 root      0:00 [irq/195-typec-o]\n  356 root      0:00 [irq/197-typec-c]\n  357 root      0:00 [irq/198-typec-v]\n  358 root      0:00 [irq/200-typec-a]\n  359 root      0:00 [irq/201-typec-l]\n  360 root      0:00 [irq/203-wdog-sn]\n  361 root      0:00 [irq/204-wdog-ba]\n  362 root      0:00 [irq/206-aicl-do]\n  363 root      0:00 [irq/207-smb-en]\n  364 root      0:00 [irq/209-temp-ch]\n  365 root      0:00 [irq/211-flash-s]\n  366 root      0:00 [irq/213-ilim2-s]\n  367 root      0:00 [irq/216-qg-vbat]\n  368 root      0:00 [irq/217-qg-vbat]\n  369 root      0:00 [irq/218-qg-fifo]\n  370 root      0:00 [irq/219-qg-good]\n  371 root      0:00 [irq/94-qcom,tem]\n  372 root      0:00 [irq/126-qcom,te]\n  373 root      0:00 [irq/125-thr-int]\n  374 root      0:00 [core_ctl/4]\n  375 root      0:00 [core_ctl/0]\n  378 root      0:00 [rq_stats]\n  379 root      0:00 [bam_dmux_rx]\n  380 root      0:00 [bam_dmux_tx]\n  381 root      0:00 [irq/30-arm-smmu]\n  382 root      0:00 [irq/141-qpnp_fl]\n  383 root      0:00 [irq/140-qpnp_fl]\n  384 root      0:00 [irq/139-qpnp_fl]\n  392 root      0:00 [usb_bam_wq]\n  398 root      0:00 [mmc_complete]\n  399 root      0:00 [kworker/u17:1]\n  400 root      0:00 [sdhci_msm_pm_qo]\n  414 root      0:00 [kworker/0:0-mm_]\n  427 root      0:00 [kworker/0:2-eve]\n  480 root      0:00 ps -A\n"
  },
  {
    "path": "results/sdm439/olive/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,960000,3117.692907,3.247596778125,45.57525679943618,4.385839114103121,68.40196190401029,96.23289965\r\n1,1305600,4239.923116,3.247490131740196,72.38695831463717,5.122148563026365,58.56917196145289,70.760654713\r\n1,1497600,4863.418984,3.247475283119658,111.76711781824098,6.894831026592254,43.510856008355866,61.689262112\r\n1,1708800,5549.389567,3.247536029377341,144.1154503241862,7.791652904795534,38.50274180146793,54.065354459\r\n1,1958400,6360.109394,3.247604878472222,221.22762859428738,10.436085635513209,28.746410337907033,47.173518524\r\n1,2016000,6546.930581,3.2474854072420634,226.52704239274192,10.380905531412642,28.89921299179531,45.826341181\r\n4,768000,2494.097303,3.2475225299479167,20.545509240689864,2.471451508566492,121.3861566614382,120.29156735\r\n4,998400,3242.331885,3.2475279296875,34.81854954485303,3.2218889193798668,93.11307978232301,92.533691423\r\n4,1171200,3803.534752,3.247553579234973,61.166865533255766,4.824961540815386,62.17666140180302,78.881948564\r\n4,1305600,4240.042966,3.247581928615196,79.1903389218685,5.6036825739323275,53.536223017978344,70.76219966\r\n4,1459200,4738.887309,3.2475927282072368,112.14033713334675,7.100104355579231,42.252900094948785,63.314455236\r\n"
  },
  {
    "path": "results/sdm439/olive/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 975.1061078049242, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1568.328248484, 1587.693367176, 1590.688027395, 1570.6563964440002, 1576.561128705, 1586.722469506, 1577.24245768, 1575.659731859, 1589.68528472, 1572.6857725399998, 1574.4920196409998, 1587.967090429, 1563.6681359279999, 1584.214654014, 1591.174575315, 1564.593178159, 1569.9162421190001, 1578.329799354, 1563.9543934849999, 1576.3026218300001, 1589.52335958, 1580.998975665, 1587.9028594, 1590.39198273, 1585.2487088879998, 1598.970377008, 1586.4283267430003, 1580.353709712, 1562.2329638339997, 1583.7439935449997, 1579.2517583350002, 1570.015645791, 1597.038117324, 1575.0969450700002, 1559.43301161, 1575.7573236750002, 1559.539438857, 1573.59068493, 1589.76645542, 1577.906889154, 1569.012424056, 1585.315923093, 1584.911229015, 1568.432472768, 1575.67677795, 1585.5585733409998, 1573.2477265359998, 1575.5792157740002, 1579.8316208550002, 1564.1938352369998, 1587.3025095619998, 1581.46341654, 1557.63329425, 1568.955676824, 1572.707640185, 1565.8615119850003, 1580.173361076, 1582.08164246, 1571.762951973, 1583.002740134, 1588.672721818, 1569.3976531199999, 1576.6192096720001, 1585.410396349, 1583.24512291, 1603.2885126479998, 1584.085465728, 1573.189375945, 1580.9181620099998, 1578.4264112179999, 1558.7967747, 1585.993984402, 1572.84656642, 1595.548947055, 1590.52598361, 1577.4239059699999, 1574.2722515, 1583.905918035, 1586.4119520479999, 1572.6057878919999, 1584.32761128, 1591.98817344, 1575.11419704, 1579.347925191, 1576.2772620800001, 1553.663184498, 1572.4454063039998, 1526.3986853879999, 1536.220948934, 1559.7214371100001, 1534.2382102020001, 1545.379351304, 1548.3697115569998, 1537.306411504, 1532.066704373, 1540.2182079650001, 1537.149709856, 1551.390430113, 1555.8620488949998, 1557.605985116, 1537.808302152, 1536.0643659309999, 1533.8107292519999, 1531.638926616, 1550.855688876, 1578.08821841, 1531.9888213269999, 1551.7865042909998, 1545.8052102230001, 1524.6506661, 1536.8476834729997, 1531.832252317, 1519.7991988299998, 1578.7682402070002, 1548.054052839, 1534.818220618, 1539.4773832360002, 1544.71655627, 1536.8359037280002], \"power_mean\": 1568.7122293744874, \"energy_millijoules\": 7843.561146872436, \"energy_joules\": 7.843561146872436}, \"cpus\": {\"1\": {\"freqs\": {\"960000\": {\"active\": {\"elapsed_sec\": 96.23289965, \"elapsed_ns\": 96232899650, \"power_samples\": [37.61923607200015, 45.59878947900029, 54.7351036120001, 57.4755512410004, 46.429743754000356, 38.2090126600001, 32.139995559000226, 38.95285020699998, 45.681685929000196, 50.665379608000194, 50.25041164900017, 34.546912679000116, 28.489469839000094, 36.710951422000335, 37.384888447000094, 55.730473687000085, 57.72516650400007, 43.688165515000264, 40.11502464699993, 46.51269967900021, 49.91608864900036, 61.218156679, 47.591858719000356, 41.53016857900025, 37.70816619700008, 37.961817724000184, 42.11304196900005, 52.078048742999954, 47.00889613000027, 45.6813542470004, 43.19217197900002, 39.37106845500011, 38.70556650300023, 47.2606485590004, 56.23040252999999, 54.31909648900023, 51.3291251390001, 42.939588646000175, 36.4640239580001, 41.281009495000035, 47.67487411900038, 52.16130223799996, 39.950191342999915, 36.62850132700032, 30.813818718999983, 39.86756282300007, 77.81420611600015, 54.152351598999985, 53.32335803299998, 44.43691626900022, 34.636674471000106, 34.06141606500023, 42.609328424000296, 50.75009101900014, 53.24004506300025, 48.58824995900022, 35.30196816300008, 33.8072007589999, 45.01978965900025, 41.86522332100003, 50.66301880900028, 48.58824995900022, 89.69394502399996, 40.36823142900016, 41.699727991000145, 51.412348799000256, 53.652880489000154, 51.3291251390001, 49.584403909, 46.01581495900018, 34.808469475000265, 39.62010099899999, 44.85399675899998, 50.99665728700029, 46.18172680900034, 43.94056649300023, 33.72529201900011, 33.88953170900004, 82.52512025200008, 56.559479393999936, 43.85404287900019, 36.96066711100025, 35.0552188190004, 47.84349211400013, 51.24590147899994, 54.23572404400011, 50.25041164900017, 33.88953170900004, 27.077983655000253, 36.79613061400005, 41.28243928300003, 51.828715199000044, 51.74588864500015, 40.868416629000194, 77.15069803899996, 45.59885341900031, 54.152351598999985, 57.89272907700024, 54.23560704700026, 40.53808791100005, 38.95892122300006, 38.711548167000046, 47.511737047, 49.584403909, 45.93328444900021, 45.43300123900008, 36.1346463990003, 34.39001447900023, 40.28557307400024, 45.43300123900008, 93.43523806500025, 52.574823040999945, 48.33945135900012, 36.878610349000155, 42.52655111900026, 54.402411607000204, 54.98129783100012, 40.20291471900009, 31.068924598999956, 32.23486899399995, 43.35787180700004, 52.824334704999956, 55.73048801800019, 44.93689320900012, 36.5491143820002, 26.83248231900029, 41.11700362300007, 47.511737047, 55.06430189499997, 55.64702626300027, 39.29043439100019, 36.30209815000012, 50.25041164900017, 50.664616223000166, 51.41436327100041, 48.92060809899999, 34.15061206300015, 34.89086009500011, 46.01519718500026, 44.43691626900022, 50.251780171000064, 50.830636755000114, 43.774833263000346, 39.37263917500013, 39.70781236700009, 51.57938165499991, 51.330048110999996, 51.6594527430002, 45.27048787900003, 35.887718935000294, 32.645382559000154, 43.27503502699983, 49.83501720700019, 43.27503502699983, 38.54635040700009, 31.98455799699991, 39.4552676950002, 51.90887505500018, 54.319009327, 50.001345577000166, 40.208183235000206, 32.98171440700003, 40.12549504499998, 52.658136011000124, 56.80866634300037, 49.918181392000406, 39.537896215000046, 34.06141606500023, 47.511737047, 49.91608864900036, 49.669115320000174, 47.346072450000065, 39.29043439100019, 31.573770575000253, 46.514787119000175, 55.892832717000374, 52.408624347000114, 45.601886164000234, 45.767372599000055, 37.96371539100005, 41.03470998700027, 40.78698069100028, 49.00331611900015, 48.673377127000094, 46.34628831100031, 38.12885348100008, 34.6441107510002, 40.95199215700018, 45.93221162000009, 50.002624747000255, 44.274996939000175, 35.47631410200029, 37.220232915999986, 44.93629522300034, 57.058043385000246, 59.879754449000075, 49.91943072700019, 35.7232415660003, 30.82713315900014, 35.14057671500018, 47.67613043400024, 50.41537203100029, 49.58595113500019, 39.54291954600012, 38.96034404700026, 42.69969205300026, 53.073846369000194, 50.58139256300001, 53.070337015000405, 42.448181675000114, 36.308465389000276, 43.609524989999954, 51.161035212000115, 50.997888012999965, 46.84865278600023, 46.597802519000425, 36.473061402999974, 36.05508191800027, 42.944112711000116, 45.18795736900029, 49.17098317600016, 48.00783556900001, 44.77086830500025, 44.68794221500002, 45.68368049200012, 53.40328224700011, 55.3140352610003, 45.435149364000154, 34.39736140700029, 34.23258016700015, 34.31497078700022, 52.574823040999945, 53.486654692, 40.12549504499998, 34.31497078700022, 34.976158863000364, 37.634286072999885, 87.00238213300008, 56.55759392900018, 50.002624747000255, 47.097362618000034, 38.71288222300018, 45.18795736900029, 53.073846369000194, 52.820736583000325, 44.02300815100011, 38.96034404700026, 34.48248263900018, 37.30277232100025, 49.83666334300028, 46.3491820390002, 45.27048787900003, 44.02673269900015, 83.34668615500004, 39.4602611910002, 42.944112711000116, 50.83180796400006, 53.985827911000115, 51.163968062000095, 46.9316980210001, 40.621545031000096, 34.72932075100016, 42.28299204699988, 50.997888012999965, 48.0098179810002, 37.220232915999986, 28.094823259000123, 34.23258016700015, 48.754339398999946, 94.80564891400013, 54.98061625000014, 41.45256864900034, 30.248365342999932, 33.23907530400015, 41.286838360000274, 51.82628804900014, 51.24389125400012, 48.58849702900011, 39.130475549000266, 37.634286072999885, 45.019221313000116, 44.191661461000194, 51.74588864500015, 47.51040670900011, 35.47899269200025, 87.7511989850002, 38.88292437300038, 48.83917940200013, 52.904330229999914, 49.50431389900018, 46.43427835700004, 41.369791344000305, 33.73950399500018, 44.27416228900006, 48.50578900900018, 47.844034739000335, 48.50578900900018, 40.539251395000065, 35.39386400700005, 39.96054270699983, 52.1591126830001, 95.04674488900014, 47.17853323400004, 43.613100669000005, 35.06490926900028, 43.19604182900025, 51.07775207700024, 56.55759392900018, 48.92191710400016, 33.986253339000314, 29.173717284000304, 34.98245917400027, 46.3491820390002, 52.488220939000485, 51.74340232500026, 39.63021398900014, 38.465420399000095, 59.37841380900022, 51.82628804900014, 53.736344475999886, 47.09588438399987, 41.45619460300031, 36.97500400600029, 44.69107264900026, 47.17853323400004, 47.09588438399987, 45.02107267300016, 39.21313390400019, 37.886830119000024, 35.97260218300016, 44.191661461000194, 50.33214837100036, 50.41537203100029, 59.70624500100007, 42.20018490700022, 38.465420399000095, 43.8603823630001, 50.24988738100001, 53.40329506300009, 40.62613008100038, 32.16038953900011, 38.13420317500004, 42.1178024190001, 52.32196311700022, 54.23169411900017, 42.61361519900015, 27.931058149000137, 24.862946696000108, 38.548048919000166, 61.282153638999944, 56.390920266000194, 52.40487832900021, 44.77402857400011, 39.87878133700019, 52.07579971300015, 55.14269464500012, 51.992158190000055, 44.60811672400041, 38.1357537910003, 35.39651295700037, 42.78255866800009, 47.09588438399987, 49.75086311500036, 47.51204207700016, 40.62613008100038, 53.48669734300029, 39.30030931300007, 37.80465482300019, 50.74504663000016, 52.82095778500002, 52.904330229999914, 45.68633599900045, 35.7317446510001, 40.791201064000234, 48.83917940200013, 49.75086311500036, 44.77402857400011, 35.06490926900028, 29.674353166999936, 31.742083954000236, 50.499220925000145, 55.05920325000034, 49.91688364700008], \"power_mean\": 45.57525679943618, \"energy_millijoules\": 4385.839114103122, \"energy_joules\": 4.385839114103121, \"coremark_score\": 3117.692907, \"coremarks_per_mhz\": 3.247596778125, \"ulpmark_cm_score\": 68.40196190401029}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1531.786924766, 1539.9338551820001, 1541.995591425, 1550.094952032, 1546.5228558739998, 1542.15282717, 1533.0174772009998, 1534.504890459, 1538.299332596, 1545.0638812319999, 1537.87704912, 1541.494115187, 1533.4557839279998, 1531.7090122319998, 1540.5624892609999, 1546.0698886050002, 1549.454895908, 1551.044115522, 1550.223015939], \"power_mean\": 1541.3296291388947, \"energy_millijoules\": 7706.648145694473, \"energy_joules\": 7.706648145694473}}, \"1305600\": {\"active\": {\"elapsed_sec\": 70.760654713, \"elapsed_ns\": 70760654713, \"power_samples\": [75.631604574, 80.04373393900028, 78.19652469100015, 63.184706409, 52.40495066200015, 52.89935053500017, 66.25533441300036, 72.88530427900014, 81.26517787900025, 68.24420467900018, 66.17167909100021, 66.08759255600012, 94.37895241299998, 83.00775979100013, 76.37873875300033, 73.55138403700016, 65.16436552300024, 67.66216513900008, 75.36536560100035, 77.0323862470002, 73.79250336300015, 71.64064527400001, 62.43902599900002, 65.1735015490001, 73.72033086700026, 76.62336579900011, 77.69913714400013, 79.68115660900025, 92.45047963900015, 66.99597958900017, 70.39610521900022, 80.34796693900012, 74.45855293900013, 66.99597958900017, 60.94773811900018, 64.75957579900023, 71.22691152300013, 80.10472485900027, 81.26517787900025, 65.83576416400024, 59.61976644900028, 62.93332360900013, 64.75957579900023, 80.34796693900012, 97.094907229, 76.11650051900006, 68.65396939900006, 69.23594926900023, 76.69464711100022, 76.63208204100033, 77.36084470900005, 63.096356595000316, 61.10725003900029, 63.347828746999994, 71.64064527400001, 79.68115660900025, 82.17511183900024, 71.55626116899998, 66.33365749900031, 66.41777386900026, 88.4732788990002, 79.1029805290002, 81.33883782700036, 77.77383597700009, 71.38792569800012, 64.92176192500028, 64.92176192500028, 75.04053280900007, 76.69464711100022, 66.33365749900031, 60.03088305400024, 52.89935053500017, 61.605781779000154, 71.30354159300009, 80.09391058700021, 78.28123620100018, 68.48593073500024, 62.76587855900016, 65.66802230700046, 65.1735015490001, 81.92078801499997, 82.00527229900013, 80.92617265900026, 67.99201946300013, 64.09353903400006, 71.55626116899998, 74.88078388700023, 77.02298653900016, 76.28531095900007, 67.32589343000018, 60.103218719000324, 62.27120977900017, 79.08885685900009, 81.33883782700036, 78.93387328200015, 75.11245612000016, 68.98358593300031, 67.99201946300013, 67.90781378300017, 68.57016605500007, 80.58716743900027, 78.18290519900006, 78.43669407900006, 72.63240658299992, 64.09353903400006, 61.02383159100032, 76.03187831899982, 74.77452046700023, 71.88543211100023, 66.33365749900031, 58.452878943000314, 62.10382385700018, 71.80145106300006, 80.00908012700029, 84.15594285499992, 67.82360810300042, 58.04179158900024, 54.724490419000176, 63.674414419000186, 75.69425743900001, 77.27659729900006, 75.36536560100035, 63.347828746999994, 79.58579788300017, 75.11245612000016, 80.68685375100017, 77.1919156240001, 78.43669407900006, 74.78727828900014, 63.83700177100013, 64.00954180899998, 70.72165107500018, 79.51199023400022, 75.61870888900012, 68.23365675100013, 64.83813609100025, 62.18773196699999, 60.68886782300024, 68.57016605500007, 100.3860026780003, 78.93387328200015, 80.17874104700036, 69.80713011100033, 64.1722481950003, 69.30965342200011, 77.52013586500016, 79.59679085900007, 71.38792569800012, 64.25627525500022, 57.3762012210002, 63.68283788100007, 76.93830486399997, 80.50274251900032, 77.10723394900015, 67.73983424700032, 83.1372225990001, 58.36914945300009, 64.83813609100025, 75.027863755, 81.08460335500035, 80.41788241900008, 67.82360810300042, 68.23365675100013, 70.31221302300014, 75.13351555300028, 78.70392491500002, 71.55626116899998, 65.16436552300024, 62.67737987600026, 62.263112958999955, 74.44989469899997, 95.42226556300034, 78.01385746900019, 76.76937577900003, 68.4792913900003, 68.81548775200031, 70.0481146730001, 77.02298653900016, 78.42611681800031, 75.77844567900001, 70.88248654600034, 64.25627525500022, 61.92779240899995, 69.30965342200011, 77.68912446700006, 80.99971342000026, 68.40169541500018, 91.76815241500026, 62.34705070900009, 71.05125475600016, 88.37438603500027, 85.8812238930002, 76.85405745400021, 69.80713011100033, 54.47267350700008, 62.263112958999955, 72.87689630800014, 83.91362209900012, 77.60484737500042, 69.89145474100019, 65.91393838100021, 67.07379756600017, 76.28531095900007, 95.1820023539999, 82.15957260500022, 74.60576954400017, 66.23376580000013, 65.41010289299993, 82.23239971800012, 83.64658272700035, 73.95265610500019, 73.95265610500019, 69.89145474100019, 62.514495759000056, 64.99662366600023, 73.28635173099997, 79.08885685900009, 70.63772939100022, 71.63305607500024, 98.13067523200016, 65.41010289299993, 74.28120290400011, 81.1690579570004, 78.83488985900021, 75.27158039900019, 61.27069882400019, 54.14112675100023, 66.1562455610001, 71.9698460510001, 79.8398542350003, 83.25040749400023, 68.73165472600022, 59.692605318999995, 58.78389133900032, 65.32641788900014, 104.01647264400003, 80.07931237900016, 81.650747421, 71.54864213500014, 66.99005339199994, 68.0656180870003, 77.94282457900022, 72.94877286000019, 70.31221302300014, 69.38637182900038, 64.99038377500005, 59.768254951000245, 72.45539562700014, 77.0974471510001, 77.01273564100006, 75.3562025990002, 107.41240221400017, 66.07209955100006, 70.71415107500025, 78.17223858600028, 78.0879023240002, 80.4067898740002, 73.69949093700029, 62.91973165900026, 64.66070873900048, 71.38024714700009, 70.95861033900019, 64.33465684300018, 64.41871373800018, 53.22581784800013, 62.84488444300018, 71.87371349499995, 108.91617404900012, 86.207810204, 77.35114726300003, 64.41871373800018, 62.09046798700024, 71.38024714700009, 80.90349271900027, 78.25700957100025, 69.47026402500023, 61.92779240899995, 59.11092318700025, 71.71703712300018, 77.0974471510001, 78.43669407900006], \"power_mean\": 72.38695831463717, \"energy_millijoules\": 5122.148563026365, \"energy_joules\": 5.122148563026365, \"coremark_score\": 4239.923116, \"coremarks_per_mhz\": 3.247490131740196, \"ulpmark_cm_score\": 58.56917196145289}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1565.529068256, 1545.7637013439999, 1545.6545133759998, 1545.2598859819998, 1545.417655824, 1540.500841335, 1532.2817424480002, 1532.782580137, 1538.833644607, 1545.154300662, 1542.3248696029998, 1536.93496368, 1528.7908737760001, 1530.6146222569998, 1538.7553176889999, 1538.5978563590002, 1545.921530703, 1525.1481235140002, 1515.7650607679998], \"power_mean\": 1538.949008016842, \"energy_millijoules\": 7694.74504008421, \"energy_joules\": 7.69474504008421}}, \"1497600\": {\"active\": {\"elapsed_sec\": 61.689262112, \"elapsed_ns\": 61689262112, \"power_samples\": [99.76687799499996, 110.71770879900009, 117.01192377200005, 118.45602584200014, 118.40156680699988, 105.47840215900032, 105.15529240000023, 102.75139335500012, 111.12618907500018, 116.75198595600023, 117.50274345100024, 112.69390315200008, 104.89713695200021, 100.429893967, 103.07103059500014, 116.98269028300001, 112.14767501799997, 119.30383284700042, 109.76834657900008, 102.89925247399992, 112.57986507700002, 116.7231089500001, 120.60567272800017, 114.4923812940001, 93.6270285390001, 101.09720959600008, 110.28581771900008, 120.63650979700014, 126.17281024900012, 115.99754740300023, 106.31420181499993, 100.08693133900033, 138.97554988299999, 115.65093446900028, 119.47771902700015, 117.73763321500019, 104.89713695200021, 97.85510794300035, 111.27205863400036, 114.66534664300025, 118.1096205639999, 113.67996586300023, 105.30638635900004, 103.73840565700038, 104.14397497900018, 111.27205863400036, 115.73769893900021, 114.3436922630001, 160.06070034300024, 109.59541277900007, 106.46499900900017, 107.27866266900014, 116.2321103239999, 119.21733561900032, 120.28894570400007, 115.33331684500035, 102.75139335500012, 99.09968135800023, 102.66575457700014, 111.68065529900014, 114.75205163800024, 109.53586125100014, 100.75368695500015, 99.013779763, 136.88513691100002, 120.54950723200022, 119.96824202500034, 119.21733561900032, 108.35107341400021, 99.27104402700024, 106.87021239599994, 110.6945925460002, 122.11576660900027, 119.88126929500027, 110.60809581100011, 105.96960960700017, 102.89925247399992, 115.01172198200015, 114.66534664300025, 114.45799819900026, 157.87433534399997, 101.22527958700016, 106.87021239599994, 110.92684058400005, 117.21740134300012, 119.44729767300032, 116.3762584210001, 106.87021239599994, 100.1530735570002, 102.40795536900032, 109.27699273899998, 117.21740134300012, 117.30425512300008, 113.91120543900024, 108.20101861900025, 100.58214612400002, 144.263781849, 116.28943447600022, 119.13039252900012, 113.5653937750003, 107.21459954200009, 98.32788856600041, 105.22015735900004, 107.36501061900026, 115.71223469200004, 114.81379745300023, 115.13123754100047, 103.22245100100008, 92.38333982200015, 102.72747435300039, 111.59409908900011, 120.20238930599999, 164.73980409500018, 114.57908628900032, 107.53726370900017, 111.68065529900014, 119.7381024350002, 123.30168384300009, 113.09867082100004, 105.04814155900021, 98.9088857170002, 99.98153272600007, 113.65162444700013, 119.41701209700022, 115.39108600500026, 111.74323278100019, 102.32187515400028, 103.30859069100029, 128.37299524700006, 118.11554181700012, 120.02838417599992, 121.01308162300006, 113.91120543900024, 109.1909987470001, 107.36501061900026, 110.92684058400005, 112.98813471100016, 109.94083695900031, 102.64136449800003, 90.7287463340001, 100.58214612400002, 111.76676763100022, 118.54921667400004, 118.28892261800002, 110.75378783400038, 104.96191255899998, 103.88590888300018, 109.01812422700027, 123.01337213900024, 121.94202948400016, 115.56461494500036, 102.32187515400028, 103.71401211700027, 110.28581771900008, 115.27139232600007, 117.2427168669999, 110.34949275200006, 104.5316519590001, 100.47268247700026, 104.29506893800044, 115.30476648100034, 115.65093446900028, 120.8394040149999, 110.6677051840004, 104.78989675900016, 106.03444164400003, 117.04413918700016, 115.21800201100018, 116.7231089500001, 109.6818796790003, 107.19275752900035, 102.15015616100027, 109.91745265000009, 111.24876200500012, 113.07433589500033, 102.96447367300016, 99.0571618030001, 105.02253397499999, 104.46702522100054, 117.7683345060002, 119.3907759370004, 109.25043201900007, 104.27340715900004, 103.22245100100008, 105.6034417740002, 122.75236501900008, 124.34578108400024, 117.27431012700004, 106.43906447800009, 108.75925571500011, 110.92684058400005, 116.25739586700024, 117.04413918700016, 107.51132678499994, 104.70366775900015, 106.0083592169999, 114.7275074170002, 120.25843654600021, 120.5190868420002, 116.69716947100005, 108.09229425400008, 103.19787992500028, 100.98792348500024, 114.14645059600025, 116.20305578200009, 115.13123754100047, 112.57986507700002, 104.87612575900016, 107.02006162900034, 116.20305578200009, 116.6103156910001, 115.53909118100023, 105.10879261500008, 93.28537139500031, 114.4677477209998, 106.03444164400003, 118.60962571300024, 120.8394040149999, 111.16220579500009, 106.03444164400003, 97.1696916310002, 106.52538259300013, 113.97304060600027, 118.81257910100021, 122.75236501900008, 108.00588682900025, 102.706496345, 110.81642483300016, 120.20238930599999, 119.01332605100038, 113.82497476700019, 110.40856978400006, 102.85364449900021, 101.7206379600002, 110.90298104300018, 110.14943438400019, 112.90148919100011, 107.08032475899995, 107.02006162900034, 99.95744146900006, 107.83351509400018, 110.49465243400027, 119.85482521299991, 121.3332796090001, 117.27431012700004], \"power_mean\": 111.76711781824098, \"energy_millijoules\": 6894.831026592254, \"energy_joules\": 6.894831026592254, \"coremark_score\": 4863.418984, \"coremarks_per_mhz\": 3.247475283119658, \"ulpmark_cm_score\": 43.510856008355866}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1541.064749021, 1531.029699582, 1528.863061553, 1538.0019242, 1544.8950312729999, 1550.626140416, 1538.584529534, 1532.269162928, 1535.0965132860001, 1548.2246832179999, 1555.275083264, 1549.6235678560001, 1547.7210270720002, 1532.269162928, 1529.39903644, 1533.7780060159998, 1541.32825472, 1543.230140694, 1541.59573528], \"power_mean\": 1540.151342593737, \"energy_millijoules\": 7700.756712968685, \"energy_joules\": 7.700756712968685}}, \"1708800\": {\"active\": {\"elapsed_sec\": 54.065354459, \"elapsed_ns\": 54065354459, \"power_samples\": [129.7057010410001, 141.92604285100015, 143.0839430210001, 144.15401395900017, 144.7348325590001, 142.23896905900006, 136.27122358300016, 128.42619139900012, 139.7478292190001, 155.29608663900012, 147.85484847500015, 136.6223531590001, 130.48320655800012, 133.9560167730001, 142.55551295700025, 151.99705658300013, 149.2776468640002, 139.92352495900036, 131.06011055, 124.28478775900021, 130.57080426300013, 139.92352495900036, 145.8043022889999, 151.24278527100023, 138.76580290900029, 149.41644648700026, 142.55551295700025, 149.46633900700022, 158.90268152800013, 149.81986765299985, 145.67544778299998, 138.59022581400018, 132.85353380500032, 138.23862026899997, 147.1894839030001, 151.819659623, 149.3278669570002, 148.17044167200015, 137.34466765900015, 135.02578457300046, 130.7976778860002, 147.0130163870001, 148.83580659100016, 147.41330496700016, 142.06303602900016, 143.71305688700045, 133.5541557790002, 131.29063076700004, 138.9914935830002, 143.80133884700012, 145.1866097709999, 134.44891022100023, 129.32180773200002, 129.23426969700017, 132.0427899910003, 147.85484847500015, 152.4003292010002, 159.57451080700002, 141.79891034899993, 136.50067423299993, 133.6931385170003, 142.06303602900016, 154.36093925500018, 154.05018055900018, 151.64271752700006, 139.7131593260001, 134.58750742600023, 140.95805821300019, 146.69724507, 151.819659623, 147.58983161100014, 139.2730934640001, 135.04294618300014, 135.71115358600014, 143.71305688700045, 151.28883333500016, 151.1545711430001, 149.64310333000003, 150.48529224200024, 143.9413850469998, 138.4146487190003, 143.9413850469998, 155.20766531900017, 149.41644648700026, 148.25896172700027, 136.32527530000016, 135.34330842299983, 134.85056380200012, 140.34227349700018, 153.5181857590003, 141.53478466900015, 142.11530537800036, 133.43026026100029, 140.28985629399995, 149.90847701799999, 156.36515007900016, 152.80393764900032, 141.31025813500014, 133.747813362, 130.7976778860002, 137.21902049699997, 150.308468791, 152.57778583100026, 150.97723346299995, 140.83060027900024, 138.63976963000027, 145.49909930100034, 153.73544871100012, 154.67053750900027, 150.35061502899998, 143.9889985990003, 138.51705571900038, 130.7660362590002, 137.8874660790002, 142.78407840700038, 143.2725525430003, 148.4820619120003, 140.3775375040002, 138.23862026899997, 133.11632329300028, 190.51139825200016, 153.91761418400006, 150.53479868700015, 150.8003504950002, 139.30836403900003, 136.2378012820002, 144.657741709, 148.79729828500035, 147.72874929500017, 138.32663449400002, 130.44806724800014, 127.7841064390002, 137.04350291900028, 147.0130163870001, 149.06258262100027, 144.38203826000017, 176.443646231, 128.50411562099998, 136.90579600900014, 140.83060027900024, 159.30762222299995, 153.65152801600038, 143.2725525430003, 139.44930053400026, 139.22029033900026, 148.30541662300016, 150.92757814900028, 147.99385551100022, 143.0964413510003, 137.39498927700038, 135.04294618300014, 142.51977402300008, 195.84444259099996, 155.2519816070003, 150.6688537030002, 145.6378900940001, 135.30618067900036, 135.21828559900018, 144.5693704390003, 150.35791571900018, 151.200134855, 151.691867732, 143.0964413510003, 139.976566305, 139.30836403900003, 149.06258262100027, 155.2519816070003, 140.60631040900012, 172.57286852200036, 135.56941517500013, 137.79945185400015, 156.23542740900007, 155.34088834700037, 147.2367783230004, 141.35885163900002, 129.11574351299987, 135.6573102550003, 144.83403106299988, 150.53479868700015, 150.53479868700015, 136.41320021499996, 131.02855827500025, 136.554879109, 146.60881432500014, 189.75016723900035, 152.53811836900036, 149.77754387900018, 138.83347941500028, 140.3775375040002, 141.99116525500017, 148.21686692799994, 145.0575480890002, 143.9889985990003, 141.18291860900013, 133.16738200500026, 134.14923027900022, 140.42998438900008, 148.12877133400025, 150.0430063350002, 146.39515325900015, 190.2935675590004, 138.11240945400027, 136.7303375590002, 149.024200996, 150.93449427900032, 144.74565979299996, 143.9889985990003, 127.87161483400018, 131.74761282400027, 145.3222974810003, 150.53479868700015, 155.47715258400012, 145.6378900940001, 135.97447743399994, 126.80160542300018], \"power_mean\": 144.1154503241862, \"energy_millijoules\": 7791.652904795534, \"energy_joules\": 7.791652904795534, \"coremark_score\": 5549.389567, \"coremarks_per_mhz\": 3.247536029377341, \"ulpmark_cm_score\": 38.50274180146793}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1543.207255724, 1552.73724684, 1561.866905533, 1564.271601984, 1558.0420876409999, 1539.3009149700001, 1535.472414502, 1535.629756882, 1537.3537012049999, 1543.1511124590002, 1536.476165874, 1538.7225022260002, 1530.668908782, 1545.21607002, 1544.608609128, 1549.330755648, 1550.332615923, 1547.432941509, 1543.1024396760001], \"power_mean\": 1545.1012635013685, \"energy_millijoules\": 7725.506317506843, \"energy_joules\": 7.725506317506842}}, \"1958400\": {\"active\": {\"elapsed_sec\": 47.173518524, \"elapsed_ns\": 47173518524, \"power_samples\": [202.93623210400028, 216.85554657500006, 216.9754317190002, 206.07327879400032, 199.5297006090002, 192.49793693900006, 195.8752159190003, 204.8254561990002, 202.90680096899996, 202.2392303590002, 198.28232386900027, 195.1174497080001, 202.60438660900013, 210.00383743100042, 206.0134309450002, 259.6851123590002, 200.71872034900002, 197.37221469700012, 196.67144677300007, 211.0330302760001, 211.7047185670001, 209.38928396500023, 206.19619014700015, 197.91846727300026, 195.8752159190003, 198.28232386900027, 202.63296220100028, 208.50819140700014, 202.63296220100028, 196.45514099900038, 190.88854464099995, 228.77169751700012, 201.47702104600012, 212.46414697500018, 212.18879331100015, 198.40328574699993, 193.68900597700008, 197.15629508200027, 199.31369071099994, 210.15226466500008, 211.0330302760001, 200.90094545400007, 196.09164072700014, 188.08778573500012, 195.20849891300008, 207.077638945, 211.21679476600002, 239.86967868400006, 203.5186758550003, 195.1174497080001, 197.91846727300026, 204.8254561990002, 212.04185020700015, 207.80962045600018, 202.26815644500016, 192.7463231080003, 192.25712968300013, 200.04759736300002, 208.3251949150001, 209.38928396500023, 204.27771307900002, 204.67443889000015, 195.02686742200012, 235.82406798400007, 201.3861132280001, 213.25681614500036, 214.50410876800038, 213.072813365, 204.0946626790003, 199.01232190500036, 195.4548144150001, 201.65930527900014, 202.69709264700032, 209.24064780300023, 199.40978365900014, 191.46456110500003, 189.67399222100016, 193.7799957069999, 207.29109998700028, 230.57975207900017, 209.81548833400007, 199.10360901000035, 194.1744401970002, 196.12555043700036, 211.91343964700013, 221.74159462900002, 216.53956811000012, 209.20616882800027, 199.28571508100026, 197.94808326499992, 207.16931293000016, 206.80308711300017, 210.70225951300017, 203.63797539900042, 196.03441192200012, 215.01644665900017, 198.73892872900024, 205.73905723300027, 213.9243325570003, 209.5109179330002, 207.65744499100015, 205.64744272300027, 195.42075583600035, 232.46954574300025, 241.3246064299999, 241.71752672700018, 245.96318385100017, 250.86772578399996, 251.25954766300015, 237.00025545000017, 233.34576755500007, 243.95233444199994, 248.664780587, 253.47514948300022, 243.16786554700002, 230.75754926700006, 230.1783090150002, 230.94303886000012, 241.43744967099997, 239.79619777099992, 241.5304889670001, 232.09785212500014, 219.47972173900007, 221.4908819950001, 226.13498490300003, 241.34393079100005, 245.308328803, 233.4383922730001, 240.76463102200023, 235.5660781930003, 243.37312402500015, 253.5410182080002, 250.3987154590002, 253.8350574240003, 244.71467328100016, 234.800873379, 233.62459660300033, 243.5599194910003, 242.3120672350003, 247.69729688500024, 247.02418086099988, 245.77615109500016, 236.72089145800032, 237.38971537899988, 243.65355732100033, 245.58911833900015, 246.5424836200002, 248.2765966540003, 242.9806495570001, 232.3058163840003, 234.800873379, 245.682394315, 249.33747451900012, 238.0619065750002, 224.21999906400015, 226.31999952700016, 227.65994606100003, 240.67114197700016, 247.2290289590003, 245.01372309900012, 233.94641125900012, 222.96904125900028, 225.67221053499998, 244.54556805100015, 244.34084505900046, 244.4345423640002, 234.52177685900006, 230.57205967400023, 244.1207860830002, 248.91488974499998, 257.77604470200026, 254.133189527, 241.91944428700026, 237.50330101900022, 250.79038846900016, 255.11502954700018, 252.80173588900016, 251.75679607400025, 251.9449644440001, 242.60717765900017, 237.6895028710003, 243.85914712400017, 240.97081443900015, 247.30514851700013, 250.3987154590002, 239.90543290100004, 235.9555679990001, 231.42932557900008], \"power_mean\": 221.22762859428738, \"energy_millijoules\": 10436.08563551321, \"energy_joules\": 10.436085635513209, \"coremark_score\": 6360.109394, \"coremarks_per_mhz\": 3.247604878472222, \"ulpmark_cm_score\": 28.746410337907033}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1538.649593865, 1544.5548534600002, 1547.349787584, 1545.5060412660002, 1545.296011524, 1539.9406310640002, 1533.6981307400001, 1537.3537012049999, 1540.9719260460001, 1548.3797607039999, 1547.088663848, 1543.9226554079999, 1538.7019217640002, 1541.3367052380001, 1558.827703251, 1561.227817756, 1562.809606314, 1554.1837506299998, 1543.8975003599999], \"power_mean\": 1545.9840401066842, \"energy_millijoules\": 7729.920200533421, \"energy_joules\": 7.729920200533421}}, \"2016000\": {\"active\": {\"elapsed_sec\": 45.826341181, \"elapsed_ns\": 45826341181, \"power_samples\": [266.75348530400015, 285.9261508590005, 258.68732332900026, 251.07149824300018, 231.70788773900017, 233.34576755500007, 226.6905043910001, 221.12144669800023, 212.24668806300042, 216.2912595990001, 230.53018591900013, 233.23463245400012, 229.7882255950003, 220.24341322500004, 213.33368181000014, 218.4167041190001, 226.52915101400026, 251.41398965500048, 235.2868923210001, 230.08535563500027, 217.19267345900016, 216.4061680750001, 227.93788392500028, 226.64530471600006, 223.56940326300014, 231.80090078900002, 224.0103729970001, 224.102999167, 226.99207425100008, 233.25266539000017, 236.906974665, 229.97359654299999, 222.92306888700023, 264.8496786310002, 214.95190838899998, 225.9294415270001, 232.09785212500014, 230.73507592700025, 228.23930534700003, 221.97779373100025, 214.18878083500022, 220.15099531500005, 228.42497420700033, 229.88114933499992, 221.97779373100025, 211.20788298100024, 211.48332599700007, 210.236953351, 223.61579104500015, 260.70400826700006, 228.9307204900001, 216.98543800900006, 210.16984743900025, 214.37254910299998, 228.9307204900001, 235.47285688300008, 227.56761738699993, 216.01510351900015, 217.16997625900012, 224.28777650099983, 229.11603192100029, 232.6365872690003, 226.22725440700015, 218.62757693100002, 217.56092186500018, 262.93119030400044, 230.3637390910003, 232.09785212500014, 234.8935869490001, 230.54916916700017, 217.56092186500018, 212.54669883100019, 216.70957698400025, 228.9307204900001, 228.23930534700003, 228.54054806499994, 220.93696617100022, 212.36263677100033, 211.69562332700025, 217.07770713400032, 223.73296949300016, 268.51233557900014, 226.52915101400026, 220.26527836900004, 209.59451147900018, 220.08085735900022, 234.6149683340002, 237.6895028710003, 228.63341233000028, 219.20303129900003, 210.7205547670003, 213.6370036190001, 225.4668150550001, 225.07250061700006, 224.0103729970001, 214.21612468400008, 216.15690858400035, 257.7315250060001, 228.81866463300003, 232.97383634200014, 230.1783090150002, 224.70270865900034, 221.93179158600014, 222.4862423540003, 230.9652143090002, 233.06693850700026, 236.83080985900006, 229.41748369900006, 223.04021842099996, 219.20303129900003, 215.25141428500024, 224.31217990999994, 224.40483591500015, 276.87647167499995, 229.9928789390001, 220.66000825900028, 212.85031794700035, 216.4061680750001, 233.1814739590004, 235.7695443089999, 219.98840980900013, 211.5362453170003, 215.0675273720001, 218.2060665659999, 235.38011363100009, 232.58407936900016, 223.94250620800017, 215.73894743900019, 210.53714282300007, 250.11721285900012, 232.02707610400012, 232.398411614, 227.5908925590004, 218.14019179900015, 216.61730785900022, 224.49701676099994, 230.8275526230002, 233.32770497900015, 226.31999952700016, 219.41307384900006, 207.86093338900037, 209.10727265900027, 218.53521849599997, 235.00770644900012, 228.170043459, 236.94421679500033, 226.73380379500009, 222.67090104300019, 222.30110896400015, 231.72663564900017, 239.33000817300012, 232.21274385900028, 225.0041885830001, 216.22216251700002, 208.83209711500012, 222.39367565900034, 226.96826413500003, 223.84985020299996, 215.66967282100018, 211.4200909590004, 216.43324278400019, 228.86089432300014, 235.00770644900012, 227.19687492800017, 217.77182435900022, 206.98129566800003, 212.32257529100002, 222.11645027500026, 228.86089432300014, 235.30376776900016, 227.5908925590004, 216.91625049100003, 218.8339527840003, 230.38609324400022, 226.34360110400007, 227.77608534499996, 224.70270865900034, 222.62383048300012, 225.7644800390001, 232.90255555900035, 239.8124529690001, 234.42858538400014], \"power_mean\": 226.52704239274192, \"energy_millijoules\": 10380.905531412642, \"energy_joules\": 10.380905531412642, \"coremark_score\": 6546.930581, \"coremarks_per_mhz\": 3.2474854072420634, \"ulpmark_cm_score\": 28.89921299179531}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1587.37744978, 1590.2764743839998, 1581.5832000799999, 1576.0398947800002, 1581.4212749399999, 1602.618381194, 1600.202392236, 1599.2150966749998, 1590.2764743839998, 1583.995558843, 1587.63361874, 1590.450403035, 1582.66123641, 1576.443578858, 1574.800438835, 1576.443578858, 1567.585558458, 1574.707114587, 1582.41796245], \"power_mean\": 1584.5341940803683, \"energy_millijoules\": 7922.670970401841, \"energy_joules\": 7.922670970401842}}}}, \"4\": {\"freqs\": {\"768000\": {\"active\": {\"elapsed_sec\": 120.29156735, \"elapsed_ns\": 120291567350, \"power_samples\": [2.383053999999902, 17.867500141000164, 28.13522239300005, 25.73676450300013, 23.171042137000086, 67.36604018100024, 13.485892628000101, 25.23797939399992, 28.547730788999843, 20.446360925999898, 15.97514521900007, 7.786422279000135, 11.596064374999969, 25.247257159000355, 30.533495515000368, 18.462913012000172, 10.17459410299989, -1.0634293349996824, 7.867295059000071, 18.539441457000066, 33.10145721799995, 35.91553679499998, 26.89484279300018, 26.14990275900027, 33.76449321500013, 36.16409468100005, 34.67540215899999, 24.16151368900023, 7.867295059000071, 12.501979069000072, 12.246793841000226, 22.839670289000196, 25.73676450300013, 20.437802301000147, 16.627537561000054, 16.050337777000095, 15.143591248000348, 23.915655529000105, 33.183602831999906, 28.13522239300005, 20.601631161000114, 18.789913063000085, 16.96374585600006, 26.231693159000315, 20.519716731000244, 18.36673164700028, 2.4790187109999806, -5.729369335999763, 10.093215142999952, 19.688638492000337, 25.31971062400021, 24.574889235000228, 15.224819242000194, 12.916245661999938, 20.024460865000265, 19.779226417000245, 28.7123926889999, 35.00518780100015, 24.574889235000228, 16.050337777000095, 18.702672470000152, 27.633754049000117, 29.451682398999992, 22.749914031000117, 12.409371723000277, 3.3136626040002284, 3.3835986730002787, 17.127217866000137, 17.632250183000224, 17.29639855900018, 21.27636990300016, 17.127217866000137, 14.16550571200014, 21.595821116000252, 26.897348839000188, 28.229472839000437, 22.34073639500002, 10.507956079000223, 11.982986449000236, 13.160499574000141, 21.100654365000082, 28.804939631000252, 19.043523073000188, 6.060981304000052, 1.0240686790002655, 13.08984576700027, 20.364416661000178, 24.082995379000295, 22.757636714, 15.306465937000212, 14.807145163000087, 35.503437244999986, 38.977493690000074, 33.76451063100012, 24.657011925000006, 16.96374585600006, 13.404753486000118, 17.704388161999987, 21.918416106999985, 14.48109627100007, 67.94315119700013, 14.807145163000087, 14.98071655900003, 22.09514570700003, 29.29336015800004, 28.465822049000053, 23.997748579000017, 17.78573449600026, 9.349996434000104, 11.251293433, 20.024460865000265, 25.654582143000198, 20.18781052300028, 20.519716731000244, 6.696383634999847, 4.137279737000199, 51.55395630300018, 17.377744893, 18.45803575900004, 9.512277509000114, 1.5750923139999031, 11.746966014000236, 20.519716731000244, 27.225590928999964, 26.721267031000025, 13.985631603000229, 9.106366234000234, 8.097884128000032, 14.3998979590001, 26.89484279300018, 30.3690776630001, 15.38811263200023, 62.47877095900003, 19.035058159000073, 22.266697319000286, 26.311198127000125, 20.351160181000296, 9.268647309000244, 8.285832042000266, 4.552555159000121, 15.061944553000103, 25.73676450300013, 19.860691285000257, 22.34073639500002, 15.224819242000194, 10.426547479000192, 19.524928582000257, 22.02101727900026, 25.90368835900017, 25.23797939399992, 14.073849067000083, 12.908781612000212, 16.066326437000043, 23.498874160000014, 24.83444433500017, 12.409371723000277, 0.5787014430002273, 12.82767195800011, 28.38349109899991, 36.41131116700012, 38.562259451000045, 27.800647444000106, 20.437802301000147, 9.349996434000104, 30.451497923000034, 26.231693159000315, 32.606491816000016, 23.670218359000046, 11.828434089000439, 12.490869633000102, 17.290270717000112, 25.39443156700031, 24.981181219000064, 19.94257607500026, 15.38811263200023, 11.42192928400027, 19.860691285000257, 26.89484279300018, 24.574889235000228, 29.21099937300005, 34.75763662500003, 18.78449778500044, 13.985631603000229, 27.471983449000163, 25.572821231000034, 18.203560151000374, 15.398182098999996, -0.3370834229997399, 0.08252268499995807, 12.82767195800011, 22.09514570700003, 20.274393515000156, 14.98071655900003, 4.38010810500009, 8.935136853000358, 15.88740357100005, 32.27718075400003, 35.503437244999986, 20.93718606199991, 16.882429010000124, 13.24205695899991, 19.279783486000042, 32.606491816000016, 29.709546387000273, 25.73676450300013, 16.301550893000012, 7.114890754000044, 13.415357855000366, 19.437841454000136, 13.252601811000204, 13.404753486000118, 5.331159424000134, 12.834688277000168, 22.593990248999944, 29.627578283000275, 29.709546387000273, 23.83398346900003, 21.595821116000252, 14.89906986400024, 15.061944553000103, 25.080569966999974, 25.4112595590002, 25.247257159000355, 17.559635762000198, 10.438579615000208, 9.776531119000083, 15.730445715000087, 71.22814824200032, 22.67602382400014, 18.040388655000243, 15.649158551000028, 25.07367434400021, 40.799376229000245, 38.977493690000074, 33.018765562000226, 17.62262251700008, 2.2368731589999697, 7.277351104000218, 17.0454818610001, 22.176728915000012, 23.997748579000017, 11.746966014000236, 8.529373474000295, 62.31059788900029, 24.653230009000026, 27.551512214000013, 26.39611715900014, 18.13115411600006, 11.840140167000072, 16.882429010000124, 19.11649334499998, 26.067690759000243, 19.361638441000196, 19.279783486000042, 9.349996434000104, 7.529898857000035, 10.093215142999952, 13.160499574000141, 18.203560151000374, 67.60659928900031, 13.822875559000067, 9.930874550999988, 16.96374585600006, 29.046700166000164, 21.677795021000293, 16.22979844700012, 8.529373474000295, 9.755907709000212, 19.524928582000257, 25.65747395900007, 21.677795021000293, 14.148387647000163, -0.9950377340001069, 3.975532759000089, 13.404753486000118, 69.26072599899999, 23.171042137000086, 15.143591248000348, 16.800693005000085, 24.243606739000143, 29.2164702150003, 24.40737184900013, 19.860691285000257, 12.997803047000161, 10.926374958999986, 17.713626199000146, 23.171042137000086, 26.40223528899992, 23.253105352000148, 15.567452381000066, 9.84949559100005, 32.363294759000155, 19.37064231100021, 25.1650451590001, 25.155826869000293, 23.09640898900011, 19.779226417000245, 18.539441457000066, 29.627578283000275, 31.94349757300006, 31.860988002999875, 22.430343784000343, 8.944085159000224, 11.503397359000246, 25.32669559900023, 24.909790589000067, 20.192899159000035, 30.62106055900017, 10.926374958999986, 17.387283207000337, 34.42425016700008, 34.25941686300007, 30.538610464000385, 18.294385129000375, 9.268647309000244, 20.855241796999962, 29.621958572000267, 26.64853904100005, 23.334747730000117, 13.323196101000121, 5.633021659000178, 11.43306855500009, 16.800693005000085, 41.12798575700003, 18.702672470000152, 20.274393515000156, 16.21984472300005, 8.944085159000224, 27.806439210999997, 35.090844379000146, 30.12223955100012, 26.97919840899999, 13.985631603000229, 13.323196101000121, 14.98071655900003, 20.356307945000253, 24.328942307000034, 13.24205695899991, 4.228526993000287, 16.71937615899992, 24.663754309000296, 30.538610464000385, 27.141146545000083, 12.246793841000226, 6.475604847000113, 5.714192358999981, 13.078942189000145, 25.90368835900017, 32.52437569000017, 23.424360199000148, 23.670218359000046, 20.356307945000253, 32.35519917099987, 25.982890134999934, 25.4112595590002, 25.083254759000283, 16.661235765000356, 14.338481479000166, 26.739827569000227, 26.738632471000074, 20.36873481500038, 19.783747083000208, 12.257813925000164, 17.29639855900018, 28.21925140899998, 36.49638507700001, 32.44183628499991, 31.696391989000176, 19.69734162700024, 16.138557558999764, 46.09016002300018, 23.58812530900036, 17.132867269000144, 10.933956404000355, 13.24205695899991, 18.45803575900004, 29.380828939000367, 29.957821699000306, 15.316924423000046, 5.633021659000178, 10.763498089000223, 21.105238823000036, 25.490638870999874, 16.55590414900007, 6.628759399000046, 6.790803183999969, 36.74317674300028, 24.820836163000195, 23.424360199000148, 19.206872731000203, 10.527451599000187, 17.632250183000224, 28.136920459000066, 24.24724075899985, 21.68596807100016, 20.94129101300041, 11.42192928400027, 10.18273915900022, 20.364416661000178, 21.849555019000036, 18.376210444000208, 5.714192358999981, 27.1510601089999, 12.753549135000185, 20.94129101300041, 21.938983704000293, 20.691773494000017, 3.651623001000189, 10.763498089000223, 19.37064231100021, 26.48447712400025, 23.342267149000236, 14.827702950999992, 2.008719100000235, 15.078053372999875, 24.082995379000295, 22.932643879000125, 13.822875559000067, 47.66169986800014, 25.162752327000135, 39.88956217900022, 37.81800284299993, 28.800040174000287, 19.947575943000174, 14.827702950999992, 16.969755289999966, 23.50603225900022, 24.582023079000237, 19.533991969000226, 10.101748039000313, 14.643911443000206, 22.430343784000343, 25.408877958999938, 21.849555019000036, 54.77565149500015, 16.969755289999966, 20.528305191000072, 25.408877958999938, 18.626203153000233, 8.367151527000033, 2.15588107900021, 10.18273915900022, 22.10632452699997, 30.951066727000352, 21.100654365000082, 11.92122013900007, 9.03737530300009, 17.55045470300024, 27.23159621500008, 30.456160369000145, 58.586137707000034, 13.415357855000366, 18.21297943100035, 26.39611715900014, 21.529657199000212, 18.294385129000375, 10.608919674000163, 8.375475634000168, 16.311115293000057, 24.24724075899985, 25.408877958999938, 23.8370484510001, 15.561535158999959, 11.596064374999969, 16.39865370800021, 23.59787795900047, 30.46086406900008, 23.8370484510001, 11.362681094000209, 9.524814407000122, 17.395985132000078, 25.7396859590001, 28.47101939700019, 21.603964331000043, 18.13115411600006, 22.84363095100025, 37.81800284299993], \"power_mean\": 20.545509240689864, \"energy_millijoules\": 2471.451508566492, \"energy_joules\": 2.471451508566492, \"coremark_score\": 2494.097303, \"coremarks_per_mhz\": 3.2475225299479167, \"ulpmark_cm_score\": 121.3861566614382}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1540.1825616239998, 1531.2980956319998, 1525.689666564, 1536.9389810799998, 1550.11653438, 1552.91127681, 1540.656099192, 1528.320340363, 1539.6550683219998, 1579.181064786, 1547.0097151599998, 1547.693482759, 1536.125310792, 1532.53910268, 1535.96801553, 1542.6582593039998, 1546.217379616, 1534.180351834, 1534.118687141], \"power_mean\": 1541.1294733457369, \"energy_millijoules\": 7705.647366728685, \"energy_joules\": 7.705647366728685}}, \"998400\": {\"active\": {\"elapsed_sec\": 92.533691423, \"elapsed_ns\": 92533691423, \"power_samples\": [29.7109835870001, 39.225026563000256, 43.941448630000195, 82.211424072, 35.42007820300046, 25.90962778500011, 19.53842386700012, 22.10263016900035, 34.51329917500016, 39.388693428000124, 30.53909102500029, 30.296268055000155, 32.94021616700002, 37.48886931900029, 40.13551250500018, 39.225026563000256, 28.88847165900006, 27.149294905000033, 34.346867383000244, 84.2187988510002, 43.19425041400018, 36.74324872300008, 29.798465302000295, 26.245668727000066, 26.32797003700034, 35.09005527100021, 45.347323878, 42.70091863500011, 42.61824010300006, 31.535595946000285, 31.119671251, 44.190135883000266, 43.27770421900004, 32.69284311100023, 23.345575737000217, 19.293520725000235, 21.69330366400027, 39.805606789000194, 46.92128300100012, 43.85828444500021, 34.51329917500016, 25.329047559000173, 21.283977159000187, 30.872988793000104, 40.13700507400017, 47.16412405300025, 35.34003950200008, 24.253834274000155, 29.797828072000357, 36.825529549000294, 41.210971322000205, 40.05404914900032, 34.26565864700001, 24.508613959000286, 27.31529979900006, 31.206284884000297, 37.23941979500023, 37.23941979500023, 30.872988793000104, 29.88052206400016, 26.738632471000074, 27.23159621500008, 39.30795265300003, 40.29983237500028, 36.82791245499993, 36.66272282700015, 28.887330251000094, 29.217307363000145, 38.97709881700007, 42.36935215100016, 42.4524568610002, 31.70032403900018, 22.10632452699997, 29.13407959500023, 29.052889511000103, 41.04598799900032, 35.58785815000033, 27.3976307490002, 17.142316230999995, 9.370323079000173, 20.450708720000193, 34.348346837000236, 42.4524568610002, 44.1069418630002, 38.31750539900008, 34.348346837000236, 43.19425041400018, 44.93717551900022, 45.7574545760001, 51.13993055300011, 32.112322402000245, 25.835006293000106, 27.31529979900006, 37.0753861579999, 43.19499619899989, 35.75354289500024, 37.23941979500023, 28.23037758300029, 20.376010891000305, 23.849941807000278, 32.112322402000245, 38.31454062100033, 42.12046419900025, 43.111861849000206, 39.96831568199991, 31.370940415000177, 35.9166771900002, 48.075386335000076, 44.2729032670004, 34.01498309700014, 25.1650451590001, 21.61169077400018, 27.813400206000097, 39.557589844000404, 77.004586561, 38.14911370300024, 30.374554528000317, 25.1650451590001, 32.939902959000165, 39.30914748400028, 46.421198903000004, 44.766832851000345, 29.715800798000373, 26.322292324000045, 29.797828072000357, 33.52030463400024, 43.032911297000055, 36.41232640700014, 32.363294759000155, 21.532723696000176, 65.7542660370002, 31.61775499400005, 39.96831568199991, 36.82566069900008, 33.68519745500021, 25.58150395100006, 21.031199747000073, 20.205207384000232, 34.75960814500013, 39.557589844000404, 38.31750539900008, 35.09222085400029, 28.641633547000083, 26.82093378100035, 35.75292913300018, 39.88575568400029, 81.06892562800022, 28.88847165900006, 25.417442034000032, 35.34003950200008, 42.037689559, 46.748265799000364, 45.7574545760001, 26.492150599000297, 12.438403195000319, 14.084277718000294, 22.679504521000126, 32.69284311100023, 37.57173593399989, 35.34003950200008, 36.66272282700015, 35.505534832000194, 45.5134039269999, 45.51413863900029, 41.54355282500023, 40.30012655900032, 27.735974151000164, 31.288325675999886, 37.65560912900014, 41.7888909589999, 38.066612875000146, 35.34003950200008, 28.974936871000182, 23.263453047000212, 20.877480487000184, 30.790479223000148, 33.93412662100013, 32.85727443900032, 37.73808046900035, 33.190095102999976, 29.052889511000103, 33.43764627900032, 51.87662197899999, 55.34729475400013, 47.74263262300042, 38.15213760900019, 30.70796965300019, 29.88052206400016, 42.946019478999915, 41.54009235900003, 32.363294759000155, 19.710123221999993, 16.897349255000336, 25.417442034000032, 44.51758865900001, 48.075386335000076, 44.01910027500003, 30.959089948000155, 29.139495775000114, 40.71477783900036, 43.27741459900017, 41.29460847900009, 35.257716183999946, 26.32797003700034, 26.075899804000073, 34.92714987099998, 31.206284884000297, 31.206284884000297, 26.245668727000066, 19.211606295000365, 25.8295072840001, 32.77464591900002, 40.30012655900032, 42.61390840900003, 39.96831568199991, 36.24911177900026, 30.62588320900022, 27.232968849000144, 36.82566069900008, 40.88046856400024, 35.58641696800032, 24.014306527000144, 21.77849250400027, 30.12753829600001, 40.38314195900034, 40.134764941000185, 35.751547079000375, 26.657918828999982, 11.281571440000334, 16.836832963000234, 32.11592170300014, 41.867404579000095, 53.3548264570004, 32.445470055000214, 29.88052206400016, 33.35498792400017, 41.54355282500023, 40.54874703900032, 40.54874703900032, 29.221953103000033, 27.905281276000096, 23.611495688000332, 43.354591359000096, 41.78344465000009, 36.57903638200014, 30.793758268000147, 25.752704983000058, 25.835006293000106, 46.83160840900018, 47.07894785500025, 45.09887391500001, 41.87157624700012, 36.57757516300012, 34.75960814500013, 38.480392801000335, 43.11151271200015, 36.991334258999814, 72.36229095099998, 15.168907018000255, 26.904489469000055, 32.03332282300016, 43.69182503500019, 43.85778643900039, 32.77464591900002, 22.277162449000116, 22.93538342900024, 32.1980969990002, 43.60863101500013, 40.96351379900034, 26.32797003700034, 24.178249799000014, 34.75960814500013, 34.760939703000076, 79.92561553500013, 27.818364771000006, 22.93538342900024, 23.522055263000084, 34.346867383000244, 41.37436863400012, 40.21753687900036, 35.50363966300006, 29.30397314400011, 22.77155919100028, 29.221945870000127, 39.71978455400017, 39.63722455600032, 36.331918919000145, 31.206284884000297, 22.35883450900019, 68.9743191370003, 37.65560912900014, 37.98634470900038, 26.163367417000245, 15.827132815000141, 21.20194358400022, 34.42958521300011, 38.9777491990003, 37.903873369000166, 29.057045680000556, 18.226354861000345, 22.853681881000057, 36.16672929100014, 41.12491239100018, 37.0753861579999, 29.139495775000114, 35.339931847000116, 28.641633547000083, 40.54913936999992, 42.116381299000295, 34.018622943999844, 32.28069587900018, 26.33386261700025, 29.71598556700019, 42.696544753000126, 51.042231667000124, 47.575828063000245, 47.49285348700005, 33.77037759099994, 33.190095102999976, 36.00111501100014, 34.346867383000244, 45.755976880999924, 35.42086235800048, 28.394795434999878, 30.876550542999894, 39.55423899100015, 47.16232030000015, 36.49516318699989, 24.508613959000286, 26.904489469000055, 36.57757516300012, 45.00961473300026, 45.17575391000014, 34.6773145090001, 23.59787795900047, 21.12324929500005, 23.932124166999984, 43.6038355510002, 39.388693428000124, 32.527184095000166, 27.735974151000164, 26.739827569000227, 39.80277011900034, 42.53021638300015, 41.04655903400021, 36.329914431000134, 28.645640847000095, 29.386912573000245, 40.05150607900032, 41.042495159000055, 42.531200389000105, 37.65560912900014, 30.296268055000155, 30.794011138000315, 31.703774471000315, 37.0753861579999, 35.91873252300002, 33.190095102999976, 31.205756631000213, 23.768180895000114, 23.857799440000235, 38.9777491990003, 39.14003955900034, 31.785949767000375, 25.090751629000124, 28.559213287000148, 32.60981261500024], \"power_mean\": 34.81854954485303, \"energy_millijoules\": 3221.888919379867, \"energy_joules\": 3.2218889193798668, \"coremark_score\": 3242.331885, \"coremarks_per_mhz\": 3.2475279296875, \"ulpmark_cm_score\": 93.11307978232301}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1542.263186276, 1532.252947342, 1527.5376182969999, 1537.0480640829999, 1541.341233444, 1532.410289722, 1532.362634885, 1579.287075982, 1529.169480948, 1535.96801553, 1543.342443786, 1546.663122549, 1545.7424666319998, 1539.443675055, 1531.1731840020002, 1537.0480640829999, 1543.500510435, 1546.3987926399998, 1538.2065580879998], \"power_mean\": 1540.061019146263, \"energy_millijoules\": 7700.305095731315, \"energy_joules\": 7.7003050957313155}}, \"1171200\": {\"active\": {\"elapsed_sec\": 78.881948564, \"elapsed_ns\": 78881948564, \"power_samples\": [57.487700658999984, 57.89983959100027, 60.38048850100017, 59.88783156699992, 56.24746551399994, 48.23305436500027, 55.17498691900005, 55.751269687000104, 65.24900558900026, 69.55436340400024, 61.78064776400015, 53.52185605500017, 51.785336230999974, 61.46396672500009, 64.92538268500039, 63.03295264700023, 79.04873999900019, 53.59116398500032, 51.53484461500011, 65.24900558900026, 61.53684537100003, 57.89983959100027, 56.24746551399994, 49.222368775000405, 48.14959261000013, 60.792329863000305, 63.60098710900024, 63.60098710900024, 61.368553350999946, 49.30589000500049, 49.05575462900015, 54.34397560900038, 65.7349025750002, 64.90246630500019, 54.66295993500012, 49.385484816000144, 49.13526008800022, 64.092886314, 66.05793257500022, 63.36934354300024, 51.20114174300011, 48.88914048300035, 63.18904102300007, 66.40891541899987, 80.28992782899991, 77.56725706300017, 58.47606307900014, 45.74755404100006, 67.406431591, 69.56474886100023, 70.6373031080002, 66.73218208300023, 56.81749000900004, 59.62500332500008, 68.80568685900016, 71.03339251900024, 67.88812323800016, 65.41728154300017, 55.50015435900036, 51.28435299900002, 58.644057529000065, 66.4933293590002, 64.17718110900023, 104.12464254400015, 55.50015435900036, 50.211873904000186, 57.5648304570002, 71.5286657590002, 64.58851659900029, 56.40882982700009, 51.20114174300011, 56.66012385900012, 71.96282631100007, 68.22570210900017, 59.868775256999925, 42.612009319000435, 52.69487347900031, 59.55246610900008, 64.58851659900029, 96.20498857000007, 48.97223339900029, 47.89963535400011, 63.76908529000025, 72.70070257300017, 71.30171431900021, 65.9877115029999, 54.17088067900022, 56.743601671000306, 65.49228956200022, 68.55252169100027, 63.756571696000265, 60.540412119000166, 54.32842615900017, 55.82893442900013, 55.81195880900009, 89.78097035500036, 60.10895230900019, 62.10841746300025, 54.42190723900012, 59.38435231900007, 77.14323242000023, 83.01200498100025, 70.37260595900011, 59.30072648500027, 50.7918288190001, 53.10406736899995, 63.60098710900024, 62.024643607000144, 55.99626083400017, 46.08018871900026, 49.88593427200021, 87.70351297900015, 66.8166256630002, 68.63662107900018, 57.72181107400024, 54.00924943600012, 63.924729005000245, 72.28949803900014, 60.94868633700003, 49.87840832200027, 42.5292419350003, 47.06981253499998, 60.45672711500015, 65.74457639900015, 65.16465131900009, 59.468409214000076, 50.12829319900038, 81.34557433500026, 63.3486237730001, 71.44441834900022, 68.46798880100027, 62.6844930550003, 54.00924943600012, 54.50572603900014, 62.19262314300022, 55.24903903100039, 42.5292419350003, 41.36945113900015, 46.24693360900028, 58.88845429900016, 67.48056127900031, 60.94868633700003, 51.03429030699999, 73.57414595100022, 61.276456036000354, 68.96372529399991, 69.0212545190002, 58.88845429900016, 53.256437812000286, 60.037007997000046, 60.70864485900006, 62.19262314300022, 63.26435861800019, 59.785090253000135, 67.6350474220003, 71.93960223700014, 74.25148454700025, 67.88812323800016, 64.99637536500018, 48.22575369000015, 55.74505615400017, 62.10841746300025, 66.73218208300023, 73.41765198400003, 62.85253171900035, 59.70908986000018, 49.13526008800022, 63.756571696000265, 69.70852232100015, 57.0684423590003, 47.56664435200014, 47.81617359900042, 52.36093253900049, 64.092886314, 60.54823035800018, 49.79482761700024, 49.13526008800022, 49.96156040800042, 55.74505615400017, 73.41765198400003, 75.06873662800035, 62.76872837500014, 53.26608472900034, 55.50015435900036, 65.41728154300017, 70.46855218500014, 65.0935995110001, 56.733552259000135, 53.424015742000165, 54.74680837500023, 85.11535242300033, 68.07100879000018, 60.288925741000185, 54.00924943600012, 46.49373694300016, 48.05521312500014, 63.756571696000265, 70.26104622399998, 65.74457639900015, 64.23848469300037, 53.433173844000294, 51.11750156300013, 63.0119952820005, 65.41728154300017, 62.011906423000255, 55.82893442900013, 60.091367559000446, 71.33147457900009, 64.89249474300027, 68.5263982460001, 65.55213718300001, 55.15919866400009, 51.02929423700016, 63.3486237730001, 77.05868896600032, 81.36085959900015, 78.38421229500022, 68.96372529399991, 59.21666959000004, 62.85253171900035, 61.52855190000014, 59.55246610900008, 52.43020961900038, 52.26848999700019, 54.50572603900014, 66.072125443, 68.96372529399991, 67.55097771600026, 65.9877115029999, 55.49385147400017, 53.424015742000165, 63.26435861800019, 65.9877115029999, 67.80405353200013, 62.024643607000144, 47.56664435200014, 44.59173153100005, 55.49385147400017, 51.7669718210002, 61.024360172000115, 52.686278682999955, 44.5084185610001, 53.433173844000294, 63.18052559200032, 73.01120713000023, 68.46798880100027, 56.733552259000135, 46.65350864700008, 57.22939072000031, 60.696679825000274, 70.77987111100015, 70.5263497030005, 56.64961450900023, 51.94329174900031, 90.68021178800018, 65.7349025750002, 61.04424760699999, 59.876831717000414, 47.72566164199998, 51.27987520500028, 60.94061599800011, 63.26435861800019, 65.9877115029999, 67.05906059800009, 58.30155760300022, 53.507375020000154, 54.83065681500034, 67.53986101900023, 68.44180588100039, 63.41056638300029, 108.40436453500024, 50.69547233100002, 54.087061878999975, 61.01590274299997, 66.1660641850001, 64.08386612100048, 56.15753579500006, 60.696679825000274, 66.73218208300023, 74.48899009900038, 75.50513539899998, 59.62500332500008, 47.14976358600006, 50.95065012700002, 50.207841355000255, 69.95036287900007, 110.42480542600038, 59.70908986000018, 55.74505615400017, 64.74374514100032, 75.33585037900025, 70.62603859900014, 63.33553000200004, 54.41184460700015, 54.41184460700015, 61.68825271100013, 63.99954149100017, 59.720148838000114, 54.91407526300031, 45.16774799500013, 43.18657547700013, 50.37463366300017, 67.21339884500026, 67.55097771600026, 66.22638669100002, 56.566107209000165, 53.84210119300019, 62.09614174300009, 70.27282829500018, 67.29790190000017, 59.4572614680003, 44.99848468900018, 52.110262219000106], \"power_mean\": 61.166865533255766, \"energy_millijoules\": 4824.961540815386, \"energy_joules\": 4.824961540815386, \"coremark_score\": 3803.534752, \"coremarks_per_mhz\": 3.247553579234973, \"ulpmark_cm_score\": 62.17666140180302}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1532.9705419, 1525.942722594, 1530.89085645, 1540.07778711, 1560.35120832, 1547.7887826790002, 1540.579804544, 1536.1816806000002, 1534.443021, 1538.99912313, 1550.9228832299998, 1546.0290234, 1542.0534824659999, 1535.83669133, 1533.944384882, 1533.73485384, 1540.7376934200001, 1533.127659, 1523.940371295], \"power_mean\": 1538.3448721678947, \"energy_millijoules\": 7691.724360839473, \"energy_joules\": 7.691724360839473}}, \"1305600\": {\"active\": {\"elapsed_sec\": 70.76219966, \"elapsed_ns\": 70762199660, \"power_samples\": [71.60162503300035, 60.61296533300015, 65.7349025750002, 100.65842215900011, 86.86769067700016, 89.75825055900032, 83.40129186700028, 69.19049891900022, 72.33390869600021, 79.42103203500005, 87.94137097600037, 82.41594191000013, 76.37972658800004, 68.37265352900022, 74.98384669300026, 77.84130383200045, 84.8290389990002, 80.68067013600012, 68.69514916900016, 111.60984646599991, 64.48141125799998, 75.05491573900008, 80.75036399100031, 84.30100876900019, 84.88054675900003, 73.65897641100014, 71.26321341100038, 84.47136237200016, 83.6568631150003, 85.3067985990001, 80.92036165900026, 67.79302618700035, 67.62439390900022, 77.94503002900024, 83.89176486500037, 74.71610763100034, 63.986287055000275, 60.02480629900015, 68.59901143899992, 85.05095987900017, 91.81606348900004, 80.4255444800001, 69.85043731900032, 72.16480144900015, 74.08225865500026, 85.54175215900045, 89.15992395900025, 69.9227537889999, 68.43020099900014, 73.95313615900022, 80.06949929500024, 92.77557706300013, 79.21907394300024, 67.59761745900028, 71.07768569900009, 87.27666760900001, 97.25285408300033, 101.64169450899999, 95.2819279390003, 82.48131364300002, 78.77563837300022, 77.28088941500005, 78.6058783840001, 81.58095127500019, 78.6058783840001, 72.24957243400013, 68.11939900900006, 85.06825687300011, 88.66948676700031, 83.87490579800033, 74.47537774900024, 68.44180588100039, 76.1256604350001, 89.09677777100023, 90.48976860500011, 80.83514431900016, 60.02480629900015, 58.12608526000008, 68.94849245700038, 78.6058783840001, 85.05095987900017, 75.71561530899999, 68.59901143899992, 83.40129186700028, 88.26124617900018, 88.79579829700037, 85.28582467100023, 76.77152928700025, 74.3909231470002, 91.3880300860003, 88.75512062700022, 83.55117669300012, 77.11081197500016, 60.52060011499998, 62.1710722480002, 72.74055160900025, 77.28088941500005, 84.47136237200016, 81.2242530850001, 75.9557019450001, 75.71561530899999, 85.20036943100013, 88.75512062700022, 78.0110638210001, 64.47085793500014, 74.66465541100024, 76.34720787900005, 81.54469251399996, 79.72950395900034, 70.17636454900003, 57.21092945500027, 67.53986101900023, 83.72147077900013, 95.02448555500041, 140.32739466700014, 87.19112305900012, 82.5661826290002, 81.24083768299988, 84.40308489700033, 82.48131364300002, 75.87115849100041, 70.26104622399998, 68.59901143899992, 73.81141483900024, 82.89014937100023, 80.66514665099999, 79.506189705, 77.11081197500016, 71.50095687900011, 70.75581318700006, 129.17493095500026, 85.77981806900016, 82.975485661, 70.75581318700006, 66.30053265100014, 64.48141125799998, 75.78617924600007, 72.24957243400013, 69.76621959100021, 60.60434428900021, 65.55213718300001, 80.75036399100031, 84.9828611080004, 83.96030156300026, 72.74055160900025, 61.50735845500026, 109.53275829099994, 83.96030156300026, 90.808640965, 84.53972051900018, 69.31832402500027, 66.38457286900007, 73.16368498400016, 78.28486800000019, 80.2556063290001, 72.64275100300028, 69.75382470400018, 71.07768569900009, 82.63457812300021, 84.13065516600022, 80.32471430300006, 73.8824542030004, 80.88402045900034, 75.3434186620002, 84.75618909400009, 86.27040328300018, 83.27844922400004, 72.14825185900008, 72.06345123400024, 83.46581076300026, 92.62886359100025, 96.845094603, 82.39600718800011, 73.23569416700025, 75.9557019450001, 75.44669805700005, 78.93049867299987, 79.59134737500017, 83.87490579800033, 66.04754560300034, 75.9557019450001, 85.69477137900026, 92.86144882300027, 91.96363235000013, 80.57992931100034, 78.93049867299987, 87.53286256900014, 90.68021178800018, 89.75825055900032, 74.46178380700007, 66.13158582100027, 66.8648984050003, 73.95313615900022, 74.71610763100034, 89.97630879700023, 74.546268091, 73.387549519, 77.02620935100003, 84.7101336390001, 91.87782006500015, 84.28388179900003, 74.63118786100017, 73.47240961900025, 76.27677262499992, 82.44360847300004, 83.78951003300017, 71.74181597000006, 55.81195880900009, 58.945220651, 75.37625330700007, 94.68152292700029, 87.83366504900027, 71.74181597000006, 67.78201541900012, 82.54967945500016, 90.808640965, 96.50133436700003, 79.91573002700011, 69.65673564700023, 81.56492302800007, 85.1827376990002, 86.76427768900021, 73.44448851100015, 67.44419817400012, 65.1200708260003, 76.84132005900028, 91.53545105100011, 96.39337624400014, 95.26085253099995, 87.74850001900018, 79.25115340100024, 75.206790125, 78.91095942700031, 79.16599573100007, 78.09616201600011, 73.8824542030004, 70.5021130749999, 79.42103203500005, 83.70455219500013, 78.26592200500022, 69.0212545190002, 105.22674923400018, 75.206790125, 91.3880300860003, 89.33081165900012, 79.0812747670002, 66.03252282000017, 62.410016381000105, 62.652942015000235, 77.60562830700019, 83.87490579800033, 73.96690880500023, 68.93706627900019, 78.09616201600011, 83.3808826070001, 86.78217596200011, 82.7199144130002, 118.02138985700003, 72.21946875900039, 80.06949929500024, 86.42253817900018, 85.35326946400005, 85.02989718300046, 72.7275814630002, 62.49431117600011, 60.679511847000185, 75.29173953500026, 78.18126021100034, 76.85613191099992, 74.52850175900016, 66.8648984050003, 71.48793773800026, 82.9544907310003, 153.435716124, 76.51684922300024, 68.27305495800033, 73.20464072200025, 77.43549119700037, 88.04805565900028, 88.43201523400035, 68.99299242400025], \"power_mean\": 79.1903389218685, \"energy_millijoules\": 5603.682573932328, \"energy_joules\": 5.6036825739323275, \"coremark_score\": 4240.042966, \"coremarks_per_mhz\": 3.247581928615196, \"ulpmark_cm_score\": 53.536223017978344}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1546.915539432, 1537.342147068, 1534.7348060900001, 1526.376896845, 1533.81326961, 1539.839752416, 1542.578471478, 1589.675019528, 1538.5500035499997, 1534.921155355, 1543.1818365249999, 1549.8688769340001, 1556.816154177, 1561.204809901, 1555.6551127589998, 1545.812820477, 1536.206940155, 1538.1311060639998, 1542.763414008], \"power_mean\": 1544.9677964406314, \"energy_millijoules\": 7724.838982203157, \"energy_joules\": 7.724838982203157}}, \"1459200\": {\"active\": {\"elapsed_sec\": 63.314455236, \"elapsed_ns\": 63314455236, \"power_samples\": [120.1038690790001, 105.89204230100017, 97.37599563100025, 103.98570635900046, 112.07110715900012, 117.76029396900026, 154.50454171299998, 112.70864214300036, 104.7945610840004, 109.99449293800035, 117.21479399500004, 109.50222569500033, 104.7945610840004, 98.9096716869999, 92.64778952500023, 98.4792631910002, 116.43204069099988, 118.01296219900019, 117.99146620400052, 110.56974013000013, 106.03921055500018, 108.52085266400013, 158.2776514890004, 121.5410665090003, 117.78664445900017, 116.68554000400036, 104.16402524699993, 104.79911146600011, 114.20514460900017, 112.73399989299992, 103.09707420200016, 100.95858991900013, 94.14473468200003, 113.77579983800001, 126.8286555430002, 137.39741870900002, 127.86143349700023, 114.12336393100009, 132.03786793100016, 111.46381433099987, 116.66294376900032, 114.52502267200043, 111.55069775100014, 102.9790409950001, 105.9526245100003, 114.15177345100028, 116.34491917600008, 115.62550399899987, 111.86937589100012, 98.995930327, 102.5724106990001, 110.25443075400017, 116.83724646900032, 112.73717131400008, 131.323023982, 97.60703703700005, 97.2898559410005, 105.28748046500027, 110.97550968700011, 109.24237723100032, 106.18229732800023, 102.40003896400026, 101.33172436900009, 113.54430238300006, 117.99146620400052, 112.07110715900012, 100.35002241400025, 100.00531101900015, 114.58254540700023, 118.60060027400004, 146.41951421499994, 111.98422373900007, 92.49759313100026, 89.35348174299997, 98.85115075900012, 113.37080293700024, 116.66294376900032, 107.07675795100022, 107.10690341500026, 112.47687725800029, 118.4266258590003, 116.37842185900013, 115.94385573400018, 102.94987723900022, 101.30365731700022, 109.79010562900021, 150.06205537899996, 116.19416572299997, 112.15541478700015, 107.62815038300005, 103.29530141900022, 106.24222555900019, 120.12524612400034, 119.63738783500025, 125.89953398600005, 115.59593485900018, 110.22333485200011, 119.55008769999995, 122.43723163100003, 111.46381433099987, 100.78627770100024, 90.44618063500002, 121.14053853700011, 121.59692862100019, 120.52991726300002, 119.95103441900005, 111.37737646699998, 100.00531101900015, 108.98252876700008, 119.46323525799994, 120.03836419400022, 115.50884298400024, 104.21931389200017, 103.72674907900023, 109.84883862900006, 111.23562562300003, 105.71937375900006, 103.64028217900022, 98.4792631910002, 109.5016678510001, 116.9774533870002, 121.85828927000011, 116.9774533870002, 118.710229519, 107.91525162200014, 103.70166420100009, 114.75622301499993, 120.29990567400023, 117.73028096400026, 117.6430701390002, 104.4493430340001, 103.38132489900022, 109.56141161100004, 106.27096920400027, 108.23440460500001, 98.1859793980002, 91.7473177830002, 99.25426389500012, 109.06929323700024, 126.56613352700015, 123.59133241600034, 105.86648249600034, 99.57475365400023, 108.0613797389999, 111.46381433099987, 118.535688919, 122.92536010300023, 108.28974784500042, 106.93405671100027, 130.23386440900026, 117.6430701390002, 115.38836961900029, 117.81704455400018, 104.05128376800008, 106.99008279100008, 125.549923348, 131.90184730900023, 131.76174676300025, 129.54123220800034, 106.84741119100022, 101.47596953499988, 106.18229732800023, 111.29049304699993, 111.86937589100012, 111.78290834500012, 102.72017248299994, 110.62898537500018, 117.9606783910001, 124.48362772299993, 110.71539375099997, 100.72861714900023, 103.20883451899999, 116.48908799900005, 114.47092802399993, 97.03187861300034, 93.88764392500002, 86.96032275100015, 101.96888806900006, 116.48908799900005, 116.08400140799995, 107.42256961500016, 103.58541045900006, 111.46381433099987, 116.22808087900034, 123.31037546300036, 119.95103441900005, 112.5893864090001, 106.15558003900014, 105.26126824300013, 110.97550968700011, 103.46779179900022, 102.3136315390002, 92.90514314100005, 101.88248064400022, 105.77989645100024, 114.00372208000022, 117.58637907100001, 163.3341094990003, 112.36176150699998, 110.28201565900008, 119.201782546, 121.12818856700028, 111.86937589100012, 95.74243371500029, 116.83724646900032, 104.25058145699995, 120.82298863400024, 126.70378684300022, 114.72680260900006, 108.40742947100011, 110.74338802000011, 123.90477456100007, 116.08400140799995, 152.7243601040002, 102.461303971, 104.59636241900012, 116.25824443800025, 121.80278610899995, 120.61727687300026, 113.255122949, 103.93107223400011, 110.10875350300012, 117.73028096400026, 118.22195298299994, 114.35095826200018, 109.2151245890002, 96.36726798600012, 103.03634413900022, 104.27673400900017, 147.88638229900016, 113.51568447699992, 108.0613797389999, 102.3748667110001, 109.18670855900018, 120.84329695899987, 120.52991726300002, 105.75010726899995, 100.4700161090002, 112.44825873500008, 124.30849198300007, 120.93068620900021, 121.50950953600022, 93.9731938509999, 89.18241588100022, 94.86946613500004, 111.4357010340002, 120.84329695899987, 115.24846060900018, 106.93405671100027, 114.1773401710002, 122.48886451900012], \"power_mean\": 112.14033713334675, \"energy_millijoules\": 7100.104355579231, \"energy_joules\": 7.100104355579231, \"coremark_score\": 4738.887309, \"coremarks_per_mhz\": 3.2475927282072368, \"ulpmark_cm_score\": 42.252900094948785}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1547.675160356, 1554.200895312, 1553.203614546, 1545.099039909, 1539.839752416, 1530.47744264, 1543.68288256, 1547.2575382399998, 1544.601994872, 1533.105506655, 1522.595966628, 1528.819267059, 1533.86875018, 1547.0192545599998, 1546.677345104, 1540.9698186869998, 1531.3683625770002, 1545.3622093259999, 1545.6792925620002], \"power_mean\": 1541.131794431, \"energy_millijoules\": 7705.658972154999, \"energy_joules\": 7.705658972154999}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sdm439/olive/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 250 ms\nBaseline power usage: 1574 mW\n\n\n===== CPU 1 =====\nFrequencies: 960 1305 1497 1708 1958 2016\n\n 960:  3118     3.2 C/MHz     46 mW    4.4 J   68.4 I/mJ    96.2 s\n1305:  4240     3.2 C/MHz     72 mW    5.1 J   58.6 I/mJ    70.8 s\n1497:  4863     3.2 C/MHz    112 mW    6.9 J   43.5 I/mJ    61.7 s\n1708:  5549     3.2 C/MHz    144 mW    7.8 J   38.5 I/mJ    54.1 s\n1958:  6360     3.2 C/MHz    221 mW   10.4 J   28.7 I/mJ    47.2 s\n2016:  6547     3.2 C/MHz    227 mW   10.4 J   28.9 I/mJ    45.8 s\n\n\n===== CPU 4 =====\nFrequencies: 768 998 1171 1305 1459\n\n 768:  2494     3.2 C/MHz     21 mW    2.5 J   121.4 I/mJ   120.3 s\n 998:  3242     3.2 C/MHz     35 mW    3.2 J   93.1 I/mJ    92.5 s\n1171:  3804     3.2 C/MHz     61 mW    4.8 J   62.2 I/mJ    78.9 s\n1305:  4240     3.2 C/MHz     79 mW    5.6 J   53.5 I/mJ    70.8 s\n1459:  4739     3.2 C/MHz    112 mW    7.1 J   42.3 I/mJ    63.3 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sdm439/olive/uptime.txt",
    "content": " 02:00:38 up 16 min,  load average: 1.96, 1.89, 1.29\n"
  },
  {
    "path": "results/sdm439/olive/versions.txt",
    "content": "Kernel: Linux version 4.19.306-freqbench-test-gce0ce72ffcb4 (Jprimero15@Linux) (Android (10386919, +pgo, +bolt, +lto, -mlgo, based on r498229) clang version 17.0.3 (https://android.googlesource.com/toolchain/llvm-project e34ed7d63863b45858e74126edaa738e75887800), LLD 17.0.3) #1 SMP PREEMPT Thu Feb 22 08:40:02 PST 2024\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sdm630/main/cmdline.txt",
    "content": "isolcpus=1-7 nohz_full=1-7 loglevel=0 rcupdate.rcu_expedited=1 androidboot.hardware=qcom user_debug=31 msm_rtb.filter=0x37 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 sched_enable_hmp=1 sched_enable_power_aware=1 service_locator.enable=1 swiotlb=1 loop.max_part=7 panic_on_err=1 loop.max_part=7 panic_on_err=1 buildvariant=user rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=c351ca12-1a0f-43aa-911e-99daf8ba5dcd androidboot.bootdevice=c0c4000.sdhci androidboot.baseband=msm lcdid_adc=1515312 mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_td4320_tianma_fhdplus_video:config0:1:none:cfg:single_dsi androidboot.slot_suffix=_b skip_initramfs rootwait ro init=/init  androidboot.bootloader=xboot oemandroidboot.xboot=1310-0301_X_Boot_SDM630_LA3.0.1_P_410 androidboot.serialno=REDACTED startup=0x00008000 warmboot=0x77665501 oemandroidboot.babe09a9=00 oemandroidboot.babe08b3=50000000 oemandroidboot.babe137e=64 oemandroidboot.imei=35727110001047 oemandroidboot.security=0 oemandroidboot.securityflags=0x00000003\n"
  },
  {
    "path": "results/sdm630/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 4 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nHardware\t: Qualcomm Technologies, Inc SDM630\n"
  },
  {
    "path": "results/sdm630/main/device.txt",
    "content": "Model: Sony Mobile Communications. mermaid(sdm630);\nCompatible: somc,mermaid-row;qcom,sdm630-mtp;qcom,sdm630;qcom,mtp;\n"
  },
  {
    "path": "results/sdm630/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x100\n[    0.000000] Initializing cgroup subsys cpuset\n[    0.000000] Initializing cgroup subsys cpu\n[    0.000000] Initializing cgroup subsys cpuacct\n[    0.000000] Initializing cgroup subsys schedtune\n[    0.000000] Linux version 4.4.288-xtremedev-EMP++ (rote66@penguin) (gcc version 5.5.0 (Linaro GCC 5.5-2017.10) ) #1 SMP PREEMPT Fri Oct 22 10:01:13 CST 2021\n[    0.000000] Boot CPU: AArch64 Processor [51af8014]\n[    0.000000] Machine: Sony Mobile Communications. mermaid(sdm630)\n[    0.000000] board-ramdump: boot mode detected as normal\n[    0.000000] system booted with SECURITY_STATUS : ON\n[    0.000000] efi: Getting EFI parameters from FDT:\n[    0.000000] efi: UEFI not found.\n[    0.000000] Reserved memory: reserved region for node 'debug_region@ffb00000': base 0x00000000ffb00000, size 1 MiB\n[    0.000000] Reserved memory: reserved region for node 'pstore_reserve_mem_region_region@ffc00000': base 0x00000000ffc00000, size 1 MiB\n[    0.000000] Reserved memory: reserved region for node 'wlan_msa_guard@85600000': base 0x0000000085600000, size 1 MiB\n[    0.000000] Reserved memory: reserved region for node 'wlan_msa_mem@85700000': base 0x0000000085700000, size 1 MiB\n[    0.000000] Reserved memory: reserved region for node 'removed_region0@85800000': base 0x0000000085800000, size 55 MiB\n[    0.000000] Reserved memory: reserved region for node 'modem_fw_region@8ac00000': base 0x000000008ac00000, size 126 MiB\n[    0.000000] Reserved memory: reserved region for node 'adsp_fw_region@92a00000': base 0x0000000092a00000, size 30 MiB\n[    0.000000] Reserved memory: reserved region for node 'pil_mba_region@94800000': base 0x0000000094800000, size 2 MiB\n[    0.000000] Reserved memory: reserved region for node 'buffer_region@94a00000': base 0x0000000094a00000, size 1 MiB\n[    0.000000] Reserved memory: reserved region for node 'splash_region@9d400000': base 0x000000009d400000, size 35 MiB\n[    0.000000] Reserved memory: reserved region for node 'dfps_data_mem@0x9f7ff000': base 0x000000009f7ff000, size 0 MiB\n[    0.000000] Reserved memory: allocated memory for 'linux,cma' node: base 0x00000000fd800000, size 32 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fd800000, size 32 MiB\n[    0.000000] Reserved memory: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'venus_fw_region' node: base 0x000000009f800000, size 8 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x000000009f800000, size 8 MiB\n[    0.000000] Reserved memory: initialized node venus_fw_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'secure_region' node: base 0x00000000f7c00000, size 92 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f7c00000, size 92 MiB\n[    0.000000] Reserved memory: initialized node secure_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'qseecom_region' node: base 0x00000000f6800000, size 20 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6800000, size 20 MiB\n[    0.000000] Reserved memory: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'adsp_region' node: base 0x00000000f6000000, size 8 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6000000, size 8 MiB\n[    0.000000] Reserved memory: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085600000, size 1 MiB\n[    0.000000] Reserved memory: initialized node wlan_msa_guard@85600000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085700000, size 1 MiB\n[    0.000000] Reserved memory: initialized node wlan_msa_mem@85700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085800000, size 55 MiB\n[    0.000000] Reserved memory: initialized node removed_region0@85800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ac00000, size 126 MiB\n[    0.000000] Reserved memory: initialized node modem_fw_region@8ac00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000092a00000, size 30 MiB\n[    0.000000] Reserved memory: initialized node adsp_fw_region@92a00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094800000, size 2 MiB\n[    0.000000] Reserved memory: initialized node pil_mba_region@94800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094a00000, size 1 MiB\n[    0.000000] Reserved memory: initialized node buffer_region@94a00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000ffb00000, size 1 MiB\n[    0.000000] Reserved memory: initialized node debug_region@ffb00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000ffc00000, size 1 MiB\n[    0.000000] Reserved memory: initialized node pstore_reserve_mem_region_region@ffc00000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 985792\n[    0.000000]   DMA zone: 7320 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 468480 pages, LIFO batch:31\n[    0.000000]   Normal zone: 8083 pages used for memmap\n[    0.000000]   Normal zone: 517312 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.0 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] PERCPU: Embedded 20 pages/cpu @ffffffcafa160000 s42904 r8192 d30824 u81920\n[    0.000000] pcpu-alloc: s42904 r8192 d30824 u81920 alloc=20*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: enabling workaround for Kryo2xx Silver erratum 845719\n[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 970389\n[    0.000000] Kernel command line: isolcpus=1-7 nohz_full=1-7 loglevel=0 rcupdate.rcu_expedited=1 androidboot.hardware=qcom user_debug=31 msm_rtb.filter=0x37 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 sched_enable_hmp=1 sched_enable_power_aware=1 service_locator.enable=1 swiotlb=1 loop.max_part=7 panic_on_err=1 loop.max_part=7 panic_on_err=1 buildvariant=user rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=c351ca12-1a0f-43aa-911e-99daf8ba5dcd androidboot.bootdevice=c0c4000.sdhci androidboot.baseband=msm lcdid_adc=1515312 mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_td4320_tianma_fhdplus_video:config0:1:none:cfg:single_dsi androidboot.slot_suffix=_b skip_initramfs rootwait ro init=/init  androidboot.bootloader=xboot oemandroidboot.xboot=1310-0301_X_Boot_SDM630_LA3.0.1_P_410 androidboot.serialno=REDACTED startup=0x00008000 warmboot=0x77665501 oemandroidboot.babe09a9=00 oemandroidboot.babe08b3=5000000\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 262144 bytes\n[    0.000000] log_buf_len: 2097152 bytes\n[    0.000000] early log buf free: 254184(96%)\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] software IO TLB: mapped [mem 0xfffbf000-0xfffff000] (0MB)\n[    0.000000] Memory: 3613260K/3943168K available (17916K kernel code, 3242K rwdata, 9120K rodata, 10240K init, 3729K bss, 166068K reserved, 163840K cma-reserved)\n[    0.000000] Virtual kernel memory layout:\n                   modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n                   vmalloc : 0xffffff8008000000 - 0xffffffbdbfff0000   (   246 GB)\n                     .init : 0xffffff8aa1800000 - 0xffffff8aa2200000   ( 10240 KB)\n                     .text : 0xffffff8a9fc80000 - 0xffffff8aa0e00000   ( 17920 KB)\n                   .rodata : 0xffffff8aa0e00000 - 0xffffff8aa1800000   ( 10240 KB)\n                     .data : 0xffffff8aa2200000 - 0xffffff8aa252aa00   (  3243 KB)\n                   vmemmap : 0xffffffbdc0000000 - 0xffffffbfc0000000   (     8 GB maximum)\n                             0xffffffbde8000000 - 0xffffffbdebf93000   (    63 MB actual)\n                   fixed   : 0xffffffbffe7fb000 - 0xffffffbffec00000   (  4116 KB)\n                   PCI I/O : 0xffffffbffee00000 - 0xffffffbfffe00000   (    16 MB)\n                   memory  : 0xffffffca00000000 - 0xffffffcafe4c0000   (  4068 MB)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] NR_IRQS:64 nr_irqs:64 0\n[    0.000000] mpm_init_irq_domain(): Cannot find irq controller for qcom,gpio-parent\n[    0.000000] MPM 1 irq mapping errored -517\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from all CPUs\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000015] clocksource: Switched to clocksource arch_sys_counter\n[    0.000911] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.000920] pid_max: default: 32768 minimum: 301\n[    0.000974] Security Framework initialized\n[    0.000981] SELinux:  Initializing.\n[    0.001009] SELinux:  Starting in permissive mode\n[    0.001033] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001040] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001463] Initializing cgroup subsys freezer\n[    0.001798] sched-energy: CPU device node has no sched-energy-costs\n[    0.001834] ASID allocator initialised with 32768 entries\n[    0.021602] MSM Memory Dump base table set up\n[    0.021625] MSM Memory Dump apps data table set up\n[    0.021671] disabling /soc/serial@0c170000 node\n[    0.021773] couldn't find msm_gpio_4 node\n[    0.021864] EFI services will not be available.\n[    0.026941] CPU1: Booted secondary processor [51af8014]\n[    0.031625] CPU2: Booted secondary processor [51af8014]\n[    0.036267] CPU3: Booted secondary processor [51af8014]\n[    0.041144] CPU4: Booted secondary processor [51af8014]\n[    0.045854] CPU5: Booted secondary processor [51af8014]\n[    0.050554] CPU6: Booted secondary processor [51af8014]\n[    0.055254] CPU7: Booted secondary processor [51af8014]\n[    0.055309] Brought up 8 CPUs\n[    0.055325] SMP: Total of 8 processors activated.\n[    0.055329] CPU features: detected feature: GIC system register CPU interface\n[    0.055333] CPU features: detected feature: 32-bit EL0 Support\n[    0.055338] CPU: All CPU(s) started at EL1\n[    0.055381] alternatives: patching kernel code\n[    0.055482] Invalid sched_group_energy for CPU0\n[    0.055488] CPU0: update max cpu_capacity 1024\n[    0.055489] Invalid sched_group_energy for Cluster0\n[    0.056119] devtmpfs: initialized\n[    0.095995] DMI not present or invalid.\n[    0.096161] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.096175] futex hash table entries: 2048 (order: 5, 131072 bytes)\n[    0.100431] pinctrl core: initialized pinctrl subsystem\n[    0.102051] board-ramdump: Initialized debug memory at ffb00000-ffbfffff\n[    0.102215] ERROR: ramdump_add_last_logs_device: magic = ffffffff, version = 0xffffffff\n[    0.115339] rdtags rdtags: Loaded with 12 existing and 4 new tags. Size: 262144@0xffb40000\n[    0.115480] ramdump_memdesc ramdump_memdesc: res_mem_desc_base = 0xffb00000 mem_desc size = 262144\n[    0.115485] ramdump_memdesc ramdump_memdesc: ramdump_mode = normal\n[    0.116328] NET: Registered protocol family 16\n[    0.117648] schedtune: init normalization constants...\n[    0.117651] schedtune: no energy model data\n[    0.117653] schedtune: disabled!\n[    0.118034] cpuidle: using governor ladder\n[    0.118042] cpuidle: using governor menu\n[    0.118047] cpuidle: using governor qcom\n[    0.118906] vdso: 2 pages (1 code @ ffffff8aa0e06000, 1 data @ ffffff8aa2204000)\n[    0.118925] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.119313] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.122805] exit: IPA_USB init success!\n[    0.123910] sdm660-pinctrl 3000000.pinctrl: pin 8 disabled\n[    0.123915] sdm660-pinctrl 3000000.pinctrl: pin 9 disabled\n[    0.123920] sdm660-pinctrl 3000000.pinctrl: pin 10 disabled\n[    0.123925] sdm660-pinctrl 3000000.pinctrl: pin 11 disabled\n[    0.125559] __of_mpm_init(): MPM driver mapping exists\n[    0.134113] platform soc:ramoops: assigned reserved memory node pstore_reserve_mem_region_region@ffc00000\n[    0.139718] console [pstore0] enabled\n[    0.139721] pstore: Registered ramoops as persistent store backend\n[    0.139725] ramoops: attached 0x100000@0xffc00000, ecc: 0/0\n[    0.141853] unable to find DT imem DLOAD mode node\n[    0.142925] unable to find DT imem EDLOAD mode node\n[    0.144493] sps:sps is ready.\n[    0.145336] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.145403] msm_thermal:vdd_restriction_reg_init Defer regulator vdd-dig probe\n[    0.145407] msm_thermal:probe_vdd_rstr Err regulator init. err:-517. KTM continues.\n[    0.145412] msm-thermal soc:qcom,msm-thermal: probe_vdd_rstr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,max-freq-level. err=-517. KTM continues\n[    0.145959] msm_watchdog 17817000.qcom,wdt: wdog absent resource not present\n[    0.146253] msm_watchdog 17817000.qcom,wdt: MSM Watchdog Initialized\n[    0.147653] gpu-sdm660 5065000.clock-controller: Registered GPU RBCPR clocks\n[    0.150627] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.152679] msm_rpm_dev_probe: APSS-RPM communication over GLINK\n[    0.157042] platform 15700000.qcom,lpass: assigned reserved memory node adsp_fw_region@92a00000\n[    0.157180] platform cce0000.qcom,venus: assigned reserved memory node venus_fw_region\n[    0.157426] platform 4080000.qcom,mss: assigned reserved memory node modem_fw_region@8ac00000\n[    0.159160] spmi spmi-0: PMIC arbiter version v3 (0x30000000)\n[    0.163786] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.171656] msm_rpm_trans_notify_state: glink config params: transport=(null), edge=rpm, name=rpm_requests\n[    0.172022] genirq: Setting trigger mode 8 for irq 219 failed (gic_set_type+0x0/0xb0)\n[    0.172064] genirq: Setting trigger mode 8 for irq 220 failed (gic_set_type+0x0/0xb0)\n[    0.172104] genirq: Setting trigger mode 8 for irq 221 failed (gic_set_type+0x0/0xb0)\n[    0.172145] genirq: Setting trigger mode 8 for irq 222 failed (gic_set_type+0x0/0xb0)\n[    0.172186] genirq: Setting trigger mode 8 for irq 223 failed (gic_set_type+0x0/0xb0)\n[    0.185152] msm_mpm_dev_probe(): Cannot get clk resource for XO: -517\n[    0.186018] irq: no irq domain found for /soc/qcom,mdss_mdp@c900000 !\n[    0.194792] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.194888] msm_thermal:vdd_restriction_reg_init Defer regulator vdd-dig probe\n[    0.194892] msm_thermal:probe_vdd_rstr Err regulator init. err:-517. KTM continues.\n[    0.194898] msm-thermal soc:qcom,msm-thermal: probe_vdd_rstr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,max-freq-level. err=-517. KTM continues\n[    0.198593] qcom-clk-smd-rpm soc:qcom,rpmcc: Registered RPM clocks\n[    0.207974] pm660l_l7: supplied by pm660_l10\n[    0.210366] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.210974] cpr4_sdm660_mmss_read_fuse_data: gfx_corner: CPR fusing revision = 0\n[    0.211096] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[0] open-loop= 585000 uV\n[    0.211101] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[1] open-loop= 645000 uV\n[    0.211104] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[2] open-loop= 725000 uV\n[    0.211108] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[3] open-loop= 790000 uV\n[    0.211112] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[4] open-loop= 870000 uV\n[    0.211116] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[5] open-loop= 925000 uV\n[    0.211255] cpr3_regulator_init_ctrl: gfx: Default CPR mode = open-loop\n[    0.213694] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.213882] msm-thermal soc:qcom,msm-thermal: probe_ocr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-opt-curr-temp err:-22. KTM continues\n[    0.213890] msm-thermal soc:qcom,msm-thermal: probe_vdd_mx:Failed reading node=/soc/qcom,msm-thermal, key=qcom,mx-restriction-temp. KTM continues\n[    0.213901] msm-thermal soc:qcom,msm-thermal: probe_freq_mitigation:Failed reading node=/soc/qcom,msm-thermal, key=qcom,limit-temp. err=-22. KTM continues\n[    0.213909] msm-thermal soc:qcom,msm-thermal: msm_thermal:Failed reading node=/soc/qcom,msm-thermal, key=qcom,rpm-phase-resource-type err=-22. KTM continues\n[    0.213916] msm-thermal soc:qcom,msm-thermal: msm_thermal:Failed reading node=/soc/qcom,msm-thermal, key=qcom,gfx-sensor-id. err=-22. KTM continues\n[    0.215121] cpu cpu0: dev_pm_opp_get_opp_count: OPP table not found (-19)\n[    0.215126] msm_thermal:get_cpu_freq_plan_len Error reading CPU0 freq table len. error:-19\n[    0.215132] cpu cpu4: dev_pm_opp_get_opp_count: OPP table not found (-19)\n[    0.215135] msm_thermal:get_cpu_freq_plan_len Error reading CPU4 freq table len. error:-19\n[    0.215140] cpu cpu0: dev_pm_opp_get_opp_count: OPP table not found (-19)\n[    0.215144] msm_thermal:get_cpu_freq_plan_len Error reading CPU0 freq table len. error:-19\n[    0.215149] cpu cpu4: dev_pm_opp_get_opp_count: OPP table not found (-19)\n[    0.215153] msm_thermal:get_cpu_freq_plan_len Error reading CPU4 freq table len. error:-19\n[    0.217119] gcc-sdm660 100000.clock-controller: Registered GCC clocks\n[    0.221525] mmcc-sdm660 c8c0000.clock-controller: Registered MMSS clocks\n[    0.222096] gpucc-sdm660 5065000.gfx: Registered GPUCC clocks\n[    0.222517] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.222672] cprh_kbss_read_fuse_data: apc0_pwrcl_corner: speed bin = 1\n[    0.222678] cprh_sdm630_kbss_read_fuse_data: apc0_pwrcl_corner: CPR fusing revision = 1\n[    0.222730] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused   LowSVS: open-loop= 594000 uV\n[    0.222735] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused  SVSPLUS: open-loop= 688000 uV\n[    0.222738] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused TURBO_L1: open-loop= 948000 uV\n[    0.222761] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused   LowSVS: quot[ 7]= 290\n[    0.222766] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused  SVSPLUS: quot[ 7]= 443, quot_offset[ 7]= 150\n[    0.222770] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused TURBO_L1: quot[ 7]= 856, quot_offset[ 7]= 410\n[    0.223254] cpr3_regulator_init_ctrl: apc0: Default CPR mode = full HW closed-loop\n[    0.223688] cprh_kbss_read_fuse_data: apc1_perfcl_corner: speed bin = 1\n[    0.223693] cprh_sdm630_kbss_read_fuse_data: apc1_perfcl_corner: CPR fusing revision = 1\n[    0.223760] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused   LowSVS: open-loop= 594000 uV\n[    0.223763] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused  SVSPLUS: open-loop= 678000 uV\n[    0.223767] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused      NOM: open-loop= 748000 uV\n[    0.223771] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused    TURBO: open-loop= 878000 uV\n[    0.223776] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused TURBO_L2: open-loop= 888000 uV\n[    0.223801] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused   LowSVS: quot[ 7]= 360\n[    0.223806] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused  SVSPLUS: quot[ 7]= 526, quot_offset[ 7]= 165\n[    0.223810] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused      NOM: quot[ 7]= 673, quot_offset[ 7]= 145\n[    0.223815] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused    TURBO: quot[ 7]= 913, quot_offset[ 7]= 240\n[    0.223819] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused TURBO_L2: quot[ 7]= 932, quot_offset[ 7]=  15\n[    0.224386] cpr3_regulator_init_ctrl: apc1: Default CPR mode = full HW closed-loop\n[    0.225210] clk-cpu-osm 179c0000.qcom,clk-cpu-630: using pwrcl speed bin 0 and pvs_ver 0\n[    0.225225] clk-cpu-osm 179c0000.qcom,clk-cpu-630: using perfcl speed bin 1 and pvs_ver 0\n[    0.226713] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu0\n[    0.227107] add_opp: Set OPP pair (2208000000 Hz, 888000 uv) on cpu0\n[    0.227156] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu1\n[    0.227483] add_opp: Set OPP pair (2208000000 Hz, 888000 uv) on cpu1\n[    0.227529] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu2\n[    0.227854] add_opp: Set OPP pair (2208000000 Hz, 888000 uv) on cpu2\n[    0.227898] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu3\n[    0.228235] add_opp: Set OPP pair (2208000000 Hz, 888000 uv) on cpu3\n[    0.228282] add_opp: Set OPP pair (300000000 Hz, 596000 uv) on cpu4\n[    0.228536] add_opp: Set OPP pair (1843200000 Hz, 948000 uv) on cpu4\n[    0.228583] add_opp: Set OPP pair (300000000 Hz, 596000 uv) on cpu5\n[    0.228838] add_opp: Set OPP pair (1843200000 Hz, 948000 uv) on cpu5\n[    0.228892] add_opp: Set OPP pair (300000000 Hz, 596000 uv) on cpu6\n[    0.229134] add_opp: Set OPP pair (1843200000 Hz, 948000 uv) on cpu6\n[    0.229191] add_opp: Set OPP pair (300000000 Hz, 596000 uv) on cpu7\n[    0.229444] add_opp: Set OPP pair (1843200000 Hz, 948000 uv) on cpu7\n[    0.230262] clk_cpu_osm_driver_probe: OSM driver inited\n[    0.230413] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.246429] ACPI: Interpreter disabled.\n[    0.246523] Minidump: Enabled, region base:160, region 0xffffff80088026f0\n[    0.247620] KPI: Bootloader start count = 81550\n[    0.247624] KPI: Bootloader end count = 342412\n[    0.247627] KPI: Bootloader display count = 2818858748\n[    0.247631] KPI: Bootloader load kernel count = 3926947801\n[    0.247637] KPI: Kernel MPM timestamp = 356999\n[    0.247641] KPI: Kernel MPM Clock frequency = 32768\n[    0.247657] socinfo_print: v0.11, id=318, ver=1.0, raw_id=172, raw_ver=0, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65563, pmic_die_revision=131072 foundry_id=3 serial_number=2197471598 num_pmics=2\n[    0.250686] msm_bus_fabric_init_driver\n[    0.267206] msm_bus_dev_init_qos: Skipping QOS init for 1\n[    0.267253] msm_bus_dev_init_qos: Skipping QOS init for 727\n[    0.267259] msm_bus_dev_init_qos: Skipping QOS init for 728\n[    0.268986] cam_avdd_gpio_regulator: supplied by pm660l_bob\n[    0.269268] cam_dvdd_gpio_regulator: supplied by pm660_s5\n[    0.269483] cam_rear_dvdd_gpio_regulator: supplied by pm660_s5\n[    0.269679] cam_iovdd_gpio_regulator: supplied by pm660_s4\n[    0.269935] vgaarb: loaded\n[    0.270200] qcom,qpnp-misc 800f000.qcom,spmi:qcom,pm660@0:qcom,misc@900: probe successful\n[    0.270900] SCSI subsystem initialized\n[    0.271303] usbcore: registered new interface driver usbfs\n[    0.271330] usbcore: registered new interface driver hub\n[    0.271358] usbcore: registered new device driver usb\n[    0.271565] soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.271895] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: pon_resin_timer 0xf\n[    0.271937] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.271961] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)\n[    0.272112] input: qpnp_pon as /devices/virtual/input/input0\n[    0.272366] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: No PON config. specified\n[    0.272382] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: pon_resin_timer 0xf\n[    0.272423] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (secondary PMIC) and 'cold' boot\n[    0.272446] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from GP1 (Keypad_Reset1)\n[    0.272841] i2c-msm-v2 c175000.i2c: probing driver i2c-msm-v2\n[    0.274867] i2c-msm-v2 c176000.i2c: probing driver i2c-msm-v2\n[    0.275811] i2c-msm-v2 c1b6000.i2c: probing driver i2c-msm-v2\n[    0.278082] media: Linux media interface: v0.10\n[    0.278142] Linux video capture interface: v2.00\n[    0.279792] EDAC MC: Ver: 3.0.0\n[    0.283374] cpufreq: driver msm up and running\n[    0.283507] dmi: Firmware registration failed.\n[    0.285468] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node adsp_region\n[    0.285849] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.286043] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_region\n[    0.286697] ION heap system created\n[    0.286938] ION heap adsp created at 0x00000000f6000000 with size 800000\n[    0.286958] ION heap qsecom created at 0x00000000f6800000 with size 1400000\n[    0.286971] ION heap secure_display created at 0x00000000f7c00000 with size 5c00000\n[    0.286985] ION heap secure_heap created\n[    0.290607] PMIC@SID0: PM660 v2.0 options: 0, 0, 0, 0\n[    0.292626] PMIC@SID2: PM660L v2.0.1 options: 0, 0, 0, 0\n[    0.293874] ipa get_ipa_dts_configuration:4871 : apps shutdown support = Disabled\n[    0.293937] IPA smmu_info.s1_bypass=1 smmu_info.fast_map=0\n[    0.302278] gdsc_vfe0: supplied by gdsc_camss_top\n[    0.302663] gdsc_vfe1: supplied by gdsc_camss_top\n[    0.303059] gdsc_cpp: supplied by gdsc_camss_top\n[    0.304322] gdsc_gpu_gx: supplied by gfx_corner\n[    0.307590] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.307600] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.307949] mdss_pll c994400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.307966] mdss_pll c994400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.307977] mdss_pll c994400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.308983] dsi_pll_clock_register_14nm: Registered DSI PLL ndx=0 clocks successfully\n[    0.309037] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.336397] arm-smmu 16c0000.arm,smmu-anoc2: found 29 context interrupt(s) but have 11 context banks. assuming 11 context interrupts.\n[    0.338535] arm-smmu 5100000.arm,smmu-lpass_q6: found 17 context interrupt(s) but have 13 context banks. assuming 13 context interrupts.\n[    0.340595] arm-smmu cd00000.arm,smmu-mmss: found 24 context interrupt(s) but have 17 context banks. assuming 17 context interrupts.\n[    0.341023] arm-smmu 5040000.arm,smmu-kgsl: regulator defer delay 80\n[    0.341480] arm-smmu 5040000.arm,smmu-kgsl: found 8 context interrupt(s) but have 5 context banks. assuming 5 context interrupts.\n[    0.345883] iommu: Adding device 18800000.qcom,icnss to group 0\n[    0.346983] iommu: Adding device soc:usb_audio_qmi_dev to group 1\n[    0.347098] iommu: Adding device soc:iommu_test_device to group 2\n[    0.347380] iommu: Adding device soc:qcom,msm-audio-ion to group 3\n[    0.348828] iommu: Adding device 14780000.qcom,ipa:ipa_smmu_ap to group 4\n[    0.348856] iommu: Adding device 14780000.qcom,ipa:ipa_smmu_uc to group 5\n[    0.354441] cei_hw_id_init OK\n[    0.354581] Advanced Linux Sound Architecture Driver Initialized.\n[    0.355824] Bluetooth: ffffffcaf94dfd08\n[    0.355887] NET: Registered protocol family 31\n[    0.355890] Bluetooth: ffffffcaf94dfd08\n[    0.355906] Bluetooth: ffffffcaf94dfce8\n[    0.355916] Bluetooth: ffffffcaf94dfcb8\n[    0.355952] Bluetooth: ffffffcaf94dfcc8\n[    0.356594] cfg80211: World regulatory domain updated:\n[    0.356599] cfg80211:  DFS Master region: unset\n[    0.356605] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)\n[    0.356613] cfg80211:   (2402000 KHz - 2472000 KHz @ 20000 KHz), (N/A, 2600 mBm), (N/A)\n[    0.356618] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (N/A, 2600 mBm), (N/A)\n[    0.356622] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.356628] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (0 s)\n[    0.356631] cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2000 mBm), (0 s)\n[    0.356634] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 1400 mBm), (N/A)\n[    0.357809] NetLabel: Initializing\n[    0.357813] NetLabel:  domain hash size = 128\n[    0.357815] NetLabel:  protocols = UNLABELED CIPSOv4\n[    0.357875] NetLabel:  unlabeled traffic allowed by default\n[    0.358014] nfc: nfc_init: NFC Core ver 0.1\n[    0.358062] NET: Registered protocol family 39\n[    0.358092] pcie:pcie_init.\n[    0.365529] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=5500mV ncp_voltage=5500mV bst_voltage=5700mV\n[    0.370789] ipa ipa2_uc_state_check:296 uC interface not initialized\n[    0.370820] ipa ipa_sps_irq_control_all:963 EP (2) not allocated.\n[    0.370827] ipa ipa_sps_irq_control_all:963 EP (5) not allocated.\n[    0.374655] sps:BAM 0x0000000014784000 is registered.\n[    0.378424] sps:BAM 0x0000000014784000 (va:0xffffff8008a40000) enabled: ver:0x27, number of pipes:20\n[    0.392757] IPA driver initialization was successful.\n[    0.394328] clocksource: Switched to clocksource arch_sys_counter\n[    0.439443] pnp: PnP ACPI: disabled\n[    0.449158] gcc-debug-sdm660 62000.qcom,cc-debug: Registered debug mux successfully\n[    0.450191] NET: Registered protocol family 2\n[    0.450340] IP idents hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.451628] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.451815] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.452613] TCP: Hash tables configured (established 32768 bind 32768)\n[    0.452760] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.452810] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.453060] NET: Registered protocol family 1\n[    0.453099] PCI: CLS 0 bytes, default 64\n[    0.453526] Trying to unpack rootfs image as initramfs...\n[    0.663357] Freeing initrd memory: 7484K\n[    0.668661] audit: initializing netlink subsys (disabled)\n[    0.668768] audit: type=2000 audit(0.659:1): initialized\n[    0.672849] Initialise system trusted keyring\n[    0.673349] vmscan: error setting kswapd cpu affinity mask\n[    0.678269] VFS: Disk quotas dquot_6.6.0\n[    0.678372] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.679547] Registering sdcardfs 0.1\n[    0.679719] [SDFAT] Filesystem version 2.4.5-lineage\n[    0.679843] fuse init (API version 7.23)\n[    0.680351] SELinux:  Registering netfilter hooks\n[    0.680787] pfk_ecryptfs [pfk_ecryptfs_init]: PFK ecryptfs inited successfully\n[    0.680791] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    0.680800] pfk [pfk_init]: Driver initialized successfully\n[    0.683880] Key type asymmetric registered\n[    0.683892] Asymmetric key parser 'x509' registered\n[    0.684003] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)\n[    0.684014] io scheduler noop registered\n[    0.684020] io scheduler deadline registered\n[    0.684130] io scheduler cfq registered (default)\n[    0.690605] msm_dss_get_res_byname: 'vbif_nrt_phys' resource not found\n[    0.690626] mdss_mdp_probe+0x20c/0x1910->msm_dss_ioremap_byname: 'vbif_nrt_phys' msm_dss_get_res_byname failed\n[    0.691730] mdss_mdp_irq_clk_setup: unable to get core gdsc regulator\n[    0.693520] No change in context(0==0), skip\n[    0.694454] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:0 num:0 rect:0 ndx:0x1 prio:0\n[    0.694491] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:1 num:6 rect:0 ndx:0x40 prio:1\n[    0.694503] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:1 num:6 rect:1 ndx:0x40 prio:1\n[    0.694508] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:5 num:7 rect:0 ndx:0x80 prio:2\n[    0.694520] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:5 num:7 rect:1 ndx:0x80 prio:2\n[    0.694524] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:9 num:12 rect:0 ndx:0x1000 prio:3\n[    0.694536] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:9 num:12 rect:1 ndx:0x1000 prio:3\n[    0.694548] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:2 num:10 rect:0 ndx:0x400 prio:0\n[    0.694556] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-pipe-sw-reset-off : u32 array read\n[    0.694627] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-ib-factor-overlap : u32 array read\n[    0.694633] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-bus-througput-factor : u32 array read\n[    0.696024] xlog_status: enable:0, panic:1, dump:2\n[    0.696525] iommu: Adding device c900000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb to group 6\n[    0.696912] iommu: Adding device c900000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb to group 7\n[    0.697088] mdss_mdp_probe: mdss version = 0x30030000, bootloader display is on, num 1, intf_sel=0x00000100\n[    0.699470] mdss_smmu_probe: iommu v2 domain[0] mapping and clk register successful!\n[    0.699821] mdss_smmu_probe: iommu v2 domain[2] mapping and clk register successful!\n[    0.702637] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->0\n[    0.703241] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_td4320_tianma_fhdplus_video:config0:1:none:cfg:single_dsi panel_name:qcom,mdss_dsi_td4320_tianma_fhdplus_video\n[    0.703351] mdss_dsi_find_panel_of_node: invalid pan node \"qcom,mdss_dsi_td4320_tianma_fhdplus_video\"\n[    0.703391] mdss_dsi_panel_driver_detection: physical:1515312\n[    0.703541] mdss_dsi_panel_init: Panel Name = 8\n[    0.703606] mdss_dsi_parse_split_link_settings: enable 0 sublinks-count 0 lanes per sublink 0\n[    0.703649] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-timing-switch-command\n[    0.703653] mdss_dsi_panel_get_dsc_cfg_np: cannot find dsc config node:\n[    0.703741] mdss_dsi_parse_dcs_cmds: failed, key=somc,mdss-dsi-pre-uv-command\n[    0.703849] mdss_dsi_parse_panel_features: ulps feature disabled\n[    0.703855] mdss_dsi_parse_panel_features: ulps during suspend feature disabled\n[    0.703862] mdss_dsi_parse_dms_config: dynamic switch feature enabled: 0\n[    0.703877] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-on\n[    0.703882] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-off\n[    0.703895] mdss_dsi_set_refresh_rate_range:2370, Unable to read min refresh rate\n[    0.703901] mdss_dsi_set_refresh_rate_range:2385, Unable to read max refresh rate\n[    0.703903] dyn_fps: min = 60, max = 60\n[    0.704181] mdss_dsi_parse_ctrl_params:4576 Unable to read qcom,display-id, data=0000000000000000,len=20\n[    0.704195] mdss_dsi_parse_gpio_params: bklt_en gpio not specified\n[    0.704200] mdss_dsi_parse_gpio_params: avdd_en gpio not specified\n[    0.704208] mdss_dsi_panel_driver_parse_gpio_params:882, disp vddio gpio not specified\n[    0.704212] mdss_dsi_panel_driver_parse_gpio_params:890, touch vddio gpio not specified\n[    0.704219] mdss_dsi_panel_driver_parse_gpio_params:906, touch int gpio not specified\n[    0.704223] mdss_dsi_panel_driver_parse_gpio_params:914, disp dcdc en gpio not specified\n[    0.704266] msm_dss_get_res_byname: 'dsi_phy_regulator' resource not found\n[    0.704283] mdss_dsi_retrieve_ctrl_resources+0xc8/0x2b0->msm_dss_ioremap_byname: 'dsi_phy_regulator' msm_dss_get_res_byname failed\n[    0.704289] mdss_dsi_retrieve_ctrl_resources: ctrl_base=ffffff80086fe000 ctrl_size=400 phy_base=ffffff8008748400 phy_size=588\n[    0.704481] dsi_panel_device_register: Continuous splash enabled\n[    0.704650] Unable to find fb node for device: c994000.qcom,mdss_dsi_ctrl0\n[    0.704842] mdss_register_panel: adding framebuffer device c994000.qcom,mdss_dsi_ctrl0\n[    0.711464] @@@@ panel power on @@@@\n[    0.714113] mdss_dsi_ctrl_probe: Dsi Ctrl->0 initialized, DSI rev:0x20010000, PHY rev:0x2\n[    0.714357] mdss_dsi_status_init: DSI status check interval:20000\n[    0.716180] mdss_register_panel: adding framebuffer device soc:qcom,mdss_wb_panel\n[    0.716766] mdss_fb_probe: fb0: split_mode:0 left:0 right:0\n[    0.717382] mdss_fb_register: FrameBuffer[0] 1080x2520 registered successfully!\n[    0.719183] mdss_dsi_ctrl c994000.qcom,mdss_dsi_ctrl0: mipi_dsi_panel_create_debugfs: create folder c994000.qcom,mdss_dsi_ctrl0\n[    0.720346] mdss_fb_probe: fb1: split_mode:0 left:0 right:0\n[    0.720483] mdss_fb_register: FrameBuffer[1] 640x480 registered successfully!\n[    0.721607] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    0.732900] spcom [spcom_init]: spcom driver version 1.2 23-Aug-2017.\n[    0.734424] audio_notifer_reg_service: service SSR_MODEM is in use\n[    0.741526] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.741954] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.742125] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.742181] In memshare_probe, Memshare probe success\n[    0.743033] subsys-pil-tz 15700000.qcom,lpass: invalid resource\n[    0.743037] subsys-pil-tz 15700000.qcom,lpass: Failed to iomap base register\n[    0.743945] subsys-pil-tz cce0000.qcom,venus: invalid resource\n[    0.743949] subsys-pil-tz cce0000.qcom,venus: Failed to iomap base register\n[    0.744571] subsys-pil-tz cce0000.qcom,venus: for venus segments only will be dumped.\n[    0.745032] subsys-pil-tz soc:qcom,kgsl-hyp: invalid resource\n[    0.745036] subsys-pil-tz soc:qcom,kgsl-hyp: Failed to iomap base register\n[    0.745047] subsys-pil-tz soc:qcom,kgsl-hyp: for a508_zap segments only will be dumped.\n[    0.746942] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    0.750366] pil: failed to find qcom,msm-imem-minidump node\n[    0.750973] msm-dcc 10b3000.dcc: DCC XPU is not specified\n[    0.755958] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.756522] icnss: Platform driver probed successfully\n[    0.760284] msm_rpm_log_probe: OK\n[    0.761105] last_subsyslog last_subsyslog: Last subsystem error log driver probe done.\n[    0.761614] msm_serial: driver initialized\n[    0.761958] uart_tx_gpio is not available\n[    0.761962] uart_rx_gpio is not available\n[    0.761965] uart_cts_gpio is not available\n[    0.761968] uart_rfr_gpio is not available\n[    0.763751] sps: BAM device 0x000000000c184000 is not registered yet.\n[    0.763940] sps:BAM 0x000000000c184000 is registered.\n[    0.765308] c1af000.uart: ttyHS0 at MMIO 0xc1af000 (irq = 126, base_baud = 460800) is a MSM HS UART\n[    0.766992] msm_serial_hs module loaded\n[    0.769165] random: nonblocking pool is initialized\n[    0.853408] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 8\n[    0.853926] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 9\n[    0.854405] kgsl_pool_config: Pool order:4 not supprted.!!\n[    0.881190] brd: module loaded\n[    0.892272] loop: module loaded\n[    0.893557] zram: Added device: zram0\n[    0.894739] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1001000\n[    0.894769] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.894778] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    0.894782] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    0.895089] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    0.899655] registering powerkey_handle handle for qpnp_pon\n[    0.900584] ldo_vibrator soc:ldo_vibrator: ldo_vibrator_probe: success\n[    0.903128] Loading pn544 driver\n[    0.903206] pn544_parse_dt: 28, 29, 30, 0, 31 error:0\n[    0.904535] pn544_probe : requesting IRQ 35\n[    0.904645] Loading pn544 pm ops driver\n[    0.905218] pn553-pm-ops soc:nfc,pm-ops: pn553_pm_ops_probe, probing pn553 PM OPS driver\n[    0.905222] pn553-pm-ops soc:nfc,pm-ops: pn553_pm_ops_probe, probe pn553 PM OPS driver successfully\n[    0.906418] sps: BAM device 0x000000000c144000 is not registered yet.\n[    0.906624] sps:BAM 0x000000000c144000 is registered.\n[    0.919435] sps:BAM 0x000000000c144000 (va:0xffffff8009c20000) enabled: ver:0x19, number of pipes:12\n[    0.920944] p61_parse_dt: 0\n[    0.922422] qce 1de0000.qcedev: Qualcomm Crypto 5.3.4 device found @0x1de0000\n[    0.922428] qce 1de0000.qcedev: CE device = 0x0\n               IO base, CE = 0xffffff8009d80000\n               Consumer (IN) PIPE 2,    Producer (OUT) PIPE 3\n               IO base BAM = 0x0000000000000000\n               BAM IRQ 205\n               Engines Availability = 0x2011053\n[    0.922627] sps:BAM 0x0000000001dc4000 is registered.\n[    0.922803] sps:BAM 0x0000000001dc4000 (va:0xffffff8009fc0000) enabled: ver:0x27, number of pipes:16\n[    0.923065] QCE50: qce_sps_init:  Qualcomm MSM CE-BAM at 0x0000000001dc4000 irq 205\n[    0.929206] qcrypto 1de0000.qcrypto: Qualcomm Crypto 5.3.4 device found @0x1de0000\n[    0.929212] qcrypto 1de0000.qcrypto: CE device = 0x0\n               IO base, CE = 0xffffff800b040000\n               Consumer (IN) PIPE 4,    Producer (OUT) PIPE 5\n               IO base BAM = 0x0000000000000000\n               BAM IRQ 205\n               Engines Availability = 0x2011053\n[    0.929569] QCE50: qce_sps_init:  Qualcomm MSM CE-BAM at 0x0000000001dc4000 irq 205\n[    0.932726] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    0.932838] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    0.932900] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    0.932961] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    0.933020] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    0.933078] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    0.933149] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    0.933211] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    0.933272] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    0.933331] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    0.933396] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    0.933456] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    0.933518] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    0.933578] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    0.933641] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    0.933702] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    0.933765] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    0.933827] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    0.933888] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    0.933949] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    0.936371] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    0.936756] SCSI Media Changer driver v0.25 \n[    0.937597] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    0.939843] tun: Universal TUN/TAP device driver, 1.6\n[    0.939846] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    0.939992] sky2: driver version 1.30\n[    0.940465] PPP generic driver version 2.4.2\n[    0.940700] PPP BSD Compression module registered\n[    0.940705] PPP Deflate Compression module registered\n[    0.940736] PPP MPPE Compression module registered\n[    0.940745] NET: Registered protocol family 24\n[    0.940855] CLD80211: Initializing\n[    0.943492] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.950306] msm-dwc3 a800000.ssusb: id polling is enabled\n[    0.950499] msm-dwc3 a800000.ssusb: unable to get dbm device\n[    0.952423] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.952453] ehci-pci: EHCI PCI platform driver\n[    0.952485] ehci-platform: EHCI generic platform driver\n[    0.952879] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    0.952891] ohci-pci: OHCI PCI platform driver\n[    0.952918] ohci-platform: OHCI generic platform driver\n[    0.953654] usbcore: registered new interface driver usb-storage\n[    0.953677] usbcore: registered new interface driver usb_ehset_test\n[    0.954168] msm_sharedmem: sharedmem_register_qmi: qmi init successful\n[    0.958357] qpnp-pdphy 800f000.qcom,spmi:qcom,pm660@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    0.959367] mousedev: PS/2 mouse device common for all mice\n[    0.959561] usbcore: registered new interface driver xpad\n[    1.166744] synaptics_tcm_i2c 1-003c: syna_tcm_dispatch_message: Received identify report (firmware mode = 0x01)\n[    1.257761] synaptics_tcm_i2c 1-003c: syna_tcm_dispatch_message: Received identify report (firmware mode = 0x01)\n[    1.462378] synaptics_tcm_i2c 1-003c: syna_tcm_reset: Firmware mode = 0x01\n[    1.465283] input: bu520x1nvx as /devices/virtual/input/input1\n[    1.466497] fpc1145 soc:fpc1145: vdd_ana-min-uV 3300000\n[    1.466501] fpc1145 soc:fpc1145: vdd_ana-max-uV 3600000\n[    1.466591] fpc1145 soc:fpc1145: found pin control fpc1145_reset_reset\n[    1.466596] fpc1145 soc:fpc1145: found pin control fpc1145_reset_active\n[    1.466599] fpc1145 soc:fpc1145: found pin control fpc1145_irq_active\n[    1.466855] fpc1145 soc:fpc1145: fpc1145_probe: ok\n[    1.466955] fpc1145_init OK\n[    1.467937] qcom,qpnp-rtc 800f000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: rtc core: registered qpnp_rtc as rtc0\n[    1.468247] i2c /dev entries driver\n[    1.469226] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb1 to group 10\n[    1.469693] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 8, cb->name: :vfe sid [0] = 3072\n               ,\n[    1.469698] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 8, cb->name: :vfe sid [1] = 3073\n               ,\n[    1.469702] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 8, cb->name: :vfe sid [2] = 3074\n               ,\n[    1.469705] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 8, cb->name: :vfe sid [3] = 3075\n               ,\n[    1.469990] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb2 to group 11\n[    1.470210] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 2, cb->name: :cpp sid [0] = 2560\n               ,\n[    1.470336] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb4 to group 12\n[    1.470440] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 2, cb->name: :jpeg_enc0 sid [0] = 2048\n               ,\n[    1.470547] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb5 to group 13\n[    1.470641] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 2, cb->name: :jpeg_dma sid [0] = 2049\n               ,\n[    1.481674] input: synaptics_tcm_touch as /devices/soc/c175000.i2c/i2c-1/1-003c/input/input2\n[    1.499675] msm_actuator_platform_probe:2129 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    1.499821] msm_actuator_platform_probe:2129 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    1.499929] msm_actuator_platform_probe:2129 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    1.501066] msm_eeprom_platform_probe failed 1676\n[    1.501423] msm_eeprom_platform_probe failed 1676\n[    1.501720] msm_eeprom_platform_probe failed 1676\n[    1.503169] qcom,camera-flash soc:qcom,camera-flash@0: Led led_flash0 renamed to led_flash0_1 due to name collision\n[    1.506385] thermal thermal_zone0: failed to read out thermal zone (-19)\n[    1.506537] thermal thermal_zone1: failed to read out thermal zone (-19)\n[    1.512090] MSM-CPP cpp_init_hardware:1146 CPP HW Version: 0x60010002\n[    1.512107] MSM-CPP cpp_init_hardware:1164 stream_cnt:0\n[    1.512459] MSM-CPP cpp_release_hardware:1227 cpp hw release done\n[    1.530508] __msm_jpeg_init:1582] Jpeg Device id 0\n[    1.543986] iommu: Adding device cc00000.qcom,vidc:non_secure_cb to group 14\n[    1.546791] iommu: Adding device cc00000.qcom,vidc:firmware_cb to group 15\n[    1.546985] iommu: Adding device cc00000.qcom,vidc:secure_bitstream_cb to group 16\n[    1.549043] iommu: Adding device cc00000.qcom,vidc:secure_pixel_cb to group 17\n[    1.550286] iommu: Adding device cc00000.qcom,vidc:secure_non_pixel_cb to group 18\n[    1.554878] sde_smmu_callback: <SDEROT_INFO> sde_smmu_callback registered domain: 1\n[    1.554885] sde_smmu_callback: <SDEROT_INFO> sde_smmu_callback registered domain: 0\n[    1.555992] No change in context(0==0), skip\n[    1.557071] sde_rotator_evtlog_create_debugfs: evtlog_status: enable:1, panic:1, dump:2\n[    1.557138] sde_rotator c900000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    1.559830] input: SOMC USB Removal as /devices/soc/800f000.qcom,spmi/spmi-0/spmi0-00/800f000.qcom,spmi:qcom,pm660@0:qcom,qpnp-smb2/input/input3\n[    1.562365] thermal thermal_zone2: failed to read out thermal zone (-19)\n[    1.562850] PMI: smblib_check_ov_condition: Couldn't get current voltage, rc=-61\n[    1.562932] PMI: smblib_handle_batt_temp_changed: IRQ: determine-initial-status\n[    1.563245] PMI: smblib_get_apsd_result: APSD not done yet.\n[    1.563527] PMI: smblib_get_prop_batt_capacity: Couldn't get prop capacity rc=-22\n[    1.569181] PMI: somc_usb_register: somc usb register success\n[    1.569256] QPNP SMB2 probed successfully usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    1.571724] PMI: smblib_get_prop_batt_capacity: Couldn't get prop capacity rc=-22\n[    1.572272] PMI: smblib_get_apsd_result: APSD not done yet.\n[    1.572492] qpnp_vadc_read: Error reading vadc_hc channel 77\n[    1.572499] thermal thermal_zone3: failed to read out thermal zone (-517)\n[    1.572611] qpnp_vadc_read: Error reading vadc_hc channel 78\n[    1.572615] thermal thermal_zone4: failed to read out thermal zone (-517)\n[    1.572726] qpnp_vadc_read: Error reading vadc_hc channel 79\n[    1.572731] thermal thermal_zone5: failed to read out thermal zone (-517)\n[    1.572838] qpnp_vadc_read: Error reading vadc_hc channel 80\n[    1.572843] thermal thermal_zone6: failed to read out thermal zone (-517)\n[    1.572951] qpnp_vadc_read: Error reading vadc_hc channel 82\n[    1.572955] thermal thermal_zone7: failed to read out thermal zone (-517)\n[    1.593244] msm_lmh_dcvs:lmh_activate_trip lmh_activate_trip: disable not supported\n[    1.594131] msm_lmh_dcvs:lmh_activate_trip lmh_activate_trip: disable not supported\n[    1.594576] md: linear personality registered for level -1\n[    1.594693] device-mapper: uevent: version 1.0.3\n[    1.594999] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com\n[    1.596094] device-mapper: req-crypt: dm-req-crypt successfully initalized.\n\n[    1.597066] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in device tree\n[    1.597158] bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    1.597162] bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    1.597762] sdhci: Secure Digital Host Controller Interface driver\n[    1.597765] sdhci: Copyright(c) Pierre Ossman\n[    1.597768] sdhci-pltfm: SDHCI platform and OF driver helper\n[    1.598302] qcom,leds-qpnp 800f000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000: rgb_sync prepare 1\n[    1.598325] qcom,leds-qpnp 800f000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000: color_variation_max_num[4] rgb_current_index[100]\n[    1.598331] qcom,leds-qpnp 800f000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000: single_pwm_value[126] mix_pwm_value[86]\n[    1.598335] qcom,leds-qpnp 800f000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000: max_current[126]\n[    1.598546] qcom,leds-qpnp 800f000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000: color_variation_max_num[4] rgb_current_index[100]\n[    1.598552] qcom,leds-qpnp 800f000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000: single_pwm_value[165] mix_pwm_value[305]\n[    1.598555] qcom,leds-qpnp 800f000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000: max_current[305]\n[    1.598670] qcom,leds-qpnp 800f000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000: color_variation_max_num[4] rgb_current_index[100]\n[    1.598677] qcom,leds-qpnp 800f000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000: single_pwm_value[511] mix_pwm_value[278]\n[    1.598681] qcom,leds-qpnp 800f000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000: max_current[511]\n[    1.602174] qcom_ice_get_pdevice: found ice device ffffffcaf6ca6200\n[    1.602185] qcom_ice_get_pdevice: matching platform device ffffffcaf8b45400\n[    1.602217] ## mmc0: gpio_is_valid(pdata->uim2_gpio)=-2: failure\n[    1.607237] usbcore: registered new interface driver usbhid\n[    1.607244] usbhid: USB HID core driver\n[    1.607406] ashmem: initialized\n[    1.608255] qpnp_coincell_charger_show_state: enabled=Y, voltage=3200 mV, resistance=2100 ohm\n[    1.612616] qcom_ice c0c8000.sdcc1ice: QC ICE 3.0.72 device found @0xffffff8009c10000\n[    1.612657] ## mmc0: can't set uim2_gpio: -2\n[    1.613128] sdhci_msm c0c4000.sdhci: No vmmc regulator found\n[    1.613132] sdhci_msm c0c4000.sdhci: No vqmmc regulator found\n[    1.613505] mmc0: SDHCI controller on c0c4000.sdhci [c0c4000.sdhci] using 64-bit ADMA in CMDQ mode\n[    1.679879] mmc0: Out-of-interrupt timeout is 100[ms]\n[    1.679884] mmc0: eMMC FW version: 0x02\n[    1.679888] mmc0: CMDQ supported: depth: 16\n[    1.679891] mmc0: cache barrier support 0 flush policy 0\n[    1.685326] cmdq_host_alloc_tdl: desc_size: 1024 data_sz: 63488 slot-sz: 32\n[    1.685528] mmc0: CMDQ enabled on card\n[    1.685541] mmc0: new HS400 Enhanced strobe MMC card at address 0001\n[    1.687068] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0xf) latency=-1\n[    1.687075] sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xf0) latency=-1\n[    1.687132] mmcblk0: mmc0:0001 DH6DAB 58.2 GiB \n[    1.688283] mmcblk0rpmb: mmc0:0001 DH6DAB partition 3 16.0 MiB\n[    1.690117]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42 p43 p44 p45 p46 p47 p48 p49 p50 p51 p52 p53 p54 p55 p56 p57 p58 p59 p60 p61 p62 p63 p64 p65 p66 p67 p68 p69 p70 p71 p72 p73 p74 p75 p76 p77 p78\n[    1.698398] sdhci_msm c084000.sdhci: sdhci_msm_probe: ICE device is not enabled\n[    1.698427] ## mmc1: gpio_is_valid(pdata->uim2_gpio)=-2: failure\n[    1.711567] ## mmc1: can't set uim2_gpio: -2\n[    1.712703] sdhci_msm c084000.sdhci: No vmmc regulator found\n[    1.712707] sdhci_msm c084000.sdhci: No vqmmc regulator found\n[    1.713069] mmc1: SDHCI controller on c084000.sdhci [c084000.sdhci] using 64-bit ADMA in legacy mode\n[    1.741330] name len 0\n[    1.741359] ------------[ cut here ]------------\n[    1.741363] WARNING: at ../fs/proc/generic.c:369\n[    1.741368] Modules linked in:\n\n[    1.741379] CPU: 0 PID: 362 Comm: kworker/u16:3 Not tainted 4.4.288-xtremedev-EMP++ #1\n[    1.741382] Hardware name: Sony Mobile Communications. mermaid(sdm630) (DT)\n[    1.741406] Workqueue: events_unbound async_run_entry_fn\n[    1.741410] task: ffffffcaf6d063c0 task.stack: ffffffca74590000\n[    1.741417] PC is at __proc_create+0x1f4/0x200\n[    1.741420] LR is at __proc_create+0x1f4/0x200\n[    1.741423] pc : [<ffffff8a9fe68c84>] lr : [<ffffff8a9fe68c84>] pstate: 60400045\n[    1.741426] sp : ffffffca745937c0\n[    1.741428] x29: ffffffca745937c0 x28: 0000000000000c0c \n[    1.741432] x27: ffffffcaf8a4ba20 x26: 0000000000000040 \n[    1.741435] x25: ffffffcaf8a4ba9c x24: ffffffca74593838 \n[    1.741439] x23: 0000000000000000 x22: 0000000000000002 \n[    1.741443] x21: 000000000000416d x20: ffffff8aa2206000 \n[    1.741447] x19: ffffffca74593898 x18: 0000000000000010 \n[    1.741450] x17: 000000006fa87e4f x16: 0000000059dd1cea \n[    1.741454] x15: ffffff8aa22069c8 x14: ffffff8b22531e7f \n[    1.741458] x13: ffffff8aa2531e8d x12: 00000000000002b5 \n[    1.741461] x11: 0000000000000006 x10: 0000000005f5e0ff \n[    1.741465] x9 : 00000000000002b6 x8 : 00000000000b4fd2 \n[    1.741468] x7 : 0000000000000000 x6 : ffffff8aa2531e99 \n[    1.741472] x5 : ffffff8aa0e43958 x4 : 0000000000000000 \n[    1.741475] x3 : 0000000000000000 x2 : edc263a5ff79d7c3 \n[    1.741479] x1 : 0000000000000000 x0 : 000000000000000a \n[    1.741484] \n               PC: 0xffffff8a9fe68c44:\n[    1.741487] 8c44  9000aa00 aa1303e1 911c4000 943d558b d4210000 d2800000 17ffffcd 710002ff\n[    1.741497] 8c64  54ffff0d 39400262 17ffffe2 97f8f9d6 9000aa00 2a1703e1 911c0000 943d557f\n[    1.741505] 8c84  d4210000 d2800000 17ffffc1 a9bb7bfd 910003fd a9025bf5 52801816 a90363f7\n[    1.741514] 8ca4  d0011cf7 a90153f3 900138f3 910da273 912722e1 aa0003f8 91002275 f9400020\n[    1.741524] \n               LR: 0xffffff8a9fe68c44:\n[    1.741526] 8c44  9000aa00 aa1303e1 911c4000 943d558b d4210000 d2800000 17ffffcd 710002ff\n[    1.741535] 8c64  54ffff0d 39400262 17ffffe2 97f8f9d6 9000aa00 2a1703e1 911c0000 943d557f\n[    1.741543] 8c84  d4210000 d2800000 17ffffc1 a9bb7bfd 910003fd a9025bf5 52801816 a90363f7\n[    1.741552] 8ca4  d0011cf7 a90153f3 900138f3 910da273 912722e1 aa0003f8 91002275 f9400020\n[    1.741562] \n               SP: 0xffffffca74593780:\n[    1.741564] 3780  9fe68c84 ffffff8a 745937c0 ffffffca 9fe68c84 ffffff8a 60400045 00000000\n[    1.741573] 37a0  ffffffff ffffffff 00000000 00000000 ffffffff ffffffff fefefefe fefefefe\n[    1.741581] 37c0  74593810 ffffffca 9fe6901c ffffff8a 00000000 00000000 00000000 00000000\n[    1.741590] 37e0  f6420280 ffffffca f8a4ba00 ffffffca f8a4ba9c ffffffca 00000040 00000000\n\n[    1.741631] ---[ end trace 6dc6e91cc0ff2809 ]---\n[    1.741636] Call trace:\n[    1.741643] Exception stack(0xffffffca745935d0 to 0xffffffca74593700)\n[    1.741647] 35c0:                                   ffffffca74593898 0000008000000000\n[    1.741652] 35e0: 0000000082cd4000 ffffff8a9fe68c84 0000000060400045 0000000000000002\n[    1.741656] 3600: 000000000000000a ffffff8aa25742c8 00000000a2531918 ffffff8aa25722c8\n[    1.741661] 3620: ffffffca745936d0 ffffff8a9fd0d7a0 ffffff8aa2206000 ffffff8a9fd0d768\n[    1.741665] 3640: ffffff8aa13a8700 0000000000000002 0000000000000000 ffffffca74593838\n[    1.741669] 3660: ffffffcaf8a4ba9c 0000000000000040 ffffffcaf8a4ba20 0000000000000c0c\n[    1.741674] 3680: 0000000000000787 edc263a5ff79d7c3 000000000000000a 0000000000000000\n[    1.741678] 36a0: edc263a5ff79d7c3 0000000000000000 0000000000000000 ffffff8aa0e43958\n[    1.741683] 36c0: ffffff8aa2531e99 0000000000000000 00000000000b4fd2 00000000000002b6\n[    1.741687] 36e0: 0000000005f5e0ff 0000000000000006 00000000000002b5 ffffff8aa2531e8d\n[    1.741691] [<ffffff8a9fe68c84>] __proc_create+0x1f4/0x200\n[    1.741695] [<ffffff8a9fe6901c>] proc_mkdir_data+0x3c/0xa8\n[    1.741699] [<ffffff8a9fe690b8>] proc_mkdir+0x18/0x20\n[    1.741708] [<ffffff8a9fd164fc>] register_handler_proc+0x12c/0x150\n[    1.741714] [<ffffff8a9fd11030>] __setup_irq+0x460/0x6b8\n[    1.741718] [<ffffff8a9fd11400>] request_threaded_irq+0xd0/0x188\n[    1.741723] [<ffffff8a9fd13bcc>] devm_request_threaded_irq+0x74/0xe0\n[    1.741733] [<ffffff8aa079a170>] mmc_gpiod_request_cd_irq+0x90/0x108\n[    1.741738] [<ffffff8aa078a1b8>] mmc_start_host+0x58/0xa0\n[    1.741743] [<ffffff8aa078c110>] mmc_add_host+0xf0/0x198\n[    1.741749] [<ffffff8aa07adaec>] sdhci_add_host+0xba4/0x1160\n[    1.741755] [<ffffff8aa07b8308>] sdhci_msm_probe+0x1670/0x18d8\n[    1.741764] [<ffffff8aa0355c88>] platform_drv_probe+0x50/0xb8\n[    1.741767] [<ffffff8aa0353a54>] driver_probe_device+0x1bc/0x490\n[    1.741771] [<ffffff8aa0353dc4>] __driver_attach+0x9c/0xa0\n[    1.741778] [<ffffff8aa0351658>] bus_for_each_dev+0x70/0xc8\n[    1.741782] [<ffffff8aa0353210>] driver_attach+0x20/0x28\n[    1.741787] [<ffffff8aa0351c44>] driver_attach_async+0x14/0x58\n[    1.741791] [<ffffff8a9fccd114>] async_run_entry_fn+0x54/0x150\n[    1.741798] [<ffffff8a9fcc3db4>] process_one_work+0x13c/0x4b8\n[    1.741801] [<ffffff8a9fcc4260>] worker_thread+0x130/0x4e0\n[    1.741808] [<ffffff8a9fcca30c>] kthread+0xe4/0xf8\n[    1.741815] [<ffffff8a9fc83b60>] ret_from_fork+0x10/0x30\n[    1.742945] bimc-bwmon 1008000.qcom,cpu-bwmon: BW HWmon governor registered.\n[    1.744630] arm-memlat-mon soc:qcom,arm-memlat-mon-0: Memory Latency governor registered.\n[    1.744680] arm-memlat-mon soc:qcom,arm-memlat-mon-4: Memory Latency governor registered.\n[    1.747624] devfreq soc:qcom,cpubw: Couldn't update frequency transition information.\n[    1.747730] devfreq soc:qcom,mincpubw: Couldn't update frequency transition information.\n[    1.747834] devfreq soc:qcom,memlat-cpu0: Couldn't update frequency transition information.\n[    1.747937] devfreq soc:qcom,memlat-cpu4: Couldn't update frequency transition information.\n[    1.753962] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    1.756250] usbcore: registered new interface driver snd-usb-audio\n[    1.764306] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.764782] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.775725] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx group_id: 0x9100\n[    1.775957] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0 dev_id: 0x9000\n[    1.775968] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.775994] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx group_id: 0x9101\n[    1.776177] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0 dev_id: 0x9001\n[    1.776187] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.776207] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx group_id: 0x9110\n[    1.776366] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0 dev_id: 0x9010\n[    1.776374] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.776394] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx group_id: 0x9111\n[    1.776554] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0 dev_id: 0x9011\n[    1.776561] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.776583] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx group_id: 0x9120\n[    1.776744] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0 dev_id: 0x9020\n[    1.776753] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.776773] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx group_id: 0x9121\n[    1.776935] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0 dev_id: 0x9021\n[    1.776942] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.776963] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx group_id: 0x9130\n[    1.777124] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0 dev_id: 0x9030\n[    1.777131] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.777156] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx group_id: 0x9131\n[    1.777314] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0 dev_id: 0x9031\n[    1.777322] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.781401] sony_hweffect_params_init\n[    1.784412] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.785001] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    1.792129] GACT probability NOT on\n[    1.792142] Mirror/redirect action on\n[    1.792202] u32 classifier\n[    1.792204]     Actions configured\n[    1.792226] Netfilter messages via NETLINK v0.30.\n[    1.792301] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    1.792780] ctnetlink v0.93: registering with nfnetlink.\n[    1.793348] xt_time: kernel timezone is -0000\n[    1.793412] IPv4 over IPsec tunneling driver\n[    1.793724] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    1.793873] arp_tables: (C) 2002 David S. Miller\n[    1.793930] Initializing XFRM netlink socket\n[    1.794171] NET: Registered protocol family 10\n[    1.795816] mip6: Mobile IPv6\n[    1.795872] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    1.796258] sit: IPv6 over IPv4 tunneling driver\n[    1.796650] NET: Registered protocol family 17\n[    1.796664] NET: Registered protocol family 15\n[    1.796689] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.\n[    1.796695] Ebtables v2.0 registered\n[    1.796734] l2tp_core: L2TP core driver, V2.0\n[    1.796743] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    1.796748] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    1.796762] l2tp_netlink: L2TP netlink interface\n[    1.796787] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    1.796792] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    1.797908] NET: Registered protocol family 27\n[    1.801506] subsys-pil-tz 15700000.qcom,lpass: invalid resource\n[    1.801511] subsys-pil-tz 15700000.qcom,lpass: Failed to iomap base register\n[    1.801932] subsys-pil-tz 15700000.qcom,lpass: for adsp segments only will be dumped.\n[    1.803952] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    1.804596] platform 4080000.qcom,mss:qcom,mba-mem@0: assigned reserved memory node pil_mba_region@94800000\n[    1.804989] pil-q6v5-mss 4080000.qcom,mss: for modem segments only will be dumped.\n[    1.805047] pil-q6v5-mss 4080000.qcom,mss: for md_modem segments only will be dumped.\n[    1.807492] msm-dwc3 a800000.ssusb: id polling is enabled\n[    1.810293] sps:BAM 0x000000000a904000 is registered.\n[    1.810948] Invalid index Defaulting curr to 0\n[    1.812703] smb2-vbus: registered ocp notification(notify=ffffff8aa053ce58, ctxt=ffffffcaf6781000)\n[    1.822183] thermal thermal_zone27: failed to read out thermal zone (-19)\n[    1.824262] FG: fg_gen3_probe: battery SOC:20 voltage: 4017323uV temp: 307 id: 0KOhms\n[    1.825286] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.825486] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.825906] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.826259] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    1.830465] FG: fg_psy_get_property: unsupported property 4\n[    1.833240] FG: fg_get_time_to_full_locked: battery profile is not loaded\n[    1.834524] FG: fg_somc_get_real_temp: batt:307 aux:-2730 -> real battery temp:307\n[    1.838034] msm-dwc3 a800000.ssusb: id polling is enabled\n[    1.840981] sps:BAM 0x000000000a904000 is registered.\n[    1.844482] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.844703] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.845122] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.845346] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    1.851726] EDAC DEVICE0: Giving out device to module soc:arm64-cpu-erp controller cache: DEV soc:arm64-cpu-erp (POLLED)\n[    1.852092] ARM64 CPU ERP: Could not find <cci-irq> IRQ property. Proceeding anyway.\n[    1.853948] Registered cp15_barrier emulation handler\n[    1.853960] Registered setend emulation handler\n[    1.854310] registered taskstats version 1\n[    1.854332] Loading compiled-in X.509 certificates\n[    1.855837] Loaded X.509 cert 'Build time autogenerated kernel key: 74b5dbab48b319aa5650b9e6ffa09fe7a0d47653'\n[    1.856258] Loaded X.509 cert 'Android: 7e4333f9bba00adfe0ede979e28ed1920492b40f'\n[    1.856679] Loaded X.509 cert 'Sony Mobile Communications Inc.: DMVerity_Ganges_live_f1c1: 564a0c9ee92a54d3bd8f2919b86d28259c6e444d'\n[    1.859287] Key type encrypted registered\n[    1.861198] spss_utils [spss_init]: spss-utils driver Ver 1.2 13-Jan-2017.\n[    1.881408] scm_call failed: func id 0x42001601, ret: -2, syscall returns: 0x0, 0x0, 0x0\n[    1.882374] fastrpc soc:qcom,msm-adsprpc-mem: for adsp_rh segments only will be dumped.\n[    1.882512] ADSPRPC: gcinfo[0].heap_vmid 33\n[    1.882914] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 19\n[    1.890661] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 20\n[    1.900465] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 21\n[    1.910631] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 22\n[    1.917114] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.917311] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.917736] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.918007] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    1.924196] sim_detect soc:sim_detect: sim_detect driver was successful.\n[    1.925090] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.925291] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.925820] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.926096] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    1.928407] mmc1: new ultra high speed DDR50 SDXC card at address 59b4\n[    1.941266] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0xf) latency=-1\n[    1.941274] sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xf0) latency=-1\n[    1.950084] mmcblk1: mmc1:59b4 ED2S5 119 GiB \n[    1.952916] msm-dwc3 a800000.ssusb: DWC3 exited from low power mode\n[    1.953604] msm-dwc3 a800000.ssusb: DWC3 in low power mode\n[    1.954567]  mmcblk1: p1 p2\n[    1.955422] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.955663] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.956092] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.956616] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    1.965975] RNDIS_IPA module is loaded.\n[    1.967206] input: gpio-keys as /devices/soc/soc:gpio_keys/input/input4\n[    1.967644] qcom,qpnp-rtc 800f000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: setting system clock to 1971-05-15 04:43:30 UTC (43130610)\n[    1.969081] msm-core initialized without polling period\n[    1.970271] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.970518] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.970947] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.971153] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    1.979744] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.979931] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.980380] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.980753] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    1.987875] lmh_lite:lmh_parse_sensor Registering sensor:[GLM_soc]\n[    1.988084] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_cp1-]\n[    1.988191] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_cp0-]\n[    1.988366] soc:qcom,lmh supply vdd-apss not found, using dummy regulator\n[    1.988394] lmh_lite:lmh_get_sensor_devicetree Error getting ODCM thresh. err:-22\n[    1.990442] parse_cpu_levels: idx 1 609\n[    1.990445] parse_cpu_levels: idx 2 1012\n[    1.990448] parse_cpu_levels: idx 2 1848\n[    1.990503] parse_cpu_levels: idx 1 497\n[    1.990506] parse_cpu_levels: idx 2 1005\n[    1.990508] parse_cpu_levels: idx 2 2021\n[    1.993545] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.993796] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.994231] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.994573] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    2.003246] ipa-wan ipa_wwan_init:3286 Registering for q6_cleanup_cb\n[    2.003256] ipa register_ipa_platform_cb:2210 In register_ipa_platform_cb\n[    2.003260] ipa register_ipa_platform_cb:2213 reg q6_cleanup_cb\n[    2.003548] rmnet_ipa started initialization\n[    2.003552] IPA SSR support = True\n[    2.003555] IPA ipa-loaduC = True\n[    2.003557] IPA SG support = True\n[    2.003560] IPA Napi Enable = False\n[    2.003563] using default for wan-rx-desc-size = 1024\n[    2.004150] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    2.004342] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    2.004774] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    2.005241] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    2.011351] FG: fg_somc_get_real_temp: batt:307 aux:-2730 -> real battery temp:307\n[    2.018563] ipa ipa_sps_irq_control_all:963 EP (5) not allocated.\n[    2.018570] ipa ipa2_uc_state_check:301 uC is not loaded\n[    2.019372] rmnet_ipa completed initialization\n[    2.030571] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    2.030819] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    2.031255] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    2.031753] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    2.039011] gfx_mem_acc_corner: disabling\n[    2.039088] apc0_pwrcl_corner: disabling\n[    2.039092] apc1_perfcl_corner: disabling\n[    2.039096] cam_avdd_gpio_regulator: disabling\n[    2.039100] cam_dvdd_gpio_regulator: disabling\n[    2.039103] cam_rear_dvdd_gpio_regulator: disabling\n[    2.039107] cam_iovdd_gpio_regulator: disabling\n[    2.039118] gdsc_ufs: disabling\n[    2.039136] gdsc_venus: disabling\n[    2.039181] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    2.041707] ALSA device list:\n[    2.041710]   No soundcards found.\n[    2.041784] Warning: unable to open an initial console.\n[    2.044245] Freeing unused kernel memory: 10240K\n[    2.220444] FG: fg_somc_battery_data_get_best_profile: 1315-7716-0 found\n[    2.220460] FG: fg_get_batt_profile: No |  Range of Temp  | Range of VBATT  | Target FCC/FV Condition\n[    2.220466] FG: fg_get_batt_profile:  1 |  -2550 -     50 |      0 -   4500 |      0 4380 1\n[    2.220469] FG: fg_get_batt_profile:  2 |     50 -    120 |      0 -   4500 |    550 4380 2\n[    2.220474] FG: fg_get_batt_profile:  3 |    120 -    250 |      0 -   4100 |   1925 4380 3\n[    2.220477] FG: fg_get_batt_profile:  4 |    120 -    250 |   4100 -   4200 |   1375 4380 3\n[    2.220480] FG: fg_get_batt_profile:  5 |    120 -    250 |   4200 -   4300 |   1100 4380 3\n[    2.220484] FG: fg_get_batt_profile:  6 |    120 -    250 |   4300 -   4500 |    825 4380 3\n[    2.220488] FG: fg_get_batt_profile:  7 |    250 -    450 |      0 -   4150 |   2050 4380 3\n[    2.220492] FG: fg_get_batt_profile:  8 |    250 -    450 |   4150 -   4200 |   2050 4380 3\n[    2.220495] FG: fg_get_batt_profile:  9 |    250 -    450 |   4200 -   4300 |   1375 4380 3\n[    2.220498] FG: fg_get_batt_profile: 10 |    250 -    450 |   4300 -   4500 |    825 4380 3\n[    2.220503] FG: fg_get_batt_profile: 11 |    450 -    550 |      0 -   4500 |    825 4200 4\n[    2.220506] FG: fg_get_batt_profile: 12 |    550 -   2550 |      0 -   4500 |      0 4200 5\n[    2.225309] FG: is_profile_load_required: Battery profile is same, not loading it since force_load_profile is disabled\n[    2.225710] FG: profile_load_work: VBATT vs PREDICT : 4017323 vs 4004156\n[    2.227136] PMI: smblib_somc_handle_profile_fv: set fv:4380000\n[    2.963509] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: cpu1 cpu4 \n               Offline CPUs: cpu1 \n[    2.967923] Invalid sched_group_energy for CPU0\n[    2.967932] Invalid sched_group_energy for Cluster0\n[    2.980702] IRQ5 no longer affine to CPU1\n[    2.982214] psci: CPU1 killed (polled 0 ms)\n[    2.983608] cpu2 \n[    2.984045] Invalid sched_group_energy for CPU0\n[    2.984049] Invalid sched_group_energy for Cluster0\n[    3.004020] psci: CPU2 killed (polled 0 ms)\n[    3.005887] cpu3 \n[    3.006488] Invalid sched_group_energy for CPU0\n[    3.006493] Invalid sched_group_energy for Cluster0\n[    3.024308] psci: CPU3 killed (polled 0 ms)\n[    3.026128] cpu4 \n[    3.026610] Invalid sched_group_energy for CPU0\n[    3.026616] Invalid sched_group_energy for Cluster0\n[    3.046076] psci: CPU4 killed (polled 0 ms)\n[    3.047877] cpu5 \n[    3.048240] Invalid sched_group_energy for CPU0\n[    3.048245] Invalid sched_group_energy for Cluster0\n[    3.065833] psci: CPU5 killed (polled 0 ms)\n[    3.068403] cpu6 \n[    3.068732] Invalid sched_group_energy for CPU0\n[    3.068750] Invalid sched_group_energy for Cluster0\n[    3.086124] psci: CPU6 killed (polled 0 ms)\n[    3.087251] cpu7 \n[    3.088554] Invalid sched_group_energy for CPU0\n[    3.088559] Invalid sched_group_energy for Cluster0\n[    3.105823] psci: CPU7 killed (polled 0 ms)\n\n[    3.561223] PMI: smblib_somc_removal_work: input_report_key KEY_F24\n[    3.732462] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    3.732479] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    3.843630] dwc3_msm_set_type_power_role(): typec power role=2\n[    5.841262] dwc3_setsink_work(): power role was changed to sink\n[    8.112299] Sampling power every 1000 ms\n               Baseline power usage: \n[   34.481226] synaptics_tcm_i2c 1-003c: reflash_startup_work (line 2038): Timed out waiting for FB ready\n[   83.223171] CPU1: Booted secondary processor [51af8014]\n[   83.223310] Invalid sched_group_energy for CPU0\n[   83.223320] Invalid sched_group_energy for Cluster0\n[   84.229209] 1231 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 787 1113 1344 1516 1670 1881 2016 2150 2208\n               \n                787: \n[  111.486799] FG: fg_somc_get_real_temp: batt:305 aux:-2730 -> real battery temp:305\n[  210.595086]  2556     3.2 C/MHz     72 mW    8.4 J   35.6 I/mJ   117.4 s\n               1113: \n[  293.688769] FG: fg_somc_get_real_temp: batt:310 aux:-2730 -> real battery temp:310\n[  302.861673]  3598     3.2 C/MHz    103 mW    8.6 J   34.8 I/mJ    83.4 s\n               1344:  4365     3.2 C/MHz    119 mW    8.2 J   36.6 I/mJ    68.7 s\n               1516:  4905     3.2 C/MHz    170 mW   10.4 J   28.9 I/mJ    61.2 s\n               1670: \n[  458.279794] FG: fg_somc_get_real_temp: batt:312 aux:-2730 -> real battery temp:312\n[  465.492099] FG: fg_somc_get_real_temp: batt:315 aux:-2730 -> real battery temp:315\n[  466.961377] FG: fg_somc_get_real_temp: batt:312 aux:-2730 -> real battery temp:312\n[  514.517554]  5424     3.2 C/MHz    164 mW    9.1 J   33.0 I/mJ    55.3 s\n               1881:  6097     3.2 C/MHz    210 mW   10.3 J   29.1 I/mJ    49.2 s\n               2016: \n[  605.275245] FG: fg_somc_get_real_temp: batt:317 aux:-2730 -> real battery temp:317\n[  626.898777]  6547     3.2 C/MHz    260 mW   11.9 J   25.1 I/mJ    45.8 s\n               2150:  6968     3.2 C/MHz    282 mW   12.1 J   24.7 I/mJ    43.1 s\n               2208: \n[  728.257931] Invalid sched_group_energy for CPU0\n[  728.257947] Invalid sched_group_energy for Cluster0\n[  728.273320] psci: CPU1 killed (polled 0 ms)\n[  728.276698] CPU4: Booted secondary processor [51af8014]\n[  728.276980] Invalid sched_group_energy for CPU0\n[  728.276990] Invalid sched_group_energy for Cluster0\n[  729.283138]  7170     3.2 C/MHz    288 mW   12.0 J   24.9 I/mJ    41.8 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 614 883 1094 1382 1536 1728 1843\n               \n                614: \n[  736.130545] FG: fg_somc_get_real_temp: batt:320 aux:-2730 -> real battery temp:320\n[  878.725282] FG: fg_somc_get_real_temp: batt:317 aux:-2730 -> real battery temp:317\n[  888.791405]  1989     3.2 C/MHz     52 mW    7.8 J   38.5 I/mJ   150.9 s\n                883:  2867     3.2 C/MHz     67 mW    7.0 J   43.0 I/mJ   104.7 s\n               1094: \n[ 1013.980837] FG: fg_somc_get_real_temp: batt:320 aux:-2730 -> real battery temp:320\n[ 1095.526579]  3545     3.2 C/MHz     98 mW    8.3 J   36.3 I/mJ    84.6 s\n               1382: \n[ 1138.947866] FG: fg_somc_get_real_temp: batt:320 aux:-2730 -> real battery temp:320\n[ 1170.824589]  4481     3.2 C/MHz    130 mW    8.7 J   34.4 I/mJ    67.0 s\n               1536:  4987     3.2 C/MHz    147 mW    8.8 J   33.9 I/mJ    60.2 s\n               1728: \n[ 1256.589125] FG: fg_somc_get_real_temp: batt:322 aux:-2730 -> real battery temp:322\n[ 1302.368595]  5610     3.2 C/MHz    193 mW   10.3 J   29.0 I/mJ    53.5 s\n               1843: \n[ 1361.633187] Invalid sched_group_energy for CPU0\n[ 1361.633205] Invalid sched_group_energy for Cluster0\n[ 1361.656408] psci: CPU4 killed (polled 0 ms)\n[ 1361.667766]  5973     3.2 C/MHz    245 mW   12.3 J   24.4 I/mJ    50.2 s\n               \n               \n               Benchmark finished!\n[ 1361.702309] \n               real\t22m39.555s\n               user\t18m58.671s\n               sys\t0m0.484s\n"
  },
  {
    "path": "results/sdm630/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  3:       1224     GICv3  19 Edge      arch_timer\n  5:     136753     GICv3  39 Level     arch_mem_timer\n 35:          0   msmgpio  28 Level     pn553\n 52:          4   msmgpio  45 Level     synaptics_tcm\n 61:          0   msmgpio  54 Edge      \n 71:          0   msmgpio  64 Edge      camera_focus\n 79:          0   msmgpio  72 Edge      soc:fpc1145\n 82:          0   msmgpio  75 Edge      lid\n 97:          0   msmgpio  90 Edge      sim-detection\n120:          0   msmgpio 113 Edge      camera_snapshot\n121:        232     GICv3 127 Level     i2c-msm-v2-irq\n122:          0     GICv3 128 Level     i2c-msm-v2-irq\n123:          0     GICv3 134 Level     i2c-msm-v2-irq\n124:          0     GICv3 130 Level     c178000.spi\n125:          1     GICv3 270 Level     sps\n128:          0     GICv3 483 Edge      smp2p\n129:          0     GICv3 190 Edge      smp2p\n131:          0     GICv3 216 Level     tsens_interrupt\n132:          0     GICv3 462 Level     tsens_critical_interrupt\n133:          0     GICv3 166 Level     lmh-interrupt\n134:          0     GICv3  35 Edge      apps_wdog_bark\n136:          0     GICv3 323 Level     ngd_slim_irq\n138:          0     GICv3  75 Edge      ARM64 primary DBE IRQ\n139:          0     GICv3  76 Edge      ARM64 secondary DBE IRQ\n140:          0     GICv3  73 Edge      ARM64 primary ext IRQ\n141:          0     GICv3  74 Edge      ARM64 secondary ext IRQ\n143:          0     GICv3 365 Edge      ipa\n144:         18     GICv3 464 Level     sps\n145:          0     GICv3  67 Edge      OSM IRQ\n146:          0     GICv3  68 Edge      OSM IRQ\n147:          0     GICv3 484 Edge      qcom,glink-smem-native-xprt-modem\n148:          0     GICv3 189 Edge      qcom,glink-smem-native-xprt-adsp\n149:        541     GICv3 200 Edge      qcom,glink-smem-native-xprt-rpm\n162:          0     GICv3 194 Edge      adsp\n163:          0     GICv3 480 Edge      modem\n165:          0     GICv3  22 Edge      arm-pmu\n167:          0  pmic_arb 8388612 Edge      qpnp_kpdpwr_status\n168:          0  pmic_arb 8454148 Edge      qpnp_resin_status\n171:          0  pmic_arb 37748755 Edge      pm660_tz\n172:        687  pmic_arb 51380246 Edge      qpnp_vadc_interrupt\n173:          0  pmic_arb 24117262 Edge      sig-tx\n174:          0  pmic_arb 24182798 Edge      sig-rx\n175:          0  pmic_arb 24248334 Edge      msg-tx\n176:          0  pmic_arb 24313870 Edge      msg-rx\n177:          0  pmic_arb 24379406 Edge      msg-tx-failed\n178:          0  pmic_arb 24444942 Edge      msg-tx-discarded\n179:          0  pmic_arb 24510478 Edge      msg-rx-discarded\n180:          0  pmic_arb 54525976 Edge      qpnp_adc_tm_interrupt\n181:          0  pmic_arb 69206048 Edge      bcl_ibat_interrupt\n182:          0  pmic_arb 69337120 Edge      bcl_vbat_interrupt\n185:          0  pmic_arb 574619709 Edge      pm660l_tz\n186:          1  pmic_arb 1031864372 Edge      qpnp_wled_ovp_irq\n187:          0  pmic_arb 1026555953 Edge      qpnp_flash_led_fault_irq\n188:          0  pmic_arb 1026752561 Edge      qpnp_flash_led_all_ramp_down_done_irq\n189:          0  pmic_arb 1026818097 Edge      qpnp_flash_led_all_ramp_up_done_irq\n190:          0  pmic_arb 1052835884 Edge      qpnp_lcdb_sc_irq\n205:          0     GICv3 238 Level     sps\n206:          0     GICv3 224 Edge      spdm_bw_hyp\n207:          0     GICv3 317 Edge      cpr3\n209:          0     GICv3 379 Edge      hs_phy_irq\n210:          0     GICv3 275 Level     ss_phy_irq\n211:          0     GICv3 212 Edge      msm_dwc3\n212:         80     GICv3 142 Edge      mmc0\n213:          4     GICv3 144 Edge      c0c4000.sdhci\n214:         78     GICv3 157 Edge      mmc1\n215:          3     GICv3 253 Edge      c084000.sdhci\n216:          0     GICv3 261 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n217:          0     GICv3 263 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n218:          0     GICv3 405 Level     arm-smmu-context-fault\n219:          0     GICv3 406 Edge      arm-smmu-context-fault\n220:          0     GICv3 407 Edge      arm-smmu-context-fault\n247:          0     GICv3 258 Level     arm-smmu-context-fault\n248:          0     GICv3 425 Level     arm-smmu-context-fault\n249:          0     GICv3 426 Level     arm-smmu-context-fault\n250:          0     GICv3 427 Level     arm-smmu-context-fault\n251:          0     GICv3 428 Level     arm-smmu-context-fault\n265:          0     GICv3 298 Level     arm-smmu-context-fault\n266:          0     GICv3 299 Level     arm-smmu-context-fault\n267:          0     GICv3 300 Level     arm-smmu-context-fault\n268:          0     GICv3 276 Level     arm-smmu-context-fault\n297:          0     GICv3 332 Level     kgsl-3d0\n298:          0     GICv3 110 Edge      csiphy\n299:          0     GICv3 111 Edge      csiphy\n300:          0     GICv3 112 Edge      csiphy\n301:          0     GICv3 328 Edge      csid\n302:          0     GICv3 329 Edge      csid\n303:          0     GICv3 330 Edge      csid\n304:          0     GICv3 331 Edge      csid\n306:          0     GICv3 341 Edge      ispif\n307:          0     GICv3 346 Edge      vfe\n308:          0     GICv3 347 Edge      vfe\n309:          0     GICv3 327 Edge      cci\n312:          0     GICv3 203 Edge      7781b8.qcom,mpm\n313:          0     GICv3 319 Level     msm_vidc\n314:          0     GICv3 115 Edge      MDSS\n315:          0     GICv3  69 Level     limits_sensor-00\n316:          0     GICv3  70 Level     limits_sensor-01\n413:          0  pmic_arb 101777459 Edge      qpnp_rtc_alarm\n414:          0      mdss   2 Edge      sde_rotator_r3\n415:          0  pmic_arb 16777223 Edge      chg-error\n416:          0  pmic_arb 16842759 Edge      chg-state-change\n420:          0  pmic_arb 17825800 Edge      otg-fail\n421:          0  pmic_arb 17891336 Edge      otg-overcurrent\n422:          0  pmic_arb 17956872 Edge      otg-oc-dis-sw-sts\n423:          0  pmic_arb 18022408 Edge      testmode-change-detect\n424:          0  pmic_arb 18874377 Edge      bat-temp\n425:          0  pmic_arb 18939913 Edge      bat-ocp\n426:          0  pmic_arb 19005449 Edge      bat-ov\n427:          0  pmic_arb 19070985 Edge      bat-low\n428:          0  pmic_arb 19136521 Edge      bat-therm-or-id-missing\n429:          0  pmic_arb 19202057 Edge      bat-terminal-missing\n430:          0  pmic_arb 19922954 Edge      usbin-collapse\n431:          0  pmic_arb 19988490 Edge      usbin-lt-3p6v\n432:          0  pmic_arb 20054026 Edge      usbin-uv\n433:          0  pmic_arb 20119562 Edge      usbin-ov\n434:          0  pmic_arb 20185098 Edge      usbin-plugin\n435:          0  pmic_arb 20250634 Edge      usbin-src-change\n436:          0  pmic_arb 20316170 Edge      usbin-icl-change\n437:          0  pmic_arb 20381706 Edge      type-c-change\n438:          0  pmic_arb 20971531 Edge      dcin-collapse\n439:          0  pmic_arb 21037067 Edge      dcin-lt-3p6v\n440:          0  pmic_arb 21102603 Edge      dcin-uv\n441:          0  pmic_arb 21168139 Edge      dcin-ov\n442:          0  pmic_arb 21233675 Edge      dcin-plugin\n443:          0  pmic_arb 21299211 Edge      div2-en-dg\n444:          0  pmic_arb 21364747 Edge      dcin-icl-change\n446:          0  pmic_arb 23134221 Edge      wdog-bark\n447:          0  pmic_arb 23199757 Edge      aicl-fail\n448:          0  pmic_arb 23265293 Edge      aicl-done\n449:          0  pmic_arb 23330829 Edge      high-duty-cycle\n450:          0  pmic_arb 23396365 Edge      input-current-limiting\n451:          0  pmic_arb 23461901 Edge      temperature-change\n452:          0  pmic_arb 23527437 Edge      switcher-power-ok\n453:          0  smp2p_gpio   0 Edge      modem\n454:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n455:          0  smp2p_gpio   2 Edge      modem\n456:          0  smp2p_gpio   3 Edge      modem\n485:          0  smp2p_gpio   0 Edge      adsp\n486:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n487:          0  smp2p_gpio   2 Edge      adsp\n488:          0  smp2p_gpio   3 Edge      adsp\n517:          0     GICv3 163 Edge      dwc3\n519:          0  pmic_arb 67108894 Edge      soc-update\n520:          0  pmic_arb 67174430 Edge      soc-ready\n521:          0  pmic_arb 67239966 Edge      bsoc-delta\n522:          9  pmic_arb 67305502 Edge      msoc-delta\n523:          0  pmic_arb 67371038 Edge      msoc-low\n524:          0  pmic_arb 67436574 Edge      msoc-empty\n525:          0  pmic_arb 67502110 Edge      msoc-high\n526:          0  pmic_arb 67567646 Edge      msoc-full\n527:          0  pmic_arb 68157471 Edge      vbatt-pred-delta\n528:          0  pmic_arb 68223007 Edge      vbatt-low\n529:          0  pmic_arb 68288543 Edge      esr-delta\n530:          0  pmic_arb 68354079 Edge      batt-missing\n531:          2  pmic_arb 68550687 Edge      batt-temp-delta\n532:        414  pmic_arb 71303202 Edge      ima-rdy\n533:          0  pmic_arb 71368738 Edge      mem-xcp\n534:          0  pmic_arb 71434274 Edge      dma-grant\n535:          0  pmic_arb 744489127 Edge      volume_down\nIPI0:        78       Rescheduling interrupts\nIPI1:         0       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:        38       Timer broadcast interrupts\nIPI4:         0       IRQ work interrupts\nIPI5:         0       CPU wakeup interrupts\nIPI6:         0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm630/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  3:        611          3          3          3          2          2          2          2     GICv3  19 Edge      arch_timer\n  5:          0          0          0          0          0          0          0          0     GICv3  39 Level     arch_mem_timer\n 35:          0          0          0          0          0          0          0          0   msmgpio  28 Level     pn553\n 52:          4          0          0          0          0          0          0          0   msmgpio  45 Level     synaptics_tcm\n 61:          0          0          0          0          0          0          0          0   msmgpio  54 Edge      \n 71:          0          0          0          0          0          0          0          0   msmgpio  64 Edge      camera_focus\n 79:          0          0          0          0          0          0          0          0   msmgpio  72 Edge      soc:fpc1145\n 82:          0          0          0          0          0          0          0          0   msmgpio  75 Edge      lid\n 97:          0          0          0          0          0          0          0          0   msmgpio  90 Edge      sim-detection\n120:          0          0          0          0          0          0          0          0   msmgpio 113 Edge      camera_snapshot\n121:         15          0          0          0          0          0          0          0     GICv3 127 Level     i2c-msm-v2-irq\n122:          0          0          0          0          0          0          0          0     GICv3 128 Level     i2c-msm-v2-irq\n123:          0          0          0          0          0          0          0          0     GICv3 134 Level     i2c-msm-v2-irq\n124:          0          0          0          0          0          0          0          0     GICv3 130 Level     c178000.spi\n125:          1          0          0          0          0          0          0          0     GICv3 270 Level     sps\n128:          0          0          0          0          0          0          0          0     GICv3 483 Edge      smp2p\n129:          0          0          0          0          0          0          0          0     GICv3 190 Edge      smp2p\n131:          0          0          0          0          0          0          0          0     GICv3 216 Level     tsens_interrupt\n132:          0          0          0          0          0          0          0          0     GICv3 462 Level     tsens_critical_interrupt\n133:          0          0          0          0          0          0          0          0     GICv3 166 Level     lmh-interrupt\n134:          0          0          0          0          0          0          0          0     GICv3  35 Edge      apps_wdog_bark\n136:          0          0          0          0          0          0          0          0     GICv3 323 Level     ngd_slim_irq\n138:          0          0          0          0          0          0          0          0     GICv3  75 Edge      ARM64 primary DBE IRQ\n139:          0          0          0          0          0          0          0          0     GICv3  76 Edge      ARM64 secondary DBE IRQ\n140:          0          0          0          0          0          0          0          0     GICv3  73 Edge      ARM64 primary ext IRQ\n141:          0          0          0          0          0          0          0          0     GICv3  74 Edge      ARM64 secondary ext IRQ\n143:          0          0          0          0          0          0          0          0     GICv3 365 Edge      ipa\n144:         18          0          0          0          0          0          0          0     GICv3 464 Level     sps\n145:          0          0          0          0          0          0          0          0     GICv3  67 Edge      OSM IRQ\n146:          0          0          0          0          0          0          0          0     GICv3  68 Edge      OSM IRQ\n147:          0          0          0          0          0          0          0          0     GICv3 484 Edge      qcom,glink-smem-native-xprt-modem\n148:          0          0          0          0          0          0          0          0     GICv3 189 Edge      qcom,glink-smem-native-xprt-adsp\n149:        206          0          0          0          0          0          0          0     GICv3 200 Edge      qcom,glink-smem-native-xprt-rpm\n162:          0          0          0          0          0          0          0          0     GICv3 194 Edge      adsp\n163:          0          0          0          0          0          0          0          0     GICv3 480 Edge      modem\n165:          0          0          0          0          0          0          0          0     GICv3  22 Edge      arm-pmu\n167:          0          0          0          0          0          0          0          0  pmic_arb 8388612 Edge      qpnp_kpdpwr_status\n168:          0          0          0          0          0          0          0          0  pmic_arb 8454148 Edge      qpnp_resin_status\n171:          0          0          0          0          0          0          0          0  pmic_arb 37748755 Edge      pm660_tz\n172:          8          0          0          0          0          0          0          0  pmic_arb 51380246 Edge      qpnp_vadc_interrupt\n173:          0          0          0          0          0          0          0          0  pmic_arb 24117262 Edge      sig-tx\n174:          0          0          0          0          0          0          0          0  pmic_arb 24182798 Edge      sig-rx\n175:          0          0          0          0          0          0          0          0  pmic_arb 24248334 Edge      msg-tx\n176:          0          0          0          0          0          0          0          0  pmic_arb 24313870 Edge      msg-rx\n177:          0          0          0          0          0          0          0          0  pmic_arb 24379406 Edge      msg-tx-failed\n178:          0          0          0          0          0          0          0          0  pmic_arb 24444942 Edge      msg-tx-discarded\n179:          0          0          0          0          0          0          0          0  pmic_arb 24510478 Edge      msg-rx-discarded\n180:          0          0          0          0          0          0          0          0  pmic_arb 54525976 Edge      qpnp_adc_tm_interrupt\n181:          0          0          0          0          0          0          0          0  pmic_arb 69206048 Edge      bcl_ibat_interrupt\n182:          0          0          0          0          0          0          0          0  pmic_arb 69337120 Edge      bcl_vbat_interrupt\n185:          0          0          0          0          0          0          0          0  pmic_arb 574619709 Edge      pm660l_tz\n186:          1          0          0          0          0          0          0          0  pmic_arb 1031864372 Edge      qpnp_wled_ovp_irq\n187:          0          0          0          0          0          0          0          0  pmic_arb 1026555953 Edge      qpnp_flash_led_fault_irq\n188:          0          0          0          0          0          0          0          0  pmic_arb 1026752561 Edge      qpnp_flash_led_all_ramp_down_done_irq\n189:          0          0          0          0          0          0          0          0  pmic_arb 1026818097 Edge      qpnp_flash_led_all_ramp_up_done_irq\n190:          0          0          0          0          0          0          0          0  pmic_arb 1052835884 Edge      qpnp_lcdb_sc_irq\n205:          0          0          0          0          0          0          0          0     GICv3 238 Level     sps\n206:          0          0          0          0          0          0          0          0     GICv3 224 Edge      spdm_bw_hyp\n207:          0          0          0          0          0          0          0          0     GICv3 317 Edge      cpr3\n209:          0          0          0          0          0          0          0          0     GICv3 379 Edge      hs_phy_irq\n210:          0          0          0          0          0          0          0          0     GICv3 275 Level     ss_phy_irq\n211:          0          0          0          0          0          0          0          0     GICv3 212 Edge      msm_dwc3\n212:         68          0          0          0          0          0          0          0     GICv3 142 Edge      mmc0\n213:          3          0          0          0          0          0          0          0     GICv3 144 Edge      c0c4000.sdhci\n214:         77          0          0          0          0          0          0          0     GICv3 157 Edge      mmc1\n215:          2          0          0          0          0          0          0          0     GICv3 253 Edge      c084000.sdhci\n216:          0          0          0          0          0          0          0          0     GICv3 261 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n217:          0          0          0          0          0          0          0          0     GICv3 263 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n218:          0          0          0          0          0          0          0          0     GICv3 405 Level     arm-smmu-context-fault\n219:          0          0          0          0          0          0          0          0     GICv3 406 Edge      arm-smmu-context-fault\n220:          0          0          0          0          0          0          0          0     GICv3 407 Edge      arm-smmu-context-fault\n247:          0          0          0          0          0          0          0          0     GICv3 258 Level     arm-smmu-context-fault\n248:          0          0          0          0          0          0          0          0     GICv3 425 Level     arm-smmu-context-fault\n249:          0          0          0          0          0          0          0          0     GICv3 426 Level     arm-smmu-context-fault\n250:          0          0          0          0          0          0          0          0     GICv3 427 Level     arm-smmu-context-fault\n251:          0          0          0          0          0          0          0          0     GICv3 428 Level     arm-smmu-context-fault\n265:          0          0          0          0          0          0          0          0     GICv3 298 Level     arm-smmu-context-fault\n266:          0          0          0          0          0          0          0          0     GICv3 299 Level     arm-smmu-context-fault\n267:          0          0          0          0          0          0          0          0     GICv3 300 Level     arm-smmu-context-fault\n268:          0          0          0          0          0          0          0          0     GICv3 276 Level     arm-smmu-context-fault\n297:          0          0          0          0          0          0          0          0     GICv3 332 Level     kgsl-3d0\n298:          0          0          0          0          0          0          0          0     GICv3 110 Edge      csiphy\n299:          0          0          0          0          0          0          0          0     GICv3 111 Edge      csiphy\n300:          0          0          0          0          0          0          0          0     GICv3 112 Edge      csiphy\n301:          0          0          0          0          0          0          0          0     GICv3 328 Edge      csid\n302:          0          0          0          0          0          0          0          0     GICv3 329 Edge      csid\n303:          0          0          0          0          0          0          0          0     GICv3 330 Edge      csid\n304:          0          0          0          0          0          0          0          0     GICv3 331 Edge      csid\n306:          0          0          0          0          0          0          0          0     GICv3 341 Edge      ispif\n307:          0          0          0          0          0          0          0          0     GICv3 346 Edge      vfe\n308:          0          0          0          0          0          0          0          0     GICv3 347 Edge      vfe\n309:          0          0          0          0          0          0          0          0     GICv3 327 Edge      cci\n312:          0          0          0          0          0          0          0          0     GICv3 203 Edge      7781b8.qcom,mpm\n313:          0          0          0          0          0          0          0          0     GICv3 319 Level     msm_vidc\n314:          0          0          0          0          0          0          0          0     GICv3 115 Edge      MDSS\n315:          0          0          0          0          0          0          0          0     GICv3  69 Level     limits_sensor-00\n316:          0          0          0          0          0          0          0          0     GICv3  70 Level     limits_sensor-01\n413:          0          0          0          0          0          0          0          0  pmic_arb 101777459 Edge      qpnp_rtc_alarm\n414:          0          0          0          0          0          0          0          0      mdss   2 Edge      sde_rotator_r3\n415:          0          0          0          0          0          0          0          0  pmic_arb 16777223 Edge      chg-error\n416:          0          0          0          0          0          0          0          0  pmic_arb 16842759 Edge      chg-state-change\n420:          0          0          0          0          0          0          0          0  pmic_arb 17825800 Edge      otg-fail\n421:          0          0          0          0          0          0          0          0  pmic_arb 17891336 Edge      otg-overcurrent\n422:          0          0          0          0          0          0          0          0  pmic_arb 17956872 Edge      otg-oc-dis-sw-sts\n423:          0          0          0          0          0          0          0          0  pmic_arb 18022408 Edge      testmode-change-detect\n424:          0          0          0          0          0          0          0          0  pmic_arb 18874377 Edge      bat-temp\n425:          0          0          0          0          0          0          0          0  pmic_arb 18939913 Edge      bat-ocp\n426:          0          0          0          0          0          0          0          0  pmic_arb 19005449 Edge      bat-ov\n427:          0          0          0          0          0          0          0          0  pmic_arb 19070985 Edge      bat-low\n428:          0          0          0          0          0          0          0          0  pmic_arb 19136521 Edge      bat-therm-or-id-missing\n429:          0          0          0          0          0          0          0          0  pmic_arb 19202057 Edge      bat-terminal-missing\n430:          0          0          0          0          0          0          0          0  pmic_arb 19922954 Edge      usbin-collapse\n431:          0          0          0          0          0          0          0          0  pmic_arb 19988490 Edge      usbin-lt-3p6v\n432:          0          0          0          0          0          0          0          0  pmic_arb 20054026 Edge      usbin-uv\n433:          0          0          0          0          0          0          0          0  pmic_arb 20119562 Edge      usbin-ov\n434:          0          0          0          0          0          0          0          0  pmic_arb 20185098 Edge      usbin-plugin\n435:          0          0          0          0          0          0          0          0  pmic_arb 20250634 Edge      usbin-src-change\n436:          0          0          0          0          0          0          0          0  pmic_arb 20316170 Edge      usbin-icl-change\n437:          0          0          0          0          0          0          0          0  pmic_arb 20381706 Edge      type-c-change\n438:          0          0          0          0          0          0          0          0  pmic_arb 20971531 Edge      dcin-collapse\n439:          0          0          0          0          0          0          0          0  pmic_arb 21037067 Edge      dcin-lt-3p6v\n440:          0          0          0          0          0          0          0          0  pmic_arb 21102603 Edge      dcin-uv\n441:          0          0          0          0          0          0          0          0  pmic_arb 21168139 Edge      dcin-ov\n442:          0          0          0          0          0          0          0          0  pmic_arb 21233675 Edge      dcin-plugin\n443:          0          0          0          0          0          0          0          0  pmic_arb 21299211 Edge      div2-en-dg\n444:          0          0          0          0          0          0          0          0  pmic_arb 21364747 Edge      dcin-icl-change\n446:          0          0          0          0          0          0          0          0  pmic_arb 23134221 Edge      wdog-bark\n447:          0          0          0          0          0          0          0          0  pmic_arb 23199757 Edge      aicl-fail\n448:          0          0          0          0          0          0          0          0  pmic_arb 23265293 Edge      aicl-done\n449:          0          0          0          0          0          0          0          0  pmic_arb 23330829 Edge      high-duty-cycle\n450:          0          0          0          0          0          0          0          0  pmic_arb 23396365 Edge      input-current-limiting\n451:          0          0          0          0          0          0          0          0  pmic_arb 23461901 Edge      temperature-change\n452:          0          0          0          0          0          0          0          0  pmic_arb 23527437 Edge      switcher-power-ok\n453:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      modem\n454:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n455:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      modem\n456:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      modem\n485:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      adsp\n486:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n487:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      adsp\n488:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      adsp\n517:          0          0          0          0          0          0          0          0     GICv3 163 Edge      dwc3\n519:          0          0          0          0          0          0          0          0  pmic_arb 67108894 Edge      soc-update\n520:          0          0          0          0          0          0          0          0  pmic_arb 67174430 Edge      soc-ready\n521:          0          0          0          0          0          0          0          0  pmic_arb 67239966 Edge      bsoc-delta\n522:          0          0          0          0          0          0          0          0  pmic_arb 67305502 Edge      msoc-delta\n523:          0          0          0          0          0          0          0          0  pmic_arb 67371038 Edge      msoc-low\n524:          0          0          0          0          0          0          0          0  pmic_arb 67436574 Edge      msoc-empty\n525:          0          0          0          0          0          0          0          0  pmic_arb 67502110 Edge      msoc-high\n526:          0          0          0          0          0          0          0          0  pmic_arb 67567646 Edge      msoc-full\n527:          0          0          0          0          0          0          0          0  pmic_arb 68157471 Edge      vbatt-pred-delta\n528:          0          0          0          0          0          0          0          0  pmic_arb 68223007 Edge      vbatt-low\n529:          0          0          0          0          0          0          0          0  pmic_arb 68288543 Edge      esr-delta\n530:          0          0          0          0          0          0          0          0  pmic_arb 68354079 Edge      batt-missing\n531:          0          0          0          0          0          0          0          0  pmic_arb 68550687 Edge      batt-temp-delta\n532:         54          0          0          0          0          0          0          0  pmic_arb 71303202 Edge      ima-rdy\n533:          0          0          0          0          0          0          0          0  pmic_arb 71368738 Edge      mem-xcp\n534:          0          0          0          0          0          0          0          0  pmic_arb 71434274 Edge      dma-grant\n535:          0          0          0          0          0          0          0          0  pmic_arb 744489127 Edge      volume_down\nIPI0:         4          2          2          2          2          2          2          2       Rescheduling interrupts\nIPI1:         0         32         32         32         32         32         32         32       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI4:         0          0          0          0          0          0          0          0       IRQ work interrupts\nIPI5:         0          0          0          0          0          0          0          0       CPU wakeup interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm630/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [ksoftirqd/0]\n    5 root      0:00 [kworker/0:0H]\n    6 root      0:00 [kworker/u16:0]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [migration/1]\n   15 root      0:00 [ksoftirqd/1]\n   16 root      0:00 [kworker/1:0]\n   17 root      0:00 [kworker/1:0H]\n   18 root      0:00 [rcuop/1]\n   19 root      0:00 [rcuos/1]\n   20 root      0:00 [rcuob/1]\n   21 root      0:00 [migration/2]\n   22 root      0:00 [ksoftirqd/2]\n   23 root      0:00 [kworker/2:0]\n   24 root      0:00 [kworker/2:0H]\n   25 root      0:00 [rcuop/2]\n   26 root      0:00 [rcuos/2]\n   27 root      0:00 [rcuob/2]\n   28 root      0:00 [migration/3]\n   29 root      0:00 [ksoftirqd/3]\n   30 root      0:00 [kworker/3:0]\n   31 root      0:00 [kworker/3:0H]\n   32 root      0:00 [rcuop/3]\n   33 root      0:00 [rcuos/3]\n   34 root      0:00 [rcuob/3]\n   35 root      0:00 [migration/4]\n   36 root      0:00 [ksoftirqd/4]\n   37 root      0:00 [kworker/4:0]\n   38 root      0:00 [kworker/4:0H]\n   39 root      0:00 [rcuop/4]\n   40 root      0:00 [rcuos/4]\n   41 root      0:00 [rcuob/4]\n   42 root      0:00 [migration/5]\n   43 root      0:00 [ksoftirqd/5]\n   44 root      0:00 [kworker/5:0]\n   45 root      0:00 [kworker/5:0H]\n   46 root      0:00 [rcuop/5]\n   47 root      0:00 [rcuos/5]\n   48 root      0:00 [rcuob/5]\n   49 root      0:00 [migration/6]\n   50 root      0:00 [ksoftirqd/6]\n   51 root      0:00 [kworker/6:0]\n   52 root      0:00 [kworker/6:0H]\n   53 root      0:00 [rcuop/6]\n   54 root      0:00 [rcuos/6]\n   55 root      0:00 [rcuob/6]\n   56 root      0:00 [migration/7]\n   57 root      0:00 [ksoftirqd/7]\n   58 root      0:00 [kworker/7:0]\n   59 root      0:00 [kworker/7:0H]\n   60 root      0:00 [rcuop/7]\n   61 root      0:00 [rcuos/7]\n   62 root      0:00 [rcuob/7]\n   63 root      0:00 [kdevtmpfs]\n   64 root      0:00 [netns]\n   65 root      0:00 [perf]\n   66 root      0:00 [kworker/0:1]\n   67 root      0:00 [smd_channel_clo]\n   68 root      0:00 [dsps_smd_trans_]\n   69 root      0:00 [lpass_smd_trans]\n   70 root      0:00 [mpss_smd_trans_]\n   71 root      0:00 [wcnss_smd_trans]\n   72 root      0:00 [rpm_smd_trans_g]\n   73 root      0:00 [ipa_usb_wq]\n   74 root      0:00 [msm_watchdog]\n   75 root      0:00 [smem_native_mps]\n   76 root      0:00 [mpss_smem_glink]\n   77 root      0:00 [smem_native_lpa]\n   78 root      0:00 [lpass_smem_glin]\n   79 root      0:00 [smem_native_rpm]\n   80 root      0:00 [rpm_smem_glink_]\n   81 root      0:00 [rpm_requests]\n   83 root      0:00 [deferwq]\n   84 root      0:00 [irq/207-cpr3]\n   85 root      0:00 [mpm]\n   86 root      0:02 [kworker/u16:2]\n   87 root      0:00 [writeback]\n   88 root      0:00 [kcompactd0]\n   89 root      0:00 [ksmd]\n   90 root      0:00 [crypto]\n   91 root      0:00 [bioset]\n   92 root      0:00 [kblockd]\n   93 root      0:00 [md]\n   94 root      0:00 [edac-poller]\n   95 root      0:00 [system]\n   96 root      0:00 [irq/216-arm-smm]\n   97 root      0:00 [irq/217-arm-smm]\n   98 root      0:00 [irq/216-arm-smm]\n   99 root      0:00 [irq/217-arm-smm]\n  100 root      0:00 [irq/216-arm-smm]\n  101 root      0:00 [irq/217-arm-smm]\n  102 root      0:00 [irq/216-arm-smm]\n  103 root      0:00 [irq/217-arm-smm]\n  104 root      0:00 [devfreq_wq]\n  105 root      0:00 [governor_msm_ad]\n  106 root      0:00 [cfg80211]\n  107 root      0:00 [irq/190-qpnp_lc]\n  108 root      0:00 [irq/218-arm-smm]\n  109 root      0:00 [ipa_power_mgmt]\n  110 root      0:00 [sps_ipa_power_m]\n  111 root      0:00 [kworker/u17:0]\n  112 root      0:00 [ipawq15]\n  113 root      0:00 [iparepwq15]\n  114 root      0:00 [kworker/u17:1]\n  115 root      0:00 [ipawq48]\n  116 root      0:00 [iparepwq48]\n  117 root      0:00 [ipawq14]\n  118 root      0:00 [iparepwq14]\n  119 root      0:00 [ipa_rm_wq]\n  120 root      0:00 [ipa_interrupt_w]\n  121 root      0:00 [ipa_holb_wq]\n  122 root      0:00 [irq/219-arm-smm]\n  123 root      0:00 [irq/182-bcl_vba]\n  124 root      0:00 [irq/181-bcl_iba]\n  150 root      0:00 [kswapd0]\n  151 root      0:00 [vmstat]\n  152 root      0:00 [fsnotify_mark]\n  153 root      0:00 [ecryptfs-kthrea]\n  188 root      0:00 [ad_calc_wq]\n  189 root      0:00 [mdss_dsi_event]\n  190 root      0:00 [mdss_dsi_dba]\n  191 root      0:00 [cwb_wq]\n  192 root      0:00 [unblanker]\n  193 root      0:00 [cwb_wq]\n  195 root      0:00 [glink_ssr_wq]\n  196 root      0:00 [glink_lbsrv]\n  197 root      0:00 [glink_xprt_wq]\n  198 root      0:00 [IPCRTR_mpss_sme]\n  199 root      0:00 [IPCRTR_lpass_sm]\n  200 root      0:00 [apr_driver]\n  201 root      0:00 [glink_pkt_wq]\n  202 root      0:00 [mem_share_svc]\n  203 root      0:00 [irq/220-arm-smm]\n  204 root      0:00 [qmi_svc_event_w]\n  205 root      0:00 [qmi_hndl0000000]\n  206 root      0:00 [msm_ipc_router]\n  207 root      0:00 [servloc_wq]\n  208 root      0:00 [k_hsuart]\n  209 root      0:00 [msm_serial_hs_0]\n  210 root      0:00 [msm_serial_hs_0]\n  211 root      0:00 [hwrng]\n  214 root      0:00 [diag_real_time_]\n  215 root      0:00 [diag_wq]\n  216 root      0:00 [DIAG_USB_diag]\n  217 root      0:00 [diag_cntl_wq]\n  218 root      0:00 [diag_dci_wq]\n  219 root      0:00 [DIAG_SMD_MODEM_]\n  220 root      0:00 [DIAG_SMD_MODEM_]\n  221 root      0:00 [DIAG_SMD_MODEM_]\n  222 root      0:00 [DIAG_SMD_MODEM_]\n  223 root      0:00 [DIAG_SMD_MODEM_]\n  224 root      0:00 [DIAG_SMD_LPASS_]\n  225 root      0:00 [DIAG_SMD_LPASS_]\n  226 root      0:00 [DIAG_SMD_LPASS_]\n  227 root      0:00 [DIAG_SMD_LPASS_]\n  228 root      0:00 [DIAG_SMD_LPASS_]\n  229 root      0:00 [DIAG_SMD_WCNSS_]\n  230 root      0:00 [DIAG_SMD_WCNSS_]\n  231 root      0:00 [DIAG_SMD_WCNSS_]\n  232 root      0:00 [DIAG_SMD_WCNSS_]\n  233 root      0:00 [DIAG_SMD_WCNSS_]\n  234 root      0:00 [DIAG_SMD_SENSOR]\n  235 root      0:00 [DIAG_SMD_SENSOR]\n  236 root      0:00 [DIAG_SMD_SENSOR]\n  237 root      0:00 [DIAG_SMD_SENSOR]\n  238 root      0:00 [DIAG_SMD_SENSOR]\n  239 root      0:00 [DIAG_SMD_DIAG_C]\n  240 root      0:00 [DIAG_SMD_DIAG_D]\n  241 root      0:00 [DIAG_SMD_DIAG_C]\n  242 root      0:00 [DIAG_SMD_DIAG_D]\n  243 root      0:00 [DIAG_SMD_DIAG_D]\n  244 root      0:00 [DIAG_SMD_CDSP_C]\n  245 root      0:00 [DIAG_SMD_CDSP_D]\n  246 root      0:00 [DIAG_SMD_CDSP_C]\n  247 root      0:00 [DIAG_SMD_CDSP_D]\n  248 root      0:00 [DIAG_SMD_CDSP_D]\n  249 root      0:00 [DIAG_SOCKMODEM_]\n  250 root      0:00 [DIAG_SOCKMODEM_]\n  251 root      0:00 [DIAG_SOCKMODEM_]\n  252 root      0:00 [DIAG_SOCKMODEM_]\n  253 root      0:00 [DIAG_SOCKMODEM_]\n  254 root      0:00 [DIAG_SOCKLPASS_]\n  255 root      0:00 [DIAG_SOCKLPASS_]\n  256 root      0:00 [DIAG_SOCKLPASS_]\n  257 root      0:00 [DIAG_SOCKLPASS_]\n  258 root      0:00 [DIAG_SOCKLPASS_]\n  259 root      0:00 [DIAG_SOCKWCNSS_]\n  260 root      0:00 [DIAG_SOCKWCNSS_]\n  261 root      0:00 [DIAG_SOCKWCNSS_]\n  262 root      0:00 [DIAG_SOCKWCNSS_]\n  263 root      0:00 [DIAG_SOCKWCNSS_]\n  264 root      0:00 [DIAG_SOCKSENSOR]\n  265 root      0:00 [DIAG_SOCKSENSOR]\n  266 root      0:00 [DIAG_SOCKSENSOR]\n  267 root      0:00 [DIAG_SOCKSENSOR]\n  268 root      0:00 [DIAG_SOCKSENSOR]\n  269 root      0:00 [DIAG_SOCKDIAG_C]\n  270 root      0:00 [DIAG_SOCKDIAG_D]\n  271 root      0:00 [DIAG_SOCKDIAG_C]\n  272 root      0:00 [DIAG_SOCKDIAG_D]\n  273 root      0:00 [DIAG_SOCKDIAG_D]\n  274 root      0:00 [DIAG_SOCKCDSP_C]\n  275 root      0:00 [DIAG_SOCKCDSP_D]\n  276 root      0:00 [DIAG_SOCKCDSP_C]\n  277 root      0:00 [DIAG_SOCKCDSP_D]\n  278 root      0:00 [DIAG_SOCKCDSP_D]\n  279 root      0:00 [DIAG_CNTL_SOCKE]\n  280 root      0:00 [DIAG_GLINK_DIAG]\n  281 root      0:00 [DIAG_GLINK_DIAG]\n  282 root      0:00 [DIAG_GLINK_DIAG]\n  283 root      0:00 [DIAG_GLINK_DIAG]\n  284 root      0:00 [DIAG_GLINK_DIAG]\n  285 root      0:00 [kgsl-workqueue]\n  286 root      0:00 [kgsl-mementry]\n  287 root      0:00 [kgsl_worker_thr]\n  288 root      0:00 [kgsl-events]\n  289 root      0:00 [kgsl_devfreq_wq]\n  290 root      0:00 [bioset]\n  291 root      0:00 [bioset]\n  292 root      0:00 [bioset]\n  293 root      0:00 [bioset]\n  294 root      0:00 [bioset]\n  295 root      0:00 [bioset]\n  296 root      0:00 [bioset]\n  297 root      0:00 [bioset]\n  298 root      0:00 [bioset]\n  299 root      0:00 [bioset]\n  300 root      0:00 [bioset]\n  301 root      0:00 [bioset]\n  302 root      0:00 [bioset]\n  303 root      0:00 [bioset]\n  304 root      0:00 [bioset]\n  305 root      0:00 [bioset]\n  306 root      0:00 [bioset]\n  307 root      0:00 [bioset]\n  308 root      0:00 [bioset]\n  309 root      0:00 [bioset]\n  310 root      0:00 [bioset]\n  311 root      0:00 [bioset]\n  312 root      0:00 [bioset]\n  313 root      0:00 [bioset]\n  314 root      0:00 [bioset]\n  315 root      0:00 [qseecom-unreg-l]\n  316 root      0:00 [qseecom-unload-]\n  317 root      0:00 [memory_wq]\n  318 root      0:00 [SecTimerCbWq]\n  319 root      0:00 [spi4]\n  320 root      0:00 [qcrypto_seq_res]\n  341 root      0:00 [bond0]\n  342 root      0:00 [sharedmem_qmi_w]\n  343 root      0:00 [k_sm_usb]\n  345 root      0:00 [qmi_hndl0000000]\n  349 root      0:00 [uether]\n  352 root      0:00 [syna_tcm_report]\n  353 root      0:00 [syna_tcm_helper]\n  354 root      0:00 [syna_tcm_resume]\n  355 root      0:00 [syna_tcm_watchd]\n  356 root      0:00 [syna_tcm_pollin]\n  357 root      0:00 [irq/52-synaptic]\n  358 root      0:00 [syna_tcm_module]\n  359 root      0:00 [syna_tcm_reflas]\n  360 root      0:00 [irq/79-soc:fpc1]\n  361 root      0:00 [msm_cci_wq]\n  363 root      0:00 [msm_cci_wq]\n  364 root      0:00 [therm_core:noti]\n  365 root      0:00 [therm_core:noti]\n  366 root      0:00 [msm_cpp_workque]\n  367 root      0:00 [msm_vidc_worker]\n  368 root      0:00 [pm_workerq_venu]\n  369 root      0:00 [irq/265-arm-smm]\n  370 root      0:00 [irq/266-arm-smm]\n  371 root      0:00 [irq/267-arm-smm]\n  372 root      0:00 [irq/268-arm-smm]\n  373 root      0:00 [rot_commitq_0_0]\n  374 root      0:00 [rot_commitq_0_1]\n  375 root      0:00 [rot_doneq_0_0]\n  376 root      0:00 [rot_doneq_0_1]\n  377 root      0:00 [therm_core:noti]\n  378 root      0:00 [irq/415-chg-err]\n  379 root      0:00 [irq/416-chg-sta]\n  380 root      0:00 [irq/420-otg-fai]\n  381 root      0:00 [irq/421-otg-ove]\n  382 root      0:00 [irq/422-otg-oc-]\n  383 root      0:00 [irq/423-testmod]\n  384 root      0:00 [irq/424-bat-tem]\n  385 root      0:00 [irq/425-bat-ocp]\n  386 root      0:00 [irq/426-bat-ov]\n  387 root      0:00 [irq/427-bat-low]\n  388 root      0:00 [irq/428-bat-the]\n  389 root      0:00 [irq/429-bat-ter]\n  390 root      0:00 [irq/430-usbin-c]\n  391 root      0:00 [irq/431-usbin-l]\n  392 root      0:00 [irq/432-usbin-u]\n  393 root      0:00 [irq/433-usbin-o]\n  394 root      0:00 [irq/434-usbin-p]\n  395 root      0:00 [irq/435-usbin-s]\n  396 root      0:00 [irq/436-usbin-i]\n  397 root      0:00 [irq/437-type-c-]\n  398 root      0:00 [irq/438-dcin-co]\n  399 root      0:00 [irq/439-dcin-lt]\n  400 root      0:00 [irq/440-dcin-uv]\n  401 root      0:00 [irq/441-dcin-ov]\n  402 root      0:00 [irq/442-dcin-pl]\n  403 root      0:00 [irq/443-div2-en]\n  404 root      0:00 [irq/444-dcin-ic]\n  405 root      0:00 [irq/446-wdog-ba]\n  406 root      0:00 [irq/447-aicl-fa]\n  407 root      0:00 [irq/448-aicl-do]\n  408 root      0:00 [irq/449-high-du]\n  409 root      0:00 [irq/450-input-c]\n  410 root      0:00 [irq/451-tempera]\n  411 root      0:00 [irq/452-switche]\n  412 root      0:00 [therm_core:noti]\n  413 root      0:00 [therm_core:noti]\n  414 root      0:00 [therm_core:noti]\n  415 root      0:00 [therm_core:noti]\n  416 root      0:00 [therm_core:noti]\n  417 root      0:00 [therm_core:noti]\n  418 root      0:00 [therm_core:noti]\n  419 root      0:00 [therm_core:noti]\n  420 root      0:00 [therm_core:noti]\n  421 root      0:00 [therm_core:noti]\n  422 root      0:00 [therm_core:noti]\n  423 root      0:00 [therm_core:noti]\n  424 root      0:00 [therm_core:noti]\n  425 root      0:00 [therm_core:noti]\n  426 root      0:00 [therm_core:noti]\n  427 root      0:00 [therm_core:noti]\n  428 root      0:00 [therm_core:noti]\n  429 root      0:00 [therm_core:noti]\n  430 root      0:00 [therm_core:noti]\n  431 root      0:00 [therm_core:noti]\n  432 root      0:00 [therm_core:noti]\n  433 root      0:00 [therm_core:noti]\n  434 root      0:00 [irq/131-tsens_i]\n  435 root      0:00 [irq/132-tsens_c]\n  436 root      0:00 [therm_core:noti]\n  437 root      0:00 [irq/315-limits_]\n  438 root      0:00 [therm_core:noti]\n  439 root      0:00 [irq/316-limits_]\n  440 root      0:00 [dm_bufio_cache]\n  441 root      0:00 [irq/186-qpnp_wl]\n  442 root      0:03 [kworker/u16:4]\n  443 root      0:00 [irq/213-c0c4000]\n  444 root      0:00 [irq/212-mmc0]\n  446 root      0:00 [bioset]\n  447 root      0:00 [mmc-cmdqd/0]\n  448 root      0:00 [bioset]\n  449 root      0:00 [mmcqd/0rpmb]\n  450 root      0:00 [irq/215-c084000]\n  451 root      0:00 [irq/214-mmc1]\n  452 root      0:00 [irq/61-]\n  453 root      0:00 [irq/206-spdm_bw]\n  454 root      0:00 [binder]\n  455 root      0:00 [irq/247-arm-smm]\n  456 root      0:00 [uaudio_svc]\n  457 root      0:00 [qmi_hndl0000000]\n  458 root      0:00 [ipv6_addrconf]\n  459 root      0:00 [irq/487-adsp]\n  460 root      0:00 [sysmon_wq]\n  461 root      0:00 [irq/455-modem]\n  462 root      0:00 [k_sm_usb]\n  467 root      0:00 [irq/173-sig-tx]\n  468 root      0:00 [irq/174-sig-rx]\n  469 root      0:00 [therm_core:noti]\n  470 root      0:00 [irq/519-soc-upd]\n  471 root      0:00 [irq/520-soc-rea]\n  472 root      0:00 [irq/521-bsoc-de]\n  473 root      0:00 [irq/522-msoc-de]\n  474 root      0:00 [irq/523-msoc-lo]\n  475 root      0:00 [irq/524-msoc-em]\n  476 root      0:00 [irq/525-msoc-hi]\n  477 root      0:00 [irq/526-msoc-fu]\n  478 root      0:00 [irq/527-vbatt-p]\n  479 root      0:00 [irq/528-vbatt-l]\n  480 root      0:00 [irq/529-esr-del]\n  481 root      0:00 [irq/530-batt-mi]\n  482 root      0:00 [irq/531-batt-te]\n  483 root      0:00 [irq/532-ima-rdy]\n  484 root      0:00 [irq/533-mem-xcp]\n  485 root      0:00 [irq/534-dma-gra]\n  487 root      0:00 [k_sm_usb]\n  488 root      0:00 [irq/209-hs_phy_]\n  489 root      0:00 [irq/210-ss_phy_]\n  490 root      0:00 [irq/211-msm_dwc]\n  491 root      0:00 [usb_bam_wq]\n  493 root      0:00 [id_polling_q]\n  494 root      0:00 [kworker/0:6]\n  495 root      0:00 [irq/138-ARM64 p]\n  496 root      0:00 [irq/139-ARM64 s]\n  497 root      0:00 [irq/140-ARM64 p]\n  498 root      0:00 [irq/141-ARM64 s]\n  507 root      0:00 [rq_stats]\n  508 root      0:00 [irq/248-arm-smm]\n  510 root      0:00 [irq/249-arm-smm]\n  511 root      0:00 [irq/250-arm-smm]\n  512 root      0:00 [irq/251-arm-smm]\n  513 root      0:00 [sb-3]\n  514 root      0:00 [bioset]\n  516 root      0:00 [ngd_rx_thread3]\n  517 root      0:00 [mmcqd/1]\n  518 root      0:00 [ngd_notify_sl3]\n  519 root      0:00 [msm-core:sampli]\n  520 root      0:00 [msm_thermal:hot]\n  521 root      0:00 [kworker/0:1H]\n  522 root      0:00 [msm_thermal:fre]\n  523 root      0:00 [msm_thermal:the]\n  524 root      0:00 [therm_core:noti]\n  525 root      0:00 [therm_core:noti]\n  526 root      0:00 [therm_core:noti]\n  527 root      0:00 [irq/133-lmh-int]\n  528 root      0:00 [irq/189-qpnp_fl]\n  529 root      0:00 [irq/188-qpnp_fl]\n  530 root      0:00 [irq/187-qpnp_fl]\n  531 root      0:00 [ipa_A7_svc]\n  532 root      0:00 [qmi_hndl0000000]\n  533 root      0:00 [clnt_req]\n  534 root      0:00 [clnt_resp]\n  535 root      0:00 [clnt_req]\n  546 root      0:00 [kworker/1:1H]\n  547 root      0:00 [kworker/1:1]\n  548 root      0:00 [kworker/2:1H]\n  549 root      0:00 [kworker/3:1H]\n  550 root      0:00 [kworker/2:1]\n  551 root      0:00 [kworker/3:1]\n  552 root      0:00 [kworker/4:1H]\n  553 root      0:00 [kworker/4:1]\n  554 root      0:00 [kworker/5:1H]\n  555 root      0:00 [kworker/5:1]\n  556 root      0:00 [kworker/6:1H]\n  557 root      0:00 [kworker/6:1]\n  558 root      0:00 [kworker/7:1H]\n  559 root      0:00 [kworker/7:1]\n  590 root      0:02 [kworker/u16:1]\n  591 root      0:00 [kworker/0:0]\n  601 root      0:00 [kworker/0:2]\n  608 root      0:01 [kworker/u16:3]\n  615 root      0:00 [kworker/0:3]\n  659 root      0:00 ps -A\n"
  },
  {
    "path": "results/sdm630/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,787200,2556.150097,3.247141891514228,71.87476268288022,8.436051134510038,35.56166211140727,117.371533757\r\n1,1113600,3598.2009,3.2311430495689657,103.33313437033716,8.616145854850904,34.81835208617082,83.382217208\r\n1,1344000,4364.588638,3.2474617842261906,119.30903861894105,8.201314043173378,36.579504018592544,68.740089922\r\n1,1516800,4905.487605,3.2341031151107598,169.75023546493426,10.382237780679576,28.895504643350918,61.161846122\r\n1,1670400,5423.973965,3.2471108506944444,164.27635265265442,9.086834453220922,33.014797567227816,55.31431826\r\n1,1881600,6097.437044,3.240559653486395,209.59184446297937,10.313148054257994,29.08908108578339,49.205865241\r\n1,2016000,6546.930581,3.2474854072420634,260.4875104902443,11.93741255774027,25.13107413762614,45.827197378\r\n1,2150400,6968.155529,3.24039970656622,281.60848139385706,12.125657345366456,24.74092673537721,43.058565869\r\n1,2208000,7170.172084,3.247360545289855,287.64931522097544,12.036417552571473,24.924359651839072,41.844068161\r\n4,614400,1988.572338,3.236608623046875,51.693201593039895,7.799027180745239,38.46633599901538,150.871428745\r\n4,883200,2866.698519,3.245809011548913,66.69348313163457,6.980047623502608,42.97964944964933,104.658615741\r\n4,1094400,3544.549074,3.2388058059210523,97.63764970652369,8.264685531369551,36.29902176692821,84.646502207\r\n4,1382400,4480.755157,3.2412870059317123,130.24847032074237,8.721760863707578,34.39672385978162,66.96248211\r\n4,1536000,4987.116615,3.246820712890625,146.9893138367998,8.843675291945589,33.92254804665049,60.165430133\r\n4,1728000,5609.993268,3.2465238819444444,193.2540112740187,10.336189631534282,29.02423530279878,53.48499399\r\n4,1843200,5973.002031,3.240560997721354,245.18225877739982,12.316767146393685,24.35704080740368,50.235148366\r\n"
  },
  {
    "path": "results/sdm630/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1358.695981040597, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1241.753625927, 1245.45182643, 1239.491866463, 1239.491866463, 1249.37225739, 1231.6474642399999, 1235.571673647, 1237.6069476750001, 1237.531770055, 1235.571673647, 1239.491866463, 1239.5671631550001, 1235.571673647, 1235.571673647, 1237.4565924350002, 1235.496615099, 1241.376547107, 1235.496615099, 1237.381414815, 1237.4565924350002, 1231.3478769600001, 1241.3011313430002, 1237.23075147, 1235.421556551, 1239.341273079, 1235.19607329, 1237.15557385, 1241.149990734, 1235.2711318380002], \"power_mean\": 1237.9921753432413, \"energy_millijoules\": 6189.960876716206, \"energy_joules\": 6.189960876716206}, \"cpus\": {\"1\": {\"freqs\": {\"787200\": {\"active\": {\"elapsed_sec\": 117.371533757, \"elapsed_ns\": 117371533757, \"power_samples\": [28.95039967599996, 63.83699657699981, 57.95805559199994, 57.95805559199994, 65.72044781, 63.83699657699981, 63.83699657699981, 63.679170359999716, 65.79931885799988, 65.79931885799988, 67.36235388, 67.59932423999999, 67.59932423999999, 63.75824484499981, 63.679170359999716, 63.679170359999716, 63.679170359999716, 67.59932423999999, 67.59932423999999, 61.72109963999992, 61.48520166000003, 61.48520166000003, 61.40656899999976, 63.36416343199994, 55.60804943999983, 55.60804943999983, 65.32576932799998, 67.28336375999993, 67.28336375999993, 57.408974399999806, 57.487368672, 57.487368672, 55.529774239999824, 65.32576932799998, 65.32576932799998, 63.28541169999971, 65.08883294199995, 65.08883294199995, 63.04883375099985, 61.17034875499985, 61.17034875499985, 66.96707955000011, 63.12758548299985, 63.12758548299985, 57.173470296000005, 61.01308343499977, 57.01668175199984, 57.01668175199984, 61.09171609500004, 57.095076024000036, 57.095076024000036, 64.93109084599996, 66.80909930999997, 66.80909930999997, 64.93109084599996, 625.2954946299999, 625.2954946299999, 62.97008201899985, 62.891330286999846, 62.891330286999846, 60.77718545499965, 62.655075090999844, 62.655075090999844, 60.69855279499984, 60.69855279499984, 60.69855279499984, 64.61560665399998, 62.49724887399975, 62.49724887399975, 62.49724887399975, 64.61560665399998, 62.733826822999845, 62.733826822999845, 66.57212894999998, 56.624389103999874, 56.624389103999874, 66.25584473999993, 60.38369988999966, 60.38369988999966, 64.45754131600006, 62.49724887399975, 62.49724887399975, 62.26099367799975, 64.29979921999984, 64.29979921999984, 70.16793577999988, 60.38369988999966, 60.38369988999966, 66.17685461999986, 64.14205712399985, 60.30506722999985, 60.30506722999985, 64.22092817199996, 60.38369988999966, 60.38369988999966, 56.38920628799974, 64.14205712399985, 64.14205712399985, 62.103490213999976, 62.103490213999976, 62.103490213999976, 66.01887437999994, 60.14780190999977, 60.14780190999977, 71.88994684999989, 61.945663996999656, 61.945663996999656, 61.945663996999656, 64.06318607599997, 64.06318607599997, 66.01887437999994, 64.06318607599997, 62.103490213999976, 62.103490213999976, 56.07530791199997, 59.99021432499967, 59.99021432499967], \"power_mean\": 71.87476268288022, \"energy_millijoules\": 8436.051134510039, \"energy_joules\": 8.436051134510038, \"coremark_score\": 2556.150097, \"coremarks_per_mhz\": 3.247141891514228, \"ulpmark_cm_score\": 35.56166211140727}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1241.07457497, 1241.07457497, 1240.9237434420002, 1236.85486337], \"power_mean\": 1239.981939188, \"energy_millijoules\": 6199.90969594, \"energy_joules\": 6.199909695940001}}, \"1113600\": {\"active\": {\"elapsed_sec\": 83.382217208, \"elapsed_ns\": 83382217208, \"power_samples\": [34.70782372599979, 92.84960357399973, 90.72933575999991, 90.72933575999991, 92.60729869599982, 94.64257247999967, 94.64257247999967, 88.77472007999995, 92.68795679999971, 92.68795679999971, 92.60729869599982, 90.6487969719999, 90.6487969719999, 88.45304121599997, 92.4459824879998, 92.4459824879998, 94.40024095199988, 92.3653243839999, 92.3653243839999, 84.54476243199974, 84.46458085999984, 84.46458085999984, 92.28466627999978, 88.3726214999997, 88.3726214999997, 88.3726214999997, 92.20400817599966, 90.24610303200006, 90.24610303200006, 90.08469537899987, 88.3726214999997, 88.3726214999997, 90.24610303200006, 93.91524684199976, 93.91524684199976, 97.90735265700005, 91.96170329799975, 91.96170329799975, 93.91524684199976, 82.1059169959999, 82.1059169959999, 91.88104519399963, 87.72893418299986, 87.72893418299986, 91.63907088199971, 91.88104519399963, 90.00415659099986, 90.00415659099986, 90.00415659099986, 91.63907088199971, 91.63907088199971, 91.55808221199982, 91.88104519399963, 91.88104519399963, 89.92361780299984, 93.59213813799988, 93.59213813799988, 87.64818487799994, 97.42092724199983, 97.42092724199983, 83.74228948599989, 89.52059378599984, 89.52059378599984, 91.4774241079997, 87.56776516199989, 87.56776516199989, 87.56776516199989, 87.32650601399973, 89.52059378599984, 89.52059378599984, 91.3967660039998, 89.44005499799982, 89.44005499799982, 91.23544979599978, 652.116802608, 652.116802608, 91.15479169199989, 89.2789774219998, 89.2789774219998, 91.23544979599978, 87.32650601399973, 87.32650601399973, 93.02636685199968], \"power_mean\": 103.33313437033716, \"energy_millijoules\": 8616.145854850904, \"energy_joules\": 8.616145854850904, \"coremark_score\": 3598.2009, \"coremarks_per_mhz\": 3.2311430495689657, \"ulpmark_cm_score\": 34.81835208617082}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1242.726726668, 1242.726726668, 1242.726726668, 1238.735449962], \"power_mean\": 1241.7289074915002, \"energy_millijoules\": 6208.644537457501, \"energy_joules\": 6.208644537457501}}, \"1344000\": {\"active\": {\"elapsed_sec\": 68.740089922, \"elapsed_ns\": 68740089922, \"power_samples\": [118.17408552999973, 119.87862560999997, 119.87862560999997, 119.87862560999997, 109.95300031600004, 109.95300031600004, 119.87862560999997, 117.9271072659999, 117.9271072659999, 117.9271072659999, 127.52251477200002, 127.52251477200002, 115.72463268000001, 121.58211287999984, 121.58211287999984, 119.63095223999994, 125.40562982000006, 119.54850707999981, 119.54850707999981, 121.58211287999984, 119.54850707999981, 119.54850707999981, 117.59746551199987, 117.51513942399993, 117.51513942399993, 117.35048724799981, 119.30117159999986, 119.30117159999986, 125.15722195999979, 119.30117159999986, 119.30117159999986, 119.21872643999973, 117.51513942399993, 117.51513942399993, 117.26816115999986, 119.21872643999973, 119.21872643999973, 119.13594338999974, 119.13594338999974, 120.83869641399974, 120.83869641399974, 120.83869641399974, 116.93851940599984, 116.93851940599984, 116.93851940599984, 118.80616274999988, 118.80616274999988, 118.80616274999988, 116.85619331799967, 116.85619331799967, 118.80616274999988, 120.67356794999978, 120.67356794999978, 120.67356794999978, 120.75613218199987, 120.75613218199987, 116.69154114199978, 114.73781450299998, 114.73781450299998, 120.67356794999978, 116.52655156399965, 124.32851705000007, 124.32851705000007, 116.69154114199978, 124.494461645, 124.494461645, 120.3429726439997, 118.47604421999995], \"power_mean\": 119.30903861894105, \"energy_millijoules\": 8201.314043173377, \"energy_joules\": 8.201314043173378, \"coremark_score\": 4364.588638, \"coremarks_per_mhz\": 3.2474617842261906, \"ulpmark_cm_score\": 36.579504018592544}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1235.046892891, 1235.046892891, 1244.8162313579999, 1236.9999601470001], \"power_mean\": 1237.9774943217499, \"energy_millijoules\": 6189.887471608749, \"energy_joules\": 6.189887471608749}}, \"1516800\": {\"active\": {\"elapsed_sec\": 61.161846122, \"elapsed_ns\": 61161846122, \"power_samples\": [145.53258141999981, 145.53258141999981, 153.16393795799968, 147.48171686, 147.48171686, 157.06572619199983, 149.00875015799988, 149.00875015799988, 154.85836184299978, 152.90982225099992, 152.90982225099992, 152.7406428989998, 154.68894434699973, 154.68894434699973, 144.9434446859998, 152.7406428989998, 152.7406428989998, 152.65605322299984, 148.7556962939998, 148.7556962939998, 152.5714635469999, 152.65605322299984, 152.48687387099972, 152.48687387099972, 152.5714635469999, 154.43481810299977, 154.43481810299977, 148.5869937179998, 152.48687387099972, 152.48687387099972, 152.31734783999968, 148.33359415199993, 148.33359415199993, 152.14816848799978, 148.24924286399983, 148.24924286399983, 152.14816848799978, 151.89439945999993, 151.89439945999993, 151.80946310499985, 157.99456156799988, 157.99456156799988, 147.99618899999996, 147.91149200999985, 147.91149200999985, 153.67174503699994, 151.80946310499985, 151.7248734289999, 151.7248734289999, 147.91149200999985, 711.0738936299999, 711.0738936299999, 151.7248734289999, 151.80946310499985, 151.80946310499985, 147.82714072199997, 153.67174503699994, 153.67174503699994, 153.75645378499985, 151.7248734289999, 151.7248734289999], \"power_mean\": 169.75023546493426, \"energy_millijoules\": 10382.237780679576, \"energy_joules\": 10.382237780679576, \"coremark_score\": 4905.487605, \"coremarks_per_mhz\": 3.2341031151107598, \"ulpmark_cm_score\": 28.895504643350918}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1243.525129224, 1243.525129224, 1243.525129224, 1243.297452336], \"power_mean\": 1243.468210002, \"energy_millijoules\": 6217.34105001, \"energy_joules\": 6.21734105001}}, \"1670400\": {\"active\": {\"elapsed_sec\": 55.31431826, \"elapsed_ns\": 55314318260, \"power_samples\": [16.27969311899983, 162.987559079, 165.01925899499975, 165.01925899499975, 166.96565431499994, 164.93383532699977, 164.93383532699977, 180.4252911179999, 170.69051965199992, 170.69051965199992, 162.90190487399968, 166.62313276999976, 166.62313276999976, 166.79421824999986, 160.7813896, 170.5189573959999, 170.5189573959999, 164.67721422599993, 162.73129568199988, 162.73129568199988, 162.47538189399984, 164.42094322199978, 164.42094322199978, 166.36650454999995, 166.36650454999995, 166.36650454999995, 166.36650454999995, 173.98034558599988, 173.98034558599988, 175.8435160109998, 164.2497457889997, 164.2497457889997, 172.03502288999994, 166.36650454999995, 166.36650454999995, 164.2497457889997, 166.19506848499987, 166.19506848499987, 166.023983005, 170.00391906599998, 164.07889845299997, 164.07889845299997, 170.00391906599998, 170.00391906599998, 170.00391906599998, 165.76735478499995, 164.07889845299997, 164.07889845299997, 163.8226274489998, 173.46422995400007, 173.46422995400007, 165.76735478499995, 165.76735478499995, 165.76735478499995, 165.68181204500002], \"power_mean\": 164.27635265265442, \"energy_millijoules\": 9086.834453220921, \"energy_joules\": 9.086834453220922, \"coremark_score\": 5423.973965, \"coremarks_per_mhz\": 3.2471108506944444, \"ulpmark_cm_score\": 33.014797567227816}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1247.7800695910003, 1238.1090328739997, 1238.1090328739997, 1241.9304579060001], \"power_mean\": 1241.48214831125, \"energy_millijoules\": 6207.41074155625, \"energy_joules\": 6.2074107415562505}}, \"1881600\": {\"active\": {\"elapsed_sec\": 49.205865241, \"elapsed_ns\": 49205865241, \"power_samples\": [211.8495289919997, 207.95775891599988, 207.95775891599988, 213.7934223359996, 207.86959512799967, 207.86959512799967, 213.52749579999977, 207.86959512799967, 207.86959512799967, 207.86959512799967, 213.52749579999977, 213.52749579999977, 217.24103046300002, 207.6047424369999, 201.6866861609999, 201.6866861609999, 207.51657864899994, 203.54205801299963, 203.54205801299963, 211.3187536319997, 213.08488955999974, 213.08488955999974, 203.36620672499976, 211.05318479999983, 211.05318479999983, 203.27792072999978, 212.9960055199997, 212.9960055199997, 210.87638044799996, 210.69957609599987, 210.69957609599987, 211.05318479999983, 212.9960055199997, 212.9960055199997, 212.8189630239999, 210.69957609599987, 210.69957609599987, 210.522771744, 216.44182996999984, 206.6345794419999, 206.6345794419999, 206.5464156539997, 212.37635678399965, 212.37635678399965, 202.66244122199987, 206.5464156539997, 206.5464156539997, 212.37635678399965, 210.25720291199968], \"power_mean\": 209.59184446297937, \"energy_millijoules\": 10313.148054257994, \"energy_joules\": 10.313148054257994, \"coremark_score\": 6097.437044, \"coremarks_per_mhz\": 3.240559653486395, \"ulpmark_cm_score\": 29.08908108578339}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1242.742193181, 1242.742193181, 1246.4831987410003, 1248.4337018919998], \"power_mean\": 1245.10032174875, \"energy_millijoules\": 6225.501608743751, \"energy_joules\": 6.225501608743751}}, \"2016000\": {\"active\": {\"elapsed_sec\": 45.827197378, \"elapsed_ns\": 45827197378, \"power_samples\": [235.42589938799983, 235.42589938799983, 237.3675288999998, 800.2757870600001, 800.2757870600001, 236.82673879999993, 229.41784484699997, 229.41784484699997, 231.0897304399998, 236.9168089599998, 236.9168089599998, 231.359236215, 234.8858242079998, 234.8858242079998, 238.76765339199983, 230.9103050399999, 230.9103050399999, 236.55652831999987, 236.55652831999987, 236.55652831999987, 238.40689646399983, 236.55652831999987, 234.7958731199999, 234.7958731199999, 238.49708569599989, 234.34574902799977, 234.34574902799977, 230.55145423999988, 236.28594869999984, 236.28594869999984, 236.28594869999984, 236.10580837999987, 236.10580837999987, 234.34574902799977, 236.10580837999987, 236.10580837999987, 236.10580837999987, 235.8355978999998, 235.8355978999998, 235.8355978999998, 239.8954231319999, 239.8954231319999, 236.01573821999978, 235.8355978999998, 236.01573821999978], \"power_mean\": 260.4875104902443, \"energy_millijoules\": 11937.41255774027, \"energy_joules\": 11.93741255774027, \"coremark_score\": 6546.930581, \"coremarks_per_mhz\": 3.2474854072420634, \"ulpmark_cm_score\": 25.13107413762614}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1251.0234661119998, 1245.338827403, 1245.2625776470002, 1245.2625776470002], \"power_mean\": 1246.7218622022501, \"energy_millijoules\": 6233.609311011251, \"energy_joules\": 6.233609311011251}}, \"2150400\": {\"active\": {\"elapsed_sec\": 43.058565869, \"elapsed_ns\": 43058565869, \"power_samples\": [18.602460199999996, 285.92007940999974, 287.49003234400016, 287.49003234400016, 287.5833193999997, 285.5474084499999, 287.39636296399976, 287.39636296399976, 287.39636296399976, 285.3606911349998, 285.3606911349998, 287.303075908, 290.89932554000006, 290.89932554000006, 290.8058003399999, 292.7437366679999, 292.7437366679999, 286.83664062799994, 294.4039691359999, 294.4039691359999, 286.83664062799994, 286.64968419199977, 286.64968419199977, 284.7081351199997, 290.5248414399998, 290.5248414399998, 290.4313162399999, 282.677507828, 282.677507828, 286.556397136, 284.5217996399997, 292.27513152000006, 292.27513152000006, 292.18148724799994, 284.4286318999998, 284.4286318999998, 286.089579532, 290.05721543999994, 290.05721543999994, 284.24229642, 286.089579532, 286.089579532], \"power_mean\": 281.60848139385706, \"energy_millijoules\": 12125.657345366455, \"energy_joules\": 12.125657345366456, \"coremark_score\": 6968.155529, \"coremarks_per_mhz\": 3.24039970656622, \"ulpmark_cm_score\": 24.74092673537721}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1247.854540152, 1244.11789381, 1244.11789381, 1249.7971227280002], \"power_mean\": 1246.471862625, \"energy_millijoules\": 6232.359313125, \"energy_joules\": 6.232359313125}}, \"2208000\": {\"active\": {\"elapsed_sec\": 41.844068161, \"elapsed_ns\": 41844068161, \"power_samples\": [11.244396732000041, 293.6534761549997, 286.089579532, 286.089579532, 295.5901017149997, 291.5255935560001, 291.5255935560001, 295.30845373499983, 299.2751112269998, 299.2751112269998, 291.431949284, 299.2751112269998, 299.2751112269998, 295.21457107499987, 293.2784218029999, 293.2784218029999, 298.9927488149999, 295.21457107499987, 295.21457107499987, 293.1846582149999, 292.99674676199993, 294.83865566999975, 294.83865566999975, 291.0569884079998, 298.71000066199986, 298.71000066199986, 292.8092195859997, 292.8092195859997, 292.8092195859997, 294.83865566999975, 290.7760555919999, 290.7760555919999, 288.93414643999995, 298.52175905399986, 298.52175905399986, 294.3688576049997, 300.1780528699999, 300.1780528699999, 294.2749749449997, 294.3688576049997, 294.3688576049997], \"power_mean\": 287.64931522097544, \"energy_millijoules\": 12036.417552571473, \"energy_joules\": 12.036417552571473, \"coremark_score\": 7170.172084, \"coremarks_per_mhz\": 3.247360545289855, \"ulpmark_cm_score\": 24.924359651839072}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1244.6130573760001, 1244.6130573760001, 1254.242856132, 1246.477126608], \"power_mean\": 1247.486524373, \"energy_millijoules\": 6237.432621865, \"energy_joules\": 6.2374326218650005}}}}, \"4\": {\"freqs\": {\"614400\": {\"active\": {\"elapsed_sec\": 150.871428745, \"elapsed_ns\": 150871428745, \"power_samples\": [54.55850865000002, 60.45706623499973, 60.45706623499973, 48.73929864499996, 44.62331844000005, 44.62331844000005, 50.756462992999786, 48.817931304999775, 48.50340066500007, 48.50340066500007, 48.817931304999775, 52.69896708200008, 52.69896708200008, 48.817931304999775, 48.817931304999775, 48.817931304999775, 41.13830859199993, 48.50340066500007, 48.50340066500007, 48.73929864499996, 40.98167602400008, 40.98167602400008, 50.67771126100001, 42.9200886399999, 42.9200886399999, 52.62009603399997, 44.858501255999954, 44.858501255999954, 50.44145606500001, 48.73929864499996, 52.383482890000096, 52.383482890000096, 44.54492416799985, 48.346135344999766, 48.346135344999766, 42.606987839999874, 48.424768004999805, 48.424768004999805, 50.36270433299978, 50.44145606500001, 50.44145606500001, 44.62331844000005, 42.52871263999987, 42.52871263999987, 50.44145606500001, 52.304611841999986, 52.304611841999986, 44.30942006399982, 50.28395260099978, 50.28395260099978, 50.28395260099978, 44.30942006399982, 44.30942006399982, 44.30942006399982, 48.346135344999766, 48.346135344999766, 48.346135344999766, 54.005254079999986, 48.346135344999766, 48.346135344999766, 50.28395260099978, 48.18854775999989, 48.18854775999989, 50.12612638399969, 52.06767545599996, 52.06767545599996, 42.29356624000002, 49.88987118799969, 49.88987118799969, 51.90993335999997, 51.90993335999997, 51.90993335999997, 51.90993335999997, 49.968622919999916, 44.152631519999886, 44.152631519999886, 51.67332021600009, 51.67332021600009, 51.67332021600009, 43.91744870399998, 49.65329323899982, 49.65329323899982, 47.71642953499986, 49.732367723999914, 49.732367723999914, 49.49578977499982, 49.65329323899982, 49.65329323899982, 47.71642953499986, 47.55916421499978, 47.55916421499978, 49.49578977499982, 43.68194459999995, 43.68194459999995, 49.65329323899982, 51.43638382999984, 43.525156056000014, 43.525156056000014, 49.49578977499982, 43.446761784000046, 43.446761784000046, 51.199770685999965, 47.32326623499989, 47.32326623499989, 49.25953457899982, 43.36836751199985, 43.36836751199985, 43.36836751199985, 41.51049344000012, 41.51049344000012, 51.120899637999855, 47.16600091499981, 47.16600091499981, 47.16600091499981, 50.88396325200006, 50.88396325200006, 47.00841332999971, 48.94420489799995, 52.81975482000007, 52.81975482000007, 52.81975482000007, 49.10203111499982, 49.10203111499982, 43.05446913599985, 43.28997323999988, 43.28997323999988, 52.74076469999977, 46.9297806699999, 46.9297806699999, 41.11879664000003, 48.786701433999724, 48.786701433999724, 43.05446913599985, 42.976074863999656, 42.976074863999656, 50.72622115599984, 46.77251534999982, 46.77251534999982, 596.8139593200001, 48.70794970199995, 46.53629510499968, 46.53629510499968, 46.53629510499968, 48.47137175299986, 48.47137175299986, 50.33154267400005, 48.39262002099986, 48.39262002099986, 42.662176487999886, 48.47137175299986], \"power_mean\": 51.693201593039895, \"energy_millijoules\": 7799.027180745239, \"energy_joules\": 7.799027180745239, \"coremark_score\": 1988.572338, \"coremarks_per_mhz\": 3.236608623046875, \"ulpmark_cm_score\": 38.46633599901538}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1237.7986346940002, 1237.7986346940002, 1235.931545148, 1243.619633464], \"power_mean\": 1238.787112, \"energy_millijoules\": 6193.93556, \"energy_joules\": 6.19393556}}, \"883200\": {\"active\": {\"elapsed_sec\": 104.658615741, \"elapsed_ns\": 104658615741, \"power_samples\": [65.73930932400003, 65.73930932400003, 67.67414782800006, 69.36879956400003, 69.36879956400003, 65.4998369880002, 65.4998369880002, 65.4998369880002, 71.30724495299978, 65.42001287599987, 65.42001287599987, 67.35437509199983, 65.42001287599987, 65.42001287599987, 65.10038927999994, 68.96816016000002, 68.96816016000002, 65.10038927999994, 65.10038927999994, 69.04822241599982, 69.04822241599982, 65.18021339199981, 70.98619005199976, 70.98619005199976, 67.03427471999998, 65.10038927999994, 65.10038927999994, 70.82582690799995, 74.45177090699985, 74.45177090699985, 70.50477200699993, 61.14906979599982, 61.14906979599982, 66.71417434799991, 66.71417434799991, 66.71417434799991, 68.56752075600002, 60.75081500499982, 60.75081500499982, 64.62111746000005, 68.48745849999978, 70.50477200699993, 70.50477200699993, 60.83040072899985, 68.56752075600002, 68.56752075600002, 66.55428798000003, 64.38164512399999, 64.38164512399999, 70.34440886299967, 64.62111746000005, 64.62111746000005, 64.54129334799973, 66.31445842800008, 66.31445842800008, 64.54129334799973, 66.23451524400002, 66.23451524400002, 68.086819096, 66.31445842800008, 66.31445842800008, 73.96925261099977, 66.15424442400013, 66.15424442400013, 66.15424442400013, 68.086819096, 70.02335396199987, 70.02335396199987, 67.84663232799994, 64.22166975200003, 64.22166975200003, 64.14184563999993, 63.822549192, 63.822549192, 68.086819096, 65.91441487199995, 65.91441487199995, 63.98219741599996, 65.75452850399984, 65.75452850399984, 69.62244610199991, 65.75452850399984, 65.75452850399984, 67.68650781600013, 63.822549192, 69.62244610199991, 69.62244610199991, 67.44599292399994, 65.67458532, 65.67458532, 63.7427250799999, 69.38157277299979, 69.38157277299979, 65.67458532, 65.43442813199977, 65.43442813199977, 63.58274970799994, 67.28586841200013, 67.28586841200013, 65.51437131600005, 63.50292559599984, 63.50292559599984, 69.22120962899976, 67.36593066800015], \"power_mean\": 66.69348313163457, \"energy_millijoules\": 6980.047623502608, \"energy_joules\": 6.980047623502608, \"coremark_score\": 2866.698519, \"coremarks_per_mhz\": 3.245809011548913, \"ulpmark_cm_score\": 42.97964944964933}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1235.593051854, 1235.6690634660001, 1235.6690634660001, 1235.6690634660001], \"power_mean\": 1235.6500605630001, \"energy_millijoules\": 6178.250302815, \"energy_joules\": 6.178250302815}}, \"1094400\": {\"active\": {\"elapsed_sec\": 84.646502207, \"elapsed_ns\": 84646502207, \"power_samples\": [88.29884143499999, 88.29884143499999, 82.42441509599985, 86.2049747640001, 86.2049747640001, 88.13576237999996, 82.42441509599985, 82.42441509599985, 87.89164404000007, 85.96121363999987, 640.3855976789998, 640.3855976789998, 83.86851396799989, 83.94964860399978, 83.94964860399978, 81.93832171200006, 81.93832171200006, 81.93832171200006, 83.787379332, 83.86851396799989, 83.86851396799989, 83.787379332, 83.54364290499984, 83.54364290499984, 83.787379332, 81.8573061479999, 81.8573061479999, 81.8573061479999, 85.71745251599987, 85.71745251599987, 87.4030738649999, 83.54364290499984, 77.83131930599984, 77.83131930599984, 81.69494298900008, 85.47335838499976, 85.47335838499976, 87.4030738649999, 91.26645915999984, 91.26645915999984, 77.66976495399967, 85.31085096899983, 85.31085096899983, 87.32170108499986, 83.38137363300007, 83.38137363300007, 83.38137363300007, 87.24032830499982, 87.24032830499982, 85.1483435529999, 83.21910436099984, 83.21910436099984, 90.69484651199991, 85.1483435529999, 84.90424942200002, 84.90424942200002, 77.26554801999987, 80.88445531799994, 80.88445531799994, 84.74174200599987, 84.90424942200002, 84.90424942200002, 86.83313090999991, 86.91450368999972, 86.91450368999972, 84.74174200599987, 84.66048829799979, 84.66048829799979, 82.73196402599979, 86.67038534999983, 86.67038534999983, 80.72242418999986, 84.66048829799979, 84.66048829799979, 90.5316241759997, 80.80343975399978, 84.74174200599987, 84.74174200599987, 86.50763978999976, 84.66048829799979, 84.66048829799979, 90.28645619999975, 76.86166213999991, 76.86166213999991], \"power_mean\": 97.63764970652369, \"energy_millijoules\": 8264.68553136955, \"energy_joules\": 8.264685531369551, \"coremark_score\": 3544.549074, \"coremarks_per_mhz\": 3.2388058059210523, \"ulpmark_cm_score\": 36.29902176692821}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1240.9668454799998, 1237.09916627, 1233.3114574020003, 1233.3114574020003], \"power_mean\": 1236.1722316385, \"energy_millijoules\": 6180.861158192501, \"energy_joules\": 6.180861158192501}}, \"1382400\": {\"active\": {\"elapsed_sec\": 66.96248211, \"elapsed_ns\": 66962482110, \"power_samples\": [9.864528115999747, 124.34496601199999, 128.20358061599995, 128.20358061599995, 120.48635140800002, 124.26121032800006, 124.26121032800006, 120.40283411199994, 118.39222238399998, 118.39222238399998, 127.78361025599975, 124.17745464400014, 124.17745464400014, 122.0830869880001, 121.99945037599991, 121.99945037599991, 123.9261875919999, 122.0830869880001, 122.0830869880001, 123.9261875919999, 121.99945037599991, 121.99945037599991, 123.84208864699985, 121.91547099099989, 123.84208864699985, 123.84208864699985, 121.91547099099989, 123.84208864699985, 123.84208864699985, 127.44728972999997, 123.75833296299993, 123.75833296299993, 129.54177645799996, 117.9748894679999, 117.9748894679999, 123.59082159500008, 127.19530751399998, 127.19530751399998, 127.19530751399998, 121.49728793100007, 121.49728793100007, 131.13134617799983, 121.41365131900011, 121.41365131900011, 121.2460353219999, 121.2460353219999, 121.41365131900011, 121.41365131900011, 123.08794422999995, 123.08794422999995, 123.08794422999995, 123.00418854600002, 126.94298105999974, 126.94298105999974, 123.00418854600002, 121.07876209799974, 121.07876209799974, 128.95263972399994, 121.16239870999993, 121.16239870999993, 130.62560766799993, 123.00418854600002, 123.00418854600002, 677.9610117589998, 126.60700477199998, 126.60700477199998], \"power_mean\": 130.24847032074237, \"energy_millijoules\": 8721.760863707577, \"energy_joules\": 8.721760863707578, \"coremark_score\": 4480.755157, \"coremarks_per_mhz\": 3.2412870059317123, \"ulpmark_cm_score\": 34.39672385978162}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1237.506664836, 1237.506664836, 1237.506664836, 1237.506664836], \"power_mean\": 1237.506664836, \"energy_millijoules\": 6187.53332418, \"energy_joules\": 6.18753332418}}, \"1536000\": {\"active\": {\"elapsed_sec\": 60.165430133, \"elapsed_ns\": 60165430133, \"power_samples\": [2.470674807999785, 155.32690868999975, 145.3541259199999, 145.3541259199999, 156.99403869000002, 151.13113220499986, 151.13113220499986, 147.28242358099988, 147.11181438899985, 150.96004672499976, 150.96004672499976, 147.11181438899985, 145.0130356799998, 145.0130356799998, 148.8647331239997, 147.19711898499963, 147.19711898499963, 146.94085558799975, 146.94085558799975, 146.94085558799975, 150.78861065999968, 148.8647331239997, 148.8647331239997, 150.70306791999997, 148.77930945599974, 148.77930945599974, 158.4020439039998, 148.77930945599974, 148.77930945599974, 150.6175251799998, 150.70306791999997, 148.69388578799976, 148.69388578799976, 150.6175251799998, 148.77930945599974, 148.77930945599974, 154.46874584800003, 150.6175251799998, 150.6175251799998, 150.53198243999987, 150.53198243999987, 150.53198243999987, 148.35184101899972, 148.35184101899972, 148.35184101899972, 148.18099368299977, 148.18099368299977, 148.18099368299977, 149.93283267499987, 148.18099368299977, 148.18099368299977, 153.78214526200009, 149.93283267499987, 153.78214526200009, 153.78214526200009, 150.10391815499975, 146.00215542299975, 146.00215542299975, 149.8472899349997, 148.0101463469996], \"power_mean\": 146.9893138367998, \"energy_millijoules\": 8843.675291945588, \"energy_joules\": 8.843675291945589, \"coremark_score\": 4987.116615, \"coremarks_per_mhz\": 3.246820712890625, \"ulpmark_cm_score\": 33.92254804665049}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1239.679318864, 1235.749237216, 1235.749237216, 1235.749237216], \"power_mean\": 1236.731757628, \"energy_millijoules\": 6183.65878814, \"energy_joules\": 6.18365878814}}, \"1728000\": {\"active\": {\"elapsed_sec\": 53.48499399, \"elapsed_ns\": 53484993990, \"power_samples\": [195.6625108799999, 195.6625108799999, 187.88228460599976, 195.57410870399963, 195.57410870399963, 195.39730435199976, 187.4422960349998, 187.4422960349998, 191.28504715500003, 191.28504715500003, 191.28504715500003, 191.19688336700005, 191.10871957899985, 191.10871957899985, 196.96458983199977, 194.9549311679998, 194.9549311679998, 206.48962917799986, 204.38655944499988, 204.38655944499988, 190.8442282149997, 200.36687785999993, 200.36687785999993, 194.6897246399999, 196.69902608799975, 190.93239200299968, 190.93239200299968, 194.6897246399999, 187.002667815, 187.002667815, 194.7781268159997, 187.002667815, 187.002667815, 186.82645617599974, 194.51255798399984, 194.51255798399984, 194.33575363199952, 190.66753931199992, 190.66753931199992, 196.2560570559997, 194.33575363199952, 194.33575363199952, 194.24735145599993, 190.49121173599974, 190.49121173599974, 190.403047948, 186.5626792439998, 196.1675358079999, 196.1675358079999, 186.5626792439998, 194.24735145599993, 194.24735145599993, 194.07054710399984], \"power_mean\": 193.2540112740187, \"energy_millijoules\": 10336.189631534282, \"energy_joules\": 10.336189631534282, \"coremark_score\": 5609.993268, \"coremarks_per_mhz\": 3.2465238819444444, \"ulpmark_cm_score\": 29.02423530279878}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1236.4512237, 1236.4512237, 1236.4512237, 1234.2972858839998], \"power_mean\": 1235.912739246, \"energy_millijoules\": 6179.56369623, \"energy_joules\": 6.17956369623}}, \"1843200\": {\"active\": {\"elapsed_sec\": 50.235148366, \"elapsed_ns\": 50235148366, \"power_samples\": [222.6145401639999, 777.2445022699999, 777.2445022699999, 224.44382036399975, 222.43416169999978, 222.43416169999978, 218.59546097999964, 220.24423172000002, 220.24423172000002, 224.0822170319998, 228.01505249099978, 228.01505249099978, 214.4833213899999, 224.0822170319998, 224.0822170319998, 224.0822170319998, 220.24423172000002, 220.24423172000002, 227.9241347059999, 222.1632243759998, 222.1632243759998, 222.1632243759998, 221.9828459119999, 220.0640913999996, 220.0640913999996, 223.6306755119997, 223.6306755119997, 223.6306755119997, 221.6220889839999, 223.5403672079999, 223.5403672079999, 221.53189975199984, 223.45005890399966, 223.45005890399966, 221.6220889839999, 221.53189975199984, 221.53189975199984, 223.45005890399966, 223.26907217999974, 223.26907217999974, 229.02676390499983, 229.02676390499983, 229.02676390499983, 223.17876387599995, 227.0182966929999, 221.26096242799963, 221.26096242799963, 221.08058396399997, 223.08845557199993, 223.08845557199993], \"power_mean\": 245.18225877739982, \"energy_millijoules\": 12316.767146393686, \"energy_joules\": 12.316767146393685, \"coremark_score\": 5973.002031, \"coremarks_per_mhz\": 3.240560997721354, \"ulpmark_cm_score\": 24.35704080740368}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1234.920833868, 1233.074754756, 1231.1482478130001, 1231.1482478130001], \"power_mean\": 1232.5730210625002, \"energy_millijoules\": 6162.865105312501, \"energy_joules\": 6.162865105312501}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sdm630/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 1231 mW\n\n\n===== CPU 1 =====\nFrequencies: 787 1113 1344 1516 1670 1881 2016 2150 2208\n\n 787:  2556     3.2 C/MHz     72 mW    8.4 J   35.6 I/mJ   117.4 s\n1113:  3598     3.2 C/MHz    103 mW    8.6 J   34.8 I/mJ    83.4 s\n1344:  4365     3.2 C/MHz    119 mW    8.2 J   36.6 I/mJ    68.7 s\n1516:  4905     3.2 C/MHz    170 mW   10.4 J   28.9 I/mJ    61.2 s\n1670:  5424     3.2 C/MHz    164 mW    9.1 J   33.0 I/mJ    55.3 s\n1881:  6097     3.2 C/MHz    210 mW   10.3 J   29.1 I/mJ    49.2 s\n2016:  6547     3.2 C/MHz    260 mW   11.9 J   25.1 I/mJ    45.8 s\n2150:  6968     3.2 C/MHz    282 mW   12.1 J   24.7 I/mJ    43.1 s\n2208:  7170     3.2 C/MHz    288 mW   12.0 J   24.9 I/mJ    41.8 s\n\n\n===== CPU 4 =====\nFrequencies: 614 883 1094 1382 1536 1728 1843\n\n 614:  1989     3.2 C/MHz     52 mW    7.8 J   38.5 I/mJ   150.9 s\n 883:  2867     3.2 C/MHz     67 mW    7.0 J   43.0 I/mJ   104.7 s\n1094:  3545     3.2 C/MHz     98 mW    8.3 J   36.3 I/mJ    84.6 s\n1382:  4481     3.2 C/MHz    130 mW    8.7 J   34.4 I/mJ    67.0 s\n1536:  4987     3.2 C/MHz    147 mW    8.8 J   33.9 I/mJ    60.2 s\n1728:  5610     3.2 C/MHz    193 mW   10.3 J   29.0 I/mJ    53.5 s\n1843:  5973     3.2 C/MHz    245 mW   12.3 J   24.4 I/mJ    50.2 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sdm630/main/uptime.txt",
    "content": " 05:06:10 up 22 min,  load average: 6.90, 6.82, 5.31\n"
  },
  {
    "path": "results/sdm630/main/versions.txt",
    "content": "Kernel: Linux version 4.4.288-xtremedev-EMP++ (rote66@penguin) (gcc version 5.5.0 (Linaro GCC 5.5-2017.10) ) #1 SMP PREEMPT Fri Oct 22 10:01:13 CST 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sdm630/second/cmdline.txt",
    "content": "isolcpus=1-7 nohz_full=1-7 loglevel=0 rcupdate.rcu_expedited=1 androidboot.hardware=qcom user_debug=31 msm_rtb.filter=0x37 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 sched_enable_hmp=1 sched_enable_power_aware=1 service_locator.enable=1 swiotlb=1 loop.max_part=7 panic_on_err=1 loop.max_part=7 panic_on_err=1 buildvariant=user rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=c351ca12-1a0f-43aa-911e-99daf8ba5dcd androidboot.bootdevice=c0c4000.sdhci androidboot.baseband=msm lcdid_adc=1515312 mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_td4320_tianma_fhdplus_video:config0:1:none:cfg:single_dsi androidboot.slot_suffix=_b skip_initramfs rootwait ro init=/init  androidboot.bootloader=xboot oemandroidboot.xboot=1310-0301_X_Boot_SDM630_LA3.0.1_P_410 androidboot.serialno=REDACTED startup=0x00008000 warmboot=0x77665501 oemandroidboot.babe09a9=00 oemandroidboot.babe08b3=50000000 oemandroidboot.babe137e=64 oemandroidboot.imei=35727110001047 oemandroidboot.security=0 oemandroidboot.securityflags=0x00000003\n"
  },
  {
    "path": "results/sdm630/second/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 4 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nHardware\t: Qualcomm Technologies, Inc SDM630\n"
  },
  {
    "path": "results/sdm630/second/device.txt",
    "content": "Model: Sony Mobile Communications. mermaid(sdm630);\nCompatible: somc,mermaid-row;qcom,sdm630-mtp;qcom,sdm630;qcom,mtp;\n"
  },
  {
    "path": "results/sdm630/second/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x100\n[    0.000000] Initializing cgroup subsys cpuset\n[    0.000000] Initializing cgroup subsys cpu\n[    0.000000] Initializing cgroup subsys cpuacct\n[    0.000000] Initializing cgroup subsys schedtune\n[    0.000000] Linux version 4.4.288-xtremedev-EMP++ (rote66@penguin) (gcc version 5.5.0 (Linaro GCC 5.5-2017.10) ) #1 SMP PREEMPT Fri Oct 22 16:38:42 CST 2021\n[    0.000000] Boot CPU: AArch64 Processor [51af8014]\n[    0.000000] Machine: Sony Mobile Communications. mermaid(sdm630)\n[    0.000000] board-ramdump: boot mode detected as normal\n[    0.000000] system booted with SECURITY_STATUS : ON\n[    0.000000] efi: Getting EFI parameters from FDT:\n[    0.000000] efi: UEFI not found.\n[    0.000000] Reserved memory: reserved region for node 'debug_region@ffb00000': base 0x00000000ffb00000, size 1 MiB\n[    0.000000] Reserved memory: reserved region for node 'pstore_reserve_mem_region_region@ffc00000': base 0x00000000ffc00000, size 1 MiB\n[    0.000000] Reserved memory: reserved region for node 'wlan_msa_guard@85600000': base 0x0000000085600000, size 1 MiB\n[    0.000000] Reserved memory: reserved region for node 'wlan_msa_mem@85700000': base 0x0000000085700000, size 1 MiB\n[    0.000000] Reserved memory: reserved region for node 'removed_region0@85800000': base 0x0000000085800000, size 55 MiB\n[    0.000000] Reserved memory: reserved region for node 'modem_fw_region@8ac00000': base 0x000000008ac00000, size 126 MiB\n[    0.000000] Reserved memory: reserved region for node 'adsp_fw_region@92a00000': base 0x0000000092a00000, size 30 MiB\n[    0.000000] Reserved memory: reserved region for node 'pil_mba_region@94800000': base 0x0000000094800000, size 2 MiB\n[    0.000000] Reserved memory: reserved region for node 'buffer_region@94a00000': base 0x0000000094a00000, size 1 MiB\n[    0.000000] Reserved memory: reserved region for node 'splash_region@9d400000': base 0x000000009d400000, size 35 MiB\n[    0.000000] Reserved memory: reserved region for node 'dfps_data_mem@0x9f7ff000': base 0x000000009f7ff000, size 0 MiB\n[    0.000000] Reserved memory: allocated memory for 'linux,cma' node: base 0x00000000fd800000, size 32 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fd800000, size 32 MiB\n[    0.000000] Reserved memory: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'venus_fw_region' node: base 0x000000009f800000, size 8 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x000000009f800000, size 8 MiB\n[    0.000000] Reserved memory: initialized node venus_fw_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'secure_region' node: base 0x00000000f7c00000, size 92 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f7c00000, size 92 MiB\n[    0.000000] Reserved memory: initialized node secure_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'qseecom_region' node: base 0x00000000f6800000, size 20 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6800000, size 20 MiB\n[    0.000000] Reserved memory: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'adsp_region' node: base 0x00000000f6000000, size 8 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6000000, size 8 MiB\n[    0.000000] Reserved memory: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085600000, size 1 MiB\n[    0.000000] Reserved memory: initialized node wlan_msa_guard@85600000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085700000, size 1 MiB\n[    0.000000] Reserved memory: initialized node wlan_msa_mem@85700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085800000, size 55 MiB\n[    0.000000] Reserved memory: initialized node removed_region0@85800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ac00000, size 126 MiB\n[    0.000000] Reserved memory: initialized node modem_fw_region@8ac00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000092a00000, size 30 MiB\n[    0.000000] Reserved memory: initialized node adsp_fw_region@92a00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094800000, size 2 MiB\n[    0.000000] Reserved memory: initialized node pil_mba_region@94800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094a00000, size 1 MiB\n[    0.000000] Reserved memory: initialized node buffer_region@94a00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000ffb00000, size 1 MiB\n[    0.000000] Reserved memory: initialized node debug_region@ffb00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000ffc00000, size 1 MiB\n[    0.000000] Reserved memory: initialized node pstore_reserve_mem_region_region@ffc00000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 985792\n[    0.000000]   DMA zone: 7320 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 468480 pages, LIFO batch:31\n[    0.000000]   Normal zone: 8083 pages used for memmap\n[    0.000000]   Normal zone: 517312 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.0 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] PERCPU: Embedded 20 pages/cpu @ffffffe73a160000 s42904 r8192 d30824 u81920\n[    0.000000] pcpu-alloc: s42904 r8192 d30824 u81920 alloc=20*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: enabling workaround for Kryo2xx Silver erratum 845719\n[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 970389\n[    0.000000] Kernel command line: isolcpus=1-7 nohz_full=1-7 loglevel=0 rcupdate.rcu_expedited=1 androidboot.hardware=qcom user_debug=31 msm_rtb.filter=0x37 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 sched_enable_hmp=1 sched_enable_power_aware=1 service_locator.enable=1 swiotlb=1 loop.max_part=7 panic_on_err=1 loop.max_part=7 panic_on_err=1 buildvariant=user rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=c351ca12-1a0f-43aa-911e-99daf8ba5dcd androidboot.bootdevice=c0c4000.sdhci androidboot.baseband=msm lcdid_adc=1515312 mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_td4320_tianma_fhdplus_video:config0:1:none:cfg:single_dsi androidboot.slot_suffix=_b skip_initramfs rootwait ro init=/init  androidboot.bootloader=xboot oemandroidboot.xboot=1310-0301_X_Boot_SDM630_LA3.0.1_P_410 androidboot.serialno=REDACTED startup=0x00008000 warmboot=0x77665501 oemandroidboot.babe09a9=00 oemandroidboot.babe08b3=5000000\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 262144 bytes\n[    0.000000] log_buf_len: 2097152 bytes\n[    0.000000] early log buf free: 254184(96%)\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] software IO TLB: mapped [mem 0xfffbf000-0xfffff000] (0MB)\n[    0.000000] Memory: 3613256K/3943168K available (17916K kernel code, 3242K rwdata, 9120K rodata, 10240K init, 3729K bss, 166072K reserved, 163840K cma-reserved)\n[    0.000000] Virtual kernel memory layout:\n                   modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n                   vmalloc : 0xffffff8008000000 - 0xffffffbdbfff0000   (   246 GB)\n                     .init : 0xffffff8ac2000000 - 0xffffff8ac2a00000   ( 10240 KB)\n                     .text : 0xffffff8ac0480000 - 0xffffff8ac1600000   ( 17920 KB)\n                   .rodata : 0xffffff8ac1600000 - 0xffffff8ac2000000   ( 10240 KB)\n                     .data : 0xffffff8ac2a00000 - 0xffffff8ac2d2aa00   (  3243 KB)\n                   vmemmap : 0xffffffbdc0000000 - 0xffffffbfc0000000   (     8 GB maximum)\n                             0xffffffbe59000000 - 0xffffffbe5cf93000   (    63 MB actual)\n                   fixed   : 0xffffffbffe7fb000 - 0xffffffbffec00000   (  4116 KB)\n                   PCI I/O : 0xffffffbffee00000 - 0xffffffbfffe00000   (    16 MB)\n                   memory  : 0xffffffe640000000 - 0xffffffe73e4c0000   (  4068 MB)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] NR_IRQS:64 nr_irqs:64 0\n[    0.000000] mpm_init_irq_domain(): Cannot find irq controller for qcom,gpio-parent\n[    0.000000] MPM 1 irq mapping errored -517\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from all CPUs\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000015] clocksource: Switched to clocksource arch_sys_counter\n[    0.000910] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.000920] pid_max: default: 32768 minimum: 301\n[    0.000978] Security Framework initialized\n[    0.000984] SELinux:  Initializing.\n[    0.001014] SELinux:  Starting in permissive mode\n[    0.001038] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001045] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001461] Initializing cgroup subsys freezer\n[    0.002798] sched-energy: Sched-energy-costs installed from DT\n[    0.002835] ASID allocator initialised with 32768 entries\n[    0.021575] MSM Memory Dump base table set up\n[    0.021597] MSM Memory Dump apps data table set up\n[    0.021641] disabling /soc/serial@0c170000 node\n[    0.021744] couldn't find msm_gpio_4 node\n[    0.021834] EFI services will not be available.\n[    0.026913] CPU1: Booted secondary processor [51af8014]\n[    0.031598] CPU2: Booted secondary processor [51af8014]\n[    0.036229] CPU3: Booted secondary processor [51af8014]\n[    0.041109] CPU4: Booted secondary processor [51af8014]\n[    0.045809] CPU5: Booted secondary processor [51af8014]\n[    0.050512] CPU6: Booted secondary processor [51af8014]\n[    0.055219] CPU7: Booted secondary processor [51af8014]\n[    0.055275] Brought up 8 CPUs\n[    0.055291] SMP: Total of 8 processors activated.\n[    0.055295] CPU features: detected feature: GIC system register CPU interface\n[    0.055299] CPU features: detected feature: 32-bit EL0 Support\n[    0.055304] CPU: All CPU(s) started at EL1\n[    0.055348] alternatives: patching kernel code\n[    0.055451] CPU0: update max cpu_capacity 1024\n[    0.056076] devtmpfs: initialized\n[    0.096004] DMI not present or invalid.\n[    0.096172] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.096185] futex hash table entries: 2048 (order: 5, 131072 bytes)\n[    0.100410] pinctrl core: initialized pinctrl subsystem\n[    0.102006] board-ramdump: Initialized debug memory at ffb00000-ffbfffff\n[    0.102170] ERROR: ramdump_add_last_logs_device: magic = ffffffff, version = 0xffffffff\n[    0.115300] rdtags rdtags: Loaded with 12 existing and 4 new tags. Size: 262144@0xffb40000\n[    0.115436] ramdump_memdesc ramdump_memdesc: res_mem_desc_base = 0xffb00000 mem_desc size = 262144\n[    0.115441] ramdump_memdesc ramdump_memdesc: ramdump_mode = normal\n[    0.116266] NET: Registered protocol family 16\n[    0.117587] schedtune: init normalization constants...\n[    0.117594] schedtune: CLUSTER[0]        min_pwr:     1 max_pwr:    13\n[    0.117599] schedtune: CPU[0]            min_pwr:     8 max_pwr:   285\n[    0.117602] schedtune: SYSTEM            min_pwr:     9 max_pwr:   298\n[    0.117607] schedtune: using normalization constants mul: 3314109713 sh1: 1 sh2: 8\n[    0.117609] schedtune: verify normalization constants...\n[    0.117612] schedtune: max_pwr/2^0:  289 => norm_pwr:  1024\n[    0.117615] schedtune: max_pwr/2^1:  144 => norm_pwr:   510\n[    0.117619] schedtune: max_pwr/2^2:   72 => norm_pwr:   255\n[    0.117623] schedtune: max_pwr/2^3:   36 => norm_pwr:   127\n[    0.117626] schedtune: max_pwr/2^4:   18 => norm_pwr:    63\n[    0.117629] schedtune: max_pwr/2^5:    9 => norm_pwr:    31\n[    0.117633] schedtune: configured to support 5 boost groups\n[    0.118019] cpuidle: using governor ladder\n[    0.118026] cpuidle: using governor menu\n[    0.118031] cpuidle: using governor qcom\n[    0.118891] vdso: 2 pages (1 code @ ffffff8ac1606000, 1 data @ ffffff8ac2a04000)\n[    0.118909] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.119295] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.122806] exit: IPA_USB init success!\n[    0.123900] sdm660-pinctrl 3000000.pinctrl: pin 8 disabled\n[    0.123906] sdm660-pinctrl 3000000.pinctrl: pin 9 disabled\n[    0.123910] sdm660-pinctrl 3000000.pinctrl: pin 10 disabled\n[    0.123915] sdm660-pinctrl 3000000.pinctrl: pin 11 disabled\n[    0.125530] __of_mpm_init(): MPM driver mapping exists\n[    0.134086] platform soc:ramoops: assigned reserved memory node pstore_reserve_mem_region_region@ffc00000\n[    0.139713] console [pstore0] enabled\n[    0.139717] pstore: Registered ramoops as persistent store backend\n[    0.139720] ramoops: attached 0x100000@0xffc00000, ecc: 0/0\n[    0.141792] unable to find DT imem DLOAD mode node\n[    0.142829] unable to find DT imem EDLOAD mode node\n[    0.144384] sps:sps is ready.\n[    0.145233] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.145301] msm_thermal:vdd_restriction_reg_init Defer regulator vdd-dig probe\n[    0.145307] msm_thermal:probe_vdd_rstr Err regulator init. err:-517. KTM continues.\n[    0.145312] msm-thermal soc:qcom,msm-thermal: probe_vdd_rstr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,max-freq-level. err=-517. KTM continues\n[    0.145853] msm_watchdog 17817000.qcom,wdt: wdog absent resource not present\n[    0.146157] msm_watchdog 17817000.qcom,wdt: MSM Watchdog Initialized\n[    0.147546] gpu-sdm660 5065000.clock-controller: Registered GPU RBCPR clocks\n[    0.150501] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.152593] msm_rpm_dev_probe: APSS-RPM communication over GLINK\n[    0.156956] platform 15700000.qcom,lpass: assigned reserved memory node adsp_fw_region@92a00000\n[    0.157097] platform cce0000.qcom,venus: assigned reserved memory node venus_fw_region\n[    0.157348] platform 4080000.qcom,mss: assigned reserved memory node modem_fw_region@8ac00000\n[    0.159084] spmi spmi-0: PMIC arbiter version v3 (0x30000000)\n[    0.163723] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.171673] msm_rpm_trans_notify_state: glink config params: transport=(null), edge=rpm, name=rpm_requests\n[    0.171935] genirq: Setting trigger mode 8 for irq 219 failed (gic_set_type+0x0/0xb0)\n[    0.171977] genirq: Setting trigger mode 8 for irq 220 failed (gic_set_type+0x0/0xb0)\n[    0.172016] genirq: Setting trigger mode 8 for irq 221 failed (gic_set_type+0x0/0xb0)\n[    0.172056] genirq: Setting trigger mode 8 for irq 222 failed (gic_set_type+0x0/0xb0)\n[    0.172096] genirq: Setting trigger mode 8 for irq 223 failed (gic_set_type+0x0/0xb0)\n[    0.185078] msm_mpm_dev_probe(): Cannot get clk resource for XO: -517\n[    0.185941] irq: no irq domain found for /soc/qcom,mdss_mdp@c900000 !\n[    0.194769] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.194864] msm_thermal:vdd_restriction_reg_init Defer regulator vdd-dig probe\n[    0.194868] msm_thermal:probe_vdd_rstr Err regulator init. err:-517. KTM continues.\n[    0.194874] msm-thermal soc:qcom,msm-thermal: probe_vdd_rstr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,max-freq-level. err=-517. KTM continues\n[    0.198479] qcom-clk-smd-rpm soc:qcom,rpmcc: Registered RPM clocks\n[    0.207866] pm660l_l7: supplied by pm660_l10\n[    0.210240] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.210865] cpr4_sdm660_mmss_read_fuse_data: gfx_corner: CPR fusing revision = 0\n[    0.210990] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[0] open-loop= 585000 uV\n[    0.210994] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[1] open-loop= 645000 uV\n[    0.210998] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[2] open-loop= 725000 uV\n[    0.211002] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[3] open-loop= 790000 uV\n[    0.211007] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[4] open-loop= 870000 uV\n[    0.211010] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[5] open-loop= 925000 uV\n[    0.211148] cpr3_regulator_init_ctrl: gfx: Default CPR mode = open-loop\n[    0.213554] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.213744] msm-thermal soc:qcom,msm-thermal: probe_ocr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-opt-curr-temp err:-22. KTM continues\n[    0.213752] msm-thermal soc:qcom,msm-thermal: probe_vdd_mx:Failed reading node=/soc/qcom,msm-thermal, key=qcom,mx-restriction-temp. KTM continues\n[    0.213763] msm-thermal soc:qcom,msm-thermal: probe_freq_mitigation:Failed reading node=/soc/qcom,msm-thermal, key=qcom,limit-temp. err=-22. KTM continues\n[    0.213770] msm-thermal soc:qcom,msm-thermal: msm_thermal:Failed reading node=/soc/qcom,msm-thermal, key=qcom,rpm-phase-resource-type err=-22. KTM continues\n[    0.213777] msm-thermal soc:qcom,msm-thermal: msm_thermal:Failed reading node=/soc/qcom,msm-thermal, key=qcom,gfx-sensor-id. err=-22. KTM continues\n[    0.214982] cpu cpu0: dev_pm_opp_get_opp_count: OPP table not found (-19)\n[    0.214987] msm_thermal:get_cpu_freq_plan_len Error reading CPU0 freq table len. error:-19\n[    0.214994] cpu cpu4: dev_pm_opp_get_opp_count: OPP table not found (-19)\n[    0.214998] msm_thermal:get_cpu_freq_plan_len Error reading CPU4 freq table len. error:-19\n[    0.215004] cpu cpu0: dev_pm_opp_get_opp_count: OPP table not found (-19)\n[    0.215008] msm_thermal:get_cpu_freq_plan_len Error reading CPU0 freq table len. error:-19\n[    0.215012] cpu cpu4: dev_pm_opp_get_opp_count: OPP table not found (-19)\n[    0.215015] msm_thermal:get_cpu_freq_plan_len Error reading CPU4 freq table len. error:-19\n[    0.216976] gcc-sdm660 100000.clock-controller: Registered GCC clocks\n[    0.221341] mmcc-sdm660 c8c0000.clock-controller: Registered MMSS clocks\n[    0.221904] gpucc-sdm660 5065000.gfx: Registered GPUCC clocks\n[    0.222322] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.222473] cprh_kbss_read_fuse_data: apc0_pwrcl_corner: speed bin = 1\n[    0.222479] cprh_sdm630_kbss_read_fuse_data: apc0_pwrcl_corner: CPR fusing revision = 1\n[    0.222533] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused   LowSVS: open-loop= 594000 uV\n[    0.222537] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused  SVSPLUS: open-loop= 688000 uV\n[    0.222540] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused TURBO_L1: open-loop= 948000 uV\n[    0.222563] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused   LowSVS: quot[ 7]= 290\n[    0.222568] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused  SVSPLUS: quot[ 7]= 443, quot_offset[ 7]= 150\n[    0.222572] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused TURBO_L1: quot[ 7]= 856, quot_offset[ 7]= 410\n[    0.223048] cpr3_regulator_init_ctrl: apc0: Default CPR mode = full HW closed-loop\n[    0.223470] cprh_kbss_read_fuse_data: apc1_perfcl_corner: speed bin = 1\n[    0.223476] cprh_sdm630_kbss_read_fuse_data: apc1_perfcl_corner: CPR fusing revision = 1\n[    0.223542] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused   LowSVS: open-loop= 594000 uV\n[    0.223546] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused  SVSPLUS: open-loop= 678000 uV\n[    0.223550] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused      NOM: open-loop= 748000 uV\n[    0.223555] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused    TURBO: open-loop= 878000 uV\n[    0.223558] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused TURBO_L2: open-loop= 888000 uV\n[    0.223584] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused   LowSVS: quot[ 7]= 360\n[    0.223588] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused  SVSPLUS: quot[ 7]= 526, quot_offset[ 7]= 165\n[    0.223593] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused      NOM: quot[ 7]= 673, quot_offset[ 7]= 145\n[    0.223597] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused    TURBO: quot[ 7]= 913, quot_offset[ 7]= 240\n[    0.223602] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused TURBO_L2: quot[ 7]= 932, quot_offset[ 7]=  15\n[    0.224164] cpr3_regulator_init_ctrl: apc1: Default CPR mode = full HW closed-loop\n[    0.224986] clk-cpu-osm 179c0000.qcom,clk-cpu-630: using pwrcl speed bin 0 and pvs_ver 0\n[    0.225001] clk-cpu-osm 179c0000.qcom,clk-cpu-630: using perfcl speed bin 1 and pvs_ver 0\n[    0.226490] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu0\n[    0.226874] add_opp: Set OPP pair (2208000000 Hz, 888000 uv) on cpu0\n[    0.226916] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu1\n[    0.227243] add_opp: Set OPP pair (2208000000 Hz, 888000 uv) on cpu1\n[    0.227287] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu2\n[    0.227608] add_opp: Set OPP pair (2208000000 Hz, 888000 uv) on cpu2\n[    0.227653] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu3\n[    0.227976] add_opp: Set OPP pair (2208000000 Hz, 888000 uv) on cpu3\n[    0.228022] add_opp: Set OPP pair (300000000 Hz, 596000 uv) on cpu4\n[    0.228275] add_opp: Set OPP pair (1843200000 Hz, 948000 uv) on cpu4\n[    0.228319] add_opp: Set OPP pair (300000000 Hz, 596000 uv) on cpu5\n[    0.228568] add_opp: Set OPP pair (1843200000 Hz, 948000 uv) on cpu5\n[    0.228623] add_opp: Set OPP pair (300000000 Hz, 596000 uv) on cpu6\n[    0.228862] add_opp: Set OPP pair (1843200000 Hz, 948000 uv) on cpu6\n[    0.228921] add_opp: Set OPP pair (300000000 Hz, 596000 uv) on cpu7\n[    0.229176] add_opp: Set OPP pair (1843200000 Hz, 948000 uv) on cpu7\n[    0.229808] clk_cpu_osm_driver_probe: OSM driver inited\n[    0.229949] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.239294] sched-energy energy-costs: cpu=0 freq=633600 cap=294 power_d0=41\n[    0.239300] sched-energy energy-costs: cpu=0 freq=902400 cap=419 power_d0=70\n[    0.239306] sched-energy energy-costs: cpu=0 freq=1113600 cap=517 power_d0=83\n[    0.239312] sched-energy energy-costs: cpu=0 freq=1401600 cap=651 power_d0=146\n[    0.239316] sched-energy energy-costs: cpu=0 freq=1536000 cap=713 power_d0=158\n[    0.239322] sched-energy energy-costs: cpu=0 freq=1747200 cap=811 power_d0=228\n[    0.239327] sched-energy energy-costs: cpu=0 freq=1843200 cap=855 power_d0=285\n[    0.239333] sched-energy energy-costs: cpu=0 efficiency=1126 max_frequency=2208000 max_efficiency=1126 cpu_max_capacity=1024\n[    0.239337] CPU0: update cpu_capacity 855\n[    0.239343] sched-energy energy-costs: cpu=1 freq=633600 cap=294 power_d0=41\n[    0.239349] sched-energy energy-costs: cpu=1 freq=902400 cap=419 power_d0=70\n[    0.239355] sched-energy energy-costs: cpu=1 freq=1113600 cap=517 power_d0=83\n[    0.239360] sched-energy energy-costs: cpu=1 freq=1401600 cap=651 power_d0=146\n[    0.239365] sched-energy energy-costs: cpu=1 freq=1536000 cap=713 power_d0=158\n[    0.239371] sched-energy energy-costs: cpu=1 freq=1747200 cap=811 power_d0=228\n[    0.239376] sched-energy energy-costs: cpu=1 freq=1843200 cap=855 power_d0=285\n[    0.239381] sched-energy energy-costs: cpu=1 efficiency=1126 max_frequency=2208000 max_efficiency=1126 cpu_max_capacity=1024\n[    0.239385] CPU1: update cpu_capacity 855\n[    0.239391] sched-energy energy-costs: cpu=2 freq=633600 cap=294 power_d0=41\n[    0.239396] sched-energy energy-costs: cpu=2 freq=902400 cap=419 power_d0=70\n[    0.239402] sched-energy energy-costs: cpu=2 freq=1113600 cap=517 power_d0=83\n[    0.239407] sched-energy energy-costs: cpu=2 freq=1401600 cap=651 power_d0=146\n[    0.239412] sched-energy energy-costs: cpu=2 freq=1536000 cap=713 power_d0=158\n[    0.239418] sched-energy energy-costs: cpu=2 freq=1747200 cap=811 power_d0=228\n[    0.239424] sched-energy energy-costs: cpu=2 freq=1843200 cap=855 power_d0=285\n[    0.239429] sched-energy energy-costs: cpu=2 efficiency=1126 max_frequency=2208000 max_efficiency=1126 cpu_max_capacity=1024\n[    0.239433] CPU2: update cpu_capacity 855\n[    0.239439] sched-energy energy-costs: cpu=3 freq=633600 cap=294 power_d0=41\n[    0.239443] sched-energy energy-costs: cpu=3 freq=902400 cap=419 power_d0=70\n[    0.239449] sched-energy energy-costs: cpu=3 freq=1113600 cap=517 power_d0=83\n[    0.239454] sched-energy energy-costs: cpu=3 freq=1401600 cap=651 power_d0=146\n[    0.239459] sched-energy energy-costs: cpu=3 freq=1536000 cap=713 power_d0=158\n[    0.239465] sched-energy energy-costs: cpu=3 freq=1747200 cap=811 power_d0=228\n[    0.239470] sched-energy energy-costs: cpu=3 freq=1843200 cap=855 power_d0=285\n[    0.239476] sched-energy energy-costs: cpu=3 efficiency=1126 max_frequency=2208000 max_efficiency=1126 cpu_max_capacity=1024\n[    0.239481] CPU3: update cpu_capacity 855\n[    0.239487] sched-energy energy-costs: cpu=4 freq=1113600 cap=471 power_d0=307\n[    0.239493] sched-energy energy-costs: cpu=4 freq=1401600 cap=592 power_d0=485\n[    0.239499] sched-energy energy-costs: cpu=4 freq=1747200 cap=738 power_d0=857\n[    0.239504] sched-energy energy-costs: cpu=4 freq=1804800 cap=762 power_d0=944\n[    0.239509] sched-energy energy-costs: cpu=4 freq=1843200 cap=778 power_d0=1222\n[    0.239514] sched-energy energy-costs: cpu=4 freq=1843200 cap=778 power_d0=1592\n[    0.239518] sched-energy energy-costs: cpu=4 freq=1843200 cap=778 power_d0=1632\n[    0.239523] sched-energy energy-costs: cpu=4 freq=1843200 cap=778 power_d0=2080\n[    0.239529] sched-energy energy-costs: cpu=4 efficiency=1024 max_frequency=1843200 max_efficiency=1126 cpu_max_capacity=778\n[    0.239533] CPU4: update cpu_capacity 778\n[    0.239538] sched-energy energy-costs: cpu=5 freq=1113600 cap=471 power_d0=307\n[    0.239544] sched-energy energy-costs: cpu=5 freq=1401600 cap=592 power_d0=485\n[    0.239548] sched-energy energy-costs: cpu=5 freq=1747200 cap=738 power_d0=857\n[    0.239553] sched-energy energy-costs: cpu=5 freq=1804800 cap=762 power_d0=944\n[    0.239558] sched-energy energy-costs: cpu=5 freq=1843200 cap=778 power_d0=1222\n[    0.239563] sched-energy energy-costs: cpu=5 freq=1843200 cap=778 power_d0=1592\n[    0.239568] sched-energy energy-costs: cpu=5 freq=1843200 cap=778 power_d0=1632\n[    0.239573] sched-energy energy-costs: cpu=5 freq=1843200 cap=778 power_d0=2080\n[    0.239579] sched-energy energy-costs: cpu=5 efficiency=1024 max_frequency=1843200 max_efficiency=1126 cpu_max_capacity=778\n[    0.239583] CPU5: update cpu_capacity 778\n[    0.239589] sched-energy energy-costs: cpu=6 freq=1113600 cap=471 power_d0=307\n[    0.239595] sched-energy energy-costs: cpu=6 freq=1401600 cap=592 power_d0=485\n[    0.239601] sched-energy energy-costs: cpu=6 freq=1747200 cap=738 power_d0=857\n[    0.239606] sched-energy energy-costs: cpu=6 freq=1804800 cap=762 power_d0=944\n[    0.239612] sched-energy energy-costs: cpu=6 freq=1843200 cap=778 power_d0=1222\n[    0.239616] sched-energy energy-costs: cpu=6 freq=1843200 cap=778 power_d0=1592\n[    0.239622] sched-energy energy-costs: cpu=6 freq=1843200 cap=778 power_d0=1632\n[    0.239626] sched-energy energy-costs: cpu=6 freq=1843200 cap=778 power_d0=2080\n[    0.239632] sched-energy energy-costs: cpu=6 efficiency=1024 max_frequency=1843200 max_efficiency=1126 cpu_max_capacity=778\n[    0.239636] CPU6: update cpu_capacity 778\n[    0.239642] sched-energy energy-costs: cpu=7 freq=1113600 cap=471 power_d0=307\n[    0.239648] sched-energy energy-costs: cpu=7 freq=1401600 cap=592 power_d0=485\n[    0.239654] sched-energy energy-costs: cpu=7 freq=1747200 cap=738 power_d0=857\n[    0.239659] sched-energy energy-costs: cpu=7 freq=1804800 cap=762 power_d0=944\n[    0.239664] sched-energy energy-costs: cpu=7 freq=1843200 cap=778 power_d0=1222\n[    0.239669] sched-energy energy-costs: cpu=7 freq=1843200 cap=778 power_d0=1592\n[    0.239674] sched-energy energy-costs: cpu=7 freq=1843200 cap=778 power_d0=1632\n[    0.239679] sched-energy energy-costs: cpu=7 freq=1843200 cap=778 power_d0=2080\n[    0.239685] sched-energy energy-costs: cpu=7 efficiency=1024 max_frequency=1843200 max_efficiency=1126 cpu_max_capacity=778\n[    0.239688] CPU7: update cpu_capacity 778\n[    0.239693] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.246645] ACPI: Interpreter disabled.\n[    0.246735] Minidump: Enabled, region base:160, region 0xffffff80088026f0\n[    0.247833] KPI: Bootloader start count = 81372\n[    0.247837] KPI: Bootloader end count = 342267\n[    0.247841] KPI: Bootloader display count = 2953109246\n[    0.247845] KPI: Bootloader load kernel count = 3792730009\n[    0.247851] KPI: Kernel MPM timestamp = 356874\n[    0.247854] KPI: Kernel MPM Clock frequency = 32768\n[    0.247873] socinfo_print: v0.11, id=318, ver=1.0, raw_id=172, raw_ver=0, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65563, pmic_die_revision=131072 foundry_id=3 serial_number=2197471598 num_pmics=2\n[    0.250904] msm_bus_fabric_init_driver\n[    0.267408] msm_bus_dev_init_qos: Skipping QOS init for 1\n[    0.267454] msm_bus_dev_init_qos: Skipping QOS init for 727\n[    0.267460] msm_bus_dev_init_qos: Skipping QOS init for 728\n[    0.269183] cam_avdd_gpio_regulator: supplied by pm660l_bob\n[    0.269453] cam_dvdd_gpio_regulator: supplied by pm660_s5\n[    0.269664] cam_rear_dvdd_gpio_regulator: supplied by pm660_s5\n[    0.269859] cam_iovdd_gpio_regulator: supplied by pm660_s4\n[    0.270142] vgaarb: loaded\n[    0.270388] qcom,qpnp-misc 800f000.qcom,spmi:qcom,pm660@0:qcom,misc@900: probe successful\n[    0.271097] SCSI subsystem initialized\n[    0.271495] usbcore: registered new interface driver usbfs\n[    0.271522] usbcore: registered new interface driver hub\n[    0.271549] usbcore: registered new device driver usb\n[    0.271750] soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.272076] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: pon_resin_timer 0xf\n[    0.272120] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.272144] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)\n[    0.272293] input: qpnp_pon as /devices/virtual/input/input0\n[    0.272549] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: No PON config. specified\n[    0.272566] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: pon_resin_timer 0xf\n[    0.272606] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (secondary PMIC) and 'cold' boot\n[    0.272629] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from GP1 (Keypad_Reset1)\n[    0.273015] i2c-msm-v2 c175000.i2c: probing driver i2c-msm-v2\n[    0.274959] i2c-msm-v2 c176000.i2c: probing driver i2c-msm-v2\n[    0.275919] i2c-msm-v2 c1b6000.i2c: probing driver i2c-msm-v2\n[    0.278273] media: Linux media interface: v0.10\n[    0.278332] Linux video capture interface: v2.00\n[    0.280001] EDAC MC: Ver: 3.0.0\n[    0.283706] cpufreq: driver msm up and running\n[    0.283827] dmi: Firmware registration failed.\n[    0.285863] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node adsp_region\n[    0.286215] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.286411] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_region\n[    0.287040] ION heap system created\n[    0.287254] ION heap adsp created at 0x00000000f6000000 with size 800000\n[    0.287278] ION heap qsecom created at 0x00000000f6800000 with size 1400000\n[    0.287289] ION heap secure_display created at 0x00000000f7c00000 with size 5c00000\n[    0.287305] ION heap secure_heap created\n[    0.290929] PMIC@SID0: PM660 v2.0 options: 0, 0, 0, 0\n[    0.292945] PMIC@SID2: PM660L v2.0.1 options: 0, 0, 0, 0\n[    0.294220] ipa get_ipa_dts_configuration:4871 : apps shutdown support = Disabled\n[    0.294284] IPA smmu_info.s1_bypass=1 smmu_info.fast_map=0\n[    0.302786] gdsc_vfe0: supplied by gdsc_camss_top\n[    0.303166] gdsc_vfe1: supplied by gdsc_camss_top\n[    0.303558] gdsc_cpp: supplied by gdsc_camss_top\n[    0.304778] gdsc_gpu_gx: supplied by gfx_corner\n[    0.308128] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.308137] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.308490] mdss_pll c994400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.308526] mdss_pll c994400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.308537] mdss_pll c994400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.309567] dsi_pll_clock_register_14nm: Registered DSI PLL ndx=0 clocks successfully\n[    0.309609] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.336715] arm-smmu 16c0000.arm,smmu-anoc2: found 29 context interrupt(s) but have 11 context banks. assuming 11 context interrupts.\n[    0.338927] arm-smmu 5100000.arm,smmu-lpass_q6: found 17 context interrupt(s) but have 13 context banks. assuming 13 context interrupts.\n[    0.340955] arm-smmu cd00000.arm,smmu-mmss: found 24 context interrupt(s) but have 17 context banks. assuming 17 context interrupts.\n[    0.341382] arm-smmu 5040000.arm,smmu-kgsl: regulator defer delay 80\n[    0.341828] arm-smmu 5040000.arm,smmu-kgsl: found 8 context interrupt(s) but have 5 context banks. assuming 5 context interrupts.\n[    0.346288] iommu: Adding device 18800000.qcom,icnss to group 0\n[    0.347398] iommu: Adding device soc:usb_audio_qmi_dev to group 1\n[    0.347507] iommu: Adding device soc:iommu_test_device to group 2\n[    0.347819] iommu: Adding device soc:qcom,msm-audio-ion to group 3\n[    0.349324] iommu: Adding device 14780000.qcom,ipa:ipa_smmu_ap to group 4\n[    0.349356] iommu: Adding device 14780000.qcom,ipa:ipa_smmu_uc to group 5\n[    0.355059] cei_hw_id_init OK\n[    0.355199] Advanced Linux Sound Architecture Driver Initialized.\n[    0.356428] Bluetooth: ffffffe7394dfd08\n[    0.356479] NET: Registered protocol family 31\n[    0.356481] Bluetooth: ffffffe7394dfd08\n[    0.356495] Bluetooth: ffffffe7394dfce8\n[    0.356506] Bluetooth: ffffffe7394dfcb8\n[    0.356544] Bluetooth: ffffffe7394dfcc8\n[    0.357168] cfg80211: World regulatory domain updated:\n[    0.357175] cfg80211:  DFS Master region: unset\n[    0.357180] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)\n[    0.357188] cfg80211:   (2402000 KHz - 2472000 KHz @ 20000 KHz), (N/A, 2600 mBm), (N/A)\n[    0.357192] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (N/A, 2600 mBm), (N/A)\n[    0.357197] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.357202] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (0 s)\n[    0.357206] cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2000 mBm), (0 s)\n[    0.357212] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 1400 mBm), (N/A)\n[    0.358388] NetLabel: Initializing\n[    0.358390] NetLabel:  domain hash size = 128\n[    0.358392] NetLabel:  protocols = UNLABELED CIPSOv4\n[    0.358466] NetLabel:  unlabeled traffic allowed by default\n[    0.358612] nfc: nfc_init: NFC Core ver 0.1\n[    0.358657] NET: Registered protocol family 39\n[    0.358686] pcie:pcie_init.\n[    0.366078] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=5500mV ncp_voltage=5500mV bst_voltage=5700mV\n[    0.371289] ipa ipa2_uc_state_check:296 uC interface not initialized\n[    0.371318] ipa ipa_sps_irq_control_all:963 EP (2) not allocated.\n[    0.371326] ipa ipa_sps_irq_control_all:963 EP (5) not allocated.\n[    0.375121] sps:BAM 0x0000000014784000 is registered.\n[    0.378883] sps:BAM 0x0000000014784000 (va:0xffffff8008a40000) enabled: ver:0x27, number of pipes:20\n[    0.393329] IPA driver initialization was successful.\n[    0.394870] clocksource: Switched to clocksource arch_sys_counter\n[    0.440204] pnp: PnP ACPI: disabled\n[    0.449781] gcc-debug-sdm660 62000.qcom,cc-debug: Registered debug mux successfully\n[    0.450808] NET: Registered protocol family 2\n[    0.450980] IP idents hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.452269] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.452453] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.453251] TCP: Hash tables configured (established 32768 bind 32768)\n[    0.453407] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.453457] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.453716] NET: Registered protocol family 1\n[    0.453764] PCI: CLS 0 bytes, default 64\n[    0.454224] Trying to unpack rootfs image as initramfs...\n[    0.665201] Freeing initrd memory: 7484K\n[    0.670731] audit: initializing netlink subsys (disabled)\n[    0.670838] audit: type=2000 audit(0.669:1): initialized\n[    0.674927] Initialise system trusted keyring\n[    0.675432] vmscan: error setting kswapd cpu affinity mask\n[    0.680828] VFS: Disk quotas dquot_6.6.0\n[    0.680931] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.682149] Registering sdcardfs 0.1\n[    0.682315] [SDFAT] Filesystem version 2.4.5-lineage\n[    0.682443] fuse init (API version 7.23)\n[    0.682889] SELinux:  Registering netfilter hooks\n[    0.683314] pfk_ecryptfs [pfk_ecryptfs_init]: PFK ecryptfs inited successfully\n[    0.683318] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    0.683327] pfk [pfk_init]: Driver initialized successfully\n[    0.686140] Key type asymmetric registered\n[    0.686149] Asymmetric key parser 'x509' registered\n[    0.686263] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)\n[    0.686273] io scheduler noop registered\n[    0.686280] io scheduler deadline registered\n[    0.686381] io scheduler cfq registered (default)\n[    0.692584] msm_dss_get_res_byname: 'vbif_nrt_phys' resource not found\n[    0.692605] mdss_mdp_probe+0x20c/0x1910->msm_dss_ioremap_byname: 'vbif_nrt_phys' msm_dss_get_res_byname failed\n[    0.693684] mdss_mdp_irq_clk_setup: unable to get core gdsc regulator\n[    0.695472] No change in context(0==0), skip\n[    0.696453] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:0 num:0 rect:0 ndx:0x1 prio:0\n[    0.696488] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:1 num:6 rect:0 ndx:0x40 prio:1\n[    0.696499] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:1 num:6 rect:1 ndx:0x40 prio:1\n[    0.696503] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:5 num:7 rect:0 ndx:0x80 prio:2\n[    0.696514] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:5 num:7 rect:1 ndx:0x80 prio:2\n[    0.696519] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:9 num:12 rect:0 ndx:0x1000 prio:3\n[    0.696530] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:9 num:12 rect:1 ndx:0x1000 prio:3\n[    0.696542] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:2 num:10 rect:0 ndx:0x400 prio:0\n[    0.696550] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-pipe-sw-reset-off : u32 array read\n[    0.696623] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-ib-factor-overlap : u32 array read\n[    0.696629] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-bus-througput-factor : u32 array read\n[    0.698027] xlog_status: enable:0, panic:1, dump:2\n[    0.698553] iommu: Adding device c900000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb to group 6\n[    0.698952] iommu: Adding device c900000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb to group 7\n[    0.699122] mdss_mdp_probe: mdss version = 0x30030000, bootloader display is on, num 1, intf_sel=0x00000100\n[    0.702018] mdss_smmu_probe: iommu v2 domain[0] mapping and clk register successful!\n[    0.702361] mdss_smmu_probe: iommu v2 domain[2] mapping and clk register successful!\n[    0.704786] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->0\n[    0.705387] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_td4320_tianma_fhdplus_video:config0:1:none:cfg:single_dsi panel_name:qcom,mdss_dsi_td4320_tianma_fhdplus_video\n[    0.705501] mdss_dsi_find_panel_of_node: invalid pan node \"qcom,mdss_dsi_td4320_tianma_fhdplus_video\"\n[    0.705541] mdss_dsi_panel_driver_detection: physical:1515312\n[    0.705684] mdss_dsi_panel_init: Panel Name = 8\n[    0.705750] mdss_dsi_parse_split_link_settings: enable 0 sublinks-count 0 lanes per sublink 0\n[    0.705792] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-timing-switch-command\n[    0.705797] mdss_dsi_panel_get_dsc_cfg_np: cannot find dsc config node:\n[    0.705883] mdss_dsi_parse_dcs_cmds: failed, key=somc,mdss-dsi-pre-uv-command\n[    0.705993] mdss_dsi_parse_panel_features: ulps feature disabled\n[    0.705998] mdss_dsi_parse_panel_features: ulps during suspend feature disabled\n[    0.706005] mdss_dsi_parse_dms_config: dynamic switch feature enabled: 0\n[    0.706020] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-on\n[    0.706024] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-off\n[    0.706038] mdss_dsi_set_refresh_rate_range:2370, Unable to read min refresh rate\n[    0.706044] mdss_dsi_set_refresh_rate_range:2385, Unable to read max refresh rate\n[    0.706047] dyn_fps: min = 60, max = 60\n[    0.706331] mdss_dsi_parse_ctrl_params:4576 Unable to read qcom,display-id, data=0000000000000000,len=20\n[    0.706343] mdss_dsi_parse_gpio_params: bklt_en gpio not specified\n[    0.706347] mdss_dsi_parse_gpio_params: avdd_en gpio not specified\n[    0.706356] mdss_dsi_panel_driver_parse_gpio_params:882, disp vddio gpio not specified\n[    0.706360] mdss_dsi_panel_driver_parse_gpio_params:890, touch vddio gpio not specified\n[    0.706367] mdss_dsi_panel_driver_parse_gpio_params:906, touch int gpio not specified\n[    0.706370] mdss_dsi_panel_driver_parse_gpio_params:914, disp dcdc en gpio not specified\n[    0.706416] msm_dss_get_res_byname: 'dsi_phy_regulator' resource not found\n[    0.706434] mdss_dsi_retrieve_ctrl_resources+0xc8/0x2b0->msm_dss_ioremap_byname: 'dsi_phy_regulator' msm_dss_get_res_byname failed\n[    0.706439] mdss_dsi_retrieve_ctrl_resources: ctrl_base=ffffff80086fe000 ctrl_size=400 phy_base=ffffff8008748400 phy_size=588\n[    0.706635] dsi_panel_device_register: Continuous splash enabled\n[    0.706810] Unable to find fb node for device: c994000.qcom,mdss_dsi_ctrl0\n[    0.707014] mdss_register_panel: adding framebuffer device c994000.qcom,mdss_dsi_ctrl0\n[    0.713636] @@@@ panel power on @@@@\n[    0.716351] mdss_dsi_ctrl_probe: Dsi Ctrl->0 initialized, DSI rev:0x20010000, PHY rev:0x2\n[    0.716611] mdss_dsi_status_init: DSI status check interval:20000\n[    0.718458] mdss_register_panel: adding framebuffer device soc:qcom,mdss_wb_panel\n[    0.719051] mdss_fb_probe: fb0: split_mode:0 left:0 right:0\n[    0.719669] mdss_fb_register: FrameBuffer[0] 1080x2520 registered successfully!\n[    0.721481] mdss_dsi_ctrl c994000.qcom,mdss_dsi_ctrl0: mipi_dsi_panel_create_debugfs: create folder c994000.qcom,mdss_dsi_ctrl0\n[    0.722642] mdss_fb_probe: fb1: split_mode:0 left:0 right:0\n[    0.722784] mdss_fb_register: FrameBuffer[1] 640x480 registered successfully!\n[    0.723909] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    0.735671] spcom [spcom_init]: spcom driver version 1.2 23-Aug-2017.\n[    0.737242] audio_notifer_reg_service: service SSR_MODEM is in use\n[    0.744338] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.744815] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.744988] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.745054] In memshare_probe, Memshare probe success\n[    0.745886] subsys-pil-tz 15700000.qcom,lpass: invalid resource\n[    0.745890] subsys-pil-tz 15700000.qcom,lpass: Failed to iomap base register\n[    0.746781] subsys-pil-tz cce0000.qcom,venus: invalid resource\n[    0.746785] subsys-pil-tz cce0000.qcom,venus: Failed to iomap base register\n[    0.747399] subsys-pil-tz cce0000.qcom,venus: for venus segments only will be dumped.\n[    0.747841] subsys-pil-tz soc:qcom,kgsl-hyp: invalid resource\n[    0.747845] subsys-pil-tz soc:qcom,kgsl-hyp: Failed to iomap base register\n[    0.747858] subsys-pil-tz soc:qcom,kgsl-hyp: for a508_zap segments only will be dumped.\n[    0.749741] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    0.753080] pil: failed to find qcom,msm-imem-minidump node\n[    0.753651] msm-dcc 10b3000.dcc: DCC XPU is not specified\n[    0.758717] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.759273] icnss: Platform driver probed successfully\n[    0.763279] msm_rpm_log_probe: OK\n[    0.764040] last_subsyslog last_subsyslog: Last subsystem error log driver probe done.\n[    0.764563] msm_serial: driver initialized\n[    0.764905] uart_tx_gpio is not available\n[    0.764909] uart_rx_gpio is not available\n[    0.764912] uart_cts_gpio is not available\n[    0.764916] uart_rfr_gpio is not available\n[    0.766672] sps: BAM device 0x000000000c184000 is not registered yet.\n[    0.766863] sps:BAM 0x000000000c184000 is registered.\n[    0.768252] c1af000.uart: ttyHS0 at MMIO 0xc1af000 (irq = 126, base_baud = 460800) is a MSM HS UART\n[    0.769951] msm_serial_hs module loaded\n[    0.772417] random: nonblocking pool is initialized\n[    0.856766] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 8\n[    0.857280] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 9\n[    0.857771] kgsl_pool_config: Pool order:4 not supprted.!!\n[    0.884604] brd: module loaded\n[    0.895763] loop: module loaded\n[    0.897051] zram: Added device: zram0\n[    0.898249] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1001000\n[    0.898279] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.898287] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    0.898292] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    0.898599] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    0.903341] registering powerkey_handle handle for qpnp_pon\n[    0.904260] ldo_vibrator soc:ldo_vibrator: ldo_vibrator_probe: success\n[    0.906800] Loading pn544 driver\n[    0.906887] pn544_parse_dt: 28, 29, 30, 0, 31 error:0\n[    0.908183] pn544_probe : requesting IRQ 35\n[    0.908281] Loading pn544 pm ops driver\n[    0.908857] pn553-pm-ops soc:nfc,pm-ops: pn553_pm_ops_probe, probing pn553 PM OPS driver\n[    0.908862] pn553-pm-ops soc:nfc,pm-ops: pn553_pm_ops_probe, probe pn553 PM OPS driver successfully\n[    0.910133] sps: BAM device 0x000000000c144000 is not registered yet.\n[    0.910344] sps:BAM 0x000000000c144000 is registered.\n[    0.923150] sps:BAM 0x000000000c144000 (va:0xffffff8009c20000) enabled: ver:0x19, number of pipes:12\n[    0.924637] p61_parse_dt: 0\n[    0.926116] qce 1de0000.qcedev: Qualcomm Crypto 5.3.4 device found @0x1de0000\n[    0.926123] qce 1de0000.qcedev: CE device = 0x0\n               IO base, CE = 0xffffff8009d80000\n               Consumer (IN) PIPE 2,    Producer (OUT) PIPE 3\n               IO base BAM = 0x0000000000000000\n               BAM IRQ 205\n               Engines Availability = 0x2011053\n[    0.926321] sps:BAM 0x0000000001dc4000 is registered.\n[    0.926494] sps:BAM 0x0000000001dc4000 (va:0xffffff8009fc0000) enabled: ver:0x27, number of pipes:16\n[    0.926753] QCE50: qce_sps_init:  Qualcomm MSM CE-BAM at 0x0000000001dc4000 irq 205\n[    0.932932] qcrypto 1de0000.qcrypto: Qualcomm Crypto 5.3.4 device found @0x1de0000\n[    0.932940] qcrypto 1de0000.qcrypto: CE device = 0x0\n               IO base, CE = 0xffffff800b040000\n               Consumer (IN) PIPE 4,    Producer (OUT) PIPE 5\n               IO base BAM = 0x0000000000000000\n               BAM IRQ 205\n               Engines Availability = 0x2011053\n[    0.933300] QCE50: qce_sps_init:  Qualcomm MSM CE-BAM at 0x0000000001dc4000 irq 205\n[    0.936432] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    0.936546] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    0.936608] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    0.936667] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    0.936726] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    0.936788] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    0.936859] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    0.936921] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    0.936983] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    0.937043] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    0.937107] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    0.937168] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    0.937230] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    0.937291] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    0.937356] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    0.937416] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    0.937475] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    0.937534] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    0.937595] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    0.937653] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    0.940098] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    0.940559] SCSI Media Changer driver v0.25 \n[    0.941473] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    0.943751] tun: Universal TUN/TAP device driver, 1.6\n[    0.943756] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    0.943905] sky2: driver version 1.30\n[    0.944376] PPP generic driver version 2.4.2\n[    0.944469] PPP BSD Compression module registered\n[    0.944474] PPP Deflate Compression module registered\n[    0.944502] PPP MPPE Compression module registered\n[    0.944511] NET: Registered protocol family 24\n[    0.944615] CLD80211: Initializing\n[    0.947251] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.954608] msm-dwc3 a800000.ssusb: id polling is enabled\n[    0.954788] msm-dwc3 a800000.ssusb: unable to get dbm device\n[    0.956693] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.956718] ehci-pci: EHCI PCI platform driver\n[    0.956749] ehci-platform: EHCI generic platform driver\n[    0.957171] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    0.957182] ohci-pci: OHCI PCI platform driver\n[    0.957209] ohci-platform: OHCI generic platform driver\n[    0.957968] usbcore: registered new interface driver usb-storage\n[    0.957996] usbcore: registered new interface driver usb_ehset_test\n[    0.958479] msm_sharedmem: sharedmem_register_qmi: qmi init successful\n[    0.962868] qpnp-pdphy 800f000.qcom,spmi:qcom,pm660@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    0.963926] mousedev: PS/2 mouse device common for all mice\n[    0.964127] usbcore: registered new interface driver xpad\n[    1.171226] synaptics_tcm_i2c 1-003c: syna_tcm_dispatch_message: Received identify report (firmware mode = 0x01)\n[    1.267809] synaptics_tcm_i2c 1-003c: syna_tcm_dispatch_message: Received identify report (firmware mode = 0x01)\n[    1.495261] synaptics_tcm_i2c 1-003c: syna_tcm_reset: Firmware mode = 0x01\n[    1.498276] input: bu520x1nvx as /devices/virtual/input/input1\n[    1.499490] fpc1145 soc:fpc1145: vdd_ana-min-uV 3300000\n[    1.499496] fpc1145 soc:fpc1145: vdd_ana-max-uV 3600000\n[    1.499591] fpc1145 soc:fpc1145: found pin control fpc1145_reset_reset\n[    1.499596] fpc1145 soc:fpc1145: found pin control fpc1145_reset_active\n[    1.499599] fpc1145 soc:fpc1145: found pin control fpc1145_irq_active\n[    1.499843] fpc1145 soc:fpc1145: fpc1145_probe: ok\n[    1.499944] fpc1145_init OK\n[    1.501023] qcom,qpnp-rtc 800f000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: rtc core: registered qpnp_rtc as rtc0\n[    1.501348] i2c /dev entries driver\n[    1.502342] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb1 to group 10\n[    1.502821] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 8, cb->name: :vfe sid [0] = 3072\n               ,\n[    1.502826] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 8, cb->name: :vfe sid [1] = 3073\n               ,\n[    1.502830] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 8, cb->name: :vfe sid [2] = 3074\n               ,\n[    1.502833] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 8, cb->name: :vfe sid [3] = 3075\n               ,\n[    1.503122] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb2 to group 11\n[    1.503304] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 2, cb->name: :cpp sid [0] = 2560\n               ,\n[    1.503426] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb4 to group 12\n[    1.503521] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 2, cb->name: :jpeg_enc0 sid [0] = 2048\n               ,\n[    1.503622] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb5 to group 13\n[    1.503716] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 2, cb->name: :jpeg_dma sid [0] = 2049\n               ,\n[    1.514886] input: synaptics_tcm_touch as /devices/soc/c175000.i2c/i2c-1/1-003c/input/input2\n[    1.532997] msm_actuator_platform_probe:2129 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    1.533138] msm_actuator_platform_probe:2129 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    1.533243] msm_actuator_platform_probe:2129 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    1.534330] msm_eeprom_platform_probe failed 1676\n[    1.534684] msm_eeprom_platform_probe failed 1676\n[    1.534991] msm_eeprom_platform_probe failed 1676\n[    1.536464] qcom,camera-flash soc:qcom,camera-flash@0: Led led_flash0 renamed to led_flash0_1 due to name collision\n[    1.539803] thermal thermal_zone0: failed to read out thermal zone (-19)\n[    1.539937] thermal thermal_zone1: failed to read out thermal zone (-19)\n[    1.545512] MSM-CPP cpp_init_hardware:1146 CPP HW Version: 0x60010002\n[    1.545527] MSM-CPP cpp_init_hardware:1164 stream_cnt:0\n[    1.545863] MSM-CPP cpp_release_hardware:1227 cpp hw release done\n[    1.563797] __msm_jpeg_init:1582] Jpeg Device id 0\n[    1.577272] iommu: Adding device cc00000.qcom,vidc:non_secure_cb to group 14\n[    1.580108] iommu: Adding device cc00000.qcom,vidc:firmware_cb to group 15\n[    1.580313] iommu: Adding device cc00000.qcom,vidc:secure_bitstream_cb to group 16\n[    1.582351] iommu: Adding device cc00000.qcom,vidc:secure_pixel_cb to group 17\n[    1.583562] iommu: Adding device cc00000.qcom,vidc:secure_non_pixel_cb to group 18\n[    1.588179] sde_smmu_callback: <SDEROT_INFO> sde_smmu_callback registered domain: 1\n[    1.588190] sde_smmu_callback: <SDEROT_INFO> sde_smmu_callback registered domain: 0\n[    1.589294] No change in context(0==0), skip\n[    1.590444] sde_rotator_evtlog_create_debugfs: evtlog_status: enable:1, panic:1, dump:2\n[    1.590511] sde_rotator c900000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    1.593263] input: SOMC USB Removal as /devices/soc/800f000.qcom,spmi/spmi-0/spmi0-00/800f000.qcom,spmi:qcom,pm660@0:qcom,qpnp-smb2/input/input3\n[    1.595830] thermal thermal_zone2: failed to read out thermal zone (-19)\n[    1.596298] PMI: smblib_check_ov_condition: Couldn't get current voltage, rc=-61\n[    1.596380] PMI: smblib_handle_batt_temp_changed: IRQ: determine-initial-status\n[    1.596687] PMI: smblib_get_apsd_result: APSD not done yet.\n[    1.596966] PMI: smblib_get_prop_batt_capacity: Couldn't get prop capacity rc=-22\n[    1.602877] PMI: somc_usb_register: somc usb register success\n[    1.602954] QPNP SMB2 probed successfully usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    1.605479] PMI: smblib_get_prop_batt_capacity: Couldn't get prop capacity rc=-22\n[    1.606024] PMI: smblib_get_apsd_result: APSD not done yet.\n[    1.606214] qpnp_vadc_read: Error reading vadc_hc channel 77\n[    1.606223] thermal thermal_zone3: failed to read out thermal zone (-517)\n[    1.606343] qpnp_vadc_read: Error reading vadc_hc channel 78\n[    1.606348] thermal thermal_zone4: failed to read out thermal zone (-517)\n[    1.606453] qpnp_vadc_read: Error reading vadc_hc channel 79\n[    1.606457] thermal thermal_zone5: failed to read out thermal zone (-517)\n[    1.606567] qpnp_vadc_read: Error reading vadc_hc channel 80\n[    1.606571] thermal thermal_zone6: failed to read out thermal zone (-517)\n[    1.606677] qpnp_vadc_read: Error reading vadc_hc channel 82\n[    1.606681] thermal thermal_zone7: failed to read out thermal zone (-517)\n[    1.627139] msm_lmh_dcvs:lmh_activate_trip lmh_activate_trip: disable not supported\n[    1.628031] msm_lmh_dcvs:lmh_activate_trip lmh_activate_trip: disable not supported\n[    1.628466] md: linear personality registered for level -1\n[    1.628583] device-mapper: uevent: version 1.0.3\n[    1.628897] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com\n[    1.629993] device-mapper: req-crypt: dm-req-crypt successfully initalized.\n\n[    1.631001] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in device tree\n[    1.631091] bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    1.631095] bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    1.631763] sdhci: Secure Digital Host Controller Interface driver\n[    1.631767] sdhci: Copyright(c) Pierre Ossman\n[    1.631771] sdhci-pltfm: SDHCI platform and OF driver helper\n[    1.632308] qcom,leds-qpnp 800f000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000: rgb_sync prepare 1\n[    1.632333] qcom,leds-qpnp 800f000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000: color_variation_max_num[4] rgb_current_index[100]\n[    1.632339] qcom,leds-qpnp 800f000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000: single_pwm_value[126] mix_pwm_value[86]\n[    1.632343] qcom,leds-qpnp 800f000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000: max_current[126]\n[    1.632550] qcom,leds-qpnp 800f000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000: color_variation_max_num[4] rgb_current_index[100]\n[    1.632556] qcom,leds-qpnp 800f000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000: single_pwm_value[165] mix_pwm_value[305]\n[    1.632559] qcom,leds-qpnp 800f000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000: max_current[305]\n[    1.632670] qcom,leds-qpnp 800f000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000: color_variation_max_num[4] rgb_current_index[100]\n[    1.632675] qcom,leds-qpnp 800f000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000: single_pwm_value[511] mix_pwm_value[278]\n[    1.632679] qcom,leds-qpnp 800f000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000: max_current[511]\n[    1.636047] qcom_ice_get_pdevice: found ice device ffffffe6436b6e00\n[    1.636056] qcom_ice_get_pdevice: matching platform device ffffffe738b3e400\n[    1.636089] ## mmc0: gpio_is_valid(pdata->uim2_gpio)=-2: failure\n[    1.641002] usbcore: registered new interface driver usbhid\n[    1.641008] usbhid: USB HID core driver\n[    1.641154] ashmem: initialized\n[    1.642031] qpnp_coincell_charger_show_state: enabled=Y, voltage=3200 mV, resistance=2100 ohm\n[    1.646188] qcom_ice c0c8000.sdcc1ice: QC ICE 3.0.72 device found @0xffffff8009c10000\n[    1.646227] ## mmc0: can't set uim2_gpio: -2\n[    1.646691] sdhci_msm c0c4000.sdhci: No vmmc regulator found\n[    1.646696] sdhci_msm c0c4000.sdhci: No vqmmc regulator found\n[    1.647077] mmc0: SDHCI controller on c0c4000.sdhci [c0c4000.sdhci] using 64-bit ADMA in CMDQ mode\n[    1.714038] mmc0: Out-of-interrupt timeout is 100[ms]\n[    1.714044] mmc0: eMMC FW version: 0x02\n[    1.714047] mmc0: CMDQ supported: depth: 16\n[    1.714050] mmc0: cache barrier support 0 flush policy 0\n[    1.719399] cmdq_host_alloc_tdl: desc_size: 1024 data_sz: 63488 slot-sz: 32\n[    1.719579] mmc0: CMDQ enabled on card\n[    1.719591] mmc0: new HS400 Enhanced strobe MMC card at address 0001\n[    1.721126] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0xf) latency=-1\n[    1.721133] sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xf0) latency=-1\n[    1.721197] mmcblk0: mmc0:0001 DH6DAB 58.2 GiB \n[    1.722354] mmcblk0rpmb: mmc0:0001 DH6DAB partition 3 16.0 MiB\n[    1.724156]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42 p43 p44 p45 p46 p47 p48 p49 p50 p51 p52 p53 p54 p55 p56 p57 p58 p59 p60 p61 p62 p63 p64 p65 p66 p67 p68 p69 p70 p71 p72 p73 p74 p75 p76 p77 p78\n[    1.732515] sdhci_msm c084000.sdhci: sdhci_msm_probe: ICE device is not enabled\n[    1.732547] ## mmc1: gpio_is_valid(pdata->uim2_gpio)=-2: failure\n[    1.745687] ## mmc1: can't set uim2_gpio: -2\n[    1.746810] sdhci_msm c084000.sdhci: No vmmc regulator found\n[    1.746814] sdhci_msm c084000.sdhci: No vqmmc regulator found\n[    1.747180] mmc1: SDHCI controller on c084000.sdhci [c084000.sdhci] using 64-bit ADMA in legacy mode\n[    1.775462] name len 0\n[    1.775492] ------------[ cut here ]------------\n[    1.775495] WARNING: at ../fs/proc/generic.c:369\n[    1.775500] Modules linked in:\n\n[    1.775512] CPU: 0 PID: 362 Comm: kworker/u16:3 Not tainted 4.4.288-xtremedev-EMP++ #1\n[    1.775516] Hardware name: Sony Mobile Communications. mermaid(sdm630) (DT)\n[    1.775542] Workqueue: events_unbound async_run_entry_fn\n[    1.775545] task: ffffffe6437563c0 task.stack: ffffffe736fc8000\n[    1.775554] PC is at __proc_create+0x1f4/0x200\n[    1.775557] LR is at __proc_create+0x1f4/0x200\n[    1.775561] pc : [<ffffff8ac0668c84>] lr : [<ffffff8ac0668c84>] pstate: 60400045\n[    1.775563] sp : ffffffe736fcb7c0\n[    1.775565] x29: ffffffe736fcb7c0 x28: 0000000000000c0c \n[    1.775569] x27: ffffffe738a50620 x26: 0000000000000040 \n[    1.775572] x25: ffffffe738a5069c x24: ffffffe736fcb838 \n[    1.775576] x23: 0000000000000000 x22: 0000000000000002 \n[    1.775580] x21: 000000000000416d x20: ffffff8ac2a06000 \n[    1.775583] x19: ffffffe736fcb898 x18: 0000000000000010 \n[    1.775587] x17: 000000006fa87e4f x16: 00000000ccb51bbe \n[    1.775591] x15: ffffff8ac2a069c8 x14: ffffff8b42d31e7f \n[    1.775595] x13: ffffff8ac2d31e8d x12: 000000000000030a \n[    1.775598] x11: 0000000000000006 x10: 0000000005f5e0ff \n[    1.775602] x9 : 000000000000030b x8 : 00000000000bd526 \n[    1.775605] x7 : 0000000000000000 x6 : ffffff8ac2d31e99 \n[    1.775608] x5 : ffffff8ac1643958 x4 : 0000000000000000 \n[    1.775612] x3 : 0000000000000000 x2 : e8e8535e32f87ca1 \n[    1.775616] x1 : 0000000000000000 x0 : 000000000000000a \n[    1.775622] \n               PC: 0xffffff8ac0668c44:\n[    1.775625] 8c44  9000aa00 aa1303e1 911c4000 943d558b d4210000 d2800000 17ffffcd 710002ff\n[    1.775634] 8c64  54ffff0d 39400262 17ffffe2 97f8f9d6 9000aa00 2a1703e1 911c0000 943d557f\n[    1.775643] 8c84  d4210000 d2800000 17ffffc1 a9bb7bfd 910003fd a9025bf5 52801816 a90363f7\n[    1.775652] 8ca4  d0011cf7 a90153f3 900138f3 910da273 912722e1 aa0003f8 91002275 f9400020\n[    1.775661] \n               LR: 0xffffff8ac0668c44:\n[    1.775664] 8c44  9000aa00 aa1303e1 911c4000 943d558b d4210000 d2800000 17ffffcd 710002ff\n[    1.775672] 8c64  54ffff0d 39400262 17ffffe2 97f8f9d6 9000aa00 2a1703e1 911c0000 943d557f\n[    1.775680] 8c84  d4210000 d2800000 17ffffc1 a9bb7bfd 910003fd a9025bf5 52801816 a90363f7\n[    1.775689] 8ca4  d0011cf7 a90153f3 900138f3 910da273 912722e1 aa0003f8 91002275 f9400020\n[    1.775699] \n               SP: 0xffffffe736fcb780:\n[    1.775701] b780  c0668c84 ffffff8a 36fcb7c0 ffffffe7 c0668c84 ffffff8a 60400045 00000000\n[    1.775710] b7a0  ffffffff ffffffff 00000000 00000000 ffffffff ffffffff fefefefe fefefefe\n[    1.775719] b7c0  36fcb810 ffffffe7 c066901c ffffff8a 00000000 00000000 00000000 00000000\n[    1.775727] b7e0  3643fa80 ffffffe7 38a50600 ffffffe7 38a5069c ffffffe7 00000040 00000000\n\n[    1.775768] ---[ end trace 7cbcc482ab31ffd5 ]---\n[    1.775773] Call trace:\n[    1.775780] Exception stack(0xffffffe736fcb5d0 to 0xffffffe736fcb700)\n[    1.775785] b5c0:                                   ffffffe736fcb898 0000008000000000\n[    1.775790] b5e0: 0000000082cd4000 ffffff8ac0668c84 0000000060400045 0000000000000002\n[    1.775793] b600: 000000000000000a ffffff8ac2d742c8 00000000c2d31918 ffffff8ac2d722c8\n[    1.775798] b620: ffffffe736fcb6d0 ffffff8ac050d7a0 ffffff8ac2a06000 ffffff8ac050d768\n[    1.775802] b640: ffffff8ac1ba8700 0000000000000002 0000000000000000 ffffffe736fcb838\n[    1.775807] b660: ffffffe738a5069c 0000000000000040 ffffffe738a50620 0000000000000c0c\n[    1.775812] b680: 00000000000009c4 e8e8535e32f87ca1 000000000000000a 0000000000000000\n[    1.775815] b6a0: e8e8535e32f87ca1 0000000000000000 0000000000000000 ffffff8ac1643958\n[    1.775820] b6c0: ffffff8ac2d31e99 0000000000000000 00000000000bd526 000000000000030b\n[    1.775824] b6e0: 0000000005f5e0ff 0000000000000006 000000000000030a ffffff8ac2d31e8d\n[    1.775828] [<ffffff8ac0668c84>] __proc_create+0x1f4/0x200\n[    1.775833] [<ffffff8ac066901c>] proc_mkdir_data+0x3c/0xa8\n[    1.775836] [<ffffff8ac06690b8>] proc_mkdir+0x18/0x20\n[    1.775847] [<ffffff8ac05164fc>] register_handler_proc+0x12c/0x150\n[    1.775852] [<ffffff8ac0511030>] __setup_irq+0x460/0x6b8\n[    1.775855] [<ffffff8ac0511400>] request_threaded_irq+0xd0/0x188\n[    1.775861] [<ffffff8ac0513bcc>] devm_request_threaded_irq+0x74/0xe0\n[    1.775870] [<ffffff8ac0f9a170>] mmc_gpiod_request_cd_irq+0x90/0x108\n[    1.775875] [<ffffff8ac0f8a1b8>] mmc_start_host+0x58/0xa0\n[    1.775879] [<ffffff8ac0f8c110>] mmc_add_host+0xf0/0x198\n[    1.775885] [<ffffff8ac0fadaec>] sdhci_add_host+0xba4/0x1160\n[    1.775892] [<ffffff8ac0fb8308>] sdhci_msm_probe+0x1670/0x18d8\n[    1.775900] [<ffffff8ac0b55c88>] platform_drv_probe+0x50/0xb8\n[    1.775904] [<ffffff8ac0b53a54>] driver_probe_device+0x1bc/0x490\n[    1.775908] [<ffffff8ac0b53dc4>] __driver_attach+0x9c/0xa0\n[    1.775916] [<ffffff8ac0b51658>] bus_for_each_dev+0x70/0xc8\n[    1.775919] [<ffffff8ac0b53210>] driver_attach+0x20/0x28\n[    1.775924] [<ffffff8ac0b51c44>] driver_attach_async+0x14/0x58\n[    1.775927] [<ffffff8ac04cd114>] async_run_entry_fn+0x54/0x150\n[    1.775934] [<ffffff8ac04c3db4>] process_one_work+0x13c/0x4b8\n[    1.775938] [<ffffff8ac04c4260>] worker_thread+0x130/0x4e0\n[    1.775944] [<ffffff8ac04ca30c>] kthread+0xe4/0xf8\n[    1.775950] [<ffffff8ac0483b60>] ret_from_fork+0x10/0x30\n[    1.777100] bimc-bwmon 1008000.qcom,cpu-bwmon: BW HWmon governor registered.\n[    1.778802] arm-memlat-mon soc:qcom,arm-memlat-mon-0: Memory Latency governor registered.\n[    1.778855] arm-memlat-mon soc:qcom,arm-memlat-mon-4: Memory Latency governor registered.\n[    1.781900] devfreq soc:qcom,cpubw: Couldn't update frequency transition information.\n[    1.782005] devfreq soc:qcom,mincpubw: Couldn't update frequency transition information.\n[    1.782110] devfreq soc:qcom,memlat-cpu0: Couldn't update frequency transition information.\n[    1.782219] devfreq soc:qcom,memlat-cpu4: Couldn't update frequency transition information.\n[    1.788090] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    1.790441] usbcore: registered new interface driver snd-usb-audio\n[    1.797986] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.798514] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.809208] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx group_id: 0x9100\n[    1.809436] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0 dev_id: 0x9000\n[    1.809446] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.809475] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx group_id: 0x9101\n[    1.809651] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0 dev_id: 0x9001\n[    1.809659] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.809678] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx group_id: 0x9110\n[    1.809841] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0 dev_id: 0x9010\n[    1.809849] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.809869] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx group_id: 0x9111\n[    1.810445] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0 dev_id: 0x9011\n[    1.810452] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.810474] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx group_id: 0x9120\n[    1.810647] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0 dev_id: 0x9020\n[    1.810655] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.810677] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx group_id: 0x9121\n[    1.810876] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0 dev_id: 0x9021\n[    1.810883] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.810904] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx group_id: 0x9130\n[    1.811067] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0 dev_id: 0x9030\n[    1.811075] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.811096] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx group_id: 0x9131\n[    1.811254] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0 dev_id: 0x9031\n[    1.811262] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.815830] sony_hweffect_params_init\n[    1.818952] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.819442] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    1.827127] GACT probability NOT on\n[    1.827142] Mirror/redirect action on\n[    1.827160] u32 classifier\n[    1.827162]     Actions configured\n[    1.827183] Netfilter messages via NETLINK v0.30.\n[    1.827221] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    1.827432] ctnetlink v0.93: registering with nfnetlink.\n[    1.827874] xt_time: kernel timezone is -0000\n[    1.827937] IPv4 over IPsec tunneling driver\n[    1.828254] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    1.828404] arp_tables: (C) 2002 David S. Miller\n[    1.828462] Initializing XFRM netlink socket\n[    1.828699] NET: Registered protocol family 10\n[    1.830303] mip6: Mobile IPv6\n[    1.830316] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    1.830687] sit: IPv6 over IPv4 tunneling driver\n[    1.831089] NET: Registered protocol family 17\n[    1.831103] NET: Registered protocol family 15\n[    1.831129] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.\n[    1.831136] Ebtables v2.0 registered\n[    1.831173] l2tp_core: L2TP core driver, V2.0\n[    1.831183] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    1.831187] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    1.831202] l2tp_netlink: L2TP netlink interface\n[    1.831227] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    1.831232] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    1.832325] NET: Registered protocol family 27\n[    1.835714] subsys-pil-tz 15700000.qcom,lpass: invalid resource\n[    1.835720] subsys-pil-tz 15700000.qcom,lpass: Failed to iomap base register\n[    1.836177] subsys-pil-tz 15700000.qcom,lpass: for adsp segments only will be dumped.\n[    1.838223] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    1.838874] platform 4080000.qcom,mss:qcom,mba-mem@0: assigned reserved memory node pil_mba_region@94800000\n[    1.839277] pil-q6v5-mss 4080000.qcom,mss: for modem segments only will be dumped.\n[    1.839334] pil-q6v5-mss 4080000.qcom,mss: for md_modem segments only will be dumped.\n[    1.841706] msm-dwc3 a800000.ssusb: id polling is enabled\n[    1.844532] sps:BAM 0x000000000a904000 is registered.\n[    1.845176] Invalid index Defaulting curr to 0\n[    1.846945] smb2-vbus: registered ocp notification(notify=ffffff8ac0d3ce58, ctxt=ffffffe6b40b1000)\n[    1.856402] thermal thermal_zone27: failed to read out thermal zone (-19)\n[    1.858512] FG: fg_gen3_probe: battery SOC:20 voltage: 3917958uV temp: 297 id: 0KOhms\n[    1.859647] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.859853] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.860298] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.860661] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    1.866438] FG: fg_psy_get_property: unsupported property 4\n[    1.870502] msm-dwc3 a800000.ssusb: id polling is enabled\n[    1.873911] sps:BAM 0x000000000a904000 is registered.\n[    1.875755] FG: fg_get_time_to_full_locked: battery profile is not loaded\n[    1.876472] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.876695] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.877116] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.877329] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    1.883170] EDAC DEVICE0: Giving out device to module soc:arm64-cpu-erp controller cache: DEV soc:arm64-cpu-erp (POLLED)\n[    1.884381] ARM64 CPU ERP: Could not find <cci-irq> IRQ property. Proceeding anyway.\n[    1.886272] Registered cp15_barrier emulation handler\n[    1.886284] Registered setend emulation handler\n[    1.887417] registered taskstats version 1\n[    1.887438] Loading compiled-in X.509 certificates\n[    1.888936] Loaded X.509 cert 'Build time autogenerated kernel key: cd8c5a354875e5bf2794aaf9c6e89bfc2256dc82'\n[    1.889360] Loaded X.509 cert 'Android: 7e4333f9bba00adfe0ede979e28ed1920492b40f'\n[    1.889780] Loaded X.509 cert 'Sony Mobile Communications Inc.: DMVerity_Ganges_live_f1c1: 564a0c9ee92a54d3bd8f2919b86d28259c6e444d'\n[    1.890164] FG: fg_somc_get_real_temp: batt:297 aux:-2730 -> real battery temp:297\n[    1.892649] Key type encrypted registered\n[    1.894514] spss_utils [spss_init]: spss-utils driver Ver 1.2 13-Jan-2017.\n[    1.921627] scm_call failed: func id 0x42001601, ret: -2, syscall returns: 0x0, 0x0, 0x0\n[    1.922613] fastrpc soc:qcom,msm-adsprpc-mem: for adsp_rh segments only will be dumped.\n[    1.922751] ADSPRPC: gcinfo[0].heap_vmid 33\n[    1.923150] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 19\n[    1.930651] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 20\n[    1.938854] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 21\n[    1.940714] mmc1: new ultra high speed DDR50 SDXC card at address 59b4\n[    1.950772] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 22\n[    1.952557] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0xf) latency=-1\n[    1.952564] sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xf0) latency=-1\n[    1.972005] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.972218] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.972636] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.973078] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    1.979197] sim_detect soc:sim_detect: sim_detect driver was successful.\n[    1.980139] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.980303] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.980714] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.980992] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    1.986710] mmcblk1: mmc1:59b4 ED2S5 119 GiB \n[    1.986909] msm-dwc3 a800000.ssusb: DWC3 exited from low power mode\n[    1.987282] msm-dwc3 a800000.ssusb: DWC3 in low power mode\n[    1.991009] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.991214] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.991638] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.992083] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    1.998602]  mmcblk1: p1 p2\n[    1.999316] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.999485] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.999898] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    2.000244] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    2.005680] RNDIS_IPA module is loaded.\n[    2.006971] input: gpio-keys as /devices/soc/soc:gpio_keys/input/input4\n[    2.007486] qcom,qpnp-rtc 800f000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: setting system clock to 1971-05-15 08:00:31 UTC (43142431)\n[    2.009020] msm-core initialized without polling period\n[    2.010501] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    2.010787] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    2.011218] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    2.011436] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    2.019720] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    2.019908] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    2.020947] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    2.021472] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    2.029065] lmh_lite:lmh_parse_sensor Registering sensor:[GLM_soc]\n[    2.029271] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_cp1-]\n[    2.029376] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_cp0-]\n[    2.029554] soc:qcom,lmh supply vdd-apss not found, using dummy regulator\n[    2.029579] lmh_lite:lmh_get_sensor_devicetree Error getting ODCM thresh. err:-22\n[    2.031645] parse_cpu_levels: idx 1 609\n[    2.031648] parse_cpu_levels: idx 2 1012\n[    2.031651] parse_cpu_levels: idx 2 1848\n[    2.031702] parse_cpu_levels: idx 1 497\n[    2.031704] parse_cpu_levels: idx 2 1005\n[    2.031706] parse_cpu_levels: idx 2 2021\n[    2.034727] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    2.034978] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    2.035418] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    2.035761] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    2.042248] FG: fg_somc_get_real_temp: batt:297 aux:-2730 -> real battery temp:297\n[    2.045180] ipa-wan ipa_wwan_init:3286 Registering for q6_cleanup_cb\n[    2.045192] ipa register_ipa_platform_cb:2210 In register_ipa_platform_cb\n[    2.045197] ipa register_ipa_platform_cb:2213 reg q6_cleanup_cb\n[    2.045511] rmnet_ipa started initialization\n[    2.045514] IPA SSR support = True\n[    2.045517] IPA ipa-loaduC = True\n[    2.045519] IPA SG support = True\n[    2.045521] IPA Napi Enable = False\n[    2.045524] using default for wan-rx-desc-size = 1024\n[    2.046028] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    2.046217] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    2.046647] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    2.047027] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    2.059176] ipa ipa_sps_irq_control_all:963 EP (5) not allocated.\n[    2.059185] ipa ipa2_uc_state_check:301 uC is not loaded\n[    2.060004] rmnet_ipa completed initialization\n[    2.070595] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    2.070847] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    2.071290] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    2.071773] /soc/sound: could not get #gpio-cells for /soc/msm_cdc_pinctrl@75\n[    2.079797] gfx_mem_acc_corner: disabling\n[    2.079878] apc0_pwrcl_corner: disabling\n[    2.079882] apc1_perfcl_corner: disabling\n[    2.079886] cam_avdd_gpio_regulator: disabling\n[    2.079891] cam_dvdd_gpio_regulator: disabling\n[    2.079894] cam_rear_dvdd_gpio_regulator: disabling\n[    2.079898] cam_iovdd_gpio_regulator: disabling\n[    2.079909] gdsc_ufs: disabling\n[    2.079926] gdsc_venus: disabling\n[    2.079974] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    2.082316] ALSA device list:\n[    2.082319]   No soundcards found.\n[    2.082407] Warning: unable to open an initial console.\n[    2.084865] Freeing unused kernel memory: 10240K\n[    2.250677] FG: fg_somc_battery_data_get_best_profile: 1315-7716-0 found\n[    2.250692] FG: fg_get_batt_profile: No |  Range of Temp  | Range of VBATT  | Target FCC/FV Condition\n[    2.250697] FG: fg_get_batt_profile:  1 |  -2550 -     50 |      0 -   4500 |      0 4380 1\n[    2.250701] FG: fg_get_batt_profile:  2 |     50 -    120 |      0 -   4500 |    550 4380 2\n[    2.250705] FG: fg_get_batt_profile:  3 |    120 -    250 |      0 -   4100 |   1925 4380 3\n[    2.250709] FG: fg_get_batt_profile:  4 |    120 -    250 |   4100 -   4200 |   1375 4380 3\n[    2.250713] FG: fg_get_batt_profile:  5 |    120 -    250 |   4200 -   4300 |   1100 4380 3\n[    2.250717] FG: fg_get_batt_profile:  6 |    120 -    250 |   4300 -   4500 |    825 4380 3\n[    2.250720] FG: fg_get_batt_profile:  7 |    250 -    450 |      0 -   4150 |   2050 4380 3\n[    2.250724] FG: fg_get_batt_profile:  8 |    250 -    450 |   4150 -   4200 |   2050 4380 3\n[    2.250728] FG: fg_get_batt_profile:  9 |    250 -    450 |   4200 -   4300 |   1375 4380 3\n[    2.250732] FG: fg_get_batt_profile: 10 |    250 -    450 |   4300 -   4500 |    825 4380 3\n[    2.250736] FG: fg_get_batt_profile: 11 |    450 -    550 |      0 -   4500 |    825 4200 4\n[    2.250740] FG: fg_get_batt_profile: 12 |    550 -   2550 |      0 -   4500 |      0 4200 5\n[    2.255538] FG: is_profile_load_required: Battery profile is same, not loading it since force_load_profile is disabled\n[    2.255936] FG: profile_load_work: VBATT vs PREDICT : 3917958 vs 3927984\n[    2.257376] PMI: smblib_somc_handle_profile_fv: set fv:4380000\n[    3.005275] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: cpu1 cpu4 \n               Offline CPUs: cpu1 \n[    3.009626] CPU0: update max cpu_capacity 855\n[    3.022128] psci: CPU1 killed (polled 0 ms)\n[    3.023674] cpu2 \n[    3.044073] psci: CPU2 killed (polled 0 ms)\n[    3.045958] cpu3 \n[    3.064396] psci: CPU3 killed (polled 0 ms)\n[    3.066258] cpu4 \n[    3.086126] psci: CPU4 killed (polled 0 ms)\n[    3.087850] cpu5 \n[    3.105863] psci: CPU5 killed (polled 0 ms)\n[    3.107559] cpu6 \n[    3.126202] psci: CPU6 killed (polled 0 ms)\n[    3.127357] cpu7 \n[    3.145870] psci: CPU7 killed (polled 0 ms)\n\n[    3.591238] PMI: smblib_somc_removal_work: input_report_key KEY_F24\n[    3.742467] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    3.742484] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    3.873647] dwc3_msm_set_type_power_role(): typec power role=2\n[    5.871270] dwc3_setsink_work(): power role was changed to sink\n[    8.152289] Sampling power every 1000 ms\n               Baseline power usage: \n[   10.087770] FG: fg_somc_get_real_temp: batt:297 aux:-2730 -> real battery temp:297\n[   34.521241] synaptics_tcm_i2c 1-003c: reflash_startup_work (line 2038): Timed out waiting for FB ready\n[   83.263149] CPU1: Booted secondary processor [51af8014]\n[   84.269291] 1217 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 787 1113 1344 1516 1670 1881 2016 2150 2208\n               \n                787: \n[  139.381088] FG: fg_somc_get_real_temp: batt:297 aux:-2730 -> real battery temp:297\n[  210.636417]  2556     3.2 C/MHz     65 mW    7.6 J   39.5 I/mJ   117.4 s\n               1113: \n[  264.263434] FG: fg_somc_get_real_temp: batt:297 aux:-2730 -> real battery temp:297\n[  302.901545]  3609     3.2 C/MHz     98 mW    8.1 J   36.8 I/mJ    83.1 s\n               1344:  4339     3.2 C/MHz    112 mW    7.8 J   38.6 I/mJ    69.1 s\n               1516: \n[  387.688629] FG: fg_somc_get_real_temp: batt:300 aux:-2730 -> real battery temp:300\n[  450.353675]  4919     3.2 C/MHz    162 mW    9.9 J   30.4 I/mJ    61.0 s\n               1670: \n[  508.203344] FG: fg_somc_get_real_temp: batt:305 aux:-2730 -> real battery temp:305\n[  514.557612]  5424     3.2 C/MHz    158 mW    8.7 J   34.3 I/mJ    55.3 s\n               1881:  6088     3.2 C/MHz    207 mW   10.2 J   29.5 I/mJ    49.3 s\n               2016: \n[  624.343483] FG: fg_somc_get_real_temp: batt:305 aux:-2730 -> real battery temp:305\n[  626.938869]  6543     3.2 C/MHz    253 mW   11.6 J   25.9 I/mJ    45.9 s\n               2150:  6969     3.2 C/MHz    276 mW   11.9 J   25.2 I/mJ    43.1 s\n               2208: \n[  728.313428] psci: CPU1 killed (polled 0 ms)\n[  728.316866] CPU4: Booted secondary processor [51af8014]\n[  729.323109]  7135     3.2 C/MHz    284 mW   11.9 J   25.1 I/mJ    42.1 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 614 883 1094 1382 1536 1728 1843\n               \n                614: \n[  739.016803] FG: fg_somc_get_real_temp: batt:307 aux:-2730 -> real battery temp:307\n[  871.342532] FG: fg_somc_get_real_temp: batt:307 aux:-2730 -> real battery temp:307\n[  887.828710]  1995     3.2 C/MHz     53 mW    8.0 J   37.5 I/mJ   150.4 s\n                883:  2862     3.2 C/MHz     64 mW    6.7 J   44.5 I/mJ   104.8 s\n               1094: \n[ 1002.198298] FG: fg_somc_get_real_temp: batt:307 aux:-2730 -> real battery temp:307\n[ 1094.566718]  3554     3.2 C/MHz     97 mW    8.2 J   36.8 I/mJ    84.4 s\n               1382: \n[ 1131.565064] FG: fg_somc_get_real_temp: batt:310 aux:-2730 -> real battery temp:310\n[ 1169.861080]  4488     3.2 C/MHz    139 mW    9.3 J   32.3 I/mJ    66.9 s\n               1536:  4976     3.2 C/MHz    151 mW    9.1 J   33.0 I/mJ    60.3 s\n               1728: \n[ 1256.555226] FG: fg_somc_get_real_temp: batt:312 aux:-2730 -> real battery temp:312\n[ 1284.684119] PMI: smblib_get_apsd_result: APSD not done yet.\n[ 1284.712570] PMI: smblib_get_apsd_result: APSD not done yet.\n[ 1284.801301] PMI: smblib_get_apsd_result: APSD not done yet.\n[ 1284.921302] PMI: smblib_get_apsd_result: APSD not done yet.\n[ 1286.711074] PMI: smblib_somc_removal_work: input_report_key KEY_F24\n[ 1301.408158]  5611     3.2 C/MHz    197 mW   10.6 J   28.4 I/mJ    53.5 s\n               1843: \n[ 1360.684082] IRQ5 no longer affine to CPU4\n[ 1360.685963] psci: CPU4 killed (polled 0 ms)\n[ 1360.697042]  5948     3.2 C/MHz    242 mW   12.2 J   24.6 I/mJ    50.5 s\n               \n               \n               Benchmark finished!\n[ 1360.731624] \n               real\t22m38.544s\n               user\t18m58.761s\n               sys\t0m0.342s\n"
  },
  {
    "path": "results/sdm630/second/post_bench_interrupts.txt",
    "content": "           CPU0       \n  3:       1372     GICv3  19 Edge      arch_timer\n  5:     137193     GICv3  39 Level     arch_mem_timer\n 35:          0   msmgpio  28 Level     pn553\n 52:        600   msmgpio  45 Level     synaptics_tcm\n 61:          0   msmgpio  54 Edge      \n 71:          0   msmgpio  64 Edge      camera_focus\n 79:          0   msmgpio  72 Edge      soc:fpc1145\n 82:          0   msmgpio  75 Edge      lid\n 97:          0   msmgpio  90 Edge      sim-detection\n120:          0   msmgpio 113 Edge      camera_snapshot\n121:       1403     GICv3 127 Level     i2c-msm-v2-irq\n122:          0     GICv3 128 Level     i2c-msm-v2-irq\n123:          0     GICv3 134 Level     i2c-msm-v2-irq\n124:          0     GICv3 130 Level     c178000.spi\n125:          2     GICv3 270 Level     sps\n128:          0     GICv3 483 Edge      smp2p\n129:          0     GICv3 190 Edge      smp2p\n131:          0     GICv3 216 Level     tsens_interrupt\n132:          0     GICv3 462 Level     tsens_critical_interrupt\n133:          0     GICv3 166 Level     lmh-interrupt\n134:          0     GICv3  35 Edge      apps_wdog_bark\n136:          0     GICv3 323 Level     ngd_slim_irq\n138:          0     GICv3  75 Edge      ARM64 primary DBE IRQ\n139:          0     GICv3  76 Edge      ARM64 secondary DBE IRQ\n140:          0     GICv3  73 Edge      ARM64 primary ext IRQ\n141:          0     GICv3  74 Edge      ARM64 secondary ext IRQ\n143:          0     GICv3 365 Edge      ipa\n144:         18     GICv3 464 Level     sps\n145:          0     GICv3  67 Edge      OSM IRQ\n146:          0     GICv3  68 Edge      OSM IRQ\n147:          0     GICv3 484 Edge      qcom,glink-smem-native-xprt-modem\n148:          0     GICv3 189 Edge      qcom,glink-smem-native-xprt-adsp\n149:        562     GICv3 200 Edge      qcom,glink-smem-native-xprt-rpm\n162:          0     GICv3 194 Edge      adsp\n163:          0     GICv3 480 Edge      modem\n165:          0     GICv3  22 Edge      arm-pmu\n167:          0  pmic_arb 8388612 Edge      qpnp_kpdpwr_status\n168:          0  pmic_arb 8454148 Edge      qpnp_resin_status\n171:          0  pmic_arb 37748755 Edge      pm660_tz\n172:        687  pmic_arb 51380246 Edge      qpnp_vadc_interrupt\n173:          0  pmic_arb 24117262 Edge      sig-tx\n174:          0  pmic_arb 24182798 Edge      sig-rx\n175:          0  pmic_arb 24248334 Edge      msg-tx\n176:          0  pmic_arb 24313870 Edge      msg-rx\n177:          0  pmic_arb 24379406 Edge      msg-tx-failed\n178:          0  pmic_arb 24444942 Edge      msg-tx-discarded\n179:          0  pmic_arb 24510478 Edge      msg-rx-discarded\n180:          0  pmic_arb 54525976 Edge      qpnp_adc_tm_interrupt\n181:          0  pmic_arb 69206048 Edge      bcl_ibat_interrupt\n182:          0  pmic_arb 69337120 Edge      bcl_vbat_interrupt\n185:          0  pmic_arb 574619709 Edge      pm660l_tz\n186:          1  pmic_arb 1031864372 Edge      qpnp_wled_ovp_irq\n187:          0  pmic_arb 1026555953 Edge      qpnp_flash_led_fault_irq\n188:          0  pmic_arb 1026752561 Edge      qpnp_flash_led_all_ramp_down_done_irq\n189:          0  pmic_arb 1026818097 Edge      qpnp_flash_led_all_ramp_up_done_irq\n190:          0  pmic_arb 1052835884 Edge      qpnp_lcdb_sc_irq\n205:          0     GICv3 238 Level     sps\n206:          0     GICv3 224 Edge      spdm_bw_hyp\n207:          0     GICv3 317 Edge      cpr3\n209:          0     GICv3 379 Edge      hs_phy_irq\n210:          0     GICv3 275 Level     ss_phy_irq\n211:          0     GICv3 212 Edge      msm_dwc3\n212:         80     GICv3 142 Edge      mmc0\n213:          4     GICv3 144 Edge      c0c4000.sdhci\n214:         74     GICv3 157 Edge      mmc1\n215:          3     GICv3 253 Edge      c084000.sdhci\n216:          0     GICv3 261 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n217:          0     GICv3 263 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n218:          0     GICv3 405 Level     arm-smmu-context-fault\n219:          0     GICv3 406 Edge      arm-smmu-context-fault\n220:          0     GICv3 407 Edge      arm-smmu-context-fault\n247:          0     GICv3 258 Level     arm-smmu-context-fault\n248:          0     GICv3 425 Level     arm-smmu-context-fault\n249:          0     GICv3 426 Level     arm-smmu-context-fault\n250:          0     GICv3 427 Level     arm-smmu-context-fault\n251:          0     GICv3 428 Level     arm-smmu-context-fault\n265:          0     GICv3 298 Level     arm-smmu-context-fault\n266:          0     GICv3 299 Level     arm-smmu-context-fault\n267:          0     GICv3 300 Level     arm-smmu-context-fault\n268:          0     GICv3 276 Level     arm-smmu-context-fault\n297:          0     GICv3 332 Level     kgsl-3d0\n298:          0     GICv3 110 Edge      csiphy\n299:          0     GICv3 111 Edge      csiphy\n300:          0     GICv3 112 Edge      csiphy\n301:          0     GICv3 328 Edge      csid\n302:          0     GICv3 329 Edge      csid\n303:          0     GICv3 330 Edge      csid\n304:          0     GICv3 331 Edge      csid\n306:          0     GICv3 341 Edge      ispif\n307:          0     GICv3 346 Edge      vfe\n308:          0     GICv3 347 Edge      vfe\n309:          0     GICv3 327 Edge      cci\n312:          0     GICv3 203 Edge      7781b8.qcom,mpm\n313:          0     GICv3 319 Level     msm_vidc\n314:          0     GICv3 115 Edge      MDSS\n315:          0     GICv3  69 Level     limits_sensor-00\n316:          0     GICv3  70 Level     limits_sensor-01\n413:          0  pmic_arb 101777459 Edge      qpnp_rtc_alarm\n414:          0      mdss   2 Edge      sde_rotator_r3\n415:          0  pmic_arb 16777223 Edge      chg-error\n416:          0  pmic_arb 16842759 Edge      chg-state-change\n420:          0  pmic_arb 17825800 Edge      otg-fail\n421:          0  pmic_arb 17891336 Edge      otg-overcurrent\n422:          0  pmic_arb 17956872 Edge      otg-oc-dis-sw-sts\n423:          0  pmic_arb 18022408 Edge      testmode-change-detect\n424:          0  pmic_arb 18874377 Edge      bat-temp\n425:          0  pmic_arb 18939913 Edge      bat-ocp\n426:          0  pmic_arb 19005449 Edge      bat-ov\n427:          0  pmic_arb 19070985 Edge      bat-low\n428:          0  pmic_arb 19136521 Edge      bat-therm-or-id-missing\n429:          0  pmic_arb 19202057 Edge      bat-terminal-missing\n430:          2  pmic_arb 19922954 Edge      usbin-collapse\n431:          2  pmic_arb 19988490 Edge      usbin-lt-3p6v\n432:          2  pmic_arb 20054026 Edge      usbin-uv\n433:          0  pmic_arb 20119562 Edge      usbin-ov\n434:          2  pmic_arb 20185098 Edge      usbin-plugin\n435:          0  pmic_arb 20250634 Edge      usbin-src-change\n436:          0  pmic_arb 20316170 Edge      usbin-icl-change\n437:          0  pmic_arb 20381706 Edge      type-c-change\n438:          0  pmic_arb 20971531 Edge      dcin-collapse\n439:          0  pmic_arb 21037067 Edge      dcin-lt-3p6v\n440:          0  pmic_arb 21102603 Edge      dcin-uv\n441:          0  pmic_arb 21168139 Edge      dcin-ov\n442:          0  pmic_arb 21233675 Edge      dcin-plugin\n443:          0  pmic_arb 21299211 Edge      div2-en-dg\n444:          0  pmic_arb 21364747 Edge      dcin-icl-change\n446:          0  pmic_arb 23134221 Edge      wdog-bark\n447:          0  pmic_arb 23199757 Edge      aicl-fail\n448:          0  pmic_arb 23265293 Edge      aicl-done\n449:          0  pmic_arb 23330829 Edge      high-duty-cycle\n450:          0  pmic_arb 23396365 Edge      input-current-limiting\n451:          0  pmic_arb 23461901 Edge      temperature-change\n452:          0  pmic_arb 23527437 Edge      switcher-power-ok\n453:          0  smp2p_gpio   0 Edge      modem\n454:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n455:          0  smp2p_gpio   2 Edge      modem\n456:          0  smp2p_gpio   3 Edge      modem\n485:          0  smp2p_gpio   0 Edge      adsp\n486:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n487:          0  smp2p_gpio   2 Edge      adsp\n488:          0  smp2p_gpio   3 Edge      adsp\n517:          0     GICv3 163 Edge      dwc3\n519:          0  pmic_arb 67108894 Edge      soc-update\n520:          0  pmic_arb 67174430 Edge      soc-ready\n521:          0  pmic_arb 67239966 Edge      bsoc-delta\n522:         11  pmic_arb 67305502 Edge      msoc-delta\n523:          0  pmic_arb 67371038 Edge      msoc-low\n524:          0  pmic_arb 67436574 Edge      msoc-empty\n525:          0  pmic_arb 67502110 Edge      msoc-high\n526:          0  pmic_arb 67567646 Edge      msoc-full\n527:          0  pmic_arb 68157471 Edge      vbatt-pred-delta\n528:          0  pmic_arb 68223007 Edge      vbatt-low\n529:          0  pmic_arb 68288543 Edge      esr-delta\n530:          0  pmic_arb 68354079 Edge      batt-missing\n531:          0  pmic_arb 68550687 Edge      batt-temp-delta\n532:        468  pmic_arb 71303202 Edge      ima-rdy\n533:          0  pmic_arb 71368738 Edge      mem-xcp\n534:          0  pmic_arb 71434274 Edge      dma-grant\n535:          0  pmic_arb 744489127 Edge      volume_down\nIPI0:        76       Rescheduling interrupts\nIPI1:         0       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:        42       Timer broadcast interrupts\nIPI4:         0       IRQ work interrupts\nIPI5:         0       CPU wakeup interrupts\nIPI6:         0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm630/second/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  3:        616          3          3          3          2          2          2          2     GICv3  19 Edge      arch_timer\n  5:          0          0          0          0          0          0          0          0     GICv3  39 Level     arch_mem_timer\n 35:          0          0          0          0          0          0          0          0   msmgpio  28 Level     pn553\n 52:          4          0          0          0          0          0          0          0   msmgpio  45 Level     synaptics_tcm\n 61:          0          0          0          0          0          0          0          0   msmgpio  54 Edge      \n 71:          0          0          0          0          0          0          0          0   msmgpio  64 Edge      camera_focus\n 79:          0          0          0          0          0          0          0          0   msmgpio  72 Edge      soc:fpc1145\n 82:          0          0          0          0          0          0          0          0   msmgpio  75 Edge      lid\n 97:          0          0          0          0          0          0          0          0   msmgpio  90 Edge      sim-detection\n120:          0          0          0          0          0          0          0          0   msmgpio 113 Edge      camera_snapshot\n121:         15          0          0          0          0          0          0          0     GICv3 127 Level     i2c-msm-v2-irq\n122:          0          0          0          0          0          0          0          0     GICv3 128 Level     i2c-msm-v2-irq\n123:          0          0          0          0          0          0          0          0     GICv3 134 Level     i2c-msm-v2-irq\n124:          0          0          0          0          0          0          0          0     GICv3 130 Level     c178000.spi\n125:          1          0          0          0          0          0          0          0     GICv3 270 Level     sps\n128:          0          0          0          0          0          0          0          0     GICv3 483 Edge      smp2p\n129:          0          0          0          0          0          0          0          0     GICv3 190 Edge      smp2p\n131:          0          0          0          0          0          0          0          0     GICv3 216 Level     tsens_interrupt\n132:          0          0          0          0          0          0          0          0     GICv3 462 Level     tsens_critical_interrupt\n133:          0          0          0          0          0          0          0          0     GICv3 166 Level     lmh-interrupt\n134:          0          0          0          0          0          0          0          0     GICv3  35 Edge      apps_wdog_bark\n136:          0          0          0          0          0          0          0          0     GICv3 323 Level     ngd_slim_irq\n138:          0          0          0          0          0          0          0          0     GICv3  75 Edge      ARM64 primary DBE IRQ\n139:          0          0          0          0          0          0          0          0     GICv3  76 Edge      ARM64 secondary DBE IRQ\n140:          0          0          0          0          0          0          0          0     GICv3  73 Edge      ARM64 primary ext IRQ\n141:          0          0          0          0          0          0          0          0     GICv3  74 Edge      ARM64 secondary ext IRQ\n143:          0          0          0          0          0          0          0          0     GICv3 365 Edge      ipa\n144:         18          0          0          0          0          0          0          0     GICv3 464 Level     sps\n145:          0          0          0          0          0          0          0          0     GICv3  67 Edge      OSM IRQ\n146:          0          0          0          0          0          0          0          0     GICv3  68 Edge      OSM IRQ\n147:          0          0          0          0          0          0          0          0     GICv3 484 Edge      qcom,glink-smem-native-xprt-modem\n148:          0          0          0          0          0          0          0          0     GICv3 189 Edge      qcom,glink-smem-native-xprt-adsp\n149:        206          0          0          0          0          0          0          0     GICv3 200 Edge      qcom,glink-smem-native-xprt-rpm\n162:          0          0          0          0          0          0          0          0     GICv3 194 Edge      adsp\n163:          0          0          0          0          0          0          0          0     GICv3 480 Edge      modem\n165:          0          0          0          0          0          0          0          0     GICv3  22 Edge      arm-pmu\n167:          0          0          0          0          0          0          0          0  pmic_arb 8388612 Edge      qpnp_kpdpwr_status\n168:          0          0          0          0          0          0          0          0  pmic_arb 8454148 Edge      qpnp_resin_status\n171:          0          0          0          0          0          0          0          0  pmic_arb 37748755 Edge      pm660_tz\n172:          8          0          0          0          0          0          0          0  pmic_arb 51380246 Edge      qpnp_vadc_interrupt\n173:          0          0          0          0          0          0          0          0  pmic_arb 24117262 Edge      sig-tx\n174:          0          0          0          0          0          0          0          0  pmic_arb 24182798 Edge      sig-rx\n175:          0          0          0          0          0          0          0          0  pmic_arb 24248334 Edge      msg-tx\n176:          0          0          0          0          0          0          0          0  pmic_arb 24313870 Edge      msg-rx\n177:          0          0          0          0          0          0          0          0  pmic_arb 24379406 Edge      msg-tx-failed\n178:          0          0          0          0          0          0          0          0  pmic_arb 24444942 Edge      msg-tx-discarded\n179:          0          0          0          0          0          0          0          0  pmic_arb 24510478 Edge      msg-rx-discarded\n180:          0          0          0          0          0          0          0          0  pmic_arb 54525976 Edge      qpnp_adc_tm_interrupt\n181:          0          0          0          0          0          0          0          0  pmic_arb 69206048 Edge      bcl_ibat_interrupt\n182:          0          0          0          0          0          0          0          0  pmic_arb 69337120 Edge      bcl_vbat_interrupt\n185:          0          0          0          0          0          0          0          0  pmic_arb 574619709 Edge      pm660l_tz\n186:          1          0          0          0          0          0          0          0  pmic_arb 1031864372 Edge      qpnp_wled_ovp_irq\n187:          0          0          0          0          0          0          0          0  pmic_arb 1026555953 Edge      qpnp_flash_led_fault_irq\n188:          0          0          0          0          0          0          0          0  pmic_arb 1026752561 Edge      qpnp_flash_led_all_ramp_down_done_irq\n189:          0          0          0          0          0          0          0          0  pmic_arb 1026818097 Edge      qpnp_flash_led_all_ramp_up_done_irq\n190:          0          0          0          0          0          0          0          0  pmic_arb 1052835884 Edge      qpnp_lcdb_sc_irq\n205:          0          0          0          0          0          0          0          0     GICv3 238 Level     sps\n206:          0          0          0          0          0          0          0          0     GICv3 224 Edge      spdm_bw_hyp\n207:          0          0          0          0          0          0          0          0     GICv3 317 Edge      cpr3\n209:          0          0          0          0          0          0          0          0     GICv3 379 Edge      hs_phy_irq\n210:          0          0          0          0          0          0          0          0     GICv3 275 Level     ss_phy_irq\n211:          0          0          0          0          0          0          0          0     GICv3 212 Edge      msm_dwc3\n212:         68          0          0          0          0          0          0          0     GICv3 142 Edge      mmc0\n213:          3          0          0          0          0          0          0          0     GICv3 144 Edge      c0c4000.sdhci\n214:         73          0          0          0          0          0          0          0     GICv3 157 Edge      mmc1\n215:          2          0          0          0          0          0          0          0     GICv3 253 Edge      c084000.sdhci\n216:          0          0          0          0          0          0          0          0     GICv3 261 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n217:          0          0          0          0          0          0          0          0     GICv3 263 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n218:          0          0          0          0          0          0          0          0     GICv3 405 Level     arm-smmu-context-fault\n219:          0          0          0          0          0          0          0          0     GICv3 406 Edge      arm-smmu-context-fault\n220:          0          0          0          0          0          0          0          0     GICv3 407 Edge      arm-smmu-context-fault\n247:          0          0          0          0          0          0          0          0     GICv3 258 Level     arm-smmu-context-fault\n248:          0          0          0          0          0          0          0          0     GICv3 425 Level     arm-smmu-context-fault\n249:          0          0          0          0          0          0          0          0     GICv3 426 Level     arm-smmu-context-fault\n250:          0          0          0          0          0          0          0          0     GICv3 427 Level     arm-smmu-context-fault\n251:          0          0          0          0          0          0          0          0     GICv3 428 Level     arm-smmu-context-fault\n265:          0          0          0          0          0          0          0          0     GICv3 298 Level     arm-smmu-context-fault\n266:          0          0          0          0          0          0          0          0     GICv3 299 Level     arm-smmu-context-fault\n267:          0          0          0          0          0          0          0          0     GICv3 300 Level     arm-smmu-context-fault\n268:          0          0          0          0          0          0          0          0     GICv3 276 Level     arm-smmu-context-fault\n297:          0          0          0          0          0          0          0          0     GICv3 332 Level     kgsl-3d0\n298:          0          0          0          0          0          0          0          0     GICv3 110 Edge      csiphy\n299:          0          0          0          0          0          0          0          0     GICv3 111 Edge      csiphy\n300:          0          0          0          0          0          0          0          0     GICv3 112 Edge      csiphy\n301:          0          0          0          0          0          0          0          0     GICv3 328 Edge      csid\n302:          0          0          0          0          0          0          0          0     GICv3 329 Edge      csid\n303:          0          0          0          0          0          0          0          0     GICv3 330 Edge      csid\n304:          0          0          0          0          0          0          0          0     GICv3 331 Edge      csid\n306:          0          0          0          0          0          0          0          0     GICv3 341 Edge      ispif\n307:          0          0          0          0          0          0          0          0     GICv3 346 Edge      vfe\n308:          0          0          0          0          0          0          0          0     GICv3 347 Edge      vfe\n309:          0          0          0          0          0          0          0          0     GICv3 327 Edge      cci\n312:          0          0          0          0          0          0          0          0     GICv3 203 Edge      7781b8.qcom,mpm\n313:          0          0          0          0          0          0          0          0     GICv3 319 Level     msm_vidc\n314:          0          0          0          0          0          0          0          0     GICv3 115 Edge      MDSS\n315:          0          0          0          0          0          0          0          0     GICv3  69 Level     limits_sensor-00\n316:          0          0          0          0          0          0          0          0     GICv3  70 Level     limits_sensor-01\n413:          0          0          0          0          0          0          0          0  pmic_arb 101777459 Edge      qpnp_rtc_alarm\n414:          0          0          0          0          0          0          0          0      mdss   2 Edge      sde_rotator_r3\n415:          0          0          0          0          0          0          0          0  pmic_arb 16777223 Edge      chg-error\n416:          0          0          0          0          0          0          0          0  pmic_arb 16842759 Edge      chg-state-change\n420:          0          0          0          0          0          0          0          0  pmic_arb 17825800 Edge      otg-fail\n421:          0          0          0          0          0          0          0          0  pmic_arb 17891336 Edge      otg-overcurrent\n422:          0          0          0          0          0          0          0          0  pmic_arb 17956872 Edge      otg-oc-dis-sw-sts\n423:          0          0          0          0          0          0          0          0  pmic_arb 18022408 Edge      testmode-change-detect\n424:          0          0          0          0          0          0          0          0  pmic_arb 18874377 Edge      bat-temp\n425:          0          0          0          0          0          0          0          0  pmic_arb 18939913 Edge      bat-ocp\n426:          0          0          0          0          0          0          0          0  pmic_arb 19005449 Edge      bat-ov\n427:          0          0          0          0          0          0          0          0  pmic_arb 19070985 Edge      bat-low\n428:          0          0          0          0          0          0          0          0  pmic_arb 19136521 Edge      bat-therm-or-id-missing\n429:          0          0          0          0          0          0          0          0  pmic_arb 19202057 Edge      bat-terminal-missing\n430:          0          0          0          0          0          0          0          0  pmic_arb 19922954 Edge      usbin-collapse\n431:          0          0          0          0          0          0          0          0  pmic_arb 19988490 Edge      usbin-lt-3p6v\n432:          0          0          0          0          0          0          0          0  pmic_arb 20054026 Edge      usbin-uv\n433:          0          0          0          0          0          0          0          0  pmic_arb 20119562 Edge      usbin-ov\n434:          0          0          0          0          0          0          0          0  pmic_arb 20185098 Edge      usbin-plugin\n435:          0          0          0          0          0          0          0          0  pmic_arb 20250634 Edge      usbin-src-change\n436:          0          0          0          0          0          0          0          0  pmic_arb 20316170 Edge      usbin-icl-change\n437:          0          0          0          0          0          0          0          0  pmic_arb 20381706 Edge      type-c-change\n438:          0          0          0          0          0          0          0          0  pmic_arb 20971531 Edge      dcin-collapse\n439:          0          0          0          0          0          0          0          0  pmic_arb 21037067 Edge      dcin-lt-3p6v\n440:          0          0          0          0          0          0          0          0  pmic_arb 21102603 Edge      dcin-uv\n441:          0          0          0          0          0          0          0          0  pmic_arb 21168139 Edge      dcin-ov\n442:          0          0          0          0          0          0          0          0  pmic_arb 21233675 Edge      dcin-plugin\n443:          0          0          0          0          0          0          0          0  pmic_arb 21299211 Edge      div2-en-dg\n444:          0          0          0          0          0          0          0          0  pmic_arb 21364747 Edge      dcin-icl-change\n446:          0          0          0          0          0          0          0          0  pmic_arb 23134221 Edge      wdog-bark\n447:          0          0          0          0          0          0          0          0  pmic_arb 23199757 Edge      aicl-fail\n448:          0          0          0          0          0          0          0          0  pmic_arb 23265293 Edge      aicl-done\n449:          0          0          0          0          0          0          0          0  pmic_arb 23330829 Edge      high-duty-cycle\n450:          0          0          0          0          0          0          0          0  pmic_arb 23396365 Edge      input-current-limiting\n451:          0          0          0          0          0          0          0          0  pmic_arb 23461901 Edge      temperature-change\n452:          0          0          0          0          0          0          0          0  pmic_arb 23527437 Edge      switcher-power-ok\n453:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      modem\n454:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n455:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      modem\n456:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      modem\n485:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      adsp\n486:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n487:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      adsp\n488:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      adsp\n517:          0          0          0          0          0          0          0          0     GICv3 163 Edge      dwc3\n519:          0          0          0          0          0          0          0          0  pmic_arb 67108894 Edge      soc-update\n520:          0          0          0          0          0          0          0          0  pmic_arb 67174430 Edge      soc-ready\n521:          0          0          0          0          0          0          0          0  pmic_arb 67239966 Edge      bsoc-delta\n522:          0          0          0          0          0          0          0          0  pmic_arb 67305502 Edge      msoc-delta\n523:          0          0          0          0          0          0          0          0  pmic_arb 67371038 Edge      msoc-low\n524:          0          0          0          0          0          0          0          0  pmic_arb 67436574 Edge      msoc-empty\n525:          0          0          0          0          0          0          0          0  pmic_arb 67502110 Edge      msoc-high\n526:          0          0          0          0          0          0          0          0  pmic_arb 67567646 Edge      msoc-full\n527:          0          0          0          0          0          0          0          0  pmic_arb 68157471 Edge      vbatt-pred-delta\n528:          0          0          0          0          0          0          0          0  pmic_arb 68223007 Edge      vbatt-low\n529:          0          0          0          0          0          0          0          0  pmic_arb 68288543 Edge      esr-delta\n530:          0          0          0          0          0          0          0          0  pmic_arb 68354079 Edge      batt-missing\n531:          0          0          0          0          0          0          0          0  pmic_arb 68550687 Edge      batt-temp-delta\n532:         54          0          0          0          0          0          0          0  pmic_arb 71303202 Edge      ima-rdy\n533:          0          0          0          0          0          0          0          0  pmic_arb 71368738 Edge      mem-xcp\n534:          0          0          0          0          0          0          0          0  pmic_arb 71434274 Edge      dma-grant\n535:          0          0          0          0          0          0          0          0  pmic_arb 744489127 Edge      volume_down\nIPI0:         5          2          2          2          2          2          2          2       Rescheduling interrupts\nIPI1:         0         32         32         32         32         32         32         32       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI4:         0          0          0          0          0          0          0          0       IRQ work interrupts\nIPI5:         0          0          0          0          0          0          0          0       CPU wakeup interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm630/second/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [ksoftirqd/0]\n    5 root      0:00 [kworker/0:0H]\n    6 root      0:03 [kworker/u16:0]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [migration/1]\n   15 root      0:00 [ksoftirqd/1]\n   16 root      0:00 [kworker/1:0]\n   17 root      0:00 [kworker/1:0H]\n   18 root      0:00 [rcuop/1]\n   19 root      0:00 [rcuos/1]\n   20 root      0:00 [rcuob/1]\n   21 root      0:00 [migration/2]\n   22 root      0:00 [ksoftirqd/2]\n   23 root      0:00 [kworker/2:0]\n   24 root      0:00 [kworker/2:0H]\n   25 root      0:00 [rcuop/2]\n   26 root      0:00 [rcuos/2]\n   27 root      0:00 [rcuob/2]\n   28 root      0:00 [migration/3]\n   29 root      0:00 [ksoftirqd/3]\n   30 root      0:00 [kworker/3:0]\n   31 root      0:00 [kworker/3:0H]\n   32 root      0:00 [rcuop/3]\n   33 root      0:00 [rcuos/3]\n   34 root      0:00 [rcuob/3]\n   35 root      0:00 [migration/4]\n   36 root      0:00 [ksoftirqd/4]\n   37 root      0:00 [kworker/4:0]\n   38 root      0:00 [kworker/4:0H]\n   39 root      0:00 [rcuop/4]\n   40 root      0:00 [rcuos/4]\n   41 root      0:00 [rcuob/4]\n   42 root      0:00 [migration/5]\n   43 root      0:00 [ksoftirqd/5]\n   44 root      0:00 [kworker/5:0]\n   45 root      0:00 [kworker/5:0H]\n   46 root      0:00 [rcuop/5]\n   47 root      0:00 [rcuos/5]\n   48 root      0:00 [rcuob/5]\n   49 root      0:00 [migration/6]\n   50 root      0:00 [ksoftirqd/6]\n   51 root      0:00 [kworker/6:0]\n   52 root      0:00 [kworker/6:0H]\n   53 root      0:00 [rcuop/6]\n   54 root      0:00 [rcuos/6]\n   55 root      0:00 [rcuob/6]\n   56 root      0:00 [migration/7]\n   57 root      0:00 [ksoftirqd/7]\n   58 root      0:00 [kworker/7:0]\n   59 root      0:00 [kworker/7:0H]\n   60 root      0:00 [rcuop/7]\n   61 root      0:00 [rcuos/7]\n   62 root      0:00 [rcuob/7]\n   63 root      0:00 [kdevtmpfs]\n   64 root      0:00 [netns]\n   65 root      0:00 [perf]\n   66 root      0:00 [kworker/0:1]\n   67 root      0:00 [smd_channel_clo]\n   68 root      0:00 [dsps_smd_trans_]\n   69 root      0:00 [lpass_smd_trans]\n   70 root      0:00 [mpss_smd_trans_]\n   71 root      0:00 [wcnss_smd_trans]\n   72 root      0:00 [rpm_smd_trans_g]\n   73 root      0:00 [ipa_usb_wq]\n   74 root      0:00 [msm_watchdog]\n   75 root      0:00 [smem_native_mps]\n   76 root      0:00 [mpss_smem_glink]\n   77 root      0:00 [smem_native_lpa]\n   78 root      0:00 [lpass_smem_glin]\n   79 root      0:00 [smem_native_rpm]\n   80 root      0:00 [rpm_smem_glink_]\n   81 root      0:00 [rpm_requests]\n   82 root      0:00 [kworker/u16:1]\n   83 root      0:00 [deferwq]\n   84 root      0:00 [irq/207-cpr3]\n   85 root      0:00 [mpm]\n   87 root      0:00 [writeback]\n   88 root      0:00 [kcompactd0]\n   89 root      0:00 [ksmd]\n   90 root      0:00 [crypto]\n   91 root      0:00 [bioset]\n   92 root      0:00 [kblockd]\n   93 root      0:00 [md]\n   94 root      0:00 [edac-poller]\n   95 root      0:00 [system]\n   96 root      0:00 [irq/216-arm-smm]\n   97 root      0:00 [irq/217-arm-smm]\n   98 root      0:00 [irq/216-arm-smm]\n   99 root      0:00 [irq/217-arm-smm]\n  100 root      0:00 [irq/216-arm-smm]\n  101 root      0:00 [irq/217-arm-smm]\n  102 root      0:00 [irq/216-arm-smm]\n  103 root      0:00 [irq/217-arm-smm]\n  104 root      0:00 [devfreq_wq]\n  105 root      0:00 [governor_msm_ad]\n  106 root      0:00 [cfg80211]\n  107 root      0:00 [irq/190-qpnp_lc]\n  108 root      0:00 [irq/218-arm-smm]\n  109 root      0:00 [ipa_power_mgmt]\n  110 root      0:00 [sps_ipa_power_m]\n  111 root      0:00 [kworker/u17:0]\n  112 root      0:00 [ipawq15]\n  113 root      0:00 [iparepwq15]\n  114 root      0:00 [kworker/u17:1]\n  115 root      0:00 [ipawq48]\n  116 root      0:00 [iparepwq48]\n  117 root      0:00 [ipawq14]\n  118 root      0:00 [iparepwq14]\n  119 root      0:00 [ipa_rm_wq]\n  120 root      0:00 [ipa_interrupt_w]\n  121 root      0:00 [ipa_holb_wq]\n  122 root      0:00 [irq/219-arm-smm]\n  123 root      0:00 [irq/182-bcl_vba]\n  124 root      0:00 [irq/181-bcl_iba]\n  150 root      0:00 [kswapd0]\n  151 root      0:00 [vmstat]\n  152 root      0:00 [fsnotify_mark]\n  153 root      0:00 [ecryptfs-kthrea]\n  188 root      0:00 [ad_calc_wq]\n  189 root      0:00 [mdss_dsi_event]\n  190 root      0:00 [mdss_dsi_dba]\n  191 root      0:00 [cwb_wq]\n  192 root      0:00 [unblanker]\n  193 root      0:00 [cwb_wq]\n  195 root      0:00 [glink_ssr_wq]\n  196 root      0:00 [glink_lbsrv]\n  197 root      0:00 [glink_xprt_wq]\n  198 root      0:00 [IPCRTR_mpss_sme]\n  199 root      0:00 [IPCRTR_lpass_sm]\n  200 root      0:00 [apr_driver]\n  201 root      0:00 [glink_pkt_wq]\n  202 root      0:00 [mem_share_svc]\n  203 root      0:00 [irq/220-arm-smm]\n  204 root      0:00 [qmi_svc_event_w]\n  205 root      0:00 [qmi_hndl0000000]\n  206 root      0:00 [msm_ipc_router]\n  207 root      0:00 [servloc_wq]\n  208 root      0:00 [k_hsuart]\n  209 root      0:00 [msm_serial_hs_0]\n  210 root      0:00 [msm_serial_hs_0]\n  211 root      0:00 [hwrng]\n  214 root      0:00 [diag_real_time_]\n  215 root      0:00 [diag_wq]\n  216 root      0:00 [DIAG_USB_diag]\n  217 root      0:00 [diag_cntl_wq]\n  218 root      0:00 [diag_dci_wq]\n  219 root      0:00 [DIAG_SMD_MODEM_]\n  220 root      0:00 [DIAG_SMD_MODEM_]\n  221 root      0:00 [DIAG_SMD_MODEM_]\n  222 root      0:00 [DIAG_SMD_MODEM_]\n  223 root      0:00 [DIAG_SMD_MODEM_]\n  224 root      0:00 [DIAG_SMD_LPASS_]\n  225 root      0:00 [DIAG_SMD_LPASS_]\n  226 root      0:00 [DIAG_SMD_LPASS_]\n  227 root      0:00 [DIAG_SMD_LPASS_]\n  228 root      0:00 [DIAG_SMD_LPASS_]\n  229 root      0:00 [DIAG_SMD_WCNSS_]\n  230 root      0:00 [DIAG_SMD_WCNSS_]\n  231 root      0:00 [DIAG_SMD_WCNSS_]\n  232 root      0:00 [DIAG_SMD_WCNSS_]\n  233 root      0:00 [DIAG_SMD_WCNSS_]\n  234 root      0:00 [DIAG_SMD_SENSOR]\n  235 root      0:00 [DIAG_SMD_SENSOR]\n  236 root      0:00 [DIAG_SMD_SENSOR]\n  237 root      0:00 [DIAG_SMD_SENSOR]\n  238 root      0:00 [DIAG_SMD_SENSOR]\n  239 root      0:00 [DIAG_SMD_DIAG_C]\n  240 root      0:00 [DIAG_SMD_DIAG_D]\n  241 root      0:00 [DIAG_SMD_DIAG_C]\n  242 root      0:00 [DIAG_SMD_DIAG_D]\n  243 root      0:00 [DIAG_SMD_DIAG_D]\n  244 root      0:00 [DIAG_SMD_CDSP_C]\n  245 root      0:00 [DIAG_SMD_CDSP_D]\n  246 root      0:00 [DIAG_SMD_CDSP_C]\n  247 root      0:00 [DIAG_SMD_CDSP_D]\n  248 root      0:00 [DIAG_SMD_CDSP_D]\n  249 root      0:00 [DIAG_SOCKMODEM_]\n  250 root      0:00 [DIAG_SOCKMODEM_]\n  251 root      0:00 [DIAG_SOCKMODEM_]\n  252 root      0:00 [DIAG_SOCKMODEM_]\n  253 root      0:00 [DIAG_SOCKMODEM_]\n  254 root      0:00 [DIAG_SOCKLPASS_]\n  255 root      0:00 [DIAG_SOCKLPASS_]\n  256 root      0:00 [DIAG_SOCKLPASS_]\n  257 root      0:00 [DIAG_SOCKLPASS_]\n  258 root      0:00 [DIAG_SOCKLPASS_]\n  259 root      0:00 [DIAG_SOCKWCNSS_]\n  260 root      0:00 [DIAG_SOCKWCNSS_]\n  261 root      0:00 [DIAG_SOCKWCNSS_]\n  262 root      0:00 [DIAG_SOCKWCNSS_]\n  263 root      0:00 [DIAG_SOCKWCNSS_]\n  264 root      0:00 [DIAG_SOCKSENSOR]\n  265 root      0:00 [DIAG_SOCKSENSOR]\n  266 root      0:00 [DIAG_SOCKSENSOR]\n  267 root      0:00 [DIAG_SOCKSENSOR]\n  268 root      0:00 [DIAG_SOCKSENSOR]\n  269 root      0:00 [DIAG_SOCKDIAG_C]\n  270 root      0:00 [DIAG_SOCKDIAG_D]\n  271 root      0:00 [DIAG_SOCKDIAG_C]\n  272 root      0:00 [DIAG_SOCKDIAG_D]\n  273 root      0:00 [DIAG_SOCKDIAG_D]\n  274 root      0:00 [DIAG_SOCKCDSP_C]\n  275 root      0:00 [DIAG_SOCKCDSP_D]\n  276 root      0:00 [DIAG_SOCKCDSP_C]\n  277 root      0:00 [DIAG_SOCKCDSP_D]\n  278 root      0:00 [DIAG_SOCKCDSP_D]\n  279 root      0:00 [DIAG_CNTL_SOCKE]\n  280 root      0:00 [DIAG_GLINK_DIAG]\n  281 root      0:00 [DIAG_GLINK_DIAG]\n  282 root      0:00 [DIAG_GLINK_DIAG]\n  283 root      0:00 [DIAG_GLINK_DIAG]\n  284 root      0:00 [DIAG_GLINK_DIAG]\n  285 root      0:00 [kgsl-workqueue]\n  286 root      0:00 [kgsl-mementry]\n  287 root      0:00 [kgsl_worker_thr]\n  288 root      0:00 [kgsl-events]\n  289 root      0:00 [kgsl_devfreq_wq]\n  290 root      0:00 [bioset]\n  291 root      0:00 [bioset]\n  292 root      0:00 [bioset]\n  293 root      0:00 [bioset]\n  294 root      0:00 [bioset]\n  295 root      0:00 [bioset]\n  296 root      0:00 [bioset]\n  297 root      0:00 [bioset]\n  298 root      0:00 [bioset]\n  299 root      0:00 [bioset]\n  300 root      0:00 [bioset]\n  301 root      0:00 [bioset]\n  302 root      0:00 [bioset]\n  303 root      0:00 [bioset]\n  304 root      0:00 [bioset]\n  305 root      0:00 [bioset]\n  306 root      0:00 [bioset]\n  307 root      0:00 [bioset]\n  308 root      0:00 [bioset]\n  309 root      0:00 [bioset]\n  310 root      0:00 [bioset]\n  311 root      0:00 [bioset]\n  312 root      0:00 [bioset]\n  313 root      0:00 [bioset]\n  314 root      0:00 [bioset]\n  315 root      0:00 [qseecom-unreg-l]\n  316 root      0:00 [qseecom-unload-]\n  317 root      0:00 [memory_wq]\n  318 root      0:00 [SecTimerCbWq]\n  319 root      0:00 [spi4]\n  320 root      0:00 [qcrypto_seq_res]\n  341 root      0:00 [bond0]\n  342 root      0:00 [sharedmem_qmi_w]\n  343 root      0:00 [k_sm_usb]\n  345 root      0:00 [qmi_hndl0000000]\n  349 root      0:00 [uether]\n  352 root      0:00 [syna_tcm_report]\n  353 root      0:00 [syna_tcm_helper]\n  354 root      0:00 [syna_tcm_resume]\n  355 root      0:00 [syna_tcm_watchd]\n  356 root      0:00 [syna_tcm_pollin]\n  357 root      0:00 [irq/52-synaptic]\n  358 root      0:00 [syna_tcm_module]\n  359 root      0:00 [syna_tcm_reflas]\n  360 root      0:00 [irq/79-soc:fpc1]\n  361 root      0:00 [msm_cci_wq]\n  362 root      0:02 [kworker/u16:3]\n  363 root      0:00 [msm_cci_wq]\n  364 root      0:00 [therm_core:noti]\n  365 root      0:00 [therm_core:noti]\n  366 root      0:00 [msm_cpp_workque]\n  367 root      0:00 [msm_vidc_worker]\n  368 root      0:00 [pm_workerq_venu]\n  369 root      0:00 [irq/265-arm-smm]\n  370 root      0:00 [irq/266-arm-smm]\n  371 root      0:00 [irq/267-arm-smm]\n  372 root      0:00 [irq/268-arm-smm]\n  373 root      0:00 [rot_commitq_0_0]\n  374 root      0:00 [rot_commitq_0_1]\n  375 root      0:00 [rot_doneq_0_0]\n  376 root      0:00 [rot_doneq_0_1]\n  377 root      0:00 [therm_core:noti]\n  378 root      0:00 [irq/415-chg-err]\n  379 root      0:00 [irq/416-chg-sta]\n  380 root      0:00 [irq/420-otg-fai]\n  381 root      0:00 [irq/421-otg-ove]\n  382 root      0:00 [irq/422-otg-oc-]\n  383 root      0:00 [irq/423-testmod]\n  384 root      0:00 [irq/424-bat-tem]\n  385 root      0:00 [irq/425-bat-ocp]\n  386 root      0:00 [irq/426-bat-ov]\n  387 root      0:00 [irq/427-bat-low]\n  388 root      0:00 [irq/428-bat-the]\n  389 root      0:00 [irq/429-bat-ter]\n  390 root      0:00 [irq/430-usbin-c]\n  391 root      0:00 [irq/431-usbin-l]\n  392 root      0:00 [irq/432-usbin-u]\n  393 root      0:00 [irq/433-usbin-o]\n  394 root      0:00 [irq/434-usbin-p]\n  395 root      0:00 [irq/435-usbin-s]\n  396 root      0:00 [kworker/0:4]\n  397 root      0:00 [irq/436-usbin-i]\n  398 root      0:00 [irq/437-type-c-]\n  399 root      0:00 [irq/438-dcin-co]\n  400 root      0:00 [irq/439-dcin-lt]\n  401 root      0:00 [irq/440-dcin-uv]\n  402 root      0:00 [irq/441-dcin-ov]\n  403 root      0:00 [irq/442-dcin-pl]\n  404 root      0:00 [irq/443-div2-en]\n  406 root      0:00 [irq/444-dcin-ic]\n  407 root      0:00 [irq/446-wdog-ba]\n  408 root      0:00 [irq/447-aicl-fa]\n  409 root      0:00 [irq/448-aicl-do]\n  410 root      0:00 [irq/449-high-du]\n  411 root      0:00 [irq/450-input-c]\n  412 root      0:00 [irq/451-tempera]\n  414 root      0:00 [irq/452-switche]\n  415 root      0:00 [therm_core:noti]\n  416 root      0:00 [therm_core:noti]\n  417 root      0:00 [therm_core:noti]\n  418 root      0:00 [therm_core:noti]\n  419 root      0:00 [therm_core:noti]\n  420 root      0:00 [therm_core:noti]\n  421 root      0:00 [therm_core:noti]\n  422 root      0:00 [therm_core:noti]\n  423 root      0:00 [therm_core:noti]\n  424 root      0:00 [therm_core:noti]\n  425 root      0:00 [therm_core:noti]\n  426 root      0:00 [therm_core:noti]\n  427 root      0:00 [therm_core:noti]\n  428 root      0:00 [therm_core:noti]\n  429 root      0:00 [therm_core:noti]\n  430 root      0:00 [therm_core:noti]\n  431 root      0:00 [therm_core:noti]\n  432 root      0:00 [therm_core:noti]\n  433 root      0:00 [therm_core:noti]\n  434 root      0:00 [therm_core:noti]\n  435 root      0:00 [therm_core:noti]\n  436 root      0:00 [therm_core:noti]\n  437 root      0:00 [irq/131-tsens_i]\n  438 root      0:00 [irq/132-tsens_c]\n  439 root      0:00 [therm_core:noti]\n  440 root      0:00 [irq/315-limits_]\n  441 root      0:00 [therm_core:noti]\n  442 root      0:00 [irq/316-limits_]\n  443 root      0:00 [dm_bufio_cache]\n  444 root      0:00 [irq/186-qpnp_wl]\n  446 root      0:00 [irq/213-c0c4000]\n  447 root      0:00 [irq/212-mmc0]\n  449 root      0:00 [bioset]\n  450 root      0:00 [mmc-cmdqd/0]\n  451 root      0:00 [bioset]\n  452 root      0:00 [mmcqd/0rpmb]\n  453 root      0:00 [irq/215-c084000]\n  454 root      0:00 [irq/214-mmc1]\n  455 root      0:00 [irq/61-]\n  456 root      0:00 [irq/206-spdm_bw]\n  457 root      0:00 [binder]\n  458 root      0:00 [irq/247-arm-smm]\n  459 root      0:00 [uaudio_svc]\n  460 root      0:00 [qmi_hndl0000000]\n  461 root      0:00 [ipv6_addrconf]\n  462 root      0:00 [irq/487-adsp]\n  463 root      0:00 [sysmon_wq]\n  464 root      0:00 [irq/455-modem]\n  465 root      0:00 [k_sm_usb]\n  470 root      0:00 [irq/173-sig-tx]\n  471 root      0:00 [irq/174-sig-rx]\n  472 root      0:00 [therm_core:noti]\n  473 root      0:00 [irq/519-soc-upd]\n  474 root      0:00 [irq/520-soc-rea]\n  475 root      0:00 [irq/521-bsoc-de]\n  476 root      0:00 [irq/522-msoc-de]\n  477 root      0:00 [irq/523-msoc-lo]\n  478 root      0:00 [irq/524-msoc-em]\n  479 root      0:00 [irq/525-msoc-hi]\n  480 root      0:00 [irq/526-msoc-fu]\n  481 root      0:00 [irq/527-vbatt-p]\n  482 root      0:00 [irq/528-vbatt-l]\n  483 root      0:00 [irq/529-esr-del]\n  484 root      0:00 [irq/530-batt-mi]\n  485 root      0:00 [irq/531-batt-te]\n  486 root      0:00 [irq/532-ima-rdy]\n  487 root      0:00 [irq/533-mem-xcp]\n  488 root      0:00 [irq/534-dma-gra]\n  489 root      0:00 [k_sm_usb]\n  490 root      0:00 [irq/209-hs_phy_]\n  491 root      0:00 [irq/210-ss_phy_]\n  492 root      0:00 [irq/211-msm_dwc]\n  493 root      0:00 [usb_bam_wq]\n  494 root      0:00 [id_polling_q]\n  495 root      0:00 [irq/138-ARM64 p]\n  496 root      0:00 [irq/139-ARM64 s]\n  497 root      0:00 [irq/140-ARM64 p]\n  498 root      0:00 [irq/141-ARM64 s]\n  507 root      0:00 [rq_stats]\n  509 root      0:00 [irq/248-arm-smm]\n  510 root      0:00 [irq/249-arm-smm]\n  511 root      0:00 [irq/250-arm-smm]\n  512 root      0:00 [bioset]\n  513 root      0:00 [irq/251-arm-smm]\n  514 root      0:00 [mmcqd/1]\n  515 root      0:00 [sb-3]\n  517 root      0:00 [ngd_rx_thread3]\n  518 root      0:00 [ngd_notify_sl3]\n  519 root      0:00 [msm-core:sampli]\n  520 root      0:00 [msm_thermal:hot]\n  521 root      0:00 [kworker/0:1H]\n  522 root      0:00 [msm_thermal:fre]\n  523 root      0:00 [msm_thermal:the]\n  524 root      0:00 [therm_core:noti]\n  525 root      0:00 [therm_core:noti]\n  526 root      0:00 [therm_core:noti]\n  527 root      0:00 [irq/133-lmh-int]\n  528 root      0:00 [irq/189-qpnp_fl]\n  529 root      0:00 [irq/188-qpnp_fl]\n  530 root      0:00 [irq/187-qpnp_fl]\n  531 root      0:00 [ipa_A7_svc]\n  532 root      0:00 [qmi_hndl0000000]\n  533 root      0:00 [clnt_req]\n  534 root      0:00 [clnt_resp]\n  535 root      0:00 [clnt_req]\n  546 root      0:00 [kworker/1:1H]\n  547 root      0:00 [kworker/1:1]\n  548 root      0:00 [kworker/2:1H]\n  549 root      0:00 [kworker/3:1H]\n  550 root      0:00 [kworker/2:1]\n  551 root      0:00 [kworker/3:1]\n  552 root      0:00 [kworker/4:1H]\n  553 root      0:00 [kworker/4:1]\n  554 root      0:00 [kworker/5:1H]\n  555 root      0:00 [kworker/5:1]\n  556 root      0:00 [kworker/6:1H]\n  557 root      0:00 [kworker/6:1]\n  558 root      0:00 [kworker/7:1H]\n  559 root      0:00 [kworker/7:1]\n  574 root      0:02 [kworker/u16:2]\n  590 root      0:00 [kworker/0:0]\n  597 root      0:00 [kworker/0:2]\n  613 root      0:00 [kworker/0:3]\n  657 root      0:00 ps -A\n"
  },
  {
    "path": "results/sdm630/second/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,787200,2556.215438,3.2472248958333334,64.72043302290595,7.596151227140856,39.49368450276603,117.368671258\r\n1,1113600,3608.58844,3.2404709410919543,97.99579929149392,8.147540497106522,36.820927751944346,83.141732156\r\n1,1344000,4338.959518,3.2283924985119046,112.43479561828983,7.774526555152059,38.58755872422798,69.146979922\r\n1,1516800,4919.484438,3.2433309849683547,161.93294576983325,9.875858992890418,30.37710443374784,60.987336122\r\n1,1670400,5424.464334,3.2474044145114944,158.07563122238182,8.74309674316544,34.31278513926005,55.309579823\r\n1,1881600,6088.156506,3.2356273947704084,206.54774422018357,10.178916675936279,29.472684525380043,49.281180554\r\n1,2016000,6543.36067,3.2457146180555556,253.0280260635778,11.601724482573731,25.85822482257809,45.851539306\r\n1,2150400,6968.964876,3.2407760770089284,276.0819950890952,11.886175342209405,25.239405558376685,43.053062328\r\n1,2208000,7135.212273,3.231527297554348,283.7500423077317,11.931697254970057,25.143111963810288,42.050028109\r\n4,614400,1995.198223,3.2473929410807294,53.143251642523516,7.991165931025244,37.54145547588583,150.370285672\r\n4,883200,2861.967316,3.240452124094203,64.25063071599995,6.735519934826764,44.53999140419973,104.831966002\r\n4,1094400,3553.997062,3.2474388358918125,96.67661066722613,8.161623487271356,36.75739275009093,84.421903405\r\n4,1382400,4487.994614,3.2465238816550923,139.11163170545453,9.300194562480465,32.25738966905943,66.854183568\r\n4,1536000,4976.032112,3.239604239583333,150.98839661915,9.104382315312996,32.951164572188375,60.298556175\r\n4,1728000,5610.517851,3.246827460069444,197.49168087994337,10.561852157943028,28.404109006050174,53.479985136\r\n4,1843200,5947.542674,3.2267484125434027,241.58661638732002,12.18815368200258,24.61406442905209,50.450450709\r\n"
  },
  {
    "path": "results/sdm630/second/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1357.6837502643466, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1220.38200681, 1220.3059951980001, 1220.38200681, 1226.044731288, 1229.637808252, 1220.1539719740001, 1225.8153110839999, 1218.0865914659998, 1223.823896251, 1223.823896251, 1218.0865914659998, 1223.823896251, 1219.7736023910002, 1223.5188972270003, 1219.621579167, 1225.3570966519999, 1219.545256032, 1219.545256032, 1225.433465724, 1225.280414592, 1219.545256032, 1219.393232808, 1217.403249768, 1223.366085216, 1223.213585704, 1217.403249768, 1217.479142064, 1219.3172211960002, 1219.3172211960002], \"power_mean\": 1221.547603954138, \"energy_millijoules\": 6107.73801977069, \"energy_joules\": 6.107738019770689}, \"cpus\": {\"1\": {\"freqs\": {\"787200\": {\"active\": {\"elapsed_sec\": 117.368671258, \"elapsed_ns\": 117368671258, \"power_samples\": [-0.07589229600012004, 58.53040743700012, 58.45082171299987, 58.45082171299987, 54.633089376999806, 58.45082171299987, 58.45082171299987, 52.72031159799985, 54.633089376999806, 54.633089376999806, 54.55341660199997, 58.37090981799997, 58.37090981799997, 56.46216320999997, 52.56153036400019, 52.56153036400019, 56.46216320999997, 56.38269655799991, 56.38269655799991, 54.47406902199987, 54.315373862000115, 56.223763254000005, 56.223763254000005, 54.315373862000115, 58.052566922000096, 58.052566922000096, 56.38269655799991, 56.14429660199994, 56.14429660199994, 54.15667870199991, 56.223763254000005, 56.223763254000005, 58.052566922000096, 57.97298119800007, 57.97298119800007, 48.42831481200028, 61.873017952000055, 61.873017952000055, 57.97298119800007, 56.0648299500001, 56.0648299500001, 55.82610431099988, 54.15667870199991, 58.052566922000096, 58.052566922000096, 57.97298119800007, 53.918310766999866, 53.918310766999866, 57.733897854999896, 53.918310766999866, 53.918310766999866, 54.15667870199991, 52.006607810000105, 52.006607810000105, 53.918310766999866, 603.6632345200001, 603.6632345200001, 55.746637658999816, 55.746637658999816, 55.746637658999816, 57.65431213099987, 51.927379545999884, 51.927379545999884, 55.66717100699998, 55.746637658999816, 57.495140683000045, 57.495140683000045, 55.587704354999914, 53.759615607000114, 53.759615607000114, 55.587704354999914, 53.759615607000114, 53.759615607000114, 53.68026802700001, 53.68026802700001, 53.68026802700001, 55.42877105100001, 55.587704354999914, 55.587704354999914, 55.587704354999914, 55.42877105100001, 55.42877105100001, 53.52157286700003, 55.42877105100001, 55.42877105100001, 55.34897871599992, 53.44190009199997, 57.25605733999987, 57.25605733999987, 53.68026802700001, 57.25605733999987, 57.25605733999987, 47.71675627200011, 61.074122536000004, 61.074122536000004, 53.44190009199997, 53.28320493199976, 53.28320493199976, 57.25605733999987, 57.33596923499999, 57.33596923499999, 60.994298424000135, 57.25605733999987, 57.25605733999987, 57.25605733999987, 60.91447431200004, 60.91447431200004, 55.269512063999855, 55.269512063999855, 55.19004541199979, 55.19004541199979, 55.19004541199979, 57.09688589199982, 57.09688589199982, 56.93771444400022, 53.12450977200001, 53.12450977200001], \"power_mean\": 64.72043302290595, \"energy_millijoules\": 7596.1512271408565, \"energy_joules\": 7.596151227140856, \"coremark_score\": 2556.215438, \"coremarks_per_mhz\": 3.2472248958333334, \"ulpmark_cm_score\": 39.49368450276603}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1223.366085216, 1223.366085216, 1226.961364752, 1217.327357472], \"power_mean\": 1222.755223164, \"energy_millijoules\": 6113.77611582, \"energy_joules\": 6.11377611582}}, \"1113600\": {\"active\": {\"elapsed_sec\": 83.141732156, \"elapsed_ns\": 83141732156, \"power_samples\": [9.781871716000069, 81.33316700099999, 81.33316700099999, 81.33316700099999, 88.79787636799983, 83.239173489, 83.239173489, 88.87948753599994, 85.06380719699996, 85.06380719699996, 85.145179977, 85.145179977, 85.145179977, 83.15791978099992, 83.15791978099992, 83.15791978099992, 90.78537495199998, 85.06380719699996, 85.06380719699996, 82.99541236499977, 84.98243441699992, 84.98243441699992, 84.98243441699992, 88.71626519999995, 84.90106163700011, 84.90106163700011, 84.98243441699992, 92.53146876300002, 92.53146876300002, 90.45845399199993, 84.73831607700004, 84.73831607700004, 84.73831607700004, 84.65660980200005, 84.65660980200005, 88.55304286399974, 88.71626519999995, 88.71626519999995, 84.65660980200005, 84.65660980200005, 84.65660980200005, 88.471097224, 82.75131823399988, 90.37638879199994, 90.37638879199994, 88.471097224, 88.471097224, 88.471097224, 84.65660980200005, 88.1446525519998, 88.1446525519998, 80.76489203000006, 82.6700645259998, 82.6700645259998, 82.83290494899984, 82.6700645259998, 82.6700645259998, 84.65660980200005, 90.29465855199987, 90.29465855199987, 90.29465855199987, 88.471097224, 88.471097224, 88.3894860559999, 84.57523702200001, 89.96773759199982, 89.96773759199982, 88.06304138399992, 84.57523702200001, 84.57523702200001, 84.3311186819999, 84.3311186819999, 84.3311186819999, 84.3311186819999, 629.5083070089997, 629.5083070089997, 82.34504969399995, 82.34504969399995, 82.34504969399995, 87.98143021600004, 84.24974590199986, 84.24974590199986, 84.24974590199986], \"power_mean\": 97.99579929149392, \"energy_millijoules\": 8147.540497106523, \"energy_joules\": 8.147540497106522, \"coremark_score\": 3608.58844, \"coremarks_per_mhz\": 3.2404709410919543, \"ulpmark_cm_score\": 36.820927751944346}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1223.3702488279998, 1223.3702488279998, 1223.217510684, 1225.3541733000002], \"power_mean\": 1223.82804541, \"energy_millijoules\": 6119.14022705, \"energy_joules\": 6.11914022705}}, \"1344000\": {\"active\": {\"elapsed_sec\": 69.146979922, \"elapsed_ns\": 69146979922, \"power_samples\": [120.12750302900008, 112.42356313200003, 112.42356313200003, 110.59860169100011, 112.34040305199983, 112.34040305199983, 116.31516207599998, 112.50672321199977, 112.50672321199977, 110.51556092700002, 112.25724297199986, 110.43252016300016, 110.43252016300016, 116.14836562799996, 112.25724297199986, 112.25724297199986, 108.44561718299997, 112.34040305199983, 112.34040305199983, 110.43252016300016, 112.25724297199986, 112.25724297199986, 112.34040305199983, 112.25724297199986, 112.25724297199986, 117.96882961999995, 116.06496740399984, 116.06496740399984, 112.0905819919999, 112.25724297199986, 112.25724297199986, 110.34947939900007, 117.96882961999995, 112.0905819919999, 112.0905819919999, 115.73103271200011, 111.92426183199996, 111.92426183199996, 108.11359057200002, 110.18305753999994, 110.18305753999994, 115.89782916000013, 110.01697601200021, 110.01697601200021, 108.11359057200002, 108.11359057200002, 108.11359057200002, 108.03066888000012, 111.67478159199982, 111.67478159199982, 115.48083803999998, 111.84110175199999, 111.84110175199999, 119.29079413600016, 109.9339352479999, 115.48083803999998, 115.48083803999998, 111.59162151200007, 109.68481295600009, 109.68481295600009, 107.78190380399997, 115.48083803999998, 115.48083803999998, 115.39743981600009, 117.38386626399983, 117.38386626399983, 109.68481295600009, 109.68481295600009, 109.68481295600009], \"power_mean\": 112.43479561828983, \"energy_millijoules\": 7774.52655515206, \"energy_joules\": 7.774526555152059, \"coremark_score\": 4338.959518, \"coremarks_per_mhz\": 3.2283924985119046, \"ulpmark_cm_score\": 38.58755872422798}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1224.2062241879999, 1224.2062241879999, 1222.376824916, 1220.3907822370002], \"power_mean\": 1222.79501388225, \"energy_millijoules\": 6113.97506941125, \"energy_joules\": 6.11397506941125}}, \"1516800\": {\"active\": {\"elapsed_sec\": 60.987336122, \"elapsed_ns\": 60987336122, \"power_samples\": [11.524561980999806, 149.3267800269998, 145.52191527499986, 145.52191527499986, 143.78595503199995, 143.53039919199978, 143.53039919199978, 153.04976207800019, 145.43661067900007, 145.43661067900007, 143.3600286320002, 147.25350031499988, 147.25350031499988, 143.3600286320002, 147.33892398299986, 147.33892398299986, 143.3600286320002, 149.070151807, 147.1680766469999, 147.1680766469999, 148.81317300199976, 145.26600148700004, 145.26600148700004, 147.1680766469999, 145.26600148700004, 145.26600148700004, 145.35130608299983, 139.30068875999996, 139.30068875999996, 145.26600148700004, 145.00973808999993, 145.00973808999993, 143.3600286320002, 145.26600148700004, 145.26600148700004, 146.91145554599984, 148.81317300199976, 148.81317300199976, 146.82603187799964, 139.30068875999996, 144.9244334939999, 144.9244334939999, 148.72763026199982, 144.9244334939999, 144.9244334939999, 146.82603187799964, 139.130794488, 139.130794488, 148.64208752199988, 692.580083367, 692.580083367, 146.5697608739997, 148.47100204199978, 148.47100204199978, 146.74060821000012, 148.64208752199988, 148.64208752199988, 154.17862153200008, 148.38510871699987, 148.38510871699987], \"power_mean\": 161.93294576983325, \"energy_millijoules\": 9875.858992890418, \"energy_joules\": 9.875858992890418, \"coremark_score\": 4919.484438, \"coremarks_per_mhz\": 3.2433309849683547, \"ulpmark_cm_score\": 30.37710443374784}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1225.115470796, 1225.268685228, 1225.268685228, 1221.459770076], \"power_mean\": 1224.2781528320002, \"energy_millijoules\": 6121.390764160001, \"energy_joules\": 6.121390764160001}}, \"1670400\": {\"active\": {\"elapsed_sec\": 55.309579823, \"elapsed_ns\": 55309579823, \"power_samples\": [12.812748575999876, 163.60576880400004, 157.89850823899997, 157.89850823899997, 161.5279979909999, 155.90747161800005, 155.90747161800005, 161.61437472299986, 157.81236965099993, 157.81236965099993, 163.25978461199998, 163.51927275599996, 165.33366017200024, 165.33366017200024, 155.64941380200003, 155.8214523459999, 155.8214523459999, 157.467815299, 161.268867795, 161.268867795, 157.2955381229997, 157.467815299, 157.467815299, 165.07381481200014, 157.467815299, 157.467815299, 161.268867795, 164.90058457200007, 164.90058457200007, 166.97434106000014, 157.467815299, 157.467815299, 161.09611433099985, 157.2955381229997, 163.000296468, 163.000296468, 162.82694988000003, 161.09611433099985, 161.09611433099985, 160.92300686399994, 164.72699935200012, 164.72699935200012, 157.12290792, 161.268867795, 161.268867795, 162.82694988000003, 160.83663013199998, 160.83663013199998, 160.92300686399994, 162.74045383200018, 162.74045383200018, 157.12290792, 164.6403842320001, 164.6403842320001, 164.6403842320001], \"power_mean\": 158.07563122238182, \"energy_millijoules\": 8743.096743165439, \"energy_joules\": 8.74309674316544, \"coremark_score\": 5424.464334, \"coremarks_per_mhz\": 3.2474044145114944, \"ulpmark_cm_score\": 34.31278513926005}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1228.312731976, 1224.502299104, 1224.502299104, 1228.312731976], \"power_mean\": 1226.40751554, \"energy_millijoules\": 6132.037577700001, \"energy_joules\": 6.132037577700001}}, \"1881600\": {\"active\": {\"elapsed_sec\": 49.281180554, \"elapsed_ns\": 49281180554, \"power_samples\": [211.80752282000003, 204.11633171799986, 204.11633171799986, 203.93809752599986, 200.40301350000004, 200.40301350000004, 209.72875289700005, 211.62796837700012, 211.62796837700012, 204.02721462199975, 202.03510952700003, 207.46822462199975, 207.46822462199975, 209.37085467299994, 203.67074623799977, 203.67074623799977, 211.538374749, 203.93809752599986, 203.93809752599986, 207.73629034199985, 207.46822462199975, 207.46822462199975, 203.67074623799977, 213.07862035699986, 213.07862035699986, 207.28914793199988, 209.19153886200002, 209.19153886200002, 209.28138011700003, 203.67074623799977, 203.67074623799977, 207.28914793199988, 207.28914793199988, 207.28914793199988, 207.28914793199988, 201.58975588199996, 207.28914793199988, 207.28914793199988, 207.37886938199995, 201.58975588199996, 201.58975588199996, 207.11043745200004, 209.19153886200002, 209.19153886200002, 203.31391261999988, 207.02108221199978, 207.02108221199978, 209.19153886200002, 203.22479552399977], \"power_mean\": 206.54774422018357, \"energy_millijoules\": 10178.916675936278, \"energy_joules\": 10.178916675936279, \"coremark_score\": 6088.156506, \"coremarks_per_mhz\": 3.2356273947704084, \"ulpmark_cm_score\": 29.472684525380043}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1221.9103259639999, 1221.9103259639999, 1229.599965507, 1223.8891274119999], \"power_mean\": 1224.32743621175, \"energy_millijoules\": 6121.63718105875, \"energy_joules\": 6.12163718105875}}, \"2016000\": {\"active\": {\"elapsed_sec\": 45.851539306, \"elapsed_ns\": 45851539306, \"power_samples\": [229.81436089199997, 229.81436089199997, 231.80340838799998, 772.3142105070001, 772.3142105070001, 227.8216621460001, 222.21400823999988, 222.21400823999988, 231.53069593200007, 229.72357581200004, 229.72357581200004, 227.73099638200006, 231.53069593200007, 231.53069593200007, 225.8330911820001, 235.14384820600003, 227.73099638200006, 227.73099638200006, 227.73099638200006, 229.6327907320001, 229.6327907320001, 229.36006342199994, 231.34851507000008, 231.34851507000008, 229.45084850199987, 231.07580261399994, 231.07580261399994, 229.36006342199994, 225.3799866290001, 225.3799866290001, 229.17849326200007, 227.27729598099995, 227.27729598099995, 230.80309015800003, 227.09596445299985, 227.09596445299985, 228.99692310199998, 228.99692310199998, 228.99692310199998, 230.80309015800003, 226.91426134400012, 228.90613802200005, 228.90613802200005, 227.00529868900026, 230.71181344800016], \"power_mean\": 253.0280260635778, \"energy_millijoules\": 11601.72448257373, \"energy_joules\": 11.601724482573731, \"coremark_score\": 6543.36067, \"coremarks_per_mhz\": 3.2457146180555556, \"ulpmark_cm_score\": 25.85822482257809}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1232.635826846, 1232.635826846, 1226.928566281, 1226.928566281], \"power_mean\": 1229.7821965635, \"energy_millijoules\": 6148.910982817501, \"energy_joules\": 6.1489109828175}}, \"2150400\": {\"active\": {\"elapsed_sec\": 43.053062328, \"elapsed_ns\": 43053062328, \"power_samples\": [14.460230032000027, 283.38302059199987, 281.4828976439999, 281.4828976439999, 281.4828976439999, 281.38877683999976, 277.59654055199985, 277.59654055199985, 281.4828976439999, 277.59654055199985, 277.59654055199985, 281.4828976439999, 285.1848986159998, 285.1848986159998, 281.10602868699993, 290.87713853599985, 290.87713853599985, 290.59260039699984, 281.10602868699993, 281.10602868699993, 284.80707513000016, 282.9114337620001, 282.9114337620001, 282.9114337620001, 284.80707513000016, 281.10602868699993, 281.10602868699993, 280.72954547099994, 280.9177870789997, 280.9177870789997, 282.8171936420001, 280.72954547099994, 280.72954547099994, 284.712715938, 284.42925164400003, 284.42925164400003, 280.72954547099994, 282.43984693200014, 282.43984693200014, 284.3348924520001, 280.72954547099994, 280.72954547099994], \"power_mean\": 276.0819950890952, \"energy_millijoules\": 11886.175342209406, \"energy_joules\": 11.886175342209405, \"coremark_score\": 6968.964876, \"coremarks_per_mhz\": 3.2407760770089284, \"ulpmark_cm_score\": 25.239405558376685}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1229.882572352, 1228.0597257000002, 1228.0597257000002, 1226.082949696], \"power_mean\": 1228.021243362, \"energy_millijoules\": 6140.10621681, \"energy_joules\": 6.14010621681}}, \"2208000\": {\"active\": {\"elapsed_sec\": 42.050028109, \"elapsed_ns\": 42050028109, \"power_samples\": [14.151417776000017, 284.52399755400006, 284.52399755400006, 284.52399755400006, 290.2137337890001, 292.10901794100005, 292.10901794100005, 290.11862895399986, 295.7129321520001, 295.7129321520001, 299.503023192, 284.3348924520001, 284.3348924520001, 290.02391230199987, 291.63445064999996, 289.9291956499999, 289.9291956499999, 289.9291956499999, 293.529138954, 293.529138954, 284.051814876, 289.7397623459999, 289.7397623459999, 291.63445064999996, 289.45561238999994, 289.45561238999994, 283.7687372999999, 293.529138954, 293.529138954, 289.2657909029999, 291.3499434779999, 291.3499434779999, 293.4341841579999, 291.1598833589999, 291.1598833589999, 294.9519496080002, 291.1598833589999, 291.1598833589999, 291.1598833589999, 291.1598833589999, 291.1598833589999], \"power_mean\": 283.7500423077317, \"energy_millijoules\": 11931.697254970057, \"energy_joules\": 11.931697254970057, \"coremark_score\": 7135.212273, \"coremarks_per_mhz\": 3.231527297554348, \"ulpmark_cm_score\": 25.143111963810288}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1231.3999450100002, 1229.573921443, 1229.573921443, 1229.496837695], \"power_mean\": 1230.01115639775, \"energy_millijoules\": 6150.05578198875, \"energy_joules\": 6.15005578198875}}}}, \"4\": {\"freqs\": {\"614400\": {\"active\": {\"elapsed_sec\": 150.370285672, \"elapsed_ns\": 150370285672, \"power_samples\": [37.910331913999926, 47.408232062000025, 47.408232062000025, 47.32888448200015, 45.5063183960001, 47.4875796419999, 47.4875796419999, 45.5063183960001, 45.58554666000009, 45.58554666000009, 41.71026985199978, 45.58554666000009, 45.58554666000009, 47.566927222000004, 47.4875796419999, 47.4875796419999, 49.38572298600002, 45.58554666000009, 45.58554666000009, 47.4875796419999, 47.566927222000004, 47.566927222000004, 47.566927222000004, 41.78925997200008, 41.78925997200008, 49.38572298600002, 41.78925997200008, 45.664774924000085, 45.664774924000085, 45.58554666000009, 41.78925997200008, 41.78925997200008, 47.566927222000004, 39.89111662800019, 39.89111662800019, 47.4875796419999, 47.4875796419999, 47.4875796419999, 45.58554666000009, 41.71026985199978, 41.71026985199978, 45.5063183960001, 45.58554666000009, 45.58554666000009, 47.4875796419999, 45.5063183960001, 45.5063183960001, 49.38572298600002, 45.4270901320001, 47.4875796419999, 47.4875796419999, 55.084042656000065, 47.408232062000025, 47.408232062000025, 45.5063183960001, 45.58554666000009, 45.58554666000009, 45.58554666000009, 47.408232062000025, 47.408232062000025, 45.58554666000009, 49.46518963800008, 49.46518963800008, 41.78925997200008, 47.566927222000004, 47.566927222000004, 45.5063183960001, 45.58554666000009, 45.58554666000009, 47.32888448200015, 41.78925997200008, 41.71026985199978, 41.71026985199978, 47.4875796419999, 49.38572298600002, 49.38572298600002, 47.408232062000025, 47.408232062000025, 47.408232062000025, 47.408232062000025, 47.16986412699998, 47.16986412699998, 51.204280605999884, 47.4875796419999, 47.4875796419999, 45.58554666000009, 45.58554666000009, 45.58554666000009, 45.5063183960001, 39.96998767600007, 39.96998767600007, 45.4270901320001, 47.408232062000025, 47.408232062000025, 47.408232062000025, 45.5063183960001, 41.631279732000166, 41.631279732000166, 47.16986412699998, 47.32888448200015, 47.32888448200015, 49.22678968200012, 47.408232062000025, 47.408232062000025, 47.32888448200015, 45.5063183960001, 45.5063183960001, 45.268308898000214, 37.831580181999925, 37.831580181999925, 49.22678968200012, 49.06753069499996, 49.06753069499996, 45.4270901320001, 49.22678968200012, 47.16986412699998, 47.16986412699998, 45.268308898000214, 47.16986412699998, 47.16986412699998, 45.268308898000214, 45.18908063399999, 45.18908063399999, 47.09051654699988, 48.988064042999895, 48.988064042999895, 45.030624106000005, 41.39398564199996, 41.39398564199996, 45.030624106000005, 48.988064042999895, 48.988064042999895, 45.18908063399999, 45.030624106000005, 45.030624106000005, 45.030624106000005, 44.87216757800002, 588.283083864, 588.283083864, 44.87216757800002, 46.77312622699992, 46.77312622699992, 41.07802516200013, 46.77312622699992, 46.77312622699992, 41.07802516200013, 44.87216757800002, 44.87216757800002, 45.030624106000005], \"power_mean\": 53.143251642523516, \"energy_millijoules\": 7991.165931025244, \"energy_joules\": 7.991165931025244, \"coremark_score\": 1995.198223, \"coremarks_per_mhz\": 3.2473929410807294, \"ulpmark_cm_score\": 37.54145547588583}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1221.282912248, 1221.282912248, 1219.53762612, 1221.43612668], \"power_mean\": 1220.884894324, \"energy_millijoules\": 6104.42447162, \"energy_joules\": 6.10442447162}}, \"883200\": {\"active\": {\"elapsed_sec\": 104.831966002, \"elapsed_ns\": 104831966002, \"power_samples\": [65.67107440100017, 65.59020553599998, 65.59020553599998, 65.59020553599998, 63.69337296000003, 63.69337296000003, 65.59020553599998, 59.89970780800013, 59.89970780800013, 65.59020553599998, 63.61295324399998, 63.61295324399998, 63.61295324399998, 59.89970780800013, 59.89970780800013, 69.38775764000002, 65.34858917199995, 65.50966674799997, 65.50966674799997, 65.50966674799997, 65.50966674799997, 65.50966674799997, 65.50966674799997, 59.65916309199997, 59.65916309199997, 65.34858917199995, 63.45211381199988, 63.45211381199988, 65.34858917199995, 63.45211381199988, 63.45211381199988, 63.45211381199988, 65.50966674799997, 65.50966674799997, 69.14542611199977, 67.41026695999994, 67.41026695999994, 69.06464893600014, 63.45211381199988, 59.65916309199997, 59.65916309199997, 67.16829264800003, 57.75880151199999, 57.75880151199999, 65.34858917199995, 63.371694096000056, 63.371694096000056, 65.34858917199995, 59.65916309199997, 59.65916309199997, 65.26805038399993, 57.75880151199999, 57.75880151199999, 67.16829264800003, 65.18751159599992, 65.18751159599992, 63.210854663999726, 63.291274380000004, 63.291274380000004, 65.18751159599992, 67.08763454399991, 65.10697280799991, 65.10697280799991, 67.08763454399991, 67.00697643999979, 67.00697643999979, 64.86502636699993, 57.51861474399993, 57.51861474399993, 64.86502636699993, 65.10697280799991, 65.10697280799991, 63.210854663999726, 67.00697643999979, 67.00697643999979, 59.177745047000144, 65.10697280799991, 65.10697280799991, 68.90309458399997, 68.66043200199988, 68.66043200199988, 64.86502636699993, 66.7646715620001, 64.78448757899992, 64.78448757899992, 66.7646715620001, 64.78448757899992, 64.78448757899992, 62.88884621099987, 62.88884621099987, 62.88884621099987, 66.60335535399963, 64.78448757899992, 64.78448757899992, 62.88884621099987, 66.68401345799998, 66.68401345799998, 64.78448757899992, 66.68401345799998, 66.68401345799998, 62.80842649499982, 62.80842649499982, 62.80842649499982, 64.54287121499988], \"power_mean\": 64.25063071599995, \"energy_millijoules\": 6735.519934826763, \"energy_joules\": 6.735519934826764, \"coremark_score\": 2861.967316, \"coremarks_per_mhz\": 3.240452124094203, \"ulpmark_cm_score\": 44.53999140419973}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1219.1551854000002, 1219.1551854000002, 1219.1551854000002, 1226.75069535], \"power_mean\": 1221.0540628875, \"energy_millijoules\": 6105.270314437501, \"energy_joules\": 6.105270314437501}}, \"1094400\": {\"active\": {\"elapsed_sec\": 84.421903405, \"elapsed_ns\": 84421903405, \"power_samples\": [83.42529887199998, 81.53013427999986, 81.53013427999986, 91.09238445899996, 81.44852311199975, 81.44852311199975, 83.42529887199998, 83.42529887199998, 83.34356863199991, 83.34356863199991, 81.44852311199975, 629.4372397299999, 629.4372397299999, 85.16064788599988, 85.16064788599988, 85.16064788599988, 81.36691194399987, 83.26183839199985, 83.26183839199985, 83.26183839199985, 83.09837791199993, 83.09837791199993, 81.36691194399987, 83.09837791199993, 83.09837791199993, 81.12207844, 81.12207844, 81.12207844, 84.99694877399997, 83.01664767199986, 81.12207844, 81.12207844, 84.99694877399997, 83.01664767199986, 83.01664767199986, 83.09837791199993, 83.01664767199986, 83.01664767199986, 83.01664767199986, 84.91509921800002, 84.91509921800002, 90.43439336999995, 84.75140010600012, 84.75140010600012, 84.75140010600012, 84.75140010600012, 84.75140010600012, 84.58736554500001, 84.75140010600012, 84.75140010600012, 82.85318719199972, 83.01664767199986, 83.01664767199986, 83.01664767199986, 94.06170916199994, 84.75140010600012, 84.75140010600012, 84.75140010600012, 82.68939175199989, 82.68939175199989, 84.58736554500001, 80.79529929599994, 80.79529929599994, 82.60766151199982, 80.63207695999995, 80.63207695999995, 82.68939175199989, 92.16761670599999, 92.16761670599999, 84.50551598900006, 90.18743614100003, 90.18743614100003, 84.42366643300011, 82.60766151199982, 80.71368812799983, 80.71368812799983, 82.52593127199998, 82.60766151199982, 82.60766151199982, 80.71368812799983, 80.79529929599994, 80.79529929599994, 82.60766151199982, 82.52593127199998], \"power_mean\": 96.67661066722613, \"energy_millijoules\": 8161.623487271357, \"energy_joules\": 8.161623487271356, \"coremark_score\": 3553.997062, \"coremarks_per_mhz\": 3.2474388358918125, \"ulpmark_cm_score\": 36.75739275009093}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1218.160212576, 1218.160212576, 1218.160212576, 1220.056568864], \"power_mean\": 1218.634301648, \"energy_millijoules\": 6093.171508240001, \"energy_joules\": 6.09317150824}}, \"1382400\": {\"active\": {\"elapsed_sec\": 66.854183568, \"elapsed_ns\": 66854183568, \"power_samples\": [120.08950530399989, 120.08950530399989, 123.79190908800001, 123.79190908800001, 123.79190908800001, 123.87626037599989, 121.98288284, 121.98288284, 118.112133696, 121.98288284, 121.98288284, 121.81441840799994, 121.56172175999995, 121.56172175999995, 123.7075577999999, 120.00539216000016, 120.00539216000016, 123.79190908800001, 119.92127901599997, 121.89865062400008, 121.89865062400008, 123.45450393600004, 118.028139624, 118.028139624, 119.66893958399987, 123.7075577999999, 123.7075577999999, 127.49771596799974, 121.47748954399981, 121.47748954399981, 123.45450393600004, 117.69216333600002, 117.69216333600002, 121.47748954399981, 119.50036857000009, 119.50036857000009, 121.22444768200012, 123.28545565800005, 123.28545565800005, 119.50036857000009, 123.28545565800005, 128.96696445299995, 128.96696445299995, 121.39291211399996, 127.07442090899985, 127.07442090899985, 126.90524155699995, 123.28545565800005, 123.28545565800005, 122.94805050600007, 123.11675308200006, 123.11675308200006, 123.03240179399995, 128.71283820899976, 128.71283820899976, 123.11675308200006, 123.03240179399995, 123.03240179399995, 123.11675308200006, 123.03240179399995, 123.03240179399995, 128.71283820899976, 121.14021546599997, 664.470261256, 664.470261256, 123.03240179399995], \"power_mean\": 139.11163170545453, \"energy_millijoules\": 9300.194562480465, \"energy_joules\": 9.300194562480465, \"coremark_score\": 4487.994614, \"coremarks_per_mhz\": 3.2465238816550923, \"ulpmark_cm_score\": 32.25738966905943}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1217.241727896, 1226.79732693, 1226.79732693, 1224.90228141], \"power_mean\": 1223.9346657915, \"energy_millijoules\": 6119.6733289575, \"energy_joules\": 6.1196733289575}}, \"1536000\": {\"active\": {\"elapsed_sec\": 60.298556175, \"elapsed_ns\": 60298556175, \"power_samples\": [149.36648156600018, 149.36648156600018, 151.0896764900001, 155.04620306100014, 155.04620306100014, 147.302380932, 147.302380932, 149.10807121200014, 149.10807121200014, 149.19409048400007, 149.10807121200014, 149.10807121200014, 147.302380932, 150.9173993139998, 150.9173993139998, 145.23910912399992, 149.02205193999998, 149.02205193999998, 150.9173993139998, 149.02205193999998, 149.02205193999998, 150.6589835499999, 149.02205193999998, 149.02205193999998, 149.02205193999998, 150.9173993139998, 150.9173993139998, 148.76399412399996, 148.76399412399996, 154.354835202, 154.354835202, 154.354835202, 156.33620136000013, 156.33620136000013, 154.70034212999985, 150.6589835499999, 150.6589835499999, 148.5916030420001, 154.354835202, 154.354835202, 150.48635334699975, 154.26810446700006, 154.26810446700006, 156.0763587240001, 154.1817277350001, 154.1817277350001, 156.16285477199995, 150.22793758300008, 150.22793758300008, 148.5916030420001, 150.48635334699975, 146.61482728200008, 146.61482728200008, 150.40021475899994, 144.55250853799998, 144.55250853799998, 150.40021475899994, 157.70726985199985, 157.70726985199985, 153.92259753899975], \"power_mean\": 150.98839661915, \"energy_millijoules\": 9104.382315312996, \"energy_joules\": 9.104382315312996, \"coremark_score\": 4976.032112, \"coremarks_per_mhz\": 3.239604239583333, \"ulpmark_cm_score\": 32.951164572188375}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1218.523482652, 1222.238464909, 1222.238464909, 1222.238464909], \"power_mean\": 1221.30971934475, \"energy_millijoules\": 6106.54859672375, \"energy_joules\": 6.10654859672375}}, \"1728000\": {\"active\": {\"elapsed_sec\": 53.479985136, \"elapsed_ns\": 53479985136, \"power_samples\": [191.3984232800001, 221.38067709200004, 221.38067709200004, 206.25641073199995, 210.03941335199988, 210.03941335199988, 221.38067709200004, 200.405132352, 200.405132352, 202.47728017200006, 196.80471227199996, 196.80471227199996, 187.3491417519997, 194.91127493199997, 194.91127493199997, 196.62647807999997, 194.91127493199997, 194.91127493199997, 196.80471227199996, 194.91127493199997, 196.5369957500002, 196.5369957500002, 192.84395223599995, 192.84395223599995, 192.84395223599995, 200.31541090199994, 196.80471227199996, 196.80471227199996, 194.55491906700013, 194.73327937199997, 194.73327937199997, 190.86550169500015, 194.73327937199997, 194.73327937199997, 192.84395223599995, 203.918510125, 203.918510125, 211.56832885199992, 196.44787865399985, 196.44787865399985, 202.11901524900009, 186.99469396799986, 186.99469396799986, 192.57695185500006, 190.77674205900007, 190.68798242299977, 190.68798242299977, 181.32355737299986, 194.46592128700013, 194.46592128700013, 194.46592128700013, 196.18052736599975, 196.18052736599975], \"power_mean\": 197.49168087994337, \"energy_millijoules\": 10561.852157943027, \"energy_joules\": 10.561852157943028, \"coremark_score\": 5610.517851, \"coremarks_per_mhz\": 3.246827460069444, \"ulpmark_cm_score\": 28.404109006050174}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1217.680489312, 1221.4696939279997, 1221.392533383, 1217.603568132], \"power_mean\": 1219.5365711887498, \"energy_millijoules\": 6097.682855943749, \"energy_joules\": 6.097682855943749}}, \"1843200\": {\"active\": {\"elapsed_sec\": 50.450450709, \"elapsed_ns\": 50450450709, \"power_samples\": [3.3742038420000426, 224.34516978600004, 771.9450186980002, 771.9450186980002, 224.43607393799994, 230.01451908100012, 230.01451908100012, 224.07208477199993, 222.1839493320001, 222.1839493320001, 222.1839493320001, 224.07208477199993, 224.07208477199993, 222.1839493320001, 229.64909861, 229.64909861, 223.8902764679999, 220.2012789979999, 220.2012789979999, 223.8902764679999, 223.8902764679999, 221.9115940920001, 221.9115940920001, 223.7993723159998, 221.9115940920001, 221.9115940920001, 223.617564012, 231.3543536100001, 231.3543536100001, 221.9115940920001, 223.617564012, 223.617564012, 221.730023932, 229.28405216200008, 229.28405216200008, 227.57492876399988, 219.74757859700003, 219.74757859700003, 221.63886678199992, 221.63886678199992, 221.63886678199992, 221.730023932, 229.1924165270002, 219.74757859700003, 219.74757859700003, 219.74757859700003, 227.30112834199986, 227.30112834199986, 223.43538315, 223.5262873019999], \"power_mean\": 241.58661638732002, \"energy_millijoules\": 12188.153682002581, \"energy_joules\": 12.18815368200258, \"coremark_score\": 5947.542674, \"coremarks_per_mhz\": 3.2267484125434027, \"ulpmark_cm_score\": 24.61406442905209}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1217.0670036560002, 1217.0670036560002, 1220.77745361, 1220.8542992139999], \"power_mean\": 1218.9414400340002, \"energy_millijoules\": 6094.707200170001, \"energy_joules\": 6.094707200170001}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sdm630/second/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 1217 mW\n\n\n===== CPU 1 =====\nFrequencies: 787 1113 1344 1516 1670 1881 2016 2150 2208\n\n 787:  2556     3.2 C/MHz     65 mW    7.6 J   39.5 I/mJ   117.4 s\n1113:  3609     3.2 C/MHz     98 mW    8.1 J   36.8 I/mJ    83.1 s\n1344:  4339     3.2 C/MHz    112 mW    7.8 J   38.6 I/mJ    69.1 s\n1516:  4919     3.2 C/MHz    162 mW    9.9 J   30.4 I/mJ    61.0 s\n1670:  5424     3.2 C/MHz    158 mW    8.7 J   34.3 I/mJ    55.3 s\n1881:  6088     3.2 C/MHz    207 mW   10.2 J   29.5 I/mJ    49.3 s\n2016:  6543     3.2 C/MHz    253 mW   11.6 J   25.9 I/mJ    45.9 s\n2150:  6969     3.2 C/MHz    276 mW   11.9 J   25.2 I/mJ    43.1 s\n2208:  7135     3.2 C/MHz    284 mW   11.9 J   25.1 I/mJ    42.1 s\n\n\n===== CPU 4 =====\nFrequencies: 614 883 1094 1382 1536 1728 1843\n\n 614:  1995     3.2 C/MHz     53 mW    8.0 J   37.5 I/mJ   150.4 s\n 883:  2862     3.2 C/MHz     64 mW    6.7 J   44.5 I/mJ   104.8 s\n1094:  3554     3.2 C/MHz     97 mW    8.2 J   36.8 I/mJ    84.4 s\n1382:  4488     3.2 C/MHz    139 mW    9.3 J   32.3 I/mJ    66.9 s\n1536:  4976     3.2 C/MHz    151 mW    9.1 J   33.0 I/mJ    60.3 s\n1728:  5611     3.2 C/MHz    197 mW   10.6 J   28.4 I/mJ    53.5 s\n1843:  5948     3.2 C/MHz    242 mW   12.2 J   24.6 I/mJ    50.5 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sdm630/second/uptime.txt",
    "content": " 08:23:10 up 22 min,  load average: 6.91, 6.83, 5.32\n"
  },
  {
    "path": "results/sdm630/second/versions.txt",
    "content": "Kernel: Linux version 4.4.288-xtremedev-EMP++ (rote66@penguin) (gcc version 5.5.0 (Linaro GCC 5.5-2017.10) ) #1 SMP PREEMPT Fri Oct 22 16:38:42 CST 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sdm632/main/cmdline.txt",
    "content": "kpti=0 console=null androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 androidboot.bootdevice=7824900.sdhci androidboot.usbconfigfs=true loop.max_part=7 printk.devkmsg=on androidboot.hab.csv=0 androidboot.hab.product=gin androidboot.hab.cid=0 androidboot.boot_devices=soc/7824900.sdhci buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 androidboot.emmc=true androidboot.serialno=REDACTED androidboot.baseband=msm androidboot.mode=normal androidboot.device=ginna androidboot.hwrev=0xA300 androidboot.radio=GWLC androidboot.revision=EVT3 androidboot.powerup_reason=0x00004000 androidboot.keymaster=1 androidboot.slot_suffix=_b rootwait ro init=/init androidboot.bootreason=reboot msm_poweroff.download_mode=1 androidboot.fsg-id= androidboot.wifimacaddr=REDACTED androidboot.btmacaddr=REDACTED mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_mot_tianma_621_hd_vid_v0 androidboot.bootloader=0xC111 androidboot.carrier= androidboot.poweroff_alarm=0 androidboot.hardware.sku=XT2051-2 androidboot.secure_hardware=0 androidboot.bl_state=8 androidboot.cid=0x0 androidboot.uid=REDACTED androidboot.write_protect=0 androidboot.coredump=enable androidboot.verifiedbootstate=orange androidboot.ssm_data=0000000000000000 androidboot.dtbo_idx=2 androidboot.dtb_idx=0 androidboot.dualsim=false\n"
  },
  {
    "path": "results/sdm632/main/cpufreq_stats/0/time_in_state",
    "content": "614400 52964\n883200 9553\n1036800 8265\n1363200 6510\n1536000 5840\n1670400 5437\n1804800 5490\n"
  },
  {
    "path": "results/sdm632/main/cpufreq_stats/0/total_trans",
    "content": "12\n"
  },
  {
    "path": "results/sdm632/main/cpufreq_stats/4/time_in_state",
    "content": "633600 8389\n902400 6122\n1094400 5210\n1401600 4249\n1555200 3895\n1804800 66195\n"
  },
  {
    "path": "results/sdm632/main/cpufreq_stats/4/total_trans",
    "content": "8\n"
  },
  {
    "path": "results/sdm632/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 4 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nHardware\t: Qualcomm Technologies, Inc SDM632\n"
  },
  {
    "path": "results/sdm632/main/device.txt",
    "content": "Model: ginna;\nCompatible: qcom,sdm632-mtp;qcom,sdm632;qcom,mtp;\n"
  },
  {
    "path": "results/sdm632/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Linux version 4.9.206-giNNa64+ (root@ubuntu-serv-vm) (gcc version 10.2.0 (GCC)) #2 SMP PREEMPT Sat Jan 9 16:33:08 UTC 2021\n[    0.000000] Boot CPU: AArch64 Processor [51af8014]\n[    0.000000] Machine: ginna\n[    0.000000] efi: Getting EFI parameters from FDT:\n[    0.000000] efi: UEFI not found.\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000c7800000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_shmem_device_region@0xc0100000, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff800000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ffc00000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe800000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f3400000, size 180 MiB\n[    0.000000] OF: reserved mem: initialized node secure_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x000000008f800000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@0, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f2000000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f1c00000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region@0, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000084300000, size 37 MiB\n[    0.000000] OF: reserved mem: initialized node other_ext_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086c00000, size 106 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008d600000, size 17 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_fw_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008e700000, size 7 MiB\n[    0.000000] OF: reserved mem: initialized node wcnss_fw_region@0, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ee00000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node venus_region@0, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 479201\n[    0.000000]   DMA zone: 7488 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 479201 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.0 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] Did not receive the expected number of bytes from PRNG: 0\n[    0.000000] percpu: Embedded 22 pages/cpu s51608 r8192 d30312 u90112\n[    0.000000] pcpu-alloc: s51608 r8192 d30312 u90112 alloc=22*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 471713\n"
  },
  {
    "path": "results/sdm632/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  1:       1615     GIC-0 203 Edge      mpm\n  4:       1424   mpm-gic  20 Level     arch_timer\n  6:      98058   mpm-gic  39 Level     arch_mem_timer\n  7:          0   mpm-gic  57 Edge      qcom,smd-modem\n  8:          0   mpm-gic  58 Edge      qcom,smsm-modem\n  9:          0   mpm-gic 174 Edge      qcom,smd-wcnss\n 10:          0   mpm-gic 176 Edge      qcom,smsm-wcnss\n 11:          0   mpm-gic 321 Edge      qcom,smd-adsp\n 12:          0   mpm-gic 322 Edge      qcom,smsm-adsp\n 13:        408   mpm-gic 200 Edge      qcom,smd-rpm\n 15:         76   mpm-gic 155 Edge      mmc0\n 16:          2   mpm-gic 170 Edge      7824900.sdhci\n 19:          0   mpm-gic 264 Level     arm-smmu-context-fault\n 26:          0   mpm-gic  86 Level     arm-smmu-context-fault\n 27:          0   mpm-gic  90 Level     arm-smmu-context-fault\n 28:          0   mpm-gic  92 Level     arm-smmu-context-fault\n 39:          0   mpm-gic 138 Level     arm-smmu-context-fault\n 44:          0   mpm-gic 145 Level     arm-smmu-context-fault\n 54:          0   mpm-gic  76 Level     msm_vidc\n 55:          0   mpm-gic  65 Level     kgsl-3d0\n 56:          0   mpm-gic 104 Edge      MDSS\n 57:          0   mpm-gic  59 Edge      smp2p\n 58:          0   mpm-gic 175 Edge      smp2p\n 59:          0   mpm-gic 323 Edge      smp2p\n 62:          0   mpm-gic 216 Level     tsens-upper-lower\n 63:          0   mpm-gic 346 Level     tsens-critical\n 64:          0   mpm-gic 239 Level     sps\n 67:         45   mpm-gic 271 Level     sps\n 68:        243   mpm-gic 127 Level     i2c-msm-v2-irq\n 69:         20   mpm-gic 128 Level     i2c-msm-v2-irq\n 70:          1   mpm-gic 129 Level     i2c-msm-v2-irq\n 72:          0   mpm-gic  35 Edge      apps_wdog_bark\n 74:          0   mpm-gic 344 Edge      7803000.sdcc1ice\n 76:         13     GIC-0 157 Edge      mmc1\n 77:          2     GIC-0 253 Edge      7864900.sdhci\n 78:          0   msmgpio 133 Edge      7864900.sdhci cd\n 79:          0   mpm-gic 260 Edge      ipa\n 80:         18   mpm-gic 262 Level     sps\n 82:          0  pmic_arb 8388648 Edge      qpnp_kpdpwr_status\n 83:          0  pmic_arb 8454184 Edge      qpnp_resin_status\n 86:          0  pmic_arb 37748800 Edge      pm8953_tz\n 99:          0  pmic_arb 54722575 Edge      qpnp_adc_tm_high_interrupt\n100:          0  pmic_arb 54788111 Edge      qpnp_adc_tm_low_interrupt\n115:         72  pmic_arb 588251167 Edge      qpnp_vadc_interrupt\n116:          0  pmic_arb 592445473 Edge      qpnp_adc_tm_interrupt\n117:          0  pmic_arb 574619676 Edge      pmi632_tz\n126:          0  pmic_arb 600834086 Edge      bcl-vbat-lvl0\n127:          0  pmic_arb 600899622 Edge      bcl-vbat-lvl1\n128:          0  pmic_arb 600965158 Edge      bcl-vbat-lvl2\n129:          0  pmic_arb 1052835852 Edge      qpnp_lcdb_sc_irq\n130:          0  pmic_arb 1026555915 Edge      qpnp_flash_led_fault_irq\n131:          0  pmic_arb 1026752523 Edge      qpnp_flash_led_all_ramp_down_done_irq\n132:          0  pmic_arb 1026818059 Edge      qpnp_flash_led_all_ramp_up_done_irq\n133:          0   mpm-gic 168 Edge      hs_phy_irq\n134:          0   mpm-gic 252 Level     ss_phy_irq\n135:          0   mpm-gic 166 Edge      pwr_event_irq\n136:          0   mpm-gic  56 Edge      modem\n137:          0   mpm-gic 325 Edge      adsp\n138:          0   mpm-gic 181 Edge      wcnss\n141:          0   mpm-gic  47 Edge      cpr3\n142:          0   mpm-gic 110 Edge      csiphy\n143:          0   mpm-gic 111 Edge      csiphy\n144:          0   mpm-gic 347 Edge      csiphy\n145:          0   mpm-gic  83 Edge      csid\n146:          0   mpm-gic  84 Edge      csid\n147:          0   mpm-gic 185 Edge      csid\n148:          0   mpm-gic  87 Edge      ispif\n149:          0   mpm-gic  89 Edge      vfe\n150:          0   mpm-gic  61 Edge      vfe\n153:          0   mpm-gic  82 Edge      cci\n155:         57   mpm-gic 333 Level     7af7000.spi\n284:          0   msmgpio  65 Edge      chipone-tddi\n285:          0   msmgpio  48 Edge      soc:fpc_fpc1020\n286:          1   msmgpio  86 Edge      abov_sar\n287:          0  pmic_arb 101777437 Edge      qpnp_rtc_alarm\n288:          0  pmic_arb 553648147 Edge      chgr-error\n289:          0  pmic_arb 553713683 Edge      chg-state-change\n296:          0  pmic_arb 554696724 Edge      otg-fail\n300:          0  pmic_arb 554958868 Edge      high-duty-cycle\n301:          0  pmic_arb 555024404 Edge      input-current-limiting\n303:          0  pmic_arb 555155476 Edge      switcher-power-ok\n304:          0  pmic_arb 555745301 Edge      bat-temp\n306:          0  pmic_arb 555876373 Edge      bat-ov\n307:          0  pmic_arb 555941909 Edge      bat-low\n308:          0  pmic_arb 556007445 Edge      bat-therm-or-id-missing\n309:          0  pmic_arb 556072981 Edge      bat-terminal-missing\n312:          0  pmic_arb 556793878 Edge      usbin-collapse\n313:          0  pmic_arb 556859414 Edge      usbin-vashdn\n314:          0  pmic_arb 556924950 Edge      usbin-uv\n315:          0  pmic_arb 556990486 Edge      usbin-ov\n316:          0  pmic_arb 557056022 Edge      usbin-plugin\n318:          0  pmic_arb 557187094 Edge      usbin-src-change\n319:          0  pmic_arb 557252630 Edge      usbin-icl-change\n320:          0  pmic_arb 558891031 Edge      typec-or-rid-detect-change\n322:          0  pmic_arb 559022103 Edge      typec-cc-state-change\n323:          0  pmic_arb 559087639 Edge      typec-vconn-oc\n325:          0  pmic_arb 559218711 Edge      typec-attach-detach\n326:          0  pmic_arb 559284247 Edge      typec-legacy-cable-detect\n329:          0  pmic_arb 560005144 Edge      wdog-bark\n331:          0  pmic_arb 560136216 Edge      aicl-done\n336:          0  pmic_arb 711065626 Edge      flash-state-change\n338:          0  pmic_arb 711327770 Edge      ilim2-s2\n340:          0  smp2p_gpio   0 Edge      modem\n341:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n342:          0  smp2p_gpio   2 Edge      modem\n343:          0  smp2p_gpio   3 Edge      modem\n372:          0  smp2p_gpio   0 Edge      adsp\n373:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n374:          0  smp2p_gpio   2 Edge      adsp\n375:          0  smp2p_gpio   3 Edge      adsp\n404:          0  smp2p_gpio   0 Edge      wcnss\n405:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n406:          0  smp2p_gpio   2 Edge      wcnss\n407:          0  smp2p_gpio   3 Edge      wcnss\n436:          0     GIC-0 172 Edge      dwc3\n439:          0  pmic_arb 612433961 Edge      qg-vbat-low\n440:          0  pmic_arb 612499497 Edge      qg-vbat-empty\n441:         14  pmic_arb 612565033 Edge      qg-fifo-done\n442:          0  pmic_arb 612630569 Edge      qg-good-ocv\n443:          0   msmgpio  85 Edge      volume_up\nIPI0:       109       Rescheduling interrupts\nIPI1:         9       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       Timer broadcast interrupts\nIPI4:     46684       IRQ work interrupts\nIPI5:         0       CPU wake-up interrupts\nIPI6:         0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm632/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  1:          0          0          0          0          0          0          0          0     GIC-0 203 Edge      mpm\n  4:        631          1          1          1          1          1          1          1   mpm-gic  20 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   mpm-gic  39 Level     arch_mem_timer\n  7:          0          0          0          0          0          0          0          0   mpm-gic  57 Edge      qcom,smd-modem\n  8:          0          0          0          0          0          0          0          0   mpm-gic  58 Edge      qcom,smsm-modem\n  9:          0          0          0          0          0          0          0          0   mpm-gic 174 Edge      qcom,smd-wcnss\n 10:          0          0          0          0          0          0          0          0   mpm-gic 176 Edge      qcom,smsm-wcnss\n 11:          0          0          0          0          0          0          0          0   mpm-gic 321 Edge      qcom,smd-adsp\n 12:          0          0          0          0          0          0          0          0   mpm-gic 322 Edge      qcom,smsm-adsp\n 13:        355          0          0          0          0          0          0          0   mpm-gic 200 Edge      qcom,smd-rpm\n 15:         64          0          0          0          0          0          0          0   mpm-gic 155 Edge      mmc0\n 16:          1          0          0          0          0          0          0          0   mpm-gic 170 Edge      7824900.sdhci\n 19:          0          0          0          0          0          0          0          0   mpm-gic 264 Level     arm-smmu-context-fault\n 26:          0          0          0          0          0          0          0          0   mpm-gic  86 Level     arm-smmu-context-fault\n 27:          0          0          0          0          0          0          0          0   mpm-gic  90 Level     arm-smmu-context-fault\n 28:          0          0          0          0          0          0          0          0   mpm-gic  92 Level     arm-smmu-context-fault\n 39:          0          0          0          0          0          0          0          0   mpm-gic 138 Level     arm-smmu-context-fault\n 44:          0          0          0          0          0          0          0          0   mpm-gic 145 Level     arm-smmu-context-fault\n 54:          0          0          0          0          0          0          0          0   mpm-gic  76 Level     msm_vidc\n 55:          0          0          0          0          0          0          0          0   mpm-gic  65 Level     kgsl-3d0\n 56:          0          0          0          0          0          0          0          0   mpm-gic 104 Edge      MDSS\n 57:          0          0          0          0          0          0          0          0   mpm-gic  59 Edge      smp2p\n 58:          0          0          0          0          0          0          0          0   mpm-gic 175 Edge      smp2p\n 59:          0          0          0          0          0          0          0          0   mpm-gic 323 Edge      smp2p\n 62:          0          0          0          0          0          0          0          0   mpm-gic 216 Level     tsens-upper-lower\n 63:          0          0          0          0          0          0          0          0   mpm-gic 346 Level     tsens-critical\n 64:          0          0          0          0          0          0          0          0   mpm-gic 239 Level     sps\n 67:         45          0          0          0          0          0          0          0   mpm-gic 271 Level     sps\n 68:        243          0          0          0          0          0          0          0   mpm-gic 127 Level     i2c-msm-v2-irq\n 69:         17          0          0          0          0          0          0          0   mpm-gic 128 Level     i2c-msm-v2-irq\n 70:          1          0          0          0          0          0          0          0   mpm-gic 129 Level     i2c-msm-v2-irq\n 72:          0          0          0          0          0          0          0          0   mpm-gic  35 Edge      apps_wdog_bark\n 74:          0          0          0          0          0          0          0          0   mpm-gic 344 Edge      7803000.sdcc1ice\n 76:         13          0          0          0          0          0          0          0     GIC-0 157 Edge      mmc1\n 77:          2          0          0          0          0          0          0          0     GIC-0 253 Edge      7864900.sdhci\n 78:          0          0          0          0          0          0          0          0   msmgpio 133 Edge      7864900.sdhci cd\n 79:          0          0          0          0          0          0          0          0   mpm-gic 260 Edge      ipa\n 80:         18          0          0          0          0          0          0          0   mpm-gic 262 Level     sps\n 82:          0          0          0          0          0          0          0          0  pmic_arb 8388648 Edge      qpnp_kpdpwr_status\n 83:          0          0          0          0          0          0          0          0  pmic_arb 8454184 Edge      qpnp_resin_status\n 86:          0          0          0          0          0          0          0          0  pmic_arb 37748800 Edge      pm8953_tz\n 99:          0          0          0          0          0          0          0          0  pmic_arb 54722575 Edge      qpnp_adc_tm_high_interrupt\n100:          0          0          0          0          0          0          0          0  pmic_arb 54788111 Edge      qpnp_adc_tm_low_interrupt\n115:         10          0          0          0          0          0          0          0  pmic_arb 588251167 Edge      qpnp_vadc_interrupt\n116:          0          0          0          0          0          0          0          0  pmic_arb 592445473 Edge      qpnp_adc_tm_interrupt\n117:          0          0          0          0          0          0          0          0  pmic_arb 574619676 Edge      pmi632_tz\n126:          0          0          0          0          0          0          0          0  pmic_arb 600834086 Edge      bcl-vbat-lvl0\n127:          0          0          0          0          0          0          0          0  pmic_arb 600899622 Edge      bcl-vbat-lvl1\n128:          0          0          0          0          0          0          0          0  pmic_arb 600965158 Edge      bcl-vbat-lvl2\n129:          0          0          0          0          0          0          0          0  pmic_arb 1052835852 Edge      qpnp_lcdb_sc_irq\n130:          0          0          0          0          0          0          0          0  pmic_arb 1026555915 Edge      qpnp_flash_led_fault_irq\n131:          0          0          0          0          0          0          0          0  pmic_arb 1026752523 Edge      qpnp_flash_led_all_ramp_down_done_irq\n132:          0          0          0          0          0          0          0          0  pmic_arb 1026818059 Edge      qpnp_flash_led_all_ramp_up_done_irq\n133:          0          0          0          0          0          0          0          0   mpm-gic 168 Edge      hs_phy_irq\n134:          0          0          0          0          0          0          0          0   mpm-gic 252 Level     ss_phy_irq\n135:          0          0          0          0          0          0          0          0   mpm-gic 166 Edge      pwr_event_irq\n136:          0          0          0          0          0          0          0          0   mpm-gic  56 Edge      modem\n137:          0          0          0          0          0          0          0          0   mpm-gic 325 Edge      adsp\n138:          0          0          0          0          0          0          0          0   mpm-gic 181 Edge      wcnss\n141:          0          0          0          0          0          0          0          0   mpm-gic  47 Edge      cpr3\n142:          0          0          0          0          0          0          0          0   mpm-gic 110 Edge      csiphy\n143:          0          0          0          0          0          0          0          0   mpm-gic 111 Edge      csiphy\n144:          0          0          0          0          0          0          0          0   mpm-gic 347 Edge      csiphy\n145:          0          0          0          0          0          0          0          0   mpm-gic  83 Edge      csid\n146:          0          0          0          0          0          0          0          0   mpm-gic  84 Edge      csid\n147:          0          0          0          0          0          0          0          0   mpm-gic 185 Edge      csid\n148:          0          0          0          0          0          0          0          0   mpm-gic  87 Edge      ispif\n149:          0          0          0          0          0          0          0          0   mpm-gic  89 Edge      vfe\n150:          0          0          0          0          0          0          0          0   mpm-gic  61 Edge      vfe\n153:          0          0          0          0          0          0          0          0   mpm-gic  82 Edge      cci\n155:         57          0          0          0          0          0          0          0   mpm-gic 333 Level     7af7000.spi\n284:          0          0          0          0          0          0          0          0   msmgpio  65 Edge      chipone-tddi\n285:          0          0          0          0          0          0          0          0   msmgpio  48 Edge      soc:fpc_fpc1020\n286:          0          0          0          0          0          0          0          0   msmgpio  86 Edge      abov_sar\n287:          0          0          0          0          0          0          0          0  pmic_arb 101777437 Edge      qpnp_rtc_alarm\n288:          0          0          0          0          0          0          0          0  pmic_arb 553648147 Edge      chgr-error\n289:          0          0          0          0          0          0          0          0  pmic_arb 553713683 Edge      chg-state-change\n296:          0          0          0          0          0          0          0          0  pmic_arb 554696724 Edge      otg-fail\n300:          0          0          0          0          0          0          0          0  pmic_arb 554958868 Edge      high-duty-cycle\n301:          0          0          0          0          0          0          0          0  pmic_arb 555024404 Edge      input-current-limiting\n303:          0          0          0          0          0          0          0          0  pmic_arb 555155476 Edge      switcher-power-ok\n304:          0          0          0          0          0          0          0          0  pmic_arb 555745301 Edge      bat-temp\n306:          0          0          0          0          0          0          0          0  pmic_arb 555876373 Edge      bat-ov\n307:          0          0          0          0          0          0          0          0  pmic_arb 555941909 Edge      bat-low\n308:          0          0          0          0          0          0          0          0  pmic_arb 556007445 Edge      bat-therm-or-id-missing\n309:          0          0          0          0          0          0          0          0  pmic_arb 556072981 Edge      bat-terminal-missing\n312:          0          0          0          0          0          0          0          0  pmic_arb 556793878 Edge      usbin-collapse\n313:          0          0          0          0          0          0          0          0  pmic_arb 556859414 Edge      usbin-vashdn\n314:          0          0          0          0          0          0          0          0  pmic_arb 556924950 Edge      usbin-uv\n315:          0          0          0          0          0          0          0          0  pmic_arb 556990486 Edge      usbin-ov\n316:          0          0          0          0          0          0          0          0  pmic_arb 557056022 Edge      usbin-plugin\n318:          0          0          0          0          0          0          0          0  pmic_arb 557187094 Edge      usbin-src-change\n319:          0          0          0          0          0          0          0          0  pmic_arb 557252630 Edge      usbin-icl-change\n320:          0          0          0          0          0          0          0          0  pmic_arb 558891031 Edge      typec-or-rid-detect-change\n322:          0          0          0          0          0          0          0          0  pmic_arb 559022103 Edge      typec-cc-state-change\n323:          0          0          0          0          0          0          0          0  pmic_arb 559087639 Edge      typec-vconn-oc\n325:          0          0          0          0          0          0          0          0  pmic_arb 559218711 Edge      typec-attach-detach\n326:          0          0          0          0          0          0          0          0  pmic_arb 559284247 Edge      typec-legacy-cable-detect\n329:          0          0          0          0          0          0          0          0  pmic_arb 560005144 Edge      wdog-bark\n331:          0          0          0          0          0          0          0          0  pmic_arb 560136216 Edge      aicl-done\n336:          0          0          0          0          0          0          0          0  pmic_arb 711065626 Edge      flash-state-change\n338:          0          0          0          0          0          0          0          0  pmic_arb 711327770 Edge      ilim2-s2\n340:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      modem\n341:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n342:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      modem\n343:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      modem\n372:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      adsp\n373:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n374:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      adsp\n375:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      adsp\n404:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      wcnss\n405:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n406:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      wcnss\n407:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      wcnss\n436:          0          0          0          0          0          0          0          0     GIC-0 172 Edge      dwc3\n439:          0          0          0          0          0          0          0          0  pmic_arb 612433961 Edge      qg-vbat-low\n440:          0          0          0          0          0          0          0          0  pmic_arb 612499497 Edge      qg-vbat-empty\n441:          0          0          0          0          0          0          0          0  pmic_arb 612565033 Edge      qg-fifo-done\n442:          0          0          0          0          0          0          0          0  pmic_arb 612630569 Edge      qg-good-ocv\n443:          0          0          0          0          0          0          0          0   msmgpio  85 Edge      volume_up\nIPI0:        45         94         94         94         92         91         92         91       Rescheduling interrupts\nIPI1:         0          6          6          6          8          6          7          7       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI4:       182          3          4          3          7          3          7          6       IRQ work interrupts\nIPI5:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm632/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    4 root      0:00 [kworker/0:0H]\n    5 root      0:00 [kworker/u16:0]\n    6 root      0:00 [ksoftirqd/0]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [lru-add-drain]\n   15 root      0:00 [cpuhp/0]\n   16 root      0:00 [cpuhp/1]\n   17 root      0:00 [migration/1]\n   18 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0H]\n   21 root      0:00 [rcuop/1]\n   22 root      0:00 [rcuos/1]\n   23 root      0:00 [rcuob/1]\n   24 root      0:00 [cpuhp/2]\n   25 root      0:00 [migration/2]\n   26 root      0:00 [ksoftirqd/2]\n   27 root      0:00 [kworker/2:0]\n   28 root      0:00 [kworker/2:0H]\n   29 root      0:00 [rcuop/2]\n   30 root      0:00 [rcuos/2]\n   31 root      0:00 [rcuob/2]\n   32 root      0:00 [cpuhp/3]\n   33 root      0:00 [migration/3]\n   34 root      0:00 [ksoftirqd/3]\n   35 root      0:00 [kworker/3:0]\n   36 root      0:00 [kworker/3:0H]\n   37 root      0:00 [rcuop/3]\n   38 root      0:00 [rcuos/3]\n   39 root      0:00 [rcuob/3]\n   40 root      0:00 [cpuhp/4]\n   41 root      0:00 [migration/4]\n   42 root      0:00 [ksoftirqd/4]\n   43 root      0:00 [kworker/4:0]\n   44 root      0:00 [kworker/4:0H]\n   45 root      0:00 [rcuop/4]\n   46 root      0:00 [rcuos/4]\n   47 root      0:00 [rcuob/4]\n   48 root      0:00 [cpuhp/5]\n   49 root      0:00 [migration/5]\n   50 root      0:00 [ksoftirqd/5]\n   51 root      0:00 [kworker/5:0]\n   52 root      0:00 [kworker/5:0H]\n   53 root      0:00 [rcuop/5]\n   54 root      0:00 [rcuos/5]\n   55 root      0:00 [rcuob/5]\n   56 root      0:00 [cpuhp/6]\n   57 root      0:00 [migration/6]\n   58 root      0:00 [ksoftirqd/6]\n   59 root      0:00 [kworker/6:0]\n   60 root      0:00 [kworker/6:0H]\n   61 root      0:00 [rcuop/6]\n   62 root      0:00 [rcuos/6]\n   63 root      0:00 [rcuob/6]\n   64 root      0:00 [cpuhp/7]\n   65 root      0:00 [migration/7]\n   66 root      0:00 [ksoftirqd/7]\n   67 root      0:00 [kworker/7:0]\n   68 root      0:00 [kworker/7:0H]\n   69 root      0:00 [rcuop/7]\n   70 root      0:00 [rcuos/7]\n   71 root      0:00 [rcuob/7]\n   72 root      0:00 [kdevtmpfs]\n   73 root      0:00 [netns]\n   75 root      0:00 [smd_channel_clo]\n   76 root      0:00 [kworker/u17:0]\n   77 root      0:00 [kworker/u16:1]\n   78 root      0:00 [smsm_cb_wq]\n   79 root      0:00 [msm_watchdog]\n   80 root      0:00 [oom_reaper]\n   81 root      0:00 [writeback]\n   82 root      0:00 [kcompactd0]\n   83 root      0:00 [crypto]\n   84 root      0:00 [bioset]\n   85 root      0:00 [kblockd]\n   86 root      0:00 [irq/62-tsens-up]\n   87 root      0:00 [irq/63-tsens-cr]\n   88 root      0:00 [md]\n   89 root      0:00 [edac-poller]\n   90 root      0:00 [system]\n   91 root      0:00 [devfreq_wq]\n   92 root      0:00 [governor_msm_ad]\n   93 root      0:00 [cfg80211]\n   94 root      0:00 [irq/129-qpnp_lc]\n   95 root      0:00 [kworker/0:2]\n   96 root      0:00 [irq/141-cpr3]\n   98 root      0:00 [ipa_power_mgmt]\n   99 root      0:00 [sps_ipa_power_m]\n  100 root      0:00 [ipawq36]\n  101 root      0:00 [iparepwq36]\n  102 root      0:00 [kworker/u17:1]\n  103 root      0:00 [ipawq33]\n  104 root      0:00 [iparepwq33]\n  105 root      0:00 [ipawq34]\n  106 root      0:00 [iparepwq34]\n  107 root      0:00 [ipa_rm_wq]\n  108 root      0:00 [ipa_interrupt_w]\n  109 root      0:00 [ipa_holb_wq]\n  134 root      0:00 [kswapd0]\n  135 root      0:00 [vmstat]\n  136 root      0:00 [ecryptfs-kthrea]\n  171 root      0:00 [rot_workq_0]\n  172 root      0:00 [mdss_dsi_event]\n  173 root      0:00 [mdss_dsi_dba]\n  174 root      0:00 [mem_share_svc]\n  175 root      0:00 [hwrng]\n  177 root      0:00 [diag_real_time_]\n  178 root      0:00 [qmi_hndl0000000]\n  179 root      0:00 [diag_wq]\n  180 root      0:00 [msm_ipc_router]\n  182 root      0:00 [DIAG_USB_diag]\n  183 root      0:00 [diag_cntl_wq]\n  184 root      0:00 [diag_dci_wq]\n  185 root      0:00 [DIAG_SMD_MODEM_]\n  186 root      0:00 [DIAG_SMD_MODEM_]\n  187 root      0:00 [DIAG_SMD_MODEM_]\n  188 root      0:00 [DIAG_SMD_MODEM_]\n  189 root      0:00 [DIAG_SMD_MODEM_]\n  190 root      0:00 [DIAG_SMD_LPASS_]\n  191 root      0:00 [DIAG_SMD_LPASS_]\n  192 root      0:00 [DIAG_SMD_LPASS_]\n  193 root      0:00 [DIAG_SMD_LPASS_]\n  194 root      0:00 [DIAG_SMD_LPASS_]\n  195 root      0:00 [DIAG_SMD_WCNSS_]\n  196 root      0:00 [DIAG_SMD_WCNSS_]\n  197 root      0:00 [DIAG_SMD_WCNSS_]\n  198 root      0:00 [DIAG_SMD_WCNSS_]\n  199 root      0:00 [DIAG_SMD_WCNSS_]\n  200 root      0:00 [DIAG_SMD_SENSOR]\n  201 root      0:00 [DIAG_SMD_SENSOR]\n  202 root      0:00 [DIAG_SMD_SENSOR]\n  203 root      0:00 [DIAG_SMD_SENSOR]\n  204 root      0:00 [DIAG_SMD_SENSOR]\n  205 root      0:00 [DIAG_SMD_CDSP_C]\n  206 root      0:00 [DIAG_SMD_CDSP_D]\n  207 root      0:00 [DIAG_SMD_CDSP_C]\n  208 root      0:00 [DIAG_SMD_CDSP_D]\n  209 root      0:00 [DIAG_SMD_CDSP_D]\n  210 root      0:00 [MODEM_CNTL]\n  211 root      0:00 [MODEM_DATA]\n  212 root      0:00 [MODEM_CMD]\n  213 root      0:00 [MODEM_DCI]\n  214 root      0:00 [MODEM_DCI_CMD]\n  215 root      0:00 [LPASS_CNTL]\n  216 root      0:00 [LPASS_DATA]\n  217 root      0:00 [LPASS_CMD]\n  218 root      0:00 [LPASS_DCI]\n  219 root      0:00 [LPASS_DCI_CMD]\n  220 root      0:00 [WCNSS_CNTL]\n  221 root      0:00 [WCNSS_DATA]\n  222 root      0:00 [WCNSS_CMD]\n  223 root      0:00 [WCNSS_DCI]\n  224 root      0:00 [WCNSS_DCI_CMD]\n  225 root      0:00 [SENSORS_CNTL]\n  226 root      0:00 [SENSORS_DATA]\n  227 root      0:00 [SENSORS_CMD]\n  228 root      0:00 [SENSORS_DCI]\n  229 root      0:00 [SENSORS_DCI_CMD]\n  230 root      0:00 [DIAG_CTRL]\n  231 root      0:00 [DIAG_DATA]\n  232 root      0:00 [DIAG_CMD]\n  233 root      0:00 [DIAG_DCI_DATA]\n  234 root      0:00 [DIAG_DCI_CMD]\n  235 root      0:00 [CDSP_CNTL]\n  236 root      0:00 [CDSP_DATA]\n  237 root      0:00 [CDSP_CMD]\n  238 root      0:00 [CDSP_DCI]\n  239 root      0:00 [CDSP_DCI_CMD]\n  240 root      0:00 [DIAG_CNTL_SOCKE]\n  246 root      0:00 [kgsl-workqueue]\n  247 root      0:00 [kgsl-mementry]\n  248 root      0:00 [kgsl_worker_thr]\n  249 root      0:00 [irq/19-arm-smmu]\n  250 root      0:00 [kgsl-events]\n  251 root      0:00 [kgsl_devfreq_wq]\n  252 root      0:00 [bioset]\n  253 root      0:00 [bioset]\n  254 root      0:00 [bioset]\n  255 root      0:00 [bioset]\n  256 root      0:00 [bioset]\n  257 root      0:00 [bioset]\n  258 root      0:00 [bioset]\n  259 root      0:00 [bioset]\n  260 root      0:00 [bioset]\n  261 root      0:00 [bioset]\n  262 root      0:00 [bioset]\n  263 root      0:00 [bioset]\n  264 root      0:00 [bioset]\n  265 root      0:00 [bioset]\n  266 root      0:00 [bioset]\n  267 root      0:00 [bioset]\n  268 root      0:00 [bioset]\n  269 root      0:00 [bioset]\n  270 root      0:00 [bioset]\n  271 root      0:00 [bioset]\n  272 root      0:00 [bioset]\n  273 root      0:00 [bioset]\n  274 root      0:00 [bioset]\n  275 root      0:00 [bioset]\n  276 root      0:00 [bioset]\n  277 root      0:00 [bioset]\n  278 root      0:00 [bioset]\n  279 root      0:00 [bioset]\n  280 root      0:00 [bioset]\n  281 root      0:00 [bioset]\n  282 root      0:00 [bioset]\n  283 root      0:00 [bioset]\n  284 root      0:00 [bioset]\n  285 root      0:00 [qseecom-unreg-l]\n  286 root      0:00 [qseecom-unload-]\n  287 root      0:00 [qcrypto_seq_res]\n  308 root      0:00 [spi7]\n  309 root      0:00 [sharedmem_qmi_w]\n  313 root      0:00 [qmi_hndl0000000]\n  314 root      0:00 [uether]\n  315 root      0:00 [chipone-tddi-wo]\n  316 root      0:00 [irq/285-soc:fpc]\n  317 root      0:00 [irq/286-abov_sa]\n  318 root      0:00 [msm_vidc_worker]\n  319 root      0:00 [pm_workerq_venu]\n  320 root      0:00 [irq/44-arm-smmu]\n  321 root      0:00 [irq/27-arm-smmu]\n  322 root      0:00 [irq/28-arm-smmu]\n  323 root      0:00 [irq/26-arm-smmu]\n  324 root      0:00 [msm_cci_wq]\n  325 root      0:00 [msm_cci_wq]\n  326 root      0:00 [msm_cpp_workque]\n  327 root      0:00 [irq/288-chgr-er]\n  328 root      0:00 [irq/289-chg-sta]\n  329 root      0:00 [kworker/0:4]\n  330 root      0:00 [irq/296-otg-fai]\n  331 root      0:00 [irq/300-high-du]\n  332 root      0:00 [irq/301-input-c]\n  333 root      0:00 [irq/303-switche]\n  334 root      0:00 [irq/304-bat-tem]\n  335 root      0:00 [irq/306-bat-ov]\n  336 root      0:00 [irq/307-bat-low]\n  338 root      0:00 [irq/308-bat-the]\n  339 root      0:00 [irq/309-bat-ter]\n  340 root      0:00 [irq/312-usbin-c]\n  341 root      0:00 [irq/313-usbin-v]\n  342 root      0:00 [irq/314-usbin-u]\n  343 root      0:00 [irq/315-usbin-o]\n  344 root      0:00 [irq/316-usbin-p]\n  345 root      0:00 [irq/318-usbin-s]\n  346 root      0:00 [irq/319-usbin-i]\n  347 root      0:00 [irq/320-typec-o]\n  348 root      0:00 [irq/322-typec-c]\n  349 root      0:00 [irq/323-typec-v]\n  350 root      0:00 [irq/325-typec-a]\n  351 root      0:00 [irq/326-typec-l]\n  352 root      0:00 [irq/329-wdog-ba]\n  353 root      0:00 [irq/331-aicl-do]\n  354 root      0:00 [irq/336-flash-s]\n  355 root      0:00 [irq/338-ilim2-s]\n  357 root      0:00 [qmi_tmd_wq]\n  358 root      0:00 [qmi_svc_event_w]\n  359 root      0:00 [irq/126-bcl-vba]\n  360 root      0:00 [irq/127-bcl-vba]\n  361 root      0:00 [irq/128-bcl-vba]\n  362 root      0:00 [kworker/4:1]\n  363 root      0:00 [kworker/6:1]\n  364 root      0:00 [kworker/7:1]\n  365 root      0:00 [dm_bufio_cache]\n  366 root      0:00 [mmc_clk_gate/mm]\n  368 root      0:00 [irq/16-7824900.]\n  369 root      0:00 [irq/15-mmc0]\n  370 root      0:00 [bioset]\n  371 root      0:00 [sdhci_msm_pm_qo]\n  372 root      0:00 [mmc-cmdqd/0]\n  373 root      0:00 [bioset]\n  374 root      0:00 [mmcqd/0rpmb]\n  375 root      0:00 [mmc_clk_gate/mm]\n  376 root      0:00 [irq/77-7864900.]\n  377 root      0:00 [irq/76-mmc1]\n  378 root      0:00 [irq/78-7864900.]\n  379 root      0:00 [apr_driver]\n  380 root      0:00 [ipv6_addrconf]\n  381 root      0:00 [irq/374-adsp]\n  382 root      0:00 [sysmon_wq]\n  383 root      0:00 [irq/406-wcnss]\n  384 root      0:00 [irq/342-modem]\n  385 root      0:00 [irq/133-hs_phy_]\n  386 root      0:00 [irq/135-pwr_eve]\n  387 root      0:00 [irq/134-ss_phy_]\n  388 root      0:00 [usb_bam_wq]\n  389 root      0:00 [irq/439-qg-vbat]\n  390 root      0:00 [irq/440-qg-vbat]\n  391 root      0:00 [irq/441-qg-fifo]\n  392 root      0:00 [irq/442-qg-good]\n  393 root      0:00 [core_ctl/0]\n  394 root      0:00 [core_ctl/4]\n  399 root      0:00 [rq_stats]\n  400 root      0:00 [msm_perf:events]\n  401 root      0:00 [irq/39-arm-smmu]\n  402 root      0:00 [config_lo]\n  403 root      0:00 [config_st]\n  404 root      0:00 [hw_load]\n  405 root      0:00 [hw_store]\n  406 root      0:00 [irq/132-qpnp_fl]\n  407 root      0:00 [irq/131-qpnp_fl]\n  408 root      0:00 [irq/130-qpnp_fl]\n  409 root      0:00 [ipa_A7_svc]\n  410 root      0:00 [qmi_hndl0000000]\n  411 root      0:00 [clnt_req]\n  412 root      0:00 [clnt_resp]\n  413 root      0:00 [clnt_req]\n  422 root      0:00 [kworker/1:1]\n  424 root      0:00 [kworker/2:1]\n  425 root      0:00 [kworker/3:1]\n  426 root      0:00 [kworker/0:1H]\n  437 root      0:00 [kworker/0:0]\n  450 root      0:00 [kworker/1:0]\n  454 root      0:00 [kworker/0:1]\n  461 root      0:00 [kworker/0:3]\n  484 root      0:00 ps -A\n"
  },
  {
    "path": "results/sdm632/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,614400,1995.163723,3.247336788736979,42.91210241244045,5.377550669355712,46.48956660225252,125.315479015\r\n1,883200,2867.399956,3.246603211050725,64.4758373814449,5.6220888204940795,44.46745826723341,87.196832935\r\n1,1036800,3363.470025,3.2440876012731485,78.46387819078285,5.8327227188634385,42.86162947391315,74.33640617\r\n1,1363200,4425.092042,3.246106251467136,123.50263769133015,6.978324506274216,35.825218471170956,56.503445082\r\n1,1536000,4988.028731,3.2474145384114586,156.64254707543705,7.851872576187933,31.839538603589318,50.126052741\r\n1,1670400,5424.405485,3.247369184027778,180.3299109178741,8.312182653282964,30.07633619567545,46.094309097\r\n1,1804800,5860.84021,3.2473627050088654,246.63073678497616,10.521364055268144,23.76117760841311,42.660392587\r\n4,633600,3314.814569,5.231714913194445,83.6337441636911,6.308520195963697,39.62894501946026,75.430321326\r\n4,902400,4720.276419,5.230802769281915,130.99007790070792,6.939162567268212,36.02740209304813,52.97471899\r\n4,1094400,5724.753836,5.230951970029239,172.96308097797092,7.555039346508899,33.090496095896874,43.680069202\r\n4,1401600,7333.528894,5.232255204052512,273.8760917049554,9.3394377445914,26.768206699035876,34.100960352\r\n4,1555200,8135.3726,5.231078060699588,339.1197327155618,10.424343236678233,23.98232620740755,30.739418061\r\n4,1804800,9440.018125,5.230506496564717,471.617695895676,12.494798410557895,20.008326007785303,26.493489365\r\n"
  },
  {
    "path": "results/sdm632/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 936.4270903720171, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1258.614506443, 1253.87391647, 1259.6599476600002, 1258.4461755640002, 1260.18035268, 1253.8152998599999, 1256.1837470880002, 1263.1859930819999, 1266.9430501840002, 1261.393857804, 1265.7891714569998, 1263.8789995589998, 1253.6397506280002, 1251.61291358, 1261.855293944, 1247.101230016, 1256.125312736, 1258.497098852, 1256.0081428240003, 1262.6069418539998, 1260.5791845920003, 1257.455745318, 1253.347268774, 1257.5145403529998, 1257.103879647, 1251.61291358, 1256.5873725879999, 1255.949407264, 1251.67144088, 1257.682960584, 1266.930337205, 1262.537512015, 1263.92710212, 1266.6474508380002, 1257.0450846119998, 1257.7417854540001, 1255.256905728, 1259.709945612, 1262.8325239530002, 1256.4113777639998, 1263.3480752310002, 1258.77819234, 1257.50678764, 1262.0178214899997, 1268.55699894, 1260.7463573149996, 1257.800308658, 1257.682960584, 1253.62975875, 1253.688405, 1262.4787519369997, 1254.3261916200001, 1249.9326587249998, 1258.425490212, 1254.893974432, 1260.334146588, 1260.0495970400002, 1262.076551886, 1258.601841276, 1258.1445742600001, 1261.6642281779998, 1264.1472919680002, 1256.634423906, 1254.90527232, 1259.1220123080002, 1251.199012042, 1259.0044860720002, 1261.2074658819997, 1255.363256496, 1260.3931202429999, 1257.2720914919998, 1255.421690848, 1256.7517124629999, 1248.31134351, 1256.059388116, 1249.582451445, 1253.4544214999999, 1252.645372444, 1258.945571892, 1260.1575280519999, 1256.458340314, 1264.726021466, 1255.766163863, 1256.0009240819998, 1253.22013725, 1255.3045209360002, 1253.2787835, 1255.9421586869998, 1256.9197456040001, 1255.0698799040001, 1256.6847477899998, 1255.648934434, 1263.572973864, 1252.4698232120002, 1257.5572344860002, 1258.249139148, 1254.4365281279997, 1257.909759078, 1262.124979921, 1254.4365281279997, 1249.7530078800003, 1256.8020958639997, 1257.7789703009998, 1259.4024241240002, 1261.030757994, 1259.4613679440001, 1256.223461687, 1249.8112055519998, 1255.7073984679998, 1256.860920734, 1247.8449753, 1250.50299586, 1255.871294503, 1245.0086950030002, 1260.5006343299997, 1254.20230656, 1257.5572344860002, 1253.506230945, 1252.23565737], \"power_mean\": 1257.3029998736722, \"energy_millijoules\": 6286.514999368361, \"energy_joules\": 6.286514999368361}, \"cpus\": {\"1\": {\"freqs\": {\"614400\": {\"active\": {\"elapsed_sec\": 125.315479015, \"elapsed_ns\": 125315479015, \"power_samples\": [44.249746054999605, 47.54364185799977, 44.37018084399983, 44.61136002299986, 42.222259263999604, 46.9106155139998, 44.8827132709996, 39.55811635699956, 46.971106658999815, 46.57542101499985, 45.942246622999846, 43.39705219199982, 48.93918474999987, 44.82231143599961, 43.73298985299971, 49.846303402999865, 49.26953072000015, 45.51984474499977, 42.58333828799982, 47.483431436000046, 39.737990512999886, 42.79485482699988, 47.42291065099971, 48.697173598999825, 44.43055303899973, 46.2734245229999, 41.252778592999675, 42.402798776000054, 45.700829848999774, 48.06004212499988, 50.600239504999536, 47.483431436000046, 42.97548310699972, 41.645131366999976, 44.82231143599961, 49.39075091000018, 46.54859927699977, 46.213273270999935, 46.789943434999714, 39.8583179929999, 40.31520726199983, 47.81846067699962, 45.51984474499977, 42.161976378999725, 44.18937385999993, 46.03219939899964, 42.10200263699949, 51.29807038399986, 50.53956993499969, 44.12931126599983, 46.669271355999854, 45.670051654999725, 45.33885964099977, 41.52493425699981, 42.10200263699949, 40.43528572699984, 46.669271355999854, 43.55227222099984, 42.855167351999626, 38.86513329699983, 38.528055562999725, 47.18144823699981, 45.9717380889997, 38.16804642699981, 38.228150691999645, 42.04171975199961, 39.678135304999614, 49.0883220769997, 46.03219939899964, 43.251179316999696, 43.37186403699957, 42.554223316999696, 47.18144823699981, 44.068939070999704, 47.81846067699962, 49.54372570099986, 41.52493425699981, 41.86118023999984, 45.79066421699986, 46.36743605299989, 45.91158683699973, 46.03219939899964, 36.89830397700007, 34.35881907699991, 43.1911464049997, 40.892055808999885, 46.03219939899964, 44.8827132709996, 43.1911464049997, 42.161976378999725, 45.218306206999614, 44.58132360199966, 43.251179316999696, 41.34448409699985, 50.752709575999916, 43.7073251029999, 38.624905276999925, 47.36238986600006, 52.84128104199999, 38.4081552599996, 36.83856710899977, 40.892055808999885, 37.4154155719998, 44.068939070999704, 43.37186403699957, 43.61261458099966, 45.33885964099977, 43.251179316999696, 43.431896948999565, 42.10200263699949, 46.30694490799988, 49.60405465699978, 41.98143686699973, 46.87915467500011, 44.58132360199966, 42.31328251199989, 41.224286986999914, 45.670051654999725, 37.59533137199969, 39.61797156499961, 47.36238986600006, 43.7676972979998, 45.09775277299991, 50.23684433699964, 43.13080404499988, 48.152881510999805, 50.35818347699956, 39.437788876999775, 41.86118023999984, 43.13080404499988, 46.75842346799982, 43.52651811899955, 45.09775277299991, 46.18627282899979, 39.19775098099967, 36.89830397700007, 47.120927451999705, 45.73051296499966, 46.427616986999965, 43.251179316999696, 38.048146123999686, 41.164033936999886, 45.42851647299972, 41.224286986999914, 50.29751390699971, 49.54372570099986, 41.224286986999914, 42.04171975199961, 44.976889433, 45.03732110299984, 39.95466318199988, 45.03732110299984, 47.00019624499964, 40.651779844999965, 42.554223316999696, 44.52092176699989, 38.804999196999916, 38.048146123999686, 46.93967545999976, 37.35534094700006, 40.651779844999965, 41.224286986999914, 43.7073251029999, 47.63711933299987, 43.7676972979998, 48.152881510999805, 44.27993393299971, 45.54943909299959, 46.125781684, 34.69244628499996, 41.04383682699972, 51.77960944499978, 43.311521676999746, 39.89446960700002, 45.218306206999614, 38.56507955699976, 33.820715764999704, 50.32874757799982, 45.36836522099975, 34.69244628499996, 45.60959034499979, 46.75842346799982, 43.52651811899955, 43.5868903139999, 44.46082968499968, 43.07046168499983, 40.53133302499987, 49.36211688499975, 44.85633599899984, 40.863386666999986, 42.829711140999734, 42.554223316999696, 44.34002601499992, 48.54376368499993, 45.54943909299959, 40.014856756999734, 38.56507955699976, 48.33431220699981, 43.7676972979998, 41.62035784299974, 41.800897354999734, 45.42851647299972, 40.23083365100001, 46.30694490799988, 53.98969862899958, 42.43359826699998, 40.29105706099995, 46.75842346799982, 40.29105706099995, 41.74092361299972, 37.86814155599973, 43.5868903139999, 43.52651811899955, 38.50494545699985, 40.411195043000134, 38.44481135699948, 42.31328251199989, 48.21346196599961, 42.31328251199989, 36.35913255499986, 45.9446184599999, 45.82394638100004, 38.44481135699948, 47.45577798899967, 42.25296998699969, 43.978544263999765, 43.13080404499988, 46.36743605299989, 39.83458471699987, 37.748241252999605, 45.488977782999655, 45.36836522099975, 39.83458471699987, 36.935742796999875, 42.95008641299978, 43.225276345999646, 43.5868903139999, 51.32887358899984, 41.50010121599962, 39.07742350099966, 41.37984458899973, 45.36836522099975, 50.90470320500003, 44.46082968499968, 40.53133302499987, 39.257606188999944, 40.29105706099995, 44.79590432899977, 45.36836522099975, 38.20489171699978, 47.39522736899994, 40.23083365100001, 41.37984458899973, 43.466455524999674, 47.213886024999965, 38.44481135699948, 39.65431267699978, 47.15364592099991, 40.74318955700005, 36.29908776499997, 43.34602073599967, 36.935742796999875, 42.13265423199982, 48.09261172499964, 45.30790391099981, 44.675350895000065, 50.54095062899978, 44.09903818099974, 41.95202595199976, 38.50494545699985, 41.319561703999625, 44.675350895000065, 45.36836522099975, 45.126830038999515, 36.99581742199962, 33.88033429300003, 45.82394638100004, 46.516961053999694, 36.35913255499986, 38.265025816999696, 45.30790391099981, 39.41384706199983, 41.44012747399961, 44.09903818099974, 40.29105706099995, 43.918142429, 40.350971632999745, 41.771397671999694, 35.66243273299983, 44.49436579099961, 48.301634125999726, 44.55479746099991, 37.62834094999971, 44.49436579099961, 40.29105706099995, 43.10484155699987, 40.74318955700005, 41.44012747399961, 39.41384706199983, 42.0726510019997, 42.46827587699977, 40.62299244699989, 42.01233847699996, 43.5868903139999, 44.49436579099961, 43.16521375199977, 43.16521375199977, 36.935742796999875, 40.56273939699986, 40.56273939699986, 49.32866754299971, 41.37984458899973, 44.373812356999906, 49.05953918299974, 42.34790060499972, 31.854985972999657, 43.67684484199958, 43.67684484199958, 40.11069566900005, 43.918142429, 42.98440676799987, 39.474040636999916, 48.362244220999855, 38.95740455299983, 43.28564854099977, 41.771397671999694, 45.30790391099981, 40.682936506999795, 41.199305076999735, 43.10484155699987, 45.582292011999925, 39.99055768700009, 43.67684484199958, 43.16521375199977, 42.40793351699972, 36.755826996999986, 48.48315359000003, 42.01233847699996, 40.23083365100001, 43.556350924999606, 48.514712734999875, 39.93033427699993, 38.83738560499978, 50.90470320500003, 40.38228923699967, 36.23904297499985, 46.21466749199976, 41.199305076999735, 39.17369013199982, 40.56273939699986, 41.83171019699989, 45.64278315699994, 38.02479779700002, 44.82514360499977, 40.442542286999924, 33.00465004199987, 43.044469361999745, 43.044469361999745, 42.40793351699972, 39.35396217199991, 42.28755824499967, 44.82514360499977, 47.42746939599988, 42.52861823699982, 40.442542286999924, 38.41685648899988, 42.92403457299952, 41.7113944419998, 45.40112878799982, 42.16718297299985, 47.42746939599988, 36.81590162199973, 44.19282725299968, 41.13902219199963, 40.38228923699967, 45.34094785399998, 41.53076616199996, 40.56273939699986, 39.23357502199974, 39.35396217199991, 44.19282725299968, 37.44833638199975, 47.54831963699985, 43.556350924999606, 40.50248634699983, 36.755826996999986, 49.14696995899976, 39.99055768700009, 38.597039176999715, 43.61675275999983, 48.18072475700001, 39.81019629499997, 37.388232116999916, 43.16521375199977, 42.98440676799987, 37.96466369699988, 47.24603869999987, 40.89850893799985, 32.13305682899977, 39.05330298199988, 44.88560491499993, 43.61675275999983, 43.10484155699987, 46.21466749199976, 40.32203618699987, 40.26209212699996, 45.066678787, 44.88560491499993, 41.771397671999694, 45.703274301999954, 39.113496556999735, 41.59076939199986, 44.31338068699961, 42.92403457299952, 35.302958540999725, 41.079048449999846, 41.83171019699989, 42.863662377999844, 38.993418091999956, 49.72268736499973, 43.43585700799986, 34.73062750399981, 46.97230457699993, 43.797648511999796, 42.622792799999615, 45.159784629999876, 41.6510819169996, 37.844703876999574, 44.072273818999975, 40.65768654099952, 44.19282725299968, 42.34790060499972, 40.32203618699987, 38.93322451699987, 41.079048449999846, 42.68316499499997, 40.32203618699987, 38.35700128099984, 45.46161993299984, 41.98646534099953, 38.35700128099984, 45.066678787, 43.67684484199958, 39.26911211899983, 41.53076616199996, 48.12011466199988, 44.011842148999904, 37.02822298099977, 45.280456708999736, 40.38228923699967, 36.90832267799965, 50.8700957489998, 41.41045040699987, 38.236982333000014, 40.89850893799985, 41.41045040699987, 44.25325892299975, 41.53076616199996, 38.35700128099984, 39.56961149299991, 47.24603869999987, 46.488831164999965, 42.16718297299985, 38.17681859299978, 42.441985815999715, 44.583918480999955, 39.05330298199988, 41.470453636999764, 45.40112878799982, 39.113496556999735, 40.838226052999744, 46.549071268999796, 38.87333962699995, 38.35700128099984, 45.973205077999864, 41.470453636999764, 35.81965321100006, 39.81019629499997, 49.14696995899976, 42.22721588499985, 42.743227588999616, 39.629834903000074, 40.65768654099952, 39.113496556999735, 42.863662377999844, 45.791953085999694, 38.813146051999865, 42.106840612999804, 43.770735280999816, 38.87333962699995, 43.19455942099967, 45.22027577499989, 40.71796942599963, 37.08832724600006, 45.22027577499989, 40.201839076999704, 35.75960842099994], \"power_mean\": 42.91210241244045, \"energy_millijoules\": 5377.550669355712, \"energy_joules\": 5.377550669355712, \"coremark_score\": 1995.163723, \"coremarks_per_mhz\": 3.247336788736979, \"ulpmark_cm_score\": 46.48956660225252}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1252.5762315, 1259.92223829, 1252.8688612499998, 1250.906826953, 1255.47293961, 1249.577814888, 1251.364541465, 1257.322117485, 1252.69322325, 1250.56152316, 1254.0851957759999, 1255.930089538, 1250.906826953, 1260.265225534, 1254.424993576, 1250.6728987059998, 1256.450051642, 1261.7712079049998, 1261.1338382099998], \"power_mean\": 1254.6792971416314, \"energy_millijoules\": 6273.396485708157, \"energy_joules\": 6.273396485708157}}, \"883200\": {\"active\": {\"elapsed_sec\": 87.196832935, \"elapsed_ns\": 87196832935, \"power_samples\": [65.91626107099978, 65.85478810099971, 60.84298989099966, 61.413804868999705, 67.00029708199986, 64.46401773199955, 65.85478810099971, 65.54805374299985, 62.6210534869997, 64.40260423699988, 69.7870244649996, 67.06182952699965, 66.93876463699985, 62.68206318899979, 69.54073426699983, 65.03872315699982, 65.16160981699977, 67.18457886599981, 65.28418138299958, 62.37607122999975, 61.5972848209999, 66.36830616199973, 58.42411431699975, 63.954479732999744, 65.79363037699954, 60.985894432999885, 64.52543122699967, 65.60952671299992, 63.07348465299992, 70.87058500699959, 58.87728822899976, 61.927738381999916, 65.40675294899984, 64.40260423699988, 67.00029708199986, 69.98799781100001, 69.35609565899972, 68.02685784599998, 60.02344995199974, 66.42980896699987, 61.352854336999826, 58.18027744699975, 64.64794327599975, 68.33418670699984, 60.84298989099966, 64.97759492099976, 65.54805374299985, 63.13452403699989, 62.68206318899979, 72.13878415699969, 62.437395414999855, 64.40260423699988, 67.84239735799997, 66.06142293499988, 63.64819003599996, 70.93197960499992, 61.169374384999855, 63.770642957000064, 69.4177472489996, 64.97759492099976, 58.57218656499981, 70.11104395699999, 67.1230464209998, 60.59836363699992, 62.6210534869997, 62.25373734300001, 62.31506152799966, 66.24561595099976, 73.34515329199962, 64.97759492099976, 63.954479732999744, 64.15758013899972, 62.37607122999975, 57.670116193999775, 64.79358002499976, 70.23440641699972, 59.962244716999976, 61.866443836999906, 64.2800921879998, 59.90135335499963, 63.64819003599996, 75.002399492, 66.36830616199973, 62.55972930199982, 62.37607122999975, 64.03506808999964, 67.51363698099976, 69.08913476799967, 66.93876463699985, 64.91615159099979, 60.92462972299995, 68.08813410400012, 68.08813410400012, 68.72003625599973, 65.28418138299958, 63.07348465299992, 65.1001664869998, 65.60952671299992, 60.92462972299995, 59.38730119699994, 64.15758013899972, 69.11012162299971, 60.41528647899986, 63.89341066699967, 67.39082812499964, 65.42542304899985, 62.437395414999855, 73.6726372569999, 64.58652978099963, 63.07348465299992, 69.86495166500004, 63.464353259999825, 59.26526411699979, 62.951091249, 71.89201876899983, 62.437395414999855, 63.01213063299997, 61.56059977399991, 61.10810967499992, 63.01213063299997, 69.23310864099972, 68.27259459200013, 59.84014811999987, 60.47620752299986, 68.5354870000001, 59.718051522999986, 62.951091249, 68.842963757, 62.88973722900005, 59.77925675799975, 72.0152430769997, 67.20645698899966, 66.06142293499988, 62.31506152799966, 68.47418125399986, 63.34190033899972, 62.437395414999855, 66.69326595899997, 62.437395414999855, 65.30279235499961, 64.09616664399982, 62.131403455999816, 69.68022428899985, 62.88973722900005, 65.30279235499961, 69.4177472489996, 67.51363698099976, 61.88642119899987, 59.84014811999987, 64.60956512899998, 72.28151052199996, 65.93873272399992, 55.84933931599994, 64.79358002499976, 71.01378625699977, 67.26770356499992, 64.97759492099976, 65.99992012999996, 57.87532465199979, 57.87532465199979, 69.04847003299983, 69.2947602309996, 58.77680207699996, 62.07007927099994, 65.54805374299985, 62.25373734300001, 68.41255949899983, 60.02344995199974, 64.09616664399982, 61.62189431899992, 72.404794347, 67.96526573100004, 60.92462972299995, 64.15758013899972, 69.80327043500006, 63.28051648399969, 65.42542304899985, 65.1798464149997, 58.02281542899959, 64.79358002499976, 70.50095155099984, 67.26770356499992, 63.40328419399975, 62.131403455999816, 67.71921312799964, 62.131403455999816, 61.6831888639997, 68.08813410400012, 61.49961955999993, 62.07007927099994, 63.28051648399969, 62.19241315799991, 62.58359640100002, 66.57051661999981, 63.34190033899972, 67.14489470900003, 64.09616664399982, 67.32926584500001, 56.48530936700013, 58.26708490099986, 63.34190033899972, 64.54812179899977, 60.17066022499989, 64.67100845899972, 67.02208585299991, 58.083961188999865, 68.47418125399986, 69.55717814299987, 63.97365459499997, 60.557669818999784, 66.2631699459996, 64.30297866699993, 62.644635784999764, 68.86383142499994, 70.70539837699971, 58.89883915700011, 58.715626677000046, 61.37703046999968, 61.88642119899987, 65.30279235499961, 62.39984897700015, 61.37703046999968, 56.18065333699997, 65.75453970799981, 64.30297866699993, 69.55717814299987, 68.28963199799978, 57.06050639599971, 61.316050255999926, 63.28051648399969, 70.89030445699973, 69.55717814299987, 61.071186406999686, 63.85114254599989, 61.25475571100014, 65.11868869099976, 65.11868869099976, 69.49549691300012, 59.59595492599965, 59.41265309399978, 62.39984897700015, 65.75453970799981, 58.837663756999746, 68.41255949899983, 72.034625947, 61.88642119899987, 63.85114254599989, 63.09667970799978, 65.75453970799981, 72.034625947, 73.36397246699994, 62.131403455999816, 70.70539837699971, 63.91224109999962, 60.741149770999755, 65.81572711399986, 68.86383142499994, 60.109425154999826, 57.692290291999825, 71.97282557199969, 63.40328419399975, 58.98484419499982, 60.680199238999876, 67.53475264000008, 59.41265309399978, 68.16638848799971, 64.36410690299977, 65.69303690299989, 63.28051648399969, 66.2631699459996, 63.91224109999962, 65.57034669199993, 63.667217001999916, 64.42555023299997, 63.28051648399969, 61.7640873119999, 64.36410690299977, 60.435454576999746, 61.7027631269998, 68.10508274199992, 61.7027631269998, 61.7640873119999, 65.81572711399986, 63.667217001999916, 64.48699356299971, 67.78080524300003, 62.7673438249999, 65.05721572099992, 69.37245076700015, 62.913157720999834, 61.825097013999766, 59.47354445599967, 70.06960702999982, 70.76713927699984, 63.605803506999564, 61.25475571100014, 63.54470495299984, 63.09667970799978, 71.66445754699976, 65.50884388699978, 59.290242623999575, 63.91224109999962, 67.92053348599961, 64.81195433299968, 59.47354445599967, 68.41255949899983, 67.47347638199994, 64.36410690299977, 64.99574275099963, 68.10508274199992, 63.09667970799978, 57.90083747699964, 66.89896129299973, 69.49549691300012, 61.825097013999766, 60.37450404499987, 63.605803506999564, 56.119596886999716, 58.14510694899991, 70.64397409699995, 63.91224109999962, 55.81494085699978, 63.54470495299984, 62.46088836099989, 61.071186406999686, 67.92053348599961, 68.28963199799978, 61.88642119899987, 69.82339570399972, 66.71490586100003, 64.2415353369995, 64.05752044099972, 66.14042060699967, 70.00821243199971, 61.7027631269998, 60.31323933499971, 63.667217001999916, 64.42555023299997, 59.80387785699986, 67.35060800899987, 70.52080891699984, 56.63352892699959, 59.1072546649998, 71.09058560899962, 64.81195433299968, 60.88761710299991], \"power_mean\": 64.4758373814449, \"energy_millijoules\": 5622.088820494079, \"energy_joules\": 5.6220888204940795, \"coremark_score\": 2867.399956, \"coremarks_per_mhz\": 3.246603211050725, \"ulpmark_cm_score\": 44.46745826723341}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1254.394801184, 1267.619566768, 1252.7837111840001, 1263.5134294060001, 1259.825764704, 1252.3857346559998, 1257.979736823, 1258.7338580319997, 1258.8515624299998, 1256.9461152600002, 1261.844607664, 1249.902576095, 1243.205017757, 1267.5010314660003, 1255.4423887530002, 1255.0406680899998, 1250.421849038, 1260.399202722, 1259.825764704], \"power_mean\": 1257.1903887755789, \"energy_millijoules\": 6285.951943877894, \"energy_joules\": 6.285951943877894}}, \"1036800\": {\"active\": {\"elapsed_sec\": 74.33640617, \"elapsed_ns\": 74336406170, \"power_samples\": [78.19023960699974, 73.38187878299982, 74.26063773199985, 80.66295887299975, 83.58401688499976, 78.76000734499985, 78.76000734499985, 79.39570949299969, 84.91345382500003, 76.16349994999973, 80.22807872999965, 78.38787904099968, 81.11224004499991, 75.85409276099949, 78.57394319299988, 76.73297926699956, 74.26063773199985, 80.66295887299975, 81.61914576899972, 70.84382022099976, 76.42342418199974, 85.3620219329996, 72.99344782699995, 71.66445754699976, 76.60922086199957, 78.63575217499965, 77.43068985499963, 86.1180404549998, 80.35219345899964, 74.07519729199976, 79.84101445300007, 89.86056669699997, 84.72649848899982, 73.56723045499962, 78.44968802299991, 84.97555885099973, 79.20955598899991, 82.37931130499987, 81.80565551299969, 70.15099675699958, 73.50565815300001, 82.19271220899964, 82.37931130499987, 73.32030648099976, 76.29966577699952, 77.24480382299976, 78.9612450649995, 84.72649848899982, 79.20955598899991, 73.76623573699976, 79.71664033299976, 78.9612450649995, 78.89908764499978, 77.05891779099989, 83.5216512049999, 80.29029562499977, 82.37931130499987, 83.5216512049999, 78.38787904099968, 78.69787975999952, 81.61914576899972, 82.31700509999996, 75.91578340299975, 76.48546245699981, 84.09512879299973, 77.63231345500003, 75.91578340299975, 80.47662724899988, 83.07278594299987, 81.55718876499964, 81.43263602499974, 80.16586183499976, 76.60922086199957, 73.1965271109998, 81.94380690799994, 84.28199536099964, 78.26362387099994, 78.26362387099994, 73.1965271109998, 75.91578340299975, 72.56106333699995, 80.10396400099967, 79.20955598899991, 68.9413147849998, 78.13968730399984, 76.48546245699981, 81.17416756099965, 85.48661163099973, 79.59258512099996, 75.73007549099998, 79.4685299089997, 79.71664033299976, 76.36138590699989, 78.83724898099968, 82.00611311299963, 77.57053396099991, 73.13495480899974, 82.76174605999972, 80.04174710599978, 74.58719962099963, 80.47662724899988, 79.40634284899988, 73.76623573699976, 79.28228763699985, 78.38787904099968, 78.89908764499978, 80.80132560899983, 77.81828883899993, 84.92547756699969, 77.69441139999981, 81.24644564699952, 81.75720781199993, 81.94380690799994, 80.10396400099967, 82.00611311299963, 76.87303175899979, 82.69941021499972, 74.9093109969997, 73.07306512399987, 69.84292549699967, 85.556640087, 78.83724898099968, 69.84292549699967, 76.42342418199974, 81.37067902099966, 80.04174710599978, 78.2018148889997, 79.40634284899988, 74.84733219699979, 72.49952071699977, 87.01042908799968, 83.21046245299999, 79.40634284899988, 79.91763237699979, 75.66838484899972, 78.46494197299967, 81.81951401699985, 76.99684968099996, 73.64271462199986, 76.87303175899979, 79.97984927199968, 81.37067902099966, 74.21614003699983, 77.38455857699978, 81.94380690799994, 77.44665652199978, 76.36138590699989, 78.9612450649995, 71.29428914699997, 78.71325289699962, 82.96163938099971, 80.55297711699973, 83.02368523699988, 72.25239854699998, 81.88182022199976, 77.5084360159999, 75.0946117169999, 81.43263602499974, 79.8554154819999, 76.68714572699992, 79.3444746969999, 77.5084360159999, 82.76174605999972, 79.91763237699979, 78.71325289699962, 74.21614003699983, 76.17590737199953, 83.33487398899979, 80.67715136299967, 76.87303175899979, 81.75720781199993, 77.57053396099991, 78.71325289699962, 75.60637621399974, 80.04174710599978, 80.67715136299967, 78.65109547699967, 76.2376275019999, 84.29016266200006, 74.21614003699983, 76.56332780499974, 82.00611311299963, 78.71325289699962, 76.81128194699954, 78.65109547699967, 78.58893805699972, 81.94380690799994, 79.4685299089997, 75.03295075699953, 78.01575073699996, 76.11386909699968, 77.95362315200009, 80.55297711699973, 72.31425839699978, 77.44665652199978, 79.40634284899988, 79.28228763699985, 80.6152238469997, 79.40634284899988, 72.3761182469998, 71.17100532199993, 83.5969246039997, 83.84586670999965, 71.61708364199967, 74.53807387699976, 81.81951401699985, 75.35897765999971, 75.42066830199997, 83.21046245299999, 81.12189290699985, 80.55297711699973, 80.10396400099967, 77.322460632, 73.33343553200007, 81.12189290699985, 79.15823242499982, 80.30430941099985, 78.13968730399984, 78.65109547699967, 74.66171363699982, 74.84733219699979, 82.89927370099986, 81.63291492099984, 74.15419087699979, 75.42066830199997, 80.87342615899979, 72.00559360700004, 70.22738190899986, 82.57505819599965, 74.78535339699988, 75.29696902499995, 80.9976595329997, 85.24485780500004, 79.91763237699979, 74.66171363699982, 79.7935176479998, 85.556640087, 77.19858319299988, 75.42066830199997, 72.25239854699998, 78.40278455299995, 80.9976595329997, 78.01575073699996, 72.06713622699999, 72.82614114999978, 76.68714572699992, 80.36655614099982, 78.40278455299995, 78.46494197299967, 77.57053396099991, 85.49447589099987, 80.36655614099982, 80.93538316299987, 75.99011069199969, 75.23496038999974, 78.27878846899966, 78.46494197299967, 77.1364852480001, 76.4395098829998, 80.36655614099982, 78.34094588899984, 74.09255940499952, 78.90980309299994, 84.61384318099977, 74.66171363699982, 77.1364852480001, 82.20168246799994, 78.21663104899972, 76.62539591499967, 80.36655614099982, 79.09604536499978, 74.3524553169998, 77.64362243300002, 80.11788843499971, 74.66171363699982, 75.29696902499995, 86.00473218399998, 77.07470575399998, 74.47609507699985, 77.58149484799969, 78.8476160329999, 78.97199015299998, 73.65955066099991, 81.57060871599992, 73.90702961299985, 73.33343553200007, 79.54496912899981, 77.07470575399998, 76.56332780499974, 82.3883703319998, 84.92547756699969, 72.00559360700004, 75.61851733199978, 80.9976595329997, 80.93538316299987], \"power_mean\": 78.46387819078285, \"energy_millijoules\": 5832.722718863439, \"energy_joules\": 5.8327227188634385, \"coremark_score\": 3363.470025, \"coremarks_per_mhz\": 3.2440876012731485, \"ulpmark_cm_score\": 42.86162947391315}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1255.652420292, 1250.6951951190001, 1253.748934278, 1253.9251072220002, 1250.577842949, 1244.527253489, 1248.849816815, 1252.540094358, 1251.9041838240003, 1251.037906944, 1257.614909796, 1248.6743569349999, 1247.008717656, 1250.5194677670002, 1251.096612864, 1250.6951951190001, 1253.5142381300002, 1252.8784764650002, 1257.555906306], \"power_mean\": 1251.7377177014737, \"energy_millijoules\": 6258.688588507368, \"energy_joules\": 6.2586885885073675}}, \"1363200\": {\"active\": {\"elapsed_sec\": 56.503445082, \"elapsed_ns\": 56503445082, \"power_samples\": [120.90556159699986, 123.5010620449998, 128.31990871699986, 124.6384981819997, 119.0686014529997, 120.90556159699986, 128.6975855390001, 129.39271821700004, 120.96941320499968, 125.65100882499974, 123.43709209699978, 122.04284641699974, 120.33442587299965, 124.6384981819997, 120.90556159699986, 129.83433438899965, 128.56850996899993, 124.13604937699961, 118.87665583699982, 122.23523762499963, 124.44575073399983, 118.36988104699981, 124.13604937699961, 123.5653617349999, 127.43164216899982, 117.73907344700001, 123.43709209699978, 123.30849271699981, 124.6384981819997, 122.67774439699951, 126.3461168519998, 123.37279240699968, 127.30268554899976, 117.80277703299998, 122.17132684700005, 118.74880165099967, 121.53636919699989, 125.27342599699955, 128.3752275769998, 115.83835054699989, 127.67615245699994, 123.37279240699968, 126.53913177199956, 127.17405958699987, 127.9980305869999, 125.90835381199963, 119.00483869699974, 121.27985696099972, 127.7403295969998, 125.84393497699989, 123.37279240699968, 128.11773836299972, 122.04284641699974, 127.61164450699971, 120.33442587299965, 122.74201444699952, 119.57567508199963, 118.81289308099986, 131.54141815699973, 126.66769821699972, 119.57567508199963, 117.48327399599975, 127.8048375469998, 128.1819451849999, 121.97893563899993, 129.77006839699993, 130.9711769119997, 123.75073201699956, 120.01432930599958, 122.54953388699982, 126.41056532700009, 126.41056532700009, 125.7798464949999, 123.24452276900001, 123.0519534409998, 124.00772022199976, 123.99622671999987, 120.01432930599958, 115.51896523299979, 126.3461168519998, 126.53913177199956, 117.67504149199999, 115.58290787799979, 126.98095531499985, 123.0519534409998, 123.37279240699968, 127.48295941699962, 117.67504149199999, 120.71334850900007, 126.3461168519998, 125.45841302600002, 128.24648297, 122.61380393699983, 126.21755040699964, 128.11773836299972, 117.92210692399976, 123.0519534409998, 125.01620019699976, 117.67504149199999, 123.11592338899982, 123.37279240699968, 123.81506154199951, 122.42132337699968, 125.08058919699965, 122.98765375099993, 122.48526383699982, 125.84393497699989, 129.31855011299967, 124.57413901699988, 117.35553845499976, 122.17132684700005, 126.85232935299973, 127.67615245699994, 120.58498702899988, 125.01620019699976, 133.37751874100013, 120.58498702899988, 122.67774439699951, 120.64916776899986, 125.58692034299975, 122.8593841129998, 123.24452276900001, 126.85232935299973, 123.55840323200005, 117.92210692399976, 125.39399419099959, 119.25572641099961, 125.01620019699976, 131.21864875899973, 127.61164450699971, 120.39310307299979, 124.25300328599974, 128.1819451849999, 131.34769017299982, 118.04990159299973, 121.15176548499949, 131.34769017299982, 123.0519534409998, 117.16377095899975, 124.88775239699976, 120.95946362899986, 112.92453247899971, 120.58498702899988, 125.7154276599997, 117.73025065999991, 122.9236838029999, 124.25300328599974, 121.65839343799985, 120.26474159299983, 125.01620019699976, 124.8236935970001, 118.99957017799989, 122.66681478499981, 123.36574455199957, 125.52250150799978, 129.31855011299967, 124.12461500299992, 122.29311286699999, 119.88635647499973, 127.61164450699971, 126.59474677100002, 119.69423273899974, 116.72075950899966, 126.08898396199993, 125.52250150799978, 117.29150649999974, 118.55685603499956, 125.20106803899989, 121.59415322299992, 121.529913008, 128.1819451849999, 126.08898396199993, 124.18897416799996, 118.87165647499978, 124.69491559699986, 124.63085679699952, 122.9236838029999, 120.39310307299979, 127.28976637699975, 125.83152056699987, 122.16457276699953, 128.11773836299972, 116.72075950899966, 120.7029513929997, 126.1531019319998, 125.9600870119998, 119.1916051459998, 122.10063230699961, 118.49309327899982, 119.75838364399988, 123.75073201699956, 128.11773836299972, 126.65922508099993, 118.30114766299971, 125.32957535599985, 128.7483684269996, 120.76716177299977, 122.03636225699984, 126.53059911899982, 126.02453548699987, 125.39399419099959, 119.69423273899974, 123.42974418199992, 118.17296480299979, 119.75838364399988, 122.79508442299993, 121.59415322299992, 124.63085679699952, 126.33749484699979, 123.42974418199992, 119.69423273899974, 125.58692034299975, 131.39723134699966, 127.98899375600013, 119.0636914429997, 122.35705332699968, 127.22525842699974, 126.65922508099993, 120.76716177299977, 126.53059911899982, 125.52250150799978, 118.99957017799989, 117.29150649999974, 120.26474159299983], \"power_mean\": 123.50263769133015, \"energy_millijoules\": 6978.324506274216, \"energy_joules\": 6.978324506274216, \"coremark_score\": 4425.092042, \"coremarks_per_mhz\": 3.246106251467136, \"ulpmark_cm_score\": 35.825218471170956}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1258.511572791, 1262.138182675, 1265.1879171280002, 1276.529342664, 1270.49167795, 1274.2357833199999, 1261.7984671160002, 1263.124542171, 1270.670039804, 1261.7984671160002, 1257.9393844679998, 1260.8717052499999, 1259.2060994879998, 1251.190901161, 1254.6529941000001, 1260.4728145079998, 1253.2686883150002, 1261.56210916, 1265.602943044], \"power_mean\": 1262.5922964331053, \"energy_millijoules\": 6312.961482165527, \"energy_joules\": 6.312961482165527}}, \"1536000\": {\"active\": {\"elapsed_sec\": 50.126052741, \"elapsed_ns\": 50126052741, \"power_samples\": [157.91147130699983, 153.35115827599975, 152.78209770699982, 156.64659665699992, 159.37408368499973, 154.41880026499985, 157.1495730319998, 158.4143290369998, 158.4143290369998, 154.0510598169999, 149.74914447199967, 156.58069016700006, 161.7763869719995, 160.24330475899978, 154.61591428099973, 161.6440978019998, 160.11147382599984, 154.31387260499991, 159.17634595699974, 156.77807165500008, 162.64477575299975, 154.0510598169999, 153.28540057099985, 151.38628250299985, 158.21668007699986, 157.2811075469997, 160.87772629699975, 155.88067028599994, 155.3158749920001, 158.97860822899975, 151.25528247399984, 146.957771375, 152.51986035899972, 156.44921516900013, 153.9856096489998, 152.78209770699982, 155.1845186390001, 157.45072441299976, 151.88964449499986, 162.40678037199973, 159.04463366899972, 159.5473132369998, 158.97860822899975, 152.08640227099977, 158.28267587699975, 150.8869484119998, 160.11147382599984, 162.84304842499978, 155.119009301, 153.35115827599975, 160.30938967399993, 156.2518336810001, 149.48716443499984, 154.35298308499978, 157.7139116989997, 153.722796861, 156.51512165899976, 159.5473132369998, 152.4541324889999, 155.0531622860001, 160.30938967399993, 154.5500971009999, 158.3483332369999, 158.4143290369998, 161.8784046369999, 157.64828402099965, 147.19992478499967, 155.48608601399997, 164.7422558029998, 159.48125796199997, 154.5500971009999, 157.51635209099982, 158.78087050099998, 157.01803851699992, 151.8239462649999, 158.28267587699975, 154.61591428099973, 154.0510598169999, 155.250365654, 148.79167614899984, 153.85437194099995, 161.5782924199998, 163.1071856489998, 157.64828402099965, 153.28540057099985, 163.7771663809997, 156.31774017099997, 152.4541324889999, 155.61750149500017, 157.51635209099982, 156.31774017099997, 159.28343088199995, 157.64828402099965, 152.32301381499997, 153.02304418899962, 157.51635209099982, 159.67908504199977, 152.02070404099982, 154.6587555499998, 160.11147382599984, 156.31774017099997, 148.72612670399985, 160.30938967399993, 159.17634595699974, 157.51635209099982, 155.61750149500017, 160.74583584700008, 152.65097903299966, 154.92180593299986, 155.1845186390001, 157.38475844799973, 161.38019786799964, 162.14242282700002, 155.55196266899998, 149.99070458899996, 149.92509566900003, 156.82056767699964, 156.82056767699964, 154.35298308499978, 153.78858440099998, 158.0190311169997, 156.18626517300004, 156.12035868299995, 161.18210331599994, 158.84689594099996, 160.61394539699995, 161.3140532829998, 159.48125796199997, 158.08502691699982, 153.4603214450001, 159.28343088199995, 162.31443446899993, 154.22168624899996, 153.02304418899962, 156.95210219199998, 158.15068427699998, 161.18210331599994, 161.38019786799964, 152.32301381499997, 158.64915821299996, 162.51270714099974, 154.15586906899966, 154.92180593299986, 162.57857169299973, 157.01803851699992, 159.21737560699967, 154.22168624899996, 158.38539504499977, 159.01954852699964, 155.791502197, 158.58313277299976, 162.57857169299973, 160.67972109700008, 155.55196266899998, 156.68869502699977, 154.85595891799994, 147.96106146099964, 155.48608601399997, 158.84689594099996, 151.1896140790002, 155.98888368500002, 163.14286387699985, 156.05445219299986, 155.42020935899973, 156.95210219199998, 156.88616586700005, 156.62309683699982, 157.25316480499987, 155.48608601399997, 157.8213821569998, 157.05560519699975, 163.07663017699997, 154.6587555499998, 155.9229771949997, 152.1918951409998, 156.05445219299986, 154.7901119029998, 158.78087050099998, 158.95383199699995, 150.73094559700007, 156.05445219299986, 163.14286387699985, 156.12035868299995, 150.99294565499986, 160.04538891099992, 154.0903894129999, 153.4603214450001, 159.8474730629996, 158.45142048499952, 156.62309683699982, 157.31879248299947, 157.75538635699968, 157.8213821569998, 157.05560519699975, 158.51744592499972, 153.4603214450001, 150.4284869539997, 160.85205879699993, 157.1871988399996], \"power_mean\": 156.64254707543705, \"energy_millijoules\": 7851.872576187933, \"energy_joules\": 7.851872576187933, \"coremark_score\": 4988.028731, \"coremarks_per_mhz\": 3.2474145384114586, \"ulpmark_cm_score\": 31.839538603589318}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1281.6021488600002, 1266.851799192, 1270.471711694, 1273.758011642, 1265.52238201, 1257.9806484629999, 1270.1343423659998, 1264.315405605, 1262.355151461, 1250.3213357840002, 1255.272089986, 1247.847527766, 1255.789130008, 1255.789130008, 1264.8320065040002, 1261.724195965, 1262.355151461, 1259.5277248500001, 1254.1236728520003], \"power_mean\": 1262.1354508672107, \"energy_millijoules\": 6310.677254336053, \"energy_joules\": 6.310677254336053}}, \"1670400\": {\"active\": {\"elapsed_sec\": 46.094309097, \"elapsed_ns\": 46094309097, \"power_samples\": [179.88858631699964, 178.42417822200014, 178.758379397, 175.96272532199964, 171.47019216400008, 184.88244959699978, 183.1854359089998, 177.7942581499999, 179.82189299699985, 186.01222856299978, 173.99816087399972, 182.22027549799986, 179.95562341699952, 182.64898245799986, 178.49081237199994, 185.3150034609996, 182.28708735199984, 179.25857762899955, 176.89286443699984, 182.98422279700003, 186.2135419609997, 181.65299338699992, 179.19191379699987, 173.8646221439999, 174.63222515699977, 184.54676362399982, 180.38894986199966, 173.9313915089997, 178.49081237199994, 178.8575637529998, 174.99517258099968, 187.8428532209996, 185.94489389299974, 178.35720059699975, 174.63222515699977, 177.09327571699964, 181.65299338699992, 176.25891934099968, 185.04612849499972, 175.82935083699954, 182.71582379999973, 181.88483866399974, 181.3180498129998, 181.4519583949998, 179.28662753699973, 187.14142462799964, 180.68410471699963, 174.5654259569999, 184.74824420799973, 180.88505035699973, 175.96272532199964, 184.248325797, 182.01915115399993, 179.48739505699996, 173.8646221439999, 182.22027549799986, 185.3150034609996, 177.7273101649996, 189.87549290699963, 184.04693456499967, 180.05430305299978, 177.02635756699988, 180.6170081419998, 175.0620014210001, 178.02299942199966, 182.51461068799995, 178.72354883299977, 181.88483866399974, 182.5817965729998, 184.61369381799955, 184.4794884289995, 183.14852594900003, 182.71582379999973, 182.5817965729998, 182.64898245799986, 182.64898245799986, 177.66036217999954, 178.79055629299978, 182.78300968499957, 176.95978258700006, 177.52680953299955, 183.7113974609997, 176.25891934099968, 173.09748072499974, 183.9796892049999, 178.223588822, 170.6366077849998, 180.6170081419998, 185.81056985899977, 178.0896335719999, 179.9205131159997, 182.64898245799986, 177.25936091599965, 181.18414123099956, 186.01222856299978, 188.47274365299972, 174.72819993299981, 181.18414123099956, 189.7638557329999, 181.7508705649998, 182.8803524609998, 181.2509234029999, 176.7593713069998, 173.03074119500002, 183.2829573890001, 180.68410471699963, 176.99225562199967, 184.41221323399986, 184.54676362399982, 178.58987754099962, 179.48739505699996, 184.61369381799955, 180.12136998799997, 171.70071580399986, 185.54157648499972, 182.947223485, 180.48315907699975, 175.79138717, 180.55025565199958, 184.21073264999973, 176.19203102599977, 181.81802680999976, 179.21959043699962, 174.72819993299981, 183.01443920499992, 179.21959043699962, 179.71965624399968, 178.52287008099984, 177.4598615479997, 178.52287008099984, 183.34982841300007, 180.6170081419998, 182.947223485, 178.52287008099984, 182.24655623399963, 176.69245315699982, 177.75543239699982, 179.71965624399968, 190.03368107899996, 177.52680953299955, 177.4598615479997, 184.0765272609999, 172.06810392499983, 171.56735569400007, 186.80514512499963, 182.8803524609998, 173.59822949799945, 175.49574319199974, 182.24655623399963, 181.18414123099956, 181.88483866399974, 185.04612849499972, 179.65258930899995, 175.29551003199958, 184.77759868299972, 186.67070244599972, 180.91597982899975, 185.40725245099975, 180.55025565199958, 176.55896002699978, 182.947223485, 184.21073264999973, 177.6884547720001, 183.44276086900004, 181.81802680999976, 175.79138717, 180.21511686199983, 180.48315907699975, 184.14380245599955, 181.61690246599983, 186.535914156, 177.25936091599965, 180.28221343699965, 181.68371432000004, 179.71965624399968, 175.16179268200017, 182.24655623399963, 179.15255333699974, 180.28221343699965, 182.8803524609998, 178.68432497699973, 174.16531587699978, 174.5948849649999], \"power_mean\": 180.3299109178741, \"energy_millijoules\": 8312.182653282964, \"energy_joules\": 8.312182653282964, \"coremark_score\": 5424.405485, \"coremarks_per_mhz\": 3.247369184027778, \"ulpmark_cm_score\": 30.07633619567545}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1261.408162263, 1253.417911188, 1251.68262947, 1248.411040446, 1261.33204098, 1261.704058374, 1258.523453277, 1261.8057738, 1264.001649954, 1255.123660108, 1263.1513934580003, 1280.5173681299998, 1274.642284768, 1263.544856155, 1268.610402982, 1274.187065382, 1264.69161126, 1255.889879862, 1269.0029836419997], \"power_mean\": 1262.718327657842, \"energy_millijoules\": 6313.59163828921, \"energy_joules\": 6.31359163828921}}, \"1804800\": {\"active\": {\"elapsed_sec\": 42.660392587, \"elapsed_ns\": 42660392587, \"power_samples\": [246.29918313400003, 250.511155722, 248.82951193500003, 251.42615840499957, 245.45949318199996, 241.8062717409996, 244.96592798899974, 249.81136877299969, 245.17908823699963, 246.79265951699995, 246.01865978099977, 243.70289370899968, 247.3517962809999, 246.2289622689998, 251.70358275699982, 246.29918313400003, 251.77407135700014, 243.70289370899968, 240.89347074500006, 248.0556346269998, 249.03749200699963, 247.21159601299996, 249.60053134099985, 249.03749200699963, 241.38691418899975, 238.93145176399958, 252.97057942899983, 251.21514285299963, 237.38358121299962, 244.68600203300002, 249.03749200699963, 244.8259650110001, 251.14468389299986, 250.22980039699974, 242.78973638899993, 242.16040805299986, 247.42207662099963, 249.81136877299969, 246.72240881699986, 253.6705151629999, 241.52693939899996, 248.89711357700003, 242.99959328499995, 248.82674392699982, 241.66660556999977, 240.68388132100017, 249.9521677429998, 244.0525333789999, 246.44176627699972, 246.8625499569996, 252.97057942899983, 244.12230528499958, 256.05945557899963, 246.5822676769999, 247.00111540500006, 244.19243684000003, 249.03749200699963, 250.86320938099948, 240.89347074500006, 251.9852121839997, 249.6709308259999, 242.64959222899984, 247.21159601299996, 244.47587766499987, 244.33591468699979, 243.42320504299983, 248.96712235699988, 243.91227026899992, 247.00111540500006, 247.00111540500006, 248.33785330099977, 249.17787043699968, 251.422351317, 245.73849653499997, 241.38691418899975, 252.19640585599973, 256.61805721999986, 250.44072659699987, 243.49294746099986, 253.52972128099987, 246.0213428569998, 246.16148399699955, 248.96712235699988, 252.19640585599973, 240.68388132100017, 240.8234879749998, 251.9852121839997, 248.82674392699982, 237.39009377700017, 246.37187583700006, 239.4908271649997, 247.91501427699973, 245.10925696699996, 232.049751497, 249.3900549320001, 245.95109215699972, 245.59841491199995, 250.5116372369996, 249.03841852999994, 246.5822676769999, 246.93083506499966, 250.22980039699974, 251.422351317, 250.86320938099948, 241.38691418899975, 248.19753399899992, 230.15348585299967, 241.67082935699977, 246.37187583700006, 253.1069776969996, 244.4057162749998, 241.67082935699977, 252.68910992099995, 246.23173469699987, 242.93321063199983, 247.21335478699962, 227.28181328699998, 243.7723668079998, 249.53049287900012, 245.38811242400016, 243.70259490199987, 245.45797318199993, 249.73788004699963, 245.52819404699972, 250.5820961969996, 254.86173635299997, 244.96923447199993, 241.2472480179997, 250.01923537200014, 247.42392474699955, 250.5116372369996, 254.44005583199987, 245.17908823699963, 243.42242833099976, 248.96712235699988, 251.70386170999996, 247.28366496199988, 242.86346821400002, 249.38645677199975, 248.68636549699977, 242.723264384, 250.72265278899954, 249.17921750000028, 240.68388132100017, 244.75902075199974, 248.96838006799976, 250.5820961969996, 245.45797318199993, 253.95172879100005, 250.5820961969996, 248.05721469699984, 244.89904324699955, 252.68423411299977, 249.808309172, 248.96838006799976, 246.72035445699976, 246.0213428569998, 249.94880624699977, 244.75902075199974, 247.07309500199972, 251.77401851199966, 247.7062360829998, 243.07341446200007, 224.34208874099977, 242.16016570099964, 245.88084145699986, 243.98546753899996, 244.75902075199974, 249.17921750000028], \"power_mean\": 246.63073678497616, \"energy_millijoules\": 10521.364055268145, \"energy_joules\": 10.521364055268144, \"coremark_score\": 5860.84021, \"coremarks_per_mhz\": 3.2473627050088654, \"ulpmark_cm_score\": 23.76117760841311}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1271.749804746, 1297.06032153, 1266.2944475999998, 1256.447271123, 1258.00700272, 1262.262507498, 1266.1161360479998, 1267.896392672, 1270.4851082160003, 1258.1531267999997, 1257.199574832, 1262.025674184, 1265.4858314159999, 1271.630498057, 1267.4199780840001, 1267.5142893339998, 1264.9870331039997, 1267.30102733, 1283.922777717], \"power_mean\": 1267.4715159479474, \"energy_millijoules\": 6337.357579739737, \"energy_joules\": 6.337357579739737}}}}, \"4\": {\"freqs\": {\"633600\": {\"active\": {\"elapsed_sec\": 75.430321326, \"elapsed_ns\": 75430321326, \"power_samples\": [76.05461976899983, 87.05028697099988, 88.69740463699964, 80.48290843999962, 77.19771876300001, 86.9252226929998, 84.8444508770001, 78.52335601300001, 84.39808541299976, 87.942245749, 80.48290843999962, 85.72428746799983, 89.14308687199991, 83.51437398799999, 78.01382299499983, 91.35392720499999, 79.97352374899992, 79.40200384999957, 86.67477263499995, 84.96933738200005, 78.7099551089998, 83.57691809299968, 87.49635571199974, 82.82258562199968, 85.66165405299967, 85.7951678469999, 81.87094813299996, 78.64764890399988, 85.03194115699989, 84.52291240099976, 84.39808541299976, 84.71956437199992, 84.5320740919999, 79.72438085299996, 82.12639411700002, 92.4918970809997, 89.7098101969998, 80.6073794929996, 84.46065935299976, 81.68390344499971, 81.23709238899983, 89.51931485599971, 86.73746552499983, 76.87474761999965, 86.29550979700002, 80.6073794929996, 85.53670841999974, 82.50066102899996, 83.00980842999957, 86.67477263499995, 78.5856622179997, 80.66977500799953, 79.91115806900007, 81.5593137469998, 86.23284654700001, 81.74635843499982, 80.23364635699977, 89.83517128199992, 82.0017452909999, 76.87474761999965, 90.78294297099956, 93.18421828100008, 79.15298014099972, 83.82677377399955, 90.53177934899986, 83.07200230799981, 77.82731325099985, 91.10264439599996, 89.89801295699976, 76.05461976899983, 78.64764890399988, 88.0049983089998, 89.83517128199992, 81.62144845500006, 86.86252980299992, 79.15298014099972, 74.66691460399989, 77.25996549299975, 84.14811054500001, 89.89801295699976, 89.89801295699976, 83.07200230799981, 81.93926066099993, 82.94729396499997, 87.87981499699981, 90.65719995099994, 92.3033374969998, 93.50358907700002, 79.8491122129999, 84.39808541299976, 88.69740463699964, 84.96933738200005, 79.02862812199965, 79.91115806900007, 82.94729396499997, 75.99243270900001, 80.92560687199989, 85.41144158999987, 85.92017299700001, 84.39808541299976, 87.30850919199975, 84.14811054500001, 75.23881249699957, 81.80849314299985, 89.01778491499977, 88.0049983089998, 81.05013705299984, 84.71956437199992, 84.65696059700008, 86.54970835699987, 82.94729396499997, 89.14308687199991, 88.63462243699973, 82.2510429429999, 83.13451677299986, 83.45215062199964, 74.66691460399989, 78.08817113499981, 84.39808541299976, 84.59467786699997, 82.82258562199968, 84.78184710200003, 75.99243270900001, 84.39808541299976, 84.02328355700001, 83.38960651699972, 80.35811740999975, 84.335511473, 84.08585749699978, 81.11256220799987, 76.56398220599999, 80.23364635699977, 85.34912937199988, 78.46104980799987, 84.71956437199992, 88.89216084499981, 78.336756917, 74.03732011600005, 89.7098101969998, 91.73223888400003, 83.89845656899979, 82.3135275730001, 79.15298014099972, 82.12639411700002, 80.35811740999975, 82.88477949999992, 81.5593137469998, 80.6073794929996, 78.77960441299956, 83.38960651699972, 82.69787727899984, 85.22418373899973, 89.7098101969998, 80.17157081899973, 77.70307987699971, 84.08585749699978, 79.15298014099972, 72.07856187199968, 80.2960418719997, 83.45215062199964, 83.26483904599968, 82.76007115699986, 84.59467786699997, 82.06422992099988, 81.24767936099988, 87.69187912499979, 94.25890097399997, 89.7098101969998, 81.68390344499971, 84.5320740919999, 89.77265187199987, 81.05013705299984, 82.69787727899984, 86.80015841499994, 88.07054851699968, 74.72904218899976, 79.4755577809999, 84.02328355700001, 87.75463168499982, 92.86991203699995, 85.85783109699992, 85.92017299700001, 84.65696059700008, 91.79516986899989, 82.2510429429999, 79.85991322099972, 85.7951678469999, 88.82967092299987, 88.38413755699958, 84.65696059700008, 91.92621832899977, 88.25857315699955, 78.84194025800002, 79.72438085299996, 94.00734790000001, 86.67477263499995, 77.82731325099985, 85.22418373899973, 90.21806663500001, 74.41904146999991, 82.57284834899951, 83.38960651699972, 80.7386515359999, 83.45215062199964, 77.64112287299986, 79.59996931699993, 87.69187912499979, 86.42464407899979, 82.06422992099988, 78.9042761029998, 83.20229494099954, 85.9828362469998, 74.92866290899951, 76.37796964299969, 82.51065447099995, 84.46947031699983, 82.76007115699986, 78.21246402599968, 82.95275999899968, 80.86318171699986, 82.32343166299984, 83.3273831509996, 95.21147334099965, 89.77861090099987, 88.38413755699958, 89.39624635199993, 88.25857315699955, 84.40718758699995, 86.42464407899979, 84.91133786099977, 84.5320740919999, 80.67622638099988, 84.02328355700001, 85.6701626969998, 82.69787727899984, 88.25857315699955, 82.4481400059999, 84.40718758699995, 85.22418373899973, 84.5320740919999, 76.88712354099971, 78.71758823899995, 82.82258562199968, 86.87041508199991, 83.89845656899979, 85.48249429700013, 90.91574969399994, 83.39882772499982, 73.54149190899966, 89.7098101969998, 94.45204959900002, 90.21806663500001, 82.51065447099995, 88.25857315699955, 83.07752746999972, 79.92230873599988, 84.91133786099977, 84.21969730699993, 77.96355872499976, 81.24767936099988, 77.57884650300002, 75.4337058929998, 80.67622638099988, 84.40718758699995, 84.97397127600016, 86.48733696899967, 90.15519512499986, 79.59996931699993, 75.0526589929998, 80.7386515359999, 84.91133786099977, 89.33340467699963, 76.94937027099968, 85.48249429700013, 88.19611291699971, 78.53090037499987, 83.83588262899957, 88.25857315699955, 88.25857315699955, 78.9042761029998, 85.60749944700001, 84.72375881299968, 76.82519602499997, 82.95275999899968, 82.95275999899968, 85.60749944700001, 79.4755577809999, 77.45461312899988, 80.48927104499967, 87.50394325299999, 91.6120599809999, 83.83588262899957, 79.7978376829999, 82.57284834899951, 81.30981406899946, 81.12276938099967, 81.30981406899946, 83.52365471299959], \"power_mean\": 83.6337441636911, \"energy_millijoules\": 6308.520195963697, \"energy_joules\": 6.308520195963697, \"coremark_score\": 3314.814569, \"coremarks_per_mhz\": 5.231714913194445, \"ulpmark_cm_score\": 39.62894501946026}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1248.32794124, 1240.331784211, 1248.034865856, 1248.1520357680001, 1251.2551888170003, 1249.5334912429998, 1256.3145573840002, 1249.9913825820001, 1248.445111152, 1250.2849036, 1251.725357664, 1247.815102464, 1246.5467955, 1245.7415381780002, 1236.9474051099999, 1242.5210373599998, 1245.3998068800001, 1242.6961410000001, 1240.3426824], \"power_mean\": 1246.8635330741579, \"energy_millijoules\": 6234.31766537079, \"energy_joules\": 6.2343176653707895}}, \"902400\": {\"active\": {\"elapsed_sec\": 52.97471899, \"elapsed_ns\": 52974718990, \"power_samples\": [134.5659399650001, 127.55066984399969, 128.1196644669999, 136.45779840299997, 135.13016575299957, 131.21314934699944, 137.02607461499974, 128.74884490699992, 126.35270770899979, 132.1659598399999, 130.07992817299987, 131.8423001469996, 131.21314934699944, 129.31741864699984, 125.5905246719999, 128.1840193109997, 136.65268445899983, 131.5366611439997, 131.8423001469996, 134.30633665699997, 133.99718186899963, 134.04706660099964, 122.56485109899995, 140.1845428719996, 132.66994179299968, 131.34248756799957, 131.34248756799957, 133.67307654199976, 127.55066984399969, 130.57985939699984, 134.17670162899958, 129.51132475100007, 128.8132292389996, 127.9902913269998, 130.57985939699984, 133.73803084699966, 136.13309954600004, 131.2779847019999, 132.47559009699967, 132.73450382899978, 127.92593648299976, 126.09464993699953, 131.58317280799997, 133.173804712, 127.35703121199958, 129.82148902100016, 131.89253500899986, 133.15444139899978, 119.84290429699968, 139.22575214899985, 139.5511934049996, 126.59898728299959, 124.76806183999997, 136.89620229699995, 135.1951795330001, 127.55066984399969, 139.92420462199993, 132.54048492699985, 128.74884490699992, 127.42168794699955, 131.2779847019999, 130.4505806929999, 132.97936366399995, 134.50095582499966, 128.05497789699962, 129.44657870599963, 128.68412869699955, 128.05497789699962, 124.39220158699982, 132.84951433399988, 132.84951433399988, 127.9902913269998, 131.95742983899981, 129.82148902100016, 128.4255957349999, 133.04395538199992, 143.2125451969996, 128.49031194499958, 127.22804931499968, 131.083811126, 132.78492261599968, 131.01897577099953, 123.5057397349999, 135.43896425899993, 133.23839642999974, 123.37678311499985, 128.49031194499958, 129.25267260199985, 128.99435248399982, 133.47854672599965, 130.644664917, 127.03441068299958, 122.80806082699974, 124.07032345699986, 129.6274935649999, 131.01897577099953, 131.14831399199966, 131.083811126, 129.93313354099973, 128.92960643899983, 130.3209696529998, 135.74332743399987, 134.17670162899958, 134.8057636609999, 134.87077744099997, 125.70772891299976, 131.388910464, 142.31810718199995, 134.54604194499984, 129.05876649799984, 136.0680262909998, 134.6110557249997, 121.54579819699961, 130.4505806929999, 130.19169094899985, 134.87077744099997, 134.24168576900001, 134.30633665699997, 132.47559009699967, 125.96578668499956, 128.49031194499958, 134.04706660099964, 133.54350103099955, 133.3489712149999, 135.8731402349997, 133.3489712149999, 137.8983269539999, 125.57886566099978, 127.16339257999971, 132.84951433399988, 132.15178153499983, 140.23136128300007, 128.99435248399982, 123.94163836699977, 130.88963754999963, 135.43896425899993, 129.3042785329999, 124.44570387800013, 135.37392064399978, 132.78492261599968, 124.57477944799962, 120.6554909859999, 130.1268854289999, 135.80806697999992, 129.3042785329999, 127.53848051499995, 130.1268854289999, 126.96975394799983, 127.03441068299958, 129.1235125429996, 124.70352405499989, 123.81262246699998, 135.3092105859996, 129.8683280209998, 126.08296478599982, 125.45000240899958, 132.02199187499969, 134.54604194499984, 135.179123356, 135.37392064399978, 130.1268854289999, 129.93313354099973, 138.27139675699982, 134.48136156899977, 138.90031089299987, 126.53436018799971, 133.85244743299995, 132.02199187499969, 139.0956425409995, 139.66353174699975, 129.49794180499998, 128.99435248399982, 133.08982019299947, 131.95742983899981, 125.77232617299978, 128.4773802169998, 134.48136156899977, 134.6110557249997, 135.0493696829999, 137.63834502799955, 131.5687264469998, 125.45000240899958, 132.65507328599983, 141.2326917439998, 140.925616257, 124.94584376699981, 130.1268854289999, 127.03441068299958, 127.16339257999971, 137.57318246299974, 131.388910464, 123.81262246699998, 125.01041119199976, 126.77644688899977, 130.95414041599975, 129.6274935649999, 126.90542878599967, 125.70772891299976, 133.4139255199998, 130.6306286189997, 121.48140919699972, 128.54179423100004, 131.95742983899981, 131.1949807609999, 128.60654027600003, 127.97357789899979, 135.483368123, 124.94584376699981, 131.1949807609999], \"power_mean\": 130.99007790070792, \"energy_millijoules\": 6939.162567268211, \"energy_joules\": 6.939162567268212, \"coremark_score\": 4720.276419, \"coremarks_per_mhz\": 5.230802769281915, \"ulpmark_cm_score\": 36.02740209304813}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1245.961536, 1240.0401910130001, 1246.5953917440002, 1247.8002248240002, 1247.8002248240002, 1245.8445442500001, 1239.5853439250002, 1235.848844032, 1241.128807452, 1242.17083008, 1248.199591875, 1244.8637920180001, 1245.61026, 1244.230174495, 1244.98072464, 1248.3755866989998, 1261.58863516, 1249.697559898, 1250.1551235110003], \"power_mean\": 1245.8145992863158, \"energy_millijoules\": 6229.072996431579, \"energy_joules\": 6.2290729964315785}}, \"1094400\": {\"active\": {\"elapsed_sec\": 43.680069202, \"elapsed_ns\": 43680069202, \"power_samples\": [175.18809325699954, 172.6606184369998, 164.59024455799977, 169.43769732199985, 172.72710456499976, 173.92228753699987, 177.778154459, 176.87776107699983, 165.15259813099965, 165.4537045909999, 169.8040728889996, 175.2546979189999, 173.09328813699994, 176.94445439699962, 176.40918893699973, 172.26033082100003, 173.65507729399997, 181.06897498099988, 185.15073471699975, 171.26541060699947, 171.19898364899973, 178.63781274499956, 179.3377228280001, 175.61627009699987, 176.3157474369998, 171.26541060699947, 170.6325674169998, 171.76499795699988, 177.4435076499999, 166.98103917699973, 178.27310112199962, 173.72196560899965, 168.17608769699996, 169.37101726699962, 167.97656760099994, 177.07852859699983, 179.60600341699978, 175.6829042469999, 166.6485749909998, 172.95957078699962, 172.1935019809996, 171.06544491899967, 174.72014400799958, 185.64488035299996, 170.2036480249999, 167.843668085, 173.85539922199996, 175.12114527199992, 168.17608769699996, 170.56617014099993, 174.78709199299988, 162.3644107529999, 161.96697422499983, 178.63781274499956, 172.39364578899995, 165.4537045909999, 180.033556545, 175.18809325699954, 166.71513609599992, 173.0264294619999, 175.41568069699997, 171.83179715699998, 171.5649429169996, 176.67699355699983, 168.2101323779998, 168.77226456800008, 179.13659848399993, 181.22780216499996, 176.67699355699983, 174.02087470700008, 172.4604746289997, 167.34378392799977, 173.3882100679998, 179.13659848399993, 179.00263038499997, 169.30467916099997, 173.65507729399997, 168.4763922410002, 173.72196560899965, 166.78169720099982, 175.3487030719998, 178.50390416299956, 171.13221428399993, 177.87120984199964, 172.95957078699962, 169.8707827789999, 175.3487030719998, 172.32681694899975, 168.043188181, 174.72014400799958, 171.26541060699947, 166.8786731859998, 170.86582163799994, 180.53193861299974, 181.82169982699997, 168.60935127400012, 174.28786096699992, 171.19898364899973, 167.011513185, 167.21094392899977, 173.45475536599952, 176.5432631369997, 172.59378959699984, 169.03830088999985, 173.58818897899982, 171.5649429169996, 171.5649429169996, 180.82501970099975, 172.75968049199992, 168.90528272899996, 170.9990179609997, 169.73770510099985, 172.26033082100003, 170.93224859599968, 174.02087470700008, 173.3882100679998, 172.559447332, 171.9933581729997, 173.88703840699986, 179.00263038499997, 185.87345543399988, 177.17592777599998, 168.90528272899996, 174.58659136099982, 176.67699355699983, 175.21509129700007, 175.84772610100003, 182.85336927499975, 174.51964337599975, 164.05972950499995, 167.14435318399956, 175.7807186409998, 171.29843123699993, 177.24265077799964, 176.60995645699973, 177.73736077699982, 169.10498094499985, 173.0264294619999, 177.67026420199954, 175.91473356099982, 177.0417939059996, 177.0417939059996, 168.01052292999998, 171.43168707699988, 175.21509129700007, 176.47622603699983, 175.7807186409998, 171.36488787699977, 166.5823552249999, 169.53791753299993, 178.93547413999977, 171.43168707699988, 170.59908658499967, 170.7990522729997, 165.18838013899995, 161.3343394210001, 176.04840485299974, 178.63781274499956, 168.27678279299994, 169.67099521099954, 173.3882100679998, 168.14382376000003, 166.74549169599982, 168.2101323779998, 173.32132175300012, 167.14435318399956, 175.9813973929995, 175.44636859699972, 168.83860267399996, 171.29843123699993, 175.7807186409998, 173.32132175300012, 168.77226456800008], \"power_mean\": 172.96308097797092, \"energy_millijoules\": 7555.039346508899, \"energy_joules\": 7.555039346508899, \"coremark_score\": 5724.753836, \"coremarks_per_mhz\": 5.230951970029239, \"ulpmark_cm_score\": 33.090496095896874}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1248.4181946559997, 1249.7440460330001, 1249.169342732, 1252.726697586, 1254.677826402, 1250.5954687800001, 1251.9756138859998, 1254.9571668, 1249.110517862, 1255.6454696800001, 1262.595429935, 1249.685191328, 1246.17464832, 1249.051692992, 1252.152232422, 1251.518763768, 1257.955068014, 1257.955068014, 1247.730372798], \"power_mean\": 1252.2020427372631, \"energy_millijoules\": 6261.010213686315, \"energy_joules\": 6.2610102136863155}}, \"1401600\": {\"active\": {\"elapsed_sec\": 34.100960352, \"elapsed_ns\": 34100960352, \"power_samples\": [271.6662230249997, 276.08018372099946, 268.99812611299967, 275.2329994789998, 273.55496837899955, 265.5015433249996, 267.73770385299986, 277.2688972659996, 273.68628845299986, 271.52310316499984, 277.61414299700004, 275.30436994499973, 269.9017804089999, 273.4833193339998, 280.4941444169997, 279.99104748699983, 268.92705169099986, 276.9819549529998, 272.0084360149997, 275.30436994499973, 278.31408623299967, 278.31408623299967, 275.2329994789998, 269.3452540609999, 267.52392598100005, 268.8556109059998, 274.4614666729999, 278.80283896699984, 276.2065394429999, 269.06956689799995, 277.0537826179998, 265.91629619699984, 265.9078041719997, 278.1706806049997, 277.4707964969998, 273.12580897099974, 272.6966495629997, 273.9606088790001, 275.9200845109999, 272.1512480289998, 283.9875185719998, 281.25117298199984, 273.9726363889997, 273.6146095729998, 268.92705169099986, 271.0944775329997, 268.4991397069998, 276.13474161299973, 279.28697234499964, 264.93254078899963, 270.60543903099983, 269.68764629700013, 271.7940344309998, 267.9422468009998, 276.2065394429999, 277.39893899699973, 267.3815294189999, 267.9422468009998, 278.6590050169998, 271.57963284699986, 270.1159145209997, 275.848286681, 275.1486694189996, 264.5769598849997, 279.99104748699983, 281.66747379699996, 277.61414299700004, 272.28329142699977, 271.30879034899976, 269.9017804089999, 274.80330512699993, 279.7754872470002, 268.3566244999997, 274.660196306, 269.20231282099985, 265.48927539700003, 276.6235533219999, 280.61904445499977, 273.4716193969998, 274.8746755929999, 270.60543903099983, 271.23759739299976, 264.86127842899987, 277.74009506899984, 276.27833727300003, 269.273783441, 276.0500370429995, 282.9995464069998, 266.3261542429998, 269.05973809700004, 289.1052581449994, 282.4392030769998, 269.13120871699994, 278.51553987199986, 277.95538783699976, 274.5167195959998, 277.25559249699995, 273.6146095729998, 277.95538783699976, 269.9017804089999, 274.0323175939998, 272.2116720219999, 267.9422468009998, 271.16603746299984, 273.9009575089997, 273.25695034099977, 265.9791260069999, 271.57963284699986, 276.6953809869999, 282.15156091699987, 278.7309219919998, 270.594658945, 270.5230990149996, 272.82761222899967, 275.848286681, 286.0074517129999, 275.9200845109999, 277.11224599699995, 272.1404198959997, 277.8835006969998, 276.13474161299973, 271.2940088189998, 273.4003081009996, 275.848286681, 268.4991397069998, 270.2485221979998, 276.6235533219999, 273.9606088790001, 271.65122241699964, 278.09879346499974, 272.28329142699977, 271.43682083299973, 278.51553987199986, 282.8556658099999, 274.1036585720001], \"power_mean\": 273.8760917049554, \"energy_millijoules\": 9339.4377445914, \"energy_joules\": 9.3394377445914, \"coremark_score\": 7333.528894, \"coremarks_per_mhz\": 5.232255204052512, \"ulpmark_cm_score\": 26.768206699035876}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1250.930232396, 1250.419028364, 1247.185911025, 1252.4322852999999, 1263.0851449919999, 1253.8520451269999, 1253.281891069, 1263.2042229119998, 1259.14076046, 1257.819590035, 1259.5554668400002, 1256.042365302, 1246.2173767840002, 1255.983183387, 1258.6261914270003, 1257.9970997550001, 1240.4287503, 1252.3145809020002, 1252.3732818099998], \"power_mean\": 1254.257337273, \"energy_millijoules\": 6271.286686365001, \"energy_joules\": 6.271286686365}}, \"1555200\": {\"active\": {\"elapsed_sec\": 30.739418061, \"elapsed_ns\": 30739418061, \"power_samples\": [342.95955431299967, 339.1356294750001, 335.7611544440001, 336.13366068300024, 333.46154121300015, 330.4967427869997, 338.4635517629997, 352.21605362699984, 342.76426217999983, 342.83924377499966, 336.16509777199985, 335.7611544440001, 327.56916090799996, 344.0236751949999, 341.20592911699964, 337.503145637, 337.27929785299966, 338.4635517629997, 339.4643831689998, 354.2582722809998, 339.61366503099975, 335.68650005899985, 331.3513514719998, 334.1295911249997, 338.1306989169998, 332.6848288369997, 337.4284019419997, 340.02161603699983, 327.904093997, 340.4993847469998, 343.7242805669998, 336.5377519069998, 336.16509777199985, 336.42394685299996, 331.97896388000004, 326.49688272399976, 328.9024605689997, 335.31399381999995, 343.6492394969998, 349.47207299699994, 345.4652329009996, 343.199762729, 348.4643812989998, 339.7225493679998, 345.06268547699983, 335.5375741319997, 336.945794429, 330.42232649699986, 340.6491693170001, 342.3155261729996, 333.125555567, 330.57115907699995, 342.7970958809999, 344.20617582099976, 346.09682546899967, 352.87272858699976, 348.68983274699985, 349.3214549969998, 346.09682546899967, 342.5400864370001, 346.24676046199966, 345.39010252099956, 350.3548523269999, 350.3548523269999, 345.8235540769997, 347.9874751169996, 338.23952585899974, 345.16509666499974, 358.1393969969997, 356.2486584969997, 329.01487793399997, 327.1985851009995, 336.16509777199985, 334.90592204699965, 331.60734890899994, 347.9874751169996, 349.64836714099965, 336.7220359969999, 337.1298104629998, 348.212837797, 348.87037339699987, 344.1311049159997, 334.8312974969997, 336.0161127169997, 334.6824310869997, 329.7208273169997, 330.27387553899985, 336.5729914249998, 335.7924436369999, 348.3142090159997, 332.7534949619999, 325.9041219249998, 333.125555567, 337.7572156949998, 343.4995421829999, 335.4629197469999, 330.19945924900003, 328.86654562099966, 339.0909866349996, 344.687566909, 336.4982775650001, 331.94130115699977, 332.6431825009997, 335.7924436369999, 330.83099214699973, 328.2350424049996, 341.313686255, 335.56877455699964, 346.0487380529996, 351.86880835600005, 343.90627717999996, 335.49409053199975, 350.3548523269999, 338.7920391529997, 335.2393394349999, 334.38431557700005, 330.3110145969997, 333.235982357, 333.6081918310001, 339.24026849699976, 338.9417047729996], \"power_mean\": 339.1197327155618, \"energy_millijoules\": 10424.343236678233, \"energy_joules\": 10.424343236678233, \"coremark_score\": 8135.3726, \"coremarks_per_mhz\": 5.231078060699588, \"ulpmark_cm_score\": 23.98232620740755}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1252.9284219400001, 1249.433095803, 1256.7134292399999, 1252.5900792619998, 1256.831608218, 1254.81885728, 1249.1978603940001, 1254.1900910400002, 1249.7721808800002, 1261.823416722, 1255.1561540619998, 1262.9068334399997, 1255.9073314, 1263.8372151239998, 1264.979805804, 1253.9539044720002, 1264.979805804, 1274.3892064999998, 1259.2999601820002], \"power_mean\": 1257.5636451351052, \"energy_millijoules\": 6287.818225675526, \"energy_joules\": 6.287818225675526}}, \"1804800\": {\"active\": {\"elapsed_sec\": 26.493489365, \"elapsed_ns\": 26493489365, \"power_samples\": [473.29735266199987, 468.18022296499976, 467.38762737499974, 469.8265287229997, 469.1955317839995, 467.38762737499974, 475.95766086899994, 483.3663336429995, 469.5189067059996, 470.5345125289998, 474.6185903139999, 464.4060794599998, 465.64511133699966, 475.65128559699974, 471.0843984379999, 476.584474517, 470.04867825699966, 475.3078811729997, 469.8864561969999, 458.65813135699955, 480.36185150100005, 482.7956474709997, 474.6999097990001, 458.65813135699955, 474.5372708289999, 467.93766206899954, 477.45930961099975, 476.50306591699996, 470.84139194999966, 464.6148502749995, 471.39112883699977, 462.5794572289997, 473.3567751399996, 468.3260087599997, 474.3750488819999, 471.63422467699957, 468.7911053069997, 472.09908354499953, 469.9675672269998, 466.51834218299996, 474.78081226099994, 472.2610678129997, 467.06419358599965, 468.7100537519998, 473.3567751399996, 470.43651983899986, 459.67471747699983, 477.29643274099976, 486.54557462499974, 483.3448190529998, 475.95766086899994, 464.14542308299974, 470.51724459699994, 471.93709927699956, 471.3103743969996, 481.0489131080001, 469.4219533769997, 472.56794734699974, 467.5335323569998, 468.8717412129997, 465.88740476099997, 471.63422467699957, 474.45636836699964, 473.1134124119999, 469.5837003549998, 470.98610785699975, 463.9220263879997, 469.3408719869997, 473.3567751399996, 482.0871869329999, 471.2292036969998, 474.514483722, 475.85304955699985, 470.11237248600014, 465.2414272589997, 476.89007583199964, 488.37534753299974, 476.9715142669995, 463.82246448399997, 466.8217220419997, 469.72465009099983, 468.0833585119999, 472.48671717199977, 472.6487609569997, 465.9526440259997, 465.32191514299984, 470.98610785699975, 468.54836629099964, 468.3056272749998, 477.516771072, 474.3750488819999, 469.80576112099993, 466.66021274299965, 468.46731473599993, 469.3408719869997, 469.8864561969999, 473.1946722269995, 469.8864561969999, 470.3553789739999, 471.85589893699967, 472.3024811299997, 464.06457978799995, 471.4507300609996, 485.45164805599984, 488.2118201019998], \"power_mean\": 471.617695895676, \"energy_millijoules\": 12494.798410557894, \"energy_joules\": 12.494798410557895, \"coremark_score\": 9440.018125, \"coremarks_per_mhz\": 5.230506496564717, \"ulpmark_cm_score\": 20.008326007785303}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1255.038093729, 1246.0879553480002, 1253.776840344, 1254.228246512, 1257.6199013640003, 1261.051708532, 1261.6842539839997, 1261.1703624790002, 1263.216642428, 1262.550515664, 1269.643262295, 1265.2512659479999, 1260.53775751, 1272.584189492, 1267.539650532, 1262.9068334399997, 1259.909287214, 1256.8138029400002, 1256.4767674820002], \"power_mean\": 1260.4256493282633, \"energy_millijoules\": 6302.128246641316, \"energy_joules\": 6.302128246641316}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sdm632/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 250 ms\nBaseline power usage: 1245 mW\n\n\n===== CPU 1 =====\nFrequencies: 614 883 1036 1363 1536 1670 1804\n\n 614:  1995     3.2 C/MHz     43 mW    5.4 J   46.5 I/mJ   125.3 s\n 883:  2867     3.2 C/MHz     64 mW    5.6 J   44.5 I/mJ    87.2 s\n1036:  3363     3.2 C/MHz     78 mW    5.8 J   42.9 I/mJ    74.3 s\n1363:  4425     3.2 C/MHz    124 mW    7.0 J   35.8 I/mJ    56.5 s\n1536:  4988     3.2 C/MHz    157 mW    7.9 J   31.8 I/mJ    50.1 s\n1670:  5424     3.2 C/MHz    180 mW    8.3 J   30.1 I/mJ    46.1 s\n1804:  5861     3.2 C/MHz    247 mW   10.5 J   23.8 I/mJ    42.7 s\n\n\n===== CPU 4 =====\nFrequencies: 633 902 1094 1401 1555 1804\n\n 633:  3315     5.2 C/MHz     84 mW    6.3 J   39.6 I/mJ    75.4 s\n 902:  4720     5.2 C/MHz    131 mW    6.9 J   36.0 I/mJ    53.0 s\n1094:  5725     5.2 C/MHz    173 mW    7.6 J   33.1 I/mJ    43.7 s\n1401:  7334     5.2 C/MHz    274 mW    9.3 J   26.8 I/mJ    34.1 s\n1555:  8135     5.2 C/MHz    339 mW   10.4 J   24.0 I/mJ    30.7 s\n1804:  9440     5.2 C/MHz    472 mW   12.5 J   20.0 I/mJ    26.5 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sdm632/main/uptime.txt",
    "content": " 15:33:33 up 15 min,  load average: 2.83, 2.76, 1.87\n"
  },
  {
    "path": "results/sdm632/main/versions.txt",
    "content": "Kernel: Linux version 4.9.206-giNNa64+ (root@ubuntu-serv-vm) (gcc version 10.2.0 (GCC)) #2 SMP PREEMPT Sat Jan 9 16:33:08 UTC 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sdm636/main/cmdline.txt",
    "content": "ramoops_memreserve=4M rcupdate.rcu_expedited=1 console=ttyMSM0,115200,n8 androidboot.console=ttyMSM0 earlycon=msm_serial_dm,0xc170000 androidboot.hardware=qcom user_debug=31 msm_rtb.filter=0x37 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 sched_enable_hmp=1 sched_enable_power_aware=1 service_locator.enable=1 swiotlb=1 androidboot.configfs=true androidboot.usbcontroller=a800000.dwc3 loop.max_part=16 printk.devkmsg=on buildvariant=user rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 root=/dev/dm-0 dm=\"system none ro,0 1 android-verity /dev/mmcblk0p61\" androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.veritymode=enforcing androidboot.bootdevice=c0c4000.sdhci androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.baseband=sdm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_td4310_tianma_fhd_video:config0:1:none:cfg:single_dsi androidboot.fpsensor=fpc androidboot.secureboot=1 androidboot.hwc=CN androidboot.hwversion=1.0.0 androidboot.hwlevel=0 androidboot.hwdevice=whyred\n"
  },
  {
    "path": "results/sdm636/main/cpufreq_stats/0/time_in_state",
    "content": "633600 37442\n902400 9429\n1113600 7824\n1401600 6321\n1536000 5920\n1612800 5818\n"
  },
  {
    "path": "results/sdm636/main/cpufreq_stats/0/total_trans",
    "content": "8\n"
  },
  {
    "path": "results/sdm636/main/cpufreq_stats/4/time_in_state",
    "content": "1113600 5055\n1401600 4222\n1747200 3520\n1804800 59958\n"
  },
  {
    "path": "results/sdm636/main/cpufreq_stats/4/total_trans",
    "content": "5\n"
  },
  {
    "path": "results/sdm636/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 4 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nHardware\t: Qualcomm Technologies, Inc SDM636\n"
  },
  {
    "path": "results/sdm636/main/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. SDM 636 PM660 + PM660L E7S;\nCompatible: qcom,sdm636-mtp;qcom,sdm636;qcom,mtp;\n"
  },
  {
    "path": "results/sdm636/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Initializing cgroup subsys cpuset\n[    0.000000] Initializing cgroup subsys cpu\n[    0.000000] Initializing cgroup subsys cpuacct\n[    0.000000] Initializing cgroup subsys schedtune\n[    0.000000] Linux version 4.4.205-perf+ (orges@orges) () #2 SMP PREEMPT Sat Jan 9 20:28:29 UTC 2021\n[    0.000000] Boot CPU: AArch64 Processor [51af8014]\n[    0.000000] Powerup reason=0x40001\n[    0.000000] Machine: Qualcomm Technologies, Inc. SDM 636 PM660 + PM660L E7S\n[    0.000000] ramoops: msm_reserve_ramoops_memory addr=a0000000, size=400000\n[    0.000000] ramoops: msm_reserve_ramoops_memory record_size=0, ftrace_size=0\n[    0.000000] Reserved memory: reserved region for node 'wlan_msa_guard@85600000': base 0x0000000085600000, size 1 MiB\n[    0.000000] Reserved memory: reserved region for node 'wlan_msa_mem@85700000': base 0x0000000085700000, size 1 MiB\n[    0.000000] Reserved memory: reserved region for node 'removed_regions@85800000': base 0x0000000085800000, size 55 MiB\n[    0.000000] Reserved memory: reserved region for node 'modem_fw_region@8ac00000': base 0x000000008ac00000, size 126 MiB\n[    0.000000] Reserved memory: reserved region for node 'adsp_fw_region@92a00000': base 0x0000000092a00000, size 30 MiB\n[    0.000000] Reserved memory: reserved region for node 'pil_mba_region@94800000': base 0x0000000094800000, size 2 MiB\n[    0.000000] Reserved memory: reserved region for node 'splash_region@9d400000': base 0x000000009d400000, size 36 MiB\n[    0.000000] Reserved memory: reserved region for node 'dfps_data_mem@0x9f7ff000': base 0x000000009f7ff000, size 0 MiB\n[    0.000000] Reserved memory: reserved region for node 'pstore_reserve_mem_region@0': base 0x00000000a0000000, size 4 MiB\n[    0.000000] Reserved memory: reserved region for node 'buffer_region@94a00000': base 0x0000000094a00000, size 1 MiB\n[    0.000000] Reserved memory: OVERLAP DETECTED!\n               splash_region@9d400000 (0x000000009d400000--0x000000009f800000) overlaps with dfps_data_mem@0x9f7ff000 (0x000000009f7ff000--0x000000009f800000)\n[    0.000000] Reserved memory: allocated memory for 'adsp_region' node: base 0x00000000ff400000, size 8 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff400000, size 8 MiB\n[    0.000000] Reserved memory: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'venus_fw_region' node: base 0x000000009f800000, size 8 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x000000009f800000, size 8 MiB\n[    0.000000] Reserved memory: initialized node venus_fw_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'linux,cma' node: base 0x00000000fc800000, size 44 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fc800000, size 44 MiB\n[    0.000000] Reserved memory: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'secure_region' node: base 0x00000000f6c00000, size 92 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6c00000, size 92 MiB\n[    0.000000] Reserved memory: initialized node secure_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'qseecom_region' node: base 0x00000000f5800000, size 20 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f5800000, size 20 MiB\n[    0.000000] Reserved memory: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085600000, size 1 MiB\n[    0.000000] Reserved memory: initialized node wlan_msa_guard@85600000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085700000, size 1 MiB\n[    0.000000] Reserved memory: initialized node wlan_msa_mem@85700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085800000, size 55 MiB\n[    0.000000] Reserved memory: initialized node removed_regions@85800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ac00000, size 126 MiB\n[    0.000000] Reserved memory: initialized node modem_fw_region@8ac00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000092a00000, size 30 MiB\n[    0.000000] Reserved memory: initialized node adsp_fw_region@92a00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094800000, size 2 MiB\n[    0.000000] Reserved memory: initialized node pil_mba_region@94800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094a00000, size 1 MiB\n[    0.000000] Reserved memory: initialized node buffer_region@94a00000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 986304\n[    0.000000]   DMA zone: 7328 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 468992 pages, LIFO batch:31\n[    0.000000]   Normal zone: 8083 pages used for memmap\n[    0.000000]   Normal zone: 517312 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.0 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] PERCPU: Embedded 20 pages/cpu @fffffffb7a160000 s43904 r8192 d29824 u81920\n[    0.000000] pcpu-alloc: s43904 r8192 d29824 u81920 alloc=20*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: enabling workaround for Kryo2xx Silver erratum 845719\n[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 970893\n[    0.000000] Kernel command line: ramoops_memreserve=4M rcupdate.rcu_expedited=1 console=ttyMSM0,115200,n8 androidboot.console=ttyMSM0 earlycon=msm_serial_dm,0xc170000 androidboot.hardware=qcom user_debug=31 msm_rtb.filter=0x37 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 sched_enable_hmp=1 sched_enable_power_aware=1 service_locator.enable=1 swiotlb=1 androidboot.configfs=true androidboot.usbcontroller=a800000.dwc3 loop.max_part=16 printk.devkmsg=on buildvariant=user rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 root=/dev/dm-0 dm=\"system none ro,0 1 android-verity /dev/mmcblk0p61\" androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.veritymode=enforcing androidboot.bootdevice=c0c4000.sdhci androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.baseband=sdm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_td4310_tianma_fhd_video:config0:1:none:cfg:single_dsi androidboot.fpsensor=fpc androidboot.secureboot=1 androidboot.hwc=CN androidboot.hwversion=1.0.0 androi\n[    0.000000] device-mapper: init: will configure 1 devices\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 131072 bytes\n[    0.000000] log_buf_len: 1048576 bytes\n[    0.000000] early log buf free: 123452(94%)\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] software IO TLB: mapped [mem 0xfffbf000-0xfffff000] (0MB)\n[    0.000000] Memory: 3599900K/3945216K available (17918K kernel code, 2834K rwdata, 10192K rodata, 8192K init, 5189K bss, 169188K reserved, 176128K cma-reserved)\n[    0.000000] Virtual kernel memory layout:\n                   modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n                   vmalloc : 0xffffff8008000000 - 0xffffffbdbfff0000   (   246 GB)\n                     .init : 0xffffff8fb3c00000 - 0xffffff8fb4400000   (  8192 KB)\n                     .text : 0xffffff8fb2080000 - 0xffffff8fb3200000   ( 17920 KB)\n                   .rodata : 0xffffff8fb3200000 - 0xffffff8fb3c00000   ( 10240 KB)\n                     .data : 0xffffff8fb4400000 - 0xffffff8fb46c4808   (  2835 KB)\n                   vmemmap : 0xffffffbdc0000000 - 0xffffffbfc0000000   (     8 GB maximum)\n                             0xffffffbeaa000000 - 0xffffffbeadf93000   (    63 MB actual)\n                   fixed   : 0xffffffbffe7fb000 - 0xffffffbffec00000   (  4116 KB)\n                   PCI I/O : 0xffffffbffee00000 - 0xffffffbfffe00000   (    16 MB)\n                   memory  : 0xfffffffa80000000 - 0xfffffffb7e4c0000   (  4068 MB)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] HMP scheduling enabled.\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n\n[    0.000000] **********************************************************\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **                                                      **\n[    0.000000] ** trace_printk() being used. Allocating extra memory.  **\n[    0.000000] **                                                      **\n[    0.000000] ** This means that this is a DEBUG kernel and it is     **\n[    0.000000] ** unsafe for production use.                           **\n[    0.000000] **                                                      **\n[    0.000000] ** If you see this message and you are not debugging    **\n[    0.000000] ** the kernel, report this immediately to your vendor!  **\n[    0.000000] **                                                      **\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **********************************************************\n[    0.000000] NR_IRQS:64 nr_irqs:64 0\n[    0.000000] mpm_init_irq_domain(): Cannot find irq controller for qcom,gpio-parent\n[    0.000000] MPM 1 irq mapping errored -517\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from all CPUs\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000016] clocksource: Switched to clocksource arch_sys_counter\n[    0.001264] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001274] pid_max: default: 32768 minimum: 301\n[    0.001333] Security Framework initialized\n[    0.001341] SELinux:  Initializing.\n[    0.001385] SELinux:  Starting in permissive mode\n[    0.001414] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001421] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001953] Initializing cgroup subsys freezer\n[    0.002326] /cpus/cpu@0: Missing clock-frequency property\n[    0.002334] /cpus/cpu@1: Missing clock-frequency property\n[    0.002340] /cpus/cpu@2: Missing clock-frequency property\n[    0.002347] /cpus/cpu@3: Missing clock-frequency property\n[    0.002355] /cpus/cpu@100: Missing clock-frequency property\n[    0.002364] /cpus/cpu@101: Missing clock-frequency property\n[    0.002374] /cpus/cpu@102: Missing clock-frequency property\n[    0.002383] /cpus/cpu@103: Missing clock-frequency property\n[    0.002388] CPU0: update cpu_capacity 1024\n[    0.002425] ASID allocator initialised with 32768 entries\n[    0.017302] MSM Memory Dump base table set up\n[    0.017322] MSM Memory Dump apps data table set up\n[    0.023030] CPU1: update cpu_capacity 1024\n[    0.023086] CPU1: Booted secondary processor [51af8014]\n[    0.028196] CPU2: update cpu_capacity 1024\n[    0.028239] CPU2: Booted secondary processor [51af8014]\n[    0.033295] CPU3: update cpu_capacity 1024\n[    0.033339] CPU3: Booted secondary processor [51af8014]\n[    0.038670] CPU4: update cpu_capacity 1024\n[    0.038736] CPU4: Booted secondary processor [51af8002]\n[    0.043943] CPU5: update cpu_capacity 1024\n[    0.044002] CPU5: Booted secondary processor [51af8002]\n[    0.049165] CPU6: update cpu_capacity 1024\n[    0.049226] CPU6: Booted secondary processor [51af8002]\n[    0.054394] CPU7: update cpu_capacity 1024\n[    0.054456] CPU7: Booted secondary processor [51af8002]\n[    0.054568] Brought up 8 CPUs\n[    0.054600] SMP: Total of 8 processors activated.\n[    0.054605] CPU features: detected feature: GIC system register CPU interface\n[    0.054609] CPU features: detected feature: 32-bit EL0 Support\n[    0.054931] CPU: All CPU(s) started at EL1\n[    0.054978] alternatives: patching kernel code\n[    0.055096] CPU0: update max cpu_capacity 1024\n[    0.055904] devtmpfs: initialized\n[    0.101796] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.101816] futex hash table entries: 2048 (order: 5, 131072 bytes)\n[    0.106755] ramoops: msm_register_ramoops_device \n[    0.106859] pinctrl core: initialized pinctrl subsystem\n[    0.107522] NET: Registered protocol family 16\n[    0.109016] schedtune: init normalization constants...\n[    0.109020] schedtune: disabled!\n[    0.109449] console [pstore-1] enabled\n[    0.109672] pstore: Registered ramoops as persistent store backend\n[    0.109678] ramoops: attached 0x400000@0xa0000000, ecc: 0/0\n[    0.110122] cpuidle: using governor ladder\n[    0.110133] cpuidle: using governor menu\n[    0.110142] cpuidle: using governor qcom\n[    0.111064] vdso: 2 pages (1 code @ ffffff8fb3207000, 1 data @ ffffff8fb4404000)\n[    0.111083] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.111552] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.113534] exit: IPA_USB init success!\n[    0.125041] unable to find DT imem DLOAD mode node\n[    0.126229] unable to find DT imem EDLOAD mode node\n[    0.127523] spmi spmi-0: PMIC arbiter version v3 (0x30000000)\n[    0.132206] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.133101] msm_watchdog 17817000.qcom,wdt: wdog absent resource not present\n[    0.133444] msm_watchdog 17817000.qcom,wdt: MSM Watchdog Initialized\n[    0.133711] sps:sps is ready.\n[    0.134746] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.134830] msm_thermal:vdd_restriction_reg_init Defer regulator vdd-dig probe\n[    0.134835] msm_thermal:probe_vdd_rstr Err regulator init. err:-517. KTM continues.\n[    0.134842] msm-thermal soc:qcom,msm-thermal: probe_vdd_rstr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,max-freq-level. err=-517. KTM continues\n[    0.136620] gpu-sdm660 5065000.clock-controller: Registered GPU RBCPR clocks\n[    0.139018] irq: no irq domain found for /soc/pinctrl@03000000 !\n[    0.140524] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.143338] msm_rpm_dev_probe: APSS-RPM communication over GLINK\n[    0.143474] msm_rpm_trans_notify_state: glink config params: transport=(null), edge=rpm, name=rpm_requests\n[    0.155991] pm660l_l7: supplied by pm660_l10\n[    0.159529] platform cce0000.qcom,venus: assigned reserved memory node venus_fw_region\n[    0.160499] platform 15700000.qcom,lpass: assigned reserved memory node adsp_fw_region@92a00000\n[    0.160778] platform 4080000.qcom,mss: assigned reserved memory node modem_fw_region@8ac00000\n[    0.162710] msm-sn-fuse 786134.snfuse: SN interface initialized\n[    0.168868] msm_mpm_dev_probe(): Cannot get clk resource for XO: -517\n[    0.169466] genirq: Setting trigger mode 8 for irq 94 failed (gic_set_type+0x0/0xb8)\n[    0.169501] genirq: Setting trigger mode 8 for irq 95 failed (gic_set_type+0x0/0xb8)\n[    0.169534] genirq: Setting trigger mode 8 for irq 96 failed (gic_set_type+0x0/0xb8)\n[    0.169571] genirq: Setting trigger mode 8 for irq 97 failed (gic_set_type+0x0/0xb8)\n[    0.169604] genirq: Setting trigger mode 8 for irq 98 failed (gic_set_type+0x0/0xb8)\n[    0.175725] __of_mpm_init(): MPM driver mapping exists\n[    0.186604] irq: no irq domain found for /soc/qcom,mdss_mdp@c900000 !\n[    0.188918] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.189319] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.189466] msm_thermal:vdd_restriction_reg_init Defer regulator vdd-gfx probe\n[    0.189471] msm_thermal:probe_vdd_rstr Err regulator init. err:-517. KTM continues.\n[    0.189478] msm-thermal soc:qcom,msm-thermal: probe_vdd_rstr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,max-freq-level. err=-517. KTM continues\n[    0.193297] qcom-clk-smd-rpm soc:qcom,rpmcc: Registered RPM clocks\n[    0.196152] gcc-sdm660 100000.clock-controller: Registered GCC clocks\n[    0.202149] mmcc-sdm660 c8c0000.clock-controller: Registered MMSS clocks\n[    0.203561] cpr4_sdm660_mmss_read_fuse_data: gfx_corner: CPR fusing revision = 0\n[    0.203701] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[0] open-loop= 585000 uV\n[    0.203705] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[1] open-loop= 645000 uV\n[    0.203711] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[2] open-loop= 725000 uV\n[    0.203716] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[3] open-loop= 790000 uV\n[    0.203720] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[4] open-loop= 870000 uV\n[    0.203725] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[5] open-loop= 925000 uV\n[    0.203847] cpr3_regulator_init_ctrl: gfx: Default CPR mode = open-loop\n[    0.204559] cprh_kbss_read_fuse_data: apc0_pwrcl_corner: speed bin = 3\n[    0.204566] cprh_sdm660_kbss_read_fuse_data: apc0_pwrcl_corner: CPR fusing revision = 2\n[    0.204635] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused   LowSVS: open-loop= 614000 uV\n[    0.204639] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused      SVS: open-loop= 664000 uV\n[    0.204644] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused  SVSPLUS: open-loop= 708000 uV\n[    0.204650] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused      NOM: open-loop= 788000 uV\n[    0.204654] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused TURBO_L1: open-loop= 958000 uV\n[    0.204684] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused   LowSVS: quot[ 7]= 319\n[    0.204691] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused      SVS: quot[ 7]= 403, quot_offset[ 7]=  80\n[    0.204696] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused  SVSPLUS: quot[ 7]= 471, quot_offset[ 7]=  65\n[    0.204702] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused      NOM: quot[ 7]= 604, quot_offset[ 7]= 130\n[    0.204708] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused TURBO_L1: quot[ 7]= 854, quot_offset[ 7]= 250\n[    0.205294] cpr3_regulator_init_ctrl: apc0: Default CPR mode = full HW closed-loop\n[    0.205739] cprh_kbss_read_fuse_data: apc1_perfcl_corner: speed bin = 3\n[    0.205745] cprh_sdm660_kbss_read_fuse_data: apc1_perfcl_corner: CPR fusing revision = 2\n[    0.205815] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused      SVS: open-loop= 694000 uV\n[    0.205820] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused  SVSPLUS: open-loop= 738000 uV\n[    0.205825] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused      NOM: open-loop= 808000 uV\n[    0.205831] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused    TURBO: open-loop= 918000 uV\n[    0.205859] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused      SVS: quot[ 7]= 550\n[    0.205865] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused  SVSPLUS: quot[ 7]= 632, quot_offset[ 7]=  80\n[    0.205871] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused      NOM: quot[ 7]= 774, quot_offset[ 7]= 140\n[    0.205877] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused    TURBO: quot[ 7]= 964, quot_offset[ 7]= 190\n[    0.206389] cpr3_regulator_init_ctrl: apc1: Default CPR mode = full HW closed-loop\n[    0.207007] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.207412] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.207606] msm-thermal soc:qcom,msm-thermal: probe_ocr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-opt-curr-temp err:-22. KTM continues\n[    0.207616] msm-thermal soc:qcom,msm-thermal: probe_vdd_mx:Failed reading node=/soc/qcom,msm-thermal, key=qcom,mx-restriction-temp. KTM continues\n[    0.207629] msm-thermal soc:qcom,msm-thermal: probe_freq_mitigation:Failed reading node=/soc/qcom,msm-thermal, key=qcom,limit-temp. err=-22. KTM continues\n[    0.207638] msm-thermal soc:qcom,msm-thermal: msm_thermal:Failed reading node=/soc/qcom,msm-thermal, key=qcom,rpm-phase-resource-type err=-22. KTM continues\n[    0.207647] msm-thermal soc:qcom,msm-thermal: msm_thermal:Failed reading node=/soc/qcom,msm-thermal, key=qcom,gfx-sensor-id. err=-22. KTM continues\n[    0.208484] cpu cpu0: dev_pm_opp_get_opp_count: OPP table not found (-19)\n[    0.208490] msm_thermal:get_cpu_freq_plan_len Error reading CPU0 freq table len. error:-19\n[    0.208497] cpu cpu4: dev_pm_opp_get_opp_count: OPP table not found (-19)\n[    0.208502] msm_thermal:get_cpu_freq_plan_len Error reading CPU4 freq table len. error:-19\n[    0.208508] cpu cpu0: dev_pm_opp_get_opp_count: OPP table not found (-19)\n[    0.208513] msm_thermal:get_cpu_freq_plan_len Error reading CPU0 freq table len. error:-19\n[    0.208519] cpu cpu4: dev_pm_opp_get_opp_count: OPP table not found (-19)\n[    0.208523] msm_thermal:get_cpu_freq_plan_len Error reading CPU4 freq table len. error:-19\n[    0.209301] gpucc-sdm660 5065000.gfx: Registered GPUCC clocks\n[    0.209976] clk-cpu-osm 179c0000.qcom,clk-cpu-660: using pwrcl speed bin 3 and pvs_ver 0\n[    0.209990] clk-cpu-osm 179c0000.qcom,clk-cpu-660: using perfcl speed bin 3 and pvs_ver 0\n[    0.212285] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu0\n[    0.212514] add_opp: Set OPP pair (1612800000 Hz, 876000 uv) on cpu0\n[    0.212551] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu1\n[    0.212689] add_opp: Set OPP pair (1612800000 Hz, 876000 uv) on cpu1\n[    0.212715] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu2\n[    0.212860] add_opp: Set OPP pair (1612800000 Hz, 876000 uv) on cpu2\n[    0.212886] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu3\n[    0.213017] add_opp: Set OPP pair (1612800000 Hz, 876000 uv) on cpu3\n[    0.213054] add_opp: Set OPP pair (300000000 Hz, 712000 uv) on cpu4\n[    0.213140] add_opp: Set OPP pair (1804800000 Hz, 864000 uv) on cpu4\n[    0.213177] add_opp: Set OPP pair (300000000 Hz, 712000 uv) on cpu5\n[    0.213261] add_opp: Set OPP pair (1804800000 Hz, 864000 uv) on cpu5\n[    0.213298] add_opp: Set OPP pair (300000000 Hz, 712000 uv) on cpu6\n[    0.213383] add_opp: Set OPP pair (1804800000 Hz, 864000 uv) on cpu6\n[    0.213408] add_opp: Set OPP pair (300000000 Hz, 712000 uv) on cpu7\n[    0.213508] add_opp: Set OPP pair (1804800000 Hz, 864000 uv) on cpu7\n[    0.213819] clk_cpu_osm_driver_probe: OSM driver inited\n[    0.213865] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.227681] ACPI: Interpreter disabled.\n[    0.227782] Minidump: Enabled, region base:160, region 0xffffff8008c026f0\n[    0.228397] KPI: Bootloader start count = 54012\n[    0.228401] KPI: Bootloader end count = 82778\n[    0.228405] KPI: Bootloader display count = 3249393705\n[    0.228410] KPI: Bootloader load kernel count = 6257\n[    0.228415] KPI: Kernel MPM timestamp = 97910\n[    0.228418] KPI: Kernel MPM Clock frequency = 32768\n[    0.228437] socinfo_print: v0.11, id=345, ver=1.0, raw_id=204, raw_ver=0, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65563, pmic_die_revision=131072 foundry_id=3 serial_number=92475615 num_pmics=2\n[    0.228449] msm_bus_fabric_init_driver\n[    0.244801] msm_bus_dev_init_qos: Skipping QOS init for 1\n[    0.244848] msm_bus_dev_init_qos: Skipping QOS init for 727\n[    0.244853] msm_bus_dev_init_qos: Skipping QOS init for 728\n[    0.246630] cam_avdd_gpio_regulator: supplied by pm660l_bob\n[    0.246912] cam_rear_avdd_gpio_regulator: supplied by pm660l_bob\n[    0.247141] cam_rear_dvdd_gpio_regulator: supplied by pm660_s5\n[    0.247415] vgaarb: loaded\n[    0.247556] qcom,qpnp-misc 800f000.qcom,spmi:qcom,pm660@0:qcom,misc@900: probe successful\n[    0.248447] SCSI subsystem initialized\n[    0.248923] usbcore: registered new interface driver usbfs\n[    0.248959] usbcore: registered new interface driver hub\n[    0.249146] usbcore: registered new device driver usb\n[    0.249417] soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.249733] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.249759] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)\n[    0.249922] input: qpnp_pon as /devices/virtual/input/input0\n[    0.250625] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: No PON config. specified\n[    0.250669] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (secondary PMIC) and 'cold' boot\n[    0.250693] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from GP1 (Keypad_Reset1)\n[    0.251569] i2c-msm-v2 c175000.i2c: probing driver i2c-msm-v2\n[    0.253812] i2c-msm-v2 c176000.i2c: probing driver i2c-msm-v2\n[    0.254984] i2c-msm-v2 c1b6000.i2c: probing driver i2c-msm-v2\n[    0.256237] media: Linux media interface: v0.10\n[    0.256288] Linux video capture interface: v2.00\n[    0.260522] cpufreq: driver msm up and running\n[    0.263061] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node adsp_region\n[    0.263460] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.263701] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_region\n[    0.264460] ION heap system created\n[    0.264659] ION heap adsp created at 0x00000000ff400000 with size 800000\n[    0.264674] ION heap qsecom created at 0x00000000f5800000 with size 1400000\n[    0.264689] ION heap secure_display created at 0x00000000f6c00000 with size 5c00000\n[    0.264706] ION heap secure_heap created\n[    0.265684] PMIC@SID0: PM660 v2.0 options: 0, 0, 0, 0\n[    0.265839] PMIC@SID2: PM660L v2.0.1 options: 0, 0, 0, 0\n[    0.267174] ipa get_ipa_dts_configuration:4871 : apps shutdown support = Disabled\n[    0.267234] IPA smmu_info.s1_bypass=1 smmu_info.fast_map=0\n[    0.273843] gdsc_vfe0: supplied by gdsc_camss_top\n[    0.274244] gdsc_vfe1: supplied by gdsc_camss_top\n[    0.274655] gdsc_cpp: supplied by gdsc_camss_top\n[    0.276005] gdsc_gpu_gx: supplied by gfx_corner\n[    0.279542] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.279551] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.281087] mdss_pll c994400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.281101] mdss_pll c994400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.281115] mdss_pll c994400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.282087] dsi_pll_clock_register_14nm: Registered DSI PLL ndx=0 clocks successfully\n[    0.282142] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.282149] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.282450] mdss_pll c996400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.282466] mdss_pll c996400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.282478] mdss_pll c996400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.283024] dsi_pll_clock_register_14nm: Registered DSI PLL ndx=1 clocks successfully\n[    0.283068] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.309405] arm-smmu 16c0000.arm,smmu-anoc2: found 29 context interrupt(s) but have 21 context banks. assuming 21 context interrupts.\n[    0.311183] arm-smmu 5100000.arm,smmu-lpass_q6: found 17 context interrupt(s) but have 14 context banks. assuming 14 context interrupts.\n[    0.313208] arm-smmu cd00000.arm,smmu-mmss: found 24 context interrupt(s) but have 17 context banks. assuming 17 context interrupts.\n[    0.313799] arm-smmu 5040000.arm,smmu-kgsl: regulator defer delay 80\n[    0.314240] arm-smmu 5040000.arm,smmu-kgsl: found 8 context interrupt(s) but have 5 context banks. assuming 5 context interrupts.\n[    0.320213] iommu: Adding device 18800000.qcom,icnss to group 0\n[    0.321131] iommu: Adding device soc:iommu_test_device to group 1\n[    0.321242] iommu: Adding device soc:usb_audio_qmi_dev to group 2\n[    0.322053] iommu: Adding device soc:qcom,msm-audio-ion to group 3\n[    0.322719] iommu: Adding device 14780000.qcom,ipa:ipa_smmu_ap to group 4\n[    0.322751] iommu: Adding device 14780000.qcom,ipa:ipa_smmu_uc to group 5\n[    0.326148] Advanced Linux Sound Architecture Driver Initialized.\n[    0.327254] Bluetooth: fffffffb79673ce8\n[    0.327295] NET: Registered protocol family 31\n[    0.327299] Bluetooth: fffffffb79673ce8\n[    0.327317] Bluetooth: fffffffb79673cc8\n[    0.327327] Bluetooth: fffffffb79673c98\n[    0.327360] Bluetooth: fffffffb79673ca8\n[    0.327938] cfg80211: World regulatory domain updated:\n[    0.327947] cfg80211:  DFS Master region: unset\n[    0.327952] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)\n[    0.327961] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.327966] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.327970] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.327974] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.327980] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.327985] cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.327990] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.327997] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)\n[    0.328063] NetLabel: Initializing\n[    0.328068] NetLabel:  domain hash size = 128\n[    0.328072] NetLabel:  protocols = UNLABELED CIPSOv4\n[    0.328127] NetLabel:  unlabeled traffic allowed by default\n[    0.328285] pcie:pcie_init.\n[    0.334874] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=5400mV ncp_voltage=5400mV bst_voltage=5500mV\n[    0.339582] ipa ipa2_uc_state_check:296 uC interface not initialized\n[    0.339603] ipa ipa_sps_irq_control_all:963 EP (2) not allocated.\n[    0.339609] ipa ipa_sps_irq_control_all:963 EP (5) not allocated.\n[    0.341800] sps:BAM 0x0000000014784000 is registered.\n[    0.342721] sps:BAM 0x0000000014784000 (va:0xffffff8008bc0000) enabled: ver:0x27, number of pipes:20\n[    0.351093] IPA driver initialization was successful.\n[    0.352592] clocksource: Switched to clocksource arch_sys_counter\n[    0.396993] pnp: PnP ACPI: disabled\n[    0.406534] gcc-debug-sdm660 62000.qcom,cc-debug: Registered debug mux successfully\n[    0.407666] NET: Registered protocol family 2\n[    0.408387] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.408599] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.409483] TCP: Hash tables configured (established 32768 bind 32768)\n[    0.409627] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.409687] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.409946] NET: Registered protocol family 1\n[    0.409993] PCI: CLS 0 bytes, default 64\n[    0.410508] Trying to unpack rootfs image as initramfs...\n[    0.688883] Freeing initrd memory: 7456K\n[    0.694943] audit: initializing netlink subsys (disabled)\n[    0.695029] audit: type=2000 audit(0.689:1): initialized\n[    0.695266] Initialise system trusted keyring\n[    0.695425] vmscan: error setting kswapd cpu affinity mask\n[    0.699782] VFS: Disk quotas dquot_6.6.0\n[    0.699904] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.701102] [SDFAT] Filesystem version 2.1.8-lineage\n[    0.701708] Registering sdcardfs 0.1\n[    0.702385] fuse init (API version 7.23)\n[    0.702625] SELinux:  Registering netfilter hooks\n[    0.703030] pfk_ecryptfs [pfk_ecryptfs_init]: PFK ecryptfs inited successfully\n[    0.703036] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    0.703044] pfk [pfk_init]: Driver initialized successfully\n[    0.707196] Key type asymmetric registered\n[    0.707205] Asymmetric key parser 'x509' registered\n[    0.707317] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)\n[    0.707329] io scheduler noop registered\n[    0.707336] io scheduler deadline registered\n[    0.707458] io scheduler cfq registered (default)\n[    0.715998] msm_dss_get_res_byname: 'vbif_nrt_phys' resource not found\n[    0.716015] mdss_mdp_probe+0x268/0x13f8->msm_dss_ioremap_byname: 'vbif_nrt_phys' msm_dss_get_res_byname failed\n[    0.716736] mdss_mdp_irq_clk_setup: unable to get core gdsc regulator\n[    0.718428] No change in context(0==0), skip\n[    0.719298] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:0 num:0 rect:0 ndx:0x1 prio:0\n[    0.719304] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:4 num:1 rect:0 ndx:0x2 prio:1\n[    0.719340] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:1 num:6 rect:0 ndx:0x40 prio:2\n[    0.719354] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:1 num:6 rect:1 ndx:0x40 prio:2\n[    0.719359] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:5 num:7 rect:0 ndx:0x80 prio:3\n[    0.719373] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:5 num:7 rect:1 ndx:0x80 prio:3\n[    0.719379] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:9 num:12 rect:0 ndx:0x1000 prio:4\n[    0.719392] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:9 num:12 rect:1 ndx:0x1000 prio:4\n[    0.719408] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:2 num:10 rect:0 ndx:0x400 prio:0\n[    0.719419] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-pipe-sw-reset-off : u32 array read\n[    0.719519] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-ib-factor-overlap : u32 array read\n[    0.719527] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-bus-througput-factor : u32 array read\n[    0.720106] xlog_status: enable:0, panic:1, dump:2\n[    0.720697] iommu: Adding device c900000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb to group 6\n[    0.721000] iommu: Adding device c900000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb to group 7\n[    0.721156] mdss_mdp_probe: mdss version = 0x30020000, bootloader display is on, num 1, intf_sel=0x00000100\n[    0.723588] mdss_smmu_probe: iommu v2 domain[0] mapping and clk register successful!\n[    0.723911] mdss_smmu_probe: iommu v2 domain[2] mapping and clk register successful!\n[    0.727447] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->0\n[    0.728148] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_td4310_tianma_fhd_video:config0:1:none:cfg:single_dsi panel_name:qcom,mdss_dsi_td4310_tianma_fhd_video\n[    0.728233] mdss_dsi_panel_init: Panel Name = tianma td4310 fhd video mode dsi panel\n[    0.728367] mdss_dsi_parse_split_link_settings: enable 0 sublinks-count 0 lanes per sublink 0\n[    0.728405] mdss_dsi_panel_timing_from_dt: found new timing \"qcom,mdss_dsi_td4310_tianma_fhd_video\" (fffffffb79673288)\n[    0.728429] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-post-panel-on-command\n[    0.728437] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-timing-switch-command\n[    0.728441] mdss_dsi_panel_get_dsc_cfg_np: cannot find dsc config node:config0\n[    0.728620] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-cabc-movie-on-command\n[    0.728629] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-cabc-still-on-command\n[    0.728637] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-hbm-off-command\n[    0.728646] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-hbm1-on-command\n[    0.728656] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-hbm2-on-command\n[    0.728665] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-hbm3-on-command\n[    0.728895] mdss_dsi_parse_panel_features: ulps feature disabled\n[    0.728903] mdss_dsi_parse_panel_features: ulps during suspend feature disabled\n[    0.728912] mdss_dsi_parse_dms_config: dynamic switch feature enabled: 0\n[    0.728984] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-on\n[    0.728993] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-off\n[    0.729024] dyn_fps: min = 48, max = 60\n[    0.729346] mdss_dsi_parse_ctrl_params:4990 Unable to read qcom,display-id, data=0000000000000000,len=20\n[    0.729394] mdss_dsi_parse_gpio_params: bklt_en gpio not specified\n[    0.729399] mdss_dsi_parse_gpio_params: avdd_en gpio not specified\n[    0.729486] msm_dss_get_res_byname: 'dsi_phy_regulator' resource not found\n[    0.729503] mdss_dsi_retrieve_ctrl_resources+0x170/0x1f4->msm_dss_ioremap_byname: 'dsi_phy_regulator' msm_dss_get_res_byname failed\n[    0.729510] mdss_dsi_retrieve_ctrl_resources: ctrl_base=ffffff8008aa2000 ctrl_size=400 phy_base=ffffff8008aa8400 phy_size=588\n[    0.729706] dsi_panel_device_register: Continuous splash enabled\n[    0.729912] Unable to find fb node for device: c994000.qcom,mdss_dsi_ctrl0\n[    0.730310] mdss_register_panel: adding framebuffer device c994000.qcom,mdss_dsi_ctrl0\n[    0.733431] mdss_dsi_ctrl_probe: Dsi Ctrl->0 initialized, DSI rev:0x20010000, PHY rev:0x2\n[    0.733572] mdss_dsi_status_init: DSI status check interval:1000\n[    0.735029] mdss_dp_usbpd_setup: get_usbpd phandle failed (-11)\n[    0.735033] mdss_dp_probe: Error usbpd setup!\n[    0.736412] mdss_register_panel: adding framebuffer device soc:qcom,mdss_wb_panel\n[    0.737090] mdss_fb_probe: fb0: split_mode:0 left:0 right:0\n[    0.737805] mdss_fb_register: FrameBuffer[0] 1080x2160 registered successfully!\n[    0.738686] mdss_fb_probe: fb1: split_mode:0 left:0 right:0\n[    0.738849] mdss_fb_register: FrameBuffer[1] 640x480 registered successfully!\n[    0.739040] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    0.745623] spcom [spcom_init]: spcom driver version 1.2 23-Aug-2017.\n[    0.746440] audio_notifer_reg_service: service SSR_MODEM is in use\n[    0.754259] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.754630] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.764487] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.764618] In memshare_probe, Memshare probe success\n[    0.766369] subsys-pil-tz cce0000.qcom,venus: invalid resource\n[    0.766374] subsys-pil-tz cce0000.qcom,venus: Failed to iomap base register\n[    0.767492] subsys-pil-tz cce0000.qcom,venus: for venus segments only will be dumped.\n[    0.768197] subsys-pil-tz soc:qcom,kgsl-hyp: invalid resource\n[    0.768202] subsys-pil-tz soc:qcom,kgsl-hyp: Failed to iomap base register\n[    0.768215] subsys-pil-tz soc:qcom,kgsl-hyp: for a512_zap segments only will be dumped.\n[    0.770587] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    0.775595] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.775942] icnss: Platform driver probed successfully\n[    0.779762] msm_rpm_log_probe: OK\n[    0.781987] uart_tx_gpio is not available\n[    0.781993] uart_rx_gpio is not available\n[    0.781997] uart_cts_gpio is not available\n[    0.782001] uart_rfr_gpio is not available\n[    0.782826] sps: BAM device 0x000000000c184000 is not registered yet.\n[    0.783016] sps:BAM 0x000000000c184000 is registered.\n[    0.784460] c1af000.uart: ttyHS0 at MMIO 0xc1af000 (irq = 293, base_baud = 460800) is a MSM HS UART\n[    0.785568] msm_serial_hs module loaded\n[    0.788026] random: nonblocking pool is initialized\n[    0.804810] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 8\n[    0.805242] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 9\n[    0.816891] brd: module loaded\n[    0.821484] loop: module loaded\n[    0.821929] zram: Added device: zram0\n[    0.823223] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1001000\n[    0.823255] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.823263] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    0.823269] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 0\n[    0.823590] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    0.828682] sdm660-pinctrl 3000000.pinctrl: pin_config_group_set op failed for group 74\n[    0.828688] ant_check soc:ant_check: Error applying setting, reverse things back\n[    0.828712] Macle ant_probe\n[    0.828799] Macle irq_gpio=74\n[    0.828920] input: ant_check-input as /devices/virtual/input/input1\n[    0.828949] ant_probe: gpios = 0, gpion=0\n[    0.828953] Macle irq = 249\n[    0.829155] ant_probe end\n[    0.832887] msm-cdc-pinctrl soc:sdw_clk_data_pinctrl: msm_cdc_pinctrl_probe: Cannot get cdc gpio pinctrl:-22\n[    0.832902] msm-cdc-pinctrl: probe of soc:sdw_clk_data_pinctrl failed with error -22\n[    0.832926] msm-cdc-pinctrl soc:wsa_spkr_en1_pinctrl: msm_cdc_pinctrl_probe: Cannot get cdc gpio pinctrl:-22\n[    0.832934] msm-cdc-pinctrl: probe of soc:wsa_spkr_en1_pinctrl failed with error -22\n[    0.832956] msm-cdc-pinctrl soc:wsa_spkr_en2_pinctrl: msm_cdc_pinctrl_probe: Cannot get cdc gpio pinctrl:-22\n[    0.832963] msm-cdc-pinctrl: probe of soc:wsa_spkr_en2_pinctrl failed with error -22\n[    0.834634] qce 1de0000.qcedev: Qualcomm Crypto 5.3.4 device found @0x1de0000\n[    0.834644] qce 1de0000.qcedev: CE device = 0x0\n               IO base, CE = 0xffffff8009c40000\n               Consumer (IN) PIPE 2,    Producer (OUT) PIPE 3\n               IO base BAM = 0x0000000000000000\n               BAM IRQ 85\n               Engines Availability = 0x2011053\n[    0.834876] sps:BAM 0x0000000001dc4000 is registered.\n[    0.835063] sps:BAM 0x0000000001dc4000 (va:0xffffff8009fc0000) enabled: ver:0x27, number of pipes:16\n[    0.835318] QCE50: qce_sps_init:  Qualcomm MSM CE-BAM at 0x0000000001dc4000 irq 85\n[    0.840641] qcrypto 1de0000.qcrypto: Qualcomm Crypto 5.3.4 device found @0x1de0000\n[    0.840650] qcrypto 1de0000.qcrypto: CE device = 0x0\n               IO base, CE = 0xffffff800b040000\n               Consumer (IN) PIPE 4,    Producer (OUT) PIPE 5\n               IO base BAM = 0x0000000000000000\n               BAM IRQ 85\n               Engines Availability = 0x2011053\n[    0.841016] QCE50: qce_sps_init:  Qualcomm MSM CE-BAM at 0x0000000001dc4000 irq 85\n[    0.844203] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    0.844391] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    0.844504] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    0.844603] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    0.844705] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    0.844812] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    0.844913] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    0.845018] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    0.845130] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    0.845234] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    0.845336] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    0.845440] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    0.845540] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    0.845644] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    0.845752] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    0.845853] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    0.845954] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    0.846056] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    0.846165] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    0.846274] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    0.848643] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    0.849502] SCSI Media Changer driver v0.25 \n[    0.852734] sps:BAM 0x000000000c184000 (va:0xffffff8008ba0000) enabled: ver:0x19, number of pipes:12\n[    0.853629] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    0.854451] i2c-msm-v2 c1b6000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:4) mode:FIFO slv_addr:0x28 MSTR_STS:0x0d1300c8 OPER:0x00000090\n[    0.854494] nq-nci 6-0028: nfcc_hw_check: - i2c_master_send Error\n[    0.854499] nq-nci 6-0028: nfcc_hw_check: - NFCC HW not available\n[    0.854768] nq-nci 6-0028: nqx_probe: probing nqxx failed, check hardware\n[    0.855174] tun: Universal TUN/TAP device driver, 1.6\n[    0.855178] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    0.855316] sky2: driver version 1.30\n[    0.856676] PPP generic driver version 2.4.2\n[    0.856796] PPP BSD Compression module registered\n[    0.856804] PPP Deflate Compression module registered\n[    0.856845] PPP MPPE Compression module registered\n[    0.856857] NET: Registered protocol family 24\n[    0.856989] CLD80211: Initializing\n[    0.857121] usbcore: registered new interface driver asix\n[    0.857213] usbcore: registered new interface driver ax88179_178a\n[    0.857243] usbcore: registered new interface driver cdc_ether\n[    0.857272] usbcore: registered new interface driver net1080\n[    0.857300] usbcore: registered new interface driver cdc_subset\n[    0.857332] usbcore: registered new interface driver zaurus\n[    0.857391] usbcore: registered new interface driver cdc_ncm\n[    0.858026] msm_sharedmem: sharedmem_register_qmi: qmi init successful\n[    0.862620] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.870627] msm-dwc3 a800000.ssusb: unable to get dbm device\n[    0.872685] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.872695] ehci-pci: EHCI PCI platform driver\n[    0.872731] ehci-platform: EHCI generic platform driver\n[    0.873234] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    0.873257] ohci-pci: OHCI PCI platform driver\n[    0.873297] ohci-platform: OHCI generic platform driver\n[    0.874282] usbcore: registered new interface driver usb-storage\n[    0.874312] usbcore: registered new interface driver usb_ehset_test\n[    0.876446] mousedev: PS/2 mouse device common for all mice\n[    0.892978] input: synaptics_dsx as /devices/soc/c175000.i2c/i2c-1/1-0020/input/input2\n[    0.893859] [LCT_TP_GESTURE] init_lct_tp_gesture (line 77): Initialization tp_gesture node!\n[    0.893875] [LCT_TP_GESTURE] lct_creat_proc_tp_entry (line 107): /proc/tp_gesture is okay!\n[    0.894176] [NVT-ts] nvt_driver_init 1798: start\n[    0.894216] [NVT-ts] nvt_ts_probe 1261: start\n[    0.894331] [NVT-ts] nvt_parse_dt 887: novatek,irq-gpio=67\n[    0.894376] [NVT-ts] nvt_parse_dt 889: novatek,reset-gpio=66\n[    0.894382] [NVT-ts] nvt_gpio_config 913: Failed to request NVT-int GPIO\n[    0.894386] [NVT-ts] nvt_ts_probe 1278: gpio config error!\n[    0.894400] NVT-ts: probe of 1-0062 failed with error -16\n[    0.894425] nvt_driver_init: finished\n[    0.894442] ctp_selftest_init\n[    0.894542] create_proc_entry g_ctp_selftest_proc success\n[    0.894549] ctp_upgrade_init\n[    0.894649] [elan] create_proc_entry 222 success\n[    0.894655] create_proc_entry success\n[    0.894663] ctp_if_upgrade_init\n[    0.894767] ctp_if_upgrade_init create_proc_entry 222 success\n[    0.894773] create_proc_entry success\n[    0.894777] create_proc_entry success\n[    0.894896] stmvl53l0_init: Enter\n[    0.894901] stmvl53l0_init_cci: Enter\n[    0.895809] stmvl53l0_init_cci: End\n[    0.895812] stmvl53l0_init: End\n[    0.896946] tyt fpc1020_probe:615\n[    0.896987] tyt fpc1020_request_named_gpio:536\n[    0.897031] tyt fpc1020_request_named_gpio:536\n[    0.897206] fpc1020 soc:fpc1020: found pin control fpc1020_reset_reset\n[    0.897212] fpc1020 soc:fpc1020: found pin control fpc1020_reset_active\n[    0.897218] fpc1020 soc:fpc1020: found pin control fpc1020_irq_active\n[    0.897221] tyt select_pin_ctl:232\n[    0.897240] tyt select_pin_ctl:232\n[    0.897243] tyt select_pin_ctl:232\n[    0.897246] tyt select_pin_ctl:232\n[    0.897443] tyt select_pin_ctl:232\n[    0.897448] tyt select_pin_ctl:232\n[    0.897463] tyt hw_reset:299\n[    0.897701] tyt fpc1020_irq_handler:508\n[    0.897702] tyt select_pin_ctl:232\n[    0.902831] tyt select_pin_ctl:232\n[    0.902836] tyt select_pin_ctl:232\n[    0.903092] tyt fpc1020_irq_handler:508\n[    0.907973] fpc1020 soc:fpc1020: IRQ after reset 1\n[    0.907983] gf3208 Create proc entry success!\n[    0.907988] fpc1020 soc:fpc1020: fpc1020_probe: ok\n[    0.908042] tyt fpc1020_init:778\n[    0.908045] fpc1020_init OK\n[    0.908868] input: uinput-goodix as /devices/virtual/input/input3\n[    0.908984] proc_dir_entry '/proc/hwinfo' already registered\n[    0.909012] ------------[ cut here ]------------\n[    0.909016] WARNING: at ../fs/proc/generic.c:345\n[    0.909019] Modules linked in:\n\n[    0.909031] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.4.205-perf+ #2\n[    0.909034] Hardware name: Qualcomm Technologies, Inc. SDM 636 PM660 + PM660L E7S (DT)\n[    0.909039] task: fffffffb79668000 task.stack: fffffffb79670000\n[    0.909051] PC is at proc_register+0xd4/0x100\n[    0.909056] LR is at proc_register+0xd4/0x100\n[    0.909059] pc : [<ffffff8fb223c6f0>] lr : [<ffffff8fb223c6f0>] pstate: 60400045\n[    0.909063] sp : fffffffb79673b00\n[    0.909067] x29: fffffffb79673b00 x28: ffffff8fb46c8000 \n[    0.909072] x27: ffffff8fb3c71f70 x26: ffffff8fb3c004c0 \n[    0.909078] x25: ffffff8fb3c72000 x24: ffffff8fb4443af8 \n[    0.909082] x23: fffffffb761b3a85 x22: ffffff8fb4443ac0 \n[    0.909087] x21: ffffff8fb46fc000 x20: fffffffb761b3540 \n[    0.909092] x19: fffffffb761b3a00 x18: fffffffb79673a90 \n[    0.909097] x17: ffffffbffe84579c x16: 0000000077359400 \n[    0.909102] x15: ffffffffffffffff x14: 0fffffffffffffff \n[    0.909107] x13: 0000000000000018 x12: 0101010101010101 \n[    0.909112] x11: 7f7f7f7f7f7f7f7f x10: fefefefeff6e656d \n[    0.909117] x9 : 7f7f7fffffffffff x8 : 6465726574736967 \n[    0.909122] x7 : 6572207964616572 x6 : ffffff8fb46cbdc7 \n[    0.909127] x5 : ffffff8fb327ee90 x4 : 0000000000000000 \n[    0.909132] x3 : 0000000000000000 x2 : 33a05d6898bdd8ae \n[    0.909137] x1 : 33a05d6898bdd8ae x0 : 0000000000000030 \n[    0.909143] \n               PC: 0xffffff8fb223c6b0:\n[    0.909146] c6b0  91010260 f9002262 f900041f f900081f f9000020 aa1803e1 940573c7 911a62a0\n[    0.909164] c6d0  943ea6f4 52800000 1400000c d000b380 910216c1 aa1703e2 91079c00 97fd0813\n[    0.909177] c6f0  d4210000 911a62a0 943ea6ea b9400260 97ffffb1 12800200 a94153f3 a9425bf5\n[    0.909189] c710  a94363f7 a8c47bfd d65f03c0 a9bd7bfd aa0003e3 910003fd 9100c3a0 a90153f3\n[    0.909202] \n               LR: 0xffffff8fb223c6b0:\n[    0.909205] c6b0  91010260 f9002262 f900041f f900081f f9000020 aa1803e1 940573c7 911a62a0\n[    0.909217] c6d0  943ea6f4 52800000 1400000c d000b380 910216c1 aa1703e2 91079c00 97fd0813\n[    0.909230] c6f0  d4210000 911a62a0 943ea6ea b9400260 97ffffb1 12800200 a94153f3 a9425bf5\n[    0.909242] c710  a94363f7 a8c47bfd d65f03c0 a9bd7bfd aa0003e3 910003fd 9100c3a0 a90153f3\n[    0.909255] \n               SP: 0xfffffffb79673ac0:\n[    0.909258] 3ac0  b223c6f0 ffffff8f 79673b00 fffffffb b223c6f0 ffffff8f 60400045 00000000\n[    0.909270] 3ae0  00000000 00000000 00000000 00000000 ffffffff ffffffff ffffffff ffffffff\n[    0.909282] 3b00  79673b40 fffffffb b223c934 ffffff8f 761b3a00 fffffffb b33078b8 ffffff8f\n[    0.909295] 3b20  00000000 00000000 b488c840 ffffff8f b44e20b4 ffffff8f 00000010 00000000\n\n[    0.909347] ---[ end trace 48c4ea6ff8fb0ee2 ]---\n[    0.909352] Call trace:\n[    0.909359] Exception stack(0xfffffffb79673910 to 0xfffffffb79673a40)\n[    0.909366] 3900:                                   fffffffb761b3a00 0000008000000000\n[    0.909371] 3920: 0000000082bdb000 ffffff8fb223c6f0 0000000060400045 000000000000dae0\n[    0.909377] 3940: 0000000000000002 0000000000000000 ffffff8fb44285b8 00000000b46cbc38\n[    0.909382] 3960: fffffffb79673a10 ffffff8fb2109a00 ffffff8fb4406000 ffffff8fb21099cc\n[    0.909388] 3980: ffffff8fb46fc000 ffffff8fb4443ac0 fffffffb761b3a85 ffffff8fb4443af8\n[    0.909395] 39a0: ffffff8fb3c72000 ffffff8fb3c004c0 ffffff8fb3c71f70 ffffff8fb46c8000\n[    0.909400] 39c0: fffffffb79673a10 33a05d6898bdd8ae 0000000000000030 33a05d6898bdd8ae\n[    0.909407] 39e0: 33a05d6898bdd8ae 0000000000000000 0000000000000000 ffffff8fb327ee90\n[    0.909412] 3a00: ffffff8fb46cbdc7 6572207964616572 6465726574736967 7f7f7fffffffffff\n[    0.909417] 3a20: fefefefeff6e656d 7f7f7f7f7f7f7f7f 0101010101010101 0000000000000018\n[    0.909424] [<ffffff8fb223c6f0>] proc_register+0xd4/0x100\n[    0.909430] [<ffffff8fb223c934>] proc_create_data+0x9c/0xc4\n[    0.909441] [<ffffff8fb2836b04>] gf_probe+0x210/0x2ec\n[    0.909451] [<ffffff8fb263cb88>] platform_drv_probe+0x58/0xa4\n[    0.909458] [<ffffff8fb263adc4>] driver_probe_device+0x110/0x2a4\n[    0.909463] [<ffffff8fb263afbc>] __driver_attach+0x64/0x90\n[    0.909469] [<ffffff8fb2639e38>] bus_for_each_dev+0x80/0xb0\n[    0.909474] [<ffffff8fb263a8c8>] driver_attach+0x20/0x28\n[    0.909479] [<ffffff8fb263a480>] bus_add_driver+0xe8/0x1e4\n[    0.909485] [<ffffff8fb263bb90>] driver_register+0x94/0xe0\n[    0.909490] [<ffffff8fb263caa4>] __platform_driver_register+0x48/0x50\n[    0.909496] [<ffffff8fb3c4510c>] gf_init+0xb8/0x114\n[    0.909505] [<ffffff8fb2083e20>] do_one_initcall+0x178/0x194\n[    0.909516] [<ffffff8fb3c00e48>] kernel_init_freeable+0x1a0/0x258\n[    0.909527] [<ffffff8fb31de63c>] kernel_init+0x10/0xf8\n[    0.909532] [<ffffff8fb2083360>] ret_from_fork+0x10/0x30\n[    0.909538] gf3258 Couldn't create proc entry!\n[    0.909548] goodix_fp: probe of soc:goodix_fp failed with error -12\n[    0.909623] gf_drv_tee: status = 0x0\n[    0.910767] Macle hall_probe\n[    0.910810] Macle hall irq_gpio=75\n[    0.910925] input: hall-switch-input as /devices/virtual/input/input4\n[    0.911438] hall_probe: gpios = 1, gpion=1\n[    0.911443] Macle hall irq = 250\n[    0.911873] hall_probe end\n[    0.912490] qcom,qpnp-rtc 800f000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: rtc core: registered qpnp_rtc as rtc0\n[    0.913305] i2c /dev entries driver\n[    0.914484] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb1 to group 10\n[    0.914892] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 8, cb->name: :vfe sid [0] = 3072\n               ,\n[    0.914898] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 8, cb->name: :vfe sid [1] = 3073\n               ,\n[    0.914903] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 8, cb->name: :vfe sid [2] = 3074\n               ,\n[    0.914906] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 8, cb->name: :vfe sid [3] = 3075\n               ,\n[    0.915076] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb2 to group 11\n[    0.915244] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 2, cb->name: :cpp sid [0] = 2560\n               ,\n[    0.915373] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb4 to group 12\n[    0.915501] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 2, cb->name: :jpeg_enc0 sid [0] = 2048\n               ,\n[    0.915626] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb5 to group 13\n[    0.915753] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 2, cb->name: :jpeg_dma sid [0] = 2049\n               ,\n[    0.941133] msm_actuator_platform_probe:1987 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    0.984224] msm_cci_init:1439: hw_version = 0x10060000\n[    1.395137] before get_tddi_lockdown_data\n[    1.520646] i=2 flag offset 412\n[    1.520650] Invalid flag = 0x0\n[    1.520654] i=1 flag offset 386\n[    1.520656] Invalid flag = 0x0\n[    1.520660] i=0 flag offset 360\n[    1.520664] whyred_s5k5e8_ofilm_i_get_otp_vendor_module_id flag = 0x55, mid = 0x7, lensid = 0x1f, sensorid = 0x9 \n[    1.520669] get_otp_vendor_module_id 1680 eeprom_name=whyred_s5k5e8_ofilm_i, module_id=0x7\n[    1.560916] msm_eeprom_platform_probe failed 1779\n[    1.561774] msm_eeprom_platform_probe failed 1779\n[    1.562541] msm_eeprom_platform_probe failed 1779\n[    1.563294] msm_eeprom_platform_probe failed 1779\n[    1.605756] msm_cci_init:1439: hw_version = 0x10060000\n[    2.140647] i=2 flag offset 412\n[    2.140651] Invalid flag = 0x0\n[    2.140654] i=1 flag offset 386\n[    2.140658] Invalid flag = 0x0\n[    2.140661] i=0 flag offset 360\n[    2.140665] whyred_s5k5e8_qtech_ii_get_otp_vendor_module_id flag = 0x55, mid = 0x7, lensid = 0x1f, sensorid = 0x9 \n[    2.140671] get_otp_vendor_module_id 1680 eeprom_name=whyred_s5k5e8_qtech_ii, module_id=0x0\n[    2.183357] qcom,camera-flash soc:qcom,camera-flash@1: Led torch-light0 renamed to torch-light0_1 due to name collision\n[    2.190196] MSM-CPP cpp_probe:4620 cpp_probe register cx_ipeak received bit 1\n[    2.193625] MSM-CPP cpp_init_hardware:1141 CPP HW Version: 0x60010002\n[    2.193640] MSM-CPP cpp_init_hardware:1159 stream_cnt:0\n[    2.194020] MSM-CPP cpp_release_hardware:1222 cpp hw release done\n[    2.195588] CAM-SOC msm_camera_get_reg_base:864 err: mem resource vfe_fuse not found\n[    2.195593] CAM-SOC msm_camera_get_res_size:907 err: mem resource vfe_fuse not found\n[    2.198276] CAM-SOC msm_camera_get_reg_base:864 err: mem resource vfe_fuse not found\n[    2.198280] CAM-SOC msm_camera_get_res_size:907 err: mem resource vfe_fuse not found\n[    2.211293] __msm_jpeg_init:1577] Jpeg Device id 0\n[    2.223060] iommu: Adding device cc00000.qcom,vidc:non_secure_cb to group 14\n[    2.226003] iommu: Adding device cc00000.qcom,vidc:firmware_cb to group 15\n[    2.226243] iommu: Adding device cc00000.qcom,vidc:secure_bitstream_cb to group 16\n[    2.228486] iommu: Adding device cc00000.qcom,vidc:secure_pixel_cb to group 17\n[    2.229854] iommu: Adding device cc00000.qcom,vidc:secure_non_pixel_cb to group 18\n[    2.235150] sde_smmu_callback: <SDEROT_INFO> sde_smmu_callback registered domain: 1\n[    2.235156] sde_smmu_callback: <SDEROT_INFO> sde_smmu_callback registered domain: 0\n[    2.236134] No change in context(0==0), skip\n[    2.237704] sde_rotator_evtlog_create_debugfs: evtlog_status: enable:1, panic:1, dump:2\n[    2.237786] sde_rotator c900000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    2.239093] usbcore: registered new interface driver uvcvideo\n[    2.239097] USB Video Class driver (1.1.1)\n[    2.241489] PMI: smblib_get_charge_param: usb input current limit = 1500000 (0x3c)\n[    2.241543] PMI: smblib_set_charge_param: usb otg current limit = 250000 (0x00)\n[    2.241603] PMI: smblib_set_charge_param: dc input current limit = 2000000 (0x50)\n[    2.791155] PMI: smblib_set_charge_param: dc icl PT <8V = 625000 (0x19)\n[    2.791169] PMI: smblib_set_charge_param: dc icl PT >8V = 555555 (0x16)\n[    2.791183] PMI: smblib_set_charge_param: dc icl div2 <5.5V = 909090 (0x24)\n[    2.791197] PMI: smblib_set_charge_param: dc icl div2 5.5-6.5V = 769230 (0x1e)\n[    2.791209] PMI: smblib_set_charge_param: dc icl div2 6.5-8.0V = 625000 (0x19)\n[    2.791221] PMI: smblib_set_charge_param: dc icl div2 >8.0V = 454545 (0x12)\n[    2.792192] thermal thermal_zone0: failed to read out thermal zone (-19)\n[    2.792209] enter sysfs create file thermal\n[    2.792248] PMI: smblib_set_charge_param: buck switching frequency = 1050 (0x08)\n[    2.792584] PMI: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    2.792590] PMI: smblib_update_usb_type: lct battery charge APSD=UNKNOWN PD=0\n[    2.792660] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.792696] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.792728] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    2.792753] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    2.792785] PMI: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    2.792808] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    2.792822] get prop 150 is not supported in usb\n[    2.792839] PMI: smblib_usb_plugin_locked: IRQ: usbin-plugin detached\n[    2.792847] PMI: smblib_handle_usb_typec_change: Scheduling OTG work\n[    2.792862] PMI: smblib_handle_usb_source_change: APSD_STATUS = 0x00\n[    2.792876] PMI: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    2.792883] PMI: smblib_handle_hvdcp_check_timeout: IRQ: smblib_handle_hvdcp_check_timeout falling\n[    2.792888] PMI: smblib_handle_sdp_enumeration_done: IRQ: sdp-enumeration-done falling\n[    2.792892] PMI: smblib_handle_slow_plugin_timeout: IRQ: slow-plugin-timeout falling\n[    2.792940] PMI: smblib_get_charge_param: float voltage = 4395000 (0x79)\n[    2.792955] PMI: smblib_get_charge_param: fast charge current = 2000000 (0x50)\n[    2.792972] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    2.793019] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    2.793034] PMI: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    2.793066] PMI: smblib_set_charge_param: usb input current limit = 25000 (0x01)\n[    2.793171] smblib_adjust_jeita_cc_config fcc val_u  = 2500000\n[    2.793185] PMI: smblib_get_charge_param: jeita fcc reduction = 1400000 (0x38)\n[    2.793190] lct smblib_adjust_jeita_cc_config jeita cc current_cc_minus_ua = 1400000\n[    2.793202] PMI: smblib_set_charge_param: jeita fcc reduction = 1200000 (0x30)\n[    2.793205] smblib_adjust_jeita_cc_config jeita cc has changed ,write it back ,write result = 0\n[    2.793209] PMI: smblib_set_charge_param: fast charge current = 2500000 (0x64)\n[    2.793222] PMI: smblib_set_charge_param: float voltage = 4400000 (0x79)\n[    2.793249] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    2.793303] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.793333] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.793362] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    2.793385] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    2.793415] PMI: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    2.793438] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    2.793449] get prop 150 is not supported in usb\n[    2.793467] PMI: smblib_handle_usb_source_change: APSD_STATUS = 0x00\n[    2.793479] PMI: smblib_handle_chg_state_change: IRQ: determine-initial-status\n[    2.793527] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.793543] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    2.793560] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    2.793599] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.793612] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    2.793625] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    2.793651] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    2.793681] lct battery_capacity =-2090604544\n[    2.793802] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.793816] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    2.793828] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    2.793860] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    2.793895] smblib_adjust_jeita_cc_config fcc val_u  = 2500000\n[    2.793909] PMI: smblib_get_charge_param: jeita fcc reduction = 1200000 (0x30)\n[    2.793912] lct smblib_adjust_jeita_cc_config jeita cc current_cc_minus_ua = 1200000\n[    2.793916] smblib_adjust_jeita_cc_config do nothing \n[    2.793920] PMI: smblib_set_charge_param: fast charge current = 2500000 (0x64)\n[    2.793948] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.793963] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    2.793975] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    2.794008] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.794021] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    2.794035] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    2.794059] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    2.794084] lct battery_capacity =-2090604544\n[    2.794186] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.794200] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    2.794213] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    2.794234] PMI: smblib_handle_wdog_bark: IRQ: determine-initial-status\n[    2.794272] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.794285] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    2.794299] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    2.794331] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.794345] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    2.794359] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    2.794382] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    2.794407] lct battery_capacity =-2090604544\n[    2.794510] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.794523] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    2.794537] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    2.801401] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    2.801416] PMI: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    2.801442] PMI: smblib_set_charge_param: usb input current limit = 25000 (0x01)\n[    2.801603] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    2.801650] QPNP SMB2 probed successfully usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    2.801739] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.801754] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    2.801768] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    2.801805] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.801819] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    2.801832] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    2.801857] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    2.801883] lct battery_capacity =-2090604544\n[    2.802023] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.802047] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.802064] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    2.802089] PMI: smblib_get_charge_param: float voltage = 4395000 (0x79)\n[    2.802105] PMI: smblib_get_charge_param: fast charge current = 2500000 (0x64)\n[    2.802121] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    2.802164] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.802194] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.802224] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    2.802249] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    2.802280] PMI: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    2.802302] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    2.802314] get prop 150 is not supported in usb\n[    2.802332] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    2.802366] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    2.802387] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.802400] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    2.802413] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    2.805765] qpnp_vadc_read: Error reading vadc_hc channel 80\n[    2.805777] thermal thermal_zone1: failed to read out thermal zone (-517)\n[    2.805959] qpnp_vadc_read: Error reading vadc_hc channel 78\n[    2.805965] thermal thermal_zone2: failed to read out thermal zone (-517)\n[    2.806150] qpnp_vadc_read: Error reading vadc_hc channel 79\n[    2.806156] thermal thermal_zone3: failed to read out thermal zone (-517)\n[    2.827539] msm_lmh_dcvs:lmh_activate_trip lmh_activate_trip: disable not supported\n[    2.828499] msm_lmh_dcvs:lmh_activate_trip lmh_activate_trip: disable not supported\n[    2.828998] md: linear personality registered for level -1\n[    2.829123] device-mapper: uevent: version 1.0.3\n[    2.829474] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com\n[    2.829629] device-mapper: req-crypt: dm-req-crypt successfully initalized.\n\n[    2.830830] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in device tree\n[    2.830913] bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    2.830917] bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    2.831634] sdhci: Secure Digital Host Controller Interface driver\n[    2.831637] sdhci: Copyright(c) Pierre Ossman\n[    2.831646] sdhci-pltfm: SDHCI platform and OF driver helper\n[    2.834475] qcom_ice_get_pdevice: found ice device fffffffaf41b5200\n[    2.834480] qcom_ice_get_pdevice: matching platform device fffffffb77e50400\n[    2.837622] qcom_ice c0c8000.sdcc1ice: QC ICE 3.0.72 device found @0xffffff8009cf0000\n[    2.838163] sdhci_msm c0c4000.sdhci: No vmmc regulator found\n[    2.838169] sdhci_msm c0c4000.sdhci: No vqmmc regulator found\n[    2.838581] mmc0: SDHCI controller on c0c4000.sdhci [c0c4000.sdhci] using 64-bit ADMA in CMDQ mode\n[    2.839368] usbcore: registered new interface driver usbhid\n[    2.839373] usbhid: USB HID core driver\n[    2.839516] ashmem: initialized\n[    2.840112] PMI: smblib_uusb_otg_work: TYPE_C_STATUS_3 = 0x20 OTG=0\n[    2.840158] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.840205] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    2.840240] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    2.840269] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    2.840305] PMI: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    2.840328] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    2.840343] get prop 150 is not supported in usb\n[    2.840476] wlan: Loading driver v5.2.03.12V; 2021-01-09T20:26:13Z; cld:I35e177e002; cmn:I35e177e002; ()\n[    2.840494] qdf_print_ctrl_register: Allocated print control object 0\n[    2.841026] [swapper/0][0x666d7fe][00:00:02.841011] wlan: [1:I:tdls] ucfg_tdls_init: 40: tdls module dispatcher init\n[    2.841038] [swapper/0][0x666d8f2][00:00:02.841024] wlan: [1:I:tdls] ucfg_tdls_init: 72: tdls module dispatcher init done\n[    2.841064] [swapper/0][0x666dae4][00:00:02.841050] wlan: [1:I:POLICY_MGR] policy_mgr_init: 214: Callbacks registered with obj mgr\n[    2.841225] [swapper/0][0x666e6e5][00:00:02.841210] wlan: [1:I:IPA] ipa_init: 125: ipa module dispatcher init\n[    2.841234] ipa ipa2_uc_reg_rdyCB:1735 bad parm. inout=          (null) \n[    2.841387] wlan_hdd_state wlan major(230) initialized\n[    2.841423] wlan: driver loaded\n[    2.841660] qpnp_coincell_charger_show_state: enabled=Y, voltage=3200 mV, resistance=2100 ohm\n[    2.904368] mmc0: Out-of-interrupt timeout is 100[ms]\n[    2.904376] mmc0: eMMC FW version: 0x05\n[    2.904379] mmc0: CMDQ supported: depth: 16\n[    2.904384] mmc0: cache barrier support 0 flush policy 0\n[    2.910099] cmdq_host_alloc_tdl: desc_size: 1024 data_sz: 63488 slot-sz: 32\n[    2.910360] mmc0: CMDQ enabled on card\n[    2.910377] mmc0: new HS400 Enhanced strobe MMC card at address 0001\n[    2.911085] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0xf) latency=-1\n[    2.911094] sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xf0) latency=-1\n[    2.911206] mmcblk0: mmc0:0001 DH6DMB 58.2 GiB \n[    2.912529] mmcblk0rpmb: mmc0:0001 DH6DMB partition 3 4.00 MiB\n[    2.914835]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42 p43 p44 p45 p46 p47 p48 p49 p50 p51 p52 p53 p54 p55 p56 p57 p58 p59 p60 p61 p62 p63 p64\n[    2.924099] sdhci_msm c084000.sdhci: sdhci_msm_probe: ICE device is not enabled\n[    2.938715] sdhci_msm c084000.sdhci: No vmmc regulator found\n[    2.938722] sdhci_msm c084000.sdhci: No vqmmc regulator found\n[    2.939159] mmc1: SDHCI controller on c084000.sdhci [c084000.sdhci] using 64-bit ADMA in legacy mode\n[    2.969961] bimc-bwmon 1008000.qcom,cpu-bwmon: BW HWmon governor registered.\n[    2.971398] arm-memlat-mon soc:qcom,arm-memlat-mon-0: Memory Latency governor registered.\n[    2.971453] arm-memlat-mon soc:qcom,arm-memlat-mon-4: Memory Latency governor registered.\n[    2.973894] devfreq soc:qcom,cpubw: Couldn't update frequency transition information.\n[    2.974157] devfreq soc:qcom,mincpubw: Couldn't update frequency transition information.\n[    2.974284] devfreq soc:qcom,memlat-cpu0: Couldn't update frequency transition information.\n[    2.974437] devfreq soc:qcom,memlat-cpu4: Couldn't update frequency transition information.\n[    2.978225] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    2.979664] usbcore: registered new interface driver snd-usb-audio\n[    2.984338] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    2.984948] tas2557 6-004c: tas2557_i2c_probe enter\n[    2.985243] tas2557 6-004c: ti,cdc-reset-gpio=77\n[    2.985296] tas2557 6-004c: Looking up ti,bypass-tmax property in node /soc/i2c@c1b6000/tas2557@4c failed -22\n[    3.027620] mmc1: new ultra high speed SDR104 SDHC card at address 0001\n[    3.028076] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0xf) latency=-1\n[    3.028086] sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xf0) latency=-1\n[    3.028168] mmcblk1: mmc1:0001 EB1QT 29.8 GiB \n[    3.028920]  mmcblk1: p1\n[    3.040302] tas2557 6-004c: PG2.1 Silicon found\n[    3.040318] tas2557 6-004c: irq = 248\n[    3.040358] tas2557 6-004c: tas2557_register_codec, enter\n[    3.040474] tas2557 6-004c: tas2557_register_misc, leave\n[    3.040480] tas2557 6-004c: tiload_driver_init\n[    3.040497] tas2557 6-004c: allocated Major Number: 227\n[    3.040579] tas2557 6-004c: Registered TiLoad driver, Major number: 227\n[    3.041644] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.055793] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx group_id: 0x9100\n[    3.056075] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0 dev_id: 0x9000\n[    3.056088] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.056120] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx group_id: 0x9101\n[    3.056367] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0 dev_id: 0x9001\n[    3.056377] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.056405] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx group_id: 0x9110\n[    3.056630] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0 dev_id: 0x9010\n[    3.056641] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.056674] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx group_id: 0x9111\n[    3.056896] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0 dev_id: 0x9011\n[    3.056908] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.056936] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx group_id: 0x9120\n[    3.057152] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0 dev_id: 0x9020\n[    3.057163] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.057191] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx group_id: 0x9121\n[    3.057413] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0 dev_id: 0x9021\n[    3.057424] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.057453] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx group_id: 0x9130\n[    3.057672] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0 dev_id: 0x9030\n[    3.057682] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.057710] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx group_id: 0x9131\n[    3.057934] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0 dev_id: 0x9031\n[    3.057945] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.068850] pri_i2s_gpio_init:enter.\n[    3.069334] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.078434] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.078878] GACT probability NOT on\n[    3.078894] Mirror/redirect action on\n[    3.078918] u32 classifier\n[    3.078920]     Actions configured\n[    3.078942] Netfilter messages via NETLINK v0.30.\n[    3.078979] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    3.079228] ctnetlink v0.93: registering with nfnetlink.\n[    3.079720] xt_time: kernel timezone is -0000\n[    3.079813] IPv4 over IPsec tunneling driver\n[    3.080289] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    3.080500] arp_tables: (C) 2002 David S. Miller\n[    3.080548] Initializing XFRM netlink socket\n[    3.080852] NET: Registered protocol family 10\n[    3.081714] mip6: Mobile IPv6\n[    3.081731] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    3.082216] sit: IPv6 over IPv4 tunneling driver\n[    3.082738] NET: Registered protocol family 17\n[    3.082756] NET: Registered protocol family 15\n[    3.082790] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.\n[    3.082800] Ebtables v2.0 registered\n[    3.082898] l2tp_core: L2TP core driver, V2.0\n[    3.082910] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    3.082918] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    3.082936] l2tp_netlink: L2TP netlink interface\n[    3.082968] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    3.082976] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    3.084188] NET: Registered protocol family 27\n[    3.089433] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.089437] mdss_dp_probe: Error usbpd setup!\n[    3.090438] subsys-pil-tz 15700000.qcom,lpass: for adsp segments only will be dumped.\n[    3.091623] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    3.092360] platform 4080000.qcom,mss:qcom,mba-mem@0: assigned reserved memory node pil_mba_region@94800000\n[    3.096552] sps:BAM 0x000000000a904000 is registered.\n[    3.104281] thermal thermal_zone25: failed to read out thermal zone (-19)\n[    3.106794] FG: fg_gen3_probe: battery SOC:78 voltage: 3994130uV temp: 330 id: 0KOhms\n[    3.107700] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.107860] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.108717] pri_i2s_gpio_init:enter.\n[    3.109058] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.110068] FG: fg_psy_get_property: unsupported property 4\n[    3.110326] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.110343] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    3.110358] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.110401] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.110413] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    3.110425] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.110448] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.110492] lct battery_capacity =78\n[    3.110721] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.110742] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    3.110755] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.110938] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.110951] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    3.110972] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.113050] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.113065] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.113078] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    3.114100] FG: fg_get_time_to_full_locked: battery profile is not loaded\n[    3.115621] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.116128] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.116132] mdss_dp_probe: Error usbpd setup!\n[    3.117355] Registered cp15_barrier emulation handler\n[    3.117369] Registered setend emulation handler\n[    3.117421] core_ctl: Creating CPU group 0\n[    3.117425] core_ctl: Init CPU0 state\n[    3.117428] core_ctl: Init CPU1 state\n[    3.117431] core_ctl: Init CPU2 state\n[    3.117434] core_ctl: Init CPU3 state\n[    3.117589] core_ctl: Creating CPU group 4\n[    3.117592] core_ctl: Init CPU4 state\n[    3.117596] core_ctl: Init CPU5 state\n[    3.117598] core_ctl: Init CPU6 state\n[    3.117601] core_ctl: Init CPU7 state\n[    3.118173] registered taskstats version 1\n[    3.118200] Loading compiled-in X.509 certificates\n[    3.120316] Loaded X.509 cert 'Build time autogenerated kernel key: 5c5d37c99dea62c2ac8689393b2ff08eadc18711'\n[    3.121135] Loaded X.509 cert 'Android: 7e4333f9bba00adfe0ede979e28ed1920492b40f'\n[    3.124897] Key type encrypted registered\n[    3.126999] spss_utils [spss_init]: spss-utils driver Ver 1.2 13-Jan-2017.\n[    3.129006] scm_call failed: func id 0x42001601, ret: -2, syscall returns: 0x0, 0x0, 0x0\n[    3.129482] fastrpc soc:qcom,msm-adsprpc-mem: for adsp_rh segments only will be dumped.\n[    3.129635] ADSPRPC: gcinfo[0].heap_vmid 33\n[    3.129898] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 19\n[    3.130994] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 20\n[    3.131703] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 21\n[    3.132355] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 22\n[    3.134386] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.134584] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.135768] pri_i2s_gpio_init:enter.\n[    3.136249] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.145262] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.146011] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.146015] mdss_dp_probe: Error usbpd setup!\n[    3.147500] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.147808] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.148153] RNDIS_IPA module is loaded.\n[    3.149346] pri_i2s_gpio_init:enter.\n[    3.150258] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.150968] input: gpio-keys as /devices/soc/soc:gpio_keys/input/input5\n[    3.152953] qcom,qpnp-rtc 800f000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: setting system clock to 1972-08-24 05:09:07 UTC (83480947)\n[    3.157141] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.158097] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.158100] mdss_dp_probe: Error usbpd setup!\n[    3.158754] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.158994] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.159013] msm-core initialized without polling period\n[    3.160096] pri_i2s_gpio_init:enter.\n[    3.160445] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.166013] smb1351_parallel_charger_probe: smb1351 parallel successfully probed.\n[    3.167227] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.167674] lct battery_capacity =78\n[    3.167863] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.167866] mdss_dp_probe: Error usbpd setup!\n[    3.168511] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.168729] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.169602] pri_i2s_gpio_init:enter.\n[    3.169962] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.170147] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.170175] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.170190] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    3.170204] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.171426] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.171440] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.171453] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    3.175556] lmh_lite:lmh_parse_sensor Registering sensor:[GLM_soc]\n[    3.175798] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_cp1-]\n[    3.175961] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_cp0-]\n[    3.176252] soc:qcom,lmh supply vdd-apss not found, using dummy regulator\n[    3.176310] lmh_lite:lmh_get_sensor_devicetree Error getting ODCM thresh. err:-22\n[    3.176967] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.177671] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.177674] mdss_dp_probe: Error usbpd setup!\n[    3.178353] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.178503] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.179521] calculate_residency: residency < 0 for LPM\n[    3.179525] parse_cpu_levels: idx 1 172\n[    3.179529] parse_cpu_levels: idx 2 1181\n[    3.179532] parse_cpu_levels: idx 2 2009\n[    3.179555] calculate_residency: residency < 0 for LPM\n[    3.179693] pri_i2s_gpio_init:enter.\n[    3.179815] parse_cpu_levels: idx 1 191\n[    3.179818] parse_cpu_levels: idx 2 1109\n[    3.179821] parse_cpu_levels: idx 2 2410\n[    3.179847] calculate_residency: residency < 0 for LPM\n[    3.180093] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.186817] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.187577] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.187580] mdss_dp_probe: Error usbpd setup!\n[    3.188548] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.188813] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.189628] pri_i2s_gpio_init:enter.\n[    3.190057] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.193121] ipa-wan ipa_wwan_init:3286 Registering for q6_cleanup_cb\n[    3.193135] ipa register_ipa_platform_cb:2210 In register_ipa_platform_cb\n[    3.193140] ipa register_ipa_platform_cb:2213 reg q6_cleanup_cb\n[    3.196087] rmnet_ipa started initialization\n[    3.196126] IPA SSR support = True\n[    3.196164] IPA ipa-loaduC = True\n[    3.196203] IPA SG support = True\n[    3.196243] IPA Napi Enable = False\n[    3.196282] using default for wan-rx-desc-size = 1024\n[    3.196755] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.197301] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.197304] mdss_dp_probe: Error usbpd setup!\n[    3.197751] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.197867] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.198593] pri_i2s_gpio_init:enter.\n[    3.198861] ipa ipa_sps_irq_control_all:963 EP (5) not allocated.\n[    3.198868] ipa ipa2_uc_state_check:301 uC is not loaded\n[    3.198921] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.199786] rmnet_ipa completed initialization\n[    3.201844] msm-dwc3 a800000.ssusb: DWC3 exited from low power mode\n[    3.202190] msm-dwc3 a800000.ssusb: DWC3 in low power mode\n[    3.205631] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.206329] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.206332] mdss_dp_probe: Error usbpd setup!\n[    3.207037] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.207162] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.207862] pri_i2s_gpio_init:enter.\n[    3.208188] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.214626] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.222601] gfx_mem_acc_corner: disabling\n[    3.222616] apc0_pwrcl_corner: disabling\n[    3.222621] apc1_perfcl_corner: disabling\n[    3.222626] cam_avdd_gpio_regulator: disabling\n[    3.222630] cam_rear_avdd_gpio_regulator: disabling\n[    3.222636] cam_rear_dvdd_gpio_regulator: disabling\n[    3.222647] gdsc_ufs: disabling\n[    3.222670] gdsc_venus: disabling\n[    3.222716] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    3.224918] ALSA device list:\n[    3.224922]   No soundcards found.\n[    3.225047] Warning: unable to open an initial console.\n[    3.227219] Freeing unused kernel memory: 8192K\n[    3.490443] of_batterydata_get_best_profile: l6650sun_4000mah_averaged_masterslave_sept27th2017 found\n[    3.494758] FG: is_profile_load_required: Profiles doesn't match, skipping loading it since force_load_profile is disabled\n[    3.751160] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    3.751169] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    3.790141] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    3.790152] PMI: smblib_icl_change_work: icl_settled=0\n[    3.790196] PMI: smblib_get_charge_param: float voltage = 4395000 (0x79)\n[    3.790212] PMI: smblib_get_charge_param: fast charge current = 2500000 (0x64)\n[    3.790229] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    4.403705] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: cpu1 cpu4 \n               Offline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 \n[    4.520291] IRQ5 no longer affine to CPU6\n[    4.522648] cpu7 \n[    4.540142] IRQ5 no longer affine to CPU7\n[    4.543523] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    4.543551] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    4.543573] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n\n[    4.925346] sps: BAM device 0x000000000c144000 is not registered yet.\n[    4.925643] sps:BAM 0x000000000c144000 is registered.\n[    4.926002] sps:BAM 0x000000000c144000 (va:0xffffff800b520000) enabled: ver:0x19, number of pipes:12\n[    4.933973] lockdown info =46,36,31,01,e7,53,31,00\n[    4.948862] lct_ctp_selftest_int\n[    4.952208] synaptics_dsx_i2c 1-0020: udg_reg_init: User defined gesture support unavailable (missing data registers)\n[    4.952224] synaptics_dsx_i2c 1-0020: udg_scan_pdt: Failed to initialize user defined gesture registers\n[    5.801313] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    9.552391] Sampling power every 1000 ms\n               Baseline power usage: \n[   34.501281] synaptics_dsx_i2c 1-0020: fwu_startup_fw_update_work: Timed out waiting for FB ready\n[   63.041405] tas2557 6-004c: tas2557_fw_ready:\n[   63.041425] tas2557 6-004c: tas2557_uCDSP.bin firmware is not loaded.\n[   84.663258] CPU1: update cpu_capacity 1024\n[   84.663352] CPU1: Booted secondary processor [51af8014]\n[   85.670254] 1393 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 633 902 1113 1401 1536 1612\n               \n                633:  2058     3.2 C/MHz     51 mW    6.2 J   40.1 I/mJ   121.5 s\n                902:  2918     3.2 C/MHz     74 mW    6.3 J   39.4 I/mJ    85.7 s\n               1113: \n[  363.616168] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  363.616191] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[  363.616207] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[  363.616270] lct battery_capacity =77\n[  363.616309] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  363.616325] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[  363.616339] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[  363.616365] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[  363.616432] lct battery_capacity =77\n[  363.617050] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[  363.617154] FG: fg_delta_msoc_irq_handler: lct battery SOC:77 voltage:3972401uV current:372558uA temp:330 id:67K charge_status:2 charge_type:1 health:0 input_present:0 temp_qt:34 \n[  363.617202] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  363.617217] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[  363.617232] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[  363.617257] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  363.617272] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[  363.617286] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[  363.618315] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  363.618332] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  363.618347] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[  388.583095]  3609     3.2 C/MHz     88 mW    6.1 J   40.8 I/mJ    69.3 s\n               1401:  4552     3.2 C/MHz    148 mW    8.1 J   30.7 I/mJ    54.9 s\n               1536:  4988     3.2 C/MHz    162 mW    8.1 J   30.8 I/mJ    50.1 s\n               1612: \n[  567.207988] CPU4: update cpu_capacity 1024\n[  567.208083] CPU4: Booted secondary processor [51af8002]\n[  568.215700]  5237     3.2 C/MHz    182 mW    8.7 J   28.8 I/mJ    47.7 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 1113 1401 1747 1804\n               \n               1113: \n[  591.184510] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  591.184532] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[  591.184546] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[  591.184605] lct battery_capacity =76\n[  591.184638] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  591.184651] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[  591.184663] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[  591.184687] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[  591.184748] lct battery_capacity =76\n[  591.185241] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[  591.185267] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  591.185357] FG: fg_delta_msoc_irq_handler: lct battery SOC:76 voltage:3955068uV current:420409uA temp:340 id:67K charge_status:2 charge_type:1 health:0 input_present:0 temp_qt:35 \n[  591.185370] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[  591.185382] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[  591.185405] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  591.185417] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[  591.185429] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[  591.186412] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  591.186426] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  591.186439] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[  618.454623]  5992     5.4 C/MHz    292 mW   12.2 J   20.5 I/mJ    41.7 s\n               1401:  7545     5.4 C/MHz    368 mW   12.2 J   20.5 I/mJ    33.1 s\n               1747:  9407     5.4 C/MHz    562 mW   14.9 J   16.7 I/mJ    26.6 s\n               1804:  9717     5.4 C/MHz    559 mW   14.4 J   17.4 I/mJ    25.7 s\n               \n               \n               Benchmark finished!\n[  730.146223] \n               real\t12m6.787s\n               user\t9m18.038s\n               sys\t0m0.258s\n"
  },
  {
    "path": "results/sdm636/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  3:       4775     GICv3  19 Edge      arch_timer\n  5:      72972     GICv3  39 Level     arch_mem_timer\n  6:          0     GICv3 483 Edge      smp2p\n  7:          0     GICv3 190 Edge      smp2p\n  8:          0     GICv3 546 Edge      smp2p\n 10:          1     GICv3 270 Level     sps\n 11:          0     GICv3 271 Level     sps\n 13:          0  pmic_arb 8388612 Edge      qpnp_kpdpwr_status\n 14:          0  pmic_arb 8454148 Edge      qpnp_resin_status\n 17:          0  pmic_arb 574619709 Edge      pm660l_tz\n 18:          0  pmic_arb 1026752561 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 19:          0  pmic_arb 37748755 Edge      pm660_tz\n 20:          0  pmic_arb 1052835884 Edge      qpnp_lcdb_sc_irq\n 22:         10  pmic_arb 51380246 Edge      qpnp_vadc_interrupt\n 24:          0  pmic_arb 54525976 Edge      qpnp_adc_tm_interrupt\n 29:          0     GICv3  35 Edge      apps_wdog_bark\n 31:          0     GICv3 216 Level     tsens_interrupt\n 32:          0  pmic_arb 69206048 Edge      bcl_ibat_interrupt\n 33:          0  pmic_arb 69337120 Edge      bcl_vbat_interrupt\n 34:          1  pmic_arb 1031864372 Edge      qpnp_wled_ovp_irq\n 35:          0  pmic_arb 1026555953 Edge      qpnp_flash_led_fault_irq\n 36:          0  pmic_arb 1026818097 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 37:          0     GICv3 462 Level     tsens_critical_interrupt\n 41:          0     GICv3 166 Level     lmh-interrupt\n 44:          0     GICv3 323 Level     ngd_slim_irq\n 51:          0     GICv3  67 Edge      OSM IRQ\n 52:          0     GICv3  68 Edge      OSM IRQ\n 53:         78     GICv3 142 Edge      mmc0\n 54:          4     GICv3 144 Edge      c0c4000.sdhci\n 57:         81     GICv3 157 Edge      mmc1\n 60:          3     GICv3 253 Edge      c084000.sdhci\n 61:          0     GICv3 365 Edge      ipa\n 62:         18     GICv3 464 Level     sps\n 63:          0  pmic_arb 469762111 Edge      qpnp_hap_sc\n 64:          0  pmic_arb 469827647 Edge      qpnp_hap_play\n 65:          0     GICv3 484 Edge      qcom,glink-smem-native-xprt-modem\n 66:          0     GICv3 189 Edge      qcom,glink-smem-native-xprt-adsp\n 67:          0     GICv3 545 Edge      qcom,glink-smem-native-xprt-cdsp\n 68:        299     GICv3 200 Edge      qcom,glink-smem-native-xprt-rpm\n 81:          0     GICv3 194 Edge      adsp\n 82:          0     GICv3 480 Edge      modem\n 85:          0     GICv3 238 Level     sps\n 87:          0     GICv3 224 Edge      spdm_bw_hyp\n 88:          0     GICv3 317 Edge      cpr3\n 89:          0     GICv3 332 Level     kgsl-3d0\n 90:          0     GICv3 203 Edge      7781b8.qcom,mpm\n 91:          0     GICv3 261 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n 92:          0     GICv3 263 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n 93:          0     GICv3 405 Level     arm-smmu-context-fault\n 94:          0     GICv3 406 Edge      arm-smmu-context-fault\n 95:          0     GICv3 407 Edge      arm-smmu-context-fault\n122:          0     GICv3 258 Level     arm-smmu-context-fault\n123:          0     GICv3 425 Level     arm-smmu-context-fault\n124:          0     GICv3 426 Level     arm-smmu-context-fault\n125:          0     GICv3 427 Level     arm-smmu-context-fault\n126:          0     GICv3 428 Level     arm-smmu-context-fault\n140:          0     GICv3 298 Level     arm-smmu-context-fault\n141:          0     GICv3 299 Level     arm-smmu-context-fault\n142:          0     GICv3 300 Level     arm-smmu-context-fault\n143:          0     GICv3 276 Level     arm-smmu-context-fault\n171:          0     GICv3 379 Edge      hs_phy_irq\n172:          0     GICv3 275 Level     ss_phy_irq\n173:          0     GICv3 212 Edge      msm_dwc3\n229:          0   msmgpio  54 Edge      c084000.sdhci cd\n239:          0   msmgpio  64 Edge      camera_focus\n242:          1   msmgpio  67 Level     synaptics_dsx\n247:          2   msmgpio  72 Edge      soc:fpc1020\n248:          0   msmgpio  73 Level     tas2557\n249:          0   msmgpio  74 Edge      ant-switch-irq\n250:          0   msmgpio  75 Edge      hall-switch-irq\n288:          0   msmgpio 113 Edge      camera_snapshot\n289:        233     GICv3 127 Level     i2c-msm-v2-irq\n290:          0     GICv3 128 Level     i2c-msm-v2-irq\n291:          6     GICv3 134 Level     i2c-msm-v2-irq\n292:          0     GICv3 135 Level     c1b7000.spi\n294:          0     GICv3 110 Edge      csiphy\n295:          0     GICv3 111 Edge      csiphy\n296:          0     GICv3 112 Edge      csiphy\n297:          0     GICv3 328 Edge      csid\n298:          0     GICv3 329 Edge      csid\n299:          0     GICv3 330 Edge      csid\n300:          0     GICv3 331 Edge      csid\n302:          0     GICv3 341 Edge      ispif\n303:          0     GICv3 346 Edge      vfe\n304:          0     GICv3 347 Edge      vfe\n305:        140     GICv3 327 Edge      cci\n308:          0     GICv3 319 Level     msm_vidc\n310:          0     GICv3 115 Edge      MDSS\n311:          0     GICv3  69 Level     limits_sensor-00\n312:          0     GICv3  70 Level     limits_sensor-01\n441:          0  pmic_arb 101777459 Edge      qpnp_rtc_alarm\n442:          0      mdss   2 Edge      sde_rotator_r3\n443:          0  pmic_arb 16777223 Edge      chg-error\n444:          0  pmic_arb 16842759 Edge      chg-state-change\n448:          0  pmic_arb 17825800 Edge      otg-fail\n449:          0  pmic_arb 17891336 Edge      otg-overcurrent\n450:          0  pmic_arb 17956872 Edge      otg-oc-dis-sw-sts\n451:          0  pmic_arb 18022408 Edge      testmode-change-detect\n452:          0  pmic_arb 18874377 Edge      bat-temp\n453:          0  pmic_arb 18939913 Edge      bat-ocp\n454:          0  pmic_arb 19005449 Edge      bat-ov\n455:          0  pmic_arb 19070985 Edge      bat-low\n456:          0  pmic_arb 19136521 Edge      bat-therm-or-id-missing\n457:          0  pmic_arb 19202057 Edge      bat-terminal-missing\n458:          0  pmic_arb 19922954 Edge      usbin-collapse\n459:          0  pmic_arb 19988490 Edge      usbin-lt-3p6v\n460:          0  pmic_arb 20054026 Edge      usbin-uv\n461:          0  pmic_arb 20119562 Edge      usbin-ov\n462:          0  pmic_arb 20185098 Edge      usbin-plugin\n463:          0  pmic_arb 20250634 Edge      usbin-src-change\n464:          0  pmic_arb 20316170 Edge      usbin-icl-change\n465:          0  pmic_arb 20381706 Edge      type-c-change\n466:          0  pmic_arb 20971531 Edge      dcin-collapse\n467:          0  pmic_arb 21037067 Edge      dcin-lt-3p6v\n468:          0  pmic_arb 21102603 Edge      dcin-uv\n469:          0  pmic_arb 21168139 Edge      dcin-ov\n470:          0  pmic_arb 21233675 Edge      dcin-plugin\n471:          0  pmic_arb 21299211 Edge      div2-en-dg\n472:          0  pmic_arb 21364747 Edge      dcin-icl-change\n474:          0  pmic_arb 23134221 Edge      wdog-bark\n475:          0  pmic_arb 23199757 Edge      aicl-fail\n476:          0  pmic_arb 23265293 Edge      aicl-done\n477:          0  pmic_arb 23330829 Edge      high-duty-cycle\n478:          0  pmic_arb 23396365 Edge      input-current-limiting\n479:          0  pmic_arb 23461901 Edge      temperature-change\n480:          0  pmic_arb 23527437 Edge      switcher-power-ok\n481:          0  smp2p_gpio   0 Edge      modem\n482:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n483:          0  smp2p_gpio   2 Edge      modem\n484:          0  smp2p_gpio   3 Edge      modem\n513:          0  smp2p_gpio   0 Edge      adsp\n514:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n515:          0  smp2p_gpio   2 Edge      adsp\n516:          0  smp2p_gpio   3 Edge      adsp\n673:          0     GICv3 163 Edge      dwc3\n675:          0  pmic_arb 67108894 Edge      soc-update\n676:          0  pmic_arb 67174430 Edge      soc-ready\n677:          0  pmic_arb 67239966 Edge      bsoc-delta\n678:          2  pmic_arb 67305502 Edge      msoc-delta\n679:          0  pmic_arb 67371038 Edge      msoc-low\n680:          0  pmic_arb 67436574 Edge      msoc-empty\n681:          0  pmic_arb 67502110 Edge      msoc-high\n682:          0  pmic_arb 67567646 Edge      msoc-full\n683:          0  pmic_arb 68157471 Edge      vbatt-pred-delta\n684:          0  pmic_arb 68223007 Edge      vbatt-low\n685:          0  pmic_arb 68288543 Edge      esr-delta\n686:          0  pmic_arb 68354079 Edge      batt-missing\n687:          0  pmic_arb 68550687 Edge      batt-temp-delta\n688:        160  pmic_arb 71303202 Edge      ima-rdy\n689:          0  pmic_arb 71368738 Edge      mem-xcp\n690:          0  pmic_arb 71434274 Edge      dma-grant\n691:          0  pmic_arb 744489127 Edge      volume_up\nIPI0:      1104       Rescheduling interrupts\nIPI1:         8       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:        19       Timer broadcast interrupts\nIPI4:         0       IRQ work interrupts\nIPI5:         0       CPU wakeup interrupts\nIPI6:         0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm636/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  3:        554      16793         76         30         86         35         27         31     GICv3  19 Edge      arch_timer\n  5:          0          0          0          0          0          0          0          0     GICv3  39 Level     arch_mem_timer\n  6:          0          0          0          0          0          0          0          0     GICv3 483 Edge      smp2p\n  7:          0          0          0          0          0          0          0          0     GICv3 190 Edge      smp2p\n  8:          0          0          0          0          0          0          0          0     GICv3 546 Edge      smp2p\n 11:          0          0          0          0          0          0          0          0     GICv3 271 Level     sps\n 13:          0          0          0          0          0          0          0          0  pmic_arb 8388612 Edge      qpnp_kpdpwr_status\n 14:          0          0          0          0          0          0          0          0  pmic_arb 8454148 Edge      qpnp_resin_status\n 17:          0          0          0          0          0          0          0          0  pmic_arb 574619709 Edge      pm660l_tz\n 18:          0          0          0          0          0          0          0          0  pmic_arb 1026752561 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 19:          0          0          0          0          0          0          0          0  pmic_arb 37748755 Edge      pm660_tz\n 20:          0          0          0          0          0          0          0          0  pmic_arb 1052835884 Edge      qpnp_lcdb_sc_irq\n 22:          8          0          0          0          0          0          0          0  pmic_arb 51380246 Edge      qpnp_vadc_interrupt\n 24:          0          0          0          0          0          0          0          0  pmic_arb 54525976 Edge      qpnp_adc_tm_interrupt\n 29:          0          0          0          0          0          0          0          0     GICv3  35 Edge      apps_wdog_bark\n 31:          0          0          0          0          0          0          0          0     GICv3 216 Level     tsens_interrupt\n 32:          0          0          0          0          0          0          0          0  pmic_arb 69206048 Edge      bcl_ibat_interrupt\n 33:          0          0          0          0          0          0          0          0  pmic_arb 69337120 Edge      bcl_vbat_interrupt\n 34:          1          0          0          0          0          0          0          0  pmic_arb 1031864372 Edge      qpnp_wled_ovp_irq\n 35:          0          0          0          0          0          0          0          0  pmic_arb 1026555953 Edge      qpnp_flash_led_fault_irq\n 36:          0          0          0          0          0          0          0          0  pmic_arb 1026818097 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 37:          0          0          0          0          0          0          0          0     GICv3 462 Level     tsens_critical_interrupt\n 41:          0          0          0          0          0          0          0          0     GICv3 166 Level     lmh-interrupt\n 44:          0          0          0          0          0          0          0          0     GICv3 323 Level     ngd_slim_irq\n 51:          0          0          0          0          0          0          0          0     GICv3  67 Edge      OSM IRQ\n 52:          0          0          0          0          0          0          0          0     GICv3  68 Edge      OSM IRQ\n 53:         67          0          0          0          0          0          0          0     GICv3 142 Edge      mmc0\n 54:          3          0          0          0          0          0          0          0     GICv3 144 Edge      c0c4000.sdhci\n 57:         80          0          0          0          0          0          0          0     GICv3 157 Edge      mmc1\n 60:          2          0          0          0          0          0          0          0     GICv3 253 Edge      c084000.sdhci\n 61:          0          0          0          0          0          0          0          0     GICv3 365 Edge      ipa\n 62:         18          0          0          0          0          0          0          0     GICv3 464 Level     sps\n 63:          0          0          0          0          0          0          0          0  pmic_arb 469762111 Edge      qpnp_hap_sc\n 64:          0          0          0          0          0          0          0          0  pmic_arb 469827647 Edge      qpnp_hap_play\n 65:          0          0          0          0          0          0          0          0     GICv3 484 Edge      qcom,glink-smem-native-xprt-modem\n 66:          0          0          0          0          0          0          0          0     GICv3 189 Edge      qcom,glink-smem-native-xprt-adsp\n 67:          0          0          0          0          0          0          0          0     GICv3 545 Edge      qcom,glink-smem-native-xprt-cdsp\n 68:        245          0          0          0          0          0          0          0     GICv3 200 Edge      qcom,glink-smem-native-xprt-rpm\n 81:          0          0          0          0          0          0          0          0     GICv3 194 Edge      adsp\n 82:          0          0          0          0          0          0          0          0     GICv3 480 Edge      modem\n 85:          0          0          0          0          0          0          0          0     GICv3 238 Level     sps\n 87:          0          0          0          0          0          0          0          0     GICv3 224 Edge      spdm_bw_hyp\n 88:          0          0          0          0          0          0          0          0     GICv3 317 Edge      cpr3\n 89:          0          0          0          0          0          0          0          0     GICv3 332 Level     kgsl-3d0\n 90:          0          0          0          0          0          0          0          0     GICv3 203 Edge      7781b8.qcom,mpm\n 91:          0          0          0          0          0          0          0          0     GICv3 261 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n 92:          0          0          0          0          0          0          0          0     GICv3 263 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n 93:          0          0          0          0          0          0          0          0     GICv3 405 Level     arm-smmu-context-fault\n 94:          0          0          0          0          0          0          0          0     GICv3 406 Edge      arm-smmu-context-fault\n 95:          0          0          0          0          0          0          0          0     GICv3 407 Edge      arm-smmu-context-fault\n122:          0          0          0          0          0          0          0          0     GICv3 258 Level     arm-smmu-context-fault\n123:          0          0          0          0          0          0          0          0     GICv3 425 Level     arm-smmu-context-fault\n124:          0          0          0          0          0          0          0          0     GICv3 426 Level     arm-smmu-context-fault\n125:          0          0          0          0          0          0          0          0     GICv3 427 Level     arm-smmu-context-fault\n126:          0          0          0          0          0          0          0          0     GICv3 428 Level     arm-smmu-context-fault\n140:          0          0          0          0          0          0          0          0     GICv3 298 Level     arm-smmu-context-fault\n141:          0          0          0          0          0          0          0          0     GICv3 299 Level     arm-smmu-context-fault\n142:          0          0          0          0          0          0          0          0     GICv3 300 Level     arm-smmu-context-fault\n143:          0          0          0          0          0          0          0          0     GICv3 276 Level     arm-smmu-context-fault\n171:          0          0          0          0          0          0          0          0     GICv3 379 Edge      hs_phy_irq\n172:          0          0          0          0          0          0          0          0     GICv3 275 Level     ss_phy_irq\n173:          0          0          0          0          0          0          0          0     GICv3 212 Edge      msm_dwc3\n229:          0          0          0          0          0          0          0          0   msmgpio  54 Edge      c084000.sdhci cd\n239:          0          0          0          0          0          0          0          0   msmgpio  64 Edge      camera_focus\n242:          1          0          0          0          0          0          0          0   msmgpio  67 Level     synaptics_dsx\n247:          2          0          0          0          0          0          0          0   msmgpio  72 Edge      soc:fpc1020\n248:          0          0          0          0          0          0          0          0   msmgpio  73 Level     tas2557\n249:          0          0          0          0          0          0          0          0   msmgpio  74 Edge      ant-switch-irq\n250:          0          0          0          0          0          0          0          0   msmgpio  75 Edge      hall-switch-irq\n288:          0          0          0          0          0          0          0          0   msmgpio 113 Edge      camera_snapshot\n289:        110          0          0          0          0          0          0          0     GICv3 127 Level     i2c-msm-v2-irq\n290:          0          0          0          0          0          0          0          0     GICv3 128 Level     i2c-msm-v2-irq\n291:          6          0          0          0          0          0          0          0     GICv3 134 Level     i2c-msm-v2-irq\n292:          0          0          0          0          0          0          0          0     GICv3 135 Level     c1b7000.spi\n294:          0          0          0          0          0          0          0          0     GICv3 110 Edge      csiphy\n295:          0          0          0          0          0          0          0          0     GICv3 111 Edge      csiphy\n296:          0          0          0          0          0          0          0          0     GICv3 112 Edge      csiphy\n297:          0          0          0          0          0          0          0          0     GICv3 328 Edge      csid\n298:          0          0          0          0          0          0          0          0     GICv3 329 Edge      csid\n299:          0          0          0          0          0          0          0          0     GICv3 330 Edge      csid\n300:          0          0          0          0          0          0          0          0     GICv3 331 Edge      csid\n302:          0          0          0          0          0          0          0          0     GICv3 341 Edge      ispif\n303:          0          0          0          0          0          0          0          0     GICv3 346 Edge      vfe\n304:          0          0          0          0          0          0          0          0     GICv3 347 Edge      vfe\n305:        140          0          0          0          0          0          0          0     GICv3 327 Edge      cci\n308:          0          0          0          0          0          0          0          0     GICv3 319 Level     msm_vidc\n310:          0          0          0          0          0          0          0          0     GICv3 115 Edge      MDSS\n311:          0          0          0          0          0          0          0          0     GICv3  69 Level     limits_sensor-00\n312:          0          0          0          0          0          0          0          0     GICv3  70 Level     limits_sensor-01\n441:          0          0          0          0          0          0          0          0  pmic_arb 101777459 Edge      qpnp_rtc_alarm\n442:          0          0          0          0          0          0          0          0      mdss   2 Edge      sde_rotator_r3\n443:          0          0          0          0          0          0          0          0  pmic_arb 16777223 Edge      chg-error\n444:          0          0          0          0          0          0          0          0  pmic_arb 16842759 Edge      chg-state-change\n448:          0          0          0          0          0          0          0          0  pmic_arb 17825800 Edge      otg-fail\n449:          0          0          0          0          0          0          0          0  pmic_arb 17891336 Edge      otg-overcurrent\n450:          0          0          0          0          0          0          0          0  pmic_arb 17956872 Edge      otg-oc-dis-sw-sts\n451:          0          0          0          0          0          0          0          0  pmic_arb 18022408 Edge      testmode-change-detect\n452:          0          0          0          0          0          0          0          0  pmic_arb 18874377 Edge      bat-temp\n453:          0          0          0          0          0          0          0          0  pmic_arb 18939913 Edge      bat-ocp\n454:          0          0          0          0          0          0          0          0  pmic_arb 19005449 Edge      bat-ov\n455:          0          0          0          0          0          0          0          0  pmic_arb 19070985 Edge      bat-low\n456:          0          0          0          0          0          0          0          0  pmic_arb 19136521 Edge      bat-therm-or-id-missing\n457:          0          0          0          0          0          0          0          0  pmic_arb 19202057 Edge      bat-terminal-missing\n458:          0          0          0          0          0          0          0          0  pmic_arb 19922954 Edge      usbin-collapse\n459:          0          0          0          0          0          0          0          0  pmic_arb 19988490 Edge      usbin-lt-3p6v\n460:          0          0          0          0          0          0          0          0  pmic_arb 20054026 Edge      usbin-uv\n461:          0          0          0          0          0          0          0          0  pmic_arb 20119562 Edge      usbin-ov\n462:          0          0          0          0          0          0          0          0  pmic_arb 20185098 Edge      usbin-plugin\n463:          0          0          0          0          0          0          0          0  pmic_arb 20250634 Edge      usbin-src-change\n464:          0          0          0          0          0          0          0          0  pmic_arb 20316170 Edge      usbin-icl-change\n465:          0          0          0          0          0          0          0          0  pmic_arb 20381706 Edge      type-c-change\n466:          0          0          0          0          0          0          0          0  pmic_arb 20971531 Edge      dcin-collapse\n467:          0          0          0          0          0          0          0          0  pmic_arb 21037067 Edge      dcin-lt-3p6v\n468:          0          0          0          0          0          0          0          0  pmic_arb 21102603 Edge      dcin-uv\n469:          0          0          0          0          0          0          0          0  pmic_arb 21168139 Edge      dcin-ov\n470:          0          0          0          0          0          0          0          0  pmic_arb 21233675 Edge      dcin-plugin\n471:          0          0          0          0          0          0          0          0  pmic_arb 21299211 Edge      div2-en-dg\n472:          0          0          0          0          0          0          0          0  pmic_arb 21364747 Edge      dcin-icl-change\n474:          0          0          0          0          0          0          0          0  pmic_arb 23134221 Edge      wdog-bark\n475:          0          0          0          0          0          0          0          0  pmic_arb 23199757 Edge      aicl-fail\n476:          0          0          0          0          0          0          0          0  pmic_arb 23265293 Edge      aicl-done\n477:          0          0          0          0          0          0          0          0  pmic_arb 23330829 Edge      high-duty-cycle\n478:          0          0          0          0          0          0          0          0  pmic_arb 23396365 Edge      input-current-limiting\n479:          0          0          0          0          0          0          0          0  pmic_arb 23461901 Edge      temperature-change\n480:          0          0          0          0          0          0          0          0  pmic_arb 23527437 Edge      switcher-power-ok\n481:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      modem\n482:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n483:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      modem\n484:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      modem\n513:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      adsp\n514:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n515:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      adsp\n516:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      adsp\n673:          0          0          0          0          0          0          0          0     GICv3 163 Edge      dwc3\n675:          0          0          0          0          0          0          0          0  pmic_arb 67108894 Edge      soc-update\n676:          0          0          0          0          0          0          0          0  pmic_arb 67174430 Edge      soc-ready\n677:          0          0          0          0          0          0          0          0  pmic_arb 67239966 Edge      bsoc-delta\n678:          0          0          0          0          0          0          0          0  pmic_arb 67305502 Edge      msoc-delta\n679:          0          0          0          0          0          0          0          0  pmic_arb 67371038 Edge      msoc-low\n680:          0          0          0          0          0          0          0          0  pmic_arb 67436574 Edge      msoc-empty\n681:          0          0          0          0          0          0          0          0  pmic_arb 67502110 Edge      msoc-high\n682:          0          0          0          0          0          0          0          0  pmic_arb 67567646 Edge      msoc-full\n683:          0          0          0          0          0          0          0          0  pmic_arb 68157471 Edge      vbatt-pred-delta\n684:          0          0          0          0          0          0          0          0  pmic_arb 68223007 Edge      vbatt-low\n685:          0          0          0          0          0          0          0          0  pmic_arb 68288543 Edge      esr-delta\n686:          0          0          0          0          0          0          0          0  pmic_arb 68354079 Edge      batt-missing\n687:          0          0          0          0          0          0          0          0  pmic_arb 68550687 Edge      batt-temp-delta\n688:         57          0          0          0          0          0          0          0  pmic_arb 71303202 Edge      ima-rdy\n689:          0          0          0          0          0          0          0          0  pmic_arb 71368738 Edge      mem-xcp\n690:          0          0          0          0          0          0          0          0  pmic_arb 71434274 Edge      dma-grant\n691:          0          0          0          0          0          0          0          0  pmic_arb 744489127 Edge      volume_up\nIPI0:       971       1708        465         80        147        123         76        148       Rescheduling interrupts\nIPI1:         8        942         56         14         21         17         12         13       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI4:         0          2          0          0          0          0          0          0       IRQ work interrupts\nIPI5:         0          0          0          0          0          0          0          0       CPU wakeup interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm636/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [ksoftirqd/0]\n    4 root      0:00 [kworker/0:0]\n    5 root      0:00 [kworker/0:0H]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [migration/1]\n   15 root      0:00 [ksoftirqd/1]\n   16 root      0:00 [kworker/1:0]\n   17 root      0:00 [kworker/1:0H]\n   18 root      0:00 [rcuop/1]\n   19 root      0:00 [rcuos/1]\n   20 root      0:00 [rcuob/1]\n   21 root      0:00 [migration/2]\n   22 root      0:00 [ksoftirqd/2]\n   23 root      0:00 [kworker/2:0]\n   24 root      0:00 [kworker/2:0H]\n   25 root      0:00 [rcuop/2]\n   26 root      0:00 [rcuos/2]\n   27 root      0:00 [rcuob/2]\n   28 root      0:00 [migration/3]\n   29 root      0:00 [ksoftirqd/3]\n   30 root      0:00 [kworker/3:0]\n   31 root      0:00 [kworker/3:0H]\n   32 root      0:00 [rcuop/3]\n   33 root      0:00 [rcuos/3]\n   34 root      0:00 [rcuob/3]\n   35 root      0:00 [migration/4]\n   36 root      0:00 [ksoftirqd/4]\n   37 root      0:00 [kworker/4:0]\n   38 root      0:00 [kworker/4:0H]\n   39 root      0:00 [rcuop/4]\n   40 root      0:00 [rcuos/4]\n   41 root      0:00 [rcuob/4]\n   42 root      0:00 [migration/5]\n   43 root      0:00 [ksoftirqd/5]\n   44 root      0:00 [kworker/5:0]\n   45 root      0:00 [kworker/5:0H]\n   46 root      0:00 [rcuop/5]\n   47 root      0:00 [rcuos/5]\n   48 root      0:00 [rcuob/5]\n   49 root      0:00 [migration/6]\n   50 root      0:00 [ksoftirqd/6]\n   51 root      0:00 [kworker/6:0]\n   52 root      0:00 [kworker/6:0H]\n   53 root      0:00 [rcuop/6]\n   54 root      0:00 [rcuos/6]\n   55 root      0:00 [rcuob/6]\n   56 root      0:00 [migration/7]\n   57 root      0:00 [ksoftirqd/7]\n   58 root      0:00 [kworker/7:0]\n   59 root      0:00 [kworker/7:0H]\n   60 root      0:00 [rcuop/7]\n   61 root      0:00 [rcuos/7]\n   62 root      0:00 [rcuob/7]\n   63 root      0:00 [kdevtmpfs]\n   64 root      0:00 [netns]\n   65 root      0:00 [perf]\n   66 root      0:00 [smd_channel_clo]\n   67 root      0:00 [dsps_smd_trans_]\n   68 root      0:00 [lpass_smd_trans]\n   69 root      0:00 [mpss_smd_trans_]\n   70 root      0:00 [wcnss_smd_trans]\n   71 root      0:00 [rpm_smd_trans_g]\n   72 root      0:00 [ipa_usb_wq]\n   73 root      0:00 [msm_watchdog]\n   74 root      0:00 [smem_native_mps]\n   75 root      0:00 [mpss_smem_glink]\n   76 root      0:00 [smem_native_lpa]\n   77 root      0:00 [lpass_smem_glin]\n   78 root      0:00 [smem_native_cds]\n   79 root      0:00 [cdsp_smem_glink]\n   80 root      0:00 [smem_native_rpm]\n   81 root      0:00 [rpm_smem_glink_]\n   82 root      0:00 [kworker/0:1]\n   83 root      0:00 [deferwq]\n   84 root      0:00 [kworker/u16:1]\n   85 root      0:00 [irq/88-cpr3]\n   86 root      0:00 [mpm]\n   87 root      0:02 [kworker/u16:2]\n   89 root      0:00 [writeback]\n   90 root      0:00 [kcompactd0]\n   91 root      0:00 [crypto]\n   92 root      0:00 [bioset]\n   93 root      0:00 [kblockd]\n   94 root      0:00 [md]\n   95 root      0:00 [system]\n   96 root      0:00 [irq/91-arm-smmu]\n   97 root      0:00 [irq/92-arm-smmu]\n   98 root      0:00 [irq/91-arm-smmu]\n   99 root      0:00 [irq/92-arm-smmu]\n  100 root      0:00 [irq/91-arm-smmu]\n  101 root      0:00 [irq/92-arm-smmu]\n  102 root      0:00 [irq/91-arm-smmu]\n  103 root      0:00 [irq/92-arm-smmu]\n  104 root      0:00 [devfreq_wq]\n  105 root      0:00 [governor_msm_ad]\n  106 root      0:00 [cfg80211]\n  107 root      0:00 [irq/20-qpnp_lcd]\n  108 root      0:00 [irq/93-arm-smmu]\n  109 root      0:00 [ipa_power_mgmt]\n  110 root      0:00 [sps_ipa_power_m]\n  111 root      0:00 [kworker/u17:0]\n  112 root      0:00 [ipawq15]\n  113 root      0:00 [iparepwq15]\n  114 root      0:00 [kworker/u17:1]\n  115 root      0:00 [ipawq48]\n  116 root      0:00 [iparepwq48]\n  117 root      0:00 [ipawq14]\n  118 root      0:00 [iparepwq14]\n  119 root      0:00 [ipa_rm_wq]\n  120 root      0:00 [ipa_interrupt_w]\n  121 root      0:00 [ipa_holb_wq]\n  122 root      0:00 [irq/94-arm-smmu]\n  123 root      0:00 [irq/33-bcl_vbat]\n  124 root      0:00 [irq/32-bcl_ibat]\n  150 root      0:00 [kswapd0]\n  151 root      0:00 [vmstat]\n  152 root      0:00 [fsnotify_mark]\n  153 root      0:00 [ecryptfs-kthrea]\n  154 root      0:00 [cifsiod]\n  187 root      0:00 [ad_calc_wq]\n  188 root      0:00 [mdss_dsi_event]\n  189 root      0:00 [mdss_dsi_dba]\n  190 root      0:00 [cwb_wq]\n  191 root      0:00 [cwb_wq]\n  193 root      0:00 [glink_ssr_wq]\n  194 root      0:00 [glink_lbsrv]\n  195 root      0:00 [glink_xprt_wq]\n  196 root      0:00 [IPCRTR_mpss_sme]\n  197 root      0:00 [IPCRTR_lpass_sm]\n  198 root      0:00 [IPCRTR_cdsp_sme]\n  199 root      0:00 [apr_driver]\n  200 root      0:00 [glink_pkt_wq]\n  201 root      0:00 [mem_share_svc]\n  202 root      0:00 [qmi_hndl0000000]\n  203 root      0:00 [msm_ipc_router]\n  204 root      0:00 [irq/64-qpnp_hap]\n  205 root      0:00 [irq/63-qpnp_hap]\n  206 root      0:00 [irq/95-arm-smmu]\n  207 root      0:00 [qmi_svc_event_w]\n  208 root      0:00 [servloc_wq]\n  209 root      0:00 [k_hsuart]\n  210 root      0:00 [msm_serial_hs_0]\n  211 root      0:00 [msm_serial_hs_0]\n  212 root      0:00 [hwrng]\n  214 root      0:00 [diag_real_time_]\n  215 root      0:00 [diag_wq]\n  216 root      0:00 [DIAG_USB_diag]\n  217 root      0:00 [diag_cntl_wq]\n  218 root      0:00 [diag_dci_wq]\n  219 root      0:00 [DIAG_SMD_MODEM_]\n  220 root      0:00 [DIAG_SMD_MODEM_]\n  221 root      0:00 [DIAG_SMD_MODEM_]\n  222 root      0:00 [DIAG_SMD_MODEM_]\n  223 root      0:00 [DIAG_SMD_MODEM_]\n  224 root      0:00 [DIAG_SMD_LPASS_]\n  225 root      0:00 [DIAG_SMD_LPASS_]\n  226 root      0:00 [DIAG_SMD_LPASS_]\n  227 root      0:00 [DIAG_SMD_LPASS_]\n  228 root      0:00 [DIAG_SMD_LPASS_]\n  229 root      0:00 [DIAG_SMD_WCNSS_]\n  230 root      0:00 [DIAG_SMD_WCNSS_]\n  231 root      0:00 [DIAG_SMD_WCNSS_]\n  232 root      0:00 [DIAG_SMD_WCNSS_]\n  233 root      0:00 [DIAG_SMD_WCNSS_]\n  234 root      0:00 [DIAG_SMD_SENSOR]\n  235 root      0:00 [DIAG_SMD_SENSOR]\n  236 root      0:00 [DIAG_SMD_SENSOR]\n  237 root      0:00 [DIAG_SMD_SENSOR]\n  238 root      0:00 [DIAG_SMD_SENSOR]\n  239 root      0:00 [DIAG_SMD_DIAG_C]\n  240 root      0:00 [DIAG_SMD_DIAG_D]\n  241 root      0:00 [DIAG_SMD_DIAG_C]\n  242 root      0:00 [DIAG_SMD_DIAG_D]\n  243 root      0:00 [DIAG_SMD_DIAG_D]\n  244 root      0:00 [DIAG_SMD_CDSP_C]\n  245 root      0:00 [DIAG_SMD_CDSP_D]\n  246 root      0:00 [DIAG_SMD_CDSP_C]\n  247 root      0:00 [DIAG_SMD_CDSP_D]\n  248 root      0:00 [DIAG_SMD_CDSP_D]\n  249 root      0:00 [DIAG_SOCKMODEM_]\n  250 root      0:00 [DIAG_SOCKMODEM_]\n  251 root      0:00 [DIAG_SOCKMODEM_]\n  252 root      0:00 [DIAG_SOCKMODEM_]\n  253 root      0:00 [DIAG_SOCKMODEM_]\n  254 root      0:00 [DIAG_SOCKLPASS_]\n  255 root      0:00 [DIAG_SOCKLPASS_]\n  256 root      0:00 [DIAG_SOCKLPASS_]\n  257 root      0:00 [DIAG_SOCKLPASS_]\n  258 root      0:00 [DIAG_SOCKLPASS_]\n  259 root      0:00 [DIAG_SOCKWCNSS_]\n  260 root      0:00 [DIAG_SOCKWCNSS_]\n  261 root      0:00 [DIAG_SOCKWCNSS_]\n  262 root      0:00 [DIAG_SOCKWCNSS_]\n  263 root      0:00 [DIAG_SOCKWCNSS_]\n  264 root      0:00 [DIAG_SOCKSENSOR]\n  265 root      0:00 [DIAG_SOCKSENSOR]\n  266 root      0:00 [DIAG_SOCKSENSOR]\n  267 root      0:00 [DIAG_SOCKSENSOR]\n  268 root      0:00 [DIAG_SOCKSENSOR]\n  269 root      0:00 [DIAG_SOCKDIAG_C]\n  270 root      0:00 [DIAG_SOCKDIAG_D]\n  271 root      0:00 [DIAG_SOCKDIAG_C]\n  272 root      0:00 [DIAG_SOCKDIAG_D]\n  273 root      0:00 [DIAG_SOCKDIAG_D]\n  274 root      0:00 [DIAG_SOCKCDSP_C]\n  275 root      0:00 [DIAG_SOCKCDSP_D]\n  276 root      0:00 [DIAG_SOCKCDSP_C]\n  277 root      0:00 [DIAG_SOCKCDSP_D]\n  278 root      0:00 [DIAG_SOCKCDSP_D]\n  279 root      0:00 [DIAG_CNTL_SOCKE]\n  280 root      0:00 [DIAG_GLINK_DIAG]\n  281 root      0:00 [DIAG_GLINK_DIAG]\n  282 root      0:00 [DIAG_GLINK_DIAG]\n  283 root      0:00 [DIAG_GLINK_DIAG]\n  284 root      0:00 [DIAG_GLINK_DIAG]\n  285 root      0:00 [kgsl-workqueue]\n  286 root      0:00 [kgsl-mementry]\n  287 root      0:00 [kgsl_worker_thr]\n  289 root      0:00 [kgsl-events]\n  290 root      0:00 [kgsl_devfreq_wq]\n  291 root      0:00 [bioset]\n  292 root      0:00 [bioset]\n  293 root      0:00 [bioset]\n  294 root      0:00 [bioset]\n  295 root      0:00 [bioset]\n  296 root      0:00 [bioset]\n  297 root      0:00 [bioset]\n  298 root      0:00 [bioset]\n  299 root      0:00 [bioset]\n  300 root      0:00 [bioset]\n  301 root      0:00 [bioset]\n  302 root      0:00 [bioset]\n  303 root      0:00 [bioset]\n  304 root      0:00 [bioset]\n  305 root      0:00 [bioset]\n  306 root      0:00 [bioset]\n  307 root      0:00 [bioset]\n  308 root      0:00 [bioset]\n  309 root      0:00 [bioset]\n  310 root      0:00 [bioset]\n  311 root      0:00 [bioset]\n  312 root      0:00 [bioset]\n  313 root      0:00 [bioset]\n  314 root      0:00 [bioset]\n  315 root      0:00 [bioset]\n  316 root      0:00 [qseecom-unreg-l]\n  317 root      0:00 [qseecom-unload-]\n  318 root      0:00 [irq/249-ant-swi]\n  319 root      0:00 [qcrypto_seq_res]\n  340 root      0:00 [spi7]\n  341 root      0:00 [bond0]\n  342 root      0:00 [sharedmem_qmi_w]\n  343 root      0:00 [qmi_hndl0000000]\n  345 root      0:00 [k_sm_usb]\n  349 root      0:00 [uether]\n  350 root      0:00 [irq/242-synapti]\n  351 root      0:00 [dsx_rebuild_wor]\n  352 root      0:00 [dsx_exp_workque]\n  353 root      0:00 [ctp_selftest]\n  354 root      0:00 [ctp_upgrade]\n  355 root      0:00 [ctp_if_upgrade]\n  356 root      0:00 [irq/247-soc:fpc]\n  357 root      0:00 [irq/250-hall-sw]\n  358 root      0:00 [hall_irq_event_]\n  359 root      0:00 [msm_cci_wq]\n  360 root      0:00 [msm_cci_wq]\n  361 root      0:00 [fwu_workqueue]\n  362 root      0:00 [kworker/2:1]\n  363 root      0:00 [kworker/4:1]\n  364 root      0:00 [kworker/5:1]\n  365 root      0:00 [msm_cpp_workque]\n  366 root      0:00 [msm_vidc_worker]\n  367 root      0:00 [pm_workerq_venu]\n  368 root      0:00 [irq/140-arm-smm]\n  369 root      0:00 [irq/141-arm-smm]\n  370 root      0:00 [irq/142-arm-smm]\n  371 root      0:00 [irq/143-arm-smm]\n  372 root      0:00 [rot_commitq_0_0]\n  373 root      0:00 [rot_commitq_0_1]\n  374 root      0:00 [rot_doneq_0_0]\n  375 root      0:00 [rot_doneq_0_1]\n  376 root      0:00 [therm_core:noti]\n  377 root      0:00 [irq/443-chg-err]\n  378 root      0:00 [irq/444-chg-sta]\n  379 root      0:00 [irq/448-otg-fai]\n  380 root      0:00 [irq/449-otg-ove]\n  381 root      0:00 [irq/450-otg-oc-]\n  382 root      0:00 [irq/451-testmod]\n  383 root      0:00 [irq/452-bat-tem]\n  384 root      0:00 [irq/453-bat-ocp]\n  385 root      0:00 [irq/454-bat-ov]\n  386 root      0:00 [irq/455-bat-low]\n  387 root      0:00 [irq/456-bat-the]\n  388 root      0:00 [irq/457-bat-ter]\n  389 root      0:00 [irq/458-usbin-c]\n  390 root      0:00 [irq/459-usbin-l]\n  391 root      0:00 [irq/460-usbin-u]\n  392 root      0:00 [irq/461-usbin-o]\n  393 root      0:00 [irq/462-usbin-p]\n  394 root      0:00 [irq/463-usbin-s]\n  395 root      0:00 [irq/464-usbin-i]\n  396 root      0:00 [irq/465-type-c-]\n  397 root      0:00 [irq/466-dcin-co]\n  398 root      0:00 [irq/467-dcin-lt]\n  399 root      0:00 [irq/468-dcin-uv]\n  400 root      0:00 [irq/469-dcin-ov]\n  401 root      0:00 [irq/470-dcin-pl]\n  402 root      0:00 [irq/471-div2-en]\n  403 root      0:00 [irq/472-dcin-ic]\n  404 root      0:00 [irq/474-wdog-ba]\n  405 root      0:00 [irq/475-aicl-fa]\n  407 root      0:00 [irq/476-aicl-do]\n  408 root      0:00 [kworker/0:4]\n  409 root      0:00 [kworker/0:5]\n  410 root      0:00 [irq/477-high-du]\n  413 root      0:00 [irq/478-input-c]\n  414 root      0:00 [irq/479-tempera]\n  415 root      0:00 [irq/480-switche]\n  416 root      0:00 [therm_core:noti]\n  417 root      0:00 [therm_core:noti]\n  418 root      0:00 [therm_core:noti]\n  419 root      0:00 [therm_core:noti]\n  420 root      0:00 [therm_core:noti]\n  421 root      0:00 [therm_core:noti]\n  422 root      0:00 [therm_core:noti]\n  423 root      0:00 [therm_core:noti]\n  424 root      0:00 [therm_core:noti]\n  425 root      0:00 [therm_core:noti]\n  426 root      0:00 [therm_core:noti]\n  427 root      0:00 [therm_core:noti]\n  428 root      0:00 [therm_core:noti]\n  429 root      0:00 [therm_core:noti]\n  430 root      0:00 [therm_core:noti]\n  431 root      0:00 [therm_core:noti]\n  432 root      0:00 [therm_core:noti]\n  433 root      0:00 [therm_core:noti]\n  434 root      0:00 [therm_core:noti]\n  435 root      0:00 [therm_core:noti]\n  436 root      0:00 [therm_core:noti]\n  437 root      0:00 [therm_core:noti]\n  438 root      0:00 [irq/31-tsens_in]\n  439 root      0:00 [irq/37-tsens_cr]\n  440 root      0:00 [therm_core:noti]\n  441 root      0:00 [irq/311-limits_]\n  442 root      0:00 [therm_core:noti]\n  443 root      0:00 [irq/312-limits_]\n  444 root      0:00 [dm_bufio_cache]\n  445 root      0:00 [cfinteractive]\n  447 root      0:00 [irq/34-qpnp_wle]\n  448 root      0:00 [irq/54-c0c4000.]\n  449 root      0:00 [irq/53-mmc0]\n  450 root      0:03 [kworker/u16:5]\n  451 root      0:00 [cds_recovery_wo]\n  452 root      0:00 [wlan_logging_th]\n  454 root      0:00 [bioset]\n  455 root      0:00 [mmc-cmdqd/0]\n  456 root      0:00 [bioset]\n  457 root      0:00 [mmcqd/0rpmb]\n  458 root      0:00 [irq/60-c084000.]\n  459 root      0:00 [irq/57-mmc1]\n  460 root      0:00 [irq/229-c084000]\n  461 root      0:00 [irq/87-spdm_bw_]\n  462 root      0:00 [binder]\n  463 root      0:00 [irq/122-arm-smm]\n  464 root      0:00 [uaudio_svc]\n  465 root      0:00 [qmi_hndl0000000]\n  466 root      0:00 [bioset]\n  467 root      0:00 [mmcqd/1]\n  469 root      0:00 [ipv6_addrconf]\n  470 root      0:00 [irq/515-adsp]\n  471 root      0:00 [sysmon_wq]\n  472 root      0:00 [irq/483-modem]\n  473 root      0:00 [k_sm_usb]\n  474 root      0:00 [irq/171-hs_phy_]\n  475 root      0:00 [irq/172-ss_phy_]\n  476 root      0:00 [irq/173-msm_dwc]\n  477 root      0:00 [usb_bam_wq]\n  478 root      0:00 [therm_core:noti]\n  479 root      0:00 [irq/675-soc-upd]\n  480 root      0:00 [irq/676-soc-rea]\n  481 root      0:00 [irq/677-bsoc-de]\n  482 root      0:00 [irq/678-msoc-de]\n  483 root      0:00 [irq/679-msoc-lo]\n  484 root      0:00 [irq/680-msoc-em]\n  485 root      0:00 [irq/681-msoc-hi]\n  486 root      0:00 [irq/682-msoc-fu]\n  487 root      0:00 [irq/683-vbatt-p]\n  488 root      0:00 [irq/684-vbatt-l]\n  489 root      0:00 [irq/685-esr-del]\n  490 root      0:00 [irq/686-batt-mi]\n  491 root      0:00 [irq/687-batt-te]\n  492 root      0:00 [irq/688-ima-rdy]\n  493 root      0:00 [irq/689-mem-xcp]\n  494 root      0:00 [irq/690-dma-gra]\n  495 root      0:00 [core_ctl/0]\n  496 root      0:00 [core_ctl/4]\n  505 root      0:00 [msm_perf:events]\n  506 root      0:00 [rq_stats]\n  507 root      0:00 [irq/123-arm-smm]\n  508 root      0:00 [irq/124-arm-smm]\n  509 root      0:00 [irq/125-arm-smm]\n  510 root      0:00 [irq/126-arm-smm]\n  511 root      0:00 [sb-3]\n  512 root      0:00 [ngd_rx_thread3]\n  513 root      0:00 [ngd_notify_sl3]\n  515 root      0:00 [msm-core:sampli]\n  516 root      0:00 [kworker/0:1H]\n  517 root      0:00 [msm_thermal:hot]\n  518 root      0:00 [msm_thermal:fre]\n  519 root      0:00 [msm_thermal:the]\n  520 root      0:00 [therm_core:noti]\n  521 root      0:00 [therm_core:noti]\n  522 root      0:00 [therm_core:noti]\n  523 root      0:00 [irq/41-lmh-inte]\n  525 root      0:00 [irq/36-qpnp_fla]\n  526 root      0:00 [irq/18-qpnp_fla]\n  527 root      0:00 [irq/35-qpnp_fla]\n  528 root      0:00 [ipa_A7_svc]\n  529 root      0:00 [qmi_hndl0000000]\n  531 root      0:00 [clnt_req]\n  532 root      0:00 [clnt_resp]\n  533 root      0:00 [clnt_req]\n  542 root      0:00 [kworker/1:1H]\n  543 root      0:00 [kworker/2:1H]\n  544 root      0:00 [kworker/3:1H]\n  545 root      0:00 [kworker/3:2]\n  546 root      0:00 [kworker/4:1H]\n  547 root      0:00 [kworker/5:1H]\n  548 root      0:00 [kworker/6:1H]\n  549 root      0:00 [kworker/6:1]\n  550 root      0:00 [kworker/7:1H]\n  551 root      0:00 [kworker/7:2]\n  552 root      0:00 [test_report_wor]\n  563 root      0:00 [kworker/u16:0]\n  564 root      0:00 [kworker/1:2]\n  574 root      0:00 [kworker/0:2]\n  578 root      0:00 [kworker/4:2]\n  627 root      0:00 ps -A\n"
  },
  {
    "path": "results/sdm636/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,633600,2057.613169,3.2474955318813135,51.25531325206617,6.22804983561204,40.14097616407915,121.510326256\r\n1,902400,2918.41285,3.234056792996454,74.03938381283538,6.342910294765475,39.414084132060644,85.669409551\r\n1,1113600,3609.430721,3.2412272997485636,88.35512726085514,6.120334003231209,40.847443925121304,69.269709557\r\n1,1401600,4551.744228,3.247534409246575,148.35011009475934,8.148980774872541,30.678683249674283,54.930736281\r\n1,1536000,4987.929211,3.2473497467447916,161.88946637752002,8.114952746438776,30.80732664890893,50.126502533\r\n1,1612800,5236.589095,3.2468930400545637,182.0127050030852,8.690267193271888,28.767815124666487,47.745387846\r\n4,1113600,5991.611744,5.380398477011495,291.5315871929025,12.167079456689153,20.547248079534512,41.735029723\r\n4,1401600,7544.892108,5.38305658390411,367.6705398865152,12.186521061477354,20.514468299757148,33.145220352\r\n4,1747200,9406.629793,5.383831154418498,561.8900983279232,14.939611422920612,16.73403630943477,26.588137907\r\n4,1804800,9716.662132,5.38378885859929,558.8973676719601,14.385432735169317,17.3786916669391,25.738952386\r\n"
  },
  {
    "path": "results/sdm636/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 725.6959941983223, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1396.5544043619998, 1396.469099766, 1398.33293061, 1400.1109805699998, 1398.1620832739998, 1394.17476064, 1397.990885841, 1395.7863133889998, 1397.990885841, 1396.0422271769999, 1395.7010087929998, 1399.4262880649999, 1397.4783438329998, 1399.4262880649999, 1397.3071464, 1395.274136204, 1397.221722732, 1393.3225587200002, 1393.15218816, 1397.136299064, 1395.1888316079999, 1396.8800280599999, 1396.8800280599999, 1398.741244975, 1398.8271383, 1394.847263615, 1396.708830627, 1402.553434942, 1394.761959019], \"power_mean\": 1396.9810107142068, \"energy_millijoules\": 6984.905053571034, \"energy_joules\": 6.984905053571034}, \"cpus\": {\"1\": {\"freqs\": {\"633600\": {\"active\": {\"elapsed_sec\": 121.510326256, \"elapsed_ns\": 121510326256, \"power_samples\": [3.129524126999968, 48.984517304000065, 47.123610710999856, 47.123610710999856, 47.123610710999856, 41.20019326700003, 38.98806111800013, 38.98806111800013, 42.88150088700013, 46.682791770999984, 46.682791770999984, 33.41188340100007, 40.936773551000215, 40.936773551000215, 42.79357524300008, 38.81232723200014, 38.81232723200014, 40.760800544000176, 40.936773551000215, 40.936773551000215, 42.7052892480001, 42.61736360400005, 42.61736360400005, 46.50610286799997, 46.50610286799997, 46.50610286799997, 40.760800544000176, 46.59426665600017, 46.59426665600017, 46.32977529200025, 48.277890655999954, 48.277890655999954, 42.44151231600017, 50.22202214399999, 42.44151231600017, 42.44151231600017, 40.49738082800013, 40.40957425600004, 40.40957425600004, 42.44151231600017, 40.32176768399995, 40.32176768399995, 46.24161150400005, 40.40957425600004, 40.40957425600004, 40.40957425600004, 40.40957425600004, 40.40957425600004, 46.06528392799987, 46.15344771600007, 46.15344771600007, 46.24161150400005, 40.32176768399995, 40.32176768399995, 36.42999760800012, 612.1239795990002, 612.1239795990002, 37.93509529800008, 49.77964896000003, 49.77964896000003, 40.23396111200009, 42.00152374500021, 39.882374961000096, 39.882374961000096, 38.11046981000004, 35.904229618000045, 35.904229618000045, 45.71226744900014, 40.05798810500028, 40.05798810500028, 41.82567245699988, 39.61895524500005, 39.61895524500005, 41.73774681299983, 41.73774681299983, 41.73774681299983, 45.44777608499999, 37.8474080420001, 37.8474080420001, 45.624103660999936, 41.73774681299983, 41.73774681299983, 37.93509529800008, 41.561895524999954, 41.561895524999954, 47.57126400800007, 45.44777608499999, 45.44777608499999, 39.61895524500005, 41.561895524999954, 39.61895524500005, 39.61895524500005, 45.44777608499999, 45.44777608499999, 45.44777608499999, 39.44298223800001, 45.44777608499999, 45.44777608499999, 37.58398690000013, 41.385683885999924, 41.385683885999924, 41.473609529999976, 39.35517566600015, 39.35517566600015, 41.2977582420001, 39.530788810000104, 39.530788810000104, 39.61895524500005, 39.35517566600015, 39.35517566600015, 41.385683885999924, 45.18292339400023, 45.18292339400023, 37.496299644000146, 39.35517566600015, 39.35517566600015, 37.40861238800039, 47.129486671999985, 41.385683885999924, 41.385683885999924, 41.2977582420001], \"power_mean\": 51.25531325206617, \"energy_millijoules\": 6228.049835612041, \"energy_joules\": 6.22804983561204, \"coremark_score\": 2057.613169, \"coremarks_per_mhz\": 3.2474955318813135, \"ulpmark_cm_score\": 40.14097616407915}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1398.5701594949999, 1398.313531275, 1398.313531275, 1398.313531275], \"power_mean\": 1398.37768833, \"energy_millijoules\": 6991.88844165, \"energy_joules\": 6.99188844165}}, \"902400\": {\"active\": {\"elapsed_sec\": 85.669409551, \"elapsed_ns\": 85669409551, \"power_samples\": [64.26327029999993, 64.26327029999993, 69.64463771500027, 67.70312727500004, 67.70312727500004, 73.44168601199999, 67.43434639099996, 67.70312727500004, 67.70312727500004, 69.55492501500021, 65.4931931670003, 65.4931931670003, 59.576273392000076, 65.4931931670003, 65.4931931670003, 67.61353364700017, 65.4931931670003, 65.4931931670003, 67.43434639099996, 73.081513008, 73.081513008, 67.43434639099996, 69.19570654000017, 69.19570654000017, 67.34438557599992, 73.17146409599991, 73.17146409599991, 65.22440280000001, 69.19570654000017, 69.19570654000017, 63.458340720000024, 67.25479194800027, 67.25479194800027, 68.92656844000021, 69.19570654000017, 63.27963023999996, 63.27963023999996, 68.92656844000021, 72.81165974400005, 72.81165974400005, 68.92656844000021, 72.81165974400005, 72.81165974400005, 74.9323574399998, 69.10599384000011, 69.10599384000011, 66.9860110640002, 68.83685573999992, 68.83685573999992, 66.9860110640002, 72.72170865599992, 72.72170865599992, 66.89641743600009, 66.9860110640002, 66.9860110640002, 69.10599384000011, 68.92656844000021, 68.92656844000021, 68.92656844000021, 64.95597913200004, 64.95597913200004, 63.1009197599999, 64.95597913200004, 64.95597913200004, 66.9860110640002, 64.95597913200004, 59.21980500799987, 59.21980500799987, 66.89641743600009, 63.01156452000009, 63.01156452000009, 631.7266839180002, 66.80682380800022, 66.80682380800022, 64.86650457600012, 64.86650457600012, 64.86650457600012, 66.80682380800022, 64.86650457600012, 64.86650457600012, 62.92220928000006, 64.86650457600012, 64.86650457600012, 68.38792456500028, 74.57207679999988], \"power_mean\": 74.03938381283538, \"energy_millijoules\": 6342.910294765475, \"energy_joules\": 6.342910294765475, \"coremark_score\": 2918.41285, \"coremarks_per_mhz\": 3.234056792996454, \"ulpmark_cm_score\": 39.414084132060644}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1390.59523328, 1394.315567535, 1394.486764968, 1394.486764968], \"power_mean\": 1393.47108268775, \"energy_millijoules\": 6967.35541343875, \"energy_joules\": 6.967355413438749}}, \"1113600\": {\"active\": {\"elapsed_sec\": 69.269709557, \"elapsed_ns\": 69269709557, \"power_samples\": [93.4392536170003, 93.4392536170003, 87.43428522000022, 91.13073198799998, 91.13073198799998, 91.22187428400002, 87.3433810680001, 87.3433810680001, 85.31334938000009, 87.16157276400008, 87.16157276400008, 81.34057399400012, 85.22256430000016, 85.22256430000016, 85.22256430000016, 87.16157276400008, 87.16157276400008, 85.04099414000007, 86.97976446000007, 86.97976446000007, 87.16157276400008, 94.9215799980002, 87.25247691599998, 87.25247691599998, 87.25247691599998, 91.03958969199994, 91.03958969199994, 92.98257153400027, 85.22256430000016, 85.22256430000016, 91.03958969199994, 85.22256430000016, 85.22256430000016, 86.97976446000007, 90.85730510000008, 90.85730510000008, 90.85730510000008, 84.85905190999983, 84.85905190999983, 83.09825093000018, 90.85730510000008, 90.85730510000008, 90.85730510000008, 92.61715106300016, 92.61715106300016, 86.79758359800007, 92.61715106300016, 92.61715106300016, 92.52588945100001, 92.61715106300016, 86.79758359800007, 86.79758359800007, 86.79758359800007, 90.67464697399987, 90.67464697399987, 92.61715106300016, 86.70667944600018, 86.70667944600018, 90.67464697399987, 86.79758359800007, 86.79758359800007, 90.67464697399987, 86.79758359800007, 86.79758359800007, 90.67464697399987, 82.64455052900007, 82.64455052900007, 86.79758359800007, 86.79758359800007], \"power_mean\": 88.35512726085514, \"energy_millijoules\": 6120.334003231209, \"energy_joules\": 6.120334003231209, \"coremark_score\": 3609.430721, \"coremarks_per_mhz\": 3.2412272997485636, \"ulpmark_cm_score\": 40.847443925121304}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1399.120432012, 1393.2047097539999, 1398.776955938, 1398.776955938], \"power_mean\": 1397.4697634105, \"energy_millijoules\": 6987.3488170525, \"energy_joules\": 6.987348817052499}}, \"1401600\": {\"active\": {\"elapsed_sec\": 54.930736281, \"elapsed_ns\": 54930736281, \"power_samples\": [134.44335390000015, 134.44335390000015, 137.847283243, 137.7531624390001, 137.7531624390001, 133.97355583500007, 137.7531624390001, 137.7531624390001, 137.7531624390001, 137.847283243, 137.847283243, 139.69387581, 133.78579051499992, 133.78579051499992, 143.4728868100001, 137.470800027, 137.470800027, 141.25318367400018, 141.53626125000028, 141.53626125000028, 137.470800027, 139.41115545000025, 139.41115545000025, 139.41115545000025, 143.28393028200026, 139.22267521000003, 139.22267521000003, 141.158824482, 143.1894520180001, 143.1894520180001, 137.3766792230001, 141.158824482, 141.158824482, 131.3803470150001, 139.22267521000003, 139.22267521000003, 138.93956862000027, 131.19243556200013, 131.19243556200013, 133.41025987500007, 137.28255841899977, 137.28255841899977, 137.1884376150001, 137.1884376150001, 137.1884376150001, 700.4886391760003, 133.03434446999995, 133.03434446999995, 137.1884376150001, 140.87536018800006, 140.87536018800006, 136.90568946200005, 138.84532850000005, 139.12843509000027], \"power_mean\": 148.35011009475934, \"energy_millijoules\": 8148.980774872542, \"energy_joules\": 8.148980774872541, \"coremark_score\": 4551.744228, \"coremarks_per_mhz\": 3.247534409246575, \"ulpmark_cm_score\": 30.678683249674283}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1398.2619176080002, 1401.885688976, 1400.2028322, 1400.2028322], \"power_mean\": 1400.1383177460002, \"energy_millijoules\": 7000.691588730001, \"energy_joules\": 7.000691588730001}}, \"1536000\": {\"active\": {\"elapsed_sec\": 50.126502533, \"elapsed_ns\": 50126502533, \"power_samples\": [6.191289990000087, 161.70261921399992, 161.4152179770001, 161.4152179770001, 159.48037947300008, 167.31972549800025, 167.31972549800025, 167.03164396999978, 165.0970436099999, 165.0970436099999, 167.22369832200002, 165.288859818, 165.288859818, 167.22369832200002, 167.22369832200002, 165.288859818, 165.288859818, 168.8700980819999, 161.1282088290002, 161.1282088290002, 170.80854347100012, 159.09817689700003, 159.09817689700003, 161.22387854499993, 168.8700980819999, 168.8700980819999, 166.93561679400023, 166.839589618, 166.839589618, 165.00113550600008, 165.00113550600008, 165.00113550600008, 161.22387854499993, 166.93561679400023, 166.93561679400023, 168.67741154400005, 166.839589618, 166.839589618, 165.00113550600008, 159.09817689700003, 159.09817689700003, 160.93647730800012, 170.6156178120002, 170.6156178120002, 166.839589618, 159.00223465199997, 168.4851190479999, 168.4851190479999, 164.61711002399989, 164.61711002399989], \"power_mean\": 161.88946637752002, \"energy_millijoules\": 8114.952746438776, \"energy_joules\": 8.114952746438776, \"coremark_score\": 4987.929211, \"coremarks_per_mhz\": 3.2473497467447916, \"ulpmark_cm_score\": 30.80732664890893}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1403.140761173, 1406.84686233, 1406.84686233, 1397.3179736380002], \"power_mean\": 1403.5381148677502, \"energy_millijoules\": 7017.690574338751, \"energy_joules\": 7.017690574338751}}, \"1612800\": {\"active\": {\"elapsed_sec\": 47.745387846, \"elapsed_ns\": 47745387846, \"power_samples\": [7.614545204000024, 187.64237814000012, 183.77484540399996, 183.77484540399996, 187.64237814000012, 187.5450404400001, 187.5450404400001, 185.41655745100002, 183.38604923100024, 177.67896089200008, 177.67896089200008, 187.5450404400001, 185.61139314399998, 185.61139314399998, 187.34996611499992, 187.25262841500012, 187.25262841500012, 185.22212019500012, 187.1552907150001, 187.1552907150001, 187.1552907150001, 188.99100446300008, 188.99100446300008, 183.2889496749999, 185.22212019500012, 185.22212019500012, 187.05795301500007, 187.05795301500007, 187.05795301500007, 185.22212019500012, 186.86327761500002, 186.86327761500002, 188.7960909190001, 188.99100446300008, 188.99100446300008, 185.12490156700005, 184.93046431100015, 184.93046431100015, 182.99765100700006, 183.19185011900004, 182.90055145100018, 182.90055145100018, 184.93046431100015, 184.8332456830001, 184.8332456830001, 188.69863414700012, 188.69863414700012], \"power_mean\": 182.0127050030852, \"energy_millijoules\": 8690.267193271888, \"energy_joules\": 8.690267193271888, \"coremark_score\": 5236.589095, \"coremarks_per_mhz\": 3.2468930400545637, \"ulpmark_cm_score\": 28.767815124666487}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1402.709715206, 1398.6559244999999, 1398.6559244999999, 1400.59469482], \"power_mean\": 1400.1540647565, \"energy_millijoules\": 7000.7703237825, \"energy_joules\": 7.0007703237825}}}}, \"4\": {\"freqs\": {\"1113600\": {\"active\": {\"elapsed_sec\": 41.735029723, \"elapsed_ns\": 41735029723, \"power_samples\": [108.4091167590002, 264.51933315999986, 264.51933315999986, 267.8688429160002, 271.73342112800015, 269.79915424399996, 269.79915424399996, 267.76638219200004, 271.5280229040002, 271.5280229040002, 267.6639214680001, 832.3904915650003, 832.3904915650003, 267.4585800990001, 269.5939946520002, 269.5939946520002, 267.4585800990001, 267.4585800990001, 267.4585800990001, 261.5630186000001, 263.4966884149999, 263.4966884149999, 267.35611937499993, 269.2858348550001, 269.2858348550001, 271.01410644600037, 271.2195046700001, 271.2195046700001, 269.183255059, 269.183255059, 269.183255059, 271.1168055580001, 271.1168055580001, 261.46091533599997, 261.46091533599997, 267.253658651, 267.253658651, 267.253658651, 267.1511979270001, 267.1511979270001, 267.1511979270001], \"power_mean\": 291.5315871929025, \"energy_millijoules\": 12167.079456689153, \"energy_joules\": 12.167079456689153, \"coremark_score\": 5991.611744, \"coremarks_per_mhz\": 5.380398477011495, \"ulpmark_cm_score\": 20.547248079534512}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1399.992207378, 1399.992207378, 1399.992207378, 1396.1163347220001], \"power_mean\": 1399.0232392140001, \"energy_millijoules\": 6995.116196070001, \"energy_joules\": 6.9951161960700015}}, \"1401600\": {\"active\": {\"elapsed_sec\": 33.145220352, \"elapsed_ns\": 33145220352, \"power_samples\": [178.64717481999992, 370.93607369200004, 370.93607369200004, 380.2450268140001, 376.38808190299983, 370.3905589750002, 370.3905589750002, 374.24307985500013, 374.24307985500013, 374.24307985500013, 376.05996949099995, 366.20776524000007, 366.20776524000007, 375.8412278830001, 375.62203803400007, 375.62203803400007, 371.66157619, 371.66157619, 371.66157619, 375.51266723000003, 373.47786997799994, 373.47786997799994, 379.36770406000005, 375.51266723000003, 375.51266723000003, 375.2939256220002, 369.29997631799984, 369.29997631799984, 378.9292672920001, 373.15011478199995, 373.15011478199995, 380.744158554, 369.19051595299993], \"power_mean\": 367.6705398865152, \"energy_millijoules\": 12186.521061477353, \"energy_joules\": 12.186521061477354, \"coremark_score\": 7544.892108, \"coremarks_per_mhz\": 5.38305658390411, \"ulpmark_cm_score\": 20.514468299757148}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1399.475739208, 1399.475739208, 1397.5385178000001, 1395.68707752], \"power_mean\": 1398.044268434, \"energy_millijoules\": 6990.22134217, \"energy_joules\": 6.99022134217}}, \"1747200\": {\"active\": {\"elapsed_sec\": 26.588137907, \"elapsed_ns\": 26588137907, \"power_samples\": [558.5293985300002, 558.5293985300002, 559.2396726880002, 560.7967169640001, 560.7967169640001, 566.3181583759999, 560.6755512, 560.6755512, 562.1139136500001, 560.190391563, 560.190391563, 561.9926285699999, 561.8713434899998, 561.6287733300001, 561.6287733300001, 561.6287733300001, 567.3861099779999, 567.3861099779999, 565.3449764920001, 565.4669977619999, 565.4669977619999, 557.5440268140003, 561.3857061000001, 561.3857061000001, 559.5840661620002, 561.3857061000001], \"power_mean\": 561.8900983279232, \"energy_millijoules\": 14939.611422920612, \"energy_joules\": 14.939611422920612, \"coremark_score\": 9406.629793, \"coremarks_per_mhz\": 5.383831154418498, \"ulpmark_cm_score\": 16.73403630943477}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1398.356783596, 1400.382561222, 1394.74313355, 1394.74313355], \"power_mean\": 1397.0564029795, \"energy_millijoules\": 6985.282014897501, \"energy_joules\": 6.985282014897501}}, \"1804800\": {\"active\": {\"elapsed_sec\": 25.738952386, \"elapsed_ns\": 25738952386, \"power_samples\": [6.713188507000041, 581.1951895680002, 578.6634325920002, 584.301270786, 584.301270786, 585.974357802, 583.9331267579998, 583.9331267579998, 580.0924010240001, 583.8104120820001, 583.8104120820001, 585.236851897, 577.561716184, 577.561716184, 577.561716184, 579.4795176319999, 579.4795176319999, 577.3170017520001, 583.1963357730001, 583.1963357730001, 579.2345650560001, 586.908747705, 586.908747705, 583.0736210970001, 578.98961248], \"power_mean\": 558.8973676719601, \"energy_millijoules\": 14385.432735169317, \"energy_joules\": 14.385432735169317, \"coremark_score\": 9716.662132, \"coremarks_per_mhz\": 5.38378885859929, \"ulpmark_cm_score\": 17.3786916669391}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1397.410219066, 1403.562776499, 1403.562776499, 1403.6491532310001], \"power_mean\": 1402.04623132375, \"energy_millijoules\": 7010.231156618749, \"energy_joules\": 7.010231156618749}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sdm636/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 1393 mW\n\n\n===== CPU 1 =====\nFrequencies: 633 902 1113 1401 1536 1612\n\n 633:  2058     3.2 C/MHz     51 mW    6.2 J   40.1 I/mJ   121.5 s\n 902:  2918     3.2 C/MHz     74 mW    6.3 J   39.4 I/mJ    85.7 s\n1113:  3609     3.2 C/MHz     88 mW    6.1 J   40.8 I/mJ    69.3 s\n1401:  4552     3.2 C/MHz    148 mW    8.1 J   30.7 I/mJ    54.9 s\n1536:  4988     3.2 C/MHz    162 mW    8.1 J   30.8 I/mJ    50.1 s\n1612:  5237     3.2 C/MHz    182 mW    8.7 J   28.8 I/mJ    47.7 s\n\n\n===== CPU 4 =====\nFrequencies: 1113 1401 1747 1804\n\n1113:  5992     5.4 C/MHz    292 mW   12.2 J   20.5 I/mJ    41.7 s\n1401:  7545     5.4 C/MHz    368 mW   12.2 J   20.5 I/mJ    33.1 s\n1747:  9407     5.4 C/MHz    562 mW   14.9 J   16.7 I/mJ    26.6 s\n1804:  9717     5.4 C/MHz    559 mW   14.4 J   17.4 I/mJ    25.7 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sdm636/main/uptime.txt",
    "content": " 05:21:14 up 12 min,  load average: 6.79, 6.22, 3.71\n"
  },
  {
    "path": "results/sdm636/main/versions.txt",
    "content": "Kernel: Linux version 4.4.205-perf+ (orges@orges) () #2 SMP PREEMPT Sat Jan 9 20:28:29 UTC 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sdm636/second/cmdline.txt",
    "content": "rcupdate.rcu_expedited=1 cgroup_disable=pressure cgroup.memory=nokmem,nosocket androidboot.hardware=qcom user_debug=31 msm_rtb.filter=0x37 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 sched_enable_power_aware=1 service_locator.enable=1 androidboot.configfs=true androidboot.usbcontroller=a800000.dwc3 loop.max_part=7 kpti=off buildvariant=user rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on root=/dev/dm-0 dm=\"system none ro,0 1 android-verity /dev/mmcblk0p61\" androidboot.verifiedbootstate=green androidboot.keymaster=1  androidboot.veritymode=enforcing androidboot.bootdevice=c0c4000.sdhci androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.baseband=sdm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_td4310_tianma_fhd_video:config0:1:none:cfg:single_dsi androidboot.fpsensor=gdx androidboot.secureboot=1 androidboot.hwc=Global androidboot.hwversion=1.20.0 androidboot.hwlevel=0 androidboot.hwdevice=whyred\n"
  },
  {
    "path": "results/sdm636/second/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 4 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nHardware\t: Qualcomm Technologies, Inc SDM636\n"
  },
  {
    "path": "results/sdm636/second/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. SDM 636 PM660 + PM660L E7S;\nCompatible: qcom,sdm636-mtp;qcom,sdm636;qcom,mtp;\n"
  },
  {
    "path": "results/sdm636/second/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x51af8014]\n[    0.000000] Linux version 4.19.219-SiLonT:[Ble]-g6549470641c8 (reina@Laptop-Sangar) (gcc version 12.0.0 20211219 (experimental) (Eva GCC), GNU ld (Eva BinUtils) 2.37.50.20211219) #396 SMP PREEMPT Fri Dec 24 12:49:54 UTC 2021\n[    0.000000] Machine model: Qualcomm Technologies, Inc. SDM 636 PM660 + PM660L E7S\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fd400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fcc00000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x000000009cc00000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node venus_fw_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: incorrect alignment of CMA region\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fa000000, size 44 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f4400000, size 92 MiB\n[    0.000000] OF: reserved mem: initialized node secure_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085600000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_msa_guard@85600000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085700000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_msa_mem@85700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085800000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node removed_regions@85800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086000000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node smem-mem@86000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086200000, size 45 MiB\n[    0.000000] OF: reserved mem: initialized node removed_regions@86200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ac00000, size 126 MiB\n[    0.000000] OF: reserved mem: initialized node modem_fw_region@8ac00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000092a00000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_fw_region@92a00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094800000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node pil_mba_region@94800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094a00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node buffer_region@94a00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000a0000000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node ramoops, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 724672\n[    0.000000]   DMA32 zone: 11323 pages used for memmap\n[    0.000000]   DMA32 zone: 0 pages reserved\n[    0.000000]   DMA32 zone: 724672 pages, LIFO batch:63\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.0 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] Did not receive the expected number of bytes from PRNG: 0\n[    0.000000] percpu: Embedded 22 pages/cpu s58200 r0 d31912 u90112\n[    0.000000] pcpu-alloc: s58200 r0 d31912 u90112 alloc=22*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] ARM_SMCCC_ARCH_WORKAROUND_1 missing from firmware\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 713349\n[    0.000000] Kernel command line: rcupdate.rcu_expedited=1 cgroup_disable=pressure cgroup.memory=nokmem,nosocket androidboot.hardware=qcom user_debug=31 msm_rtb.filter=0x37 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 sched_enable_power_aware=1 service_locator.enable=1 androidboot.configfs=true androidboot.usbcontroller=a800000.dwc3 loop.max_part=7 kpti=off buildvariant=user rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on root=/dev/dm-0 dm=\"system none ro,0 1 android-verity /dev/mmcblk0p61\" androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.veritymode=enforcing androidboot.bootdevice=c0c4000.sdhci androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.baseband=sdm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_td4310_tianma_fhd_video:config0:1:none:cfg:single_dsi androidboot.fpsensor=gdx androidboot.secureboot=1 androidboot.hwc=Global androidboot.hwversion=1.20.0 androidboot.hwlevel=0 androidboot.hwdevice=whyred\n[    0.000000] cgroup: Disabling pressure control group feature\n[    0.000000] cgroup: Disabling pressure control group feature\n[    0.000000] device-mapper: init: will configure 1 devices\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 131072 bytes\n[    0.000000] log_buf_len: 1048576 bytes\n[    0.000000] early log buf free: 125260(95%)\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off\n[    0.000000] Memory: 2569948K/2898688K available (28414K kernel code, 3090K rwdata, 6784K rodata, 4224K init, 3261K bss, 152612K reserved, 176128K cma-reserved)\n[    0.000000] random: random: get_random_u64 called from __kmem_cache_create+0x20/0x750 with crng_init=0\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: Distributor has no Range Selector support\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: CPU0: Trapping CNTVCT access\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000013] clocksource: Switched to clocksource arch_sys_counter\n[    0.000927] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.000934] pid_max: default: 32768 minimum: 301\n[    0.001033] Security Framework initialized\n[    0.001041] SELinux:  Initializing.\n[    0.001143] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001156] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.002179] ASID allocator initialised with 65536 entries\n[    0.002234] rcu: Hierarchical SRCU implementation.\n[    0.003708] scm_call failed: func id 0x42000c1c, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.003712] Failed to enable shmbridge, rsp = 0, ret = -95\n[    0.003714] shmbridge is not supported by this target\n[    0.003947] smp: Bringing up secondary CPUs ...\n[    0.005757] Detected VIPT I-cache on CPU1\n[    0.005844] arch_timer: CPU1: Trapping CNTVCT access\n[    0.005850] CPU1: Booted secondary processor 0x0000000001 [0x51af8014]\n[    0.007582] Detected VIPT I-cache on CPU2\n[    0.007639] arch_timer: CPU2: Trapping CNTVCT access\n[    0.007644] CPU2: Booted secondary processor 0x0000000002 [0x51af8014]\n[    0.009330] Detected VIPT I-cache on CPU3\n[    0.009390] arch_timer: CPU3: Trapping CNTVCT access\n[    0.009395] CPU3: Booted secondary processor 0x0000000003 [0x51af8014]\n[    0.011445] CPU features: detected: ARM erratum 858921\n[    0.011457] Detected VIPT I-cache on CPU4\n[    0.011526] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.011545] arch_timer: CPU4: Trapping CNTVCT access\n[    0.011554] CPU4: Booted secondary processor 0x0000000100 [0x51af8002]\n[    0.013397] Detected VIPT I-cache on CPU5\n[    0.013465] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.013479] arch_timer: CPU5: Trapping CNTVCT access\n[    0.013488] CPU5: Booted secondary processor 0x0000000101 [0x51af8002]\n[    0.015312] Detected VIPT I-cache on CPU6\n[    0.015382] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.015397] arch_timer: CPU6: Trapping CNTVCT access\n[    0.015405] CPU6: Booted secondary processor 0x0000000102 [0x51af8002]\n[    0.017224] Detected VIPT I-cache on CPU7\n[    0.017296] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.017311] arch_timer: CPU7: Trapping CNTVCT access\n[    0.017320] CPU7: Booted secondary processor 0x0000000103 [0x51af8002]\n[    0.017455] smp: Brought up 1 node, 8 CPUs\n[    0.017460] SMP: Total of 8 processors activated.\n[    0.017463] CPU features: detected: GIC system register CPU interface\n[    0.017466] CPU features: detected: 32-bit EL0 Support\n[    0.017524] CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching\n[    0.017528] CPU: All CPU(s) started at EL1\n[    0.048472] Registered cp15_barrier emulation handler\n[    0.048487] Registered setend emulation handler\n[    0.048637] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.048648] futex hash table entries: 2048 (order: 5, 131072 bytes)\n[    0.051929] pinctrl core: initialized pinctrl subsystem\n[    0.052386] NET: Registered protocol family 16\n[    0.053241] schedtune: configured to support 8 boost groups\n[    0.053696] cpuidle: using governor qcom\n[    0.053780] NET: Registered protocol family 42\n[    0.054036] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.054903] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.055341] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.055372] Failed to create IPC log0\n[    0.055374] Failed to create IPC log1\n[    0.055375] Failed to create IPC log2\n[    0.055376] Failed to create IPC log3\n[    0.055378] Failed to create IPC log4\n[    0.055459] exit: IPA_USB init success!\n[    0.065317] console [pstore0] enabled\n[    0.065368] pstore: Registered ramoops as persistent store backend\n[    0.065371] ramoops: attached 0x400000@0xa0000000, ecc: 0/0\n[    0.069042] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.069349] platform soc:smem: assigned reserved memory node smem-mem@86000000\n[    0.070094] platform cce0000.qcom,venus: assigned reserved memory node venus_fw_region\n[    0.070642] platform 15700000.qcom,lpass: assigned reserved memory node adsp_fw_region@92a00000\n[    0.070791] platform 4080000.qcom,mss: assigned reserved memory node modem_fw_region@8ac00000\n[    0.086499] Unable to find DT property: qcom,msm-imem-download_mode\n[    0.087320] Unable to find DT property: qcom,msm-imem-emergency_download_mode\n[    0.088166] spmi spmi-0: PMIC arbiter version v3 (0x30000000)\n[    0.092275] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.093963] MSM Memory Dump base table set up\n[    0.093971] MSM Memory Dump apps data table set up\n[    0.094185] msm_watchdog 17817000.qcom,wdt: wdog absent resource not present\n[    0.094357] msm_watchdog 17817000.qcom,wdt: MSM Watchdog Initialized\n[    0.094458] sps:sps is ready.\n[    0.094870] gpu-sdm660 5065000.clock-controller: Registered GPU RBCPR clocks\n[    0.095844] qcom_glink_rpm soc:rpm-glink: failed to register early notif -22\n[    0.096833] gfx_mem_acc_corner: Bringing 0uV into 1-1uV\n[    0.096964] msm_gfx_ldo: Bringing 0uV into 400000-400000uV\n[    0.097017] GFX_LDO: msm_gfx_ldo_debugfs_init: debug_info node creation failed\n[    0.100978] gfx_stub_corner: supplied by regulator-dummy\n[    0.101939] qcom_smd_rpm_probe: RPM-SMD running version 0\n[    0.110419] cryptd: max_cpu_qlen set to 1000\n[    0.112016] gdsc_vfe0: supplied by gdsc_camss_top\n[    0.112118] gdsc_vfe1: supplied by gdsc_camss_top\n[    0.112225] gdsc_cpp: supplied by gdsc_camss_top\n[    0.113215] Failed to setup PIL ipc logging\n[    0.113439] KPI: Bootloader start count = 65802\n[    0.113442] KPI: Bootloader end count = 95975\n[    0.113444] KPI: Bootloader display count = 4080700013\n[    0.113446] KPI: Bootloader load kernel count = 4938\n[    0.113450] KPI: Kernel MPM timestamp = 106049\n[    0.113452] KPI: Kernel MPM Clock frequency = 32768\n[    0.113463] socinfo_print: v0.11, id=345, ver=1.0, raw_id=204, raw_ver=0, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65563, pmic_die_revision=131072 foundry_id=3 serial_number=1423545379 num_pmics=2\n[    0.115060] arm-smmu 16c0000.arm,smmu-anoc2: Couldn't get clock: smmu_aggr2_noc_clk\n[    0.115214] arm-smmu 5100000.arm,smmu-lpass_q6: Couldn't get clock: lpass_q6_smmu_clk\n[    0.115416] arm-smmu cd00000.arm,smmu-mmss: Couldn't get clock: mmss_mnoc_ahb_clk\n[    0.115499] arm-smmu 5040000.arm,smmu-kgsl: Couldn't get clock: gcc_gpu_cfg_ahb_clk\n[    0.115697] Error: Driver 'arm-smmu' is already registered, aborting...\n[    0.115890] qcom,qpnp-misc 800f000.qcom,spmi:qcom,pm660@0:qcom,misc@900: probe successful\n[    0.116098] SCSI subsystem initialized\n[    0.116170] usbcore: registered new interface driver usbfs\n[    0.116186] usbcore: registered new interface driver hub\n[    0.116208] usbcore: registered new device driver usb\n[    0.116325] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.116344] usb_phy_generic soc:usb_nop_phy: Linked as a consumer to regulator.0\n[    0.116659] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'warm' boot\n[    0.116684] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.116844] input: qpnp_pon as /devices/platform/soc/800f000.qcom,spmi/spmi-0/spmi0-00/800f000.qcom,spmi:qcom,pm660@0:qcom,power-on@800/input/input0\n[    0.117593] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'warm' boot\n[    0.117615] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from GP1 (Keypad_Reset1)\n[    0.117934] i2c-msm-v2 c175000.i2c: error on clk_get(core_clk):-517\n[    0.117939] i2c-msm-v2 c175000.i2c: error probe() failed with err:-517\n[    0.118053] i2c-msm-v2 c176000.i2c: error on clk_get(core_clk):-517\n[    0.118057] i2c-msm-v2 c176000.i2c: error probe() failed with err:-517\n[    0.118180] i2c-msm-v2 c1b6000.i2c: error on clk_get(core_clk):-517\n[    0.118184] i2c-msm-v2 c1b6000.i2c: error probe() failed with err:-517\n[    0.118276] media: Linux media interface: v0.10\n[    0.118294] videodev: Linux video capture interface: v2.00\n[    0.122150] tsens_tm_probe : unable to create IPC Logging 0 for tsens 0x00000000010ae000\n[    0.122154] tsens_tm_probe : unable to create IPC Logging 1 for tsens 0x00000000010ae000\n[    0.122156] tsens_tm_probe : unable to create IPC Logging 2 for tsens 0x00000000010ae000\n[    0.124227] PMIC@SID0: PM660 v2.0 options: 0, 0, 0, 0\n[    0.124330] PMIC@SID2: PM660L v2.0.1 options: 0, 0, 0, 0\n[    0.124470] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.124472] ipa ipa_plat_drv_probe:4842 fail to register with bus mgr!\n[    0.124958] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node adsp_region\n[    0.125047] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.125127] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_region\n[    0.130192] ION heap system created\n[    0.140784] Advanced Linux Sound Architecture Driver Initialized.\n[    0.141106] Bluetooth: Core ver 2.22\n[    0.141119] NET: Registered protocol family 31\n[    0.141121] Bluetooth: HCI device and connection manager initialized\n[    0.141127] Bluetooth: HCI socket layer initialized\n[    0.141132] Bluetooth: L2CAP socket layer initialized\n[    0.141136] Bluetooth: SCO socket layer initialized\n[    0.141355] ION heap adsp created at 0x00000000fcc00000 with size 800000\n[    0.141360] ION heap qsecom created at 0x00000000fd400000 with size 1400000\n[    0.141369] ION heap secure_display created at 0x00000000f4400000 with size 5c00000\n[    0.141372] ION heap secure_heap created\n[    0.145023] qcom-clk-smd-rpm soc:qcom,rpmcc: Registered RPM clocks\n[    0.145587] qcom,cpr4-mmss-ldo-regulator 5061000.cpr4-ctrl: Linked as a consumer to regulator.3\n[    0.145598] qcom,cpr4-mmss-ldo-regulator 5061000.cpr4-ctrl: Dropping the link to regulator.3\n[    0.150193] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=5400mV ncp_voltage=5400mV bst_voltage=5500mV\n[    0.150380] pm660_s4: Bringing 1uV into 1805000-1805000uV\n[    0.150616] pm660_s5: Bringing 1uV into 1224000-1224000uV\n[    0.150842] pm660_s6: Bringing 1uV into 504000-504000uV\n[    0.151067] pm660_l1: Bringing 1uV into 1150000-1150000uV\n[    0.151294] pm660_l2: Bringing 1uV into 950000-950000uV\n[    0.151522] pm660_l3: Bringing 1uV into 950000-950000uV\n[    0.151750] pm660_l5: Bringing 1uV into 525000-525000uV\n[    0.151985] pm660_l6: Bringing 1uV into 1200000-1200000uV\n[    0.152155] rpm_vreg_device_probe: pm660_l6_pin_ctrl: regulator type=0 does not support device tree property: qcom,init-pin-ctrl-mode\n[    0.152168] pm660_l6_pin_ctrl: Bringing 1uV into 1200000-1200000uV\n[    0.152402] pm660_l7: Bringing 1uV into 1200000-1200000uV\n[    0.152628] pm660_l8: Bringing 1uV into 1750000-1750000uV\n[    0.152857] pm660_l9: Bringing 1uV into 1750000-1750000uV\n[    0.153042] rpm_vreg_device_probe: pm660_l9_pin_ctrl: regulator type=0 does not support device tree property: qcom,init-pin-ctrl-mode\n[    0.153055] pm660_l9_pin_ctrl: Bringing 1uV into 1750000-1750000uV\n[    0.153293] pm660_l10: Bringing 1uV into 1780000-1780000uV\n[    0.153653] pm660_l11: Bringing 1uV into 1780000-1780000uV\n[    0.153888] pm660_l12: Bringing 1uV into 1780000-1780000uV\n[    0.154119] pm660_l13: Bringing 1uV into 1780000-1780000uV\n[    0.154348] pm660_l14: Bringing 1uV into 1710000-1710000uV\n[    0.154582] pm660_l15: Bringing 1uV into 1650000-1650000uV\n[    0.154810] pm660_l17: Bringing 1uV into 1650000-1650000uV\n[    0.155045] pm660_l19: Bringing 1uV into 3200000-3200000uV\n[    0.155220] rpm_vreg_device_probe: pm660_l19_pin_ctrl: regulator type=0 does not support device tree property: qcom,init-pin-ctrl-mode\n[    0.155232] pm660_l19_pin_ctrl: Bringing 1uV into 3200000-3200000uV\n[    0.155469] pm660l_s1: Bringing 1uV into 1125000-1125000uV\n[    0.155696] pm660l_s2: Bringing 1uV into 1050000-1050000uV\n[    0.155928] pm660l_s3_level: Bringing 1uV into 16-16uV\n[    0.156113] pm660l_s3_floor_level: Bringing 1uV into 16-16uV\n[    0.156369] pm660l_s3_level_ao: Bringing 1uV into 16-16uV\n[    0.156694] pm660l_s5_level: Bringing 1uV into 16-16uV\n[    0.156883] pm660l_s5_floor_level: Bringing 1uV into 16-16uV\n[    0.157134] pm660l_s5_level_ao: Bringing 1uV into 16-16uV\n[    0.157372] pm660l_l1: Bringing 1uV into 800000-800000uV\n[    0.157610] pm660l_l2: Bringing 1uV into 350000-350000uV\n[    0.157844] pm660l_l3: Bringing 1uV into 1710000-1710000uV\n[    0.158465] pm660l_l4: Bringing 1uV into 1700000-1700000uV\n[    0.158711] pm660l_l5: Bringing 1uV into 1721000-1721000uV\n[    0.158949] pm660l_l6: Bringing 1uV into 1700000-1700000uV\n[    0.159187] pm660l_l7: Bringing 1uV into 2700000-2700000uV\n[    0.159265] pm660l_l7: supplied by pm660_l10\n[    0.159442] pm660l_l8: Bringing 1uV into 3200000-3200000uV\n[    0.159675] pm660l_l9_level: Bringing 1uV into 16-16uV\n[    0.159864] pm660l_l9_floor_level: Bringing 1uV into 16-16uV\n[    0.160494] pm660l_l10_level: Bringing 1uV into 16-16uV\n[    0.160688] pm660l_l10_floor_level: Bringing 1uV into 16-16uV\n[    0.161000] pm660l_bob: Bringing 1uV into 3300000-3300000uV\n[    0.161194] pm660l_bob_pin1: Bringing 1uV into 3300000-3300000uV\n[    0.161258] cam_avdd_gpio_regulator: supplied by pm660l_bob\n[    0.161273] cam_rear_avdd_gpio_regulator: supplied by pm660l_bob\n[    0.161399] pm660l_bob_pin2: Bringing 1uV into 3300000-3300000uV\n[    0.161576] pm660l_bob_pin3: Bringing 1uV into 3300000-3300000uV\n[    0.162218] arm-smmu 16c0000.arm,smmu-anoc2: \tnon-coherent table walk\n[    0.162222] arm-smmu 16c0000.arm,smmu-anoc2: \t(IDR0.CTTW overridden by FW configuration)\n[    0.162227] arm-smmu 16c0000.arm,smmu-anoc2: \tstream matching with 6 register groups\n[    0.182713] arm-smmu 5100000.arm,smmu-lpass_q6: Couldn't get clock: lpass_q6_smmu_clk\n[    0.182984] arm-smmu cd00000.arm,smmu-mmss: Couldn't get clock: mmss_mnoc_ahb_clk\n[    0.183117] arm-smmu 5040000.arm,smmu-kgsl: Couldn't get clock: gcc_gpu_cfg_ahb_clk\n[    0.183319] i2c-msm-v2 c175000.i2c: error on clk_get(core_clk):-517\n[    0.183324] i2c-msm-v2 c175000.i2c: error probe() failed with err:-517\n[    0.183476] i2c-msm-v2 c176000.i2c: error on clk_get(core_clk):-517\n[    0.183480] i2c-msm-v2 c176000.i2c: error probe() failed with err:-517\n[    0.183645] i2c-msm-v2 c1b6000.i2c: error on clk_get(core_clk):-517\n[    0.183650] i2c-msm-v2 c1b6000.i2c: error probe() failed with err:-517\n[    0.183807] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.183810] ipa ipa_plat_drv_probe:4842 fail to register with bus mgr!\n[    0.183898] gcc-sdm660 100000.clock-controller: Linked as a consumer to regulator.45\n[    0.183918] gcc-sdm660 100000.clock-controller: Linked as a consumer to regulator.47\n[    0.195495] Registered GCC clocks\n[    0.195575] mmcc-sdm660 c8c0000.clock-controller: Linked as a consumer to regulator.48\n[    0.195592] mmcc-sdm660 c8c0000.clock-controller: Linked as a consumer to regulator.45\n[    0.195610] mmcc-sdm660 c8c0000.clock-controller: Linked as a consumer to regulator.34\n[    0.211977] mmcc-sdm660 c8c0000.clock-controller: Registered MMSS clocks\n[    0.212059] gpucc-sdm660 5065000.gfx: Linked as a consumer to regulator.45\n[    0.212077] gpucc-sdm660 5065000.gfx: Linked as a consumer to regulator.48\n[    0.212098] gpucc-sdm660 5065000.gfx: Dropping the link to regulator.48\n[    0.212114] gpucc-sdm660 5065000.gfx: Dropping the link to regulator.45\n[    0.212417] qcom,cpr4-mmss-ldo-regulator 5061000.cpr4-ctrl: Linked as a consumer to regulator.3\n[    0.212434] qcom,cpr4-mmss-ldo-regulator 5061000.cpr4-ctrl: Linked as a consumer to regulator.45\n[    0.212446] qcom,cpr4-mmss-ldo-regulator 5061000.cpr4-ctrl: Linked as a consumer to regulator.1\n[    0.212467] qcom,cpr4-mmss-ldo-regulator 5061000.cpr4-ctrl: Linked as a consumer to regulator.2\n[    0.212477] cpr4_sdm660_mmss_read_fuse_data: gfx_corner: CPR fusing revision = 0\n[    0.212602] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[0] open-loop= 585000 uV\n[    0.212606] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[1] open-loop= 645000 uV\n[    0.212608] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[2] open-loop= 725000 uV\n[    0.212611] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[3] open-loop= 790000 uV\n[    0.212613] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[4] open-loop= 870000 uV\n[    0.212616] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[5] open-loop= 925000 uV\n[    0.212717] cpr3_regulator_init_ctrl: gfx: Default CPR mode = open-loop\n[    0.227497] cpr3_regulator_debugfs_ctrl_add: gfx: cpr3-regulator debugfs base directory creation failed\n[    0.227706] cprh_kbss_read_fuse_data: apc0_pwrcl_corner: speed bin = 3\n[    0.227710] cprh_sdm660_kbss_read_fuse_data: apc0_pwrcl_corner: CPR fusing revision = 2\n[    0.227776] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused   LowSVS: open-loop= 614000 uV\n[    0.227779] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused      SVS: open-loop= 644000 uV\n[    0.227782] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused  SVSPLUS: open-loop= 688000 uV\n[    0.227785] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused      NOM: open-loop= 758000 uV\n[    0.227787] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused TURBO_L1: open-loop= 908000 uV\n[    0.227815] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused   LowSVS: quot[ 7]= 356\n[    0.227819] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused      SVS: quot[ 7]= 407, quot_offset[ 7]=  50\n[    0.227822] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused  SVSPLUS: quot[ 7]= 478, quot_offset[ 7]=  70\n[    0.227826] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused      NOM: quot[ 7]= 597, quot_offset[ 7]= 115\n[    0.227830] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused TURBO_L1: quot[ 7]= 823, quot_offset[ 7]= 225\n[    0.228052] cpr3_regulator_init_ctrl: apc0: Default CPR mode = full HW closed-loop\n[    0.228191] cpr3_regulator_debugfs_ctrl_add: apc0: cpr3-regulator debugfs base directory creation failed\n[    0.228314] cprh_kbss_read_fuse_data: apc1_perfcl_corner: speed bin = 3\n[    0.228318] cprh_sdm660_kbss_read_fuse_data: apc1_perfcl_corner: CPR fusing revision = 2\n[    0.228380] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused      SVS: open-loop= 664000 uV\n[    0.228383] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused  SVSPLUS: open-loop= 698000 uV\n[    0.228386] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused      NOM: open-loop= 778000 uV\n[    0.228389] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused    TURBO: open-loop= 888000 uV\n[    0.228410] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused      SVS: quot[ 7]= 542\n[    0.228413] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused  SVSPLUS: quot[ 7]= 607, quot_offset[ 7]=  65\n[    0.228417] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused      NOM: quot[ 7]= 776, quot_offset[ 7]= 165\n[    0.228421] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused    TURBO: quot[ 7]= 972, quot_offset[ 7]= 195\n[    0.228605] cpr3_regulator_init_ctrl: apc1: Default CPR mode = full HW closed-loop\n[    0.228683] cpr3_regulator_debugfs_ctrl_add: apc1: cpr3-regulator debugfs base directory creation failed\n[    0.229283] arm-smmu 5100000.arm,smmu-lpass_q6: Linked as a consumer to regulator.6\n[    0.229329] arm-smmu 5100000.arm,smmu-lpass_q6: \tnon-coherent table walk\n[    0.229333] arm-smmu 5100000.arm,smmu-lpass_q6: \t(IDR0.CTTW overridden by FW configuration)\n[    0.229339] arm-smmu 5100000.arm,smmu-lpass_q6: \tstream matching with 13 register groups\n[    0.230678] arm-smmu cd00000.arm,smmu-mmss: Linked as a consumer to regulator.70\n[    0.230690] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.230694] arm-smmu cd00000.arm,smmu-mmss: Bus client registration failed\n[    0.230700] arm-smmu cd00000.arm,smmu-mmss: Dropping the link to regulator.70\n[    0.230856] arm-smmu 5040000.arm,smmu-kgsl: Linked as a consumer to regulator.16\n[    0.230890] arm-smmu 5040000.arm,smmu-kgsl: \tnon-coherent table walk\n[    0.230894] arm-smmu 5040000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by FW configuration)\n[    0.230898] arm-smmu 5040000.arm,smmu-kgsl: \tstream matching with 3 register groups\n[    0.231510] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.231515] i2c-msm-v2 c175000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.231681] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.231946] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.231951] i2c-msm-v2 c176000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.232097] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.232324] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.232328] i2c-msm-v2 c1b6000.i2c: msm_bus_scale_register_client(mstr-id:84):0 (not a problem)\n[    0.232506] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.232738] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.232741] ipa ipa_plat_drv_probe:4842 fail to register with bus mgr!\n[    0.232806] gpucc-sdm660 5065000.gfx: Linked as a consumer to regulator.45\n[    0.232824] gpucc-sdm660 5065000.gfx: Linked as a consumer to regulator.48\n[    0.232844] gpucc-sdm660 5065000.gfx: Linked as a consumer to regulator.67\n[    0.233433] gpucc_gfx3d_clk: set OPP pair(19200000 Hz: 1 uV) on 5000000.qcom,kgsl-3d0\n[    0.233452] gpucc_gfx3d_clk: set OPP pair(647000000 Hz: 6 uV) on 5000000.qcom,kgsl-3d0\n[    0.233458] gpucc_gfx3d_clk: set OPP pair(750000000 Hz: 7 uV) on 5000000.qcom,kgsl-3d0\n[    0.233690] gpucc-sdm660 5065000.gfx: Registered GPUCC clocks\n[    0.233852] clk-cpu-osm 179c0000.qcom,clk-cpu-660: Linked as a consumer to regulator.68\n[    0.233870] clk-cpu-osm 179c0000.qcom,clk-cpu-660: Linked as a consumer to regulator.69\n[    0.233907] clk-cpu-osm 179c0000.qcom,clk-cpu-660: using pwrcl speed bin 3 and pvs_ver 0\n[    0.233918] clk-cpu-osm 179c0000.qcom,clk-cpu-660: using perfcl speed bin 3 and pvs_ver 0\n[    0.235310] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu0\n[    0.235351] add_opp: Set OPP pair (1612800000 Hz, 836000 uv) on cpu0\n[    0.235377] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu1\n[    0.235404] add_opp: Set OPP pair (1612800000 Hz, 836000 uv) on cpu1\n[    0.235430] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu2\n[    0.235456] add_opp: Set OPP pair (1612800000 Hz, 836000 uv) on cpu2\n[    0.235481] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu3\n[    0.235507] add_opp: Set OPP pair (1612800000 Hz, 836000 uv) on cpu3\n[    0.235534] add_opp: Set OPP pair (300000000 Hz, 680000 uv) on cpu4\n[    0.235555] add_opp: Set OPP pair (1804800000 Hz, 836000 uv) on cpu4\n[    0.235580] add_opp: Set OPP pair (300000000 Hz, 680000 uv) on cpu5\n[    0.235593] add_opp: Set OPP pair (1804800000 Hz, 836000 uv) on cpu5\n[    0.235600] add_opp: Set OPP pair (300000000 Hz, 680000 uv) on cpu6\n[    0.235605] add_opp: Set OPP pair (1804800000 Hz, 836000 uv) on cpu6\n[    0.235613] add_opp: Set OPP pair (300000000 Hz, 680000 uv) on cpu7\n[    0.235618] add_opp: Set OPP pair (1804800000 Hz, 836000 uv) on cpu7\n[    0.235621] populate_debugfs_dir: osm debugfs base directory creation failed\n[    0.235623] populate_debugfs_dir: osm debugfs base directory creation failed\n[    0.236011] clk_cpu_osm_driver_probe: OSM driver initialize\n[    0.236185] gdsc_gpu_gx: supplied by gfx_corner\n[    0.236495] arm-smmu cd00000.arm,smmu-mmss: Linked as a consumer to regulator.70\n[    0.236503] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.236507] arm-smmu cd00000.arm,smmu-mmss: Bus client registration failed\n[    0.236514] arm-smmu cd00000.arm,smmu-mmss: Dropping the link to regulator.70\n[    0.236737] legacy-dt-em: Registering EM of 0-3\n[    0.236904] legacy-dt-em: EM of CPU0 already loaded\n[    0.236978] legacy-dt-em: Registering EM of 4-7\n[    0.237030] thermal thermal_zone25: binding zone quiet-therm-step with cdev thermal-cpufreq-4 failed:-22\n[    0.237074] legacy-dt-em: EM of CPU4 already loaded\n[    0.237096] cpufreq: driver msm up and running\n[    0.237160] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.237162] ipa ipa_plat_drv_probe:4842 fail to register with bus mgr!\n[    0.237396] arm-smmu cd00000.arm,smmu-mmss: Linked as a consumer to regulator.70\n[    0.237404] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.237407] arm-smmu cd00000.arm,smmu-mmss: Bus client registration failed\n[    0.237411] arm-smmu cd00000.arm,smmu-mmss: Dropping the link to regulator.70\n[    0.237638] clocksource: Switched to clocksource arch_sys_counter\n[    0.289470] VFS: Disk quotas dquot_6.6.0\n[    0.289517] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.302034] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.302039] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.302092] mdss_pll c994400.qcom,mdss_dsi_pll: Linked as a consumer to regulator.15\n[    0.303001] dsi_pll_clock_register_14nm: Registered DSI PLL ndx=0 clocks successfully\n[    0.303053] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.303057] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.303085] mdss_pll c996400.qcom,mdss_dsi_pll: Linked as a consumer to regulator.15\n[    0.303906] dsi_pll_clock_register_14nm: Registered DSI PLL ndx=1 clocks successfully\n[    0.303937] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.303962] mdss_pll c011c00.qcom,mdss_dp_pll: Linked as a consumer to regulator.15\n[    0.304300] msm_bus_fabric_init_driver\n[    0.310466] msm_bus_dev_init_qos: Skipping QOS init for 1\n[    0.310508] msm_bus_dev_init_qos: Skipping QOS init for 727\n[    0.310511] msm_bus_dev_init_qos: Skipping QOS init for 728\n[    0.310556] msm_bus_device 1620000.ad-hoc-bus: Bus scaling driver probe successful\n[    0.311618] NET: Registered protocol family 2\n[    0.311738] IP idents hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.312830] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes)\n[    0.312863] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.313016] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.313307] TCP: Hash tables configured (established 32768 bind 32768)\n[    0.313383] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.313437] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.313568] NET: Registered protocol family 1\n[    0.314259] IPA smmu_info.s1_bypass=1 smmu_info.fast_map=0\n[    0.314384] ipa 14780000.qcom,ipa:ipa_smmu_ap: Linked as a consumer to 16c0000.arm,smmu-anoc2\n[    0.314649] iommu: Adding device 14780000.qcom,ipa:ipa_smmu_ap to group 0\n[    0.314722] ipa ipa2_uc_state_check:288 uC interface not initialized\n[    0.314727] ipa ipa_sps_irq_control_all:956 EP (2) not allocated.\n[    0.314729] ipa ipa_sps_irq_control_all:956 EP (5) not allocated.\n[    0.320256] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000014784000\n[    0.320260] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000014784000\n[    0.320263] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000014784000\n[    0.320267] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000014784000\n[    0.320270] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000014784000\n[    0.320273] sps:BAM 0x0000000014784000 is registered.\n[    0.321075] sps:BAM 0x0000000014784000 (va:0x(____ptrval____)) enabled: ver:0x27, number of pipes:20\n[    0.350334] IPA driver initialization was successful.\n[    0.350806] ipa 14780000.qcom,ipa:ipa_smmu_uc: Linked as a consumer to 16c0000.arm,smmu-anoc2\n[    0.351203] iommu: Adding device 14780000.qcom,ipa:ipa_smmu_uc to group 1\n[    0.351812] arm-smmu cd00000.arm,smmu-mmss: Linked as a consumer to regulator.70\n[    0.352204] arm-smmu cd00000.arm,smmu-mmss: \tnon-coherent table walk\n[    0.352207] arm-smmu cd00000.arm,smmu-mmss: \t(IDR0.CTTW overridden by FW configuration)\n[    0.352214] arm-smmu cd00000.arm,smmu-mmss: \tstream matching with 52 register groups\n[    0.361135] Trying to unpack rootfs image as initramfs...\n[    0.640575] Freeing initrd memory: 7484K\n[    0.642425] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.648300] Initialise system trusted keyrings\n[    0.648392] workingset: timestamp_bits=61 max_order=20 bucket_order=0\n[    0.652580] Registering sdcardfs 0.1\n[    0.652760] fuse init (API version 7.27)\n[    0.653315] [SDFAT] Filesystem version 2.4.5\n[    0.656992] Key type asymmetric registered\n[    0.656997] Asymmetric key parser 'x509' registered\n[    0.657037] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)\n[    0.657043] io scheduler mq-deadline registered\n[    0.657047] io scheduler kyber registered\n[    0.657084] io scheduler bfq registered\n[    0.665262] msm_mdss_get_res_byname: 'vbif_nrt_phys' resource not found\n[    0.665286] mdss_mdp_probe+0x1b8/0x2458->msm_dss_ioremap_byname: 'vbif_nrt_phys' msm_mdss_get_res_byname failed\n[    0.665438] mdp c900000.qcom,mdss_mdp: Linked as a consumer to regulator.15\n[    0.665865] mdss_mdp_irq_clk_setup: unable to get core gdsc regulator\n[    0.665997] mdss_mdp_irq_clk_register: unable to get clk: bimc_clk\n[    0.667073] No change in context(0==0), skip\n[    0.667870] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:0 num:0 rect:0 ndx:0x1 prio:0\n[    0.667874] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:4 num:1 rect:0 ndx:0x2 prio:1\n[    0.667908] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:1 num:6 rect:0 ndx:0x40 prio:2\n[    0.667919] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:1 num:6 rect:1 ndx:0x40 prio:2\n[    0.667922] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:5 num:7 rect:0 ndx:0x80 prio:3\n[    0.667935] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:5 num:7 rect:1 ndx:0x80 prio:3\n[    0.667938] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:9 num:12 rect:0 ndx:0x1000 prio:4\n[    0.667949] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:9 num:12 rect:1 ndx:0x1000 prio:4\n[    0.667962] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:2 num:10 rect:0 ndx:0x400 prio:0\n[    0.667971] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-pipe-sw-reset-off : u32 array read\n[    0.668056] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-ib-factor-overlap : u32 array read\n[    0.668062] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-bus-througput-factor : u32 array read\n[    0.668774] mdss_mdp_probe: mdss version = 0x30020000, bootloader display is on, num 1, intf_sel=0x00000100\n[    0.670005] mdss_smmu c900000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.670897] iommu: Adding device c900000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb to group 2\n[    0.671124] mdss_smmu c900000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb: Linked as a consumer to regulator.70\n[    0.671186] mdss_smmu_probe: iommu v2 domain[0] mapping and clk register successful!\n[    0.671243] mdss_smmu c900000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.672661] iommu: Adding device c900000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb to group 3\n[    0.672822] mdss_smmu c900000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb: Linked as a consumer to regulator.70\n[    0.672865] mdss_smmu_probe: iommu v2 domain[2] mapping and clk register successful!\n[    0.673280] mdss_dsi soc:qcom,mdss_dsi@0: Linked as a consumer to regulator.15\n[    0.673300] mdss_dsi soc:qcom,mdss_dsi@0: Linked as a consumer to regulator.24\n[    0.673334] mdss_dsi soc:qcom,mdss_dsi@0: Linked as a consumer to regulator.51\n[    0.674528] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->0\n[    0.674650] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_td4310_tianma_fhd_video:config0:1:none:cfg:single_dsi panel_name:qcom,mdss_dsi_td4310_tianma_fhd_video\n[    0.674683] mdss_dsi_panel_init: Panel Name = tianma td4310 fhd video mode dsi panel\n[    0.674766] mdss_dsi_parse_split_link_settings: enable 0 sublinks-count 0 lanes per sublink 0\n[    0.674800] mdss_dsi_panel_timing_from_dt: found new timing \"qcom,mdss_dsi_td4310_tianma_fhd_video\" ((____ptrval____))\n[    0.674816] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-post-panel-on-command\n[    0.674821] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-timing-switch-command\n[    0.674824] mdss_dsi_panel_get_dsc_cfg_np: cannot find dsc config node:config0\n[    0.674912] mdss_dsi_parse_panel_features: ulps feature disabled\n[    0.674916] mdss_dsi_parse_panel_features: ulps during suspend feature disabled\n[    0.674921] mdss_dsi_parse_dms_config: dynamic switch feature enabled: 0\n[    0.674966] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-on\n[    0.674971] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-off\n[    0.674989] dyn_fps: min = 48, max = 60\n[    0.675057] mdss_dsi_ctrl c994000.qcom,mdss_dsi_ctrl0: Linked as a consumer to regulator.35\n[    0.675081] mdss_dsi_ctrl c994000.qcom,mdss_dsi_ctrl0: Linked as a consumer to regulator.19\n[    0.675098] mdss_dsi_ctrl c994000.qcom,mdss_dsi_ctrl0: Linked as a consumer to regulator.20\n[    0.675117] mdss_dsi_parse_ctrl_params:4500 Unable to read qcom,display-id, data=(____ptrval____),len=20\n[    0.675144] mdss_dsi_parse_gpio_params: bklt_en gpio not specified\n[    0.675151] mdss_dsi_parse_gpio_params: avdd_en gpio not specified\n[    0.675258] msm_mdss_get_res_byname: 'dsi_phy_regulator' resource not found\n[    0.675276] mdss_dsi_retrieve_ctrl_resources+0xc0/0x230->msm_dss_ioremap_byname: 'dsi_phy_regulator' msm_mdss_get_res_byname failed\n[    0.675281] mdss_dsi_retrieve_ctrl_resources: ctrl_base=(____ptrval____) ctrl_size=400 phy_base=(____ptrval____) phy_size=588\n[    0.675382] dsi_panel_device_register: Continuous splash enabled\n[    0.675436] Unable to find fb node for device: c994000.qcom,mdss_dsi_ctrl0\n[    0.675515] mdss_register_panel: adding framebuffer device c994000.qcom,mdss_dsi_ctrl0\n[    0.678220] mdss_dsi_ctrl_probe: Dsi Ctrl->0 initialized, DSI rev:0x20010000, PHY rev:0x2\n[    0.678273] mdss_dsi_status_init: DSI status check interval:1000\n[    0.678899] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    0.678902] mdss_dp_probe: Error usbpd setup!\n[    0.679262] mdss_register_panel: adding framebuffer device soc:qcom,mdss_wb_panel\n[    0.679689] mdss_fb_probe: fb0: split_mode:0 left:0 right:0\n[    0.679777] mdss_panel_debugfs_init: Debugfs create dir failed with error: -19\n[    0.679780] mdss_fb_register: FrameBuffer[0] 1080x2160 registered successfully!\n[    0.679853] mdss_dsi_debugfs_setup: debugfs_create_dir dsi fail, error -19\n[    0.679856] mdss_dsi_debugfs_init: Error in initilizing dsi ctrl debugfs\n[    0.680111] mdss_fb_probe: fb1: split_mode:0 left:0 right:0\n[    0.680167] mdss_fb_register: FrameBuffer[1] 640x480 registered successfully!\n[    0.680223] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    0.681071] qcom-sps-dma c144000.qcom,sps-dma: dma_async_device_register: device has no channels!\n[    0.681118] qcom-sps-dma c184000.qcom,sps-dma: dma_async_device_register: device has no channels!\n[    0.683626] pil-q6v5-mss 4080000.qcom,mss: Linked as a consumer to regulator.45\n[    0.683664] pil-q6v5-mss 4080000.qcom,mss: Linked as a consumer to regulator.48\n[    0.683684] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    0.683711] minidump-id not found for modem\n[    0.683855] platform 4080000.qcom,mss:qcom,mba-mem@0: assigned reserved memory node pil_mba_region@94800000\n[    0.685022] subsys-pil-tz cce0000.qcom,venus: Linked as a consumer to regulator.9\n[    0.685294] minidump-id not found for venus\n[    0.685341] subsys-pil-tz cce0000.qcom,venus: for venus segments only will be dumped.\n[    0.685391] subsys-pil-tz cce0000.qcom,venus: for md_venus segments only will be dumped.\n[    0.685604] subsys-pil-tz 15700000.qcom,lpass: Linked as a consumer to regulator.59\n[    0.685612] minidump-id not found for adsp\n[    0.685705] subsys-pil-tz 15700000.qcom,lpass: for adsp segments only will be dumped.\n[    0.685750] subsys-pil-tz 15700000.qcom,lpass: for md_adsp segments only will be dumped.\n[    0.686113] minidump-id not found for a512_zap\n[    0.686154] subsys-pil-tz soc:qcom,kgsl-hyp: for a512_zap segments only will be dumped.\n[    0.686198] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a512_zap segments only will be dumped.\n[    0.692474] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.692646] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.692717] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.695080] qiib_driver_data_init: unable to create logging context\n[    0.695469] Error: Driver 'msm-dcc' is already registered, aborting...\n[    0.695780] icnss: Unable to create log context\n[    0.695783] icnss: Unable to create log long context\n[    0.695867] icnss 18800000.qcom,icnss: Linked as a consumer to 16c0000.arm,smmu-anoc2\n[    0.696326] iommu: Adding device 18800000.qcom,icnss to group 4\n[    0.696361] icnss: Recursive recovery allowed for WLAN\n[    0.696402] icnss 18800000.qcom,icnss: Linked as a consumer to regulator.27\n[    0.696424] icnss 18800000.qcom,icnss: Linked as a consumer to regulator.33\n[    0.696442] icnss 18800000.qcom,icnss: Linked as a consumer to regulator.29\n[    0.696534] icnss 18800000.qcom,icnss: Linked as a consumer to regulator.42\n[    0.696708] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.696806] icnss: Unable to create debugfs -19\n[    0.696877] icnss: Platform driver probed successfully\n[    0.697659] msm_serial_hs: Cannot create debugfs dir\n[    0.697998] uart_tx_gpio is not available\n[    0.698004] uart_rx_gpio is not available\n[    0.698009] uart_cts_gpio is not available\n[    0.698015] uart_rfr_gpio is not available\n[    0.698167] msm_serial_hs c1af000.uart: msm_hs_probe(): error creating logging context\n[    0.698494] sps: BAM device 0x000000000c184000 is not registered yet.\n[    0.698503] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000c184000\n[    0.698505] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000c184000\n[    0.698508] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000c184000\n[    0.698511] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000c184000\n[    0.698514] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000c184000\n[    0.698516] sps:BAM 0x000000000c184000 is registered.\n[    0.698778] msm_serial_hs c1af000.uart: msm_hs_probe(): error creating tx log context\n[    0.698782] msm_serial_hs c1af000.uart: msm_hs_probe(): error creating rx log context\n[    0.698785] msm_serial_hs c1af000.uart: msm_hs_probe(): error creating usr log context\n[    0.700069] msm_serial_debugfs_init(): Cannot create loopback.0 debug entry\n[    0.700103] c1af000.uart: ttyHS0 at MMIO 0xc1af000 (irq = 141, base_baud = 460800) is a MSM HS UART\n[    0.702390] random: fast init done\n[    0.702501] random: crng init done\n[    0.713785] brd: module loaded\n[    0.719827] loop: module loaded\n[    0.730152] zram: Added device: zram0\n[    0.731668] QSEECOM: qseecom_init_control: qseecom.qsee_version = 0x1001000\n[    0.731715] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.751178] QSEECOM: qseecom_register_heap_shmbridge: Could not get heap 19 info: No shmbridge created\n[    0.751638] QSEECOM: qseecom_register_heap_shmbridge: Could not get heap 26 info: No shmbridge created\n[    0.755776] qce 1de0000.qcedev: QTI Crypto 5.3.4 device found @0x1de0000\n[    0.755806] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000001dc4000\n[    0.755809] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000001dc4000\n[    0.755812] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000001dc4000\n[    0.755815] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000001dc4000\n[    0.755818] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000001dc4000\n[    0.755821] sps:BAM 0x0000000001dc4000 is registered.\n[    0.756047] sps:BAM 0x0000000001dc4000 (va:0x00000000cfae12d4) enabled: ver:0x27, number of pipes:16\n[    0.756336] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 51\n[    0.764063] kgsl-3d 5000000.qcom,kgsl-3d0: Linked as a consumer to regulator.16\n[    0.764118] kgsl-3d 5000000.qcom,kgsl-3d0: Linked as a consumer to regulator.71\n[    0.765546] platform 5040000.qcom,kgsl-iommu:gfx3d_user: Linked as a consumer to 5040000.arm,smmu-kgsl\n[    0.765671] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 5\n[    0.766054] platform 5040000.qcom,kgsl-iommu:gfx3d_secure: Linked as a consumer to 5040000.arm,smmu-kgsl\n[    0.766100] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 6\n[    0.767061] Error: Driver 'qcrypto' is already registered, aborting...\n[    0.767867] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    0.769025] SCSI Media Changer driver v0.25 \n[    0.772937] sps:BAM 0x000000000c184000 (va:0x00000000d8b375d5) enabled: ver:0x19, number of pipes:12\n[    0.773210] spi_qsd c1b7000.spi: msm_spi_probe: failed to create ipc log cntxt\n[    0.773660] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    0.775169] libphy: Fixed MDIO Bus: probed\n[    0.775172] tun: Universal TUN/TAP device driver, 1.6\n[    0.775240] PPP generic driver version 2.4.2\n[    0.775305] PPP BSD Compression module registered\n[    0.775308] PPP Deflate Compression module registered\n[    0.775349] PPP MPPE Compression module registered\n[    0.775354] NET: Registered protocol family 24\n[    0.775367] PPTP driver version 0.8.5\n[    0.775614] cnss_utils: Unable to create debugfs -19\n[    0.775702] wcnss_pre_alloc_init: Failed to create debugfs dir\n[    0.775704] CLD80211: Initializing\n[    0.775780] usbcore: registered new interface driver r8152\n[    0.775794] usbcore: registered new interface driver asix\n[    0.775809] usbcore: registered new interface driver ax88179_178a\n[    0.775825] usbcore: registered new interface driver cdc_ether\n[    0.775838] usbcore: registered new interface driver net1080\n[    0.775853] usbcore: registered new interface driver cdc_subset\n[    0.775866] usbcore: registered new interface driver zaurus\n[    0.775882] usbcore: registered new interface driver cdc_ncm\n[    0.780238] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.781534] msm-qusb-phy c012000.qusb: c012000.qusb supply USB3_GDSC not found, using dummy regulator\n[    0.781566] msm-qusb-phy c012000.qusb: Linked as a consumer to regulator.0\n[    0.781606] msm-qusb-phy c012000.qusb: Linked as a consumer to regulator.51\n[    0.781628] msm-qusb-phy c012000.qusb: Linked as a consumer to regulator.57\n[    0.781647] msm-qusb-phy c012000.qusb: Linked as a consumer to regulator.34\n[    0.781875] msm-qusb-phy c014000.qusb: c014000.qusb supply USB3_GDSC not found, using dummy regulator\n[    0.781885] msm-qusb-phy c014000.qusb: Linked as a consumer to regulator.0\n[    0.781903] msm-qusb-phy c014000.qusb: Linked as a consumer to regulator.51\n[    0.781917] msm-qusb-phy c014000.qusb: Linked as a consumer to regulator.57\n[    0.781929] msm-qusb-phy c014000.qusb: Linked as a consumer to regulator.34\n[    0.782829] msm-usb-ssphy-qmp c010000.ssphy: Linked as a consumer to regulator.51\n[    0.782847] msm-usb-ssphy-qmp c010000.ssphy: Linked as a consumer to regulator.34\n[    0.784101] msm-dwc3 a800000.ssusb: Linked as a consumer to regulator.4\n[    0.788888] thermal thermal_zone31: binding zone mpm-lowf with cdev thermal-devfreq-0 failed:-22\n[    0.788898] thermal thermal_zone32: binding zone camera-lowf with cdev thermal-devfreq-0 failed:-22\n[    0.788963] kgsl kgsl-3d0: Bus scaling not enabled\n[    0.791783] dwc3 a800000.dwc3: Failed to get clk 'ref': -2\n[    0.792135] dwc3 a800000.dwc3: changing max_speed on rev 00000000\n[    0.794307] dwc3 a800000.dwc3: Error getting ipc_log_ctxt\n[    0.794311] dwc3 a800000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    0.795107] Invalid index Defaulting curr to 0\n[    0.795740] msm-dwc3 a800000.ssusb: Dropping the link to regulator.4\n[    0.796937] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.796942] ehci-platform: EHCI generic platform driver\n[    0.797244] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    0.797247] ohci-platform: OHCI generic platform driver\n[    0.797873] usbcore: registered new interface driver usb-storage\n[    0.797887] usbcore: registered new interface driver usb_ehset_test\n[    0.797900] usbcore: registered new interface driver lvs\n[    0.798681] usb_qcrndis_init: failed to register diag -17\n[    0.798882] usbcore: registered new interface driver xpad\n[    0.799076] i2c-msm-v2 c175000.i2c: msm_bus_scale_register_client(mstr-id:86):0xb (ok)\n[    0.810176] NVT-ts 1-0062: 1-0062 supply vcc_i2c-supply not found, using dummy regulator\n[    0.810207] NVT-ts 1-0062: Linked as a consumer to regulator.0\n[    0.810353] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x0d1300c8 OPER:0x00000090\n[    0.810476] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.810581] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.810685] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.810789] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.860102] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.860207] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.860311] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.860416] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.860520] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.890102] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.890206] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.890311] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.890415] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.890519] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.910104] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.910208] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.910312] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.910415] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.910519] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.910627] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    0.910732] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    0.910836] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    0.910940] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    0.911045] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    0.930103] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.930207] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.930311] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.930415] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.930519] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.980103] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.980206] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.980310] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.980414] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    0.980522] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.010113] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.010217] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.010321] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.010424] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.010528] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.030102] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.030206] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.030310] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.030414] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.030518] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.030622] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    1.030727] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    1.030831] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    1.030935] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    1.031039] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    1.050106] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.050211] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.050315] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.050419] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.050523] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.100102] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.100206] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.100310] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.100414] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.100518] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.130102] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.130206] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.130310] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.130413] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.130517] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.150102] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.150207] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.150310] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.150414] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.150518] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.150623] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    1.150727] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    1.150831] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    1.150935] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    1.151039] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    1.170102] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.170207] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.170311] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.170415] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.170519] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.220102] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.220206] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.220310] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.220414] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.220518] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.250101] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.250205] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.250309] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.250413] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.250517] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.270102] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.270206] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.270310] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.270414] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.270518] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.270623] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    1.270727] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    1.270831] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    1.270936] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    1.271040] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    1.290102] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.290207] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.290310] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.290414] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.290518] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.340102] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.340206] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.340310] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.340414] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.340517] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.370103] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.370206] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.370310] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.370414] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.370518] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:2) mode:FIFO slv_addr:0x62 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.390102] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.390206] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.390310] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.390413] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.390517] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:3) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000090\n[    1.390622] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    1.390725] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    1.390830] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    1.390933] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    1.391037] i2c-msm-v2 c175000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:6 tx:1) mode:FIFO slv_addr:0x1 MSTR_STS:0x091343c8 OPER:0x00000010\n[    1.410041] NVT-ts: probe of 1-0062 failed with error -22\n[    1.410084] nvt_driver_init: finished\n[    1.411339] input: qti-haptics as /devices/platform/soc/800f000.qcom,spmi/spmi-0/spmi0-01/800f000.qcom,spmi:qcom,pm660@1:qcom,haptic@c000/input/input1\n[    1.411972] Macle fpc1020_probe failed as fpsensor=2(1=fp)\n[    1.411979] fpc1020: probe of soc:fpc1020 failed with error -1\n[    1.412087] fpc1020_init OK\n[    1.412377] input: uinput-goodix as /devices/virtual/input/input2\n[    1.412459] gf_spi: version V1.2.10\n[    1.412586] gf_spi: status = 0x0\n[    1.412935] Macle hall_probe\n[    1.412949] Macle hall irq_gpio=1241\n[    1.413017] input: hall-switch-input as /devices/virtual/input/input3\n[    1.413086] hall-switch soc:hall_switch: Linked as a consumer to regulator.31\n[    1.413370] hall_probe: gpios = 1, gpion=1\n[    1.413430] Macle hall irq = 235\n[    1.413544] genirq: irq_chip msmgpio did not update eff. affinity mask of irq 235\n[    1.413723] hall_probe end\n[    1.414415] rtc-pm8xxx 800f000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: rtc core: registered pm8xxx_rtc as rtc0\n[    1.414471] rtc-pm8xxx 800f000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: setting system clock to 1973-06-23 09:11:43 UTC (109674703)\n[    1.414703] i2c /dev entries driver\n[    1.415397] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-rot-cdp-setting : doesn't exist in device tree\n[    1.415404] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-rot-vbif-memtype : doesn't exist in device tree\n[    1.415408] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-rot-qos-lut : doesn't exist in device tree\n[    1.415412] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-rot-danger-lut : doesn't exist in device tree\n[    1.415415] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-rot-safe-lut : doesn't exist in device tree\n[    1.415419] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-qos-lut : doesn't exist in device tree\n[    1.415421] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-danger-lut : doesn't exist in device tree\n[    1.415424] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-safe-lut : doesn't exist in device tree\n[    1.415718] sde_smmu_callback: <SDEROT_INFO> sde_smmu_callback registered domain: 1\n[    1.415722] sde_smmu_callback: <SDEROT_INFO> sde_smmu_callback registered domain: 0\n[    1.415774] sde_rotator c900000.qcom,mdss_rotator: Linked as a consumer to regulator.15\n[    1.416839] No change in context(0==0), skip\n[    1.418230] sde_rotator c900000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    1.419103] msm_vidc:  err: Failed to create debugfs for msm_vidc\n[    1.423406] msm_vidc_v4l2 cc00000.qcom,vidc: Linked as a consumer to regulator.70\n[    1.423427] msm_vidc_v4l2 cc00000.qcom,vidc: Linked as a consumer to regulator.9\n[    1.423442] msm_vidc_v4l2 cc00000.qcom,vidc: Linked as a consumer to regulator.10\n[    1.425390] msm_vidc_v4l2 cc00000.qcom,vidc:non_secure_cb: Linked as a consumer to cd00000.arm,smmu-mmss\n[    1.427531] iommu: Adding device cc00000.qcom,vidc:non_secure_cb to group 7\n[    1.427881] msm_vidc_v4l2 cc00000.qcom,vidc:secure_bitstream_cb: Linked as a consumer to cd00000.arm,smmu-mmss\n[    1.430145] iommu: Adding device cc00000.qcom,vidc:secure_bitstream_cb to group 8\n[    1.430467] msm_vidc_v4l2 cc00000.qcom,vidc:secure_pixel_cb: Linked as a consumer to cd00000.arm,smmu-mmss\n[    1.431747] iommu: Adding device cc00000.qcom,vidc:secure_pixel_cb to group 9\n[    1.432058] msm_vidc_v4l2 cc00000.qcom,vidc:secure_non_pixel_cb: Linked as a consumer to cd00000.arm,smmu-mmss\n[    1.433755] iommu: Adding device cc00000.qcom,vidc:secure_non_pixel_cb to group 10\n[    1.439111] msm_vidc_v4l2 cc00000.qcom,vidc: Dropping the link to regulator.10\n[    1.439139] msm_vidc_v4l2 cc00000.qcom,vidc: Dropping the link to regulator.9\n[    1.439149] msm_vidc_v4l2 cc00000.qcom,vidc: Dropping the link to regulator.70\n[    1.440625] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cb1: Linked as a consumer to cd00000.arm,smmu-mmss\n[    1.441337] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb1 to group 11\n[    1.441472] CAM-SMMU cam_smmu_populate_sids:2118\n               __debug cnt = 8, cb->name: :vfe sid [0] = 3072\n[    1.441475] CAM-SMMU cam_smmu_populate_sids:2118\n               __debug cnt = 8, cb->name: :vfe sid [1] = 3073\n[    1.441479] CAM-SMMU cam_smmu_populate_sids:2118\n               __debug cnt = 8, cb->name: :vfe sid [2] = 3074\n[    1.441481] CAM-SMMU cam_smmu_populate_sids:2118\n               __debug cnt = 8, cb->name: :vfe sid [3] = 3075\n[    1.441655] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cb2: Linked as a consumer to cd00000.arm,smmu-mmss\n[    1.442031] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb2 to group 12\n[    1.442161] CAM-SMMU cam_smmu_populate_sids:2118\n               __debug cnt = 2, cb->name: :cpp sid [0] = 2560\n[    1.442318] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cb4: Linked as a consumer to cd00000.arm,smmu-mmss\n[    1.442691] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb4 to group 13\n[    1.442822] CAM-SMMU cam_smmu_populate_sids:2118\n               __debug cnt = 2, cb->name: :jpeg_enc0 sid [0] = 2048\n[    1.442972] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cb5: Linked as a consumer to cd00000.arm,smmu-mmss\n[    1.443362] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb5 to group 14\n[    1.443502] CAM-SMMU cam_smmu_populate_sids:2118\n               __debug cnt = 2, cb->name: :jpeg_dma sid [0] = 2049\n[    1.446073] msm ca00000.qcom,msm-cam: Entity type for entity msm_cci was not initialized!\n[    1.448272] msm ca00000.qcom,msm-cam: Entity type for entity msm_csiphy was not initialized!\n[    1.448635] msm ca00000.qcom,msm-cam: Entity type for entity msm_csiphy was not initialized!\n[    1.448868] msm ca00000.qcom,msm-cam: Entity type for entity msm_csiphy was not initialized!\n[    1.449607] msm ca00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    1.449836] msm ca00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    1.450121] msm ca00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    1.450347] msm ca00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    1.451042] msm_actuator_platform_probe:1986 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    1.451048] msm ca00000.qcom,msm-cam: Entity type for entity msm_actuator was not initialized!\n[    1.454311] qcom,eeprom ca0c000.qcom,cci:qcom,eeprom@0: Linked as a consumer to regulator.17\n[    1.460072] msm_camera_config_single_vreg: cam_vdig get failed\n[    1.472114] qcom,eeprom ca0c000.qcom,cci:qcom,eeprom@0: Linked as a consumer to regulator.35\n[    1.491522] msm_cci ca0c000.qcom,cci: Linked as a consumer to regulator.70\n[    1.491544] msm_cci ca0c000.qcom,cci: Linked as a consumer to regulator.11\n[    1.491820] msm_cci_init:1438: hw_version = 0x10060000\n[    2.030618] i=2 flag offset 412\n[    2.030620] Invalid flag = 0x0\n[    2.030622] i=1 flag offset 386\n[    2.030624] Invalid flag = 0x0\n[    2.030626] i=0 flag offset 360\n[    2.030629] whyred_s5k5e8_ofilm_i_get_otp_vendor_module_id flag = 0x55, mid = 0x7, lensid = 0x1f, sensorid = 0x9 \n[    2.030633] get_otp_vendor_module_id 1859 eeprom_name=whyred_s5k5e8_ofilm_i, module_id=0x7\n[    2.030685] msm_cci ca0c000.qcom,cci: Dropping the link to regulator.11\n[    2.030710] msm_cci ca0c000.qcom,cci: Dropping the link to regulator.70\n[    2.043871] qcom,eeprom ca0c000.qcom,cci:qcom,eeprom@0: Dropping the link to regulator.35\n[    2.055900] msm_camera_config_single_vreg can't disable cam_vdig\n[    2.061940] qcom,eeprom ca0c000.qcom,cci:qcom,eeprom@0: Dropping the link to regulator.17\n[    2.069999] msm ca00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    2.070258] msm_eeprom_platform_probe failed 1958\n[    2.070313] msm ca00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    2.070557] msm_eeprom_platform_probe failed 1958\n[    2.070613] msm ca00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    2.070815] msm_eeprom_platform_probe failed 1958\n[    2.070868] msm ca00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    2.071061] msm_eeprom_platform_probe failed 1958\n[    2.071113] msm ca00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    2.074109] qcom,eeprom ca0c000.qcom,cci:qcom,eeprom@7: Linked as a consumer to regulator.17\n[    2.080252] msm_camera_config_single_vreg: cam_vdig get failed\n[    2.092291] qcom,eeprom ca0c000.qcom,cci:qcom,eeprom@7: Linked as a consumer to regulator.35\n[    2.111171] msm_cci ca0c000.qcom,cci: Linked as a consumer to regulator.70\n[    2.111188] msm_cci ca0c000.qcom,cci: Linked as a consumer to regulator.11\n[    2.111239] msm_cci_init:1438: hw_version = 0x10060000\n[    2.650615] i=2 flag offset 412\n[    2.650617] Invalid flag = 0x0\n[    2.650620] i=1 flag offset 386\n[    2.650621] Invalid flag = 0x0\n[    2.650623] i=0 flag offset 360\n[    2.650626] whyred_s5k5e8_qtech_ii_get_otp_vendor_module_id flag = 0x55, mid = 0x7, lensid = 0x1f, sensorid = 0x9 \n[    2.650629] get_otp_vendor_module_id 1859 eeprom_name=whyred_s5k5e8_qtech_ii, module_id=0x0\n[    2.650665] msm_cci ca0c000.qcom,cci: Dropping the link to regulator.11\n[    2.650674] msm_cci ca0c000.qcom,cci: Dropping the link to regulator.70\n[    2.663788] qcom,eeprom ca0c000.qcom,cci:qcom,eeprom@7: Dropping the link to regulator.35\n[    2.675814] msm_camera_config_single_vreg can't disable cam_vdig\n[    2.681844] qcom,eeprom ca0c000.qcom,cci:qcom,eeprom@7: Dropping the link to regulator.17\n[    2.689897] msm ca00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    2.691319] msm ca00000.qcom,msm-cam: Entity type for entity msm_camera_flash was not initialized!\n[    2.691493] msm ca00000.qcom,msm-cam: Entity type for entity msm_camera_flash was not initialized!\n[    2.691571] qcom,camera-flash soc:qcom,camera-flash@1: Led torch-light0 renamed to torch-light0_1 due to name collision\n[    2.692425] msm ca00000.qcom,msm-cam: Entity type for entity msm_sensor_init was not initialized!\n[    2.693615] MSM-CPP cpp_probe:4674 Cx ipeak Registration Unsuccessful\n[    2.693671] msm_cpp ca04000.qcom,cpp: Linked as a consumer to regulator.70\n[    2.693683] msm_cpp ca04000.qcom,cpp: Linked as a consumer to regulator.11\n[    2.693700] msm_cpp ca04000.qcom,cpp: Linked as a consumer to regulator.14\n[    2.696860] MSM-CPP cpp_init_hardware:1145 CPP HW Version: 0x60010002\n[    2.696872] MSM-CPP cpp_init_hardware:1163 stream_cnt:0\n[    2.696882] msm ca00000.qcom,msm-cam: Entity type for entity ca04000.qcom,cpp was not initialized!\n[    2.697041] MSM-CPP cpp_release_hardware:1226 cpp hw release done\n[    2.697940] CAM-SOC msm_camera_get_reg_base:865 err: mem resource vfe_fuse not found\n[    2.697943] CAM-SOC msm_camera_get_res_size:908 err: mem resource vfe_fuse not found\n[    2.697969] msm_vfe48 ca10000.qcom,vfe0: Linked as a consumer to regulator.12\n[    2.697982] msm_vfe48 ca10000.qcom,vfe0: Linked as a consumer to regulator.11\n[    2.698016] msm_vfe48 ca10000.qcom,vfe0: Linked as a consumer to regulator.70\n[    2.698405] msm ca00000.qcom,msm-cam: Entity type for entity ca10000.qcom,vfe0 was not initialized!\n[    2.698525] CAM-SOC msm_camera_get_reg_base:865 err: mem resource vfe_fuse not found\n[    2.698527] CAM-SOC msm_camera_get_res_size:908 err: mem resource vfe_fuse not found\n[    2.698546] msm_vfe48 ca14000.qcom,vfe1: Linked as a consumer to regulator.13\n[    2.698557] msm_vfe48 ca14000.qcom,vfe1: Linked as a consumer to regulator.11\n[    2.698577] msm_vfe48 ca14000.qcom,vfe1: Linked as a consumer to regulator.70\n[    2.698781] msm ca00000.qcom,msm-cam: Entity type for entity ca14000.qcom,vfe1 was not initialized!\n[    2.700292] msm_ispif ca31000.qcom,ispif: Linked as a consumer to regulator.11\n[    2.700305] msm_ispif ca31000.qcom,ispif: Linked as a consumer to regulator.12\n[    2.700317] msm_ispif ca31000.qcom,ispif: Linked as a consumer to regulator.13\n[    2.700738] msm ca00000.qcom,msm-cam: Entity type for entity ca31000.qcom,ispif was not initialized!\n[    2.701064] __msm_jpeg_init:1576] Jpeg Device id 0\n[    2.701189] msm_jpeg ca1c000.qcom,jpeg: Linked as a consumer to regulator.70\n[    2.701201] msm_jpeg ca1c000.qcom,jpeg: Linked as a consumer to regulator.11\n[    2.701676] msm_jpegdma caa0000.qcom,jpeg: Linked as a consumer to regulator.70\n[    2.701689] msm_jpegdma caa0000.qcom,jpeg: Linked as a consumer to regulator.11\n[    2.702553] msm ca00000.qcom,msm-cam: Entity type for entity msm_buf_mngr was not initialized!\n[    2.702895] uvcvideo: Unable to create debugfs directory\n[    2.702925] usbcore: registered new interface driver uvcvideo\n[    2.702926] USB Video Class driver (1.1.1)\n[    2.703503] QCOM-BATT: qcom_batt_create_debugfs: Couldn't create battery debugfs rc=-19\n[    2.703745] PMI: smblib_disable_power_role_switch_callback: power_role_switch = enabled\n[    2.704036] PMI: smblib_get_charge_param: usb input current limit = 1500000 (0x3c)\n[    2.704069] PMI: smblib_set_charge_param: usb otg current limit = 250000 (0x00)\n[    2.704129] PMI: smblib_set_charge_param: dc input current limit = 2000000 (0x50)\n[    3.251134] PMI: smblib_set_charge_param: dc icl PT <8V = 625000 (0x19)\n[    3.251146] PMI: smblib_set_charge_param: dc icl PT >8V = 555555 (0x16)\n[    3.251158] PMI: smblib_set_charge_param: dc icl div2 <5.5V = 909090 (0x24)\n[    3.251170] PMI: smblib_set_charge_param: dc icl div2 5.5-6.5V = 769230 (0x1e)\n[    3.251181] PMI: smblib_set_charge_param: dc icl div2 6.5-8.0V = 625000 (0x19)\n[    3.251192] PMI: smblib_set_charge_param: dc icl div2 >8.0V = 454545 (0x12)\n[    3.251995] enter sysfs create file thermal\n[    3.252032] PMI: smblib_set_charge_param: buck switching frequency = 1050 (0x08)\n[    3.252085] qcom,qpnp-smb2 800f000.qcom,spmi:qcom,pm660@0:qcom,qpnp-smb2: Linked as a consumer to regulator.72\n[    3.252103] PMI: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    3.252108] PMI: smblib_update_usb_type: APSD=UNKNOWN PD=0\n[    3.252167] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.252206] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.252238] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    3.252263] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    3.252293] PMI: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    3.252314] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    3.252330] get prop 147 is not supported in usb\n[    3.252343] PMI: smblib_usb_plugin_locked: IRQ: usbin-plugin detached\n[    3.252349] PMI: smblib_handle_usb_typec_change: Scheduling OTG work\n[    3.252363] PMI: smblib_handle_usb_source_change: APSD_STATUS = 0x00\n[    3.252366] PMI: smblib_handle_usb_source_change: chg->real_charger_type = 0x00\n[    3.252378] PMI: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    3.252381] PMI: smblib_handle_hvdcp_check_timeout: IRQ: hvdcp_check_timeout falling\n[    3.252384] PMI: smblib_handle_sdp_enumeration_done: IRQ: sdp-enumeration-done falling\n[    3.252387] PMI: smblib_handle_slow_plugin_timeout: IRQ: slow-plugin-timeout falling\n[    3.252423] PMI: smblib_get_charge_param: float voltage = 4395000 (0x79)\n[    3.252437] PMI: smblib_get_charge_param: fast charge current = 2000000 (0x50)\n[    3.252452] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    3.252488] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    3.252555] QCOM-BATT: pl_fcc_vote_callback: cp_fcc_ua=2300000 total_fcc_ua=2300000 forced_main_fcc=0\n[    3.252561] QCOM-BATT: pl_disable_vote_callback: Couldn't read primary charger FCC upper limit, rc=-61\n[    3.252574] smblib_adjust_jeita_cc_config fcc val_u  = 2300000\n[    3.252586] PMI: smblib_get_charge_param: jeita fcc reduction = 1400000 (0x38)\n[    3.252589] lct smblib_adjust_jeita_cc_config jeita cc current_cc_minus_ua = 1400000\n[    3.252600] PMI: smblib_set_charge_param: jeita fcc reduction = 1200000 (0x30)\n[    3.252602] smblib_adjust_jeita_cc_config jeita cc has changed ,write it back ,write result = 0\n[    3.252605] PMI: smblib_set_charge_param: fast charge current = 2300000 (0x5c)\n[    3.252617] PMI: smblib_set_charge_param: float voltage = 4400000 (0x79)\n[    3.252630] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.252642] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    3.252656] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.252668] QCOM-BATT: pl_disable_vote_callback: parallel charging disabled\n[    3.252680] PMI: smblib_set_charge_param: float voltage = 4400000 (0x79)\n[    3.252716] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    3.252732] QCOM-BATT: pl_fcc_vote_callback: cp_fcc_ua=2300000 total_fcc_ua=2300000 forced_main_fcc=0\n[    3.252735] QCOM-BATT: pl_disable_vote_callback: Couldn't read primary charger FCC upper limit, rc=-61\n[    3.252746] PMI: smblib_set_charge_param: float voltage = 4400000 (0x79)\n[    3.252748] QCOM-BATT: pl_disable_vote_callback: parallel charging disabled\n[    3.252777] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.252807] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.252835] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    3.252855] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    3.252882] PMI: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    3.252902] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    3.252915] get prop 147 is not supported in usb\n[    3.252924] PMI: smblib_handle_usb_source_change: APSD_STATUS = 0x00\n[    3.252927] PMI: smblib_handle_chg_state_change: IRQ: determine-initial-status\n[    3.252964] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.252976] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    3.252988] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.253019] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.253031] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    3.253042] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.253065] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.253186] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    3.253212] QCOM-BATT: pl_fcc_vote_callback: cp_fcc_ua=2300000 total_fcc_ua=2300000 forced_main_fcc=0\n[    3.253215] QCOM-BATT: pl_disable_vote_callback: Couldn't read primary charger FCC upper limit, rc=-61\n[    3.253227] PMI: smblib_set_charge_param: float voltage = 4400000 (0x79)\n[    3.253229] QCOM-BATT: pl_disable_vote_callback: parallel charging disabled\n[    3.253247] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.253259] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    3.253271] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.253300] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.253312] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    3.253323] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.253345] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.253438] PMI: smblib_handle_wdog_bark: IRQ: determine-initial-status\n[    3.253464] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.253476] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    3.253488] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.253517] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.253529] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    3.253540] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.253561] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.259078] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    3.259194] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.259273] QPNP SMB2 probed successfully usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    3.261830] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.261843] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    3.261855] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.261896] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.261908] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    3.261919] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.261943] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.262062] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.262083] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.262098] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    3.262121] PMI: smblib_get_charge_param: float voltage = 4395000 (0x79)\n[    3.262135] PMI: smblib_get_charge_param: fast charge current = 2300000 (0x5c)\n[    3.262149] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    3.262185] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.262215] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.262245] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    3.262269] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    3.262300] PMI: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    3.262320] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    3.262335] get prop 147 is not supported in usb\n[    3.262352] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    3.262382] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    3.266412] reg-cooling-device soc:qcom,rpm-smd:rpm-regulator-smpb3:cx-cdev: Linked as a consumer to regulator.46\n[    3.269313] device-mapper: uevent: version 1.0.3\n[    3.269446] device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel@redhat.com\n[    3.269609] device-mapper: android-verity: Cannot create android_verity debugfs directory: -19\n[    3.270075] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in devicetree\n[    3.270081] bt_power_populate_dt_pinfo: wl-reset-gpio not provided in devicetree\n[    3.270099] bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    3.270102] bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    3.270117] bt_dt_parse_vreg_info: qca,bt-vdd-aon: is not provided in device tree\n[    3.270119] bt_dt_parse_vreg_info: qca,bt-vdd-dig: is not provided in device tree\n[    3.270122] bt_dt_parse_vreg_info: qca,bt-vdd-rfa1: is not provided in device tree\n[    3.270125] bt_dt_parse_vreg_info: qca,bt-vdd-rfa2: is not provided in device tree\n[    3.270127] bt_dt_parse_vreg_info: qca,bt-vdd-asd: is not provided in device tree\n[    3.271161] sdhci: Secure Digital Host Controller Interface driver\n[    3.271162] sdhci: Copyright(c) Pierre Ossman\n[    3.271164] sdhci-pltfm: SDHCI platform and OF driver helper\n[    3.271798] usbcore: registered new interface driver usbhid\n[    3.271799] usbhid: USB HID core driver\n[    3.271836] ashmem: initialized\n[    3.271839] wlan: Loading driver v5.2.05.23C\n[    3.271858] qdf_print_ctrl_register: Allocated print control object 0\n[    3.272884] sdhci_msm c0c4000.sdhci: Failed to get dll hsr settings from dt\n[    3.272892] sdhci_msm c0c4000.sdhci: core_reset unavailable,err = -2\n[    3.272896] sdhci_msm c0c4000.sdhci: Reset data parsing error\n[    3.274547] ipa ipa2_uc_reg_rdyCB:1726 bad parm. inout=          (null) \n[    3.274689] wlan_hdd_state wlan major(504) initialized\n[    3.275576] bimc-bwmon 1008000.qcom,cpu-cpu-ddr-bwmon: BW HWmon governor registered.\n[    3.277103] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-cpu-ddr-latmon: Memory Latency governor registered.\n[    3.277397] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-computemon: Compute governor registered.\n[    3.277622] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-cpu-ddr-latmon: Memory Latency governor registered.\n[    3.277790] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-computemon: Compute governor registered.\n[    3.278637] sdhci_msm c0c4000.sdhci: Linked as a consumer to regulator.54\n[    3.278666] sdhci_msm c0c4000.sdhci: Linked as a consumer to regulator.31\n[    3.281443] adc_probe : unable to create IPC Logging 0 for qcom,pm660@0 ADC\n[    3.281446] adc_probe : unable to create IPC Logging 1 for qcom,pm660@0 ADC\n[    3.283392] usbcore: registered new interface driver snd-usb-audio\n[    3.283517] uaudio-qmi soc:usb_audio_qmi_dev: Linked as a consumer to 5100000.arm,smmu-lpass_q6\n[    3.283590] iommu: Adding device soc:usb_audio_qmi_dev to group 15\n[    3.284154] mmc0: CQHCI version 5.10\n[    3.284895] mmc0: SDHCI controller on c0c4000.sdhci [c0c4000.sdhci] using 64-bit ADMA in CMDQ mode\n[    3.288771] apr_probe: Unable to create ipc log context\n[    3.289338] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    3.289764] i2c-msm-v2 c1b6000.i2c: msm_bus_scale_register_client(mstr-id:84):0x1b (ok)\n[    3.289823] tas2557 6-004c: tas2557_i2c_probe enter\n[    3.289848] tas2557 6-004c: ti,cdc-reset-gpio=1243\n[    3.289859] tas2557 6-004c: Looking up ti,bypass-tmax property in node tas2557@4c failed -22\n[    3.300100] PMI: smblib_uusb_otg_work: TYPE_C_STATUS_3 = 0x20 OTG=0\n[    3.300128] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.300166] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.300200] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    3.300225] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    3.300256] PMI: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    3.300276] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    3.300293] get prop 147 is not supported in usb\n[    3.315934] sdhci_msm c0c4000.sdhci: mmc0: CQE init: success\n[    3.340184] tas2557 6-004c: PG2.1 Silicon found\n[    3.340248] tas2557 6-004c: irq = 274\n[    3.340321] tas2557 6-004c: tas2557_register_codec, enter\n[    3.340363] tas2557 6-004c: tas2557_register_misc, leave\n[    3.340367] tas2557 6-004c: tiload_driver_init\n[    3.340387] tas2557 6-004c: allocated Major Number: 500\n[    3.340421] tas2557 6-004c: Registered TiLoad driver, Major number: 500\n[    3.340663] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.361423] GACT probability NOT on\n[    3.361436] Mirror/redirect action on\n[    3.361445] netem: version 1.3\n[    3.361447] u32 classifier\n[    3.361448]     Actions configured\n[    3.362090] xt_time: kernel timezone is -0000\n[    3.362148] gre: GRE over IPv4 demultiplexor driver\n[    3.362150] IPv4 over IPsec tunneling driver\n[    3.362585] Initializing XFRM netlink socket\n[    3.362594] IPsec XFRM device driver\n[    3.362827] NET: Registered protocol family 10\n[    3.363315] Segment Routing with IPv6\n[    3.363354] mip6: Mobile IPv6\n[    3.363675] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    3.364085] NET: Registered protocol family 17\n[    3.364095] NET: Registered protocol family 15\n[    3.364122] Bridge firewalling registered\n[    3.364224] l2tp_core: L2TP core driver, V2.0\n[    3.364229] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    3.364230] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    3.364240] l2tp_netlink: L2TP netlink interface\n[    3.364256] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    3.364258] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    3.364287] sctp: Hash tables configured (bind 256/256)\n[    3.364426] Key type dns_resolver registered\n[    3.364565] tas2557 6-004c: Falling back to syfs fallback for: tas2557_uCDSP.bin\n[    3.365238] cam_rear_dvdd_gpio_regulator: supplied by pm660_s5\n[    3.365511] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.365512] mdss_dp_probe: Error usbpd setup!\n[    3.365928] msm-dwc3 a800000.ssusb: Linked as a consumer to regulator.4\n[    3.366698] dwc3 a800000.dwc3: Failed to get clk 'ref': -2\n[    3.367002] dwc3 a800000.dwc3: changing max_speed on rev 00000000\n[    3.369099] dwc3 a800000.dwc3: Error getting ipc_log_ctxt\n[    3.369102] dwc3 a800000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    3.369471] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a904000\n[    3.369473] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a904000\n[    3.369476] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a904000\n[    3.369479] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a904000\n[    3.369481] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a904000\n[    3.369484] sps:BAM 0x000000000a904000 is registered.\n[    3.370180] msm-dwc3 a800000.ssusb: Linked as a consumer to regulator.72\n[    3.373430] msm-dwc3 a800000.ssusb: DWC3 exited from low power mode\n[    3.374354] msm-dwc3 a800000.ssusb: DWC3 in low power mode\n[    3.378485] spmi spmi-0: cleanup_irq apid=30 sid=0x0 per=0x40 irq=1\n[    3.378491] spmi spmi-0: cleanup_irq apid=30 sid=0x0 per=0x40 irq=6\n[    3.379585] spmi spmi-0: cleanup_irq apid=31 sid=0x0 per=0x41 irq=6\n[    3.380625] debugfs is not enabled in the kernel\n[    3.380665] FG: fg_gen3_probe: battery SOC:50 voltage: 4186268uV temp: 390\n[    3.385245] mmc0: Out-of-interrupt timeout is 246[ms]\n[    3.385249] mmc0: eMMC FW version: 0x33\n[    3.387136] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    3.387365] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.387878] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.387879] mdss_dp_probe: Error usbpd setup!\n[    3.388327] registered taskstats version 1\n[    3.388329] Loading compiled-in X.509 certificates\n[    3.389628] Loaded X.509 cert 'Android: 7e4333f9bba00adfe0ede979e28ed1920492b40f'\n[    3.389727] Key type ._fscrypt registered\n[    3.389729] Key type .fscrypt registered\n[    3.389731] Key type fscrypt-provisioning registered\n[    3.389788] pstore: Invalid compression size for deflate: 0\n[    3.391005] Error: swapper/0: fastrpc_device_init: failed to create debugfs root dir\n[    3.391590] fastrpc soc:qcom,msm-adsprpc-mem: for adsp_rh segments only will be dumped.\n[    3.391677] adsprpc: init_secure_vmid_list: secure VMID = 33\n[    3.391688] adsprpc: fastrpc_probe: service location enabled for avs/audio (audio_pdr_adsprpc)\n[    3.392157] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1: Linked as a consumer to 5100000.arm,smmu-lpass_q6\n[    3.392498] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 16\n[    3.392953] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2: Linked as a consumer to 5100000.arm,smmu-lpass_q6\n[    3.393169] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 17\n[    3.393568] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3: Linked as a consumer to 5100000.arm,smmu-lpass_q6\n[    3.393899] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 18\n[    3.394298] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4: Linked as a consumer to 5100000.arm,smmu-lpass_q6\n[    3.394560] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 19\n[    3.395749] adsprpc: fastrpc_device_init: SSR notifier registered for adsp\n[    3.395754] adsprpc: fastrpc_device_init: SSR notifier registered for modem\n[    3.395758] adsprpc: fastrpc_device_init: SSR notifier registered for slpi\n[    3.395760] adsprpc: fastrpc_device_init: SSR notifier registered for cdsp\n[    3.396268] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    3.396425] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.396932] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.396933] mdss_dp_probe: Error usbpd setup!\n[    3.397175] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    3.397323] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.397740] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.397742] mdss_dp_probe: Error usbpd setup!\n[    3.397921] ngd_msm_ctrl 15240000.slim: error creating ipc_logging context\n[    3.397925] ngd_msm_ctrl 15240000.slim: error creating ipc_error_logging context\n[    3.400243] input: soc:gpio_keys as /devices/platform/soc/soc:gpio_keys/input/input4\n[    3.401103] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    3.401289] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.401741] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.401742] mdss_dp_probe: Error usbpd setup!\n[    3.401853] FG: fg_psy_get_property: unsupported property 4\n[    3.405383] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    3.405540] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.405993] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.405995] mdss_dp_probe: Error usbpd setup!\n[    3.406582] mmc0: Command Queue Engine enabled\n[    3.406592] mmc0: new HS400 Enhanced strobe MMC card at address 0001\n[    3.407548] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.407624] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    3.407636] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.407805] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.407929] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    3.407941] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.408100] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    3.408439] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0x15) latency=-1\n[    3.408443] sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0x240) latency=-1\n[    3.408458] mmcblk0: mmc0:0001 S0J97Y 29.1 GiB \n[    3.408498] mmcblk0rpmb: mmc0:0001 S0J97Y partition 3 4.00 MiB, chardev (505:0)\n[    3.410527]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42 p43 p44 p45 p46 p47 p48 p49 p50 p51 p52 p53 p54 p55 p56 p57 p58 p59 p60 p61 p62 p63 p64\n[    3.413633] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    3.413859] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.414368] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.414369] mdss_dp_probe: Error usbpd setup!\n[    3.415196] sdhci_msm c084000.sdhci: Failed to get dll hsr settings from dt\n[    3.415202] sdhci_msm c084000.sdhci: core_reset unavailable,err = -2\n[    3.415205] sdhci_msm c084000.sdhci: Reset data parsing error\n[    3.416040] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    3.416184] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.416638] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.416640] mdss_dp_probe: Error usbpd setup!\n[    3.417600] sdhci_msm c084000.sdhci: Linked as a consumer to regulator.55\n[    3.417619] sdhci_msm c084000.sdhci: Linked as a consumer to regulator.52\n[    3.423260] input: synaptics_dsx as /devices/platform/soc/c175000.i2c/i2c-1/1-0020/input/input5\n[    3.425811] i2c-msm-v2 c176000.i2c: msm_bus_scale_register_client(mstr-id:86):0x1e (ok)\n[    3.425872] smb1351_parallel_charger_probe: Global hasn't smb1350 ragulator,return\n[    3.427246] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    3.427466] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.427986] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.427987] mdss_dp_probe: Error usbpd setup!\n[    3.431339] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    3.431519] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.432025] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.432027] mdss_dp_probe: Error usbpd setup!\n[    3.432901] mmc1: SDHCI controller on c084000.sdhci [c084000.sdhci] using 64-bit ADMA in legacy mode\n[    3.434920] rmnet_ipa started initialization\n[    3.434923] IPA SSR support = True\n[    3.434924] IPA ipa-loaduC = True\n[    3.434926] IPA SG support = True\n[    3.434928] IPA Napi Enable = True\n[    3.434931] using default for wan-rx-desc-size = 1024\n[    3.435233] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    3.435415] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.435924] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.435925] mdss_dp_probe: Error usbpd setup!\n[    3.438334] ipa ipa_sps_irq_control_all:956 EP (5) not allocated.\n[    3.438339] ipa ipa2_uc_state_check:293 uC is not loaded\n[    3.439105] rmnet_ipa completed initialization\n[    3.439882] RNDIS_IPA module is loaded.\n[    3.440459] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    3.440958] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    3.441178] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.441700] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.441702] mdss_dp_probe: Error usbpd setup!\n[    3.442490] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    3.444747] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    3.445280] ALSA device list:\n[    3.445282]   No soundcards found.\n[    3.445329] Warning: unable to open an initial console.\n[    3.465933] Freeing unused kernel memory: 4224K\n[    3.466013] Run /init as init process\n[    3.470711] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    3.470972] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.471945] mdss_dp_usbpd_setup: get_usbpd phandle failed (-19)\n[    3.471946] mdss_dp_probe: Error usbpd setup!\n[    3.770814] of_batterydata_get_best_profile:  sunxing get best profile enter\n[    3.770824] of_batterydata_get_best_profile: sunxing find battery data enter 0\n[    3.770828] of_batterydata_get_best_profile: sunxing find battery data enter 0\n[    3.770832] of_batterydata_get_best_profile: sunxing find battery data enter 0\n[    3.770836] of_batterydata_get_best_profile: l6650sun_4000mah_averaged_masterslave_sept27th2017 found\n[    3.775285] FG: is_profile_load_required: Profiles doesn't match, skipping loading it since force_load_profile is disabled\n[    3.777260] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    3.777274] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    3.777286] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    4.320078] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    4.320086] PMI: smblib_icl_change_work: icl_settled=0\n[    4.320122] PMI: smblib_get_charge_param: float voltage = 4395000 (0x79)\n[    4.320136] PMI: smblib_get_charge_param: fast charge current = 2300000 (0x5c)\n[    4.320151] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    4.627696] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    4.627712] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    4.627725] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    4.648539] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    4.648730] cpu1 \n[    4.648788] cpu4 \n[    4.648833] \n               Offline CPUs: \n[    4.652890] cpu1 \n[    4.655145] CPU1: shutdown\n[    4.655174] psci: CPU1 killed (polled 0 ms)\n[    4.655725] cpu2 \n[    4.658799] CPU2: shutdown\n[    4.658826] psci: CPU2 killed (polled 0 ms)\n[    4.659182] cpu3 \n[    4.661848] CPU3: shutdown\n[    4.661879] psci: CPU3 killed (polled 0 ms)\n[    4.662257] cpu4 \n[    4.671312] CPU4: shutdown\n[    4.671350] psci: CPU4 killed (polled 0 ms)\n[    4.672104] cpu5 \n[    4.681209] CPU5: shutdown\n[    4.681249] psci: CPU5 killed (polled 0 ms)\n[    4.682013] cpu6 \n[    4.691103] CPU6: shutdown\n[    4.691141] psci: CPU6 killed (polled 0 ms)\n[    4.691902] cpu7 \n[    4.700989] CPU7: shutdown\n[    4.701028] psci: CPU7 killed (polled 0 ms)\n\n[    4.703531] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[    4.703552] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[    4.703567] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[    6.321245] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    6.321289] QCOM-BATT: pl_fcc_vote_callback: cp_fcc_ua=2300000 total_fcc_ua=2300000 forced_main_fcc=0\n[    6.321297] QCOM-BATT: pl_disable_vote_callback: Couldn't read primary charger FCC upper limit, rc=-61\n[    6.321327] PMI: smblib_set_charge_param: float voltage = 4400000 (0x79)\n[    6.321332] QCOM-BATT: pl_disable_vote_callback: parallel charging disabled\n[    9.712150] Sampling power every 1000 ms\n               Baseline power usage: \n[   33.761229] gfx_mem_acc_corner: disabling\n[   33.761255] gdsc_ufs: disabling\n[   33.761310] cam_avdd_gpio_regulator: disabling\n[   33.761316] cam_rear_avdd_gpio_regulator: disabling\n[   33.761384] apc0_pwrcl_corner: disabling\n[   33.761391] apc1_perfcl_corner: disabling\n[   33.761408] cam_rear_dvdd_gpio_regulator: disabling\n[   36.541176] synaptics_dsx_i2c 1-0020: fwu_startup_fw_update_work: Timed out waiting for FB ready\n[   64.481337] tas2557 6-004c: tas2557_fw_ready:\n[   64.481347] tas2557 6-004c: tas2557_uCDSP.bin firmware is not loaded.\n[   84.851872] Detected VIPT I-cache on CPU1\n[   84.851989] arch_timer: CPU1: Trapping CNTVCT access\n[   84.852008] CPU1: Booted secondary processor 0x0000000001 [0x51af8014]\n[   85.859413] 1396 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 633 902 1113 1401 1536 1612\n               \n                633: \n[  240.296550]  2058     3.2 C/MHz     43 mW    6.3 J   47.4 I/mJ   145.8 s\n                902: \n[  305.120200] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120216] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120408] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120420] audio_notifer_reg_service: service SSR_ADSP is in use\n[  305.120442] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120448] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for audio_pdr_adsprpc\n[  305.120460] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  351.615433]  2930     3.2 C/MHz     62 mW    6.3 J   47.5 I/mJ   102.4 s\n               1113: \n[  374.550756] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  374.550773] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[  374.550786] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[  374.550838] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  374.550851] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[  374.550862] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[  374.550886] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[  374.551248] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[  374.551275] QCOM-BATT: pl_fcc_vote_callback: cp_fcc_ua=2300000 total_fcc_ua=2300000 forced_main_fcc=0\n[  374.551281] QCOM-BATT: pl_disable_vote_callback: Couldn't read primary charger FCC upper limit, rc=-61\n[  374.551299] PMI: smblib_set_charge_param: float voltage = 4400000 (0x79)\n[  374.551303] QCOM-BATT: pl_disable_vote_callback: parallel charging disabled\n[  374.551713] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  374.551725] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[  374.551743] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[  374.552776] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  374.552791] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  374.552803] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[  442.882156]  3616     3.2 C/MHz     80 mW    6.7 J   45.1 I/mJ    83.0 s\n               1401: \n[  517.110425]  4552     3.2 C/MHz    123 mW    8.1 J   37.1 I/mJ    65.9 s\n               1536: \n[  586.323984]  4988     3.2 C/MHz    144 mW    8.7 J   34.6 I/mJ    60.1 s\n               1612: \n[  652.537171] CPU1: shutdown\n[  652.537208] psci: CPU1 killed (polled 0 ms)\n[  652.539959] Detected VIPT I-cache on CPU4\n[  652.540049] arch_timer: CPU4: Trapping CNTVCT access\n[  652.540072] CPU4: Booted secondary processor 0x0000000100 [0x51af8002]\n[  653.551413]  5237     3.2 C/MHz    160 mW    9.1 J   32.8 I/mJ    57.3 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 1113 1401 1747 1804\n               \n               1113: \n[  711.842959]  5993     5.4 C/MHz    232 mW   11.6 J   25.9 I/mJ    50.1 s\n               1401: \n[  723.631776] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  723.631798] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[  723.631815] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[  723.631891] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  723.631906] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[  723.631920] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[  723.631949] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[  723.633016] PMI: smblib_get_charge_param: input current limit status = 0 (0x00)\n[  723.633055] QCOM-BATT: pl_fcc_vote_callback: cp_fcc_ua=2300000 total_fcc_ua=2300000 forced_main_fcc=0\n[  723.633063] QCOM-BATT: pl_disable_vote_callback: Couldn't read primary charger FCC upper limit, rc=-61\n[  723.633087] PMI: smblib_set_charge_param: float voltage = 4400000 (0x79)\n[  723.633092] QCOM-BATT: pl_disable_vote_callback: parallel charging disabled\n[  723.633696] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  723.633723] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[  723.633738] PMI: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x00\n[  723.634546] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  723.634564] PMI: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x22\n[  723.634580] PMI: smblib_get_prop_dc_online: POWER_PATH_STATUS = 0x22\n[  760.101082]  7540     5.4 C/MHz    326 mW   13.0 J   23.1 I/mJ    39.8 s\n               1747: \n[  800.334866]  9401     5.4 C/MHz    488 mW   15.6 J   19.3 I/mJ    31.9 s\n               1804: \n[  839.575574] CPU4: shutdown\n[  839.575629] psci: CPU4 killed (polled 0 ms)\n[  839.585602]  9719     5.4 C/MHz    510 mW   15.7 J   19.1 I/mJ    30.9 s\n               \n               \n               Benchmark finished!\n[  839.623642] \n               real\t13m56.021s\n               user\t11m8.821s\n               sys\t0m0.222s\n"
  },
  {
    "path": "results/sdm636/second/post_bench_interrupts.txt",
    "content": "           CPU0       \n  1:          0   mpm-gic 203 Edge      mpm\n  4:        888   mpm-gic  19 Level     arch_timer\n  6:      84173   mpm-gic  39 Level     arch_mem_timer\n  9:          0   mpm-gic 271 Level     sps\n 11:          0   mpm-gic  35 Edge      apps_wdog_bark\n 13:          0   mpm-gic 216 Level     tsens-upper-lower\n 14:          0   mpm-gic 462 Level     tsens-critical\n 16:          0   mpm-gic 323 Level     ngd_slim_irq\n 23:          0   mpm-gic  67 Edge      OSM IRQ\n 24:          0   mpm-gic  68 Edge      OSM IRQ\n 25:         79   mpm-gic 142 Level     mmc0\n 26:          4   mpm-gic 144 Level     c0c4000.sdhci\n 27:         13     GICv3 157 Level     mmc1\n 28:          2     GICv3 253 Level     c084000.sdhci\n 29:          0   mpm-gic 365 Edge      ipa\n 30:         18   mpm-gic 464 Level     sps\n 31:        316   mpm-gic 200 Edge      glink-native-rpm-glink\n 32:          0   mpm-gic 483 Edge      smp2p\n 33:          0   mpm-gic 190 Edge      smp2p\n 34:          0   mpm-gic 546 Edge      smp2p\n 47:          0   mpm-gic 194 Edge      adsp\n 48:          0   mpm-gic 480 Edge      modem\n 50:          0   mpm-gic  22 Level     arm-pmu\n 51:          0   mpm-gic 238 Level     sps\n 54:          0   mpm-gic 317 Edge      cpr3\n 55:          0   mpm-gic 332 Level     kgsl_3d0_irq\n 56:          0   mpm-gic 261 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n 57:          0   mpm-gic 263 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n 58:          0   mpm-gic 405 Level     arm-smmu-context-fault\n 59:          0   mpm-gic 406 Level     arm-smmu-context-fault\n 60:          0   mpm-gic 407 Level     arm-smmu-context-fault\n 87:          0   mpm-gic 258 Level     arm-smmu-context-fault\n 88:          0   mpm-gic 425 Level     arm-smmu-context-fault\n 89:          0   mpm-gic 426 Level     arm-smmu-context-fault\n 90:          0   mpm-gic 427 Level     arm-smmu-context-fault\n 91:          0   mpm-gic 428 Level     arm-smmu-context-fault\n104:          0   mpm-gic 295 Level     arm-smmu-context-fault\n105:          0   mpm-gic 298 Level     arm-smmu-context-fault\n106:          0   mpm-gic 299 Level     arm-smmu-context-fault\n107:          0   mpm-gic 300 Level     arm-smmu-context-fault\n108:          0   mpm-gic 276 Level     arm-smmu-context-fault\n109:          0   mpm-gic 277 Level     arm-smmu-context-fault\n110:          0   mpm-gic 279 Level     arm-smmu-context-fault\n111:          0   mpm-gic 280 Level     arm-smmu-context-fault\n112:          0   mpm-gic 281 Level     arm-smmu-context-fault\n113:          0   mpm-gic 282 Level     arm-smmu-context-fault\n128:          0   mpm-gic 361 Level     arm-smmu-context-fault\n129:          0   mpm-gic 362 Level     arm-smmu-context-fault\n133:          0   mpm-gic 379 Level     hs_phy_irq\n134:          0   mpm-gic 275 Level     ss_phy_irq\n135:          0   mpm-gic 212 Level     pwr_event_irq\n137:        231   mpm-gic 127 Level     i2c-msm-v2-irq\n138:          0   mpm-gic 128 Level     i2c-msm-v2-irq\n139:          5   mpm-gic 134 Level     i2c-msm-v2-irq\n140:          0   mpm-gic 135 Level     c1b7000.spi\n142:          0   mpm-gic 110 Edge      csiphy\n143:          0   mpm-gic 111 Edge      csiphy\n144:          0   mpm-gic 112 Edge      csiphy\n145:          0   mpm-gic 328 Edge      csid\n146:          0   mpm-gic 329 Edge      csid\n147:          0   mpm-gic 330 Edge      csid\n148:          0   mpm-gic 331 Edge      csid\n150:          0   mpm-gic 341 Edge      ispif\n151:          0   mpm-gic 346 Edge      vfe\n152:          0   mpm-gic 347 Edge      vfe\n153:        140   mpm-gic 327 Edge      cci\n156:          0   mpm-gic 319 Level     msm_vidc\n158:          0   mpm-gic 115 Level     MDSS\n159:          0  pmic_arb 8388612 Edge      pon_kpdpwr_status\n160:          0  pmic_arb 8454148 Edge      pon_resin_status\n163:          0  pmic_arb 37748755 Edge      qcom,temp-alarm\n177:          0  pmic_arb 101777459 Edge      pm8xxx_rtc_alarm\n178:        170  pmic_arb 51380246 Edge      pm-adc5\n179:          0  pmic_arb 54525976 Edge      thr-int-en\n180:          0  pmic_arb 69206048 Edge      bcl-high-ibat\n182:          0  pmic_arb 69337120 Edge      bcl-low-vbat\n185:          0  pmic_arb 469762111 Edge      hap_sc_irq\n186:          0  pmic_arb 469827647 Edge      hap_play_irq\n187:          0  pmic_arb 574619709 Edge      qcom,temp-alarm\n194:          0  pmic_arb 744489127 Edge      volume_up\n200:          1  pmic_arb 1031864372 Edge      wled_ovp_irq\n201:          0  pmic_arb 1026555953 Edge      qpnp_flash_led_fault_irq\n202:          0  pmic_arb 1026752561 Edge      qpnp_flash_led_all_ramp_down_done_irq\n203:          0  pmic_arb 1026818097 Edge      qpnp_flash_led_all_ramp_up_done_irq\n204:          0  pmic_arb 1052835884 Edge      qpnp_lcdb_sc_irq\n219:          0   mpm-gic  69 Level     limits_sensor-00\n220:          0   mpm-gic  70 Level     limits_sensor-01\n221:          0     smp2p   2 Edge      modem\n222:          0     smp2p   0 Edge      modem\n223:          0     smp2p   1 Edge      error_ready_interrupt\n224:          0     smp2p   3 Edge      modem\n225:          0     smp2p   7 Edge      modem\n226:          0     smp2p   2 Edge      adsp\n227:          0     smp2p   0 Edge      adsp\n228:          0     smp2p   1 Edge      error_ready_interrupt\n229:          0     smp2p   3 Edge      adsp\n230:          0     smp2p   0 Edge      smp2p_sleepstate\n232:          0     GICv3 163 Level     dwc3\n234:          0   msmgpio  67 Level     synaptics_dsx\n235:          0   msmgpio  75 Edge      hall-switch-irq\n236:          0  pmic_arb 16777223 Edge      chg-error\n237:          0  pmic_arb 16842759 Edge      chg-state-change\n241:          0  pmic_arb 17825800 Edge      otg-fail\n242:          0  pmic_arb 17891336 Edge      otg-overcurrent\n243:          0  pmic_arb 17956872 Edge      otg-oc-dis-sw-sts\n244:          0  pmic_arb 18022408 Edge      testmode-change-detect\n245:          0  pmic_arb 18874377 Edge      bat-temp\n246:          0  pmic_arb 18939913 Edge      bat-ocp\n247:          0  pmic_arb 19005449 Edge      bat-ov\n248:          0  pmic_arb 19070985 Edge      bat-low\n249:          0  pmic_arb 19136521 Edge      bat-therm-or-id-missing\n250:          0  pmic_arb 19202057 Edge      bat-terminal-missing\n251:          0  pmic_arb 19922954 Edge      usbin-collapse\n252:          0  pmic_arb 19988490 Edge      usbin-lt-3p6v\n253:          0  pmic_arb 20054026 Edge      usbin-uv\n254:          0  pmic_arb 20119562 Edge      usbin-ov\n255:          0  pmic_arb 20185098 Edge      usbin-plugin\n256:          0  pmic_arb 20250634 Edge      usbin-src-change\n257:          0  pmic_arb 20316170 Edge      usbin-icl-change\n258:          0  pmic_arb 20381706 Edge      type-c-change\n259:          0  pmic_arb 20971531 Edge      dcin-collapse\n260:          0  pmic_arb 21037067 Edge      dcin-lt-3p6v\n261:          0  pmic_arb 21102603 Edge      dcin-uv\n262:          0  pmic_arb 21168139 Edge      dcin-ov\n263:          0  pmic_arb 21233675 Edge      dcin-plugin\n264:          0  pmic_arb 21299211 Edge      div2-en-dg\n265:          0  pmic_arb 21364747 Edge      dcin-icl-change\n267:          0  pmic_arb 23134221 Edge      wdog-bark\n268:          0  pmic_arb 23199757 Edge      aicl-fail\n269:          0  pmic_arb 23265293 Edge      aicl-done\n270:          0  pmic_arb 23330829 Edge      high-duty-cycle\n271:          0  pmic_arb 23396365 Edge      input-current-limiting\n272:          0  pmic_arb 23461901 Edge      temperature-change\n273:          0  pmic_arb 23527437 Edge      switcher-power-ok\n274:          0   msmgpio  73 Level     tas2557\n275:          2  pmic_arb 67108894 Edge      soc-update\n276:          0  pmic_arb 67174430 Edge      soc-ready\n277:          0  pmic_arb 67239966 Edge      bsoc-delta\n278:          2  pmic_arb 67305502 Edge      msoc-delta\n279:          0  pmic_arb 67371038 Edge      msoc-low\n280:          0  pmic_arb 67436574 Edge      msoc-empty\n281:          0  pmic_arb 67502110 Edge      msoc-high\n282:          0  pmic_arb 67567646 Edge      msoc-full\n283:          0  pmic_arb 68157471 Edge      vbatt-pred-delta\n284:          0  pmic_arb 68223007 Edge      vbatt-low\n285:          0  pmic_arb 68288543 Edge      esr-delta\n286:          0  pmic_arb 68354079 Edge      batt-missing\n287:          0  pmic_arb 68550687 Edge      batt-temp-delta\n288:        165  pmic_arb 71303202 Edge      ima-rdy\n289:          0  pmic_arb 71368738 Edge      mem-xcp\n290:          0  pmic_arb 71434274 Edge      dma-grant\n291:          0   msmgpio  64 Edge      camera_focus\n292:          0   msmgpio 113 Edge      camera_snapshot\n293:          0   msmgpio  54 Edge      c084000.sdhci cd\nIPI0:       139       Rescheduling interrupts\nIPI1:         9       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         1       Timer broadcast interrupts\nIPI5:         0       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sdm636/second/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  1:          0          0          0          0          0          0          0          0   mpm-gic 203 Edge      mpm\n  4:        519          2          2          2          1          1          1          1   mpm-gic  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   mpm-gic  39 Level     arch_mem_timer\n  9:          0          0          0          0          0          0          0          0   mpm-gic 271 Level     sps\n 11:          0          0          0          0          0          0          0          0   mpm-gic  35 Edge      apps_wdog_bark\n 13:          0          0          0          0          0          0          0          0   mpm-gic 216 Level     tsens-upper-lower\n 14:          0          0          0          0          0          0          0          0   mpm-gic 462 Level     tsens-critical\n 16:          0          0          0          0          0          0          0          0   mpm-gic 323 Level     ngd_slim_irq\n 23:          0          0          0          0          0          0          0          0   mpm-gic  67 Edge      OSM IRQ\n 24:          0          0          0          0          0          0          0          0   mpm-gic  68 Edge      OSM IRQ\n 25:         71          0          0          0          0          0          0          0   mpm-gic 142 Level     mmc0\n 26:          3          0          0          0          0          0          0          0   mpm-gic 144 Level     c0c4000.sdhci\n 27:         13          0          0          0          0          0          0          0     GICv3 157 Level     mmc1\n 28:          2          0          0          0          0          0          0          0     GICv3 253 Level     c084000.sdhci\n 29:          0          0          0          0          0          0          0          0   mpm-gic 365 Edge      ipa\n 30:         18          0          0          0          0          0          0          0   mpm-gic 464 Level     sps\n 31:        280          0          0          0          0          0          0          0   mpm-gic 200 Edge      glink-native-rpm-glink\n 32:          0          0          0          0          0          0          0          0   mpm-gic 483 Edge      smp2p\n 33:          0          0          0          0          0          0          0          0   mpm-gic 190 Edge      smp2p\n 34:          0          0          0          0          0          0          0          0   mpm-gic 546 Edge      smp2p\n 47:          0          0          0          0          0          0          0          0   mpm-gic 194 Edge      adsp\n 48:          0          0          0          0          0          0          0          0   mpm-gic 480 Edge      modem\n 50:          0          0          0          0          0          0          0          0   mpm-gic  22 Level     arm-pmu\n 51:          0          0          0          0          0          0          0          0   mpm-gic 238 Level     sps\n 54:          0          0          0          0          0          0          0          0   mpm-gic 317 Edge      cpr3\n 55:          0          0          0          0          0          0          0          0   mpm-gic 332 Level     kgsl_3d0_irq\n 56:          0          0          0          0          0          0          0          0   mpm-gic 261 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n 57:          0          0          0          0          0          0          0          0   mpm-gic 263 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n 58:          0          0          0          0          0          0          0          0   mpm-gic 405 Level     arm-smmu-context-fault\n 59:          0          0          0          0          0          0          0          0   mpm-gic 406 Level     arm-smmu-context-fault\n 60:          0          0          0          0          0          0          0          0   mpm-gic 407 Level     arm-smmu-context-fault\n 87:          0          0          0          0          0          0          0          0   mpm-gic 258 Level     arm-smmu-context-fault\n 88:          0          0          0          0          0          0          0          0   mpm-gic 425 Level     arm-smmu-context-fault\n 89:          0          0          0          0          0          0          0          0   mpm-gic 426 Level     arm-smmu-context-fault\n 90:          0          0          0          0          0          0          0          0   mpm-gic 427 Level     arm-smmu-context-fault\n 91:          0          0          0          0          0          0          0          0   mpm-gic 428 Level     arm-smmu-context-fault\n104:          0          0          0          0          0          0          0          0   mpm-gic 295 Level     arm-smmu-context-fault\n105:          0          0          0          0          0          0          0          0   mpm-gic 298 Level     arm-smmu-context-fault\n106:          0          0          0          0          0          0          0          0   mpm-gic 299 Level     arm-smmu-context-fault\n107:          0          0          0          0          0          0          0          0   mpm-gic 300 Level     arm-smmu-context-fault\n108:          0          0          0          0          0          0          0          0   mpm-gic 276 Level     arm-smmu-context-fault\n109:          0          0          0          0          0          0          0          0   mpm-gic 277 Level     arm-smmu-context-fault\n110:          0          0          0          0          0          0          0          0   mpm-gic 279 Level     arm-smmu-context-fault\n111:          0          0          0          0          0          0          0          0   mpm-gic 280 Level     arm-smmu-context-fault\n112:          0          0          0          0          0          0          0          0   mpm-gic 281 Level     arm-smmu-context-fault\n113:          0          0          0          0          0          0          0          0   mpm-gic 282 Level     arm-smmu-context-fault\n128:          0          0          0          0          0          0          0          0   mpm-gic 361 Level     arm-smmu-context-fault\n129:          0          0          0          0          0          0          0          0   mpm-gic 362 Level     arm-smmu-context-fault\n133:          0          0          0          0          0          0          0          0   mpm-gic 379 Level     hs_phy_irq\n134:          0          0          0          0          0          0          0          0   mpm-gic 275 Level     ss_phy_irq\n135:          0          0          0          0          0          0          0          0   mpm-gic 212 Level     pwr_event_irq\n137:        231          0          0          0          0          0          0          0   mpm-gic 127 Level     i2c-msm-v2-irq\n138:          0          0          0          0          0          0          0          0   mpm-gic 128 Level     i2c-msm-v2-irq\n139:          5          0          0          0          0          0          0          0   mpm-gic 134 Level     i2c-msm-v2-irq\n140:          0          0          0          0          0          0          0          0   mpm-gic 135 Level     c1b7000.spi\n142:          0          0          0          0          0          0          0          0   mpm-gic 110 Edge      csiphy\n143:          0          0          0          0          0          0          0          0   mpm-gic 111 Edge      csiphy\n144:          0          0          0          0          0          0          0          0   mpm-gic 112 Edge      csiphy\n145:          0          0          0          0          0          0          0          0   mpm-gic 328 Edge      csid\n146:          0          0          0          0          0          0          0          0   mpm-gic 329 Edge      csid\n147:          0          0          0          0          0          0          0          0   mpm-gic 330 Edge      csid\n148:          0          0          0          0          0          0          0          0   mpm-gic 331 Edge      csid\n150:          0          0          0          0          0          0          0          0   mpm-gic 341 Edge      ispif\n151:          0          0          0          0          0          0          0          0   mpm-gic 346 Edge      vfe\n152:          0          0          0          0          0          0          0          0   mpm-gic 347 Edge      vfe\n153:        140          0          0          0          0          0          0          0   mpm-gic 327 Edge      cci\n156:          0          0          0          0          0          0          0          0   mpm-gic 319 Level     msm_vidc\n158:          0          0          0          0          0          0          0          0   mpm-gic 115 Level     MDSS\n159:          0          0          0          0          0          0          0          0  pmic_arb 8388612 Edge      pon_kpdpwr_status\n160:          0          0          0          0          0          0          0          0  pmic_arb 8454148 Edge      pon_resin_status\n163:          0          0          0          0          0          0          0          0  pmic_arb 37748755 Edge      qcom,temp-alarm\n177:          0          0          0          0          0          0          0          0  pmic_arb 101777459 Edge      pm8xxx_rtc_alarm\n178:          5          0          0          0          0          0          0          0  pmic_arb 51380246 Edge      pm-adc5\n179:          0          0          0          0          0          0          0          0  pmic_arb 54525976 Edge      thr-int-en\n180:          0          0          0          0          0          0          0          0  pmic_arb 69206048 Edge      bcl-high-ibat\n182:          0          0          0          0          0          0          0          0  pmic_arb 69337120 Edge      bcl-low-vbat\n185:          0          0          0          0          0          0          0          0  pmic_arb 469762111 Edge      hap_sc_irq\n186:          0          0          0          0          0          0          0          0  pmic_arb 469827647 Edge      hap_play_irq\n187:          0          0          0          0          0          0          0          0  pmic_arb 574619709 Edge      qcom,temp-alarm\n194:          0          0          0          0          0          0          0          0  pmic_arb 744489127 Edge      volume_up\n200:          1          0          0          0          0          0          0          0  pmic_arb 1031864372 Edge      wled_ovp_irq\n201:          0          0          0          0          0          0          0          0  pmic_arb 1026555953 Edge      qpnp_flash_led_fault_irq\n202:          0          0          0          0          0          0          0          0  pmic_arb 1026752561 Edge      qpnp_flash_led_all_ramp_down_done_irq\n203:          0          0          0          0          0          0          0          0  pmic_arb 1026818097 Edge      qpnp_flash_led_all_ramp_up_done_irq\n204:          0          0          0          0          0          0          0          0  pmic_arb 1052835884 Edge      qpnp_lcdb_sc_irq\n219:          0          0          0          0          0          0          0          0   mpm-gic  69 Level     limits_sensor-00\n220:          0          0          0          0          0          0          0          0   mpm-gic  70 Level     limits_sensor-01\n221:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n222:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n223:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n224:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n225:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n226:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n227:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n228:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n229:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n230:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n232:          0          0          0          0          0          0          0          0     GICv3 163 Level     dwc3\n234:          0          0          0          0          0          0          0          0   msmgpio  67 Level     synaptics_dsx\n235:          0          0          0          0          0          0          0          0   msmgpio  75 Edge      hall-switch-irq\n236:          0          0          0          0          0          0          0          0  pmic_arb 16777223 Edge      chg-error\n237:          0          0          0          0          0          0          0          0  pmic_arb 16842759 Edge      chg-state-change\n241:          0          0          0          0          0          0          0          0  pmic_arb 17825800 Edge      otg-fail\n242:          0          0          0          0          0          0          0          0  pmic_arb 17891336 Edge      otg-overcurrent\n243:          0          0          0          0          0          0          0          0  pmic_arb 17956872 Edge      otg-oc-dis-sw-sts\n244:          0          0          0          0          0          0          0          0  pmic_arb 18022408 Edge      testmode-change-detect\n245:          0          0          0          0          0          0          0          0  pmic_arb 18874377 Edge      bat-temp\n246:          0          0          0          0          0          0          0          0  pmic_arb 18939913 Edge      bat-ocp\n247:          0          0          0          0          0          0          0          0  pmic_arb 19005449 Edge      bat-ov\n248:          0          0          0          0          0          0          0          0  pmic_arb 19070985 Edge      bat-low\n249:          0          0          0          0          0          0          0          0  pmic_arb 19136521 Edge      bat-therm-or-id-missing\n250:          0          0          0          0          0          0          0          0  pmic_arb 19202057 Edge      bat-terminal-missing\n251:          0          0          0          0          0          0          0          0  pmic_arb 19922954 Edge      usbin-collapse\n252:          0          0          0          0          0          0          0          0  pmic_arb 19988490 Edge      usbin-lt-3p6v\n253:          0          0          0          0          0          0          0          0  pmic_arb 20054026 Edge      usbin-uv\n254:          0          0          0          0          0          0          0          0  pmic_arb 20119562 Edge      usbin-ov\n255:          0          0          0          0          0          0          0          0  pmic_arb 20185098 Edge      usbin-plugin\n256:          0          0          0          0          0          0          0          0  pmic_arb 20250634 Edge      usbin-src-change\n257:          0          0          0          0          0          0          0          0  pmic_arb 20316170 Edge      usbin-icl-change\n258:          0          0          0          0          0          0          0          0  pmic_arb 20381706 Edge      type-c-change\n259:          0          0          0          0          0          0          0          0  pmic_arb 20971531 Edge      dcin-collapse\n260:          0          0          0          0          0          0          0          0  pmic_arb 21037067 Edge      dcin-lt-3p6v\n261:          0          0          0          0          0          0          0          0  pmic_arb 21102603 Edge      dcin-uv\n262:          0          0          0          0          0          0          0          0  pmic_arb 21168139 Edge      dcin-ov\n263:          0          0          0          0          0          0          0          0  pmic_arb 21233675 Edge      dcin-plugin\n264:          0          0          0          0          0          0          0          0  pmic_arb 21299211 Edge      div2-en-dg\n265:          0          0          0          0          0          0          0          0  pmic_arb 21364747 Edge      dcin-icl-change\n267:          0          0          0          0          0          0          0          0  pmic_arb 23134221 Edge      wdog-bark\n268:          0          0          0          0          0          0          0          0  pmic_arb 23199757 Edge      aicl-fail\n269:          0          0          0          0          0          0          0          0  pmic_arb 23265293 Edge      aicl-done\n270:          0          0          0          0          0          0          0          0  pmic_arb 23330829 Edge      high-duty-cycle\n271:          0          0          0          0          0          0          0          0  pmic_arb 23396365 Edge      input-current-limiting\n272:          0          0          0          0          0          0          0          0  pmic_arb 23461901 Edge      temperature-change\n273:          0          0          0          0          0          0          0          0  pmic_arb 23527437 Edge      switcher-power-ok\n274:          0          0          0          0          0          0          0          0   msmgpio  73 Level     tas2557\n275:          1          0          0          0          0          0          0          0  pmic_arb 67108894 Edge      soc-update\n276:          0          0          0          0          0          0          0          0  pmic_arb 67174430 Edge      soc-ready\n277:          0          0          0          0          0          0          0          0  pmic_arb 67239966 Edge      bsoc-delta\n278:          0          0          0          0          0          0          0          0  pmic_arb 67305502 Edge      msoc-delta\n279:          0          0          0          0          0          0          0          0  pmic_arb 67371038 Edge      msoc-low\n280:          0          0          0          0          0          0          0          0  pmic_arb 67436574 Edge      msoc-empty\n281:          0          0          0          0          0          0          0          0  pmic_arb 67502110 Edge      msoc-high\n282:          0          0          0          0          0          0          0          0  pmic_arb 67567646 Edge      msoc-full\n283:          0          0          0          0          0          0          0          0  pmic_arb 68157471 Edge      vbatt-pred-delta\n284:          0          0          0          0          0          0          0          0  pmic_arb 68223007 Edge      vbatt-low\n285:          0          0          0          0          0          0          0          0  pmic_arb 68288543 Edge      esr-delta\n286:          0          0          0          0          0          0          0          0  pmic_arb 68354079 Edge      batt-missing\n287:          0          0          0          0          0          0          0          0  pmic_arb 68550687 Edge      batt-temp-delta\n288:         36          0          0          0          0          0          0          0  pmic_arb 71303202 Edge      ima-rdy\n289:          0          0          0          0          0          0          0          0  pmic_arb 71368738 Edge      mem-xcp\n290:          0          0          0          0          0          0          0          0  pmic_arb 71434274 Edge      dma-grant\n291:          0          0          0          0          0          0          0          0   msmgpio  64 Edge      camera_focus\n292:          0          0          0          0          0          0          0          0   msmgpio 113 Edge      camera_snapshot\n293:          0          0          0          0          0          0          0          0   msmgpio  54 Edge      c084000.sdhci cd\nIPI0:        74         17         17         17         17         17         16         17       Rescheduling interrupts\nIPI1:         0          4          4          4          4          4          4          4       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         0          4          4          4          4          4          4          4       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sdm636/second/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    6 root      0:00 [kworker/0:0H-ev]\n    7 root      0:00 [kworker/u16:0+L]\n    8 root      0:00 [mm_percpu_wq]\n    9 root      0:00 [ksoftirqd/0]\n   10 root      0:00 [rcu_preempt]\n   11 root      0:00 [rcu_sched]\n   12 root      0:00 [rcu_bh]\n   13 root      0:00 [rcuop/0]\n   14 root      0:00 [rcuos/0]\n   15 root      0:00 [rcuob/0]\n   16 root      0:00 [migration/0]\n   17 root      0:00 [cpuhp/0]\n   18 root      0:00 [cpuhp/1]\n   19 root      0:00 [migration/1]\n   20 root      0:00 [ksoftirqd/1]\n   21 root      0:00 [kworker/1:0-mm_]\n   22 root      0:00 [kworker/1:0H-ev]\n   23 root      0:00 [rcuop/1]\n   24 root      0:00 [rcuos/1]\n   25 root      0:00 [rcuob/1]\n   26 root      0:00 [cpuhp/2]\n   27 root      0:00 [migration/2]\n   28 root      0:00 [ksoftirqd/2]\n   29 root      0:00 [kworker/2:0-mm_]\n   30 root      0:00 [kworker/2:0H-ev]\n   31 root      0:00 [rcuop/2]\n   32 root      0:00 [rcuos/2]\n   33 root      0:00 [rcuob/2]\n   34 root      0:00 [cpuhp/3]\n   35 root      0:00 [migration/3]\n   36 root      0:00 [ksoftirqd/3]\n   37 root      0:00 [kworker/3:0-mm_]\n   38 root      0:00 [kworker/3:0H-ev]\n   39 root      0:00 [rcuop/3]\n   40 root      0:00 [rcuos/3]\n   41 root      0:00 [rcuob/3]\n   42 root      0:00 [cpuhp/4]\n   43 root      0:00 [migration/4]\n   44 root      0:00 [ksoftirqd/4]\n   45 root      0:00 [kworker/4:0-mm_]\n   47 root      0:00 [kworker/4:0H-ev]\n   48 root      0:00 [rcuop/4]\n   49 root      0:00 [rcuos/4]\n   50 root      0:00 [rcuob/4]\n   51 root      0:00 [cpuhp/5]\n   52 root      0:00 [migration/5]\n   53 root      0:00 [ksoftirqd/5]\n   54 root      0:00 [kworker/5:0-mm_]\n   55 root      0:00 [kworker/5:0H-ev]\n   56 root      0:00 [rcuop/5]\n   57 root      0:00 [rcuos/5]\n   58 root      0:00 [rcuob/5]\n   59 root      0:00 [cpuhp/6]\n   60 root      0:00 [migration/6]\n   61 root      0:00 [ksoftirqd/6]\n   62 root      0:00 [kworker/6:0-mm_]\n   63 root      0:00 [kworker/6:0H-ev]\n   64 root      0:00 [rcuop/6]\n   65 root      0:00 [rcuos/6]\n   66 root      0:00 [rcuob/6]\n   67 root      0:00 [cpuhp/7]\n   68 root      0:00 [migration/7]\n   69 root      0:00 [ksoftirqd/7]\n   70 root      0:00 [kworker/7:0-mm_]\n   71 root      0:00 [kworker/7:0H-ev]\n   72 root      0:00 [rcuop/7]\n   73 root      0:00 [rcuos/7]\n   74 root      0:00 [rcuob/7]\n   75 root      0:00 [netns]\n   76 root      0:00 [rcu_tasks_kthre]\n   77 root      0:00 [kworker/u16:1+M]\n   78 root      0:00 [kworker/u17:0-i]\n   79 root      0:00 [ipa_usb_wq]\n   80 root      0:00 [msm_watchdog]\n   81 root      0:00 [glink_rpm-glink]\n   82 root      0:00 [oom_reaper]\n   83 root      0:00 [writeback]\n   84 root      0:00 [kcompactd0]\n   85 root      0:00 [crypto]\n   88 root      0:00 [kblockd]\n   89 root      0:00 [blk_crypto_wq]\n   90 root      0:00 [irq/13-tsens-up]\n   91 root      0:00 [irq/14-tsens-cr]\n   92 root      0:00 [md]\n   93 root      0:00 [devfreq_wq]\n   94 root      0:00 [ion-pool-uncach]\n   95 root      0:00 [ion-pool-cached]\n   96 root      0:00 [governor_msm_ad]\n   97 root      0:00 [system]\n   99 root      0:00 [irq/204-qpnp_lc]\n  100 root      0:00 [irq/56-arm-smmu]\n  101 root      0:00 [irq/57-arm-smmu]\n  102 root      0:00 [irq/54-cpr3]\n  103 root      0:00 [irq/56-arm-smmu]\n  104 root      0:00 [irq/57-arm-smmu]\n  105 root      0:00 [cfg80211]\n  106 root      0:00 [irq/58-arm-smmu]\n  107 root      0:00 [ipa_power_mgmt]\n  108 root      0:00 [sps_ipa_power_m]\n  109 root      0:00 [ipawq36]\n  110 root      0:00 [iparepwq36]\n  111 root      0:00 [kworker/u17:1-i]\n  112 root      0:00 [ipawq33]\n  113 root      0:00 [iparepwq33]\n  114 root      0:00 [ipawq34]\n  115 root      0:00 [iparepwq34]\n  116 root      0:00 [ipa_rm_wq]\n  117 root      0:00 [ipa_interrupt_w]\n  118 root      0:00 [ipa_holb_wq]\n  119 root      0:00 [irq/59-arm-smmu]\n  120 root      0:00 [irq/56-arm-smmu]\n  121 root      0:00 [irq/57-arm-smmu]\n  158 root      0:00 [kswapd0]\n  159 root      0:00 [ecryptfs-kthrea]\n  196 root      0:00 [irq/200-wled_ov]\n  197 root      0:00 [ad_calc_wq]\n  198 root      0:00 [irq/104-arm-smm]\n  199 root      0:00 [irq/105-arm-smm]\n  200 root      0:00 [mdss_dsi_event]\n  201 root      0:00 [mdss_dsi_dba]\n  202 root      0:00 [irq/32-smp2p]\n  203 root      0:00 [irq/33-smp2p]\n  204 root      0:00 [irq/34-smp2p]\n  205 root      0:00 [mem_share_svc]\n  206 root      0:00 [kworker/1:1-eve]\n  207 root      0:00 [kworker/2:1-eve]\n  208 root      0:00 [kworker/3:1-eve]\n  209 root      0:00 [kworker/4:1-eve]\n  210 root      0:00 [kworker/5:1-eve]\n  211 root      0:00 [kworker/6:1-eve]\n  212 root      0:00 [kworker/7:1-eve]\n  213 root      0:00 [irq/60-arm-smmu]\n  214 root      0:00 [k_hsuart]\n  215 root      0:00 [msm_serial_hs_0]\n  216 root      0:00 [msm_serial_hs_0]\n  217 root      0:00 [hwrng]\n  219 root      0:00 [diag_real_time_]\n  220 root      0:00 [diag_wq]\n  221 root      0:00 [DIAG_USB_diag]\n  222 root      0:00 [diag_cntl_wq]\n  223 root      0:00 [diag_dci_wq]\n  224 root      0:00 [MODEM_CNTL]\n  225 root      0:00 [MODEM_DATA]\n  226 root      0:00 [MODEM_CMD]\n  227 root      0:00 [MODEM_DCI]\n  228 root      0:00 [MODEM_DCI_CMD]\n  229 root      0:00 [LPASS_CNTL]\n  230 root      0:00 [LPASS_DATA]\n  231 root      0:00 [LPASS_CMD]\n  232 root      0:00 [LPASS_DCI]\n  233 root      0:00 [LPASS_DCI_CMD]\n  234 root      0:00 [WCNSS_CNTL]\n  235 root      0:00 [WCNSS_DATA]\n  236 root      0:00 [WCNSS_CMD]\n  237 root      0:00 [WCNSS_DCI]\n  238 root      0:00 [WCNSS_DCI_CMD]\n  239 root      0:00 [SENSORS_CNTL]\n  240 root      0:00 [SENSORS_DATA]\n  241 root      0:00 [SENSORS_CMD]\n  242 root      0:00 [SENSORS_DCI]\n  243 root      0:00 [SENSORS_DCI_CMD]\n  244 root      0:00 [DIAG_CTRL]\n  245 root      0:00 [DIAG_DATA]\n  246 root      0:00 [DIAG_CMD]\n  247 root      0:00 [DIAG_DCI_DATA]\n  248 root      0:00 [DIAG_DCI_CMD]\n  249 root      0:00 [CDSP_CNTL]\n  250 root      0:00 [CDSP_DATA]\n  251 root      0:00 [CDSP_CMD]\n  252 root      0:00 [CDSP_DCI]\n  253 root      0:00 [CDSP_DCI_CMD]\n  254 root      0:00 [NPU_CNTL]\n  255 root      0:00 [NPU_DATA]\n  256 root      0:00 [NPU_CMD]\n  257 root      0:00 [NPU_DCI]\n  258 root      0:00 [NPU_DCI_CMD]\n  259 root      0:00 [DIAG_RPMSG_DIAG]\n  260 root      0:00 [DIAG_RPMSG_DIAG]\n  261 root      0:00 [DIAG_RPMSG_DIAG]\n  262 root      0:00 [DIAG_RPMSG_DIAG]\n  263 root      0:00 [DIAG_RPMSG_DIAG]\n  264 root      0:00 [DIAG_RPMSG_DIAG]\n  265 root      0:00 [DIAG_RPMSG_DIAG]\n  266 root      0:00 [DIAG_RPMSG_DIAG]\n  267 root      0:00 [DIAG_RPMSG_DIAG]\n  268 root      0:00 [DIAG_RPMSG_DIAG]\n  269 root      0:00 [DIAG_RPMSG_APPS]\n  270 root      0:00 [DIAG_RPMSG_APPS]\n  271 root      0:00 [DIAG_RPMSG_DIAG]\n  272 root      0:00 [DIAG_RPMSG_DIAG]\n  273 root      0:00 [DIAG_RPMSG_DIAG]\n  274 root      0:00 [DIAG_RPMSG_DIAG]\n  275 root      0:00 [DIAG_RPMSG_DIAG]\n  276 root      0:00 [DIAG_RPMSG_DIAG]\n  277 root      0:00 [DIAG_RPMSG_DIAG]\n  278 root      0:00 [DIAG_RPMSG_DIAG]\n  279 root      0:00 [kgsl-workqueue]\n  280 root      0:00 [kworker/u16:2+W]\n  281 root      0:00 [kgsl-mementry]\n  282 root      0:00 [kworker/u16:3+S]\n  283 root      0:00 [kworker/u16:4+D]\n  284 root      0:00 [kgsl_worker_thr]\n  285 root      0:00 [kworker/u16:5+C]\n  286 root      0:00 [kworker/u16:6+N]\n  287 root      0:00 [kworker/u16:7-e]\n  288 root      0:00 [kworker/u16:8-e]\n  289 root      0:00 [qseecom-unreg-l]\n  290 root      0:00 [qseecom-unload-]\n  291 root      0:00 [qcrypto_seq_res]\n  292 root      0:00 [irq/128-arm-smm]\n  293 root      0:00 [spi7]\n  294 root      0:00 [irq/129-arm-smm]\n  295 root      0:00 [bond0]\n  297 root      0:00 [kgsl-events]\n  299 root      0:00 [kgsl_devfreq_wq]\n  301 root      0:00 [k_ipa_usb]\n  302 root      0:00 [irq/186-hap_pla]\n  303 root      0:00 [irq/185-hap_sc_]\n  304 root      0:00 [irq/235-hall-sw]\n  305 root      0:00 [hall_irq_event_]\n  306 root      0:00 [rot_commitq_0_0]\n  307 root      0:00 [rot_commitq_0_1]\n  308 root      0:00 [rot_doneq_0_0]\n  309 root      0:00 [rot_doneq_0_1]\n  310 root      0:00 [rot_fenceq_0_0]\n  311 root      0:00 [rot_fenceq_0_1]\n  312 root      0:00 [rot_fenceq_0_2]\n  313 root      0:00 [rot_fenceq_0_3]\n  314 root      0:00 [rot_fenceq_0_4]\n  315 root      0:00 [rot_fenceq_0_5]\n  316 root      0:00 [rot_fenceq_0_6]\n  317 root      0:00 [rot_fenceq_0_7]\n  318 root      0:00 [rot_fenceq_0_8]\n  319 root      0:00 [rot_fenceq_0_9]\n  320 root      0:00 [rot_fenceq_0_10]\n  321 root      0:00 [rot_fenceq_0_11]\n  322 root      0:00 [rot_fenceq_0_12]\n  323 root      0:00 [rot_fenceq_0_13]\n  324 root      0:00 [rot_fenceq_0_14]\n  325 root      0:00 [rot_fenceq_0_15]\n  326 root      0:00 [msm_vidc_worker]\n  327 root      0:00 [pm_workerq_venu]\n  328 root      0:00 [irq/106-arm-smm]\n  329 root      0:00 [irq/107-arm-smm]\n  330 root      0:00 [irq/108-arm-smm]\n  331 root      0:00 [irq/109-arm-smm]\n  332 root      0:00 [irq/110-arm-smm]\n  333 root      0:00 [irq/111-arm-smm]\n  334 root      0:00 [irq/112-arm-smm]\n  335 root      0:00 [irq/113-arm-smm]\n  336 root      0:00 [msm_cci_wq]\n  337 root      0:00 [msm_cci_wq]\n  338 root      0:00 [msm_cpp_workque]\n  339 root      0:00 [irq/236-chg-err]\n  340 root      0:00 [irq/237-chg-sta]\n  341 root      0:00 [irq/241-otg-fai]\n  342 root      0:00 [irq/242-otg-ove]\n  343 root      0:00 [irq/243-otg-oc-]\n  344 root      0:00 [irq/244-testmod]\n  345 root      0:00 [irq/245-bat-tem]\n  346 root      0:00 [irq/246-bat-ocp]\n  347 root      0:00 [irq/247-bat-ov]\n  348 root      0:00 [irq/248-bat-low]\n  349 root      0:00 [irq/249-bat-the]\n  350 root      0:00 [irq/250-bat-ter]\n  351 root      0:00 [irq/251-usbin-c]\n  352 root      0:00 [irq/252-usbin-l]\n  353 root      0:00 [irq/253-usbin-u]\n  354 root      0:00 [irq/254-usbin-o]\n  355 root      0:00 [irq/255-usbin-p]\n  356 root      0:00 [irq/256-usbin-s]\n  357 root      0:00 [irq/257-usbin-i]\n  358 root      0:00 [irq/258-type-c-]\n  359 root      0:00 [irq/259-dcin-co]\n  360 root      0:00 [irq/260-dcin-lt]\n  361 root      0:00 [irq/261-dcin-uv]\n  362 root      0:00 [irq/262-dcin-ov]\n  363 root      0:00 [irq/263-dcin-pl]\n  364 root      0:00 [irq/264-div2-en]\n  365 root      0:00 [irq/265-dcin-ic]\n  366 root      0:00 [irq/267-wdog-ba]\n  367 root      0:00 [irq/268-aicl-fa]\n  368 root      0:00 [irq/269-aicl-do]\n  369 root      0:00 [irq/270-high-du]\n  370 root      0:00 [irq/271-input-c]\n  371 root      0:00 [irq/272-tempera]\n  372 root      0:00 [irq/273-switche]\n  373 root      0:00 [irq/163-qcom,te]\n  374 root      0:00 [irq/187-qcom,te]\n  375 root      0:00 [irq/219-limits_]\n  376 root      0:00 [irq/220-limits_]\n  377 root      0:00 [irq/180-bcl-hig]\n  378 root      0:00 [irq/182-bcl-low]\n  379 root      0:00 [kworker/0:1H-kb]\n  380 root      0:00 [kworker/1:1H]\n  381 root      0:00 [kworker/2:1H]\n  382 root      0:00 [kworker/3:1H]\n  383 root      0:00 [kworker/4:1H]\n  384 root      0:00 [kworker/5:1H]\n  385 root      0:00 [kworker/6:1H]\n  386 root      0:00 [kworker/7:1H]\n  387 root      0:00 [dm_bufio_cache]\n  388 root      0:00 [cds_recovery_wo]\n  389 root      0:00 [wlan_logging_th]\n  390 root      0:00 [memlat_wq]\n  392 root      0:00 [irq/26-c0c4000.]\n  393 root      0:00 [irq/87-arm-smmu]\n  394 root      0:00 [irq/25-mmc0]\n  395 root      0:00 [uaudio_svc]\n  396 root      0:00 [apr_driver]\n  398 root      0:00 [kworker/0:4-eve]\n  399 root      0:00 [ipv6_addrconf]\n  400 root      0:00 [kworker/0:5-eve]\n  401 root      0:00 [irq/133-hs_phy_]\n  403 root      0:00 [irq/135-pwr_eve]\n  404 root      0:00 [irq/134-ss_phy_]\n  405 root      0:00 [usb_bam_wq]\n  406 root      0:00 [irq/275-soc-upd]\n  407 root      0:00 [irq/276-soc-rea]\n  408 root      0:00 [irq/277-bsoc-de]\n  409 root      0:00 [irq/278-msoc-de]\n  410 root      0:00 [irq/279-msoc-lo]\n  411 root      0:00 [irq/280-msoc-em]\n  412 root      0:00 [irq/281-msoc-hi]\n  413 root      0:00 [irq/282-msoc-fu]\n  414 root      0:00 [irq/283-vbatt-p]\n  415 root      0:00 [irq/284-vbatt-l]\n  416 root      0:00 [irq/285-esr-del]\n  417 root      0:00 [irq/286-batt-mi]\n  418 root      0:00 [irq/287-batt-te]\n  419 root      0:00 [irq/288-ima-rdy]\n  420 root      0:00 [irq/289-mem-xcp]\n  421 root      0:00 [irq/290-dma-gra]\n  422 root      0:00 [irq/179-thr-int]\n  425 root      0:00 [rq_stats]\n  426 root      0:00 [irq/88-arm-smmu]\n  427 root      0:00 [irq/89-arm-smmu]\n  428 root      0:00 [irq/90-arm-smmu]\n  429 root      0:00 [irq/91-arm-smmu]\n  431 root      0:00 [sb-3]\n  432 root      0:00 [ngd_rx_thread3]\n  433 root      0:00 [ngd_notify_sl3]\n  434 root      0:00 [kworker/u16:10-]\n  436 root      0:00 [mmc_complete]\n  438 root      0:00 [sdhci_msm_pm_qo]\n  440 root      0:00 [irq/28-c084000.]\n  441 root      0:00 [irq/234-synapti]\n  442 root      0:00 [dsx_rebuild_wor]\n  443 root      0:00 [dsx_exp_workque]\n  444 root      0:00 [irq/203-qpnp_fl]\n  445 root      0:00 [irq/27-mmc1]\n  446 root      0:00 [irq/202-qpnp_fl]\n  447 root      0:00 [irq/201-qpnp_fl]\n  448 root      0:00 [clnt_req]\n  449 root      0:00 [clnt_req]\n  450 root      0:00 [fwu_workqueue]\n  453 root      0:00 [irq/293-c084000]\n  489 root      0:00 [kworker/0:0]\n  539 root      0:00 ps -A\n"
  },
  {
    "path": "results/sdm636/second/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,633600,2057.55672,3.2474064393939392,43.4198539858895,6.331226485422509,47.38418388455104,145.814089736\r\n1,902400,2930.488806,3.24743883643617,61.63879591899004,6.310551194309342,47.539428928257585,102.379533867\r\n1,1113600,3616.41854,3.247502280890805,80.22529609493893,6.655512606738489,45.07541608384301,82.96027476\r\n1,1401600,4551.592299,3.2474260124143837,122.6263396817229,8.083052914516001,37.114689607096736,65.916123204\r\n1,1536000,4988.111667,3.2474685332031252,144.33215073546648,8.681364703084745,34.556778831489616,60.148516175\r\n1,1612800,5237.430168,3.2474145386904762,159.72741948563143,9.14998768423802,32.78692937661402,57.285015395\r\n4,1113600,5992.80863,5.3814732668821845,231.69121239795894,11.60095377014239,25.85994272058183,50.070754303\r\n4,1401600,7539.772299,5.379403752140411,325.83660818089726,12.968328074120302,23.133282739714335,39.80009535\r\n4,1747200,9400.557766,5.3803558642399265,488.0209931308063,15.57876545522272,19.25698161784868,31.922326446\r\n4,1804800,9719.117504,5.385149326241135,509.79715808113315,15.740741324770346,19.05882282227117,30.876479155\r\n"
  },
  {
    "path": "results/sdm636/second/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 834.9300175607204, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1407.962693487, 1405.917411799, 1403.86793896, 1403.86793896, 1395.682621057, 1397.8092755250002, 1401.8226572719998, 1401.8226572719998, 1403.86793896, 1401.741046104, 1397.646529965, 1403.78620872, 1397.646529965, 1405.8355622430001, 1403.78620872, 1401.741046104, 1395.6013673490002, 1397.646529965, 1401.741046104, 1405.753712687, 1403.7044784799998, 1403.5406830399997, 1401.4958781279997, 1405.589678126, 1397.40207813, 1401.4958781279997, 1401.4958781279997, 1401.4958781279997, 1403.4589528000001], \"power_mean\": 1401.9043553208965, \"energy_millijoules\": 7009.5217766044825, \"energy_joules\": 7.009521776604482}, \"cpus\": {\"1\": {\"freqs\": {\"633600\": {\"active\": {\"elapsed_sec\": 145.814089736, \"elapsed_ns\": 145814089736, \"power_samples\": [45.80747696100002, 45.80747696100002, 45.7234828889998, 45.80747696100002, 45.80747696100002, 45.55515050699978, 41.63278291200004, 41.63278291200004, 45.55515050699978, 45.471156434999784, 45.471156434999784, 45.55515050699978, 45.55515050699978, 45.55515050699978, 47.598168362999786, 45.55515050699978, 45.55515050699978, 41.38117259899991, 47.51405521899983, 47.51405521899983, 41.21366123099983, 45.30316829099979, 45.30316829099979, 39.17100059099994, 49.38848957099981, 49.38848957099981, 47.177602643, 45.13518014700003, 45.13518014700003, 47.177602643, 47.34582893099969, 45.30316829099979, 45.30316829099979, 45.13518014700003, 39.00372736700001, 39.00372736700001, 45.05084183699955, 38.91974798199976, 38.91974798199976, 40.96205091799993, 40.87829523399978, 40.87829523399978, 45.13518014700003, 45.05084183699955, 45.05084183699955, 44.966847764999784, 44.88285369299979, 44.88285369299979, 44.88285369299979, 48.96698327699983, 48.96698327699983, 44.88285369299979, 44.966847764999784, 44.966847764999784, 44.88285369299979, 40.627028182000004, 40.627028182000004, 44.714865548999796, 44.714865548999796, 44.714865548999796, 46.756692196999666, 44.714865548999796, 38.58520153399991, 38.58520153399991, 46.756692196999666, 46.672579052999936, 46.672579052999936, 46.672579052999936, 44.546877404999805, 44.546877404999805, 40.4595168139997, 40.4595168139997, 40.4595168139997, 40.4595168139997, 40.375417868999875, 40.375417868999875, 40.4595168139997, 44.546877404999805, 44.546877404999805, 38.33394892499996, 44.546877404999805, 44.546877404999805, 44.29455095099979, 38.33394892499996, 38.33394892499996, 44.29455095099979, 48.37701255100001, 48.37701255100001, 44.29455095099979, 38.16667570100003, 38.16667570100003, 44.1265628069998, 46.083442318999914, 40.04039513299995, 40.04039513299995, 39.95663944900025, 40.04039513299995, 40.04039513299995, 37.999402476999876, 46.16755546299987, 46.16755546299987, 40.04039513299995, 46.083442318999914, 46.083442318999914, 39.95663944900025, 39.788784820000046, 39.788784820000046, 39.95663944900025, 44.04256873500003, 44.04256873500003, 39.95663944900025, 39.788784820000046, 39.788784820000046, 39.705029135999894, 43.87423635299979, 43.87423635299979, 43.87423635299979, 39.705029135999894, 39.705029135999894, 39.705029135999894, 47.78704182499973, 47.78704182499973, 43.70624820899957, 39.62127345199974, 47.702809608999814, 47.702809608999814, 45.83075816099995, 45.746645016999764, 45.746645016999764, 39.62127345199974, 43.70624820899957, 43.70624820899957, 37.58087664399977, 39.62127345199974, 39.62127345199974, 43.70624820899957, 39.62127345199974, 39.62127345199974, 43.70624820899957, 45.66253187299981, 45.66253187299981, 45.66253187299981, 39.537517767999816, 39.537517767999816, 45.494305584999665], \"power_mean\": 43.4198539858895, \"energy_millijoules\": 6331.2264854225095, \"energy_joules\": 6.331226485422509, \"coremark_score\": 2057.55672, \"coremarks_per_mhz\": 3.2474064393939392, \"ulpmark_cm_score\": 47.38418388455104}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1407.470545782, 1405.5078285700001, 1405.5078285700001, 1403.4589528000001], \"power_mean\": 1405.4862889305, \"energy_millijoules\": 7027.4314446525, \"energy_joules\": 7.027431444652501}}, \"902400\": {\"active\": {\"elapsed_sec\": 102.379533867, \"elapsed_ns\": 102379533867, \"power_samples\": [55.698683953999534, 55.444210542999826, 55.444210542999826, 63.692303050999726, 63.60711777099982, 63.60711777099982, 63.60711777099982, 63.60711777099982, 63.60711777099982, 59.52775399500001, 65.48037014299985, 65.48037014299985, 59.35785972299982, 57.31841597899984, 57.31841597899984, 59.187965450999855, 59.35785972299982, 59.35785972299982, 57.148759850999795, 63.43674721100001, 63.43674721100001, 59.187965450999855, 63.43674721100001, 63.01047169099979, 58.93277589899981, 58.93277589899981, 63.01047169099979, 63.01047169099979, 62.92528641099966, 58.93277589899981, 58.93277589899981, 62.92528641099966, 64.8828883619999, 64.8828883619999, 58.847828762999825, 64.96819295799969, 64.96819295799969, 64.96819295799969, 62.84010113099998, 62.84010113099998, 62.84010113099998, 73.04150484899992, 73.04150484899992, 62.92528641099966, 62.75491585099985, 62.75491585099985, 64.79758376599966, 58.76288162700007, 58.76288162700007, 68.70347964599978, 62.75491585099985, 62.75491585099985, 62.58454529100004, 58.508040218999895, 62.58454529100004, 62.58454529100004, 64.62697457399986, 58.508040218999895, 58.508040218999895, 62.58454529100004, 64.45601577299976, 64.45601577299976, 62.499010891000125, 62.499010891000125, 62.499010891000125, 62.499010891000125, 56.384611963, 56.384611963, 58.25285066699985, 62.413825610999766, 62.413825610999766, 58.33779780299983, 62.413825610999766, 62.413825610999766, 62.413825610999766, 58.25285066699985, 58.25285066699985, 64.37071117699998, 54.17288498899961, 54.17288498899961, 62.32864033099986, 62.32864033099986, 62.32864033099986, 64.37071117699998, 62.32864033099986, 57.9980092589999, 57.9980092589999, 64.1147973889997, 55.96047164299989, 55.96047164299989, 64.1147973889997, 72.18334200699974, 72.18334200699974, 62.07308449099992, 55.96047164299989, 55.96047164299989, 64.1147973889997, 57.91306212299969, 57.91306212299969, 63.944188196999676, 61.987899210999785, 61.987899210999785], \"power_mean\": 61.63879591899004, \"energy_millijoules\": 6310.5511943093425, \"energy_joules\": 6.310551194309342, \"coremark_score\": 2930.488806, \"coremarks_per_mhz\": 3.24743883643617, \"ulpmark_cm_score\": 47.539428928257585}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1395.2040125849999, 1395.2040125849999, 1393.1624240809997, 1399.2913731759998], \"power_mean\": 1395.7154556067499, \"energy_millijoules\": 6978.577278033749, \"energy_joules\": 6.978577278033749}}, \"1113600\": {\"active\": {\"elapsed_sec\": 82.96027476, \"elapsed_ns\": 82960274760, \"power_samples\": [1.9751678829998127, 83.98336861499979, 83.89687256700017, 83.89687256700017, 81.68324190599992, 83.89687256700017, 83.89687256700017, 85.76034595100009, 75.56967238099992, 75.56967238099992, 85.76034595100009, 81.68324190599992, 81.68324190599992, 85.76034595100009, 85.76034595100009, 85.76034595100009, 75.48330057099997, 81.59651117099997, 81.59651117099997, 77.6103109459998, 81.59651117099997, 81.59651117099997, 81.59651117099997, 81.59651117099997, 81.59651117099997, 83.55053388299984, 83.55053388299984, 83.55053388299984, 77.43768074299965, 81.51013443899978, 83.29104573899986, 83.29104573899986, 83.29104573899986, 77.17926497899953, 77.17926497899953, 81.16462751099971, 83.29104573899986, 83.29104573899986, 81.16462751099971, 77.17926497899953, 77.17926497899953, 81.16462751099971, 83.20454969099978, 83.20454969099978, 81.16462751099971, 77.0069878029999, 77.0069878029999, 77.0069878029999, 85.15368513099997, 85.15368513099997, 83.20454969099978, 85.15368513099997, 85.15368513099997, 87.10222695900006, 76.92049618799979, 76.92049618799979, 83.03120310300005, 83.11805364300017, 83.11805364300017, 83.11805364300017, 84.89348479099999, 84.89348479099999, 84.89348479099999, 80.81876657999987, 76.6620804239999, 76.6620804239999, 74.7087745849999, 76.6620804239999, 76.6620804239999, 74.62275531299997, 80.73238984799991, 80.73238984799991, 80.73238984799991, 76.6620804239999, 76.6620804239999, 84.80686967099996, 76.6620804239999, 76.6620804239999, 82.68521891099977, 82.59872286299992, 82.59872286299992, 80.64601311599972], \"power_mean\": 80.22529609493893, \"energy_millijoules\": 6655.512606738489, \"energy_joules\": 6.655512606738489, \"coremark_score\": 3616.41854, \"coremarks_per_mhz\": 3.247502280890805, \"ulpmark_cm_score\": 45.07541608384301}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1391.455097192, 1391.455097192, 1401.494852183, 1393.4941837200001], \"power_mean\": 1394.47480757175, \"energy_millijoules\": 6972.37403785875, \"energy_joules\": 6.97237403785875}}, \"1401600\": {\"active\": {\"elapsed_sec\": 65.916123204, \"elapsed_ns\": 65916123204, \"power_samples\": [122.69538856500003, 122.51726689199972, 122.51726689199972, 130.56745514099975, 120.3946633119997, 120.3946633119997, 130.3887446609997, 122.1617520599998, 122.1617520599998, 116.05748235499982, 122.1617520599998, 122.1617520599998, 122.1617520599998, 122.1617520599998, 122.1617520599998, 122.1617520599998, 122.07287335199999, 122.07287335199999, 124.10612193599991, 124.10612193599991, 124.10612193599991, 122.07287335199999, 121.98399464399972, 121.98399464399972, 124.01712415599991, 119.7729820909999, 119.7729820909999, 119.7729820909999, 124.01712415599991, 121.98399464399972, 121.98399464399972, 119.7729820909999, 119.7729820909999, 119.7729820909999, 119.7729820909999, 123.83876385100007, 123.83876385100007, 125.78670339499945, 121.7169942629996, 121.7169942629996, 129.8522470109997, 123.74976607099961, 123.74976607099961, 121.3614794309999, 125.4302350109997, 125.4302350109997, 121.3614794309999, 121.3614794309999, 121.3614794309999, 123.39377495099984, 119.24006050599996, 119.24006050599996, 121.27223646599987, 123.30441242599977, 123.30441242599977, 121.27223646599987, 119.24006050599996, 121.27223646599987, 121.27223646599987, 125.34075268099969, 125.34075268099969, 125.34075268099969, 125.2516355849998, 125.1625184889997, 125.1625184889997], \"power_mean\": 122.6263396817229, \"energy_millijoules\": 8083.052914516001, \"energy_joules\": 8.083052914516001, \"coremark_score\": 4551.592299, \"coremarks_per_mhz\": 3.2474260124143837, \"ulpmark_cm_score\": 37.114689607096736}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1398.3889982399999, 1398.3889982399999, 1392.2729250300001, 1392.109845975], \"power_mean\": 1395.29019187125, \"energy_millijoules\": 6976.450959356251, \"energy_joules\": 6.97645095935625}}, \"1536000\": {\"active\": {\"elapsed_sec\": 60.148516175, \"elapsed_ns\": 60148516175, \"power_samples\": [93.93957009999986, 151.13687269800016, 151.13687269800016, 144.8576960189996, 150.95516958899975, 150.95516958899975, 148.74297238099984, 142.64621373099976, 144.67707941099957, 144.67707941099957, 150.77383806099988, 140.61534805099973, 140.61534805099973, 148.74297238099984, 140.61534805099973, 140.61534805099973, 148.65242568899998, 138.4945312829998, 138.4945312829998, 142.55602449899993, 144.58677110699978, 144.58677110699978, 152.71808027099974, 144.40615449899974, 144.40615449899974, 144.40615449899974, 148.4713323049998, 148.4713323049998, 152.53651011099964, 144.40615449899974, 144.40615449899974, 144.40615449899974, 144.3154760789996, 144.3154760789996, 142.37564603499982, 144.3154760789996, 144.3154760789996, 144.22516777499982, 142.28508717499972, 142.28508717499972, 142.28508717499972, 142.1948979429999, 144.22516777499982, 144.22516777499982, 148.28986782799984, 148.28986782799984, 148.28986782799984, 140.16462811099973, 142.1948979429999, 142.1948979429999, 148.28986782799984, 142.10470871100006, 142.10470871100006, 148.1993211360002, 142.10470871100006, 142.10470871100006, 148.28986782799984, 148.0182277519998, 148.0182277519998, 148.1993211360002], \"power_mean\": 144.33215073546648, \"energy_millijoules\": 8681.364703084744, \"energy_joules\": 8.681364703084745, \"coremark_score\": 4988.111667, \"coremarks_per_mhz\": 3.2474685332031252, \"ulpmark_cm_score\": 34.556778831489616}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1396.99857928, 1396.99857928, 1396.99857928, 1390.888587285], \"power_mean\": 1395.47108128125, \"energy_millijoules\": 6977.35540640625, \"energy_joules\": 6.97735540640625}}, \"1612800\": {\"active\": {\"elapsed_sec\": 57.285015395, \"elapsed_ns\": 57285015395, \"power_samples\": [152.4453529609998, 157.98966589699967, 157.98966589699967, 167.87076618699962, 157.89815006699973, 157.89815006699973, 159.74934067899994, 161.7786574469999, 161.7786574469999, 157.71586547499965, 157.71586547499965, 157.71586547499965, 151.6279151709998, 169.71636852300003, 169.71636852300003, 167.87076618699962, 161.5958960790001, 161.5958960790001, 161.5958960790001, 153.47542363499997, 153.47542363499997, 153.38451948299962, 153.38451948299962, 153.38451948299962, 157.44243858699974, 159.47555584299994, 159.47555584299994, 159.47555584299994, 157.25978046099976, 157.25978046099976, 157.25978046099976, 161.504515395, 159.2926585959999, 159.2926585959999, 159.20139698399976, 159.20139698399976, 159.20139698399976, 167.31996134699966, 153.0205303169996, 153.0205303169996, 159.11013537199983, 159.11013537199983, 159.11013537199983, 159.11013537199983, 169.164848763, 169.164848763, 167.13648505899982, 159.0188737599999, 159.0188737599999, 167.22822320299974, 159.11013537199983, 159.11013537199983, 159.0188737599999, 161.0472374640001, 161.0472374640001, 158.83635053600005, 161.0472374640001], \"power_mean\": 159.72741948563143, \"energy_millijoules\": 9149.98768423802, \"energy_joules\": 9.14998768423802, \"coremark_score\": 5237.430168, \"coremarks_per_mhz\": 3.2474145386904762, \"ulpmark_cm_score\": 32.78692937661402}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1400.089002081, 1400.089002081, 1404.239233654, 1398.2191926980001], \"power_mean\": 1400.6591076285, \"energy_millijoules\": 7003.2955381425, \"energy_joules\": 7.0032955381425}}}}, \"4\": {\"freqs\": {\"1113600\": {\"active\": {\"elapsed_sec\": 50.070754303, \"elapsed_ns\": 50070754303, \"power_samples\": [-2.27128862900031, 236.53955562899955, 246.48199755899986, 246.48199755899986, 240.11110735499983, 236.05962204299976, 236.05962204299976, 235.96371393899994, 240.11110735499983, 240.11110735499983, 235.96371393899994, 235.96371393899994, 235.96371393899994, 237.9893375229999, 235.86780583499967, 229.78714167499993, 229.78714167499993, 235.86780583499967, 235.86780583499967, 235.86780583499967, 239.91881485899967, 237.79728317099966, 237.79728317099966, 231.71697647099995, 229.50009814199962, 229.50009814199962, 237.79728317099966, 231.52524494999966, 231.52524494999966, 235.57968845699952, 241.65927877199988, 241.65927877199988, 235.57968845699952, 235.57968845699952, 235.57968845699952, 241.5630132079998, 237.41278091299978, 237.41278091299978, 239.43768957699967, 231.33390551799994, 231.33390551799994, 239.43768957699967, 237.41278091299978, 237.41278091299978, 235.38787224899988, 237.31675373699954, 235.38787224899988, 235.38787224899988, 239.34154332899948], \"power_mean\": 231.69121239795894, \"energy_millijoules\": 11600.953770142389, \"energy_joules\": 11.60095377014239, \"coremark_score\": 5992.80863, \"coremarks_per_mhz\": 5.3814732668821845, \"ulpmark_cm_score\": 25.85994272058183}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1395.2812393599997, 1397.40002624, 1397.40002624, 1395.3629696], \"power_mean\": 1396.3610653599999, \"energy_millijoules\": 6981.805326799999, \"energy_joules\": 6.981805326799999}}, \"1401600\": {\"active\": {\"elapsed_sec\": 39.80009535, \"elapsed_ns\": 39800095350, \"power_samples\": [320.99244259299985, 320.99244259299985, 330.19713928299984, 326.2544289269997, 326.2544289269997, 328.1750898109999, 324.12684732299977, 324.12684732299977, 326.0512362239997, 319.98130318899985, 327.9716584759999, 327.9716584759999, 325.94984763599973, 325.64568187200007, 325.64568187200007, 329.68858911999996, 319.5771786770001, 319.5771786770001, 327.6671354959999, 325.54429328399965, 325.54429328399965, 325.64568187200007, 327.6671354959999, 327.6671354959999, 329.58696238799985, 325.54429328399965, 325.54429328399965, 327.4641201759998, 327.4641201759998, 327.4641201759998, 329.48533565599996, 329.48533565599996, 329.48533565599996, 325.2397119929997, 319.1726401029998, 319.1726401029998, 333.124030491, 325.2397119929997, 325.2397119929997], \"power_mean\": 325.83660818089726, \"energy_millijoules\": 12968.328074120302, \"energy_joules\": 12.968328074120302, \"coremark_score\": 7539.772299, \"coremarks_per_mhz\": 5.379403752140411, \"ulpmark_cm_score\": 23.133282739714335}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1392.350410232, 1396.417496119, 1394.38187176, 1394.38187176], \"power_mean\": 1394.38291246775, \"energy_millijoules\": 6971.91456233875, \"energy_joules\": 6.971914562338751}}, \"1747200\": {\"active\": {\"elapsed_sec\": 31.922326446, \"elapsed_ns\": 31922326446, \"power_samples\": [-2.1191981490001126, 505.20955037099975, 500.6162142590001, 500.6162142590001, 510.24999565099984, 510.24999565099984, 510.24999565099984, 503.9745577709998, 499.9438026989999, 499.9438026989999, 505.98993530699977, 503.9745577709998, 503.9745577709998, 503.9745577709998, 505.87758599499966, 505.87758599499966, 503.6374070909999, 503.6374070909999, 505.6524269229999, 505.6524269229999, 501.5102760909999, 503.4129466109998, 503.4129466109998, 509.4614203259998, 501.39816492299974, 501.39816492299974, 503.4129466109998, 501.39816492299974, 501.39816492299974, 505.3153789869998, 509.3488326260001], \"power_mean\": 488.0209931308063, \"energy_millijoules\": 15578.765455222721, \"energy_joules\": 15.57876545522272, \"coremark_score\": 9400.557766, \"coremarks_per_mhz\": 5.3803558642399265, \"ulpmark_cm_score\": 19.25698161784868}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1393.4821692, 1395.598329661, 1395.598329661, 1393.4821692], \"power_mean\": 1394.5402494305, \"energy_millijoules\": 6972.7012471524995, \"energy_joules\": 6.972701247152499}}, \"1804800\": {\"active\": {\"elapsed_sec\": 30.876479155, \"elapsed_ns\": 30876479155, \"power_samples\": [-0.9037182530000791, 529.6216231589997, 521.1046929209999, 529.052261091, 529.052261091, 524.6791396890001, 530.7247522590001, 530.7247522590001, 524.5655989249999, 522.438467681, 522.438467681, 530.4969558109997, 530.4969558109997, 530.4969558109997, 528.369586179, 530.1547943429998, 530.1547943429998, 530.3830575869999, 530.1547943429998, 530.1547943429998, 528.1415615669996, 523.997429774, 523.997429774, 528.0277824149998, 523.8838890099996, 523.8838890099996, 529.9269978949997, 523.8838890099996, 523.8838890099996, 529.9269978949997], \"power_mean\": 509.79715808113315, \"energy_millijoules\": 15740.741324770346, \"energy_joules\": 15.740741324770346, \"coremark_score\": 9719.117504, \"coremarks_per_mhz\": 5.385149326241135, \"ulpmark_cm_score\": 19.05882282227117}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1402.488003254, 1402.488003254, 1402.488003254, 1402.65265543], \"power_mean\": 1402.529166298, \"energy_millijoules\": 7012.64583149, \"energy_joules\": 7.01264583149}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sdm636/second/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 1396 mW\n\n\n===== CPU 1 =====\nFrequencies: 633 902 1113 1401 1536 1612\n\n 633:  2058     3.2 C/MHz     43 mW    6.3 J   47.4 I/mJ   145.8 s\n 902:  2930     3.2 C/MHz     62 mW    6.3 J   47.5 I/mJ   102.4 s\n1113:  3616     3.2 C/MHz     80 mW    6.7 J   45.1 I/mJ    83.0 s\n1401:  4552     3.2 C/MHz    123 mW    8.1 J   37.1 I/mJ    65.9 s\n1536:  4988     3.2 C/MHz    144 mW    8.7 J   34.6 I/mJ    60.1 s\n1612:  5237     3.2 C/MHz    160 mW    9.1 J   32.8 I/mJ    57.3 s\n\n\n===== CPU 4 =====\nFrequencies: 1113 1401 1747 1804\n\n1113:  5993     5.4 C/MHz    232 mW   11.6 J   25.9 I/mJ    50.1 s\n1401:  7540     5.4 C/MHz    326 mW   13.0 J   23.1 I/mJ    39.8 s\n1747:  9401     5.4 C/MHz    488 mW   15.6 J   19.3 I/mJ    31.9 s\n1804:  9719     5.4 C/MHz    510 mW   15.7 J   19.1 I/mJ    30.9 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sdm636/second/uptime.txt",
    "content": " 09:25:41 up 14 min,  load average: 1.83, 1.76, 1.14\n"
  },
  {
    "path": "results/sdm636/second/versions.txt",
    "content": "Kernel: Linux version 4.19.219-SiLonT:[Ble]-g6549470641c8 (reina@Laptop-Sangar) (gcc version 12.0.0 20211219 (experimental) (Eva GCC), GNU ld (Eva BinUtils) 2.37.50.20211219) #396 SMP PREEMPT Fri Dec 24 12:49:54 UTC 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sdm660/fourth/cmdline.txt",
    "content": "rcupdate.rcu_normal_after_boot=1 quiet noirqdebug nodebugmon kpti=off nosoftlockup=0 mce=ignore_ce cgroup_disable=pressure androidboot.hardware=qcom user_debug=31 msm_rtb.filter=0x37 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 service_locator.enable=1 androidboot.configfs=true androidboot.usbcontroller=a800000.dwc3 loop.max_part=7 printk.devkmsg=on usbcore.autosuspend=7 kpti=off buildvariant=userdebug veritykeyid=id:7e4333f9bba00adfe0ede979e28ed1920492b40f rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 root=/dev/dm-0 dm=\"system none ro,0 1 android-verity /dev/mmcblk0p65\" androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.veritymode=enforcing androidboot.bootdevice=c0c4000.sdhci androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_nt36672_tianma_fhd_video:config0:1:none:cfg:single_dsi androidboot.slot_suffix=_a skip_initramfs rootwait ro init=/init androidboot.dtb_idx=-1347440721 androidboot.fpsensor=fpc androidboot.secureboot=1 androidboot.hwc=Global androidboot.hwversion=2.21.0 androidboot.hwlevel=MP\n"
  },
  {
    "path": "results/sdm660/fourth/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 4 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nHardware\t: Qualcomm Technologies, Inc SDM660\n"
  },
  {
    "path": "results/sdm660/fourth/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. SDM 660 PM660 + PM660L MTP, Jasmine;\nCompatible: qcom,sdm660-mtp;qcom,sdm660;qcom,mtp;\n"
  },
  {
    "path": "results/sdm660/fourth/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x51af8014]\n[    0.000000] Linux version 4.19.227-Scarlet-X-v1.0+ (Tashar@Manjaro) (Atom-X clang version 15.0.0 (https://github.com/llvm/llvm-project ff024374de1d5e4b109f9f343f7bc798db035c31), LLD 15.0.0) #1 SMP PREEMPT Thu Feb 3 18:48:34 +06 2022\n[    0.000000] Machine model: Qualcomm Technologies, Inc. SDM 660 PM660 + PM660L MTP, Jasmine\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe800000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x000000009cc00000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node venus_fw_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6000000, size 128 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f0400000, size 92 MiB\n[    0.000000] OF: reserved mem: initialized node secure_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085600000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_msa_guard@85600000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085700000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_msa_mem@85700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085800000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node removed_regions@85800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086000000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node smem-mem@86000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086200000, size 45 MiB\n[    0.000000] OF: reserved mem: initialized node removed_regions@86200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ac00000, size 126 MiB\n[    0.000000] OF: reserved mem: initialized node modem_fw_region@8ac00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000092a00000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_fw_region@92a00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094800000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node pil_mba_region@94800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094a00000, size 6 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_fw_region@94a00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000a0000000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node ramoops, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 984000\n[    0.000000]   DMA32 zone: 7292 pages used for memmap\n[    0.000000]   DMA32 zone: 0 pages reserved\n[    0.000000]   DMA32 zone: 466688 pages, LIFO batch:63\n[    0.000000]   Normal zone: 8083 pages used for memmap\n[    0.000000]   Normal zone: 517312 pages, LIFO batch:63\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.0 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] Did not receive the expected number of bytes from PRNG: 0\n[    0.000000] percpu: Embedded 20 pages/cpu s51608 r0 d30312 u81920\n[    0.000000] pcpu-alloc: s51608 r0 d30312 u81920 alloc=20*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: enabling workaround for ARM erratum 845719\n[    0.000000] spectrev2 mitigation disabled by kernel configuration\n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 968625\n[    0.000000] Kernel command line: rcupdate.rcu_normal_after_boot=1 quiet noirqdebug nodebugmon kpti=off nosoftlockup=0 mce=ignore_ce cgroup_disable=pressure androidboot.hardware=qcom user_debug=31 msm_rtb.filter=0x37 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 service_locator.enable=1 androidboot.configfs=true androidboot.usbcontroller=a800000.dwc3 loop.max_part=7 printk.devkmsg=on usbcore.autosuspend=7 kpti=off buildvariant=userdebug veritykeyid=id:7e4333f9bba00adfe0ede979e28ed1920492b40f rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 root=/dev/dm-0 dm=\"system none ro,0 1 android-verity /dev/mmcblk0p65\" androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.veritymode=enforcing androidboot.bootdevice=c0c4000.sdhci androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_nt36672_tianma_fhd_video:config0:1:none:cfg:single_dsi androidboot.slot_suffix=_a skip_initramfs rootwait ro init=/init androidboot.d\n[    0.000000] IRQ lockup detection disabled\n[    0.000000] cgroup: Disabling pressure control group feature\n[    0.000000] cgroup: Disabling pressure control group feature\n[    0.000000] device-mapper: init: will configure 1 devices\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] mem auto-init: stack:all(zero), heap alloc:on, heap free:off\n[    0.000000] software IO TLB: mapped [mem 0xec400000-0xf0400000] (64MB)\n[    0.000000] Memory: 3460216K/3936000K available (15806K kernel code, 2316K rwdata, 5676K rodata, 576K init, 3709K bss, 213640K reserved, 262144K cma-reserved)\n[    0.000000] random: random: get_random_u64 called from __kmem_cache_create+0x3c/0x3ec with crng_init=0\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tNo expedited grace period (rcu_normal_after_boot).\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: Distributor has no Range Selector support\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000013] clocksource: Switched to clocksource arch_sys_counter\n[    0.001337] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001343] pid_max: default: 32768 minimum: 301\n[    0.001447] Security Framework initialized\n[    0.001452] SELinux:  Initializing.\n[    0.001617] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001631] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.002989] ASID allocator initialised with 65536 entries\n[    0.003064] rcu: Hierarchical SRCU implementation.\n[    0.006404] scm_call failed: func id 0x42000c1c, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.006411] Failed to enable shmbridge, rsp = 0, ret = -95\n[    0.006414] shmbridge is not supported by this target\n[    0.006843] smp: Bringing up secondary CPUs ...\n[    0.008828] Detected VIPT I-cache on CPU1\n[    0.008924] CPU1: Booted secondary processor 0x0000000001 [0x51af8014]\n[    0.011030] Detected VIPT I-cache on CPU2\n[    0.011098] CPU2: Booted secondary processor 0x0000000002 [0x51af8014]\n[    0.013018] Detected VIPT I-cache on CPU3\n[    0.013087] CPU3: Booted secondary processor 0x0000000003 [0x51af8014]\n[    0.015454] CPU features: enabling workaround for ARM erratum 858921\n[    0.015491] Detected VIPT I-cache on CPU4\n[    0.015640] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.015693] arch_timer: CPU4: Trapping CNTVCT access\n[    0.015725] CPU4: Booted secondary processor 0x0000000100 [0x51af8002]\n[    0.018469] Detected VIPT I-cache on CPU5\n[    0.018536] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.018552] arch_timer: CPU5: Trapping CNTVCT access\n[    0.018560] CPU5: Booted secondary processor 0x0000000101 [0x51af8002]\n[    0.020879] Detected VIPT I-cache on CPU6\n[    0.021032] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.021079] arch_timer: CPU6: Trapping CNTVCT access\n[    0.021113] CPU6: Booted secondary processor 0x0000000102 [0x51af8002]\n[    0.023823] Detected VIPT I-cache on CPU7\n[    0.023896] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.023912] arch_timer: CPU7: Trapping CNTVCT access\n[    0.023921] CPU7: Booted secondary processor 0x0000000103 [0x51af8002]\n[    0.024184] smp: Brought up 1 node, 8 CPUs\n[    0.024189] SMP: Total of 8 processors activated.\n[    0.024193] CPU features: detected: GIC system register CPU interface\n[    0.024195] CPU features: detected: 32-bit EL0 Support\n[    0.024277] CPU: All CPU(s) started at EL1\n[    0.024326] alternatives: patching kernel code\n[    0.063780] Registered cp15_barrier emulation handler\n[    0.063796] Registered setend emulation handler\n[    0.063982] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.064008] futex hash table entries: 2048 (order: 5, 131072 bytes)\n[    0.069716] pinctrl core: initialized pinctrl subsystem\n[    0.070297] NET: Registered protocol family 16\n[    0.071876] schedtune: configured to support 6 boost groups\n[    0.072325] cpuidle: using governor menu\n[    0.072343] cpuidle: using governor qcom\n[    0.072449] NET: Registered protocol family 42\n[    0.073399] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.074364] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.074875] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.074914] Failed to create IPC log0\n[    0.074916] Failed to create IPC log1\n[    0.074917] Failed to create IPC log2\n[    0.074919] Failed to create IPC log3\n[    0.074921] Failed to create IPC log4\n[    0.081180] console [pstore0] enabled\n[    0.081239] pstore: Registered ramoops as persistent store backend\n[    0.081242] ramoops: attached 0x400000@0xa0000000, ecc: 0/0\n[    0.085862] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.086250] platform soc:smem: assigned reserved memory node smem-mem@86000000\n[    0.087177] platform cce0000.qcom,venus: assigned reserved memory node venus_fw_region\n[    0.087862] platform 15700000.qcom,lpass: assigned reserved memory node adsp_fw_region@92a00000\n[    0.088013] platform 1a300000.qcom,turing: assigned reserved memory node cdsp_fw_region@94a00000\n[    0.088214] platform 4080000.qcom,mss: assigned reserved memory node modem_fw_region@8ac00000\n[    0.109221] Unable to find DT property: qcom,msm-imem-download_mode\n[    0.110321] Unable to find DT property: qcom,msm-imem-emergency_download_mode\n[    0.111471] spmi spmi-0: PMIC arbiter version v3 (0x30000000)\n[    0.116681] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.117400] msm_watchdog 17817000.qcom,wdt: wdog absent resource not present\n[    0.117607] msm_watchdog 17817000.qcom,wdt: MSM Watchdog Initialized\n[    0.117723] sps:sps is ready.\n[    0.118258] gpu-sdm660 5065000.clock-controller: Registered GPU RBCPR clocks\n[    0.119484] qcom_glink_rpm soc:rpm-glink: failed to register early notif -22\n[    0.120785] gfx_mem_acc_corner: Bringing 0uV into 1-1uV\n[    0.120940] msm_gfx_ldo: Bringing 0uV into 400000-400000uV\n[    0.121003] GFX_LDO: msm_gfx_ldo_debugfs_init: debug_info node creation failed\n[    0.126135] gfx_stub_corner: supplied by regulator-dummy\n[    0.127696] qcom_smd_rpm_probe: RPM-SMD running version 0\n[    0.137675] cryptd: max_cpu_qlen set to 1000\n[    0.139411] gdsc_vfe0: supplied by gdsc_camss_top\n[    0.139534] gdsc_vfe1: supplied by gdsc_camss_top\n[    0.139670] gdsc_cpp: supplied by gdsc_camss_top\n[    0.140920] Failed to setup PIL ipc logging\n[    0.140942] socinfo_print: v0.11, id=317, ver=1.0, raw_id=140, raw_ver=0, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65563, pmic_die_revision=131072 foundry_id=3 serial_number=640512517 num_pmics=2\n[    0.142965] arm-smmu 16c0000.arm,smmu-anoc2: Couldn't get clock: smmu_aggr2_noc_clk\n[    0.143166] arm-smmu 5100000.arm,smmu-lpass_q6: Couldn't get clock: lpass_q6_smmu_clk\n[    0.143422] arm-smmu cd00000.arm,smmu-mmss: Couldn't get clock: mmss_mnoc_ahb_clk\n[    0.143516] arm-smmu 5040000.arm,smmu-kgsl: Couldn't get clock: gcc_gpu_cfg_ahb_clk\n[    0.143709] arm-smmu 5180000.arm,smmu-turing_q6: Couldn't get clock: turing_q6_smmu_clk\n[    0.144032] Error: Driver 'arm-smmu' is already registered, aborting...\n[    0.144266] qcom,qpnp-misc 800f000.qcom,spmi:qcom,pm660@0:qcom,misc@900: probe successful\n[    0.144550] SCSI subsystem initialized\n[    0.144637] usbcore: registered new interface driver usbfs\n[    0.144655] usbcore: registered new interface driver hub\n[    0.144683] usbcore: registered new device driver usb\n[    0.144830] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.144847] usb_phy_generic soc:usb_nop_phy: Linked as a consumer to regulator.0\n[    0.145246] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.145270] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.145442] input: qpnp_pon as /devices/platform/soc/800f000.qcom,spmi/spmi-0/spmi0-00/800f000.qcom,spmi:qcom,pm660@0:qcom,power-on@800/input/input0\n[    0.146199] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'cold' boot\n[    0.146222] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from GP1 (Keypad_Reset1)\n[    0.146626] i2c-msm-v2 c175000.i2c: error on clk_get(core_clk):-517\n[    0.146633] i2c-msm-v2 c175000.i2c: error probe() failed with err:-517\n[    0.146789] i2c-msm-v2 c176000.i2c: error on clk_get(core_clk):-517\n[    0.146794] i2c-msm-v2 c176000.i2c: error probe() failed with err:-517\n[    0.146966] i2c-msm-v2 c1b6000.i2c: error on clk_get(core_clk):-517\n[    0.146970] i2c-msm-v2 c1b6000.i2c: error probe() failed with err:-517\n[    0.147091] media: Linux media interface: v0.10\n[    0.147112] videodev: Linux video capture interface: v2.00\n[    0.150519] thermal_sys: of_parse_thermal_message board sensor: quiet_therm\n[    0.152415] tsens_tm_probe : unable to create IPC Logging 0 for tsens 0x00000000010ae000\n[    0.152420] tsens_tm_probe : unable to create IPC Logging 1 for tsens 0x00000000010ae000\n[    0.152423] tsens_tm_probe : unable to create IPC Logging 2 for tsens 0x00000000010ae000\n[    0.154878] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node adsp_region\n[    0.154985] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.155085] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_region\n[    0.160091] ION heap system created\n[    0.170068] ION heap adsp created at 0x00000000fe000000 with size 800000\n[    0.170073] ION heap qsecom created at 0x00000000fe800000 with size 1400000\n[    0.170078] ION heap secure_display created at 0x00000000f0400000 with size 5c00000\n[    0.170083] ION heap secure_heap created\n[    0.171500] PMIC@SID0: PM660 v2.0 options: 0, 0, 0, 0\n[    0.171613] PMIC@SID2: PM660L v2.0.1 options: 0, 0, 0, 0\n[    0.171796] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.171799] ipa ipa_plat_drv_probe:4842 fail to register with bus mgr!\n[    0.172775] Advanced Linux Sound Architecture Driver Initialized.\n[    0.173109] Bluetooth: Core ver 2.22\n[    0.173127] NET: Registered protocol family 31\n[    0.173129] Bluetooth: HCI device and connection manager initialized\n[    0.173137] Bluetooth: HCI socket layer initialized\n[    0.173141] Bluetooth: L2CAP socket layer initialized\n[    0.173146] Bluetooth: SCO socket layer initialized\n[    0.173219] pcie:pcie_init.\n[    0.173223] pcie_init: unable to create IPC log context for pcie0-short\n[    0.173225] pcie_init: unable to create IPC log context for pcie0-long\n[    0.173228] pcie_init: unable to create IPC log context for pcie0-dump\n[    0.173231] pcie_init: unable to create IPC log context for pcie1-short\n[    0.173233] pcie_init: unable to create IPC log context for pcie1-long\n[    0.173235] pcie_init: unable to create IPC log context for pcie1-dump\n[    0.173238] pcie_init: unable to create IPC log context for pcie2-short\n[    0.173240] pcie_init: unable to create IPC log context for pcie2-long\n[    0.173242] pcie_init: unable to create IPC log context for pcie2-dump\n[    0.177981] qcom-clk-smd-rpm soc:qcom,rpmcc: Registered RPM clocks\n[    0.178544] qcom,cpr4-mmss-ldo-regulator 5061000.cpr4-ctrl: Linked as a consumer to regulator.3\n[    0.178557] qcom,cpr4-mmss-ldo-regulator 5061000.cpr4-ctrl: Dropping the link to regulator.3\n[    0.190206] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=5400mV ncp_voltage=5400mV bst_voltage=5500mV\n[    0.190439] pm660_s4: Bringing 1uV into 1805000-1805000uV\n[    0.190723] pm660_s5: Bringing 1uV into 1224000-1224000uV\n[    0.190990] pm660_s6: Bringing 1uV into 504000-504000uV\n[    0.191259] pm660_l1: Bringing 1uV into 1150000-1150000uV\n[    0.191528] pm660_l2: Bringing 1uV into 950000-950000uV\n[    0.191804] pm660_l3: Bringing 1uV into 950000-950000uV\n[    0.192082] pm660_l5: Bringing 1uV into 525000-525000uV\n[    0.192354] pm660_l6: Bringing 1uV into 1200000-1200000uV\n[    0.192561] rpm_vreg_device_probe: pm660_l6_pin_ctrl: regulator type=0 does not support device tree property: qcom,init-pin-ctrl-mode\n[    0.192577] pm660_l6_pin_ctrl: Bringing 1uV into 1200000-1200000uV\n[    0.192849] pm660_l7: Bringing 1uV into 1200000-1200000uV\n[    0.193117] pm660_l8: Bringing 1uV into 1750000-1750000uV\n[    0.193388] pm660_l9: Bringing 1uV into 1750000-1750000uV\n[    0.193595] rpm_vreg_device_probe: pm660_l9_pin_ctrl: regulator type=0 does not support device tree property: qcom,init-pin-ctrl-mode\n[    0.193610] pm660_l9_pin_ctrl: Bringing 1uV into 1750000-1750000uV\n[    0.193892] pm660_l10: Bringing 1uV into 1780000-1780000uV\n[    0.194309] pm660_l11: Bringing 1uV into 1780000-1780000uV\n[    0.194589] pm660_l12: Bringing 1uV into 1780000-1780000uV\n[    0.194864] pm660_l13: Bringing 1uV into 1780000-1780000uV\n[    0.195154] pm660_l14: Bringing 1uV into 1710000-1710000uV\n[    0.195422] pm660_l15: Bringing 1uV into 1650000-1650000uV\n[    0.195697] pm660_l16: Bringing 1uV into 2800000-2800000uV\n[    0.196343] pm660_l17: Bringing 1uV into 1650000-1650000uV\n[    0.196634] pm660_l19: Bringing 1uV into 3200000-3200000uV\n[    0.196846] rpm_vreg_device_probe: pm660_l19_pin_ctrl: regulator type=0 does not support device tree property: qcom,init-pin-ctrl-mode\n[    0.196861] pm660_l19_pin_ctrl: Bringing 1uV into 3200000-3200000uV\n[    0.197138] pm660l_s1: Bringing 1uV into 1125000-1125000uV\n[    0.197408] pm660l_s2: Bringing 1uV into 1050000-1050000uV\n[    0.197685] pm660l_s3_level: Bringing 1uV into 16-16uV\n[    0.197908] pm660l_s3_floor_level: Bringing 1uV into 16-16uV\n[    0.198201] pm660l_s3_level_ao: Bringing 1uV into 16-16uV\n[    0.198617] pm660l_s5_level: Bringing 1uV into 16-16uV\n[    0.198837] pm660l_s5_floor_level: Bringing 1uV into 16-16uV\n[    0.199136] pm660l_s5_level_ao: Bringing 1uV into 16-16uV\n[    0.199419] pm660l_l1: Bringing 1uV into 800000-800000uV\n[    0.199698] pm660l_l2: Bringing 1uV into 350000-350000uV\n[    0.199987] pm660l_l3: Bringing 1uV into 1710000-1710000uV\n[    0.200646] pm660l_l4: Bringing 1uV into 1700000-1700000uV\n[    0.200929] pm660l_l5: Bringing 1uV into 1721000-1721000uV\n[    0.201224] pm660l_l6: Bringing 1uV into 1700000-1700000uV\n[    0.201510] pm660l_l7: Bringing 1uV into 2700000-2700000uV\n[    0.201608] pm660l_l7: supplied by pm660_l10\n[    0.201806] pm660l_l8: Bringing 1uV into 3200000-3200000uV\n[    0.202092] pm660l_l9_level: Bringing 1uV into 16-16uV\n[    0.202319] pm660l_l9_floor_level: Bringing 1uV into 16-16uV\n[    0.202991] pm660l_l10_level: Bringing 1uV into 16-16uV\n[    0.203222] pm660l_l10_floor_level: Bringing 1uV into 16-16uV\n[    0.203590] pm660l_bob: Bringing 1uV into 3300000-3300000uV\n[    0.203825] pm660l_bob_pin1: Bringing 1uV into 3300000-3300000uV\n[    0.203901] cam_avdd_gpio_regulator: supplied by pm660l_bob\n[    0.203920] cam_rear_avdd_gpio_regulator: supplied by pm660l_bob\n[    0.204074] pm660l_bob_pin2: Bringing 1uV into 3300000-3300000uV\n[    0.204282] pm660l_bob_pin3: Bringing 1uV into 3300000-3300000uV\n[    0.205105] arm-smmu 16c0000.arm,smmu-anoc2: \tnon-coherent table walk\n[    0.205109] arm-smmu 16c0000.arm,smmu-anoc2: \t(IDR0.CTTW overridden by FW configuration)\n[    0.205114] arm-smmu 16c0000.arm,smmu-anoc2: \tstream matching with 6 register groups\n[    0.211576] arm-smmu 5100000.arm,smmu-lpass_q6: Couldn't get clock: lpass_q6_smmu_clk\n[    0.211879] arm-smmu cd00000.arm,smmu-mmss: Couldn't get clock: mmss_mnoc_ahb_clk\n[    0.212018] arm-smmu 5040000.arm,smmu-kgsl: Couldn't get clock: gcc_gpu_cfg_ahb_clk\n[    0.212254] arm-smmu 5180000.arm,smmu-turing_q6: Couldn't get clock: turing_q6_smmu_clk\n[    0.212475] i2c-msm-v2 c175000.i2c: error on clk_get(core_clk):-517\n[    0.212480] i2c-msm-v2 c175000.i2c: error probe() failed with err:-517\n[    0.212674] i2c-msm-v2 c176000.i2c: error on clk_get(core_clk):-517\n[    0.212678] i2c-msm-v2 c176000.i2c: error probe() failed with err:-517\n[    0.212895] i2c-msm-v2 c1b6000.i2c: error on clk_get(core_clk):-517\n[    0.212899] i2c-msm-v2 c1b6000.i2c: error probe() failed with err:-517\n[    0.213078] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.213081] ipa ipa_plat_drv_probe:4842 fail to register with bus mgr!\n[    0.213165] gcc-sdm660 100000.clock-controller: Linked as a consumer to regulator.46\n[    0.213190] gcc-sdm660 100000.clock-controller: Linked as a consumer to regulator.48\n[    0.228302] Registered GCC clocks\n[    0.228388] mmcc-sdm660 c8c0000.clock-controller: Linked as a consumer to regulator.49\n[    0.228411] mmcc-sdm660 c8c0000.clock-controller: Linked as a consumer to regulator.46\n[    0.228431] mmcc-sdm660 c8c0000.clock-controller: Linked as a consumer to regulator.34\n[    0.254626] mmcc-sdm660 c8c0000.clock-controller: Registered MMSS clocks\n[    0.254730] gpucc-sdm660 5065000.gfx: Linked as a consumer to regulator.46\n[    0.254752] gpucc-sdm660 5065000.gfx: Linked as a consumer to regulator.49\n[    0.254777] gpucc-sdm660 5065000.gfx: Dropping the link to regulator.49\n[    0.254792] gpucc-sdm660 5065000.gfx: Dropping the link to regulator.46\n[    0.255161] qcom,cpr4-mmss-ldo-regulator 5061000.cpr4-ctrl: Linked as a consumer to regulator.3\n[    0.255181] qcom,cpr4-mmss-ldo-regulator 5061000.cpr4-ctrl: Linked as a consumer to regulator.46\n[    0.255194] qcom,cpr4-mmss-ldo-regulator 5061000.cpr4-ctrl: Linked as a consumer to regulator.1\n[    0.255220] qcom,cpr4-mmss-ldo-regulator 5061000.cpr4-ctrl: Linked as a consumer to regulator.2\n[    0.255228] cpr4_sdm660_mmss_read_fuse_data: gfx_corner: CPR fusing revision = 0\n[    0.255377] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[0] open-loop= 585000 uV\n[    0.255380] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[1] open-loop= 645000 uV\n[    0.255383] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[2] open-loop= 725000 uV\n[    0.255385] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[3] open-loop= 790000 uV\n[    0.255388] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[4] open-loop= 870000 uV\n[    0.255391] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[5] open-loop= 925000 uV\n[    0.255499] cpr3_regulator_init_ctrl: gfx: Default CPR mode = open-loop\n[    0.255803] cpr3_regulator_debugfs_ctrl_add: gfx: cpr3-regulator debugfs base directory creation failed\n[    0.255952] cprh_kbss_read_fuse_data: apc0_pwrcl_corner: speed bin = 1\n[    0.255957] cprh_sdm660_kbss_read_fuse_data: apc0_pwrcl_corner: CPR fusing revision = 2\n[    0.256025] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused   LowSVS: open-loop= 614000 uV\n[    0.256028] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused      SVS: open-loop= 654000 uV\n[    0.256031] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused  SVSPLUS: open-loop= 698000 uV\n[    0.256034] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused      NOM: open-loop= 778000 uV\n[    0.256036] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused TURBO_L1: open-loop= 938000 uV\n[    0.256065] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused   LowSVS: quot[ 7]= 339\n[    0.256069] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused      SVS: quot[ 7]= 408, quot_offset[ 7]=  65\n[    0.256072] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused  SVSPLUS: quot[ 7]= 479, quot_offset[ 7]=  70\n[    0.256076] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused      NOM: quot[ 7]= 618, quot_offset[ 7]= 135\n[    0.256079] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused TURBO_L1: quot[ 7]= 864, quot_offset[ 7]= 245\n[    0.256303] cpr3_regulator_init_ctrl: apc0: Default CPR mode = full HW closed-loop\n[    0.256412] cpr3_regulator_debugfs_ctrl_add: apc0: cpr3-regulator debugfs base directory creation failed\n[    0.256548] cprh_kbss_read_fuse_data: apc1_perfcl_corner: speed bin = 1\n[    0.256552] cprh_sdm660_kbss_read_fuse_data: apc1_perfcl_corner: CPR fusing revision = 2\n[    0.256618] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused      SVS: open-loop= 684000 uV\n[    0.256621] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused  SVSPLUS: open-loop= 728000 uV\n[    0.256624] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused      NOM: open-loop= 798000 uV\n[    0.256626] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused    TURBO: open-loop= 918000 uV\n[    0.256629] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused TURBO_L2: open-loop= 958000 uV\n[    0.256654] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused      SVS: quot[ 7]= 549\n[    0.256658] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused  SVSPLUS: quot[ 7]= 634, quot_offset[ 7]=  85\n[    0.256662] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused      NOM: quot[ 7]= 779, quot_offset[ 7]= 145\n[    0.256665] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused    TURBO: quot[ 7]= 994, quot_offset[ 7]= 215\n[    0.256668] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused TURBO_L2: quot[ 7]=1067, quot_offset[ 7]=  70\n[    0.256872] cpr3_regulator_init_ctrl: apc1: Default CPR mode = full HW closed-loop\n[    0.256969] cpr3_regulator_debugfs_ctrl_add: apc1: cpr3-regulator debugfs base directory creation failed\n[    0.257692] arm-smmu 5100000.arm,smmu-lpass_q6: Linked as a consumer to regulator.6\n[    0.257733] arm-smmu 5100000.arm,smmu-lpass_q6: \tnon-coherent table walk\n[    0.257737] arm-smmu 5100000.arm,smmu-lpass_q6: \t(IDR0.CTTW overridden by FW configuration)\n[    0.257743] arm-smmu 5100000.arm,smmu-lpass_q6: \tstream matching with 13 register groups\n[    0.259117] arm-smmu cd00000.arm,smmu-mmss: Linked as a consumer to regulator.71\n[    0.259130] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.259134] arm-smmu cd00000.arm,smmu-mmss: Bus client registration failed\n[    0.259141] arm-smmu cd00000.arm,smmu-mmss: Dropping the link to regulator.71\n[    0.259313] arm-smmu 5040000.arm,smmu-kgsl: Linked as a consumer to regulator.16\n[    0.259345] arm-smmu 5040000.arm,smmu-kgsl: \tnon-coherent table walk\n[    0.259349] arm-smmu 5040000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by FW configuration)\n[    0.259354] arm-smmu 5040000.arm,smmu-kgsl: \tstream matching with 3 register groups\n[    0.260071] arm-smmu 5180000.arm,smmu-turing_q6: Linked as a consumer to regulator.7\n[    0.260100] arm-smmu 5180000.arm,smmu-turing_q6: \tnon-coherent table walk\n[    0.260104] arm-smmu 5180000.arm,smmu-turing_q6: \t(IDR0.CTTW overridden by FW configuration)\n[    0.260109] arm-smmu 5180000.arm,smmu-turing_q6: \tstream matching with 11 register groups\n[    0.261393] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.261398] i2c-msm-v2 c175000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.261591] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.261854] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.261859] i2c-msm-v2 c176000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.262043] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.262339] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.262343] i2c-msm-v2 c1b6000.i2c: msm_bus_scale_register_client(mstr-id:84):0 (not a problem)\n[    0.262561] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.262917] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.262920] ipa ipa_plat_drv_probe:4842 fail to register with bus mgr!\n[    0.262994] gpucc-sdm660 5065000.gfx: Linked as a consumer to regulator.46\n[    0.263015] gpucc-sdm660 5065000.gfx: Linked as a consumer to regulator.49\n[    0.263044] gpucc-sdm660 5065000.gfx: Linked as a consumer to regulator.68\n[    0.263623] gpucc_gfx3d_clk: set OPP pair(19200000 Hz: 1 uV) on 5000000.qcom,kgsl-3d0\n[    0.263643] gpucc_gfx3d_clk: set OPP pair(647000000 Hz: 6 uV) on 5000000.qcom,kgsl-3d0\n[    0.263652] gpucc_gfx3d_clk: set OPP pair(750000000 Hz: 7 uV) on 5000000.qcom,kgsl-3d0\n[    0.263958] gpucc-sdm660 5065000.gfx: Registered GPUCC clocks\n[    0.264146] clk-cpu-osm 179c0000.qcom,clk-cpu-660: Linked as a consumer to regulator.69\n[    0.264169] clk-cpu-osm 179c0000.qcom,clk-cpu-660: Linked as a consumer to regulator.70\n[    0.264210] clk-cpu-osm 179c0000.qcom,clk-cpu-660: using pwrcl speed bin 1 and pvs_ver 0\n[    0.264221] clk-cpu-osm 179c0000.qcom,clk-cpu-660: using perfcl speed bin 1 and pvs_ver 0\n[    0.265697] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu0\n[    0.265735] add_opp: Set OPP pair (1843200000 Hz, 932000 uv) on cpu0\n[    0.265766] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu1\n[    0.265810] add_opp: Set OPP pair (1843200000 Hz, 932000 uv) on cpu1\n[    0.265839] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu2\n[    0.265872] add_opp: Set OPP pair (1843200000 Hz, 932000 uv) on cpu2\n[    0.265900] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu3\n[    0.265932] add_opp: Set OPP pair (1843200000 Hz, 932000 uv) on cpu3\n[    0.265951] add_opp: Set OPP pair (300000000 Hz, 700000 uv) on cpu4\n[    0.265958] add_opp: Set OPP pair (2208000000 Hz, 980000 uv) on cpu4\n[    0.265966] add_opp: Set OPP pair (300000000 Hz, 700000 uv) on cpu5\n[    0.265976] add_opp: Set OPP pair (2208000000 Hz, 980000 uv) on cpu5\n[    0.265984] add_opp: Set OPP pair (300000000 Hz, 700000 uv) on cpu6\n[    0.265991] add_opp: Set OPP pair (2208000000 Hz, 980000 uv) on cpu6\n[    0.265999] add_opp: Set OPP pair (300000000 Hz, 700000 uv) on cpu7\n[    0.266007] add_opp: Set OPP pair (2208000000 Hz, 980000 uv) on cpu7\n[    0.266010] populate_debugfs_dir: osm debugfs base directory creation failed\n[    0.266011] populate_debugfs_dir: osm debugfs base directory creation failed\n[    0.266525] clk_cpu_osm_driver_probe: OSM driver initialize\n[    0.266739] gdsc_gpu_gx: supplied by gfx_corner\n[    0.267185] arm-smmu cd00000.arm,smmu-mmss: Linked as a consumer to regulator.71\n[    0.267197] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.267201] arm-smmu cd00000.arm,smmu-mmss: Bus client registration failed\n[    0.267208] arm-smmu cd00000.arm,smmu-mmss: Dropping the link to regulator.71\n[    0.267489] legacy-dt-em: Registering EM of 0-3\n[    0.267664] legacy-dt-em: EM of CPU0 already loaded\n[    0.267764] legacy-dt-em: Registering EM of 4-7\n[    0.267869] legacy-dt-em: EM of CPU4 already loaded\n[    0.267891] cpufreq: driver msm up and running\n[    0.267963] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.267965] ipa ipa_plat_drv_probe:4842 fail to register with bus mgr!\n[    0.268268] arm-smmu cd00000.arm,smmu-mmss: Linked as a consumer to regulator.71\n[    0.268277] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.268279] arm-smmu cd00000.arm,smmu-mmss: Bus client registration failed\n[    0.268284] arm-smmu cd00000.arm,smmu-mmss: Dropping the link to regulator.71\n[    0.268933] clocksource: Switched to clocksource arch_sys_counter\n[    0.269049] VFS: Disk quotas dquot_6.6.0\n[    0.269086] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.271446] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.271452] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.271493] mdss_pll c994400.qcom,mdss_dsi_pll: Linked as a consumer to regulator.15\n[    0.272538] dsi_pll_clock_register_14nm: Registered DSI PLL ndx=0 clocks successfully\n[    0.272583] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.272586] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.272619] mdss_pll c996400.qcom,mdss_dsi_pll: Linked as a consumer to regulator.15\n[    0.273586] dsi_pll_clock_register_14nm: Registered DSI PLL ndx=1 clocks successfully\n[    0.273615] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.273643] mdss_pll c011c00.qcom,mdss_dp_pll: Linked as a consumer to regulator.15\n[    0.274057] msm_bus_fabric_init_driver\n[    0.281090] msm_bus_dev_init_qos: Skipping QOS init for 1\n[    0.281132] msm_bus_dev_init_qos: Skipping QOS init for 727\n[    0.281135] msm_bus_dev_init_qos: Skipping QOS init for 728\n[    0.281180] msm_bus_device 1620000.ad-hoc-bus: Bus scaling driver probe successful\n[    0.282239] NET: Registered protocol family 2\n[    0.282346] IP idents hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.283309] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes)\n[    0.283363] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.283561] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.283849] TCP: Hash tables configured (established 32768 bind 32768)\n[    0.283927] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.283982] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.284129] NET: Registered protocol family 1\n[    0.284429] PCI: CLS 0 bytes, default 64\n[    0.284784] IPA smmu_info.s1_bypass=1 smmu_info.fast_map=0\n[    0.284909] ipa 14780000.qcom,ipa:ipa_smmu_ap: Linked as a consumer to 16c0000.arm,smmu-anoc2\n[    0.285185] iommu: Adding device 14780000.qcom,ipa:ipa_smmu_ap to group 0\n[    0.285248] ipa ipa2_uc_state_check:288 uC interface not initialized\n[    0.285253] ipa ipa_sps_irq_control_all:956 EP (2) not allocated.\n[    0.285255] ipa ipa_sps_irq_control_all:956 EP (5) not allocated.\n[    0.286649] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000014784000\n[    0.286653] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000014784000\n[    0.286657] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000014784000\n[    0.286661] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000014784000\n[    0.286664] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000014784000\n[    0.286668] sps:BAM 0x0000000014784000 is registered.\n[    0.287367] sps:BAM 0x0000000014784000 (va:0x(____ptrval____)) enabled: ver:0x27, number of pipes:20\n[    0.298710] IPA driver initialization was successful.\n[    0.299019] ipa 14780000.qcom,ipa:ipa_smmu_uc: Linked as a consumer to 16c0000.arm,smmu-anoc2\n[    0.299391] iommu: Adding device 14780000.qcom,ipa:ipa_smmu_uc to group 1\n[    0.300165] arm-smmu cd00000.arm,smmu-mmss: Linked as a consumer to regulator.71\n[    0.300513] arm-smmu cd00000.arm,smmu-mmss: \tnon-coherent table walk\n[    0.300516] arm-smmu cd00000.arm,smmu-mmss: \t(IDR0.CTTW overridden by FW configuration)\n[    0.300522] arm-smmu cd00000.arm,smmu-mmss: \tstream matching with 52 register groups\n[    0.302456] Unpacking initramfs...\n[    0.559943] Freeing initrd memory: 7492K\n[    0.562760] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.571150] Initialise system trusted keyrings\n[    0.571396] workingset: timestamp_bits=45 max_order=20 bucket_order=0\n[    0.575880] exFAT: file-system version 5.8-2arter97\n[    0.576305] Registering sdcardfs 0.1\n[    0.576551] fuse init (API version 7.27)\n[    0.582789] Key type asymmetric registered\n[    0.582794] Asymmetric key parser 'x509' registered\n[    0.582835] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)\n[    0.582842] io scheduler noop registered\n[    0.582949] io scheduler cfq registered (default)\n[    0.582952] io scheduler mq-deadline registered\n[    0.582955] io scheduler kyber registered\n[    0.583018] io scheduler bfq registered\n[    0.591748] msm_mdss_get_res_byname: 'vbif_nrt_phys' resource not found\n[    0.591769] mdss_mdp_probe+0x1d8/0x2de0->msm_dss_ioremap_byname: 'vbif_nrt_phys' msm_mdss_get_res_byname failed\n[    0.591896] mdp c900000.qcom,mdss_mdp: Linked as a consumer to regulator.15\n[    0.592397] mdss_mdp_irq_clk_setup: unable to get core gdsc regulator\n[    0.592589] mdss_mdp_irq_clk_register: unable to get clk: bimc_clk\n[    0.593770] No change in context(0==0), skip\n[    0.594556] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:0 num:0 rect:0 ndx:0x1 prio:0\n[    0.594560] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:4 num:1 rect:0 ndx:0x2 prio:1\n[    0.594594] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:1 num:6 rect:0 ndx:0x40 prio:2\n[    0.594605] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:1 num:6 rect:1 ndx:0x40 prio:2\n[    0.594608] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:5 num:7 rect:0 ndx:0x80 prio:3\n[    0.594619] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:5 num:7 rect:1 ndx:0x80 prio:3\n[    0.594622] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:9 num:12 rect:0 ndx:0x1000 prio:4\n[    0.594634] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:9 num:12 rect:1 ndx:0x1000 prio:4\n[    0.594648] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:2 num:10 rect:0 ndx:0x400 prio:0\n[    0.594657] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-pipe-sw-reset-off : u32 array read\n[    0.594759] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-ib-factor-overlap : u32 array read\n[    0.594765] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-bus-througput-factor : u32 array read\n[    0.595504] mdss_mdp_probe: mdss version = 0x30020000, bootloader display is on, num 1, intf_sel=0x00000100\n[    0.596848] mdss_smmu c900000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.597320] iommu: Adding device c900000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb to group 2\n[    0.597600] mdss_smmu c900000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb: Linked as a consumer to regulator.71\n[    0.597666] mdss_smmu_probe: iommu v2 domain[0] mapping and clk register successful!\n[    0.597720] mdss_smmu c900000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.599186] iommu: Adding device c900000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb to group 3\n[    0.599412] mdss_smmu c900000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb: Linked as a consumer to regulator.71\n[    0.599467] mdss_smmu_probe: iommu v2 domain[2] mapping and clk register successful!\n[    0.599885] mdss_dsi soc:qcom,mdss_dsi@0: Linked as a consumer to regulator.15\n[    0.599905] mdss_dsi soc:qcom,mdss_dsi@0: Linked as a consumer to regulator.24\n[    0.599946] mdss_dsi soc:qcom,mdss_dsi@0: Linked as a consumer to regulator.52\n[    0.601404] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->0\n[    0.601564] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_nt36672_tianma_fhd_video:config0:1:none:cfg:single_dsi panel_name:qcom,mdss_dsi_nt36672_tianma_fhd_video\n[    0.601591] mdss_dsi_panel_init: Panel Name = tianma nt36672 fhd video mode dsi panel\n[    0.601707] mdss_dsi_parse_split_link_settings: enable 0 sublinks-count 0 lanes per sublink 0\n[    0.601747] mdss_dsi_panel_timing_from_dt: found new timing \"qcom,mdss_dsi_nt36672_tianma_fhd_video\" ((____ptrval____))\n[    0.601767] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-post-panel-on-command\n[    0.601772] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-timing-switch-command\n[    0.601775] mdss_dsi_panel_get_dsc_cfg_np: cannot find dsc config node:config0\n[    0.601899] mdss_dsi_parse_panel_features: ulps feature enabled\n[    0.601904] mdss_dsi_parse_panel_features: ulps during suspend feature disabled\n[    0.601909] mdss_dsi_parse_dms_config: dynamic switch feature enabled: 0\n[    0.601932] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-on\n[    0.601938] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-off\n[    0.601964] dyn_fps: min = 48, max = 60\n[    0.602055] mdss_dsi_ctrl c994000.qcom,mdss_dsi_ctrl0: Linked as a consumer to regulator.35\n[    0.602079] mdss_dsi_ctrl c994000.qcom,mdss_dsi_ctrl0: Linked as a consumer to regulator.19\n[    0.602097] mdss_dsi_ctrl c994000.qcom,mdss_dsi_ctrl0: Linked as a consumer to regulator.20\n[    0.602117] mdss_dsi_parse_ctrl_params:4462 Unable to read qcom,display-id, data=(____ptrval____),len=20\n[    0.602147] mdss_dsi_parse_gpio_params: bklt_en gpio not specified\n[    0.602154] mdss_dsi_parse_gpio_params: avdd_en gpio not specified\n[    0.602190] msm_mdss_get_res_byname: 'dsi_phy_regulator' resource not found\n[    0.602210] mdss_dsi_retrieve_ctrl_resources+0x124/0x1fc->msm_dss_ioremap_byname: 'dsi_phy_regulator' msm_mdss_get_res_byname failed\n[    0.602214] mdss_dsi_retrieve_ctrl_resources: ctrl_base=(____ptrval____) ctrl_size=400 phy_base=(____ptrval____) phy_size=588\n[    0.602604] dsi_panel_device_register: Continuous splash enabled\n[    0.602652] Unable to find fb node for device: c994000.qcom,mdss_dsi_ctrl0\n[    0.602734] mdss_register_panel: adding framebuffer device c994000.qcom,mdss_dsi_ctrl0\n[    0.605457] mdss_dsi_ctrl_probe: Dsi Ctrl->0 initialized, DSI rev:0x20010000, PHY rev:0x2\n[    0.605510] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->1\n[    0.605515] mdss_dsi_pinctrl_init: failed to get pinctrl\n[    0.605517] mdss_dsi_ctrl_probe: failed to get pin resources\n[    0.605562] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_nt36672_tianma_fhd_video:config0:1:none:cfg:single_dsi panel_name:none\n[    0.605564] mdss_dsi_config_panel: can't find panel node 0:qcom,mdss_dsi_nt36672_tianma_fhd_video:config0:1:none:cfg:single_dsi\n[    0.605566] mdss_dsi_ctrl_probe: panel configuration failed\n[    0.605588] mdss_dsi_ctrl: probe of c996000.qcom,mdss_dsi_ctrl1 failed with error -22\n[    0.605607] mdss_dsi_status_init: DSI status check interval:1000\n[    0.606366] mdss_dp_usbpd_setup: get_usbpd phandle failed (-11)\n[    0.606369] mdss_dp_probe: Error usbpd setup!\n[    0.606753] mdss_register_panel: adding framebuffer device soc:qcom,mdss_wb_panel\n[    0.607182] mdss_fb_probe: fb0: split_mode:0 left:0 right:0\n[    0.607287] mdss_panel_debugfs_init: Debugfs create dir failed with error: -19\n[    0.607290] mdss_fb_register: FrameBuffer[0] 1080x2160 registered successfully!\n[    0.607389] mdss_dsi_debugfs_setup: debugfs_create_dir dsi fail, error -19\n[    0.607392] mdss_dsi_debugfs_init: Error in initilizing dsi ctrl debugfs\n[    0.607619] mdss_fb_probe: fb1: split_mode:0 left:0 right:0\n[    0.607679] mdss_fb_register: FrameBuffer[1] 640x480 registered successfully!\n[    0.607745] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    0.607925] mdss_mdp_kcal_store_fb0_ctl panel name tianma nt36672 fhd video mode dsi panel\n[    0.607927] mdss_mdp_kcal_store_fb0_ctl panel found...\n[    0.607968] kcal_ctrl_init: registered\n[    0.608849] qcom-sps-dma c144000.qcom,sps-dma: dma_async_device_register: device has no channels!\n[    0.608895] qcom-sps-dma c184000.qcom,sps-dma: dma_async_device_register: device has no channels!\n[    0.611664] pil-q6v5-mss 4080000.qcom,mss: Linked as a consumer to regulator.46\n[    0.611705] pil-q6v5-mss 4080000.qcom,mss: Linked as a consumer to regulator.49\n[    0.611725] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    0.611752] minidump-id not found for modem\n[    0.611917] platform 4080000.qcom,mss:qcom,mba-mem@0: assigned reserved memory node pil_mba_region@94800000\n[    0.613102] subsys-pil-tz cce0000.qcom,venus: Linked as a consumer to regulator.9\n[    0.613430] minidump-id not found for venus\n[    0.613478] subsys-pil-tz cce0000.qcom,venus: for venus segments only will be dumped.\n[    0.613527] subsys-pil-tz cce0000.qcom,venus: for md_venus segments only will be dumped.\n[    0.613754] subsys-pil-tz 15700000.qcom,lpass: Linked as a consumer to regulator.60\n[    0.613763] minidump-id not found for adsp\n[    0.613855] subsys-pil-tz 15700000.qcom,lpass: for adsp segments only will be dumped.\n[    0.613898] subsys-pil-tz 15700000.qcom,lpass: for md_adsp segments only will be dumped.\n[    0.614315] subsys-pil-tz 1a300000.qcom,turing: Linked as a consumer to regulator.46\n[    0.614323] minidump-id not found for cdsp\n[    0.614410] subsys-pil-tz 1a300000.qcom,turing: for cdsp segments only will be dumped.\n[    0.614471] subsys-pil-tz 1a300000.qcom,turing: for md_cdsp segments only will be dumped.\n[    0.614985] minidump-id not found for a512_zap\n[    0.615028] subsys-pil-tz soc:qcom,kgsl-hyp: for a512_zap segments only will be dumped.\n[    0.615073] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a512_zap segments only will be dumped.\n[    0.620782] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.620912] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.621004] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.623151] qiib_driver_data_init: unable to create logging context\n[    0.623668] msm-dcc: probe of 10b3000.dcc failed with error -2\n[    0.624050] icnss: Unable to create log context\n[    0.624053] icnss: Unable to create log long context\n[    0.624143] icnss 18800000.qcom,icnss: Linked as a consumer to 16c0000.arm,smmu-anoc2\n[    0.624743] iommu: Adding device 18800000.qcom,icnss to group 4\n[    0.624779] icnss: Recursive recovery allowed for WLAN\n[    0.624826] icnss 18800000.qcom,icnss: Linked as a consumer to regulator.27\n[    0.624856] icnss 18800000.qcom,icnss: Linked as a consumer to regulator.33\n[    0.624876] icnss 18800000.qcom,icnss: Linked as a consumer to regulator.29\n[    0.624977] icnss 18800000.qcom,icnss: Linked as a consumer to regulator.43\n[    0.625086] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.625157] icnss: Unable to create debugfs -19\n[    0.625222] icnss: Platform driver probed successfully\n[    0.627038] msm_serial_hs: Cannot create debugfs dir\n[    0.627431] uart_tx_gpio is not available\n[    0.627437] uart_rx_gpio is not available\n[    0.627443] uart_cts_gpio is not available\n[    0.627449] uart_rfr_gpio is not available\n[    0.627582] msm_serial_hs c1af000.uart: msm_hs_probe(): error creating logging context\n[    0.627928] sps: BAM device 0x000000000c184000 is not registered yet.\n[    0.627938] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000c184000\n[    0.627941] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000c184000\n[    0.627945] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000c184000\n[    0.627949] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000c184000\n[    0.627952] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000c184000\n[    0.627955] sps:BAM 0x000000000c184000 is registered.\n[    0.628196] msm_serial_hs c1af000.uart: msm_hs_probe(): error creating tx log context\n[    0.628200] msm_serial_hs c1af000.uart: msm_hs_probe(): error creating rx log context\n[    0.628204] msm_serial_hs c1af000.uart: msm_hs_probe(): error creating usr log context\n[    0.629500] msm_serial_debugfs_init(): Cannot create loopback.0 debug entry\n[    0.629530] c1af000.uart: ttyHS0 at MMIO 0xc1af000 (irq = 159, base_baud = 460800) is a MSM HS UART\n[    0.631724] random: fast init done\n[    0.631844] random: crng init done\n[    0.687230] kgsl-3d 5000000.qcom,kgsl-3d0: Linked as a consumer to regulator.16\n[    0.687292] kgsl-3d 5000000.qcom,kgsl-3d0: Linked as a consumer to regulator.72\n[    0.688844] platform 5040000.qcom,kgsl-iommu:gfx3d_user: Linked as a consumer to 5040000.arm,smmu-kgsl\n[    0.688968] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 5\n[    0.689387] platform 5040000.qcom,kgsl-iommu:gfx3d_secure: Linked as a consumer to 5040000.arm,smmu-kgsl\n[    0.689454] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 6\n[    0.696094] kgsl kgsl-3d0: Bus scaling not enabled\n[    0.705862] loop: module loaded\n[    0.706105] zram: Added device: zram0\n[    0.707766] QSEECOM: qseecom_init_control: qseecom.qsee_version = 0x1001000\n[    0.707816] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.708780] QSEECOM: qseecom_register_heap_shmbridge: Could not get heap 19 info: No shmbridge created\n[    0.709180] QSEECOM: qseecom_register_heap_shmbridge: Could not get heap 26 info: No shmbridge created\n[    0.711852] qce 1de0000.qcedev: QTI Crypto 5.3.4 device found @0x1de0000\n[    0.711874] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000001dc4000\n[    0.711877] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000001dc4000\n[    0.711881] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000001dc4000\n[    0.711885] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000001dc4000\n[    0.711888] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000001dc4000\n[    0.711891] sps:BAM 0x0000000001dc4000 is registered.\n[    0.712112] sps:BAM 0x0000000001dc4000 (va:0x00000000c4fbc72a) enabled: ver:0x27, number of pipes:16\n[    0.712382] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 52\n[    0.713731] Error: Driver 'qcrypto' is already registered, aborting...\n[    0.714381] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    0.716932] sps:BAM 0x000000000c184000 (va:0x000000006a4b05f9) enabled: ver:0x19, number of pipes:12\n[    0.717170] spi_qsd c1b7000.spi: msm_spi_probe: failed to create ipc log cntxt\n[    0.717422] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    0.718876] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.\n[    0.718879] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    0.719139] tun: Universal TUN/TAP device driver, 1.6\n[    0.719196] PPP generic driver version 2.4.2\n[    0.719257] PPP BSD Compression module registered\n[    0.719260] PPP Deflate Compression module registered\n[    0.719303] PPP MPPE Compression module registered\n[    0.719306] NET: Registered protocol family 24\n[    0.719319] PPTP driver version 0.8.5\n[    0.719530] cnss_utils: Unable to create debugfs -19\n[    0.720152] wcnss_pre_alloc_init: Failed to create debugfs dir\n[    0.720155] CLD80211: Initializing\n[    0.720232] usbcore: registered new interface driver r8152\n[    0.720246] usbcore: registered new interface driver asix\n[    0.720267] usbcore: registered new interface driver ax88179_178a\n[    0.720284] usbcore: registered new interface driver cdc_ether\n[    0.720301] usbcore: registered new interface driver cdc_ncm\n[    0.724319] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.725429] msm-qusb-phy c012000.qusb: c012000.qusb supply USB3_GDSC not found, using dummy regulator\n[    0.725456] msm-qusb-phy c012000.qusb: Linked as a consumer to regulator.0\n[    0.725500] msm-qusb-phy c012000.qusb: Linked as a consumer to regulator.52\n[    0.725530] msm-qusb-phy c012000.qusb: Linked as a consumer to regulator.58\n[    0.725551] msm-qusb-phy c012000.qusb: Linked as a consumer to regulator.34\n[    0.725774] msm-qusb-phy c014000.qusb: c014000.qusb supply USB3_GDSC not found, using dummy regulator\n[    0.725784] msm-qusb-phy c014000.qusb: Linked as a consumer to regulator.0\n[    0.725804] msm-qusb-phy c014000.qusb: Linked as a consumer to regulator.52\n[    0.725821] msm-qusb-phy c014000.qusb: Linked as a consumer to regulator.58\n[    0.725836] msm-qusb-phy c014000.qusb: Linked as a consumer to regulator.34\n[    0.726742] msm-usb-ssphy-qmp c010000.ssphy: Linked as a consumer to regulator.52\n[    0.726757] msm-usb-ssphy-qmp c010000.ssphy: Linked as a consumer to regulator.34\n[    0.728365] msm-dwc3 a800000.ssusb: Linked as a consumer to regulator.4\n[    0.730057] dwc3 a800000.dwc3: Failed to get clk 'ref': -2\n[    0.730411] dwc3 a800000.dwc3: changing max_speed on rev 00000000\n[    0.733172] dwc3 a800000.dwc3: Error getting ipc_log_ctxt\n[    0.733176] dwc3 a800000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    0.733939] Invalid index Defaulting curr to 0\n[    0.734615] msm-dwc3 a800000.ssusb: Dropping the link to regulator.4\n[    0.736090] usbcore: registered new interface driver usb-storage\n[    0.736106] usbcore: registered new interface driver usb_ehset_test\n[    0.736119] usbcore: registered new interface driver lvs\n[    0.736984] usb_qcrndis_init: failed to register diag -17\n[    0.737487] qpnp-pdphy 800f000.qcom,spmi:qcom,pm660@0:qcom,usb-pdphy@1700: Linked as a consumer to regulator.58\n[    0.738474] qpnp-pdphy 800f000.qcom,spmi:qcom,pm660@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    0.738581] qpnp-pdphy 800f000.qcom,spmi:qcom,pm660@0:qcom,usb-pdphy@1700: Dropping the link to regulator.58\n[    0.738789] usbcore: registered new interface driver xpad\n[    0.738995] i2c-msm-v2 c175000.i2c: msm_bus_scale_register_client(mstr-id:86):0xb (ok)\n[    0.750189] NVT-ts 1-0062: 1-0062 supply vcc_i2c-supply not found, using dummy regulator\n[    0.750208] NVT-ts 1-0062: Linked as a consumer to regulator.0\n[    0.903625] input: NVTCapacitiveTouchScreen as /devices/virtual/input/input1\n[    0.903787] genirq: irq_chip msmgpio did not update eff. affinity mask of irq 263\n[    0.904830] fpc1020 soc:fpc1020: found pin control fpc1020_reset_reset\n[    0.904834] fpc1020 soc:fpc1020: found pin control fpc1020_reset_active\n[    0.904837] fpc1020 soc:fpc1020: found pin control fpc1020_irq_active\n[    0.905166] fpc1020 soc:fpc1020: Enabling hardware\n[    0.905222] fpc1020 soc:fpc1020: Linked as a consumer to regulator.37\n[    0.917092] fpc1020 soc:fpc1020: IRQ after reset 1\n[    0.917095] fpc1020 soc:fpc1020: fpc1020_probe: ok\n[    0.917295] gf_spi: Macle gf_init failed as fpsensor = 1(2=goodix)\n[    0.917807] Macle hall_probe\n[    0.917819] Macle hall irq_gpio=1242\n[    0.917902] input: hall-switch-input as /devices/virtual/input/input2\n[    0.917964] hall-switch soc:hall_switch: Linked as a consumer to regulator.31\n[    0.918108] hall_probe: gpios = 1, gpion=1\n[    0.918151] Macle hall irq = 265\n[    0.918394] hall_probe end\n[    0.919241] rtc-pm8xxx 800f000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: rtc core: registered pm8xxx_rtc as rtc0\n[    0.919303] rtc-pm8xxx 800f000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: setting system clock to 1970-01-20 05:15:37 UTC (1660537)\n[    0.919603] i2c /dev entries driver\n[    0.919763] msm_vidc:  err: Failed to create debugfs for msm_vidc\n[    0.924819] msm_vidc_v4l2 cc00000.qcom,vidc: Linked as a consumer to regulator.71\n[    0.924841] msm_vidc_v4l2 cc00000.qcom,vidc: Linked as a consumer to regulator.9\n[    0.924860] msm_vidc_v4l2 cc00000.qcom,vidc: Linked as a consumer to regulator.10\n[    0.927130] msm_vidc_v4l2 cc00000.qcom,vidc:non_secure_cb: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.929259] iommu: Adding device cc00000.qcom,vidc:non_secure_cb to group 7\n[    0.929687] msm_vidc_v4l2 cc00000.qcom,vidc:secure_bitstream_cb: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.931994] iommu: Adding device cc00000.qcom,vidc:secure_bitstream_cb to group 8\n[    0.932378] msm_vidc_v4l2 cc00000.qcom,vidc:secure_pixel_cb: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.933672] iommu: Adding device cc00000.qcom,vidc:secure_pixel_cb to group 9\n[    0.934048] msm_vidc_v4l2 cc00000.qcom,vidc:secure_non_pixel_cb: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.935727] iommu: Adding device cc00000.qcom,vidc:secure_non_pixel_cb to group 10\n[    0.941224] msm_vidc_v4l2 cc00000.qcom,vidc: Dropping the link to regulator.10\n[    0.941253] msm_vidc_v4l2 cc00000.qcom,vidc: Dropping the link to regulator.9\n[    0.941267] msm_vidc_v4l2 cc00000.qcom,vidc: Dropping the link to regulator.71\n[    0.942831] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cb1: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.943516] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb1 to group 11\n[    0.943694] CAM-SMMU cam_smmu_populate_sids:2130\n               __debug cnt = 8, cb->name: :vfe sid [0] = 3072\n[    0.943697] CAM-SMMU cam_smmu_populate_sids:2130\n               __debug cnt = 8, cb->name: :vfe sid [1] = 3073\n[    0.943699] CAM-SMMU cam_smmu_populate_sids:2130\n               __debug cnt = 8, cb->name: :vfe sid [2] = 3074\n[    0.943702] CAM-SMMU cam_smmu_populate_sids:2130\n               __debug cnt = 8, cb->name: :vfe sid [3] = 3075\n[    0.943871] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cb2: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.944283] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb2 to group 12\n[    0.944454] CAM-SMMU cam_smmu_populate_sids:2130\n               __debug cnt = 2, cb->name: :cpp sid [0] = 2560\n[    0.944622] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cb4: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.945030] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb4 to group 13\n[    0.945205] CAM-SMMU cam_smmu_populate_sids:2130\n               __debug cnt = 2, cb->name: :jpeg_enc0 sid [0] = 2048\n[    0.945371] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cb5: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.945773] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb5 to group 14\n[    0.945953] CAM-SMMU cam_smmu_populate_sids:2130\n               __debug cnt = 2, cb->name: :jpeg_dma sid [0] = 2049\n[    0.948461] msm ca00000.qcom,msm-cam: Entity type for entity msm_cci was not initialized!\n[    0.950599] msm ca00000.qcom,msm-cam: Entity type for entity msm_csiphy was not initialized!\n[    0.950901] msm ca00000.qcom,msm-cam: Entity type for entity msm_csiphy was not initialized!\n[    0.951157] msm ca00000.qcom,msm-cam: Entity type for entity msm_csiphy was not initialized!\n[    0.951897] msm ca00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    0.952146] msm ca00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    0.952392] msm ca00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    0.952628] msm ca00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    0.953339] msm_actuator_platform_probe:1999 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    0.953345] msm ca00000.qcom,msm-cam: Entity type for entity msm_actuator was not initialized!\n[    0.953504] msm_actuator_platform_probe:1999 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    0.953508] msm ca00000.qcom,msm-cam: Entity type for entity msm_actuator was not initialized!\n[    0.954061] msm_eeprom_platform_probe failed 1949\n[    0.954117] msm ca00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    0.954317] msm_eeprom_platform_probe failed 1949\n[    0.954371] msm ca00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    0.954589] msm_eeprom_platform_probe failed 1949\n[    0.954634] msm ca00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    0.955165] msm ca00000.qcom,msm-cam: Entity type for entity msm_camera_flash was not initialized!\n[    0.955342] msm ca00000.qcom,msm-cam: Entity type for entity msm_camera_flash was not initialized!\n[    0.955423] qcom,camera-flash soc:qcom,camera-flash@1: Led torch-light0 renamed to torch-light0_1 due to name collision\n[    0.956337] msm ca00000.qcom,msm-cam: Entity type for entity msm_sensor_init was not initialized!\n[    0.957654] msm_cpp ca04000.qcom,cpp: Linked as a consumer to regulator.71\n[    0.957672] msm_cpp ca04000.qcom,cpp: Linked as a consumer to regulator.11\n[    0.957691] msm_cpp ca04000.qcom,cpp: Linked as a consumer to regulator.14\n[    0.961313] MSM-CPP cpp_init_hardware:1136 CPP HW Version: 0x60010002\n[    0.961329] MSM-CPP cpp_init_hardware:1154 stream_cnt:0\n[    0.961340] msm ca00000.qcom,msm-cam: Entity type for entity ca04000.qcom,cpp was not initialized!\n[    0.961614] MSM-CPP cpp_release_hardware:1217 cpp hw release done\n[    0.962467] CAM-SOC msm_camera_get_reg_base:822 err: mem resource vfe_fuse not found\n[    0.962470] CAM-SOC msm_camera_get_res_size:865 err: mem resource vfe_fuse not found\n[    0.962500] msm_vfe48 ca10000.qcom,vfe0: Linked as a consumer to regulator.12\n[    0.962515] msm_vfe48 ca10000.qcom,vfe0: Linked as a consumer to regulator.11\n[    0.962566] msm_vfe48 ca10000.qcom,vfe0: Linked as a consumer to regulator.71\n[    0.962969] msm_vfe48_get_dual_sync_platform_data: dual-vfe-irq not supported !\n[    0.962976] msm ca00000.qcom,msm-cam: Entity type for entity ca10000.qcom,vfe0 was not initialized!\n[    0.963119] CAM-SOC msm_camera_get_reg_base:822 err: mem resource vfe_fuse not found\n[    0.963122] CAM-SOC msm_camera_get_res_size:865 err: mem resource vfe_fuse not found\n[    0.963142] msm_vfe48 ca14000.qcom,vfe1: Linked as a consumer to regulator.13\n[    0.963155] msm_vfe48 ca14000.qcom,vfe1: Linked as a consumer to regulator.11\n[    0.963197] msm_vfe48 ca14000.qcom,vfe1: Linked as a consumer to regulator.71\n[    0.963416] CAM-SOC msm_camera_get_reg_base:822 err: mem resource msm-cam not found\n[    0.963420] vfe_hw_probe:fail get dual_sync\n[    0.963424] msm ca00000.qcom,msm-cam: Entity type for entity ca14000.qcom,vfe1 was not initialized!\n[    0.964940] msm_ispif ca31000.qcom,ispif: Linked as a consumer to regulator.11\n[    0.964954] msm_ispif ca31000.qcom,ispif: Linked as a consumer to regulator.12\n[    0.964967] msm_ispif ca31000.qcom,ispif: Linked as a consumer to regulator.13\n[    0.965340] msm ca00000.qcom,msm-cam: Entity type for entity ca31000.qcom,ispif was not initialized!\n[    0.965681] __msm_jpeg_init:1579] Jpeg Device id 0\n[    0.965823] msm_jpeg ca1c000.qcom,jpeg: Linked as a consumer to regulator.71\n[    0.965835] msm_jpeg ca1c000.qcom,jpeg: Linked as a consumer to regulator.11\n[    0.966359] msm_jpegdma caa0000.qcom,jpeg: Linked as a consumer to regulator.71\n[    0.966373] msm_jpegdma caa0000.qcom,jpeg: Linked as a consumer to regulator.11\n[    0.967187] msm ca00000.qcom,msm-cam: Entity type for entity msm_buf_mngr was not initialized!\n[    0.967508] uvcvideo: Unable to create debugfs directory\n[    0.967542] usbcore: registered new interface driver uvcvideo\n[    0.967544] USB Video Class driver (1.1.1)\n[    0.967770] lct QCOM-BATT: qcom_batt_create_debugfs: Couldn't create battery debugfs rc=-19\n[    0.969754] qcom,qpnp-smb2 800f000.qcom,spmi:qcom,pm660@0:qcom,qpnp-smb2: Linked as a consumer to regulator.73\n[    0.978491] QPNP SMB2 probed successfully usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    0.984369] reg-cooling-device soc:qcom,rpm-smd:rpm-regulator-smpb3:cx-cdev: Linked as a consumer to regulator.47\n[    0.987556] device-mapper: uevent: version 1.0.3\n[    0.987702] device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel@redhat.com\n[    0.987945] device-mapper: android-verity: Cannot create android_verity debugfs directory: -19\n[    0.988515] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in devicetree\n[    0.988521] bt_power_populate_dt_pinfo: wl-reset-gpio not provided in devicetree\n[    0.988540] bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    0.988543] bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    0.988559] bt_dt_parse_vreg_info: qca,bt-vdd-aon: is not provided in device tree\n[    0.988562] bt_dt_parse_vreg_info: qca,bt-vdd-dig: is not provided in device tree\n[    0.988565] bt_dt_parse_vreg_info: qca,bt-vdd-rfa1: is not provided in device tree\n[    0.988568] bt_dt_parse_vreg_info: qca,bt-vdd-rfa2: is not provided in device tree\n[    0.988570] bt_dt_parse_vreg_info: qca,bt-vdd-asd: is not provided in device tree\n[    0.989739] sdhci: Secure Digital Host Controller Interface driver\n[    0.989741] sdhci: Copyright(c) Pierre Ossman\n[    0.989743] sdhci-pltfm: SDHCI platform and OF driver helper\n[    0.990416] usbcore: registered new interface driver usbhid\n[    0.990418] usbhid: USB HID core driver\n[    0.990531] ashmem: initialized\n[    0.990535] wlan: Loading driver v5.2.05.23C\n[    0.991660] sdhci_msm c0c4000.sdhci: Failed to get dll hsr settings from dt\n[    0.991668] sdhci_msm c0c4000.sdhci: core_reset unavailable,err = -2\n[    0.991671] sdhci_msm c0c4000.sdhci: Reset data parsing error\n[    0.994174] ipa ipa2_uc_reg_rdyCB:1726 bad parm. inout=          (null) \n[    0.994261] wlan_hdd_state wlan major(505) initialized\n[    0.995206] bimc-bwmon 1008000.qcom,cpu-cpu-ddr-bwmon: BW HWmon governor registered.\n[    0.996753] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-cpu-ddr-latmon: Memory Latency governor registered.\n[    0.997036] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-computemon: Compute governor registered.\n[    0.997269] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-cpu-ddr-latmon: Memory Latency governor registered.\n[    0.997448] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-computemon: Compute governor registered.\n[    0.998192] sdhci_msm c0c4000.sdhci: Linked as a consumer to regulator.55\n[    0.998229] sdhci_msm c0c4000.sdhci: Linked as a consumer to regulator.31\n[    0.999267] mmc0: CQHCI version 5.10\n[    0.999570] mmc0: SDHCI controller on c0c4000.sdhci [c0c4000.sdhci] using 64-bit ADMA in CMDQ mode\n[    1.002155] adc_probe : unable to create IPC Logging 0 for qcom,pm660@0 ADC\n[    1.002158] adc_probe : unable to create IPC Logging 1 for qcom,pm660@0 ADC\n[    1.003986] usbcore: registered new interface driver snd-usb-audio\n[    1.004113] uaudio-qmi soc:usb_audio_qmi_dev: Linked as a consumer to 5100000.arm,smmu-lpass_q6\n[    1.004183] iommu: Adding device soc:usb_audio_qmi_dev to group 15\n[    1.008507] apr_probe: Unable to create ipc log context\n[    1.009092] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    1.009524] i2c-msm-v2 c1b6000.i2c: msm_bus_scale_register_client(mstr-id:84):0x18 (ok)\n[    1.009579] tas2557 6-004c: tas2557_i2c_probe enter\n[    1.032711] sdhci_msm c0c4000.sdhci: mmc0: CQE init: success\n[    1.060331] tas2557 6-004c: PG2.1 Silicon found\n[    1.060464] tas2557 6-004c: tas2557_register_codec, enter\n[    1.060528] tas2557 6-004c: tas2557_register_misc, leave\n[    1.060531] tas2557 6-004c: tiload_driver_init\n[    1.060546] tas2557 6-004c: allocated Major Number: 501\n[    1.060628] tas2557 6-004c: Registered TiLoad driver, Major number: 501\n[    1.060920] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.061608] msm-cdc-pinctrl soc:sdw_clk_data_pinctrl: msm_cdc_pinctrl_probe: Cannot get cdc gpio pinctrl:-19\n[    1.061631] msm-cdc-pinctrl soc:wsa_spkr_en1_pinctrl: msm_cdc_pinctrl_probe: Cannot get cdc gpio pinctrl:-19\n[    1.061668] msm-cdc-pinctrl soc:wsa_spkr_en2_pinctrl: msm_cdc_pinctrl_probe: Cannot get cdc gpio pinctrl:-19\n[    1.070192] tas2557 6-004c: Falling back to syfs fallback for: tas2557_uCDSP.bin\n[    1.081531] mmc0: Out-of-interrupt timeout is 246[ms]\n[    1.081535] mmc0: eMMC FW version: 0x04\n[    1.084935] GACT probability NOT on\n[    1.084946] Mirror/redirect action on\n[    1.084951] u32 classifier\n[    1.084952]     Actions configured\n[    1.085740] xt_time: kernel timezone is -0000\n[    1.085852] gre: GRE over IPv4 demultiplexor driver\n[    1.085854] IPv4 over IPsec tunneling driver\n[    1.086669] Initializing XFRM netlink socket\n[    1.086678] IPsec XFRM device driver\n[    1.087122] NET: Registered protocol family 10\n[    1.087786] mmc0: Command Queue Engine enabled\n[    1.087797] mmc0: new HS400 Enhanced strobe MMC card at address 0001\n[    1.088565] Segment Routing with IPv6\n[    1.088612] mip6: Mobile IPv6\n[    1.089002] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    1.089443] NET: Registered protocol family 17\n[    1.089455] NET: Registered protocol family 15\n[    1.089498] l2tp_core: L2TP core driver, V2.0\n[    1.089503] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    1.089505] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    1.089512] l2tp_netlink: L2TP netlink interface\n[    1.089535] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    1.089537] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    1.089567] sctp: Hash tables configured (bind 256/256)\n[    1.089704] Key type dns_resolver registered\n[    1.090249] cam_dvdd_gpio_regulator: supplied by pm660_s5\n[    1.090578] cam_rear_dvdd_gpio_regulator: supplied by pm660_s5\n[    1.090982] mdss_dp_usbpd_setup: get_usbpd phandle failed (-517)\n[    1.090985] mdss_dp_probe: Error usbpd setup!\n[    1.091377] msm-dwc3 a800000.ssusb: Linked as a consumer to regulator.4\n[    1.092295] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0xf) latency=-1\n[    1.092298] sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xf0) latency=-1\n[    1.092310] mmcblk0: mmc0:0001 S0J9D8 58.2 GiB \n[    1.092354] mmcblk0rpmb: mmc0:0001 S0J9D8 partition 3 4.00 MiB, chardev (506:0)\n[    1.093131] dwc3 a800000.dwc3: Failed to get clk 'ref': -2\n[    1.093549] dwc3 a800000.dwc3: changing max_speed on rev 00000000\n[    1.096429] dwc3 a800000.dwc3: Error getting ipc_log_ctxt\n[    1.096432] dwc3 a800000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.096911] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a904000\n[    1.096913] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a904000\n[    1.096917] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a904000\n[    1.096919] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a904000\n[    1.096922] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a904000\n[    1.096924] sps:BAM 0x000000000a904000 is registered.\n[    1.097518] Invalid index Defaulting curr to 0\n[    1.098130] msm-dwc3 a800000.ssusb: Dropping the link to regulator.4\n[    1.098488] qpnp-pdphy 800f000.qcom,spmi:qcom,pm660@0:qcom,usb-pdphy@1700: Linked as a consumer to regulator.58\n[    1.098656]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42 p43 p44 p45 p46 p47 p48 p49 p50 p51 p52 p53 p54 p55 p56 p57 p58 p59 p60 p61 p62 p63 p64 p65 p66 p67 p68 p69\n[    1.102493] sdhci_msm c084000.sdhci: Failed to get dll hsr settings from dt\n[    1.102500] sdhci_msm c084000.sdhci: core_reset unavailable,err = -2\n[    1.102503] sdhci_msm c084000.sdhci: Reset data parsing error\n[    1.105219] sdhci_msm c084000.sdhci: Linked as a consumer to regulator.56\n[    1.105238] sdhci_msm c084000.sdhci: Linked as a consumer to regulator.53\n[    1.114452] debugfs is not enabled in the kernel\n[    1.114489] FG: fg_gen3_probe: battery SOC:50 voltage: 4163319uV temp: 358\n[    1.117806] mmc1: SDHCI controller on c084000.sdhci [c084000.sdhci] using 64-bit ADMA in legacy mode\n[    1.122130] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    1.122359] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.123135] mdss_dp c990000.qcom,dp_ctrl: Linked as a consumer to regulator.15\n[    1.123155] mdss_dp c990000.qcom,dp_ctrl: Linked as a consumer to regulator.34\n[    1.123180] mdss_dp c990000.qcom,dp_ctrl: Linked as a consumer to regulator.52\n[    1.124025] mdss_dp_parse_gpio_params: 996,hpd gpio not specified\n[    1.124218] mdss_register_panel: adding framebuffer device c990000.qcom,dp_ctrl\n[    1.124464] mdss_dp_device_register: dp initialized\n[    1.124466] hdmi_edid_config_override: invalid edid ctrl data\n[    1.124594] msm-dwc3 a800000.ssusb: Linked as a consumer to regulator.4\n[    1.125765] dwc3 a800000.dwc3: Failed to get clk 'ref': -2\n[    1.126063] dwc3 a800000.dwc3: changing max_speed on rev 00000000\n[    1.128968] dwc3 a800000.dwc3: Error getting ipc_log_ctxt\n[    1.128972] dwc3 a800000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.129426] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a904000\n[    1.129428] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a904000\n[    1.129431] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a904000\n[    1.129434] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a904000\n[    1.129436] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a904000\n[    1.129438] sps:BAM 0x000000000a904000 is registered.\n[    1.130119] msm-dwc3 a800000.ssusb: Linked as a consumer to regulator.73\n[    1.130309] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    1.130485] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.130865] mdss_fb_probe: fb2: split_mode:0 left:0 right:0\n[    1.130934] mdss_fb_register: FrameBuffer[2] 640x480 registered successfully!\n[    1.131941] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    1.132103] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    1.132259] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.133267] core_ctl: Creating CPU group 0\n[    1.133269] core_ctl: Init CPU0 state\n[    1.133271] core_ctl: Init CPU1 state\n[    1.133272] core_ctl: Init CPU2 state\n[    1.133273] core_ctl: Init CPU3 state\n[    1.133684] core_ctl: Creating CPU group 4\n[    1.133686] core_ctl: Init CPU4 state\n[    1.133687] core_ctl: Init CPU5 state\n[    1.133689] core_ctl: Init CPU6 state\n[    1.133690] core_ctl: Init CPU7 state\n[    1.133947] registered taskstats version 1\n[    1.133949] Loading compiled-in X.509 certificates\n[    1.134842] Loaded X.509 cert 'Android: 7e4333f9bba00adfe0ede979e28ed1920492b40f'\n[    1.134943] Key type ._fscrypt registered\n[    1.134945] Key type .fscrypt registered\n[    1.134947] Key type fscrypt-provisioning registered\n[    1.135003] pstore: Invalid compression size for deflate: 0\n[    1.137143] msm-dwc3 a800000.ssusb: DWC3 exited from low power mode\n[    1.139319] Error: swapper/0: fastrpc_device_init: failed to create debugfs root dir\n[    1.139812] fastrpc soc:qcom,msm-adsprpc-mem: for adsp_rh segments only will be dumped.\n[    1.139907] adsprpc: init_secure_vmid_list: secure VMID = 33\n[    1.139925] adsprpc: fastrpc_probe: service location enabled for avs/audio (audio_pdr_adsprpc)\n[    1.140459] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1: Linked as a consumer to 5100000.arm,smmu-lpass_q6\n[    1.140943] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 16\n[    1.141459] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2: Linked as a consumer to 5100000.arm,smmu-lpass_q6\n[    1.141574] msm-dwc3 a800000.ssusb: DWC3 in low power mode\n[    1.141700] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 17\n[    1.142135] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3: Linked as a consumer to 5100000.arm,smmu-lpass_q6\n[    1.142333] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 18\n[    1.142749] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4: Linked as a consumer to 5100000.arm,smmu-lpass_q6\n[    1.142942] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 19\n[    1.143372] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5: Linked as a consumer to 5180000.arm,smmu-turing_q6\n[    1.143564] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 20\n[    1.143995] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6: Linked as a consumer to 5180000.arm,smmu-turing_q6\n[    1.144182] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 21\n[    1.144613] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7: Linked as a consumer to 5180000.arm,smmu-turing_q6\n[    1.144808] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7 to group 22\n[    1.145235] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8: Linked as a consumer to 5180000.arm,smmu-turing_q6\n[    1.145472] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8 to group 23\n[    1.145887] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9: Linked as a consumer to 5180000.arm,smmu-turing_q6\n[    1.146075] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 24\n[    1.146490] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10: Linked as a consumer to 5180000.arm,smmu-turing_q6\n[    1.146695] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 25\n[    1.147131] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11: Linked as a consumer to 5180000.arm,smmu-turing_q6\n[    1.147641] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 26\n[    1.148067] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12: Linked as a consumer to 5180000.arm,smmu-turing_q6\n[    1.148332] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 27\n[    1.148815] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13: Linked as a consumer to 5180000.arm,smmu-turing_q6\n[    1.149070] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13 to group 28\n[    1.150411] adsprpc: fastrpc_device_init: SSR notifier registered for adsp\n[    1.150415] adsprpc: fastrpc_device_init: SSR notifier registered for modem\n[    1.150418] adsprpc: fastrpc_device_init: SSR notifier registered for slpi\n[    1.150421] adsprpc: fastrpc_device_init: SSR notifier registered for cdsp\n[    1.150721] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    1.150890] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.151441] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    1.151592] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.152027] ngd_msm_ctrl 15240000.slim: error creating ipc_logging context\n[    1.152030] ngd_msm_ctrl 15240000.slim: error creating ipc_error_logging context\n[    1.153322] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    1.153479] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.155459] input: soc:gpio_keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    1.157268] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    1.157489] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.158664] i2c-msm-v2 c176000.i2c: msm_bus_scale_register_client(mstr-id:86):0x1b (ok)\n[    1.162490] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    1.162702] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.164554] rmnet_ipa started initialization\n[    1.164556] IPA SSR support = True\n[    1.164558] IPA is_platform_type_msm = True\n[    1.164561] IPA SG support = True\n[    1.164563] IPA Napi Enable = True\n[    1.164565] using default for wan-rx-desc-size = 1024\n[    1.165027] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    1.165192] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.167885] ipa ipa_sps_irq_control_all:956 EP (5) not allocated.\n[    1.167890] ipa ipa2_uc_state_check:293 uC is not loaded\n[    1.168749] rmnet_ipa completed initialization\n[    1.169536] RNDIS_IPA module is loaded.\n[    1.170060] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    1.170496] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    1.170838] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.171941] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    1.175033] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    1.175710] ALSA device list:\n[    1.175712]   No soundcards found.\n[    1.175758] Warning: unable to open an initial console.\n[    1.175890] Freeing unused kernel memory: 576K\n[    1.175950] Run /init as init process\n[    1.500800] of_batterydata_get_best_profile: 3797504_lc_d2s_sunwoda_3000mah_fg_averaged_masterslave_jan11th2019 found\n[    2.215037] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    2.215247] cpu1 \n[    2.215308] cpu4 \n[    2.215356] \n               Offline CPUs: \n[    2.218748] cpu1 \n[    2.243405] CPU1: shutdown\n[    2.243440] psci: CPU1 killed (polled 0 ms)\n[    2.244141] cpu2 \n[    2.273549] CPU2: shutdown\n[    2.273576] psci: CPU2 killed (polled 0 ms)\n[    2.274252] cpu3 \n[    2.303268] CPU3: shutdown\n[    2.303307] psci: CPU3 killed (polled 0 ms)\n[    2.304019] cpu4 \n[    2.336587] CPU4: shutdown\n[    2.336634] psci: CPU4 killed (polled 0 ms)\n[    2.337483] cpu5 \n[    2.366589] CPU5: shutdown\n[    2.366634] psci: CPU5 killed (polled 0 ms)\n[    2.367471] cpu6 \n[    2.406546] CPU6: shutdown\n[    2.406587] psci: CPU6 killed (polled 0 ms)\n[    2.407439] cpu7 \n[    2.436448] CPU7: shutdown\n[    2.436484] psci: CPU7 killed (polled 0 ms)\n\n[    7.442476] Sampling power every 1000 ms\n               Baseline power usage: \n[   31.201668] gfx_mem_acc_corner: disabling\n[   31.201692] gdsc_ufs: disabling\n[   31.201745] cam_avdd_gpio_regulator: disabling\n[   31.201752] cam_rear_avdd_gpio_regulator: disabling\n[   31.201830] apc0_pwrcl_corner: disabling\n[   31.201836] apc1_perfcl_corner: disabling\n[   31.201855] cam_dvdd_gpio_regulator: disabling\n[   31.201862] cam_rear_dvdd_gpio_regulator: disabling\n[   64.481470] tas2557 6-004c: tas2557_fw_ready:\n[   64.481482] tas2557 6-004c: tas2557_uCDSP.bin firmware is not loaded.\n[   82.572897] Detected VIPT I-cache on CPU1\n[   82.573035] CPU1: Booted secondary processor 0x0000000001 [0x51af8014]\n[   83.580904] 1338 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 633 902 1113 1401 1536 1747 1843\n               \n                633: \n[  238.049772]  2058     3.2 C/MHz     53 mW    7.7 J   38.9 I/mJ   145.8 s\n                902: \n[  305.120322] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120342] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120819] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120831] audio_notifer_reg_service: service SSR_ADSP is in use\n[  305.120863] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120870] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for audio_pdr_adsprpc\n[  305.120887] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  349.382611]  2930     3.2 C/MHz     68 mW    7.0 J   42.9 I/mJ   102.4 s\n               1113: \n[  440.647938]  3616     3.2 C/MHz     99 mW    8.2 J   36.5 I/mJ    83.0 s\n               1401: \n[  514.880946]  4552     3.2 C/MHz    129 mW    8.5 J   35.3 I/mJ    65.9 s\n               1536: \n[  584.104130]  4988     3.2 C/MHz    163 mW    9.8 J   30.7 I/mJ    60.1 s\n               1747: \n[  645.309464]  5674     3.2 C/MHz    196 mW   10.4 J   28.9 I/mJ    52.9 s\n               1843: \n[  704.543412] CPU1: shutdown\n[  704.543469] psci: CPU1 killed (polled 0 ms)\n[  704.546467] Detected VIPT I-cache on CPU4\n[  704.546562] arch_timer: CPU4: Trapping CNTVCT access\n[  704.546587] CPU4: Booted secondary processor 0x0000000100 [0x51af8002]\n[  705.555238]  5986     3.2 C/MHz    224 mW   11.2 J   26.7 I/mJ    50.1 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 1113 1401 1747 1958 2150 2208\n               \n               1113: \n[  765.852290]  5828     5.2 C/MHz    254 mW   13.1 J   22.9 I/mJ    51.5 s\n               1401: \n[  815.112468]  7321     5.2 C/MHz    342 mW   14.0 J   21.4 I/mJ    41.0 s\n               1747: \n[  856.347419]  9138     5.2 C/MHz    516 mW   16.9 J   17.7 I/mJ    32.8 s\n               1958: \n[  894.571630] 10247     5.2 C/MHz    641 mW   18.8 J   16.0 I/mJ    29.3 s\n               2150: \n[  929.787449] 11257     5.2 C/MHz    783 mW   20.9 J   14.4 I/mJ    26.7 s\n               2208: \n[  964.026875] CPU4: shutdown\n[  964.026927] psci: CPU4 killed (polled 0 ms)\n[  964.036982] 11553     5.2 C/MHz    915 mW   23.8 J   12.6 I/mJ    26.0 s\n               \n               \n               Benchmark finished!\n[  964.069764] \n               real\t16m2.775s\n               user\t12m48.966s\n               sys\t0m0.402s\n"
  },
  {
    "path": "results/sdm660/fourth/post_bench_interrupts.txt",
    "content": "           CPU0       \n  1:          0   mpm-gic 203 Edge      mpm\n  4:      11253   mpm-gic  19 Level     arch_timer\n  6:      97221   mpm-gic  39 Level     arch_mem_timer\n  9:          0   mpm-gic 271 Level     sps\n 11:          0   mpm-gic  35 Edge      apps_wdog_bark\n 13:          0   mpm-gic 216 Level     tsens-upper-lower\n 14:          0   mpm-gic 462 Level     tsens-critical\n 16:          0   mpm-gic 323 Level     ngd_slim_irq\n 23:          0   mpm-gic  67 Edge      OSM IRQ\n 24:          0   mpm-gic  68 Edge      OSM IRQ\n 25:         77   mpm-gic 142 Level     mmc0\n 26:          4   mpm-gic 144 Level     c0c4000.sdhci\n 27:         13     GICv3 157 Level     mmc1\n 28:          2     GICv3 253 Level     c084000.sdhci\n 29:          0   mpm-gic 365 Edge      ipa\n 30:         18   mpm-gic 464 Level     sps\n 31:       6666   mpm-gic 200 Edge      glink-native-rpm-glink\n 32:          0   mpm-gic 483 Edge      smp2p\n 33:          0   mpm-gic 190 Edge      smp2p\n 34:          0   mpm-gic 546 Edge      smp2p\n 47:          0   mpm-gic 194 Edge      adsp\n 48:          0   mpm-gic 550 Edge      cdsp\n 49:          0   mpm-gic 480 Edge      modem\n 51:          0   mpm-gic  22 Level     arm-pmu\n 52:          0   mpm-gic 238 Level     sps\n 55:          0   mpm-gic 317 Edge      cpr3\n 56:          0   mpm-gic 332 Level     kgsl_3d0_irq\n 57:          0   mpm-gic 261 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n 58:          0   mpm-gic 263 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n 59:          0   mpm-gic 405 Level     arm-smmu-context-fault\n 60:          0   mpm-gic 406 Level     arm-smmu-context-fault\n 61:          0   mpm-gic 407 Level     arm-smmu-context-fault\n 88:          0   mpm-gic 258 Level     arm-smmu-context-fault\n 89:          0   mpm-gic 425 Level     arm-smmu-context-fault\n 90:          0   mpm-gic 426 Level     arm-smmu-context-fault\n 91:          0   mpm-gic 427 Level     arm-smmu-context-fault\n 92:          0   mpm-gic 428 Level     arm-smmu-context-fault\n105:          0   mpm-gic 295 Level     arm-smmu-context-fault\n106:          0   mpm-gic 298 Level     arm-smmu-context-fault\n107:          0   mpm-gic 299 Level     arm-smmu-context-fault\n108:          0   mpm-gic 300 Level     arm-smmu-context-fault\n109:          0   mpm-gic 276 Level     arm-smmu-context-fault\n110:          0   mpm-gic 277 Level     arm-smmu-context-fault\n111:          0   mpm-gic 279 Level     arm-smmu-context-fault\n112:          0   mpm-gic 280 Level     arm-smmu-context-fault\n113:          0   mpm-gic 281 Level     arm-smmu-context-fault\n114:          0   mpm-gic 282 Level     arm-smmu-context-fault\n129:          0   mpm-gic 361 Level     arm-smmu-context-fault\n130:          0   mpm-gic 362 Level     arm-smmu-context-fault\n134:          0   mpm-gic 565 Level     arm-smmu-context-fault\n135:          0   mpm-gic 566 Level     arm-smmu-context-fault\n136:          0   mpm-gic 567 Level     arm-smmu-context-fault\n137:          0   mpm-gic 568 Level     arm-smmu-context-fault\n138:          0   mpm-gic 569 Level     arm-smmu-context-fault\n139:          0   mpm-gic 570 Level     arm-smmu-context-fault\n140:          0   mpm-gic 571 Level     arm-smmu-context-fault\n141:          0   mpm-gic 572 Level     arm-smmu-context-fault\n142:          0   mpm-gic 573 Level     arm-smmu-context-fault\n151:          0   mpm-gic 379 Level     hs_phy_irq\n152:          0   mpm-gic 275 Level     ss_phy_irq\n153:          2   mpm-gic 212 Level     pwr_event_irq\n155:      30197   mpm-gic 127 Level     i2c-msm-v2-irq\n156:          0   mpm-gic 128 Level     i2c-msm-v2-irq\n157:          5   mpm-gic 134 Level     i2c-msm-v2-irq\n158:          0   mpm-gic 135 Level     c1b7000.spi\n160:          0   mpm-gic 110 Edge      csiphy\n161:          0   mpm-gic 111 Edge      csiphy\n162:          0   mpm-gic 112 Edge      csiphy\n163:          0   mpm-gic 328 Edge      csid\n164:          0   mpm-gic 329 Edge      csid\n165:          0   mpm-gic 330 Edge      csid\n166:          0   mpm-gic 331 Edge      csid\n168:          0   mpm-gic 341 Edge      ispif\n169:          0   mpm-gic 346 Edge      vfe\n170:          0   mpm-gic 347 Edge      vfe\n171:          0   mpm-gic 327 Edge      cci\n174:          0   mpm-gic 319 Level     msm_vidc\n176:          0   mpm-gic 115 Level     MDSS\n177:          0  pmic_arb 8388612 Edge      pon_kpdpwr_status\n178:          0  pmic_arb 8454148 Edge      pon_resin_status\n181:          0  pmic_arb 37748755 Edge      qcom,temp-alarm\n195:          0  pmic_arb 101777459 Edge      pm8xxx_rtc_alarm\n196:        196  pmic_arb 51380246 Edge      pm-adc5\n197:          0  pmic_arb 24117262 Edge      sig-tx\n198:          0  pmic_arb 24182798 Edge      sig-rx\n199:          0  pmic_arb 24248334 Edge      msg-tx\n200:          0  pmic_arb 24313870 Edge      msg-rx\n201:          0  pmic_arb 24379406 Edge      msg-tx-failed\n202:          0  pmic_arb 24444942 Edge      msg-tx-discarded\n203:          0  pmic_arb 24510478 Edge      msg-rx-discarded\n204:          0  pmic_arb 54525976 Edge      thr-int-en\n205:          0  pmic_arb 69206048 Edge      bcl-high-ibat\n207:          0  pmic_arb 69337120 Edge      bcl-low-vbat\n210:          0  pmic_arb 469762111 Edge      qpnp_hap_sc\n211:          0  pmic_arb 469827647 Edge      qpnp_hap_play\n212:          0  pmic_arb 574619709 Edge      qcom,temp-alarm\n219:          0  pmic_arb 744489127 Edge      volume_up\n225:          1  pmic_arb 1031864372 Edge      wled_ovp_irq\n226:          0  pmic_arb 1026555953 Edge      qpnp_flash_led_fault_irq\n227:          0  pmic_arb 1026752561 Edge      qpnp_flash_led_all_ramp_down_done_irq\n228:          0  pmic_arb 1026818097 Edge      qpnp_flash_led_all_ramp_up_done_irq\n229:          0  pmic_arb 1052835884 Edge      qpnp_lcdb_sc_irq\n244:          0   mpm-gic  69 Level     limits_sensor-00\n245:          0   mpm-gic  70 Level     limits_sensor-01\n246:          0     smp2p   2 Edge      modem\n247:          0     smp2p   0 Edge      modem\n248:          0     smp2p   1 Edge      error_ready_interrupt\n249:          0     smp2p   3 Edge      modem\n250:          0     smp2p   7 Edge      modem\n251:          0     smp2p   2 Edge      adsp\n252:          0     smp2p   0 Edge      adsp\n253:          0     smp2p   1 Edge      error_ready_interrupt\n254:          0     smp2p   3 Edge      adsp\n255:          0     smp2p   2 Edge      cdsp\n256:          0     smp2p   0 Edge      cdsp\n257:          0     smp2p   1 Edge      error_ready_interrupt\n258:          0     smp2p   3 Edge      cdsp\n259:          0     smp2p   0 Edge      smp2p_sleepstate\n261:          0     GICv3 163 Level     dwc3\n263:       3827   msmgpio  67 Edge      NVT-ts\n264:          2   msmgpio  72 Edge      soc:fpc1020\n265:          0   msmgpio  76 Edge      hall-switch-irq\n266:          0  pmic_arb 16777223 Edge      chg-error\n267:          0  pmic_arb 16842759 Edge      chg-state-change\n271:          0  pmic_arb 17825800 Edge      otg-fail\n272:          0  pmic_arb 17891336 Edge      otg-overcurrent\n273:          0  pmic_arb 17956872 Edge      otg-oc-dis-sw-sts\n274:          0  pmic_arb 18022408 Edge      testmode-change-detect\n275:          0  pmic_arb 18874377 Edge      bat-temp\n276:          0  pmic_arb 18939913 Edge      bat-ocp\n277:          0  pmic_arb 19005449 Edge      bat-ov\n278:          0  pmic_arb 19070985 Edge      bat-low\n279:          0  pmic_arb 19136521 Edge      bat-therm-or-id-missing\n280:          0  pmic_arb 19202057 Edge      bat-terminal-missing\n281:          0  pmic_arb 19922954 Edge      usbin-collapse\n282:          0  pmic_arb 19988490 Edge      usbin-lt-3p6v\n283:          0  pmic_arb 20054026 Edge      usbin-uv\n284:          0  pmic_arb 20119562 Edge      usbin-ov\n285:          0  pmic_arb 20185098 Edge      usbin-plugin\n286:          0  pmic_arb 20250634 Edge      usbin-src-change\n287:          0  pmic_arb 20316170 Edge      usbin-icl-change\n288:          0  pmic_arb 20381706 Edge      type-c-change\n289:          0  pmic_arb 20971531 Edge      dcin-collapse\n290:          0  pmic_arb 21037067 Edge      dcin-lt-3p6v\n291:          0  pmic_arb 21102603 Edge      dcin-uv\n292:          0  pmic_arb 21168139 Edge      dcin-ov\n293:          0  pmic_arb 21233675 Edge      dcin-plugin\n294:          0  pmic_arb 21299211 Edge      div2-en-dg\n295:          0  pmic_arb 21364747 Edge      dcin-icl-change\n297:          0  pmic_arb 23134221 Edge      wdog-bark\n298:          0  pmic_arb 23199757 Edge      aicl-fail\n299:          0  pmic_arb 23265293 Edge      aicl-done\n300:          0  pmic_arb 23330829 Edge      high-duty-cycle\n301:          0  pmic_arb 23396365 Edge      input-current-limiting\n302:          0  pmic_arb 23461901 Edge      temperature-change\n303:          0  pmic_arb 23527437 Edge      switcher-power-ok\n304:          0   msmgpio  73 Level     tas2557\n305:          1  pmic_arb 67108894 Edge      soc-update\n306:          0  pmic_arb 67174430 Edge      soc-ready\n307:          0  pmic_arb 67239966 Edge      bsoc-delta\n308:          7  pmic_arb 67305502 Edge      msoc-delta\n309:          0  pmic_arb 67371038 Edge      msoc-low\n310:          0  pmic_arb 67436574 Edge      msoc-empty\n311:          0  pmic_arb 67502110 Edge      msoc-high\n312:          0  pmic_arb 67567646 Edge      msoc-full\n313:          0  pmic_arb 68157471 Edge      vbatt-pred-delta\n314:          0  pmic_arb 68223007 Edge      vbatt-low\n315:          0  pmic_arb 68288543 Edge      esr-delta\n316:          0  pmic_arb 68354079 Edge      batt-missing\n317:          2  pmic_arb 68550687 Edge      batt-temp-delta\n318:        285  pmic_arb 71303202 Edge      ima-rdy\n319:          0  pmic_arb 71368738 Edge      mem-xcp\n320:          0  pmic_arb 71434274 Edge      dma-grant\n321:          1   msmgpio  54 Edge      c084000.sdhci cd\n322:          0   msmgpio  64 Edge      camera_focus\n323:          0   msmgpio 113 Edge      camera_snapshot\nIPI0:       152       Rescheduling interrupts\nIPI1:        15       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:     48218       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sdm660/fourth/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  1:          0          0          0          0          0          0          0          0   mpm-gic 203 Edge      mpm\n  4:        326          2          2          1          2          2          1          2   mpm-gic  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   mpm-gic  39 Level     arch_mem_timer\n  9:          0          0          0          0          0          0          0          0   mpm-gic 271 Level     sps\n 11:          0          0          0          0          0          0          0          0   mpm-gic  35 Edge      apps_wdog_bark\n 13:          0          0          0          0          0          0          0          0   mpm-gic 216 Level     tsens-upper-lower\n 14:          0          0          0          0          0          0          0          0   mpm-gic 462 Level     tsens-critical\n 16:          0          0          0          0          0          0          0          0   mpm-gic 323 Level     ngd_slim_irq\n 23:          0          0          0          0          0          0          0          0   mpm-gic  67 Edge      OSM IRQ\n 24:          0          0          0          0          0          0          0          0   mpm-gic  68 Edge      OSM IRQ\n 25:         69          0          0          0          0          0          0          0   mpm-gic 142 Level     mmc0\n 26:          3          0          0          0          0          0          0          0   mpm-gic 144 Level     c0c4000.sdhci\n 27:         13          0          0          0          0          0          0          0     GICv3 157 Level     mmc1\n 28:          2          0          0          0          0          0          0          0     GICv3 253 Level     c084000.sdhci\n 29:          0          0          0          0          0          0          0          0   mpm-gic 365 Edge      ipa\n 30:         18          0          0          0          0          0          0          0   mpm-gic 464 Level     sps\n 31:        276          0          0          0          0          0          0          0   mpm-gic 200 Edge      glink-native-rpm-glink\n 32:          0          0          0          0          0          0          0          0   mpm-gic 483 Edge      smp2p\n 33:          0          0          0          0          0          0          0          0   mpm-gic 190 Edge      smp2p\n 34:          0          0          0          0          0          0          0          0   mpm-gic 546 Edge      smp2p\n 47:          0          0          0          0          0          0          0          0   mpm-gic 194 Edge      adsp\n 48:          0          0          0          0          0          0          0          0   mpm-gic 550 Edge      cdsp\n 49:          0          0          0          0          0          0          0          0   mpm-gic 480 Edge      modem\n 51:          0          0          0          0          0          0          0          0   mpm-gic  22 Level     arm-pmu\n 52:          0          0          0          0          0          0          0          0   mpm-gic 238 Level     sps\n 55:          0          0          0          0          0          0          0          0   mpm-gic 317 Edge      cpr3\n 56:          0          0          0          0          0          0          0          0   mpm-gic 332 Level     kgsl_3d0_irq\n 57:          0          0          0          0          0          0          0          0   mpm-gic 261 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n 58:          0          0          0          0          0          0          0          0   mpm-gic 263 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n 59:          0          0          0          0          0          0          0          0   mpm-gic 405 Level     arm-smmu-context-fault\n 60:          0          0          0          0          0          0          0          0   mpm-gic 406 Level     arm-smmu-context-fault\n 61:          0          0          0          0          0          0          0          0   mpm-gic 407 Level     arm-smmu-context-fault\n 88:          0          0          0          0          0          0          0          0   mpm-gic 258 Level     arm-smmu-context-fault\n 89:          0          0          0          0          0          0          0          0   mpm-gic 425 Level     arm-smmu-context-fault\n 90:          0          0          0          0          0          0          0          0   mpm-gic 426 Level     arm-smmu-context-fault\n 91:          0          0          0          0          0          0          0          0   mpm-gic 427 Level     arm-smmu-context-fault\n 92:          0          0          0          0          0          0          0          0   mpm-gic 428 Level     arm-smmu-context-fault\n105:          0          0          0          0          0          0          0          0   mpm-gic 295 Level     arm-smmu-context-fault\n106:          0          0          0          0          0          0          0          0   mpm-gic 298 Level     arm-smmu-context-fault\n107:          0          0          0          0          0          0          0          0   mpm-gic 299 Level     arm-smmu-context-fault\n108:          0          0          0          0          0          0          0          0   mpm-gic 300 Level     arm-smmu-context-fault\n109:          0          0          0          0          0          0          0          0   mpm-gic 276 Level     arm-smmu-context-fault\n110:          0          0          0          0          0          0          0          0   mpm-gic 277 Level     arm-smmu-context-fault\n111:          0          0          0          0          0          0          0          0   mpm-gic 279 Level     arm-smmu-context-fault\n112:          0          0          0          0          0          0          0          0   mpm-gic 280 Level     arm-smmu-context-fault\n113:          0          0          0          0          0          0          0          0   mpm-gic 281 Level     arm-smmu-context-fault\n114:          0          0          0          0          0          0          0          0   mpm-gic 282 Level     arm-smmu-context-fault\n129:          0          0          0          0          0          0          0          0   mpm-gic 361 Level     arm-smmu-context-fault\n130:          0          0          0          0          0          0          0          0   mpm-gic 362 Level     arm-smmu-context-fault\n134:          0          0          0          0          0          0          0          0   mpm-gic 565 Level     arm-smmu-context-fault\n135:          0          0          0          0          0          0          0          0   mpm-gic 566 Level     arm-smmu-context-fault\n136:          0          0          0          0          0          0          0          0   mpm-gic 567 Level     arm-smmu-context-fault\n137:          0          0          0          0          0          0          0          0   mpm-gic 568 Level     arm-smmu-context-fault\n138:          0          0          0          0          0          0          0          0   mpm-gic 569 Level     arm-smmu-context-fault\n139:          0          0          0          0          0          0          0          0   mpm-gic 570 Level     arm-smmu-context-fault\n140:          0          0          0          0          0          0          0          0   mpm-gic 571 Level     arm-smmu-context-fault\n141:          0          0          0          0          0          0          0          0   mpm-gic 572 Level     arm-smmu-context-fault\n142:          0          0          0          0          0          0          0          0   mpm-gic 573 Level     arm-smmu-context-fault\n151:          0          0          0          0          0          0          0          0   mpm-gic 379 Level     hs_phy_irq\n152:          0          0          0          0          0          0          0          0   mpm-gic 275 Level     ss_phy_irq\n153:          2          0          0          0          0          0          0          0   mpm-gic 212 Level     pwr_event_irq\n155:         40          0          0          0          0          0          0          0   mpm-gic 127 Level     i2c-msm-v2-irq\n156:          0          0          0          0          0          0          0          0   mpm-gic 128 Level     i2c-msm-v2-irq\n157:          5          0          0          0          0          0          0          0   mpm-gic 134 Level     i2c-msm-v2-irq\n158:          0          0          0          0          0          0          0          0   mpm-gic 135 Level     c1b7000.spi\n160:          0          0          0          0          0          0          0          0   mpm-gic 110 Edge      csiphy\n161:          0          0          0          0          0          0          0          0   mpm-gic 111 Edge      csiphy\n162:          0          0          0          0          0          0          0          0   mpm-gic 112 Edge      csiphy\n163:          0          0          0          0          0          0          0          0   mpm-gic 328 Edge      csid\n164:          0          0          0          0          0          0          0          0   mpm-gic 329 Edge      csid\n165:          0          0          0          0          0          0          0          0   mpm-gic 330 Edge      csid\n166:          0          0          0          0          0          0          0          0   mpm-gic 331 Edge      csid\n168:          0          0          0          0          0          0          0          0   mpm-gic 341 Edge      ispif\n169:          0          0          0          0          0          0          0          0   mpm-gic 346 Edge      vfe\n170:          0          0          0          0          0          0          0          0   mpm-gic 347 Edge      vfe\n171:          0          0          0          0          0          0          0          0   mpm-gic 327 Edge      cci\n174:          0          0          0          0          0          0          0          0   mpm-gic 319 Level     msm_vidc\n176:          0          0          0          0          0          0          0          0   mpm-gic 115 Level     MDSS\n177:          0          0          0          0          0          0          0          0  pmic_arb 8388612 Edge      pon_kpdpwr_status\n178:          0          0          0          0          0          0          0          0  pmic_arb 8454148 Edge      pon_resin_status\n181:          0          0          0          0          0          0          0          0  pmic_arb 37748755 Edge      qcom,temp-alarm\n195:          0          0          0          0          0          0          0          0  pmic_arb 101777459 Edge      pm8xxx_rtc_alarm\n196:          5          0          0          0          0          0          0          0  pmic_arb 51380246 Edge      pm-adc5\n197:          0          0          0          0          0          0          0          0  pmic_arb 24117262 Edge      sig-tx\n198:          0          0          0          0          0          0          0          0  pmic_arb 24182798 Edge      sig-rx\n199:          0          0          0          0          0          0          0          0  pmic_arb 24248334 Edge      msg-tx\n200:          0          0          0          0          0          0          0          0  pmic_arb 24313870 Edge      msg-rx\n201:          0          0          0          0          0          0          0          0  pmic_arb 24379406 Edge      msg-tx-failed\n202:          0          0          0          0          0          0          0          0  pmic_arb 24444942 Edge      msg-tx-discarded\n203:          0          0          0          0          0          0          0          0  pmic_arb 24510478 Edge      msg-rx-discarded\n204:          0          0          0          0          0          0          0          0  pmic_arb 54525976 Edge      thr-int-en\n205:          0          0          0          0          0          0          0          0  pmic_arb 69206048 Edge      bcl-high-ibat\n207:          0          0          0          0          0          0          0          0  pmic_arb 69337120 Edge      bcl-low-vbat\n210:          0          0          0          0          0          0          0          0  pmic_arb 469762111 Edge      qpnp_hap_sc\n211:          0          0          0          0          0          0          0          0  pmic_arb 469827647 Edge      qpnp_hap_play\n212:          0          0          0          0          0          0          0          0  pmic_arb 574619709 Edge      qcom,temp-alarm\n219:          0          0          0          0          0          0          0          0  pmic_arb 744489127 Edge      volume_up\n225:          1          0          0          0          0          0          0          0  pmic_arb 1031864372 Edge      wled_ovp_irq\n226:          0          0          0          0          0          0          0          0  pmic_arb 1026555953 Edge      qpnp_flash_led_fault_irq\n227:          0          0          0          0          0          0          0          0  pmic_arb 1026752561 Edge      qpnp_flash_led_all_ramp_down_done_irq\n228:          0          0          0          0          0          0          0          0  pmic_arb 1026818097 Edge      qpnp_flash_led_all_ramp_up_done_irq\n229:          0          0          0          0          0          0          0          0  pmic_arb 1052835884 Edge      qpnp_lcdb_sc_irq\n244:          0          0          0          0          0          0          0          0   mpm-gic  69 Level     limits_sensor-00\n245:          0          0          0          0          0          0          0          0   mpm-gic  70 Level     limits_sensor-01\n246:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n247:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n248:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n249:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n250:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n251:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n252:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n253:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n254:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n255:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n256:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n257:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n258:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n259:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n261:          0          0          0          0          0          0          0          0     GICv3 163 Level     dwc3\n263:          2          0          0          0          0          0          0          0   msmgpio  67 Edge      NVT-ts\n264:          2          0          0          0          0          0          0          0   msmgpio  72 Edge      soc:fpc1020\n265:          0          0          0          0          0          0          0          0   msmgpio  76 Edge      hall-switch-irq\n266:          0          0          0          0          0          0          0          0  pmic_arb 16777223 Edge      chg-error\n267:          0          0          0          0          0          0          0          0  pmic_arb 16842759 Edge      chg-state-change\n271:          0          0          0          0          0          0          0          0  pmic_arb 17825800 Edge      otg-fail\n272:          0          0          0          0          0          0          0          0  pmic_arb 17891336 Edge      otg-overcurrent\n273:          0          0          0          0          0          0          0          0  pmic_arb 17956872 Edge      otg-oc-dis-sw-sts\n274:          0          0          0          0          0          0          0          0  pmic_arb 18022408 Edge      testmode-change-detect\n275:          0          0          0          0          0          0          0          0  pmic_arb 18874377 Edge      bat-temp\n276:          0          0          0          0          0          0          0          0  pmic_arb 18939913 Edge      bat-ocp\n277:          0          0          0          0          0          0          0          0  pmic_arb 19005449 Edge      bat-ov\n278:          0          0          0          0          0          0          0          0  pmic_arb 19070985 Edge      bat-low\n279:          0          0          0          0          0          0          0          0  pmic_arb 19136521 Edge      bat-therm-or-id-missing\n280:          0          0          0          0          0          0          0          0  pmic_arb 19202057 Edge      bat-terminal-missing\n281:          0          0          0          0          0          0          0          0  pmic_arb 19922954 Edge      usbin-collapse\n282:          0          0          0          0          0          0          0          0  pmic_arb 19988490 Edge      usbin-lt-3p6v\n283:          0          0          0          0          0          0          0          0  pmic_arb 20054026 Edge      usbin-uv\n284:          0          0          0          0          0          0          0          0  pmic_arb 20119562 Edge      usbin-ov\n285:          0          0          0          0          0          0          0          0  pmic_arb 20185098 Edge      usbin-plugin\n286:          0          0          0          0          0          0          0          0  pmic_arb 20250634 Edge      usbin-src-change\n287:          0          0          0          0          0          0          0          0  pmic_arb 20316170 Edge      usbin-icl-change\n288:          0          0          0          0          0          0          0          0  pmic_arb 20381706 Edge      type-c-change\n289:          0          0          0          0          0          0          0          0  pmic_arb 20971531 Edge      dcin-collapse\n290:          0          0          0          0          0          0          0          0  pmic_arb 21037067 Edge      dcin-lt-3p6v\n291:          0          0          0          0          0          0          0          0  pmic_arb 21102603 Edge      dcin-uv\n292:          0          0          0          0          0          0          0          0  pmic_arb 21168139 Edge      dcin-ov\n293:          0          0          0          0          0          0          0          0  pmic_arb 21233675 Edge      dcin-plugin\n294:          0          0          0          0          0          0          0          0  pmic_arb 21299211 Edge      div2-en-dg\n295:          0          0          0          0          0          0          0          0  pmic_arb 21364747 Edge      dcin-icl-change\n297:          0          0          0          0          0          0          0          0  pmic_arb 23134221 Edge      wdog-bark\n298:          0          0          0          0          0          0          0          0  pmic_arb 23199757 Edge      aicl-fail\n299:          0          0          0          0          0          0          0          0  pmic_arb 23265293 Edge      aicl-done\n300:          0          0          0          0          0          0          0          0  pmic_arb 23330829 Edge      high-duty-cycle\n301:          0          0          0          0          0          0          0          0  pmic_arb 23396365 Edge      input-current-limiting\n302:          0          0          0          0          0          0          0          0  pmic_arb 23461901 Edge      temperature-change\n303:          0          0          0          0          0          0          0          0  pmic_arb 23527437 Edge      switcher-power-ok\n304:          0          0          0          0          0          0          0          0   msmgpio  73 Level     tas2557\n305:          0          0          0          0          0          0          0          0  pmic_arb 67108894 Edge      soc-update\n306:          0          0          0          0          0          0          0          0  pmic_arb 67174430 Edge      soc-ready\n307:          0          0          0          0          0          0          0          0  pmic_arb 67239966 Edge      bsoc-delta\n308:          0          0          0          0          0          0          0          0  pmic_arb 67305502 Edge      msoc-delta\n309:          0          0          0          0          0          0          0          0  pmic_arb 67371038 Edge      msoc-low\n310:          0          0          0          0          0          0          0          0  pmic_arb 67436574 Edge      msoc-empty\n311:          0          0          0          0          0          0          0          0  pmic_arb 67502110 Edge      msoc-high\n312:          0          0          0          0          0          0          0          0  pmic_arb 67567646 Edge      msoc-full\n313:          0          0          0          0          0          0          0          0  pmic_arb 68157471 Edge      vbatt-pred-delta\n314:          0          0          0          0          0          0          0          0  pmic_arb 68223007 Edge      vbatt-low\n315:          0          0          0          0          0          0          0          0  pmic_arb 68288543 Edge      esr-delta\n316:          0          0          0          0          0          0          0          0  pmic_arb 68354079 Edge      batt-missing\n317:          0          0          0          0          0          0          0          0  pmic_arb 68550687 Edge      batt-temp-delta\n318:         36          0          0          0          0          0          0          0  pmic_arb 71303202 Edge      ima-rdy\n319:          0          0          0          0          0          0          0          0  pmic_arb 71368738 Edge      mem-xcp\n320:          0          0          0          0          0          0          0          0  pmic_arb 71434274 Edge      dma-grant\n321:          1          0          0          0          0          0          0          0   msmgpio  54 Edge      c084000.sdhci cd\n322:          0          0          0          0          0          0          0          0   msmgpio  64 Edge      camera_focus\n323:          0          0          0          0          0          0          0          0   msmgpio 113 Edge      camera_snapshot\nIPI0:        83         15         15         15         17         17         17         18       Rescheduling interrupts\nIPI1:         6          3          3          3          4          3          3          4       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:        70          8          7          7          8          8          7          9       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sdm660/fourth/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    6 root      0:00 [kworker/0:0H-nv]\n    7 root      0:00 [kworker/u16:0+L]\n    8 root      0:00 [mm_percpu_wq]\n    9 root      0:00 [ksoftirqd/0]\n   10 root      0:00 [rcu_preempt]\n   11 root      0:00 [rcu_sched]\n   12 root      0:00 [rcu_bh]\n   13 root      0:00 [rcuop/0]\n   14 root      0:00 [rcuos/0]\n   15 root      0:00 [rcuob/0]\n   16 root      0:00 [migration/0]\n   17 root      0:00 [cpuhp/0]\n   18 root      0:00 [cpuhp/1]\n   19 root      0:00 [migration/1]\n   20 root      0:00 [ksoftirqd/1]\n   21 root      0:00 [kworker/1:0-mm_]\n   22 root      0:00 [kworker/1:0H-ev]\n   23 root      0:00 [rcuop/1]\n   24 root      0:00 [rcuos/1]\n   25 root      0:00 [rcuob/1]\n   26 root      0:00 [cpuhp/2]\n   27 root      0:00 [migration/2]\n   28 root      0:00 [ksoftirqd/2]\n   29 root      0:00 [kworker/2:0-mm_]\n   30 root      0:00 [kworker/2:0H-ev]\n   31 root      0:00 [rcuop/2]\n   32 root      0:00 [rcuos/2]\n   34 root      0:00 [rcuob/2]\n   35 root      0:00 [cpuhp/3]\n   36 root      0:00 [migration/3]\n   37 root      0:00 [ksoftirqd/3]\n   38 root      0:00 [kworker/3:0-mm_]\n   39 root      0:00 [kworker/3:0H-ev]\n   40 root      0:00 [rcuop/3]\n   41 root      0:00 [rcuos/3]\n   42 root      0:00 [rcuob/3]\n   43 root      0:00 [cpuhp/4]\n   44 root      0:00 [migration/4]\n   45 root      0:00 [ksoftirqd/4]\n   46 root      0:00 [kworker/4:0-mm_]\n   47 root      0:00 [kworker/4:0H-ev]\n   48 root      0:00 [rcuop/4]\n   49 root      0:00 [rcuos/4]\n   50 root      0:00 [rcuob/4]\n   51 root      0:00 [cpuhp/5]\n   52 root      0:00 [migration/5]\n   53 root      0:00 [ksoftirqd/5]\n   54 root      0:00 [kworker/5:0-mm_]\n   55 root      0:00 [kworker/5:0H-ev]\n   56 root      0:00 [rcuop/5]\n   57 root      0:00 [rcuos/5]\n   58 root      0:00 [rcuob/5]\n   59 root      0:00 [cpuhp/6]\n   60 root      0:00 [migration/6]\n   61 root      0:00 [ksoftirqd/6]\n   62 root      0:00 [kworker/6:0-mm_]\n   63 root      0:00 [kworker/6:0H-ev]\n   64 root      0:00 [rcuop/6]\n   65 root      0:00 [rcuos/6]\n   66 root      0:00 [rcuob/6]\n   67 root      0:00 [cpuhp/7]\n   68 root      0:00 [migration/7]\n   69 root      0:00 [ksoftirqd/7]\n   70 root      0:00 [kworker/7:0-mm_]\n   71 root      0:00 [kworker/7:0H-ev]\n   72 root      0:00 [rcuop/7]\n   73 root      0:00 [rcuos/7]\n   74 root      0:00 [rcuob/7]\n   75 root      0:00 [netns]\n   76 root      0:00 [rcu_tasks_kthre]\n   77 root      0:00 [kworker/u16:1+M]\n   78 root      0:00 [kworker/u17:0-i]\n   79 root      0:00 [msm_watchdog]\n   80 root      0:00 [glink_rpm-glink]\n   81 root      0:00 [oom_reaper]\n   82 root      0:00 [writeback]\n   83 root      0:00 [kcompactd0]\n   84 root      0:00 [crypto]\n   85 root      0:00 [kblockd]\n   86 root      0:00 [blk_crypto_wq]\n   87 root      0:00 [irq/13-tsens-up]\n   88 root      0:00 [irq/14-tsens-cr]\n   89 root      0:00 [md]\n   90 root      0:00 [ion-pool-uncach]\n   91 root      0:00 [ion-pool-cached]\n   92 root      0:00 [system]\n   93 root      0:00 [devfreq_wq]\n   94 root      0:00 [governor_msm_ad]\n   95 root      0:00 [irq/229-qpnp_lc]\n   97 root      0:00 [irq/57-arm-smmu]\n   98 root      0:00 [irq/58-arm-smmu]\n   99 root      0:00 [irq/55-cpr3]\n  100 root      0:00 [irq/57-arm-smmu]\n  101 root      0:00 [irq/58-arm-smmu]\n  102 root      0:00 [irq/57-arm-smmu]\n  103 root      0:00 [irq/58-arm-smmu]\n  104 root      0:00 [cfg80211]\n  105 root      0:00 [irq/59-arm-smmu]\n  106 root      0:00 [ipa_power_mgmt]\n  107 root      0:00 [sps_ipa_power_m]\n  108 root      0:00 [ipawq36]\n  109 root      0:00 [iparepwq36]\n  110 root      0:00 [kworker/u17:1-i]\n  111 root      0:00 [ipawq33]\n  112 root      0:00 [iparepwq33]\n  113 root      0:00 [ipawq34]\n  114 root      0:00 [iparepwq34]\n  115 root      0:00 [ipa_rm_wq]\n  116 root      0:00 [ipa_interrupt_w]\n  117 root      0:00 [ipa_holb_wq]\n  118 root      0:00 [irq/60-arm-smmu]\n  119 root      0:00 [irq/57-arm-smmu]\n  120 root      0:00 [irq/58-arm-smmu]\n  161 root      0:00 [kswapd0:0]\n  162 root      0:00 [ecryptfs-kthrea]\n  199 root      0:00 [irq/225-wled_ov]\n  200 root      0:00 [ad_calc_wq]\n  201 root      0:00 [irq/105-arm-smm]\n  202 root      0:00 [irq/106-arm-smm]\n  203 root      0:00 [mdss_dsi_event]\n  204 root      0:00 [mdss_dsi_dba]\n  205 root      0:00 [irq/32-smp2p]\n  206 root      0:00 [irq/33-smp2p]\n  207 root      0:00 [irq/34-smp2p]\n  208 root      0:00 [mem_share_svc]\n  209 root      0:00 [irq/61-arm-smmu]\n  210 root      0:00 [irq/211-qpnp_ha]\n  211 root      0:00 [irq/210-qpnp_ha]\n  212 root      0:00 [k_hsuart]\n  213 root      0:00 [msm_serial_hs_0]\n  214 root      0:00 [msm_serial_hs_0]\n  215 root      0:00 [hwrng]\n  217 root      0:00 [diag_real_time_]\n  218 root      0:00 [diag_wq]\n  219 root      0:00 [DIAG_USB_diag]\n  220 root      0:00 [diag_cntl_wq]\n  221 root      0:00 [diag_dci_wq]\n  222 root      0:00 [MODEM_CNTL]\n  223 root      0:00 [MODEM_DATA]\n  224 root      0:00 [MODEM_CMD]\n  225 root      0:00 [MODEM_DCI]\n  226 root      0:00 [MODEM_DCI_CMD]\n  227 root      0:00 [LPASS_CNTL]\n  228 root      0:00 [LPASS_DATA]\n  229 root      0:00 [LPASS_CMD]\n  230 root      0:00 [LPASS_DCI]\n  231 root      0:00 [LPASS_DCI_CMD]\n  232 root      0:00 [WCNSS_CNTL]\n  233 root      0:00 [WCNSS_DATA]\n  234 root      0:00 [WCNSS_CMD]\n  235 root      0:00 [WCNSS_DCI]\n  236 root      0:00 [WCNSS_DCI_CMD]\n  237 root      0:00 [SENSORS_CNTL]\n  238 root      0:00 [SENSORS_DATA]\n  239 root      0:00 [SENSORS_CMD]\n  240 root      0:00 [SENSORS_DCI]\n  241 root      0:00 [SENSORS_DCI_CMD]\n  242 root      0:00 [DIAG_CTRL+DIAG_]\n  243 root      0:00 [DIAG_DATA]\n  244 root      0:00 [DIAG_CMD]\n  245 root      0:00 [DIAG_DCI_DATA]\n  246 root      0:00 [DIAG_DCI_CMD]\n  247 root      0:00 [CDSP_CNTL+CDSP_]\n  248 root      0:00 [CDSP_DATA]\n  249 root      0:00 [CDSP_CMD]\n  250 root      0:00 [CDSP_DCI]\n  251 root      0:00 [CDSP_DCI_CMD]\n  252 root      0:00 [NPU_CNTL+NPU_CN]\n  253 root      0:00 [NPU_DATA]\n  254 root      0:00 [NPU_CMD]\n  255 root      0:00 [NPU_DCI]\n  256 root      0:00 [NPU_DCI_CMD]\n  257 root      0:00 [DIAG_RPMSG_DIAG]\n  258 root      0:00 [DIAG_RPMSG_DIAG]\n  259 root      0:00 [DIAG_RPMSG_DIAG]\n  260 root      0:00 [DIAG_RPMSG_DIAG]\n  261 root      0:00 [DIAG_RPMSG_DIAG]\n  262 root      0:00 [DIAG_RPMSG_DIAG]\n  263 root      0:00 [DIAG_RPMSG_DIAG]\n  264 root      0:00 [DIAG_RPMSG_DIAG]\n  265 root      0:00 [DIAG_RPMSG_DIAG]\n  266 root      0:00 [DIAG_RPMSG_DIAG]\n  267 root      0:00 [DIAG_RPMSG_APPS]\n  268 root      0:00 [DIAG_RPMSG_APPS]\n  269 root      0:00 [DIAG_RPMSG_DIAG]\n  270 root      0:00 [DIAG_RPMSG_DIAG]\n  271 root      0:00 [DIAG_RPMSG_DIAG]\n  272 root      0:00 [DIAG_RPMSG_DIAG]\n  273 root      0:00 [DIAG_RPMSG_DIAG]\n  274 root      0:00 [DIAG_RPMSG_DIAG]\n  275 root      0:00 [DIAG_RPMSG_DIAG]\n  276 root      0:00 [DIAG_RPMSG_DIAG]\n  277 root      0:00 [kgsl-workqueue]\n  278 root      0:00 [kworker/u16:2+W]\n  279 root      0:00 [kgsl-mementry]\n  280 root      0:00 [kworker/u16:3+S]\n  282 root      0:00 [kgsl_worker_thr]\n  284 root      0:00 [irq/129-arm-smm]\n  285 root      0:00 [irq/130-arm-smm]\n  286 root      0:00 [kgsl-events]\n  287 root      0:00 [kgsl_devfreq_wq]\n  288 root      0:00 [qseecom-unreg-l]\n  289 root      0:00 [qseecom-unload-]\n  290 root      0:00 [qcrypto_seq_res]\n  291 root      0:00 [spi7]\n  292 root      0:00 [bond0]\n  296 root      0:00 [k_ipa_usb]\n  299 root      0:00 [irq/263-NVT-ts]\n  300 root      0:00 [irq/264-soc:fpc]\n  301 root      0:00 [irq/265-hall-sw]\n  302 root      0:00 [kworker/0:1H]\n  303 root      0:00 [msm_vidc_worker]\n  304 root      0:00 [pm_workerq_venu]\n  305 root      0:00 [irq/107-arm-smm]\n  306 root      0:00 [irq/108-arm-smm]\n  307 root      0:00 [irq/109-arm-smm]\n  308 root      0:00 [irq/110-arm-smm]\n  309 root      0:00 [irq/111-arm-smm]\n  310 root      0:00 [irq/112-arm-smm]\n  311 root      0:00 [irq/113-arm-smm]\n  312 root      0:00 [irq/114-arm-smm]\n  313 root      0:00 [msm_cci_wq]\n  314 root      0:00 [msm_cci_wq]\n  315 root      0:00 [msm_cpp_workque]\n  317 root      0:00 [irq/266-chg-err]\n  318 root      0:00 [irq/267-chg-sta]\n  320 root      0:00 [irq/271-otg-fai]\n  321 root      0:00 [kworker/u16:8-e]\n  323 root      0:00 [irq/272-otg-ove]\n  324 root      0:00 [irq/273-otg-oc-]\n  325 root      0:00 [irq/274-testmod]\n  326 root      0:00 [irq/275-bat-tem]\n  327 root      0:00 [irq/276-bat-ocp]\n  328 root      0:00 [irq/277-bat-ov]\n  329 root      0:00 [irq/278-bat-low]\n  330 root      0:00 [irq/279-bat-the]\n  331 root      0:00 [irq/280-bat-ter]\n  332 root      0:00 [irq/281-usbin-c]\n  333 root      0:00 [irq/282-usbin-l]\n  334 root      0:00 [irq/283-usbin-u]\n  335 root      0:00 [irq/284-usbin-o]\n  336 root      0:00 [irq/285-usbin-p]\n  337 root      0:00 [irq/286-usbin-s]\n  338 root      0:00 [irq/287-usbin-i]\n  339 root      0:00 [irq/288-type-c-]\n  340 root      0:00 [irq/289-dcin-co]\n  341 root      0:00 [irq/290-dcin-lt]\n  342 root      0:00 [irq/291-dcin-uv]\n  343 root      0:00 [irq/292-dcin-ov]\n  344 root      0:00 [irq/293-dcin-pl]\n  345 root      0:00 [irq/294-div2-en]\n  346 root      0:00 [irq/295-dcin-ic]\n  347 root      0:00 [irq/297-wdog-ba]\n  348 root      0:00 [irq/298-aicl-fa]\n  349 root      0:00 [irq/299-aicl-do]\n  350 root      0:00 [irq/300-high-du]\n  351 root      0:00 [irq/301-input-c]\n  352 root      0:00 [irq/302-tempera]\n  353 root      0:00 [irq/303-switche]\n  354 root      0:00 [irq/181-qcom,te]\n  355 root      0:00 [irq/212-qcom,te]\n  356 root      0:00 [irq/244-limits_]\n  357 root      0:00 [irq/245-limits_]\n  358 root      0:00 [irq/205-bcl-hig]\n  359 root      0:00 [irq/207-bcl-low]\n  360 root      0:00 [kworker/1:1H]\n  361 root      0:00 [kworker/2:1H]\n  362 root      0:00 [kworker/3:1H]\n  363 root      0:00 [kworker/4:1H]\n  364 root      0:00 [kworker/5:1H]\n  365 root      0:00 [kworker/6:1H]\n  366 root      0:00 [kworker/7:1H]\n  367 root      0:00 [dm_bufio_cache]\n  368 root      0:00 [kworker/u16:10-]\n  369 root      0:00 [cds_recovery_wo]\n  370 root      0:00 [memlat_wq]\n  371 root      0:00 [irq/26-c0c4000.]\n  372 root      0:00 [irq/25-mmc0]\n  373 root      0:00 [irq/88-arm-smmu]\n  374 root      0:00 [uaudio_svc]\n  375 root      0:00 [apr_driver]\n  378 root      0:00 [kworker/1:1-eve]\n  379 root      0:00 [kworker/2:1-eve]\n  380 root      0:00 [kworker/3:1-eve]\n  381 root      0:00 [kworker/4:1-eve]\n  382 root      0:00 [kworker/5:1-eve]\n  383 root      0:00 [kworker/6:1-eve]\n  384 root      0:00 [kworker/7:1-eve]\n  386 root      0:00 [mmc_complete]\n  387 root      0:00 [ipv6_addrconf]\n  389 root      0:00 [kworker/0:6-eve]\n  390 root      0:00 [sdhci_msm_pm_qo]\n  394 root      0:00 [irq/197-sig-tx]\n  395 root      0:00 [irq/198-sig-rx]\n  396 root      0:00 [irq/28-c084000.]\n  397 root      0:00 [irq/305-soc-upd]\n  398 root      0:00 [irq/306-soc-rea]\n  399 root      0:00 [irq/307-bsoc-de]\n  400 root      0:00 [irq/308-msoc-de]\n  401 root      0:00 [irq/309-msoc-lo]\n  402 root      0:00 [irq/310-msoc-em]\n  403 root      0:00 [irq/311-msoc-hi]\n  404 root      0:00 [irq/312-msoc-fu]\n  405 root      0:00 [irq/313-vbatt-p]\n  406 root      0:00 [irq/314-vbatt-l]\n  407 root      0:00 [irq/315-esr-del]\n  408 root      0:00 [irq/316-batt-mi]\n  409 root      0:00 [irq/317-batt-te]\n  410 root      0:00 [irq/318-ima-rdy]\n  411 root      0:00 [irq/319-mem-xcp]\n  412 root      0:00 [irq/320-dma-gra]\n  413 root      0:00 [irq/27-mmc1]\n  416 root      0:00 [irq/204-thr-int]\n  417 root      0:00 [mdss_dp_event]\n  418 root      0:00 [mdss_dp_hpd]\n  419 root      0:00 [irq/151-hs_phy_]\n  420 root      0:00 [irq/153-pwr_eve]\n  421 root      0:00 [irq/152-ss_phy_]\n  422 root      0:00 [usb_bam_wq]\n  423 root      0:00 [hdcp_1x_1]\n  424 root      0:00 [hdcp_tz_lib]\n  425 root      0:00 [dp_hdcp2p2]\n  426 root      0:00 [core_ctl/0]\n  427 root      0:00 [core_ctl/4]\n  430 root      0:00 [rq_stats]\n  431 root      0:00 [cdsprm-wq]\n  432 root      0:00 [cdsprm-wq-delay]\n  433 root      0:00 [irq/89-arm-smmu]\n  434 root      0:00 [irq/90-arm-smmu]\n  435 root      0:00 [irq/91-arm-smmu]\n  436 root      0:00 [irq/92-arm-smmu]\n  437 root      0:00 [irq/134-arm-smm]\n  438 root      0:00 [irq/135-arm-smm]\n  439 root      0:00 [irq/136-arm-smm]\n  440 root      0:00 [irq/137-arm-smm]\n  441 root      0:00 [irq/138-arm-smm]\n  442 root      0:00 [irq/139-arm-smm]\n  443 root      0:00 [irq/140-arm-smm]\n  444 root      0:00 [irq/321-c084000]\n  445 root      0:00 [irq/141-arm-smm]\n  446 root      0:00 [irq/142-arm-smm]\n  447 root      0:00 [sb-3]\n  448 root      0:00 [ngd_rx_thread3]\n  449 root      0:00 [ngd_notify_sl3]\n  451 root      0:00 [irq/228-qpnp_fl]\n  452 root      0:00 [irq/227-qpnp_fl]\n  453 root      0:00 [irq/226-qpnp_fl]\n  454 root      0:00 [clnt_req]\n  455 root      0:00 [clnt_req]\n  487 root      0:00 [kworker/0:0-eve]\n  491 root      0:00 [kworker/u16:4-r]\n  507 root      0:00 [kworker/0:1]\n  554 root      0:00 ps -A\n"
  },
  {
    "path": "results/sdm660/fourth/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,633600,2057.514385,3.247339622790404,52.94107596096552,7.719679022150899,38.861719397811484,145.816436142\r\n1,902400,2930.431555,3.2473753933953904,68.27984177708832,6.990545864299196,42.91510360186658,102.380815221\r\n1,1113600,3616.374946,3.247463133979885,98.96787755680486,8.210524890399574,36.538467881728835,82.961513302\r\n1,1401600,4551.592299,3.2474260124143837,128.9013013998154,8.49664589387796,35.308050229109504,65.915904662\r\n1,1536000,4988.111667,3.2474685332031252,162.5819221776667,9.779052306883775,30.677819341330324,60.148460394\r\n1,1747200,5673.758865,3.2473436727335163,196.07661270059614,10.368425741370737,28.933997067942453,52.87946175\r\n1,1843200,5985.753906,3.2474793326822917,224.33434424460006,11.244453357119578,26.679820750027915,50.123637533\r\n4,1113600,5827.619029,5.23313490391523,254.4894068332941,13.103777161473042,22.894162217749123,51.490462116\r\n4,1401600,7320.82286,5.223189825913242,341.8632039086751,14.01255180401883,21.409376692827593,40.988768735\r\n4,1747200,9138.261903,5.230232316277473,516.0505637975625,16.946728790989585,17.702531485575385,32.839279675\r\n4,1958400,10247.301544,5.232486491013072,641.1071312239654,18.77580142131806,15.978013042861635,29.286527176\r\n4,2150400,11256.61326,5.234660184151785,782.8418919452308,20.87240691555064,14.37304289887574,26.662353063\r\n4,2208000,11552.680222,5.232192129528986,914.58812607384,23.759373254240806,12.626595692984159,25.978221865\r\n"
  },
  {
    "path": "results/sdm660/fourth/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 961.8147511440329, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1345.930036715, 1339.82075964, 1345.930036715, 1346.087540179, 1354.07434943, 1347.890371462, 1343.816368415, 1339.742365368, 1339.585255536, 1345.851284983, 1345.851284983, 1339.742365368, 1343.816368415, 1345.930036715, 1345.851284983, 1339.742365368, 1345.851284983, 1345.851284983, 1339.82075964, 1343.816368415, 1339.742365368, 1339.585255536, 1345.6934587659998, 1339.585255536, 1343.816368415, 1337.7074488, 1339.585255536, 1337.7074488, 1337.5505776], \"power_mean\": 1342.9646622983794, \"energy_millijoules\": 6714.823311491897, \"energy_joules\": 6.714823311491896}, \"cpus\": {\"1\": {\"freqs\": {\"633600\": {\"active\": {\"elapsed_sec\": 145.816436142, \"elapsed_ns\": 145816436142, \"power_samples\": [42.349367307999955, 42.349367307999955, 48.29318144700005, 42.18748190199972, 42.18748190199972, 42.18748190199972, 46.17832193900017, 46.17832193900017, 46.17832193900017, 40.072979854000096, 50.32702539099978, 50.32702539099978, 42.268590131999645, 46.25933750299987, 46.25933750299987, 46.25933750299987, 46.25933750299987, 46.25933750299987, 40.072979854000096, 46.25933750299987, 46.25933750299987, 46.25933750299987, 48.29318144700005, 48.29318144700005, 46.25933750299987, 46.25933750299987, 46.17832193900017, 46.17832193900017, 41.86437319800007, 36.001362641000014, 36.001362641000014, 46.17832193900017, 46.17832193900017, 46.17832193900017, 46.17832193900017, 39.75034743800006, 39.75034743800006, 49.839503143, 41.7028188459999, 41.7028188459999, 45.93527524700016, 47.968642903000045, 47.968642903000045, 47.968642903000045, 41.78359602199998, 41.7028188459999, 41.7028188459999, 47.88750826700016, 45.85425968300001, 45.85425968300001, 45.93527524700016, 45.93527524700016, 45.93527524700016, 47.968642903000045, 643.55268045, 643.55268045, 47.88750826700016, 47.968642903000045, 47.968642903000045, 41.78359602199998, 45.85425968300001, 45.85425968300001, 45.85425968300001, 47.88750826700016, 45.85425968300001, 45.85425968300001, 47.88750826700016, 47.80637363100004, 47.80637363100004, 47.88750826700016, 45.773244118999855, 45.773244118999855, 41.54093344000012, 49.676662720000195, 49.676662720000195, 41.54093344000012, 41.54093344000012, 41.54093344000012, 47.562637203999884, 37.39044713199996, 41.46015626399981, 41.46015626399981, 47.562637203999884, 47.562637203999884, 47.562637203999884, 39.346726351999905, 47.562637203999884, 47.562637203999884, 45.44884983199995, 45.52986539599988, 45.52986539599988, 45.44884983199995, 45.44884983199995, 45.44884983199995, 47.481502567999996, 45.44884983199995, 45.44884983199995, 47.481502567999996, 45.36783426800025, 45.36783426800025, 45.36783426800025, 39.346726351999905, 41.37937908799995, 41.37937908799995, 41.37937908799995, 47.40036793200011, 47.40036793200011, 41.05593933, 45.124455545000046, 45.124455545000046, 45.205803139999944, 39.104752039999994, 39.104752039999994, 47.15663150500018, 45.124455545000046, 45.124455545000046, 45.124455545000046, 45.124455545000046, 39.104752039999994, 39.104752039999994, 47.40036793200011, 41.13704755999993, 41.13704755999993, 45.36783426800025, 47.238098660000105, 47.238098660000105, 49.43290159600019, 45.205803139999944, 45.205803139999944, 49.18880746500008, 45.205803139999944, 45.205803139999944, 41.13704755999993, 45.205803139999944, 39.104752039999994, 39.104752039999994, 45.205803139999944, 45.205803139999944, 45.205803139999944, 45.124455545000046, 39.0237633700001, 39.0237633700001, 40.732830625999895, 40.97516215399992, 40.97516215399992], \"power_mean\": 52.94107596096552, \"energy_millijoules\": 7719.679022150899, \"energy_joules\": 7.719679022150899, \"coremark_score\": 2057.514385, \"coremarks_per_mhz\": 3.247339622790404, \"ulpmark_cm_score\": 38.861719397811484}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1339.585255536, 1339.506861264, 1335.515899664, 1335.515899664], \"power_mean\": 1337.530979032, \"energy_millijoules\": 6687.65489516, \"energy_joules\": 6.68765489516}}, \"902400\": {\"active\": {\"elapsed_sec\": 102.380815221, \"elapsed_ns\": 102380815221, \"power_samples\": [4.692170820000001, 60.98034867499996, 60.98034867499996, 60.98034867499996, 65.04350987499993, 58.94876807500009, 58.94876807500009, 60.98034867499996, 58.94876807500009, 58.94876807500009, 64.87909633100026, 66.91460137400009, 60.89838004700027, 60.89838004700027, 69.11083415000007, 67.07925354999998, 67.07925354999998, 60.89838004700027, 68.94594383000026, 68.94594383000026, 66.91460137400009, 58.62103440200008, 58.62103440200008, 66.66728570800024, 66.74961179599995, 66.74961179599995, 66.74961179599995, 64.63213910200034, 64.63213910200034, 64.63213910200034, 58.53918484600035, 64.54993233000005, 64.54993233000005, 64.63213910200034, 64.63213910200034, 64.63213910200034, 58.53918484600035, 60.57016959800012, 60.57016959800012, 68.69827046, 64.54993233000005, 64.54993233000005, 60.652138226000034, 64.46772555800021, 64.46772555800021, 663.6195310219998, 64.63213910200034, 64.63213910200034, 60.48820096999975, 60.40623234200007, 64.54993233000005, 64.54993233000005, 60.242295085999785, 56.17711727999995, 56.17711727999995, 64.30331201400008, 64.30331201400008, 64.30331201400008, 66.50263353199989, 64.30331201400008, 64.30331201400008, 60.40623234200007, 60.40623234200007, 60.40623234200007, 64.46772555800021, 60.159990521000054, 60.159990521000054, 66.33798135599977, 64.22076832900007, 58.129601616999935, 58.129601616999935, 64.30331201400008, 60.159990521000054, 60.159990521000054, 58.129601616999935, 66.25531786599981, 66.25531786599981, 64.22076832900007, 60.159990521000054, 60.159990521000054, 64.22076832900007, 64.22076832900007, 64.22076832900007, 59.99605326500023, 64.05635478500017, 64.05635478500017, 64.05635478500017, 63.89194124100004, 59.832116009000174, 59.832116009000174, 63.80973446899998, 63.80973446899998, 63.80973446899998, 59.832116009000174, 63.89194124100004, 63.89194124100004, 66.09066569000015, 59.99605326500023, 59.99605326500023, 64.05635478500017, 66.09066569000015, 66.09066569000015], \"power_mean\": 68.27984177708832, \"energy_millijoules\": 6990.545864299196, \"energy_joules\": 6.990545864299196, \"coremark_score\": 2930.431555, \"coremarks_per_mhz\": 3.2473753933953904, \"ulpmark_cm_score\": 42.91510360186658}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1342.32138108, 1335.984432, 1335.984432, 1333.87366004], \"power_mean\": 1337.04097628, \"energy_millijoules\": 6685.2048814, \"energy_joules\": 6.6852048814}}, \"1113600\": {\"active\": {\"elapsed_sec\": 82.961513302, \"elapsed_ns\": 82961513302, \"power_samples\": [3.3547710699997424, 85.98256481599992, 85.98256481599992, 85.98256481599992, 88.01627865200021, 84.03674992399988, 84.03674992399988, 84.03674992399988, 84.03674992399988, 87.84900542800005, 87.84900542800005, 87.84900542800005, 87.76536881600009, 87.76536881600009, 87.76536881600009, 83.61941700800026, 83.61941700800026, 85.7320129279999, 85.7320129279999, 85.7320129279999, 85.7320129279999, 79.64441983999996, 79.64441983999996, 83.61941700800026, 85.81553022399976, 85.81553022399976, 87.76536881600009, 77.69410471599986, 85.7320129279999, 85.7320129279999, 93.77312602400002, 87.68173220400013, 87.68173220400013, 79.56125975999998, 85.64849563200005, 85.64849563200005, 85.7320129279999, 85.7320129279999, 85.7320129279999, 83.70281523200015, 89.79456651200007, 89.79456651200007, 87.59809559199994, 89.627055144, 89.627055144, 87.59809559199994, 79.47809968000001, 85.39760146000003, 85.39760146000003, 83.36888053999996, 85.23056686799987, 85.23056686799987, 79.14511853999988, 89.29168914700017, 89.29168914700017, 89.45920051500002, 83.36888053999996, 83.36888053999996, 87.43047959500018, 85.23056686799987, 85.23056686799987, 85.39760146000003, 87.43047959500018, 87.43047959500018, 87.17956975900006, 87.17956975900006, 87.01229653500013, 87.01229653500013, 83.20208409199995, 85.14704957200001, 85.14704957200001, 85.23056686799987, 87.26320637100002, 87.26320637100002, 79.14511853999988, 79.14511853999988, 79.14511853999988, 85.14704957200001, 678.9985359679999, 678.9985359679999, 85.14704957200001, 82.95188941999982], \"power_mean\": 98.96787755680486, \"energy_millijoules\": 8210.524890399574, \"energy_joules\": 8.210524890399574, \"coremark_score\": 3616.374946, \"coremarks_per_mhz\": 3.247463133979885, \"ulpmark_cm_score\": 36.538467881728835}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1341.1412466499999, 1340.9053486699997, 1340.9053486699997, 1336.840170864], \"power_mean\": 1339.9480287134998, \"energy_millijoules\": 6699.740143567498, \"energy_joules\": 6.699740143567499}}, \"1401600\": {\"active\": {\"elapsed_sec\": 65.915904662, \"elapsed_ns\": 65915904662, \"power_samples\": [129.36910047399988, 129.36910047399988, 133.42463618599982, 133.25188272200012, 133.25188272200012, 129.02454612199995, 129.11068471, 129.11068471, 129.11068471, 133.25188272200012, 129.02454612199995, 129.02454612199995, 125.13760910000019, 127.16513881200012, 127.16513881200012, 124.87990850000006, 129.11068471, 129.11068471, 132.992752526, 124.96580870000003, 124.96580870000003, 132.73326832700013, 128.67963874300017, 128.67963874300017, 124.96580870000003, 132.992752526, 132.992752526, 132.992752526, 132.992752526, 126.99310026800003, 126.99310026800003, 124.6218558500002, 124.6218558500002, 124.6218558500002, 135.02407906400003, 128.93840753400013, 128.93840753400013, 126.9070809960001, 128.67963874300017, 128.67963874300017, 128.67963874300017, 126.64867064200007, 126.64867064200007, 134.76423642800023, 128.67963874300017, 134.76423642800023, 134.76423642800023, 126.9070809960001, 126.47663209799998, 126.47663209799998, 128.59350015499967, 126.56265136999991, 126.56265136999991, 128.59350015499967, 126.56265136999991, 126.56265136999991, 126.56265136999991, 128.50736156699986, 128.50736156699986, 126.47663209799998, 128.50736156699986, 128.50736156699986, 128.50736156699986, 128.50736156699986, 132.38776139899983], \"power_mean\": 128.9013013998154, \"energy_millijoules\": 8496.64589387796, \"energy_joules\": 8.49664589387796, \"coremark_score\": 4551.592299, \"coremarks_per_mhz\": 3.2474260124143837, \"ulpmark_cm_score\": 35.308050229109504}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1341.9901908440002, 1344.102298464, 1342.068942576, 1342.068942576], \"power_mean\": 1342.5575936149999, \"energy_millijoules\": 6712.787968074999, \"energy_joules\": 6.712787968074999}}, \"1536000\": {\"active\": {\"elapsed_sec\": 60.148460394, \"elapsed_ns\": 60148460394, \"power_samples\": [11.687925372000109, 158.48263399999996, 156.45665320000012, 158.48263399999996, 158.48263399999996, 154.42652080000016, 148.4317565959998, 148.4317565959998, 152.40054000000032, 158.30678271199986, 158.30678271199986, 152.22540363200005, 154.2511462880002, 154.2511462880002, 154.2511462880002, 148.08243741200022, 148.08243741200022, 158.13093142399998, 156.19323348400007, 156.19323348400007, 156.10542691199998, 151.787203826, 152.050267264, 152.050267264, 148.16976720799994, 156.28104005599994, 156.28104005599994, 154.16345903200022, 154.075771776, 154.075771776, 156.19323348400007, 154.16345903200022, 154.16345903200022, 152.13783544800026, 158.21885706800003, 158.21885706800003, 157.8667941409999, 153.81235063400004, 153.81235063400004, 156.10542691199998, 154.075771776, 155.84164733299986, 155.84164733299986, 157.77886849700008, 155.753840761, 155.753840761, 153.72466337800006, 157.8667941409999, 157.8667941409999, 157.77886849700008, 157.69094285300002, 157.69094285300002, 153.72466337800006, 153.72466337800006, 153.72466337800006, 155.6660341889999, 153.6369761220003, 153.6369761220003, 756.1937610529999, 161.65259639299984], \"power_mean\": 162.5819221776667, \"energy_millijoules\": 9779.052306883776, \"energy_joules\": 9.779052306883775, \"coremark_score\": 4988.111667, \"coremarks_per_mhz\": 3.2474685332031252, \"ulpmark_cm_score\": 30.677819341330324}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1335.192927288, 1341.281102503, 1341.281102503, 1340.9657728220002], \"power_mean\": 1339.6802262790002, \"energy_millijoules\": 6698.401131395001, \"energy_joules\": 6.698401131395001}}, \"1747200\": {\"active\": {\"elapsed_sec\": 52.87946175, \"elapsed_ns\": 52879461750, \"power_samples\": [201.810725326, 201.810725326, 197.8482598160001, 193.79939603999992, 197.938938236, 197.938938236, 197.75795151199986, 193.70932587999982, 193.70932587999982, 191.6850130639998, 195.4630709999999, 195.4630709999999, 195.4630709999999, 197.66764320800007, 197.66764320800007, 193.61925571999996, 195.37288176800007, 195.37288176800007, 195.643449464, 193.61925571999996, 193.61925571999996, 197.48702660000004, 197.48702660000004, 193.4391154, 193.4391154, 201.53908524999997, 197.48702660000004, 197.48702660000004, 193.4391154, 195.4630709999999, 195.4630709999999, 195.37288176800007, 193.34904524000012, 193.34904524000012, 201.4485385580001, 193.34904524000012, 193.34904524000012, 197.39671829600002, 197.21573157199987, 197.21573157199987, 195.37288176800007, 194.92156597999997, 195.01175521200003, 195.01175521200003, 192.98839546, 192.8983252999999, 192.8983252999999, 196.9448066599998, 201.0859806970002, 201.0859806970002, 201.0859806970002, 194.92156597999997], \"power_mean\": 196.07661270059614, \"energy_millijoules\": 10368.425741370738, \"energy_joules\": 10.368425741370737, \"coremark_score\": 5673.758865, \"coremarks_per_mhz\": 3.2473436727335163, \"ulpmark_cm_score\": 28.933997067942453}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1340.3354362129999, 1342.3661656820002, 1342.208423586, 1342.208423586], \"power_mean\": 1341.77961226675, \"energy_millijoules\": 6708.89806133375, \"energy_joules\": 6.70889806133375}}, \"1843200\": {\"active\": {\"elapsed_sec\": 50.123637533, \"elapsed_ns\": 50123637533, \"power_samples\": [231.26829439699986, 231.26829439699986, 222.89571411199995, 222.89571411199995, 222.89571411199995, 225.10280754400014, 221.148540616, 221.148540616, 223.07980500800022, 223.07980500800022, 223.07980500800022, 224.82650172800004, 224.82650172800004, 224.82650172800004, 226.85329132399988, 222.89571411199995, 223.07980500800022, 223.07980500800022, 225.10280754400014, 225.10280754400014, 225.10280754400014, 222.89571411199995, 226.94538692799983, 226.94538692799983, 224.82650172800004, 214.70913280400032, 214.70913280400032, 224.82650172800004, 224.6425491519999, 224.6425491519999, 224.6425491519999, 224.7345254400002, 224.7345254400002, 224.7345254400002, 224.82650172800004, 222.7119996800002, 222.7119996800002, 222.80385689599984, 226.76119572000016, 226.76119572000016, 222.7119996800002, 224.6425491519999, 224.6425491519999, 224.6425491519999, 224.7345254400002, 224.7345254400002, 224.6425491519999, 224.6425491519999, 224.6425491519999, 232.55555832799996], \"power_mean\": 224.33434424460006, \"energy_millijoules\": 11244.453357119579, \"energy_joules\": 11.244453357119578, \"coremark_score\": 5985.753906, \"coremarks_per_mhz\": 3.2474793326822917, \"ulpmark_cm_score\": 26.679820750027915}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1351.7876761919997, 1339.705099604, 1339.705099604, 1339.705099604], \"power_mean\": 1342.725743751, \"energy_millijoules\": 6713.628718755, \"energy_joules\": 6.7136287187549994}}}}, \"4\": {\"freqs\": {\"1113600\": {\"active\": {\"elapsed_sec\": 51.490462116, \"elapsed_ns\": 51490462116, \"power_samples\": [240.36920664500008, 240.36920664500008, 246.15892105200032, 244.13332510500004, 244.13332510500004, 246.15892105200032, 236.13605949400016, 236.04336828600003, 236.04336828600003, 242.20492014899992, 242.20492014899992, 242.20492014899992, 833.8727814419999, 244.22649284499994, 244.22649284499994, 242.11187148099998, 242.01882281299982, 242.01882281299982, 240.1833474529999, 242.20492014899992, 242.20492014899992, 240.1833474529999, 240.09041785700015, 240.09041785700015, 246.0656339960001, 244.0401573649999, 242.01882281299982, 242.01882281299982, 244.0401573649999, 244.0401573649999, 244.0401573649999, 245.97234694000008, 241.73929546199975, 241.73929546199975, 241.6462467939998, 243.66710457, 243.66710457, 245.7853905039999, 243.66710457, 243.66710457, 249.6402938000001, 249.6402938000001, 245.6921034479999, 245.6921034479999, 243.5739368300001, 243.5739368300001, 243.5739368300001, 241.5531981260001, 241.5531981260001, 241.5531981260001, 245.50552933599988], \"power_mean\": 254.4894068332941, \"energy_millijoules\": 13103.777161473043, \"energy_joules\": 13.103777161473042, \"coremark_score\": 5827.619029, \"coremarks_per_mhz\": 5.23313490391523, \"ulpmark_cm_score\": 22.894162217749123}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1338.916936778, 1333.074996792, 1332.9182082480002, 1332.9182082480002], \"power_mean\": 1334.4570875165, \"energy_millijoules\": 6672.2854375825, \"energy_joules\": 6.6722854375825}}, \"1401600\": {\"active\": {\"elapsed_sec\": 40.988768735, \"elapsed_ns\": 40988768735, \"power_samples\": [343.77631498899996, 339.7369818530001, 339.7369818530001, 341.6576427370003, 335.49621360799983, 335.49621360799983, 345.4027371919999, 341.3602199240004, 341.3602199240004, 341.558637053, 343.5780654770001, 343.5780654770001, 341.558637053, 339.34103013200024, 343.28028496, 343.28028496, 343.181160204, 345.20424904799984, 345.20424904799984, 343.181160204, 334.80527174400004, 334.80527174400004, 343.28028496, 343.181160204, 343.181160204, 349.3416345599999, 348.94370569600005, 348.94370569600005, 339.14325690800024, 339.14325690800024, 339.14325690800024, 341.162208556, 345.20424904799984, 340.8651915040002, 340.8651915040002, 338.74730518700017, 340.76578005900024, 340.76578005900024, 342.68513017500027, 342.586005419], \"power_mean\": 341.8632039086751, \"energy_millijoules\": 14012.55180401883, \"energy_joules\": 14.01255180401883, \"coremark_score\": 7320.82286, \"coremarks_per_mhz\": 5.223189825913242, \"ulpmark_cm_score\": 21.409376692827593}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1336.184488685, 1336.184488685, 1338.2078484370002, 1332.1336229520002], \"power_mean\": 1335.67761218975, \"energy_millijoules\": 6678.3880609487505, \"energy_joules\": 6.678388060948751}}, \"1747200\": {\"active\": {\"elapsed_sec\": 32.839279675, \"elapsed_ns\": 32839279675, \"power_samples\": [512.595713357, 512.595713357, 512.3772098930001, 518.4299760580002, 518.4299760580002, 510.5792636850001, 518.4299760580002, 518.4299760580002, 514.284050617, 518.4299760580002, 518.4299760580002, 510.3609983650001, 512.267958161, 512.267958161, 514.284050617, 518.1006992640002, 518.1006992640002, 520.2262813519999, 512.1582586759996, 520.116553088, 520.116553088, 504.090236, 514.0648607679998, 514.0648607679998, 517.662262496, 519.5679117679999, 519.5679117679999, 517.5526533039999, 517.5526533039999, 517.5526533039999, 527.4122140010002, 513.5180067479998], \"power_mean\": 516.0505637975625, \"energy_millijoules\": 16946.728790989586, \"energy_joules\": 16.946728790989585, \"coremark_score\": 9138.261903, \"coremarks_per_mhz\": 5.230232316277473, \"ulpmark_cm_score\": 17.702531485575385}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1335.6337378, 1337.65626356, 1337.65626356, 1349.7997071600003], \"power_mean\": 1340.1864930200002, \"energy_millijoules\": 6700.932465100001, \"energy_joules\": 6.700932465100001}}, \"1958400\": {\"active\": {\"elapsed_sec\": 29.286527176, \"elapsed_ns\": 29286527176, \"power_samples\": [637.720582685, 637.720582685, 643.6503889200001, 643.5332738000002, 643.5332738000002, 641.3979647259998, 631.3235037, 631.3235037, 641.3979647259998, 639.0332677619997, 641.0469773139998, 641.0469773139998, 637.0195582099998, 630.9743030999998, 630.9743030999998, 642.9476982000001, 642.9476982000001, 642.9476982000001, 640.578514607, 648.5222240850001, 648.5222240850001, 642.4787577400002, 642.3616426199999, 642.3616426199999, 642.2445275, 646.27027862, 646.27027862, 642.0102972599998, 649.9468975959996], \"power_mean\": 641.1071312239654, \"energy_millijoules\": 18775.80142131806, \"energy_joules\": 18.77580142131806, \"coremark_score\": 10247.301544, \"coremarks_per_mhz\": 5.232486491013072, \"ulpmark_cm_score\": 15.978013042861635}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1338.8150290700003, 1336.947175219, 1334.925721595, 1334.925721595], \"power_mean\": 1336.40341186975, \"energy_millijoules\": 6682.01705934875, \"energy_joules\": 6.68201705934875}}, \"2150400\": {\"active\": {\"elapsed_sec\": 26.662353063, \"elapsed_ns\": 26662353063, \"power_samples\": [779.706255265, 779.706255265, 781.7177009850002, 777.3191595889998, 777.3191595889998, 785.3676346879997, 779.3302480930001, 779.3302480930001, 779.3302480930001, 785.115733184, 780.8390032540001, 780.8390032540001, 781.0899128460001, 786.7491462879998, 786.7491462879998, 788.8896903780001, 784.738653632, 784.738653632, 784.738653632, 786.4975217760002, 786.4975217760002, 784.1096725759994, 780.211215115, 780.211215115, 788.3859640900005, 784.3615740800001], \"power_mean\": 782.8418919452308, \"energy_millijoules\": 20872.40691555064, \"energy_joules\": 20.87240691555064, \"coremark_score\": 11256.61326, \"coremarks_per_mhz\": 5.234660184151785, \"ulpmark_cm_score\": 14.37304289887574}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1338.1834142020002, 1350.3091256510002, 1336.3955903419999, 1336.3955903419999], \"power_mean\": 1340.32093013425, \"energy_millijoules\": 6701.60465067125, \"energy_joules\": 6.70160465067125}}, \"2208000\": {\"active\": {\"elapsed_sec\": 25.978221865, \"elapsed_ns\": 25978221865, \"power_samples\": [908.2609723850001, 908.2609723850001, 917.7810598880001, 915.5050030000002, 907.4619481999998, 907.4619481999998, 915.2378898560005, 915.103785921, 915.103785921, 919.1204817130001, 908.5418303179999, 908.5418303179999, 914.8366727770003, 916.844782529, 916.844782529, 918.5853028490001, 918.317713417, 918.317713417, 922.4711274520005, 914.4360030610001, 914.4360030610001, 916.4437555969998, 914.4360030610001, 914.4360030610001, 917.9157809300004], \"power_mean\": 914.58812607384, \"energy_millijoules\": 23759.373254240807, \"energy_joules\": 23.759373254240806, \"coremark_score\": 11552.680222, \"coremarks_per_mhz\": 5.232192129528986, \"ulpmark_cm_score\": 12.626595692984159}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1337.631316866, 1347.5733381720001, 1335.607750269, 1335.607750269], \"power_mean\": 1339.105038894, \"energy_millijoules\": 6695.52519447, \"energy_joules\": 6.69552519447}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sdm660/fourth/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 1338 mW\n\n\n===== CPU 1 =====\nFrequencies: 633 902 1113 1401 1536 1747 1843\n\n 633:  2058     3.2 C/MHz     53 mW    7.7 J   38.9 I/mJ   145.8 s\n 902:  2930     3.2 C/MHz     68 mW    7.0 J   42.9 I/mJ   102.4 s\n1113:  3616     3.2 C/MHz     99 mW    8.2 J   36.5 I/mJ    83.0 s\n1401:  4552     3.2 C/MHz    129 mW    8.5 J   35.3 I/mJ    65.9 s\n1536:  4988     3.2 C/MHz    163 mW    9.8 J   30.7 I/mJ    60.1 s\n1747:  5674     3.2 C/MHz    196 mW   10.4 J   28.9 I/mJ    52.9 s\n1843:  5986     3.2 C/MHz    224 mW   11.2 J   26.7 I/mJ    50.1 s\n\n\n===== CPU 4 =====\nFrequencies: 1113 1401 1747 1958 2150 2208\n\n1113:  5828     5.2 C/MHz    254 mW   13.1 J   22.9 I/mJ    51.5 s\n1401:  7321     5.2 C/MHz    342 mW   14.0 J   21.4 I/mJ    41.0 s\n1747:  9138     5.2 C/MHz    516 mW   16.9 J   17.7 I/mJ    32.8 s\n1958: 10247     5.2 C/MHz    641 mW   18.8 J   16.0 I/mJ    29.3 s\n2150: 11257     5.2 C/MHz    783 mW   20.9 J   14.4 I/mJ    26.7 s\n2208: 11553     5.2 C/MHz    915 mW   23.8 J   12.6 I/mJ    26.0 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sdm660/fourth/uptime.txt",
    "content": " 05:31:40 up 16 min,  load average: 2.79, 2.71, 1.85\n"
  },
  {
    "path": "results/sdm660/fourth/versions.txt",
    "content": "Kernel: Linux version 4.19.227-Scarlet-X-v1.0+ (Tashar@Manjaro) (Atom-X clang version 15.0.0 (https://github.com/llvm/llvm-project ff024374de1d5e4b109f9f343f7bc798db035c31), LLD 15.0.0) #1 SMP PREEMPT Thu Feb 3 18:48:34 +06 2022\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sdm660/main/cmdline.txt",
    "content": "ramoops_memreserve=4M rcupdate.rcu_expedited=1 console=ttyMSM0,115200,n8 androidboot.console=ttyMSM0 earlycon=msm_serial_dm,0xc170000 androidboot.hardware=qcom user_debug=31 msm_rtb.filter=0x37 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 sched_enable_hmp=1 sched_enable_power_aware=1 service_locator.enable=1 swiotlb=1 androidboot.configfs=true androidboot.usbcontroller=a800000.dwc3 loop.max_part=16 androidboot.selinux=permissive rootwait ro init=/init buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=green androidboot.keymaster=1 root=PARTUUID=50d69e1d-8239-78b7-6a82-098762fd8b7f androidboot.bootdevice=c0c4000.sdhci androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.dp=0x0 androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_nt36672a_tianma_fhdplus_video:config0:1:none:cfg:single_dsi skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=0 androidboot.dtb_idx=0 androidboot.fpsensor=gdx androidboot.secureboot=1 androidboot.hwc=Global androidboot.hwversion=1.29.0 androidboot.hwlevel=MP\n"
  },
  {
    "path": "results/sdm660/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 4 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nHardware\t: Qualcomm Technologies, Inc SDM660\n"
  },
  {
    "path": "results/sdm660/main/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. SDM 660 PM660 + PM660L MTP F7A overlay;\nCompatible: qcom,sdm660-mtp;qcom,sdm660;qcom,mtp;\n"
  },
  {
    "path": "results/sdm660/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Initializing cgroup subsys cpuset\n[    0.000000] Initializing cgroup subsys cpu\n[    0.000000] Initializing cgroup subsys cpuacct\n[    0.000000] Initializing cgroup subsys schedtune\n[    0.000000] Linux version 4.4.247-lapisLazuli r3-Beta+ (Moeeze@Avalon) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project 01f0d162d672c02b7207e0b3a6c494c4d0ea513d)) #1 SMP PREEMPT Sat Jan 9 18:36:07 Asia 2021\n[    0.000000] Boot CPU: AArch64 Processor [51af8014]\n[    0.000000] Machine: Qualcomm Technologies, Inc. SDM 660 PM660 + PM660L MTP F7A overlay\n[    0.000000] ramoops: msm_reserve_ramoops_memory addr=a0000000, size=400000\n[    0.000000] ramoops: msm_reserve_ramoops_memory record_size=0, ftrace_size=0\n[    0.000000] Reserved memory: reserved region for node 'wlan_msa_guard@85600000': base 0x0000000085600000, size 1 MiB\n[    0.000000] Reserved memory: reserved region for node 'wlan_msa_mem@85700000': base 0x0000000085700000, size 1 MiB\n[    0.000000] Reserved memory: reserved region for node 'removed_regions@85800000': base 0x0000000085800000, size 55 MiB\n[    0.000000] Reserved memory: reserved region for node 'modem_fw_region@8ac00000': base 0x000000008ac00000, size 126 MiB\n[    0.000000] Reserved memory: reserved region for node 'adsp_fw_region@92a00000': base 0x0000000092a00000, size 30 MiB\n[    0.000000] Reserved memory: reserved region for node 'pil_mba_region@94800000': base 0x0000000094800000, size 2 MiB\n[    0.000000] Reserved memory: reserved region for node 'cdsp_fw_region@94a00000': base 0x0000000094a00000, size 6 MiB\n[    0.000000] Reserved memory: reserved region for node 'splash_region@9d400000': base 0x000000009d400000, size 35 MiB\n[    0.000000] Reserved memory: reserved region for node 'dfps_data_mem@0x9f7ff000': base 0x000000009f8ff000, size 0 MiB\n[    0.000000] Reserved memory: reserved region for node 'pstore_reserve_mem_region@0': base 0x00000000a0000000, size 4 MiB\n[    0.000000] Reserved memory: allocated memory for 'venus_fw_region' node: base 0x000000009cc00000, size 8 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x000000009cc00000, size 8 MiB\n[    0.000000] Reserved memory: initialized node venus_fw_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'linux,cma' node: base 0x00000000fd000000, size 44 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fd000000, size 44 MiB\n[    0.000000] Reserved memory: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'secure_region' node: base 0x00000000f7400000, size 92 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f7400000, size 92 MiB\n[    0.000000] Reserved memory: initialized node secure_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'qseecom_region' node: base 0x00000000f6000000, size 20 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6000000, size 20 MiB\n[    0.000000] Reserved memory: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'adsp_region' node: base 0x00000000f5800000, size 8 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f5800000, size 8 MiB\n[    0.000000] Reserved memory: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085600000, size 1 MiB\n[    0.000000] Reserved memory: initialized node wlan_msa_guard@85600000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085700000, size 1 MiB\n[    0.000000] Reserved memory: initialized node wlan_msa_mem@85700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085800000, size 55 MiB\n[    0.000000] Reserved memory: initialized node removed_regions@85800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ac00000, size 126 MiB\n[    0.000000] Reserved memory: initialized node modem_fw_region@8ac00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000092a00000, size 30 MiB\n[    0.000000] Reserved memory: initialized node adsp_fw_region@92a00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094800000, size 2 MiB\n[    0.000000] Reserved memory: initialized node pil_mba_region@94800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094a00000, size 6 MiB\n[    0.000000] Reserved memory: initialized node cdsp_fw_region@94a00000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 985024\n[    0.000000]   DMA zone: 7308 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 467712 pages, LIFO batch:31\n[    0.000000]   Normal zone: 8083 pages used for memmap\n[    0.000000]   Normal zone: 517312 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.0 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] PERCPU: Embedded 18 pages/cpu @fffffff4fa170000 s42264 r0 d31464 u73728\n[    0.000000] pcpu-alloc: s42264 r0 d31464 u73728 alloc=18*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: enabling workaround for Kryo2xx Silver erratum 845719\n[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 969633\n[    0.000000] Kernel command line: ramoops_memreserve=4M rcupdate.rcu_expedited=1 console=ttyMSM0,115200,n8 androidboot.console=ttyMSM0 earlycon=msm_serial_dm,0xc170000 androidboot.hardware=qcom user_debug=31 msm_rtb.filter=0x37 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 sched_enable_hmp=1 sched_enable_power_aware=1 service_locator.enable=1 swiotlb=1 androidboot.configfs=true androidboot.usbcontroller=a800000.dwc3 loop.max_part=16 androidboot.selinux=permissive rootwait ro init=/init buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=50d69e1d-8239-78b7-6a82-098762fd8b7f androidboot.bootdevice=c0c4000.sdhci androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.dp=0x0 androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_nt36672a_tianma_fhdplus_video:config0:1:none:cfg:single_dsi skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=0 androidboo\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 1048576 bytes\n[    0.000000] log_buf_len: 2097152 bytes\n[    0.000000] early log buf free: 1041120(99%)\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] software IO TLB: mapped [mem 0xfffbf000-0xfffff000] (0MB)\n[    0.000000] Memory: 3582808K/3940096K available (26110K kernel code, 3588K rwdata, 7260K rodata, 8192K init, 6056K bss, 181160K reserved, 176128K cma-reserved)\n[    0.000000] Virtual kernel memory layout:\n                   modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n                   vmalloc : 0xffffff8008000000 - 0xffffffbdbfff0000   (   246 GB)\n                     .init : 0xffffff8fc7400000 - 0xffffff8fc7c00000   (  8192 KB)\n                     .text : 0xffffff8fc5280000 - 0xffffff8fc6c00000   ( 26112 KB)\n                   .rodata : 0xffffff8fc6c00000 - 0xffffff8fc7400000   (  8192 KB)\n                     .data : 0xffffff8fc7c00000 - 0xffffff8fc7f81000   (  3588 KB)\n                   vmemmap : 0xffffffbdc0000000 - 0xffffffbfc0000000   (     8 GB maximum)\n                             0xffffffbe90000000 - 0xffffffbe93f93000   (    63 MB actual)\n                   fixed   : 0xffffffbffe7fb000 - 0xffffffbffec00000   (  4116 KB)\n                   PCI I/O : 0xffffffbffee00000 - 0xffffffbfffe00000   (    16 MB)\n                   memory  : 0xfffffff400000000 - 0xfffffff4fe4c0000   (  4068 MB)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n\n[    0.000000] **********************************************************\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **                                                      **\n[    0.000000] ** trace_printk() being used. Allocating extra memory.  **\n[    0.000000] **                                                      **\n[    0.000000] ** This means that this is a DEBUG kernel and it is     **\n[    0.000000] ** unsafe for production use.                           **\n[    0.000000] **                                                      **\n[    0.000000] ** If you see this message and you are not debugging    **\n[    0.000000] ** the kernel, report this immediately to your vendor!  **\n[    0.000000] **                                                      **\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **********************************************************\n[    0.000000] NR_IRQS:64 nr_irqs:64 0\n[    0.000000] mpm_init_irq_domain(): Cannot find irq controller for qcom,gpio-parent\n[    0.000000] MPM 1 irq mapping errored -517\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from all CPUs\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000014] clocksource: Switched to clocksource arch_sys_counter\n[    0.001244] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001254] pid_max: default: 32768 minimum: 301\n[    0.001299] Security Framework initialized\n[    0.001306] SELinux:  Initializing.\n[    0.001336] SELinux:  Starting in permissive mode\n[    0.001361] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001367] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001804] Initializing cgroup subsys freezer\n[    0.003216] sched-energy: Sched-energy-costs installed from DT\n[    0.003252] ASID allocator initialised with 32768 entries\n[    0.029322] CPU1: Booted secondary processor [51af8014]\n[    0.034276] CPU2: Booted secondary processor [51af8014]\n[    0.039177] CPU3: Booted secondary processor [51af8014]\n[    0.044637] CPU4: Booted secondary processor [51af8002]\n[    0.049645] CPU5: Booted secondary processor [51af8002]\n[    0.054926] CPU6: Booted secondary processor [51af8002]\n[    0.059934] CPU7: Booted secondary processor [51af8002]\n[    0.059987] Brought up 8 CPUs\n[    0.060009] SMP: Total of 8 processors activated.\n[    0.060040] CPU features: detected feature: GIC system register CPU interface\n[    0.060045] CPU features: detected feature: 32-bit EL0 Support\n[    0.060255] CPU: All CPU(s) started at EL1\n[    0.060287] alternatives: patching kernel code\n[    0.061095] devtmpfs: initialized\n[    0.104090] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.104110] futex hash table entries: 2048 (order: 5, 131072 bytes)\n[    0.109444] ramoops: msm_register_ramoops_device \n[    0.109550] pinctrl core: initialized pinctrl subsystem\n[    0.110203] NET: Registered protocol family 16\n[    0.111065] schedtune: init normalization constants...\n[    0.111073] schedtune: CLUSTER[0]        min_pwr:     1 max_pwr:    62\n[    0.111078] schedtune: CPU[0]            min_pwr:     8 max_pwr:  1102\n[    0.111082] schedtune: SYSTEM            min_pwr:     9 max_pwr:  1164\n[    0.111086] schedtune: using normalization constants mul: 3320697659 sh1: 1 sh2: 10\n[    0.111089] schedtune: verify normalization constants...\n[    0.111093] schedtune: max_pwr/2^0: 1155 => norm_pwr:  1024\n[    0.111097] schedtune: max_pwr/2^1:  577 => norm_pwr:   511\n[    0.111101] schedtune: max_pwr/2^2:  288 => norm_pwr:   255\n[    0.111104] schedtune: max_pwr/2^3:  144 => norm_pwr:   127\n[    0.111108] schedtune: max_pwr/2^4:   72 => norm_pwr:    63\n[    0.111112] schedtune: max_pwr/2^5:   36 => norm_pwr:    31\n[    0.111116] schedtune: configured to support 6 boost groups\n[    0.113915] console [pstore-1] enabled\n[    0.114057] pstore: Registered ramoops as persistent store backend\n[    0.114062] ramoops: attached 0x400000@0xa0000000, ecc: 0/0\n[    0.114408] cpuidle: using governor menu\n[    0.114417] cpuidle: using governor qcom\n[    0.114840] vdso: 2 pages (1 code @ ffffff8fc6c01000, 1 data @ ffffff8fc7c04000)\n[    0.114850] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.115267] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.118840] exit: IPA_USB init success!\n[    0.128924] unable to find DT imem DLOAD mode node\n[    0.130216] unable to find DT imem EDLOAD mode node\n[    0.131441] spmi spmi-0: PMIC arbiter version v3 (0x30000000)\n[    0.135989] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.136715] msm_watchdog 17817000.qcom,wdt: wdog absent resource not present\n[    0.136912] cpu 0 reg dump setup failed\n[    0.136916] cpu 1 reg dump setup failed\n[    0.136919] cpu 2 reg dump setup failed\n[    0.136922] cpu 3 reg dump setup failed\n[    0.136925] cpu 4 reg dump setup failed\n[    0.136928] cpu 5 reg dump setup failed\n[    0.136931] cpu 6 reg dump setup failed\n[    0.136935] cpu 7 reg dump setup failed\n[    0.136979] Registering scandump region failed\n[    0.137003] msm_watchdog 17817000.qcom,wdt: MSM Watchdog Initialized\n[    0.137237] sps:sps is ready.\n[    0.138065] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.138134] msm_thermal:vdd_restriction_reg_init Defer regulator vdd-dig probe\n[    0.138138] msm_thermal:probe_vdd_rstr Err regulator init. err:-517. KTM continues.\n[    0.138145] msm-thermal soc:qcom,msm-thermal: probe_vdd_rstr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,max-freq-level. err=-517. KTM continues\n[    0.139644] gpu-sdm660 5065000.clock-controller: Registered GPU RBCPR clocks\n[    0.141688] irq: no irq domain found for /soc/pinctrl@03000000 !\n[    0.142801] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.145109] msm_rpm_dev_probe: APSS-RPM communication over GLINK\n[    0.148778] platform cce0000.qcom,venus: assigned reserved memory node venus_fw_region\n[    0.149446] platform 15700000.qcom,lpass: assigned reserved memory node adsp_fw_region@92a00000\n[    0.149643] platform 1a300000.qcom,turing: assigned reserved memory node cdsp_fw_region@94a00000\n[    0.149858] platform 4080000.qcom,mss: assigned reserved memory node modem_fw_region@8ac00000\n[    0.156780] msm_mpm_dev_probe(): Cannot get clk resource for XO: -517\n[    0.157246] genirq: Setting trigger mode 8 for irq 102 failed (gic_set_type+0x0/0x100)\n[    0.157275] genirq: Setting trigger mode 8 for irq 103 failed (gic_set_type+0x0/0x100)\n[    0.157301] genirq: Setting trigger mode 8 for irq 104 failed (gic_set_type+0x0/0x100)\n[    0.157326] genirq: Setting trigger mode 8 for irq 105 failed (gic_set_type+0x0/0x100)\n[    0.157352] genirq: Setting trigger mode 8 for irq 106 failed (gic_set_type+0x0/0x100)\n[    0.161170] msm_rpm_trans_notify_state: glink config params: transport=(null), edge=rpm, name=rpm_requests\n[    0.163294] __of_mpm_init(): MPM driver mapping exists\n[    0.171920] irq: no irq domain found for /soc/qcom,mdss_mdp@c900000 !\n[    0.176058] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.176422] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.176469] msm_thermal:vdd_restriction_reg_init Defer regulator vdd-dig probe\n[    0.176474] msm_thermal:probe_vdd_rstr Err regulator init. err:-517. KTM continues.\n[    0.176481] msm-thermal soc:qcom,msm-thermal: probe_vdd_rstr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,max-freq-level. err=-517. KTM continues\n[    0.181319] qcom-clk-smd-rpm soc:qcom,rpmcc: Registered RPM clocks\n[    0.191395] pm660l_l7: supplied by pm660_l10\n[    0.194093] cpr4_sdm660_mmss_read_fuse_data: gfx_corner: CPR fusing revision = 0\n[    0.194244] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[0] open-loop= 545000 uV\n[    0.194249] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[1] open-loop= 605000 uV\n[    0.194253] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[2] open-loop= 685000 uV\n[    0.194258] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[3] open-loop= 750000 uV\n[    0.194262] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[4] open-loop= 830000 uV\n[    0.194266] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[5] open-loop= 885000 uV\n[    0.194394] cpr3_regulator_init_ctrl: gfx: Default CPR mode = open-loop\n[    0.196261] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.196599] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.196731] msm-thermal soc:qcom,msm-thermal: probe_ocr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-opt-curr-temp err:-22. KTM continues\n[    0.196741] msm-thermal soc:qcom,msm-thermal: probe_vdd_mx:Failed reading node=/soc/qcom,msm-thermal, key=qcom,mx-restriction-temp. KTM continues\n[    0.196755] msm-thermal soc:qcom,msm-thermal: probe_freq_mitigation:Failed reading node=/soc/qcom,msm-thermal, key=qcom,limit-temp. err=-22. KTM continues\n[    0.196764] msm-thermal soc:qcom,msm-thermal: msm_thermal:Failed reading node=/soc/qcom,msm-thermal, key=qcom,rpm-phase-resource-type err=-22. KTM continues\n[    0.196774] msm-thermal soc:qcom,msm-thermal: msm_thermal:Failed reading node=/soc/qcom,msm-thermal, key=qcom,gfx-sensor-id. err=-22. KTM continues\n[    0.197367] cpu cpu0: dev_pm_opp_get_opp_count: OPP table not found (-19)\n[    0.197372] msm_thermal:get_cpu_freq_plan_len Error reading CPU0 freq table len. error:-19\n[    0.197379] cpu cpu4: dev_pm_opp_get_opp_count: OPP table not found (-19)\n[    0.197384] msm_thermal:get_cpu_freq_plan_len Error reading CPU4 freq table len. error:-19\n[    0.197389] cpu cpu0: dev_pm_opp_get_opp_count: OPP table not found (-19)\n[    0.197393] msm_thermal:get_cpu_freq_plan_len Error reading CPU0 freq table len. error:-19\n[    0.197398] cpu cpu4: dev_pm_opp_get_opp_count: OPP table not found (-19)\n[    0.197402] msm_thermal:get_cpu_freq_plan_len Error reading CPU4 freq table len. error:-19\n[    0.200339] gcc-sdm660 100000.clock-controller: Registered GCC clocks\n[    0.206029] mmcc-sdm660 c8c0000.clock-controller: Registered MMSS clocks\n[    0.206572] gpucc-sdm660 5065000.gfx: Registered GPUCC clocks\n[    0.207053] cprh_kbss_read_fuse_data: apc0_pwrcl_corner: speed bin = 1\n[    0.207060] cprh_sdm660_kbss_read_fuse_data: apc0_pwrcl_corner: CPR fusing revision = 2\n[    0.207134] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused   LowSVS: open-loop= 574000 uV\n[    0.207138] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused      SVS: open-loop= 604000 uV\n[    0.207143] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused  SVSPLUS: open-loop= 648000 uV\n[    0.207147] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused      NOM: open-loop= 718000 uV\n[    0.207151] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused TURBO_L1: open-loop= 868000 uV\n[    0.207183] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused   LowSVS: quot[ 7]= 340\n[    0.207189] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused      SVS: quot[ 7]= 396, quot_offset[ 7]=  55\n[    0.207194] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused  SVSPLUS: quot[ 7]= 471, quot_offset[ 7]=  75\n[    0.207200] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused      NOM: quot[ 7]= 602, quot_offset[ 7]= 130\n[    0.207205] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused TURBO_L1: quot[ 7]= 854, quot_offset[ 7]= 250\n[    0.207728] cpr3_regulator_init_ctrl: apc0: Default CPR mode = full HW closed-loop\n[    0.208128] cprh_kbss_read_fuse_data: apc1_perfcl_corner: speed bin = 1\n[    0.208134] cprh_sdm660_kbss_read_fuse_data: apc1_perfcl_corner: CPR fusing revision = 2\n[    0.208205] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused      SVS: open-loop= 634000 uV\n[    0.208210] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused  SVSPLUS: open-loop= 688000 uV\n[    0.208214] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused      NOM: open-loop= 748000 uV\n[    0.208218] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused    TURBO: open-loop= 848000 uV\n[    0.208223] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused TURBO_L2: open-loop= 878000 uV\n[    0.208249] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused      SVS: quot[ 7]= 553\n[    0.208254] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused  SVSPLUS: quot[ 7]= 670, quot_offset[ 7]= 115\n[    0.208259] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused      NOM: quot[ 7]= 807, quot_offset[ 7]= 135\n[    0.208264] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused    TURBO: quot[ 7]=1003, quot_offset[ 7]= 195\n[    0.208269] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused TURBO_L2: quot[ 7]=1065, quot_offset[ 7]=  60\n[    0.208720] cpr3_regulator_init_ctrl: apc1: Default CPR mode = full HW closed-loop\n[    0.209018] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.209558] clk-cpu-osm 179c0000.qcom,clk-cpu-660: using pwrcl speed bin 1 and pvs_ver 0\n[    0.209572] clk-cpu-osm 179c0000.qcom,clk-cpu-660: using perfcl speed bin 1 and pvs_ver 0\n[    0.211110] add_opp: Set OPP pair (300000000 Hz, 572000 uv) on cpu0\n[    0.211426] add_opp: Set OPP pair (1843200000 Hz, 860000 uv) on cpu0\n[    0.211482] add_opp: Set OPP pair (300000000 Hz, 572000 uv) on cpu1\n[    0.211725] add_opp: Set OPP pair (1843200000 Hz, 860000 uv) on cpu1\n[    0.211770] add_opp: Set OPP pair (300000000 Hz, 572000 uv) on cpu2\n[    0.212009] add_opp: Set OPP pair (1843200000 Hz, 860000 uv) on cpu2\n[    0.212052] add_opp: Set OPP pair (300000000 Hz, 572000 uv) on cpu3\n[    0.212291] add_opp: Set OPP pair (1843200000 Hz, 860000 uv) on cpu3\n[    0.212336] add_opp: Set OPP pair (300000000 Hz, 652000 uv) on cpu4\n[    0.212549] add_opp: Set OPP pair (2208000000 Hz, 900000 uv) on cpu4\n[    0.212590] add_opp: Set OPP pair (300000000 Hz, 652000 uv) on cpu5\n[    0.212804] add_opp: Set OPP pair (2208000000 Hz, 900000 uv) on cpu5\n[    0.212845] add_opp: Set OPP pair (300000000 Hz, 652000 uv) on cpu6\n[    0.213044] add_opp: Set OPP pair (2208000000 Hz, 900000 uv) on cpu6\n[    0.213103] add_opp: Set OPP pair (300000000 Hz, 652000 uv) on cpu7\n[    0.213303] add_opp: Set OPP pair (2208000000 Hz, 900000 uv) on cpu7\n[    0.213761] clk_cpu_osm_driver_probe: OSM driver inited\n[    0.213830] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.215107] Attribute fsync_enabled: Invalid permissions 0755\n[    0.215128] ------------[ cut here ]------------\n[    0.215132] WARNING: at ../fs/sysfs/group.c:61\n\n[    0.215141] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.4.247-lapisLazuli r3-Beta+ #1\n[    0.215144] Hardware name: Qualcomm Technologies, Inc. SDM 660 PM660 + PM660L MTP F7A overlay (DT)\n[    0.215149] task: fffffff4f9660000 task.stack: fffffff4f9668000\n[    0.215159] PC is at internal_create_group.llvm.16689408819209627545+0x28c/0x598\n[    0.215164] LR is at internal_create_group.llvm.16689408819209627545+0x28c/0x598\n[    0.215168] pc : [<ffffff8fc553bdec>] lr : [<ffffff8fc553bdec>] pstate: 60400045\n[    0.215171] sp : fffffff4f966bcb0\n[    0.215174] x29: fffffff4f966bcb0 x28: 00000000000011b4 \n[    0.215179] x27: fffffff4f7f2cc80 x26: 000000000000ee4b \n[    0.215184] x25: ffffff8fc6f11c09 x24: 0000000000000000 \n[    0.215189] x23: 0000000000000000 x22: 00000000000001ed \n[    0.215193] x21: fffffff4f7f2ca00 x20: fffffff4f7f2cc08 \n[    0.215198] x19: fffffff4f7f2d258 x18: 00000000ffff99e4 \n[    0.215203] x17: 00000000001f99e4 x16: ffffff8fc808ce2c \n[    0.215208] x15: fffffff4f9f70008 x14: 0000000000003037 \n[    0.215213] x13: 0000000000000867 x12: 0000000000003531 \n[    0.215218] x11: 0000000000000000 x10: 0000000000000000 \n[    0.215223] x9 : bf26fc3cdfb70bde x8 : bf26fc3cdfb70bde \n[    0.215228] x7 : 766e49203a64656c x6 : ffffff8fc808d398 \n[    0.215232] x5 : ffffff8fc808a000 x4 : 0000000000000004 \n[    0.215237] x3 : 0000000000000041 x2 : 0000000000000000 \n[    0.215242] x1 : ffffff8fc808ad7d x0 : 0000000000000031 \n[    0.215248] \n               PC: 0xffffff8fc553bdac:\n[    0.215251] bdac  0a1c02c3 aa1303e0 2a1f03e2 aa1f03e4 97fff88f 34fffd80 1400000c 79401020\n[    0.215267] bdcc  12003c16 6a1a001f 54fffea0 f8787b68 aa1903e0 2a1603e2 f9400101 97f7f156\n[    0.215279] bdec  d4210000 17ffffee f9400e89 2a0003f6 b4000149 f9400128 b4000108 91002135\n[    0.215291] be0c  f9400101 aa1303e0 aa1f03e2 97ffecbc f84086a8 b5ffff68 f9401289 b4001169\n[    0.215304] \n               LR: 0xffffff8fc553bdac:\n[    0.215307] bdac  0a1c02c3 aa1303e0 2a1f03e2 aa1f03e4 97fff88f 34fffd80 1400000c 79401020\n[    0.215319] bdcc  12003c16 6a1a001f 54fffea0 f8787b68 aa1903e0 2a1603e2 f9400101 97f7f156\n[    0.215331] bdec  d4210000 17ffffee f9400e89 2a0003f6 b4000149 f9400128 b4000108 91002135\n[    0.215343] be0c  f9400101 aa1303e0 aa1f03e2 97ffecbc f84086a8 b5ffff68 f9401289 b4001169\n[    0.215356] \n               SP: 0xfffffff4f966bc70:\n[    0.215359] bc70  c553bdec ffffff8f f966bcb0 fffffff4 c553bdec ffffff8f 60400045 00000000\n[    0.215371] bc90  000011b4 00000000 f7f2ca00 fffffff4 ffffffff ffffffff f7f2d258 fffffff4\n[    0.215383] bcb0  f966bd60 fffffff4 c741129c ffffff8f 00000070 00000000 00000080 00000000\n[    0.215395] bcd0  f7f2cc80 fffffff4 f7f2cc80 fffffff4 f7f2ca00 fffffff4 c73165a0 ffffff8f\n\n[    0.215422] ---[ end trace a76b4e81cc0014c4 ]---\n[    0.215427] Call trace:\n[    0.215432] Exception stack(0xfffffff4f966bb50 to 0xfffffff4f966bc80)\n[    0.215437] bb40:                                   0000000060400045 fffffff4f966bc00\n[    0.215443] bb60: ffffff8fc553bdec 0000000083371000 0000008000000000 fffffff4f7f2d258\n[    0.215449] bb80: 0000000000000031 ffffff8fc808ad7d 0000000000000000 0000000000000041\n[    0.215455] bba0: 0000000000000004 ffffff8fc808a000 ffffff8fc808d398 766e49203a64656c\n[    0.215460] bbc0: bf26fc3cdfb70bde bf26fc3cdfb70bde 0000000000000000 0000000000000000\n[    0.215466] bbe0: 0000000000003531 0000000000000867 0000000000003037 fffffff4f9f70008\n[    0.215472] bc00: ffffff8fc808ce2c 00000000001f99e4 00000000ffff99e4 fffffff4f7f2d258\n[    0.215478] bc20: fffffff4f7f2cc08 fffffff4f7f2ca00 00000000000001ed 0000000000000000\n[    0.215483] bc40: 0000000000000000 ffffff8fc6f11c09 000000000000ee4b fffffff4f7f2cc80\n[    0.215489] bc60: 00000000000011b4 fffffff4f966bcb0 ffffff8fc553bdec fffffff4f966bcb0\n[    0.215496] [<ffffff8fc553bdec>] internal_create_group.llvm.16689408819209627545+0x28c/0x598\n[    0.215502] [<ffffff8fc741129c>] param_sysfs_init+0x4f4/0x5b0\n[    0.215507] [<ffffff8fc7401418>] do_one_initcall+0xe0/0x200\n[    0.215512] [<ffffff8fc74019e4>] kernel_init_freeable+0x3e4/0x5d0\n[    0.215519] [<ffffff8fc6b7f878>] kernel_init+0x10/0x2f0\n[    0.215525] [<ffffff8fc5283360>] ret_from_fork+0x10/0x30\n[    0.222289] sched-energy energy-costs: cpu=0 freq=633600 cap=184 power_d0=23\n[    0.222296] sched-energy energy-costs: cpu=0 freq=902400 cap=262 power_d0=139\n[    0.222302] sched-energy energy-costs: cpu=0 freq=1113600 cap=324 power_d0=259\n[    0.222308] sched-energy energy-costs: cpu=0 freq=1401600 cap=407 power_d0=482\n[    0.222315] sched-energy energy-costs: cpu=0 freq=1536000 cap=446 power_d0=690\n[    0.222321] sched-energy energy-costs: cpu=0 freq=1747200 cap=508 power_d0=870\n[    0.222327] sched-energy energy-costs: cpu=0 freq=1843200 cap=535 power_d0=1102\n[    0.222334] sched-energy energy-costs: cpu=0 efficiency=1024 max_frequency=1843200 max_efficiency=1638 cpu_max_capacity=535\n[    0.222338] CPU0: update cpu_capacity 535\n[    0.222345] sched-energy energy-costs: cpu=1 freq=633600 cap=184 power_d0=23\n[    0.222351] sched-energy energy-costs: cpu=1 freq=902400 cap=262 power_d0=139\n[    0.222358] sched-energy energy-costs: cpu=1 freq=1113600 cap=324 power_d0=259\n[    0.222364] sched-energy energy-costs: cpu=1 freq=1401600 cap=407 power_d0=482\n[    0.222370] sched-energy energy-costs: cpu=1 freq=1536000 cap=446 power_d0=690\n[    0.222377] sched-energy energy-costs: cpu=1 freq=1747200 cap=508 power_d0=870\n[    0.222383] sched-energy energy-costs: cpu=1 freq=1843200 cap=535 power_d0=1102\n[    0.222390] sched-energy energy-costs: cpu=1 efficiency=1024 max_frequency=1843200 max_efficiency=1638 cpu_max_capacity=535\n[    0.222394] CPU1: update cpu_capacity 535\n[    0.222401] sched-energy energy-costs: cpu=2 freq=633600 cap=184 power_d0=23\n[    0.222407] sched-energy energy-costs: cpu=2 freq=902400 cap=262 power_d0=139\n[    0.222414] sched-energy energy-costs: cpu=2 freq=1113600 cap=324 power_d0=259\n[    0.222420] sched-energy energy-costs: cpu=2 freq=1401600 cap=407 power_d0=482\n[    0.222426] sched-energy energy-costs: cpu=2 freq=1536000 cap=446 power_d0=690\n[    0.222433] sched-energy energy-costs: cpu=2 freq=1747200 cap=508 power_d0=870\n[    0.222439] sched-energy energy-costs: cpu=2 freq=1843200 cap=535 power_d0=1102\n[    0.222446] sched-energy energy-costs: cpu=2 efficiency=1024 max_frequency=1843200 max_efficiency=1638 cpu_max_capacity=535\n[    0.222450] CPU2: update cpu_capacity 535\n[    0.222457] sched-energy energy-costs: cpu=3 freq=633600 cap=184 power_d0=23\n[    0.222463] sched-energy energy-costs: cpu=3 freq=902400 cap=262 power_d0=139\n[    0.222469] sched-energy energy-costs: cpu=3 freq=1113600 cap=324 power_d0=259\n[    0.222475] sched-energy energy-costs: cpu=3 freq=1401600 cap=407 power_d0=482\n[    0.222481] sched-energy energy-costs: cpu=3 freq=1536000 cap=446 power_d0=690\n[    0.222488] sched-energy energy-costs: cpu=3 freq=1747200 cap=508 power_d0=870\n[    0.222494] sched-energy energy-costs: cpu=3 freq=1843200 cap=535 power_d0=1102\n[    0.222501] sched-energy energy-costs: cpu=3 efficiency=1024 max_frequency=1843200 max_efficiency=1638 cpu_max_capacity=535\n[    0.222505] CPU3: update cpu_capacity 535\n[    0.222511] sched-energy energy-costs: cpu=4 freq=1113600 cap=517 power_d0=749\n[    0.222517] sched-energy energy-costs: cpu=4 freq=1401600 cap=651 power_d0=1443\n[    0.222524] sched-energy energy-costs: cpu=4 freq=1747200 cap=811 power_d0=2576\n[    0.222530] sched-energy energy-costs: cpu=4 freq=1958400 cap=909 power_d0=4153\n[    0.222536] sched-energy energy-costs: cpu=4 freq=2150400 cap=998 power_d0=5941\n[    0.222542] sched-energy energy-costs: cpu=4 freq=2208000 cap=1024 power_d0=6688\n[    0.222549] sched-energy energy-costs: cpu=4 efficiency=1638 max_frequency=2208000 max_efficiency=1638 cpu_max_capacity=1024\n[    0.222552] CPU4: update cpu_capacity 1024\n[    0.222559] sched-energy energy-costs: cpu=5 freq=1113600 cap=517 power_d0=749\n[    0.222565] sched-energy energy-costs: cpu=5 freq=1401600 cap=651 power_d0=1443\n[    0.222572] sched-energy energy-costs: cpu=5 freq=1747200 cap=811 power_d0=2576\n[    0.222578] sched-energy energy-costs: cpu=5 freq=1958400 cap=909 power_d0=4153\n[    0.222584] sched-energy energy-costs: cpu=5 freq=2150400 cap=998 power_d0=5941\n[    0.222591] sched-energy energy-costs: cpu=5 freq=2208000 cap=1024 power_d0=6688\n[    0.222598] sched-energy energy-costs: cpu=5 efficiency=1638 max_frequency=2208000 max_efficiency=1638 cpu_max_capacity=1024\n[    0.222601] CPU5: update cpu_capacity 1024\n[    0.222608] sched-energy energy-costs: cpu=6 freq=1113600 cap=517 power_d0=749\n[    0.222614] sched-energy energy-costs: cpu=6 freq=1401600 cap=651 power_d0=1443\n[    0.222621] sched-energy energy-costs: cpu=6 freq=1747200 cap=811 power_d0=2576\n[    0.222626] sched-energy energy-costs: cpu=6 freq=1958400 cap=909 power_d0=4153\n[    0.222632] sched-energy energy-costs: cpu=6 freq=2150400 cap=998 power_d0=5941\n[    0.222639] sched-energy energy-costs: cpu=6 freq=2208000 cap=1024 power_d0=6688\n[    0.222646] sched-energy energy-costs: cpu=6 efficiency=1638 max_frequency=2208000 max_efficiency=1638 cpu_max_capacity=1024\n[    0.222650] CPU6: update cpu_capacity 1024\n[    0.222657] sched-energy energy-costs: cpu=7 freq=1113600 cap=517 power_d0=749\n[    0.222663] sched-energy energy-costs: cpu=7 freq=1401600 cap=651 power_d0=1443\n[    0.222669] sched-energy energy-costs: cpu=7 freq=1747200 cap=811 power_d0=2576\n[    0.222676] sched-energy energy-costs: cpu=7 freq=1958400 cap=909 power_d0=4153\n[    0.222681] sched-energy energy-costs: cpu=7 freq=2150400 cap=998 power_d0=5941\n[    0.222687] sched-energy energy-costs: cpu=7 freq=2208000 cap=1024 power_d0=6688\n[    0.222694] sched-energy energy-costs: cpu=7 efficiency=1638 max_frequency=2208000 max_efficiency=1638 cpu_max_capacity=1024\n[    0.222698] CPU7: update cpu_capacity 1024\n[    0.222704] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.229695] socinfo_print: v0.11, id=317, ver=1.0, raw_id=140, raw_ver=0, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65563, pmic_die_revision=131072 foundry_id=3 serial_number=1212260414 num_pmics=2\n[    0.229706] msm_bus_fabric_init_driver\n[    0.243010] msm_bus_dev_init_qos: Skipping QOS init for 1\n[    0.243056] msm_bus_dev_init_qos: Skipping QOS init for 727\n[    0.243062] msm_bus_dev_init_qos: Skipping QOS init for 728\n[    0.244549] cam_avdd_gpio_regulator: supplied by pm660l_bob\n[    0.244772] cam_rear_avdd_gpio_regulator: supplied by pm660l_bob\n[    0.244980] cam_dvdd_gpio_regulator: supplied by pm660_s5\n[    0.245171] cam_rear_dvdd_gpio_regulator: supplied by pm660_s5\n[    0.245406] vgaarb: loaded\n[    0.245528] qcom,qpnp-misc 800f000.qcom,spmi:qcom,pm660@0:qcom,misc@900: probe successful\n[    0.246262] SCSI subsystem initialized\n[    0.246631] usbcore: registered new interface driver usbfs\n[    0.246651] usbcore: registered new interface driver hub\n[    0.246745] usbcore: registered new device driver usb\n[    0.246957] soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.247243] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.247268] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)\n[    0.247429] input: qpnp_pon as /devices/virtual/input/input0\n[    0.248151] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: No PON config. specified\n[    0.248192] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (secondary PMIC) and 'cold' boot\n[    0.248215] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from GP1 (Keypad_Reset1)\n[    0.248914] i2c-msm-v2 c175000.i2c: probing driver i2c-msm-v2\n[    0.251192] i2c-msm-v2 c1b6000.i2c: probing driver i2c-msm-v2\n[    0.252528] media: Linux media interface: v0.10\n[    0.252587] Linux video capture interface: v2.00\n[    0.256584] cpufreq: driver msm up and running\n[    0.258816] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node adsp_region\n[    0.259169] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.259357] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_region\n[    0.260095] ION heap system created\n[    0.260379] ION heap adsp created at 0x00000000f5800000 with size 800000\n[    0.260391] ION heap qsecom created at 0x00000000f6000000 with size 1400000\n[    0.260403] ION heap secure_display created at 0x00000000f7400000 with size 5c00000\n[    0.260419] ION heap secure_heap created\n[    0.261608] PMIC@SID0: PM660 v2.0 options: 0, 0, 0, 0\n[    0.261771] PMIC@SID2: PM660L v2.0.1 options: 0, 0, 0, 0\n[    0.262972] ipa get_ipa_dts_configuration:4871 : apps shutdown support = Disabled\n[    0.263056] IPA smmu_info.s1_bypass=1 smmu_info.fast_map=0\n[    0.269408] gdsc_vfe0: supplied by gdsc_camss_top\n[    0.269777] gdsc_vfe1: supplied by gdsc_camss_top\n[    0.270279] gdsc_cpp: supplied by gdsc_camss_top\n[    0.271433] gdsc_gpu_gx: supplied by gfx_corner\n[    0.274592] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.274606] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.275746] mdss_pll c994400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.275761] mdss_pll c994400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.275786] mdss_pll c994400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.276889] dsi_pll_clock_register_14nm: Registered DSI PLL ndx=0 clocks successfully\n[    0.276940] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.276947] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.277133] mdss_pll c996400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.277144] mdss_pll c996400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.277157] mdss_pll c996400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.277638] dsi_pll_clock_register_14nm: Registered DSI PLL ndx=1 clocks successfully\n[    0.277675] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.299545] arm-smmu 16c0000.arm,smmu-anoc2: found 29 context interrupt(s) but have 21 context banks. assuming 21 context interrupts.\n[    0.301442] arm-smmu 5100000.arm,smmu-lpass_q6: found 17 context interrupt(s) but have 14 context banks. assuming 14 context interrupts.\n[    0.303026] arm-smmu cd00000.arm,smmu-mmss: found 24 context interrupt(s) but have 17 context banks. assuming 17 context interrupts.\n[    0.303455] arm-smmu 5040000.arm,smmu-kgsl: regulator defer delay 80\n[    0.303844] arm-smmu 5040000.arm,smmu-kgsl: found 8 context interrupt(s) but have 5 context banks. assuming 5 context interrupts.\n[    0.304718] arm-smmu 5180000.arm,smmu-turing_q6: found 17 context interrupt(s) but have 13 context banks. assuming 13 context interrupts.\n[    0.309839] iommu: Adding device 18800000.qcom,icnss to group 0\n[    0.310894] iommu: Adding device soc:iommu_test_device to group 1\n[    0.310988] iommu: Adding device soc:usb_audio_qmi_dev to group 2\n[    0.311681] iommu: Adding device soc:qcom,msm-audio-ion to group 3\n[    0.312782] iommu: Adding device 14780000.qcom,ipa:ipa_smmu_ap to group 4\n[    0.312803] iommu: Adding device 14780000.qcom,ipa:ipa_smmu_uc to group 5\n[    0.315952] Advanced Linux Sound Architecture Driver Initialized.\n[    0.317166] Bluetooth: fffffff4f966bd78\n[    0.317208] NET: Registered protocol family 31\n[    0.317213] Bluetooth: fffffff4f966bd78\n[    0.317226] Bluetooth: fffffff4f966bd28\n[    0.317238] Bluetooth: fffffff4f966bcf8\n[    0.317349] Bluetooth: fffffff4f966bd28\n[    0.317969] cfg80211: World regulatory domain updated:\n[    0.317976] cfg80211:  DFS Master region: unset\n[    0.317980] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)\n[    0.317990] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.317994] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.317998] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.318003] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.318008] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.318012] cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.318018] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.318021] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)\n[    0.319167] NetLabel: Initializing\n[    0.319171] NetLabel:  domain hash size = 128\n[    0.319174] NetLabel:  protocols = UNLABELED CIPSOv4\n[    0.319214] NetLabel:  unlabeled traffic allowed by default\n[    0.319361] pcie:pcie_init.\n[    0.326825] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=5400mV ncp_voltage=5400mV bst_voltage=5500mV\n[    0.331689] ipa ipa2_uc_state_check:296 uC interface not initialized\n[    0.331714] ipa ipa_sps_irq_control_all:963 EP (2) not allocated.\n[    0.331720] ipa ipa_sps_irq_control_all:963 EP (5) not allocated.\n[    0.335621] sps:BAM 0x0000000014784000 is registered.\n[    0.339382] sps:BAM 0x0000000014784000 (va:0xffffff8008e40000) enabled: ver:0x27, number of pipes:20\n[    0.353822] IPA driver initialization was successful.\n[    0.354935] clocksource: Switched to clocksource arch_sys_counter\n[    0.412951] gcc-debug-sdm660 62000.qcom,cc-debug: Registered debug mux successfully\n[    0.414089] NET: Registered protocol family 2\n[    0.414739] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.414915] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.415778] TCP: Hash tables configured (established 32768 bind 32768)\n[    0.415927] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.415984] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.416213] NET: Registered protocol family 1\n[    0.416263] PCI: CLS 0 bytes, default 64\n[    0.416717] Trying to unpack rootfs image as initramfs...\n[    0.777255] Freeing initrd memory: 11540K\n[    0.781983] vmscan: error setting kswapd cpu affinity mask\n[    0.786795] VFS: Disk quotas dquot_6.6.0\n[    0.786898] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.787571] exFAT: file-system version 2.2.0-3arter97\n[    0.788099] Registering sdcardfs 0.1\n[    0.789578] fuse init (API version 7.23)\n[    0.790457] SELinux:  Registering netfilter hooks\n[    0.790911] pfk_ecryptfs [pfk_ecryptfs_init]: PFK ecryptfs inited successfully\n[    0.790915] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    0.790925] pfk [pfk_init]: Driver initialized successfully\n[    0.793534] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)\n[    0.793545] io scheduler noop registered\n[    0.793553] io scheduler deadline registered\n[    0.793660] io scheduler cfq registered (default)\n[    0.793667] io scheduler test-iosched registered\n[    0.801083] msm_dss_get_res_byname: 'vbif_nrt_phys' resource not found\n[    0.801103] mdss_mdp_probe+0x264/0x1ec0->msm_dss_ioremap_byname: 'vbif_nrt_phys' msm_dss_get_res_byname failed\n[    0.801794] mdss_mdp_irq_clk_setup: unable to get core gdsc regulator\n[    0.803285] No change in context(0==0), skip\n[    0.804151] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:0 num:0 rect:0 ndx:0x1 prio:0\n[    0.804157] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:4 num:1 rect:0 ndx:0x2 prio:1\n[    0.804190] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:1 num:6 rect:0 ndx:0x40 prio:2\n[    0.804205] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:1 num:6 rect:1 ndx:0x40 prio:2\n[    0.804209] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:5 num:7 rect:0 ndx:0x80 prio:3\n[    0.804224] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:5 num:7 rect:1 ndx:0x80 prio:3\n[    0.804228] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:9 num:12 rect:0 ndx:0x1000 prio:4\n[    0.804242] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:9 num:12 rect:1 ndx:0x1000 prio:4\n[    0.804256] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:2 num:10 rect:0 ndx:0x400 prio:0\n[    0.804265] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-pipe-sw-reset-off : u32 array read\n[    0.804365] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-ib-factor-overlap : u32 array read\n[    0.804374] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-bus-througput-factor : u32 array read\n[    0.805844] xlog_status: enable:0, panic:1, dump:2\n[    0.806343] iommu: Adding device c900000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb to group 6\n[    0.806694] iommu: Adding device c900000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb to group 7\n[    0.806838] mdss_mdp_probe: mdss version = 0x30020000, bootloader display is on, num 1, intf_sel=0x00000100\n[    0.808998] mdss_smmu_probe: iommu v2 domain[0] mapping and clk register successful!\n[    0.809242] mdss_smmu_probe: iommu v2 domain[2] mapping and clk register successful!\n[    0.812846] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->0\n[    0.813330] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_nt36672a_tianma_fhdplus_video:config0:1:none:cfg:single_dsi panel_name:qcom,mdss_dsi_nt36672a_tianma_fhdplus_video\n[    0.813417] mdss_dsi_panel_init: Panel Name = tianma nt36672a fhdplus video mode dsi panel\n[    0.813568] mdss_dsi_parse_split_link_settings: enable 0 sublinks-count 0 lanes per sublink 0\n[    0.813607] mdss_dsi_panel_timing_from_dt: found new timing \"qcom,mdss_dsi_nt36672a_tianma_fhdplus_video\" (fffffff4f966b490)\n[    0.813634] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-post-panel-on-command\n[    0.813642] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-timing-switch-command\n[    0.813645] mdss_dsi_panel_get_dsc_cfg_np: cannot find dsc config node:config0\n[    0.814028] mdss_dsi_parse_panel_features: ulps feature enabled\n[    0.814037] mdss_dsi_parse_panel_features: ulps during suspend feature disabled\n[    0.814045] mdss_dsi_parse_dms_config: dynamic switch feature enabled: 0\n[    0.814120] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-on\n[    0.814129] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-off\n[    0.814178] dyn_fps: min = 48, max = 60\n[    0.814530] mdss_dsi_parse_ctrl_params:4938 Unable to read qcom,display-id, data=0000000000000000,len=20\n[    0.814566] mdss_dsi_parse_gpio_params: bklt_en gpio not specified\n[    0.814571] mdss_dsi_parse_gpio_params: avdd_en gpio not specified\n[    0.814664] msm_dss_get_res_byname: 'dsi_phy_regulator' resource not found\n[    0.814680] mdss_dsi_retrieve_ctrl_resources+0x174/0x240->msm_dss_ioremap_byname: 'dsi_phy_regulator' msm_dss_get_res_byname failed\n[    0.814685] mdss_dsi_retrieve_ctrl_resources: ctrl_base=ffffff8008a7a000 ctrl_size=400 phy_base=ffffff8008ac2400 phy_size=588\n[    0.814851] dsi_panel_device_register: Continuous splash enabled\n[    0.814985] Unable to find fb node for device: c994000.qcom,mdss_dsi_ctrl0\n[    0.815188] mdss_register_panel: adding framebuffer device c994000.qcom,mdss_dsi_ctrl0\n[    0.820452] mdss_dsi_ctrl_probe: Dsi Ctrl->0 initialized, DSI rev:0x20010000, PHY rev:0x2\n[    0.820496] mdss_dsi_status_init: DSI status check interval:1000\n[    0.821592] mdss_dp_usbpd_setup: get_usbpd phandle failed (-11)\n[    0.821596] mdss_dp_probe: Error usbpd setup!\n[    0.822842] mdss_register_panel: adding framebuffer device soc:qcom,mdss_wb_panel\n[    0.823503] mdss_fb_probe: fb0: split_mode:0 left:0 right:0\n[    0.824176] mdss_fb_register: FrameBuffer[0] 1080x2340 registered successfully!\n[    0.825931] mdss_fb_probe: fb1: split_mode:0 left:0 right:0\n[    0.826070] mdss_fb_register: FrameBuffer[1] 640x480 registered successfully!\n[    0.827215] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    0.827712] mdss_mdp_kcal_store_fb0_ctl panel name tianma nt36672a fhdplus video mode dsi panel\n[    0.827716] mdss_mdp_kcal_store_fb0_ctl panel found...\n[    0.827764] kcal_ctrl_init: registered\n[    0.838112] spcom [spcom_init]: spcom driver version 1.2 23-Aug-2017.\n[    0.839678] audio_notifer_reg_service: service SSR_MODEM is in use\n[    0.843430] In memshare_probe, Memshare probe success\n[    0.848754] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.848914] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.848982] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.849354] subsys-pil-tz cce0000.qcom,venus: invalid resource\n[    0.849360] subsys-pil-tz cce0000.qcom,venus: Failed to iomap base register\n[    0.850328] subsys-pil-tz cce0000.qcom,venus: for venus segments only will be dumped.\n[    0.851097] subsys-pil-tz soc:qcom,kgsl-hyp: invalid resource\n[    0.851101] subsys-pil-tz soc:qcom,kgsl-hyp: Failed to iomap base register\n[    0.851112] subsys-pil-tz soc:qcom,kgsl-hyp: for a512_zap segments only will be dumped.\n[    0.853048] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    0.858488] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.858680] icnss: Platform driver probed successfully\n[    0.861859] msm_rpm_log_probe: OK\n[    0.863397] uart_tx_gpio is not available\n[    0.863402] uart_rx_gpio is not available\n[    0.863405] uart_cts_gpio is not available\n[    0.863408] uart_rfr_gpio is not available\n[    0.865153] sps: BAM device 0x000000000c184000 is not registered yet.\n[    0.865344] sps:BAM 0x000000000c184000 is registered.\n[    0.866686] c1af000.uart: ttyHS0 at MMIO 0xc1af000 (irq = 317, base_baud = 460800) is a MSM HS UART\n[    0.867853] msm_serial_hs module loaded\n[    0.870487] random: nonblocking pool is initialized\n[    0.955251] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 8\n[    0.955741] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 9\n[    0.983038] brd: module loaded\n[    0.994589] loop: module loaded\n[    0.995904] zram: Added device: zram0\n[    0.997021] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1001000\n[    0.997053] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.997061] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    0.997067] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 0\n[    0.997382] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    1.001558] sdm660-pinctrl 3000000.pinctrl: pin_config_group_set op failed for group 74\n[    1.001566] ant_check soc:ant_check: Error applying setting, reverse things back\n[    1.001591] Macle ant_probe\n[    1.001704] Macle irq_gpio=74\n[    1.001816] input: ant_check-input as /devices/virtual/input/input1\n[    1.001840] ant_probe: gpios = 0, gpion=0\n[    1.001843] Macle irq = 274\n[    1.002054] ant_probe end\n[    1.004309] msm-cdc-pinctrl soc:sdw_clk_data_pinctrl: msm_cdc_pinctrl_probe: Cannot get cdc gpio pinctrl:-22\n[    1.004325] msm-cdc-pinctrl: probe of soc:sdw_clk_data_pinctrl failed with error -22\n[    1.004344] msm-cdc-pinctrl soc:wsa_spkr_en1_pinctrl: msm_cdc_pinctrl_probe: Cannot get cdc gpio pinctrl:-22\n[    1.004350] msm-cdc-pinctrl: probe of soc:wsa_spkr_en1_pinctrl failed with error -22\n[    1.004369] msm-cdc-pinctrl soc:wsa_spkr_en2_pinctrl: msm_cdc_pinctrl_probe: Cannot get cdc gpio pinctrl:-22\n[    1.004375] msm-cdc-pinctrl: probe of soc:wsa_spkr_en2_pinctrl failed with error -22\n[    1.006229] qce 1de0000.qcedev: Qualcomm Crypto 5.3.4 device found @0x1de0000\n[    1.006238] qce 1de0000.qcedev: CE device = 0x0\n               IO base, CE = 0xffffff8009dc0000\n               Consumer (IN) PIPE 2,    Producer (OUT) PIPE 3\n               IO base BAM = 0x0000000000000000\n               BAM IRQ 93\n               Engines Availability = 0x2011053\n[    1.006439] sps:BAM 0x0000000001dc4000 is registered.\n[    1.006641] sps:BAM 0x0000000001dc4000 (va:0xffffff800b080000) enabled: ver:0x27, number of pipes:16\n[    1.006883] QCE50: qce_sps_init:  Qualcomm MSM CE-BAM at 0x0000000001dc4000 irq 93\n[    1.010210] qcrypto 1de0000.qcrypto: Qualcomm Crypto 5.3.4 device found @0x1de0000\n[    1.010219] qcrypto 1de0000.qcrypto: CE device = 0x0\n               IO base, CE = 0xffffff800b0c0000\n               Consumer (IN) PIPE 4,    Producer (OUT) PIPE 5\n               IO base BAM = 0x0000000000000000\n               BAM IRQ 93\n               Engines Availability = 0x2011053\n[    1.010538] QCE50: qce_sps_init:  Qualcomm MSM CE-BAM at 0x0000000001dc4000 irq 93\n[    1.010940] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    1.011053] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    1.011115] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    1.011171] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    1.011235] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    1.011295] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    1.011354] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    1.011413] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    1.011474] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    1.011535] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    1.011596] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    1.011655] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    1.011717] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    1.011780] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    1.011843] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    1.011901] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    1.011960] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    1.012021] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    1.012080] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    1.012139] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    1.014220] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    1.015206] SCSI Media Changer driver v0.25 \n[    1.017878] sps:BAM 0x000000000c184000 (va:0xffffff8008e20000) enabled: ver:0x19, number of pipes:12\n[    1.018789] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    1.021283] tun: Universal TUN/TAP device driver, 1.6\n[    1.021287] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    1.021404] sky2: driver version 1.30\n[    1.022594] PPP generic driver version 2.4.2\n[    1.022691] PPP BSD Compression module registered\n[    1.022698] PPP Deflate Compression module registered\n[    1.022737] PPP MPPE Compression module registered\n[    1.022746] NET: Registered protocol family 24\n[    1.022858] CLD80211: Initializing\n[    1.022952] usbcore: registered new interface driver asix\n[    1.022973] usbcore: registered new interface driver ax88179_178a\n[    1.022995] usbcore: registered new interface driver cdc_ether\n[    1.023019] usbcore: registered new interface driver net1080\n[    1.023037] usbcore: registered new interface driver cdc_subset\n[    1.023055] usbcore: registered new interface driver zaurus\n[    1.023091] usbcore: registered new interface driver cdc_ncm\n[    1.026192] i2c-msm-v2 c1b6000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:4) mode:FIFO slv_addr:0x28 MSTR_STS:0x0d1300c8 OPER:0x00000090\n[    1.026236] nq-nci 6-0028: nfcc_hw_check: - i2c_master_send Error\n[    1.026242] nq-nci 6-0028: nfcc_hw_check: - NFCC HW not available\n[    1.026446] nq-nci 6-0028: nqx_probe: probing nqxx failed, check hardware\n[    1.026575] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.032626] msm_sharedmem: sharedmem_register_qmi: qmi init successful\n[    1.033872] msm-dwc3 a800000.ssusb: unable to get dbm device\n[    1.035625] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    1.035648] ehci-pci: EHCI PCI platform driver\n[    1.035670] ehci-platform: EHCI generic platform driver\n[    1.036047] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    1.036061] ohci-pci: OHCI PCI platform driver\n[    1.036085] ohci-platform: OHCI generic platform driver\n[    1.036769] usbcore: registered new interface driver usb-storage\n[    1.036789] usbcore: registered new interface driver usb_ehset_test\n[    1.038587] usb_qcrndis_init: failed to register diag -17\n[    1.039884] qpnp-pdphy 800f000.qcom,spmi:qcom,pm660@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.040956] mousedev: PS/2 mouse device common for all mice\n[    1.041161] [synaptics] lct_syna_check_lcd (line 3906): F7A_LCM_ID0 = 0, F7A_LCM_ID1 = 0\n[    1.041171] [synaptics] syna_tcm_module_init (line 3945): Verify BOE LCM ID Failed, not BOE TP!\n[    1.041201] [NVT-ts] nvt_driver_init 2112: start\n[    1.041213] [NVT-ts] nvt_driver_init 2130: TP info: [Vendor]tianma [IC]nt36672a\n[    1.041901] [NVT-ts] nvt_ts_probe 1372: start\n[    1.041932] [NVT-ts] nvt_parse_dt 846: novatek,irq-gpio=67\n[    1.160284] [NVT-ts] nvt_ts_check_chip_ver_trim 1312: buf[1]=0x0A, buf[2]=0x00, buf[3]=0x00, buf[4]=0x72, buf[5]=0x66, buf[6]=0x03\n[    1.160290] [NVT-ts] nvt_ts_check_chip_ver_trim 1338: This is NVT touch IC\n[    1.230749] [NVT-ts] nvt_read_pid 479: PID=5911\n[    1.232027] input: NVTCapacitiveTouchScreen as /devices/virtual/input/input2\n[    1.232112] [NVT-ts] nvt_ts_probe 1507: int_trigger_type=1\n[    1.232162] [NVT-ts] nvt_ts_probe 1519: request irq 267 succeed\n[    1.234314] [LCT_TP_GESTURE] init_lct_tp_gesture (line 77): Initialization tp_gesture node!\n[    1.234328] [LCT_TP_GESTURE] lct_creat_proc_tp_entry (line 107): /proc/tp_gesture is okay!\n[    1.234333] [LCT_TP_GRIP_AREA] init_lct_tp_grip_area (line 79): Initialization /proc/tp_grip_area node!\n[    1.234339] [LCT_TP_GRIP_AREA] init_lct_tp_grip_area (line 95): /proc/tp_grip_area is okay!\n[    1.234344] [NVT-ts] nvt_get_oem_data 638: ++\n[    1.310133] [NVT-ts] Init_BootLoader 358: Init OK \n[    1.380021] [NVT-ts] Resume_PD 199: Resume PD OK\n[    1.510173] [NVT-ts] nvt_get_oem_data 748: --\n[    1.510177] [NVT-ts] nvt_get_xiaomi_lockdown_info 825: The maker of Touch Panel & CG Lamination: 0x46\n[    1.510181] [NVT-ts] nvt_get_xiaomi_lockdown_info 827: Display maker: 0x36\n[    1.510184] [NVT-ts] nvt_get_xiaomi_lockdown_info 829: CG ink color: 0x32\n[    1.510188] [NVT-ts] nvt_get_xiaomi_lockdown_info 831: HW version: 0x01\n[    1.510191] [NVT-ts] nvt_get_xiaomi_lockdown_info 833: Project ID: 0x00F7\n[    1.510194] [NVT-ts] nvt_get_xiaomi_lockdown_info 835: CG maker: 0x32\n[    1.510197] [NVT-ts] nvt_get_xiaomi_lockdown_info 837: Reservation byte: 0x00\n[    1.510202] [NVT-ts] lct_nvt_tp_info_node_init (line 855): LCM information : tianma nt36672a fhdplus video mode dsi panel\n[    1.510210] [LCT_TP_INFO] init_lct_tp_info (line 83): Initialization tp_info & tp_lockdown_info node!\n[    1.510223] [LCT_TP_INFO] lct_creat_proc_tp_entry (line 134): /proc/tp_info & /proc/tp_lockdown_info is okay!\n[    1.510236] [LCT_TP_INFO] lct_creat_sys_tp_entry (line 204): /sys/android_tp/tp_info & tp_lockdown_info is okay!\n[    1.510243] [NVT-ts] nvt_flash_proc_init 703: Succeeded!\n[    1.510247] [NVT-ts] nvt_flash_proc_init 706: ============================================================\n[    1.510250] [NVT-ts] nvt_flash_proc_init 707: Create /proc/NVTflash\n[    1.510254] [NVT-ts] nvt_flash_proc_init 708: ============================================================\n[    1.510264] [NVT-ts] nvt_extra_proc_init 1074: create proc/nvt_fw_version Succeeded!\n[    1.510270] [NVT-ts] nvt_extra_proc_init 1082: create proc/nvt_baseline Succeeded!\n[    1.510276] [NVT-ts] nvt_extra_proc_init 1090: create proc/nvt_raw Succeeded!\n[    1.510283] [NVT-ts] nvt_extra_proc_init 1098: create proc/nvt_diff Succeeded!\n[    1.510288] [NVT-ts] nvt_extra_proc_init 1106: create proc/nvt_pwr_plug_switch Succeeded!\n[    1.510316] [NVT-ts] nvt_mp_proc_init 2069: create /proc/nvt_selftest Succeeded!\n[    1.510322] [NVT-ts] nvt_ts_probe 1612: end\n[    1.510646] sps: BAM device 0x000000000c144000 is not registered yet.\n[    1.510855] sps:BAM 0x000000000c144000 is registered.\n[    1.511004] sps:BAM 0x000000000c144000 (va:0xffffff8009ee0000) enabled: ver:0x19, number of pipes:12\n[    1.511234] nvt_driver_init: finished\n[    1.511256] [LCT_TP_SELFTEST] tp_selftest_init (line 194): create /proc/tp_selftest success\n[    1.511350] stmvl53l0_init: Enter\n[    1.511354] stmvl53l0_init_cci: Enter\n[    1.512803] stmvl53l0_init_cci: End\n[    1.512806] stmvl53l0_init: End\n[    1.514596] tyt fpc1020_probe:615\n[    1.514601] Macle fpc1020_probe failed as fpsensor=2(1=fp)\n[    1.514616] fpc1020: probe of soc:fpc1020 failed with error -1\n[    1.514711] tyt fpc1020_init:778\n[    1.514714] fpc1020_init OK\n[    1.515079] Macle11 gf_probe\n[    1.515271] input: uinput-goodix as /devices/virtual/input/input3\n[    1.515350] adasdad\n[    1.515354] gf3208: version V1.2.10\n[    1.515452] gf3208: status = 0x0\n[    1.515882] qcom,qpnp-rtc 800f000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: rtc core: registered qpnp_rtc as rtc0\n[    1.516330] i2c /dev entries driver\n[    1.517027] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb1 to group 10\n[    1.517474] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 8, cb->name: :vfe sid [0] = 3072\n               ,\n[    1.517480] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 8, cb->name: :vfe sid [1] = 3073\n               ,\n[    1.517484] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 8, cb->name: :vfe sid [2] = 3074\n               ,\n[    1.517487] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 8, cb->name: :vfe sid [3] = 3075\n               ,\n[    1.517652] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb2 to group 11\n[    1.517807] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 2, cb->name: :cpp sid [0] = 2560\n               ,\n[    1.517910] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb4 to group 12\n[    1.518001] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 2, cb->name: :jpeg_enc0 sid [0] = 2048\n               ,\n[    1.518101] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb5 to group 13\n[    1.518193] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 2, cb->name: :jpeg_dma sid [0] = 2049\n               ,\n[    1.538544] msm_actuator_platform_probe:1987 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    1.562947] msm_cci_init:1439: hw_version = 0x10060000\n[    1.563134] msm_cci_irq:1797 MASTER_0 error 0x10000000\n[    1.563160] msm_cci_i2c_read:960 read_words = 0, exp words = 4\n[    1.563164] msm_cci_i2c_read_bytes:1043 failed rc -22\n[    1.563215] read_eeprom_memory: read failed\n[    1.563219] msm_eeprom_platform_probe read_eeprom_memory failed\n[    1.584182] qcom,eeprom: probe of ca0c000.qcom,cci:qcom,eeprom@0 failed with error -22\n[    1.584514] msm_eeprom_platform_probe failed 1822\n[    1.585204] msm_eeprom_platform_probe failed 1822\n[    1.620330] msm_cci_init:1439: hw_version = 0x10060000\n[    2.160616] i=2 flag offset 412\n[    2.160620] Invalid flag = 0x0\n[    2.160622] i=1 flag offset 386\n[    2.160625] Invalid flag = 0x0\n[    2.160627] i=0 flag offset 360\n[    2.160632] lavender_s5k5e8_ofilm_i_get_otp_vendor_module_id flag = 0x55, mid = 0x7, lensid = 0x38, sensorid = 0x9 \n[    2.160637] get_otp_vendor_module_id 1724 eeprom_name=lavender_s5k5e8_ofilm_i, module_id=0x7\n[    2.216976] msm_cci_init:1439: hw_version = 0x10060000\n[    2.217139] msm_cci_irq:1797 MASTER_0 error 0x10000000\n[    2.217164] msm_cci_i2c_read:960 read_words = 0, exp words = 4\n[    2.217168] msm_cci_i2c_read_bytes:1043 failed rc -22\n[    2.217218] read_eeprom_memory: read failed\n[    2.217220] msm_eeprom_platform_probe read_eeprom_memory failed\n[    2.238264] qcom,eeprom: probe of ca0c000.qcom,cci:qcom,eeprom@4 failed with error -22\n[    2.273316] msm_cci_init:1439: hw_version = 0x10060000\n[    2.810618] i=2 flag offset 412\n[    2.810621] Invalid flag = 0x0\n[    2.810623] i=1 flag offset 386\n[    2.810625] Invalid flag = 0x0\n[    2.810627] i=0 flag offset 360\n[    2.810631] lavender_s5k5e8_sunny_ii_get_otp_vendor_module_id flag = 0x55, mid = 0x7, lensid = 0x38, sensorid = 0x9 \n[    2.810635] get_otp_vendor_module_id 1724 eeprom_name=lavender_s5k5e8_sunny_ii, module_id=0x0\n[    2.851694] MSM-CPP cpp_probe:4620 cpp_probe register cx_ipeak received bit 1\n[    2.855036] MSM-CPP cpp_init_hardware:1141 CPP HW Version: 0x60010002\n[    2.855049] MSM-CPP cpp_init_hardware:1159 stream_cnt:0\n[    2.855326] MSM-CPP cpp_release_hardware:1222 cpp hw release done\n[    2.857758] CAM-SOC msm_camera_get_reg_base:864 err: mem resource vfe_fuse not found\n[    2.857764] CAM-SOC msm_camera_get_res_size:907 err: mem resource vfe_fuse not found\n[    2.859700] CAM-SOC msm_camera_get_reg_base:864 err: mem resource vfe_fuse not found\n[    2.859706] CAM-SOC msm_camera_get_res_size:907 err: mem resource vfe_fuse not found\n[    2.868712] __msm_jpeg_init:1577] Jpeg Device id 0\n[    2.881202] iommu: Adding device cc00000.qcom,vidc:non_secure_cb to group 14\n[    2.884115] iommu: Adding device cc00000.qcom,vidc:firmware_cb to group 15\n[    2.884297] iommu: Adding device cc00000.qcom,vidc:secure_bitstream_cb to group 16\n[    2.886366] iommu: Adding device cc00000.qcom,vidc:secure_pixel_cb to group 17\n[    2.887548] iommu: Adding device cc00000.qcom,vidc:secure_non_pixel_cb to group 18\n[    2.892414] sde_smmu_callback: <SDEROT_INFO> sde_smmu_callback registered domain: 1\n[    2.892423] sde_smmu_callback: <SDEROT_INFO> sde_smmu_callback registered domain: 0\n[    2.893319] No change in context(0==0), skip\n[    2.894534] sde_rotator_evtlog_create_debugfs: evtlog_status: enable:0, panic:1, dump:2\n[    2.894576] sde_rotator c900000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    2.895727] usbcore: registered new interface driver uvcvideo\n[    2.895731] USB Video Class driver (1.1.1)\n[    2.895736] gspca_main: v2.14.0 registered\n[    2.896862] sunxing get global set fcc max 2.3A\n[    2.897003] QCOM-BATT: pl_disable_vote_callback: parallel charging disabled\n[    2.899003] thermal thermal_zone0: failed to read out thermal zone (-19)\n[    2.899016] enter sysfs create file thermal\n[    2.899470] get prop 149 is not supported in usb\n[    2.899488] PMI: smblib_usb_plugin_locked: lct IRQ: usbin-plugin detached\n[    2.899516] [NVT-ts] nvt_ts_usb_plugin_work_func 1139: ++\n[    2.899520] [NVT-ts] nvt_ts_usb_plugin_work_func 1141: usb_plugin = 0\n[    2.901170] get prop 149 is not supported in usb\n[    2.901370] lct battery_capacity =88077952\n[    2.905042] QPNP SMB2 probed successfully usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    2.908288] lct battery_capacity =-169137024\n[    2.908693] get prop 149 is not supported in usb\n[    2.908799] qpnp_vadc_read: Error reading vadc_hc channel 78\n[    2.908808] thermal thermal_zone1: failed to read out thermal zone (-517)\n[    2.908949] qpnp_vadc_read: Error reading vadc_hc channel 79\n[    2.908954] thermal thermal_zone2: failed to read out thermal zone (-517)\n[    2.909070] qpnp_vadc_read: Error reading vadc_hc channel 80\n[    2.909075] thermal thermal_zone3: failed to read out thermal zone (-517)\n[    2.928053] msm_lmh_dcvs:lmh_activate_trip lmh_activate_trip: disable not supported\n[    2.928924] msm_lmh_dcvs:lmh_activate_trip lmh_activate_trip: disable not supported\n[    2.929334] md: linear personality registered for level -1\n[    2.929448] device-mapper: uevent: version 1.0.3\n[    2.929785] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com\n[    2.930863] device-mapper: req-crypt: dm-req-crypt successfully initalized.\n\n[    2.931669] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in device tree\n[    2.931739] bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    2.931743] bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    2.932298] sdhci: Secure Digital Host Controller Interface driver\n[    2.932301] sdhci: Copyright(c) Pierre Ossman\n[    2.932306] sdhci-pltfm: SDHCI platform and OF driver helper\n[    2.933677] qcom_ice_get_pdevice: found ice device fffffff405180e00\n[    2.933683] qcom_ice_get_pdevice: matching platform device fffffff4f7e77c00\n[    2.934070] sdhci_msm c0c4000.sdhci: sdhci_msm_pm_qos_parse_latency: invalid number of values for property qcom,pm-qos-cmdq-latency-us: expected=2 actual=4\n[    2.934078] sdhci_msm c0c4000.sdhci: sdhci_msm_pm_qos_parse_latency: invalid number of values for property qcom,pm-qos-legacy-latency-us: expected=2 actual=4\n[    2.934084] sdhci_msm c0c4000.sdhci: sdhci_msm_pm_qos_parse: invalid PM QoS latency values. Voting for cpu group will be disabled\n[    2.938195] qcom_ice c0c8000.sdcc1ice: QC ICE 3.0.72 device found @0xffffff8009db0000\n[    2.938742] sdhci_msm c0c4000.sdhci: No vmmc regulator found\n[    2.938747] sdhci_msm c0c4000.sdhci: No vqmmc regulator found\n[    2.939104] ../drivers/leds/leds-qpnp-wled.c, 1527 auto_calib_enabled = 0\n[    2.940449] [NVT-ts] nvt_ts_usb_plugin_work_func 1169: --\n[    2.941616] usbcore: registered new interface driver usbhid\n[    2.941620] usbhid: USB HID core driver\n[    2.941714] ashmem: initialized\n[    2.941978] wlan: Loading driver v5.1.1.76C ()\n[    2.942305] qpnp_coincell_charger_show_state: enabled=N, voltage=3200 mV, resistance=2100 ohm\n[    2.945907] mmc0: SDHCI controller on c0c4000.sdhci [c0c4000.sdhci] using 64-bit ADMA in CMDQ mode\n[    2.947672] wlan_hdd_state wlan major(227) initialized\n[    2.947676] wlan: driver loaded\n[    3.011762] mmc0: Out-of-interrupt timeout is 100[ms]\n[    3.011769] mmc0: eMMC FW version: 0x04\n[    3.011771] mmc0: CMDQ supported: depth: 32\n[    3.011775] mmc0: cache barrier support 1 flush policy 1\n[    3.017950] cmdq_host_alloc_tdl: desc_size: 1024 data_sz: 63488 slot-sz: 32\n[    3.018172] mmc0: CMDQ enabled on card\n[    3.018185] mmc0: new HS400 Enhanced strobe MMC card at address 0001\n[    3.019761] mmcblk0: mmc0:0001 S0J9K8 58.2 GiB \n[    3.020921] mmcblk0rpmb: mmc0:0001 S0J9K8 partition 3 16.0 MiB\n[    3.022890]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42 p43 p44 p45 p46 p47 p48 p49 p50 p51 p52 p53 p54 p55 p56 p57 p58 p59 p60 p61 p62 p63 p64 p65 p66\n[    3.029303] sdhci_msm c084000.sdhci: sdhci_msm_probe: ICE device is not enabled\n[    3.029726] sdhci_msm c084000.sdhci: sdhci_msm_pm_qos_parse_latency: invalid number of values for property qcom,pm-qos-legacy-latency-us: expected=2 actual=4\n[    3.029733] sdhci_msm c084000.sdhci: sdhci_msm_pm_qos_parse: invalid PM QoS latency values. Voting for cpu group will be disabled\n[    3.043729] sdhci_msm c084000.sdhci: No vmmc regulator found\n[    3.043734] sdhci_msm c084000.sdhci: No vqmmc regulator found\n[    3.044077] mmc1: SDHCI controller on c084000.sdhci [c084000.sdhci] using 64-bit ADMA in legacy mode\n[    3.073636] bimc-bwmon 1008000.qcom,cpu-bwmon: BW HWmon governor registered.\n[    3.075025] arm-memlat-mon soc:qcom,arm-memlat-mon-0: Memory Latency governor registered.\n[    3.075070] arm-memlat-mon soc:qcom,arm-memlat-mon-4: Memory Latency governor registered.\n[    3.081045] devfreq soc:qcom,cpubw: Couldn't update frequency transition information.\n[    3.081162] devfreq soc:qcom,mincpubw: Couldn't update frequency transition information.\n[    3.081265] devfreq soc:qcom,memlat-cpu0: Couldn't update frequency transition information.\n[    3.081365] devfreq soc:qcom,memlat-cpu4: Couldn't update frequency transition information.\n[    3.084686] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    3.087032] usbcore: registered new interface driver snd-usb-audio\n[    3.094801] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.095368] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.110373] i2c-msm-v2 c1b6000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:1 tx:2) mode:FIFO slv_addr:0x3a MSTR_STS:0x0d1300c8 OPER:0x00000010\n[    3.110405] reading version=0 - retry(0)\n[    3.130385] This is max98937! device version 0x43\n[    3.139486] max98927 register codec ok.\n[    3.150504] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx group_id: 0x9100\n[    3.150730] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0 dev_id: 0x9000\n[    3.150742] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.150766] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx group_id: 0x9101\n[    3.150941] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0 dev_id: 0x9001\n[    3.150951] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.150972] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx group_id: 0x9110\n[    3.151135] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0 dev_id: 0x9010\n[    3.151143] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.151164] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx group_id: 0x9111\n[    3.151324] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0 dev_id: 0x9011\n[    3.151333] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.151356] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx group_id: 0x9120\n[    3.151515] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0 dev_id: 0x9020\n[    3.151524] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.151546] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx group_id: 0x9121\n[    3.151704] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0 dev_id: 0x9021\n[    3.151713] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.151733] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx group_id: 0x9130\n[    3.151889] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0 dev_id: 0x9030\n[    3.151897] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.151919] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx group_id: 0x9131\n[    3.152077] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0 dev_id: 0x9031\n[    3.152087] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.159707] pri_i2s_gpio_init:enter.\n[    3.160107] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.165867] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.166219] GACT probability NOT on\n[    3.166231] Mirror/redirect action on\n[    3.166253] u32 classifier\n[    3.166255]     Actions configured\n[    3.166281] Netfilter messages via NETLINK v0.30.\n[    3.166315] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    3.166516] ctnetlink v0.93: registering with nfnetlink.\n[    3.166975] xt_time: kernel timezone is -0000\n[    3.167018] wireguard: WireGuard 1.0.20200520 loaded. See www.wireguard.com for information.\n[    3.167021] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    3.167095] IPv4 over IPsec tunneling driver\n[    3.167414] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    3.167563] arp_tables: (C) 2002 David S. Miller\n[    3.167609] Initializing XFRM netlink socket\n[    3.167835] NET: Registered protocol family 10\n[    3.169461] mip6: Mobile IPv6\n[    3.169473] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    3.169806] sit: IPv6 over IPv4 tunneling driver\n[    3.170464] NET: Registered protocol family 17\n[    3.170478] NET: Registered protocol family 15\n[    3.170504] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.\n[    3.170520] Bridge firewalling registered\n[    3.170527] Ebtables v2.0 registered\n[    3.170609] l2tp_core: L2TP core driver, V2.0\n[    3.170620] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    3.170625] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    3.170640] l2tp_netlink: L2TP netlink interface\n[    3.170661] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    3.170666] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    3.171703] NET: Registered protocol family 27\n[    3.175809] mdss_dp_usbpd_setup: get_usbpd phandle failed (-517)\n[    3.175815] mdss_dp_probe: Error usbpd setup!\n[    3.176546] subsys-pil-tz 15700000.qcom,lpass: for adsp segments only will be dumped.\n[    3.178133] subsys-pil-tz 1a300000.qcom,turing: for cdsp segments only will be dumped.\n[    3.178765] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    3.179206] platform 4080000.qcom,mss:qcom,mba-mem@0: assigned reserved memory node pil_mba_region@94800000\n[    3.184137] sps:BAM 0x000000000a904000 is registered.\n[    3.184690] Invalid index Defaulting curr to 0\n[    3.192790] thermal thermal_zone25: failed to read out thermal zone (-19)\n[    3.194645] FG: fg_gen3_probe: battery SOC:55 voltage: 3774892uV temp: 280 id: 0KOhms\n[    3.195600] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.195775] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.196763] pri_i2s_gpio_init:enter.\n[    3.197127] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.200266] FG: fg_psy_get_property: unsupported property 4\n[    3.200696] lct battery_capacity =55\n[    3.203937] FG: fg_get_time_to_full_locked: battery profile is not loaded\n[    3.206671] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.210284] mdss_dp_parse_gpio_params: 970,hpd gpio not specified\n[    3.210612] mdss_register_panel: adding framebuffer device c990000.qcom,dp_ctrl\n[    3.211059] mdss_dp_device_register: dp initialized\n[    3.211063] hdmi_edid_config_override: invalid input\n[    3.215782] sps:BAM 0x000000000a904000 is registered.\n[    3.216867] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.217040] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.218409] pri_i2s_gpio_init:enter.\n[    3.218812] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.224663] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.224803] mdss_fb_probe: fb2: split_mode:0 left:0 right:0\n[    3.224957] mdss_fb_register: FrameBuffer[2] 640x480 registered successfully!\n[    3.227513] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    3.227937] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.228068] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.228853] pri_i2s_gpio_init:enter.\n[    3.229210] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.235076] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.235519] Registered cp15_barrier emulation handler\n[    3.235530] Registered setend emulation handler\n[    3.235834] registered taskstats version 1\n[    3.236253] Key type encrypted registered\n[    3.238041] spss_utils [spss_init]: spss-utils driver Ver 1.2 13-Jan-2017.\n[    3.240655] fastrpc soc:qcom,msm-adsprpc-mem: for adsp_rh segments only will be dumped.\n[    3.240739] ADSPRPC: gcinfo[0].heap_vmid 33\n[    3.240946] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 19\n[    3.241826] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 20\n[    3.242396] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 21\n[    3.242898] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 22\n[    3.243398] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 23\n[    3.244483] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 24\n[    3.244985] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7 to group 25\n[    3.245482] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8 to group 26\n[    3.245976] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 27\n[    3.246465] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 28\n[    3.246971] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 29\n[    3.247458] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 30\n[    3.247948] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13 to group 31\n[    3.249636] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.249768] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.250835] pri_i2s_gpio_init:enter.\n[    3.251196] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.256972] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.259270] RNDIS_IPA module is loaded.\n[    3.260543] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.260677] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.261444] pri_i2s_gpio_init:enter.\n[    3.261800] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.267553] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.268264] input: gpio-keys as /devices/soc/soc:gpio_keys/input/input4\n[    3.268736] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.268867] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.269619] pri_i2s_gpio_init:enter.\n[    3.270947] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.276875] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.277141] qcom,qpnp-rtc 800f000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: setting system clock to 1971-05-10 06:57:03 UTC (42706623)\n[    3.278796] lct battery_capacity =55\n[    3.280626] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.280762] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.281729] pri_i2s_gpio_init:enter.\n[    3.282094] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.287798] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.289223] lmh_lite:lmh_parse_sensor Registering sensor:[GLM_soc]\n[    3.289433] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_cp1-]\n[    3.289542] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_cp0-]\n[    3.289710] soc:qcom,lmh supply vdd-apss not found, using dummy regulator\n[    3.289748] lmh_lite:lmh_get_sensor_devicetree Error getting ODCM thresh. err:-22\n[    3.291550] calculate_residency: residency < 0 for LPM\n[    3.291555] parse_cpu_levels: idx 1 172\n[    3.291557] parse_cpu_levels: idx 2 1181\n[    3.291560] parse_cpu_levels: idx 2 2009\n[    3.291565] calculate_residency: residency < 0 for LPM\n[    3.291640] parse_cpu_levels: idx 1 191\n[    3.291643] parse_cpu_levels: idx 2 1109\n[    3.291646] parse_cpu_levels: idx 2 2410\n[    3.291652] calculate_residency: residency < 0 for LPM\n[    3.294476] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.294616] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.295616] pri_i2s_gpio_init:enter.\n[    3.295978] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.302855] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.304445] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.304582] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.305437] pri_i2s_gpio_init:enter.\n[    3.305798] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.310911] ipa-wan ipa_wwan_init:3286 Registering for q6_cleanup_cb\n[    3.310920] ipa register_ipa_platform_cb:2210 In register_ipa_platform_cb\n[    3.310926] ipa register_ipa_platform_cb:2213 reg q6_cleanup_cb\n[    3.311239] rmnet_ipa started initialization\n[    3.311244] IPA SSR support = True\n[    3.311246] IPA ipa-loaduC = True\n[    3.311249] IPA SG support = True\n[    3.311251] IPA Napi Enable = False\n[    3.311255] using default for wan-rx-desc-size = 1024\n[    3.313357] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.320695] ipa ipa_sps_irq_control_all:963 EP (5) not allocated.\n[    3.320702] ipa ipa2_uc_state_check:301 uC is not loaded\n[    3.322245] rmnet_ipa completed initialization\n[    3.322796] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.322933] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.323980] pri_i2s_gpio_init:enter.\n[    3.324346] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.331101] msm-dwc3 a800000.ssusb: DWC3 exited from low power mode\n[    3.332539] msm-dwc3 a800000.ssusb: DWC3 in low power mode\n[    3.340124] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.344324] gfx_mem_acc_corner: disabling\n[    3.344393] apc0_pwrcl_corner: disabling\n[    3.344397] apc1_perfcl_corner: disabling\n[    3.344401] cam_avdd_gpio_regulator: disabling\n[    3.344404] cam_rear_avdd_gpio_regulator: disabling\n[    3.344408] cam_dvdd_gpio_regulator: disabling\n[    3.344411] cam_rear_dvdd_gpio_regulator: disabling\n[    3.344421] gdsc_ufs: disabling\n[    3.344441] gdsc_venus: disabling\n[    3.344481] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    3.346680] ALSA device list:\n[    3.346702]   No soundcards found.\n[    3.346780] Warning: unable to open an initial console.\n[    3.348516] Freeing unused kernel memory: 8192K\n[    3.580682] of_batterydata_get_best_profile: sunxing detect No battery data configed,add default\n[    3.580697] of_batterydata_get_best_profile: use unknown battery data\n[    3.580701] FG: fg_get_batt_profile: sunxing get global set fastchg  2.3A\n[    3.584977] FG: is_profile_load_required: Profiles doesn't match, skipping loading it since force_load_profile is disabled\n[    3.841023] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    3.841033] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    4.354661] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: cpu1 cpu4 \n               Offline CPUs: cpu1 \n[    4.370584] IRQ73 no longer affine to CPU1\n[    4.371699] cpu2 cpu3 \n[    4.412882] IRQ5 no longer affine to CPU3\n[    4.415352] cpu4 cpu5 cpu6 cpu7 \n[    4.493385] IRQ5 no longer affine to CPU7\n\n[    9.502286] Sampling power every 1000 ms\n               Baseline power usage: \n[   15.281146] [NVT-ts] Boot_Update_Firmware 1026: firmware version is tianma. \n[   15.281165] [NVT-ts] update_firmware_request 59: filename is novatek/tianma_nt36672a_miui_f7a.bin\n[   15.351195] [NVT-ts] Resume_PD 199: Resume PD OK\n[   15.532280] [NVT-ts] Check_CheckSum 304: firmware checksum match\n[   15.581334] [NVT-ts] Init_BootLoader 358: Init OK \n[   15.650260] [NVT-ts] Resume_PD 199: Resume PD OK\n[   15.731375] [NVT-ts] nvt_check_flash_end_flag 991: nvt_end_flag=NVT (4E 56 54)\n[   15.803450] [NVT-ts] nvt_read_pid 479: PID=5911\n[   84.612973] CPU1: Booted secondary processor [51af8014]\n[   85.618955] 1130 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 633 902 1113 1401 1536 1747 1843\n               \n                633:  2058     3.2 C/MHz     48 mW    5.9 J   42.6 I/mJ   121.5 s\n                902:  2930     3.2 C/MHz     72 mW    6.2 J   40.6 I/mJ    85.3 s\n               1113: \n[  363.328877] lct battery_capacity =55\n[  363.329010] lct battery_capacity =55\n[  388.509094]  3616     3.2 C/MHz     79 mW    5.4 J   46.0 I/mJ    69.1 s\n               1401:  4551     3.2 C/MHz    125 mW    6.9 J   36.3 I/mJ    54.9 s\n               1536: \n[  497.292116] FG: fg_delta_msoc_irq_handler: lct battery SOC:54 voltage:3787832uV current:334472uA temp:250 id:100K charge_status:2 charge_type:1 health:1 input_present:0 \n[  497.292220] lct battery_capacity =54\n[  497.292338] lct battery_capacity =54\n[  510.903698]  4988     3.2 C/MHz    134 mW    6.7 J   37.1 I/mJ    50.1 s\n               1747:  5674     3.2 C/MHz    179 mW    7.9 J   31.7 I/mJ    44.1 s\n               1843: \n[  613.284687] CPU4: Booted secondary processor [51af8002]\n[  614.291136]  5986     3.2 C/MHz    228 mW    9.5 J   26.3 I/mJ    41.8 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 1113 1401 1747 1958 2150 2208\n               \n               1113:  5825     5.2 C/MHz    220 mW    9.4 J   26.5 I/mJ    42.9 s\n               1401:  7324     5.2 C/MHz    317 mW   10.8 J   23.1 I/mJ    34.1 s\n               1747:  9135     5.2 C/MHz    474 mW   13.0 J   19.2 I/mJ    27.4 s\n               1958: \n[  751.865504] FG: fg_delta_msoc_irq_handler: lct battery SOC:54 voltage:3787832uV current:298827uA temp:250 id:100K charge_status:2 charge_type:1 health:1 input_present:0 \n[  751.865651] lct battery_capacity =54\n[  751.865812] lct battery_capacity =54\n[  778.125680] 10247     5.2 C/MHz    578 mW   14.1 J   17.7 I/mJ    24.4 s\n               2150: 11246     5.2 C/MHz    694 mW   15.4 J   16.2 I/mJ    22.2 s\n               2208: 11551     5.2 C/MHz    736 mW   15.9 J   15.7 I/mJ    21.7 s\n               \n               \n               Benchmark finished!\n[  839.556915] \n               real\t13m56.109s\n               user\t10m41.200s\n               sys\t0m0.133s\n"
  },
  {
    "path": "results/sdm660/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  3:       1779     GICv3  19 Edge      arch_timer\n  5:      85223     GICv3  39 Level     arch_mem_timer\n  6:          0     GICv3 483 Edge      smp2p\n  7:          0     GICv3 190 Edge      smp2p\n  8:          0     GICv3 546 Edge      smp2p\n 10:        116     GICv3 270 Level     sps\n 11:          0     GICv3 271 Level     sps\n 13:          0  pmic_arb 8388612 Edge      qpnp_kpdpwr_status\n 14:          0  pmic_arb 8454148 Edge      qpnp_resin_status\n 16:          0  pmic_arb 8716292 Edge      qpnp_kpdpwr_resin_bark\n 17:          0  pmic_arb 24117262 Edge      sig-tx\n 18:          0  pmic_arb 24182798 Edge      sig-rx\n 19:          0  pmic_arb 37748755 Edge      pm660_tz\n 20:          0  pmic_arb 24248334 Edge      msg-tx\n 21:          0  pmic_arb 24313870 Edge      msg-rx\n 22:          8  pmic_arb 51380246 Edge      qpnp_vadc_interrupt\n 23:          0  pmic_arb 24379406 Edge      msg-tx-failed\n 24:          0  pmic_arb 24444942 Edge      msg-tx-discarded\n 25:          0  pmic_arb 24510478 Edge      msg-rx-discarded\n 26:          0  pmic_arb 54525976 Edge      qpnp_adc_tm_interrupt\n 27:          0  pmic_arb 574619709 Edge      pm660l_tz\n 28:          0  pmic_arb 1026752561 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 29:          0  pmic_arb 1052835884 Edge      qpnp_lcdb_sc_irq\n 32:          0  pmic_arb 69206048 Edge      bcl_ibat_interrupt\n 33:          0  pmic_arb 69337120 Edge      bcl_vbat_interrupt\n 34:          1  pmic_arb 1031864372 Edge      qpnp_wled_ovp_irq\n 35:          0  pmic_arb 1026555953 Edge      qpnp_flash_led_fault_irq\n 36:          0  pmic_arb 1026818097 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 45:          0     GICv3  35 Edge      apps_wdog_bark\n 47:          0     GICv3 216 Level     tsens_interrupt\n 48:          0     GICv3 462 Level     tsens_critical_interrupt\n 50:          0     GICv3 166 Level     lmh-interrupt\n 51:          0     GICv3 323 Level     ngd_slim_irq\n 62:          0     GICv3  67 Edge      OSM IRQ\n 63:          0  pmic_arb 469762111 Edge      qpnp_hap_sc\n 64:          0  pmic_arb 469827647 Edge      qpnp_hap_play\n 65:          0     GICv3  68 Edge      OSM IRQ\n 66:         85     GICv3 142 Edge      mmc0\n 67:          4     GICv3 144 Edge      c0c4000.sdhci\n 68:         13     GICv3 157 Edge      mmc1\n 69:          2     GICv3 253 Edge      c084000.sdhci\n 70:          0     GICv3 365 Edge      ipa\n 71:         18     GICv3 464 Level     sps\n 72:          0     GICv3 484 Edge      qcom,glink-smem-native-xprt-modem\n 73:          0     GICv3 189 Edge      qcom,glink-smem-native-xprt-adsp\n 74:          0     GICv3 545 Edge      qcom,glink-smem-native-xprt-cdsp\n 75:        271     GICv3 200 Edge      qcom,glink-smem-native-xprt-rpm\n 88:          0     GICv3 194 Edge      adsp\n 89:          0     GICv3 550 Edge      cdsp\n 90:          0     GICv3 480 Edge      modem\n 93:          0     GICv3 238 Level     sps\n 95:          0     GICv3 224 Edge      spdm_bw_hyp\n 96:          0     GICv3 317 Edge      cpr3\n 97:          0     GICv3 332 Level     kgsl-3d0\n 98:          0     GICv3 203 Edge      7781b8.qcom,mpm\n 99:          0     GICv3 261 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n100:          0     GICv3 263 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n101:          0     GICv3 405 Level     arm-smmu-context-fault\n102:          0     GICv3 406 Edge      arm-smmu-context-fault\n103:          0     GICv3 407 Edge      arm-smmu-context-fault\n130:          0     GICv3 258 Level     arm-smmu-context-fault\n131:          0     GICv3 425 Level     arm-smmu-context-fault\n132:          0     GICv3 426 Level     arm-smmu-context-fault\n133:          0     GICv3 427 Level     arm-smmu-context-fault\n134:          0     GICv3 428 Level     arm-smmu-context-fault\n148:          0     GICv3 298 Level     arm-smmu-context-fault\n149:          0     GICv3 299 Level     arm-smmu-context-fault\n150:          0     GICv3 300 Level     arm-smmu-context-fault\n151:          0     GICv3 276 Level     arm-smmu-context-fault\n179:          0     GICv3 565 Level     arm-smmu-context-fault\n180:          0     GICv3 566 Level     arm-smmu-context-fault\n181:          0     GICv3 567 Level     arm-smmu-context-fault\n182:          0     GICv3 568 Level     arm-smmu-context-fault\n183:          0     GICv3 569 Level     arm-smmu-context-fault\n184:          0     GICv3 570 Level     arm-smmu-context-fault\n185:          0     GICv3 571 Level     arm-smmu-context-fault\n186:          0     GICv3 572 Level     arm-smmu-context-fault\n187:          0     GICv3 573 Level     arm-smmu-context-fault\n196:          0     GICv3 379 Edge      hs_phy_irq\n197:          0     GICv3 275 Level     ss_phy_irq\n198:          0     GICv3 212 Edge      msm_dwc3\n254:          0   msmgpio  54 Edge      c084000.sdhci cd\n264:          0   msmgpio  64 Edge      camera_focus\n267:        116   msmgpio  67 Edge      NVT-ts\n274:          0   msmgpio  74 Edge      ant-switch-irq\n313:          0   msmgpio 113 Edge      camera_snapshot\n314:         94     GICv3 127 Level     i2c-msm-v2-irq\n315:         68     GICv3 134 Level     i2c-msm-v2-irq\n316:          0     GICv3 135 Level     c1b7000.spi\n318:          0     GICv3 110 Edge      csiphy\n319:          0     GICv3 111 Edge      csiphy\n320:          0     GICv3 112 Edge      csiphy\n321:          0     GICv3 328 Edge      csid\n322:          0     GICv3 329 Edge      csid\n323:          0     GICv3 330 Edge      csid\n324:          0     GICv3 331 Edge      csid\n326:          0     GICv3 341 Edge      ispif\n327:          0     GICv3 346 Edge      vfe\n328:          0     GICv3 347 Edge      vfe\n329:        148     GICv3 327 Edge      cci\n332:          0     GICv3 319 Level     msm_vidc\n334:          0     GICv3 115 Edge      MDSS\n335:          0     GICv3  69 Level     limits_sensor-00\n336:          0     GICv3  70 Level     limits_sensor-01\n465:          0  pmic_arb 101777459 Edge      qpnp_rtc_alarm\n466:          0      mdss   2 Edge      sde_rotator_r3\n467:          0  pmic_arb 16777223 Edge      chg-error\n468:          0  pmic_arb 16842759 Edge      chg-state-change\n472:          0  pmic_arb 17825800 Edge      otg-fail\n473:          0  pmic_arb 17891336 Edge      otg-overcurrent\n474:          0  pmic_arb 17956872 Edge      otg-oc-dis-sw-sts\n475:          0  pmic_arb 18022408 Edge      testmode-change-detect\n476:          0  pmic_arb 18874377 Edge      bat-temp\n477:          0  pmic_arb 18939913 Edge      bat-ocp\n478:          0  pmic_arb 19005449 Edge      bat-ov\n479:          0  pmic_arb 19070985 Edge      bat-low\n480:          0  pmic_arb 19136521 Edge      bat-therm-or-id-missing\n481:          0  pmic_arb 19202057 Edge      bat-terminal-missing\n482:          0  pmic_arb 19922954 Edge      usbin-collapse\n483:          0  pmic_arb 19988490 Edge      usbin-lt-3p6v\n484:          0  pmic_arb 20054026 Edge      usbin-uv\n485:          0  pmic_arb 20119562 Edge      usbin-ov\n486:          0  pmic_arb 20185098 Edge      usbin-plugin\n487:          0  pmic_arb 20250634 Edge      usbin-src-change\n488:          0  pmic_arb 20316170 Edge      usbin-icl-change\n489:          0  pmic_arb 20381706 Edge      type-c-change\n490:          0  pmic_arb 20971531 Edge      dcin-collapse\n491:          0  pmic_arb 21037067 Edge      dcin-lt-3p6v\n492:          0  pmic_arb 21102603 Edge      dcin-uv\n493:          0  pmic_arb 21168139 Edge      dcin-ov\n494:          0  pmic_arb 21233675 Edge      dcin-plugin\n495:          0  pmic_arb 21299211 Edge      div2-en-dg\n496:          0  pmic_arb 21364747 Edge      dcin-icl-change\n498:          0  pmic_arb 23134221 Edge      wdog-bark\n499:          0  pmic_arb 23199757 Edge      aicl-fail\n500:          0  pmic_arb 23265293 Edge      aicl-done\n501:          0  pmic_arb 23330829 Edge      high-duty-cycle\n502:          0  pmic_arb 23396365 Edge      input-current-limiting\n503:          0  pmic_arb 23461901 Edge      temperature-change\n504:          0  pmic_arb 23527437 Edge      switcher-power-ok\n505:          0  smp2p_gpio   0 Edge      modem\n506:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n507:          0  smp2p_gpio   2 Edge      modem\n508:          0  smp2p_gpio   3 Edge      modem\n537:          0  smp2p_gpio   0 Edge      adsp\n538:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n539:          0  smp2p_gpio   2 Edge      adsp\n540:          0  smp2p_gpio   3 Edge      adsp\n569:          0  smp2p_gpio   0 Edge      cdsp\n570:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n571:          0  smp2p_gpio   2 Edge      cdsp\n572:          0  smp2p_gpio   3 Edge      cdsp\n697:          0     GICv3 163 Edge      dwc3\n699:          0  pmic_arb 67108894 Edge      soc-update\n700:          0  pmic_arb 67174430 Edge      soc-ready\n701:          0  pmic_arb 67239966 Edge      bsoc-delta\n702:          2  pmic_arb 67305502 Edge      msoc-delta\n703:          0  pmic_arb 67371038 Edge      msoc-low\n704:          0  pmic_arb 67436574 Edge      msoc-empty\n705:          0  pmic_arb 67502110 Edge      msoc-high\n706:          0  pmic_arb 67567646 Edge      msoc-full\n707:          0  pmic_arb 68157471 Edge      vbatt-pred-delta\n708:          0  pmic_arb 68223007 Edge      vbatt-low\n709:          0  pmic_arb 68288543 Edge      esr-delta\n710:          0  pmic_arb 68354079 Edge      batt-missing\n711:          2  pmic_arb 68550687 Edge      batt-temp-delta\n712:        165  pmic_arb 71303202 Edge      ima-rdy\n713:          0  pmic_arb 71368738 Edge      mem-xcp\n714:          0  pmic_arb 71434274 Edge      dma-grant\n715:          0  pmic_arb 744489127 Edge      volume_up\nIPI0:        77       Rescheduling interrupts\nIPI1:         0       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:        16       Timer broadcast interrupts\nIPI4:         0       IRQ work interrupts\nIPI5:         0       CPU wakeup interrupts\nIPI6:         0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm660/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  3:        958         26         26         26         26         26         25         25     GICv3  19 Edge      arch_timer\n  5:          6          0          0          0          0          0          0          0     GICv3  39 Level     arch_mem_timer\n  6:          0          0          0          0          0          0          0          0     GICv3 483 Edge      smp2p\n  7:          0          0          0          0          0          0          0          0     GICv3 190 Edge      smp2p\n  8:          0          0          0          0          0          0          0          0     GICv3 546 Edge      smp2p\n 10:          1          0          0          0          0          0          0          0     GICv3 270 Level     sps\n 11:          0          0          0          0          0          0          0          0     GICv3 271 Level     sps\n 13:          0          0          0          0          0          0          0          0  pmic_arb 8388612 Edge      qpnp_kpdpwr_status\n 14:          0          0          0          0          0          0          0          0  pmic_arb 8454148 Edge      qpnp_resin_status\n 16:          0          0          0          0          0          0          0          0  pmic_arb 8716292 Edge      qpnp_kpdpwr_resin_bark\n 17:          0          0          0          0          0          0          0          0  pmic_arb 24117262 Edge      sig-tx\n 18:          0          0          0          0          0          0          0          0  pmic_arb 24182798 Edge      sig-rx\n 19:          0          0          0          0          0          0          0          0  pmic_arb 37748755 Edge      pm660_tz\n 20:          0          0          0          0          0          0          0          0  pmic_arb 24248334 Edge      msg-tx\n 21:          0          0          0          0          0          0          0          0  pmic_arb 24313870 Edge      msg-rx\n 22:          8          0          0          0          0          0          0          0  pmic_arb 51380246 Edge      qpnp_vadc_interrupt\n 23:          0          0          0          0          0          0          0          0  pmic_arb 24379406 Edge      msg-tx-failed\n 24:          0          0          0          0          0          0          0          0  pmic_arb 24444942 Edge      msg-tx-discarded\n 25:          0          0          0          0          0          0          0          0  pmic_arb 24510478 Edge      msg-rx-discarded\n 26:          0          0          0          0          0          0          0          0  pmic_arb 54525976 Edge      qpnp_adc_tm_interrupt\n 27:          0          0          0          0          0          0          0          0  pmic_arb 574619709 Edge      pm660l_tz\n 28:          0          0          0          0          0          0          0          0  pmic_arb 1026752561 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 29:          0          0          0          0          0          0          0          0  pmic_arb 1052835884 Edge      qpnp_lcdb_sc_irq\n 32:          0          0          0          0          0          0          0          0  pmic_arb 69206048 Edge      bcl_ibat_interrupt\n 33:          0          0          0          0          0          0          0          0  pmic_arb 69337120 Edge      bcl_vbat_interrupt\n 34:          1          0          0          0          0          0          0          0  pmic_arb 1031864372 Edge      qpnp_wled_ovp_irq\n 35:          0          0          0          0          0          0          0          0  pmic_arb 1026555953 Edge      qpnp_flash_led_fault_irq\n 36:          0          0          0          0          0          0          0          0  pmic_arb 1026818097 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 45:          0          0          0          0          0          0          0          0     GICv3  35 Edge      apps_wdog_bark\n 47:          0          0          0          0          0          0          0          0     GICv3 216 Level     tsens_interrupt\n 48:          0          0          0          0          0          0          0          0     GICv3 462 Level     tsens_critical_interrupt\n 50:          0          0          0          0          0          0          0          0     GICv3 166 Level     lmh-interrupt\n 51:          0          0          0          0          0          0          0          0     GICv3 323 Level     ngd_slim_irq\n 62:          0          0          0          0          0          0          0          0     GICv3  67 Edge      OSM IRQ\n 63:          0          0          0          0          0          0          0          0  pmic_arb 469762111 Edge      qpnp_hap_sc\n 64:          0          0          0          0          0          0          0          0  pmic_arb 469827647 Edge      qpnp_hap_play\n 65:          0          0          0          0          0          0          0          0     GICv3  68 Edge      OSM IRQ\n 66:         74          0          0          0          0          0          0          0     GICv3 142 Edge      mmc0\n 67:          3          0          0          0          0          0          0          0     GICv3 144 Edge      c0c4000.sdhci\n 68:         13          0          0          0          0          0          0          0     GICv3 157 Edge      mmc1\n 69:          2          0          0          0          0          0          0          0     GICv3 253 Edge      c084000.sdhci\n 70:          0          0          0          0          0          0          0          0     GICv3 365 Edge      ipa\n 71:         18          0          0          0          0          0          0          0     GICv3 464 Level     sps\n 72:          0          0          0          0          0          0          0          0     GICv3 484 Edge      qcom,glink-smem-native-xprt-modem\n 73:          0          0          0          0          0          0          0          0     GICv3 189 Edge      qcom,glink-smem-native-xprt-adsp\n 74:          0          0          0          0          0          0          0          0     GICv3 545 Edge      qcom,glink-smem-native-xprt-cdsp\n 75:        239          0          0          0          0          0          0          0     GICv3 200 Edge      qcom,glink-smem-native-xprt-rpm\n 88:          0          0          0          0          0          0          0          0     GICv3 194 Edge      adsp\n 89:          0          0          0          0          0          0          0          0     GICv3 550 Edge      cdsp\n 90:          0          0          0          0          0          0          0          0     GICv3 480 Edge      modem\n 93:          0          0          0          0          0          0          0          0     GICv3 238 Level     sps\n 95:          0          0          0          0          0          0          0          0     GICv3 224 Edge      spdm_bw_hyp\n 96:          0          0          0          0          0          0          0          0     GICv3 317 Edge      cpr3\n 97:          0          0          0          0          0          0          0          0     GICv3 332 Level     kgsl-3d0\n 98:          0          0          0          0          0          0          0          0     GICv3 203 Edge      7781b8.qcom,mpm\n 99:          0          0          0          0          0          0          0          0     GICv3 261 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n100:          0          0          0          0          0          0          0          0     GICv3 263 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n101:          0          0          0          0          0          0          0          0     GICv3 405 Level     arm-smmu-context-fault\n102:          0          0          0          0          0          0          0          0     GICv3 406 Edge      arm-smmu-context-fault\n103:          0          0          0          0          0          0          0          0     GICv3 407 Edge      arm-smmu-context-fault\n130:          0          0          0          0          0          0          0          0     GICv3 258 Level     arm-smmu-context-fault\n131:          0          0          0          0          0          0          0          0     GICv3 425 Level     arm-smmu-context-fault\n132:          0          0          0          0          0          0          0          0     GICv3 426 Level     arm-smmu-context-fault\n133:          0          0          0          0          0          0          0          0     GICv3 427 Level     arm-smmu-context-fault\n134:          0          0          0          0          0          0          0          0     GICv3 428 Level     arm-smmu-context-fault\n148:          0          0          0          0          0          0          0          0     GICv3 298 Level     arm-smmu-context-fault\n149:          0          0          0          0          0          0          0          0     GICv3 299 Level     arm-smmu-context-fault\n150:          0          0          0          0          0          0          0          0     GICv3 300 Level     arm-smmu-context-fault\n151:          0          0          0          0          0          0          0          0     GICv3 276 Level     arm-smmu-context-fault\n179:          0          0          0          0          0          0          0          0     GICv3 565 Level     arm-smmu-context-fault\n180:          0          0          0          0          0          0          0          0     GICv3 566 Level     arm-smmu-context-fault\n181:          0          0          0          0          0          0          0          0     GICv3 567 Level     arm-smmu-context-fault\n182:          0          0          0          0          0          0          0          0     GICv3 568 Level     arm-smmu-context-fault\n183:          0          0          0          0          0          0          0          0     GICv3 569 Level     arm-smmu-context-fault\n184:          0          0          0          0          0          0          0          0     GICv3 570 Level     arm-smmu-context-fault\n185:          0          0          0          0          0          0          0          0     GICv3 571 Level     arm-smmu-context-fault\n186:          0          0          0          0          0          0          0          0     GICv3 572 Level     arm-smmu-context-fault\n187:          0          0          0          0          0          0          0          0     GICv3 573 Level     arm-smmu-context-fault\n196:          0          0          0          0          0          0          0          0     GICv3 379 Edge      hs_phy_irq\n197:          0          0          0          0          0          0          0          0     GICv3 275 Level     ss_phy_irq\n198:          0          0          0          0          0          0          0          0     GICv3 212 Edge      msm_dwc3\n254:          0          0          0          0          0          0          0          0   msmgpio  54 Edge      c084000.sdhci cd\n264:          0          0          0          0          0          0          0          0   msmgpio  64 Edge      camera_focus\n267:          1          0          0          0          0          0          0          0   msmgpio  67 Edge      NVT-ts\n274:          0          0          0          0          0          0          0          0   msmgpio  74 Edge      ant-switch-irq\n313:          0          0          0          0          0          0          0          0   msmgpio 113 Edge      camera_snapshot\n314:         62          0          0          0          0          0          0          0     GICv3 127 Level     i2c-msm-v2-irq\n315:         68          0          0          0          0          0          0          0     GICv3 134 Level     i2c-msm-v2-irq\n316:          0          0          0          0          0          0          0          0     GICv3 135 Level     c1b7000.spi\n318:          0          0          0          0          0          0          0          0     GICv3 110 Edge      csiphy\n319:          0          0          0          0          0          0          0          0     GICv3 111 Edge      csiphy\n320:          0          0          0          0          0          0          0          0     GICv3 112 Edge      csiphy\n321:          0          0          0          0          0          0          0          0     GICv3 328 Edge      csid\n322:          0          0          0          0          0          0          0          0     GICv3 329 Edge      csid\n323:          0          0          0          0          0          0          0          0     GICv3 330 Edge      csid\n324:          0          0          0          0          0          0          0          0     GICv3 331 Edge      csid\n326:          0          0          0          0          0          0          0          0     GICv3 341 Edge      ispif\n327:          0          0          0          0          0          0          0          0     GICv3 346 Edge      vfe\n328:          0          0          0          0          0          0          0          0     GICv3 347 Edge      vfe\n329:        148          0          0          0          0          0          0          0     GICv3 327 Edge      cci\n332:          0          0          0          0          0          0          0          0     GICv3 319 Level     msm_vidc\n334:          0          0          0          0          0          0          0          0     GICv3 115 Edge      MDSS\n335:          0          0          0          0          0          0          0          0     GICv3  69 Level     limits_sensor-00\n336:          0          0          0          0          0          0          0          0     GICv3  70 Level     limits_sensor-01\n465:          0          0          0          0          0          0          0          0  pmic_arb 101777459 Edge      qpnp_rtc_alarm\n466:          0          0          0          0          0          0          0          0      mdss   2 Edge      sde_rotator_r3\n467:          0          0          0          0          0          0          0          0  pmic_arb 16777223 Edge      chg-error\n468:          0          0          0          0          0          0          0          0  pmic_arb 16842759 Edge      chg-state-change\n472:          0          0          0          0          0          0          0          0  pmic_arb 17825800 Edge      otg-fail\n473:          0          0          0          0          0          0          0          0  pmic_arb 17891336 Edge      otg-overcurrent\n474:          0          0          0          0          0          0          0          0  pmic_arb 17956872 Edge      otg-oc-dis-sw-sts\n475:          0          0          0          0          0          0          0          0  pmic_arb 18022408 Edge      testmode-change-detect\n476:          0          0          0          0          0          0          0          0  pmic_arb 18874377 Edge      bat-temp\n477:          0          0          0          0          0          0          0          0  pmic_arb 18939913 Edge      bat-ocp\n478:          0          0          0          0          0          0          0          0  pmic_arb 19005449 Edge      bat-ov\n479:          0          0          0          0          0          0          0          0  pmic_arb 19070985 Edge      bat-low\n480:          0          0          0          0          0          0          0          0  pmic_arb 19136521 Edge      bat-therm-or-id-missing\n481:          0          0          0          0          0          0          0          0  pmic_arb 19202057 Edge      bat-terminal-missing\n482:          0          0          0          0          0          0          0          0  pmic_arb 19922954 Edge      usbin-collapse\n483:          0          0          0          0          0          0          0          0  pmic_arb 19988490 Edge      usbin-lt-3p6v\n484:          0          0          0          0          0          0          0          0  pmic_arb 20054026 Edge      usbin-uv\n485:          0          0          0          0          0          0          0          0  pmic_arb 20119562 Edge      usbin-ov\n486:          0          0          0          0          0          0          0          0  pmic_arb 20185098 Edge      usbin-plugin\n487:          0          0          0          0          0          0          0          0  pmic_arb 20250634 Edge      usbin-src-change\n488:          0          0          0          0          0          0          0          0  pmic_arb 20316170 Edge      usbin-icl-change\n489:          0          0          0          0          0          0          0          0  pmic_arb 20381706 Edge      type-c-change\n490:          0          0          0          0          0          0          0          0  pmic_arb 20971531 Edge      dcin-collapse\n491:          0          0          0          0          0          0          0          0  pmic_arb 21037067 Edge      dcin-lt-3p6v\n492:          0          0          0          0          0          0          0          0  pmic_arb 21102603 Edge      dcin-uv\n493:          0          0          0          0          0          0          0          0  pmic_arb 21168139 Edge      dcin-ov\n494:          0          0          0          0          0          0          0          0  pmic_arb 21233675 Edge      dcin-plugin\n495:          0          0          0          0          0          0          0          0  pmic_arb 21299211 Edge      div2-en-dg\n496:          0          0          0          0          0          0          0          0  pmic_arb 21364747 Edge      dcin-icl-change\n498:          0          0          0          0          0          0          0          0  pmic_arb 23134221 Edge      wdog-bark\n499:          0          0          0          0          0          0          0          0  pmic_arb 23199757 Edge      aicl-fail\n500:          0          0          0          0          0          0          0          0  pmic_arb 23265293 Edge      aicl-done\n501:          0          0          0          0          0          0          0          0  pmic_arb 23330829 Edge      high-duty-cycle\n502:          0          0          0          0          0          0          0          0  pmic_arb 23396365 Edge      input-current-limiting\n503:          0          0          0          0          0          0          0          0  pmic_arb 23461901 Edge      temperature-change\n504:          0          0          0          0          0          0          0          0  pmic_arb 23527437 Edge      switcher-power-ok\n505:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      modem\n506:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n507:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      modem\n508:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      modem\n537:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      adsp\n538:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n539:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      adsp\n540:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      adsp\n569:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      cdsp\n570:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n571:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      cdsp\n572:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      cdsp\n697:          0          0          0          0          0          0          0          0     GICv3 163 Edge      dwc3\n699:          0          0          0          0          0          0          0          0  pmic_arb 67108894 Edge      soc-update\n700:          0          0          0          0          0          0          0          0  pmic_arb 67174430 Edge      soc-ready\n701:          0          0          0          0          0          0          0          0  pmic_arb 67239966 Edge      bsoc-delta\n702:          0          0          0          0          0          0          0          0  pmic_arb 67305502 Edge      msoc-delta\n703:          0          0          0          0          0          0          0          0  pmic_arb 67371038 Edge      msoc-low\n704:          0          0          0          0          0          0          0          0  pmic_arb 67436574 Edge      msoc-empty\n705:          0          0          0          0          0          0          0          0  pmic_arb 67502110 Edge      msoc-high\n706:          0          0          0          0          0          0          0          0  pmic_arb 67567646 Edge      msoc-full\n707:          0          0          0          0          0          0          0          0  pmic_arb 68157471 Edge      vbatt-pred-delta\n708:          0          0          0          0          0          0          0          0  pmic_arb 68223007 Edge      vbatt-low\n709:          0          0          0          0          0          0          0          0  pmic_arb 68288543 Edge      esr-delta\n710:          0          0          0          0          0          0          0          0  pmic_arb 68354079 Edge      batt-missing\n711:          0          0          0          0          0          0          0          0  pmic_arb 68550687 Edge      batt-temp-delta\n712:         48          0          0          0          0          0          0          0  pmic_arb 71303202 Edge      ima-rdy\n713:          0          0          0          0          0          0          0          0  pmic_arb 71368738 Edge      mem-xcp\n714:          0          0          0          0          0          0          0          0  pmic_arb 71434274 Edge      dma-grant\n715:          0          0          0          0          0          0          0          0  pmic_arb 744489127 Edge      volume_up\nIPI0:         6         72         71         71         71         71         70         69       Rescheduling interrupts\nIPI1:         0          8          8          8          8          8          8          8       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI4:         0          0          0          0          0          0          0          0       IRQ work interrupts\nIPI5:         0          0          0          0          0          0          0          0       CPU wakeup interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm660/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [ksoftirqd/0]\n    5 root      0:00 [kworker/0:0H]\n    6 root      0:01 [kworker/u16:0]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [migration/1]\n   15 root      0:00 [ksoftirqd/1]\n   16 root      0:00 [kworker/1:0]\n   17 root      0:00 [kworker/1:0H]\n   18 root      0:00 [rcuop/1]\n   19 root      0:00 [rcuos/1]\n   20 root      0:00 [rcuob/1]\n   21 root      0:00 [migration/2]\n   22 root      0:00 [ksoftirqd/2]\n   23 root      0:00 [kworker/2:0]\n   24 root      0:00 [kworker/2:0H]\n   25 root      0:00 [rcuop/2]\n   26 root      0:00 [rcuos/2]\n   27 root      0:00 [rcuob/2]\n   28 root      0:00 [migration/3]\n   29 root      0:00 [ksoftirqd/3]\n   30 root      0:00 [kworker/3:0]\n   31 root      0:00 [kworker/3:0H]\n   32 root      0:00 [rcuop/3]\n   33 root      0:00 [rcuos/3]\n   34 root      0:00 [rcuob/3]\n   35 root      0:00 [migration/4]\n   36 root      0:00 [ksoftirqd/4]\n   37 root      0:00 [kworker/4:0]\n   38 root      0:00 [kworker/4:0H]\n   39 root      0:00 [rcuop/4]\n   40 root      0:00 [rcuos/4]\n   41 root      0:00 [rcuob/4]\n   42 root      0:00 [migration/5]\n   43 root      0:00 [ksoftirqd/5]\n   44 root      0:00 [kworker/5:0]\n   45 root      0:00 [kworker/5:0H]\n   46 root      0:00 [rcuop/5]\n   47 root      0:00 [rcuos/5]\n   48 root      0:00 [rcuob/5]\n   49 root      0:00 [migration/6]\n   50 root      0:00 [ksoftirqd/6]\n   51 root      0:00 [kworker/6:0]\n   52 root      0:00 [kworker/6:0H]\n   53 root      0:00 [rcuop/6]\n   54 root      0:00 [rcuos/6]\n   55 root      0:00 [rcuob/6]\n   56 root      0:00 [migration/7]\n   57 root      0:00 [ksoftirqd/7]\n   58 root      0:00 [kworker/7:0]\n   59 root      0:00 [kworker/7:0H]\n   60 root      0:00 [rcuop/7]\n   61 root      0:00 [rcuos/7]\n   62 root      0:00 [rcuob/7]\n   63 root      0:00 [kdevtmpfs]\n   64 root      0:00 [netns]\n   65 root      0:00 [perf]\n   66 root      0:00 [smd_channel_clo]\n   67 root      0:00 [dsps_smd_trans_]\n   68 root      0:00 [lpass_smd_trans]\n   69 root      0:00 [mpss_smd_trans_]\n   70 root      0:00 [wcnss_smd_trans]\n   71 root      0:00 [rpm_smd_trans_g]\n   72 root      0:00 [ipa_usb_wq]\n   73 root      0:00 [msm_watchdog]\n   74 root      0:00 [smem_native_mps]\n   75 root      0:00 [mpss_smem_glink]\n   76 root      0:00 [smem_native_lpa]\n   77 root      0:00 [lpass_smem_glin]\n   78 root      0:00 [smem_native_cds]\n   79 root      0:00 [cdsp_smem_glink]\n   80 root      0:00 [smem_native_rpm]\n   81 root      0:00 [rpm_smem_glink_]\n   82 root      0:00 [kworker/0:1]\n   83 root      0:00 [deferwq]\n   84 root      0:00 [kworker/u16:1]\n   85 root      0:00 [irq/96-cpr3]\n   86 root      0:00 [mpm]\n   87 root      0:01 [kworker/u16:2]\n   88 root      0:00 [writeback]\n   89 root      0:00 [kcompactd0]\n   90 root      0:00 [crypto]\n   91 root      0:00 [bioset]\n   92 root      0:00 [kblockd]\n   93 root      0:00 [md]\n   94 root      0:00 [system]\n   95 root      0:00 [irq/99-arm-smmu]\n   96 root      0:00 [irq/100-arm-smm]\n   97 root      0:00 [irq/99-arm-smmu]\n   98 root      0:00 [irq/100-arm-smm]\n   99 root      0:00 [irq/99-arm-smmu]\n  100 root      0:00 [irq/100-arm-smm]\n  101 root      0:00 [irq/99-arm-smmu]\n  102 root      0:00 [irq/100-arm-smm]\n  103 root      0:00 [irq/99-arm-smmu]\n  104 root      0:00 [irq/100-arm-smm]\n  105 root      0:00 [devfreq_wq]\n  106 root      0:00 [governor_msm_ad]\n  107 root      0:00 [cfg80211]\n  108 root      0:00 [irq/29-qpnp_lcd]\n  109 root      0:00 [irq/101-arm-smm]\n  110 root      0:00 [ipa_power_mgmt]\n  111 root      0:00 [sps_ipa_power_m]\n  112 root      0:00 [kworker/u17:0]\n  113 root      0:00 [ipawq15]\n  114 root      0:00 [iparepwq15]\n  115 root      0:00 [kworker/u17:1]\n  116 root      0:00 [ipawq48]\n  117 root      0:00 [iparepwq48]\n  118 root      0:00 [ipawq14]\n  119 root      0:00 [iparepwq14]\n  120 root      0:00 [ipa_rm_wq]\n  121 root      0:00 [ipa_interrupt_w]\n  122 root      0:00 [ipa_holb_wq]\n  123 root      0:00 [irq/102-arm-smm]\n  124 root      0:00 [irq/33-bcl_vbat]\n  125 root      0:00 [irq/32-bcl_ibat]\n  152 root      0:00 [kswapd0]\n  153 root      0:00 [vmstat]\n  154 root      0:00 [fsnotify_mark]\n  155 root      0:00 [ecryptfs-kthrea]\n  156 root      0:00 [cifsiod]\n  189 root      0:00 [ad_calc_wq]\n  190 root      0:00 [mdss_dsi_event]\n  191 root      0:00 [mdss_dsi_dba]\n  192 root      0:00 [cwb_wq]\n  193 root      0:00 [cwb_wq]\n  194 root      0:00 [glink_ssr_wq]\n  195 root      0:00 [glink_lbsrv]\n  196 root      0:00 [glink_xprt_wq]\n  197 root      0:00 [IPCRTR_mpss_sme]\n  198 root      0:00 [IPCRTR_lpass_sm]\n  199 root      0:00 [IPCRTR_cdsp_sme]\n  200 root      0:00 [apr_driver]\n  201 root      0:00 [glink_pkt_wq]\n  202 root      0:00 [mem_share_svc]\n  203 root      0:00 [kworker/0:2]\n  204 root      0:00 [qmi_hndl0000000]\n  205 root      0:00 [irq/64-qpnp_hap]\n  206 root      0:00 [irq/63-qpnp_hap]\n  207 root      0:00 [msm_ipc_router]\n  208 root      0:00 [irq/103-arm-smm]\n  209 root      0:00 [qmi_svc_event_w]\n  210 root      0:00 [servloc_wq]\n  211 root      0:00 [k_hsuart]\n  212 root      0:00 [msm_serial_hs_0]\n  213 root      0:00 [msm_serial_hs_0]\n  214 root      0:00 [hwrng]\n  216 root      0:00 [diag_real_time_]\n  217 root      0:00 [diag_wq]\n  218 root      0:00 [DIAG_USB_diag]\n  219 root      0:00 [diag_cntl_wq]\n  220 root      0:00 [diag_dci_wq]\n  221 root      0:00 [DIAG_SMD_MODEM_]\n  222 root      0:00 [DIAG_SMD_MODEM_]\n  223 root      0:00 [DIAG_SMD_MODEM_]\n  224 root      0:00 [DIAG_SMD_MODEM_]\n  225 root      0:00 [DIAG_SMD_MODEM_]\n  226 root      0:00 [DIAG_SMD_LPASS_]\n  227 root      0:00 [DIAG_SMD_LPASS_]\n  228 root      0:00 [DIAG_SMD_LPASS_]\n  229 root      0:00 [DIAG_SMD_LPASS_]\n  230 root      0:00 [DIAG_SMD_LPASS_]\n  231 root      0:00 [DIAG_SMD_WCNSS_]\n  232 root      0:00 [DIAG_SMD_WCNSS_]\n  233 root      0:00 [DIAG_SMD_WCNSS_]\n  234 root      0:00 [DIAG_SMD_WCNSS_]\n  235 root      0:00 [DIAG_SMD_WCNSS_]\n  236 root      0:00 [DIAG_SMD_SENSOR]\n  237 root      0:00 [DIAG_SMD_SENSOR]\n  238 root      0:00 [DIAG_SMD_SENSOR]\n  239 root      0:00 [DIAG_SMD_SENSOR]\n  240 root      0:00 [DIAG_SMD_SENSOR]\n  241 root      0:00 [DIAG_SMD_DIAG_C]\n  242 root      0:00 [DIAG_SMD_DIAG_D]\n  243 root      0:00 [DIAG_SMD_DIAG_C]\n  244 root      0:00 [DIAG_SMD_DIAG_D]\n  245 root      0:00 [DIAG_SMD_DIAG_D]\n  246 root      0:00 [DIAG_SMD_CDSP_C]\n  247 root      0:00 [DIAG_SMD_CDSP_D]\n  248 root      0:00 [DIAG_SMD_CDSP_C]\n  249 root      0:00 [DIAG_SMD_CDSP_D]\n  250 root      0:00 [DIAG_SMD_CDSP_D]\n  251 root      0:00 [DIAG_SOCKMODEM_]\n  252 root      0:00 [DIAG_SOCKMODEM_]\n  253 root      0:00 [DIAG_SOCKMODEM_]\n  254 root      0:00 [DIAG_SOCKMODEM_]\n  255 root      0:00 [DIAG_SOCKMODEM_]\n  256 root      0:00 [DIAG_SOCKLPASS_]\n  257 root      0:00 [DIAG_SOCKLPASS_]\n  258 root      0:00 [DIAG_SOCKLPASS_]\n  259 root      0:00 [DIAG_SOCKLPASS_]\n  260 root      0:00 [DIAG_SOCKLPASS_]\n  261 root      0:00 [DIAG_SOCKWCNSS_]\n  262 root      0:00 [DIAG_SOCKWCNSS_]\n  263 root      0:00 [DIAG_SOCKWCNSS_]\n  264 root      0:00 [DIAG_SOCKWCNSS_]\n  265 root      0:00 [DIAG_SOCKWCNSS_]\n  266 root      0:00 [DIAG_SOCKSENSOR]\n  267 root      0:00 [DIAG_SOCKSENSOR]\n  268 root      0:00 [DIAG_SOCKSENSOR]\n  269 root      0:00 [DIAG_SOCKSENSOR]\n  270 root      0:00 [DIAG_SOCKSENSOR]\n  271 root      0:00 [DIAG_SOCKDIAG_C]\n  272 root      0:00 [DIAG_SOCKDIAG_D]\n  273 root      0:00 [DIAG_SOCKDIAG_C]\n  274 root      0:00 [DIAG_SOCKDIAG_D]\n  275 root      0:00 [DIAG_SOCKDIAG_D]\n  276 root      0:00 [DIAG_SOCKCDSP_C]\n  277 root      0:00 [DIAG_SOCKCDSP_D]\n  278 root      0:00 [DIAG_SOCKCDSP_C]\n  279 root      0:00 [DIAG_SOCKCDSP_D]\n  280 root      0:00 [DIAG_SOCKCDSP_D]\n  281 root      0:00 [DIAG_CNTL_SOCKE]\n  282 root      0:00 [DIAG_GLINK_DIAG]\n  283 root      0:00 [DIAG_GLINK_DIAG]\n  284 root      0:00 [DIAG_GLINK_DIAG]\n  285 root      0:00 [DIAG_GLINK_DIAG]\n  286 root      0:00 [DIAG_GLINK_DIAG]\n  287 root      0:00 [kgsl-workqueue]\n  288 root      0:00 [kgsl-mementry]\n  289 root      0:00 [kgsl_worker_thr]\n  290 root      0:00 [kgsl-events]\n  291 root      0:00 [kgsl_devfreq_wq]\n  292 root      0:00 [bioset]\n  293 root      0:00 [bioset]\n  294 root      0:00 [bioset]\n  295 root      0:00 [bioset]\n  296 root      0:00 [bioset]\n  297 root      0:00 [bioset]\n  298 root      0:00 [bioset]\n  299 root      0:00 [bioset]\n  300 root      0:00 [bioset]\n  301 root      0:00 [bioset]\n  302 root      0:00 [bioset]\n  303 root      0:00 [bioset]\n  304 root      0:00 [bioset]\n  305 root      0:00 [bioset]\n  306 root      0:00 [bioset]\n  307 root      0:00 [bioset]\n  308 root      0:00 [bioset]\n  309 root      0:00 [bioset]\n  310 root      0:00 [bioset]\n  311 root      0:00 [bioset]\n  312 root      0:00 [bioset]\n  313 root      0:00 [bioset]\n  314 root      0:00 [bioset]\n  315 root      0:00 [bioset]\n  316 root      0:00 [bioset]\n  317 root      0:00 [qseecom-unreg-l]\n  318 root      0:00 [qseecom-unload-]\n  319 root      0:00 [irq/274-ant-swi]\n  320 root      0:00 [qcrypto_seq_res]\n  341 root      0:00 [spi7]\n  342 root      0:00 [bond0]\n  343 root      0:00 [sharedmem_qmi_w]\n  344 root      0:00 [k_sm_usb]\n  345 root      0:00 [qmi_hndl0000000]\n  349 root      0:00 [uether]\n  352 root      0:00 [nvt_wq]\n  353 root      0:00 [nvt_fwu_wq]\n  354 root      0:00 [nvt_esd_check_w]\n  355 root      0:00 [msm_cci_wq]\n  356 root      0:00 [msm_cci_wq]\n  357 root      0:00 [msm_cpp_workque]\n  358 root      0:00 [msm_vidc_worker]\n  359 root      0:00 [pm_workerq_venu]\n  360 root      0:00 [irq/148-arm-smm]\n  361 root      0:00 [irq/149-arm-smm]\n  362 root      0:00 [irq/150-arm-smm]\n  363 root      0:00 [irq/151-arm-smm]\n  364 root      0:00 [rot_commitq_0_0]\n  365 root      0:00 [rot_commitq_0_1]\n  366 root      0:00 [rot_doneq_0_0]\n  367 root      0:00 [rot_doneq_0_1]\n  368 root      0:00 [therm_core:noti]\n  370 root      0:00 [irq/467-chg-err]\n  371 root      0:00 [irq/468-chg-sta]\n  372 root      0:00 [irq/472-otg-fai]\n  373 root      0:00 [irq/473-otg-ove]\n  374 root      0:00 [irq/474-otg-oc-]\n  375 root      0:00 [irq/475-testmod]\n  376 root      0:00 [irq/476-bat-tem]\n  377 root      0:00 [irq/477-bat-ocp]\n  378 root      0:00 [irq/478-bat-ov]\n  379 root      0:00 [kworker/0:4]\n  380 root      0:00 [irq/479-bat-low]\n  381 root      0:00 [irq/480-bat-the]\n  382 root      0:00 [irq/481-bat-ter]\n  383 root      0:00 [irq/482-usbin-c]\n  384 root      0:00 [irq/483-usbin-l]\n  385 root      0:00 [irq/484-usbin-u]\n  386 root      0:00 [irq/485-usbin-o]\n  387 root      0:00 [irq/486-usbin-p]\n  388 root      0:00 [irq/487-usbin-s]\n  390 root      0:00 [irq/488-usbin-i]\n  391 root      0:00 [irq/489-type-c-]\n  392 root      0:00 [irq/490-dcin-co]\n  393 root      0:00 [irq/491-dcin-lt]\n  394 root      0:00 [irq/492-dcin-uv]\n  395 root      0:00 [irq/493-dcin-ov]\n  396 root      0:00 [irq/494-dcin-pl]\n  397 root      0:00 [irq/495-div2-en]\n  398 root      0:00 [irq/496-dcin-ic]\n  400 root      0:00 [irq/498-wdog-ba]\n  401 root      0:00 [irq/499-aicl-fa]\n  402 root      0:00 [irq/500-aicl-do]\n  403 root      0:00 [irq/501-high-du]\n  404 root      0:00 [irq/502-input-c]\n  405 root      0:00 [irq/503-tempera]\n  406 root      0:00 [irq/504-switche]\n  407 root      0:00 [therm_core:noti]\n  408 root      0:00 [therm_core:noti]\n  409 root      0:00 [therm_core:noti]\n  410 root      0:00 [therm_core:noti]\n  411 root      0:00 [therm_core:noti]\n  412 root      0:00 [therm_core:noti]\n  413 root      0:00 [therm_core:noti]\n  414 root      0:00 [therm_core:noti]\n  415 root      0:00 [therm_core:noti]\n  416 root      0:00 [therm_core:noti]\n  417 root      0:00 [therm_core:noti]\n  418 root      0:00 [therm_core:noti]\n  419 root      0:00 [therm_core:noti]\n  420 root      0:00 [therm_core:noti]\n  421 root      0:00 [therm_core:noti]\n  422 root      0:00 [therm_core:noti]\n  423 root      0:00 [therm_core:noti]\n  424 root      0:00 [therm_core:noti]\n  425 root      0:00 [therm_core:noti]\n  426 root      0:00 [therm_core:noti]\n  427 root      0:00 [therm_core:noti]\n  428 root      0:00 [therm_core:noti]\n  429 root      0:00 [irq/47-tsens_in]\n  430 root      0:00 [irq/48-tsens_cr]\n  431 root      0:00 [therm_core:noti]\n  432 root      0:00 [irq/335-limits_]\n  433 root      0:00 [therm_core:noti]\n  434 root      0:00 [irq/336-limits_]\n  435 root      0:00 [dm_bufio_cache]\n  436 root      0:00 [irq/67-c0c4000.]\n  437 root      0:00 [irq/66-mmc0]\n  438 root      0:00 [irq/34-qpnp_wle]\n  440 root      0:00 [cds_recovery_wo]\n  441 root      0:00 [wlan_logging_th]\n  443 root      0:00 [bioset]\n  444 root      0:00 [mmc-cmdqd/0]\n  445 root      0:00 [bioset]\n  446 root      0:00 [mmcqd/0rpmb]\n  447 root      0:00 [irq/69-c084000.]\n  448 root      0:00 [irq/68-mmc1]\n  449 root      0:00 [irq/254-c084000]\n  450 root      0:00 [irq/95-spdm_bw_]\n  451 root      0:00 [binder]\n  452 root      0:00 [irq/130-arm-smm]\n  453 root      0:00 [uaudio_svc]\n  454 root      0:00 [qmi_hndl0000000]\n  455 root      0:00 [ipv6_addrconf]\n  456 root      0:00 [irq/539-adsp]\n  457 root      0:00 [sysmon_wq]\n  458 root      0:00 [irq/571-cdsp]\n  459 root      0:00 [irq/507-modem]\n  460 root      0:00 [k_sm_usb]\n  465 root      0:00 [irq/17-sig-tx]\n  466 root      0:00 [irq/18-sig-rx]\n  467 root      0:00 [therm_core:noti]\n  468 root      0:00 [irq/699-soc-upd]\n  469 root      0:00 [irq/700-soc-rea]\n  470 root      0:00 [irq/701-bsoc-de]\n  471 root      0:00 [irq/702-msoc-de]\n  472 root      0:00 [irq/703-msoc-lo]\n  473 root      0:00 [irq/704-msoc-em]\n  474 root      0:00 [irq/705-msoc-hi]\n  475 root      0:00 [irq/706-msoc-fu]\n  476 root      0:00 [irq/707-vbatt-p]\n  477 root      0:00 [irq/708-vbatt-l]\n  478 root      0:00 [irq/709-esr-del]\n  479 root      0:00 [irq/710-batt-mi]\n  480 root      0:00 [irq/711-batt-te]\n  481 root      0:00 [irq/712-ima-rdy]\n  482 root      0:00 [irq/713-mem-xcp]\n  483 root      0:00 [irq/714-dma-gra]\n  484 root      0:00 [mdss_dp_event]\n  485 root      0:00 [mdss_dp_hpd]\n  486 root      0:00 [k_sm_usb]\n  487 root      0:00 [irq/196-hs_phy_]\n  488 root      0:00 [irq/197-ss_phy_]\n  489 root      0:00 [irq/198-msm_dwc]\n  490 root      0:00 [usb_bam_wq]\n  491 root      0:00 [hdcp_1x_1]\n  492 root      0:00 [hdcp_tz_lib]\n  493 root      0:00 [dp_hdcp2p2]\n  494 root      0:00 [cwb_wq]\n  499 root      0:00 [rq_stats]\n  500 root      0:00 [irq/131-arm-smm]\n  501 root      0:00 [irq/132-arm-smm]\n  502 root      0:00 [irq/133-arm-smm]\n  503 root      0:00 [irq/134-arm-smm]\n  504 root      0:00 [irq/179-arm-smm]\n  505 root      0:00 [irq/180-arm-smm]\n  506 root      0:00 [irq/181-arm-smm]\n  507 root      0:00 [irq/182-arm-smm]\n  508 root      0:00 [irq/183-arm-smm]\n  509 root      0:00 [irq/184-arm-smm]\n  510 root      0:00 [irq/185-arm-smm]\n  511 root      0:00 [irq/186-arm-smm]\n  512 root      0:00 [irq/187-arm-smm]\n  513 root      0:00 [sb-3]\n  514 root      0:00 [ngd_rx_thread3]\n  515 root      0:00 [ngd_notify_sl3]\n  516 root      0:00 [kworker/0:1H]\n  517 root      0:00 [msm_thermal:hot]\n  518 root      0:00 [msm_thermal:fre]\n  519 root      0:00 [msm_thermal:the]\n  520 root      0:00 [therm_core:noti]\n  521 root      0:00 [therm_core:noti]\n  522 root      0:00 [therm_core:noti]\n  523 root      0:00 [irq/50-lmh-inte]\n  524 root      0:00 [irq/36-qpnp_fla]\n  526 root      0:00 [irq/28-qpnp_fla]\n  527 root      0:00 [irq/35-qpnp_fla]\n  528 root      0:00 [ipa_A7_svc]\n  529 root      0:00 [qmi_hndl0000000]\n  530 root      0:00 [clnt_req]\n  531 root      0:00 [clnt_resp]\n  532 root      0:00 [clnt_req]\n  541 root      0:00 [kworker/1:1H]\n  542 root      0:00 [kworker/2:1H]\n  543 root      0:00 [kworker/3:1H]\n  544 root      0:00 [kworker/4:1H]\n  545 root      0:00 [kworker/5:1H]\n  546 root      0:00 [kworker/6:1H]\n  547 root      0:00 [kworker/7:1H]\n  552 root      0:00 [kworker/1:1]\n  559 root      0:00 [kworker/0:0]\n  572 root      0:00 [kworker/u16:3]\n  576 root      0:00 [kworker/4:1]\n  584 root      0:00 [kworker/0:3]\n  606 root      0:00 ps -A\n"
  },
  {
    "path": "results/sdm660/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,633600,2057.528497,3.247361895517676,48.24528549604122,5.862482172695489,42.644052917444256,121.514094329\r\n1,902400,2930.488806,3.24743883643617,72.23121473521167,6.162517585932678,40.5678355499838,85.316543665\r\n1,1113600,3616.374946,3.247463133979885,78.652155315768,5.437727978824626,45.97508389046668,69.136414088\r\n1,1401600,4551.495621,3.2473570355308223,125.2278742161666,6.878929298161356,36.342865170430166,54.931294979\r\n1,1536000,4988.128255,3.2474793326822913,134.27618635197987,6.730435301536871,37.14469997845658,50.123819304\r\n1,1747200,5674.209583,3.2476016386217945,178.7491414438603,7.87636259870607,31.740539731000965,44.063778629\r\n1,1843200,5985.586707,3.247388621419271,227.8244034285121,9.516243197426492,26.27087126857038,41.770078421\r\n4,1113600,5824.654598,5.23047287895115,219.8391171943094,9.437620727862335,26.489727359135586,42.92966988\r\n4,1401600,7324.075702,5.225510632134704,316.8135267277058,10.81708687207585,23.111582901804304,34.14338707\r\n4,1747200,9135.089707,5.228416727907509,474.499816383222,12.990016128193847,19.24554962309815,27.376230042\r\n4,1958400,10246.741536,5.232200539215686,578.1762146272499,14.112334570165807,17.714999510322887,24.408362387\r\n4,2150400,11246.063878,5.229754407552083,694.3741968129999,15.442981152104087,16.188584155976763,22.240142596\r\n4,2208000,11550.545186,5.2312251748188405,735.650817438857,15.928935915186068,15.694708129352136,21.652848794\r\n"
  },
  {
    "path": "results/sdm660/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 835.1632770821452, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1134.937942071, 1138.727667828, 1137.0131276670002, 1135.229419274, 1144.668415774, 1137.086340282, 1135.375008706, 1144.668415774, 1137.232167858, 1139.093132664, 1135.375008706, 1137.377995434, 1135.593392854, 1135.6661875700001, 1139.3122319759998, 1143.0272647119998, 1143.0272647119998, 1145.035669375, 1137.742863201, 1135.884870057, 1135.884870057, 1130.307083262, 1134.099552557, 1137.597035625, 1134.0268769129998, 1134.0268769129998, 1137.742863201, 1139.6776968119998, 1130.307083262], \"power_mean\": 1137.4394594861035, \"energy_millijoules\": 5687.197297430517, \"energy_joules\": 5.687197297430517}, \"cpus\": {\"1\": {\"freqs\": {\"633600\": {\"active\": {\"elapsed_sec\": 121.514094329, \"elapsed_ns\": 121514094329, \"power_samples\": [62.44433213399998, 67.86485019099973, 67.86485019099973, 60.43479254199997, 42.08358716800012, 42.08358716800012, 45.79742918399984, 45.79742918399984, 45.79742918399984, 42.233942408000075, 42.08358716800012, 42.08358716800012, 42.08358716800012, 45.79742918399984, 44.09110155999997, 44.09110155999997, 34.652097969999886, 45.79742918399984, 45.79742918399984, 40.22666615999992, 45.79742918399984, 45.79742918399984, 42.08358716800012, 49.5150763659999, 49.5150763659999, 43.86490289099993, 45.72170433899987, 45.72170433899987, 42.00810144299976, 40.001182899000014, 43.86490289099993, 43.86490289099993, 40.15129999499982, 43.86490289099993, 43.86490289099993, 42.00810144299976, 45.79742918399984, 45.79742918399984, 42.08358716800012, 49.5150763659999, 49.5150763659999, 43.86490289099993, 43.86490289099993, 43.86490289099993, 49.287803852000025, 43.86490289099993, 43.86490289099993, 43.86490289099993, 40.22666615999992, 42.00810144299976, 42.00810144299976, 43.714309506999825, 42.00810144299976, 42.00810144299976, 576.914372646, 42.00810144299976, 42.00810144299976, 43.714309506999825, 49.439112155999965, 49.439112155999965, 51.29591360399968, 42.00810144299976, 40.001182899000014, 40.001182899000014, 40.001182899000014, 43.714309506999825, 43.714309506999825, 39.92612435099977, 41.70739096299985, 41.70739096299985, 43.714309506999825, 43.63901281499989, 43.63901281499989, 41.857746202999806, 49.21214969999983, 49.21214969999983, 41.857746202999806, 34.57709072999978, 39.92612435099977, 39.92612435099977, 39.92612435099977, 43.63901281499989, 43.63901281499989, 43.714309506999825, 41.78256858299983, 41.78256858299983, 40.001182899000014, 45.42004128299982, 45.42004128299982, 45.42004128299982, 36.134611537999945, 39.85106580299998, 39.85106580299998, 43.63901281499989, 43.56371612299995, 43.56371612299995, 43.714309506999825, 43.56371612299995, 43.56371612299995, 43.33751745399991, 43.56371612299995, 43.56371612299995, 45.495457046999945, 34.27828637799985, 34.27828637799985, 43.63901281499989, 41.632213342999876, 41.48154999799999, 41.48154999799999, 50.917047483999795, 41.632213342999876, 41.632213342999876, 39.625582542000075, 41.48154999799999, 41.48154999799999, 41.632213342999876, 43.33751745399991, 43.33751745399991, 39.625582542000075, 41.48154999799999, 41.48154999799999], \"power_mean\": 48.24528549604122, \"energy_millijoules\": 5862.482172695489, \"energy_joules\": 5.862482172695489, \"coremark_score\": 2057.528497, \"coremarks_per_mhz\": 3.247361895517676, \"ulpmark_cm_score\": 42.644052917444256}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1135.957664773, 1135.957664773, 1135.957664773, 1135.957664773], \"power_mean\": 1135.957664773, \"energy_millijoules\": 5679.788323865, \"energy_joules\": 5.679788323865}}, \"902400\": {\"active\": {\"elapsed_sec\": 85.316543665, \"elapsed_ns\": 85316543665, \"power_samples\": [7.0709121719999075, 57.96411425800011, 67.32661602199983, 57.73536499000011, 57.73536499000011, 61.44967278599984, 63.30492580999976, 63.30492580999976, 67.01923360599994, 54.252893777999816, 54.252893777999816, 67.01923360599994, 61.67913721799982, 61.67913721799982, 61.44967278599984, 59.2886304860001, 59.2886304860001, 66.71153624899966, 66.86522745699995, 61.29638302199987, 61.29638302199987, 66.86522745699995, 63.22800462999999, 63.22800462999999, 63.1513974139998, 63.1513974139998, 63.1513974139998, 63.22800462999999, 61.29638302199987, 61.29638302199987, 63.1513974139998, 61.14340673399988, 61.14340673399988, 61.14340673399988, 61.14340673399988, 66.71153624899966, 66.71153624899966, 61.14340673399988, 62.92157576599993, 62.92157576599993, 61.29638302199987, 59.2886304860001, 59.2886304860001, 57.43005346700011, 60.99043044599989, 60.99043044599989, 57.353803710999955, 66.55784504099961, 66.55784504099961, 53.64448935899986, 59.21226141400007, 57.353803710999955, 57.353803710999955, 61.06691858999989, 53.56847774699986, 53.56847774699986, 53.56847774699986, 53.64448935899986, 53.64448935899986, 53.56847774699986, 60.99043044599989, 60.99043044599989, 66.55784504099961, 60.913942301999896, 60.913942301999896, 59.135892342000034, 53.492466135000086, 587.7554418749999, 587.7554418749999, 60.76065253799993, 60.913942301999896, 60.913942301999896, 59.135892342000034, 59.05952327, 59.05952327, 60.99043044599989, 57.201304199000106, 57.201304199000106, 66.48099943699981, 60.76065253799993, 60.913942301999896, 51.634247063999965, 57.048492187999955, 57.201304199000106, 57.201304199000106], \"power_mean\": 72.23121473521167, \"energy_millijoules\": 6162.517585932677, \"energy_joules\": 6.162517585932678, \"coremark_score\": 2930.488806, \"coremarks_per_mhz\": 3.24743883643617, \"ulpmark_cm_score\": 40.5678355499838}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1135.229419274, 1133.517849554, 1133.517849554, 1135.229419274], \"power_mean\": 1134.373634414, \"energy_millijoules\": 5671.86817207, \"energy_joules\": 5.67186817207}}, \"1113600\": {\"active\": {\"elapsed_sec\": 69.136414088, \"elapsed_ns\": 69136414088, \"power_samples\": [-3.2329277979999915, 76.99019568799986, 80.62312606499995, 80.62312606499995, 80.62312606499995, 78.84745925299967, 78.84745925299967, 78.76977965699984, 76.91263540799991, 76.91263540799991, 84.33361672199999, 76.99019568799986, 76.99019568799986, 76.91263540799991, 78.76977965699984, 75.13673020799979, 75.13673020799979, 86.18696312999987, 78.69210006100002, 78.69210006100002, 84.09950555399973, 80.38973006099991, 80.38973006099991, 78.69210006100002, 80.54532739699994, 80.54532739699994, 76.83507512799997, 89.65847312999995, 89.65847312999995, 78.45906127299986, 84.02146849799988, 76.60239428799991, 76.60239428799991, 84.02146849799988, 80.38973006099991, 80.38973006099991, 84.09950555399973, 80.38973006099991, 80.38973006099991, 80.38973006099991, 78.38138167699981, 78.38138167699981, 80.31193139299967, 80.23413272499988, 80.15633405699987, 80.15633405699987, 78.45906127299986, 80.23413272499988, 80.23413272499988, 76.52483400799997, 76.4472737279998, 76.4472737279998, 80.15633405699987, 74.4394419539999, 74.4394419539999, 80.0004178739996, 83.86539438599993, 83.86539438599993, 78.1480245299997, 76.2918352979998, 83.70900044999985, 83.70900044999985, 83.63096339399976, 83.70900044999985, 83.70900044999985, 75.90403389800008, 75.90403389800008, 75.90403389800008, 83.31881516999988], \"power_mean\": 78.652155315768, \"energy_millijoules\": 5437.727978824626, \"energy_joules\": 5.437727978824626, \"coremark_score\": 3616.374946, \"coremarks_per_mhz\": 3.247463133979885, \"ulpmark_cm_score\": 45.97508389046668}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1128.929884776, 1128.929884776, 1136.28369096, 1134.42808072], \"power_mean\": 1132.1428853080001, \"energy_millijoules\": 5660.71442654, \"energy_joules\": 5.66071442654}}, \"1401600\": {\"active\": {\"elapsed_sec\": 54.931294979, \"elapsed_ns\": 54931294979, \"power_samples\": [107.40357296599996, 123.51620153199974, 123.51620153199974, 114.25379565399999, 110.47171641, 110.47171641, 114.01328076200025, 114.17340527399983, 114.17340527399983, 121.25842056399983, 119.40805241999965, 119.56889185199998, 119.56889185199998, 112.16267447400014, 116.02804242000002, 116.02804242000002, 116.02804242000002, 112.32256084200003, 112.32256084200003, 119.40805241999965, 113.85315624999998, 113.85315624999998, 119.40805241999965, 113.61264135800002, 115.46644280300006, 115.46644280300006, 115.46644280300006, 121.01647412299985, 121.01647412299985, 111.92284492199997, 113.61264135800002, 113.61264135800002, 115.62713456000006, 113.53257910199977, 113.53257910199977, 115.46644280300006, 109.91262047800001, 109.91262047800001, 121.17788177600005, 642.6286100419998, 119.0860439669998, 119.0860439669998, 121.01647412299985, 111.92284492199997, 111.92284492199997, 115.38626123099993, 115.38626123099993, 115.38626123099993, 113.61264135800002, 115.38626123099993, 115.38626123099993, 115.46644280300006, 113.53257910199977, 113.53257910199977], \"power_mean\": 125.2278742161666, \"energy_millijoules\": 6878.929298161356, \"energy_joules\": 6.878929298161356, \"coremark_score\": 4551.495621, \"coremarks_per_mhz\": 3.2473570355308223, \"ulpmark_cm_score\": 36.342865170430166}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1133.5539474500001, 1133.5539474500001, 1135.335214062, 1135.40812785], \"power_mean\": 1134.462809203, \"energy_millijoules\": 5672.314046015, \"energy_joules\": 5.672314046015}}, \"1536000\": {\"active\": {\"elapsed_sec\": 50.123819304, \"elapsed_ns\": 50123819304, \"power_samples\": [2.6642081210000015, 146.52075044299977, 133.40418625799975, 133.40418625799975, 131.55500980999977, 137.10632844999986, 137.10632844999986, 137.10632844999986, 131.47375610199992, 137.02471728199998, 137.02471728199998, 137.02471728199998, 133.32281347799994, 133.32281347799994, 136.77988377799988, 136.77988377799988, 136.77988377799988, 136.77988377799988, 131.22999497800015, 137.02471728199998, 137.02471728199998, 136.69827260999978, 138.54685369799972, 138.54685369799972, 138.87377465799977, 133.32281347799994, 133.32281347799994, 140.399222862, 138.54685369799972, 138.54685369799972, 138.54685369799972, 138.46512345799988, 138.46512345799988, 140.3173733059998, 136.69827260999978, 131.067487562, 131.067487562, 136.6166614419999, 140.3173733059998, 140.3173733059998, 136.69827260999978, 136.6166614419999, 136.6166614419999, 129.21902554599978, 142.24780394999993, 142.24780394999993, 136.6166614419999, 142.16583532200002, 142.16583532200002, 140.07148918899998], \"power_mean\": 134.27618635197987, \"energy_millijoules\": 6730.435301536871, \"energy_joules\": 6.730435301536871, \"coremark_score\": 4988.128255, \"coremarks_per_mhz\": 3.2474793326822913, \"ulpmark_cm_score\": 37.14469997845658}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1132.680112519, 1130.972712759, 1130.972712759, 1132.825701951], \"power_mean\": 1131.8628099969999, \"energy_millijoules\": 5659.314049985, \"energy_joules\": 5.659314049984999}}, \"1747200\": {\"active\": {\"elapsed_sec\": 44.063778629, \"elapsed_ns\": 44063778629, \"power_samples\": [101.28946179200011, 172.60001141399994, 174.4470435899998, 174.4470435899998, 176.29407576599988, 181.75436751999973, 181.75436751999973, 176.29407576599988, 181.83895719599968, 181.83895719599968, 172.51601734199994, 172.43202326999995, 172.43202326999995, 181.83895719599968, 181.66977784399978, 181.66977784399978, 176.20984354999973, 174.36293044600006, 176.20984354999973, 176.20984354999973, 181.75436751999973, 176.1256113339998, 176.1256113339998, 181.66977784399978, 174.19470415799992, 174.19470415799992, 176.0413791179999, 212.21733729800007, 212.21733729800007, 201.4801121879998, 205.00377618499965, 205.00377618499965, 174.0261331439999, 177.634654512, 174.19470415799992, 174.19470415799992, 175.8725694719999, 175.8725694719999, 175.8725694719999, 177.71900579999988, 181.33107246099985, 181.33107246099985, 174.0261331439999], \"power_mean\": 178.7491414438603, \"energy_millijoules\": 7876.36259870607, \"energy_joules\": 7.87636259870607, \"coremark_score\": 5674.209583, \"coremarks_per_mhz\": 3.2476016386217945, \"ulpmark_cm_score\": 31.740539731000965}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1139.801528048, 1139.801528048, 1134.240909588, 1130.536361044], \"power_mean\": 1136.095081682, \"energy_millijoules\": 5680.4754084100005, \"energy_joules\": 5.68047540841}}, \"1843200\": {\"active\": {\"elapsed_sec\": 41.770078421, \"elapsed_ns\": 41770078421, \"power_samples\": [206.21006944399983, 203.1541527559998, 203.1541527559998, 202.98176167400015, 202.895742402, 202.895742402, 202.895742402, 195.51002761799987, 729.951138058, 729.951138058, 204.4865916299998, 202.7237038579999, 202.7237038579999, 200.7925585380001, 193.32284968199997, 193.32284968199997, 200.62040608799998, 200.7925585380001, 200.7925585380001, 202.55166531400005, 191.56314730199983, 191.56314730199983, 202.55166531400005, 200.7925585380001, 200.7066583379999, 200.7066583379999, 198.86165136199998, 204.40045304199975, 204.40045304199975, 204.4865916299998, 204.31396142699987, 204.31396142699987, 204.4865916299998, 200.62040608799998, 200.62040608799998, 208.00373625899988, 210.02575076999983, 210.02575076999983, 208.00373625899988, 200.62040608799998, 208.00373625899988], \"power_mean\": 227.8244034285121, \"energy_millijoules\": 9516.243197426493, \"energy_joules\": 9.516243197426492, \"coremark_score\": 5985.586707, \"coremarks_per_mhz\": 3.247388621419271, \"ulpmark_cm_score\": 26.27087126857038}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1133.584386669, 1133.584386669, 1129.881982397, 1135.58544846], \"power_mean\": 1133.15905104875, \"energy_millijoules\": 5665.795255243749, \"energy_joules\": 5.665795255243749}}}}, \"4\": {\"freqs\": {\"1113600\": {\"active\": {\"elapsed_sec\": 42.92966988, \"elapsed_ns\": 42929669880, \"power_samples\": [3.1314758309997615, 222.50840721300005, 226.20124738799996, 226.20124738799996, 227.95809033199998, 227.60698193400003, 227.60698193400003, 229.71847441899968, 227.51929467799982, 227.51929467799982, 227.870403076, 225.7630475819999, 225.7630475819999, 225.67547939799988, 221.98407052799985, 222.07140032400002, 222.07140032400002, 225.7630475819999, 225.5879112140001, 225.5879112140001, 221.72208113999977, 227.25623290999988, 227.25623290999988, 225.3252066619998, 221.8967407319999, 221.8967407319999, 225.3252066619998, 225.41277484600005, 225.3252066619998, 225.3252066619998, 227.1685456539999, 225.3252066619998, 225.3252066619998, 217.94807335999963, 229.01566197999978, 229.01566197999978, 225.23727959200005, 221.54706363900004, 221.54706363900004, 226.9928117679999, 221.63475134399982, 221.63475134399982], \"power_mean\": 219.8391171943094, \"energy_millijoules\": 9437.620727862335, \"energy_joules\": 9.437620727862335, \"coremark_score\": 5824.654598, \"coremarks_per_mhz\": 5.23047287895115, \"ulpmark_cm_score\": 26.489727359135586}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1131.514502046, 1131.514502046, 1133.365346478, 1131.514502046], \"power_mean\": 1131.9772131539999, \"energy_millijoules\": 5659.886065769999, \"energy_joules\": 5.6598860657699985}}, \"1401600\": {\"active\": {\"elapsed_sec\": 34.14338707, \"elapsed_ns\": 34143387070, \"power_samples\": [0.6247627169998395, 336.030055083, 329.84132185399994, 329.84132185399994, 320.6363450279998, 324.0344649519998, 324.0344649519998, 324.0344649519998, 325.8781191579999, 327.7180031099999, 327.7180031099999, 333.14632038499985, 329.4630215919999, 329.4630215919999, 327.52889800799994, 333.05160373299987, 333.05160373299987, 325.7834928080001, 325.59501256800013, 327.52889800799994, 327.52889800799994, 323.84583760299984, 327.434538816, 327.434538816, 323.84583760299984, 320.072664303, 320.072664303, 325.59501256800013, 323.5634751909997, 323.5634751909997, 318.0456108789997, 325.2180520879999, 325.2180520879999, 325.2180520879999], \"power_mean\": 316.8135267277058, \"energy_millijoules\": 10817.08687207585, \"energy_joules\": 10.81708687207585, \"coremark_score\": 7324.075702, \"coremarks_per_mhz\": 5.225510632134704, \"ulpmark_cm_score\": 23.111582901804304}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1130.8590512629999, 1130.786256547, 1130.786256547, 1130.931845979], \"power_mean\": 1130.840852584, \"energy_millijoules\": 5654.2042629200005, \"energy_joules\": 5.6542042629200004}}, \"1747200\": {\"active\": {\"elapsed_sec\": 27.376230042, \"elapsed_ns\": 27376230042, \"power_samples\": [238.07089788999974, 473.0884145539999, 469.20592173, 469.20592173, 463.385850526, 466.9559567379997, 466.9559567379997, 986.1807398039996, 463.2824367379999, 463.2824367379999, 466.9559567379997, 459.5095010939999, 459.5095010939999, 466.6445754059996, 463.17902294999976, 463.17902294999976, 463.17902294999976, 457.26209151499984, 461.34426202199984, 461.34426202199984, 457.26209151499984, 462.76494397099987, 462.76494397099987, 468.16778395799975, 459.09637566699985, 459.09637566699985, 460.6207756709998], \"power_mean\": 474.499816383222, \"energy_millijoules\": 12990.016128193847, \"energy_joules\": 12.990016128193847, \"coremark_score\": 9135.089707, \"coremarks_per_mhz\": 5.228416727907509, \"ulpmark_cm_score\": 19.24554962309815}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1123.094284256, 1123.094284256, 1123.0219660720002, 1130.4947793439999], \"power_mean\": 1124.926328482, \"energy_millijoules\": 5624.63164241, \"energy_joules\": 5.62463164241}}, \"1958400\": {\"active\": {\"elapsed_sec\": 24.408362387, \"elapsed_ns\": 24408362387, \"power_samples\": [570.246412431, 570.341601074, 570.341601074, 584.893697258, 577.1158813490001, 577.1158813490001, 584.335662407, 578.8394233719998, 578.6171071639997, 578.6171071639997, 582.055040062, 576.5602323319999, 576.5602323319999, 578.6171071639997, 582.055040062, 582.055040062, 578.3943353899997, 578.283177286, 578.283177286, 581.9436438139996, 576.338154756, 576.338154756, 576.4491935439999, 581.8322475659998], \"power_mean\": 578.1762146272499, \"energy_millijoules\": 14112.334570165807, \"energy_joules\": 14.112334570165807, \"coremark_score\": 10246.741536, \"coremarks_per_mhz\": 5.232200539215686, \"ulpmark_cm_score\": 17.714999510322887}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1131.541605297, 1131.541605297, 1129.9121232769999, 1131.906473064], \"power_mean\": 1131.2254517337499, \"energy_millijoules\": 5656.127258668749, \"energy_joules\": 5.656127258668749}}, \"2150400\": {\"active\": {\"elapsed_sec\": 22.240142596, \"elapsed_ns\": 22240142596, \"power_samples\": [694.0081087349997, 694.2229295619998, 694.2229295619998, 691.9201744019997, 699.1112945279999, 699.1112945279999, 691.4445551700001, 698.5145075789999, 698.5145075789999, 691.2069889619997, 696.3311416549998, 696.3311416549998, 692.9140310180001, 690.731856546, 690.731856546, 698.037469035, 692.5573244899999, 690.8506396499997, 690.8506396499997, 699.743069014, 692.4379350099998, 692.4379350099998], \"power_mean\": 694.3741968129999, \"energy_millijoules\": 15442.981152104087, \"energy_joules\": 15.442981152104087, \"coremark_score\": 11246.063878, \"coremarks_per_mhz\": 5.229754407552083, \"ulpmark_cm_score\": 16.188584155976763}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1132.808693928, 1131.030909954, 1127.3368456019998, 1127.3368456019998], \"power_mean\": 1129.6283237715, \"energy_millijoules\": 5648.141618857499, \"energy_joules\": 5.648141618857499}}, \"2208000\": {\"active\": {\"elapsed_sec\": 21.652848794, \"elapsed_ns\": 21652848794, \"power_samples\": [0.5050853279997227, 770.476700338, 769.111406538, 769.111406538, 772.389475236, 768.739330938, 768.739330938, 779.3118073979999, 770.190102234, 770.190102234, 779.061815928, 777.4852251599998, 771.5191208429997, 771.5191208429997, 771.6433844309997, 767.8706462379998, 767.8706462379998, 771.3948572549998, 776.6123687909997, 776.6123687909997, 778.312863978], \"power_mean\": 735.650817438857, \"energy_millijoules\": 15928.935915186068, \"energy_joules\": 15.928935915186068, \"coremark_score\": 11550.545186, \"coremarks_per_mhz\": 5.2312251748188405, \"ulpmark_cm_score\": 15.694708129352136}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1130.5202146110003, 1123.2040759380002, 1123.2040759380002, 1132.516262196], \"power_mean\": 1127.3611571707502, \"energy_millijoules\": 5636.80578585375, \"energy_joules\": 5.636805785853751}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sdm660/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 1130 mW\n\n\n===== CPU 1 =====\nFrequencies: 633 902 1113 1401 1536 1747 1843\n\n 633:  2058     3.2 C/MHz     48 mW    5.9 J   42.6 I/mJ   121.5 s\n 902:  2930     3.2 C/MHz     72 mW    6.2 J   40.6 I/mJ    85.3 s\n1113:  3616     3.2 C/MHz     79 mW    5.4 J   46.0 I/mJ    69.1 s\n1401:  4551     3.2 C/MHz    125 mW    6.9 J   36.3 I/mJ    54.9 s\n1536:  4988     3.2 C/MHz    134 mW    6.7 J   37.1 I/mJ    50.1 s\n1747:  5674     3.2 C/MHz    179 mW    7.9 J   31.7 I/mJ    44.1 s\n1843:  5986     3.2 C/MHz    228 mW    9.5 J   26.3 I/mJ    41.8 s\n\n\n===== CPU 4 =====\nFrequencies: 1113 1401 1747 1958 2150 2208\n\n1113:  5825     5.2 C/MHz    220 mW    9.4 J   26.5 I/mJ    42.9 s\n1401:  7324     5.2 C/MHz    317 mW   10.8 J   23.1 I/mJ    34.1 s\n1747:  9135     5.2 C/MHz    474 mW   13.0 J   19.2 I/mJ    27.4 s\n1958: 10247     5.2 C/MHz    578 mW   14.1 J   17.7 I/mJ    24.4 s\n2150: 11246     5.2 C/MHz    694 mW   15.4 J   16.2 I/mJ    22.2 s\n2208: 11551     5.2 C/MHz    736 mW   15.9 J   15.7 I/mJ    21.7 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sdm660/main/uptime.txt",
    "content": " 07:10:59 up 14 min,  load average: 6.86, 6.48, 4.10\n"
  },
  {
    "path": "results/sdm660/main/versions.txt",
    "content": "Kernel: Linux version 4.4.247-lapisLazuli r3-Beta+ (Moeeze@Avalon) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project 01f0d162d672c02b7207e0b3a6c494c4d0ea513d)) #1 SMP PREEMPT Sat Jan 9 18:36:07 Asia 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sdm660/second/cmdline.txt",
    "content": "ramoops_memreserve=4M rcupdate.rcu_expedited=1 console=ttyMSM0,115200,n8 androidboot.console=ttyMSM0 earlycon=msm_serial_dm,0xc170000 androidboot.hardware=qcom user_debug=31 msm_rtb.filter=0x37 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 sched_enable_hmp=1 sched_enable_power_aware=1 service_locator.enable=1 swiotlb=1 androidboot.configfs=true androidboot.usbcontroller=a800000.dwc3 loop.max_part=16 androidboot.selinux=permissive rootwait ro init=/init buildvariant=userdebug isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on rcu_nocbs=0-7 androidboot.verifiedbootstate=green androidboot.keymaster=1 root=PARTUUID=50d69e1d-8239-78b7-6a82-098762fd8b7f androidboot.bootdevice=c0c4000.sdhci androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.dp=0x0 androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_nt36672a_tianma_fhdplus_video:config0:1:none:cfg:single_dsi skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=0 androidboot.dtb_idx=0 androidboot.fpsensor=gdx androidboot.secureboot=1 androidboot.hwc=Global androidboot.hwversion=1.29.0 androidboot.hwlevel=MP\n"
  },
  {
    "path": "results/sdm660/second/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 4 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nHardware\t: Qualcomm Technologies, Inc SDM660\n"
  },
  {
    "path": "results/sdm660/second/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. SDM 660 PM660 + PM660L MTP F7A overlay;\nCompatible: qcom,sdm660-mtp;qcom,sdm660;qcom,mtp;\n"
  },
  {
    "path": "results/sdm660/second/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Initializing cgroup subsys cpuset\n[    0.000000] Initializing cgroup subsys cpu\n[    0.000000] Initializing cgroup subsys cpuacct\n[    0.000000] Initializing cgroup subsys schedtune\n[    0.000000] Linux version 4.4.247-lapisLazuli r3-Beta+ (Moeeze@Avalon) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project 01f0d162d672c02b7207e0b3a6c494c4d0ea513d)) #1 SMP PREEMPT Sat Jan 9 18:36:07 Asia 2021\n[    0.000000] Boot CPU: AArch64 Processor [51af8014]\n[    0.000000] Machine: Qualcomm Technologies, Inc. SDM 660 PM660 + PM660L MTP F7A overlay\n[    0.000000] ramoops: msm_reserve_ramoops_memory addr=a0000000, size=400000\n[    0.000000] ramoops: msm_reserve_ramoops_memory record_size=0, ftrace_size=0\n[    0.000000] Reserved memory: reserved region for node 'wlan_msa_guard@85600000': base 0x0000000085600000, size 1 MiB\n[    0.000000] Reserved memory: reserved region for node 'wlan_msa_mem@85700000': base 0x0000000085700000, size 1 MiB\n[    0.000000] Reserved memory: reserved region for node 'removed_regions@85800000': base 0x0000000085800000, size 55 MiB\n[    0.000000] Reserved memory: reserved region for node 'modem_fw_region@8ac00000': base 0x000000008ac00000, size 126 MiB\n[    0.000000] Reserved memory: reserved region for node 'adsp_fw_region@92a00000': base 0x0000000092a00000, size 30 MiB\n[    0.000000] Reserved memory: reserved region for node 'pil_mba_region@94800000': base 0x0000000094800000, size 2 MiB\n[    0.000000] Reserved memory: reserved region for node 'cdsp_fw_region@94a00000': base 0x0000000094a00000, size 6 MiB\n[    0.000000] Reserved memory: reserved region for node 'splash_region@9d400000': base 0x000000009d400000, size 35 MiB\n[    0.000000] Reserved memory: reserved region for node 'dfps_data_mem@0x9f7ff000': base 0x000000009f8ff000, size 0 MiB\n[    0.000000] Reserved memory: reserved region for node 'pstore_reserve_mem_region@0': base 0x00000000a0000000, size 4 MiB\n[    0.000000] Reserved memory: allocated memory for 'venus_fw_region' node: base 0x000000009cc00000, size 8 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x000000009cc00000, size 8 MiB\n[    0.000000] Reserved memory: initialized node venus_fw_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'linux,cma' node: base 0x00000000fd000000, size 44 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fd000000, size 44 MiB\n[    0.000000] Reserved memory: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'secure_region' node: base 0x00000000f7400000, size 92 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f7400000, size 92 MiB\n[    0.000000] Reserved memory: initialized node secure_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'qseecom_region' node: base 0x00000000f6000000, size 20 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6000000, size 20 MiB\n[    0.000000] Reserved memory: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: allocated memory for 'adsp_region' node: base 0x00000000f5800000, size 8 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f5800000, size 8 MiB\n[    0.000000] Reserved memory: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085600000, size 1 MiB\n[    0.000000] Reserved memory: initialized node wlan_msa_guard@85600000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085700000, size 1 MiB\n[    0.000000] Reserved memory: initialized node wlan_msa_mem@85700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085800000, size 55 MiB\n[    0.000000] Reserved memory: initialized node removed_regions@85800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ac00000, size 126 MiB\n[    0.000000] Reserved memory: initialized node modem_fw_region@8ac00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000092a00000, size 30 MiB\n[    0.000000] Reserved memory: initialized node adsp_fw_region@92a00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094800000, size 2 MiB\n[    0.000000] Reserved memory: initialized node pil_mba_region@94800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094a00000, size 6 MiB\n[    0.000000] Reserved memory: initialized node cdsp_fw_region@94a00000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 985024\n[    0.000000]   DMA zone: 7308 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 467712 pages, LIFO batch:31\n[    0.000000]   Normal zone: 8083 pages used for memmap\n[    0.000000]   Normal zone: 517312 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.0 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] psci: Initializing psci_cpu_init\n[    0.000000] PERCPU: Embedded 18 pages/cpu @ffffffc53a170000 s42264 r0 d31464 u73728\n[    0.000000] pcpu-alloc: s42264 r0 d31464 u73728 alloc=18*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: enabling workaround for Kryo2xx Silver erratum 845719\n[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 969633\n[    0.000000] Kernel command line: ramoops_memreserve=4M rcupdate.rcu_expedited=1 console=ttyMSM0,115200,n8 androidboot.console=ttyMSM0 earlycon=msm_serial_dm,0xc170000 androidboot.hardware=qcom user_debug=31 msm_rtb.filter=0x37 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 sched_enable_hmp=1 sched_enable_power_aware=1 service_locator.enable=1 swiotlb=1 androidboot.configfs=true androidboot.usbcontroller=a800000.dwc3 loop.max_part=16 androidboot.selinux=permissive rootwait ro init=/init buildvariant=userdebug isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on rcu_nocbs=0-7 androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=50d69e1d-8239-78b7-6a82-098762fd8b7f androidboot.bootdevice=c0c4000.sdhci androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.dp=0x0 androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_nt36672a_tianma_fhdplus_video:config0:1:none:cfg:single_dsi skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=0 androidboo\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 1048576 bytes\n[    0.000000] log_buf_len: 2097152 bytes\n[    0.000000] early log buf free: 1041120(99%)\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] software IO TLB: mapped [mem 0xfffbf000-0xfffff000] (0MB)\n[    0.000000] Memory: 3582808K/3940096K available (26110K kernel code, 3588K rwdata, 7260K rodata, 8192K init, 6056K bss, 181160K reserved, 176128K cma-reserved)\n[    0.000000] Virtual kernel memory layout:\n                   modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n                   vmalloc : 0xffffff8008000000 - 0xffffffbdbfff0000   (   246 GB)\n                     .init : 0xffffff9412600000 - 0xffffff9412e00000   (  8192 KB)\n                     .text : 0xffffff9410480000 - 0xffffff9411e00000   ( 26112 KB)\n                   .rodata : 0xffffff9411e00000 - 0xffffff9412600000   (  8192 KB)\n                     .data : 0xffffff9412e00000 - 0xffffff9413181000   (  3588 KB)\n                   vmemmap : 0xffffffbdc0000000 - 0xffffffbfc0000000   (     8 GB maximum)\n                             0xffffffbdd1000000 - 0xffffffbdd4f93000   (    63 MB actual)\n                   fixed   : 0xffffffbffe7fb000 - 0xffffffbffec00000   (  4116 KB)\n                   PCI I/O : 0xffffffbffee00000 - 0xffffffbfffe00000   (    16 MB)\n                   memory  : 0xffffffc440000000 - 0xffffffc53e4c0000   (  4068 MB)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n\n[    0.000000] **********************************************************\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **                                                      **\n[    0.000000] ** trace_printk() being used. Allocating extra memory.  **\n[    0.000000] **                                                      **\n[    0.000000] ** This means that this is a DEBUG kernel and it is     **\n[    0.000000] ** unsafe for production use.                           **\n[    0.000000] **                                                      **\n[    0.000000] ** If you see this message and you are not debugging    **\n[    0.000000] ** the kernel, report this immediately to your vendor!  **\n[    0.000000] **                                                      **\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **********************************************************\n[    0.000000] NR_IRQS:64 nr_irqs:64 0\n[    0.000000] mpm_init_irq_domain(): Cannot find irq controller for qcom,gpio-parent\n[    0.000000] MPM 1 irq mapping errored -517\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from all CPUs\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000014] clocksource: Switched to clocksource arch_sys_counter\n[    0.001185] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001195] pid_max: default: 32768 minimum: 301\n[    0.001238] Security Framework initialized\n[    0.001245] SELinux:  Initializing.\n[    0.001275] SELinux:  Starting in permissive mode\n[    0.001300] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001306] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001741] Initializing cgroup subsys freezer\n[    0.003146] sched-energy: Sched-energy-costs installed from DT\n[    0.003182] ASID allocator initialised with 32768 entries\n[    0.029334] CPU1: Booted secondary processor [51af8014]\n[    0.034287] CPU2: Booted secondary processor [51af8014]\n[    0.039192] CPU3: Booted secondary processor [51af8014]\n[    0.044653] CPU4: Booted secondary processor [51af8002]\n[    0.049663] CPU5: Booted secondary processor [51af8002]\n[    0.054942] CPU6: Booted secondary processor [51af8002]\n[    0.059947] CPU7: Booted secondary processor [51af8002]\n[    0.059996] Brought up 8 CPUs\n[    0.060043] SMP: Total of 8 processors activated.\n[    0.060048] CPU features: detected feature: GIC system register CPU interface\n[    0.060053] CPU features: detected feature: 32-bit EL0 Support\n[    0.060265] CPU: All CPU(s) started at EL1\n[    0.060296] alternatives: patching kernel code\n[    0.061102] devtmpfs: initialized\n[    0.104063] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.104083] futex hash table entries: 2048 (order: 5, 131072 bytes)\n[    0.109414] ramoops: msm_register_ramoops_device \n[    0.109522] pinctrl core: initialized pinctrl subsystem\n[    0.110148] NET: Registered protocol family 16\n[    0.111006] schedtune: init normalization constants...\n[    0.111014] schedtune: CLUSTER[0]        min_pwr:     1 max_pwr:    62\n[    0.111019] schedtune: CPU[0]            min_pwr:     8 max_pwr:  1102\n[    0.111023] schedtune: SYSTEM            min_pwr:     9 max_pwr:  1164\n[    0.111028] schedtune: using normalization constants mul: 3320697659 sh1: 1 sh2: 10\n[    0.111030] schedtune: verify normalization constants...\n[    0.111034] schedtune: max_pwr/2^0: 1155 => norm_pwr:  1024\n[    0.111038] schedtune: max_pwr/2^1:  577 => norm_pwr:   511\n[    0.111042] schedtune: max_pwr/2^2:  288 => norm_pwr:   255\n[    0.111045] schedtune: max_pwr/2^3:  144 => norm_pwr:   127\n[    0.111049] schedtune: max_pwr/2^4:   72 => norm_pwr:    63\n[    0.111052] schedtune: max_pwr/2^5:   36 => norm_pwr:    31\n[    0.111057] schedtune: configured to support 6 boost groups\n[    0.114324] console [pstore-1] enabled\n[    0.114476] pstore: Registered ramoops as persistent store backend\n[    0.114482] ramoops: attached 0x400000@0xa0000000, ecc: 0/0\n[    0.114840] cpuidle: using governor menu\n[    0.114850] cpuidle: using governor qcom\n[    0.115271] vdso: 2 pages (1 code @ ffffff9411e01000, 1 data @ ffffff9412e04000)\n[    0.115281] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.115700] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.119279] exit: IPA_USB init success!\n[    0.129331] unable to find DT imem DLOAD mode node\n[    0.130614] unable to find DT imem EDLOAD mode node\n[    0.131849] spmi spmi-0: PMIC arbiter version v3 (0x30000000)\n[    0.136395] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.137116] msm_watchdog 17817000.qcom,wdt: wdog absent resource not present\n[    0.137314] cpu 0 reg dump setup failed\n[    0.137318] cpu 1 reg dump setup failed\n[    0.137321] cpu 2 reg dump setup failed\n[    0.137324] cpu 3 reg dump setup failed\n[    0.137327] cpu 4 reg dump setup failed\n[    0.137330] cpu 5 reg dump setup failed\n[    0.137333] cpu 6 reg dump setup failed\n[    0.137337] cpu 7 reg dump setup failed\n[    0.137381] Registering scandump region failed\n[    0.137404] msm_watchdog 17817000.qcom,wdt: MSM Watchdog Initialized\n[    0.137639] sps:sps is ready.\n[    0.138482] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.138555] msm_thermal:vdd_restriction_reg_init Defer regulator vdd-dig probe\n[    0.138560] msm_thermal:probe_vdd_rstr Err regulator init. err:-517. KTM continues.\n[    0.138566] msm-thermal soc:qcom,msm-thermal: probe_vdd_rstr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,max-freq-level. err=-517. KTM continues\n[    0.140133] gpu-sdm660 5065000.clock-controller: Registered GPU RBCPR clocks\n[    0.142100] irq: no irq domain found for /soc/pinctrl@03000000 !\n[    0.143218] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.145528] msm_rpm_dev_probe: APSS-RPM communication over GLINK\n[    0.149184] platform cce0000.qcom,venus: assigned reserved memory node venus_fw_region\n[    0.149856] platform 15700000.qcom,lpass: assigned reserved memory node adsp_fw_region@92a00000\n[    0.150296] platform 1a300000.qcom,turing: assigned reserved memory node cdsp_fw_region@94a00000\n[    0.150516] platform 4080000.qcom,mss: assigned reserved memory node modem_fw_region@8ac00000\n[    0.157183] msm_mpm_dev_probe(): Cannot get clk resource for XO: -517\n[    0.157649] genirq: Setting trigger mode 8 for irq 102 failed (gic_set_type+0x0/0x100)\n[    0.157677] genirq: Setting trigger mode 8 for irq 103 failed (gic_set_type+0x0/0x100)\n[    0.157704] genirq: Setting trigger mode 8 for irq 104 failed (gic_set_type+0x0/0x100)\n[    0.157730] genirq: Setting trigger mode 8 for irq 105 failed (gic_set_type+0x0/0x100)\n[    0.157756] genirq: Setting trigger mode 8 for irq 106 failed (gic_set_type+0x0/0x100)\n[    0.161228] msm_rpm_trans_notify_state: glink config params: transport=(null), edge=rpm, name=rpm_requests\n[    0.163743] __of_mpm_init(): MPM driver mapping exists\n[    0.172368] irq: no irq domain found for /soc/qcom,mdss_mdp@c900000 !\n[    0.176502] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.176874] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.176924] msm_thermal:vdd_restriction_reg_init Defer regulator vdd-dig probe\n[    0.176929] msm_thermal:probe_vdd_rstr Err regulator init. err:-517. KTM continues.\n[    0.176936] msm-thermal soc:qcom,msm-thermal: probe_vdd_rstr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,max-freq-level. err=-517. KTM continues\n[    0.181810] qcom-clk-smd-rpm soc:qcom,rpmcc: Registered RPM clocks\n[    0.191975] pm660l_l7: supplied by pm660_l10\n[    0.194681] cpr4_sdm660_mmss_read_fuse_data: gfx_corner: CPR fusing revision = 0\n[    0.194831] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[0] open-loop= 545000 uV\n[    0.194835] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[1] open-loop= 605000 uV\n[    0.194839] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[2] open-loop= 685000 uV\n[    0.194844] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[3] open-loop= 750000 uV\n[    0.194848] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[4] open-loop= 830000 uV\n[    0.194852] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[5] open-loop= 885000 uV\n[    0.194980] cpr3_regulator_init_ctrl: gfx: Default CPR mode = open-loop\n[    0.196851] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.197180] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues\n[    0.197309] msm-thermal soc:qcom,msm-thermal: probe_ocr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-opt-curr-temp err:-22. KTM continues\n[    0.197318] msm-thermal soc:qcom,msm-thermal: probe_vdd_mx:Failed reading node=/soc/qcom,msm-thermal, key=qcom,mx-restriction-temp. KTM continues\n[    0.197330] msm-thermal soc:qcom,msm-thermal: probe_freq_mitigation:Failed reading node=/soc/qcom,msm-thermal, key=qcom,limit-temp. err=-22. KTM continues\n[    0.197338] msm-thermal soc:qcom,msm-thermal: msm_thermal:Failed reading node=/soc/qcom,msm-thermal, key=qcom,rpm-phase-resource-type err=-22. KTM continues\n[    0.197347] msm-thermal soc:qcom,msm-thermal: msm_thermal:Failed reading node=/soc/qcom,msm-thermal, key=qcom,gfx-sensor-id. err=-22. KTM continues\n[    0.197946] cpu cpu0: dev_pm_opp_get_opp_count: OPP table not found (-19)\n[    0.197951] msm_thermal:get_cpu_freq_plan_len Error reading CPU0 freq table len. error:-19\n[    0.197958] cpu cpu4: dev_pm_opp_get_opp_count: OPP table not found (-19)\n[    0.197963] msm_thermal:get_cpu_freq_plan_len Error reading CPU4 freq table len. error:-19\n[    0.197969] cpu cpu0: dev_pm_opp_get_opp_count: OPP table not found (-19)\n[    0.197972] msm_thermal:get_cpu_freq_plan_len Error reading CPU0 freq table len. error:-19\n[    0.197977] cpu cpu4: dev_pm_opp_get_opp_count: OPP table not found (-19)\n[    0.197982] msm_thermal:get_cpu_freq_plan_len Error reading CPU4 freq table len. error:-19\n[    0.200919] gcc-sdm660 100000.clock-controller: Registered GCC clocks\n[    0.206617] mmcc-sdm660 c8c0000.clock-controller: Registered MMSS clocks\n[    0.207161] gpucc-sdm660 5065000.gfx: Registered GPUCC clocks\n[    0.207644] cprh_kbss_read_fuse_data: apc0_pwrcl_corner: speed bin = 1\n[    0.207651] cprh_sdm660_kbss_read_fuse_data: apc0_pwrcl_corner: CPR fusing revision = 2\n[    0.207727] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused   LowSVS: open-loop= 574000 uV\n[    0.207732] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused      SVS: open-loop= 604000 uV\n[    0.207737] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused  SVSPLUS: open-loop= 648000 uV\n[    0.207742] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused      NOM: open-loop= 718000 uV\n[    0.207746] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused TURBO_L1: open-loop= 868000 uV\n[    0.207778] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused   LowSVS: quot[ 7]= 340\n[    0.207783] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused      SVS: quot[ 7]= 396, quot_offset[ 7]=  55\n[    0.207789] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused  SVSPLUS: quot[ 7]= 471, quot_offset[ 7]=  75\n[    0.207794] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused      NOM: quot[ 7]= 602, quot_offset[ 7]= 130\n[    0.207799] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused TURBO_L1: quot[ 7]= 854, quot_offset[ 7]= 250\n[    0.208317] cpr3_regulator_init_ctrl: apc0: Default CPR mode = full HW closed-loop\n[    0.208718] cprh_kbss_read_fuse_data: apc1_perfcl_corner: speed bin = 1\n[    0.208724] cprh_sdm660_kbss_read_fuse_data: apc1_perfcl_corner: CPR fusing revision = 2\n[    0.208791] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused      SVS: open-loop= 634000 uV\n[    0.208795] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused  SVSPLUS: open-loop= 688000 uV\n[    0.208799] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused      NOM: open-loop= 748000 uV\n[    0.208804] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused    TURBO: open-loop= 848000 uV\n[    0.208809] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused TURBO_L2: open-loop= 878000 uV\n[    0.208836] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused      SVS: quot[ 7]= 553\n[    0.208841] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused  SVSPLUS: quot[ 7]= 670, quot_offset[ 7]= 115\n[    0.208846] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused      NOM: quot[ 7]= 807, quot_offset[ 7]= 135\n[    0.208851] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused    TURBO: quot[ 7]=1003, quot_offset[ 7]= 195\n[    0.208856] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused TURBO_L2: quot[ 7]=1065, quot_offset[ 7]=  60\n[    0.209304] cpr3_regulator_init_ctrl: apc1: Default CPR mode = full HW closed-loop\n[    0.209613] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.210234] clk-cpu-osm 179c0000.qcom,clk-cpu-660: using pwrcl speed bin 1 and pvs_ver 0\n[    0.210248] clk-cpu-osm 179c0000.qcom,clk-cpu-660: using perfcl speed bin 1 and pvs_ver 0\n[    0.211708] add_opp: Set OPP pair (300000000 Hz, 572000 uv) on cpu0\n[    0.212025] add_opp: Set OPP pair (1843200000 Hz, 860000 uv) on cpu0\n[    0.212085] add_opp: Set OPP pair (300000000 Hz, 572000 uv) on cpu1\n[    0.212321] add_opp: Set OPP pair (1843200000 Hz, 860000 uv) on cpu1\n[    0.212369] add_opp: Set OPP pair (300000000 Hz, 572000 uv) on cpu2\n[    0.212606] add_opp: Set OPP pair (1843200000 Hz, 860000 uv) on cpu2\n[    0.212650] add_opp: Set OPP pair (300000000 Hz, 572000 uv) on cpu3\n[    0.212889] add_opp: Set OPP pair (1843200000 Hz, 860000 uv) on cpu3\n[    0.212934] add_opp: Set OPP pair (300000000 Hz, 652000 uv) on cpu4\n[    0.213148] add_opp: Set OPP pair (2208000000 Hz, 900000 uv) on cpu4\n[    0.213189] add_opp: Set OPP pair (300000000 Hz, 652000 uv) on cpu5\n[    0.213404] add_opp: Set OPP pair (2208000000 Hz, 900000 uv) on cpu5\n[    0.213445] add_opp: Set OPP pair (300000000 Hz, 652000 uv) on cpu6\n[    0.213643] add_opp: Set OPP pair (2208000000 Hz, 900000 uv) on cpu6\n[    0.213700] add_opp: Set OPP pair (300000000 Hz, 652000 uv) on cpu7\n[    0.213899] add_opp: Set OPP pair (2208000000 Hz, 900000 uv) on cpu7\n[    0.214362] clk_cpu_osm_driver_probe: OSM driver inited\n[    0.214431] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.215714] Attribute fsync_enabled: Invalid permissions 0755\n[    0.215736] ------------[ cut here ]------------\n[    0.215740] WARNING: at ../fs/sysfs/group.c:61\n\n[    0.215749] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.4.247-lapisLazuli r3-Beta+ #1\n[    0.215752] Hardware name: Qualcomm Technologies, Inc. SDM 660 PM660 + PM660L MTP F7A overlay (DT)\n[    0.215757] task: ffffffc539660000 task.stack: ffffffc539668000\n[    0.215767] PC is at internal_create_group.llvm.16689408819209627545+0x28c/0x598\n[    0.215773] LR is at internal_create_group.llvm.16689408819209627545+0x28c/0x598\n[    0.215776] pc : [<ffffff941073bdec>] lr : [<ffffff941073bdec>] pstate: 60400045\n[    0.215780] sp : ffffffc53966bcb0\n[    0.215783] x29: ffffffc53966bcb0 x28: 00000000000011b4 \n[    0.215788] x27: ffffffc537f27c80 x26: 000000000000ee4b \n[    0.215793] x25: ffffff9412111c09 x24: 0000000000000000 \n[    0.215798] x23: 0000000000000000 x22: 00000000000001ed \n[    0.215803] x21: ffffffc537f27a00 x20: ffffffc537f27c08 \n[    0.215808] x19: ffffffc537f28258 x18: 00000000ffff99e4 \n[    0.215813] x17: 00000000001f99e4 x16: ffffff941328ce2c \n[    0.215818] x15: ffffffc539f70008 x14: 0000000000003134 \n[    0.215823] x13: 000000000000086d x12: 0000000000003537 \n[    0.215827] x11: 0000000000000000 x10: 0000000000000000 \n[    0.215832] x9 : b660ae9ad0a20690 x8 : b660ae9ad0a20690 \n[    0.215837] x7 : 766e49203a64656c x6 : ffffff941328d398 \n[    0.215842] x5 : ffffff941328a000 x4 : 0000000000000004 \n[    0.215847] x3 : 0000000000000041 x2 : 0000000000000000 \n[    0.215852] x1 : ffffff941328ad7d x0 : 0000000000000031 \n[    0.215858] \n               PC: 0xffffff941073bdac:\n[    0.215861] bdac  0a1c02c3 aa1303e0 2a1f03e2 aa1f03e4 97fff88f 34fffd80 1400000c 79401020\n[    0.215877] bdcc  12003c16 6a1a001f 54fffea0 f8787b68 aa1903e0 2a1603e2 f9400101 97f7f156\n[    0.215889] bdec  d4210000 17ffffee f9400e89 2a0003f6 b4000149 f9400128 b4000108 91002135\n[    0.215901] be0c  f9400101 aa1303e0 aa1f03e2 97ffecbc f84086a8 b5ffff68 f9401289 b4001169\n[    0.215914] \n               LR: 0xffffff941073bdac:\n[    0.215918] bdac  0a1c02c3 aa1303e0 2a1f03e2 aa1f03e4 97fff88f 34fffd80 1400000c 79401020\n[    0.215929] bdcc  12003c16 6a1a001f 54fffea0 f8787b68 aa1903e0 2a1603e2 f9400101 97f7f156\n[    0.215941] bdec  d4210000 17ffffee f9400e89 2a0003f6 b4000149 f9400128 b4000108 91002135\n[    0.215953] be0c  f9400101 aa1303e0 aa1f03e2 97ffecbc f84086a8 b5ffff68 f9401289 b4001169\n[    0.215966] \n               SP: 0xffffffc53966bc70:\n[    0.215970] bc70  1073bdec ffffff94 3966bcb0 ffffffc5 1073bdec ffffff94 60400045 00000000\n[    0.215982] bc90  000011b4 00000000 37f27a00 ffffffc5 ffffffff ffffffff 37f28258 ffffffc5\n[    0.215994] bcb0  3966bd60 ffffffc5 1261129c ffffff94 00000070 00000000 00000080 00000000\n[    0.216005] bcd0  37f27c80 ffffffc5 37f27c80 ffffffc5 37f27a00 ffffffc5 125165a0 ffffff94\n\n[    0.216032] ---[ end trace 693c336dbc766a95 ]---\n[    0.216036] Call trace:\n[    0.216042] Exception stack(0xffffffc53966bb50 to 0xffffffc53966bc80)\n[    0.216047] bb40:                                   0000000060400045 ffffffc53966bc00\n[    0.216052] bb60: ffffff941073bdec 0000000083371000 0000008000000000 ffffffc537f28258\n[    0.216058] bb80: 0000000000000031 ffffff941328ad7d 0000000000000000 0000000000000041\n[    0.216064] bba0: 0000000000000004 ffffff941328a000 ffffff941328d398 766e49203a64656c\n[    0.216070] bbc0: b660ae9ad0a20690 b660ae9ad0a20690 0000000000000000 0000000000000000\n[    0.216076] bbe0: 0000000000003537 000000000000086d 0000000000003134 ffffffc539f70008\n[    0.216081] bc00: ffffff941328ce2c 00000000001f99e4 00000000ffff99e4 ffffffc537f28258\n[    0.216087] bc20: ffffffc537f27c08 ffffffc537f27a00 00000000000001ed 0000000000000000\n[    0.216093] bc40: 0000000000000000 ffffff9412111c09 000000000000ee4b ffffffc537f27c80\n[    0.216099] bc60: 00000000000011b4 ffffffc53966bcb0 ffffff941073bdec ffffffc53966bcb0\n[    0.216106] [<ffffff941073bdec>] internal_create_group.llvm.16689408819209627545+0x28c/0x598\n[    0.216112] [<ffffff941261129c>] param_sysfs_init+0x4f4/0x5b0\n[    0.216117] [<ffffff9412601418>] do_one_initcall+0xe0/0x200\n[    0.216123] [<ffffff94126019e4>] kernel_init_freeable+0x3e4/0x5d0\n[    0.216129] [<ffffff9411d7f878>] kernel_init+0x10/0x2f0\n[    0.216136] [<ffffff9410483360>] ret_from_fork+0x10/0x30\n[    0.222905] sched-energy energy-costs: cpu=0 freq=633600 cap=184 power_d0=23\n[    0.222914] sched-energy energy-costs: cpu=0 freq=902400 cap=262 power_d0=139\n[    0.222921] sched-energy energy-costs: cpu=0 freq=1113600 cap=324 power_d0=259\n[    0.222927] sched-energy energy-costs: cpu=0 freq=1401600 cap=407 power_d0=482\n[    0.222933] sched-energy energy-costs: cpu=0 freq=1536000 cap=446 power_d0=690\n[    0.222939] sched-energy energy-costs: cpu=0 freq=1747200 cap=508 power_d0=870\n[    0.222945] sched-energy energy-costs: cpu=0 freq=1843200 cap=535 power_d0=1102\n[    0.222952] sched-energy energy-costs: cpu=0 efficiency=1024 max_frequency=1843200 max_efficiency=1638 cpu_max_capacity=535\n[    0.222956] CPU0: update cpu_capacity 535\n[    0.222963] sched-energy energy-costs: cpu=1 freq=633600 cap=184 power_d0=23\n[    0.222969] sched-energy energy-costs: cpu=1 freq=902400 cap=262 power_d0=139\n[    0.222975] sched-energy energy-costs: cpu=1 freq=1113600 cap=324 power_d0=259\n[    0.222982] sched-energy energy-costs: cpu=1 freq=1401600 cap=407 power_d0=482\n[    0.222988] sched-energy energy-costs: cpu=1 freq=1536000 cap=446 power_d0=690\n[    0.222995] sched-energy energy-costs: cpu=1 freq=1747200 cap=508 power_d0=870\n[    0.223000] sched-energy energy-costs: cpu=1 freq=1843200 cap=535 power_d0=1102\n[    0.223007] sched-energy energy-costs: cpu=1 efficiency=1024 max_frequency=1843200 max_efficiency=1638 cpu_max_capacity=535\n[    0.223011] CPU1: update cpu_capacity 535\n[    0.223018] sched-energy energy-costs: cpu=2 freq=633600 cap=184 power_d0=23\n[    0.223024] sched-energy energy-costs: cpu=2 freq=902400 cap=262 power_d0=139\n[    0.223031] sched-energy energy-costs: cpu=2 freq=1113600 cap=324 power_d0=259\n[    0.223037] sched-energy energy-costs: cpu=2 freq=1401600 cap=407 power_d0=482\n[    0.223043] sched-energy energy-costs: cpu=2 freq=1536000 cap=446 power_d0=690\n[    0.223050] sched-energy energy-costs: cpu=2 freq=1747200 cap=508 power_d0=870\n[    0.223056] sched-energy energy-costs: cpu=2 freq=1843200 cap=535 power_d0=1102\n[    0.223063] sched-energy energy-costs: cpu=2 efficiency=1024 max_frequency=1843200 max_efficiency=1638 cpu_max_capacity=535\n[    0.223066] CPU2: update cpu_capacity 535\n[    0.223074] sched-energy energy-costs: cpu=3 freq=633600 cap=184 power_d0=23\n[    0.223080] sched-energy energy-costs: cpu=3 freq=902400 cap=262 power_d0=139\n[    0.223086] sched-energy energy-costs: cpu=3 freq=1113600 cap=324 power_d0=259\n[    0.223092] sched-energy energy-costs: cpu=3 freq=1401600 cap=407 power_d0=482\n[    0.223098] sched-energy energy-costs: cpu=3 freq=1536000 cap=446 power_d0=690\n[    0.223105] sched-energy energy-costs: cpu=3 freq=1747200 cap=508 power_d0=870\n[    0.223111] sched-energy energy-costs: cpu=3 freq=1843200 cap=535 power_d0=1102\n[    0.223117] sched-energy energy-costs: cpu=3 efficiency=1024 max_frequency=1843200 max_efficiency=1638 cpu_max_capacity=535\n[    0.223121] CPU3: update cpu_capacity 535\n[    0.223128] sched-energy energy-costs: cpu=4 freq=1113600 cap=517 power_d0=749\n[    0.223134] sched-energy energy-costs: cpu=4 freq=1401600 cap=651 power_d0=1443\n[    0.223140] sched-energy energy-costs: cpu=4 freq=1747200 cap=811 power_d0=2576\n[    0.223146] sched-energy energy-costs: cpu=4 freq=1958400 cap=909 power_d0=4153\n[    0.223152] sched-energy energy-costs: cpu=4 freq=2150400 cap=998 power_d0=5941\n[    0.223158] sched-energy energy-costs: cpu=4 freq=2208000 cap=1024 power_d0=6688\n[    0.223165] sched-energy energy-costs: cpu=4 efficiency=1638 max_frequency=2208000 max_efficiency=1638 cpu_max_capacity=1024\n[    0.223169] CPU4: update cpu_capacity 1024\n[    0.223175] sched-energy energy-costs: cpu=5 freq=1113600 cap=517 power_d0=749\n[    0.223181] sched-energy energy-costs: cpu=5 freq=1401600 cap=651 power_d0=1443\n[    0.223188] sched-energy energy-costs: cpu=5 freq=1747200 cap=811 power_d0=2576\n[    0.223194] sched-energy energy-costs: cpu=5 freq=1958400 cap=909 power_d0=4153\n[    0.223200] sched-energy energy-costs: cpu=5 freq=2150400 cap=998 power_d0=5941\n[    0.223207] sched-energy energy-costs: cpu=5 freq=2208000 cap=1024 power_d0=6688\n[    0.223214] sched-energy energy-costs: cpu=5 efficiency=1638 max_frequency=2208000 max_efficiency=1638 cpu_max_capacity=1024\n[    0.223218] CPU5: update cpu_capacity 1024\n[    0.223224] sched-energy energy-costs: cpu=6 freq=1113600 cap=517 power_d0=749\n[    0.223231] sched-energy energy-costs: cpu=6 freq=1401600 cap=651 power_d0=1443\n[    0.223237] sched-energy energy-costs: cpu=6 freq=1747200 cap=811 power_d0=2576\n[    0.223243] sched-energy energy-costs: cpu=6 freq=1958400 cap=909 power_d0=4153\n[    0.223249] sched-energy energy-costs: cpu=6 freq=2150400 cap=998 power_d0=5941\n[    0.223256] sched-energy energy-costs: cpu=6 freq=2208000 cap=1024 power_d0=6688\n[    0.223263] sched-energy energy-costs: cpu=6 efficiency=1638 max_frequency=2208000 max_efficiency=1638 cpu_max_capacity=1024\n[    0.223266] CPU6: update cpu_capacity 1024\n[    0.223274] sched-energy energy-costs: cpu=7 freq=1113600 cap=517 power_d0=749\n[    0.223280] sched-energy energy-costs: cpu=7 freq=1401600 cap=651 power_d0=1443\n[    0.223286] sched-energy energy-costs: cpu=7 freq=1747200 cap=811 power_d0=2576\n[    0.223292] sched-energy energy-costs: cpu=7 freq=1958400 cap=909 power_d0=4153\n[    0.223298] sched-energy energy-costs: cpu=7 freq=2150400 cap=998 power_d0=5941\n[    0.223304] sched-energy energy-costs: cpu=7 freq=2208000 cap=1024 power_d0=6688\n[    0.223311] sched-energy energy-costs: cpu=7 efficiency=1638 max_frequency=2208000 max_efficiency=1638 cpu_max_capacity=1024\n[    0.223315] CPU7: update cpu_capacity 1024\n[    0.223320] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.230354] socinfo_print: v0.11, id=317, ver=1.0, raw_id=140, raw_ver=0, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65563, pmic_die_revision=131072 foundry_id=3 serial_number=1212260414 num_pmics=2\n[    0.230366] msm_bus_fabric_init_driver\n[    0.243678] msm_bus_dev_init_qos: Skipping QOS init for 1\n[    0.243724] msm_bus_dev_init_qos: Skipping QOS init for 727\n[    0.243729] msm_bus_dev_init_qos: Skipping QOS init for 728\n[    0.245227] cam_avdd_gpio_regulator: supplied by pm660l_bob\n[    0.245451] cam_rear_avdd_gpio_regulator: supplied by pm660l_bob\n[    0.245657] cam_dvdd_gpio_regulator: supplied by pm660_s5\n[    0.245845] cam_rear_dvdd_gpio_regulator: supplied by pm660_s5\n[    0.246070] vgaarb: loaded\n[    0.246194] qcom,qpnp-misc 800f000.qcom,spmi:qcom,pm660@0:qcom,misc@900: probe successful\n[    0.246956] SCSI subsystem initialized\n[    0.247330] usbcore: registered new interface driver usbfs\n[    0.247349] usbcore: registered new interface driver hub\n[    0.247440] usbcore: registered new device driver usb\n[    0.247651] soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.247951] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.247978] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)\n[    0.248137] input: qpnp_pon as /devices/virtual/input/input0\n[    0.248862] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: No PON config. specified\n[    0.248904] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (secondary PMIC) and 'cold' boot\n[    0.248928] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from GP1 (Keypad_Reset1)\n[    0.249634] i2c-msm-v2 c175000.i2c: probing driver i2c-msm-v2\n[    0.251885] i2c-msm-v2 c1b6000.i2c: probing driver i2c-msm-v2\n[    0.253214] media: Linux media interface: v0.10\n[    0.253267] Linux video capture interface: v2.00\n[    0.257232] cpufreq: driver msm up and running\n[    0.259478] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node adsp_region\n[    0.259842] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.260118] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_region\n[    0.260791] ION heap system created\n[    0.261080] ION heap adsp created at 0x00000000f5800000 with size 800000\n[    0.261093] ION heap qsecom created at 0x00000000f6000000 with size 1400000\n[    0.261103] ION heap secure_display created at 0x00000000f7400000 with size 5c00000\n[    0.261120] ION heap secure_heap created\n[    0.262302] PMIC@SID0: PM660 v2.0 options: 0, 0, 0, 0\n[    0.262460] PMIC@SID2: PM660L v2.0.1 options: 0, 0, 0, 0\n[    0.263695] ipa get_ipa_dts_configuration:4871 : apps shutdown support = Disabled\n[    0.263779] IPA smmu_info.s1_bypass=1 smmu_info.fast_map=0\n[    0.270368] gdsc_vfe0: supplied by gdsc_camss_top\n[    0.270755] gdsc_vfe1: supplied by gdsc_camss_top\n[    0.271145] gdsc_cpp: supplied by gdsc_camss_top\n[    0.272299] gdsc_gpu_gx: supplied by gfx_corner\n[    0.275377] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.275391] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.276565] mdss_pll c994400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.276578] mdss_pll c994400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.276604] mdss_pll c994400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.277690] dsi_pll_clock_register_14nm: Registered DSI PLL ndx=0 clocks successfully\n[    0.277745] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.277754] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.277953] mdss_pll c996400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.277966] mdss_pll c996400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.277979] mdss_pll c996400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.278471] dsi_pll_clock_register_14nm: Registered DSI PLL ndx=1 clocks successfully\n[    0.278503] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.300254] arm-smmu 16c0000.arm,smmu-anoc2: found 29 context interrupt(s) but have 21 context banks. assuming 21 context interrupts.\n[    0.302110] arm-smmu 5100000.arm,smmu-lpass_q6: found 17 context interrupt(s) but have 14 context banks. assuming 14 context interrupts.\n[    0.303694] arm-smmu cd00000.arm,smmu-mmss: found 24 context interrupt(s) but have 17 context banks. assuming 17 context interrupts.\n[    0.304117] arm-smmu 5040000.arm,smmu-kgsl: regulator defer delay 80\n[    0.304511] arm-smmu 5040000.arm,smmu-kgsl: found 8 context interrupt(s) but have 5 context banks. assuming 5 context interrupts.\n[    0.305377] arm-smmu 5180000.arm,smmu-turing_q6: found 17 context interrupt(s) but have 13 context banks. assuming 13 context interrupts.\n[    0.310611] iommu: Adding device 18800000.qcom,icnss to group 0\n[    0.311536] iommu: Adding device soc:iommu_test_device to group 1\n[    0.311629] iommu: Adding device soc:usb_audio_qmi_dev to group 2\n[    0.312295] iommu: Adding device soc:qcom,msm-audio-ion to group 3\n[    0.313414] iommu: Adding device 14780000.qcom,ipa:ipa_smmu_ap to group 4\n[    0.313441] iommu: Adding device 14780000.qcom,ipa:ipa_smmu_uc to group 5\n[    0.316566] Advanced Linux Sound Architecture Driver Initialized.\n[    0.317799] Bluetooth: ffffffc53966bd78\n[    0.317844] NET: Registered protocol family 31\n[    0.317848] Bluetooth: ffffffc53966bd78\n[    0.317864] Bluetooth: ffffffc53966bd28\n[    0.317877] Bluetooth: ffffffc53966bcf8\n[    0.317990] Bluetooth: ffffffc53966bd28\n[    0.318590] cfg80211: World regulatory domain updated:\n[    0.318596] cfg80211:  DFS Master region: unset\n[    0.318600] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)\n[    0.318609] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.318613] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.318619] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.318623] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.318628] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.318632] cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.318637] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)\n[    0.318640] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)\n[    0.319790] NetLabel: Initializing\n[    0.319794] NetLabel:  domain hash size = 128\n[    0.319797] NetLabel:  protocols = UNLABELED CIPSOv4\n[    0.319837] NetLabel:  unlabeled traffic allowed by default\n[    0.319993] pcie:pcie_init.\n[    0.327446] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=5400mV ncp_voltage=5400mV bst_voltage=5500mV\n[    0.332360] ipa ipa2_uc_state_check:296 uC interface not initialized\n[    0.332384] ipa ipa_sps_irq_control_all:963 EP (2) not allocated.\n[    0.332391] ipa ipa_sps_irq_control_all:963 EP (5) not allocated.\n[    0.336307] sps:BAM 0x0000000014784000 is registered.\n[    0.340075] sps:BAM 0x0000000014784000 (va:0xffffff8008e40000) enabled: ver:0x27, number of pipes:20\n[    0.354465] IPA driver initialization was successful.\n[    0.355586] clocksource: Switched to clocksource arch_sys_counter\n[    0.413650] gcc-debug-sdm660 62000.qcom,cc-debug: Registered debug mux successfully\n[    0.414768] NET: Registered protocol family 2\n[    0.415416] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.415595] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.416429] TCP: Hash tables configured (established 32768 bind 32768)\n[    0.416579] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.416635] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.416868] NET: Registered protocol family 1\n[    0.416920] PCI: CLS 0 bytes, default 64\n[    0.417364] Trying to unpack rootfs image as initramfs...\n[    0.777584] Freeing initrd memory: 11540K\n[    0.782325] vmscan: error setting kswapd cpu affinity mask\n[    0.787123] VFS: Disk quotas dquot_6.6.0\n[    0.787222] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.787906] exFAT: file-system version 2.2.0-3arter97\n[    0.788434] Registering sdcardfs 0.1\n[    0.789925] fuse init (API version 7.23)\n[    0.790790] SELinux:  Registering netfilter hooks\n[    0.791245] pfk_ecryptfs [pfk_ecryptfs_init]: PFK ecryptfs inited successfully\n[    0.791250] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    0.791260] pfk [pfk_init]: Driver initialized successfully\n[    0.793875] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)\n[    0.793886] io scheduler noop registered\n[    0.793893] io scheduler deadline registered\n[    0.793996] io scheduler cfq registered (default)\n[    0.794004] io scheduler test-iosched registered\n[    0.801406] msm_dss_get_res_byname: 'vbif_nrt_phys' resource not found\n[    0.801424] mdss_mdp_probe+0x264/0x1ec0->msm_dss_ioremap_byname: 'vbif_nrt_phys' msm_dss_get_res_byname failed\n[    0.802125] mdss_mdp_irq_clk_setup: unable to get core gdsc regulator\n[    0.803619] No change in context(0==0), skip\n[    0.804493] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:0 num:0 rect:0 ndx:0x1 prio:0\n[    0.804498] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:4 num:1 rect:0 ndx:0x2 prio:1\n[    0.804533] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:1 num:6 rect:0 ndx:0x40 prio:2\n[    0.804547] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:1 num:6 rect:1 ndx:0x40 prio:2\n[    0.804551] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:5 num:7 rect:0 ndx:0x80 prio:3\n[    0.804565] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:5 num:7 rect:1 ndx:0x80 prio:3\n[    0.804569] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:9 num:12 rect:0 ndx:0x1000 prio:4\n[    0.804583] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:9 num:12 rect:1 ndx:0x1000 prio:4\n[    0.804596] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:2 num:10 rect:0 ndx:0x400 prio:0\n[    0.804606] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-pipe-sw-reset-off : u32 array read\n[    0.804704] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-ib-factor-overlap : u32 array read\n[    0.804712] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-bus-througput-factor : u32 array read\n[    0.806172] xlog_status: enable:0, panic:1, dump:2\n[    0.806672] iommu: Adding device c900000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb to group 6\n[    0.807018] iommu: Adding device c900000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb to group 7\n[    0.807157] mdss_mdp_probe: mdss version = 0x30020000, bootloader display is on, num 1, intf_sel=0x00000100\n[    0.809280] mdss_smmu_probe: iommu v2 domain[0] mapping and clk register successful!\n[    0.809528] mdss_smmu_probe: iommu v2 domain[2] mapping and clk register successful!\n[    0.813136] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->0\n[    0.813609] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_nt36672a_tianma_fhdplus_video:config0:1:none:cfg:single_dsi panel_name:qcom,mdss_dsi_nt36672a_tianma_fhdplus_video\n[    0.813682] mdss_dsi_panel_init: Panel Name = tianma nt36672a fhdplus video mode dsi panel\n[    0.813826] mdss_dsi_parse_split_link_settings: enable 0 sublinks-count 0 lanes per sublink 0\n[    0.813866] mdss_dsi_panel_timing_from_dt: found new timing \"qcom,mdss_dsi_nt36672a_tianma_fhdplus_video\" (ffffffc53966b490)\n[    0.813892] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-post-panel-on-command\n[    0.813900] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-timing-switch-command\n[    0.813903] mdss_dsi_panel_get_dsc_cfg_np: cannot find dsc config node:config0\n[    0.814288] mdss_dsi_parse_panel_features: ulps feature enabled\n[    0.814297] mdss_dsi_parse_panel_features: ulps during suspend feature disabled\n[    0.814305] mdss_dsi_parse_dms_config: dynamic switch feature enabled: 0\n[    0.814378] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-on\n[    0.814386] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-off\n[    0.814439] dyn_fps: min = 48, max = 60\n[    0.814811] mdss_dsi_parse_ctrl_params:4938 Unable to read qcom,display-id, data=0000000000000000,len=20\n[    0.814846] mdss_dsi_parse_gpio_params: bklt_en gpio not specified\n[    0.814852] mdss_dsi_parse_gpio_params: avdd_en gpio not specified\n[    0.814943] msm_dss_get_res_byname: 'dsi_phy_regulator' resource not found\n[    0.814959] mdss_dsi_retrieve_ctrl_resources+0x174/0x240->msm_dss_ioremap_byname: 'dsi_phy_regulator' msm_dss_get_res_byname failed\n[    0.814964] mdss_dsi_retrieve_ctrl_resources: ctrl_base=ffffff8008a7a000 ctrl_size=400 phy_base=ffffff8008ac2400 phy_size=588\n[    0.815122] dsi_panel_device_register: Continuous splash enabled\n[    0.815257] Unable to find fb node for device: c994000.qcom,mdss_dsi_ctrl0\n[    0.815454] mdss_register_panel: adding framebuffer device c994000.qcom,mdss_dsi_ctrl0\n[    0.820638] mdss_dsi_ctrl_probe: Dsi Ctrl->0 initialized, DSI rev:0x20010000, PHY rev:0x2\n[    0.820682] mdss_dsi_status_init: DSI status check interval:1000\n[    0.821791] mdss_dp_usbpd_setup: get_usbpd phandle failed (-11)\n[    0.821796] mdss_dp_probe: Error usbpd setup!\n[    0.823040] mdss_register_panel: adding framebuffer device soc:qcom,mdss_wb_panel\n[    0.823712] mdss_fb_probe: fb0: split_mode:0 left:0 right:0\n[    0.824386] mdss_fb_register: FrameBuffer[0] 1080x2340 registered successfully!\n[    0.826114] mdss_fb_probe: fb1: split_mode:0 left:0 right:0\n[    0.826248] mdss_fb_register: FrameBuffer[1] 640x480 registered successfully!\n[    0.827393] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    0.827893] mdss_mdp_kcal_store_fb0_ctl panel name tianma nt36672a fhdplus video mode dsi panel\n[    0.827897] mdss_mdp_kcal_store_fb0_ctl panel found...\n[    0.827944] kcal_ctrl_init: registered\n[    0.838290] spcom [spcom_init]: spcom driver version 1.2 23-Aug-2017.\n[    0.839846] audio_notifer_reg_service: service SSR_MODEM is in use\n[    0.843588] In memshare_probe, Memshare probe success\n[    0.848878] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.849039] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.849108] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.849475] subsys-pil-tz cce0000.qcom,venus: invalid resource\n[    0.849481] subsys-pil-tz cce0000.qcom,venus: Failed to iomap base register\n[    0.850435] subsys-pil-tz cce0000.qcom,venus: for venus segments only will be dumped.\n[    0.851213] subsys-pil-tz soc:qcom,kgsl-hyp: invalid resource\n[    0.851217] subsys-pil-tz soc:qcom,kgsl-hyp: Failed to iomap base register\n[    0.851228] subsys-pil-tz soc:qcom,kgsl-hyp: for a512_zap segments only will be dumped.\n[    0.853166] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    0.858594] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.858787] icnss: Platform driver probed successfully\n[    0.861938] msm_rpm_log_probe: OK\n[    0.863434] uart_tx_gpio is not available\n[    0.863440] uart_rx_gpio is not available\n[    0.863443] uart_cts_gpio is not available\n[    0.863445] uart_rfr_gpio is not available\n[    0.865183] sps: BAM device 0x000000000c184000 is not registered yet.\n[    0.865376] sps:BAM 0x000000000c184000 is registered.\n[    0.866711] c1af000.uart: ttyHS0 at MMIO 0xc1af000 (irq = 317, base_baud = 460800) is a MSM HS UART\n[    0.867857] msm_serial_hs module loaded\n[    0.870482] random: nonblocking pool is initialized\n[    0.955166] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 8\n[    0.955657] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 9\n[    0.982954] brd: module loaded\n[    0.994461] loop: module loaded\n[    0.995772] zram: Added device: zram0\n[    0.996869] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1001000\n[    0.996900] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.996909] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    0.996914] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 0\n[    0.997224] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    1.001398] sdm660-pinctrl 3000000.pinctrl: pin_config_group_set op failed for group 74\n[    1.001408] ant_check soc:ant_check: Error applying setting, reverse things back\n[    1.001432] Macle ant_probe\n[    1.001539] Macle irq_gpio=74\n[    1.001650] input: ant_check-input as /devices/virtual/input/input1\n[    1.001673] ant_probe: gpios = 0, gpion=0\n[    1.001677] Macle irq = 274\n[    1.001884] ant_probe end\n[    1.004141] msm-cdc-pinctrl soc:sdw_clk_data_pinctrl: msm_cdc_pinctrl_probe: Cannot get cdc gpio pinctrl:-22\n[    1.004156] msm-cdc-pinctrl: probe of soc:sdw_clk_data_pinctrl failed with error -22\n[    1.004175] msm-cdc-pinctrl soc:wsa_spkr_en1_pinctrl: msm_cdc_pinctrl_probe: Cannot get cdc gpio pinctrl:-22\n[    1.004180] msm-cdc-pinctrl: probe of soc:wsa_spkr_en1_pinctrl failed with error -22\n[    1.004198] msm-cdc-pinctrl soc:wsa_spkr_en2_pinctrl: msm_cdc_pinctrl_probe: Cannot get cdc gpio pinctrl:-22\n[    1.004204] msm-cdc-pinctrl: probe of soc:wsa_spkr_en2_pinctrl failed with error -22\n[    1.006054] qce 1de0000.qcedev: Qualcomm Crypto 5.3.4 device found @0x1de0000\n[    1.006064] qce 1de0000.qcedev: CE device = 0x0\n               IO base, CE = 0xffffff8009dc0000\n               Consumer (IN) PIPE 2,    Producer (OUT) PIPE 3\n               IO base BAM = 0x0000000000000000\n               BAM IRQ 93\n               Engines Availability = 0x2011053\n[    1.006262] sps:BAM 0x0000000001dc4000 is registered.\n[    1.006463] sps:BAM 0x0000000001dc4000 (va:0xffffff800b080000) enabled: ver:0x27, number of pipes:16\n[    1.006708] QCE50: qce_sps_init:  Qualcomm MSM CE-BAM at 0x0000000001dc4000 irq 93\n[    1.009966] qcrypto 1de0000.qcrypto: Qualcomm Crypto 5.3.4 device found @0x1de0000\n[    1.009975] qcrypto 1de0000.qcrypto: CE device = 0x0\n               IO base, CE = 0xffffff800b0c0000\n               Consumer (IN) PIPE 4,    Producer (OUT) PIPE 5\n               IO base BAM = 0x0000000000000000\n               BAM IRQ 93\n               Engines Availability = 0x2011053\n[    1.010327] QCE50: qce_sps_init:  Qualcomm MSM CE-BAM at 0x0000000001dc4000 irq 93\n[    1.010723] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    1.010839] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    1.010904] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    1.010961] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    1.011018] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    1.011087] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    1.011144] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    1.011202] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    1.011264] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    1.011324] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    1.011387] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    1.011447] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    1.011508] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    1.011574] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    1.011634] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    1.011692] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    1.011752] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    1.011811] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    1.011870] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    1.011929] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    1.013982] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    1.014990] SCSI Media Changer driver v0.25 \n[    1.017653] sps:BAM 0x000000000c184000 (va:0xffffff8008e20000) enabled: ver:0x19, number of pipes:12\n[    1.018558] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    1.021050] tun: Universal TUN/TAP device driver, 1.6\n[    1.021054] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    1.021170] sky2: driver version 1.30\n[    1.022371] PPP generic driver version 2.4.2\n[    1.022470] PPP BSD Compression module registered\n[    1.022476] PPP Deflate Compression module registered\n[    1.022514] PPP MPPE Compression module registered\n[    1.022523] NET: Registered protocol family 24\n[    1.022648] CLD80211: Initializing\n[    1.022738] usbcore: registered new interface driver asix\n[    1.022759] usbcore: registered new interface driver ax88179_178a\n[    1.022782] usbcore: registered new interface driver cdc_ether\n[    1.022806] usbcore: registered new interface driver net1080\n[    1.022825] usbcore: registered new interface driver cdc_subset\n[    1.022843] usbcore: registered new interface driver zaurus\n[    1.022877] usbcore: registered new interface driver cdc_ncm\n[    1.026040] i2c-msm-v2 c1b6000.i2c: NACK: slave not responding, ensure its powered: msgs(n:1 cur:0 tx) bc(rx:0 tx:4) mode:FIFO slv_addr:0x28 MSTR_STS:0x0d1300c8 OPER:0x00000090\n[    1.026082] nq-nci 6-0028: nfcc_hw_check: - i2c_master_send Error\n[    1.026087] nq-nci 6-0028: nfcc_hw_check: - NFCC HW not available\n[    1.026293] nq-nci 6-0028: nqx_probe: probing nqxx failed, check hardware\n[    1.026425] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.032628] msm_sharedmem: sharedmem_register_qmi: qmi init successful\n[    1.033700] msm-dwc3 a800000.ssusb: unable to get dbm device\n[    1.035449] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    1.035470] ehci-pci: EHCI PCI platform driver\n[    1.035491] ehci-platform: EHCI generic platform driver\n[    1.035860] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    1.035871] ohci-pci: OHCI PCI platform driver\n[    1.035893] ohci-platform: OHCI generic platform driver\n[    1.036576] usbcore: registered new interface driver usb-storage\n[    1.036596] usbcore: registered new interface driver usb_ehset_test\n[    1.038383] usb_qcrndis_init: failed to register diag -17\n[    1.039687] qpnp-pdphy 800f000.qcom,spmi:qcom,pm660@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.040713] mousedev: PS/2 mouse device common for all mice\n[    1.040919] [synaptics] lct_syna_check_lcd (line 3906): F7A_LCM_ID0 = 0, F7A_LCM_ID1 = 0\n[    1.040930] [synaptics] syna_tcm_module_init (line 3945): Verify BOE LCM ID Failed, not BOE TP!\n[    1.040960] [NVT-ts] nvt_driver_init 2112: start\n[    1.040972] [NVT-ts] nvt_driver_init 2130: TP info: [Vendor]tianma [IC]nt36672a\n[    1.041664] [NVT-ts] nvt_ts_probe 1372: start\n[    1.041697] [NVT-ts] nvt_parse_dt 846: novatek,irq-gpio=67\n[    1.160283] [NVT-ts] nvt_ts_check_chip_ver_trim 1312: buf[1]=0x0A, buf[2]=0x00, buf[3]=0x00, buf[4]=0x72, buf[5]=0x66, buf[6]=0x03\n[    1.160289] [NVT-ts] nvt_ts_check_chip_ver_trim 1338: This is NVT touch IC\n[    1.230749] [NVT-ts] nvt_read_pid 479: PID=5911\n[    1.232023] input: NVTCapacitiveTouchScreen as /devices/virtual/input/input2\n[    1.232106] [NVT-ts] nvt_ts_probe 1507: int_trigger_type=1\n[    1.232155] [NVT-ts] nvt_ts_probe 1519: request irq 267 succeed\n[    1.234307] [LCT_TP_GESTURE] init_lct_tp_gesture (line 77): Initialization tp_gesture node!\n[    1.234321] [LCT_TP_GESTURE] lct_creat_proc_tp_entry (line 107): /proc/tp_gesture is okay!\n[    1.234327] [LCT_TP_GRIP_AREA] init_lct_tp_grip_area (line 79): Initialization /proc/tp_grip_area node!\n[    1.234334] [LCT_TP_GRIP_AREA] init_lct_tp_grip_area (line 95): /proc/tp_grip_area is okay!\n[    1.234339] [NVT-ts] nvt_get_oem_data 638: ++\n[    1.310133] [NVT-ts] Init_BootLoader 358: Init OK \n[    1.380020] [NVT-ts] Resume_PD 199: Resume PD OK\n[    1.510172] [NVT-ts] nvt_get_oem_data 748: --\n[    1.510176] [NVT-ts] nvt_get_xiaomi_lockdown_info 825: The maker of Touch Panel & CG Lamination: 0x46\n[    1.510180] [NVT-ts] nvt_get_xiaomi_lockdown_info 827: Display maker: 0x36\n[    1.510184] [NVT-ts] nvt_get_xiaomi_lockdown_info 829: CG ink color: 0x32\n[    1.510187] [NVT-ts] nvt_get_xiaomi_lockdown_info 831: HW version: 0x01\n[    1.510190] [NVT-ts] nvt_get_xiaomi_lockdown_info 833: Project ID: 0x00F7\n[    1.510193] [NVT-ts] nvt_get_xiaomi_lockdown_info 835: CG maker: 0x32\n[    1.510196] [NVT-ts] nvt_get_xiaomi_lockdown_info 837: Reservation byte: 0x00\n[    1.510202] [NVT-ts] lct_nvt_tp_info_node_init (line 855): LCM information : tianma nt36672a fhdplus video mode dsi panel\n[    1.510210] [LCT_TP_INFO] init_lct_tp_info (line 83): Initialization tp_info & tp_lockdown_info node!\n[    1.510224] [LCT_TP_INFO] lct_creat_proc_tp_entry (line 134): /proc/tp_info & /proc/tp_lockdown_info is okay!\n[    1.510238] [LCT_TP_INFO] lct_creat_sys_tp_entry (line 204): /sys/android_tp/tp_info & tp_lockdown_info is okay!\n[    1.510245] [NVT-ts] nvt_flash_proc_init 703: Succeeded!\n[    1.510248] [NVT-ts] nvt_flash_proc_init 706: ============================================================\n[    1.510252] [NVT-ts] nvt_flash_proc_init 707: Create /proc/NVTflash\n[    1.510255] [NVT-ts] nvt_flash_proc_init 708: ============================================================\n[    1.510265] [NVT-ts] nvt_extra_proc_init 1074: create proc/nvt_fw_version Succeeded!\n[    1.510272] [NVT-ts] nvt_extra_proc_init 1082: create proc/nvt_baseline Succeeded!\n[    1.510278] [NVT-ts] nvt_extra_proc_init 1090: create proc/nvt_raw Succeeded!\n[    1.510285] [NVT-ts] nvt_extra_proc_init 1098: create proc/nvt_diff Succeeded!\n[    1.510290] [NVT-ts] nvt_extra_proc_init 1106: create proc/nvt_pwr_plug_switch Succeeded!\n[    1.510319] [NVT-ts] nvt_mp_proc_init 2069: create /proc/nvt_selftest Succeeded!\n[    1.510323] [NVT-ts] nvt_ts_probe 1612: end\n[    1.510643] sps: BAM device 0x000000000c144000 is not registered yet.\n[    1.510848] sps:BAM 0x000000000c144000 is registered.\n[    1.510997] sps:BAM 0x000000000c144000 (va:0xffffff8009ee0000) enabled: ver:0x19, number of pipes:12\n[    1.511210] nvt_driver_init: finished\n[    1.511232] [LCT_TP_SELFTEST] tp_selftest_init (line 194): create /proc/tp_selftest success\n[    1.511327] stmvl53l0_init: Enter\n[    1.511331] stmvl53l0_init_cci: Enter\n[    1.512755] stmvl53l0_init_cci: End\n[    1.512758] stmvl53l0_init: End\n[    1.514531] tyt fpc1020_probe:615\n[    1.514536] Macle fpc1020_probe failed as fpsensor=2(1=fp)\n[    1.514550] fpc1020: probe of soc:fpc1020 failed with error -1\n[    1.514650] tyt fpc1020_init:778\n[    1.514653] fpc1020_init OK\n[    1.514998] Macle11 gf_probe\n[    1.515192] input: uinput-goodix as /devices/virtual/input/input3\n[    1.515266] adasdad\n[    1.515269] gf3208: version V1.2.10\n[    1.515372] gf3208: status = 0x0\n[    1.515795] qcom,qpnp-rtc 800f000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: rtc core: registered qpnp_rtc as rtc0\n[    1.516223] i2c /dev entries driver\n[    1.516896] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb1 to group 10\n[    1.517342] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 8, cb->name: :vfe sid [0] = 3072\n               ,\n[    1.517346] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 8, cb->name: :vfe sid [1] = 3073\n               ,\n[    1.517350] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 8, cb->name: :vfe sid [2] = 3074\n               ,\n[    1.517353] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 8, cb->name: :vfe sid [3] = 3075\n               ,\n[    1.517510] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb2 to group 11\n[    1.517660] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 2, cb->name: :cpp sid [0] = 2560\n               ,\n[    1.517771] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb4 to group 12\n[    1.517862] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 2, cb->name: :jpeg_enc0 sid [0] = 2048\n               ,\n[    1.517956] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb5 to group 13\n[    1.518049] CAM-SMMU cam_smmu_populate_sids:2331 __debug cnt = 2, cb->name: :jpeg_dma sid [0] = 2049\n               ,\n[    1.538370] msm_actuator_platform_probe:1987 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    1.561883] msm_cci_init:1439: hw_version = 0x10060000\n[    1.562070] msm_cci_irq:1797 MASTER_0 error 0x10000000\n[    1.562096] msm_cci_i2c_read:960 read_words = 0, exp words = 4\n[    1.562100] msm_cci_i2c_read_bytes:1043 failed rc -22\n[    1.562152] read_eeprom_memory: read failed\n[    1.562156] msm_eeprom_platform_probe read_eeprom_memory failed\n[    1.583728] qcom,eeprom: probe of ca0c000.qcom,cci:qcom,eeprom@0 failed with error -22\n[    1.584059] msm_eeprom_platform_probe failed 1822\n[    1.584737] msm_eeprom_platform_probe failed 1822\n[    1.619549] msm_cci_init:1439: hw_version = 0x10060000\n[    2.150616] i=2 flag offset 412\n[    2.150620] Invalid flag = 0x0\n[    2.150623] i=1 flag offset 386\n[    2.150625] Invalid flag = 0x0\n[    2.150627] i=0 flag offset 360\n[    2.150631] lavender_s5k5e8_ofilm_i_get_otp_vendor_module_id flag = 0x55, mid = 0x7, lensid = 0x38, sensorid = 0x9 \n[    2.150636] get_otp_vendor_module_id 1724 eeprom_name=lavender_s5k5e8_ofilm_i, module_id=0x7\n[    2.206958] msm_cci_init:1439: hw_version = 0x10060000\n[    2.207123] msm_cci_irq:1797 MASTER_0 error 0x10000000\n[    2.207147] msm_cci_i2c_read:960 read_words = 0, exp words = 4\n[    2.207150] msm_cci_i2c_read_bytes:1043 failed rc -22\n[    2.207201] read_eeprom_memory: read failed\n[    2.207203] msm_eeprom_platform_probe read_eeprom_memory failed\n[    2.228268] qcom,eeprom: probe of ca0c000.qcom,cci:qcom,eeprom@4 failed with error -22\n[    2.263317] msm_cci_init:1439: hw_version = 0x10060000\n[    2.800618] i=2 flag offset 412\n[    2.800621] Invalid flag = 0x0\n[    2.800623] i=1 flag offset 386\n[    2.800625] Invalid flag = 0x0\n[    2.800628] i=0 flag offset 360\n[    2.800631] lavender_s5k5e8_sunny_ii_get_otp_vendor_module_id flag = 0x55, mid = 0x7, lensid = 0x38, sensorid = 0x9 \n[    2.800636] get_otp_vendor_module_id 1724 eeprom_name=lavender_s5k5e8_sunny_ii, module_id=0x0\n[    2.841570] MSM-CPP cpp_probe:4620 cpp_probe register cx_ipeak received bit 1\n[    2.844896] MSM-CPP cpp_init_hardware:1141 CPP HW Version: 0x60010002\n[    2.844908] MSM-CPP cpp_init_hardware:1159 stream_cnt:0\n[    2.845176] MSM-CPP cpp_release_hardware:1222 cpp hw release done\n[    2.847584] CAM-SOC msm_camera_get_reg_base:864 err: mem resource vfe_fuse not found\n[    2.847590] CAM-SOC msm_camera_get_res_size:907 err: mem resource vfe_fuse not found\n[    2.849549] CAM-SOC msm_camera_get_reg_base:864 err: mem resource vfe_fuse not found\n[    2.849553] CAM-SOC msm_camera_get_res_size:907 err: mem resource vfe_fuse not found\n[    2.858481] __msm_jpeg_init:1577] Jpeg Device id 0\n[    2.870894] iommu: Adding device cc00000.qcom,vidc:non_secure_cb to group 14\n[    2.873800] iommu: Adding device cc00000.qcom,vidc:firmware_cb to group 15\n[    2.873976] iommu: Adding device cc00000.qcom,vidc:secure_bitstream_cb to group 16\n[    2.876046] iommu: Adding device cc00000.qcom,vidc:secure_pixel_cb to group 17\n[    2.877222] iommu: Adding device cc00000.qcom,vidc:secure_non_pixel_cb to group 18\n[    2.882150] sde_smmu_callback: <SDEROT_INFO> sde_smmu_callback registered domain: 1\n[    2.882158] sde_smmu_callback: <SDEROT_INFO> sde_smmu_callback registered domain: 0\n[    2.883045] No change in context(0==0), skip\n[    2.884243] sde_rotator_evtlog_create_debugfs: evtlog_status: enable:0, panic:1, dump:2\n[    2.884283] sde_rotator c900000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    2.885439] usbcore: registered new interface driver uvcvideo\n[    2.885442] USB Video Class driver (1.1.1)\n[    2.885447] gspca_main: v2.14.0 registered\n[    2.886536] sunxing get global set fcc max 2.3A\n[    2.886675] QCOM-BATT: pl_disable_vote_callback: parallel charging disabled\n[    2.888656] thermal thermal_zone0: failed to read out thermal zone (-19)\n[    2.888669] enter sysfs create file thermal\n[    2.889135] get prop 149 is not supported in usb\n[    2.889154] PMI: smblib_usb_plugin_locked: lct IRQ: usbin-plugin detached\n[    2.889183] [NVT-ts] nvt_ts_usb_plugin_work_func 1139: ++\n[    2.889187] [NVT-ts] nvt_ts_usb_plugin_work_func 1141: usb_plugin = 0\n[    2.890834] get prop 149 is not supported in usb\n[    2.891032] lct battery_capacity =1154025088\n[    2.894692] QPNP SMB2 probed successfully usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    2.897956] lct battery_capacity =905133184\n[    2.898355] get prop 149 is not supported in usb\n[    2.898460] qpnp_vadc_read: Error reading vadc_hc channel 78\n[    2.898468] thermal thermal_zone1: failed to read out thermal zone (-517)\n[    2.898604] qpnp_vadc_read: Error reading vadc_hc channel 79\n[    2.898609] thermal thermal_zone2: failed to read out thermal zone (-517)\n[    2.898723] qpnp_vadc_read: Error reading vadc_hc channel 80\n[    2.898728] thermal thermal_zone3: failed to read out thermal zone (-517)\n[    2.917685] msm_lmh_dcvs:lmh_activate_trip lmh_activate_trip: disable not supported\n[    2.918549] msm_lmh_dcvs:lmh_activate_trip lmh_activate_trip: disable not supported\n[    2.918951] md: linear personality registered for level -1\n[    2.919067] device-mapper: uevent: version 1.0.3\n[    2.919400] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com\n[    2.920476] device-mapper: req-crypt: dm-req-crypt successfully initalized.\n\n[    2.921289] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in device tree\n[    2.921353] bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    2.921357] bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    2.921905] sdhci: Secure Digital Host Controller Interface driver\n[    2.921909] sdhci: Copyright(c) Pierre Ossman\n[    2.921914] sdhci-pltfm: SDHCI platform and OF driver helper\n[    2.923278] qcom_ice_get_pdevice: found ice device ffffffc445058e00\n[    2.923282] qcom_ice_get_pdevice: matching platform device ffffffc537e77c00\n[    2.923673] sdhci_msm c0c4000.sdhci: sdhci_msm_pm_qos_parse_latency: invalid number of values for property qcom,pm-qos-cmdq-latency-us: expected=2 actual=4\n[    2.923680] sdhci_msm c0c4000.sdhci: sdhci_msm_pm_qos_parse_latency: invalid number of values for property qcom,pm-qos-legacy-latency-us: expected=2 actual=4\n[    2.923685] sdhci_msm c0c4000.sdhci: sdhci_msm_pm_qos_parse: invalid PM QoS latency values. Voting for cpu group will be disabled\n[    2.927795] qcom_ice c0c8000.sdcc1ice: QC ICE 3.0.72 device found @0xffffff8009db0000\n[    2.928346] sdhci_msm c0c4000.sdhci: No vmmc regulator found\n[    2.928350] sdhci_msm c0c4000.sdhci: No vqmmc regulator found\n[    2.928707] ../drivers/leds/leds-qpnp-wled.c, 1527 auto_calib_enabled = 0\n[    2.930417] [NVT-ts] nvt_ts_usb_plugin_work_func 1169: --\n[    2.931118] usbcore: registered new interface driver usbhid\n[    2.931122] usbhid: USB HID core driver\n[    2.931228] ashmem: initialized\n[    2.931511] wlan: Loading driver v5.1.1.76C ()\n[    2.931840] qpnp_coincell_charger_show_state: enabled=N, voltage=3200 mV, resistance=2100 ohm\n[    2.935454] mmc0: SDHCI controller on c0c4000.sdhci [c0c4000.sdhci] using 64-bit ADMA in CMDQ mode\n[    2.937221] wlan_hdd_state wlan major(227) initialized\n[    2.937226] wlan: driver loaded\n[    3.001414] mmc0: Out-of-interrupt timeout is 100[ms]\n[    3.001420] mmc0: eMMC FW version: 0x04\n[    3.001423] mmc0: CMDQ supported: depth: 32\n[    3.001426] mmc0: cache barrier support 1 flush policy 1\n[    3.007666] cmdq_host_alloc_tdl: desc_size: 1024 data_sz: 63488 slot-sz: 32\n[    3.007885] mmc0: CMDQ enabled on card\n[    3.007900] mmc0: new HS400 Enhanced strobe MMC card at address 0001\n[    3.009467] mmcblk0: mmc0:0001 S0J9K8 58.2 GiB \n[    3.010640] mmcblk0rpmb: mmc0:0001 S0J9K8 partition 3 16.0 MiB\n[    3.012602]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42 p43 p44 p45 p46 p47 p48 p49 p50 p51 p52 p53 p54 p55 p56 p57 p58 p59 p60 p61 p62 p63 p64 p65 p66\n[    3.019029] sdhci_msm c084000.sdhci: sdhci_msm_probe: ICE device is not enabled\n[    3.019452] sdhci_msm c084000.sdhci: sdhci_msm_pm_qos_parse_latency: invalid number of values for property qcom,pm-qos-legacy-latency-us: expected=2 actual=4\n[    3.019458] sdhci_msm c084000.sdhci: sdhci_msm_pm_qos_parse: invalid PM QoS latency values. Voting for cpu group will be disabled\n[    3.033432] sdhci_msm c084000.sdhci: No vmmc regulator found\n[    3.033437] sdhci_msm c084000.sdhci: No vqmmc regulator found\n[    3.033776] mmc1: SDHCI controller on c084000.sdhci [c084000.sdhci] using 64-bit ADMA in legacy mode\n[    3.062603] bimc-bwmon 1008000.qcom,cpu-bwmon: BW HWmon governor registered.\n[    3.063981] arm-memlat-mon soc:qcom,arm-memlat-mon-0: Memory Latency governor registered.\n[    3.064023] arm-memlat-mon soc:qcom,arm-memlat-mon-4: Memory Latency governor registered.\n[    3.070000] devfreq soc:qcom,cpubw: Couldn't update frequency transition information.\n[    3.070136] devfreq soc:qcom,mincpubw: Couldn't update frequency transition information.\n[    3.070237] devfreq soc:qcom,memlat-cpu0: Couldn't update frequency transition information.\n[    3.070455] devfreq soc:qcom,memlat-cpu4: Couldn't update frequency transition information.\n[    3.073664] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    3.075993] usbcore: registered new interface driver snd-usb-audio\n[    3.082745] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.083308] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.100373] i2c-msm-v2 c1b6000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:1 tx:2) mode:FIFO slv_addr:0x3a MSTR_STS:0x0d1300c8 OPER:0x00000010\n[    3.100405] reading version=0 - retry(0)\n[    3.120386] This is max98937! device version 0x43\n[    3.129490] max98927 register codec ok.\n[    3.140499] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx group_id: 0x9100\n[    3.140732] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0 dev_id: 0x9000\n[    3.140744] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.140769] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx group_id: 0x9101\n[    3.140949] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0 dev_id: 0x9001\n[    3.140958] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.140979] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx group_id: 0x9110\n[    3.141144] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0 dev_id: 0x9010\n[    3.141153] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.141174] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx group_id: 0x9111\n[    3.141333] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0 dev_id: 0x9011\n[    3.141342] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.141365] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx group_id: 0x9120\n[    3.141524] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0 dev_id: 0x9020\n[    3.141533] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.141554] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx group_id: 0x9121\n[    3.141713] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0 dev_id: 0x9021\n[    3.141722] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.141742] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx group_id: 0x9130\n[    3.141898] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0 dev_id: 0x9030\n[    3.141907] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.141930] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx group_id: 0x9131\n[    3.142090] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0 dev_id: 0x9031\n[    3.142099] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    3.149691] pri_i2s_gpio_init:enter.\n[    3.150090] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.155785] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.156138] GACT probability NOT on\n[    3.156150] Mirror/redirect action on\n[    3.156171] u32 classifier\n[    3.156173]     Actions configured\n[    3.156200] Netfilter messages via NETLINK v0.30.\n[    3.156235] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    3.156437] ctnetlink v0.93: registering with nfnetlink.\n[    3.156891] xt_time: kernel timezone is -0000\n[    3.156934] wireguard: WireGuard 1.0.20200520 loaded. See www.wireguard.com for information.\n[    3.156938] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    3.157014] IPv4 over IPsec tunneling driver\n[    3.157332] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    3.157486] arp_tables: (C) 2002 David S. Miller\n[    3.157533] Initializing XFRM netlink socket\n[    3.157759] NET: Registered protocol family 10\n[    3.159382] mip6: Mobile IPv6\n[    3.159395] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    3.159731] sit: IPv6 over IPv4 tunneling driver\n[    3.160383] NET: Registered protocol family 17\n[    3.160397] NET: Registered protocol family 15\n[    3.160423] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.\n[    3.160440] Bridge firewalling registered\n[    3.160447] Ebtables v2.0 registered\n[    3.160526] l2tp_core: L2TP core driver, V2.0\n[    3.160537] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    3.160542] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    3.160556] l2tp_netlink: L2TP netlink interface\n[    3.160576] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    3.160582] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    3.161614] NET: Registered protocol family 27\n[    3.165730] mdss_dp_usbpd_setup: get_usbpd phandle failed (-517)\n[    3.165735] mdss_dp_probe: Error usbpd setup!\n[    3.166458] subsys-pil-tz 15700000.qcom,lpass: for adsp segments only will be dumped.\n[    3.168047] subsys-pil-tz 1a300000.qcom,turing: for cdsp segments only will be dumped.\n[    3.168684] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    3.169126] platform 4080000.qcom,mss:qcom,mba-mem@0: assigned reserved memory node pil_mba_region@94800000\n[    3.174061] sps:BAM 0x000000000a904000 is registered.\n[    3.174607] Invalid index Defaulting curr to 0\n[    3.182595] thermal thermal_zone25: failed to read out thermal zone (-19)\n[    3.184441] FG: fg_gen3_probe: battery SOC:66 voltage: 3866445uV temp: 250 id: 0KOhms\n[    3.185395] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.185566] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.186548] pri_i2s_gpio_init:enter.\n[    3.186913] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.190363] FG: fg_psy_get_property: unsupported property 4\n[    3.190800] lct battery_capacity =66\n[    3.194039] FG: fg_get_time_to_full_locked: battery profile is not loaded\n[    3.196557] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.200153] mdss_dp_parse_gpio_params: 970,hpd gpio not specified\n[    3.200486] mdss_register_panel: adding framebuffer device c990000.qcom,dp_ctrl\n[    3.200939] mdss_dp_device_register: dp initialized\n[    3.200944] hdmi_edid_config_override: invalid input\n[    3.205662] sps:BAM 0x000000000a904000 is registered.\n[    3.206684] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.206928] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.208278] pri_i2s_gpio_init:enter.\n[    3.208683] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.214510] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.214654] mdss_fb_probe: fb2: split_mode:0 left:0 right:0\n[    3.214807] mdss_fb_register: FrameBuffer[2] 640x480 registered successfully!\n[    3.217382] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    3.217813] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.217945] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.218726] pri_i2s_gpio_init:enter.\n[    3.219082] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.224957] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.225398] Registered cp15_barrier emulation handler\n[    3.225409] Registered setend emulation handler\n[    3.225710] registered taskstats version 1\n[    3.226102] Key type encrypted registered\n[    3.227890] spss_utils [spss_init]: spss-utils driver Ver 1.2 13-Jan-2017.\n[    3.230524] fastrpc soc:qcom,msm-adsprpc-mem: for adsp_rh segments only will be dumped.\n[    3.230609] ADSPRPC: gcinfo[0].heap_vmid 33\n[    3.230819] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 19\n[    3.231706] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 20\n[    3.232285] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 21\n[    3.232786] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 22\n[    3.233282] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 23\n[    3.234368] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 24\n[    3.234864] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7 to group 25\n[    3.235358] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8 to group 26\n[    3.235855] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 27\n[    3.236347] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 28\n[    3.236837] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 29\n[    3.237328] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 30\n[    3.237815] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13 to group 31\n[    3.239507] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.239640] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.240711] pri_i2s_gpio_init:enter.\n[    3.241071] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.246843] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.249132] RNDIS_IPA module is loaded.\n[    3.250546] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.250683] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.251685] pri_i2s_gpio_init:enter.\n[    3.252040] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.257805] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.258153] input: gpio-keys as /devices/soc/soc:gpio_keys/input/input4\n[    3.258650] qcom,qpnp-rtc 800f000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: setting system clock to 1971-05-10 05:54:03 UTC (42702843)\n[    3.261431] lct battery_capacity =66\n[    3.263213] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.263351] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.264338] pri_i2s_gpio_init:enter.\n[    3.264704] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.271435] lmh_lite:lmh_parse_sensor Registering sensor:[GLM_soc]\n[    3.271638] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_cp1-]\n[    3.271751] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_cp0-]\n[    3.271919] soc:qcom,lmh supply vdd-apss not found, using dummy regulator\n[    3.271956] lmh_lite:lmh_get_sensor_devicetree Error getting ODCM thresh. err:-22\n[    3.272445] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.274261] calculate_residency: residency < 0 for LPM\n[    3.274266] parse_cpu_levels: idx 1 172\n[    3.274268] parse_cpu_levels: idx 2 1181\n[    3.274271] parse_cpu_levels: idx 2 2009\n[    3.274276] calculate_residency: residency < 0 for LPM\n[    3.274353] parse_cpu_levels: idx 1 191\n[    3.274355] parse_cpu_levels: idx 2 1109\n[    3.274358] parse_cpu_levels: idx 2 2410\n[    3.274363] calculate_residency: residency < 0 for LPM\n[    3.277655] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.277796] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.278800] pri_i2s_gpio_init:enter.\n[    3.279165] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.285333] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.287227] ipa-wan ipa_wwan_init:3286 Registering for q6_cleanup_cb\n[    3.287237] ipa register_ipa_platform_cb:2210 In register_ipa_platform_cb\n[    3.287241] ipa register_ipa_platform_cb:2213 reg q6_cleanup_cb\n[    3.287564] rmnet_ipa started initialization\n[    3.287567] IPA SSR support = True\n[    3.287570] IPA ipa-loaduC = True\n[    3.287572] IPA SG support = True\n[    3.287575] IPA Napi Enable = False\n[    3.287578] using default for wan-rx-desc-size = 1024\n[    3.288586] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.288722] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.289736] pri_i2s_gpio_init:enter.\n[    3.290177] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.295889] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.302995] ipa ipa_sps_irq_control_all:963 EP (5) not allocated.\n[    3.303003] ipa ipa2_uc_state_check:301 uC is not loaded\n[    3.303997] rmnet_ipa completed initialization\n[    3.304482] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    3.304619] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    3.305665] pri_i2s_gpio_init:enter.\n[    3.306031] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    3.313230] msm-dwc3 a800000.ssusb: DWC3 exited from low power mode\n[    3.314643] msm-dwc3 a800000.ssusb: DWC3 in low power mode\n[    3.325114] gfx_mem_acc_corner: disabling\n[    3.325186] apc0_pwrcl_corner: disabling\n[    3.325190] apc1_perfcl_corner: disabling\n[    3.325194] cam_avdd_gpio_regulator: disabling\n[    3.325197] cam_rear_avdd_gpio_regulator: disabling\n[    3.325201] cam_dvdd_gpio_regulator: disabling\n[    3.325204] cam_rear_dvdd_gpio_regulator: disabling\n[    3.325214] gdsc_ufs: disabling\n[    3.325235] gdsc_venus: disabling\n[    3.325274] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    3.327390] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    3.329652] ALSA device list:\n[    3.329672]   No soundcards found.\n[    3.329751] Warning: unable to open an initial console.\n[    3.331578] Freeing unused kernel memory: 8192K\n[    3.570720] of_batterydata_get_best_profile: sunxing detect No battery data configed,add default\n[    3.570736] of_batterydata_get_best_profile: use unknown battery data\n[    3.570740] FG: fg_get_batt_profile: sunxing get global set fastchg  2.3A\n[    3.575007] FG: is_profile_load_required: Profiles doesn't match, skipping loading it since force_load_profile is disabled\n[    3.840902] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    3.840912] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR\n[    4.342486] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: cpu1 cpu4 \n               Offline CPUs: cpu1 \n[    4.362875] IRQ5 no longer affine to CPU1\n[    4.362925] IRQ73 no longer affine to CPU1\n[    4.365340] cpu2 \n[    4.381721] IRQ5 no longer affine to CPU2\n[    4.382749] cpu3 cpu4 cpu5 \n[    4.443718] IRQ5 no longer affine to CPU5\n[    4.444852] cpu6 cpu7 \n[    9.492284] Sampling power every 1000 ms\n               Baseline power usage: \n[   15.281166] [NVT-ts] Boot_Update_Firmware 1026: firmware version is tianma. \n[   15.281185] [NVT-ts] update_firmware_request 59: filename is novatek/tianma_nt36672a_miui_f7a.bin\n[   15.350199] [NVT-ts] Resume_PD 199: Resume PD OK\n[   15.532288] [NVT-ts] Check_CheckSum 304: firmware checksum match\n[   15.581345] [NVT-ts] Init_BootLoader 358: Init OK \n[   15.650199] [NVT-ts] Resume_PD 199: Resume PD OK\n[   15.730493] [NVT-ts] nvt_check_flash_end_flag 991: nvt_end_flag=NVT (4E 56 54)\n[   15.803888] [NVT-ts] nvt_read_pid 479: PID=5911\n[   44.648052] FG: fg_delta_msoc_irq_handler: lct battery SOC:66 voltage:3894033uV current:304199uA temp:250 id:100K charge_status:2 charge_type:1 health:0 input_present:0 \n[   44.648313] lct battery_capacity =66\n[   44.648476] lct battery_capacity =66\n[   84.597608] CPU1: Booted secondary processor [51af8014]\n[   85.603438] 1160 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 633 902 1113 1401 1536 1747 1843\n               \n                633: \n[  194.279508] lct battery_capacity =66\n[  194.279669] lct battery_capacity =66\n[  215.985798]  2057     3.2 C/MHz     26 mW    3.2 J   78.2 I/mJ   121.5 s\n                902:  2925     3.2 C/MHz     46 mW    3.9 J   64.2 I/mJ    85.5 s\n               1113: \n[  361.504695] FG: fg_delta_msoc_irq_handler: lct battery SOC:65 voltage:3867665uV current:312988uA temp:220 id:100K charge_status:2 charge_type:1 health:1 input_present:0 \n[  361.504806] lct battery_capacity =65\n[  361.504933] lct battery_capacity =65\n[  388.497329]  3616     3.2 C/MHz     49 mW    3.4 J   73.9 I/mJ    69.1 s\n               1401:  4552     3.2 C/MHz     94 mW    5.2 J   48.5 I/mJ    54.9 s\n               1536:  4988     3.2 C/MHz    109 mW    5.4 J   45.9 I/mJ    50.1 s\n               1747:  5674     3.2 C/MHz    145 mW    6.4 J   39.2 I/mJ    44.1 s\n               1843: \n[  614.275858] CPU4: Booted secondary processor [51af8002]\n[  615.282677]  5986     3.2 C/MHz    176 mW    7.3 J   34.0 I/mJ    41.8 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 1113 1401 1747 1958 2150 2208\n               \n               1113: \n[  647.730524] FG: fg_delta_msoc_irq_handler: lct battery SOC:65 voltage:3839833uV current:353027uA temp:220 id:100K charge_status:2 charge_type:1 health:1 input_present:0 \n[  647.730664] lct battery_capacity =65\n[  647.730823] lct battery_capacity =65\n[  666.519400]  5824     5.2 C/MHz    188 mW    8.1 J   31.0 I/mJ    42.9 s\n               1401:  7326     5.2 C/MHz    293 mW   10.0 J   25.0 I/mJ    34.1 s\n               1747:  9135     5.2 C/MHz    431 mW   11.8 J   21.2 I/mJ    27.4 s\n               1958: 10243     5.2 C/MHz    523 mW   12.8 J   19.6 I/mJ    24.4 s\n               2150: 11245     5.2 C/MHz    626 mW   13.9 J   17.9 I/mJ    22.2 s\n               2208: \n[  825.057265] FG: fg_delta_msoc_irq_handler: lct battery SOC:63 voltage:3787832uV current:499023uA temp:220 id:100K charge_status:2 charge_type:1 health:1 input_present:0 \n[  825.057409] lct battery_capacity =63\n[  825.057567] lct battery_capacity =63\n[  840.521094] 11547     5.2 C/MHz    733 mW   15.9 J   15.8 I/mJ    21.7 s\n               \n               \n               Benchmark finished!\n[  840.553088] \n               real\t13m57.121s\n               user\t10m41.221s\n               sys\t0m0.316s\n"
  },
  {
    "path": "results/sdm660/second/post_bench_interrupts.txt",
    "content": "           CPU0       \n  3:       4669     GICv3  19 Edge      arch_timer\n  5:     101381     GICv3  39 Level     arch_mem_timer\n  6:          0     GICv3 483 Edge      smp2p\n  7:          0     GICv3 190 Edge      smp2p\n  8:          0     GICv3 546 Edge      smp2p\n 10:      10467     GICv3 270 Level     sps\n 11:          0     GICv3 271 Level     sps\n 13:          0  pmic_arb 8388612 Edge      qpnp_kpdpwr_status\n 14:          0  pmic_arb 8454148 Edge      qpnp_resin_status\n 16:          0  pmic_arb 8716292 Edge      qpnp_kpdpwr_resin_bark\n 17:          0  pmic_arb 24117262 Edge      sig-tx\n 18:          0  pmic_arb 24182798 Edge      sig-rx\n 19:          0  pmic_arb 37748755 Edge      pm660_tz\n 20:          0  pmic_arb 24248334 Edge      msg-tx\n 21:          0  pmic_arb 24313870 Edge      msg-rx\n 22:          8  pmic_arb 51380246 Edge      qpnp_vadc_interrupt\n 23:          0  pmic_arb 24379406 Edge      msg-tx-failed\n 24:          0  pmic_arb 24444942 Edge      msg-tx-discarded\n 25:          0  pmic_arb 24510478 Edge      msg-rx-discarded\n 26:          0  pmic_arb 54525976 Edge      qpnp_adc_tm_interrupt\n 27:          0  pmic_arb 574619709 Edge      pm660l_tz\n 28:          0  pmic_arb 1026752561 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 29:          0  pmic_arb 1052835884 Edge      qpnp_lcdb_sc_irq\n 32:          0  pmic_arb 69206048 Edge      bcl_ibat_interrupt\n 33:          0  pmic_arb 69337120 Edge      bcl_vbat_interrupt\n 34:          1  pmic_arb 1031864372 Edge      qpnp_wled_ovp_irq\n 35:          0  pmic_arb 1026555953 Edge      qpnp_flash_led_fault_irq\n 36:          0  pmic_arb 1026818097 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 45:          0     GICv3  35 Edge      apps_wdog_bark\n 47:          0     GICv3 216 Level     tsens_interrupt\n 48:          0     GICv3 462 Level     tsens_critical_interrupt\n 50:          0     GICv3 166 Level     lmh-interrupt\n 51:          0     GICv3 323 Level     ngd_slim_irq\n 62:          0     GICv3  67 Edge      OSM IRQ\n 63:          0  pmic_arb 469762111 Edge      qpnp_hap_sc\n 64:          0  pmic_arb 469827647 Edge      qpnp_hap_play\n 65:          0     GICv3  68 Edge      OSM IRQ\n 66:         85     GICv3 142 Edge      mmc0\n 67:          4     GICv3 144 Edge      c0c4000.sdhci\n 68:         13     GICv3 157 Edge      mmc1\n 69:          2     GICv3 253 Edge      c084000.sdhci\n 70:          0     GICv3 365 Edge      ipa\n 71:         18     GICv3 464 Level     sps\n 72:          0     GICv3 484 Edge      qcom,glink-smem-native-xprt-modem\n 73:          0     GICv3 189 Edge      qcom,glink-smem-native-xprt-adsp\n 74:          0     GICv3 545 Edge      qcom,glink-smem-native-xprt-cdsp\n 75:        293     GICv3 200 Edge      qcom,glink-smem-native-xprt-rpm\n 88:          0     GICv3 194 Edge      adsp\n 89:          0     GICv3 550 Edge      cdsp\n 90:          0     GICv3 480 Edge      modem\n 93:          0     GICv3 238 Level     sps\n 95:          0     GICv3 224 Edge      spdm_bw_hyp\n 96:          0     GICv3 317 Edge      cpr3\n 97:          0     GICv3 332 Level     kgsl-3d0\n 98:          0     GICv3 203 Edge      7781b8.qcom,mpm\n 99:          0     GICv3 261 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n100:          0     GICv3 263 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n101:          0     GICv3 405 Level     arm-smmu-context-fault\n102:          0     GICv3 406 Edge      arm-smmu-context-fault\n103:          0     GICv3 407 Edge      arm-smmu-context-fault\n130:          0     GICv3 258 Level     arm-smmu-context-fault\n131:          0     GICv3 425 Level     arm-smmu-context-fault\n132:          0     GICv3 426 Level     arm-smmu-context-fault\n133:          0     GICv3 427 Level     arm-smmu-context-fault\n134:          0     GICv3 428 Level     arm-smmu-context-fault\n148:          0     GICv3 298 Level     arm-smmu-context-fault\n149:          0     GICv3 299 Level     arm-smmu-context-fault\n150:          0     GICv3 300 Level     arm-smmu-context-fault\n151:          0     GICv3 276 Level     arm-smmu-context-fault\n179:          0     GICv3 565 Level     arm-smmu-context-fault\n180:          0     GICv3 566 Level     arm-smmu-context-fault\n181:          0     GICv3 567 Level     arm-smmu-context-fault\n182:          0     GICv3 568 Level     arm-smmu-context-fault\n183:          0     GICv3 569 Level     arm-smmu-context-fault\n184:          0     GICv3 570 Level     arm-smmu-context-fault\n185:          0     GICv3 571 Level     arm-smmu-context-fault\n186:          0     GICv3 572 Level     arm-smmu-context-fault\n187:          0     GICv3 573 Level     arm-smmu-context-fault\n196:          0     GICv3 379 Edge      hs_phy_irq\n197:          0     GICv3 275 Level     ss_phy_irq\n198:          0     GICv3 212 Edge      msm_dwc3\n254:          0   msmgpio  54 Edge      c084000.sdhci cd\n264:          0   msmgpio  64 Edge      camera_focus\n267:      10467   msmgpio  67 Edge      NVT-ts\n274:          0   msmgpio  74 Edge      ant-switch-irq\n313:          0   msmgpio 113 Edge      camera_snapshot\n314:         93     GICv3 127 Level     i2c-msm-v2-irq\n315:         68     GICv3 134 Level     i2c-msm-v2-irq\n316:          0     GICv3 135 Level     c1b7000.spi\n318:          0     GICv3 110 Edge      csiphy\n319:          0     GICv3 111 Edge      csiphy\n320:          0     GICv3 112 Edge      csiphy\n321:          0     GICv3 328 Edge      csid\n322:          0     GICv3 329 Edge      csid\n323:          0     GICv3 330 Edge      csid\n324:          0     GICv3 331 Edge      csid\n326:          0     GICv3 341 Edge      ispif\n327:          0     GICv3 346 Edge      vfe\n328:          0     GICv3 347 Edge      vfe\n329:        148     GICv3 327 Edge      cci\n332:          0     GICv3 319 Level     msm_vidc\n334:          0     GICv3 115 Edge      MDSS\n335:          0     GICv3  69 Level     limits_sensor-00\n336:          0     GICv3  70 Level     limits_sensor-01\n465:          0  pmic_arb 101777459 Edge      qpnp_rtc_alarm\n466:          0      mdss   2 Edge      sde_rotator_r3\n467:          0  pmic_arb 16777223 Edge      chg-error\n468:          0  pmic_arb 16842759 Edge      chg-state-change\n472:          0  pmic_arb 17825800 Edge      otg-fail\n473:          0  pmic_arb 17891336 Edge      otg-overcurrent\n474:          0  pmic_arb 17956872 Edge      otg-oc-dis-sw-sts\n475:          0  pmic_arb 18022408 Edge      testmode-change-detect\n476:          0  pmic_arb 18874377 Edge      bat-temp\n477:          0  pmic_arb 18939913 Edge      bat-ocp\n478:          0  pmic_arb 19005449 Edge      bat-ov\n479:          0  pmic_arb 19070985 Edge      bat-low\n480:          0  pmic_arb 19136521 Edge      bat-therm-or-id-missing\n481:          0  pmic_arb 19202057 Edge      bat-terminal-missing\n482:          0  pmic_arb 19922954 Edge      usbin-collapse\n483:          0  pmic_arb 19988490 Edge      usbin-lt-3p6v\n484:          0  pmic_arb 20054026 Edge      usbin-uv\n485:          0  pmic_arb 20119562 Edge      usbin-ov\n486:          0  pmic_arb 20185098 Edge      usbin-plugin\n487:          0  pmic_arb 20250634 Edge      usbin-src-change\n488:          0  pmic_arb 20316170 Edge      usbin-icl-change\n489:          0  pmic_arb 20381706 Edge      type-c-change\n490:          0  pmic_arb 20971531 Edge      dcin-collapse\n491:          0  pmic_arb 21037067 Edge      dcin-lt-3p6v\n492:          0  pmic_arb 21102603 Edge      dcin-uv\n493:          0  pmic_arb 21168139 Edge      dcin-ov\n494:          0  pmic_arb 21233675 Edge      dcin-plugin\n495:          0  pmic_arb 21299211 Edge      div2-en-dg\n496:          0  pmic_arb 21364747 Edge      dcin-icl-change\n498:          0  pmic_arb 23134221 Edge      wdog-bark\n499:          0  pmic_arb 23199757 Edge      aicl-fail\n500:          0  pmic_arb 23265293 Edge      aicl-done\n501:          0  pmic_arb 23330829 Edge      high-duty-cycle\n502:          0  pmic_arb 23396365 Edge      input-current-limiting\n503:          0  pmic_arb 23461901 Edge      temperature-change\n504:          0  pmic_arb 23527437 Edge      switcher-power-ok\n505:          0  smp2p_gpio   0 Edge      modem\n506:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n507:          0  smp2p_gpio   2 Edge      modem\n508:          0  smp2p_gpio   3 Edge      modem\n537:          0  smp2p_gpio   0 Edge      adsp\n538:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n539:          0  smp2p_gpio   2 Edge      adsp\n540:          0  smp2p_gpio   3 Edge      adsp\n569:          0  smp2p_gpio   0 Edge      cdsp\n570:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n571:          0  smp2p_gpio   2 Edge      cdsp\n572:          0  smp2p_gpio   3 Edge      cdsp\n697:          0     GICv3 163 Edge      dwc3\n699:          0  pmic_arb 67108894 Edge      soc-update\n700:          0  pmic_arb 67174430 Edge      soc-ready\n701:          0  pmic_arb 67239966 Edge      bsoc-delta\n702:          4  pmic_arb 67305502 Edge      msoc-delta\n703:          0  pmic_arb 67371038 Edge      msoc-low\n704:          0  pmic_arb 67436574 Edge      msoc-empty\n705:          0  pmic_arb 67502110 Edge      msoc-high\n706:          0  pmic_arb 67567646 Edge      msoc-full\n707:          0  pmic_arb 68157471 Edge      vbatt-pred-delta\n708:          0  pmic_arb 68223007 Edge      vbatt-low\n709:          0  pmic_arb 68288543 Edge      esr-delta\n710:          0  pmic_arb 68354079 Edge      batt-missing\n711:          2  pmic_arb 68550687 Edge      batt-temp-delta\n712:        213  pmic_arb 71303202 Edge      ima-rdy\n713:          0  pmic_arb 71368738 Edge      mem-xcp\n714:          0  pmic_arb 71434274 Edge      dma-grant\n715:          0  pmic_arb 744489127 Edge      volume_up\nIPI0:        83       Rescheduling interrupts\nIPI1:         0       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:        17       Timer broadcast interrupts\nIPI4:         0       IRQ work interrupts\nIPI5:         0       CPU wakeup interrupts\nIPI6:         0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm660/second/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  3:        991         26         26         26         26         26         25         25     GICv3  19 Edge      arch_timer\n  5:          7          0          0          0          0          0          0          0     GICv3  39 Level     arch_mem_timer\n  6:          0          0          0          0          0          0          0          0     GICv3 483 Edge      smp2p\n  7:          0          0          0          0          0          0          0          0     GICv3 190 Edge      smp2p\n  8:          0          0          0          0          0          0          0          0     GICv3 546 Edge      smp2p\n 10:          1          0          0          0          0          0          0          0     GICv3 270 Level     sps\n 11:          0          0          0          0          0          0          0          0     GICv3 271 Level     sps\n 13:          0          0          0          0          0          0          0          0  pmic_arb 8388612 Edge      qpnp_kpdpwr_status\n 14:          0          0          0          0          0          0          0          0  pmic_arb 8454148 Edge      qpnp_resin_status\n 16:          0          0          0          0          0          0          0          0  pmic_arb 8716292 Edge      qpnp_kpdpwr_resin_bark\n 17:          0          0          0          0          0          0          0          0  pmic_arb 24117262 Edge      sig-tx\n 18:          0          0          0          0          0          0          0          0  pmic_arb 24182798 Edge      sig-rx\n 19:          0          0          0          0          0          0          0          0  pmic_arb 37748755 Edge      pm660_tz\n 20:          0          0          0          0          0          0          0          0  pmic_arb 24248334 Edge      msg-tx\n 21:          0          0          0          0          0          0          0          0  pmic_arb 24313870 Edge      msg-rx\n 22:          8          0          0          0          0          0          0          0  pmic_arb 51380246 Edge      qpnp_vadc_interrupt\n 23:          0          0          0          0          0          0          0          0  pmic_arb 24379406 Edge      msg-tx-failed\n 24:          0          0          0          0          0          0          0          0  pmic_arb 24444942 Edge      msg-tx-discarded\n 25:          0          0          0          0          0          0          0          0  pmic_arb 24510478 Edge      msg-rx-discarded\n 26:          0          0          0          0          0          0          0          0  pmic_arb 54525976 Edge      qpnp_adc_tm_interrupt\n 27:          0          0          0          0          0          0          0          0  pmic_arb 574619709 Edge      pm660l_tz\n 28:          0          0          0          0          0          0          0          0  pmic_arb 1026752561 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 29:          0          0          0          0          0          0          0          0  pmic_arb 1052835884 Edge      qpnp_lcdb_sc_irq\n 32:          0          0          0          0          0          0          0          0  pmic_arb 69206048 Edge      bcl_ibat_interrupt\n 33:          0          0          0          0          0          0          0          0  pmic_arb 69337120 Edge      bcl_vbat_interrupt\n 34:          1          0          0          0          0          0          0          0  pmic_arb 1031864372 Edge      qpnp_wled_ovp_irq\n 35:          0          0          0          0          0          0          0          0  pmic_arb 1026555953 Edge      qpnp_flash_led_fault_irq\n 36:          0          0          0          0          0          0          0          0  pmic_arb 1026818097 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 45:          0          0          0          0          0          0          0          0     GICv3  35 Edge      apps_wdog_bark\n 47:          0          0          0          0          0          0          0          0     GICv3 216 Level     tsens_interrupt\n 48:          0          0          0          0          0          0          0          0     GICv3 462 Level     tsens_critical_interrupt\n 50:          0          0          0          0          0          0          0          0     GICv3 166 Level     lmh-interrupt\n 51:          0          0          0          0          0          0          0          0     GICv3 323 Level     ngd_slim_irq\n 62:          0          0          0          0          0          0          0          0     GICv3  67 Edge      OSM IRQ\n 63:          0          0          0          0          0          0          0          0  pmic_arb 469762111 Edge      qpnp_hap_sc\n 64:          0          0          0          0          0          0          0          0  pmic_arb 469827647 Edge      qpnp_hap_play\n 65:          0          0          0          0          0          0          0          0     GICv3  68 Edge      OSM IRQ\n 66:         74          0          0          0          0          0          0          0     GICv3 142 Edge      mmc0\n 67:          3          0          0          0          0          0          0          0     GICv3 144 Edge      c0c4000.sdhci\n 68:         13          0          0          0          0          0          0          0     GICv3 157 Edge      mmc1\n 69:          2          0          0          0          0          0          0          0     GICv3 253 Edge      c084000.sdhci\n 70:          0          0          0          0          0          0          0          0     GICv3 365 Edge      ipa\n 71:         18          0          0          0          0          0          0          0     GICv3 464 Level     sps\n 72:          0          0          0          0          0          0          0          0     GICv3 484 Edge      qcom,glink-smem-native-xprt-modem\n 73:          0          0          0          0          0          0          0          0     GICv3 189 Edge      qcom,glink-smem-native-xprt-adsp\n 74:          0          0          0          0          0          0          0          0     GICv3 545 Edge      qcom,glink-smem-native-xprt-cdsp\n 75:        239          0          0          0          0          0          0          0     GICv3 200 Edge      qcom,glink-smem-native-xprt-rpm\n 88:          0          0          0          0          0          0          0          0     GICv3 194 Edge      adsp\n 89:          0          0          0          0          0          0          0          0     GICv3 550 Edge      cdsp\n 90:          0          0          0          0          0          0          0          0     GICv3 480 Edge      modem\n 93:          0          0          0          0          0          0          0          0     GICv3 238 Level     sps\n 95:          0          0          0          0          0          0          0          0     GICv3 224 Edge      spdm_bw_hyp\n 96:          0          0          0          0          0          0          0          0     GICv3 317 Edge      cpr3\n 97:          0          0          0          0          0          0          0          0     GICv3 332 Level     kgsl-3d0\n 98:          0          0          0          0          0          0          0          0     GICv3 203 Edge      7781b8.qcom,mpm\n 99:          0          0          0          0          0          0          0          0     GICv3 261 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n100:          0          0          0          0          0          0          0          0     GICv3 263 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n101:          0          0          0          0          0          0          0          0     GICv3 405 Level     arm-smmu-context-fault\n102:          0          0          0          0          0          0          0          0     GICv3 406 Edge      arm-smmu-context-fault\n103:          0          0          0          0          0          0          0          0     GICv3 407 Edge      arm-smmu-context-fault\n130:          0          0          0          0          0          0          0          0     GICv3 258 Level     arm-smmu-context-fault\n131:          0          0          0          0          0          0          0          0     GICv3 425 Level     arm-smmu-context-fault\n132:          0          0          0          0          0          0          0          0     GICv3 426 Level     arm-smmu-context-fault\n133:          0          0          0          0          0          0          0          0     GICv3 427 Level     arm-smmu-context-fault\n134:          0          0          0          0          0          0          0          0     GICv3 428 Level     arm-smmu-context-fault\n148:          0          0          0          0          0          0          0          0     GICv3 298 Level     arm-smmu-context-fault\n149:          0          0          0          0          0          0          0          0     GICv3 299 Level     arm-smmu-context-fault\n150:          0          0          0          0          0          0          0          0     GICv3 300 Level     arm-smmu-context-fault\n151:          0          0          0          0          0          0          0          0     GICv3 276 Level     arm-smmu-context-fault\n179:          0          0          0          0          0          0          0          0     GICv3 565 Level     arm-smmu-context-fault\n180:          0          0          0          0          0          0          0          0     GICv3 566 Level     arm-smmu-context-fault\n181:          0          0          0          0          0          0          0          0     GICv3 567 Level     arm-smmu-context-fault\n182:          0          0          0          0          0          0          0          0     GICv3 568 Level     arm-smmu-context-fault\n183:          0          0          0          0          0          0          0          0     GICv3 569 Level     arm-smmu-context-fault\n184:          0          0          0          0          0          0          0          0     GICv3 570 Level     arm-smmu-context-fault\n185:          0          0          0          0          0          0          0          0     GICv3 571 Level     arm-smmu-context-fault\n186:          0          0          0          0          0          0          0          0     GICv3 572 Level     arm-smmu-context-fault\n187:          0          0          0          0          0          0          0          0     GICv3 573 Level     arm-smmu-context-fault\n196:          0          0          0          0          0          0          0          0     GICv3 379 Edge      hs_phy_irq\n197:          0          0          0          0          0          0          0          0     GICv3 275 Level     ss_phy_irq\n198:          0          0          0          0          0          0          0          0     GICv3 212 Edge      msm_dwc3\n254:          0          0          0          0          0          0          0          0   msmgpio  54 Edge      c084000.sdhci cd\n264:          0          0          0          0          0          0          0          0   msmgpio  64 Edge      camera_focus\n267:          1          0          0          0          0          0          0          0   msmgpio  67 Edge      NVT-ts\n274:          0          0          0          0          0          0          0          0   msmgpio  74 Edge      ant-switch-irq\n313:          0          0          0          0          0          0          0          0   msmgpio 113 Edge      camera_snapshot\n314:         62          0          0          0          0          0          0          0     GICv3 127 Level     i2c-msm-v2-irq\n315:         68          0          0          0          0          0          0          0     GICv3 134 Level     i2c-msm-v2-irq\n316:          0          0          0          0          0          0          0          0     GICv3 135 Level     c1b7000.spi\n318:          0          0          0          0          0          0          0          0     GICv3 110 Edge      csiphy\n319:          0          0          0          0          0          0          0          0     GICv3 111 Edge      csiphy\n320:          0          0          0          0          0          0          0          0     GICv3 112 Edge      csiphy\n321:          0          0          0          0          0          0          0          0     GICv3 328 Edge      csid\n322:          0          0          0          0          0          0          0          0     GICv3 329 Edge      csid\n323:          0          0          0          0          0          0          0          0     GICv3 330 Edge      csid\n324:          0          0          0          0          0          0          0          0     GICv3 331 Edge      csid\n326:          0          0          0          0          0          0          0          0     GICv3 341 Edge      ispif\n327:          0          0          0          0          0          0          0          0     GICv3 346 Edge      vfe\n328:          0          0          0          0          0          0          0          0     GICv3 347 Edge      vfe\n329:        148          0          0          0          0          0          0          0     GICv3 327 Edge      cci\n332:          0          0          0          0          0          0          0          0     GICv3 319 Level     msm_vidc\n334:          0          0          0          0          0          0          0          0     GICv3 115 Edge      MDSS\n335:          0          0          0          0          0          0          0          0     GICv3  69 Level     limits_sensor-00\n336:          0          0          0          0          0          0          0          0     GICv3  70 Level     limits_sensor-01\n465:          0          0          0          0          0          0          0          0  pmic_arb 101777459 Edge      qpnp_rtc_alarm\n466:          0          0          0          0          0          0          0          0      mdss   2 Edge      sde_rotator_r3\n467:          0          0          0          0          0          0          0          0  pmic_arb 16777223 Edge      chg-error\n468:          0          0          0          0          0          0          0          0  pmic_arb 16842759 Edge      chg-state-change\n472:          0          0          0          0          0          0          0          0  pmic_arb 17825800 Edge      otg-fail\n473:          0          0          0          0          0          0          0          0  pmic_arb 17891336 Edge      otg-overcurrent\n474:          0          0          0          0          0          0          0          0  pmic_arb 17956872 Edge      otg-oc-dis-sw-sts\n475:          0          0          0          0          0          0          0          0  pmic_arb 18022408 Edge      testmode-change-detect\n476:          0          0          0          0          0          0          0          0  pmic_arb 18874377 Edge      bat-temp\n477:          0          0          0          0          0          0          0          0  pmic_arb 18939913 Edge      bat-ocp\n478:          0          0          0          0          0          0          0          0  pmic_arb 19005449 Edge      bat-ov\n479:          0          0          0          0          0          0          0          0  pmic_arb 19070985 Edge      bat-low\n480:          0          0          0          0          0          0          0          0  pmic_arb 19136521 Edge      bat-therm-or-id-missing\n481:          0          0          0          0          0          0          0          0  pmic_arb 19202057 Edge      bat-terminal-missing\n482:          0          0          0          0          0          0          0          0  pmic_arb 19922954 Edge      usbin-collapse\n483:          0          0          0          0          0          0          0          0  pmic_arb 19988490 Edge      usbin-lt-3p6v\n484:          0          0          0          0          0          0          0          0  pmic_arb 20054026 Edge      usbin-uv\n485:          0          0          0          0          0          0          0          0  pmic_arb 20119562 Edge      usbin-ov\n486:          0          0          0          0          0          0          0          0  pmic_arb 20185098 Edge      usbin-plugin\n487:          0          0          0          0          0          0          0          0  pmic_arb 20250634 Edge      usbin-src-change\n488:          0          0          0          0          0          0          0          0  pmic_arb 20316170 Edge      usbin-icl-change\n489:          0          0          0          0          0          0          0          0  pmic_arb 20381706 Edge      type-c-change\n490:          0          0          0          0          0          0          0          0  pmic_arb 20971531 Edge      dcin-collapse\n491:          0          0          0          0          0          0          0          0  pmic_arb 21037067 Edge      dcin-lt-3p6v\n492:          0          0          0          0          0          0          0          0  pmic_arb 21102603 Edge      dcin-uv\n493:          0          0          0          0          0          0          0          0  pmic_arb 21168139 Edge      dcin-ov\n494:          0          0          0          0          0          0          0          0  pmic_arb 21233675 Edge      dcin-plugin\n495:          0          0          0          0          0          0          0          0  pmic_arb 21299211 Edge      div2-en-dg\n496:          0          0          0          0          0          0          0          0  pmic_arb 21364747 Edge      dcin-icl-change\n498:          0          0          0          0          0          0          0          0  pmic_arb 23134221 Edge      wdog-bark\n499:          0          0          0          0          0          0          0          0  pmic_arb 23199757 Edge      aicl-fail\n500:          0          0          0          0          0          0          0          0  pmic_arb 23265293 Edge      aicl-done\n501:          0          0          0          0          0          0          0          0  pmic_arb 23330829 Edge      high-duty-cycle\n502:          0          0          0          0          0          0          0          0  pmic_arb 23396365 Edge      input-current-limiting\n503:          0          0          0          0          0          0          0          0  pmic_arb 23461901 Edge      temperature-change\n504:          0          0          0          0          0          0          0          0  pmic_arb 23527437 Edge      switcher-power-ok\n505:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      modem\n506:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n507:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      modem\n508:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      modem\n537:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      adsp\n538:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n539:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      adsp\n540:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      adsp\n569:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      cdsp\n570:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n571:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      cdsp\n572:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      cdsp\n697:          0          0          0          0          0          0          0          0     GICv3 163 Edge      dwc3\n699:          0          0          0          0          0          0          0          0  pmic_arb 67108894 Edge      soc-update\n700:          0          0          0          0          0          0          0          0  pmic_arb 67174430 Edge      soc-ready\n701:          0          0          0          0          0          0          0          0  pmic_arb 67239966 Edge      bsoc-delta\n702:          0          0          0          0          0          0          0          0  pmic_arb 67305502 Edge      msoc-delta\n703:          0          0          0          0          0          0          0          0  pmic_arb 67371038 Edge      msoc-low\n704:          0          0          0          0          0          0          0          0  pmic_arb 67436574 Edge      msoc-empty\n705:          0          0          0          0          0          0          0          0  pmic_arb 67502110 Edge      msoc-high\n706:          0          0          0          0          0          0          0          0  pmic_arb 67567646 Edge      msoc-full\n707:          0          0          0          0          0          0          0          0  pmic_arb 68157471 Edge      vbatt-pred-delta\n708:          0          0          0          0          0          0          0          0  pmic_arb 68223007 Edge      vbatt-low\n709:          0          0          0          0          0          0          0          0  pmic_arb 68288543 Edge      esr-delta\n710:          0          0          0          0          0          0          0          0  pmic_arb 68354079 Edge      batt-missing\n711:          0          0          0          0          0          0          0          0  pmic_arb 68550687 Edge      batt-temp-delta\n712:         48          0          0          0          0          0          0          0  pmic_arb 71303202 Edge      ima-rdy\n713:          0          0          0          0          0          0          0          0  pmic_arb 71368738 Edge      mem-xcp\n714:          0          0          0          0          0          0          0          0  pmic_arb 71434274 Edge      dma-grant\n715:          0          0          0          0          0          0          0          0  pmic_arb 744489127 Edge      volume_up\nIPI0:         7         72         71         71         71         71         70         69       Rescheduling interrupts\nIPI1:         0          8          8          8          8          8          8          8       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI4:         0          0          0          0          0          0          0          0       IRQ work interrupts\nIPI5:         0          0          0          0          0          0          0          0       CPU wakeup interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm660/second/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [ksoftirqd/0]\n    5 root      0:00 [kworker/0:0H]\n    6 root      0:02 [kworker/u16:0]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [migration/1]\n   15 root      0:00 [ksoftirqd/1]\n   16 root      0:00 [kworker/1:0]\n   17 root      0:00 [kworker/1:0H]\n   18 root      0:00 [rcuop/1]\n   19 root      0:00 [rcuos/1]\n   20 root      0:00 [rcuob/1]\n   21 root      0:00 [migration/2]\n   22 root      0:00 [ksoftirqd/2]\n   23 root      0:00 [kworker/2:0]\n   24 root      0:00 [kworker/2:0H]\n   25 root      0:00 [rcuop/2]\n   26 root      0:00 [rcuos/2]\n   27 root      0:00 [rcuob/2]\n   28 root      0:00 [migration/3]\n   29 root      0:00 [ksoftirqd/3]\n   30 root      0:00 [kworker/3:0]\n   31 root      0:00 [kworker/3:0H]\n   32 root      0:00 [rcuop/3]\n   33 root      0:00 [rcuos/3]\n   34 root      0:00 [rcuob/3]\n   35 root      0:00 [migration/4]\n   36 root      0:00 [ksoftirqd/4]\n   37 root      0:00 [kworker/4:0]\n   38 root      0:00 [kworker/4:0H]\n   39 root      0:00 [rcuop/4]\n   40 root      0:00 [rcuos/4]\n   41 root      0:00 [rcuob/4]\n   42 root      0:00 [migration/5]\n   43 root      0:00 [ksoftirqd/5]\n   44 root      0:00 [kworker/5:0]\n   45 root      0:00 [kworker/5:0H]\n   46 root      0:00 [rcuop/5]\n   47 root      0:00 [rcuos/5]\n   48 root      0:00 [rcuob/5]\n   49 root      0:00 [migration/6]\n   50 root      0:00 [ksoftirqd/6]\n   51 root      0:00 [kworker/6:0]\n   52 root      0:00 [kworker/6:0H]\n   53 root      0:00 [rcuop/6]\n   54 root      0:00 [rcuos/6]\n   55 root      0:00 [rcuob/6]\n   56 root      0:00 [migration/7]\n   57 root      0:00 [ksoftirqd/7]\n   58 root      0:00 [kworker/7:0]\n   59 root      0:00 [kworker/7:0H]\n   60 root      0:00 [rcuop/7]\n   61 root      0:00 [rcuos/7]\n   62 root      0:00 [rcuob/7]\n   63 root      0:00 [kdevtmpfs]\n   64 root      0:00 [netns]\n   65 root      0:00 [perf]\n   66 root      0:00 [smd_channel_clo]\n   67 root      0:00 [dsps_smd_trans_]\n   68 root      0:00 [lpass_smd_trans]\n   69 root      0:00 [mpss_smd_trans_]\n   70 root      0:00 [wcnss_smd_trans]\n   71 root      0:00 [rpm_smd_trans_g]\n   72 root      0:00 [ipa_usb_wq]\n   73 root      0:00 [msm_watchdog]\n   74 root      0:00 [smem_native_mps]\n   75 root      0:00 [mpss_smem_glink]\n   76 root      0:00 [smem_native_lpa]\n   77 root      0:00 [lpass_smem_glin]\n   78 root      0:00 [smem_native_cds]\n   79 root      0:00 [cdsp_smem_glink]\n   80 root      0:00 [smem_native_rpm]\n   81 root      0:00 [rpm_smem_glink_]\n   82 root      0:00 [kworker/0:1]\n   83 root      0:00 [deferwq]\n   84 root      0:00 [kworker/u16:1]\n   85 root      0:00 [irq/96-cpr3]\n   86 root      0:00 [mpm]\n   87 root      0:02 [kworker/u16:2]\n   88 root      0:00 [writeback]\n   89 root      0:00 [kcompactd0]\n   90 root      0:00 [crypto]\n   91 root      0:00 [bioset]\n   92 root      0:00 [kblockd]\n   93 root      0:00 [md]\n   94 root      0:00 [system]\n   95 root      0:00 [irq/99-arm-smmu]\n   96 root      0:00 [irq/100-arm-smm]\n   97 root      0:00 [irq/99-arm-smmu]\n   98 root      0:00 [irq/100-arm-smm]\n   99 root      0:00 [irq/99-arm-smmu]\n  100 root      0:00 [irq/100-arm-smm]\n  101 root      0:00 [irq/99-arm-smmu]\n  102 root      0:00 [irq/100-arm-smm]\n  103 root      0:00 [irq/99-arm-smmu]\n  104 root      0:00 [irq/100-arm-smm]\n  105 root      0:00 [devfreq_wq]\n  106 root      0:00 [governor_msm_ad]\n  107 root      0:00 [cfg80211]\n  108 root      0:00 [irq/29-qpnp_lcd]\n  109 root      0:00 [irq/101-arm-smm]\n  110 root      0:00 [ipa_power_mgmt]\n  111 root      0:00 [sps_ipa_power_m]\n  112 root      0:00 [kworker/u17:0]\n  113 root      0:00 [ipawq15]\n  114 root      0:00 [iparepwq15]\n  115 root      0:00 [kworker/u17:1]\n  116 root      0:00 [ipawq48]\n  117 root      0:00 [iparepwq48]\n  118 root      0:00 [ipawq14]\n  119 root      0:00 [iparepwq14]\n  120 root      0:00 [ipa_rm_wq]\n  121 root      0:00 [ipa_interrupt_w]\n  122 root      0:00 [ipa_holb_wq]\n  123 root      0:00 [irq/102-arm-smm]\n  124 root      0:00 [irq/33-bcl_vbat]\n  125 root      0:00 [irq/32-bcl_ibat]\n  152 root      0:00 [kswapd0]\n  153 root      0:00 [vmstat]\n  154 root      0:00 [fsnotify_mark]\n  155 root      0:00 [ecryptfs-kthrea]\n  156 root      0:00 [cifsiod]\n  189 root      0:00 [ad_calc_wq]\n  190 root      0:00 [mdss_dsi_event]\n  191 root      0:00 [mdss_dsi_dba]\n  192 root      0:00 [cwb_wq]\n  193 root      0:00 [cwb_wq]\n  194 root      0:00 [glink_ssr_wq]\n  195 root      0:00 [glink_lbsrv]\n  196 root      0:00 [glink_xprt_wq]\n  197 root      0:00 [IPCRTR_mpss_sme]\n  198 root      0:00 [IPCRTR_lpass_sm]\n  199 root      0:00 [IPCRTR_cdsp_sme]\n  200 root      0:00 [apr_driver]\n  201 root      0:00 [glink_pkt_wq]\n  202 root      0:00 [mem_share_svc]\n  203 root      0:04 [kworker/0:2]\n  204 root      0:00 [qmi_hndl0000000]\n  205 root      0:00 [irq/64-qpnp_hap]\n  206 root      0:00 [irq/63-qpnp_hap]\n  207 root      0:00 [msm_ipc_router]\n  208 root      0:00 [irq/103-arm-smm]\n  209 root      0:00 [qmi_svc_event_w]\n  210 root      0:00 [servloc_wq]\n  211 root      0:00 [k_hsuart]\n  212 root      0:00 [msm_serial_hs_0]\n  213 root      0:00 [msm_serial_hs_0]\n  214 root      0:00 [hwrng]\n  216 root      0:00 [diag_real_time_]\n  217 root      0:00 [diag_wq]\n  218 root      0:00 [DIAG_USB_diag]\n  219 root      0:00 [diag_cntl_wq]\n  220 root      0:00 [diag_dci_wq]\n  221 root      0:00 [DIAG_SMD_MODEM_]\n  222 root      0:00 [DIAG_SMD_MODEM_]\n  223 root      0:00 [DIAG_SMD_MODEM_]\n  224 root      0:00 [DIAG_SMD_MODEM_]\n  225 root      0:00 [DIAG_SMD_MODEM_]\n  226 root      0:00 [DIAG_SMD_LPASS_]\n  227 root      0:00 [DIAG_SMD_LPASS_]\n  228 root      0:00 [DIAG_SMD_LPASS_]\n  229 root      0:00 [DIAG_SMD_LPASS_]\n  230 root      0:00 [DIAG_SMD_LPASS_]\n  231 root      0:00 [DIAG_SMD_WCNSS_]\n  232 root      0:00 [DIAG_SMD_WCNSS_]\n  233 root      0:00 [DIAG_SMD_WCNSS_]\n  234 root      0:00 [DIAG_SMD_WCNSS_]\n  235 root      0:00 [DIAG_SMD_WCNSS_]\n  236 root      0:00 [DIAG_SMD_SENSOR]\n  237 root      0:00 [DIAG_SMD_SENSOR]\n  238 root      0:00 [DIAG_SMD_SENSOR]\n  239 root      0:00 [DIAG_SMD_SENSOR]\n  240 root      0:00 [DIAG_SMD_SENSOR]\n  241 root      0:00 [DIAG_SMD_DIAG_C]\n  242 root      0:00 [DIAG_SMD_DIAG_D]\n  243 root      0:00 [DIAG_SMD_DIAG_C]\n  244 root      0:00 [DIAG_SMD_DIAG_D]\n  245 root      0:00 [DIAG_SMD_DIAG_D]\n  246 root      0:00 [DIAG_SMD_CDSP_C]\n  247 root      0:00 [DIAG_SMD_CDSP_D]\n  248 root      0:00 [DIAG_SMD_CDSP_C]\n  249 root      0:00 [DIAG_SMD_CDSP_D]\n  250 root      0:00 [DIAG_SMD_CDSP_D]\n  251 root      0:00 [DIAG_SOCKMODEM_]\n  252 root      0:00 [DIAG_SOCKMODEM_]\n  253 root      0:00 [DIAG_SOCKMODEM_]\n  254 root      0:00 [DIAG_SOCKMODEM_]\n  255 root      0:00 [DIAG_SOCKMODEM_]\n  256 root      0:00 [DIAG_SOCKLPASS_]\n  257 root      0:00 [DIAG_SOCKLPASS_]\n  258 root      0:00 [DIAG_SOCKLPASS_]\n  259 root      0:00 [DIAG_SOCKLPASS_]\n  260 root      0:00 [DIAG_SOCKLPASS_]\n  261 root      0:00 [DIAG_SOCKWCNSS_]\n  262 root      0:00 [DIAG_SOCKWCNSS_]\n  263 root      0:00 [DIAG_SOCKWCNSS_]\n  264 root      0:00 [DIAG_SOCKWCNSS_]\n  265 root      0:00 [DIAG_SOCKWCNSS_]\n  266 root      0:00 [DIAG_SOCKSENSOR]\n  267 root      0:00 [DIAG_SOCKSENSOR]\n  268 root      0:00 [DIAG_SOCKSENSOR]\n  269 root      0:00 [DIAG_SOCKSENSOR]\n  270 root      0:00 [DIAG_SOCKSENSOR]\n  271 root      0:00 [DIAG_SOCKDIAG_C]\n  272 root      0:00 [DIAG_SOCKDIAG_D]\n  273 root      0:00 [DIAG_SOCKDIAG_C]\n  274 root      0:00 [DIAG_SOCKDIAG_D]\n  275 root      0:00 [DIAG_SOCKDIAG_D]\n  276 root      0:00 [DIAG_SOCKCDSP_C]\n  277 root      0:00 [DIAG_SOCKCDSP_D]\n  278 root      0:00 [DIAG_SOCKCDSP_C]\n  279 root      0:00 [DIAG_SOCKCDSP_D]\n  280 root      0:00 [DIAG_SOCKCDSP_D]\n  281 root      0:00 [DIAG_CNTL_SOCKE]\n  282 root      0:00 [DIAG_GLINK_DIAG]\n  283 root      0:00 [DIAG_GLINK_DIAG]\n  284 root      0:00 [DIAG_GLINK_DIAG]\n  285 root      0:00 [DIAG_GLINK_DIAG]\n  286 root      0:00 [DIAG_GLINK_DIAG]\n  287 root      0:00 [kgsl-workqueue]\n  288 root      0:00 [kgsl-mementry]\n  289 root      0:00 [kgsl_worker_thr]\n  290 root      0:00 [kgsl-events]\n  291 root      0:00 [kgsl_devfreq_wq]\n  292 root      0:00 [bioset]\n  293 root      0:00 [bioset]\n  294 root      0:00 [bioset]\n  295 root      0:00 [bioset]\n  296 root      0:00 [bioset]\n  297 root      0:00 [bioset]\n  298 root      0:00 [bioset]\n  299 root      0:00 [bioset]\n  300 root      0:00 [bioset]\n  301 root      0:00 [bioset]\n  302 root      0:00 [bioset]\n  303 root      0:00 [bioset]\n  304 root      0:00 [bioset]\n  305 root      0:00 [bioset]\n  306 root      0:00 [bioset]\n  307 root      0:00 [bioset]\n  308 root      0:00 [bioset]\n  309 root      0:00 [bioset]\n  310 root      0:00 [bioset]\n  311 root      0:00 [bioset]\n  312 root      0:00 [bioset]\n  313 root      0:00 [bioset]\n  314 root      0:00 [bioset]\n  315 root      0:00 [bioset]\n  316 root      0:00 [bioset]\n  317 root      0:00 [qseecom-unreg-l]\n  318 root      0:00 [qseecom-unload-]\n  319 root      0:00 [irq/274-ant-swi]\n  320 root      0:00 [qcrypto_seq_res]\n  341 root      0:00 [spi7]\n  342 root      0:00 [bond0]\n  343 root      0:00 [sharedmem_qmi_w]\n  344 root      0:00 [k_sm_usb]\n  345 root      0:00 [qmi_hndl0000000]\n  349 root      0:00 [uether]\n  352 root      0:00 [nvt_wq]\n  353 root      0:00 [nvt_fwu_wq]\n  354 root      0:00 [nvt_esd_check_w]\n  355 root      0:00 [msm_cci_wq]\n  356 root      0:00 [msm_cci_wq]\n  357 root      0:00 [msm_cpp_workque]\n  358 root      0:00 [msm_vidc_worker]\n  359 root      0:00 [pm_workerq_venu]\n  360 root      0:00 [irq/148-arm-smm]\n  361 root      0:00 [irq/149-arm-smm]\n  362 root      0:00 [irq/150-arm-smm]\n  363 root      0:00 [irq/151-arm-smm]\n  364 root      0:00 [rot_commitq_0_0]\n  365 root      0:00 [rot_commitq_0_1]\n  366 root      0:00 [rot_doneq_0_0]\n  367 root      0:00 [rot_doneq_0_1]\n  368 root      0:00 [therm_core:noti]\n  370 root      0:00 [irq/467-chg-err]\n  371 root      0:00 [irq/468-chg-sta]\n  372 root      0:00 [irq/472-otg-fai]\n  373 root      0:00 [irq/473-otg-ove]\n  374 root      0:00 [irq/474-otg-oc-]\n  375 root      0:00 [irq/475-testmod]\n  376 root      0:00 [irq/476-bat-tem]\n  377 root      0:00 [irq/477-bat-ocp]\n  378 root      0:00 [irq/478-bat-ov]\n  379 root      0:00 [kworker/0:4]\n  380 root      0:00 [irq/479-bat-low]\n  381 root      0:00 [irq/480-bat-the]\n  382 root      0:00 [irq/481-bat-ter]\n  383 root      0:00 [irq/482-usbin-c]\n  384 root      0:00 [irq/483-usbin-l]\n  385 root      0:00 [irq/484-usbin-u]\n  386 root      0:00 [irq/485-usbin-o]\n  387 root      0:00 [irq/486-usbin-p]\n  388 root      0:00 [irq/487-usbin-s]\n  390 root      0:00 [irq/488-usbin-i]\n  391 root      0:00 [irq/489-type-c-]\n  392 root      0:00 [irq/490-dcin-co]\n  393 root      0:00 [irq/491-dcin-lt]\n  394 root      0:00 [irq/492-dcin-uv]\n  395 root      0:00 [irq/493-dcin-ov]\n  396 root      0:00 [irq/494-dcin-pl]\n  397 root      0:00 [irq/495-div2-en]\n  398 root      0:00 [irq/496-dcin-ic]\n  400 root      0:00 [irq/498-wdog-ba]\n  401 root      0:00 [irq/499-aicl-fa]\n  402 root      0:00 [irq/500-aicl-do]\n  403 root      0:00 [irq/501-high-du]\n  404 root      0:00 [irq/502-input-c]\n  405 root      0:00 [irq/503-tempera]\n  406 root      0:00 [irq/504-switche]\n  407 root      0:00 [therm_core:noti]\n  408 root      0:00 [therm_core:noti]\n  409 root      0:00 [therm_core:noti]\n  410 root      0:00 [therm_core:noti]\n  411 root      0:00 [therm_core:noti]\n  412 root      0:00 [therm_core:noti]\n  413 root      0:00 [therm_core:noti]\n  414 root      0:00 [therm_core:noti]\n  415 root      0:00 [therm_core:noti]\n  416 root      0:00 [therm_core:noti]\n  417 root      0:00 [therm_core:noti]\n  418 root      0:00 [therm_core:noti]\n  419 root      0:00 [therm_core:noti]\n  420 root      0:00 [therm_core:noti]\n  421 root      0:00 [therm_core:noti]\n  422 root      0:00 [therm_core:noti]\n  423 root      0:00 [therm_core:noti]\n  424 root      0:00 [therm_core:noti]\n  425 root      0:00 [therm_core:noti]\n  426 root      0:00 [therm_core:noti]\n  427 root      0:00 [therm_core:noti]\n  428 root      0:00 [therm_core:noti]\n  429 root      0:00 [irq/47-tsens_in]\n  430 root      0:00 [irq/48-tsens_cr]\n  431 root      0:00 [therm_core:noti]\n  432 root      0:00 [irq/335-limits_]\n  433 root      0:00 [therm_core:noti]\n  434 root      0:00 [irq/336-limits_]\n  435 root      0:00 [dm_bufio_cache]\n  436 root      0:00 [irq/67-c0c4000.]\n  437 root      0:00 [irq/66-mmc0]\n  438 root      0:00 [irq/34-qpnp_wle]\n  440 root      0:00 [cds_recovery_wo]\n  441 root      0:00 [wlan_logging_th]\n  443 root      0:00 [bioset]\n  444 root      0:00 [mmc-cmdqd/0]\n  445 root      0:00 [bioset]\n  446 root      0:00 [mmcqd/0rpmb]\n  447 root      0:00 [irq/69-c084000.]\n  448 root      0:00 [irq/68-mmc1]\n  449 root      0:00 [irq/254-c084000]\n  450 root      0:00 [irq/95-spdm_bw_]\n  451 root      0:00 [binder]\n  452 root      0:00 [irq/130-arm-smm]\n  453 root      0:00 [uaudio_svc]\n  454 root      0:00 [qmi_hndl0000000]\n  455 root      0:00 [ipv6_addrconf]\n  456 root      0:00 [irq/539-adsp]\n  457 root      0:00 [sysmon_wq]\n  458 root      0:00 [irq/571-cdsp]\n  459 root      0:00 [irq/507-modem]\n  460 root      0:00 [k_sm_usb]\n  465 root      0:00 [irq/17-sig-tx]\n  466 root      0:00 [irq/18-sig-rx]\n  467 root      0:00 [therm_core:noti]\n  468 root      0:00 [irq/699-soc-upd]\n  469 root      0:00 [irq/700-soc-rea]\n  470 root      0:00 [irq/701-bsoc-de]\n  471 root      0:00 [irq/702-msoc-de]\n  472 root      0:00 [irq/703-msoc-lo]\n  473 root      0:00 [irq/704-msoc-em]\n  474 root      0:00 [irq/705-msoc-hi]\n  475 root      0:00 [irq/706-msoc-fu]\n  476 root      0:00 [irq/707-vbatt-p]\n  477 root      0:00 [irq/708-vbatt-l]\n  478 root      0:00 [irq/709-esr-del]\n  479 root      0:00 [irq/710-batt-mi]\n  480 root      0:00 [irq/711-batt-te]\n  481 root      0:00 [irq/712-ima-rdy]\n  482 root      0:00 [irq/713-mem-xcp]\n  483 root      0:00 [irq/714-dma-gra]\n  484 root      0:00 [mdss_dp_event]\n  485 root      0:00 [mdss_dp_hpd]\n  486 root      0:00 [k_sm_usb]\n  487 root      0:00 [irq/196-hs_phy_]\n  488 root      0:00 [irq/197-ss_phy_]\n  489 root      0:00 [irq/198-msm_dwc]\n  490 root      0:00 [usb_bam_wq]\n  491 root      0:00 [hdcp_1x_1]\n  492 root      0:00 [hdcp_tz_lib]\n  493 root      0:00 [dp_hdcp2p2]\n  494 root      0:00 [cwb_wq]\n  499 root      0:00 [rq_stats]\n  500 root      0:00 [irq/131-arm-smm]\n  501 root      0:00 [irq/132-arm-smm]\n  502 root      0:00 [irq/133-arm-smm]\n  503 root      0:00 [irq/134-arm-smm]\n  504 root      0:00 [irq/179-arm-smm]\n  505 root      0:00 [irq/180-arm-smm]\n  506 root      0:00 [irq/181-arm-smm]\n  507 root      0:00 [irq/182-arm-smm]\n  508 root      0:00 [irq/183-arm-smm]\n  509 root      0:00 [irq/184-arm-smm]\n  510 root      0:00 [irq/185-arm-smm]\n  511 root      0:00 [irq/186-arm-smm]\n  512 root      0:00 [irq/187-arm-smm]\n  513 root      0:00 [sb-3]\n  514 root      0:00 [ngd_rx_thread3]\n  515 root      0:00 [ngd_notify_sl3]\n  516 root      0:00 [kworker/0:1H]\n  517 root      0:00 [msm_thermal:hot]\n  518 root      0:00 [msm_thermal:fre]\n  519 root      0:00 [msm_thermal:the]\n  520 root      0:00 [therm_core:noti]\n  521 root      0:00 [therm_core:noti]\n  522 root      0:00 [therm_core:noti]\n  523 root      0:00 [irq/50-lmh-inte]\n  524 root      0:00 [irq/36-qpnp_fla]\n  525 root      0:00 [irq/28-qpnp_fla]\n  526 root      0:00 [irq/35-qpnp_fla]\n  527 root      0:00 [ipa_A7_svc]\n  528 root      0:00 [qmi_hndl0000000]\n  529 root      0:00 [clnt_req]\n  530 root      0:00 [clnt_resp]\n  531 root      0:00 [clnt_req]\n  540 root      0:00 [kworker/1:1H]\n  541 root      0:00 [kworker/2:1H]\n  542 root      0:00 [kworker/3:1H]\n  543 root      0:00 [kworker/4:1H]\n  544 root      0:00 [kworker/5:1H]\n  545 root      0:00 [kworker/6:1H]\n  546 root      0:00 [kworker/7:1H]\n  551 root      0:00 [kworker/1:1]\n  559 root      0:00 [kworker/0:0]\n  575 root      0:00 [kworker/4:1]\n  589 root      0:00 [kworker/u16:3]\n  592 root      0:00 [kworker/0:3]\n  606 root      0:00 ps -A\n"
  },
  {
    "path": "results/sdm660/second/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,633600,2057.49463,3.2473084438131314,26.3037321471489,3.1963271598418066,78.21477198609828,121.516108131\r\n1,902400,2924.763387,3.241094178856383,45.57059522072956,3.895566448881413,64.17551934502,85.484212572\r\n1,1113600,3616.374946,3.247463133979885,48.90395532339149,3.381002608718988,73.94256347371507,69.135565546\r\n1,1401600,4551.578487,3.247416157962329,93.798442090352,5.152403479862806,48.521044785618535,54.930586959\r\n1,1536000,4988.128255,3.2474793326822913,108.63957609446011,5.445398313895232,45.9103238347258,50.12352321\r\n1,1747200,5673.952021,3.2474542244734432,144.6004120410002,6.371871364244539,39.23494146521278,44.065374879\r\n1,1843200,5985.586707,3.247388621419271,175.89445758370746,7.34721472783935,34.02649973638641,41.770586912\r\n4,1113600,5824.247507,5.230107315912357,187.5909172510954,8.053843709977222,31.041079142161184,42.933015244\r\n4,1401600,7325.577988,5.226582468607306,293.3726440340296,10.014671635328384,24.96337464706125,34.136351289\r\n4,1747200,9135.089707,5.228416727907509,430.7796789632594,11.79359275689637,21.19795088344144,27.377319156\r\n4,1958400,10242.543428,5.23005689746732,522.5543346270418,12.760042385798414,19.592411407523482,24.41859447\r\n4,2150400,11245.052177,5.229283936476934,626.2868075786365,13.929994729904292,17.94688403315122,22.242197283\r\n4,2208000,11547.344111,5.2297754125905795,732.6015567010478,15.867548101350721,15.755427265962963,21.659178794\r\n"
  },
  {
    "path": "results/sdm660/second/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 836.1717838421464, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1159.9869743709999, 1162.1058847670001, 1178.856186222, 1180.7564743259998, 1182.5082482399998, 1182.6567624299998, 1190.3363906509999, 1182.7308676699997, 1188.435983475, 1180.830460494, 1190.261808879, 1188.435983475, 1194.0662791199998, 1180.830460494, 1184.635169123, 1188.2122901999999, 1182.5082482399998, 1182.5082482399998, 1188.3615207750001, 1180.7564743259998, 1184.412191256, 1193.91633216, 1182.5082482399998, 1180.608198768, 1182.434143, 1190.0377579, 1178.7081492959999, 1184.560944567, 1182.434143], \"power_mean\": 1183.0827870243102, \"energy_millijoules\": 5915.413935121551, \"energy_joules\": 5.915413935121551}, \"cpus\": {\"1\": {\"freqs\": {\"633600\": {\"active\": {\"elapsed_sec\": 121.516108131, \"elapsed_ns\": 121516108131, \"power_samples\": [46.78325621100021, 48.606817539000076, 48.606817539000076, 33.40531002900025, 39.1820259240003, 39.1820259240003, 39.257511649000435, 39.257511649000435, 39.257511649000435, 39.1820259240003, 42.980695028000355, 37.20763282400026, 37.20763282400026, 31.281991285000004, 42.905279264, 42.905279264, 36.98245718000021, 33.18084954899996, 33.18084954899996, 38.80613782400019, 39.10684830400032, 39.10684830400032, 39.10684830400032, 12.649584785000343, 12.649584785000343, 38.881315444000165, 33.10602938900024, 8.77321269700019, 8.77321269700019, 18.351839445000223, 10.750130673000285, 10.750130673000285, 10.676439328000242, 12.28173533600011, 12.28173533600011, 14.401479724000183, 12.502264244000116, 12.502264244000116, 12.28173533600011, 14.180593600000066, 14.180593600000066, 12.28173533600011, 10.382877072000383, 17.908334134999905, 17.908334134999905, 14.10696489199995, 12.28173533600011, 12.28173533600011, 557.2670165080001, 10.015623471000026, 10.015623471000026, 19.658797768999875, 12.134716064000031, 12.134716064000031, 12.060905159000185, 13.812148303000185, 11.913885887000106, 11.913885887000106, 9.868842343000097, 13.664890886999956, 13.664890886999956, 11.84037625100018, 9.942232907000061, 9.942232907000061, 9.942232907000061, 10.015623471000026, 10.015623471000026, 13.73851959500007, 9.942232907000061, 9.942232907000061, 7.893657429000086, 17.390961729000082, 13.591262179000068, 13.591262179000068, 11.766866615000026, 17.390961729000082, 17.390961729000082, 11.693356979000328, 9.648369870000124, 9.648369870000124, 19.140591371000255, 44.966626388999885, 44.966626388999885, 35.63048046500012, 31.68352642900004, 11.104978622000317, 11.104978622000317, 13.001930758000299, 9.281417050000073, 9.281417050000073, 9.208026486000108, 11.031167717000244, 11.031167717000244, 7.233615613000211, 11.031167717000244, 11.031167717000244, 16.651685301000043, 7.160344365000128, 7.160344365000128, 8.91416344900017, 8.840772885000206, 16.503951109000127, 16.503951109000127, 48.22802000300021, 34.95464591600012, 34.95464591600012, 30.85989138900004, 10.442789360000234, 10.442789360000234, 16.134312894999994, 10.663619537000159, 10.663619537000159, 49.89951104600027, 40.1887663550001, 47.84824748899996, 47.84824748899996, 47.54467830500016, 45.725882297, 45.725882297, 34.50398701100016, 36.39891345900014], \"power_mean\": 26.3037321471489, \"energy_millijoules\": 3196.3271598418064, \"energy_joules\": 3.1963271598418066, \"coremark_score\": 2057.49463, \"coremarks_per_mhz\": 3.2473084438131314, \"ulpmark_cm_score\": 78.21477198609828}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1178.6342822, 1182.5082482399998, 1184.3379667, 1182.36003776], \"power_mean\": 1181.9601337249999, \"energy_millijoules\": 5909.800668624999, \"energy_joules\": 5.9098006686249995}}, \"902400\": {\"active\": {\"elapsed_sec\": 85.484212572, \"elapsed_ns\": 85484212572, \"power_samples\": [54.97798171700015, 54.97798171700015, 26.543606267000087, 28.441819181000028, 28.441819181000028, 30.3361502690002, 26.618188039000188, 26.618188039000188, 30.11138314899995, 33.90321101000018, 30.036562989000004, 30.036562989000004, 28.068007589000217, 28.068007589000217, 28.068007589000217, 26.1703917440002, 35.49647391400026, 35.49647391400026, 29.736975709000035, 27.84359817299992, 27.84359817299992, 29.66215554900009, 27.69419599700018, 27.69419599700018, 25.946340765000286, 25.871758993000185, 33.37749355700021, 33.37749355700021, 27.544793821000212, 29.362874909000084, 29.362874909000084, 27.395391645000018, 29.063287629000342, 29.063287629000342, 29.362874909000084, 33.077259365000145, 33.077259365000145, 55.41809764100026, 53.2202411090002, 62.68206971900008, 62.68206971900008, 60.71363363499995, 64.49657645100001, 64.49657645100001, 51.4010241750002, 53.2202411090002, 53.2202411090002, 27.09628114100019, 32.77671755600022, 32.77671755600022, 34.593726264000225, 32.701659008000206, 32.701659008000206, 34.51854864400025, 26.946878965000224, 28.688880188999974, 28.688880188999974, 24.901584631000333, 24.82700285900023, 24.82700285900023, 26.722469549000152, 565.844067109, 565.844067109, 33.99199719900025, 24.75242108700013, 24.75242108700013, 36.03370477500039, 28.46441970900014, 24.52867577100028, 24.52867577100028, 28.23995922900008, 32.025824459000205, 32.025824459000205, 28.23995922900008, 28.23995922900008, 28.23995922900008, 26.348964109000008, 26.199255781000147, 26.199255781000147, 24.155461248000165, 24.08087947600029, 24.08087947600029, 27.865551788999937, 27.865551788999937, 27.865551788999937], \"power_mean\": 45.57059522072956, \"energy_millijoules\": 3895.566448881413, \"energy_joules\": 3.895566448881413, \"coremark_score\": 2924.763387, \"coremarks_per_mhz\": 3.241094178856383, \"ulpmark_cm_score\": 64.17551934502}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1181.29293471, 1179.3199006599998, 1184.7851749499998, 1184.7851749499998], \"power_mean\": 1182.5457963175, \"energy_millijoules\": 5912.728981587499, \"energy_joules\": 5.912728981587499}}, \"1113600\": {\"active\": {\"elapsed_sec\": 69.135565546, \"elapsed_ns\": 69135565546, \"power_samples\": [51.99770998100007, 51.99770998100007, 51.92134090900004, 51.69192070500026, 51.69192070500026, 46.020426650000445, 49.72259204600027, 49.72259204600027, 51.61555163300022, 45.944415038000216, 45.944415038000216, 49.64634229000012, 51.53918256100019, 51.53918256100019, 49.41759302200012, 49.64634229000012, 49.41759302200012, 49.41759302200012, 55.01069256100004, 49.341343266000194, 49.341343266000194, 43.59610167500023, 45.4883453660002, 45.4883453660002, 43.368113753000216, 49.112281499000346, 49.112281499000346, 48.95978198700004, 48.95978198700004, 45.18398739500026, 45.18398739500026, 50.851547925000204, 50.851547925000204, 50.851547925000204, 52.43317916900014, 48.73103271900004, 48.73103271900004, 48.73103271900004, 43.06454456899996, 43.06454456899996, 54.32059968900012, 42.91244894300007, 42.91244894300007, 50.54575864900016, 50.46938957700013, 48.57822070800012, 48.57822070800012, 48.349471440000116, 44.72760620000031, 44.72760620000031, 50.46938957700013, 50.39302050500032, 50.39302050500032, 52.356691025000146, 48.50197095200042, 48.50197095200042, 44.72760620000031, 52.28020288100015, 52.28020288100015, 52.12722659299993, 48.349471440000116, 48.27322168400042, 48.27322168400042, 48.27322168400042, 50.16391328900022, 50.16391328900022, 48.196971928000266, 50.087544217000186, 50.087544217000186], \"power_mean\": 48.90395532339149, \"energy_millijoules\": 3381.002608718988, \"energy_joules\": 3.381002608718988, \"coremark_score\": 3616.374946, \"coremarks_per_mhz\": 3.247463133979885, \"ulpmark_cm_score\": 73.94256347371507}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1132.036340456, 1135.891721016, 1135.891721016, 1132.107586504], \"power_mean\": 1133.981842248, \"energy_millijoules\": 5669.90921124, \"energy_joules\": 5.66990921124}}, \"1401600\": {\"active\": {\"elapsed_sec\": 54.930586959, \"elapsed_ns\": 54930586959, \"power_samples\": [-23.99444152299975, 81.39242722100039, 84.85278912400008, 84.85278912400008, 94.20228945700023, 81.07885013300006, 81.07885013300006, 86.73782722800001, 88.54753382500007, 84.77383419900002, 84.77383419900002, 81.0001345730002, 86.65875274299992, 86.65875274299992, 86.58000101100015, 86.58000101100015, 86.58000101100015, 88.46866277700019, 88.31092068100043, 88.31092068100043, 88.31092068100043, 88.1531785850002, 86.02841613400005, 86.02841613400005, 86.18624235100015, 86.02841613400005, 86.02841613400005, 84.30203823900001, 84.14445065400014, 84.14445065400014, 86.02841613400005, 85.94966440200005, 85.94966440200005, 618.7895906990002, 80.21587056500039, 80.21587056500039, 85.94966440200005, 86.02841613400005, 87.91624219900041, 87.91624219900041, 84.0658179940001, 89.64222743900041, 89.64222743900041, 85.63465747400005, 83.90855267400002, 83.90855267400002, 87.6796290550003, 87.52188695900008, 87.52188695900008, 89.4052570790002, 85.63465747400005, 85.63465747400005, 85.63465747400005, 87.52188695900008], \"power_mean\": 93.798442090352, \"energy_millijoules\": 5152.403479862806, \"energy_joules\": 5.152403479862806, \"coremark_score\": 4551.578487, \"coremarks_per_mhz\": 3.247416157962329, \"ulpmark_cm_score\": 48.521044785618535}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1130.1115291920003, 1134.103444344, 1134.103444344, 1137.813769855], \"power_mean\": 1134.03304693375, \"energy_millijoules\": 5670.16523466875, \"energy_joules\": 5.67016523466875}}, \"1536000\": {\"active\": {\"elapsed_sec\": 50.12352321, \"elapsed_ns\": 50123523210, \"power_samples\": [108.49108109000008, 107.60875518500006, 107.60875518500006, 107.44806342799984, 107.36788185600017, 107.36788185600017, 105.48196582500009, 107.28770028400004, 107.28770028400004, 114.73865973499983, 107.28770028400004, 107.28770028400004, 112.8529823360002, 107.28770028400004, 110.97116112799995, 110.97116112799995, 110.97116112799995, 105.32184131300028, 105.32184131300028, 112.8529823360002, 106.96664538300024, 106.96664538300024, 110.72957239100015, 105.08132642100009, 105.08132642100009, 110.72957239100015, 110.72957239100015, 110.72957239100015, 110.72957239100015, 110.81032169600007, 112.61103589499999, 112.61103589499999, 106.64591909500018, 106.96664538300024, 106.96664538300024, 105.00126416500007, 105.16171680100024, 105.16171680100024, 110.72957239100015, 112.5304971070002, 112.5304971070002, 110.6491526750001, 106.64591909500018, 106.64591909500018, 112.28888074300016, 110.32747381099989, 104.68101514100022, 104.68101514100022, 112.20834195500015, 106.56573752300005], \"power_mean\": 108.63957609446011, \"energy_millijoules\": 5445.398313895233, \"energy_joules\": 5.445398313895232, \"coremark_score\": 4988.128255, \"coremarks_per_mhz\": 3.2474793326822913, \"ulpmark_cm_score\": 45.9103238347258}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1136.5938981049999, 1142.25859749, 1134.703087184, 1134.703087184], \"power_mean\": 1137.06466749075, \"energy_millijoules\": 5685.32333745375, \"energy_joules\": 5.685323337453751}}, \"1747200\": {\"active\": {\"elapsed_sec\": 44.065374879, \"elapsed_ns\": 44065374879, \"power_samples\": [138.2267489220003, 138.2267489220003, 147.0564545890004, 148.85309027300013, 148.85309027300013, 148.6872468890001, 141.16659542900015, 141.16659542900015, 142.96323135700027, 148.6043251970002, 148.6043251970002, 141.00136721900026, 148.52106366200042, 140.91892205900012, 140.91892205900012, 142.88032874700025, 146.6421021340002, 146.6421021340002, 140.67158657899995, 142.79776451499993, 142.79776451499993, 146.31089165400022, 140.67158657899995, 140.67158657899995, 146.31089165400022, 142.46750758700023, 142.46750758700023, 142.46750758700023, 149.90178060600033, 142.46750758700023, 142.46750758700023, 140.50669625900014, 147.7744285910003, 147.7744285910003, 148.02353351000033, 145.89653919900024, 145.89653919900024, 148.02353351000033, 148.02353351000033, 148.02353351000033, 142.38494335500013, 142.13691228100015, 147.7744285910003, 147.7744285910003], \"power_mean\": 144.6004120410002, \"energy_millijoules\": 6371.871364244539, \"energy_joules\": 6.371871364244539, \"coremark_score\": 5673.952021, \"coremarks_per_mhz\": 3.2474542244734432, \"ulpmark_cm_score\": 39.23494146521278}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1143.278560582, 1137.6181536469999, 1135.732639255, 1135.732639255], \"power_mean\": 1138.09049818475, \"energy_millijoules\": 5690.45249092375, \"energy_joules\": 5.69045249092375}}, \"1843200\": {\"active\": {\"elapsed_sec\": 41.770586912, \"elapsed_ns\": 41770586912, \"power_samples\": [-27.14674587499985, 701.046522113, 164.09867477900002, 164.09867477900002, 169.7298409790003, 165.72339074700017, 165.72339074700017, 167.51585671500015, 167.6000889310003, 167.6000889310003, 165.72339074700017, 169.4767871150002, 169.4767871150002, 173.14943949999997, 167.51585671500015, 165.38659344500002, 165.38659344500002, 165.38659344500002, 167.17858263700032, 167.17858263700032, 167.17858263700032, 168.970333685, 168.970333685, 167.09435042100017, 168.970333685, 168.970333685, 178.35793846100023, 168.88598239700013, 167.09435042100017, 167.09435042100017, 172.64155476500014, 163.25838982100004, 163.25838982100004, 163.25838982100004, 168.71727982100015, 168.71727982100015, 168.71727982100015, 164.96602772500023, 164.96602772500023, 172.7261444410001, 167.01011820500003], \"power_mean\": 175.89445758370746, \"energy_millijoules\": 7347.2147278393495, \"energy_joules\": 7.34721472783935, \"coremark_score\": 5985.586707, \"coremarks_per_mhz\": 3.247388621419271, \"ulpmark_cm_score\": 34.02649973638641}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1134.799657825, 1134.799657825, 1142.2671812180001, 1134.727935245], \"power_mean\": 1136.64860802825, \"energy_millijoules\": 5683.24304014125, \"energy_joules\": 5.68324304014125}}}}, \"4\": {\"freqs\": {\"1113600\": {\"active\": {\"elapsed_sec\": 42.933015244, \"elapsed_ns\": 42933015244, \"power_samples\": [-24.16574532300001, 191.41172863700012, 194.73300812300022, 192.68593937900027, 192.68593937900027, 194.47495030699997, 190.55321423300006, 190.55321423300006, 196.00879608700006, 192.25608632900025, 192.25608632900025, 190.38165197700005, 196.00879608700006, 196.00879608700006, 192.17018612900006, 194.04450140900008, 194.04450140900008, 195.83651891099998, 190.21008972100026, 193.95848213700015, 193.95848213700015, 190.12430859300025, 193.95848213700015, 193.95848213700015, 195.57775012000002, 189.95239477500036, 189.95239477500036, 193.70007178300034, 191.74033307900004, 191.74033307900004, 193.87246286500022, 186.11533519400018, 193.70007178300034, 193.70007178300034, 186.11533519400018, 193.52803323900002, 193.52803323900002, 191.65443287900007, 195.31933435600013, 195.31933435600013, 189.7808325190001, 195.40547294399994], \"power_mean\": 187.5909172510954, \"energy_millijoules\": 8053.843709977222, \"energy_joules\": 8.053843709977222, \"coremark_score\": 5824.247507, \"coremarks_per_mhz\": 5.230107315912357, \"ulpmark_cm_score\": 31.041079142161184}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1136.108595656, 1126.689674944, 1126.689674944, 1130.2412472], \"power_mean\": 1129.932298186, \"energy_millijoules\": 5649.661490930001, \"energy_joules\": 5.649661490930001}}, \"1401600\": {\"active\": {\"elapsed_sec\": 34.136351289, \"elapsed_ns\": 34136351289, \"power_samples\": [293.83897265300016, 293.83897265300016, 295.91420956700017, 292.08122771900025, 292.08122771900025, 299.1939228800002, 291.61858349299996, 295.3576824370002, 295.3576824370002, 293.3029886930001, 293.3029886930001, 293.3029886930001, 285.6377216170001, 293.1178444210004, 293.1178444210004, 291.1563181730003, 298.6359644450001, 298.6359644450001, 294.8015351890001, 292.83974861900015, 292.9327001490001, 292.9327001490001, 292.65460434700026, 294.70846409900014, 294.70846409900014, 292.65460434700026, 290.7861270110002, 290.7861270110002, 292.65460434700026, 294.33769926700006, 294.33769926700006, 292.46946007500014, 290.7861270110002, 290.7861270110002], \"power_mean\": 293.3726440340296, \"energy_millijoules\": 10014.671635328383, \"energy_joules\": 10.014671635328384, \"coremark_score\": 7325.577988, \"coremarks_per_mhz\": 5.226582468607306, \"ulpmark_cm_score\": 24.96337464706125}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1131.335679584, 1131.335679584, 1133.2208792299998, 1133.2208792299998], \"power_mean\": 1132.278279407, \"energy_millijoules\": 5661.3913970349995, \"energy_joules\": 5.661391397035}}, \"1747200\": {\"active\": {\"elapsed_sec\": 27.377319156, \"elapsed_ns\": 27377319156, \"power_samples\": [510.20388510500015, 422.7646065670001, 434.7089743490001, 428.8084238590002, 428.8084238590002, 426.8429077280002, 430.1635857120002, 430.1635857120002, 428.19896188400025, 424.46915007500024, 424.46915007500024, 429.960332248, 424.46915007500024, 424.46915007500024, 427.7925152290002, 424.2661964930003, 424.2661964930003, 429.553408817, 433.28202770900043, 429.6550355490001, 429.6550355490001, 427.69100756900025, 425.82860632100005, 425.82860632100005, 429.553408817, 427.5894999090001, 427.5894999090001], \"power_mean\": 430.7796789632594, \"energy_millijoules\": 11793.59275689637, \"energy_joules\": 11.79359275689637, \"coremark_score\": 9135.089707, \"coremarks_per_mhz\": 5.228416727907509, \"ulpmark_cm_score\": 21.19795088344144}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1128.667716072, 1124.907647768, 1124.907647768, 1130.6193534880001], \"power_mean\": 1127.2755912740001, \"energy_millijoules\": 5636.377956370001, \"energy_joules\": 5.6363779563700005}}, \"1958400\": {\"active\": {\"elapsed_sec\": 24.41859447, \"elapsed_ns\": 24418594470, \"power_samples\": [-22.849013820999744, 537.8692286370001, 538.0973232290003, 538.0973232290003, 545.098986164, 588.267687341, 588.267687341, 568.1643126830002, 554.9366540070002, 540.7277571390002, 540.7277571390002, 542.585392579, 540.6187435510001, 540.6187435510001, 542.367127259, 540.0736756110002, 540.0736756110002, 540.5097299629999, 540.2917027870001, 540.2917027870001, 540.0736756110002, 536.2468074290002, 540.0736756110002, 540.0736756110002], \"power_mean\": 522.5543346270418, \"energy_millijoules\": 12760.042385798413, \"energy_joules\": 12.760042385798414, \"coremark_score\": 10242.543428, \"coremarks_per_mhz\": 5.23005689746732, \"ulpmark_cm_score\": 19.592411407523482}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1129.544717616, 1133.377140715, 1133.377140715, 1131.4986554749999], \"power_mean\": 1131.94941363025, \"energy_millijoules\": 5659.7470681512505, \"energy_joules\": 5.65974706815125}}, \"2150400\": {\"active\": {\"elapsed_sec\": 22.242197283, \"elapsed_ns\": 22242197283, \"power_samples\": [-3.0554164459997537, 658.7389606940003, 657.336911744, 657.336911744, 658.839627956, 653.0438247270004, 653.0438247270004, 656.285614289, 656.285614289, 656.285614289, 657.9041350970001, 652.1111930130003, 652.1111930130003, 664.963534017, 661.0259469290002, 655.2343168340001, 655.2343168340001, 657.0855189700003, 655.2343168340001, 655.2343168340001, 651.2950805710002, 656.7344097710002], \"power_mean\": 626.2868075786365, \"energy_millijoules\": 13929.994729904292, \"energy_joules\": 13.929994729904292, \"coremark_score\": 11245.052177, \"coremarks_per_mhz\": 5.229283936476934, \"ulpmark_cm_score\": 17.94688403315122}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1128.613288272, 1128.613288272, 1128.971598048, 1132.7302714139998], \"power_mean\": 1129.7321115015, \"energy_millijoules\": 5648.6605575075, \"energy_joules\": 5.6486605575075}}, \"2208000\": {\"active\": {\"elapsed_sec\": 21.659178794, \"elapsed_ns\": 21659178794, \"power_samples\": [731.5125443150002, 731.5125443150002, 733.417962816, 729.2280585230001, 729.2280585230001, 737.8704259490003, 730.2283137650002, 730.2283137650002, 730.2283137650002, 730.2283137650002, 735.5327490130001, 735.5327490130001, 735.2885108690002, 731.4668728500003, 731.4668728500003, 736.7697816770001, 734.5552959490001, 734.5552959490001, 734.5552959490001, 730.6132085510003, 730.6132085510003], \"power_mean\": 732.6015567010478, \"energy_millijoules\": 15867.548101350721, \"energy_joules\": 15.867548101350721, \"coremark_score\": 11547.344111, \"coremarks_per_mhz\": 5.2297754125905795, \"ulpmark_cm_score\": 15.755427265962963}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1131.292555075, 1131.436238379, 1129.632692615, 1129.632692615], \"power_mean\": 1130.498544671, \"energy_millijoules\": 5652.492723355, \"energy_joules\": 5.6524927233549995}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sdm660/second/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 1160 mW\n\n\n===== CPU 1 =====\nFrequencies: 633 902 1113 1401 1536 1747 1843\n\n 633:  2057     3.2 C/MHz     26 mW    3.2 J   78.2 I/mJ   121.5 s\n 902:  2925     3.2 C/MHz     46 mW    3.9 J   64.2 I/mJ    85.5 s\n1113:  3616     3.2 C/MHz     49 mW    3.4 J   73.9 I/mJ    69.1 s\n1401:  4552     3.2 C/MHz     94 mW    5.2 J   48.5 I/mJ    54.9 s\n1536:  4988     3.2 C/MHz    109 mW    5.4 J   45.9 I/mJ    50.1 s\n1747:  5674     3.2 C/MHz    145 mW    6.4 J   39.2 I/mJ    44.1 s\n1843:  5986     3.2 C/MHz    176 mW    7.3 J   34.0 I/mJ    41.8 s\n\n\n===== CPU 4 =====\nFrequencies: 1113 1401 1747 1958 2150 2208\n\n1113:  5824     5.2 C/MHz    188 mW    8.1 J   31.0 I/mJ    42.9 s\n1401:  7326     5.2 C/MHz    293 mW   10.0 J   25.0 I/mJ    34.1 s\n1747:  9135     5.2 C/MHz    431 mW   11.8 J   21.2 I/mJ    27.4 s\n1958: 10243     5.2 C/MHz    523 mW   12.8 J   19.6 I/mJ    24.4 s\n2150: 11245     5.2 C/MHz    626 mW   13.9 J   17.9 I/mJ    22.2 s\n2208: 11547     5.2 C/MHz    733 mW   15.9 J   15.8 I/mJ    21.7 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sdm660/second/uptime.txt",
    "content": " 06:08:00 up 14 min,  load average: 6.86, 6.48, 4.10\n"
  },
  {
    "path": "results/sdm660/second/versions.txt",
    "content": "Kernel: Linux version 4.4.247-lapisLazuli r3-Beta+ (Moeeze@Avalon) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project 01f0d162d672c02b7207e0b3a6c494c4d0ea513d)) #1 SMP PREEMPT Sat Jan 9 18:36:07 Asia 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sdm660/third/cmdline.txt",
    "content": "rcupdate.rcu_normal_after_boot=1 quiet noirqdebug nodebugmon kpti=off nosoftlockup=0 mce=ignore_ce cgroup_disable=pressure androidboot.hardware=qcom user_debug=31 msm_rtb.filter=0x37 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 service_locator.enable=1 androidboot.configfs=true androidboot.usbcontroller=a800000.dwc3 loop.max_part=7 printk.devkmsg=on usbcore.autosuspend=7 kpti=off buildvariant=userdebug veritykeyid=id:7e4333f9bba00adfe0ede979e28ed1920492b40f rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 root=/dev/dm-0 dm=\"system none ro,0 1 android-verity /dev/mmcblk0p65\" androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.veritymode=enforcing androidboot.bootdevice=c0c4000.sdhci androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_nt36672_tianma_fhd_video:config0:1:none:cfg:single_dsi androidboot.slot_suffix=_a skip_initramfs rootwait ro init=/init androidboot.dtb_idx=-1347440721 androidboot.fpsensor=fpc androidboot.secureboot=1 androidboot.hwc=Global androidboot.hwversion=2.21.0 androidboot.hwlevel=MP\n"
  },
  {
    "path": "results/sdm660/third/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 4 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nHardware\t: Qualcomm Technologies, Inc SDM660\n"
  },
  {
    "path": "results/sdm660/third/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. SDM 660 PM660 + PM660L MTP, Jasmine;\nCompatible: qcom,sdm660-mtp;qcom,sdm660;qcom,mtp;\n"
  },
  {
    "path": "results/sdm660/third/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x51af8014]\n[    0.000000] Linux version 4.19.217-Scarlet-X-v1.0+ (Tashar@Alpha-α) (Atom-X clang version 14.0.0 (https://github.com/llvm/llvm-project 2f07534263ca617420239c9d250dffd9ff527a7a), LLD 14.0.0) #1 SMP PREEMPT Fri Nov 26 23:00:57 IST 2021\n[    0.000000] Machine model: Qualcomm Technologies, Inc. SDM 660 PM660 + PM660L MTP, Jasmine\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe800000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x000000009cc00000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node venus_fw_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6000000, size 128 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f0400000, size 92 MiB\n[    0.000000] OF: reserved mem: initialized node secure_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085600000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_msa_guard@85600000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085700000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_msa_mem@85700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085800000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node removed_regions@85800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086000000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node smem-mem@86000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086200000, size 45 MiB\n[    0.000000] OF: reserved mem: initialized node removed_regions@86200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ac00000, size 126 MiB\n[    0.000000] OF: reserved mem: initialized node modem_fw_region@8ac00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000092a00000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_fw_region@92a00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094800000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node pil_mba_region@94800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094a00000, size 6 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_fw_region@94a00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000a0000000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node ramoops, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 984000\n[    0.000000]   DMA32 zone: 7292 pages used for memmap\n[    0.000000]   DMA32 zone: 0 pages reserved\n[    0.000000]   DMA32 zone: 466688 pages, LIFO batch:63\n[    0.000000]   Normal zone: 8083 pages used for memmap\n[    0.000000]   Normal zone: 517312 pages, LIFO batch:63\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.0 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] Did not receive the expected number of bytes from PRNG: 0\n[    0.000000] percpu: Embedded 20 pages/cpu s51608 r0 d30312 u81920\n[    0.000000] pcpu-alloc: s51608 r0 d30312 u81920 alloc=20*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: enabling workaround for ARM erratum 845719\n[    0.000000] ARM_SMCCC_ARCH_WORKAROUND_1 missing from firmware\n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 968625\n[    0.000000] Kernel command line: rcupdate.rcu_normal_after_boot=1 quiet noirqdebug nodebugmon kpti=off nosoftlockup=0 mce=ignore_ce cgroup_disable=pressure androidboot.hardware=qcom user_debug=31 msm_rtb.filter=0x37 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 service_locator.enable=1 androidboot.configfs=true androidboot.usbcontroller=a800000.dwc3 loop.max_part=7 printk.devkmsg=on usbcore.autosuspend=7 kpti=off buildvariant=userdebug veritykeyid=id:7e4333f9bba00adfe0ede979e28ed1920492b40f rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 root=/dev/dm-0 dm=\"system none ro,0 1 android-verity /dev/mmcblk0p65\" androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.veritymode=enforcing androidboot.bootdevice=c0c4000.sdhci androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_nt36672_tianma_fhd_video:config0:1:none:cfg:single_dsi androidboot.slot_suffix=_a skip_initramfs rootwait ro init=/init androidboot.d\n[    0.000000] IRQ lockup detection disabled\n[    0.000000] cgroup: Disabling pressure control group feature\n[    0.000000] cgroup: Disabling pressure control group feature\n[    0.000000] device-mapper: init: will configure 1 devices\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 131072 bytes\n[    0.000000] log_buf_len: 1048576 bytes\n[    0.000000] early log buf free: 125044(95%)\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off\n[    0.000000] software IO TLB: mapped [mem 0xec400000-0xf0400000] (64MB)\n[    0.000000] Memory: 3459044K/3936000K available (16382K kernel code, 2462K rwdata, 5884K rodata, 640K init, 2823K bss, 214812K reserved, 262144K cma-reserved)\n[    0.000000] random: random: get_random_u64 called from __kmem_cache_create+0x3c/0x3ec with crng_init=0\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tNo expedited grace period (rcu_normal_after_boot).\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: Distributor has no Range Selector support\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000013] clocksource: Switched to clocksource arch_sys_counter\n[    0.001369] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001377] pid_max: default: 32768 minimum: 301\n[    0.001487] Security Framework initialized\n[    0.001493] SELinux:  Initializing.\n[    0.001658] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001671] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.002997] ASID allocator initialised with 65536 entries\n[    0.003071] rcu: Hierarchical SRCU implementation.\n[    0.005921] scm_call failed: func id 0x42000c1c, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.005928] Failed to enable shmbridge, rsp = 0, ret = -95\n[    0.005931] shmbridge is not supported by this target\n[    0.006337] smp: Bringing up secondary CPUs ...\n[    0.008312] Detected VIPT I-cache on CPU1\n[    0.008407] CPU1: Booted secondary processor 0x0000000001 [0x51af8014]\n[    0.010358] Detected VIPT I-cache on CPU2\n[    0.010428] CPU2: Booted secondary processor 0x0000000002 [0x51af8014]\n[    0.012340] Detected VIPT I-cache on CPU3\n[    0.012409] CPU3: Booted secondary processor 0x0000000003 [0x51af8014]\n[    0.014767] CPU features: enabling workaround for ARM erratum 858921\n[    0.014803] Detected VIPT I-cache on CPU4\n[    0.014951] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.015004] arch_timer: CPU4: Trapping CNTVCT access\n[    0.015036] CPU4: Booted secondary processor 0x0000000100 [0x51af8002]\n[    0.017700] Detected VIPT I-cache on CPU5\n[    0.017767] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.017783] arch_timer: CPU5: Trapping CNTVCT access\n[    0.017792] CPU5: Booted secondary processor 0x0000000101 [0x51af8002]\n[    0.020109] Detected VIPT I-cache on CPU6\n[    0.020257] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.020304] arch_timer: CPU6: Trapping CNTVCT access\n[    0.020339] CPU6: Booted secondary processor 0x0000000102 [0x51af8002]\n[    0.023035] Detected VIPT I-cache on CPU7\n[    0.023108] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.023123] arch_timer: CPU7: Trapping CNTVCT access\n[    0.023132] CPU7: Booted secondary processor 0x0000000103 [0x51af8002]\n[    0.023398] smp: Brought up 1 node, 8 CPUs\n[    0.023403] SMP: Total of 8 processors activated.\n[    0.023407] CPU features: detected: GIC system register CPU interface\n[    0.023410] CPU features: detected: 32-bit EL0 Support\n[    0.023492] CPU: All CPU(s) started at EL1\n[    0.023543] alternatives: patching kernel code\n[    0.061604] Registered cp15_barrier emulation handler\n[    0.061619] Registered setend emulation handler\n[    0.061801] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.061812] futex hash table entries: 2048 (order: 5, 131072 bytes)\n[    0.067500] pinctrl core: initialized pinctrl subsystem\n[    0.068018] NET: Registered protocol family 16\n[    0.069632] schedtune: configured to support 6 boost groups\n[    0.070111] cpuidle: using governor menu\n[    0.070128] cpuidle: using governor qcom\n[    0.070232] NET: Registered protocol family 42\n[    0.071207] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.072149] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.072663] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.072702] Failed to create IPC log0\n[    0.072704] Failed to create IPC log1\n[    0.072705] Failed to create IPC log2\n[    0.072706] Failed to create IPC log3\n[    0.072708] Failed to create IPC log4\n[    0.072810] exit: IPA_USB init success!\n[    0.077378] console [pstore0] enabled\n[    0.077440] pstore: Registered ramoops as persistent store backend\n[    0.077443] ramoops: attached 0x400000@0xa0000000, ecc: 0/0\n[    0.082161] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.082547] platform soc:smem: assigned reserved memory node smem-mem@86000000\n[    0.083468] platform cce0000.qcom,venus: assigned reserved memory node venus_fw_region\n[    0.084160] platform 15700000.qcom,lpass: assigned reserved memory node adsp_fw_region@92a00000\n[    0.084312] platform 1a300000.qcom,turing: assigned reserved memory node cdsp_fw_region@94a00000\n[    0.084505] platform 4080000.qcom,mss: assigned reserved memory node modem_fw_region@8ac00000\n[    0.105673] Unable to find DT property: qcom,msm-imem-download_mode\n[    0.106780] Unable to find DT property: qcom,msm-imem-emergency_download_mode\n[    0.107908] spmi spmi-0: PMIC arbiter version v3 (0x30000000)\n[    0.113180] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.113904] msm_watchdog 17817000.qcom,wdt: wdog absent resource not present\n[    0.114115] msm_watchdog 17817000.qcom,wdt: MSM Watchdog Initialized\n[    0.114233] sps:sps is ready.\n[    0.114778] gpu-sdm660 5065000.clock-controller: Registered GPU RBCPR clocks\n[    0.116093] qcom_glink_rpm soc:rpm-glink: failed to register early notif -22\n[    0.117333] gfx_mem_acc_corner: Bringing 0uV into 1-1uV\n[    0.117490] msm_gfx_ldo: Bringing 0uV into 400000-400000uV\n[    0.117550] GFX_LDO: msm_gfx_ldo_debugfs_init: debug_info node creation failed\n[    0.122834] gfx_stub_corner: supplied by regulator-dummy\n[    0.130330] qcom_smd_rpm_probe: RPM-SMD running version 0\n[    0.134616] cryptd: max_cpu_qlen set to 1000\n[    0.136313] gdsc_vfe0: supplied by gdsc_camss_top\n[    0.136442] gdsc_vfe1: supplied by gdsc_camss_top\n[    0.136575] gdsc_cpp: supplied by gdsc_camss_top\n[    0.137743] Failed to setup PIL ipc logging\n[    0.137766] socinfo_print: v0.11, id=317, ver=1.0, raw_id=140, raw_ver=0, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65563, pmic_die_revision=131072 foundry_id=3 serial_number=640512517 num_pmics=2\n[    0.139809] arm-smmu 16c0000.arm,smmu-anoc2: Couldn't get clock: smmu_aggr2_noc_clk\n[    0.140007] arm-smmu 5100000.arm,smmu-lpass_q6: Couldn't get clock: lpass_q6_smmu_clk\n[    0.140385] arm-smmu cd00000.arm,smmu-mmss: Couldn't get clock: mmss_mnoc_ahb_clk\n[    0.140482] arm-smmu 5040000.arm,smmu-kgsl: Couldn't get clock: gcc_gpu_cfg_ahb_clk\n[    0.140678] arm-smmu 5180000.arm,smmu-turing_q6: Couldn't get clock: turing_q6_smmu_clk\n[    0.141010] Error: Driver 'arm-smmu' is already registered, aborting...\n[    0.141247] qcom,qpnp-misc 800f000.qcom,spmi:qcom,pm660@0:qcom,misc@900: probe successful\n[    0.141520] SCSI subsystem initialized\n[    0.141608] usbcore: registered new interface driver usbfs\n[    0.141629] usbcore: registered new interface driver hub\n[    0.141655] usbcore: registered new device driver usb\n[    0.141807] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.141823] usb_phy_generic soc:usb_nop_phy: Linked as a consumer to regulator.0\n[    0.142220] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.142244] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.142417] input: qpnp_pon as /devices/platform/soc/800f000.qcom,spmi/spmi-0/spmi0-00/800f000.qcom,spmi:qcom,pm660@0:qcom,power-on@800/input/input0\n[    0.143163] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'cold' boot\n[    0.143185] qcom,qpnp-power-on 800f000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from GP1 (Keypad_Reset1)\n[    0.143574] i2c-msm-v2 c175000.i2c: error on clk_get(core_clk):-517\n[    0.143580] i2c-msm-v2 c175000.i2c: error probe() failed with err:-517\n[    0.143725] i2c-msm-v2 c176000.i2c: error on clk_get(core_clk):-517\n[    0.143730] i2c-msm-v2 c176000.i2c: error probe() failed with err:-517\n[    0.143901] i2c-msm-v2 c1b6000.i2c: error on clk_get(core_clk):-517\n[    0.143905] i2c-msm-v2 c1b6000.i2c: error probe() failed with err:-517\n[    0.144022] media: Linux media interface: v0.10\n[    0.144043] videodev: Linux video capture interface: v2.00\n[    0.147243] thermal_sys: of_parse_thermal_message board sensor: quiet_therm\n[    0.149174] tsens_tm_probe : unable to create IPC Logging 0 for tsens 0x00000000010ae000\n[    0.149178] tsens_tm_probe : unable to create IPC Logging 1 for tsens 0x00000000010ae000\n[    0.149182] tsens_tm_probe : unable to create IPC Logging 2 for tsens 0x00000000010ae000\n[    0.151688] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node adsp_region\n[    0.151791] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.151891] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_region\n[    0.160095] ION heap system created\n[    0.170067] ION heap adsp created at 0x00000000fe000000 with size 800000\n[    0.170071] ION heap qsecom created at 0x00000000fe800000 with size 1400000\n[    0.170076] ION heap secure_display created at 0x00000000f0400000 with size 5c00000\n[    0.170081] ION heap secure_heap created\n[    0.171572] PMIC@SID0: PM660 v2.0 options: 0, 0, 0, 0\n[    0.171687] PMIC@SID2: PM660L v2.0.1 options: 0, 0, 0, 0\n[    0.171874] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.171877] ipa ipa_plat_drv_probe:4842 fail to register with bus mgr!\n[    0.172840] Advanced Linux Sound Architecture Driver Initialized.\n[    0.173166] Bluetooth: Core ver 2.22\n[    0.173179] NET: Registered protocol family 31\n[    0.173181] Bluetooth: HCI device and connection manager initialized\n[    0.173188] Bluetooth: HCI socket layer initialized\n[    0.173192] Bluetooth: L2CAP socket layer initialized\n[    0.173197] Bluetooth: SCO socket layer initialized\n[    0.173270] pcie:pcie_init.\n[    0.173274] pcie_init: unable to create IPC log context for pcie0-short\n[    0.173278] pcie_init: unable to create IPC log context for pcie0-long\n[    0.173281] pcie_init: unable to create IPC log context for pcie0-dump\n[    0.173284] pcie_init: unable to create IPC log context for pcie1-short\n[    0.173286] pcie_init: unable to create IPC log context for pcie1-long\n[    0.173288] pcie_init: unable to create IPC log context for pcie1-dump\n[    0.173291] pcie_init: unable to create IPC log context for pcie2-short\n[    0.173293] pcie_init: unable to create IPC log context for pcie2-long\n[    0.173295] pcie_init: unable to create IPC log context for pcie2-dump\n[    0.178111] qcom-clk-smd-rpm soc:qcom,rpmcc: Registered RPM clocks\n[    0.178691] qcom,cpr4-mmss-ldo-regulator 5061000.cpr4-ctrl: Linked as a consumer to regulator.3\n[    0.178705] qcom,cpr4-mmss-ldo-regulator 5061000.cpr4-ctrl: Dropping the link to regulator.3\n[    0.194556] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=5400mV ncp_voltage=5400mV bst_voltage=5500mV\n[    0.194831] pm660_s4: Bringing 1uV into 1805000-1805000uV\n[    0.195114] pm660_s5: Bringing 1uV into 1224000-1224000uV\n[    0.195381] pm660_s6: Bringing 1uV into 504000-504000uV\n[    0.195652] pm660_l1: Bringing 1uV into 1150000-1150000uV\n[    0.195923] pm660_l2: Bringing 1uV into 950000-950000uV\n[    0.196193] pm660_l3: Bringing 1uV into 950000-950000uV\n[    0.196468] pm660_l5: Bringing 1uV into 525000-525000uV\n[    0.196744] pm660_l6: Bringing 1uV into 1200000-1200000uV\n[    0.196947] rpm_vreg_device_probe: pm660_l6_pin_ctrl: regulator type=0 does not support device tree property: qcom,init-pin-ctrl-mode\n[    0.196962] pm660_l6_pin_ctrl: Bringing 1uV into 1200000-1200000uV\n[    0.197236] pm660_l7: Bringing 1uV into 1200000-1200000uV\n[    0.197507] pm660_l8: Bringing 1uV into 1750000-1750000uV\n[    0.197777] pm660_l9: Bringing 1uV into 1750000-1750000uV\n[    0.197988] rpm_vreg_device_probe: pm660_l9_pin_ctrl: regulator type=0 does not support device tree property: qcom,init-pin-ctrl-mode\n[    0.198003] pm660_l9_pin_ctrl: Bringing 1uV into 1750000-1750000uV\n[    0.198300] pm660_l10: Bringing 1uV into 1780000-1780000uV\n[    0.198726] pm660_l11: Bringing 1uV into 1780000-1780000uV\n[    0.199000] pm660_l12: Bringing 1uV into 1780000-1780000uV\n[    0.199273] pm660_l13: Bringing 1uV into 1780000-1780000uV\n[    0.199551] pm660_l14: Bringing 1uV into 1710000-1710000uV\n[    0.199823] pm660_l15: Bringing 1uV into 1650000-1650000uV\n[    0.200145] pm660_l16: Bringing 1uV into 2800000-2800000uV\n[    0.200793] pm660_l17: Bringing 1uV into 1650000-1650000uV\n[    0.201071] pm660_l19: Bringing 1uV into 3200000-3200000uV\n[    0.201279] rpm_vreg_device_probe: pm660_l19_pin_ctrl: regulator type=0 does not support device tree property: qcom,init-pin-ctrl-mode\n[    0.201294] pm660_l19_pin_ctrl: Bringing 1uV into 3200000-3200000uV\n[    0.201570] pm660l_s1: Bringing 1uV into 1125000-1125000uV\n[    0.201846] pm660l_s2: Bringing 1uV into 1050000-1050000uV\n[    0.202127] pm660l_s3_level: Bringing 1uV into 16-16uV\n[    0.202347] pm660l_s3_floor_level: Bringing 1uV into 16-16uV\n[    0.202643] pm660l_s3_level_ao: Bringing 1uV into 16-16uV\n[    0.203058] pm660l_s5_level: Bringing 1uV into 16-16uV\n[    0.203279] pm660l_s5_floor_level: Bringing 1uV into 16-16uV\n[    0.203584] pm660l_s5_level_ao: Bringing 1uV into 16-16uV\n[    0.203859] pm660l_l1: Bringing 1uV into 800000-800000uV\n[    0.204138] pm660l_l2: Bringing 1uV into 350000-350000uV\n[    0.204421] pm660l_l3: Bringing 1uV into 1710000-1710000uV\n[    0.205077] pm660l_l4: Bringing 1uV into 1700000-1700000uV\n[    0.205365] pm660l_l5: Bringing 1uV into 1721000-1721000uV\n[    0.205652] pm660l_l6: Bringing 1uV into 1700000-1700000uV\n[    0.205938] pm660l_l7: Bringing 1uV into 2700000-2700000uV\n[    0.206037] pm660l_l7: supplied by pm660_l10\n[    0.206233] pm660l_l8: Bringing 1uV into 3200000-3200000uV\n[    0.206529] pm660l_l9_level: Bringing 1uV into 16-16uV\n[    0.206757] pm660l_l9_floor_level: Bringing 1uV into 16-16uV\n[    0.207438] pm660l_l10_level: Bringing 1uV into 16-16uV\n[    0.207668] pm660l_l10_floor_level: Bringing 1uV into 16-16uV\n[    0.208034] pm660l_bob: Bringing 1uV into 3300000-3300000uV\n[    0.208269] pm660l_bob_pin1: Bringing 1uV into 3300000-3300000uV\n[    0.208345] cam_avdd_gpio_regulator: supplied by pm660l_bob\n[    0.208364] cam_rear_avdd_gpio_regulator: supplied by pm660l_bob\n[    0.208520] pm660l_bob_pin2: Bringing 1uV into 3300000-3300000uV\n[    0.208727] pm660l_bob_pin3: Bringing 1uV into 3300000-3300000uV\n[    0.209570] arm-smmu 16c0000.arm,smmu-anoc2: \tnon-coherent table walk\n[    0.209574] arm-smmu 16c0000.arm,smmu-anoc2: \t(IDR0.CTTW overridden by FW configuration)\n[    0.209580] arm-smmu 16c0000.arm,smmu-anoc2: \tstream matching with 6 register groups\n[    0.216808] arm-smmu 5100000.arm,smmu-lpass_q6: Couldn't get clock: lpass_q6_smmu_clk\n[    0.217116] arm-smmu cd00000.arm,smmu-mmss: Couldn't get clock: mmss_mnoc_ahb_clk\n[    0.217253] arm-smmu 5040000.arm,smmu-kgsl: Couldn't get clock: gcc_gpu_cfg_ahb_clk\n[    0.217493] arm-smmu 5180000.arm,smmu-turing_q6: Couldn't get clock: turing_q6_smmu_clk\n[    0.217710] i2c-msm-v2 c175000.i2c: error on clk_get(core_clk):-517\n[    0.217715] i2c-msm-v2 c175000.i2c: error probe() failed with err:-517\n[    0.217907] i2c-msm-v2 c176000.i2c: error on clk_get(core_clk):-517\n[    0.217912] i2c-msm-v2 c176000.i2c: error probe() failed with err:-517\n[    0.218126] i2c-msm-v2 c1b6000.i2c: error on clk_get(core_clk):-517\n[    0.218131] i2c-msm-v2 c1b6000.i2c: error probe() failed with err:-517\n[    0.218310] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.218313] ipa ipa_plat_drv_probe:4842 fail to register with bus mgr!\n[    0.218388] gcc-sdm660 100000.clock-controller: Linked as a consumer to regulator.46\n[    0.218410] gcc-sdm660 100000.clock-controller: Linked as a consumer to regulator.48\n[    0.233501] Registered GCC clocks\n[    0.233588] mmcc-sdm660 c8c0000.clock-controller: Linked as a consumer to regulator.49\n[    0.233607] mmcc-sdm660 c8c0000.clock-controller: Linked as a consumer to regulator.46\n[    0.233628] mmcc-sdm660 c8c0000.clock-controller: Linked as a consumer to regulator.34\n[    0.252073] mmcc-sdm660 c8c0000.clock-controller: Registered MMSS clocks\n[    0.252160] gpucc-sdm660 5065000.gfx: Linked as a consumer to regulator.46\n[    0.252180] gpucc-sdm660 5065000.gfx: Linked as a consumer to regulator.49\n[    0.252204] gpucc-sdm660 5065000.gfx: Dropping the link to regulator.49\n[    0.252219] gpucc-sdm660 5065000.gfx: Dropping the link to regulator.46\n[    0.252574] qcom,cpr4-mmss-ldo-regulator 5061000.cpr4-ctrl: Linked as a consumer to regulator.3\n[    0.252594] qcom,cpr4-mmss-ldo-regulator 5061000.cpr4-ctrl: Linked as a consumer to regulator.46\n[    0.252608] qcom,cpr4-mmss-ldo-regulator 5061000.cpr4-ctrl: Linked as a consumer to regulator.1\n[    0.252636] qcom,cpr4-mmss-ldo-regulator 5061000.cpr4-ctrl: Linked as a consumer to regulator.2\n[    0.252644] cpr4_sdm660_mmss_read_fuse_data: gfx_corner: CPR fusing revision = 0\n[    0.252792] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[0] open-loop= 585000 uV\n[    0.252795] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[1] open-loop= 645000 uV\n[    0.252799] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[2] open-loop= 725000 uV\n[    0.252801] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[3] open-loop= 790000 uV\n[    0.252804] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[4] open-loop= 870000 uV\n[    0.252806] cpr4_sdm660_mmss_calculate_open_loop_voltages: gfx_corner: fuse_corner[5] open-loop= 925000 uV\n[    0.252911] cpr3_regulator_init_ctrl: gfx: Default CPR mode = open-loop\n[    0.253171] cpr3_regulator_debugfs_ctrl_add: gfx: cpr3-regulator debugfs base directory creation failed\n[    0.253322] cprh_kbss_read_fuse_data: apc0_pwrcl_corner: speed bin = 1\n[    0.253327] cprh_sdm660_kbss_read_fuse_data: apc0_pwrcl_corner: CPR fusing revision = 2\n[    0.253396] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused   LowSVS: open-loop= 614000 uV\n[    0.253399] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused      SVS: open-loop= 654000 uV\n[    0.253402] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused  SVSPLUS: open-loop= 698000 uV\n[    0.253406] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused      NOM: open-loop= 778000 uV\n[    0.253408] cprh_kbss_calculate_open_loop_voltages: apc0_pwrcl_corner: fused TURBO_L1: open-loop= 938000 uV\n[    0.253439] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused   LowSVS: quot[ 7]= 339\n[    0.253443] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused      SVS: quot[ 7]= 408, quot_offset[ 7]=  65\n[    0.253447] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused  SVSPLUS: quot[ 7]= 479, quot_offset[ 7]=  70\n[    0.253451] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused      NOM: quot[ 7]= 618, quot_offset[ 7]= 135\n[    0.253455] cprh_kbss_calculate_target_quotients: apc0_pwrcl_corner: fused TURBO_L1: quot[ 7]= 864, quot_offset[ 7]= 245\n[    0.253680] cpr3_regulator_init_ctrl: apc0: Default CPR mode = full HW closed-loop\n[    0.253783] cpr3_regulator_debugfs_ctrl_add: apc0: cpr3-regulator debugfs base directory creation failed\n[    0.253923] cprh_kbss_read_fuse_data: apc1_perfcl_corner: speed bin = 1\n[    0.253927] cprh_sdm660_kbss_read_fuse_data: apc1_perfcl_corner: CPR fusing revision = 2\n[    0.253991] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused      SVS: open-loop= 684000 uV\n[    0.253994] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused  SVSPLUS: open-loop= 728000 uV\n[    0.253997] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused      NOM: open-loop= 798000 uV\n[    0.254000] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused    TURBO: open-loop= 918000 uV\n[    0.254003] cprh_kbss_calculate_open_loop_voltages: apc1_perfcl_corner: fused TURBO_L2: open-loop= 958000 uV\n[    0.254030] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused      SVS: quot[ 7]= 549\n[    0.254033] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused  SVSPLUS: quot[ 7]= 634, quot_offset[ 7]=  85\n[    0.254037] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused      NOM: quot[ 7]= 779, quot_offset[ 7]= 145\n[    0.254041] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused    TURBO: quot[ 7]= 994, quot_offset[ 7]= 215\n[    0.254045] cprh_kbss_calculate_target_quotients: apc1_perfcl_corner: fused TURBO_L2: quot[ 7]=1067, quot_offset[ 7]=  70\n[    0.254248] cpr3_regulator_init_ctrl: apc1: Default CPR mode = full HW closed-loop\n[    0.254344] cpr3_regulator_debugfs_ctrl_add: apc1: cpr3-regulator debugfs base directory creation failed\n[    0.255033] arm-smmu 5100000.arm,smmu-lpass_q6: Linked as a consumer to regulator.6\n[    0.255070] arm-smmu 5100000.arm,smmu-lpass_q6: \tnon-coherent table walk\n[    0.255074] arm-smmu 5100000.arm,smmu-lpass_q6: \t(IDR0.CTTW overridden by FW configuration)\n[    0.255079] arm-smmu 5100000.arm,smmu-lpass_q6: \tstream matching with 13 register groups\n[    0.256452] arm-smmu cd00000.arm,smmu-mmss: Linked as a consumer to regulator.71\n[    0.256467] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.256470] arm-smmu cd00000.arm,smmu-mmss: Bus client registration failed\n[    0.256477] arm-smmu cd00000.arm,smmu-mmss: Dropping the link to regulator.71\n[    0.256647] arm-smmu 5040000.arm,smmu-kgsl: Linked as a consumer to regulator.16\n[    0.256680] arm-smmu 5040000.arm,smmu-kgsl: \tnon-coherent table walk\n[    0.256684] arm-smmu 5040000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by FW configuration)\n[    0.256689] arm-smmu 5040000.arm,smmu-kgsl: \tstream matching with 3 register groups\n[    0.257386] arm-smmu 5180000.arm,smmu-turing_q6: Linked as a consumer to regulator.7\n[    0.257415] arm-smmu 5180000.arm,smmu-turing_q6: \tnon-coherent table walk\n[    0.257419] arm-smmu 5180000.arm,smmu-turing_q6: \t(IDR0.CTTW overridden by FW configuration)\n[    0.257424] arm-smmu 5180000.arm,smmu-turing_q6: \tstream matching with 11 register groups\n[    0.258669] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.258674] i2c-msm-v2 c175000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.258861] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.259127] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.259132] i2c-msm-v2 c176000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)\n[    0.259307] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.259600] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.259605] i2c-msm-v2 c1b6000.i2c: msm_bus_scale_register_client(mstr-id:84):0 (not a problem)\n[    0.259819] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.260224] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.260227] ipa ipa_plat_drv_probe:4842 fail to register with bus mgr!\n[    0.260305] gpucc-sdm660 5065000.gfx: Linked as a consumer to regulator.46\n[    0.260326] gpucc-sdm660 5065000.gfx: Linked as a consumer to regulator.49\n[    0.260348] gpucc-sdm660 5065000.gfx: Linked as a consumer to regulator.68\n[    0.260925] gpucc_gfx3d_clk: set OPP pair(19200000 Hz: 1 uV) on 5000000.qcom,kgsl-3d0\n[    0.260948] gpucc_gfx3d_clk: set OPP pair(647000000 Hz: 6 uV) on 5000000.qcom,kgsl-3d0\n[    0.260955] gpucc_gfx3d_clk: set OPP pair(750000000 Hz: 7 uV) on 5000000.qcom,kgsl-3d0\n[    0.261259] gpucc-sdm660 5065000.gfx: Registered GPUCC clocks\n[    0.261449] clk-cpu-osm 179c0000.qcom,clk-cpu-660: Linked as a consumer to regulator.69\n[    0.261474] clk-cpu-osm 179c0000.qcom,clk-cpu-660: Linked as a consumer to regulator.70\n[    0.261516] clk-cpu-osm 179c0000.qcom,clk-cpu-660: using pwrcl speed bin 1 and pvs_ver 0\n[    0.261526] clk-cpu-osm 179c0000.qcom,clk-cpu-660: using perfcl speed bin 1 and pvs_ver 0\n[    0.263015] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu0\n[    0.263059] add_opp: Set OPP pair (1843200000 Hz, 932000 uv) on cpu0\n[    0.263090] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu1\n[    0.263123] add_opp: Set OPP pair (1843200000 Hz, 932000 uv) on cpu1\n[    0.263151] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu2\n[    0.263184] add_opp: Set OPP pair (1843200000 Hz, 932000 uv) on cpu2\n[    0.263213] add_opp: Set OPP pair (300000000 Hz, 612000 uv) on cpu3\n[    0.263246] add_opp: Set OPP pair (1843200000 Hz, 932000 uv) on cpu3\n[    0.263260] add_opp: Set OPP pair (300000000 Hz, 700000 uv) on cpu4\n[    0.263269] add_opp: Set OPP pair (2208000000 Hz, 980000 uv) on cpu4\n[    0.263276] add_opp: Set OPP pair (300000000 Hz, 700000 uv) on cpu5\n[    0.263284] add_opp: Set OPP pair (2208000000 Hz, 980000 uv) on cpu5\n[    0.263292] add_opp: Set OPP pair (300000000 Hz, 700000 uv) on cpu6\n[    0.263299] add_opp: Set OPP pair (2208000000 Hz, 980000 uv) on cpu6\n[    0.263306] add_opp: Set OPP pair (300000000 Hz, 700000 uv) on cpu7\n[    0.263314] add_opp: Set OPP pair (2208000000 Hz, 980000 uv) on cpu7\n[    0.263316] populate_debugfs_dir: osm debugfs base directory creation failed\n[    0.263318] populate_debugfs_dir: osm debugfs base directory creation failed\n[    0.263875] clk_cpu_osm_driver_probe: OSM driver initialize\n[    0.264088] gdsc_gpu_gx: supplied by gfx_corner\n[    0.264537] arm-smmu cd00000.arm,smmu-mmss: Linked as a consumer to regulator.71\n[    0.264550] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.264555] arm-smmu cd00000.arm,smmu-mmss: Bus client registration failed\n[    0.264561] arm-smmu cd00000.arm,smmu-mmss: Dropping the link to regulator.71\n[    0.264791] legacy-dt-em: Registering EM of 0-3\n[    0.264962] legacy-dt-em: EM of CPU0 already loaded\n[    0.265058] legacy-dt-em: Registering EM of 4-7\n[    0.265157] legacy-dt-em: EM of CPU4 already loaded\n[    0.265180] cpufreq: driver msm up and running\n[    0.265252] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.265254] ipa ipa_plat_drv_probe:4842 fail to register with bus mgr!\n[    0.265559] arm-smmu cd00000.arm,smmu-mmss: Linked as a consumer to regulator.71\n[    0.265568] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.265571] arm-smmu cd00000.arm,smmu-mmss: Bus client registration failed\n[    0.265575] arm-smmu cd00000.arm,smmu-mmss: Dropping the link to regulator.71\n[    0.266243] clocksource: Switched to clocksource arch_sys_counter\n[    0.266360] VFS: Disk quotas dquot_6.6.0\n[    0.266397] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.268716] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.268720] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.268759] mdss_pll c994400.qcom,mdss_dsi_pll: Linked as a consumer to regulator.15\n[    0.269799] dsi_pll_clock_register_14nm: Registered DSI PLL ndx=0 clocks successfully\n[    0.269846] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.269849] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.269877] mdss_pll c996400.qcom,mdss_dsi_pll: Linked as a consumer to regulator.15\n[    0.270924] dsi_pll_clock_register_14nm: Registered DSI PLL ndx=1 clocks successfully\n[    0.270955] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.270985] mdss_pll c011c00.qcom,mdss_dp_pll: Linked as a consumer to regulator.15\n[    0.271410] msm_bus_fabric_init_driver\n[    0.278242] msm_bus_dev_init_qos: Skipping QOS init for 1\n[    0.278280] msm_bus_dev_init_qos: Skipping QOS init for 727\n[    0.278283] msm_bus_dev_init_qos: Skipping QOS init for 728\n[    0.278322] msm_bus_device 1620000.ad-hoc-bus: Bus scaling driver probe successful\n[    0.279354] NET: Registered protocol family 2\n[    0.279462] IP idents hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.280606] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes)\n[    0.280635] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.280786] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.281072] TCP: Hash tables configured (established 32768 bind 32768)\n[    0.281143] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.281192] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.281348] NET: Registered protocol family 1\n[    0.281654] PCI: CLS 0 bytes, default 64\n[    0.282020] IPA smmu_info.s1_bypass=1 smmu_info.fast_map=0\n[    0.282147] ipa 14780000.qcom,ipa:ipa_smmu_ap: Linked as a consumer to 16c0000.arm,smmu-anoc2\n[    0.282418] iommu: Adding device 14780000.qcom,ipa:ipa_smmu_ap to group 0\n[    0.282480] ipa ipa2_uc_state_check:288 uC interface not initialized\n[    0.282484] ipa ipa_sps_irq_control_all:956 EP (2) not allocated.\n[    0.282486] ipa ipa_sps_irq_control_all:956 EP (5) not allocated.\n[    0.283881] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000014784000\n[    0.283885] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000014784000\n[    0.283889] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000014784000\n[    0.283893] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000014784000\n[    0.283896] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000014784000\n[    0.283900] sps:BAM 0x0000000014784000 is registered.\n[    0.284589] sps:BAM 0x0000000014784000 (va:0x(____ptrval____)) enabled: ver:0x27, number of pipes:20\n[    0.291964] IPA driver initialization was successful.\n[    0.292275] ipa 14780000.qcom,ipa:ipa_smmu_uc: Linked as a consumer to 16c0000.arm,smmu-anoc2\n[    0.292635] iommu: Adding device 14780000.qcom,ipa:ipa_smmu_uc to group 1\n[    0.293324] arm-smmu cd00000.arm,smmu-mmss: Linked as a consumer to regulator.71\n[    0.293651] arm-smmu cd00000.arm,smmu-mmss: \tnon-coherent table walk\n[    0.293654] arm-smmu cd00000.arm,smmu-mmss: \t(IDR0.CTTW overridden by FW configuration)\n[    0.293661] arm-smmu cd00000.arm,smmu-mmss: \tstream matching with 52 register groups\n[    0.295507] Trying to unpack rootfs image as initramfs...\n[    0.539707] Freeing initrd memory: 7492K\n[    0.542528] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.550637] Initialise system trusted keyrings\n[    0.550883] workingset: timestamp_bits=45 max_order=20 bucket_order=0\n[    0.555115] exFAT: file-system version 5.8-2arter97\n[    0.555507] Registering sdcardfs 0.1\n[    0.555767] fuse init (API version 7.27)\n[    0.561873] Key type asymmetric registered\n[    0.561878] Asymmetric key parser 'x509' registered\n[    0.561917] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)\n[    0.561924] io scheduler noop registered\n[    0.562029] io scheduler cfq registered (default)\n[    0.562033] io scheduler mq-deadline registered\n[    0.562036] io scheduler kyber registered\n[    0.562102] io scheduler bfq registered\n[    0.570516] msm_mdss_get_res_byname: 'vbif_nrt_phys' resource not found\n[    0.570538] mdss_mdp_probe+0x1d8/0x2e18->msm_dss_ioremap_byname: 'vbif_nrt_phys' msm_mdss_get_res_byname failed\n[    0.570668] mdp c900000.qcom,mdss_mdp: Linked as a consumer to regulator.15\n[    0.571156] mdss_mdp_irq_clk_setup: unable to get core gdsc regulator\n[    0.571332] mdss_mdp_irq_clk_register: unable to get clk: bimc_clk\n[    0.572519] No change in context(0==0), skip\n[    0.573724] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:0 num:0 rect:0 ndx:0x1 prio:0\n[    0.573729] mdss_mdp_pipe_addr_setup: type:0 ftchid:-1 xinid:4 num:1 rect:0 ndx:0x2 prio:1\n[    0.573761] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:1 num:6 rect:0 ndx:0x40 prio:2\n[    0.573773] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:1 num:6 rect:1 ndx:0x40 prio:2\n[    0.573776] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:5 num:7 rect:0 ndx:0x80 prio:3\n[    0.573786] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:5 num:7 rect:1 ndx:0x80 prio:3\n[    0.573790] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:9 num:12 rect:0 ndx:0x1000 prio:4\n[    0.573802] mdss_mdp_pipe_addr_setup: type:2 ftchid:-1 xinid:9 num:12 rect:1 ndx:0x1000 prio:4\n[    0.573816] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:2 num:10 rect:0 ndx:0x400 prio:0\n[    0.573826] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-pipe-sw-reset-off : u32 array read\n[    0.573936] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-ib-factor-overlap : u32 array read\n[    0.573943] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-bus-througput-factor : u32 array read\n[    0.574694] mdss_mdp_probe: mdss version = 0x30020000, bootloader display is on, num 1, intf_sel=0x00000100\n[    0.576150] mdss_smmu c900000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.576623] iommu: Adding device c900000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb to group 2\n[    0.576850] mdss_smmu c900000.qcom,mdss_mdp:qcom,smmu_mdp_unsec_cb: Linked as a consumer to regulator.71\n[    0.576925] mdss_smmu_probe: iommu v2 domain[0] mapping and clk register successful!\n[    0.576981] mdss_smmu c900000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.578418] iommu: Adding device c900000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb to group 3\n[    0.578585] mdss_smmu c900000.qcom,mdss_mdp:qcom,smmu_mdp_sec_cb: Linked as a consumer to regulator.71\n[    0.578631] mdss_smmu_probe: iommu v2 domain[2] mapping and clk register successful!\n[    0.579040] mdss_dsi soc:qcom,mdss_dsi@0: Linked as a consumer to regulator.15\n[    0.579062] mdss_dsi soc:qcom,mdss_dsi@0: Linked as a consumer to regulator.24\n[    0.579099] mdss_dsi soc:qcom,mdss_dsi@0: Linked as a consumer to regulator.52\n[    0.580532] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->0\n[    0.580684] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_nt36672_tianma_fhd_video:config0:1:none:cfg:single_dsi panel_name:qcom,mdss_dsi_nt36672_tianma_fhd_video\n[    0.580714] mdss_dsi_panel_init: Panel Name = tianma nt36672 fhd video mode dsi panel\n[    0.580830] mdss_dsi_parse_split_link_settings: enable 0 sublinks-count 0 lanes per sublink 0\n[    0.580872] mdss_dsi_panel_timing_from_dt: found new timing \"qcom,mdss_dsi_nt36672_tianma_fhd_video\" ((____ptrval____))\n[    0.580893] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-post-panel-on-command\n[    0.580899] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-timing-switch-command\n[    0.580902] mdss_dsi_panel_get_dsc_cfg_np: cannot find dsc config node:config0\n[    0.581029] mdss_dsi_parse_panel_features: ulps feature enabled\n[    0.581034] mdss_dsi_parse_panel_features: ulps during suspend feature disabled\n[    0.581040] mdss_dsi_parse_dms_config: dynamic switch feature enabled: 0\n[    0.581065] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-on\n[    0.581071] mdss_dsi_parse_dcs_cmds: failed, key=qcom,mdss-dsi-lp-mode-off\n[    0.581098] dyn_fps: min = 48, max = 60\n[    0.581181] mdss_dsi_ctrl c994000.qcom,mdss_dsi_ctrl0: Linked as a consumer to regulator.35\n[    0.581208] mdss_dsi_ctrl c994000.qcom,mdss_dsi_ctrl0: Linked as a consumer to regulator.19\n[    0.581226] mdss_dsi_ctrl c994000.qcom,mdss_dsi_ctrl0: Linked as a consumer to regulator.20\n[    0.581248] mdss_dsi_parse_ctrl_params:4462 Unable to read qcom,display-id, data=(____ptrval____),len=20\n[    0.581277] mdss_dsi_parse_gpio_params: bklt_en gpio not specified\n[    0.581284] mdss_dsi_parse_gpio_params: avdd_en gpio not specified\n[    0.581322] msm_mdss_get_res_byname: 'dsi_phy_regulator' resource not found\n[    0.581339] mdss_dsi_retrieve_ctrl_resources+0x124/0x1fc->msm_dss_ioremap_byname: 'dsi_phy_regulator' msm_mdss_get_res_byname failed\n[    0.581343] mdss_dsi_retrieve_ctrl_resources: ctrl_base=(____ptrval____) ctrl_size=400 phy_base=(____ptrval____) phy_size=588\n[    0.581674] dsi_panel_device_register: Continuous splash enabled\n[    0.581727] Unable to find fb node for device: c994000.qcom,mdss_dsi_ctrl0\n[    0.581807] mdss_register_panel: adding framebuffer device c994000.qcom,mdss_dsi_ctrl0\n[    0.584612] mdss_dsi_ctrl_probe: Dsi Ctrl->0 initialized, DSI rev:0x20010000, PHY rev:0x2\n[    0.584662] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->1\n[    0.584666] mdss_dsi_pinctrl_init: failed to get pinctrl\n[    0.584669] mdss_dsi_ctrl_probe: failed to get pin resources\n[    0.584711] mdss_dsi_find_panel_of_node: cmdline:0:qcom,mdss_dsi_nt36672_tianma_fhd_video:config0:1:none:cfg:single_dsi panel_name:none\n[    0.584714] mdss_dsi_config_panel: can't find panel node 0:qcom,mdss_dsi_nt36672_tianma_fhd_video:config0:1:none:cfg:single_dsi\n[    0.584716] mdss_dsi_ctrl_probe: panel configuration failed\n[    0.584738] mdss_dsi_ctrl: probe of c996000.qcom,mdss_dsi_ctrl1 failed with error -22\n[    0.584758] mdss_dsi_status_init: DSI status check interval:1000\n[    0.585509] mdss_dp_usbpd_setup: get_usbpd phandle failed (-11)\n[    0.585512] mdss_dp_probe: Error usbpd setup!\n[    0.585865] mdss_register_panel: adding framebuffer device soc:qcom,mdss_wb_panel\n[    0.586297] mdss_fb_probe: fb0: split_mode:0 left:0 right:0\n[    0.586395] mdss_panel_debugfs_init: Debugfs create dir failed with error: -19\n[    0.586398] mdss_fb_register: FrameBuffer[0] 1080x2160 registered successfully!\n[    0.586487] mdss_dsi_debugfs_setup: debugfs_create_dir dsi fail, error -19\n[    0.586489] mdss_dsi_debugfs_init: Error in initilizing dsi ctrl debugfs\n[    0.586707] mdss_fb_probe: fb1: split_mode:0 left:0 right:0\n[    0.586764] mdss_fb_register: FrameBuffer[1] 640x480 registered successfully!\n[    0.586817] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    0.587000] mdss_mdp_kcal_store_fb0_ctl panel name tianma nt36672 fhd video mode dsi panel\n[    0.587003] mdss_mdp_kcal_store_fb0_ctl panel found...\n[    0.587040] kcal_ctrl_init: registered\n[    0.587925] qcom-sps-dma c144000.qcom,sps-dma: dma_async_device_register: device has no channels!\n[    0.587969] qcom-sps-dma c184000.qcom,sps-dma: dma_async_device_register: device has no channels!\n[    0.590601] pil-q6v5-mss 4080000.qcom,mss: Linked as a consumer to regulator.46\n[    0.590643] pil-q6v5-mss 4080000.qcom,mss: Linked as a consumer to regulator.49\n[    0.590664] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    0.590698] minidump-id not found for modem\n[    0.590854] platform 4080000.qcom,mss:qcom,mba-mem@0: assigned reserved memory node pil_mba_region@94800000\n[    0.592030] subsys-pil-tz cce0000.qcom,venus: Linked as a consumer to regulator.9\n[    0.592334] minidump-id not found for venus\n[    0.592377] subsys-pil-tz cce0000.qcom,venus: for venus segments only will be dumped.\n[    0.592426] subsys-pil-tz cce0000.qcom,venus: for md_venus segments only will be dumped.\n[    0.592654] subsys-pil-tz 15700000.qcom,lpass: Linked as a consumer to regulator.60\n[    0.592662] minidump-id not found for adsp\n[    0.592751] subsys-pil-tz 15700000.qcom,lpass: for adsp segments only will be dumped.\n[    0.592796] subsys-pil-tz 15700000.qcom,lpass: for md_adsp segments only will be dumped.\n[    0.593204] subsys-pil-tz 1a300000.qcom,turing: Linked as a consumer to regulator.46\n[    0.593212] minidump-id not found for cdsp\n[    0.593294] subsys-pil-tz 1a300000.qcom,turing: for cdsp segments only will be dumped.\n[    0.593345] subsys-pil-tz 1a300000.qcom,turing: for md_cdsp segments only will be dumped.\n[    0.593927] minidump-id not found for a512_zap\n[    0.593970] subsys-pil-tz soc:qcom,kgsl-hyp: for a512_zap segments only will be dumped.\n[    0.594014] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a512_zap segments only will be dumped.\n[    0.599698] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.599821] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.599890] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.602133] qiib_driver_data_init: unable to create logging context\n[    0.602645] msm-dcc: probe of 10b3000.dcc failed with error -2\n[    0.603022] icnss: Unable to create log context\n[    0.603025] icnss: Unable to create log long context\n[    0.603117] icnss 18800000.qcom,icnss: Linked as a consumer to 16c0000.arm,smmu-anoc2\n[    0.603733] iommu: Adding device 18800000.qcom,icnss to group 4\n[    0.603769] icnss: Recursive recovery allowed for WLAN\n[    0.603817] icnss 18800000.qcom,icnss: Linked as a consumer to regulator.27\n[    0.603844] icnss 18800000.qcom,icnss: Linked as a consumer to regulator.33\n[    0.603863] icnss 18800000.qcom,icnss: Linked as a consumer to regulator.29\n[    0.603963] icnss 18800000.qcom,icnss: Linked as a consumer to regulator.43\n[    0.604077] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.604145] icnss: Unable to create debugfs -19\n[    0.604213] icnss: Platform driver probed successfully\n[    0.606018] msm_serial_hs: Cannot create debugfs dir\n[    0.606399] uart_tx_gpio is not available\n[    0.606406] uart_rx_gpio is not available\n[    0.606411] uart_cts_gpio is not available\n[    0.606417] uart_rfr_gpio is not available\n[    0.606551] msm_serial_hs c1af000.uart: msm_hs_probe(): error creating logging context\n[    0.606893] sps: BAM device 0x000000000c184000 is not registered yet.\n[    0.606902] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000c184000\n[    0.606907] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000c184000\n[    0.606912] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000c184000\n[    0.606917] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000c184000\n[    0.606920] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000c184000\n[    0.606923] sps:BAM 0x000000000c184000 is registered.\n[    0.607172] msm_serial_hs c1af000.uart: msm_hs_probe(): error creating tx log context\n[    0.607177] msm_serial_hs c1af000.uart: msm_hs_probe(): error creating rx log context\n[    0.607179] msm_serial_hs c1af000.uart: msm_hs_probe(): error creating usr log context\n[    0.608421] msm_serial_debugfs_init(): Cannot create loopback.0 debug entry\n[    0.608452] c1af000.uart: ttyHS0 at MMIO 0xc1af000 (irq = 159, base_baud = 460800) is a MSM HS UART\n[    0.610724] random: fast init done\n[    0.610846] random: crng init done\n[    0.665874] kgsl-3d 5000000.qcom,kgsl-3d0: Linked as a consumer to regulator.16\n[    0.665937] kgsl-3d 5000000.qcom,kgsl-3d0: Linked as a consumer to regulator.72\n[    0.667505] platform 5040000.qcom,kgsl-iommu:gfx3d_user: Linked as a consumer to 5040000.arm,smmu-kgsl\n[    0.667630] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 5\n[    0.667982] platform 5040000.qcom,kgsl-iommu:gfx3d_secure: Linked as a consumer to 5040000.arm,smmu-kgsl\n[    0.668044] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 6\n[    0.674609] kgsl kgsl-3d0: Bus scaling not enabled\n[    0.681370] brd: module loaded\n[    0.687826] loop: module loaded\n[    0.688059] zram: Added device: zram0\n[    0.689754] QSEECOM: qseecom_init_control: qseecom.qsee_version = 0x1001000\n[    0.689803] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.690913] QSEECOM: qseecom_register_heap_shmbridge: Could not get heap 19 info: No shmbridge created\n[    0.691356] QSEECOM: qseecom_register_heap_shmbridge: Could not get heap 26 info: No shmbridge created\n[    0.694000] qce 1de0000.qcedev: QTI Crypto 5.3.4 device found @0x1de0000\n[    0.694020] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000001dc4000\n[    0.694023] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000001dc4000\n[    0.694028] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000001dc4000\n[    0.694031] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000001dc4000\n[    0.694035] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000001dc4000\n[    0.694037] sps:BAM 0x0000000001dc4000 is registered.\n[    0.694261] sps:BAM 0x0000000001dc4000 (va:0x00000000f91cf27b) enabled: ver:0x27, number of pipes:16\n[    0.694483] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 52\n[    0.695803] Error: Driver 'qcrypto' is already registered, aborting...\n[    0.696509] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    0.699080] sps:BAM 0x000000000c184000 (va:0x00000000faca5cc4) enabled: ver:0x19, number of pipes:12\n[    0.699318] spi_qsd c1b7000.spi: msm_spi_probe: failed to create ipc log cntxt\n[    0.699570] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    0.701073] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.\n[    0.701076] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    0.701337] libphy: Fixed MDIO Bus: probed\n[    0.701341] tun: Universal TUN/TAP device driver, 1.6\n[    0.701398] PPP generic driver version 2.4.2\n[    0.701459] PPP BSD Compression module registered\n[    0.701462] PPP Deflate Compression module registered\n[    0.701506] PPP MPPE Compression module registered\n[    0.701509] NET: Registered protocol family 24\n[    0.701522] PPTP driver version 0.8.5\n[    0.701739] cnss_utils: Unable to create debugfs -19\n[    0.701805] wcnss_pre_alloc_init: Failed to create debugfs dir\n[    0.701808] CLD80211: Initializing\n[    0.701880] usbcore: registered new interface driver r8152\n[    0.701895] usbcore: registered new interface driver asix\n[    0.701912] usbcore: registered new interface driver ax88179_178a\n[    0.701927] usbcore: registered new interface driver cdc_ether\n[    0.701947] usbcore: registered new interface driver cdc_ncm\n[    0.705963] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.707104] msm-qusb-phy c012000.qusb: c012000.qusb supply USB3_GDSC not found, using dummy regulator\n[    0.707130] msm-qusb-phy c012000.qusb: Linked as a consumer to regulator.0\n[    0.707176] msm-qusb-phy c012000.qusb: Linked as a consumer to regulator.52\n[    0.707201] msm-qusb-phy c012000.qusb: Linked as a consumer to regulator.58\n[    0.707221] msm-qusb-phy c012000.qusb: Linked as a consumer to regulator.34\n[    0.707440] msm-qusb-phy c014000.qusb: c014000.qusb supply USB3_GDSC not found, using dummy regulator\n[    0.707451] msm-qusb-phy c014000.qusb: Linked as a consumer to regulator.0\n[    0.707471] msm-qusb-phy c014000.qusb: Linked as a consumer to regulator.52\n[    0.707493] msm-qusb-phy c014000.qusb: Linked as a consumer to regulator.58\n[    0.707509] msm-qusb-phy c014000.qusb: Linked as a consumer to regulator.34\n[    0.708382] msm-usb-ssphy-qmp c010000.ssphy: Linked as a consumer to regulator.52\n[    0.708397] msm-usb-ssphy-qmp c010000.ssphy: Linked as a consumer to regulator.34\n[    0.710108] msm-dwc3 a800000.ssusb: Linked as a consumer to regulator.4\n[    0.711681] dwc3 a800000.dwc3: Failed to get clk 'ref': -2\n[    0.712027] dwc3 a800000.dwc3: changing max_speed on rev 00000000\n[    0.714786] dwc3 a800000.dwc3: Error getting ipc_log_ctxt\n[    0.714790] dwc3 a800000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    0.715534] Invalid index Defaulting curr to 0\n[    0.716216] msm-dwc3 a800000.ssusb: Dropping the link to regulator.4\n[    0.717759] usbcore: registered new interface driver usb-storage\n[    0.717774] usbcore: registered new interface driver usb_ehset_test\n[    0.717789] usbcore: registered new interface driver lvs\n[    0.718654] usb_qcrndis_init: failed to register diag -17\n[    0.719191] qpnp-pdphy 800f000.qcom,spmi:qcom,pm660@0:qcom,usb-pdphy@1700: Linked as a consumer to regulator.58\n[    0.720412] qpnp-pdphy 800f000.qcom,spmi:qcom,pm660@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    0.720524] qpnp-pdphy 800f000.qcom,spmi:qcom,pm660@0:qcom,usb-pdphy@1700: Dropping the link to regulator.58\n[    0.720744] usbcore: registered new interface driver xpad\n[    0.720960] i2c-msm-v2 c175000.i2c: msm_bus_scale_register_client(mstr-id:86):0xb (ok)\n[    0.740207] NVT-ts 1-0062: 1-0062 supply vcc_i2c-supply not found, using dummy regulator\n[    0.740230] NVT-ts 1-0062: Linked as a consumer to regulator.0\n[    0.893609] input: NVTCapacitiveTouchScreen as /devices/virtual/input/input1\n[    0.893767] genirq: irq_chip msmgpio did not update eff. affinity mask of irq 263\n[    0.894838] fpc1020 soc:fpc1020: found pin control fpc1020_reset_reset\n[    0.894842] fpc1020 soc:fpc1020: found pin control fpc1020_reset_active\n[    0.894845] fpc1020 soc:fpc1020: found pin control fpc1020_irq_active\n[    0.895164] fpc1020 soc:fpc1020: Enabling hardware\n[    0.895221] fpc1020 soc:fpc1020: Linked as a consumer to regulator.37\n[    0.907098] fpc1020 soc:fpc1020: IRQ after reset 1\n[    0.907102] fpc1020 soc:fpc1020: fpc1020_probe: ok\n[    0.907318] fpc1020_init OK\n[    0.907322] gf_spi: Macle gf_init failed as fpsensor = 1(2=goodix)\n[    0.907856] Macle hall_probe\n[    0.907869] Macle hall irq_gpio=1242\n[    0.907947] input: hall-switch-input as /devices/virtual/input/input2\n[    0.908010] hall-switch soc:hall_switch: Linked as a consumer to regulator.31\n[    0.908152] hall_probe: gpios = 1, gpion=1\n[    0.908198] Macle hall irq = 265\n[    0.908419] hall_probe end\n[    0.909287] rtc-pm8xxx 800f000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: rtc core: registered pm8xxx_rtc as rtc0\n[    0.909349] rtc-pm8xxx 800f000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: setting system clock to 1970-05-05 13:18:40 UTC (10761520)\n[    0.909651] i2c /dev entries driver\n[    0.909794] msm_vidc:  err: Failed to create debugfs for msm_vidc\n[    0.914369] msm_vidc_v4l2 cc00000.qcom,vidc: Linked as a consumer to regulator.71\n[    0.914390] msm_vidc_v4l2 cc00000.qcom,vidc: Linked as a consumer to regulator.9\n[    0.914406] msm_vidc_v4l2 cc00000.qcom,vidc: Linked as a consumer to regulator.10\n[    0.916678] msm_vidc_v4l2 cc00000.qcom,vidc:non_secure_cb: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.919137] iommu: Adding device cc00000.qcom,vidc:non_secure_cb to group 7\n[    0.919506] msm_vidc_v4l2 cc00000.qcom,vidc:secure_bitstream_cb: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.921879] iommu: Adding device cc00000.qcom,vidc:secure_bitstream_cb to group 8\n[    0.922229] msm_vidc_v4l2 cc00000.qcom,vidc:secure_pixel_cb: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.923532] iommu: Adding device cc00000.qcom,vidc:secure_pixel_cb to group 9\n[    0.923884] msm_vidc_v4l2 cc00000.qcom,vidc:secure_non_pixel_cb: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.925581] iommu: Adding device cc00000.qcom,vidc:secure_non_pixel_cb to group 10\n[    0.930642] msm_vidc_v4l2 cc00000.qcom,vidc: Dropping the link to regulator.10\n[    0.930671] msm_vidc_v4l2 cc00000.qcom,vidc: Dropping the link to regulator.9\n[    0.930683] msm_vidc_v4l2 cc00000.qcom,vidc: Dropping the link to regulator.71\n[    0.932270] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cb1: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.932963] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb1 to group 11\n[    0.933092] CAM-SMMU cam_smmu_populate_sids:2130\n               __debug cnt = 8, cb->name: :vfe sid [0] = 3072\n[    0.933096] CAM-SMMU cam_smmu_populate_sids:2130\n               __debug cnt = 8, cb->name: :vfe sid [1] = 3073\n[    0.933099] CAM-SMMU cam_smmu_populate_sids:2130\n               __debug cnt = 8, cb->name: :vfe sid [2] = 3074\n[    0.933102] CAM-SMMU cam_smmu_populate_sids:2130\n               __debug cnt = 8, cb->name: :vfe sid [3] = 3075\n[    0.933285] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cb2: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.933679] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb2 to group 12\n[    0.933807] CAM-SMMU cam_smmu_populate_sids:2130\n               __debug cnt = 2, cb->name: :cpp sid [0] = 2560\n[    0.933978] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cb4: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.934369] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb4 to group 13\n[    0.934485] CAM-SMMU cam_smmu_populate_sids:2130\n               __debug cnt = 2, cb->name: :jpeg_enc0 sid [0] = 2048\n[    0.934650] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cb5: Linked as a consumer to cd00000.arm,smmu-mmss\n[    0.935050] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb5 to group 14\n[    0.935165] CAM-SMMU cam_smmu_populate_sids:2130\n               __debug cnt = 2, cb->name: :jpeg_dma sid [0] = 2049\n[    0.937653] msm ca00000.qcom,msm-cam: Entity type for entity msm_cci was not initialized!\n[    0.939732] msm ca00000.qcom,msm-cam: Entity type for entity msm_csiphy was not initialized!\n[    0.940151] msm ca00000.qcom,msm-cam: Entity type for entity msm_csiphy was not initialized!\n[    0.940419] msm ca00000.qcom,msm-cam: Entity type for entity msm_csiphy was not initialized!\n[    0.941196] msm ca00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    0.941442] msm ca00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    0.941684] msm ca00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    0.941934] msm ca00000.qcom,msm-cam: Entity type for entity msm_csid was not initialized!\n[    0.942644] msm_actuator_platform_probe:1999 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    0.942650] msm ca00000.qcom,msm-cam: Entity type for entity msm_actuator was not initialized!\n[    0.942808] msm_actuator_platform_probe:1999 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    0.942813] msm ca00000.qcom,msm-cam: Entity type for entity msm_actuator was not initialized!\n[    0.943320] msm_eeprom_platform_probe failed 1949\n[    0.943377] msm ca00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    0.943592] msm_eeprom_platform_probe failed 1949\n[    0.943647] msm ca00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    0.943866] msm_eeprom_platform_probe failed 1949\n[    0.943913] msm ca00000.qcom,msm-cam: Entity type for entity msm_eeprom was not initialized!\n[    0.944427] msm ca00000.qcom,msm-cam: Entity type for entity msm_camera_flash was not initialized!\n[    0.944592] msm ca00000.qcom,msm-cam: Entity type for entity msm_camera_flash was not initialized!\n[    0.944668] qcom,camera-flash soc:qcom,camera-flash@1: Led torch-light0 renamed to torch-light0_1 due to name collision\n[    0.945573] msm ca00000.qcom,msm-cam: Entity type for entity msm_sensor_init was not initialized!\n[    0.946891] msm_cpp ca04000.qcom,cpp: Linked as a consumer to regulator.71\n[    0.946910] msm_cpp ca04000.qcom,cpp: Linked as a consumer to regulator.11\n[    0.946928] msm_cpp ca04000.qcom,cpp: Linked as a consumer to regulator.14\n[    0.950604] MSM-CPP cpp_init_hardware:1136 CPP HW Version: 0x60010002\n[    0.950617] MSM-CPP cpp_init_hardware:1154 stream_cnt:0\n[    0.950628] msm ca00000.qcom,msm-cam: Entity type for entity ca04000.qcom,cpp was not initialized!\n[    0.950896] MSM-CPP cpp_release_hardware:1217 cpp hw release done\n[    0.951752] CAM-SOC msm_camera_get_reg_base:822 err: mem resource vfe_fuse not found\n[    0.951754] CAM-SOC msm_camera_get_res_size:865 err: mem resource vfe_fuse not found\n[    0.951789] msm_vfe48 ca10000.qcom,vfe0: Linked as a consumer to regulator.12\n[    0.951804] msm_vfe48 ca10000.qcom,vfe0: Linked as a consumer to regulator.11\n[    0.951858] msm_vfe48 ca10000.qcom,vfe0: Linked as a consumer to regulator.71\n[    0.952233] msm_vfe48_get_dual_sync_platform_data: dual-vfe-irq not supported !\n[    0.952237] msm ca00000.qcom,msm-cam: Entity type for entity ca10000.qcom,vfe0 was not initialized!\n[    0.952360] CAM-SOC msm_camera_get_reg_base:822 err: mem resource vfe_fuse not found\n[    0.952363] CAM-SOC msm_camera_get_res_size:865 err: mem resource vfe_fuse not found\n[    0.952385] msm_vfe48 ca14000.qcom,vfe1: Linked as a consumer to regulator.13\n[    0.952398] msm_vfe48 ca14000.qcom,vfe1: Linked as a consumer to regulator.11\n[    0.952422] msm_vfe48 ca14000.qcom,vfe1: Linked as a consumer to regulator.71\n[    0.952630] CAM-SOC msm_camera_get_reg_base:822 err: mem resource msm-cam not found\n[    0.952634] vfe_hw_probe:fail get dual_sync\n[    0.952639] msm ca00000.qcom,msm-cam: Entity type for entity ca14000.qcom,vfe1 was not initialized!\n[    0.954161] msm_ispif ca31000.qcom,ispif: Linked as a consumer to regulator.11\n[    0.954174] msm_ispif ca31000.qcom,ispif: Linked as a consumer to regulator.12\n[    0.954187] msm_ispif ca31000.qcom,ispif: Linked as a consumer to regulator.13\n[    0.954571] msm ca00000.qcom,msm-cam: Entity type for entity ca31000.qcom,ispif was not initialized!\n[    0.954893] __msm_jpeg_init:1579] Jpeg Device id 0\n[    0.955020] msm_jpeg ca1c000.qcom,jpeg: Linked as a consumer to regulator.71\n[    0.955033] msm_jpeg ca1c000.qcom,jpeg: Linked as a consumer to regulator.11\n[    0.955525] msm_jpegdma caa0000.qcom,jpeg: Linked as a consumer to regulator.71\n[    0.955539] msm_jpegdma caa0000.qcom,jpeg: Linked as a consumer to regulator.11\n[    0.956327] msm ca00000.qcom,msm-cam: Entity type for entity msm_buf_mngr was not initialized!\n[    0.956646] uvcvideo: Unable to create debugfs directory\n[    0.956679] usbcore: registered new interface driver uvcvideo\n[    0.956681] USB Video Class driver (1.1.1)\n[    0.957091] QCOM-BATT: qcom_batt_create_debugfs: Couldn't create battery debugfs rc=-19\n[    0.959068] qcom,qpnp-smb2 800f000.qcom,spmi:qcom,pm660@0:qcom,qpnp-smb2: Linked as a consumer to regulator.73\n[    0.967704] QPNP SMB2 probed successfully usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    0.974069] reg-cooling-device soc:qcom,rpm-smd:rpm-regulator-smpb3:cx-cdev: Linked as a consumer to regulator.47\n[    0.977348] device-mapper: uevent: version 1.0.3\n[    0.977482] device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel@redhat.com\n[    0.977710] device-mapper: android-verity: Cannot create android_verity debugfs directory: -19\n[    0.978286] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in devicetree\n[    0.978293] bt_power_populate_dt_pinfo: wl-reset-gpio not provided in devicetree\n[    0.978313] bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    0.978317] bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    0.978333] bt_dt_parse_vreg_info: qca,bt-vdd-aon: is not provided in device tree\n[    0.978336] bt_dt_parse_vreg_info: qca,bt-vdd-dig: is not provided in device tree\n[    0.978340] bt_dt_parse_vreg_info: qca,bt-vdd-rfa1: is not provided in device tree\n[    0.978342] bt_dt_parse_vreg_info: qca,bt-vdd-rfa2: is not provided in device tree\n[    0.978345] bt_dt_parse_vreg_info: qca,bt-vdd-asd: is not provided in device tree\n[    0.979502] sdhci: Secure Digital Host Controller Interface driver\n[    0.979504] sdhci: Copyright(c) Pierre Ossman\n[    0.979505] sdhci-pltfm: SDHCI platform and OF driver helper\n[    0.980265] usbcore: registered new interface driver usbhid\n[    0.980268] usbhid: USB HID core driver\n[    0.980381] ashmem: initialized\n[    0.980386] wlan: Loading driver v5.2.05.23C\n[    0.981541] sdhci_msm c0c4000.sdhci: Failed to get dll hsr settings from dt\n[    0.981551] sdhci_msm c0c4000.sdhci: core_reset unavailable,err = -2\n[    0.981554] sdhci_msm c0c4000.sdhci: Reset data parsing error\n[    0.983925] ipa ipa2_uc_reg_rdyCB:1726 bad parm. inout=          (null) \n[    0.984056] wlan_hdd_state wlan major(505) initialized\n[    0.985053] bimc-bwmon 1008000.qcom,cpu-cpu-ddr-bwmon: BW HWmon governor registered.\n[    0.986620] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-cpu-ddr-latmon: Memory Latency governor registered.\n[    0.986906] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-computemon: Compute governor registered.\n[    0.987140] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-cpu-ddr-latmon: Memory Latency governor registered.\n[    0.987334] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-computemon: Compute governor registered.\n[    0.988383] sdhci_msm c0c4000.sdhci: Linked as a consumer to regulator.55\n[    0.988407] sdhci_msm c0c4000.sdhci: Linked as a consumer to regulator.31\n[    0.989413] mmc0: CQHCI version 5.10\n[    0.989721] mmc0: SDHCI controller on c0c4000.sdhci [c0c4000.sdhci] using 64-bit ADMA in CMDQ mode\n[    0.992285] adc_probe : unable to create IPC Logging 0 for qcom,pm660@0 ADC\n[    0.992288] adc_probe : unable to create IPC Logging 1 for qcom,pm660@0 ADC\n[    0.994084] usbcore: registered new interface driver snd-usb-audio\n[    0.994206] uaudio-qmi soc:usb_audio_qmi_dev: Linked as a consumer to 5100000.arm,smmu-lpass_q6\n[    0.994269] iommu: Adding device soc:usb_audio_qmi_dev to group 15\n[    0.998543] apr_probe: Unable to create ipc log context\n[    0.999114] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    0.999548] i2c-msm-v2 c1b6000.i2c: msm_bus_scale_register_client(mstr-id:84):0x18 (ok)\n[    0.999601] tas2557 6-004c: tas2557_i2c_probe enter\n[    0.999627] tas2557 6-004c: ti,cdc-reset-gpio=1243\n[    1.022679] sdhci_msm c0c4000.sdhci: mmc0: CQE init: success\n[    1.050224] tas2557 6-004c: PG2.1 Silicon found\n[    1.050287] tas2557 6-004c: irq = 304\n[    1.050372] tas2557 6-004c: tas2557_register_codec, enter\n[    1.050419] tas2557 6-004c: tas2557_register_misc, leave\n[    1.050422] tas2557 6-004c: tiload_driver_init\n[    1.050436] tas2557 6-004c: allocated Major Number: 501\n[    1.050465] tas2557 6-004c: Registered TiLoad driver, Major number: 501\n[    1.050736] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.051323] msm-cdc-pinctrl soc:sdw_clk_data_pinctrl: msm_cdc_pinctrl_probe: Cannot get cdc gpio pinctrl:-19\n[    1.051345] msm-cdc-pinctrl soc:wsa_spkr_en1_pinctrl: msm_cdc_pinctrl_probe: Cannot get cdc gpio pinctrl:-19\n[    1.051367] msm-cdc-pinctrl soc:wsa_spkr_en2_pinctrl: msm_cdc_pinctrl_probe: Cannot get cdc gpio pinctrl:-19\n[    1.066860] mmc0: Out-of-interrupt timeout is 246[ms]\n[    1.066864] mmc0: eMMC FW version: 0x04\n[    1.067009] tas2557 6-004c: Falling back to syfs fallback for: tas2557_uCDSP.bin\n[    1.073024] mmc0: Command Queue Engine enabled\n[    1.073036] mmc0: new HS400 Enhanced strobe MMC card at address 0001\n[    1.076765] GACT probability NOT on\n[    1.076775] Mirror/redirect action on\n[    1.076784] u32 classifier\n[    1.076786]     Actions configured\n[    1.077236] xt_time: kernel timezone is -0000\n[    1.077316] gre: GRE over IPv4 demultiplexor driver\n[    1.077318] IPv4 over IPsec tunneling driver\n[    1.077722] Initializing XFRM netlink socket\n[    1.077731] IPsec XFRM device driver\n[    1.077983] NET: Registered protocol family 10\n[    1.078978] Segment Routing with IPv6\n[    1.079026] mip6: Mobile IPv6\n[    1.079355] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    1.079793] NET: Registered protocol family 17\n[    1.079803] NET: Registered protocol family 15\n[    1.079846] l2tp_core: L2TP core driver, V2.0\n[    1.079852] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    1.079854] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    1.079863] l2tp_netlink: L2TP netlink interface\n[    1.079878] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    1.079879] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    1.079907] sctp: Hash tables configured (bind 256/256)\n[    1.080203] Key type dns_resolver registered\n[    1.080726] cam_dvdd_gpio_regulator: supplied by pm660_s5\n[    1.081053] cam_rear_dvdd_gpio_regulator: supplied by pm660_s5\n[    1.081450] mdss_dp_usbpd_setup: get_usbpd phandle failed (-517)\n[    1.081452] mdss_dp_probe: Error usbpd setup!\n[    1.081844] msm-dwc3 a800000.ssusb: Linked as a consumer to regulator.4\n[    1.082115] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0xf) latency=-1\n[    1.082119] sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xf0) latency=-1\n[    1.082134] mmcblk0: mmc0:0001 S0J9D8 58.2 GiB \n[    1.082177] mmcblk0rpmb: mmc0:0001 S0J9D8 partition 3 4.00 MiB, chardev (506:0)\n[    1.083101] dwc3 a800000.dwc3: Failed to get clk 'ref': -2\n[    1.083529] dwc3 a800000.dwc3: changing max_speed on rev 00000000\n[    1.086261] dwc3 a800000.dwc3: Error getting ipc_log_ctxt\n[    1.086264] dwc3 a800000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.086717] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a904000\n[    1.086719] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a904000\n[    1.086722] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a904000\n[    1.086725] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a904000\n[    1.086727] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a904000\n[    1.086730] sps:BAM 0x000000000a904000 is registered.\n[    1.087321] Invalid index Defaulting curr to 0\n[    1.087923] msm-dwc3 a800000.ssusb: Dropping the link to regulator.4\n[    1.088267] qpnp-pdphy 800f000.qcom,spmi:qcom,pm660@0:qcom,usb-pdphy@1700: Linked as a consumer to regulator.58\n[    1.088689]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42 p43 p44 p45 p46 p47 p48 p49 p50 p51 p52 p53 p54 p55 p56 p57 p58 p59 p60 p61 p62 p63 p64 p65 p66 p67 p68 p69\n[    1.092405] sdhci_msm c084000.sdhci: Failed to get dll hsr settings from dt\n[    1.092412] sdhci_msm c084000.sdhci: core_reset unavailable,err = -2\n[    1.092415] sdhci_msm c084000.sdhci: Reset data parsing error\n[    1.095158] sdhci_msm c084000.sdhci: Linked as a consumer to regulator.56\n[    1.095179] sdhci_msm c084000.sdhci: Linked as a consumer to regulator.53\n[    1.101798] spmi spmi-0: cleanup_irq apid=30 sid=0x0 per=0x40 irq=2\n[    1.104175] debugfs is not enabled in the kernel\n[    1.104213] FG: fg_gen3_probe: battery SOC:50 voltage: 3938222uV temp: 338\n[    1.107769] mmc1: SDHCI controller on c084000.sdhci [c084000.sdhci] using 64-bit ADMA in legacy mode\n[    1.112067] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    1.112292] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.113079] mdss_dp c990000.qcom,dp_ctrl: Linked as a consumer to regulator.15\n[    1.113099] mdss_dp c990000.qcom,dp_ctrl: Linked as a consumer to regulator.34\n[    1.113126] mdss_dp c990000.qcom,dp_ctrl: Linked as a consumer to regulator.52\n[    1.114158] mdss_dp_parse_gpio_params: 996,hpd gpio not specified\n[    1.114355] mdss_register_panel: adding framebuffer device c990000.qcom,dp_ctrl\n[    1.114604] mdss_dp_device_register: dp initialized\n[    1.114606] hdmi_edid_config_override: invalid edid ctrl data\n[    1.114737] msm-dwc3 a800000.ssusb: Linked as a consumer to regulator.4\n[    1.115915] dwc3 a800000.dwc3: Failed to get clk 'ref': -2\n[    1.116216] dwc3 a800000.dwc3: changing max_speed on rev 00000000\n[    1.119090] dwc3 a800000.dwc3: Error getting ipc_log_ctxt\n[    1.119094] dwc3 a800000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.119572] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a904000\n[    1.119575] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a904000\n[    1.119577] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a904000\n[    1.119580] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a904000\n[    1.119582] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a904000\n[    1.119585] sps:BAM 0x000000000a904000 is registered.\n[    1.120268] msm-dwc3 a800000.ssusb: Linked as a consumer to regulator.73\n[    1.120467] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    1.120644] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.121045] mdss_fb_probe: fb2: split_mode:0 left:0 right:0\n[    1.121112] mdss_fb_register: FrameBuffer[2] 640x480 registered successfully!\n[    1.122118] mdss_mdp_splash_parse_dt: splash mem child node is not present\n[    1.122270] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    1.122424] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.123391] core_ctl: Creating CPU group 0\n[    1.123393] core_ctl: Init CPU0 state\n[    1.123395] core_ctl: Init CPU1 state\n[    1.123396] core_ctl: Init CPU2 state\n[    1.123397] core_ctl: Init CPU3 state\n[    1.123730] core_ctl: Creating CPU group 4\n[    1.123732] core_ctl: Init CPU4 state\n[    1.123733] core_ctl: Init CPU5 state\n[    1.123735] core_ctl: Init CPU6 state\n[    1.123736] core_ctl: Init CPU7 state\n[    1.124007] registered taskstats version 1\n[    1.124009] Loading compiled-in X.509 certificates\n[    1.124944] Loaded X.509 cert 'Android: 7e4333f9bba00adfe0ede979e28ed1920492b40f'\n[    1.125041] Key type ._fscrypt registered\n[    1.125043] Key type .fscrypt registered\n[    1.125044] Key type fscrypt-provisioning registered\n[    1.125102] pstore: Invalid compression size for deflate: 0\n[    1.127060] msm-dwc3 a800000.ssusb: DWC3 exited from low power mode\n[    1.129429] Error: swapper/0: fastrpc_device_init: failed to create debugfs root dir\n[    1.129910] fastrpc soc:qcom,msm-adsprpc-mem: for adsp_rh segments only will be dumped.\n[    1.130007] adsprpc: init_secure_vmid_list: secure VMID = 33\n[    1.130074] adsprpc: fastrpc_probe: service location enabled for avs/audio (audio_pdr_adsprpc)\n[    1.130524] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1: Linked as a consumer to 5100000.arm,smmu-lpass_q6\n[    1.130936] msm-dwc3 a800000.ssusb: DWC3 in low power mode\n[    1.131029] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 16\n[    1.131526] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2: Linked as a consumer to 5100000.arm,smmu-lpass_q6\n[    1.131741] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 17\n[    1.132156] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3: Linked as a consumer to 5100000.arm,smmu-lpass_q6\n[    1.132353] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 18\n[    1.132752] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4: Linked as a consumer to 5100000.arm,smmu-lpass_q6\n[    1.132944] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 19\n[    1.133357] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5: Linked as a consumer to 5180000.arm,smmu-turing_q6\n[    1.133552] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 20\n[    1.133959] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6: Linked as a consumer to 5180000.arm,smmu-turing_q6\n[    1.134148] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 21\n[    1.134558] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7: Linked as a consumer to 5180000.arm,smmu-turing_q6\n[    1.134753] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7 to group 22\n[    1.135159] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8: Linked as a consumer to 5180000.arm,smmu-turing_q6\n[    1.135346] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8 to group 23\n[    1.135763] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9: Linked as a consumer to 5180000.arm,smmu-turing_q6\n[    1.135953] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 24\n[    1.136369] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10: Linked as a consumer to 5180000.arm,smmu-turing_q6\n[    1.136565] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 25\n[    1.136975] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11: Linked as a consumer to 5180000.arm,smmu-turing_q6\n[    1.137485] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 26\n[    1.137881] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12: Linked as a consumer to 5180000.arm,smmu-turing_q6\n[    1.138148] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 27\n[    1.138588] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13: Linked as a consumer to 5180000.arm,smmu-turing_q6\n[    1.138842] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13 to group 28\n[    1.140214] adsprpc: fastrpc_device_init: SSR notifier registered for adsp\n[    1.140217] adsprpc: fastrpc_device_init: SSR notifier registered for modem\n[    1.140221] adsprpc: fastrpc_device_init: SSR notifier registered for slpi\n[    1.140223] adsprpc: fastrpc_device_init: SSR notifier registered for cdsp\n[    1.140550] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    1.140720] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.141268] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    1.141419] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.141858] ngd_msm_ctrl 15240000.slim: error creating ipc_logging context\n[    1.141862] ngd_msm_ctrl 15240000.slim: error creating ipc_error_logging context\n[    1.143165] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    1.143320] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.145327] input: soc:gpio_keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    1.147168] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    1.147395] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.148569] i2c-msm-v2 c176000.i2c: msm_bus_scale_register_client(mstr-id:86):0x1b (ok)\n[    1.152351] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    1.152561] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.154408] rmnet_ipa started initialization\n[    1.154411] IPA SSR support = True\n[    1.154413] IPA ipa-loaduC = True\n[    1.154415] IPA SG support = True\n[    1.154417] IPA Napi Enable = True\n[    1.154420] using default for wan-rx-desc-size = 1024\n[    1.154879] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    1.155056] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.157802] ipa ipa_sps_irq_control_all:956 EP (5) not allocated.\n[    1.157806] ipa ipa2_uc_state_check:293 uC is not loaded\n[    1.158686] rmnet_ipa completed initialization\n[    1.159486] RNDIS_IPA module is loaded.\n[    1.159972] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    1.160555] pmic_analog_codec 800f000.qcom,spmi:qcom,pm660l@3:anlg-cdc@f000: Adsp is not loaded yet 0\n[    1.160895] msm_sdw_codec 152c1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.162012] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    1.165078] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    1.165800] ALSA device list:\n[    1.165802]   No soundcards found.\n[    1.165846] Warning: unable to open an initial console.\n[    1.165993] Freeing unused kernel memory: 640K\n[    1.166060] Run /init as init process\n[    1.490759] of_batterydata_get_best_profile: 3797504_lc_d2s_sunwoda_3000mah_fg_averaged_masterslave_jan11th2019 found\n[    2.207525] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    2.207711] cpu1 \n[    2.207769] cpu4 \n[    2.207818] \n               Offline CPUs: \n[    2.211367] cpu1 \n[    2.243683] CPU1: shutdown\n[    2.243721] psci: CPU1 killed (polled 0 ms)\n[    2.244476] cpu2 \n[    2.273315] CPU2: shutdown\n[    2.273354] psci: CPU2 killed (polled 0 ms)\n[    2.274117] cpu3 \n[    2.303261] CPU3: shutdown\n[    2.303297] psci: CPU3 killed (polled 0 ms)\n[    2.304055] cpu4 \n[    2.336645] CPU4: shutdown\n[    2.336685] psci: CPU4 killed (polled 0 ms)\n[    2.337585] cpu5 \n[    2.366579] CPU5: shutdown\n[    2.366621] psci: CPU5 killed (polled 0 ms)\n[    2.367492] cpu6 \n[    2.396519] CPU6: shutdown\n[    2.396553] psci: CPU6 killed (polled 0 ms)\n[    2.397395] cpu7 \n[    2.426502] CPU7: shutdown\n[    2.426538] psci: CPU7 killed (polled 0 ms)\n\n[    7.432402] Sampling power every 1000 ms\n               Baseline power usage: \n[   31.201673] gfx_mem_acc_corner: disabling\n[   31.201697] gdsc_ufs: disabling\n[   31.201750] cam_avdd_gpio_regulator: disabling\n[   31.201757] cam_rear_avdd_gpio_regulator: disabling\n[   31.201834] apc0_pwrcl_corner: disabling\n[   31.201841] apc1_perfcl_corner: disabling\n[   31.201859] cam_dvdd_gpio_regulator: disabling\n[   31.201866] cam_rear_dvdd_gpio_regulator: disabling\n[   64.481485] tas2557 6-004c: tas2557_fw_ready:\n[   64.481496] tas2557 6-004c: tas2557_uCDSP.bin firmware is not loaded.\n[   82.562197] Detected VIPT I-cache on CPU1\n[   82.562332] CPU1: Booted secondary processor 0x0000000001 [0x51af8014]\n[   83.569884] 1272 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 633 902 1113 1401 1536 1747 1843\n               \n                633: \n[  238.038064]  2058     3.2 C/MHz     53 mW    7.7 J   39.2 I/mJ   145.8 s\n                902: \n[  305.120325] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120347] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120819] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120831] audio_notifer_reg_service: service SSR_ADSP is in use\n[  305.120862] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120868] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for audio_pdr_adsprpc\n[  305.120885] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  349.366571]  2931     3.2 C/MHz     74 mW    7.6 J   39.6 I/mJ   102.4 s\n               1113: \n[  440.632388]  3616     3.2 C/MHz     92 mW    7.7 J   39.2 I/mJ    83.0 s\n               1401: \n[  514.866495]  4552     3.2 C/MHz    127 mW    8.3 J   36.0 I/mJ    65.9 s\n               1536: \n[  584.086243]  4988     3.2 C/MHz    170 mW   10.2 J   29.3 I/mJ    60.1 s\n               1747: \n[  645.291162]  5674     3.2 C/MHz    196 mW   10.4 J   29.0 I/mJ    52.9 s\n               1843: \n[  704.523016] CPU1: shutdown\n[  704.523071] psci: CPU1 killed (polled 0 ms)\n[  704.526090] Detected VIPT I-cache on CPU4\n[  704.526180] arch_timer: CPU4: Trapping CNTVCT access\n[  704.526205] CPU4: Booted secondary processor 0x0000000100 [0x51af8002]\n[  705.534878]  5986     3.2 C/MHz    220 mW   11.0 J   27.2 I/mJ    50.1 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 1113 1401 1747 1958 2150 2208\n               \n               1113: \n[  765.831289]  5826     5.2 C/MHz    258 mW   13.3 J   22.6 I/mJ    51.5 s\n               1401: \n[  815.091991]  7333     5.2 C/MHz    329 mW   13.5 J   22.3 I/mJ    40.9 s\n               1747: \n[  856.326197]  9138     5.2 C/MHz    502 mW   16.5 J   18.2 I/mJ    32.8 s\n               1958: \n[  894.551226] 10248     5.2 C/MHz    620 mW   18.1 J   16.5 I/mJ    29.3 s\n               2150: \n[  929.767041] 11243     5.2 C/MHz    740 mW   19.7 J   15.2 I/mJ    26.7 s\n               2208: \n[  964.006965] CPU4: shutdown\n[  964.007018] psci: CPU4 killed (polled 0 ms)\n[  964.017059] 11547     5.2 C/MHz    853 mW   22.2 J   13.5 I/mJ    26.0 s\n               \n               \n               Benchmark finished!\n[  964.049982] \n               real\t16m2.760s\n               user\t12m48.861s\n               sys\t0m0.470s\n"
  },
  {
    "path": "results/sdm660/third/post_bench_interrupts.txt",
    "content": "           CPU0       \n  1:          0   mpm-gic 203 Edge      mpm\n  4:      10914   mpm-gic  19 Level     arch_timer\n  6:      97797   mpm-gic  39 Level     arch_mem_timer\n  9:          0   mpm-gic 271 Level     sps\n 11:          0   mpm-gic  35 Edge      apps_wdog_bark\n 13:          0   mpm-gic 216 Level     tsens-upper-lower\n 14:          0   mpm-gic 462 Level     tsens-critical\n 16:          0   mpm-gic 323 Level     ngd_slim_irq\n 23:          0   mpm-gic  67 Edge      OSM IRQ\n 24:          0   mpm-gic  68 Edge      OSM IRQ\n 25:         77   mpm-gic 142 Level     mmc0\n 26:          4   mpm-gic 144 Level     c0c4000.sdhci\n 27:         13     GICv3 157 Level     mmc1\n 28:          2     GICv3 253 Level     c084000.sdhci\n 29:          0   mpm-gic 365 Edge      ipa\n 30:         18   mpm-gic 464 Level     sps\n 31:       5646   mpm-gic 200 Edge      glink-native-rpm-glink\n 32:          0   mpm-gic 483 Edge      smp2p\n 33:          0   mpm-gic 190 Edge      smp2p\n 34:          0   mpm-gic 546 Edge      smp2p\n 47:          0   mpm-gic 194 Edge      adsp\n 48:          0   mpm-gic 550 Edge      cdsp\n 49:          0   mpm-gic 480 Edge      modem\n 51:          0   mpm-gic  22 Level     arm-pmu\n 52:          0   mpm-gic 238 Level     sps\n 55:          0   mpm-gic 317 Edge      cpr3\n 56:          0   mpm-gic 332 Level     kgsl_3d0_irq\n 57:          0   mpm-gic 261 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n 58:          0   mpm-gic 263 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n 59:          0   mpm-gic 405 Level     arm-smmu-context-fault\n 60:          0   mpm-gic 406 Level     arm-smmu-context-fault\n 61:          0   mpm-gic 407 Level     arm-smmu-context-fault\n 88:          0   mpm-gic 258 Level     arm-smmu-context-fault\n 89:          0   mpm-gic 425 Level     arm-smmu-context-fault\n 90:          0   mpm-gic 426 Level     arm-smmu-context-fault\n 91:          0   mpm-gic 427 Level     arm-smmu-context-fault\n 92:          0   mpm-gic 428 Level     arm-smmu-context-fault\n105:          0   mpm-gic 295 Level     arm-smmu-context-fault\n106:          0   mpm-gic 298 Level     arm-smmu-context-fault\n107:          0   mpm-gic 299 Level     arm-smmu-context-fault\n108:          0   mpm-gic 300 Level     arm-smmu-context-fault\n109:          0   mpm-gic 276 Level     arm-smmu-context-fault\n110:          0   mpm-gic 277 Level     arm-smmu-context-fault\n111:          0   mpm-gic 279 Level     arm-smmu-context-fault\n112:          0   mpm-gic 280 Level     arm-smmu-context-fault\n113:          0   mpm-gic 281 Level     arm-smmu-context-fault\n114:          0   mpm-gic 282 Level     arm-smmu-context-fault\n129:          0   mpm-gic 361 Level     arm-smmu-context-fault\n130:          0   mpm-gic 362 Level     arm-smmu-context-fault\n134:          0   mpm-gic 565 Level     arm-smmu-context-fault\n135:          0   mpm-gic 566 Level     arm-smmu-context-fault\n136:          0   mpm-gic 567 Level     arm-smmu-context-fault\n137:          0   mpm-gic 568 Level     arm-smmu-context-fault\n138:          0   mpm-gic 569 Level     arm-smmu-context-fault\n139:          0   mpm-gic 570 Level     arm-smmu-context-fault\n140:          0   mpm-gic 571 Level     arm-smmu-context-fault\n141:          0   mpm-gic 572 Level     arm-smmu-context-fault\n142:          0   mpm-gic 573 Level     arm-smmu-context-fault\n151:          0   mpm-gic 379 Level     hs_phy_irq\n152:          0   mpm-gic 275 Level     ss_phy_irq\n153:          2   mpm-gic 212 Level     pwr_event_irq\n155:      30271   mpm-gic 127 Level     i2c-msm-v2-irq\n156:          0   mpm-gic 128 Level     i2c-msm-v2-irq\n157:          5   mpm-gic 134 Level     i2c-msm-v2-irq\n158:          0   mpm-gic 135 Level     c1b7000.spi\n160:          0   mpm-gic 110 Edge      csiphy\n161:          0   mpm-gic 111 Edge      csiphy\n162:          0   mpm-gic 112 Edge      csiphy\n163:          0   mpm-gic 328 Edge      csid\n164:          0   mpm-gic 329 Edge      csid\n165:          0   mpm-gic 330 Edge      csid\n166:          0   mpm-gic 331 Edge      csid\n168:          0   mpm-gic 341 Edge      ispif\n169:          0   mpm-gic 346 Edge      vfe\n170:          0   mpm-gic 347 Edge      vfe\n171:          0   mpm-gic 327 Edge      cci\n174:          0   mpm-gic 319 Level     msm_vidc\n176:          0   mpm-gic 115 Level     MDSS\n177:          0  pmic_arb 8388612 Edge      pon_kpdpwr_status\n178:          0  pmic_arb 8454148 Edge      pon_resin_status\n181:          0  pmic_arb 37748755 Edge      qcom,temp-alarm\n195:          0  pmic_arb 101777459 Edge      pm8xxx_rtc_alarm\n196:        196  pmic_arb 51380246 Edge      pm-adc5\n197:          0  pmic_arb 24117262 Edge      sig-tx\n198:          0  pmic_arb 24182798 Edge      sig-rx\n199:          0  pmic_arb 24248334 Edge      msg-tx\n200:          0  pmic_arb 24313870 Edge      msg-rx\n201:          0  pmic_arb 24379406 Edge      msg-tx-failed\n202:          0  pmic_arb 24444942 Edge      msg-tx-discarded\n203:          0  pmic_arb 24510478 Edge      msg-rx-discarded\n204:          0  pmic_arb 54525976 Edge      thr-int-en\n205:          0  pmic_arb 69206048 Edge      bcl-high-ibat\n207:          0  pmic_arb 69337120 Edge      bcl-low-vbat\n210:          0  pmic_arb 469762111 Edge      qpnp_hap_sc\n211:          0  pmic_arb 469827647 Edge      qpnp_hap_play\n212:          0  pmic_arb 574619709 Edge      qcom,temp-alarm\n219:          0  pmic_arb 744489127 Edge      volume_up\n225:          1  pmic_arb 1031864372 Edge      wled_ovp_irq\n226:          0  pmic_arb 1026555953 Edge      qpnp_flash_led_fault_irq\n227:          0  pmic_arb 1026752561 Edge      qpnp_flash_led_all_ramp_down_done_irq\n228:          0  pmic_arb 1026818097 Edge      qpnp_flash_led_all_ramp_up_done_irq\n229:          0  pmic_arb 1052835884 Edge      qpnp_lcdb_sc_irq\n244:          0   mpm-gic  69 Level     limits_sensor-00\n245:          0   mpm-gic  70 Level     limits_sensor-01\n246:          0     smp2p   2 Edge      modem\n247:          0     smp2p   0 Edge      modem\n248:          0     smp2p   1 Edge      error_ready_interrupt\n249:          0     smp2p   3 Edge      modem\n250:          0     smp2p   7 Edge      modem\n251:          0     smp2p   2 Edge      adsp\n252:          0     smp2p   0 Edge      adsp\n253:          0     smp2p   1 Edge      error_ready_interrupt\n254:          0     smp2p   3 Edge      adsp\n255:          0     smp2p   2 Edge      cdsp\n256:          0     smp2p   0 Edge      cdsp\n257:          0     smp2p   1 Edge      error_ready_interrupt\n258:          0     smp2p   3 Edge      cdsp\n259:          0     smp2p   0 Edge      smp2p_sleepstate\n261:          0     GICv3 163 Level     dwc3\n263:       3827   msmgpio  67 Edge      NVT-ts\n264:          2   msmgpio  72 Edge      soc:fpc1020\n265:          0   msmgpio  76 Edge      hall-switch-irq\n266:          0  pmic_arb 16777223 Edge      chg-error\n267:          0  pmic_arb 16842759 Edge      chg-state-change\n271:          0  pmic_arb 17825800 Edge      otg-fail\n272:          0  pmic_arb 17891336 Edge      otg-overcurrent\n273:          0  pmic_arb 17956872 Edge      otg-oc-dis-sw-sts\n274:          0  pmic_arb 18022408 Edge      testmode-change-detect\n275:          0  pmic_arb 18874377 Edge      bat-temp\n276:          0  pmic_arb 18939913 Edge      bat-ocp\n277:          0  pmic_arb 19005449 Edge      bat-ov\n278:          0  pmic_arb 19070985 Edge      bat-low\n279:          0  pmic_arb 19136521 Edge      bat-therm-or-id-missing\n280:          0  pmic_arb 19202057 Edge      bat-terminal-missing\n281:          0  pmic_arb 19922954 Edge      usbin-collapse\n282:          0  pmic_arb 19988490 Edge      usbin-lt-3p6v\n283:          0  pmic_arb 20054026 Edge      usbin-uv\n284:          0  pmic_arb 20119562 Edge      usbin-ov\n285:          0  pmic_arb 20185098 Edge      usbin-plugin\n286:          0  pmic_arb 20250634 Edge      usbin-src-change\n287:          0  pmic_arb 20316170 Edge      usbin-icl-change\n288:          0  pmic_arb 20381706 Edge      type-c-change\n289:          0  pmic_arb 20971531 Edge      dcin-collapse\n290:          0  pmic_arb 21037067 Edge      dcin-lt-3p6v\n291:          0  pmic_arb 21102603 Edge      dcin-uv\n292:          0  pmic_arb 21168139 Edge      dcin-ov\n293:          0  pmic_arb 21233675 Edge      dcin-plugin\n294:          0  pmic_arb 21299211 Edge      div2-en-dg\n295:          0  pmic_arb 21364747 Edge      dcin-icl-change\n297:          0  pmic_arb 23134221 Edge      wdog-bark\n298:          0  pmic_arb 23199757 Edge      aicl-fail\n299:          0  pmic_arb 23265293 Edge      aicl-done\n300:          0  pmic_arb 23330829 Edge      high-duty-cycle\n301:          0  pmic_arb 23396365 Edge      input-current-limiting\n302:          0  pmic_arb 23461901 Edge      temperature-change\n303:          0  pmic_arb 23527437 Edge      switcher-power-ok\n304:          0   msmgpio  73 Level     tas2557\n305:          1  pmic_arb 67108894 Edge      soc-update\n306:          0  pmic_arb 67174430 Edge      soc-ready\n307:          0  pmic_arb 67239966 Edge      bsoc-delta\n308:         11  pmic_arb 67305502 Edge      msoc-delta\n309:          0  pmic_arb 67371038 Edge      msoc-low\n310:          0  pmic_arb 67436574 Edge      msoc-empty\n311:          0  pmic_arb 67502110 Edge      msoc-high\n312:          0  pmic_arb 67567646 Edge      msoc-full\n313:          0  pmic_arb 68157471 Edge      vbatt-pred-delta\n314:          0  pmic_arb 68223007 Edge      vbatt-low\n315:          0  pmic_arb 68288543 Edge      esr-delta\n316:          0  pmic_arb 68354079 Edge      batt-missing\n317:          0  pmic_arb 68550687 Edge      batt-temp-delta\n318:        402  pmic_arb 71303202 Edge      ima-rdy\n319:          0  pmic_arb 71368738 Edge      mem-xcp\n320:          0  pmic_arb 71434274 Edge      dma-grant\n321:          1   msmgpio  54 Edge      c084000.sdhci cd\n322:          0   msmgpio  64 Edge      camera_focus\n323:          0   msmgpio 113 Edge      camera_snapshot\nIPI0:       149       Rescheduling interrupts\nIPI1:        15       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:     48218       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sdm660/third/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  1:          0          0          0          0          0          0          0          0   mpm-gic 203 Edge      mpm\n  4:        328          2          2          1          2          2          1          2   mpm-gic  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   mpm-gic  39 Level     arch_mem_timer\n  9:          0          0          0          0          0          0          0          0   mpm-gic 271 Level     sps\n 11:          0          0          0          0          0          0          0          0   mpm-gic  35 Edge      apps_wdog_bark\n 13:          0          0          0          0          0          0          0          0   mpm-gic 216 Level     tsens-upper-lower\n 14:          0          0          0          0          0          0          0          0   mpm-gic 462 Level     tsens-critical\n 16:          0          0          0          0          0          0          0          0   mpm-gic 323 Level     ngd_slim_irq\n 23:          0          0          0          0          0          0          0          0   mpm-gic  67 Edge      OSM IRQ\n 24:          0          0          0          0          0          0          0          0   mpm-gic  68 Edge      OSM IRQ\n 25:         69          0          0          0          0          0          0          0   mpm-gic 142 Level     mmc0\n 26:          3          0          0          0          0          0          0          0   mpm-gic 144 Level     c0c4000.sdhci\n 27:         13          0          0          0          0          0          0          0     GICv3 157 Level     mmc1\n 28:          2          0          0          0          0          0          0          0     GICv3 253 Level     c084000.sdhci\n 29:          0          0          0          0          0          0          0          0   mpm-gic 365 Edge      ipa\n 30:         18          0          0          0          0          0          0          0   mpm-gic 464 Level     sps\n 31:        276          0          0          0          0          0          0          0   mpm-gic 200 Edge      glink-native-rpm-glink\n 32:          0          0          0          0          0          0          0          0   mpm-gic 483 Edge      smp2p\n 33:          0          0          0          0          0          0          0          0   mpm-gic 190 Edge      smp2p\n 34:          0          0          0          0          0          0          0          0   mpm-gic 546 Edge      smp2p\n 47:          0          0          0          0          0          0          0          0   mpm-gic 194 Edge      adsp\n 48:          0          0          0          0          0          0          0          0   mpm-gic 550 Edge      cdsp\n 49:          0          0          0          0          0          0          0          0   mpm-gic 480 Edge      modem\n 51:          0          0          0          0          0          0          0          0   mpm-gic  22 Level     arm-pmu\n 52:          0          0          0          0          0          0          0          0   mpm-gic 238 Level     sps\n 55:          0          0          0          0          0          0          0          0   mpm-gic 317 Edge      cpr3\n 56:          0          0          0          0          0          0          0          0   mpm-gic 332 Level     kgsl_3d0_irq\n 57:          0          0          0          0          0          0          0          0   mpm-gic 261 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n 58:          0          0          0          0          0          0          0          0   mpm-gic 263 Level     arm-smmu global fault, arm-smmu global fault, arm-smmu global fault, arm-smmu global fault\n 59:          0          0          0          0          0          0          0          0   mpm-gic 405 Level     arm-smmu-context-fault\n 60:          0          0          0          0          0          0          0          0   mpm-gic 406 Level     arm-smmu-context-fault\n 61:          0          0          0          0          0          0          0          0   mpm-gic 407 Level     arm-smmu-context-fault\n 88:          0          0          0          0          0          0          0          0   mpm-gic 258 Level     arm-smmu-context-fault\n 89:          0          0          0          0          0          0          0          0   mpm-gic 425 Level     arm-smmu-context-fault\n 90:          0          0          0          0          0          0          0          0   mpm-gic 426 Level     arm-smmu-context-fault\n 91:          0          0          0          0          0          0          0          0   mpm-gic 427 Level     arm-smmu-context-fault\n 92:          0          0          0          0          0          0          0          0   mpm-gic 428 Level     arm-smmu-context-fault\n105:          0          0          0          0          0          0          0          0   mpm-gic 295 Level     arm-smmu-context-fault\n106:          0          0          0          0          0          0          0          0   mpm-gic 298 Level     arm-smmu-context-fault\n107:          0          0          0          0          0          0          0          0   mpm-gic 299 Level     arm-smmu-context-fault\n108:          0          0          0          0          0          0          0          0   mpm-gic 300 Level     arm-smmu-context-fault\n109:          0          0          0          0          0          0          0          0   mpm-gic 276 Level     arm-smmu-context-fault\n110:          0          0          0          0          0          0          0          0   mpm-gic 277 Level     arm-smmu-context-fault\n111:          0          0          0          0          0          0          0          0   mpm-gic 279 Level     arm-smmu-context-fault\n112:          0          0          0          0          0          0          0          0   mpm-gic 280 Level     arm-smmu-context-fault\n113:          0          0          0          0          0          0          0          0   mpm-gic 281 Level     arm-smmu-context-fault\n114:          0          0          0          0          0          0          0          0   mpm-gic 282 Level     arm-smmu-context-fault\n129:          0          0          0          0          0          0          0          0   mpm-gic 361 Level     arm-smmu-context-fault\n130:          0          0          0          0          0          0          0          0   mpm-gic 362 Level     arm-smmu-context-fault\n134:          0          0          0          0          0          0          0          0   mpm-gic 565 Level     arm-smmu-context-fault\n135:          0          0          0          0          0          0          0          0   mpm-gic 566 Level     arm-smmu-context-fault\n136:          0          0          0          0          0          0          0          0   mpm-gic 567 Level     arm-smmu-context-fault\n137:          0          0          0          0          0          0          0          0   mpm-gic 568 Level     arm-smmu-context-fault\n138:          0          0          0          0          0          0          0          0   mpm-gic 569 Level     arm-smmu-context-fault\n139:          0          0          0          0          0          0          0          0   mpm-gic 570 Level     arm-smmu-context-fault\n140:          0          0          0          0          0          0          0          0   mpm-gic 571 Level     arm-smmu-context-fault\n141:          0          0          0          0          0          0          0          0   mpm-gic 572 Level     arm-smmu-context-fault\n142:          0          0          0          0          0          0          0          0   mpm-gic 573 Level     arm-smmu-context-fault\n151:          0          0          0          0          0          0          0          0   mpm-gic 379 Level     hs_phy_irq\n152:          0          0          0          0          0          0          0          0   mpm-gic 275 Level     ss_phy_irq\n153:          2          0          0          0          0          0          0          0   mpm-gic 212 Level     pwr_event_irq\n155:         40          0          0          0          0          0          0          0   mpm-gic 127 Level     i2c-msm-v2-irq\n156:          0          0          0          0          0          0          0          0   mpm-gic 128 Level     i2c-msm-v2-irq\n157:          5          0          0          0          0          0          0          0   mpm-gic 134 Level     i2c-msm-v2-irq\n158:          0          0          0          0          0          0          0          0   mpm-gic 135 Level     c1b7000.spi\n160:          0          0          0          0          0          0          0          0   mpm-gic 110 Edge      csiphy\n161:          0          0          0          0          0          0          0          0   mpm-gic 111 Edge      csiphy\n162:          0          0          0          0          0          0          0          0   mpm-gic 112 Edge      csiphy\n163:          0          0          0          0          0          0          0          0   mpm-gic 328 Edge      csid\n164:          0          0          0          0          0          0          0          0   mpm-gic 329 Edge      csid\n165:          0          0          0          0          0          0          0          0   mpm-gic 330 Edge      csid\n166:          0          0          0          0          0          0          0          0   mpm-gic 331 Edge      csid\n168:          0          0          0          0          0          0          0          0   mpm-gic 341 Edge      ispif\n169:          0          0          0          0          0          0          0          0   mpm-gic 346 Edge      vfe\n170:          0          0          0          0          0          0          0          0   mpm-gic 347 Edge      vfe\n171:          0          0          0          0          0          0          0          0   mpm-gic 327 Edge      cci\n174:          0          0          0          0          0          0          0          0   mpm-gic 319 Level     msm_vidc\n176:          0          0          0          0          0          0          0          0   mpm-gic 115 Level     MDSS\n177:          0          0          0          0          0          0          0          0  pmic_arb 8388612 Edge      pon_kpdpwr_status\n178:          0          0          0          0          0          0          0          0  pmic_arb 8454148 Edge      pon_resin_status\n181:          0          0          0          0          0          0          0          0  pmic_arb 37748755 Edge      qcom,temp-alarm\n195:          0          0          0          0          0          0          0          0  pmic_arb 101777459 Edge      pm8xxx_rtc_alarm\n196:          5          0          0          0          0          0          0          0  pmic_arb 51380246 Edge      pm-adc5\n197:          0          0          0          0          0          0          0          0  pmic_arb 24117262 Edge      sig-tx\n198:          0          0          0          0          0          0          0          0  pmic_arb 24182798 Edge      sig-rx\n199:          0          0          0          0          0          0          0          0  pmic_arb 24248334 Edge      msg-tx\n200:          0          0          0          0          0          0          0          0  pmic_arb 24313870 Edge      msg-rx\n201:          0          0          0          0          0          0          0          0  pmic_arb 24379406 Edge      msg-tx-failed\n202:          0          0          0          0          0          0          0          0  pmic_arb 24444942 Edge      msg-tx-discarded\n203:          0          0          0          0          0          0          0          0  pmic_arb 24510478 Edge      msg-rx-discarded\n204:          0          0          0          0          0          0          0          0  pmic_arb 54525976 Edge      thr-int-en\n205:          0          0          0          0          0          0          0          0  pmic_arb 69206048 Edge      bcl-high-ibat\n207:          0          0          0          0          0          0          0          0  pmic_arb 69337120 Edge      bcl-low-vbat\n210:          0          0          0          0          0          0          0          0  pmic_arb 469762111 Edge      qpnp_hap_sc\n211:          0          0          0          0          0          0          0          0  pmic_arb 469827647 Edge      qpnp_hap_play\n212:          0          0          0          0          0          0          0          0  pmic_arb 574619709 Edge      qcom,temp-alarm\n219:          0          0          0          0          0          0          0          0  pmic_arb 744489127 Edge      volume_up\n225:          1          0          0          0          0          0          0          0  pmic_arb 1031864372 Edge      wled_ovp_irq\n226:          0          0          0          0          0          0          0          0  pmic_arb 1026555953 Edge      qpnp_flash_led_fault_irq\n227:          0          0          0          0          0          0          0          0  pmic_arb 1026752561 Edge      qpnp_flash_led_all_ramp_down_done_irq\n228:          0          0          0          0          0          0          0          0  pmic_arb 1026818097 Edge      qpnp_flash_led_all_ramp_up_done_irq\n229:          0          0          0          0          0          0          0          0  pmic_arb 1052835884 Edge      qpnp_lcdb_sc_irq\n244:          0          0          0          0          0          0          0          0   mpm-gic  69 Level     limits_sensor-00\n245:          0          0          0          0          0          0          0          0   mpm-gic  70 Level     limits_sensor-01\n246:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n247:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n248:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n249:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n250:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n251:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n252:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n253:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n254:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n255:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n256:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n257:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n258:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n259:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n261:          0          0          0          0          0          0          0          0     GICv3 163 Level     dwc3\n263:          2          0          0          0          0          0          0          0   msmgpio  67 Edge      NVT-ts\n264:          2          0          0          0          0          0          0          0   msmgpio  72 Edge      soc:fpc1020\n265:          0          0          0          0          0          0          0          0   msmgpio  76 Edge      hall-switch-irq\n266:          0          0          0          0          0          0          0          0  pmic_arb 16777223 Edge      chg-error\n267:          0          0          0          0          0          0          0          0  pmic_arb 16842759 Edge      chg-state-change\n271:          0          0          0          0          0          0          0          0  pmic_arb 17825800 Edge      otg-fail\n272:          0          0          0          0          0          0          0          0  pmic_arb 17891336 Edge      otg-overcurrent\n273:          0          0          0          0          0          0          0          0  pmic_arb 17956872 Edge      otg-oc-dis-sw-sts\n274:          0          0          0          0          0          0          0          0  pmic_arb 18022408 Edge      testmode-change-detect\n275:          0          0          0          0          0          0          0          0  pmic_arb 18874377 Edge      bat-temp\n276:          0          0          0          0          0          0          0          0  pmic_arb 18939913 Edge      bat-ocp\n277:          0          0          0          0          0          0          0          0  pmic_arb 19005449 Edge      bat-ov\n278:          0          0          0          0          0          0          0          0  pmic_arb 19070985 Edge      bat-low\n279:          0          0          0          0          0          0          0          0  pmic_arb 19136521 Edge      bat-therm-or-id-missing\n280:          0          0          0          0          0          0          0          0  pmic_arb 19202057 Edge      bat-terminal-missing\n281:          0          0          0          0          0          0          0          0  pmic_arb 19922954 Edge      usbin-collapse\n282:          0          0          0          0          0          0          0          0  pmic_arb 19988490 Edge      usbin-lt-3p6v\n283:          0          0          0          0          0          0          0          0  pmic_arb 20054026 Edge      usbin-uv\n284:          0          0          0          0          0          0          0          0  pmic_arb 20119562 Edge      usbin-ov\n285:          0          0          0          0          0          0          0          0  pmic_arb 20185098 Edge      usbin-plugin\n286:          0          0          0          0          0          0          0          0  pmic_arb 20250634 Edge      usbin-src-change\n287:          0          0          0          0          0          0          0          0  pmic_arb 20316170 Edge      usbin-icl-change\n288:          0          0          0          0          0          0          0          0  pmic_arb 20381706 Edge      type-c-change\n289:          0          0          0          0          0          0          0          0  pmic_arb 20971531 Edge      dcin-collapse\n290:          0          0          0          0          0          0          0          0  pmic_arb 21037067 Edge      dcin-lt-3p6v\n291:          0          0          0          0          0          0          0          0  pmic_arb 21102603 Edge      dcin-uv\n292:          0          0          0          0          0          0          0          0  pmic_arb 21168139 Edge      dcin-ov\n293:          0          0          0          0          0          0          0          0  pmic_arb 21233675 Edge      dcin-plugin\n294:          0          0          0          0          0          0          0          0  pmic_arb 21299211 Edge      div2-en-dg\n295:          0          0          0          0          0          0          0          0  pmic_arb 21364747 Edge      dcin-icl-change\n297:          0          0          0          0          0          0          0          0  pmic_arb 23134221 Edge      wdog-bark\n298:          0          0          0          0          0          0          0          0  pmic_arb 23199757 Edge      aicl-fail\n299:          0          0          0          0          0          0          0          0  pmic_arb 23265293 Edge      aicl-done\n300:          0          0          0          0          0          0          0          0  pmic_arb 23330829 Edge      high-duty-cycle\n301:          0          0          0          0          0          0          0          0  pmic_arb 23396365 Edge      input-current-limiting\n302:          0          0          0          0          0          0          0          0  pmic_arb 23461901 Edge      temperature-change\n303:          0          0          0          0          0          0          0          0  pmic_arb 23527437 Edge      switcher-power-ok\n304:          0          0          0          0          0          0          0          0   msmgpio  73 Level     tas2557\n305:          0          0          0          0          0          0          0          0  pmic_arb 67108894 Edge      soc-update\n306:          0          0          0          0          0          0          0          0  pmic_arb 67174430 Edge      soc-ready\n307:          0          0          0          0          0          0          0          0  pmic_arb 67239966 Edge      bsoc-delta\n308:          0          0          0          0          0          0          0          0  pmic_arb 67305502 Edge      msoc-delta\n309:          0          0          0          0          0          0          0          0  pmic_arb 67371038 Edge      msoc-low\n310:          0          0          0          0          0          0          0          0  pmic_arb 67436574 Edge      msoc-empty\n311:          0          0          0          0          0          0          0          0  pmic_arb 67502110 Edge      msoc-high\n312:          0          0          0          0          0          0          0          0  pmic_arb 67567646 Edge      msoc-full\n313:          0          0          0          0          0          0          0          0  pmic_arb 68157471 Edge      vbatt-pred-delta\n314:          0          0          0          0          0          0          0          0  pmic_arb 68223007 Edge      vbatt-low\n315:          0          0          0          0          0          0          0          0  pmic_arb 68288543 Edge      esr-delta\n316:          0          0          0          0          0          0          0          0  pmic_arb 68354079 Edge      batt-missing\n317:          0          0          0          0          0          0          0          0  pmic_arb 68550687 Edge      batt-temp-delta\n318:         36          0          0          0          0          0          0          0  pmic_arb 71303202 Edge      ima-rdy\n319:          0          0          0          0          0          0          0          0  pmic_arb 71368738 Edge      mem-xcp\n320:          0          0          0          0          0          0          0          0  pmic_arb 71434274 Edge      dma-grant\n321:          1          0          0          0          0          0          0          0   msmgpio  54 Edge      c084000.sdhci cd\n322:          0          0          0          0          0          0          0          0   msmgpio  64 Edge      camera_focus\n323:          0          0          0          0          0          0          0          0   msmgpio 113 Edge      camera_snapshot\nIPI0:        79         15         15         15         16         17         17         18       Rescheduling interrupts\nIPI1:         6          3          3          3          4          3          3          3       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:        70          7          7          7          8          8          7         10       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sdm660/third/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    6 root      0:00 [kworker/0:0H-nv]\n    7 root      0:00 [kworker/u16:0+L]\n    8 root      0:00 [mm_percpu_wq]\n    9 root      0:00 [ksoftirqd/0]\n   10 root      0:00 [rcu_preempt]\n   11 root      0:00 [rcu_sched]\n   12 root      0:00 [rcu_bh]\n   13 root      0:00 [rcuop/0]\n   14 root      0:00 [rcuos/0]\n   15 root      0:00 [rcuob/0]\n   16 root      0:00 [migration/0]\n   17 root      0:00 [cpuhp/0]\n   18 root      0:00 [cpuhp/1]\n   19 root      0:00 [migration/1]\n   20 root      0:00 [ksoftirqd/1]\n   21 root      0:00 [kworker/1:0-mm_]\n   22 root      0:00 [kworker/1:0H-ev]\n   23 root      0:00 [rcuop/1]\n   24 root      0:00 [rcuos/1]\n   25 root      0:00 [rcuob/1]\n   26 root      0:00 [cpuhp/2]\n   27 root      0:00 [migration/2]\n   28 root      0:00 [ksoftirqd/2]\n   29 root      0:00 [kworker/2:0-mm_]\n   30 root      0:00 [kworker/2:0H-ev]\n   31 root      0:00 [rcuop/2]\n   32 root      0:00 [rcuos/2]\n   33 root      0:00 [rcuob/2]\n   35 root      0:00 [cpuhp/3]\n   36 root      0:00 [migration/3]\n   37 root      0:00 [ksoftirqd/3]\n   38 root      0:00 [kworker/3:0-mm_]\n   39 root      0:00 [kworker/3:0H-ev]\n   40 root      0:00 [rcuop/3]\n   41 root      0:00 [rcuos/3]\n   42 root      0:00 [rcuob/3]\n   43 root      0:00 [cpuhp/4]\n   44 root      0:00 [migration/4]\n   45 root      0:00 [ksoftirqd/4]\n   46 root      0:00 [kworker/4:0-mm_]\n   47 root      0:00 [kworker/4:0H-ev]\n   48 root      0:00 [rcuop/4]\n   49 root      0:00 [rcuos/4]\n   50 root      0:00 [rcuob/4]\n   51 root      0:00 [cpuhp/5]\n   52 root      0:00 [migration/5]\n   53 root      0:00 [ksoftirqd/5]\n   54 root      0:00 [kworker/5:0-mm_]\n   55 root      0:00 [kworker/5:0H-ev]\n   56 root      0:00 [rcuop/5]\n   57 root      0:00 [rcuos/5]\n   58 root      0:00 [rcuob/5]\n   59 root      0:00 [cpuhp/6]\n   60 root      0:00 [migration/6]\n   61 root      0:00 [ksoftirqd/6]\n   62 root      0:00 [kworker/6:0-mm_]\n   63 root      0:00 [kworker/6:0H-ev]\n   64 root      0:00 [rcuop/6]\n   65 root      0:00 [rcuos/6]\n   66 root      0:00 [rcuob/6]\n   67 root      0:00 [cpuhp/7]\n   68 root      0:00 [migration/7]\n   69 root      0:00 [ksoftirqd/7]\n   70 root      0:00 [kworker/7:0-mm_]\n   71 root      0:00 [kworker/7:0H-ev]\n   72 root      0:00 [rcuop/7]\n   73 root      0:00 [rcuos/7]\n   74 root      0:00 [rcuob/7]\n   75 root      0:00 [netns]\n   76 root      0:00 [rcu_tasks_kthre]\n   77 root      0:00 [kworker/u16:1+M]\n   78 root      0:00 [kworker/u17:0-i]\n   79 root      0:00 [ipa_usb_wq]\n   80 root      0:00 [msm_watchdog]\n   81 root      0:00 [glink_rpm-glink]\n   82 root      0:00 [oom_reaper]\n   83 root      0:00 [writeback]\n   84 root      0:00 [kcompactd0]\n   85 root      0:00 [crypto]\n   86 root      0:00 [kblockd]\n   87 root      0:00 [blk_crypto_wq]\n   88 root      0:00 [irq/13-tsens-up]\n   89 root      0:00 [irq/14-tsens-cr]\n   90 root      0:00 [md]\n   91 root      0:00 [ion-pool-uncach]\n   92 root      0:00 [ion-pool-cached]\n   93 root      0:00 [system]\n   94 root      0:00 [devfreq_wq]\n   95 root      0:00 [governor_msm_ad]\n   96 root      0:00 [irq/229-qpnp_lc]\n   98 root      0:00 [irq/57-arm-smmu]\n   99 root      0:00 [irq/58-arm-smmu]\n  100 root      0:00 [irq/55-cpr3]\n  101 root      0:00 [irq/57-arm-smmu]\n  102 root      0:00 [irq/58-arm-smmu]\n  103 root      0:00 [irq/57-arm-smmu]\n  104 root      0:00 [irq/58-arm-smmu]\n  105 root      0:00 [cfg80211]\n  106 root      0:00 [irq/59-arm-smmu]\n  107 root      0:00 [ipa_power_mgmt]\n  108 root      0:00 [sps_ipa_power_m]\n  109 root      0:00 [ipawq36]\n  110 root      0:00 [iparepwq36]\n  111 root      0:00 [kworker/u17:1-i]\n  112 root      0:00 [ipawq33]\n  113 root      0:00 [iparepwq33]\n  114 root      0:00 [ipawq34]\n  115 root      0:00 [iparepwq34]\n  116 root      0:00 [ipa_rm_wq]\n  117 root      0:00 [ipa_interrupt_w]\n  118 root      0:00 [ipa_holb_wq]\n  119 root      0:00 [irq/60-arm-smmu]\n  120 root      0:00 [irq/57-arm-smmu]\n  121 root      0:00 [irq/58-arm-smmu]\n  162 root      0:00 [kswapd0:0]\n  163 root      0:00 [ecryptfs-kthrea]\n  200 root      0:00 [irq/225-wled_ov]\n  201 root      0:00 [ad_calc_wq]\n  202 root      0:00 [irq/105-arm-smm]\n  203 root      0:00 [irq/106-arm-smm]\n  204 root      0:00 [mdss_dsi_event]\n  205 root      0:00 [mdss_dsi_dba]\n  206 root      0:00 [irq/32-smp2p]\n  207 root      0:00 [irq/33-smp2p]\n  208 root      0:00 [irq/34-smp2p]\n  209 root      0:00 [mem_share_svc]\n  210 root      0:00 [irq/61-arm-smmu]\n  211 root      0:00 [irq/211-qpnp_ha]\n  212 root      0:00 [irq/210-qpnp_ha]\n  213 root      0:00 [k_hsuart]\n  214 root      0:00 [msm_serial_hs_0]\n  215 root      0:00 [msm_serial_hs_0]\n  216 root      0:00 [hwrng]\n  218 root      0:00 [diag_real_time_]\n  219 root      0:00 [diag_wq]\n  220 root      0:00 [DIAG_USB_diag]\n  221 root      0:00 [diag_cntl_wq]\n  222 root      0:00 [diag_dci_wq]\n  223 root      0:00 [MODEM_CNTL]\n  224 root      0:00 [MODEM_DATA]\n  225 root      0:00 [MODEM_CMD]\n  226 root      0:00 [MODEM_DCI]\n  227 root      0:00 [MODEM_DCI_CMD]\n  228 root      0:00 [LPASS_CNTL]\n  229 root      0:00 [LPASS_DATA]\n  230 root      0:00 [LPASS_CMD]\n  231 root      0:00 [LPASS_DCI]\n  232 root      0:00 [LPASS_DCI_CMD]\n  233 root      0:00 [WCNSS_CNTL]\n  234 root      0:00 [WCNSS_DATA]\n  235 root      0:00 [WCNSS_CMD]\n  236 root      0:00 [WCNSS_DCI]\n  237 root      0:00 [WCNSS_DCI_CMD]\n  238 root      0:00 [SENSORS_CNTL]\n  239 root      0:00 [SENSORS_DATA]\n  240 root      0:00 [SENSORS_CMD]\n  241 root      0:00 [SENSORS_DCI]\n  242 root      0:00 [SENSORS_DCI_CMD]\n  243 root      0:00 [DIAG_CTRL+DIAG_]\n  244 root      0:00 [DIAG_DATA]\n  245 root      0:00 [DIAG_CMD]\n  246 root      0:00 [DIAG_DCI_DATA]\n  247 root      0:00 [DIAG_DCI_CMD]\n  248 root      0:00 [CDSP_CNTL+CDSP_]\n  249 root      0:00 [CDSP_DATA]\n  250 root      0:00 [CDSP_CMD]\n  251 root      0:00 [CDSP_DCI]\n  252 root      0:00 [CDSP_DCI_CMD]\n  253 root      0:00 [NPU_CNTL+NPU_CN]\n  254 root      0:00 [NPU_DATA]\n  255 root      0:00 [NPU_CMD]\n  256 root      0:00 [NPU_DCI]\n  257 root      0:00 [NPU_DCI_CMD]\n  258 root      0:00 [DIAG_RPMSG_DIAG]\n  259 root      0:00 [DIAG_RPMSG_DIAG]\n  260 root      0:00 [DIAG_RPMSG_DIAG]\n  261 root      0:00 [DIAG_RPMSG_DIAG]\n  262 root      0:00 [DIAG_RPMSG_DIAG]\n  263 root      0:00 [DIAG_RPMSG_DIAG]\n  264 root      0:00 [DIAG_RPMSG_DIAG]\n  265 root      0:00 [DIAG_RPMSG_DIAG]\n  266 root      0:00 [DIAG_RPMSG_DIAG]\n  267 root      0:00 [DIAG_RPMSG_DIAG]\n  268 root      0:00 [DIAG_RPMSG_APPS]\n  269 root      0:00 [DIAG_RPMSG_APPS]\n  270 root      0:00 [DIAG_RPMSG_DIAG]\n  271 root      0:00 [DIAG_RPMSG_DIAG]\n  272 root      0:00 [DIAG_RPMSG_DIAG]\n  273 root      0:00 [DIAG_RPMSG_DIAG]\n  274 root      0:00 [DIAG_RPMSG_DIAG]\n  275 root      0:00 [DIAG_RPMSG_DIAG]\n  276 root      0:00 [DIAG_RPMSG_DIAG]\n  277 root      0:00 [DIAG_RPMSG_DIAG]\n  278 root      0:00 [kgsl-workqueue]\n  279 root      0:00 [kworker/u16:2+W]\n  280 root      0:00 [kgsl-mementry]\n  281 root      0:00 [kworker/u16:3+S]\n  283 root      0:00 [kgsl_worker_thr]\n  285 root      0:00 [irq/129-arm-smm]\n  286 root      0:00 [irq/130-arm-smm]\n  287 root      0:00 [kgsl-events]\n  288 root      0:00 [kgsl_devfreq_wq]\n  289 root      0:00 [qseecom-unreg-l]\n  290 root      0:00 [qseecom-unload-]\n  291 root      0:00 [qcrypto_seq_res]\n  292 root      0:00 [spi7]\n  293 root      0:00 [bond0]\n  297 root      0:00 [k_ipa_usb]\n  300 root      0:00 [irq/263-NVT-ts]\n  301 root      0:00 [irq/264-soc:fpc]\n  302 root      0:00 [irq/265-hall-sw]\n  303 root      0:00 [msm_vidc_worker]\n  304 root      0:00 [pm_workerq_venu]\n  305 root      0:00 [kworker/0:1H-nv]\n  306 root      0:00 [irq/107-arm-smm]\n  307 root      0:00 [irq/108-arm-smm]\n  308 root      0:00 [irq/109-arm-smm]\n  309 root      0:00 [irq/110-arm-smm]\n  310 root      0:00 [irq/111-arm-smm]\n  311 root      0:00 [irq/112-arm-smm]\n  312 root      0:00 [irq/113-arm-smm]\n  313 root      0:00 [irq/114-arm-smm]\n  314 root      0:00 [msm_cci_wq]\n  315 root      0:00 [msm_cci_wq]\n  316 root      0:00 [msm_cpp_workque]\n  318 root      0:00 [irq/266-chg-err]\n  319 root      0:00 [irq/267-chg-sta]\n  321 root      0:00 [irq/271-otg-fai]\n  322 root      0:00 [kworker/u16:8-e]\n  324 root      0:00 [irq/272-otg-ove]\n  325 root      0:00 [irq/273-otg-oc-]\n  326 root      0:00 [irq/274-testmod]\n  327 root      0:00 [irq/275-bat-tem]\n  328 root      0:00 [irq/276-bat-ocp]\n  329 root      0:00 [irq/277-bat-ov]\n  330 root      0:00 [irq/278-bat-low]\n  331 root      0:00 [irq/279-bat-the]\n  332 root      0:00 [irq/280-bat-ter]\n  333 root      0:00 [irq/281-usbin-c]\n  334 root      0:00 [irq/282-usbin-l]\n  335 root      0:00 [irq/283-usbin-u]\n  336 root      0:00 [irq/284-usbin-o]\n  337 root      0:00 [irq/285-usbin-p]\n  338 root      0:00 [irq/286-usbin-s]\n  339 root      0:00 [irq/287-usbin-i]\n  340 root      0:00 [irq/288-type-c-]\n  341 root      0:00 [irq/289-dcin-co]\n  342 root      0:00 [irq/290-dcin-lt]\n  343 root      0:00 [irq/291-dcin-uv]\n  344 root      0:00 [irq/292-dcin-ov]\n  345 root      0:00 [irq/293-dcin-pl]\n  346 root      0:00 [irq/294-div2-en]\n  347 root      0:00 [irq/295-dcin-ic]\n  348 root      0:00 [irq/297-wdog-ba]\n  349 root      0:00 [irq/298-aicl-fa]\n  350 root      0:00 [irq/299-aicl-do]\n  351 root      0:00 [irq/300-high-du]\n  352 root      0:00 [irq/301-input-c]\n  353 root      0:00 [irq/302-tempera]\n  354 root      0:00 [irq/303-switche]\n  355 root      0:00 [irq/181-qcom,te]\n  356 root      0:00 [irq/212-qcom,te]\n  357 root      0:00 [irq/244-limits_]\n  358 root      0:00 [irq/245-limits_]\n  359 root      0:00 [irq/205-bcl-hig]\n  360 root      0:00 [irq/207-bcl-low]\n  361 root      0:00 [kworker/1:1H]\n  362 root      0:00 [kworker/2:1H]\n  363 root      0:00 [kworker/3:1H]\n  364 root      0:00 [kworker/4:1H]\n  365 root      0:00 [kworker/5:1H]\n  366 root      0:00 [kworker/6:1H]\n  367 root      0:00 [kworker/7:1H]\n  368 root      0:00 [dm_bufio_cache]\n  369 root      0:00 [kworker/u16:10-]\n  370 root      0:00 [cds_recovery_wo]\n  371 root      0:00 [memlat_wq]\n  372 root      0:00 [irq/26-c0c4000.]\n  373 root      0:00 [irq/25-mmc0]\n  374 root      0:00 [irq/88-arm-smmu]\n  375 root      0:00 [uaudio_svc]\n  376 root      0:00 [apr_driver]\n  379 root      0:00 [kworker/1:1-eve]\n  380 root      0:00 [kworker/2:1-eve]\n  381 root      0:00 [kworker/3:1-eve]\n  382 root      0:00 [kworker/4:1-eve]\n  383 root      0:00 [kworker/5:1-eve]\n  384 root      0:00 [kworker/6:1-eve]\n  385 root      0:00 [kworker/7:1-eve]\n  386 root      0:00 [kworker/0:5-eve]\n  387 root      0:00 [mmc_complete]\n  388 root      0:00 [ipv6_addrconf]\n  389 root      0:00 [sdhci_msm_pm_qo]\n  395 root      0:00 [irq/197-sig-tx]\n  396 root      0:00 [irq/198-sig-rx]\n  397 root      0:00 [irq/28-c084000.]\n  398 root      0:00 [irq/305-soc-upd]\n  399 root      0:00 [irq/306-soc-rea]\n  400 root      0:00 [irq/307-bsoc-de]\n  401 root      0:00 [irq/308-msoc-de]\n  402 root      0:00 [irq/309-msoc-lo]\n  403 root      0:00 [irq/310-msoc-em]\n  404 root      0:00 [irq/311-msoc-hi]\n  405 root      0:00 [irq/312-msoc-fu]\n  406 root      0:00 [irq/313-vbatt-p]\n  407 root      0:00 [irq/314-vbatt-l]\n  408 root      0:00 [irq/315-esr-del]\n  409 root      0:00 [irq/316-batt-mi]\n  410 root      0:00 [irq/317-batt-te]\n  411 root      0:00 [irq/318-ima-rdy]\n  412 root      0:00 [irq/319-mem-xcp]\n  413 root      0:00 [irq/320-dma-gra]\n  414 root      0:00 [irq/27-mmc1]\n  416 root      0:00 [kworker/0:8-mm_]\n  417 root      0:00 [irq/204-thr-int]\n  418 root      0:00 [mdss_dp_event]\n  419 root      0:00 [mdss_dp_hpd]\n  420 root      0:00 [irq/151-hs_phy_]\n  421 root      0:00 [irq/153-pwr_eve]\n  422 root      0:00 [irq/152-ss_phy_]\n  423 root      0:00 [usb_bam_wq]\n  424 root      0:00 [hdcp_1x_1]\n  425 root      0:00 [hdcp_tz_lib]\n  426 root      0:00 [dp_hdcp2p2]\n  427 root      0:00 [core_ctl/0]\n  428 root      0:00 [core_ctl/4]\n  431 root      0:00 [rq_stats]\n  432 root      0:00 [cdsprm-wq]\n  433 root      0:00 [cdsprm-wq-delay]\n  434 root      0:00 [irq/89-arm-smmu]\n  435 root      0:00 [irq/90-arm-smmu]\n  436 root      0:00 [irq/91-arm-smmu]\n  437 root      0:00 [irq/92-arm-smmu]\n  438 root      0:00 [irq/134-arm-smm]\n  439 root      0:00 [irq/135-arm-smm]\n  440 root      0:00 [irq/136-arm-smm]\n  441 root      0:00 [irq/137-arm-smm]\n  442 root      0:00 [irq/138-arm-smm]\n  443 root      0:00 [irq/139-arm-smm]\n  444 root      0:00 [irq/140-arm-smm]\n  445 root      0:00 [irq/321-c084000]\n  446 root      0:00 [irq/141-arm-smm]\n  447 root      0:00 [irq/142-arm-smm]\n  448 root      0:00 [sb-3]\n  449 root      0:00 [ngd_rx_thread3]\n  450 root      0:00 [ngd_notify_sl3]\n  452 root      0:00 [irq/228-qpnp_fl]\n  453 root      0:00 [irq/227-qpnp_fl]\n  454 root      0:00 [irq/226-qpnp_fl]\n  455 root      0:00 [clnt_req]\n  456 root      0:00 [clnt_req]\n  492 root      0:00 [kworker/u16:4-r]\n  511 root      0:00 [kworker/0:0-eve]\n  555 root      0:00 ps -A\n"
  },
  {
    "path": "results/sdm660/third/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,633600,2057.584944,3.247450984848485,52.51437692364139,7.6572420766315235,39.17859681040307,145.812299892\r\n1,902400,2930.546058,3.247502280585106,74.07766407733331,7.583864869569051,39.557666857142635,102.377214023\r\n1,1113600,3616.156989,3.247267411099138,92.20599475176833,7.650002038110833,39.21567582668056,82.966428145\r\n1,1401600,4551.868542,3.247623103595891,126.5339341604308,8.340102866032957,35.97077935595027,65.911985756\r\n1,1536000,4988.194606,3.2475225299479167,169.96129931093327,10.22270798703472,29.346431530714238,60.147268987\r\n1,1747200,5674.080799,3.247527929830586,195.79768622275003,10.352952715633462,28.977240429871316,52.875766386\r\n1,1843200,5986.11222,3.2476737304687497,220.25638808775992,11.039476870286478,27.175200738675482,50.121029252\r\n4,1113600,5825.808331,5.231508917923851,257.94215786517645,13.285581823011627,22.580870299588792,51.506050554\r\n4,1401600,7333.34963,5.232127304509133,328.89562323617497,13.458030513672076,22.29152324296104,40.918849516\r\n4,1747200,9138.261903,5.230232316277473,501.92489004084365,16.48281432653053,18.200775307959624,32.839204936\r\n4,1958400,10248.351723,5.233022734375,619.5153338912069,18.141538101233927,16.536635335214218,29.283436759\r\n4,2150400,11242.69225,5.228186500186012,739.5657251015001,19.742787605791165,15.195422550764858,26.695108948\r\n4,2208000,11546.899657,5.229574120018116,852.55154220888,22.158201418745552,13.53900500905294,25.99045374\r\n"
  },
  {
    "path": "results/sdm660/third/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 961.8023873437196, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1284.7889078560002, 1284.8684608260003, 1274.9731523199998, 1284.7889078560002, 1284.8684608260003, 1286.7237713199997, 1279.3119952260001, 1286.962139255, 1285.185373882, 1285.106145618, 1275.445270545, 1279.3119952260001, 1277.297902277, 1279.3119952260001, 1275.523903205, 1279.4697373220001, 1279.62780266, 1277.534157473, 1279.62780266, 1277.534157473, 1285.42338338, 1279.4697373220001, 1271.656940136, 1279.3119952260001, 1287.0414868350001, 1279.3119952260001, 1279.3119952260001, 1275.523903205, 1277.534157473], \"power_mean\": 1280.4430218303794, \"energy_millijoules\": 6402.215109151897, \"energy_joules\": 6.402215109151897}, \"cpus\": {\"1\": {\"freqs\": {\"633600\": {\"active\": {\"elapsed_sec\": 145.812299892, \"elapsed_ns\": 145812299892, \"power_samples\": [43.640585427999895, 43.640585427999895, 45.57089675599991, 47.41983530399989, 47.33846252400008, 47.33846252400008, 43.55945079200001, 47.501208084000154, 47.501208084000154, 43.640585427999895, 43.47831615600012, 43.47831615600012, 47.33846252400008, 47.17538346900005, 47.17538346900005, 43.47831615600012, 43.47831615600012, 43.47831615600012, 47.17538346900005, 47.33846252400008, 41.62925853600018, 41.62925853600018, 43.47831615600012, 43.23457972899996, 43.23457972899996, 51.03900715200007, 47.17538346900005, 47.17538346900005, 45.24554891699995, 50.95739598399996, 50.95739598399996, 51.03900715200007, 41.3858798130002, 41.3858798130002, 47.094010689000015, 47.094010689000015, 47.094010689000015, 45.0830415009998, 45.0830415009998, 47.094010689000015, 47.094010689000015, 43.072310457000185, 43.072310457000185, 43.072310457000185, 46.93126512899994, 41.22384868499989, 41.22384868499989, 45.00178779299995, 45.00178779299995, 45.00178779299995, 45.0830415009998, 47.01263790899998, 47.01263790899998, 45.00178779299995, 609.453473994, 609.453473994, 46.93126512899994, 42.82857403000003, 40.81843883400006, 40.81843883400006, 43.153445092999846, 46.6868132940001, 46.6868132940001, 43.072310457000185, 44.75769366199984, 44.75769366199984, 50.54900567200002, 42.74743939400014, 42.74743939400014, 46.60544051399984, 44.67643995399976, 44.67643995399976, 40.737423270000136, 44.59518624600014, 44.59518624600014, 44.59518624600014, 46.52406773400003, 44.59518624600014, 44.59518624600014, 42.50403548600002, 42.666304758000024, 42.666304758000024, 46.52406773400003, 44.67643995399976, 44.67643995399976, 46.52406773400003, 46.52406773400003, 46.52406773400003, 44.59518624600014, 44.59518624600014, 44.59518624600014, 42.50403548600002, 50.05933866400005, 46.36132217399995, 46.36132217399995, 44.432678829999986, 44.432678829999986, 44.432678829999986, 50.38578333600003, 42.422900849999905, 42.422900849999905, 50.05933866400005, 44.27017141400006, 44.27017141400006, 42.34176621400002, 44.27017141400006, 44.27017141400006, 46.116870339000116, 40.413361013999975, 40.33201341900008, 40.33201341900008, 42.26029905900009, 44.27017141400006, 44.27017141400006, 46.116870339000116, 44.1885846990001, 44.1885846990001, 40.169982291, 44.1885846990001, 44.1885846990001, 43.94482357499987, 45.791379218999964, 45.791379218999964, 44.1885846990001, 45.95412477900004, 45.95412477900004, 44.02607728299995, 36.30993638199993, 42.01689515099997, 42.01689515099997, 41.935760515000084, 43.94482357499987, 43.94482357499987, 45.872751999, 42.01689515099997, 42.01689515099997, 35.90571944799967, 43.61947573599991, 43.61947573599991, 45.54692738400013, 45.54692738400013, 45.54692738400013, 43.538222028000064, 49.40578037599994, 49.40578037599994], \"power_mean\": 52.51437692364139, \"energy_millijoules\": 7657.242076631524, \"energy_joules\": 7.6572420766315235, \"coremark_score\": 2057.584944, \"coremarks_per_mhz\": 3.247450984848485, \"ulpmark_cm_score\": 39.17859681040307}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1275.445270545, 1279.3119952260001, 1279.390866274, 1279.390866274], \"power_mean\": 1278.38474957975, \"energy_millijoules\": 6391.92374789875, \"energy_joules\": 6.391923747898749}}, \"902400\": {\"active\": {\"elapsed_sec\": 102.377214023, \"elapsed_ns\": 102377214023, \"power_samples\": [1.8215471139999408, 64.33790756000008, 64.33790756000008, 64.33790756000008, 64.33790756000008, 60.48443312800009, 62.328387294000095, 62.328387294000095, 68.02938562899999, 62.08105181399992, 62.08105181399992, 64.17244071799996, 62.24594213399996, 62.24594213399996, 64.17244071799996, 64.007312254, 64.007312254, 62.24594213399996, 62.08105181399992, 62.08105181399992, 64.007312254, 62.08105181399992, 71.63326050499995, 71.63326050499995, 61.998606654000014, 67.78097776899995, 67.78097776899995, 60.0724652859999, 60.0724652859999, 60.0724652859999, 57.97796336300007, 61.998606654000014, 61.998606654000014, 59.7428235320001, 61.83371633399997, 61.83371633399997, 63.51158848399996, 63.51158848399996, 63.51158848399996, 63.42902425199986, 67.44942793400014, 67.61537252900007, 67.61537252900007, 67.3666253140002, 624.5186044700001, 624.5186044700001, 57.64879936199986, 69.20924914200009, 69.20924914200009, 63.346460019999995, 63.346460019999995, 63.346460019999995, 61.586042963999944, 59.49584526800004, 59.49584526800004, 63.346460019999995, 67.2010200740001, 67.2010200740001, 61.25626232399986, 63.181331555999805, 63.346460019999995, 63.346460019999995, 67.035414834, 63.346460019999995, 63.346460019999995, 63.181331555999805, 59.331193091999694, 59.331193091999694, 63.181331555999805, 67.035414834, 67.035414834, 61.173479273999874, 61.173479273999874, 61.173479273999874, 70.8855532980001, 63.098428945999785, 63.098428945999785, 63.098428945999785, 63.01586471399992, 66.7866676189999, 66.7866676189999, 62.76817201799986, 62.76817201799986, 62.76817201799986, 61.00858895400006, 61.00858895400006, 61.00858895400006, 62.76817201799986, 62.93330048200005, 62.93330048200005, 66.62106237900002, 62.76817201799986, 62.76817201799986, 66.45545713900015, 70.47000914700016, 62.52047932200003, 62.52047932200003, 62.603043553999896, 68.13058746000002, 68.13058746000002, 56.57943750000004, 68.37969237900029], \"power_mean\": 74.07766407733331, \"energy_millijoules\": 7583.864869569051, \"energy_joules\": 7.583864869569051, \"coremark_score\": 2930.546058, \"coremarks_per_mhz\": 3.247502280585106, \"ulpmark_cm_score\": 39.557666857142635}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1284.977148975, 1273.55711991, 1273.55711991, 1273.47848725], \"power_mean\": 1276.39246901125, \"energy_millijoules\": 6381.962345056249, \"energy_joules\": 6.381962345056249}}, \"1113600\": {\"active\": {\"elapsed_sec\": 82.966428145, \"elapsed_ns\": 82966428145, \"power_samples\": [90.97589114400012, 90.97589114400012, 88.88390639199997, 88.79932896200012, 88.79932896200012, 84.95300373000009, 81.10273759100005, 81.10273759100005, 84.95300373000009, 90.63814029000014, 90.63814029000014, 88.71509674599997, 81.01898190700012, 81.01898190700012, 86.87616634599999, 84.95300373000009, 86.70794005800008, 86.70794005800008, 88.37816788199984, 86.70794005800008, 86.70794005800008, 90.63814029000014, 86.70794005800008, 86.70794005800008, 79.09593836300019, 86.37148748200002, 86.37148748200002, 84.44903929800012, 84.36470098799987, 84.36470098799987, 86.37148748200002, 86.28702961199997, 86.28702961199997, 86.28702961199997, 84.36470098799987, 84.36470098799987, 84.36470098799987, 78.42650269399996, 86.11880332400005, 86.11880332400005, 86.11880332400005, 86.11880332400005, 86.11880332400005, 84.11271877199988, 86.28702961199997, 86.28702961199997, 84.11271877199988, 84.02872470000011, 84.02872470000011, 78.25922947000026, 87.87242937200017, 84.02872470000011, 84.02872470000011, 78.17559285800007, 84.11271877199988, 84.11271877199988, 86.03469017999987, 86.03469017999987, 86.03469017999987, 85.95057703600014, 85.86646389200018, 85.86646389200018, 87.78819715600002, 85.86646389200018, 85.86646389200018, 85.86646389200018, 87.61938751000002, 87.61938751000002, 85.61377973399999, 80.09732612200014, 85.61377973399999, 85.61377973399999, 78.17559285800007, 83.6924041740001, 83.6924041740001, 83.6924041740001, 85.61377973399999, 85.61377973399999, 643.320399228, 87.45092307800019, 87.45092307800019, 83.35642788599989], \"power_mean\": 92.20599475176833, \"energy_millijoules\": 7650.002038110833, \"energy_joules\": 7.650002038110833, \"coremark_score\": 3616.156989, \"coremarks_per_mhz\": 3.247267411099138, \"ulpmark_cm_score\": 39.21567582668056}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1281.1424594759999, 1267.73497752, 1273.51555987, 1273.51555987], \"power_mean\": 1273.977139184, \"energy_millijoules\": 6369.88569592, \"energy_joules\": 6.36988569592}}, \"1401600\": {\"active\": {\"elapsed_sec\": 65.911985756, \"elapsed_ns\": 65911985756, \"power_samples\": [127.03996813599997, 123.11310338400017, 123.11310338400017, 125.03316866399996, 126.95323394399998, 126.95323394399998, 126.86649975199998, 124.94655354400015, 124.94655354400015, 126.60594170800027, 126.69267590000027, 124.77296832399998, 124.77296832399998, 124.77296832399998, 126.43247332400006, 126.43247332400006, 132.19445749899978, 122.420780508, 122.420780508, 124.25292262400012, 134.11380785899996, 134.11380785899996, 124.51312296399988, 126.17191528000012, 126.17191528000012, 124.33989272400004, 122.59377260400015, 122.59377260400015, 126.17191528000012, 130.013832954, 130.013832954, 130.013832954, 126.17191528000012, 124.25292262400012, 124.25292262400012, 124.25292262400012, 124.16630750399986, 124.16630750399986, 125.9984468959999, 125.9984468959999, 125.9984468959999, 126.08518108800013, 129.83988779399988, 129.83988779399988, 125.82497851200014, 129.83988779399988, 125.82497851200014, 125.82497851200014, 129.49199747399985, 129.5789700539999, 129.5789700539999, 123.73323190400015, 125.65151012800015, 125.65151012800015, 131.32318404600005, 129.49199747399985, 129.49199747399985, 125.56477593600016, 129.23072328900003, 129.23072328900003, 123.47303156400017, 123.47303156400017, 123.47303156400017, 123.2998013240001, 133.0665643289999], \"power_mean\": 126.5339341604308, \"energy_millijoules\": 8340.102866032958, \"energy_joules\": 8.340102866032957, \"coremark_score\": 4551.868542, \"coremarks_per_mhz\": 3.247623103595891, \"ulpmark_cm_score\": 35.97077935595027}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1272.018631456, 1272.018631456, 1272.018631456, 1272.018631456], \"power_mean\": 1272.018631456, \"energy_millijoules\": 6360.09315728, \"energy_joules\": 6.36009315728}}, \"1536000\": {\"active\": {\"elapsed_sec\": 60.147268987, \"elapsed_ns\": 60147268987, \"power_samples\": [150.16307329599977, 150.16307329599977, 153.64399026399974, 149.80957906399976, 149.80957906399976, 151.72678466399975, 153.64399026399974, 149.7212959599999, 149.7212959599999, 151.63838248799993, 151.5499803119999, 151.5499803119999, 149.45644664799988, 153.46694776799995, 153.46694776799995, 149.45644664799988, 151.37317596000003, 151.37317596000003, 157.03853198399997, 149.36816354400003, 149.36816354400003, 151.19637160799994, 153.0239787359999, 147.44762582399994, 147.44762582399994, 156.94977234800012, 151.19637160799994, 151.19637160799994, 153.11286277599993, 151.19637160799994, 151.19637160799994, 151.10760712799993, 150.75399842399997, 150.75399842399997, 150.66559624799993, 152.66989374399986, 152.66989374399986, 148.83810310399986, 146.91828176900003, 146.91828176900003, 150.66559624799993, 150.66559624799993, 150.66559624799993, 150.66559624799993, 148.74981999999977, 152.58137249600009, 152.58137249600009, 150.40002741600006, 148.57289197599994, 148.57289197599994, 156.15020808600002, 156.06144845000017, 156.06144845000017, 152.31544596000003, 150.40002741600006, 150.40002741600006, 150.31162523999978, 713.4308294520001, 713.4308294520001, 152.2269247119998], \"power_mean\": 169.96129931093327, \"energy_millijoules\": 10222.70798703472, \"energy_joules\": 10.22270798703472, \"coremark_score\": 4988.194606, \"coremarks_per_mhz\": 3.2475225299479167, \"ulpmark_cm_score\": 29.346431530714238}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1272.68294829, 1282.3732299869998, 1272.68294829, 1272.68294829], \"power_mean\": 1275.10551871425, \"energy_millijoules\": 6375.52759357125, \"energy_joules\": 6.37552759357125}}, \"1747200\": {\"active\": {\"elapsed_sec\": 52.875766386, \"elapsed_ns\": 52875766386, \"power_samples\": [194.47820415599995, 195.39329598299992, 195.39329598299992, 197.39878493100014, 193.47526536600003, 195.302034371, 195.302034371, 195.39329598299992, 197.2160235629999, 197.2160235629999, 195.302034371, 195.02787551200026, 195.02787551200026, 196.758745632, 194.9366139000001, 194.9366139000001, 193.01918035200015, 195.02787551200026, 195.02787551200026, 193.01918035200015, 202.59458469600008, 202.59458469600008, 194.9366139000001, 194.9366139000001, 192.74575346400002, 192.74575346400002, 196.4842290690001, 192.92803805599988, 192.92803805599988, 196.4842290690001, 202.3193702640001, 202.3193702640001, 202.22725614399997, 192.65423763399986, 192.65423763399986, 186.91513071400004, 196.30146770099986, 196.30146770099986, 203.77286292000008, 201.86030356800006, 201.86030356800006, 195.9359449650001, 194.20614698100007, 188.28274144199986, 188.28274144199986, 194.02362375700022, 194.02362375700022, 194.02362375700022, 192.10738385800005, 201.67682728, 201.67682728, 194.02362375700022], \"power_mean\": 195.79768622275003, \"energy_millijoules\": 10352.952715633463, \"energy_joules\": 10.352952715633462, \"coremark_score\": 5674.080799, \"coremarks_per_mhz\": 3.247527929830586, \"ulpmark_cm_score\": 28.977240429871316}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1271.4992360859999, 1271.4992360859999, 1281.101112189, 1271.3414939900001], \"power_mean\": 1273.86026958775, \"energy_millijoules\": 6369.30134793875, \"energy_joules\": 6.36930134793875}}, \"1843200\": {\"active\": {\"elapsed_sec\": 50.121029252, \"elapsed_ns\": 50121029252, \"power_samples\": [224.636437849, 220.34676659399975, 220.34676659399975, 216.61208961199986, 216.61208961199986, 216.61208961199986, 216.51939840399996, 222.1654432859998, 222.1654432859998, 216.24132478, 221.7928672669998, 221.7928672669998, 221.7928672669998, 215.962871274, 214.05186083400008, 214.05186083400008, 221.69981859899985, 223.610829039, 223.610829039, 225.61904253999978, 215.962871274, 215.962871274, 221.69981859899985, 221.51372126299975, 221.51372126299975, 219.510019371, 219.4170897749998, 219.4170897749998, 223.14460850399996, 219.4170897749998, 219.4170897749998, 221.42067259500004, 221.3276239270001, 219.510019371, 219.510019371, 223.23815807899996, 225.05893788000026, 225.05893788000026, 223.14460850399996, 219.13792012799968, 219.13792012799968, 224.779076712, 220.9550479080001, 220.9550479080001, 220.9550479080001, 219.13792012799968, 219.13792012799968, 219.04499053199993, 219.04499053199993, 219.04499053199993], \"power_mean\": 220.25638808775992, \"energy_millijoules\": 11039.476870286479, \"energy_joules\": 11.039476870286478, \"coremark_score\": 5986.11222, \"coremarks_per_mhz\": 3.2476737304687497, \"ulpmark_cm_score\": 27.175200738675482}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1279.5905944350002, 1285.506147084, 1279.8289943910002, 1277.911312015], \"power_mean\": 1280.7092619812502, \"energy_millijoules\": 6403.546309906251, \"energy_joules\": 6.40354630990625}}}}, \"4\": {\"freqs\": {\"1113600\": {\"active\": {\"elapsed_sec\": 51.506050554, \"elapsed_ns\": 51506050554, \"power_samples\": [186.5519903940001, 234.1455123239998, 234.1455123239998, 241.50523852200013, 239.50153687400007, 239.40729675400007, 239.40729675400007, 239.40729675400007, 237.4941610269998, 237.4941610269998, 237.4941610269998, 794.5797329700001, 794.5797329700001, 241.316520138, 233.67571425899973, 233.67571425899973, 239.21881651400008, 239.21881651400008, 239.21881651400008, 238.93570992399987, 237.11729207000008, 237.11729207000008, 239.0299500440001, 240.9386966520001, 237.02317126599974, 237.02317126599974, 237.02317126599974, 240.655619076, 240.655619076, 240.655619076, 233.01815087399996, 233.01815087399996, 240.655619076, 238.65298956399988, 238.65298956399988, 240.46690069200008, 232.924268214, 232.924268214, 240.56125988400004, 236.74080885400008, 232.924268214, 232.924268214, 238.27564285400013, 230.5467956770001, 230.5467956770001, 239.994718014, 238.27564285400013, 238.27564285400013, 236.3639398969999, 230.5467956770001, 230.5467956770001], \"power_mean\": 257.94215786517645, \"energy_millijoules\": 13285.581823011627, \"energy_joules\": 13.285581823011627, \"coremark_score\": 5825.808331, \"coremarks_per_mhz\": 5.231508917923851, \"ulpmark_cm_score\": 22.580870299588792}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1269.0529406300002, 1269.0529406300002, 1269.131811678, 1278.954209853], \"power_mean\": 1271.5479756977502, \"energy_millijoules\": 6357.739878488751, \"energy_joules\": 6.357739878488751}}, \"1401600\": {\"active\": {\"elapsed_sec\": 40.918849516, \"elapsed_ns\": 40918849516, \"power_samples\": [-3.629969613999947, 333.9216475799999, 335.3248279039999, 335.3248279039999, 335.22439262399985, 342.650589804, 342.650589804, 333.11870678399987, 332.91807436800013, 332.91807436800013, 338.83705593399986, 334.8226515040001, 340.43907990900016, 340.43907990900016, 334.8226515040001, 334.8226515040001, 334.8226515040001, 334.5209340440001, 340.237494429, 340.237494429, 338.23260132899986, 342.0447038939999, 342.0447038939999, 334.320063484, 334.42049876400006, 334.42049876400006, 341.8428797820002, 337.8294940599999, 337.8294940599999, 339.6323249039997, 337.72882039199976, 333.917910744, 333.917910744, 332.1147224399999, 341.53973003999977, 341.53973003999977, 339.53153216400005, 339.53153216400005, 339.53153216400005, 339.43073942399974], \"power_mean\": 328.89562323617497, \"energy_millijoules\": 13458.030513672076, \"energy_joules\": 13.458030513672076, \"coremark_score\": 7333.34963, \"coremarks_per_mhz\": 5.232127304509133, \"ulpmark_cm_score\": 22.29152324296104}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1273.770009746, 1274.0076945380001, 1274.0076945380001, 1264.430252845], \"power_mean\": 1271.55391291675, \"energy_millijoules\": 6357.76956458375, \"energy_joules\": 6.357769564583751}}, \"1747200\": {\"active\": {\"elapsed_sec\": 32.839204936, \"elapsed_ns\": 32839204936, \"power_samples\": [498.74946673299996, 505.12919443400006, 505.12919443400006, 501.2196053699997, 500.8861310579998, 500.8861310579998, 500.7749729539996, 498.4278519899999, 498.4278519899999, 500.21872686799975, 503.90337916399994, 503.90337916399994, 503.680130126, 505.470169791, 503.56873387799965, 503.56873387799965, 495.8637357609998, 497.650125397, 497.650125397, 499.32900646999974, 495.7528160449999, 495.7528160449999, 512.6162798079997, 506.8095441070002, 506.8095441070002, 502.8998998479999, 499.106234696, 499.106234696, 506.69745195200016, 502.8998998479999, 504.35455712, 504.35455712], \"power_mean\": 501.92489004084365, \"energy_millijoules\": 16482.81432653053, \"energy_joules\": 16.48281432653053, \"coremark_score\": 9138.261903, \"coremarks_per_mhz\": 5.230232316277473, \"ulpmark_cm_score\": 18.200775307959624}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1274.418067325, 1274.418067325, 1274.418067325, 1274.497414905], \"power_mean\": 1274.43790422, \"energy_millijoules\": 6372.1895211, \"energy_joules\": 6.3721895211}}, \"1958400\": {\"active\": {\"elapsed_sec\": 29.283436759, \"elapsed_ns\": 29283436759, \"power_samples\": [422.8005864940001, 604.8099846119999, 604.8099846119999, 613.8108571750001, 609.668228835, 622.6916993320001, 622.6916993320001, 628.0129813840001, 627.893483604, 627.893483604, 625.8813227199998, 625.5226973389999, 625.5226973389999, 632.8560861339997, 630.9640188779999, 630.9640188779999, 630.84428271, 630.84428271, 630.84428271, 627.0565093990001, 634.2677644439998, 634.2677644439998, 632.1364634839999, 635.6828566220001, 631.896753004, 631.896753004, 626.1000374139999, 631.6565513139999, 631.6565513139999], \"power_mean\": 619.5153338912069, \"energy_millijoules\": 18141.538101233928, \"energy_joules\": 18.141538101233927, \"coremark_score\": 10248.351723, \"coremarks_per_mhz\": 5.233022734375, \"ulpmark_cm_score\": 16.536635335214218}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1274.819664168, 1274.819664168, 1273.06818288, 1273.147855655], \"power_mean\": 1273.96384171775, \"energy_millijoules\": 6369.81920858875, \"energy_joules\": 6.36981920858875}}, \"2150400\": {\"active\": {\"elapsed_sec\": 26.695108948, \"elapsed_ns\": 26695108948, \"power_samples\": [4.276717069000142, 769.216895565, 763.0334060040002, 763.0334060040002, 764.5362415320001, 764.1504152539999, 764.1504152539999, 769.6877537149999, 770.9343721840003, 770.9343721840003, 768.9144813, 768.9144813, 768.9144813, 766.7705513879998, 768.528109008, 768.528109008, 777.9669860160004, 769.9020349040002, 769.6442147440002, 769.6442147440002, 777.3195226830001, 765.8693222009999, 765.8693222009999, 767.6260458290001, 775.171490624, 775.171490624], \"power_mean\": 739.5657251015001, \"energy_millijoules\": 19742.787605791164, \"energy_joules\": 19.742787605791165, \"coremark_score\": 11242.69225, \"coremarks_per_mhz\": 5.228186500186012, \"ulpmark_cm_score\": 15.195422550764858}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1275.694573862, 1275.694573862, 1273.865412978, 1273.9452053129999], \"power_mean\": 1274.79994150375, \"energy_millijoules\": 6373.99970751875, \"energy_joules\": 6.373999707518751}}, \"2208000\": {\"active\": {\"elapsed_sec\": 25.99045374, \"elapsed_ns\": 25990453740, \"power_samples\": [1.09528834799994, 886.0407034289999, 889.1274722159999, 889.1274722159999, 886.9716277840005, 888.71750976, 888.71750976, 884.6754276270001, 888.033678942, 888.033678942, 887.7603706379998, 889.231073484, 889.231073484, 887.4865022760002, 885.4686227640002, 885.4686227640002, 886.8032315160001, 888.6839805880002, 892.0377363669998, 892.0377363669998, 888.2731003700003, 887.862780698, 887.862780698, 887.5886737040003, 887.4519004799997], \"power_mean\": 852.55154220888, \"energy_millijoules\": 22158.201418745553, \"energy_joules\": 22.158201418745552, \"coremark_score\": 11546.899657, \"coremarks_per_mhz\": 5.229574120018116, \"ulpmark_cm_score\": 13.53900500905294}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1272.354895224, 1272.354895224, 1274.579721384, 1272.5932951799998], \"power_mean\": 1272.970701753, \"energy_millijoules\": 6364.853508765, \"energy_joules\": 6.364853508765}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sdm660/third/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 1272 mW\n\n\n===== CPU 1 =====\nFrequencies: 633 902 1113 1401 1536 1747 1843\n\n 633:  2058     3.2 C/MHz     53 mW    7.7 J   39.2 I/mJ   145.8 s\n 902:  2931     3.2 C/MHz     74 mW    7.6 J   39.6 I/mJ   102.4 s\n1113:  3616     3.2 C/MHz     92 mW    7.7 J   39.2 I/mJ    83.0 s\n1401:  4552     3.2 C/MHz    127 mW    8.3 J   36.0 I/mJ    65.9 s\n1536:  4988     3.2 C/MHz    170 mW   10.2 J   29.3 I/mJ    60.1 s\n1747:  5674     3.2 C/MHz    196 mW   10.4 J   29.0 I/mJ    52.9 s\n1843:  5986     3.2 C/MHz    220 mW   11.0 J   27.2 I/mJ    50.1 s\n\n\n===== CPU 4 =====\nFrequencies: 1113 1401 1747 1958 2150 2208\n\n1113:  5826     5.2 C/MHz    258 mW   13.3 J   22.6 I/mJ    51.5 s\n1401:  7333     5.2 C/MHz    329 mW   13.5 J   22.3 I/mJ    40.9 s\n1747:  9138     5.2 C/MHz    502 mW   16.5 J   18.2 I/mJ    32.8 s\n1958: 10248     5.2 C/MHz    620 mW   18.1 J   16.5 I/mJ    29.3 s\n2150: 11243     5.2 C/MHz    740 mW   19.7 J   15.2 I/mJ    26.7 s\n2208: 11547     5.2 C/MHz    853 mW   22.2 J   13.5 I/mJ    26.0 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sdm660/third/uptime.txt",
    "content": " 13:34:43 up 16 min,  load average: 2.82, 2.72, 1.86\n"
  },
  {
    "path": "results/sdm660/third/versions.txt",
    "content": "Kernel: Linux version 4.19.217-Scarlet-X-v1.0+ (Tashar@Alpha-α) (Atom-X clang version 14.0.0 (https://github.com/llvm/llvm-project 2f07534263ca617420239c9d250dffd9ff527a7a), LLD 14.0.0) #1 SMP PREEMPT Fri Nov 26 23:00:57 IST 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sdm670/main/cmdline.txt",
    "content": "rcupdate.rcu_expedited=1 rootwait ro init=/init androidboot.bootdevice=7c4000.sdhci androidboot.baseband=sdm androidboot.keymaster=1 msm_drm.dsi_display0=dsi_s6e3fa7_sdc_1080p_cmd_display::timing0 androidboot.force_normal_boot=1 androidboot.serialno=REDACTED androidboot.slot_suffix=_b androidboot.slot_retry_count=2 androidboot.slot_successful=no androidboot.hardware.platform=sdm670 androidboot.hardware=sargo androidboot.revision=MP1.0 androidboot.bootloader=b4s4-0.4-8048689 androidboot.hardware.sku=G020G androidboot.hardware.radio.subtype=3 androidboot.hardware.dsds=0 androidboot.secure_boot=PRODUCTION androidboot.cdt_hwid=0x05042803 androidboot.hardware.majorid=0x04 androidboot.dtb_idx=0 androidboot.dtbo_idx=9 androidboot.bootreason=reboot androidboot.hardware.ddr=4GB,Hynix,LPDDR4X androidboot.ddr_info=Hynix androidboot.ddr_size=4GB androidboot.hardware.emmc=64GB,SKHynix androidboot.cid=00000000 androidboot.boottime=0BLE:86,1BLL:62,1BLE:447,2BLL:125,2BLE:740,SW:1322,KL:11,KD:81,ODT:119,AVB:495,AFTL:0 androidboot.ramdump=disabled androidboot.blockchain=disabled usbcfg.suzyq=disabled androidboot.theme=1 androidboot.hardware.pcbcfg=SPPU androidboot.hardware.devcfg=S4UW root=PARTUUID=7975e5f0-a684-4d31-9663-b4d92702cdf9 androidboot.verifiedbootstate=orange androidboot.aftlstate=8 printk.devkmsg=on msm_rtb.filter=0x237 ehci-hcd.park=3 service_locator.enable=1 firmware_class.path=/vendor/firmware cgroup.memory=nokmem lpm_levels.sleep_disabled=1 loop.max_part=7 androidboot.boot_devices=soc/7c4000.sdhci androidboot.super_partition=system buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 console=null\n"
  },
  {
    "path": "results/sdm670/main/cpufreq_stats/0/time_in_state",
    "content": "300000 97862\n576000 14845\n748800 11635\n998400 8926\n1209600 7524\n1324800 6921\n1516800 6221\n1612800 5919\n1708800 5877\n"
  },
  {
    "path": "results/sdm670/main/cpufreq_stats/0/total_trans",
    "content": "11\n"
  },
  {
    "path": "results/sdm670/main/cpufreq_stats/6/time_in_state",
    "content": "300000 16996\n652800 8239\n825600 6735\n979200 5832\n1132800 5129\n1363200 4427\n1536000 4026\n1747200 3624\n1843200 3523\n1996800 107200\n"
  },
  {
    "path": "results/sdm670/main/cpufreq_stats/6/total_trans",
    "content": "12\n"
  },
  {
    "path": "results/sdm670/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 12 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x6\nCPU part\t: 0x802\nCPU revision\t: 13\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x6\nCPU part\t: 0x802\nCPU revision\t: 13\n\nHardware\t: Qualcomm Technologies, Inc SDM670\n"
  },
  {
    "path": "results/sdm670/main/device.txt",
    "content": "Model: Google Inc. MSM sdm670 S4 PVT v1.0;\nCompatible: google,b4s4-sdm670;qcom,sdm670;\n"
  },
  {
    "path": "results/sdm670/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Linux version 4.9.332 (pmos@archlinux) (gcc version 12.2.1 20220924 (Alpine 12.2.1_git20220924-r4) ) #3 SMP PREEMPT Fri Dec 16 01:48:01 UTC 2022\n[    0.000000] Boot CPU: AArch64 Processor [517f803c]\n[    0.000000] Machine: Google Inc. MSM sdm670 S4 PVT v1.0\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff800000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node sdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe800000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x000000017bc00000, size 36 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fc000000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f3000000, size 144 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f2800000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085700000, size 6 MiB\n[    0.000000] OF: reserved mem: initialized node hyp_region@85700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085e00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node xbl_region@85e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085fc0000, size 47 MiB\n[    0.000000] OF: reserved mem: initialized node removed_region@85fc0000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ab00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node camera_region@8ab00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b000000, size 152 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@8b000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094800000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region@92e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094d00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_msa_region@93300000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094e00000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_regions@93400000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000095600000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node pil_mba_region@0x93c00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000095800000, size 34 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region@93e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097a00000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ips_fw_region@0x95c00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097a10000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_gsi_region@0x95c10000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097a15000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@0x95c15000, compatible id removed-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x000000009e400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@0x9e400000, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000a1800000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node debug_info@a1800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000a1810000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node ramoops_region@a1810000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000a1a10000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node alt_ramoops_region@a1a10000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000a1c10000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ramoops_meta_region@a1c10000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 968024\n[    0.000000]   DMA zone: 7051 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 451224 pages, LIFO batch:31\n[    0.000000]   Normal zone: 8075 pages used for memmap\n[    0.000000]   Normal zone: 516800 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] random: crng init done\n[    0.000000] percpu: Embedded 22 pages/cpu s50968 r8192 d30952 u90112\n[    0.000000] pcpu-alloc: s50968 r8192 d30952 u90112 alloc=22*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 952898\n[    0.000000] Kernel command line: rcupdate.rcu_expedited=1 rootwait ro init=/init androidboot.bootdevice=7c4000.sdhci androidboot.baseband=sdm androidboot.keymaster=1 msm_drm.dsi_display0=dsi_s6e3fa7_sdc_1080p_cmd_display::timing0 androidboot.force_normal_boot=1 androidboot.serialno=REDACTED androidboot.slot_suffix=_b androidboot.slot_retry_count=2 androidboot.slot_successful=no androidboot.hardware.platform=sdm670 androidboot.hardware=sargo androidboot.revision=MP1.0 androidboot.bootloader=b4s4-0.4-8048689 androidboot.hardware.sku=G020G androidboot.hardware.radio.subtype=3 androidboot.hardware.dsds=0 androidboot.secure_boot=PRODUCTION androidboot.cdt_hwid=0x05042803 androidboot.hardware.majorid=0x04 androidboot.dtb_idx=0 androidboot.dtbo_idx=9 androidboot.bootreason=reboot androidboot.hardware.ddr=4GB,Hynix,LPDDR4X androidboot.ddr_info=Hynix androidboot.ddr_size=4GB androidboot.hardware.emmc=64GB,SKHynix androidboot.cid=00000000 androidboot.boottime=0BLE:86,1BLL:62,1BLE:447,2BLL:125,2\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] software IO TLB: mapped [mem 0xee800000-0xf2800000] (64MB)\n[    0.000000] Memory: 3380012K/3872096K available (17918K kernel code, 4258K rwdata, 11820K rodata, 8192K init, 9520K bss, 238132K reserved, 253952K cma-reserved)\n[    0.000000] Virtual kernel memory layout:\n[    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n[    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)\n[    0.000000]       .text : 0x        (ptrval) - 0x        (ptrval)   ( 17920 KB)\n[    0.000000]     .rodata : 0x        (ptrval) - 0x        (ptrval)   ( 12288 KB)\n[    0.000000]       .init : 0x        (ptrval) - 0x        (ptrval)   (  8192 KB)\n[    0.000000]       .data : 0x        (ptrval) - 0x        (ptrval)   (  4259 KB)\n[    0.000000]        .bss : 0x        (ptrval) - 0x        (ptrval)   (  9521 KB)\n[    0.000000]     fixed   : 0xffffffbefe7f9000 - 0xffffffbefec00000   (  4124 KB)\n[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)\n[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)\n[    0.000000]               0xffffffbf82000000 - 0xffffffbf85f8b000   (    63 MB actual)\n[    0.000000]     memory  : 0xffffffe080000000 - 0xffffffe17e2c0000   (  4066 MB)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] NR_IRQS:64 nr_irqs:64 0\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from all CPUs\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arm_arch_timer: Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000004] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000023] clocksource: Switched to clocksource arch_sys_counter\n[    0.001816] Console: colour dummy device 80x25\n[    0.001838] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001848] pid_max: default: 32768 minimum: 301\n[    0.001907] Security Framework initialized\n[    0.001919] SELinux:  Initializing.\n[    0.001971] SELinux:  Starting in permissive mode\n[    0.002077] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.002082] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.003078] /cpus/cpu@0: Missing clock-frequency property\n[    0.003085] /cpus/cpu@100: Missing clock-frequency property\n[    0.003090] /cpus/cpu@200: Missing clock-frequency property\n[    0.003096] /cpus/cpu@300: Missing clock-frequency property\n[    0.003102] /cpus/cpu@400: Missing clock-frequency property\n[    0.003107] /cpus/cpu@500: Missing clock-frequency property\n[    0.003114] /cpus/cpu@600: Missing clock-frequency property\n[    0.003121] /cpus/cpu@700: Missing clock-frequency property\n[    0.003186] sched-energy: Sched-energy-costs installed from DT\n[    0.011777] ASID allocator initialised with 32768 entries\n[    0.026733] MSM Memory Dump base table set up\n[    0.026757] MSM Memory Dump apps data table set up\n[    0.026946] NMI watchdog: Disabling watchdog on nohz_full cores by default\n[    0.039720] CPU1: Booted secondary processor [517f803c]\n[    0.049767] CPU2: Booted secondary processor [517f803c]\n[    0.059861] CPU3: Booted secondary processor [517f803c]\n[    0.070124] CPU4: Booted secondary processor [517f803c]\n[    0.080508] CPU5: Booted secondary processor [517f803c]\n[    0.091822] CPU6: Booted secondary processor [516f802d]\n[    0.102987] CPU7: Booted secondary processor [516f802d]\n[    0.103311] Brought up 8 CPUs\n[    0.103315] SMP: Total of 8 processors activated.\n[    0.103319] CPU features: detected feature: GIC system register CPU interface\n[    0.103320] CPU features: detected feature: Privileged Access Never\n[    0.103322] CPU features: detected feature: User Access Override\n[    0.103324] CPU features: detected feature: 32-bit EL0 Support\n[    0.103326] CPU features: detected feature: Kernel page table isolation (KPTI)\n[    0.186646] CPU: All CPU(s) started at EL1\n[    0.186696] alternatives: patching kernel code\n[    0.188729] CPU0: update max cpu_capacity 1024\n[    0.246380] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.246394] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.251795] pinctrl core: initialized pinctrl subsystem\n[    0.252492] NET: Registered protocol family 16\n[    0.253517] Init ksuspend_mon thread\n[    0.254237] schedtune: init normalization constants...\n[    0.254245] schedtune: CLUSTER[0]        min_pwr:     1 max_pwr:    19\n[    0.254250] schedtune: CPU[0]            min_pwr:     4 max_pwr:   144\n[    0.254254] schedtune: SYSTEM            min_pwr:     5 max_pwr:   163\n[    0.254259] schedtune: using normalization constants mul: 2663967058 sh1: 1 sh2: 7\n[    0.254261] schedtune: verify normalization constants...\n[    0.254263] schedtune: max_pwr/2^0:  158 => norm_pwr:  1024\n[    0.254265] schedtune: max_pwr/2^1:   79 => norm_pwr:   512\n[    0.254266] schedtune: max_pwr/2^2:   39 => norm_pwr:   252\n[    0.254268] schedtune: max_pwr/2^3:   19 => norm_pwr:   123\n[    0.254269] schedtune: max_pwr/2^4:    9 => norm_pwr:    58\n[    0.254270] schedtune: max_pwr/2^5:    4 => norm_pwr:    25\n[    0.254273] schedtune: configured to support 6 boost groups\n[    0.256057] cpuidle: using governor menu\n[    0.256079] cpuidle: using governor qcom\n[    0.260811] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.261551] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.261997] ipa_pm_is_used:3408 IPA HW is not supported\n[    0.263183] exit: IPA_USB init success!\n[    0.266177] irq: no irq domain found for /soc/pinctrl@03400000 !\n[    0.269394] OF: amba_device_add() failed (-16) for /soc/cti@6867000\n[    0.272379] irq: no irq domain found for /soc/qcom,mdss_mdp@ae00000 !\n[    0.272452] irq: no irq domain found for /soc/qcom,mdss_mdp@ae00000 !\n[    0.273306] sps:sps is ready.\n[    0.274771] set_restart_msg: set restart msg = `Unknown'\r\n[    0.276461] unable to find DT imem DLOAD mode node\n[    0.278078] unable to find DT imem EDLOAD mode node\n[    0.280870] msm_watchdog 17980000.qcom,wdt: wdog absent resource not present\n[    0.280887] msm_watchdog 17980000.qcom,wdt: No need to allocate memory for scandumps\n[    0.281689] msm_watchdog 17980000.qcom,wdt: MSM Watchdog Initialized\n[    0.282671] platform soc:mem_dump: assigned reserved memory node mem_dump_region\n[    0.307464] spmi spmi-0: PMIC arbiter version v5 (0x50000000)\n[    0.312149] platform 62400000.qcom,lpass: assigned reserved memory node pil_adsp_region@93e00000\n[    0.312619] platform soc:qcom,ipa_fws: assigned reserved memory node ips_fw_region@0x95c00000\n[    0.312745] platform 4080000.qcom,mss: assigned reserved memory node modem_region@8b000000\n[    0.312813] platform aae0000.qcom,venus: assigned reserved memory node pil_video_region@92e00000\n[    0.312904] platform 8300000.qcom,turing: assigned reserved memory node cdsp_regions@93400000\n[    0.313197] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.316242] pm660l_s3_level: Bringing 1uV into 17-17uV\n[    0.316323] pm660l_s3_level: supplied by pm660l_s1_level\n[    0.316395] pm660l_s3_level_ao: Bringing 1uV into 17-17uV\n[    0.316462] pm660l_s3_level_ao: supplied by pm660l_s1_level_ao\n[    0.325076] sdm670-pinctrl 3400000.pinctrl: invalid resource\n[    0.334577] platform soc:qcom,kgsl-hyp: assigned reserved memory node gpu_region@0x95c15000\n[    0.338247] platform a1800000.bootloader_log: assigned reserved memory node debug_info@a1800000\n[    0.338304] platform a1805c00.bootloader_kinfo: assigned reserved memory node debug_info@a1800000\n[    0.338360] platform soc:ramoops: assigned reserved memory node ramoops_region@a1810000\n[    0.338617] pstore: using zlib compression\n[    0.338659] console [pstore-1] enabled\n[    0.338721] pstore: Registered ramoops as persistent store backend\n[    0.338767] ramoops: attached 0x200000@0xa1810000, ecc: 0/0\n[    0.341010] bldr_log_parser: bldr_log invalid in 000000008936c29a\n[    0.341067] platform soc:access_ramoops@0: assigned reserved memory node ramoops_meta_region@a1c10000\n[    0.341195] platform soc:access_ramoops@1: assigned reserved memory node alt_ramoops_region@a1a10000\n[    0.360227] gpu_cx_gdsc: supplied by pm660l_s3_level\n[    0.366969] cam_cc-sdm845 ad00000.qcom,camcc: Registered Camera CC clocks\n[    0.367901] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.368696] clk-rpmh soc:qcom,rpmhclk: Registered RPMh clocks\n[    0.370336] disp_cc-sdm845 af00000.qcom,dispcc: Registered Display CC clocks\n[    0.380588] gcc-sdm845 100000.qcom,gcc: Registered GCC clocks\n[    0.381940] clk: gpu_cc_gmu_clk_src: set OPP pair(19200000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.381986] clk: gpu_cc_gmu_clk_src: set OPP pair(200000000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.382145] gpu_cc-sdm845 5090000.qcom,gpucc: Registered GPU CC clocks\n[    0.382953] clk: gpu_cc_gx_gfx3d_clk_src: set OPP pair(180000000 Hz: 49 uV) on 5000000.qcom,kgsl-3d0\n[    0.383255] clk: gpu_cc_gx_gfx3d_clk_src: set OPP pair(750000000 Hz: 385 uV) on 5000000.qcom,kgsl-3d0\n[    0.383308] clk: gpu_cc_gx_gfx3d_clk_src: set OPP pair(780000000 Hz: 417 uV) on 5000000.qcom,kgsl-3d0\n[    0.383357] gfxcc-sdm845 5090000.qcom,gfxcc: Registered GFX CC clocks\n[    0.384382] video_cc-sdm845 ab00000.qcom,videocc: Registered Video CC clocks\n[    0.385923] KPI: Bootloader start count = 3266700712\n[    0.385925] KPI: Bootloader end count = 2354418110\n[    0.385927] KPI: Bootloader display count = 2655220635\n[    0.385929] KPI: Bootloader load kernel count = 3693708713\n[    0.385932] KPI: Kernel MPM timestamp = 136601\n[    0.385934] KPI: Kernel MPM Clock frequency = 32768\n[    0.385961] socinfo_print: v0.15, id=336, ver=1.1, raw_id=145, raw_ver=1, hw_plat=5, hw_plat_ver=262184\n                accessory_chip=0, hw_plat_subtype=3, pmic_model=65563, pmic_die_revision=131072 foundry_id=3 serial_number=REDACTED num_pmics=2 chip_family=0x55 raw_device_family=0x6 raw_device_number=0x4 nproduct_id=0x400 num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0x6 ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.385963] msm_bus_fabric_rpmh_init_driver\n[    0.386415] msm_bus: Probe started\n[    0.386913] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.386955] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.386968] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.387011] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.388987] msm_bus: DT Parsing complete\n[    0.391990] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.392147] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.392192] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.392339] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.404239] reg-fixed-voltage 0.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660l@2/pinctrl@c000/camera_rear_rcm_en/camera_rear_rcm_en_default, deferring probe\n[    0.404263] reg-fixed-voltage 2.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660l@2/pinctrl@c000/camera_dvdd_en/camera_dvdd_en_default, deferring probe\n[    0.404280] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660l@2/pinctrl@c000/camera_rear_dvdd_en/camera_rear_dvdd_en_default, deferring probe\n[    0.404298] reg-fixed-voltage vendor:ext_5v_boost: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660@0/pinctrl@c000/usb2_ext_5v_boost/usb2_ext_5v_boost_default, deferring probe\n[    0.404315] reg-fixed-voltage vendor:cam_vio_ldo: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660@0/pinctrl@c000/camera_vio_en/camera_vio_en_default, deferring probe\n[    0.405303] arm-smmu 5040000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.405378] arm-smmu 5040000.arm,smmu-kgsl: \tstream matching with 5 register groups, mask 0x7\n[    0.405483] arm-smmu 5040000.arm,smmu-kgsl: found 8 context interrupt(s) but have 5 context banks. assuming 5 context interrupts.\n[    0.407875] register_client_adhoc:find path.src 139 dest 627\n[    0.408122] register_client_adhoc:Client handle 1 apps_smmu\n[    0.408318] arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.408418] arm-smmu 15000000.apps-smmu: \tstream matching with 71 register groups, mask 0x7fff\n[    0.409050] arm-smmu 15000000.apps-smmu: found 64 context interrupt(s) but have 47 context banks. assuming 47 context interrupts.\n[    0.409749] register_client_adhoc:find path.src 139 dest 627\n[    0.409883] register_client_adhoc:Client handle 2 apps_smmu\n[    0.410126] register_client_adhoc:find path.src 139 dest 627\n[    0.410242] register_client_adhoc:Client handle 3 apps_smmu\n[    0.410420] register_client_adhoc:find path.src 22 dest 773\n[    0.410490] register_client_adhoc:Client handle 4 mnoc_hf_0_tbu\n[    0.410662] register_client_adhoc:find path.src 22 dest 773\n[    0.410722] register_client_adhoc:Client handle 5 mnoc_hf_1_tbu\n[    0.410902] register_client_adhoc:find path.src 137 dest 772\n[    0.410967] register_client_adhoc:Client handle 6 mnoc_sf_0_tbu\n[    0.411101] register_client_adhoc:find path.src 139 dest 627\n[    0.411219] register_client_adhoc:Client handle 7 apps_smmu\n[    0.411398] register_client_adhoc:find path.src 139 dest 627\n[    0.411510] register_client_adhoc:Client handle 8 apps_smmu\n[    0.412606] iommu: Adding device 8c0000.qcom,qupv3_0_geni_se:qcom,iommu_qupv3_0_geni_se_cb to group 0\n[    0.412731] iommu: Adding device ac0000.qcom,qupv3_1_geni_se:qcom,iommu_qupv3_1_geni_se_cb to group 1\n[    0.412848] iommu: Adding device ae00000.qcom,mdss_mdp to group 2\n[    0.412963] iommu: Adding device 1de0000.qcedev to group 3\n[    0.413076] iommu: Adding device 1de0000.qcrypto to group 4\n[    0.413193] iommu: Adding device 800000.qcom,gpi-dma to group 5\n[    0.413302] iommu: Adding device a00000.qcom,gpi-dma to group 6\n[    0.413438] iommu: Adding device 18800000.qcom,icnss to group 7\n[    0.413582] iommu: Adding device soc:apps_iommu_test_device to group 8\n[    0.413688] iommu: Adding device soc:apps_iommu_coherent_test_device to group 8\n[    0.413810] iommu: Adding device soc:qcom,msm-audio-ion to group 9\n[    0.413925] iommu: Adding device a600000.ssusb to group 10\n[    0.414033] iommu: Adding device soc:usb_audio_qmi_dev to group 11\n[    0.415860] vgaarb: loaded\n[    0.416131] SCSI subsystem initialized\n[    0.416267] usbcore: registered new interface driver usbfs\n[    0.416297] usbcore: registered new interface driver hub\n[    0.416323] usbcore: registered new device driver usb\n[    0.417238] soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.417846] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from KPD (power key press) and 'cold' boot\n[    0.417874] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)\n[    0.417912] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0: Reg dump: 08C0: 80 00 00 00 80 02 00 80 00 08 80 00\n[    0.418110] input: qpnp_pon as /devices/virtual/input/input0\n[    0.418795] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: No PON config. specified\n[    0.418847] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (secondary PMIC) and 'cold' boot\n[    0.418873] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from GP1 (Keypad_Reset1)\n[    0.418906] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2: Reg dump: 08C0: 20 00 00 00 80 08 00 80 00 08 00 00\n[    0.419239] media: Linux media interface: v0.10\n[    0.419264] Linux video capture interface: v2.00\n[    0.428328] EDAC MC: Ver: 3.0.0\n[    0.431954] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@0x9e400000\n[    0.432042] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.432111] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.432178] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.432302] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node sdsp_region\n[    0.432488] ION heap system created\n[    0.432682] ION heap qsecom created at 0x000000009e400000 with size 1400000\n[    0.432689] ION heap qsecom_ta created at 0x00000000fe800000 with size 1000000\n[    0.432697] ION heap spss created at 0x00000000f2800000 with size 800000\n[    0.432705] ION heap secure_display created at 0x00000000f3000000 with size 9000000\n[    0.432727] ION heap secure_heap created\n[    0.432740] ION heap adsp created at 0x00000000ff800000 with size 400000\n[    0.434061] ipa ipa3_tz_unlock_reg:4843 Bad parameters\n[    0.434071] ipa ipa3_pre_init:5042 Failed to unlock memory region using TZ\n[    0.434272] register_client_adhoc:find path.src 90 dest 512\n[    0.434693] register_client_adhoc:find path.src 90 dest 585\n[    0.434806] register_client_adhoc:find path.src 1 dest 676\n[    0.435004] register_client_adhoc:find path.src 143 dest 777\n[    0.435069] register_client_adhoc:Client handle 9 ipa\n[    0.435428] ipa ipa3_uc_state_check:284 uC interface not initialized\n[    0.438938] ipa ipa3_uc_state_check:284 uC interface not initialized\n[    0.439498] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_ap to group 12\n[    0.439705] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_wlan to group 13\n[    0.439917] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_uc to group 14\n[    0.441140] PMIC@SID0: PM660 v2.0 options: 0, 0, 0, 0\n[    0.441263] PMIC@SID2: PM660L v2.0.2 options: 0, 0, 0, 0\n[    0.445643] Advanced Linux Sound Architecture Driver Initialized.\n[    0.446318] Bluetooth: Core ver 2.22\n[    0.446342] NET: Registered protocol family 31\n[    0.446344] Bluetooth: HCI device and connection manager initialized\n[    0.446352] Bluetooth: HCI socket layer initialized\n[    0.446358] Bluetooth: L2CAP socket layer initialized\n[    0.446379] Bluetooth: SCO socket layer initialized\n[    0.447778] pcie:pcie_init.\n[    0.449988] register_client_adhoc:find path.src 22 dest 512\n[    0.450331] register_client_adhoc:find path.src 23 dest 512\n[    0.450518] register_client_adhoc:Client handle 10 bus-proxy-client\n[    0.451822] gpu_gx_gdsc: supplied by pm660l_s2_level\n[    0.453086] clk: add_opp: Set OPP pair (300000000 Hz, 576000 uv) on cpu0\n[    0.453367] clk: add_opp: Set OPP pair (1708800000 Hz, 772000 uv) on cpu0\n[    0.453420] clk: add_opp: Set OPP pair (300000000 Hz, 576000 uv) on cpu1\n[    0.453706] clk: add_opp: Set OPP pair (1708800000 Hz, 772000 uv) on cpu1\n[    0.453757] clk: add_opp: Set OPP pair (300000000 Hz, 576000 uv) on cpu2\n[    0.454043] clk: add_opp: Set OPP pair (1708800000 Hz, 772000 uv) on cpu2\n[    0.454093] clk: add_opp: Set OPP pair (300000000 Hz, 576000 uv) on cpu3\n[    0.454383] clk: add_opp: Set OPP pair (1708800000 Hz, 772000 uv) on cpu3\n[    0.454432] clk: add_opp: Set OPP pair (300000000 Hz, 576000 uv) on cpu4\n[    0.454729] clk: add_opp: Set OPP pair (1708800000 Hz, 772000 uv) on cpu4\n[    0.454776] clk: add_opp: Set OPP pair (300000000 Hz, 576000 uv) on cpu5\n[    0.455067] clk: add_opp: Set OPP pair (1708800000 Hz, 772000 uv) on cpu5\n[    0.455120] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu6\n[    0.455434] clk: add_opp: Set OPP pair (1996800000 Hz, 816000 uv) on cpu6\n[    0.455478] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu7\n[    0.455789] clk: add_opp: Set OPP pair (1996800000 Hz, 816000 uv) on cpu7\n[    0.456086] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on soc:qcom,l3-cpu0\n[    0.456089] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on soc:qcom,l3-cpu6\n[    0.456091] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on soc:qcom,l3-cdsp\n[    0.457090] clk: add_opp: Set OPP pair (1440000000 Hz, 768000 uv) on soc:qcom,l3-cpu0\n[    0.457093] clk: add_opp: Set OPP pair (1440000000 Hz, 768000 uv) on soc:qcom,l3-cpu6\n[    0.457095] clk: add_opp: Set OPP pair (1440000000 Hz, 768000 uv) on soc:qcom,l3-cdsp\n[    0.458963] cpufreq: driver osm-cpufreq up and running\n[    0.458965] clk: clk_cpu_osm_driver_probe: OSM CPUFreq driver inited\n[    0.459018] reg-fixed-voltage 0.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660l@2/pinctrl@c000/camera_rear_rcm_en/camera_rear_rcm_en_default, deferring probe\n[    0.459063] reg-fixed-voltage 2.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660l@2/pinctrl@c000/camera_dvdd_en/camera_dvdd_en_default, deferring probe\n[    0.459102] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660l@2/pinctrl@c000/camera_rear_dvdd_en/camera_rear_dvdd_en_default, deferring probe\n[    0.459142] reg-fixed-voltage vendor:ext_5v_boost: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660@0/pinctrl@c000/usb2_ext_5v_boost/usb2_ext_5v_boost_default, deferring probe\n[    0.459180] reg-fixed-voltage vendor:cam_vio_ldo: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660@0/pinctrl@c000/camera_vio_en/camera_vio_en_default, deferring probe\n[    0.459358] sched-energy energy-costs: cpu=0 eff=1024 [freq=300000 cap=91 power_d0=14] -> [freq=1708800 cap=517 power_d0=144]\n[    0.459361] CPU0: update cpu_capacity 517\n[    0.459366] sched-energy energy-costs: cpu=1 eff=1024 [freq=300000 cap=91 power_d0=14] -> [freq=1708800 cap=517 power_d0=144]\n[    0.459368] CPU1: update cpu_capacity 517\n[    0.459374] sched-energy energy-costs: cpu=2 eff=1024 [freq=300000 cap=91 power_d0=14] -> [freq=1708800 cap=517 power_d0=144]\n[    0.459375] CPU2: update cpu_capacity 517\n[    0.459380] sched-energy energy-costs: cpu=3 eff=1024 [freq=300000 cap=91 power_d0=14] -> [freq=1708800 cap=517 power_d0=144]\n[    0.459381] CPU3: update cpu_capacity 517\n[    0.459387] sched-energy energy-costs: cpu=4 eff=1024 [freq=300000 cap=91 power_d0=14] -> [freq=1708800 cap=517 power_d0=144]\n[    0.459388] CPU4: update cpu_capacity 517\n[    0.459393] sched-energy energy-costs: cpu=5 eff=1024 [freq=300000 cap=91 power_d0=14] -> [freq=1708800 cap=517 power_d0=144]\n[    0.459395] CPU5: update cpu_capacity 517\n[    0.459402] sched-energy energy-costs: cpu=6 eff=1740 [freq=300000 cap=154 power_d0=111] -> [freq=2611200 cap=1024 power_d0=1400]\n[    0.459404] CPU6: update cpu_capacity 1024\n[    0.459409] sched-energy energy-costs: cpu=7 eff=1740 [freq=300000 cap=154 power_d0=111] -> [freq=2611200 cap=1024 power_d0=1400]\n[    0.459410] CPU7: update cpu_capacity 1024\n[    0.459443] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.459470] reg-fixed-voltage 0.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660l@2/pinctrl@c000/camera_rear_rcm_en/camera_rear_rcm_en_default, deferring probe\n[    0.459502] reg-fixed-voltage 2.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660l@2/pinctrl@c000/camera_dvdd_en/camera_dvdd_en_default, deferring probe\n[    0.459534] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660l@2/pinctrl@c000/camera_rear_dvdd_en/camera_rear_dvdd_en_default, deferring probe\n[    0.459563] reg-fixed-voltage vendor:ext_5v_boost: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660@0/pinctrl@c000/usb2_ext_5v_boost/usb2_ext_5v_boost_default, deferring probe\n[    0.459591] reg-fixed-voltage vendor:cam_vio_ldo: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660@0/pinctrl@c000/camera_vio_en/camera_vio_en_default, deferring probe\n[    0.461723] clocksource: Switched to clocksource arch_sys_counter\n[    0.495845] VFS: Disk quotas dquot_6.6.0\n[    0.495895] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.496670] debugcc-sdm845 soc:qcom,cc-debug: Registered debug mux successfully\n[    0.497594] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.497683] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.497689] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.497695] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.497700] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.497705] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.498067] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=0, clocks successfully\n[    0.498092] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.498157] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.498162] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.498167] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.498172] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.498178] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.503268] dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.503417] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=1, clocks successfully\n[    0.503445] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.508653] NET: Registered protocol family 2\n[    0.508732] IP idents hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.509809] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.509935] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.510384] TCP: Hash tables configured (established 32768 bind 32768)\n[    0.510428] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.510463] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.510604] NET: Registered protocol family 1\n[    0.510625] PCI: CLS 0 bytes, default 128\n[    0.510761] reg-fixed-voltage 0.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660l@2/pinctrl@c000/camera_rear_rcm_en/camera_rear_rcm_en_default, deferring probe\n[    0.510839] reg-fixed-voltage 2.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660l@2/pinctrl@c000/camera_dvdd_en/camera_dvdd_en_default, deferring probe\n[    0.510879] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660l@2/pinctrl@c000/camera_rear_dvdd_en/camera_rear_dvdd_en_default, deferring probe\n[    0.510919] reg-fixed-voltage vendor:ext_5v_boost: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660@0/pinctrl@c000/usb2_ext_5v_boost/usb2_ext_5v_boost_default, deferring probe\n[    0.510958] reg-fixed-voltage vendor:cam_vio_ldo: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660@0/pinctrl@c000/camera_vio_en/camera_vio_en_default, deferring probe\n[    0.511369] Trying to unpack rootfs image as initramfs...\n[    0.714027] Freeing initrd memory: 7468K\n[    0.715919] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.721723] audit: initializing netlink subsys (disabled)\n[    0.721780] audit: type=2000 audit(0.719:1): initialized\n[    0.723473] workingset: timestamp_bits=61 max_order=20 bucket_order=0\n[    0.728092] Registering sdcardfs 0.1\n[    0.728273] fuse init (API version 7.26)\n[    0.728777] SELinux:  Registering netfilter hooks\n[    0.729470] pfk_ecryptfs [pfk_ecryptfs_init]: PFK ecryptfs inited successfully\n[    0.729473] pfk_fscrypt [pfk_fscrypt_init]: PFK FSCRYPT inited successfully\n[    0.729478] pfk [pfk_init]: Driver initialized successfully\n[    0.735086] io scheduler noop registered\n[    0.735196] io scheduler cfq registered (default)\n[    0.748780] qcom,qpnp-clkdiv c440000.qcom,spmi:qcom,pm660@0:qcom,clkdiv@5b00: Registered qpnp_clkdiv_1 successfully\n[    0.754374] 88e0000.qcom,msm-eud supply vdda33 not found, using dummy regulator\n[    0.765905] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.766005] icnss: Platform driver probed successfully\n[    0.767214] register_client_adhoc:find path.src 125 dest 512\n[    0.767597] register_client_adhoc:Client handle 11 scm_pas\n[    0.767606] minidump-id not found for adsp\n[    0.767710] minidump-id not found for ipa_fws\n[    0.767726] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    0.768214] register_client_adhoc:find path.src 63 dest 512\n[    0.768400] register_client_adhoc:Client handle 12 pil-venus\n[    0.768406] minidump-id not found for venus\n[    0.768414] subsys-pil-tz aae0000.qcom,venus: for venus segments only will be dumped.\n[    0.768601] minidump-id not found for cdsp\n[    0.768793] minidump-id not found for a615_zap\n[    0.768800] subsys-pil-tz soc:qcom,kgsl-hyp: for a615_zap segments only will be dumped.\n[    0.769761] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    0.771598] modemsmem soc:modemsmem: Get modem_flag node failed\n[    0.772832] msm_geni_serial 898000.qcom,qup_uart: Wakeup byte 0xfd\n[    0.772882] msm_geni_serial 898000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    0.773002] 898000.qcom,qup_uart: ttyHS0 at MMIO 0x898000 (irq = 10, base_baud = 0) is a MSM\n[    0.773903] msm_geni_serial a90000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console1\n[    0.773920] a90000.qcom,qup_uart: ttyMSM0 at MMIO 0xa90000 (irq = 15, base_baud = 0) is a MSM\n[    0.774485] msm_geni_serial_init: Driver initialized\n[    0.774713] register_client_adhoc:find path.src 1 dest 618\n[    0.774914] register_client_adhoc:Client handle 13 msm-rng-noc\n[    0.820688] [drm] Initialized\n[    0.821113] register_client_adhoc:find path.src 20003 dest 20515\n[    0.821260] register_client_adhoc:find path.src 20004 dest 20515\n[    0.821328] register_client_adhoc:Client handle 14 disp_rsc_mnoc\n[    0.821353] register_client_adhoc:find path.src 20001 dest 20513\n[    0.821417] register_client_adhoc:Client handle 15 disp_rsc_llcc\n[    0.821439] register_client_adhoc:find path.src 20000 dest 20512\n[    0.821504] register_client_adhoc:Client handle 16 disp_rsc_ebi\n[    0.821684] [sde_rsc_hw:rsc_hw_init:679]: sde rsc init successfully done\n[    0.821697] [sde_rsc:sde_rsc_probe:1407]: sde rsc index:0 probed successfully\n[    0.822868] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-0\n[    0.822957] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-1\n[    0.823712] AXI: get_pdata(): Error: Client name not found\n[    0.823715] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.823717] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-0\n[    0.824674] msm-dsi-panel:[dsi_panel_parse_reset_sequence:1795] RESET SEQ LENGTH = 16\n[    0.824692] dsi_panel_bl_parse_hbm:1374: HBM modes list not found\n[    0.824699] msm-dsi-panel:[dsi_panel_parse_misc_features:1845] dsi_panel_parse_misc_features: ulps feature disabled\n[    0.824702] msm-dsi-panel:[dsi_panel_parse_misc_features:1851] dsi_panel_parse_misc_features: ulps during suspend feature disabled\n[    0.827060] msm-dsi-display:[dsi_display_get_boot_display] index = 0\n[    0.827063] msm-dsi-display:[dsi_display_get_boot_display] index = 1\n[    0.827439] register_client_adhoc:find path.src 1 dest 590\n[    0.827717] register_client_adhoc:Client handle 17 mdss_reg\n[    0.827743] register_client_adhoc:find path.src 22 dest 512\n[    0.827941] register_client_adhoc:find path.src 23 dest 512\n[    0.828117] register_client_adhoc:Client handle 18 mdss_sde\n[    0.828165] [drm:sde_dbg_init:3430] evtlog_status: enable:0, panic:1, dump:2\n[    0.828199] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops sde_rsc_comp_ops)\n[    0.828209] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops sde_wb_comp_ops)\n[    0.828585] soc:qcom,dsi-display@51 supply lab not found, using dummy regulator\n[    0.828612] dsi_backlight_register:716: LAB regulator found\n[    0.828705] msm-dsi-display:[dsi_display_bind] Successfully bind display panel 'dsi_s6e3fa7_sdc_1080p_cmd_display'\n[    0.828939] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display@51 (ops dsi_display_comp_ops)\n[    0.828962] [drm] mapped mdp address space @ffffff800eb00000\n[    0.828992] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: vbif_nrt_phys\n[    0.829041] [drm:_sde_kms_get_splash_data:3363] found continuous splash base address:9c000000 size:2400000\n[    0.830082] [drm:sde_kms_hw_init:3487] sde hardware revision:0x40010000\n[    0.831029] [drm:reg_dmav1_init_dspp_op_v4] *ERROR* invalid feature map 9 for feature 10\n[    0.831034] [drm:reg_dmav1_init_dspp_op_v4] *ERROR* invalid feature map 9 for feature 10\n[    0.836975] iommu: Adding device 506a000.qcom,gmu:gmu_user to group 15\n[    0.837235] iommu: Adding device 506a000.qcom,gmu:gmu_kernel to group 16\n[    0.837868] [drm:alloc_reg_dma_buf_v1] *ERROR* failed to get aspace\n[    0.837881] Failed to allocate reg dma, ret:18446744073709551594\n[    0.837889] [drm] Created domain mdp_ns [80000000,80000000] secure=0\n[    0.841768] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 17\n[    0.841862] register_client_adhoc:find path.src 26 dest 512\n[    0.842073] register_client_adhoc:Client handle 19 grp3d\n[    0.842505] [drm] probing device qcom,smmu_sde_sec\n[    0.842511] [drm] Created domain mdp_s [80000000,80000000] secure=1\n[    0.842564] register_client_adhoc:find path.src 26 dest 10036\n[    0.842701] register_client_adhoc:Client handle 20 cnoc\n[    0.843699] query_client_usecase_all: query_start\n[    0.843747] query_client_usecase_all: query_start\n[    0.845275] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 18\n[    0.845662] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 19\n[    0.845924] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure_alt to group 20\n[    0.846354] kgsl: _kgsl_iommu_cb_probe: dt: Unused context label gfx3d_secure_alt\n[    0.865668] [drm:sde_encoder_init:4689] [sde error]No vsync-source found in DT\n[    0.865938] [drm:sde_encoder_init:4689] [sde error]No vsync-source found in DT\n[    0.866002] [drm-dp]: dp_connector_get_info: invalid params\n[    0.866004] [drm:_sde_kms_setup_displays:1689] [sde error]dp get_info 0 failed\n[    0.867229] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    0.867231] [drm] No driver support for vblank timestamp query.\n[    0.868246] msm-dsi-panel:[dsi_panel_parse_topology:2452] default topology: lm: 1 comp_enc:0 intf: 1\n[    0.868303] msm-dsi-panel:[dsi_panel_parse_partial_update_caps:2543] partial update disabled as the property is not set\n[    0.868496] dsi-ctrl:[_dsi_ctrl_setup_isr] [DSI_0] IRQ 603 registered\n[    0.871720] llcc_slice_get_entry:can't find 11 usecase id\n[    0.885932] brd: module loaded\n[    0.909191] loop: module loaded\n[    0.910525] zram: Added device: zram0\n[    0.912231] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1400000\n[    0.912256] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.912262] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    0.912265] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    0.912346] register_client_adhoc:find path.src 125 dest 512\n[    0.912737] register_client_adhoc:Client handle 21 qseecom-noc\n[    0.912847] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    0.915008] misc access-metadata: registered 'metadata' 10:57, (1000@0x00000000a1c10000)\n[    0.915070] misc access-ramoops: registered 'ramoops' 10:56, (200000@0x00000000a1a10000)\n[    0.915309] register_client_adhoc:find path.src 125 dest 512\n[    0.915597] register_client_adhoc:Client handle 22 qcedev-noc\n[    0.916825] qce 1de0000.qcedev: QTI Crypto 5.4.1 device found @0x1de0000\n[    0.916833] qce 1de0000.qcedev: CE device = 0x0 IO base, CE = ffffff800ef40000 Consumer (IN) PIPE 6,\n               Producer (OUT) PIPE 7 IO base BAM = 0000000000000000\n               BAM IRQ 21 Engines Availability = 0x2011073\n[    0.917020] sps:BAM 0x0000000001dc4000 is registered.\n[    0.917171] sps:BAM 0x0000000001dc4000 (va:0xffffff800efc0000) enabled: ver:0x27, number of pipes:16\n[    0.917338] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 21\n[    0.922189] register_client_adhoc:find path.src 125 dest 512\n[    0.922553] register_client_adhoc:Client handle 23 qcrypto-noc\n[    0.923311] qcrypto 1de0000.qcrypto: QTI Crypto 5.4.1 device found @0x1de0000\n[    0.923318] qcrypto 1de0000.qcrypto: CE device = 0x0 IO base, CE = ffffff800f840000 Consumer (IN) PIPE 4,\n               Producer (OUT) PIPE 5 IO base BAM = 0000000000000000\n               BAM IRQ 21 Engines Availability = 0x2011073\n[    0.923566] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 21\n[    0.925564] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    0.925701] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    0.925792] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    0.925884] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    0.925997] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    0.926089] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    0.926185] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    0.926282] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    0.926375] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    0.926468] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    0.926560] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    0.926667] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    0.926765] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    0.926864] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    0.926955] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    0.927050] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    0.927145] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    0.927236] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    0.927335] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    0.927428] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    0.928637] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    0.930451] pn81a spi32766.0: pn81a_probe: nxp,clear-n invalid or missing in device tree\n[    0.930456] pn81a spi32766.0: pn81a_probe: device tree set '1-0028' as eSE power controller\n[    0.930508] pn81a spi32766.0: pn81a_probe: eSE is configured\n[    0.932230] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    0.934572] tun: Universal TUN/TAP device driver, 1.6\n[    0.934574] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    0.934619] PPP generic driver version 2.4.2\n[    0.934668] PPP BSD Compression module registered\n[    0.934671] PPP Deflate Compression module registered\n[    0.934693] PPP MPPE Compression module registered\n[    0.934697] NET: Registered protocol family 24\n[    0.934807] CLD80211: Initializing\n[    0.934933] usbcore: registered new interface driver rtl8150\n[    0.934963] usbcore: registered new interface driver r8152\n[    0.934986] usbcore: registered new interface driver asix\n[    0.935005] usbcore: registered new interface driver ax88179_178a\n[    0.935024] usbcore: registered new interface driver cdc_ether\n[    0.935050] usbcore: registered new interface driver cdc_ncm\n[    0.935055] CHRDEV \"uio\" major number 233 goes below the dynamic allocation range\n[    0.938188] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.939678] using PLL BIAS CTRL2 override 0x20\n[    0.939680] override BIAS_CTRL_2 has offest of 8\n[    0.939852] msm-qusb-phy-v2 88e2000.qusb: pinctrl not available\n[    0.942538] msm-dwc3 a600000.ssusb: unable to get dbm device\n[    0.944541] usbcore: registered new interface driver usb-storage\n[    0.944567] usbcore: registered new interface driver usb_ehset_test\n[    0.944587] usbcore: registered new interface driver lvs\n[    0.946040] msm_sharedmem: sharedmem_register_qmi: qmi init successful\n[    0.949228] logbuffer:  id:usbpd registered\n[    0.949403] logbuffer:  id:usbpd unregistered\n[    0.949415] qpnp-pdphy c440000.qcom,spmi:qcom,pm660@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    0.950428] mousedev: PS/2 mouse device common for all mice\n[    0.950593] usbcore: registered new interface driver xpad\n[    0.951734] fpc1020 soc:fp_fpc1020: found pin control fpc1020_reset_reset\n[    0.951737] fpc1020 soc:fp_fpc1020: found pin control fpc1020_reset_active\n[    0.951740] fpc1020 soc:fp_fpc1020: found pin control fpc1020_irq_active\n[    0.962725] fpc1020 soc:fp_fpc1020: IRQ after reset 1\n[    0.962728] fpc1020 soc:fp_fpc1020: fpc1020_probe: ok\n[    0.962782] fpc1020_init OK\n[    0.963166] keydebug_parse_dt: DT:key_down_delay=7000 dbg_fn_delay=2500 keys_down num_keys=1\n[    0.963168] keydebug_parse_dt: DT:keys_down=116\n[    0.964942] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: rtc core: registered qpnp_rtc as rtc0\n[    0.965219] i2c /dev entries driver\n[    0.965530] msm_vidc:  err: Failed to get platform resources\n[    0.965532] msm_vidc:  err: Failed to init core\n[    0.965544] msm_vidc_v4l2: probe of aa00000.qcom,vidc0 failed with error -22\n[    0.967305] i2c_geni 88c000.i2c: Bus frequency not specified, default to 400KHz.\n[    0.968058] i2c_geni a84000.i2c: Bus frequency not specified, default to 400KHz.\n[    0.968492] nq-nci 1-0028: nqx_probe: clkreq gpio not provided\n[    0.968768] nq-nci 1-0028: nqx_probe: probing NFCC NQxxx exited successfully\n[    0.970564] synaptics_dsx_i2c 2-0020: bus negotiator initialized: 00000000495923f1\n[    0.972313] iommu: Adding device aa00000.qcom,vidc1:non_secure_cb to group 21\n[    0.972783] iommu: Adding device aa00000.qcom,vidc1:secure_bitstream_cb to group 22\n[    0.974172] iommu: Adding device aa00000.qcom,vidc1:secure_pixel_cb to group 23\n[    0.974963] iommu: Adding device aa00000.qcom,vidc1:secure_non_pixel_cb to group 24\n[    0.977589] register_client_adhoc:find path.src 1 dest 590\n[    0.977901] register_client_adhoc:Client handle 24 sde_reg\n[    0.977983] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 25\n[    0.978156] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 26\n[    0.978362] register_client_adhoc:find path.src 25 dest 512\n[    0.978562] register_client_adhoc:Client handle 25 mdss_rotator\n[    0.978573] register_client_adhoc:find path.src 1 dest 590\n[    0.978751] register_client_adhoc:Client handle 26 mdss_rot_reg\n[    0.979113] No change in context(0==0), skip\n[    0.980459] sde_rotator_evtlog_create_debugfs: evtlog_status: enable:0, panic:1, dump:2\n[    0.981328] sde_rotator ae00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    0.983145] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    0.983176] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    0.984710] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 27\n[    0.985110] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 28\n[    0.985276] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 29\n[    0.985402] platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node camera_region@8ab00000\n[    0.985588] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 30\n[    0.985759] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 31\n[    0.986041] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_fd to group 32\n[    0.988466] register_client_adhoc:find path.src 1 dest 589\n[    0.988758] register_client_adhoc:Client handle 27 cam_ahb\n[    0.988880] register_client_adhoc:find path.src 136 dest 512\n[    0.989073] register_client_adhoc:Client handle 28 cam_hf_1_mnoc\n[    0.989209] register_client_adhoc:find path.src 146 dest 778\n[    0.989257] register_client_adhoc:Client handle 29 cam_hf_1_camnoc\n[    0.989360] register_client_adhoc:find path.src 145 dest 512\n[    0.989544] register_client_adhoc:Client handle 30 cam_hf_2_mnoc\n[    0.989673] register_client_adhoc:find path.src 147 dest 778\n[    0.989720] register_client_adhoc:Client handle 31 cam_hf_2_camnoc\n[    0.989821] register_client_adhoc:find path.src 137 dest 512\n[    0.990004] register_client_adhoc:Client handle 32 cam_sf_1_mnoc\n[    0.990185] register_client_adhoc:find path.src 148 dest 778\n[    0.990231] register_client_adhoc:Client handle 33 cam_sf_1_camnoc\n[    1.003492] CAM_WARN: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 309 No clk named ife_dsp_clk found. Dev acc4000.qcom,vfe-lite\n[    1.003497] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 107 option clk get failed\n[    1.006692] CAM_INFO: CAM-ISP: cam_isp_dev_probe: 122 Camera ISP probe complete\n[    1.008847] CAM_INFO: CAM: cam_res_mgr_probe: 681 Disable shared gpio support.\n[    1.013668] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 58 No GPIO found\n[    1.013677] CAM_INFO: CAM-SENSOR: cam_actuator_driver_platform_probe: 414 [LTC] pdev->name=ac4a000.qcom,cci:qcom,actuator@0\n[    1.015600] CAM_INFO: CAM-OIS: cam_ois_get_dt_data: 52 No GPIO found\n[    1.016545] CAM_ERR: CAM-ICP: cam_ipe_probe: 85 IPE1 hw idx = 1\n\n[    1.016555] cam-ipe: probe of ac91000.qcom,ipe1 failed with error -22\n[    1.019014] CAM_ERR: CAM-ICP: cam_icp_mgr_init_devs: 4281 no child device\n[    1.019797] CAM_WARN: CAM-SMMU: cam_smmu_create_add_handle_in_table: 605 Error: cam-secure already got handle 0x55644\n[    1.023380] CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 119 Camera JPEG probe complete\n[    1.034555] logbuffer:  id:smblib registered\n[    1.037005] Couldn't get temp USB port thermal zone rc=-22\n[    1.037334] Couldn't get temp USB port thermal zone rc=-22\n[    1.037926] Couldn't get temp USB port thermal zone rc=-22\n[    1.047565] QPNP SMB2 probed successfully usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    1.049101] google_charger: google,wlc-power-supply not defined\n[    1.049126] google_charger: successfully read charging profile:\n[    1.049128] google_charger: Profile constant charge limits:\n[    1.049131] google_charger: |T \\ V  4200  4300  4400\n[    1.049135] google_charger: | 0:10   875   300     0\n[    1.049138] google_charger: |10:20  1475   875   875\n[    1.049141] google_charger: |20:42  2950  2050  1475\n[    1.049143] google_charger: |42:46  2350  1475  1475\n[    1.049146] google_charger: |46:48  1475  1475     0\n[    1.049148] google_charger: |48:55   875     0     0\n[    1.052655] Couldn't get temp USB port thermal zone rc=-22\n[    1.052659] failed to get POWER_SUPPLY_PROP_TEMP from 'usb', ret=-61\n[    1.054752] input: synaptics_dsx as /devices/platform/soc/a84000.i2c/i2c-2/2-0020/input/input1\n[    1.058731] drv2624 0-005a: drv2624_i2c_probe enter\n[    1.058821] drv2624 0-005a: Looking up ti,irq-gpio property in node /soc/i2c@a88000/drv2624@5a failed -2\n[    1.058878] CHRDEV \"rmi\" major number 232 goes below the dynamic allocation range\n[    1.060570] Couldn't get temp USB port thermal zone rc=-22\n[    1.062344] drv2624 0-005a: drv2624_i2c_probe, ID status (0x3)\n[    1.065695] drv2624 0-005a: dev_init_platform_data, LRA = 172, drive_time=0x18\n[    1.068329] 17d41000.qcom,cpucc:qcom,limits-dcvs@0 supply isens_vref not found, using dummy regulator\n[    1.068390] msm_lmh_dcvs:limits_isens_vref_ldo_init Regulator:isens_vref settings read error:-22\n[    1.070242] drv2624 0-005a: drv2624 probe succeeded\n[    1.070912] i2c_geni a88000.i2c: i2c error :-107\n[    1.071014] i2c_geni a88000.i2c: i2c error :-107\n[    1.071112] i2c_geni a88000.i2c: i2c error :-107\n[    1.071211] i2c_geni a88000.i2c: i2c error :-107\n[    1.071215] I2C PMIC: i2c_pmic_read: i2c_pmic_read failed for 3 retries, rc = -107\n[    1.071217] I2C PMIC: i2c_pmic_determine_initial_status: Couldn't read irq data rc=-107\n[    1.071219] I2C PMIC: i2c_pmic_probe: Couldn't determine initial status rc=-107\n[    1.071278] i2c_pmic: probe of 0-0008 failed with error -107\n[    1.071640] i2c_geni a88000.i2c: i2c error :-107\n[    1.071774] i2c_geni a88000.i2c: i2c error :-107\n[    1.071873] i2c_geni a88000.i2c: i2c error :-107\n[    1.071972] i2c_geni a88000.i2c: i2c error :-107\n[    1.071974] I2C PMIC: i2c_pmic_read: i2c_pmic_read failed for 3 retries, rc = -107\n[    1.071976] I2C PMIC: i2c_pmic_determine_initial_status: Couldn't read irq data rc=-107\n[    1.071978] I2C PMIC: i2c_pmic_probe: Couldn't determine initial status rc=-107\n[    1.072014] i2c_pmic: probe of 0-000c failed with error -107\n[    1.075726] 17d41000.qcom,cpucc:qcom,limits-dcvs@1 supply isens_vref not found, using dummy regulator\n[    1.075776] msm_lmh_dcvs:limits_isens_vref_ldo_init Regulator:isens_vref settings read error:-22\n[    1.090444] softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)\n[    1.090566] device-mapper: uevent: version 1.0.3\n[    1.090677] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com\n[    1.091903] device-mapper: req-crypt: dm-req-crypt successfully initalized.\n\n[    1.092293] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in device tree\n[    1.092305] bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    1.092308] bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    1.092320] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    1.092322] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.092323] bt_power_populate_dt_pinfo: clock not provided in device tree\n[    1.092784] CHRDEV \"bt\" major number 231 goes below the dynamic allocation range\n[    1.093228] EDAC DEVICE0: Giving out device to module soc:kryo3xx-erp controller cache: DEV soc:kryo3xx-erp (INTERRUPT)\n[    1.094431] sdhci: Secure Digital Host Controller Interface driver\n[    1.094432] sdhci: Copyright(c) Pierre Ossman\n[    1.094435] sdhci-pltfm: SDHCI platform and OF driver helper\n[    1.095234] usbcore: registered new interface driver usbhid\n[    1.095236] usbhid: USB HID core driver\n[    1.095361] ashmem: initialized\n[    1.095365] ipa_ut ipa_ut_module_init:1044 Loading IPA test module...\n[    1.095545] qpnp_coincell_charger_show_state: enabled=Y, voltage=3200 mV, resistance=2100 ohm\n[    1.096415] bimc-bwmon 1436400.qcom,cpu-bwmon: BW HWmon governor registered.\n[    1.096895] arm-memlat-mon soc:qcom,cpu0-memlat-mon: Memory Latency governor registered.\n[    1.096926] arm-memlat-mon soc:qcom,cpu6-memlat-mon: Memory Latency governor registered.\n[    1.096960] arm-memlat-mon soc:qcom,cpu0-l3lat-mon: Memory Latency governor registered.\n[    1.096989] arm-memlat-mon soc:qcom,cpu6-l3lat-mon: Memory Latency governor registered.\n[    1.097022] arm-memlat-mon soc:qcom,devfreq-compute0: Compute governor registered.\n[    1.097048] arm-memlat-mon soc:qcom,devfreq-compute6: Compute governor registered.\n[    1.097926] register_client_adhoc:find path.src 1 dest 512\n[    1.098248] register_client_adhoc:Client handle 34 soc:qcom,cpubw\n[    1.099721] register_client_adhoc:find path.src 1 dest 512\n[    1.099971] register_client_adhoc:Client handle 35 soc:qcom,memlat-cpu0\n[    1.100282] register_client_adhoc:find path.src 1 dest 512\n[    1.100460] register_client_adhoc:Client handle 36 soc:qcom,memlat-cpu6\n[    1.100655] register_client_adhoc:find path.src 139 dest 627\n[    1.100786] register_client_adhoc:Client handle 37 soc:qcom,snoc_cnoc_keepalive\n[    1.101040] register_client_adhoc:find path.src 1 dest 512\n[    1.101222] register_client_adhoc:Client handle 38 soc:qcom,mincpubw\n[    1.101415] register_client_adhoc:find path.src 1 dest 512\n[    1.101600] register_client_adhoc:Client handle 39 soc:qcom,mincpu0bw\n[    1.101799] register_client_adhoc:find path.src 1 dest 512\n[    1.101972] register_client_adhoc:Client handle 40 soc:qcom,mincpu6bw\n[    1.102365] register_client_adhoc:find path.src 26 dest 512\n[    1.102482] register_client_adhoc:Client handle 41 soc:qcom,gpubw\n[    1.105020] usbcore: registered new interface driver snd-usb-audio\n[    1.106009] qcom_ice_get_pdevice: found ice device ffffffe16fd69800\n[    1.106011] qcom_ice_get_pdevice: matching platform device ffffffe1760e4800\n[    1.106396] register_client_adhoc:find path.src 150 dest 512\n[    1.106713] register_client_adhoc:find path.src 1 dest 782\n[    1.106903] register_client_adhoc:Client handle 42 sdhc1\n[    1.107789] qcom_ice 7c8000.sdcc1ice: QC ICE 3.1.75 device found @0xffffff800fa08000\n[    1.108519] mmc0: SDHCI controller on 7c4000.sdhci [7c4000.sdhci] using 64-bit ADMA in CMDQ mode\n[    1.128847] msm-dai-q6-tdm soc:com,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: could not find pctldev for node /soc/lpi_pinctrl@62b40000/sec_tdm/sec_tdm_active, deferring probe\n[    1.135332] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.136169] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    1.137765] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.141232] [TP] fwu_start_reflash: Start of reflash process\n[    1.142254] 0-0041 supply VA not found, using dummy regulator\n[    1.142307] 0-0041 supply VP not found, using dummy regulator\n[    1.170731] i2c_geni a84000.i2c: i2c error :-107\n[    1.170737] synaptics_dsx_i2c 2-0020: synaptics_rmi4_i2c_read: I2C retry 1\n[    1.180369] cs35l36 0-0041: Cirrus Logic CS35L36, Revision: B0\n[    1.182950] 0-0040 supply VA not found, using dummy regulator\n[    1.182985] 0-0040 supply VP not found, using dummy regulator\n[    1.197832] mmc0: Out-of-interrupt timeout is 100[ms]\n[    1.197835] mmc0: eMMC FW version: 0x30\n[    1.197837] mmc0: CMDQ supported: depth: 16\n[    1.197839] mmc0: cache barrier support 1 flush policy 1\n[    1.201490] mmc0: unspecified timeout for CMD6 - use generic\n[    1.201613] cmdq_host_alloc_tdl: desc_size: 1024 data_sz: 63488 slot-sz: 32\n[    1.201857] mmc0: CMDQ enabled on card\n[    1.201867] mmc0: new HS400 Enhanced strobe MMC card at address 0001\n[    1.204545] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0x3f) latency=-1\n[    1.204549] sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xc0) latency=-1\n[    1.204665] mmcblk0: mmc0:0001 hC8aP> 58.2 GiB \n[    1.205911] mmcblk0rpmb: mmc0:0001 hC8aP> partition 3 16.0 MiB\n[    1.207105]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42 p43 p44 p45 p46 p47 p48 p49 p50 p51 p52 p53 p54 p55 p56 p57 p58 p59 p60 p61 p62 p63 p64 p65 p66 p67 p68 p69 p70 p71 p72\n[    1.219116] cs35l36 0-0040: Cirrus Logic CS35L36, Revision: B0\n[    1.220344] msm-cdc-pinctrl soc:cdc_pdm_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/cdc_pdm_clk_active, deferring probe\n[    1.220358] msm-cdc-pinctrl soc:cdc_comp_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/cdc_pdm_rx0_comp_active, deferring probe\n[    1.220369] msm-cdc-pinctrl soc:cdc_dmic_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic12_gpios_active, deferring probe\n[    1.261301] [TP] FW: synaptics_0.img, id 0x0\n[    1.261315] [TP] synaptics_rmi4_reset_device from synaptics_fw_updater+0x564/0x20a0, rebuild = 0\n[    1.276655] rt5514 0-0057: Register rt5514 success\n[    1.276866] rt5514 spi32765.0: Detect gpio 126 property /soc/spi@888000/mnh-spi@0\n[    1.276910] CRUS_SP_INIT: initializing misc device\n[    1.277242] CRUS_SP: initializing platform device\n[    1.277245] CRUS_SP: usecase[0] = Playback\n[    1.280954] CHRDEV \"wcd-dsp-glink\" major number 230 goes below the dynamic allocation range\n[    1.281854] GACT probability NOT on\n[    1.281868] Mirror/redirect action on\n[    1.281879] netem: version 1.3\n[    1.281882] u32 classifier\n[    1.281883]     Actions configured\n[    1.281890] Netfilter messages via NETLINK v0.30.\n[    1.282029] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    1.282116] ctnetlink v0.93: registering with nfnetlink.\n[    1.282430] xt_time: kernel timezone is -0000\n[    1.282486] IPv4 over IPsec tunneling driver\n[    1.282903] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    1.283036] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    1.283132] Initializing XFRM netlink socket\n[    1.283143] IPsec XFRM device driver\n[    1.283338] NET: Registered protocol family 10\n[    1.285166] mip6: Mobile IPv6\n[    1.285177] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    1.285577] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    1.286012] NET: Registered protocol family 17\n[    1.286023] NET: Registered protocol family 15\n[    1.286039] Ebtables v2.0 registered\n[    1.286081] l2tp_core: L2TP core driver, V2.0\n[    1.286087] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    1.286090] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    1.286100] l2tp_netlink: L2TP netlink interface\n[    1.286122] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    1.286123] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    1.287152] NET: Registered protocol family 27\n[    1.287772] actuator_regulator: supplied by pm660l_l3\n[    1.288144] camera_ldo: supplied by pm660_s6\n[    1.288486] camera_rear_ldo: supplied by pm660_s6\n[    1.295392] minidump-id not found for adsp\n[    1.297665] google_charger: failed to get \"bms\" power supply\n[    1.297850] subsys-pil-tz 62400000.qcom,lpass: for adsp segments only will be dumped.\n[    1.299558] minidump-id not found for cdsp\n[    1.299743] subsys-pil-tz 8300000.qcom,turing: for cdsp segments only will be dumped.\n[    1.300344] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    1.300613] platform 4080000.qcom,mss:qcom,mba-mem@0: assigned reserved memory node pil_mba_region@0x93c00000\n[    1.300914] pil-q6v5-mss 4080000.qcom,mss: for modem segments only will be dumped.\n[    1.300953] pil-q6v5-mss 4080000.qcom,mss: for md_modem segments only will be dumped.\n[    1.305512] sps:BAM 0x000000000a704000 is registered.\n[    1.305859] register_client_adhoc:find path.src 61 dest 512\n[    1.306189] register_client_adhoc:find path.src 61 dest 676\n[    1.306347] register_client_adhoc:find path.src 1 dest 583\n[    1.306531] register_client_adhoc:Client handle 43 usb0\n[    1.306629] Invalid index Defaulting curr to 0\n[    1.306849] msm-dwc3 a600000.ssusb: Not attached\n[    1.308593] ipa_rm ipa_rm_delete_resource:155 resource does not exist\n[    1.308600] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    1.308606] ipa_rm ipa_rm_delete_resource:155 resource does not exist\n[    1.308610] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    1.310643] logbuffer:  id:usbpd registered\n[    1.325649] qcom,fg-gen3 c440000.qcom,spmi:qcom,pm660@0:qpnp,fg: thermal_zone_of_sensor_register() failed rc:-19\n[    1.326708] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.327586] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    1.327794] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.329136] ipa ipa3_smp2p_probe:6348 failed to enable irq wake\n[    1.330140] FG: fg_psy_get_property: unsupported property 4\n[    1.330441] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.334690] sps:BAM 0x000000000a704000 is registered.\n[    1.335035] register_client_adhoc:find path.src 61 dest 512\n[    1.335364] register_client_adhoc:find path.src 61 dest 676\n[    1.335527] register_client_adhoc:find path.src 1 dest 583\n[    1.335704] register_client_adhoc:Client handle 43 usb0\n[    1.336396] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.337269] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    1.337475] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.338546] Registered cp15_barrier emulation handler\n[    1.338571] Registered setend emulation handler\n[    1.338788] registered taskstats version 1\n[    1.340935] FG: fg_get_time_to_empty: Error in getting capacity, rc=-16\n[    1.341824] qusb_phy_get_tune1_param(): num_of_bits:3 bit_pos:25\n[    1.341827] qusb_phy_get_tune1_param(): final tune1 value: 119\n[    1.342131] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode\n[    1.342873] msm-dwc3 a600000.ssusb: DWC3 in low power mode\n[    1.344302] niap_test_hash: hmac(sha512) passed\n[    1.344313] niap_test_hash: sha256 passed\n[    1.345489] niap_test_cipher: cbc(aes) encryption passed\n[    1.345501] niap_test_cipher: cbc(aes) decryption passed\n[    1.403530] spss_utils [spss_init]: spss-utils driver Ver 2.0 30-Mar-2017.\n[    1.405376] ADSPRPC: Secure VMID = 22\n[    1.405379] ADSPRPC: Secure VMID = 37\n[    1.405521] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 33\n[    1.406267] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 34\n[    1.406710] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 35\n[    1.407115] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 36\n[    1.407504] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 37\n[    1.407894] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 38\n[    1.408285] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7 to group 39\n[    1.409392] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8 to group 40\n[    1.410786] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 41\n[    1.411181] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 42\n[    1.411558] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 43\n[    1.411943] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 44\n[    1.413218] CHRDEV \"adsprpc-smd\" major number 229 goes below the dynamic allocation range\n[    1.414600] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.415439] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    1.415658] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.416403] iommu: Adding device 62e40000.slim:qcom,iommu_slim_ctrl_cb to group 45\n[    1.417345] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.418108] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    1.418307] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.421401] [KEY] gpio_keys_setup_key, error=-524, debounce(15, 15)\n[    1.421492] [KEY] keycode = 115, gpio = 1269, irq = 104\n[    1.421597] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input2\n[    1.421619] [KEY] gpio_keys_gpio_report_event: key 1-73, (1269) changed to 0\n[    1.421909] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: setting system clock to 1970-01-08 04:58:28 UTC (622708)\n[    1.422494] CAM_ERR: CAM_CRM: cam_cci_assign_fops: 357 Invalid args sd node: ffffffe16fec2bb0\n[    1.422870] lpm_levels_of: idx 1 1074\n[    1.422872] lpm_levels_of: idx 2 1773\n[    1.422874] lpm_levels_of: idx 3 2589\n[    1.422876] lpm_levels_of: idx 2 3285\n[    1.422877] lpm_levels_of: idx 3 3748\n[    1.422879] lpm_levels_of: idx 3 4000\n[    1.422934] lpm_levels_of: idx 1 1293\n[    1.422935] lpm_levels_of: idx 2 2206\n[    1.422936] lpm_levels_of: idx 3 2896\n[    1.422938] lpm_levels_of: idx 2 4581\n[    1.422939] lpm_levels_of: idx 3 5051\n[    1.422940] lpm_levels_of: idx 3 5554\n[    1.423145] lpm_levels: register_cluster_lpm_stats()\n[    1.423236] lpm_levels: register_cluster_lpm_stats()\n[    1.424647] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.425508] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    1.425716] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.428397] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.429226] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    1.429426] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.432028] rmnet_ipa3 started initialization\n[    1.432469] RNDIS_IPA module is loaded.\n[    1.433802] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.434653] sdm660-asoc-snd soc:sound: ASoC: platform (null) not registered\n[    1.434865] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.435230] msm_bus_late_init: Remove handoff bw requests\n[    1.436120] actuator_regulator: disabling\n[    1.436123] camera_ldo: disabling\n[    1.436125] camera_rear_ldo: disabling\n[    1.436127] ext_5v_boost: disabling\n[    1.436130] cam_vio_ldo: disabling\n[    1.436133] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    1.436396] ALSA device list:\n[    1.436398]   No soundcards found.\n[    1.436442] Warning: unable to open an initial console.\n[    1.437918] Freeing unused kernel memory: 8192K\n[    1.540144] google_charger: google_charger_init_work done\n[    1.540164] google,charger soc:google,charger: TEMP-DEFEND not enabled\n[    1.540168] google_charger: MSC_BD: trig volt=4270000,4250000 temp=350,time=21600 drainto=80,79 resume=280,50 290,14400\n[    2.503163] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    2.503381] cpu1 \n[    2.503448] cpu6 \n[    2.503501] \n               Offline CPUs: \n[    2.507142] cpu1 \n[    2.524338] CPU0: update max cpu_capacity 517\n[    2.529077] cpu2 \n[    2.561085] google_charger: no power source detected, disabling charging\n[    2.565656] cpu3 \n[    2.628802] cpu4 \n[    2.669215] cpu5 \n[    2.710859] of_batterydata_get_best_profile: s4-47k found\n[    2.710869] FG: fg_get_batt_profile: battery fastchg current unavailable, rc:-22\n[    2.724950] cpu6 \n[    2.769767] cpu7 \n\n[    7.826426] Sampling power every 1000 ms\n               Baseline power usage: \n[   64.484639] synaptics_dsx_i2c 2-0020: fwu_start_reflash: Firmware image synaptics_0.img not available\n[   64.484652] [TP] fwu_start_reflash: End of reflash process\n[   64.484860] drv2624 0-005a: drv2624_firmware_load, ERROR!! firmware not found\n[   83.016451] CPU1: Booted secondary processor [517f803c]\n[   84.028623] 445 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 576 748 998 1209 1324 1516 1612 1708\n               \n                300: \n[  305.120580] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120624] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121676] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121685] ADSPRPC: Audio PD restart notifier locator down\n[  305.121750] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121757] ADSPRPC: Audio PD restart notifier locator down\n[  305.121794] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121815] audio_notifer_reg_service: service SSR_ADSP is in use\n[  362.084390]  1114     3.7 C/MHz     43 mW   11.6 J   25.8 I/mJ   269.4 s\n                576: \n[  510.533640]  2138     3.7 C/MHz     51 mW    7.1 J   42.2 I/mJ   140.3 s\n                748: \n[  626.883912]  2780     3.7 C/MHz     67 mW    7.3 J   41.3 I/mJ   107.9 s\n                998: \n[  716.147703]  3706     3.7 C/MHz     73 mW    5.9 J   51.1 I/mJ    80.9 s\n               1209: \n[  791.380675]  4490     3.7 C/MHz     86 mW    5.7 J   52.2 I/mJ    66.8 s\n               1324: \n[  860.599201]  4918     3.7 C/MHz     90 mW    5.5 J   54.6 I/mJ    61.0 s\n               1516: \n[  922.802544]  5631     3.7 C/MHz    103 mW    5.5 J   54.9 I/mJ    53.3 s\n               1612: \n[  981.996111]  5987     3.7 C/MHz    109 mW    5.5 J   55.0 I/mJ    50.1 s\n               1708: \n[ 1038.215517] CPU6: Booted secondary processor [516f802d]\n[ 1039.227150]  6344     3.7 C/MHz    126 mW    5.9 J   50.5 I/mJ    47.3 s\n               \n               \n               ===== CPU 6 =====\n               Frequencies: 300 652 825 979 1132 1363 1536 1747 1843 1996\n               \n                300: \n[ 1208.922324]  1868     6.2 C/MHz     53 mW    8.5 J   35.2 I/mJ   160.6 s\n                652: \n[ 1291.316046]  4073     6.2 C/MHz     96 mW    7.1 J   42.4 I/mJ    73.7 s\n                825: \n[ 1358.664464]  5132     6.2 C/MHz    117 mW    6.9 J   43.7 I/mJ    58.5 s\n                979: \n[ 1416.981623]  6099     6.2 C/MHz    151 mW    7.4 J   40.4 I/mJ    49.2 s\n               1132: \n[ 1468.277630]  7071     6.2 C/MHz    207 mW    8.8 J   34.1 I/mJ    42.4 s\n               1363: \n[ 1512.543451]  8482     6.2 C/MHz    235 mW    8.3 J   36.1 I/mJ    35.4 s\n               1536: \n[ 1552.799859]  9578     6.2 C/MHz    287 mW    9.0 J   33.3 I/mJ    31.3 s\n               1747: \n[ 1589.041933] 10892     6.2 C/MHz    340 mW    9.4 J   32.0 I/mJ    27.6 s\n               1843: \n[ 1624.276627] 11471     6.2 C/MHz    368 mW    9.6 J   31.1 I/mJ    26.2 s\n               1996: \n[ 1657.545714] 12425     6.2 C/MHz    438 mW   10.6 J   28.3 I/mJ    24.2 s\n               \n               \n               Benchmark finished!\n[ 1657.582771] \n               real\t27m36.005s\n               user\t23m28.312s\n               sys\t0m1.229s\n"
  },
  {
    "path": "results/sdm670/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  4:       9738   PDC-GIC  19 Level     arch_timer\n  6:     167912   PDC-GIC  38 Level     arch_mem_timer\n  7:          0   PDC-GIC 483 Edge      smp2p\n  8:          0   PDC-GIC 204 Edge      smp2p\n  9:          0   PDC-GIC 608 Edge      smp2p\n 11:          0   PDC-GIC 636 Level     i2c_geni\n 12:          0   PDC-GIC 633 Level     spi_geni\n 13:          0   PDC-GIC 635 Level     spi_geni\n 14:          0   PDC-GIC 640 Level     spi_geni\n 16:        848   PDC-GIC 386 Level     i2c_geni\n 17:        275   PDC-GIC 387 Level     i2c_geni\n 19:          0   PDC-GIC 206 Level     msm_vidc\n 20:          0   PDC-GIC 115 Edge      msm_drm\n 21:          0   PDC-GIC 304 Level     sps\n 22:          0   PDC-GIC 538 Level     tsens-upper-lower\n 23:          0   PDC-GIC 540 Level     tsens-critical\n 24:          0   PDC-GIC 539 Level     tsens-upper-lower\n 25:          0   PDC-GIC 541 Level     tsens-critical\n 26:          0   PDC-GIC 323 Level     ngd_slim_irq\n 28:          0   PDC-GIC  32 Edge      apps_wdog_bark\n 56:          0   PDC-GIC  22 Level     KRYO3XX L1-L2 ECC FAULTIRQ\n 59:          0   PDC-GIC  67 Level     KRYO3XX L3-SCU ECC FAULTIRQ\n 60:         12   PDC-GIC 421 Edge      qcom,qmp-aop\n 61:          0   PDC-GIC 481 Edge      qcom,glink-smem-native-xprt-modem\n 62:          0   PDC-GIC 202 Edge      qcom,glink-smem-native-xprt-adsp\n 63:          0   PDC-GIC 606 Edge      qcom,glink-smem-native-xprt-cdsp\n 65:          0   PDC-GIC 524 Level     eud_irq\n 67:        248   PDC-GIC  37 Level     apps_rsc\n 68:          0   PDC-GIC 161 Level     display_rsc\n 70:          0  pmic_arb 8388615 Edge      qpnp_kpdpwr_status\n 71:          0  pmic_arb 8454151 Edge      qpnp_resin_status\n 72:          0  pmic_arb 8585223 Edge      qpnp_kpdpwr_bark\n 75:          0  pmic_arb 37748761 Edge      pm660_tz\n 84:         21  pmic_arb 51380252 Edge      qpnp_vadc_interrupt\n 85:          0  pmic_arb 24117268 Edge      sig-tx\n 86:          0  pmic_arb 24182804 Edge      sig-rx\n 87:          0  pmic_arb 24248340 Edge      msg-tx\n 88:          0  pmic_arb 24313876 Edge      msg-rx\n 89:          0  pmic_arb 24379412 Edge      msg-tx-failed\n 90:          0  pmic_arb 24444948 Edge      msg-tx-discarded\n 91:          0  pmic_arb 24510484 Edge      msg-rx-discarded\n 92:          0  pmic_arb 54525982 Level     qpnp_adc_tm_interrupt\n 93:          0  pmic_arb 69206054 Edge      bcl-high-ibat\n 95:          0  pmic_arb 69337126 Edge      bcl-low-vbat\n 98:          0  pmic_arb 574619778 Edge      pm660l_tz\n104:          0  pmic_arb 744489106 Edge      volume_up\n107:          0  pmic_arb 1026556093 Edge      qpnp_flash_led_fault_irq\n108:          0  pmic_arb 1026752701 Edge      qpnp_flash_led_all_ramp_down_done_irq\n109:          0  pmic_arb 1026818237 Edge      qpnp_flash_led_all_ramp_up_done_irq\n125:          0   PDC-GIC 194 Edge      adsp\n128:          0   PDC-GIC 298 Edge      modem\n129:          0   PDC-GIC 610 Edge      cdsp\n130:         61   PDC-GIC 673 Edge      mmc0\n131:          2   PDC-GIC 676 Edge      7c4000.sdhci\n157:          0  msmgpio-dc  10 Edge      TE_GPIO\n173:          0  msmgpio-dc  26 Edge      spi32764.0\n191:          0  msmgpio-dc  44 Level     nq-nci\n226:          0  msmgpio-dc  79 Level     cs35l36\n227:          0  msmgpio-dc  80 Level     cs35l36\n268:          1  msmgpio-dc 121 Edge      soc:fp_fpc1020\n272:          0  msmgpio-dc 125 Level     synaptics_dsx\n374:          0   PDC-GIC 261 Level     arm-smmu global fault\n375:          0   PDC-GIC 263 Level     arm-smmu global fault\n376:          0   PDC-GIC 396 Level     arm-smmu-context-fault\n377:          0   PDC-GIC 397 Level     arm-smmu-context-fault\n378:          0   PDC-GIC 398 Level     arm-smmu-context-fault\n384:          0   PDC-GIC  97 Level     arm-smmu global fault\n387:          0   PDC-GIC 130 Level     arm-smmu-context-fault\n388:          0   PDC-GIC 131 Level     arm-smmu-context-fault\n389:          0   PDC-GIC 132 Level     arm-smmu-context-fault\n390:          0   PDC-GIC 133 Level     arm-smmu-context-fault\n391:          0   PDC-GIC 134 Level     arm-smmu-context-fault\n392:          0   PDC-GIC 135 Level     arm-smmu-context-fault\n393:          0   PDC-GIC 136 Level     arm-smmu-context-fault\n394:          0   PDC-GIC 137 Level     arm-smmu-context-fault\n395:          0   PDC-GIC 138 Level     arm-smmu-context-fault\n396:          0   PDC-GIC 139 Level     arm-smmu-context-fault\n397:          0   PDC-GIC 140 Level     arm-smmu-context-fault\n398:          0   PDC-GIC 141 Level     arm-smmu-context-fault\n399:          0   PDC-GIC 142 Level     arm-smmu-context-fault\n400:          0   PDC-GIC 143 Level     arm-smmu-context-fault\n401:          0   PDC-GIC 144 Level     arm-smmu-context-fault\n402:          0   PDC-GIC 145 Level     arm-smmu-context-fault\n403:          0   PDC-GIC 146 Level     arm-smmu-context-fault\n404:          0   PDC-GIC 147 Level     arm-smmu-context-fault\n405:          0   PDC-GIC 148 Level     arm-smmu-context-fault\n406:          0   PDC-GIC 149 Level     arm-smmu-context-fault\n407:          0   PDC-GIC 150 Level     arm-smmu-context-fault\n408:          0   PDC-GIC 213 Level     arm-smmu-context-fault\n409:          0   PDC-GIC 214 Level     arm-smmu-context-fault\n410:          0   PDC-GIC 215 Level     arm-smmu-context-fault\n411:          0   PDC-GIC 216 Level     arm-smmu-context-fault\n412:          0   PDC-GIC 217 Level     arm-smmu-context-fault\n413:          0   PDC-GIC 218 Level     arm-smmu-context-fault\n414:          0   PDC-GIC 219 Level     arm-smmu-context-fault\n415:          0   PDC-GIC 220 Level     arm-smmu-context-fault\n416:          0   PDC-GIC 221 Level     arm-smmu-context-fault\n417:          0   PDC-GIC 222 Level     arm-smmu-context-fault\n418:          0   PDC-GIC 223 Level     arm-smmu-context-fault\n419:          0   PDC-GIC 224 Level     arm-smmu-context-fault\n449:          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n450:          0   PDC-GIC 162 Edge      pwr_event_irq\n451:          0   PDC-GIC 518 Level     ss_phy_irq\n452:          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n453:          0   PDC-GIC 332 Level     kgsl-3d0\n454:          0   PDC-GIC 336 Level     HFI\n455:          0   PDC-GIC 337 Level     GMU\n456:          0   PDC-GIC 509 Edge      csiphy\n457:          0   PDC-GIC 510 Edge      csiphy\n458:          0   PDC-GIC 511 Edge      csiphy\n459:          0   PDC-GIC 492 Edge      cci\n460:          0   PDC-GIC 491 Edge      cpas_camnoc\n461:          1   PDC-GIC 493 Edge      cpas-cdm\n462:          0   PDC-GIC 496 Edge      csid\n463:          2   PDC-GIC 497 Edge      ife\n464:          0   PDC-GIC 498 Edge      csid\n465:          2   PDC-GIC 499 Edge      ife\n466:          0   PDC-GIC 500 Edge      csid-lite\n467:          2   PDC-GIC 501 Edge      ife-lite\n468:          0   PDC-GIC 495 Edge      a5\n469:          0   PDC-GIC 506 Edge      jpeg\n470:          0   PDC-GIC 507 Edge      jpegdma\n471:          2   PDC-GIC 494 Edge      fd\n472:          1   PDC-GIC 508 Edge      lrme\n473:          0   PDC-GIC  64 Level     limits_sensor-00\n474:          0   PDC-GIC  65 Level     limits_sensor-01\n603:          0       sde   4 Edge      dsi_ctrl\n604:          0  pmic_arb 101777466 Edge      qpnp_rtc_alarm\n605:          0       sde   2 Edge      sde_rotator_r3\n606:          0  pmic_arb 16777229 Edge      chg-error\n607:          0  pmic_arb 16842765 Edge      chg-state-change\n611:          0  pmic_arb 17825806 Edge      otg-fail\n612:          0  pmic_arb 17891342 Edge      otg-overcurrent\n613:          0  pmic_arb 17956878 Edge      otg-oc-dis-sw-sts\n614:          0  pmic_arb 18022414 Edge      testmode-change-detect\n615:          0  pmic_arb 18874383 Edge      bat-temp\n616:          0  pmic_arb 18939919 Edge      bat-ocp\n617:          0  pmic_arb 19005455 Edge      bat-ov\n618:          0  pmic_arb 19070991 Edge      bat-low\n619:          0  pmic_arb 19136527 Edge      bat-therm-or-id-missing\n620:          0  pmic_arb 19202063 Edge      bat-terminal-missing\n621:          0  pmic_arb 19922960 Edge      usbin-collapse\n622:          0  pmic_arb 19988496 Edge      usbin-lt-3p6v\n623:          0  pmic_arb 20054032 Edge      usbin-uv\n624:          0  pmic_arb 20119568 Edge      usbin-ov\n625:          0  pmic_arb 20185104 Edge      usbin-plugin\n626:          0  pmic_arb 20250640 Edge      usbin-src-change\n627:          0  pmic_arb 20316176 Edge      usbin-icl-change\n628:          0  pmic_arb 20381712 Edge      type-c-change\n629:          0  pmic_arb 20971537 Edge      dcin-collapse\n630:          0  pmic_arb 21037073 Edge      dcin-lt-3p6v\n631:          0  pmic_arb 21102609 Edge      dcin-uv\n632:          0  pmic_arb 21168145 Edge      dcin-ov\n633:          0  pmic_arb 21233681 Edge      dcin-plugin\n634:          0  pmic_arb 21299217 Edge      div2-en-dg\n635:          0  pmic_arb 21364753 Edge      dcin-icl-change\n637:          0  pmic_arb 23134227 Edge      wdog-bark\n638:          0  pmic_arb 23199763 Edge      aicl-fail\n639:          0  pmic_arb 23265299 Edge      aicl-done\n640:          0  pmic_arb 23330835 Edge      high-duty-cycle\n641:          0  pmic_arb 23396371 Edge      input-current-limiting\n642:          0  pmic_arb 23461907 Edge      temperature-change\n643:          0  pmic_arb 23527443 Edge      switcher-power-ok\n644:          0  smp2p_gpio   0 Edge      adsp\n645:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n646:          0  smp2p_gpio   2 Edge      adsp\n647:          0  smp2p_gpio   3 Edge      adsp\n676:          0  smp2p_gpio   0 Edge      ipa_smp2p_clk_vote\n708:          0  smp2p_gpio   0 Edge      modem\n709:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n710:          0  smp2p_gpio   2 Edge      modem\n711:          0  smp2p_gpio   3 Edge      modem\n740:          0  smp2p_gpio   0 Edge      cdsp\n741:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n742:          0  smp2p_gpio   2 Edge      cdsp\n743:          0  smp2p_gpio   3 Edge      cdsp\n900:          0   PDC-GIC 165 Edge      dwc3\n902:          1  pmic_arb 67108900 Edge      soc-update\n903:          0  pmic_arb 67174436 Edge      soc-ready\n904:          0  pmic_arb 67239972 Edge      bsoc-delta\n905:         25  pmic_arb 67305508 Edge      msoc-delta\n906:          1  pmic_arb 67371044 Edge      msoc-low\n907:          0  pmic_arb 67436580 Edge      msoc-empty\n908:          0  pmic_arb 67502116 Edge      msoc-high\n909:          0  pmic_arb 67567652 Edge      msoc-full\n910:          0  pmic_arb 68157477 Edge      vbatt-pred-delta\n911:          0  pmic_arb 68223013 Edge      vbatt-low\n912:          0  pmic_arb 68288549 Edge      esr-delta\n913:          0  pmic_arb 68354085 Edge      batt-missing\n914:         12  pmic_arb 68550693 Edge      batt-temp-delta\n915:        885  pmic_arb 71303208 Edge      ima-rdy\n916:          0  pmic_arb 71368744 Edge      mem-xcp\n917:          0  pmic_arb 71434280 Edge      dma-grant\nIPI0:       142       Rescheduling interrupts\nIPI1:         9       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       Timer broadcast interrupts\nIPI4:     82185       IRQ work interrupts\nIPI5:         0       CPU wake-up interrupts\nIPI6:         0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm670/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  4:        494          2          2          2          2          2          2          1   PDC-GIC  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   PDC-GIC  38 Level     arch_mem_timer\n  7:          0          0          0          0          0          0          0          0   PDC-GIC 483 Edge      smp2p\n  8:          0          0          0          0          0          0          0          0   PDC-GIC 204 Edge      smp2p\n  9:          0          0          0          0          0          0          0          0   PDC-GIC 608 Edge      smp2p\n 11:          0          0          0          0          0          0          0          0   PDC-GIC 636 Level     i2c_geni\n 12:          0          0          0          0          0          0          0          0   PDC-GIC 633 Level     spi_geni\n 13:          0          0          0          0          0          0          0          0   PDC-GIC 635 Level     spi_geni\n 14:          0          0          0          0          0          0          0          0   PDC-GIC 640 Level     spi_geni\n 16:        848          0          0          0          0          0          0          0   PDC-GIC 386 Level     i2c_geni\n 17:        275          0          0          0          0          0          0          0   PDC-GIC 387 Level     i2c_geni\n 19:          0          0          0          0          0          0          0          0   PDC-GIC 206 Level     msm_vidc\n 20:          0          0          0          0          0          0          0          0   PDC-GIC 115 Edge      msm_drm\n 21:          0          0          0          0          0          0          0          0   PDC-GIC 304 Level     sps\n 22:          0          0          0          0          0          0          0          0   PDC-GIC 538 Level     tsens-upper-lower\n 23:          0          0          0          0          0          0          0          0   PDC-GIC 540 Level     tsens-critical\n 24:          0          0          0          0          0          0          0          0   PDC-GIC 539 Level     tsens-upper-lower\n 25:          0          0          0          0          0          0          0          0   PDC-GIC 541 Level     tsens-critical\n 26:          0          0          0          0          0          0          0          0   PDC-GIC 323 Level     ngd_slim_irq\n 28:          0          0          0          0          0          0          0          0   PDC-GIC  32 Edge      apps_wdog_bark\n 56:          0          0          0          0          0          0          0          0   PDC-GIC  22 Level     KRYO3XX L1-L2 ECC FAULTIRQ\n 59:          0          0          0          0          0          0          0          0   PDC-GIC  67 Level     KRYO3XX L3-SCU ECC FAULTIRQ\n 60:         12          0          0          0          0          0          0          0   PDC-GIC 421 Edge      qcom,qmp-aop\n 61:          0          0          0          0          0          0          0          0   PDC-GIC 481 Edge      qcom,glink-smem-native-xprt-modem\n 62:          0          0          0          0          0          0          0          0   PDC-GIC 202 Edge      qcom,glink-smem-native-xprt-adsp\n 63:          0          0          0          0          0          0          0          0   PDC-GIC 606 Edge      qcom,glink-smem-native-xprt-cdsp\n 65:          0          0          0          0          0          0          0          0   PDC-GIC 524 Level     eud_irq\n 67:        189          0          0          0          0          0          0          0   PDC-GIC  37 Level     apps_rsc\n 68:          0          0          0          0          0          0          0          0   PDC-GIC 161 Level     display_rsc\n 70:          0          0          0          0          0          0          0          0  pmic_arb 8388615 Edge      qpnp_kpdpwr_status\n 71:          0          0          0          0          0          0          0          0  pmic_arb 8454151 Edge      qpnp_resin_status\n 72:          0          0          0          0          0          0          0          0  pmic_arb 8585223 Edge      qpnp_kpdpwr_bark\n 75:          0          0          0          0          0          0          0          0  pmic_arb 37748761 Edge      pm660_tz\n 84:         20          0          0          0          0          0          0          0  pmic_arb 51380252 Edge      qpnp_vadc_interrupt\n 85:          0          0          0          0          0          0          0          0  pmic_arb 24117268 Edge      sig-tx\n 86:          0          0          0          0          0          0          0          0  pmic_arb 24182804 Edge      sig-rx\n 87:          0          0          0          0          0          0          0          0  pmic_arb 24248340 Edge      msg-tx\n 88:          0          0          0          0          0          0          0          0  pmic_arb 24313876 Edge      msg-rx\n 89:          0          0          0          0          0          0          0          0  pmic_arb 24379412 Edge      msg-tx-failed\n 90:          0          0          0          0          0          0          0          0  pmic_arb 24444948 Edge      msg-tx-discarded\n 91:          0          0          0          0          0          0          0          0  pmic_arb 24510484 Edge      msg-rx-discarded\n 92:          0          0          0          0          0          0          0          0  pmic_arb 54525982 Level     qpnp_adc_tm_interrupt\n 93:          0          0          0          0          0          0          0          0  pmic_arb 69206054 Edge      bcl-high-ibat\n 95:          0          0          0          0          0          0          0          0  pmic_arb 69337126 Edge      bcl-low-vbat\n 98:          0          0          0          0          0          0          0          0  pmic_arb 574619778 Edge      pm660l_tz\n104:          0          0          0          0          0          0          0          0  pmic_arb 744489106 Edge      volume_up\n107:          0          0          0          0          0          0          0          0  pmic_arb 1026556093 Edge      qpnp_flash_led_fault_irq\n108:          0          0          0          0          0          0          0          0  pmic_arb 1026752701 Edge      qpnp_flash_led_all_ramp_down_done_irq\n109:          0          0          0          0          0          0          0          0  pmic_arb 1026818237 Edge      qpnp_flash_led_all_ramp_up_done_irq\n125:          0          0          0          0          0          0          0          0   PDC-GIC 194 Edge      adsp\n128:          0          0          0          0          0          0          0          0   PDC-GIC 298 Edge      modem\n129:          0          0          0          0          0          0          0          0   PDC-GIC 610 Edge      cdsp\n130:         51          0          0          0          0          0          0          0   PDC-GIC 673 Edge      mmc0\n131:          1          0          0          0          0          0          0          0   PDC-GIC 676 Edge      7c4000.sdhci\n157:          0          0          0          0          0          0          0          0  msmgpio-dc  10 Edge      TE_GPIO\n173:          0          0          0          0          0          0          0          0  msmgpio-dc  26 Edge      spi32764.0\n191:          0          0          0          0          0          0          0          0  msmgpio-dc  44 Level     nq-nci\n226:          0          0          0          0          0          0          0          0  msmgpio-dc  79 Level     cs35l36\n227:          0          0          0          0          0          0          0          0  msmgpio-dc  80 Level     cs35l36\n268:          1          0          0          0          0          0          0          0  msmgpio-dc 121 Edge      soc:fp_fpc1020\n272:          0          0          0          0          0          0          0          0  msmgpio-dc 125 Level     synaptics_dsx\n374:          0          0          0          0          0          0          0          0   PDC-GIC 261 Level     arm-smmu global fault\n375:          0          0          0          0          0          0          0          0   PDC-GIC 263 Level     arm-smmu global fault\n376:          0          0          0          0          0          0          0          0   PDC-GIC 396 Level     arm-smmu-context-fault\n377:          0          0          0          0          0          0          0          0   PDC-GIC 397 Level     arm-smmu-context-fault\n378:          0          0          0          0          0          0          0          0   PDC-GIC 398 Level     arm-smmu-context-fault\n384:          0          0          0          0          0          0          0          0   PDC-GIC  97 Level     arm-smmu global fault\n387:          0          0          0          0          0          0          0          0   PDC-GIC 130 Level     arm-smmu-context-fault\n388:          0          0          0          0          0          0          0          0   PDC-GIC 131 Level     arm-smmu-context-fault\n389:          0          0          0          0          0          0          0          0   PDC-GIC 132 Level     arm-smmu-context-fault\n390:          0          0          0          0          0          0          0          0   PDC-GIC 133 Level     arm-smmu-context-fault\n391:          0          0          0          0          0          0          0          0   PDC-GIC 134 Level     arm-smmu-context-fault\n392:          0          0          0          0          0          0          0          0   PDC-GIC 135 Level     arm-smmu-context-fault\n393:          0          0          0          0          0          0          0          0   PDC-GIC 136 Level     arm-smmu-context-fault\n394:          0          0          0          0          0          0          0          0   PDC-GIC 137 Level     arm-smmu-context-fault\n395:          0          0          0          0          0          0          0          0   PDC-GIC 138 Level     arm-smmu-context-fault\n396:          0          0          0          0          0          0          0          0   PDC-GIC 139 Level     arm-smmu-context-fault\n397:          0          0          0          0          0          0          0          0   PDC-GIC 140 Level     arm-smmu-context-fault\n398:          0          0          0          0          0          0          0          0   PDC-GIC 141 Level     arm-smmu-context-fault\n399:          0          0          0          0          0          0          0          0   PDC-GIC 142 Level     arm-smmu-context-fault\n400:          0          0          0          0          0          0          0          0   PDC-GIC 143 Level     arm-smmu-context-fault\n401:          0          0          0          0          0          0          0          0   PDC-GIC 144 Level     arm-smmu-context-fault\n402:          0          0          0          0          0          0          0          0   PDC-GIC 145 Level     arm-smmu-context-fault\n403:          0          0          0          0          0          0          0          0   PDC-GIC 146 Level     arm-smmu-context-fault\n404:          0          0          0          0          0          0          0          0   PDC-GIC 147 Level     arm-smmu-context-fault\n405:          0          0          0          0          0          0          0          0   PDC-GIC 148 Level     arm-smmu-context-fault\n406:          0          0          0          0          0          0          0          0   PDC-GIC 149 Level     arm-smmu-context-fault\n407:          0          0          0          0          0          0          0          0   PDC-GIC 150 Level     arm-smmu-context-fault\n408:          0          0          0          0          0          0          0          0   PDC-GIC 213 Level     arm-smmu-context-fault\n409:          0          0          0          0          0          0          0          0   PDC-GIC 214 Level     arm-smmu-context-fault\n410:          0          0          0          0          0          0          0          0   PDC-GIC 215 Level     arm-smmu-context-fault\n411:          0          0          0          0          0          0          0          0   PDC-GIC 216 Level     arm-smmu-context-fault\n412:          0          0          0          0          0          0          0          0   PDC-GIC 217 Level     arm-smmu-context-fault\n413:          0          0          0          0          0          0          0          0   PDC-GIC 218 Level     arm-smmu-context-fault\n414:          0          0          0          0          0          0          0          0   PDC-GIC 219 Level     arm-smmu-context-fault\n415:          0          0          0          0          0          0          0          0   PDC-GIC 220 Level     arm-smmu-context-fault\n416:          0          0          0          0          0          0          0          0   PDC-GIC 221 Level     arm-smmu-context-fault\n417:          0          0          0          0          0          0          0          0   PDC-GIC 222 Level     arm-smmu-context-fault\n418:          0          0          0          0          0          0          0          0   PDC-GIC 223 Level     arm-smmu-context-fault\n419:          0          0          0          0          0          0          0          0   PDC-GIC 224 Level     arm-smmu-context-fault\n449:          0          0          0          0          0          0          0          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n450:          0          0          0          0          0          0          0          0   PDC-GIC 162 Edge      pwr_event_irq\n451:          0          0          0          0          0          0          0          0   PDC-GIC 518 Level     ss_phy_irq\n452:          0          0          0          0          0          0          0          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n453:          0          0          0          0          0          0          0          0   PDC-GIC 332 Level     kgsl-3d0\n454:          0          0          0          0          0          0          0          0   PDC-GIC 336 Level     HFI\n455:          0          0          0          0          0          0          0          0   PDC-GIC 337 Level     GMU\n456:          0          0          0          0          0          0          0          0   PDC-GIC 509 Edge      csiphy\n457:          0          0          0          0          0          0          0          0   PDC-GIC 510 Edge      csiphy\n458:          0          0          0          0          0          0          0          0   PDC-GIC 511 Edge      csiphy\n459:          0          0          0          0          0          0          0          0   PDC-GIC 492 Edge      cci\n460:          0          0          0          0          0          0          0          0   PDC-GIC 491 Edge      cpas_camnoc\n461:          1          0          0          0          0          0          0          0   PDC-GIC 493 Edge      cpas-cdm\n462:          0          0          0          0          0          0          0          0   PDC-GIC 496 Edge      csid\n463:          2          0          0          0          0          0          0          0   PDC-GIC 497 Edge      ife\n464:          0          0          0          0          0          0          0          0   PDC-GIC 498 Edge      csid\n465:          2          0          0          0          0          0          0          0   PDC-GIC 499 Edge      ife\n466:          0          0          0          0          0          0          0          0   PDC-GIC 500 Edge      csid-lite\n467:          2          0          0          0          0          0          0          0   PDC-GIC 501 Edge      ife-lite\n468:          0          0          0          0          0          0          0          0   PDC-GIC 495 Edge      a5\n469:          0          0          0          0          0          0          0          0   PDC-GIC 506 Edge      jpeg\n470:          0          0          0          0          0          0          0          0   PDC-GIC 507 Edge      jpegdma\n471:          2          0          0          0          0          0          0          0   PDC-GIC 494 Edge      fd\n472:          1          0          0          0          0          0          0          0   PDC-GIC 508 Edge      lrme\n473:          0          0          0          0          0          0          0          0   PDC-GIC  64 Level     limits_sensor-00\n474:          0          0          0          0          0          0          0          0   PDC-GIC  65 Level     limits_sensor-01\n603:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n604:          0          0          0          0          0          0          0          0  pmic_arb 101777466 Edge      qpnp_rtc_alarm\n605:          0          0          0          0          0          0          0          0       sde   2 Edge      sde_rotator_r3\n606:          0          0          0          0          0          0          0          0  pmic_arb 16777229 Edge      chg-error\n607:          0          0          0          0          0          0          0          0  pmic_arb 16842765 Edge      chg-state-change\n611:          0          0          0          0          0          0          0          0  pmic_arb 17825806 Edge      otg-fail\n612:          0          0          0          0          0          0          0          0  pmic_arb 17891342 Edge      otg-overcurrent\n613:          0          0          0          0          0          0          0          0  pmic_arb 17956878 Edge      otg-oc-dis-sw-sts\n614:          0          0          0          0          0          0          0          0  pmic_arb 18022414 Edge      testmode-change-detect\n615:          0          0          0          0          0          0          0          0  pmic_arb 18874383 Edge      bat-temp\n616:          0          0          0          0          0          0          0          0  pmic_arb 18939919 Edge      bat-ocp\n617:          0          0          0          0          0          0          0          0  pmic_arb 19005455 Edge      bat-ov\n618:          0          0          0          0          0          0          0          0  pmic_arb 19070991 Edge      bat-low\n619:          0          0          0          0          0          0          0          0  pmic_arb 19136527 Edge      bat-therm-or-id-missing\n620:          0          0          0          0          0          0          0          0  pmic_arb 19202063 Edge      bat-terminal-missing\n621:          0          0          0          0          0          0          0          0  pmic_arb 19922960 Edge      usbin-collapse\n622:          0          0          0          0          0          0          0          0  pmic_arb 19988496 Edge      usbin-lt-3p6v\n623:          0          0          0          0          0          0          0          0  pmic_arb 20054032 Edge      usbin-uv\n624:          0          0          0          0          0          0          0          0  pmic_arb 20119568 Edge      usbin-ov\n625:          0          0          0          0          0          0          0          0  pmic_arb 20185104 Edge      usbin-plugin\n626:          0          0          0          0          0          0          0          0  pmic_arb 20250640 Edge      usbin-src-change\n627:          0          0          0          0          0          0          0          0  pmic_arb 20316176 Edge      usbin-icl-change\n628:          0          0          0          0          0          0          0          0  pmic_arb 20381712 Edge      type-c-change\n629:          0          0          0          0          0          0          0          0  pmic_arb 20971537 Edge      dcin-collapse\n630:          0          0          0          0          0          0          0          0  pmic_arb 21037073 Edge      dcin-lt-3p6v\n631:          0          0          0          0          0          0          0          0  pmic_arb 21102609 Edge      dcin-uv\n632:          0          0          0          0          0          0          0          0  pmic_arb 21168145 Edge      dcin-ov\n633:          0          0          0          0          0          0          0          0  pmic_arb 21233681 Edge      dcin-plugin\n634:          0          0          0          0          0          0          0          0  pmic_arb 21299217 Edge      div2-en-dg\n635:          0          0          0          0          0          0          0          0  pmic_arb 21364753 Edge      dcin-icl-change\n637:          0          0          0          0          0          0          0          0  pmic_arb 23134227 Edge      wdog-bark\n638:          0          0          0          0          0          0          0          0  pmic_arb 23199763 Edge      aicl-fail\n639:          0          0          0          0          0          0          0          0  pmic_arb 23265299 Edge      aicl-done\n640:          0          0          0          0          0          0          0          0  pmic_arb 23330835 Edge      high-duty-cycle\n641:          0          0          0          0          0          0          0          0  pmic_arb 23396371 Edge      input-current-limiting\n642:          0          0          0          0          0          0          0          0  pmic_arb 23461907 Edge      temperature-change\n643:          0          0          0          0          0          0          0          0  pmic_arb 23527443 Edge      switcher-power-ok\n644:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      adsp\n645:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n646:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      adsp\n647:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      adsp\n676:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      ipa_smp2p_clk_vote\n708:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      modem\n709:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n710:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      modem\n711:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      modem\n740:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      cdsp\n741:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n742:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      cdsp\n743:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      cdsp\n900:          0          0          0          0          0          0          0          0   PDC-GIC 165 Edge      dwc3\n902:          0          0          0          0          0          0          0          0  pmic_arb 67108900 Edge      soc-update\n903:          0          0          0          0          0          0          0          0  pmic_arb 67174436 Edge      soc-ready\n904:          0          0          0          0          0          0          0          0  pmic_arb 67239972 Edge      bsoc-delta\n905:          0          0          0          0          0          0          0          0  pmic_arb 67305508 Edge      msoc-delta\n906:          0          0          0          0          0          0          0          0  pmic_arb 67371044 Edge      msoc-low\n907:          0          0          0          0          0          0          0          0  pmic_arb 67436580 Edge      msoc-empty\n908:          0          0          0          0          0          0          0          0  pmic_arb 67502116 Edge      msoc-high\n909:          0          0          0          0          0          0          0          0  pmic_arb 67567652 Edge      msoc-full\n910:          0          0          0          0          0          0          0          0  pmic_arb 68157477 Edge      vbatt-pred-delta\n911:          0          0          0          0          0          0          0          0  pmic_arb 68223013 Edge      vbatt-low\n912:          0          0          0          0          0          0          0          0  pmic_arb 68288549 Edge      esr-delta\n913:          0          0          0          0          0          0          0          0  pmic_arb 68354085 Edge      batt-missing\n914:          0          0          0          0          0          0          0          0  pmic_arb 68550693 Edge      batt-temp-delta\n915:         24          0          0          0          0          0          0          0  pmic_arb 71303208 Edge      ima-rdy\n916:          0          0          0          0          0          0          0          0  pmic_arb 71368744 Edge      mem-xcp\n917:          0          0          0          0          0          0          0          0  pmic_arb 71434280 Edge      dma-grant\nIPI0:        59         15         15         15         15         15         15         15       Rescheduling interrupts\nIPI1:         0        557        557        557        557        557        557        557       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI4:        79          3          3          4          4          4          4          4       IRQ work interrupts\nIPI5:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm670/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    4 root      0:00 [kworker/0:0H]\n    5 root      0:00 [kworker/u16:0]\n    6 root      0:00 [ksoftirqd/0]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [lru-add-drain]\n   15 root      0:00 [watchdog/0]\n   16 root      0:00 [cpuhp/0]\n   17 root      0:00 [cpuhp/1]\n   18 root      0:00 [watchdog/1]\n   19 root      0:00 [migration/1]\n   20 root      0:00 [ksoftirqd/1]\n   21 root      0:00 [kworker/1:0]\n   22 root      0:00 [kworker/1:0H]\n   23 root      0:00 [rcuop/1]\n   24 root      0:00 [rcuos/1]\n   25 root      0:00 [rcuob/1]\n   26 root      0:00 [cpuhp/2]\n   27 root      0:00 [watchdog/2]\n   28 root      0:00 [migration/2]\n   29 root      0:00 [ksoftirqd/2]\n   30 root      0:00 [kworker/2:0]\n   31 root      0:00 [kworker/2:0H]\n   32 root      0:00 [rcuop/2]\n   33 root      0:00 [rcuos/2]\n   34 root      0:00 [rcuob/2]\n   35 root      0:00 [cpuhp/3]\n   36 root      0:00 [watchdog/3]\n   37 root      0:00 [migration/3]\n   38 root      0:00 [ksoftirqd/3]\n   39 root      0:00 [kworker/3:0]\n   40 root      0:00 [kworker/3:0H]\n   41 root      0:00 [rcuop/3]\n   42 root      0:00 [rcuos/3]\n   43 root      0:00 [rcuob/3]\n   44 root      0:00 [cpuhp/4]\n   45 root      0:00 [watchdog/4]\n   46 root      0:00 [migration/4]\n   47 root      0:00 [ksoftirqd/4]\n   49 root      0:00 [kworker/4:0H]\n   50 root      0:00 [rcuop/4]\n   51 root      0:00 [rcuos/4]\n   52 root      0:00 [rcuob/4]\n   53 root      0:00 [cpuhp/5]\n   54 root      0:00 [watchdog/5]\n   55 root      0:00 [migration/5]\n   56 root      0:00 [ksoftirqd/5]\n   57 root      0:00 [kworker/5:0]\n   58 root      0:00 [kworker/5:0H]\n   59 root      0:00 [rcuop/5]\n   60 root      0:00 [rcuos/5]\n   61 root      0:00 [rcuob/5]\n   62 root      0:00 [cpuhp/6]\n   63 root      0:00 [watchdog/6]\n   64 root      0:00 [migration/6]\n   65 root      0:00 [ksoftirqd/6]\n   66 root      0:00 [kworker/6:0]\n   67 root      0:00 [kworker/6:0H]\n   68 root      0:00 [rcuop/6]\n   69 root      0:00 [rcuos/6]\n   70 root      0:00 [rcuob/6]\n   71 root      0:00 [cpuhp/7]\n   72 root      0:00 [watchdog/7]\n   73 root      0:00 [migration/7]\n   74 root      0:00 [ksoftirqd/7]\n   75 root      0:00 [kworker/7:0]\n   76 root      0:00 [kworker/7:0H]\n   77 root      0:00 [rcuop/7]\n   78 root      0:00 [rcuos/7]\n   79 root      0:00 [rcuob/7]\n   80 root      0:00 [netns]\n   81 root      0:00 [ksuspend_mon]\n   83 root      0:00 [ipa_usb_wq]\n   84 root      0:00 [msm_watchdog]\n   85 root      0:00 [qmp_aop]\n   86 root      0:00 [smem_native_mps]\n   87 root      0:00 [mpss_smem_glink]\n   88 root      0:00 [smem_native_lpa]\n   89 root      0:00 [lpass_smem_glin]\n   90 root      0:00 [smem_native_cds]\n   91 root      0:00 [cdsp_smem_glink]\n   92 root      0:00 [khungtaskd]\n   93 root      0:00 [oom_reaper]\n   94 root      0:00 [writeback]\n   95 root      0:00 [kcompactd0]\n   96 root      0:00 [crypto]\n   97 root      0:00 [bioset]\n   98 root      0:00 [kblockd]\n   99 root      0:00 [irq/374-arm-smm]\n  100 root      0:00 [irq/375-arm-smm]\n  101 root      0:00 [irq/384-arm-smm]\n  102 root      0:00 [kworker/u17:0]\n  103 root      0:00 [irq/22-tsens-up]\n  104 root      0:00 [irq/23-tsens-cr]\n  105 root      0:00 [irq/24-tsens-up]\n  106 root      0:00 [irq/25-tsens-cr]\n  107 root      0:00 [edac-poller]\n  108 root      0:00 [system]\n  109 root      0:00 [ipa_power_mgmt]\n  110 root      0:00 [transport_power]\n  111 root      0:00 [ipa_rm_wq]\n  112 root      0:00 [devfreq_wq]\n  113 root      0:00 [governor_msm_ad]\n  114 root      0:00 [cfg80211]\n  116 root      0:00 [watchdogd]\n  141 root      0:00 [kswapd0]\n  142 root      0:00 [vmstat]\n  143 root      0:00 [ecryptfs-kthrea]\n  196 root      0:00 [irq/389-arm-smm]\n  197 root      0:00 [irq/390-arm-smm]\n  198 root      0:00 [irq/65-eud_irq]\n  199 root      0:00 [glink_ssr_wq]\n  200 root      0:00 [glink_lbsrv]\n  201 root      0:00 [spi_wdsp]\n  202 root      0:00 [wdsp_spi_glink_]\n  203 root      0:00 [glink_xprt_wq]\n  204 root      0:00 [IPCRTR_mpss_sme]\n  205 root      0:00 [IPCRTR_lpass_sm]\n  206 root      0:00 [IPCRTR_cdsp_sme]\n  207 root      0:00 [glink_pkt_wq]\n  208 root      0:00 [irq/391-arm-smm]\n  209 root      0:00 [qmi_svc_event_w]\n  210 root      0:00 [msm_ipc_router]\n  211 root      0:00 [servloc_wq]\n  212 root      0:00 [irq/392-arm-smm]\n  213 root      0:00 [irq/393-arm-smm]\n  214 root      0:00 [hwrng]\n  216 root      0:00 [diag_real_time_]\n  217 root      0:00 [diag_wq]\n  218 root      0:00 [DIAG_USB_diag]\n  219 root      0:00 [diag_cntl_wq]\n  220 root      0:00 [diag_dci_wq]\n  221 root      0:00 [MODEM_CNTL]\n  222 root      0:00 [MODEM_DATA]\n  223 root      0:00 [MODEM_CMD]\n  224 root      0:00 [MODEM_DCI]\n  225 root      0:00 [MODEM_DCI_CMD]\n  226 root      0:00 [LPASS_CNTL]\n  227 root      0:00 [LPASS_DATA]\n  228 root      0:00 [LPASS_CMD]\n  229 root      0:00 [LPASS_DCI]\n  230 root      0:00 [LPASS_DCI_CMD]\n  231 root      0:00 [WCNSS_CNTL]\n  232 root      0:00 [WCNSS_DATA]\n  233 root      0:00 [WCNSS_CMD]\n  234 root      0:00 [WCNSS_DCI]\n  235 root      0:00 [WCNSS_DCI_CMD]\n  236 root      0:00 [SENSORS_CNTL]\n  237 root      0:00 [SENSORS_DATA]\n  238 root      0:00 [SENSORS_CMD]\n  239 root      0:00 [SENSORS_DCI]\n  240 root      0:00 [SENSORS_DCI_CMD]\n  241 root      0:00 [DIAG_CTRL]\n  242 root      0:00 [DIAG_DATA]\n  243 root      0:00 [DIAG_CMD]\n  244 root      0:00 [DIAG_DCI_DATA]\n  245 root      0:00 [DIAG_DCI_CMD]\n  246 root      0:00 [CDSP_CNTL]\n  247 root      0:00 [CDSP_DATA]\n  248 root      0:00 [CDSP_CMD]\n  249 root      0:00 [CDSP_DCI]\n  250 root      0:00 [CDSP_DCI_CMD]\n  251 root      0:00 [DIAG_CNTL_SOCKE]\n  252 root      0:00 [DIAG_GLINK_DIAG]\n  253 root      0:00 [DIAG_GLINK_DIAG]\n  254 root      0:00 [DIAG_GLINK_DIAG]\n  255 root      0:00 [DIAG_GLINK_DIAG]\n  256 root      0:00 [DIAG_GLINK_DIAG]\n  258 root      0:00 [kgsl-workqueue]\n  259 root      0:00 [kgsl-mementry]\n  260 root      0:00 [kgsl_worker_thr]\n  261 root      0:00 [bioset]\n  263 root      0:00 [irq/376-arm-smm]\n  264 root      0:00 [bioset]\n  265 root      0:00 [irq/388-arm-smm]\n  266 root      0:00 [irq/377-arm-smm]\n  267 root      0:00 [bioset]\n  268 root      0:00 [irq/394-arm-smm]\n  269 root      0:00 [irq/378-arm-smm]\n  270 root      0:00 [bioset]\n  271 root      0:00 [kgsl-events]\n  272 root      0:00 [crtc_commit:97]\n  273 root      0:00 [bioset]\n  274 root      0:00 [crtc_event:97]\n  275 root      0:00 [crtc_commit:150]\n  276 root      0:00 [crtc_event:150]\n  277 root      0:00 [pp_event]\n  278 root      0:00 [kgsl_devfreq_wq]\n  279 root      0:00 [bioset]\n  280 root      0:00 [bioset]\n  281 root      0:00 [bioset]\n  282 root      0:00 [bioset]\n  283 root      0:00 [bioset]\n  284 root      0:00 [bioset]\n  285 root      0:00 [bioset]\n  286 root      0:00 [bioset]\n  287 root      0:00 [bioset]\n  288 root      0:00 [bioset]\n  289 root      0:00 [bioset]\n  290 root      0:00 [bioset]\n  291 root      0:00 [bioset]\n  292 root      0:00 [bioset]\n  293 root      0:00 [bioset]\n  294 root      0:00 [bioset]\n  295 root      0:00 [bioset]\n  296 root      0:00 [bioset]\n  297 root      0:00 [bioset]\n  298 root      0:00 [bioset]\n  299 root      0:00 [bioset]\n  300 root      0:00 [bioset]\n  301 root      0:00 [bioset]\n  302 root      0:00 [bioset]\n  303 root      0:00 [bioset]\n  304 root      0:00 [bioset]\n  305 root      0:00 [bioset]\n  306 root      0:00 [bioset]\n  307 root      0:00 [qseecom-unreg-l]\n  308 root      0:00 [memory_wq]\n  309 root      0:00 [irq/395-arm-smm]\n  310 root      0:00 [qcrypto_seq_res]\n  311 root      0:00 [irq/396-arm-smm]\n  332 root      0:00 [spi32766]\n  333 root      0:00 [spi32765]\n  334 root      0:00 [spi32764]\n  335 root      0:00 [bond0]\n  336 root      0:00 [sharedmem_qmi_w]\n  342 root      0:00 [uether]\n  343 root      0:00 [qmi_hndl0000000]\n  344 root      0:00 [k_ipa_usb]\n  347 root      0:00 [irq/268-soc:fp_]\n  348 root      0:00 [kdbgd]\n  349 root      0:00 [msm_vidc_worker]\n  350 root      0:00 [tbn_event_proce]\n  351 root      0:00 [pm_workerq_venu]\n  352 root      0:00 [irq/397-arm-smm]\n  353 root      0:00 [irq/398-arm-smm]\n  354 root      0:00 [irq/399-arm-smm]\n  355 root      0:00 [irq/400-arm-smm]\n  356 root      0:00 [rot_commitq_0_0]\n  357 root      0:00 [rot_commitq_0_1]\n  358 root      0:00 [rot_doneq_0_0]\n  359 root      0:00 [rot_doneq_0_1]\n  360 root      0:00 [rot_fenceq_0_0]\n  361 root      0:00 [rot_fenceq_0_1]\n  362 root      0:00 [rot_fenceq_0_2]\n  363 root      0:00 [rot_fenceq_0_3]\n  364 root      0:00 [rot_fenceq_0_4]\n  365 root      0:00 [rot_fenceq_0_5]\n  366 root      0:00 [rot_fenceq_0_6]\n  367 root      0:00 [rot_fenceq_0_7]\n  368 root      0:00 [rot_fenceq_0_8]\n  369 root      0:00 [rot_fenceq_0_9]\n  370 root      0:00 [rot_fenceq_0_10]\n  371 root      0:00 [rot_fenceq_0_11]\n  372 root      0:00 [rot_fenceq_0_12]\n  373 root      0:00 [rot_fenceq_0_13]\n  374 root      0:00 [rot_fenceq_0_14]\n  375 root      0:00 [rot_fenceq_0_15]\n  376 root      0:00 [cam-cpas]\n  377 root      0:00 [qcom,cam_virtua]\n  378 root      0:00 [irq/401-arm-smm]\n  379 root      0:00 [qcom,cam170-cpa]\n  380 root      0:00 [irq/402-arm-smm]\n  381 root      0:00 [cam_cci_wq]\n  382 root      0:00 [cam_cci_wq]\n  383 root      0:00 [irq/403-arm-smm]\n  384 root      0:00 [irq/404-arm-smm]\n  385 root      0:00 [irq/405-arm-smm]\n  386 root      0:00 [irq/406-arm-smm]\n  387 root      0:00 [irq/606-chg-err]\n  388 root      0:00 [irq/607-chg-sta]\n  389 root      0:00 [irq/611-otg-fai]\n  390 root      0:00 [irq/612-otg-ove]\n  391 root      0:00 [irq/613-otg-oc-]\n  392 root      0:00 [irq/614-testmod]\n  394 root      0:00 [irq/615-bat-tem]\n  395 root      0:00 [irq/616-bat-ocp]\n  396 root      0:00 [irq/617-bat-ov]\n  397 root      0:00 [irq/618-bat-low]\n  398 root      0:00 [irq/619-bat-the]\n  399 root      0:00 [irq/620-bat-ter]\n  401 root      0:00 [irq/621-usbin-c]\n  402 root      0:00 [irq/622-usbin-l]\n  403 root      0:00 [irq/623-usbin-u]\n  404 root      0:00 [irq/624-usbin-o]\n  405 root      0:00 [irq/625-usbin-p]\n  407 root      0:00 [irq/626-usbin-s]\n  408 root      0:00 [irq/627-usbin-i]\n  409 root      0:00 [irq/628-type-c-]\n  410 root      0:00 [irq/629-dcin-co]\n  411 root      0:00 [irq/630-dcin-lt]\n  412 root      0:00 [irq/631-dcin-uv]\n  413 root      0:00 [irq/632-dcin-ov]\n  414 root      0:00 [irq/633-dcin-pl]\n  415 root      0:00 [irq/634-div2-en]\n  416 root      0:00 [irq/635-dcin-ic]\n  417 root      0:00 [irq/637-wdog-ba]\n  418 root      0:00 [irq/638-aicl-fa]\n  419 root      0:00 [irq/639-aicl-do]\n  420 root      0:00 [irq/640-high-du]\n  421 root      0:00 [irq/641-input-c]\n  422 root      0:00 [irq/642-tempera]\n  423 root      0:00 [irq/643-switche]\n  426 root      0:00 [dsx_rebuild_wor]\n  427 root      0:00 [dsx_exp_workque]\n  428 root      0:00 [irq/93-bcl-high]\n  429 root      0:00 [irq/95-bcl-low-]\n  430 root      0:00 [irq/473-limits_]\n  431 root      0:00 [irq/474-limits_]\n  432 root      0:00 [qmi_tmd_wq]\n  433 root      0:00 [dm_bufio_cache]\n  434 root      0:00 [irq/59-KRYO3XX ]\n  435 root      0:00 [mmc_clk_gate/mm]\n  436 root      0:00 [kworker/u16:3]\n  437 root      0:00 [fwu_workqueue]\n  438 root      0:00 [irq/407-arm-smm]\n  439 root      0:00 [irq/131-7c4000.]\n  440 root      0:00 [uaudio_svc]\n  441 root      0:00 [irq/130-mmc0]\n  442 root      0:00 [qmi_hndl0000000]\n  444 root      0:00 [test_report_wor]\n  445 root      0:00 [irq/226-cs35l36]\n  446 root      0:00 [bioset]\n  447 root      0:00 [sdhci_msm_pm_qo]\n  448 root      0:00 [mmc-cmdqd/0]\n  449 root      0:00 [bioset]\n  450 root      0:00 [mmcqd/0rpmb]\n  451 root      0:00 [irq/227-cs35l36]\n  452 root      0:00 [apr_driver]\n  453 root      0:00 [ipv6_addrconf]\n  454 root      0:00 [irq/646-adsp]\n  455 root      0:00 [sysmon_wq]\n  456 root      0:00 [irq/742-cdsp]\n  457 root      0:00 [irq/710-modem]\n  464 root      0:00 [irq/85-sig-tx]\n  465 root      0:00 [irq/86-sig-rx]\n  466 root      0:00 [usbpd0]\n  467 root      0:00 [usbpd0]\n  468 root      0:00 [irq/902-soc-upd]\n  469 root      0:00 [irq/903-soc-rea]\n  470 root      0:00 [irq/904-bsoc-de]\n  471 root      0:00 [irq/905-msoc-de]\n  472 root      0:00 [irq/906-msoc-lo]\n  473 root      0:00 [irq/907-msoc-em]\n  474 root      0:00 [irq/908-msoc-hi]\n  475 root      0:00 [irq/909-msoc-fu]\n  476 root      0:00 [irq/910-vbatt-p]\n  477 root      0:00 [irq/911-vbatt-l]\n  478 root      0:00 [irq/912-esr-del]\n  479 root      0:00 [irq/913-batt-mi]\n  480 root      0:00 [irq/914-batt-te]\n  481 root      0:00 [irq/915-ima-rdy]\n  482 root      0:00 [irq/916-mem-xcp]\n  483 root      0:00 [irq/917-dma-gra]\n  484 root      0:00 [irq/450-pwr_eve]\n  485 root      0:00 [irq/449-dp_hs_p]\n  486 root      0:00 [irq/452-dm_hs_p]\n  487 root      0:00 [irq/451-ss_phy_]\n  488 root      0:00 [irq/387-arm-smm]\n  489 root      0:00 [usb_bam_wq]\n  498 root      0:00 [irq/272-synapti]\n  499 root      0:00 [rq_stats]\n  500 root      0:00 [irq/408-arm-smm]\n  501 root      0:00 [irq/409-arm-smm]\n  502 root      0:00 [irq/410-arm-smm]\n  503 root      0:00 [irq/411-arm-smm]\n  504 root      0:00 [irq/412-arm-smm]\n  505 root      0:00 [irq/413-arm-smm]\n  506 root      0:00 [irq/414-arm-smm]\n  507 root      0:00 [irq/415-arm-smm]\n  508 root      0:00 [irq/416-arm-smm]\n  509 root      0:00 [irq/417-arm-smm]\n  510 root      0:00 [irq/418-arm-smm]\n  511 root      0:00 [irq/419-arm-smm]\n  512 root      0:00 [sb-3]\n  513 root      0:00 [ngd_rx_thread3]\n  514 root      0:00 [ngd_notify_sl3]\n  515 root      0:00 [irq/109-qpnp_fl]\n  516 root      0:00 [irq/108-qpnp_fl]\n  517 root      0:00 [irq/107-qpnp_fl]\n  531 root      0:00 [kworker/4:1]\n  532 root      0:00 [kworker/5:1]\n  533 root      0:00 [kworker/6:1]\n  536 root      0:00 [kworker/2:2]\n  537 root      0:00 [kworker/3:2]\n  538 root      0:00 [kworker/4:2]\n  539 root      0:00 [kworker/7:2]\n  540 root      0:00 [kworker/0:1H]\n  551 root      0:00 [kworker/0:0]\n  567 root      0:00 [kworker/0:1]\n  571 root      0:00 [kworker/1:1]\n  581 root      0:00 [kworker/0:2]\n  603 root      0:00 [kworker/6:2]\n  647 root      0:00 ps -A\n"
  },
  {
    "path": "results/sdm670/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1113.66429,3.7122143,43.19167132605222,11.635826348192051,25.782440457837644,269.399770626\r\n1,576000,2138.351331,3.712415505208333,50.63567395171933,7.104430234878567,42.22717235327004,140.30484203\r\n1,748800,2779.733887,3.712251451655983,67.32960539603732,7.2669899940401,41.28256681872962,107.931569646\r\n1,998400,3706.495015,3.7124349108573718,72.52272733221247,5.870381714669121,51.10400218955935,80.945407469\r\n1,1209600,4490.480182,3.7123678753306883,85.97443184793937,5.74421991781415,52.226412688280064,66.813118672\r\n1,1324800,4918.274669,3.7124657827596623,90.09349437196656,5.49590808443338,54.58606574038611,61.002274612\r\n1,1516800,5630.841999,3.7123167187500004,102.61445560367919,5.467588399018992,54.86879737579125,53.282828105\r\n1,1612800,5987.306909,3.712367875124008,108.94154921937994,5.459243631255197,54.952667487203456,50.111676127\r\n1,1708800,6343.701761,3.712372285229401,125.51529843414889,5.93641082170056,50.53558606546392,47.296312846\r\n6,300000,1867.669398,6.22556466,52.992413779506194,8.51290908483617,35.24059719307733,160.643920095\r\n6,652800,4072.877352,6.239089080882353,95.98404946564375,7.071603605222806,42.42319235462122,73.674778722\r\n6,825600,5132.152938,6.216270515988372,117.323999124931,6.86011970212127,43.73101535053896,58.471580864\r\n6,979200,6098.676587,6.22822363868464,151.04899021724484,7.432543515361202,40.363033109725535,49.206178106\r\n6,1132800,7071.46898,6.242469085451978,207.1710740118809,8.792399033059818,34.12038044133193,42.440283109\r\n6,1363200,8481.524413,6.2217755377053985,234.5123398775142,8.298938595482246,36.14920107534151,35.388067851\r\n6,1536000,9577.932444,6.2356331015625,287.23446068319345,9.001115988288808,33.329200555833815,31.337173008\r\n6,1747200,10892.059688,6.234008521062271,339.9524214547407,9.368700584076935,32.02151646407408,27.558858219\r\n6,1843200,11470.520762,6.223155795355902,368.2194536705768,9.636239082451903,31.132477871612355,26.169826136\r\n6,1996800,12425.447316,6.222679945913462,438.2556352822083,10.588662717732747,28.332189625569285,24.160927699\r\n"
  },
  {
    "path": "results/sdm670/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1655.0317941090325, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [443.4084566, 452.412408882, 450.53034953, 441.382952088, 448.44336639600004, 442.91605080000005, 450.2064045, 440.950117356, 455.40691520999997, 448.12085225100003, 442.539449352, 446.179661928, 447.82752653700004, 473.12805954099997, 449.529207425, 447.65167524900005, 447.563629488, 442.10494572799996, 442.047043552, 447.387658083, 438.177336525, 445.44957224399997, 441.69939319200006, 445.24512799200005, 437.86126147499994, 445.15744066800005, 437.77512337499996, 435.959663335, 439.450025376], \"power_mean\": 445.7417818854483, \"energy_millijoules\": 2228.7089094272415, \"energy_joules\": 2.2287089094272416}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 269.399770626, \"elapsed_ns\": 269399770626, \"power_samples\": [46.154998620000015, 45.670428131999984, 45.670428131999984, 49.161106208000035, 36.483833075999996, 36.483833075999996, 47.286314639999944, 45.347425248000036, 47.124151187999985, 47.124151187999985, 39.756144258999996, 43.341314582999985, 43.341314582999985, 43.27684726799998, 43.180344047999995, 43.180344047999995, 37.692860663999966, 44.765861267999924, 44.765861267999924, 44.701287156000035, 48.28252590799997, 48.28252590799997, 42.76189975800003, 39.149089358000026, 46.37841180799995, 46.37841180799995, 37.151690642999995, 46.21624835600005, 46.21624835600005, 44.281290780000006, 35.15215292999994, 35.15215292999994, 38.76580334700003, 42.279119987999934, 42.279119987999934, 44.022862008000004, 44.022862008000004, 36.80164450799998, 36.80164450799998, 43.861294404000034, 41.957310753, 41.957310753, 43.764433236, 43.635152688000005, 43.635152688000005, 36.387846954, 41.732004738, 41.732004738, 45.27593939600001, 38.06282879899999, 38.06282879899999, 557.777295719, 41.24922496800002, 37.87125122300006, 37.87125122300006, 36.03767044799997, 37.71147238399999, 37.71147238399999, 32.336221759999944, 41.24922496800002, 41.24922496800002, 41.12042217299995, 42.89215342799997, 42.89215342799997, 46.427523108, 33.788521812, 40.991619377999996, 40.991619377999996, 40.927283897999985, 37.32805551399997, 37.32805551399997, 44.30322430799998, 42.569150544000024, 42.569150544000024, 37.10441748300002, 37.04055829099991, 37.04055829099991, 51.304600407999885, 42.34300882799994, 42.34300882799994, 54.77193133599991, 36.78499066399996, 34.955591147999996, 34.955591147999996, 40.283533593000016, 42.116867111999966, 42.116867111999966, 43.784460636000006, 34.60541464199997, 34.60541464199997, 32.80557483599995, 36.30578500600001, 36.30578500600001, 41.761444848, 43.42772760399998, 43.42772760399998, 43.33050921999995, 34.28717903100005, 36.082146975, 36.082146975, 34.12799604000003, 34.09618551599999, 34.09618551599999, 32.298255744000016, 39.382309532999955, 39.382309532999955, 35.79451889299992, 35.76258929699998, 35.76258929699998, 42.74693329199994, 32.01290498999998, 33.77794990499996, 33.77794990499996, 35.50702167000003, 42.617175968000026, 42.617175968000026, 35.44316247799998, 40.72772975999999, 40.72772975999999, 40.69531038000002, 35.18759485099997, 35.18759485099997, 40.53387509999999, 33.39596287500001, 33.39596287500001, 40.56616215600002, 40.40459455199999, 33.20496935999995, 33.20496935999995, 33.20496935999995, 40.340020440000046, 40.340020440000046, 34.93202722399997, 31.220105261999947, 31.220105261999947, 38.352414512999985, 40.08159166799999, 40.08159166799999, 41.77408539200002, 31.093340429999955, 38.191443977999995, 38.191443977999995, 32.85479285399998, 34.51668075799995, 34.51668075799995, 30.871372092, 34.45282156600001, 34.45282156600001, 34.45282156600001, 34.356901918999995, 34.356901918999995, 39.661595292000015, 37.901802482999926, 37.901802482999926, 48.54097455299984, 37.80529926299994, 37.77299968799997, 37.77299968799997, 32.37737425199998, 34.165193483999985, 34.165193483999985, 37.70866420799996, 39.273885972000016, 39.273885972000016, 33.90962585699998, 32.059138641000004, 32.059138641000004, 33.87769626100004, 37.38685497299997, 32.02732811699997, 32.02732811699997, 39.08003131200002, 39.08003131200002, 39.08003131200002, 39.11245069200004, 33.59019903799998, 33.59019903799998, 29.98349873999996, 33.55826944199998, 33.55826944199998, 33.39849060299997, 31.581720038999947, 31.581720038999947, 33.23871176399996, 29.666326895999987, 36.93624294299997, 36.93624294299997, 38.46631259999998, 36.743104668, 36.743104668, 33.04700332899995, 33.01507373300001, 33.01507373300001, 29.349284933999968, 548.3991826079998, 548.3991826079998, 44.91708154499986, 37.949322731999985, 30.945118445999924, 30.945118445999924, 36.260324897999965, 36.29249263799994, 36.29249263799994, 32.59972726699999, 30.785935455000015, 30.785935455000015, 29.000421881999955, 36.13152210300001, 36.13152210300001, 41.383184508, 23.55718263299991, 23.55718263299991, 41.31813410799998, 26.965853183999968, 32.31223004399999, 32.31223004399999, 27.029126849999955, 35.874048347999974, 35.874048347999974, 32.37622009499995, 35.84188060799994, 35.84188060799994, 32.216441255999996, 32.152582064, 32.152582064, 37.56174573599998, 74.34859811399991, 35.52007137299995, 35.52007137299995, 30.213085280999962, 31.928944032999937, 31.928944032999937, 30.181274756999983, 28.398029166000015, 28.398029166000015, 31.896883577999972, 38.920752384000025, 38.920752384000025, 31.896883577999972, 37.141749360000006, 37.141749360000006, 38.88834625599998, 31.673245547000022, 38.79099506, 38.79099506, 29.862908774999994, 38.72618280399996, 38.72618280399996, 31.60938635499997, 35.16596256299994, 35.16596256299994, 36.91560764400003, 31.577456758999972, 31.577456758999972, 29.799287726999978, 36.78632709599998, 29.640104736000012, 29.640104736000012, 26.112887935999936, 34.97282428800003, 34.97282428800003, 26.081315800000027, 34.90848880799996, 34.90848880799996, 29.576483687999996, 36.59260475999997, 36.59260475999997, 38.369582584], \"power_mean\": 43.19167132605222, \"energy_millijoules\": 11635.826348192051, \"energy_joules\": 11.635826348192051, \"coremark_score\": 1113.66429, \"coremarks_per_mhz\": 3.7122143, \"ulpmark_cm_score\": 25.782440457837644}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [448.351378995, 448.351378995, 439.276915116, 446.50792117500004], \"power_mean\": 445.62189857025, \"energy_millijoules\": 2228.10949285125, \"energy_joules\": 2.22810949285125}}, \"576000\": {\"active\": {\"elapsed_sec\": 140.30484203, \"elapsed_ns\": 140304842030, \"power_samples\": [67.50231952799999, 57.79225790099997, 57.79225790099997, 55.646045777999916, 44.987625797999954, 46.66367611699991, 46.66367611699991, 44.8888430529999, 48.24328410399988, 48.24328410399988, 42.884530595999934, 51.658083623999914, 51.658083623999914, 55.30979458799999, 46.33352354399989, 46.33352354399989, 48.07767886399995, 48.07767886399995, 48.07767886399995, 51.59122852199994, 46.16837963099988, 46.036237449999874, 46.036237449999874, 47.878816833999906, 47.81243899599991, 47.81243899599991, 51.324218267999925, 51.324218267999925, 51.324218267999925, 47.71307585199992, 44.1650202379999, 44.1650202379999, 45.87122878999986, 45.937232253999866, 45.80509007299992, 45.80509007299992, 91.39356147099994, 45.640081412999905, 45.640081412999905, 45.77208834099986, 47.44797172599988, 47.44797172599988, 52.728270317999886, 52.728270317999886, 52.728270317999886, 56.13917467199991, 45.5409409639999, 45.5409409639999, 45.5079392319999, 47.28223074399989, 47.24910969599989, 47.24910969599989, 43.67151080799988, 47.1497465519999, 47.1497465519999, 45.37593230399989, 52.29277847399993, 52.29277847399993, 41.63884286699994, 45.17778665899988, 45.17778665899988, 549.2955146490001, 44.6494884409999, 44.6494884409999, 46.752022491999924, 44.979641013999924, 50.28953644399991, 50.28953644399991, 43.17800137799986, 44.946639281999865, 44.946639281999865, 46.586281509999935, 44.814497100999915, 44.814497100999915, 46.42067626999989, 44.682490172999906, 44.682490172999906, 42.91480533299989, 46.321177383999895, 49.85559351199993, 49.85559351199993, 46.321177383999895, 44.5173462599999, 44.5173462599999, 44.5503479919999, 42.61859186299995, 42.61859186299995, 42.61859186299995, 51.38831652199991, 51.38831652199991, 51.354838257999916, 45.989831161999916, 45.989831161999916, 49.488505681999925, 52.990184618, 44.05505150599993, 44.05505150599993, 49.354932195999936, 44.022049773999925, 44.022049773999925, 43.95604630999992, 43.88990759299992, 43.88990759299992, 45.72472703599999, 43.88990759299992, 43.88990759299992, 43.856905860999916, 45.625228149999884, 45.625228149999884, 45.592107101999886, 43.79090239699991, 42.02643445299992, 42.02643445299992, 43.79090239699991, 43.724898932999906, 43.724898932999906, 41.89476904799989, 43.658760215999905, 43.658760215999905, 52.4523479479999, 45.32700297599985, 45.32700297599985, 52.385152787999914, 41.79612106799988, 39.96695993999987, 39.96695993999987, 41.69747308799987, 43.49375155599989, 43.49375155599989, 45.26076087999991, 41.76323840799995, 41.76323840799995, 39.96695993999987, 45.161261993999915, 45.161261993999915, 50.41689804199996, 48.62061981799991, 48.62061981799991, 45.128140945999974], \"power_mean\": 50.63567395171933, \"energy_millijoules\": 7104.430234878567, \"energy_joules\": 7.104430234878567, \"coremark_score\": 2138.351331, \"coremarks_per_mhz\": 3.712415505208333, \"ulpmark_cm_score\": 42.22717235327004}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [429.529871475, 429.529871475, 429.529871475, 427.777198247], \"power_mean\": 429.091703168, \"energy_millijoules\": 2145.45851584, \"energy_joules\": 2.14545851584}}, \"748800\": {\"active\": {\"elapsed_sec\": 107.931569646, \"elapsed_ns\": 107931569646, \"power_samples\": [37.70570410799996, 59.27279239199993, 57.17006472799994, 57.17006472799994, 62.28390351199994, 56.83023600799993, 56.83023600799993, 53.271601055999895, 51.54466250799993, 51.54466250799993, 60.31735322399993, 60.28316003999993, 60.28316003999993, 60.248966855999925, 60.18058048799992, 60.18058048799992, 60.112053983999886, 56.592411567999875, 60.112053983999886, 60.112053983999886, 58.250010439999926, 61.700313911999956, 61.700313911999956, 58.21593632799994, 60.009474431999934, 60.009474431999934, 58.07950023199993, 58.147788103999915, 58.147788103999915, 56.286677047999945, 56.286677047999945, 59.76998200799994, 59.76998200799994, 56.2187669679999, 56.082807647999914, 56.082807647999914, 50.77150508299991, 52.52942016299994, 52.52942016299994, 55.946987487999934, 59.462103215999946, 59.462103215999946, 57.70454535199991, 57.67047123999998, 57.67047123999998, 59.42791003199994, 57.56810925599996, 57.534035143999915, 57.534035143999915, 60.979334663999964, 59.154224424000006, 59.154224424000006, 59.08569791999997, 50.3008635729999, 50.3008635729999, 55.57320372799995, 557.2937239590001, 557.2937239590001, 58.53832670399993, 58.77781912799992, 58.77781912799992, 60.63593085599996, 57.124866503999954, 58.91473199999996, 58.91473199999996, 64.04694067799994, 100.5935694229999, 100.5935694229999, 55.19955912799992, 51.6860893139999, 51.6860893139999, 56.88620807199999, 55.131509887999925, 55.131509887999925, 58.606713071999934, 55.063599807999935, 56.78398573599992, 56.78398573599992, 56.715837511999894, 54.96173468799992, 54.96173468799992, 56.715837511999894, 54.791820327999915, 54.791820327999915, 49.49410856799989, 54.72391024799998, 54.72391024799998, 58.19625472799993, 56.34074298399992, 56.34074298399992, 59.84632709599987, 59.81201483999996, 54.553995887999974, 54.553995887999974, 51.01134172499991, 56.27259475999995, 56.27259475999995, 63.18260817399988, 63.14805752999996, 63.14805752999996, 57.8540426159999, 54.282216407999954, 54.282216407999954, 57.78565624799995, 57.78565624799995, 63.04440559799997, 63.04440559799997], \"power_mean\": 67.32960539603732, \"energy_millijoules\": 7266.9899940401, \"energy_joules\": 7.2669899940401, \"coremark_score\": 2779.733887, \"coremarks_per_mhz\": 3.712251451655983, \"ulpmark_cm_score\": 41.28256681872962}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [426.57069824999996, 426.57069824999996, 430.199285396, 428.458764588], \"power_mean\": 427.94986162099997, \"energy_millijoules\": 2139.7493081049997, \"energy_joules\": 2.139749308105}}, \"998400\": {\"active\": {\"elapsed_sec\": 80.945407469, \"elapsed_ns\": 80945407469, \"power_samples\": [15.966421742999955, 73.91470446900001, 71.59557325799989, 71.59557325799989, 67.74433915200001, 67.569655566, 67.569655566, 72.78562829699996, 72.6796870739999, 72.6796870739999, 76.24832233299998, 74.39304360600005, 74.39304360600005, 76.14166570200001, 70.85706992399997, 72.573890382, 72.573890382, 70.82192367599993, 74.25150506200004, 74.25150506200004, 74.14520613499991, 72.43268359500001, 72.43268359500001, 73.82659939199988, 72.25635577499992, 72.25635577499992, 67.08065597800004, 70.54060965000002, 70.54060965000002, 72.11514898799993, 70.39988061599996, 65.15901828, 65.15901828, 70.32958811999998, 70.39988061599996, 70.39988061599996, 70.32958811999998, 70.32958811999998, 70.32958811999998, 70.32958811999998, 73.72044548399998, 73.72044548399998, 78.92721176399999, 71.97408673199999, 71.97408673199999, 75.46680423599997, 70.18885908599992, 115.04573039400003, 115.04573039400003, 71.79761438099996, 78.78424337999996, 78.78424337999996, 78.85572757199992, 73.54337728499996, 73.54337728499996, 71.79761438099996, 69.80210631599999, 69.80210631599999, 71.69181768899995, 71.72708325299999, 71.69181768899995, 71.69181768899995, 73.50799264899996, 71.72708325299999, 71.72708325299999, 73.29553981399994, 73.29553981399994, 73.29553981399994, 71.55061090199996, 71.55061090199996, 71.55061090199996, 74.93395760199991, 71.44481420999995, 71.44481420999995, 74.86280467900002, 73.11847161499992, 71.26834185899992, 71.26834185899992, 69.626231034, 71.37413855099993], \"power_mean\": 72.52272733221247, \"energy_millijoules\": 5870.381714669122, \"energy_joules\": 5.870381714669121, \"coremark_score\": 3706.495015, \"coremarks_per_mhz\": 3.7124349108573718, \"ulpmark_cm_score\": 51.10400218955935}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [418.96203515, 418.96203515, 433.194273012, 424.41606899999994], \"power_mean\": 423.88360307799996, \"energy_millijoules\": 2119.4180153899997, \"energy_joules\": 2.1194180153899995}}, \"1209600\": {\"active\": {\"elapsed_sec\": 66.813118672, \"elapsed_ns\": 66813118672, \"power_samples\": [84.45860004499997, 84.45860004499997, 90.53594952599991, 95.29172685299994, 95.29172685299994, 88.16809737500006, 81.12366420799998, 81.12366420799998, 87.98566410199993, 87.98566410199993, 87.98566410199993, 87.87629378600008, 87.80323082900003, 85.98955833299993, 85.98955833299993, 89.36491510199988, 87.58434078400006, 87.58434078400006, 85.80772090799991, 82.21909603199998, 82.21909603199998, 82.21909603199998, 87.51142724000005, 87.51142724000005, 85.58969470799997, 88.96227832999995, 88.96227832999995, 87.18316687900011, 81.96625119100003, 87.14671010700005, 87.14671010700005, 80.18773558799995, 87.07379656300003, 87.07379656300003, 87.07379656300003, 97.32659930999984, 97.32659930999984, 93.66574253899995, 81.56886017699998, 81.56886017699998, 88.632943636, 86.89136329000002, 86.89136329000002, 86.708930017, 86.67247324500005, 88.41333720599988, 88.41333720599988, 84.89883163299993, 86.59955970100003, 86.59955970100003, 84.789669608, 86.49003997199992, 86.49003997199992, 84.68065650800003, 79.46768840800001, 79.46768840800001, 81.243816224, 84.68065650800003, 81.243816224, 81.243816224, 84.57164340800006, 81.09941799999996, 81.09941799999996, 84.53515678299999, 79.287639748, 79.287639748], \"power_mean\": 85.97443184793937, \"energy_millijoules\": 5744.21991781415, \"energy_joules\": 5.74421991781415, \"coremark_score\": 4490.480182, \"coremarks_per_mhz\": 3.7123678753306883, \"ulpmark_cm_score\": 52.226412688280064}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [932.8791547920001, 422.51985405, 422.51985405, 431.66926758], \"power_mean\": 552.397032618, \"energy_millijoules\": 2761.9851630900002, \"energy_joules\": 2.7619851630900003}}, \"1324800\": {\"active\": {\"elapsed_sec\": 61.002274612, \"elapsed_ns\": 61002274612, \"power_samples\": [-16.64743248000002, 95.9222059129998, 93.40705633599993, 93.40705633599993, 86.0524092949999, 92.8158168339998, 92.8158168339998, 89.23266055799985, 89.04918475799985, 89.04918475799985, 96.02482837499991, 92.52019708299991, 89.08587991799988, 89.08587991799988, 89.08587991799988, 89.04918475799985, 89.04918475799985, 97.68409571899991, 88.86555856799993, 88.86555856799993, 88.8288634079999, 92.29844442799998, 92.29844442799998, 94.03145930799991, 92.29844442799998, 92.26151087999989, 92.26151087999989, 86.9861202639998, 92.26151087999989, 92.26151087999989, 93.88309697299991, 93.84604435299997, 93.84604435299997, 88.64523721799986, 93.80899173299991, 93.80899173299991, 95.39260492499994, 91.9289575809999, 91.9289575809999, 95.35528088999996, 88.42491586799991, 88.35152554799987, 88.35152554799987, 91.78107202199993, 91.70720492599986, 91.70720492599986, 86.51033131599985, 93.43831367799993, 93.43831367799993, 93.28995134299981, 93.32700396299998, 93.32700396299998, 100.25355477599993, 95.02058331899985, 91.55931936699989, 91.55931936699989, 91.55931936699989, 93.14174086299982, 93.14174086299982, 93.06748376799982], \"power_mean\": 90.09349437196656, \"energy_millijoules\": 5495.90808443338, \"energy_joules\": 5.49590808443338, \"coremark_score\": 4918.274669, \"coremarks_per_mhz\": 3.7124657827596623, \"ulpmark_cm_score\": 54.58606574038611}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [423.121769364, 428.451629724, 428.451629724, 425.043025432], \"power_mean\": 426.267013561, \"energy_millijoules\": 2131.335067805, \"energy_joules\": 2.1313350678050003}}, \"1516800\": {\"active\": {\"elapsed_sec\": 53.282828105, \"elapsed_ns\": 53282828105, \"power_samples\": [104.16913718399991, 102.3234484319999, 102.3234484319999, 103.4540759279999, 101.38162564800001, 101.38162564800001, 102.92502079799993, 102.88725325799993, 102.88725325799993, 101.00498911199992, 101.04263733599993, 102.62272569299995, 102.62272569299995, 95.66917181499997, 93.90482318699986, 93.90482318699986, 104.23636186499999, 100.77894547199998, 100.77894547199998, 104.16058864099995, 107.61398993699987, 107.61398993699987, 107.61398993699987, 100.66584650399994, 100.66584650399994, 104.08466014399988, 102.32043058799997, 100.51525360799991, 100.51525360799991, 103.89522708399994, 103.89522708399994, 103.89522708399994, 107.308679391, 102.131438103, 102.131438103, 102.05590302299987, 110.64862051799997, 110.64862051799997, 103.6677521389999, 101.94260040299997, 101.94260040299997, 100.13846277599993, 107.04164984999994, 98.4887617839999, 98.4887617839999, 100.10081455199992, 101.86691053800001, 101.86691053800001, 98.338491368, 106.85102606999993, 106.85102606999993, 101.56461543299991, 106.73649555299988], \"power_mean\": 102.61445560367919, \"energy_millijoules\": 5467.588399018992, \"energy_joules\": 5.467588399018992, \"coremark_score\": 5630.841999, \"coremarks_per_mhz\": 3.7123167187500004, \"ulpmark_cm_score\": 54.86879737579125}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [919.1319545649999, 430.213593045, 414.87655638999996, 420.221543625], \"power_mean\": 546.11091190625, \"energy_millijoules\": 2730.5545595312497, \"energy_joules\": 2.7305545595312495}}, \"1612800\": {\"active\": {\"elapsed_sec\": 50.111676127, \"elapsed_ns\": 50111676127, \"power_samples\": [117.68802562199988, 117.68802562199988, 109.30582809599997, 106.96540033799994, 106.96540033799994, 110.07285890599991, 118.49945159199996, 108.11963491199998, 108.11963491199998, 109.84252281599998, 108.08139083999987, 108.08139083999987, 109.6505498699999, 107.92825781399989, 107.92825781399989, 109.61218672599995, 107.8135255979999, 107.8135255979999, 109.49709729399996, 114.66607290899998, 105.89728217399983, 105.89728217399983, 105.89728217399983, 107.54566035599993, 107.54566035599993, 105.82103266199994, 109.30512434799999, 109.30512434799999, 105.78290790599993, 107.50741628399993, 107.50741628399993, 109.11315140200003, 105.70665839399993, 105.70665839399993, 109.11315140200003, 105.668377389, 102.15135602099991, 102.15135602099991, 115.92149420699997, 117.6418801349999, 117.6418801349999, 110.75681104199992, 107.20130696999996, 107.20130696999996, 109.07478825799996, 107.31603918599995, 107.31603918599995, 107.20130696999996, 108.92133568199989, 108.92133568199989], \"power_mean\": 108.94154921937994, \"energy_millijoules\": 5459.243631255197, \"energy_joules\": 5.459243631255197, \"coremark_score\": 5987.306909, \"coremarks_per_mhz\": 3.712367875124008, \"ulpmark_cm_score\": 54.952667487203456}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [429.53639597, 420.95806835999997, 429.742509915, 429.742509915], \"power_mean\": 427.49487104, \"energy_millijoules\": 2137.4743552, \"energy_joules\": 2.1374743552}}, \"1708800\": {\"active\": {\"elapsed_sec\": 47.296312846, \"elapsed_ns\": 47296312846, \"power_samples\": [-23.156893316000094, 119.43510021200001, 118.14866319299989, 117.6418801349999, 117.6418801349999, 115.61061761999991, 118.97485064799997, 118.97485064799997, 115.33858070899993, 116.97926208500002, 116.97926208500002, 115.22206168099996, 116.90118492199991, 116.90118492199991, 121.90180711999989, 113.23261710599985, 113.23261710599985, 602.5481324239997, 117.801868104, 121.66574873999997, 121.66574873999997, 118.23188696400001, 118.23188696400001, 118.23188696400001, 116.355443116, 116.4724790269999, 116.4724790269999, 118.19280889999999, 121.469006568, 121.469006568, 118.11465277199994, 118.19280889999999, 121.5478001159999, 121.5478001159999, 118.07541455200004, 121.469006568, 121.469006568, 117.91910229599995, 117.88002423199993, 117.88002423199993, 116.16064937599998, 117.88002423199993, 117.88002423199993, 121.15431577199996, 116.08273188000004, 116.08273188000004, 121.11499956400002], \"power_mean\": 125.51529843414889, \"energy_millijoules\": 5936.41082170056, \"energy_joules\": 5.93641082170056, \"coremark_score\": 6343.701761, \"coremarks_per_mhz\": 3.712372285229401, \"ulpmark_cm_score\": 50.53558606546392}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [428.7707954300001, 420.26574548400004, 420.26574548400004, 430.65357099100004], \"power_mean\": 424.98896434725003, \"energy_millijoules\": 2124.94482173625, \"energy_joules\": 2.1249448217362503}}}}, \"6\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 160.643920095, \"elapsed_ns\": 160643920095, \"power_samples\": [44.26414220099991, 48.60145082399998, 48.60145082399998, 48.32871827999992, 51.743994087999965, 51.743994087999965, 48.12413395999994, 49.745633519999956, 49.745633519999956, 54.989432712999985, 46.366099807999944, 46.366099807999944, 54.88578078099994, 51.43504315999991, 54.92033142499997, 54.92033142499997, 49.711440335999896, 51.43504315999991, 51.43504315999991, 49.67724715199989, 51.263341255999876, 51.263341255999876, 49.54033427999991, 46.230279647999964, 46.230279647999964, 47.9537633999999, 49.64305396799995, 54.71288595999994, 54.71288595999994, 51.263341255999876, 54.71288595999994, 54.71288595999994, 49.50614109599991, 45.68672068799992, 45.68672068799992, 54.53999113899994, 47.68103085599995, 47.68103085599995, 47.64681709599995, 51.09163935199996, 51.09163935199996, 54.57468338399997, 56.26240226699991, 51.09163935199996, 51.09163935199996, 54.53999113899994, 49.47194791199996, 49.47194791199996, 47.68103085599995, 49.4035615439999, 49.4035615439999, 58.023274535999974, 51.09163935199996, 51.09163935199996, 81.71151340600005, 51.02301483999992, 45.92440596799992, 45.92440596799992, 51.12609223199996, 49.4035615439999, 49.4035615439999, 42.408620876999976, 51.05732709599988, 51.05732709599988, 47.61274298399991, 45.85649588799998, 45.85649588799998, 54.47088985099998, 50.95439032799993, 49.30084185599992, 49.30084185599992, 50.92007807199997, 50.7826884239999, 50.7826884239999, 49.02715624799998, 50.748376167999936, 50.748376167999936, 49.06134943199993, 55.91556301799994, 55.91556301799994, 59.32662184399999, 55.84622358599995, 55.84622358599995, 50.679751655999894, 47.23778810399989, 45.516806327999916, 45.516806327999916, 48.85605019199994, 50.54236200799994, 50.54236200799994, 48.85605019199994, 50.611127143999965, 50.611127143999965, 50.611127143999965, 48.82185700799994, 48.82185700799994, 50.54236200799994, 47.101352007999935, 47.06727789599995, 47.06727789599995, 45.34689196799991, 50.54236200799994, 50.54236200799994, 532.292046303, 49.82138275999995, 49.82138275999995, 53.60669894799997, 48.51397821599994, 48.51397821599994, 48.548171399999944, 48.51397821599994, 48.51397821599994, 48.51397821599994, 48.47978503199994, 45.075112487999945, 45.075112487999945, 50.199098823999975, 53.64124959199995, 53.64124959199995, 50.23341107999988, 50.06170917599991, 50.06170917599991, 46.726397127999974, 50.164786567999954, 50.164786567999954, 50.164786567999954, 48.445591847999935, 48.3770653439999, 48.3770653439999, 50.09602143199993, 46.62403514399995, 46.62403514399995, 46.55588691999992, 53.29545994999995, 53.29545994999995, 48.17190623999994, 48.206099424, 48.206099424, 46.45366458399991, 48.17190623999994, 46.419450823999966, 46.419450823999966, 49.82138275999995, 48.03499336799996, 48.03499336799996, 44.565508567999984, 48.00080018399996, 48.00080018399996, 49.752758247999964, 48.103379735999965, 48.103379735999965, 49.71844599199994, 46.28315437599997, 47.932413815999894, 47.932413815999894, 49.54674408799997, 49.54674408799997, 49.54674408799997, 52.98436255299998, 52.94981190899995], \"power_mean\": 52.992413779506194, \"energy_millijoules\": 8512.90908483617, \"energy_joules\": 8.51290908483617, \"coremark_score\": 1867.669398, \"coremarks_per_mhz\": 6.22556466, \"ulpmark_cm_score\": 35.24059719307733}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [433.08507294, 434.90613229200005, 426.420034563, 426.420034563], \"power_mean\": 430.2078185895, \"energy_millijoules\": 2151.0390929474997, \"energy_joules\": 2.1510390929475}}, \"652800\": {\"active\": {\"elapsed_sec\": 73.674778722, \"elapsed_ns\": 73674778722, \"power_samples\": [92.87083620499999, 92.87083620499999, 96.63517209599996, 91.00522818799999, 91.00522818799999, 97.63462428299994, 94.09523626399988, 94.09523626399988, 102.54042865799983, 99.00490394899992, 97.25663931299988, 97.25663931299988, 95.50510819199991, 97.14333669299998, 97.14333669299998, 95.31686707199998, 95.35451529599987, 95.35451529599987, 95.35451529599987, 97.06780161299986, 97.06780161299986, 95.31686707199998, 98.62588255599991, 96.91657666799989, 96.91657666799989, 96.91657666799989, 96.87880912799989, 96.87880912799989, 95.16611987999994, 96.84104158799988, 96.84104158799988, 93.34434560799986, 89.88574111299994, 89.88574111299994, 101.58668476199995, 97.82979788499989, 93.1565460399998, 93.1565460399998, 96.5765140229999, 96.5765140229999, 96.5765140229999, 96.5765140229999, 94.82713156799997, 94.82713156799997, 94.82713156799997, 96.5009789429999, 96.5009789429999, 105.00593660399994, 96.5387464829999, 96.5387464829999, 94.75168082399995, 96.38752153799993, 92.96874647199996, 92.96874647199996, 94.63873615199992, 94.67638437599993, 94.67638437599993, 96.31198645799992, 94.60108792799991, 94.60108792799991, 97.90557110899994, 92.93121731999992, 92.93121731999992, 101.31965522099989, 96.19852905299996, 103.03019531399997, 103.03019531399997, 94.48798895999988, 97.90557110899994, 97.90557110899994, 94.41269251199986, 94.29974783999984, 94.29974783999984], \"power_mean\": 95.98404946564375, \"energy_millijoules\": 7071.6036052228055, \"energy_joules\": 7.071603605222806, \"coremark_score\": 4072.877352, \"coremarks_per_mhz\": 6.239089080882353, \"ulpmark_cm_score\": 42.42319235462122}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [431.47570206, 426.356403935, 428.14064905500004, 428.14064905500004], \"power_mean\": 428.52835102625, \"energy_millijoules\": 2142.6417551312497, \"energy_joules\": 2.1426417551312498}}, \"825600\": {\"active\": {\"elapsed_sec\": 58.471580864, \"elapsed_ns\": 58471580864, \"power_samples\": [-18.139218622000044, 116.04223413199992, 121.62037906099994, 121.62037906099994, 121.14539969100002, 114.20460418800002, 114.20460418800002, 126.02430823600008, 129.1516961580001, 119.04586597400004, 119.04586597400004, 118.92739778100002, 120.59131112899996, 120.59131112899996, 117.14180670799993, 117.10249049999999, 117.10249049999999, 127.12781512800001, 118.69062301599996, 118.69062301599996, 125.42530024800004, 120.31426684800005, 118.61175196799996, 118.61175196799996, 120.4330927449999, 113.5788746959999, 113.5788746959999, 116.82711591200001, 125.34547613599995, 125.34547613599995, 120.31426684800005, 118.61175196799996, 118.61175196799996, 125.30556408000001, 120.19560305999988, 118.53288091999997, 118.53288091999997, 111.63887993600002, 120.15604846399998, 120.15604846399998, 118.45400987199997, 120.15604846399998, 120.15604846399998, 118.41441272699996, 121.73890345499996, 121.73890345499996, 118.2961061549999, 118.2961061549999, 118.2961061549999, 126.76737091399997, 125.06592816999995, 119.95811337499998, 119.95811337499998, 118.21723510700002, 116.51242511599986, 116.51242511599986, 116.3943153599999, 119.799732882], \"power_mean\": 117.323999124931, \"energy_millijoules\": 6860.119702121269, \"energy_joules\": 6.86011970212127, \"coremark_score\": 5132.152938, \"coremarks_per_mhz\": 6.216270515988372, \"ulpmark_cm_score\": 43.73101535053896}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [916.2460912500001, 430.04528579999993, 430.04528579999993, 426.928508125], \"power_mean\": 550.81629274375, \"energy_millijoules\": 2754.0814637187495, \"energy_joules\": 2.7540814637187494}}, \"979200\": {\"active\": {\"elapsed_sec\": 49.206178106, \"elapsed_ns\": 49206178106, \"power_samples\": [153.1883986079999, 153.1883986079999, 147.44407779599982, 146.61435355299994, 146.61435355299994, 152.99721942999992, 151.0477272619999, 151.0059090779999, 151.0059090779999, 150.79664677199997, 152.4938004839999, 152.4938004839999, 150.71301040399993, 150.50374809800002, 150.50374809800002, 152.20006781799992, 150.50374809800002, 150.50374809800002, 153.81575045900007, 152.11619330599996, 148.724030154, 148.724030154, 148.68216014399985, 150.37812215999992, 150.37812215999992, 152.07408417599987, 150.294485792, 150.294485792, 145.12091788399988, 153.64735180799988, 153.64735180799988, 156.996266692, 151.94827240799992, 151.94827240799992, 158.69522677600008, 151.78035151, 153.60529523600002, 153.60529523600002, 151.78035151, 151.90633515199994, 151.90633515199994, 150.08522348599985, 148.39009546199992, 148.39009546199992, 151.78035151, 148.39009546199992, 148.39009546199992, 150.04340530199994, 150.04340530199994], \"power_mean\": 151.04899021724484, \"energy_millijoules\": 7432.543515361202, \"energy_joules\": 7.432543515361202, \"coremark_score\": 6098.676587, \"coremarks_per_mhz\": 6.22822363868464, \"ulpmark_cm_score\": 40.363033109725535}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [431.315673124, 422.95970402700004, 426.60337342, 426.60337342], \"power_mean\": 426.87053099775005, \"energy_millijoules\": 2134.35265498875, \"energy_joules\": 2.13435265498875}}, \"1132800\": {\"active\": {\"elapsed_sec\": 42.440283109, \"elapsed_ns\": 42440283109, \"power_samples\": [186.3678956999999, 186.50206152799996, 186.50206152799996, 186.95430730399977, 184.72816528799996, 184.72816528799996, 182.6818684559999, 185.84278011999987, 185.84278011999987, 182.4608630159999, 182.23967642399992, 182.23967642399992, 190.65015710999995, 665.993059848, 665.993059848, 188.28938296799998, 181.885886568, 180.28117856700004, 180.28117856700004, 183.575296208, 180.32526033900007, 180.32526033900007, 181.79730323999996, 181.57629779999985, 181.57629779999985, 181.57629779999985, 185.04232755999993, 185.04232755999993, 190.11222961999994, 183.35351376800003, 184.95344909599982, 184.95344909599982, 183.22055328799996, 181.53209671200005, 181.53209671200005, 209.92938308699996, 181.48771447199994, 181.48771447199994, 183.13173132799983, 179.75183597699998, 179.75183597699998, 184.6866315759999], \"power_mean\": 207.1710740118809, \"energy_millijoules\": 8792.399033059817, \"energy_joules\": 8.792399033059818, \"coremark_score\": 7071.46898, \"coremarks_per_mhz\": 6.242469085451978, \"ulpmark_cm_score\": 34.12038044133193}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [428.91272033999996, 425.775581672, 429.38964782999994, 429.38964782999994], \"power_mean\": 428.36689941799995, \"energy_millijoules\": 2141.83449709, \"energy_joules\": 2.1418344970899996}}, \"1363200\": {\"active\": {\"elapsed_sec\": 35.388067851, \"elapsed_ns\": 35388067851, \"power_samples\": [200.793245958, 235.14777012000008, 235.14777012000008, 234.63298462099993, 232.17675495200007, 236.84629938499978, 236.84629938499978, 233.2398034609999, 229.72759680799987, 229.72759680799987, 232.95152515599983, 231.07440154399995, 231.07440154399995, 232.85549797999994, 236.0738761669998, 236.0738761669998, 262.540400004, 247.5552063059999, 232.66324685099988, 232.66324685099988, 235.880869239, 232.42298213399994, 232.42298213399994, 235.73591628999992, 235.54290936199988, 235.54290936199988, 232.18291419399992, 237.22634956399992, 237.22634956399992, 248.79619606799992, 232.03867665299998, 232.03867665299998, 232.03867665299998, 237.08103817799991, 231.94264947699986], \"power_mean\": 234.5123398775142, \"energy_millijoules\": 8298.938595482246, \"energy_joules\": 8.298938595482246, \"coremark_score\": 8481.524413, \"coremarks_per_mhz\": 6.2217755377053985, \"ulpmark_cm_score\": 36.14920107534151}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [424.97733661600006, 424.97733661600006, 430.328223318, 428.76379493999997], \"power_mean\": 427.2616728725, \"energy_millijoules\": 2136.3083643625, \"energy_joules\": 2.1363083643625}}, \"1536000\": {\"active\": {\"elapsed_sec\": 31.337173008, \"elapsed_ns\": 31337173008, \"power_samples\": [287.20422505799996, 287.20422505799996, 282.868321158, 284.7809708119999, 284.7809708119999, 285.78272781799996, 285.4188988079998, 285.4188988079998, 293.3761622849999, 284.8990214279999, 284.8990214279999, 294.89531788799997, 291.33507410199985, 288.19763328599987, 288.19763328599987, 287.88431813099993, 287.8321345829999, 287.8321345829999, 287.7277674869999, 282.6550391939998, 282.6550391939998, 290.7580058039999, 287.5710029759999, 287.5710029759999, 287.3622687839999, 285.6351213599999, 290.7055841119998, 290.7055841119998, 283.80753439799986, 287.1533207249999, 287.1533207249999], \"power_mean\": 287.23446068319345, \"energy_millijoules\": 9001.115988288808, \"energy_joules\": 9.001115988288808, \"coremark_score\": 9577.932444, \"coremarks_per_mhz\": 6.2356331015625, \"ulpmark_cm_score\": 33.329200555833815}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [440.94560436, 429.52032098200004, 429.52032098200004, 429.75967675600003], \"power_mean\": 432.43648077, \"energy_millijoules\": 2162.18240385, \"energy_joules\": 2.1621824038499997}}, \"1747200\": {\"active\": {\"elapsed_sec\": 27.558858219, \"elapsed_ns\": 27558858219, \"power_samples\": [-20.97727526300008, 357.3431419859999, 351.68485202799985, 351.68485202799985, 350.319999428, 354.57677192, 354.57677192, 355.786840013, 348.89854969799995, 348.89854969799995, 350.391382556, 346.9474404059999, 350.0494544859999, 350.0494544859999, 353.26076190999987, 354.81215856299997, 354.81215856299997, 361.34945755999996, 354.6402388469999, 354.6402388469999, 356.18715967200006, 356.0148827399999, 356.0148827399999, 362.48998990399997, 355.90003145199995, 354.181316545, 354.181316545], \"power_mean\": 339.9524214547407, \"energy_millijoules\": 9368.700584076934, \"energy_joules\": 9.368700584076935, \"coremark_score\": 10892.059688, \"coremarks_per_mhz\": 6.234008521062271, \"ulpmark_cm_score\": 32.02151646407408}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [428.62270619, 423.85395685500004, 423.85395685500004, 431.02029432000006], \"power_mean\": 426.837728555, \"energy_millijoules\": 2134.188642775, \"energy_joules\": 2.134188642775}}, \"1843200\": {\"active\": {\"elapsed_sec\": 26.169826136, \"elapsed_ns\": 26169826136, \"power_samples\": [-21.56857238200007, 384.72802569900006, 380.5890498689999, 380.5890498689999, 385.6987897079999, 385.0432738079998, 385.0432738079998, 384.50665408799983, 377.6326731599999, 377.6326731599999, 387.22882603499994, 386.98934672599984, 386.98934672599984, 386.98934672599984, 385.3290675199998, 385.2693782879999, 385.2693782879999, 380.11769332199987, 378.16497948299997, 378.16497948299997, 399.5218204829999, 379.9396980059999, 379.9396980059999, 384.67224133999986, 384.6125521079999, 384.6125521079999], \"power_mean\": 368.2194536705768, \"energy_millijoules\": 9636.239082451903, \"energy_joules\": 9.636239082451903, \"coremark_score\": 11470.520762, \"coremarks_per_mhz\": 6.223155795355902, \"ulpmark_cm_score\": 31.132477871612355}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [427.7250913980001, 427.7250913980001, 434.996983573, 426.8266661099999], \"power_mean\": 429.31845811975, \"energy_millijoules\": 2146.59229059875, \"energy_joules\": 2.14659229059875}}, \"1996800\": {\"active\": {\"elapsed_sec\": 24.160927699, \"elapsed_ns\": 24160927699, \"power_samples\": [-18.74634190200004, 459.7631688720001, 451.25843840800013, 460.30715064399993, 460.30715064399993, 454.573137315, 457.28626255699993, 457.28626255699993, 458.4127054839999, 458.21683912, 458.21683912, 464.61686792099994, 453.1435782789999, 453.1435782789999, 462.7035543819998, 457.6942612389999, 455.91689725399993, 455.91689725399993, 460.6632462359999, 460.5321918839998, 460.5321918839998, 462.17811535599986, 457.1061269929999, 457.1061269929999], \"power_mean\": 438.2556352822083, \"energy_millijoules\": 10588.662717732746, \"energy_joules\": 10.588662717732747, \"coremark_score\": 12425.447316, \"coremarks_per_mhz\": 6.222679945913462, \"ulpmark_cm_score\": 28.332189625569285}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [433.963417762, 431.134802835, 431.134802835, 434.75381359], \"power_mean\": 432.74670925550004, \"energy_millijoules\": 2163.7335462775, \"energy_joules\": 2.1637335462775}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sdm670/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 445 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 748 998 1209 1324 1516 1612 1708\n\n 300:  1114     3.7 C/MHz     43 mW   11.6 J   25.8 I/mJ   269.4 s\n 576:  2138     3.7 C/MHz     51 mW    7.1 J   42.2 I/mJ   140.3 s\n 748:  2780     3.7 C/MHz     67 mW    7.3 J   41.3 I/mJ   107.9 s\n 998:  3706     3.7 C/MHz     73 mW    5.9 J   51.1 I/mJ    80.9 s\n1209:  4490     3.7 C/MHz     86 mW    5.7 J   52.2 I/mJ    66.8 s\n1324:  4918     3.7 C/MHz     90 mW    5.5 J   54.6 I/mJ    61.0 s\n1516:  5631     3.7 C/MHz    103 mW    5.5 J   54.9 I/mJ    53.3 s\n1612:  5987     3.7 C/MHz    109 mW    5.5 J   55.0 I/mJ    50.1 s\n1708:  6344     3.7 C/MHz    126 mW    5.9 J   50.5 I/mJ    47.3 s\n\n\n===== CPU 6 =====\nFrequencies: 300 652 825 979 1132 1363 1536 1747 1843 1996\n\n 300:  1868     6.2 C/MHz     53 mW    8.5 J   35.2 I/mJ   160.6 s\n 652:  4073     6.2 C/MHz     96 mW    7.1 J   42.4 I/mJ    73.7 s\n 825:  5132     6.2 C/MHz    117 mW    6.9 J   43.7 I/mJ    58.5 s\n 979:  6099     6.2 C/MHz    151 mW    7.4 J   40.4 I/mJ    49.2 s\n1132:  7071     6.2 C/MHz    207 mW    8.8 J   34.1 I/mJ    42.4 s\n1363:  8482     6.2 C/MHz    235 mW    8.3 J   36.1 I/mJ    35.4 s\n1536:  9578     6.2 C/MHz    287 mW    9.0 J   33.3 I/mJ    31.3 s\n1747: 10892     6.2 C/MHz    340 mW    9.4 J   32.0 I/mJ    27.6 s\n1843: 11471     6.2 C/MHz    368 mW    9.6 J   31.1 I/mJ    26.2 s\n1996: 12425     6.2 C/MHz    438 mW   10.6 J   28.3 I/mJ    24.2 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sdm670/main/uptime.txt",
    "content": " 05:26:04 up 27 min,  load average: 1.89, 1.88, 1.61\n"
  },
  {
    "path": "results/sdm670/main/versions.txt",
    "content": "Kernel: Linux version 4.9.332 (pmos@archlinux) (gcc version 12.2.1 20220924 (Alpine 12.2.1_git20220924-r4) ) #3 SMP PREEMPT Fri Dec 16 01:48:01 UTC 2022\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sdm710/main/cmdline.txt",
    "content": "rcupdate.rcu_expedited=1 core_ctl_disable_cpumask=6-7 console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0xA90000 androidboot.hardware=qcom androidboot.console=ttyMSM0 msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 service_locator.enable=1 androidboot.configfs=true androidboot.usbcontroller=a600000.dwc3 swiotlb=1 firmware_class.path=/vendor/firmware_mnt/image loop.max_part=7 kpti=off androidboot.init_fatal_reboot_target=recovery buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.realmebootstate=orange androidboot.keymaster=1 root=PARTUUID=72924a1e-bc4a-b0b5-9762-218742bc5f23 androidboot.bootdevice=7c4000.sdhci androidboot.serialno=REDACTED androidboot.baseband=msm msm_drm.dsi_display0=dsi_oppo18621dsjm_hx83112a_1080_2340_video_display:config0 skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=0 androidboot.dtb_idx=0 lk_version=V1.0 androidboot.startupmode=hard_reset androidboot.mode=reboot printk.disable_uart=1 short_c_feature_sw_status=0 eng_version=0 is_confidential=1 simcardnum.doublesim=1\n"
  },
  {
    "path": "results/sdm710/main/cpufreq_stats/0/time_in_state",
    "content": "300000 107417\n576000 14866\n748800 11649\n998400 8938\n1209600 7533\n1324800 6929\n1516800 6228\n1612800 5825\n1708800 6031\n"
  },
  {
    "path": "results/sdm710/main/cpufreq_stats/0/total_trans",
    "content": "12\n"
  },
  {
    "path": "results/sdm710/main/cpufreq_stats/6/time_in_state",
    "content": "300000 17025\n652800 8254\n825600 6747\n979200 5843\n1132800 5138\n1363200 4435\n1536000 4034\n1747200 3631\n1843200 3530\n1996800 3329\n2054400 3230\n2169600 3128\n2208000 107092\n"
  },
  {
    "path": "results/sdm710/main/cpufreq_stats/6/total_trans",
    "content": "15\n"
  },
  {
    "path": "results/sdm710/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 12 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x6\nCPU part\t: 0x802\nCPU revision\t: 13\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x6\nCPU part\t: 0x802\nCPU revision\t: 13\n\nHardware\t: Qualcomm Technologies, Inc SDM710\n"
  },
  {
    "path": "results/sdm710/main/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. SDM710 PM660 + PM660A MTP;\nCompatible: qcom,sdm670-mtp;qcom,sdm670;qcom,mtp;\n"
  },
  {
    "path": "results/sdm710/main/kernel.log",
    "content": "[    0.000000]  (0)[0:swapper]Booting Linux on physical CPU 0x0\n[    0.000000]  (0)[0:swapper]Linux version 4.9.294-perf+ (KKShedge@cloud.drone.io) (Cosmic clang version 14.0.0 (https://github.com/llvm/llvm-project 683cbc12b33e5c8dc8d29bf5ed79fbf45763aadd)) #200 SMP PREEMPT Mon Dec 27 10:30:29 UTC 2021\n[    0.000000]  (0)[0:swapper]Boot CPU: AArch64 Processor [517f803c]\n[    0.000000]  (0)[0:swapper]Machine: Qualcomm Technologies, Inc. SDM710 PM660 + PM660A MTP\n[    0.000000]  (0)[0:swapper]core_ctl: disable_cpumask=6-7\n[    0.000000]  (0)[0:swapper]earlycon: msm_geni_serial0 at MMIO 0x0000000000a90000 (options '')\n[    0.000000]  (0)[0:swapper]bootconsole [msm_geni_serial0] enabled\n[    0.000000]  (0)[0:swapper]Reserved memory: created CMA memory pool at 0x00000000fec00000, size 16 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000]  (0)[0:swapper]Reserved memory: created CMA memory pool at 0x00000000f1c00000, size 208 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000]  (0)[0:swapper]Reserved memory: created CMA memory pool at 0x00000000f1400000, size 8 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000]  (0)[0:swapper]Reserved memory: created CMA memory pool at 0x00000000f0c00000, size 8 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node sdsp_region, compatible id shared-dma-pool\n[    0.000000]  (0)[0:swapper]Reserved memory: created CMA memory pool at 0x00000000eec00000, size 32 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000]  (0)[0:swapper]Reserved memory: created CMA memory pool at 0x000000017bc00000, size 36 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000]  (0)[0:swapper]Reserved memory: created CMA memory pool at 0x00000000ee400000, size 8 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000085700000, size 6 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node hyp_region@85700000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000085e00000, size 1 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node xbl_region@85e00000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000085fc0000, size 73 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node removed_region@85fc0000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x000000008ab00000, size 5 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node camera_region@8ab00000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x000000008b000000, size 150 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node modem_region@8b000000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000094600000, size 5 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node pil_video_region@94600000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000094b00000, size 1 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node wlan_msa_region@94B00000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000094c00000, size 8 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node cdsp_regions@94C00000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000095400000, size 2 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node pil_mba_region@0x95400000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000095600000, size 30 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node pil_adsp_region@95600000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000097400000, size 0 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node ips_fw_region@0x97400000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000097410000, size 0 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node ipa_gsi_region@0x97410000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000097415000, size 0 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node gpu_region@0x97415000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Reserved memory: created DMA memory pool at 0x000000009e400000, size 20 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node qseecom_region@0x9e400000, compatible id shared-dma-pool\n[    0.000000]  (0)[0:swapper]On node 0 totalpages: 963945\n[    0.000000]  (0)[0:swapper]  DMA zone: 6987 pages used for memmap\n[    0.000000]  (0)[0:swapper]  DMA zone: 0 pages reserved\n[    0.000000]  (0)[0:swapper]  DMA zone: 447145 pages, LIFO batch:31\n[    0.000000]  (0)[0:swapper]  Normal zone: 8075 pages used for memmap\n[    0.000000]  (0)[0:swapper]  Normal zone: 516800 pages, LIFO batch:31\n[    0.000000]  (0)[0:swapper]psci: probing for conduit method from DT.\n[    0.000000]  (0)[0:swapper]psci: PSCIv1.1 detected in firmware.\n[    0.000000]  (0)[0:swapper]psci: Using standard PSCI v0.2 function IDs\n[    0.000000]  (0)[0:swapper]psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000]  (0)[0:swapper]psci: SMC Calling Convention v1.0\n[    0.000000]  (0)[0:swapper]random: fast init done\n[    0.000000]  (0)[0:swapper]percpu: Embedded 22 pages/cpu s50840 r8192 d31080 u90112\n[    0.000000]  (0)[0:swapper]pcpu-alloc: s50840 r8192 d31080 u90112 alloc=22*4096\n[    0.000000]  (0)[0:swapper]pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000]  (0)[0:swapper]Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 948883\n[    0.000000]  (0)[0:swapper]Kernel command line: rcupdate.rcu_expedited=1 core_ctl_disable_cpumask=6-7 console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0xA90000 androidboot.hardware=qcom androidboot.console=ttyMSM0 msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 service_locator.enable=1 androidboot.configfs=true androidboot.usbcontroller=a600000.dwc3 swiotlb=1 firmware_class.path=/vendor/firmware_mnt/image loop.max_part=7 kpti=off androidboot.init_fatal_reboot_target=recovery buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.realmebootstate=orange androidboot.keymaster=1 root=PARTUUID=72924a1e-bc4a-b0b5-9762-218742bc5f23 androidboot.bootdevice=7c4000.sdhci androidboot.serialno=REDACTED androidboot.baseband=msm msm_drm.dsi_display0=dsi_oppo18621dsjm_hx83112a_1080_2340_video_display:config0 skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=0 androidboot.dtb_idx=0 lk_version=V1.0 androidb\n[    0.000000]  (0)[0:swapper][OPPO_CHG][oppo_short_c_feature_sw_status_init]short_c_feature_sw_status[0]\n[    0.000000]  (0)[0:swapper]log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000]  (0)[0:swapper]log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000]  (0)[0:swapper]log_buf_len min size: 131072 bytes\n[    0.000000]  (0)[0:swapper]log_buf_len: 1048576 bytes\n[    0.000000]  (0)[0:swapper]early log buf free: 123084(93%)\n[    0.000000]  (0)[0:swapper]PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000]  (0)[0:swapper]Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000]  (0)[0:swapper]Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000]  (0)[0:swapper]software IO TLB: mapped [mem 0xfffbf000-0xfffff000] (0MB)\n[    0.000000]  (0)[0:swapper]Memory: 3362692K/3855780K available (22014K kernel code, 4508K rwdata, 8896K rodata, 6144K init, 4855K bss, 169504K reserved, 323584K cma-reserved)\n[    0.000000]  (0)[0:swapper]Virtual kernel memory layout:\n[    0.000000]  (0)[0:swapper]    modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n[    0.000000]  (0)[0:swapper]    vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)\n[    0.000000]  (0)[0:swapper]      .text : 0x        (ptrval) - 0x        (ptrval)   ( 22016 KB)\n[    0.000000]  (0)[0:swapper]    .rodata : 0x        (ptrval) - 0x        (ptrval)   ( 10240 KB)\n[    0.000000]  (0)[0:swapper]      .init : 0x        (ptrval) - 0x        (ptrval)   (  6144 KB)\n[    0.000000]  (0)[0:swapper]      .data : 0x        (ptrval) - 0x        (ptrval)   (  4508 KB)\n[    0.000000]  (0)[0:swapper]       .bss : 0x        (ptrval) - 0x        (ptrval)   (  4856 KB)\n[    0.000000]  (0)[0:swapper]    fixed   : 0xffffffbefe7fb000 - 0xffffffbefec00000   (  4116 KB)\n[    0.000000]  (0)[0:swapper]    PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)\n[    0.000000]  (0)[0:swapper]    vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)\n[    0.000000]  (0)[0:swapper]              0xffffffbf82000000 - 0xffffffbf85f8b000   (    63 MB actual)\n[    0.000000]  (0)[0:swapper]    memory  : 0xffffffe080000000 - 0xffffffe17e2c0000   (  4066 MB)\n[    0.000000]  (0)[0:swapper]SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000]  (0)[0:swapper/0]Preemptible hierarchical RCU implementation.\n[    0.000000]  (0)[0:swapper/0]\tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000]  (0)[0:swapper/0]\n[    0.000000]  (0)[0:swapper/0]**********************************************************\n[    0.000000]  (0)[0:swapper/0]**   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000]  (0)[0:swapper/0]**                                                      **\n[    0.000000]  (0)[0:swapper/0]** trace_printk() being used. Allocating extra memory.  **\n[    0.000000]  (0)[0:swapper/0]**                                                      **\n[    0.000000]  (0)[0:swapper/0]** This means that this is a DEBUG kernel and it is     **\n[    0.000000]  (0)[0:swapper/0]** unsafe for production use.                           **\n[    0.000000]  (0)[0:swapper/0]**                                                      **\n[    0.000000]  (0)[0:swapper/0]** If you see this message and you are not debugging    **\n[    0.000000]  (0)[0:swapper/0]** the kernel, report this immediately to your vendor!  **\n[    0.000000]  (0)[0:swapper/0]**                                                      **\n[    0.000000]  (0)[0:swapper/0]**   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000]  (0)[0:swapper/0]**********************************************************\n[    0.000000]  (0)[0:swapper/0]NR_IRQS:64 nr_irqs:64 0\n[    0.000000]  (0)[0:swapper/0]NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000]  (0)[0:swapper/0]\tOffload RCU callbacks from all CPUs\n[    0.000000]  (0)[0:swapper/0]\tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000]  (0)[0:swapper/0]arm_arch_timer: Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000]  (0)[0:swapper/0]clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000005]  (0)[0:swapper/0]sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000027]  (0)[0:swapper/0]clocksource: Switched to clocksource arch_sys_counter\n[    0.001735]  (0)[0:swapper/0]Console: colour dummy device 80x25\n[    0.001758]  (0)[0:swapper/0]Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001770]  (0)[0:swapper/0]pid_max: default: 32768 minimum: 301\n[    0.001828]  (0)[0:swapper/0]Security Framework initialized\n[    0.001838]  (0)[0:swapper/0]SELinux:  Initializing.\n[    0.001885]  (0)[0:swapper/0]SELinux:  Starting in permissive mode\n[    0.001919]  (0)[0:swapper/0]Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001924]  (0)[0:swapper/0]Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.002983]  (0)[1:swapper/0]/cpus/cpu@0: Missing clock-frequency property\n[    0.002993]  (0)[1:swapper/0]/cpus/cpu@100: Missing clock-frequency property\n[    0.003000]  (0)[1:swapper/0]/cpus/cpu@200: Missing clock-frequency property\n[    0.003006]  (0)[1:swapper/0]/cpus/cpu@300: Missing clock-frequency property\n[    0.003014]  (0)[1:swapper/0]/cpus/cpu@400: Missing clock-frequency property\n[    0.003022]  (0)[1:swapper/0]/cpus/cpu@500: Missing clock-frequency property\n[    0.003030]  (0)[1:swapper/0]/cpus/cpu@600: Missing clock-frequency property\n[    0.003039]  (0)[1:swapper/0]/cpus/cpu@700: Missing clock-frequency property\n[    0.003107]  (0)[1:swapper/0]sched-energy: Sched-energy-costs installed from DT\n[    0.011500]  (0)[1:swapper/0]ASID allocator initialised with 32768 entries\n[    0.021955]  (0)[1:swapper/0]MSM Memory Dump base table set up\n[    0.021978]  (0)[1:swapper/0]MSM Memory Dump apps data table set up\n[    0.034009]  (1)[0:swapper/1]CPU1: Booted secondary processor [517f803c]\n[    0.043465]  (2)[0:swapper/2]CPU2: Booted secondary processor [517f803c]\n[    0.052956]  (3)[0:swapper/3]CPU3: Booted secondary processor [517f803c]\n[    0.062536]  (4)[0:swapper/4]CPU4: Booted secondary processor [517f803c]\n[    0.072260]  (5)[0:swapper/5]CPU5: Booted secondary processor [517f803c]\n[    0.082875]  (6)[0:swapper/6]CPU6: Booted secondary processor [516f802d]\n[    0.093327]  (7)[0:swapper/7]CPU7: Booted secondary processor [516f802d]\n[    0.093667]  (0)[1:swapper/0]Brought up 8 CPUs\n[    0.093673]  (0)[1:swapper/0]SMP: Total of 8 processors activated.\n[    0.093678]  (0)[1:swapper/0]CPU features: detected feature: GIC system register CPU interface\n[    0.093682]  (0)[1:swapper/0]CPU features: detected feature: Privileged Access Never\n[    0.093684]  (0)[1:swapper/0]CPU features: detected feature: User Access Override\n[    0.093687]  (0)[1:swapper/0]CPU features: detected feature: 32-bit EL0 Support\n[    0.093692]  (0)[1:swapper/0]CPU features: kernel page table isolation forced OFF by command line option\n[    0.094225]  (0)[1:swapper/0]CPU: All CPU(s) started at EL1\n[    0.094275]  (0)[13:migration/0]alternatives: patching kernel code\n[    0.096286]  (0)[1:swapper/0]CPU0: update max cpu_capacity 1024\n[    0.164540]  (0)[1:swapper/0]clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.164556]  (0)[1:swapper/0]futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.171158]  (0)[1:swapper/0]pinctrl core: initialized pinctrl subsystem\n[    0.171922]  (0)[1:swapper/0]NET: Registered protocol family 16\n[    0.173414]  (0)[1:swapper/0]schedtune: init normalization constants...\n[    0.173423]  (0)[1:swapper/0]schedtune: CLUSTER[0]        min_pwr:     1 max_pwr:    19\n[    0.173429]  (0)[1:swapper/0]schedtune: CPU[0]            min_pwr:     4 max_pwr:   139\n[    0.173433]  (0)[1:swapper/0]schedtune: SYSTEM            min_pwr:     5 max_pwr:   158\n[    0.173438]  (0)[1:swapper/0]schedtune: using normalization constants mul: 2891383213 sh1: 1 sh2: 7\n[    0.173441]  (0)[1:swapper/0]schedtune: verify normalization constants...\n[    0.173445]  (0)[1:swapper/0]schedtune: max_pwr/2^0:  153 => norm_pwr:  1024\n[    0.173448]  (0)[1:swapper/0]schedtune: max_pwr/2^1:   76 => norm_pwr:   508\n[    0.173450]  (0)[1:swapper/0]schedtune: max_pwr/2^2:   38 => norm_pwr:   254\n[    0.173453]  (0)[1:swapper/0]schedtune: max_pwr/2^3:   19 => norm_pwr:   127\n[    0.173455]  (0)[1:swapper/0]schedtune: max_pwr/2^4:    9 => norm_pwr:    60\n[    0.173457]  (0)[1:swapper/0]schedtune: max_pwr/2^5:    4 => norm_pwr:    26\n[    0.173462]  (0)[1:swapper/0]schedtune: configured to support 5 boost groups\n[    0.175236]  (0)[1:swapper/0]cpuidle: using governor menu\n[    0.175263]  (0)[1:swapper/0]cpuidle: using governor qcom\n[    0.179719]  (0)[1:swapper/0]vdso32: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.179728]  (0)[1:swapper/0]vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.179733]  (0)[1:swapper/0]hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.180534]  (0)[1:swapper/0]DMA: preallocated 256 KiB pool for atomic allocations\n[    0.182222]  (0)[1:swapper/0]serialID 0x9d3518b6\n[    0.182270]  (0)[1:swapper/0]boot_mode_init: parse boot_mode\n[    0.182294]  (0)[1:swapper/0]board_boot_mode_init boot_mode=reboot\n[    0.182317]  (0)[1:swapper/0]board_mfg_mode_init, ftm_mode=0\n[    0.182337]  (0)[1:swapper/0]start_reason_init: parse poweron reason hard_reset i = 10\n[    0.182366]  (0)[1:swapper/0]songxh create systeminto node suscess!\n[    0.183763]  (0)[1:swapper/0]exit: IPA_USB init success!\n[    0.187233]  (0)[1:swapper/0]irq: no irq domain found for /soc/pinctrl@03400000 !\n[    0.190820]  (0)[1:swapper/0]OF: amba_device_add() failed (-16) for /soc/cti@6867000\n[    0.194082]  (0)[1:swapper/0]irq: no irq domain found for /soc/qcom,mdss_mdp@ae00000 !\n[    0.194173]  (0)[1:swapper/0]irq: no irq domain found for /soc/qcom,mdss_mdp@ae00000 !\n[    0.194257]  (0)[1:swapper/0]irq: no irq domain found for /soc/qcom,mdss_mdp@ae00000 !\n[    0.195225]  (0)[1:swapper/0]sps:sps is ready.\n[    0.198125]  (0)[1:swapper/0]unable to find DT imem DLOAD mode node\n[    0.199903]  (0)[1:swapper/0]unable to find DT imem EDLOAD mode node\n[    0.203555]  (0)[1:swapper/0]msm_watchdog 17980000.qcom,wdt: wdog absent resource not present\n[    0.203575]  (0)[1:swapper/0]msm_watchdog 17980000.qcom,wdt: No need to allocate memory for scandumps\n[    0.204444]  (0)[1:swapper/0]msm_watchdog 17980000.qcom,wdt: MSM Watchdog Initialized\n[    0.205613]  (0)[1:swapper/0]platform soc:mem_dump: assigned reserved memory node mem_dump_region\n[    0.236139]  (0)[77:kworker/u16:1]spmi spmi-0: PMIC arbiter version v5 (0x50000000)\n[    0.240792]  (0)[77:kworker/u16:1]LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.240898]  (0)[77:kworker/u16:1]OLEDB: qpnp_oledb_regulator_probe: Failed to parse common OLEDB device tree\n[    0.241779]  (0)[1:swapper/0]platform 62400000.qcom,lpass: assigned reserved memory node pil_adsp_region@95600000\n[    0.242394]  (0)[1:swapper/0]platform soc:qcom,ipa_fws: assigned reserved memory node ips_fw_region@0x97400000\n[    0.242536]  (0)[1:swapper/0]platform 4080000.qcom,mss: assigned reserved memory node modem_region@8b000000\n[    0.242618]  (0)[1:swapper/0]platform aae0000.qcom,venus: assigned reserved memory node pil_video_region@94600000\n[    0.242723]  (0)[1:swapper/0]platform 8300000.qcom,turing: assigned reserved memory node cdsp_regions@94C00000\n[    0.243175]  (0)[1:swapper/0]platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.246635]  (0)[1:swapper/0]pm660l_s3_level: Bringing 1uV into 17-17uV\n[    0.246728]  (0)[1:swapper/0]pm660l_s3_level: supplied by pm660l_s1_level\n[    0.246810]  (0)[1:swapper/0]pm660l_s3_level_ao: Bringing 1uV into 17-17uV\n[    0.246891]  (0)[1:swapper/0]pm660l_s3_level_ao: supplied by pm660l_s1_level_ao\n[    0.256666]  (0)[1:swapper/0]sdm670-pinctrl 3400000.pinctrl: invalid resource\n[    0.267507]  (0)[1:swapper/0]platform soc:qcom,kgsl-hyp: assigned reserved memory node gpu_region@0x97415000\n[    0.293298]  (0)[1:swapper/0]gpu_cx_gdsc: supplied by pm660l_s3_level\n[    0.302087]  (0)[1:swapper/0]cam_cc-sdm845 ad00000.qcom,camcc: Registered Camera CC clocks\n[    0.303384]  (0)[1:swapper/0]qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.304517]  (0)[1:swapper/0]clk-rpmh soc:qcom,rpmhclk: Registered RPMh clocks\n[    0.306599]  (0)[1:swapper/0]disp_cc-sdm845 af00000.qcom,dispcc: Registered Display CC clocks\n[    0.319864]  (0)[1:swapper/0]gcc-sdm845 100000.qcom,gcc: Registered GCC clocks\n[    0.321084]  (0)[1:swapper/0]clk: gpu_cc_gx_gfx3d_clk_src: set OPP pair(180000000 Hz: 49 uV) on 5000000.qcom,kgsl-3d0\n[    0.321430]  (0)[1:swapper/0]clk: gpu_cc_gx_gfx3d_clk_src: set OPP pair(700000000 Hz: 385 uV) on 5000000.qcom,kgsl-3d0\n[    0.321523]  (0)[1:swapper/0]clk: gpu_cc_gx_gfx3d_clk_src: set OPP pair(780000000 Hz: 417 uV) on 5000000.qcom,kgsl-3d0\n[    0.321593]  (0)[1:swapper/0]gfxcc-sdm845 5090000.qcom,gfxcc: Registered GFX CC clocks\n[    0.323238]  (0)[1:swapper/0]clk: gpu_cc_gmu_clk_src: set OPP pair(19200000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.323289]  (0)[1:swapper/0]clk: gpu_cc_gmu_clk_src: set OPP pair(200000000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.323458]  (0)[1:swapper/0]gpu_cc-sdm845 5090000.qcom,gpucc: Registered GPU CC clocks\n[    0.324712]  (0)[1:swapper/0]video_cc-sdm845 ab00000.qcom,videocc: Registered Video CC clocks\n[    0.326465]  (0)[1:swapper/0]KPI: Bootloader start count = 81657\n[    0.326470]  (0)[1:swapper/0]KPI: Bootloader end count = 149121\n[    0.326473]  (0)[1:swapper/0]KPI: Bootloader display count = 4263643411\n[    0.326476]  (0)[1:swapper/0]KPI: Bootloader load kernel count = 86319338\n[    0.326481]  (0)[1:swapper/0]KPI: Kernel MPM timestamp = 168387\n[    0.326483]  (0)[1:swapper/0]KPI: Kernel MPM Clock frequency = 32768\n[    0.326507]  (0)[1:swapper/0]socinfo_print: v0.15, id=360, ver=1.1, raw_id=219, raw_ver=1, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65563, pmic_die_revision=131072 foundry_id=3 serial_number=2637502646 num_pmics=2 chip_family=0x55 raw_device_family=0x6 raw_device_number=0x4 nproduct_id=0x400 num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0x6 ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.326587]  (0)[1:swapper/0]Minidump: Enabled with max number of regions 200\n[    0.326589]  (0)[1:swapper/0]msm_bus_fabric_rpmh_init_driver\n[    0.327226]  (0)[1:swapper/0]msm_bus: Probe started\n[    0.327763]  (0)[1:swapper/0]msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.327817]  (0)[1:swapper/0]msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.327832]  (0)[1:swapper/0]msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.327889]  (0)[1:swapper/0]msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.330100]  (0)[1:swapper/0]msm_bus: DT Parsing complete\n[    0.333214]  (0)[1:swapper/0]msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.333389]  (0)[1:swapper/0]msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.333439]  (0)[1:swapper/0]msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.333609]  (0)[1:swapper/0]msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.347215]  (0)[1:swapper/0]camera_ldo: supplied by pm660_s6\n[    0.347420]  (0)[1:swapper/0]camera_rear_ldo: supplied by pm660_s6\n[    0.347617]  (0)[1:swapper/0]camera_vio_ldo: supplied by pm660_s4\n[    0.347817]  (0)[1:swapper/0]camera_vana_ldo: supplied by pm660l_bob\n[    0.348026]  (0)[1:swapper/0]camera_sub_vana_ldo: supplied by pm660_s6\n[    0.349207]  (0)[1:swapper/0]arm-smmu 5040000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.349280]  (0)[1:swapper/0]arm-smmu 5040000.arm,smmu-kgsl: \tstream matching with 5 register groups, mask 0x7\n[    0.349379]  (0)[1:swapper/0]arm-smmu 5040000.arm,smmu-kgsl: found 8 context interrupt(s) but have 5 context banks. assuming 5 context interrupts.\n[    0.351939]  (0)[1:swapper/0]register_client_adhoc:find path.src 139 dest 627\n[    0.352222]  (0)[1:swapper/0]register_client_adhoc:Client handle 1 apps_smmu\n[    0.352468]  (0)[1:swapper/0]arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.352571]  (0)[1:swapper/0]arm-smmu 15000000.apps-smmu: \tstream matching with 71 register groups, mask 0x7fff\n[    0.353216]  (0)[1:swapper/0]arm-smmu 15000000.apps-smmu: found 64 context interrupt(s) but have 47 context banks. assuming 47 context interrupts.\n[    0.353938]  (0)[1:swapper/0]register_client_adhoc:find path.src 139 dest 627\n[    0.354094]  (0)[1:swapper/0]register_client_adhoc:Client handle 2 apps_smmu\n[    0.354307]  (0)[1:swapper/0]register_client_adhoc:find path.src 139 dest 627\n[    0.354439]  (0)[1:swapper/0]register_client_adhoc:Client handle 3 apps_smmu\n[    0.354641]  (0)[1:swapper/0]register_client_adhoc:find path.src 22 dest 773\n[    0.354717]  (0)[1:swapper/0]register_client_adhoc:Client handle 4 mnoc_hf_0_tbu\n[    0.354909]  (0)[1:swapper/0]register_client_adhoc:find path.src 22 dest 773\n[    0.354976]  (0)[1:swapper/0]register_client_adhoc:Client handle 5 mnoc_hf_1_tbu\n[    0.355177]  (0)[1:swapper/0]register_client_adhoc:find path.src 137 dest 772\n[    0.355253]  (0)[1:swapper/0]register_client_adhoc:Client handle 6 mnoc_sf_0_tbu\n[    0.355395]  (0)[1:swapper/0]register_client_adhoc:find path.src 139 dest 627\n[    0.355531]  (0)[1:swapper/0]register_client_adhoc:Client handle 7 apps_smmu\n[    0.355750]  (0)[1:swapper/0]register_client_adhoc:find path.src 139 dest 627\n[    0.355880]  (0)[1:swapper/0]register_client_adhoc:Client handle 8 apps_smmu\n[    0.357067]  (0)[1:swapper/0]iommu: Adding device 8c0000.qcom,qupv3_0_geni_se:qcom,iommu_qupv3_0_geni_se_cb to group 0\n[    0.357247]  (0)[1:swapper/0]iommu: Adding device ac0000.qcom,qupv3_1_geni_se:qcom,iommu_qupv3_1_geni_se_cb to group 1\n[    0.357413]  (0)[1:swapper/0]iommu: Adding device ae00000.qcom,mdss_mdp to group 2\n[    0.357578]  (0)[1:swapper/0]iommu: Adding device 1de0000.qcedev to group 3\n[    0.357738]  (0)[1:swapper/0]iommu: Adding device 1de0000.qcrypto to group 4\n[    0.357913]  (0)[1:swapper/0]iommu: Adding device 800000.qcom,gpi-dma to group 5\n[    0.358070]  (0)[1:swapper/0]iommu: Adding device a00000.qcom,gpi-dma to group 6\n[    0.358268]  (0)[1:swapper/0]iommu: Adding device 18800000.qcom,icnss to group 7\n[    0.358457]  (0)[1:swapper/0]iommu: Adding device soc:apps_iommu_test_device to group 8\n[    0.358610]  (0)[1:swapper/0]iommu: Adding device soc:apps_iommu_coherent_test_device to group 8\n[    0.358785]  (0)[1:swapper/0]iommu: Adding device soc:qcom,msm-audio-ion to group 9\n[    0.358958]  (0)[1:swapper/0]iommu: Adding device a600000.ssusb to group 10\n[    0.359126]  (0)[1:swapper/0]iommu: Adding device soc:usb_audio_qmi_dev to group 11\n[    0.361122]  (0)[1:swapper/0]vgaarb: loaded\n[    0.361657]  (0)[1:swapper/0]qcom,qpnp-misc c440000.qcom,spmi:qcom,pm660@0:qcom,misc@900: probe successful\n[    0.362570]  (0)[1:swapper/0]SCSI subsystem initialized\n[    0.362722]  (0)[1:swapper/0]usbcore: registered new interface driver usbfs\n[    0.362749]  (0)[1:swapper/0]usbcore: registered new interface driver hub\n[    0.362776]  (0)[1:swapper/0]usbcore: registered new device driver usb\n[    0.363348]  (0)[1:swapper/0]soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.363751]  (0)[1:swapper/0]qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.363783]  (0)[1:swapper/0]qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)\n[    0.363986]  (0)[1:swapper/0]input: qpnp_pon as /devices/virtual/input/input0\n[    0.364305]  (0)[1:swapper/0]qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: probe keycode = 116,key_st = 0x0\n[    0.364360]  (0)[1:swapper/0]qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: No PON config. specified\n[    0.364415]  (0)[1:swapper/0]qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (secondary PMIC) and 'cold' boot\n[    0.364443]  (0)[1:swapper/0]qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from GP1 (Keypad_Reset1)\n[    0.364491]  (0)[1:swapper/0]qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: probe keycode = 116,key_st = 0x0\n[    0.364910]  (0)[1:swapper/0]oppo_fp_common soc:oppo_fp_common: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660@0/pinctrl@c000/oppo_fp_common/gpio_id2_default, deferring probe\n[    0.364956]  (0)[1:swapper/0]media: Linux media interface: v0.10\n[    0.364977]  (0)[1:swapper/0]Linux video capture interface: v2.00\n[    0.365019]  (0)[1:swapper/0][OPPO_CHG][oppo_short_ic_subsys_init] init start\n[    0.365047]  (0)[1:swapper/0][OPPO_CHG][oppo_short_ic_subsys_init] Success to register oppo_short_ic i2c driver.\n[    0.365052]  (0)[1:swapper/0][OPPO_CHG][stm8s_subsys_init] init start\n[    0.365070]  (0)[1:swapper/0][OPPO_CHG][stm8s_subsys_init] Success to register stm8s i2c driver.\n[    0.365088]  (0)[1:swapper/0][OPPO_CHG][adapter_ic_init] success\n[    0.373890]  (0)[1:swapper/0]Unable to get pmic_revid rc=-22\n[    0.375967]  (0)[1:swapper/0]platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@0x9e400000\n[    0.376066]  (0)[1:swapper/0]platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.376150]  (0)[1:swapper/0]platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.376228]  (0)[1:swapper/0]platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.376373]  (0)[1:swapper/0]platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node sdsp_region\n[    0.376571]  (0)[1:swapper/0]ION heap system created\n[    0.376741]  (0)[1:swapper/0]ION heap qsecom created at 0x000000009e400000 with size 1400000\n[    0.376751]  (0)[1:swapper/0]ION heap qsecom_ta created at 0x00000000fec00000 with size 1000000\n[    0.376759]  (0)[1:swapper/0]ION heap spss created at 0x00000000ee400000 with size 800000\n[    0.376768]  (0)[1:swapper/0]ION heap secure_display created at 0x00000000f1c00000 with size d000000\n[    0.376779]  (0)[1:swapper/0]ION heap secure_heap created\n[    0.376816]  (0)[1:swapper/0]ION heap adsp created at 0x00000000f0c00000 with size 800000\n[    0.378171]  (0)[1:swapper/0]ipa ipa3_tz_unlock_reg:5249 Bad parameters\n[    0.378181]  (0)[1:swapper/0]ipa ipa3_pre_init:5451 Failed to unlock memory region using TZ\n[    0.378385]  (0)[1:swapper/0]register_client_adhoc:find path.src 90 dest 512\n[    0.378887]  (0)[1:swapper/0]register_client_adhoc:find path.src 90 dest 585\n[    0.379017]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 676\n[    0.379241]  (0)[1:swapper/0]register_client_adhoc:find path.src 143 dest 777\n[    0.379309]  (0)[1:swapper/0]register_client_adhoc:Client handle 9 ipa\n[    0.379939]  (0)[1:swapper/0]ipa ipa3_uc_state_check:284 uC interface not initialized\n[    0.383586]  (0)[1:swapper/0]ipa ipa3_uc_state_check:284 uC interface not initialized\n[    0.384198]  (0)[1:swapper/0]iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_ap to group 12\n[    0.384442]  (0)[1:swapper/0]iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_wlan to group 13\n[    0.384683]  (0)[1:swapper/0]iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_uc to group 14\n[    0.385921]  (0)[1:swapper/0]PMIC@SID0: PM660 v2.0 options: 0, 0, 0, 0\n[    0.386047]  (0)[1:swapper/0]PMIC@SID2: PM660L v2.0.1 options: 0, 0, 0, 0\n[    0.390597]  (0)[1:swapper/0]Advanced Linux Sound Architecture Driver Initialized.\n[    0.391005]  (0)[1:swapper/0]Bluetooth: Core ver 2.22\n[    0.391030]  (0)[1:swapper/0]NET: Registered protocol family 31\n[    0.391033]  (0)[1:swapper/0]Bluetooth: HCI device and connection manager initialized\n[    0.391043]  (0)[1:swapper/0]Bluetooth: HCI socket layer initialized\n[    0.391050]  (0)[1:swapper/0]Bluetooth: L2CAP socket layer initialized\n[    0.391073]  (0)[1:swapper/0]Bluetooth: SCO socket layer initialized\n[    0.392422]  (0)[1:swapper/0]NetLabel: Initializing\n[    0.392425]  (0)[1:swapper/0]NetLabel:  domain hash size = 128\n[    0.392427]  (0)[1:swapper/0]NetLabel:  protocols = UNLABELED CIPSOv4\n[    0.392470]  (0)[1:swapper/0]NetLabel:  unlabeled traffic allowed by default\n[    0.392522]  (0)[1:swapper/0]pcie:pcie_init.\n[    0.394947]  (0)[1:swapper/0]register_client_adhoc:find path.src 22 dest 512\n[    0.395280]  (0)[1:swapper/0]register_client_adhoc:find path.src 23 dest 512\n[    0.395490]  (0)[74:kworker/0:1]register_client_adhoc:Client handle 10 bus-proxy-client\n[    0.397408]  (0)[74:kworker/0:1]LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=5400mV ncp_voltage=5400mV bst_voltage=5500mV\n[    0.397513]  (0)[74:kworker/0:1]regulator-oledb: Bringing 0uV into 5000000-5000000uV\n[    0.397682]  (0)[74:kworker/0:1]OLEDB: qpnp_oledb_regulator_probe: OLEDB registered successfully, ext_pin_en=1 mod_en=1 current_voltage=17800 mV\n[    0.397742]  (0)[74:kworker/0:1]qpnp_labibb_regulator_probe: qpnp_labibb: unknown peripheral type 81\n[    0.397758]  (0)[74:kworker/0:1]qcom,qpnp-labibb-regulator: probe of c440000.qcom,spmi:qcom,pm660l@3:qpnp-labibb-regulator failed with error -22\n[    0.398157]  (0)[74:kworker/0:1]gpu_gx_gdsc: supplied by pm660l_s2_level\n[    0.399515]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu0\n[    0.399820]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (1708800000 Hz, 780000 uv) on cpu0\n[    0.399879]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu1\n[    0.400260]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (1708800000 Hz, 780000 uv) on cpu1\n[    0.400313]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu2\n[    0.400633]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (1708800000 Hz, 780000 uv) on cpu2\n[    0.400678]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu3\n[    0.400976]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (1708800000 Hz, 780000 uv) on cpu3\n[    0.401034]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu4\n[    0.401332]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (1708800000 Hz, 780000 uv) on cpu4\n[    0.401382]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu5\n[    0.401694]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (1708800000 Hz, 780000 uv) on cpu5\n[    0.401740]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 592000 uv) on cpu6\n[    0.402184]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (2208000000 Hz, 892000 uv) on cpu6\n[    0.402241]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 592000 uv) on cpu7\n[    0.402671]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (2208000000 Hz, 892000 uv) on cpu7\n[    0.403050]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on soc:qcom,l3-cpu0\n[    0.403053]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on soc:qcom,l3-cpu6\n[    0.403056]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on soc:qcom,l3-cdsp\n[    0.404172]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (1440000000 Hz, 776000 uv) on soc:qcom,l3-cpu0\n[    0.404176]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (1440000000 Hz, 776000 uv) on soc:qcom,l3-cpu6\n[    0.404179]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (1440000000 Hz, 776000 uv) on soc:qcom,l3-cdsp\n[    0.406119]  (0)[74:kworker/0:1]cpufreq: driver osm-cpufreq up and running\n[    0.406122]  (0)[74:kworker/0:1]clk: clk_cpu_osm_driver_probe: OSM CPUFreq driver inited\n[    0.406182]  (0)[74:kworker/0:1]oppo_fp_common soc:oppo_fp_common: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660@0/pinctrl@c000/oppo_fp_common/gpio_id2_default, deferring probe\n[    0.408432]  (0)[74:kworker/0:1]sched-energy energy-costs: cpu=0 eff=1024 [freq=300000 cap=82 power_d0=14] -> [freq=1708800 cap=467 power_d0=139]\n[    0.408436]  (0)[74:kworker/0:1]CPU0: update cpu_capacity 467\n[    0.408443]  (0)[74:kworker/0:1]sched-energy energy-costs: cpu=1 eff=1024 [freq=300000 cap=82 power_d0=14] -> [freq=1708800 cap=467 power_d0=139]\n[    0.408445]  (0)[74:kworker/0:1]CPU1: update cpu_capacity 467\n[    0.408451]  (0)[74:kworker/0:1]sched-energy energy-costs: cpu=2 eff=1024 [freq=300000 cap=82 power_d0=14] -> [freq=1708800 cap=467 power_d0=139]\n[    0.408453]  (0)[74:kworker/0:1]CPU2: update cpu_capacity 467\n[    0.408459]  (0)[74:kworker/0:1]sched-energy energy-costs: cpu=3 eff=1024 [freq=300000 cap=82 power_d0=14] -> [freq=1708800 cap=467 power_d0=139]\n[    0.408461]  (0)[74:kworker/0:1]CPU3: update cpu_capacity 467\n[    0.408467]  (0)[74:kworker/0:1]sched-energy energy-costs: cpu=4 eff=1024 [freq=300000 cap=82 power_d0=14] -> [freq=1708800 cap=467 power_d0=139]\n[    0.408469]  (0)[74:kworker/0:1]CPU4: update cpu_capacity 467\n[    0.408475]  (0)[74:kworker/0:1]sched-energy energy-costs: cpu=5 eff=1024 [freq=300000 cap=82 power_d0=14] -> [freq=1708800 cap=467 power_d0=139]\n[    0.408477]  (0)[74:kworker/0:1]CPU5: update cpu_capacity 467\n[    0.408485]  (0)[74:kworker/0:1]sched-energy energy-costs: cpu=6 eff=1740 [freq=300000 cap=140 power_d0=256] -> [freq=2611200 cap=1024 power_d0=1400]\n[    0.408487]  (0)[74:kworker/0:1]CPU6: update cpu_capacity 1024\n[    0.408494]  (0)[74:kworker/0:1]sched-energy energy-costs: cpu=7 eff=1740 [freq=300000 cap=140 power_d0=256] -> [freq=2611200 cap=1024 power_d0=1400]\n[    0.408496]  (0)[74:kworker/0:1]CPU7: update cpu_capacity 1024\n[    0.408609]  (0)[74:kworker/0:1]CPU0: update max cpu_capacity 467\n[    0.408793]  (0)[74:kworker/0:1]sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.408835]  (0)[74:kworker/0:1]oppo_fp_common soc:oppo_fp_common: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660@0/pinctrl@c000/oppo_fp_common/gpio_id2_default, deferring probe\n[    0.409565]  (0)[1:swapper/0]clocksource: Switched to clocksource arch_sys_counter\n[    0.444912]  (0)[1:swapper/0]VFS: Disk quotas dquot_6.6.0\n[    0.444960]  (0)[1:swapper/0]VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.445697]  (0)[1:swapper/0]debugcc-sdm845 soc:qcom,cc-debug: Registered debug mux successfully\n[    0.446676]  (0)[1:swapper/0]mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.446901]  (0)[1:swapper/0]mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.446907]  (0)[1:swapper/0]mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.446914]  (0)[1:swapper/0]mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.446920]  (0)[1:swapper/0]mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.446926]  (0)[1:swapper/0]mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.447469]  (0)[1:swapper/0]dsi_pll_clock_register_10nm: Registered DSI PLL ndx=0, clocks successfully\n[    0.447493]  (0)[1:swapper/0]mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.447550]  (0)[1:swapper/0]mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.447556]  (0)[1:swapper/0]mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.447563]  (0)[1:swapper/0]mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.447569]  (0)[1:swapper/0]mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.447580]  (0)[1:swapper/0]mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.452618]  (0)[1:swapper/0]dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.457898]  (0)[1:swapper/0]dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.458034]  (0)[1:swapper/0]dsi_pll_clock_register_10nm: Registered DSI PLL ndx=1, clocks successfully\n[    0.458060]  (0)[1:swapper/0]mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.464115]  (0)[1:swapper/0]NET: Registered protocol family 2\n[    0.464194]  (0)[1:swapper/0]IP idents hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.465267]  (0)[1:swapper/0]TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.465412]  (0)[1:swapper/0]TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.465823]  (0)[1:swapper/0]TCP: Hash tables configured (established 32768 bind 32768)\n[    0.465867]  (0)[1:swapper/0]UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.465906]  (0)[1:swapper/0]UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.466064]  (0)[1:swapper/0]NET: Registered protocol family 1\n[    0.466087]  (0)[1:swapper/0]PCI: CLS 0 bytes, default 128\n[    0.466243]  (0)[74:kworker/0:1]oppo_fp_common soc:oppo_fp_common: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660@0/pinctrl@c000/oppo_fp_common/gpio_id2_default, deferring probe\n[    0.466700]  (0)[1:swapper/0]Trying to unpack rootfs image as initramfs...\n[    0.664863]  (0)[1:swapper/0]Freeing initrd memory: 7492K\n[    0.666615]  (0)[1:swapper/0]hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.671023]  (0)[1:swapper/0]audit: initializing netlink subsys (disabled)\n[    0.671076]  (0)[1:swapper/0]audit: type=2000 audit(0.669:1): initialized\n[    0.674320]  (0)[1:swapper/0]workingset: timestamp_bits=61 max_order=20 bucket_order=0\n[    0.678846]  (0)[1:swapper/0]Registering sdcardfs 0.1\n[    0.679029]  (0)[1:swapper/0]fuse init (API version 7.26)\n[    0.679515]  (0)[1:swapper/0]exFAT: Version 1.2.9\n[    0.679582]  (0)[1:swapper/0]SELinux:  Registering netfilter hooks\n[    0.679817]  (0)[1:swapper/0]pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    0.679819]  (0)[1:swapper/0]pfk_f2fs [pfk_f2fs_init]: PFK F2FS inited successfully\n[    0.679824]  (0)[1:swapper/0]pfk [pfk_init]: Driver initialized successfully\n[    0.683905]  (0)[1:swapper/0]Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)\n[    0.683910]  (0)[1:swapper/0]io scheduler noop registered\n[    0.683914]  (0)[1:swapper/0]io scheduler deadline registered\n[    0.683997]  (0)[1:swapper/0]io scheduler cfq registered (default)\n[    0.697461]  (0)[1:swapper/0]qcom,qpnp-clkdiv c440000.qcom,spmi:qcom,pm660@0:qcom,clkdiv@5b00: Registered qpnp_clkdiv_1 successfully\n[    0.702926]  (0)[1:swapper/0]88e0000.qcom,msm-eud supply vdda33 not found, using dummy regulator\n[    0.714828]  (0)[1:swapper/0]icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.714935]  (0)[1:swapper/0]icnss: Platform driver probed successfully\n[    0.716152]  (0)[1:swapper/0]memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.716215]  (0)[1:swapper/0]memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.716265]  (0)[1:swapper/0]memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.717355]  (0)[1:swapper/0]register_client_adhoc:find path.src 125 dest 512\n[    0.717799]  (0)[1:swapper/0]register_client_adhoc:Client handle 11 scm_pas\n[    0.717812]  (0)[1:swapper/0]minidump-id not found for adsp\n[    0.717917]  (0)[1:swapper/0]minidump-id not found for ipa_fws\n[    0.717930]  (0)[1:swapper/0]subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    0.718438]  (0)[1:swapper/0]register_client_adhoc:find path.src 63 dest 512\n[    0.718641]  (0)[1:swapper/0]register_client_adhoc:Client handle 12 pil-venus\n[    0.718650]  (0)[1:swapper/0]minidump-id not found for venus\n[    0.718660]  (0)[1:swapper/0]subsys-pil-tz aae0000.qcom,venus: for venus segments only will be dumped.\n[    0.718874]  (0)[1:swapper/0]minidump-id not found for cdsp\n[    0.719089]  (0)[1:swapper/0]minidump-id not found for a615_zap\n[    0.719097]  (0)[1:swapper/0]subsys-pil-tz soc:qcom,kgsl-hyp: for a615_zap segments only will be dumped.\n[    0.720368]  (0)[1:swapper/0]pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    0.723238]  (0)[1:swapper/0]msm_geni_serial 898000.qcom,qup_uart: Wakeup byte 0xfd\n[    0.723290]  (0)[1:swapper/0]msm_geni_serial 898000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    0.724184]  (0)[1:swapper/0]898000.qcom,qup_uart: ttyHS0 at MMIO 0x898000 (irq = 10, base_baud = 0) is a MSM\n[    0.725301]  (0)[1:swapper/0]msm_geni_serial a90000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console1\n[    0.725948]  (0)[1:swapper/0]a90000.qcom,qup_uart: ttyMSM0 at MMIO 0xa90000 (irq = 13, base_baud = 0) is a MSM\n[    0.738129]  (0)[1:swapper/0]console [ttyMSM0] enabled\n[    0.738132]  (0)[1:swapper/0]bootconsole [msm_geni_serial0] disabled\n[    0.738747]  (0)[1:swapper/0]msm_geni_serial_init: Driver initialized\n[    0.742443]  (0)[1:swapper/0]diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    0.742447]  (0)[1:swapper/0]diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    0.784994]  (0)[1:swapper/0][srandom] mod_init /dev/srandom driver registered..\n[    0.785007]  (0)[1:swapper/0][srandom] mod_init /proc/srandom registion regisered..\n[    0.785010]  (0)[1:swapper/0][srandom] mod_init Module version         : 1.38.0\n[    0.785013]  (0)[1:swapper/0]-----------------------:----------------------\n[    0.785015]  (0)[1:swapper/0]Please support my work and efforts contributing\n[    0.785017]  (0)[1:swapper/0]to the Linux community.  A $25 payment per\n[    0.785019]  (0)[1:swapper/0]server would be highly appreciated.\n[    0.785020]  (0)[1:swapper/0]-----------------------:----------------------\n[    0.785022]  (0)[1:swapper/0]Author                 : Jonathan Senkerik\n[    0.785023]  (0)[1:swapper/0]Website                : http://www.jintegrate.co\n[    0.785025]  (0)[1:swapper/0]github                 : http://github.com/josenk/srandom\n[    0.785027]  (0)[1:swapper/0]Paypal                 : josenk@jintegrate.co\n[    0.785028]  (0)[1:swapper/0]Bitcoin                : 1MTNg7SqcEWs5uwLKwNiAfYqBfnKFJu65p\n[    0.785030]  (0)[1:swapper/0]Commercial Invoice     : Avail on request.\n[    0.785165]  (0)[1:swapper/0][drm] Initialized\n[    0.785467]  (0)[1:swapper/0]register_client_adhoc:find path.src 20003 dest 20515\n[    0.785626]  (0)[1:swapper/0]register_client_adhoc:find path.src 20004 dest 20515\n[    0.785697]  (0)[1:swapper/0]register_client_adhoc:Client handle 13 disp_rsc_mnoc\n[    0.785727]  (0)[1:swapper/0]register_client_adhoc:find path.src 20001 dest 20513\n[    0.785794]  (0)[1:swapper/0]register_client_adhoc:Client handle 14 disp_rsc_llcc\n[    0.785818]  (0)[1:swapper/0]register_client_adhoc:find path.src 20000 dest 20512\n[    0.785890]  (0)[1:swapper/0]register_client_adhoc:Client handle 15 disp_rsc_ebi\n[    0.786109]  (0)[1:swapper/0][sde_rsc_hw:rsc_hw_init:679]: sde rsc init successfully done\n[    0.786124]  (0)[1:swapper/0][sde_rsc:sde_rsc_probe:1422]: sde rsc index:0 probed successfully\n[    0.787060]  (0)[1:swapper/0]msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-0\n[    0.787160]  (0)[1:swapper/0]msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-1\n[    0.788044]  (0)[1:swapper/0]AXI: get_pdata(): Error: Client name not found\n[    0.788047]  (0)[1:swapper/0]AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.788051]  (0)[1:swapper/0]dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-0\n[    0.788191]  (0)[1:swapper/0]AXI: get_pdata(): Error: Client name not found\n[    0.788193]  (0)[1:swapper/0]AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.788196]  (0)[1:swapper/0]dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-1\n[    0.789062]  (0)[1:swapper/0]sdm670-pinctrl 3400000.pinctrl: invalid group \"gpio54\" for function \"mdp_vsync\"\n[    0.789081]  (0)[1:swapper/0]sdm670-pinctrl 3400000.pinctrl: invalid group \"gpio54\" for function \"mdp_vsync\"\n[    0.789183]  (0)[1:swapper/0]sdm670-pinctrl 3400000.pinctrl: invalid group \"gpio54\" for function \"mdp_vsync\"\n[    0.789198]  (0)[1:swapper/0]sdm670-pinctrl 3400000.pinctrl: invalid group \"gpio54\" for function \"mdp_vsync\"\n[    0.789265]  (0)[1:swapper/0]msm-dsi-panel:[dsi_panel_parse_triggers:1415] [oppo18621 hx83112a 1080 2340 video mode dsi panel] fallback to default te-pin-select\n[    0.789349]  (0)[1:swapper/0]msm-dsi-panel:[dsi_panel_parse_reset_sequence:2227] RESET SEQ LENGTH = 24\n[    0.789368]  (0)[1:swapper/0]msm-dsi-panel:[dsi_panel_parse_misc_features:2276] dsi_panel_parse_misc_features: ulps feature disabled\n[    0.789373]  (0)[1:swapper/0]msm-dsi-panel:[dsi_panel_parse_misc_features:2282] dsi_panel_parse_misc_features: ulps during suspend feature disabled\n[    0.789421]  (0)[1:swapper/0]msm-dsi-panel:[dsi_panel_parse_esd_config:3456] ESD enabled with mode: register_read\n[    0.790733]  (0)[1:swapper/0]msm-dsi-display:[dsi_display_get_boot_display] index = 0\n[    0.790736]  (0)[1:swapper/0]msm-dsi-display:[dsi_display_get_boot_display] index = 1\n[    0.791117]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 590\n[    0.791398]  (0)[1:swapper/0]register_client_adhoc:Client handle 16 mdss_reg\n[    0.791426]  (0)[1:swapper/0]register_client_adhoc:find path.src 22 dest 512\n[    0.791631]  (0)[1:swapper/0]register_client_adhoc:find path.src 23 dest 512\n[    0.791813]  (0)[1:swapper/0]register_client_adhoc:Client handle 17 mdss_sde\n[    0.791877]  (0)[1:swapper/0][drm:sde_dbg_init:3481] evtlog_status: enable:0, panic:1, dump:2\n[    0.791903]  (0)[1:swapper/0]msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops sde_rsc_comp_ops)\n[    0.791911]  (0)[1:swapper/0]msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops sde_wb_comp_ops)\n[    0.792249]  (0)[1:swapper/0]sdm670-pinctrl 3400000.pinctrl: invalid group \"gpio54\" for function \"mdp_vsync\"\n[    0.792268]  (0)[1:swapper/0]sdm670-pinctrl 3400000.pinctrl: invalid group \"gpio54\" for function \"mdp_vsync\"\n[    0.792309]  (0)[1:swapper/0]msm-dsi-display:[dsi_display_bind] Successfully bind display panel 'dsi_oppo18621dsjm_hx83112a_1080_2340_video_display'\n[    0.792548]  (0)[1:swapper/0]msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display@21 (ops dsi_display_comp_ops)\n[    0.792578]  (0)[1:swapper/0][drm] mapped mdp address space @ffffff800ed00000\n[    0.792612]  (0)[1:swapper/0]msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: vbif_nrt_phys\n[    0.792659]  (0)[1:swapper/0][drm:_sde_kms_get_splash_data:3271] found continuous splash base address:9c000000 size:2300000\n[    0.794019]  (0)[1:swapper/0][drm:sde_kms_hw_init:3400] sde hardware revision:0x40010000\n[    0.794962]  (0)[1:swapper/0][drm] Created domain mdp_ns [80000000,80000000] secure=0\n[    0.797795]  (0)[1:swapper/0]iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 15\n[    0.798249]  (0)[1:swapper/0][drm] probing device qcom,smmu_sde_sec\n[    0.798259]  (0)[1:swapper/0][drm] Created domain mdp_s [80000000,80000000] secure=1\n[    0.801863]  (0)[1:swapper/0][drm] invalid feature map 9 for feature 10\n[    0.801968]  (0)[1:swapper/0][drm] invalid feature map 9 for feature 10\n[    0.803562]  (0)[1:swapper/0][drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    0.803565]  (0)[1:swapper/0][drm] No driver support for vblank timestamp query.\n[    0.804582]  (0)[1:swapper/0]msm-dsi-panel:[dsi_panel_parse_topology:3054] override topology: cfg:0 lm:1 comp_enc:0 intf:1\n[    0.804681]  (0)[1:swapper/0]msm-dsi-panel:[dsi_panel_parse_partial_update_caps:3164] partial update disabled as the property is not set\n[    0.804861]  (0)[1:swapper/0]dsi-ctrl:[_dsi_ctrl_setup_isr] [DSI_0] IRQ 598 registered\n[    0.866450]  (0)[1:swapper/0]iommu: Adding device 506a000.qcom,gmu:gmu_user to group 16\n[    0.866759]  (0)[1:swapper/0]iommu: Adding device 506a000.qcom,gmu:gmu_kernel to group 17\n[    0.868516]  (0)[1:swapper/0]register_client_adhoc:find path.src 26 dest 512\n[    0.868751]  (0)[1:swapper/0]register_client_adhoc:Client handle 18 grp3d\n[    0.868768]  (0)[1:swapper/0]register_client_adhoc:find path.src 26 dest 10036\n[    0.868907]  (0)[1:swapper/0]register_client_adhoc:Client handle 19 cnoc\n[    0.868914]  (0)[1:swapper/0]query_client_usecase_all: query_start\n[    0.868962]  (0)[1:swapper/0]query_client_usecase_all: query_start\n[    0.870225]  (0)[1:swapper/0]iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 18\n[    0.870600]  (0)[1:swapper/0]iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 19\n[    0.870884]  (0)[1:swapper/0]iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure_alt to group 20\n[    0.871328]  (0)[1:swapper/0]kgsl: _kgsl_iommu_cb_probe: dt: Unused context label gfx3d_secure_alt\n[    0.892276]  (0)[1:swapper/0]llcc_slice_get_entry:can't find 11 usecase id\n[    0.914424]  (0)[1:swapper/0]brd: module loaded\n[    0.936120]  (0)[1:swapper/0]loop: module loaded\n[    0.937425]  (0)[1:swapper/0]zram: Added device: zram0\n[    0.939086]  (0)[1:swapper/0]QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1400000\n[    0.939113]  (0)[1:swapper/0]QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.939121]  (0)[1:swapper/0]QSEECOM: qseecom_probe: no-clock-support=0x1\n[    0.939125]  (0)[1:swapper/0]QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    0.939211]  (0)[1:swapper/0]register_client_adhoc:find path.src 125 dest 512\n[    0.939619]  (0)[1:swapper/0]register_client_adhoc:Client handle 20 qseecom-noc\n[    0.939732]  (0)[1:swapper/0]QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    0.941875]  (0)[1:swapper/0]register_client_adhoc:find path.src 125 dest 512\n[    0.942160]  (0)[1:swapper/0]register_client_adhoc:Client handle 21 qcedev-noc\n[    0.943436]  (0)[1:swapper/0]qce 1de0000.qcedev: QTI Crypto 5.4.1 device found @0x1de0000\n[    0.943443]  (0)[1:swapper/0]qce 1de0000.qcedev: CE device = 0x0 IO base, CE = ffffff800e0a0000 Consumer (IN) PIPE 6,\n               Producer (OUT) PIPE 7 IO base BAM = 0000000000000000\n               BAM IRQ 19 Engines Availability = 0x2011073\n[    0.943620]  (0)[1:swapper/0]sps:BAM 0x0000000001dc4000 is registered.\n[    0.943767]  (0)[1:swapper/0]sps:BAM 0x0000000001dc4000 (va:0xffffff800e640000) enabled: ver:0x27, number of pipes:16\n[    0.943955]  (0)[1:swapper/0]QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 19\n[    0.946380]  (0)[1:swapper/0]register_client_adhoc:find path.src 125 dest 512\n[    0.946742]  (0)[1:swapper/0]register_client_adhoc:Client handle 22 qcrypto-noc\n[    0.947647]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: QTI Crypto 5.4.1 device found @0x1de0000\n[    0.947653]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: CE device = 0x0 IO base, CE = ffffff800ea60000 Consumer (IN) PIPE 4,\n               Producer (OUT) PIPE 5 IO base BAM = 0000000000000000\n               BAM IRQ 19 Engines Availability = 0x2011073\n[    0.947899]  (0)[1:swapper/0]QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 19\n[    0.948364]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    0.948520]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    0.948633]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    0.948741]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    0.948849]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    0.948952]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    0.949056]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    0.949161]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    0.949266]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    0.949373]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    0.949479]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    0.949584]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    0.949692]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    0.949796]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    0.949900]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    0.950006]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    0.950200]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    0.950307]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    0.950415]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    0.950522]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    0.951575]  (0)[1:swapper/0]qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    0.952287]  (0)[1:swapper/0]SCSI Media Changer driver v0.25 \n[    0.953731]  (0)[1:swapper/0]Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    0.956061]  (0)[1:swapper/0]libphy: Fixed MDIO Bus: probed\n[    0.956080]  (0)[1:swapper/0]tun: Universal TUN/TAP device driver, 1.6\n[    0.956083]  (0)[1:swapper/0]tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    0.956136]  (0)[1:swapper/0]sky2: driver version 1.30\n[    0.956443]  (0)[1:swapper/0]PPP generic driver version 2.4.2\n[    0.956500]  (0)[1:swapper/0]PPP BSD Compression module registered\n[    0.956504]  (0)[1:swapper/0]PPP Deflate Compression module registered\n[    0.956526]  (0)[1:swapper/0]PPP MPPE Compression module registered\n[    0.956531]  (0)[1:swapper/0]NET: Registered protocol family 24\n[    0.956545]  (0)[1:swapper/0]PPTP driver version 0.8.5\n[    0.956821]  (0)[1:swapper/0]CLD80211: Initializing\n[    0.956912]  (0)[1:swapper/0]usbcore: registered new interface driver r8152\n[    0.956976]  (0)[1:swapper/0]usbcore: registered new interface driver lan78xx\n[    0.956998]  (0)[1:swapper/0]usbcore: registered new interface driver asix\n[    0.957019]  (0)[1:swapper/0]usbcore: registered new interface driver ax88179_178a\n[    0.957038]  (0)[1:swapper/0]usbcore: registered new interface driver cdc_ether\n[    0.957060]  (0)[1:swapper/0]usbcore: registered new interface driver net1080\n[    0.957078]  (0)[1:swapper/0]usbcore: registered new interface driver cdc_subset\n[    0.957097]  (0)[1:swapper/0]usbcore: registered new interface driver zaurus\n[    0.957124]  (0)[1:swapper/0]usbcore: registered new interface driver cdc_ncm\n[    0.957130]  (0)[1:swapper/0]CHRDEV \"uio\" major number 233 goes below the dynamic allocation range\n[    0.960651]  (0)[1:swapper/0]msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.962321]  (0)[1:swapper/0]msm_sharedmem: msm_sharedmem_probe: Device created for client 'oembackup'\n[    0.964181]  (0)[1:swapper/0]msm-qusb-phy-v2 88e2000.qusb: pinctrl not available\n[    0.965564]  (0)[1:swapper/0][OPPO_CHG][oppo_ccdetect_support_check]: g_oppo_chip not ready!\n[    0.966397]  (0)[1:swapper/0]msm-dwc3 a600000.ssusb: unable to get dbm device\n[    0.967605]  (0)[1:swapper/0]ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.967608]  (0)[1:swapper/0]ehci-pci: EHCI PCI platform driver\n[    0.967629]  (0)[1:swapper/0]ehci-platform: EHCI generic platform driver\n[    0.967972]  (0)[1:swapper/0]ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    0.967987]  (0)[1:swapper/0]ohci-pci: OHCI PCI platform driver\n[    0.968014]  (0)[1:swapper/0]ohci-platform: OHCI generic platform driver\n[    0.968889]  (0)[1:swapper/0]usbcore: registered new interface driver usb-storage\n[    0.968911]  (0)[1:swapper/0]usbcore: registered new interface driver usb_ehset_test\n[    0.968932]  (0)[1:swapper/0]usbcore: registered new interface driver lvs\n[    0.970461]  (0)[108:kworker/0:2]msm_sharedmem: sharedmem_register_qmi: qmi init successful\n[    0.973471]  (0)[1:swapper/0]mousedev: PS/2 mouse device common for all mice\n[    0.973620]  (0)[1:swapper/0]usbcore: registered new interface driver xpad\n[    0.973646]  (0)[1:swapper/0][TP]himax,hx83112a_nf: tp_driver_init is called\n[    0.973649]  (0)[1:swapper/0][TP] tp_ic_name = himax,hx83112a_nf \n[    0.973689]  (0)[1:swapper/0][TP]Project use himax \n[    0.973996]  (0)[1:swapper/0][TP]himax,hx83112a_nf: hx83112b_tp_probe  is called\n[    0.974005]  (0)[1:swapper/0][TP]touchpanel: register_common_touch_device  is called\n[    0.974025]  (0)[1:swapper/0][TP]touchpanel: vdd_2v8_volt not defined\n[    0.974043]  (0)[1:swapper/0][TP]touchpanel: init_parse_dts : irq_gpio = 125, irq_flags = 0x2001, reset_gpio = 99\n[    0.974046]  (0)[1:swapper/0][TP]touchpanel: id1_gpio not specified\n[    0.974049]  (0)[1:swapper/0][TP]touchpanel: id2_gpio not specified\n[    0.974052]  (0)[1:swapper/0][TP]touchpanel: id3_gpio not specified\n[    0.974055]  (0)[1:swapper/0][TP]touchpanel: Failed to get the high state pinctrl handle\n[    0.974057]  (0)[1:swapper/0][TP]touchpanel:  Failed to get the low state pinctrl handle\n[    0.974059]  (0)[1:swapper/0][TP]touchpanel: Failed to get the input state pinctrl handle\n[    0.974061]  (0)[1:swapper/0][TP]touchpanel: ts->hw_res.enable2v8_gpio not specified\n[    0.974063]  (0)[1:swapper/0][TP]touchpanel: ts->hw_res.enable1v8_gpio not specified\n[    0.974066]  (0)[1:swapper/0][TP]touchpanel: int-mode not specified\n[    0.974068]  (0)[1:swapper/0][TP]touchpanel: TX_NUM = 16, RX_NUM = 36 \n[    0.974070]  (0)[1:swapper/0][TP]touchpanel: tx-rx-num not set\n[    0.974072]  (0)[1:swapper/0][TP]touchpanel: EARSENSE_TX_NUM = 16, EARSENSE_RX_NUM = 18 \n[    0.974078]  (0)[1:swapper/0][TP]touchpanel: LCD_WIDTH = 1080, LCD_HEIGHT = 2340, max_x = 1080, max_y = 2340, limit_witdh = 0, limit_height = 54\n[    0.974081]  (0)[1:swapper/0][TP]touchpanel: error:button-type should be setting in dts!\n[    0.974085]  (0)[1:swapper/0][TP]touchpanel: error:button-TRx should be setting in dts!\n[    0.974087]  (0)[1:swapper/0][TP]touchpanel: panel is incell!\n[    0.975316]  (0)[1:swapper/0]spi32766.0 supply vcc_1v8 not found, using dummy regulator\n[    0.975367]  (0)[1:swapper/0]spi32766.0 supply vdd_2v8 not found, using dummy regulator\n[    0.975412]  (0)[1:swapper/0][TP]touchpanel: Enable the Regulator2v8.\n[    0.975415]  (0)[1:swapper/0][TP]touchpanel: Enable the Regulator1v8.\n[    0.990076]  (0)[1:swapper/0][TP]touchpanel: init_input_device is called\n[    0.990190]  (0)[1:swapper/0]input: touchpanel as /devices/virtual/input/input1\n[    0.990295]  (0)[1:swapper/0]input: touchpanel_kpd as /devices/virtual/input/input2\n[    0.990346]  (0)[1:swapper/0][TP]vendor:DSJM fw:tp/18621/FW_HX_NF83112A_DSJM.img limit:tp/18621/LIMIT_HX_NF83112A_DSJM.img\n[    0.990351]  (0)[1:swapper/0][TP]himax,hx83112a_nf: chip_info->tp_type = 9, panel_data->test_limit_name = tp/18621/LIMIT_HX_NF83112A_DSJM.img, panel_data->fw_name = tp/18621/FW_HX_NF83112A_DSJM.img\n[    0.990355]  (0)[1:swapper/0][TP]himax,hx83112a_nf: hx83112b_configuration_init, configuration init = 1\n[    0.993974]  (0)[1:swapper/0][TP]touchpanel: Clock ticks for an esd cycle: 200\n[    0.993977]  (0)[1:swapper/0][TP]touchpanel: Esd protector started, cycle: 2 s\n[    0.993981]  (0)[1:swapper/0][TP]touchpanel: curent usb state is 0\n[    0.993984]  (0)[1:swapper/0][TP]himax,hx83112a_nf: hx83112b_enable_charge_mode, charge mode enable = 0\n[    0.994962]  (0)[1:swapper/0]spi_geni 880000.spi: tx_fifo 16 rx_fifo 16 tx_width 32\n[    0.995155]  (0)[1:swapper/0][TP]touchpanel: init_touchpanel_proc entry\n[    0.995209]  (0)[1:swapper/0][TP]touchpanel: init_debug_info_proc entry\n[    0.995229]  (0)[1:swapper/0][TP]touchpanel: Touch panel probe : normal end\n[    1.140833]  (0)[1:swapper/0][TP]himax,hx83112a_nf: himax_ic_package_check:Read driver IC ID = 83,11,2A\n[    1.140837]  (0)[1:swapper/0][TP]himax,hx83112a_nf: Himax IC package 83112_in\n[    1.141924]  (0)[1:swapper/0][TP]himax,hx83112a_nf: himax_power_on_init\n[    1.147190]  (0)[1:swapper/0][TP]himax,hx83112a_nf: himax_report_data_init: rawdata_frame_size = 10 \n[    1.147196]  (0)[1:swapper/0][TP]himax,hx83112a_nf: himax_report_data_init: max_touch_point:10,hx_raw_cnt_max:2,hx_raw_cnt_rmd:2,g_hx_rawdata_size:67,hx_touch_data->touch_info_size:56\n[    1.147219]  (0)[1:swapper/0][TP]himax,hx83112a_nf: hx83112b_tp_probe, probe normal end\n[    1.147966]  (0)[1:swapper/0]qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: rtc core: registered qpnp_rtc as rtc0\n[    1.148732]  (0)[1:swapper/0]i2c /dev entries driver\n[    1.149052]  (0)[1:swapper/0]i2c_geni 890000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.149549]  (0)[1:swapper/0]i2c_geni a84000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.150429]  (0)[1:swapper/0]i2c_geni a88000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.151347]  (0)[1:swapper/0]i2c_geni a88000.i2c: i2c error :-107\n[    1.151452]  (0)[1:swapper/0]i2c_geni a88000.i2c: i2c error :-107\n[    1.151554]  (0)[1:swapper/0]i2c_geni a88000.i2c: i2c error :-107\n[    1.151656]  (0)[1:swapper/0]i2c_geni a88000.i2c: i2c error :-107\n[    1.151661]  (0)[1:swapper/0]I2C PMIC: i2c_pmic_read: i2c_pmic_read failed for 3 retries, rc = -107\n[    1.151664]  (0)[1:swapper/0]I2C PMIC: i2c_pmic_determine_initial_status: Couldn't read irq data rc=-107\n[    1.151667]  (0)[1:swapper/0]I2C PMIC: i2c_pmic_probe: Couldn't determine initial status rc=-107\n[    1.151777]  (0)[1:swapper/0]i2c_pmic: probe of 0-0008 failed with error -107\n[    1.152162]  (0)[1:swapper/0]i2c_geni a88000.i2c: i2c error :-107\n[    1.152266]  (0)[1:swapper/0]i2c_geni a88000.i2c: i2c error :-107\n[    1.152368]  (0)[1:swapper/0]i2c_geni a88000.i2c: i2c error :-107\n[    1.152470]  (0)[1:swapper/0]i2c_geni a88000.i2c: i2c error :-107\n[    1.152474]  (0)[1:swapper/0]I2C PMIC: i2c_pmic_read: i2c_pmic_read failed for 3 retries, rc = -107\n[    1.152477]  (0)[1:swapper/0]I2C PMIC: i2c_pmic_determine_initial_status: Couldn't read irq data rc=-107\n[    1.152479]  (0)[1:swapper/0]I2C PMIC: i2c_pmic_probe: Couldn't determine initial status rc=-107\n[    1.152515]  (0)[1:swapper/0]i2c_pmic: probe of 0-000c failed with error -107\n[    1.153001]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_mcu_hwid_check]chip->vooc_gpio.vooc_mcu_id_gpio not specified, enable stm8s\n[    1.153007]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_fw_type_dt]oppo_vooc_fw_type_dt batt_type_4400 is 1,vooc_fw_type = 0x7\n[    1.153011]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_fw_type_dt] vooc_fw_upate:1\n[    1.153014]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_fw_type_dt]qcom,vooc-low-temp is 120\n[    1.153017]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_fw_type_dt]qcom,vooc-high-temp is 430\n[    1.153020]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_fw_type_dt]qcom,vooc-low-soc is 1\n[    1.153022]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_fw_type_dt]qcom,vooc-high-soc is 85\n[    1.153025]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_fw_type_dt]qcom,vooc_multistep_adjust_current_supportis 0\n[    1.153055]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_gpio_dt_init]chip->vooc_gpio.switch1_gpio =116\n[    1.153059]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_gpio_dt_init]chip->vooc_gpio.switch1_ctr1_gpio not specified\n[    1.153063]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_gpio_dt_init]chip->vooc_gpio.switch2_gpio not specified\n[    1.153070]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_gpio_dt_init]chip->vooc_gpio.reset_gpio =91\n[    1.153077]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_gpio_dt_init]chip->vooc_gpio.clock_gpio =124\n[    1.153085]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_gpio_dt_init]chip->vooc_gpio.data_gpio =123\n[    1.153365]  (0)[1:swapper/0][OPPO_CHG][opchg_bq27541_gpio_pinctrl_init]: 110 Failed to get the charging_switch1_ctr1_active handle\n[    1.153369]  (0)[1:swapper/0][OPPO_CHG][opchg_bq27541_gpio_pinctrl_init]: 117 Failed to get the charging_switch1_ctr1_sleep handle\n[    1.153378]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_gpio_dt_init] switch1_gpio = 116,switch2_gpio = -2, reset_gpio = 91,\t\t\tclock_gpio = 124, data_gpio = 123, data_irq = 265\n[    1.153395]  (0)[1:swapper/0][OPPO_CHG][oppo_is_rf_ftm_mode] boot_mode:0, return false\n[    1.153618]  (0)[1:swapper/0][OPPO_CHG][oppo_is_rf_ftm_mode] boot_mode:0, return false\n[    1.153621]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_mcu_hwid_check]mcu_hwid_type[0]\n[    1.153635]  (0)[1:swapper/0][OPPO_CHG][init_vooc_proc] version:0, fw_path:fastchg/18621/oppo_vooc_fw.bin\n[    1.153642]  (0)[1:swapper/0][OPPO_CHG][stm8s_driver_probe]stm8s probe success,\t\tfw_type = 0x7, \t\tfw_version = 0x5a, \t\tmcu_version = 0x0\n[    1.154578]  (0)[1:swapper/0]msm_vidc:  err: Failed to get platform resources\n[    1.154581]  (0)[1:swapper/0]msm_vidc:  err: Failed to init core\n[    1.154587]  (0)[1:swapper/0]msm_vidc_v4l2: probe of aa00000.qcom,vidc0 failed with error -22\n[    1.158987]  (0)[1:swapper/0]iommu: Adding device aa00000.qcom,vidc1:non_secure_cb to group 21\n[    1.159471]  (0)[1:swapper/0]iommu: Adding device aa00000.qcom,vidc1:secure_bitstream_cb to group 22\n[    1.161036]  (0)[1:swapper/0]iommu: Adding device aa00000.qcom,vidc1:secure_pixel_cb to group 23\n[    1.161841]  (0)[1:swapper/0]iommu: Adding device aa00000.qcom,vidc1:secure_non_pixel_cb to group 24\n[    1.164381]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 590\n[    1.164700]  (0)[1:swapper/0]register_client_adhoc:Client handle 23 sde_reg\n[    1.164776]  (0)[1:swapper/0]iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 25\n[    1.164945]  (0)[1:swapper/0]iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 26\n[    1.165154]  (0)[1:swapper/0]register_client_adhoc:find path.src 25 dest 512\n[    1.165360]  (0)[1:swapper/0]register_client_adhoc:Client handle 24 mdss_rotator\n[    1.165372]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 590\n[    1.165559]  (0)[1:swapper/0]register_client_adhoc:Client handle 25 mdss_rot_reg\n[    1.166147]  (0)[1:swapper/0]No change in context(0==0), skip\n[    1.168026]  (0)[1:swapper/0]sde_rotator_evtlog_create_debugfs: evtlog_status: enable:0, panic:1, dump:2\n[    1.168875]  (0)[1:swapper/0]sde_rotator ae00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    1.171032]  (0)[1:swapper/0]sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    1.171069]  (0)[1:swapper/0]sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    1.172673]  (0)[1:swapper/0]iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 27\n[    1.173028]  (0)[1:swapper/0]iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 28\n[    1.173194]  (0)[1:swapper/0]iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 29\n[    1.173323]  (0)[1:swapper/0]platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node camera_region@8ab00000\n[    1.173516]  (0)[1:swapper/0]iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 30\n[    1.173696]  (0)[1:swapper/0]iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 31\n[    1.173999]  (0)[1:swapper/0]iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_fd to group 32\n[    1.176435]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 589\n[    1.176750]  (0)[1:swapper/0]register_client_adhoc:Client handle 26 cam_ahb\n[    1.176906]  (0)[1:swapper/0]register_client_adhoc:find path.src 136 dest 512\n[    1.177102]  (0)[1:swapper/0]register_client_adhoc:Client handle 27 cam_hf_1_mnoc\n[    1.177354]  (0)[1:swapper/0]register_client_adhoc:find path.src 146 dest 778\n[    1.177405]  (0)[1:swapper/0]register_client_adhoc:Client handle 28 cam_hf_1_camnoc\n[    1.177532]  (0)[1:swapper/0]register_client_adhoc:find path.src 145 dest 512\n[    1.177723]  (0)[1:swapper/0]register_client_adhoc:Client handle 29 cam_hf_2_mnoc\n[    1.177979]  (0)[1:swapper/0]register_client_adhoc:find path.src 147 dest 778\n[    1.178029]  (0)[1:swapper/0]register_client_adhoc:Client handle 30 cam_hf_2_camnoc\n[    1.178155]  (0)[1:swapper/0]register_client_adhoc:find path.src 137 dest 512\n[    1.178346]  (0)[1:swapper/0]register_client_adhoc:Client handle 31 cam_sf_1_mnoc\n[    1.178583]  (0)[1:swapper/0]register_client_adhoc:find path.src 148 dest 778\n[    1.178628]  (0)[1:swapper/0]register_client_adhoc:Client handle 32 cam_sf_1_camnoc\n[    1.193930]  (0)[1:swapper/0]CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 256 No clk named ife_dsp_clk found. Dev acc4000.qcom,vfe-lite\n[    1.193935]  (0)[1:swapper/0]CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 107 option clk get failed\n[    1.197290]  (0)[1:swapper/0]CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.197300]  (0)[1:swapper/0]CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.197310]  (0)[1:swapper/0]CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.197319]  (0)[1:swapper/0]CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.197328]  (0)[1:swapper/0]CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.197337]  (0)[1:swapper/0]CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.197346]  (0)[1:swapper/0]CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.197356]  (0)[1:swapper/0]CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.197441]  (0)[1:swapper/0]CAM_INFO: CAM-ISP: cam_isp_dev_probe: 122 Camera ISP probe complete\n[    1.199476]  (0)[1:swapper/0]CAM_INFO: CAM: cam_res_mgr_probe: 681 Disable shared gpio support.\n[    1.204956]  (0)[1:swapper/0]CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 58 No GPIO found\n[    1.204992]  (0)[1:swapper/0]CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 58 No GPIO found\n[    1.205013]  (0)[1:swapper/0]CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 58 No GPIO found\n[    1.206269]  (0)[1:swapper/0]get flash_name failed rc -22\n[    1.206305]  (0)[1:swapper/0]get flash_name failed rc -22\n[    1.208144]  (0)[1:swapper/0]CAM_ERR: CAM-ICP: cam_ipe_probe: 85 IPE1 hw idx = 1\n\n[    1.208157]  (0)[1:swapper/0]cam-ipe: probe of ac91000.qcom,ipe1 failed with error -22\n[    1.210681]  (0)[1:swapper/0]CAM_ERR: CAM-ICP: cam_icp_mgr_init_devs: 4178 no child device\n[    1.211415]  (0)[1:swapper/0]CAM_ERR: CAM-SMMU: cam_smmu_create_add_handle_in_table: 612 Error: cam-secure already got handle 0x5dbd2\n[    1.214430]  (0)[1:swapper/0]CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 119 Camera JPEG probe complete\n[    1.222719]  (0)[1:swapper/0]DVB: registering new adapter (Qualcomm technologies, inc. DVB adapter)\n[    1.231100]  (0)[1:swapper/0][OPPO_CHG][oppo_chg_parse_svooc_dt]oppo_parse_svooc_dt, chip->vbatt_num = 1,chip->vooc_project = 1.\n[    1.231104]  (0)[1:swapper/0][OPPO_CHG][smb2_probe]gauge chip null, will do after bettery init.\n[    1.236536]  (0)[1:swapper/0]bq27541-battery 0-0055: DEVICE_TYPE is 0x421, FIRMWARE_VERSION is 0x109\n[    1.236540]  (0)[1:swapper/0]bq27411_modify_soc_smooth_parameter begin\n[    1.311419]  (0)[1:swapper/0][OPPO_CHG][unseal]bq27541 : i=1\n[    1.373121]  (0)[1:swapper/0]bq27411_enable_config_mode success i = 1, config_mode = 0x119, enable = 1\n[    1.396472]  (0)[1:swapper/0]bq27411 write blk_id = 0x6b, addr = 0x42, old_val = 0x71, new_val = 0x11, old_csum = 0xfd, new_csum = 0x5d\n[    1.413730]  (0)[1:swapper/0]bq27411 write blk_id = 0x40, addr = 0x42, old_val = 0xf, new_val = 0x7, old_csum = 0x1, new_csum = 0x9\n[    1.640089]  (0)[77:kworker/u16:1][TP]himax,hx83112a_nf: himax_mcu_0f_operation, Entering \n[    1.640094]  (0)[77:kworker/u16:1][TP]himax,hx83112a_nf: himax_mcu_0f_operation:Entering Update Flow!\n[    1.680067]  (0)[77:kworker/u16:1][TP]himax,hx83112a_nf: Get FW from headfile\n[    1.951533]  (0)[77:kworker/u16:1][TP]himax,hx83112a_nf: CURRENT_FIRMWARE_ID = 0xea01100b\n[    1.993916]  (0)[77:kworker/u16:1][TP]himax,hx83112a_nf: reload fail ,delay 10ms retry=199\n[    1.995273]  (0)[77:kworker/u16:1][TP]himax,hx83112a_nf: reload fail ,delay 10ms retry=198\n[    1.996629]  (0)[77:kworker/u16:1][TP]himax,hx83112a_nf: reload fail ,delay 10ms retry=197\n[    1.997985]  (0)[77:kworker/u16:1][TP]himax,hx83112a_nf: reload fail ,delay 10ms retry=196\n[    1.999350]  (0)[77:kworker/u16:1][TP]himax,hx83112a_nf: reload fail ,delay 10ms retry=195\n[    2.000745]  (0)[77:kworker/u16:1][TP]himax,hx83112a_nf: reload OK! \n[    2.000750]  (0)[77:kworker/u16:1][TP]himax,hx83112a_nf: himax_read_FW_ver : data[0]=0xA9,data[1]=0x9A,data[2]=0x9A,data[3]=0xA9\n[    2.000752]  (0)[77:kworker/u16:1][TP]himax,hx83112a_nf: reload_status=1\n[    2.020707]  (0)[1:swapper/0]bq27411_enable_config_mode success i = 21, config_mode = 0x109, enable = 0\n[    2.030973]  (0)[77:kworker/u16:1][TP]himax,hx83112a_nf: himax_sense_off: Check enter_save_mode data[0]=C \n[    2.032786]  (0)[1:swapper/0]bq27411_modify_soc_smooth_parameter end\n[    2.032790]  (0)[1:swapper/0][OPPO_CHG][bq27541_driver_probe] success\n[    2.048868]  (0)[1:swapper/0]17d41000.qcom,cpucc:qcom,limits-dcvs@0 supply isens_vref not found, using dummy regulator\n[    2.048940]  (0)[1:swapper/0]msm_lmh_dcvs:limits_isens_vref_ldo_init Regulator:isens_vref settings read error:-22\n[    2.055542]  (0)[1:swapper/0]17d41000.qcom,cpucc:qcom,limits-dcvs@1 supply isens_vref not found, using dummy regulator\n[    2.055580]  (0)[1:swapper/0]msm_lmh_dcvs:limits_isens_vref_ldo_init Regulator:isens_vref settings read error:-22\n[    2.068910]  (0)[1:swapper/0]device-mapper: uevent: version 1.0.3\n[    2.069039]  (0)[1:swapper/0]device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com\n[    2.070215]  (0)[1:swapper/0]device-mapper: req-crypt: dm-req-crypt successfully initalized.\n\n[    2.070538]  (0)[1:swapper/0]bt_power_populate_dt_pinfo: bt-reset-gpio not provided in devicetree\n[    2.070548]  (0)[1:swapper/0]bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    2.070552]  (0)[1:swapper/0]bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    2.070562]  (0)[1:swapper/0]bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    2.070566]  (0)[1:swapper/0]bt_dt_parse_clk_info: clocks is not provided in device tree\n[    2.070947]  (0)[1:swapper/0]CHRDEV \"bt\" major number 232 goes below the dynamic allocation range\n[    2.071555]  (0)[1:swapper/0]sdhci: Secure Digital Host Controller Interface driver\n[    2.071558]  (0)[1:swapper/0]sdhci: Copyright(c) Pierre Ossman\n[    2.071560]  (0)[1:swapper/0]sdhci-pltfm: SDHCI platform and OF driver helper\n[    2.073678]  (0)[77:kworker/u16:1][TP]himax,hx83112a_nf: PANEL_VER : 28 \n[    2.073681]  (0)[77:kworker/u16:1][TP]himax,hx83112a_nf: FW_VER : 407 \n[    2.074631]  (0)[1:swapper/0]usbcore: registered new interface driver usbhid\n[    2.074633]  (0)[1:swapper/0]usbhid: USB HID core driver\n[    2.074692]  (0)[1:swapper/0]ashmem: initialized\n[    2.074696]  (0)[1:swapper/0]wlan: Loading driver v5.2.022.9X +PANIC_ON_BUG\n[    2.076595]  (0)[77:kworker/u16:1][TP]himax,hx83112a_nf: CFG_VER : B00 \n[    2.076598]  (0)[77:kworker/u16:1][TP]himax,hx83112a_nf: TOUCH_VER : B \n[    2.076600]  (0)[77:kworker/u16:1][TP]himax,hx83112a_nf: DISPLAY_VER : 0 \n[    2.077316]  (0)[77:kworker/u16:1][TP]himax,hx83112a_nf: CID_VER : 201B \n[    2.078076]  (0)[5:kworker/u16:0]qcom_ice_get_pdevice: found ice device ffffffe16f28ee00\n[    2.078079]  (0)[5:kworker/u16:0]qcom_ice_get_pdevice: matching platform device ffffffe17509d000\n[    2.078381]  (0)[5:kworker/u16:0]sdhci_msm 7c4000.sdhci: Failed to get dll hsr settings from dt\n[    2.078661]  (0)[5:kworker/u16:0]register_client_adhoc:find path.src 150 dest 512\n[    2.079088]  (0)[5:kworker/u16:0]register_client_adhoc:find path.src 1 dest 782\n[    2.079285]  (0)[1:swapper/0]register_client_adhoc:Client handle 33 sdhc1\n[    2.079946]  (0)[1:swapper/0]ipa ipa3_uc_reg_rdyCB:1778 bad parm. inout=          (null) \n[    2.079977]  (0)[1:swapper/0]CHRDEV \"qcwlanstate\" major number 231 goes below the dynamic allocation range\n[    2.080137]  (0)[1:swapper/0]wlan_hdd_state wlan major(231) initialized\n[    2.080175]  (0)[1:swapper/0]ipa_ut ipa_ut_module_init:1046 Loading IPA test module...\n[    2.080501]  (0)[1:swapper/0]qpnp_coincell_charger_show_state: enabled=Y, voltage=3200 mV, resistance=2100 ohm\n[    2.082729]  (0)[1:swapper/0]CHRDEV \"seemplog\" major number 230 goes below the dynamic allocation range\n[    2.082986]  (0)[1:swapper/0]seemp: seemp_logk_init: SCM call failed with ret val = 0 -3 0\n[    2.084149]  (0)[5:kworker/u16:0]qcom_ice 7c8000.sdcc1ice: QC ICE 3.1.75 device found @0xffffff800bc28000\n[    2.084948]  (0)[5:kworker/u16:0]mmc0: SDHCI controller on 7c4000.sdhci [7c4000.sdhci] using 64-bit ADMA in CMDQ mode\n[    2.110046]  (0)[77:kworker/u16:1][TP]himax,hx83112a_nf: himax_mcu_0f_operation:End \n[    2.110053]  (0)[77:kworker/u16:1][TP]himax,hx83112a_nf: himax_mcu_0f_operation, END \n[    2.165179]  (0)[3:kworker/0:0]mmc0: Out-of-interrupt timeout is 100[ms]\n[    2.165183]  (0)[3:kworker/0:0]mmc0: eMMC FW version: 0x30\n[    2.165186]  (0)[3:kworker/0:0]mmc0: CMDQ supported: depth: 32\n[    2.165188]  (0)[3:kworker/0:0]mmc0: cache barrier support 1 flush policy 1\n[    2.170791]  (0)[3:kworker/0:0]cmdq_host_alloc_tdl: desc_size: 1024 data_sz: 63488 slot-sz: 32\n[    2.170919]  (0)[3:kworker/0:0]mmc0: CMDQ enabled on card\n[    2.170928]  (0)[3:kworker/0:0]mmc0: new HS400 Enhanced strobe MMC card at address 0001\n[    2.173551]  (0)[3:kworker/0:0]sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0x3f) latency=-1\n[    2.173555]  (0)[3:kworker/0:0]sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xc0) latency=-1\n[    2.173634]  (0)[3:kworker/0:0]mmcblk0: mmc0:0001 hC8aP> 58.2 GiB \n[    2.174856]  (0)[3:kworker/0:0]mmcblk0rpmb: mmc0:0001 hC8aP> partition 3 16.0 MiB\n[    2.176655]  (0)[3:kworker/0:0] mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42 p43 p44 p45 p46 p47 p48 p49 p50 p51 p52 p53 p54 p55 p56 p57 p58 p59 p60 p61\n[    2.182296]  (0)[5:kworker/u16:0]sdhci_msm 8804000.sdhci: failed opening nvmem cell err : -2\n[    2.182305]  (0)[5:kworker/u16:0]sdhci_msm 8804000.sdhci: sdhci_msm_probe: ICE device is not enabled\n[    2.182574]  (0)[5:kworker/u16:0]sdhci_msm 8804000.sdhci: Failed to get dll hsr settings from dt\n[    2.182780]  (0)[5:kworker/u16:0]register_client_adhoc:find path.src 81 dest 512\n[    2.183220]  (0)[5:kworker/u16:0]register_client_adhoc:find path.src 1 dest 608\n[    2.183431]  (0)[5:kworker/u16:0]register_client_adhoc:Client handle 34 sdhc2\n[    2.195535]  (0)[5:kworker/u16:0]mmc1: SDHCI controller on 8804000.sdhci [8804000.sdhci] using 64-bit ADMA in legacy mode\n[    2.229309]  (0)[1:swapper/0]bimc-bwmon 1436400.qcom,cpu-bwmon: BW HWmon governor registered.\n[    2.230117]  (0)[1:swapper/0]arm-memlat-mon soc:qcom,cpu0-memlat-mon: Memory Latency governor registered.\n[    2.230143]  (0)[1:swapper/0]arm-memlat-mon soc:qcom,cpu6-memlat-mon: Memory Latency governor registered.\n[    2.230172]  (0)[1:swapper/0]arm-memlat-mon soc:qcom,cpu0-l3lat-mon: Memory Latency governor registered.\n[    2.230197]  (0)[1:swapper/0]arm-memlat-mon soc:qcom,cpu6-l3lat-mon: Memory Latency governor registered.\n[    2.230234]  (0)[1:swapper/0]arm-memlat-mon soc:qcom,devfreq-compute0: Compute governor registered.\n[    2.230261]  (0)[1:swapper/0]arm-memlat-mon soc:qcom,devfreq-compute6: Compute governor registered.\n[    2.231178]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 512\n[    2.231487]  (0)[1:swapper/0]register_client_adhoc:Client handle 35 soc:qcom,cpubw\n[    2.233332]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 512\n[    2.233541]  (0)[1:swapper/0]register_client_adhoc:Client handle 36 soc:qcom,memlat-cpu0\n[    2.235843]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 512\n[    2.236039]  (0)[1:swapper/0]register_client_adhoc:Client handle 37 soc:qcom,memlat-cpu6\n[    2.236380]  (0)[1:swapper/0]register_client_adhoc:find path.src 139 dest 627\n[    2.236519]  (0)[1:swapper/0]register_client_adhoc:Client handle 38 soc:qcom,snoc_cnoc_keepalive\n[    2.236886]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 512\n[    2.237071]  (0)[1:swapper/0]register_client_adhoc:Client handle 39 soc:qcom,mincpubw\n[    2.237515]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 512\n[    2.237696]  (0)[1:swapper/0]register_client_adhoc:Client handle 40 soc:qcom,mincpu0bw\n[    2.238137]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 512\n[    2.238328]  (0)[1:swapper/0]register_client_adhoc:Client handle 41 soc:qcom,mincpu6bw\n[    2.238852]  (0)[1:swapper/0]register_client_adhoc:find path.src 26 dest 512\n[    2.238978]  (0)[1:swapper/0]register_client_adhoc:Client handle 42 soc:qcom,gpubw\n[    2.240816]  (0)[1:swapper/0]coresight-tmc 6048000.tmc: failed to get flush cti\n[    2.240820]  (0)[1:swapper/0]coresight-tmc 6048000.tmc: failed to get reset cti\n[    2.240826]  (0)[1:swapper/0]coresight-tmc 6048000.tmc: failed to get csr, defer probe\n[    2.240962]  (0)[1:swapper/0]coresight-tmc 6b09000.tmc: invalid cti data\n[    2.240967]  (0)[1:swapper/0]coresight-tmc 6b09000.tmc: failed to get csr, defer probe\n[    2.241077]  (0)[1:swapper/0]coresight-tmc 6047000.tmc: failed to get flush cti\n[    2.241081]  (0)[1:swapper/0]coresight-tmc 6047000.tmc: failed to get reset cti\n[    2.241084]  (0)[1:swapper/0]coresight-tmc 6047000.tmc: failed to get csr, defer probe\n[    2.243305]  (0)[1:swapper/0]coresight-replicator-qcom 6046000.replicator: REPLICATOR 1.0 initialized\n[    2.243434]  (0)[1:swapper/0]coresight-replicator-qcom 6b0a000.replicator: REPLICATOR 1.0 initialized\n[    2.243597]  (0)[1:swapper/0]coresight-stm 6002000.stm: stm_register_device failed, probing deffered\n[    2.248699]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@69e1000\n[    2.248786]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@69e4000\n[    2.248866]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@69e5000\n[    2.248946]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6c09000\n[    2.249029]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6c0a000\n[    2.249117]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6c29000\n[    2.249198]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6c2a000\n[    2.249285]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@683b000\n[    2.249360]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6b04000\n[    2.249442]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6b05000\n[    2.249521]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6b06000\n[    2.249604]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6b07000\n[    2.249682]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6b21000\n[    2.249759]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6c13000\n[    2.249839]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6c20000\n[    2.249921]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@78e0000\n[    2.250004]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@78f0000\n[    2.250312]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@7900000\n[    2.251536]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6010000\n[    2.253745]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6011000\n[    2.253848]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6012000\n[    2.253954]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6013000\n[    2.254107]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6014000\n[    2.254214]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6015000\n[    2.254368]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6016000\n[    2.254475]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6017000\n[    2.254576]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6018000\n[    2.254709]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6019000\n[    2.254810]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@601a000\n[    2.254913]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@601b000\n[    2.255015]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@601c000\n[    2.255122]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@601d000\n[    2.255220]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@601e000\n[    2.255323]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@601f000\n[    2.255425]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@7020000\n[    2.255535]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@7120000\n[    2.255644]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@7220000\n[    2.255755]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@7320000\n[    2.255868]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@7420000\n[    2.255985]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@7520000\n[    2.256103]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@7620000\n[    2.256227]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@7720000\n[    2.256451]  (0)[1:swapper/0]OF: graph: no port node found in /soc/csr@6001000\n[    2.256505]  (0)[1:swapper/0]coresight-csr 6001000.csr: CSR initialized: coresight-csr\n[    2.257029]  (0)[1:swapper/0]OF: graph: no port node found in /soc/hwevent@0x014066f0\n[    2.257085]  (0)[1:swapper/0]coresight-hwevent 14066f0.hwevent: Hardware Event driver initialized\n[    2.257621]  (0)[1:swapper/0]coresight-dummy soc:tpdm@6b16000: Dummy device initialized\n[    2.258585]  (0)[1:swapper/0]usbcore: registered new interface driver snd-usb-audio\n[    2.262531]  (0)[1:swapper/0]pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    2.262962]  (0)[1:swapper/0]tfa98xx_i2c_init(): TFA98XX driver version 2.10.1-a\n[    2.263054]  (0)[1:swapper/0]tfa98xx_i2c_probe(): tfa98xx_i2c_probe\n[    2.263432]  (0)[1:swapper/0]tfa98xx 2-0035: No reset GPIO provided, will not HW reset device\n[    2.263685]  (0)[1:swapper/0]TFA9890 detected\n[    2.263702]  (0)[1:swapper/0]tfa98xx 2-0035: Skipping IRQ registration\n[    2.263807]  (0)[1:swapper/0]tfa98xx_i2c_probe(): ftm_mode=0\n[    2.263818]  (0)[1:swapper/0]tfa98xx_i2c_probe(): tfa98xx_i2c_probe Probe completed successfully!\n[    2.264352]  (0)[1:swapper/0]msm-cdc-pinctrl soc:msm_cdc_pinctrl_usbc_audio_en1: msm_cdc_pinctrl_probe: Cannot get cdc gpio pinctrl:-19\n[    2.264370]  (0)[1:swapper/0]msm-cdc-pinctrl soc:cdc_pdm_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/cdc_pdm_clk_active, deferring probe\n[    2.264383]  (0)[1:swapper/0]msm-cdc-pinctrl soc:cdc_comp_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/cdc_pdm_rx0_comp_active, deferring probe\n[    2.264395]  (0)[1:swapper/0]msm-cdc-pinctrl soc:cdc_dmic_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic12_gpios_active, deferring probe\n[    2.280534]  (0)[1:swapper/0]msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx group_id: 0x9100\n[    2.280795]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0 dev_id: 0x9000\n[    2.280804]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.280831]  (0)[1:swapper/0]msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx group_id: 0x9101\n[    2.281019]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0 dev_id: 0x9001\n[    2.281026]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.281049]  (0)[1:swapper/0]msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx group_id: 0x9110\n[    2.281226]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0 dev_id: 0x9010\n[    2.281235]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.281259]  (0)[1:swapper/0]msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx group_id: 0x9111\n[    2.281436]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0 dev_id: 0x9011\n[    2.281444]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.281467]  (0)[1:swapper/0]msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx group_id: 0x9120\n[    2.281641]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0 dev_id: 0x9020\n[    2.281649]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.281673]  (0)[1:swapper/0]msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx group_id: 0x9121\n[    2.281847]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0 dev_id: 0x9021\n[    2.281855]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.281880]  (0)[1:swapper/0]msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx group_id: 0x9130\n[    2.282133]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0 dev_id: 0x9030\n[    2.282141]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.282171]  (0)[1:swapper/0]msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx group_id: 0x9131\n[    2.282343]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0 dev_id: 0x9031\n[    2.282419]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.282446]  (0)[1:swapper/0]msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx group_id: 0x9140\n[    2.282624]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0 dev_id: 0x9040\n[    2.282632]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.282656]  (0)[1:swapper/0]msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx group_id: 0x9141\n[    2.282862]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0 dev_id: 0x9041\n[    2.282870]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.287867]  (0)[1:swapper/0]msm_asoc_machine_probe: *** Enter\n[    2.287886]  (0)[1:swapper/0]msm_int_populate_sndcard_dailinks: custom speaker product nxp\n[    2.287908]  (0)[1:swapper/0]msm_int_populate_sndcard_dailinks: use nxp dailink replace\n[    2.287925]  (0)[1:swapper/0]sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    2.288713]  (0)[1:swapper/0]sdm660-asoc-snd soc:sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    2.291287]  (0)[1:swapper/0]CHRDEV \"avtimer\" major number 229 goes below the dynamic allocation range\n[    2.293219]  (0)[1:swapper/0]audio_notifer_reg_service: service SSR_MODEM is in use\n[    2.295127]  (0)[1:swapper/0]GACT probability NOT on\n[    2.295141]  (0)[1:swapper/0]Mirror/redirect action on\n[    2.295155]  (0)[1:swapper/0]u32 classifier\n[    2.295157]  (0)[1:swapper/0]    Actions configured\n[    2.295163]  (0)[1:swapper/0]Netfilter messages via NETLINK v0.30.\n[    2.295304]  (0)[1:swapper/0]nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    2.295404]  (0)[1:swapper/0]ctnetlink v0.93: registering with nfnetlink.\n[    2.295678]  (0)[1:swapper/0]xt_time: kernel timezone is -0000\n[    2.295744]  (0)[1:swapper/0]gre: GRE over IPv4 demultiplexor driver\n[    2.295748]  (0)[1:swapper/0]IPv4 over IPsec tunneling driver\n[    2.296064]  (0)[1:swapper/0]ip_tables: (C) 2000-2006 Netfilter Core Team\n[    2.296252]  (0)[1:swapper/0]arp_tables: arp_tables: (C) 2002 David S. Miller\n[    2.296284]  (0)[1:swapper/0]Initializing XFRM netlink socket\n[    2.296298]  (0)[1:swapper/0]IPsec XFRM device driver\n[    2.296499]  (0)[1:swapper/0]NET: Registered protocol family 10\n[    2.298198]  (0)[1:swapper/0]mip6: Mobile IPv6\n[    2.298208]  (0)[1:swapper/0]ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    2.298558]  (0)[1:swapper/0]sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    2.299021]  (0)[1:swapper/0]NET: Registered protocol family 17\n[    2.299034]  (0)[1:swapper/0]NET: Registered protocol family 15\n[    2.299051]  (0)[1:swapper/0]bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.\n[    2.299054]  (0)[1:swapper/0]Ebtables v2.0 registered\n[    2.299154]  (0)[1:swapper/0]l2tp_core: L2TP core driver, V2.0\n[    2.299161]  (0)[1:swapper/0]l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    2.299164]  (0)[1:swapper/0]l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    2.299173]  (0)[1:swapper/0]l2tp_netlink: L2TP netlink interface\n[    2.299194]  (0)[1:swapper/0]l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    2.299196]  (0)[1:swapper/0]l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    2.299276]  (0)[1:swapper/0]sctp: Hash tables configured (bind 256/256)\n[    2.300537]  (0)[1:swapper/0]NET: Registered protocol family 27\n[    2.303216]  (0)[108:kworker/0:2]oppo_fp_common soc:oppo_fp_common: fp_id_amount: 3\n[    2.303240]  (0)[108:kworker/0:2]oppo_fp_common soc:oppo_fp_common: fp-id gpio: 1275\n[    2.303257]  (0)[108:kworker/0:2]oppo_fp_common soc:oppo_fp_common: gpio_index: 1275,fp_id: 0\n[    2.303266]  (0)[108:kworker/0:2]oppo_fp_common soc:oppo_fp_common: fpsensor_type: 6, chip_name: F_1511, eng_menu: -1,-1\n[    2.309248]  (0)[108:kworker/0:2]minidump-id not found for adsp\n[    2.309581]  (0)[108:kworker/0:2]subsys-pil-tz 62400000.qcom,lpass: for adsp segments only will be dumped.\n[    2.311134]  (0)[108:kworker/0:2]minidump-id not found for cdsp\n[    2.311271]  (0)[108:kworker/0:2]subsys-pil-tz 8300000.qcom,turing: for cdsp segments only will be dumped.\n[    2.311729]  (0)[108:kworker/0:2]pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    2.311900]  (0)[108:kworker/0:2]platform 4080000.qcom,mss:qcom,mba-mem@0: assigned reserved memory node pil_mba_region@0x95400000\n[    2.312468]  (0)[108:kworker/0:2][OPPO_CHG][oppo_ccdetect_support_check]: g_oppo_chip not ready!\n[    2.316664]  (0)[108:kworker/0:2]sps:BAM 0x000000000a704000 is registered.\n[    2.317067]  (0)[108:kworker/0:2]register_client_adhoc:find path.src 61 dest 512\n[    2.317417]  (0)[108:kworker/0:2]register_client_adhoc:find path.src 61 dest 676\n[    2.317584]  (0)[108:kworker/0:2]register_client_adhoc:find path.src 1 dest 583\n[    2.317767]  (0)[108:kworker/0:2]register_client_adhoc:Client handle 43 usb0\n[    2.317849]  (0)[108:kworker/0:2]msm-dwc3 a600000.ssusb: Could not get usb power_supply\n[    2.317855]  (0)[108:kworker/0:2]Invalid index Defaulting curr to 0\n[    2.318181]  (0)[108:kworker/0:2]msm-dwc3 a600000.ssusb: Not attached\n[    2.319869]  (0)[108:kworker/0:2]ipa_rm ipa_rm_delete_resource:155 resource does not exist\n[    2.319875]  (0)[108:kworker/0:2]usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    2.319882]  (0)[108:kworker/0:2]ipa_rm ipa_rm_delete_resource:155 resource does not exist\n[    2.319886]  (0)[108:kworker/0:2]usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    2.321193]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_svooc_dt]oppo_parse_svooc_dt, chip->vbatt_num = 1,chip->vooc_project = 1.\n[    2.321197]  (0)[108:kworker/0:2][OPPO_CHG][smb2_probe]SMB2_Probe Start----\n[    2.322141]  (0)[108:kworker/0:2]PMI: smblib_get_charge_param: float voltage = 4372500 (0x76)\n[    2.322154]  (0)[108:kworker/0:2]PMI: smblib_get_charge_param: usb input current limit = 500000 (0x14)\n[    2.322168]  (0)[108:kworker/0:2]PMI: smblib_get_charge_param: dc input current limit = 500000 (0x14)\n[    2.322219]  (0)[108:kworker/0:2]PMI: smblib_set_charge_param: usb otg current limit = 250000 (0x00)\n[    2.322311]  (0)[108:kworker/0:2]PMI: smblib_set_charge_param: dc input current limit = 500000 (0x14)\n[    2.409113]  (0)[3:kworker/0:0]name:SS16G,manfid:3,oemid:5344\n[    2.421410]  (0)[3:kworker/0:0]mmc1: new ultra high speed SDR50 SDHC card at address aaaa\n[    2.421543]  (0)[3:kworker/0:0]mmc_blk_probe unknown card->cid.manfid is 3\n[    2.423876]  (0)[3:kworker/0:0]sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0x3f) latency=-1\n[    2.423881]  (0)[3:kworker/0:0]sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xc0) latency=-1\n[    2.423948]  (0)[3:kworker/0:0]mmcblk1: mmc1:aaaa SS16G 14.8 GiB \n[    2.434806]  (0)[3:kworker/0:0] mmcblk1: p1\n[    2.434820]  (0)[3:kworker/0:0]mmcblk1: p1 size 31116286 extends beyond EOD, truncated\n[    2.871465]  (0)[108:kworker/0:2]PMI: smblib_disable_hw_jeita: jeita reg 0x1090 = 0x0\n[    2.872384]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_custom_dt]chargerid_switch_gpio:44\n[    2.872391]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_custom_dt]Couldn't read qcom,dischg-gpio rc=0, qcom,dischg-gpio:-2\n[    2.872395]  (0)[108:kworker/0:2][OPPO_CHG][oppo_usbtemp_init]get usb_temp_adc_suspend fail\n[    2.872417]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_custom_dt]ship-gpio:21\n[    2.872424]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_custom_dt]Couldn't read qcom,shortc-gpio rc = 0, qcom,shortc-gpio:-2\n[    2.872452]  (0)[108:kworker/0:2][OPPO_CHG][oppo_ccdetect_irq_init]: chg->ccdetect_irq[237]!\n[    2.872455]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_custom_dt]ccdetect-gpio:95\n[    2.872481]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_charger_dt] CONFIG_HIGH_TEMP_VERSION disabled\n[    2.872642]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_charger_dt]vbatt_power_off = 3300, \t\t\tvbatt_soc_1 = 3410, \t\t\tnormal_vterm_hw_inc = 150, \t\t\t, \t\t\tnon_normal_vterm_hw_inc = 18, \t\t\tvbatt_pdqc_to_5v_thr = -22\n[    2.872706]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_charger_dt]ff1_normal_fastchg_ma = 1080, \t\t\tffc2_temp_warm_decidegc = 350, \t\t\tffc2_temp_high_decidegc = 400, \t\t\tffc2_normal_fastchg_ma = 800, \t\t\tchip->limits.ffc2_warm_fastchg_ma = 850, \t\t\tffc2_exit_step_ma = 100, \t\t\tffc_normal_vfloat_sw_limit = 4447, \t\t\tffc2_normal_vfloat_sw_limit = 4447, \t\t\tffc1_temp_normal_vfloat_mv = 4500, \t\t\tffc2_temp_normal_vfloat_mv = 4500, \t\t\tffc_normal_vfloat_over_sw_limit = 4500 \t\t\tffc2_temp_low_decidegc = 120 \t\t\tlimits.ff1_exit_step_ma = 400 \t\t\tlimits.ff1_warm_exit_step_ma = 350 \t\t\tpd_input_current_charger_ma = 2000 \t\t\tqc_input_current_charger_ma = 2000\n[    2.872725]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_charger_dt]default_iterm_ma = 220, \t\t\tdefault_temp_normal_fastchg_current_ma = 2000, \t\t\tdefault_normal_vfloat_sw_limit = 4350, \t\t\tdefault_temp_normal_vfloat_mv = 4387, \t\t\tdefault_normal_vfloat_over_sw_limit = 4397\n[    2.872741]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_charger_dt]default_temp_little_cool_fastchg_current_ma = 2000, \t\t\tdefault_little_cool_vfloat_sw_limit = 4350, \t\t\tdefault_temp_little_cool_vfloat_mv = 4387, \t\t\tdefault_little_cool_vfloat_over_sw_limit = 4397\n"
  },
  {
    "path": "results/sdm710/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  4:      12334   PDC-GIC  19 Level     arch_timer\n  6:     176736   PDC-GIC  38 Level     arch_mem_timer\n  7:          0   PDC-GIC 483 Edge      smp2p\n  8:          0   PDC-GIC 204 Edge      smp2p\n  9:          0   PDC-GIC 608 Edge      smp2p\n 11:          3   PDC-GIC 637 Level     i2c_geni\n 12:        723   PDC-GIC 633 Level     spi_geni\n 13:        217   PDC-GIC 389 Level     msm_serial_geni0\n 14:          0   PDC-GIC 386 Level     i2c_geni\n 15:      15458   PDC-GIC 387 Level     i2c_geni\n 16:          0   PDC-GIC 302 Edge      tmc-etr\n 17:          0   PDC-GIC 206 Level     msm_vidc\n 18:          0   PDC-GIC 115 Edge      msm_drm\n 19:          0   PDC-GIC 304 Level     sps\n 20:          0   PDC-GIC 538 Level     tsens-upper-lower\n 21:          0   PDC-GIC 540 Level     tsens-critical\n 22:          0   PDC-GIC 539 Level     tsens-upper-lower\n 23:          0   PDC-GIC 541 Level     tsens-critical\n 24:          0   PDC-GIC 323 Level     ngd_slim_irq\n 26:          0   PDC-GIC  32 Edge      apps_wdog_bark\n 29:          5   PDC-GIC 277 Level     gpi_dma800000_gpii1\n 58:         12   PDC-GIC 421 Edge      qcom,qmp-aop\n 59:          0   PDC-GIC 481 Edge      qcom,glink-smem-native-xprt-modem\n 60:          0   PDC-GIC 202 Edge      qcom,glink-smem-native-xprt-adsp\n 61:          0   PDC-GIC 606 Edge      qcom,glink-smem-native-xprt-cdsp\n 63:          0   PDC-GIC 524 Level     eud_irq\n 65:      14478   PDC-GIC  37 Level     apps_rsc\n 66:          0   PDC-GIC 161 Level     display_rsc\n 68:          0  pmic_arb 8388615 Edge      qpnp_kpdpwr_status\n 69:          0  pmic_arb 8454151 Edge      qpnp_resin_status\n 72:          0  pmic_arb 37748761 Edge      pm660_tz\n 81:         18  pmic_arb 51380252 Edge      qpnp_vadc_interrupt\n 82:          0  pmic_arb 54525982 Edge      qpnp_adc_tm_interrupt\n 83:          0  pmic_arb 69206054 Edge      bcl-high-ibat\n 85:          0  pmic_arb 69337126 Edge      bcl-low-vbat\n 88:          0  pmic_arb 469762164 Edge      haptics_sc_irq\n 89:          0  pmic_arb 469827700 Edge      haptics_play_irq\n 90:          0  pmic_arb 574619778 Edge      pm660l_tz\n 98:          0  pmic_arb 1026556093 Edge      qpnp_flash_led_fault_irq\n 99:          0  pmic_arb 1026752701 Edge      qpnp_flash_led_all_ramp_down_done_irq\n100:          0  pmic_arb 1026818237 Edge      qpnp_flash_led_all_ramp_up_done_irq\n101:          1  pmic_arb 1031864510 Edge      qpnp_wled_ovp_irq\n102:          0  pmic_arb 1052836035 Edge      qpnp_lcdb_sc_irq\n118:          0   PDC-GIC 194 Edge      adsp\n121:          0   PDC-GIC 298 Edge      modem\n122:          0   PDC-GIC 610 Edge      cdsp\n123:         75   PDC-GIC 673 Edge      mmc0\n124:          2   PDC-GIC 676 Edge      7c4000.sdhci\n125:         59   PDC-GIC 236 Edge      mmc1\n126:          3   PDC-GIC 254 Edge      8804000.sdhci\n152:          0  msmgpio-dc  10 Edge      TE_GPIO\n166:          0  msmgpio-dc  24 Edge      volume_up\n234:          0  msmgpio-dc  92 Edge      volume_down\n237:          0  msmgpio-dc  95 Edge      ccdetect-change\n238:          0  msmgpio-dc  96 Edge      8804000.sdhci cd\n263:          0  msmgpio-dc 121 Edge      soc:fpc_fpc1020\n265:          0  msmgpio-dc 123 Edge      mcu_data\n267:          0  msmgpio-dc 125 Edge      touchpanel\n369:          0   PDC-GIC 261 Level     arm-smmu global fault\n370:          0   PDC-GIC 263 Level     arm-smmu global fault\n371:          0   PDC-GIC 396 Level     arm-smmu-context-fault\n372:          0   PDC-GIC 397 Level     arm-smmu-context-fault\n373:          0   PDC-GIC 398 Level     arm-smmu-context-fault\n379:          0   PDC-GIC  97 Level     arm-smmu global fault\n382:          0   PDC-GIC 130 Level     arm-smmu-context-fault\n383:          0   PDC-GIC 131 Level     arm-smmu-context-fault\n384:          0   PDC-GIC 132 Level     arm-smmu-context-fault\n385:          0   PDC-GIC 133 Level     arm-smmu-context-fault\n386:          0   PDC-GIC 134 Level     arm-smmu-context-fault\n387:          0   PDC-GIC 135 Level     arm-smmu-context-fault\n388:          0   PDC-GIC 136 Level     arm-smmu-context-fault\n389:          0   PDC-GIC 137 Level     arm-smmu-context-fault\n390:          0   PDC-GIC 138 Level     arm-smmu-context-fault\n391:          0   PDC-GIC 139 Level     arm-smmu-context-fault\n392:          0   PDC-GIC 140 Level     arm-smmu-context-fault\n393:          0   PDC-GIC 141 Level     arm-smmu-context-fault\n394:          0   PDC-GIC 142 Level     arm-smmu-context-fault\n395:          0   PDC-GIC 143 Level     arm-smmu-context-fault\n396:          0   PDC-GIC 144 Level     arm-smmu-context-fault\n397:          0   PDC-GIC 145 Level     arm-smmu-context-fault\n398:          0   PDC-GIC 146 Level     arm-smmu-context-fault\n399:          0   PDC-GIC 147 Level     arm-smmu-context-fault\n400:          0   PDC-GIC 148 Level     arm-smmu-context-fault\n401:          0   PDC-GIC 149 Level     arm-smmu-context-fault\n402:          0   PDC-GIC 150 Level     arm-smmu-context-fault\n403:          0   PDC-GIC 213 Level     arm-smmu-context-fault\n404:          0   PDC-GIC 214 Level     arm-smmu-context-fault\n405:          0   PDC-GIC 215 Level     arm-smmu-context-fault\n406:          0   PDC-GIC 216 Level     arm-smmu-context-fault\n407:          0   PDC-GIC 217 Level     arm-smmu-context-fault\n408:          0   PDC-GIC 218 Level     arm-smmu-context-fault\n409:          0   PDC-GIC 219 Level     arm-smmu-context-fault\n410:          0   PDC-GIC 220 Level     arm-smmu-context-fault\n411:          0   PDC-GIC 221 Level     arm-smmu-context-fault\n412:          0   PDC-GIC 222 Level     arm-smmu-context-fault\n413:          0   PDC-GIC 223 Level     arm-smmu-context-fault\n414:          0   PDC-GIC 224 Level     arm-smmu-context-fault\n444:          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n445:          0   PDC-GIC 162 Edge      pwr_event_irq\n446:          0   PDC-GIC 518 Level     ss_phy_irq\n447:          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n448:          0   PDC-GIC 332 Level     kgsl-3d0\n449:          0   PDC-GIC 336 Level     HFI\n450:          0   PDC-GIC 337 Level     GMU\n451:          0   PDC-GIC 509 Edge      csiphy\n452:          0   PDC-GIC 510 Edge      csiphy\n453:          0   PDC-GIC 511 Edge      csiphy\n454:          0   PDC-GIC 492 Edge      cci\n455:          0   PDC-GIC 491 Edge      cpas_camnoc\n456:          1   PDC-GIC 493 Edge      cpas-cdm\n457:          0   PDC-GIC 496 Edge      csid\n458:          2   PDC-GIC 497 Edge      ife\n459:          0   PDC-GIC 498 Edge      csid\n460:          2   PDC-GIC 499 Edge      ife\n461:          0   PDC-GIC 500 Edge      csid-lite\n462:          2   PDC-GIC 501 Edge      ife-lite\n463:          0   PDC-GIC 495 Edge      a5\n464:          0   PDC-GIC 506 Edge      jpeg\n465:          0   PDC-GIC 507 Edge      jpegdma\n466:          2   PDC-GIC 494 Edge      fd\n467:          1   PDC-GIC 508 Edge      lrme\n468:          0   PDC-GIC  64 Level     limits_sensor-00\n469:          0   PDC-GIC  65 Level     limits_sensor-01\n598:          0       sde   4 Edge      dsi_ctrl\n599:          0  pmic_arb 101777466 Edge      qpnp_rtc_alarm\n600:          0       sde   2 Edge      sde_rotator_r3\n601:          0  smp2p_gpio   0 Edge      adsp\n602:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n603:          0  smp2p_gpio   2 Edge      adsp\n604:          0  smp2p_gpio   3 Edge      adsp\n633:          0  smp2p_gpio   0 Edge      ipa_smp2p_clk_vote\n665:          0  smp2p_gpio   0 Edge      modem\n666:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n667:          0  smp2p_gpio   2 Edge      modem\n668:          0  smp2p_gpio   3 Edge      modem\n697:          0  smp2p_gpio   0 Edge      cdsp\n698:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n699:          0  smp2p_gpio   2 Edge      cdsp\n700:          0  smp2p_gpio   3 Edge      cdsp\n857:          0   PDC-GIC 165 Edge      dwc3\n859:          0  pmic_arb 16777229 Edge      chg-error\n860:          0  pmic_arb 16842765 Edge      chg-state-change\n864:          0  pmic_arb 17825806 Edge      otg-fail\n865:          0  pmic_arb 17891342 Edge      otg-overcurrent\n866:          0  pmic_arb 17956878 Edge      otg-oc-dis-sw-sts\n867:          0  pmic_arb 18022414 Edge      testmode-change-detect\n868:          0  pmic_arb 18874383 Edge      bat-temp\n869:          0  pmic_arb 18939919 Edge      bat-ocp\n870:          0  pmic_arb 19005455 Edge      bat-ov\n871:          0  pmic_arb 19070991 Edge      bat-low\n872:          0  pmic_arb 19136527 Edge      bat-therm-or-id-missing\n873:          0  pmic_arb 19202063 Edge      bat-terminal-missing\n874:          0  pmic_arb 19922960 Edge      usbin-collapse\n875:          2  pmic_arb 19988496 Edge      usbin-lt-3p6v\n876:          0  pmic_arb 20054032 Edge      usbin-uv\n877:          0  pmic_arb 20119568 Edge      usbin-ov\n878:          0  pmic_arb 20185104 Edge      usbin-plugin\n879:          0  pmic_arb 20250640 Edge      usbin-src-change\n880:          0  pmic_arb 20316176 Edge      usbin-icl-change\n881:          0  pmic_arb 20381712 Edge      type-c-change\n882:          0  pmic_arb 20971537 Edge      dcin-collapse\n883:          0  pmic_arb 21037073 Edge      dcin-lt-3p6v\n884:          0  pmic_arb 21102609 Edge      dcin-uv\n885:          0  pmic_arb 21168145 Edge      dcin-ov\n886:          0  pmic_arb 21233681 Edge      dcin-plugin\n887:          0  pmic_arb 21299217 Edge      div2-en-dg\n888:          0  pmic_arb 21364753 Edge      dcin-icl-change\n890:          0  pmic_arb 23134227 Edge      wdog-bark\n891:          0  pmic_arb 23199763 Edge      aicl-fail\n892:          0  pmic_arb 23265299 Edge      aicl-done\n893:          0  pmic_arb 23330835 Edge      high-duty-cycle\n894:          0  pmic_arb 23396371 Edge      input-current-limiting\n895:          0  pmic_arb 23461907 Edge      temperature-change\n896:          0  pmic_arb 23527443 Edge      switcher-power-ok\nIPI0:       135       Rescheduling interrupts\nIPI1:        16       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         1       Timer broadcast interrupts\nIPI4:     86994       IRQ work interrupts\nIPI5:         0       CPU wake-up interrupts\nIPI6:         0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm710/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  4:        629          1          1          1          1          1          1          1   PDC-GIC  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   PDC-GIC  38 Level     arch_mem_timer\n  7:          0          0          0          0          0          0          0          0   PDC-GIC 483 Edge      smp2p\n  8:          0          0          0          0          0          0          0          0   PDC-GIC 204 Edge      smp2p\n  9:          0          0          0          0          0          0          0          0   PDC-GIC 608 Edge      smp2p\n 11:          3          0          0          0          0          0          0          0   PDC-GIC 637 Level     i2c_geni\n 12:        723          0          0          0          0          0          0          0   PDC-GIC 633 Level     spi_geni\n 13:          2          0          0          0          0          0          0          0   PDC-GIC 389 Level     msm_serial_geni0\n 14:          0          0          0          0          0          0          0          0   PDC-GIC 386 Level     i2c_geni\n 15:        224          0          0          0          0          0          0          0   PDC-GIC 387 Level     i2c_geni\n 16:          0          0          0          0          0          0          0          0   PDC-GIC 302 Edge      tmc-etr\n 17:          0          0          0          0          0          0          0          0   PDC-GIC 206 Level     msm_vidc\n 18:          0          0          0          0          0          0          0          0   PDC-GIC 115 Edge      msm_drm\n 19:          0          0          0          0          0          0          0          0   PDC-GIC 304 Level     sps\n 20:          0          0          0          0          0          0          0          0   PDC-GIC 538 Level     tsens-upper-lower\n 21:          0          0          0          0          0          0          0          0   PDC-GIC 540 Level     tsens-critical\n 22:          0          0          0          0          0          0          0          0   PDC-GIC 539 Level     tsens-upper-lower\n 23:          0          0          0          0          0          0          0          0   PDC-GIC 541 Level     tsens-critical\n 24:          0          0          0          0          0          0          0          0   PDC-GIC 323 Level     ngd_slim_irq\n 26:          0          0          0          0          0          0          0          0   PDC-GIC  32 Edge      apps_wdog_bark\n 29:          5          0          0          0          0          0          0          0   PDC-GIC 277 Level     gpi_dma800000_gpii1\n 58:         12          0          0          0          0          0          0          0   PDC-GIC 421 Edge      qcom,qmp-aop\n 59:          0          0          0          0          0          0          0          0   PDC-GIC 481 Edge      qcom,glink-smem-native-xprt-modem\n 60:          0          0          0          0          0          0          0          0   PDC-GIC 202 Edge      qcom,glink-smem-native-xprt-adsp\n 61:          0          0          0          0          0          0          0          0   PDC-GIC 606 Edge      qcom,glink-smem-native-xprt-cdsp\n 63:          0          0          0          0          0          0          0          0   PDC-GIC 524 Level     eud_irq\n 65:        452          0          0          0          0          0          0          0   PDC-GIC  37 Level     apps_rsc\n 66:          0          0          0          0          0          0          0          0   PDC-GIC 161 Level     display_rsc\n 68:          0          0          0          0          0          0          0          0  pmic_arb 8388615 Edge      qpnp_kpdpwr_status\n 69:          0          0          0          0          0          0          0          0  pmic_arb 8454151 Edge      qpnp_resin_status\n 72:          0          0          0          0          0          0          0          0  pmic_arb 37748761 Edge      pm660_tz\n 81:         18          0          0          0          0          0          0          0  pmic_arb 51380252 Edge      qpnp_vadc_interrupt\n 82:          0          0          0          0          0          0          0          0  pmic_arb 54525982 Edge      qpnp_adc_tm_interrupt\n 83:          0          0          0          0          0          0          0          0  pmic_arb 69206054 Edge      bcl-high-ibat\n 85:          0          0          0          0          0          0          0          0  pmic_arb 69337126 Edge      bcl-low-vbat\n 88:          0          0          0          0          0          0          0          0  pmic_arb 469762164 Edge      haptics_sc_irq\n 89:          0          0          0          0          0          0          0          0  pmic_arb 469827700 Edge      haptics_play_irq\n 90:          0          0          0          0          0          0          0          0  pmic_arb 574619778 Edge      pm660l_tz\n 98:          0          0          0          0          0          0          0          0  pmic_arb 1026556093 Edge      qpnp_flash_led_fault_irq\n 99:          0          0          0          0          0          0          0          0  pmic_arb 1026752701 Edge      qpnp_flash_led_all_ramp_down_done_irq\n100:          0          0          0          0          0          0          0          0  pmic_arb 1026818237 Edge      qpnp_flash_led_all_ramp_up_done_irq\n101:          1          0          0          0          0          0          0          0  pmic_arb 1031864510 Edge      qpnp_wled_ovp_irq\n102:          0          0          0          0          0          0          0          0  pmic_arb 1052836035 Edge      qpnp_lcdb_sc_irq\n118:          0          0          0          0          0          0          0          0   PDC-GIC 194 Edge      adsp\n121:          0          0          0          0          0          0          0          0   PDC-GIC 298 Edge      modem\n122:          0          0          0          0          0          0          0          0   PDC-GIC 610 Edge      cdsp\n123:         63          0          0          0          0          0          0          0   PDC-GIC 673 Edge      mmc0\n124:          1          0          0          0          0          0          0          0   PDC-GIC 676 Edge      7c4000.sdhci\n125:         58          0          0          0          0          0          0          0   PDC-GIC 236 Edge      mmc1\n126:          2          0          0          0          0          0          0          0   PDC-GIC 254 Edge      8804000.sdhci\n152:          0          0          0          0          0          0          0          0  msmgpio-dc  10 Edge      TE_GPIO\n166:          0          0          0          0          0          0          0          0  msmgpio-dc  24 Edge      volume_up\n234:          0          0          0          0          0          0          0          0  msmgpio-dc  92 Edge      volume_down\n237:          0          0          0          0          0          0          0          0  msmgpio-dc  95 Edge      ccdetect-change\n238:          0          0          0          0          0          0          0          0  msmgpio-dc  96 Edge      8804000.sdhci cd\n263:          0          0          0          0          0          0          0          0  msmgpio-dc 121 Edge      soc:fpc_fpc1020\n265:          0          0          0          0          0          0          0          0  msmgpio-dc 123 Edge      mcu_data\n267:          0          0          0          0          0          0          0          0  msmgpio-dc 125 Edge      touchpanel\n369:          0          0          0          0          0          0          0          0   PDC-GIC 261 Level     arm-smmu global fault\n370:          0          0          0          0          0          0          0          0   PDC-GIC 263 Level     arm-smmu global fault\n371:          0          0          0          0          0          0          0          0   PDC-GIC 396 Level     arm-smmu-context-fault\n372:          0          0          0          0          0          0          0          0   PDC-GIC 397 Level     arm-smmu-context-fault\n373:          0          0          0          0          0          0          0          0   PDC-GIC 398 Level     arm-smmu-context-fault\n379:          0          0          0          0          0          0          0          0   PDC-GIC  97 Level     arm-smmu global fault\n382:          0          0          0          0          0          0          0          0   PDC-GIC 130 Level     arm-smmu-context-fault\n383:          0          0          0          0          0          0          0          0   PDC-GIC 131 Level     arm-smmu-context-fault\n384:          0          0          0          0          0          0          0          0   PDC-GIC 132 Level     arm-smmu-context-fault\n385:          0          0          0          0          0          0          0          0   PDC-GIC 133 Level     arm-smmu-context-fault\n386:          0          0          0          0          0          0          0          0   PDC-GIC 134 Level     arm-smmu-context-fault\n387:          0          0          0          0          0          0          0          0   PDC-GIC 135 Level     arm-smmu-context-fault\n388:          0          0          0          0          0          0          0          0   PDC-GIC 136 Level     arm-smmu-context-fault\n389:          0          0          0          0          0          0          0          0   PDC-GIC 137 Level     arm-smmu-context-fault\n390:          0          0          0          0          0          0          0          0   PDC-GIC 138 Level     arm-smmu-context-fault\n391:          0          0          0          0          0          0          0          0   PDC-GIC 139 Level     arm-smmu-context-fault\n392:          0          0          0          0          0          0          0          0   PDC-GIC 140 Level     arm-smmu-context-fault\n393:          0          0          0          0          0          0          0          0   PDC-GIC 141 Level     arm-smmu-context-fault\n394:          0          0          0          0          0          0          0          0   PDC-GIC 142 Level     arm-smmu-context-fault\n395:          0          0          0          0          0          0          0          0   PDC-GIC 143 Level     arm-smmu-context-fault\n396:          0          0          0          0          0          0          0          0   PDC-GIC 144 Level     arm-smmu-context-fault\n397:          0          0          0          0          0          0          0          0   PDC-GIC 145 Level     arm-smmu-context-fault\n398:          0          0          0          0          0          0          0          0   PDC-GIC 146 Level     arm-smmu-context-fault\n399:          0          0          0          0          0          0          0          0   PDC-GIC 147 Level     arm-smmu-context-fault\n400:          0          0          0          0          0          0          0          0   PDC-GIC 148 Level     arm-smmu-context-fault\n401:          0          0          0          0          0          0          0          0   PDC-GIC 149 Level     arm-smmu-context-fault\n402:          0          0          0          0          0          0          0          0   PDC-GIC 150 Level     arm-smmu-context-fault\n403:          0          0          0          0          0          0          0          0   PDC-GIC 213 Level     arm-smmu-context-fault\n404:          0          0          0          0          0          0          0          0   PDC-GIC 214 Level     arm-smmu-context-fault\n405:          0          0          0          0          0          0          0          0   PDC-GIC 215 Level     arm-smmu-context-fault\n406:          0          0          0          0          0          0          0          0   PDC-GIC 216 Level     arm-smmu-context-fault\n407:          0          0          0          0          0          0          0          0   PDC-GIC 217 Level     arm-smmu-context-fault\n408:          0          0          0          0          0          0          0          0   PDC-GIC 218 Level     arm-smmu-context-fault\n409:          0          0          0          0          0          0          0          0   PDC-GIC 219 Level     arm-smmu-context-fault\n410:          0          0          0          0          0          0          0          0   PDC-GIC 220 Level     arm-smmu-context-fault\n411:          0          0          0          0          0          0          0          0   PDC-GIC 221 Level     arm-smmu-context-fault\n412:          0          0          0          0          0          0          0          0   PDC-GIC 222 Level     arm-smmu-context-fault\n413:          0          0          0          0          0          0          0          0   PDC-GIC 223 Level     arm-smmu-context-fault\n414:          0          0          0          0          0          0          0          0   PDC-GIC 224 Level     arm-smmu-context-fault\n444:          0          0          0          0          0          0          0          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n445:          0          0          0          0          0          0          0          0   PDC-GIC 162 Edge      pwr_event_irq\n446:          0          0          0          0          0          0          0          0   PDC-GIC 518 Level     ss_phy_irq\n447:          0          0          0          0          0          0          0          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n448:          0          0          0          0          0          0          0          0   PDC-GIC 332 Level     kgsl-3d0\n449:          0          0          0          0          0          0          0          0   PDC-GIC 336 Level     HFI\n450:          0          0          0          0          0          0          0          0   PDC-GIC 337 Level     GMU\n451:          0          0          0          0          0          0          0          0   PDC-GIC 509 Edge      csiphy\n452:          0          0          0          0          0          0          0          0   PDC-GIC 510 Edge      csiphy\n453:          0          0          0          0          0          0          0          0   PDC-GIC 511 Edge      csiphy\n454:          0          0          0          0          0          0          0          0   PDC-GIC 492 Edge      cci\n455:          0          0          0          0          0          0          0          0   PDC-GIC 491 Edge      cpas_camnoc\n456:          1          0          0          0          0          0          0          0   PDC-GIC 493 Edge      cpas-cdm\n457:          0          0          0          0          0          0          0          0   PDC-GIC 496 Edge      csid\n458:          2          0          0          0          0          0          0          0   PDC-GIC 497 Edge      ife\n459:          0          0          0          0          0          0          0          0   PDC-GIC 498 Edge      csid\n460:          2          0          0          0          0          0          0          0   PDC-GIC 499 Edge      ife\n461:          0          0          0          0          0          0          0          0   PDC-GIC 500 Edge      csid-lite\n462:          2          0          0          0          0          0          0          0   PDC-GIC 501 Edge      ife-lite\n463:          0          0          0          0          0          0          0          0   PDC-GIC 495 Edge      a5\n464:          0          0          0          0          0          0          0          0   PDC-GIC 506 Edge      jpeg\n465:          0          0          0          0          0          0          0          0   PDC-GIC 507 Edge      jpegdma\n466:          2          0          0          0          0          0          0          0   PDC-GIC 494 Edge      fd\n467:          1          0          0          0          0          0          0          0   PDC-GIC 508 Edge      lrme\n468:          0          0          0          0          0          0          0          0   PDC-GIC  64 Level     limits_sensor-00\n469:          0          0          0          0          0          0          0          0   PDC-GIC  65 Level     limits_sensor-01\n598:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n599:          0          0          0          0          0          0          0          0  pmic_arb 101777466 Edge      qpnp_rtc_alarm\n600:          0          0          0          0          0          0          0          0       sde   2 Edge      sde_rotator_r3\n601:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      adsp\n602:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n603:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      adsp\n604:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      adsp\n633:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      ipa_smp2p_clk_vote\n665:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      modem\n666:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n667:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      modem\n668:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      modem\n697:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      cdsp\n698:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n699:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      cdsp\n700:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      cdsp\n857:          0          0          0          0          0          0          0          0   PDC-GIC 165 Edge      dwc3\n859:          0          0          0          0          0          0          0          0  pmic_arb 16777229 Edge      chg-error\n860:          0          0          0          0          0          0          0          0  pmic_arb 16842765 Edge      chg-state-change\n864:          0          0          0          0          0          0          0          0  pmic_arb 17825806 Edge      otg-fail\n865:          0          0          0          0          0          0          0          0  pmic_arb 17891342 Edge      otg-overcurrent\n866:          0          0          0          0          0          0          0          0  pmic_arb 17956878 Edge      otg-oc-dis-sw-sts\n867:          0          0          0          0          0          0          0          0  pmic_arb 18022414 Edge      testmode-change-detect\n868:          0          0          0          0          0          0          0          0  pmic_arb 18874383 Edge      bat-temp\n869:          0          0          0          0          0          0          0          0  pmic_arb 18939919 Edge      bat-ocp\n870:          0          0          0          0          0          0          0          0  pmic_arb 19005455 Edge      bat-ov\n871:          0          0          0          0          0          0          0          0  pmic_arb 19070991 Edge      bat-low\n872:          0          0          0          0          0          0          0          0  pmic_arb 19136527 Edge      bat-therm-or-id-missing\n873:          0          0          0          0          0          0          0          0  pmic_arb 19202063 Edge      bat-terminal-missing\n874:          0          0          0          0          0          0          0          0  pmic_arb 19922960 Edge      usbin-collapse\n875:          2          0          0          0          0          0          0          0  pmic_arb 19988496 Edge      usbin-lt-3p6v\n876:          0          0          0          0          0          0          0          0  pmic_arb 20054032 Edge      usbin-uv\n877:          0          0          0          0          0          0          0          0  pmic_arb 20119568 Edge      usbin-ov\n878:          0          0          0          0          0          0          0          0  pmic_arb 20185104 Edge      usbin-plugin\n879:          0          0          0          0          0          0          0          0  pmic_arb 20250640 Edge      usbin-src-change\n880:          0          0          0          0          0          0          0          0  pmic_arb 20316176 Edge      usbin-icl-change\n881:          0          0          0          0          0          0          0          0  pmic_arb 20381712 Edge      type-c-change\n882:          0          0          0          0          0          0          0          0  pmic_arb 20971537 Edge      dcin-collapse\n883:          0          0          0          0          0          0          0          0  pmic_arb 21037073 Edge      dcin-lt-3p6v\n884:          0          0          0          0          0          0          0          0  pmic_arb 21102609 Edge      dcin-uv\n885:          0          0          0          0          0          0          0          0  pmic_arb 21168145 Edge      dcin-ov\n886:          0          0          0          0          0          0          0          0  pmic_arb 21233681 Edge      dcin-plugin\n887:          0          0          0          0          0          0          0          0  pmic_arb 21299217 Edge      div2-en-dg\n888:          0          0          0          0          0          0          0          0  pmic_arb 21364753 Edge      dcin-icl-change\n890:          0          0          0          0          0          0          0          0  pmic_arb 23134227 Edge      wdog-bark\n891:          0          0          0          0          0          0          0          0  pmic_arb 23199763 Edge      aicl-fail\n892:          0          0          0          0          0          0          0          0  pmic_arb 23265299 Edge      aicl-done\n893:          0          0          0          0          0          0          0          0  pmic_arb 23330835 Edge      high-duty-cycle\n894:          0          0          0          0          0          0          0          0  pmic_arb 23396371 Edge      input-current-limiting\n895:          0          0          0          0          0          0          0          0  pmic_arb 23461907 Edge      temperature-change\n896:          0          0          0          0          0          0          0          0  pmic_arb 23527443 Edge      switcher-power-ok\nIPI0:        59         29         29         29         29         29         29         28       Rescheduling interrupts\nIPI1:         0          6          6          6          6          6          6          6       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI4:       165          6          4          5          4          5          5          7       IRQ work interrupts\nIPI5:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm710/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    4 root      0:00 [kworker/0:0H]\n    5 root      0:00 [kworker/u16:0]\n    6 root      0:00 [ksoftirqd/0]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [lru-add-drain]\n   15 root      0:00 [cpuhp/0]\n   16 root      0:00 [cpuhp/1]\n   17 root      0:00 [migration/1]\n   18 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0H]\n   21 root      0:00 [rcuop/1]\n   22 root      0:00 [rcuos/1]\n   23 root      0:00 [rcuob/1]\n   24 root      0:00 [cpuhp/2]\n   25 root      0:00 [migration/2]\n   26 root      0:00 [ksoftirqd/2]\n   27 root      0:00 [kworker/2:0]\n   28 root      0:00 [kworker/2:0H]\n   29 root      0:00 [rcuop/2]\n   30 root      0:00 [rcuos/2]\n   31 root      0:00 [rcuob/2]\n   32 root      0:00 [cpuhp/3]\n   33 root      0:00 [migration/3]\n   34 root      0:00 [ksoftirqd/3]\n   36 root      0:00 [kworker/3:0H]\n   37 root      0:00 [rcuop/3]\n   38 root      0:00 [rcuos/3]\n   39 root      0:00 [rcuob/3]\n   40 root      0:00 [cpuhp/4]\n   41 root      0:00 [migration/4]\n   42 root      0:00 [ksoftirqd/4]\n   43 root      0:00 [kworker/4:0]\n   44 root      0:00 [kworker/4:0H]\n   45 root      0:00 [rcuop/4]\n   46 root      0:00 [rcuos/4]\n   47 root      0:00 [rcuob/4]\n   48 root      0:00 [cpuhp/5]\n   49 root      0:00 [migration/5]\n   50 root      0:00 [ksoftirqd/5]\n   51 root      0:00 [kworker/5:0]\n   52 root      0:00 [kworker/5:0H]\n   53 root      0:00 [rcuop/5]\n   54 root      0:00 [rcuos/5]\n   55 root      0:00 [rcuob/5]\n   56 root      0:00 [cpuhp/6]\n   57 root      0:00 [migration/6]\n   58 root      0:00 [ksoftirqd/6]\n   59 root      0:00 [kworker/6:0]\n   60 root      0:00 [kworker/6:0H]\n   61 root      0:00 [rcuop/6]\n   62 root      0:00 [rcuos/6]\n   63 root      0:00 [rcuob/6]\n   64 root      0:00 [cpuhp/7]\n   65 root      0:00 [migration/7]\n   66 root      0:00 [ksoftirqd/7]\n   67 root      0:00 [kworker/7:0]\n   68 root      0:00 [kworker/7:0H]\n   69 root      0:00 [rcuop/7]\n   70 root      0:00 [rcuos/7]\n   71 root      0:00 [rcuob/7]\n   72 root      0:00 [netns]\n   73 root      0:00 [pm]\n   75 root      0:00 [kworker/u17:0]\n   76 root      0:00 [ipa_usb_wq]\n   78 root      0:00 [msm_watchdog]\n   79 root      0:00 [qmp_aop]\n   80 root      0:00 [smem_native_mps]\n   81 root      0:00 [mpss_smem_glink]\n   82 root      0:00 [smem_native_lpa]\n   83 root      0:00 [lpass_smem_glin]\n   84 root      0:00 [smem_native_cds]\n   85 root      0:00 [cdsp_smem_glink]\n   86 root      0:00 [khungtaskd]\n   87 root      0:00 [oom_reaper]\n   88 root      0:00 [writeback]\n   89 root      0:00 [kcompactd0]\n   90 root      0:00 [crypto]\n   91 root      0:00 [bioset]\n   92 root      0:00 [kblockd]\n   93 root      0:00 [irq/369-arm-smm]\n   94 root      0:00 [irq/370-arm-smm]\n   95 root      0:00 [irq/379-arm-smm]\n   96 root      0:00 [irq/20-tsens-up]\n   97 root      0:00 [irq/21-tsens-cr]\n   98 root      0:00 [irq/22-tsens-up]\n   99 root      0:00 [irq/23-tsens-cr]\n  100 root      0:00 [system]\n  101 root      0:00 [ipa_power_mgmt]\n  102 root      0:00 [transport_power]\n  103 root      0:00 [ipa_rm_wq]\n  104 root      0:00 [devfreq_wq]\n  105 root      0:00 [governor_msm_ad]\n  106 root      0:00 [cfg80211]\n  107 root      0:00 [irq/102-qpnp_lc]\n  109 root      0:00 [irq/101-qpnp_wl]\n  134 root      0:00 [kswapd0]\n  135 root      0:00 [vmstat]\n  136 root      0:00 [ecryptfs-kthrea]\n  169 root      0:00 [irq/384-arm-smm]\n  170 root      0:00 [irq/385-arm-smm]\n  171 root      0:00 [irq/63-eud_irq]\n  172 root      0:00 [glink_ssr_wq]\n  173 root      0:00 [glink_lbsrv]\n  174 root      0:00 [spi_wdsp]\n  175 root      0:00 [wdsp_spi_glink_]\n  176 root      0:00 [glink_xprt_wq]\n  177 root      0:00 [IPCRTR_mpss_sme]\n  178 root      0:00 [IPCRTR_lpass_sm]\n  179 root      0:00 [IPCRTR_cdsp_sme]\n  180 root      0:00 [glink_pkt_wq]\n  181 root      0:00 [irq/386-arm-smm]\n  182 root      0:00 [qmi_svc_event_w]\n  183 root      0:00 [msm_ipc_router]\n  184 root      0:00 [servloc_wq]\n  185 root      0:00 [mem_share_svc]\n  186 root      0:00 [irq/387-arm-smm]\n  187 root      0:00 [qmi_hndl0000000]\n  188 root      0:00 [irq/388-arm-smm]\n  189 root      0:00 [diag_real_time_]\n  190 root      0:00 [diag_wq]\n  192 root      0:00 [DIAG_USB_diag]\n  193 root      0:00 [diag_cntl_wq]\n  194 root      0:00 [diag_dci_wq]\n  195 root      0:00 [MODEM_CNTL]\n  196 root      0:00 [MODEM_DATA]\n  197 root      0:00 [MODEM_CMD]\n  198 root      0:00 [MODEM_DCI]\n  199 root      0:00 [MODEM_DCI_CMD]\n  200 root      0:00 [LPASS_CNTL]\n  201 root      0:00 [LPASS_DATA]\n  202 root      0:00 [LPASS_CMD]\n  203 root      0:00 [LPASS_DCI]\n  204 root      0:00 [LPASS_DCI_CMD]\n  205 root      0:00 [WCNSS_CNTL]\n  206 root      0:00 [WCNSS_DATA]\n  207 root      0:00 [WCNSS_CMD]\n  208 root      0:00 [WCNSS_DCI]\n  209 root      0:00 [WCNSS_DCI_CMD]\n  210 root      0:00 [SENSORS_CNTL]\n  211 root      0:00 [SENSORS_DATA]\n  212 root      0:00 [SENSORS_CMD]\n  213 root      0:00 [SENSORS_DCI]\n  214 root      0:00 [SENSORS_DCI_CMD]\n  215 root      0:00 [DIAG_CTRL]\n  216 root      0:00 [DIAG_DATA]\n  217 root      0:00 [DIAG_CMD]\n  218 root      0:00 [DIAG_DCI_DATA]\n  219 root      0:00 [DIAG_DCI_CMD]\n  220 root      0:00 [CDSP_CNTL]\n  221 root      0:00 [CDSP_DATA]\n  222 root      0:00 [CDSP_CMD]\n  223 root      0:00 [CDSP_DCI]\n  224 root      0:00 [CDSP_DCI_CMD]\n  225 root      0:00 [DIAG_CNTL_SOCKE]\n  226 root      0:00 [DIAG_GLINK_DIAG]\n  227 root      0:00 [DIAG_GLINK_DIAG]\n  228 root      0:00 [DIAG_GLINK_DIAG]\n  229 root      0:00 [DIAG_GLINK_DIAG]\n  230 root      0:00 [DIAG_GLINK_DIAG]\n  231 root      0:00 [mykthread]\n  232 root      0:00 [oppo_ffl]\n  233 root      0:00 [irq/383-arm-smm]\n  234 root      0:00 [irq/389-arm-smm]\n  235 root      0:00 [crtc_commit:100]\n  236 root      0:00 [crtc_event:100]\n  237 root      0:00 [crtc_commit:153]\n  238 root      0:00 [crtc_event:153]\n  239 root      0:00 [pp_event]\n  240 root      0:00 [kgsl-workqueue]\n  241 root      0:00 [kgsl-mementry]\n  242 root      0:00 [kgsl_worker_thr]\n  243 root      0:00 [irq/371-arm-smm]\n  244 root      0:00 [irq/372-arm-smm]\n  245 root      0:00 [irq/373-arm-smm]\n  246 root      0:00 [kgsl-events]\n  247 root      0:00 [kgsl_devfreq_wq]\n  248 root      0:00 [bioset]\n  249 root      0:00 [bioset]\n  250 root      0:00 [bioset]\n  251 root      0:00 [bioset]\n  252 root      0:00 [bioset]\n  253 root      0:00 [bioset]\n  254 root      0:00 [bioset]\n  255 root      0:00 [bioset]\n  256 root      0:00 [bioset]\n  257 root      0:00 [bioset]\n  258 root      0:00 [bioset]\n  259 root      0:00 [bioset]\n  260 root      0:00 [bioset]\n  261 root      0:00 [bioset]\n  262 root      0:00 [bioset]\n  263 root      0:00 [bioset]\n  264 root      0:00 [bioset]\n  265 root      0:00 [bioset]\n  266 root      0:00 [bioset]\n  267 root      0:00 [bioset]\n  268 root      0:00 [bioset]\n  269 root      0:00 [bioset]\n  270 root      0:00 [bioset]\n  271 root      0:00 [bioset]\n  272 root      0:00 [bioset]\n  273 root      0:00 [bioset]\n  274 root      0:00 [bioset]\n  275 root      0:00 [bioset]\n  276 root      0:00 [bioset]\n  277 root      0:00 [bioset]\n  278 root      0:00 [bioset]\n  279 root      0:00 [bioset]\n  280 root      0:00 [bioset]\n  281 root      0:00 [qseecom-unreg-l]\n  282 root      0:00 [qseecom-unload-]\n  283 root      0:00 [memory_wq]\n  284 root      0:00 [irq/390-arm-smm]\n  285 root      0:00 [qcrypto_seq_res]\n  286 root      0:00 [irq/391-arm-smm]\n  307 root      0:00 [spi32766]\n  308 root      0:00 [bond0]\n  309 root      0:00 [sharedmem_qmi_w]\n  315 root      0:00 [uether]\n  316 root      0:00 [qmi_hndl0000000]\n  317 root      0:00 [k_ipa_usb]\n  318 root      0:00 [tp_async]\n  319 root      0:00 [irq/267-touchpa]\n  320 root      0:00 [speedup_resume_]\n  321 root      0:00 [lcd_trigger_loa]\n  322 root      0:00 [esd_workthread]\n  323 root      0:00 [HMX_0f_update_r]\n  324 root      0:00 [msm_vidc_worker]\n  325 root      0:00 [pm_workerq_venu]\n  326 root      0:00 [irq/392-arm-smm]\n  327 root      0:00 [irq/393-arm-smm]\n  328 root      0:00 [irq/394-arm-smm]\n  329 root      0:00 [irq/395-arm-smm]\n  330 root      0:00 [rot_commitq_0_0]\n  331 root      0:00 [rot_commitq_0_1]\n  332 root      0:00 [rot_doneq_0_0]\n  333 root      0:00 [rot_doneq_0_1]\n  334 root      0:00 [rot_fenceq_0_0]\n  335 root      0:00 [rot_fenceq_0_1]\n  336 root      0:00 [rot_fenceq_0_2]\n  337 root      0:00 [rot_fenceq_0_3]\n  338 root      0:00 [rot_fenceq_0_4]\n  339 root      0:00 [rot_fenceq_0_5]\n  340 root      0:00 [rot_fenceq_0_6]\n  341 root      0:00 [rot_fenceq_0_7]\n  342 root      0:00 [rot_fenceq_0_8]\n  343 root      0:00 [rot_fenceq_0_9]\n  344 root      0:00 [rot_fenceq_0_10]\n  345 root      0:00 [rot_fenceq_0_11]\n  346 root      0:00 [rot_fenceq_0_12]\n  347 root      0:00 [rot_fenceq_0_13]\n  348 root      0:00 [rot_fenceq_0_14]\n  349 root      0:00 [rot_fenceq_0_15]\n  350 root      0:00 [cam-cpas]\n  351 root      0:00 [qcom,cam_virtua]\n  352 root      0:00 [irq/396-arm-smm]\n  353 root      0:00 [qcom,cam170-cpa]\n  354 root      0:00 [irq/397-arm-smm]\n  355 root      0:00 [cam_cci_wq]\n  356 root      0:00 [cam_cci_wq]\n  357 root      0:00 [irq/398-arm-smm]\n  358 root      0:00 [irq/399-arm-smm]\n  359 root      0:00 [irq/400-arm-smm]\n  360 root      0:00 [irq/401-arm-smm]\n  361 root      0:00 [irq/83-bcl-high]\n  362 root      0:00 [irq/85-bcl-low-]\n  363 root      0:00 [irq/468-limits_]\n  364 root      0:00 [irq/469-limits_]\n  365 root      0:00 [qmi_tmd_wq]\n  366 root      0:00 [dm_bufio_cache]\n  367 root      0:00 [irq/89-haptics_]\n  368 root      0:00 [kworker/u16:2]\n  369 root      0:00 [irq/88-haptics_]\n  370 root      0:00 [mmc_clk_gate/mm]\n  372 root      0:00 [cds_recovery_wo]\n  373 root      0:00 [kworker/1:1]\n  375 root      0:00 [kworker/3:1]\n  380 root      0:00 [irq/124-7c4000.]\n  382 root      0:00 [irq/123-mmc0]\n  383 root      0:00 [bioset]\n  384 root      0:00 [sdhci_msm_pm_qo]\n  385 root      0:00 [mmc-cmdqd/0]\n  386 root      0:00 [bioset]\n  387 root      0:00 [mmcqd/0rpmb]\n  388 root      0:00 [mmc_clk_gate/mm]\n  389 root      0:00 [irq/126-8804000]\n  390 root      0:00 [irq/125-mmc1]\n  391 root      0:00 [irq/238-8804000]\n  392 root      0:00 [irq/402-arm-smm]\n  393 root      0:00 [uaudio_svc]\n  394 root      0:00 [qmi_hndl0000000]\n  395 root      0:00 [apr_driver]\n  397 root      0:00 [ipv6_addrconf]\n  398 root      0:00 [irq/603-adsp]\n  400 root      0:00 [sysmon_wq]\n  401 root      0:00 [irq/699-cdsp]\n  402 root      0:00 [irq/667-modem]\n  409 root      0:00 [bioset]\n  410 root      0:00 [sdhci_msm_pm_qo]\n  411 root      0:00 [mmcqd/1]\n  416 1000      0:00 [shortc_thread]\n  417 root      0:00 [irq/859-chg-err]\n  419 root      0:00 [irq/860-chg-sta]\n  420 root      0:00 [irq/864-otg-fai]\n  421 root      0:00 [irq/865-otg-ove]\n  422 root      0:00 [irq/866-otg-oc-]\n  423 root      0:00 [irq/867-testmod]\n  424 root      0:00 [irq/868-bat-tem]\n  425 root      0:00 [irq/869-bat-ocp]\n  427 root      0:00 [irq/870-bat-ov]\n  428 root      0:00 [irq/871-bat-low]\n  429 root      0:00 [irq/872-bat-the]\n  430 root      0:00 [irq/873-bat-ter]\n  431 root      0:00 [irq/874-usbin-c]\n  432 root      0:00 [irq/875-usbin-l]\n  433 root      0:00 [irq/876-usbin-u]\n  435 root      0:00 [irq/877-usbin-o]\n  436 root      0:00 [irq/878-usbin-p]\n  437 root      0:00 [irq/879-usbin-s]\n  438 root      0:00 [irq/880-usbin-i]\n  439 root      0:00 [irq/881-type-c-]\n  440 root      0:00 [irq/882-dcin-co]\n  441 root      0:00 [irq/883-dcin-lt]\n  442 root      0:00 [irq/884-dcin-uv]\n  443 root      0:00 [irq/885-dcin-ov]\n  444 root      0:00 [irq/886-dcin-pl]\n  445 root      0:00 [irq/887-div2-en]\n  446 root      0:00 [irq/888-dcin-ic]\n  447 root      0:00 [irq/890-wdog-ba]\n  448 root      0:00 [irq/891-aicl-fa]\n  449 root      0:00 [irq/892-aicl-do]\n  450 root      0:00 [irq/893-high-du]\n  451 root      0:00 [irq/894-input-c]\n  452 root      0:00 [irq/895-tempera]\n  453 root      0:00 [irq/896-switche]\n  454 root      0:00 [irq/237-ccdetec]\n  455 root      0:00 [tbatt_pwroff]\n  456 root      0:00 [irq/445-pwr_eve]\n  457 root      0:00 [irq/444-dp_hs_p]\n  458 root      0:00 [irq/447-dm_hs_p]\n  459 root      0:00 [irq/446-ss_phy_]\n  460 root      0:00 [irq/382-arm-smm]\n  461 root      0:00 [usb_bam_wq]\n  462 root      0:00 [core_ctl/0]\n  463 root      0:00 [rq_stats]\n  464 root      0:00 [msm_perf:events]\n  465 root      0:00 [irq/403-arm-smm]\n  466 root      0:00 [irq/404-arm-smm]\n  467 root      0:00 [irq/405-arm-smm]\n  468 root      0:00 [irq/406-arm-smm]\n  469 root      0:00 [irq/407-arm-smm]\n  470 root      0:00 [irq/408-arm-smm]\n  471 root      0:00 [irq/409-arm-smm]\n  472 root      0:00 [irq/410-arm-smm]\n  473 root      0:00 [irq/411-arm-smm]\n  474 root      0:00 [irq/412-arm-smm]\n  475 root      0:00 [irq/413-arm-smm]\n  476 root      0:00 [irq/414-arm-smm]\n  477 root      0:00 [sb-3]\n  478 root      0:00 [ngd_rx_thread3]\n  479 root      0:00 [ngd_notify_sl3]\n  480 root      0:00 [irq/263-soc:fpc]\n  481 root      0:00 [irq/100-qpnp_fl]\n  482 root      0:00 [irq/99-qpnp_fla]\n  483 root      0:00 [irq/98-qpnp_fla]\n  495 root      0:00 [kworker/2:2]\n  496 root      0:00 [kworker/3:2]\n  497 root      0:00 [kworker/4:2]\n  498 root      0:00 [kworker/5:2]\n  499 root      0:00 [kworker/6:2]\n  500 root      0:00 [kworker/7:2]\n  501 root      0:00 [kworker/0:1H]\n  525 root      0:00 [kworker/0:2]\n  532 root      0:00 [kworker/1:0]\n  536 root      0:00 [kworker/0:0]\n  552 root      0:00 [kworker/0:1]\n  574 root      0:00 [kworker/6:1]\n  618 root      0:00 ps -A\n"
  },
  {
    "path": "results/sdm710/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1113.850358,3.7128345266666662,85.17381343283574,22.94204658937106,13.076427110865888,269.355634845\r\n1,576000,2138.76294,3.713130104166667,100.70548920863304,14.126801341090664,21.236229827016057,140.278364686\r\n1,748800,2780.32641,3.713042748397436,114.88623364485973,12.397286710877825,24.198843424083208,107.909244803\r\n1,998400,3707.136237,3.713077160456731,127.93478749999996,10.353982995873867,28.974357029517247,80.931724656\r\n1,1209600,4491.421385,3.713145986276455,144.07415151515147,9.62417399815805,31.171506256788,66.800143516\r\n1,1324800,4919.403768,3.713318061594203,152.95048333333324,9.328223305577792,32.16046509313468,60.988517998\r\n1,1516800,5632.322019,3.7132924703322785,167.2992830188679,8.911804282621059,33.663216839830184,53.268634042\r\n1,1612800,5988.860719,3.7133312989831353,170.81967346938768,8.557737032106536,35.05599656480135,50.098076283\r\n1,1708800,6345.177665,3.7132359930945693,187.167829787234,8.85024217517002,33.897377502467805,47.285060607\r\n6,300000,1863.979223,6.2132640766666665,116.66812499999992,18.779308613173423,15.975029016220233,160.963490355\r\n6,652800,4058.221958,6.21663902879902,164.56323287671225,12.168026497517642,24.65477865791975,73.941343305\r\n6,825600,5128.205128,6.211488769379844,193.32727586206886,11.313149901859541,26.517813571151308,58.518126071\r\n6,979200,6079.889751,6.209037735906862,224.93744897959175,11.103142581171145,27.01937742461706,49.361022949\r\n6,1132800,7049.20344,6.222813771186441,260.77899999999994,11.102903202596517,27.019959962349507,42.57590988\r\n6,1363200,8499.787505,6.23517275894953,320.5573142857142,11.319642257055769,26.502604339196655,35.312381757\r\n6,1536000,9555.053031,6.220737650390625,374.88819354838705,11.776792359206116,25.473829447751534,31.414145769\r\n6,1747200,10886.131069,6.230615309638278,451.91933333333327,12.461773998149772,24.07361905652772,27.575217697\r\n6,1843200,11484.132757,6.230540775282117,471.05453846153847,12.313612934306763,24.363280021915806,26.14052499\r\n6,1996800,12430.080796,6.225000398637821,555.2161249999999,13.40978900591123,22.371716651750123,24.152376709\r\n6,2054400,12802.458072,6.231726086448598,587.0763478260868,13.767192610312717,21.790935050569153,23.450429678\r\n6,2169600,13473.457289,6.2101112135877585,667.452409090909,14.873200469067813,20.17050739172903,22.283537023\r\n6,2208000,13729.348771,6.218002160778986,683.5063333333333,14.946763414470373,20.07123493435119,21.867776033\r\n"
  },
  {
    "path": "results/sdm710/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1750.139041468501, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1250.121, 1268.572, 1272.393, 1272.393, 1272.393, 1249.467, 1245.32, 1249.14, 1245.32, 1252.96, 1245.32, 1244.994, 1244.994, 1244.994, 1248.813, 1248.813, 1244.668, 1244.668, 1244.668, 1248.159, 1244.342, 1244.342, 1248.159, 1244.342, 1251.648, 1244.016, 1247.832, 1247.832, 1244.016], \"power_mean\": 1250.1620344827586, \"energy_millijoules\": 6250.810172413793, \"energy_joules\": 6.250810172413793}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 269.355634845, \"elapsed_ns\": 269355634845, \"power_samples\": [45.115999999999985, 87.06999999999994, 87.06999999999994, 87.06999999999994, 90.18399999999997, 86.37199999999984, 86.37199999999984, 90.18399999999997, 86.37199999999984, 86.02299999999991, 86.02299999999991, 86.02299999999991, 86.02299999999991, 86.02299999999991, 89.83399999999983, 86.02299999999991, 89.83399999999983, 86.02299999999991, 86.02299999999991, 85.67399999999998, 89.48399999999992, 85.67399999999998, 85.67399999999998, 85.67399999999998, 85.67399999999998, 85.67399999999998, 85.67399999999998, 85.67399999999998, 85.67399999999998, 85.32499999999982, 85.32499999999982, 85.32499999999982, 85.32499999999982, 85.32499999999982, 89.13400000000001, 85.32499999999982, 85.32499999999982, 85.32499999999982, 85.32499999999982, 85.32499999999982, 85.32499999999982, 85.32499999999982, 85.32499999999982, 85.32499999999982, 84.97599999999989, 84.97599999999989, 84.97599999999989, 84.97599999999989, 84.97599999999989, 84.97599999999989, 84.97599999999989, 84.97599999999989, 84.97599999999989, 84.97599999999989, 84.97599999999989, 176.36799999999994, 84.97599999999989, 84.97599999999989, 84.97599999999989, 84.62699999999995, 84.62699999999995, 84.62699999999995, 84.62699999999995, 84.62699999999995, 84.62699999999995, 84.62699999999995, 84.62699999999995, 84.62699999999995, 88.43399999999997, 84.62699999999995, 84.62699999999995, 84.62699999999995, 84.62699999999995, 84.27800000000002, 84.27800000000002, 84.27800000000002, 88.08399999999983, 84.27800000000002, 84.27800000000002, 84.27800000000002, 84.27800000000002, 84.27800000000002, 84.27800000000002, 84.27800000000002, 88.08399999999983, 84.27800000000002, 84.27800000000002, 84.27800000000002, 83.92899999999986, 83.92899999999986, 83.92899999999986, 83.92899999999986, 87.73399999999992, 83.92899999999986, 87.73399999999992, 83.92899999999986, 83.92899999999986, 83.92899999999986, 83.92899999999986, 83.92899999999986, 87.73399999999992, 83.92899999999986, 87.73399999999992, 83.57999999999993, 87.38400000000001, 83.57999999999993, 83.57999999999993, 87.38400000000001, 83.57999999999993, 83.57999999999993, 83.57999999999993, 83.57999999999993, 83.57999999999993, 87.38400000000001, 83.57999999999993, 83.57999999999993, 83.57999999999993, 83.57999999999993, 87.38400000000001, 83.57999999999993, 83.57999999999993, 83.57999999999993, 83.57999999999993, 87.03399999999988, 83.231, 87.03399999999988, 83.231, 87.03399999999988, 83.231, 83.231, 83.231, 87.03399999999988, 83.231, 87.03399999999988, 83.231, 83.231, 83.231, 83.231, 83.231, 87.03399999999988, 83.231, 87.03399999999988, 83.231, 82.88199999999983, 82.88199999999983, 86.68399999999997, 82.88199999999983, 82.88199999999983, 86.68399999999997, 82.88199999999983, 82.88199999999983, 82.88199999999983, 82.88199999999983, 82.88199999999983, 82.88199999999983, 86.68399999999997, 86.68399999999997, 82.88199999999983, 82.88199999999983, 86.68399999999997, 82.88199999999983, 86.68399999999997, 82.88199999999983, 86.68399999999997, 82.88199999999983, 86.68399999999997, 82.88199999999983, 82.88199999999983, 82.5329999999999, 86.33399999999983, 82.5329999999999, 82.5329999999999, 82.5329999999999, 86.33399999999983, 82.5329999999999, 82.5329999999999, 82.5329999999999, 86.33399999999983, 82.5329999999999, 86.33399999999983, 82.5329999999999, 86.33399999999983, 82.5329999999999, 86.33399999999983, 82.5329999999999, 82.5329999999999, 82.5329999999999, 86.33399999999983, 82.5329999999999, 86.33399999999983, 82.5329999999999, 82.5329999999999, 82.5329999999999, 85.98399999999992, 82.18399999999997, 85.98399999999992, 82.18399999999997, 82.18399999999997, 85.98399999999992, 173.38400000000001, 82.18399999999997, 85.98399999999992, 82.18399999999997, 85.98399999999992, 82.18399999999997, 82.18399999999997, 82.18399999999997, 82.18399999999997, 85.98399999999992, 85.98399999999992, 82.18399999999997, 85.98399999999992, 82.18399999999997, 85.63400000000001, 81.83500000000004, 85.63400000000001, 81.83500000000004, 85.63400000000001, 85.63400000000001, 81.83500000000004, 81.83500000000004, 85.63400000000001, 81.83500000000004, 85.63400000000001, 81.83500000000004, 85.63400000000001, 81.83500000000004, 85.63400000000001, 85.63400000000001, 85.63400000000001, 81.83500000000004, 85.63400000000001, 81.83500000000004, 85.63400000000001, 81.83500000000004, 85.63400000000001, 81.83500000000004, 85.63400000000001, 85.63400000000001, 85.63400000000001, 81.83500000000004, 85.63400000000001, 85.63400000000001, 85.28399999999988, 85.28399999999988, 85.28399999999988, 81.48599999999988, 85.28399999999988, 85.28399999999988, 85.28399999999988, 81.48599999999988, 85.28399999999988, 85.28399999999988, 85.28399999999988, 81.48599999999988, 85.28399999999988, 81.48599999999988, 85.28399999999988, 85.28399999999988, 85.28399999999988, 81.48599999999988, 85.28399999999988, 81.48599999999988, 85.28399999999988, 85.28399999999988, 85.28399999999988, 81.48599999999988, 84.93399999999997], \"power_mean\": 85.17381343283574, \"energy_millijoules\": 22942.04658937106, \"energy_joules\": 22.94204658937106, \"coremark_score\": 1113.850358, \"coremarks_per_mhz\": 3.7128345266666662, \"ulpmark_cm_score\": 13.076427110865888}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1251.32, 1251.32, 1247.505, 1251.32], \"power_mean\": 1250.36625, \"energy_millijoules\": 6251.83125, \"energy_joules\": 6.25183125}}, \"576000\": {\"active\": {\"elapsed_sec\": 140.278364686, \"elapsed_ns\": 140278364686, \"power_samples\": [21.384000000000015, 104.98399999999992, 101.18399999999997, 101.18399999999997, 104.98399999999992, 100.12199999999984, 103.91899999999987, 100.12199999999984, 103.91899999999987, 100.12199999999984, 99.76800000000003, 99.76800000000003, 99.76800000000003, 99.76800000000003, 99.76800000000003, 99.76800000000003, 103.56399999999985, 99.76800000000003, 99.76800000000003, 99.76800000000003, 99.76800000000003, 103.56399999999985, 99.76800000000003, 99.76800000000003, 99.76800000000003, 99.76800000000003, 99.76800000000003, 99.76800000000003, 103.56399999999985, 99.76800000000003, 107.0039999999999, 99.41399999999999, 99.41399999999999, 99.41399999999999, 99.41399999999999, 99.41399999999999, 103.20899999999983, 99.41399999999999, 99.41399999999999, 99.41399999999999, 99.41399999999999, 103.20899999999983, 99.41399999999999, 99.41399999999999, 99.41399999999999, 99.41399999999999, 103.20899999999983, 99.41399999999999, 103.20899999999983, 99.41399999999999, 99.41399999999999, 103.20899999999983, 99.41399999999999, 99.41399999999999, 99.41399999999999, 99.41399999999999, 103.20899999999983, 99.41399999999999, 99.41399999999999, 99.41399999999999, 99.05999999999995, 102.85399999999981, 99.05999999999995, 99.05999999999995, 99.05999999999995, 99.05999999999995, 193.90999999999985, 99.05999999999995, 99.05999999999995, 99.05999999999995, 99.05999999999995, 99.05999999999995, 102.85399999999981, 99.05999999999995, 102.85399999999981, 99.05999999999995, 102.85399999999981, 99.05999999999995, 99.05999999999995, 99.05999999999995, 99.05999999999995, 102.85399999999981, 102.85399999999981, 99.05999999999995, 99.05999999999995, 102.85399999999981, 102.85399999999981, 99.05999999999995, 102.85399999999981, 99.05999999999995, 98.7059999999999, 102.49900000000002, 102.49900000000002, 98.7059999999999, 98.7059999999999, 102.49900000000002, 102.49900000000002, 98.7059999999999, 102.49900000000002, 98.7059999999999, 98.7059999999999, 102.49900000000002, 102.49900000000002, 98.7059999999999, 98.7059999999999, 102.49900000000002, 98.7059999999999, 98.7059999999999, 98.7059999999999, 102.49900000000002, 102.49900000000002, 102.49900000000002, 98.7059999999999, 102.49900000000002, 98.7059999999999, 102.49900000000002, 98.7059999999999, 102.49900000000002, 98.7059999999999, 102.49900000000002, 102.49900000000002, 102.49900000000002, 98.7059999999999, 102.49900000000002, 102.49900000000002, 102.49900000000002, 98.7059999999999, 102.49900000000002, 102.49900000000002, 102.49900000000002, 98.35199999999986, 102.144, 98.35199999999986, 102.144, 98.35199999999986, 102.144, 98.35199999999986, 102.144, 98.35199999999986], \"power_mean\": 100.70548920863304, \"energy_millijoules\": 14126.801341090664, \"energy_joules\": 14.126801341090664, \"coremark_score\": 2138.76294, \"coremarks_per_mhz\": 3.713130104166667, \"ulpmark_cm_score\": 21.236229827016057}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1235.0, 1246.4, 1238.8, 1238.8], \"power_mean\": 1239.75, \"energy_millijoules\": 6198.75, \"energy_joules\": 6.19875}}, \"748800\": {\"active\": {\"elapsed_sec\": 107.909244803, \"elapsed_ns\": 107909244803, \"power_samples\": [88.029, 114.59399999999982, 117.3119999999999, 113.51999999999998, 113.51999999999998, 117.3119999999999, 113.51999999999998, 116.95299999999997, 113.16200000000003, 113.16200000000003, 113.16200000000003, 116.95299999999997, 113.16200000000003, 116.95299999999997, 113.16200000000003, 116.95299999999997, 113.16200000000003, 116.95299999999997, 113.16200000000003, 116.95299999999997, 113.16200000000003, 116.95299999999997, 113.16200000000003, 116.95299999999997, 113.16200000000003, 113.16200000000003, 113.16200000000003, 113.16200000000003, 113.16200000000003, 116.95299999999997, 113.16200000000003, 113.16200000000003, 113.16200000000003, 113.16200000000003, 113.16200000000003, 116.95299999999997, 113.16200000000003, 116.59399999999982, 112.80399999999986, 112.80399999999986, 112.80399999999986, 116.59399999999982, 112.80399999999986, 112.80399999999986, 112.80399999999986, 116.59399999999982, 112.80399999999986, 116.59399999999982, 112.80399999999986, 116.59399999999982, 112.80399999999986, 116.59399999999982, 112.80399999999986, 116.59399999999982, 112.80399999999986, 112.80399999999986, 112.80399999999986, 116.59399999999982, 112.80399999999986, 116.59399999999982, 112.80399999999986, 112.80399999999986, 207.55399999999986, 112.80399999999986, 112.80399999999986, 116.59399999999982, 112.80399999999986, 116.59399999999982, 112.80399999999986, 112.80399999999986, 112.80399999999986, 116.2349999999999, 112.44599999999991, 116.2349999999999, 112.44599999999991, 116.2349999999999, 112.44599999999991, 116.2349999999999, 112.44599999999991, 116.2349999999999, 112.44599999999991, 116.59399999999982, 116.59399999999982, 116.59399999999982, 112.80399999999986, 116.59399999999982, 112.44599999999991, 116.2349999999999, 112.44599999999991, 112.44599999999991, 112.44599999999991, 116.2349999999999, 116.2349999999999, 112.44599999999991, 112.44599999999991, 116.2349999999999, 112.44599999999991, 116.2349999999999, 116.2349999999999, 116.2349999999999, 112.44599999999991, 112.44599999999991, 112.44599999999991, 112.44599999999991, 112.44599999999991, 112.44599999999991, 112.44599999999991], \"power_mean\": 114.88623364485973, \"energy_millijoules\": 12397.286710877825, \"energy_joules\": 12.397286710877825, \"coremark_score\": 2780.32641, \"coremarks_per_mhz\": 3.713042748397436, \"ulpmark_cm_score\": 24.198843424083208}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1236.192, 1236.192, 1244.76, 1237.17], \"power_mean\": 1238.5785, \"energy_millijoules\": 6192.8925, \"energy_joules\": 6.1928925}}, \"998400\": {\"active\": {\"elapsed_sec\": 80.931724656, \"elapsed_ns\": 80931724656, \"power_samples\": [56.63999999999987, 132.48000000000002, 132.48000000000002, 132.48000000000002, 128.68799999999987, 131.02800000000002, 127.24000000000001, 131.02800000000002, 127.24000000000001, 131.02800000000002, 127.24000000000001, 131.02800000000002, 127.24000000000001, 131.02800000000002, 127.24000000000001, 127.24000000000001, 131.02800000000002, 127.24000000000001, 127.24000000000001, 127.24000000000001, 127.24000000000001, 127.24000000000001, 127.24000000000001, 127.24000000000001, 127.24000000000001, 130.66499999999996, 126.87799999999993, 130.66499999999996, 126.87799999999993, 130.66499999999996, 126.87799999999993, 130.66499999999996, 126.87799999999993, 130.66499999999996, 126.87799999999993, 130.66499999999996, 130.66499999999996, 126.87799999999993, 126.87799999999993, 130.66499999999996, 126.87799999999993, 130.66499999999996, 126.87799999999993, 130.66499999999996, 126.87799999999993, 126.87799999999993, 130.66499999999996, 130.66499999999996, 126.87799999999993, 130.66499999999996, 126.87799999999993, 130.66499999999996, 130.66499999999996, 126.87799999999993, 126.87799999999993, 126.87799999999993, 130.66499999999996, 130.66499999999996, 126.87799999999993, 126.87799999999993, 126.87799999999993, 130.66499999999996, 126.87799999999993, 130.66499999999996, 126.87799999999993, 130.66499999999996, 130.66499999999996, 130.66499999999996, 126.87799999999993, 130.66499999999996, 126.51599999999985, 130.3019999999999, 126.51599999999985, 130.3019999999999, 126.51599999999985, 130.3019999999999, 130.3019999999999, 130.3019999999999, 126.51599999999985, 130.3019999999999], \"power_mean\": 127.93478749999996, \"energy_millijoules\": 10353.982995873866, \"energy_joules\": 10.353982995873867, \"coremark_score\": 3707.136237, \"coremarks_per_mhz\": 3.713077160456731, \"ulpmark_cm_score\": 28.974357029517247}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1236.192, 1243.776, 1243.776, 1243.776], \"power_mean\": 1241.88, \"energy_millijoules\": 6209.400000000001, \"energy_joules\": 6.2094000000000005}}, \"1209600\": {\"active\": {\"elapsed_sec\": 66.800143516, \"elapsed_ns\": 66800143516, \"power_samples\": [21.843999999999824, 236.30999999999995, 145.4459999999999, 145.4459999999999, 145.4459999999999, 145.4459999999999, 145.4459999999999, 145.4459999999999, 145.4459999999999, 145.4459999999999, 145.4459999999999, 141.29399999999987, 145.07899999999995, 145.07899999999995, 145.07899999999995, 141.29399999999987, 145.07899999999995, 145.07899999999995, 145.07899999999995, 141.29399999999987, 145.07899999999995, 141.29399999999987, 145.07899999999995, 145.07899999999995, 145.07899999999995, 141.29399999999987, 145.07899999999995, 145.07899999999995, 145.07899999999995, 145.07899999999995, 145.07899999999995, 145.07899999999995, 145.07899999999995, 141.29399999999987, 145.07899999999995, 145.07899999999995, 145.07899999999995, 145.07899999999995, 145.07899999999995, 141.29399999999987, 145.07899999999995, 145.07899999999995, 145.07899999999995, 145.07899999999995, 145.07899999999995, 145.07899999999995, 144.712, 144.712, 144.712, 144.712, 144.712, 144.712, 144.712, 140.92799999999988, 144.712, 144.712, 144.712, 144.712, 144.712, 144.712, 144.712, 144.712, 144.712, 144.712, 144.712, 144.712], \"power_mean\": 144.07415151515147, \"energy_millijoules\": 9624.173998158049, \"energy_joules\": 9.62417399815805, \"coremark_score\": 4491.421385, \"coremarks_per_mhz\": 3.713145986276455, \"ulpmark_cm_score\": 31.171506256788}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1234.236, 1239.33, 1246.91, 1239.33], \"power_mean\": 1239.9515000000001, \"energy_millijoules\": 6199.757500000001, \"energy_joules\": 6.1997575000000005}}, \"1324800\": {\"active\": {\"elapsed_sec\": 60.988517998, \"elapsed_ns\": 60988517998, \"power_samples\": [148.49599999999987, 152.27999999999997, 152.27999999999997, 152.27999999999997, 152.27999999999997, 152.27999999999997, 156.06399999999985, 152.27999999999997, 152.27999999999997, 152.27999999999997, 152.27999999999997, 152.27999999999997, 152.27999999999997, 152.27999999999997, 152.27999999999997, 151.91099999999983, 155.69399999999996, 151.91099999999983, 151.91099999999983, 155.69399999999996, 155.69399999999996, 151.91099999999983, 151.91099999999983, 151.91099999999983, 151.91099999999983, 151.91099999999983, 155.69399999999996, 151.91099999999983, 151.91099999999983, 151.91099999999983, 155.69399999999996, 151.91099999999983, 151.91099999999983, 151.91099999999983, 155.69399999999996, 151.91099999999983, 155.69399999999996, 151.91099999999983, 155.69399999999996, 151.91099999999983, 155.69399999999996, 151.91099999999983, 155.69399999999996, 151.91099999999983, 155.69399999999996, 151.91099999999983, 155.69399999999996, 151.91099999999983, 151.91099999999983, 151.91099999999983, 155.32399999999984, 151.54199999999992, 155.32399999999984, 151.54199999999992, 155.32399999999984, 151.54199999999992, 151.54199999999992, 151.54199999999992, 155.32399999999984, 151.54199999999992], \"power_mean\": 152.95048333333324, \"energy_millijoules\": 9328.223305577792, \"energy_joules\": 9.328223305577792, \"coremark_score\": 4919.403768, \"coremarks_per_mhz\": 3.713318061594203, \"ulpmark_cm_score\": 32.16046509313468}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1241.152, 1242.464, 1246.252, 1238.676], \"power_mean\": 1242.136, \"energy_millijoules\": 6210.68, \"energy_joules\": 6.21068}}, \"1516800\": {\"active\": {\"elapsed_sec\": 53.268634042, \"elapsed_ns\": 53268634042, \"power_samples\": [123.0909999999999, 263.21000000000004, 164.74799999999982, 168.53499999999985, 168.53499999999985, 168.53499999999985, 166.66999999999985, 166.66999999999985, 162.88799999999992, 166.66999999999985, 166.66999999999985, 166.66999999999985, 166.66999999999985, 166.66999999999985, 166.66999999999985, 166.66999999999985, 166.66999999999985, 166.66999999999985, 162.88799999999992, 166.66999999999985, 162.88799999999992, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003, 166.29700000000003], \"power_mean\": 167.2992830188679, \"energy_millijoules\": 8911.804282621059, \"energy_joules\": 8.911804282621059, \"coremark_score\": 5632.322019, \"coremarks_per_mhz\": 3.7132924703322785, \"ulpmark_cm_score\": 33.663216839830184}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1244.278, 1245.923, 1245.923, 1245.923], \"power_mean\": 1245.5117500000001, \"energy_millijoules\": 6227.55875, \"energy_joules\": 6.22755875}}, \"1612800\": {\"active\": {\"elapsed_sec\": 50.098076283, \"elapsed_ns\": 50098076283, \"power_samples\": [99.65899999999988, 175.35899999999992, 175.35899999999992, 175.35899999999992, 173.85899999999992, 173.85899999999992, 170.07799999999997, 173.85899999999992, 173.85899999999992, 173.48399999999992, 173.48399999999992, 169.70399999999995, 173.48399999999992, 169.70399999999995, 173.48399999999992, 173.48399999999992, 169.70399999999995, 173.48399999999992, 169.70399999999995, 173.48399999999992, 169.70399999999995, 173.48399999999992, 169.70399999999995, 173.48399999999992, 173.48399999999992, 173.48399999999992, 169.70399999999995, 173.48399999999992, 173.48399999999992, 173.48399999999992, 173.48399999999992, 173.48399999999992, 169.70399999999995, 173.48399999999992, 169.70399999999995, 173.48399999999992, 169.70399999999995, 173.48399999999992, 169.70399999999995, 173.10899999999992, 173.10899999999992, 173.10899999999992, 169.32999999999993, 169.32999999999993, 173.10899999999992, 173.10899999999992, 169.32999999999993, 173.10899999999992, 169.32999999999993], \"power_mean\": 170.81967346938768, \"energy_millijoules\": 8557.737032106535, \"energy_joules\": 8.557737032106536, \"coremark_score\": 5988.860719, \"coremarks_per_mhz\": 3.7133312989831353, \"ulpmark_cm_score\": 35.05599656480135}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1245.265, 1245.265, 1249.05, 1245.265], \"power_mean\": 1246.21125, \"energy_millijoules\": 6231.056250000001, \"energy_joules\": 6.231056250000001}}, \"1708800\": {\"active\": {\"elapsed_sec\": 47.285060607, \"elapsed_ns\": 47285060607, \"power_samples\": [72.81600000000003, 190.1199999999999, 186.336, 190.1199999999999, 190.1199999999999, 190.1199999999999, 188.2249999999999, 188.2249999999999, 188.2249999999999, 188.2249999999999, 184.4459999999999, 188.2249999999999, 188.2249999999999, 188.2249999999999, 184.4459999999999, 188.2249999999999, 187.846, 187.846, 187.846, 187.846, 187.846, 187.846, 184.06799999999998, 187.846, 187.846, 278.51800000000003, 187.846, 187.846, 187.846, 187.846, 184.06799999999998, 187.846, 187.846, 187.846, 184.06799999999998, 187.846, 187.846, 187.846, 187.846, 187.846, 187.846, 187.846, 187.846, 187.846, 187.846, 187.846, 187.846], \"power_mean\": 187.167829787234, \"energy_millijoules\": 8850.24217517002, \"energy_joules\": 8.85024217517002, \"coremark_score\": 6345.177665, \"coremarks_per_mhz\": 3.7132359930945693, \"ulpmark_cm_score\": 33.897377502467805}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1243.291, 1241.152, 1244.936, 1244.936], \"power_mean\": 1243.57875, \"energy_millijoules\": 6217.893749999999, \"energy_joules\": 6.217893749999999}}}}, \"6\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 160.963490355, \"elapsed_ns\": 160963490355, \"power_samples\": [19.505999999999858, 117.86400000000003, 117.86400000000003, 116.78399999999988, 116.78399999999988, 116.78399999999988, 116.78399999999988, 116.78399999999988, 116.78399999999988, 116.78399999999988, 116.78399999999988, 116.78399999999988, 116.78399999999988, 116.78399999999988, 116.78399999999988, 116.78399999999988, 116.78399999999988, 116.78399999999988, 120.56399999999985, 116.78399999999988, 116.78399999999988, 116.78399999999988, 116.78399999999988, 116.78399999999988, 116.78399999999988, 116.78399999999988, 116.78399999999988, 120.56399999999985, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 120.20299999999997, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 120.20299999999997, 116.42399999999998, 120.20299999999997, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 120.20299999999997, 116.42399999999998, 120.20299999999997, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 120.20299999999997, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 120.20299999999997, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.42399999999998, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 119.84199999999987, 116.06399999999985, 116.06399999999985, 116.06399999999985, 119.84199999999987, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 119.84199999999987, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 119.84199999999987, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 206.73599999999988, 115.14899999999989, 111.38400000000001, 111.38400000000001, 111.38400000000001, 111.38400000000001, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 119.84199999999987, 116.06399999999985, 116.06399999999985, 116.06399999999985, 116.06399999999985, 119.84199999999987, 116.06399999999985, 119.84199999999987, 119.84199999999987, 116.06399999999985, 119.481, 115.70399999999995, 115.70399999999995, 115.70399999999995, 115.70399999999995, 119.84199999999987, 116.06399999999985, 116.06399999999985, 119.84199999999987, 116.06399999999985, 119.481, 115.70399999999995, 115.70399999999995, 115.70399999999995, 115.70399999999995, 119.481, 119.481], \"power_mean\": 116.66812499999992, \"energy_millijoules\": 18779.308613173424, \"energy_joules\": 18.779308613173423, \"coremark_score\": 1863.979223, \"coremarks_per_mhz\": 6.2132640766666665, \"ulpmark_cm_score\": 15.975029016220233}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1240.824, 1244.607, 1244.607, 1244.607], \"power_mean\": 1243.66125, \"energy_millijoules\": 6218.306250000001, \"energy_joules\": 6.21830625}}, \"652800\": {\"active\": {\"elapsed_sec\": 73.941343305, \"elapsed_ns\": 73941343305, \"power_samples\": [71.77199999999993, 170.07799999999997, 166.29700000000003, 164.43200000000002, 168.20799999999986, 164.43200000000002, 168.20799999999986, 164.43200000000002, 167.83399999999983, 164.05899999999997, 164.05899999999997, 164.05899999999997, 164.05899999999997, 164.05899999999997, 167.83399999999983, 164.05899999999997, 164.05899999999997, 164.05899999999997, 167.83399999999983, 164.05899999999997, 167.83399999999983, 164.05899999999997, 167.83399999999983, 164.05899999999997, 167.83399999999983, 164.05899999999997, 164.05899999999997, 164.05899999999997, 167.83399999999983, 164.05899999999997, 167.83399999999983, 164.05899999999997, 167.83399999999983, 164.05899999999997, 167.83399999999983, 164.05899999999997, 167.83399999999983, 167.83399999999983, 164.05899999999997, 167.83399999999983, 167.83399999999983, 164.05899999999997, 164.05899999999997, 167.83399999999983, 167.83399999999983, 164.05899999999997, 167.83399999999983, 164.05899999999997, 167.83399999999983, 167.83399999999983, 167.83399999999983, 167.83399999999983, 164.05899999999997, 164.05899999999997, 167.83399999999983, 164.05899999999997, 167.83399999999983, 164.05899999999997, 163.68599999999992, 167.46000000000004, 167.46000000000004, 163.68599999999992, 167.46000000000004, 163.68599999999992, 167.46000000000004, 163.68599999999992, 167.46000000000004, 163.68599999999992, 163.68599999999992, 167.46000000000004, 167.46000000000004, 163.68599999999992, 167.46000000000004], \"power_mean\": 164.56323287671225, \"energy_millijoules\": 12168.026497517643, \"energy_joules\": 12.168026497517642, \"coremark_score\": 4058.221958, \"coremarks_per_mhz\": 6.21663902879902, \"ulpmark_cm_score\": 24.65477865791975}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1239.84, 1247.4, 1243.62, 1247.73], \"power_mean\": 1244.6475, \"energy_millijoules\": 6223.2375, \"energy_joules\": 6.2232375}}, \"825600\": {\"active\": {\"elapsed_sec\": 58.518126071, \"elapsed_ns\": 58518126071, \"power_samples\": [188.2249999999999, 193.87799999999993, 186.32999999999993, 190.10399999999981, 280.67999999999984, 190.10399999999981, 193.49699999999984, 212.36199999999985, 216.135, 208.58899999999994, 189.72399999999993, 193.49699999999984, 189.72399999999993, 189.72399999999993, 189.72399999999993, 189.72399999999993, 193.49699999999984, 189.72399999999993, 189.72399999999993, 193.49699999999984, 189.72399999999993, 193.49699999999984, 189.72399999999993, 189.72399999999993, 189.72399999999993, 193.49699999999984, 189.72399999999993, 193.49699999999984, 189.72399999999993, 189.72399999999993, 189.72399999999993, 193.11599999999999, 189.34399999999982, 189.34399999999982, 189.34399999999982, 189.34399999999982, 189.34399999999982, 193.11599999999999, 189.34399999999982, 189.34399999999982, 189.34399999999982, 193.11599999999999, 189.34399999999982, 193.11599999999999, 189.34399999999982, 189.34399999999982, 193.11599999999999, 193.11599999999999, 189.34399999999982, 193.11599999999999, 189.34399999999982, 193.11599999999999, 189.34399999999982, 189.34399999999982, 189.34399999999982, 189.34399999999982, 193.11599999999999, 189.34399999999982], \"power_mean\": 193.32727586206886, \"energy_millijoules\": 11313.14990185954, \"energy_joules\": 11.313149901859541, \"coremark_score\": 5128.205128, \"coremarks_per_mhz\": 6.211488769379844, \"ulpmark_cm_score\": 26.517813571151308}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1241.646, 1243.291, 1247.07, 1247.07], \"power_mean\": 1244.7692499999998, \"energy_millijoules\": 6223.846249999999, \"energy_joules\": 6.2238462499999985}}, \"979200\": {\"active\": {\"elapsed_sec\": 49.361022949, \"elapsed_ns\": 49361022949, \"power_samples\": [138.73199999999997, 225.62599999999998, 229.404, 222.90300000000002, 226.67399999999998, 222.90300000000002, 226.67399999999998, 226.67399999999998, 226.67399999999998, 226.67399999999998, 226.67399999999998, 226.67399999999998, 226.67399999999998, 226.67399999999998, 226.67399999999998, 226.67399999999998, 230.44499999999994, 226.67399999999998, 226.67399999999998, 226.67399999999998, 226.67399999999998, 226.67399999999998, 226.67399999999998, 226.28399999999988, 226.28399999999988, 226.28399999999988, 226.28399999999988, 226.28399999999988, 226.28399999999988, 226.28399999999988, 226.28399999999988, 226.28399999999988, 226.28399999999988, 226.28399999999988, 230.05399999999986, 226.28399999999988, 226.28399999999988, 226.28399999999988, 226.28399999999988, 230.05399999999986, 226.28399999999988, 226.28399999999988, 226.28399999999988, 226.28399999999988, 230.05399999999986, 226.28399999999988, 230.05399999999986, 226.28399999999988, 226.28399999999988], \"power_mean\": 224.93744897959175, \"energy_millijoules\": 11103.142581171145, \"energy_joules\": 11.103142581171145, \"coremark_score\": 6079.889751, \"coremarks_per_mhz\": 6.209037735906862, \"ulpmark_cm_score\": 27.01937742461706}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1242.633, 1246.41, 1242.633, 1246.74], \"power_mean\": 1244.604, \"energy_millijoules\": 6223.02, \"energy_joules\": 6.22302}}, \"1132800\": {\"active\": {\"elapsed_sec\": 42.57590988, \"elapsed_ns\": 42575909880, \"power_samples\": [70.03199999999993, 266.384, 266.384, 262.60799999999995, 262.60799999999995, 259.8149999999998, 263.58399999999983, 263.58399999999983, 263.58399999999983, 263.58399999999983, 263.58399999999983, 263.58399999999983, 263.58399999999983, 259.8149999999998, 263.58399999999983, 263.18399999999997, 266.952, 259.41599999999994, 263.18399999999997, 263.18399999999997, 263.18399999999997, 263.18399999999997, 263.18399999999997, 263.18399999999997, 357.384, 259.41599999999994, 266.952, 259.41599999999994, 263.18399999999997, 263.18399999999997, 263.18399999999997, 263.18399999999997, 263.18399999999997, 263.18399999999997, 263.18399999999997, 263.18399999999997, 263.18399999999997, 263.18399999999997, 263.18399999999997, 263.18399999999997, 263.18399999999997, 263.18399999999997], \"power_mean\": 260.77899999999994, \"energy_millijoules\": 11102.903202596517, \"energy_joules\": 11.102903202596517, \"coremark_score\": 7049.20344, \"coremarks_per_mhz\": 6.222813771186441, \"ulpmark_cm_score\": 27.019959962349507}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1242.304, 1249.856, 1249.856, 1246.08], \"power_mean\": 1247.024, \"energy_millijoules\": 6235.119999999999, \"energy_joules\": 6.235119999999999}}, \"1363200\": {\"active\": {\"elapsed_sec\": 35.312381757, \"elapsed_ns\": 35312381757, \"power_samples\": [311.2839999999999, 322.6089999999999, 322.6089999999999, 322.6399999999999, 322.6399999999999, 318.874, 322.6399999999999, 322.6399999999999, 322.6399999999999, 322.6399999999999, 318.874, 318.874, 322.6399999999999, 318.874, 322.6399999999999, 322.6399999999999, 318.874, 318.874, 318.874, 322.6399999999999, 318.874, 322.6399999999999, 318.874, 318.45899999999983, 322.22399999999993, 318.45899999999983, 322.22399999999993, 318.45899999999983, 322.22399999999993, 318.45899999999983, 322.22399999999993, 318.45899999999983, 322.22399999999993, 318.45899999999983, 322.22399999999993], \"power_mean\": 320.5573142857142, \"energy_millijoules\": 11319.642257055768, \"energy_joules\": 11.319642257055769, \"coremark_score\": 8499.787505, \"coremarks_per_mhz\": 6.23517275894953, \"ulpmark_cm_score\": 26.502604339196655}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1241.975, 1249.525, 1245.75, 1245.75], \"power_mean\": 1245.75, \"energy_millijoules\": 6228.75, \"energy_joules\": 6.22875}}, \"1536000\": {\"active\": {\"elapsed_sec\": 31.414145769, \"elapsed_ns\": 31414145769, \"power_samples\": [258.03599999999983, 378.80399999999986, 382.578, 378.80399999999986, 378.26800000000003, 378.26800000000003, 378.26800000000003, 378.26800000000003, 378.26800000000003, 377.837, 377.837, 377.837, 377.837, 377.837, 377.837, 381.5999999999999, 377.837, 377.837, 377.837, 381.5999999999999, 381.5999999999999, 377.837, 377.837, 377.837, 377.40599999999995, 377.40599999999995, 381.1679999999999, 377.40599999999995, 381.1679999999999, 377.40599999999995, 381.1679999999999], \"power_mean\": 374.88819354838705, \"energy_millijoules\": 11776.792359206116, \"energy_joules\": 11.776792359206116, \"coremark_score\": 9555.053031, \"coremarks_per_mhz\": 6.220737650390625, \"ulpmark_cm_score\": 25.473829447751534}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1249.194, 1245.42, 1245.42, 1245.42], \"power_mean\": 1246.3635, \"energy_millijoules\": 6231.817499999999, \"energy_joules\": 6.231817499999999}}, \"1747200\": {\"active\": {\"elapsed_sec\": 27.575217697, \"elapsed_ns\": 27575217697, \"power_samples\": [182.17799999999988, 457.60699999999997, 461.3799999999999, 461.3799999999999, 459.71699999999987, 459.71699999999987, 459.71699999999987, 459.71699999999987, 459.71699999999987, 459.2639999999999, 459.2639999999999, 455.5039999999999, 455.5039999999999, 455.5039999999999, 455.5039999999999, 455.5039999999999, 455.5039999999999, 455.5039999999999, 451.7439999999999, 455.0519999999999, 473.847, 485.124, 485.124, 481.365, 480.90599999999995, 465.874, 454.5999999999999], \"power_mean\": 451.91933333333327, \"energy_millijoules\": 12461.773998149773, \"energy_joules\": 12.461773998149772, \"coremark_score\": 10886.131069, \"coremarks_per_mhz\": 6.230615309638278, \"ulpmark_cm_score\": 24.07361905652772}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1244.76, 1248.532, 1244.76, 1248.532], \"power_mean\": 1246.646, \"energy_millijoules\": 6233.23, \"energy_joules\": 6.23323}}, \"1843200\": {\"active\": {\"elapsed_sec\": 26.14052499, \"elapsed_ns\": 26140524990, \"power_samples\": [68.63999999999987, 487.3319999999999, 491.1039999999998, 485.124, 485.124, 485.124, 485.124, 485.124, 488.422, 484.664, 488.422, 484.664, 488.422, 488.422, 488.422, 488.422, 488.422, 488.422, 488.422, 488.422, 488.422, 488.422, 484.20399999999995, 487.961, 487.961, 484.20399999999995], \"power_mean\": 471.05453846153847, \"energy_millijoules\": 12313.612934306762, \"energy_joules\": 12.313612934306763, \"coremark_score\": 11484.132757, \"coremarks_per_mhz\": 6.230540775282117, \"ulpmark_cm_score\": 24.363280021915806}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1243.11, 1243.11, 1246.877, 1248.532], \"power_mean\": 1245.40725, \"energy_millijoules\": 6227.03625, \"energy_joules\": 6.22703625}}, \"1996800\": {\"active\": {\"elapsed_sec\": 24.152376709, \"elapsed_ns\": 24152376709, \"power_samples\": [498.1859999999999, 562.2929999999999, 555.108, 555.108, 555.108, 551.3519999999999, 558.864, 562.1389999999999, 558.384, 558.384, 558.384, 558.384, 562.1389999999999, 554.6289999999999, 558.384, 554.6289999999999, 558.384, 561.6579999999999, 557.904, 554.1499999999999, 557.904, 554.1499999999999, 561.6579999999999, 557.904], \"power_mean\": 555.2161249999999, \"energy_millijoules\": 13409.78900591123, \"energy_joules\": 13.40978900591123, \"coremark_score\": 12430.080796, \"coremarks_per_mhz\": 6.225000398637821, \"ulpmark_cm_score\": 22.371716651750123}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1247.539, 1247.539, 1251.972, 1251.972], \"power_mean\": 1249.7555, \"energy_millijoules\": 6248.7775, \"energy_joules\": 6.2487775}}, \"2054400\": {\"active\": {\"elapsed_sec\": 23.450429678, \"elapsed_ns\": 23450429678, \"power_samples\": [380.8539999999998, 595.7439999999999, 599.5139999999999, 599.5139999999999, 591.6899999999998, 591.6899999999998, 591.6899999999998, 599.1979999999999, 595.444, 598.7069999999999, 598.7069999999999, 594.954, 594.954, 598.7069999999999, 598.7069999999999, 598.7069999999999, 594.954, 598.7069999999999, 594.954, 598.2159999999999, 594.4639999999999, 598.2159999999999, 594.4639999999999], \"power_mean\": 587.0763478260868, \"energy_millijoules\": 13767.192610312717, \"energy_joules\": 13.767192610312717, \"coremark_score\": 12802.458072, \"coremarks_per_mhz\": 6.231726086448598, \"ulpmark_cm_score\": 21.790935050569153}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1243.77, 1243.77, 1247.539, 1243.77], \"power_mean\": 1244.71225, \"energy_millijoules\": 6223.561250000001, \"energy_joules\": 6.22356125}}, \"2169600\": {\"active\": {\"elapsed_sec\": 22.283537023, \"elapsed_ns\": 22283537023, \"power_samples\": [271.12199999999984, 689.481, 683.9979999999998, 683.9979999999998, 683.9979999999998, 683.9979999999998, 683.9979999999998, 687.2339999999999, 687.2339999999999, 687.2339999999999, 687.2339999999999, 687.2339999999999, 686.7189999999998, 686.7189999999998, 686.7189999999998, 686.7189999999998, 686.7189999999998, 686.7189999999998, 686.7189999999998, 686.7189999999998, 686.7189999999998, 686.7189999999998], \"power_mean\": 667.452409090909, \"energy_millijoules\": 14873.200469067813, \"energy_joules\": 14.873200469067813, \"coremark_score\": 13473.457289, \"coremarks_per_mhz\": 6.2101112135877585, \"ulpmark_cm_score\": 20.17050739172903}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1241.912, 1238.16, 1255.077, 1243.77], \"power_mean\": 1244.72975, \"energy_millijoules\": 6223.64875, \"energy_joules\": 6.223648750000001}}, \"2208000\": {\"active\": {\"elapsed_sec\": 21.867776033, \"elapsed_ns\": 21867776033, \"power_samples\": [120.0, 711.576, 715.3439999999998, 715.3439999999998, 715.3439999999998, 705.4639999999999, 709.213, 709.213, 712.962, 709.213, 712.4399999999998, 712.4399999999998, 708.692, 712.4399999999998, 712.4399999999998, 711.9179999999999, 715.665, 711.9179999999999, 711.9179999999999, 708.1709999999998, 711.9179999999999], \"power_mean\": 683.5063333333333, \"energy_millijoules\": 14946.763414470373, \"energy_joules\": 14.946763414470373, \"coremark_score\": 13729.348771, \"coremarks_per_mhz\": 6.218002160778986, \"ulpmark_cm_score\": 20.07123493435119}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1246.877, 1250.644, 1250.644, 1246.877], \"power_mean\": 1248.7604999999999, \"energy_millijoules\": 6243.8025, \"energy_joules\": 6.2438025}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sdm710/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 1244 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 748 998 1209 1324 1516 1612 1708\n\n 300:  1114     3.7 C/MHz     85 mW   22.9 J   13.1 I/mJ   269.4 s\n 576:  2139     3.7 C/MHz    101 mW   14.1 J   21.2 I/mJ   140.3 s\n 748:  2780     3.7 C/MHz    115 mW   12.4 J   24.2 I/mJ   107.9 s\n 998:  3707     3.7 C/MHz    128 mW   10.4 J   29.0 I/mJ    80.9 s\n1209:  4491     3.7 C/MHz    144 mW    9.6 J   31.2 I/mJ    66.8 s\n1324:  4919     3.7 C/MHz    153 mW    9.3 J   32.2 I/mJ    61.0 s\n1516:  5632     3.7 C/MHz    167 mW    8.9 J   33.7 I/mJ    53.3 s\n1612:  5989     3.7 C/MHz    171 mW    8.6 J   35.1 I/mJ    50.1 s\n1708:  6345     3.7 C/MHz    187 mW    8.9 J   33.9 I/mJ    47.3 s\n\n\n===== CPU 6 =====\nFrequencies: 300 652 825 979 1132 1363 1536 1747 1843 1996 2054 2169 2208\n\n 300:  1864     6.2 C/MHz    117 mW   18.8 J   16.0 I/mJ   161.0 s\n 652:  4058     6.2 C/MHz    165 mW   12.2 J   24.7 I/mJ    73.9 s\n 825:  5128     6.2 C/MHz    193 mW   11.3 J   26.5 I/mJ    58.5 s\n 979:  6080     6.2 C/MHz    225 mW   11.1 J   27.0 I/mJ    49.4 s\n1132:  7049     6.2 C/MHz    261 mW   11.1 J   27.0 I/mJ    42.6 s\n1363:  8500     6.2 C/MHz    321 mW   11.3 J   26.5 I/mJ    35.3 s\n1536:  9555     6.2 C/MHz    375 mW   11.8 J   25.5 I/mJ    31.4 s\n1747: 10886     6.2 C/MHz    452 mW   12.5 J   24.1 I/mJ    27.6 s\n1843: 11484     6.2 C/MHz    471 mW   12.3 J   24.4 I/mJ    26.1 s\n1996: 12430     6.2 C/MHz    555 mW   13.4 J   22.4 I/mJ    24.2 s\n2054: 12802     6.2 C/MHz    587 mW   13.8 J   21.8 I/mJ    23.5 s\n2169: 13473     6.2 C/MHz    667 mW   14.9 J   20.2 I/mJ    22.3 s\n2208: 13729     6.2 C/MHz    684 mW   14.9 J   20.1 I/mJ    21.9 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sdm710/main/uptime.txt",
    "content": " 20:21:42 up 29 min,  load average: 3.82, 3.85, 3.31\n"
  },
  {
    "path": "results/sdm710/main/versions.txt",
    "content": "Kernel: Linux version 4.9.294-perf+ (KKShedge@cloud.drone.io) (Cosmic clang version 14.0.0 (https://github.com/llvm/llvm-project 683cbc12b33e5c8dc8d29bf5ed79fbf45763aadd)) #200 SMP PREEMPT Mon Dec 27 10:30:29 UTC 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sdm712/RMX1921/cmdline.txt",
    "content": "quiet rcupdate.rcu_normal_after_boot=1 noirqdebug core_ctl_disable_cpumask=0-7 console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0xA90000 androidboot.hardware=qcom androidboot.console=ttyMSM0 msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 service_locator.enable=1 androidboot.configfs=true androidboot.usbcontroller=a600000.dwc3 swiotlb=1 loop.max_part=7 kpti=off androidboot.init_fatal_reboot_target=recovery buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.realmebootstate=orange androidboot.keymaster=1 root=PARTUUID=34688278-8ad0-29d2-4c84-852645a9260d androidboot.bootdevice=1d84000.ufshc androidboot.serialno=REDACTED androidboot.baseband=msm msm_drm.dsi_display0=dsi_rm19651samsung_ams641rw01_1080_2340_cmd_display:config0 skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=0 androidboot.dtb_idx=0 lk_version=V1.0 androidboot.startupmode=hard_reset androidboot.mode=reboot printk.disable_uart=1 short_c_feature_sw_status=0 eng_version=0 is_confidential=1 simcardnum.doublesim=1\n"
  },
  {
    "path": "results/sdm712/RMX1921/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 12 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x6\nCPU part\t: 0x802\nCPU revision\t: 13\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x6\nCPU part\t: 0x802\nCPU revision\t: 13\n\nHardware\t: Qualcomm Technologies, Inc SDM712\n"
  },
  {
    "path": "results/sdm712/RMX1921/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. SDM710 PM660 + PM660A MTP;\nCompatible: qcom,sdm670-mtp;qcom,sdm670;qcom,mtp;\n"
  },
  {
    "path": "results/sdm712/RMX1921/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Linux version 4.9.287-parallax+ (dakkshesh@ArchLinux) (Neutron clang version 14.0.0 (https://github.com/llvm/llvm-project 654c89d85a5108f2f04a8a748c44162e16260c7c)) #1 SMP PREEMPT Thu Jan 6 15:26:10 IST 2022\n[    0.000000] Boot CPU: AArch64 Processor [517f803c]\n[    0.000000] Machine: Qualcomm Technologies, Inc. SDM710 PM660 + PM660A MTP\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff400000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fec00000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6c00000, size 128 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000001fb000000, size 36 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000e9c00000, size 208 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000e9400000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000e8400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085700000, size 6 MiB\n[    0.000000] OF: reserved mem: initialized node hyp_region@85700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085e00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node xbl_region@85e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085fc0000, size 78 MiB\n[    0.000000] OF: reserved mem: initialized node removed_region@85fc0000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b300000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node camera_region@8b300000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b800000, size 150 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@8b800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094e00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region@94e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000095300000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_msa_region@95300000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000095400000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_regions@95400000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097200000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node pil_mba_region@0x97200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097400000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region@0x97400000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000099200000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ips_fw_region@0x99200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000099210000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_gsi_region@0x99210000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000099215000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@0x99215000, compatible id removed-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x000000009e400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@0x9e400000, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000a7800000, size 12 MiB\n[    0.000000] OF: reserved mem: initialized node secure_dsp_region, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 1475177\n[    0.000000]   DMA zone: 6831 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 437161 pages, LIFO batch:31\n[    0.000000]   Normal zone: 16219 pages used for memmap\n[    0.000000]   Normal zone: 1038016 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] random: fast init done\n[    0.000000] percpu: Embedded 22 pages/cpu s52504 r8192 d29416 u90112\n[    0.000000] pcpu-alloc: s52504 r8192 d29416 u90112 alloc=22*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1452127\n[    0.000000] Kernel command line: quiet rcupdate.rcu_normal_after_boot=1 noirqdebug core_ctl_disable_cpumask=0-7 console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0xA90000 androidboot.hardware=qcom androidboot.console=ttyMSM0 msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 service_locator.enable=1 androidboot.configfs=true androidboot.usbcontroller=a600000.dwc3 swiotlb=1 loop.max_part=7 kpti=off androidboot.init_fatal_reboot_target=recovery buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.realmebootstate=orange androidboot.keymaster=1 root=PARTUUID=34688278-8ad0-29d2-4c84-852645a9260d androidboot.bootdevice=1d84000.ufshc androidboot.serialno=REDACTED androidboot.baseband=msm msm_drm.dsi_display0=dsi_rm19651samsung_ams641rw01_1080_2340_cmd_display:config0 skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=0 androidboot.dtb_idx=0 lk_version=V1.0 androidboot.startupmode=hard\n[    0.000000] IRQ lockup detection disabled\n[    0.000000] [OPPO_CHG][oppo_short_c_feature_sw_status_init]short_c_feature_sw_status[0]\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 131072 bytes\n[    0.000000] log_buf_len: 1048576 bytes\n[    0.000000] early log buf free: 124064(94%)\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] software IO TLB: mapped [mem 0xfffbf000-0xfffff000] (0MB)\n[    0.000000] Memory: 5269916K/5900708K available (24062K kernel code, 3824K rwdata, 9508K rodata, 2048K init, 5637K bss, 208904K reserved, 421888K cma-reserved)\n[    0.000000] Virtual kernel memory layout:\n[    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n[    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)\n[    0.000000]       .text : 0x        (ptrval) - 0x        (ptrval)   ( 24064 KB)\n[    0.000000]     .rodata : 0x        (ptrval) - 0x        (ptrval)   ( 10240 KB)\n[    0.000000]       .init : 0x        (ptrval) - 0x        (ptrval)   (  2048 KB)\n[    0.000000]       .data : 0x        (ptrval) - 0x        (ptrval)   (  3824 KB)\n[    0.000000]        .bss : 0x        (ptrval) - 0x        (ptrval)   (  5638 KB)\n[    0.000000]     fixed   : 0xffffffbefe7fb000 - 0xffffffbefec00000   (  4116 KB)\n[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)\n[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)\n[    0.000000]               0xffffffbfb0000000 - 0xffffffbfb5f5b000   (    95 MB actual)\n[    0.000000]     memory  : 0xffffffec00000000 - 0xffffffed7d6c0000   (  6102 MB)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tNo expedited grace period (rcu_normal_after_boot).\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS:64 nr_irqs:64 0\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arm_arch_timer: Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000005] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000020] clocksource: Switched to clocksource arch_sys_counter\n[    0.001797] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001817] pid_max: default: 32768 minimum: 301\n[    0.001894] Security Framework initialized\n[    0.001906] SELinux:  Initializing.\n[    0.001966] SELinux:  Starting in permissive mode\n[    0.001998] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.002001] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.003207] sched-energy: Sched-energy-costs installed from DT\n[    0.011675] ASID allocator initialised with 32768 entries\n[    0.013770] Hierarchical SRCU implementation.\n[    0.022837] MSM Memory Dump base table set up\n[    0.022857] MSM Memory Dump apps data table set up\n[    0.098850] Brought up 8 CPUs\n[    0.098857] SMP: Total of 8 processors activated.\n[    0.098862] CPU features: detected feature: GIC system register CPU interface\n[    0.098866] CPU features: detected feature: Privileged Access Never\n[    0.098870] CPU features: detected feature: User Access Override\n[    0.098873] CPU features: detected feature: 32-bit EL0 Support\n[    0.098878] CPU features: kernel page table isolation forced OFF by command line option\n[    0.099451] CPU: All CPU(s) started at EL1\n[    0.099501] alternatives: patching kernel code\n[    0.101468] CPU0: update max cpu_capacity 1024\n[    0.110046] CPU0: update max cpu_capacity 1024\n[    0.175161] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.175179] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.185448] pinctrl core: initialized pinctrl subsystem\n[    0.186159] NET: Registered protocol family 16\n[    0.189365] cpuidle: using governor menu\n[    0.189387] cpuidle: using governor qcom\n[    0.194295] vdso32: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.194307] vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.194312] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.195066] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.196717] serialID 0xf3c53dd9\n[    0.196760] boot_mode_init: parse boot_mode\n[    0.196783] board_boot_mode_init boot_mode=reboot\n[    0.196805] board_mfg_mode_init, ftm_mode=0\n[    0.196826] start_reason_init: parse poweron reason hard_reset i = 10\n[    0.196854] songxh create systeminto node suscess!\n[    0.198105] exit: IPA_USB init success!\n[    0.199857] pstore: using zlib compression\n[    0.199896] console [pstore-1] enabled\n[    0.199966] pstore: Registered ramoops as persistent store backend\n[    0.199969] ramoops: attached 0x200000@0xb5000000, ecc: 0/0\n[    0.202813] irq: no irq domain found for /soc/pinctrl@03400000 !\n[    0.206245] OF: amba_device_add() failed (-16) for /soc/cti@6867000\n[    0.209404] irq: no irq domain found for /soc/qcom,mdss_mdp@ae00000 !\n[    0.209487] irq: no irq domain found for /soc/qcom,mdss_mdp@ae00000 !\n[    0.209563] irq: no irq domain found for /soc/qcom,mdss_mdp@ae00000 !\n[    0.210558] sps:sps is ready.\n[    0.213623] unable to find DT imem DLOAD mode node\n[    0.215721] unable to find DT imem EDLOAD mode node\n[    0.218881] msm_watchdog 17980000.qcom,wdt: wdog absent resource not present\n[    0.218904] msm_watchdog 17980000.qcom,wdt: No need to allocate memory for scandumps\n[    0.219760] msm_watchdog 17980000.qcom,wdt: MSM Watchdog Initialized\n[    0.220922] platform soc:mem_dump: assigned reserved memory node mem_dump_region\n[    0.251468] spmi spmi-0: PMIC arbiter version v5 (0x50000000)\n[    0.255922] OLEDB: qpnp_oledb_regulator_probe: Failed to parse common OLEDB device tree\n[    0.256800] platform 62400000.qcom,lpass: assigned reserved memory node pil_adsp_region@0x97400000\n[    0.257389] platform soc:qcom,ipa_fws: assigned reserved memory node ips_fw_region@0x99200000\n[    0.257523] platform 4080000.qcom,mss: assigned reserved memory node modem_region@8b800000\n[    0.257604] platform aae0000.qcom,venus: assigned reserved memory node pil_video_region@94e00000\n[    0.257716] platform 8300000.qcom,turing: assigned reserved memory node cdsp_regions@95400000\n[    0.258159] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.261581] pm660l_s3_level: Bringing 1uV into 17-17uV\n[    0.261663] pm660l_s3_level: supplied by pm660l_s1_level\n[    0.261743] pm660l_s3_level_ao: Bringing 1uV into 17-17uV\n[    0.261818] pm660l_s3_level_ao: supplied by pm660l_s1_level_ao\n[    0.271144] sdm670-pinctrl 3400000.pinctrl: invalid resource\n[    0.281846] platform soc:qcom,kgsl-hyp: assigned reserved memory node gpu_region@0x99215000\n[    0.307364] gpu_cx_gdsc: supplied by pm660l_s3_level\n[    0.315508] cam_cc-sdm845 ad00000.qcom,camcc: Registered Camera CC clocks\n[    0.316553] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.317407] clk-rpmh soc:qcom,rpmhclk: Registered RPMh clocks\n[    0.319239] disp_cc-sdm845 af00000.qcom,dispcc: Registered Display CC clocks\n[    0.332704] gcc-sdm845 100000.qcom,gcc: Registered GCC clocks\n[    0.333825] clk: gpu_cc_gx_gfx3d_clk_src: set OPP pair(180000000 Hz: 49 uV) on 5000000.qcom,kgsl-3d0\n[    0.334138] clk: gpu_cc_gx_gfx3d_clk_src: set OPP pair(700000000 Hz: 385 uV) on 5000000.qcom,kgsl-3d0\n[    0.334226] clk: gpu_cc_gx_gfx3d_clk_src: set OPP pair(780000000 Hz: 417 uV) on 5000000.qcom,kgsl-3d0\n[    0.334293] gfxcc-sdm845 5090000.qcom,gfxcc: Registered GFX CC clocks\n[    0.335836] clk: gpu_cc_gmu_clk_src: set OPP pair(19200000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.335909] clk: gpu_cc_gmu_clk_src: set OPP pair(200000000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.336071] gpu_cc-sdm845 5090000.qcom,gpucc: Registered GPU CC clocks\n[    0.337215] video_cc-sdm845 ab00000.qcom,videocc: Registered Video CC clocks\n[    0.338944] KPI: Bootloader start count = 83648\n[    0.338949] KPI: Bootloader end count = 137657\n[    0.338951] KPI: Bootloader display count = 2274255136\n[    0.338953] KPI: Bootloader load kernel count = 2634023820\n[    0.338956] KPI: Kernel MPM timestamp = 158036\n[    0.338958] KPI: Kernel MPM Clock frequency = 32768\n[    0.338981] socinfo_print: v0.15, id=393, ver=1.1, raw_id=264, raw_ver=1, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65563, pmic_die_revision=131072 foundry_id=3 serial_number=4089789913 num_pmics=2 chip_family=0x55 raw_device_family=0x6 raw_device_number=0x4 nproduct_id=0x400 num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0x6 ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.339061] Minidump: Enabled with max number of regions 200\n[    0.339063] msm_bus_fabric_rpmh_init_driver\n[    0.339937] msm_bus: Probe started\n[    0.340622] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.340667] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.340679] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.340734] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.342822] msm_bus: DT Parsing complete\n[    0.345807] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.345969] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.346015] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.346187] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.359584] actuator_regulator: supplied by pm660l_bob\n[    0.359933] camera_ldo: supplied by pm660_s6\n[    0.360249] camera_rear_vdig_ldo: supplied by pm660_s6\n[    0.360442] camera_vio_ldo: supplied by pm660_s4\n[    0.360693] camera_vana_ldo: supplied by pm660l_bob\n[    0.360927] camera_front_vana_ldo: supplied by pm660l_bob\n[    0.361130] cam_sensor_sub_vdig: supplied by pm660_s6\n[    0.361365] camera_v_custom1_ldo: supplied by pm660_s4\n[    0.361562] camera_rear_aux1_vana: supplied by pm660l_bob\n[    0.362930] arm-smmu 5040000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.362998] arm-smmu 5040000.arm,smmu-kgsl: \tstream matching with 5 register groups, mask 0x7\n[    0.363097] arm-smmu 5040000.arm,smmu-kgsl: found 8 context interrupt(s) but have 5 context banks. assuming 5 context interrupts.\n[    0.365596] register_client_adhoc:find path.src 139 dest 627\n[    0.365877] register_client_adhoc:Client handle 1 apps_smmu\n[    0.366122] arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.366226] arm-smmu 15000000.apps-smmu: \tstream matching with 71 register groups, mask 0x7fff\n[    0.366870] arm-smmu 15000000.apps-smmu: found 64 context interrupt(s) but have 47 context banks. assuming 47 context interrupts.\n[    0.367570] register_client_adhoc:find path.src 139 dest 627\n[    0.367724] register_client_adhoc:Client handle 2 apps_smmu\n[    0.367955] register_client_adhoc:find path.src 139 dest 627\n[    0.368089] register_client_adhoc:Client handle 3 apps_smmu\n[    0.368284] register_client_adhoc:find path.src 22 dest 773\n[    0.368359] register_client_adhoc:Client handle 4 mnoc_hf_0_tbu\n[    0.368568] register_client_adhoc:find path.src 22 dest 773\n[    0.368634] register_client_adhoc:Client handle 5 mnoc_hf_1_tbu\n[    0.368820] register_client_adhoc:find path.src 137 dest 772\n[    0.368898] register_client_adhoc:Client handle 6 mnoc_sf_0_tbu\n[    0.369044] register_client_adhoc:find path.src 139 dest 627\n[    0.369180] register_client_adhoc:Client handle 7 apps_smmu\n[    0.369378] register_client_adhoc:find path.src 139 dest 627\n[    0.369508] register_client_adhoc:Client handle 8 apps_smmu\n[    0.370799] iommu: Adding device 8c0000.qcom,qupv3_0_geni_se:qcom,iommu_qupv3_0_geni_se_cb to group 0\n[    0.370964] iommu: Adding device ac0000.qcom,qupv3_1_geni_se:qcom,iommu_qupv3_1_geni_se_cb to group 1\n[    0.371124] iommu: Adding device ae00000.qcom,mdss_mdp to group 2\n[    0.371287] iommu: Adding device 1de0000.qcedev to group 3\n[    0.371443] iommu: Adding device 1de0000.qcrypto to group 4\n[    0.371607] iommu: Adding device 800000.qcom,gpi-dma to group 5\n[    0.371756] iommu: Adding device a00000.qcom,gpi-dma to group 6\n[    0.371959] iommu: Adding device 18800000.qcom,icnss to group 7\n[    0.372140] iommu: Adding device soc:apps_iommu_test_device to group 8\n[    0.372285] iommu: Adding device soc:apps_iommu_coherent_test_device to group 8\n[    0.372462] iommu: Adding device soc:qcom,msm-audio-ion to group 9\n[    0.372623] iommu: Adding device a600000.ssusb to group 10\n[    0.372786] iommu: Adding device soc:usb_audio_qmi_dev to group 11\n[    0.374935] vgaarb: loaded\n[    0.375492] qcom,qpnp-misc c440000.qcom,spmi:qcom,pm660@0:qcom,misc@900: probe successful\n[    0.376527] SCSI subsystem initialized\n[    0.376687] usbcore: registered new interface driver usbfs\n[    0.376714] usbcore: registered new interface driver hub\n[    0.376753] usbcore: registered new device driver usb\n[    0.377341] soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.377746] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.377778] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)\n[    0.377990] input: qpnp_pon as /devices/virtual/input/input0\n[    0.378289] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: probe keycode = 116,key_st = 0x0\n[    0.378343] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: No PON config. specified\n[    0.378397] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (secondary PMIC) and 'cold' boot\n[    0.378424] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from GP1 (Keypad_Reset1)\n[    0.378470] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: probe keycode = 116,key_st = 0x0\n[    0.378994] oppo_fp_common soc:oppo_fp_common: fp_id_amount: 1\n[    0.379005] oppo_fp_common soc:oppo_fp_common: gpio_index: 23,fp_id: 1\n[    0.379018] oppo_fp_common soc:oppo_fp_common: fpsensor_type: 11, chip_name: G_OPTICAL_G3, eng_menu: -1,-1\n[    0.379097] media: Linux media interface: v0.10\n[    0.379118] Linux video capture interface: v2.00\n[    0.379148] [OPPO_CHG][oppo_short_ic_subsys_init] init start\n[    0.379170] [OPPO_CHG][oppo_short_ic_subsys_init] Success to register oppo_short_ic i2c driver.\n[    0.379173] [OPPO_CHG][stm8s_subsys_init] init start\n[    0.379188] [OPPO_CHG][stm8s_subsys_init] Success to register stm8s i2c driver.\n[    0.379199] [OPPO_CHG][adapter_ic_init] success\n[    0.390343] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@0x9e400000\n[    0.390442] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.390524] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.390613] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.390774] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node sdsp_region\n[    0.391059] ION heap system created\n[    0.391231] ION heap qsecom created at 0x000000009e400000 with size 1400000\n[    0.391239] ION heap qsecom_ta created at 0x00000000e8400000 with size 1000000\n[    0.391246] ION heap spss created at 0x00000000e9400000 with size 800000\n[    0.391253] ION heap secure_display created at 0x00000000e9c00000 with size d000000\n[    0.391270] ION heap secure_heap created\n[    0.391284] ION heap adsp created at 0x00000000fec00000 with size 800000\n[    0.403817] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0xa7800000, size 0xc00000\n[    0.403820] ION heap secure_carveout created\n[    0.405522] ipa ipa3_tz_unlock_reg:5249 Bad parameters\n[    0.405531] ipa ipa3_pre_init:5451 Failed to unlock memory region using TZ\n[    0.405740] register_client_adhoc:find path.src 90 dest 512\n[    0.406238] register_client_adhoc:find path.src 90 dest 585\n[    0.406383] register_client_adhoc:find path.src 1 dest 676\n[    0.406614] register_client_adhoc:find path.src 143 dest 777\n[    0.406684] register_client_adhoc:Client handle 9 ipa\n[    0.407320] ipa ipa3_uc_state_check:284 uC interface not initialized\n[    0.410857] ipa ipa3_uc_state_check:284 uC interface not initialized\n[    0.411469] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_ap to group 12\n[    0.411697] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_wlan to group 13\n[    0.411932] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_uc to group 14\n[    0.413265] PMIC@SID0: PM660 v2.0 options: 0, 0, 0, 0\n[    0.413391] PMIC@SID2: PM660L v2.0.2 options: 0, 0, 0, 0\n[    0.418012] Advanced Linux Sound Architecture Driver Initialized.\n[    0.418436] Bluetooth: Core ver 2.22\n[    0.418458] NET: Registered protocol family 31\n[    0.418461] Bluetooth: HCI device and connection manager initialized\n[    0.418468] Bluetooth: HCI socket layer initialized\n[    0.418474] Bluetooth: L2CAP socket layer initialized\n[    0.418496] Bluetooth: SCO socket layer initialized\n[    0.419829] NetLabel: Initializing\n[    0.419832] NetLabel:  domain hash size = 128\n[    0.419834] NetLabel:  protocols = UNLABELED CIPSOv4\n[    0.419876] NetLabel:  unlabeled traffic allowed by default\n[    0.420356] register_client_adhoc:find path.src 22 dest 512\n[    0.420688] register_client_adhoc:find path.src 23 dest 512\n[    0.420895] register_client_adhoc:Client handle 10 bus-proxy-client\n[    0.421879] regulator-oledb: Bringing 0uV into 5000000-5000000uV\n[    0.422199] OLEDB: qpnp_oledb_regulator_probe: OLEDB registered successfully, ext_pin_en=1 mod_en=1 current_voltage=6400 mV\n[    0.422325] ibb_reg: Bringing 0uV into 4000000-4000000uV\n[    0.422583] lab_reg: Bringing 0uV into 4600000-4600000uV\n[    0.422743] qpnp_labibb_regulator_probe: LAB/IBB registered successfully, lab_vreg enable=1 ibb_vreg enable=1 swire_control=1\n[    0.423094] gpu_gx_gdsc: supplied by pm660l_s2_level\n[    0.424521] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu0\n[    0.424827] clk: add_opp: Set OPP pair (1708800000 Hz, 788000 uv) on cpu0\n[    0.424882] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu1\n[    0.425173] clk: add_opp: Set OPP pair (1708800000 Hz, 788000 uv) on cpu1\n[    0.425218] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu2\n[    0.425521] clk: add_opp: Set OPP pair (1708800000 Hz, 788000 uv) on cpu2\n[    0.425569] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu3\n[    0.425869] clk: add_opp: Set OPP pair (1708800000 Hz, 788000 uv) on cpu3\n[    0.425912] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu4\n[    0.426210] clk: add_opp: Set OPP pair (1708800000 Hz, 788000 uv) on cpu4\n[    0.426252] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu5\n[    0.426530] clk: add_opp: Set OPP pair (1708800000 Hz, 788000 uv) on cpu5\n[    0.426586] clk: add_opp: Set OPP pair (300000000 Hz, 576000 uv) on cpu6\n[    0.427032] clk: add_opp: Set OPP pair (2304000000 Hz, 924000 uv) on cpu6\n[    0.427086] clk: add_opp: Set OPP pair (300000000 Hz, 576000 uv) on cpu7\n[    0.427533] clk: add_opp: Set OPP pair (2304000000 Hz, 924000 uv) on cpu7\n[    0.427922] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on soc:qcom,l3-cpu0\n[    0.427924] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on soc:qcom,l3-cpu6\n[    0.427927] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on soc:qcom,l3-cdsp\n[    0.428975] clk: add_opp: Set OPP pair (1440000000 Hz, 768000 uv) on soc:qcom,l3-cpu0\n[    0.428978] clk: add_opp: Set OPP pair (1440000000 Hz, 768000 uv) on soc:qcom,l3-cpu6\n[    0.428980] clk: add_opp: Set OPP pair (1440000000 Hz, 768000 uv) on soc:qcom,l3-cdsp\n[    0.429724] cpufreq: driver osm-cpufreq up and running\n[    0.429726] clk: clk_cpu_osm_driver_probe: OSM CPUFreq driver inited\n[    0.429930] sched-energy energy-costs: cpu=0 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.429933] CPU0: update cpu_power 641\n[    0.429939] sched-energy energy-costs: cpu=1 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.429940] CPU1: update cpu_power 641\n[    0.429946] sched-energy energy-costs: cpu=2 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.429947] CPU2: update cpu_power 641\n[    0.429952] sched-energy energy-costs: cpu=3 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.429954] CPU3: update cpu_power 641\n[    0.429960] sched-energy energy-costs: cpu=4 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.429962] CPU4: update cpu_power 641\n[    0.429967] sched-energy energy-costs: cpu=5 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.429968] CPU5: update cpu_power 641\n[    0.429975] sched-energy energy-costs: cpu=6 eff=1740 [freq=300000 cap=134 power_d0=256] -> [freq=2611200 cap=1024 power_d0=1400]\n[    0.429976] CPU6: update cpu_power 1407\n[    0.429982] sched-energy energy-costs: cpu=7 eff=1740 [freq=300000 cap=134 power_d0=256] -> [freq=2611200 cap=1024 power_d0=1400]\n[    0.429984] CPU7: update cpu_power 1407\n[    0.430060] CPU0: update max cpu_capacity 448\n[    0.430221] CPU0: update max cpu_capacity 448\n[    0.430336] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.431144] clocksource: Switched to clocksource arch_sys_counter\n[    0.440093] CPU0: update max cpu_capacity 448\n[    0.465506] VFS: Disk quotas dquot_6.6.0\n[    0.465564] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.466362] debugcc-sdm845 soc:qcom,cc-debug: Registered debug mux successfully\n[    0.467387] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.467624] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.467630] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.467636] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.467641] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.467646] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.468208] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=0, clocks successfully\n[    0.468231] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.468286] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.468292] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.468297] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.468302] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.468308] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.473427] dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.478709] dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.478842] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=1, clocks successfully\n[    0.478865] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.483119] NET: Registered protocol family 2\n[    0.483208] IP idents hash table entries: 131072 (order: 8, 1048576 bytes)\n[    0.485160] TCP established hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.485441] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)\n[    0.486237] TCP: Hash tables configured (established 65536 bind 65536)\n[    0.486290] UDP hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.486362] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.486643] NET: Registered protocol family 1\n[    0.486664] PCI: CLS 0 bytes, default 128\n[    0.487214] Trying to unpack rootfs image as initramfs...\n[    0.683792] Freeing initrd memory: 7492K\n[    0.685918] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.689988] audit: initializing netlink subsys (disabled)\n[    0.690111] audit: type=2000 audit(0.689:1): initialized\n[    0.691774] workingset: timestamp_bits=45 max_order=21 bucket_order=0\n[    0.695284] Registering sdcardfs 0.1\n[    0.695417] fuse init (API version 7.26)\n[    0.696923] SELinux:  Registering netfilter hooks\n[    0.697200] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    0.697202] pfk_f2fs [pfk_f2fs_init]: PFK F2FS inited successfully\n[    0.697206] pfk [pfk_init]: Driver initialized successfully\n[    0.701241] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)\n[    0.701246] io scheduler noop registered\n[    0.701249] io scheduler deadline registered\n[    0.701317] io scheduler cfq registered (default)\n[    0.713785] qcom,qpnp-clkdiv c440000.qcom,spmi:qcom,pm660@0:qcom,clkdiv@5b00: Registered qpnp_clkdiv_1 successfully\n[    0.718461] 88e0000.qcom,msm-eud supply vdda33 not found, using dummy regulator\n[    0.730285] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.730394] icnss: Platform driver probed successfully\n[    0.731649] memshare: Continuing with allocation from CMA\n[    0.731660] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.731712] memshare: Continuing with allocation from CMA\n[    0.731718] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.731770] memshare: Continuing with allocation from CMA\n[    0.731775] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.732846] register_client_adhoc:find path.src 125 dest 512\n[    0.733275] register_client_adhoc:Client handle 11 scm_pas\n[    0.733285] minidump-id not found for adsp\n[    0.733389] minidump-id not found for ipa_fws\n[    0.733400] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    0.733919] register_client_adhoc:find path.src 63 dest 512\n[    0.734115] register_client_adhoc:Client handle 12 pil-venus\n[    0.734121] minidump-id not found for venus\n[    0.734130] subsys-pil-tz aae0000.qcom,venus: for venus segments only will be dumped.\n[    0.734328] minidump-id not found for cdsp\n[    0.734581] minidump-id not found for a615_zap\n[    0.734588] subsys-pil-tz soc:qcom,kgsl-hyp: for a615_zap segments only will be dumped.\n[    0.735568] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    0.737896] msm_geni_serial 898000.qcom,qup_uart: Wakeup byte 0xfd\n[    0.737952] msm_geni_serial 898000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    0.738690] 898000.qcom,qup_uart: ttyHS0 at MMIO 0x898000 (irq = 10, base_baud = 0) is a MSM\n[    0.739178] msm_geni_serial_init: Driver initialized\n[    0.739527] register_client_adhoc:find path.src 1 dest 618\n[    0.739770] register_client_adhoc:Client handle 13 msm-rng-noc\n[    0.740829] random: crng init done\n[    0.745426] diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    0.745429] diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    0.787858] [srandom] mod_init /dev/srandom driver registered..\n[    0.787871] [srandom] mod_init /proc/srandom registion regisered..\n[    0.787873] [srandom] mod_init Module version         : 1.38.0\n[    0.787874] -----------------------:----------------------\n[    0.787877] Please support my work and efforts contributing\n[    0.787879] to the Linux community.  A $25 payment per\n[    0.787880] server would be highly appreciated.\n[    0.787881] -----------------------:----------------------\n[    0.787882] Author                 : Jonathan Senkerik\n[    0.787884] Website                : http://www.jintegrate.co\n[    0.787886] github                 : http://github.com/josenk/srandom\n[    0.787886] Paypal                 : josenk@jintegrate.co\n[    0.787888] Bitcoin                : 1MTNg7SqcEWs5uwLKwNiAfYqBfnKFJu65p\n[    0.787890] Commercial Invoice     : Avail on request.\n[    0.788011] [drm] Initialized\n[    0.788446] register_client_adhoc:find path.src 20003 dest 20515\n[    0.788605] register_client_adhoc:find path.src 20004 dest 20515\n[    0.788673] register_client_adhoc:Client handle 14 disp_rsc_mnoc\n[    0.788695] register_client_adhoc:find path.src 20001 dest 20513\n[    0.788765] register_client_adhoc:Client handle 15 disp_rsc_llcc\n[    0.788788] register_client_adhoc:find path.src 20000 dest 20512\n[    0.788856] register_client_adhoc:Client handle 16 disp_rsc_ebi\n[    0.789052] [sde_rsc_hw:rsc_hw_init:679]: sde rsc init successfully done\n[    0.789065] [sde_rsc:sde_rsc_probe:1422]: sde rsc index:0 probed successfully\n[    0.790423] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-0\n[    0.790530] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-1\n[    0.791316] AXI: get_pdata(): Error: Client name not found\n[    0.791319] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.791322] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-0\n[    0.791457] AXI: get_pdata(): Error: Client name not found\n[    0.791458] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.791460] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-1\n[    0.792110] sdm670-pinctrl 3400000.pinctrl: invalid group \"gpio54\" for function \"mdp_vsync\"\n[    0.792132] sdm670-pinctrl 3400000.pinctrl: invalid group \"gpio54\" for function \"mdp_vsync\"\n[    0.792286] msm-dsi-panel:[dsi_panel_parse_reset_sequence:2270] RESET SEQ LENGTH = 24\n[    0.792307] msm-dsi-panel:[dsi_panel_parse_misc_features:2319] dsi_panel_parse_misc_features: ulps feature disabled\n[    0.792312] msm-dsi-panel:[dsi_panel_parse_misc_features:2325] dsi_panel_parse_misc_features: ulps during suspend feature disabled\n[    0.792372] msm-dsi-panel:[dsi_panel_parse_esd_config:3499] ESD enabled with mode: register_read\n[    0.792388] msm-dsi-display:[dsi_display_clocks_init] failed to get src_byte_clk, rc=-2\n[    0.792456] sdm670-pinctrl 3400000.pinctrl: invalid group \"gpio54\" for function \"mdp_vsync\"\n[    0.792471] sdm670-pinctrl 3400000.pinctrl: invalid group \"gpio54\" for function \"mdp_vsync\"\n[    0.793498] msm-dsi-display:[dsi_display_get_boot_display] index = 0\n[    0.793500] msm-dsi-display:[dsi_display_get_boot_display] index = 1\n[    0.793907] register_client_adhoc:find path.src 1 dest 590\n[    0.794204] register_client_adhoc:Client handle 17 mdss_reg\n[    0.794231] register_client_adhoc:find path.src 22 dest 512\n[    0.794449] register_client_adhoc:find path.src 23 dest 512\n[    0.794631] register_client_adhoc:Client handle 18 mdss_sde\n[    0.794698] [drm:sde_dbg_init:3481] evtlog_status: enable:3, panic:1, dump:2\n[    0.794721] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops sde_rsc_comp_ops)\n[    0.794729] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops sde_wb_comp_ops)\n[    0.794972] sdm670-pinctrl 3400000.pinctrl: invalid group \"gpio54\" for function \"mdp_vsync\"\n[    0.794989] sdm670-pinctrl 3400000.pinctrl: invalid group \"gpio54\" for function \"mdp_vsync\"\n[    0.795010] msm-dsi-display:[dsi_display_bind] Successfully bind display panel 'dsi_rm19651samsung_ams641rw01_1080_2340_cmd_display'\n[    0.795242] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display@20 (ops dsi_display_comp_ops)\n[    0.795283] [drm] mapped mdp address space @ffffff800f300000\n[    0.795311] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: vbif_nrt_phys\n[    0.795359] [drm:_sde_kms_get_splash_data:3271] found continuous splash base address:9c000000 size:2300000\n[    0.796591] [drm:sde_kms_hw_init:3400] sde hardware revision:0x40010000\n[    0.797552] [drm] Created domain mdp_ns [80000000,80000000] secure=0\n[    0.800482] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 15\n[    0.800895] [drm] probing device qcom,smmu_sde_sec\n[    0.800903] [drm] Created domain mdp_s [80000000,80000000] secure=1\n[    0.804416] [drm] invalid feature map 9 for feature 10\n[    0.804527] [drm] invalid feature map 9 for feature 10\n[    0.808321] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    0.808324] [drm] No driver support for vblank timestamp query.\n[    0.809344] msm-dsi-panel:[dsi_panel_parse_topology:3097] override topology: cfg:0 lm:1 comp_enc:0 intf:1\n[    0.809527] msm-dsi-panel:[dsi_panel_parse_partial_update_caps:3207] partial update disabled as the property is not set\n[    0.809704] dsi-ctrl:[_dsi_ctrl_setup_isr] [DSI_0] IRQ 603 registered\n[    0.816429] iommu: Adding device 506a000.qcom,gmu:gmu_user to group 16\n[    0.816707] iommu: Adding device 506a000.qcom,gmu:gmu_kernel to group 17\n[    0.818382] register_client_adhoc:find path.src 26 dest 512\n[    0.818613] register_client_adhoc:Client handle 19 grp3d\n[    0.818631] register_client_adhoc:find path.src 26 dest 10036\n[    0.818779] register_client_adhoc:Client handle 20 cnoc\n[    0.818785] query_client_usecase_all: query_start\n[    0.818836] query_client_usecase_all: query_start\n[    0.820150] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 18\n[    0.820520] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 19\n[    0.820779] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure_alt to group 20\n[    0.821217] kgsl: _kgsl_iommu_cb_probe: dt: Unused context label gfx3d_secure_alt\n[    0.842121] llcc_slice_get_entry:can't find 11 usecase id\n[    0.864144] brd: module loaded\n[    0.885912] loop: module loaded\n[    0.887222] zram: Added device: zram0\n[    0.889092] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1400000\n[    0.889120] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.889127] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    0.889130] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    0.889231] register_client_adhoc:find path.src 125 dest 512\n[    0.889687] register_client_adhoc:Client handle 21 qseecom-noc\n[    0.889800] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    0.892129] Loading pn544 driver\n[    0.892310] register_client_adhoc:find path.src 125 dest 512\n[    0.892610] register_client_adhoc:Client handle 22 qcedev-noc\n[    0.893840] qce 1de0000.qcedev: QTI Crypto 5.4.1 device found @0x1de0000\n[    0.893847] qce 1de0000.qcedev: CE device = 0x0 IO base, CE = ffffff800f880000 Consumer (IN) PIPE 6,\n               Producer (OUT) PIPE 7 IO base BAM = 0000000000000000\n               BAM IRQ 20 Engines Availability = 0x2011073\n[    0.894028] sps:BAM 0x0000000001dc4000 is registered.\n[    0.894179] sps:BAM 0x0000000001dc4000 (va:0xffffff800f900000) enabled: ver:0x27, number of pipes:16\n[    0.894349] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 20\n[    0.896840] register_client_adhoc:find path.src 125 dest 512\n[    0.897206] register_client_adhoc:Client handle 23 qcrypto-noc\n[    0.898059] qcrypto 1de0000.qcrypto: QTI Crypto 5.4.1 device found @0x1de0000\n[    0.898065] qcrypto 1de0000.qcrypto: CE device = 0x0 IO base, CE = ffffff800f940000 Consumer (IN) PIPE 4,\n               Producer (OUT) PIPE 5 IO base BAM = 0000000000000000\n               BAM IRQ 20 Engines Availability = 0x2011073\n[    0.898314] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 20\n[    0.898733] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    0.898881] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    0.898990] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    0.899087] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    0.899186] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    0.899287] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    0.899383] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    0.899481] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    0.899578] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    0.899676] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    0.899775] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    0.899872] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    0.899970] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    0.900204] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    0.900305] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    0.900405] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    0.900502] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    0.900604] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    0.900707] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    0.900806] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    0.902022] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    0.903846] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    0.905398] qcom_ice_get_pdevice: found ice device ffffffed6c5cb800\n[    0.905401] qcom_ice_get_pdevice: matching platform device ffffffed72a11c00\n[    0.906606] register_client_adhoc:find path.src 123 dest 512\n[    0.907034] register_client_adhoc:find path.src 1 dest 757\n[    0.907252] register_client_adhoc:Client handle 24 ufshc_mem\n[    0.908791] scsi host0: ufshcd\n[    0.913440] qcom_ice 1d90000.ufsice: QC ICE 3.1.75 device found @0xffffff800f2e8000\n[    0.931882] SCSI Media Changer driver v0.25 \n[    0.933721] sdm670-pinctrl 3400000.pinctrl: pin GPIO_27 already requested by 7.gpio-regulator; cannot claim for 888000.spi\n[    0.933726] sdm670-pinctrl 3400000.pinctrl: pin-27 (888000.spi) status -22\n[    0.933732] sdm670-pinctrl 3400000.pinctrl: could not request pin 27 (GPIO_27) from group gpio27  on device 3400000.pinctrl\n[    0.933737] spi_geni 888000.spi: Error applying setting, reverse things back\n[    0.933755] spi_geni: probe of 888000.spi failed with error -22\n[    0.934576] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    0.936998] libphy: Fixed MDIO Bus: probed\n[    0.937019] tun: Universal TUN/TAP device driver, 1.6\n[    0.937021] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    0.937067] sky2: driver version 1.30\n[    0.937410] PPP generic driver version 2.4.2\n[    0.937465] PPP BSD Compression module registered\n[    0.937468] PPP Deflate Compression module registered\n[    0.937497] PPP MPPE Compression module registered\n[    0.937500] NET: Registered protocol family 24\n[    0.937512] PPTP driver version 0.8.5\n[    0.937783] CLD80211: Initializing\n[    0.937876] usbcore: registered new interface driver r8152\n[    0.937945] usbcore: registered new interface driver lan78xx\n[    0.937965] usbcore: registered new interface driver asix\n[    0.937984] usbcore: registered new interface driver ax88179_178a\n[    0.938004] usbcore: registered new interface driver cdc_ether\n[    0.938022] usbcore: registered new interface driver net1080\n[    0.938044] usbcore: registered new interface driver cdc_subset\n[    0.938064] usbcore: registered new interface driver zaurus\n[    0.938091] usbcore: registered new interface driver cdc_ncm\n[    0.938097] CHRDEV \"uio\" major number 233 goes below the dynamic allocation range\n[    0.941444] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.943287] msm_sharedmem: msm_sharedmem_probe: Device created for client 'oembackup'\n[    0.945273] msm-qusb-phy-v2 88e2000.qusb: pinctrl not available\n[    0.946679] [OPPO_CHG][oppo_ccdetect_support_check]: g_oppo_chip not ready!\n[    0.947495] msm-dwc3 a600000.ssusb: unable to get dbm device\n[    0.948833] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.948835] ehci-pci: EHCI PCI platform driver\n[    0.948859] ehci-platform: EHCI generic platform driver\n[    0.949199] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    0.949215] ohci-pci: OHCI PCI platform driver\n[    0.949243] ohci-platform: OHCI generic platform driver\n[    0.950166] usbcore: registered new interface driver usb-storage\n[    0.950190] usbcore: registered new interface driver usb_ehset_test\n[    0.950212] usbcore: registered new interface driver lvs\n[    0.951856] msm_sharedmem: sharedmem_register_qmi: qmi init successful\n[    0.951906] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    0.955211] usbpd usbpd0: Could not get USB power_supply, deferring probe\n[    0.955416] qpnp-pdphy c440000.qcom,spmi:qcom,pm660@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    0.956449] mousedev: PS/2 mouse device common for all mice\n[    0.956606] usbcore: registered new interface driver xpad\n[    0.956631] [TP] tp_ic_name = synaptics-s3706 \n[    0.956636] [TP] Project Name use synaptics\n[    0.957449] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: rtc core: registered qpnp_rtc as rtc0\n[    0.957836] i2c /dev entries driver\n[    0.958174] i2c_geni 890000.i2c: Bus frequency not specified, default to 400KHz.\n[    0.958980] isNFCVDD : isProject(OPPO_19651): 1 \n[    0.958992] isNFCVDD : isProject(OPPO_19651): 1 \n[    0.959011] pn544 2-0028: normal nfc_pinctrl \n[    0.959338] invalid GPIO -2\n[    0.959368] ------------[ cut here ]------------\n[    0.959385] WARNING: CPU: 0 PID: 1 at drivers/gpio/gpiolib.c:106 gpio_to_desc+0x9c/0xb0\n[    0.959387] Modules linked in:\n[    0.959397] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.9.287-parallax+ #1\n[    0.959399] Hardware name: Qualcomm Technologies, Inc. SDM710 PM660 + PM660A MTP (DT)\n[    0.959406] task: 00000000e21aa515 task.stack: 00000000f1f924c7\n[    0.959408] PC is at gpio_to_desc+0x9c/0xb0\n[    0.959410] LR is at gpio_to_desc+0x9c/0xb0\n[    0.959413] pc : [<ffffff8c60b1a238>] lr : [<ffffff8c60b1a238>] pstate: 60c00045\n[    0.959415] sp : ffffffed739236d0\n[    0.959418] x29: ffffffed739236d0 x28: 0000000000000040 \n[    0.959421] x27: ffffff8c62194c16 x26: ffffffed6c374198 \n[    0.959424] x25: ffffffed6c374180 x24: ffffff8c62e1b000 \n[    0.959427] x23: ffffff8c6211577c x22: 0000000000000000 \n[    0.959430] x21: ffffffed6c09dc20 x20: ffffff8c62a88760 \n[    0.959433] x19: 00000000fffffffe x18: 0000000000000000 \n[    0.959435] x17: 0000000000000000 x16: 0000000000000000 \n[    0.959439] x15: 0000000000000020 x14: 0000000000000082 \n[    0.959442] x13: 000000000000dc18 x12: 0000000000000000 \n[    0.959444] x11: 0000000000000000 x10: 0000000000000000 \n[    0.959447] x9 : 04912e269681ba00 x8 : 04912e269681ba00 \n[    0.959450] x7 : 0000000000000000 x6 : ffffffed7d438c17 \n[    0.959453] x5 : ffffff8c62a40000 x4 : 0000000000000000 \n[    0.959455] x3 : 0000000000000032 x2 : 0000000000000001 \n[    0.959458] x1 : 0000000000000040 x0 : 000000000000000f \n[    0.959463] \n               PC: 0xffffff8c60b1a1f8:\n[    0.959464] a1f8  912da000 9445bdb2 b85e8288 f85e0289 4b080268 8b081520 1400000c b0011760\n[    0.959480] a218  912da000 9445bdaa 7114027f 540000c3 d000c380 2a1303e1 9113b000 97f0539e\n[    0.959488] a238  d4210000 aa1f03e0 a9414ff4 a8c27bfd d65f03c0 f9400008 f941b109 b9436908\n[    0.959497] a258  cb090009 d345fd29 0b090100 d65f03c0 b4000080 f9400008 b4000068 f941ad00\n[    0.959507] \n               LR: 0xffffff8c60b1a1f8:\n[    0.959508] a1f8  912da000 9445bdb2 b85e8288 f85e0289 4b080268 8b081520 1400000c b0011760\n[    0.959516] a218  912da000 9445bdaa 7114027f 540000c3 d000c380 2a1303e1 9113b000 97f0539e\n[    0.959525] a238  d4210000 aa1f03e0 a9414ff4 a8c27bfd d65f03c0 f9400008 f941b109 b9436908\n[    0.959533] a258  cb090009 d345fd29 0b090100 d65f03c0 b4000080 f9400008 b4000068 f941ad00\n[    0.959544] \n               SP: 0xffffffed73923690:\n[    0.959544] 3690  60b1a238 ffffff8c 739236d0 ffffffed 60b1a238 ffffff8c 60c00045 00000000\n[    0.959554] 36b0  ffffffc8 00000000 9681ba00 04912e26 ffffffff ffffffff 60b1a238 ffffff8c\n[    0.959562] 36d0  739236f0 ffffffed 60e75020 ffffff8c 6c09dc00 ffffffed 6c374118 ffffffed\n[    0.959571] 36f0  739237f0 ffffffed 610a1d34 ffffff8c 00000000 00000000 00000002 00000000\n[    0.959586] ---[ end trace a4a9f0c05bf417d8 ]---\n[    0.959589] Call trace:\n[    0.959594] Exception stack(0xffffffed73923570 to 0xffffffed739236a0)\n[    0.959599] 3560:                                   000000000000003d 0000000060c00045\n[    0.959602] 3580: ffffff8c60b1a238 ffffffed739236d0 0000007fffffffff 00000000fffffffe\n[    0.959605] 35a0: 000000000000000f 0000000000000040 0000000000000001 0000000000000032\n[    0.959609] 35c0: 0000000000000000 ffffff8c62a40000 ffffffed7d438c17 0000000000000000\n[    0.959611] 35e0: 04912e269681ba00 04912e269681ba00 0000000000000000 0000000000000000\n[    0.959614] 3600: 0000000000000000 000000000000dc18 0000000000000082 0000000000000020\n[    0.959616] 3620: 0000000000000000 0000000000000000 0000000000000000 00000000fffffffe\n[    0.959620] 3640: ffffff8c62a88760 ffffffed6c09dc20 0000000000000000 ffffff8c6211577c\n[    0.959624] 3660: ffffff8c62e1b000 ffffffed6c374180 ffffffed6c374198 ffffff8c62194c16\n[    0.959627] 3680: 0000000000000040 ffffffed739236d0 ffffff8c60b1a238 ffffffed739236d0\n[    0.959630] [<000000007d1b0cc7>] gpio_to_desc+0x9c/0xb0\n[    0.959640] [<000000004cd37ff2>] pn544_probe+0x8c8/0xb54\n[    0.959648] [<00000000168ce632>] i2c_device_probe+0x3a0/0x3cc\n[    0.959654] [<00000000a4b812e7>] driver_probe_device+0x534/0x56c\n[    0.959660] [<000000002d29cc2d>] __device_attach_driver.llvm.15635693618783471131+0xf0/0x108\n[    0.959665] [<00000000a15cf943>] bus_for_each_drv+0x80/0x104\n[    0.959668] [<000000002d13b881>] __device_attach.llvm.15635693618783471131+0xa4/0x13c\n[    0.959670] [<000000000677623e>] bus_probe_device+0x34/0x94\n[    0.959674] [<000000009f6935ea>] device_add+0x360/0x56c\n[    0.959678] [<000000007db57421>] i2c_new_device+0x1c8/0x240\n[    0.959680] [<000000000caa34b1>] i2c_register_adapter+0x4a4/0x648\n[    0.959684] [<00000000f8006989>] i2c_add_adapter+0x148/0x178\n[    0.959688] [<0000000096f172a9>] geni_i2c_probe+0x474/0x498\n[    0.959693] [<00000000ddca6250>] platform_drv_probe.llvm.9156713810384558273+0x7c/0xbc\n[    0.959697] [<00000000a4b812e7>] driver_probe_device+0x534/0x56c\n[    0.959700] [<00000000a917506e>] __driver_attach.llvm.15635693618783471131+0xb8/0xe4\n[    0.959703] [<00000000af2b4836>] bus_for_each_dev+0xb0/0x108\n[    0.959705] [<000000000a678a8b>] bus_add_driver+0x148/0x27c\n[    0.959709] [<00000000ff6b5731>] driver_register+0xac/0x158\n[    0.959719] [<00000000cee1f093>] geni_i2c_driver_init+0x40/0x48\n[    0.959726] [<00000000608cbbfb>] do_one_initcall+0xfc/0x1c4\n[    0.959733] [<0000000077cae02a>] kernel_init_freeable+0x260/0x2ec\n[    0.959741] [<000000003f98d0fe>] kernel_init+0x10/0x274\n[    0.959744] [<000000005ad44cc1>] ret_from_fork+0x10/0x50\n[    0.959749] isNFCVDD : isProject(OPPO_19651): 1 \n[    0.960969] invalid GPIO -2\n[    0.960988] ------------[ cut here ]------------\n[    0.960995] WARNING: CPU: 0 PID: 1 at drivers/gpio/gpiolib.c:106 gpio_to_desc+0x9c/0xb0\n[    0.960996] Modules linked in:\n[    0.961002] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W       4.9.287-parallax+ #1\n[    0.961004] Hardware name: Qualcomm Technologies, Inc. SDM710 PM660 + PM660A MTP (DT)\n[    0.961006] task: 00000000e21aa515 task.stack: 00000000f1f924c7\n[    0.961008] PC is at gpio_to_desc+0x9c/0xb0\n[    0.961010] LR is at gpio_to_desc+0x9c/0xb0\n[    0.961012] pc : [<ffffff8c60b1a238>] lr : [<ffffff8c60b1a238>] pstate: 60c00045\n[    0.961013] sp : ffffffed739236d0\n[    0.961014] x29: ffffffed739236d0 x28: 0000000000000040 \n[    0.961017] x27: ffffff8c62194c16 x26: ffffffed6c374198 \n[    0.961020] x25: ffffffed6c374180 x24: ffffff8c62e1b000 \n[    0.961023] x23: 0000000000000001 x22: 0000000000000000 \n[    0.961026] x21: ffffffed6c09dc20 x20: ffffff8c62a88760 \n[    0.961029] x19: 00000000fffffffe x18: 0000000000000000 \n[    0.961031] x17: 0000000000000000 x16: 0000000000000000 \n[    0.961034] x15: 0000000000000020 x14: 0000000000000082 \n[    0.961037] x13: 000000000000f214 x12: 0000000000000000 \n[    0.961039] x11: 0000000000000000 x10: 0000000000000000 \n[    0.961042] x9 : 04912e269681ba00 x8 : 04912e269681ba00 \n[    0.961045] x7 : 0000000000000000 x6 : ffffffed7d43a213 \n[    0.961048] x5 : ffffff8c62a40000 x4 : 0000000000000000 \n[    0.961050] x3 : 0000000000000032 x2 : 0000000000000001 \n[    0.961053] x1 : 0000000000000040 x0 : 000000000000000f \n[    0.961056] \n               PC: 0xffffff8c60b1a1f8:\n[    0.961057] a1f8  912da000 9445bdb2 b85e8288 f85e0289 4b080268 8b081520 1400000c b0011760\n[    0.961067] a218  912da000 9445bdaa 7114027f 540000c3 d000c380 2a1303e1 9113b000 97f0539e\n[    0.961075] a238  d4210000 aa1f03e0 a9414ff4 a8c27bfd d65f03c0 f9400008 f941b109 b9436908\n[    0.961084] a258  cb090009 d345fd29 0b090100 d65f03c0 b4000080 f9400008 b4000068 f941ad00\n[    0.961093] \n               LR: 0xffffff8c60b1a1f8:\n[    0.961094] a1f8  912da000 9445bdb2 b85e8288 f85e0289 4b080268 8b081520 1400000c b0011760\n[    0.961102] a218  912da000 9445bdaa 7114027f 540000c3 d000c380 2a1303e1 9113b000 97f0539e\n[    0.961111] a238  d4210000 aa1f03e0 a9414ff4 a8c27bfd d65f03c0 f9400008 f941b109 b9436908\n[    0.961119] a258  cb090009 d345fd29 0b090100 d65f03c0 b4000080 f9400008 b4000068 f941ad00\n[    0.961128] \n               SP: 0xffffffed73923690:\n[    0.961129] 3690  60b1a238 ffffff8c 739236d0 ffffffed 60b1a238 ffffff8c 60c00045 00000000\n[    0.961139] 36b0  ffffffc8 00000000 9681ba00 04912e26 ffffffff ffffffff 60b1a238 ffffff8c\n[    0.961148] 36d0  739236f0 ffffffed 60e751fc ffffff8c 6c09dc00 ffffffed 6c374118 ffffffed\n[    0.961158] 36f0  739237f0 ffffffed 610a1d34 ffffff8c 00000000 00000000 00000002 00000000\n[    0.961167] ---[ end trace a4a9f0c05bf417d9 ]---\n[    0.961168] Call trace:\n[    0.961171] Exception stack(0xffffffed73923570 to 0xffffffed739236a0)\n[    0.961173] 3560:                                   000000000000003d 0000000060c00045\n[    0.961176] 3580: ffffff8c60b1a238 ffffffed739236d0 0000007fffffffff 00000000fffffffe\n[    0.961178] 35a0: 000000000000000f 0000000000000040 0000000000000001 0000000000000032\n[    0.961182] 35c0: 0000000000000000 ffffff8c62a40000 ffffffed7d43a213 0000000000000000\n[    0.961185] 35e0: 04912e269681ba00 04912e269681ba00 0000000000000000 0000000000000000\n[    0.961187] 3600: 0000000000000000 000000000000f214 0000000000000082 0000000000000020\n[    0.961190] 3620: 0000000000000000 0000000000000000 0000000000000000 00000000fffffffe\n[    0.961194] 3640: ffffff8c62a88760 ffffffed6c09dc20 0000000000000000 0000000000000001\n[    0.961196] 3660: ffffff8c62e1b000 ffffffed6c374180 ffffffed6c374198 ffffff8c62194c16\n[    0.961199] 3680: 0000000000000040 ffffffed739236d0 ffffff8c60b1a238 ffffffed739236d0\n[    0.961201] [<000000007d1b0cc7>] gpio_to_desc+0x9c/0xb0\n[    0.961205] [<000000009e363f56>] pn544_probe+0xaa4/0xb54\n[    0.961209] [<00000000168ce632>] i2c_device_probe+0x3a0/0x3cc\n[    0.961212] [<00000000a4b812e7>] driver_probe_device+0x534/0x56c\n[    0.961215] [<000000002d29cc2d>] __device_attach_driver.llvm.15635693618783471131+0xf0/0x108\n[    0.961219] [<00000000a15cf943>] bus_for_each_drv+0x80/0x104\n[    0.961223] [<000000002d13b881>] __device_attach.llvm.15635693618783471131+0xa4/0x13c\n[    0.961226] [<000000000677623e>] bus_probe_device+0x34/0x94\n[    0.961229] [<000000009f6935ea>] device_add+0x360/0x56c\n[    0.961232] [<000000007db57421>] i2c_new_device+0x1c8/0x240\n[    0.961234] [<000000000caa34b1>] i2c_register_adapter+0x4a4/0x648\n[    0.961236] [<00000000f8006989>] i2c_add_adapter+0x148/0x178\n[    0.961239] [<0000000096f172a9>] geni_i2c_probe+0x474/0x498\n[    0.961243] [<00000000ddca6250>] platform_drv_probe.llvm.9156713810384558273+0x7c/0xbc\n[    0.961246] [<00000000a4b812e7>] driver_probe_device+0x534/0x56c\n[    0.961249] [<00000000a917506e>] __driver_attach.llvm.15635693618783471131+0xb8/0xe4\n[    0.961251] [<00000000af2b4836>] bus_for_each_dev+0xb0/0x108\n[    0.961253] [<000000000a678a8b>] bus_add_driver+0x148/0x27c\n[    0.961256] [<00000000ff6b5731>] driver_register+0xac/0x158\n[    0.961260] [<00000000cee1f093>] geni_i2c_driver_init+0x40/0x48\n[    0.961263] [<00000000608cbbfb>] do_one_initcall+0xfc/0x1c4\n[    0.961266] [<0000000077cae02a>] kernel_init_freeable+0x260/0x2ec\n[    0.961269] [<000000003f98d0fe>] kernel_init+0x10/0x274\n[    0.961271] [<000000005ad44cc1>] ret_from_fork+0x10/0x50\n[    0.962511] i2c_geni a84000.i2c: Bus frequency not specified, default to 400KHz.\n[    0.963333] i2c_geni a88000.i2c: Bus frequency not specified, default to 400KHz.\n[    0.964366] i2c_geni a88000.i2c: i2c error :-107\n[    0.964458] i2c_geni a88000.i2c: i2c error :-107\n[    0.964544] i2c_geni a88000.i2c: i2c error :-107\n[    0.964630] i2c_geni a88000.i2c: i2c error :-107\n[    0.964634] I2C PMIC: i2c_pmic_read: i2c_pmic_read failed for 3 retries, rc = -107\n[    0.964636] I2C PMIC: i2c_pmic_determine_initial_status: Couldn't read irq data rc=-107\n[    0.964639] I2C PMIC: i2c_pmic_probe: Couldn't determine initial status rc=-107\n[    0.964710] i2c_pmic: probe of 0-0008 failed with error -107\n[    0.965056] i2c_geni a88000.i2c: i2c error :-107\n[    0.965144] i2c_geni a88000.i2c: i2c error :-107\n[    0.965231] i2c_geni a88000.i2c: i2c error :-107\n[    0.965317] i2c_geni a88000.i2c: i2c error :-107\n[    0.965320] I2C PMIC: i2c_pmic_read: i2c_pmic_read failed for 3 retries, rc = -107\n[    0.965322] I2C PMIC: i2c_pmic_determine_initial_status: Couldn't read irq data rc=-107\n[    0.965323] I2C PMIC: i2c_pmic_probe: Couldn't determine initial status rc=-107\n[    0.965375] i2c_pmic: probe of 0-000c failed with error -107\n[    0.965703] 3-0020 supply vdd_2v8 not found, using dummy regulator\n[    0.965734] 19651 T0 use TX,RX=[16],[33]\n[    1.050106] [OPPO_CHG][oppo_short_ic_driver_probe]oppo_short_ic success\n[    1.050553] [OPPO_CHG][oppo_vooc_mcu_hwid_check]chip->vooc_gpio.vooc_mcu_id_gpio not specified, enable stm8s\n[    1.050561] [OPPO_CHG][oppo_vooc_fw_type_dt]oppo_vooc_fw_type_dt batt_type_4400 is 1,vooc_fw_type = 0x8\n[    1.050565] [OPPO_CHG][oppo_vooc_fw_type_dt] vooc_fw_upate:1\n[    1.050570] [OPPO_CHG][oppo_vooc_fw_type_dt]qcom,vooc-low-temp is 120\n[    1.050576] [OPPO_CHG][oppo_vooc_fw_type_dt]qcom,vooc_multistep_adjust_current_supportis 0\n[    1.050608] [OPPO_CHG][oppo_vooc_gpio_dt_init]chip->vooc_gpio.switch1_gpio =116\n[    1.050612] [OPPO_CHG][oppo_vooc_gpio_dt_init]chip->vooc_gpio.switch1_ctr1_gpio not specified\n[    1.050616] [OPPO_CHG][oppo_vooc_gpio_dt_init]chip->vooc_gpio.switch2_gpio not specified\n[    1.050626] [OPPO_CHG][oppo_vooc_gpio_dt_init]chip->vooc_gpio.reset_gpio =91\n[    1.050632] [OPPO_CHG][oppo_vooc_gpio_dt_init]chip->vooc_gpio.clock_gpio =124\n[    1.050639] [OPPO_CHG][oppo_vooc_gpio_dt_init]chip->vooc_gpio.data_gpio =123\n[    1.050921] [OPPO_CHG][opchg_bq27541_gpio_pinctrl_init]: 110 Failed to get the charging_switch1_ctr1_active handle\n[    1.050925] [OPPO_CHG][opchg_bq27541_gpio_pinctrl_init]: 117 Failed to get the charging_switch1_ctr1_sleep handle\n[    1.050936] [OPPO_CHG][oppo_vooc_gpio_dt_init] switch1_gpio = 116,switch2_gpio = -2, reset_gpio = 91,\t\t\tclock_gpio = 124, data_gpio = 123, data_irq = 270\n[    1.050951] [OPPO_CHG][oppo_is_rf_ftm_mode] boot_mode:0, return false\n[    1.051181] [OPPO_CHG][oppo_is_rf_ftm_mode] boot_mode:0, return false\n[    1.051184] [OPPO_CHG][oppo_vooc_mcu_hwid_check]mcu_hwid_type[0]\n[    1.051199] [OPPO_CHG][init_vooc_proc] version:0, fw_path:fastchg/19651/oppo_vooc_fw.bin\n[    1.051209] [OPPO_CHG][stm8s_driver_probe]stm8s probe success,\t\tfw_type = 0x8, \t\tfw_version = 0x16, \t\tmcu_version = 0x0\n[    1.052576] msm_vidc:  err: Failed to get platform resources\n[    1.052578] msm_vidc:  err: Failed to init core\n[    1.052584] msm_vidc_v4l2: probe of aa00000.qcom,vidc0 failed with error -22\n[    1.057305] iommu: Adding device aa00000.qcom,vidc1:non_secure_cb to group 21\n[    1.057776] iommu: Adding device aa00000.qcom,vidc1:secure_bitstream_cb to group 22\n[    1.059199] iommu: Adding device aa00000.qcom,vidc1:secure_pixel_cb to group 23\n[    1.059981] iommu: Adding device aa00000.qcom,vidc1:secure_non_pixel_cb to group 24\n[    1.062821] register_client_adhoc:find path.src 1 dest 590\n[    1.063165] register_client_adhoc:Client handle 25 sde_reg\n[    1.063248] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 25\n[    1.063429] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 26\n[    1.063638] register_client_adhoc:find path.src 25 dest 512\n[    1.063843] register_client_adhoc:Client handle 26 mdss_rotator\n[    1.063854] register_client_adhoc:find path.src 1 dest 590\n[    1.064034] register_client_adhoc:Client handle 27 mdss_rot_reg\n[    1.064525] No change in context(0==0), skip\n[    1.066189] sde_rotator_evtlog_create_debugfs: evtlog_status: enable:1, panic:1, dump:2\n[    1.067021] sde_rotator ae00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    1.069038] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    1.069069] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    1.070689] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 27\n[    1.071077] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 28\n[    1.071241] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 29\n[    1.071364] platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node camera_region@8b300000\n[    1.071548] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 30\n[    1.071717] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 31\n[    1.071991] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_fd to group 32\n[    1.072796] input: touchpanel as /devices/virtual/input/input1\n[    1.072905] input: touchpanel_kpd as /devices/virtual/input/input2\n[    1.073000] input: touchpanel_ps as /devices/virtual/input/input3\n[    1.073045] [TP]vendor:SAMSUNG fw:tp/19651/FW_S3706_SAMSUNG.img limit:tp/19651/LIMIT_S3706_SAMSUNG.img\n[    1.075594] register_client_adhoc:find path.src 1 dest 589\n[    1.075925] register_client_adhoc:Client handle 28 cam_ahb\n[    1.076063] register_client_adhoc:find path.src 136 dest 512\n[    1.076293] register_client_adhoc:Client handle 29 cam_hf_1_mnoc\n[    1.076502] register_client_adhoc:find path.src 146 dest 778\n[    1.076568] register_client_adhoc:Client handle 30 cam_hf_1_camnoc\n[    1.076693] register_client_adhoc:find path.src 145 dest 512\n[    1.076897] register_client_adhoc:Client handle 31 cam_hf_2_mnoc\n[    1.077102] register_client_adhoc:find path.src 147 dest 778\n[    1.077171] register_client_adhoc:Client handle 32 cam_hf_2_camnoc\n[    1.077285] register_client_adhoc:find path.src 137 dest 512\n[    1.077502] register_client_adhoc:Client handle 33 cam_sf_1_mnoc\n[    1.077703] register_client_adhoc:find path.src 148 dest 778\n[    1.077768] register_client_adhoc:Client handle 34 cam_sf_1_camnoc\n[    1.088718] CHRDEV \"rmi\" major number 232 goes below the dynamic allocation range\n[    1.093827] CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 256 No clk named ife_dsp_clk found. Dev acc4000.qcom,vfe-lite\n[    1.093831] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 107 option clk get failed\n[    1.097088] CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.097098] CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.097106] CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.097114] CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.097123] CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.097132] CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.097140] CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.097149] CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.097232] CAM_INFO: CAM-ISP: cam_isp_dev_probe: 122 Camera ISP probe complete\n[    1.099585] CAM_INFO: CAM: cam_res_mgr_probe: 681 Disable shared gpio support.\n[    1.109309] CAM_ERR: CAM-ICP: cam_ipe_probe: 85 IPE1 hw idx = 1\n\n[    1.109324] cam-ipe: probe of ac91000.qcom,ipe1 failed with error -22\n[    1.112144] CAM_ERR: CAM-ICP: cam_icp_mgr_init_devs: 4178 no child device\n[    1.112917] CAM_ERR: CAM-SMMU: cam_smmu_create_add_handle_in_table: 612 Error: cam-secure already got handle 0x5b720\n[    1.116280] CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 119 Camera JPEG probe complete\n[    1.126520] [OPPO_CHG][oppo_chg_parse_svooc_dt]oppo_parse_svooc_dt, chip->vbatt_num = 1,chip->vooc_project = 1.\n[    1.126527] [OPPO_CHG][smb2_probe]gauge chip null, will do after bettery init.\n[    1.132071] bq27541-battery 0-0055: DEVICE_TYPE is 0x421, FIRMWARE_VERSION is 0x110\n[    1.132075] bq27411_modify_soc_smooth_parameter begin\n[    1.206805] [OPPO_CHG][unseal]bq27541 : i=1\n[    1.263115] bq27411_enable_config_mode success i = 1, config_mode = 0x119, enable = 1\n[    1.285622] bq27411 write blk_id = 0x6b, addr = 0x42, old_val = 0x71, new_val = 0x11, old_csum = 0xfd, new_csum = 0x5d\n[    1.302788] bq27411 write blk_id = 0x40, addr = 0x42, old_val = 0xf, new_val = 0x7, old_csum = 0xf1, new_csum = 0xf9\n[    1.767236] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[1, 1], pwr[FAST MODE, FAST MODE], rate = 2\n[    1.768857] scsi 0:0:0:49488: Well-known LUN    SKhynix  H9HQ53AECMMDAR   0004 PQ: 0 ANSI: 6\n[    1.770824] scsi 0:0:0:49456: Well-known LUN    SKhynix  H9HQ53AECMMDAR   0004 PQ: 0 ANSI: 6\n[    1.772632] scsi 0:0:0:49476: Well-known LUN    SKhynix  H9HQ53AECMMDAR   0004 PQ: 0 ANSI: 6\n[    1.775227] scsi 0:0:0:0: Direct-Access     SKhynix  H9HQ53AECMMDAR   0004 PQ: 0 ANSI: 6\n[    1.777578] scsi 0:0:0:1: Direct-Access     SKhynix  H9HQ53AECMMDAR   0004 PQ: 0 ANSI: 6\n[    1.779822] scsi 0:0:0:2: Direct-Access     SKhynix  H9HQ53AECMMDAR   0004 PQ: 0 ANSI: 6\n[    1.782121] scsi 0:0:0:3: Direct-Access     SKhynix  H9HQ53AECMMDAR   0004 PQ: 0 ANSI: 6\n[    1.784367] scsi 0:0:0:4: Direct-Access     SKhynix  H9HQ53AECMMDAR   0004 PQ: 0 ANSI: 6\n[    1.786616] scsi 0:0:0:5: Direct-Access     SKhynix  H9HQ53AECMMDAR   0004 PQ: 0 ANSI: 6\n[    1.790369] sd 0:0:0:0: [sda] Write Protect is off\n[    1.790376] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.790461] sd 0:0:0:2: [sdc] Write Protect is off\n[    1.790466] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.790513] sd 0:0:0:1: [sdb] Write Protect is off\n[    1.790517] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.790641] sd 0:0:0:3: [sdd] Write Protect is off\n[    1.790646] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.790837] sd 0:0:0:0: [sda] Optimal transfer size 524288 bytes\n[    1.791253] sd 0:0:0:2: [sdc] Optimal transfer size 524288 bytes\n[    1.791388] sd 0:0:0:1: [sdb] Optimal transfer size 524288 bytes\n[    1.791543] sd 0:0:0:3: [sdd] Optimal transfer size 524288 bytes\n[    1.794653]  sdc:\n[    1.795009]  sdd: sdd1 sdd2 sdd3\n[    1.795395]  sdb: sdb1 sdb2\n[    1.795730]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14\n[    1.798558] sd 0:0:0:4: [sde] Write Protect is off\n[    1.798564] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    1.798858] sd 0:0:0:5: [sdf] Write Protect is off\n[    1.798862] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    1.798892] sd 0:0:0:4: [sde] Optimal transfer size 524288 bytes\n[    1.799278] sd 0:0:0:5: [sdf] Optimal transfer size 524288 bytes\n[    1.801964]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6 sdf7 sdf8 sdf9 sdf10 sdf11 sdf12\n[    1.803039]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33\n[    2.270687] bq27411_enable_config_mode success i = 33, config_mode = 0x109, enable = 0\n[    2.282774] bq27411_modify_soc_smooth_parameter end\n[    2.282778] [OPPO_CHG][bq27541_driver_probe] success\n[    2.299949] 17d41000.qcom,cpucc:qcom,limits-dcvs@0 supply isens_vref not found, using dummy regulator\n[    2.300085] msm_lmh_dcvs:limits_isens_vref_ldo_init Regulator:isens_vref settings read error:-22\n[    2.306220] 17d41000.qcom,cpucc:qcom,limits-dcvs@1 supply isens_vref not found, using dummy regulator\n[    2.306255] msm_lmh_dcvs:limits_isens_vref_ldo_init Regulator:isens_vref settings read error:-22\n[    2.319446] device-mapper: uevent: version 1.0.3\n[    2.319563] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com\n[    2.320705] device-mapper: req-crypt: dm-req-crypt successfully initalized.\n\n[    2.321022] bt_power_probe: Failed to populate device tree info\n[    2.321034] bt_power: probe of soc:bt_wcn3990 failed with error -22\n[    2.321351] CHRDEV \"bt\" major number 231 goes below the dynamic allocation range\n[    2.321992] sdhci: Secure Digital Host Controller Interface driver\n[    2.321994] sdhci: Copyright(c) Pierre Ossman\n[    2.321995] sdhci-pltfm: SDHCI platform and OF driver helper\n[    2.325546] CHRDEV \"hidraw\" major number 230 goes below the dynamic allocation range\n[    2.325588] hidraw: raw HID events driver (C) Jiri Kosina\n[    2.325936] usbcore: registered new interface driver usbhid\n[    2.325938] usbhid: USB HID core driver\n[    2.326016] ashmem: initialized\n[    2.326030] CHRDEV \"qcwlanstate\" major number 229 goes below the dynamic allocation range\n[    2.326076] wlan_hdd_state wlan major(229) initialized\n[    2.326081] ipa_ut ipa_ut_module_init:1046 Loading IPA test module...\n[    2.326520] qpnp_coincell_charger_show_state: enabled=Y, voltage=3200 mV, resistance=2100 ohm\n[    2.328110] CHRDEV \"seemplog\" major number 228 goes below the dynamic allocation range\n[    2.328367] seemp: seemp_logk_init: SCM call failed with ret val = 0 -3 0\n[    2.328740] qcom_ice_get_pdevice: found ice device ffffffed6c5cbc00\n[    2.328742] qcom_ice_get_pdevice: matching platform device ffffffed72a15c00\n[    2.331331] sdhci_msm 8804000.sdhci: failed opening nvmem cell err : -2\n[    2.331338] sdhci_msm 8804000.sdhci: sdhci_msm_probe: ICE device is not enabled\n[    2.331635] sdhci_msm 8804000.sdhci: Failed to get dll hsr settings from dt\n[    2.331866] register_client_adhoc:find path.src 81 dest 512\n[    2.332333] register_client_adhoc:find path.src 1 dest 608\n[    2.332549] register_client_adhoc:Client handle 35 sdhc2\n[    2.344630] mmc0: SDHCI controller on 8804000.sdhci [8804000.sdhci] using 64-bit ADMA in legacy mode\n[    2.377369] bimc-bwmon 1436400.qcom,cpu-bwmon: BW HWmon governor registered.\n[    2.378442] arm-memlat-mon soc:qcom,cpu0-memlat-mon: Memory Latency governor registered.\n[    2.378477] arm-memlat-mon soc:qcom,cpu6-memlat-mon: Memory Latency governor registered.\n[    2.378511] arm-memlat-mon soc:qcom,cpu0-l3lat-mon: Memory Latency governor registered.\n[    2.378540] arm-memlat-mon soc:qcom,cpu6-l3lat-mon: Memory Latency governor registered.\n[    2.378575] arm-memlat-mon soc:qcom,devfreq-compute0: Compute governor registered.\n[    2.378600] arm-memlat-mon soc:qcom,devfreq-compute6: Compute governor registered.\n[    2.379564] register_client_adhoc:find path.src 1 dest 512\n[    2.379872] register_client_adhoc:Client handle 36 soc:qcom,cpubw\n[    2.381274] register_client_adhoc:find path.src 1 dest 512\n[    2.381469] register_client_adhoc:Client handle 37 soc:qcom,memlat-cpu0\n[    2.381745] register_client_adhoc:find path.src 1 dest 512\n[    2.381949] register_client_adhoc:Client handle 38 soc:qcom,memlat-cpu6\n[    2.383209] register_client_adhoc:find path.src 139 dest 627\n[    2.383361] register_client_adhoc:Client handle 39 soc:qcom,snoc_cnoc_keepalive\n[    2.384582] register_client_adhoc:find path.src 1 dest 512\n[    2.384769] register_client_adhoc:Client handle 40 soc:qcom,mincpubw\n[    2.385035] register_client_adhoc:find path.src 1 dest 512\n[    2.385221] register_client_adhoc:Client handle 41 soc:qcom,mincpu0bw\n[    2.385485] register_client_adhoc:find path.src 1 dest 512\n[    2.385688] register_client_adhoc:Client handle 42 soc:qcom,mincpu6bw\n[    2.387054] register_client_adhoc:find path.src 26 dest 512\n[    2.387179] register_client_adhoc:Client handle 43 soc:qcom,gpubw\n[    2.389190] coresight-tmc 6048000.tmc: failed to get flush cti\n[    2.389193] coresight-tmc 6048000.tmc: failed to get reset cti\n[    2.389198] coresight-tmc 6048000.tmc: failed to get csr, defer probe\n[    2.389341] coresight-tmc 6b09000.tmc: invalid cti data\n[    2.389344] coresight-tmc 6b09000.tmc: failed to get csr, defer probe\n[    2.389460] coresight-tmc 6047000.tmc: failed to get flush cti\n[    2.389463] coresight-tmc 6047000.tmc: failed to get reset cti\n[    2.389466] coresight-tmc 6047000.tmc: failed to get csr, defer probe\n[    2.391835] coresight-replicator-qcom 6046000.replicator: REPLICATOR 1.0 initialized\n[    2.391971] coresight-replicator-qcom 6b0a000.replicator: REPLICATOR 1.0 initialized\n[    2.392140] coresight-stm 6002000.stm: stm_register_device failed, probing deffered\n[    2.397387] OF: graph: no port node found in /soc/cti@69e1000\n[    2.397475] OF: graph: no port node found in /soc/cti@69e4000\n[    2.397552] OF: graph: no port node found in /soc/cti@69e5000\n[    2.397630] OF: graph: no port node found in /soc/cti@6c09000\n[    2.397711] OF: graph: no port node found in /soc/cti@6c0a000\n[    2.397793] OF: graph: no port node found in /soc/cti@6c29000\n[    2.397872] OF: graph: no port node found in /soc/cti@6c2a000\n[    2.397955] OF: graph: no port node found in /soc/cti@683b000\n[    2.398032] OF: graph: no port node found in /soc/cti@6b04000\n[    2.398112] OF: graph: no port node found in /soc/cti@6b05000\n[    2.398197] OF: graph: no port node found in /soc/cti@6b06000\n[    2.398280] OF: graph: no port node found in /soc/cti@6b07000\n[    2.398360] OF: graph: no port node found in /soc/cti@6b21000\n[    2.398438] OF: graph: no port node found in /soc/cti@6c13000\n[    2.398519] OF: graph: no port node found in /soc/cti@6c20000\n[    2.398601] OF: graph: no port node found in /soc/cti@78e0000\n[    2.398682] OF: graph: no port node found in /soc/cti@78f0000\n[    2.398765] OF: graph: no port node found in /soc/cti@7900000\n[    2.398845] OF: graph: no port node found in /soc/cti@6010000\n[    2.398925] OF: graph: no port node found in /soc/cti@6011000\n[    2.399008] OF: graph: no port node found in /soc/cti@6012000\n[    2.399089] OF: graph: no port node found in /soc/cti@6013000\n[    2.399172] OF: graph: no port node found in /soc/cti@6014000\n[    2.399250] OF: graph: no port node found in /soc/cti@6015000\n[    2.399331] OF: graph: no port node found in /soc/cti@6016000\n[    2.399412] OF: graph: no port node found in /soc/cti@6017000\n[    2.399495] OF: graph: no port node found in /soc/cti@6018000\n[    2.399576] OF: graph: no port node found in /soc/cti@6019000\n[    2.399654] OF: graph: no port node found in /soc/cti@601a000\n[    2.399741] OF: graph: no port node found in /soc/cti@601b000\n[    2.399822] OF: graph: no port node found in /soc/cti@601c000\n[    2.399905] OF: graph: no port node found in /soc/cti@601d000\n[    2.399983] OF: graph: no port node found in /soc/cti@601e000\n[    2.400352] OF: graph: no port node found in /soc/cti@601f000\n[    2.400454] OF: graph: no port node found in /soc/cti@7020000\n[    2.400721] OF: graph: no port node found in /soc/cti@7120000\n[    2.400832] OF: graph: no port node found in /soc/cti@7220000\n[    2.400942] OF: graph: no port node found in /soc/cti@7320000\n[    2.401205] OF: graph: no port node found in /soc/cti@7420000\n[    2.401324] OF: graph: no port node found in /soc/cti@7520000\n[    2.401590] OF: graph: no port node found in /soc/cti@7620000\n[    2.401710] OF: graph: no port node found in /soc/cti@7720000\n[    2.402109] OF: graph: no port node found in /soc/csr@6001000\n[    2.402169] coresight-csr 6001000.csr: CSR initialized: coresight-csr\n[    2.403114] OF: graph: no port node found in /soc/hwevent@0x014066f0\n[    2.403170] coresight-hwevent 14066f0.hwevent: Hardware Event driver initialized\n[    2.403805] coresight-dummy soc:tpdm@6b16000: Dummy device initialized\n[    2.404787] usbcore: registered new interface driver snd-usb-audio\n[    2.410345] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    2.410803] tfa98xx_i2c_init(): TFA98XX driver version 2.10.1-a\n[    2.411174] tfa98xx_i2c_probe(): tfa98xx_i2c_probe\n[    2.411442] tfa98xx 2-0035: No reset GPIO provided, will not HW reset device\n[    2.411691] TFA9890 detected\n[    2.411709] tfa98xx 2-0035: Skipping IRQ registration\n[    2.411826] tfa98xx_i2c_probe(): ftm_mode=0\n[    2.411835] tfa98xx_i2c_probe(): tfa98xx_i2c_probe Probe completed successfully!\n[    2.412425] msm-cdc-pinctrl soc:msm_cdc_pinctrl_usbc_audio_en1: msm_cdc_pinctrl_probe: Cannot get cdc gpio pinctrl:-19\n[    2.412443] msm-cdc-pinctrl soc:cdc_pdm_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/cdc_pdm_clk_active, deferring probe\n[    2.412456] msm-cdc-pinctrl soc:cdc_comp_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/cdc_pdm_rx0_comp_active, deferring probe\n[    2.412469] msm-cdc-pinctrl soc:cdc_dmic_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic12_gpios_active, deferring probe\n[    2.412481] msm-cdc-pinctrl soc:sec_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/sec_mi2s_bclk/sec_mi2s_bclk_active, deferring probe\n[    2.426451] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx group_id: 0x9100\n[    2.426699] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0 dev_id: 0x9000\n[    2.426710] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.426736] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx group_id: 0x9101\n[    2.426996] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0 dev_id: 0x9001\n[    2.427004] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.427029] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx group_id: 0x9110\n[    2.427196] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0 dev_id: 0x9010\n[    2.427203] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.427227] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx group_id: 0x9111\n[    2.427388] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0 dev_id: 0x9011\n[    2.427396] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.427419] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx group_id: 0x9120\n[    2.427585] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0 dev_id: 0x9020\n[    2.427593] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.427626] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx group_id: 0x9121\n[    2.427787] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0 dev_id: 0x9021\n[    2.427794] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.427819] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx group_id: 0x9130\n[    2.427983] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0 dev_id: 0x9030\n[    2.427990] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.428053] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx group_id: 0x9131\n[    2.428215] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0 dev_id: 0x9031\n[    2.428223] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.428246] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx group_id: 0x9140\n[    2.428412] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0 dev_id: 0x9040\n[    2.428419] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.428443] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx group_id: 0x9141\n[    2.428609] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0 dev_id: 0x9041\n[    2.428616] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    2.433664] msm_asoc_machine_probe: *** Enter\n[    2.433683] msm_int_populate_sndcard_dailinks: custom headphone product akm\n[    2.433703] msm_int_populate_sndcard_dailinks: custom speaker product nxp\n[    2.433709] msm_int_populate_sndcard_dailinks: use nxp dailink replace\n[    2.433728] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    2.434556] sdm660-asoc-snd soc:sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    2.437000] CHRDEV \"avtimer\" major number 227 goes below the dynamic allocation range\n[    2.438953] audio_notifer_reg_service: service SSR_MODEM is in use\n[    2.440968] GACT probability NOT on\n[    2.440981] Mirror/redirect action on\n[    2.440992] u32 classifier\n[    2.440993]     Actions configured\n[    2.441000] Netfilter messages via NETLINK v0.30.\n[    2.441246] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)\n[    2.441365] ctnetlink v0.93: registering with nfnetlink.\n[    2.441728] xt_time: kernel timezone is -0000\n[    2.441815] wireguard: WireGuard 1.0.20210606 loaded. See www.wireguard.com for information.\n[    2.441817] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    2.441922] gre: GRE over IPv4 demultiplexor driver\n[    2.441924] IPv4 over IPsec tunneling driver\n[    2.442463] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    2.442657] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    2.442690] Initializing XFRM netlink socket\n[    2.442704] IPsec XFRM device driver\n[    2.442853] NET: Registered protocol family 10\n[    2.444696] mip6: Mobile IPv6\n[    2.444705] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    2.445056] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    2.445509] NET: Registered protocol family 17\n[    2.445519] NET: Registered protocol family 15\n[    2.445535] Ebtables v2.0 registered\n[    2.445650] l2tp_core: L2TP core driver, V2.0\n[    2.445655] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    2.445657] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    2.445666] l2tp_netlink: L2TP netlink interface\n[    2.445687] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    2.445688] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    2.445757] sctp: Hash tables configured (bind 256/256)\n[    2.447061] NET: Registered protocol family 27\n[    2.456564] minidump-id not found for adsp\n[    2.457913] subsys-pil-tz 62400000.qcom,lpass: for adsp segments only will be dumped.\n[    2.459572] minidump-id not found for cdsp\n[    2.459818] subsys-pil-tz 8300000.qcom,turing: for cdsp segments only will be dumped.\n[    2.460358] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    2.460587] platform 4080000.qcom,mss:qcom,mba-mem@0: assigned reserved memory node pil_mba_region@0x97200000\n[    2.461291] [OPPO_CHG][oppo_ccdetect_support_check]: g_oppo_chip not ready!\n[    2.465797] sps:BAM 0x000000000a704000 is registered.\n[    2.466255] register_client_adhoc:find path.src 61 dest 512\n[    2.466621] register_client_adhoc:find path.src 61 dest 676\n[    2.466807] register_client_adhoc:find path.src 1 dest 583\n[    2.466999] register_client_adhoc:Client handle 44 usb0\n[    2.467078] msm-dwc3 a600000.ssusb: Could not get usb power_supply\n[    2.467083] Invalid index Defaulting curr to 0\n[    2.467358] msm-dwc3 a600000.ssusb: Not attached\n[    2.469261] ipa_rm ipa_rm_delete_resource:155 resource does not exist\n[    2.469267] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    2.469274] ipa_rm ipa_rm_delete_resource:155 resource does not exist\n[    2.469278] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    2.473285] usbpd usbpd0: Could not get USB power_supply, deferring probe\n[    2.473405] qpnp-pdphy c440000.qcom,spmi:qcom,pm660@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    2.474171] [OPPO_CHG][oppo_chg_parse_svooc_dt]oppo_parse_svooc_dt, chip->vbatt_num = 1,chip->vooc_project = 1.\n[    2.474174] [OPPO_CHG][smb2_probe]SMB2_Probe Start----\n[    2.474975] PMI: smblib_get_charge_param: float voltage = 4372500 (0x76)\n[    2.474987] PMI: smblib_get_charge_param: usb input current limit = 500000 (0x14)\n[    2.474998] PMI: smblib_get_charge_param: dc input current limit = 500000 (0x14)\n[    2.475040] PMI: smblib_set_charge_param: usb otg current limit = 250000 (0x00)\n[    2.475125] PMI: smblib_set_charge_param: dc input current limit = 500000 (0x14)\n[    2.476557] [OPPO_CHG][oppo_chg_parse_custom_dt]chargerid_switch_gpio:44\n[    2.476681] [OPPO_CHG][oppo_chg_parse_custom_dt]dischg-gpio:1270\n[    2.476869] [OPPO_CHG][oppo_chg_parse_custom_dt]ship-gpio:21\n[    2.476877] [OPPO_CHG][oppo_chg_parse_custom_dt]Couldn't read qcom,shortc-gpio rc = 0, qcom,shortc-gpio:-2\n[    2.476883] [OPPO_CHG][oppo_chg_parse_custom_dt]Couldn't read qcom,ccdetect-gpio rc=0, qcom,ccdetect-gpio:-2\n[    2.476914] [OPPO_CHG][oppo_chg_parse_charger_dt] CONFIG_HIGH_TEMP_VERSION disabled\n[    2.477106] [OPPO_CHG][oppo_chg_parse_charger_dt]vbatt_power_off = 3300, \t\t\tvbatt_soc_1 = 3410, \t\t\tnormal_vterm_hw_inc = 18, \t\t\t, \t\t\tnon_normal_vterm_hw_inc = 18, \t\t\tvbatt_pdqc_to_5v_thr = -22\n[    2.477180] [OPPO_CHG][oppo_chg_parse_charger_dt]ff1_normal_fastchg_ma = 839, \t\t\tffc2_temp_warm_decidegc = 350, \t\t\tffc2_temp_high_decidegc = 400, \t\t\tffc2_normal_fastchg_ma = 839, \t\t\tchip->limits.ffc2_warm_fastchg_ma = 851, \t\t\tffc2_exit_step_ma = 139, \t\t\tffc_normal_vfloat_sw_limit = 4475, \t\t\tffc2_normal_vfloat_sw_limit = 4475, \t\t\tffc1_temp_normal_vfloat_mv = 4550, \t\t\tffc2_temp_normal_vfloat_mv = 4550, \t\t\tffc_normal_vfloat_over_sw_limit = 4550 \t\t\tffc2_temp_low_decidegc = 120 \t\t\tlimits.ff1_exit_step_ma = 139 \t\t\tlimits.ff1_warm_exit_step_ma = 101 \t\t\tpd_input_current_charger_ma = 3000 \t\t\tqc_input_current_charger_ma = 2000\n[    2.477200] [OPPO_CHG][oppo_chg_parse_charger_dt]default_iterm_ma = 210, \t\t\tdefault_temp_normal_fastchg_current_ma = 2200, \t\t\tdefault_normal_vfloat_sw_limit = 4385, \t\t\tdefault_temp_normal_vfloat_mv = 4435, \t\t\tdefault_normal_vfloat_over_sw_limit = 4445\n[    2.477219] [OPPO_CHG][oppo_chg_parse_charger_dt]default_temp_little_cool_fastchg_current_ma = 2200, \t\t\tdefault_little_cool_vfloat_sw_limit = 4385, \t\t\tdefault_temp_little_cool_vfloat_mv = 4435, \t\t\tdefault_little_cool_vfloat_over_sw_limit = 4445\n"
  },
  {
    "path": "results/sdm712/RMX1921/post_bench_interrupts.txt",
    "content": "           CPU0       \n  4:      12982   PDC-GIC  19 Level     arch_timer\n  6:     180261   PDC-GIC  38 Level     arch_mem_timer\n  7:          0   PDC-GIC 483 Edge      smp2p\n  8:          0   PDC-GIC 204 Edge      smp2p\n  9:          0   PDC-GIC 608 Edge      smp2p\n 11:          4   PDC-GIC 637 Level     i2c_geni\n 12:          0   PDC-GIC 633 Level     spi_geni\n 15:       1743   PDC-GIC 386 Level     i2c_geni\n 16:      16158   PDC-GIC 387 Level     i2c_geni\n 17:          0   PDC-GIC 302 Edge      tmc-etr\n 18:          0   PDC-GIC 206 Level     msm_vidc\n 19:          0   PDC-GIC 115 Edge      msm_drm\n 20:          0   PDC-GIC 304 Level     sps\n 21:          0   PDC-GIC 538 Level     tsens-upper-lower\n 22:          0   PDC-GIC 540 Level     tsens-critical\n 23:          0   PDC-GIC 539 Level     tsens-upper-lower\n 24:          0   PDC-GIC 541 Level     tsens-critical\n 25:          0   PDC-GIC 323 Level     ngd_slim_irq\n 27:          0   PDC-GIC  32 Edge      apps_wdog_bark\n 59:         11   PDC-GIC 421 Edge      qcom,qmp-aop\n 60:          0   PDC-GIC 481 Edge      qcom,glink-smem-native-xprt-modem\n 61:          0   PDC-GIC 202 Edge      qcom,glink-smem-native-xprt-adsp\n 62:          0   PDC-GIC 606 Edge      qcom,glink-smem-native-xprt-cdsp\n 64:          0   PDC-GIC 524 Level     eud_irq\n 66:      14706   PDC-GIC  37 Level     apps_rsc\n 67:          0   PDC-GIC 161 Level     display_rsc\n 69:          0  pmic_arb 8388615 Edge      qpnp_kpdpwr_status\n 70:          0  pmic_arb 8454151 Edge      qpnp_resin_status\n 73:          0  pmic_arb 37748761 Edge      pm660_tz\n 81:         21  pmic_arb 51380252 Edge      qpnp_vadc_interrupt\n 82:          0  pmic_arb 24117268 Edge      sig-tx\n 83:          0  pmic_arb 24182804 Edge      sig-rx\n 84:          0  pmic_arb 24248340 Edge      msg-tx\n 85:          0  pmic_arb 24313876 Edge      msg-rx\n 86:          0  pmic_arb 24379412 Edge      msg-tx-failed\n 87:          0  pmic_arb 24444948 Edge      msg-tx-discarded\n 88:          0  pmic_arb 24510484 Edge      msg-rx-discarded\n 89:          0  pmic_arb 54525982 Edge      qpnp_adc_tm_interrupt\n 90:          0  pmic_arb 69206054 Edge      bcl-high-ibat\n 92:          0  pmic_arb 69337126 Edge      bcl-low-vbat\n 95:          0  pmic_arb 469762164 Edge      haptics_sc_irq\n 96:          0  pmic_arb 469827700 Edge      haptics_play_irq\n 97:          0  pmic_arb 574619778 Edge      pm660l_tz\n 99:          0  pmic_arb 741343375 Level     pn544\n105:          0  pmic_arb 1026556093 Edge      qpnp_flash_led_fault_irq\n106:          0  pmic_arb 1026752701 Edge      qpnp_flash_led_all_ramp_down_done_irq\n107:          0  pmic_arb 1026818237 Edge      qpnp_flash_led_all_ramp_up_done_irq\n122:        355   PDC-GIC 297 Edge      1d84000.ufshc\n123:          0   PDC-GIC 194 Edge      adsp\n126:          0   PDC-GIC 298 Edge      modem\n127:          0   PDC-GIC 610 Edge      cdsp\n130:         52   PDC-GIC 236 Edge      mmc0\n131:          8   PDC-GIC 254 Edge      8804000.sdhci\n157:          0  msmgpio-dc  10 Edge      TE_GPIO\n171:          0  msmgpio-dc  24 Edge      volume_up\n239:          0  msmgpio-dc  92 Edge      volume_down\n243:          0  msmgpio-dc  96 Edge      8804000.sdhci cd\n270:          0  msmgpio-dc 123 Edge      mcu_data\n272:        153  msmgpio-dc 125 Level     touchpanel\n374:          0   PDC-GIC 261 Level     arm-smmu global fault\n375:          0   PDC-GIC 263 Level     arm-smmu global fault\n376:          0   PDC-GIC 396 Level     arm-smmu-context-fault\n377:          0   PDC-GIC 397 Level     arm-smmu-context-fault\n378:          0   PDC-GIC 398 Level     arm-smmu-context-fault\n384:          0   PDC-GIC  97 Level     arm-smmu global fault\n387:          0   PDC-GIC 130 Level     arm-smmu-context-fault\n388:          0   PDC-GIC 131 Level     arm-smmu-context-fault\n389:          0   PDC-GIC 132 Level     arm-smmu-context-fault\n390:          0   PDC-GIC 133 Level     arm-smmu-context-fault\n391:          0   PDC-GIC 134 Level     arm-smmu-context-fault\n392:          0   PDC-GIC 135 Level     arm-smmu-context-fault\n393:          0   PDC-GIC 136 Level     arm-smmu-context-fault\n394:          0   PDC-GIC 137 Level     arm-smmu-context-fault\n395:          0   PDC-GIC 138 Level     arm-smmu-context-fault\n396:          0   PDC-GIC 139 Level     arm-smmu-context-fault\n397:          0   PDC-GIC 140 Level     arm-smmu-context-fault\n398:          0   PDC-GIC 141 Level     arm-smmu-context-fault\n399:          0   PDC-GIC 142 Level     arm-smmu-context-fault\n400:          0   PDC-GIC 143 Level     arm-smmu-context-fault\n401:          0   PDC-GIC 144 Level     arm-smmu-context-fault\n402:          0   PDC-GIC 145 Level     arm-smmu-context-fault\n403:          0   PDC-GIC 146 Level     arm-smmu-context-fault\n404:          0   PDC-GIC 147 Level     arm-smmu-context-fault\n405:          0   PDC-GIC 148 Level     arm-smmu-context-fault\n406:          0   PDC-GIC 149 Level     arm-smmu-context-fault\n407:          0   PDC-GIC 150 Level     arm-smmu-context-fault\n408:          0   PDC-GIC 213 Level     arm-smmu-context-fault\n409:          0   PDC-GIC 214 Level     arm-smmu-context-fault\n410:          0   PDC-GIC 215 Level     arm-smmu-context-fault\n411:          0   PDC-GIC 216 Level     arm-smmu-context-fault\n412:          0   PDC-GIC 217 Level     arm-smmu-context-fault\n413:          0   PDC-GIC 218 Level     arm-smmu-context-fault\n414:          0   PDC-GIC 219 Level     arm-smmu-context-fault\n415:          0   PDC-GIC 220 Level     arm-smmu-context-fault\n416:          0   PDC-GIC 221 Level     arm-smmu-context-fault\n417:          0   PDC-GIC 222 Level     arm-smmu-context-fault\n418:          0   PDC-GIC 223 Level     arm-smmu-context-fault\n419:          0   PDC-GIC 224 Level     arm-smmu-context-fault\n449:          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n450:          0   PDC-GIC 162 Edge      pwr_event_irq\n451:          0   PDC-GIC 518 Level     ss_phy_irq\n452:          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n453:          0   PDC-GIC 332 Level     kgsl-3d0\n454:          0   PDC-GIC 336 Level     HFI\n455:          0   PDC-GIC 337 Level     GMU\n456:          0   PDC-GIC 509 Edge      csiphy\n457:          0   PDC-GIC 510 Edge      csiphy\n458:          0   PDC-GIC 511 Edge      csiphy\n459:          0   PDC-GIC 492 Edge      cci\n460:          0   PDC-GIC 491 Edge      cpas_camnoc\n461:          1   PDC-GIC 493 Edge      cpas-cdm\n462:          0   PDC-GIC 496 Edge      csid\n463:          2   PDC-GIC 497 Edge      ife\n464:          0   PDC-GIC 498 Edge      csid\n465:          2   PDC-GIC 499 Edge      ife\n466:          0   PDC-GIC 500 Edge      csid-lite\n467:          2   PDC-GIC 501 Edge      ife-lite\n468:          0   PDC-GIC 495 Edge      a5\n469:          0   PDC-GIC 506 Edge      jpeg\n470:          0   PDC-GIC 507 Edge      jpegdma\n471:          2   PDC-GIC 494 Edge      fd\n472:          1   PDC-GIC 508 Edge      lrme\n473:          0   PDC-GIC  64 Level     limits_sensor-00\n474:          0   PDC-GIC  65 Level     limits_sensor-01\n603:          0       sde   4 Edge      dsi_ctrl\n604:          0  pmic_arb 101777466 Edge      qpnp_rtc_alarm\n605:          0       sde   2 Edge      sde_rotator_r3\n606:          0  smp2p_gpio   0 Edge      adsp\n607:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n608:          0  smp2p_gpio   2 Edge      adsp\n609:          0  smp2p_gpio   3 Edge      adsp\n638:          0  smp2p_gpio   0 Edge      ipa_smp2p_clk_vote\n670:          0  smp2p_gpio   0 Edge      modem\n671:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n672:          0  smp2p_gpio   2 Edge      modem\n673:          0  smp2p_gpio   3 Edge      modem\n702:          0  smp2p_gpio   0 Edge      cdsp\n703:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n704:          0  smp2p_gpio   2 Edge      cdsp\n705:          0  smp2p_gpio   3 Edge      cdsp\n862:          0   PDC-GIC 165 Edge      dwc3\n864:          0  pmic_arb 16777229 Edge      chg-error\n865:          0  pmic_arb 16842765 Edge      chg-state-change\n869:          0  pmic_arb 17825806 Edge      otg-fail\n870:          0  pmic_arb 17891342 Edge      otg-overcurrent\n871:          0  pmic_arb 17956878 Edge      otg-oc-dis-sw-sts\n872:          0  pmic_arb 18022414 Edge      testmode-change-detect\n873:          0  pmic_arb 18874383 Edge      bat-temp\n874:          0  pmic_arb 18939919 Edge      bat-ocp\n875:          0  pmic_arb 19005455 Edge      bat-ov\n876:          0  pmic_arb 19070991 Edge      bat-low\n877:          0  pmic_arb 19136527 Edge      bat-therm-or-id-missing\n878:          0  pmic_arb 19202063 Edge      bat-terminal-missing\n879:          0  pmic_arb 19922960 Edge      usbin-collapse\n880:          0  pmic_arb 19988496 Edge      usbin-lt-3p6v\n881:          0  pmic_arb 20054032 Edge      usbin-uv\n882:          0  pmic_arb 20119568 Edge      usbin-ov\n883:          0  pmic_arb 20185104 Edge      usbin-plugin\n884:          0  pmic_arb 20250640 Edge      usbin-src-change\n885:          0  pmic_arb 20316176 Edge      usbin-icl-change\n886:          0  pmic_arb 20381712 Edge      type-c-change\n887:          0  pmic_arb 20971537 Edge      dcin-collapse\n888:          0  pmic_arb 21037073 Edge      dcin-lt-3p6v\n889:          0  pmic_arb 21102609 Edge      dcin-uv\n890:          0  pmic_arb 21168145 Edge      dcin-ov\n891:          0  pmic_arb 21233681 Edge      dcin-plugin\n892:          0  pmic_arb 21299217 Edge      div2-en-dg\n893:          0  pmic_arb 21364753 Edge      dcin-icl-change\n895:          0  pmic_arb 23134227 Edge      wdog-bark\n896:          0  pmic_arb 23199763 Edge      aicl-fail\n897:          0  pmic_arb 23265299 Edge      aicl-done\n898:          0  pmic_arb 23330835 Edge      high-duty-cycle\n899:          0  pmic_arb 23396371 Edge      input-current-limiting\n900:          0  pmic_arb 23461907 Edge      temperature-change\n901:          0  pmic_arb 23527443 Edge      switcher-power-ok\nIPI0:       160       Rescheduling interrupts\nIPI1:        11       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       Timer broadcast interrupts\nIPI4:     88382       IRQ work interrupts\nIPI5:         0       CPU wake-up interrupts\nIPI6:         0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm712/RMX1921/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  4:        680          2          2          2          2          2          2          1   PDC-GIC  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   PDC-GIC  38 Level     arch_mem_timer\n  7:          0          0          0          0          0          0          0          0   PDC-GIC 483 Edge      smp2p\n  8:          0          0          0          0          0          0          0          0   PDC-GIC 204 Edge      smp2p\n  9:          0          0          0          0          0          0          0          0   PDC-GIC 608 Edge      smp2p\n 11:          4          0          0          0          0          0          0          0   PDC-GIC 637 Level     i2c_geni\n 12:          0          0          0          0          0          0          0          0   PDC-GIC 633 Level     spi_geni\n 15:         91          0          0          0          0          0          0          0   PDC-GIC 386 Level     i2c_geni\n 16:        262          0          0          0          0          0          0          0   PDC-GIC 387 Level     i2c_geni\n 17:          0          0          0          0          0          0          0          0   PDC-GIC 302 Edge      tmc-etr\n 18:          0          0          0          0          0          0          0          0   PDC-GIC 206 Level     msm_vidc\n 19:          0          0          0          0          0          0          0          0   PDC-GIC 115 Edge      msm_drm\n 20:          0          0          0          0          0          0          0          0   PDC-GIC 304 Level     sps\n 21:          0          0          0          0          0          0          0          0   PDC-GIC 538 Level     tsens-upper-lower\n 22:          0          0          0          0          0          0          0          0   PDC-GIC 540 Level     tsens-critical\n 23:          0          0          0          0          0          0          0          0   PDC-GIC 539 Level     tsens-upper-lower\n 24:          0          0          0          0          0          0          0          0   PDC-GIC 541 Level     tsens-critical\n 25:          0          0          0          0          0          0          0          0   PDC-GIC 323 Level     ngd_slim_irq\n 27:          0          0          0          0          0          0          0          0   PDC-GIC  32 Edge      apps_wdog_bark\n 59:         11          0          0          0          0          0          0          0   PDC-GIC 421 Edge      qcom,qmp-aop\n 60:          0          0          0          0          0          0          0          0   PDC-GIC 481 Edge      qcom,glink-smem-native-xprt-modem\n 61:          0          0          0          0          0          0          0          0   PDC-GIC 202 Edge      qcom,glink-smem-native-xprt-adsp\n 62:          0          0          0          0          0          0          0          0   PDC-GIC 606 Edge      qcom,glink-smem-native-xprt-cdsp\n 64:          0          0          0          0          0          0          0          0   PDC-GIC 524 Level     eud_irq\n 66:        458          0          0          0          0          0          0          0   PDC-GIC  37 Level     apps_rsc\n 67:          0          0          0          0          0          0          0          0   PDC-GIC 161 Level     display_rsc\n 69:          0          0          0          0          0          0          0          0  pmic_arb 8388615 Edge      qpnp_kpdpwr_status\n 70:          0          0          0          0          0          0          0          0  pmic_arb 8454151 Edge      qpnp_resin_status\n 73:          0          0          0          0          0          0          0          0  pmic_arb 37748761 Edge      pm660_tz\n 81:         21          0          0          0          0          0          0          0  pmic_arb 51380252 Edge      qpnp_vadc_interrupt\n 82:          0          0          0          0          0          0          0          0  pmic_arb 24117268 Edge      sig-tx\n 83:          0          0          0          0          0          0          0          0  pmic_arb 24182804 Edge      sig-rx\n 84:          0          0          0          0          0          0          0          0  pmic_arb 24248340 Edge      msg-tx\n 85:          0          0          0          0          0          0          0          0  pmic_arb 24313876 Edge      msg-rx\n 86:          0          0          0          0          0          0          0          0  pmic_arb 24379412 Edge      msg-tx-failed\n 87:          0          0          0          0          0          0          0          0  pmic_arb 24444948 Edge      msg-tx-discarded\n 88:          0          0          0          0          0          0          0          0  pmic_arb 24510484 Edge      msg-rx-discarded\n 89:          0          0          0          0          0          0          0          0  pmic_arb 54525982 Edge      qpnp_adc_tm_interrupt\n 90:          0          0          0          0          0          0          0          0  pmic_arb 69206054 Edge      bcl-high-ibat\n 92:          0          0          0          0          0          0          0          0  pmic_arb 69337126 Edge      bcl-low-vbat\n 95:          0          0          0          0          0          0          0          0  pmic_arb 469762164 Edge      haptics_sc_irq\n 96:          0          0          0          0          0          0          0          0  pmic_arb 469827700 Edge      haptics_play_irq\n 97:          0          0          0          0          0          0          0          0  pmic_arb 574619778 Edge      pm660l_tz\n 99:          0          0          0          0          0          0          0          0  pmic_arb 741343375 Level     pn544\n105:          0          0          0          0          0          0          0          0  pmic_arb 1026556093 Edge      qpnp_flash_led_fault_irq\n106:          0          0          0          0          0          0          0          0  pmic_arb 1026752701 Edge      qpnp_flash_led_all_ramp_down_done_irq\n107:          0          0          0          0          0          0          0          0  pmic_arb 1026818237 Edge      qpnp_flash_led_all_ramp_up_done_irq\n122:        347          0          0          0          0          0          0          0   PDC-GIC 297 Edge      1d84000.ufshc\n123:          0          0          0          0          0          0          0          0   PDC-GIC 194 Edge      adsp\n126:          0          0          0          0          0          0          0          0   PDC-GIC 298 Edge      modem\n127:          0          0          0          0          0          0          0          0   PDC-GIC 610 Edge      cdsp\n130:         52          0          0          0          0          0          0          0   PDC-GIC 236 Edge      mmc0\n131:          8          0          0          0          0          0          0          0   PDC-GIC 254 Edge      8804000.sdhci\n157:          0          0          0          0          0          0          0          0  msmgpio-dc  10 Edge      TE_GPIO\n171:          0          0          0          0          0          0          0          0  msmgpio-dc  24 Edge      volume_up\n239:          0          0          0          0          0          0          0          0  msmgpio-dc  92 Edge      volume_down\n243:          0          0          0          0          0          0          0          0  msmgpio-dc  96 Edge      8804000.sdhci cd\n270:          0          0          0          0          0          0          0          0  msmgpio-dc 123 Edge      mcu_data\n272:          3          0          0          0          0          0          0          0  msmgpio-dc 125 Level     touchpanel\n374:          0          0          0          0          0          0          0          0   PDC-GIC 261 Level     arm-smmu global fault\n375:          0          0          0          0          0          0          0          0   PDC-GIC 263 Level     arm-smmu global fault\n376:          0          0          0          0          0          0          0          0   PDC-GIC 396 Level     arm-smmu-context-fault\n377:          0          0          0          0          0          0          0          0   PDC-GIC 397 Level     arm-smmu-context-fault\n378:          0          0          0          0          0          0          0          0   PDC-GIC 398 Level     arm-smmu-context-fault\n384:          0          0          0          0          0          0          0          0   PDC-GIC  97 Level     arm-smmu global fault\n387:          0          0          0          0          0          0          0          0   PDC-GIC 130 Level     arm-smmu-context-fault\n388:          0          0          0          0          0          0          0          0   PDC-GIC 131 Level     arm-smmu-context-fault\n389:          0          0          0          0          0          0          0          0   PDC-GIC 132 Level     arm-smmu-context-fault\n390:          0          0          0          0          0          0          0          0   PDC-GIC 133 Level     arm-smmu-context-fault\n391:          0          0          0          0          0          0          0          0   PDC-GIC 134 Level     arm-smmu-context-fault\n392:          0          0          0          0          0          0          0          0   PDC-GIC 135 Level     arm-smmu-context-fault\n393:          0          0          0          0          0          0          0          0   PDC-GIC 136 Level     arm-smmu-context-fault\n394:          0          0          0          0          0          0          0          0   PDC-GIC 137 Level     arm-smmu-context-fault\n395:          0          0          0          0          0          0          0          0   PDC-GIC 138 Level     arm-smmu-context-fault\n396:          0          0          0          0          0          0          0          0   PDC-GIC 139 Level     arm-smmu-context-fault\n397:          0          0          0          0          0          0          0          0   PDC-GIC 140 Level     arm-smmu-context-fault\n398:          0          0          0          0          0          0          0          0   PDC-GIC 141 Level     arm-smmu-context-fault\n399:          0          0          0          0          0          0          0          0   PDC-GIC 142 Level     arm-smmu-context-fault\n400:          0          0          0          0          0          0          0          0   PDC-GIC 143 Level     arm-smmu-context-fault\n401:          0          0          0          0          0          0          0          0   PDC-GIC 144 Level     arm-smmu-context-fault\n402:          0          0          0          0          0          0          0          0   PDC-GIC 145 Level     arm-smmu-context-fault\n403:          0          0          0          0          0          0          0          0   PDC-GIC 146 Level     arm-smmu-context-fault\n404:          0          0          0          0          0          0          0          0   PDC-GIC 147 Level     arm-smmu-context-fault\n405:          0          0          0          0          0          0          0          0   PDC-GIC 148 Level     arm-smmu-context-fault\n406:          0          0          0          0          0          0          0          0   PDC-GIC 149 Level     arm-smmu-context-fault\n407:          0          0          0          0          0          0          0          0   PDC-GIC 150 Level     arm-smmu-context-fault\n408:          0          0          0          0          0          0          0          0   PDC-GIC 213 Level     arm-smmu-context-fault\n409:          0          0          0          0          0          0          0          0   PDC-GIC 214 Level     arm-smmu-context-fault\n410:          0          0          0          0          0          0          0          0   PDC-GIC 215 Level     arm-smmu-context-fault\n411:          0          0          0          0          0          0          0          0   PDC-GIC 216 Level     arm-smmu-context-fault\n412:          0          0          0          0          0          0          0          0   PDC-GIC 217 Level     arm-smmu-context-fault\n413:          0          0          0          0          0          0          0          0   PDC-GIC 218 Level     arm-smmu-context-fault\n414:          0          0          0          0          0          0          0          0   PDC-GIC 219 Level     arm-smmu-context-fault\n415:          0          0          0          0          0          0          0          0   PDC-GIC 220 Level     arm-smmu-context-fault\n416:          0          0          0          0          0          0          0          0   PDC-GIC 221 Level     arm-smmu-context-fault\n417:          0          0          0          0          0          0          0          0   PDC-GIC 222 Level     arm-smmu-context-fault\n418:          0          0          0          0          0          0          0          0   PDC-GIC 223 Level     arm-smmu-context-fault\n419:          0          0          0          0          0          0          0          0   PDC-GIC 224 Level     arm-smmu-context-fault\n449:          0          0          0          0          0          0          0          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n450:          0          0          0          0          0          0          0          0   PDC-GIC 162 Edge      pwr_event_irq\n451:          0          0          0          0          0          0          0          0   PDC-GIC 518 Level     ss_phy_irq\n452:          0          0          0          0          0          0          0          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n453:          0          0          0          0          0          0          0          0   PDC-GIC 332 Level     kgsl-3d0\n454:          0          0          0          0          0          0          0          0   PDC-GIC 336 Level     HFI\n455:          0          0          0          0          0          0          0          0   PDC-GIC 337 Level     GMU\n456:          0          0          0          0          0          0          0          0   PDC-GIC 509 Edge      csiphy\n457:          0          0          0          0          0          0          0          0   PDC-GIC 510 Edge      csiphy\n458:          0          0          0          0          0          0          0          0   PDC-GIC 511 Edge      csiphy\n459:          0          0          0          0          0          0          0          0   PDC-GIC 492 Edge      cci\n460:          0          0          0          0          0          0          0          0   PDC-GIC 491 Edge      cpas_camnoc\n461:          1          0          0          0          0          0          0          0   PDC-GIC 493 Edge      cpas-cdm\n462:          0          0          0          0          0          0          0          0   PDC-GIC 496 Edge      csid\n463:          2          0          0          0          0          0          0          0   PDC-GIC 497 Edge      ife\n464:          0          0          0          0          0          0          0          0   PDC-GIC 498 Edge      csid\n465:          2          0          0          0          0          0          0          0   PDC-GIC 499 Edge      ife\n466:          0          0          0          0          0          0          0          0   PDC-GIC 500 Edge      csid-lite\n467:          2          0          0          0          0          0          0          0   PDC-GIC 501 Edge      ife-lite\n468:          0          0          0          0          0          0          0          0   PDC-GIC 495 Edge      a5\n469:          0          0          0          0          0          0          0          0   PDC-GIC 506 Edge      jpeg\n470:          0          0          0          0          0          0          0          0   PDC-GIC 507 Edge      jpegdma\n471:          2          0          0          0          0          0          0          0   PDC-GIC 494 Edge      fd\n472:          1          0          0          0          0          0          0          0   PDC-GIC 508 Edge      lrme\n473:          0          0          0          0          0          0          0          0   PDC-GIC  64 Level     limits_sensor-00\n474:          0          0          0          0          0          0          0          0   PDC-GIC  65 Level     limits_sensor-01\n603:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n604:          0          0          0          0          0          0          0          0  pmic_arb 101777466 Edge      qpnp_rtc_alarm\n605:          0          0          0          0          0          0          0          0       sde   2 Edge      sde_rotator_r3\n606:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      adsp\n607:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n608:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      adsp\n609:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      adsp\n638:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      ipa_smp2p_clk_vote\n670:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      modem\n671:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n672:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      modem\n673:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      modem\n702:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      cdsp\n703:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n704:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      cdsp\n705:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      cdsp\n862:          0          0          0          0          0          0          0          0   PDC-GIC 165 Edge      dwc3\n864:          0          0          0          0          0          0          0          0  pmic_arb 16777229 Edge      chg-error\n865:          0          0          0          0          0          0          0          0  pmic_arb 16842765 Edge      chg-state-change\n869:          0          0          0          0          0          0          0          0  pmic_arb 17825806 Edge      otg-fail\n870:          0          0          0          0          0          0          0          0  pmic_arb 17891342 Edge      otg-overcurrent\n871:          0          0          0          0          0          0          0          0  pmic_arb 17956878 Edge      otg-oc-dis-sw-sts\n872:          0          0          0          0          0          0          0          0  pmic_arb 18022414 Edge      testmode-change-detect\n873:          0          0          0          0          0          0          0          0  pmic_arb 18874383 Edge      bat-temp\n874:          0          0          0          0          0          0          0          0  pmic_arb 18939919 Edge      bat-ocp\n875:          0          0          0          0          0          0          0          0  pmic_arb 19005455 Edge      bat-ov\n876:          0          0          0          0          0          0          0          0  pmic_arb 19070991 Edge      bat-low\n877:          0          0          0          0          0          0          0          0  pmic_arb 19136527 Edge      bat-therm-or-id-missing\n878:          0          0          0          0          0          0          0          0  pmic_arb 19202063 Edge      bat-terminal-missing\n879:          0          0          0          0          0          0          0          0  pmic_arb 19922960 Edge      usbin-collapse\n880:          0          0          0          0          0          0          0          0  pmic_arb 19988496 Edge      usbin-lt-3p6v\n881:          0          0          0          0          0          0          0          0  pmic_arb 20054032 Edge      usbin-uv\n882:          0          0          0          0          0          0          0          0  pmic_arb 20119568 Edge      usbin-ov\n883:          0          0          0          0          0          0          0          0  pmic_arb 20185104 Edge      usbin-plugin\n884:          0          0          0          0          0          0          0          0  pmic_arb 20250640 Edge      usbin-src-change\n885:          0          0          0          0          0          0          0          0  pmic_arb 20316176 Edge      usbin-icl-change\n886:          0          0          0          0          0          0          0          0  pmic_arb 20381712 Edge      type-c-change\n887:          0          0          0          0          0          0          0          0  pmic_arb 20971537 Edge      dcin-collapse\n888:          0          0          0          0          0          0          0          0  pmic_arb 21037073 Edge      dcin-lt-3p6v\n889:          0          0          0          0          0          0          0          0  pmic_arb 21102609 Edge      dcin-uv\n890:          0          0          0          0          0          0          0          0  pmic_arb 21168145 Edge      dcin-ov\n891:          0          0          0          0          0          0          0          0  pmic_arb 21233681 Edge      dcin-plugin\n892:          0          0          0          0          0          0          0          0  pmic_arb 21299217 Edge      div2-en-dg\n893:          0          0          0          0          0          0          0          0  pmic_arb 21364753 Edge      dcin-icl-change\n895:          0          0          0          0          0          0          0          0  pmic_arb 23134227 Edge      wdog-bark\n896:          0          0          0          0          0          0          0          0  pmic_arb 23199763 Edge      aicl-fail\n897:          0          0          0          0          0          0          0          0  pmic_arb 23265299 Edge      aicl-done\n898:          0          0          0          0          0          0          0          0  pmic_arb 23330835 Edge      high-duty-cycle\n899:          0          0          0          0          0          0          0          0  pmic_arb 23396371 Edge      input-current-limiting\n900:          0          0          0          0          0          0          0          0  pmic_arb 23461907 Edge      temperature-change\n901:          0          0          0          0          0          0          0          0  pmic_arb 23527443 Edge      switcher-power-ok\nIPI0:        68         30         30         30         30         30         23         22       Rescheduling interrupts\nIPI1:         0          6          6          6          6          6          6          6       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI4:       150          5          4          4          4          5          5          5       IRQ work interrupts\nIPI5:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm712/RMX1921/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    4 root      0:00 [kworker/0:0H]\n    6 root      0:00 [ksoftirqd/0]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [lru-add-drain]\n   15 root      0:00 [cpuhp/0]\n   16 root      0:00 [cpuhp/1]\n   17 root      0:00 [migration/1]\n   18 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0H]\n   21 root      0:00 [rcuop/1]\n   22 root      0:00 [rcuos/1]\n   23 root      0:00 [rcuob/1]\n   24 root      0:00 [cpuhp/2]\n   25 root      0:00 [migration/2]\n   26 root      0:00 [ksoftirqd/2]\n   28 root      0:00 [kworker/2:0H]\n   29 root      0:00 [rcuop/2]\n   30 root      0:00 [rcuos/2]\n   31 root      0:00 [rcuob/2]\n   32 root      0:00 [cpuhp/3]\n   33 root      0:00 [migration/3]\n   34 root      0:00 [ksoftirqd/3]\n   35 root      0:00 [kworker/3:0]\n   36 root      0:00 [kworker/3:0H]\n   37 root      0:00 [rcuop/3]\n   38 root      0:00 [rcuos/3]\n   39 root      0:00 [rcuob/3]\n   40 root      0:00 [cpuhp/4]\n   41 root      0:00 [migration/4]\n   42 root      0:00 [ksoftirqd/4]\n   44 root      0:00 [kworker/4:0H]\n   45 root      0:00 [rcuop/4]\n   46 root      0:00 [rcuos/4]\n   47 root      0:00 [rcuob/4]\n   48 root      0:00 [cpuhp/5]\n   49 root      0:00 [migration/5]\n   50 root      0:00 [ksoftirqd/5]\n   51 root      0:00 [kworker/5:0]\n   52 root      0:00 [kworker/5:0H]\n   53 root      0:00 [rcuop/5]\n   54 root      0:00 [rcuos/5]\n   55 root      0:00 [rcuob/5]\n   56 root      0:00 [cpuhp/6]\n   57 root      0:00 [migration/6]\n   58 root      0:00 [ksoftirqd/6]\n   60 root      0:00 [kworker/6:0H]\n   61 root      0:00 [rcuop/6]\n   62 root      0:00 [rcuos/6]\n   63 root      0:00 [rcuob/6]\n   64 root      0:00 [cpuhp/7]\n   65 root      0:00 [migration/7]\n   66 root      0:00 [ksoftirqd/7]\n   67 root      0:00 [kworker/7:0]\n   68 root      0:00 [kworker/7:0H]\n   69 root      0:00 [rcuop/7]\n   70 root      0:00 [rcuos/7]\n   71 root      0:00 [rcuob/7]\n   72 root      0:00 [netns]\n   73 root      0:00 [pm]\n   75 root      0:00 [kworker/u17:0]\n   76 root      0:00 [ipa_usb_wq]\n   78 root      0:00 [msm_watchdog]\n   79 root      0:00 [qmp_aop]\n   80 root      0:00 [smem_native_mps]\n   81 root      0:00 [mpss_smem_glink]\n   82 root      0:00 [smem_native_lpa]\n   83 root      0:00 [lpass_smem_glin]\n   84 root      0:00 [smem_native_cds]\n   85 root      0:00 [cdsp_smem_glink]\n   86 root      0:00 [oom_reaper]\n   87 root      0:00 [writeback]\n   88 root      0:00 [kcompactd0]\n   89 root      0:00 [crypto]\n   90 root      0:00 [bioset]\n   91 root      0:00 [kblockd]\n   92 root      0:00 [irq/374-arm-smm]\n   93 root      0:00 [irq/375-arm-smm]\n   94 root      0:00 [irq/384-arm-smm]\n   95 root      0:00 [irq/21-tsens-up]\n   96 root      0:00 [irq/22-tsens-cr]\n   97 root      0:00 [irq/23-tsens-up]\n   98 root      0:00 [irq/24-tsens-cr]\n   99 root      0:00 [system]\n  100 root      0:00 [ipa_power_mgmt]\n  101 root      0:00 [transport_power]\n  102 root      0:00 [ipa_rm_wq]\n  103 root      0:00 [devfreq_wq]\n  104 root      0:00 [governor_msm_ad]\n  105 root      0:00 [cfg80211]\n  131 root      0:00 [kswapd0]\n  132 root      0:00 [vmstat]\n  133 root      0:00 [ecryptfs-kthrea]\n  134 root      0:00 [bioset]\n  167 root      0:00 [irq/389-arm-smm]\n  168 root      0:00 [irq/390-arm-smm]\n  169 root      0:00 [irq/64-eud_irq]\n  170 root      0:00 [glink_ssr_wq]\n  171 root      0:00 [glink_lbsrv]\n  172 root      0:00 [spi_wdsp]\n  173 root      0:00 [wdsp_spi_glink_]\n  174 root      0:00 [glink_xprt_wq]\n  175 root      0:00 [IPCRTR_mpss_sme]\n  176 root      0:00 [IPCRTR_lpass_sm]\n  177 root      0:00 [IPCRTR_cdsp_sme]\n  178 root      0:00 [glink_pkt_wq]\n  179 root      0:00 [irq/391-arm-smm]\n  180 root      0:00 [qmi_svc_event_w]\n  181 root      0:00 [msm_ipc_router]\n  182 root      0:00 [servloc_wq]\n  184 root      0:00 [irq/392-arm-smm]\n  185 root      0:00 [mem_share_svc]\n  186 root      0:00 [hwrng]\n  188 root      0:00 [qmi_hndl0000000]\n  190 root      0:00 [diag_real_time_]\n  191 root      0:00 [diag_wq]\n  193 root      0:00 [DIAG_USB_diag]\n  194 root      0:00 [diag_cntl_wq]\n  195 root      0:00 [diag_dci_wq]\n  196 root      0:00 [DIAG_SOCKET_MOD]\n  197 root      0:00 [DIAG_SOCKET_MOD]\n  198 root      0:00 [DIAG_SOCKET_MOD]\n  199 root      0:00 [DIAG_SOCKET_MOD]\n  200 root      0:00 [DIAG_SOCKET_MOD]\n  201 root      0:00 [DIAG_SOCKET_LPA]\n  202 root      0:00 [DIAG_SOCKET_LPA]\n  203 root      0:00 [DIAG_SOCKET_LPA]\n  204 root      0:00 [DIAG_SOCKET_LPA]\n  205 root      0:00 [DIAG_SOCKET_LPA]\n  206 root      0:00 [DIAG_SOCKET_WCN]\n  207 root      0:00 [DIAG_SOCKET_WCN]\n  208 root      0:00 [DIAG_SOCKET_WCN]\n  209 root      0:00 [DIAG_SOCKET_WCN]\n  210 root      0:00 [DIAG_SOCKET_WCN]\n  211 root      0:00 [DIAG_SOCKET_SEN]\n  212 root      0:00 [DIAG_SOCKET_SEN]\n  213 root      0:00 [DIAG_SOCKET_SEN]\n  214 root      0:00 [DIAG_SOCKET_SEN]\n  215 root      0:00 [DIAG_SOCKET_SEN]\n  216 root      0:00 [DIAG_SOCKET_DIA]\n  217 root      0:00 [DIAG_SOCKET_DIA]\n  218 root      0:00 [DIAG_SOCKET_DIA]\n  219 root      0:00 [DIAG_SOCKET_DIA]\n  220 root      0:00 [DIAG_SOCKET_DIA]\n  221 root      0:00 [DIAG_SOCKET_CDS]\n  222 root      0:00 [DIAG_SOCKET_CDS]\n  223 root      0:00 [DIAG_SOCKET_CDS]\n  224 root      0:00 [DIAG_SOCKET_CDS]\n  225 root      0:00 [DIAG_SOCKET_CDS]\n  226 root      0:00 [DIAG_CNTL_SOCKE]\n  227 root      0:00 [DIAG_GLINK_DIAG]\n  228 root      0:00 [DIAG_GLINK_DIAG]\n  229 root      0:00 [DIAG_GLINK_DIAG]\n  230 root      0:00 [DIAG_GLINK_DIAG]\n  231 root      0:00 [DIAG_GLINK_DIAG]\n  232 root      0:00 [mykthread]\n  233 root      0:00 [oppo_ffl]\n  234 root      0:00 [irq/388-arm-smm]\n  235 root      0:00 [irq/393-arm-smm]\n  236 root      0:00 [crtc_commit:102]\n  237 root      0:00 [crtc_event:102]\n  238 root      0:00 [crtc_commit:155]\n  239 root      0:00 [crtc_event:155]\n  240 root      0:00 [pp_event]\n  241 root      0:00 [kgsl-workqueue]\n  242 root      0:00 [kgsl-mementry]\n  243 root      0:00 [kgsl_worker_thr]\n  244 root      0:00 [irq/376-arm-smm]\n  245 root      0:00 [irq/377-arm-smm]\n  246 root      0:00 [irq/378-arm-smm]\n  247 root      0:00 [kgsl-events]\n  248 root      0:00 [kgsl_devfreq_wq]\n  249 root      0:00 [bioset]\n  250 root      0:00 [bioset]\n  251 root      0:00 [bioset]\n  252 root      0:00 [bioset]\n  253 root      0:00 [bioset]\n  254 root      0:00 [bioset]\n  255 root      0:00 [bioset]\n  256 root      0:00 [bioset]\n  257 root      0:00 [bioset]\n  258 root      0:00 [bioset]\n  259 root      0:00 [bioset]\n  260 root      0:00 [bioset]\n  261 root      0:00 [bioset]\n  262 root      0:00 [bioset]\n  263 root      0:00 [bioset]\n  264 root      0:00 [bioset]\n  265 root      0:00 [bioset]\n  266 root      0:00 [bioset]\n  267 root      0:00 [bioset]\n  268 root      0:00 [bioset]\n  269 root      0:00 [bioset]\n  270 root      0:00 [bioset]\n  271 root      0:00 [bioset]\n  272 root      0:00 [bioset]\n  273 root      0:00 [bioset]\n  274 root      0:00 [bioset]\n  275 root      0:00 [bioset]\n  276 root      0:00 [bioset]\n  277 root      0:00 [bioset]\n  278 root      0:00 [bioset]\n  279 root      0:00 [bioset]\n  280 root      0:00 [bioset]\n  281 root      0:00 [bioset]\n  282 root      0:00 [qseecom-unreg-l]\n  283 root      0:00 [qseecom-unload-]\n  284 root      0:00 [memory_wq]\n  285 root      0:00 [irq/394-arm-smm]\n  286 root      0:00 [qcrypto_seq_res]\n  287 root      0:00 [irq/395-arm-smm]\n  308 root      0:00 [scsi_eh_0]\n  309 root      0:00 [scsi_tmf_0]\n  310 root      0:00 [ufs_pm_qos_0]\n  311 root      0:00 [ufs_clk_gating_]\n  312 root      0:00 [ice-set-key]\n  313 root      0:00 [ufs_clkscaling_]\n  314 root      0:00 [spi32766]\n  315 root      0:00 [bond0]\n  317 root      0:00 [sharedmem_qmi_w]\n  322 root      0:00 [uether]\n  323 root      0:00 [qmi_hndl0000000]\n  324 root      0:00 [k_ipa_usb]\n  327 root      0:00 [SecTimerCbWq]\n  328 root      0:00 [irq/396-arm-smm]\n  329 root      0:00 [tp_async]\n  331 root      0:00 [msm_vidc_worker]\n  332 root      0:00 [pm_workerq_venu]\n  333 root      0:00 [irq/397-arm-smm]\n  334 root      0:00 [irq/398-arm-smm]\n  335 root      0:00 [irq/399-arm-smm]\n  336 root      0:00 [irq/400-arm-smm]\n  337 root      0:00 [rot_commitq_0_0]\n  338 root      0:00 [rot_commitq_0_1]\n  339 root      0:00 [rot_doneq_0_0]\n  340 root      0:00 [rot_doneq_0_1]\n  341 root      0:00 [rot_fenceq_0_0]\n  342 root      0:00 [rot_fenceq_0_1]\n  343 root      0:00 [rot_fenceq_0_2]\n  344 root      0:00 [rot_fenceq_0_3]\n  345 root      0:00 [rot_fenceq_0_4]\n  346 root      0:00 [rot_fenceq_0_5]\n  347 root      0:00 [rot_fenceq_0_6]\n  348 root      0:00 [rot_fenceq_0_7]\n  349 root      0:00 [rot_fenceq_0_8]\n  350 root      0:00 [rot_fenceq_0_9]\n  351 root      0:00 [rot_fenceq_0_10]\n  352 root      0:00 [rot_fenceq_0_11]\n  353 root      0:00 [rot_fenceq_0_12]\n  354 root      0:00 [rot_fenceq_0_13]\n  355 root      0:00 [rot_fenceq_0_14]\n  356 root      0:00 [rot_fenceq_0_15]\n  357 root      0:00 [cam-cpas]\n  358 root      0:00 [qcom,cam_virtua]\n  359 root      0:00 [irq/272-touchpa]\n  360 root      0:00 [speedup_resume_]\n  361 root      0:00 [irq/401-arm-smm]\n  362 root      0:00 [qcom,cam170-cpa]\n  363 root      0:00 [lcd_trigger_loa]\n  364 root      0:00 [irq/402-arm-smm]\n  365 root      0:00 [cam_cci_wq]\n  366 root      0:00 [cam_cci_wq]\n  367 root      0:00 [irq/403-arm-smm]\n  368 root      0:00 [irq/404-arm-smm]\n  369 root      0:00 [irq/405-arm-smm]\n  370 root      0:00 [irq/406-arm-smm]\n  371 root      0:00 [bioset]\n  372 root      0:00 [bioset]\n  373 root      0:00 [bioset]\n  374 root      0:00 [bioset]\n  375 root      0:00 [bioset]\n  376 root      0:00 [bioset]\n  377 root      0:00 [bioset]\n  378 root      0:00 [bioset]\n  379 root      0:00 [bioset]\n  382 root      0:00 [kworker/1:1]\n  383 root      0:00 [kworker/2:1]\n  384 root      0:00 [kworker/3:1]\n  385 root      0:00 [kworker/4:1]\n  386 root      0:00 [kworker/6:1]\n  387 root      0:00 [kworker/5:1]\n  388 root      0:00 [kworker/7:1]\n  389 root      0:00 [irq/90-bcl-high]\n  390 root      0:00 [irq/92-bcl-low-]\n  391 root      0:00 [irq/473-limits_]\n  392 root      0:00 [irq/474-limits_]\n  393 root      0:00 [qmi_tmd_wq]\n  394 root      0:00 [dm_bufio_cache]\n  395 root      0:00 [irq/96-haptics_]\n  396 root      0:00 [mmc_clk_gate/mm]\n  397 root      0:00 [irq/95-haptics_]\n  398 root      0:00 [mmc_clk_gate/mm]\n  399 root      0:00 [irq/131-8804000]\n  400 root      0:00 [irq/130-mmc0]\n  401 root      0:00 [irq/243-8804000]\n  402 root      0:00 [irq/407-arm-smm]\n  403 root      0:00 [uaudio_svc]\n  404 root      0:00 [qmi_hndl0000000]\n  405 root      0:00 [apr_driver]\n  407 root      0:00 [ipv6_addrconf]\n  408 root      0:00 [irq/608-adsp]\n  410 root      0:00 [sysmon_wq]\n  411 root      0:00 [irq/704-cdsp]\n  412 root      0:00 [irq/672-modem]\n  421 1000      0:00 [shortc_thread]\n  422 root      0:00 [irq/864-chg-err]\n  424 root      0:00 [irq/865-chg-sta]\n  425 root      0:00 [irq/869-otg-fai]\n  426 root      0:00 [irq/870-otg-ove]\n  427 root      0:00 [irq/871-otg-oc-]\n  428 root      0:00 [irq/872-testmod]\n  429 root      0:00 [irq/873-bat-tem]\n  430 root      0:00 [irq/874-bat-ocp]\n  432 root      0:00 [irq/875-bat-ov]\n  433 root      0:00 [irq/876-bat-low]\n  434 root      0:00 [irq/877-bat-the]\n  435 root      0:00 [irq/878-bat-ter]\n  436 root      0:00 [irq/879-usbin-c]\n  437 root      0:00 [irq/880-usbin-l]\n  438 root      0:00 [irq/881-usbin-u]\n  440 root      0:00 [irq/882-usbin-o]\n  441 root      0:00 [irq/883-usbin-p]\n  442 root      0:00 [irq/884-usbin-s]\n  443 root      0:00 [irq/885-usbin-i]\n  444 root      0:00 [irq/886-type-c-]\n  445 root      0:00 [irq/887-dcin-co]\n  446 root      0:00 [irq/888-dcin-lt]\n  447 root      0:00 [irq/889-dcin-uv]\n  448 root      0:00 [irq/890-dcin-ov]\n  449 root      0:00 [irq/891-dcin-pl]\n  450 root      0:00 [irq/892-div2-en]\n  451 root      0:00 [irq/893-dcin-ic]\n  452 root      0:00 [irq/895-wdog-ba]\n  453 root      0:00 [irq/896-aicl-fa]\n  454 root      0:00 [irq/897-aicl-do]\n  455 root      0:00 [irq/898-high-du]\n  456 root      0:00 [irq/899-input-c]\n  457 root      0:00 [irq/900-tempera]\n  458 root      0:00 [irq/901-switche]\n  459 root      0:00 [tbatt_pwroff]\n  460 root      0:00 [usbtemp_kthread]\n  462 root      0:00 [kworker/u16:6]\n  468 root      0:00 [irq/82-sig-tx]\n  469 root      0:00 [irq/83-sig-rx]\n  470 root      0:00 [irq/450-pwr_eve]\n  471 root      0:00 [irq/449-dp_hs_p]\n  472 root      0:00 [irq/452-dm_hs_p]\n  473 root      0:00 [irq/451-ss_phy_]\n  474 root      0:00 [irq/387-arm-smm]\n  475 root      0:00 [usb_bam_wq]\n  476 root      0:00 [rq_stats]\n  477 root      0:00 [msm_perf:events]\n  478 root      0:00 [irq/408-arm-smm]\n  479 root      0:00 [irq/409-arm-smm]\n  480 root      0:00 [irq/410-arm-smm]\n  481 root      0:00 [irq/411-arm-smm]\n  482 root      0:00 [irq/412-arm-smm]\n  483 root      0:00 [irq/413-arm-smm]\n  484 root      0:00 [irq/414-arm-smm]\n  485 root      0:00 [irq/415-arm-smm]\n  486 root      0:00 [irq/416-arm-smm]\n  487 root      0:00 [irq/417-arm-smm]\n  488 root      0:00 [irq/418-arm-smm]\n  489 root      0:00 [irq/419-arm-smm]\n  490 root      0:00 [sb-3]\n  491 root      0:00 [ngd_rx_thread3]\n  492 root      0:00 [ngd_notify_sl3]\n  493 root      0:00 [irq/107-qpnp_fl]\n  494 root      0:00 [irq/106-qpnp_fl]\n  495 root      0:00 [irq/105-qpnp_fl]\n  507 root      0:00 [kworker/2:2]\n  508 root      0:00 [kworker/4:2]\n  509 root      0:00 [kworker/6:2]\n  512 root      0:00 [kworker/u17:2]\n  536 root      0:00 [kworker/0:2]\n  543 root      0:00 [kworker/1:0]\n  551 root      0:00 [kworker/0:0]\n  556 root      0:00 [kworker/u16:0]\n  566 root      0:00 [kworker/0:1]\n  582 root      0:00 [kworker/u16:1]\n  591 root      0:00 [kworker/6:0]\n  635 root      0:00 ps -A\n"
  },
  {
    "path": "results/sdm712/RMX1921/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1113.945484,3.7131516133333338,58.065824626865655,15.639045088112683,19.18275689530632,269.333040366\r\n1,576000,2138.823932,3.713235993055555,73.78255395683453,10.349819953257853,28.986011481829483,140.274623176\r\n1,748800,2780.481023,3.7132492294337607,86.97408411214951,9.384777065166382,31.966662384929155,107.903143344\r\n1,998400,3707.182047,3.7131230438701923,101.11782499999997,8.183512825666025,36.65907372431889,80.930467261\r\n1,1209600,4491.623123,3.713312767030424,117.70083333333329,7.862052244039896,38.15797589330769,66.796912319\r\n1,1324800,4919.161775,3.7131353977958934,125.74393333333329,7.6693011260831785,39.116993200293635,60.991420602\r\n1,1516800,5632.11054,3.713153045886076,139.64218867924527,7.438883866846435,40.328630661521395,53.271034615\r\n1,1612800,5988.741167,3.713257171999008,144.9954693877551,7.264249972921558,41.2981382962163,50.099841075\r\n1,1708800,6345.446085,3.7133930740870786,159.54051063829786,7.543562171274505,39.76901007621896,47.28305144\r\n6,300000,1866.669985,6.222233283333333,86.3784905660377,13.88387655973144,21.607797988503794,160.733030512\r\n6,652800,4062.67351,6.223458195465687,131.3204931506849,9.699343281955047,30.92992909717188,73.860088774\r\n6,825600,5143.415571,6.229912271075582,152.65744827586204,8.906910176699418,33.681713865803154,58.345729457\r\n6,979200,5889.512741,6.014616769812091,182.1864,9.283326179627808,32.31600335861815,50.95509972\r\n6,1132800,7049.700388,6.223252461158192,217.16769047619042,9.24543658165659,32.44844062801913,42.572799671\r\n6,1363200,8492.569002,6.229877495598592,270.79842857142853,9.570650595748463,31.34583140390351,35.342341705\r\n6,1536000,9559.924795,6.223909371744792,322.1810967741935,10.115976264620754,29.656060092707914,31.398416499\r\n6,1747200,10890.082765,6.232877040407509,422.319037037037,11.641740272776113,25.769343154093697,27.566221865\r\n6,1843200,11509.245761,6.244165451931424,440.23668000000004,11.483131653574466,26.125277411290156,26.083995667\r\n6,1996800,12414.649286,6.217272278645833,508.4164999999999,12.294589708809871,24.400976942323705,24.182121762\r\n6,2054400,12740.476494,6.201555925817757,546.9486521739129,12.888532111971267,23.276506385188014,23.56442796\r\n6,2169600,13500.135001,6.222407356655605,627.3638636363637,13.952706976496689,21.50120406780917,22.240214627\r\n6,2208000,13746.964212,6.225980168478261,657.7736666666666,14.365842309404394,20.88286878964342,21.840099471\r\n6,2304000,14345.144169,6.226191045572916,693.98765,14.524889516450397,20.654201855389687,20.929608065\r\n"
  },
  {
    "path": "results/sdm712/RMX1921/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1778.5297449976206, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [512.0, 512.128, 512.128, 516.129, 516.129, 512.128, 512.128, 512.128, 512.128, 516.258, 512.256, 512.256, 512.256, 512.256, 512.256, 512.256, 520.26, 512.256, 512.256, 512.256, 512.256, 516.258, 512.256, 512.256, 512.256, 508.254, 516.258, 512.256, 512.256], \"power_mean\": 513.0397931034482, \"energy_millijoules\": 2565.198965517241, \"energy_joules\": 2.565198965517241}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 269.333040366, \"elapsed_ns\": 269333040366, \"power_samples\": [44.15999999999997, 56.16899999999998, 60.172000000000025, 56.16899999999998, 59.888000000000034, 55.886999999999944, 59.888000000000034, 55.886999999999944, 59.888000000000034, 59.888000000000034, 59.888000000000034, 55.886999999999944, 59.888000000000034, 55.886999999999944, 59.888000000000034, 55.886999999999944, 59.888000000000034, 55.886999999999944, 55.886999999999944, 59.888000000000034, 59.888000000000034, 59.888000000000034, 55.886999999999944, 55.886999999999944, 59.888000000000034, 63.88900000000001, 55.886999999999944, 55.886999999999944, 55.886999999999944, 55.886999999999944, 59.888000000000034, 55.886999999999944, 55.886999999999944, 55.886999999999944, 59.888000000000034, 55.886999999999944, 59.888000000000034, 55.886999999999944, 59.888000000000034, 59.888000000000034, 59.888000000000034, 55.886999999999944, 55.886999999999944, 55.886999999999944, 59.888000000000034, 55.886999999999944, 59.888000000000034, 55.886999999999944, 155.91200000000003, 55.886999999999944, 59.888000000000034, 55.886999999999944, 55.886999999999944, 55.886999999999944, 59.888000000000034, 59.888000000000034, 55.886999999999944, 55.886999999999944, 59.888000000000034, 63.88900000000001, 59.888000000000034, 55.886999999999944, 55.886999999999944, 55.886999999999944, 59.888000000000034, 55.886999999999944, 59.888000000000034, 55.886999999999944, 55.886999999999944, 55.74599999999998, 59.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 59.888000000000034, 55.886999999999944, 59.888000000000034, 55.886999999999944, 59.888000000000034, 55.74599999999998, 59.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 59.74599999999998, 59.74599999999998, 59.74599999999998, 55.74599999999998, 59.74599999999998, 55.886999999999944, 59.888000000000034, 55.886999999999944, 55.886999999999944, 55.886999999999944, 59.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 55.74599999999998, 59.74599999999998, 59.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 59.74599999999998, 59.74599999999998, 59.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 55.74599999999998, 59.74599999999998, 59.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 59.60399999999993, 55.60500000000002, 59.60399999999993, 55.60500000000002, 55.60500000000002, 55.74599999999998, 59.74599999999998, 55.74599999999998, 155.74599999999998, 55.74599999999998, 55.74599999999998, 55.74599999999998, 59.74599999999998, 55.74599999999998, 55.74599999999998, 55.60500000000002, 63.60299999999995, 59.60399999999993, 55.60500000000002, 55.60500000000002, 55.60500000000002, 59.60399999999993, 59.60399999999993, 55.60500000000002, 59.60399999999993, 55.60500000000002, 55.60500000000002, 55.60500000000002, 59.60399999999993, 55.60500000000002, 55.60500000000002, 59.60399999999993, 59.60399999999993, 55.60500000000002, 55.60500000000002, 59.60399999999993, 55.60500000000002, 55.60500000000002, 55.60500000000002, 55.60500000000002, 55.60500000000002, 55.60500000000002, 59.60399999999993, 55.60500000000002, 59.60399999999993, 55.60500000000002, 59.60399999999993, 55.60500000000002, 59.60399999999993, 55.60500000000002, 59.60399999999993, 59.60399999999993, 55.60500000000002, 55.60500000000002, 59.60399999999993, 55.60500000000002, 59.60399999999993, 55.60500000000002, 59.60399999999993, 55.60500000000002, 55.60500000000002, 55.60500000000002, 59.60399999999993, 55.60500000000002, 55.60500000000002, 55.60500000000002, 59.60399999999993, 55.60500000000002, 59.60399999999993, 55.60500000000002, 59.60399999999993, 67.60199999999998, 59.60399999999993, 55.60500000000002, 59.60399999999993, 55.60500000000002, 59.60399999999993, 55.60500000000002, 55.60500000000002, 55.60500000000002, 59.60399999999993, 59.60399999999993, 55.60500000000002, 55.60500000000002, 55.60500000000002], \"power_mean\": 58.065824626865655, \"energy_millijoules\": 15639.045088112684, \"energy_joules\": 15.639045088112683, \"coremark_score\": 1113.945484, \"coremarks_per_mhz\": 3.7131516133333338, \"ulpmark_cm_score\": 19.18275689530632}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [512.384, 512.384, 516.387, 512.384], \"power_mean\": 513.3847499999999, \"energy_millijoules\": 2566.92375, \"energy_joules\": 2.56692375}}, \"576000\": {\"active\": {\"elapsed_sec\": 140.274623176, \"elapsed_ns\": 140274623176, \"power_samples\": [75.45399999999995, 75.45399999999995, 71.45600000000002, 75.45399999999995, 71.45600000000002, 75.45399999999995, 71.45600000000002, 75.45399999999995, 71.45600000000002, 75.45399999999995, 71.45600000000002, 75.45399999999995, 71.45600000000002, 71.45600000000002, 75.45399999999995, 71.45600000000002, 71.45600000000002, 75.45399999999995, 71.45600000000002, 75.45399999999995, 71.45600000000002, 71.45600000000002, 71.45600000000002, 75.45399999999995, 71.45600000000002, 71.45600000000002, 71.45600000000002, 75.45399999999995, 71.45600000000002, 75.45399999999995, 71.45600000000002, 75.45399999999995, 71.45600000000002, 71.45600000000002, 75.45399999999995, 71.45600000000002, 71.45600000000002, 71.45600000000002, 71.45600000000002, 71.45600000000002, 71.31100000000004, 75.30799999999999, 71.31100000000004, 75.30799999999999, 71.31100000000004, 75.30799999999999, 71.31100000000004, 75.30799999999999, 71.31100000000004, 75.30799999999999, 71.31100000000004, 75.30799999999999, 71.31100000000004, 71.31100000000004, 71.31100000000004, 71.45600000000002, 71.45600000000002, 75.45399999999995, 167.40800000000002, 75.45399999999995, 71.31100000000004, 75.30799999999999, 71.31100000000004, 75.30799999999999, 71.31100000000004, 75.30799999999999, 75.30799999999999, 71.31100000000004, 71.31100000000004, 75.30799999999999, 71.31100000000004, 75.30799999999999, 71.31100000000004, 71.31100000000004, 71.31100000000004, 71.31100000000004, 75.30799999999999, 71.31100000000004, 75.30799999999999, 75.30799999999999, 71.31100000000004, 75.30799999999999, 71.31100000000004, 71.31100000000004, 71.31100000000004, 71.31100000000004, 75.30799999999999, 75.30799999999999, 71.31100000000004, 75.30799999999999, 71.31100000000004, 75.30799999999999, 71.31100000000004, 79.30499999999995, 71.31100000000004, 75.30799999999999, 75.30799999999999, 71.31100000000004, 71.31100000000004, 71.31100000000004, 75.30799999999999, 75.30799999999999, 71.31100000000004, 71.31100000000004, 71.31100000000004, 75.30799999999999, 71.31100000000004, 75.30799999999999, 71.31100000000004, 75.30799999999999, 71.31100000000004, 75.30799999999999, 71.31100000000004, 75.30799999999999, 71.31100000000004, 75.30799999999999, 71.31100000000004, 75.30799999999999, 71.31100000000004, 75.30799999999999, 71.16599999999994, 75.16200000000003, 75.16200000000003, 71.16599999999994, 71.16599999999994, 71.16599999999994, 75.16200000000003, 79.15800000000002, 71.16599999999994, 75.16200000000003, 71.16599999999994, 75.16200000000003, 71.16599999999994, 75.16200000000003, 75.16200000000003, 71.16599999999994, 71.16599999999994, 75.16200000000003, 71.16599999999994], \"power_mean\": 73.78255395683453, \"energy_millijoules\": 10349.819953257853, \"energy_joules\": 10.349819953257853, \"coremark_score\": 2138.823932, \"coremarks_per_mhz\": 3.713235993055555, \"ulpmark_cm_score\": 28.986011481829483}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [503.748, 508.0, 508.0, 508.0], \"power_mean\": 506.937, \"energy_millijoules\": 2534.685, \"energy_joules\": 2.534685}}, \"748800\": {\"active\": {\"elapsed_sec\": 107.903143344, \"elapsed_ns\": 107903143344, \"power_samples\": [23.480000000000018, 87.44799999999998, 83.154, 91.14599999999996, 87.14999999999998, 87.14999999999998, 87.14999999999998, 87.14999999999998, 87.14999999999998, 87.14999999999998, 83.154, 87.14999999999998, 83.00599999999997, 90.99599999999998, 83.00599999999997, 87.00099999999998, 83.00599999999997, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 90.99599999999998, 83.00599999999997, 87.00099999999998, 83.00599999999997, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 83.00599999999997, 87.00099999999998, 83.00599999999997, 90.99599999999998, 83.00599999999997, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 150.92099999999994, 114.96600000000001, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 83.00599999999997, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 90.99599999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 87.00099999999998, 83.00599999999997, 87.00099999999998, 90.846, 86.85199999999998, 86.85199999999998, 82.85799999999995, 86.85199999999998, 86.85199999999998, 86.85199999999998, 90.846, 86.85199999999998, 86.85199999999998, 86.85199999999998, 86.85199999999998, 86.85199999999998, 82.85799999999995, 90.846, 86.85199999999998, 90.846, 86.85199999999998, 86.85199999999998, 82.85799999999995, 90.846, 86.85199999999998, 86.85199999999998, 86.85199999999998, 86.85199999999998, 86.85199999999998, 86.85199999999998, 82.85799999999995, 86.85199999999998, 82.85799999999995, 90.846, 82.85799999999995, 86.85199999999998, 82.85799999999995, 90.846], \"power_mean\": 86.97408411214951, \"energy_millijoules\": 9384.777065166381, \"energy_joules\": 9.384777065166382, \"coremark_score\": 2780.481023, \"coremarks_per_mhz\": 3.7132492294337607, \"ulpmark_cm_score\": 31.966662384929155}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [503.496, 503.496, 507.746, 511.744], \"power_mean\": 506.6205, \"energy_millijoules\": 2533.1025, \"energy_joules\": 2.5331025}}, \"998400\": {\"active\": {\"elapsed_sec\": 80.930467261, \"elapsed_ns\": 80930467261, \"power_samples\": [75.30799999999999, 99.28999999999996, 103.28700000000003, 99.28999999999996, 103.28700000000003, 102.82799999999997, 102.82799999999997, 98.83399999999995, 102.82799999999997, 98.83399999999995, 106.822, 98.83399999999995, 114.80999999999995, 98.83399999999995, 102.82799999999997, 98.68200000000002, 102.67499999999995, 98.68200000000002, 102.67499999999995, 98.68200000000002, 98.68200000000002, 102.67499999999995, 98.68200000000002, 98.68200000000002, 102.67499999999995, 98.68200000000002, 102.67499999999995, 102.67499999999995, 102.67499999999995, 98.68200000000002, 106.51400000000001, 102.52199999999993, 102.52199999999993, 98.52999999999997, 106.51400000000001, 98.68200000000002, 102.67499999999995, 102.67499999999995, 102.67499999999995, 98.68200000000002, 102.67499999999995, 102.67499999999995, 102.67499999999995, 98.68200000000002, 102.67499999999995, 102.52199999999993, 102.52199999999993, 102.52199999999993, 102.52199999999993, 98.52999999999997, 106.668, 98.68200000000002, 102.67499999999995, 98.68200000000002, 102.67499999999995, 98.52999999999997, 102.52199999999993, 98.52999999999997, 102.52199999999993, 106.51400000000001, 102.52199999999993, 98.52999999999997, 102.52199999999993, 98.52999999999997, 102.52199999999993, 98.52999999999997, 102.52199999999993, 98.52999999999997, 102.52199999999993, 98.52999999999997, 98.52999999999997, 102.52199999999993, 102.52199999999993, 102.52199999999993, 98.52999999999997, 102.52199999999993, 102.52199999999993, 98.52999999999997, 102.52199999999993, 98.52999999999997], \"power_mean\": 101.11782499999997, \"energy_millijoules\": 8183.5128256660255, \"energy_joules\": 8.183512825666025, \"coremark_score\": 3707.182047, \"coremarks_per_mhz\": 3.7131230438701923, \"ulpmark_cm_score\": 36.65907372431889}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [503.622, 511.616, 507.619, 507.619], \"power_mean\": 507.619, \"energy_millijoules\": 2538.0950000000003, \"energy_joules\": 2.538095}}, \"1209600\": {\"active\": {\"elapsed_sec\": 66.796912319, \"elapsed_ns\": 66796912319, \"power_samples\": [39.061000000000035, 118.49000000000001, 118.49000000000001, 118.49000000000001, 118.49000000000001, 118.49000000000001, 118.33299999999997, 122.32399999999996, 114.34199999999998, 118.33299999999997, 118.33299999999997, 118.33299999999997, 118.33299999999997, 122.32399999999996, 118.33299999999997, 118.33299999999997, 118.33299999999997, 122.32399999999996, 118.33299999999997, 118.33299999999997, 118.33299999999997, 122.32399999999996, 118.33299999999997, 118.33299999999997, 114.34199999999998, 118.33299999999997, 118.33299999999997, 118.33299999999997, 118.33299999999997, 118.33299999999997, 118.33299999999997, 118.33299999999997, 122.32399999999996, 118.33299999999997, 118.33299999999997, 118.33299999999997, 118.33299999999997, 118.33299999999997, 118.33299999999997, 122.32399999999996, 118.33299999999997, 118.17599999999993, 118.17599999999993, 118.17599999999993, 118.17599999999993, 126.15599999999995, 118.33299999999997, 118.33299999999997, 118.33299999999997, 118.33299999999997, 118.33299999999997, 126.15599999999995, 118.17599999999993, 118.17599999999993, 118.17599999999993, 118.17599999999993, 118.17599999999993, 122.16599999999994, 118.17599999999993, 118.17599999999993, 118.17599999999993, 118.17599999999993, 122.16599999999994, 118.17599999999993, 118.17599999999993, 118.17599999999993], \"power_mean\": 117.70083333333329, \"energy_millijoules\": 7862.052244039896, \"energy_joules\": 7.862052244039896, \"coremark_score\": 4491.623123, \"coremarks_per_mhz\": 3.713312767030424, \"ulpmark_cm_score\": 38.15797589330769}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [502.992, 507.365, 515.355, 507.365], \"power_mean\": 508.26925, \"energy_millijoules\": 2541.34625, \"energy_joules\": 2.54134625}}, \"1324800\": {\"active\": {\"elapsed_sec\": 60.991420602, \"elapsed_ns\": 60991420602, \"power_samples\": [122.798, 126.31499999999994, 122.32399999999996, 126.31499999999994, 126.31499999999994, 126.31499999999994, 126.15599999999995, 126.15599999999995, 122.16599999999994, 126.15599999999995, 126.15599999999995, 126.15599999999995, 126.15599999999995, 126.15599999999995, 122.16599999999994, 126.15599999999995, 126.15599999999995, 126.15599999999995, 126.15599999999995, 126.15599999999995, 126.15599999999995, 125.99699999999996, 125.99699999999996, 125.99699999999996, 122.00799999999992, 125.99699999999996, 125.99699999999996, 125.99699999999996, 125.99699999999996, 125.99699999999996, 125.99699999999996, 125.99699999999996, 125.99699999999996, 133.97500000000002, 122.00799999999992, 125.99699999999996, 125.99699999999996, 125.99699999999996, 125.99699999999996, 125.99699999999996, 122.00799999999992, 125.99699999999996, 122.00799999999992, 125.99699999999996, 125.99699999999996, 125.99699999999996, 125.99699999999996, 125.99699999999996, 125.99699999999996, 125.99699999999996, 125.99699999999996, 125.99699999999996, 122.00799999999992, 125.99699999999996, 125.99699999999996, 125.99699999999996, 125.99699999999996, 133.97500000000002, 125.99699999999996, 125.99699999999996], \"power_mean\": 125.74393333333329, \"energy_millijoules\": 7669.301126083178, \"energy_joules\": 7.6693011260831785, \"coremark_score\": 4919.161775, \"coremarks_per_mhz\": 3.7131353977958934, \"ulpmark_cm_score\": 39.116993200293635}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [506.73, 511.232, 507.238, 507.238], \"power_mean\": 508.1095, \"energy_millijoules\": 2540.5475, \"energy_joules\": 2.5405475}}, \"1516800\": {\"active\": {\"elapsed_sec\": 53.271034615, \"elapsed_ns\": 53271034615, \"power_samples\": [90.54599999999994, 137.80200000000002, 141.78999999999996, 137.80200000000002, 141.78999999999996, 137.80200000000002, 137.80200000000002, 141.78999999999996, 141.78999999999996, 137.80200000000002, 141.78999999999996, 137.80200000000002, 141.78999999999996, 137.80200000000002, 137.80200000000002, 137.80200000000002, 141.78999999999996, 137.80200000000002, 141.78999999999996, 137.80200000000002, 149.76599999999996, 137.80200000000002, 141.78999999999996, 141.78999999999996, 141.78999999999996, 137.80200000000002, 141.78999999999996, 141.78999999999996, 141.78999999999996, 137.80200000000002, 141.78999999999996, 141.78999999999996, 141.78999999999996, 137.80200000000002, 141.78999999999996, 137.80200000000002, 141.62699999999995, 141.62699999999995, 141.62699999999995, 137.64, 141.62699999999995, 141.62699999999995, 141.62699999999995, 141.62699999999995, 141.62699999999995, 141.62699999999995, 141.62699999999995, 137.64, 145.61400000000003, 137.64, 141.62699999999995, 141.62699999999995, 145.61400000000003], \"power_mean\": 139.64218867924527, \"energy_millijoules\": 7438.883866846435, \"energy_joules\": 7.438883866846435, \"coremark_score\": 5632.11054, \"coremarks_per_mhz\": 3.713153045886076, \"ulpmark_cm_score\": 40.328630661521395}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [502.614, 510.976, 510.976, 510.976], \"power_mean\": 508.8855, \"energy_millijoules\": 2544.4275, \"energy_joules\": 2.5444275}}, \"1612800\": {\"active\": {\"elapsed_sec\": 50.099841075, \"elapsed_ns\": 50099841075, \"power_samples\": [58.46799999999996, 142.279, 146.26999999999998, 146.26999999999998, 149.601, 145.61400000000003, 145.61400000000003, 145.61400000000003, 149.601, 145.61400000000003, 145.61400000000003, 145.61400000000003, 149.601, 145.61400000000003, 149.43600000000004, 145.44999999999993, 145.44999999999993, 145.44999999999993, 145.44999999999993, 145.44999999999993, 149.43600000000004, 145.44999999999993, 149.43600000000004, 145.44999999999993, 149.601, 145.61400000000003, 149.601, 145.61400000000003, 145.61400000000003, 145.44999999999993, 149.43600000000004, 145.44999999999993, 149.43600000000004, 145.44999999999993, 145.44999999999993, 145.44999999999993, 149.43600000000004, 145.44999999999993, 149.43600000000004, 145.44999999999993, 149.43600000000004, 145.44999999999993, 149.43600000000004, 145.44999999999993, 149.43600000000004, 145.44999999999993, 149.43600000000004, 145.44999999999993, 145.44999999999993], \"power_mean\": 144.9954693877551, \"energy_millijoules\": 7264.249972921558, \"energy_joules\": 7.264249972921558, \"coremark_score\": 5988.741167, \"coremarks_per_mhz\": 3.713257171999008, \"ulpmark_cm_score\": 41.2981382962163}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [510.848, 510.848, 510.848, 506.857], \"power_mean\": 509.85025, \"energy_millijoules\": 2549.2512500000003, \"energy_joules\": 2.54925125}}, \"1708800\": {\"active\": {\"elapsed_sec\": 47.28305144, \"elapsed_ns\": 47283051440, \"power_samples\": [14.436000000000035, 157.40800000000002, 157.40800000000002, 157.40800000000002, 161.394, 157.40800000000002, 157.24099999999999, 161.226, 161.226, 157.24099999999999, 161.226, 157.24099999999999, 161.226, 161.226, 157.24099999999999, 161.226, 256.866, 161.226, 161.226, 161.226, 161.226, 161.226, 161.226, 161.226, 161.226, 161.226, 161.226, 161.226, 161.226, 161.226, 161.226, 161.226, 161.226, 161.226, 165.211, 161.226, 161.226, 161.226, 161.226, 161.226, 157.24099999999999, 165.04200000000003, 157.07399999999996, 161.058, 165.04200000000003, 161.058, 161.058], \"power_mean\": 159.54051063829786, \"energy_millijoules\": 7543.562171274505, \"energy_joules\": 7.543562171274505, \"coremark_score\": 6345.446085, \"coremarks_per_mhz\": 3.7133930740870786, \"ulpmark_cm_score\": 39.76901007621896}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [506.222, 510.72, 514.71, 514.71], \"power_mean\": 511.5905, \"energy_millijoules\": 2557.9525000000003, \"energy_joules\": 2.5579525000000003}}}}, \"6\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 160.733030512, \"elapsed_ns\": 160733030512, \"power_samples\": [66.16200000000003, 86.10699999999997, 86.10699999999997, 85.65999999999997, 89.64599999999996, 81.67399999999998, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.80899999999997, 85.80899999999997, 85.80899999999997, 85.80899999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 81.67399999999998, 93.63199999999995, 81.67399999999998, 85.65999999999997, 85.65999999999997, 89.64599999999996, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 81.67399999999998, 89.64599999999996, 81.67399999999998, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 93.63199999999995, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 89.64599999999996, 85.65999999999997, 85.65999999999997, 81.67399999999998, 85.65999999999997, 85.65999999999997, 89.64599999999996, 85.65999999999997, 89.64599999999996, 81.67399999999998, 89.64599999999996, 85.65999999999997, 85.65999999999997, 89.64599999999996, 85.51099999999997, 85.51099999999997, 93.481, 85.51099999999997, 85.51099999999997, 85.51099999999997, 89.49599999999998, 85.51099999999997, 85.51099999999997, 81.52599999999995, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.65999999999997, 85.51099999999997, 89.49599999999998, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 185.13599999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.36199999999997, 85.36199999999997, 85.36199999999997, 85.36199999999997, 85.36199999999997, 89.346, 85.36199999999997, 85.36199999999997, 85.36199999999997, 85.36199999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 85.51099999999997, 89.346, 85.36199999999997, 85.36199999999997, 85.36199999999997, 85.36199999999997, 85.36199999999997, 85.36199999999997, 85.36199999999997, 85.36199999999997, 81.37799999999993, 89.346, 89.346, 89.346, 85.36199999999997, 85.36199999999997, 85.36199999999997], \"power_mean\": 86.3784905660377, \"energy_millijoules\": 13883.876559731441, \"energy_joules\": 13.88387655973144, \"coremark_score\": 1866.669985, \"coremarks_per_mhz\": 6.222233283333333, \"ulpmark_cm_score\": 21.607797988503794}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [510.592, 514.581, 510.592, 514.581], \"power_mean\": 512.5865, \"energy_millijoules\": 2562.9325, \"energy_joules\": 2.5629325}}, \"652800\": {\"active\": {\"elapsed_sec\": 73.860088774, \"elapsed_ns\": 73860088774, \"power_samples\": [85.65999999999997, 133.49199999999996, 129.50599999999997, 133.49199999999996, 133.49199999999996, 133.00900000000001, 129.02599999999995, 133.00900000000001, 129.02599999999995, 133.00900000000001, 129.02599999999995, 136.99199999999996, 129.02599999999995, 133.00900000000001, 133.00900000000001, 133.00900000000001, 133.00900000000001, 133.00900000000001, 129.02599999999995, 133.00900000000001, 133.00900000000001, 133.00900000000001, 129.02599999999995, 133.00900000000001, 128.86599999999999, 132.84799999999996, 132.84799999999996, 132.84799999999996, 128.86599999999999, 132.84799999999996, 128.86599999999999, 132.84799999999996, 128.86599999999999, 132.84799999999996, 128.86599999999999, 136.82999999999993, 128.86599999999999, 132.84799999999996, 128.86599999999999, 132.84799999999996, 132.84799999999996, 132.84799999999996, 128.86599999999999, 132.84799999999996, 132.84799999999996, 132.84799999999996, 128.86599999999999, 132.84799999999996, 128.86599999999999, 132.84799999999996, 132.84799999999996, 132.84799999999996, 132.84799999999996, 132.84799999999996, 128.70600000000002, 136.668, 128.70600000000002, 132.687, 132.687, 132.84799999999996, 132.84799999999996, 132.84799999999996, 132.84799999999996, 132.84799999999996, 132.687, 132.687, 132.687, 132.687, 128.70600000000002, 132.687, 132.687, 132.687, 132.687], \"power_mean\": 131.3204931506849, \"energy_millijoules\": 9699.343281955047, \"energy_joules\": 9.699343281955047, \"coremark_score\": 4062.67351, \"coremarks_per_mhz\": 6.223458195465687, \"ulpmark_cm_score\": 30.92992909717188}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [518.18, 514.194, 514.194, 514.194], \"power_mean\": 515.1904999999999, \"energy_millijoules\": 2575.9524999999994, \"energy_joules\": 2.575952499999999}}, \"825600\": {\"active\": {\"elapsed_sec\": 58.345729457, \"elapsed_ns\": 58345729457, \"power_samples\": [13.780999999999949, 153.25599999999997, 152.59199999999998, 156.57299999999998, 152.59199999999998, 156.57299999999998, 152.59199999999998, 152.42599999999993, 160.38599999999997, 152.42599999999993, 152.42599999999993, 152.42599999999993, 156.57299999999998, 156.57299999999998, 152.59199999999998, 152.59199999999998, 156.57299999999998, 152.42599999999993, 156.40599999999995, 152.42599999999993, 156.40599999999995, 152.42599999999993, 156.40599999999995, 156.40599999999995, 152.42599999999993, 152.42599999999993, 160.38599999999997, 156.40599999999995, 156.40599999999995, 152.42599999999993, 156.40599999999995, 156.40599999999995, 156.40599999999995, 152.42599999999993, 156.40599999999995, 156.40599999999995, 156.40599999999995, 160.38599999999997, 156.40599999999995, 156.40599999999995, 156.40599999999995, 152.42599999999993, 156.23900000000003, 156.23900000000003, 152.26, 152.26, 156.23900000000003, 156.40599999999995, 156.40599999999995, 152.42599999999993, 156.40599999999995, 156.40599999999995, 156.23900000000003, 152.26, 156.23900000000003, 152.26, 156.23900000000003, 160.38599999999997], \"power_mean\": 152.65744827586204, \"energy_millijoules\": 8906.910176699417, \"energy_joules\": 8.906910176699418, \"coremark_score\": 5143.415571, \"coremarks_per_mhz\": 6.229912271075582, \"ulpmark_cm_score\": 33.681713865803154}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [513.549, 513.549, 613.69, 518.05], \"power_mean\": 539.7094999999999, \"energy_millijoules\": 2698.5474999999997, \"energy_joules\": 2.6985474999999997}}, \"979200\": {\"active\": {\"elapsed_sec\": 50.95509972, \"elapsed_ns\": 50955099720, \"power_samples\": [105.28199999999993, 184.962, 180.97799999999995, 184.962, 180.97799999999995, 184.09199999999998, 184.09199999999998, 184.09199999999998, 184.09199999999998, 184.09199999999998, 183.918, 183.918, 179.93999999999994, 183.918, 183.918, 183.918, 183.918, 183.918, 183.918, 183.918, 183.918, 183.918, 183.918, 183.918, 179.93999999999994, 187.89599999999996, 179.93999999999994, 183.918, 183.918, 183.918, 183.918, 187.89599999999996, 183.918, 183.918, 183.918, 183.918, 183.918, 183.918, 183.918, 183.918, 183.918, 183.918, 183.918, 183.918, 183.74400000000003, 183.74400000000003, 183.74400000000003, 183.74400000000003, 183.74400000000003, 183.74400000000003], \"power_mean\": 182.1864, \"energy_millijoules\": 9283.326179627808, \"energy_joules\": 9.283326179627808, \"coremark_score\": 5889.512741, \"coremarks_per_mhz\": 6.014616769812091, \"ulpmark_cm_score\": 32.31600335861815}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [513.807, 513.807, 517.79, 513.807], \"power_mean\": 514.8027500000001, \"energy_millijoules\": 2574.01375, \"energy_joules\": 2.57401375}}, \"1132800\": {\"active\": {\"elapsed_sec\": 42.572799671, \"elapsed_ns\": 42572799671, \"power_samples\": [25.333999999999946, 220.452, 220.452, 220.452, 220.452, 219.35399999999993, 223.32999999999993, 219.35399999999993, 223.32999999999993, 219.35399999999993, 219.35399999999993, 223.32999999999993, 223.32999999999993, 219.35399999999993, 223.32999999999993, 221.85799999999995, 217.89, 221.85799999999995, 217.89, 221.85799999999995, 223.32999999999993, 223.32999999999993, 219.35399999999993, 223.32999999999993, 219.35399999999993, 227.30599999999993, 223.32999999999993, 223.32999999999993, 227.30599999999993, 223.32999999999993, 223.14599999999996, 223.14599999999996, 219.17099999999994, 223.14599999999996, 219.17099999999994, 223.14599999999996, 227.12099999999998, 219.17099999999994, 219.17099999999994, 223.14599999999996, 223.14599999999996, 223.14599999999996], \"power_mean\": 217.16769047619042, \"energy_millijoules\": 9245.43658165659, \"energy_joules\": 9.24543658165659, \"coremark_score\": 7049.700388, \"coremarks_per_mhz\": 6.223252461158192, \"ulpmark_cm_score\": 32.44844062801913}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [509.696, 517.66, 513.678, 517.66], \"power_mean\": 514.6735, \"energy_millijoules\": 2573.3675, \"energy_joules\": 2.5733675}}, \"1363200\": {\"active\": {\"elapsed_sec\": 35.342341705, \"elapsed_ns\": 35342341705, \"power_samples\": [188.42099999999994, 272.02199999999993, 276.00299999999993, 272.02199999999993, 278.59799999999996, 270.65, 274.624, 274.624, 274.624, 274.624, 274.624, 270.65, 278.59799999999996, 274.624, 274.427, 274.427, 274.427, 270.45399999999995, 274.427, 270.45399999999995, 274.427, 270.45399999999995, 274.427, 270.45399999999995, 274.427, 270.45399999999995, 270.45399999999995, 270.45399999999995, 274.427, 270.45399999999995, 274.427, 270.45399999999995, 274.427, 270.45399999999995, 274.427], \"power_mean\": 270.79842857142853, \"energy_millijoules\": 9570.650595748462, \"energy_joules\": 9.570650595748463, \"coremark_score\": 8492.569002, \"coremarks_per_mhz\": 6.229877495598592, \"ulpmark_cm_score\": 31.34583140390351}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [509.568, 513.549, 513.549, 513.549], \"power_mean\": 512.55375, \"energy_millijoules\": 2562.76875, \"energy_joules\": 2.56276875}}, \"1536000\": {\"active\": {\"elapsed_sec\": 31.398416499, \"elapsed_ns\": 31398416499, \"power_samples\": [104.66599999999994, 327.54599999999994, 327.54599999999994, 327.54599999999994, 325.65599999999995, 329.62699999999995, 329.62699999999995, 325.65599999999995, 329.62699999999995, 329.62699999999995, 329.62699999999995, 329.62699999999995, 329.62699999999995, 329.62699999999995, 333.38599999999997, 329.41599999999994, 329.41599999999994, 329.41599999999994, 337.356, 329.41599999999994, 333.38599999999997, 329.41599999999994, 329.41599999999994, 329.41599999999994, 329.41599999999994, 325.446, 329.41599999999994, 325.446, 329.41599999999994, 329.41599999999994, 333.38599999999997], \"power_mean\": 322.1810967741935, \"energy_millijoules\": 10115.976264620753, \"energy_joules\": 10.115976264620754, \"coremark_score\": 9559.924795, \"coremarks_per_mhz\": 6.223909371744792, \"ulpmark_cm_score\": 29.656060092707914}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [517.4, 513.42, 513.42, 513.42], \"power_mean\": 514.415, \"energy_millijoules\": 2572.075, \"energy_joules\": 2.572075}}, \"1747200\": {\"active\": {\"elapsed_sec\": 27.566221865, \"elapsed_ns\": 27566221865, \"power_samples\": [391.0, 422.832, 418.85299999999995, 422.832, 416.28999999999996, 420.2579999999999, 416.28999999999996, 420.2579999999999, 420.2579999999999, 420.024, 416.057, 420.024, 420.024, 423.991, 420.024, 420.024, 416.057, 420.024, 420.024, 419.78999999999996, 419.78999999999996, 419.78999999999996, 514.9739999999999, 419.78999999999996, 419.78999999999996, 419.78999999999996, 423.756], \"power_mean\": 422.319037037037, \"energy_millijoules\": 11641.740272776113, \"energy_joules\": 11.641740272776113, \"coremark_score\": 10890.082765, \"coremarks_per_mhz\": 6.232877040407509, \"ulpmark_cm_score\": 25.769343154093697}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [517.27, 513.291, 521.249, 513.291], \"power_mean\": 516.27525, \"energy_millijoules\": 2581.3762500000003, \"energy_joules\": 2.5813762500000004}}, \"1843200\": {\"active\": {\"elapsed_sec\": 26.083995667, \"elapsed_ns\": 26083995667, \"power_samples\": [267.456, 446.466, 446.466, 447.552, 447.552, 443.586, 443.586, 451.51800000000003, 447.31100000000004, 447.31100000000004, 447.31100000000004, 447.31100000000004, 447.31100000000004, 451.27599999999995, 443.346, 451.27599999999995, 447.31100000000004, 447.31100000000004, 447.31100000000004, 447.31100000000004, 447.31100000000004, 451.27599999999995, 447.31100000000004, 451.034, 443.106], \"power_mean\": 440.23668000000004, \"energy_millijoules\": 11483.131653574466, \"energy_joules\": 11.483131653574466, \"coremark_score\": 11509.245761, \"coremarks_per_mhz\": 6.244165451931424, \"ulpmark_cm_score\": 26.125277411290156}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [513.033, 517.01, 517.01, 521.118], \"power_mean\": 517.0427500000001, \"energy_millijoules\": 2585.2137500000003, \"energy_joules\": 2.5852137500000003}}, \"1996800\": {\"active\": {\"elapsed_sec\": 24.182121762, \"elapsed_ns\": 24182121762, \"power_samples\": [159.88199999999995, 521.7889999999999, 521.7889999999999, 526.089, 522.1260000000001, 518.1629999999999, 514.1999999999999, 522.1260000000001, 525.8280000000001, 525.8280000000001, 517.9039999999999, 521.8659999999999, 521.8659999999999, 521.8659999999999, 525.8280000000001, 525.8280000000001, 521.8659999999999, 525.8280000000001, 529.5279999999999, 533.4889999999999, 517.6449999999999, 525.5669999999999, 529.5279999999999, 525.5669999999999], \"power_mean\": 508.4164999999999, \"energy_millijoules\": 12294.589708809872, \"energy_joules\": 12.294589708809871, \"coremark_score\": 12414.649286, \"coremarks_per_mhz\": 6.217272278645833, \"ulpmark_cm_score\": 24.400976942323705}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [516.88, 516.88, 520.856, 513.033], \"power_mean\": 516.91225, \"energy_millijoules\": 2584.5612499999997, \"energy_joules\": 2.5845612499999997}}, \"2054400\": {\"active\": {\"elapsed_sec\": 23.56442796, \"elapsed_ns\": 23564427960, \"power_samples\": [545.3860000000001, 549.362, 545.3860000000001, 549.362, 549.362, 549.333, 545.372, 549.333, 545.372, 549.333, 545.1059999999999, 549.0659999999999, 545.1059999999999, 545.1059999999999, 545.1059999999999, 549.0659999999999, 545.1059999999999, 545.1059999999999, 545.1059999999999, 545.1059999999999, 549.0659999999999, 545.1059999999999, 549.0659999999999], \"power_mean\": 546.9486521739129, \"energy_millijoules\": 12888.532111971268, \"energy_joules\": 12.888532111971267, \"coremark_score\": 12740.476494, \"coremarks_per_mhz\": 6.201555925817757, \"ulpmark_cm_score\": 23.276506385188014}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [516.88, 520.856, 516.88, 516.88], \"power_mean\": 517.874, \"energy_millijoules\": 2589.37, \"energy_joules\": 2.5893699999999997}}, \"2169600\": {\"active\": {\"elapsed_sec\": 22.240214627, \"elapsed_ns\": 22240214627, \"power_samples\": [433.821, 636.5459999999999, 636.5459999999999, 635.6080000000001, 635.6080000000001, 635.6080000000001, 635.6080000000001, 635.6080000000001, 635.3190000000001, 639.276, 635.3190000000001, 639.276, 635.3190000000001, 639.276, 639.276, 639.276, 635.3190000000001, 639.276, 635.0300000000001, 635.0300000000001, 635.0300000000001, 635.0300000000001], \"power_mean\": 627.3638636363637, \"energy_millijoules\": 13952.70697649669, \"energy_joules\": 13.952706976496689, \"coremark_score\": 13500.135001, \"coremarks_per_mhz\": 6.222407356655605, \"ulpmark_cm_score\": 21.50120406780917}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [516.49, 516.49, 516.49, 516.75], \"power_mean\": 516.5550000000001, \"energy_millijoules\": 2582.7750000000005, \"energy_joules\": 2.5827750000000007}}, \"2208000\": {\"active\": {\"elapsed_sec\": 21.840099471, \"elapsed_ns\": 21840099471, \"power_samples\": [262.702, 668.0500000000001, 666.678, 662.7220000000001, 670.6339999999999, 666.678, 666.678, 670.3359999999999, 670.3359999999999, 698.0210000000001, 741.526, 733.6159999999999, 673.3939999999999, 669.4419999999999, 669.4419999999999, 665.4899999999999, 669.4419999999999, 670.0379999999999, 673.9920000000001, 670.0379999999999, 673.9920000000001], \"power_mean\": 657.7736666666666, \"energy_millijoules\": 14365.842309404394, \"energy_joules\": 14.365842309404394, \"coremark_score\": 13746.964212, \"coremarks_per_mhz\": 6.225980168478261, \"ulpmark_cm_score\": 20.88286878964342}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [514.28, 518.236, 524.568, 520.594], \"power_mean\": 519.4195, \"energy_millijoules\": 2597.0975, \"energy_joules\": 2.5970975}}, \"2304000\": {\"active\": {\"elapsed_sec\": 20.929608065, \"elapsed_ns\": 20929608065, \"power_samples\": [79.60199999999998, 717.486, 721.4399999999999, 721.4399999999999, 725.3939999999999, 721.4399999999999, 724.7699999999999, 724.7699999999999, 724.7699999999999, 728.7220000000001, 728.7220000000001, 728.7220000000001, 732.6740000000001, 724.7699999999999, 732.6740000000001, 724.7699999999999, 732.36, 728.409, 728.409, 728.409], \"power_mean\": 693.98765, \"energy_millijoules\": 14524.889516450397, \"energy_joules\": 14.524889516450397, \"coremark_score\": 14345.144169, \"coremarks_per_mhz\": 6.226191045572916, \"ulpmark_cm_score\": 20.654201855389687}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [517.974, 516.36, 520.332, 520.332], \"power_mean\": 518.7495, \"energy_millijoules\": 2593.7475, \"energy_joules\": 2.5937475}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sdm712/RMX1921/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 508 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 748 998 1209 1324 1516 1612 1708\n\n 300:  1114     3.7 C/MHz     58 mW   15.6 J   19.2 I/mJ   269.3 s\n 576:  2139     3.7 C/MHz     74 mW   10.3 J   29.0 I/mJ   140.3 s\n 748:  2780     3.7 C/MHz     87 mW    9.4 J   32.0 I/mJ   107.9 s\n 998:  3707     3.7 C/MHz    101 mW    8.2 J   36.7 I/mJ    80.9 s\n1209:  4492     3.7 C/MHz    118 mW    7.9 J   38.2 I/mJ    66.8 s\n1324:  4919     3.7 C/MHz    126 mW    7.7 J   39.1 I/mJ    61.0 s\n1516:  5632     3.7 C/MHz    140 mW    7.4 J   40.3 I/mJ    53.3 s\n1612:  5989     3.7 C/MHz    145 mW    7.3 J   41.3 I/mJ    50.1 s\n1708:  6345     3.7 C/MHz    160 mW    7.5 J   39.8 I/mJ    47.3 s\n\n\n===== CPU 6 =====\nFrequencies: 300 652 825 979 1132 1363 1536 1747 1843 1996 2054 2169 2208 2304\n\n 300:  1867     6.2 C/MHz     86 mW   13.9 J   21.6 I/mJ   160.7 s\n 652:  4063     6.2 C/MHz    131 mW    9.7 J   30.9 I/mJ    73.9 s\n 825:  5143     6.2 C/MHz    153 mW    8.9 J   33.7 I/mJ    58.3 s\n 979:  5890     6.0 C/MHz    182 mW    9.3 J   32.3 I/mJ    51.0 s\n1132:  7050     6.2 C/MHz    217 mW    9.2 J   32.4 I/mJ    42.6 s\n1363:  8493     6.2 C/MHz    271 mW    9.6 J   31.3 I/mJ    35.3 s\n1536:  9560     6.2 C/MHz    322 mW   10.1 J   29.7 I/mJ    31.4 s\n1747: 10890     6.2 C/MHz    422 mW   11.6 J   25.8 I/mJ    27.6 s\n1843: 11509     6.2 C/MHz    440 mW   11.5 J   26.1 I/mJ    26.1 s\n1996: 12415     6.2 C/MHz    508 mW   12.3 J   24.4 I/mJ    24.2 s\n2054: 12740     6.2 C/MHz    547 mW   12.9 J   23.3 I/mJ    23.6 s\n2169: 13500     6.2 C/MHz    627 mW   14.0 J   21.5 I/mJ    22.2 s\n2208: 13747     6.2 C/MHz    658 mW   14.4 J   20.9 I/mJ    21.8 s\n2304: 14345     6.2 C/MHz    694 mW   14.5 J   20.7 I/mJ    20.9 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sdm712/RMX1921/uptime.txt",
    "content": " 23:36:22 up 29 min,  load average: 2.75, 2.83, 2.47\n"
  },
  {
    "path": "results/sdm712/RMX1921/versions.txt",
    "content": "Kernel: Linux version 4.9.287-parallax+ (dakkshesh@ArchLinux) (Neutron clang version 14.0.0 (https://github.com/llvm/llvm-project 654c89d85a5108f2f04a8a748c44162e16260c7c)) #1 SMP PREEMPT Thu Jan 6 15:26:10 IST 2022\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sdm712/RMX1971/cmdline.txt",
    "content": "rcupdate.rcu_expedited=1 core_ctl_disable_cpumask=6-7 console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0xA90000 androidboot.hardware=qcom androidboot.console=ttyMSM0 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 service_locator.enable=1 androidboot.configfs=true androidboot.usbcontroller=a600000.dwc3 swiotlb=1 loop.max_part=7 buildvariant=user rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=green  androidboot.realmebootstate=orange androidboot.keymaster=1 root=PARTUUID=86cae299-0179-1b52-29b7-4c1d7bba44c6 androidboot.bootdevice=1d84000.ufshc androidboot.serialno=REDACTED androidboot.baseband=msm msm_drm.dsi_display0=dsi_oppo18621dsjm_hx83112a_1080_2340_video_display:config0 skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=74 androidboot.dtb_idx=3 lk_version=V1.0 androidboot.startupmode=hard_reset androidboot.mode=reboot printk.disable_uart=1 short_c_feature_sw_status=0 eng_version=0 is_confidential=1 simcardnum.doublesim=1\n"
  },
  {
    "path": "results/sdm712/RMX1971/cpufreq_stats/0/time_in_state",
    "content": "300000 110948\n576000 15072\n748800 11755\n998400 9043\n1209600 7537\n1324800 7035\n1516800 6233\n1612800 5930\n1708800 5920\n"
  },
  {
    "path": "results/sdm712/RMX1971/cpufreq_stats/0/total_trans",
    "content": "12\n"
  },
  {
    "path": "results/sdm712/RMX1971/cpufreq_stats/6/time_in_state",
    "content": "300000 17133\n652800 8259\n825600 6752\n979200 5846\n1132800 5144\n1363200 4438\n1536000 4038\n1747200 3636\n1843200 3535\n1996800 3334\n2054400 3234\n2169600 3133\n2208000 3033\n2304000 107957\n"
  },
  {
    "path": "results/sdm712/RMX1971/cpufreq_stats/6/total_trans",
    "content": "16\n"
  },
  {
    "path": "results/sdm712/RMX1971/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 12 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x6\nCPU part\t: 0x802\nCPU revision\t: 13\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x6\nCPU part\t: 0x802\nCPU revision\t: 13\n\nHardware\t: Qualcomm Technologies, Inc SDM712\n"
  },
  {
    "path": "results/sdm712/RMX1971/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. SDM710 PM660 + PM660A MTP;\nCompatible: qcom,sdm670-mtp;qcom,sdm670;qcom,mtp;\n"
  },
  {
    "path": "results/sdm712/RMX1971/kernel.log",
    "content": "[    0.000000]  (0)[0:swapper]Booting Linux on physical CPU 0x0\n[    0.000000]  (0)[0:swapper]Linux version 4.9.303-eun-701644-g7c3615b6cd2c (eun0115@Nexus) (Proton clang version 13.0.0 ) #1 SMP PREEMPT Mon Mar 7 11:02:55 UTC 2022\n[    0.000000]  (0)[0:swapper]Boot CPU: AArch64 Processor [517f803c]\n[    0.000000]  (0)[0:swapper]Machine: Qualcomm Technologies, Inc. SDM710 PM660 + PM660A MTP\n[    0.000000]  (0)[0:swapper]core_ctl: disable_cpumask=6-7\n[    0.000000]  (0)[0:swapper]Reserved memory: created CMA memory pool at 0x00000000fec00000, size 16 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000]  (0)[0:swapper]Reserved memory: created CMA memory pool at 0x00000000f9000000, size 92 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000]  (0)[0:swapper]Reserved memory: created CMA memory pool at 0x00000000f8400000, size 12 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000]  (0)[0:swapper]Reserved memory: created CMA memory pool at 0x00000000f8000000, size 4 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node sdsp_region, compatible id shared-dma-pool\n[    0.000000]  (0)[0:swapper]Reserved memory: created CMA memory pool at 0x00000000f6000000, size 32 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000]  (0)[0:swapper]Reserved memory: created CMA memory pool at 0x000000027a400000, size 36 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000]  (0)[0:swapper]Reserved memory: created CMA memory pool at 0x00000000f5800000, size 8 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000085700000, size 6 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node hyp_region@85700000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000085e00000, size 1 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node xbl_region@85e00000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000085fc0000, size 73 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node removed_region@85fc0000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x000000008ab00000, size 5 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node camera_region@8ab00000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x000000008b000000, size 150 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node modem_region@8b000000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000094600000, size 5 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node pil_video_region@94600000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000094b00000, size 1 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node wlan_msa_region@94B00000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000094c00000, size 8 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node cdsp_regions@94C00000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000095400000, size 2 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node pil_mba_region@0x95400000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000095600000, size 30 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node pil_adsp_region@95600000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000097400000, size 0 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node ips_fw_region@0x97400000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000097410000, size 0 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node ipa_gsi_region@0x97410000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Removed memory: created DMA memory pool at 0x0000000097415000, size 0 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node gpu_region@0x97415000, compatible id removed-dma-pool\n[    0.000000]  (0)[0:swapper]Reserved memory: created DMA memory pool at 0x000000009e400000, size 20 MiB\n[    0.000000]  (0)[0:swapper]OF: reserved mem: initialized node qseecom_region@0x9e400000, compatible id shared-dma-pool\n[    0.000000]  (0)[0:swapper]On node 0 totalpages: 2006377\n[    0.000000]  (0)[0:swapper]  DMA zone: 6987 pages used for memmap\n[    0.000000]  (0)[0:swapper]  DMA zone: 0 pages reserved\n[    0.000000]  (0)[0:swapper]  DMA zone: 447145 pages, LIFO batch:31\n[    0.000000]  (0)[0:swapper]  Normal zone: 24363 pages used for memmap\n[    0.000000]  (0)[0:swapper]  Normal zone: 1559232 pages, LIFO batch:31\n[    0.000000]  (0)[0:swapper]psci: probing for conduit method from DT.\n[    0.000000]  (0)[0:swapper]psci: PSCIv1.1 detected in firmware.\n[    0.000000]  (0)[0:swapper]psci: Using standard PSCI v0.2 function IDs\n[    0.000000]  (0)[0:swapper]psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000]  (0)[0:swapper]psci: SMC Calling Convention v1.0\n[    0.000000]  (0)[0:swapper]random: fast init done\n[    0.000000]  (0)[0:swapper]percpu: Embedded 22 pages/cpu s52248 r8192 d29672 u90112\n[    0.000000]  (0)[0:swapper]pcpu-alloc: s52248 r8192 d29672 u90112 alloc=22*4096\n[    0.000000]  (0)[0:swapper]pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000]  (0)[0:swapper]Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1975027\n[    0.000000]  (0)[0:swapper]Kernel command line: rcupdate.rcu_expedited=1 core_ctl_disable_cpumask=6-7 console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0xA90000 androidboot.hardware=qcom androidboot.console=ttyMSM0 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 service_locator.enable=1 androidboot.configfs=true androidboot.usbcontroller=a600000.dwc3 swiotlb=1 loop.max_part=7 buildvariant=user rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.realmebootstate=orange androidboot.keymaster=1 root=PARTUUID=86cae299-0179-1b52-29b7-4c1d7bba44c6 androidboot.bootdevice=1d84000.ufshc androidboot.serialno=REDACTED androidboot.baseband=msm msm_drm.dsi_display0=dsi_oppo18621dsjm_hx83112a_1080_2340_video_display:config0 skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=74 androidboot.dtb_idx=3 lk_version=V1.0 androidboot.startupmode=hard_reset androidboot.mode=reboot printk.disabl\n[    0.000000]  (0)[0:swapper][OPPO_CHG][oppo_short_c_feature_sw_status_init]short_c_feature_sw_status[0]\n[    0.000000]  (0)[0:swapper]log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000]  (0)[0:swapper]log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000]  (0)[0:swapper]log_buf_len min size: 131072 bytes\n[    0.000000]  (0)[0:swapper]log_buf_len: 1048576 bytes\n[    0.000000]  (0)[0:swapper]early log buf free: 123324(94%)\n[    0.000000]  (0)[0:swapper]PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000]  (0)[0:swapper]Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)\n[    0.000000]  (0)[0:swapper]Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000]  (0)[0:swapper]software IO TLB: mapped [mem 0xfffbf000-0xfffff000] (0MB)\n[    0.000000]  (0)[0:swapper]Memory: 7576508K/8025508K available (24062K kernel code, 4492K rwdata, 9784K rodata, 6144K init, 6012K bss, 244200K reserved, 204800K cma-reserved)\n[    0.000000]  (0)[0:swapper]Virtual kernel memory layout:\n[    0.000000]  (0)[0:swapper]    modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n[    0.000000]  (0)[0:swapper]    vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)\n[    0.000000]  (0)[0:swapper]      .text : 0x        (ptrval) - 0x        (ptrval)   ( 24064 KB)\n[    0.000000]  (0)[0:swapper]    .rodata : 0x        (ptrval) - 0x        (ptrval)   ( 10240 KB)\n[    0.000000]  (0)[0:swapper]      .init : 0x        (ptrval) - 0x        (ptrval)   (  6144 KB)\n[    0.000000]  (0)[0:swapper]      .data : 0x        (ptrval) - 0x        (ptrval)   (  4492 KB)\n[    0.000000]  (0)[0:swapper]       .bss : 0x        (ptrval) - 0x        (ptrval)   (  6013 KB)\n[    0.000000]  (0)[0:swapper]    fixed   : 0xffffffbefe7fb000 - 0xffffffbefec00000   (  4116 KB)\n[    0.000000]  (0)[0:swapper]    PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)\n[    0.000000]  (0)[0:swapper]    vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)\n[    0.000000]  (0)[0:swapper]              0xffffffbfb3000000 - 0xffffffbfbaf2b000   (   127 MB actual)\n[    0.000000]  (0)[0:swapper]    memory  : 0xffffffecc0000000 - 0xffffffeebcac0000   (  8138 MB)\n[    0.000000]  (0)[0:swapper]SLUB: HWalign=64, Order=0-3, MinObjects=10, CPUs=8, Nodes=1\n[    0.000000]  (0)[0:swapper/0]Preemptible hierarchical RCU implementation.\n[    0.000000]  (0)[0:swapper/0]\tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000]  (0)[0:swapper/0]NR_IRQS:64 nr_irqs:64 0\n[    0.000000]  (0)[0:swapper/0]\tOffload RCU callbacks from all CPUs\n[    0.000000]  (0)[0:swapper/0]\tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000]  (0)[0:swapper/0]arm_arch_timer: Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000]  (0)[0:swapper/0]clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000005]  (0)[0:swapper/0]sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000028]  (0)[0:swapper/0]clocksource: Switched to clocksource arch_sys_counter\n[    0.001859]  (0)[0:swapper/0]Console: colour dummy device 80x25\n[    0.001882]  (0)[0:swapper/0]Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=76800)\n[    0.001892]  (0)[0:swapper/0]pid_max: default: 32768 minimum: 301\n[    0.001961]  (0)[0:swapper/0]Security Framework initialized\n[    0.001973]  (0)[0:swapper/0]SELinux:  Initializing.\n[    0.001998]  (0)[0:swapper/0]SELinux:  Starting in permissive mode\n[    0.002030]  (0)[0:swapper/0]Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.002035]  (0)[0:swapper/0]Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.003100]  (0)[1:swapper/0]/cpus/cpu@0: Missing clock-frequency property\n[    0.003111]  (0)[1:swapper/0]/cpus/cpu@100: Missing clock-frequency property\n[    0.003118]  (0)[1:swapper/0]/cpus/cpu@200: Missing clock-frequency property\n[    0.003125]  (0)[1:swapper/0]/cpus/cpu@300: Missing clock-frequency property\n[    0.003131]  (0)[1:swapper/0]/cpus/cpu@400: Missing clock-frequency property\n[    0.003139]  (0)[1:swapper/0]/cpus/cpu@500: Missing clock-frequency property\n[    0.003147]  (0)[1:swapper/0]/cpus/cpu@600: Missing clock-frequency property\n[    0.003152]  (0)[1:swapper/0]/cpus/cpu@700: Missing clock-frequency property\n[    0.003315]  (0)[1:swapper/0]sched-energy: Sched-energy-costs installed from DT\n[    0.006719]  (0)[1:swapper/0]ASID allocator initialised with 32768 entries\n[    0.017081]  (0)[1:swapper/0]MSM Memory Dump base table set up\n[    0.017106]  (0)[1:swapper/0]MSM Memory Dump apps data table set up\n[    0.086739]  (0)[1:swapper/0]Brought up 8 CPUs\n[    0.086749]  (0)[1:swapper/0]SMP: Total of 8 processors activated.\n[    0.086754]  (0)[1:swapper/0]CPU features: detected feature: GIC system register CPU interface\n[    0.086758]  (0)[1:swapper/0]CPU features: detected feature: Privileged Access Never\n[    0.086761]  (0)[1:swapper/0]CPU features: detected feature: User Access Override\n[    0.086765]  (0)[1:swapper/0]CPU features: detected feature: 32-bit EL0 Support\n[    0.086770]  (0)[1:swapper/0]CPU features: detected feature: Kernel page table isolation (KPTI)\n[    0.158479]  (0)[1:swapper/0]CPU: All CPU(s) started at EL1\n[    0.158539]  (0)[13:migration/0]alternatives: patching kernel code\n[    0.236987]  (0)[1:swapper/0]clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns\n[    0.237005]  (0)[1:swapper/0]futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.241406]  (0)[1:swapper/0]pinctrl core: initialized pinctrl subsystem\n[    0.242168]  (0)[1:swapper/0]NET: Registered protocol family 16\n[    0.243729]  (0)[1:swapper/0]schedtune: init normalization constants...\n[    0.243741]  (0)[1:swapper/0]schedtune: CLUSTER[0]        min_pwr:     1 max_pwr:    19\n[    0.243748]  (0)[1:swapper/0]schedtune: CPU[0]            min_pwr:     4 max_pwr:   139\n[    0.243752]  (0)[1:swapper/0]schedtune: SYSTEM            min_pwr:     5 max_pwr:   158\n[    0.243758]  (0)[1:swapper/0]schedtune: using normalization constants mul: 2891383213 sh1: 1 sh2: 7\n[    0.243760]  (0)[1:swapper/0]schedtune: verify normalization constants...\n[    0.243764]  (0)[1:swapper/0]schedtune: max_pwr/2^0:  153 => norm_pwr:  1024\n[    0.243767]  (0)[1:swapper/0]schedtune: max_pwr/2^1:   76 => norm_pwr:   508\n[    0.243769]  (0)[1:swapper/0]schedtune: max_pwr/2^2:   38 => norm_pwr:   254\n[    0.243772]  (0)[1:swapper/0]schedtune: max_pwr/2^3:   19 => norm_pwr:   127\n[    0.243774]  (0)[1:swapper/0]schedtune: max_pwr/2^4:    9 => norm_pwr:    60\n[    0.243778]  (0)[1:swapper/0]schedtune: max_pwr/2^5:    4 => norm_pwr:    26\n[    0.243781]  (0)[1:swapper/0]schedtune: configured to support 5 boost groups\n[    0.246130]  (0)[1:swapper/0]cpuidle: using governor qcom\n[    0.250871]  (0)[1:swapper/0]vdso32: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.250885]  (0)[1:swapper/0]vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.250892]  (0)[1:swapper/0]hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.251673]  (0)[1:swapper/0]DMA: preallocated 256 KiB pool for atomic allocations\n[    0.253374]  (0)[1:swapper/0]serialID 0xfb78c230\n[    0.253414]  (0)[1:swapper/0]boot_mode_init: parse boot_mode\n[    0.253431]  (0)[1:swapper/0]board_boot_mode_init boot_mode=reboot\n[    0.253446]  (0)[1:swapper/0]board_mfg_mode_init, ftm_mode=0\n[    0.253460]  (0)[1:swapper/0]start_reason_init: parse poweron reason hard_reset i = 10\n[    0.253481]  (0)[1:swapper/0]songxh create systeminto node suscess!\n[    0.254863]  (0)[1:swapper/0]exit: IPA_USB init success!\n[    0.258400]  (0)[1:swapper/0]irq: no irq domain found for /soc/pinctrl@03400000 !\n[    0.262030]  (0)[1:swapper/0]OF: amba_device_add() failed (-16) for /soc/cti@6867000\n[    0.265377]  (0)[1:swapper/0]irq: no irq domain found for /soc/qcom,mdss_mdp@ae00000 !\n[    0.265464]  (0)[1:swapper/0]irq: no irq domain found for /soc/qcom,mdss_mdp@ae00000 !\n[    0.265554]  (0)[1:swapper/0]irq: no irq domain found for /soc/qcom,mdss_mdp@ae00000 !\n[    0.266542]  (0)[1:swapper/0]sps:sps is ready.\n[    0.269583]  (0)[1:swapper/0]unable to find DT imem DLOAD mode node\n[    0.271342]  (0)[1:swapper/0]unable to find DT imem EDLOAD mode node\n[    0.274920]  (0)[1:swapper/0]msm_watchdog 17980000.qcom,wdt: wdog absent resource not present\n[    0.274943]  (0)[1:swapper/0]msm_watchdog 17980000.qcom,wdt: No need to allocate memory for scandumps\n[    0.275817]  (0)[1:swapper/0]msm_watchdog 17980000.qcom,wdt: MSM Watchdog Initialized\n[    0.277031]  (0)[1:swapper/0]platform soc:mem_dump: assigned reserved memory node mem_dump_region\n[    0.307918]  (0)[77:kworker/u16:1]spmi spmi-0: PMIC arbiter version v5 (0x50000000)\n[    0.312807]  (0)[77:kworker/u16:1]LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.312914]  (0)[77:kworker/u16:1]OLEDB: qpnp_oledb_regulator_probe: Failed to parse common OLEDB device tree\n[    0.313805]  (0)[1:swapper/0]platform 62400000.qcom,lpass: assigned reserved memory node pil_adsp_region@95600000\n[    0.314427]  (0)[1:swapper/0]platform soc:qcom,ipa_fws: assigned reserved memory node ips_fw_region@0x97400000\n[    0.314566]  (0)[1:swapper/0]platform 4080000.qcom,mss: assigned reserved memory node modem_region@8b000000\n[    0.314643]  (0)[1:swapper/0]platform aae0000.qcom,venus: assigned reserved memory node pil_video_region@94600000\n[    0.314753]  (0)[1:swapper/0]platform 8300000.qcom,turing: assigned reserved memory node cdsp_regions@94C00000\n[    0.315206]  (0)[1:swapper/0]platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.318762]  (0)[1:swapper/0]pm660l_s3_level: Bringing 1uV into 17-17uV\n[    0.318859]  (0)[1:swapper/0]pm660l_s3_level: supplied by pm660l_s1_level\n[    0.318948]  (0)[1:swapper/0]pm660l_s3_level_ao: Bringing 1uV into 17-17uV\n[    0.319028]  (0)[1:swapper/0]pm660l_s3_level_ao: supplied by pm660l_s1_level_ao\n[    0.328485]  (0)[1:swapper/0]sdm670-pinctrl 3400000.pinctrl: invalid resource\n[    0.339502]  (0)[1:swapper/0]platform soc:qcom,kgsl-hyp: assigned reserved memory node gpu_region@0x97415000\n[    0.365083]  (0)[1:swapper/0]gpu_cx_gdsc: supplied by pm660l_s3_level\n[    0.373175]  (0)[1:swapper/0]cam_cc-sdm845 ad00000.qcom,camcc: Registered Camera CC clocks\n[    0.374265]  (0)[1:swapper/0]qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.375145]  (0)[1:swapper/0]clk-rpmh soc:qcom,rpmhclk: Registered RPMh clocks\n[    0.377021]  (0)[1:swapper/0]disp_cc-sdm845 af00000.qcom,dispcc: Registered Display CC clocks\n[    0.390483]  (0)[1:swapper/0]gcc-sdm845 100000.qcom,gcc: Registered GCC clocks\n[    0.391540]  (0)[1:swapper/0]clk: gpu_cc_gx_gfx3d_clk_src: set OPP pair(180000000 Hz: 49 uV) on 5000000.qcom,kgsl-3d0\n[    0.391914]  (0)[1:swapper/0]clk: gpu_cc_gx_gfx3d_clk_src: set OPP pair(700000000 Hz: 385 uV) on 5000000.qcom,kgsl-3d0\n[    0.392013]  (0)[1:swapper/0]clk: gpu_cc_gx_gfx3d_clk_src: set OPP pair(780000000 Hz: 417 uV) on 5000000.qcom,kgsl-3d0\n[    0.392102]  (0)[1:swapper/0]gfxcc-sdm845 5090000.qcom,gfxcc: Registered GFX CC clocks\n[    0.393736]  (0)[1:swapper/0]clk: gpu_cc_gmu_clk_src: set OPP pair(19200000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.393795]  (0)[1:swapper/0]clk: gpu_cc_gmu_clk_src: set OPP pair(200000000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.393972]  (0)[1:swapper/0]gpu_cc-sdm845 5090000.qcom,gpucc: Registered GPU CC clocks\n[    0.395206]  (0)[1:swapper/0]video_cc-sdm845 ab00000.qcom,videocc: Registered Video CC clocks\n[    0.396924]  (0)[1:swapper/0]KPI: Bootloader start count = 75521\n[    0.396931]  (0)[1:swapper/0]KPI: Bootloader end count = 131097\n[    0.396934]  (0)[1:swapper/0]KPI: Bootloader display count = 589805527\n[    0.396936]  (0)[1:swapper/0]KPI: Bootloader load kernel count = 217798148\n[    0.396940]  (0)[1:swapper/0]KPI: Kernel MPM timestamp = 154723\n[    0.396943]  (0)[1:swapper/0]KPI: Kernel MPM Clock frequency = 32768\n[    0.396969]  (0)[1:swapper/0]socinfo_print: v0.15, id=393, ver=1.1, raw_id=264, raw_ver=1, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65563, pmic_die_revision=131072 foundry_id=3 serial_number=4218995248 num_pmics=2 chip_family=0x55 raw_device_family=0x6 raw_device_number=0x4 nproduct_id=0x400 num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0x6 ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.397058]  (0)[1:swapper/0]Minidump: Enabled with max number of regions 200\n[    0.397060]  (0)[1:swapper/0]msm_bus_fabric_rpmh_init_driver\n[    0.397901]  (0)[1:swapper/0]msm_bus: Probe started\n[    0.398432]  (0)[1:swapper/0]msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.398484]  (0)[1:swapper/0]msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.398500]  (0)[1:swapper/0]msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.398557]  (0)[1:swapper/0]msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.400757]  (0)[1:swapper/0]msm_bus: DT Parsing complete\n[    0.403782]  (0)[1:swapper/0]msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.403954]  (0)[1:swapper/0]msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.404007]  (0)[1:swapper/0]msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.404209]  (0)[1:swapper/0]msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.417517]  (0)[1:swapper/0]actuator_regulator: supplied by pm660l_bob\n[    0.417820]  (0)[1:swapper/0]camera_ldo: supplied by pm660_s6\n[    0.418060]  (0)[1:swapper/0]camera_rear_vdig_ldo: supplied by pm660_s6\n[    0.418249]  (0)[1:swapper/0]camera_vio_ldo: supplied by pm660_s4\n[    0.418499]  (0)[1:swapper/0]camera_vana_ldo: supplied by pm660l_bob\n[    0.418737]  (0)[1:swapper/0]camera_front_vana_ldo: supplied by pm660l_bob\n[    0.418942]  (0)[1:swapper/0]cam_sensor_sub_vdig: supplied by pm660_s6\n[    0.419177]  (0)[1:swapper/0]camera_v_custom1_ldo: supplied by pm660_s4\n[    0.419379]  (0)[1:swapper/0]camera_rear_aux1_vana: supplied by pm660l_bob\n[    0.420752]  (0)[1:swapper/0]arm-smmu 5040000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.420824]  (0)[1:swapper/0]arm-smmu 5040000.arm,smmu-kgsl: \tstream matching with 5 register groups, mask 0x7\n[    0.420924]  (0)[1:swapper/0]arm-smmu 5040000.arm,smmu-kgsl: found 8 context interrupt(s) but have 5 context banks. assuming 5 context interrupts.\n[    0.423270]  (0)[1:swapper/0]register_client_adhoc:find path.src 139 dest 627\n[    0.423525]  (0)[1:swapper/0]register_client_adhoc:Client handle 1 apps_smmu\n[    0.423779]  (0)[1:swapper/0]arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.423885]  (0)[1:swapper/0]arm-smmu 15000000.apps-smmu: \tstream matching with 71 register groups, mask 0x7fff\n[    0.424575]  (0)[1:swapper/0]arm-smmu 15000000.apps-smmu: found 64 context interrupt(s) but have 47 context banks. assuming 47 context interrupts.\n[    0.425289]  (0)[1:swapper/0]register_client_adhoc:find path.src 139 dest 627\n[    0.425448]  (0)[1:swapper/0]register_client_adhoc:Client handle 2 apps_smmu\n[    0.425669]  (0)[1:swapper/0]register_client_adhoc:find path.src 139 dest 627\n[    0.425800]  (0)[1:swapper/0]register_client_adhoc:Client handle 3 apps_smmu\n[    0.425996]  (0)[1:swapper/0]register_client_adhoc:find path.src 22 dest 773\n[    0.426075]  (0)[1:swapper/0]register_client_adhoc:Client handle 4 mnoc_hf_0_tbu\n[    0.426259]  (0)[1:swapper/0]register_client_adhoc:find path.src 22 dest 773\n[    0.426325]  (0)[1:swapper/0]register_client_adhoc:Client handle 5 mnoc_hf_1_tbu\n[    0.426520]  (0)[1:swapper/0]register_client_adhoc:find path.src 137 dest 772\n[    0.426593]  (0)[1:swapper/0]register_client_adhoc:Client handle 6 mnoc_sf_0_tbu\n[    0.426740]  (0)[1:swapper/0]register_client_adhoc:find path.src 139 dest 627\n[    0.426876]  (0)[1:swapper/0]register_client_adhoc:Client handle 7 apps_smmu\n[    0.427071]  (0)[1:swapper/0]register_client_adhoc:find path.src 139 dest 627\n[    0.427196]  (0)[1:swapper/0]register_client_adhoc:Client handle 8 apps_smmu\n[    0.428416]  (0)[1:swapper/0]iommu: Adding device 8c0000.qcom,qupv3_0_geni_se:qcom,iommu_qupv3_0_geni_se_cb to group 0\n[    0.428590]  (0)[1:swapper/0]iommu: Adding device ac0000.qcom,qupv3_1_geni_se:qcom,iommu_qupv3_1_geni_se_cb to group 1\n[    0.428755]  (0)[1:swapper/0]iommu: Adding device ae00000.qcom,mdss_mdp to group 2\n[    0.428920]  (0)[1:swapper/0]iommu: Adding device 1de0000.qcedev to group 3\n[    0.429081]  (0)[1:swapper/0]iommu: Adding device 1de0000.qcrypto to group 4\n[    0.429251]  (0)[1:swapper/0]iommu: Adding device 800000.qcom,gpi-dma to group 5\n[    0.429407]  (0)[1:swapper/0]iommu: Adding device a00000.qcom,gpi-dma to group 6\n[    0.429601]  (0)[1:swapper/0]iommu: Adding device 18800000.qcom,icnss to group 7\n[    0.429785]  (0)[1:swapper/0]iommu: Adding device soc:apps_iommu_test_device to group 8\n[    0.429933]  (0)[1:swapper/0]iommu: Adding device soc:apps_iommu_coherent_test_device to group 8\n[    0.430110]  (0)[1:swapper/0]iommu: Adding device soc:qcom,msm-audio-ion to group 9\n[    0.430273]  (0)[1:swapper/0]iommu: Adding device a600000.ssusb to group 10\n[    0.430429]  (0)[1:swapper/0]iommu: Adding device soc:usb_audio_qmi_dev to group 11\n[    0.432298]  (0)[1:swapper/0]vgaarb: loaded\n[    0.432830]  (0)[1:swapper/0]qcom,qpnp-misc c440000.qcom,spmi:qcom,pm660@0:qcom,misc@900: probe successful\n[    0.433728]  (0)[1:swapper/0]SCSI subsystem initialized\n[    0.433914]  (0)[1:swapper/0]usbcore: registered new interface driver usbfs\n[    0.433944]  (0)[1:swapper/0]usbcore: registered new interface driver hub\n[    0.433984]  (0)[1:swapper/0]usbcore: registered new device driver usb\n[    0.434570]  (0)[1:swapper/0]soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.434967]  (0)[1:swapper/0]qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.435000]  (0)[1:swapper/0]qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)\n[    0.435206]  (0)[1:swapper/0]input: qpnp_pon as /devices/virtual/input/input0\n[    0.435512]  (0)[1:swapper/0]qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: probe keycode = 116,key_st = 0x0\n[    0.435569]  (0)[1:swapper/0]qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: No PON config. specified\n[    0.435623]  (0)[1:swapper/0]qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (secondary PMIC) and 'cold' boot\n[    0.435650]  (0)[1:swapper/0]qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from GP1 (Keypad_Reset1)\n[    0.435697]  (0)[1:swapper/0]qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: probe keycode = 116,key_st = 0x0\n[    0.436157]  (0)[1:swapper/0]oppo_fp_common soc:oppo_fp_common: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660@0/pinctrl@c000/oppo_fp_common/gpio_id2_default, deferring probe\n[    0.436204]  (0)[1:swapper/0]media: Linux media interface: v0.10\n[    0.436226]  (0)[1:swapper/0]Linux video capture interface: v2.00\n[    0.436257]  (0)[1:swapper/0][OPPO_CHG][oppo_short_ic_subsys_init] init start\n[    0.436279]  (0)[1:swapper/0][OPPO_CHG][oppo_short_ic_subsys_init] Success to register oppo_short_ic i2c driver.\n[    0.436283]  (0)[1:swapper/0][OPPO_CHG][n76e_subsys_init] init start\n[    0.436302]  (0)[1:swapper/0][OPPO_CHG][n76e_subsys_init] Success to register n76e i2c driver.\n[    0.436304]  (0)[1:swapper/0][OPPO_CHG][stm8s_subsys_init] init start\n[    0.436319]  (0)[1:swapper/0][OPPO_CHG][stm8s_subsys_init] Success to register stm8s i2c driver.\n[    0.436322]  (0)[1:swapper/0][OPPO_CHG][rk826_subsys_init] init start\n[    0.436337]  (0)[1:swapper/0][OPPO_CHG][rk826_subsys_init] Success to register rk826 i2c driver.\n[    0.436340]  (0)[1:swapper/0][OPPO_CHG][op10_subsys_init] init start\n[    0.436356]  (0)[1:swapper/0][OPPO_CHG][op10_subsys_init] Success to register op10 i2c driver.\n[    0.436371]  (0)[1:swapper/0][OPPO_CHG][adapter_ic_init] success\n[    0.445225]  (0)[1:swapper/0]Unable to get pmic_revid rc=-22\n[    0.447138]  (0)[1:swapper/0]Linux cec interface: v0.10\n[    0.447501]  (0)[1:swapper/0]platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@0x9e400000\n[    0.447622]  (0)[1:swapper/0]platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.447709]  (0)[1:swapper/0]platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.447792]  (0)[1:swapper/0]platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.447945]  (0)[1:swapper/0]platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node sdsp_region\n[    0.448178]  (0)[1:swapper/0]ION heap system created\n[    0.448304]  (0)[1:swapper/0]ION heap qsecom created at 0x000000009e400000 with size 1400000\n[    0.448314]  (0)[1:swapper/0]ION heap qsecom_ta created at 0x00000000fec00000 with size 1000000\n[    0.448322]  (0)[1:swapper/0]ION heap spss created at 0x00000000f5800000 with size 800000\n[    0.448330]  (0)[1:swapper/0]ION heap secure_display created at 0x00000000f9000000 with size 5c00000\n[    0.448340]  (0)[1:swapper/0]ION heap secure_heap created\n[    0.448359]  (0)[1:swapper/0]ION heap adsp created at 0x00000000f8000000 with size 400000\n[    0.449841]  (0)[1:swapper/0]ipa ipa3_tz_unlock_reg:5250 Bad parameters\n[    0.449851]  (0)[1:swapper/0]ipa ipa3_pre_init:5452 Failed to unlock memory region using TZ\n[    0.450032]  (0)[1:swapper/0]register_client_adhoc:find path.src 90 dest 512\n[    0.450560]  (0)[1:swapper/0]register_client_adhoc:find path.src 90 dest 585\n[    0.450689]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 676\n[    0.450910]  (0)[1:swapper/0]register_client_adhoc:find path.src 143 dest 777\n[    0.450978]  (0)[1:swapper/0]register_client_adhoc:Client handle 9 ipa\n[    0.451608]  (0)[1:swapper/0]ipa ipa3_uc_state_check:284 uC interface not initialized\n[    0.455103]  (0)[1:swapper/0]ipa ipa3_uc_state_check:284 uC interface not initialized\n[    0.455759]  (0)[1:swapper/0]iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_ap to group 12\n[    0.456060]  (0)[1:swapper/0]iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_wlan to group 13\n[    0.456321]  (0)[1:swapper/0]iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_uc to group 14\n[    0.457525]  (0)[1:swapper/0]PMIC@SID0: PM660 v2.0 options: 0, 0, 0, 0\n[    0.457657]  (0)[1:swapper/0]PMIC@SID2: PM660L v2.0.1 options: 0, 0, 0, 0\n[    0.462511]  (0)[1:swapper/0]Advanced Linux Sound Architecture Driver Initialized.\n[    0.462938]  (0)[1:swapper/0]Bluetooth: Core ver 2.22\n[    0.462970]  (0)[1:swapper/0]NET: Registered protocol family 31\n[    0.462973]  (0)[1:swapper/0]Bluetooth: HCI device and connection manager initialized\n[    0.462983]  (0)[1:swapper/0]Bluetooth: HCI socket layer initialized\n[    0.462990]  (0)[1:swapper/0]Bluetooth: L2CAP socket layer initialized\n[    0.463015]  (0)[1:swapper/0]Bluetooth: SCO socket layer initialized\n[    0.464365]  (0)[1:swapper/0]NetLabel: Initializing\n[    0.464368]  (0)[1:swapper/0]NetLabel:  domain hash size = 128\n[    0.464371]  (0)[1:swapper/0]NetLabel:  protocols = UNLABELED CIPSOv4\n[    0.464413]  (0)[1:swapper/0]NetLabel:  unlabeled traffic allowed by default\n[    0.464814]  (0)[1:swapper/0]register_client_adhoc:find path.src 22 dest 512\n[    0.465118]  (0)[1:swapper/0]register_client_adhoc:find path.src 23 dest 512\n[    0.465324]  (0)[74:kworker/0:1]register_client_adhoc:Client handle 10 bus-proxy-client\n[    0.467159]  (0)[74:kworker/0:1]LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=5400mV ncp_voltage=5400mV bst_voltage=5500mV\n[    0.467267]  (0)[74:kworker/0:1]regulator-oledb: Bringing 0uV into 5000000-5000000uV\n[    0.467477]  (0)[74:kworker/0:1]OLEDB: qpnp_oledb_regulator_probe: OLEDB registered successfully, ext_pin_en=1 mod_en=1 current_voltage=17800 mV\n[    0.467549]  (0)[74:kworker/0:1]qpnp_labibb_regulator_probe: qpnp_labibb: unknown peripheral type 81\n[    0.467561]  (0)[74:kworker/0:1]qcom,qpnp-labibb-regulator: probe of c440000.qcom,spmi:qcom,pm660l@3:qpnp-labibb-regulator failed with error -22\n[    0.467918]  (0)[74:kworker/0:1]gpu_gx_gdsc: supplied by pm660l_s2_level\n[    0.469401]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 576000 uv) on cpu0\n[    0.469736]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (1708800000 Hz, 764000 uv) on cpu0\n[    0.469797]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 576000 uv) on cpu1\n[    0.470131]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (1708800000 Hz, 764000 uv) on cpu1\n[    0.470190]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 576000 uv) on cpu2\n[    0.470525]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (1708800000 Hz, 764000 uv) on cpu2\n[    0.470591]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 576000 uv) on cpu3\n[    0.470920]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (1708800000 Hz, 764000 uv) on cpu3\n[    0.470973]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 576000 uv) on cpu4\n[    0.471290]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (1708800000 Hz, 764000 uv) on cpu4\n[    0.471344]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 576000 uv) on cpu5\n[    0.471671]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (1708800000 Hz, 764000 uv) on cpu5\n[    0.471726]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 576000 uv) on cpu6\n[    0.472302]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (2304000000 Hz, 904000 uv) on cpu6\n[    0.472362]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 576000 uv) on cpu7\n[    0.472881]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (2304000000 Hz, 904000 uv) on cpu7\n[    0.473190]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on soc:qcom,l3-cpu0\n[    0.473193]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on soc:qcom,l3-cpu6\n[    0.473196]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on soc:qcom,l3-cdsp\n[    0.474433]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (1440000000 Hz, 744000 uv) on soc:qcom,l3-cpu0\n[    0.474437]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (1440000000 Hz, 744000 uv) on soc:qcom,l3-cpu6\n[    0.474440]  (0)[74:kworker/0:1]clk: add_opp: Set OPP pair (1440000000 Hz, 744000 uv) on soc:qcom,l3-cdsp\n[    0.476295]  (0)[74:kworker/0:1]cpufreq: driver osm-cpufreq up and running\n[    0.476300]  (0)[74:kworker/0:1]clk: clk_cpu_osm_driver_probe: OSM CPUFreq driver inited\n[    0.476355]  (0)[74:kworker/0:1]oppo_fp_common soc:oppo_fp_common: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660@0/pinctrl@c000/oppo_fp_common/gpio_id2_default, deferring probe\n[    0.478608]  (0)[74:kworker/0:1]sched-energy energy-costs: cpu=0 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.478616]  (0)[74:kworker/0:1]sched-energy energy-costs: cpu=1 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.478623]  (0)[74:kworker/0:1]sched-energy energy-costs: cpu=2 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.478630]  (0)[74:kworker/0:1]sched-energy energy-costs: cpu=3 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.478636]  (0)[74:kworker/0:1]sched-energy energy-costs: cpu=4 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.478643]  (0)[74:kworker/0:1]sched-energy energy-costs: cpu=5 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.478652]  (0)[74:kworker/0:1]sched-energy energy-costs: cpu=6 eff=1740 [freq=300000 cap=134 power_d0=256] -> [freq=2611200 cap=1024 power_d0=1400]\n[    0.478658]  (0)[74:kworker/0:1]sched-energy energy-costs: cpu=7 eff=1740 [freq=300000 cap=134 power_d0=256] -> [freq=2611200 cap=1024 power_d0=1400]\n[    0.478971]  (0)[74:kworker/0:1]sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.479014]  (0)[74:kworker/0:1]oppo_fp_common soc:oppo_fp_common: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660@0/pinctrl@c000/oppo_fp_common/gpio_id2_default, deferring probe\n[    0.479801]  (0)[1:swapper/0]clocksource: Switched to clocksource arch_sys_counter\n[    0.517672]  (0)[1:swapper/0]VFS: Disk quotas dquot_6.6.0\n[    0.517725]  (0)[1:swapper/0]VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.518554]  (0)[1:swapper/0]debugcc-sdm845 soc:qcom,cc-debug: Registered debug mux successfully\n[    0.519613]  (0)[1:swapper/0]mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.519881]  (0)[1:swapper/0]mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.519889]  (0)[1:swapper/0]mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.519896]  (0)[1:swapper/0]mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.519906]  (0)[1:swapper/0]mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.519912]  (0)[1:swapper/0]mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.520599]  (0)[1:swapper/0]dsi_pll_clock_register_10nm: Registered DSI PLL ndx=0, clocks successfully\n[    0.520645]  (0)[1:swapper/0]mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.520733]  (0)[1:swapper/0]mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.520740]  (0)[1:swapper/0]mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.520746]  (0)[1:swapper/0]mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.520752]  (0)[1:swapper/0]mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.520758]  (0)[1:swapper/0]mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.525872]  (0)[1:swapper/0]dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.531156]  (0)[1:swapper/0]dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.531298]  (0)[1:swapper/0]dsi_pll_clock_register_10nm: Registered DSI PLL ndx=1, clocks successfully\n[    0.531323]  (0)[1:swapper/0]mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.537910]  (0)[1:swapper/0]NET: Registered protocol family 2\n[    0.537990]  (0)[1:swapper/0]IP idents hash table entries: 131072 (order: 8, 1048576 bytes)\n[    0.539947]  (0)[1:swapper/0]TCP established hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.540296]  (0)[1:swapper/0]TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)\n[    0.541109]  (0)[1:swapper/0]TCP: Hash tables configured (established 65536 bind 65536)\n[    0.541157]  (0)[1:swapper/0]UDP hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.541229]  (0)[1:swapper/0]UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.541422]  (0)[1:swapper/0]NET: Registered protocol family 1\n[    0.541446]  (0)[1:swapper/0]PCI: CLS 0 bytes, default 128\n[    0.541617]  (0)[74:kworker/0:1]oppo_fp_common soc:oppo_fp_common: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm660@0/pinctrl@c000/oppo_fp_common/gpio_id2_default, deferring probe\n[    0.542076]  (0)[1:swapper/0]Trying to unpack rootfs image as initramfs...\n[    0.742923]  (0)[1:swapper/0]Freeing initrd memory: 7492K\n[    0.744735]  (0)[1:swapper/0]hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.747970]  (0)[1:swapper/0]create_panic_flush_control\n[    0.748111]  (0)[1:swapper/0]===>PSIDEBUG:psi_proc_init\n[    0.749235]  (0)[1:swapper/0]audit: initializing netlink subsys (disabled)\n[    0.749284]  (0)[1:swapper/0]audit: type=2000 audit(0.747:1): initialized\n[    0.752375]  (0)[1:swapper/0]workingset: timestamp_bits=61 max_order=21 bucket_order=0\n[    0.754336]  (0)[1:swapper/0]resmap_account_init finished\n[    0.755141]  (0)[1:swapper/0]Registering sdcardfs 0.1\n[    0.755283]  (0)[1:swapper/0]fuse init (API version 7.26)\n[    0.755518]  (0)[1:swapper/0]exFAT: Version 1.2.9\n[    0.755565]  (0)[1:swapper/0]SELinux:  Registering netfilter hooks\n[    0.756290]  (0)[1:swapper/0]pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    0.756293]  (0)[1:swapper/0]pfk_f2fs [pfk_f2fs_init]: PFK F2FS inited successfully\n[    0.756298]  (0)[1:swapper/0]pfk [pfk_init]: Driver initialized successfully\n[    0.760097]  (0)[1:swapper/0]Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)\n[    0.760104]  (0)[1:swapper/0]io scheduler noop registered\n[    0.760107]  (0)[1:swapper/0]io scheduler deadline registered\n[    0.760140]  (0)[1:swapper/0]io scheduler cfq registered (default)\n[    0.773555]  (0)[1:swapper/0]fb0: Virtual frame buffer device, using 3000K of video memory\n[    0.775068]  (0)[1:swapper/0]qcom,qpnp-clkdiv c440000.qcom,spmi:qcom,pm660@0:qcom,clkdiv@5b00: Registered qpnp_clkdiv_1 successfully\n[    0.780333]  (0)[1:swapper/0]88e0000.qcom,msm-eud supply vdda33 not found, using dummy regulator\n[    0.792126]  (0)[1:swapper/0]icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.792232]  (0)[1:swapper/0]icnss: Platform driver probed successfully\n[    0.793373]  (0)[1:swapper/0]memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.793435]  (0)[1:swapper/0]memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.793488]  (0)[1:swapper/0]memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.794606]  (0)[1:swapper/0]register_client_adhoc:find path.src 125 dest 512\n[    0.795013]  (0)[1:swapper/0]register_client_adhoc:Client handle 11 scm_pas\n[    0.795026]  (0)[1:swapper/0]minidump-id not found for adsp\n[    0.795139]  (0)[1:swapper/0]minidump-id not found for ipa_fws\n[    0.795152]  (0)[1:swapper/0]subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    0.795661]  (0)[1:swapper/0]register_client_adhoc:find path.src 63 dest 512\n[    0.795858]  (0)[1:swapper/0]register_client_adhoc:Client handle 12 pil-venus\n[    0.795866]  (0)[1:swapper/0]minidump-id not found for venus\n[    0.795876]  (0)[1:swapper/0]subsys-pil-tz aae0000.qcom,venus: for venus segments only will be dumped.\n[    0.796147]  (0)[1:swapper/0]minidump-id not found for cdsp\n[    0.796368]  (0)[1:swapper/0]minidump-id not found for a615_zap\n[    0.796376]  (0)[1:swapper/0]subsys-pil-tz soc:qcom,kgsl-hyp: for a615_zap segments only will be dumped.\n[    0.797326]  (0)[1:swapper/0]pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    0.799129]  (0)[1:swapper/0][OHM_INFO][ohm_para_init]origin list: ctrl 0x5a02303f, logon 0x5a000000, trig 0x5a000000\n[    0.799161]  (0)[1:swapper/0][OHM_INFO][ohm_action_init]Success !\n[    0.799180]  (0)[1:swapper/0]kernel profiling enabled schedstats, disable via kernel.sched_schedstats.\n[    0.802343]  (0)[1:swapper/0][OHM_INFO][oppo_healthinfo_init]Success \n[    0.802346]  (0)[1:swapper/0]oppo_shutdown_detect: shutdown_detect:register shutdown_detect interface\n[    0.803575]  (0)[1:swapper/0]msm_geni_serial 898000.qcom,qup_uart: Wakeup byte 0xfd\n[    0.803634]  (0)[1:swapper/0]msm_geni_serial 898000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    0.804477]  (0)[1:swapper/0]898000.qcom,qup_uart: ttyHS0 at MMIO 0x898000 (irq = 10, base_baud = 0) is a MSM\n[    0.804921]  (0)[1:swapper/0]msm_geni_serial_init: Driver initialized\n[    0.805194]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 618\n[    0.805430]  (0)[188:hwrng]register_client_adhoc:Client handle 13 msm-rng-noc\n[    0.806386]  (0)[188:hwrng]random: crng init done\n[    0.811249]  (0)[1:swapper/0]diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    0.811252]  (0)[1:swapper/0]diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    0.854021]  (0)[1:swapper/0][drm] Initialized\n[    0.854328]  (0)[1:swapper/0]register_client_adhoc:find path.src 20003 dest 20515\n[    0.854476]  (0)[1:swapper/0]register_client_adhoc:find path.src 20004 dest 20515\n[    0.854548]  (0)[1:swapper/0]register_client_adhoc:Client handle 14 disp_rsc_mnoc\n[    0.854571]  (0)[1:swapper/0]register_client_adhoc:find path.src 20001 dest 20513\n[    0.854635]  (0)[1:swapper/0]register_client_adhoc:Client handle 15 disp_rsc_llcc\n[    0.854661]  (0)[1:swapper/0]register_client_adhoc:find path.src 20000 dest 20512\n[    0.854726]  (0)[1:swapper/0]register_client_adhoc:Client handle 16 disp_rsc_ebi\n[    0.854962]  (0)[1:swapper/0][sde_rsc_hw:rsc_hw_init:679]: sde rsc init successfully done\n[    0.854977]  (0)[1:swapper/0][sde_rsc:sde_rsc_probe:1422]: sde rsc index:0 probed successfully\n[    0.855958]  (0)[1:swapper/0]msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-0\n[    0.856092]  (0)[1:swapper/0]msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-1\n[    0.857014]  (0)[1:swapper/0]AXI: get_pdata(): Error: Client name not found\n[    0.857018]  (0)[1:swapper/0]AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.857021]  (0)[1:swapper/0]dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-0\n[    0.857148]  (0)[1:swapper/0]AXI: get_pdata(): Error: Client name not found\n[    0.857151]  (0)[1:swapper/0]AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.857154]  (0)[1:swapper/0]dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-1\n[    0.858062]  (0)[1:swapper/0]sdm670-pinctrl 3400000.pinctrl: invalid group \"gpio54\" for function \"mdp_vsync\"\n[    0.858079]  (0)[1:swapper/0]sdm670-pinctrl 3400000.pinctrl: invalid group \"gpio54\" for function \"mdp_vsync\"\n[    0.858180]  (0)[1:swapper/0]sdm670-pinctrl 3400000.pinctrl: invalid group \"gpio54\" for function \"mdp_vsync\"\n[    0.858196]  (0)[1:swapper/0]sdm670-pinctrl 3400000.pinctrl: invalid group \"gpio54\" for function \"mdp_vsync\"\n[    0.858269]  (0)[1:swapper/0]msm-dsi-panel:[dsi_panel_parse_triggers:1454] [oppo18621 hx83112a 1080 2340 video mode dsi panel] fallback to default te-pin-select\n[    0.858355]  (0)[1:swapper/0]msm-dsi-panel:[dsi_panel_parse_reset_sequence:2265] RESET SEQ LENGTH = 24\n[    0.858375]  (0)[1:swapper/0]msm-dsi-panel:[dsi_panel_parse_misc_features:2314] dsi_panel_parse_misc_features: ulps feature disabled\n[    0.858379]  (0)[1:swapper/0]msm-dsi-panel:[dsi_panel_parse_misc_features:2320] dsi_panel_parse_misc_features: ulps during suspend feature disabled\n[    0.858427]  (0)[1:swapper/0]msm-dsi-panel:[dsi_panel_parse_esd_config:3494] ESD enabled with mode: register_read\n[    0.859768]  (0)[1:swapper/0]msm-dsi-display:[dsi_display_get_boot_display] index = 0\n[    0.859772]  (0)[1:swapper/0]msm-dsi-display:[dsi_display_get_boot_display] index = 1\n[    0.860228]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 590\n[    0.860497]  (0)[1:swapper/0]register_client_adhoc:Client handle 17 mdss_reg\n[    0.860525]  (0)[1:swapper/0]register_client_adhoc:find path.src 22 dest 512\n[    0.860730]  (0)[1:swapper/0]register_client_adhoc:find path.src 23 dest 512\n[    0.860900]  (0)[1:swapper/0]register_client_adhoc:Client handle 18 mdss_sde\n[    0.860971]  (0)[1:swapper/0]msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops sde_rsc_comp_ops)\n[    0.860980]  (0)[1:swapper/0]msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops sde_wb_comp_ops)\n[    0.861302]  (0)[1:swapper/0]sdm670-pinctrl 3400000.pinctrl: invalid group \"gpio54\" for function \"mdp_vsync\"\n[    0.861319]  (0)[1:swapper/0]sdm670-pinctrl 3400000.pinctrl: invalid group \"gpio54\" for function \"mdp_vsync\"\n[    0.861360]  (0)[1:swapper/0]msm-dsi-display:[dsi_display_bind] Successfully bind display panel 'dsi_oppo18621dsjm_hx83112a_1080_2340_video_display'\n[    0.861606]  (0)[1:swapper/0]msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display@21 (ops dsi_display_comp_ops)\n[    0.861636]  (0)[1:swapper/0][drm] mapped mdp address space @ffffff800ef00000\n[    0.861661]  (0)[1:swapper/0]msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: vbif_nrt_phys\n[    0.861713]  (0)[1:swapper/0][drm:_sde_kms_get_splash_data:3271] found continuous splash base address:9c000000 size:2300000\n[    0.863086]  (0)[1:swapper/0][drm:sde_kms_hw_init:3400] sde hardware revision:0x40010000\n[    0.864057]  (0)[1:swapper/0][drm] Created domain mdp_ns [80000000,80000000] secure=0\n[    0.866947]  (0)[1:swapper/0]iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 15\n[    0.867377]  (0)[1:swapper/0][drm] probing device qcom,smmu_sde_sec\n[    0.867387]  (0)[1:swapper/0][drm] Created domain mdp_s [80000000,80000000] secure=1\n[    0.870920]  (0)[1:swapper/0][drm] invalid feature map 9 for feature 10\n[    0.871014]  (0)[1:swapper/0][drm] invalid feature map 9 for feature 10\n[    0.872673]  (0)[1:swapper/0][drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    0.872677]  (0)[1:swapper/0][drm] No driver support for vblank timestamp query.\n[    0.873702]  (0)[1:swapper/0]msm-dsi-panel:[dsi_panel_parse_topology:3092] override topology: cfg:0 lm:1 comp_enc:0 intf:1\n[    0.873803]  (0)[1:swapper/0]msm-dsi-panel:[dsi_panel_parse_partial_update_caps:3202] partial update disabled as the property is not set\n[    0.873972]  (0)[1:swapper/0]dsi-ctrl:[_dsi_ctrl_setup_isr] [DSI_0] IRQ 605 registered\n[    0.926090]  (0)[1:swapper/0]iommu: Adding device 506a000.qcom,gmu:gmu_user to group 16\n[    0.926389]  (0)[1:swapper/0]iommu: Adding device 506a000.qcom,gmu:gmu_kernel to group 17\n[    0.928087]  (0)[1:swapper/0]register_client_adhoc:find path.src 26 dest 512\n[    0.928301]  (0)[1:swapper/0]register_client_adhoc:Client handle 19 grp3d\n[    0.928319]  (0)[1:swapper/0]register_client_adhoc:find path.src 26 dest 10036\n[    0.928456]  (0)[1:swapper/0]register_client_adhoc:Client handle 20 cnoc\n[    0.928461]  (0)[1:swapper/0]query_client_usecase_all: query_start\n[    0.928511]  (0)[1:swapper/0]query_client_usecase_all: query_start\n[    0.929702]  (0)[1:swapper/0]iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 18\n[    0.930054]  (0)[1:swapper/0]iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 19\n[    0.930323]  (0)[1:swapper/0]iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure_alt to group 20\n[    0.930751]  (0)[1:swapper/0]kgsl: _kgsl_iommu_cb_probe: dt: Unused context label gfx3d_secure_alt\n[    0.951710]  (0)[1:swapper/0]llcc_slice_get_entry:can't find 11 usecase id\n[    0.974179]  (0)[1:swapper/0]brd: module loaded\n[    0.996294]  (0)[1:swapper/0]loop: module loaded\n[    0.997638]  (0)[1:swapper/0]zram: Added device: zram0\n[    0.999329]  (0)[1:swapper/0]QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1400000\n[    0.999357]  (0)[1:swapper/0]QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.999364]  (0)[1:swapper/0]QSEECOM: qseecom_probe: no-clock-support=0x1\n[    0.999368]  (0)[1:swapper/0]QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    0.999443]  (0)[1:swapper/0]register_client_adhoc:find path.src 125 dest 512\n[    0.999862]  (0)[1:swapper/0]register_client_adhoc:Client handle 21 qseecom-noc\n[    1.000000]  (0)[1:swapper/0]QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    1.002867]  (0)[1:swapper/0][oppo_motor]  drv8834_init : call\n[    1.003254]  (0)[1:swapper/0][oppo_motor]  stspin220_init : call\n[    1.003616]  (0)[1:swapper/0][oppo_motor]  lt3572_init : call\n[    1.003958]  (0)[1:swapper/0][oppo_motor]  m1120_init : call\n[    1.003975]  (0)[1:swapper/0][oppo_motor]  ist8801_init : call\n[    1.004000]  (0)[1:swapper/0]Loading pn544 driver\n[    1.004248]  (0)[1:swapper/0]register_client_adhoc:find path.src 125 dest 512\n[    1.004565]  (0)[1:swapper/0]register_client_adhoc:Client handle 22 qcedev-noc\n[    1.005865]  (0)[1:swapper/0]qce 1de0000.qcedev: QTI Crypto 5.4.1 device found @0x1de0000\n[    1.005872]  (0)[1:swapper/0]qce 1de0000.qcedev: CE device = 0x0 IO base, CE = ffffff800e0a0000 Consumer (IN) PIPE 6,\n               Producer (OUT) PIPE 7 IO base BAM = 0000000000000000\n               BAM IRQ 19 Engines Availability = 0x2011073\n[    1.006046]  (0)[1:swapper/0]sps:BAM 0x0000000001dc4000 is registered.\n[    1.006204]  (0)[1:swapper/0]sps:BAM 0x0000000001dc4000 (va:0xffffff800ebc0000) enabled: ver:0x27, number of pipes:16\n[    1.006387]  (0)[1:swapper/0]QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 19\n[    1.008806]  (0)[1:swapper/0]register_client_adhoc:find path.src 125 dest 512\n[    1.009151]  (0)[1:swapper/0]register_client_adhoc:Client handle 23 qcrypto-noc\n[    1.010142]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: QTI Crypto 5.4.1 device found @0x1de0000\n[    1.010148]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: CE device = 0x0 IO base, CE = ffffff800ee60000 Consumer (IN) PIPE 4,\n               Producer (OUT) PIPE 5 IO base BAM = 0000000000000000\n               BAM IRQ 19 Engines Availability = 0x2011073\n[    1.010406]  (0)[1:swapper/0]QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 19\n[    1.010912]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    1.011073]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    1.011184]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    1.011292]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    1.011401]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    1.011507]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    1.011614]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    1.011728]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    1.011837]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    1.011948]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    1.012141]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    1.012254]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    1.012362]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    1.012469]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    1.012577]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    1.012689]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    1.012798]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    1.012907]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    1.013015]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    1.013122]  (0)[1:swapper/0]qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    1.014066]  (0)[1:swapper/0]qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    1.015858]  (0)[1:swapper/0]ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    1.017534]  (0)[1:swapper/0]qcom_ice_get_pdevice: found ice device ffffffeeaa27a200\n[    1.017537]  (0)[1:swapper/0]qcom_ice_get_pdevice: matching platform device ffffffed41c86c00\n[    1.018723]  (0)[1:swapper/0]register_client_adhoc:find path.src 123 dest 512\n[    1.019116]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 757\n[    1.019315]  (0)[1:swapper/0]register_client_adhoc:Client handle 24 ufshc_mem\n[    1.020887]  (0)[1:swapper/0]scsi host0: ufshcd\n[    1.025525]  (0)[1:swapper/0]qcom_ice 1d90000.ufsice: QC ICE 3.1.75 device found @0xffffff800bc18000\n[    1.033787]  (0)[1:swapper/0]SCSI Media Changer driver v0.25 \n[    1.036570]  (0)[1:swapper/0]Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    1.039102]  (0)[1:swapper/0]IMQ driver loaded successfully. (numdevs = 2, numqueues = 1, imq_dev_accurate_stats = 1)\n[    1.039337]  (0)[1:swapper/0]tun: Universal TUN/TAP device driver, 1.6\n[    1.039339]  (0)[1:swapper/0]tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    1.039388]  (0)[1:swapper/0]sky2: driver version 1.30\n[    1.039810]  (0)[1:swapper/0]PPP generic driver version 2.4.2\n[    1.039867]  (0)[1:swapper/0]PPP BSD Compression module registered\n[    1.039873]  (0)[1:swapper/0]PPP Deflate Compression module registered\n[    1.039898]  (0)[1:swapper/0]PPP MPPE Compression module registered\n[    1.039903]  (0)[1:swapper/0]NET: Registered protocol family 24\n[    1.039920]  (0)[1:swapper/0]PPTP driver version 0.8.5\n[    1.040226]  (0)[1:swapper/0]CLD80211: Initializing\n[    1.040314]  (0)[1:swapper/0]usbcore: registered new interface driver r8152\n[    1.040411]  (0)[1:swapper/0]usbcore: registered new interface driver lan78xx\n[    1.040437]  (0)[1:swapper/0]usbcore: registered new interface driver asix\n[    1.040458]  (0)[1:swapper/0]usbcore: registered new interface driver ax88179_178a\n[    1.040479]  (0)[1:swapper/0]usbcore: registered new interface driver cdc_ether\n[    1.040498]  (0)[1:swapper/0]usbcore: registered new interface driver net1080\n[    1.040517]  (0)[1:swapper/0]usbcore: registered new interface driver cdc_subset\n[    1.040538]  (0)[1:swapper/0]usbcore: registered new interface driver zaurus\n[    1.040566]  (0)[1:swapper/0]usbcore: registered new interface driver cdc_ncm\n[    1.040572]  (0)[1:swapper/0]CHRDEV \"uio\" major number 233 goes below the dynamic allocation range\n[    1.043760]  (0)[1:swapper/0]msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.045720]  (0)[1:swapper/0]msm_sharedmem: msm_sharedmem_probe: Device created for client 'oembackup'\n[    1.047483]  (0)[1:swapper/0]msm-qusb-phy-v2 88e2000.qusb: pinctrl not available\n[    1.049305]  (0)[1:swapper/0][OPPO_CHG][oppo_ccdetect_support_check]: g_oppo_chip not ready!\n[    1.050138]  (0)[1:swapper/0]msm-dwc3 a600000.ssusb: unable to get dbm device\n[    1.051444]  (0)[1:swapper/0]ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    1.051448]  (0)[1:swapper/0]ehci-pci: EHCI PCI platform driver\n[    1.051470]  (0)[1:swapper/0]ehci-platform: EHCI generic platform driver\n[    1.051847]  (0)[1:swapper/0]ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    1.051863]  (0)[1:swapper/0]ohci-pci: OHCI PCI platform driver\n[    1.051897]  (0)[1:swapper/0]ohci-platform: OHCI generic platform driver\n[    1.052950]  (0)[1:swapper/0]usbcore: registered new interface driver usb-storage\n[    1.052977]  (0)[1:swapper/0]usbcore: registered new interface driver usb_ehset_test\n[    1.052999]  (0)[1:swapper/0]usbcore: registered new interface driver lvs\n[    1.053185]  (0)[5:kworker/u16:0]ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.054667]  (0)[191:kworker/0:3]msm_sharedmem: sharedmem_register_qmi: qmi init successful\n[    1.057679]  (0)[1:swapper/0]usbpd usbpd0: Could not get USB power_supply, deferring probe\n[    1.057777]  (0)[1:swapper/0]qpnp-pdphy c440000.qcom,spmi:qcom,pm660@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.058634]  (0)[1:swapper/0]mousedev: PS/2 mouse device common for all mice\n[    1.058793]  (0)[1:swapper/0]usbcore: registered new interface driver xpad\n[    1.058820]  (0)[1:swapper/0][TP]synaptics-s3706: tp_driver_init is called\n[    1.058824]  (0)[1:swapper/0][TP] tp_ic_name = synaptics-s3706 \n[    1.058830]  (0)[1:swapper/0][TP] Project not himax cannot support\n[    1.058833]  (0)[1:swapper/0][TP]himax,hx83112a_nf: tp_driver_init is called\n[    1.058834]  (0)[1:swapper/0][TP] tp_ic_name = himax,hx83112a_nf \n[    1.058836]  (0)[1:swapper/0][TP]Project use himax \n[    1.059086]  (0)[1:swapper/0][TP]himax,hx83112a_nf: hx83112b_tp_probe  is called\n[    1.059094]  (0)[1:swapper/0][TP]touchpanel: register_common_touch_device  is called\n[    1.059111]  (0)[1:swapper/0][TP]touchpanel: vdd_2v8_volt not defined\n[    1.059133]  (0)[1:swapper/0][TP]touchpanel: init_parse_dts : irq_gpio = 125, irq_flags = 0x2001, reset_gpio = 99\n[    1.059136]  (0)[1:swapper/0][TP]touchpanel: id1_gpio not specified\n[    1.059139]  (0)[1:swapper/0][TP]touchpanel: id2_gpio not specified\n[    1.059141]  (0)[1:swapper/0][TP]touchpanel: id3_gpio not specified\n[    1.059144]  (0)[1:swapper/0][TP]touchpanel: Failed to get the high state pinctrl handle\n[    1.059145]  (0)[1:swapper/0][TP]touchpanel:  Failed to get the low state pinctrl handle\n[    1.059147]  (0)[1:swapper/0][TP]touchpanel: Failed to get the input state pinctrl handle\n[    1.059150]  (0)[1:swapper/0][TP]touchpanel: ts->hw_res.enable2v8_gpio not specified\n[    1.059152]  (0)[1:swapper/0][TP]touchpanel: ts->hw_res.enable1v8_gpio not specified\n[    1.059154]  (0)[1:swapper/0][TP]touchpanel: int-mode not specified\n[    1.059157]  (0)[1:swapper/0][TP]touchpanel: TX_NUM = 16, RX_NUM = 36 \n[    1.059159]  (0)[1:swapper/0][TP]touchpanel: tx-rx-num not set\n[    1.059161]  (0)[1:swapper/0][TP]touchpanel: EARSENSE_TX_NUM = 16, EARSENSE_RX_NUM = 18 \n[    1.059166]  (0)[1:swapper/0][TP]touchpanel: LCD_WIDTH = 1080, LCD_HEIGHT = 2340, max_x = 1080, max_y = 2340, limit_witdh = 0, limit_height = 54\n[    1.059169]  (0)[1:swapper/0][TP]touchpanel: error:button-type should be setting in dts!\n[    1.059173]  (0)[1:swapper/0][TP]touchpanel: error:button-TRx should be setting in dts!\n[    1.059175]  (0)[1:swapper/0][TP]touchpanel: panel is incell!\n[    1.060352]  (0)[1:swapper/0]spi32766.0 supply vcc_1v8 not found, using dummy regulator\n[    1.060406]  (0)[1:swapper/0]spi32766.0 supply vdd_2v8 not found, using dummy regulator\n[    1.060439]  (0)[1:swapper/0][TP]touchpanel: Enable the Regulator2v8.\n[    1.060443]  (0)[1:swapper/0][TP]touchpanel: Enable the Regulator1v8.\n[    1.068070]  (0)[1:swapper/0][TP]touchpanel: init_input_device is called\n[    1.068183]  (0)[1:swapper/0]input: touchpanel as /devices/virtual/input/input1\n[    1.068289]  (0)[1:swapper/0]input: touchpanel_kpd as /devices/virtual/input/input2\n[    1.068337]  (0)[1:swapper/0][TP]vendor:DSJM fw:tp/19691/FW_HX_NF83112A_DSJM.img limit:tp/19691/LIMIT_HX_NF83112A_DSJM.img\n[    1.068341]  (0)[1:swapper/0][TP]himax,hx83112a_nf: chip_info->tp_type = 9, panel_data->test_limit_name = tp/19691/LIMIT_HX_NF83112A_DSJM.img, panel_data->fw_name = tp/19691/FW_HX_NF83112A_DSJM.img\n[    1.068346]  (0)[1:swapper/0][TP]himax,hx83112a_nf: hx83112b_configuration_init, configuration init = 1\n[    1.071921]  (0)[1:swapper/0][TP]touchpanel: Clock ticks for an esd cycle: 500\n[    1.071925]  (0)[1:swapper/0][TP]touchpanel: Esd protector started, cycle: 2 s\n[    1.071933]  (0)[1:swapper/0][TP]touchpanel: curent usb state is 0\n[    1.071936]  (0)[1:swapper/0][TP]himax,hx83112a_nf: hx83112b_enable_charge_mode, charge mode enable = 0\n[    1.072900]  (0)[1:swapper/0]spi_geni 880000.spi: tx_fifo 16 rx_fifo 16 tx_width 32\n[    1.073100]  (0)[1:swapper/0][TP]touchpanel: init_touchpanel_proc entry\n[    1.073134]  (0)[1:swapper/0][TP]touchpanel: init_debug_info_proc entry\n[    1.073151]  (0)[1:swapper/0][TP]touchpanel: Touch panel probe : normal end\n[    1.147136]  (0)[5:kworker/u16:0]ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[1, 1], pwr[FAST MODE, FAST MODE], rate = 2\n[    1.149108]  (0)[5:kworker/u16:0]scsi 0:0:0:49488: Well-known LUN    SAMSUNG  KM8V7001JM-B810  0900 PQ: 0 ANSI: 6\n[    1.149302]  (0)[1:swapper/0][TP]himax,hx83112a_nf: himax_ic_package_check:Read driver IC ID = 83,11,2A\n[    1.149306]  (0)[1:swapper/0][TP]himax,hx83112a_nf: Himax IC package 83112_in\n[    1.150516]  (0)[1:swapper/0][TP]himax,hx83112a_nf: himax_power_on_init\n[    1.151214]  (0)[5:kworker/u16:0]scsi 0:0:0:49456: Well-known LUN    SAMSUNG  KM8V7001JM-B810  0900 PQ: 0 ANSI: 6\n[    1.153766]  (0)[5:kworker/u16:0]scsi 0:0:0:49476: Well-known LUN    SAMSUNG  KM8V7001JM-B810  0900 PQ: 0 ANSI: 6\n[    1.157129]  (0)[5:kworker/u16:0]scsi 0:0:0:0: Direct-Access     SAMSUNG  KM8V7001JM-B810  0900 PQ: 0 ANSI: 6\n[    1.158236]  (0)[1:swapper/0][TP]himax,hx83112a_nf: himax_report_data_init: rawdata_frame_size = 10 \n[    1.158242]  (0)[1:swapper/0][TP]himax,hx83112a_nf: himax_report_data_init: max_touch_point:10,hx_raw_cnt_max:2,hx_raw_cnt_rmd:2,g_hx_rawdata_size:67,hx_touch_data->touch_info_size:56\n[    1.158266]  (0)[1:swapper/0][TP]himax,hx83112a_nf: hx83112b_tp_probe, probe normal end\n[    1.158270]  (0)[1:swapper/0][TP]himax,hx83112a_nf: Replace system image for cts, download fw by headfile\n[    1.159040]  (0)[1:swapper/0]qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: rtc core: registered qpnp_rtc as rtc0\n[    1.159739]  (0)[1:swapper/0]i2c /dev entries driver\n[    1.160115]  (0)[1:swapper/0]i2c_geni 890000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.161497]  (0)[1:swapper/0]i2c_geni a84000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.162409]  (0)[1:swapper/0]i2c_geni a88000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.162931]  (0)[5:kworker/u16:0]scsi 0:0:0:1: Direct-Access     SAMSUNG  KM8V7001JM-B810  0900 PQ: 0 ANSI: 6\n[    1.163809]  (0)[1:swapper/0]i2c_geni a88000.i2c: i2c error :-107\n[    1.163916]  (0)[1:swapper/0]i2c_geni a88000.i2c: i2c error :-107\n[    1.164038]  (0)[1:swapper/0]i2c_geni a88000.i2c: i2c error :-107\n[    1.164144]  (0)[1:swapper/0]i2c_geni a88000.i2c: i2c error :-107\n[    1.164148]  (0)[1:swapper/0]I2C PMIC: i2c_pmic_read: i2c_pmic_read failed for 3 retries, rc = -107\n[    1.164151]  (0)[1:swapper/0]I2C PMIC: i2c_pmic_determine_initial_status: Couldn't read irq data rc=-107\n[    1.164154]  (0)[1:swapper/0]I2C PMIC: i2c_pmic_probe: Couldn't determine initial status rc=-107\n[    1.164240]  (0)[1:swapper/0]i2c_pmic: probe of 0-0008 failed with error -107\n[    1.164623]  (0)[1:swapper/0]i2c_geni a88000.i2c: i2c error :-107\n[    1.164728]  (0)[1:swapper/0]i2c_geni a88000.i2c: i2c error :-107\n[    1.164929]  (0)[1:swapper/0]i2c_geni a88000.i2c: i2c error :-107\n[    1.165034]  (0)[1:swapper/0]i2c_geni a88000.i2c: i2c error :-107\n[    1.165037]  (0)[1:swapper/0]I2C PMIC: i2c_pmic_read: i2c_pmic_read failed for 3 retries, rc = -107\n[    1.165040]  (0)[1:swapper/0]I2C PMIC: i2c_pmic_determine_initial_status: Couldn't read irq data rc=-107\n[    1.165043]  (0)[1:swapper/0]I2C PMIC: i2c_pmic_probe: Couldn't determine initial status rc=-107\n[    1.165094]  (0)[1:swapper/0]i2c_pmic: probe of 0-000c failed with error -107\n[    1.165581]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_mcu_hwid_check]chip->vooc_gpio.vooc_mcu_id_gpio not specified, enable stm8s\n[    1.165587]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_fw_type_dt]oppo_vooc_fw_type_dt batt_type_4400 is 1,vooc_fw_type = 0x7\n[    1.165590]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_fw_type_dt] vooc_fw_upate:1\n[    1.165593]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_fw_type_dt]qcom,vooc-low-temp is 120\n[    1.165595]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_fw_type_dt]qcom,vooc-high-temp is 430\n[    1.165598]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_fw_type_dt]qcom,vooc-low-soc is 1\n[    1.165601]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_fw_type_dt]qcom,vooc-high-soc is 85\n[    1.165604]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_fw_type_dt]qcom,vooc_multistep_adjust_current_supportis 0\n[    1.165639]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_gpio_dt_init]chip->vooc_gpio.switch1_gpio =116\n[    1.165642]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_gpio_dt_init]chip->vooc_gpio.switch1_ctr1_gpio not specified\n[    1.165645]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_gpio_dt_init]chip->vooc_gpio.switch2_gpio not specified\n[    1.165652]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_gpio_dt_init]chip->vooc_gpio.reset_gpio =91\n[    1.165659]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_gpio_dt_init]chip->vooc_gpio.clock_gpio =124\n[    1.165666]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_gpio_dt_init]chip->vooc_gpio.data_gpio =123\n[    1.165977]  (0)[1:swapper/0][OPPO_CHG][opchg_bq27541_gpio_pinctrl_init]: 110 Failed to get the charging_switch1_ctr1_active handle\n[    1.165980]  (0)[1:swapper/0][OPPO_CHG][opchg_bq27541_gpio_pinctrl_init]: 117 Failed to get the charging_switch1_ctr1_sleep handle\n[    1.165986]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_gpio_dt_init] switch1_gpio = 116,switch2_gpio = -2, reset_gpio = 91,\t\t\tclock_gpio = 124, data_gpio = 123, data_irq = 272\n[    1.166005]  (0)[1:swapper/0][OPPO_CHG][oppo_is_rf_ftm_mode] boot_mode:0, return false\n[    1.166234]  (0)[1:swapper/0][OPPO_CHG][oppo_is_rf_ftm_mode] boot_mode:0, return false\n[    1.166237]  (0)[1:swapper/0][OPPO_CHG][oppo_vooc_mcu_hwid_check]mcu_hwid_type[0]\n[    1.166252]  (0)[1:swapper/0][OPPO_CHG][init_vooc_proc] version:0, fw_path:fastchg/19691/oppo_vooc_fw.bin\n[    1.166262]  (0)[1:swapper/0][OPPO_CHG][stm8s_driver_probe]stm8s probe success,\t\tfw_type = 0x7, \t\tfw_version = 0x5a, \t\tmcu_version = 0x0\n[    1.167394]  (0)[1:swapper/0]msm_vidc:  err: Failed to get platform resources\n[    1.167397]  (0)[1:swapper/0]msm_vidc:  err: Failed to init core\n[    1.167404]  (0)[1:swapper/0]msm_vidc_v4l2: probe of aa00000.qcom,vidc0 failed with error -22\n[    1.169733]  (0)[5:kworker/u16:0]scsi 0:0:0:2: Direct-Access     SAMSUNG  KM8V7001JM-B810  0900 PQ: 0 ANSI: 6\n[    1.172219]  (0)[1:swapper/0]iommu: Adding device aa00000.qcom,vidc1:non_secure_cb to group 21\n[    1.172622]  (0)[5:kworker/u16:0]scsi 0:0:0:3: Direct-Access     SAMSUNG  KM8V7001JM-B810  0900 PQ: 0 ANSI: 6\n[    1.173251]  (0)[1:swapper/0]iommu: Adding device aa00000.qcom,vidc1:secure_bitstream_cb to group 22\n[    1.174816]  (0)[1:swapper/0]iommu: Adding device aa00000.qcom,vidc1:secure_pixel_cb to group 23\n[    1.175860]  (0)[1:swapper/0]iommu: Adding device aa00000.qcom,vidc1:secure_non_pixel_cb to group 24\n[    1.176737]  (0)[5:kworker/u16:0]scsi 0:0:0:4: Direct-Access     SAMSUNG  KM8V7001JM-B810  0900 PQ: 0 ANSI: 6\n[    1.178993]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 590\n[    1.179315]  (0)[1:swapper/0]register_client_adhoc:Client handle 25 sde_reg\n[    1.179400]  (0)[1:swapper/0]iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 25\n[    1.179588]  (0)[1:swapper/0]iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 26\n[    1.179799]  (0)[1:swapper/0]register_client_adhoc:find path.src 25 dest 512\n[    1.180002]  (0)[1:swapper/0]register_client_adhoc:Client handle 26 mdss_rotator\n[    1.180013]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 590\n[    1.180266]  (0)[1:swapper/0]register_client_adhoc:Client handle 27 mdss_rot_reg\n[    1.180804]  (0)[1:swapper/0]No change in context(0==0), skip\n[    1.182941]  (0)[1:swapper/0]sde_rotator_evtlog_create_debugfs: evtlog_status: enable:1, panic:1, dump:2\n[    1.183177]  (0)[5:kworker/u16:0]scsi 0:0:0:5: Direct-Access     SAMSUNG  KM8V7001JM-B810  0900 PQ: 0 ANSI: 6\n[    1.187145]  (0)[77:kworker/u16:1]sd 0:0:0:1: [sdb] Write Protect is off\n[    1.187187]  (0)[77:kworker/u16:1]sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.187279]  (0)[5:kworker/u16:0]sd 0:0:0:0: [sda] Write Protect is off\n[    1.187284]  (0)[5:kworker/u16:0]sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.187311]  (0)[318:kworker/u16:2]sd 0:0:0:2: [sdc] Write Protect is off\n[    1.187316]  (0)[318:kworker/u16:2]sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.187602]  (0)[5:kworker/u16:0]sd 0:0:0:0: [sda] Optimal transfer size 8192 bytes\n[    1.187867]  (0)[77:kworker/u16:1]sd 0:0:0:1: [sdb] Optimal transfer size 8192 bytes\n[    1.188069]  (0)[318:kworker/u16:2]sd 0:0:0:2: [sdc] Optimal transfer size 8192 bytes\n[    1.189780]  (0)[1:swapper/0]sde_rotator ae00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    1.192248]  (0)[1:swapper/0]sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    1.192285]  (0)[1:swapper/0]sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    1.194713]  (0)[1:swapper/0]iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 27\n[    1.195112]  (0)[1:swapper/0]iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 28\n[    1.195312]  (0)[1:swapper/0]iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 29\n[    1.195453]  (0)[1:swapper/0]platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node camera_region@8ab00000\n[    1.195661]  (0)[1:swapper/0]iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 30\n[    1.195842]  (0)[1:swapper/0]iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 31\n[    1.197897]  (0)[318:kworker/u16:2] sdc:\n[    1.198271]  (0)[1:swapper/0]iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_fd to group 32\n[    1.198768]  (0)[77:kworker/u16:1] sdb: sdb1 sdb2\n[    1.199407]  (0)[5:kworker/u16:0] sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14\n[    1.200518]  (0)[355:kworker/u16:3]sd 0:0:0:3: [sdd] Write Protect is off\n[    1.200524]  (0)[355:kworker/u16:3]sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.200766]  (0)[355:kworker/u16:3]sd 0:0:0:3: [sdd] Optimal transfer size 8192 bytes\n[    1.203189]  (0)[318:kworker/u16:2]sd 0:0:0:4: [sde] Write Protect is off\n[    1.203194]  (0)[318:kworker/u16:2]sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    1.203373]  (0)[355:kworker/u16:3] sdd: sdd1 sdd2 sdd3\n[    1.203959]  (0)[318:kworker/u16:2]sd 0:0:0:4: [sde] Optimal transfer size 8192 bytes\n[    1.204491]  (0)[77:kworker/u16:1]sd 0:0:0:5: [sdf] Write Protect is off\n[    1.204497]  (0)[77:kworker/u16:1]sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    1.204757]  (0)[77:kworker/u16:1]sd 0:0:0:5: [sdf] Optimal transfer size 8192 bytes\n[    1.207561]  (0)[318:kworker/u16:2] sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33\n[    1.210887]  (0)[77:kworker/u16:1] sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6 sdf7 sdf8 sdf9 sdf10 sdf11 sdf12\n[    1.213591]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 589\n[    1.213907]  (0)[1:swapper/0]register_client_adhoc:Client handle 28 cam_ahb\n[    1.214178]  (0)[1:swapper/0]register_client_adhoc:find path.src 136 dest 512\n[    1.214386]  (0)[1:swapper/0]register_client_adhoc:Client handle 29 cam_hf_1_mnoc\n[    1.214638]  (0)[1:swapper/0]register_client_adhoc:find path.src 146 dest 778\n[    1.214687]  (0)[1:swapper/0]register_client_adhoc:Client handle 30 cam_hf_1_camnoc\n[    1.214811]  (0)[1:swapper/0]register_client_adhoc:find path.src 145 dest 512\n[    1.215039]  (0)[1:swapper/0]register_client_adhoc:Client handle 31 cam_hf_2_mnoc\n[    1.215477]  (0)[1:swapper/0]register_client_adhoc:find path.src 147 dest 778\n[    1.215523]  (0)[1:swapper/0]register_client_adhoc:Client handle 32 cam_hf_2_camnoc\n[    1.215658]  (0)[1:swapper/0]register_client_adhoc:find path.src 137 dest 512\n[    1.215845]  (0)[1:swapper/0]register_client_adhoc:Client handle 33 cam_sf_1_mnoc\n[    1.216089]  (0)[1:swapper/0]register_client_adhoc:find path.src 148 dest 778\n[    1.216133]  (0)[1:swapper/0]register_client_adhoc:Client handle 34 cam_sf_1_camnoc\n[    1.234736]  (0)[1:swapper/0]CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 256 No clk named ife_dsp_clk found. Dev acc4000.qcom,vfe-lite\n[    1.234744]  (0)[1:swapper/0]CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 107 option clk get failed\n[    1.238048]  (0)[1:swapper/0]CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.238063]  (0)[1:swapper/0]CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.238072]  (0)[1:swapper/0]CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.238081]  (0)[1:swapper/0]CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.238090]  (0)[1:swapper/0]CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.238099]  (0)[1:swapper/0]CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.238108]  (0)[1:swapper/0]CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.238117]  (0)[1:swapper/0]CAM_ERR: CAM-ISP: cam_tasklet_dequeue_cmd: 161 Tasklet is not active!\n[    1.238202]  (0)[1:swapper/0]CAM_INFO: CAM-ISP: cam_isp_dev_probe: 122 Camera ISP probe complete\n[    1.240347]  (0)[1:swapper/0]CAM_INFO: CAM: cam_res_mgr_probe: 681 Disable shared gpio support.\n[    1.250322]  (0)[1:swapper/0]CAM_ERR: CAM-ICP: cam_ipe_probe: 85 IPE1 hw idx = 1\n\n[    1.250339]  (0)[1:swapper/0]cam-ipe: probe of ac91000.qcom,ipe1 failed with error -22\n[    1.253441]  (0)[1:swapper/0]CAM_ERR: CAM-ICP: cam_icp_mgr_init_devs: 4178 no child device\n[    1.254205]  (0)[1:swapper/0]CAM_ERR: CAM-SMMU: cam_smmu_create_add_handle_in_table: 612 Error: cam-secure already got handle 0x5b0d2\n[    1.257551]  (0)[1:swapper/0]CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 119 Camera JPEG probe complete\n[    1.267319]  (0)[1:swapper/0][OPPO_CHG][oppo_chg_parse_svooc_dt]oppo_parse_svooc_dt, chip->vbatt_num = 1,chip->vooc_project = 1.\n[    1.267327]  (0)[1:swapper/0][OPPO_CHG][smb2_probe]gauge chip null, will do after bettery init.\n[    1.272882]  (0)[1:swapper/0]bq27541-battery 0-0055: DEVICE_TYPE is 0x421, FIRMWARE_VERSION is 0x109\n[    1.272886]  (0)[1:swapper/0]bq27411_modify_soc_smooth_parameter begin\n[    1.347886]  (0)[1:swapper/0][OPPO_CHG][unseal]bq27541 : i=1\n[    1.403227]  (0)[1:swapper/0]bq27411_enable_config_mode success i = 1, config_mode = 0x119, enable = 1\n[    1.425929]  (0)[1:swapper/0]bq27411 write blk_id = 0x6b, addr = 0x42, old_val = 0x71, new_val = 0x11, old_csum = 0xfd, new_csum = 0x5d\n[    1.443298]  (0)[1:swapper/0]bq27411 write blk_id = 0x40, addr = 0x42, old_val = 0xf, new_val = 0x7, old_csum = 0x1, new_csum = 0x9\n[    1.512762]  (0)[1:swapper/0]bq27411_enable_config_mode success i = 3, config_mode = 0x109, enable = 0\n[    1.524912]  (0)[1:swapper/0]bq27411_modify_soc_smooth_parameter end\n[    1.524924]  (0)[1:swapper/0][OPPO_CHG][bq27541_driver_probe] success\n[    1.540764]  (0)[1:swapper/0]17d41000.qcom,cpucc:qcom,limits-dcvs@0 supply isens_vref not found, using dummy regulator\n[    1.540834]  (0)[1:swapper/0]msm_lmh_dcvs:limits_isens_vref_ldo_init Regulator:isens_vref settings read error:-22\n[    1.547192]  (0)[1:swapper/0]17d41000.qcom,cpucc:qcom,limits-dcvs@1 supply isens_vref not found, using dummy regulator\n[    1.547232]  (0)[1:swapper/0]msm_lmh_dcvs:limits_isens_vref_ldo_init Regulator:isens_vref settings read error:-22\n[    1.561262]  (0)[1:swapper/0]device-mapper: uevent: version 1.0.3\n[    1.561372]  (0)[1:swapper/0]device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com\n[    1.562518]  (0)[1:swapper/0]device-mapper: req-crypt: dm-req-crypt successfully initalized.\n\n[    1.562907]  (0)[1:swapper/0]bt_power_populate_dt_pinfo: bt-reset-gpio not provided in devicetree\n[    1.562917]  (0)[1:swapper/0]bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    1.562920]  (0)[1:swapper/0]bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    1.562934]  (0)[1:swapper/0]bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    1.562938]  (0)[1:swapper/0]bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.563404]  (0)[1:swapper/0]CHRDEV \"bt\" major number 232 goes below the dynamic allocation range\n[    1.564280]  (0)[1:swapper/0]sdhci: Secure Digital Host Controller Interface driver\n[    1.564283]  (0)[1:swapper/0]sdhci: Copyright(c) Pierre Ossman\n[    1.564286]  (0)[1:swapper/0]sdhci-pltfm: SDHCI platform and OF driver helper\n[    1.568294]  (0)[1:swapper/0]usbcore: registered new interface driver usbhid\n[    1.568299]  (0)[1:swapper/0]usbhid: USB HID core driver\n[    1.568355]  (0)[1:swapper/0]ashmem: initialized\n[    1.568371]  (0)[1:swapper/0]===>PSIDEBUG:psi_monitor_write\n[    1.568375]  (0)[1:swapper/0]===>PSIDEBUG:psi_trigger_create buf = some 100000 1000000\n[    1.568383]  (0)[1:swapper/0]===>PSIDEBUG:psi_trigger_create threshold = 100000000,win = 1000000000\n[    1.568385]  (0)[1:swapper/0]===>PSIDEBUG:kthread_create_worker\n[    1.568573]  (0)[372:kworker/u16:5]qcom_ice_get_pdevice: found ice device ffffffeeaa27a600\n[    1.568577]  (0)[372:kworker/u16:5]qcom_ice_get_pdevice: matching platform device ffffffed41c8a800\n[    1.569795]  (0)[1:swapper/0]===>PSIDEBUG:psi_monitor_write\n[    1.569800]  (0)[1:swapper/0]===>PSIDEBUG:psi_trigger_create buf = full 70000  1000000\n[    1.569807]  (0)[1:swapper/0]===>PSIDEBUG:psi_trigger_create threshold = 70000000,win = 1000000000\n[    1.569896]  (0)[1:swapper/0]hans_core_init: -\n[    1.569899]  (0)[1:swapper/0]wlan: Loading driver v5.2.022.6J\n[    1.570787]  (0)[372:kworker/u16:5]sdhci_msm 8804000.sdhci: failed opening nvmem cell err : -2\n[    1.570794]  (0)[372:kworker/u16:5]sdhci_msm 8804000.sdhci: sdhci_msm_probe: ICE device is not enabled\n[    1.571077]  (0)[372:kworker/u16:5]sdhci_msm 8804000.sdhci: Failed to get dll hsr settings from dt\n[    1.571273]  (0)[372:kworker/u16:5]register_client_adhoc:find path.src 81 dest 512\n[    1.571726]  (0)[372:kworker/u16:5]register_client_adhoc:find path.src 1 dest 608\n[    1.571928]  (0)[1:swapper/0]register_client_adhoc:Client handle 35 sdhc2\n[    1.573044]  (0)[1:swapper/0]ipa ipa3_uc_reg_rdyCB:1779 bad parm. inout=          (null) \n[    1.573106]  (0)[1:swapper/0]CHRDEV \"qcwlanstate\" major number 231 goes below the dynamic allocation range\n[    1.573169]  (0)[1:swapper/0]wlan_hdd_state wlan major(231) initialized\n[    1.573230]  (0)[1:swapper/0]ipa_ut ipa_ut_module_init:1046 Loading IPA test module...\n[    1.573654]  (0)[1:swapper/0]qpnp_coincell_charger_show_state: enabled=Y, voltage=3200 mV, resistance=2100 ohm\n[    1.575622]  (0)[1:swapper/0]CHRDEV \"seemplog\" major number 230 goes below the dynamic allocation range\n[    1.575872]  (0)[1:swapper/0]seemp: seemp_logk_init: SCM call failed with ret val = 0 -3 0\n[    1.587869]  (0)[372:kworker/u16:5]mmc0: SDHCI controller on 8804000.sdhci [8804000.sdhci] using 64-bit ADMA in legacy mode\n[    1.626297]  (0)[1:swapper/0]bimc-bwmon 1436400.qcom,cpu-bwmon: BW HWmon governor registered.\n[    1.626997]  (0)[1:swapper/0]arm-memlat-mon soc:qcom,cpu0-memlat-mon: Memory Latency governor registered.\n[    1.627023]  (0)[1:swapper/0]arm-memlat-mon soc:qcom,cpu6-memlat-mon: Memory Latency governor registered.\n[    1.627055]  (0)[1:swapper/0]arm-memlat-mon soc:qcom,cpu0-l3lat-mon: Memory Latency governor registered.\n[    1.627084]  (0)[1:swapper/0]arm-memlat-mon soc:qcom,cpu6-l3lat-mon: Memory Latency governor registered.\n[    1.627118]  (0)[1:swapper/0]arm-memlat-mon soc:qcom,devfreq-compute0: Compute governor registered.\n[    1.627144]  (0)[1:swapper/0]arm-memlat-mon soc:qcom,devfreq-compute6: Compute governor registered.\n[    1.628320]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 512\n[    1.628615]  (0)[1:swapper/0]register_client_adhoc:Client handle 36 soc:qcom,cpubw\n[    1.630477]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 512\n[    1.630694]  (0)[1:swapper/0]register_client_adhoc:Client handle 37 soc:qcom,memlat-cpu0\n[    1.633022]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 512\n[    1.633212]  (0)[1:swapper/0]register_client_adhoc:Client handle 38 soc:qcom,memlat-cpu6\n[    1.633672]  (0)[1:swapper/0]register_client_adhoc:find path.src 139 dest 627\n[    1.633798]  (0)[1:swapper/0]register_client_adhoc:Client handle 39 soc:qcom,snoc_cnoc_keepalive\n[    1.634170]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 512\n[    1.634353]  (0)[1:swapper/0]register_client_adhoc:Client handle 40 soc:qcom,mincpubw\n[    1.634794]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 512\n[    1.634978]  (0)[1:swapper/0]register_client_adhoc:Client handle 41 soc:qcom,mincpu0bw\n[    1.635429]  (0)[1:swapper/0]register_client_adhoc:find path.src 1 dest 512\n[    1.635610]  (0)[1:swapper/0]register_client_adhoc:Client handle 42 soc:qcom,mincpu6bw\n[    1.636174]  (0)[1:swapper/0]register_client_adhoc:find path.src 26 dest 512\n[    1.636293]  (0)[1:swapper/0]register_client_adhoc:Client handle 43 soc:qcom,gpubw\n[    1.638386]  (0)[1:swapper/0]coresight-tmc 6048000.tmc: failed to get flush cti\n[    1.638390]  (0)[1:swapper/0]coresight-tmc 6048000.tmc: failed to get reset cti\n[    1.638396]  (0)[1:swapper/0]coresight-tmc 6048000.tmc: failed to get csr, defer probe\n[    1.638543]  (0)[1:swapper/0]coresight-tmc 6b09000.tmc: invalid cti data\n[    1.638548]  (0)[1:swapper/0]coresight-tmc 6b09000.tmc: failed to get csr, defer probe\n[    1.638667]  (0)[1:swapper/0]coresight-tmc 6047000.tmc: failed to get flush cti\n[    1.638670]  (0)[1:swapper/0]coresight-tmc 6047000.tmc: failed to get reset cti\n[    1.638674]  (0)[1:swapper/0]coresight-tmc 6047000.tmc: failed to get csr, defer probe\n[    1.640998]  (0)[1:swapper/0]coresight-replicator-qcom 6046000.replicator: REPLICATOR 1.0 initialized\n[    1.641123]  (0)[1:swapper/0]coresight-replicator-qcom 6b0a000.replicator: REPLICATOR 1.0 initialized\n[    1.641285]  (0)[1:swapper/0]coresight-stm 6002000.stm: stm_register_device failed, probing deffered\n[    1.646327]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@69e1000\n[    1.646405]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@69e4000\n[    1.646485]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@69e5000\n[    1.646563]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6c09000\n[    1.646640]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6c0a000\n[    1.646721]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6c29000\n[    1.646801]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6c2a000\n[    1.646878]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@683b000\n[    1.646961]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6b04000\n[    1.647042]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6b05000\n[    1.647124]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6b06000\n[    1.647206]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6b07000\n[    1.647285]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6b21000\n[    1.647363]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6c13000\n[    1.647443]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6c20000\n[    1.647520]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@78e0000\n[    1.647601]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@78f0000\n[    1.647680]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@7900000\n[    1.647760]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6010000\n[    1.647839]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6011000\n[    1.647916]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6012000\n[    1.647990]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6013000\n[    1.648294]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6014000\n[    1.648394]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6015000\n[    1.648668]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6016000\n[    1.648775]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6017000\n[    1.648877]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6018000\n[    1.649141]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@6019000\n[    1.649243]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@601a000\n[    1.649345]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@601b000\n[    1.649673]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@601c000\n[    1.649777]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@601d000\n[    1.649880]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@601e000\n[    1.650139]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@601f000\n[    1.650242]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@7020000\n[    1.652732]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@7120000\n[    1.652848]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@7220000\n[    1.652959]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@7320000\n[    1.653203]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@7420000\n[    1.653389]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@7520000\n[    1.653506]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@7620000\n[    1.653631]  (0)[1:swapper/0]OF: graph: no port node found in /soc/cti@7720000\n[    1.653969]  (0)[1:swapper/0]OF: graph: no port node found in /soc/csr@6001000\n[    1.654017]  (0)[1:swapper/0]coresight-csr 6001000.csr: CSR initialized: coresight-csr\n[    1.654638]  (0)[1:swapper/0]OF: graph: no port node found in /soc/hwevent@0x014066f0\n[    1.654694]  (0)[1:swapper/0]coresight-hwevent 14066f0.hwevent: Hardware Event driver initialized\n[    1.655236]  (0)[1:swapper/0]coresight-dummy soc:tpdm@6b16000: Dummy device initialized\n[    1.656243]  (0)[1:swapper/0]usbcore: registered new interface driver snd-usb-audio\n[    1.660377]  (0)[1:swapper/0]pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.661118]  (0)[1:swapper/0]tfa98xx_i2c_init(): TFA98XX driver version v6.5.3\n[    1.661123]  (0)[1:swapper/0]tfa98xx_i2c_init(): tfa98xx_v6 not support the project:19691\n[    1.661125]  (0)[1:swapper/0]tfa98xx_i2c_init(): TFA98XX driver version 2.10.1-a\n[    1.661571]  (0)[1:swapper/0]tfa98xx_i2c_probe(): tfa98xx_i2c_probe\n[    1.661875]  (0)[1:swapper/0]tfa98xx 2-0035: No reset GPIO provided, will not HW reset device\n[    1.662158]  (0)[1:swapper/0]TFA9890 detected\n[    1.662175]  (0)[1:swapper/0]tfa98xx 2-0035: Skipping IRQ registration\n[    1.662297]  (0)[1:swapper/0]tfa98xx_i2c_probe(): tfa98xx_i2c_probe Probe completed successfully!\n[    1.662601]  (0)[1:swapper/0]msm-cdc-pinctrl soc:msm_cdc_pinctrl_usbc_audio_en1: msm_cdc_pinctrl_probe: Cannot get cdc gpio pinctrl:-19\n[    1.662619]  (0)[1:swapper/0]msm-cdc-pinctrl soc:cdc_pdm_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/cdc_pdm_clk_active, deferring probe\n[    1.662632]  (0)[1:swapper/0]msm-cdc-pinctrl soc:cdc_comp_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/cdc_pdm_rx0_comp_active, deferring probe\n[    1.662645]  (0)[1:swapper/0]msm-cdc-pinctrl soc:cdc_dmic_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic12_gpios_active, deferring probe\n[    1.664071]  (0)[372:kworker/u16:5][TP]himax,hx83112a_nf: himax_mcu_0f_operation, Entering \n[    1.664075]  (0)[372:kworker/u16:5][TP]himax,hx83112a_nf: himax_mcu_0f_operation:Entering Update Flow!\n[    1.676761]  (0)[1:swapper/0]msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx group_id: 0x9100\n[    1.676967]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0 dev_id: 0x9000\n[    1.676977]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.677003]  (0)[1:swapper/0]msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx group_id: 0x9101\n[    1.677183]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0 dev_id: 0x9001\n[    1.677191]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.677217]  (0)[1:swapper/0]msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx group_id: 0x9110\n[    1.677392]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0 dev_id: 0x9010\n[    1.677401]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.677425]  (0)[1:swapper/0]msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx group_id: 0x9111\n[    1.677604]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0 dev_id: 0x9011\n[    1.677613]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.677637]  (0)[1:swapper/0]msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx group_id: 0x9120\n[    1.677809]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0 dev_id: 0x9020\n[    1.677817]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.677841]  (0)[1:swapper/0]msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx group_id: 0x9121\n[    1.678010]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0 dev_id: 0x9021\n[    1.678018]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.678044]  (0)[1:swapper/0]msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx group_id: 0x9130\n[    1.678211]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0 dev_id: 0x9030\n[    1.678219]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.678242]  (0)[1:swapper/0]msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx group_id: 0x9131\n[    1.678420]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0 dev_id: 0x9031\n[    1.678428]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.678455]  (0)[1:swapper/0]msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx group_id: 0x9140\n[    1.678629]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0 dev_id: 0x9040\n[    1.678637]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.678660]  (0)[1:swapper/0]msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx group_id: 0x9141\n[    1.678829]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0 dev_id: 0x9041\n[    1.678836]  (0)[1:swapper/0]msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.680118]  (0)[372:kworker/u16:5][TP]himax,hx83112a_nf: Get FW from headfile\n[    1.686388]  (0)[1:swapper/0]msm_asoc_machine_probe: *** Enter\n[    1.686405]  (0)[1:swapper/0]msm_int_populate_sndcard_dailinks: custom speaker product nxp\n[    1.686433]  (0)[1:swapper/0]msm_int_populate_sndcard_dailinks: use nxp dailink replace\n[    1.686451]  (0)[1:swapper/0]sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.687220]  (0)[1:swapper/0]sdm660-asoc-snd soc:sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    1.693620]  (0)[1:swapper/0]CHRDEV \"avtimer\" major number 229 goes below the dynamic allocation range\n[    1.696086]  (0)[1:swapper/0]audio_notifer_reg_service: service SSR_MODEM is in use\n[    1.700669]  (0)[1:swapper/0]GACT probability NOT on\n[    1.700685]  (0)[1:swapper/0]Mirror/redirect action on\n[    1.700697]  (0)[1:swapper/0]u32 classifier\n[    1.700700]  (0)[1:swapper/0]    Actions configured\n[    1.700707]  (0)[1:swapper/0]Netfilter messages via NETLINK v0.30.\n[    1.700905]  (0)[1:swapper/0]nf_conntrack version 0.5.0 (65536 buckets, 262144 max)\n[    1.701001]  (0)[1:swapper/0]ctnetlink v0.93: registering with nfnetlink.\n[    1.701739]  (0)[1:swapper/0]xt_time: kernel timezone is -0000\n[    1.701797]  (0)[1:swapper/0]gre: GRE over IPv4 demultiplexor driver\n[    1.701800]  (0)[1:swapper/0]IPv4 over IPsec tunneling driver\n[    1.702392]  (0)[1:swapper/0]ip_tables: (C) 2000-2006 Netfilter Core Team\n[    1.702606]  (0)[1:swapper/0]arp_tables: arp_tables: (C) 2002 David S. Miller\n[    1.702684]  (0)[1:swapper/0]Initializing XFRM netlink socket\n[    1.702704]  (0)[1:swapper/0]IPsec XFRM device driver\n[    1.702968]  (0)[1:swapper/0]NET: Registered protocol family 10\n[    1.704836]  (0)[1:swapper/0]mip6: Mobile IPv6\n[    1.704850]  (0)[1:swapper/0]ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    1.705279]  (0)[1:swapper/0]sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    1.705736]  (0)[1:swapper/0]NET: Registered protocol family 17\n[    1.705748]  (0)[1:swapper/0]NET: Registered protocol family 15\n[    1.705766]  (0)[1:swapper/0]bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.\n[    1.705770]  (0)[1:swapper/0]Ebtables v2.0 registered\n[    1.705871]  (0)[1:swapper/0]l2tp_core: L2TP core driver, V2.0\n[    1.705878]  (0)[1:swapper/0]l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    1.705881]  (0)[1:swapper/0]l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    1.705892]  (0)[1:swapper/0]l2tp_netlink: L2TP netlink interface\n[    1.705914]  (0)[1:swapper/0]l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    1.705916]  (0)[1:swapper/0]l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    1.705994]  (0)[1:swapper/0]sctp: Hash tables configured (bind 256/256)\n[    1.706891]  (0)[1:swapper/0]NET: Registered protocol family 27\n[    1.709722]  (0)[1:swapper/0]oppo_nf_hooks_init module init netlink successfully.\n[    1.709740]  (0)[1:swapper/0]oppo_nf_hooks_init module register netfilter ops successfully.\n[    1.709749]  (0)[1:swapper/0]oppo_apps_monitor: oppo_apps_monitor_init module init netlink successfully.\n[    1.709758]  (0)[1:swapper/0][app_monitor]:report_timer_init\n[    1.709767]  (0)[1:swapper/0][app_monitor]:oppo_app_power_monitor_init\n[    1.710056]  (0)[108:kworker/0:2]oppo_fp_common soc:oppo_fp_common: fp_id_amount: 3\n[    1.710082]  (0)[108:kworker/0:2]oppo_fp_common soc:oppo_fp_common: fp-id gpio: 1275\n[    1.710100]  (0)[108:kworker/0:2]oppo_fp_common soc:oppo_fp_common: gpio_index: 1275,fp_id: 1\n[    1.710108]  (0)[108:kworker/0:2]oppo_fp_common soc:oppo_fp_common: fpsensor_type: 6, chip_name: F_1511, eng_menu: -1,-1\n[    1.717010]  (0)[108:kworker/0:2]minidump-id not found for adsp\n[    1.717297]  (0)[108:kworker/0:2]subsys-pil-tz 62400000.qcom,lpass: for adsp segments only will be dumped.\n[    1.718816]  (0)[108:kworker/0:2]minidump-id not found for cdsp\n[    1.718961]  (0)[108:kworker/0:2]subsys-pil-tz 8300000.qcom,turing: for cdsp segments only will be dumped.\n[    1.719427]  (0)[108:kworker/0:2]pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    1.719604]  (0)[108:kworker/0:2]platform 4080000.qcom,mss:qcom,mba-mem@0: assigned reserved memory node pil_mba_region@0x95400000\n[    1.720237]  (0)[108:kworker/0:2][OPPO_CHG][oppo_ccdetect_support_check]: g_oppo_chip not ready!\n[    1.724551]  (0)[108:kworker/0:2]sps:BAM 0x000000000a704000 is registered.\n[    1.724844]  (0)[108:kworker/0:2]register_client_adhoc:find path.src 61 dest 512\n[    1.725187]  (0)[108:kworker/0:2]register_client_adhoc:find path.src 61 dest 676\n[    1.725370]  (0)[108:kworker/0:2]register_client_adhoc:find path.src 1 dest 583\n[    1.725552]  (0)[108:kworker/0:2]register_client_adhoc:Client handle 44 usb0\n[    1.725632]  (0)[108:kworker/0:2]msm-dwc3 a600000.ssusb: Could not get usb power_supply\n[    1.725638]  (0)[108:kworker/0:2]Invalid index Defaulting curr to 0\n[    1.726029]  (0)[108:kworker/0:2]msm-dwc3 a600000.ssusb: Not attached\n[    1.727766]  (0)[108:kworker/0:2]ipa_rm ipa_rm_delete_resource:155 resource does not exist\n[    1.727773]  (0)[108:kworker/0:2]usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    1.727781]  (0)[108:kworker/0:2]ipa_rm ipa_rm_delete_resource:155 resource does not exist\n[    1.727785]  (0)[108:kworker/0:2]usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    1.729348]  (0)[108:kworker/0:2]usbpd usbpd0: Could not get USB power_supply, deferring probe\n[    1.729411]  (0)[108:kworker/0:2]qpnp-pdphy c440000.qcom,spmi:qcom,pm660@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.730192]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_svooc_dt]oppo_parse_svooc_dt, chip->vbatt_num = 1,chip->vooc_project = 1.\n[    1.730195]  (0)[108:kworker/0:2][OPPO_CHG][smb2_probe]SMB2_Probe Start----\n[    1.730947]  (0)[108:kworker/0:2]PMI: smblib_get_charge_param: float voltage = 4372500 (0x76)\n[    1.730960]  (0)[108:kworker/0:2]PMI: smblib_get_charge_param: usb input current limit = 500000 (0x14)\n[    1.730974]  (0)[108:kworker/0:2]PMI: smblib_get_charge_param: dc input current limit = 500000 (0x14)\n[    1.731023]  (0)[108:kworker/0:2]PMI: smblib_set_charge_param: usb otg current limit = 250000 (0x00)\n[    1.731116]  (0)[108:kworker/0:2]PMI: smblib_set_charge_param: dc input current limit = 500000 (0x14)\n[    1.731665]  (0)[108:kworker/0:2]PMI: smblib_disable_hw_jeita: jeita reg 0x1090 = 0x0\n[    1.732687]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_custom_dt]chargerid_switch_gpio:44\n[    1.732820]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_custom_dt]dischg-gpio:1269\n[    1.733041]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_custom_dt]ship-gpio:21\n[    1.733049]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_custom_dt]Couldn't read qcom,shortc-gpio rc = 0, qcom,shortc-gpio:-2\n[    1.733056]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_custom_dt]Couldn't read qcom,ccdetect-gpio rc=0, qcom,ccdetect-gpio:-2\n[    1.733071]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_charger_dt] CONFIG input_current_led_ma_normal to 3A \n[    1.733083]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_charger_dt] CONFIG_HIGH_TEMP_VERSION disabled\n[    1.733244]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_charger_dt]vbatt_power_off = 3300, \t\t\tvbatt_soc_1 = 3410, \t\t\tnormal_vterm_hw_inc = 150, \t\t\t, \t\t\tnon_normal_vterm_hw_inc = 10, \t\t\tvbatt_pdqc_to_5v_thr = -22\n[    1.733310]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_charger_dt]ff1_normal_fastchg_ma = 1000, \t\t\tffc2_temp_warm_decidegc = 350, \t\t\tffc2_temp_high_decidegc = 400, \t\t\tffc2_normal_fastchg_ma = 700, \t\t\tchip->limits.ffc2_warm_fastchg_ma = 800, \t\t\tffc2_exit_step_ma = 200, \t\t\tffc_normal_vfloat_sw_limit = 4447, \t\t\tffc2_normal_vfloat_sw_limit = 4430, \t\t\tffc1_temp_normal_vfloat_mv = 4519, \t\t\tffc2_temp_normal_vfloat_mv = 4519, \t\t\tffc_normal_vfloat_over_sw_limit = 4519 \t\t\tffc2_temp_low_decidegc = 120 \t\t\tlimits.ff1_exit_step_ma = 500 \t\t\tlimits.ff1_warm_exit_step_ma = 450 \t\t\tpd_input_current_charger_ma = 3000 \t\t\tqc_input_current_charger_ma = 2000\n[    1.733329]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_charger_dt]default_iterm_ma = 205, \t\t\tdefault_temp_normal_fastchg_current_ma = 2100, \t\t\tdefault_normal_vfloat_sw_limit = 4335, \t\t\tdefault_temp_normal_vfloat_mv = 4385, \t\t\tdefault_normal_vfloat_over_sw_limit = 4390\n[    1.733346]  (0)[108:kworker/0:2][OPPO_CHG][oppo_chg_parse_charger_dt]default_temp_little_cool_fastchg_current_ma = 2000, \t\t\tdefault_little_cool_vfloat_sw_limit = 4350, \t\t\tdefault_temp_little_cool_vfloat_mv = 4387, \t\t\tdefault_little_cool_vfloat_over_sw_limit = 4397\n"
  },
  {
    "path": "results/sdm712/RMX1971/post_bench_interrupts.txt",
    "content": "           CPU0       \n  4:      21549   PDC-GIC  19 Level     arch_timer\n  6:      47923   PDC-GIC  38 Level     arch_mem_timer\n  7:          0   PDC-GIC 483 Edge      smp2p\n  8:          0   PDC-GIC 204 Edge      smp2p\n  9:          0   PDC-GIC 608 Edge      smp2p\n 11:          3   PDC-GIC 637 Level     i2c_geni\n 12:        613   PDC-GIC 633 Level     spi_geni\n 14:          0   PDC-GIC 386 Level     i2c_geni\n 15:      15149   PDC-GIC 387 Level     i2c_geni\n 16:          0   PDC-GIC 302 Edge      tmc-etr\n 17:          0   PDC-GIC 206 Level     msm_vidc\n 18:          0   PDC-GIC 115 Edge      msm_drm\n 19:          0   PDC-GIC 304 Level     sps\n 20:          0   PDC-GIC 538 Level     tsens-upper-lower\n 21:          0   PDC-GIC 540 Level     tsens-critical\n 22:          0   PDC-GIC 539 Level     tsens-upper-lower\n 23:          0   PDC-GIC 541 Level     tsens-critical\n 24:          0   PDC-GIC 323 Level     ngd_slim_irq\n 26:          0   PDC-GIC  32 Edge      apps_wdog_bark\n 29:          5   PDC-GIC 277 Level     gpi_dma800000_gpii1\n 58:         11   PDC-GIC 421 Edge      qcom,qmp-aop\n 59:          0   PDC-GIC 481 Edge      qcom,glink-smem-native-xprt-modem\n 60:          0   PDC-GIC 202 Edge      qcom,glink-smem-native-xprt-adsp\n 61:          0   PDC-GIC 606 Edge      qcom,glink-smem-native-xprt-cdsp\n 63:          0   PDC-GIC 524 Level     eud_irq\n 65:      15773   PDC-GIC  37 Level     apps_rsc\n 66:          0   PDC-GIC 161 Level     display_rsc\n 68:          0  pmic_arb 8388615 Edge      qpnp_kpdpwr_status\n 69:          0  pmic_arb 8454151 Edge      qpnp_resin_status\n 72:          0  pmic_arb 37748761 Edge      pm660_tz\n 81:         20  pmic_arb 51380252 Edge      qpnp_vadc_interrupt\n 82:          0  pmic_arb 24117268 Edge      sig-tx\n 83:          0  pmic_arb 24182804 Edge      sig-rx\n 84:          0  pmic_arb 24248340 Edge      msg-tx\n 85:          0  pmic_arb 24313876 Edge      msg-rx\n 86:          0  pmic_arb 24379412 Edge      msg-tx-failed\n 87:          0  pmic_arb 24444948 Edge      msg-tx-discarded\n 88:          0  pmic_arb 24510484 Edge      msg-rx-discarded\n 89:          0  pmic_arb 54525982 Edge      qpnp_adc_tm_interrupt\n 90:          0  pmic_arb 69206054 Edge      bcl-high-ibat\n 92:          0  pmic_arb 69337126 Edge      bcl-low-vbat\n 95:          0  pmic_arb 469762164 Edge      haptics_sc_irq\n 96:          0  pmic_arb 469827700 Edge      haptics_play_irq\n 97:          0  pmic_arb 574619778 Edge      pm660l_tz\n105:          0  pmic_arb 1026556093 Edge      qpnp_flash_led_fault_irq\n106:          0  pmic_arb 1026752701 Edge      qpnp_flash_led_all_ramp_down_done_irq\n107:          0  pmic_arb 1026818237 Edge      qpnp_flash_led_all_ramp_up_done_irq\n108:          1  pmic_arb 1031864510 Edge      qpnp_wled_ovp_irq\n109:          0  pmic_arb 1052836035 Edge      qpnp_lcdb_sc_irq\n124:        319   PDC-GIC 297 Edge      1d84000.ufshc\n125:          0   PDC-GIC 194 Edge      adsp\n128:          0   PDC-GIC 298 Edge      modem\n129:          0   PDC-GIC 610 Edge      cdsp\n132:         52   PDC-GIC 236 Edge      mmc0\n133:          8   PDC-GIC 254 Edge      8804000.sdhci\n159:          0  msmgpio-dc  10 Edge      TE_GPIO\n173:          0  msmgpio-dc  24 Edge      volume_up\n241:          0  msmgpio-dc  92 Edge      volume_down\n245:          0  msmgpio-dc  96 Edge      8804000.sdhci cd\n270:          0  msmgpio-dc 121 Edge      soc:fpc_fpc1020\n272:          0  msmgpio-dc 123 Edge      mcu_data\n274:          0  msmgpio-dc 125 Edge      touchpanel\n376:          0   PDC-GIC 261 Level     arm-smmu global fault\n377:          0   PDC-GIC 263 Level     arm-smmu global fault\n378:          0   PDC-GIC 396 Level     arm-smmu-context-fault\n379:          0   PDC-GIC 397 Level     arm-smmu-context-fault\n380:          0   PDC-GIC 398 Level     arm-smmu-context-fault\n386:          0   PDC-GIC  97 Level     arm-smmu global fault\n389:          0   PDC-GIC 130 Level     arm-smmu-context-fault\n390:          0   PDC-GIC 131 Level     arm-smmu-context-fault\n391:          0   PDC-GIC 132 Level     arm-smmu-context-fault\n392:          0   PDC-GIC 133 Level     arm-smmu-context-fault\n393:          0   PDC-GIC 134 Level     arm-smmu-context-fault\n394:          0   PDC-GIC 135 Level     arm-smmu-context-fault\n395:          0   PDC-GIC 136 Level     arm-smmu-context-fault\n396:          0   PDC-GIC 137 Level     arm-smmu-context-fault\n397:          0   PDC-GIC 138 Level     arm-smmu-context-fault\n398:          0   PDC-GIC 139 Level     arm-smmu-context-fault\n399:          0   PDC-GIC 140 Level     arm-smmu-context-fault\n400:          0   PDC-GIC 141 Level     arm-smmu-context-fault\n401:          0   PDC-GIC 142 Level     arm-smmu-context-fault\n402:          0   PDC-GIC 143 Level     arm-smmu-context-fault\n403:          0   PDC-GIC 144 Level     arm-smmu-context-fault\n404:          0   PDC-GIC 145 Level     arm-smmu-context-fault\n405:          0   PDC-GIC 146 Level     arm-smmu-context-fault\n406:          0   PDC-GIC 147 Level     arm-smmu-context-fault\n407:          0   PDC-GIC 148 Level     arm-smmu-context-fault\n408:          0   PDC-GIC 149 Level     arm-smmu-context-fault\n409:          0   PDC-GIC 150 Level     arm-smmu-context-fault\n410:          0   PDC-GIC 213 Level     arm-smmu-context-fault\n411:          0   PDC-GIC 214 Level     arm-smmu-context-fault\n412:          0   PDC-GIC 215 Level     arm-smmu-context-fault\n413:          0   PDC-GIC 216 Level     arm-smmu-context-fault\n414:          0   PDC-GIC 217 Level     arm-smmu-context-fault\n415:          0   PDC-GIC 218 Level     arm-smmu-context-fault\n416:          0   PDC-GIC 219 Level     arm-smmu-context-fault\n417:          0   PDC-GIC 220 Level     arm-smmu-context-fault\n418:          0   PDC-GIC 221 Level     arm-smmu-context-fault\n419:          0   PDC-GIC 222 Level     arm-smmu-context-fault\n420:          0   PDC-GIC 223 Level     arm-smmu-context-fault\n421:          0   PDC-GIC 224 Level     arm-smmu-context-fault\n451:          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n452:          0   PDC-GIC 162 Edge      pwr_event_irq\n453:          0   PDC-GIC 518 Level     ss_phy_irq\n454:          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n455:          0   PDC-GIC 332 Level     kgsl-3d0\n456:          0   PDC-GIC 336 Level     HFI\n457:          0   PDC-GIC 337 Level     GMU\n458:          0   PDC-GIC 509 Edge      csiphy\n459:          0   PDC-GIC 510 Edge      csiphy\n460:          0   PDC-GIC 511 Edge      csiphy\n461:          0   PDC-GIC 492 Edge      cci\n462:          0   PDC-GIC 491 Edge      cpas_camnoc\n463:          1   PDC-GIC 493 Edge      cpas-cdm\n464:          0   PDC-GIC 496 Edge      csid\n465:          2   PDC-GIC 497 Edge      ife\n466:          0   PDC-GIC 498 Edge      csid\n467:          2   PDC-GIC 499 Edge      ife\n468:          0   PDC-GIC 500 Edge      csid-lite\n469:          2   PDC-GIC 501 Edge      ife-lite\n470:          0   PDC-GIC 495 Edge      a5\n471:          0   PDC-GIC 506 Edge      jpeg\n472:          0   PDC-GIC 507 Edge      jpegdma\n473:          2   PDC-GIC 494 Edge      fd\n474:          1   PDC-GIC 508 Edge      lrme\n475:          0   PDC-GIC  64 Level     limits_sensor-00\n476:          0   PDC-GIC  65 Level     limits_sensor-01\n605:          0       sde   4 Edge      dsi_ctrl\n606:          0  pmic_arb 101777466 Edge      qpnp_rtc_alarm\n607:          0       sde   2 Edge      sde_rotator_r3\n608:          0  smp2p_gpio   0 Edge      adsp\n609:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n610:          0  smp2p_gpio   2 Edge      adsp\n611:          0  smp2p_gpio   3 Edge      adsp\n640:          0  smp2p_gpio   0 Edge      ipa_smp2p_clk_vote\n672:          0  smp2p_gpio   0 Edge      modem\n673:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n674:          0  smp2p_gpio   2 Edge      modem\n675:          0  smp2p_gpio   3 Edge      modem\n704:          0  smp2p_gpio   0 Edge      cdsp\n705:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n706:          0  smp2p_gpio   2 Edge      cdsp\n707:          0  smp2p_gpio   3 Edge      cdsp\n864:          0   PDC-GIC 165 Edge      dwc3\n866:          0  pmic_arb 16777229 Edge      chg-error\n867:          0  pmic_arb 16842765 Edge      chg-state-change\n871:          0  pmic_arb 17825806 Edge      otg-fail\n872:          0  pmic_arb 17891342 Edge      otg-overcurrent\n873:          0  pmic_arb 17956878 Edge      otg-oc-dis-sw-sts\n874:          0  pmic_arb 18022414 Edge      testmode-change-detect\n875:          0  pmic_arb 18874383 Edge      bat-temp\n876:          0  pmic_arb 18939919 Edge      bat-ocp\n877:          0  pmic_arb 19005455 Edge      bat-ov\n878:          0  pmic_arb 19070991 Edge      bat-low\n879:          0  pmic_arb 19136527 Edge      bat-therm-or-id-missing\n880:          0  pmic_arb 19202063 Edge      bat-terminal-missing\n881:          0  pmic_arb 19922960 Edge      usbin-collapse\n882:          0  pmic_arb 19988496 Edge      usbin-lt-3p6v\n883:          0  pmic_arb 20054032 Edge      usbin-uv\n884:          0  pmic_arb 20119568 Edge      usbin-ov\n885:          0  pmic_arb 20185104 Edge      usbin-plugin\n886:          0  pmic_arb 20250640 Edge      usbin-src-change\n887:          0  pmic_arb 20316176 Edge      usbin-icl-change\n888:          0  pmic_arb 20381712 Edge      type-c-change\n889:          0  pmic_arb 20971537 Edge      dcin-collapse\n890:          0  pmic_arb 21037073 Edge      dcin-lt-3p6v\n891:          0  pmic_arb 21102609 Edge      dcin-uv\n892:          0  pmic_arb 21168145 Edge      dcin-ov\n893:          0  pmic_arb 21233681 Edge      dcin-plugin\n894:          0  pmic_arb 21299217 Edge      div2-en-dg\n895:          0  pmic_arb 21364753 Edge      dcin-icl-change\n897:          0  pmic_arb 23134227 Edge      wdog-bark\n898:          0  pmic_arb 23199763 Edge      aicl-fail\n899:          0  pmic_arb 23265299 Edge      aicl-done\n900:          0  pmic_arb 23330835 Edge      high-duty-cycle\n901:          0  pmic_arb 23396371 Edge      input-current-limiting\n902:          0  pmic_arb 23461907 Edge      temperature-change\n903:          0  pmic_arb 23527443 Edge      switcher-power-ok\nIPI0:     98889       Rescheduling interrupts\nIPI1:        14       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       Timer broadcast interrupts\nIPI4:      1939       IRQ work interrupts\nIPI5:         0       CPU wake-up interrupts\nIPI6:         0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm712/RMX1971/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  4:        744          3          3          3          3          3          3          3   PDC-GIC  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   PDC-GIC  38 Level     arch_mem_timer\n  7:          0          0          0          0          0          0          0          0   PDC-GIC 483 Edge      smp2p\n  8:          0          0          0          0          0          0          0          0   PDC-GIC 204 Edge      smp2p\n  9:          0          0          0          0          0          0          0          0   PDC-GIC 608 Edge      smp2p\n 11:          3          0          0          0          0          0          0          0   PDC-GIC 637 Level     i2c_geni\n 12:        613          0          0          0          0          0          0          0   PDC-GIC 633 Level     spi_geni\n 14:          0          0          0          0          0          0          0          0   PDC-GIC 386 Level     i2c_geni\n 15:        203          0          0          0          0          0          0          0   PDC-GIC 387 Level     i2c_geni\n 16:          0          0          0          0          0          0          0          0   PDC-GIC 302 Edge      tmc-etr\n 17:          0          0          0          0          0          0          0          0   PDC-GIC 206 Level     msm_vidc\n 18:          0          0          0          0          0          0          0          0   PDC-GIC 115 Edge      msm_drm\n 19:          0          0          0          0          0          0          0          0   PDC-GIC 304 Level     sps\n 20:          0          0          0          0          0          0          0          0   PDC-GIC 538 Level     tsens-upper-lower\n 21:          0          0          0          0          0          0          0          0   PDC-GIC 540 Level     tsens-critical\n 22:          0          0          0          0          0          0          0          0   PDC-GIC 539 Level     tsens-upper-lower\n 23:          0          0          0          0          0          0          0          0   PDC-GIC 541 Level     tsens-critical\n 24:          0          0          0          0          0          0          0          0   PDC-GIC 323 Level     ngd_slim_irq\n 26:          0          0          0          0          0          0          0          0   PDC-GIC  32 Edge      apps_wdog_bark\n 29:          5          0          0          0          0          0          0          0   PDC-GIC 277 Level     gpi_dma800000_gpii1\n 58:         11          0          0          0          0          0          0          0   PDC-GIC 421 Edge      qcom,qmp-aop\n 59:          0          0          0          0          0          0          0          0   PDC-GIC 481 Edge      qcom,glink-smem-native-xprt-modem\n 60:          0          0          0          0          0          0          0          0   PDC-GIC 202 Edge      qcom,glink-smem-native-xprt-adsp\n 61:          0          0          0          0          0          0          0          0   PDC-GIC 606 Edge      qcom,glink-smem-native-xprt-cdsp\n 63:          0          0          0          0          0          0          0          0   PDC-GIC 524 Level     eud_irq\n 65:        465          0          0          0          0          0          0          0   PDC-GIC  37 Level     apps_rsc\n 66:          0          0          0          0          0          0          0          0   PDC-GIC 161 Level     display_rsc\n 68:          0          0          0          0          0          0          0          0  pmic_arb 8388615 Edge      qpnp_kpdpwr_status\n 69:          0          0          0          0          0          0          0          0  pmic_arb 8454151 Edge      qpnp_resin_status\n 72:          0          0          0          0          0          0          0          0  pmic_arb 37748761 Edge      pm660_tz\n 81:         20          0          0          0          0          0          0          0  pmic_arb 51380252 Edge      qpnp_vadc_interrupt\n 82:          0          0          0          0          0          0          0          0  pmic_arb 24117268 Edge      sig-tx\n 83:          0          0          0          0          0          0          0          0  pmic_arb 24182804 Edge      sig-rx\n 84:          0          0          0          0          0          0          0          0  pmic_arb 24248340 Edge      msg-tx\n 85:          0          0          0          0          0          0          0          0  pmic_arb 24313876 Edge      msg-rx\n 86:          0          0          0          0          0          0          0          0  pmic_arb 24379412 Edge      msg-tx-failed\n 87:          0          0          0          0          0          0          0          0  pmic_arb 24444948 Edge      msg-tx-discarded\n 88:          0          0          0          0          0          0          0          0  pmic_arb 24510484 Edge      msg-rx-discarded\n 89:          0          0          0          0          0          0          0          0  pmic_arb 54525982 Edge      qpnp_adc_tm_interrupt\n 90:          0          0          0          0          0          0          0          0  pmic_arb 69206054 Edge      bcl-high-ibat\n 92:          0          0          0          0          0          0          0          0  pmic_arb 69337126 Edge      bcl-low-vbat\n 95:          0          0          0          0          0          0          0          0  pmic_arb 469762164 Edge      haptics_sc_irq\n 96:          0          0          0          0          0          0          0          0  pmic_arb 469827700 Edge      haptics_play_irq\n 97:          0          0          0          0          0          0          0          0  pmic_arb 574619778 Edge      pm660l_tz\n105:          0          0          0          0          0          0          0          0  pmic_arb 1026556093 Edge      qpnp_flash_led_fault_irq\n106:          0          0          0          0          0          0          0          0  pmic_arb 1026752701 Edge      qpnp_flash_led_all_ramp_down_done_irq\n107:          0          0          0          0          0          0          0          0  pmic_arb 1026818237 Edge      qpnp_flash_led_all_ramp_up_done_irq\n108:          1          0          0          0          0          0          0          0  pmic_arb 1031864510 Edge      qpnp_wled_ovp_irq\n109:          0          0          0          0          0          0          0          0  pmic_arb 1052836035 Edge      qpnp_lcdb_sc_irq\n124:        311          0          0          0          0          0          0          0   PDC-GIC 297 Edge      1d84000.ufshc\n125:          0          0          0          0          0          0          0          0   PDC-GIC 194 Edge      adsp\n128:          0          0          0          0          0          0          0          0   PDC-GIC 298 Edge      modem\n129:          0          0          0          0          0          0          0          0   PDC-GIC 610 Edge      cdsp\n132:         52          0          0          0          0          0          0          0   PDC-GIC 236 Edge      mmc0\n133:          8          0          0          0          0          0          0          0   PDC-GIC 254 Edge      8804000.sdhci\n159:          0          0          0          0          0          0          0          0  msmgpio-dc  10 Edge      TE_GPIO\n173:          0          0          0          0          0          0          0          0  msmgpio-dc  24 Edge      volume_up\n241:          0          0          0          0          0          0          0          0  msmgpio-dc  92 Edge      volume_down\n245:          0          0          0          0          0          0          0          0  msmgpio-dc  96 Edge      8804000.sdhci cd\n270:          0          0          0          0          0          0          0          0  msmgpio-dc 121 Edge      soc:fpc_fpc1020\n272:          0          0          0          0          0          0          0          0  msmgpio-dc 123 Edge      mcu_data\n274:          0          0          0          0          0          0          0          0  msmgpio-dc 125 Edge      touchpanel\n376:          0          0          0          0          0          0          0          0   PDC-GIC 261 Level     arm-smmu global fault\n377:          0          0          0          0          0          0          0          0   PDC-GIC 263 Level     arm-smmu global fault\n378:          0          0          0          0          0          0          0          0   PDC-GIC 396 Level     arm-smmu-context-fault\n379:          0          0          0          0          0          0          0          0   PDC-GIC 397 Level     arm-smmu-context-fault\n380:          0          0          0          0          0          0          0          0   PDC-GIC 398 Level     arm-smmu-context-fault\n386:          0          0          0          0          0          0          0          0   PDC-GIC  97 Level     arm-smmu global fault\n389:          0          0          0          0          0          0          0          0   PDC-GIC 130 Level     arm-smmu-context-fault\n390:          0          0          0          0          0          0          0          0   PDC-GIC 131 Level     arm-smmu-context-fault\n391:          0          0          0          0          0          0          0          0   PDC-GIC 132 Level     arm-smmu-context-fault\n392:          0          0          0          0          0          0          0          0   PDC-GIC 133 Level     arm-smmu-context-fault\n393:          0          0          0          0          0          0          0          0   PDC-GIC 134 Level     arm-smmu-context-fault\n394:          0          0          0          0          0          0          0          0   PDC-GIC 135 Level     arm-smmu-context-fault\n395:          0          0          0          0          0          0          0          0   PDC-GIC 136 Level     arm-smmu-context-fault\n396:          0          0          0          0          0          0          0          0   PDC-GIC 137 Level     arm-smmu-context-fault\n397:          0          0          0          0          0          0          0          0   PDC-GIC 138 Level     arm-smmu-context-fault\n398:          0          0          0          0          0          0          0          0   PDC-GIC 139 Level     arm-smmu-context-fault\n399:          0          0          0          0          0          0          0          0   PDC-GIC 140 Level     arm-smmu-context-fault\n400:          0          0          0          0          0          0          0          0   PDC-GIC 141 Level     arm-smmu-context-fault\n401:          0          0          0          0          0          0          0          0   PDC-GIC 142 Level     arm-smmu-context-fault\n402:          0          0          0          0          0          0          0          0   PDC-GIC 143 Level     arm-smmu-context-fault\n403:          0          0          0          0          0          0          0          0   PDC-GIC 144 Level     arm-smmu-context-fault\n404:          0          0          0          0          0          0          0          0   PDC-GIC 145 Level     arm-smmu-context-fault\n405:          0          0          0          0          0          0          0          0   PDC-GIC 146 Level     arm-smmu-context-fault\n406:          0          0          0          0          0          0          0          0   PDC-GIC 147 Level     arm-smmu-context-fault\n407:          0          0          0          0          0          0          0          0   PDC-GIC 148 Level     arm-smmu-context-fault\n408:          0          0          0          0          0          0          0          0   PDC-GIC 149 Level     arm-smmu-context-fault\n409:          0          0          0          0          0          0          0          0   PDC-GIC 150 Level     arm-smmu-context-fault\n410:          0          0          0          0          0          0          0          0   PDC-GIC 213 Level     arm-smmu-context-fault\n411:          0          0          0          0          0          0          0          0   PDC-GIC 214 Level     arm-smmu-context-fault\n412:          0          0          0          0          0          0          0          0   PDC-GIC 215 Level     arm-smmu-context-fault\n413:          0          0          0          0          0          0          0          0   PDC-GIC 216 Level     arm-smmu-context-fault\n414:          0          0          0          0          0          0          0          0   PDC-GIC 217 Level     arm-smmu-context-fault\n415:          0          0          0          0          0          0          0          0   PDC-GIC 218 Level     arm-smmu-context-fault\n416:          0          0          0          0          0          0          0          0   PDC-GIC 219 Level     arm-smmu-context-fault\n417:          0          0          0          0          0          0          0          0   PDC-GIC 220 Level     arm-smmu-context-fault\n418:          0          0          0          0          0          0          0          0   PDC-GIC 221 Level     arm-smmu-context-fault\n419:          0          0          0          0          0          0          0          0   PDC-GIC 222 Level     arm-smmu-context-fault\n420:          0          0          0          0          0          0          0          0   PDC-GIC 223 Level     arm-smmu-context-fault\n421:          0          0          0          0          0          0          0          0   PDC-GIC 224 Level     arm-smmu-context-fault\n451:          0          0          0          0          0          0          0          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n452:          0          0          0          0          0          0          0          0   PDC-GIC 162 Edge      pwr_event_irq\n453:          0          0          0          0          0          0          0          0   PDC-GIC 518 Level     ss_phy_irq\n454:          0          0          0          0          0          0          0          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n455:          0          0          0          0          0          0          0          0   PDC-GIC 332 Level     kgsl-3d0\n456:          0          0          0          0          0          0          0          0   PDC-GIC 336 Level     HFI\n457:          0          0          0          0          0          0          0          0   PDC-GIC 337 Level     GMU\n458:          0          0          0          0          0          0          0          0   PDC-GIC 509 Edge      csiphy\n459:          0          0          0          0          0          0          0          0   PDC-GIC 510 Edge      csiphy\n460:          0          0          0          0          0          0          0          0   PDC-GIC 511 Edge      csiphy\n461:          0          0          0          0          0          0          0          0   PDC-GIC 492 Edge      cci\n462:          0          0          0          0          0          0          0          0   PDC-GIC 491 Edge      cpas_camnoc\n463:          1          0          0          0          0          0          0          0   PDC-GIC 493 Edge      cpas-cdm\n464:          0          0          0          0          0          0          0          0   PDC-GIC 496 Edge      csid\n465:          2          0          0          0          0          0          0          0   PDC-GIC 497 Edge      ife\n466:          0          0          0          0          0          0          0          0   PDC-GIC 498 Edge      csid\n467:          2          0          0          0          0          0          0          0   PDC-GIC 499 Edge      ife\n468:          0          0          0          0          0          0          0          0   PDC-GIC 500 Edge      csid-lite\n469:          2          0          0          0          0          0          0          0   PDC-GIC 501 Edge      ife-lite\n470:          0          0          0          0          0          0          0          0   PDC-GIC 495 Edge      a5\n471:          0          0          0          0          0          0          0          0   PDC-GIC 506 Edge      jpeg\n472:          0          0          0          0          0          0          0          0   PDC-GIC 507 Edge      jpegdma\n473:          2          0          0          0          0          0          0          0   PDC-GIC 494 Edge      fd\n474:          1          0          0          0          0          0          0          0   PDC-GIC 508 Edge      lrme\n475:          0          0          0          0          0          0          0          0   PDC-GIC  64 Level     limits_sensor-00\n476:          0          0          0          0          0          0          0          0   PDC-GIC  65 Level     limits_sensor-01\n605:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n606:          0          0          0          0          0          0          0          0  pmic_arb 101777466 Edge      qpnp_rtc_alarm\n607:          0          0          0          0          0          0          0          0       sde   2 Edge      sde_rotator_r3\n608:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      adsp\n609:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n610:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      adsp\n611:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      adsp\n640:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      ipa_smp2p_clk_vote\n672:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      modem\n673:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n674:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      modem\n675:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      modem\n704:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      cdsp\n705:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n706:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      cdsp\n707:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      cdsp\n864:          0          0          0          0          0          0          0          0   PDC-GIC 165 Edge      dwc3\n866:          0          0          0          0          0          0          0          0  pmic_arb 16777229 Edge      chg-error\n867:          0          0          0          0          0          0          0          0  pmic_arb 16842765 Edge      chg-state-change\n871:          0          0          0          0          0          0          0          0  pmic_arb 17825806 Edge      otg-fail\n872:          0          0          0          0          0          0          0          0  pmic_arb 17891342 Edge      otg-overcurrent\n873:          0          0          0          0          0          0          0          0  pmic_arb 17956878 Edge      otg-oc-dis-sw-sts\n874:          0          0          0          0          0          0          0          0  pmic_arb 18022414 Edge      testmode-change-detect\n875:          0          0          0          0          0          0          0          0  pmic_arb 18874383 Edge      bat-temp\n876:          0          0          0          0          0          0          0          0  pmic_arb 18939919 Edge      bat-ocp\n877:          0          0          0          0          0          0          0          0  pmic_arb 19005455 Edge      bat-ov\n878:          0          0          0          0          0          0          0          0  pmic_arb 19070991 Edge      bat-low\n879:          0          0          0          0          0          0          0          0  pmic_arb 19136527 Edge      bat-therm-or-id-missing\n880:          0          0          0          0          0          0          0          0  pmic_arb 19202063 Edge      bat-terminal-missing\n881:          0          0          0          0          0          0          0          0  pmic_arb 19922960 Edge      usbin-collapse\n882:          0          0          0          0          0          0          0          0  pmic_arb 19988496 Edge      usbin-lt-3p6v\n883:          0          0          0          0          0          0          0          0  pmic_arb 20054032 Edge      usbin-uv\n884:          0          0          0          0          0          0          0          0  pmic_arb 20119568 Edge      usbin-ov\n885:          0          0          0          0          0          0          0          0  pmic_arb 20185104 Edge      usbin-plugin\n886:          0          0          0          0          0          0          0          0  pmic_arb 20250640 Edge      usbin-src-change\n887:          0          0          0          0          0          0          0          0  pmic_arb 20316176 Edge      usbin-icl-change\n888:          0          0          0          0          0          0          0          0  pmic_arb 20381712 Edge      type-c-change\n889:          0          0          0          0          0          0          0          0  pmic_arb 20971537 Edge      dcin-collapse\n890:          0          0          0          0          0          0          0          0  pmic_arb 21037073 Edge      dcin-lt-3p6v\n891:          0          0          0          0          0          0          0          0  pmic_arb 21102609 Edge      dcin-uv\n892:          0          0          0          0          0          0          0          0  pmic_arb 21168145 Edge      dcin-ov\n893:          0          0          0          0          0          0          0          0  pmic_arb 21233681 Edge      dcin-plugin\n894:          0          0          0          0          0          0          0          0  pmic_arb 21299217 Edge      div2-en-dg\n895:          0          0          0          0          0          0          0          0  pmic_arb 21364753 Edge      dcin-icl-change\n897:          0          0          0          0          0          0          0          0  pmic_arb 23134227 Edge      wdog-bark\n898:          0          0          0          0          0          0          0          0  pmic_arb 23199763 Edge      aicl-fail\n899:          0          0          0          0          0          0          0          0  pmic_arb 23265299 Edge      aicl-done\n900:          0          0          0          0          0          0          0          0  pmic_arb 23330835 Edge      high-duty-cycle\n901:          0          0          0          0          0          0          0          0  pmic_arb 23396371 Edge      input-current-limiting\n902:          0          0          0          0          0          0          0          0  pmic_arb 23461907 Edge      temperature-change\n903:          0          0          0          0          0          0          0          0  pmic_arb 23527443 Edge      switcher-power-ok\nIPI0:        66         23         23         23         23         23         23         23       Rescheduling interrupts\nIPI1:         0        702        702        702        702        702        702        702       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI4:       104          5          4          5          4          3          6          5       IRQ work interrupts\nIPI5:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm712/RMX1971/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    4 root      0:00 [kworker/0:0H]\n    6 root      0:00 [ksoftirqd/0]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [lru-add-drain]\n   15 root      0:00 [cpuhp/0]\n   16 root      0:00 [cpuhp/1]\n   17 root      0:00 [migration/1]\n   18 root      0:00 [ksoftirqd/1]\n   19 root      0:00 [kworker/1:0]\n   20 root      0:00 [kworker/1:0H]\n   21 root      0:00 [rcuop/1]\n   22 root      0:00 [rcuos/1]\n   23 root      0:00 [rcuob/1]\n   24 root      0:00 [cpuhp/2]\n   25 root      0:00 [migration/2]\n   26 root      0:00 [ksoftirqd/2]\n   27 root      0:00 [kworker/2:0]\n   28 root      0:00 [kworker/2:0H]\n   29 root      0:00 [rcuop/2]\n   30 root      0:00 [rcuos/2]\n   31 root      0:00 [rcuob/2]\n   32 root      0:00 [cpuhp/3]\n   33 root      0:00 [migration/3]\n   34 root      0:00 [ksoftirqd/3]\n   36 root      0:00 [kworker/3:0H]\n   37 root      0:00 [rcuop/3]\n   38 root      0:00 [rcuos/3]\n   39 root      0:00 [rcuob/3]\n   40 root      0:00 [cpuhp/4]\n   41 root      0:00 [migration/4]\n   42 root      0:00 [ksoftirqd/4]\n   43 root      0:00 [kworker/4:0]\n   44 root      0:00 [kworker/4:0H]\n   45 root      0:00 [rcuop/4]\n   46 root      0:00 [rcuos/4]\n   47 root      0:00 [rcuob/4]\n   48 root      0:00 [cpuhp/5]\n   49 root      0:00 [migration/5]\n   50 root      0:00 [ksoftirqd/5]\n   51 root      0:00 [kworker/5:0]\n   52 root      0:00 [kworker/5:0H]\n   53 root      0:00 [rcuop/5]\n   54 root      0:00 [rcuos/5]\n   55 root      0:00 [rcuob/5]\n   56 root      0:00 [cpuhp/6]\n   57 root      0:00 [migration/6]\n   58 root      0:00 [ksoftirqd/6]\n   59 root      0:00 [kworker/6:0]\n   60 root      0:00 [kworker/6:0H]\n   61 root      0:00 [rcuop/6]\n   62 root      0:00 [rcuos/6]\n   63 root      0:00 [rcuob/6]\n   64 root      0:00 [cpuhp/7]\n   65 root      0:00 [migration/7]\n   66 root      0:00 [ksoftirqd/7]\n   67 root      0:00 [kworker/7:0]\n   68 root      0:00 [kworker/7:0H]\n   69 root      0:00 [rcuop/7]\n   70 root      0:00 [rcuos/7]\n   71 root      0:00 [rcuob/7]\n   72 root      0:00 [netns]\n   73 root      0:00 [pm]\n   75 root      0:00 [kworker/u17:0]\n   76 root      0:00 [ipa_usb_wq]\n   77 root      0:01 [kworker/u16:1]\n   78 root      0:00 [msm_watchdog]\n   79 root      0:00 [qmp_aop]\n   80 root      0:00 [smem_native_mps]\n   81 root      0:00 [mpss_smem_glink]\n   82 root      0:00 [smem_native_lpa]\n   83 root      0:00 [lpass_smem_glin]\n   84 root      0:00 [smem_native_cds]\n   85 root      0:00 [cdsp_smem_glink]\n   86 root      0:00 [khungtaskd]\n   87 root      0:00 [oom_reaper]\n   88 root      0:00 [writeback]\n   89 root      0:00 [kcompactd0]\n   90 root      0:00 [crypto]\n   91 root      0:00 [bioset]\n   92 root      0:00 [kblockd]\n   93 root      0:00 [irq/376-arm-smm]\n   94 root      0:00 [irq/377-arm-smm]\n   95 root      0:00 [irq/386-arm-smm]\n   96 root      0:00 [irq/20-tsens-up]\n   97 root      0:00 [irq/21-tsens-cr]\n   98 root      0:00 [irq/22-tsens-up]\n   99 root      0:00 [irq/23-tsens-cr]\n  100 root      0:00 [system]\n  101 root      0:00 [ipa_power_mgmt]\n  102 root      0:00 [transport_power]\n  103 root      0:00 [ipa_rm_wq]\n  104 root      0:00 [devfreq_wq]\n  105 root      0:00 [governor_msm_ad]\n  106 root      0:00 [cfg80211]\n  107 root      0:00 [irq/109-qpnp_lc]\n  109 root      0:00 [irq/108-qpnp_wl]\n  134 root      0:00 [panic_flush]\n  135 root      0:00 [kswapd0]\n  136 root      0:00 [vmstat]\n  137 root      0:00 [ecryptfs-kthrea]\n  170 root      0:00 [irq/391-arm-smm]\n  171 root      0:00 [irq/392-arm-smm]\n  172 root      0:00 [irq/63-eud_irq]\n  173 root      0:00 [glink_ssr_wq]\n  174 root      0:00 [glink_lbsrv]\n  175 root      0:00 [spi_wdsp]\n  176 root      0:00 [wdsp_spi_glink_]\n  177 root      0:00 [glink_xprt_wq]\n  178 root      0:00 [IPCRTR_mpss_sme]\n  179 root      0:00 [IPCRTR_lpass_sm]\n  180 root      0:00 [IPCRTR_cdsp_sme]\n  181 root      0:00 [glink_pkt_wq]\n  182 root      0:00 [irq/393-arm-smm]\n  183 root      0:00 [qmi_svc_event_w]\n  184 root      0:00 [msm_ipc_router]\n  185 root      0:00 [servloc_wq]\n  186 root      0:00 [mem_share_svc]\n  187 root      0:00 [irq/394-arm-smm]\n  188 root      0:00 [hwrng]\n  190 root      0:00 [qmi_hndl0000000]\n  192 root      0:00 [diag_real_time_]\n  193 root      0:00 [diag_wq]\n  195 root      0:00 [DIAG_USB_diag]\n  196 root      0:00 [diag_cntl_wq]\n  197 root      0:00 [diag_dci_wq]\n  198 root      0:00 [MODEM_CNTL]\n  199 root      0:00 [MODEM_DATA]\n  200 root      0:00 [MODEM_CMD]\n  201 root      0:00 [MODEM_DCI]\n  202 root      0:00 [MODEM_DCI_CMD]\n  203 root      0:00 [LPASS_CNTL]\n  204 root      0:00 [LPASS_DATA]\n  205 root      0:00 [LPASS_CMD]\n  206 root      0:00 [LPASS_DCI]\n  207 root      0:00 [LPASS_DCI_CMD]\n  208 root      0:00 [WCNSS_CNTL]\n  209 root      0:00 [WCNSS_DATA]\n  210 root      0:00 [WCNSS_CMD]\n  211 root      0:00 [WCNSS_DCI]\n  212 root      0:00 [WCNSS_DCI_CMD]\n  213 root      0:00 [SENSORS_CNTL]\n  214 root      0:00 [SENSORS_DATA]\n  215 root      0:00 [SENSORS_CMD]\n  216 root      0:00 [SENSORS_DCI]\n  217 root      0:00 [SENSORS_DCI_CMD]\n  218 root      0:00 [DIAG_CTRL]\n  219 root      0:00 [DIAG_DATA]\n  220 root      0:00 [DIAG_CMD]\n  221 root      0:00 [DIAG_DCI_DATA]\n  222 root      0:00 [DIAG_DCI_CMD]\n  223 root      0:00 [CDSP_CNTL]\n  224 root      0:00 [CDSP_DATA]\n  225 root      0:00 [CDSP_CMD]\n  226 root      0:00 [CDSP_DCI]\n  227 root      0:00 [CDSP_DCI_CMD]\n  228 root      0:00 [DIAG_CNTL_SOCKE]\n  229 root      0:00 [DIAG_GLINK_DIAG]\n  230 root      0:00 [DIAG_GLINK_DIAG]\n  231 root      0:00 [DIAG_GLINK_DIAG]\n  232 root      0:00 [DIAG_GLINK_DIAG]\n  233 root      0:00 [DIAG_GLINK_DIAG]\n  234 root      0:00 [oppo_ffl]\n  235 root      0:00 [irq/390-arm-smm]\n  236 root      0:00 [irq/395-arm-smm]\n  237 root      0:00 [crtc_commit:100]\n  238 root      0:00 [crtc_event:100]\n  239 root      0:00 [crtc_commit:153]\n  240 root      0:00 [crtc_event:153]\n  241 root      0:00 [pp_event]\n  242 root      0:00 [kgsl-workqueue]\n  243 root      0:00 [kgsl-mementry]\n  244 root      0:00 [kgsl_worker_thr]\n  245 root      0:00 [irq/378-arm-smm]\n  246 root      0:00 [irq/379-arm-smm]\n  247 root      0:00 [irq/380-arm-smm]\n  248 root      0:00 [kgsl-events]\n  249 root      0:00 [kgsl_devfreq_wq]\n  250 root      0:00 [bioset]\n  251 root      0:00 [bioset]\n  252 root      0:00 [bioset]\n  253 root      0:00 [bioset]\n  254 root      0:00 [bioset]\n  255 root      0:00 [bioset]\n  256 root      0:00 [bioset]\n  257 root      0:00 [bioset]\n  258 root      0:00 [bioset]\n  259 root      0:00 [bioset]\n  260 root      0:00 [bioset]\n  261 root      0:00 [bioset]\n  262 root      0:00 [bioset]\n  263 root      0:00 [bioset]\n  264 root      0:00 [bioset]\n  265 root      0:00 [bioset]\n  266 root      0:00 [bioset]\n  267 root      0:00 [bioset]\n  268 root      0:00 [bioset]\n  269 root      0:00 [bioset]\n  270 root      0:00 [bioset]\n  271 root      0:00 [bioset]\n  272 root      0:00 [bioset]\n  273 root      0:00 [bioset]\n  274 root      0:00 [bioset]\n  275 root      0:00 [bioset]\n  276 root      0:00 [bioset]\n  277 root      0:00 [bioset]\n  278 root      0:00 [bioset]\n  279 root      0:00 [bioset]\n  280 root      0:00 [bioset]\n  281 root      0:00 [bioset]\n  282 root      0:00 [bioset]\n  283 root      0:00 [qseecom-unreg-l]\n  284 root      0:00 [qseecom-unload-]\n  285 root      0:00 [memory_wq]\n  286 root      0:00 [irq/396-arm-smm]\n  287 root      0:00 [qcrypto_seq_res]\n  288 root      0:00 [irq/397-arm-smm]\n  309 root      0:00 [scsi_eh_0]\n  310 root      0:00 [scsi_tmf_0]\n  311 root      0:00 [ufs_pm_qos_0]\n  312 root      0:00 [ufs_clk_gating_]\n  313 root      0:00 [ice-set-key]\n  314 root      0:00 [ufs_clkscaling_]\n  315 root      0:00 [spi32766]\n  316 root      0:00 [bond0]\n  317 root      0:00 [sharedmem_qmi_w]\n  323 root      0:00 [uether]\n  324 root      0:00 [qmi_hndl0000000]\n  325 root      0:00 [k_ipa_usb]\n  328 root      0:00 [tp_async]\n  329 root      0:00 [irq/274-touchpa]\n  330 root      0:00 [speedup_resume_]\n  331 root      0:00 [lcd_trigger_loa]\n  332 root      0:00 [esd_workthread]\n  333 root      0:00 [bioset]\n  334 root      0:00 [HMX_0f_update_r]\n  335 root      0:00 [bioset]\n  336 root      0:00 [bioset]\n  337 root      0:00 [bioset]\n  338 root      0:00 [bioset]\n  339 root      0:00 [irq/398-arm-smm]\n  340 root      0:00 [bioset]\n  341 root      0:00 [msm_vidc_worker]\n  342 root      0:00 [bioset]\n  343 root      0:00 [pm_workerq_venu]\n  344 root      0:00 [irq/399-arm-smm]\n  345 root      0:00 [bioset]\n  346 root      0:00 [irq/400-arm-smm]\n  347 root      0:00 [irq/401-arm-smm]\n  348 root      0:00 [irq/402-arm-smm]\n  349 root      0:00 [bioset]\n  350 root      0:00 [rot_commitq_0_0]\n  351 root      0:00 [rot_commitq_0_1]\n  352 root      0:00 [rot_doneq_0_0]\n  353 root      0:00 [rot_doneq_0_1]\n  354 root      0:00 [rot_fenceq_0_0]\n  356 root      0:00 [rot_fenceq_0_1]\n  357 root      0:00 [rot_fenceq_0_2]\n  358 root      0:00 [rot_fenceq_0_3]\n  359 root      0:00 [rot_fenceq_0_4]\n  360 root      0:00 [rot_fenceq_0_5]\n  361 root      0:00 [rot_fenceq_0_6]\n  362 root      0:00 [rot_fenceq_0_7]\n  363 root      0:00 [rot_fenceq_0_8]\n  364 root      0:00 [rot_fenceq_0_9]\n  365 root      0:00 [rot_fenceq_0_10]\n  366 root      0:00 [rot_fenceq_0_11]\n  367 root      0:00 [rot_fenceq_0_12]\n  368 root      0:00 [rot_fenceq_0_13]\n  370 root      0:00 [rot_fenceq_0_14]\n  371 root      0:00 [rot_fenceq_0_15]\n  373 root      0:00 [cam-cpas]\n  374 root      0:00 [kworker/u17:1]\n  375 root      0:00 [qcom,cam_virtua]\n  376 root      0:00 [irq/403-arm-smm]\n  377 root      0:00 [qcom,cam170-cpa]\n  378 root      0:00 [irq/404-arm-smm]\n  379 root      0:00 [cam_cci_wq]\n  380 root      0:00 [cam_cci_wq]\n  381 root      0:00 [irq/405-arm-smm]\n  382 root      0:00 [irq/406-arm-smm]\n  383 root      0:00 [irq/407-arm-smm]\n  384 root      0:00 [irq/408-arm-smm]\n  385 root      0:00 [irq/90-bcl-high]\n  386 root      0:00 [irq/92-bcl-low-]\n  387 root      0:00 [irq/475-limits_]\n  388 root      0:00 [irq/476-limits_]\n  389 root      0:00 [qmi_tmd_wq]\n  390 root      0:00 [dm_bufio_cache]\n  391 root      0:00 [irq/96-haptics_]\n  392 root      0:00 [mmc_clk_gate/mm]\n  393 root      0:00 [irq/95-haptics_]\n  394 root      0:00 [psimon]\n  395 root      0:00 [mmc_clk_gate/mm]\n  396 root      0:00 [cds_recovery_wo]\n  397 root      0:00 [wlan_logging_th]\n  398 root      0:00 [irq/133-8804000]\n  399 root      0:00 [irq/132-mmc0]\n  400 root      0:00 [irq/245-8804000]\n  401 root      0:00 [irq/409-arm-smm]\n  402 root      0:00 [uaudio_svc]\n  403 root      0:00 [qmi_hndl0000000]\n  404 root      0:00 [apr_driver]\n  406 root      0:00 [ipv6_addrconf]\n  407 root      0:00 [irq/610-adsp]\n  409 root      0:00 [sysmon_wq]\n  410 root      0:00 [irq/706-cdsp]\n  411 root      0:00 [irq/674-modem]\n  421 1000      0:00 [shortc_thread]\n  422 root      0:00 [irq/866-chg-err]\n  424 root      0:00 [irq/867-chg-sta]\n  425 root      0:00 [irq/871-otg-fai]\n  426 root      0:00 [irq/872-otg-ove]\n  427 root      0:00 [irq/873-otg-oc-]\n  428 root      0:00 [irq/874-testmod]\n  429 root      0:00 [irq/875-bat-tem]\n  431 root      0:00 [irq/876-bat-ocp]\n  432 root      0:00 [irq/877-bat-ov]\n  433 root      0:00 [irq/878-bat-low]\n  434 root      0:00 [irq/879-bat-the]\n  435 root      0:00 [irq/880-bat-ter]\n  436 root      0:00 [irq/881-usbin-c]\n  437 root      0:00 [irq/882-usbin-l]\n  438 root      0:00 [irq/883-usbin-u]\n  439 root      0:00 [irq/884-usbin-o]\n  440 root      0:00 [irq/885-usbin-p]\n  441 root      0:00 [irq/886-usbin-s]\n  442 root      0:00 [irq/887-usbin-i]\n  443 root      0:00 [irq/888-type-c-]\n  444 root      0:00 [irq/889-dcin-co]\n  445 root      0:00 [irq/890-dcin-lt]\n  446 root      0:00 [irq/891-dcin-uv]\n  447 root      0:00 [irq/892-dcin-ov]\n  448 root      0:00 [irq/893-dcin-pl]\n  449 root      0:00 [irq/894-div2-en]\n  450 root      0:00 [irq/895-dcin-ic]\n  451 root      0:00 [irq/897-wdog-ba]\n  452 root      0:00 [irq/898-aicl-fa]\n  453 root      0:00 [irq/899-aicl-do]\n  454 root      0:00 [irq/900-high-du]\n  455 root      0:00 [irq/901-input-c]\n  456 root      0:00 [irq/902-tempera]\n  457 root      0:00 [irq/903-switche]\n  458 root      0:00 [tbatt_pwroff]\n  459 root      0:00 [usbtemp_kthread]\n  466 root      0:00 [kworker/1:1]\n  467 root      0:00 [kworker/2:1]\n  468 root      0:00 [kworker/3:1]\n  469 root      0:00 [kworker/4:1]\n  470 root      0:00 [kworker/5:1]\n  471 root      0:00 [kworker/6:1]\n  472 root      0:00 [kworker/7:1]\n  473 root      0:00 [irq/82-sig-tx]\n  474 root      0:00 [irq/83-sig-rx]\n  475 root      0:00 [irq/452-pwr_eve]\n  476 root      0:00 [irq/451-dp_hs_p]\n  477 root      0:00 [irq/454-dm_hs_p]\n  478 root      0:00 [irq/453-ss_phy_]\n  479 root      0:00 [irq/389-arm-smm]\n  480 root      0:00 [usb_bam_wq]\n  481 root      0:00 [core_ctl/0]\n  482 root      0:00 [core_ctl/6]\n  483 root      0:00 [rq_stats]\n  484 root      0:00 [msm_perf:events]\n  485 root      0:00 [irq/410-arm-smm]\n  486 root      0:00 [irq/411-arm-smm]\n  487 root      0:00 [irq/412-arm-smm]\n  488 root      0:00 [irq/413-arm-smm]\n  489 root      0:00 [irq/414-arm-smm]\n  490 root      0:00 [irq/415-arm-smm]\n  491 root      0:00 [irq/416-arm-smm]\n  492 root      0:00 [irq/417-arm-smm]\n  493 root      0:00 [irq/418-arm-smm]\n  494 root      0:00 [irq/419-arm-smm]\n  495 root      0:00 [irq/420-arm-smm]\n  496 root      0:00 [irq/421-arm-smm]\n  497 root      0:00 [sb-3]\n  498 root      0:00 [ngd_rx_thread3]\n  499 root      0:00 [ngd_notify_sl3]\n  500 root      0:00 [irq/270-soc:fpc]\n  501 root      0:00 [irq/107-qpnp_fl]\n  502 root      0:00 [irq/106-qpnp_fl]\n  503 root      0:00 [irq/105-qpnp_fl]\n  514 root      0:00 [kworker/3:2]\n  515 root      0:00 [kworker/0:1H]\n  524 root      0:01 [kworker/u16:0]\n  542 root      0:01 [kworker/0:1]\n  554 root      0:00 [kworker/0:2]\n  558 root      0:00 [kworker/u16:2]\n  571 root      0:00 [kworker/0:0]\n  636 root      0:00 ps -A\n"
  },
  {
    "path": "results/sdm712/RMX1971/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\n1,300000,1093.665127,3.6455504233333333,305.22895220588236,83.73328905657124,3.5828044422967347,274.329445\n1,576000,2116.83519,3.6750610937499997,318.7886028368794,45.182665652853224,6.639714493716583,141.732374529\n1,748800,2757.023517,3.681922431891026,331.29062037037033,36.05166175441265,8.321391730667743,108.82186074\n1,998400,3682.156271,3.688057162459936,347.5231111111112,28.317011852895316,10.59433818647521,81.482384761\n1,1209600,4465.415358,3.6916462946428577,358.7439545454546,24.10421235049939,12.445957396893933,67.19057435\n1,1324800,4892.288123,3.692850334390097,366.6953606557377,22.488852162110092,13.339942734180502,61.328433831\n1,1516800,5603.705918,3.6944263699894515,378.13449056603775,20.24628940962997,14.817529964641698,53.542562011\n1,1612800,5959.593953,3.695184742683532,385.71966,19.418822050964987,15.44892883886806,50.344392741\n1,1708800,6315.390607,3.6958044282537457,399.4990212765957,18.979927499890984,15.806172073192753,47.509321648\n6,300000,1846.631129,6.155437096666667,337.3497391304348,54.812461775185255,5.473207921776217,162.479632907\n6,652800,4041.492658,6.191012037377452,382.2004109589041,28.37903372745239,10.571184448390705,74.251709087\n6,825600,5113.17153,6.193279469476743,403.9928965517242,23.711789762843846,12.651934037897771,58.693580915\n6,979200,6070.908208,6.1998654084967315,437.1182040816327,21.609535987773175,13.882759915332846,49.436367065\n6,1132800,7026.254772,6.2025554131355936,472.6934047619048,20.19283555545793,14.856754474926277,42.718674202\n6,1363200,8464.772439,6.209486824383803,522.1210571428571,18.515848321831093,16.202336224923883,35.462749622\n6,1536000,9525.623928,6.201578078125,571.1815806451613,18.000103129974143,16.666571176496973,31.51380181\n6,1747200,10857.370345,6.214154272550366,643.1445185185186,17.78411303660247,16.86898859575135,27.651814677\n6,1843200,11436.413541,6.204651443684895,665.6908461538462,17.477449621426004,17.164975811586558,26.254604104\n6,1996800,12402.331638,6.211103584735577,782.7914583333334,18.95176293215628,15.829661919787785,24.210487647\n6,2054400,12701.638511,6.182651144373052,792.13,18.727093323798822,16.019570939968194,23.641439314\n6,2169600,13462.574044,6.205094968657818,875.545909090909,19.52849205732983,15.362169240681226,22.304361033\n6,2208000,13711.778418,6.210044573369565,879.8105238095238,19.267796483615403,15.57002121415952,21.899938637\n6,2304000,14306.151645,6.20926720703125,924.8248,19.41198998456668,15.454366102522831,20.989910721\n"
  },
  {
    "path": "results/sdm712/RMX1971/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1791.9054418690503, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1053.36, 1034.55, 1034.55, 1011.978, 996.93, 985.906, 985.906, 993.432, 989.669, 993.432, 985.906, 1012.516, 989.932, 982.404, 1023.536, 985.906, 985.906, 989.669, 985.906, 997.195, 985.906, 989.669, 993.432, 989.669, 997.195, 1031.062, 993.432, 993.432, 1012.247], \"power_mean\": 1000.1597586206897, \"energy_millijoules\": 5000.798793103449, \"energy_joules\": 5.000798793103448}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 274.329445, \"elapsed_ns\": 274329445000, \"power_samples\": [33.33600000000001, 307.962, 307.962, 305.5609999999999, 305.5609999999999, 305.5609999999999, 305.5609999999999, 305.5609999999999, 305.5609999999999, 309.31600000000003, 305.5609999999999, 305.5609999999999, 305.5609999999999, 305.2180000000001, 305.2180000000001, 305.2180000000001, 305.2180000000001, 305.2180000000001, 305.2180000000001, 308.972, 305.2180000000001, 308.972, 305.2180000000001, 308.972, 305.2180000000001, 308.972, 305.2180000000001, 308.972, 305.2180000000001, 308.972, 305.2180000000001, 308.972, 305.2180000000001, 308.62799999999993, 304.875, 304.875, 304.875, 304.875, 304.875, 308.62799999999993, 304.875, 304.875, 304.875, 308.62799999999993, 304.5319999999999, 308.2840000000001, 304.5319999999999, 304.5319999999999, 304.5319999999999, 304.5319999999999, 304.5319999999999, 304.5319999999999, 304.5319999999999, 308.2840000000001, 304.5319999999999, 308.2840000000001, 398.3320000000001, 308.2840000000001, 304.5319999999999, 308.2840000000001, 304.5319999999999, 308.2840000000001, 304.5319999999999, 308.2840000000001, 304.5319999999999, 304.5319999999999, 304.5319999999999, 308.2840000000001, 304.5319999999999, 308.2840000000001, 304.5319999999999, 308.2840000000001, 304.5319999999999, 304.5319999999999, 304.5319999999999, 308.2840000000001, 304.1890000000001, 307.94000000000005, 304.1890000000001, 307.94000000000005, 304.1890000000001, 307.94000000000005, 304.1890000000001, 307.94000000000005, 304.1890000000001, 307.94000000000005, 304.1890000000001, 307.94000000000005, 304.1890000000001, 307.94000000000005, 304.1890000000001, 307.94000000000005, 304.1890000000001, 307.94000000000005, 304.1890000000001, 307.94000000000005, 304.1890000000001, 307.94000000000005, 304.1890000000001, 307.94000000000005, 304.1890000000001, 307.94000000000005, 304.1890000000001, 307.94000000000005, 304.1890000000001, 307.94000000000005, 304.1890000000001, 304.1890000000001, 303.846, 307.596, 303.846, 307.596, 303.846, 307.596, 303.846, 307.596, 303.846, 307.596, 303.846, 307.596, 303.846, 307.596, 303.846, 307.596, 307.596, 307.596, 303.846, 307.596, 303.846, 307.25199999999995, 303.50299999999993, 307.25199999999995, 303.50299999999993, 303.50299999999993, 307.25199999999995, 307.25199999999995, 303.50299999999993, 303.50299999999993, 303.50299999999993, 307.25199999999995, 303.50299999999993, 307.25199999999995, 303.50299999999993, 307.25199999999995, 303.50299999999993, 307.25199999999995, 303.50299999999993, 307.25199999999995, 303.50299999999993, 307.25199999999995, 303.50299999999993, 307.25199999999995, 303.50299999999993, 307.25199999999995, 303.50299999999993, 307.25199999999995, 307.25199999999995, 307.25199999999995, 303.50299999999993, 307.25199999999995, 303.50299999999993, 306.9079999999999, 303.1600000000001, 306.9079999999999, 303.1600000000001, 306.9079999999999, 303.1600000000001, 306.9079999999999, 303.1600000000001, 306.9079999999999, 303.1600000000001, 306.9079999999999, 303.1600000000001, 306.9079999999999, 303.1600000000001, 306.9079999999999, 303.1600000000001, 306.9079999999999, 306.9079999999999, 306.9079999999999, 303.1600000000001, 306.9079999999999, 303.1600000000001, 306.9079999999999, 303.1600000000001, 306.9079999999999, 303.1600000000001, 306.9079999999999, 303.1600000000001, 306.9079999999999, 303.1600000000001, 306.9079999999999, 303.1600000000001, 306.9079999999999, 303.1600000000001, 306.9079999999999, 303.1600000000001, 306.9079999999999, 302.817, 310.3109999999999, 302.817, 400.23900000000003, 302.817, 306.5640000000001, 302.817, 306.5640000000001, 302.817, 306.5640000000001, 302.817, 306.5640000000001, 302.817, 306.5640000000001, 302.817, 306.5640000000001, 302.817, 306.5640000000001, 302.817, 306.5640000000001, 302.817, 306.5640000000001, 302.817, 306.5640000000001, 302.817, 306.5640000000001, 302.817, 306.5640000000001, 302.817, 306.5640000000001, 302.817, 306.5640000000001, 306.5640000000001, 306.5640000000001, 302.817, 306.5640000000001, 302.817, 306.22, 306.22, 306.22, 302.47399999999993, 306.22, 302.47399999999993, 306.22, 306.22, 306.22, 302.47399999999993, 306.22, 306.22, 306.22, 302.47399999999993, 306.22, 302.47399999999993, 309.9659999999999, 302.47399999999993, 306.22, 302.47399999999993, 306.22, 306.22, 306.22, 306.22, 306.22, 302.47399999999993, 305.876, 305.876, 305.876, 302.1310000000001, 305.876, 305.876, 305.876, 302.1310000000001, 305.876, 302.1310000000001, 305.876], \"power_mean\": 305.22895220588236, \"energy_millijoules\": 83733.28905657124, \"energy_joules\": 83.73328905657124, \"coremark_score\": 1093.665127, \"coremarks_per_mhz\": 3.6455504233333333, \"ulpmark_cm_score\": 3.5828044422967347}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [997.195, 997.195, 996.93, 1004.454], \"power_mean\": 998.9435, \"energy_millijoules\": 4994.7175, \"energy_joules\": 4.9947175}}, \"576000\": {\"active\": {\"elapsed_sec\": 141.732374529, \"elapsed_ns\": 141732374529, \"power_samples\": [274.8510000000001, 317.80500000000006, 317.80500000000006, 321.5519999999999, 317.80500000000006, 321.5519999999999, 317.80500000000006, 320.50800000000004, 316.7639999999999, 320.50800000000004, 316.7639999999999, 316.7639999999999, 316.7639999999999, 320.50800000000004, 316.7639999999999, 320.50800000000004, 316.7639999999999, 316.7639999999999, 320.50800000000004, 320.50800000000004, 316.7639999999999, 320.50800000000004, 316.7639999999999, 320.50800000000004, 316.7639999999999, 320.50800000000004, 316.7639999999999, 320.50800000000004, 320.50800000000004, 320.50800000000004, 316.7639999999999, 320.50800000000004, 316.7639999999999, 320.1600000000001, 316.4169999999999, 320.1600000000001, 316.4169999999999, 320.1600000000001, 316.4169999999999, 320.1600000000001, 316.4169999999999, 320.1600000000001, 316.4169999999999, 320.1600000000001, 320.1600000000001, 320.1600000000001, 316.4169999999999, 320.1600000000001, 316.4169999999999, 320.1600000000001, 316.4169999999999, 320.1600000000001, 316.4169999999999, 320.1600000000001, 316.4169999999999, 320.1600000000001, 316.4169999999999, 320.1600000000001, 316.4169999999999, 320.1600000000001, 319.8119999999999, 319.8119999999999, 316.06999999999994, 319.8119999999999, 409.6199999999999, 319.8119999999999, 316.06999999999994, 319.8119999999999, 316.06999999999994, 319.8119999999999, 316.06999999999994, 319.8119999999999, 316.06999999999994, 319.8119999999999, 316.06999999999994, 319.8119999999999, 316.06999999999994, 319.8119999999999, 316.06999999999994, 319.8119999999999, 319.8119999999999, 319.8119999999999, 319.8119999999999, 319.8119999999999, 316.06999999999994, 319.8119999999999, 316.06999999999994, 319.8119999999999, 316.06999999999994, 319.8119999999999, 316.06999999999994, 319.8119999999999, 319.46399999999994, 319.46399999999994, 315.72299999999996, 319.46399999999994, 315.72299999999996, 319.8119999999999, 316.06999999999994, 319.8119999999999, 316.06999999999994, 319.8119999999999, 319.8119999999999, 319.46399999999994, 315.72299999999996, 319.46399999999994, 319.46399999999994, 319.46399999999994, 319.46399999999994, 319.46399999999994, 315.72299999999996, 323.2049999999999, 315.72299999999996, 319.46399999999994, 315.72299999999996, 319.46399999999994, 319.46399999999994, 319.46399999999994, 319.46399999999994, 319.46399999999994, 315.72299999999996, 319.46399999999994, 319.46399999999994, 319.116, 319.116, 319.116, 315.376, 319.116, 315.376, 322.856, 315.376, 319.116, 315.376, 319.116, 315.376, 319.116, 315.376, 319.116, 315.376, 319.116, 319.116], \"power_mean\": 318.7886028368794, \"energy_millijoules\": 45182.665652853226, \"energy_joules\": 45.182665652853224, \"coremark_score\": 2116.83519, \"coremarks_per_mhz\": 3.6750610937499997, \"ulpmark_cm_score\": 6.639714493716583}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [992.425, 1028.322, 998.298, 990.792], \"power_mean\": 1002.45925, \"energy_millijoules\": 5012.29625, \"energy_joules\": 5.01229625}}, \"748800\": {\"active\": {\"elapsed_sec\": 108.82186074, \"elapsed_ns\": 108821860740, \"power_samples\": [276.924, 335.13200000000006, 331.3889999999999, 331.3889999999999, 331.3889999999999, 331.3889999999999, 330.336, 334.076, 330.336, 334.076, 330.336, 333.72399999999993, 329.9849999999999, 333.72399999999993, 329.9849999999999, 333.72399999999993, 329.9849999999999, 329.9849999999999, 329.9849999999999, 333.72399999999993, 329.9849999999999, 333.72399999999993, 329.9849999999999, 333.72399999999993, 329.9849999999999, 333.72399999999993, 329.9849999999999, 333.72399999999993, 329.9849999999999, 333.72399999999993, 329.9849999999999, 333.72399999999993, 329.634, 333.37200000000007, 329.634, 329.634, 329.634, 333.37200000000007, 329.634, 329.634, 329.634, 329.634, 329.634, 333.37200000000007, 329.634, 333.37200000000007, 329.634, 329.634, 329.634, 329.634, 329.634, 333.37200000000007, 329.634, 333.37200000000007, 329.634, 329.634, 329.634, 329.634, 329.634, 426.8220000000001, 329.634, 329.634, 329.634, 329.634, 329.2829999999999, 333.02, 329.2829999999999, 333.02, 329.2829999999999, 333.02, 329.2829999999999, 333.02, 329.2829999999999, 329.2829999999999, 329.2829999999999, 333.02, 329.2829999999999, 333.02, 329.2829999999999, 333.02, 329.2829999999999, 333.02, 329.2829999999999, 333.02, 329.2829999999999, 332.6679999999999, 328.932, 332.6679999999999, 328.932, 332.6679999999999, 328.932, 332.6679999999999, 328.932, 328.932, 328.932, 332.6679999999999, 328.932, 328.932, 328.932, 332.6679999999999, 328.932, 332.6679999999999, 328.932, 332.6679999999999, 328.932, 328.932, 328.932, 332.6679999999999], \"power_mean\": 331.29062037037033, \"energy_millijoules\": 36051.66175441265, \"energy_joules\": 36.05166175441265, \"coremark_score\": 2757.023517, \"coremarks_per_mhz\": 3.681922431891026, \"ulpmark_cm_score\": 8.321391730667743}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1011.96, 1000.716, 996.968, 989.472], \"power_mean\": 999.779, \"energy_millijoules\": 4998.895, \"energy_joules\": 4.998895}}, \"998400\": {\"active\": {\"elapsed_sec\": 81.482384761, \"elapsed_ns\": 81482384761, \"power_samples\": [271.836, 346.7159999999999, 350.46000000000004, 346.7159999999999, 350.46000000000004, 350.46000000000004, 351.34799999999996, 347.6120000000001, 347.6120000000001, 347.6120000000001, 351.34799999999996, 347.2560000000001, 347.2560000000001, 347.2560000000001, 347.2560000000001, 347.2560000000001, 350.991, 347.2560000000001, 350.991, 347.2560000000001, 350.991, 347.2560000000001, 350.991, 347.2560000000001, 350.991, 347.2560000000001, 347.2560000000001, 346.9000000000001, 350.634, 346.9000000000001, 346.9000000000001, 346.9000000000001, 350.634, 346.9000000000001, 346.9000000000001, 346.9000000000001, 350.634, 346.9000000000001, 350.634, 346.9000000000001, 350.634, 346.9000000000001, 346.9000000000001, 346.9000000000001, 350.634, 346.9000000000001, 350.634, 346.9000000000001, 350.634, 346.9000000000001, 350.634, 346.9000000000001, 350.634, 346.9000000000001, 346.9000000000001, 346.9000000000001, 350.634, 346.9000000000001, 350.634, 346.9000000000001, 350.634, 346.9000000000001, 350.634, 346.9000000000001, 350.27700000000004, 346.5440000000001, 350.27700000000004, 346.5440000000001, 350.27700000000004, 346.5440000000001, 350.27700000000004, 346.5440000000001, 350.27700000000004, 346.5440000000001, 350.27700000000004, 346.5440000000001, 350.27700000000004, 346.5440000000001, 350.27700000000004, 346.5440000000001, 350.27700000000004], \"power_mean\": 347.5231111111112, \"energy_millijoules\": 28317.011852895317, \"energy_joules\": 28.317011852895316, \"coremark_score\": 3682.156271, \"coremarks_per_mhz\": 3.688057162459936, \"ulpmark_cm_score\": 10.59433818647521}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1026.13, 992.425, 992.425, 996.17], \"power_mean\": 1001.7875, \"energy_millijoules\": 5008.9375, \"energy_joules\": 5.0089375}}, \"1209600\": {\"active\": {\"elapsed_sec\": 67.19057435, \"elapsed_ns\": 67190574350, \"power_samples\": [278.6500000000001, 360.97399999999993, 360.97399999999993, 360.97399999999993, 360.97399999999993, 357.74299999999994, 361.4760000000001, 357.74299999999994, 361.4760000000001, 357.74299999999994, 361.4760000000001, 357.384, 361.116, 357.384, 361.116, 357.384, 361.116, 357.384, 357.384, 361.116, 361.116, 357.384, 361.116, 357.384, 361.116, 361.116, 361.116, 361.116, 361.116, 357.384, 361.116, 361.116, 360.7560000000001, 360.7560000000001, 360.7560000000001, 360.7560000000001, 360.7560000000001, 360.7560000000001, 360.7560000000001, 357.0250000000001, 360.7560000000001, 357.0250000000001, 360.7560000000001, 360.7560000000001, 360.7560000000001, 360.7560000000001, 360.7560000000001, 357.0250000000001, 364.4870000000001, 357.0250000000001, 360.7560000000001, 360.7560000000001, 360.7560000000001, 360.7560000000001, 360.7560000000001, 360.7560000000001, 360.7560000000001, 360.7560000000001, 360.7560000000001, 357.0250000000001, 360.7560000000001, 357.0250000000001, 360.7560000000001, 357.0250000000001, 360.7560000000001, 360.7560000000001], \"power_mean\": 358.7439545454546, \"energy_millijoules\": 24104.21235049939, \"energy_joules\": 24.10421235049939, \"coremark_score\": 4465.415358, \"coremarks_per_mhz\": 3.6916462946428577, \"ulpmark_cm_score\": 12.445957396893933}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1029.05, 995.372, 1085.18, 991.63], \"power_mean\": 1025.308, \"energy_millijoules\": 5126.54, \"energy_joules\": 5.12654}}, \"1324800\": {\"active\": {\"elapsed_sec\": 61.328433831, \"elapsed_ns\": 61328433831, \"power_samples\": [274.2360000000001, 371.4760000000001, 367.7360000000001, 371.4760000000001, 367.7360000000001, 371.586, 367.856, 367.856, 367.856, 367.856, 367.856, 367.856, 367.856, 367.856, 367.856, 367.856, 367.856, 367.856, 367.856, 367.856, 367.856, 371.586, 367.856, 367.856, 367.856, 367.856, 367.4939999999999, 367.4939999999999, 367.4939999999999, 367.4939999999999, 367.4939999999999, 367.4939999999999, 367.4939999999999, 367.4939999999999, 367.4939999999999, 371.22299999999996, 367.4939999999999, 367.4939999999999, 367.4939999999999, 371.22299999999996, 367.4939999999999, 367.4939999999999, 367.4939999999999, 371.22299999999996, 367.4939999999999, 367.4939999999999, 367.4939999999999, 367.13200000000006, 367.13200000000006, 370.8599999999999, 367.13200000000006, 370.8599999999999, 367.13200000000006, 370.8599999999999, 367.13200000000006, 367.13200000000006, 367.13200000000006, 370.8599999999999, 367.13200000000006, 367.13200000000006, 367.13200000000006], \"power_mean\": 366.6953606557377, \"energy_millijoules\": 22488.85216211009, \"energy_joules\": 22.488852162110092, \"coremark_score\": 4892.288123, \"coremarks_per_mhz\": 3.692850334390097, \"ulpmark_cm_score\": 13.339942734180502}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [991.1, 1006.06, 994.84, 994.84], \"power_mean\": 996.71, \"energy_millijoules\": 4983.55, \"energy_joules\": 4.98355}}, \"1516800\": {\"active\": {\"elapsed_sec\": 53.542562011, \"elapsed_ns\": 53542562011, \"power_samples\": [284.778, 385.70399999999995, 381.9659999999999, 385.70399999999995, 381.9659999999999, 382.0440000000001, 378.31600000000003, 382.0440000000001, 378.31600000000003, 382.0440000000001, 378.31600000000003, 382.0440000000001, 378.31600000000003, 378.31600000000003, 378.31600000000003, 382.0440000000001, 378.31600000000003, 378.31600000000003, 378.31600000000003, 378.31600000000003, 381.6780000000001, 381.6780000000001, 377.951, 381.6780000000001, 377.951, 381.6780000000001, 377.951, 381.6780000000001, 377.951, 381.6780000000001, 377.951, 381.6780000000001, 377.951, 381.6780000000001, 377.951, 381.6780000000001, 377.951, 381.6780000000001, 377.951, 381.6780000000001, 377.951, 381.3119999999999, 377.586, 381.3119999999999, 377.586, 377.586, 377.586, 381.3119999999999, 377.586, 381.3119999999999, 377.586, 381.3119999999999, 377.586], \"power_mean\": 378.13449056603775, \"energy_millijoules\": 20246.28940962997, \"energy_joules\": 20.24628940962997, \"coremark_score\": 5603.705918, \"coremarks_per_mhz\": 3.6944263699894515, \"ulpmark_cm_score\": 14.817529964641698}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [983.094, 994.308, 1091.496, 994.308], \"power_mean\": 1015.8015, \"energy_millijoules\": 5079.0075, \"energy_joules\": 5.0790074999999995}}, \"1612800\": {\"active\": {\"elapsed_sec\": 50.344392741, \"elapsed_ns\": 50344392741, \"power_samples\": [273.22800000000007, 392.8119999999999, 389.07500000000005, 392.8119999999999, 389.07500000000005, 392.8119999999999, 385.038, 388.7639999999999, 385.038, 388.7639999999999, 385.038, 388.7639999999999, 385.038, 388.7639999999999, 388.7639999999999, 388.7639999999999, 388.7639999999999, 388.7639999999999, 385.038, 388.7639999999999, 385.038, 388.7639999999999, 388.7639999999999, 388.7639999999999, 385.038, 388.7639999999999, 385.038, 388.39599999999996, 384.67100000000005, 388.39599999999996, 388.39599999999996, 388.39599999999996, 388.39599999999996, 388.39599999999996, 384.67100000000005, 388.39599999999996, 388.39599999999996, 388.39599999999996, 388.39599999999996, 388.39599999999996, 388.39599999999996, 388.39599999999996, 388.39599999999996, 388.39599999999996, 388.39599999999996, 388.39599999999996, 384.67100000000005, 388.39599999999996, 388.39599999999996, 388.39599999999996], \"power_mean\": 385.71966, \"energy_millijoules\": 19418.822050964987, \"energy_joules\": 19.418822050964987, \"coremark_score\": 5959.593953, \"coremarks_per_mhz\": 3.695184742683532, \"ulpmark_cm_score\": 15.44892883886806}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [986.568, 1031.412, 994.042, 990.305], \"power_mean\": 1000.58175, \"energy_millijoules\": 5002.9087500000005, \"energy_joules\": 5.0029087500000005}}, \"1708800\": {\"active\": {\"elapsed_sec\": 47.509321648, \"elapsed_ns\": 47509321648, \"power_samples\": [268.8209999999999, 399.54600000000005, 403.28099999999995, 403.28099999999995, 403.28099999999995, 399.5709999999999, 399.5709999999999, 399.5709999999999, 399.5709999999999, 399.5709999999999, 402.924, 399.20000000000005, 402.924, 395.4760000000001, 402.924, 399.20000000000005, 402.924, 399.20000000000005, 399.20000000000005, 399.20000000000005, 402.924, 492.29999999999995, 399.20000000000005, 399.20000000000005, 399.20000000000005, 399.20000000000005, 402.5519999999999, 398.82899999999995, 402.5519999999999, 398.82899999999995, 398.82899999999995, 398.82899999999995, 402.5519999999999, 398.82899999999995, 402.5519999999999, 398.82899999999995, 402.5519999999999, 398.82899999999995, 398.82899999999995, 402.5519999999999, 398.82899999999995, 398.82899999999995, 402.5519999999999, 398.82899999999995, 402.5519999999999, 398.82899999999995, 398.82899999999995], \"power_mean\": 399.4990212765957, \"energy_millijoules\": 18979.927499890982, \"energy_joules\": 18.979927499890984, \"coremark_score\": 6315.390607, \"coremarks_per_mhz\": 3.6958044282537457, \"ulpmark_cm_score\": 15.806172073192753}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [989.775, 1004.715, 993.51, 997.245], \"power_mean\": 996.31125, \"energy_millijoules\": 4981.55625, \"energy_joules\": 4.98155625}}}}, \"6\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 162.479632907, \"elapsed_ns\": 162479632907, \"power_samples\": [201.27400000000011, 339.432, 339.432, 339.432, 339.432, 343.16599999999994, 336.2460000000001, 339.971, 336.2460000000001, 336.2460000000001, 336.2460000000001, 339.971, 336.2460000000001, 336.2460000000001, 336.2460000000001, 339.971, 335.89200000000005, 339.616, 335.89200000000005, 339.616, 335.89200000000005, 339.616, 335.89200000000005, 339.616, 335.89200000000005, 339.616, 339.616, 339.616, 335.89200000000005, 339.616, 335.89200000000005, 339.616, 335.89200000000005, 339.616, 335.89200000000005, 339.616, 335.89200000000005, 339.616, 335.89200000000005, 339.616, 335.89200000000005, 339.616, 335.89200000000005, 339.616, 335.89200000000005, 339.616, 335.89200000000005, 339.616, 335.538, 339.26099999999997, 335.538, 339.26099999999997, 335.538, 339.26099999999997, 335.538, 339.26099999999997, 335.538, 339.26099999999997, 339.26099999999997, 339.26099999999997, 339.26099999999997, 335.538, 335.538, 339.26099999999997, 335.538, 339.26099999999997, 335.538, 339.26099999999997, 335.538, 339.26099999999997, 335.538, 339.26099999999997, 335.538, 339.26099999999997, 335.538, 339.26099999999997, 339.26099999999997, 339.26099999999997, 335.538, 339.26099999999997, 335.538, 339.26099999999997, 335.538, 335.538, 335.538, 339.26099999999997, 335.538, 339.26099999999997, 335.538, 339.26099999999997, 335.538, 338.90599999999995, 335.18399999999997, 338.90599999999995, 335.18399999999997, 338.90599999999995, 335.18399999999997, 338.90599999999995, 335.18399999999997, 338.90599999999995, 335.18399999999997, 338.90599999999995, 335.18399999999997, 338.90599999999995, 335.18399999999997, 338.90599999999995, 335.18399999999997, 338.90599999999995, 335.18399999999997, 431.9559999999999, 335.18399999999997, 338.90599999999995, 335.18399999999997, 338.90599999999995, 335.18399999999997, 338.90599999999995, 335.18399999999997, 338.90599999999995, 335.18399999999997, 338.90599999999995, 335.18399999999997, 338.90599999999995, 335.18399999999997, 338.90599999999995, 335.18399999999997, 338.90599999999995, 335.18399999999997, 338.90599999999995, 335.18399999999997, 338.90599999999995, 338.90599999999995, 338.90599999999995, 335.18399999999997, 338.90599999999995, 338.55099999999993, 338.55099999999993, 338.55099999999993, 338.55099999999993, 334.8299999999999, 342.27199999999993, 334.8299999999999, 338.55099999999993, 338.55099999999993, 338.55099999999993, 335.18399999999997, 342.62799999999993, 335.18399999999997, 338.90599999999995, 335.18399999999997, 338.55099999999993, 338.55099999999993, 338.55099999999993, 338.55099999999993, 338.55099999999993, 334.8299999999999, 338.55099999999993, 338.55099999999993, 338.55099999999993, 334.8299999999999, 338.55099999999993, 338.55099999999993], \"power_mean\": 337.3497391304348, \"energy_millijoules\": 54812.46177518526, \"energy_joules\": 54.812461775185255, \"coremark_score\": 1846.631129, \"coremarks_per_mhz\": 6.155437096666667, \"ulpmark_cm_score\": 5.473207921776217}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [997.764, 1030.584, 993.244, 993.244], \"power_mean\": 1003.7090000000001, \"energy_millijoules\": 5018.545, \"energy_joules\": 5.0185450000000005}}, \"652800\": {\"active\": {\"elapsed_sec\": 74.251709087, \"elapsed_ns\": 74251709087, \"power_samples\": [136.29600000000005, 386.55600000000004, 386.55600000000004, 386.55600000000004, 382.836, 386.55600000000004, 382.836, 386.55600000000004, 382.836, 386.55600000000004, 382.836, 386.1880000000001, 386.1880000000001, 386.1880000000001, 382.46900000000005, 386.1880000000001, 386.1880000000001, 386.1880000000001, 382.46900000000005, 386.1880000000001, 382.46900000000005, 386.1880000000001, 386.1880000000001, 386.1880000000001, 386.1880000000001, 386.1880000000001, 386.1880000000001, 386.1880000000001, 386.1880000000001, 386.1880000000001, 382.46900000000005, 386.1880000000001, 386.1880000000001, 389.9069999999999, 382.46900000000005, 386.1880000000001, 386.1880000000001, 386.1880000000001, 386.1880000000001, 386.1880000000001, 386.1880000000001, 386.1880000000001, 385.81999999999994, 385.81999999999994, 382.1020000000001, 385.81999999999994, 385.81999999999994, 385.81999999999994, 382.1020000000001, 389.538, 382.1020000000001, 385.81999999999994, 385.81999999999994, 385.81999999999994, 385.81999999999994, 385.81999999999994, 382.1020000000001, 385.81999999999994, 385.81999999999994, 385.81999999999994, 385.81999999999994, 389.538, 385.81999999999994, 385.81999999999994, 385.81999999999994, 389.538, 385.81999999999994, 385.81999999999994, 385.81999999999994, 385.81999999999994, 385.81999999999994, 385.81999999999994, 385.81999999999994], \"power_mean\": 382.2004109589041, \"energy_millijoules\": 28379.03372745239, \"energy_joules\": 28.37903372745239, \"coremark_score\": 4041.492658, \"coremarks_per_mhz\": 6.191012037377452, \"ulpmark_cm_score\": 10.571184448390705}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [989.786, 1032.933, 1003.101, 991.914], \"power_mean\": 1004.4335, \"energy_millijoules\": 5022.1675, \"energy_joules\": 5.022167499999999}}, \"825600\": {\"active\": {\"elapsed_sec\": 58.693580915, \"elapsed_ns\": 58693580915, \"power_samples\": [76.34799999999996, 411.86799999999994, 501.3399999999999, 411.86799999999994, 408.12799999999993, 411.846, 404.4100000000001, 408.12799999999993, 404.4100000000001, 407.7539999999999, 407.7539999999999, 407.7539999999999, 404.03700000000003, 407.7539999999999, 407.7539999999999, 407.7539999999999, 407.7539999999999, 407.7539999999999, 407.7539999999999, 411.471, 407.7539999999999, 407.7539999999999, 407.7539999999999, 407.7539999999999, 407.3800000000001, 411.096, 407.3800000000001, 407.3800000000001, 403.664, 411.096, 407.3800000000001, 411.096, 407.3800000000001, 411.096, 407.3800000000001, 411.096, 407.3800000000001, 407.3800000000001, 407.3800000000001, 407.3800000000001, 407.3800000000001, 407.3800000000001, 407.3800000000001, 407.3800000000001, 407.3800000000001, 411.096, 407.3800000000001, 411.096, 407.3800000000001, 407.3800000000001, 407.3800000000001, 407.3800000000001, 407.3800000000001, 407.3800000000001, 407.3800000000001, 407.3800000000001, 407.3800000000001, 411.096], \"power_mean\": 403.9928965517242, \"energy_millijoules\": 23711.789762843848, \"energy_joules\": 23.711789762843846, \"coremark_score\": 5113.17153, \"coremarks_per_mhz\": 6.193279469476743, \"ulpmark_cm_score\": 12.651934037897771}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [988.988, 988.988, 992.706, 995.376], \"power_mean\": 991.5145, \"energy_millijoules\": 4957.5725, \"energy_joules\": 4.9575725}}, \"979200\": {\"active\": {\"elapsed_sec\": 49.436367065, \"elapsed_ns\": 49436367065, \"power_samples\": [437.5830000000001, 437.5830000000001, 437.5830000000001, 441.30999999999995, 437.5830000000001, 436.7260000000001, 436.7260000000001, 436.7260000000001, 433.01099999999997, 436.7260000000001, 436.7260000000001, 436.7260000000001, 436.7260000000001, 436.7260000000001, 436.7260000000001, 440.44100000000003, 436.7260000000001, 436.7260000000001, 436.7260000000001, 436.7260000000001, 436.34400000000005, 436.34400000000005, 436.34400000000005, 436.34400000000005, 432.6300000000001, 436.34400000000005, 436.34400000000005, 436.34400000000005, 436.34400000000005, 436.34400000000005, 436.34400000000005, 440.058, 436.34400000000005, 436.34400000000005, 436.34400000000005, 440.058, 436.34400000000005, 440.058, 436.34400000000005, 440.058, 436.34400000000005, 436.34400000000005, 440.058, 436.34400000000005, 436.34400000000005, 440.058, 436.34400000000005, 440.058, 436.34400000000005], \"power_mean\": 437.1182040816327, \"energy_millijoules\": 21609.535987773175, \"energy_joules\": 21.609535987773175, \"coremark_score\": 6070.908208, \"coremarks_per_mhz\": 6.1998654084967315, \"ulpmark_cm_score\": 13.882759915332846}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1013.472, 991.116, 1002.294, 998.568], \"power_mean\": 1001.3625, \"energy_millijoules\": 5006.8125, \"energy_joules\": 5.0068125}}, \"1132800\": {\"active\": {\"elapsed_sec\": 42.718674202, \"elapsed_ns\": 42718674202, \"power_samples\": [373.4960000000001, 477.79600000000005, 474.0709999999999, 477.79600000000005, 477.79600000000005, 476.80500000000006, 473.0920000000001, 473.0920000000001, 473.0920000000001, 473.0920000000001, 473.0920000000001, 476.80500000000006, 473.0920000000001, 476.80500000000006, 473.0920000000001, 476.80500000000006, 476.41200000000003, 476.41200000000003, 472.70000000000005, 476.41200000000003, 472.70000000000005, 476.41200000000003, 472.70000000000005, 472.70000000000005, 476.41200000000003, 476.41200000000003, 476.41200000000003, 476.41200000000003, 472.70000000000005, 476.41200000000003, 472.70000000000005, 476.41200000000003, 476.41200000000003, 476.41200000000003, 476.41200000000003, 476.41200000000003, 472.70000000000005, 476.41200000000003, 472.70000000000005, 476.41200000000003, 472.70000000000005, 476.41200000000003], \"power_mean\": 472.6934047619048, \"energy_millijoules\": 20192.83555545793, \"energy_joules\": 20.19283555545793, \"coremark_score\": 7026.254772, \"coremarks_per_mhz\": 6.2025554131355936, \"ulpmark_cm_score\": 14.856754474926277}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [994.575, 994.575, 994.575, 994.575], \"power_mean\": 994.575, \"energy_millijoules\": 4972.875, \"energy_joules\": 4.972875}}, \"1363200\": {\"active\": {\"elapsed_sec\": 35.462749622, \"elapsed_ns\": 35462749622, \"power_samples\": [320.9960000000001, 529.54, 527.973, 524.262, 527.973, 527.973, 527.973, 523.856, 531.2760000000001, 527.566, 527.566, 527.566, 531.2760000000001, 527.566, 527.566, 527.566, 527.566, 527.566, 531.2760000000001, 527.566, 527.566, 527.566, 527.566, 527.566, 527.566, 527.566, 531.2760000000001, 527.566, 527.1590000000001, 527.1590000000001, 527.1590000000001, 527.1590000000001, 530.8679999999999, 527.1590000000001, 530.8679999999999], \"power_mean\": 522.1210571428571, \"energy_millijoules\": 18515.848321831094, \"energy_joules\": 18.515848321831093, \"coremark_score\": 8464.772439, \"coremarks_per_mhz\": 6.209486824383803, \"ulpmark_cm_score\": 16.202336224923883}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [983.415, 990.837, 1001.756, 1024.1], \"power_mean\": 1000.0269999999999, \"energy_millijoules\": 5000.134999999999, \"energy_joules\": 5.000134999999999}}, \"1536000\": {\"active\": {\"elapsed_sec\": 31.51380181, \"elapsed_ns\": 31513801810, \"power_samples\": [249.9090000000001, 584.979, 584.979, 584.979, 584.979, 578.664, 582.3720000000001, 578.664, 582.3720000000001, 582.3720000000001, 582.3720000000001, 578.664, 586.0799999999999, 578.664, 582.3720000000001, 582.3720000000001, 581.95, 578.2429999999999, 581.95, 581.95, 581.95, 578.2429999999999, 585.6569999999999, 578.2429999999999, 581.95, 581.95, 581.95, 581.95, 581.95, 581.95, 581.95], \"power_mean\": 571.1815806451613, \"energy_millijoules\": 18000.103129974144, \"energy_joules\": 18.000103129974143, \"coremark_score\": 9525.623928, \"coremarks_per_mhz\": 6.201578078125, \"ulpmark_cm_score\": 16.666571176496973}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1023.825, 997.764, 994.041, 994.041], \"power_mean\": 1002.4177500000001, \"energy_millijoules\": 5012.088750000001, \"energy_joules\": 5.012088750000001}}, \"1747200\": {\"active\": {\"elapsed_sec\": 27.651814677, \"elapsed_ns\": 27651814677, \"power_samples\": [152.50099999999998, 662.278, 665.999, 658.9110000000001, 662.616, 658.9110000000001, 662.616, 658.9110000000001, 666.3209999999999, 662.616, 662.616, 662.616, 666.3209999999999, 662.172, 662.172, 662.172, 665.876, 662.172, 662.172, 662.172, 662.172, 662.172, 658.4680000000001, 658.4680000000001, 661.7280000000001, 658.0250000000001, 661.7280000000001], \"power_mean\": 643.1445185185186, \"energy_millijoules\": 17784.11303660247, \"energy_joules\": 17.78411303660247, \"coremark_score\": 10857.370345, \"coremarks_per_mhz\": 6.214154272550366, \"ulpmark_cm_score\": 16.86898859575135}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [989.502, 993.208, 997.228, 1038.159], \"power_mean\": 1004.5242499999999, \"energy_millijoules\": 5022.62125, \"energy_joules\": 5.02262125}}, \"1843200\": {\"active\": {\"elapsed_sec\": 26.254604104, \"elapsed_ns\": 26254604104, \"power_samples\": [37.14999999999998, 692.046, 695.767, 692.046, 691.3520000000001, 687.6490000000001, 691.3520000000001, 691.3520000000001, 691.3520000000001, 690.9000000000001, 694.6020000000001, 690.9000000000001, 690.9000000000001, 687.1980000000001, 690.9000000000001, 687.1980000000001, 690.9000000000001, 690.9000000000001, 690.9000000000001, 690.9000000000001, 690.9000000000001, 687.1980000000001, 690.9000000000001, 687.1980000000001, 694.6020000000001, 690.9000000000001], \"power_mean\": 665.6908461538462, \"energy_millijoules\": 17477.449621426003, \"energy_joules\": 17.477449621426004, \"coremark_score\": 11436.413541, \"coremarks_per_mhz\": 6.204651443684895, \"ulpmark_cm_score\": 17.164975811586558}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [981.295, 984.998, 988.701, 993.507], \"power_mean\": 987.12525, \"energy_millijoules\": 4935.62625, \"energy_joules\": 4.93562625}}, \"1996800\": {\"active\": {\"elapsed_sec\": 24.210487647, \"elapsed_ns\": 24210487647, \"power_samples\": [676.7159999999999, 785.358, 785.358, 785.358, 789.0640000000001, 785.358, 789.4169999999999, 785.7180000000001, 789.4169999999999, 785.7180000000001, 789.4169999999999, 789.4169999999999, 789.4169999999999, 785.7180000000001, 785.7180000000001, 785.7180000000001, 788.9380000000001, 785.24, 788.9380000000001, 788.9380000000001, 788.9380000000001, 788.9380000000001, 788.9380000000001, 785.24], \"power_mean\": 782.7914583333334, \"energy_millijoules\": 18951.76293215628, \"energy_joules\": 18.95176293215628, \"coremark_score\": 12402.331638, \"coremarks_per_mhz\": 6.211103584735577, \"ulpmark_cm_score\": 15.829661919787785}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1026.72, 996.96, 989.52, 1008.12], \"power_mean\": 1005.33, \"energy_millijoules\": 5026.650000000001, \"energy_joules\": 5.026650000000001}}, \"2054400\": {\"active\": {\"elapsed_sec\": 23.641439314, \"elapsed_ns\": 23641439314, \"power_samples\": [542.796, 806.9159999999999, 806.9159999999999, 810.636, 810.636, 803.73, 800.0319999999999, 803.73, 800.0319999999999, 803.73, 803.73, 803.73, 800.0319999999999, 803.73, 800.0319999999999, 803.2470000000001, 803.2470000000001, 803.2470000000001, 799.55, 803.2470000000001, 803.2470000000001, 803.2470000000001, 799.55], \"power_mean\": 792.13, \"energy_millijoules\": 18727.09332379882, \"energy_joules\": 18.727093323798822, \"coremark_score\": 12701.638511, \"coremarks_per_mhz\": 6.182651144373052, \"ulpmark_cm_score\": 16.019570939968194}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [996.692, 1000.411, 1004.13, 992.973], \"power_mean\": 998.5515, \"energy_millijoules\": 4992.7575, \"energy_joules\": 4.9927575}}, \"2169600\": {\"active\": {\"elapsed_sec\": 22.304361033, \"elapsed_ns\": 22304361033, \"power_samples\": [482.88200000000006, 899.4100000000001, 899.4100000000001, 899.4100000000001, 887.2660000000001, 890.961, 890.961, 894.656, 890.961, 894.1479999999999, 894.1479999999999, 894.1479999999999, 894.1479999999999, 894.1479999999999, 894.1479999999999, 897.8420000000001, 894.1479999999999, 894.1479999999999, 890.454, 893.6400000000001, 893.6400000000001, 897.3330000000001], \"power_mean\": 875.545909090909, \"energy_millijoules\": 19528.492057329833, \"energy_joules\": 19.52849205732983, \"coremark_score\": 13462.574044, \"coremarks_per_mhz\": 6.205094968657818, \"ulpmark_cm_score\": 15.362169240681226}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [992.706, 992.706, 1000.142, 992.706], \"power_mean\": 994.565, \"energy_millijoules\": 4972.825000000001, \"energy_joules\": 4.972825000000001}}, \"2208000\": {\"active\": {\"elapsed_sec\": 21.899938637, \"elapsed_ns\": 21899938637, \"power_samples\": [299.961, 909.549, 913.2660000000001, 913.2660000000001, 916.983, 901.5360000000001, 908.924, 905.23, 908.924, 905.23, 908.412, 908.412, 908.412, 908.412, 908.412, 907.9000000000001, 911.5920000000001, 904.2080000000001, 911.5920000000001, 907.9000000000001, 907.9000000000001], \"power_mean\": 879.8105238095238, \"energy_millijoules\": 19267.796483615402, \"energy_joules\": 19.267796483615403, \"coremark_score\": 13711.778418, \"coremarks_per_mhz\": 6.210044573369565, \"ulpmark_cm_score\": 15.57002121415952}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1025.892, 999.873, 992.439, 1003.59], \"power_mean\": 1005.4485, \"energy_millijoules\": 5027.2425, \"energy_joules\": 5.027242500000001}}, \"2304000\": {\"active\": {\"elapsed_sec\": 20.989910721, \"elapsed_ns\": 20989910721, \"power_samples\": [147.26, 956.421, 963.807, 960.114, 963.807, 963.807, 967.5, 966.444, 966.444, 966.444, 966.444, 965.9159999999999, 969.606, 965.9159999999999, 969.606, 965.9159999999999, 965.9159999999999, 969.606, 969.606, 965.9159999999999], \"power_mean\": 924.8248, \"energy_millijoules\": 19411.98998456668, \"energy_joules\": 19.41198998456668, \"coremark_score\": 14306.151645, \"coremarks_per_mhz\": 6.20926720703125, \"ulpmark_cm_score\": 15.454366102522831}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [982.072, 1010.752, 1025.616, 1007.036], \"power_mean\": 1006.3689999999999, \"energy_millijoules\": 5031.844999999999, \"energy_joules\": 5.031845}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sdm712/RMX1971/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 982 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 748 998 1209 1324 1516 1612 1708\n\n 300:  1094     3.6 C/MHz    305 mW   83.7 J    3.6 I/mJ   274.3 s\n 576:  2117     3.7 C/MHz    319 mW   45.2 J    6.6 I/mJ   141.7 s\n 748:  2757     3.7 C/MHz    331 mW   36.1 J    8.3 I/mJ   108.8 s\n 998:  3682     3.7 C/MHz    348 mW   28.3 J   10.6 I/mJ    81.5 s\n1209:  4465     3.7 C/MHz    359 mW   24.1 J   12.4 I/mJ    67.2 s\n1324:  4892     3.7 C/MHz    367 mW   22.5 J   13.3 I/mJ    61.3 s\n1516:  5604     3.7 C/MHz    378 mW   20.2 J   14.8 I/mJ    53.5 s\n1612:  5960     3.7 C/MHz    386 mW   19.4 J   15.4 I/mJ    50.3 s\n1708:  6315     3.7 C/MHz    399 mW   19.0 J   15.8 I/mJ    47.5 s\n\n\n===== CPU 6 =====\nFrequencies: 300 652 825 979 1132 1363 1536 1747 1843 1996 2054 2169 2208 2304\n\n 300:  1847     6.2 C/MHz    337 mW   54.8 J    5.5 I/mJ   162.5 s\n 652:  4041     6.2 C/MHz    382 mW   28.4 J   10.6 I/mJ    74.3 s\n 825:  5113     6.2 C/MHz    404 mW   23.7 J   12.7 I/mJ    58.7 s\n 979:  6071     6.2 C/MHz    437 mW   21.6 J   13.9 I/mJ    49.4 s\n1132:  7026     6.2 C/MHz    473 mW   20.2 J   14.9 I/mJ    42.7 s\n1363:  8465     6.2 C/MHz    522 mW   18.5 J   16.2 I/mJ    35.5 s\n1536:  9526     6.2 C/MHz    571 mW   18.0 J   16.7 I/mJ    31.5 s\n1747: 10857     6.2 C/MHz    643 mW   17.8 J   16.9 I/mJ    27.7 s\n1843: 11436     6.2 C/MHz    666 mW   17.5 J   17.2 I/mJ    26.3 s\n1996: 12402     6.2 C/MHz    783 mW   19.0 J   15.8 I/mJ    24.2 s\n2054: 12702     6.2 C/MHz    792 mW   18.7 J   16.0 I/mJ    23.6 s\n2169: 13463     6.2 C/MHz    876 mW   19.5 J   15.4 I/mJ    22.3 s\n2208: 13712     6.2 C/MHz    880 mW   19.3 J   15.6 I/mJ    21.9 s\n2304: 14306     6.2 C/MHz    925 mW   19.4 J   15.5 I/mJ    21.0 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sdm712/RMX1971/uptime.txt",
    "content": " 05:26:02 up 29 min,  load average: 2.75, 2.83, 2.48\n"
  },
  {
    "path": "results/sdm712/RMX1971/versions.txt",
    "content": "Kernel: Linux version 4.9.303-eun-701644-g7c3615b6cd2c (eun0115@Nexus) (Proton clang version 13.0.0 ) #1 SMP PREEMPT Mon Mar 7 11:02:55 UTC 2022\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sdm712/main/cmdline.txt",
    "content": "rcupdate.rcu_expedited=1 core_ctl_disable_cpumask=6-7 console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0xA90000 androidboot.hardware=qcom androidboot.console=ttyMSM0 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 service_locator.enable=1 androidboot.configfs=true androidboot.usbcontroller=a600000.dwc3 swiotlb=4096 loop.max_part=16 androidboot.selinux=permissive buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=bec9b02a-910f-33f4-3db6-da34b157b521 androidboot.bootdevice=1d84000.ufshc androidboot.secureboot=1 androidboot.dp=0x0 androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.hwversion=3.19.0 androidboot.hwc=GLOBAL androidboot.hwlevel=MP androidboot.ramdump=disable androidboot.baseband=msm msm_drm.dsi_display0=dsi_ss_ea8076_fhd_cmd_display:config2 skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=1 androidboot.dtb_idx=0\n"
  },
  {
    "path": "results/sdm712/main/cpufreq_stats/0/time_in_state",
    "content": "300000 95192\n576000 12538\n748800 9832\n998400 7624\n1209600 6422\n1324800 5921\n1516800 5319\n1612800 5019\n1708800 5101\n"
  },
  {
    "path": "results/sdm712/main/cpufreq_stats/0/total_trans",
    "content": "12\n"
  },
  {
    "path": "results/sdm712/main/cpufreq_stats/6/time_in_state",
    "content": "300000 14286\n652800 7035\n825600 5731\n979200 4929\n1132800 4427\n1363200 3825\n1536000 3524\n1747200 3123\n1843200 3022\n1996800 2922\n2054400 2822\n2169600 2721\n2208000 2722\n2304000 91880\n"
  },
  {
    "path": "results/sdm712/main/cpufreq_stats/6/total_trans",
    "content": "16\n"
  },
  {
    "path": "results/sdm712/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 12 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x6\nCPU part\t: 0x802\nCPU revision\t: 13\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x6\nCPU part\t: 0x802\nCPU revision\t: 13\n\nHardware\t: Qualcomm Technologies, Inc SDM712\n"
  },
  {
    "path": "results/sdm712/main/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. SDM712 PM660 + PM660L, USB-C Audio, MTP, Xiaomi Grus;\nCompatible: qcom,sdm710-mtp;qcom,sdm710;qcom,mtp;\n"
  },
  {
    "path": "results/sdm712/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Linux version 4.9.249~ms2+vanilla/79f05565 (NATO66613@KREMLIN) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project 52586c46b0883600a332fd64731dc5287981f980), GNU ld (GNU Binutils) 2.35.1) #1 SMP PREEMPT Tue Jan 26 08:17:00 UTC 2021\n[    0.000000] Boot CPU: AArch64 Processor [517f803c]\n[    0.000000] Machine: Qualcomm Technologies, Inc. SDM712 PM660 + PM660L, USB-C Audio, MTP, Xiaomi Grus\n[    0.000000] core_ctl: disable_cpumask=6-7\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff400000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000001fb000000, size 36 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe000000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node sdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fc000000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6400000, size 92 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f5c00000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085700000, size 6 MiB\n[    0.000000] OF: reserved mem: initialized node hyp_region@85700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085e00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node xbl_region@85e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085fc0000, size 75 MiB\n[    0.000000] OF: reserved mem: initialized node removed_region@85fc0000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ab00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node camera_region@8ab00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b000000, size 126 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@8b000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000092e00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region@92e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093300000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_msa_region@93300000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093400000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_regions@93400000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000095200000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node pil_mba_region@0x93c00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000095400000, size 34 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region@93e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097600000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ips_fw_region@0x95c00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097610000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_gsi_region@0x95c10000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097615000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@0x95c15000, compatible id removed-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x000000009e400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@0x9e400000, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000009fd00000, size 12 MiB\n[    0.000000] OF: reserved mem: initialized node secure_dsp_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000af000000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node ramdump_fb_region@af000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000b0000000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node ramoops@b0000000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 1475753\n[    0.000000]   DMA zone: 6840 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 437737 pages, LIFO batch:31\n[    0.000000]   Normal zone: 16219 pages used for memmap\n[    0.000000]   Normal zone: 1038016 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] random: fast init done\n[    0.000000] percpu: Embedded 21 pages/cpu s46744 r8192 d31080 u86016\n[    0.000000] pcpu-alloc: s46744 r8192 d31080 u86016 alloc=21*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1452694\n[    0.000000] Kernel command line: rcupdate.rcu_expedited=1 core_ctl_disable_cpumask=6-7 console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0xA90000 androidboot.hardware=qcom androidboot.console=ttyMSM0 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 service_locator.enable=1 androidboot.configfs=true androidboot.usbcontroller=a600000.dwc3 swiotlb=4096 loop.max_part=16 androidboot.selinux=permissive buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=bec9b02a-910f-33f4-3db6-da34b157b521 androidboot.bootdevice=1d84000.ufshc androidboot.secureboot=1 androidboot.dp=0x0 androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.hwversion=3.19.0 androidboot.hwc=GLOBAL androidboot.hwlevel=MP androidboot.ramdump=disable androidboot.baseband=msm msm_drm.dsi_display0=dsi_ss_ea8076_fhd_cmd_display:config2 skip_initram\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 131072 bytes\n[    0.000000] log_buf_len: 1048576 bytes\n[    0.000000] early log buf free: 123692(94%)\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] software IO TLB: mapped [mem 0xf5400000-0xf5c00000] (8MB)\n[    0.000000] Memory: 5496892K/5903012K available (17918K kernel code, 2360K rwdata, 6424K rodata, 4096K init, 4498K bss, 205416K reserved, 200704K cma-reserved)\n[    0.000000] Virtual kernel memory layout:\n[    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n[    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)\n[    0.000000]       .text : 0x        (ptrval) - 0x        (ptrval)   ( 17920 KB)\n[    0.000000]     .rodata : 0x        (ptrval) - 0x        (ptrval)   (  8192 KB)\n[    0.000000]       .init : 0x        (ptrval) - 0x        (ptrval)   (  4096 KB)\n[    0.000000]       .data : 0x        (ptrval) - 0x        (ptrval)   (  2360 KB)\n[    0.000000]        .bss : 0x        (ptrval) - 0x        (ptrval)   (  4499 KB)\n[    0.000000]     fixed   : 0xffffffbefe7fb000 - 0xffffffbefec00000   (  4116 KB)\n[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)\n[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)\n[    0.000000]               0xffffffbf8d000000 - 0xffffffbf92f5b000   (    95 MB actual)\n[    0.000000]     memory  : 0xffffffe340000000 - 0xffffffe4bd6c0000   (  6102 MB)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] NR_IRQS:64 nr_irqs:64 0\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from all CPUs\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arm_arch_timer: Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000005] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000025] clocksource: Switched to clocksource arch_sys_counter\n[    0.001992] Console: colour dummy device 80x25\n[    0.002016] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.002027] pid_max: default: 32768 minimum: 301\n[    0.002089] Security Framework initialized\n[    0.002098] SELinux:  Initializing.\n[    0.002142] SELinux:  Starting in permissive mode\n[    0.002169] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.002175] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.003230] /cpus/cpu@0: Missing clock-frequency property\n[    0.003238] /cpus/cpu@100: Missing clock-frequency property\n[    0.003244] /cpus/cpu@200: Missing clock-frequency property\n[    0.003250] /cpus/cpu@300: Missing clock-frequency property\n[    0.003257] /cpus/cpu@400: Missing clock-frequency property\n[    0.003263] /cpus/cpu@500: Missing clock-frequency property\n[    0.003273] /cpus/cpu@600: Missing clock-frequency property\n[    0.003279] /cpus/cpu@700: Missing clock-frequency property\n[    0.003352] sched-energy: Sched-energy-costs installed from DT\n[    0.011710] ASID allocator initialised with 32768 entries\n[    0.018090] MSM Memory Dump base table set up\n[    0.018104] MSM Memory Dump apps data table set up\n[    0.029422] CPU1: Booted secondary processor [517f803c]\n[    0.038483] CPU2: Booted secondary processor [517f803c]\n[    0.047552] CPU3: Booted secondary processor [517f803c]\n[    0.056739] CPU4: Booted secondary processor [517f803c]\n[    0.066084] CPU5: Booted secondary processor [517f803c]\n[    0.076306] CPU6: Booted secondary processor [516f802d]\n[    0.086392] CPU7: Booted secondary processor [516f802d]\n[    0.086713] Brought up 8 CPUs\n[    0.086718] SMP: Total of 8 processors activated.\n[    0.086723] CPU features: detected feature: GIC system register CPU interface\n[    0.086725] CPU features: detected feature: Privileged Access Never\n[    0.086728] CPU features: detected feature: User Access Override\n[    0.086731] CPU features: detected feature: 32-bit EL0 Support\n[    0.086734] CPU features: detected feature: Kernel page table isolation (KPTI)\n[    0.143817] CPU: All CPU(s) started at EL1\n[    0.143864] alternatives: patching kernel code\n[    0.146975] devtmpfs: initialized\n[    0.215760] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.215777] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.220216] pinctrl core: initialized pinctrl subsystem\n[    0.221011] NET: Registered protocol family 16\n[    0.222450] schedtune: init normalization constants...\n[    0.222459] schedtune: CLUSTER[0]        min_pwr:     1 max_pwr:    19\n[    0.222464] schedtune: CPU[0]            min_pwr:     4 max_pwr:   139\n[    0.222469] schedtune: SYSTEM            min_pwr:     5 max_pwr:   158\n[    0.222473] schedtune: using normalization constants mul: 2891383213 sh1: 1 sh2: 7\n[    0.222476] schedtune: configured to support 5 boost groups\n[    0.224210] cpuidle: using governor menu\n[    0.224232] cpuidle: using governor qcom\n[    0.228779] vdso32: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.228787] vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.228792] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.229534] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.229709] msm_smem_init: unable to create logging context\n[    0.229727] <CORE> glink_init: unable to create log context\n[    0.232552] exit: IPA_USB init success!\n[    0.232625] Failed to create IPC log0\n[    0.232626] Failed to create IPC log1\n[    0.232628] Failed to create IPC log2\n[    0.232631] Failed to create IPC log3\n[    0.232631] Failed to create IPC log4\n[    0.233069] pstore: using zlib compression\n[    0.233091] console [pstore-1] enabled\n[    0.233290] pstore: Registered ramoops as persistent store backend\n[    0.233293] ramoops: attached 0x400000@0xb0000000, ecc: 0/0\n[    0.236115] qupv3_geni_se 8c0000.qcom,qupv3_0_geni_se: geni_se_probe Failed to allocate log context\n[    0.236278] irq: no irq domain found for /soc/pinctrl@03400000 !\n[    0.236771] qupv3_geni_se ac0000.qcom,qupv3_1_geni_se: geni_se_probe Failed to allocate log context\n[    0.239979] OF: amba_device_add() failed (-16) for /soc/cti@6867000\n[    0.243315] irq: no irq domain found for /soc/qcom,mdss_mdp@ae00000 !\n[    0.243395] irq: no irq domain found for /soc/qcom,mdss_mdp@ae00000 !\n[    0.243474] irq: no irq domain found for /soc/qcom,mdss_mdp@ae00000 !\n[    0.244567] sps:sps is ready.\n[    0.247453] msm_watchdog 17980000.qcom,wdt: wdog absent resource not present\n[    0.247468] msm_watchdog 17980000.qcom,wdt: No need to allocate memory for scandumps\n[    0.248235] msm_watchdog 17980000.qcom,wdt: MSM Watchdog Initialized\n[    0.249296] platform soc:mem_dump: assigned reserved memory node mem_dump_region\n[    0.267913] <CORE> glink_core_register_transport: unable to create log context for [mpss:smem]\n[    0.267972] <CORE> glink_smem_native_probe: unable to create log context for [mpss:smem]\n[    0.268464] <CORE> glink_core_register_transport: unable to create log context for [lpass:smem]\n[    0.268525] <CORE> glink_smem_native_probe: unable to create log context for [lpass:smem]\n[    0.269188] <CORE> glink_core_register_transport: unable to create log context for [cdsp:smem]\n[    0.269236] <CORE> glink_smem_native_probe: unable to create log context for [cdsp:smem]\n[    0.279485] spmi spmi-0: PMIC arbiter version v5 (0x50000000)\n[    0.285168] platform 62400000.qcom,lpass: assigned reserved memory node pil_adsp_region@93e00000\n[    0.285368] (NULL device *): msm_gsi_probe:3185 failed to create IPC log, continue...\n[    0.285642] platform soc:qcom,ipa_fws: assigned reserved memory node ips_fw_region@0x95c00000\n[    0.285777] platform 4080000.qcom,mss: assigned reserved memory node modem_region@8b000000\n[    0.285851] platform aae0000.qcom,venus: assigned reserved memory node pil_video_region@92e00000\n[    0.285962] platform 8300000.qcom,turing: assigned reserved memory node cdsp_regions@93400000\n[    0.286286] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.289917] pm660l_s3_level: Bringing 1uV into 17-17uV\n[    0.290008] pm660l_s3_level: supplied by pm660l_s1_level\n[    0.290154] pm660l_s3_level_ao: Bringing 1uV into 17-17uV\n[    0.290236] pm660l_s3_level_ao: supplied by pm660l_s1_level_ao\n[    0.299494] sdm670-pinctrl 3400000.pinctrl: invalid resource\n[    0.310757] platform soc:qcom,kgsl-hyp: assigned reserved memory node gpu_region@0x95c15000\n[    0.334939] gpu_cx_gdsc: supplied by pm660l_s3_level\n[    0.344372] cam_cc-sdm845 ad00000.qcom,camcc: Registered Camera CC clocks\n[    0.345844] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.347106] clk-rpmh soc:qcom,rpmhclk: Registered RPMh clocks\n[    0.349322] disp_cc-sdm845 af00000.qcom,dispcc: Registered Display CC clocks\n[    0.363086] gcc-sdm845 100000.qcom,gcc: Registered GCC clocks\n[    0.364368] clk: gpu_cc_gx_gfx3d_clk_src: set OPP pair(180000000 Hz: 49 uV) on 5000000.qcom,kgsl-3d0\n[    0.364726] clk: gpu_cc_gx_gfx3d_clk_src: set OPP pair(700000000 Hz: 385 uV) on 5000000.qcom,kgsl-3d0\n[    0.364809] clk: gpu_cc_gx_gfx3d_clk_src: set OPP pair(780000000 Hz: 417 uV) on 5000000.qcom,kgsl-3d0\n[    0.364883] gfxcc-sdm845 5090000.qcom,gfxcc: Registered GFX CC clocks\n[    0.366665] clk: gpu_cc_gmu_clk_src: set OPP pair(19200000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.366717] clk: gpu_cc_gmu_clk_src: set OPP pair(200000000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.366885] gpu_cc-sdm845 5090000.qcom,gpucc: Registered GPU CC clocks\n[    0.368246] video_cc-sdm845 ab00000.qcom,videocc: Registered Video CC clocks\n[    0.370214] KPI: Bootloader start count = 60986\n[    0.370217] KPI: Bootloader end count = 105107\n[    0.370218] KPI: Bootloader display count = 792624062\n[    0.370221] KPI: Bootloader load kernel count = 4025529564\n[    0.370224] KPI: Kernel MPM timestamp = 125688\n[    0.370226] KPI: Kernel MPM Clock frequency = 32768\n[    0.370252] socinfo_print: v0.15, id=393, ver=1.1, raw_id=264, raw_ver=1, hw_plat=34, hw_plat_ver=1638400\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65563, pmic_die_revision=131072 foundry_id=3 serial_number=1578204790 num_pmics=2 chip_family=0x55 raw_device_family=0x6 raw_device_number=0x4 nproduct_id=0x400 num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0x6 ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.370255] msm_bus_fabric_rpmh_init_driver\n[    0.370900] msm_bus: Probe started\n[    0.371475] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.371527] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.371540] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.371595] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.373838] msm_bus: DT Parsing complete\n[    0.376867] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.377046] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.377089] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.377263] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.390864] camera_viodd_ldo: supplied by pm660_s4\n[    0.392739] arm-smmu 5040000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.392809] arm-smmu 5040000.arm,smmu-kgsl: \tstream matching with 5 register groups, mask 0x7\n[    0.392906] arm-smmu 5040000.arm,smmu-kgsl: found 8 context interrupt(s) but have 5 context banks. assuming 5 context interrupts.\n[    0.395276] register_client_adhoc:find path.src 139 dest 627\n[    0.395548] register_client_adhoc:Client handle 1 apps_smmu\n[    0.395777] arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.395882] arm-smmu 15000000.apps-smmu: \tstream matching with 71 register groups, mask 0x7fff\n[    0.396524] arm-smmu 15000000.apps-smmu: found 64 context interrupt(s) but have 47 context banks. assuming 47 context interrupts.\n[    0.397242] register_client_adhoc:find path.src 139 dest 627\n[    0.397420] register_client_adhoc:Client handle 2 apps_smmu\n[    0.397713] register_client_adhoc:find path.src 139 dest 627\n[    0.397871] register_client_adhoc:Client handle 3 apps_smmu\n[    0.398108] register_client_adhoc:find path.src 22 dest 773\n[    0.398191] register_client_adhoc:Client handle 4 mnoc_hf_0_tbu\n[    0.398419] register_client_adhoc:find path.src 22 dest 773\n[    0.398488] register_client_adhoc:Client handle 5 mnoc_hf_1_tbu\n[    0.398692] register_client_adhoc:find path.src 137 dest 772\n[    0.398766] register_client_adhoc:Client handle 6 mnoc_sf_0_tbu\n[    0.398923] register_client_adhoc:find path.src 139 dest 627\n[    0.399074] register_client_adhoc:Client handle 7 apps_smmu\n[    0.399267] register_client_adhoc:find path.src 139 dest 627\n[    0.399403] register_client_adhoc:Client handle 8 apps_smmu\n[    0.400475] iommu: Adding device 8c0000.qcom,qupv3_0_geni_se:qcom,iommu_qupv3_0_geni_se_cb to group 0\n[    0.400636] iommu: Adding device ac0000.qcom,qupv3_1_geni_se:qcom,iommu_qupv3_1_geni_se_cb to group 1\n[    0.400787] iommu: Adding device ae00000.qcom,mdss_mdp to group 2\n[    0.400934] iommu: Adding device 1de0000.qcedev to group 3\n[    0.401073] iommu: Adding device 1de0000.qcrypto to group 4\n[    0.401225] iommu: Adding device 800000.qcom,gpi-dma to group 5\n[    0.401362] iommu: Adding device a00000.qcom,gpi-dma to group 6\n[    0.401533] iommu: Adding device 18800000.qcom,icnss to group 7\n[    0.401699] iommu: Adding device soc:apps_iommu_test_device to group 8\n[    0.401832] iommu: Adding device soc:apps_iommu_coherent_test_device to group 8\n[    0.401994] iommu: Adding device soc:qcom,msm-audio-ion to group 9\n[    0.402142] iommu: Adding device a600000.ssusb to group 10\n[    0.402281] iommu: Adding device soc:usb_audio_qmi_dev to group 11\n[    0.404620] qcom,qpnp-misc c440000.qcom,spmi:qcom,pm660@0:qcom,misc@900: probe successful\n[    0.405581] SCSI subsystem initialized\n[    0.405701] usbcore: registered new interface driver usbfs\n[    0.405729] usbcore: registered new interface driver hub\n[    0.405895] usbcore: registered new device driver usb\n[    0.406622] soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.407253] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.407282] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)\n[    0.407501] input: qpnp_pon as /devices/virtual/input/input0\n[    0.408460] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: No PON config. specified\n[    0.408514] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (secondary PMIC) and 'cold' boot\n[    0.408543] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from GP1 (Keypad_Reset1)\n[    0.409000] media: Linux media interface: v0.10\n[    0.409025] Linux video capture interface: v2.00\n[    0.419882] Unable to get pmic_revid rc=-22\n[    0.421799] Linux cec interface: v0.10\n[    0.422233] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@0x9e400000\n[    0.422355] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.422446] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.422531] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.422685] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node sdsp_region\n[    0.423077] ION heap system created\n[    0.423197] ION heap qsecom created at 0x000000009e400000 with size 1400000\n[    0.423206] ION heap qsecom_ta created at 0x00000000fe400000 with size 1000000\n[    0.423214] ION heap spss created at 0x00000000f5c00000 with size 800000\n[    0.423221] ION heap secure_display created at 0x00000000f6400000 with size 5c00000\n[    0.423231] ION heap secure_heap created\n[    0.423246] ION heap adsp created at 0x00000000fe000000 with size 400000\n[    0.436375] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x9fd00000, size 0xc00000\n[    0.436379] ION heap secure_carveout created\n[    0.437984] ipa ipa3_tz_unlock_reg:5243 Bad parameters\n[    0.437987] ipa ipa3_pre_init:5445 Failed to unlock memory region using TZ\n[    0.438094] register_client_adhoc:find path.src 90 dest 512\n[    0.438655] register_client_adhoc:find path.src 90 dest 585\n[    0.438790] register_client_adhoc:find path.src 1 dest 676\n[    0.439034] register_client_adhoc:find path.src 143 dest 777\n[    0.439104] register_client_adhoc:Client handle 9 ipa\n[    0.439664] ipa ipa3_uc_state_check:284 uC interface not initialized\n[    0.443297] ipa ipa3_uc_state_check:284 uC interface not initialized\n[    0.443915] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_ap to group 12\n[    0.444167] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_wlan to group 13\n[    0.444393] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_uc to group 14\n[    0.445640] PMIC@SID0: PM660 v2.0 options: 0, 0, 0, 0\n[    0.445768] PMIC@SID2: PM660L v2.0.1 options: 0, 0, 0, 0\n[    0.450685] Advanced Linux Sound Architecture Driver Initialized.\n[    0.451206] Bluetooth: Core ver 2.22\n[    0.451232] NET: Registered protocol family 31\n[    0.451234] Bluetooth: HCI device and connection manager initialized\n[    0.451243] Bluetooth: HCI socket layer initialized\n[    0.451249] Bluetooth: L2CAP socket layer initialized\n[    0.451270] Bluetooth: SCO socket layer initialized\n[    0.453135] register_client_adhoc:find path.src 22 dest 512\n[    0.453463] register_client_adhoc:find path.src 23 dest 512\n[    0.453683] register_client_adhoc:Client handle 10 bus-proxy-client\n[    0.455030] gpu_gx_gdsc: supplied by pm660l_s2_level\n[    0.456461] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu0\n[    0.456793] clk: add_opp: Set OPP pair (1708800000 Hz, 772000 uv) on cpu0\n[    0.456846] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu1\n[    0.457150] clk: add_opp: Set OPP pair (1708800000 Hz, 772000 uv) on cpu1\n[    0.457207] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu2\n[    0.457505] clk: add_opp: Set OPP pair (1708800000 Hz, 772000 uv) on cpu2\n[    0.457564] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu3\n[    0.457861] clk: add_opp: Set OPP pair (1708800000 Hz, 772000 uv) on cpu3\n[    0.457923] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu4\n[    0.458227] clk: add_opp: Set OPP pair (1708800000 Hz, 772000 uv) on cpu4\n[    0.458276] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu5\n[    0.458582] clk: add_opp: Set OPP pair (1708800000 Hz, 772000 uv) on cpu5\n[    0.458629] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu6\n[    0.459126] clk: add_opp: Set OPP pair (2304000000 Hz, 920000 uv) on cpu6\n[    0.459173] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu7\n[    0.459671] clk: add_opp: Set OPP pair (2304000000 Hz, 920000 uv) on cpu7\n[    0.459982] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on soc:qcom,l3-cpu0\n[    0.459984] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on soc:qcom,l3-cpu6\n[    0.459986] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on soc:qcom,l3-cdsp\n[    0.461184] clk: add_opp: Set OPP pair (1440000000 Hz, 768000 uv) on soc:qcom,l3-cpu0\n[    0.461187] clk: add_opp: Set OPP pair (1440000000 Hz, 768000 uv) on soc:qcom,l3-cpu6\n[    0.461189] clk: add_opp: Set OPP pair (1440000000 Hz, 768000 uv) on soc:qcom,l3-cdsp\n[    0.462995] cpufreq: driver osm-cpufreq up and running\n[    0.462998] clk: clk_cpu_osm_driver_probe: OSM CPUFreq driver inited\n[    0.465103] sched-energy energy-costs: cpu=0 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.465107] CPU0: update cpu_capacity 448\n[    0.465114] sched-energy energy-costs: cpu=1 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.465116] CPU1: update cpu_capacity 448\n[    0.465122] sched-energy energy-costs: cpu=2 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.465124] CPU2: update cpu_capacity 448\n[    0.465130] sched-energy energy-costs: cpu=3 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.465131] CPU3: update cpu_capacity 448\n[    0.465136] sched-energy energy-costs: cpu=4 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.465137] CPU4: update cpu_capacity 448\n[    0.465142] sched-energy energy-costs: cpu=5 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.465143] CPU5: update cpu_capacity 448\n[    0.465149] sched-energy energy-costs: cpu=6 eff=1740 [freq=300000 cap=134 power_d0=256] -> [freq=2611200 cap=1024 power_d0=1400]\n[    0.465151] CPU6: update cpu_capacity 1024\n[    0.465155] sched-energy energy-costs: cpu=7 eff=1740 [freq=300000 cap=134 power_d0=256] -> [freq=2611200 cap=1024 power_d0=1400]\n[    0.465157] CPU7: update cpu_capacity 1024\n[    0.465329] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.466015] clocksource: Switched to clocksource arch_sys_counter\n[    0.466181] VFS: Disk quotas dquot_6.6.0\n[    0.466229] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.466786] debugcc-sdm845 soc:qcom,cc-debug: Registered debug mux successfully\n[    0.467513] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.467768] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.467774] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.467779] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.467785] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.467790] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.468354] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=0, clocks successfully\n[    0.468377] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.468459] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.468465] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.468471] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.468476] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.468481] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.473530] dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.478813] dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.478946] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=1, clocks successfully\n[    0.478970] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.486746] NET: Registered protocol family 2\n[    0.487198] TCP established hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.487444] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)\n[    0.488298] TCP: Hash tables configured (established 65536 bind 65536)\n[    0.488350] UDP hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.488422] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.488623] NET: Registered protocol family 1\n[    0.489088] Trying to unpack rootfs image as initramfs...\n[    0.690881] Freeing initrd memory: 7456K\n[    0.692424] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.696571] audit: initializing netlink subsys (disabled)\n[    0.696626] audit: type=2000 audit(0.689:1): initialized\n[    0.696831] Initialise system trusted keyrings\n[    0.698209] workingset: timestamp_bits=45 max_order=21 bucket_order=0\n[    0.701735] exFAT: file-system version 5.8-2arter97\n[    0.701805] Registering sdcardfs 0.1\n[    0.701943] fuse init (API version 7.26)\n[    0.703625] SELinux:  Registering netfilter hooks\n[    0.703884] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    0.703886] pfk_f2fs [pfk_f2fs_init]: PFK F2FS inited successfully\n[    0.703891] pfk [pfk_init]: Driver initialized successfully\n[    0.707573] Key type asymmetric registered\n[    0.707577] Asymmetric key parser 'x509' registered\n[    0.707671] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)\n[    0.707676] io scheduler noop registered\n[    0.707705] io scheduler bfq registered (default)\n[    0.707709] BFQ I/O-scheduler: v8r12 (with cgroups support)\n[    0.721523] fb0: Virtual frame buffer device, using 3000K of video memory\n[    0.723561] qcom,qpnp-clkdiv c440000.qcom,spmi:qcom,pm660@0:qcom,clkdiv@5b00: Registered qpnp_clkdiv_1 successfully\n[    0.727476] 88e0000.qcom,msm-eud supply vdda33 not found, using dummy regulator\n[    0.729149] glink_loopback_server_init: unable to create log context\n[    0.730541] <CORE> glink_core_register_transport: unable to create log context for [wdsp:spi]\n[    0.731241] msm_smp2p_init: unable to create log context\n[    0.733792] qmi_log_init: Unable to create QMI IPC logging for Req/Resp\n[    0.733796] logging for Indications: Unable to create QMI IPC qmi_log_init\n[    0.736080] icnss: Unable to create log context\n[    0.736082] icnss: Unable to create log long context\n[    0.739190] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.739341] icnss: Platform driver probed successfully\n[    0.740664] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.740976] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.745699] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.746975] register_client_adhoc:find path.src 125 dest 512\n[    0.747375] register_client_adhoc:Client handle 11 scm_pas\n[    0.747386] minidump-id not found for adsp\n[    0.747486] minidump-id not found for ipa_fws\n[    0.747497] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    0.748066] register_client_adhoc:find path.src 63 dest 512\n[    0.748262] register_client_adhoc:Client handle 12 pil-venus\n[    0.748268] minidump-id not found for venus\n[    0.748276] subsys-pil-tz aae0000.qcom,venus: for venus segments only will be dumped.\n[    0.748526] minidump-id not found for cdsp\n[    0.748888] minidump-id not found for a615_zap\n[    0.748894] subsys-pil-tz soc:qcom,kgsl-hyp: for a615_zap segments only will be dumped.\n[    0.750266] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    0.750286] minidump-id not found for modem\n[    0.752587] msm_geni_serial 898000.qcom,qup_uart: Wakeup byte 0xfd\n[    0.752637] msm_geni_serial 898000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    0.752661] msm_geni_serial 898000.qcom,qup_uart: Err in Rx IPC Log\n[    0.752665] msm_geni_serial 898000.qcom,qup_uart: Err in Tx IPC Log\n[    0.752669] msm_geni_serial 898000.qcom,qup_uart: Err in Pwr IPC Log\n[    0.752673] msm_geni_serial 898000.qcom,qup_uart: Err in Misc IPC Log\n[    0.753243] 898000.qcom,qup_uart: ttyHS0 at MMIO 0x898000 (irq = 10, base_baud = 0) is a MSM\n[    0.753726] msm_geni_serial_init: Driver initialized\n[    0.754271] register_client_adhoc:find path.src 1 dest 618\n[    0.754514] register_client_adhoc:Client handle 13 msm-rng-noc\n[    0.755405] random: crng init done\n[    0.759252] diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    0.759255] diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    0.801984] [drm] Initialized\n[    0.802372] register_client_adhoc:find path.src 20003 dest 20515\n[    0.802515] register_client_adhoc:find path.src 20004 dest 20515\n[    0.802583] register_client_adhoc:Client handle 14 disp_rsc_mnoc\n[    0.802605] register_client_adhoc:find path.src 20001 dest 20513\n[    0.802673] register_client_adhoc:Client handle 15 disp_rsc_llcc\n[    0.802695] register_client_adhoc:find path.src 20000 dest 20512\n[    0.802766] register_client_adhoc:Client handle 16 disp_rsc_ebi\n[    0.802949] [sde_rsc_hw:rsc_hw_init:679]: sde rsc init successfully done\n[    0.802964] [sde_rsc:sde_rsc_probe:1422]: sde rsc index:0 probed successfully\n[    0.804269] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-0\n[    0.804370] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-1\n[    0.805195] AXI: get_pdata(): Error: Client name not found\n[    0.805198] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.805201] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-0\n[    0.805330] AXI: get_pdata(): Error: Client name not found\n[    0.805332] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.805333] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-1\n[    0.808110] msm-dsi-panel:[dsi_panel_parse_reset_sequence:2151] RESET SEQ LENGTH = 16\n[    0.808133] msm-dsi-panel:[dsi_panel_parse_misc_features:2200] dsi_panel_parse_misc_features: ulps feature enabled\n[    0.808136] msm-dsi-panel:[dsi_panel_parse_misc_features:2206] dsi_panel_parse_misc_features: ulps during suspend feature enabled\n[    0.808205] msm-dsi-display:[dsi_display_clocks_init] failed to get src_byte_clk, rc=-2\n[    0.809020] msm-dsi-display:[dsi_display_get_boot_display] index = 0\n[    0.809022] msm-dsi-display:[dsi_display_get_boot_display] index = 1\n[    0.809438] register_client_adhoc:find path.src 1 dest 590\n[    0.809719] register_client_adhoc:Client handle 17 mdss_reg\n[    0.809748] register_client_adhoc:find path.src 22 dest 512\n[    0.809963] register_client_adhoc:find path.src 23 dest 512\n[    0.810240] register_client_adhoc:Client handle 18 mdss_sde\n[    0.810308] [drm:sde_dbg_init:3481] evtlog_status: enable:3, panic:1, dump:2\n[    0.810324] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops 0xffffff8269878e70)\n[    0.810329] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops 0xffffff826987d360)\n[    0.810624] msm-dsi-display:[dsi_display_bind] Successfully bind display panel 'dsi_ss_ea8076_fhd_cmd_display'\n[    0.810857] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display@21 (ops 0xffffff8269879dc0)\n[    0.810899] [drm] mapped mdp address space @ffffff800ef00000\n[    0.810923] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: vbif_nrt_phys\n[    0.810965] [drm:_sde_kms_get_splash_data:3271] found continuous splash base address:9c000000 size:2300000\n[    0.812141] [drm:sde_kms_hw_init:3400] sde hardware revision:0x40010000\n[    0.813070] [drm] Created domain mdp_ns [80000000,80000000] secure=0\n[    0.815776] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 15\n[    0.816168] [drm] probing device qcom,smmu_sde_sec\n[    0.816178] [drm] Created domain mdp_s [80000000,80000000] secure=1\n[    0.819567] [drm] invalid feature map 9 for feature 10\n[    0.819686] [drm] invalid feature map 9 for feature 10\n[    0.941945] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    0.941948] [drm] No driver support for vblank timestamp query.\n[    0.943207] msm-dsi-panel:[dsi_panel_parse_topology:3003] default topology: lm: 1 comp_enc:0 intf: 1\n[    0.943411] msm-dsi-panel:[dsi_panel_parse_partial_update_caps:3091] partial update disabled as the property is not set\n[    0.943587] dsi-ctrl:[_dsi_ctrl_setup_isr] [DSI_0] IRQ 604 registered\n[    0.966330] iommu: Adding device 506a000.qcom,gmu:gmu_user to group 16\n[    0.966603] iommu: Adding device 506a000.qcom,gmu:gmu_kernel to group 17\n[    0.968180] register_client_adhoc:find path.src 26 dest 512\n[    0.968389] register_client_adhoc:Client handle 19 grp3d\n[    0.968407] register_client_adhoc:find path.src 26 dest 10036\n[    0.968549] register_client_adhoc:Client handle 20 cnoc\n[    0.968553] query_client_usecase_all: query_start\n[    0.968607] query_client_usecase_all: query_start\n[    0.969846] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 18\n[    0.970258] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 19\n[    0.970518] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure_alt to group 20\n[    0.970944] kgsl: _kgsl_iommu_cb_probe: dt: Unused context label gfx3d_secure_alt\n[    0.991412] llcc_slice_get_entry:can't find 11 usecase id\n[    1.014977] brd: module loaded\n[    1.038058] loop: module loaded\n[    1.039454] zram: Added device: zram0\n[    1.041445] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1400000\n[    1.041475] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    1.041481] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    1.041485] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    1.041567] register_client_adhoc:find path.src 125 dest 512\n[    1.041994] register_client_adhoc:Client handle 21 qseecom-noc\n[    1.042109] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    1.044337] register_client_adhoc:find path.src 125 dest 512\n[    1.044623] register_client_adhoc:Client handle 22 qcedev-noc\n[    1.045804] qce 1de0000.qcedev: QTI Crypto 5.4.1 device found @0x1de0000\n[    1.045811] qce 1de0000.qcedev: CE device = 0x0 IO base, CE = ffffff800fc20000 Consumer (IN) PIPE 6,\n               Producer (OUT) PIPE 7 IO base BAM = 0000000000000000\n               BAM IRQ 20 Engines Availability = 0x2011073\n[    1.045831] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000001dc4000\n[    1.045835] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000001dc4000\n[    1.045837] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000001dc4000\n[    1.045840] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000001dc4000\n[    1.045842] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000001dc4000\n[    1.045844] sps:BAM 0x0000000001dc4000 is registered.\n[    1.045949] sps:BAM 0x0000000001dc4000 (va:0xffffff800fcc0000) enabled: ver:0x27, number of pipes:16\n[    1.046058] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 20\n[    1.048503] register_client_adhoc:find path.src 125 dest 512\n[    1.048844] register_client_adhoc:Client handle 23 qcrypto-noc\n[    1.049702] qcrypto 1de0000.qcrypto: QTI Crypto 5.4.1 device found @0x1de0000\n[    1.049708] qcrypto 1de0000.qcrypto: CE device = 0x0 IO base, CE = ffffff800fe20000 Consumer (IN) PIPE 4,\n               Producer (OUT) PIPE 5 IO base BAM = 0000000000000000\n               BAM IRQ 20 Engines Availability = 0x2011073\n[    1.049877] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 20\n[    1.050318] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    1.050462] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    1.050567] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    1.050665] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    1.050767] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    1.050863] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    1.050960] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    1.051058] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    1.051158] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    1.051259] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    1.051359] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    1.051458] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    1.051557] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    1.051655] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    1.051753] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    1.051852] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    1.051949] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    1.052048] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    1.052156] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    1.052256] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    1.053419] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    1.053435] CHRDEV \"icesdcc\" major number 233 goes below the dynamic allocation range\n[    1.055260] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    1.056872] qcom_ice_get_pdevice: found ice device ffffffe4adba1c00\n[    1.056875] qcom_ice_get_pdevice: matching platform device ffffffe4b2cc9800\n[    1.058082] register_client_adhoc:find path.src 123 dest 512\n[    1.058485] register_client_adhoc:find path.src 1 dest 757\n[    1.058703] register_client_adhoc:Client handle 24 ufshc_mem\n[    1.060297] scsi host0: ufshcd\n[    1.064932] qcom_ice 1d90000.ufsice: QC ICE 3.1.75 device found @0xffffff800b2a8000\n[    1.081925] SCSI Media Changer driver v0.25 \n[    1.084242] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    1.086381] tun: Universal TUN/TAP device driver, 1.6\n[    1.086383] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    1.086604] PPP generic driver version 2.4.2\n[    1.086694] PPP BSD Compression module registered\n[    1.086697] PPP Deflate Compression module registered\n[    1.086726] PPP MPPE Compression module registered\n[    1.086729] NET: Registered protocol family 24\n[    1.086743] PPTP driver version 0.8.5\n[    1.087001] CLD80211: Initializing\n[    1.087092] usbcore: registered new interface driver r8152\n[    1.087097] CHRDEV \"uio\" major number 232 goes below the dynamic allocation range\n[    1.090405] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.091805] msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    1.092789] msm-qusb-phy-v2 88e2000.qusb: pinctrl not available\n[    1.094852] msm-dwc3 a600000.ssusb: unable to get dbm device\n[    1.096100] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    1.096104] ehci-platform: EHCI generic platform driver\n[    1.096459] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    1.096474] ohci-platform: OHCI generic platform driver\n[    1.097386] usbcore: registered new interface driver usb-storage\n[    1.097434] usbcore: registered new interface driver usb_ehset_test\n[    1.097453] usbcore: registered new interface driver lvs\n[    1.098900] msm_sharedmem: sharedmem_register_qmi: qmi init successful\n[    1.100859] fgsi_init: Err allocating ipc_log_ctxt\n[    1.102069] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.102235] qpnp-pdphy c440000.qcom,spmi:qcom,pm660@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.103402] mousedev: PS/2 mouse device common for all mice\n[    1.103566] [GTP-INF][goodix_i2c_init:2260] GTx5xx HW layer init\n[    1.103589] [GTP-INF][goodix_ts_core_init:2428] Core layer init\n[    1.103848] [GTP-INF][goodix_register_ext_module:174] goodix_register_ext_module IN\n[    1.103851] [GTP-INF][goodix_register_ext_module:179] goodix_register_ext_module OUT\n[    1.103854] [GTP-INF][goodix_gsx_gesture_init:762] gesture module init\n[    1.103857] [GTP-INF][goodix_register_ext_module:174] goodix_register_ext_module IN\n[    1.103858] [GTP-INF][goodix_register_ext_module:179] goodix_register_ext_module OUT\n[    1.103909] [GTP-INF][__do_register_ext_module:84] __do_register_ext_module IN, goodix_modules.core_exit:1\n[    1.103929] [GTP-INF][__do_register_ext_module:84] __do_register_ext_module IN, goodix_modules.core_exit:1\n[    1.103971] CHRDEV \"goodix_fp_spi\" major number 231 goes below the dynamic allocation range\n[    1.104361] gf_platform: gf::irq_gpio:121\n[    1.104534] input: uinput-goodix as /devices/virtual/input/input1\n[    1.105255] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: rtc core: registered qpnp_rtc as rtc0\n[    1.105542] i2c /dev entries driver\n[    1.105820] i2c_geni 88c000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.107310] nq-nci 1-0028: nqx_probe: probing NFCC NQxxx exited successfully\n[    1.107488] i2c_geni 89c000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.108853] i2c_geni a84000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.109486] [GTP-INF][goodix_i2c_probe:2145] goodix_i2c_probe IN\n[    1.109491] [GTP-INF][goodix_parse_dt:167] Parse reset-gpio[5] from dt\n[    1.109495] [GTP-INF][goodix_parse_dt:176] Parse irq-gpio[125] from dt\n[    1.109511] [GTP-INF][goodix_parse_dt:275] ***key:0, 0, 0, 0, 0\n[    1.109700] [GTP-INF][goodix_ts_probe:2231] goodix_ts_probe IN\n[    1.109704] [GTP-INF][goodix_ts_power_init:1026] Power init\n[    1.109814] [GTP-INF][goodix_ts_power_on:1073] Device power on\n[    1.109951] [GTP-INF][goodix_ts_power_on:1080] regulator enable vddio SUCCESS\n[    1.110427] [GTP-INF][goodix_ts_power_on:1092] regulator enable avdd SUCCESS\n[    1.167242] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[1, 1], pwr[FAST MODE, FAST MODE], rate = 2\n[    1.168869] scsi 0:0:0:49488: Well-known LUN    SKhynix  H9HQ16AECMMDAR   A102 PQ: 0 ANSI: 6\n[    1.170957] scsi 0:0:0:49456: Well-known LUN    SKhynix  H9HQ16AECMMDAR   A102 PQ: 0 ANSI: 6\n[    1.172881] scsi 0:0:0:49476: Well-known LUN    SKhynix  H9HQ16AECMMDAR   A102 PQ: 0 ANSI: 6\n[    1.175594] scsi 0:0:0:0: Direct-Access     SKhynix  H9HQ16AECMMDAR   A102 PQ: 0 ANSI: 6\n[    1.178003] scsi 0:0:0:1: Direct-Access     SKhynix  H9HQ16AECMMDAR   A102 PQ: 0 ANSI: 6\n[    1.180314] scsi 0:0:0:2: Direct-Access     SKhynix  H9HQ16AECMMDAR   A102 PQ: 0 ANSI: 6\n[    1.182633] scsi 0:0:0:3: Direct-Access     SKhynix  H9HQ16AECMMDAR   A102 PQ: 0 ANSI: 6\n[    1.184950] scsi 0:0:0:4: Direct-Access     SKhynix  H9HQ16AECMMDAR   A102 PQ: 0 ANSI: 6\n[    1.187253] scsi 0:0:0:5: Direct-Access     SKhynix  H9HQ16AECMMDAR   A102 PQ: 0 ANSI: 6\n[    1.189587] sd 0:0:0:0: [sda] Write Protect is off\n[    1.189593] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.190070] sd 0:0:0:0: [sda] Optimal transfer size 786432 bytes\n[    1.191360] sd 0:0:0:1: [sdb] Write Protect is off\n[    1.191365] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.191845] sd 0:0:0:1: [sdb] Optimal transfer size 786432 bytes\n[    1.192987] sd 0:0:0:2: [sdc] Write Protect is off\n[    1.192991] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.193151]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21 sda22 sda23 sda24 sda25 sda26 sda27 sda28 sda29\n[    1.193639] sd 0:0:0:2: [sdc] Optimal transfer size 786432 bytes\n[    1.194692]  sdb: sdb1 sdb2\n[    1.196707]  sdc: sdc1 sdc2\n[    1.198442] sd 0:0:0:3: [sdd] Write Protect is off\n[    1.198446] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.198833] sd 0:0:0:3: [sdd] Optimal transfer size 786432 bytes\n[    1.200262] sd 0:0:0:4: [sde] Write Protect is off\n[    1.200267] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    1.200534] sd 0:0:0:4: [sde] Optimal transfer size 786432 bytes\n[    1.202041]  sdd: sdd1 sdd2 sdd3 sdd4 sdd5\n[    1.202645] sd 0:0:0:5: [sdf] Write Protect is off\n[    1.202650] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    1.203083] sd 0:0:0:5: [sdf] Optimal transfer size 786432 bytes\n[    1.204203]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49\n[    1.206211]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6 sdf7\n[    1.410642] [GTP-INF][goodix_ts_gpio_setup:1213] GPIO setup,reset-gpio:5, irq-gpio:125\n[    1.410686] [GTP-INF][goodix_hw_reset:1522] HW reset\n[    1.410689] [GTP-INF][goodix_hw_reset:1568] reg.esd is NULL, skip dynamic esd init\n[    1.411010] [GTP-INF][goodix_ts_probe:2315] i2c test SUCCESS\n[    1.411079] [GTP-INF][goodix_ts_probe:2328] ***start cfg_bin_proc SUCCESS\n[    1.411150] [GTP-INF][goodix_ts_probe:2380] goodix_ts_probe OUT, r:0\n[    1.411170] [GTP-INF][goodix_i2c_probe:2211] goodix_i2c_probe OUT\n[    1.411493] i2c_geni a88000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.411843] [GTP-INF][goodix_read_cfg_bin:525] ts_bdata->cfg_bin_name:goodix_gt9886_cfg_f2.bin\n[    1.411875] [GTP-INF][goodix_read_cfg_bin:527] cfg_bin_name:goodix_gt9886_cfg_f2.bin\n[    1.411881] [GTP-INF][goodix_read_cfg_bin:535] Cfg_bin image [goodix_gt9886_cfg_f2.bin] is ready, try_times:1\n[    1.411891] [GTP-INF][goodix_parse_cfg_bin:129] ---------------------------------------------\n[    1.411894] [GTP-INF][goodix_parse_cfg_bin:130] ------package:1------\n[    1.411895] [GTP-INF][goodix_parse_cfg_bin:131] package len:037f\n[    1.411897] [GTP-INF][goodix_parse_cfg_bin:132] package ic_type:normandy\n[    1.411899] [GTP-INF][goodix_parse_cfg_bin:133] package cfg_type:1\n[    1.411901] [GTP-INF][goodix_parse_cfg_bin:134] package sensor_id:1\n[    1.411903] [GTP-INF][goodix_parse_cfg_bin:135] package hw_pid:9886\n[    1.411934] [GTP-INF][goodix_parse_cfg_bin:136] package hw_vid:\n[    1.411936] [GTP-INF][goodix_parse_cfg_bin:137] package fw_mask_version:\n[    1.411938] [GTP-INF][goodix_parse_cfg_bin:138] package fw_patch_version:\n[    1.413334] CHRDEV \"BaseRemoteCtl\" major number 230 goes below the dynamic allocation range\n[    1.413336] lirc_dev: IR Remote Control driver registered, major 230\n[    1.413341] IR NEC protocol handler initialized\n[    1.413343] IR RC5(x/sz) protocol handler initialized\n[    1.413345] IR RC6 protocol handler initialized\n[    1.413347] IR JVC protocol handler initialized\n[    1.413349] IR Sony protocol handler initialized\n[    1.413350] IR SANYO protocol handler initialized\n[    1.413352] IR Sharp protocol handler initialized\n[    1.413354] IR MCE Keyboard/mouse protocol handler initialized\n[    1.413356] IR LIRC bridge handler initialized\n[    1.413357] IR XMP protocol handler initialized\n[    1.413497] ir-spi spi32766.1: lirc_dev: driver ir-spi registered at minor = 0\n[    1.413913] msm_vidc:  err: Failed to get platform resources\n[    1.413915] msm_vidc:  err: Failed to init core\n[    1.413924] msm_vidc_v4l2: probe of aa00000.qcom,vidc0 failed with error -22\n[    1.415751] [GTP-INF][goodix_parse_cfg_bin:139] package x_res_offset:00\n[    1.415753] [GTP-INF][goodix_parse_cfg_bin:140] package y_res_offset:00\n[    1.415755] [GTP-INF][goodix_parse_cfg_bin:141] package trigger_offset:00\n[    1.415756] [GTP-INF][goodix_parse_cfg_bin:143] \n[    1.415758] [GTP-INF][goodix_parse_cfg_bin:144] send_cfg_flag reg:4542\n[    1.415760] [GTP-INF][goodix_parse_cfg_bin:147] version base reg:452c, len:72\n[    1.415762] [GTP-INF][goodix_parse_cfg_bin:148] pid reg:4535\n[    1.415763] [GTP-INF][goodix_parse_cfg_bin:149] vid reg:453d\n[    1.415765] [GTP-INF][goodix_parse_cfg_bin:150] sensor_id reg:4541\n[    1.415767] [GTP-INF][goodix_parse_cfg_bin:151] fw_status reg:00\n[    1.415769] [GTP-INF][goodix_parse_cfg_bin:152] cfg_addr reg:6f78\n[    1.415770] [GTP-INF][goodix_parse_cfg_bin:153] esd reg:303f\n[    1.415772] [GTP-INF][goodix_parse_cfg_bin:154] command reg:6f68\n[    1.415773] [GTP-INF][goodix_parse_cfg_bin:155] coor:4100\n[    1.415775] [GTP-INF][goodix_parse_cfg_bin:156] gesture:00\n[    1.415776] [GTP-INF][goodix_parse_cfg_bin:157] fw_request:00\n[    1.415777] [GTP-INF][goodix_parse_cfg_bin:158] proximity:00\n[    1.415779] [GTP-INF][goodix_parse_cfg_bin:160] --------------------------------------------\n[    1.415781] [GTP-INF][goodix_cfg_bin_proc:190] parse cfg bin SUCCESS\n[    1.415784] [GTP-INF][goodix_get_reg_and_cfg:328] ic_type:1\n[    1.418728] iommu: Adding device aa00000.qcom,vidc1:non_secure_cb to group 21\n[    1.419203] iommu: Adding device aa00000.qcom,vidc1:secure_bitstream_cb to group 22\n[    1.420719] iommu: Adding device aa00000.qcom,vidc1:secure_pixel_cb to group 23\n[    1.421505] iommu: Adding device aa00000.qcom,vidc1:secure_non_pixel_cb to group 24\n[    1.424303] register_client_adhoc:find path.src 1 dest 590\n[    1.424634] register_client_adhoc:Client handle 25 sde_reg\n[    1.424718] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 25\n[    1.424883] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 26\n[    1.425086] register_client_adhoc:find path.src 25 dest 512\n[    1.425294] register_client_adhoc:Client handle 26 mdss_rotator\n[    1.425305] register_client_adhoc:find path.src 1 dest 590\n[    1.425488] register_client_adhoc:Client handle 27 mdss_rot_reg\n[    1.425942] No change in context(0==0), skip\n[    1.427575] sde_rotator_evtlog_create_debugfs: evtlog_status: enable:1, panic:1, dump:2\n[    1.428476] sde_rotator ae00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    1.430530] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    1.430563] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    1.433005] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 27\n[    1.433382] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 28\n[    1.433546] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 29\n[    1.433670] platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node camera_region@8ab00000\n[    1.433859] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 30\n[    1.434033] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 31\n[    1.434324] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_fd to group 32\n[    1.436600] register_client_adhoc:find path.src 1 dest 589\n[    1.436920] register_client_adhoc:Client handle 28 cam_ahb\n[    1.437072] register_client_adhoc:find path.src 136 dest 512\n[    1.437285] register_client_adhoc:Client handle 29 cam_hf_1_mnoc\n[    1.437477] register_client_adhoc:find path.src 146 dest 778\n[    1.437526] register_client_adhoc:Client handle 30 cam_hf_1_camnoc\n[    1.437629] register_client_adhoc:find path.src 145 dest 512\n[    1.437813] register_client_adhoc:Client handle 31 cam_hf_2_mnoc\n[    1.438057] register_client_adhoc:find path.src 147 dest 778\n[    1.438102] register_client_adhoc:Client handle 32 cam_hf_2_camnoc\n[    1.438228] register_client_adhoc:find path.src 137 dest 512\n[    1.438443] register_client_adhoc:Client handle 33 cam_sf_1_mnoc\n[    1.438623] register_client_adhoc:find path.src 148 dest 778\n[    1.438672] register_client_adhoc:Client handle 34 cam_sf_1_camnoc\n[    1.449445] CAM_ERR: CAM-IRQ-CTRL: cam_irq_controller_subscribe_irq: 268 Invalid params: bh_handler=ffffff8268f90c34 bh=0000000000000000 bh_enq_f=ffffff826a4d5418\n[    1.449454] CAM_ERR: CAM-ISP: cam_vfe_bus_deinit_hw: 2933 Failed to unsubscribe error irq rc=-22\n[    1.451811] CAM_ERR: CAM-IRQ-CTRL: cam_irq_controller_subscribe_irq: 268 Invalid params: bh_handler=ffffff8268f90c34 bh=0000000000000000 bh_enq_f=ffffff826a4d5418\n[    1.451818] CAM_ERR: CAM-ISP: cam_vfe_bus_deinit_hw: 2933 Failed to unsubscribe error irq rc=-22\n[    1.452841] CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 536 No clk named ife_dsp_clk found. Dev vfe2\n[    1.452845] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 107 option clk get failed\n[    1.454560] CAM_ERR: CAM-IRQ-CTRL: cam_irq_controller_subscribe_irq: 268 Invalid params: bh_handler=ffffff8268f90c34 bh=0000000000000000 bh_enq_f=ffffff826a4d5418\n[    1.454567] CAM_ERR: CAM-ISP: cam_vfe_bus_deinit_hw: 2933 Failed to unsubscribe error irq rc=-22\n[    1.456100] CAM_INFO: CAM-ISP: cam_isp_dev_probe: 172 Camera ISP probe complete\n[    1.458169] CAM_INFO: CAM: cam_res_mgr_probe: 681 Disable shared gpio support.\n[    1.465756] CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 226 No GPIO found\n[    1.465786] CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 226 No GPIO found\n[    1.467285] CAM_ERR: CAM-ICP: cam_ipe_probe: 87 IPE1 hw idx = 1\n\n[    1.467298] cam-ipe: probe of ac91000.qcom,ipe1 failed with error -22\n[    1.469941] CAM_ERR: CAM-ICP: cam_icp_mgr_init_devs: 4563 no child device\n[    1.470981] CAM_ERR: CAM-SMMU: cam_smmu_create_add_handle_in_table: 689 Error: cam-secure already got handle 0x55ecb\n[    1.474127] [GTP-ERR][goodix_get_reg_and_cfg:360] pkg:0, fw_mask of cfg bin is NULL, Skip!!\n[    1.474410] CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 170 Camera JPEG probe complete\n[    1.486235] get prop 168 is not supported in usb\n[    1.486401] get prop 168 is not supported in usb\n[    1.486428] PMI: smblib_check_ov_condition: Couldn't get current voltage, rc=-61\n[    1.486660] QCOM-BATT: handle_main_charge_type: Couldn't get batt capacity rc=-61\n[    1.486854] get prop 168 is not supported in usb\n[    1.494173] QPNP SMB2 probed successfully usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    1.496053] BQ2591X bq2591x_charger_probe: charger device bq25910 detected, revision:2\n[    1.501280] [GTP-INF][goodix_get_reg_and_cfg:401] find normal cfg_pkg SUCCESS\n[    1.501284] [GTP-INF][goodix_get_reg_and_cfg:457] normal cfg is found!\n[    1.501292] [GTP-INF][goodix_cfg_bin_proc:203] get reg and cfg from cfg_bin SUCCESS\n[    1.501294] [GTP-INF][goodix_cfg_bin_proc:220] @@@@@@@@@\n[    1.501296] [GTP-INF][goodix_cfg_bin_proc:221] cfg_send_flag:0x4542\n[    1.501298] [GTP-INF][goodix_cfg_bin_proc:222] pid:0x4535\n[    1.501300] [GTP-INF][goodix_cfg_bin_proc:223] vid:0x453d\n[    1.501302] [GTP-INF][goodix_cfg_bin_proc:224] sensor_id:0x4541\n[    1.501304] [GTP-INF][goodix_cfg_bin_proc:225] fw_mask:0x0000\n[    1.501305] [GTP-INF][goodix_cfg_bin_proc:226] fw_status:0x0000\n[    1.501307] [GTP-INF][goodix_cfg_bin_proc:227] cfg_addr:0x6f78\n[    1.501308] [GTP-INF][goodix_cfg_bin_proc:228] esd:0x303f\n[    1.501310] [GTP-INF][goodix_cfg_bin_proc:229] command:0x6f68\n[    1.501311] [GTP-INF][goodix_cfg_bin_proc:230] coor:0x4100\n[    1.501313] [GTP-INF][goodix_cfg_bin_proc:231] gesture:0x0000\n[    1.501314] [GTP-INF][goodix_cfg_bin_proc:232] fw_request:0x0000\n[    1.501315] [GTP-INF][goodix_cfg_bin_proc:233] proximity:0x0000\n[    1.501317] [GTP-INF][goodix_cfg_bin_proc:234] @@@@@@@@@\n[    1.501320] [GTP-INF][goodix_hw_init:1461] goodix_hw_init\n[    1.510627] get prop 168 is not supported in usb\n[    1.513293] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.513303] thermal thermal_zone5: failed to read out thermal zone (-61)\n[    1.513336] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.513338] thermal thermal_zone5: failed to read out thermal zone (-61)\n[    1.514875] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.515135] 17d41000.qcom,cpucc:qcom,limits-dcvs@0 supply isens_vref not found, using dummy regulator\n[    1.515197] msm_lmh_dcvs:limits_isens_vref_ldo_init Regulator:isens_vref settings read error:-22\n[    1.518571] [GTP-INF][goodix_read_version:838] sensor_id_mask:0x0f, sensor_id:0x01\n[    1.518577] [GTP-INF][goodix_read_version:848] PID:9886,SensorID:1, VID:03 01 02 0d 00 00 00 00\n[    1.518746] [GTP-INF][goodix_check_cfg_valid:1106] cfg bag_num:43, cfg length:774\n[    1.518751] [GTP-INF][goodix_check_cfg_valid:1139] configuration check SUCCESS\n[    1.518754] [GTP-INF][goodix_send_config:1169] ver:18h,size:774\n[    1.521464] 17d41000.qcom,cpucc:qcom,limits-dcvs@1 supply isens_vref not found, using dummy regulator\n[    1.521497] msm_lmh_dcvs:limits_isens_vref_ldo_init Regulator:isens_vref settings read error:-22\n[    1.522020] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.522024] thermal thermal_zone5: failed to read out thermal zone (-61)\n[    1.524747] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.524750] thermal thermal_zone5: failed to read out thermal zone (-61)\n[    1.540815] device-mapper: uevent: version 1.0.3\n[    1.541131] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com\n[    1.542316] device-mapper: req-crypt: dm-req-crypt successfully initalized.\n\n[    1.542768] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in devicetree\n[    1.542776] bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    1.542778] bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    1.542787] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    1.542792] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.543329] CHRDEV \"bt\" major number 229 goes below the dynamic allocation range\n[    1.543964] qcom,leds-qpnp: probe of c440000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000 failed with error -10\n[    1.546405] usbcore: registered new interface driver usbhid\n[    1.546407] usbhid: USB HID core driver\n[    1.546515] ashmem: initialized\n[    1.546520] CHRDEV \"qcwlanstate\" major number 228 goes below the dynamic allocation range\n[    1.546603] wlan_hdd_state wlan major(228) initialized\n[    1.546606] ipa_ut ipa_ut_module_init:1046 Loading IPA test module...\n[    1.546809] qpnp_coincell_charger_show_state: enabled=N, voltage=3200 mV, resistance=2100 ohm\n[    1.548147] CHRDEV \"seemplog\" major number 227 goes below the dynamic allocation range\n[    1.548433] seemp: seemp_logk_init: SCM call failed with ret val = 0 -3 0\n[    1.548795] bimc-bwmon 1436400.qcom,cpu-bwmon: BW HWmon governor registered.\n[    1.549326] arm-memlat-mon soc:qcom,cpu0-memlat-mon: Memory Latency governor registered.\n[    1.549353] arm-memlat-mon soc:qcom,cpu6-memlat-mon: Memory Latency governor registered.\n[    1.549384] arm-memlat-mon soc:qcom,cpu0-l3lat-mon: Memory Latency governor registered.\n[    1.549417] arm-memlat-mon soc:qcom,cpu6-l3lat-mon: Memory Latency governor registered.\n[    1.549450] arm-memlat-mon soc:qcom,devfreq-compute0: Compute governor registered.\n[    1.549475] arm-memlat-mon soc:qcom,devfreq-compute6: Compute governor registered.\n[    1.550543] register_client_adhoc:find path.src 1 dest 512\n[    1.550883] register_client_adhoc:Client handle 35 soc:qcom,cpubw\n[    1.552206] register_client_adhoc:find path.src 1 dest 512\n[    1.552539] register_client_adhoc:Client handle 36 soc:qcom,memlat-cpu0\n[    1.552812] register_client_adhoc:find path.src 1 dest 512\n[    1.553066] register_client_adhoc:Client handle 37 soc:qcom,memlat-cpu6\n[    1.553319] register_client_adhoc:find path.src 139 dest 627\n[    1.553458] register_client_adhoc:Client handle 38 soc:qcom,snoc_cnoc_keepalive\n[    1.553640] register_client_adhoc:find path.src 1 dest 512\n[    1.553837] register_client_adhoc:Client handle 39 soc:qcom,mincpubw\n[    1.554080] register_client_adhoc:find path.src 1 dest 512\n[    1.554262] register_client_adhoc:Client handle 40 soc:qcom,mincpu0bw\n[    1.554512] register_client_adhoc:find path.src 1 dest 512\n[    1.554698] register_client_adhoc:Client handle 41 soc:qcom,mincpu6bw\n[    1.555032] register_client_adhoc:find path.src 26 dest 512\n[    1.555167] register_client_adhoc:Client handle 42 soc:qcom,gpubw\n[    1.557414] usbcore: registered new interface driver snd-usb-audio\n[    1.561216] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.561906] msm_sdw_codec 62ec1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.562407] cs35l41 2-0040: cs35l41 i2c probe start\n[    1.562513] cs35l41 2-0040: cs35l41 proble\n[    1.562570] 2-0040 supply VA not found, using dummy regulator\n[    1.562608] 2-0040 supply VP not found, using dummy regulator\n[    1.562645] cs35l41 2-0040: Set GPIO 95 as RESET pin\n[    1.562647] cs35l41 2-0040: Reset cs35l41\n[    1.595818] [GTP-INF][goodix_send_large_config:1053] Send large cfg SUCCESS\n[    1.596098] input: goodix_ts as /devices/platform/goodix_ts.0/input/input2\n[    1.596288] [GTP-INF][goodix_ts_irq_setup:976] IRQ:273,flags:2\n[    1.608993] [GTP-INF][goodix_get_lockdowninfo:38] lockdown is:0x48,0x38,0x32,0x05,0x46,0x32,0x31,0x01\n[    1.609151] [GTP-INF][goodix_ts_esd_on:1545] Esd on\n[    1.609232] [GTP-INF][__do_register_ext_module:98] start register ext_module\n[    1.609284] [GTP-INF][__do_register_ext_module:98] start register ext_module\n[    1.609343] [GTP-INF][__do_register_ext_module:145] Module [goodix-fwu] registered,priority:1\n[    1.609362] [GTP-INF][__do_register_ext_module:145] Module [Goodix_gsx_gesture] registered,priority:2\n[    1.609373] [GTP-INF][goodix_fw_update_thread:1202] Firmware request update starts\n[    1.609376] [GTP-INF][goodix_request_firmware:1155] Request firmware image [goodix_gt9886_fw_f2.bin]\n[    1.609381] [GTP-INF][goodix_request_firmware:1160] Firmware image [goodix_gt9886_fw_f2.bin] is ready\n[    1.609384] [GTP-INF][goodix_ts_esd_off:1563] Esd off\n[    1.609595] [GTP-INF][goodix_parse_firmware:247] Firmware package protocol: V2\n[    1.609597] [GTP-INF][goodix_parse_firmware:248] Fimware PID:GT9886\n[    1.609600] [GTP-INF][goodix_parse_firmware:250] Fimware VID:030102\n[    1.609601] [GTP-INF][goodix_parse_firmware:251] Firmware chip type:93\n[    1.609603] [GTP-INF][goodix_parse_firmware:252] Firmware size:88314\n[    1.609605] [GTP-INF][goodix_parse_firmware:253] Firmware subsystem num:11\n[    1.613993] [GTP-INF][goodix_read_version:838] sensor_id_mask:0x0f, sensor_id:0x01\n[    1.613998] [GTP-INF][goodix_read_version:848] PID:9886,SensorID:1, VID:03 01 02 0d 00 00 00 00\n[    1.614155] cs35l41 2-0040: bitoffset= 16, word_offset=2, bit_sum mod 32=8\n[    1.614181] [GTP-INF][goodix_check_update:308] Firmware needs to be updated\n[    1.614780] cs35l41 2-0040: bitoffset= 20, word_offset=2, bit_sum mod 32=12\n[    1.615389] cs35l41 2-0040: bitoffset= 21, word_offset=2, bit_sum mod 32=13\n[    1.615725] cs35l41 2-0040: bitoffset= 27, word_offset=2, bit_sum mod 32=19\n[    1.616334] cs35l41 2-0040: bitoffset= 31, word_offset=2, bit_sum mod 32=23\n[    1.616944] cs35l41 2-0040: bitoffset= 3, word_offset=3, bit_sum mod 32=27\n[    1.617281] cs35l41 2-0040: bitoffset= 7, word_offset=3, bit_sum mod 32=31\n[    1.617618] cs35l41 2-0040: bitoffset= 9, word_offset=3, bit_sum mod 32=1\n[    1.617954] cs35l41 2-0040: bitoffset= 16, word_offset=3, bit_sum mod 32=8\n[    1.618290] cs35l41 2-0040: bitoffset= 23, word_offset=3, bit_sum mod 32=15\n[    1.618626] cs35l41 2-0040: bitoffset= 31, word_offset=3, bit_sum mod 32=23\n[    1.618962] cs35l41 2-0040: bitoffset= 7, word_offset=4, bit_sum mod 32=31\n[    1.619571] cs35l41 2-0040: bitoffset= 14, word_offset=4, bit_sum mod 32=6\n[    1.620093] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.620098] thermal thermal_zone5: failed to read out thermal zone (-61)\n[    1.620182] cs35l41 2-0040: bitoffset= 21, word_offset=4, bit_sum mod 32=13\n[    1.620793] cs35l41 2-0040: bitoffset= 29, word_offset=4, bit_sum mod 32=21\n[    1.621402] cs35l41 2-0040: bitoffset= 5, word_offset=5, bit_sum mod 32=29\n[    1.621738] cs35l41 2-0040: bitoffset= 12, word_offset=5, bit_sum mod 32=4\n[    1.622074] cs35l41 2-0040: bitoffset= 19, word_offset=5, bit_sum mod 32=11\n[    1.622410] cs35l41 2-0040: bitoffset= 27, word_offset=5, bit_sum mod 32=19\n[    1.622746] cs35l41 2-0040: bitoffset= 3, word_offset=6, bit_sum mod 32=27\n[    1.623082] cs35l41 2-0040: bitoffset= 10, word_offset=6, bit_sum mod 32=2\n[    1.623417] cs35l41 2-0040: bitoffset= 17, word_offset=6, bit_sum mod 32=9\n[    1.623753] cs35l41 2-0040: bitoffset= 25, word_offset=6, bit_sum mod 32=17\n[    1.624089] cs35l41 2-0040: bitoffset= 1, word_offset=7, bit_sum mod 32=25\n[    1.624698] cs35l41 2-0040: bitoffset= 9, word_offset=7, bit_sum mod 32=1\n[    1.625033] cs35l41 2-0040: bitoffset= 16, word_offset=7, bit_sum mod 32=8\n[    1.625642] cs35l41 2-0040: bitoffset= 24, word_offset=7, bit_sum mod 32=16\n[    1.626249] cs35l41 2-0040: bitoffset= 2, word_offset=8, bit_sum mod 32=26\n[    1.626637] [GTP-INF][goodix_update_prepare:601] normandy firmware update, reset\n[    1.626888] cs35l41 2-0040: bitoffset= 14, word_offset=8, bit_sum mod 32=6\n[    1.627221] cs35l41 2-0040: bitoffset= 15, word_offset=8, bit_sum mod 32=7\n[    1.627822] cs35l41 2-0040: bitoffset= 21, word_offset=8, bit_sum mod 32=13\n[    1.628424] cs35l41 2-0040: bitoffset= 22, word_offset=8, bit_sum mod 32=14\n[    1.628757] cs35l41 2-0040: bitoffset= 28, word_offset=8, bit_sum mod 32=20\n[    1.629094] cs35l41 2-0040: bitoffset= 29, word_offset=8, bit_sum mod 32=21\n[    1.629703] cs35l41 2-0040: bitoffset= 6, word_offset=9, bit_sum mod 32=30\n[    1.630328] cs35l41 2-0040: bitoffset= 11, word_offset=9, bit_sum mod 32=3\n[    1.630936] cs35l41 2-0040: bitoffset= 20, word_offset=9, bit_sum mod 32=12\n[    1.631545] cs35l41 2-0040: bitoffset= 28, word_offset=9, bit_sum mod 32=20\n[    1.632154] cs35l41 2-0040: bitoffset= 4, word_offset=10, bit_sum mod 32=28\n[    1.632763] cs35l41 2-0040: bitoffset= 12, word_offset=10, bit_sum mod 32=4\n[    1.633372] cs35l41 2-0040: bitoffset= 20, word_offset=10, bit_sum mod 32=12\n[    1.633981] cs35l41 2-0040: bitoffset= 23, word_offset=10, bit_sum mod 32=15\n[    1.634591] cs35l41 2-0040: bitoffset= 28, word_offset=10, bit_sum mod 32=20\n[    1.635200] cs35l41 2-0040: bitoffset= 1, word_offset=11, bit_sum mod 32=25\n[    1.635809] cs35l41 2-0040: bitoffset= 6, word_offset=11, bit_sum mod 32=30\n[    1.636417] cs35l41 2-0040: bitoffset= 11, word_offset=11, bit_sum mod 32=3\n[    1.637026] cs35l41 2-0040: bitoffset= 16, word_offset=11, bit_sum mod 32=8\n[    1.637635] cs35l41 2-0040: bitoffset= 21, word_offset=11, bit_sum mod 32=13\n[    1.638244] cs35l41 2-0040: bitoffset= 26, word_offset=11, bit_sum mod 32=18\n[    1.638853] cs35l41 2-0040: bitoffset= 31, word_offset=11, bit_sum mod 32=23\n[    1.639462] cs35l41 2-0040: bitoffset= 4, word_offset=12, bit_sum mod 32=28\n[    1.640090] cs35l41 2-0040: bitoffset= 9, word_offset=12, bit_sum mod 32=1\n[    1.640713] cs35l41 2-0040: bitoffset= 14, word_offset=12, bit_sum mod 32=6\n[    1.641351] cs35l41 2-0040: bitoffset= 19, word_offset=12, bit_sum mod 32=11\n[    1.641403] [GTP-INF][goodix_load_isp:481] Loading ISP start\n[    1.641968] cs35l41 2-0040: bitoffset= 24, word_offset=12, bit_sum mod 32=16\n[    1.642577] cs35l41 2-0040: bitoffset= 29, word_offset=12, bit_sum mod 32=21\n[    1.643186] cs35l41 2-0040: bitoffset= 2, word_offset=13, bit_sum mod 32=26\n[    1.643795] cs35l41 2-0040: bitoffset= 7, word_offset=13, bit_sum mod 32=31\n[    1.644404] cs35l41 2-0040: bitoffset= 12, word_offset=13, bit_sum mod 32=4\n[    1.645013] cs35l41 2-0040: bitoffset= 17, word_offset=13, bit_sum mod 32=9\n[    1.645621] cs35l41 2-0040: bitoffset= 22, word_offset=13, bit_sum mod 32=14\n[    1.646230] cs35l41 2-0040: bitoffset= 27, word_offset=13, bit_sum mod 32=19\n[    1.646839] cs35l41 2-0040: bitoffset= 0, word_offset=14, bit_sum mod 32=24\n[    1.647175] cs35l41 2-0040: bitoffset= 10, word_offset=14, bit_sum mod 32=2\n[    1.647785] cs35l41 2-0040: bitoffset= 20, word_offset=14, bit_sum mod 32=12\n[    1.648394] cs35l41 2-0040: bitoffset= 30, word_offset=14, bit_sum mod 32=22\n[    1.648730] cs35l41 2-0040: bitoffset= 8, word_offset=15, bit_sum mod 32=0\n[    1.649338] cs35l41 2-0040: bitoffset= 18, word_offset=15, bit_sum mod 32=10\n[    1.649947] cs35l41 2-0040: bitoffset= 28, word_offset=15, bit_sum mod 32=20\n[    1.650557] cs35l41 2-0040: bitoffset= 6, word_offset=16, bit_sum mod 32=30\n[    1.650892] cs35l41 2-0040: bitoffset= 16, word_offset=16, bit_sum mod 32=8\n[    1.651501] cs35l41 2-0040: bitoffset= 26, word_offset=16, bit_sum mod 32=18\n[    1.652110] cs35l41 2-0040: bitoffset= 4, word_offset=17, bit_sum mod 32=28\n[    1.652719] cs35l41 2-0040: bitoffset= 14, word_offset=17, bit_sum mod 32=6\n[    1.653327] cs35l41 2-0040: bitoffset= 24, word_offset=17, bit_sum mod 32=16\n[    1.653936] cs35l41 2-0040: bitoffset= 2, word_offset=18, bit_sum mod 32=26\n[    1.654545] cs35l41 2-0040: bitoffset= 12, word_offset=18, bit_sum mod 32=4\n[    1.655156] cs35l41 2-0040: bitoffset= 22, word_offset=18, bit_sum mod 32=14\n[    1.655492] cs35l41 2-0040: bitoffset= 0, word_offset=19, bit_sum mod 32=24\n[    1.656101] cs35l41 2-0040: bitoffset= 10, word_offset=19, bit_sum mod 32=2\n[    1.656710] cs35l41 2-0040: bitoffset= 20, word_offset=19, bit_sum mod 32=12\n[    1.657319] cs35l41 2-0040: bitoffset= 30, word_offset=19, bit_sum mod 32=22\n[    1.657928] cs35l41 2-0040: bitoffset= 8, word_offset=20, bit_sum mod 32=0\n[    1.658536] cs35l41 2-0040: bitoffset= 18, word_offset=20, bit_sum mod 32=10\n[    1.658872] cs35l41 2-0040: bitoffset= 28, word_offset=20, bit_sum mod 32=20\n[    1.659481] cs35l41 2-0040: bitoffset= 1, word_offset=21, bit_sum mod 32=25\n[    1.660092] cs35l41 2-0040: bitoffset= 6, word_offset=21, bit_sum mod 32=30\n[    1.660702] cs35l41 2-0040: bitoffset= 10, word_offset=21, bit_sum mod 32=2\n[    1.661038] cs35l41 2-0040: bitoffset= 14, word_offset=21, bit_sum mod 32=6\n[    1.661647] cs35l41 2-0040: bitoffset= 15, word_offset=21, bit_sum mod 32=7\n[    1.662257] cs35l41 2-0040: bitoffset= 22, word_offset=21, bit_sum mod 32=14\n[    1.662593] cs35l41 2-0040: bitoffset= 31, word_offset=21, bit_sum mod 32=23\n[    1.662929] cs35l41 2-0040: bitoffset= 0, word_offset=22, bit_sum mod 32=24\n[    1.663264] cs35l41 2-0040: bitoffset= 7, word_offset=22, bit_sum mod 32=31\n[    1.663268] cs35l41 2-0040: bitoffset= 8, word_offset=22, bit_sum mod 32=0\n[    1.663547] cs35l41 2-0040: bitoffset= 16, word_offset=22, bit_sum mod 32=8\n[    1.663826] cs35l41 2-0040: bitoffset= 24, word_offset=22, bit_sum mod 32=16\n[    1.664104] cs35l41 2-0040: bitoffset= 0, word_offset=23, bit_sum mod 32=24\n[    1.664383] cs35l41 2-0040: bitoffset= 8, word_offset=23, bit_sum mod 32=0\n[    1.664662] cs35l41 2-0040: bitoffset= 0, word_offset=24, bit_sum mod 32=24\n[    1.666322] cs35l41 2-0040: Cirrus Logic CS35L41 (35a40), Revision: B0\n[    1.667035] msm-cdc-pinctrl soc:cdc_pdm_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/cdc_pdm_clk_active, deferring probe\n[    1.667048] msm-cdc-pinctrl soc:cdc_comp_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/cdc_pdm_rx0_comp_active, deferring probe\n[    1.667060] msm-cdc-pinctrl soc:cdc_dmic_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic12_gpios_active, deferring probe\n[    1.669218] spk-id soc:spk-id-pin@116: spk_id_probe: device soc:spk-id-pin@116\n[    1.669302] spk-id soc:spk-id-pin@116: spk_id_probe: Failed to request gpio 116\n[    1.669314] spk-id: probe of soc:spk-id-pin@116 failed with error -16\n[    1.681892] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx group_id: 0x9100\n[    1.682116] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0 dev_id: 0x9000\n[    1.682125] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.682152] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx group_id: 0x9101\n[    1.682332] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0 dev_id: 0x9001\n[    1.682339] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.682363] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx group_id: 0x9110\n[    1.682532] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0 dev_id: 0x9010\n[    1.682539] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.682564] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx group_id: 0x9111\n[    1.682733] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0 dev_id: 0x9011\n[    1.682740] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.682765] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx group_id: 0x9120\n[    1.682945] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0 dev_id: 0x9020\n[    1.682953] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.682976] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx group_id: 0x9121\n[    1.683143] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0 dev_id: 0x9021\n[    1.683151] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.683176] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx group_id: 0x9130\n[    1.683349] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0 dev_id: 0x9030\n[    1.683356] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.683385] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx group_id: 0x9131\n[    1.683553] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0 dev_id: 0x9031\n[    1.683561] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.683585] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx group_id: 0x9140\n[    1.683756] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0 dev_id: 0x9040\n[    1.683764] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.683787] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx group_id: 0x9141\n[    1.683957] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0 dev_id: 0x9041\n[    1.683964] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.689343] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.689997] sdm660-asoc-snd soc:sound: msm_init_wsa_dev: Max WSA devices is 0 for this target?\n[    1.690220] sdm660-asoc-snd soc:sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    1.693677] CHRDEV \"avtimer\" major number 225 goes below the dynamic allocation range\n[    1.693895] CHRDEV \"elliptic\" major number 224 goes below the dynamic allocation range\n[    1.694052] CHRDEV \"elliptic_us_io\" major number 223 goes below the dynamic allocation range\n[    1.694114] CHRDEV \"elliptic_us_ctrl_io\" major number 222 goes below the dynamic allocation range\n[    1.694176] [CSPL] Initializing misc device\n[    1.696043] apr_probe: Unable to create ipc log context\n[    1.696050] audio_notifer_reg_service: service SSR_MODEM is in use\n[    1.696761] CHRDEV \"wcd-dsp-glink\" major number 221 goes below the dynamic allocation range\n[    1.696847] wcd-dsp-glink soc:qcom,wcd-dsp-glink: wdsp_glink_probe: qcom,msm-codec-glink-edge not set use default wdsp\n[    1.698174] GACT probability NOT on\n[    1.698189] Mirror/redirect action on\n[    1.698198] u32 classifier\n[    1.698198]     Actions configured\n[    1.698205] Netfilter messages via NETLINK v0.30.\n[    1.698390] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)\n[    1.698497] ctnetlink v0.93: registering with nfnetlink.\n[    1.698798] xt_time: kernel timezone is -0000\n[    1.698841] wireguard: WireGuard 1.0.20201221 loaded. See www.wireguard.com for information.\n[    1.698842] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    1.698918] gre: GRE over IPv4 demultiplexor driver\n[    1.698920] IPv4 over IPsec tunneling driver\n[    1.699236] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    1.699385] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    1.699411] Initializing XFRM netlink socket\n[    1.699424] IPsec XFRM device driver\n[    1.699582] NET: Registered protocol family 10\n[    1.701469] mip6: Mobile IPv6\n[    1.701480] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    1.701826] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    1.702273] NET: Registered protocol family 17\n[    1.702284] NET: Registered protocol family 15\n[    1.702301] Ebtables v2.0 registered\n[    1.702400] l2tp_core: L2TP core driver, V2.0\n[    1.702409] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    1.702410] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    1.702420] l2tp_netlink: L2TP netlink interface\n[    1.702439] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    1.702441] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    1.702511] sctp: Hash tables configured (bind 256/256)\n[    1.703785] NET: Registered protocol family 27\n[    1.703802] IPC_RTR: ipc_router_create_log_ctx: Unable to create IPC logging for [local_IPCRTR]\n[    1.712954] minidump-id not found for adsp\n[    1.713176] subsys-pil-tz 62400000.qcom,lpass: for adsp segments only will be dumped.\n[    1.714728] minidump-id not found for cdsp\n[    1.714845] subsys-pil-tz 8300000.qcom,turing: for cdsp segments only will be dumped.\n[    1.715389] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    1.715409] minidump-id not found for modem\n[    1.715540] platform 4080000.qcom,mss:qcom,mba-mem@0: assigned reserved memory node pil_mba_region@0x93c00000\n[    1.716295] msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    1.719121] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    1.719126] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    1.719128] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    1.719131] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    1.719133] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    1.719136] sps:BAM 0x000000000a704000 is registered.\n[    1.719430] msm-dwc3 a600000.ssusb: unable to get ssphy device\n[    1.719599] ipa_rm ipa_rm_delete_resource:155 resource does not exist\n[    1.719601] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    1.719606] ipa_rm ipa_rm_delete_resource:155 resource does not exist\n[    1.719608] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    1.720116] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.720121] thermal thermal_zone5: failed to read out thermal zone (-61)\n[    1.731625] FG: fg_gen3_probe: battery SOC:50 voltage: 4130116uV temp: 290\n[    1.732788] qcom,fg-gen3 c440000.qcom,spmi:qcom,pm660@0:qpnp,fg: thermal_zone_of_sensor_register() failed rc:-19\n[    1.733138] BQ2591X bq2591x_charger_probe: charger device bq25910 detected, revision:2\n[    1.736114] BQ2591X bq2591x_charger_probe: BQ2591X PARALLEL charger driver probe successfully\n[    1.736334] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.736531] msm_sdw_codec 62ec1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.738125] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.738776] sdm660-asoc-snd soc:sound: msm_init_wsa_dev: Max WSA devices is 0 for this target?\n[    1.738976] sdm660-asoc-snd soc:sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    1.739275] ipa ipa3_smp2p_probe:6775 failed to enable irq wake\n[    1.740600] FG: fg_psy_get_property: unsupported property 4\n[    1.743100] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.743968] [GTP-INF][gtp_power_supply_work:2183] Power_supply_event:0\n[    1.744540] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    1.744543] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    1.744545] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    1.744548] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    1.744550] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    1.744552] sps:BAM 0x000000000a704000 is registered.\n[    1.744905] register_client_adhoc:find path.src 61 dest 512\n[    1.745252] register_client_adhoc:find path.src 61 dest 676\n[    1.745421] register_client_adhoc:find path.src 1 dest 583\n[    1.745612] register_client_adhoc:Client handle 43 usb0\n[    1.745878] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.746068] msm_sdw_codec 62ec1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.746681] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.747333] sdm660-asoc-snd soc:sound: msm_init_wsa_dev: Max WSA devices is 0 for this target?\n[    1.747527] sdm660-asoc-snd soc:sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    1.748322] Registered cp15_barrier emulation handler\n[    1.748349] Registered setend emulation handler\n[    1.748369] core_ctl: Creating CPU group 0\n[    1.748371] core_ctl: Init CPU0 state\n[    1.748373] core_ctl: Init CPU1 state\n[    1.748374] core_ctl: Init CPU2 state\n[    1.748376] core_ctl: Init CPU3 state\n[    1.748377] core_ctl: Init CPU4 state\n[    1.748379] core_ctl: Init CPU5 state\n[    1.749463] registered taskstats version 1\n[    1.749467] Loading compiled-in X.509 certificates\n[    1.750852] FG: fg_psy_get_property: unsupported property 4\n[    1.751750] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode\n[    1.752684] msm-dwc3 a600000.ssusb: DWC3 in low power mode\n[    1.758422] Loaded X.509 cert 'Build time autogenerated kernel key: 51edefb7cf875c7f32794b1bc912f495814852a2'\n[    1.768539] [GTP-INF][goodix_load_isp:573] ISP working OK\n[    1.768542] [GTP-INF][goodix_flash_firmware:943] --- Start to flash subsystem[1] ---\n[    1.768547] [GTP-INF][goodix_flash_subsystem:886] Flash firmware to 00004000,size:4096 bytes\n[    1.826802] spss_utils [spss_init]: spss-utils driver Ver 2.0 30-Mar-2017.\n[    1.828968] ADSPRPC: Secure VMID = 22\n[    1.828971] ADSPRPC: Secure VMID = 37\n[    1.829110] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 33\n[    1.829833] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 34\n[    1.830403] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 35\n[    1.830837] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 36\n[    1.831227] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 37\n[    1.831649] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 38\n[    1.832091] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7 to group 39\n[    1.833216] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8 to group 40\n[    1.834073] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 41\n[    1.834634] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 42\n[    1.835024] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 43\n[    1.835408] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 44\n[    1.836781] CHRDEV \"adsprpc-smd\" major number 220 goes below the dynamic allocation range\n[    1.837985] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.838150] msm_sdw_codec 62ec1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.838749] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.839402] sdm660-asoc-snd soc:sound: msm_init_wsa_dev: Max WSA devices is 0 for this target?\n[    1.839590] sdm660-asoc-snd soc:sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    1.840165] ngd_msm_ctrl 62e40000.slim: error creating ipc_logging context\n[    1.840356] iommu: Adding device 62e40000.slim:qcom,iommu_slim_ctrl_cb to group 45\n[    1.840931] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.841109] msm_sdw_codec 62ec1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.841675] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.842313] sdm660-asoc-snd soc:sound: msm_init_wsa_dev: Max WSA devices is 0 for this target?\n[    1.842444] sdm660-asoc-snd soc:sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    1.844858] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.845009] msm_sdw_codec 62ec1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.845566] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.846188] sdm660-asoc-snd soc:sound: msm_init_wsa_dev: Max WSA devices is 0 for this target?\n[    1.846307] sdm660-asoc-snd soc:sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    1.847319] sdm670-pinctrl 3400000.pinctrl: function 'normal' not supported\n[    1.847323] sdm670-pinctrl 3400000.pinctrl: invalid function normal in map table\n[    1.847334] sdm670-pinctrl 3400000.pinctrl: function 'normal' not supported\n[    1.847337] sdm670-pinctrl 3400000.pinctrl: invalid function normal in map table\n[    1.847351] sdm670-pinctrl 3400000.pinctrl: function 'normal' not supported\n[    1.847354] sdm670-pinctrl 3400000.pinctrl: invalid function normal in map table\n[    1.847368] sdm670-pinctrl 3400000.pinctrl: pin_config_group_set op failed for group 91\n[    1.847371] gpio-keys soc:gpio_keys: Error applying setting, reverse things back\n[    1.847727] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    1.848214] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: setting system clock to 1970-03-04 19:41:38 UTC (5427698)\n[    1.848446] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.848604] msm_sdw_codec 62ec1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.849168] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.849803] sdm660-asoc-snd soc:sound: msm_init_wsa_dev: Max WSA devices is 0 for this target?\n[    1.849938] sdm660-asoc-snd soc:sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    1.851862] CAM_ERR: CAM-CRM: cam_cci_assign_fops: 412 Invalid args sd node: ffffffe4ac946c80\n[    1.852608] lpm_levels_of: idx 1 1074\n[    1.852610] lpm_levels_of: idx 2 1773\n[    1.852612] lpm_levels_of: idx 3 2589\n[    1.852613] lpm_levels_of: idx 2 3285\n[    1.852615] lpm_levels_of: idx 3 3748\n[    1.852616] lpm_levels_of: idx 3 4000\n[    1.852669] lpm_levels_of: idx 1 1293\n[    1.852670] lpm_levels_of: idx 2 2206\n[    1.852672] lpm_levels_of: idx 3 2896\n[    1.852674] lpm_levels_of: idx 2 4581\n[    1.852675] lpm_levels_of: idx 3 5051\n[    1.852677] lpm_levels_of: idx 3 5554\n[    1.852862] lpm_levels: register_cluster_lpm_stats()\n[    1.852970] lpm_levels: register_cluster_lpm_stats()\n[    1.855934] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.856132] msm_sdw_codec 62ec1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.856691] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.857410] sdm660-asoc-snd soc:sound: msm_init_wsa_dev: Max WSA devices is 0 for this target?\n[    1.857601] sdm660-asoc-snd soc:sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    1.860435] rmnet_ipa3 started initialization\n[    1.860816] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.861004] msm_sdw_codec 62ec1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.861598] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.862252] sdm660-asoc-snd soc:sound: msm_init_wsa_dev: Max WSA devices is 0 for this target?\n[    1.862433] sdm660-asoc-snd soc:sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    1.863142] RNDIS_IPA module is loaded.\n[    1.864131] msm_bus_late_init: Remove handoff bw requests\n[    1.865426] camera_viodd_ldo: disabling\n[    1.865435] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    1.865622] ALSA device list:\n[    1.865626]   No soundcards found.\n[    1.865671] Warning: unable to open an initial console.\n[    1.866407] Freeing unused kernel memory: 4096K\n[    1.874196] [GTP-ERR][goodix_set_i2c_doze_mode:557] doze mode disable FAILED\n[    1.874201] [GTP-ERR][goodix_i2c_write:586] disable doze mode failed, retry\n[    1.877297] [GTP-INF][gtp_power_supply_work:2195] USB is not exist\n[    1.877352] FG: fg_psy_get_property: unsupported property 4\n[    2.120900] of_batterydata_get_best_profile: f2_scud found\n[    2.346591] [GTP-INF][goodix_send_fw_packet:826] Flash subsystem ok\n[    2.346598] [GTP-INF][goodix_flash_subsystem:886] Flash firmware to 00005000,size:4096 bytes\n[    2.480425] FG: fg_psy_get_property: unsupported property 4\n[    2.669833] [GTP-INF][goodix_send_fw_packet:826] Flash subsystem ok\n[    2.669841] [GTP-INF][goodix_flash_firmware:947] --- End flash subsystem[1]: OK ---\n[    2.669844] [GTP-INF][goodix_flash_firmware:943] --- Start to flash subsystem[2] ---\n[    2.669851] [GTP-INF][goodix_flash_subsystem:886] Flash firmware to 00006000,size:4096 bytes\n[    2.937586] [GTP-INF][goodix_send_fw_packet:826] Flash subsystem ok\n[    2.937593] [GTP-INF][goodix_flash_subsystem:886] Flash firmware to 00007000,size:4096 bytes\n[    3.003807] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    3.004023] cpu1 \n[    3.004089] cpu6 \n[    3.004141] \n               Offline CPUs: \n[    3.007680] cpu1 \n[    3.012560] cpu2 \n[    3.016887] cpu3 \n[    3.021333] cpu4 \n[    3.026402] cpu5 \n[    3.029731] cpu6 \n[    3.031775] cpu7 \n\n[    3.336424] [GTP-INF][goodix_send_fw_packet:826] Flash subsystem ok\n[    3.336443] [GTP-INF][goodix_flash_firmware:947] --- End flash subsystem[2]: OK ---\n[    3.336455] [GTP-INF][goodix_flash_firmware:943] --- Start to flash subsystem[3] ---\n[    3.336477] [GTP-INF][goodix_flash_subsystem:886] Flash firmware to 00008000,size:4096 bytes\n[    3.716322] [GTP-INF][goodix_send_fw_packet:826] Flash subsystem ok\n[    3.716342] [GTP-INF][goodix_flash_subsystem:886] Flash firmware to 00009000,size:4096 bytes\n[    4.156313] [GTP-INF][goodix_send_fw_packet:826] Flash subsystem ok\n[    4.156332] [GTP-INF][goodix_flash_firmware:947] --- End flash subsystem[3]: OK ---\n[    4.156344] [GTP-INF][goodix_flash_firmware:943] --- Start to flash subsystem[4] ---\n[    4.156366] [GTP-INF][goodix_flash_subsystem:886] Flash firmware to 0000a000,size:4096 bytes\n[    4.160542] of_batterydata_get_best_profile: f2_scud found\n[    4.160575] QCOM-STEPCHG: read_range_data_from_node: Count qcom,step-chg-ranges failed, rc=-22\n[    4.576277] [GTP-INF][goodix_send_fw_packet:826] Flash subsystem ok\n[    4.576297] [GTP-INF][goodix_flash_subsystem:886] Flash firmware to 0000b000,size:4096 bytes\n[    4.946426] [GTP-INF][goodix_send_fw_packet:826] Flash subsystem ok\n[    4.946445] [GTP-INF][goodix_flash_firmware:947] --- End flash subsystem[4]: OK ---\n[    4.946456] [GTP-INF][goodix_flash_firmware:943] --- Start to flash subsystem[5] ---\n[    4.946479] [GTP-INF][goodix_flash_subsystem:886] Flash firmware to 0000c000,size:4096 bytes\n[    5.326424] [GTP-INF][goodix_send_fw_packet:826] Flash subsystem ok\n[    5.326442] [GTP-INF][goodix_flash_subsystem:886] Flash firmware to 0000d000,size:4096 bytes\n[    5.706420] [GTP-INF][goodix_send_fw_packet:826] Flash subsystem ok\n[    5.706438] [GTP-INF][goodix_flash_firmware:947] --- End flash subsystem[5]: OK ---\n[    5.706449] [GTP-INF][goodix_flash_firmware:943] --- Start to flash subsystem[6] ---\n[    5.706470] [GTP-INF][goodix_flash_subsystem:886] Flash firmware to 00010000,size:4096 bytes\n[    6.146483] [GTP-INF][goodix_send_fw_packet:826] Flash subsystem ok\n[    6.146503] [GTP-INF][goodix_flash_subsystem:886] Flash firmware to 00011000,size:4096 bytes\n[    6.586567] [GTP-INF][goodix_send_fw_packet:826] Flash subsystem ok\n[    6.586584] [GTP-INF][goodix_flash_firmware:947] --- End flash subsystem[6]: OK ---\n[    6.586595] [GTP-INF][goodix_flash_firmware:943] --- Start to flash subsystem[7] ---\n[    6.586618] [GTP-INF][goodix_flash_subsystem:886] Flash firmware to 00012000,size:4096 bytes\n[    7.026420] [GTP-INF][goodix_send_fw_packet:826] Flash subsystem ok\n[    7.026440] [GTP-INF][goodix_flash_subsystem:886] Flash firmware to 00013000,size:4096 bytes\n[    7.456322] [GTP-INF][goodix_send_fw_packet:826] Flash subsystem ok\n[    7.456341] [GTP-INF][goodix_flash_firmware:947] --- End flash subsystem[7]: OK ---\n[    7.456352] [GTP-INF][goodix_flash_firmware:943] --- Start to flash subsystem[8] ---\n[    7.456374] [GTP-INF][goodix_flash_subsystem:886] Flash firmware to 00014000,size:4096 bytes\n[    7.826411] [GTP-INF][goodix_send_fw_packet:826] Flash subsystem ok\n[    7.826430] [GTP-INF][goodix_flash_subsystem:886] Flash firmware to 00015000,size:4096 bytes\n[    8.042620] Sampling power every 1000 ms\n               Baseline power usage: \n[    8.266413] [GTP-INF][goodix_send_fw_packet:826] Flash subsystem ok\n[    8.266431] [GTP-INF][goodix_flash_firmware:947] --- End flash subsystem[8]: OK ---\n[    8.266443] [GTP-INF][goodix_flash_firmware:943] --- Start to flash subsystem[9] ---\n[    8.266466] [GTP-INF][goodix_flash_subsystem:886] Flash firmware to 00016000,size:4096 bytes\n[    8.646422] [GTP-INF][goodix_send_fw_packet:826] Flash subsystem ok\n[    8.646440] [GTP-INF][goodix_flash_firmware:947] --- End flash subsystem[9]: OK ---\n[    8.646451] [GTP-INF][goodix_flash_firmware:943] --- Start to flash subsystem[10] ---\n[    8.646473] [GTP-INF][goodix_flash_subsystem:886] Flash firmware to 00000000,size:4096 bytes\n[    9.026410] [GTP-INF][goodix_send_fw_packet:826] Flash subsystem ok\n[    9.026430] [GTP-INF][goodix_flash_subsystem:886] Flash firmware to 00001000,size:4096 bytes\n[    9.466406] [GTP-INF][goodix_send_fw_packet:826] Flash subsystem ok\n[    9.466425] [GTP-INF][goodix_flash_subsystem:886] Flash firmware to 00002000,size:4096 bytes\n[    9.906421] [GTP-INF][goodix_send_fw_packet:826] Flash subsystem ok\n[    9.906440] [GTP-INF][goodix_flash_subsystem:886] Flash firmware to 00003000,size:4096 bytes\n[   10.346423] [GTP-INF][goodix_send_fw_packet:826] Flash subsystem ok\n[   10.346441] [GTP-INF][goodix_flash_firmware:947] --- End flash subsystem[10]: OK ---\n[   10.347278] [GTP-INF][goodix_hw_reset:1522] HW reset\n[   10.347288] [GTP-INF][goodix_hw_reset:1525] normandy reset\n[   10.454268] [GTP-INF][goodix_fw_update_proc:1120] Firmware update successfully\n[   10.454293] [GTP-INF][goodix_ts_esd_on:1545] Esd on\n[   10.454304] [GTP-INF][goodix_hw_init:1461] goodix_hw_init\n[   10.458868] [GTP-INF][goodix_read_version:838] sensor_id_mask:0x0f, sensor_id:0x01\n[   10.458888] [GTP-INF][goodix_read_version:848] PID:9886,SensorID:1, VID:03 01 02 17 00 00 00 00\n[   10.458932] [GTP-INF][goodix_check_cfg_valid:1106] cfg bag_num:43, cfg length:774\n[   10.458955] [GTP-INF][goodix_check_cfg_valid:1139] configuration check SUCCESS\n[   10.458967] [GTP-INF][goodix_send_config:1169] ver:18h,size:774\n[   10.518157] [GTP-INF][goodix_send_large_config:1053] Send large cfg SUCCESS\n[   10.518190] [GTP-INF][goodix_unregister_ext_module:235] Moudle [goodix-fwu] unregistered\n[   83.222387] CPU1: Booted secondary processor [517f803c]\n[   84.234131] 576 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 576 748 998 1209 1324 1516 1612 1708\n               \n                300: \n[  305.120654] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120700] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.122070] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.122142] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.122151] ADSPRPC: Audio PD restart notifier locator down\n[  305.122191] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.122198] ADSPRPC: Audio PD restart notifier locator down\n[  317.105784]  1114     3.7 C/MHz     73 mW   16.4 J   15.2 I/mJ   224.5 s\n                576: \n[  442.485857]  2139     3.7 C/MHz     81 mW    9.4 J   26.5 I/mJ   116.9 s\n                748: \n[  540.799602]  2780     3.7 C/MHz     84 mW    7.5 J   33.2 I/mJ    89.9 s\n                998: \n[  617.042659]  3707     3.7 C/MHz    107 mW    7.2 J   34.6 I/mJ    67.4 s\n               1209: \n[  681.263662]  4491     3.7 C/MHz    110 mW    6.1 J   41.0 I/mJ    55.7 s\n               1324: \n[  740.472721]  4919     3.7 C/MHz    128 mW    6.5 J   38.5 I/mJ    50.8 s\n               1516: \n[  793.666605]  5632     3.7 C/MHz    131 mW    5.8 J   43.0 I/mJ    44.4 s\n               1612: \n[  818.951252] FG: fg_psy_get_property: unsupported property 4\n[  818.955181] FG: fg_psy_get_property: unsupported property 4\n[  843.852768]  5989     3.7 C/MHz    142 mW    5.9 J   42.2 I/mJ    41.8 s\n               1708: \n[  892.043662] CPU6: Booted secondary processor [516f802d]\n[  893.054114]  6345     3.7 C/MHz    162 mW    6.4 J   39.3 I/mJ    39.4 s\n               \n               \n               ===== CPU 6 =====\n               Frequencies: 300 652 825 979 1132 1363 1536 1747 1843 1996 2054 2169 2208 2304\n               \n                300: \n[ 1035.635608]  1862     6.2 C/MHz     82 mW   11.0 J   22.8 I/mJ   134.3 s\n                652: \n[ 1105.987881]  4059     6.2 C/MHz    123 mW    7.6 J   32.9 I/mJ    61.6 s\n                825: \n[ 1163.295971]  5131     6.2 C/MHz    170 mW    8.3 J   30.1 I/mJ    48.7 s\n                979: \n[ 1212.581334]  6085     6.2 C/MHz    180 mW    7.4 J   33.9 I/mJ    41.1 s\n               1132: \n[ 1256.855028]  7043     6.2 C/MHz    210 mW    7.5 J   33.5 I/mJ    35.5 s\n               1363: \n[ 1295.105544]  8488     6.2 C/MHz    267 mW    7.9 J   31.7 I/mJ    29.5 s\n               1536: \n[ 1330.345457]  9571     6.2 C/MHz    323 mW    8.4 J   29.6 I/mJ    26.1 s\n               1747: \n[ 1348.847332] FG: fg_psy_get_property: unsupported property 4\n[ 1348.855073] FG: fg_psy_get_property: unsupported property 4\n[ 1361.573778] 10889     6.2 C/MHz    394 mW    9.1 J   27.6 I/mJ    23.0 s\n               1843: \n[ 1391.798205] 11399     6.2 C/MHz    403 mW    8.9 J   28.2 I/mJ    21.9 s\n               1996: \n[ 1421.015700] 12387     6.2 C/MHz    472 mW    9.5 J   26.2 I/mJ    20.2 s\n               2054: \n[ 1449.230926] 12699     6.2 C/MHz    510 mW   10.0 J   24.9 I/mJ    19.7 s\n               2169: \n[ 1476.448572] 13523     6.2 C/MHz    614 mW   11.4 J   22.0 I/mJ    18.5 s\n               2208: \n[ 1503.661612] 13705     6.2 C/MHz    591 mW   10.8 J   23.2 I/mJ    18.3 s\n               2304: \n[ 1529.895431] 14357     6.2 C/MHz    692 mW   12.1 J   20.7 I/mJ    17.4 s\n               \n               \n               Benchmark finished!\n[ 1529.933147] \n               real\t25m27.903s\n               user\t20m49.023s\n               sys\t0m1.015s\n"
  },
  {
    "path": "results/sdm712/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  4:       7074   PDC-GIC  19 Level     arch_timer\n  6:     154170   PDC-GIC  38 Level     arch_mem_timer\n  7:          0   PDC-GIC 483 Edge      smp2p\n  8:          0   PDC-GIC 204 Edge      smp2p\n  9:          0   PDC-GIC 608 Edge      smp2p\n 11:          0   PDC-GIC 636 Level     i2c_geni\n 12:        498   PDC-GIC 640 Level     i2c_geni\n 13:          0   PDC-GIC 637 Level     spi_geni\n 15:       4145   PDC-GIC 386 Level     i2c_geni\n 16:        216   PDC-GIC 387 Level     i2c_geni\n 18:          0   PDC-GIC 206 Level     msm_vidc\n 19:          0   PDC-GIC 115 Edge      msm_drm\n 20:          0   PDC-GIC 304 Level     sps\n 21:          0   PDC-GIC 538 Level     tsens-upper-lower\n 22:          0   PDC-GIC 540 Level     tsens-critical\n 23:          0   PDC-GIC 539 Level     tsens-upper-lower\n 24:          0   PDC-GIC 541 Level     tsens-critical\n 25:          0   PDC-GIC 323 Level     ngd_slim_irq\n 27:          0   PDC-GIC  32 Edge      apps_wdog_bark\n 59:         11   PDC-GIC 421 Edge      qcom,qmp-aop\n 60:          0   PDC-GIC 481 Edge      qcom,glink-smem-native-xprt-modem\n 61:          0   PDC-GIC 202 Edge      qcom,glink-smem-native-xprt-adsp\n 62:          0   PDC-GIC 606 Edge      qcom,glink-smem-native-xprt-cdsp\n 64:          0   PDC-GIC 524 Level     eud_irq\n 66:       2881   PDC-GIC  37 Level     apps_rsc\n 67:          0   PDC-GIC 161 Level     display_rsc\n 69:          0  pmic_arb 8388615 Edge      qpnp_kpdpwr_status\n 70:          0  pmic_arb 8454151 Edge      qpnp_resin_status\n 72:          0  pmic_arb 8716295 Edge      qpnp_kpdpwr_resin_bark\n 73:          0  pmic_arb 37748761 Edge      pm660_tz\n 82:         21  pmic_arb 51380252 Edge      qpnp_vadc_interrupt\n 83:          0  pmic_arb 24117268 Edge      sig-tx\n 84:          0  pmic_arb 24182804 Edge      sig-rx\n 85:          0  pmic_arb 24248340 Edge      msg-tx\n 86:          0  pmic_arb 24313876 Edge      msg-rx\n 87:          0  pmic_arb 24379412 Edge      msg-tx-failed\n 88:          0  pmic_arb 24444948 Edge      msg-tx-discarded\n 89:          0  pmic_arb 24510484 Edge      msg-rx-discarded\n 90:          0  pmic_arb 54525982 Edge      qpnp_adc_tm_interrupt\n 91:          0  pmic_arb 69206054 Edge      bcl-high-ibat\n 93:          0  pmic_arb 69337126 Edge      bcl-low-vbat\n 96:          0  pmic_arb 469762164 Edge      haptics_sc_irq\n 97:          0  pmic_arb 469827700 Edge      haptics_play_irq\n 98:          0  pmic_arb 574619778 Edge      pm660l_tz\n104:          0  pmic_arb 744489106 Edge      volume_up\n107:          0  pmic_arb 1026556093 Edge      qpnp_flash_led_fault_irq\n108:          0  pmic_arb 1026752701 Edge      qpnp_flash_led_all_ramp_down_done_irq\n109:          0  pmic_arb 1026818237 Edge      qpnp_flash_led_all_ramp_up_done_irq\n110:          0  pmic_arb 1031864510 Edge      qpnp_wled_ovp_irq\n125:        331   PDC-GIC 297 Edge      1d84000.ufshc\n126:          0   PDC-GIC 194 Edge      adsp\n129:          0   PDC-GIC 298 Edge      modem\n130:          0   PDC-GIC 610 Edge      cdsp\n158:          0  msmgpio-dc  10 Edge      TE_GPIO\n192:          0  msmgpio-dc  44 Level     nq-nci\n202:          0  msmgpio-dc  54 Edge      bq2591x charger irq\n226:          0  msmgpio-dc  78 Edge      esd_err_irq\n244:          0  msmgpio-dc  96 Level     cs35l41\n272:          0   msmgpio 124 Edge      hall_key\n273:         18  msmgpio-dc 125 Edge      goodix_ts\n374:          0   PDC-GIC 261 Level     arm-smmu global fault\n375:          0   PDC-GIC 263 Level     arm-smmu global fault\n376:          0   PDC-GIC 396 Level     arm-smmu-context-fault\n377:          0   PDC-GIC 397 Level     arm-smmu-context-fault\n378:          0   PDC-GIC 398 Level     arm-smmu-context-fault\n384:          0   PDC-GIC  97 Level     arm-smmu global fault\n387:          0   PDC-GIC 130 Level     arm-smmu-context-fault\n388:          0   PDC-GIC 131 Level     arm-smmu-context-fault\n389:          0   PDC-GIC 132 Level     arm-smmu-context-fault\n390:          0   PDC-GIC 133 Level     arm-smmu-context-fault\n391:          0   PDC-GIC 134 Level     arm-smmu-context-fault\n392:          0   PDC-GIC 135 Level     arm-smmu-context-fault\n393:          0   PDC-GIC 136 Level     arm-smmu-context-fault\n394:          0   PDC-GIC 137 Level     arm-smmu-context-fault\n395:          0   PDC-GIC 138 Level     arm-smmu-context-fault\n396:          0   PDC-GIC 139 Level     arm-smmu-context-fault\n397:          0   PDC-GIC 140 Level     arm-smmu-context-fault\n398:          0   PDC-GIC 141 Level     arm-smmu-context-fault\n399:          0   PDC-GIC 142 Level     arm-smmu-context-fault\n400:          0   PDC-GIC 143 Level     arm-smmu-context-fault\n401:          0   PDC-GIC 144 Level     arm-smmu-context-fault\n402:          0   PDC-GIC 145 Level     arm-smmu-context-fault\n403:          0   PDC-GIC 146 Level     arm-smmu-context-fault\n404:          0   PDC-GIC 147 Level     arm-smmu-context-fault\n405:          0   PDC-GIC 148 Level     arm-smmu-context-fault\n406:          0   PDC-GIC 149 Level     arm-smmu-context-fault\n407:          0   PDC-GIC 150 Level     arm-smmu-context-fault\n408:          0   PDC-GIC 213 Level     arm-smmu-context-fault\n409:          0   PDC-GIC 214 Level     arm-smmu-context-fault\n410:          0   PDC-GIC 215 Level     arm-smmu-context-fault\n411:          0   PDC-GIC 216 Level     arm-smmu-context-fault\n412:          0   PDC-GIC 217 Level     arm-smmu-context-fault\n413:          0   PDC-GIC 218 Level     arm-smmu-context-fault\n414:          0   PDC-GIC 219 Level     arm-smmu-context-fault\n415:          0   PDC-GIC 220 Level     arm-smmu-context-fault\n416:          0   PDC-GIC 221 Level     arm-smmu-context-fault\n417:          0   PDC-GIC 222 Level     arm-smmu-context-fault\n418:          0   PDC-GIC 223 Level     arm-smmu-context-fault\n419:          0   PDC-GIC 224 Level     arm-smmu-context-fault\n449:          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n450:          0   PDC-GIC 162 Edge      pwr_event_irq\n451:          0   PDC-GIC 518 Level     ss_phy_irq\n452:          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n453:          0   PDC-GIC 332 Level     kgsl-3d0\n454:          0   PDC-GIC 336 Level     HFI\n455:          0   PDC-GIC 337 Level     GMU\n456:          0   PDC-GIC 509 Edge      csiphy\n457:          0   PDC-GIC 510 Edge      csiphy\n458:          0   PDC-GIC 511 Edge      csiphy\n459:          0   PDC-GIC 492 Edge      cci\n460:          0   PDC-GIC 491 Edge      cpas_camnoc\n461:          1   PDC-GIC 493 Edge      cpas-cdm\n462:          0   PDC-GIC 496 Edge      csid\n463:          2   PDC-GIC 497 Edge      ife\n464:          0   PDC-GIC 498 Edge      csid\n465:          2   PDC-GIC 499 Edge      ife\n466:          0   PDC-GIC 500 Edge      csid-lite\n467:          2   PDC-GIC 501 Edge      ife-lite\n468:          0   PDC-GIC 495 Edge      a5\n469:          0   PDC-GIC 506 Edge      jpeg\n470:          0   PDC-GIC 507 Edge      jpegdma\n471:          2   PDC-GIC 494 Edge      fd\n472:          1   PDC-GIC 508 Edge      lrme\n474:          0   PDC-GIC  64 Level     limits_sensor-00\n475:          0   PDC-GIC  65 Level     limits_sensor-01\n604:          0       sde   4 Edge      dsi_ctrl\n605:          0  pmic_arb 101777466 Edge      qpnp_rtc_alarm\n606:          0       sde   2 Edge      sde_rotator_r3\n607:          0  pmic_arb 16777229 Edge      chg-error\n608:          0  pmic_arb 16842765 Edge      chg-state-change\n612:          0  pmic_arb 17825806 Edge      otg-fail\n613:          0  pmic_arb 17891342 Edge      otg-overcurrent\n614:          0  pmic_arb 17956878 Edge      otg-oc-dis-sw-sts\n615:          0  pmic_arb 18022414 Edge      testmode-change-detect\n616:          0  pmic_arb 18874383 Edge      bat-temp\n617:          0  pmic_arb 18939919 Edge      bat-ocp\n618:          0  pmic_arb 19005455 Edge      bat-ov\n619:          0  pmic_arb 19070991 Edge      bat-low\n620:          0  pmic_arb 19136527 Edge      bat-therm-or-id-missing\n621:          0  pmic_arb 19202063 Edge      bat-terminal-missing\n622:          0  pmic_arb 19922960 Edge      usbin-collapse\n623:          0  pmic_arb 19988496 Edge      usbin-lt-3p6v\n624:          0  pmic_arb 20054032 Edge      usbin-uv\n625:          0  pmic_arb 20119568 Edge      usbin-ov\n626:          0  pmic_arb 20185104 Edge      usbin-plugin\n627:          0  pmic_arb 20250640 Edge      usbin-src-change\n628:          0  pmic_arb 20316176 Edge      usbin-icl-change\n629:          0  pmic_arb 20381712 Edge      type-c-change\n630:          0  pmic_arb 20971537 Edge      dcin-collapse\n631:          0  pmic_arb 21037073 Edge      dcin-lt-3p6v\n632:          0  pmic_arb 21102609 Edge      dcin-uv\n633:          0  pmic_arb 21168145 Edge      dcin-ov\n634:          0  pmic_arb 21233681 Edge      dcin-plugin\n635:          0  pmic_arb 21299217 Edge      div2-en-dg\n636:          0  pmic_arb 21364753 Edge      dcin-icl-change\n638:          0  pmic_arb 23134227 Edge      wdog-bark\n639:          0  pmic_arb 23199763 Edge      aicl-fail\n640:          0  pmic_arb 23265299 Edge      aicl-done\n641:          0  pmic_arb 23330835 Edge      high-duty-cycle\n642:          0  pmic_arb 23396371 Edge      input-current-limiting\n643:          0  pmic_arb 23461907 Edge      temperature-change\n644:          0  pmic_arb 23527443 Edge      switcher-power-ok\n645:          0  smp2p_gpio   0 Edge      adsp\n646:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n647:          0  smp2p_gpio   2 Edge      adsp\n648:          0  smp2p_gpio   3 Edge      adsp\n677:          0  smp2p_gpio   0 Edge      ipa_smp2p_clk_vote\n709:          0  smp2p_gpio   0 Edge      modem\n710:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n711:          0  smp2p_gpio   2 Edge      modem\n712:          0  smp2p_gpio   3 Edge      modem\n741:          0  smp2p_gpio   0 Edge      cdsp\n742:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n743:          0  smp2p_gpio   2 Edge      cdsp\n744:          0  smp2p_gpio   3 Edge      cdsp\n901:          0   PDC-GIC 165 Edge      dwc3\n903:          1  pmic_arb 67108900 Edge      soc-update\n904:          0  pmic_arb 67174436 Edge      soc-ready\n905:          0  pmic_arb 67239972 Edge      bsoc-delta\n906:          2  pmic_arb 67305508 Edge      msoc-delta\n907:          0  pmic_arb 67371044 Edge      msoc-low\n908:          0  pmic_arb 67436580 Edge      msoc-empty\n909:          0  pmic_arb 67502116 Edge      msoc-high\n910:          0  pmic_arb 67567652 Edge      msoc-full\n911:          0  pmic_arb 68157477 Edge      vbatt-pred-delta\n912:          0  pmic_arb 68223013 Edge      vbatt-low\n913:          0  pmic_arb 68288549 Edge      esr-delta\n914:          0  pmic_arb 68354085 Edge      batt-missing\n915:          0  pmic_arb 68550693 Edge      batt-temp-delta\n916:        177  pmic_arb 71303208 Edge      ima-rdy\n917:          0  pmic_arb 71368744 Edge      mem-xcp\n918:          0  pmic_arb 71434280 Edge      dma-grant\nIPI0:       144       Rescheduling interrupts\nIPI1:        18       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       Timer broadcast interrupts\nIPI4:     75883       IRQ work interrupts\nIPI5:         0       CPU wake-up interrupts\nIPI6:         0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm712/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  4:        852          2          2          2          2          2          3          1   PDC-GIC  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   PDC-GIC  38 Level     arch_mem_timer\n  7:          0          0          0          0          0          0          0          0   PDC-GIC 483 Edge      smp2p\n  8:          0          0          0          0          0          0          0          0   PDC-GIC 204 Edge      smp2p\n  9:          0          0          0          0          0          0          0          0   PDC-GIC 608 Edge      smp2p\n 11:          0          0          0          0          0          0          0          0   PDC-GIC 636 Level     i2c_geni\n 12:        498          0          0          0          0          0          0          0   PDC-GIC 640 Level     i2c_geni\n 13:          0          0          0          0          0          0          0          0   PDC-GIC 637 Level     spi_geni\n 15:        341          0          0          0          0          0          0          0   PDC-GIC 386 Level     i2c_geni\n 16:        113          0          0          0          0          0          0          0   PDC-GIC 387 Level     i2c_geni\n 18:          0          0          0          0          0          0          0          0   PDC-GIC 206 Level     msm_vidc\n 19:          0          0          0          0          0          0          0          0   PDC-GIC 115 Edge      msm_drm\n 20:          0          0          0          0          0          0          0          0   PDC-GIC 304 Level     sps\n 21:          0          0          0          0          0          0          0          0   PDC-GIC 538 Level     tsens-upper-lower\n 22:          0          0          0          0          0          0          0          0   PDC-GIC 540 Level     tsens-critical\n 23:          0          0          0          0          0          0          0          0   PDC-GIC 539 Level     tsens-upper-lower\n 24:          0          0          0          0          0          0          0          0   PDC-GIC 541 Level     tsens-critical\n 25:          0          0          0          0          0          0          0          0   PDC-GIC 323 Level     ngd_slim_irq\n 27:          0          0          0          0          0          0          0          0   PDC-GIC  32 Edge      apps_wdog_bark\n 59:         11          0          0          0          0          0          0          0   PDC-GIC 421 Edge      qcom,qmp-aop\n 60:          0          0          0          0          0          0          0          0   PDC-GIC 481 Edge      qcom,glink-smem-native-xprt-modem\n 61:          0          0          0          0          0          0          0          0   PDC-GIC 202 Edge      qcom,glink-smem-native-xprt-adsp\n 62:          0          0          0          0          0          0          0          0   PDC-GIC 606 Edge      qcom,glink-smem-native-xprt-cdsp\n 64:          0          0          0          0          0          0          0          0   PDC-GIC 524 Level     eud_irq\n 66:        383          0          0          0          0          0          0          0   PDC-GIC  37 Level     apps_rsc\n 67:          0          0          0          0          0          0          0          0   PDC-GIC 161 Level     display_rsc\n 69:          0          0          0          0          0          0          0          0  pmic_arb 8388615 Edge      qpnp_kpdpwr_status\n 70:          0          0          0          0          0          0          0          0  pmic_arb 8454151 Edge      qpnp_resin_status\n 72:          0          0          0          0          0          0          0          0  pmic_arb 8716295 Edge      qpnp_kpdpwr_resin_bark\n 73:          0          0          0          0          0          0          0          0  pmic_arb 37748761 Edge      pm660_tz\n 82:         21          0          0          0          0          0          0          0  pmic_arb 51380252 Edge      qpnp_vadc_interrupt\n 83:          0          0          0          0          0          0          0          0  pmic_arb 24117268 Edge      sig-tx\n 84:          0          0          0          0          0          0          0          0  pmic_arb 24182804 Edge      sig-rx\n 85:          0          0          0          0          0          0          0          0  pmic_arb 24248340 Edge      msg-tx\n 86:          0          0          0          0          0          0          0          0  pmic_arb 24313876 Edge      msg-rx\n 87:          0          0          0          0          0          0          0          0  pmic_arb 24379412 Edge      msg-tx-failed\n 88:          0          0          0          0          0          0          0          0  pmic_arb 24444948 Edge      msg-tx-discarded\n 89:          0          0          0          0          0          0          0          0  pmic_arb 24510484 Edge      msg-rx-discarded\n 90:          0          0          0          0          0          0          0          0  pmic_arb 54525982 Edge      qpnp_adc_tm_interrupt\n 91:          0          0          0          0          0          0          0          0  pmic_arb 69206054 Edge      bcl-high-ibat\n 93:          0          0          0          0          0          0          0          0  pmic_arb 69337126 Edge      bcl-low-vbat\n 96:          0          0          0          0          0          0          0          0  pmic_arb 469762164 Edge      haptics_sc_irq\n 97:          0          0          0          0          0          0          0          0  pmic_arb 469827700 Edge      haptics_play_irq\n 98:          0          0          0          0          0          0          0          0  pmic_arb 574619778 Edge      pm660l_tz\n104:          0          0          0          0          0          0          0          0  pmic_arb 744489106 Edge      volume_up\n107:          0          0          0          0          0          0          0          0  pmic_arb 1026556093 Edge      qpnp_flash_led_fault_irq\n108:          0          0          0          0          0          0          0          0  pmic_arb 1026752701 Edge      qpnp_flash_led_all_ramp_down_done_irq\n109:          0          0          0          0          0          0          0          0  pmic_arb 1026818237 Edge      qpnp_flash_led_all_ramp_up_done_irq\n110:          0          0          0          0          0          0          0          0  pmic_arb 1031864510 Edge      qpnp_wled_ovp_irq\n125:        323          0          0          0          0          0          0          0   PDC-GIC 297 Edge      1d84000.ufshc\n126:          0          0          0          0          0          0          0          0   PDC-GIC 194 Edge      adsp\n129:          0          0          0          0          0          0          0          0   PDC-GIC 298 Edge      modem\n130:          0          0          0          0          0          0          0          0   PDC-GIC 610 Edge      cdsp\n158:          0          0          0          0          0          0          0          0  msmgpio-dc  10 Edge      TE_GPIO\n192:          0          0          0          0          0          0          0          0  msmgpio-dc  44 Level     nq-nci\n202:          0          0          0          0          0          0          0          0  msmgpio-dc  54 Edge      bq2591x charger irq\n226:          0          0          0          0          0          0          0          0  msmgpio-dc  78 Edge      esd_err_irq\n244:          0          0          0          0          0          0          0          0  msmgpio-dc  96 Level     cs35l41\n272:          0          0          0          0          0          0          0          0   msmgpio 124 Edge      hall_key\n273:          4          0          0          0          0          0          0          0  msmgpio-dc 125 Edge      goodix_ts\n374:          0          0          0          0          0          0          0          0   PDC-GIC 261 Level     arm-smmu global fault\n375:          0          0          0          0          0          0          0          0   PDC-GIC 263 Level     arm-smmu global fault\n376:          0          0          0          0          0          0          0          0   PDC-GIC 396 Level     arm-smmu-context-fault\n377:          0          0          0          0          0          0          0          0   PDC-GIC 397 Level     arm-smmu-context-fault\n378:          0          0          0          0          0          0          0          0   PDC-GIC 398 Level     arm-smmu-context-fault\n384:          0          0          0          0          0          0          0          0   PDC-GIC  97 Level     arm-smmu global fault\n387:          0          0          0          0          0          0          0          0   PDC-GIC 130 Level     arm-smmu-context-fault\n388:          0          0          0          0          0          0          0          0   PDC-GIC 131 Level     arm-smmu-context-fault\n389:          0          0          0          0          0          0          0          0   PDC-GIC 132 Level     arm-smmu-context-fault\n390:          0          0          0          0          0          0          0          0   PDC-GIC 133 Level     arm-smmu-context-fault\n391:          0          0          0          0          0          0          0          0   PDC-GIC 134 Level     arm-smmu-context-fault\n392:          0          0          0          0          0          0          0          0   PDC-GIC 135 Level     arm-smmu-context-fault\n393:          0          0          0          0          0          0          0          0   PDC-GIC 136 Level     arm-smmu-context-fault\n394:          0          0          0          0          0          0          0          0   PDC-GIC 137 Level     arm-smmu-context-fault\n395:          0          0          0          0          0          0          0          0   PDC-GIC 138 Level     arm-smmu-context-fault\n396:          0          0          0          0          0          0          0          0   PDC-GIC 139 Level     arm-smmu-context-fault\n397:          0          0          0          0          0          0          0          0   PDC-GIC 140 Level     arm-smmu-context-fault\n398:          0          0          0          0          0          0          0          0   PDC-GIC 141 Level     arm-smmu-context-fault\n399:          0          0          0          0          0          0          0          0   PDC-GIC 142 Level     arm-smmu-context-fault\n400:          0          0          0          0          0          0          0          0   PDC-GIC 143 Level     arm-smmu-context-fault\n401:          0          0          0          0          0          0          0          0   PDC-GIC 144 Level     arm-smmu-context-fault\n402:          0          0          0          0          0          0          0          0   PDC-GIC 145 Level     arm-smmu-context-fault\n403:          0          0          0          0          0          0          0          0   PDC-GIC 146 Level     arm-smmu-context-fault\n404:          0          0          0          0          0          0          0          0   PDC-GIC 147 Level     arm-smmu-context-fault\n405:          0          0          0          0          0          0          0          0   PDC-GIC 148 Level     arm-smmu-context-fault\n406:          0          0          0          0          0          0          0          0   PDC-GIC 149 Level     arm-smmu-context-fault\n407:          0          0          0          0          0          0          0          0   PDC-GIC 150 Level     arm-smmu-context-fault\n408:          0          0          0          0          0          0          0          0   PDC-GIC 213 Level     arm-smmu-context-fault\n409:          0          0          0          0          0          0          0          0   PDC-GIC 214 Level     arm-smmu-context-fault\n410:          0          0          0          0          0          0          0          0   PDC-GIC 215 Level     arm-smmu-context-fault\n411:          0          0          0          0          0          0          0          0   PDC-GIC 216 Level     arm-smmu-context-fault\n412:          0          0          0          0          0          0          0          0   PDC-GIC 217 Level     arm-smmu-context-fault\n413:          0          0          0          0          0          0          0          0   PDC-GIC 218 Level     arm-smmu-context-fault\n414:          0          0          0          0          0          0          0          0   PDC-GIC 219 Level     arm-smmu-context-fault\n415:          0          0          0          0          0          0          0          0   PDC-GIC 220 Level     arm-smmu-context-fault\n416:          0          0          0          0          0          0          0          0   PDC-GIC 221 Level     arm-smmu-context-fault\n417:          0          0          0          0          0          0          0          0   PDC-GIC 222 Level     arm-smmu-context-fault\n418:          0          0          0          0          0          0          0          0   PDC-GIC 223 Level     arm-smmu-context-fault\n419:          0          0          0          0          0          0          0          0   PDC-GIC 224 Level     arm-smmu-context-fault\n449:          0          0          0          0          0          0          0          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n450:          0          0          0          0          0          0          0          0   PDC-GIC 162 Edge      pwr_event_irq\n451:          0          0          0          0          0          0          0          0   PDC-GIC 518 Level     ss_phy_irq\n452:          0          0          0          0          0          0          0          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n453:          0          0          0          0          0          0          0          0   PDC-GIC 332 Level     kgsl-3d0\n454:          0          0          0          0          0          0          0          0   PDC-GIC 336 Level     HFI\n455:          0          0          0          0          0          0          0          0   PDC-GIC 337 Level     GMU\n456:          0          0          0          0          0          0          0          0   PDC-GIC 509 Edge      csiphy\n457:          0          0          0          0          0          0          0          0   PDC-GIC 510 Edge      csiphy\n458:          0          0          0          0          0          0          0          0   PDC-GIC 511 Edge      csiphy\n459:          0          0          0          0          0          0          0          0   PDC-GIC 492 Edge      cci\n460:          0          0          0          0          0          0          0          0   PDC-GIC 491 Edge      cpas_camnoc\n461:          1          0          0          0          0          0          0          0   PDC-GIC 493 Edge      cpas-cdm\n462:          0          0          0          0          0          0          0          0   PDC-GIC 496 Edge      csid\n463:          2          0          0          0          0          0          0          0   PDC-GIC 497 Edge      ife\n464:          0          0          0          0          0          0          0          0   PDC-GIC 498 Edge      csid\n465:          2          0          0          0          0          0          0          0   PDC-GIC 499 Edge      ife\n466:          0          0          0          0          0          0          0          0   PDC-GIC 500 Edge      csid-lite\n467:          2          0          0          0          0          0          0          0   PDC-GIC 501 Edge      ife-lite\n468:          0          0          0          0          0          0          0          0   PDC-GIC 495 Edge      a5\n469:          0          0          0          0          0          0          0          0   PDC-GIC 506 Edge      jpeg\n470:          0          0          0          0          0          0          0          0   PDC-GIC 507 Edge      jpegdma\n471:          2          0          0          0          0          0          0          0   PDC-GIC 494 Edge      fd\n472:          1          0          0          0          0          0          0          0   PDC-GIC 508 Edge      lrme\n474:          0          0          0          0          0          0          0          0   PDC-GIC  64 Level     limits_sensor-00\n475:          0          0          0          0          0          0          0          0   PDC-GIC  65 Level     limits_sensor-01\n604:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n605:          0          0          0          0          0          0          0          0  pmic_arb 101777466 Edge      qpnp_rtc_alarm\n606:          0          0          0          0          0          0          0          0       sde   2 Edge      sde_rotator_r3\n607:          0          0          0          0          0          0          0          0  pmic_arb 16777229 Edge      chg-error\n608:          0          0          0          0          0          0          0          0  pmic_arb 16842765 Edge      chg-state-change\n612:          0          0          0          0          0          0          0          0  pmic_arb 17825806 Edge      otg-fail\n613:          0          0          0          0          0          0          0          0  pmic_arb 17891342 Edge      otg-overcurrent\n614:          0          0          0          0          0          0          0          0  pmic_arb 17956878 Edge      otg-oc-dis-sw-sts\n615:          0          0          0          0          0          0          0          0  pmic_arb 18022414 Edge      testmode-change-detect\n616:          0          0          0          0          0          0          0          0  pmic_arb 18874383 Edge      bat-temp\n617:          0          0          0          0          0          0          0          0  pmic_arb 18939919 Edge      bat-ocp\n618:          0          0          0          0          0          0          0          0  pmic_arb 19005455 Edge      bat-ov\n619:          0          0          0          0          0          0          0          0  pmic_arb 19070991 Edge      bat-low\n620:          0          0          0          0          0          0          0          0  pmic_arb 19136527 Edge      bat-therm-or-id-missing\n621:          0          0          0          0          0          0          0          0  pmic_arb 19202063 Edge      bat-terminal-missing\n622:          0          0          0          0          0          0          0          0  pmic_arb 19922960 Edge      usbin-collapse\n623:          0          0          0          0          0          0          0          0  pmic_arb 19988496 Edge      usbin-lt-3p6v\n624:          0          0          0          0          0          0          0          0  pmic_arb 20054032 Edge      usbin-uv\n625:          0          0          0          0          0          0          0          0  pmic_arb 20119568 Edge      usbin-ov\n626:          0          0          0          0          0          0          0          0  pmic_arb 20185104 Edge      usbin-plugin\n627:          0          0          0          0          0          0          0          0  pmic_arb 20250640 Edge      usbin-src-change\n628:          0          0          0          0          0          0          0          0  pmic_arb 20316176 Edge      usbin-icl-change\n629:          0          0          0          0          0          0          0          0  pmic_arb 20381712 Edge      type-c-change\n630:          0          0          0          0          0          0          0          0  pmic_arb 20971537 Edge      dcin-collapse\n631:          0          0          0          0          0          0          0          0  pmic_arb 21037073 Edge      dcin-lt-3p6v\n632:          0          0          0          0          0          0          0          0  pmic_arb 21102609 Edge      dcin-uv\n633:          0          0          0          0          0          0          0          0  pmic_arb 21168145 Edge      dcin-ov\n634:          0          0          0          0          0          0          0          0  pmic_arb 21233681 Edge      dcin-plugin\n635:          0          0          0          0          0          0          0          0  pmic_arb 21299217 Edge      div2-en-dg\n636:          0          0          0          0          0          0          0          0  pmic_arb 21364753 Edge      dcin-icl-change\n638:          0          0          0          0          0          0          0          0  pmic_arb 23134227 Edge      wdog-bark\n639:          0          0          0          0          0          0          0          0  pmic_arb 23199763 Edge      aicl-fail\n640:          0          0          0          0          0          0          0          0  pmic_arb 23265299 Edge      aicl-done\n641:          0          0          0          0          0          0          0          0  pmic_arb 23330835 Edge      high-duty-cycle\n642:          0          0          0          0          0          0          0          0  pmic_arb 23396371 Edge      input-current-limiting\n643:          0          0          0          0          0          0          0          0  pmic_arb 23461907 Edge      temperature-change\n644:          0          0          0          0          0          0          0          0  pmic_arb 23527443 Edge      switcher-power-ok\n645:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      adsp\n646:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n647:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      adsp\n648:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      adsp\n677:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      ipa_smp2p_clk_vote\n709:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      modem\n710:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n711:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      modem\n712:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      modem\n741:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      cdsp\n742:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n743:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      cdsp\n744:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      cdsp\n901:          0          0          0          0          0          0          0          0   PDC-GIC 165 Edge      dwc3\n903:          0          0          0          0          0          0          0          0  pmic_arb 67108900 Edge      soc-update\n904:          0          0          0          0          0          0          0          0  pmic_arb 67174436 Edge      soc-ready\n905:          0          0          0          0          0          0          0          0  pmic_arb 67239972 Edge      bsoc-delta\n906:          0          0          0          0          0          0          0          0  pmic_arb 67305508 Edge      msoc-delta\n907:          0          0          0          0          0          0          0          0  pmic_arb 67371044 Edge      msoc-low\n908:          0          0          0          0          0          0          0          0  pmic_arb 67436580 Edge      msoc-empty\n909:          0          0          0          0          0          0          0          0  pmic_arb 67502116 Edge      msoc-high\n910:          0          0          0          0          0          0          0          0  pmic_arb 67567652 Edge      msoc-full\n911:          0          0          0          0          0          0          0          0  pmic_arb 68157477 Edge      vbatt-pred-delta\n912:          0          0          0          0          0          0          0          0  pmic_arb 68223013 Edge      vbatt-low\n913:          0          0          0          0          0          0          0          0  pmic_arb 68288549 Edge      esr-delta\n914:          0          0          0          0          0          0          0          0  pmic_arb 68354085 Edge      batt-missing\n915:          0          0          0          0          0          0          0          0  pmic_arb 68550693 Edge      batt-temp-delta\n916:         36          0          0          0          0          0          0          0  pmic_arb 71303208 Edge      ima-rdy\n917:          0          0          0          0          0          0          0          0  pmic_arb 71368744 Edge      mem-xcp\n918:          0          0          0          0          0          0          0          0  pmic_arb 71434280 Edge      dma-grant\nIPI0:        62        101        101        101        101        101         92         92       Rescheduling interrupts\nIPI1:         4          6          6          6          6          6          6          6       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI4:       104          3          5          3          3          3          7          8       IRQ work interrupts\nIPI5:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm712/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    4 root      0:00 [kworker/0:0H]\n    6 root      0:00 [ksoftirqd/0]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [lru-add-drain]\n   15 root      0:00 [cpuhp/0]\n   16 root      0:00 [cpuhp/1]\n   17 root      0:00 [migration/1]\n   18 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0H]\n   21 root      0:00 [rcuop/1]\n   22 root      0:00 [rcuos/1]\n   23 root      0:00 [rcuob/1]\n   24 root      0:00 [cpuhp/2]\n   25 root      0:00 [migration/2]\n   26 root      0:00 [ksoftirqd/2]\n   28 root      0:00 [kworker/2:0H]\n   29 root      0:00 [rcuop/2]\n   30 root      0:00 [rcuos/2]\n   31 root      0:00 [rcuob/2]\n   32 root      0:00 [cpuhp/3]\n   33 root      0:00 [migration/3]\n   34 root      0:00 [ksoftirqd/3]\n   35 root      0:00 [kworker/3:0]\n   36 root      0:00 [kworker/3:0H]\n   37 root      0:00 [rcuop/3]\n   38 root      0:00 [rcuos/3]\n   39 root      0:00 [rcuob/3]\n   40 root      0:00 [cpuhp/4]\n   41 root      0:00 [migration/4]\n   42 root      0:00 [ksoftirqd/4]\n   43 root      0:00 [kworker/4:0]\n   44 root      0:00 [kworker/4:0H]\n   45 root      0:00 [rcuop/4]\n   46 root      0:00 [rcuos/4]\n   47 root      0:00 [rcuob/4]\n   48 root      0:00 [cpuhp/5]\n   49 root      0:00 [migration/5]\n   50 root      0:00 [ksoftirqd/5]\n   51 root      0:00 [kworker/5:0]\n   52 root      0:00 [kworker/5:0H]\n   53 root      0:00 [rcuop/5]\n   54 root      0:00 [rcuos/5]\n   55 root      0:00 [rcuob/5]\n   56 root      0:00 [cpuhp/6]\n   57 root      0:00 [migration/6]\n   58 root      0:00 [ksoftirqd/6]\n   59 root      0:00 [kworker/6:0]\n   60 root      0:00 [kworker/6:0H]\n   61 root      0:00 [rcuop/6]\n   62 root      0:00 [rcuos/6]\n   63 root      0:00 [rcuob/6]\n   64 root      0:00 [cpuhp/7]\n   65 root      0:00 [migration/7]\n   66 root      0:00 [ksoftirqd/7]\n   67 root      0:00 [kworker/7:0]\n   68 root      0:00 [kworker/7:0H]\n   69 root      0:00 [rcuop/7]\n   70 root      0:00 [rcuos/7]\n   71 root      0:00 [rcuob/7]\n   72 root      0:00 [kdevtmpfs]\n   73 root      0:00 [netns]\n   76 root      0:00 [ipa_usb_wq]\n   77 root      0:00 [kworker/u16:1]\n   78 root      0:00 [msm_watchdog]\n   79 root      0:00 [qmp_aop]\n   80 root      0:00 [smem_native_mps]\n   81 root      0:00 [mpss_smem_glink]\n   82 root      0:00 [smem_native_lpa]\n   83 root      0:00 [lpass_smem_glin]\n   84 root      0:00 [smem_native_cds]\n   85 root      0:00 [cdsp_smem_glink]\n   86 root      0:00 [oom_reaper]\n   87 root      0:00 [writeback]\n   88 root      0:00 [kcompactd0]\n   89 root      0:00 [crypto]\n   90 root      0:00 [bioset]\n   91 root      0:00 [kblockd]\n   92 root      0:00 [irq/374-arm-smm]\n   93 root      0:00 [irq/375-arm-smm]\n   94 root      0:00 [irq/384-arm-smm]\n   95 root      0:00 [irq/21-tsens-up]\n   96 root      0:00 [irq/22-tsens-cr]\n   97 root      0:00 [irq/23-tsens-up]\n   98 root      0:00 [irq/24-tsens-cr]\n   99 root      0:00 [system]\n  100 root      0:00 [ipa_power_mgmt]\n  101 root      0:00 [transport_power]\n  102 root      0:00 [ipa_rm_wq]\n  103 root      0:00 [devfreq_wq]\n  104 root      0:00 [governor_msm_ad]\n  105 root      0:00 [cfg80211]\n  106 root      0:01 [kworker/0:2]\n  107 root      0:00 [irq/110-qpnp_wl]\n  132 root      0:00 [kswapd0]\n  133 root      0:00 [vmstat]\n  134 root      0:00 [bioset]\n  169 root      0:00 [irq/389-arm-smm]\n  170 root      0:00 [irq/390-arm-smm]\n  171 root      0:00 [irq/64-eud_irq]\n  172 root      0:00 [glink_ssr_wq]\n  173 root      0:00 [glink_lbsrv]\n  174 root      0:00 [spi_wdsp]\n  175 root      0:00 [wdsp_spi_glink_]\n  176 root      0:00 [glink_xprt_wq]\n  177 root      0:00 [IPCRTR_mpss_sme]\n  178 root      0:00 [IPCRTR_lpass_sm]\n  179 root      0:00 [IPCRTR_cdsp_sme]\n  180 root      0:00 [glink_pkt_wq]\n  181 root      0:00 [irq/391-arm-smm]\n  182 root      0:00 [qmi_svc_event_w]\n  183 root      0:00 [msm_ipc_router]\n  184 root      0:00 [servloc_wq]\n  185 root      0:00 [mem_share_svc]\n  187 root      0:00 [qmi_hndl0000000]\n  188 root      0:00 [irq/392-arm-smm]\n  189 root      0:00 [hwrng]\n  191 root      0:00 [diag_real_time_]\n  192 root      0:00 [diag_wq]\n  194 root      0:00 [DIAG_USB_diag]\n  195 root      0:00 [diag_cntl_wq]\n  196 root      0:00 [diag_dci_wq]\n  197 root      0:00 [DIAG_SOCKET_MOD]\n  198 root      0:00 [DIAG_SOCKET_MOD]\n  199 root      0:00 [DIAG_SOCKET_MOD]\n  200 root      0:00 [DIAG_SOCKET_MOD]\n  201 root      0:00 [DIAG_SOCKET_MOD]\n  202 root      0:00 [DIAG_SOCKET_LPA]\n  203 root      0:00 [DIAG_SOCKET_LPA]\n  204 root      0:00 [DIAG_SOCKET_LPA]\n  205 root      0:00 [DIAG_SOCKET_LPA]\n  206 root      0:00 [DIAG_SOCKET_LPA]\n  207 root      0:00 [DIAG_SOCKET_WCN]\n  208 root      0:00 [DIAG_SOCKET_WCN]\n  209 root      0:00 [DIAG_SOCKET_WCN]\n  210 root      0:00 [DIAG_SOCKET_WCN]\n  211 root      0:00 [DIAG_SOCKET_WCN]\n  212 root      0:00 [DIAG_SOCKET_SEN]\n  213 root      0:00 [DIAG_SOCKET_SEN]\n  214 root      0:00 [DIAG_SOCKET_SEN]\n  215 root      0:00 [DIAG_SOCKET_SEN]\n  216 root      0:00 [DIAG_SOCKET_SEN]\n  217 root      0:00 [DIAG_SOCKET_DIA]\n  218 root      0:00 [DIAG_SOCKET_DIA]\n  219 root      0:00 [DIAG_SOCKET_DIA]\n  220 root      0:00 [DIAG_SOCKET_DIA]\n  221 root      0:00 [DIAG_SOCKET_DIA]\n  222 root      0:00 [DIAG_SOCKET_CDS]\n  223 root      0:00 [DIAG_SOCKET_CDS]\n  224 root      0:00 [DIAG_SOCKET_CDS]\n  225 root      0:00 [DIAG_SOCKET_CDS]\n  226 root      0:00 [DIAG_SOCKET_CDS]\n  227 root      0:00 [DIAG_CNTL_SOCKE]\n  228 root      0:00 [DIAG_GLINK_DIAG]\n  229 root      0:00 [DIAG_GLINK_DIAG]\n  230 root      0:00 [DIAG_GLINK_DIAG]\n  231 root      0:00 [DIAG_GLINK_DIAG]\n  232 root      0:00 [DIAG_GLINK_DIAG]\n  233 root      0:00 [irq/388-arm-smm]\n  234 root      0:00 [irq/393-arm-smm]\n  235 root      0:00 [irq/226-esd_err]\n  236 root      0:00 [crtc_commit:101]\n  237 root      0:00 [crtc_event:101]\n  238 root      0:00 [crtc_commit:153]\n  239 root      0:00 [crtc_event:153]\n  240 root      0:00 [pp_event]\n  241 root      0:00 [kgsl-workqueue]\n  242 root      0:00 [kgsl-mementry]\n  243 root      0:00 [kgsl_worker_thr]\n  244 root      0:00 [irq/376-arm-smm]\n  245 root      0:00 [irq/377-arm-smm]\n  246 root      0:00 [irq/378-arm-smm]\n  247 root      0:00 [kgsl-events]\n  248 root      0:00 [kgsl_devfreq_wq]\n  249 root      0:00 [bioset]\n  250 root      0:00 [bioset]\n  251 root      0:00 [bioset]\n  252 root      0:00 [bioset]\n  253 root      0:00 [bioset]\n  254 root      0:00 [bioset]\n  255 root      0:00 [bioset]\n  256 root      0:00 [bioset]\n  257 root      0:00 [bioset]\n  258 root      0:00 [bioset]\n  259 root      0:00 [bioset]\n  260 root      0:00 [bioset]\n  261 root      0:00 [bioset]\n  262 root      0:00 [bioset]\n  263 root      0:00 [bioset]\n  264 root      0:00 [bioset]\n  265 root      0:00 [bioset]\n  266 root      0:00 [bioset]\n  267 root      0:00 [bioset]\n  268 root      0:00 [bioset]\n  269 root      0:00 [bioset]\n  270 root      0:00 [bioset]\n  271 root      0:00 [bioset]\n  272 root      0:00 [bioset]\n  273 root      0:00 [bioset]\n  274 root      0:00 [bioset]\n  275 root      0:00 [bioset]\n  276 root      0:00 [bioset]\n  277 root      0:00 [bioset]\n  278 root      0:00 [bioset]\n  279 root      0:00 [bioset]\n  280 root      0:00 [bioset]\n  281 root      0:00 [bioset]\n  282 root      0:00 [qseecom-unreg-l]\n  283 root      0:00 [qseecom-unload-]\n  284 root      0:00 [memory_wq]\n  285 root      0:00 [irq/394-arm-smm]\n  286 root      0:00 [qcrypto_seq_res]\n  287 root      0:00 [irq/395-arm-smm]\n  308 root      0:00 [scsi_eh_0]\n  309 root      0:00 [scsi_tmf_0]\n  310 root      0:00 [ufs_pm_qos_0]\n  311 root      0:00 [ufs_clk_gating_]\n  312 root      0:00 [ice-set-key]\n  313 root      0:00 [ufs_clkscaling_]\n  314 root      0:00 [spi32766]\n  315 root      0:00 [bond0]\n  316 root      0:00 [sharedmem_qmi_w]\n  321 root      0:00 [uether]\n  322 root      0:00 [qmi_hndl0000000]\n  324 root      0:00 [k_ipa_usb]\n  328 root      0:00 [irq/396-arm-smm]\n  329 root      0:00 [bioset]\n  330 root      0:00 [bioset]\n  331 root      0:00 [bioset]\n  332 root      0:00 [bioset]\n  333 root      0:00 [bioset]\n  334 root      0:00 [bioset]\n  335 root      0:00 [bioset]\n  336 root      0:00 [bioset]\n  337 root      0:00 [bioset]\n  340 root      0:00 [kworker/u16:5]\n  341 root      0:00 [kworker/0:5]\n  343 root      0:00 [msm_vidc_worker]\n  344 root      0:00 [pm_workerq_venu]\n  345 root      0:00 [irq/397-arm-smm]\n  346 root      0:00 [irq/398-arm-smm]\n  347 root      0:00 [irq/399-arm-smm]\n  348 root      0:00 [irq/400-arm-smm]\n  349 root      0:00 [rot_commitq_0_0]\n  350 root      0:00 [rot_commitq_0_1]\n  351 root      0:00 [rot_doneq_0_0]\n  352 root      0:00 [rot_doneq_0_1]\n  353 root      0:00 [rot_fenceq_0_0]\n  354 root      0:00 [rot_fenceq_0_1]\n  355 root      0:00 [rot_fenceq_0_2]\n  356 root      0:00 [rot_fenceq_0_3]\n  357 root      0:00 [rot_fenceq_0_4]\n  358 root      0:00 [rot_fenceq_0_5]\n  359 root      0:00 [rot_fenceq_0_6]\n  360 root      0:00 [rot_fenceq_0_7]\n  361 root      0:00 [rot_fenceq_0_8]\n  362 root      0:00 [rot_fenceq_0_9]\n  363 root      0:00 [rot_fenceq_0_10]\n  364 root      0:00 [rot_fenceq_0_11]\n  365 root      0:00 [rot_fenceq_0_12]\n  366 root      0:00 [rot_fenceq_0_13]\n  367 root      0:00 [rot_fenceq_0_14]\n  368 root      0:00 [rot_fenceq_0_15]\n  369 root      0:00 [cam-cpas]\n  370 root      0:00 [qcom,cam_virtua]\n  371 root      0:00 [irq/401-arm-smm]\n  372 root      0:00 [qcom,cam170-cpa]\n  373 root      0:00 [irq/402-arm-smm]\n  374 root      0:00 [cam_cci_wq]\n  375 root      0:00 [cam_cci_wq]\n  376 root      0:00 [irq/403-arm-smm]\n  377 root      0:00 [irq/404-arm-smm]\n  378 root      0:00 [irq/405-arm-smm]\n  379 root      0:00 [irq/406-arm-smm]\n  380 root      0:00 [kworker/u17:1]\n  381 root      0:00 [irq/607-chg-err]\n  382 root      0:00 [irq/608-chg-sta]\n  383 root      0:00 [irq/612-otg-fai]\n  384 root      0:00 [irq/613-otg-ove]\n  385 root      0:00 [irq/614-otg-oc-]\n  386 root      0:00 [irq/615-testmod]\n  387 root      0:00 [irq/616-bat-tem]\n  388 root      0:00 [irq/617-bat-ocp]\n  389 root      0:00 [irq/618-bat-ov]\n  390 root      0:00 [irq/619-bat-low]\n  391 root      0:00 [irq/620-bat-the]\n  392 root      0:00 [irq/621-bat-ter]\n  393 root      0:00 [irq/622-usbin-c]\n  395 root      0:00 [irq/623-usbin-l]\n  396 root      0:00 [irq/624-usbin-u]\n  397 root      0:00 [irq/625-usbin-o]\n  398 root      0:00 [irq/626-usbin-p]\n  399 root      0:00 [irq/627-usbin-s]\n  400 root      0:00 [irq/628-usbin-i]\n  401 root      0:00 [irq/629-type-c-]\n  403 root      0:00 [irq/630-dcin-co]\n  404 root      0:00 [irq/631-dcin-lt]\n  405 root      0:00 [irq/632-dcin-uv]\n  406 root      0:00 [irq/633-dcin-ov]\n  407 root      0:00 [irq/634-dcin-pl]\n  408 root      0:00 [irq/635-div2-en]\n  409 root      0:00 [irq/636-dcin-ic]\n  411 root      0:00 [irq/638-wdog-ba]\n  412 root      0:00 [irq/639-aicl-fa]\n  413 root      0:00 [irq/640-aicl-do]\n  414 root      0:00 [irq/641-high-du]\n  415 root      0:00 [irq/642-input-c]\n  416 root      0:00 [irq/643-tempera]\n  417 root      0:00 [irq/644-switche]\n  419 root      0:00 [irq/91-bcl-high]\n  420 root      0:00 [irq/93-bcl-low-]\n  421 root      0:00 [irq/474-limits_]\n  422 root      0:00 [irq/475-limits_]\n  423 root      0:00 [kworker/6:1]\n  424 root      0:00 [kworker/7:1]\n  425 root      0:00 [qmi_tmd_wq]\n  426 root      0:00 [dm_bufio_cache]\n  427 root      0:00 [irq/97-haptics_]\n  428 root      0:00 [irq/96-haptics_]\n  429 root      0:00 [irq/407-arm-smm]\n  430 root      0:00 [uaudio_svc]\n  431 root      0:00 [qmi_hndl0000000]\n  432 root      0:00 [irq/273-goodix_]\n  433 root      0:00 [irq/244-cs35l41]\n  435 root      0:00 [apr_driver]\n  436 root      0:00 [ipv6_addrconf]\n  437 root      0:00 [irq/647-adsp]\n  438 root      0:00 [sysmon_wq]\n  439 root      0:00 [irq/743-cdsp]\n  440 root      0:00 [irq/711-modem]\n  447 root      0:00 [irq/83-sig-tx]\n  448 root      0:00 [irq/84-sig-rx]\n  449 root      0:00 [irq/903-soc-upd]\n  450 root      0:00 [irq/904-soc-rea]\n  451 root      0:00 [irq/905-bsoc-de]\n  452 root      0:00 [irq/906-msoc-de]\n  453 root      0:00 [irq/907-msoc-lo]\n  454 root      0:00 [irq/908-msoc-em]\n  455 root      0:00 [irq/909-msoc-hi]\n  456 root      0:00 [irq/910-msoc-fu]\n  457 root      0:00 [irq/911-vbatt-p]\n  458 root      0:00 [irq/912-vbatt-l]\n  459 root      0:00 [irq/913-esr-del]\n  460 root      0:00 [irq/914-batt-mi]\n  461 root      0:00 [irq/915-batt-te]\n  462 root      0:00 [irq/916-ima-rdy]\n  463 root      0:00 [irq/917-mem-xcp]\n  464 root      0:00 [irq/918-dma-gra]\n  465 root      0:00 [irq/202-bq2591x]\n  466 root      0:00 [irq/450-pwr_eve]\n  467 root      0:00 [irq/449-dp_hs_p]\n  468 root      0:00 [irq/452-dm_hs_p]\n  469 root      0:00 [irq/451-ss_phy_]\n  470 root      0:00 [irq/387-arm-smm]\n  471 root      0:00 [usb_bam_wq]\n  472 root      0:00 [core_ctl/0]\n  477 root      0:00 [kworker/u17:2]\n  478 root      0:00 [rq_stats]\n  479 root      0:00 [msm_perf:events]\n  480 root      0:00 [irq/408-arm-smm]\n  481 root      0:00 [kworker/0:1H]\n  482 root      0:00 [irq/409-arm-smm]\n  483 root      0:00 [irq/410-arm-smm]\n  484 root      0:00 [irq/411-arm-smm]\n  485 root      0:00 [irq/412-arm-smm]\n  486 root      0:00 [irq/413-arm-smm]\n  487 root      0:00 [irq/414-arm-smm]\n  488 root      0:00 [irq/415-arm-smm]\n  489 root      0:00 [irq/416-arm-smm]\n  490 root      0:00 [irq/417-arm-smm]\n  491 root      0:00 [irq/418-arm-smm]\n  492 root      0:00 [irq/419-arm-smm]\n  493 root      0:00 [sb-3]\n  494 root      0:00 [ngd_rx_thread3]\n  495 root      0:00 [ngd_notify_sl3]\n  496 root      0:00 [irq/109-qpnp_fl]\n  497 root      0:00 [irq/108-qpnp_fl]\n  498 root      0:00 [irq/107-qpnp_fl]\n  507 root      0:00 [kworker/1:1]\n  508 root      0:00 [kworker/2:1]\n  509 root      0:00 [kworker/3:1]\n  510 root      0:00 [kworker/4:1]\n  511 root      0:00 [kworker/5:1]\n  513 root      0:00 [kworker/2:2]\n  544 root      0:00 [kworker/1:0]\n  554 root      0:00 [kworker/0:0]\n  570 root      0:00 [kworker/0:1]\n  632 root      0:00 ps -A\n"
  },
  {
    "path": "results/sdm712/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1113.873517,3.7129117233333333,73.13987951515243,16.417340870168513,15.227801017049478,224.464970123\r\n1,576000,2138.653162,3.7129395173611113,80.79398653268102,9.445432116834198,26.467820308023335,116.907613081\r\n1,748800,2780.341871,3.7130633961004276,83.63008621144944,7.520561685227639,33.24219791868282,89.926508819\r\n1,998400,3707.108752,3.713049631410257,107.12313506120901,7.225009942044201,34.602028510048875,67.445841068\r\n1,1209600,4491.47518,3.713190459656085,109.61547609009091,6.102044730202716,40.96987338729239,55.667730031\r\n1,1324800,4919.226304,3.713184106280193,127.69703228087997,6.49058762752955,38.51731373899579,50.828022481\r\n1,1516800,5632.406615,3.7133482430116036,130.84747833954546,5.808679712148077,43.03904026196494,44.392752431\r\n1,1612800,5988.59771,3.71316822296627,141.82600933090242,5.921479429217271,42.21917900558276,41.751717172\r\n1,1708800,6344.855591,3.713047513459738,161.50910714412822,6.364576537663715,39.27991100752307,39.406920453\r\n6,300000,1862.322241,6.2077408033333334,81.67110587313533,10.965231210305722,22.79933684982733,134.260839168\r\n6,652800,4058.771004,6.217480091911765,123.28277105149178,7.5960443640829025,32.91186675819045,61.614808779\r\n6,825600,5130.731027,6.214548240067829,170.11708222331254,8.292485537371517,30.14777642642027,48.745754565\r\n6,979200,6084.649646,6.213898739787581,179.60075344189997,7.383112537579622,33.86105774868177,41.108471964\r\n6,1132800,7043.443962,6.217729486228814,209.95287240902863,7.4562515783411865,33.52891159496233,35.51392983\r\n6,1363200,8488.099684,6.226598946596244,267.22483481724134,7.875607169311191,31.743584288227677,29.471838479\r\n6,1536000,9571.209801,6.231256380859375,322.89991133907694,8.440318736793511,29.619734490616565,26.139117542\r\n6,1747200,10889.450301,6.232515053228022,394.4591548938636,9.063424330371818,27.583393526246166,22.976838585\r\n6,1843200,11399.388993,6.184564340820312,403.26572779195243,8.851588101149924,28.24351937111964,21.949765356\r\n6,1996800,12387.27579,6.203563596754807,472.13041675170007,9.5383142326919,26.210082190744213,20.202710722\r\n6,2054400,12699.38027,6.181551922702492,509.73073500215787,10.044344004760429,24.8896294154715,19.70519593\r\n6,2169600,13523.016174,6.2329536200221245,614.3941709141111,11.37049912585014,21.986721711418998,18.506847337\r\n6,2208000,13705.388959,6.207150796648551,590.6141636612223,10.785376670150425,23.179533515217805,18.261290253\r\n6,2304000,14357.089531,6.231375664496528,691.6038496687647,12.057013356122512,20.734819860927733,17.433409837\r\n"
  },
  {
    "path": "results/sdm712/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1526.8810112932697, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [591.6658425390001, 591.561833391, 579.5032922, 579.5373864, 589.772129828, 591.8740029239999, 595.9786201600001, 583.9440494159999, 584.012435784, 590.117777869, 592.1515027410001, 582.012785024, 579.94498604, 582.081072896, 582.081072896, 640.8024261919999, 626.4886464, 630.6326123829999, 644.75939406, 636.7320009189999, 626.4886464, 594.2591157239999, 594.2591157239999, 575.974656966, 584.18354184, 594.36348282, 596.432711644, 594.537570558, 626.78235807], \"power_mean\": 598.7218989588965, \"energy_millijoules\": 2993.6094947944825, \"energy_joules\": 2.9936094947944825}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 224.464970123, \"elapsed_ns\": 224464970123, \"power_samples\": [66.93619518599996, 66.93619518599996, 60.79463471700001, 58.83572951699989, 58.83572951699989, 60.86921624499985, 58.83572951699989, 58.83572951699989, 64.90282752999997, 60.86921624499985, 66.89854696200007, 66.89854696200007, 68.97372957900006, 64.90282752999997, 64.90282752999997, 65.015414986, 56.76519016899988, 56.76519016899988, 64.94035668200002, 64.94035668200002, 64.94035668200002, 64.94035668200002, 65.015414986, 65.015414986, 77.14961101200004, 65.015414986, 66.97384340999997, 66.97384340999997, 60.86921624499985, 60.86921624499985, 60.86921624499985, 60.943797772999915, 58.83572951699989, 58.83572951699989, 58.83572951699989, 60.943797772999915, 60.943797772999915, 64.94035668200002, 64.90282752999997, 64.90282752999997, 64.94035668200002, 65.09062709799991, 66.97384340999997, 66.97384340999997, 60.943797772999915, 58.83572951699989, 58.83572951699989, 60.86921624499985, 693.177540578, 693.177540578, 60.943797772999915, 65.05294413799993, 65.05294413799993, 60.79463471700001, 60.79463471700001, 60.79463471700001, 66.89854696200007, 60.831925480999985, 77.11136693999993, 77.11136693999993, 58.910072901000035, 64.90282752999997, 64.90282752999997, 60.86921624499985, 67.04913985799999, 67.04913985799999, 66.97384340999997, 54.76875606099986, 54.76875606099986, 60.86921624499985, 58.910072901000035, 58.910072901000035, 64.90282752999997, 60.831925480999985, 68.97372957900006, 68.97372957900006, 56.80224278899993, 58.910072901000035, 58.910072901000035, 65.015414986, 58.910072901000035, 58.910072901000035, 60.86921624499985, 66.93619518599996, 66.93619518599996, 64.94035668200002, 60.86921624499985, 60.86921624499985, 60.86921624499985, 66.97384340999997, 66.97384340999997, 68.93596203900006, 64.86529837800003, 64.86529837800003, 64.86529837800003, 58.79855782499999, 65.015414986, 65.015414986, 56.87634802899993, 58.79855782499999, 58.79855782499999, 58.761386132999974, 58.79855782499999, 58.79855782499999, 58.761386132999974, 64.90282752999997, 64.90282752999997, 64.90282752999997, 56.691084928999885, 64.82776922599987, 64.82776922599987, 66.89854696200007, 60.79463471700001, 60.79463471700001, 66.89854696200007, 58.761386132999974, 58.761386132999974, 60.86921624499985, 60.75734395299992, 60.75734395299992, 64.82776922599987, 60.68260959400004, 60.68260959400004, 58.724214440999845, 58.761386132999974, 56.72813754900005, 56.72813754900005, 60.68260959400004, 60.75734395299992, 60.75734395299992, 64.86529837800003, 64.86529837800003, 64.86529837800003, 64.86529837800003, 58.724214440999845, 58.724214440999845, 54.657955416999926, 60.79463471700001, 60.79463471700001, 60.79463471700001, 58.724214440999845, 66.86089873799995, 66.86089873799995, 58.724214440999845, 58.612547021999944, 58.612547021999944, 66.86089873799995, 58.761386132999974, 58.761386132999974, 60.75734395299992, 58.724214440999845, 58.724214440999845, 58.724214440999845, 60.86921624499985, 60.86921624499985, 66.78544799400004, 54.69488896500002, 54.69488896500002, 64.75255711399996, 64.75255711399996, 64.75255711399996, 64.75255711399996, 56.691084928999885, 58.64971871399996, 58.64971871399996, 58.64971871399996, 58.64971871399996, 58.64971871399996, 58.724214440999845, 64.75255711399996, 64.75255711399996, 64.82776922599987, 60.64531882999984, 60.64531882999984, 60.570737302, 58.612547021999944, 50.58753014399997, 50.58753014399997, 58.64971871399996, 66.78544799400004, 66.78544799400004, 56.61682783399999, 60.64531882999984, 60.64531882999984, 64.63996965800004, 56.61682783399999, 56.61682783399999, 54.58393695400002, 60.68260959400004, 60.68260959400004, 66.78544799400004, 56.57977521399994, 692.5796257220001, 692.5796257220001, 56.61682783399999, 58.64971871399996, 58.64971871399996, 60.68260959400004, 66.74779976999992, 66.74779976999992, 60.49615577399993, 56.43156473399995, 56.43156473399995, 64.63996965800004, 58.64971871399996, 58.64971871399996, 60.570737302, 60.49615577399993, 60.570737302, 60.570737302, 66.597206874, 60.570737302, 60.570737302, 58.53820363800003, 58.612547021999944, 58.612547021999944, 64.63996965800004, 60.64531882999984, 60.64531882999984, 54.36218429899998, 64.52722839399996, 64.52722839399996, 64.56491135399995], \"power_mean\": 73.13987951515243, \"energy_millijoules\": 16417.34087016851, \"energy_joules\": 16.417340870168513, \"coremark_score\": 1113.873517, \"coremarks_per_mhz\": 3.7129117233333333, \"ulpmark_cm_score\": 15.227801017049478}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [632.8510049949999, 622.6740456970001, 590.394324622, 590.394324622], \"power_mean\": 609.078424984, \"energy_millijoules\": 3045.39212492, \"energy_joules\": 3.0453921249199998}}, \"576000\": {\"active\": {\"elapsed_sec\": 116.907613081, \"elapsed_ns\": 116907613081, \"power_samples\": [99.05548659300007, 76.69036867200009, 76.69036867200009, 74.61602297699994, 84.70659846300009, 74.50164870899994, 74.50164870899994, 74.53977346500005, 78.68406241599996, 78.68406241599996, 70.55214734499998, 70.55214734499998, 70.55214734499998, 76.65212459999998, 80.6390358000001, 80.6390358000001, 78.56897298399997, 70.55214734499998, 70.55214734499998, 76.53739238399999, 70.55214734499998, 70.55214734499998, 74.53977346500005, 78.60733612800004, 74.61602297699994, 74.61602297699994, 70.47637412100005, 74.61602297699994, 74.61602297699994, 76.57563645599998, 76.69036867200009, 76.69036867200009, 76.53739238399999, 74.53977346500005, 74.53977346500005, 78.53060984000001, 84.62915725500011, 84.62915725500011, 74.46352395299994, 74.53977346500005, 76.57563645599998, 76.57563645599998, 70.400600897, 70.400600897, 70.400600897, 76.4991483120001, 74.46352395299994, 74.46352395299994, 76.4991483120001, 76.53739238399999, 76.53739238399999, 74.34899343599989, 74.42539919700005, 74.42539919700005, 70.28678578799997, 68.36913936899998, 76.38425935800001, 76.38425935800001, 74.34899343599989, 78.49224669600005, 78.49224669600005, 74.34899343599989, 74.34899343599989, 74.34899343599989, 70.28678578799997, 74.34899343599989, 74.34899343599989, 76.3077712139999, 76.34601528600012, 76.34601528600012, 78.377000038, 76.34601528600012, 76.34601528600012, 76.38425935800001, 70.28678578799997, 74.31086868, 74.31086868, 70.24889917600001, 70.21101256399993, 70.21101256399993, 70.24889917600001, 74.31086868, 74.31086868, 74.27274392399988, 74.34899343599989, 74.34899343599989, 76.3077712139999, 70.400600897, 70.400600897, 76.3077712139999, 70.24889917600001, 76.3077712139999, 76.3077712139999, 76.38425935800001, 70.24889917600001, 70.24889917600001, 88.38025066, 80.21541599599993, 80.21541599599993, 74.27274392399988, 80.25405592599998, 80.25405592599998, 78.22354746199994, 78.33863689399993, 78.33863689399993, 709.2699619399999, 74.15836965599988, 74.27274392399988, 74.27274392399988, 74.27274392399988, 74.15836965599988, 74.15836965599988, 74.15836965599988, 76.1930389979999, 76.1930389979999, 70.09735272799992], \"power_mean\": 80.79398653268102, \"energy_millijoules\": 9445.432116834198, \"energy_joules\": 9.445432116834198, \"coremark_score\": 2138.653162, \"coremarks_per_mhz\": 3.7129395173611113, \"ulpmark_cm_score\": 26.467820308023335}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [580.0130352799999, 580.0130352799999, 579.94498604, 575.873368827], \"power_mean\": 578.96110635675, \"energy_millijoules\": 2894.8055317837498, \"energy_joules\": 2.8948055317837498}}, \"748800\": {\"active\": {\"elapsed_sec\": 89.926508819, \"elapsed_ns\": 89926508819, \"power_samples\": [84.31923373199993, 88.34113224499993, 88.34113224499993, 84.24163383300004, 80.17693378000001, 80.17693378000001, 84.24163383300004, 84.24163383300004, 84.24163383300004, 80.13845156400009, 84.20291322900005, 84.20291322900005, 88.30217349700001, 96.31326703100012, 88.2632147490001, 88.2632147490001, 78.10830080400012, 80.13845156400009, 80.13845156400009, 84.12547202100006, 80.02300491599988, 80.02300491599988, 88.14633850500002, 84.08675141699996, 84.08675141699996, 90.21936952600015, 78.03157451599998, 78.03157451599998, 90.18029146200001, 77.95484822799995, 84.08675141699996, 84.08675141699996, 88.10737975699999, 88.06826134199991, 88.06826134199991, 75.96341782799993, 79.94588277000003, 79.94588277000003, 79.86891833799996, 79.86891833799996, 79.86891833799996, 84.00915151800007, 79.94588277000003, 79.94588277000003, 90.10197517800009, 79.86891833799996, 79.86891833799996, 88.06826134199991, 84.00915151800007, 79.86891833799996, 79.86891833799996, 79.94588277000003, 79.86891833799996, 79.86891833799996, 87.99034384599997, 83.8929897060001, 83.8929897060001, 83.8929897060001, 83.85426910199999, 83.85426910199999, 96.03705674200012, 83.8929897060001, 83.8929897060001, 79.83043612199992, 87.91242635000003, 83.93171030999997, 83.93171030999997, 83.93171030999997, 87.91242635000003, 87.91242635000003, 77.76287528199998, 83.8929897060001, 83.8929897060001, 89.945662922, 77.76287528199998, 77.76287528199998, 79.75347168999986, 89.90658485799997, 89.90658485799997, 79.791953906, 75.69555258599996, 75.69555258599996, 79.791953906, 79.75347168999986, 93.88571041400007, 93.88571041400007, 77.57090233600002, 87.71747294299996, 87.71747294299996], \"power_mean\": 83.63008621144944, \"energy_millijoules\": 7520.561685227639, \"energy_joules\": 7.520561685227639, \"coremark_score\": 2780.341871, \"coremarks_per_mhz\": 3.7130633961004276, \"ulpmark_cm_score\": 33.24219791868282}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [581.7059783679999, 579.6732065599999, 579.6732065599999, 573.5035304600001], \"power_mean\": 578.638980487, \"energy_millijoules\": 2893.194902435, \"energy_joules\": 2.8931949024350003}}, \"998400\": {\"active\": {\"elapsed_sec\": 67.445841068, \"elapsed_ns\": 67445841068, \"power_samples\": [-4.842745044000026, 97.82864568100001, 97.86820027700003, 97.86820027700003, 95.72141092899994, 103.79815710800017, 103.79815710800017, 105.78596840600017, 97.74953648900009, 97.74953648900009, 109.88217657200016, 95.60294273600005, 95.60294273600005, 103.75808147800012, 109.84174226200014, 99.69815211600007, 99.69815211600007, 103.71816942200007, 95.681975405, 95.681975405, 97.70998189300008, 99.65847844799998, 99.65847844799998, 97.5516014000001, 95.60294273600005, 95.60294273600005, 731.513970112, 99.65847844799998, 99.65847844799998, 107.77370513400001, 103.63834531000009, 97.5516014000001, 97.5516014000001, 93.49238720200015, 93.57101961800004, 93.57101961800004, 99.57913111200003, 103.59843325400004, 103.59843325400004, 99.57913111200003, 97.51204680400008, 97.51204680400008, 99.53945744400005, 95.44520064000005, 95.44520064000005, 107.6532545340001, 99.65847844799998, 99.65847844799998, 99.65847844799998, 95.484636164, 99.53945744400005, 99.53945744400005, 97.47249220800006, 97.47249220800006, 97.47249220800006, 95.44520064000005, 103.59843325400004, 103.59843325400004, 93.41375478600003, 99.4601101080001, 99.4601101080001, 103.39870940000003, 93.37443857800008, 93.37443857800008, 103.51860914200006, 97.47249220800006, 99.4601101080001], \"power_mean\": 107.12313506120901, \"energy_millijoules\": 7225.009942044201, \"energy_joules\": 7.225009942044201, \"coremark_score\": 3707.108752, \"coremarks_per_mhz\": 3.713049631410257, \"ulpmark_cm_score\": 34.602028510048875}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [579.1975576799999, 579.1975576799999, 573.1000841099999, 571.131911922], \"power_mean\": 575.6567778479999, \"energy_millijoules\": 2878.2838892399996, \"energy_joules\": 2.8782838892399996}}, \"1209600\": {\"active\": {\"elapsed_sec\": 55.667730031, \"elapsed_ns\": 55667730031, \"power_samples\": [-3.109893611000075, 117.51322746599999, 109.398615232, 109.31807668800002, 109.31807668800002, 115.482497997, 113.33423235399982, 113.33423235399982, 105.26539967999997, 113.29372469399993, 113.29372469399993, 113.33423235399982, 129.34498446200007, 129.34498446200007, 113.37490602899993, 113.29372469399993, 113.29372469399993, 113.33423235399982, 115.31982456599997, 115.31982456599997, 115.279197834, 109.23737310600006, 113.25321703399993, 113.25321703399993, 117.30933023399996, 105.22520449000001, 105.22520449000001, 107.21127323400003, 113.17220171399993, 113.17220171399993, 107.09082263400012, 113.17220171399993, 113.17220171399993, 109.19710383400002, 109.19710383400002, 109.19710383400002, 109.11656529000004, 109.11656529000004, 117.30933023399996, 117.30933023399996, 109.11656529000004, 109.19710383400002, 109.19710383400002, 107.09082263400012, 107.09082263400012, 107.09082263400012, 105.06507997800009, 108.99575747400013, 108.99575747400013, 109.03602674600006, 109.03602674600006, 109.03602674600006, 109.03602674600006, 115.157317638, 107.09082263400012], \"power_mean\": 109.61547609009091, \"energy_millijoules\": 6102.044730202716, \"energy_joules\": 6.102044730202716, \"coremark_score\": 4491.47518, \"coremarks_per_mhz\": 3.713190459656085, \"ulpmark_cm_score\": 40.96987338729239}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [574.793883231, 574.793883231, 574.793883231, 578.95973324], \"power_mean\": 575.83534573325, \"energy_millijoules\": 2879.1767286662503, \"energy_joules\": 2.87917672866625}}, \"1324800\": {\"active\": {\"elapsed_sec\": 50.828022481, \"elapsed_ns\": 50828022481, \"power_samples\": [2.6114316739999595, 127.27801922599997, 123.18175631399993, 117.146346042, 117.146346042, 117.10559999400004, 125.25251471399986, 125.25251471399986, 125.21129213400002, 119.17185055399989, 119.17185055399989, 116.98319485799993, 117.0239409059999, 117.0239409059999, 117.0239409059999, 114.99464420699985, 114.99464420699985, 117.0239409059999, 114.954017475, 114.954017475, 128.93003738000004, 125.087455449, 114.91339074299992, 114.91339074299992, 108.83451534800008, 114.91339074299992, 114.91339074299992, 119.13098543399997, 116.82021066599998, 116.82021066599998, 749.7271015140001, 112.72628542400003, 112.72628542400003, 114.750717312, 118.803729514, 118.803729514, 116.77929762600002, 116.94244880999997, 112.7669590989999, 112.7669590989999, 116.82021066599998, 116.69780552999998, 116.69780552999998, 118.72199927399993, 112.72628542400003, 112.72628542400003, 114.79151054699992, 116.69780552999998, 116.69780552999998, 116.69780552999998], \"power_mean\": 127.69703228087997, \"energy_millijoules\": 6490.5876275295495, \"energy_joules\": 6.49058762752955, \"coremark_score\": 4919.226304, \"coremarks_per_mhz\": 3.713184106280193, \"ulpmark_cm_score\": 38.51731373899579}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [572.427719425, 572.49505228, 572.49505228, 572.56224744], \"power_mean\": 572.49501785625, \"energy_millijoules\": 2862.47508928125, \"energy_joules\": 2.86247508928125}}, \"1516800\": {\"active\": {\"elapsed_sec\": 44.392752431, \"elapsed_ns\": 44392752431, \"power_samples\": [135.21674377599993, 134.84020873399993, 134.84020873399993, 128.6812730360001, 128.84711593199995, 128.84711593199995, 132.77455402200007, 132.77455402200007, 132.77455402200007, 128.6812730360001, 132.73285491000013, 126.65755558000001, 126.65755558000001, 132.77455402200007, 134.756572366, 134.756572366, 128.72273375999998, 128.63964239099994, 128.63964239099994, 134.71458279599995, 126.65755558000001, 126.65755558000001, 132.60758667599998, 134.756572366, 134.756572366, 138.68181216100004, 128.55672094300007, 128.55672094300007, 128.55672094300007, 128.55672094300007, 132.60758667599998, 132.60758667599998, 132.60758667599998, 128.55672094300007, 128.55672094300007, 136.57043166799997, 122.44139219399995, 122.44139219399995, 132.52418845199998, 126.45067788699998, 126.45067788699998, 142.68623694899986, 128.55672094300007, 128.55672094300007], \"power_mean\": 130.84747833954546, \"energy_millijoules\": 5808.679712148077, \"energy_joules\": 5.808679712148077, \"coremark_score\": 5632.406615, \"coremarks_per_mhz\": 3.7133482430116036, \"ulpmark_cm_score\": 43.03904026196494}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [582.335988816, 582.335988816, 570.193971706, 588.458497351], \"power_mean\": 580.83111167225, \"energy_millijoules\": 2904.15555836125, \"energy_joules\": 2.90415555836125}}, \"1612800\": {\"active\": {\"elapsed_sec\": 41.751717172, \"elapsed_ns\": 41751717172, \"power_samples\": [2.135782793999965, 132.56588756399992, 148.67480062200013, 148.67480062200013, 138.59769901699997, 134.58912824399988, 134.58912824399988, 134.58912824399988, 134.50549187600006, 134.5473100600001, 134.5473100600001, 134.421684122, 144.458965594, 144.458965594, 138.38724379400014, 134.50549187600006, 134.50549187600006, 136.36057351400007, 138.47135693799999, 138.47135693799999, 178.41390714599993, 168.30309230700004, 184.43725618899998, 184.43725618899998, 178.458346378, 172.38984318300004, 172.38984318300004, 182.41604070899996, 136.2347617459999, 136.2347617459999, 136.31863625799986, 136.19282449000002, 136.19282449000002, 136.31863625799986, 136.31863625799986, 136.31863625799986, 142.39000059800003, 132.273822882, 132.273822882, 136.2347617459999, 138.26107407799987], \"power_mean\": 141.82600933090242, \"energy_millijoules\": 5921.479429217271, \"energy_joules\": 5.921479429217271, \"coremark_score\": 5988.59771, \"coremarks_per_mhz\": 3.71316822296627, \"ulpmark_cm_score\": 42.21917900558276}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [578.00843548, 582.1308297119999, 582.1308297119999, 574.0517023379999], \"power_mean\": 579.0804493105, \"energy_millijoules\": 2895.4022465524995, \"energy_joules\": 2.8954022465524996}}, \"1708800\": {\"active\": {\"elapsed_sec\": 39.406920453, \"elapsed_ns\": 39406920453, \"power_samples\": [148.589321466, 148.589321466, 144.33172349799997, 142.30541116599989, 136.15071536000005, 136.15071536000005, 152.33858455300003, 146.26865151800007, 146.26865151800007, 144.28930946600008, 142.220648395, 142.220648395, 775.9310041780001, 146.22611841399998, 146.22611841399998, 146.22611841399998, 148.24792925400004, 148.24792925400004, 148.24792925400004, 142.09376424699997, 142.178353679, 142.178353679, 146.05598599799998, 146.09851910200007, 146.09851910200007, 142.00917481499994, 146.09851910200007, 146.09851910200007, 138.05061885500004, 142.05146953100007, 142.05146953100007, 154.18847592100008, 152.16702229700002, 152.16702229700002, 141.96688009900004, 158.06235615000003, 144.07706547800012, 144.07706547800012, 142.00917481499994], \"power_mean\": 161.50910714412822, \"energy_millijoules\": 6364.576537663715, \"energy_joules\": 6.364576537663715, \"coremark_score\": 6344.855591, \"coremarks_per_mhz\": 3.713047513459738, \"ulpmark_cm_score\": 39.27991100752307}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [579.8649987839999, 579.8649987839999, 573.849264243, 573.849264243], \"power_mean\": 576.8571315135, \"energy_millijoules\": 2884.2856575675, \"energy_joules\": 2.8842856575675}}}}, \"6\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 134.260839168, \"elapsed_ns\": 134260839168, \"power_samples\": [88.1469508859999, 88.1469508859999, 77.94370354, 75.88198064400001, 75.88198064400001, 73.89698403600005, 73.97347217999993, 73.97347217999993, 76.03559044600013, 75.99707007599989, 75.99707007599989, 77.90522132399985, 73.89698403600005, 73.89698403600005, 77.90522132399985, 75.99707007599989, 73.89698403600005, 73.89698403600005, 82.0720104809999, 65.87493387899985, 65.87493387899985, 86.04128877699998, 73.85873996399994, 73.85873996399994, 73.82049589200005, 77.94370354, 77.94370354, 81.99456927300014, 74.01187299000003, 74.01187299000003, 81.99456927300014, 73.89698403600005, 73.85873996399994, 73.85873996399994, 71.86947805500006, 74.01187299000003, 74.01187299000003, 73.89698403600005, 75.92034378800008, 75.92034378800008, 77.86673910800005, 81.99456927300014, 81.99456927300014, 81.91712806500004, 92.07619805399997, 92.07619805399997, 77.90522132399985, 81.95584866899992, 73.82049589200005, 73.82049589200005, 81.80080756199993, 81.91712806500004, 81.91712806500004, 75.92034378800008, 81.95584866899992, 81.95584866899992, 75.88198064400001, 81.87840746100005, 81.87840746100005, 97.87218780599994, 75.88198064400001, 75.88198064400001, 81.80080756199993, 75.80525435600009, 77.90522132399985, 77.90522132399985, 75.80525435600009, 75.80525435600009, 75.80525435600009, 73.70560693799996, 73.78225182000006, 73.78225182000006, 67.7090987150001, 75.84361750000005, 75.84361750000005, 73.70560693799996, 73.62911879400008, 73.62911879400008, 85.84633537000002, 77.75113474599993, 75.80525435600009, 75.80525435600009, 77.82825689200013, 73.70560693799996, 73.70560693799996, 75.65164455400009, 75.65164455400009, 75.65164455400009, 75.65164455400009, 85.76841787400008, 85.76841787400008, 77.6741703140001, 71.67869802599989, 71.67869802599989, 77.63568809799995, 71.602448514, 77.55872366599988, 77.55872366599988, 81.60720454199998, 71.602448514, 71.602448514, 67.51951038200002, 77.75113474599993, 77.75113474599993, 67.44373715799986, 77.63568809799995, 77.63568809799995, 707.9134940550003, 77.63568809799995, 77.63568809799995, 75.6132814099999, 73.59087472199997, 73.59087472199997, 75.53655512199987, 71.56432375799989, 73.59087472199997, 73.59087472199997, 75.53655512199987, 81.60720454199998, 81.60720454199998, 73.59087472199997, 73.51438657799986, 73.51438657799986, 73.47614250599997, 77.55872366599988, 77.55872366599988, 87.56045961400002, 81.68464574999996, 81.68464574999996, 81.60720454199998, 71.48807424599988, 73.51438657799986, 73.51438657799986], \"power_mean\": 81.67110587313533, \"energy_millijoules\": 10965.231210305723, \"energy_joules\": 10.965231210305722, \"coremark_score\": 1862.322241, \"coremarks_per_mhz\": 6.2077408033333334, \"ulpmark_cm_score\": 22.79933684982733}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [587.7670596680001, 581.6518448639999, 581.6518448639999, 587.6979583799999], \"power_mean\": 584.692176944, \"energy_millijoules\": 2923.46088472, \"energy_joules\": 2.9234608847200003}}, \"652800\": {\"active\": {\"elapsed_sec\": 61.614808779, \"elapsed_ns\": 61614808779, \"power_samples\": [5.334975785999973, 115.55624821799995, 121.5366150179999, 121.5366150179999, 123.43753857900003, 123.43753857900003, 123.43753857900003, 127.47806243500008, 123.39631599899997, 123.39631599899997, 123.35509341900001, 127.43660171099998, 127.43660171099998, 125.41645885499997, 121.33093024200002, 123.27264825899988, 123.27264825899988, 121.33093024200002, 121.37203350599998, 121.37203350599998, 131.3559297239999, 123.35509341900001, 123.35509341900001, 121.33093024200002, 127.3122195389999, 127.3122195389999, 123.35509341900001, 137.33531240500008, 137.33531240500008, 127.22929809100003, 121.20762044999992, 125.25109224699997, 125.25109224699997, 127.27075881499991, 125.25109224699997, 125.25109224699997, 121.20762044999992, 121.20762044999992, 121.20762044999992, 131.2725315, 133.33389718, 133.33389718, 125.20975059500006, 127.27075881499991, 127.27075881499991, 127.22929809100003, 123.06636641400007, 123.1489805189999, 123.1489805189999, 121.16651718599996, 131.10556415399992, 131.10556415399992, 125.08555620599998, 123.1489805189999, 123.1489805189999, 125.08555620599998, 125.04421455399995, 125.04421455399995, 125.04421455399995, 127.22929809100003, 127.22929809100003], \"power_mean\": 123.28277105149178, \"energy_millijoules\": 7596.044364082903, \"energy_joules\": 7.5960443640829025, \"coremark_score\": 4058.771004, \"coremarks_per_mhz\": 6.217480091911765, \"ulpmark_cm_score\": 32.91186675819045}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [579.3193940479999, 579.3193940479999, 587.3867193819999, 581.309632752], \"power_mean\": 581.8337850574999, \"energy_millijoules\": 2909.1689252874994, \"energy_joules\": 2.9091689252874993}}, \"825600\": {\"active\": {\"elapsed_sec\": 48.745754565, \"elapsed_ns\": 48745754565, \"power_samples\": [-4.992459651000104, 147.0957960899999, 153.06952030900015, 153.06952030900015, 153.02651067299996, 147.01031693400012, 147.05296911000005, 147.05296911000005, 147.01031693400012, 142.973605334, 142.973605334, 146.96766475799996, 151.05116450900016, 151.05116450900016, 144.94942802999992, 146.96766475799996, 146.96766475799996, 154.95848998500014, 144.8643618220001, 144.8643618220001, 142.80394920599997, 142.8463632380001, 144.8643618220001, 144.8643618220001, 146.83970822999993, 146.83970822999993, 146.83970822999993, 146.83970822999993, 150.87960225300003, 150.87960225300003, 152.94049140100003, 146.8823604060001, 146.8823604060001, 142.76153517400007, 150.87960225300003, 150.87960225300003, 152.811286224, 144.821828718, 779.231041179, 779.231041179, 146.797056054, 140.73963997900012, 140.73963997900012, 142.71894731400005, 144.7365881940001, 144.7365881940001, 140.73963997900012, 144.60898888200006], \"power_mean\": 170.11708222331254, \"energy_millijoules\": 8292.485537371516, \"energy_joules\": 8.292485537371517, \"coremark_score\": 5130.731027, \"coremarks_per_mhz\": 6.214548240067829, \"ulpmark_cm_score\": 30.14777642642027}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [570.847806995, 578.9785132799999, 578.9785132799999, 570.8814045749999], \"power_mean\": 574.9215595324999, \"energy_millijoules\": 2874.6077976624997, \"energy_joules\": 2.8746077976624997}}, \"979200\": {\"active\": {\"elapsed_sec\": 41.108471964, \"elapsed_ns\": 41108471964, \"power_samples\": [180.76187013899994, 180.76187013899994, 180.6725148989999, 172.55790652200005, 172.55790652200005, 176.63524509799993, 180.62783727900012, 180.62783727900012, 184.705652387, 172.55790652200005, 176.50192740199998, 176.50192740199998, 176.41286680999985, 176.50192740199998, 176.50192740199998, 184.4808894859999, 182.5098968750001, 182.5098968750001, 180.44894369399992, 176.36842757800002, 176.36842757800002, 186.50099347399987, 176.36842757800002, 176.36842757800002, 182.46491658999992, 186.50099347399987, 186.36588823399995, 186.36588823399995, 180.27023321399997, 182.33052651399987, 182.33052651399987, 180.27023321399997, 182.33052651399987, 182.33052651399987, 170.3167352580001, 180.31491083399987, 180.31491083399987, 182.33052651399987, 176.19067065000002, 176.19067065000002], \"power_mean\": 179.60075344189997, \"energy_millijoules\": 7383.112537579622, \"energy_joules\": 7.383112537579622, \"coremark_score\": 6084.649646, \"coremarks_per_mhz\": 6.213898739787581, \"ulpmark_cm_score\": 33.86105774868177}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [570.64608382, 570.57888866, 576.64953808, 576.64953808], \"power_mean\": 573.63101216, \"energy_millijoules\": 2868.1550608, \"energy_joules\": 2.8681550608}}, \"1132800\": {\"active\": {\"elapsed_sec\": 35.51392983, \"elapsed_ns\": 35513929830, \"power_samples\": [-5.6310890610000115, 220.27120112399996, 214.22721327600004, 214.22721327600004, 214.0869126780001, 212.2084222530001, 216.0543954540001, 216.0543954540001, 214.040209614, 212.02189634400008, 212.02189634400008, 213.9935065499999, 214.040209614, 214.040209614, 235.968568204, 213.90010042200015, 213.90010042200015, 215.91392904600013, 209.82185179999988, 209.82185179999988, 211.88214510000012, 211.835561352, 211.88214510000012, 211.88214510000012, 213.90010042200015, 213.80669429400007, 213.80669429400007, 221.91236201999993, 215.82028477400002, 215.82028477400002, 213.7599912300002, 235.77631707500007, 235.77631707500007, 219.706092024, 219.80040545400004], \"power_mean\": 209.95287240902863, \"energy_millijoules\": 7456.251578341186, \"energy_joules\": 7.4562515783411865, \"coremark_score\": 7043.443962, \"coremarks_per_mhz\": 6.217729486228814, \"ulpmark_cm_score\": 33.52891159496233}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [570.309970325, 568.3180912739999, 568.3180912739999, 572.364902457], \"power_mean\": 569.8277638325, \"energy_millijoules\": 2849.1388191624997, \"energy_joules\": 2.8491388191624996}}, \"1363200\": {\"active\": {\"elapsed_sec\": 29.471838479, \"elapsed_ns\": 29471838479, \"power_samples\": [263.72779839, 263.72779839, 265.49131302600006, 271.430681532, 271.430681532, 263.47939053000005, 265.3915076369999, 265.4415123819999, 265.4415123819999, 265.49131302600006, 265.2919063489999, 265.2919063489999, 269.4189976680001, 269.3189196039999, 269.3189196039999, 265.2919063489999, 263.280460629, 263.280460629, 271.28020721999997, 265.042699028, 265.042699028, 271.23004911600003, 263.031849156, 275.101068982, 275.101068982, 269.06851936600003, 265.042699028, 265.042699028, 272.9896647579999], \"power_mean\": 267.22483481724134, \"energy_millijoules\": 7875.607169311192, \"energy_joules\": 7.875607169311191, \"coremark_score\": 8488.099684, \"coremarks_per_mhz\": 6.226598946596244, \"ulpmark_cm_score\": 31.743584288227677}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [570.040914295, 578.1603156479999, 576.13993416, 576.13993416], \"power_mean\": 575.12027456575, \"energy_millijoules\": 2875.6013728287503, \"energy_joules\": 2.87560137282875}}, \"1536000\": {\"active\": {\"elapsed_sec\": 26.139117542, \"elapsed_ns\": 26139117542, \"power_samples\": [323.7633181169999, 318.7852000989999, 318.7852000989999, 314.65644470200004, 318.67916501900004, 318.67916501900004, 330.631406482, 318.572912654, 318.572912654, 320.58197547, 322.43127123399995, 322.43127123399995, 322.43127123399995, 322.43127123399995, 322.27128592099996, 322.27128592099996, 324.3332273220001, 330.470209834, 330.470209834, 320.3162924100001, 328.461504234, 328.461504234, 328.30044507599996, 322.218030237, 322.218030237, 324.172884305], \"power_mean\": 322.89991133907694, \"energy_millijoules\": 8440.318736793512, \"energy_joules\": 8.440318736793511, \"coremark_score\": 9571.209801, \"coremarks_per_mhz\": 6.231256380859375, \"ulpmark_cm_score\": 29.619734490616565}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [587.919381876, 587.919381876, 577.955731328, 575.93606476], \"power_mean\": 582.43263996, \"energy_millijoules\": 2912.1631998, \"energy_joules\": 2.9121631997999997}}, \"1747200\": {\"active\": {\"elapsed_sec\": 22.976838585, \"elapsed_ns\": 22976838585, \"power_samples\": [350.53499733499996, 389.449667889, 389.449667889, 397.4198572900001, 401.25724857, 393.23118414600003, 393.23118414600003, 397.18848805799996, 399.19385768999996, 399.19385768999996, 393.17363942999987, 403.20870631799994, 403.20870631799994, 391.05341851000014, 399.078053338, 399.078053338, 396.95711882600006, 392.94322472700003, 392.94322472700003, 398.8462073300001, 400.79284079399997, 396.6682033060001], \"power_mean\": 394.4591548938636, \"energy_millijoules\": 9063.424330371818, \"energy_joules\": 9.063424330371818, \"coremark_score\": 10889.450301, \"coremarks_per_mhz\": 6.232515053228022, \"ulpmark_cm_score\": 27.583393526246166}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [569.57041048, 569.57041048, 569.6712032199999, 569.5366752049999], \"power_mean\": 569.5871748462499, \"energy_millijoules\": 2847.9358742312497, \"energy_joules\": 2.8479358742312497}}, \"1843200\": {\"active\": {\"elapsed_sec\": 21.949765356, \"elapsed_ns\": 21949765356, \"power_samples\": [-6.572372081000026, 430.941222217, 422.6174855480001, 422.677060483, 422.677060483, 436.593945188, 418.432086936, 418.432086936, 420.317363184, 422.320826688, 422.320826688, 418.25480605200005, 422.26149491600006, 422.26149491600006, 428.2756334259999, 422.26149491600006, 422.26149491600006, 426.1529045340001, 420.13948240900015, 427.97694263799997, 427.97694263799997], \"power_mean\": 403.26572779195243, \"energy_millijoules\": 8851.588101149924, \"energy_joules\": 8.851588101149924, \"coremark_score\": 11399.388993, \"coremarks_per_mhz\": 6.184564340820312, \"ulpmark_cm_score\": 28.24351937111964}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [571.352850165, 585.45075051, 585.45075051, 595.57837971], \"power_mean\": 584.45818272375, \"energy_millijoules\": 2922.29091361875, \"energy_joules\": 2.92229091361875}}, \"1996800\": {\"active\": {\"elapsed_sec\": 20.202710722, \"elapsed_ns\": 20202710722, \"power_samples\": [9.40699225600008, 495.53751211400015, 494.963328574, 494.963328574, 496.9639323980001, 494.83584833400016, 494.83584833400016, 496.90007320600023, 498.70862316600017, 498.70862316600017, 496.6446364379998, 496.58077724600014, 496.58077724600014, 496.58077724600014, 496.3250787600001, 496.516656336, 498.5164261680003, 496.516656336, 496.261219568, 496.261219568], \"power_mean\": 472.13041675170007, \"energy_millijoules\": 9538.314232691899, \"energy_joules\": 9.5383142326919, \"coremark_score\": 12387.27579, \"coremarks_per_mhz\": 6.203563596754807, \"ulpmark_cm_score\": 26.210082190744213}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [571.082840583, 571.082840583, 579.22272744, 569.1333665499999], \"power_mean\": 572.630443789, \"energy_millijoules\": 2863.1522189449997, \"energy_joules\": 2.863152218945}}, \"2054400\": {\"active\": {\"elapsed_sec\": 19.70519593, \"elapsed_ns\": 19705195930, \"power_samples\": [-4.891816382999991, 536.3379140219998, 538.2046043019999, 538.2046043019999, 534.0696421340002, 545.670423334, 545.670423334, 535.6087079979999, 539.604911694, 539.604911694, 533.6065116790002, 535.6087079979999, 535.6087079979999, 535.4099817099999, 545.2691232090002, 537.3413651739999, 537.3413651739999, 537.3413651739999, 539.2725104939999], \"power_mean\": 509.73073500215787, \"energy_millijoules\": 10044.344004760429, \"energy_joules\": 10.044344004760429, \"coremark_score\": 12699.38027, \"coremarks_per_mhz\": 6.181551922702492, \"ulpmark_cm_score\": 24.8896294154715}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [570.8805406710001, 570.8805406710001, 578.914708512, 570.981690627], \"power_mean\": 572.91437012025, \"energy_millijoules\": 2864.5718506012504, \"energy_joules\": 2.8645718506012505}}, \"2169600\": {\"active\": {\"elapsed_sec\": 18.506847337, \"elapsed_ns\": 18506847337, \"power_samples\": [608.660678934, 608.660678934, 602.3151755789999, 615.8680068699999, 615.8680068699999, 617.9385841860002, 605.9582361060001, 605.9582361060001, 601.822838314, 611.593967206, 611.593967206, 621.42862533, 625.4217679489999, 625.4217679489999, 613.446427239, 617.011801578, 625.0631550490001, 625.0631550490001], \"power_mean\": 614.3941709141111, \"energy_millijoules\": 11370.49912585014, \"energy_joules\": 11.37049912585014, \"coremark_score\": 13523.016174, \"coremarks_per_mhz\": 6.2329536200221245, \"ulpmark_cm_score\": 21.986721711418998}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [586.670561655, 576.728365056, 576.728365056, 574.8488076799999], \"power_mean\": 578.74402486175, \"energy_millijoules\": 2893.7201243087497, \"energy_joules\": 2.8937201243087496}}, \"2208000\": {\"active\": {\"elapsed_sec\": 18.261290253, \"elapsed_ns\": 18261290253, \"power_samples\": [85.01894405000007, 615.583499942, 631.1931981840002, 631.1931981840002, 623.1367400099999, 617.1545856660001, 617.1545856660001, 621.142688562, 615.1564480469998, 615.1564480469998, 626.9849513400001, 621.0712043700001, 621.0712043700001, 614.8005228839999, 616.8693094820002, 616.8693094820002, 626.6975847320001, 614.8005228839999], \"power_mean\": 590.6141636612223, \"energy_millijoules\": 10785.376670150425, \"energy_joules\": 10.785376670150425, \"coremark_score\": 13705.388959, \"coremarks_per_mhz\": 6.207150796648551, \"ulpmark_cm_score\": 23.179533515217805}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [570.374376342, 570.374376342, 576.455632512, 574.5770282000001], \"power_mean\": 572.945353349, \"energy_millijoules\": 2864.726766745, \"energy_joules\": 2.864726766745}}, \"2304000\": {\"active\": {\"elapsed_sec\": 17.433409837, \"elapsed_ns\": 17433409837, \"power_samples\": [687.2094091770001, 683.859042871, 683.859042871, 691.453006282, 695.1360666870002, 695.1360666870002, 691.1496028399998, 691.0738296160001, 691.0738296160001, 690.77073672, 690.922283168, 690.922283168, 694.60367388, 692.6092375019999, 692.6092375019999, 700.5024567380002, 694.3756390440002], \"power_mean\": 691.6038496687647, \"energy_millijoules\": 12057.013356122512, \"energy_joules\": 12.057013356122512, \"coremark_score\": 14357.089531, \"coremarks_per_mhz\": 6.231375664496528, \"ulpmark_cm_score\": 20.734819860927733}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [576.182899968, 568.15848595, 568.22568111, 568.22568111], \"power_mean\": 570.1981870345, \"energy_millijoules\": 2850.9909351725, \"energy_joules\": 2.8509909351725002}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sdm712/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 576 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 748 998 1209 1324 1516 1612 1708\n\n 300:  1114     3.7 C/MHz     73 mW   16.4 J   15.2 I/mJ   224.5 s\n 576:  2139     3.7 C/MHz     81 mW    9.4 J   26.5 I/mJ   116.9 s\n 748:  2780     3.7 C/MHz     84 mW    7.5 J   33.2 I/mJ    89.9 s\n 998:  3707     3.7 C/MHz    107 mW    7.2 J   34.6 I/mJ    67.4 s\n1209:  4491     3.7 C/MHz    110 mW    6.1 J   41.0 I/mJ    55.7 s\n1324:  4919     3.7 C/MHz    128 mW    6.5 J   38.5 I/mJ    50.8 s\n1516:  5632     3.7 C/MHz    131 mW    5.8 J   43.0 I/mJ    44.4 s\n1612:  5989     3.7 C/MHz    142 mW    5.9 J   42.2 I/mJ    41.8 s\n1708:  6345     3.7 C/MHz    162 mW    6.4 J   39.3 I/mJ    39.4 s\n\n\n===== CPU 6 =====\nFrequencies: 300 652 825 979 1132 1363 1536 1747 1843 1996 2054 2169 2208 2304\n\n 300:  1862     6.2 C/MHz     82 mW   11.0 J   22.8 I/mJ   134.3 s\n 652:  4059     6.2 C/MHz    123 mW    7.6 J   32.9 I/mJ    61.6 s\n 825:  5131     6.2 C/MHz    170 mW    8.3 J   30.1 I/mJ    48.7 s\n 979:  6085     6.2 C/MHz    180 mW    7.4 J   33.9 I/mJ    41.1 s\n1132:  7043     6.2 C/MHz    210 mW    7.5 J   33.5 I/mJ    35.5 s\n1363:  8488     6.2 C/MHz    267 mW    7.9 J   31.7 I/mJ    29.5 s\n1536:  9571     6.2 C/MHz    323 mW    8.4 J   29.6 I/mJ    26.1 s\n1747: 10889     6.2 C/MHz    394 mW    9.1 J   27.6 I/mJ    23.0 s\n1843: 11399     6.2 C/MHz    403 mW    8.9 J   28.2 I/mJ    21.9 s\n1996: 12387     6.2 C/MHz    472 mW    9.5 J   26.2 I/mJ    20.2 s\n2054: 12699     6.2 C/MHz    510 mW   10.0 J   24.9 I/mJ    19.7 s\n2169: 13523     6.2 C/MHz    614 mW   11.4 J   22.0 I/mJ    18.5 s\n2208: 13705     6.2 C/MHz    591 mW   10.8 J   23.2 I/mJ    18.3 s\n2304: 14357     6.2 C/MHz    692 mW   12.1 J   20.7 I/mJ    17.4 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sdm712/main/uptime.txt",
    "content": " 20:07:06 up 25 min,  load average: 0.77, 0.79, 0.68\n"
  },
  {
    "path": "results/sdm712/main/versions.txt",
    "content": "Kernel: Linux version 4.9.249~ms2+vanilla/79f05565 (NATO66613@KREMLIN) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project 52586c46b0883600a332fd64731dc5287981f980), GNU ld (GNU Binutils) 2.35.1) #1 SMP PREEMPT Tue Jan 26 08:17:00 UTC 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sdm712/second/cmdline.txt",
    "content": "rcupdate.rcu_expedited=1 core_ctl_disable_cpumask=6-7 console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0xA90000 androidboot.hardware=qcom androidboot.console=ttyMSM0 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 service_locator.enable=1 androidboot.configfs=true androidboot.usbcontroller=a600000.dwc3 swiotlb=4096 loop.max_part=16 androidboot.selinux=permissive buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=bec9b02a-910f-33f4-3db6-da34b157b521 androidboot.bootdevice=1d84000.ufshc androidboot.secureboot=1 androidboot.dp=0x0 androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.hwversion=3.19.0 androidboot.hwc=GLOBAL androidboot.hwlevel=MP androidboot.ramdump=disable androidboot.baseband=msm msm_drm.dsi_display0=dsi_ss_ea8076_fhd_cmd_display:config2 skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=1 androidboot.dtb_idx=0\n"
  },
  {
    "path": "results/sdm712/second/cpufreq_stats/0/time_in_state",
    "content": "300000 95191\n576000 12538\n748800 9831\n998400 7624\n1209600 6422\n1324800 5921\n1516800 5319\n1612800 5018\n1708800 5086\n"
  },
  {
    "path": "results/sdm712/second/cpufreq_stats/0/total_trans",
    "content": "12\n"
  },
  {
    "path": "results/sdm712/second/cpufreq_stats/6/time_in_state",
    "content": "300000 14287\n652800 7034\n825600 5731\n979200 4928\n1132800 4427\n1363200 3825\n1536000 3524\n1747200 3123\n1843200 3023\n1996800 2922\n2054400 2822\n2169600 2722\n2208000 2721\n2304000 91862\n"
  },
  {
    "path": "results/sdm712/second/cpufreq_stats/6/total_trans",
    "content": "16\n"
  },
  {
    "path": "results/sdm712/second/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 12 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x6\nCPU part\t: 0x802\nCPU revision\t: 13\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x6\nCPU part\t: 0x802\nCPU revision\t: 13\n\nHardware\t: Qualcomm Technologies, Inc SDM712\n"
  },
  {
    "path": "results/sdm712/second/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. SDM712 PM660 + PM660L, USB-C Audio, MTP, Xiaomi Grus;\nCompatible: qcom,sdm710-mtp;qcom,sdm710;qcom,mtp;\n"
  },
  {
    "path": "results/sdm712/second/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Linux version 4.9.249~ms2+vanilla/79f05565 (NATO66613@KREMLIN) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project 52586c46b0883600a332fd64731dc5287981f980), GNU ld (GNU Binutils) 2.35.1) #1 SMP PREEMPT Tue Jan 26 08:17:00 UTC 2021\n[    0.000000] Boot CPU: AArch64 Processor [517f803c]\n[    0.000000] Machine: Qualcomm Technologies, Inc. SDM712 PM660 + PM660L, USB-C Audio, MTP, Xiaomi Grus\n[    0.000000] core_ctl: disable_cpumask=6-7\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff400000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000001fb000000, size 36 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe000000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node sdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fc000000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6400000, size 92 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f5c00000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085700000, size 6 MiB\n[    0.000000] OF: reserved mem: initialized node hyp_region@85700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085e00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node xbl_region@85e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085fc0000, size 75 MiB\n[    0.000000] OF: reserved mem: initialized node removed_region@85fc0000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ab00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node camera_region@8ab00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b000000, size 126 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@8b000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000092e00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region@92e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093300000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_msa_region@93300000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093400000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_regions@93400000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000095200000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node pil_mba_region@0x93c00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000095400000, size 34 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region@93e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097600000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ips_fw_region@0x95c00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097610000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_gsi_region@0x95c10000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097615000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@0x95c15000, compatible id removed-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x000000009e400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@0x9e400000, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000009fd00000, size 12 MiB\n[    0.000000] OF: reserved mem: initialized node secure_dsp_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000af000000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node ramdump_fb_region@af000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000b0000000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node ramoops@b0000000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 1475753\n[    0.000000]   DMA zone: 6840 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 437737 pages, LIFO batch:31\n[    0.000000]   Normal zone: 16219 pages used for memmap\n[    0.000000]   Normal zone: 1038016 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] random: fast init done\n[    0.000000] percpu: Embedded 21 pages/cpu s46744 r8192 d31080 u86016\n[    0.000000] pcpu-alloc: s46744 r8192 d31080 u86016 alloc=21*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1452694\n[    0.000000] Kernel command line: rcupdate.rcu_expedited=1 core_ctl_disable_cpumask=6-7 console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0xA90000 androidboot.hardware=qcom androidboot.console=ttyMSM0 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 service_locator.enable=1 androidboot.configfs=true androidboot.usbcontroller=a600000.dwc3 swiotlb=4096 loop.max_part=16 androidboot.selinux=permissive buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=bec9b02a-910f-33f4-3db6-da34b157b521 androidboot.bootdevice=1d84000.ufshc androidboot.secureboot=1 androidboot.dp=0x0 androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.hwversion=3.19.0 androidboot.hwc=GLOBAL androidboot.hwlevel=MP androidboot.ramdump=disable androidboot.baseband=msm msm_drm.dsi_display0=dsi_ss_ea8076_fhd_cmd_display:config2 skip_initram\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 131072 bytes\n[    0.000000] log_buf_len: 1048576 bytes\n[    0.000000] early log buf free: 123692(94%)\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] software IO TLB: mapped [mem 0xf5400000-0xf5c00000] (8MB)\n[    0.000000] Memory: 5496892K/5903012K available (17918K kernel code, 2360K rwdata, 6424K rodata, 4096K init, 4498K bss, 205416K reserved, 200704K cma-reserved)\n[    0.000000] Virtual kernel memory layout:\n[    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n[    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)\n[    0.000000]       .text : 0x        (ptrval) - 0x        (ptrval)   ( 17920 KB)\n[    0.000000]     .rodata : 0x        (ptrval) - 0x        (ptrval)   (  8192 KB)\n[    0.000000]       .init : 0x        (ptrval) - 0x        (ptrval)   (  4096 KB)\n[    0.000000]       .data : 0x        (ptrval) - 0x        (ptrval)   (  2360 KB)\n[    0.000000]        .bss : 0x        (ptrval) - 0x        (ptrval)   (  4499 KB)\n[    0.000000]     fixed   : 0xffffffbefe7fb000 - 0xffffffbefec00000   (  4116 KB)\n[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)\n[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)\n[    0.000000]               0xffffffbf11000000 - 0xffffffbf16f5b000   (    95 MB actual)\n[    0.000000]     memory  : 0xffffffc440000000 - 0xffffffc5bd6c0000   (  6102 MB)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] NR_IRQS:64 nr_irqs:64 0\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from all CPUs\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arm_arch_timer: Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000005] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000024] clocksource: Switched to clocksource arch_sys_counter\n[    0.002112] Console: colour dummy device 80x25\n[    0.002134] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.002147] pid_max: default: 32768 minimum: 301\n[    0.002209] Security Framework initialized\n[    0.002219] SELinux:  Initializing.\n[    0.002267] SELinux:  Starting in permissive mode\n[    0.002292] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.002298] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.003360] /cpus/cpu@0: Missing clock-frequency property\n[    0.003369] /cpus/cpu@100: Missing clock-frequency property\n[    0.003375] /cpus/cpu@200: Missing clock-frequency property\n[    0.003381] /cpus/cpu@300: Missing clock-frequency property\n[    0.003387] /cpus/cpu@400: Missing clock-frequency property\n[    0.003393] /cpus/cpu@500: Missing clock-frequency property\n[    0.003401] /cpus/cpu@600: Missing clock-frequency property\n[    0.003406] /cpus/cpu@700: Missing clock-frequency property\n[    0.003476] sched-energy: Sched-energy-costs installed from DT\n[    0.011713] ASID allocator initialised with 32768 entries\n[    0.018039] MSM Memory Dump base table set up\n[    0.018054] MSM Memory Dump apps data table set up\n[    0.029406] CPU1: Booted secondary processor [517f803c]\n[    0.038419] CPU2: Booted secondary processor [517f803c]\n[    0.047479] CPU3: Booted secondary processor [517f803c]\n[    0.056663] CPU4: Booted secondary processor [517f803c]\n[    0.066017] CPU5: Booted secondary processor [517f803c]\n[    0.076261] CPU6: Booted secondary processor [516f802d]\n[    0.086346] CPU7: Booted secondary processor [516f802d]\n[    0.086666] Brought up 8 CPUs\n[    0.086670] SMP: Total of 8 processors activated.\n[    0.086676] CPU features: detected feature: GIC system register CPU interface\n[    0.086678] CPU features: detected feature: Privileged Access Never\n[    0.086681] CPU features: detected feature: User Access Override\n[    0.086684] CPU features: detected feature: 32-bit EL0 Support\n[    0.086686] CPU features: detected feature: Kernel page table isolation (KPTI)\n[    0.143984] CPU: All CPU(s) started at EL1\n[    0.144033] alternatives: patching kernel code\n[    0.147454] devtmpfs: initialized\n[    0.216591] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.216604] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.221048] pinctrl core: initialized pinctrl subsystem\n[    0.221795] NET: Registered protocol family 16\n[    0.223215] schedtune: init normalization constants...\n[    0.223224] schedtune: CLUSTER[0]        min_pwr:     1 max_pwr:    19\n[    0.223229] schedtune: CPU[0]            min_pwr:     4 max_pwr:   139\n[    0.223234] schedtune: SYSTEM            min_pwr:     5 max_pwr:   158\n[    0.223239] schedtune: using normalization constants mul: 2891383213 sh1: 1 sh2: 7\n[    0.223242] schedtune: configured to support 5 boost groups\n[    0.224979] cpuidle: using governor menu\n[    0.225000] cpuidle: using governor qcom\n[    0.229687] vdso32: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.229695] vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.229701] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.230486] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.230657] msm_smem_init: unable to create logging context\n[    0.230675] <CORE> glink_init: unable to create log context\n[    0.233449] exit: IPA_USB init success!\n[    0.233524] Failed to create IPC log0\n[    0.233526] Failed to create IPC log1\n[    0.233528] Failed to create IPC log2\n[    0.233530] Failed to create IPC log3\n[    0.233531] Failed to create IPC log4\n[    0.233987] pstore: using zlib compression\n[    0.234009] console [pstore-1] enabled\n[    0.234205] pstore: Registered ramoops as persistent store backend\n[    0.234209] ramoops: attached 0x400000@0xb0000000, ecc: 0/0\n[    0.237030] qupv3_geni_se 8c0000.qcom,qupv3_0_geni_se: geni_se_probe Failed to allocate log context\n[    0.237195] irq: no irq domain found for /soc/pinctrl@03400000 !\n[    0.237669] qupv3_geni_se ac0000.qcom,qupv3_1_geni_se: geni_se_probe Failed to allocate log context\n[    0.240864] OF: amba_device_add() failed (-16) for /soc/cti@6867000\n[    0.244177] irq: no irq domain found for /soc/qcom,mdss_mdp@ae00000 !\n[    0.244260] irq: no irq domain found for /soc/qcom,mdss_mdp@ae00000 !\n[    0.244346] irq: no irq domain found for /soc/qcom,mdss_mdp@ae00000 !\n[    0.245493] sps:sps is ready.\n[    0.248450] msm_watchdog 17980000.qcom,wdt: wdog absent resource not present\n[    0.248465] msm_watchdog 17980000.qcom,wdt: No need to allocate memory for scandumps\n[    0.249233] msm_watchdog 17980000.qcom,wdt: MSM Watchdog Initialized\n[    0.250321] platform soc:mem_dump: assigned reserved memory node mem_dump_region\n[    0.269127] <CORE> glink_core_register_transport: unable to create log context for [mpss:smem]\n[    0.269186] <CORE> glink_smem_native_probe: unable to create log context for [mpss:smem]\n[    0.269666] <CORE> glink_core_register_transport: unable to create log context for [lpass:smem]\n[    0.269725] <CORE> glink_smem_native_probe: unable to create log context for [lpass:smem]\n[    0.270454] <CORE> glink_core_register_transport: unable to create log context for [cdsp:smem]\n[    0.270505] <CORE> glink_smem_native_probe: unable to create log context for [cdsp:smem]\n[    0.280840] spmi spmi-0: PMIC arbiter version v5 (0x50000000)\n[    0.286385] platform 62400000.qcom,lpass: assigned reserved memory node pil_adsp_region@93e00000\n[    0.286593] (NULL device *): msm_gsi_probe:3185 failed to create IPC log, continue...\n[    0.286866] platform soc:qcom,ipa_fws: assigned reserved memory node ips_fw_region@0x95c00000\n[    0.287004] platform 4080000.qcom,mss: assigned reserved memory node modem_region@8b000000\n[    0.287077] platform aae0000.qcom,venus: assigned reserved memory node pil_video_region@92e00000\n[    0.287186] platform 8300000.qcom,turing: assigned reserved memory node cdsp_regions@93400000\n[    0.287508] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.291091] pm660l_s3_level: Bringing 1uV into 17-17uV\n[    0.291181] pm660l_s3_level: supplied by pm660l_s1_level\n[    0.291267] pm660l_s3_level_ao: Bringing 1uV into 17-17uV\n[    0.291351] pm660l_s3_level_ao: supplied by pm660l_s1_level_ao\n[    0.300826] sdm670-pinctrl 3400000.pinctrl: invalid resource\n[    0.311999] platform soc:qcom,kgsl-hyp: assigned reserved memory node gpu_region@0x95c15000\n[    0.336383] gpu_cx_gdsc: supplied by pm660l_s3_level\n[    0.345573] cam_cc-sdm845 ad00000.qcom,camcc: Registered Camera CC clocks\n[    0.347032] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.348281] clk-rpmh soc:qcom,rpmhclk: Registered RPMh clocks\n[    0.350599] disp_cc-sdm845 af00000.qcom,dispcc: Registered Display CC clocks\n[    0.364263] gcc-sdm845 100000.qcom,gcc: Registered GCC clocks\n[    0.365540] clk: gpu_cc_gx_gfx3d_clk_src: set OPP pair(180000000 Hz: 49 uV) on 5000000.qcom,kgsl-3d0\n[    0.365892] clk: gpu_cc_gx_gfx3d_clk_src: set OPP pair(700000000 Hz: 385 uV) on 5000000.qcom,kgsl-3d0\n[    0.365980] clk: gpu_cc_gx_gfx3d_clk_src: set OPP pair(780000000 Hz: 417 uV) on 5000000.qcom,kgsl-3d0\n[    0.366049] gfxcc-sdm845 5090000.qcom,gfxcc: Registered GFX CC clocks\n[    0.367819] clk: gpu_cc_gmu_clk_src: set OPP pair(19200000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.367871] clk: gpu_cc_gmu_clk_src: set OPP pair(200000000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.368040] gpu_cc-sdm845 5090000.qcom,gpucc: Registered GPU CC clocks\n[    0.369409] video_cc-sdm845 ab00000.qcom,videocc: Registered Video CC clocks\n[    0.371338] KPI: Bootloader start count = 62180\n[    0.371341] KPI: Bootloader end count = 106187\n[    0.371342] KPI: Bootloader display count = 3601372862\n[    0.371345] KPI: Bootloader load kernel count = 34259456\n[    0.371348] KPI: Kernel MPM timestamp = 126905\n[    0.371350] KPI: Kernel MPM Clock frequency = 32768\n[    0.371373] socinfo_print: v0.15, id=393, ver=1.1, raw_id=264, raw_ver=1, hw_plat=34, hw_plat_ver=1638400\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65563, pmic_die_revision=131072 foundry_id=3 serial_number=904022599 num_pmics=2 chip_family=0x55 raw_device_family=0x6 raw_device_number=0x4 nproduct_id=0x400 num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0x6 ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.371377] msm_bus_fabric_rpmh_init_driver\n[    0.371986] msm_bus: Probe started\n[    0.372539] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.372589] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.372603] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.372654] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.374804] msm_bus: DT Parsing complete\n[    0.378034] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.378218] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.378262] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.378449] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.391979] camera_viodd_ldo: supplied by pm660_s4\n[    0.393967] arm-smmu 5040000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.394043] arm-smmu 5040000.arm,smmu-kgsl: \tstream matching with 5 register groups, mask 0x7\n[    0.394150] arm-smmu 5040000.arm,smmu-kgsl: found 8 context interrupt(s) but have 5 context banks. assuming 5 context interrupts.\n[    0.396671] register_client_adhoc:find path.src 139 dest 627\n[    0.396956] register_client_adhoc:Client handle 1 apps_smmu\n[    0.397180] arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.397284] arm-smmu 15000000.apps-smmu: \tstream matching with 71 register groups, mask 0x7fff\n[    0.397927] arm-smmu 15000000.apps-smmu: found 64 context interrupt(s) but have 47 context banks. assuming 47 context interrupts.\n[    0.398653] register_client_adhoc:find path.src 139 dest 627\n[    0.398832] register_client_adhoc:Client handle 2 apps_smmu\n[    0.399118] register_client_adhoc:find path.src 139 dest 627\n[    0.399270] register_client_adhoc:Client handle 3 apps_smmu\n[    0.399508] register_client_adhoc:find path.src 22 dest 773\n[    0.399590] register_client_adhoc:Client handle 4 mnoc_hf_0_tbu\n[    0.399821] register_client_adhoc:find path.src 22 dest 773\n[    0.399890] register_client_adhoc:Client handle 5 mnoc_hf_1_tbu\n[    0.400177] register_client_adhoc:find path.src 137 dest 772\n[    0.400253] register_client_adhoc:Client handle 6 mnoc_sf_0_tbu\n[    0.400411] register_client_adhoc:find path.src 139 dest 627\n[    0.400561] register_client_adhoc:Client handle 7 apps_smmu\n[    0.400761] register_client_adhoc:find path.src 139 dest 627\n[    0.400898] register_client_adhoc:Client handle 8 apps_smmu\n[    0.401903] iommu: Adding device 8c0000.qcom,qupv3_0_geni_se:qcom,iommu_qupv3_0_geni_se_cb to group 0\n[    0.402067] iommu: Adding device ac0000.qcom,qupv3_1_geni_se:qcom,iommu_qupv3_1_geni_se_cb to group 1\n[    0.402218] iommu: Adding device ae00000.qcom,mdss_mdp to group 2\n[    0.402364] iommu: Adding device 1de0000.qcedev to group 3\n[    0.402503] iommu: Adding device 1de0000.qcrypto to group 4\n[    0.402655] iommu: Adding device 800000.qcom,gpi-dma to group 5\n[    0.402792] iommu: Adding device a00000.qcom,gpi-dma to group 6\n[    0.402967] iommu: Adding device 18800000.qcom,icnss to group 7\n[    0.403135] iommu: Adding device soc:apps_iommu_test_device to group 8\n[    0.403270] iommu: Adding device soc:apps_iommu_coherent_test_device to group 8\n[    0.403433] iommu: Adding device soc:qcom,msm-audio-ion to group 9\n[    0.403582] iommu: Adding device a600000.ssusb to group 10\n[    0.403722] iommu: Adding device soc:usb_audio_qmi_dev to group 11\n[    0.405935] qcom,qpnp-misc c440000.qcom,spmi:qcom,pm660@0:qcom,misc@900: probe successful\n[    0.406846] SCSI subsystem initialized\n[    0.406961] usbcore: registered new interface driver usbfs\n[    0.406989] usbcore: registered new interface driver hub\n[    0.407150] usbcore: registered new device driver usb\n[    0.407909] soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.408552] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.408581] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)\n[    0.408803] input: qpnp_pon as /devices/virtual/input/input0\n[    0.409803] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: No PON config. specified\n[    0.409859] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (secondary PMIC) and 'cold' boot\n[    0.409887] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm660l@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from GP1 (Keypad_Reset1)\n[    0.410444] media: Linux media interface: v0.10\n[    0.410470] Linux video capture interface: v2.00\n[    0.421519] Unable to get pmic_revid rc=-22\n[    0.423263] Linux cec interface: v0.10\n[    0.423674] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@0x9e400000\n[    0.423789] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.423879] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.423958] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.424115] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node sdsp_region\n[    0.424510] ION heap system created\n[    0.424631] ION heap qsecom created at 0x000000009e400000 with size 1400000\n[    0.424639] ION heap qsecom_ta created at 0x00000000fe400000 with size 1000000\n[    0.424647] ION heap spss created at 0x00000000f5c00000 with size 800000\n[    0.424655] ION heap secure_display created at 0x00000000f6400000 with size 5c00000\n[    0.424665] ION heap secure_heap created\n[    0.424680] ION heap adsp created at 0x00000000fe000000 with size 400000\n[    0.437520] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x9fd00000, size 0xc00000\n[    0.437525] ION heap secure_carveout created\n[    0.439033] ipa ipa3_tz_unlock_reg:5243 Bad parameters\n[    0.439037] ipa ipa3_pre_init:5445 Failed to unlock memory region using TZ\n[    0.439137] register_client_adhoc:find path.src 90 dest 512\n[    0.439669] register_client_adhoc:find path.src 90 dest 585\n[    0.439803] register_client_adhoc:find path.src 1 dest 676\n[    0.440106] register_client_adhoc:find path.src 143 dest 777\n[    0.440177] register_client_adhoc:Client handle 9 ipa\n[    0.440738] ipa ipa3_uc_state_check:284 uC interface not initialized\n[    0.444405] ipa ipa3_uc_state_check:284 uC interface not initialized\n[    0.445071] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_ap to group 12\n[    0.445334] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_wlan to group 13\n[    0.445566] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_uc to group 14\n[    0.446801] PMIC@SID0: PM660 v2.0 options: 0, 0, 0, 0\n[    0.446929] PMIC@SID2: PM660L v2.0.1 options: 0, 0, 0, 0\n[    0.451902] Advanced Linux Sound Architecture Driver Initialized.\n[    0.452421] Bluetooth: Core ver 2.22\n[    0.452448] NET: Registered protocol family 31\n[    0.452450] Bluetooth: HCI device and connection manager initialized\n[    0.452459] Bluetooth: HCI socket layer initialized\n[    0.452465] Bluetooth: L2CAP socket layer initialized\n[    0.452487] Bluetooth: SCO socket layer initialized\n[    0.454334] register_client_adhoc:find path.src 22 dest 512\n[    0.454653] register_client_adhoc:find path.src 23 dest 512\n[    0.454869] register_client_adhoc:Client handle 10 bus-proxy-client\n[    0.456156] gpu_gx_gdsc: supplied by pm660l_s2_level\n[    0.457555] clk: add_opp: Set OPP pair (300000000 Hz, 592000 uv) on cpu0\n[    0.457885] clk: add_opp: Set OPP pair (1708800000 Hz, 772000 uv) on cpu0\n[    0.457941] clk: add_opp: Set OPP pair (300000000 Hz, 592000 uv) on cpu1\n[    0.458246] clk: add_opp: Set OPP pair (1708800000 Hz, 772000 uv) on cpu1\n[    0.458304] clk: add_opp: Set OPP pair (300000000 Hz, 592000 uv) on cpu2\n[    0.458606] clk: add_opp: Set OPP pair (1708800000 Hz, 772000 uv) on cpu2\n[    0.458669] clk: add_opp: Set OPP pair (300000000 Hz, 592000 uv) on cpu3\n[    0.458969] clk: add_opp: Set OPP pair (1708800000 Hz, 772000 uv) on cpu3\n[    0.459032] clk: add_opp: Set OPP pair (300000000 Hz, 592000 uv) on cpu4\n[    0.459347] clk: add_opp: Set OPP pair (1708800000 Hz, 772000 uv) on cpu4\n[    0.459398] clk: add_opp: Set OPP pair (300000000 Hz, 592000 uv) on cpu5\n[    0.459721] clk: add_opp: Set OPP pair (1708800000 Hz, 772000 uv) on cpu5\n[    0.459770] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu6\n[    0.460376] clk: add_opp: Set OPP pair (2304000000 Hz, 920000 uv) on cpu6\n[    0.460435] clk: add_opp: Set OPP pair (300000000 Hz, 584000 uv) on cpu7\n[    0.460958] clk: add_opp: Set OPP pair (2304000000 Hz, 920000 uv) on cpu7\n[    0.461297] clk: add_opp: Set OPP pair (300000000 Hz, 592000 uv) on soc:qcom,l3-cpu0\n[    0.461300] clk: add_opp: Set OPP pair (300000000 Hz, 592000 uv) on soc:qcom,l3-cpu6\n[    0.461302] clk: add_opp: Set OPP pair (300000000 Hz, 592000 uv) on soc:qcom,l3-cdsp\n[    0.462471] clk: add_opp: Set OPP pair (1440000000 Hz, 768000 uv) on soc:qcom,l3-cpu0\n[    0.462474] clk: add_opp: Set OPP pair (1440000000 Hz, 768000 uv) on soc:qcom,l3-cpu6\n[    0.462477] clk: add_opp: Set OPP pair (1440000000 Hz, 768000 uv) on soc:qcom,l3-cdsp\n[    0.464304] cpufreq: driver osm-cpufreq up and running\n[    0.464306] clk: clk_cpu_osm_driver_probe: OSM CPUFreq driver inited\n[    0.466421] sched-energy energy-costs: cpu=0 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.466425] CPU0: update cpu_capacity 448\n[    0.466432] sched-energy energy-costs: cpu=1 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.466434] CPU1: update cpu_capacity 448\n[    0.466440] sched-energy energy-costs: cpu=2 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.466442] CPU2: update cpu_capacity 448\n[    0.466447] sched-energy energy-costs: cpu=3 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.466448] CPU3: update cpu_capacity 448\n[    0.466454] sched-energy energy-costs: cpu=4 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.466455] CPU4: update cpu_capacity 448\n[    0.466461] sched-energy energy-costs: cpu=5 eff=1024 [freq=300000 cap=79 power_d0=14] -> [freq=1708800 cap=448 power_d0=139]\n[    0.466463] CPU5: update cpu_capacity 448\n[    0.466470] sched-energy energy-costs: cpu=6 eff=1740 [freq=300000 cap=134 power_d0=256] -> [freq=2611200 cap=1024 power_d0=1400]\n[    0.466472] CPU6: update cpu_capacity 1024\n[    0.466477] sched-energy energy-costs: cpu=7 eff=1740 [freq=300000 cap=134 power_d0=256] -> [freq=2611200 cap=1024 power_d0=1400]\n[    0.466478] CPU7: update cpu_capacity 1024\n[    0.466651] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.467337] clocksource: Switched to clocksource arch_sys_counter\n[    0.467504] VFS: Disk quotas dquot_6.6.0\n[    0.467552] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.468110] debugcc-sdm845 soc:qcom,cc-debug: Registered debug mux successfully\n[    0.468841] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.469099] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.469105] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.469111] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.469116] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.469122] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.469696] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=0, clocks successfully\n[    0.469720] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.469802] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.469807] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.469813] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.469818] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.469824] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.474952] dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.480157] dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.480301] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=1, clocks successfully\n[    0.480324] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.488063] NET: Registered protocol family 2\n[    0.488479] TCP established hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.488725] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)\n[    0.489524] TCP: Hash tables configured (established 65536 bind 65536)\n[    0.489572] UDP hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.489643] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.489836] NET: Registered protocol family 1\n[    0.490413] Trying to unpack rootfs image as initramfs...\n[    0.691909] Freeing initrd memory: 7456K\n[    0.693578] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.697855] audit: initializing netlink subsys (disabled)\n[    0.697914] audit: type=2000 audit(0.689:1): initialized\n[    0.698125] Initialise system trusted keyrings\n[    0.699516] workingset: timestamp_bits=45 max_order=21 bucket_order=0\n[    0.703031] exFAT: file-system version 5.8-2arter97\n[    0.703102] Registering sdcardfs 0.1\n[    0.703231] fuse init (API version 7.26)\n[    0.704898] SELinux:  Registering netfilter hooks\n[    0.705119] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    0.705120] pfk_f2fs [pfk_f2fs_init]: PFK F2FS inited successfully\n[    0.705124] pfk [pfk_init]: Driver initialized successfully\n[    0.708764] Key type asymmetric registered\n[    0.708768] Asymmetric key parser 'x509' registered\n[    0.708847] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)\n[    0.708851] io scheduler noop registered\n[    0.708881] io scheduler bfq registered (default)\n[    0.708884] BFQ I/O-scheduler: v8r12 (with cgroups support)\n[    0.723034] fb0: Virtual frame buffer device, using 3000K of video memory\n[    0.725046] qcom,qpnp-clkdiv c440000.qcom,spmi:qcom,pm660@0:qcom,clkdiv@5b00: Registered qpnp_clkdiv_1 successfully\n[    0.729114] 88e0000.qcom,msm-eud supply vdda33 not found, using dummy regulator\n[    0.730789] glink_loopback_server_init: unable to create log context\n[    0.732185] <CORE> glink_core_register_transport: unable to create log context for [wdsp:spi]\n[    0.732880] msm_smp2p_init: unable to create log context\n[    0.735436] qmi_log_init: Unable to create QMI IPC logging for Req/Resp\n[    0.735440] logging for Indications: Unable to create QMI IPC qmi_log_init\n[    0.737729] icnss: Unable to create log context\n[    0.737731] icnss: Unable to create log long context\n[    0.740800] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.740948] icnss: Platform driver probed successfully\n[    0.742185] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.742440] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.747090] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.748418] register_client_adhoc:find path.src 125 dest 512\n[    0.748829] register_client_adhoc:Client handle 11 scm_pas\n[    0.748839] minidump-id not found for adsp\n[    0.748938] minidump-id not found for ipa_fws\n[    0.748948] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    0.749517] register_client_adhoc:find path.src 63 dest 512\n[    0.749714] register_client_adhoc:Client handle 12 pil-venus\n[    0.749720] minidump-id not found for venus\n[    0.749729] subsys-pil-tz aae0000.qcom,venus: for venus segments only will be dumped.\n[    0.749981] minidump-id not found for cdsp\n[    0.750468] minidump-id not found for a615_zap\n[    0.750475] subsys-pil-tz soc:qcom,kgsl-hyp: for a615_zap segments only will be dumped.\n[    0.751745] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    0.751767] minidump-id not found for modem\n[    0.754063] msm_geni_serial 898000.qcom,qup_uart: Wakeup byte 0xfd\n[    0.754114] msm_geni_serial 898000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    0.754138] msm_geni_serial 898000.qcom,qup_uart: Err in Rx IPC Log\n[    0.754141] msm_geni_serial 898000.qcom,qup_uart: Err in Tx IPC Log\n[    0.754145] msm_geni_serial 898000.qcom,qup_uart: Err in Pwr IPC Log\n[    0.754149] msm_geni_serial 898000.qcom,qup_uart: Err in Misc IPC Log\n[    0.754703] 898000.qcom,qup_uart: ttyHS0 at MMIO 0x898000 (irq = 10, base_baud = 0) is a MSM\n[    0.755150] msm_geni_serial_init: Driver initialized\n[    0.755675] register_client_adhoc:find path.src 1 dest 618\n[    0.755907] register_client_adhoc:Client handle 13 msm-rng-noc\n[    0.756770] random: crng init done\n[    0.760619] diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    0.760622] diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    0.803365] [drm] Initialized\n[    0.803762] register_client_adhoc:find path.src 20003 dest 20515\n[    0.803908] register_client_adhoc:find path.src 20004 dest 20515\n[    0.803975] register_client_adhoc:Client handle 14 disp_rsc_mnoc\n[    0.803998] register_client_adhoc:find path.src 20001 dest 20513\n[    0.804065] register_client_adhoc:Client handle 15 disp_rsc_llcc\n[    0.804088] register_client_adhoc:find path.src 20000 dest 20512\n[    0.804160] register_client_adhoc:Client handle 16 disp_rsc_ebi\n[    0.804332] [sde_rsc_hw:rsc_hw_init:679]: sde rsc init successfully done\n[    0.804346] [sde_rsc:sde_rsc_probe:1422]: sde rsc index:0 probed successfully\n[    0.805529] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-0\n[    0.805627] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-1\n[    0.806427] AXI: get_pdata(): Error: Client name not found\n[    0.806430] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.806433] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-0\n[    0.806556] AXI: get_pdata(): Error: Client name not found\n[    0.806557] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.806559] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-1\n[    0.809349] msm-dsi-panel:[dsi_panel_parse_reset_sequence:2151] RESET SEQ LENGTH = 16\n[    0.809375] msm-dsi-panel:[dsi_panel_parse_misc_features:2200] dsi_panel_parse_misc_features: ulps feature enabled\n[    0.809378] msm-dsi-panel:[dsi_panel_parse_misc_features:2206] dsi_panel_parse_misc_features: ulps during suspend feature enabled\n[    0.809453] msm-dsi-display:[dsi_display_clocks_init] failed to get src_byte_clk, rc=-2\n[    0.810380] msm-dsi-display:[dsi_display_get_boot_display] index = 0\n[    0.810382] msm-dsi-display:[dsi_display_get_boot_display] index = 1\n[    0.810829] register_client_adhoc:find path.src 1 dest 590\n[    0.811133] register_client_adhoc:Client handle 17 mdss_reg\n[    0.811161] register_client_adhoc:find path.src 22 dest 512\n[    0.811379] register_client_adhoc:find path.src 23 dest 512\n[    0.811561] register_client_adhoc:Client handle 18 mdss_sde\n[    0.811633] [drm:sde_dbg_init:3481] evtlog_status: enable:3, panic:1, dump:2\n[    0.811651] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops 0xffffff80e2678e70)\n[    0.811656] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops 0xffffff80e267d360)\n[    0.811967] msm-dsi-display:[dsi_display_bind] Successfully bind display panel 'dsi_ss_ea8076_fhd_cmd_display'\n[    0.812198] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display@21 (ops 0xffffff80e2679dc0)\n[    0.812241] [drm] mapped mdp address space @ffffff800ef00000\n[    0.812265] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: vbif_nrt_phys\n[    0.812308] [drm:_sde_kms_get_splash_data:3271] found continuous splash base address:9c000000 size:2300000\n[    0.813488] [drm:sde_kms_hw_init:3400] sde hardware revision:0x40010000\n[    0.814410] [drm] Created domain mdp_ns [80000000,80000000] secure=0\n[    0.817363] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 15\n[    0.817757] [drm] probing device qcom,smmu_sde_sec\n[    0.817766] [drm] Created domain mdp_s [80000000,80000000] secure=1\n[    0.821241] [drm] invalid feature map 9 for feature 10\n[    0.821357] [drm] invalid feature map 9 for feature 10\n[    0.827525] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    0.827527] [drm] No driver support for vblank timestamp query.\n[    0.828800] msm-dsi-panel:[dsi_panel_parse_topology:3003] default topology: lm: 1 comp_enc:0 intf: 1\n[    0.829015] msm-dsi-panel:[dsi_panel_parse_partial_update_caps:3091] partial update disabled as the property is not set\n[    0.829196] dsi-ctrl:[_dsi_ctrl_setup_isr] [DSI_0] IRQ 604 registered\n[    0.846370] iommu: Adding device 506a000.qcom,gmu:gmu_user to group 16\n[    0.846649] iommu: Adding device 506a000.qcom,gmu:gmu_kernel to group 17\n[    0.848246] register_client_adhoc:find path.src 26 dest 512\n[    0.848460] register_client_adhoc:Client handle 19 grp3d\n[    0.848477] register_client_adhoc:find path.src 26 dest 10036\n[    0.848622] register_client_adhoc:Client handle 20 cnoc\n[    0.848626] query_client_usecase_all: query_start\n[    0.848678] query_client_usecase_all: query_start\n[    0.849928] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 18\n[    0.850297] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 19\n[    0.850559] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure_alt to group 20\n[    0.850981] kgsl: _kgsl_iommu_cb_probe: dt: Unused context label gfx3d_secure_alt\n[    0.871469] llcc_slice_get_entry:can't find 11 usecase id\n[    0.895053] brd: module loaded\n[    0.918142] loop: module loaded\n[    0.919538] zram: Added device: zram0\n[    0.921564] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1400000\n[    0.921593] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.921600] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    0.921604] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    0.921688] register_client_adhoc:find path.src 125 dest 512\n[    0.922115] register_client_adhoc:Client handle 21 qseecom-noc\n[    0.922227] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    0.924458] register_client_adhoc:find path.src 125 dest 512\n[    0.924748] register_client_adhoc:Client handle 22 qcedev-noc\n[    0.925938] qce 1de0000.qcedev: QTI Crypto 5.4.1 device found @0x1de0000\n[    0.925945] qce 1de0000.qcedev: CE device = 0x0 IO base, CE = ffffff800fc20000 Consumer (IN) PIPE 6,\n               Producer (OUT) PIPE 7 IO base BAM = 0000000000000000\n               BAM IRQ 20 Engines Availability = 0x2011073\n[    0.925965] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000001dc4000\n[    0.925969] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000001dc4000\n[    0.925971] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000001dc4000\n[    0.925973] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000001dc4000\n[    0.925976] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000001dc4000\n[    0.925978] sps:BAM 0x0000000001dc4000 is registered.\n[    0.926088] sps:BAM 0x0000000001dc4000 (va:0xffffff800fcc0000) enabled: ver:0x27, number of pipes:16\n[    0.926201] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 20\n[    0.928650] register_client_adhoc:find path.src 125 dest 512\n[    0.928987] register_client_adhoc:Client handle 23 qcrypto-noc\n[    0.929841] qcrypto 1de0000.qcrypto: QTI Crypto 5.4.1 device found @0x1de0000\n[    0.929847] qcrypto 1de0000.qcrypto: CE device = 0x0 IO base, CE = ffffff800fe20000 Consumer (IN) PIPE 4,\n               Producer (OUT) PIPE 5 IO base BAM = 0000000000000000\n               BAM IRQ 20 Engines Availability = 0x2011073\n[    0.930057] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 20\n[    0.930462] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    0.930606] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    0.930708] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    0.930806] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    0.930907] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    0.931004] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    0.931101] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    0.931198] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    0.931296] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    0.931397] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    0.931497] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    0.931595] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    0.931693] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    0.931792] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    0.931891] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    0.931990] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    0.932089] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    0.932188] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    0.932297] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    0.932397] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    0.933553] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    0.933570] CHRDEV \"icesdcc\" major number 233 goes below the dynamic allocation range\n[    0.935391] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    0.937006] qcom_ice_get_pdevice: found ice device ffffffc5adba1c00\n[    0.937008] qcom_ice_get_pdevice: matching platform device ffffffc5b2cc9800\n[    0.938212] register_client_adhoc:find path.src 123 dest 512\n[    0.938617] register_client_adhoc:find path.src 1 dest 757\n[    0.938835] register_client_adhoc:Client handle 24 ufshc_mem\n[    0.940429] scsi host0: ufshcd\n[    0.945051] qcom_ice 1d90000.ufsice: QC ICE 3.1.75 device found @0xffffff800b2a8000\n[    0.961881] SCSI Media Changer driver v0.25 \n[    0.964223] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    0.966366] tun: Universal TUN/TAP device driver, 1.6\n[    0.966369] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    0.966597] PPP generic driver version 2.4.2\n[    0.966686] PPP BSD Compression module registered\n[    0.966688] PPP Deflate Compression module registered\n[    0.966718] PPP MPPE Compression module registered\n[    0.966721] NET: Registered protocol family 24\n[    0.966734] PPTP driver version 0.8.5\n[    0.966993] CLD80211: Initializing\n[    0.967088] usbcore: registered new interface driver r8152\n[    0.967093] CHRDEV \"uio\" major number 232 goes below the dynamic allocation range\n[    0.970463] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.971885] msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    0.972867] msm-qusb-phy-v2 88e2000.qusb: pinctrl not available\n[    0.974940] msm-dwc3 a600000.ssusb: unable to get dbm device\n[    0.976176] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.976180] ehci-platform: EHCI generic platform driver\n[    0.976536] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    0.976550] ohci-platform: OHCI generic platform driver\n[    0.977467] usbcore: registered new interface driver usb-storage\n[    0.977516] usbcore: registered new interface driver usb_ehset_test\n[    0.977535] usbcore: registered new interface driver lvs\n[    0.978990] msm_sharedmem: sharedmem_register_qmi: qmi init successful\n[    0.980907] fgsi_init: Err allocating ipc_log_ctxt\n[    0.982132] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    0.982288] qpnp-pdphy c440000.qcom,spmi:qcom,pm660@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    0.983474] mousedev: PS/2 mouse device common for all mice\n[    0.983640] [GTP-INF][goodix_i2c_init:2260] GTx5xx HW layer init\n[    0.983664] [GTP-INF][goodix_ts_core_init:2428] Core layer init\n[    0.983927] [GTP-INF][goodix_register_ext_module:174] goodix_register_ext_module IN\n[    0.983930] [GTP-INF][goodix_register_ext_module:179] goodix_register_ext_module OUT\n[    0.983934] [GTP-INF][goodix_gsx_gesture_init:762] gesture module init\n[    0.983937] [GTP-INF][goodix_register_ext_module:174] goodix_register_ext_module IN\n[    0.983939] [GTP-INF][goodix_register_ext_module:179] goodix_register_ext_module OUT\n[    0.983991] [GTP-INF][__do_register_ext_module:84] __do_register_ext_module IN, goodix_modules.core_exit:1\n[    0.984013] [GTP-INF][__do_register_ext_module:84] __do_register_ext_module IN, goodix_modules.core_exit:1\n[    0.984054] CHRDEV \"goodix_fp_spi\" major number 231 goes below the dynamic allocation range\n[    0.984437] gf_platform: gf::irq_gpio:121\n[    0.984614] input: uinput-goodix as /devices/virtual/input/input1\n[    0.985341] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: rtc core: registered qpnp_rtc as rtc0\n[    0.985633] i2c /dev entries driver\n[    0.985913] i2c_geni 88c000.i2c: Bus frequency not specified, default to 400KHz.\n[    0.987420] nq-nci 1-0028: nqx_probe: probing NFCC NQxxx exited successfully\n[    0.987598] i2c_geni 89c000.i2c: Bus frequency not specified, default to 400KHz.\n[    0.988962] i2c_geni a84000.i2c: Bus frequency not specified, default to 400KHz.\n[    0.989592] [GTP-INF][goodix_i2c_probe:2145] goodix_i2c_probe IN\n[    0.989599] [GTP-INF][goodix_parse_dt:167] Parse reset-gpio[5] from dt\n[    0.989603] [GTP-INF][goodix_parse_dt:176] Parse irq-gpio[125] from dt\n[    0.989618] [GTP-INF][goodix_parse_dt:275] ***key:0, 0, 0, 0, 0\n[    0.989813] [GTP-INF][goodix_ts_probe:2231] goodix_ts_probe IN\n[    0.989817] [GTP-INF][goodix_ts_power_init:1026] Power init\n[    0.989926] [GTP-INF][goodix_ts_power_on:1073] Device power on\n[    0.990098] [GTP-INF][goodix_ts_power_on:1080] regulator enable vddio SUCCESS\n[    0.990704] [GTP-INF][goodix_ts_power_on:1092] regulator enable avdd SUCCESS\n[    1.048622] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[1, 1], pwr[FAST MODE, FAST MODE], rate = 2\n[    1.050263] scsi 0:0:0:49488: Well-known LUN    SKhynix  H9HQ16AECMMDAR   A102 PQ: 0 ANSI: 6\n[    1.052353] scsi 0:0:0:49456: Well-known LUN    SKhynix  H9HQ16AECMMDAR   A102 PQ: 0 ANSI: 6\n[    1.054287] scsi 0:0:0:49476: Well-known LUN    SKhynix  H9HQ16AECMMDAR   A102 PQ: 0 ANSI: 6\n[    1.057000] scsi 0:0:0:0: Direct-Access     SKhynix  H9HQ16AECMMDAR   A102 PQ: 0 ANSI: 6\n[    1.059407] scsi 0:0:0:1: Direct-Access     SKhynix  H9HQ16AECMMDAR   A102 PQ: 0 ANSI: 6\n[    1.061708] scsi 0:0:0:2: Direct-Access     SKhynix  H9HQ16AECMMDAR   A102 PQ: 0 ANSI: 6\n[    1.064018] scsi 0:0:0:3: Direct-Access     SKhynix  H9HQ16AECMMDAR   A102 PQ: 0 ANSI: 6\n[    1.066322] scsi 0:0:0:4: Direct-Access     SKhynix  H9HQ16AECMMDAR   A102 PQ: 0 ANSI: 6\n[    1.068632] scsi 0:0:0:5: Direct-Access     SKhynix  H9HQ16AECMMDAR   A102 PQ: 0 ANSI: 6\n[    1.071051] sd 0:0:0:0: [sda] Write Protect is off\n[    1.071057] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.071593] sd 0:0:0:0: [sda] Optimal transfer size 786432 bytes\n[    1.072751] sd 0:0:0:1: [sdb] Write Protect is off\n[    1.072756] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.073218] sd 0:0:0:1: [sdb] Optimal transfer size 786432 bytes\n[    1.074266] sd 0:0:0:2: [sdc] Write Protect is off\n[    1.074271] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.074525]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21 sda22 sda23 sda24 sda25 sda26 sda27 sda28 sda29\n[    1.074845] sd 0:0:0:2: [sdc] Optimal transfer size 786432 bytes\n[    1.075998]  sdb: sdb1 sdb2\n[    1.077810]  sdc: sdc1 sdc2\n[    1.079841] sd 0:0:0:3: [sdd] Write Protect is off\n[    1.079846] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.080307] sd 0:0:0:3: [sdd] Optimal transfer size 786432 bytes\n[    1.081588] sd 0:0:0:4: [sde] Write Protect is off\n[    1.081593] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    1.081863] sd 0:0:0:4: [sde] Optimal transfer size 786432 bytes\n[    1.083437]  sdd: sdd1 sdd2 sdd3 sdd4 sdd5\n[    1.084978] sd 0:0:0:5: [sdf] Write Protect is off\n[    1.084982] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    1.085352]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49\n[    1.086296] sd 0:0:0:5: [sdf] Optimal transfer size 786432 bytes\n[    1.089653]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6 sdf7\n[    1.290911] [GTP-INF][goodix_ts_gpio_setup:1213] GPIO setup,reset-gpio:5, irq-gpio:125\n[    1.290959] [GTP-INF][goodix_hw_reset:1522] HW reset\n[    1.290962] [GTP-INF][goodix_hw_reset:1568] reg.esd is NULL, skip dynamic esd init\n[    1.291285] [GTP-INF][goodix_ts_probe:2315] i2c test SUCCESS\n[    1.291354] [GTP-INF][goodix_ts_probe:2328] ***start cfg_bin_proc SUCCESS\n[    1.291425] [GTP-INF][goodix_ts_probe:2380] goodix_ts_probe OUT, r:0\n[    1.291445] [GTP-INF][goodix_i2c_probe:2211] goodix_i2c_probe OUT\n[    1.291776] i2c_geni a88000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.292130] [GTP-INF][goodix_read_cfg_bin:525] ts_bdata->cfg_bin_name:goodix_gt9886_cfg_f2.bin\n[    1.292162] [GTP-INF][goodix_read_cfg_bin:527] cfg_bin_name:goodix_gt9886_cfg_f2.bin\n[    1.292169] [GTP-INF][goodix_read_cfg_bin:535] Cfg_bin image [goodix_gt9886_cfg_f2.bin] is ready, try_times:1\n[    1.292179] [GTP-INF][goodix_parse_cfg_bin:129] ---------------------------------------------\n[    1.292182] [GTP-INF][goodix_parse_cfg_bin:130] ------package:1------\n[    1.292184] [GTP-INF][goodix_parse_cfg_bin:131] package len:037f\n[    1.292186] [GTP-INF][goodix_parse_cfg_bin:132] package ic_type:normandy\n[    1.292188] [GTP-INF][goodix_parse_cfg_bin:133] package cfg_type:1\n[    1.292190] [GTP-INF][goodix_parse_cfg_bin:134] package sensor_id:1\n[    1.292222] [GTP-INF][goodix_parse_cfg_bin:135] package hw_pid:9886\n[    1.292223] [GTP-INF][goodix_parse_cfg_bin:136] package hw_vid:\n[    1.292226] [GTP-INF][goodix_parse_cfg_bin:137] package fw_mask_version:\n[    1.293644] CHRDEV \"BaseRemoteCtl\" major number 230 goes below the dynamic allocation range\n[    1.293647] lirc_dev: IR Remote Control driver registered, major 230\n[    1.293651] IR NEC protocol handler initialized\n[    1.293653] IR RC5(x/sz) protocol handler initialized\n[    1.293655] IR RC6 protocol handler initialized\n[    1.293658] IR JVC protocol handler initialized\n[    1.293660] IR Sony protocol handler initialized\n[    1.293663] IR SANYO protocol handler initialized\n[    1.293665] IR Sharp protocol handler initialized\n[    1.293667] IR MCE Keyboard/mouse protocol handler initialized\n[    1.293668] IR LIRC bridge handler initialized\n[    1.293670] IR XMP protocol handler initialized\n[    1.293809] ir-spi spi32766.1: lirc_dev: driver ir-spi registered at minor = 0\n[    1.294228] msm_vidc:  err: Failed to get platform resources\n[    1.294230] msm_vidc:  err: Failed to init core\n[    1.294239] msm_vidc_v4l2: probe of aa00000.qcom,vidc0 failed with error -22\n[    1.296091] [GTP-INF][goodix_parse_cfg_bin:138] package fw_patch_version:\n[    1.296093] [GTP-INF][goodix_parse_cfg_bin:139] package x_res_offset:00\n[    1.296095] [GTP-INF][goodix_parse_cfg_bin:140] package y_res_offset:00\n[    1.296098] [GTP-INF][goodix_parse_cfg_bin:141] package trigger_offset:00\n[    1.296099] [GTP-INF][goodix_parse_cfg_bin:143] \n[    1.296101] [GTP-INF][goodix_parse_cfg_bin:144] send_cfg_flag reg:4542\n[    1.296103] [GTP-INF][goodix_parse_cfg_bin:147] version base reg:452c, len:72\n[    1.296105] [GTP-INF][goodix_parse_cfg_bin:148] pid reg:4535\n[    1.296106] [GTP-INF][goodix_parse_cfg_bin:149] vid reg:453d\n[    1.296108] [GTP-INF][goodix_parse_cfg_bin:150] sensor_id reg:4541\n[    1.296110] [GTP-INF][goodix_parse_cfg_bin:151] fw_status reg:00\n[    1.296111] [GTP-INF][goodix_parse_cfg_bin:152] cfg_addr reg:6f78\n[    1.296113] [GTP-INF][goodix_parse_cfg_bin:153] esd reg:303f\n[    1.296114] [GTP-INF][goodix_parse_cfg_bin:154] command reg:6f68\n[    1.296116] [GTP-INF][goodix_parse_cfg_bin:155] coor:4100\n[    1.296117] [GTP-INF][goodix_parse_cfg_bin:156] gesture:00\n[    1.296119] [GTP-INF][goodix_parse_cfg_bin:157] fw_request:00\n[    1.296120] [GTP-INF][goodix_parse_cfg_bin:158] proximity:00\n[    1.296121] [GTP-INF][goodix_parse_cfg_bin:160] --------------------------------------------\n[    1.296123] [GTP-INF][goodix_cfg_bin_proc:190] parse cfg bin SUCCESS\n[    1.296128] [GTP-INF][goodix_get_reg_and_cfg:328] ic_type:1\n[    1.299073] iommu: Adding device aa00000.qcom,vidc1:non_secure_cb to group 21\n[    1.299553] iommu: Adding device aa00000.qcom,vidc1:secure_bitstream_cb to group 22\n[    1.301068] iommu: Adding device aa00000.qcom,vidc1:secure_pixel_cb to group 23\n[    1.301859] iommu: Adding device aa00000.qcom,vidc1:secure_non_pixel_cb to group 24\n[    1.304686] register_client_adhoc:find path.src 1 dest 590\n[    1.305017] register_client_adhoc:Client handle 25 sde_reg\n[    1.305095] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 25\n[    1.305260] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 26\n[    1.305471] register_client_adhoc:find path.src 25 dest 512\n[    1.305676] register_client_adhoc:Client handle 26 mdss_rotator\n[    1.305687] register_client_adhoc:find path.src 1 dest 590\n[    1.305872] register_client_adhoc:Client handle 27 mdss_rot_reg\n[    1.306325] No change in context(0==0), skip\n[    1.308041] sde_rotator_evtlog_create_debugfs: evtlog_status: enable:1, panic:1, dump:2\n[    1.308891] sde_rotator ae00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    1.311001] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    1.311032] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    1.313493] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 27\n[    1.313879] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 28\n[    1.314043] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 29\n[    1.314168] platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node camera_region@8ab00000\n[    1.314359] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 30\n[    1.314530] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 31\n[    1.314818] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_fd to group 32\n[    1.317101] register_client_adhoc:find path.src 1 dest 589\n[    1.317427] register_client_adhoc:Client handle 28 cam_ahb\n[    1.317583] register_client_adhoc:find path.src 136 dest 512\n[    1.317795] register_client_adhoc:Client handle 29 cam_hf_1_mnoc\n[    1.317988] register_client_adhoc:find path.src 146 dest 778\n[    1.318037] register_client_adhoc:Client handle 30 cam_hf_1_camnoc\n[    1.318140] register_client_adhoc:find path.src 145 dest 512\n[    1.318342] register_client_adhoc:Client handle 31 cam_hf_2_mnoc\n[    1.318536] register_client_adhoc:find path.src 147 dest 778\n[    1.318582] register_client_adhoc:Client handle 32 cam_hf_2_camnoc\n[    1.318704] register_client_adhoc:find path.src 137 dest 512\n[    1.318919] register_client_adhoc:Client handle 33 cam_sf_1_mnoc\n[    1.319099] register_client_adhoc:find path.src 148 dest 778\n[    1.319148] register_client_adhoc:Client handle 34 cam_sf_1_camnoc\n[    1.329986] CAM_ERR: CAM-IRQ-CTRL: cam_irq_controller_subscribe_irq: 268 Invalid params: bh_handler=ffffff80e1d90c34 bh=0000000000000000 bh_enq_f=ffffff80e32d5418\n[    1.329995] CAM_ERR: CAM-ISP: cam_vfe_bus_deinit_hw: 2933 Failed to unsubscribe error irq rc=-22\n[    1.332319] CAM_ERR: CAM-IRQ-CTRL: cam_irq_controller_subscribe_irq: 268 Invalid params: bh_handler=ffffff80e1d90c34 bh=0000000000000000 bh_enq_f=ffffff80e32d5418\n[    1.332326] CAM_ERR: CAM-ISP: cam_vfe_bus_deinit_hw: 2933 Failed to unsubscribe error irq rc=-22\n[    1.333345] CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 536 No clk named ife_dsp_clk found. Dev vfe2\n[    1.333349] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 107 option clk get failed\n[    1.335074] CAM_ERR: CAM-IRQ-CTRL: cam_irq_controller_subscribe_irq: 268 Invalid params: bh_handler=ffffff80e1d90c34 bh=0000000000000000 bh_enq_f=ffffff80e32d5418\n[    1.335081] CAM_ERR: CAM-ISP: cam_vfe_bus_deinit_hw: 2933 Failed to unsubscribe error irq rc=-22\n[    1.336610] CAM_INFO: CAM-ISP: cam_isp_dev_probe: 172 Camera ISP probe complete\n[    1.338680] CAM_INFO: CAM: cam_res_mgr_probe: 681 Disable shared gpio support.\n[    1.340823] [GTP-ERR][goodix_get_reg_and_cfg:360] pkg:0, fw_mask of cfg bin is NULL, Skip!!\n[    1.346406] CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 226 No GPIO found\n[    1.346435] CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 226 No GPIO found\n[    1.347944] CAM_ERR: CAM-ICP: cam_ipe_probe: 87 IPE1 hw idx = 1\n\n[    1.347957] cam-ipe: probe of ac91000.qcom,ipe1 failed with error -22\n[    1.350761] CAM_ERR: CAM-ICP: cam_icp_mgr_init_devs: 4563 no child device\n[    1.351513] CAM_ERR: CAM-SMMU: cam_smmu_create_add_handle_in_table: 689 Error: cam-secure already got handle 0x5a045\n[    1.354978] CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 170 Camera JPEG probe complete\n[    1.357086] [GTP-INF][goodix_get_reg_and_cfg:401] find normal cfg_pkg SUCCESS\n[    1.357091] [GTP-INF][goodix_get_reg_and_cfg:457] normal cfg is found!\n[    1.357099] [GTP-INF][goodix_cfg_bin_proc:203] get reg and cfg from cfg_bin SUCCESS\n[    1.357101] [GTP-INF][goodix_cfg_bin_proc:220] @@@@@@@@@\n[    1.357103] [GTP-INF][goodix_cfg_bin_proc:221] cfg_send_flag:0x4542\n[    1.357105] [GTP-INF][goodix_cfg_bin_proc:222] pid:0x4535\n[    1.357108] [GTP-INF][goodix_cfg_bin_proc:223] vid:0x453d\n[    1.357110] [GTP-INF][goodix_cfg_bin_proc:224] sensor_id:0x4541\n[    1.357112] [GTP-INF][goodix_cfg_bin_proc:225] fw_mask:0x0000\n[    1.357115] [GTP-INF][goodix_cfg_bin_proc:226] fw_status:0x0000\n[    1.357116] [GTP-INF][goodix_cfg_bin_proc:227] cfg_addr:0x6f78\n[    1.357118] [GTP-INF][goodix_cfg_bin_proc:228] esd:0x303f\n[    1.357119] [GTP-INF][goodix_cfg_bin_proc:229] command:0x6f68\n[    1.357121] [GTP-INF][goodix_cfg_bin_proc:230] coor:0x4100\n[    1.357122] [GTP-INF][goodix_cfg_bin_proc:231] gesture:0x0000\n[    1.357124] [GTP-INF][goodix_cfg_bin_proc:232] fw_request:0x0000\n[    1.357125] [GTP-INF][goodix_cfg_bin_proc:233] proximity:0x0000\n[    1.357126] [GTP-INF][goodix_cfg_bin_proc:234] @@@@@@@@@\n[    1.357130] [GTP-INF][goodix_hw_init:1461] goodix_hw_init\n[    1.362632] [GTP-INF][goodix_read_version:838] sensor_id_mask:0x0f, sensor_id:0x01\n[    1.362657] [GTP-INF][goodix_read_version:848] PID:9886,SensorID:1, VID:03 01 02 17 00 00 00 00\n[    1.362865] [GTP-INF][goodix_check_cfg_valid:1106] cfg bag_num:43, cfg length:774\n[    1.362871] [GTP-INF][goodix_check_cfg_valid:1139] configuration check SUCCESS\n[    1.362874] [GTP-INF][goodix_send_config:1169] ver:18h,size:774\n[    1.367513] get prop 168 is not supported in usb\n[    1.367697] get prop 168 is not supported in usb\n[    1.367724] PMI: smblib_check_ov_condition: Couldn't get current voltage, rc=-61\n[    1.367958] QCOM-BATT: handle_main_charge_type: Couldn't get batt capacity rc=-61\n[    1.368152] get prop 168 is not supported in usb\n[    1.375781] QPNP SMB2 probed successfully usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    1.377700] BQ2591X bq2591x_charger_probe: charger device bq25910 detected, revision:2\n[    1.390603] get prop 168 is not supported in usb\n[    1.394998] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.395007] thermal thermal_zone5: failed to read out thermal zone (-61)\n[    1.395038] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.395041] thermal thermal_zone5: failed to read out thermal zone (-61)\n[    1.396522] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.396740] 17d41000.qcom,cpucc:qcom,limits-dcvs@0 supply isens_vref not found, using dummy regulator\n[    1.396801] msm_lmh_dcvs:limits_isens_vref_ldo_init Regulator:isens_vref settings read error:-22\n[    1.403165] 17d41000.qcom,cpucc:qcom,limits-dcvs@1 supply isens_vref not found, using dummy regulator\n[    1.403199] msm_lmh_dcvs:limits_isens_vref_ldo_init Regulator:isens_vref settings read error:-22\n[    1.403720] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.403725] thermal thermal_zone5: failed to read out thermal zone (-61)\n[    1.406474] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.406477] thermal thermal_zone5: failed to read out thermal zone (-61)\n[    1.411978] [GTP-INF][goodix_send_large_config:1053] Send large cfg SUCCESS\n[    1.412271] input: goodix_ts as /devices/platform/goodix_ts.0/input/input2\n[    1.412957] [GTP-INF][goodix_ts_irq_setup:976] IRQ:273,flags:2\n[    1.416197] [GTP-INF][goodix_get_lockdowninfo:38] lockdown is:0x48,0x38,0x32,0x05,0x46,0x32,0x31,0x01\n[    1.416361] [GTP-INF][goodix_ts_esd_on:1545] Esd on\n[    1.416475] [GTP-INF][__do_register_ext_module:98] start register ext_module\n[    1.416522] [GTP-INF][__do_register_ext_module:98] start register ext_module\n[    1.416580] [GTP-INF][__do_register_ext_module:145] Module [goodix-fwu] registered,priority:1\n[    1.416600] [GTP-INF][__do_register_ext_module:145] Module [Goodix_gsx_gesture] registered,priority:2\n[    1.416612] [GTP-INF][goodix_fw_update_thread:1202] Firmware request update starts\n[    1.416615] [GTP-INF][goodix_request_firmware:1155] Request firmware image [goodix_gt9886_fw_f2.bin]\n[    1.416621] [GTP-INF][goodix_request_firmware:1160] Firmware image [goodix_gt9886_fw_f2.bin] is ready\n[    1.416625] [GTP-INF][goodix_ts_esd_off:1563] Esd off\n[    1.416837] [GTP-INF][goodix_parse_firmware:247] Firmware package protocol: V2\n[    1.416839] [GTP-INF][goodix_parse_firmware:248] Fimware PID:GT9886\n[    1.416842] [GTP-INF][goodix_parse_firmware:250] Fimware VID:030102\n[    1.416843] [GTP-INF][goodix_parse_firmware:251] Firmware chip type:93\n[    1.416845] [GTP-INF][goodix_parse_firmware:252] Firmware size:88314\n[    1.416847] [GTP-INF][goodix_parse_firmware:253] Firmware subsystem num:11\n[    1.423323] device-mapper: uevent: version 1.0.3\n[    1.423567] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com\n[    1.423788] [GTP-INF][goodix_read_version:838] sensor_id_mask:0x0f, sensor_id:0x01\n[    1.423794] [GTP-INF][goodix_read_version:848] PID:9886,SensorID:1, VID:03 01 02 17 00 00 00 00\n[    1.423953] [GTP-ERR][goodix_check_update:301] FW version is equal to the IC's\n[    1.423957] [GTP-INF][goodix_ts_esd_on:1545] Esd on\n[    1.423960] [GTP-INF][goodix_hw_init:1461] goodix_hw_init\n[    1.424744] device-mapper: req-crypt: dm-req-crypt successfully initalized.\n\n[    1.425339] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in devicetree\n[    1.425348] bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    1.425351] bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    1.425364] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    1.425370] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.425983] CHRDEV \"bt\" major number 229 goes below the dynamic allocation range\n[    1.426633] qcom,leds-qpnp: probe of c440000.qcom,spmi:qcom,pm660l@3:qcom,leds@d000 failed with error -10\n[    1.429231] usbcore: registered new interface driver usbhid\n[    1.429233] usbhid: USB HID core driver\n[    1.429339] ashmem: initialized\n[    1.429344] CHRDEV \"qcwlanstate\" major number 228 goes below the dynamic allocation range\n[    1.429424] wlan_hdd_state wlan major(228) initialized\n[    1.429429] ipa_ut ipa_ut_module_init:1046 Loading IPA test module...\n[    1.429663] qpnp_coincell_charger_show_state: enabled=N, voltage=3200 mV, resistance=2100 ohm\n[    1.431099] CHRDEV \"seemplog\" major number 227 goes below the dynamic allocation range\n[    1.431525] seemp: seemp_logk_init: SCM call failed with ret val = 0 -3 0\n[    1.431911] bimc-bwmon 1436400.qcom,cpu-bwmon: BW HWmon governor registered.\n[    1.432473] arm-memlat-mon soc:qcom,cpu0-memlat-mon: Memory Latency governor registered.\n[    1.432502] arm-memlat-mon soc:qcom,cpu6-memlat-mon: Memory Latency governor registered.\n[    1.432534] arm-memlat-mon soc:qcom,cpu0-l3lat-mon: Memory Latency governor registered.\n[    1.432561] arm-memlat-mon soc:qcom,cpu6-l3lat-mon: Memory Latency governor registered.\n[    1.432591] arm-memlat-mon soc:qcom,devfreq-compute0: Compute governor registered.\n[    1.432618] arm-memlat-mon soc:qcom,devfreq-compute6: Compute governor registered.\n[    1.433564] register_client_adhoc:find path.src 1 dest 512\n[    1.433907] register_client_adhoc:Client handle 35 soc:qcom,cpubw\n[    1.434801] [GTP-INF][goodix_read_version:838] sensor_id_mask:0x0f, sensor_id:0x01\n[    1.434805] [GTP-INF][goodix_read_version:848] PID:9886,SensorID:1, VID:03 01 02 17 00 00 00 00\n[    1.434970] [GTP-INF][goodix_check_cfg_valid:1106] cfg bag_num:43, cfg length:774\n[    1.434975] [GTP-INF][goodix_check_cfg_valid:1139] configuration check SUCCESS\n[    1.434977] [GTP-INF][goodix_send_config:1169] ver:18h,size:774\n[    1.435265] register_client_adhoc:find path.src 1 dest 512\n[    1.435454] register_client_adhoc:Client handle 36 soc:qcom,memlat-cpu0\n[    1.435706] register_client_adhoc:find path.src 1 dest 512\n[    1.435896] register_client_adhoc:Client handle 37 soc:qcom,memlat-cpu6\n[    1.436147] register_client_adhoc:find path.src 139 dest 627\n[    1.436288] register_client_adhoc:Client handle 38 soc:qcom,snoc_cnoc_keepalive\n[    1.436548] register_client_adhoc:find path.src 1 dest 512\n[    1.436774] register_client_adhoc:Client handle 39 soc:qcom,mincpubw\n[    1.437024] register_client_adhoc:find path.src 1 dest 512\n[    1.437209] register_client_adhoc:Client handle 40 soc:qcom,mincpu0bw\n[    1.437453] register_client_adhoc:find path.src 1 dest 512\n[    1.437638] register_client_adhoc:Client handle 41 soc:qcom,mincpu6bw\n[    1.437974] register_client_adhoc:find path.src 26 dest 512\n[    1.438103] register_client_adhoc:Client handle 42 soc:qcom,gpubw\n[    1.440491] usbcore: registered new interface driver snd-usb-audio\n[    1.444282] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.444965] msm_sdw_codec 62ec1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.445457] cs35l41 2-0040: cs35l41 i2c probe start\n[    1.445566] cs35l41 2-0040: cs35l41 proble\n[    1.445625] 2-0040 supply VA not found, using dummy regulator\n[    1.445661] 2-0040 supply VP not found, using dummy regulator\n[    1.445697] cs35l41 2-0040: Set GPIO 95 as RESET pin\n[    1.445700] cs35l41 2-0040: Reset cs35l41\n[    1.494137] cs35l41 2-0040: bitoffset= 16, word_offset=2, bit_sum mod 32=8\n[    1.494746] cs35l41 2-0040: bitoffset= 20, word_offset=2, bit_sum mod 32=12\n[    1.495356] cs35l41 2-0040: bitoffset= 21, word_offset=2, bit_sum mod 32=13\n[    1.495965] cs35l41 2-0040: bitoffset= 27, word_offset=2, bit_sum mod 32=19\n[    1.496301] cs35l41 2-0040: bitoffset= 31, word_offset=2, bit_sum mod 32=23\n[    1.496911] cs35l41 2-0040: bitoffset= 3, word_offset=3, bit_sum mod 32=27\n[    1.497248] cs35l41 2-0040: bitoffset= 7, word_offset=3, bit_sum mod 32=31\n[    1.497584] cs35l41 2-0040: bitoffset= 9, word_offset=3, bit_sum mod 32=1\n[    1.497920] cs35l41 2-0040: bitoffset= 16, word_offset=3, bit_sum mod 32=8\n[    1.498256] cs35l41 2-0040: bitoffset= 23, word_offset=3, bit_sum mod 32=15\n[    1.498592] cs35l41 2-0040: bitoffset= 31, word_offset=3, bit_sum mod 32=23\n[    1.498928] cs35l41 2-0040: bitoffset= 7, word_offset=4, bit_sum mod 32=31\n[    1.499539] cs35l41 2-0040: bitoffset= 14, word_offset=4, bit_sum mod 32=6\n[    1.500073] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.500078] thermal thermal_zone5: failed to read out thermal zone (-61)\n[    1.500149] cs35l41 2-0040: bitoffset= 21, word_offset=4, bit_sum mod 32=13\n[    1.500759] cs35l41 2-0040: bitoffset= 29, word_offset=4, bit_sum mod 32=21\n[    1.501368] cs35l41 2-0040: bitoffset= 5, word_offset=5, bit_sum mod 32=29\n[    1.501704] cs35l41 2-0040: bitoffset= 12, word_offset=5, bit_sum mod 32=4\n[    1.502040] cs35l41 2-0040: bitoffset= 19, word_offset=5, bit_sum mod 32=11\n[    1.502375] cs35l41 2-0040: bitoffset= 27, word_offset=5, bit_sum mod 32=19\n[    1.502711] cs35l41 2-0040: bitoffset= 3, word_offset=6, bit_sum mod 32=27\n[    1.503046] cs35l41 2-0040: bitoffset= 10, word_offset=6, bit_sum mod 32=2\n[    1.503382] cs35l41 2-0040: bitoffset= 17, word_offset=6, bit_sum mod 32=9\n[    1.503718] cs35l41 2-0040: bitoffset= 25, word_offset=6, bit_sum mod 32=17\n[    1.504054] cs35l41 2-0040: bitoffset= 1, word_offset=7, bit_sum mod 32=25\n[    1.504662] cs35l41 2-0040: bitoffset= 9, word_offset=7, bit_sum mod 32=1\n[    1.504998] cs35l41 2-0040: bitoffset= 16, word_offset=7, bit_sum mod 32=8\n[    1.505606] cs35l41 2-0040: bitoffset= 24, word_offset=7, bit_sum mod 32=16\n[    1.506215] cs35l41 2-0040: bitoffset= 2, word_offset=8, bit_sum mod 32=26\n[    1.506824] cs35l41 2-0040: bitoffset= 14, word_offset=8, bit_sum mod 32=6\n[    1.507432] cs35l41 2-0040: bitoffset= 15, word_offset=8, bit_sum mod 32=7\n[    1.508041] cs35l41 2-0040: bitoffset= 21, word_offset=8, bit_sum mod 32=13\n[    1.508650] cs35l41 2-0040: bitoffset= 22, word_offset=8, bit_sum mod 32=14\n[    1.508985] cs35l41 2-0040: bitoffset= 28, word_offset=8, bit_sum mod 32=20\n[    1.509370] cs35l41 2-0040: bitoffset= 29, word_offset=8, bit_sum mod 32=21\n[    1.510006] cs35l41 2-0040: bitoffset= 6, word_offset=9, bit_sum mod 32=30\n[    1.510646] cs35l41 2-0040: bitoffset= 11, word_offset=9, bit_sum mod 32=3\n[    1.511256] cs35l41 2-0040: bitoffset= 20, word_offset=9, bit_sum mod 32=12\n[    1.511865] cs35l41 2-0040: bitoffset= 28, word_offset=9, bit_sum mod 32=20\n[    1.512473] cs35l41 2-0040: bitoffset= 4, word_offset=10, bit_sum mod 32=28\n[    1.513082] cs35l41 2-0040: bitoffset= 12, word_offset=10, bit_sum mod 32=4\n[    1.513691] cs35l41 2-0040: bitoffset= 20, word_offset=10, bit_sum mod 32=12\n[    1.514301] cs35l41 2-0040: bitoffset= 23, word_offset=10, bit_sum mod 32=15\n[    1.514910] cs35l41 2-0040: bitoffset= 28, word_offset=10, bit_sum mod 32=20\n[    1.515245] cs35l41 2-0040: bitoffset= 1, word_offset=11, bit_sum mod 32=25\n[    1.515854] cs35l41 2-0040: bitoffset= 6, word_offset=11, bit_sum mod 32=30\n[    1.516190] cs35l41 2-0040: bitoffset= 11, word_offset=11, bit_sum mod 32=3\n[    1.516798] cs35l41 2-0040: bitoffset= 16, word_offset=11, bit_sum mod 32=8\n[    1.517407] cs35l41 2-0040: bitoffset= 21, word_offset=11, bit_sum mod 32=13\n[    1.518016] cs35l41 2-0040: bitoffset= 26, word_offset=11, bit_sum mod 32=18\n[    1.518625] cs35l41 2-0040: bitoffset= 31, word_offset=11, bit_sum mod 32=23\n[    1.518960] cs35l41 2-0040: bitoffset= 4, word_offset=12, bit_sum mod 32=28\n[    1.519570] cs35l41 2-0040: bitoffset= 9, word_offset=12, bit_sum mod 32=1\n[    1.520180] cs35l41 2-0040: bitoffset= 14, word_offset=12, bit_sum mod 32=6\n[    1.520790] cs35l41 2-0040: bitoffset= 19, word_offset=12, bit_sum mod 32=11\n[    1.521399] cs35l41 2-0040: bitoffset= 24, word_offset=12, bit_sum mod 32=16\n[    1.521444] [GTP-INF][goodix_send_large_config:1053] Send large cfg SUCCESS\n[    1.521609] [GTP-INF][goodix_unregister_ext_module:235] Moudle [goodix-fwu] unregistered\n[    1.522010] cs35l41 2-0040: bitoffset= 29, word_offset=12, bit_sum mod 32=21\n[    1.522619] cs35l41 2-0040: bitoffset= 2, word_offset=13, bit_sum mod 32=26\n[    1.523227] cs35l41 2-0040: bitoffset= 7, word_offset=13, bit_sum mod 32=31\n[    1.523836] cs35l41 2-0040: bitoffset= 12, word_offset=13, bit_sum mod 32=4\n[    1.524444] cs35l41 2-0040: bitoffset= 17, word_offset=13, bit_sum mod 32=9\n[    1.525053] cs35l41 2-0040: bitoffset= 22, word_offset=13, bit_sum mod 32=14\n[    1.525662] cs35l41 2-0040: bitoffset= 27, word_offset=13, bit_sum mod 32=19\n[    1.526270] cs35l41 2-0040: bitoffset= 0, word_offset=14, bit_sum mod 32=24\n[    1.526879] cs35l41 2-0040: bitoffset= 10, word_offset=14, bit_sum mod 32=2\n[    1.527488] cs35l41 2-0040: bitoffset= 20, word_offset=14, bit_sum mod 32=12\n[    1.528097] cs35l41 2-0040: bitoffset= 30, word_offset=14, bit_sum mod 32=22\n[    1.528707] cs35l41 2-0040: bitoffset= 8, word_offset=15, bit_sum mod 32=0\n[    1.529315] cs35l41 2-0040: bitoffset= 18, word_offset=15, bit_sum mod 32=10\n[    1.529924] cs35l41 2-0040: bitoffset= 28, word_offset=15, bit_sum mod 32=20\n[    1.530535] cs35l41 2-0040: bitoffset= 6, word_offset=16, bit_sum mod 32=30\n[    1.531144] cs35l41 2-0040: bitoffset= 16, word_offset=16, bit_sum mod 32=8\n[    1.531753] cs35l41 2-0040: bitoffset= 26, word_offset=16, bit_sum mod 32=18\n[    1.532362] cs35l41 2-0040: bitoffset= 4, word_offset=17, bit_sum mod 32=28\n[    1.532971] cs35l41 2-0040: bitoffset= 14, word_offset=17, bit_sum mod 32=6\n[    1.533580] cs35l41 2-0040: bitoffset= 24, word_offset=17, bit_sum mod 32=16\n[    1.534188] cs35l41 2-0040: bitoffset= 2, word_offset=18, bit_sum mod 32=26\n[    1.534797] cs35l41 2-0040: bitoffset= 12, word_offset=18, bit_sum mod 32=4\n[    1.535406] cs35l41 2-0040: bitoffset= 22, word_offset=18, bit_sum mod 32=14\n[    1.536015] cs35l41 2-0040: bitoffset= 0, word_offset=19, bit_sum mod 32=24\n[    1.536624] cs35l41 2-0040: bitoffset= 10, word_offset=19, bit_sum mod 32=2\n[    1.537233] cs35l41 2-0040: bitoffset= 20, word_offset=19, bit_sum mod 32=12\n[    1.537842] cs35l41 2-0040: bitoffset= 30, word_offset=19, bit_sum mod 32=22\n[    1.538450] cs35l41 2-0040: bitoffset= 8, word_offset=20, bit_sum mod 32=0\n[    1.539059] cs35l41 2-0040: bitoffset= 18, word_offset=20, bit_sum mod 32=10\n[    1.539668] cs35l41 2-0040: bitoffset= 28, word_offset=20, bit_sum mod 32=20\n[    1.540004] cs35l41 2-0040: bitoffset= 1, word_offset=21, bit_sum mod 32=25\n[    1.540344] cs35l41 2-0040: bitoffset= 6, word_offset=21, bit_sum mod 32=30\n[    1.540680] cs35l41 2-0040: bitoffset= 10, word_offset=21, bit_sum mod 32=2\n[    1.541016] cs35l41 2-0040: bitoffset= 14, word_offset=21, bit_sum mod 32=6\n[    1.541625] cs35l41 2-0040: bitoffset= 15, word_offset=21, bit_sum mod 32=7\n[    1.542234] cs35l41 2-0040: bitoffset= 22, word_offset=21, bit_sum mod 32=14\n[    1.542570] cs35l41 2-0040: bitoffset= 31, word_offset=21, bit_sum mod 32=23\n[    1.542906] cs35l41 2-0040: bitoffset= 0, word_offset=22, bit_sum mod 32=24\n[    1.543242] cs35l41 2-0040: bitoffset= 7, word_offset=22, bit_sum mod 32=31\n[    1.543245] cs35l41 2-0040: bitoffset= 8, word_offset=22, bit_sum mod 32=0\n[    1.543524] cs35l41 2-0040: bitoffset= 16, word_offset=22, bit_sum mod 32=8\n[    1.543804] cs35l41 2-0040: bitoffset= 24, word_offset=22, bit_sum mod 32=16\n[    1.544083] cs35l41 2-0040: bitoffset= 0, word_offset=23, bit_sum mod 32=24\n[    1.544362] cs35l41 2-0040: bitoffset= 8, word_offset=23, bit_sum mod 32=0\n[    1.544641] cs35l41 2-0040: bitoffset= 0, word_offset=24, bit_sum mod 32=24\n[    1.546301] cs35l41 2-0040: Cirrus Logic CS35L41 (35a40), Revision: B0\n[    1.546849] msm-cdc-pinctrl soc:cdc_pdm_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/cdc_pdm_clk_active, deferring probe\n[    1.546862] msm-cdc-pinctrl soc:cdc_comp_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/cdc_pdm_rx0_comp_active, deferring probe\n[    1.546875] msm-cdc-pinctrl soc:cdc_dmic_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic12_gpios_active, deferring probe\n[    1.548867] spk-id soc:spk-id-pin@116: spk_id_probe: device soc:spk-id-pin@116\n[    1.548950] spk-id soc:spk-id-pin@116: spk_id_probe: Failed to request gpio 116\n[    1.548963] spk-id: probe of soc:spk-id-pin@116 failed with error -16\n[    1.561667] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx group_id: 0x9100\n[    1.561859] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0 dev_id: 0x9000\n[    1.561869] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.561895] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx group_id: 0x9101\n[    1.562069] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0 dev_id: 0x9001\n[    1.562077] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.562103] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx group_id: 0x9110\n[    1.562274] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0 dev_id: 0x9010\n[    1.562283] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.562307] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx group_id: 0x9111\n[    1.562474] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0 dev_id: 0x9011\n[    1.562482] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.562506] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx group_id: 0x9120\n[    1.562682] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0 dev_id: 0x9020\n[    1.562690] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.562715] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx group_id: 0x9121\n[    1.562885] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0 dev_id: 0x9021\n[    1.562892] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.562916] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx group_id: 0x9130\n[    1.563089] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0 dev_id: 0x9030\n[    1.563097] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.563126] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx group_id: 0x9131\n[    1.563294] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0 dev_id: 0x9031\n[    1.563303] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.563326] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx group_id: 0x9140\n[    1.563499] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0 dev_id: 0x9040\n[    1.563507] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.563532] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx group_id: 0x9141\n[    1.563698] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: dev_name: soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0 dev_id: 0x9041\n[    1.563705] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Custom tdm header not supported\n[    1.569421] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.570166] sdm660-asoc-snd soc:sound: msm_init_wsa_dev: Max WSA devices is 0 for this target?\n[    1.570317] sdm660-asoc-snd soc:sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    1.573714] CHRDEV \"avtimer\" major number 225 goes below the dynamic allocation range\n[    1.573927] CHRDEV \"elliptic\" major number 224 goes below the dynamic allocation range\n[    1.574084] CHRDEV \"elliptic_us_io\" major number 223 goes below the dynamic allocation range\n[    1.574146] CHRDEV \"elliptic_us_ctrl_io\" major number 222 goes below the dynamic allocation range\n[    1.574206] [CSPL] Initializing misc device\n[    1.576066] apr_probe: Unable to create ipc log context\n[    1.576072] audio_notifer_reg_service: service SSR_MODEM is in use\n[    1.576778] CHRDEV \"wcd-dsp-glink\" major number 221 goes below the dynamic allocation range\n[    1.576861] wcd-dsp-glink soc:qcom,wcd-dsp-glink: wdsp_glink_probe: qcom,msm-codec-glink-edge not set use default wdsp\n[    1.578181] GACT probability NOT on\n[    1.578194] Mirror/redirect action on\n[    1.578206] u32 classifier\n[    1.578206]     Actions configured\n[    1.578213] Netfilter messages via NETLINK v0.30.\n[    1.578397] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)\n[    1.578501] ctnetlink v0.93: registering with nfnetlink.\n[    1.578804] xt_time: kernel timezone is -0000\n[    1.578847] wireguard: WireGuard 1.0.20201221 loaded. See www.wireguard.com for information.\n[    1.578848] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    1.578920] gre: GRE over IPv4 demultiplexor driver\n[    1.578923] IPv4 over IPsec tunneling driver\n[    1.579248] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    1.579393] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    1.579418] Initializing XFRM netlink socket\n[    1.579432] IPsec XFRM device driver\n[    1.579590] NET: Registered protocol family 10\n[    1.581297] mip6: Mobile IPv6\n[    1.581308] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    1.581652] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    1.582097] NET: Registered protocol family 17\n[    1.582108] NET: Registered protocol family 15\n[    1.582124] Ebtables v2.0 registered\n[    1.582225] l2tp_core: L2TP core driver, V2.0\n[    1.582232] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    1.582233] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    1.582243] l2tp_netlink: L2TP netlink interface\n[    1.582263] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    1.582265] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    1.582334] sctp: Hash tables configured (bind 256/256)\n[    1.583597] NET: Registered protocol family 27\n[    1.583619] IPC_RTR: ipc_router_create_log_ctx: Unable to create IPC logging for [local_IPCRTR]\n[    1.592643] minidump-id not found for adsp\n[    1.592869] subsys-pil-tz 62400000.qcom,lpass: for adsp segments only will be dumped.\n[    1.594417] minidump-id not found for cdsp\n[    1.594534] subsys-pil-tz 8300000.qcom,turing: for cdsp segments only will be dumped.\n[    1.595079] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    1.595099] minidump-id not found for modem\n[    1.595228] platform 4080000.qcom,mss:qcom,mba-mem@0: assigned reserved memory node pil_mba_region@0x93c00000\n[    1.595988] msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    1.598812] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    1.598816] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    1.598818] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    1.598821] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    1.598824] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    1.598826] sps:BAM 0x000000000a704000 is registered.\n[    1.599130] msm-dwc3 a600000.ssusb: unable to get ssphy device\n[    1.599302] ipa_rm ipa_rm_delete_resource:155 resource does not exist\n[    1.599304] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    1.599309] ipa_rm ipa_rm_delete_resource:155 resource does not exist\n[    1.599310] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    1.600167] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.600172] thermal thermal_zone5: failed to read out thermal zone (-61)\n[    1.611222] FG: fg_gen3_probe: battery SOC:50 voltage: 3817861uV temp: 220\n[    1.612379] qcom,fg-gen3 c440000.qcom,spmi:qcom,pm660@0:qpnp,fg: thermal_zone_of_sensor_register() failed rc:-19\n[    1.612736] BQ2591X bq2591x_charger_probe: charger device bq25910 detected, revision:2\n[    1.615695] BQ2591X bq2591x_charger_probe: BQ2591X PARALLEL charger driver probe successfully\n[    1.615911] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.616106] msm_sdw_codec 62ec1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.617701] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.618357] sdm660-asoc-snd soc:sound: msm_init_wsa_dev: Max WSA devices is 0 for this target?\n[    1.618524] sdm660-asoc-snd soc:sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    1.618822] ipa ipa3_smp2p_probe:6775 failed to enable irq wake\n[    1.620835] FG: fg_psy_get_property: unsupported property 4\n[    1.622486] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.623504] [GTP-INF][gtp_power_supply_work:2183] Power_supply_event:0\n[    1.623908] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    1.623911] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    1.623913] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    1.623916] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    1.623918] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    1.623921] sps:BAM 0x000000000a704000 is registered.\n[    1.624277] register_client_adhoc:find path.src 61 dest 512\n[    1.624662] register_client_adhoc:find path.src 61 dest 676\n[    1.624874] register_client_adhoc:find path.src 1 dest 583\n[    1.625128] register_client_adhoc:Client handle 43 usb0\n[    1.625395] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.625586] msm_sdw_codec 62ec1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.626177] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.626830] sdm660-asoc-snd soc:sound: msm_init_wsa_dev: Max WSA devices is 0 for this target?\n[    1.626983] sdm660-asoc-snd soc:sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    1.627756] Registered cp15_barrier emulation handler\n[    1.627780] Registered setend emulation handler\n[    1.627803] core_ctl: Creating CPU group 0\n[    1.627805] core_ctl: Init CPU0 state\n[    1.627807] core_ctl: Init CPU1 state\n[    1.627808] core_ctl: Init CPU2 state\n[    1.627810] core_ctl: Init CPU3 state\n[    1.627811] core_ctl: Init CPU4 state\n[    1.627813] core_ctl: Init CPU5 state\n[    1.628948] registered taskstats version 1\n[    1.628952] Loading compiled-in X.509 certificates\n[    1.630349] FG: fg_psy_get_property: unsupported property 4\n[    1.631242] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode\n[    1.632185] msm-dwc3 a600000.ssusb: DWC3 in low power mode\n[    1.635706] [GTP-INF][gtp_power_supply_work:2195] USB is not exist\n[    1.635747] FG: fg_psy_get_property: unsupported property 4\n[    1.638333] Loaded X.509 cert 'Build time autogenerated kernel key: 51edefb7cf875c7f32794b1bc912f495814852a2'\n[    1.704945] spss_utils [spss_init]: spss-utils driver Ver 2.0 30-Mar-2017.\n[    1.707060] ADSPRPC: Secure VMID = 22\n[    1.707064] ADSPRPC: Secure VMID = 37\n[    1.707174] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 33\n[    1.707920] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 34\n[    1.708353] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 35\n[    1.708751] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 36\n[    1.709145] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 37\n[    1.709534] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 38\n[    1.709919] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7 to group 39\n[    1.711205] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8 to group 40\n[    1.712108] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 41\n[    1.712500] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 42\n[    1.712887] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 43\n[    1.713274] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 44\n[    1.714641] CHRDEV \"adsprpc-smd\" major number 220 goes below the dynamic allocation range\n[    1.715844] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.716009] msm_sdw_codec 62ec1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.716608] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.717258] sdm660-asoc-snd soc:sound: msm_init_wsa_dev: Max WSA devices is 0 for this target?\n[    1.717419] sdm660-asoc-snd soc:sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    1.717918] ngd_msm_ctrl 62e40000.slim: error creating ipc_logging context\n[    1.718102] iommu: Adding device 62e40000.slim:qcom,iommu_slim_ctrl_cb to group 45\n[    1.718673] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.718822] msm_sdw_codec 62ec1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.719383] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.720010] sdm660-asoc-snd soc:sound: msm_init_wsa_dev: Max WSA devices is 0 for this target?\n[    1.720211] sdm660-asoc-snd soc:sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    1.723108] sdm670-pinctrl 3400000.pinctrl: function 'normal' not supported\n[    1.723111] sdm670-pinctrl 3400000.pinctrl: invalid function normal in map table\n[    1.723123] sdm670-pinctrl 3400000.pinctrl: function 'normal' not supported\n[    1.723125] sdm670-pinctrl 3400000.pinctrl: invalid function normal in map table\n[    1.723140] sdm670-pinctrl 3400000.pinctrl: function 'normal' not supported\n[    1.723142] sdm670-pinctrl 3400000.pinctrl: invalid function normal in map table\n[    1.723157] sdm670-pinctrl 3400000.pinctrl: pin_config_group_set op failed for group 91\n[    1.723160] gpio-keys soc:gpio_keys: Error applying setting, reverse things back\n[    1.723515] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    1.723777] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.723946] msm_sdw_codec 62ec1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.724483] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.725127] sdm660-asoc-snd soc:sound: msm_init_wsa_dev: Max WSA devices is 0 for this target?\n[    1.725260] sdm660-asoc-snd soc:sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    1.725878] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm660@0:qcom,pm660_rtc: setting system clock to 1971-08-24 00:52:15 UTC (51843135)\n[    1.726096] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.726244] msm_sdw_codec 62ec1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.726771] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.727387] sdm660-asoc-snd soc:sound: msm_init_wsa_dev: Max WSA devices is 0 for this target?\n[    1.727476] sdm660-asoc-snd soc:sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    1.729166] CAM_ERR: CAM-CRM: cam_cci_assign_fops: 412 Invalid args sd node: ffffffc5ac946c80\n[    1.729910] lpm_levels_of: idx 1 1074\n[    1.729911] lpm_levels_of: idx 2 1773\n[    1.729913] lpm_levels_of: idx 3 2589\n[    1.729915] lpm_levels_of: idx 2 3285\n[    1.729916] lpm_levels_of: idx 3 3748\n[    1.729918] lpm_levels_of: idx 3 4000\n[    1.729971] lpm_levels_of: idx 1 1293\n[    1.729972] lpm_levels_of: idx 2 2206\n[    1.729974] lpm_levels_of: idx 3 2896\n[    1.729976] lpm_levels_of: idx 2 4581\n[    1.729977] lpm_levels_of: idx 3 5051\n[    1.729979] lpm_levels_of: idx 3 5554\n[    1.730258] lpm_levels: register_cluster_lpm_stats()\n[    1.730364] lpm_levels: register_cluster_lpm_stats()\n[    1.733361] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.733558] msm_sdw_codec 62ec1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.734113] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.734770] sdm660-asoc-snd soc:sound: msm_init_wsa_dev: Max WSA devices is 0 for this target?\n[    1.734931] sdm660-asoc-snd soc:sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    1.737704] rmnet_ipa3 started initialization\n[    1.738198] RNDIS_IPA module is loaded.\n[    1.739123] pmic_analog_codec c440000.qcom,spmi:qcom,pm660l@3:analog-codec@f000: Adsp is not loaded yet 0\n[    1.739328] msm_sdw_codec 62ec1000.msm-sdw-codec: Adsp is not loaded yet 0\n[    1.739928] sdm660-asoc-snd soc:sound: msm_internal_init: default codec configured\n[    1.740666] sdm660-asoc-snd soc:sound: msm_init_wsa_dev: Max WSA devices is 0 for this target?\n[    1.740819] sdm660-asoc-snd soc:sound: ASoC: platform /soc/qcom,msm-pcm-voice not registered\n[    1.741192] msm_bus_late_init: Remove handoff bw requests\n[    1.742456] camera_viodd_ldo: disabling\n[    1.742465] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    1.742649] ALSA device list:\n[    1.742652]   No soundcards found.\n[    1.742698] Warning: unable to open an initial console.\n[    1.743434] Freeing unused kernel memory: 4096K\n[    2.000854] of_batterydata_get_best_profile: f2_scud found\n[    2.400415] FG: fg_psy_get_property: unsupported property 4\n[    2.850964] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    2.851182] cpu1 \n[    2.851247] cpu6 \n[    2.851300] \n               Offline CPUs: \n[    2.854855] cpu1 \n[    2.859601] cpu2 \n[    2.864068] cpu3 \n[    2.869502] cpu4 \n[    2.873593] cpu5 \n[    2.876930] cpu6 \n[    2.878678] cpu7 \n\n[    4.000561] of_batterydata_get_best_profile: f2_scud found\n[    4.000599] QCOM-STEPCHG: read_range_data_from_node: Count qcom,step-chg-ranges failed, rc=-22\n[    7.892495] Sampling power every 1000 ms\n               Baseline power usage: \n[   83.083027] CPU1: Booted secondary processor [517f803c]\n[   84.093119] 554 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 576 748 998 1209 1324 1516 1612 1708\n               \n                300: \n[  305.121070] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.121114] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.122821] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.122896] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.122906] ADSPRPC: Audio PD restart notifier locator down\n[  305.122946] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.122952] ADSPRPC: Audio PD restart notifier locator down\n[  316.954334]  1114     3.7 C/MHz     62 mW   14.0 J   17.9 I/mJ   224.5 s\n                576: \n[  442.337464]  2139     3.7 C/MHz     77 mW    9.0 J   27.9 I/mJ   116.9 s\n                748: \n[  540.644789]  2780     3.7 C/MHz     83 mW    7.4 J   33.7 I/mJ    89.9 s\n                998: \n[  616.888318]  3707     3.7 C/MHz    116 mW    7.9 J   31.8 I/mJ    67.4 s\n               1209: \n[  681.107149]  4491     3.7 C/MHz    109 mW    6.1 J   41.2 I/mJ    55.7 s\n               1324: \n[  740.311775]  4919     3.7 C/MHz    142 mW    7.2 J   34.6 I/mJ    50.8 s\n               1516: \n[  793.506487]  5632     3.7 C/MHz    132 mW    5.8 J   42.7 I/mJ    44.4 s\n               1612: \n[  843.687251]  5988     3.7 C/MHz    140 mW    5.8 J   42.9 I/mJ    41.8 s\n               1708: \n[  891.874877] CPU6: Booted secondary processor [516f802d]\n[  892.885630]  6345     3.7 C/MHz    163 mW    6.4 J   39.0 I/mJ    39.4 s\n               \n               \n               ===== CPU 6 =====\n               Frequencies: 300 652 825 979 1132 1363 1536 1747 1843 1996 2054 2169 2208 2304\n               \n                300: \n[  910.291313] FG: fg_psy_get_property: unsupported property 4\n[  910.299354] FG: fg_psy_get_property: unsupported property 4\n[ 1035.470588]  1869     6.2 C/MHz     85 mW   11.4 J   22.0 I/mJ   133.8 s\n                652: \n[ 1105.814733]  4063     6.2 C/MHz    128 mW    7.9 J   31.7 I/mJ    61.6 s\n                825: \n[ 1163.125930]  5137     6.2 C/MHz    175 mW    8.5 J   29.4 I/mJ    48.7 s\n                979: \n[ 1212.408219]  6082     6.2 C/MHz    180 mW    7.4 J   33.8 I/mJ    41.1 s\n               1132: \n[ 1256.672566]  7070     6.2 C/MHz    216 mW    7.6 J   32.7 I/mJ    35.4 s\n               1363: \n[ 1294.924477]  8509     6.2 C/MHz    263 mW    7.7 J   32.3 I/mJ    29.4 s\n               1536: \n[ 1330.163330]  9578     6.2 C/MHz    326 mW    8.5 J   29.4 I/mJ    26.1 s\n               1747: \n[ 1361.392335] 10870     6.2 C/MHz    399 mW    9.2 J   27.2 I/mJ    23.0 s\n               1843: \n[ 1389.956656] FG: fg_psy_get_property: unsupported property 4\n[ 1389.965944] FG: fg_psy_get_property: unsupported property 4\n[ 1391.621750] 11475     6.2 C/MHz    406 mW    8.9 J   28.2 I/mJ    21.8 s\n               1996: \n[ 1420.844704] 12457     6.2 C/MHz    497 mW   10.0 J   25.0 I/mJ    20.1 s\n               2054: \n[ 1449.062425] 12798     6.2 C/MHz    530 mW   10.4 J   24.1 I/mJ    19.6 s\n               2169: \n[ 1476.278959] 13467     6.2 C/MHz    568 mW   10.6 J   23.7 I/mJ    18.6 s\n               2208: \n[ 1503.488704] 13708     6.2 C/MHz    615 mW   11.2 J   22.3 I/mJ    18.3 s\n               2304: \n[ 1529.718451] 14360     6.2 C/MHz    686 mW   12.0 J   20.9 I/mJ    17.4 s\n               \n               \n               Benchmark finished!\n[ 1529.755907] \n               real\t25m27.851s\n               user\t20m48.084s\n               sys\t0m0.838s\n"
  },
  {
    "path": "results/sdm712/second/post_bench_interrupts.txt",
    "content": "           CPU0       \n  4:       7115   PDC-GIC  19 Level     arch_timer\n  6:     154239   PDC-GIC  38 Level     arch_mem_timer\n  7:          0   PDC-GIC 483 Edge      smp2p\n  8:          0   PDC-GIC 204 Edge      smp2p\n  9:          0   PDC-GIC 608 Edge      smp2p\n 11:          0   PDC-GIC 636 Level     i2c_geni\n 12:        498   PDC-GIC 640 Level     i2c_geni\n 13:          0   PDC-GIC 637 Level     spi_geni\n 15:       1746   PDC-GIC 386 Level     i2c_geni\n 16:        203   PDC-GIC 387 Level     i2c_geni\n 18:          0   PDC-GIC 206 Level     msm_vidc\n 19:          0   PDC-GIC 115 Edge      msm_drm\n 20:          0   PDC-GIC 304 Level     sps\n 21:          0   PDC-GIC 538 Level     tsens-upper-lower\n 22:          0   PDC-GIC 540 Level     tsens-critical\n 23:          0   PDC-GIC 539 Level     tsens-upper-lower\n 24:          0   PDC-GIC 541 Level     tsens-critical\n 25:          0   PDC-GIC 323 Level     ngd_slim_irq\n 27:          0   PDC-GIC  32 Edge      apps_wdog_bark\n 59:         11   PDC-GIC 421 Edge      qcom,qmp-aop\n 60:          0   PDC-GIC 481 Edge      qcom,glink-smem-native-xprt-modem\n 61:          0   PDC-GIC 202 Edge      qcom,glink-smem-native-xprt-adsp\n 62:          0   PDC-GIC 606 Edge      qcom,glink-smem-native-xprt-cdsp\n 64:          0   PDC-GIC 524 Level     eud_irq\n 66:       2865   PDC-GIC  37 Level     apps_rsc\n 67:          0   PDC-GIC 161 Level     display_rsc\n 69:          0  pmic_arb 8388615 Edge      qpnp_kpdpwr_status\n 70:          0  pmic_arb 8454151 Edge      qpnp_resin_status\n 72:          0  pmic_arb 8716295 Edge      qpnp_kpdpwr_resin_bark\n 73:          0  pmic_arb 37748761 Edge      pm660_tz\n 82:         21  pmic_arb 51380252 Edge      qpnp_vadc_interrupt\n 83:          0  pmic_arb 24117268 Edge      sig-tx\n 84:          0  pmic_arb 24182804 Edge      sig-rx\n 85:          0  pmic_arb 24248340 Edge      msg-tx\n 86:          0  pmic_arb 24313876 Edge      msg-rx\n 87:          0  pmic_arb 24379412 Edge      msg-tx-failed\n 88:          0  pmic_arb 24444948 Edge      msg-tx-discarded\n 89:          0  pmic_arb 24510484 Edge      msg-rx-discarded\n 90:          0  pmic_arb 54525982 Edge      qpnp_adc_tm_interrupt\n 91:          0  pmic_arb 69206054 Edge      bcl-high-ibat\n 93:          0  pmic_arb 69337126 Edge      bcl-low-vbat\n 96:          0  pmic_arb 469762164 Edge      haptics_sc_irq\n 97:          0  pmic_arb 469827700 Edge      haptics_play_irq\n 98:          0  pmic_arb 574619778 Edge      pm660l_tz\n104:          0  pmic_arb 744489106 Edge      volume_up\n107:          0  pmic_arb 1026556093 Edge      qpnp_flash_led_fault_irq\n108:          0  pmic_arb 1026752701 Edge      qpnp_flash_led_all_ramp_down_done_irq\n109:          0  pmic_arb 1026818237 Edge      qpnp_flash_led_all_ramp_up_done_irq\n110:          0  pmic_arb 1031864510 Edge      qpnp_wled_ovp_irq\n125:        328   PDC-GIC 297 Edge      1d84000.ufshc\n126:          0   PDC-GIC 194 Edge      adsp\n129:          0   PDC-GIC 298 Edge      modem\n130:          0   PDC-GIC 610 Edge      cdsp\n158:          0  msmgpio-dc  10 Edge      TE_GPIO\n192:          0  msmgpio-dc  44 Level     nq-nci\n202:          0  msmgpio-dc  54 Edge      bq2591x charger irq\n226:          0  msmgpio-dc  78 Edge      esd_err_irq\n244:          0  msmgpio-dc  96 Level     cs35l41\n272:          0   msmgpio 124 Edge      hall_key\n273:          3  msmgpio-dc 125 Edge      goodix_ts\n374:          0   PDC-GIC 261 Level     arm-smmu global fault\n375:          0   PDC-GIC 263 Level     arm-smmu global fault\n376:          0   PDC-GIC 396 Level     arm-smmu-context-fault\n377:          0   PDC-GIC 397 Level     arm-smmu-context-fault\n378:          0   PDC-GIC 398 Level     arm-smmu-context-fault\n384:          0   PDC-GIC  97 Level     arm-smmu global fault\n387:          0   PDC-GIC 130 Level     arm-smmu-context-fault\n388:          0   PDC-GIC 131 Level     arm-smmu-context-fault\n389:          0   PDC-GIC 132 Level     arm-smmu-context-fault\n390:          0   PDC-GIC 133 Level     arm-smmu-context-fault\n391:          0   PDC-GIC 134 Level     arm-smmu-context-fault\n392:          0   PDC-GIC 135 Level     arm-smmu-context-fault\n393:          0   PDC-GIC 136 Level     arm-smmu-context-fault\n394:          0   PDC-GIC 137 Level     arm-smmu-context-fault\n395:          0   PDC-GIC 138 Level     arm-smmu-context-fault\n396:          0   PDC-GIC 139 Level     arm-smmu-context-fault\n397:          0   PDC-GIC 140 Level     arm-smmu-context-fault\n398:          0   PDC-GIC 141 Level     arm-smmu-context-fault\n399:          0   PDC-GIC 142 Level     arm-smmu-context-fault\n400:          0   PDC-GIC 143 Level     arm-smmu-context-fault\n401:          0   PDC-GIC 144 Level     arm-smmu-context-fault\n402:          0   PDC-GIC 145 Level     arm-smmu-context-fault\n403:          0   PDC-GIC 146 Level     arm-smmu-context-fault\n404:          0   PDC-GIC 147 Level     arm-smmu-context-fault\n405:          0   PDC-GIC 148 Level     arm-smmu-context-fault\n406:          0   PDC-GIC 149 Level     arm-smmu-context-fault\n407:          0   PDC-GIC 150 Level     arm-smmu-context-fault\n408:          0   PDC-GIC 213 Level     arm-smmu-context-fault\n409:          0   PDC-GIC 214 Level     arm-smmu-context-fault\n410:          0   PDC-GIC 215 Level     arm-smmu-context-fault\n411:          0   PDC-GIC 216 Level     arm-smmu-context-fault\n412:          0   PDC-GIC 217 Level     arm-smmu-context-fault\n413:          0   PDC-GIC 218 Level     arm-smmu-context-fault\n414:          0   PDC-GIC 219 Level     arm-smmu-context-fault\n415:          0   PDC-GIC 220 Level     arm-smmu-context-fault\n416:          0   PDC-GIC 221 Level     arm-smmu-context-fault\n417:          0   PDC-GIC 222 Level     arm-smmu-context-fault\n418:          0   PDC-GIC 223 Level     arm-smmu-context-fault\n419:          0   PDC-GIC 224 Level     arm-smmu-context-fault\n449:          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n450:          0   PDC-GIC 162 Edge      pwr_event_irq\n451:          0   PDC-GIC 518 Level     ss_phy_irq\n452:          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n453:          0   PDC-GIC 332 Level     kgsl-3d0\n454:          0   PDC-GIC 336 Level     HFI\n455:          0   PDC-GIC 337 Level     GMU\n456:          0   PDC-GIC 509 Edge      csiphy\n457:          0   PDC-GIC 510 Edge      csiphy\n458:          0   PDC-GIC 511 Edge      csiphy\n459:          0   PDC-GIC 492 Edge      cci\n460:          0   PDC-GIC 491 Edge      cpas_camnoc\n461:          1   PDC-GIC 493 Edge      cpas-cdm\n462:          0   PDC-GIC 496 Edge      csid\n463:          2   PDC-GIC 497 Edge      ife\n464:          0   PDC-GIC 498 Edge      csid\n465:          2   PDC-GIC 499 Edge      ife\n466:          0   PDC-GIC 500 Edge      csid-lite\n467:          2   PDC-GIC 501 Edge      ife-lite\n468:          0   PDC-GIC 495 Edge      a5\n469:          0   PDC-GIC 506 Edge      jpeg\n470:          0   PDC-GIC 507 Edge      jpegdma\n471:          2   PDC-GIC 494 Edge      fd\n472:          1   PDC-GIC 508 Edge      lrme\n474:          0   PDC-GIC  64 Level     limits_sensor-00\n475:          0   PDC-GIC  65 Level     limits_sensor-01\n604:          0       sde   4 Edge      dsi_ctrl\n605:          0  pmic_arb 101777466 Edge      qpnp_rtc_alarm\n606:          0       sde   2 Edge      sde_rotator_r3\n607:          0  pmic_arb 16777229 Edge      chg-error\n608:          0  pmic_arb 16842765 Edge      chg-state-change\n612:          0  pmic_arb 17825806 Edge      otg-fail\n613:          0  pmic_arb 17891342 Edge      otg-overcurrent\n614:          0  pmic_arb 17956878 Edge      otg-oc-dis-sw-sts\n615:          0  pmic_arb 18022414 Edge      testmode-change-detect\n616:          0  pmic_arb 18874383 Edge      bat-temp\n617:          0  pmic_arb 18939919 Edge      bat-ocp\n618:          0  pmic_arb 19005455 Edge      bat-ov\n619:          0  pmic_arb 19070991 Edge      bat-low\n620:          0  pmic_arb 19136527 Edge      bat-therm-or-id-missing\n621:          0  pmic_arb 19202063 Edge      bat-terminal-missing\n622:          0  pmic_arb 19922960 Edge      usbin-collapse\n623:          0  pmic_arb 19988496 Edge      usbin-lt-3p6v\n624:          0  pmic_arb 20054032 Edge      usbin-uv\n625:          0  pmic_arb 20119568 Edge      usbin-ov\n626:          0  pmic_arb 20185104 Edge      usbin-plugin\n627:          0  pmic_arb 20250640 Edge      usbin-src-change\n628:          0  pmic_arb 20316176 Edge      usbin-icl-change\n629:          0  pmic_arb 20381712 Edge      type-c-change\n630:          0  pmic_arb 20971537 Edge      dcin-collapse\n631:          0  pmic_arb 21037073 Edge      dcin-lt-3p6v\n632:          0  pmic_arb 21102609 Edge      dcin-uv\n633:          0  pmic_arb 21168145 Edge      dcin-ov\n634:          0  pmic_arb 21233681 Edge      dcin-plugin\n635:          0  pmic_arb 21299217 Edge      div2-en-dg\n636:          0  pmic_arb 21364753 Edge      dcin-icl-change\n638:          0  pmic_arb 23134227 Edge      wdog-bark\n639:          0  pmic_arb 23199763 Edge      aicl-fail\n640:          0  pmic_arb 23265299 Edge      aicl-done\n641:          0  pmic_arb 23330835 Edge      high-duty-cycle\n642:          0  pmic_arb 23396371 Edge      input-current-limiting\n643:          0  pmic_arb 23461907 Edge      temperature-change\n644:          0  pmic_arb 23527443 Edge      switcher-power-ok\n645:          0  smp2p_gpio   0 Edge      adsp\n646:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n647:          0  smp2p_gpio   2 Edge      adsp\n648:          0  smp2p_gpio   3 Edge      adsp\n677:          0  smp2p_gpio   0 Edge      ipa_smp2p_clk_vote\n709:          0  smp2p_gpio   0 Edge      modem\n710:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n711:          0  smp2p_gpio   2 Edge      modem\n712:          0  smp2p_gpio   3 Edge      modem\n741:          0  smp2p_gpio   0 Edge      cdsp\n742:          0  smp2p_gpio   1 Edge      error_ready_interrupt\n743:          0  smp2p_gpio   2 Edge      cdsp\n744:          0  smp2p_gpio   3 Edge      cdsp\n901:          0   PDC-GIC 165 Edge      dwc3\n903:          1  pmic_arb 67108900 Edge      soc-update\n904:          0  pmic_arb 67174436 Edge      soc-ready\n905:          0  pmic_arb 67239972 Edge      bsoc-delta\n906:          2  pmic_arb 67305508 Edge      msoc-delta\n907:          0  pmic_arb 67371044 Edge      msoc-low\n908:          0  pmic_arb 67436580 Edge      msoc-empty\n909:          0  pmic_arb 67502116 Edge      msoc-high\n910:          0  pmic_arb 67567652 Edge      msoc-full\n911:          0  pmic_arb 68157477 Edge      vbatt-pred-delta\n912:          0  pmic_arb 68223013 Edge      vbatt-low\n913:          0  pmic_arb 68288549 Edge      esr-delta\n914:          0  pmic_arb 68354085 Edge      batt-missing\n915:          0  pmic_arb 68550693 Edge      batt-temp-delta\n916:        183  pmic_arb 71303208 Edge      ima-rdy\n917:          0  pmic_arb 71368744 Edge      mem-xcp\n918:          0  pmic_arb 71434280 Edge      dma-grant\nIPI0:       141       Rescheduling interrupts\nIPI1:        19       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       Timer broadcast interrupts\nIPI4:     75874       IRQ work interrupts\nIPI5:         0       CPU wake-up interrupts\nIPI6:         0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm712/second/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  4:        628          2          2          2          2          2          2          2   PDC-GIC  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   PDC-GIC  38 Level     arch_mem_timer\n  7:          0          0          0          0          0          0          0          0   PDC-GIC 483 Edge      smp2p\n  8:          0          0          0          0          0          0          0          0   PDC-GIC 204 Edge      smp2p\n  9:          0          0          0          0          0          0          0          0   PDC-GIC 608 Edge      smp2p\n 11:          0          0          0          0          0          0          0          0   PDC-GIC 636 Level     i2c_geni\n 12:        498          0          0          0          0          0          0          0   PDC-GIC 640 Level     i2c_geni\n 13:          0          0          0          0          0          0          0          0   PDC-GIC 637 Level     spi_geni\n 15:        211          0          0          0          0          0          0          0   PDC-GIC 386 Level     i2c_geni\n 16:        113          0          0          0          0          0          0          0   PDC-GIC 387 Level     i2c_geni\n 18:          0          0          0          0          0          0          0          0   PDC-GIC 206 Level     msm_vidc\n 19:          0          0          0          0          0          0          0          0   PDC-GIC 115 Edge      msm_drm\n 20:          0          0          0          0          0          0          0          0   PDC-GIC 304 Level     sps\n 21:          0          0          0          0          0          0          0          0   PDC-GIC 538 Level     tsens-upper-lower\n 22:          0          0          0          0          0          0          0          0   PDC-GIC 540 Level     tsens-critical\n 23:          0          0          0          0          0          0          0          0   PDC-GIC 539 Level     tsens-upper-lower\n 24:          0          0          0          0          0          0          0          0   PDC-GIC 541 Level     tsens-critical\n 25:          0          0          0          0          0          0          0          0   PDC-GIC 323 Level     ngd_slim_irq\n 27:          0          0          0          0          0          0          0          0   PDC-GIC  32 Edge      apps_wdog_bark\n 59:         11          0          0          0          0          0          0          0   PDC-GIC 421 Edge      qcom,qmp-aop\n 60:          0          0          0          0          0          0          0          0   PDC-GIC 481 Edge      qcom,glink-smem-native-xprt-modem\n 61:          0          0          0          0          0          0          0          0   PDC-GIC 202 Edge      qcom,glink-smem-native-xprt-adsp\n 62:          0          0          0          0          0          0          0          0   PDC-GIC 606 Edge      qcom,glink-smem-native-xprt-cdsp\n 64:          0          0          0          0          0          0          0          0   PDC-GIC 524 Level     eud_irq\n 66:        391          0          0          0          0          0          0          0   PDC-GIC  37 Level     apps_rsc\n 67:          0          0          0          0          0          0          0          0   PDC-GIC 161 Level     display_rsc\n 69:          0          0          0          0          0          0          0          0  pmic_arb 8388615 Edge      qpnp_kpdpwr_status\n 70:          0          0          0          0          0          0          0          0  pmic_arb 8454151 Edge      qpnp_resin_status\n 72:          0          0          0          0          0          0          0          0  pmic_arb 8716295 Edge      qpnp_kpdpwr_resin_bark\n 73:          0          0          0          0          0          0          0          0  pmic_arb 37748761 Edge      pm660_tz\n 82:         21          0          0          0          0          0          0          0  pmic_arb 51380252 Edge      qpnp_vadc_interrupt\n 83:          0          0          0          0          0          0          0          0  pmic_arb 24117268 Edge      sig-tx\n 84:          0          0          0          0          0          0          0          0  pmic_arb 24182804 Edge      sig-rx\n 85:          0          0          0          0          0          0          0          0  pmic_arb 24248340 Edge      msg-tx\n 86:          0          0          0          0          0          0          0          0  pmic_arb 24313876 Edge      msg-rx\n 87:          0          0          0          0          0          0          0          0  pmic_arb 24379412 Edge      msg-tx-failed\n 88:          0          0          0          0          0          0          0          0  pmic_arb 24444948 Edge      msg-tx-discarded\n 89:          0          0          0          0          0          0          0          0  pmic_arb 24510484 Edge      msg-rx-discarded\n 90:          0          0          0          0          0          0          0          0  pmic_arb 54525982 Edge      qpnp_adc_tm_interrupt\n 91:          0          0          0          0          0          0          0          0  pmic_arb 69206054 Edge      bcl-high-ibat\n 93:          0          0          0          0          0          0          0          0  pmic_arb 69337126 Edge      bcl-low-vbat\n 96:          0          0          0          0          0          0          0          0  pmic_arb 469762164 Edge      haptics_sc_irq\n 97:          0          0          0          0          0          0          0          0  pmic_arb 469827700 Edge      haptics_play_irq\n 98:          0          0          0          0          0          0          0          0  pmic_arb 574619778 Edge      pm660l_tz\n104:          0          0          0          0          0          0          0          0  pmic_arb 744489106 Edge      volume_up\n107:          0          0          0          0          0          0          0          0  pmic_arb 1026556093 Edge      qpnp_flash_led_fault_irq\n108:          0          0          0          0          0          0          0          0  pmic_arb 1026752701 Edge      qpnp_flash_led_all_ramp_down_done_irq\n109:          0          0          0          0          0          0          0          0  pmic_arb 1026818237 Edge      qpnp_flash_led_all_ramp_up_done_irq\n110:          0          0          0          0          0          0          0          0  pmic_arb 1031864510 Edge      qpnp_wled_ovp_irq\n125:        319          0          0          0          0          0          0          0   PDC-GIC 297 Edge      1d84000.ufshc\n126:          0          0          0          0          0          0          0          0   PDC-GIC 194 Edge      adsp\n129:          0          0          0          0          0          0          0          0   PDC-GIC 298 Edge      modem\n130:          0          0          0          0          0          0          0          0   PDC-GIC 610 Edge      cdsp\n158:          0          0          0          0          0          0          0          0  msmgpio-dc  10 Edge      TE_GPIO\n192:          0          0          0          0          0          0          0          0  msmgpio-dc  44 Level     nq-nci\n202:          0          0          0          0          0          0          0          0  msmgpio-dc  54 Edge      bq2591x charger irq\n226:          0          0          0          0          0          0          0          0  msmgpio-dc  78 Edge      esd_err_irq\n244:          0          0          0          0          0          0          0          0  msmgpio-dc  96 Level     cs35l41\n272:          0          0          0          0          0          0          0          0   msmgpio 124 Edge      hall_key\n273:          3          0          0          0          0          0          0          0  msmgpio-dc 125 Edge      goodix_ts\n374:          0          0          0          0          0          0          0          0   PDC-GIC 261 Level     arm-smmu global fault\n375:          0          0          0          0          0          0          0          0   PDC-GIC 263 Level     arm-smmu global fault\n376:          0          0          0          0          0          0          0          0   PDC-GIC 396 Level     arm-smmu-context-fault\n377:          0          0          0          0          0          0          0          0   PDC-GIC 397 Level     arm-smmu-context-fault\n378:          0          0          0          0          0          0          0          0   PDC-GIC 398 Level     arm-smmu-context-fault\n384:          0          0          0          0          0          0          0          0   PDC-GIC  97 Level     arm-smmu global fault\n387:          0          0          0          0          0          0          0          0   PDC-GIC 130 Level     arm-smmu-context-fault\n388:          0          0          0          0          0          0          0          0   PDC-GIC 131 Level     arm-smmu-context-fault\n389:          0          0          0          0          0          0          0          0   PDC-GIC 132 Level     arm-smmu-context-fault\n390:          0          0          0          0          0          0          0          0   PDC-GIC 133 Level     arm-smmu-context-fault\n391:          0          0          0          0          0          0          0          0   PDC-GIC 134 Level     arm-smmu-context-fault\n392:          0          0          0          0          0          0          0          0   PDC-GIC 135 Level     arm-smmu-context-fault\n393:          0          0          0          0          0          0          0          0   PDC-GIC 136 Level     arm-smmu-context-fault\n394:          0          0          0          0          0          0          0          0   PDC-GIC 137 Level     arm-smmu-context-fault\n395:          0          0          0          0          0          0          0          0   PDC-GIC 138 Level     arm-smmu-context-fault\n396:          0          0          0          0          0          0          0          0   PDC-GIC 139 Level     arm-smmu-context-fault\n397:          0          0          0          0          0          0          0          0   PDC-GIC 140 Level     arm-smmu-context-fault\n398:          0          0          0          0          0          0          0          0   PDC-GIC 141 Level     arm-smmu-context-fault\n399:          0          0          0          0          0          0          0          0   PDC-GIC 142 Level     arm-smmu-context-fault\n400:          0          0          0          0          0          0          0          0   PDC-GIC 143 Level     arm-smmu-context-fault\n401:          0          0          0          0          0          0          0          0   PDC-GIC 144 Level     arm-smmu-context-fault\n402:          0          0          0          0          0          0          0          0   PDC-GIC 145 Level     arm-smmu-context-fault\n403:          0          0          0          0          0          0          0          0   PDC-GIC 146 Level     arm-smmu-context-fault\n404:          0          0          0          0          0          0          0          0   PDC-GIC 147 Level     arm-smmu-context-fault\n405:          0          0          0          0          0          0          0          0   PDC-GIC 148 Level     arm-smmu-context-fault\n406:          0          0          0          0          0          0          0          0   PDC-GIC 149 Level     arm-smmu-context-fault\n407:          0          0          0          0          0          0          0          0   PDC-GIC 150 Level     arm-smmu-context-fault\n408:          0          0          0          0          0          0          0          0   PDC-GIC 213 Level     arm-smmu-context-fault\n409:          0          0          0          0          0          0          0          0   PDC-GIC 214 Level     arm-smmu-context-fault\n410:          0          0          0          0          0          0          0          0   PDC-GIC 215 Level     arm-smmu-context-fault\n411:          0          0          0          0          0          0          0          0   PDC-GIC 216 Level     arm-smmu-context-fault\n412:          0          0          0          0          0          0          0          0   PDC-GIC 217 Level     arm-smmu-context-fault\n413:          0          0          0          0          0          0          0          0   PDC-GIC 218 Level     arm-smmu-context-fault\n414:          0          0          0          0          0          0          0          0   PDC-GIC 219 Level     arm-smmu-context-fault\n415:          0          0          0          0          0          0          0          0   PDC-GIC 220 Level     arm-smmu-context-fault\n416:          0          0          0          0          0          0          0          0   PDC-GIC 221 Level     arm-smmu-context-fault\n417:          0          0          0          0          0          0          0          0   PDC-GIC 222 Level     arm-smmu-context-fault\n418:          0          0          0          0          0          0          0          0   PDC-GIC 223 Level     arm-smmu-context-fault\n419:          0          0          0          0          0          0          0          0   PDC-GIC 224 Level     arm-smmu-context-fault\n449:          0          0          0          0          0          0          0          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n450:          0          0          0          0          0          0          0          0   PDC-GIC 162 Edge      pwr_event_irq\n451:          0          0          0          0          0          0          0          0   PDC-GIC 518 Level     ss_phy_irq\n452:          0          0          0          0          0          0          0          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n453:          0          0          0          0          0          0          0          0   PDC-GIC 332 Level     kgsl-3d0\n454:          0          0          0          0          0          0          0          0   PDC-GIC 336 Level     HFI\n455:          0          0          0          0          0          0          0          0   PDC-GIC 337 Level     GMU\n456:          0          0          0          0          0          0          0          0   PDC-GIC 509 Edge      csiphy\n457:          0          0          0          0          0          0          0          0   PDC-GIC 510 Edge      csiphy\n458:          0          0          0          0          0          0          0          0   PDC-GIC 511 Edge      csiphy\n459:          0          0          0          0          0          0          0          0   PDC-GIC 492 Edge      cci\n460:          0          0          0          0          0          0          0          0   PDC-GIC 491 Edge      cpas_camnoc\n461:          1          0          0          0          0          0          0          0   PDC-GIC 493 Edge      cpas-cdm\n462:          0          0          0          0          0          0          0          0   PDC-GIC 496 Edge      csid\n463:          2          0          0          0          0          0          0          0   PDC-GIC 497 Edge      ife\n464:          0          0          0          0          0          0          0          0   PDC-GIC 498 Edge      csid\n465:          2          0          0          0          0          0          0          0   PDC-GIC 499 Edge      ife\n466:          0          0          0          0          0          0          0          0   PDC-GIC 500 Edge      csid-lite\n467:          2          0          0          0          0          0          0          0   PDC-GIC 501 Edge      ife-lite\n468:          0          0          0          0          0          0          0          0   PDC-GIC 495 Edge      a5\n469:          0          0          0          0          0          0          0          0   PDC-GIC 506 Edge      jpeg\n470:          0          0          0          0          0          0          0          0   PDC-GIC 507 Edge      jpegdma\n471:          2          0          0          0          0          0          0          0   PDC-GIC 494 Edge      fd\n472:          1          0          0          0          0          0          0          0   PDC-GIC 508 Edge      lrme\n474:          0          0          0          0          0          0          0          0   PDC-GIC  64 Level     limits_sensor-00\n475:          0          0          0          0          0          0          0          0   PDC-GIC  65 Level     limits_sensor-01\n604:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n605:          0          0          0          0          0          0          0          0  pmic_arb 101777466 Edge      qpnp_rtc_alarm\n606:          0          0          0          0          0          0          0          0       sde   2 Edge      sde_rotator_r3\n607:          0          0          0          0          0          0          0          0  pmic_arb 16777229 Edge      chg-error\n608:          0          0          0          0          0          0          0          0  pmic_arb 16842765 Edge      chg-state-change\n612:          0          0          0          0          0          0          0          0  pmic_arb 17825806 Edge      otg-fail\n613:          0          0          0          0          0          0          0          0  pmic_arb 17891342 Edge      otg-overcurrent\n614:          0          0          0          0          0          0          0          0  pmic_arb 17956878 Edge      otg-oc-dis-sw-sts\n615:          0          0          0          0          0          0          0          0  pmic_arb 18022414 Edge      testmode-change-detect\n616:          0          0          0          0          0          0          0          0  pmic_arb 18874383 Edge      bat-temp\n617:          0          0          0          0          0          0          0          0  pmic_arb 18939919 Edge      bat-ocp\n618:          0          0          0          0          0          0          0          0  pmic_arb 19005455 Edge      bat-ov\n619:          0          0          0          0          0          0          0          0  pmic_arb 19070991 Edge      bat-low\n620:          0          0          0          0          0          0          0          0  pmic_arb 19136527 Edge      bat-therm-or-id-missing\n621:          0          0          0          0          0          0          0          0  pmic_arb 19202063 Edge      bat-terminal-missing\n622:          0          0          0          0          0          0          0          0  pmic_arb 19922960 Edge      usbin-collapse\n623:          0          0          0          0          0          0          0          0  pmic_arb 19988496 Edge      usbin-lt-3p6v\n624:          0          0          0          0          0          0          0          0  pmic_arb 20054032 Edge      usbin-uv\n625:          0          0          0          0          0          0          0          0  pmic_arb 20119568 Edge      usbin-ov\n626:          0          0          0          0          0          0          0          0  pmic_arb 20185104 Edge      usbin-plugin\n627:          0          0          0          0          0          0          0          0  pmic_arb 20250640 Edge      usbin-src-change\n628:          0          0          0          0          0          0          0          0  pmic_arb 20316176 Edge      usbin-icl-change\n629:          0          0          0          0          0          0          0          0  pmic_arb 20381712 Edge      type-c-change\n630:          0          0          0          0          0          0          0          0  pmic_arb 20971537 Edge      dcin-collapse\n631:          0          0          0          0          0          0          0          0  pmic_arb 21037073 Edge      dcin-lt-3p6v\n632:          0          0          0          0          0          0          0          0  pmic_arb 21102609 Edge      dcin-uv\n633:          0          0          0          0          0          0          0          0  pmic_arb 21168145 Edge      dcin-ov\n634:          0          0          0          0          0          0          0          0  pmic_arb 21233681 Edge      dcin-plugin\n635:          0          0          0          0          0          0          0          0  pmic_arb 21299217 Edge      div2-en-dg\n636:          0          0          0          0          0          0          0          0  pmic_arb 21364753 Edge      dcin-icl-change\n638:          0          0          0          0          0          0          0          0  pmic_arb 23134227 Edge      wdog-bark\n639:          0          0          0          0          0          0          0          0  pmic_arb 23199763 Edge      aicl-fail\n640:          0          0          0          0          0          0          0          0  pmic_arb 23265299 Edge      aicl-done\n641:          0          0          0          0          0          0          0          0  pmic_arb 23330835 Edge      high-duty-cycle\n642:          0          0          0          0          0          0          0          0  pmic_arb 23396371 Edge      input-current-limiting\n643:          0          0          0          0          0          0          0          0  pmic_arb 23461907 Edge      temperature-change\n644:          0          0          0          0          0          0          0          0  pmic_arb 23527443 Edge      switcher-power-ok\n645:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      adsp\n646:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n647:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      adsp\n648:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      adsp\n677:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      ipa_smp2p_clk_vote\n709:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      modem\n710:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n711:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      modem\n712:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      modem\n741:          0          0          0          0          0          0          0          0  smp2p_gpio   0 Edge      cdsp\n742:          0          0          0          0          0          0          0          0  smp2p_gpio   1 Edge      error_ready_interrupt\n743:          0          0          0          0          0          0          0          0  smp2p_gpio   2 Edge      cdsp\n744:          0          0          0          0          0          0          0          0  smp2p_gpio   3 Edge      cdsp\n901:          0          0          0          0          0          0          0          0   PDC-GIC 165 Edge      dwc3\n903:          0          0          0          0          0          0          0          0  pmic_arb 67108900 Edge      soc-update\n904:          0          0          0          0          0          0          0          0  pmic_arb 67174436 Edge      soc-ready\n905:          0          0          0          0          0          0          0          0  pmic_arb 67239972 Edge      bsoc-delta\n906:          0          0          0          0          0          0          0          0  pmic_arb 67305508 Edge      msoc-delta\n907:          0          0          0          0          0          0          0          0  pmic_arb 67371044 Edge      msoc-low\n908:          0          0          0          0          0          0          0          0  pmic_arb 67436580 Edge      msoc-empty\n909:          0          0          0          0          0          0          0          0  pmic_arb 67502116 Edge      msoc-high\n910:          0          0          0          0          0          0          0          0  pmic_arb 67567652 Edge      msoc-full\n911:          0          0          0          0          0          0          0          0  pmic_arb 68157477 Edge      vbatt-pred-delta\n912:          0          0          0          0          0          0          0          0  pmic_arb 68223013 Edge      vbatt-low\n913:          0          0          0          0          0          0          0          0  pmic_arb 68288549 Edge      esr-delta\n914:          0          0          0          0          0          0          0          0  pmic_arb 68354085 Edge      batt-missing\n915:          0          0          0          0          0          0          0          0  pmic_arb 68550693 Edge      batt-temp-delta\n916:         36          0          0          0          0          0          0          0  pmic_arb 71303208 Edge      ima-rdy\n917:          0          0          0          0          0          0          0          0  pmic_arb 71368744 Edge      mem-xcp\n918:          0          0          0          0          0          0          0          0  pmic_arb 71434280 Edge      dma-grant\nIPI0:        63         99         99         99         99         99         92         92       Rescheduling interrupts\nIPI1:         4          6          6          6          6          6          6          6       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI4:        99          3          4          3          4          3          7          7       IRQ work interrupts\nIPI5:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU backtrace\nErr:          0\n"
  },
  {
    "path": "results/sdm712/second/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    4 root      0:00 [kworker/0:0H]\n    6 root      0:00 [ksoftirqd/0]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [lru-add-drain]\n   15 root      0:00 [cpuhp/0]\n   16 root      0:00 [cpuhp/1]\n   17 root      0:00 [migration/1]\n   18 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0H]\n   21 root      0:00 [rcuop/1]\n   22 root      0:00 [rcuos/1]\n   23 root      0:00 [rcuob/1]\n   24 root      0:00 [cpuhp/2]\n   25 root      0:00 [migration/2]\n   26 root      0:00 [ksoftirqd/2]\n   27 root      0:00 [kworker/2:0]\n   28 root      0:00 [kworker/2:0H]\n   29 root      0:00 [rcuop/2]\n   30 root      0:00 [rcuos/2]\n   31 root      0:00 [rcuob/2]\n   32 root      0:00 [cpuhp/3]\n   33 root      0:00 [migration/3]\n   34 root      0:00 [ksoftirqd/3]\n   36 root      0:00 [kworker/3:0H]\n   37 root      0:00 [rcuop/3]\n   38 root      0:00 [rcuos/3]\n   39 root      0:00 [rcuob/3]\n   40 root      0:00 [cpuhp/4]\n   41 root      0:00 [migration/4]\n   42 root      0:00 [ksoftirqd/4]\n   43 root      0:00 [kworker/4:0]\n   44 root      0:00 [kworker/4:0H]\n   45 root      0:00 [rcuop/4]\n   46 root      0:00 [rcuos/4]\n   47 root      0:00 [rcuob/4]\n   48 root      0:00 [cpuhp/5]\n   49 root      0:00 [migration/5]\n   50 root      0:00 [ksoftirqd/5]\n   51 root      0:00 [kworker/5:0]\n   52 root      0:00 [kworker/5:0H]\n   53 root      0:00 [rcuop/5]\n   54 root      0:00 [rcuos/5]\n   55 root      0:00 [rcuob/5]\n   56 root      0:00 [cpuhp/6]\n   57 root      0:00 [migration/6]\n   58 root      0:00 [ksoftirqd/6]\n   59 root      0:00 [kworker/6:0]\n   60 root      0:00 [kworker/6:0H]\n   61 root      0:00 [rcuop/6]\n   62 root      0:00 [rcuos/6]\n   63 root      0:00 [rcuob/6]\n   64 root      0:00 [cpuhp/7]\n   65 root      0:00 [migration/7]\n   66 root      0:00 [ksoftirqd/7]\n   67 root      0:00 [kworker/7:0]\n   68 root      0:00 [kworker/7:0H]\n   69 root      0:00 [rcuop/7]\n   70 root      0:00 [rcuos/7]\n   71 root      0:00 [rcuob/7]\n   72 root      0:00 [kdevtmpfs]\n   73 root      0:00 [netns]\n   75 root      0:00 [kworker/u17:0]\n   76 root      0:00 [ipa_usb_wq]\n   77 root      0:00 [kworker/u16:1]\n   78 root      0:00 [msm_watchdog]\n   79 root      0:00 [qmp_aop]\n   80 root      0:00 [smem_native_mps]\n   81 root      0:00 [mpss_smem_glink]\n   82 root      0:00 [smem_native_lpa]\n   83 root      0:00 [lpass_smem_glin]\n   84 root      0:00 [smem_native_cds]\n   85 root      0:00 [cdsp_smem_glink]\n   86 root      0:00 [oom_reaper]\n   87 root      0:00 [writeback]\n   88 root      0:00 [kcompactd0]\n   89 root      0:00 [crypto]\n   90 root      0:00 [bioset]\n   91 root      0:00 [kblockd]\n   92 root      0:00 [irq/374-arm-smm]\n   93 root      0:00 [irq/375-arm-smm]\n   94 root      0:00 [irq/384-arm-smm]\n   95 root      0:00 [irq/21-tsens-up]\n   96 root      0:00 [irq/22-tsens-cr]\n   97 root      0:00 [irq/23-tsens-up]\n   98 root      0:00 [irq/24-tsens-cr]\n   99 root      0:00 [system]\n  100 root      0:00 [ipa_power_mgmt]\n  101 root      0:00 [transport_power]\n  102 root      0:00 [ipa_rm_wq]\n  103 root      0:00 [devfreq_wq]\n  104 root      0:00 [governor_msm_ad]\n  105 root      0:00 [cfg80211]\n  107 root      0:00 [irq/110-qpnp_wl]\n  132 root      0:00 [kswapd0]\n  133 root      0:00 [vmstat]\n  134 root      0:00 [bioset]\n  169 root      0:00 [irq/389-arm-smm]\n  170 root      0:00 [irq/390-arm-smm]\n  171 root      0:00 [irq/64-eud_irq]\n  172 root      0:00 [glink_ssr_wq]\n  173 root      0:00 [glink_lbsrv]\n  174 root      0:00 [spi_wdsp]\n  175 root      0:00 [wdsp_spi_glink_]\n  176 root      0:00 [glink_xprt_wq]\n  177 root      0:00 [IPCRTR_mpss_sme]\n  178 root      0:00 [IPCRTR_lpass_sm]\n  179 root      0:00 [IPCRTR_cdsp_sme]\n  180 root      0:00 [glink_pkt_wq]\n  181 root      0:00 [irq/391-arm-smm]\n  182 root      0:00 [qmi_svc_event_w]\n  183 root      0:00 [msm_ipc_router]\n  184 root      0:00 [servloc_wq]\n  185 root      0:00 [mem_share_svc]\n  187 root      0:00 [qmi_hndl0000000]\n  188 root      0:00 [irq/392-arm-smm]\n  189 root      0:00 [hwrng]\n  191 root      0:00 [diag_real_time_]\n  192 root      0:00 [diag_wq]\n  194 root      0:00 [DIAG_USB_diag]\n  195 root      0:00 [diag_cntl_wq]\n  196 root      0:00 [diag_dci_wq]\n  197 root      0:00 [DIAG_SOCKET_MOD]\n  198 root      0:00 [DIAG_SOCKET_MOD]\n  199 root      0:00 [DIAG_SOCKET_MOD]\n  200 root      0:00 [DIAG_SOCKET_MOD]\n  201 root      0:00 [DIAG_SOCKET_MOD]\n  202 root      0:00 [DIAG_SOCKET_LPA]\n  203 root      0:00 [DIAG_SOCKET_LPA]\n  204 root      0:00 [DIAG_SOCKET_LPA]\n  205 root      0:00 [DIAG_SOCKET_LPA]\n  206 root      0:00 [DIAG_SOCKET_LPA]\n  207 root      0:00 [DIAG_SOCKET_WCN]\n  208 root      0:00 [DIAG_SOCKET_WCN]\n  209 root      0:00 [DIAG_SOCKET_WCN]\n  210 root      0:00 [DIAG_SOCKET_WCN]\n  211 root      0:00 [DIAG_SOCKET_WCN]\n  212 root      0:00 [DIAG_SOCKET_SEN]\n  213 root      0:00 [DIAG_SOCKET_SEN]\n  214 root      0:00 [DIAG_SOCKET_SEN]\n  215 root      0:00 [DIAG_SOCKET_SEN]\n  216 root      0:00 [DIAG_SOCKET_SEN]\n  217 root      0:00 [DIAG_SOCKET_DIA]\n  218 root      0:00 [DIAG_SOCKET_DIA]\n  219 root      0:00 [DIAG_SOCKET_DIA]\n  220 root      0:00 [DIAG_SOCKET_DIA]\n  221 root      0:00 [DIAG_SOCKET_DIA]\n  222 root      0:00 [DIAG_SOCKET_CDS]\n  223 root      0:00 [DIAG_SOCKET_CDS]\n  224 root      0:00 [DIAG_SOCKET_CDS]\n  225 root      0:00 [DIAG_SOCKET_CDS]\n  226 root      0:00 [DIAG_SOCKET_CDS]\n  227 root      0:00 [DIAG_CNTL_SOCKE]\n  228 root      0:00 [DIAG_GLINK_DIAG]\n  229 root      0:00 [DIAG_GLINK_DIAG]\n  230 root      0:00 [DIAG_GLINK_DIAG]\n  231 root      0:00 [DIAG_GLINK_DIAG]\n  232 root      0:00 [DIAG_GLINK_DIAG]\n  233 root      0:00 [irq/388-arm-smm]\n  234 root      0:00 [irq/393-arm-smm]\n  235 root      0:00 [irq/226-esd_err]\n  236 root      0:00 [crtc_commit:101]\n  237 root      0:00 [crtc_event:101]\n  238 root      0:00 [crtc_commit:153]\n  239 root      0:00 [crtc_event:153]\n  240 root      0:00 [pp_event]\n  241 root      0:00 [kgsl-workqueue]\n  242 root      0:00 [kgsl-mementry]\n  243 root      0:00 [kgsl_worker_thr]\n  244 root      0:00 [irq/376-arm-smm]\n  245 root      0:00 [irq/377-arm-smm]\n  246 root      0:00 [irq/378-arm-smm]\n  247 root      0:00 [kgsl-events]\n  248 root      0:00 [kgsl_devfreq_wq]\n  249 root      0:00 [bioset]\n  250 root      0:00 [bioset]\n  251 root      0:00 [bioset]\n  252 root      0:00 [bioset]\n  253 root      0:00 [bioset]\n  254 root      0:00 [bioset]\n  255 root      0:00 [bioset]\n  256 root      0:00 [bioset]\n  257 root      0:00 [bioset]\n  258 root      0:00 [bioset]\n  259 root      0:00 [bioset]\n  260 root      0:00 [bioset]\n  261 root      0:00 [bioset]\n  262 root      0:00 [bioset]\n  263 root      0:00 [bioset]\n  264 root      0:00 [bioset]\n  265 root      0:00 [bioset]\n  266 root      0:00 [bioset]\n  267 root      0:00 [bioset]\n  268 root      0:00 [bioset]\n  269 root      0:00 [bioset]\n  270 root      0:00 [bioset]\n  271 root      0:00 [bioset]\n  272 root      0:00 [bioset]\n  273 root      0:00 [bioset]\n  274 root      0:00 [bioset]\n  275 root      0:00 [bioset]\n  276 root      0:00 [bioset]\n  277 root      0:00 [bioset]\n  278 root      0:00 [bioset]\n  279 root      0:00 [bioset]\n  280 root      0:00 [bioset]\n  281 root      0:00 [bioset]\n  282 root      0:00 [qseecom-unreg-l]\n  283 root      0:00 [qseecom-unload-]\n  284 root      0:00 [memory_wq]\n  285 root      0:00 [irq/394-arm-smm]\n  286 root      0:00 [qcrypto_seq_res]\n  287 root      0:00 [irq/395-arm-smm]\n  308 root      0:00 [scsi_eh_0]\n  309 root      0:00 [scsi_tmf_0]\n  310 root      0:00 [ufs_pm_qos_0]\n  311 root      0:00 [ufs_clk_gating_]\n  312 root      0:00 [ice-set-key]\n  313 root      0:00 [ufs_clkscaling_]\n  314 root      0:00 [spi32766]\n  315 root      0:00 [bond0]\n  316 root      0:00 [sharedmem_qmi_w]\n  321 root      0:00 [uether]\n  322 root      0:00 [qmi_hndl0000000]\n  324 root      0:00 [k_ipa_usb]\n  328 root      0:00 [irq/396-arm-smm]\n  329 root      0:00 [bioset]\n  330 root      0:00 [bioset]\n  331 root      0:00 [bioset]\n  332 root      0:00 [bioset]\n  333 root      0:00 [bioset]\n  334 root      0:00 [bioset]\n  335 root      0:00 [bioset]\n  336 root      0:00 [bioset]\n  337 root      0:00 [bioset]\n  340 root      0:00 [kworker/u16:5]\n  341 root      0:00 [kworker/0:5]\n  343 root      0:00 [msm_vidc_worker]\n  344 root      0:00 [pm_workerq_venu]\n  345 root      0:00 [irq/397-arm-smm]\n  346 root      0:00 [irq/398-arm-smm]\n  347 root      0:00 [irq/399-arm-smm]\n  348 root      0:00 [irq/400-arm-smm]\n  349 root      0:00 [rot_commitq_0_0]\n  350 root      0:00 [rot_commitq_0_1]\n  351 root      0:00 [rot_doneq_0_0]\n  352 root      0:00 [rot_doneq_0_1]\n  353 root      0:00 [rot_fenceq_0_0]\n  354 root      0:00 [rot_fenceq_0_1]\n  355 root      0:00 [rot_fenceq_0_2]\n  356 root      0:00 [rot_fenceq_0_3]\n  357 root      0:00 [rot_fenceq_0_4]\n  358 root      0:00 [rot_fenceq_0_5]\n  359 root      0:00 [rot_fenceq_0_6]\n  360 root      0:00 [rot_fenceq_0_7]\n  361 root      0:00 [rot_fenceq_0_8]\n  362 root      0:00 [rot_fenceq_0_9]\n  363 root      0:00 [rot_fenceq_0_10]\n  364 root      0:00 [rot_fenceq_0_11]\n  365 root      0:00 [rot_fenceq_0_12]\n  366 root      0:00 [rot_fenceq_0_13]\n  367 root      0:00 [rot_fenceq_0_14]\n  368 root      0:00 [rot_fenceq_0_15]\n  369 root      0:00 [cam-cpas]\n  370 root      0:00 [qcom,cam_virtua]\n  371 root      0:00 [irq/401-arm-smm]\n  372 root      0:00 [qcom,cam170-cpa]\n  373 root      0:00 [irq/402-arm-smm]\n  374 root      0:00 [cam_cci_wq]\n  375 root      0:00 [cam_cci_wq]\n  376 root      0:00 [irq/403-arm-smm]\n  377 root      0:00 [irq/404-arm-smm]\n  378 root      0:00 [irq/405-arm-smm]\n  379 root      0:00 [irq/406-arm-smm]\n  380 root      0:00 [kworker/u17:1]\n  381 root      0:00 [irq/607-chg-err]\n  382 root      0:00 [irq/608-chg-sta]\n  383 root      0:00 [irq/612-otg-fai]\n  384 root      0:00 [irq/613-otg-ove]\n  385 root      0:00 [irq/614-otg-oc-]\n  387 root      0:00 [irq/615-testmod]\n  388 root      0:00 [irq/616-bat-tem]\n  389 root      0:00 [irq/617-bat-ocp]\n  390 root      0:00 [irq/618-bat-ov]\n  391 root      0:00 [irq/619-bat-low]\n  392 root      0:00 [irq/620-bat-the]\n  393 root      0:00 [irq/621-bat-ter]\n  395 root      0:00 [irq/622-usbin-c]\n  396 root      0:00 [irq/623-usbin-l]\n  397 root      0:00 [irq/624-usbin-u]\n  398 root      0:00 [irq/625-usbin-o]\n  399 root      0:00 [irq/626-usbin-p]\n  400 root      0:00 [irq/627-usbin-s]\n  401 root      0:00 [irq/628-usbin-i]\n  403 root      0:00 [irq/629-type-c-]\n  404 root      0:00 [irq/630-dcin-co]\n  405 root      0:00 [irq/631-dcin-lt]\n  406 root      0:00 [irq/632-dcin-uv]\n  407 root      0:00 [irq/633-dcin-ov]\n  408 root      0:00 [irq/634-dcin-pl]\n  409 root      0:00 [irq/635-div2-en]\n  411 root      0:00 [irq/636-dcin-ic]\n  412 root      0:00 [irq/638-wdog-ba]\n  413 root      0:00 [irq/639-aicl-fa]\n  414 root      0:00 [irq/640-aicl-do]\n  415 root      0:00 [irq/641-high-du]\n  416 root      0:00 [irq/642-input-c]\n  417 root      0:00 [irq/643-tempera]\n  418 root      0:00 [irq/644-switche]\n  419 root      0:00 [irq/91-bcl-high]\n  420 root      0:00 [irq/93-bcl-low-]\n  421 root      0:00 [irq/474-limits_]\n  422 root      0:00 [irq/475-limits_]\n  423 root      0:00 [kworker/6:1]\n  424 root      0:00 [kworker/7:1]\n  425 root      0:00 [qmi_tmd_wq]\n  426 root      0:00 [irq/273-goodix_]\n  428 root      0:00 [dm_bufio_cache]\n  429 root      0:00 [irq/97-haptics_]\n  430 root      0:00 [irq/96-haptics_]\n  431 root      0:00 [irq/407-arm-smm]\n  432 root      0:00 [uaudio_svc]\n  433 root      0:00 [qmi_hndl0000000]\n  434 root      0:00 [irq/244-cs35l41]\n  435 root      0:00 [apr_driver]\n  436 root      0:00 [ipv6_addrconf]\n  437 root      0:00 [irq/647-adsp]\n  438 root      0:00 [sysmon_wq]\n  439 root      0:00 [irq/743-cdsp]\n  440 root      0:00 [irq/711-modem]\n  447 root      0:00 [irq/83-sig-tx]\n  448 root      0:00 [irq/84-sig-rx]\n  449 root      0:00 [irq/903-soc-upd]\n  450 root      0:00 [irq/904-soc-rea]\n  451 root      0:00 [irq/905-bsoc-de]\n  452 root      0:00 [irq/906-msoc-de]\n  453 root      0:00 [irq/907-msoc-lo]\n  454 root      0:00 [irq/908-msoc-em]\n  455 root      0:00 [irq/909-msoc-hi]\n  456 root      0:00 [irq/910-msoc-fu]\n  457 root      0:00 [irq/911-vbatt-p]\n  458 root      0:00 [irq/912-vbatt-l]\n  459 root      0:00 [irq/913-esr-del]\n  460 root      0:00 [irq/914-batt-mi]\n  461 root      0:00 [irq/915-batt-te]\n  462 root      0:00 [irq/916-ima-rdy]\n  463 root      0:00 [irq/917-mem-xcp]\n  464 root      0:00 [irq/918-dma-gra]\n  465 root      0:00 [irq/202-bq2591x]\n  466 root      0:00 [irq/450-pwr_eve]\n  467 root      0:00 [irq/449-dp_hs_p]\n  468 root      0:00 [irq/452-dm_hs_p]\n  469 root      0:00 [irq/451-ss_phy_]\n  470 root      0:00 [irq/387-arm-smm]\n  471 root      0:00 [usb_bam_wq]\n  472 root      0:00 [core_ctl/0]\n  477 root      0:00 [rq_stats]\n  478 root      0:00 [msm_perf:events]\n  479 root      0:00 [irq/408-arm-smm]\n  480 root      0:00 [irq/409-arm-smm]\n  481 root      0:00 [irq/410-arm-smm]\n  482 root      0:00 [irq/411-arm-smm]\n  483 root      0:00 [irq/412-arm-smm]\n  484 root      0:00 [irq/413-arm-smm]\n  485 root      0:00 [kworker/0:1H]\n  486 root      0:00 [irq/414-arm-smm]\n  487 root      0:00 [irq/415-arm-smm]\n  488 root      0:00 [irq/416-arm-smm]\n  489 root      0:00 [irq/417-arm-smm]\n  490 root      0:00 [irq/418-arm-smm]\n  491 root      0:00 [irq/419-arm-smm]\n  492 root      0:00 [sb-3]\n  493 root      0:00 [ngd_rx_thread3]\n  494 root      0:00 [ngd_notify_sl3]\n  495 root      0:00 [irq/109-qpnp_fl]\n  496 root      0:00 [irq/108-qpnp_fl]\n  497 root      0:00 [irq/107-qpnp_fl]\n  506 root      0:00 [kworker/1:1]\n  508 root      0:00 [kworker/3:1]\n  509 root      0:00 [kworker/4:1]\n  510 root      0:00 [kworker/5:1]\n  512 root      0:00 [kworker/2:2]\n  513 root      0:00 [kworker/3:2]\n  543 root      0:00 [kworker/1:0]\n  547 root      0:00 [kworker/0:1]\n  558 root      0:00 [kworker/0:0]\n  573 root      0:00 [kworker/0:2]\n  632 root      0:00 ps -A\n"
  },
  {
    "path": "results/sdm712/second/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1113.868555,3.7128951833333335,62.383362199390135,14.002835847622796,17.853526437106773,224.464269862\r\n1,576000,2138.744642,3.713098336805556,76.72058933759484,8.968833418724868,27.87430519983316,116.90256157\r\n1,748800,2780.341871,3.7130633961004276,82.60031114080891,7.427992012194291,33.6564713033594,89.92692533\r\n1,998400,3707.163723,3.713104690504808,116.48534511277607,7.856418911247496,31.821113770052683,67.44555638\r\n1,1209600,4491.394488,3.7131237500000003,109.13143898536366,6.07516931042822,41.151116491661746,55.668369875\r\n1,1324800,4919.419902,3.713330240036232,142.0018894366,7.21735860133503,34.63871116972854,50.825792741\r\n1,1516800,5632.279722,3.713264584651899,131.73250884256822,5.848063355453652,42.74919487095857,44.393471337\r\n1,1612800,5988.45426,3.71307927827381,139.5469405376585,5.82634142259892,42.9085736428546,41.751839203\r\n1,1708800,6345.338714,3.713330239934457,162.79084065558968,6.414748612639932,38.97268858009305,39.404849725\r\n6,300000,1868.697817,6.2289927233333335,85.10803777972929,11.387879745220035,21.953164732437166,133.804985314\r\n6,652800,4062.860579,6.223744759497549,127.98101893060658,7.877816645386901,31.73468122622468,61.554570445\r\n6,825600,5137.056672,6.2222101162790695,174.82643325799995,8.511607839447572,29.371653947842802,48.686046388\r\n6,979200,6082.429079,6.2116310038807185,179.97344746585,7.401136808127591,33.77859462420171,41.123493006\r\n6,1132800,7069.535956,6.240762673022599,216.05943564017142,7.645039044299851,32.70094482858139,35.383962851\r\n6,1363200,8509.189925,6.242070074090376,263.1157372225172,7.735624145375511,32.31801278109592,29.400081603\r\n6,1536000,9577.810129,6.235553469401041,325.8110608061923,8.510906152293318,29.374075512821385,26.122213688\r\n6,1747200,10869.565217,6.221133938301281,398.97925848440906,9.184712739316078,27.219141969443434,23.020526867\r\n6,1843200,11475.259341,6.225726638997396,406.21467032219044,8.857752834738656,28.223862718266528,21.805595617\r\n6,1996800,12457.02327,6.2384932241586535,496.85529923265,9.981554862936171,25.046198055606347,20.089460409\r\n6,2054400,12798.198014,6.22965246008567,529.7316049429473,10.358333807525296,24.135155773641493,19.553928274\r\n6,2169600,13466.925232,6.207100494100295,568.0080063209999,10.556055801954248,23.683088142989675,18.584343327\r\n6,2208000,13708.395021,6.208512237771739,614.9371842523889,11.227894054333214,22.26597425930616,18.258603223\r\n6,2304000,14359.563469,6.232449422309028,686.1798395637059,11.96065932608867,20.90185776420354,17.430793848\r\n"
  },
  {
    "path": "results/sdm712/second/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1526.8568740561604, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [558.087929182, 559.930433938, 556.104124026, 563.547092472, 556.104124026, 559.859426522, 563.475461796, 563.475461796, 567.1938305, 569.146931437, 563.475461796, 559.7172661830001, 554.081896098, 567.1938305, 583.987710515, 557.6985531670001, 563.368235508, 559.610755059, 565.245052764, 557.733937803, 555.8218549830001, 559.397587304, 563.296751316, 555.8218549830001, 563.296751316, 563.332493412, 559.5042439350001, 559.433091012, 559.433091012], \"power_mean\": 561.6681115296897, \"energy_millijoules\": 2808.3405576484483, \"energy_joules\": 2.808340557648448}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 224.464269862, \"elapsed_ns\": 224464269862, \"power_samples\": [59.32470883099995, 51.82169881999994, 51.82169881999994, 55.57512471899997, 57.333238567999956, 57.333238567999956, 59.16871417199991, 61.16410445400004, 61.16410445400004, 59.16871417199991, 61.04687026199997, 61.04687026199997, 61.04687026199997, 57.25555921600005, 57.25555921600005, 60.85131978600009, 64.55944244199998, 58.97376076499995, 58.97376076499995, 51.43656123200003, 59.01271951299998, 59.01271951299998, 57.13888100899999, 59.129755423999995, 59.129755423999995, 57.13888100899999, 55.265042505, 55.265042505, 55.265042505, 57.25555921600005, 57.25555921600005, 60.81224172199995, 60.89039785, 60.85131978600009, 60.85131978600009, 60.773163658000044, 49.56296087199996, 49.56296087199996, 57.06120165699997, 64.44149381799991, 64.44149381799991, 79.35441261400001, 55.1876012969999, 55.1876012969999, 60.773163658000044, 57.02236198100002, 57.02236198100002, 60.81224172199995, 631.5395660079998, 60.695007529999884, 60.695007529999884, 55.148880693000024, 60.61669124599996, 60.61669124599996, 55.03271888100005, 58.77896702500004, 58.77896702500004, 56.944682628999885, 55.148880693000024, 55.148880693000024, 60.65592946600009, 51.28263236800001, 55.03271888100005, 55.03271888100005, 57.02236198100002, 56.82800442200005, 56.82800442200005, 51.20551022200004, 58.622972365999885, 58.622972365999885, 56.90584295299993, 54.955118982000045, 54.955118982000045, 60.499457054000004, 56.82800442200005, 56.82800442200005, 60.61669124599996, 51.243992437999964, 54.80023656599997, 54.80023656599997, 58.70088986199994, 58.70088986199994, 58.70088986199994, 54.955118982000045, 60.61669124599996, 60.61669124599996, 51.128545789999976, 58.42801895900004, 58.42801895900004, 60.42130092599996, 56.71148539400008, 56.71148539400008, 56.71148539400008, 60.42130092599996, 58.584013618000085, 58.584013618000085, 54.68391606299997, 56.55596751099995, 56.55596751099995, 54.68391606299997, 56.517127835, 56.517127835, 54.64519545900009, 58.35010146299999, 58.35010146299999, 60.22575045000008, 54.567754251, 54.567754251, 56.47828815899993, 54.80023656599997, 54.68391606299997, 54.68391606299997, 49.06392554800004, 50.93597699599991, 50.93597699599991, 54.60647485499999, 56.47828815899993, 56.47828815899993, 60.186672386000055, 58.42801895900004, 58.42801895900004, 60.26482851399999, 50.93597699599991, 54.64519545900009, 54.64519545900009, 60.186672386000055, 54.64519545900009, 54.64519545900009, 58.35010146299999, 56.47828815899993, 56.47828815899993, 54.60647485499999, 58.35010146299999, 58.35010146299999, 58.31114271499996, 56.361769131000074, 56.361769131000074, 58.31114271499996, 56.361769131000074, 56.47828815899993, 56.47828815899993, 56.43944848299998, 56.47828815899993, 56.47828815899993, 60.10851625800001, 58.194106803999944, 58.194106803999944, 56.28393059999996, 63.81195109400005, 63.81195109400005, 58.15514805600003, 54.490313043000015, 54.490313043000015, 58.194106803999944, 56.361769131000074, 48.833589458000006, 48.833589458000006, 56.32277027600003, 54.37399254000002, 54.37399254000002, 56.16741157199999, 63.772634886000105, 63.772634886000105, 54.41271314400001, 69.15207970800009, 69.15207970800009, 60.03019997399997, 56.32277027600003, 56.32277027600003, 65.64768680400005, 54.41271314400001, 56.32277027600003, 56.32277027600003, 56.32277027600003, 60.03019997399997, 60.03019997399997, 50.66644377, 56.32277027600003, 56.32277027600003, 58.15514805600003, 50.66644377, 50.66644377, 58.116189308, 58.116189308, 58.116189308, 58.116189308, 56.24509092400001, 54.37399254000002, 54.37399254000002, 58.116189308, 58.116189308, 58.116189308, 624.4371571200002, 59.87388771799999, 59.87388771799999, 58.116189308, 56.16741157199999, 56.16741157199999, 56.128571895999926, 54.257830728000044, 63.615370054000095, 63.615370054000095, 59.83480965400008, 57.99931306399992, 57.99931306399992, 50.47403269000006, 56.08973221999997, 56.08973221999997, 54.21911012399994, 63.57605384599992, 63.57605384599992, 59.795731589999946, 50.47403269000006, 50.47403269000006, 57.804359656999964, 57.804359656999964, 56.08973221999997, 56.08973221999997, 57.92139556799998, 50.51251490599998, 50.51251490599998, 54.21911012399994, 54.064069017000065], \"power_mean\": 62.383362199390135, \"energy_millijoules\": 14002.835847622797, \"energy_joules\": 14.002835847622796, \"coremark_score\": 1113.868555, \"coremarks_per_mhz\": 3.7128951833333335, \"ulpmark_cm_score\": 17.853526437106773}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [555.680648196, 568.6413897040001, 563.082152256, 563.082152256], \"power_mean\": 562.621585603, \"energy_millijoules\": 2813.1079280149997, \"energy_joules\": 2.8131079280149995}}, \"576000\": {\"active\": {\"elapsed_sec\": 116.90256157, \"elapsed_ns\": 116902561570, \"power_samples\": [68.99322243899996, 68.99322243899996, 68.99322243899996, 68.95354877099999, 68.95354877099999, 74.48703982000006, 76.43700925200005, 76.43700925200005, 76.356708852, 85.7127165899999, 68.95354877099999, 68.95354877099999, 74.56710207600008, 67.00453240299998, 67.00453240299998, 72.6971949, 67.00453240299998, 67.00453240299998, 68.87420143500003, 72.6971949, 72.6971949, 72.61737078800002, 81.92887356199981, 81.92887356199981, 76.23609370200006, 74.40681350200009, 74.40681350200009, 74.40681350200009, 68.755017834, 72.49747104599999, 72.49747104599999, 72.53738310200004, 74.28672011800006, 74.28672011800006, 76.27624390200015, 66.96481569800005, 66.96481569800005, 68.83436516999996, 78.18594357400002, 78.18594357400002, 74.36678237400008, 72.417646934, 72.37773487800007, 72.37773487800007, 72.417646934, 66.80659731399999, 66.80659731399999, 68.63599683000007, 76.07549290200006, 76.07549290200006, 72.37773487800007, 66.76704271799997, 66.76704271799997, 76.155793302, 72.49747104599999, 72.49747104599999, 72.49747104599999, 66.80659731399999, 74.36678237400008, 74.36678237400008, 74.28672011800006, 74.28672011800006, 74.28672011800006, 76.07549290200006, 66.80659731399999, 66.80659731399999, 68.63599683000007, 72.33782282200002, 72.33782282200002, 72.33782282200002, 72.37773487800007, 72.37773487800007, 72.417646934, 72.33782282200002, 66.76704271799997, 66.76704271799997, 76.07549290200006, 75.91472755200004, 75.91472755200004, 68.43746589299997, 66.56910762900009, 66.56910762900009, 72.17801102399994, 72.17801102399994, 72.17801102399994, 81.52363094700002, 72.17801102399994, 72.17801102399994, 74.16646267200008, 64.70074936500009, 72.29774719199997, 72.29774719199997, 66.68777141700014, 74.20665786200004, 74.20665786200004, 68.43746589299997, 68.55648689700001, 68.55648689700001, 66.68777141700014, 74.04636928800005, 74.04636928800005, 75.87457735200007, 68.43746589299997, 68.43746589299997, 646.947772305, 73.88608071400006, 68.39779222499999, 68.39779222499999, 66.48999843699994, 68.2389349560001, 68.2389349560001, 68.27860862400007, 72.01819922600009, 72.01819922600009, 73.96630703200003, 66.48999843699994], \"power_mean\": 76.72058933759484, \"energy_millijoules\": 8968.833418724867, \"energy_joules\": 8.968833418724868, \"coremark_score\": 2138.744642, \"coremarks_per_mhz\": 3.713098336805556, \"ulpmark_cm_score\": 27.87430519983316}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [554.375099673, 546.918799806, 554.4103652370001, 554.4103652370001], \"power_mean\": 552.52865748825, \"energy_millijoules\": 2762.6432874412503, \"energy_joules\": 2.7626432874412505}}, \"748800\": {\"active\": {\"elapsed_sec\": 89.92692533, \"elapsed_ns\": 89926925330, \"power_samples\": [81.4426156269999, 81.4426156269999, 81.36143429200001, 85.10102489400003, 85.10102489400003, 92.4527107319999, 85.06027884599996, 85.06027884599996, 77.54130514600001, 81.23991131199989, 83.10743558399997, 83.10743558399997, 81.15889599199988, 81.23991131199989, 81.23991131199989, 84.897294654, 81.2804189719999, 81.2804189719999, 83.14806231599982, 86.92804126199997, 86.92804126199997, 86.88717614199993, 77.50103587400008, 77.50103587400008, 90.49915303799992, 77.50103587400008, 77.42049732999999, 77.42049732999999, 84.81563556599986, 84.85654860599993, 84.85654860599993, 81.07771465699989, 83.10743558399997, 83.10743558399997, 81.23991131199989, 86.68268306199991, 86.68268306199991, 81.15889599199988, 83.02618211999993, 83.02618211999993, 84.97878674999993, 83.02618211999993, 81.15889599199988, 81.15889599199988, 86.8463110219999, 83.02618211999993, 83.02618211999993, 82.94476215299994, 82.98555538799985, 82.98555538799985, 81.11838833199988, 82.98555538799985, 82.98555538799985, 84.81563556599986, 77.21898593200001, 77.21898593200001, 90.29346826199992, 82.7416284929999, 84.81563556599986, 84.81563556599986, 82.98555538799985, 82.94476215299994, 82.94476215299994, 77.33979374800003, 75.51306100199997, 75.51306100199997, 81.11838833199988, 81.07771465699989, 81.07771465699989, 84.897294654, 86.7237156619999, 86.7237156619999, 83.02618211999993, 82.94476215299994, 81.11838833199988, 81.11838833199988, 80.95619167699988, 82.90413542099998, 82.90413542099998, 82.94476215299994, 77.29952447599999, 77.29952447599999, 84.7748895179999, 81.03720699699988, 81.03720699699988, 84.7748895179999, 82.98555538799985, 82.90413542099998, 82.90413542099998], \"power_mean\": 82.60031114080891, \"energy_millijoules\": 7427.9920121942905, \"energy_joules\": 7.427992012194291, \"coremark_score\": 2780.341871, \"coremarks_per_mhz\": 3.7130633961004276, \"ulpmark_cm_score\": 33.6564713033594}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [548.26682449, 546.501188844, 552.00711513, 552.00711513], \"power_mean\": 549.6955608984999, \"energy_millijoules\": 2748.4778044924997, \"energy_joules\": 2.7484778044924996}}, \"998400\": {\"active\": {\"elapsed_sec\": 67.44555638, \"elapsed_ns\": 67445556380, \"power_samples\": [64.66131384100004, 95.77298211499999, 93.82379631399988, 93.82379631399988, 103.15809243800004, 95.68989074599995, 95.68989074599995, 101.25017982199995, 103.15809243800004, 103.15809243800004, 110.58770406200006, 93.78245466199996, 93.78245466199996, 108.71790498199994, 104.901841118, 104.901841118, 99.30080623799995, 101.20836163799993, 95.68989074599995, 95.68989074599995, 99.38420446199996, 101.25017982199995, 101.25017982199995, 95.64843002199996, 671.3243211019999, 671.3243211019999, 104.94389768999997, 101.25017982199995, 101.25017982199995, 95.60696929799997, 103.07421792599996, 103.07421792599996, 95.60696929799997, 101.20836163799993, 103.03228066999998, 103.03228066999998, 91.75158898200004, 101.20836163799993, 101.20836163799993, 95.64843002199996, 101.20836163799993, 101.20836163799993, 101.16654345400002, 95.56550857399998, 95.56550857399998, 99.30080623799995, 103.03228066999998, 103.03228066999998, 103.03228066999998, 99.17553800399992, 103.03228066999998, 103.03228066999998, 104.77549903900001, 101.08290708599998, 101.08290708599998, 101.04091751599992, 101.08290708599998, 101.08290708599998, 102.90629702799993, 101.08290708599998, 101.08290708599998, 99.17553800399992, 93.57557696899994, 93.57557696899994, 101.04091751599992, 99.17553800399992, 93.57557696899994], \"power_mean\": 116.48534511277607, \"energy_millijoules\": 7856.418911247496, \"energy_joules\": 7.856418911247496, \"coremark_score\": 3707.163723, \"coremarks_per_mhz\": 3.713104690504808, \"ulpmark_cm_score\": 31.821113770052683}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [544.3145412, 544.3145412, 555.397246656, 553.634089236], \"power_mean\": 549.415104573, \"energy_millijoules\": 2747.075522865, \"energy_joules\": 2.747075522865}}, \"1209600\": {\"active\": {\"elapsed_sec\": 55.668369875, \"elapsed_ns\": 55668369875, \"power_samples\": [-8.102970467999967, 114.06356692200006, 112.0707071700001, 114.0209147459999, 114.0209147459999, 110.29063201000008, 110.20580394600006, 110.20580394600006, 104.60727275099998, 110.20580394600006, 110.20580394600006, 110.29063201000008, 110.20580394600006, 110.20580394600006, 111.98564096199993, 110.29063201000008, 110.29063201000008, 119.44812231699996, 110.07856185000003, 108.33707919899996, 108.33707919899996, 111.94310785800008, 109.9935599580001, 109.9935599580001, 109.9935599580001, 117.454609764, 117.454609764, 111.85786733400005, 111.81533422999996, 111.81533422999996, 112.0707071700001, 111.94310785800008, 111.94310785800008, 117.54056667300006, 104.52315960699991, 113.72217470999999, 113.72217470999999, 113.72217470999999, 110.07856185000003, 110.07856185000003, 110.07856185000003, 108.12543228000004, 108.12543228000004, 104.35476095599995, 117.454609764, 117.454609764, 111.77280112599999, 109.9935599580001, 109.9935599580001, 111.94310785800008, 108.08313756399991, 111.85786733400005, 111.85786733400005, 109.9935599580001, 108.21019505099991], \"power_mean\": 109.13143898536366, \"energy_millijoules\": 6075.169310428219, \"energy_joules\": 6.07516931042822, \"coremark_score\": 4491.394488, \"coremarks_per_mhz\": 3.7131237500000003, \"ulpmark_cm_score\": 41.151116491661746}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [551.444487078, 553.281289065, 553.281289065, 555.1847938210001], \"power_mean\": 553.29796475725, \"energy_millijoules\": 2766.4898237862503, \"energy_joules\": 2.7664898237862503}}, \"1324800\": {\"active\": {\"elapsed_sec\": 50.825792741, \"elapsed_ns\": 50825792741, \"power_samples\": [117.54056667300006, 117.54056667300006, 119.27590750399997, 113.67952253399994, 113.67952253399994, 123.00810417000002, 123.00810417000002, 123.00810417000002, 117.36882863599999, 126.69299461000003, 126.69299461000003, 113.50891382999998, 119.18988823200004, 119.18988823200004, 136.06124235599998, 128.42624812199995, 117.36882863599999, 117.36882863599999, 119.23289786800001, 119.18988823200004, 119.18988823200004, 119.10386896, 117.36882863599999, 117.36882863599999, 117.36882863599999, 117.32593807199999, 117.32593807199999, 121.05383839199999, 688.4540154820002, 688.4540154820002, 119.10386896, 113.4660868499999, 113.4660868499999, 113.4660868499999, 119.10386896, 117.19709059899992, 117.19709059899992, 117.19709059899992, 122.835112074, 122.835112074, 117.15420003499992, 117.15420003499992, 117.15420003499992, 120.92427551100002, 120.88114680299998, 120.88114680299998, 119.01767341899995, 122.79168680400005, 117.11130947100014, 117.11130947100014], \"power_mean\": 142.0018894366, \"energy_millijoules\": 7217.35860133503, \"energy_joules\": 7.21735860133503, \"coremark_score\": 4919.419902, \"coremarks_per_mhz\": 3.713330240036232, \"ulpmark_cm_score\": 34.63871116972854}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [554.9723409860001, 554.9723409860001, 554.9723409860001, 560.4356258280001], \"power_mean\": 556.3381621965001, \"energy_millijoules\": 2781.6908109825004, \"energy_joules\": 2.7816908109825005}}, \"1516800\": {\"active\": {\"elapsed_sec\": 44.393471337, \"elapsed_ns\": 44393471337, \"power_samples\": [63.91155402200002, 137.310073182, 129.94362437400014, 129.94362437400014, 128.1644379720001, 131.8063828380001, 131.8063828380001, 129.94362437400014, 127.98983830199995, 127.98983830199995, 137.39847535800004, 137.39847535800004, 137.39847535800004, 135.62024397300013, 130.07497724100006, 130.07497724100006, 137.48705868599995, 131.8063828380001, 131.67485195400002, 131.67485195400002, 135.39965444999996, 130.03125268500003, 130.03125268500003, 130.03125268500003, 135.53189976600004, 135.53189976600004, 131.8063828380001, 131.8063828380001, 131.8063828380001, 128.1644379720001, 135.39965444999996, 135.39965444999996, 131.67485195400002, 131.67485195400002, 135.53189976600004, 135.53189976600004, 135.44373622199998, 129.94362437400014, 129.94362437400014, 131.8942497810001, 150.31031362200008, 150.31031362200008, 131.8063828380001, 131.8063828380001], \"power_mean\": 131.73250884256822, \"energy_millijoules\": 5848.063355453652, \"energy_joules\": 5.848063355453652, \"coremark_score\": 5632.279722, \"coremarks_per_mhz\": 3.713264584651899, \"ulpmark_cm_score\": 42.74919487095857}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [552.963609927, 552.963609927, 566.004494677, 545.456804994], \"power_mean\": 554.34712988125, \"energy_millijoules\": 2771.73564940625, \"energy_joules\": 2.77173564940625}}, \"1612800\": {\"active\": {\"elapsed_sec\": 41.751839203, \"elapsed_ns\": 41751839203, \"power_samples\": [146.58169472999998, 146.58169472999998, 135.31149090600002, 137.26587209399997, 137.26587209399997, 137.26587209399997, 140.9906745899999, 140.9906745899999, 146.58169472999998, 139.08395318199996, 135.39965444999996, 135.39965444999996, 139.08395318199996, 139.08395318199996, 139.08395318199996, 140.94623535799985, 139.08395318199996, 139.08395318199996, 140.9906745899999, 137.22167100599984, 137.22167100599984, 140.9017961259999, 138.95081106199984, 138.95081106199984, 138.95081106199984, 139.03963302199998, 139.03963302199998, 139.03963302199998, 139.03963302199998, 137.17746991799993, 137.17746991799993, 140.9017961259999, 137.17746991799993, 137.17746991799993, 138.90649090199997, 144.54039989699993, 144.54039989699993, 140.812735534, 140.76829630199995, 140.76829630199995, 137.044685502], \"power_mean\": 139.5469405376585, \"energy_millijoules\": 5826.34142259892, \"energy_joules\": 5.82634142259892, \"coremark_score\": 5988.45426, \"coremarks_per_mhz\": 3.71307927827381, \"ulpmark_cm_score\": 42.9085736428546}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [554.724503515, 554.653734243, 547.2539172099999, 547.2539172099999], \"power_mean\": 550.9715180445, \"energy_millijoules\": 2754.8575902225, \"energy_joules\": 2.7548575902225}}, \"1708800\": {\"active\": {\"elapsed_sec\": 39.404849725, \"elapsed_ns\": 39404849725, \"power_samples\": [146.9402518589999, 146.357527677, 146.357527677, 148.17441731299994, 149.99488349199987, 149.99488349199987, 149.99488349199987, 148.12950154899988, 153.80856445199993, 153.80856445199993, 714.883131222, 148.17441731299994, 148.17441731299994, 148.17441731299994, 148.12950154899988, 148.12950154899988, 153.718018004, 144.40636703699988, 144.40636703699988, 149.9048133319999, 146.17834090899999, 146.17834090899999, 148.039670021, 148.12950154899988, 144.27233417699995, 144.27233417699995, 144.40636703699988, 147.99475425699995, 147.99475425699995, 147.99475425699995, 147.99475425699995, 147.99475425699995, 149.99488349199987, 148.12950154899988, 148.12950154899988, 146.17834090899999, 147.99475425699995, 147.99475425699995, 157.30843236700002], \"power_mean\": 162.79084065558968, \"energy_millijoules\": 6414.748612639932, \"energy_joules\": 6.414748612639932, \"coremark_score\": 6345.338714, \"coremarks_per_mhz\": 3.713330239934457, \"ulpmark_cm_score\": 38.97268858009305}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [550.7059837439999, 550.7059837439999, 543.343220796, 552.6813408840001], \"power_mean\": 549.3591322919999, \"energy_millijoules\": 2746.79566146, \"energy_joules\": 2.7467956614599998}}}}, \"6\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 133.804985314, \"elapsed_ns\": 133804985314, \"power_samples\": [81.72529418099998, 76.131055436, 76.131055436, 81.76592091299983, 79.94300213199995, 79.94300213199995, 81.76592091299983, 81.6846674489999, 81.6846674489999, 79.86182079699995, 81.6846674489999, 81.6846674489999, 83.5925861579999, 94.6528628829999, 94.6528628829999, 83.55184010999994, 79.82131313699995, 79.74029781699994, 79.74029781699994, 83.55184010999994, 81.60341398499986, 81.60341398499986, 83.47034801400002, 81.60341398499986, 81.60341398499986, 83.47034801400002, 81.60341398499986, 81.60341398499986, 81.72529418099998, 81.6846674489999, 81.6846674489999, 81.6846674489999, 74.227431852, 74.227431852, 74.227431852, 79.74029781699994, 76.09078616400006, 76.09078616400006, 79.74029781699994, 81.40011382199998, 81.40011382199998, 72.28401528400002, 89.01859325399994, 89.01859325399994, 81.60341398499986, 94.61140215900002, 94.61140215900002, 81.5627872529999, 76.01024761999997, 89.01859325399994, 89.01859325399994, 79.69979015699994, 83.42960196600006, 83.42960196600006, 83.47034801400002, 74.026516302, 74.026516302, 83.42960196600006, 74.14713145199994, 74.14713145199994, 79.69979015699994, 79.74029781699994, 79.61860882199994, 79.61860882199994, 79.53759350199994, 74.026516302, 74.026516302, 75.76846695000006, 81.5627872529999, 81.5627872529999, 83.47034801400002, 94.52831078999998, 94.52831078999998, 81.3594870899999, 79.49708584199993, 79.49708584199993, 75.76846695000006, 92.5001857179999, 79.53759350199994, 79.53759350199994, 79.49708584199993, 81.5627872529999, 81.5627872529999, 83.18495868599996, 79.61860882199994, 79.61860882199994, 83.22570473400003, 83.26645078199999, 83.26645078199999, 85.12897110199992, 79.53759350199994, 79.53759350199994, 79.53759350199994, 79.49708584199993, 75.76846695000006, 75.76846695000006, 75.76846695000006, 75.68792840599997, 75.68792840599997, 75.76846695000006, 75.72819767800002, 75.72819767800002, 79.45657818199993, 73.90606570199998, 73.90606570199998, 652.4394621819999, 83.26645078199999, 83.26645078199999, 75.808736222, 73.94621590199995, 79.49708584199993, 79.49708584199993, 83.22570473400003, 83.22570473400003, 83.22570473400003, 81.27823362599986, 75.76846695000006, 75.76846695000006, 85.088105982, 83.26645078199999, 83.26645078199999, 85.088105982, 79.49708584199993, 79.49708584199993, 81.3594870899999, 81.27823362599986, 81.3594870899999, 81.3594870899999, 83.22570473400003, 79.49708584199993, 79.49708584199993, 79.45657818199993, 79.45657818199993], \"power_mean\": 85.10803777972929, \"energy_millijoules\": 11387.879745220034, \"energy_joules\": 11.387879745220035, \"coremark_score\": 1868.697817, \"coremarks_per_mhz\": 6.2289927233333335, \"ulpmark_cm_score\": 21.953164732437166}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [559.9708320960001, 552.469602969, 563.6297223, 563.6297223], \"power_mean\": 559.92496991625, \"energy_millijoules\": 2799.62484958125, \"energy_joules\": 2.7996248495812504}}, \"652800\": {\"active\": {\"elapsed_sec\": 61.554570445, \"elapsed_ns\": 61554570445, \"power_samples\": [129.28739763600004, 129.28739763600004, 131.060681788, 129.19994852399998, 129.19994852399998, 125.5616413539999, 127.33540228200002, 127.33540228200002, 130.97299453200003, 127.33540228200002, 127.33540228200002, 127.33540228200002, 147.680159828, 125.43118284999991, 125.43118284999991, 125.38769668199996, 127.33540228200002, 127.33540228200002, 127.24819180200006, 127.29179704199998, 127.29179704199998, 129.15622396800006, 125.43118284999991, 125.43118284999991, 129.15622396800006, 125.38769668199996, 125.38769668199996, 125.38769668199996, 127.20458656200003, 121.66670644199996, 121.66670644199996, 134.56155879300002, 129.06877485600012, 129.06877485600012, 127.20458656200003, 127.07359213200004, 127.07359213200004, 129.06877485600012, 129.06877485600012, 129.06877485600012, 130.84128396100004, 125.25705995600003, 127.20458656200003, 127.20458656200003, 129.11249941200003, 128.981146545, 128.981146545, 127.20458656200003, 125.344210514, 125.344210514, 127.11719737200008, 127.20458656200003, 127.20458656200003, 130.84128396100004, 127.20458656200003, 127.20458656200003, 130.84128396100004, 127.20458656200003, 129.37502594700004, 129.37502594700004, 128.981146545], \"power_mean\": 127.98101893060658, \"energy_millijoules\": 7877.816645386902, \"energy_joules\": 7.877816645386901, \"coremark_score\": 4062.860579, \"coremarks_per_mhz\": 6.223744759497549, \"ulpmark_cm_score\": 31.73468122622468}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [555.880683114, 555.845179406, 550.248794436, 550.248794436], \"power_mean\": 553.0558628480001, \"energy_millijoules\": 2765.2793142400005, \"energy_joules\": 2.7652793142400007}}, \"825600\": {\"active\": {\"elapsed_sec\": 48.686046388, \"elapsed_ns\": 48686046388, \"power_samples\": [147.50031269099998, 147.32046555399995, 147.32046555399995, 147.45539692700004, 154.81135469699996, 154.81135469699996, 149.31898815199997, 152.9480021039999, 152.9480021039999, 154.81135469699996, 145.50602334299992, 145.50602334299992, 154.81135469699996, 152.90254333399992, 152.85727010999994, 152.85727010999994, 149.18369834199996, 147.32046555399995, 147.32046555399995, 149.22891799199988, 152.9480021039999, 152.9480021039999, 147.32046555399995, 149.1386632619999, 149.1386632619999, 154.53881342199998, 156.44315216999985, 156.44315216999985, 154.58420596199994, 152.85727010999994, 154.72038358199995, 154.72038358199995, 149.00355802199988, 147.32046555399995, 147.32046555399995, 152.85727010999994, 718.8008656260001, 718.8008656260001, 154.58420596199994, 156.57968700599997, 156.57968700599997, 154.72038358199995, 147.2755497899999, 147.2755497899999, 154.72038358199995, 145.28185628999984, 149.00355802199988, 149.00355802199988], \"power_mean\": 174.82643325799995, \"energy_millijoules\": 8511.607839447572, \"energy_joules\": 8.511607839447572, \"coremark_score\": 5137.056672, \"coremarks_per_mhz\": 6.2222101162790695, \"ulpmark_cm_score\": 29.371653947842802}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [551.975740542, 555.7031645740001, 551.975740542, 555.77417199], \"power_mean\": 553.8572044120001, \"energy_millijoules\": 2769.2860220600005, \"energy_joules\": 2.7692860220600006}}, \"979200\": {\"active\": {\"elapsed_sec\": 41.123493006, \"elapsed_ns\": 41123493006, \"power_samples\": [-0.24244354000006751, 189.6370984140001, 185.91682798700003, 185.91682798700003, 182.24754500699999, 189.589442286, 189.589442286, 182.24754500699999, 180.3853865519999, 180.3853865519999, 185.86941024700002, 184.10589536700002, 184.10589536700002, 182.15318581499992, 185.86941024700002, 182.15318581499992, 182.15318581499992, 183.8694020270001, 185.821992507, 185.821992507, 180.29126599200004, 183.96399936299997, 183.96399936299997, 183.8694020270001, 185.72715702699998, 185.72715702699998, 191.39977930200007, 189.54178615800004, 189.54178615800004, 191.39977930200007, 174.67022627999995, 180.29126599200004, 180.29126599200004, 189.44647390199998, 182.0116470270001, 182.0116470270001, 182.0116470270001, 185.67954495200001, 185.67954495200001, 183.82190951200005], \"power_mean\": 179.97344746585, \"energy_millijoules\": 7401.1368081275905, \"energy_joules\": 7.401136808127591, \"coremark_score\": 6082.429079, \"coremarks_per_mhz\": 6.2116310038807185, \"ulpmark_cm_score\": 33.77859462420171}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [551.905064883, 551.905064883, 553.8039229030001, 550.1082094440001], \"power_mean\": 551.9305655282501, \"energy_millijoules\": 2759.6528276412505, \"energy_joules\": 2.7596528276412506}}, \"1132800\": {\"active\": {\"elapsed_sec\": 35.383962851, \"elapsed_ns\": 35383962851, \"power_samples\": [213.71092648199988, 216.93207565799992, 216.93207565799992, 216.93207565799992, 213.07085764199996, 213.07085764199996, 211.16152349699996, 216.78374610599985, 218.6401903379999, 218.6401903379999, 216.83318928999995, 216.93207565799992, 216.93207565799992, 222.40668363500004, 211.25969494499998, 211.25969494499998, 212.97244756199996, 216.83318928999995, 216.83318928999995, 213.07085764199996, 211.21060922100003, 211.21060922100003, 213.07085764199996, 216.684859738, 218.59062808200008, 218.59062808200008, 212.97244756199996, 220.45075718700002, 220.45075718700002, 216.7343029220001, 216.684859738, 216.684859738, 216.7343029220001, 220.40107561499997, 220.40107561499997], \"power_mean\": 216.05943564017142, \"energy_millijoules\": 7645.0390442998505, \"energy_joules\": 7.645039044299851, \"coremark_score\": 7069.535956, \"coremarks_per_mhz\": 6.240762673022599, \"ulpmark_cm_score\": 32.70094482858139}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [562.9458028200002, 562.9458028200002, 553.662384359, 555.5255005270001], \"power_mean\": 558.7698726315001, \"energy_millijoules\": 2793.8493631575006, \"energy_joules\": 2.7938493631575008}}, \"1363200\": {\"active\": {\"elapsed_sec\": 29.400081603, \"elapsed_ns\": 29400081603, \"power_samples\": [1.088276335000046, 271.66259555700003, 271.87466571699997, 271.87466571699997, 273.570270273, 275.42492744899994, 275.42492744899994, 273.5171336609999, 275.371671765, 271.609578017, 271.609578017, 266.04252088199996, 271.450308112, 271.450308112, 265.83166474199993, 273.3043694400001, 273.3043694400001, 273.25123282799996, 271.450308112, 271.450308112, 275.1584307679999, 271.50332565200006, 273.3043694400001, 273.3043694400001, 277.065866852, 271.450308112, 271.450308112, 271.397290572, 275.1584307679999], \"power_mean\": 263.1157372225172, \"energy_millijoules\": 7735.624145375511, \"energy_joules\": 7.735624145375511, \"coremark_score\": 8509.189925, \"coremarks_per_mhz\": 6.242070074090376, \"ulpmark_cm_score\": 32.31801278109592}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [564.559772692, 562.62168574, 562.62168574, 553.308247961], \"power_mean\": 560.7778480332499, \"energy_millijoules\": 2803.8892401662497, \"energy_joules\": 2.80388924016625}}, \"1536000\": {\"active\": {\"elapsed_sec\": 26.122213688, \"elapsed_ns\": 26122213688, \"power_samples\": [319.1772317219999, 319.1772317219999, 332.04185206, 328.1054780259999, 328.1054780259999, 322.60121283, 335.57555801399997, 335.57555801399997, 329.9615479419999, 328.1621887499999, 328.1621887499999, 340.8488103540001, 322.432153038, 322.31944651000003, 322.31944651000003, 326.02683714599993, 322.432153038, 322.432153038, 322.432153038, 322.31944651000003, 322.31944651000003, 321.98109596999984, 320.46764852599995, 320.46764852599995, 327.764981261, 327.8786351299999], \"power_mean\": 325.8110608061923, \"energy_millijoules\": 8510.906152293317, \"energy_joules\": 8.510906152293318, \"coremark_score\": 9577.810129, \"coremarks_per_mhz\": 6.235553469401041, \"ulpmark_cm_score\": 29.374075512821385}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [568.174936875, 553.3791622519999, 553.3791622519999, 553.3791622519999], \"power_mean\": 557.0781059077499, \"energy_millijoules\": 2785.3905295387494, \"energy_joules\": 2.7853905295387493}}, \"1747200\": {\"active\": {\"elapsed_sec\": 23.020526867, \"elapsed_ns\": 23020526867, \"power_samples\": [399.7107458779999, 399.7107458779999, 393.78781240800004, 399.03531357400004, 393.48256362899997, 393.48256362899997, 400.88496679800005, 400.70053793399995, 400.70053793399995, 391.5111490369999, 400.70053793399995, 400.70053793399995, 402.553623483, 395.2137689819999, 395.2137689819999, 404.27923721, 400.76201422199995, 400.76201422199995, 404.40291949100003, 402.491775438, 398.7282760300001, 398.7282760300001], \"power_mean\": 398.97925848440906, \"energy_millijoules\": 9184.712739316077, \"energy_joules\": 9.184712739316078, \"coremark_score\": 10869.565217, \"coremarks_per_mhz\": 6.221133938301281, \"ulpmark_cm_score\": 27.219141969443434}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [553.095940145, 558.719126316, 553.202094053, 553.202094053], \"power_mean\": 554.55481364175, \"energy_millijoules\": 2772.77406820875, \"energy_joules\": 2.7727740682087503}}, \"1843200\": {\"active\": {\"elapsed_sec\": 21.805595617, \"elapsed_ns\": 21805595617, \"power_samples\": [34.20770916599997, 419.4555375969999, 426.54243714999996, 426.54243714999996, 426.1635715179999, 420.74375958200005, 420.74375958200005, 422.52955361400006, 422.52955361400006, 422.52955361400006, 422.46664748599994, 426.1635715179999, 426.1635715179999, 431.5854816809998, 429.7372582969999, 426.03702418599994, 426.03702418599994, 418.5776755669999, 427.88903491299993, 427.88903491299993, 425.973879914], \"power_mean\": 406.21467032219044, \"energy_millijoules\": 8857.752834738656, \"energy_joules\": 8.857752834738656, \"coremark_score\": 11475.259341, \"coremarks_per_mhz\": 6.225726638997396, \"ulpmark_cm_score\": 28.223862718266528}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [558.611753544, 558.611753544, 562.2617358800001, 554.885997262], \"power_mean\": 558.5928100575, \"energy_millijoules\": 2792.9640502875, \"energy_joules\": 2.7929640502875}}, \"1996800\": {\"active\": {\"elapsed_sec\": 20.089460409, \"elapsed_ns\": 20089460409, \"power_samples\": [501.791601894, 495.4311642120001, 495.4311642120001, 491.6026708290001, 495.2278717930001, 495.2278717930001, 498.9242897419999, 494.88923598999986, 494.88923598999986, 498.65264942199997, 494.88923598999986, 494.88923598999986, 500.29412412600004, 494.8215642980001, 500.09003667, 500.09003667, 498.3128207019997, 498.4486408619998, 498.4486408619998, 494.75389260600014], \"power_mean\": 496.85529923265, \"energy_millijoules\": 9981.554862936171, \"energy_joules\": 9.981554862936171, \"coremark_score\": 12457.02327, \"coremarks_per_mhz\": 6.2384932241586535, \"ulpmark_cm_score\": 25.046198055606347}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [554.708478722, 554.74398243, 562.22575564, 554.814989846], \"power_mean\": 556.6233016594999, \"energy_millijoules\": 2783.1165082974994, \"energy_joules\": 2.7831165082974993}}, \"2054400\": {\"active\": {\"elapsed_sec\": 19.553928274, \"elapsed_ns\": 19553928274, \"power_samples\": [528.899682966, 525.9369253259999, 525.9369253259999, 527.5025004099998, 527.5025004099998, 527.5025004099998, 530.845018884, 531.195578973, 531.195578973, 530.7749642880001, 527.1531332379998, 534.4628329920001, 534.4628329920001, 528.7873808219999, 528.7873808219999, 528.7873808219999, 526.8040521979999, 534.1816620320001, 534.1816620320001], \"power_mean\": 529.7316049429473, \"energy_millijoules\": 10358.333807525296, \"energy_joules\": 10.358333807525296, \"coremark_score\": 12798.198014, \"coremarks_per_mhz\": 6.22965246008567, \"ulpmark_cm_score\": 24.135155773641493}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [549.053101794, 549.053101794, 554.637325799, 576.863421175], \"power_mean\": 557.4017376405, \"energy_millijoules\": 2787.0086882025, \"energy_joules\": 2.7870086882024996}}, \"2169600\": {\"active\": {\"elapsed_sec\": 18.584343327, \"elapsed_ns\": 18584343327, \"power_samples\": [-3.2706418229998917, 597.9952327020001, 603.3013464619999, 603.3013464619999, 601.5341383980001, 601.4594373099999, 601.4594373099999, 606.763455909, 599.4645902100001, 601.3100351339999, 601.3100351339999, 601.3100351339999, 601.2350278939998, 601.2350278939998, 602.9269390219999, 600.9362235419999, 600.9362235419999, 600.9362235419999], \"power_mean\": 568.0080063209999, \"energy_millijoules\": 10556.055801954248, \"energy_joules\": 10.556055801954248, \"coremark_score\": 13466.925232, \"coremarks_per_mhz\": 6.207100494100295, \"ulpmark_cm_score\": 23.683088142989675}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [557.9681028480001, 552.5293509119999, 552.5293509119999, 552.5647355479999], \"power_mean\": 553.897885055, \"energy_millijoules\": 2769.489425275, \"energy_joules\": 2.769489425275}}, \"2208000\": {\"active\": {\"elapsed_sec\": 18.258603223, \"elapsed_ns\": 18258603223, \"power_samples\": [612.405507169, 610.446558805, 610.446558805, 612.137278725, 612.2126944890001, 612.2126944890001, 617.437672148, 608.1539416370001, 608.1539416370001, 615.5210619079999, 617.0584954820001, 615.218135242, 615.218135242, 617.2861257, 618.8988557219998, 618.8988557219998, 620.971333551, 626.1914700699999], \"power_mean\": 614.9371842523889, \"energy_millijoules\": 11227.894054333214, \"energy_joules\": 11.227894054333214, \"coremark_score\": 13708.395021, \"coremarks_per_mhz\": 6.208512237771739, \"ulpmark_cm_score\": 22.26597425930616}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [552.4231970039999, 552.4231970039999, 552.5293509119999, 561.6857571200001], \"power_mean\": 554.76537551, \"energy_millijoules\": 2773.82687755, \"energy_joules\": 2.77382687755}}, \"2304000\": {\"active\": {\"elapsed_sec\": 17.430793848, \"elapsed_ns\": 17430793848, \"power_samples\": [682.948537018, 682.948537018, 682.6282879940002, 682.5482257380002, 682.5482257380002, 687.667073454, 691.3479873899998, 691.3479873899998, 693.0250062219998, 681.9874618220001, 689.3445690619999, 689.3445690619999, 689.3445690619999, 681.8270091860002, 681.8270091860002, 690.8637082, 683.5085090409998], \"power_mean\": 686.1798395637059, \"energy_millijoules\": 11960.659326088671, \"energy_joules\": 11.96065932608867, \"coremark_score\": 14359.563469, \"coremarks_per_mhz\": 6.232449422309028, \"ulpmark_cm_score\": 20.90185776420354}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [552.317043096, 557.9681028480001, 554.2466395040001, 554.2466395040001], \"power_mean\": 554.694606238, \"energy_millijoules\": 2773.4730311900003, \"energy_joules\": 2.7734730311900004}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sdm712/second/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 554 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 748 998 1209 1324 1516 1612 1708\n\n 300:  1114     3.7 C/MHz     62 mW   14.0 J   17.9 I/mJ   224.5 s\n 576:  2139     3.7 C/MHz     77 mW    9.0 J   27.9 I/mJ   116.9 s\n 748:  2780     3.7 C/MHz     83 mW    7.4 J   33.7 I/mJ    89.9 s\n 998:  3707     3.7 C/MHz    116 mW    7.9 J   31.8 I/mJ    67.4 s\n1209:  4491     3.7 C/MHz    109 mW    6.1 J   41.2 I/mJ    55.7 s\n1324:  4919     3.7 C/MHz    142 mW    7.2 J   34.6 I/mJ    50.8 s\n1516:  5632     3.7 C/MHz    132 mW    5.8 J   42.7 I/mJ    44.4 s\n1612:  5988     3.7 C/MHz    140 mW    5.8 J   42.9 I/mJ    41.8 s\n1708:  6345     3.7 C/MHz    163 mW    6.4 J   39.0 I/mJ    39.4 s\n\n\n===== CPU 6 =====\nFrequencies: 300 652 825 979 1132 1363 1536 1747 1843 1996 2054 2169 2208 2304\n\n 300:  1869     6.2 C/MHz     85 mW   11.4 J   22.0 I/mJ   133.8 s\n 652:  4063     6.2 C/MHz    128 mW    7.9 J   31.7 I/mJ    61.6 s\n 825:  5137     6.2 C/MHz    175 mW    8.5 J   29.4 I/mJ    48.7 s\n 979:  6082     6.2 C/MHz    180 mW    7.4 J   33.8 I/mJ    41.1 s\n1132:  7070     6.2 C/MHz    216 mW    7.6 J   32.7 I/mJ    35.4 s\n1363:  8509     6.2 C/MHz    263 mW    7.7 J   32.3 I/mJ    29.4 s\n1536:  9578     6.2 C/MHz    326 mW    8.5 J   29.4 I/mJ    26.1 s\n1747: 10870     6.2 C/MHz    399 mW    9.2 J   27.2 I/mJ    23.0 s\n1843: 11475     6.2 C/MHz    406 mW    8.9 J   28.2 I/mJ    21.8 s\n1996: 12457     6.2 C/MHz    497 mW   10.0 J   25.0 I/mJ    20.1 s\n2054: 12798     6.2 C/MHz    530 mW   10.4 J   24.1 I/mJ    19.6 s\n2169: 13467     6.2 C/MHz    568 mW   10.6 J   23.7 I/mJ    18.6 s\n2208: 13708     6.2 C/MHz    615 mW   11.2 J   22.3 I/mJ    18.3 s\n2304: 14360     6.2 C/MHz    686 mW   12.0 J   20.9 I/mJ    17.4 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sdm712/second/uptime.txt",
    "content": " 01:17:43 up 25 min,  load average: 0.77, 0.79, 0.68\n"
  },
  {
    "path": "results/sdm712/second/versions.txt",
    "content": "Kernel: Linux version 4.9.249~ms2+vanilla/79f05565 (NATO66613@KREMLIN) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project 52586c46b0883600a332fd64731dc5287981f980), GNU ld (GNU Binutils) 2.35.1) #1 SMP PREEMPT Tue Jan 26 08:17:00 UTC 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sdm845/main/cmdline.txt",
    "content": "rcupdate.rcu_expedited=1 console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0xA84000 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.usbcontroller=a600000.dwc3 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 swiotlb=2048 loop.max_part=16 androidboot.configfs=true buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on root=/dev/dm-0 dm=\"system none ro,0 1 android-verity /dev/sde48\" androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.veritymode=enforcing androidboot.bootdevice=1d84000.ufshc androidboot.serialno=REDACTED androidboot.baseband=msm msm_drm.dsi_display0=dsi_jdi_fhd_nt35596s_video_display: androidboot.ramdump=disable androidboot.secureboot=1 androidboot.dp=0x0 androidboot.cpuid=REDACTED androidboot.hwversion=2.4.0 androidboot.hwc=CN androidboot.cert=M1803D5XE androidboot.hwlevel=MP androidboot.dtb_idx=-1347440721\n"
  },
  {
    "path": "results/sdm845/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 12 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x7\nCPU part\t: 0x803\nCPU revision\t: 12\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x6\nCPU part\t: 0x802\nCPU revision\t: 13\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x6\nCPU part\t: 0x802\nCPU revision\t: 13\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x6\nCPU part\t: 0x802\nCPU revision\t: 13\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0x6\nCPU part\t: 0x802\nCPU revision\t: 13\n\nHardware\t: Qualcomm Technologies, Inc SDM845\n"
  },
  {
    "path": "results/sdm845/main/device.txt",
    "content": "Model: Xiaomi Technologies, Inc. Polaris MP v2.1;\nCompatible: qcom,sdm845-mtp;qcom,sdm845;qcom,mtp;\n"
  },
  {
    "path": "results/sdm845/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Linux version 4.9.246-perf-g7fa29bb0fa45-dirty (jjpprrrr@WienerMusikverein) (Android (6573524 based on r383902b) clang version 11.0.2 (https://android.googlesource.com/toolchain/llvm-project b397f81060ce6d701042b782172ed13bee898b79)) #1 SMP PREEMPT Sun Jan 3 11:21:22 EST 2021\n[    0.000000] Boot CPU: AArch64 Processor [517f803c]\n[    0.000000] Powerup reason=0x40181\n[    0.000000] Machine: Xiaomi Technologies, Inc. Polaris MP v2.1\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fa000000, size 92 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f9000000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000001fb000000, size 36 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f8000000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6000000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f5800000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node secure_sp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x000000008ab00000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@0x8ab00000, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008bf00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node camera_region@0x8bf00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008c400000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ips_fw_region@0x8c400000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008c410000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_gsi_region@0x8c410000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008c415000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@0x8c415000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008c500000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region@0x8c500000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008e300000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_fw_region@0x8e300000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008e400000, size 120 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@0x8e400000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000095c00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node video_region@0x95c00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000096100000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_region@0x96100000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000096900000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node mba_region@0x96900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000096b00000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node slpi_region@0x96b00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097f00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node pil_spss_region@0x97f00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000af000000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node ramdump_fb_region@af000000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 1482569\n[    0.000000]   DMA zone: 6955 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 445097 pages, LIFO batch:31\n[    0.000000]   Normal zone: 16211 pages used for memmap\n[    0.000000]   Normal zone: 1037472 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] random: fast init done\n[    0.000000] percpu: Embedded 22 pages/cpu s50968 r8192 d30952 u90112\n[    0.000000] pcpu-alloc: s50968 r8192 d30952 u90112 alloc=22*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1459403\n[    0.000000] Kernel command line: rcupdate.rcu_expedited=1 console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0xA84000 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.usbcontroller=a600000.dwc3 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 swiotlb=2048 loop.max_part=16 androidboot.configfs=true buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on root=/dev/dm-0 dm=\"system none ro,0 1 android-verity /dev/sde48\" androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.veritymode=enforcing androidboot.bootdevice=1d84000.ufshc androidboot.serialno=REDACTED androidboot.baseband=msm msm_drm.dsi_display0=dsi_jdi_fhd_nt35596s_video_display: androidboot.ramdump=disable androidboot.secureboot=1 androidboot.dp=0x0 androidboot.cpuid=REDACTED androidboot.hwversion=2.4.0 androidboot.hwc=CN androidboot.cert=M1803D5XE androidboot.hwlevel=MP andr\n[    0.000000] device-mapper: init: will configure 1 devices\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] software IO TLB: mapped [mem 0xf5400000-0xf5800000] (4MB)\n[    0.000000] Memory: 5494888K/5930276K available (19966K kernel code, 2424K rwdata, 9368K rodata, 6144K init, 8095K bss, 230588K reserved, 204800K cma-reserved)\n[    0.000000] Virtual kernel memory layout:\n[    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n[    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)\n[    0.000000]       .text : 0x        (ptrval) - 0x        (ptrval)   ( 19968 KB)\n[    0.000000]     .rodata : 0x        (ptrval) - 0x        (ptrval)   ( 10240 KB)\n[    0.000000]       .init : 0x        (ptrval) - 0x        (ptrval)   (  6144 KB)\n[    0.000000]       .data : 0x        (ptrval) - 0x        (ptrval)   (  2424 KB)\n[    0.000000]        .bss : 0x        (ptrval) - 0x        (ptrval)   (  8096 KB)\n[    0.000000]     fixed   : 0xffffffbefe7fb000 - 0xffffffbefec00000   (  4116 KB)\n[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)\n[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)\n[    0.000000]               0xffffffbfd2000000 - 0xffffffbfd7f52800   (    95 MB actual)\n[    0.000000]     memory  : 0xfffffff480000000 - 0xfffffff5fd4a0000   (  6100 MB)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] NR_IRQS:64 nr_irqs:64 0\n[    0.000000] PDC SDM845 v2 initialized\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from all CPUs\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arm_arch_timer: Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000004] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000019] clocksource: Switched to clocksource arch_sys_counter\n[    0.001621] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001631] pid_max: default: 32768 minimum: 301\n[    0.001702] Security Framework initialized\n[    0.001711] SELinux:  Initializing.\n[    0.001754] SELinux:  Starting in permissive mode\n[    0.001781] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.001786] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.002733] /cpus/cpu@0: Missing clock-frequency property\n[    0.002741] /cpus/cpu@100: Missing clock-frequency property\n[    0.002746] /cpus/cpu@200: Missing clock-frequency property\n[    0.002750] /cpus/cpu@300: Missing clock-frequency property\n[    0.002757] /cpus/cpu@400: Missing clock-frequency property\n[    0.002762] /cpus/cpu@500: Missing clock-frequency property\n[    0.002769] /cpus/cpu@600: Missing clock-frequency property\n[    0.002774] /cpus/cpu@700: Missing clock-frequency property\n[    0.002832] sched-energy: Sched-energy-costs installed from DT\n[    0.012068] ASID allocator initialised with 32768 entries\n[    0.020876] MSM Memory Dump base table set up\n[    0.020893] MSM Memory Dump apps data table set up\n[    0.032332] CPU1: Booted secondary processor [517f803c]\n[    0.041414] CPU2: Booted secondary processor [517f803c]\n[    0.050500] CPU3: Booted secondary processor [517f803c]\n[    0.060151] CPU4: Booted secondary processor [516f802d]\n[    0.069556] CPU5: Booted secondary processor [516f802d]\n[    0.079115] CPU6: Booted secondary processor [516f802d]\n[    0.088803] CPU7: Booted secondary processor [516f802d]\n[    0.088964] Brought up 8 CPUs\n[    0.088969] SMP: Total of 8 processors activated.\n[    0.088974] CPU features: detected feature: GIC system register CPU interface\n[    0.088976] CPU features: detected feature: Privileged Access Never\n[    0.088978] CPU features: detected feature: User Access Override\n[    0.088981] CPU features: detected feature: 32-bit EL0 Support\n[    0.088984] CPU features: detected feature: Kernel page table isolation (KPTI)\n[    0.138484] CPU: All CPU(s) started at EL1\n[    0.138527] alternatives: patching kernel code\n[    0.140293] CPU0: update max cpu_capacity 1024\n[    0.141491] devtmpfs: initialized\n[    0.207658] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.207671] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.211778] pinctrl core: initialized pinctrl subsystem\n[    0.212440] NET: Registered protocol family 16\n[    0.213462] schedtune: init normalization constants...\n[    0.213469] schedtune: CLUSTER[0]        min_pwr:     1 max_pwr:    17\n[    0.213475] schedtune: CPU[0]            min_pwr:     4 max_pwr:   160\n[    0.213480] schedtune: SYSTEM            min_pwr:     5 max_pwr:   177\n[    0.213484] schedtune: using normalization constants mul: 2097542168 sh1: 1 sh2: 7\n[    0.213485] schedtune: verify normalization constants...\n[    0.213488] schedtune: max_pwr/2^0:  172 => norm_pwr:  1024\n[    0.213490] schedtune: max_pwr/2^1:   86 => norm_pwr:   512\n[    0.213492] schedtune: max_pwr/2^2:   43 => norm_pwr:   256\n[    0.213494] schedtune: max_pwr/2^3:   21 => norm_pwr:   125\n[    0.213495] schedtune: max_pwr/2^4:   10 => norm_pwr:    59\n[    0.213497] schedtune: max_pwr/2^5:    5 => norm_pwr:    29\n[    0.213500] schedtune: configured to support 5 boost groups\n[    0.215133] cpuidle: using governor menu\n[    0.215155] cpuidle: using governor qcom\n[    0.219359] vdso32: 3 pages (2 code @         (ptrval), 1 data @         (ptrval))\n[    0.219363] vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.219368] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.219970] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.222841] exit: IPA_USB init success!\n[    0.228589] pstore: using zlib compression\n[    0.228611] console [pstore-1] enabled\n[    0.228773] pstore: Registered ramoops as persistent store backend\n[    0.228776] ramoops: attached 0x400000@0xb0000000, ecc: 0/0\n[    0.231473] irq: no irq domain found for /soc/qcom,mdss_mdp@ae00000 !\n[    0.231556] irq: no irq domain found for /soc/qcom,mdss_mdp@ae00000 !\n[    0.231632] irq: no irq domain found for /soc/qcom,mdss_mdp@ae00000 !\n[    0.232065] irq: no irq domain found for /soc/pinctrl@03400000 !\n[    0.235311] unable to find DT imem DLOAD mode node\n[    0.236751] unable to find DT imem EDLOAD mode node\n[    0.238125] spmi spmi-0: PMIC arbiter version v5 (0x50000000)\n[    0.246776] platform 4080000.qcom,mss: assigned reserved memory node modem_region@0x8e400000\n[    0.246877] platform 17300000.qcom,lpass: assigned reserved memory node adsp_region@0x8c500000\n[    0.246975] platform 5c00000.qcom,ssc: assigned reserved memory node slpi_region@0x96b00000\n[    0.247411] platform 188101c.qcom,spss: assigned reserved memory node pil_spss_region@0x97f00000\n[    0.247590] msm_watchdog 17980000.qcom,wdt: wdog absent resource not present\n[    0.247603] msm_watchdog 17980000.qcom,wdt: No need to allocate memory for scandumps\n[    0.248292] msm_watchdog 17980000.qcom,wdt: MSM Watchdog Initialized\n[    0.248355] platform 8300000.qcom,turing: assigned reserved memory node cdsp_region@0x96100000\n[    0.248569] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.248742] platform aae0000.qcom,venus: assigned reserved memory node video_region@0x95c00000\n[    0.250396] <CORE> glink_mailbox_probe: unable to create log context for [spss:mailbox]\n[    0.258190] sps:sps is ready.\n[    0.259073] platform soc:qcom,ipa_fws: assigned reserved memory node ips_fw_region@0x8c400000\n[    0.260330] platform soc:mem_dump: assigned reserved memory node mem_dump_region\n[    0.272741] pm8998_s9_level: Bringing 1uV into 17-17uV\n[    0.272847] pm8998_s9_level: supplied by pm8998_s6_level\n[    0.272913] pm8998_s9_level_ao: Bringing 1uV into 17-17uV\n[    0.272993] pm8998_s9_level_ao: supplied by pm8998_s6_level_ao\n[    0.280272] pm8998_l24: supplied by pm8998_l12\n[    0.281744] pm8998_lvs1: Bringing 1uV into 1800000-1800000uV\n[    0.282079] pm8998_lvs2: Bringing 1uV into 1800000-1800000uV\n[    0.295292] sdm845-v2-pinctrl 3400000.pinctrl: invalid resource\n[    0.301648] platform soc:qcom,kgsl-hyp: assigned reserved memory node gpu_region@0x8c415000\n[    0.324295] gpu_cx_gdsc: supplied by pm8998_s9_level\n[    0.333142] cam_cc-sdm845 ad00000.qcom,camcc: Registered Camera CC clocks\n[    0.334088] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.334953] clk-rpmh soc:qcom,rpmhclk: Registered RPMh clocks\n[    0.336674] disp_cc-sdm845 af00000.qcom,dispcc: Registered Display CC clocks\n[    0.358716] gcc-sdm845 100000.qcom,gcc: Registered GCC clocks\n[    0.359611] clk: gpu_cc_gx_gfx3d_clk_src: set OPP pair(180000000 Hz: 49 uV) on 5000000.qcom,kgsl-3d0\n[    0.359903] clk: gpu_cc_gx_gfx3d_clk_src: set OPP pair(710000000 Hz: 417 uV) on 5000000.qcom,kgsl-3d0\n[    0.359970] gfxcc-sdm845 5090000.qcom,gfxcc: Registered GFX CC clocks\n[    0.361498] clk: gpu_cc_gmu_clk_src: set OPP pair(19200000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.361602] clk: gpu_cc_gmu_clk_src: set OPP pair(500000000 Hz: 129 uV) on 506a000.qcom,gmu\n[    0.361784] gpu_cc-sdm845 5090000.qcom,gpucc: Registered GPU CC clocks\n[    0.362912] video_cc-sdm845 ab00000.qcom,videocc: Registered Video CC clocks\n[    0.363885] KPI: Bootloader start count = 58536\n[    0.363887] KPI: Bootloader end count = 84113\n[    0.363889] KPI: Bootloader display count = 1873735551\n[    0.363891] KPI: Bootloader load kernel count = 2998\n[    0.363894] KPI: Kernel MPM timestamp = 103662\n[    0.363896] KPI: Kernel MPM Clock frequency = 32768\n[    0.363918] socinfo_print: v0.15, id=321, ver=2.1, raw_id=139, raw_ver=2, hw_plat=40, hw_plat_ver=262144\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65556, pmic_die_revision=131072 foundry_id=3 serial_number=3701556138 num_pmics=3 chip_family=0x4f raw_device_family=0x6 raw_device_number=0x0 nproduct_id=0x3f4 num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0x6 ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.363920] msm_bus_fabric_rpmh_init_driver\n[    0.364117] msm_bus: Probe started\n[    0.364681] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.364737] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.364750] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.364803] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.366992] msm_bus: DT Parsing complete\n[    0.370059] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.370228] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.370269] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.370434] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.383648] actuator_rear_regulator: supplied by pmi8998_bob\n[    0.383915] actuator_rear_aux_regulator: supplied by pmi8998_bob\n[    0.384008] reg-fixed-voltage 2.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm8998@0/pinctrl@c000/camera_rear_dvdd_en/camera_rear_dvdd_en_default, deferring probe\n[    0.384024] reg-fixed-voltage 3.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm8998@0/pinctrl@c000/camera_dvdd_en/camera_dvdd_en_default, deferring probe\n[    0.384162] camera_aux_ldo: supplied by pm8998_s3\n[    0.384378] camera_ois_regulator: supplied by pmi8998_bob\n[    0.397472] camera_vio_ldo: supplied by pm8998_s4\n[    0.397909] reg-fixed-voltage vendor:ext_5v_boost: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pmi8998@2/pinctrl@c000/usb2_ext_5v_boost/usb2_ext_5v_boost_default, deferring probe\n[    0.398849] arm-smmu 5040000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.398908] arm-smmu 5040000.arm,smmu-kgsl: \tstream matching with 5 register groups, mask 0x7\n[    0.398992] arm-smmu 5040000.arm,smmu-kgsl: found 8 context interrupt(s) but have 5 context banks. assuming 5 context interrupts.\n[    0.401149] register_client_adhoc:find path.src 139 dest 627\n[    0.401374] register_client_adhoc:Client handle 1 apps_smmu\n[    0.401570] arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by dma-coherent property)\n[    0.401622] arm-smmu 15000000.apps-smmu: \tstream matching with 76 register groups, mask 0x7fff\n[    0.401947] arm-smmu 15000000.apps-smmu: found 64 context interrupt(s) but have 45 context banks. assuming 45 context interrupts.\n[    0.402478] register_client_adhoc:find path.src 139 dest 627\n[    0.402643] register_client_adhoc:Client handle 2 apps_smmu\n[    0.402876] register_client_adhoc:find path.src 139 dest 627\n[    0.403018] register_client_adhoc:Client handle 3 apps_smmu\n[    0.403210] register_client_adhoc:find path.src 22 dest 773\n[    0.403287] register_client_adhoc:Client handle 4 mnoc_hf_0_tbu\n[    0.403475] register_client_adhoc:find path.src 22 dest 773\n[    0.403543] register_client_adhoc:Client handle 5 mnoc_hf_1_tbu\n[    0.403732] register_client_adhoc:find path.src 137 dest 772\n[    0.403810] register_client_adhoc:Client handle 6 mnoc_sf_0_tbu\n[    0.403952] register_client_adhoc:find path.src 139 dest 627\n[    0.404103] register_client_adhoc:Client handle 7 apps_smmu\n[    0.404284] register_client_adhoc:find path.src 139 dest 627\n[    0.404418] register_client_adhoc:Client handle 8 apps_smmu\n[    0.404636] register_client_adhoc:find path.src 139 dest 627\n[    0.404769] register_client_adhoc:Client handle 9 apps_smmu\n[    0.405599] iommu: Adding device ae00000.qcom,mdss_mdp to group 0\n[    0.405768] iommu: Adding device 8c0000.qcom,qupv3_0_geni_se:qcom,iommu_qupv3_0_geni_se_cb to group 1\n[    0.405925] iommu: Adding device ac0000.qcom,qupv3_1_geni_se:qcom,iommu_qupv3_1_geni_se_cb to group 2\n[    0.406118] iommu: Adding device 1de0000.qcedev to group 3\n[    0.406273] iommu: Adding device 1de0000.qcrypto to group 4\n[    0.406429] iommu: Adding device 18800000.qcom,icnss to group 5\n[    0.406583] iommu: Adding device 800000.qcom,gpi-dma to group 6\n[    0.406736] iommu: Adding device a00000.qcom,gpi-dma to group 7\n[    0.406886] iommu: Adding device 88a7000.msm_tspp to group 8\n[    0.407048] iommu: Adding device soc:apps_iommu_test_device to group 8\n[    0.407189] iommu: Adding device soc:apps_iommu_coherent_test_device to group 8\n[    0.407372] iommu: Adding device soc:qcom,msm-audio-ion to group 9\n[    0.407533] iommu: Adding device a600000.ssusb to group 10\n[    0.407684] iommu: Adding device soc:usb_audio_qmi_dev to group 11\n[    0.409095] vgaarb: loaded\n[    0.409289] SCSI subsystem initialized\n[    0.409429] usbcore: registered new interface driver usbfs\n[    0.409456] usbcore: registered new interface driver hub\n[    0.409588] usbcore: registered new device driver usb\n[    0.410167] soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.410514] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8998@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'warm' boot\n[    0.410538] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8998@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from KPDPWR_N (Long Power Key hold)\n[    0.410712] input: qpnp_pon as /devices/virtual/input/input0\n[    0.411527] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8005@4:qcom,power-on@800: No PON config. specified\n[    0.411570] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8005@4:qcom,power-on@800: PMIC@SID4 Power-on reason: Triggered from PON1 (secondary PMIC) and 'warm' boot\n[    0.411592] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8005@4:qcom,power-on@800: PMIC@SID4: Power-off reason: Triggered from GP1 (Keypad_Reset1)\n[    0.411652] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pmi8998@2:qcom,power-on@800: No PON config. specified\n[    0.411695] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pmi8998@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from PON1 (secondary PMIC) and 'warm' boot\n[    0.411715] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pmi8998@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from GP1 (Keypad_Reset1)\n[    0.412121] media: Linux media interface: v0.10\n[    0.412142] Linux video capture interface: v2.00\n[    0.424383] Unable to get pmic_revid rc=-22\n[    0.426225] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node adsp_region\n[    0.426471] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@0x8ab00000\n[    0.426558] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.426636] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node secure_sp_region\n[    0.426714] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.427035] ION heap system created\n[    0.427125] ION heap adsp created at 0x00000000f9000000 with size 1000000\n[    0.427135] ION heap qsecom created at 0x000000008ab00000 with size 1400000\n[    0.427143] ION heap qsecom_ta created at 0x00000000f8000000 with size 1000000\n[    0.427151] ION heap spss created at 0x00000000f5800000 with size 800000\n[    0.427160] ION heap secure_display created at 0x00000000fa000000 with size 5c00000\n[    0.427169] ION heap secure_heap created\n[    0.427868] ipa ipa3_tz_unlock_reg:5243 Bad parameters\n[    0.427874] ipa ipa3_pre_init:5445 Failed to unlock memory region using TZ\n[    0.428045] register_client_adhoc:find path.src 90 dest 512\n[    0.428532] register_client_adhoc:find path.src 90 dest 585\n[    0.428667] register_client_adhoc:find path.src 1 dest 676\n[    0.428904] register_client_adhoc:find path.src 143 dest 777\n[    0.428971] register_client_adhoc:Client handle 10 ipa\n[    0.429506] ipa ipa3_uc_state_check:284 uC interface not initialized\n[    0.433141] ipa ipa3_uc_state_check:284 uC interface not initialized\n[    0.433709] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_ap to group 12\n[    0.433952] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_wlan to group 13\n[    0.434195] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_uc to group 14\n[    0.434976] PMIC@SID0: PM8998 v2.0 options: 0, 0, 0, 0\n[    0.435088] PMIC@SID4: PM8005 v2.0 options: 0, 0, 0, 0\n[    0.435202] PMIC@SID2: PMI8998 v2.1 options: 0, 0, 0, 0\n[    0.438366] Advanced Linux Sound Architecture Driver Initialized.\n[    0.439203] Bluetooth: Core ver 2.22\n[    0.439223] NET: Registered protocol family 31\n[    0.439224] Bluetooth: HCI device and connection manager initialized\n[    0.439234] Bluetooth: HCI socket layer initialized\n[    0.439240] Bluetooth: L2CAP socket layer initialized\n[    0.439264] Bluetooth: SCO socket layer initialized\n[    0.440615] NetLabel: Initializing\n[    0.440617] NetLabel:  domain hash size = 128\n[    0.440618] NetLabel:  protocols = UNLABELED CIPSOv4\n[    0.440661] NetLabel:  unlabeled traffic allowed by default\n[    0.440796] pcie:pcie_init.\n[    0.443948] qpnp_labibb_regulator_probe: LAB/IBB registered successfully, lab_vreg enable=1 ibb_vreg enable=1 swire_control=0\n[    0.444355] gpu_gx_gdsc: supplied by pm8005_s1_level\n[    0.445860] clk: add_opp: Set OPP pair (300000000 Hz, 592000 uv) on cpu0\n[    0.446589] clk: add_opp: Set OPP pair (1766400000 Hz, 828000 uv) on cpu0\n[    0.446663] clk: add_opp: Set OPP pair (300000000 Hz, 592000 uv) on cpu1\n[    0.447349] clk: add_opp: Set OPP pair (1766400000 Hz, 828000 uv) on cpu1\n[    0.447402] clk: add_opp: Set OPP pair (300000000 Hz, 592000 uv) on cpu2\n[    0.448074] clk: add_opp: Set OPP pair (1766400000 Hz, 828000 uv) on cpu2\n[    0.448139] clk: add_opp: Set OPP pair (300000000 Hz, 592000 uv) on cpu3\n[    0.448818] clk: add_opp: Set OPP pair (1766400000 Hz, 828000 uv) on cpu3\n[    0.448878] clk: add_opp: Set OPP pair (825600000 Hz, 620000 uv) on cpu4\n[    0.449983] clk: add_opp: Set OPP pair (2803200000 Hz, 1056000 uv) on cpu4\n[    0.450079] clk: add_opp: Set OPP pair (825600000 Hz, 620000 uv) on cpu5\n[    0.451174] clk: add_opp: Set OPP pair (2803200000 Hz, 1056000 uv) on cpu5\n[    0.451231] clk: add_opp: Set OPP pair (825600000 Hz, 620000 uv) on cpu6\n[    0.452277] clk: add_opp: Set OPP pair (2803200000 Hz, 1056000 uv) on cpu6\n[    0.452334] clk: add_opp: Set OPP pair (825600000 Hz, 620000 uv) on cpu7\n[    0.453390] clk: add_opp: Set OPP pair (2803200000 Hz, 1056000 uv) on cpu7\n[    0.453746] clk: add_opp: Set OPP pair (300000000 Hz, 600000 uv) on soc:qcom,l3-cpu0\n[    0.453748] clk: add_opp: Set OPP pair (300000000 Hz, 600000 uv) on soc:qcom,l3-cpu4\n[    0.453751] clk: add_opp: Set OPP pair (300000000 Hz, 600000 uv) on soc:qcom,l3-cdsp\n[    0.453753] clk: add_opp: Set OPP pair (300000000 Hz, 600000 uv) on 5000000.qcom,kgsl-3d0\n[    0.455904] clk: add_opp: Set OPP pair (1478400000 Hz, 824000 uv) on soc:qcom,l3-cpu0\n[    0.455906] clk: add_opp: Set OPP pair (1478400000 Hz, 824000 uv) on soc:qcom,l3-cpu4\n[    0.455909] clk: add_opp: Set OPP pair (1478400000 Hz, 824000 uv) on soc:qcom,l3-cdsp\n[    0.455911] clk: add_opp: Set OPP pair (1478400000 Hz, 824000 uv) on 5000000.qcom,kgsl-3d0\n[    0.457799] cpufreq: driver osm-cpufreq up and running\n[    0.457801] clk: clk_cpu_osm_driver_probe: OSM CPUFreq driver inited\n[    0.457845] reg-fixed-voltage 2.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm8998@0/pinctrl@c000/camera_rear_dvdd_en/camera_rear_dvdd_en_default, deferring probe\n[    0.457889] reg-fixed-voltage 3.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm8998@0/pinctrl@c000/camera_dvdd_en/camera_dvdd_en_default, deferring probe\n[    0.457929] reg-fixed-voltage vendor:ext_5v_boost: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pmi8998@2/pinctrl@c000/usb2_ext_5v_boost/usb2_ext_5v_boost_default, deferring probe\n[    0.460435] sched-energy energy-costs: cpu=0 eff=1024 [freq=300000 cap=65 power_d0=12] -> [freq=1766400 cap=381 power_d0=160]\n[    0.460439] CPU0: update cpu_capacity 381\n[    0.460445] sched-energy energy-costs: cpu=1 eff=1024 [freq=300000 cap=65 power_d0=12] -> [freq=1766400 cap=381 power_d0=160]\n[    0.460447] CPU1: update cpu_capacity 381\n[    0.460453] sched-energy energy-costs: cpu=2 eff=1024 [freq=300000 cap=65 power_d0=12] -> [freq=1766400 cap=381 power_d0=160]\n[    0.460454] CPU2: update cpu_capacity 381\n[    0.460460] sched-energy energy-costs: cpu=3 eff=1024 [freq=300000 cap=65 power_d0=12] -> [freq=1766400 cap=381 power_d0=160]\n[    0.460462] CPU3: update cpu_capacity 381\n[    0.460470] sched-energy energy-costs: cpu=4 eff=1740 [freq=300000 cap=110 power_d0=189] -> [freq=2956800 cap=1024 power_d0=60000]\n[    0.460472] CPU4: update cpu_capacity 1024\n[    0.460479] sched-energy energy-costs: cpu=5 eff=1740 [freq=300000 cap=110 power_d0=189] -> [freq=2956800 cap=1024 power_d0=60000]\n[    0.460481] CPU5: update cpu_capacity 1024\n[    0.460488] sched-energy energy-costs: cpu=6 eff=1740 [freq=300000 cap=110 power_d0=189] -> [freq=2956800 cap=1024 power_d0=60000]\n[    0.460489] CPU6: update cpu_capacity 1024\n[    0.460495] sched-energy energy-costs: cpu=7 eff=1740 [freq=300000 cap=110 power_d0=189] -> [freq=2956800 cap=1024 power_d0=60000]\n[    0.460497] CPU7: update cpu_capacity 1024\n[    0.460639] CPU0: update max cpu_capacity 381\n[    0.460848] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.460885] reg-fixed-voltage 2.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm8998@0/pinctrl@c000/camera_rear_dvdd_en/camera_rear_dvdd_en_default, deferring probe\n[    0.460921] reg-fixed-voltage 3.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm8998@0/pinctrl@c000/camera_dvdd_en/camera_dvdd_en_default, deferring probe\n[    0.460957] reg-fixed-voltage vendor:ext_5v_boost: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pmi8998@2/pinctrl@c000/usb2_ext_5v_boost/usb2_ext_5v_boost_default, deferring probe\n[    0.461409] clocksource: Switched to clocksource arch_sys_counter\n[    0.499818] VFS: Disk quotas dquot_6.6.0\n[    0.499873] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.500677] debugcc-sdm845 soc:qcom,cc-debug@100000: Registered debug mux successfully\n[    0.501570] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.501575] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.501677] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.501683] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.501689] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.501695] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.501701] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.502343] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=0, clocks successfully\n[    0.502372] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.502375] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.502444] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.502450] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.502455] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.502462] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.502467] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.507506] dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.512726] dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.512894] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=1, clocks successfully\n[    0.512922] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.517073] NET: Registered protocol family 2\n[    0.517556] TCP established hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.517791] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)\n[    0.518797] TCP: Hash tables configured (established 65536 bind 65536)\n[    0.518849] UDP hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.518919] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.519127] NET: Registered protocol family 1\n[    0.519152] PCI: CLS 0 bytes, default 128\n[    0.519234] reg-fixed-voltage 2.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm8998@0/pinctrl@c000/camera_rear_dvdd_en/camera_rear_dvdd_en_default, deferring probe\n[    0.519289] reg-fixed-voltage 3.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm8998@0/pinctrl@c000/camera_dvdd_en/camera_dvdd_en_default, deferring probe\n[    0.519328] reg-fixed-voltage vendor:ext_5v_boost: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pmi8998@2/pinctrl@c000/usb2_ext_5v_boost/usb2_ext_5v_boost_default, deferring probe\n[    0.519699] Trying to unpack rootfs image as initramfs...\n[    1.156957] Freeing initrd memory: 23676K\n[    1.158156] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    1.163733] audit: initializing netlink subsys (disabled)\n[    1.163800] audit: type=2000 audit(1.159:1): initialized\n[    1.165424] workingset: timestamp_bits=45 max_order=21 bucket_order=0\n[    1.168941] [SDFAT] Filesystem version 2.3.0\n[    1.169428] Registering sdcardfs 0.1\n[    1.172099] fuse init (API version 7.26)\n[    1.172602] SELinux:  Registering netfilter hooks\n[    1.172899] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    1.172902] pfk_f2fs [pfk_f2fs_init]: PFK F2FS inited successfully\n[    1.172908] pfk [pfk_init]: Driver initialized successfully\n[    1.176657] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)\n[    1.176663] io scheduler noop registered\n[    1.176665] io scheduler deadline registered\n[    1.176753] io scheduler cfq registered (default)\n[    1.195637] fb0: Virtual frame buffer device, using 3000K of video memory\n[    1.198216] qcom,qpnp-clkdiv c440000.qcom,spmi:qcom,pm8998@0:qcom,clkdiv@5b00: Registered qpnp_clkdiv_1 successfully\n[    1.198313] qcom,qpnp-clkdiv c440000.qcom,spmi:qcom,pm8998@0:qcom,clkdiv@5c00: Registered qpnp_clkdiv_2 successfully\n[    1.198408] qcom,qpnp-clkdiv c440000.qcom,spmi:qcom,pm8998@0:qcom,clkdiv@5d00: Registered qpnp_clkdiv_3 successfully\n[    1.216528] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    1.216652] icnss: Platform driver probed successfully\n[    1.217799] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    1.218036] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    1.218134] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    1.219024] register_client_adhoc:find path.src 125 dest 512\n[    1.219518] register_client_adhoc:Client handle 11 scm_pas\n[    1.219533] minidump-id not found for adsp\n[    1.219721] minidump-id not found for slpi\n[    1.219834] minidump-id not found for spss\n[    1.219884] subsys-pil-tz 188101c.qcom,spss: for spss segments only will be dumped.\n[    1.220455] minidump-id not found for cdsp\n[    1.220817] register_client_adhoc:find path.src 63 dest 512\n[    1.221039] register_client_adhoc:Client handle 12 pil-venus\n[    1.221045] minidump-id not found for venus\n[    1.221053] subsys-pil-tz aae0000.qcom,venus: for venus segments only will be dumped.\n[    1.221312] minidump-id not found for ipa_fws\n[    1.221318] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    1.221618] minidump-id not found for a630_zap\n[    1.221625] subsys-pil-tz soc:qcom,kgsl-hyp: for a630_zap segments only will be dumped.\n[    1.222482] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    1.225459] msm_geni_serial 898000.qcom,qup_uart: Wakeup byte 0xfd\n[    1.225497] msm_geni_serial 898000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    1.226109] 898000.qcom,qup_uart: ttyHS0 at MMIO 0x898000 (irq = 8, base_baud = 0) is a MSM\n[    1.226531] msm_geni_serial_init: Driver initialized\n[    1.227024] register_client_adhoc:find path.src 1 dest 618\n[    1.227293] register_client_adhoc:Client handle 13 msm-rng-noc\n[    1.228331] random: crng init done\n[    1.233624] diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    1.233630] diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    1.277210] [drm] Initialized\n[    1.277556] register_client_adhoc:find path.src 20003 dest 20515\n[    1.277759] register_client_adhoc:find path.src 20004 dest 20515\n[    1.277841] register_client_adhoc:Client handle 14 disp_rsc_mnoc\n[    1.277870] register_client_adhoc:find path.src 20001 dest 20513\n[    1.277953] register_client_adhoc:Client handle 15 disp_rsc_llcc\n[    1.277978] register_client_adhoc:find path.src 20000 dest 20512\n[    1.278063] register_client_adhoc:Client handle 16 disp_rsc_ebi\n[    1.278330] [sde_rsc_hw:rsc_hw_init:679]: sde rsc init successfully done\n[    1.278347] [sde_rsc:sde_rsc_probe:1422]: sde rsc index:0 probed successfully\n[    1.279468] dsi_phy ae94400.qcom,mdss_dsi_phy0: failed to get memory resource: dyn_refresh_base\n[    1.279620] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-0\n[    1.279655] dsi_phy ae96400.qcom,mdss_dsi_phy0: failed to get memory resource: dyn_refresh_base\n[    1.279792] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-1\n[    1.281206] AXI: get_pdata(): Error: Client name not found\n[    1.281210] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    1.281216] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-0\n[    1.281462] AXI: get_pdata(): Error: Client name not found\n[    1.281464] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    1.281467] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-1\n[    1.284898] msm-dsi-panel:[dsi_panel_get:3861] [LCD]dsi_panel_get: on_cmds_tuning = 0.\n[    1.284925] msm-dsi-panel:[dsi_panel_parse_triggers:1614] [jdi fhd video dsi panel] fallback to default te-pin-select\n[    1.285048] msm-dsi-panel:[dsi_panel_parse_reset_sequence:2426] RESET SEQ LENGTH = 16\n[    1.285069] msm-dsi-panel:[dsi_panel_parse_misc_features:2475] dsi_panel_parse_misc_features: ulps feature disabled\n[    1.285074] msm-dsi-panel:[dsi_panel_parse_misc_features:2481] dsi_panel_parse_misc_features: ulps during suspend feature disabled\n[    1.285138] msm-dsi-panel:[dsi_panel_parse_mi_config:3739] [LCD]dsi_panel_parse_mi_config:3739 Dispparam enabled.\n[    1.285144] msm-dsi-panel:[dsi_panel_parse_mi_config:3760] 0xf 0x18 enabled:1\n[    1.285150] msm-dsi-panel:[dsi_panel_parse_mi_config:3776] 0xf 0x20 enabled:1\n[    1.285163] msm-dsi-panel:[dsi_panel_parse_mi_config:3819] Panel on dimming delay 120 ms\n[    1.285167] msm-dsi-panel:[dsi_panel_parse_mi_config:3826] default doze backlight threshold is 5\n[    1.285172] msm-dsi-panel:[dsi_panel_get:3946] failed to parse mi config, rc=-22\n[    1.285204] msm-dsi-display:[dsi_display_clocks_init] failed to get src_byte_clk, rc=-2\n[    1.287317] msm-dsi-display:[dsi_display_get_boot_display] index = 0\n[    1.287321] msm-dsi-display:[dsi_display_get_boot_display] index = 1\n[    1.288029] register_client_adhoc:find path.src 1 dest 590\n[    1.288315] register_client_adhoc:Client handle 17 mdss_reg\n[    1.288349] register_client_adhoc:find path.src 22 dest 512\n[    1.288580] register_client_adhoc:find path.src 23 dest 512\n[    1.288788] register_client_adhoc:Client handle 18 mdss_sde\n[    1.288945] [drm:sde_dbg_init:3490] evtlog_status: enable:0, panic:0, dump:1\n[    1.289014] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops sde_rsc_comp_ops)\n[    1.289027] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops sde_wb_comp_ops)\n[    1.289650] msm-dsi-display:[dsi_display_bind] Successfully bind display panel 'dsi_jdi_fhd_nt35596s_video_display'\n[    1.290123] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display@18 (ops dsi_display_comp_ops)\n[    1.290185] [drm] mapped mdp address space @ffffff800ef00000\n[    1.290207] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: vbif_nrt_phys\n[    1.290332] [drm:_sde_kms_get_splash_data:3272] found continuous splash base address:9d400000 size:2400000\n[    1.291923] [drm:sde_kms_hw_init:3401] sde hardware revision:0x40000001\n[    1.293107] [drm] invalid feature map 9 for feature 10\n[    1.293112] [drm] invalid feature map 9 for feature 10\n[    1.293116] [drm] invalid feature map 9 for feature 10\n[    1.293120] [drm] invalid feature map 9 for feature 10\n[    1.293352] [drm:alloc_reg_dma_buf_v1] *ERROR* failed to get aspace\n[    1.293374] Failed to allocate reg dma, ret:18446744073709551594\n[    1.293395] [drm] Created domain mdp_ns [80000000,80000000] secure=0\n[    1.299320] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 15\n[    1.299935] [drm] probing device qcom,smmu_sde_sec\n[    1.299946] [drm] Created domain mdp_s [80000000,80000000] secure=1\n[    1.306110] [drm:sde_connector_init:2401] sde_connector_init: Request esd irq succeed!\n[    1.308131] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    1.308135] [drm] No driver support for vblank timestamp query.\n[    1.310391] msm-dsi-panel:[dsi_panel_parse_topology:3293] default topology: lm: 1 comp_enc:0 intf: 1\n[    1.310853] msm-dsi-panel:[dsi_panel_parse_partial_update_caps:3381] partial update disabled as the property is not set\n[    1.311192] dsi-ctrl:[_dsi_ctrl_setup_isr] [DSI_0] IRQ 668 registered\n[    1.319248] iommu: Adding device 506a000.qcom,gmu:gmu_user to group 16\n[    1.319573] iommu: Adding device 506a000.qcom,gmu:gmu_kernel to group 17\n[    1.321886] register_client_adhoc:find path.src 26 dest 512\n[    1.322257] register_client_adhoc:Client handle 19 grp3d\n[    1.322276] register_client_adhoc:find path.src 26 dest 10036\n[    1.322455] register_client_adhoc:Client handle 20 cnoc\n[    1.322462] query_client_usecase_all: query_start\n[    1.322526] query_client_usecase_all: query_start\n[    1.323853] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 18\n[    1.324155] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 19\n[    1.420124] brd: module loaded\n[    1.444217] loop: module loaded\n[    1.445672] zram: Added device: zram0\n[    1.449598] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1400000\n[    1.449653] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    1.449662] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    1.449668] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    1.449879] register_client_adhoc:find path.src 125 dest 512\n[    1.450657] register_client_adhoc:Client handle 21 qseecom-noc\n[    1.450756] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    1.453185] register_client_adhoc:find path.src 125 dest 512\n[    1.453467] register_client_adhoc:Client handle 22 qcedev-noc\n[    1.455630] qce 1de0000.qcedev: QTI Crypto 5.4.1 device found @0x1de0000\n[    1.455638] qce 1de0000.qcedev: CE device = 0x0 IO base, CE = ffffff800e320000 Consumer (IN) PIPE 6,\n               Producer (OUT) PIPE 7 IO base BAM = 0000000000000000\n               BAM IRQ 108 Engines Availability = 0x2011073\n[    1.455946] sps:BAM 0x0000000001dc4000 is registered.\n[    1.456213] sps:BAM 0x0000000001dc4000 (va:0xffffff800ee80000) enabled: ver:0x27, number of pipes:16\n[    1.456546] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 108\n[    1.457319] iommu: Adding device 1de0000.qcedev:qcom_cedev_ns_cb to group 20\n[    1.458241] qcedev_setup_context_bank Attached 1de0000.qcedev:qcom_cedev_ns_cb and create mapping\n[    1.458244] qcedev_setup_context_bank Context Bank name:ns_context, is_secure:0, start_addr:0x60000000\n[    1.458248] qcedev_setup_context_bank size:0x40000000, dev:fffffff5e8139410, mapping:fffffff5e8213680\n[    1.458355] iommu: Adding device 1de0000.qcedev:qcom_cedev_s_cb to group 21\n[    1.460776] qcedev_setup_context_bank Attached 1de0000.qcedev:qcom_cedev_s_cb and create mapping\n[    1.460781] qcedev_setup_context_bank Context Bank name:secure_context, is_secure:1, start_addr:0x60200000\n[    1.460784] qcedev_setup_context_bank size:0x40000000, dev:fffffff5e8139810, mapping:fffffff5e8217100\n[    1.462772] register_client_adhoc:find path.src 125 dest 512\n[    1.463128] register_client_adhoc:Client handle 23 qcrypto-noc\n[    1.464389] qcrypto 1de0000.qcrypto: QTI Crypto 5.4.1 device found @0x1de0000\n[    1.464395] qcrypto 1de0000.qcrypto: CE device = 0x0 IO base, CE = ffffff800eec0000 Consumer (IN) PIPE 4,\n               Producer (OUT) PIPE 5 IO base BAM = 0000000000000000\n               BAM IRQ 108 Engines Availability = 0x2011073\n[    1.464786] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 108\n[    1.465313] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    1.465555] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    1.465663] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    1.465771] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    1.465879] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    1.465992] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    1.466098] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    1.466210] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    1.466320] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    1.466443] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    1.466558] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    1.466664] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    1.466770] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    1.466880] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    1.466986] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    1.467098] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    1.467217] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    1.467332] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    1.467441] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    1.467548] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    1.470278] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    1.472925] qcom_ice_get_pdevice: found ice device fffffff5e8350000\n[    1.472928] qcom_ice_get_pdevice: matching platform device fffffff5f29e7800\n[    1.474162] register_client_adhoc:find path.src 123 dest 512\n[    1.474532] register_client_adhoc:find path.src 1 dest 757\n[    1.474794] register_client_adhoc:Client handle 24 ufshc_mem\n[    1.476690] scsi host0: ufshcd\n[    1.481589] qcom_ice 1d90000.ufsice: QC ICE 3.1.75 device found @0xffffff8009d88000\n[    1.500742] SCSI Media Changer driver v0.25 \n[    1.503608] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    1.506405] libphy: Fixed MDIO Bus: probed\n[    1.506410] tun: Universal TUN/TAP device driver, 1.6\n[    1.506412] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>\n[    1.506676] PPP generic driver version 2.4.2\n[    1.506788] PPP BSD Compression module registered\n[    1.506793] PPP Deflate Compression module registered\n[    1.506823] PPP MPPE Compression module registered\n[    1.506829] NET: Registered protocol family 24\n[    1.506853] PPTP driver version 0.8.5\n[    1.507166] CLD80211: Initializing\n[    1.507427] usbcore: registered new interface driver rtl8150\n[    1.507464] usbcore: registered new interface driver r8152\n[    1.507496] usbcore: registered new interface driver asix\n[    1.507516] usbcore: registered new interface driver ax88179_178a\n[    1.507536] usbcore: registered new interface driver cdc_ether\n[    1.507566] usbcore: registered new interface driver cdc_ncm\n[    1.507573] CHRDEV \"uio\" major number 233 goes below the dynamic allocation range\n[    1.513823] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.515243] msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    1.517294] msm-qusb-phy-v2 88e3000.qusb: invalid reg offset count\n[    1.517310] msm-qusb-phy-v2: probe of 88e3000.qusb failed with error -22\n[    1.519611] msm-dwc3 a600000.ssusb: unable to get dbm device\n[    1.521213] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    1.521218] ehci-pci: EHCI PCI platform driver\n[    1.521250] ehci-platform: EHCI generic platform driver\n[    1.521622] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    1.521641] ohci-pci: OHCI PCI platform driver\n[    1.521671] ohci-platform: OHCI generic platform driver\n[    1.522628] usbcore: registered new interface driver cdc_acm\n[    1.522632] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters\n[    1.522672] usbcore: registered new interface driver usb-storage\n[    1.522698] usbcore: registered new interface driver usb_ehset_test\n[    1.522724] usbcore: registered new interface driver lvs\n[    1.522844] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.524398] msm_sharedmem: sharedmem_register_qmi: qmi init successful\n[    1.528367] qpnp-pdphy c440000.qcom,spmi:qcom,pmi8998@2:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.529271] mousedev: PS/2 mouse device common for all mice\n[    1.529636] [NVT-ts] nvt_driver_init 2236: start\n[    1.529649] nvt_driver_init: finished\n[    1.530263] fpc1020 soc:fingerprint_fpc: found pin control fpc1020_reset_reset\n[    1.530267] fpc1020 soc:fingerprint_fpc: found pin control fpc1020_reset_active\n[    1.530310] fpc1020 soc:fingerprint_fpc: fpc1020_probe: ok\n[    1.530354] fpc1020_init OK\n[    1.530361] CHRDEV \"goodix_fp_spi\" major number 232 goes below the dynamic allocation range\n[    1.530666] gf::irq_gpio:121\n[    1.531003] input: uinput-goodix as /devices/virtual/input/input1\n[    1.531816] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm8998@0:qcom,pm8998_rtc: rtc core: registered qpnp_rtc as rtc0\n[    1.532144] i2c /dev entries driver\n[    1.532431] i2c_geni 88c000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.534403] nq-nci 1-0028: nqx_probe: probing NFCC NQxxx exited successfully\n[    1.534656] i2c_geni 894000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.535571] i2c_geni a88000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.536528] i2c_geni a88000.i2c: i2c error :-107\n[    1.536647] i2c_geni a88000.i2c: i2c error :-107\n[    1.536763] i2c_geni a88000.i2c: i2c error :-107\n[    1.536898] i2c_geni a88000.i2c: i2c error :-107\n[    1.536904] I2C PMIC: i2c_pmic_read: i2c_pmic_read failed for 3 retries, rc = -107\n[    1.536907] I2C PMIC: i2c_pmic_determine_initial_status: Couldn't read irq data rc=-107\n[    1.536911] I2C PMIC: i2c_pmic_probe: Couldn't determine initial status rc=-107\n[    1.536964] i2c_pmic: probe of 0-0008 failed with error -107\n[    1.541141] PMIC@SID0: (null) v1.1 options: 0, 0, 0, 0\n[    1.541486] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    1.541771] i2c_geni a98000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.547019] ufshcd-qcom 1d84000.ufshc: UFS manufacturer id: 0x0198\n[    1.559613] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[2, 2], pwr[FAST MODE, FAST MODE], rate = 2\n[    1.561176] scsi 0:0:0:49488: Well-known LUN    TOSHIBA  THGAF4G9N4LBAIRB 0100 PQ: 0 ANSI: 6\n[    1.563132] scsi 0:0:0:49456: Well-known LUN    TOSHIBA  THGAF4G9N4LBAIRB 0100 PQ: 0 ANSI: 6\n[    1.564982] scsi 0:0:0:49476: Well-known LUN    TOSHIBA  THGAF4G9N4LBAIRB 0100 PQ: 0 ANSI: 6\n[    1.567378] scsi 0:0:0:0: Direct-Access     TOSHIBA  THGAF4G9N4LBAIRB 0100 PQ: 0 ANSI: 6\n[    1.569511] scsi 0:0:0:1: Direct-Access     TOSHIBA  THGAF4G9N4LBAIRB 0100 PQ: 0 ANSI: 6\n[    1.571574] scsi 0:0:0:2: Direct-Access     TOSHIBA  THGAF4G9N4LBAIRB 0100 PQ: 0 ANSI: 6\n[    1.573634] scsi 0:0:0:3: Direct-Access     TOSHIBA  THGAF4G9N4LBAIRB 0100 PQ: 0 ANSI: 6\n[    1.575701] scsi 0:0:0:4: Direct-Access     TOSHIBA  THGAF4G9N4LBAIRB 0100 PQ: 0 ANSI: 6\n[    1.577765] scsi 0:0:0:5: Direct-Access     TOSHIBA  THGAF4G9N4LBAIRB 0100 PQ: 0 ANSI: 6\n[    1.580304] sd 0:0:0:0: [sda] Write Protect is off\n[    1.580309] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.580820] sd 0:0:0:0: [sda] Optimal transfer size 65536 bytes\n[    1.581730] sd 0:0:0:1: [sdb] Write Protect is off\n[    1.581757] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.582416] sd 0:0:0:1: [sdb] Optimal transfer size 65536 bytes\n[    1.583117]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21\n[    1.584012] sd 0:0:0:2: [sdc] Write Protect is off\n[    1.584017] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.584197] sd 0:0:0:2: [sdc] Optimal transfer size 65536 bytes\n[    1.585910]  sdb: sdb1 sdb2\n[    1.587197]  sdc: sdc1 sdc2\n[    1.588841] sd 0:0:0:3: [sdd] Write Protect is off\n[    1.588868] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.589168] sd 0:0:0:3: [sdd] Optimal transfer size 65536 bytes\n[    1.589299] sd 0:0:0:4: [sde] Write Protect is off\n[    1.589303] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    1.589672] sd 0:0:0:4: [sde] Optimal transfer size 65536 bytes\n[    1.592272]  sdd: sdd1 sdd2 sdd3 sdd4 sdd5\n[    1.592751]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48\n[    1.594131] sd 0:0:0:5: [sdf] Write Protect is off\n[    1.594160] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    1.594447] sd 0:0:0:5: [sdf] Optimal transfer size 65536 bytes\n[    1.596709]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6 sdf7\n[    1.793268] synaptics_rmi4_f12_init 2698: fhandler->full_addr.query_base = 0x0049\n[    1.793271] synaptics_rmi4_f12_init 2699: fhandler->full_addr.ctrl_base = 0x0012\n[    1.793274] synaptics_rmi4_f12_init 2700: size_of_query5 = 9\n[    1.793277] synaptics_rmi4_f12_init 2706: size_of_query5 = 9\n[    1.802184] synaptics_dsi_force 3-0020: synaptics_rmi4_f1a_button_map: Button map is missing in board file\n[    1.809695] input: synaptics_dsx as /devices/platform/soc/a98000.i2c/i2c-3/3-0020/input/input2\n[    1.810379] synaptics_dsi_force 3-0020: chip info: 0x53 0x33 0x33 0x33 0x30 0x00 0x00 0x00\n[    1.818810] CHRDEV \"rmi\" major number 231 goes below the dynamic allocation range\n[    1.821520] synaptics_rmi4_fwu_init: fwu->in_ub_mode = 0\n[    1.823143] iommu: Adding device aa00000.qcom,vidc:non_secure_cb to group 22\n[    1.823847] iommu: Adding device aa00000.qcom,vidc:secure_bitstream_cb to group 23\n[    1.825881] iommu: Adding device aa00000.qcom,vidc:secure_pixel_cb to group 24\n[    1.827093] iommu: Adding device aa00000.qcom,vidc:secure_non_pixel_cb to group 25\n[    1.830067] register_client_adhoc:find path.src 1 dest 590\n[    1.830644] register_client_adhoc:Client handle 25 sde_reg\n[    1.830734] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 26\n[    1.830896] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 27\n[    1.831161] register_client_adhoc:find path.src 25 dest 512\n[    1.831408] register_client_adhoc:Client handle 26 mdss_rotator\n[    1.831422] register_client_adhoc:find path.src 1 dest 590\n[    1.831617] register_client_adhoc:Client handle 27 mdss_rot_reg\n[    1.832504] No change in context(0==0), skip\n[    1.835053] sde_rotator_evtlog_create_debugfs: evtlog_status: enable:0, panic:1, dump:2\n[    1.836578] sde_rotator ae00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    1.838929] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    1.838998] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    1.841854] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 28\n[    1.842089] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 29\n[    1.842227] platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node camera_region@0x8bf00000\n[    1.842425] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 30\n[    1.842719] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 31\n[    1.843026] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_fd to group 32\n[    1.843196] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 33\n[    1.845400] register_client_adhoc:find path.src 1 dest 589\n[    1.845719] register_client_adhoc:Client handle 28 cam_ahb\n[    1.845860] register_client_adhoc:find path.src 136 dest 512\n[    1.846079] register_client_adhoc:Client handle 29 cam_hf_1_mnoc\n[    1.846298] register_client_adhoc:find path.src 146 dest 778\n[    1.846353] register_client_adhoc:Client handle 30 cam_hf_1_camnoc\n[    1.846474] register_client_adhoc:find path.src 145 dest 512\n[    1.846676] register_client_adhoc:Client handle 31 cam_hf_2_mnoc\n[    1.846884] register_client_adhoc:find path.src 147 dest 778\n[    1.846938] register_client_adhoc:Client handle 32 cam_hf_2_camnoc\n[    1.847051] register_client_adhoc:find path.src 137 dest 512\n[    1.847269] register_client_adhoc:Client handle 33 cam_sf_1_mnoc\n[    1.847467] register_client_adhoc:find path.src 148 dest 778\n[    1.847519] register_client_adhoc:Client handle 34 cam_sf_1_camnoc\n[    1.852815] synaptics_dsi_force 3-0020: fwu_read_f34_guest_serialization_partition: Lockdown info: 0x31 0x31 0x32 0x1 0x44 0x35 0x31 0x2\n[    1.857573] synaptics_dsi_force 3-0020: fwu_get_firmware_name: Choose firmware synaptics_jdi_3330_d5x.fw\n[    1.857597] synaptics_dsi_force 3-0020: fwu_start_reflash: Start of reflash process\n[    1.859451] synaptics_dsi_force 3-0020: fwu_go_nogo: Device firmware ID = 2812197\n[    1.859454] synaptics_dsi_force 3-0020: fwu_go_nogo: Image firmware ID = 2812197\n[    1.859855] CAM_ERR: CAM-IRQ-CTRL: cam_irq_controller_subscribe_irq: 268 Invalid params: bh_handler=ffffff9a0b476e3c bh=0000000000000000 bh_enq_f=ffffff9a0cf27da8\n[    1.859879] CAM_ERR: CAM-ISP: cam_vfe_bus_deinit_hw: 2933 Failed to unsubscribe error irq rc=-22\n[    1.860811] synaptics_dsi_force 3-0020: fwu_go_nogo: Device firmware Config ID = 1d410831\n[    1.860817] synaptics_dsi_force 3-0020: fwu_go_nogo: Image firmware Config ID = 1d410831\n[    1.860821] synaptics_dsi_force 3-0020: fwu_go_nogo: No need to do reflash\n[    1.860826] fwu_start_reflash: End of reflash process\n[    1.862773] CAM_ERR: CAM-IRQ-CTRL: cam_irq_controller_subscribe_irq: 268 Invalid params: bh_handler=ffffff9a0b476e3c bh=0000000000000000 bh_enq_f=ffffff9a0cf27da8\n[    1.862780] CAM_ERR: CAM-ISP: cam_vfe_bus_deinit_hw: 2933 Failed to unsubscribe error irq rc=-22\n[    1.863592] CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 536 No clk named ife_dsp_clk found. Dev vfe2\n[    1.863596] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 107 option clk get failed\n[    1.865791] CAM_ERR: CAM-IRQ-CTRL: cam_irq_controller_subscribe_irq: 268 Invalid params: bh_handler=ffffff9a0b476e3c bh=0000000000000000 bh_enq_f=ffffff9a0cf27da8\n[    1.865797] CAM_ERR: CAM-ISP: cam_vfe_bus_deinit_hw: 2933 Failed to unsubscribe error irq rc=-22\n[    1.867404] CAM_INFO: CAM-ISP: cam_isp_dev_probe: 172 Camera ISP probe complete\n[    1.869300] CAM_INFO: CAM: cam_res_mgr_probe: 681 Disable shared gpio support.\n[    1.874740] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 58 No GPIO found\n[    1.874776] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 58 No GPIO found\n[    1.877453] CAM_INFO: CAM-OIS: cam_ois_get_dt_data: 52 No GPIO found\n[    1.883954] CAM_ERR: CAM-SMMU: cam_smmu_create_add_handle_in_table: 689 Error: cam-secure already got handle 0x49eba\n[    1.886616] CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 170 Camera JPEG probe complete\n[    1.904945] SMB1355_IRQ_DISABLE: current vote is now 1 voted by PARALLEL_ENABLE_VOTER,0,previous voted 1\n[    1.908596] SMB1355: smb1355_probe: smb1355 probed successfully pl_mode=USBMID-USBMID batfet_mode=NON-STACKED_BATFET\n[    1.908927] PL_DISABLE: current vote is now 1 voted by CHG_STATE_VOTER,0,previous voted 1\n[    1.909354] DISABLE_POWER_ROLE_SWITCH: current vote is now 0 voted by DEFAULT_VOTER,0,previous voted 0\n[    1.909399] PMI: __smblib_set_prop_typec_power_role: set power_role to 0\n[    1.909404] PMI: smblib_masked_write: set 0x1368 mask:0x7,val:0x0\n[    1.909439] PMI: smblib_disable_power_role_switch_callback: power_role_switch = enabled\n[    1.911356] USB_ICL: current vote is now -22 voted by (null),-22,previous voted -22\n[    1.911362] DC_SUSPEND: current vote is now 0 voted by DEFAULT_VOTER,0,previous voted 0\n[    1.911380] BATT_PROFILE_VOTER: val: 3300000\n[    1.911382] FCC: current vote is now 3300000 voted by BATT_PROFILE_VOTER,0,previous voted 3300000\n[    1.911386] BATT_PROFILE_VOTER: val: 4395000\n[    1.911389] FV: current vote is now 4395000 voted by BATT_PROFILE_VOTER,0,previous voted 4395000\n[    1.911392] DEFAULT_VOTER: val: 950000\n[    1.911395] DC_ICL: current vote is now 950000 voted by DEFAULT_VOTER,0,previous voted 950000\n[    1.911510] HVDCP_DISABLE_INDIRECT: current vote is now 0 voted by DEFAULT_VOTER,0,previous voted 0\n[    1.911516] HVDCP_ENABLE: current vote is now 1 voted by HVDCP_INDIRECT_VOTER,0,previous voted 1\n[    1.911519] HVDCP_HW_INOV_DIS: current vote is now 0 voted by HVDCP_INDIRECT_VOTER,0,previous voted 0\n[    1.911630] PD_DISALLOWED_INDIRECT: current vote is now 1 voted by CC_DETACHED_VOTER,0,previous voted 1\n[    1.911634] PD_ALLOWED: current vote is now 0 voted by PD_DISALLOWED_INDIRECT_VOTER,0,previous voted 0\n[    1.911795] CHG_DISABLE: current vote is now 0 voted by DEFAULT_VOTER,0,previous voted 0\n[    1.911843] PMI: smblib_masked_write: set 0x1368 mask:0x7,val:0x0\n[    1.911974] HVDCP_DISABLE_INDIRECT: current vote is now 1 voted by PD_INACTIVE_VOTER,1,previous voted 1\n[    1.911977] HVDCP_ENABLE: current vote is now 0 voted by HVDCP_INDIRECT_VOTER,0,previous voted 0\n[    1.911980] HVDCP_HW_INOV_DIS: current vote is now 1 voted by HVDCP_INDIRECT_VOTER,0,previous voted 1\n[    1.912194] PMI: smblib_masked_write: set 0x1368 mask:0x18,val:0x10\n[    1.913489] AWAKE: current vote is now 0 voted by CHG_AWAKE_VOTER,0,previous voted 0\n[    1.913503] PMI: smblib_usb_plugin_locked: IRQ: usbin-plugin detached\n[    1.913618] PMI: smblib_get_prop_typec_power_role: TYPE_C_INTRPT_ENB_SOFTWARE_CTRL = 0x30\n[    1.913708] get prop 146 is not supported in usb\n[    1.913868] PMI: smblib_get_prop_typec_power_role: TYPE_C_INTRPT_ENB_SOFTWARE_CTRL = 0x30\n[    1.913943] get prop 146 is not supported in usb\n[    1.914072] smblib_set_icl_current: set icl 25000\n[    1.914099] smblib_set_icl_current: set icl 2147483647\n[    1.914304] PL_ENABLE_INDIRECT: current vote is now 0 voted by USBIN_I_VOTER,0,previous voted 0\n[    1.914533] PMI: smblib_get_prop_typec_power_role: TYPE_C_INTRPT_ENB_SOFTWARE_CTRL = 0x30\n[    1.914609] get prop 146 is not supported in usb\n[    1.925724] smblib_set_icl_current: set icl 25000\n[    1.925752] smblib_set_icl_current: set icl 2147483647\n[    1.925814] PMI: smblib_masked_write: set 0x1368 mask:0x7,val:0x0\n[    1.925911] QPNP SMB2 probed successfully usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    1.927435] QNOVO_CHG_READY: current vote is now 0 voted by USB_READY_VOTER,0,previous voted 0\n[    1.927439] QNOVO_NOT_OK: current vote is now 1 voted by CHG_READY_VOTER,0,previous voted 1\n[    1.927444] QNOVO_DISABLE: current vote is now 1 voted by ok_to_qnovo_voter,0,previous voted 1\n[    1.927469] AUTO_ESR: current vote is now 1 voted by QNOVO_OVERALL_VOTER,0,previous voted 1\n[    1.927474] QNOVO_PT_DIS: current vote is now 1 voted by QNOVO_OVERALL_VOTER,0,previous voted 1\n[    1.927480] QNOVO_AWAKE: current vote is now 0 voted by PT_RESTART_VOTER,0,previous voted 0\n[    1.929441] idtp9220 0-0061: [idt] success probe idtp922x driver\n[    1.932995] i2c_geni a88000.i2c: i2c error :-107\n[    1.933001] idtp9220 0-0061: [idt] write error: -107\n[    1.940607] PMI: smblib_get_prop_typec_power_role: TYPE_C_INTRPT_ENB_SOFTWARE_CTRL = 0x30\n[    1.940690] get prop 146 is not supported in usb\n[    1.941260] i2c_geni a88000.i2c: i2c error :-107\n[    1.941265] idtp9220 0-0061: [idt] write error: -107\n[    1.944438] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.944448] thermal thermal_zone63: failed to read out thermal zone (-61)\n[    1.944474] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.944477] thermal thermal_zone63: failed to read out thermal zone (-61)\n[    1.946152] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.946390] 17d41000.qcom,cpucc:qcom,limits-dcvs@0 supply isens_vref not found, using dummy regulator\n[    1.946464] msm_lmh_dcvs:limits_isens_vref_ldo_init Regulator:isens_vref settings read error:-22\n[    1.955416] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.955419] thermal thermal_zone63: failed to read out thermal zone (-61)\n[    1.958792] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.958795] thermal thermal_zone63: failed to read out thermal zone (-61)\n[    1.961630] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.961633] thermal thermal_zone63: failed to read out thermal zone (-61)\n[    1.964443] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    1.964446] thermal thermal_zone63: failed to read out thermal zone (-61)\n[    1.982586] device-mapper: uevent: version 1.0.3\n[    1.983111] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com\n[    1.984304] device-mapper: req-crypt: dm-req-crypt successfully initalized.\n\n[    1.984785] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in devicetree\n[    1.984833] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    1.984837] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.985027] CHRDEV \"bt\" major number 230 goes below the dynamic allocation range\n[    1.985770] sdhci: Secure Digital Host Controller Interface driver\n[    1.985773] sdhci: Copyright(c) Pierre Ossman\n[    1.985776] sdhci-pltfm: SDHCI platform and OF driver helper\n[    1.986575] haptics: qpnp_haptics_parse_buffer_dt: effect_arry:0: 62,62,190,160,0,0,0,0\n[    1.986578] haptics: qpnp_haptics_parse_buffer_dt: effect_arry:1: 62,62,62,190,190,0,0,0\n[    1.986582] haptics: qpnp_haptics_parse_buffer_dt: effect_arry:2: 62,62,62,62,190,190,160,144\n[    1.988886] haptics: qpnp_haptics_probe: haptic probe succeed\n[    1.989550] sdhci_msm 8804000.sdhci: sdhci_msm_probe: ICE device is not enabled\n[    1.990079] sdhci_msm 8804000.sdhci: Failed to get dll hsr settings from dt\n[    1.990536] register_client_adhoc:find path.src 81 dest 512\n[    1.991303] register_client_adhoc:find path.src 1 dest 608\n[    1.991565] register_client_adhoc:Client handle 35 sdhc2\n[    1.992535] usbcore: registered new interface driver usbhid\n[    1.992537] usbhid: USB HID core driver\n[    1.992673] ashmem: initialized\n[    1.992680] CHRDEV \"qcwlanstate\" major number 229 goes below the dynamic allocation range\n[    1.992799] wlan_hdd_state wlan major(229) initialized\n[    1.992803] ipa_ut ipa_ut_module_init:1046 Loading IPA test module...\n[    1.992980] qpnp_coincell_charger_show_state: enabled=Y, voltage=3200 mV, resistance=800 ohm\n[    1.995907] CHRDEV \"seemplog\" major number 228 goes below the dynamic allocation range\n[    1.996722] seemp: seemp_logk_init: SCM call failed with ret val = 0 -3 0\n[    2.008662] mmc0: SDHCI controller on 8804000.sdhci [8804000.sdhci] using 64-bit ADMA in legacy mode\n[    2.042521] bimc-bwmon 1436400.qcom,cpu-bwmon: BW HWmon governor registered.\n[    2.042565] bimc-bwmon 114a000.qcom,llcc-bwmon: BW HWmon governor registered.\n[    2.043154] arm-memlat-mon soc:qcom,cpu0-memlat-mon: Memory Latency governor registered.\n[    2.043204] arm-memlat-mon soc:qcom,cpu4-memlat-mon: Memory Latency governor registered.\n[    2.043244] arm-memlat-mon soc:qcom,cpu0-l3lat-mon: Memory Latency governor registered.\n[    2.043282] arm-memlat-mon soc:qcom,cpu4-l3lat-mon: Memory Latency governor registered.\n[    2.043331] arm-memlat-mon soc:qcom,devfreq-compute: Compute governor registered.\n[    2.045422] register_client_adhoc:find path.src 1 dest 770\n[    2.045699] register_client_adhoc:Client handle 36 soc:qcom,cpubw\n[    2.046193] register_client_adhoc:find path.src 129 dest 512\n[    2.046258] register_client_adhoc:Client handle 37 soc:qcom,llccbw\n[    2.047733] register_client_adhoc:find path.src 1 dest 512\n[    2.047945] register_client_adhoc:Client handle 38 soc:qcom,memlat-cpu0\n[    2.048202] register_client_adhoc:find path.src 1 dest 512\n[    2.048394] register_client_adhoc:Client handle 39 soc:qcom,memlat-cpu4\n[    2.048649] register_client_adhoc:find path.src 139 dest 627\n[    2.048782] register_client_adhoc:Client handle 40 soc:qcom,snoc_cnoc_keepalive\n[    2.048969] register_client_adhoc:find path.src 1 dest 512\n[    2.049169] register_client_adhoc:Client handle 41 soc:qcom,mincpubw\n[    2.049558] register_client_adhoc:find path.src 26 dest 512\n[    2.049693] register_client_adhoc:Client handle 42 soc:qcom,gpubw\n[    2.052084] CHRDEV \"sensors\" major number 227 goes below the dynamic allocation range\n[    2.052503] usbcore: registered new interface driver snd-usb-audio\n[    2.072018] tas2559 2-004c: tas2559_i2c_probe enter\n[    2.072068] tas2559 2-004c: tas2559_parse_dt, tas2559 reset gpio 14\n[    2.072073] tas2559 2-004c: tas2559_parse_dt, tas2560 reset gpio 25\n[    2.072079] tas2559 2-004c: ti,tas2559 addr=0x4c\n[    2.072082] tas2559 2-004c: ti,tas2560-addr=0x4d\n[    2.072096] tas2559 2-004c: tas2559_hw_reset\n[    2.072998] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    2.073002] thermal thermal_zone63: failed to read out thermal zone (-61)\n[    2.170056] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    2.170060] thermal thermal_zone63: failed to read out thermal zone (-61)\n[    2.170310] tas2559 2-004c: TAS2559 PGID=0xa0\n[    2.170545] tas2559 2-004c: TAS2560 PGID=0x00\n[    2.170554] tas2559 2-004c: irq = 280\n[    2.170711] tas2559 2-004c: irq = 286\n[    2.170788] tas2559 2-004c: tas2559_register_codec, enter\n[    2.170886] tas2559 2-004c: tas2559_register_misc, leave\n[    2.170889] tas2559 2-004c: tiload_driver_init_tas2559\n[    2.170891] CHRDEV \"tiload_node\" major number 225 goes below the dynamic allocation range\n[    2.170903] tas2559 2-004c: allocated Major Number: 225\n[    2.170965] tas2559 2-004c: Registered TiLoad driver, Major number: 225\n[    2.171244] wdsp_mgr_parse_dt_entries: using global wdsp fw: cpe_intl.\n[    2.173812] CHRDEV \"elliptic\" major number 224 goes below the dynamic allocation range\n[    2.174119] CHRDEV \"elliptic_us_io\" major number 223 goes below the dynamic allocation range\n[    2.174182] CHRDEV \"elliptic_us_ctrl_io\" major number 222 goes below the dynamic allocation range\n[    2.175310] CHRDEV \"avtimer\" major number 221 goes below the dynamic allocation range\n[    2.178531] CHRDEV \"wcd-dsp-glink\" major number 220 goes below the dynamic allocation range\n[    2.179286] GACT probability NOT on\n[    2.179301] Mirror/redirect action on\n[    2.179312] u32 classifier\n[    2.179313]     Actions configured\n[    2.179319] Netfilter messages via NETLINK v0.30.\n[    2.179493] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)\n[    2.179594] ctnetlink v0.93: registering with nfnetlink.\n[    2.179817] xt_time: kernel timezone is -0000\n[    2.179880] gre: GRE over IPv4 demultiplexor driver\n[    2.179882] IPv4 over IPsec tunneling driver\n[    2.180253] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    2.180346] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    2.180370] Initializing XFRM netlink socket\n[    2.180380] IPsec XFRM device driver\n[    2.180528] NET: Registered protocol family 10\n[    2.182232] mip6: Mobile IPv6\n[    2.182242] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    2.182550] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    2.182988] NET: Registered protocol family 17\n[    2.182999] NET: Registered protocol family 15\n[    2.183013] Ebtables v2.0 registered\n[    2.183098] l2tp_core: L2TP core driver, V2.0\n[    2.183104] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    2.183105] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    2.183115] l2tp_netlink: L2TP netlink interface\n[    2.183139] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    2.183141] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    2.183612] NET: Registered protocol family 27\n[    2.184168] camera_rear_ldo: supplied by pm8998_s3\n[    2.184550] camera_ldo: supplied by pm8998_s4\n[    2.194326] minidump-id not found for adsp\n[    2.194829] subsys-pil-tz 17300000.qcom,lpass: for adsp segments only will be dumped.\n[    2.196401] minidump-id not found for slpi\n[    2.196517] subsys-pil-tz 5c00000.qcom,ssc: for slpi segments only will be dumped.\n[    2.196922] minidump-id not found for cdsp\n[    2.197026] subsys-pil-tz 8300000.qcom,turing: for cdsp segments only will be dumped.\n[    2.197551] pil-q6v5-mss 4080000.qcom,mss: No pas_id found.\n[    2.197697] platform 4080000.qcom,mss:qcom,mba-mem@0: assigned reserved memory node mba_region@0x96900000\n[    2.198034] pil-q6v5-mss 4080000.qcom,mss: for modem segments only will be dumped.\n[    2.198110] pil-q6v5-mss 4080000.qcom,mss: for md_modem segments only will be dumped.\n[    2.198403] msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    2.201114] sps:BAM 0x000000000a704000 is registered.\n[    2.201304] msm-dwc3 a600000.ssusb: unable to get ssphy device\n[    2.201473] ipa_rm ipa_rm_delete_resource:155 resource does not exist\n[    2.201479] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    2.201484] ipa_rm ipa_rm_delete_resource:155 resource does not exist\n[    2.201488] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    2.203057] FG: fg_clear_dma_errors_if_any: dma_sts: 0\n[    2.204764] FG: fg_set_esr_timer: esr_charging_timer set to 0/96\n[    2.205056] FG: fg_set_esr_timer: esr_discharging_timer set to 96/96\n[    2.209837] FG_DELTA_BSOC_IRQ: current vote is now 0 voted by fg_delta_bsoc_irq,0,previous voted 0\n[    2.209840] FG_BATT_MISS_IRQ: current vote is now 0 voted by fg_batt_miss_irq,0,previous voted 0\n[    2.209895] FG: fg_gen3_probe: battery SOC:50 voltage: 4213856uV temp: 370\n[    2.210332] FG: __fg_esr_filter_config: applied ESR filter 1 values\n[    2.210720] qcom,fg-gen3 c440000.qcom,spmi:qcom,pmi8998@2:qpnp,fg: thermal_zone_of_sensor_register() failed rc:-19\n[    2.212160] bcl_peripheral:bcl_read_soc battery percentage read error:-61\n[    2.212163] FG: status_change_work: Profile load is not complete yet\n[    2.212166] FG: status_change_work: charge_status:-22 charge_type:0 charge_done:0\n[    2.230049] FG: fg_psy_get_property: unsupported property 4\n[    2.511785] FG: status_change_work: Profile load is not complete yet\n[    2.511788] FG: status_change_work: charge_status:-22 charge_type:0 charge_done:0\n[    2.515486] sps:BAM 0x000000000a704000 is registered.\n[    2.515762] register_client_adhoc:find path.src 61 dest 512\n[    2.516116] register_client_adhoc:find path.src 61 dest 676\n[    2.516296] register_client_adhoc:find path.src 1 dest 583\n[    2.516500] register_client_adhoc:Client handle 43 usb0\n[    2.517495] Registered cp15_barrier emulation handler\n[    2.517520] Registered setend emulation handler\n[    2.517543] core_ctl: Creating CPU group 0\n[    2.517545] core_ctl: Init CPU0 state\n[    2.517546] core_ctl: Init CPU1 state\n[    2.517548] core_ctl: Init CPU2 state\n[    2.517549] core_ctl: Init CPU3 state\n[    2.517685] core_ctl: Creating CPU group 4\n[    2.517687] core_ctl: Init CPU4 state\n[    2.517689] core_ctl: Init CPU5 state\n[    2.517690] core_ctl: Init CPU6 state\n[    2.517692] core_ctl: Init CPU7 state\n[    2.518104] registered taskstats version 1\n[    2.531116] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode\n[    2.531944] msm-dwc3 a600000.ssusb: DWC3 in low power mode\n[    2.552444] spss_utils [spss_init]: spss-utils driver Ver 2.0 30-Mar-2017.\n[    2.552916] spss_utils [spss_probe]: Initialization completed ok, firmware_name [spss2p].\n[    2.556672] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 34\n[    2.557238] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 35\n[    2.557663] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 36\n[    2.558077] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 37\n[    2.558474] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 38\n[    2.558864] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 39\n[    2.559252] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7 to group 40\n[    2.559633] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8 to group 41\n[    2.560081] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 42\n[    2.561115] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 43\n[    2.561264] fastrpc: probe of soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 failed with error -1\n[    2.561319] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 44\n[    2.561693] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 45\n[    2.563037] fastrpc: probe of soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 failed with error -1\n[    2.563057] CHRDEV \"adsprpc-smd\" major number 219 goes below the dynamic allocation range\n[    2.564549] iommu: Adding device 171c0000.slim:qcom,iommu_slim_ctrl_cb to group 46\n[    2.567551] iommu: Adding device 17240000.slim:qcom,iommu_slim_ctrl_cb to group 47\n[    2.570951] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    2.572445] ft5x46_i2c 3-0038: can't read imin-cc\n[    2.572448] ft5x46_i2c 3-0038: can't read short-max\n[    2.572466] ft5x46_i2c 3-0038: irq gpio request failed\n[    2.572473] ft5x46_i2c: probe of 3-0038 failed with error -16\n[    2.572560] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm8998@0:qcom,pm8998_rtc: setting system clock to 1970-03-26 23:29:20 UTC (7342160)\n[    2.574063] CAM_ERR: CAM-CRM: cam_cci_assign_fops: 412 Invalid args sd node: fffffff5e7adfc80\n[    2.574480] lpm_levels_of: idx 1 7100\n[    2.574482] lpm_levels_of: idx 2 5989\n[    2.574483] lpm_levels_of: idx 2 3933\n[    2.574555] lpm_levels_of: idx 1 1744\n[    2.574557] lpm_levels_of: idx 2 1000\n[    2.574558] lpm_levels_of: Residency < 0 for LPM\n[    2.574560] lpm_levels_of: idx 2 1000\n[    2.574674] lpm_levels: register_cluster_lpm_stats()\n[    2.574816] lpm_levels: register_cluster_lpm_stats()\n[    2.578985] rmnet_ipa3 started initialization\n[    2.579318] RNDIS_IPA module is loaded.\n[    2.580565] msm_bus_late_init: Remove handoff bw requests\n[    2.581492] ufs_card_gdsc: disabling\n[    2.581554] actuator_rear_regulator: disabling\n[    2.581556] actuator_rear_aux_regulator: disabling\n[    2.581558] camera_aux_ldo: disabling\n[    2.581560] camera_ois_regulator: disabling\n[    2.581562] disp_vddio_vreg: disabling\n[    2.581570] camera_vio_ldo: disabling\n[    2.581572] vreg_pa_p_5p0: disabling\n[    2.581574] vreg_pa_n_5p0: disabling\n[    2.581585] camera_rear_ldo: disabling\n[    2.581586] camera_ldo: disabling\n[    2.581589] ext_5v_boost: disabling\n[    2.581591] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    2.581801] ALSA device list:\n[    2.581803]   No soundcards found.\n[    2.581840] Warning: unable to open an initial console.\n[    2.582919] Freeing unused kernel memory: 6144K\n[    2.600136] FG: fg_get_batt_id: batt_id: 62000\n[    2.600169] FG_BATT_MISS_IRQ: current vote is now 1 voted by fg_batt_miss_irq,0,previous voted 1\n[    2.601341] of_batterydata_get_best_profile: d5_atl found\n[    2.601744] FG: is_profile_load_required: Battery profile integrity bit is set\n[    2.602158] FG: is_profile_load_required: Battery profile is same, not loading it\n[    2.602780] BATT_PROFILE_VOTER: val: 4400000\n[    2.602783] FV: current vote is now 4400000 voted by BATT_PROFILE_VOTER,0,previous voted 4400000\n[    2.603339] FG: fg_notify_charger: Notified charger on float voltage and FCC\n[    2.603342] FG: profile_load_work: profile loaded successfully\n[    2.603574] FG: fg_cycle_counter_update: batt_soc: 238 bucket: 7 chg_status: 2\n[    2.674394] FG: fg_soc_update_irq_handler: irq 1002 triggered\n[    2.674599] FG: fg_prime_cc_soc_sw: cc_soc_sw: 1000097581\n[    2.675085] FG: fg_adjust_ki_coeff_full_soc: Wrote ki_coeff_full_soc 0\n[    2.675132] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[    2.744265] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    2.744437] cpu1 \n[    2.744498] cpu4 \n[    2.744549] \n               Offline CPUs: \n[    2.746319] cpu1 \n[    2.750918] cpu2 \n[    2.752712] IRQ105 no longer affine to CPU2\n[    2.756169] cpu3 \n[    2.760594] cpu4 \n[    2.763270] cpu5 \n[    2.765888] cpu6 \n[    2.768485] cpu7 \n\n[    3.280566] FG: fg_battery_soc_smooth_tracking: soc:98, last_soc:98, raw_soc:98, soc_changed:0.\n[    3.280579] FG: soc_monitor_work: soc:98, raw_soc:98, c:373534, s:2\n[    3.282111] FG: fg_cycle_counter_update: batt_soc: 238 bucket: 7 chg_status: 2\n[    3.283667] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[    4.640523] of_batterydata_get_best_profile: d5_atl found\n[    4.640551] QCOM-STEPCHG: read_range_data_from_node: Count qcom,step-chg-ranges failed, rc=-22\n[    6.960543] idtp9220 0-0061: [idt] enter idtp9220_chg_detect_work\n[    6.960592] idtp9220 0-0061: [idt] dc_online 0\n[    7.781677] Sampling power every 1000 ms\n               Baseline power usage: \n[   10.000479] PL_AWAKE: current vote is now 0 voted by PL_VOTER,0,previous voted 0\n[   13.280556] FG: fg_battery_soc_smooth_tracking: soc:98, last_soc:98, raw_soc:98, soc_changed:0.\n[   13.280569] FG: soc_monitor_work: soc:98, raw_soc:98, c:228515, s:2\n[   22.243942] FG: fg_cycle_counter_update: batt_soc: 238 bucket: 7 chg_status: 2\n[   22.244253] BATT_PROFILE_VOTER: val: 3300000\n[   22.244358] JEITA_VOTER: val: 3300000\n[   22.244385] BATT_PROFILE_VOTER: val: 4400000\n[   22.244526] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[   22.244563] JEITA_VOTER: val: 4400000\n[   23.520550] FG: fg_battery_soc_smooth_tracking: soc:98, last_soc:98, raw_soc:97, soc_changed:0.\n[   23.520563] FG: soc_monitor_work: soc:98, raw_soc:97, c:225097, s:2\n[   33.760615] FG: fg_battery_soc_smooth_tracking: soc:98, last_soc:98, raw_soc:97, soc_changed:0.\n[   33.760628] FG: soc_monitor_work: soc:98, raw_soc:97, c:226074, s:2\n[   44.000557] FG: fg_battery_soc_smooth_tracking: soc:98, last_soc:98, raw_soc:97, soc_changed:0.\n[   44.000570] FG: soc_monitor_work: soc:98, raw_soc:97, c:230956, s:2\n[   54.240560] FG: fg_battery_soc_smooth_tracking: soc:98, last_soc:98, raw_soc:97, soc_changed:0.\n[   54.240573] FG: soc_monitor_work: soc:98, raw_soc:97, c:226074, s:2\n[   64.480672] tas2559 2-004c: tas2559_fw_ready:\n[   64.480687] tas2559 2-004c: tas2559_uCDSP.bin firmware is not loaded.\n[   64.481399] smb:01:1000 47 00 00 79 00 40 20 00 24 00 ff ff 00 00 03 03 00 00 00 00 00 38 02 3f 40 7f 00 00 00 00 00 00 00 00 00 00 00 06 84 03 02 00 00 00 00 00 00 00 00 00 00 00 00 79 \n[   64.481940] smb:01:1100 30 90 51 00 00 00 00 00 00 00 00 0f 0f 0f 00 0f 0f 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 05 28 \n[   64.482203] smb:01:1200 00 ff ff fe 00 3f 3f 00 00 00 00 00 00 00 00 03 03 00 01 00 \n[   64.482886] smb:01:1300 00 00 00 00 00 00 20 00 80 00 06 ff 1f 00 ff ff 00 00 00 00 00 00 00 c8 73 1b 47 00 00 00 00 08 00 1d b8 75 e5 02 04 30 7f 00 00 00 00 00 00 14 d4 00 00 00 00 \n[   64.483570] smb:01:1600 02 00 00 00 00 02 01 00 00 00 00 fe fe 00 00 00 00 00 42 00 0b 00 00 00 00 00 00 00 00 00 00 00 00 04 02 00 07 00 00 00 00 00 00 03 00 00 00 00 02 00 00 00 22 \n[   64.483883] smb:01:1700 00 7f 7f 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 01 \n[   64.483997] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[   64.484008] FG: soc_monitor_work: soc:97, raw_soc:97, c:223144, s:2\n[   64.486263] FG: fg_cycle_counter_update: batt_soc: 237 bucket: 7 chg_status: 2\n[   64.486829] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[   74.720554] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:0.\n[   74.720567] FG: soc_monitor_work: soc:97, raw_soc:97, c:220214, s:2\n[   82.912568] CPU1: Booted secondary processor [517f803c]\n[   82.922025] 933 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 403 480 576 652 748 825 902 979 1056 1132 1228 1324 1420 1516 1612 1689 1766\n               \n                300: \n[   84.960617] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:0.\n[   84.960630] FG: soc_monitor_work: soc:97, raw_soc:97, c:222656, s:2\n[   95.200476] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:0.\n[   95.200489] FG: soc_monitor_work: soc:97, raw_soc:97, c:227538, s:2\n[  105.440473] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:0.\n[  105.440487] FG: soc_monitor_work: soc:97, raw_soc:97, c:235351, s:2\n[  115.680468] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:0.\n[  115.680481] FG: soc_monitor_work: soc:97, raw_soc:97, c:229980, s:2\n[  125.920525] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  125.920538] FG: soc_monitor_work: soc:97, raw_soc:97, c:233398, s:2\n[  136.160534] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  136.160546] FG: soc_monitor_work: soc:97, raw_soc:97, c:230956, s:2\n[  146.400469] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  146.400482] FG: soc_monitor_work: soc:97, raw_soc:97, c:235351, s:2\n[  156.640471] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  156.640484] FG: soc_monitor_work: soc:97, raw_soc:97, c:230468, s:2\n[  165.603936] FG: fg_cycle_counter_update: batt_soc: 237 bucket: 7 chg_status: 2\n[  165.604514] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[  166.880473] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  166.880486] FG: soc_monitor_work: soc:97, raw_soc:97, c:229492, s:2\n[  177.120471] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  177.120484] FG: soc_monitor_work: soc:97, raw_soc:97, c:231933, s:2\n[  187.360355] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  187.360368] FG: soc_monitor_work: soc:97, raw_soc:97, c:234374, s:2\n[  197.600487] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  197.600500] FG: soc_monitor_work: soc:97, raw_soc:97, c:231933, s:2\n[  207.840469] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  207.840482] FG: soc_monitor_work: soc:97, raw_soc:97, c:231933, s:2\n[  218.080474] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  218.080487] FG: soc_monitor_work: soc:97, raw_soc:97, c:230468, s:2\n[  228.320472] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  228.320485] FG: soc_monitor_work: soc:97, raw_soc:97, c:232910, s:2\n[  238.560532] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  238.560545] FG: soc_monitor_work: soc:97, raw_soc:97, c:236816, s:2\n[  242.735862] FG: fg_delta_msoc_irq_handler: irq 1005 triggered\n[  242.736214] FG: fg_cycle_counter_update: batt_soc: 236 bucket: 7 chg_status: 2\n[  242.738780] FG: fg_cycle_counter_update: batt_soc: 236 bucket: 7 chg_status: 2\n[  242.739347] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[  248.800522] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  248.800535] FG: soc_monitor_work: soc:97, raw_soc:97, c:233398, s:2\n[  259.040473] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  259.040486] FG: soc_monitor_work: soc:97, raw_soc:97, c:237304, s:2\n[  269.280469] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  269.280482] FG: soc_monitor_work: soc:97, raw_soc:97, c:230956, s:2\n[  279.520471] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  279.520484] FG: soc_monitor_work: soc:97, raw_soc:97, c:233398, s:2\n[  288.483842] FG: fg_cycle_counter_update: batt_soc: 236 bucket: 7 chg_status: 2\n[  288.484410] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[  289.760535] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  289.760549] FG: soc_monitor_work: soc:97, raw_soc:97, c:231933, s:2\n[  300.000470] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  300.000483] FG: soc_monitor_work: soc:97, raw_soc:97, c:230956, s:2\n[  305.120579] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120623] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121700] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121722] audio_notifer_reg_service: service SSR_ADSP is in use\n[  310.240472] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  310.240485] FG: soc_monitor_work: soc:97, raw_soc:97, c:234863, s:2\n[  315.757042]  1114     3.7 C/MHz     57 mW   12.7 J   19.7 I/mJ   224.5 s\n                403: \n[  320.480477] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  320.480486] FG: soc_monitor_work: soc:97, raw_soc:97, c:230468, s:2\n[  330.720391] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  330.720402] FG: soc_monitor_work: soc:97, raw_soc:97, c:236816, s:2\n[  340.960278] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  340.960288] FG: soc_monitor_work: soc:97, raw_soc:97, c:235839, s:2\n[  351.200392] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  351.200402] FG: soc_monitor_work: soc:97, raw_soc:97, c:234863, s:2\n[  361.440391] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  361.440401] FG: soc_monitor_work: soc:97, raw_soc:97, c:235839, s:2\n[  371.680431] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  371.680441] FG: soc_monitor_work: soc:97, raw_soc:97, c:231933, s:2\n[  381.920393] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  381.920403] FG: soc_monitor_work: soc:97, raw_soc:97, c:228027, s:2\n[  392.160437] FG: fg_battery_soc_smooth_tracking: soc:97, last_soc:97, raw_soc:97, soc_changed:1.\n[  392.160447] FG: soc_monitor_work: soc:97, raw_soc:97, c:234374, s:2\n[  402.400395] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  402.400405] FG: soc_monitor_work: soc:96, raw_soc:96, c:234863, s:2\n[  402.402357] FG: fg_cycle_counter_update: batt_soc: 235 bucket: 7 chg_status: 2\n[  402.402882] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[  411.363352] FG: fg_cycle_counter_update: batt_soc: 235 bucket: 7 chg_status: 2\n[  411.363868] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[  412.640392] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:0.\n[  412.640402] FG: soc_monitor_work: soc:96, raw_soc:96, c:237304, s:2\n[  422.880390] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:0.\n[  422.880399] FG: soc_monitor_work: soc:96, raw_soc:96, c:232910, s:2\n[  433.120392] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:0.\n[  433.120402] FG: soc_monitor_work: soc:96, raw_soc:96, c:235351, s:2\n[  443.360439] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:0.\n[  443.360449] FG: soc_monitor_work: soc:96, raw_soc:96, c:234374, s:2\n[  453.600393] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:0.\n[  453.600402] FG: soc_monitor_work: soc:96, raw_soc:96, c:232421, s:2\n[  463.840393] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  463.840402] FG: soc_monitor_work: soc:96, raw_soc:96, c:231933, s:2\n[  474.080394] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  474.080404] FG: soc_monitor_work: soc:96, raw_soc:96, c:239257, s:2\n[  484.320391] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  484.320400] FG: soc_monitor_work: soc:96, raw_soc:96, c:232421, s:2\n[  491.311896]  1497     3.7 C/MHz     61 mW   10.2 J   24.5 I/mJ   167.0 s\n                480: \n[  494.560514] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  494.560522] FG: soc_monitor_work: soc:96, raw_soc:96, c:234374, s:2\n[  504.800368] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  504.800378] FG: soc_monitor_work: soc:96, raw_soc:96, c:234863, s:2\n[  515.040362] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  515.040371] FG: soc_monitor_work: soc:96, raw_soc:96, c:236816, s:2\n[  525.280363] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  525.280372] FG: soc_monitor_work: soc:96, raw_soc:96, c:236816, s:2\n[  534.243066] FG: fg_cycle_counter_update: batt_soc: 234 bucket: 7 chg_status: 2\n[  534.243511] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[  535.520459] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  535.520467] FG: soc_monitor_work: soc:96, raw_soc:96, c:233398, s:2\n[  545.760409] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  545.760417] FG: soc_monitor_work: soc:96, raw_soc:96, c:238281, s:2\n[  556.000364] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  556.000372] FG: soc_monitor_work: soc:96, raw_soc:96, c:233398, s:2\n[  556.908055] FG: fg_delta_msoc_irq_handler: irq 1005 triggered\n[  556.908326] FG: fg_cycle_counter_update: batt_soc: 234 bucket: 7 chg_status: 2\n[  556.910361] FG: fg_cycle_counter_update: batt_soc: 234 bucket: 7 chg_status: 2\n[  556.910854] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[  566.240367] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  566.240375] FG: soc_monitor_work: soc:96, raw_soc:96, c:242675, s:2\n[  576.480365] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  576.480373] FG: soc_monitor_work: soc:96, raw_soc:96, c:241699, s:2\n[  586.720364] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  586.720372] FG: soc_monitor_work: soc:96, raw_soc:96, c:238281, s:2\n[  596.960416] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  596.960425] FG: soc_monitor_work: soc:96, raw_soc:96, c:232421, s:2\n[  607.200363] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  607.200371] FG: soc_monitor_work: soc:96, raw_soc:96, c:237792, s:2\n[  617.440399] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  617.440407] FG: soc_monitor_work: soc:96, raw_soc:96, c:236816, s:2\n[  627.680377] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  627.680386] FG: soc_monitor_work: soc:96, raw_soc:96, c:238281, s:2\n[  637.920364] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  637.920372] FG: soc_monitor_work: soc:96, raw_soc:96, c:235839, s:2\n[  639.759475]  1782     3.7 C/MHz     67 mW    9.4 J   26.5 I/mJ   140.3 s\n                576: \n[  648.160373] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  648.160380] FG: soc_monitor_work: soc:96, raw_soc:96, c:232910, s:2\n[  657.123256] FG: fg_cycle_counter_update: batt_soc: 233 bucket: 7 chg_status: 2\n[  657.123689] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[  658.400334] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  658.400341] FG: soc_monitor_work: soc:96, raw_soc:96, c:236816, s:2\n[  668.640331] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  668.640338] FG: soc_monitor_work: soc:96, raw_soc:96, c:240722, s:2\n[  678.880337] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  678.880343] FG: soc_monitor_work: soc:96, raw_soc:96, c:239745, s:2\n[  689.120336] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  689.120342] FG: soc_monitor_work: soc:96, raw_soc:96, c:234863, s:2\n[  699.360364] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  699.360371] FG: soc_monitor_work: soc:96, raw_soc:96, c:235351, s:2\n[  709.600337] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  709.600344] FG: soc_monitor_work: soc:96, raw_soc:96, c:234863, s:2\n[  719.840334] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  719.840341] FG: soc_monitor_work: soc:96, raw_soc:96, c:237304, s:2\n[  730.080210] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  730.080217] FG: soc_monitor_work: soc:96, raw_soc:96, c:236816, s:2\n[  740.320364] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  740.320371] FG: soc_monitor_work: soc:96, raw_soc:96, c:236816, s:2\n[  750.560371] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  750.560378] FG: soc_monitor_work: soc:96, raw_soc:96, c:232421, s:2\n[  760.800333] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  760.800340] FG: soc_monitor_work: soc:96, raw_soc:96, c:235839, s:2\n[  765.124518]  2138     3.7 C/MHz     78 mW    9.1 J   27.5 I/mJ   116.9 s\n                652: \n[  771.040402] FG: fg_battery_soc_smooth_tracking: soc:96, last_soc:96, raw_soc:96, soc_changed:1.\n[  771.040408] FG: soc_monitor_work: soc:96, raw_soc:96, c:227538, s:2\n[  780.002878] FG: fg_cycle_counter_update: batt_soc: 232 bucket: 7 chg_status: 2\n[  780.003340] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[  781.280373] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:1.\n[  781.280379] FG: soc_monitor_work: soc:95, raw_soc:95, c:237304, s:2\n[  781.281955] FG: fg_cycle_counter_update: batt_soc: 232 bucket: 7 chg_status: 2\n[  781.282578] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[  791.520325] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:0.\n[  791.520331] FG: soc_monitor_work: soc:95, raw_soc:95, c:235839, s:2\n[  801.760349] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:0.\n[  801.760355] FG: soc_monitor_work: soc:95, raw_soc:95, c:239257, s:2\n[  812.000319] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:0.\n[  812.000325] FG: soc_monitor_work: soc:95, raw_soc:95, c:238281, s:2\n[  822.240317] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:0.\n[  822.240323] FG: soc_monitor_work: soc:95, raw_soc:95, c:234863, s:2\n[  832.480319] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:0.\n[  832.480325] FG: soc_monitor_work: soc:95, raw_soc:95, c:234374, s:2\n[  842.720318] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:1.\n[  842.720324] FG: soc_monitor_work: soc:95, raw_soc:95, c:235351, s:2\n[  852.960347] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:1.\n[  852.960353] FG: soc_monitor_work: soc:95, raw_soc:95, c:239257, s:2\n[  863.200304] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:1.\n[  863.200310] FG: soc_monitor_work: soc:95, raw_soc:95, c:237792, s:2\n[  873.440318] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:1.\n[  873.440324] FG: soc_monitor_work: soc:95, raw_soc:95, c:235839, s:2\n[  876.456483]  2424     3.7 C/MHz     69 mW    7.2 J   34.9 I/mJ   103.2 s\n                748: \n[  878.350813] FG: fg_delta_msoc_irq_handler: irq 1005 triggered\n[  878.351044] FG: fg_cycle_counter_update: batt_soc: 232 bucket: 7 chg_status: 2\n[  878.352680] FG: fg_cycle_counter_update: batt_soc: 232 bucket: 7 chg_status: 2\n[  878.353128] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[  883.680379] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:1.\n[  883.680384] FG: soc_monitor_work: soc:95, raw_soc:95, c:225585, s:2\n[  893.920302] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:1.\n[  893.920308] FG: soc_monitor_work: soc:95, raw_soc:95, c:240722, s:2\n[  904.160328] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:1.\n[  904.160334] FG: soc_monitor_work: soc:95, raw_soc:95, c:235839, s:2\n[  914.400305] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:1.\n[  914.400310] FG: soc_monitor_work: soc:95, raw_soc:95, c:236816, s:2\n[  923.362664] FG: fg_cycle_counter_update: batt_soc: 231 bucket: 7 chg_status: 2\n[  923.363107] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[  924.640301] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:1.\n[  924.640306] FG: soc_monitor_work: soc:95, raw_soc:95, c:240234, s:2\n[  934.880301] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:1.\n[  934.880306] FG: soc_monitor_work: soc:95, raw_soc:95, c:238281, s:2\n[  945.120300] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:1.\n[  945.120305] FG: soc_monitor_work: soc:95, raw_soc:95, c:245605, s:2\n[  955.360325] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:1.\n[  955.360331] FG: soc_monitor_work: soc:95, raw_soc:95, c:240234, s:2\n[  965.600300] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:1.\n[  965.600305] FG: soc_monitor_work: soc:95, raw_soc:95, c:242675, s:2\n[  974.746674]  2780     3.7 C/MHz     75 mW    6.8 J   37.0 I/mJ    89.9 s\n                825: \n[  975.840367] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:1.\n[  975.840372] FG: soc_monitor_work: soc:95, raw_soc:95, c:227538, s:2\n[  986.080311] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:1.\n[  986.080317] FG: soc_monitor_work: soc:95, raw_soc:95, c:245117, s:2\n[  996.320289] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:1.\n[  996.320293] FG: soc_monitor_work: soc:95, raw_soc:95, c:240234, s:2\n[ 1006.560313] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:1.\n[ 1006.560318] FG: soc_monitor_work: soc:95, raw_soc:95, c:244628, s:2\n[ 1016.800288] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:1.\n[ 1016.800293] FG: soc_monitor_work: soc:95, raw_soc:95, c:239257, s:2\n[ 1027.040289] FG: fg_battery_soc_smooth_tracking: soc:95, last_soc:95, raw_soc:95, soc_changed:1.\n[ 1027.040293] FG: soc_monitor_work: soc:95, raw_soc:95, c:236816, s:2\n[ 1037.280290] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1037.280294] FG: soc_monitor_work: soc:94, raw_soc:94, c:238281, s:2\n[ 1037.281699] FG: fg_cycle_counter_update: batt_soc: 230 bucket: 7 chg_status: 2\n[ 1037.282137] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1046.242654] FG: fg_cycle_counter_update: batt_soc: 230 bucket: 7 chg_status: 2\n[ 1046.243090] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1047.520288] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:0.\n[ 1047.520293] FG: soc_monitor_work: soc:94, raw_soc:94, c:239745, s:2\n[ 1057.760314] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:0.\n[ 1057.760319] FG: soc_monitor_work: soc:94, raw_soc:94, c:244140, s:2\n[ 1065.010235]  3065     3.7 C/MHz     97 mW    7.9 J   31.5 I/mJ    81.6 s\n                902: \n[ 1068.000360] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:0.\n[ 1068.000365] FG: soc_monitor_work: soc:94, raw_soc:94, c:224609, s:2\n[ 1078.240287] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:0.\n[ 1078.240293] FG: soc_monitor_work: soc:94, raw_soc:94, c:242675, s:2\n[ 1088.480280] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:0.\n[ 1088.480285] FG: soc_monitor_work: soc:94, raw_soc:94, c:243163, s:2\n[ 1098.720278] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1098.720283] FG: soc_monitor_work: soc:94, raw_soc:94, c:247070, s:2\n[ 1108.960320] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1108.960325] FG: soc_monitor_work: soc:94, raw_soc:94, c:243163, s:2\n[ 1119.200280] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1119.200284] FG: soc_monitor_work: soc:94, raw_soc:94, c:241699, s:2\n[ 1129.440280] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1129.440284] FG: soc_monitor_work: soc:94, raw_soc:94, c:242187, s:2\n[ 1139.680285] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1139.680289] FG: soc_monitor_work: soc:94, raw_soc:94, c:244140, s:2\n[ 1148.257913]  3350     3.7 C/MHz     86 mW    6.4 J   39.0 I/mJ    74.6 s\n                979: \n[ 1149.920352] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1149.920356] FG: soc_monitor_work: soc:94, raw_soc:94, c:226074, s:2\n[ 1160.160295] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1160.160299] FG: soc_monitor_work: soc:94, raw_soc:94, c:244628, s:2\n[ 1169.122586] FG: fg_cycle_counter_update: batt_soc: 229 bucket: 7 chg_status: 2\n[ 1169.123018] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1170.400323] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1170.400327] FG: soc_monitor_work: soc:94, raw_soc:94, c:247070, s:2\n[ 1180.640272] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1180.640276] FG: soc_monitor_work: soc:94, raw_soc:94, c:249023, s:2\n[ 1190.880271] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1190.880275] FG: soc_monitor_work: soc:94, raw_soc:94, c:243163, s:2\n[ 1198.296528] FG: fg_delta_msoc_irq_handler: irq 1005 triggered\n[ 1198.296890] FG: fg_cycle_counter_update: batt_soc: 229 bucket: 7 chg_status: 2\n[ 1198.298342] FG: fg_cycle_counter_update: batt_soc: 229 bucket: 7 chg_status: 2\n[ 1198.298762] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1201.120276] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1201.120280] FG: soc_monitor_work: soc:94, raw_soc:94, c:242675, s:2\n[ 1211.360293] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1211.360298] FG: soc_monitor_work: soc:94, raw_soc:94, c:243163, s:2\n[ 1221.600270] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1221.600274] FG: soc_monitor_work: soc:94, raw_soc:94, c:244628, s:2\n[ 1225.492370]  3635     3.7 C/MHz     97 mW    6.7 J   37.6 I/mJ    68.8 s\n               1056: \n[ 1231.840361] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1231.840366] FG: soc_monitor_work: soc:94, raw_soc:94, c:235351, s:2\n[ 1242.080270] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1242.080274] FG: soc_monitor_work: soc:94, raw_soc:94, c:247070, s:2\n[ 1252.320264] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1252.320268] FG: soc_monitor_work: soc:94, raw_soc:94, c:247558, s:2\n[ 1262.560289] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1262.560294] FG: soc_monitor_work: soc:94, raw_soc:94, c:250488, s:2\n[ 1272.800264] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1272.800268] FG: soc_monitor_work: soc:94, raw_soc:94, c:249511, s:2\n[ 1283.040265] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1283.040269] FG: soc_monitor_work: soc:94, raw_soc:94, c:253906, s:2\n[ 1292.002490] FG: fg_cycle_counter_update: batt_soc: 229 bucket: 7 chg_status: 2\n[ 1292.002912] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1293.280264] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1293.280268] FG: soc_monitor_work: soc:94, raw_soc:94, c:249999, s:2\n[ 1297.718154]  3921     3.7 C/MHz    111 mW    7.1 J   35.3 I/mJ    63.8 s\n               1132: \n[ 1303.520338] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1303.520342] FG: soc_monitor_work: soc:94, raw_soc:94, c:228515, s:2\n[ 1313.760278] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1313.760282] FG: soc_monitor_work: soc:94, raw_soc:94, c:253906, s:2\n[ 1324.000259] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1324.000263] FG: soc_monitor_work: soc:94, raw_soc:94, c:256347, s:2\n[ 1334.240258] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1334.240262] FG: soc_monitor_work: soc:94, raw_soc:94, c:256347, s:2\n[ 1344.480258] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1344.480262] FG: soc_monitor_work: soc:94, raw_soc:94, c:254882, s:2\n[ 1354.720275] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1354.720279] FG: soc_monitor_work: soc:94, raw_soc:94, c:252441, s:2\n[ 1364.960278] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1364.960281] FG: soc_monitor_work: soc:94, raw_soc:94, c:249023, s:2\n[ 1365.933732]  4205     3.7 C/MHz    127 mW    7.5 J   33.2 I/mJ    59.5 s\n               1228: \n[ 1375.200254] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1375.200259] FG: soc_monitor_work: soc:94, raw_soc:94, c:250488, s:2\n[ 1385.440254] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1385.440258] FG: soc_monitor_work: soc:94, raw_soc:94, c:254394, s:2\n[ 1395.680257] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1395.680260] FG: soc_monitor_work: soc:94, raw_soc:94, c:255370, s:2\n[ 1405.920252] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1405.920255] FG: soc_monitor_work: soc:94, raw_soc:94, c:250488, s:2\n[ 1416.160167] FG: fg_battery_soc_smooth_tracking: soc:94, last_soc:94, raw_soc:94, soc_changed:1.\n[ 1416.160171] FG: soc_monitor_work: soc:94, raw_soc:94, c:252929, s:2\n[ 1426.400255] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1.\n[ 1426.400258] FG: soc_monitor_work: soc:93, raw_soc:93, c:252929, s:2\n[ 1426.401569] FG: fg_cycle_counter_update: batt_soc: 228 bucket: 7 chg_status: 2\n[ 1426.401974] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1429.139942]  4562     3.7 C/MHz    132 mW    7.2 J   34.6 I/mJ    54.8 s\n               1324: \n[ 1435.362491] FG: fg_cycle_counter_update: batt_soc: 228 bucket: 7 chg_status: 2\n[ 1435.362955] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1436.640325] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:0.\n[ 1436.640329] FG: soc_monitor_work: soc:93, raw_soc:93, c:228515, s:2\n[ 1446.880249] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:0.\n[ 1446.880253] FG: soc_monitor_work: soc:93, raw_soc:93, c:259765, s:2\n[ 1457.120247] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:0.\n[ 1457.120251] FG: soc_monitor_work: soc:93, raw_soc:93, c:256835, s:2\n[ 1467.360264] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:0.\n[ 1467.360267] FG: soc_monitor_work: soc:93, raw_soc:93, c:257812, s:2\n[ 1477.600266] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:0.\n[ 1477.600269] FG: soc_monitor_work: soc:93, raw_soc:93, c:257812, s:2\n[ 1487.840254] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1.\n[ 1487.840257] FG: soc_monitor_work: soc:93, raw_soc:93, c:258788, s:2\n[ 1488.335089]  4918     3.7 C/MHz    156 mW    8.0 J   31.4 I/mJ    50.8 s\n               1420: \n[ 1498.080255] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1.\n[ 1498.080259] FG: soc_monitor_work: soc:93, raw_soc:93, c:259765, s:2\n[ 1508.320243] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1.\n[ 1508.320246] FG: soc_monitor_work: soc:93, raw_soc:93, c:262206, s:2\n[ 1518.560260] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1.\n[ 1518.560263] FG: soc_monitor_work: soc:93, raw_soc:93, c:262695, s:2\n[ 1519.692580] FG: fg_delta_msoc_irq_handler: irq 1005 triggered\n[ 1519.692778] FG: fg_cycle_counter_update: batt_soc: 227 bucket: 7 chg_status: 2\n[ 1519.694175] FG: fg_cycle_counter_update: batt_soc: 227 bucket: 7 chg_status: 2\n[ 1519.694574] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1528.800245] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1.\n[ 1528.800248] FG: soc_monitor_work: soc:93, raw_soc:93, c:262206, s:2\n[ 1539.040243] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1.\n[ 1539.040246] FG: soc_monitor_work: soc:93, raw_soc:93, c:259765, s:2\n[ 1544.524000]  5275     3.7 C/MHz    156 mW    7.4 J   33.8 I/mJ    47.4 s\n               1516: \n[ 1549.280322] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1.\n[ 1549.280324] FG: soc_monitor_work: soc:93, raw_soc:93, c:224609, s:2\n[ 1558.242225] FG: fg_cycle_counter_update: batt_soc: 227 bucket: 7 chg_status: 2\n[ 1558.242620] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1559.520239] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1.\n[ 1559.520242] FG: soc_monitor_work: soc:93, raw_soc:93, c:261718, s:2\n[ 1569.760254] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1.\n[ 1569.760257] FG: soc_monitor_work: soc:93, raw_soc:93, c:264160, s:2\n[ 1580.000239] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1.\n[ 1580.000242] FG: soc_monitor_work: soc:93, raw_soc:93, c:259765, s:2\n[ 1590.240239] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1.\n[ 1590.240242] FG: soc_monitor_work: soc:93, raw_soc:93, c:261718, s:2\n[ 1597.703619]  5631     3.7 C/MHz    191 mW    8.5 J   29.4 I/mJ    44.4 s\n               1612: \n[ 1600.480333] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1.\n[ 1600.480336] FG: soc_monitor_work: soc:93, raw_soc:93, c:222656, s:2\n[ 1610.720238] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1.\n[ 1610.720241] FG: soc_monitor_work: soc:93, raw_soc:93, c:264160, s:2\n[ 1620.960251] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1.\n[ 1620.960253] FG: soc_monitor_work: soc:93, raw_soc:93, c:262695, s:2\n[ 1631.200259] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1.\n[ 1631.200262] FG: soc_monitor_work: soc:93, raw_soc:93, c:264160, s:2\n[ 1641.440236] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1.\n[ 1641.440239] FG: soc_monitor_work: soc:93, raw_soc:93, c:266601, s:2\n[ 1647.879506]  5988     3.7 C/MHz    168 mW    7.0 J   35.7 I/mJ    41.8 s\n               1689: \n[ 1651.680315] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1.\n[ 1651.680317] FG: soc_monitor_work: soc:93, raw_soc:93, c:224609, s:2\n[ 1661.920234] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1.\n[ 1661.920237] FG: soc_monitor_work: soc:93, raw_soc:93, c:268554, s:2\n[ 1672.160248] FG: fg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1.\n[ 1672.160250] FG: soc_monitor_work: soc:93, raw_soc:93, c:267577, s:2\n[ 1681.122228] FG: fg_cycle_counter_update: batt_soc: 226 bucket: 7 chg_status: 2\n[ 1681.122712] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1682.400234] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1682.400236] FG: soc_monitor_work: soc:92, raw_soc:92, c:267577, s:2\n[ 1682.401347] FG: fg_cycle_counter_update: batt_soc: 226 bucket: 7 chg_status: 2\n[ 1682.401821] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1692.640233] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:0.\n[ 1692.640236] FG: soc_monitor_work: soc:92, raw_soc:92, c:264160, s:2\n[ 1696.049431]  6273     3.7 C/MHz    176 mW    7.0 J   35.7 I/mJ    39.9 s\n               1766: \n[ 1702.880311] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:0.\n[ 1702.880314] FG: soc_monitor_work: soc:92, raw_soc:92, c:223632, s:2\n[ 1713.120232] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:0.\n[ 1713.120235] FG: soc_monitor_work: soc:92, raw_soc:92, c:267577, s:2\n[ 1723.360257] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:0.\n[ 1723.360260] FG: soc_monitor_work: soc:92, raw_soc:92, c:264648, s:2\n[ 1733.600231] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:0.\n[ 1733.600234] FG: soc_monitor_work: soc:92, raw_soc:92, c:266601, s:2\n[ 1743.228760] CPU4: Booted secondary processor [516f802d]\n[ 1743.237098]  6558     3.7 C/MHz    193 mW    7.4 J   33.9 I/mJ    38.1 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 825 902 979 1056 1209 1286 1363 1459 1536 1612 1689 1766 1843 1920 1996 2092 2169 2246 2323 2400 2476 2553 2649 2803\n               \n                825: \n[ 1743.840562] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1743.840575] FG: soc_monitor_work: soc:92, raw_soc:92, c:222656, s:2\n[ 1754.080569] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1754.080582] FG: soc_monitor_work: soc:92, raw_soc:92, c:267577, s:2\n[ 1764.320564] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1764.320576] FG: soc_monitor_work: soc:92, raw_soc:92, c:270019, s:2\n[ 1774.560643] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1774.560656] FG: soc_monitor_work: soc:92, raw_soc:92, c:268554, s:2\n[ 1784.800566] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1784.800579] FG: soc_monitor_work: soc:92, raw_soc:92, c:269531, s:2\n[ 1795.040565] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1795.040578] FG: soc_monitor_work: soc:92, raw_soc:92, c:270019, s:2\n[ 1800.524462]  5141     6.2 C/MHz    186 mW    9.1 J   27.6 I/mJ    48.6 s\n                902: \n[ 1804.004134] FG: fg_cycle_counter_update: batt_soc: 225 bucket: 7 chg_status: 2\n[ 1804.004710] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1805.280557] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1805.280570] FG: soc_monitor_work: soc:92, raw_soc:92, c:225097, s:2\n[ 1815.520567] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1815.520581] FG: soc_monitor_work: soc:92, raw_soc:92, c:272460, s:2\n[ 1825.760627] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1825.760641] FG: soc_monitor_work: soc:92, raw_soc:92, c:269531, s:2\n[ 1830.981107] FG: fg_delta_msoc_irq_handler: irq 1005 triggered\n[ 1830.981467] FG: fg_cycle_counter_update: batt_soc: 225 bucket: 7 chg_status: 2\n[ 1830.984098] FG: fg_cycle_counter_update: batt_soc: 225 bucket: 7 chg_status: 2\n[ 1830.984671] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1836.000565] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1836.000578] FG: soc_monitor_work: soc:92, raw_soc:92, c:270995, s:2\n[ 1846.240615] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1846.240628] FG: soc_monitor_work: soc:92, raw_soc:92, c:268554, s:2\n[ 1853.801239]  5625     6.2 C/MHz    197 mW    8.8 J   28.6 I/mJ    44.5 s\n                979: \n[ 1856.480582] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1856.480595] FG: soc_monitor_work: soc:92, raw_soc:92, c:225585, s:2\n[ 1866.720565] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1866.720578] FG: soc_monitor_work: soc:92, raw_soc:92, c:276855, s:2\n[ 1876.960628] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1876.960641] FG: soc_monitor_work: soc:92, raw_soc:92, c:275878, s:2\n[ 1887.200565] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1887.200578] FG: soc_monitor_work: soc:92, raw_soc:92, c:270019, s:2\n[ 1897.441186] smb:01:1000 47 00 00 79 00 40 20 00 24 00 ff ff 00 00 03 03 00 00 00 00 00 38 02 3f 40 7f 00 00 00 00 00 00 00 00 00 00 00 06 84 03 02 00 00 00 00 00 00 00 00 00 00 00 00 79 \n[ 1897.441727] smb:01:1100 34 13 c2 00 00 00 00 00 00 00 00 0f 0f 0f 00 0f 0f 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 05 28 \n[ 1897.441993] smb:01:1200 00 ff ff fe 00 3f 3f 00 00 00 00 00 00 00 00 03 03 00 01 00 \n[ 1897.442679] smb:01:1300 00 00 00 00 00 00 20 80 00 00 06 ff 1f 00 ff ff 00 00 00 00 00 00 00 c8 73 1b 47 00 00 00 00 08 00 1d b8 75 e5 02 04 30 7f 00 00 00 00 00 00 14 d4 00 00 00 00 \n[ 1897.443365] smb:01:1600 02 00 00 00 00 02 01 00 00 00 00 fe fe 00 00 00 00 00 42 00 0b 00 00 00 00 00 00 00 00 00 00 00 00 04 02 00 07 00 00 00 00 00 00 03 00 00 00 00 02 00 00 00 22 \n[ 1897.443679] smb:01:1700 00 7f 7f 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 01 \n[ 1897.443784] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1897.443795] FG: soc_monitor_work: soc:92, raw_soc:92, c:272460, s:2\n[ 1903.065655]  6098     6.2 C/MHz    234 mW    9.6 J   26.0 I/mJ    41.0 s\n               1056: \n[ 1907.680568] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1907.680581] FG: soc_monitor_work: soc:92, raw_soc:92, c:227050, s:2\n[ 1917.920583] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1917.920597] FG: soc_monitor_work: soc:92, raw_soc:92, c:277343, s:2\n[ 1926.884058] FG: fg_cycle_counter_update: batt_soc: 224 bucket: 7 chg_status: 2\n[ 1926.884633] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1928.160626] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1928.160639] FG: soc_monitor_work: soc:92, raw_soc:92, c:280761, s:2\n[ 1938.400566] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1938.400579] FG: soc_monitor_work: soc:92, raw_soc:92, c:274902, s:2\n[ 1948.640566] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1948.640579] FG: soc_monitor_work: soc:92, raw_soc:92, c:278808, s:2\n[ 1949.320234]  6561     6.2 C/MHz    216 mW    8.2 J   30.3 I/mJ    38.1 s\n               1209: \n[ 1958.880567] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1958.880581] FG: soc_monitor_work: soc:92, raw_soc:92, c:263671, s:2\n[ 1969.120635] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1969.120647] FG: soc_monitor_work: soc:92, raw_soc:92, c:285644, s:2\n[ 1979.360628] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1979.360642] FG: soc_monitor_work: soc:92, raw_soc:92, c:284179, s:2\n[ 1989.600562] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1989.600575] FG: soc_monitor_work: soc:92, raw_soc:92, c:284667, s:2\n[ 1991.563962]  7517     6.2 C/MHz    246 mW    8.2 J   30.5 I/mJ    33.3 s\n               1286: \n[ 1999.840571] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 1999.840585] FG: soc_monitor_work: soc:92, raw_soc:92, c:241699, s:2\n[ 2010.080569] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 2010.080583] FG: soc_monitor_work: soc:92, raw_soc:92, c:295410, s:2\n[ 2020.320561] FG: fg_battery_soc_smooth_tracking: soc:92, last_soc:92, raw_soc:92, soc_changed:1.\n[ 2020.320574] FG: soc_monitor_work: soc:92, raw_soc:92, c:293945, s:2\n[ 2029.284669] FG: fg_cycle_counter_update: batt_soc: 223 bucket: 6 chg_status: 2\n[ 2029.285680] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 2030.560631] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:1.\n[ 2030.560644] FG: soc_monitor_work: soc:91, raw_soc:91, c:292968, s:2\n[ 2030.562885] FG: fg_cycle_counter_update: batt_soc: 223 bucket: 6 chg_status: 2\n[ 2030.563848] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 2031.802872]  7976     6.2 C/MHz    310 mW    9.7 J   25.7 I/mJ    31.4 s\n               1363: \n[ 2040.800571] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:0.\n[ 2040.800585] FG: soc_monitor_work: soc:91, raw_soc:91, c:298827, s:2\n[ 2051.040573] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:0.\n[ 2051.040586] FG: soc_monitor_work: soc:91, raw_soc:91, c:297851, s:2\n[ 2061.280569] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:0.\n[ 2061.280582] FG: soc_monitor_work: soc:91, raw_soc:91, c:301269, s:2\n[ 2070.035002]  8465     6.2 C/MHz    310 mW    9.2 J   27.3 I/mJ    29.5 s\n               1459: \n[ 2071.520563] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:0.\n[ 2071.520577] FG: soc_monitor_work: soc:91, raw_soc:91, c:227050, s:2\n[ 2081.760629] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:0.\n[ 2081.760643] FG: soc_monitor_work: soc:91, raw_soc:91, c:303710, s:2\n[ 2092.000618] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:1.\n[ 2092.000632] FG: soc_monitor_work: soc:91, raw_soc:91, c:304199, s:2\n[ 2102.242439] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:1.\n[ 2102.242452] FG: soc_monitor_work: soc:91, raw_soc:91, c:306640, s:2\n[ 2106.259521]  9086     6.2 C/MHz    340 mW    9.4 J   26.7 I/mJ    27.5 s\n               1536: \n[ 2112.480562] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:1.\n[ 2112.480575] FG: soc_monitor_work: soc:91, raw_soc:91, c:228515, s:2\n[ 2117.573106] FG: fg_delta_msoc_irq_handler: irq 1005 triggered\n[ 2117.573475] FG: fg_cycle_counter_update: batt_soc: 222 bucket: 6 chg_status: 2\n[ 2117.576176] FG: fg_cycle_counter_update: batt_soc: 222 bucket: 6 chg_status: 2\n[ 2117.576749] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 2122.720565] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:1.\n[ 2122.720578] FG: soc_monitor_work: soc:91, raw_soc:91, c:308105, s:2\n[ 2132.960630] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:1.\n[ 2132.960643] FG: soc_monitor_work: soc:91, raw_soc:91, c:311034, s:2\n[ 2141.481891]  9557     6.2 C/MHz    357 mW    9.3 J   26.8 I/mJ    26.2 s\n               1612: \n[ 2143.200576] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:1.\n[ 2143.200589] FG: soc_monitor_work: soc:91, raw_soc:91, c:227538, s:2\n[ 2152.164406] FG: fg_cycle_counter_update: batt_soc: 222 bucket: 6 chg_status: 2\n[ 2152.164981] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 2153.440567] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:1.\n[ 2153.440580] FG: soc_monitor_work: soc:91, raw_soc:91, c:317382, s:2\n[ 2163.680291] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:1.\n[ 2163.680304] FG: soc_monitor_work: soc:91, raw_soc:91, c:448241, s:2\n[ 2173.920565] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:1.\n[ 2173.920577] FG: soc_monitor_work: soc:91, raw_soc:91, c:315429, s:2\n[ 2174.696030] 10018     6.2 C/MHz    381 mW    9.5 J   26.2 I/mJ    25.0 s\n               1689: \n[ 2184.160633] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:1.\n[ 2184.160647] FG: soc_monitor_work: soc:91, raw_soc:91, c:324706, s:2\n[ 2194.400566] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:1.\n[ 2194.400579] FG: soc_monitor_work: soc:91, raw_soc:91, c:322265, s:2\n[ 2204.640565] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:1.\n[ 2204.640579] FG: soc_monitor_work: soc:91, raw_soc:91, c:323242, s:2\n[ 2206.906724] 10476     6.2 C/MHz    407 mW    9.7 J   25.7 I/mJ    23.9 s\n               1766: \n[ 2214.880634] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:1.\n[ 2214.880647] FG: soc_monitor_work: soc:91, raw_soc:91, c:230468, s:2\n[ 2225.120570] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:1.\n[ 2225.120583] FG: soc_monitor_work: soc:91, raw_soc:91, c:332031, s:2\n[ 2235.360627] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:1.\n[ 2235.360640] FG: soc_monitor_work: soc:91, raw_soc:91, c:330566, s:2\n[ 2238.114785] 10995     6.2 C/MHz    427 mW    9.7 J   25.7 I/mJ    22.8 s\n               1843: \n[ 2245.600564] FG: fg_battery_soc_smooth_tracking: soc:91, last_soc:91, raw_soc:91, soc_changed:1.\n[ 2245.600577] FG: soc_monitor_work: soc:91, raw_soc:91, c:225585, s:2\n[ 2254.564247] FG: fg_cycle_counter_update: batt_soc: 221 bucket: 6 chg_status: 2\n[ 2254.564822] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 2255.840572] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2255.840585] FG: soc_monitor_work: soc:90, raw_soc:90, c:349609, s:2\n[ 2255.843052] FG: fg_cycle_counter_update: batt_soc: 221 bucket: 6 chg_status: 2\n[ 2255.844000] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 2266.080570] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:0.\n[ 2266.080583] FG: soc_monitor_work: soc:90, raw_soc:90, c:349609, s:2\n[ 2268.321764] 11468     6.2 C/MHz    519 mW   11.3 J   22.1 I/mJ    21.8 s\n               1920: \n[ 2276.320565] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:0.\n[ 2276.320578] FG: soc_monitor_work: soc:90, raw_soc:90, c:228515, s:2\n[ 2286.560630] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:0.\n[ 2286.560644] FG: soc_monitor_work: soc:90, raw_soc:90, c:351562, s:2\n[ 2296.800564] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:0.\n[ 2296.800576] FG: soc_monitor_work: soc:90, raw_soc:90, c:358886, s:2\n[ 2297.525134] 11951     6.2 C/MHz    505 mW   10.6 J   23.7 I/mJ    20.9 s\n               1996: \n[ 2307.040575] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:0.\n[ 2307.040589] FG: soc_monitor_work: soc:90, raw_soc:90, c:360351, s:2\n[ 2317.280584] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2317.280597] FG: soc_monitor_work: soc:90, raw_soc:90, c:357421, s:2\n[ 2326.728272] 12396     6.2 C/MHz    529 mW   10.7 J   23.4 I/mJ    20.2 s\n               2092: \n[ 2327.520560] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2327.520573] FG: soc_monitor_work: soc:90, raw_soc:90, c:229492, s:2\n[ 2337.760682] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2337.760696] FG: soc_monitor_work: soc:90, raw_soc:90, c:375976, s:2\n[ 2348.000569] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2348.000583] FG: soc_monitor_work: soc:90, raw_soc:90, c:383788, s:2\n[ 2354.926507] 13037     6.2 C/MHz    635 mW   12.2 J   20.5 I/mJ    19.2 s\n               2169: \n[ 2356.964562] FG: fg_cycle_counter_update: batt_soc: 220 bucket: 6 chg_status: 2\n[ 2356.965585] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 2358.240561] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2358.240574] FG: soc_monitor_work: soc:90, raw_soc:90, c:229492, s:2\n[ 2368.480569] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2368.480582] FG: soc_monitor_work: soc:90, raw_soc:90, c:381835, s:2\n[ 2378.720572] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2378.720585] FG: soc_monitor_work: soc:90, raw_soc:90, c:389648, s:2\n[ 2382.122330] 13497     6.2 C/MHz    674 mW   12.5 J   20.0 I/mJ    18.5 s\n               2246: \n[ 2386.782357] FG: fg_delta_msoc_irq_handler: irq 1005 triggered\n[ 2386.782722] FG: fg_cycle_counter_update: batt_soc: 220 bucket: 6 chg_status: 2\n[ 2386.785362] FG: fg_cycle_counter_update: batt_soc: 220 bucket: 6 chg_status: 2\n[ 2386.785936] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 2388.960625] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2388.960638] FG: soc_monitor_work: soc:90, raw_soc:90, c:227538, s:2\n[ 2399.200571] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2399.200585] FG: soc_monitor_work: soc:90, raw_soc:90, c:397949, s:2\n[ 2408.315794] 13949     6.2 C/MHz    688 mW   12.3 J   20.2 I/mJ    17.9 s\n               2323: \n[ 2409.440566] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2409.440579] FG: soc_monitor_work: soc:90, raw_soc:90, c:232910, s:2\n[ 2419.680567] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2419.680581] FG: soc_monitor_work: soc:90, raw_soc:90, c:422851, s:2\n[ 2429.920566] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2429.920579] FG: soc_monitor_work: soc:90, raw_soc:90, c:423827, s:2\n[ 2434.507819] 14486     6.2 C/MHz    801 mW   13.8 J   18.1 I/mJ    17.3 s\n               2400: \n[ 2440.160628] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2440.160641] FG: soc_monitor_work: soc:90, raw_soc:90, c:234374, s:2\n[ 2450.400566] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2450.400580] FG: soc_monitor_work: soc:90, raw_soc:90, c:437011, s:2\n[ 2459.364441] FG: fg_cycle_counter_update: batt_soc: 219 bucket: 6 chg_status: 2\n[ 2459.365018] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 2459.697968] 14937     6.2 C/MHz    880 mW   14.7 J   17.0 I/mJ    16.8 s\n               2476: \n[ 2460.640620] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2460.640633] FG: soc_monitor_work: soc:90, raw_soc:90, c:238281, s:2\n[ 2470.880301] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2470.880315] FG: soc_monitor_work: soc:90, raw_soc:90, c:439941, s:2\n[ 2481.120565] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2481.120578] FG: soc_monitor_work: soc:90, raw_soc:90, c:456542, s:2\n[ 2484.885876] 15440     6.2 C/MHz    893 mW   14.5 J   17.3 I/mJ    16.2 s\n               2553: \n[ 2491.360627] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2491.360640] FG: soc_monitor_work: soc:90, raw_soc:90, c:235351, s:2\n[ 2501.600570] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2501.600584] FG: soc_monitor_work: soc:90, raw_soc:90, c:438476, s:2\n[ 2509.072934] 15855     6.2 C/MHz    859 mW   13.6 J   18.4 I/mJ    15.8 s\n               2649: \n[ 2511.840562] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2511.840576] FG: soc_monitor_work: soc:90, raw_soc:90, c:239257, s:2\n[ 2522.080573] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2522.080587] FG: soc_monitor_work: soc:90, raw_soc:90, c:468749, s:2\n[ 2532.257686] 16799     6.3 C/MHz    997 mW   14.9 J   16.8 I/mJ    14.9 s\n               2803: \n[ 2532.320567] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2532.320580] FG: soc_monitor_work: soc:90, raw_soc:90, c:470214, s:2\n[ 2542.560630] FG: fg_battery_soc_smooth_tracking: soc:90, last_soc:90, raw_soc:90, soc_changed:1.\n[ 2542.560643] FG: soc_monitor_work: soc:90, raw_soc:90, c:550780, s:2\n[ 2552.800576] FG: fg_battery_soc_smooth_tracking: soc:89, last_soc:89, raw_soc:89, soc_changed:1.\n[ 2552.800589] FG: soc_monitor_work: soc:89, raw_soc:89, c:540527, s:2\n[ 2552.803004] FG: fg_cycle_counter_update: batt_soc: 218 bucket: 6 chg_status: 2\n[ 2552.803579] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 2555.467676] 17425     6.2 C/MHz   1298 mW   18.6 J   13.4 I/mJ    14.4 s\n               \n               \n               Benchmark finished!\n[ 2555.486500] \n               real\t42m32.887s\n               user\t35m14.077s\n               sys\t0m2.039s\n"
  },
  {
    "path": "results/sdm845/main/post_bench_interrupts.txt",
    "content": "            CPU0       \n   4:      11648   PDC-GIC   19 Level     arch_timer\n   6:     247655   PDC-GIC   38 Level     arch_mem_timer\n   7:          0   PDC-GIC  115 Edge      msm_drm\n   9:          0   PDC-GIC  636 Level     i2c_geni\n  10:          0   PDC-GIC  638 Level     i2c_geni\n  12:        597   PDC-GIC  387 Level     i2c_geni\n  13:          0   PDC-GIC  391 Level     i2c_geni\n  14:          0   PDC-GIC  385 Level     spi_geni\n  25:          1  pmic_arb 219152585 Level     i2c_pmic_stat_irq\n  29:          0  pmic_arb 1111490819 Edge      pm8005_tz\n  32:          0  pmic_arb 574619866 Edge      qcom,temp-alarm\n  33:          0  pmic_arb 558891221 Edge      ptrain-done\n  34:          0  pmic_arb 560988375 Edge      sig-tx\n  35:          0  pmic_arb 561053911 Edge      sig-rx\n  36:          0  pmic_arb 561119447 Edge      msg-tx\n  37:          0  pmic_arb 561184983 Edge      msg-rx\n  38:          0  pmic_arb 561250519 Edge      msg-tx-failed\n  44:          0  pmic_arb 8388780 Edge      qpnp_kpdpwr_status\n  45:          0  pmic_arb 8454316 Edge      qpnp_resin_status\n  47:          0  pmic_arb 8716460 Edge      qpnp_kpdpwr_resin_bark\n  48:          0  pmic_arb 37748909 Edge      pm8998_tz\n  49:         19  pmic_arb 51380399 Edge      qpnp_vadc_interrupt\n  50:          0  pmic_arb 54526128 Edge      qpnp_adc_tm_interrupt\n  51:          0  pmic_arb 745537772 Edge      vendor:extcon_usb1\n  57:          0  pmic_arb 561316055 Edge      msg-tx-discarded\n  62:          0  pmic_arb 206569662 Edge      volume_up\n  64:          0  pmic_arb 561381591 Edge      msg-rx-discarded\n  65:          0  pmic_arb 606077149 Edge      bcl-high-ibat\n  67:          0  pmic_arb 606208221 Edge      bcl-low-vbat\n  70:          1  pmic_arb 1031864573 Edge      qpnp_wled_ovp_irq\n  71:          0  pmic_arb 1031930109 Edge      qpnp_wled_sc_irq\n  72:          0  pmic_arb 1026556156 Edge      qpnp_flash_led_fault_irq\n  73:          0  pmic_arb 1026752764 Edge      qpnp_flash_led_all_ramp_down_done_irq\n  74:          0  pmic_arb 1026818300 Edge      qpnp_flash_led_all_ramp_up_done_irq\n  75:          0  pmic_arb 1006633210 Edge      haptics_sc_irq\n  76:          0  pmic_arb 1006698746 Edge      haptics_play_irq\n  80:        345   PDC-GIC  297 Edge      1d84000.ufshc\n  81:          0   PDC-GIC  236 Edge      mmc0\n  82:          2   PDC-GIC  254 Edge      8804000.sdhci\n  83:          0   PDC-GIC  298 Edge      modem\n  84:          0   PDC-GIC  194 Edge      adsp\n  85:          0   PDC-GIC  526 Edge      slpi\n  86:          0   PDC-GIC  195 Level     ngd_slim_irq\n  88:          0   PDC-GIC  323 Level     ngd_slim_irq\n  90:          0   PDC-GIC  524 Level     eud_irq\n  91:          0   PDC-GIC  384 Level     spss\n  92:          0   PDC-GIC   32 Edge      apps_wdog_bark\n  94:          0   PDC-GIC  610 Edge      cdsp\n 100:          0   PDC-GIC  380 Level     qcom,glink-mailbox-xprt-spss\n 101:         14   PDC-GIC  421 Edge      qcom,qmp-aop\n 102:        791   PDC-GIC   37 Level     apps_rsc\n 103:          0   PDC-GIC  161 Level     display_rsc\n 104:          0   PDC-GIC  481 Edge      qcom,glink-smem-native-xprt-modem\n 105:          0   PDC-GIC  188 Edge      qcom,glink-smem-native-xprt-adsp\n 106:          0   PDC-GIC  202 Edge      qcom,glink-smem-native-xprt-dsps\n 107:          0   PDC-GIC  606 Edge      qcom,glink-smem-native-xprt-cdsp\n 108:          0   PDC-GIC  304 Level     sps\n 124:          0   PDC-GIC  538 Level     tsens-upper-lower\n 125:          0   PDC-GIC  540 Level     tsens-critical\n 126:          0   PDC-GIC  539 Level     tsens-upper-lower\n 127:          0   PDC-GIC  541 Level     tsens-critical\n 129:         17   PDC-GIC  277 Level     gpi_dma800000_gpii1\n 142:        200   PDC-GIC  312 Level     gpi_dmaa00000_gpii1\n 159:          0   PDC-GIC  261 Level     arm-smmu global fault\n 160:          0   PDC-GIC  263 Level     arm-smmu global fault\n 161:          0   PDC-GIC  396 Level     arm-smmu-context-fault\n 162:          0   PDC-GIC  397 Level     arm-smmu-context-fault\n 163:          0   PDC-GIC  398 Level     arm-smmu-context-fault\n 169:          0   PDC-GIC   97 Level     arm-smmu global fault\n 170:          0   PDC-GIC  128 Level     arm-smmu-context-fault\n 173:          0   PDC-GIC  131 Level     arm-smmu-context-fault\n 174:          0   PDC-GIC  132 Level     arm-smmu-context-fault\n 175:          0   PDC-GIC  133 Level     arm-smmu-context-fault\n 176:          0   PDC-GIC  134 Level     arm-smmu-context-fault\n 177:          0   PDC-GIC  135 Level     arm-smmu-context-fault\n 178:          0   PDC-GIC  136 Level     arm-smmu-context-fault\n 179:          0   PDC-GIC  137 Level     arm-smmu-context-fault\n 180:          0   PDC-GIC  138 Level     arm-smmu-context-fault\n 181:          0   PDC-GIC  139 Level     arm-smmu-context-fault\n 182:          0   PDC-GIC  140 Level     arm-smmu-context-fault\n 183:          0   PDC-GIC  141 Level     arm-smmu-context-fault\n 184:          0   PDC-GIC  142 Level     arm-smmu-context-fault\n 185:          0   PDC-GIC  143 Level     arm-smmu-context-fault\n 186:          0   PDC-GIC  144 Level     arm-smmu-context-fault\n 187:          0   PDC-GIC  145 Level     arm-smmu-context-fault\n 188:          0   PDC-GIC  146 Level     arm-smmu-context-fault\n 189:          0   PDC-GIC  147 Level     arm-smmu-context-fault\n 190:          0   PDC-GIC  148 Level     arm-smmu-context-fault\n 191:          0   PDC-GIC  149 Level     arm-smmu-context-fault\n 192:          0   PDC-GIC  150 Level     arm-smmu-context-fault\n 193:          0   PDC-GIC  213 Level     arm-smmu-context-fault\n 194:          0   PDC-GIC  214 Level     arm-smmu-context-fault\n 195:          0   PDC-GIC  215 Level     arm-smmu-context-fault\n 196:          0   PDC-GIC  216 Level     arm-smmu-context-fault\n 197:          0   PDC-GIC  217 Level     arm-smmu-context-fault\n 198:          0   PDC-GIC  218 Level     arm-smmu-context-fault\n 199:          0   PDC-GIC  219 Level     arm-smmu-context-fault\n 200:          0   PDC-GIC  220 Level     arm-smmu-context-fault\n 201:          0   PDC-GIC  221 Level     arm-smmu-context-fault\n 202:          0   PDC-GIC  222 Level     arm-smmu-context-fault\n 203:          0   PDC-GIC  223 Level     arm-smmu-context-fault\n 204:          0   PDC-GIC  224 Level     arm-smmu-context-fault\n 205:          0   PDC-GIC  347 Level     arm-smmu-context-fault\n 234:          0   PDC-GIC  483 Edge      smp2p\n 235:          0   PDC-GIC  190 Edge      smp2p\n 236:          0   PDC-GIC  204 Edge      smp2p\n 237:          0   PDC-GIC  608 Edge      smp2p\n 238:          0   PDC-GIC  509 Edge      csiphy\n 239:          0   PDC-GIC  510 Edge      csiphy\n 240:          0   PDC-GIC  511 Edge      csiphy\n 241:          0   PDC-GIC  492 Edge      cci\n 242:          0   PDC-GIC  491 Edge      cpas_camnoc\n 243:          1   PDC-GIC  493 Edge      cpas-cdm\n 244:          0   PDC-GIC  496 Edge      csid\n 245:          2   PDC-GIC  497 Edge      ife\n 246:          0   PDC-GIC  498 Edge      csid\n 247:          2   PDC-GIC  499 Edge      ife\n 248:          0   PDC-GIC  500 Edge      csid-lite\n 249:          2   PDC-GIC  501 Edge      ife-lite\n 250:          0   PDC-GIC  495 Edge      a5\n 251:          0   PDC-GIC  506 Edge      jpeg\n 252:          0   PDC-GIC  507 Edge      jpegdma\n 253:          2   PDC-GIC  494 Edge      fd\n 254:          0   PDC-GIC  206 Level     msm_vidc\n 266:          1  msmgpio-dc   10 Edge      TE_GPIO\n 280:          0  msmgpio-dc   24 Level     tas2559\n 286:          0  msmgpio-dc   30 Level     tas2559\n 308:          0  msmgpio-dc   52 Edge      esd_err_irq\n 319:          0  msmgpio-dc   63 Level     nq-nci\n 334:          0  msmgpio-dc   78 Edge      idtp9220\n 380:          0  msmgpio-dc  124 Edge      hall_key\n 381:          2  msmgpio-dc  125 Level     synaptics_dsx\n 382:          0  msmgpio-dc  126 Edge      8804000.sdhci cd\n 493:          0   PDC-GIC  332 Level     kgsl-3d0\n 494:          0   PDC-GIC  336 Level     HFI\n 495:          0   PDC-GIC  337 Level     GMU\n 496:          0   PDC-GIC  521 Edge      dp_hs_phy_irq\n 497:          0   PDC-GIC  162 Edge      pwr_event_irq\n 498:          0   PDC-GIC  518 Level     ss_phy_irq\n 499:          0   PDC-GIC  520 Edge      dm_hs_phy_irq\n 500:          0   PDC-GIC  480 Edge      csiphy\n 501:          1   PDC-GIC  508 Edge      lrme\n 502:          0  pmic_arb 1036124415 Edge      ibb-sc-err\n 503:          0  pmic_arb 1038090496 Edge      lab-vreg-ok\n 504:          0  pmic_arb 1038156032 Edge      lab-sc-err\n 505:          0   PDC-GIC   64 Level     limits_sensor-00\n 506:          0   PDC-GIC   65 Level     limits_sensor-01\n 667:          0   PDC-GIC  381 Level     qsee_ipc_irq_spss\n 668:          0       sde    4 Edge      dsi_ctrl\n 669:          0  pmic_arb 101777591 Edge      qpnp_rtc_alarm\n 670:          0       sde    2 Edge      sde_rotator_r3\n 671:          0  i2c_pmic_irq_chip 4098 Edge      chg-state-change\n 672:          0  i2c_pmic_irq_chip 5634 Edge      wdog-bark\n 673:          1  i2c_pmic_irq_chip 5696 Edge      temperature-change\n 674:          0  pmic_arb 553648336 Edge      chg-error\n 675:          0  pmic_arb 553713872 Edge      chg-state-change\n 679:          0  pmic_arb 554696913 Edge      otg-fail\n 680:          0  pmic_arb 554762449 Edge      otg-overcurrent\n 681:          0  pmic_arb 554827985 Edge      otg-oc-dis-sw-sts\n 682:          0  pmic_arb 554893521 Edge      testmode-change-detect\n 683:          0  pmic_arb 555745490 Edge      bat-temp\n 684:          0  pmic_arb 555811026 Edge      bat-ocp\n 685:          0  pmic_arb 555876562 Edge      bat-ov\n 686:          0  pmic_arb 555942098 Edge      bat-low\n 687:          0  pmic_arb 556007634 Edge      bat-therm-or-id-missing\n 688:          0  pmic_arb 556073170 Edge      bat-terminal-missing\n 689:          0  pmic_arb 556794067 Edge      usbin-collapse\n 690:          0  pmic_arb 556859603 Edge      usbin-lt-3p6v\n 691:          0  pmic_arb 556925139 Edge      usbin-uv\n 692:          0  pmic_arb 556990675 Edge      usbin-ov\n 693:          0  pmic_arb 557056211 Edge      usbin-plugin\n 694:          0  pmic_arb 557121747 Edge      usbin-src-change\n 695:          0  pmic_arb 557187283 Edge      usbin-icl-change\n 696:          0  pmic_arb 557252819 Edge      type-c-change\n 697:          0  pmic_arb 557842644 Edge      dcin-collapse\n 698:          0  pmic_arb 557908180 Edge      dcin-lt-3p6v\n 699:          0  pmic_arb 557973716 Edge      dcin-uv\n 700:          0  pmic_arb 558039252 Edge      dcin-ov\n 701:          0  pmic_arb 558104788 Edge      dcin-plugin\n 702:          0  pmic_arb 558170324 Edge      div2-en-dg\n 703:          0  pmic_arb 558235860 Edge      dcin-icl-change\n 705:          0  pmic_arb 560005334 Edge      wdog-bark\n 706:          0  pmic_arb 560070870 Edge      aicl-fail\n 707:          0  pmic_arb 560136406 Edge      aicl-done\n 708:          0  pmic_arb 560201942 Edge      high-duty-cycle\n 709:          0  pmic_arb 560267478 Edge      input-current-limiting\n 710:          0  pmic_arb 560333014 Edge      temperature-change\n 711:          0  pmic_arb 560398550 Edge      switcher-power-ok\n 808:          0  smp2p_gpio    0 Edge      modem\n 809:          0  smp2p_gpio    1 Edge      error_ready_interrupt\n 810:          0  smp2p_gpio    2 Edge      modem\n 811:          0  smp2p_gpio    3 Edge      modem\n 840:          0  smp2p_gpio    0 Edge      adsp\n 841:          0  smp2p_gpio    1 Edge      error_ready_interrupt\n 842:          0  smp2p_gpio    2 Edge      adsp\n 843:          0  smp2p_gpio    3 Edge      adsp\n 872:          0  smp2p_gpio    0 Edge      slpi\n 873:          0  smp2p_gpio    1 Edge      error_ready_interrupt\n 874:          0  smp2p_gpio    2 Edge      slpi\n 875:          0  smp2p_gpio    3 Edge      slpi\n 904:          0  smp2p_gpio    0 Edge      cdsp\n 905:          0  smp2p_gpio    1 Edge      error_ready_interrupt\n 906:          0  smp2p_gpio    2 Edge      cdsp\n 907:          0  smp2p_gpio    3 Edge      cdsp\n 936:          0  smp2p_gpio    0 Edge      ipa_smp2p_clk_vote\n1000:          0   PDC-GIC  165 Edge      dwc3\n1002:          1  pmic_arb 603979995 Edge      soc-update\n1003:          0  pmic_arb 604045531 Edge      soc-ready\n1004:          0  pmic_arb 604111067 Edge      bsoc-delta\n1005:          8  pmic_arb 604176603 Edge      msoc-delta\n1006:          0  pmic_arb 604242139 Edge      msoc-low\n1007:          0  pmic_arb 604307675 Edge      msoc-empty\n1008:          0  pmic_arb 604373211 Edge      msoc-high\n1009:          0  pmic_arb 604438747 Edge      msoc-full\n1010:          0  pmic_arb 605028572 Edge      vbatt-pred-delta\n1011:          0  pmic_arb 605094108 Edge      vbatt-low\n1012:          0  pmic_arb 605159644 Edge      esr-delta\n1013:          0  pmic_arb 605225180 Edge      batt-missing\n1014:          0  pmic_arb 605421788 Edge      batt-temp-delta\n1015:          0  pmic_arb 608174303 Edge      ima-rdy\n1016:          0  pmic_arb 608239839 Edge      mem-xcp\n1017:        618  pmic_arb 608305375 Edge      dma-grant\nIPI0:        190       Rescheduling interrupts\nIPI1:         19       Function call interrupts\nIPI2:          0       CPU stop interrupts\nIPI3:          0       Timer broadcast interrupts\nIPI4:     126724       IRQ work interrupts\nIPI5:          0       CPU wake-up interrupts\nIPI6:          0       CPU backtrace\n Err:          0\n"
  },
  {
    "path": "results/sdm845/main/pre_bench_interrupts.txt",
    "content": "            CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n   4:        618          3          3          3          3          4          3          2   PDC-GIC   19 Level     arch_timer\n   6:          0          0          0          0          0          0          0          0   PDC-GIC   38 Level     arch_mem_timer\n   7:          0          0          0          0          0          0          0          0   PDC-GIC  115 Edge      msm_drm\n   9:          0          0          0          0          0          0          0          0   PDC-GIC  636 Level     i2c_geni\n  10:          0          0          0          0          0          0          0          0   PDC-GIC  638 Level     i2c_geni\n  12:        286          0          0          0          0          0          0          0   PDC-GIC  387 Level     i2c_geni\n  13:          0          0          0          0          0          0          0          0   PDC-GIC  391 Level     i2c_geni\n  14:          0          0          0          0          0          0          0          0   PDC-GIC  385 Level     spi_geni\n  25:          1          0          0          0          0          0          0          0  pmic_arb 219152585 Level     i2c_pmic_stat_irq\n  29:          0          0          0          0          0          0          0          0  pmic_arb 1111490819 Edge      pm8005_tz\n  32:          0          0          0          0          0          0          0          0  pmic_arb 574619866 Edge      qcom,temp-alarm\n  33:          0          0          0          0          0          0          0          0  pmic_arb 558891221 Edge      ptrain-done\n  34:          0          0          0          0          0          0          0          0  pmic_arb 560988375 Edge      sig-tx\n  35:          0          0          0          0          0          0          0          0  pmic_arb 561053911 Edge      sig-rx\n  36:          0          0          0          0          0          0          0          0  pmic_arb 561119447 Edge      msg-tx\n  37:          0          0          0          0          0          0          0          0  pmic_arb 561184983 Edge      msg-rx\n  38:          0          0          0          0          0          0          0          0  pmic_arb 561250519 Edge      msg-tx-failed\n  44:          0          0          0          0          0          0          0          0  pmic_arb 8388780 Edge      qpnp_kpdpwr_status\n  45:          0          0          0          0          0          0          0          0  pmic_arb 8454316 Edge      qpnp_resin_status\n  47:          0          0          0          0          0          0          0          0  pmic_arb 8716460 Edge      qpnp_kpdpwr_resin_bark\n  48:          0          0          0          0          0          0          0          0  pmic_arb 37748909 Edge      pm8998_tz\n  49:         19          0          0          0          0          0          0          0  pmic_arb 51380399 Edge      qpnp_vadc_interrupt\n  50:          0          0          0          0          0          0          0          0  pmic_arb 54526128 Edge      qpnp_adc_tm_interrupt\n  51:          0          0          0          0          0          0          0          0  pmic_arb 745537772 Edge      vendor:extcon_usb1\n  57:          0          0          0          0          0          0          0          0  pmic_arb 561316055 Edge      msg-tx-discarded\n  62:          0          0          0          0          0          0          0          0  pmic_arb 206569662 Edge      volume_up\n  64:          0          0          0          0          0          0          0          0  pmic_arb 561381591 Edge      msg-rx-discarded\n  65:          0          0          0          0          0          0          0          0  pmic_arb 606077149 Edge      bcl-high-ibat\n  67:          0          0          0          0          0          0          0          0  pmic_arb 606208221 Edge      bcl-low-vbat\n  70:          1          0          0          0          0          0          0          0  pmic_arb 1031864573 Edge      qpnp_wled_ovp_irq\n  71:          0          0          0          0          0          0          0          0  pmic_arb 1031930109 Edge      qpnp_wled_sc_irq\n  72:          0          0          0          0          0          0          0          0  pmic_arb 1026556156 Edge      qpnp_flash_led_fault_irq\n  73:          0          0          0          0          0          0          0          0  pmic_arb 1026752764 Edge      qpnp_flash_led_all_ramp_down_done_irq\n  74:          0          0          0          0          0          0          0          0  pmic_arb 1026818300 Edge      qpnp_flash_led_all_ramp_up_done_irq\n  75:          0          0          0          0          0          0          0          0  pmic_arb 1006633210 Edge      haptics_sc_irq\n  76:          0          0          0          0          0          0          0          0  pmic_arb 1006698746 Edge      haptics_play_irq\n  80:        339          0          0          0          0          0          0          0   PDC-GIC  297 Edge      1d84000.ufshc\n  81:          0          0          0          0          0          0          0          0   PDC-GIC  236 Edge      mmc0\n  82:          2          0          0          0          0          0          0          0   PDC-GIC  254 Edge      8804000.sdhci\n  83:          0          0          0          0          0          0          0          0   PDC-GIC  298 Edge      modem\n  84:          0          0          0          0          0          0          0          0   PDC-GIC  194 Edge      adsp\n  85:          0          0          0          0          0          0          0          0   PDC-GIC  526 Edge      slpi\n  86:          0          0          0          0          0          0          0          0   PDC-GIC  195 Level     ngd_slim_irq\n  88:          0          0          0          0          0          0          0          0   PDC-GIC  323 Level     ngd_slim_irq\n  90:          0          0          0          0          0          0          0          0   PDC-GIC  524 Level     eud_irq\n  91:          0          0          0          0          0          0          0          0   PDC-GIC  384 Level     spss\n  92:          0          0          0          0          0          0          0          0   PDC-GIC   32 Edge      apps_wdog_bark\n  94:          0          0          0          0          0          0          0          0   PDC-GIC  610 Edge      cdsp\n 100:          0          0          0          0          0          0          0          0   PDC-GIC  380 Level     qcom,glink-mailbox-xprt-spss\n 101:         14          0          0          0          0          0          0          0   PDC-GIC  421 Edge      qcom,qmp-aop\n 102:        398          0          0          0          0          0          0          0   PDC-GIC   37 Level     apps_rsc\n 103:          0          0          0          0          0          0          0          0   PDC-GIC  161 Level     display_rsc\n 104:          0          0          0          0          0          0          0          0   PDC-GIC  481 Edge      qcom,glink-smem-native-xprt-modem\n 105:          0          0          0          0          0          0          0          0   PDC-GIC  188 Edge      qcom,glink-smem-native-xprt-adsp\n 106:          0          0          0          0          0          0          0          0   PDC-GIC  202 Edge      qcom,glink-smem-native-xprt-dsps\n 107:          0          0          0          0          0          0          0          0   PDC-GIC  606 Edge      qcom,glink-smem-native-xprt-cdsp\n 108:          0          0          0          0          0          0          0          0   PDC-GIC  304 Level     sps\n 124:          0          0          0          0          0          0          0          0   PDC-GIC  538 Level     tsens-upper-lower\n 125:          0          0          0          0          0          0          0          0   PDC-GIC  540 Level     tsens-critical\n 126:          0          0          0          0          0          0          0          0   PDC-GIC  539 Level     tsens-upper-lower\n 127:          0          0          0          0          0          0          0          0   PDC-GIC  541 Level     tsens-critical\n 129:         17          0          0          0          0          0          0          0   PDC-GIC  277 Level     gpi_dma800000_gpii1\n 142:        200          0          0          0          0          0          0          0   PDC-GIC  312 Level     gpi_dmaa00000_gpii1\n 159:          0          0          0          0          0          0          0          0   PDC-GIC  261 Level     arm-smmu global fault\n 160:          0          0          0          0          0          0          0          0   PDC-GIC  263 Level     arm-smmu global fault\n 161:          0          0          0          0          0          0          0          0   PDC-GIC  396 Level     arm-smmu-context-fault\n 162:          0          0          0          0          0          0          0          0   PDC-GIC  397 Level     arm-smmu-context-fault\n 163:          0          0          0          0          0          0          0          0   PDC-GIC  398 Level     arm-smmu-context-fault\n 169:          0          0          0          0          0          0          0          0   PDC-GIC   97 Level     arm-smmu global fault\n 170:          0          0          0          0          0          0          0          0   PDC-GIC  128 Level     arm-smmu-context-fault\n 173:          0          0          0          0          0          0          0          0   PDC-GIC  131 Level     arm-smmu-context-fault\n 174:          0          0          0          0          0          0          0          0   PDC-GIC  132 Level     arm-smmu-context-fault\n 175:          0          0          0          0          0          0          0          0   PDC-GIC  133 Level     arm-smmu-context-fault\n 176:          0          0          0          0          0          0          0          0   PDC-GIC  134 Level     arm-smmu-context-fault\n 177:          0          0          0          0          0          0          0          0   PDC-GIC  135 Level     arm-smmu-context-fault\n 178:          0          0          0          0          0          0          0          0   PDC-GIC  136 Level     arm-smmu-context-fault\n 179:          0          0          0          0          0          0          0          0   PDC-GIC  137 Level     arm-smmu-context-fault\n 180:          0          0          0          0          0          0          0          0   PDC-GIC  138 Level     arm-smmu-context-fault\n 181:          0          0          0          0          0          0          0          0   PDC-GIC  139 Level     arm-smmu-context-fault\n 182:          0          0          0          0          0          0          0          0   PDC-GIC  140 Level     arm-smmu-context-fault\n 183:          0          0          0          0          0          0          0          0   PDC-GIC  141 Level     arm-smmu-context-fault\n 184:          0          0          0          0          0          0          0          0   PDC-GIC  142 Level     arm-smmu-context-fault\n 185:          0          0          0          0          0          0          0          0   PDC-GIC  143 Level     arm-smmu-context-fault\n 186:          0          0          0          0          0          0          0          0   PDC-GIC  144 Level     arm-smmu-context-fault\n 187:          0          0          0          0          0          0          0          0   PDC-GIC  145 Level     arm-smmu-context-fault\n 188:          0          0          0          0          0          0          0          0   PDC-GIC  146 Level     arm-smmu-context-fault\n 189:          0          0          0          0          0          0          0          0   PDC-GIC  147 Level     arm-smmu-context-fault\n 190:          0          0          0          0          0          0          0          0   PDC-GIC  148 Level     arm-smmu-context-fault\n 191:          0          0          0          0          0          0          0          0   PDC-GIC  149 Level     arm-smmu-context-fault\n 192:          0          0          0          0          0          0          0          0   PDC-GIC  150 Level     arm-smmu-context-fault\n 193:          0          0          0          0          0          0          0          0   PDC-GIC  213 Level     arm-smmu-context-fault\n 194:          0          0          0          0          0          0          0          0   PDC-GIC  214 Level     arm-smmu-context-fault\n 195:          0          0          0          0          0          0          0          0   PDC-GIC  215 Level     arm-smmu-context-fault\n 196:          0          0          0          0          0          0          0          0   PDC-GIC  216 Level     arm-smmu-context-fault\n 197:          0          0          0          0          0          0          0          0   PDC-GIC  217 Level     arm-smmu-context-fault\n 198:          0          0          0          0          0          0          0          0   PDC-GIC  218 Level     arm-smmu-context-fault\n 199:          0          0          0          0          0          0          0          0   PDC-GIC  219 Level     arm-smmu-context-fault\n 200:          0          0          0          0          0          0          0          0   PDC-GIC  220 Level     arm-smmu-context-fault\n 201:          0          0          0          0          0          0          0          0   PDC-GIC  221 Level     arm-smmu-context-fault\n 202:          0          0          0          0          0          0          0          0   PDC-GIC  222 Level     arm-smmu-context-fault\n 203:          0          0          0          0          0          0          0          0   PDC-GIC  223 Level     arm-smmu-context-fault\n 204:          0          0          0          0          0          0          0          0   PDC-GIC  224 Level     arm-smmu-context-fault\n 205:          0          0          0          0          0          0          0          0   PDC-GIC  347 Level     arm-smmu-context-fault\n 234:          0          0          0          0          0          0          0          0   PDC-GIC  483 Edge      smp2p\n 235:          0          0          0          0          0          0          0          0   PDC-GIC  190 Edge      smp2p\n 236:          0          0          0          0          0          0          0          0   PDC-GIC  204 Edge      smp2p\n 237:          0          0          0          0          0          0          0          0   PDC-GIC  608 Edge      smp2p\n 238:          0          0          0          0          0          0          0          0   PDC-GIC  509 Edge      csiphy\n 239:          0          0          0          0          0          0          0          0   PDC-GIC  510 Edge      csiphy\n 240:          0          0          0          0          0          0          0          0   PDC-GIC  511 Edge      csiphy\n 241:          0          0          0          0          0          0          0          0   PDC-GIC  492 Edge      cci\n 242:          0          0          0          0          0          0          0          0   PDC-GIC  491 Edge      cpas_camnoc\n 243:          1          0          0          0          0          0          0          0   PDC-GIC  493 Edge      cpas-cdm\n 244:          0          0          0          0          0          0          0          0   PDC-GIC  496 Edge      csid\n 245:          2          0          0          0          0          0          0          0   PDC-GIC  497 Edge      ife\n 246:          0          0          0          0          0          0          0          0   PDC-GIC  498 Edge      csid\n 247:          2          0          0          0          0          0          0          0   PDC-GIC  499 Edge      ife\n 248:          0          0          0          0          0          0          0          0   PDC-GIC  500 Edge      csid-lite\n 249:          2          0          0          0          0          0          0          0   PDC-GIC  501 Edge      ife-lite\n 250:          0          0          0          0          0          0          0          0   PDC-GIC  495 Edge      a5\n 251:          0          0          0          0          0          0          0          0   PDC-GIC  506 Edge      jpeg\n 252:          0          0          0          0          0          0          0          0   PDC-GIC  507 Edge      jpegdma\n 253:          2          0          0          0          0          0          0          0   PDC-GIC  494 Edge      fd\n 254:          0          0          0          0          0          0          0          0   PDC-GIC  206 Level     msm_vidc\n 266:          1          0          0          0          0          0          0          0  msmgpio-dc   10 Edge      TE_GPIO\n 280:          0          0          0          0          0          0          0          0  msmgpio-dc   24 Level     tas2559\n 286:          0          0          0          0          0          0          0          0  msmgpio-dc   30 Level     tas2559\n 308:          0          0          0          0          0          0          0          0  msmgpio-dc   52 Edge      esd_err_irq\n 319:          0          0          0          0          0          0          0          0  msmgpio-dc   63 Level     nq-nci\n 334:          0          0          0          0          0          0          0          0  msmgpio-dc   78 Edge      idtp9220\n 380:          0          0          0          0          0          0          0          0  msmgpio-dc  124 Edge      hall_key\n 381:          2          0          0          0          0          0          0          0  msmgpio-dc  125 Level     synaptics_dsx\n 382:          0          0          0          0          0          0          0          0  msmgpio-dc  126 Edge      8804000.sdhci cd\n 493:          0          0          0          0          0          0          0          0   PDC-GIC  332 Level     kgsl-3d0\n 494:          0          0          0          0          0          0          0          0   PDC-GIC  336 Level     HFI\n 495:          0          0          0          0          0          0          0          0   PDC-GIC  337 Level     GMU\n 496:          0          0          0          0          0          0          0          0   PDC-GIC  521 Edge      dp_hs_phy_irq\n 497:          0          0          0          0          0          0          0          0   PDC-GIC  162 Edge      pwr_event_irq\n 498:          0          0          0          0          0          0          0          0   PDC-GIC  518 Level     ss_phy_irq\n 499:          0          0          0          0          0          0          0          0   PDC-GIC  520 Edge      dm_hs_phy_irq\n 500:          0          0          0          0          0          0          0          0   PDC-GIC  480 Edge      csiphy\n 501:          1          0          0          0          0          0          0          0   PDC-GIC  508 Edge      lrme\n 502:          0          0          0          0          0          0          0          0  pmic_arb 1036124415 Edge      ibb-sc-err\n 503:          0          0          0          0          0          0          0          0  pmic_arb 1038090496 Edge      lab-vreg-ok\n 504:          0          0          0          0          0          0          0          0  pmic_arb 1038156032 Edge      lab-sc-err\n 505:          0          0          0          0          0          0          0          0   PDC-GIC   64 Level     limits_sensor-00\n 506:          0          0          0          0          0          0          0          0   PDC-GIC   65 Level     limits_sensor-01\n 667:          0          0          0          0          0          0          0          0   PDC-GIC  381 Level     qsee_ipc_irq_spss\n 668:          0          0          0          0          0          0          0          0       sde    4 Edge      dsi_ctrl\n 669:          0          0          0          0          0          0          0          0  pmic_arb 101777591 Edge      qpnp_rtc_alarm\n 670:          0          0          0          0          0          0          0          0       sde    2 Edge      sde_rotator_r3\n 671:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4098 Edge      chg-state-change\n 672:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 5634 Edge      wdog-bark\n 673:          1          0          0          0          0          0          0          0  i2c_pmic_irq_chip 5696 Edge      temperature-change\n 674:          0          0          0          0          0          0          0          0  pmic_arb 553648336 Edge      chg-error\n 675:          0          0          0          0          0          0          0          0  pmic_arb 553713872 Edge      chg-state-change\n 679:          0          0          0          0          0          0          0          0  pmic_arb 554696913 Edge      otg-fail\n 680:          0          0          0          0          0          0          0          0  pmic_arb 554762449 Edge      otg-overcurrent\n 681:          0          0          0          0          0          0          0          0  pmic_arb 554827985 Edge      otg-oc-dis-sw-sts\n 682:          0          0          0          0          0          0          0          0  pmic_arb 554893521 Edge      testmode-change-detect\n 683:          0          0          0          0          0          0          0          0  pmic_arb 555745490 Edge      bat-temp\n 684:          0          0          0          0          0          0          0          0  pmic_arb 555811026 Edge      bat-ocp\n 685:          0          0          0          0          0          0          0          0  pmic_arb 555876562 Edge      bat-ov\n 686:          0          0          0          0          0          0          0          0  pmic_arb 555942098 Edge      bat-low\n 687:          0          0          0          0          0          0          0          0  pmic_arb 556007634 Edge      bat-therm-or-id-missing\n 688:          0          0          0          0          0          0          0          0  pmic_arb 556073170 Edge      bat-terminal-missing\n 689:          0          0          0          0          0          0          0          0  pmic_arb 556794067 Edge      usbin-collapse\n 690:          0          0          0          0          0          0          0          0  pmic_arb 556859603 Edge      usbin-lt-3p6v\n 691:          0          0          0          0          0          0          0          0  pmic_arb 556925139 Edge      usbin-uv\n 692:          0          0          0          0          0          0          0          0  pmic_arb 556990675 Edge      usbin-ov\n 693:          0          0          0          0          0          0          0          0  pmic_arb 557056211 Edge      usbin-plugin\n 694:          0          0          0          0          0          0          0          0  pmic_arb 557121747 Edge      usbin-src-change\n 695:          0          0          0          0          0          0          0          0  pmic_arb 557187283 Edge      usbin-icl-change\n 696:          0          0          0          0          0          0          0          0  pmic_arb 557252819 Edge      type-c-change\n 697:          0          0          0          0          0          0          0          0  pmic_arb 557842644 Edge      dcin-collapse\n 698:          0          0          0          0          0          0          0          0  pmic_arb 557908180 Edge      dcin-lt-3p6v\n 699:          0          0          0          0          0          0          0          0  pmic_arb 557973716 Edge      dcin-uv\n 700:          0          0          0          0          0          0          0          0  pmic_arb 558039252 Edge      dcin-ov\n 701:          0          0          0          0          0          0          0          0  pmic_arb 558104788 Edge      dcin-plugin\n 702:          0          0          0          0          0          0          0          0  pmic_arb 558170324 Edge      div2-en-dg\n 703:          0          0          0          0          0          0          0          0  pmic_arb 558235860 Edge      dcin-icl-change\n 705:          0          0          0          0          0          0          0          0  pmic_arb 560005334 Edge      wdog-bark\n 706:          0          0          0          0          0          0          0          0  pmic_arb 560070870 Edge      aicl-fail\n 707:          0          0          0          0          0          0          0          0  pmic_arb 560136406 Edge      aicl-done\n 708:          0          0          0          0          0          0          0          0  pmic_arb 560201942 Edge      high-duty-cycle\n 709:          0          0          0          0          0          0          0          0  pmic_arb 560267478 Edge      input-current-limiting\n 710:          0          0          0          0          0          0          0          0  pmic_arb 560333014 Edge      temperature-change\n 711:          0          0          0          0          0          0          0          0  pmic_arb 560398550 Edge      switcher-power-ok\n 808:          0          0          0          0          0          0          0          0  smp2p_gpio    0 Edge      modem\n 809:          0          0          0          0          0          0          0          0  smp2p_gpio    1 Edge      error_ready_interrupt\n 810:          0          0          0          0          0          0          0          0  smp2p_gpio    2 Edge      modem\n 811:          0          0          0          0          0          0          0          0  smp2p_gpio    3 Edge      modem\n 840:          0          0          0          0          0          0          0          0  smp2p_gpio    0 Edge      adsp\n 841:          0          0          0          0          0          0          0          0  smp2p_gpio    1 Edge      error_ready_interrupt\n 842:          0          0          0          0          0          0          0          0  smp2p_gpio    2 Edge      adsp\n 843:          0          0          0          0          0          0          0          0  smp2p_gpio    3 Edge      adsp\n 872:          0          0          0          0          0          0          0          0  smp2p_gpio    0 Edge      slpi\n 873:          0          0          0          0          0          0          0          0  smp2p_gpio    1 Edge      error_ready_interrupt\n 874:          0          0          0          0          0          0          0          0  smp2p_gpio    2 Edge      slpi\n 875:          0          0          0          0          0          0          0          0  smp2p_gpio    3 Edge      slpi\n 904:          0          0          0          0          0          0          0          0  smp2p_gpio    0 Edge      cdsp\n 905:          0          0          0          0          0          0          0          0  smp2p_gpio    1 Edge      error_ready_interrupt\n 906:          0          0          0          0          0          0          0          0  smp2p_gpio    2 Edge      cdsp\n 907:          0          0          0          0          0          0          0          0  smp2p_gpio    3 Edge      cdsp\n 936:          0          0          0          0          0          0          0          0  smp2p_gpio    0 Edge      ipa_smp2p_clk_vote\n1000:          0          0          0          0          0          0          0          0   PDC-GIC  165 Edge      dwc3\n1002:          0          0          0          0          0          0          0          0  pmic_arb 603979995 Edge      soc-update\n1003:          0          0          0          0          0          0          0          0  pmic_arb 604045531 Edge      soc-ready\n1004:          0          0          0          0          0          0          0          0  pmic_arb 604111067 Edge      bsoc-delta\n1005:          0          0          0          0          0          0          0          0  pmic_arb 604176603 Edge      msoc-delta\n1006:          0          0          0          0          0          0          0          0  pmic_arb 604242139 Edge      msoc-low\n1007:          0          0          0          0          0          0          0          0  pmic_arb 604307675 Edge      msoc-empty\n1008:          0          0          0          0          0          0          0          0  pmic_arb 604373211 Edge      msoc-high\n1009:          0          0          0          0          0          0          0          0  pmic_arb 604438747 Edge      msoc-full\n1010:          0          0          0          0          0          0          0          0  pmic_arb 605028572 Edge      vbatt-pred-delta\n1011:          0          0          0          0          0          0          0          0  pmic_arb 605094108 Edge      vbatt-low\n1012:          0          0          0          0          0          0          0          0  pmic_arb 605159644 Edge      esr-delta\n1013:          0          0          0          0          0          0          0          0  pmic_arb 605225180 Edge      batt-missing\n1014:          0          0          0          0          0          0          0          0  pmic_arb 605421788 Edge      batt-temp-delta\n1015:          0          0          0          0          0          0          0          0  pmic_arb 608174303 Edge      ima-rdy\n1016:          0          0          0          0          0          0          0          0  pmic_arb 608239839 Edge      mem-xcp\n1017:         17          0          0          0          0          0          0          0  pmic_arb 608305375 Edge      dma-grant\nIPI0:         62        103        104        104         97         97         94         95       Rescheduling interrupts\nIPI1:          8          6          6          6          6          6          7          6       Function call interrupts\nIPI2:          0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:          0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI4:        132          6          5          4          7          7          6          6       IRQ work interrupts\nIPI5:          0          0          0          0          0          0          0          0       CPU wake-up interrupts\nIPI6:          0          0          0          0          0          0          0          0       CPU backtrace\n Err:          0\n"
  },
  {
    "path": "results/sdm845/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    4 root      0:00 [kworker/0:0H]\n    5 root      0:00 [kworker/u16:0]\n    6 root      0:00 [ksoftirqd/0]\n    7 root      0:00 [rcu_preempt]\n    8 root      0:00 [rcu_sched]\n    9 root      0:00 [rcu_bh]\n   10 root      0:00 [rcuop/0]\n   11 root      0:00 [rcuos/0]\n   12 root      0:00 [rcuob/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [lru-add-drain]\n   15 root      0:00 [cpuhp/0]\n   16 root      0:00 [cpuhp/1]\n   17 root      0:00 [migration/1]\n   18 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0H]\n   21 root      0:00 [rcuop/1]\n   22 root      0:00 [rcuos/1]\n   23 root      0:00 [rcuob/1]\n   24 root      0:00 [cpuhp/2]\n   25 root      0:00 [migration/2]\n   26 root      0:00 [ksoftirqd/2]\n   27 root      0:00 [kworker/2:0]\n   28 root      0:00 [kworker/2:0H]\n   29 root      0:00 [rcuop/2]\n   30 root      0:00 [rcuos/2]\n   31 root      0:00 [rcuob/2]\n   32 root      0:00 [cpuhp/3]\n   33 root      0:00 [migration/3]\n   34 root      0:00 [ksoftirqd/3]\n   35 root      0:00 [kworker/3:0]\n   36 root      0:00 [kworker/3:0H]\n   37 root      0:00 [rcuop/3]\n   38 root      0:00 [rcuos/3]\n   39 root      0:00 [rcuob/3]\n   40 root      0:00 [cpuhp/4]\n   41 root      0:00 [migration/4]\n   42 root      0:00 [ksoftirqd/4]\n   43 root      0:00 [kworker/4:0]\n   44 root      0:00 [kworker/4:0H]\n   45 root      0:00 [rcuop/4]\n   46 root      0:00 [rcuos/4]\n   47 root      0:00 [rcuob/4]\n   48 root      0:00 [cpuhp/5]\n   49 root      0:00 [migration/5]\n   50 root      0:00 [ksoftirqd/5]\n   51 root      0:00 [kworker/5:0]\n   52 root      0:00 [kworker/5:0H]\n   53 root      0:00 [rcuop/5]\n   54 root      0:00 [rcuos/5]\n   55 root      0:00 [rcuob/5]\n   56 root      0:00 [cpuhp/6]\n   57 root      0:00 [migration/6]\n   58 root      0:00 [ksoftirqd/6]\n   59 root      0:00 [kworker/6:0]\n   60 root      0:00 [kworker/6:0H]\n   61 root      0:00 [rcuop/6]\n   62 root      0:00 [rcuos/6]\n   63 root      0:00 [rcuob/6]\n   64 root      0:00 [cpuhp/7]\n   65 root      0:00 [migration/7]\n   66 root      0:00 [ksoftirqd/7]\n   67 root      0:00 [kworker/7:0]\n   68 root      0:00 [kworker/7:0H]\n   69 root      0:00 [rcuop/7]\n   70 root      0:00 [rcuos/7]\n   71 root      0:00 [rcuob/7]\n   72 root      0:00 [kdevtmpfs]\n   73 root      0:00 [netns]\n   74 root      0:00 [kworker/0:1]\n   75 root      0:00 [kworker/u17:0]\n   76 root      0:00 [ipa_usb_wq]\n   78 root      0:00 [msm_watchdog]\n   79 root      0:00 [smem_native_sps]\n   80 root      0:00 [spss_mailbox_gl]\n   81 root      0:00 [qmp_aop]\n   82 root      0:00 [smem_native_mps]\n   83 root      0:00 [mpss_smem_glink]\n   84 root      0:00 [smem_native_lpa]\n   85 root      0:00 [lpass_smem_glin]\n   86 root      0:00 [smem_native_dsp]\n   87 root      0:00 [dsps_smem_glink]\n   88 root      0:00 [smem_native_cds]\n   89 root      0:00 [cdsp_smem_glink]\n   90 root      0:00 [oom_reaper]\n   91 root      0:00 [writeback]\n   92 root      0:00 [kcompactd0]\n   93 root      0:00 [crypto]\n   94 root      0:00 [bioset]\n   95 root      0:00 [kblockd]\n   96 root      0:00 [irq/159-arm-smm]\n   97 root      0:00 [irq/160-arm-smm]\n   98 root      0:00 [irq/169-arm-smm]\n   99 root      0:00 [irq/124-tsens-u]\n  100 root      0:00 [irq/125-tsens-c]\n  101 root      0:00 [irq/126-tsens-u]\n  102 root      0:00 [irq/127-tsens-c]\n  103 root      0:00 [system]\n  104 root      0:00 [ipa_power_mgmt]\n  105 root      0:00 [transport_power]\n  106 root      0:00 [ipa_rm_wq]\n  107 root      0:00 [devfreq_wq]\n  108 root      0:00 [governor_msm_ad]\n  109 root      0:00 [cfg80211]\n  110 root      0:00 [irq/502-ibb-sc-]\n  111 root      0:00 [irq/503-lab-vre]\n  112 root      0:00 [irq/504-lab-sc-]\n  114 root      0:00 [irq/70-qpnp_wle]\n  115 root      0:00 [irq/71-qpnp_wle]\n  140 root      0:00 [kswapd0]\n  141 root      0:00 [vmstat]\n  142 root      0:00 [ecryptfs-kthrea]\n  143 root      0:00 [cifsiod]\n  144 root      0:00 [cifsoplockd]\n  177 root      0:00 [irq/173-arm-smm]\n  178 root      0:00 [irq/174-arm-smm]\n  179 root      0:00 [irq/90-eud_irq]\n  180 root      0:00 [glink_ssr_wq]\n  181 root      0:00 [glink_lbsrv]\n  182 root      0:00 [spi_wdsp]\n  183 root      0:00 [wdsp_spi_glink_]\n  184 root      0:00 [glink_xprt_wq]\n  185 root      0:00 [IPCRTR_mpss_sme]\n  186 root      0:00 [IPCRTR_lpass_sm]\n  187 root      0:00 [IPCRTR_dsps_sme]\n  188 root      0:00 [IPCRTR_cdsp_sme]\n  189 root      0:00 [glink_pkt_wq]\n  190 root      0:00 [irq/175-arm-smm]\n  191 root      0:00 [qmi_svc_event_w]\n  192 root      0:00 [msm_ipc_router]\n  193 root      0:00 [servloc_wq]\n  194 root      0:00 [mem_share_svc]\n  196 root      0:00 [irq/176-arm-smm]\n  197 root      0:00 [hwrng]\n  199 root      0:00 [qmi_hndl0000000]\n  200 root      0:00 [diag_real_time_]\n  201 root      0:00 [diag_wq]\n  203 root      0:00 [DIAG_USB_diag]\n  204 root      0:00 [diag_cntl_wq]\n  205 root      0:00 [diag_dci_wq]\n  206 root      0:00 [MODEM_CNTL]\n  207 root      0:00 [MODEM_DATA]\n  208 root      0:00 [MODEM_CMD]\n  209 root      0:00 [MODEM_DCI]\n  210 root      0:00 [MODEM_DCI_CMD]\n  211 root      0:00 [LPASS_CNTL]\n  212 root      0:00 [LPASS_DATA]\n  213 root      0:00 [LPASS_CMD]\n  214 root      0:00 [LPASS_DCI]\n  215 root      0:00 [LPASS_DCI_CMD]\n  216 root      0:00 [WCNSS_CNTL]\n  217 root      0:00 [WCNSS_DATA]\n  218 root      0:00 [WCNSS_CMD]\n  219 root      0:00 [WCNSS_DCI]\n  220 root      0:00 [WCNSS_DCI_CMD]\n  221 root      0:00 [SENSORS_CNTL]\n  222 root      0:00 [SENSORS_DATA]\n  223 root      0:00 [SENSORS_CMD]\n  224 root      0:00 [SENSORS_DCI]\n  225 root      0:00 [SENSORS_DCI_CMD]\n  226 root      0:00 [DIAG_CTRL]\n  227 root      0:00 [DIAG_DATA]\n  228 root      0:00 [DIAG_CMD]\n  229 root      0:00 [DIAG_DCI_DATA]\n  230 root      0:00 [DIAG_DCI_CMD]\n  231 root      0:00 [CDSP_CNTL]\n  232 root      0:00 [CDSP_DATA]\n  233 root      0:00 [CDSP_CMD]\n  234 root      0:00 [CDSP_DCI]\n  235 root      0:00 [CDSP_DCI_CMD]\n  236 root      0:00 [DIAG_CNTL_SOCKE]\n  237 root      0:00 [DIAG_GLINK_DIAG]\n  238 root      0:00 [DIAG_GLINK_DIAG]\n  239 root      0:00 [DIAG_GLINK_DIAG]\n  240 root      0:00 [DIAG_GLINK_DIAG]\n  241 root      0:00 [DIAG_GLINK_DIAG]\n  242 root      0:00 [irq/170-arm-smm]\n  243 root      0:00 [irq/177-arm-smm]\n  244 root      0:00 [irq/308-esd_err]\n  245 root      0:00 [crtc_commit:112]\n  246 root      0:00 [crtc_event:112]\n  247 root      0:00 [crtc_commit:165]\n  248 root      0:00 [crtc_event:165]\n  249 root      0:00 [pp_event]\n  250 root      0:00 [kgsl-workqueue]\n  251 root      0:00 [kgsl-mementry]\n  252 root      0:00 [kgsl_worker_thr]\n  253 root      0:00 [irq/161-arm-smm]\n  254 root      0:00 [irq/162-arm-smm]\n  255 root      0:00 [irq/163-arm-smm]\n  256 root      0:00 [kgsl-events]\n  257 root      0:00 [kgsl_devfreq_wq]\n  258 root      0:00 [bioset]\n  259 root      0:00 [bioset]\n  260 root      0:00 [bioset]\n  261 root      0:00 [bioset]\n  262 root      0:00 [bioset]\n  263 root      0:00 [bioset]\n  264 root      0:00 [bioset]\n  265 root      0:00 [bioset]\n  266 root      0:00 [bioset]\n  267 root      0:00 [bioset]\n  268 root      0:00 [bioset]\n  269 root      0:00 [bioset]\n  270 root      0:00 [bioset]\n  271 root      0:00 [bioset]\n  272 root      0:00 [bioset]\n  273 root      0:00 [bioset]\n  274 root      0:00 [bioset]\n  275 root      0:00 [bioset]\n  276 root      0:00 [bioset]\n  277 root      0:00 [bioset]\n  278 root      0:00 [bioset]\n  279 root      0:00 [bioset]\n  280 root      0:00 [bioset]\n  281 root      0:00 [bioset]\n  282 root      0:00 [bioset]\n  283 root      0:00 [bioset]\n  284 root      0:00 [bioset]\n  285 root      0:00 [bioset]\n  286 root      0:00 [bioset]\n  287 root      0:00 [bioset]\n  288 root      0:00 [bioset]\n  289 root      0:00 [bioset]\n  290 root      0:00 [bioset]\n  291 root      0:00 [qseecom-unreg-l]\n  292 root      0:00 [qseecom-unload-]\n  293 root      0:00 [memory_wq]\n  294 root      0:00 [irq/178-arm-smm]\n  295 root      0:00 [irq/179-arm-smm]\n  296 root      0:00 [irq/180-arm-smm]\n  297 root      0:00 [qcrypto_seq_res]\n  298 root      0:00 [irq/181-arm-smm]\n  319 root      0:00 [scsi_eh_0]\n  320 root      0:00 [scsi_tmf_0]\n  321 root      0:00 [ufs_pm_qos_0]\n  322 root      0:00 [ufs_clk_gating_]\n  323 root      0:00 [ice-set-key]\n  324 root      0:00 [irq/182-arm-smm]\n  325 root      0:00 [spi0]\n  326 root      0:00 [bond0]\n  327 root      0:00 [sharedmem_qmi_w]\n  332 root      0:00 [qmi_hndl0000000]\n  333 root      0:00 [uether]\n  335 root      0:00 [k_ipa_usb]\n  338 root      0:00 [irq/25-i2c_pmic]\n  339 root      0:00 [bioset]\n  340 root      0:00 [bioset]\n  341 root      0:00 [bioset]\n  342 root      0:00 [bioset]\n  343 root      0:00 [bioset]\n  344 root      0:00 [bioset]\n  345 root      0:00 [bioset]\n  346 root      0:00 [bioset]\n  347 root      0:00 [bioset]\n  349 root      0:00 [kworker/u16:4]\n  350 root      0:00 [irq/381-synapti]\n  351 root      0:00 [dsx_rebuild_wor]\n  352 root      0:00 [dsx_exp_workque]\n  353 root      0:00 [msm_vidc_worker]\n  354 root      0:00 [pm_workerq_venu]\n  355 root      0:00 [irq/183-arm-smm]\n  356 root      0:00 [irq/184-arm-smm]\n  357 root      0:00 [irq/185-arm-smm]\n  358 root      0:00 [irq/186-arm-smm]\n  359 root      0:00 [rot_commitq_0_0]\n  360 root      0:00 [rot_commitq_0_1]\n  361 root      0:00 [rot_doneq_0_0]\n  362 root      0:00 [rot_doneq_0_1]\n  363 root      0:00 [rot_fenceq_0_0]\n  364 root      0:00 [rot_fenceq_0_1]\n  365 root      0:00 [rot_fenceq_0_2]\n  366 root      0:00 [rot_fenceq_0_3]\n  367 root      0:00 [rot_fenceq_0_4]\n  368 root      0:00 [rot_fenceq_0_5]\n  369 root      0:00 [rot_fenceq_0_6]\n  370 root      0:00 [rot_fenceq_0_7]\n  371 root      0:00 [rot_fenceq_0_8]\n  372 root      0:00 [rot_fenceq_0_9]\n  373 root      0:00 [rot_fenceq_0_10]\n  374 root      0:00 [rot_fenceq_0_11]\n  375 root      0:00 [rot_fenceq_0_12]\n  376 root      0:00 [rot_fenceq_0_13]\n  377 root      0:00 [rot_fenceq_0_14]\n  378 root      0:00 [rot_fenceq_0_15]\n  379 root      0:00 [cam-cpas]\n  380 root      0:00 [qcom,cam_virtua]\n  381 root      0:00 [irq/187-arm-smm]\n  382 root      0:00 [qcom,cam170-cpa]\n  383 root      0:00 [fwu_workqueue]\n  384 root      0:00 [irq/188-arm-smm]\n  385 root      0:00 [cam_cci_wq]\n  386 root      0:00 [cam_cci_wq]\n  387 root      0:00 [irq/189-arm-smm]\n  388 root      0:00 [irq/190-arm-smm]\n  389 root      0:00 [irq/191-arm-smm]\n  390 root      0:00 [irq/192-arm-smm]\n  391 root      0:00 [irq/674-chg-err]\n  392 root      0:00 [irq/675-chg-sta]\n  393 root      0:00 [irq/679-otg-fai]\n  394 root      0:00 [irq/680-otg-ove]\n  395 root      0:00 [irq/681-otg-oc-]\n  396 root      0:00 [irq/682-testmod]\n  397 root      0:00 [irq/683-bat-tem]\n  398 root      0:00 [irq/684-bat-ocp]\n  399 root      0:00 [irq/685-bat-ov]\n  400 root      0:00 [irq/686-bat-low]\n  402 root      0:00 [irq/687-bat-the]\n  403 root      0:00 [irq/688-bat-ter]\n  404 root      0:00 [irq/689-usbin-c]\n  405 root      0:00 [irq/690-usbin-l]\n  406 root      0:00 [irq/691-usbin-u]\n  407 root      0:00 [irq/692-usbin-o]\n  409 root      0:00 [irq/693-usbin-p]\n  410 root      0:00 [irq/694-usbin-s]\n  411 root      0:00 [irq/695-usbin-i]\n  412 root      0:00 [irq/696-type-c-]\n  413 root      0:00 [irq/697-dcin-co]\n  414 root      0:00 [irq/698-dcin-lt]\n  416 root      0:00 [irq/699-dcin-uv]\n  417 root      0:00 [irq/700-dcin-ov]\n  418 root      0:00 [irq/701-dcin-pl]\n  419 root      0:00 [irq/702-div2-en]\n  420 root      0:00 [irq/703-dcin-ic]\n  421 root      0:00 [irq/705-wdog-ba]\n  423 root      0:00 [irq/706-aicl-fa]\n  424 root      0:00 [irq/707-aicl-do]\n  425 root      0:00 [irq/708-high-du]\n  426 root      0:00 [irq/709-input-c]\n  427 root      0:00 [irq/710-tempera]\n  428 root      0:00 [irq/711-switche]\n  429 root      0:00 [irq/33-ptrain-d]\n  431 root      0:00 [irq/65-bcl-high]\n  432 root      0:00 [irq/67-bcl-low-]\n  433 root      0:00 [irq/505-limits_]\n  434 root      0:00 [irq/506-limits_]\n  435 root      0:00 [kworker/4:1]\n  436 root      0:00 [kworker/5:1]\n  437 root      0:00 [kworker/6:1]\n  438 root      0:00 [kworker/7:1]\n  439 root      0:00 [qmi_tmd_wq]\n  440 root      0:00 [dm_bufio_cache]\n  441 root      0:00 [irq/76-haptics_]\n  442 root      0:00 [mmc_clk_gate/mm]\n  443 root      0:00 [irq/75-haptics_]\n  444 root      0:00 [irq/82-8804000.]\n  445 root      0:00 [irq/81-mmc0]\n  446 root      0:00 [irq/382-8804000]\n  447 root      0:00 [irq/51-vendor:e]\n  448 root      0:00 [irq/193-arm-smm]\n  449 root      0:00 [uaudio_svc]\n  450 root      0:00 [qmi_hndl0000000]\n  451 root      0:00 [kworker/u17:1]\n  452 root      0:00 [kworker/1:1]\n  453 root      0:00 [kworker/2:1]\n  454 root      0:00 [kworker/3:1]\n  455 root      0:00 [apr_driver]\n  456 root      0:00 [ipv6_addrconf]\n  457 root      0:00 [irq/842-adsp]\n  458 root      0:00 [sysmon_wq]\n  459 root      0:00 [irq/874-slpi]\n  460 root      0:00 [irq/906-cdsp]\n  461 root      0:00 [irq/810-modem]\n  468 root      0:00 [irq/34-sig-tx]\n  469 root      0:00 [irq/35-sig-rx]\n  470 root      0:00 [irq/1002-soc-up]\n  471 root      0:00 [irq/1003-soc-re]\n  472 root      0:00 [irq/1004-bsoc-d]\n  473 root      0:00 [irq/1005-msoc-d]\n  474 root      0:00 [irq/1006-msoc-l]\n  475 root      0:00 [irq/1007-msoc-e]\n  476 root      0:00 [irq/1008-msoc-h]\n  477 root      0:00 [irq/1009-msoc-f]\n  478 root      0:00 [irq/1010-vbatt-]\n  479 root      0:00 [irq/1011-vbatt-]\n  480 root      0:00 [irq/1012-esr-de]\n  481 root      0:00 [irq/1013-batt-m]\n  482 root      0:00 [irq/1014-batt-t]\n  483 root      0:00 [irq/1015-ima-rd]\n  484 root      0:00 [irq/1016-mem-xc]\n  485 root      0:00 [irq/1017-dma-gr]\n  486 root      0:00 [irq/32-qcom,tem]\n  487 root      0:00 [kworker/0:1H]\n  488 root      0:00 [irq/497-pwr_eve]\n  489 root      0:00 [irq/496-dp_hs_p]\n  490 root      0:00 [irq/499-dm_hs_p]\n  491 root      0:00 [irq/498-ss_phy_]\n  492 root      0:00 [irq/194-arm-smm]\n  493 root      0:00 [usb_bam_wq]\n  494 root      0:00 [core_ctl/0]\n  495 root      0:00 [core_ctl/4]\n  496 root      0:00 [rq_stats]\n  497 root      0:00 [msm_perf:events]\n  498 root      0:00 [irq/195-arm-smm]\n  499 root      0:00 [irq/196-arm-smm]\n  500 root      0:00 [irq/197-arm-smm]\n  501 root      0:00 [irq/198-arm-smm]\n  502 root      0:00 [irq/199-arm-smm]\n  503 root      0:00 [irq/200-arm-smm]\n  504 root      0:00 [irq/201-arm-smm]\n  505 root      0:00 [irq/202-arm-smm]\n  506 root      0:00 [irq/203-arm-smm]\n  507 root      0:00 [irq/204-arm-smm]\n  508 root      0:00 [irq/205-arm-smm]\n  509 root      0:00 [sb-1]\n  510 root      0:00 [ngd_rx_thread1]\n  511 root      0:00 [ngd_notify_sl1]\n  512 root      0:00 [sb-3]\n  513 root      0:00 [ngd_rx_thread3]\n  514 root      0:00 [ngd_notify_sl3]\n  515 root      0:00 [irq/74-qpnp_fla]\n  516 root      0:00 [irq/73-qpnp_fla]\n  517 root      0:00 [irq/72-qpnp_fla]\n  584 root      0:00 [kworker/1:0]\n  603 root      0:00 [kworker/0:0]\n  634 root      0:00 [kworker/0:2]\n  668 root      0:00 ps -A\n"
  },
  {
    "path": "results/sdm845/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1113.699845,3.712332816666667,56.506654774798236,12.68545235598222,19.70761412241675,224.494838821\r\n1,403200,1496.862576,3.7124567857142856,61.1766233953916,10.218287915454217,24.465938136456117,167.029289103\r\n1,480000,1781.93404,3.7123625833333334,67.28630486524463,9.44077906181187,26.480865441630204,140.307586822\r\n1,576000,2138.323896,3.712367875,77.69638952673282,9.084475160877485,27.519476422438927,116.922745268\r\n1,652800,2423.584384,3.7125986274509803,69.48219574519614,7.167894170597584,34.877747083026144,103.161595481\r\n1,748800,2779.970866,3.712567930021368,75.06596384778659,6.751074396759967,37.03114279409839,89.935225643\r\n1,825600,3065.002575,3.7124546693313953,97.24961484277786,7.9328527967095015,31.51451393421777,81.572074188\r\n1,902400,3350.308228,3.712664259751773,85.96944287389198,6.415601120194893,38.96750987418081,74.626528982\r\n1,979200,3635.358955,3.712580632148693,96.71689047052948,6.651642890530194,37.58469961698031,68.774366692\r\n1,1056000,3920.523155,3.7126166240530303,111.03505739109524,7.080938364293322,35.30605509301732,63.772096225\r\n1,1132800,4205.497426,3.7124800723870055,126.56771151550848,7.524510856442086,33.224751052882496,59.450477269\r\n1,1228800,4562.043796,3.7126007454427086,132.01523843407412,7.234900499639946,34.554725391515966,54.803525604\r\n1,1324800,4918.355302,3.712526647041063,156.45909442814002,7.953328170343887,31.43338167940711,50.833274981\r\n1,1420800,5274.818019,3.7125689885979734,156.02866091802136,7.395648557109739,33.803661446252036,47.399295191\r\n1,1516800,5631.264782,3.7125954522679327,191.2194160563183,8.490034947003172,29.44628632986316,44.399439775\r\n1,1612800,5987.737114,3.7126346192956348,167.7582225579025,7.004770206967166,35.689964497527995,41.755152744\r\n1,1689600,6272.581293,3.71246525390625,175.65320664825649,7.001293104674448,35.707689459977935,39.858612537\r\n1,1766400,6558.065108,3.712672728713768,193.2817833897106,7.36893117806037,33.92622267179381,38.125326913\r\n4,825600,5141.388175,6.227456607315891,186.38679503891672,9.0662303445399,27.574856417646778,48.642020711\r\n4,902400,5625.182818,6.2335802504432625,196.91796013895453,8.754520228970087,28.556676261105732,44.457703212\r\n4,979200,6098.453432,6.227995743464052,234.06736956650002,9.598689705441307,26.0452215533418,41.008235036\r\n4,1056000,6561.335363,6.213385760416667,216.40539867010818,8.24892764965887,30.306969659303366,38.117938371\r\n4,1209600,7517.214421,6.214628324239418,246.16033859803036,8.190456301021138,30.523329935699852,33.272851133\r\n4,1286400,7976.008167,6.20025510494403,310.0666330689355,9.723663931772933,25.71047310500961,31.359917175\r\n4,1363200,8464.533604,6.209311622652582,310.39696419200004,9.172199539915168,27.25627576156201,29.549900927\r\n4,1459200,9086.283347,6.226893741091009,339.82471620962974,9.355387229952548,26.722571055059152,27.530037645\r\n4,1536000,9556.574924,6.221728466145834,356.7104297786539,9.3369445621222,26.77535443598878,26.175137542\r\n4,1612800,10017.631031,6.211328764260913,381.42123406041674,9.524214040013826,26.2488850995664,24.970329886\r\n4,1689600,10476.030841,6.200302344341856,406.7588122579131,9.712806565192238,25.739213307914973,23.878539991\r\n4,1766400,10995.294014,6.224690904664854,426.8506263810001,9.71163126008629,25.742328276761473,22.751826189\r\n4,1843200,11468.415982,6.2220138791232635,519.1176239571429,11.32427558614615,22.076467328810335,21.814469522\r\n4,1920000,11950.858072,6.224405245833334,504.93842987330004,10.569913677037206,23.652038005108487,20.933074315\r\n4,1996800,12395.874653,6.207869918369392,528.5506330153,10.668053891610914,23.434452294677065,20.183598742\r\n4,2092800,13037.129746,6.229515360282874,635.1014827703159,12.188635509953109,20.510909510408503,19.191634472\r\n4,2169600,13496.73379,6.220839689343658,673.6814913370557,12.488388956997287,20.018594941337422,18.537527181\r\n4,2246400,13949.336012,6.209640318732194,688.3346512202942,12.34589458265722,20.249646416970478,17.935889993\r\n4,2323200,14486.035462,6.2353802780647385,800.6658033765883,13.83039707952564,18.07612598268036,17.273620306\r\n4,2400000,14936.966003,6.223735834583334,880.3296606866876,14.746118050576253,16.953614445683243,16.750677285\r\n4,2476800,15439.72332,6.233738420542635,892.7156369545626,14.468317971489375,17.27913365552505,16.207084734\r\n4,2553600,15854.895992,6.208840848997494,858.7385053515334,13.553009505763674,18.44608755669232,15.782463953\r\n4,2649600,16798.817363,6.340133364658816,996.9414607299286,14.851301984528208,16.833540942096864,14.89686463\r\n4,2803200,17425.245696,6.216197808219179,1297.8444220944286,18.639254798738445,13.412553382602006,14.361701974\r\n"
  },
  {
    "path": "results/sdm845/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 2552.707024025731, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [972.200860964, 988.804864278, 968.1177369149999, 999.146309679, 966.0502951469999, 953.747018753, 965.994656559, 966.0502951469999, 984.6657441809999, 976.335506356, 978.4591823159999, 972.1448649160001, 986.6805924700001, 945.254273512, 951.405315861, 957.6659674020001, 982.4285274569999, 994.839506427, 996.9065909789999, 951.405315861, 945.1998263759999, 941.061421443, 936.927252339, 976.0541049279999, 967.9504639349999, 932.788847406, 955.4291739, 951.240677464, 940.9527817800001], \"power_mean\": 965.7209646465861, \"energy_millijoules\": 4828.60482323293, \"energy_joules\": 4.82860482323293}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 224.494838821, \"elapsed_ns\": 224494838821, \"power_samples\": [39.019811730000015, 40.97407019399998, 40.97407019399998, 30.578602344000046, 38.851594094000006, 38.851594094000006, 40.97407019399998, 24.38020934400015, 24.38020934400015, 24.269885232000092, 49.073299665000036, 49.243306554000014, 49.243306554000014, 63.65786771900002, 69.62936217800006, 69.62936217800006, 59.29262282000013, 44.82457403800004, 44.82457403800004, 69.62936217800006, 44.82457403800004, 44.82457403800004, 38.7396019979999, 40.80549485400002, 40.80549485400002, 71.57921253799998, 50.96906034899996, 30.356525256000168, 30.356525256000168, 55.104364283999985, 32.537690043, 32.537690043, 53.03882864399998, 55.104364283999985, 55.104364283999985, 40.581034373999955, 50.91234962499993, 50.91234962499993, 40.581034373999955, 44.65528329000006, 34.324566084000026, 34.324566084000026, 34.324566084000026, 44.65528329000006, 44.65528329000006, 59.12082667800007, 48.790109472000154, 48.790109472000154, 42.47751789800009, 50.741985032, 50.741985032, 52.81127557400009, 54.87633443800007, 54.87633443800007, 63.08337592800012, 641.3207819940002, 52.69761549399993, 52.69761549399993, 42.36504951399991, 27.902842093999993, 27.902842093999993, 50.571852860000035, 48.563742864000005, 48.563742864000005, 42.36504951399991, 40.244113674000005, 40.244113674000005, 27.8474418940001, 29.91214354200008, 31.869570932999977, 31.869570932999977, 50.571852860000035, 48.39373597500014, 48.39373597500014, 38.067190438000125, 40.244113674000005, 40.244113674000005, 42.196116470000106, 44.2605794860001, 44.2605794860001, 44.2605794860001, 54.59135548000006, 54.59135548000006, 38.0111943899999, 48.33714432299996, 68.993274402, 68.993274402, 44.147872957999994, 64.80281158500009, 64.80281158500009, 37.787210198000025, 79.2608456270001, 79.2608456270001, 33.822518629, 58.72028151200004, 58.72028151200004, 42.08364808600004, 58.37715797600015, 43.92245990200013, 43.92245990200013, 52.18591222400016, 50.174645371, 50.174645371, 38.0111943899999, 48.05418606300009, 48.05418606300009, 54.249660808000044, 43.92245990200013, 43.92245990200013, 50.00428077799995, 47.9973624779999, 47.9973624779999, 47.94077082599995, 50.06099150199998, 70.70996798599992, 70.70996798599992, 47.9973624779999, 62.451223142, 62.451223142, 68.47298964999993, 54.021630961999904, 54.021630961999904, 37.50700046599991, 51.958359153999936, 51.958359153999936, 43.640462626000044, 41.57730989000004, 41.57730989000004, 41.57730989000004, 41.633544081999844, 80.798350734, 80.798350734, 70.47835928200004, 60.387594117999924, 60.387594117999924, 70.53626145800001, 51.84469907400012, 51.84469907400012, 62.10666927799991, 62.10666927799991, 62.10666927799991, 78.61844058200006, 53.90773273800005, 78.61844058200006, 78.61844058200006, 43.58410936200005, 68.29964033800002, 68.29964033800002, 70.36255492999999, 43.52775609799994, 43.52775609799994, 68.47298964999993, 49.60707328900003, 49.60707328900003, 51.67397604400003, 60.04375468600006, 60.04375468600006, 53.622753779999925, 57.80481666800017, 53.67970289200014, 53.67970289200014, 78.50144390900005, 63.939169167000045, 63.939169167000045, 53.67970289200014, 70.13070892199994, 70.13070892199994, 70.0728067460002, 68.0104880020001, 68.0104880020001, 49.49365184099997, 32.98569669899996, 43.245758822000084, 43.245758822000084, 30.867620294999938, 37.17079468600002, 37.17079468600002, 43.35846535000019, 47.37462237300008, 47.37462237300008, 49.49365184099997, 53.622753779999925, 53.622753779999925, 57.69044215600002, 28.634290134000025, 28.634290134000025, 51.503485924000074, 53.67970289200014, 53.565804668000055, 53.565804668000055, 57.518646013999955, 70.0728067460002, 70.0728067460002, 51.503485924000074, 59.527525812000135, 59.527525812000135, 53.33777482200014, 47.20461548399999, 47.20461548399999, 634.84282221, 67.77911877000008, 43.020114809999995, 43.020114809999995, 70.0728067460002, 53.394723934000126, 53.394723934000126, 69.84096073800004, 43.020114809999995, 43.020114809999995, 49.266576524000016, 47.09143217999997, 47.09143217999997, 40.90203865000001, 51.275932854000075, 51.275932854000075, 69.78305856199995, 79.97890232400005, 59.29829952399996, 59.29829952399996, 57.46145875800016, 59.35560609600009, 59.35560609600009, 59.240992952000056], \"power_mean\": 56.506654774798236, \"energy_millijoules\": 12685.45235598222, \"energy_joules\": 12.68545235598222, \"coremark_score\": 1113.699845, \"coremarks_per_mhz\": 3.712332816666667, \"ulpmark_cm_score\": 19.70761412241675}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [930.5607036959999, 961.5785467999999, 957.3347689920001, 967.67144712], \"power_mean\": 954.286366652, \"energy_millijoules\": 4771.43183326, \"energy_joules\": 4.771431833259999}}, \"403200\": {\"active\": {\"elapsed_sec\": 167.029289103, \"elapsed_ns\": 167029289103, \"power_samples\": [51.048612693999985, 81.985994334, 81.985994334, 48.983022903999995, 81.86876014200016, 81.86876014200016, 67.49020325000004, 50.991782654000076, 50.991782654000076, 32.37213392400008, 57.11833522200004, 50.991782654000076, 50.991782654000076, 71.43839493000007, 40.50816883799996, 40.50816883799996, 63.305941452000184, 79.80340898400016, 79.80340898400016, 71.32235243400021, 63.13307146500017, 63.13307146500017, 71.38037368200003, 98.187273054, 52.7680503040001, 52.7680503040001, 58.954225229000144, 58.954225229000144, 58.954225229000144, 46.58187537900017, 38.33504969400008, 38.33504969400008, 69.31960385000014, 58.954225229000144, 58.954225229000144, 73.32908527500001, 63.07552674900012, 63.07552674900012, 61.01487598900019, 52.82499941600008, 63.07552674900012, 63.07552674900012, 83.51849377999997, 42.28729142199984, 42.28729142199984, 46.412100422999856, 46.35527683800001, 46.35527683800001, 52.54002045799996, 66.96968168199999, 66.96968168199999, 52.54002045799996, 50.47984647399994, 50.47984647399994, 48.415450822000025, 46.35527683800001, 29.865441629999964, 29.865441629999964, 48.415450822000025, 56.66036842599999, 56.66036842599999, 50.53690942399987, 52.426122234000104, 52.426122234000104, 35.93819315400003, 58.6101509340001, 58.6101509340001, 56.66036842599999, 50.366186394000124, 46.242093534000105, 46.242093534000105, 38.11035923399993, 42.118000674000086, 42.118000674000086, 39.94559645000004, 60.555235486000015, 60.555235486000015, 58.43823121800017, 37.82978363400002, 37.82978363400002, 56.431619402000024, 41.9489408820001, 41.9489408820001, 48.13189720200012, 72.80558191799992, 52.25527489800015, 52.25527489800015, 68.74034478600015, 58.43823121800017, 58.43823121800017, 56.37443214600012, 52.31222401000002, 52.31222401000002, 31.702584973999933, 48.07518647799998, 48.07518647799998, 29.587248690000138, 50.195696274000056, 41.9489408820001, 41.9489408820001, 41.89258761799999, 46.01572692599996, 46.01572692599996, 52.14114327599998, 62.49984374999997, 62.49984374999997, 58.323383210999964, 60.382723202999955, 60.382723202999955, 37.71732341399991, 642.9168257010002, 642.9168257010002, 52.0272450519999, 48.07518647799998, 47.90482188499993, 47.90482188499993, 70.50957937800001, 56.088261492000015, 56.088261492000015, 56.14544874799992, 47.848111160999906, 47.848111160999906, 39.551726638000105, 51.97029594000003, 51.97029594000003, 31.367810498999916, 49.854483124000126, 47.90482188499993, 47.90482188499993, 45.732536733000074, 47.79140043699999, 47.79140043699999, 58.15146349500003, 56.088261492000015, 56.088261492000015, 37.54897805400003, 45.789128385000026, 45.789128385000026, 37.54897805400003, 45.789128385000026, 45.789128385000026, 58.036850350999885, 49.79765308399999, 45.675945080999895, 45.675945080999895, 45.675945080999895, 66.33383072200002, 66.33383072200002, 41.554237077999915, 76.63236822500016, 76.63236822500016, 51.742266094, 72.45650025300006, 72.45650025300006, 68.21875059400008, 49.79765308399999, 45.675945080999895, 45.675945080999895, 41.554237077999915, 47.56432512000015, 47.56432512000015, 68.16084841800011, 76.45699284400007, 76.45699284400007, 70.27725659400005, 57.86469577200012], \"power_mean\": 61.1766233953916, \"energy_millijoules\": 10218.287915454217, \"energy_joules\": 10.218287915454217, \"coremark_score\": 1496.862576, \"coremarks_per_mhz\": 3.7124567857142856, \"ulpmark_cm_score\": 24.465938136456117}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [973.8033544399999, 973.8033544399999, 982.05542393, 969.6234363120001], \"power_mean\": 974.8213922804999, \"energy_millijoules\": 4874.1069614025, \"energy_joules\": 4.8741069614025}}, \"480000\": {\"active\": {\"elapsed_sec\": 140.307586822, \"elapsed_ns\": 140307586822, \"power_samples\": [55.573341813999946, 55.573341813999946, 57.63546948399994, 57.807389199999875, 57.807389199999875, 57.807389199999875, 45.449346539999965, 45.449346539999965, 59.69338012399999, 39.32655940200016, 49.57010001399988, 49.57010001399988, 51.45752053399997, 67.87133753800003, 67.87133753800003, 65.87132907399996, 57.57816291200004, 57.57816291200004, 72.04927802400005, 82.28431208600011, 82.28431208600011, 65.81354597000006, 49.342779854000014, 65.87132907399996, 65.87132907399996, 65.87132907399996, 65.81354597000006, 65.81354597000006, 86.46308656400004, 55.573341813999946, 55.573341813999946, 45.16615634700008, 57.46331490499995, 57.46331490499995, 49.28571690400008, 51.286439799999926, 51.286439799999926, 55.401545672, 67.81319805800013, 49.28571690400008, 49.28571690400008, 65.81354597000006, 65.58217673800004, 65.58217673800004, 47.22382835500002, 71.93275861500013, 71.93275861500013, 61.63596549300007, 55.401545672, 55.401545672, 67.75529588199993, 75.87296650700011, 49.05839674399999, 49.05839674399999, 44.996381391000114, 51.115592463999974, 51.115592463999974, 44.939789738999934, 55.17279664799992, 55.17279664799992, 67.58158935400002, 51.05864335199999, 51.05864335199999, 69.58076382599995, 59.29116526500002, 59.29116526500002, 90.10496356900023, 57.234088617, 59.23373962100004, 59.23373962100004, 69.52274257800013, 71.46739582200007, 71.46739582200007, 81.8729181880002, 77.63755265400005, 77.63755265400005, 85.87285760600003, 59.11865298199996, 59.11865298199996, 651.2427083999997, 46.76991014199996, 46.76991014199996, 69.40646229000004, 67.46578500200008, 61.11782721000009, 61.11782721000009, 71.64205579500003, 75.52245500200002, 75.52245500200002, 69.34844104199999, 71.40925525800003, 71.40925525800003, 71.40925525800003, 59.061227338000094, 59.061227338000094, 48.717183594000176, 46.713199418000045, 56.9473208940002, 56.9473208940002, 50.716715281999996, 56.89001432200007, 56.89001432200007, 56.9473208940002, 44.65659954600005, 44.65659954600005, 67.23393899400014, 69.23239854600001, 69.23239854600001, 69.05809700999998, 67.17603681799994, 67.17603681799994, 79.52263489799998, 85.69593393800005, 79.52263489799998, 79.52263489799998, 71.29297413000006, 65.17745819400011, 65.17745819400011, 64.94608896199998, 46.429413376999946, 46.429413376999946, 44.543416242000035, 71.06017359300006, 71.06017359300006, 60.82986779099997, 60.77232307500003, 60.77232307500003, 71.00203302900013, 81.16760272800013, 89.57156391900003, 89.57156391900003, 77.16933066900015, 79.22930918400016, 79.22930918400016, 58.659012479000125, 95.74343165400012, 95.74343165400012, 60.59968892699999, 70.88575190100016], \"power_mean\": 67.28630486524463, \"energy_millijoules\": 9440.77906181187, \"energy_joules\": 9.44077906181187, \"coremark_score\": 1781.93404, \"coremarks_per_mhz\": 3.7123625833333334, \"ulpmark_cm_score\": 26.480865441630204}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [988.8199216419999, 978.521384139, 982.6433305300001, 982.6433305300001], \"power_mean\": 983.15699171025, \"energy_millijoules\": 4915.78495855125, \"energy_joules\": 4.91578495855125}}, \"576000\": {\"active\": {\"elapsed_sec\": 116.922745268, \"elapsed_ns\": 116922745268, \"power_samples\": [64.71495654600005, 64.71495654600005, 76.99383732900014, 85.22389579100013, 85.22389579100013, 74.82167124900013, 87.22021082700007, 74.88004995699998, 74.88004995699998, 64.59939033800003, 101.67558890900011, 101.67558890900011, 70.71133020900015, 70.71133020900015, 70.71133020900015, 78.9362237040001, 87.16111719900005, 87.16111719900005, 70.71133020900015, 80.8736811660001, 80.8736811660001, 76.87684176900007, 99.50056314899996, 85.16492123499995, 85.16492123499995, 76.93533954899999, 70.59481080000012, 70.59481080000012, 66.59677775400007, 76.75960646400017, 76.75960646400017, 85.10594667900011, 74.64629586799992, 74.64629586799992, 70.53667023600008, 70.47852967200015, 58.37188425900001, 58.37188425900001, 91.09321976000012, 56.37402031099998, 56.37402031099998, 78.9362237040001, 54.028348405999964, 54.028348405999964, 54.028348405999964, 76.70110868400002, 76.70110868400002, 64.36802110600001, 58.19937197599995, 58.19937197599995, 58.19937197599995, 70.47852967200015, 60.139095360000056, 60.139095360000056, 60.139095360000056, 70.47852967200015, 70.47852967200015, 89.03840694400003, 64.25245489800022, 64.25245489800022, 56.02994601600017, 78.64289799000017, 78.64289799000017, 68.41962549000004, 76.6426109040001, 49.91896091800004, 49.91896091800004, 56.08725258800007, 58.084520688000225, 58.084520688000225, 78.5256637980001, 66.19122521800011, 66.19122521800011, 58.084520688000225, 645.3041943060001, 645.3041943060001, 66.19122521800011, 66.075183562, 66.075183562, 59.90868065699999, 70.30410798000014, 64.02108566599998, 64.02108566599998, 64.02108566599998, 66.075183562, 66.075183562, 86.56969654500017, 57.79715711699998, 57.79715711699998, 57.79715711699998, 63.84773635399995, 63.84773635399995, 63.84773635399995, 47.579884063999884, 47.579884063999884, 70.18758857099999, 59.73604650899995, 49.577032848000044, 49.577032848000044, 47.40939394399993, 63.84773635399995, 63.84773635399995, 45.35144477899996, 53.684990495999955, 53.684990495999955, 84.57469227700005, 55.571258577000094, 55.571258577000094, 67.83917521800015, 64.02108566599998, 53.742177751999975, 53.742177751999975, 59.67850179300012, 63.78995325000005, 63.78995325000005, 65.84357485800012], \"power_mean\": 77.69638952673282, \"energy_millijoules\": 9084.475160877484, \"energy_joules\": 9.084475160877485, \"coremark_score\": 2138.323896, \"coremarks_per_mhz\": 3.712367875, \"ulpmark_cm_score\": 27.519476422438927}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [989.5067071489999, 970.933797372, 999.7909403919999, 999.7909403919999], \"power_mean\": 990.0055963262499, \"energy_millijoules\": 4950.0279816312495, \"energy_joules\": 4.95002798163125}}, \"652800\": {\"active\": {\"elapsed_sec\": 103.161595481, \"elapsed_ns\": 103161595481, \"power_samples\": [75.99865583400015, 47.12501083400002, 47.12501083400002, 59.44808709000006, 63.674150226000165, 63.674150226000165, 49.178155666000066, 65.61172885000019, 65.61172885000019, 73.82851544200003, 80.10962953800015, 80.10962953800015, 55.456410570000116, 69.72222577800017, 53.39881984200008, 53.39881984200008, 49.178155666000066, 59.39054237400012, 59.39054237400012, 65.55382667400022, 69.66408521400012, 69.66408521400012, 77.82177817800005, 79.87468486600005, 79.87468486600005, 55.22718428200005, 63.50080091400025, 73.536382645, 73.536382645, 55.22718428200005, 69.66408521400012, 69.66408521400012, 75.76466471399999, 75.70616693400018, 75.70616693400018, 59.27545294200013, 75.76466471399999, 75.76466471399999, 69.54780408600016, 59.16012767099994, 59.16012767099994, 63.38523470600012, 63.38523470600012, 55.16987771000015, 55.16987771000015, 63.269431682000004, 59.16012767099994, 59.16012767099994, 55.055029702999946, 69.37314411300008, 69.37314411300008, 75.53043384900013, 48.83622759600007, 48.83622759600007, 63.21164857800011, 63.21164857800011, 63.21164857800011, 65.14827413800003, 52.94108742000003, 63.269431682000004, 63.269431682000004, 69.256862985, 54.88310998700001, 54.88310998700001, 63.096082369999976, 73.361246521, 73.361246521, 56.935301754999955, 56.935301754999955, 56.935301754999955, 54.768496843000094, 54.768496843000094, 46.49964748399998, 46.49964748399998, 73.24448910500007, 67.08442341000011, 67.08442341000011, 64.97456761000001, 73.12749243200005, 73.12749243200005, 69.08244129299999, 56.76302482300002, 56.76302482300002, 48.49429952599996, 75.23794494899994, 75.23794494899994, 77.29398408000009, 56.76302482300002, 67.02640216200007, 67.02640216200007, 48.49429952599996, 58.69953410400001, 58.69953410400001, 655.548686322, 69.024062448, 69.024062448, 56.76302482300002, 66.96814312200001, 66.96814312200001, 58.69953410400001, 62.806930034000175, 64.91642812999999], \"power_mean\": 69.48219574519614, \"energy_millijoules\": 7167.894170597584, \"energy_joules\": 7.167894170597584, \"coremark_score\": 2423.584384, \"coremarks_per_mhz\": 3.7125986274509803, \"ulpmark_cm_score\": 34.877747083026144}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [998.864030968, 978.424078226, 957.8680838280001, 996.925736096], \"power_mean\": 983.0204822795, \"energy_millijoules\": 4915.1024113975, \"energy_joules\": 4.9151024113975}}, \"748800\": {\"active\": {\"elapsed_sec\": 89.935225643, \"elapsed_ns\": 89935225643, \"power_samples\": [-2.6119020049999335, 77.05927546199996, 68.84964075599999, 73.06911372400009, 73.06911372400009, 62.69136382600004, 85.20981654000013, 85.20981654000013, 79.05189707000011, 68.79150019200017, 68.79150019200017, 85.20981654000013, 89.25296217599998, 89.25296217599998, 83.04062872400016, 83.09960328, 83.09960328, 64.62691725000002, 58.41181052400009, 66.62001563399997, 66.62001563399997, 74.82822074399996, 58.41181052400009, 58.41181052400009, 87.02396176900027, 76.76594974800025, 76.76594974800025, 66.62001563399997, 62.518014514000015, 62.518014514000015, 72.66022351100014, 82.92243791300018, 74.71098543900018, 74.71098543900018, 78.75797550800007, 72.60184480300006, 72.60184480300006, 82.863463357, 76.64871555600007, 76.64871555600007, 66.44571409800005, 82.92243791300018, 82.92243791300018, 76.7073326520001, 76.7073326520001, 76.7073326520001, 86.90553636900017, 78.69923934000008, 68.5005590909999, 68.5005590909999, 66.44571409800005, 84.67773170100008, 84.67773170100008, 97.16655907500001, 86.96474906900005, 86.96474906900005, 68.44241852700009, 64.33716906600011, 64.33716906600011, 98.97712677400011, 72.3683299710001, 72.3683299710001, 68.26799683500008, 64.10532305800018, 72.30971200600015, 72.30971200600015, 76.47286426800008, 72.3683299710001, 72.3683299710001, 76.47286426800008, 82.62756513300008, 82.62756513300008, 98.97712677400011, 84.559302258, 84.559302258, 66.097348818, 74.35975901400013, 76.47286426800008, 76.47286426800008, 102.95688926199989, 86.55001749400014, 86.55001749400014, 72.25133329799996, 82.50937432199999, 82.50937432199999, 68.093336862, 61.93970984199996, 61.93970984199996, 63.98951870600001], \"power_mean\": 75.06596384778659, \"energy_millijoules\": 6751.074396759967, \"energy_joules\": 6.751074396759967, \"coremark_score\": 2779.970866, \"coremarks_per_mhz\": 3.712567930021368, \"ulpmark_cm_score\": 37.03114279409839}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [948.7651674150001, 936.446382144, 936.446382144, 948.7651674150001], \"power_mean\": 942.6057747795, \"energy_millijoules\": 4713.0288738975005, \"energy_joules\": 4.713028873897501}}, \"825600\": {\"active\": {\"elapsed_sec\": 81.572074188, \"elapsed_ns\": 81572074188, \"power_samples\": [102.83655773399994, 84.38202137399992, 84.38202137399992, 96.68784557399988, 67.91891516999999, 108.98946983400003, 108.98946983400003, 86.31316669400019, 86.31316669400019, 86.31316669400019, 102.83655773399994, 82.03733617500018, 82.03733617500018, 75.8862128400001, 84.2638341180002, 84.2638341180002, 65.80724257800011, 73.95027455399998, 73.95027455399998, 76.120921458, 76.120921458, 78.05290077000006, 78.05290077000006, 94.33538412600012, 76.00368726600004, 76.00368726600004, 86.25395399400009, 651.3781112759999, 651.3781112759999, 82.15552698599993, 82.27347609800017, 82.27347609800017, 84.02721741900018, 71.78406437700005, 71.78406437700005, 104.58865592400014, 75.82759574400029, 92.16726893399994, 92.16726893399994, 86.01686051900003, 86.07607321900025, 86.07607321900025, 86.07607321900025, 61.53499129800002, 61.53499129800002, 77.81771537600002, 86.07607321900025, 86.07607321900025, 96.26894062100007, 86.01686051900003, 92.10769877399991, 92.10769877399991, 96.26894062100007, 67.56983350500002, 67.56983350500002, 77.75897920800003, 73.65754590900008, 73.65754590900008, 77.75897920800003, 94.15631642999995, 94.15631642999995, 83.67241346400021, 81.86041250700009, 81.86041250700009, 73.65754590900008, 85.7205543440001, 87.76869522400023, 87.76869522400023, 77.64150687200004, 91.8691739940001, 91.8691739940001, 75.47565293400021, 81.74246339500007, 81.74246339500007, 91.9885584540001, 81.62427258400021, 81.62427258400021, 83.61331983600007, 73.4233150440001, 73.4233150440001, 81.62427258400021], \"power_mean\": 97.24961484277786, \"energy_millijoules\": 7932.8527967095015, \"energy_joules\": 7.9328527967095015, \"coremark_score\": 3065.002575, \"coremarks_per_mhz\": 3.7124546693313953, \"ulpmark_cm_score\": 31.51451393421777}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [948.1594716899999, 948.1594716899999, 939.7868677920001, 950.1596323800001], \"power_mean\": 946.566360888, \"energy_millijoules\": 4732.83180444, \"energy_joules\": 4.73283180444}}, \"902400\": {\"active\": {\"elapsed_sec\": 74.626528982, \"elapsed_ns\": 74626528982, \"power_samples\": [61.419425090000004, 81.38837435999994, 95.79022712000017, 95.79022712000017, 85.54291624400014, 101.93357811200019, 101.93357811200019, 87.59069990800015, 81.38837435999994, 81.38837435999994, 85.48370354400004, 75.24118454999996, 75.24118454999996, 75.18256745400004, 87.47203636400013, 87.47203636400013, 87.47203636400013, 71.08328062400005, 83.43603895199999, 83.43603895199999, 85.42449084400005, 91.571323194, 91.571323194, 81.27018354900008, 103.62360050400014, 103.62360050400014, 103.80445574399994, 91.571323194, 91.571323194, 85.36503546900008, 81.27018354900008, 81.27018354900008, 87.23446611300017, 93.37986715800014, 87.41246142900013, 87.41246142900013, 93.37986715800014, 62.71495892199994, 62.71495892199994, 91.33279841399997, 91.39236857399999, 91.39236857399999, 91.33279841399997, 93.37986715800014, 93.37986715800014, 81.09325988100011, 91.27322825400017, 91.27322825400017, 87.23446611300017, 81.03428532500027, 85.12818466900012, 85.12818466900012, 85.12818466900012, 66.69724848300018, 66.69724848300018, 83.08123499700014, 72.83809749900024, 72.83809749900024, 83.14032862500017, 83.022141369, 83.022141369, 103.50303034399997, 121.93289439400007, 87.29379788500012, 87.29379788500012, 91.21365809399992, 84.95030389400017, 84.95030389400017, 80.97531076900009, 76.87745524399998, 76.87745524399998, 76.87745524399998, 93.14086560200019, 93.14086560200019], \"power_mean\": 85.96944287389198, \"energy_millijoules\": 6415.601120194893, \"energy_joules\": 6.415601120194893, \"coremark_score\": 3350.308228, \"coremarks_per_mhz\": 3.712664259751773, \"ulpmark_cm_score\": 38.96750987418081}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [934.978856448, 934.978856448, 957.5328026159998, 953.4855766000002], \"power_mean\": 945.244023028, \"energy_millijoules\": 4726.22011514, \"energy_joules\": 4.72622011514}}, \"979200\": {\"active\": {\"elapsed_sec\": 68.774366692, \"elapsed_ns\": 68774366692, \"power_samples\": [34.20648231400003, 82.844618298, 93.08117636999998, 93.08117636999998, 105.24759262600003, 107.29382737800017, 107.29382737800017, 111.39048998600003, 92.96179790600002, 97.0584605140001, 97.0584605140001, 101.27126154599989, 103.02050263400008, 103.02050263400008, 90.9155631540001, 82.72643104200017, 82.72643104200017, 86.700237002, 111.39048998600003, 111.39048998600003, 96.938605274, 123.67209160200002, 111.20820515000003, 111.20820515000003, 111.20820515000003, 94.892608666, 94.892608666, 90.9155631540001, 95.13184285799991, 95.13184285799991, 127.58361018200014, 76.40732517800018, 76.40732517800018, 86.64090523000027, 92.72279635000007, 92.72279635000007, 94.83280011800014, 107.11225770600015, 100.91002038099998, 100.91002038099998, 94.77274645299997, 90.67703837400006, 90.67703837400006, 84.53557231900027, 117.28866057000016, 117.28866057000016, 90.73685267400003, 92.78273021000007, 92.78273021000007, 103.02050263400008, 76.34834828800012, 76.34834828800012, 82.430720715, 86.52199852299998, 117.22754149800005, 117.22754149800005, 100.72952308900005, 100.72952308900005, 100.72952308900005, 74.12673902400024, 90.49832789400011, 90.49832789400011, 110.96490967900002, 117.10530335400006, 117.10530335400006, 92.66310711800008, 94.59332080900015, 80.2081581430001], \"power_mean\": 96.71689047052948, \"energy_millijoules\": 6651.642890530195, \"energy_joules\": 6.651642890530194, \"coremark_score\": 3635.358955, \"coremarks_per_mhz\": 3.712580632148693, \"ulpmark_cm_score\": 37.58469961698031}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [965.06001444, 952.7649199000001, 952.7649199000001, 1534.2747232720003], \"power_mean\": 1101.216144378, \"energy_millijoules\": 5506.080721890001, \"energy_joules\": 5.506080721890001}}, \"1056000\": {\"active\": {\"elapsed_sec\": 63.772096225, \"elapsed_ns\": 63772096225, \"power_samples\": [54.23464903000013, 102.65854508400014, 94.53351226100006, 104.70370770000011, 104.70370770000011, 94.53351226100006, 90.37918757400007, 90.37918757400007, 102.718830164, 110.84338645500009, 110.84338645500009, 104.76411185199993, 131.24563227199985, 131.24563227199985, 116.92194613799973, 102.59826000399983, 102.59826000399983, 121.01203322599997, 104.70370770000011, 121.19610487400007, 121.19610487400007, 114.87271193100003, 114.75046241999996, 114.75046241999996, 100.42844768799989, 122.8109196659999, 122.8109196659999, 100.36828192400014, 116.79945750600007, 116.79945750600007, 120.88906732999988, 112.70565750799994, 112.82766838700002, 106.68834709199984, 110.66085259599993, 120.76635289800004, 120.76635289800004, 104.40143938199992, 112.64477682400013, 112.64477682400013, 124.85967612000002, 120.58228124999994, 120.58228124999994, 106.264436478, 120.76635289800004, 120.76635289800004, 102.35687261400005, 120.76635289800004, 130.99756610999987, 130.99756610999987, 110.539329372, 102.41715769400014, 102.41715769400014, 110.539329372, 104.22022692600001, 104.22022692600001, 104.22022692600001, 114.38421388500012, 114.38421388500012, 114.32321412900012, 112.40125408799997, 112.40125408799997, 112.40125408799997], \"power_mean\": 111.03505739109524, \"energy_millijoules\": 7080.938364293323, \"energy_joules\": 7.080938364293322, \"coremark_score\": 3920.523155, \"coremarks_per_mhz\": 3.7126166240530303, \"ulpmark_cm_score\": 35.30605509301732}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [956.4193467749999, 974.7355569560001, 974.7355569560001, 987.0234964360001], \"power_mean\": 973.2284892807501, \"energy_millijoules\": 4866.14244640375, \"energy_joules\": 4.86614244640375}}, \"1132800\": {\"active\": {\"elapsed_sec\": 59.450477269, \"elapsed_ns\": 59450477269, \"power_samples\": [83.76556454400009, 122.50328627400006, 122.50328627400006, 120.52067256999987, 124.61304126300013, 106.14314198399995, 106.14314198399995, 130.68754688399997, 142.95556086900012, 142.95556086900012, 122.44180998599984, 116.31025444199997, 116.31025444199997, 130.62559382000006, 120.27524370599997, 120.27524370599997, 122.50328627400006, 140.72394394499986, 134.52672389199995, 134.52672389199995, 146.79606666200004, 144.81535908600006, 144.81535908600006, 134.83767993200001, 130.50168769200002, 130.50168769200002, 140.66139527699977, 140.66139527699977, 140.66139527699977, 122.25738112200008, 134.52672389199995, 134.52672389199995, 134.5889151, 130.50168769200002, 124.30506324300006, 124.30506324300006, 136.57021852399987, 134.52672389199995, 134.52672389199995, 136.57021852399987, 126.28684319899992, 126.28684319899992, 136.50790824400008, 120.15252927400013, 120.15252927400013, 136.57021852399987, 130.37778156399997, 130.37778156399997, 124.24346763900019, 103.73674615200014, 120.0911720580001, 120.0911720580001, 105.78000264000013, 122.1344285460001, 122.1344285460001, 130.19166846600012, 109.87070261700012, 109.87070261700012, 109.87070261700012], \"power_mean\": 126.56771151550848, \"energy_millijoules\": 7524.510856442086, \"energy_joules\": 7.524510856442086, \"coremark_score\": 4205.497426, \"coremarks_per_mhz\": 3.7124800723870055, \"ulpmark_cm_score\": 33.224751052882496}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [957.963901405, 957.963901405, 957.796628425, 951.6008345500001], \"power_mean\": 956.33131644625, \"energy_millijoules\": 4781.65658223125, \"energy_joules\": 4.78165658223125}}, \"1228800\": {\"active\": {\"elapsed_sec\": 54.803525604, \"elapsed_ns\": 54803525604, \"power_samples\": [116.0046590820001, 130.19166846600012, 130.19166846600012, 140.41094425799986, 132.23468632200013, 132.23468632200013, 130.19166846600012, 123.99683278200007, 134.15332176200025, 134.15332176200025, 132.11054205000016, 140.34839559, 140.34839559, 132.23468632200013, 140.22329825400004, 140.22329825400004, 136.13379119400008, 132.17261418600003, 132.17261418600003, 119.84549173000016, 136.13379119400008, 136.13379119400008, 136.1961014740001, 134.15332176200025, 123.68860232100008, 123.68860232100008, 125.91630221399998, 119.7841345139999, 119.7841345139999, 136.13379119400008, 115.51520552999989, 115.51520552999989, 123.87364157399986, 136.13379119400008, 136.13379119400008, 150.25109563000012, 129.69579004800005, 139.9728472349999, 139.9728472349999, 144.06139976600014, 125.66919058100018, 125.66919058100018, 156.2551860210002, 139.9728472349999, 139.9728472349999, 141.95236335900006, 121.58063804999995, 121.58063804999995, 121.51916176199995, 131.73785484000007, 131.73785484000007, 125.60747590500011, 149.87222999799985, 123.38062430100024], \"power_mean\": 132.01523843407412, \"energy_millijoules\": 7234.900499639946, \"energy_joules\": 7.234900499639946, \"coremark_score\": 4562.043796, \"coremarks_per_mhz\": 3.7126007454427086, \"ulpmark_cm_score\": 34.554725391515966}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [977.92128214, 977.92128214, 967.6331198159999, 953.3682923400002], \"power_mean\": 969.210994109, \"energy_millijoules\": 4846.054970545, \"energy_joules\": 4.8460549705450005}}, \"1324800\": {\"active\": {\"elapsed_sec\": 50.833274981, \"elapsed_ns\": 50833274981, \"power_samples\": [7.6492602030001535, 141.70169239899985, 145.9148652460002, 149.87222999799985, 149.87222999799985, 780.1897526700003, 149.87222999799985, 149.87222999799985, 153.89594816399983, 143.68442010599995, 143.68442010599995, 156.0011790929999, 145.85195911800008, 145.85195911800008, 149.87222999799985, 139.5972988799998, 141.63876782399996, 141.63876782399996, 141.63876782399996, 139.5972988799998, 139.5972988799998, 145.7258890500001, 141.63876782399996, 141.63876782399996, 135.38555709400032, 143.5588459940003, 143.5588459940003, 133.46870871000021, 143.68442010599995, 143.68442010599995, 145.6000767940003, 155.93741710799998, 149.68253839400006, 149.68253839400006, 139.5972988799998, 153.70580018399994, 153.70580018399994, 153.64241752400005, 143.49605893800015, 143.49605893800015, 145.6000767940003, 149.68253839400006, 149.68253839400006, 145.53717066599995, 155.81041364400005, 155.81041364400005, 159.8333179739999, 151.6646884559999, 145.47426453800006, 145.47426453800006], \"power_mean\": 156.45909442814002, \"energy_millijoules\": 7953.328170343887, \"energy_joules\": 7.953328170343887, \"coremark_score\": 4918.355302, \"coremarks_per_mhz\": 3.712526647041063, \"ulpmark_cm_score\": 31.43338167940711}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [932.31522272, 934.35859828, 934.35859828, 956.68078968], \"power_mean\": 939.42830224, \"energy_millijoules\": 4697.1415111999995, \"energy_joules\": 4.6971415112}}, \"1420800\": {\"active\": {\"elapsed_sec\": 47.399295191, \"elapsed_ns\": 47399295191, \"power_samples\": [1.2972920500001237, 153.64241752400005, 135.19862625400026, 135.19862625400026, 159.578096264, 169.91438777200017, 169.91438777200017, 153.45200977899992, 153.45200977899992, 153.45200977899992, 141.32542912399992, 163.78758490200028, 163.78758490200028, 169.7854526530001, 159.70583773400028, 163.65936616800002, 163.65936616800002, 163.53140963999988, 161.61873121600013, 161.61873121600013, 163.46743137600004, 165.7041827490001, 165.7041827490001, 143.37048482600005, 161.61873121600013, 161.61873121600013, 155.49264473100004, 159.8333179739999, 159.8333179739999, 163.78758490200028, 171.70135915400022, 163.53140963999988, 163.53140963999988, 165.57598758899996, 161.74671131800017, 161.74671131800017, 163.53140963999988, 149.2402697020001, 149.2402697020001, 155.3656412669999, 173.67718185000024, 173.67718185000024, 153.26186179900003, 159.38687590400002, 159.45061602400017, 159.45061602400017, 151.22158406300002], \"power_mean\": 156.02866091802136, \"energy_millijoules\": 7395.648557109739, \"energy_joules\": 7.395648557109739, \"coremark_score\": 5274.818019, \"coremarks_per_mhz\": 3.7125689885979734, \"ulpmark_cm_score\": 33.803661446252036}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [932.0433597440001, 932.0433597440001, 950.381349, 936.183485376], \"power_mean\": 937.662888466, \"energy_millijoules\": 4688.31444233, \"energy_joules\": 4.68831444233}}, \"1516800\": {\"active\": {\"elapsed_sec\": 44.399439775, \"elapsed_ns\": 44399439775, \"power_samples\": [163.46743137600004, 163.33947484800012, 163.33947484800012, 144.90785157400012, 165.3836948490001, 165.3836948490001, 160.91601838600025, 153.008071394, 153.008071394, 151.03179329900001, 169.59244548100003, 169.59244548100003, 155.11163433900003, 169.33483891400022, 169.33483891400022, 154.98437062200026, 171.37881979400015, 165.25523699400003, 165.25523699400003, 159.0679140740002, 163.0193213220001, 163.0193213220001, 165.06294425400017, 162.95534305800027, 162.95534305800027, 163.0193213220001, 152.81792341400012, 152.81792341400012, 160.91601838600025, 160.91601838600025, 160.91601838600025, 173.16032430600023, 175.13495579400012, 800.127278993, 800.127278993, 164.93474909400004, 160.8521591939999, 160.8521591939999, 164.93474909400004, 154.73036369399995, 154.73036369399995, 152.69115809400012, 175.13495579400012, 175.13495579400012], \"power_mean\": 191.2194160563183, \"energy_millijoules\": 8490.034947003172, \"energy_joules\": 8.490034947003172, \"coremark_score\": 5631.264782, \"coremarks_per_mhz\": 3.7125954522679327, \"ulpmark_cm_score\": 29.44628632986316}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [952.1461857420002, 939.8896124310002, 931.608512576, 931.608512576], \"power_mean\": 938.8132058312501, \"energy_millijoules\": 4694.066029156251, \"energy_joules\": 4.694066029156251}}, \"1612800\": {\"active\": {\"elapsed_sec\": 41.755152744, \"elapsed_ns\": 41755152744, \"power_samples\": [0.534585858000014, 173.03117608200012, 181.19170065000014, 181.19170065000014, 170.99208955400024, 162.6991677960001, 162.63518953200003, 162.63518953200003, 172.8371890980003, 168.7555537269999, 168.7555537269999, 160.5964607080001, 152.37398502899998, 152.37398502899998, 164.67809607900006, 168.94882457000006, 168.94882457000006, 158.49399176400004, 188.76194352599998, 188.76194352599998, 190.86560367800018, 174.81122473800008, 170.5406401140002, 170.5406401140002, 170.5406401140002, 170.5406401140002, 170.5406401140002, 172.57889265000028, 178.69782700500002, 178.69782700500002, 164.6139984990001, 178.69782700500002, 178.69782700500002, 168.43361143599998, 180.67076229600013, 180.67076229600013, 168.43361143599998, 174.48749368200004, 180.7360795410001, 180.7360795410001, 164.35734548400012], \"power_mean\": 167.7582225579025, \"energy_millijoules\": 7004.770206967166, \"energy_joules\": 7.004770206967166, \"coremark_score\": 5987.737114, \"coremarks_per_mhz\": 3.7126346192956348, \"ulpmark_cm_score\": 35.689964497527995}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [935.309978784, 935.309978784, 935.309978784, 953.635821186], \"power_mean\": 939.8914393845, \"energy_millijoules\": 4699.4571969225, \"energy_joules\": 4.6994571969225}}, \"1689600\": {\"active\": {\"elapsed_sec\": 39.858612537, \"elapsed_ns\": 39858612537, \"power_samples\": [192.64485090000005, 168.36927571199988, 168.36927571199988, 174.48749368200004, 188.76194352599998, 188.76194352599998, 160.2130438380001, 188.76194352599998, 188.76194352599998, 174.42280049800036, 188.56536199799996, 188.56536199799996, 174.42280049800036, 188.49983482200003, 184.48587309599986, 184.48587309599986, 182.38304669200022, 174.22872094600018, 174.22872094600018, 178.3079714600002, 159.9576070700001, 159.9576070700001, 184.48587309599986, 172.25575744200012, 172.25575744200012, 184.420584308, 170.21810075400015, 170.21810075400015, 180.3455090760002, 172.12660921800023, 168.04759709199982, 168.04759709199982, 172.19118333000017, 170.08919067400018, 170.08919067400018, 170.08919067400018, 161.93116642200005, 161.93116642200005, 170.08919067400018], \"power_mean\": 175.65320664825649, \"energy_millijoules\": 7001.293104674448, \"energy_joules\": 7.001293104674448, \"coremark_score\": 6272.581293, \"coremarks_per_mhz\": 3.71246525390625, \"ulpmark_cm_score\": 35.707689459977935}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [939.0670942730001, 928.748926303, 965.4905410039999, 949.1618634499999], \"power_mean\": 945.6171062574999, \"energy_millijoules\": 4728.085531287499, \"energy_joules\": 4.728085531287499}}, \"1766400\": {\"active\": {\"elapsed_sec\": 38.125326913, \"elapsed_ns\": 38125326913, \"power_samples\": [184.29000673200005, 174.09933457800014, 174.09933457800014, 182.12210073900008, 178.0479790590001, 178.0479790590001, 198.42693606900013, 184.09387279099985, 200.60092688999987, 200.60092688999987, 184.09387279099985, 188.17193038799985, 188.17193038799985, 173.840296706, 169.8311063540001, 169.8311063540001, 151.42272559900005, 153.459548295, 153.459548295, 171.73889989800034, 171.73889989800034, 171.73889989800034, 188.040876036, 198.29469050900013, 157.28214579400026, 157.28214579400026, 824.4746186950002, 167.66131907700026, 167.66131907700026, 179.6944694340001, 189.8147256259998, 189.8147256259998, 159.3184917140003, 173.5812588340001, 173.5812588340001, 181.47013648999985, 167.40371251, 167.40371251], \"power_mean\": 193.2817833897106, \"energy_millijoules\": 7368.93117806037, \"energy_joules\": 7.36893117806037, \"coremark_score\": 6558.065108, \"coremarks_per_mhz\": 3.712672728713768, \"ulpmark_cm_score\": 33.92622267179381}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [948.8292352000001, 948.8292352000001, 934.5456046080002, 950.8685598720001], \"power_mean\": 945.7681587200001, \"energy_millijoules\": 4728.8407936, \"energy_joules\": 4.728840793600001}}}}, \"4\": {\"freqs\": {\"825600\": {\"active\": {\"elapsed_sec\": 48.642020711, \"elapsed_ns\": 48642020711, \"power_samples\": [-2.6480831819999366, 177.52826036999988, 183.70187248599984, 207.95312916199998, 207.95312916199998, 207.886410534, 181.665645638, 181.665645638, 201.77498723399992, 181.6004759220001, 181.6004759220001, 183.50600612200003, 193.69369800999982, 193.69369800999982, 199.93796296199992, 201.77498723399992, 201.77498723399992, 189.61778688199968, 199.73923667399993, 183.44071733400017, 183.44071733400017, 197.69931449400008, 187.58191724999995, 187.58191724999995, 189.552140634, 191.5262972500003, 191.5262972500003, 189.48649438600012, 189.48649438600012, 189.48649438600012, 187.45086289800008, 187.45086289800008, 191.32873102700012, 191.32873102700012, 199.47399680600017, 172.9987550420002, 172.9987550420002, 193.49577408300013, 179.10874703699994, 179.10874703699994, 177.2685340820002, 197.43455237900014, 197.43455237900014, 193.29812017500024, 191.2629654630001, 191.2629654630001, 197.36842959900002, 191.2629654630001], \"power_mean\": 186.38679503891672, \"energy_millijoules\": 9066.2303445399, \"energy_joules\": 9.0662303445399, \"coremark_score\": 5141.388175, \"coremarks_per_mhz\": 6.227456607315891, \"ulpmark_cm_score\": 27.574856417646778}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [932.233821112, 938.3541853070001, 938.3541853070001, 934.217983728], \"power_mean\": 935.7900438635, \"energy_millijoules\": 4678.9502193175, \"energy_joules\": 4.6789502193175005}}, \"902400\": {\"active\": {\"elapsed_sec\": 44.457703212, \"elapsed_ns\": 44457703212, \"power_samples\": [199.40775470999995, 191.2629654630001, 191.2629654630001, 223.84212245100036, 201.31018708600016, 201.31018708600016, 203.3451036539999, 203.41158389399982, 203.41158389399982, 189.15799410399984, 178.91359510500013, 178.91359510500013, 176.7485492799998, 178.783227216, 178.783227216, 199.01003064999998, 191.1971998990001, 209.1863985440001, 209.1863985440001, 186.79505402999996, 190.8023369839999, 190.8023369839999, 178.58807528399996, 189.09234785599995, 189.09234785599995, 186.7295268539998, 196.77305358399997, 196.77305358399997, 190.8023369839999, 190.67080585600013, 213.05821879799998, 213.05821879799998, 206.95180286800007, 219.16463472800012, 219.16463472800012, 211.1538815639998, 186.7295268539998, 186.7295268539998, 178.45797399600008, 217.1263839500001, 217.1263839500001, 202.81298927399973, 198.74506226599976, 198.74506226599976], \"power_mean\": 196.91796013895453, \"energy_millijoules\": 8754.520228970086, \"energy_joules\": 8.754520228970087, \"coremark_score\": 5625.182818, \"coremarks_per_mhz\": 6.2335802504432625, \"ulpmark_cm_score\": 28.556676261105732}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [943.977864924, 939.8434523540001, 950.090834988, 950.090834988], \"power_mean\": 946.0007468135, \"energy_millijoules\": 4730.0037340675, \"energy_joules\": 4.7300037340675}}, \"979200\": {\"active\": {\"elapsed_sec\": 41.008235036, \"elapsed_ns\": 41008235036, \"power_samples\": [16.913125140000034, 202.7462365739999, 196.70693080399985, 221.13116468399983, 221.13116468399983, 202.81298927399973, 218.69232352500023, 218.69232352500023, 218.7597570730003, 196.4421686889999, 196.4421686889999, 200.51330912599985, 862.414839146, 862.414839146, 216.78953691200002, 198.413580302, 198.413580302, 206.5512176630001, 218.8271906209999, 198.34733820600002, 198.34733820600002, 198.47982239799978, 206.5512176630001, 206.5512176630001, 192.30931059700004, 196.30992312900014, 196.30992312900014, 208.51774761900026, 196.24380034900003, 196.24380034900003, 210.48403943100004, 230.62310932999992, 202.34735513399994, 202.34735513399994, 202.21412219399997, 220.5226373940003, 220.5226373940003, 192.04550203400015, 206.2840697140001, 206.2840697140001], \"power_mean\": 234.06736956650002, \"energy_millijoules\": 9598.689705441308, \"energy_joules\": 9.598689705441307, \"coremark_score\": 6098.453432, \"coremarks_per_mhz\": 6.227995743464052, \"ulpmark_cm_score\": 26.0452215533418}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [929.2710698880002, 929.2710698880002, 929.2710698880002, 943.5363424020001], \"power_mean\": 932.8373880165002, \"energy_millijoules\": 4664.186940082501, \"energy_joules\": 4.664186940082501}}, \"1056000\": {\"active\": {\"elapsed_sec\": 38.117938371, \"elapsed_ns\": 38117938371, \"power_samples\": [4.249353769999971, 220.45508477400006, 216.38537564199999, 216.38537564199999, 216.2507471780001, 222.48785658200006, 222.48785658200006, 226.5575657139999, 228.31822091399988, 220.31997953400003, 220.31997953400003, 226.21773699400012, 220.31997953400003, 220.31997953400003, 228.24991295400002, 236.3142754050001, 236.3142754050001, 220.18487429400022, 220.45508477400006, 220.45508477400006, 218.0174353110002, 232.25016162900022, 232.25016162900022, 226.28592539399995, 218.0174353110002, 211.85002450799982, 211.85002450799982, 220.04949219900016, 209.88087965700026, 209.88087965700026, 222.01387739500012, 225.94609667400016, 225.94609667400016, 227.97779634600022, 221.87853401100017, 221.87853401100017, 227.97779634600022], \"power_mean\": 216.40539867010818, \"energy_millijoules\": 8248.92764965887, \"energy_joules\": 8.24892764965887, \"coremark_score\": 6561.335363, \"coremarks_per_mhz\": 6.213385760416667, \"ulpmark_cm_score\": 30.306969659303366}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [947.166321, 947.166321, 947.166321, 936.9833965800001], \"power_mean\": 944.6205898950001, \"energy_millijoules\": 4723.102949475, \"energy_joules\": 4.723102949475}}, \"1209600\": {\"active\": {\"elapsed_sec\": 33.272851133, \"elapsed_ns\": 33272851133, \"power_samples\": [165.60125755399997, 229.8731995700001, 235.97174698500032, 235.97174698500032, 258.2604960780001, 239.97008880000033, 239.97008880000033, 242.00143125600005, 246.13321745600012, 246.13321745600012, 256.2988507580002, 258.0507613220003, 258.0507613220003, 239.6948307739998, 239.7635748460001, 239.7635748460001, 256.0894737059999, 238.00320851300023, 256.0894737059999, 256.0894737059999, 249.9226604600002, 251.88418646399975, 251.88418646399975, 251.88418646399975, 271.99337749400013, 271.99337749400013, 268.1435967340002, 237.659803484, 237.659803484, 257.77149649, 241.51910702199996, 241.51910702199996, 251.6758102199998], \"power_mean\": 246.16033859803036, \"energy_millijoules\": 8190.456301021139, \"energy_joules\": 8.190456301021138, \"coremark_score\": 7517.214421, \"coremarks_per_mhz\": 6.214628324239418, \"ulpmark_cm_score\": 30.523329935699852}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [952.8872121649999, 952.8872121649999, 956.8489936239998, 952.7754683299999], \"power_mean\": 953.8497215709999, \"energy_millijoules\": 4769.248607854999, \"energy_joules\": 4.769248607854999}}, \"1286400\": {\"active\": {\"elapsed_sec\": 31.359917175, \"elapsed_ns\": 31359917175, \"power_samples\": [74.30731875700008, 275.9873761849998, 269.8215177120002, 269.8215177120002, 271.8517875440001, 271.8517875440001, 271.8517875440001, 277.875749769, 261.486114207, 261.486114207, 295.94334692400014, 285.7860603780001, 285.7860603780001, 277.662726789, 281.7264732900002, 277.662726789, 277.662726789, 289.77808429899994, 881.285180574, 881.285180574, 289.77808429899994, 287.8158539220002, 287.8158539220002, 265.47564669899987, 277.52042045400015, 277.52042045400015, 281.655227242, 269.2569796260001, 269.2569796260001, 279.40772190199993, 285.64279902600003], \"power_mean\": 310.0666330689355, \"energy_millijoules\": 9723.663931772933, \"energy_joules\": 9.723663931772933, \"coremark_score\": 7976.008167, \"coremarks_per_mhz\": 6.20025510494403, \"ulpmark_cm_score\": 25.71047310500961}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [946.5010645, 946.5010645, 938.2497655940001, 948.424346676], \"power_mean\": 944.9190603175, \"energy_millijoules\": 4724.5953015875, \"energy_joules\": 4.724595301587501}}, \"1363200\": {\"active\": {\"elapsed_sec\": 29.549900927, \"elapsed_ns\": 29549900927, \"power_samples\": [309.8641071659998, 315.956215906, 315.956215906, 305.73279798600004, 307.76199568200025, 307.76199568200025, 311.8975823699999, 305.73279798600004, 305.73279798600004, 309.791193378, 305.73279798600004, 305.73279798600004, 301.6702444020001, 299.56872852200024, 299.56872852200024, 311.67848305799987, 319.8719886060002, 301.5253698900002, 301.5253698900002, 309.8641071659998, 319.79847897, 319.79847897, 321.6798793490001, 317.62243750899995, 317.62243750899995, 305.44179755900007, 315.5895593739998, 315.5895593739998, 315.44301687799987], \"power_mean\": 310.39696419200004, \"energy_millijoules\": 9172.199539915167, \"energy_joules\": 9.172199539915168, \"coremark_score\": 8464.533604, \"coremarks_per_mhz\": 6.209311622652582, \"ulpmark_cm_score\": 27.25627576156201}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [946.0576358500001, 937.9749221569999, 935.941435429, 935.941435429], \"power_mean\": 938.9788572162499, \"energy_millijoules\": 4694.894286081249, \"energy_joules\": 4.694894286081249}}, \"1459200\": {\"active\": {\"elapsed_sec\": 27.530037645, \"elapsed_ns\": 27530037645, \"power_samples\": [269.53939320000006, 347.61881444900007, 347.61881444900007, 329.354288804, 351.6748274250002, 345.51544179600035, 345.51544179600035, 345.590807961, 329.354288804, 329.354288804, 335.3676961440002, 349.49591896000004, 349.49591896000004, 331.23769773200013, 351.5236868160001, 351.5236868160001, 341.15623179399984, 339.2035222420001, 341.23105195400024, 341.23105195400024, 345.21520760400006, 337.1718377560002, 337.1718377560002, 341.23105195400024, 351.3728552880003, 351.3728552880003, 339.12882115399987], \"power_mean\": 339.82471620962974, \"energy_millijoules\": 9355.387229952548, \"energy_joules\": 9.355387229952548, \"coremark_score\": 9086.283347, \"coremarks_per_mhz\": 6.226893741091009, \"ulpmark_cm_score\": 26.722571055059152}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [929.782361128, 929.782361128, 939.843280665, 935.7770216409999], \"power_mean\": 933.7962561405, \"energy_millijoules\": 4668.9812807025, \"energy_joules\": 4.6689812807025}}, \"1536000\": {\"active\": {\"elapsed_sec\": 26.175137542, \"elapsed_ns\": 26175137542, \"power_samples\": [361.51881339600016, 347.1674406240003, 347.1674406240003, 346.94159965899996, 355.20510703, 355.20510703, 346.94159965899996, 346.94159965899996, 350.9954673870001, 350.9954673870001, 375.3352879669998, 354.97783451600014, 354.97783451600014, 350.9200516230002, 350.9200516230002, 350.9200516230002, 356.8531028599999, 359.0314641000001, 359.0314641000001, 361.0624322010002, 366.994291742, 366.994291742, 364.811062761, 354.826526212, 368.8678921019999, 368.8678921019999], \"power_mean\": 356.7104297786539, \"energy_millijoules\": 9336.9445621222, \"energy_joules\": 9.3369445621222, \"coremark_score\": 9556.574924, \"coremarks_per_mhz\": 6.221728466145834, \"ulpmark_cm_score\": 26.77535443598878}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [941.43882783, 941.43882783, 951.603871925, 949.6275625799999], \"power_mean\": 946.02727254125, \"energy_millijoules\": 4730.13636270625, \"energy_joules\": 4.73013636270625}}, \"1612800\": {\"active\": {\"elapsed_sec\": 24.970329886, \"elapsed_ns\": 24970329886, \"power_samples\": [16.560294207000084, 368.7146023380002, 384.93170500200006, 384.93170500200006, 378.7721697940002, 366.6121333940001, 366.6121333940001, 370.5108805620001, 364.4295014820001, 364.4295014820001, 364.3532517260004, 370.35766613, 370.35766613, 919.9211954839999, 376.053191481, 374.33598017400016, 374.33598017400016, 368.255673474, 380.4162868740001, 380.4162868740001, 376.207120833, 378.232267641, 378.232267641, 376.130156157], \"power_mean\": 381.42123406041674, \"energy_millijoules\": 9524.214040013825, \"energy_joules\": 9.524214040013826, \"coremark_score\": 10017.631031, \"coremarks_per_mhz\": 6.211328764260913, \"ulpmark_cm_score\": 26.2488850995664}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [941.16301755, 941.16301755, 939.0171883950002, 935.0641126749999], \"power_mean\": 939.1018340425001, \"energy_millijoules\": 4695.5091702125, \"energy_joules\": 4.6955091702125005}}, \"1689600\": {\"active\": {\"elapsed_sec\": 23.878539991, \"elapsed_ns\": 23878539991, \"power_samples\": [414.7056596399999, 398.4179101940002, 398.4179101940002, 420.38732133500014, 404.41851038900006, 404.41851038900006, 404.18261240899994, 398.02621339400014, 406.1280893720001, 406.1280893720001, 404.1036574840001, 406.0493376400001, 406.0493376400001, 416.17919808399995, 406.1280893720001, 406.1280893720001, 410.102111454, 399.8938567380002, 399.8938567380002, 417.965110944, 407.9989275900001, 409.865141094, 409.865141094], \"power_mean\": 406.7588122579131, \"energy_millijoules\": 9712.806565192239, \"energy_joules\": 9.712806565192238, \"coremark_score\": 10476.030841, \"coremarks_per_mhz\": 6.200302344341856, \"ulpmark_cm_score\": 25.739213307914973}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [940.8869811960001, 940.8869811960001, 955.112198168, 961.1487991599998], \"power_mean\": 949.50873993, \"energy_millijoules\": 4747.54369965, \"energy_joules\": 4.7475436996500004}}, \"1766400\": {\"active\": {\"elapsed_sec\": 22.751826189, \"elapsed_ns\": 22751826189, \"power_samples\": [72.4189244700002, 448.1785273280001, 444.13109241600034, 444.13109241600034, 445.91107344500017, 453.92704751400004, 453.92704751400004, 447.9344331970002, 444.04974482099976, 444.04974482099976, 439.83684796, 445.74880417300017, 445.74880417300017, 435.62490465100007, 437.81348820799997, 437.65217199999995, 437.65217199999995, 439.594516432, 437.65217199999995, 437.65217199999995, 449.71367460900035, 447.36532423400024], \"power_mean\": 426.8506263810001, \"energy_millijoules\": 9711.631260086291, \"energy_joules\": 9.71163126008629, \"coremark_score\": 10995.294014, \"coremarks_per_mhz\": 6.224690904664854, \"ulpmark_cm_score\": 25.742328276761473}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [960.6413888279998, 960.6413888279998, 964.7051353289999, 958.8365320519999], \"power_mean\": 961.2061112592498, \"energy_millijoules\": 4806.030556296249, \"energy_joules\": 4.80603055629625}}, \"1843200\": {\"active\": {\"elapsed_sec\": 21.814469522, \"elapsed_ns\": 21814469522, \"power_samples\": [519.8755258339999, 519.8755258339999, 519.8755258339999, 519.789632509, 519.789632509, 517.7677025969998, 509.5908925140001, 509.5908925140001, 529.8214300789999, 515.6604680890001, 517.5114315929999, 517.5114315929999, 505.289001535, 529.6491529030001, 529.6491529030001, 525.5159647440001, 527.451399096, 527.451399096, 509.33605110600035, 515.2339451089998, 515.2339451089998], \"power_mean\": 519.1176239571429, \"energy_millijoules\": 11324.27558614615, \"energy_joules\": 11.32427558614615, \"coremark_score\": 11468.415982, \"coremarks_per_mhz\": 6.2220138791232635, \"ulpmark_cm_score\": 22.076467328810335}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [946.313249112, 950.4325040349999, 938.3011816049999, 938.3011816049999], \"power_mean\": 943.3370290892499, \"energy_millijoules\": 4716.685145446249, \"energy_joules\": 4.71668514544625}}, \"1920000\": {\"active\": {\"elapsed_sec\": 20.933074315, \"elapsed_ns\": 20933074315, \"power_samples\": [17.364639814000043, 535.5450214619999, 533.433168099, 533.433168099, 535.4585254140003, 555.5032299979999, 539.1536641380002, 539.1536641380002, 527.0209501980002, 522.9794727900002, 522.9794727900002, 528.9596911719997, 518.8483117839997, 518.8483117839997, 528.787413996, 532.7414462370001, 532.7414462370001, 522.6359967160002, 526.5905013, 526.5905013], \"power_mean\": 504.93842987330004, \"energy_millijoules\": 10569.913677037206, \"energy_joules\": 10.569913677037206, \"coremark_score\": 11950.858072, \"coremarks_per_mhz\": 6.224405245833334, \"ulpmark_cm_score\": 23.652038005108487}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [940.003936152, 948.0687700079999, 948.0687700079999, 946.035652752], \"power_mean\": 945.5442822299999, \"energy_millijoules\": 4727.72141115, \"energy_joules\": 4.72772141115}}, \"1996800\": {\"active\": {\"elapsed_sec\": 20.183598742, \"elapsed_ns\": 20183598742, \"power_samples\": [2.8779301130000476, 559.0214108250001, 567.0181962419998, 548.9118214230001, 548.9118214230001, 568.7727753539997, 572.7277259030001, 572.7277259030001, 556.4743094650001, 554.5383108080001, 554.5383108080001, 546.3682951510001, 542.416172739, 542.416172739, 554.1872024100004, 548.1254953500003, 548.1254953500003, 554.3629362960002, 566.31061653, 562.179935474], \"power_mean\": 528.5506330153, \"energy_millijoules\": 10668.053891610914, \"energy_joules\": 10.668053891610914, \"coremark_score\": 12395.874653, \"coremarks_per_mhz\": 6.207869918369392, \"ulpmark_cm_score\": 23.434452294677065}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [945.5912710380002, 945.64679031, 945.64679031, 943.72946515], \"power_mean\": 945.1535792020001, \"energy_millijoules\": 4725.76789601, \"energy_joules\": 4.72576789601}}, \"2092800\": {\"active\": {\"elapsed_sec\": 19.191634472, \"elapsed_ns\": 19191634472, \"power_samples\": [604.1515448330002, 604.1515448330002, 622.14675105, 638.1155339200003, 638.1155339200003, 607.6472058840001, 615.6306272040002, 615.6306272040002, 607.6472058840001, 654.0805045340002, 654.0805045340002, 645.9117784440001, 653.7991879299999, 653.7991879299999, 661.7788120920001, 647.56040561, 647.56040561, 647.56040561, 647.56040561], \"power_mean\": 635.1014827703159, \"energy_millijoules\": 12188.635509953108, \"energy_joules\": 12.188635509953109, \"coremark_score\": 13037.129746, \"coremarks_per_mhz\": 6.229515360282874, \"ulpmark_cm_score\": 20.510909510408503}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [949.42818061, 957.5424542320001, 957.5424542320001, 949.59545359], \"power_mean\": 953.527135666, \"energy_millijoules\": 4767.63567833, \"energy_joules\": 4.76763567833}}, \"2169600\": {\"active\": {\"elapsed_sec\": 18.537527181, \"elapsed_ns\": 18537527181, \"power_samples\": [637.930151504, 681.9640500660004, 681.9640500660004, 663.8002295340001, 645.4459397440002, 645.4459397440002, 685.8116498840001, 683.4124869630001, 683.4124869630001, 667.362018336, 687.8286954040001, 687.8286954040001, 675.2429925650002, 687.1586153030001, 676.88288821, 676.88288821, 674.9581281770003, 682.9349379899999], \"power_mean\": 673.6814913370557, \"energy_millijoules\": 12488.388956997287, \"energy_joules\": 12.488388956997287, \"coremark_score\": 13496.73379, \"coremarks_per_mhz\": 6.220839689343658, \"ulpmark_cm_score\": 20.018594941337422}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [953.207185076, 965.316231089, 949.1491637949999, 963.4594231860001], \"power_mean\": 957.7830007865, \"energy_millijoules\": 4788.9150039324995, \"energy_joules\": 4.7889150039325}}, \"2246400\": {\"active\": {\"elapsed_sec\": 17.935889993, \"elapsed_ns\": 17935889993, \"power_samples\": [703.2965706890001, 703.2965706890001, 672.846811326, 676.7878140980002, 676.7878140980002, 666.5113267539999, 672.4674684300002, 672.4674684300002, 710.7866846780001, 666.2278919620002, 666.2278919620002, 674.2930554459998, 696.477417062, 712.4129083370002, 712.4129083370002, 714.2332527690002, 704.1552156779998], \"power_mean\": 688.3346512202942, \"energy_millijoules\": 12345.89458265722, \"energy_joules\": 12.34589458265722, \"coremark_score\": 13949.336012, \"coremarks_per_mhz\": 6.209640318732194, \"ulpmark_cm_score\": 20.249646416970478}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [944.6467608000002, 942.6761802000001, 942.78720765, 944.8135461539999], \"power_mean\": 943.730923701, \"energy_millijoules\": 4718.654618505, \"energy_joules\": 4.718654618505}}, \"2323200\": {\"active\": {\"elapsed_sec\": 17.273620306, \"elapsed_ns\": 17273620306, \"power_samples\": [800.9184091650001, 800.9184091650001, 812.7058296629999, 804.5408838460002, 804.5408838460002, 810.381813112, 826.502601628, 826.502601628, 799.995842728, 812.0863529479999, 812.0863529479999, 781.8642038519998, 816.010358264, 773.6034150780002, 773.6034150780002, 771.5858177040001, 783.4714667489999], \"power_mean\": 800.6658033765883, \"energy_millijoules\": 13830.397079525641, \"energy_joules\": 13.83039707952564, \"coremark_score\": 14486.035462, \"coremarks_per_mhz\": 6.2353802780647385, \"ulpmark_cm_score\": 18.07612598268036}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [956.4170789879998, 958.6115165439999, 958.6115165439999, 958.6678698080001], \"power_mean\": 958.0769954709999, \"energy_millijoules\": 4790.384977354999, \"energy_joules\": 4.790384977354999}}, \"2400000\": {\"active\": {\"elapsed_sec\": 16.750677285, \"elapsed_ns\": 16750677285, \"power_samples\": [864.2591400300001, 864.2591400300001, 882.070283847, 879.838592334, 879.838592334, 871.4622785820001, 869.3431300420001, 869.3431300420001, 859.1709772740002, 899.220353654, 899.220353654, 885.020232858, 891.0601231380002, 891.168064346, 891.168064346, 888.8321144759999], \"power_mean\": 880.3296606866876, \"energy_millijoules\": 14746.118050576253, \"energy_joules\": 14.746118050576253, \"coremark_score\": 14936.966003, \"coremarks_per_mhz\": 6.223735834583334, \"ulpmark_cm_score\": 16.953614445683243}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [968.5193105059999, 972.569365978, 972.569365978, 966.4942827699999], \"power_mean\": 970.038081308, \"energy_millijoules\": 4850.1904065399995, \"energy_joules\": 4.850190406539999}}, \"2476800\": {\"active\": {\"elapsed_sec\": 16.207084734, \"elapsed_ns\": 16207084734, \"power_samples\": [884.8046244449998, 880.5665655089998, 880.5665655089998, 904.6075043940001, 928.6455840870002, 928.6455840870002, 892.0986173740001, 843.708295794, 843.708295794, 964.4180693940001, 869.6466577320003, 869.6466577320003, 947.8783973019998, 869.4331582200001, 887.5378069500001, 887.5378069500001], \"power_mean\": 892.7156369545626, \"energy_millijoules\": 14468.317971489376, \"energy_joules\": 14.468317971489375, \"coremark_score\": 15439.72332, \"coremarks_per_mhz\": 6.233738420542635, \"ulpmark_cm_score\": 17.27913365552505}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [974.08254935, 992.423202066, 952.030579592, 952.030579592], \"power_mean\": 967.64172765, \"energy_millijoules\": 4838.20863825, \"energy_joules\": 4.83820863825}}, \"2553600\": {\"active\": {\"elapsed_sec\": 15.782463953, \"elapsed_ns\": 15782463953, \"power_samples\": [135.9700251580001, 891.2336922639998, 902.9749847939999, 902.9749847939999, 898.7347140769999, 902.7574343940004, 902.7574343940004, 872.2800400820003, 988.7507460180001, 988.7507460180001, 897.9745115700003, 890.152646594, 890.152646594, 909.9238482449997, 905.6891252770002], \"power_mean\": 858.7385053515334, \"energy_millijoules\": 13553.009505763674, \"energy_joules\": 13.553009505763674, \"coremark_score\": 15854.895992, \"coremarks_per_mhz\": 6.208840848997494, \"ulpmark_cm_score\": 18.44608755669232}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [965.8118564699998, 965.8118564699998, 976.0490793060001, 965.9825795], \"power_mean\": 968.4138429364999, \"energy_millijoules\": 4842.0692146824995, \"energy_joules\": 4.8420692146825}}, \"2649600\": {\"active\": {\"elapsed_sec\": 14.89686463, \"elapsed_ns\": 14896864630, \"power_samples\": [981.6978233510002, 981.6978233510002, 989.2764112740002, 994.959227556, 990.7171172440002, 990.7171172440002, 1008.5545752809998, 1016.468768634, 1016.468768634, 980.107321993, 1008.2089490369998, 1008.2089490369998, 990.0318297990001, 1000.0657677840001], \"power_mean\": 996.9414607299286, \"energy_millijoules\": 14851.301984528207, \"energy_joules\": 14.851301984528208, \"coremark_score\": 16798.817363, \"coremarks_per_mhz\": 6.340133364658816, \"ulpmark_cm_score\": 16.833540942096864}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [983.7430200880001, 981.4886483200002, 985.7660226240001, 985.7660226240001], \"power_mean\": 984.1909284140002, \"energy_millijoules\": 4920.954642070001, \"energy_joules\": 4.920954642070001}}, \"2803200\": {\"active\": {\"elapsed_sec\": 14.361701974, \"elapsed_ns\": 14361701974, \"power_samples\": [1237.1096220340005, 1237.1096220340005, 1328.6840904739997, 1335.8973536479998, 1335.8973536479998, 1316.2567477080001, 1327.339636494, 1323.1999136339996, 1323.1999136339996, 1254.8173885380002, 1296.8872126259998, 1296.8872126259998, 1284.3426390860004, 1272.1932031379997], \"power_mean\": 1297.8444220944286, \"energy_millijoules\": 18639.254798738446, \"energy_joules\": 18.639254798738445, \"coremark_score\": 17425.245696, \"coremarks_per_mhz\": 6.216197808219179, \"ulpmark_cm_score\": 13.412553382602006}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [977.093948145, 995.361291966, 985.301614848, 985.301614848], \"power_mean\": 985.7646174517499, \"energy_millijoules\": 4928.82308725875, \"energy_joules\": 4.92882308725875}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sdm845/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 933 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 403 480 576 652 748 825 902 979 1056 1132 1228 1324 1420 1516 1612 1689 1766\n\n 300:  1114     3.7 C/MHz     57 mW   12.7 J   19.7 I/mJ   224.5 s\n 403:  1497     3.7 C/MHz     61 mW   10.2 J   24.5 I/mJ   167.0 s\n 480:  1782     3.7 C/MHz     67 mW    9.4 J   26.5 I/mJ   140.3 s\n 576:  2138     3.7 C/MHz     78 mW    9.1 J   27.5 I/mJ   116.9 s\n 652:  2424     3.7 C/MHz     69 mW    7.2 J   34.9 I/mJ   103.2 s\n 748:  2780     3.7 C/MHz     75 mW    6.8 J   37.0 I/mJ    89.9 s\n 825:  3065     3.7 C/MHz     97 mW    7.9 J   31.5 I/mJ    81.6 s\n 902:  3350     3.7 C/MHz     86 mW    6.4 J   39.0 I/mJ    74.6 s\n 979:  3635     3.7 C/MHz     97 mW    6.7 J   37.6 I/mJ    68.8 s\n1056:  3921     3.7 C/MHz    111 mW    7.1 J   35.3 I/mJ    63.8 s\n1132:  4205     3.7 C/MHz    127 mW    7.5 J   33.2 I/mJ    59.5 s\n1228:  4562     3.7 C/MHz    132 mW    7.2 J   34.6 I/mJ    54.8 s\n1324:  4918     3.7 C/MHz    156 mW    8.0 J   31.4 I/mJ    50.8 s\n1420:  5275     3.7 C/MHz    156 mW    7.4 J   33.8 I/mJ    47.4 s\n1516:  5631     3.7 C/MHz    191 mW    8.5 J   29.4 I/mJ    44.4 s\n1612:  5988     3.7 C/MHz    168 mW    7.0 J   35.7 I/mJ    41.8 s\n1689:  6273     3.7 C/MHz    176 mW    7.0 J   35.7 I/mJ    39.9 s\n1766:  6558     3.7 C/MHz    193 mW    7.4 J   33.9 I/mJ    38.1 s\n\n\n===== CPU 4 =====\nFrequencies: 825 902 979 1056 1209 1286 1363 1459 1536 1612 1689 1766 1843 1920 1996 2092 2169 2246 2323 2400 2476 2553 2649 2803\n\n 825:  5141     6.2 C/MHz    186 mW    9.1 J   27.6 I/mJ    48.6 s\n 902:  5625     6.2 C/MHz    197 mW    8.8 J   28.6 I/mJ    44.5 s\n 979:  6098     6.2 C/MHz    234 mW    9.6 J   26.0 I/mJ    41.0 s\n1056:  6561     6.2 C/MHz    216 mW    8.2 J   30.3 I/mJ    38.1 s\n1209:  7517     6.2 C/MHz    246 mW    8.2 J   30.5 I/mJ    33.3 s\n1286:  7976     6.2 C/MHz    310 mW    9.7 J   25.7 I/mJ    31.4 s\n1363:  8465     6.2 C/MHz    310 mW    9.2 J   27.3 I/mJ    29.5 s\n1459:  9086     6.2 C/MHz    340 mW    9.4 J   26.7 I/mJ    27.5 s\n1536:  9557     6.2 C/MHz    357 mW    9.3 J   26.8 I/mJ    26.2 s\n1612: 10018     6.2 C/MHz    381 mW    9.5 J   26.2 I/mJ    25.0 s\n1689: 10476     6.2 C/MHz    407 mW    9.7 J   25.7 I/mJ    23.9 s\n1766: 10995     6.2 C/MHz    427 mW    9.7 J   25.7 I/mJ    22.8 s\n1843: 11468     6.2 C/MHz    519 mW   11.3 J   22.1 I/mJ    21.8 s\n1920: 11951     6.2 C/MHz    505 mW   10.6 J   23.7 I/mJ    20.9 s\n1996: 12396     6.2 C/MHz    529 mW   10.7 J   23.4 I/mJ    20.2 s\n2092: 13037     6.2 C/MHz    635 mW   12.2 J   20.5 I/mJ    19.2 s\n2169: 13497     6.2 C/MHz    674 mW   12.5 J   20.0 I/mJ    18.5 s\n2246: 13949     6.2 C/MHz    688 mW   12.3 J   20.2 I/mJ    17.9 s\n2323: 14486     6.2 C/MHz    801 mW   13.8 J   18.1 I/mJ    17.3 s\n2400: 14937     6.2 C/MHz    880 mW   14.7 J   17.0 I/mJ    16.8 s\n2476: 15440     6.2 C/MHz    893 mW   14.5 J   17.3 I/mJ    16.2 s\n2553: 15855     6.2 C/MHz    859 mW   13.6 J   18.4 I/mJ    15.8 s\n2649: 16799     6.3 C/MHz    997 mW   14.9 J   16.8 I/mJ    14.9 s\n2803: 17425     6.2 C/MHz   1298 mW   18.6 J   13.4 I/mJ    14.4 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sdm845/main/uptime.txt",
    "content": " 00:11:53 up 42 min,  load average: 0.58, 0.68, 0.76\n"
  },
  {
    "path": "results/sdm845/main/versions.txt",
    "content": "Kernel: Linux version 4.9.246-perf-g7fa29bb0fa45-dirty (jjpprrrr@WienerMusikverein) (Android (6573524 based on r383902b) clang version 11.0.2 (https://android.googlesource.com/toolchain/llvm-project b397f81060ce6d701042b782172ed13bee898b79)) #1 SMP PREEMPT Sun Jan 3 11:21:22 EST 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm6115/main/cmdline.txt",
    "content": "rcupdate.rcu_expedited=1 rcu_nocbs=0-7 kpti=off console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0x4a90000 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 msm_rtb.filter=0x237 service_locator.enable=1 swiotlb=2048 loop.max_part=7 androidboot.fstab_suffix=default androidboot.init_fatal_reboot_target=recovery buildvariant=user rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 androidboot.vbmeta.device=PARTUUID=99438b06-772c-ddbb-e890-ad6329220522 androidboot.vbmeta.device=PARTUUID=99438b06-772c-ddbb-e890-ad6329220522 androidboot.vbmeta.avb_version=1.0 androidboot.vbmeta.device_state=unlocked androidboot.vbmeta.hash_alg=sha256 androidboot.vbmeta.size=7552 androidboot.vbmeta.digest=54f05e407eafde90b8303b3c8590942eb894044c9077604384f4637efc769505 androidboot.vbmeta.invalidate_on_error=yes androidboot.veritymode=enforcing androidboot.bootdevice=4804000.ufshc androidboot.fstab_suffix=default androidboot.boot_devices=soc/4804000.ufshc androidboot.serialno=REDACTED androidboot.baseband=msm msm_drm.dsi_display0=qcom,mdss_dsi_ft8719_truly_v2_video: msm_drm.dsi_wp=302321 androidboot.dtbo_idx=0 androidboot.dtb_idx=0 androidboot.efuse=1 androidboot.cpuid=REDACTED androidboot.secureboot=1 androidboot.dp=0x0 powerup.reason=0x40001 androidboot.product.hardware.sku=citrus\n"
  },
  {
    "path": "results/sm6115/main/cpufreq_stats/0/time_in_state",
    "content": "300000 104530\n614400 15879\n864000 11530\n1017600 9916\n1305600 7900\n1420800 7320\n1612800 6565\n1804800 6226\n"
  },
  {
    "path": "results/sm6115/main/cpufreq_stats/0/total_trans",
    "content": "11\n"
  },
  {
    "path": "results/sm6115/main/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    614400    864000   1017600   1305600   1420800   1612800   1804800 \n   300000:         0         1         0         0         0         0         0         1 \n   614400:         0         0         1         0         0         0         0         0 \n   864000:         0         0         0         1         0         0         0         0 \n  1017600:         0         0         0         0         1         0         0         0 \n  1305600:         0         0         0         0         0         1         0         1 \n  1420800:         0         0         0         0         0         0         1         0 \n  1612800:         0         0         0         0         0         0         0         1 \n  1804800:         2         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm6115/main/cpufreq_stats/4/time_in_state",
    "content": "300000 20022\n652800 9613\n902400 7205\n1056000 6268\n1401600 4925\n1536000 4570\n1612800 4393\n1804800 4012\n2016000 108858\n"
  },
  {
    "path": "results/sm6115/main/cpufreq_stats/4/total_trans",
    "content": "11\n"
  },
  {
    "path": "results/sm6115/main/cpufreq_stats/4/trans_table",
    "content": "   From  :    To\n         :    300000    652800    902400   1056000   1401600   1536000   1612800   1804800   2016000 \n   300000:         0         1         0         0         0         0         0         0         1 \n   652800:         0         0         1         0         0         0         0         0         0 \n   902400:         0         0         0         1         0         0         0         0         0 \n  1056000:         0         0         0         0         1         0         0         0         0 \n  1401600:         0         0         0         0         0         1         0         0         0 \n  1536000:         0         0         0         0         0         0         1         0         0 \n  1612800:         0         0         0         0         0         0         0         1         0 \n  1804800:         0         0         0         0         0         0         0         0         1 \n  2016000:         2         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm6115/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 4 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nHardware\t: Qualcomm Technologies, Inc BENGAL\n"
  },
  {
    "path": "results/sm6115/main/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. BENGAL IDP;\nCompatible: qcom,bengal-idp;qcom,bengal;qcom,idp;\n"
  },
  {
    "path": "results/sm6115/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x51af8014]\n[    0.000000] Linux version 4.19.152-perf (mamles@cs-550292588298-default-boost-sg65m) (gcc version 11.2.0 (GCC)) #1 SMP PREEMPT Tue Dec 28 07:18:31 UTC 2021\n[    0.000000] Machine model: Qualcomm Technologies, Inc. BENGAL IDP\n[    0.000000] efi: Getting EFI parameters from FDT:\n[    0.000000] efi: UEFI not found.\n[    0.000000] mem-offline: no memory to offline for DDR size:4258267136\n[    0.000000] OF: reserved mem: OVERLAP DETECTED!\n               disp_rdump_region@5c000000 (0x000000005c000000--0x000000005cf00000) overlaps with cont_splash_region@5c000000 (0x000000005c000000--0x000000005cf00000)\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fec00000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe400000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fd000000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fc000000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node user_contig_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fa000000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f9800000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f3c00000, size 92 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000045700000, size 6 MiB\n[    0.000000] OF: reserved mem: initialized node hyp_region@45700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000045e00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node xbl_aop_region@45e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000045fff000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node sec_apps_region@45fff000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000046000000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node smem_region@46000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000004ab00000, size 105 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@4ab00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000051400000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region@51400000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000051900000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_msa_region@51900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000051a00000, size 10 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_regions@51a00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000053800000, size 34 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region@53800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000055a00000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_fw_region@55A00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000055a10000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_gsi_region@55A10000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000055a15000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@55A15000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000060000000, size 57 MiB\n[    0.000000] OF: reserved mem: initialized node removed_region@60000000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 982952\n[    0.000000]   Normal zone: 15359 pages used for memmap\n[    0.000000]   Normal zone: 0 pages reserved\n[    0.000000]   Normal zone: 982952 pages, LIFO batch:63\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.0 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.1\n[    0.000000] random: fast init done\n[    0.000000] percpu: Embedded 24 pages/cpu s60504 r8192 d29608 u98304\n[    0.000000] pcpu-alloc: s60504 r8192 d29608 u98304 alloc=24*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: enabling workaround for ARM erratum 845719\n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 967593\n[    0.000000] Kernel command line: rcupdate.rcu_expedited=1 rcu_nocbs=0-7 kpti=off console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0x4a90000 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 msm_rtb.filter=0x237 service_locator.enable=1 swiotlb=2048 loop.max_part=7 androidboot.fstab_suffix=default androidboot.init_fatal_reboot_target=recovery buildvariant=user rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 androidboot.vbmeta.device=PARTUUID=99438b06-772c-ddbb-e890-ad6329220522 androidboot.vbmeta.device=PARTUUID=99438b06-772c-ddbb-e890-ad6329220522 androidboot.vbmeta.avb_version=1.0 androidboot.vbmeta.device_state=unlocked androidboot.vbmeta.hash_alg=sha256 androidboot.vbmeta.size=7552 androidboot.vbmeta.digest=54f05e407eafde90b8303b3c8590942eb894044c9077604384f4637efc769505 androidboot.vbmeta.invalidate_on_error=yes androidboot.veritymode=enforcing andr\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off\n[    0.000000] Memory: 3584380K/3931808K available (22396K kernel code, 2746K rwdata, 12056K rodata, 3840K init, 6031K bss, 150820K reserved, 196608K cma-reserved)\n[    0.000000] random: random: get_random_u64 called from __kmem_cache_create+0x34/0x45c with crng_init=1\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n\n[    0.000000] **********************************************************\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **                                                      **\n[    0.000000] ** trace_printk() being used. Allocating extra memory.  **\n[    0.000000] **                                                      **\n[    0.000000] ** This means that this is a DEBUG kernel and it is     **\n[    0.000000] ** unsafe for production use.                           **\n[    0.000000] **                                                      **\n[    0.000000] ** If you see this message and you are not debugging    **\n[    0.000000] ** the kernel, report this immediately to your vendor!  **\n[    0.000000] **                                                      **\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **********************************************************\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: Distributor has no Range Selector support\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: CPU0: Trapping CNTVCT access\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000014] clocksource: Switched to clocksource arch_sys_counter\n[    0.002135] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.002145] pid_max: default: 32768 minimum: 301\n[    0.002276] Security Framework initialized\n[    0.002283] SELinux:  Initializing.\n[    0.002407] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.002419] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.003722] ASID allocator initialised with 65536 entries\n[    0.003804] rcu: Hierarchical SRCU implementation.\n[    0.005922] scm_mem_protection_init: SCM call failed\n[    0.007160] shmbridge is enabled\n[    0.007333] EFI services will not be available.\n[    0.007710] smp: Bringing up secondary CPUs ...\n[    0.010232] Detected VIPT I-cache on CPU1\n[    0.010315] arch_timer: CPU1: Trapping CNTVCT access\n[    0.010322] CPU1: Booted secondary processor 0x0000000001 [0x51af8014]\n[    0.012865] Detected VIPT I-cache on CPU2\n[    0.012943] arch_timer: CPU2: Trapping CNTVCT access\n[    0.012948] CPU2: Booted secondary processor 0x0000000002 [0x51af8014]\n[    0.015456] Detected VIPT I-cache on CPU3\n[    0.015533] arch_timer: CPU3: Trapping CNTVCT access\n[    0.015539] CPU3: Booted secondary processor 0x0000000003 [0x51af8014]\n[    0.018786] CPU features: enabling workaround for ARM erratum 858921\n[    0.018845] SSBD disabled by kernel configuration\n[    0.018853] CPU features: enabling workaround for Speculative Store Bypass Disable\n[    0.018871] Detected VIPT I-cache on CPU4\n[    0.018980] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.019010] arch_timer: CPU4: Trapping CNTVCT access\n[    0.019028] CPU4: Booted secondary processor 0x0000000100 [0x51af8002]\n[    0.022036] Detected VIPT I-cache on CPU5\n[    0.022134] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.022159] arch_timer: CPU5: Trapping CNTVCT access\n[    0.022175] CPU5: Booted secondary processor 0x0000000101 [0x51af8002]\n[    0.025093] Detected VIPT I-cache on CPU6\n[    0.025194] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.025218] arch_timer: CPU6: Trapping CNTVCT access\n[    0.025235] CPU6: Booted secondary processor 0x0000000102 [0x51af8002]\n[    0.028122] Detected VIPT I-cache on CPU7\n[    0.028225] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.028249] arch_timer: CPU7: Trapping CNTVCT access\n[    0.028266] CPU7: Booted secondary processor 0x0000000103 [0x51af8002]\n[    0.028764] smp: Brought up 1 node, 8 CPUs\n[    0.028771] SMP: Total of 8 processors activated.\n[    0.028778] CPU features: detected: GIC system register CPU interface\n[    0.028781] CPU features: detected: 32-bit EL0 Support\n[    0.028891] CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching\n[    0.028895] CPU: All CPU(s) started at EL1\n[    0.028963] alternatives: patching kernel code\n[    0.072597] Registered cp15_barrier emulation handler\n[    0.072615] Registered setend emulation handler\n[    0.072976] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.072986] futex hash table entries: 2048 (order: 5, 131072 bytes)\n[    0.077597] pinctrl core: initialized pinctrl subsystem\n[    0.077963] DMI not present or invalid.\n[    0.078133] NET: Registered protocol family 16\n[    0.080191] schedtune: configured to support 6 boost groups\n[    0.080283] audit: initializing netlink subsys (disabled)\n[    0.080718] cpuidle: using governor menu\n[    0.080742] cpuidle: using governor qcom\n[    0.080856] NET: Registered protocol family 42\n[    0.082063] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.082188] audit: type=2000 audit(0.079:1): state=initialized audit_enabled=0 res=1\n[    0.083287] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.083760] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.083980] exit: IPA_USB init success!\n[    0.087057] console [pstore-1] enabled\n[    0.087112] pstore: Registered ramoops as persistent store backend\n[    0.087116] ramoops: attached 0x400000@0x64000000, ecc: 0/0\n[    0.091351] platform 61800000.qseecom: assigned reserved memory node qseecom_region\n[    0.092800] platform ab00000.qcom,lpass: assigned reserved memory node pil_adsp_region@53800000\n[    0.092934] platform b300000.qcom,turing: assigned reserved memory node cdsp_regions@51a00000\n[    0.093005] platform soc:mem_dump: assigned reserved memory node mem_dump_region\n[    0.093626] ------------[ cut here ]------------\n[    0.093666] WARNING: CPU: 0 PID: 1 at drivers/irqchip/irq-gic-v3.c:1056 gic_irq_domain_translate+0xac/0x154\n[    0.093668] Modules linked in:\n[    0.093675] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.19.152-perf #1\n[    0.093677] Hardware name: Qualcomm Technologies, Inc. BENGAL IDP (DT)\n[    0.093681] pstate: 60400005 (nZCv daif +PAN -UAO)\n[    0.093686] pc : gic_irq_domain_translate+0xac/0x154\n[    0.093690] lr : gic_irq_domain_translate+0xac/0x154\n[    0.093691] sp : ffffff800805b690\n[    0.093693] x29: ffffff800805b690 x28: ffffffc139d4fc28 \n[    0.093698] x27: 0000000000000000 x26: ffffff800805b8b8 \n[    0.093701] x25: ffffffa90c4251e8 x24: ffffffc063923800 \n[    0.093705] x23: 0000000000000001 x22: 000000000000001c \n[    0.093709] x21: 0000000000000001 x20: ffffffc045ffc700 \n[    0.093713] x19: ffffff800805b8b8 x18: ffffffa90c424000 \n[    0.093716] x17: 000000001edebeaa x16: 000000006648523d \n[    0.093720] x15: ffffffa90c6a8b22 x14: 0000000000000000 \n[    0.093723] x13: ffffffa90c6a8000 x12: ffffffa90c424b28 \n[    0.093727] x11: ffffffa90c6a8178 x10: 0000000000000000 \n[    0.093731] x9 : 0000000000000000 x8 : 0000000000000000 \n[    0.093734] x7 : ffffffa90c6a8000 x6 : 00000000000000ab \n[    0.093738] x5 : 0000000000000000 x4 : 0000000000000000 \n[    0.093741] x3 : 0000000000000000 x2 : 0000000000000000 \n[    0.093745] x1 : ffffffa90c3fd000 x0 : 0000000000000024 \n[    0.093749] Call trace:\n[    0.093754]  gic_irq_domain_translate+0xac/0x154\n[    0.093758]  gic_irq_domain_alloc+0x44/0x254\n[    0.093764]  irq_domain_alloc_irqs_parent+0x20/0x30\n[    0.093768]  msm_mpm_gic_chip_alloc+0xac/0xdc\n[    0.093772]  __irq_domain_alloc_irqs+0xf0/0x390\n[    0.093775]  irq_create_fwspec_mapping+0x10c/0x320\n[    0.093778]  irq_create_of_mapping+0x58/0x80\n[    0.093783]  of_irq_get+0x68/0xc4\n[    0.093787]  of_irq_to_resource+0x34/0x134\n[    0.093790]  of_irq_to_resource_table+0x4c/0x70\n[    0.093795]  of_device_alloc+0x114/0x1c0\n[    0.093799]  of_platform_device_create_pdata+0x64/0x100\n[    0.093803]  of_platform_bus_create+0x184/0x380\n[    0.093807]  of_platform_bus_create+0x1cc/0x380\n[    0.093811]  of_platform_populate+0x4c/0xd0\n[    0.093817]  of_platform_default_populate_init+0xa8/0xc8\n[    0.093822]  do_one_initcall+0x58/0x240\n[    0.093826]  kernel_init_freeable+0x2c0/0x364\n[    0.093832]  kernel_init+0x10/0x100\n[    0.093836]  ret_from_fork+0x10/0x24\n[    0.093840] ---[ end trace 89fd81e0ea056cad ]---\n[    0.093879] ------------[ cut here ]------------\n[    0.093907] WARNING: CPU: 0 PID: 1 at drivers/irqchip/irq-gic-v3.c:1056 gic_irq_domain_translate+0xac/0x154\n[    0.093908] Modules linked in:\n[    0.093914] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.152-perf #1\n[    0.093915] Hardware name: Qualcomm Technologies, Inc. BENGAL IDP (DT)\n[    0.093919] pstate: 60400005 (nZCv daif +PAN -UAO)\n[    0.093923] pc : gic_irq_domain_translate+0xac/0x154\n[    0.093927] lr : gic_irq_domain_translate+0xac/0x154\n[    0.093928] sp : ffffff800805b690\n[    0.093930] x29: ffffff800805b690 x28: ffffffc139d4c028 \n[    0.093934] x27: 0000000000000000 x26: ffffff800805b8b8 \n[    0.093938] x25: ffffffa90c4251e8 x24: ffffffc063923800 \n[    0.093941] x23: 0000000000000001 x22: 000000000000001d \n[    0.093945] x21: 0000000000000001 x20: ffffffc045ffc700 \n[    0.093949] x19: ffffff800805b8b8 x18: ffffffa90c424000 \n[    0.093952] x17: 000000001edebeaa x16: 000000006648523d \n[    0.093956] x15: ffffffa90c6a8b22 x14: 0000000000000000 \n[    0.093960] x13: ffffffa90c6a8000 x12: ffffffa90c424b28 \n[    0.093963] x11: ffffffa90c6a8178 x10: 0000000000000000 \n[    0.093967] x9 : 0000000000000000 x8 : 0000000000000000 \n[    0.093970] x7 : ffffffa90c6a8000 x6 : 00000000000000d9 \n[    0.093974] x5 : 0000000000000000 x4 : 0000000000000000 \n[    0.093977] x3 : 0000000000000000 x2 : 0000000000000000 \n[    0.093981] x1 : ffffffa90c3fd000 x0 : 0000000000000024 \n[    0.093984] Call trace:\n[    0.093988]  gic_irq_domain_translate+0xac/0x154\n[    0.093992]  gic_irq_domain_alloc+0x44/0x254\n[    0.093997]  irq_domain_alloc_irqs_parent+0x20/0x30\n[    0.094000]  msm_mpm_gic_chip_alloc+0xac/0xdc\n[    0.094003]  __irq_domain_alloc_irqs+0xf0/0x390\n[    0.094006]  irq_create_fwspec_mapping+0x10c/0x320\n[    0.094009]  irq_create_of_mapping+0x58/0x80\n[    0.094012]  of_irq_get+0x68/0xc4\n[    0.094015]  of_irq_to_resource+0x34/0x134\n[    0.094019]  of_irq_to_resource_table+0x4c/0x70\n[    0.094023]  of_device_alloc+0x114/0x1c0\n[    0.094027]  of_platform_device_create_pdata+0x64/0x100\n[    0.094031]  of_platform_bus_create+0x184/0x380\n[    0.094035]  of_platform_bus_create+0x1cc/0x380\n[    0.094038]  of_platform_populate+0x4c/0xd0\n[    0.094043]  of_platform_default_populate_init+0xa8/0xc8\n[    0.094046]  do_one_initcall+0x58/0x240\n[    0.094049]  kernel_init_freeable+0x2c0/0x364\n[    0.094053]  kernel_init+0x10/0x100\n[    0.094056]  ret_from_fork+0x10/0x24\n[    0.094059] ---[ end trace 89fd81e0ea056cae ]---\n[    0.094910] platform soc:qcom,smem: assigned reserved memory node smem_region@46000000\n[    0.095173] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.096799] platform 5ab0000.qcom,venus: assigned reserved memory node pil_video_region@51400000\n[    0.097005] platform 6080000.qcom,mss: assigned reserved memory node modem_region@4ab00000\n[    0.097806] ------------[ cut here ]------------\n[    0.097840] WARNING: CPU: 0 PID: 1 at drivers/irqchip/irq-gic-v3.c:1056 gic_irq_domain_translate+0xac/0x154\n[    0.097842] Modules linked in:\n[    0.097848] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.152-perf #1\n[    0.097850] Hardware name: Qualcomm Technologies, Inc. BENGAL IDP (DT)\n[    0.097853] pstate: 60400005 (nZCv daif +PAN -UAO)\n[    0.097858] pc : gic_irq_domain_translate+0xac/0x154\n[    0.097862] lr : gic_irq_domain_translate+0xac/0x154\n[    0.097864] sp : ffffff800805b690\n[    0.097866] x29: ffffff800805b690 x28: ffffffc139dce028 \n[    0.097870] x27: 0000000000000000 x26: ffffff800805b8b8 \n[    0.097874] x25: ffffffa90c4251e8 x24: ffffffc063923800 \n[    0.097877] x23: 0000000000000001 x22: 0000000000000030 \n[    0.097881] x21: 0000000000000001 x20: ffffffc045ffc700 \n[    0.097885] x19: ffffff800805b8b8 x18: ffffffa90c424000 \n[    0.097888] x17: 00000000025419dd x16: 0000000090d38a3c \n[    0.097892] x15: ffffffa90c6a8b22 x14: 0000000000000000 \n[    0.097895] x13: ffffffa90c6a8000 x12: ffffffa90c424b28 \n[    0.097899] x11: ffffffa90c6a8178 x10: 0000000000000000 \n[    0.097903] x9 : 0000000000000000 x8 : 0000000000000000 \n[    0.097906] x7 : ffffffa90c6a8000 x6 : 000000000000010b \n[    0.097910] x5 : 0000000000000000 x4 : 0000000000000000 \n[    0.097913] x3 : 0000000000000000 x2 : 0000000000000000 \n[    0.097917] x1 : ffffffa90c3fd000 x0 : 0000000000000024 \n[    0.097921] Call trace:\n[    0.097925]  gic_irq_domain_translate+0xac/0x154\n[    0.097929]  gic_irq_domain_alloc+0x44/0x254\n[    0.097935]  irq_domain_alloc_irqs_parent+0x20/0x30\n[    0.097938]  msm_mpm_gic_chip_alloc+0xac/0xdc\n[    0.097942]  __irq_domain_alloc_irqs+0xf0/0x390\n[    0.097945]  irq_create_fwspec_mapping+0x10c/0x320\n[    0.097948]  irq_create_of_mapping+0x58/0x80\n[    0.097952]  of_irq_get+0x68/0xc4\n[    0.097955]  of_irq_to_resource+0x34/0x134\n[    0.097958]  of_irq_to_resource_table+0x4c/0x70\n[    0.097963]  of_device_alloc+0x114/0x1c0\n[    0.097967]  of_platform_device_create_pdata+0x64/0x100\n[    0.097971]  of_platform_bus_create+0x184/0x380\n[    0.097975]  of_platform_bus_create+0x1cc/0x380\n[    0.097978]  of_platform_populate+0x4c/0xd0\n[    0.097984]  of_platform_default_populate_init+0xa8/0xc8\n[    0.097987]  do_one_initcall+0x58/0x240\n[    0.097991]  kernel_init_freeable+0x2c0/0x364\n[    0.097996]  kernel_init+0x10/0x100\n[    0.097999]  ret_from_fork+0x10/0x24\n[    0.098002] ---[ end trace 89fd81e0ea056caf ]---\n[    0.098038] ------------[ cut here ]------------\n[    0.098066] WARNING: CPU: 0 PID: 1 at drivers/irqchip/irq-gic-v3.c:1056 gic_irq_domain_translate+0xac/0x154\n[    0.098068] Modules linked in:\n[    0.098072] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.152-perf #1\n[    0.098074] Hardware name: Qualcomm Technologies, Inc. BENGAL IDP (DT)\n[    0.098077] pstate: 60400005 (nZCv daif +PAN -UAO)\n[    0.098081] pc : gic_irq_domain_translate+0xac/0x154\n[    0.098085] lr : gic_irq_domain_translate+0xac/0x154\n[    0.098087] sp : ffffff800805b690\n[    0.098089] x29: ffffff800805b690 x28: ffffffc139dcf228 \n[    0.098093] x27: 0000000000000000 x26: ffffff800805b8b8 \n[    0.098096] x25: ffffffa90c4251e8 x24: ffffffc063923800 \n[    0.098100] x23: 0000000000000001 x22: 0000000000000031 \n[    0.098104] x21: 0000000000000001 x20: ffffffc045ffc700 \n[    0.098108] x19: ffffff800805b8b8 x18: ffffffa90c424000 \n[    0.098111] x17: 00000000025419dd x16: 0000000090d38a3c \n[    0.098115] x15: ffffffa90c6a8b22 x14: 0000000000000000 \n[    0.098119] x13: ffffffa90c6a8000 x12: ffffffa90c424b28 \n[    0.098122] x11: ffffffa90c6a8178 x10: 0000000000000000 \n[    0.098126] x9 : 0000000000000000 x8 : 0000000000000000 \n[    0.098129] x7 : ffffffa90c6a8000 x6 : 0000000000000139 \n[    0.098133] x5 : 0000000000000000 x4 : 0000000000000000 \n[    0.098136] x3 : 0000000000000000 x2 : 0000000000000000 \n[    0.098140] x1 : ffffffa90c3fd000 x0 : 0000000000000024 \n[    0.098143] Call trace:\n[    0.098147]  gic_irq_domain_translate+0xac/0x154\n[    0.098151]  gic_irq_domain_alloc+0x44/0x254\n[    0.098156]  irq_domain_alloc_irqs_parent+0x20/0x30\n[    0.098159]  msm_mpm_gic_chip_alloc+0xac/0xdc\n[    0.098162]  __irq_domain_alloc_irqs+0xf0/0x390\n[    0.098165]  irq_create_fwspec_mapping+0x10c/0x320\n[    0.098168]  irq_create_of_mapping+0x58/0x80\n[    0.098171]  of_irq_get+0x68/0xc4\n[    0.098175]  of_irq_to_resource+0x34/0x134\n[    0.098178]  of_irq_to_resource_table+0x4c/0x70\n[    0.098182]  of_device_alloc+0x114/0x1c0\n[    0.098186]  of_platform_device_create_pdata+0x64/0x100\n[    0.098190]  of_platform_bus_create+0x184/0x380\n[    0.098194]  of_platform_bus_create+0x1cc/0x380\n[    0.098197]  of_platform_populate+0x4c/0xd0\n[    0.098201]  of_platform_default_populate_init+0xa8/0xc8\n[    0.098205]  do_one_initcall+0x58/0x240\n[    0.098208]  kernel_init_freeable+0x2c0/0x364\n[    0.098212]  kernel_init+0x10/0x100\n[    0.098215]  ret_from_fork+0x10/0x24\n[    0.098217] ---[ end trace 89fd81e0ea056cb0 ]---\n[    0.098501] platform soc:qcom,ipa_fws: assigned reserved memory node ipa_fw_region@55A00000\n[    0.116385] ------------[ cut here ]------------\n[    0.116427] WARNING: CPU: 0 PID: 1 at drivers/irqchip/irq-gic-v3.c:1056 gic_irq_domain_translate+0xac/0x154\n[    0.116429] Modules linked in:\n[    0.116437] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.152-perf #1\n[    0.116439] Hardware name: Qualcomm Technologies, Inc. BENGAL IDP (DT)\n[    0.116443] pstate: 60400005 (nZCv daif +PAN -UAO)\n[    0.116447] pc : gic_irq_domain_translate+0xac/0x154\n[    0.116451] lr : gic_irq_domain_translate+0xac/0x154\n[    0.116453] sp : ffffff800805b690\n[    0.116455] x29: ffffff800805b690 x28: ffffffc139ff9e28 \n[    0.116459] x27: 0000000000000000 x26: ffffff800805b8b8 \n[    0.116463] x25: ffffffa90c4251e8 x24: ffffffc063923800 \n[    0.116467] x23: 0000000000000001 x22: 00000000000000a1 \n[    0.116471] x21: 0000000000000001 x20: ffffffc045ffc700 \n[    0.116475] x19: ffffff800805b8b8 x18: ffffffa90c424000 \n[    0.116478] x17: 00000000985bbc01 x16: 00000000c9a1000e \n[    0.116482] x15: ffffffa90c6a8b22 x14: 0000000000000000 \n[    0.116486] x13: ffffffa90c6a8000 x12: ffffffa90c424b28 \n[    0.116489] x11: ffffffa90c6a8178 x10: 0000000000000000 \n[    0.116493] x9 : 0000000000000000 x8 : 0000000000000000 \n[    0.116497] x7 : ffffffa90c6a8000 x6 : 0000000000000168 \n[    0.116500] x5 : 0000000000000000 x4 : 0000000000000000 \n[    0.116503] x3 : 0000000000000000 x2 : 0000000000000000 \n[    0.116507] x1 : ffffffa90c3fd000 x0 : 0000000000000024 \n[    0.116511] Call trace:\n[    0.116516]  gic_irq_domain_translate+0xac/0x154\n[    0.116520]  gic_irq_domain_alloc+0x44/0x254\n[    0.116526]  irq_domain_alloc_irqs_parent+0x20/0x30\n[    0.116530]  msm_mpm_gic_chip_alloc+0xac/0xdc\n[    0.116534]  __irq_domain_alloc_irqs+0xf0/0x390\n[    0.116537]  irq_create_fwspec_mapping+0x10c/0x320\n[    0.116540]  irq_create_of_mapping+0x58/0x80\n[    0.116545]  of_irq_get+0x68/0xc4\n[    0.116548]  of_irq_to_resource+0x34/0x134\n[    0.116552]  of_irq_to_resource_table+0x4c/0x70\n[    0.116557]  of_device_alloc+0x114/0x1c0\n[    0.116561]  of_platform_device_create_pdata+0x64/0x100\n[    0.116565]  of_platform_bus_create+0x184/0x380\n[    0.116568]  of_platform_bus_create+0x1cc/0x380\n[    0.116572]  of_platform_populate+0x4c/0xd0\n[    0.116578]  of_platform_default_populate_init+0xa8/0xc8\n[    0.116583]  do_one_initcall+0x58/0x240\n[    0.116588]  kernel_init_freeable+0x2c0/0x364\n[    0.116593]  kernel_init+0x10/0x100\n[    0.116597]  ret_from_fork+0x10/0x24\n[    0.116599] ---[ end trace 89fd81e0ea056cb1 ]---\n[    0.126523] Unable to find DT property: qcom,msm-imem-download_mode\n[    0.127903] Unable to find DT property: qcom,msm-imem-emergency_download_mode\n[    0.128675] msm_watchdog f017000.qcom,wdt: wdog absent resource not present\n[    0.128948] msm_watchdog f017000.qcom,wdt: MSM Watchdog Initialized\n[    0.130536] MSM Memory Dump base table set up\n[    0.130542] MSM Memory Dump apps data table set up\n[    0.130601] Minidump: Entry name already exist.\n[    0.130606] msm_mem_dump soc:mem_dump: Mini dump entry failed id = 101\n[    0.130612] Minidump: Entry name already exist.\n[    0.130616] msm_mem_dump soc:mem_dump: Mini dump entry failed id = 102\n[    0.130622] Minidump: Entry name already exist.\n[    0.130625] msm_mem_dump soc:mem_dump: Mini dump entry failed id = 103\n[    0.130651] Minidump: Entry name already exist.\n[    0.130654] msm_mem_dump soc:mem_dump: Mini dump entry failed id = 133\n[    0.130660] Minidump: Entry name already exist.\n[    0.130663] msm_mem_dump soc:mem_dump: Mini dump entry failed id = 134\n[    0.130669] Minidump: Entry name already exist.\n[    0.130672] msm_mem_dump soc:mem_dump: Mini dump entry failed id = 135\n[    0.131626] qcom_glink_rpm soc:rpm-glink: failed to register early notif -22\n[    0.132153] sps:sps is ready.\n[    0.137902] spmi spmi-0: PMIC arbiter version v5 (0x50010000)\n[    0.140988] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.142819] qcom_smd_rpm_probe: RPM-SMD running version 0\n[    0.156424] cryptd: max_cpu_qlen set to 1000\n[    0.160818] Minidump: Enabled with max number of regions 200\n[    0.236783] KPI: Bootloader start count = 74122\n[    0.236788] KPI: Bootloader end count = 139491\n[    0.236790] KPI: Bootloader display count = 1411674756\n[    0.236793] KPI: Bootloader load kernel count = 3272524625\n[    0.236796] KPI: Kernel MPM timestamp = 155081\n[    0.236798] KPI: Kernel MPM Clock frequency = 32768\n[    0.236816] socinfo_print: v0.15, id=444, ver=1.0, raw_id=333, raw_ver=0, hw_plat=34, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65581, pmic_die_revision=65537 foundry_id=2 serial_number=2538571322 num_pmics=2 chip_family=0x6a raw_device_family=0x9 raw_device_number=0x2 nproduct_id=0x41c num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xc ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.236889] mem-offline: System booted with no zone movable memory blocks. Cannot perform memory offlining\n[    0.239315] arm-smmu 59a0000.kgsl-smmu: Couldn't get clock: gcc_gpu_memnoc_gfx\n[    0.239987] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.239992] arm-smmu c600000.apps-smmu: Bus client registration failed\n[    0.240549] Error: Driver 'arm-smmu' is already registered, aborting...\n[    0.240589] pcba config =25.\n[    0.240798] SCSI subsystem initialized\n[    0.240909] usbcore: registered new interface driver usbfs\n[    0.240934] usbcore: registered new interface driver hub\n[    0.241128] usbcore: registered new device driver usb\n[    0.241365] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.241382] usb_phy_generic soc:usb_nop_phy: Linked as a consumer to regulator.0\n[    0.241989] xiaomi_touch_probe enter\n[    0.241992] xiaomi_touch_parse_dt touch,name:xiaomi-touch\n[    0.242073] xiaomi_touch_probe over\n[    0.242447] qcom,qpnp-power-on 1c40000.qcom,spmi:qcom,pmi632@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from CBL (External Power Supply) and 'cold' boot\n[    0.242471] qcom,qpnp-power-on 1c40000.qcom,spmi:qcom,pmi632@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from SOFT (Software)\n[    0.242651] qcom,qpnp-power-on 1c40000.qcom,spmi:qcom,pm6125@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.242674] qcom,qpnp-power-on 1c40000.qcom,spmi:qcom,pm6125@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.242836] input: qpnp_pon as /devices/platform/soc/1c40000.qcom,spmi/spmi-0/spmi0-00/1c40000.qcom,spmi:qcom,pm6125@0:qcom,power-on@800/input/input0\n[    0.243613] media: Linux media interface: v0.10\n[    0.243631] videodev: Linux video capture interface: v2.00\n[    0.251240] qcom-cpufreq-hw f521000.qcom,cpufreq-hw: CPUFreq resource init failed\n[    0.252626] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.252717] platform soc:qcom,ion:qcom,ion-heap@26: assigned reserved memory node user_contig_region\n[    0.252808] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.252897] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.260140] ION heap system created\n[    0.270153] ION heap secure_heap created\n[    0.270165] ION heap secure_display created at 0x00000000f3c00000 with size 5c00000\n[    0.270169] ION heap user_contig created at 0x00000000fc000000 with size 1000000\n[    0.270172] ION heap qsecom created at 0x00000000fd000000 with size 1400000\n[    0.270176] ION heap qsecom_ta created at 0x00000000fec00000 with size 1000000\n[    0.271365] PMIC@SID2: PMI632 v2.0 options: 0, 0, 0, 0\n[    0.271494] PMIC@SID0: PM6125 v1.1 options: 0, 0, 0, 0\n[    0.272305] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.272308] ipa ipa3_pre_init:6701 fail to register with bus mgr!\n[    0.272337] ipa ipa3_plat_drv_probe:8248 ipa3_init failed\n[    0.274004] SDAM base=0xb600 size=128 registered successfully\n[    0.274107] Advanced Linux Sound Architecture Driver Initialized.\n[    0.274419] Bluetooth: Core ver 2.22\n[    0.274431] NET: Registered protocol family 31\n[    0.274434] Bluetooth: HCI device and connection manager initialized\n[    0.274440] Bluetooth: HCI socket layer initialized\n[    0.274444] Bluetooth: L2CAP socket layer initialized\n[    0.274448] Bluetooth: SCO socket layer initialized\n[    0.274453] NetLabel: Initializing\n[    0.274455] NetLabel:  domain hash size = 128\n[    0.274457] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\n[    0.274505] NetLabel:  unlabeled traffic allowed by default\n[    0.280710] qcom-clk-smd-rpm soc:qcom,rpmcc: Registered RPM clocks\n[    0.300308] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=5500mV ncp_voltage=5500mV bst_voltage=5650mV\n[    0.300598] pm6125_s3_level: Bringing 1uV into 16-16uV\n[    0.300823] pm6125_s3_floor_level: Bringing 1uV into 16-16uV\n[    0.301128] gpu_cx_gdsc: supplied by pm6125_s3_level\n[    0.301141] gpu_gx_gdsc: supplied by pm6125_s3_level\n[    0.301278] pm6125_s3_level_ao: Bringing 1uV into 16-16uV\n[    0.301645] pm6125_s5_level: Bringing 1uV into 16-16uV\n[    0.301831] pm6125_s5_floor_level: Bringing 1uV into 16-16uV\n[    0.302243] pm6125_s5_level_ao: Bringing 1uV into 16-16uV\n[    0.303523] pm6125_l2_level: Bringing 1uV into 16-16uV\n[    0.303764] pm6125_l3_level: Bringing 1uV into 16-16uV\n[    0.308885] bengal-dispcc 5f00000.qcom,dispcc: Linked as a consumer to regulator.16\n[    0.308938] bengal-dispcc 5f00000.qcom,dispcc: Dropping the link to regulator.16\n[    0.309089] gcc-bengal 1400000.qcom,gcc: Linked as a consumer to regulator.16\n[    0.309105] gcc-bengal 1400000.qcom,gcc: Linked as a consumer to regulator.18\n[    0.309120] gcc-bengal 1400000.qcom,gcc: Linked as a consumer to regulator.19\n[    0.316227] gcc-bengal 1400000.qcom,gcc: Registered GCC clocks\n[    0.316335] bengal-gpucc 5990000.qcom,gpucc: Linked as a consumer to regulator.16\n[    0.316352] bengal-gpucc 5990000.qcom,gpucc: Linked as a consumer to regulator.19\n[    0.317139] gpu_cc_gx_gfx3d_clk_src: set OPP pair(320000000 Hz: 64 uV) on 5900000.qcom,kgsl-3d0\n[    0.317160] gpu_cc_gx_gfx3d_clk_src: set OPP pair(980000000 Hz: 416 uV) on 5900000.qcom,kgsl-3d0\n[    0.317206] bengal-gpucc 5990000.qcom,gpucc: Registered GPUCC clocks\n[    0.317437] arm-smmu 59a0000.kgsl-smmu: Linked as a consumer to regulator.11\n[    0.317495] arm-smmu 59a0000.kgsl-smmu: \tnon-coherent table walk\n[    0.317499] arm-smmu 59a0000.kgsl-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.317503] arm-smmu 59a0000.kgsl-smmu: \tstream matching with 4 register groups\n[    0.326840] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.326847] arm-smmu c600000.apps-smmu: Bus client registration failed\n[    0.327646] cpufreq: driver qcom-cpufreq-hw up and running\n[    0.328636] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.328639] ipa ipa3_pre_init:6701 fail to register with bus mgr!\n[    0.328664] ipa ipa3_plat_drv_probe:8248 ipa3_init failed\n[    0.328888] bengal-dispcc 5f00000.qcom,dispcc: Linked as a consumer to regulator.16\n[    0.330508] bengal-dispcc 5f00000.qcom,dispcc: Registered Display CC clocks\n[    0.330991] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.330995] arm-smmu c600000.apps-smmu: Bus client registration failed\n[    0.331429] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.331431] ipa ipa3_pre_init:6701 fail to register with bus mgr!\n[    0.331453] ipa ipa3_plat_drv_probe:8248 ipa3_init failed\n[    0.332503] clocksource: Switched to clocksource arch_sys_counter\n[    0.393337] VFS: Disk quotas dquot_6.6.0\n[    0.393371] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.395554] msm_bus_fabric_init_driver\n[    0.400800] msm_bus_dev_init_qos: Skipping QOS init for 26\n[    0.400849] msm_bus_device 1880000.ad-hoc-bus: Bus scaling driver probe successful\n[    0.402375] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.402379] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.402586] mdss_pll 5e94400.qcom,mdss_dsi0_pll: Linked as a consumer to regulator.10\n[    0.403990] dsi_pll_clock_register_14nm: Registered DSI PLL ndx=0 clocks successfully\n[    0.404485] NET: Registered protocol family 2\n[    0.404879] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes)\n[    0.404908] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.405046] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.405304] TCP: Hash tables configured (established 32768 bind 32768)\n[    0.405389] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.405437] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.405592] NET: Registered protocol family 1\n[    0.406599] arm-smmu c600000.apps-smmu: \tnon-coherent table walk\n[    0.406602] arm-smmu c600000.apps-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.406606] arm-smmu c600000.apps-smmu: \tstream matching with 50 register groups\n[    0.407466] qsmmuv500-tbu c789000.mm_rt_tbu: Linked as a consumer to regulator.8\n[    0.407662] qsmmuv500-tbu c78d000.mm_nrt_tbu: Linked as a consumer to regulator.9\n[    0.407852] qsmmuv500-tbu c791000.cdsp_tbu: Linked as a consumer to regulator.7\n[    0.423732] ipa ipa3_smp2p_probe:8116 fail to get smp2p clk resp bit -517\n[    0.424217] ipa soc:ipa_smmu_ap: Linked as a consumer to c600000.apps-smmu\n[    0.440415] iommu: Adding device soc:ipa_smmu_ap to group 0\n[    0.441269] ipa soc:ipa_smmu_wlan: Linked as a consumer to c600000.apps-smmu\n[    0.441730] iommu: Adding device soc:ipa_smmu_wlan to group 1\n[    0.442233] ipa soc:ipa_smmu_uc: Linked as a consumer to c600000.apps-smmu\n[    0.442761] iommu: Adding device soc:ipa_smmu_uc to group 2\n[    0.443208] qupv3_geni_se 4ac0000.qcom,qupv3_0_geni_se: Linked as a consumer to c600000.apps-smmu\n[    0.454579] iommu: Adding device 4ac0000.qcom,qupv3_0_geni_se to group 3\n[    0.455660] ipa ipa3_smp2p_probe:8116 fail to get smp2p clk resp bit -517\n[    0.456288] Trying to unpack rootfs image as initramfs...\n[    0.770740] Freeing initrd memory: 7476K\n[    0.775963] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.794657] Initialise system trusted keyrings\n[    0.794962] workingset: timestamp_bits=45 max_order=20 bucket_order=0\n[    0.800781] exFAT: file-system version 5.8-2arter97\n[    0.800899] Registering sdcardfs 0.1\n[    0.801140] ntfs: driver 2.1.32 [Flags: R/W].\n[    0.801272] fuse init (API version 7.27)\n[    0.808361] Key type asymmetric registered\n[    0.808372] Asymmetric key parser 'x509' registered\n[    0.808403] io scheduler noop registered\n[    0.808722] io scheduler cfq registered (default)\n[    0.808726] io scheduler mq-deadline registered\n[    0.808728] io scheduler kyber registered\n[    0.808830] io scheduler bfq registered\n[    0.825556] gpi_dma 4a00000.qcom,gpi-dma: Linked as a consumer to c600000.apps-smmu\n[    0.826775] iommu: Adding device 4a00000.qcom,gpi-dma to group 4\n[    0.833585] subsys-pil-tz ab00000.qcom,lpass: Linked as a consumer to regulator.27\n[    0.833619] subsys-pil-tz ab00000.qcom,lpass: Linked as a consumer to regulator.26\n[    0.835211] subsys-pil-tz b300000.qcom,turing: Linked as a consumer to regulator.16\n[    0.836186] subsys-pil-tz 5ab0000.qcom,venus: Linked as a consumer to regulator.5\n[    0.836341] minidump-id not found for venus\n[    0.836403] subsys-pil-tz 5ab0000.qcom,venus: for venus segments only will be dumped.\n[    0.836476] subsys-pil-tz 5ab0000.qcom,venus: for md_venus segments only will be dumped.\n[    0.836754] subsys-pil-tz 6080000.qcom,mss: Linked as a consumer to regulator.16\n[    0.837622] minidump-id not found for ipa_fws\n[    0.837683] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    0.837753] subsys-pil-tz soc:qcom,ipa_fws: for md_ipa_fws segments only will be dumped.\n[    0.838280] minidump-id not found for a610_zap\n[    0.838345] subsys-pil-tz soc:qcom,kgsl-hyp: for a610_zap segments only will be dumped.\n[    0.838414] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a610_zap segments only will be dumped.\n[    0.844653] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.844859] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.844978] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.847853] scm_call failed: func id 0xc2000502, ret: -2, syscall returns: 0xffffffffffffffff, 0x0, 0x0\n[    0.847867] msm-eud 1610000.qcom,msm-eud: TCSR scm_io_write failed with rc:-22\n[    0.854741] icnss c800000.qcom,icnss: Linked as a consumer to c600000.apps-smmu\n[    0.856385] iommu: Adding device c800000.qcom,icnss to group 5\n[    0.856855] icnss: Recursive recovery allowed for WLAN\n[    0.856946] icnss c800000.qcom,icnss: Linked as a consumer to regulator.32\n[    0.857003] icnss c800000.qcom,icnss: Linked as a consumer to regulator.40\n[    0.857039] icnss c800000.qcom,icnss: Linked as a consumer to regulator.41\n[    0.857169] icnss c800000.qcom,icnss: Linked as a consumer to regulator.47\n[    0.857641] icnss c800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.857918] icnss: Unable to create debugfs -19\n[    0.858037] icnss: Platform driver probed successfully\n[    0.863491] msm_geni_serial 4a8c000.qcom,qup_uart: Wakeup byte 0xfd\n[    0.863917] msm_geni_serial 4a8c000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    0.863929] msm_geni_serial 4a8c000.qcom,qup_uart: Failed to create dbg dir\n[    0.866615] 4a8c000.qcom,qup_uart: ttyHS0 at MMIO 0x4a8c000 (irq = 145, base_baud = 0) is a MSM\n[    0.867726] msm_geni_serial_init: Driver initialized\n[    0.872007] random: crng init done\n[    0.896185] brd: module loaded\n[    0.911937] loop: module loaded\n[    0.912283] zram: Added device: zram0\n[    0.913085] QSEECOM: qseecom_init_control: qseecom.qsee_version = 0x1402000\n[    0.913172] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.922114] simtray_probe enter\n[    0.923115] dpdt_probe enter\n[    0.924328] fpc1020 soc:fpc1020: fpc1020_probe: ok\n[    0.924586] fpc1020_init OK\n[    0.925340] input: uinput-goodix as /devices/virtual/input/input1\n[    0.925356] gf_spi: version V1.2.11\n[    0.925672] gf_spi: status = 0x0\n[    0.925755] focaltech_fp: FocalTech fingerprint device control driver registered.\n[    0.926309] [DBG][cdfinger]:  606: <cdfinger_probe>enter\n[    0.926313] [DBG][cdfinger]:  279: <cdfinger_parse_dts>enter\n[    0.926457] cdfinger_fp soc:cdfinger_fingerprint: soc:cdfinger_fingerprint supply vdd not found, using dummy regulator\n[    0.926497] cdfinger_fp soc:cdfinger_fingerprint: Linked as a consumer to regulator.0\n[    0.926654] input: cdfinger_input as /devices/virtual/input/input2\n[    0.928032] qce 1b20000.qcedev: Linked as a consumer to c600000.apps-smmu\n[    0.928959] iommu: Adding device 1b20000.qcedev to group 6\n[    0.932948] qce 1b20000.qcedev: QTI Crypto 5.5.1 device found @0x1b20000\n[    0.933295] sps:BAM 0x0000000001b04000 is registered.\n[    0.933522] sps:BAM 0x0000000001b04000 (va:0x0000000054967dea) enabled: ver:0x27, number of pipes:16\n[    0.933896] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001b04000 irq 14\n[    0.942667] qce 1b20000.qcedev:qcom_cedev_ns_cb: Linked as a consumer to c600000.apps-smmu\n[    0.943358] iommu: Adding device 1b20000.qcedev:qcom_cedev_ns_cb to group 7\n[    0.944280] qce 1b20000.qcedev:qcom_cedev_s_cb: Linked as a consumer to c600000.apps-smmu\n[    0.945593] iommu: Adding device 1b20000.qcedev:qcom_cedev_s_cb to group 8\n[    0.948679] Error: Driver 'qcrypto' is already registered, aborting...\n[    0.951414] ufshcd-qcom 4804000.ufshc: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    0.951430] ufshcd-qcom 4804000.ufshc: no vccq2-voltage-level property.\n[    0.951578] ufshcd-qcom 4804000.ufshc: Linked as a consumer to regulator.2\n[    0.951899] ufshcd-qcom 4804000.ufshc: Linked as a consumer to regulator.48\n[    0.951926] ufshcd-qcom 4804000.ufshc: Linked as a consumer to regulator.35\n[    0.953363] ufshcd-qcom 4804000.ufshc: Linked as a consumer to regulator.42\n[    0.953450] ufs_qcom_phy_qmp_v3_660 4807000.ufsphy_mem: Linked as a consumer to regulator.36\n[    0.953477] ufs_qcom_phy_qmp_v3_660 4807000.ufsphy_mem: Linked as a consumer to regulator.28\n[    0.953728] ufshcd-qcom 4804000.ufshc: ufs_qcom_parse_reg_info: Unable to find qcom,vccq-parent-supply regulator, assuming enabled\n[    0.956970] scsi host0: ufshcd\n[    0.982635] SCSI Media Changer driver v0.25 \n[    0.987294] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    0.989736] libphy: Fixed MDIO Bus: probed\n[    0.989740] tun: Universal TUN/TAP device driver, 1.6\n[    0.989875] PPP generic driver version 2.4.2\n[    0.989977] PPP BSD Compression module registered\n[    0.989982] PPP Deflate Compression module registered\n[    0.990138] PPP MPPE Compression module registered\n[    0.990144] NET: Registered protocol family 24\n[    0.990170] PPTP driver version 0.8.5\n[    0.990880] cnss_utils: Unable to create debugfs -19\n[    0.990939] wcnss_pre_alloc_init: Failed to create debugfs dir\n[    0.990942] CLD80211: Initializing\n[    0.991085] usbcore: registered new interface driver r8152\n[    0.999748] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.002726] ufshcd-qcom 4804000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.004402] msm-qusb-phy 1613000.qusb: 1613000.qusb supply USB3_GDSC not found, using dummy regulator\n[    1.004445] msm-qusb-phy 1613000.qusb: Linked as a consumer to regulator.0\n[    1.004496] msm-qusb-phy 1613000.qusb: Linked as a consumer to regulator.28\n[    1.004528] msm-qusb-phy 1613000.qusb: Linked as a consumer to regulator.39\n[    1.004555] msm-qusb-phy 1613000.qusb: Linked as a consumer to regulator.36\n[    1.007402] msm-usb-ssphy-qmp 1615000.ssphy: Linked as a consumer to regulator.28\n[    1.007436] msm-usb-ssphy-qmp 1615000.ssphy: Linked as a consumer to regulator.36\n[    1.010743] msm-dwc3 4e00000.ssusb: Linked as a consumer to c600000.apps-smmu\n[    1.011564] iommu: Adding device 4e00000.ssusb to group 9\n[    1.012215] msm-dwc3 4e00000.ssusb: Linked as a consumer to regulator.3\n[    1.014527] dwc3 4e00000.dwc3: Failed to get clk 'ref': -2\n[    1.014816] dwc3 4e00000.dwc3: changing max_speed on rev 00000000\n[    1.017809] Invalid index Defaulting curr to 0\n[    1.020003] msm-dwc3 4e00000.ssusb: Dropping the link to regulator.3\n[    1.024268] usbcore: registered new interface driver usb-storage\n[    1.024384] usbcore: registered new interface driver usb_ehset_test\n[    1.024414] usbcore: registered new interface driver lvs\n[    1.025854] usbcore: registered new interface driver xpad\n[    1.025873] SAR  virtualsar_init - Start driver initialization...\n[    1.025909] ret : 0\n[    1.027965] rtc-pm8xxx 1c40000.qcom,spmi:qcom,pm6125@0:qcom,pm6125_rtc: rtc core: registered pm8xxx_rtc as rtc0\n[    1.028085] rtc-pm8xxx 1c40000.qcom,spmi:qcom,pm6125@0:qcom,pm6125_rtc: setting system clock to 1970-07-15 17:08:24 UTC (16909704)\n[    1.028693] i2c /dev entries driver\n[    1.029811] i2c_geni 4a84000.i2c: Bus frequency is set to 400000Hz\n[    1.032767] bengal-pinctrl 400000.pinctrl: invalid group \"gpior25\" for function \"gpio\"\n[    1.033159] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.033347] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.033497] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.033647] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.033652] I2C PMIC: i2c_pmic_read: i2c_pmic_read failed for 3 retries, rc = -107\n[    1.033656] I2C PMIC: i2c_pmic_determine_initial_status: Couldn't read irq data rc=-107\n[    1.033659] I2C PMIC: i2c_pmic_probe: Couldn't determine initial status rc=-107\n[    1.033689] i2c_pmic: probe of 0-0028 failed with error -107\n[    1.034221] virtualsar,sar 0-0033: virtualsar_probe\n[    1.034225] SAR  virtualsar_probe - Device tree matched!\n[    1.034250] parse irq gpio incorrectly\n                \n[    1.034391] input: vitural-sar as /devices/virtual/input/input3\n[    1.034545] genirq: irq_chip msmgpio did not update eff. affinity mask of irq 217\n[    1.034617] after sar_irq_enable,probe end \n[    1.035010] hyper backlight ic is sgm37603 !\n[    1.035222] i2c i2c-0: Failed to register i2c client lm36923 at 0x36 (-16)\n[    1.035257] i2c i2c-0: of_i2c: Failure registering /soc/i2c@4a84000/lm36923@36\n[    1.035261] i2c i2c-0: Failed to create I2C device for /soc/i2c@4a84000/lm36923@36\n[    1.036799] rc_core: IR Remote Control driver registered, major 508\n[    1.036858] liping led!\n[    1.036956] ir-spi spi0.0: lirc_dev: driver ir-spi registered at minor = 0\n[    1.042153] Couldn't parse device tree rc=-517\n[    1.065772] reg-cooling-device soc:qcom,rpm-smd:rpm-regulator-smpa3:cx-cdev-lvl: Linked as a consumer to regulator.17\n[    1.066331] reg-cooling-device soc:qcom,rpm-smd:rpm-regulator-smpa5:mx-cdev-lvl: Linked as a consumer to regulator.19\n[    1.075021] device-mapper: uevent: version 1.0.3\n[    1.075398] device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel@redhat.com\n[    1.076447] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in devicetree\n[    1.076452] bt_power_populate_dt_pinfo: wl-reset-gpio not provided in devicetree\n[    1.076508] bt_dt_parse_vreg_info: qca,bt-vdd-ldo: is not provided in device tree\n[    1.076511] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    1.076514] bt_dt_parse_vreg_info: qca,bt-vdd-aon: is not provided in device tree\n[    1.076517] bt_dt_parse_vreg_info: qca,bt-vdd-dig: is not provided in device tree\n[    1.076520] bt_dt_parse_vreg_info: qca,bt-vdd-rfa1: is not provided in device tree\n[    1.076523] bt_dt_parse_vreg_info: qca,bt-vdd-rfa2: is not provided in device tree\n[    1.076526] bt_dt_parse_vreg_info: qca,bt-vdd-asd: is not provided in device tree\n[    1.076530] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.080739] sdhci: Secure Digital Host Controller Interface driver\n[    1.080743] sdhci: Copyright(c) Pierre Ossman\n[    1.080746] sdhci-pltfm: SDHCI platform and OF driver helper\n[    1.082671] sdhci_msm 4784000.sdhci: core_reset unavailable,err = -2\n[    1.082677] sdhci_msm 4784000.sdhci: Reset data parsing error\n[    1.087748] sdhci_msm 4784000.sdhci: Linked as a consumer to regulator.46\n[    1.087786] sdhci_msm 4784000.sdhci: Linked as a consumer to regulator.29\n[    1.087814] sdhci_msm 4784000.sdhci: Linked as a consumer to regulator.31\n[    1.091286] qpnp_vibrator_ldo_probe: Vibrator LDO successfully registered: uV = 3000000, overdrive = disabled\n[    1.092767] usbcore: registered new interface driver usbhid\n[    1.092769] usbhid: USB HID core driver\n[    1.093118] ashmem: initialized\n[    1.093272] wlan_hdd_state wlan major(505) initialized\n[    1.095363] bimc-bwmon 1b8e300.qcom,cpu-cpu-ddr-bwmon: BW HWmon governor registered.\n[    1.098630] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-cpu-ddr-latmon: Memory Latency governor registered.\n[    1.099415] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-computemon: Compute governor registered.\n[    1.099808] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-cpu-ddr-latmon: Memory Latency governor registered.\n[    1.100164] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-computemon: Compute governor registered.\n[    1.104888] ufshcd-qcom 4804000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[1, 1], pwr[FAST MODE, FAST MODE], rate = 2\n[    1.105642] scsi 0:0:0:49488: Well-known LUN    SAMSUNG  KM5C7001DM-B622  0800 PQ: 0 ANSI: 6\n[    1.106492] scsi 0:0:0:49476: Well-known LUN    SAMSUNG  KM5C7001DM-B622  0800 PQ: 0 ANSI: 6\n[    1.107067] scsi 0:0:0:49456: Well-known LUN    SAMSUNG  KM5C7001DM-B622  0800 PQ: 0 ANSI: 6\n[    1.111898] [l2 counters error]: Registered L2 cache PMU cluster 0\n[    1.111963] [l2 counters error]: Registered L2 cache PMU cluster 1\n[    1.112429] l2cache-pmu soc:l2cache_pmu: CPU0 associated with cluster 0\n[    1.112931] l2cache-pmu soc:l2cache_pmu: CPU1 associated with cluster 0\n[    1.113010] l2cache-pmu soc:l2cache_pmu: CPU2 associated with cluster 0\n[    1.113055] l2cache-pmu soc:l2cache_pmu: CPU3 associated with cluster 0\n[    1.113085] l2cache-pmu soc:l2cache_pmu: CPU4 associated with cluster 1\n[    1.113153] l2cache-pmu soc:l2cache_pmu: CPU5 associated with cluster 1\n[    1.113185] scsi 0:0:0:0: Direct-Access     SAMSUNG  KM5C7001DM-B622  0800 PQ: 0 ANSI: 6\n[    1.113268] l2cache-pmu soc:l2cache_pmu: CPU6 associated with cluster 1\n[    1.113319] l2cache-pmu soc:l2cache_pmu: CPU7 associated with cluster 1\n[    1.113417] l2cache-pmu soc:l2cache_pmu: Registered L2 cache PMU using 2 HW PMUs\n[    1.114222] coresight-tmc 8047000.tmc: No csr data\n[    1.114226] coresight-tmc 8047000.tmc: invalid cti data\n[    1.114387] coresight-tmc 8048000.tmc: Linked as a consumer to c600000.apps-smmu\n[    1.114757] mmc0: SDHCI controller on 4784000.sdhci [4784000.sdhci] using 64-bit ADMA in legacy mode\n[    1.114997] iommu: Adding device 8048000.tmc to group 10\n[    1.116803] scsi 0:0:0:1: Direct-Access     SAMSUNG  KM5C7001DM-B622  0800 PQ: 0 ANSI: 6\n[    1.118479] coresight-stm 8002000.stm: stm_register_device failed, probing deffered\n[    1.118547] OF: graph: no port node found in /soc/cti@8B30000\n[    1.118631] OF: graph: no port node found in /soc/cti@98E0000\n[    1.118709] OF: graph: no port node found in /soc/cti@98F0000\n[    1.118788] OF: graph: no port node found in /soc/cti@8867000\n[    1.118868] OF: graph: no port node found in /soc/cti@8833000\n[    1.118946] OF: graph: no port node found in /soc/cti@8A02000\n[    1.119025] OF: graph: no port node found in /soc/cti@8B59000\n[    1.119105] OF: graph: no port node found in /soc/cti@8B5A000\n[    1.119186] OF: graph: no port node found in /soc/cti@8B5B000\n[    1.119262] OF: graph: no port node found in /soc/cti@8B5C000\n[    1.119341] OF: graph: no port node found in /soc/cti@8010000\n[    1.119418] OF: graph: no port node found in /soc/cti@8011000\n[    1.119493] OF: graph: no port node found in /soc/cti@801a000\n[    1.119571] OF: graph: no port node found in /soc/cti@801b000\n[    1.119649] OF: graph: no port node found in /soc/cti@801c000\n[    1.119731] OF: graph: no port node found in /soc/cti@801d000\n[    1.119809] OF: graph: no port node found in /soc/cti@801e000\n[    1.119887] OF: graph: no port node found in /soc/cti@801f000\n[    1.119965] OF: graph: no port node found in /soc/cti@8012000\n[    1.120108] OF: graph: no port node found in /soc/cti@8013000\n[    1.120188] OF: graph: no port node found in /soc/cti@8014000\n[    1.120274] OF: graph: no port node found in /soc/cti@8015000\n[    1.120356] OF: graph: no port node found in /soc/cti@8016000\n[    1.120435] OF: graph: no port node found in /soc/cti@8017000\n[    1.120512] OF: graph: no port node found in /soc/cti@8018000\n[    1.120591] OF: graph: no port node found in /soc/cti@8019000\n[    1.123318] scsi 0:0:0:2: Direct-Access     SAMSUNG  KM5C7001DM-B622  0800 PQ: 0 ANSI: 6\n[    1.123677] scsi 0:0:0:3: Direct-Access     SAMSUNG  KM5C7001DM-B622  0800 PQ: 0 ANSI: 6\n[    1.124017] scsi 0:0:0:4: Direct-Access     SAMSUNG  KM5C7001DM-B622  0800 PQ: 0 ANSI: 6\n[    1.124357] scsi 0:0:0:5: Direct-Access     SAMSUNG  KM5C7001DM-B622  0800 PQ: 0 ANSI: 6\n[    1.126266] sd 0:0:0:0: Power-on or device reset occurred\n[    1.126291] sd 0:0:0:2: Power-on or device reset occurred\n[    1.126303] sd 0:0:0:1: Power-on or device reset occurred\n[    1.126954] sd 0:0:0:2: [sdc] Write Protect is off\n[    1.126958] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.127074] sd 0:0:0:0: [sda] Write Protect is off\n[    1.127078] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.127191] sd 0:0:0:2: [sdc] Optimal transfer size 524288 bytes\n[    1.127288] sd 0:0:0:0: [sda] Optimal transfer size 524288 bytes\n[    1.130424]  sdc: sdc1 sdc2\n[    1.130837]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11\n[    1.132129] sd 0:0:0:3: Power-on or device reset occurred\n[    1.132378] sd 0:0:0:4: Power-on or device reset occurred\n[    1.132810] sd 0:0:0:3: [sdd] Write Protect is off\n[    1.132814] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.133055] sd 0:0:0:3: [sdd] Optimal transfer size 524288 bytes\n[    1.133165] sd 0:0:0:4: [sde] Write Protect is off\n[    1.133187] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    1.133412] sd 0:0:0:4: [sde] Optimal transfer size 524288 bytes\n[    1.134524] sd 0:0:0:1: [sdb] Write Protect is off\n[    1.134528] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.135037]  sdd: sdd1 sdd2 sdd3\n[    1.135537] sd 0:0:0:1: [sdb] Optimal transfer size 524288 bytes\n[    1.136384]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51 sde52 sde53 sde54 sde55 sde56\n[    1.139367] sd 0:0:0:5: Power-on or device reset occurred\n[    1.139903] sd 0:0:0:5: [sdf] Write Protect is off\n[    1.139907] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    1.140257] sd 0:0:0:5: [sdf] Optimal transfer size 524288 bytes\n[    1.141978] OF: graph: no port node found in /soc/csr@8001000\n[    1.142046]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6 sdf7\n[    1.143272] coresight-csr 8001000.csr: CSR initialized: coresight-csr\n[    1.143408] OF: graph: no port node found in /soc/csr@8a03000\n[    1.143576] coresight-csr 8a03000.csr: CSR initialized: coresight-swao-csr\n[    1.144011]  sdb: sdb1 sdb2\n[    1.145647] OF: graph: no port node found in /soc/hwevent\n[    1.145724] coresight-hwevent soc:hwevent: Hardware Event driver initialized\n[    1.146435] coresight-dummy soc:modem_rfxe: Dummy device initialized\n[    1.146567] coresight-dummy soc:snoc: Dummy device initialized\n[    1.146686] coresight-dummy soc:tpdm@8a26000: Dummy device initialized\n[    1.146803] coresight-dummy soc:tpdm@899c000: Dummy device initialized\n[    1.147346] coresight-remote-etm soc:audio_etm0: Remote ETM initialized\n[    1.147494] coresight-remote-etm soc:turing_etm0: Remote ETM initialized\n[    1.147889] coresight-remote-etm soc:modem_etm0: Remote ETM initialized\n[    1.148197] OF: graph: no port node found in /soc/tgu@9900000\n[    1.150098] usbcore: registered new interface driver snd-usb-audio\n[    1.152018] uaudio-qmi soc:usb_audio_qmi_dev: Linked as a consumer to c600000.apps-smmu\n[    1.152087] iommu: Adding device soc:usb_audio_qmi_dev to group 11\n[    1.154847] msm_vidc:   err : ffffffff: .....: Failed to create debugfs for msm_vidc\n[    1.155613] msm_vidc:   err : ffffffff: .....: no device Registered\n[    1.156050] msm_vidc:   err : ffffffff: .....: Failed to create debugfs for msm_vidc\n[    1.156885] msm_vidc_v4l2 5a00000.qcom,vidc:non_secure_cb: Linked as a consumer to c600000.apps-smmu\n[    1.157226] iommu: Adding device 5a00000.qcom,vidc:non_secure_cb to group 12\n[    1.157553] msm_vidc_v4l2 5a00000.qcom,vidc:secure_bitstream_cb: Linked as a consumer to c600000.apps-smmu\n[    1.158123] iommu: Adding device 5a00000.qcom,vidc:secure_bitstream_cb to group 13\n[    1.158477] msm_vidc_v4l2 5a00000.qcom,vidc:secure_pixel_cb: Linked as a consumer to c600000.apps-smmu\n[    1.158937] iommu: Adding device 5a00000.qcom,vidc:secure_pixel_cb to group 14\n[    1.159316] msm_vidc_v4l2 5a00000.qcom,vidc:secure_non_pixel_cb: Linked as a consumer to c600000.apps-smmu\n[    1.159831] iommu: Adding device 5a00000.qcom,vidc:secure_non_pixel_cb to group 15\n[    1.161173] dsi_phy 5e94400.qcom,mdss_dsi_phy0: 5e94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    1.161187] dsi_phy 5e94400.qcom,mdss_dsi_phy0: Linked as a consumer to regulator.0\n[    1.161204] dsi_phy 5e94400.qcom,mdss_dsi_phy0: Linked as a consumer to regulator.19\n[    1.161219] [drm:dsi_phy_driver_probe] [msm-dsi-info]: DSI_0: Probe successful\n[    1.162036] drm_dsi_ctrl 5e94000.qcom,mdss_dsi0_ctrl: 5e94000.qcom,mdss_dsi0_ctrl supply refgen not found, using dummy regulator\n[    1.162045] drm_dsi_ctrl 5e94000.qcom,mdss_dsi0_ctrl: Linked as a consumer to regulator.0\n[    1.162065] drm_dsi_ctrl 5e94000.qcom,mdss_dsi0_ctrl: Linked as a consumer to regulator.42\n[    1.162070] AXI: get_pdata(): Error: Client name not found\n[    1.162072] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    1.162084] [drm:dsi_ctrl_dev_probe] [msm-dsi-info]: dsi-ctrl-0: Probe successful\n[    1.163605] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    1.163697] [drm:dsi_panel_get] *ERROR* [msm-dsi-error]: kook: [ft8719 v2 video mode dsi truly panel], gpio=1252\n[    1.165278] msm_drm 5e00000.qcom,mdss_mdp: Linked as a consumer to regulator.10\n[    1.165639] msm-dsi-display soc:qcom,dsi-display-primary: Linked as a consumer to regulator.33\n[    1.165652] msm-dsi-display soc:qcom,dsi-display-primary: Linked as a consumer to regulator.14\n[    1.165664] msm-dsi-display soc:qcom,dsi-display-primary: Linked as a consumer to regulator.15\n[    1.165828] [drm:dsi_display_bind] [msm-dsi-info]: Successfully bind display panel 'qcom,mdss_dsi_ft8719_truly_v2_video'\n[    1.165962] hyper:dsi_display_feature_create_sysfs success\n[    1.165972] hyper:dsi_display_whitepoint_create_sysfs success\n[    1.165981] msm_drm 5e00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-primary (ops dsi_display_comp_ops)\n[    1.166011] [drm] mapped mdp address space @00000000e40d5858\n[    1.166459] [drm:_sde_kms_hw_init_blocks:3588] sde hardware revision:0x60030000\n[    1.170130] msmdrm_smmu 5e00000.qcom,mdss_mdp:qcom,smmu_sde_unsec_cb: Linked as a consumer to c600000.apps-smmu\n[    1.170587] iommu: Adding device 5e00000.qcom,mdss_mdp:qcom,smmu_sde_unsec_cb to group 16\n[    1.170686] [drm] probing device qcom,smmu_sde_unsec\n[    1.170690] [drm] Created domain mdp_ns, secure=0\n[    1.171412] msmdrm_smmu 5e00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb: Linked as a consumer to c600000.apps-smmu\n[    1.172091] iommu: Adding device 5e00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 17\n[    1.172323] [drm] probing device qcom,smmu_sde_sec\n[    1.172326] [drm] Created domain mdp_s, secure=1\n[    1.172675] WARNING: CPU: 0 PID: 1 at mm/page_alloc.c:4837 __alloc_pages_nodemask+0x270/0xfbc\n[    1.172677] Modules linked in:\n[    1.172683] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.152-perf #1\n[    1.172685] Hardware name: Qualcomm Technologies, Inc. BENGAL IDP (DT)\n[    1.172688] pstate: 20400005 (nzCv daif +PAN -UAO)\n[    1.172691] pc : __alloc_pages_nodemask+0x270/0xfbc\n[    1.172695] lr : kmalloc_order+0x1c/0x40\n[    1.172696] sp : ffffff800805b330\n[    1.172698] x29: ffffff800805b330 x28: 000000000000000f \n[    1.172701] x27: ffffffc11d442400 x26: ffffffa90c529000 \n[    1.172704] x25: ffffffc11d442004 x24: ffffffa90c529700 \n[    1.172706] x23: 000000000000000f x22: 00000000006080c0 \n[    1.172709] x21: 0000000004008030 x20: ffffffa90a08842c \n[    1.172712] x19: ffffffc11d442000 x18: ffffffffffffffff \n[    1.172714] x17: 000000000007f154 x16: 000000000007e424 \n[    1.172717] x15: ffffffc11da3321c x14: ffffffffffffffff \n[    1.172720] x13: ffffffc11da32291 x12: 0000000000000000 \n[    1.172722] x11: 0101010101010101 x10: 7f7fffff7f7fffff \n[    1.172725] x9 : ff10d6eaff10d6d7 x8 : 746867696c6b6361 \n[    1.172728] x7 : 622d306c656e6170 x6 : ffffffc11d442014 \n[    1.172730] x5 : 8000000080000080 x4 : 0000000000000000 \n[    1.172733] x3 : 0000000000000000 x2 : ffffffa90c3fdac8 \n[    1.172736] x1 : 0000000000000000 x0 : 000000000060c0c0 \n[    1.172739] Call trace:\n[    1.172743]  __alloc_pages_nodemask+0x270/0xfbc\n[    1.172745]  kmalloc_order+0x1c/0x40\n[    1.172748]  kmalloc_order_trace+0x28/0x110\n[    1.172751]  __kmalloc+0x258/0x3b0\n[    1.172756]  thermal_cooling_device_setup_sysfs+0x64/0xe0\n[    1.172759]  __thermal_cooling_device_register+0x130/0x3a0\n[    1.172761]  thermal_of_cooling_device_register+0xc/0x14\n[    1.172767]  backlight_device_register+0x148/0x260\n[    1.172771]  sde_connector_init+0x6b8/0xc00\n[    1.172774]  _sde_kms_drm_obj_init+0x174/0x9e0\n[    1.172776]  sde_kms_hw_init+0xbf0/0xd90\n[    1.172780]  msm_drm_bind+0x224/0x760\n[    1.172784]  try_to_bring_up_master+0x148/0x1ac\n[    1.172787]  component_master_add_with_match+0xb0/0xf0\n[    1.172790]  msm_pdev_probe+0xb4/0x2c0\n[    1.172793]  platform_drv_probe+0x50/0xa4\n[    1.172796]  really_probe+0x22c/0x310\n[    1.172798]  driver_probe_device+0x54/0xf0\n[    1.172801]  __driver_attach+0xe0/0xe4\n[    1.172803]  bus_for_each_dev+0x70/0xcc\n[    1.172806]  driver_attach+0x20/0x30\n[    1.172808]  bus_add_driver+0x168/0x20c\n[    1.172811]  driver_register+0x74/0x120\n[    1.172814]  __platform_driver_register+0x44/0x50\n[    1.172818]  msm_drm_register+0x3c/0x50\n[    1.172822]  do_one_initcall+0x58/0x240\n[    1.172825]  kernel_init_freeable+0x2c0/0x364\n[    1.172830]  kernel_init+0x10/0x100\n[    1.172833]  ret_from_fork+0x10/0x24\n[    1.172835] ---[ end trace 89fd81e0ea056cb2 ]---\n[    1.172948] [drm:dsi_panel_get_mode] [msm-dsi-info]: default topology: lm: 1 comp_enc:0 intf: 1\n[    1.173755] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    1.173757] [drm] No driver support for vblank timestamp query.\n[    1.174069] [drm] Initialized msm_drm 1.3.0 20130625 for 5e00000.qcom,mdss_mdp on minor 0\n[    1.174084] [drm] cont_splash enabled in 1 of 1 display(s)\n[    1.174216] [drm:dsi_ctrl_isr_configure] [msm-dsi-info]: dsi-ctrl-0: IRQ 222 registered\n[    1.223961] wsa881x-i2c-codec 0-000e: No cache used with register defaults set!\n[    1.224275] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.224281] Failed reading reg=5 - retry(0)\n[    1.224706] aw87359_pa_init enter\n[    1.224708] aw87359_pa_init: driver version: v1.0.4\n[    1.224744] aw87359_i2c_probe Enter\n[    1.224987] aw87359_read_chipid: This Chip is aw87359 chipid=0x59\n[    1.224996] aw87359_hw_off enter\n[    1.225023] aw87519_pa_init enter\n[    1.225024] aw87519_pa_init: driver version: v1.0.7\n[    1.225140] aw87519_i2c_probe Enter\n[    1.225153] aw87519_pa 0-0059: aw87519_parse_dt: reset gpio provided ok\n[    1.225164] aw87519_hw_reset enter\n[    1.230091] aw87519_read_chipid This Chip is  AW87519 chipid=0x59\n[    1.230100] aw87519_hw_off enter\n[    1.240251] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.240258] Failed reading reg=5 - retry(1)\n[    1.255989] rmnet_perf_init(): initializing rmnet_perf\n[    1.255995] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = lo\n[    1.255998] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = bond0\n[    1.256000] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = dummy0\n[    1.256004] rmnet_shs_module_init(): Starting rmnet SHS module\n[    1.257765] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_tfe: Linked as a consumer to c600000.apps-smmu\n[    1.258061] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_tfe to group 18\n[    1.258502] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_ope: Linked as a consumer to c600000.apps-smmu\n[    1.258748] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ope to group 19\n[    1.259121] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm: Linked as a consumer to c600000.apps-smmu\n[    1.259324] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 20\n[    1.260835] cam-cpas 5c11000.qcom,cam-cpas: Linked as a consumer to regulator.1\n[    1.260930] CAM_INFO: CAM-CPAS: cam_cpas_get_hw_features: 433 feature 0x2 addr 0x1b401d0, bit 5 enable type:0 hw_id=2\n[    1.260937] CAM_INFO: CAM-CPAS: cam_cpas_get_hw_features: 482 num entries:0 feature 0x2 enable=1 hw id=2\n[    1.260941] CAM_INFO: CAM-CPAS: cam_cpas_get_hw_features: 433 feature 0x3 addr 0x1b401d0, bit 6 enable type:0 hw_id=2\n[    1.260946] CAM_INFO: CAM-CPAS: cam_cpas_get_hw_features: 482 num entries:1 feature 0x3 enable=1 hw id=2\n[    1.265965] msm_cam_cdm 5c23000.qcom,cpas-cdm0: Linked as a consumer to regulator.1\n[    1.270117] msm_cam_cdm 5c42000.qcom,ope-cdm0: Linked as a consumer to regulator.1\n[    1.270390] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.270395] Failed reading reg=5 - retry(2)\n[    1.274882] tpg_v1 5c66000.qcom,tpg0: Linked as a consumer to regulator.1\n[    1.277057] tpg_v1 5c68000.qcom,tpg0: Linked as a consumer to regulator.1\n[    1.279768] csid_530 5c6e000.qcom,tfe_csid0: Linked as a consumer to regulator.1\n[    1.279936] csid_530 5c75000.qcom,tfe_csid1: Linked as a consumer to regulator.1\n[    1.280137] csid_530 5c7c000.qcom,tfe_csid2: Linked as a consumer to regulator.1\n[    1.280918] CAM_INFO: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 559 No clk data for tfe_dsp_clk\n[    1.280922] CAM_WARN: CAM-ISP: cam_tfe_init_soc_resources: 50 Option clk get failed with rc -22\n[    1.280939] cam_tfe 5c6e000.qcom,tfe0: Linked as a consumer to regulator.1\n[    1.283078] CAM_INFO: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 559 No clk data for tfe_dsp_clk\n[    1.283081] CAM_WARN: CAM-ISP: cam_tfe_init_soc_resources: 50 Option clk get failed with rc -22\n[    1.283100] cam_tfe 5c75000.qcom,tfe1: Linked as a consumer to regulator.1\n[    1.284937] CAM_INFO: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 559 No clk data for tfe_dsp_clk\n[    1.284940] CAM_WARN: CAM-ISP: cam_tfe_init_soc_resources: 50 Option clk get failed with rc -22\n[    1.284959] cam_tfe 5c7c000.qcom,tfe2: Linked as a consumer to regulator.1\n[    1.287465] CAM_INFO: CAM-ISP: cam_isp_dev_probe: 207 Camera ISP probe complete\n[    1.288188] CAM_INFO: CAM: cam_res_mgr_probe: 682 Disable shared gpio support.\n[    1.288872] cam-cci-driver 5c1b000.qcom,cci0: Linked as a consumer to regulator.1\n[    1.291557] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 519 Device Type :0\n[    1.291566] CAM_WARN: CAM-CCI: cam_cci_create_debugfs_entry: 441 DebugFS not enabled\n[    1.292402] cam-csiphy-driver 5c52000.qcom,csiphy0: Linked as a consumer to regulator.1\n[    1.292559] cam-csiphy-driver 5c53000.qcom,csiphy1: Linked as a consumer to regulator.1\n[    1.292681] cam-csiphy-driver 5c54000.qcom,csiphy2: Linked as a consumer to regulator.1\n[    1.293786] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 60 No GPIO found\n[    1.298467] ope 5c42000.qcom,ope: Linked as a consumer to regulator.1\n[    1.301662] CAM_INFO: CAM-SMMU: cam_smmu_create_add_handle_in_table: 855 ope already got handle 0x13563\n[    1.302329] GACT probability NOT on\n[    1.302339] Mirror/redirect action on\n[    1.302347] netem: version 1.3\n[    1.302349] u32 classifier\n[    1.302350]     Actions configured\n[    1.302814] xt_time: kernel timezone is -0000\n[    1.302876] gre: GRE over IPv4 demultiplexor driver\n[    1.302879] IPv4 over IPsec tunneling driver\n[    1.303034] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip_vti0\n[    1.303313] Initializing XFRM netlink socket\n[    1.303323] IPsec XFRM device driver\n[    1.303550] NET: Registered protocol family 10\n[    1.304231] Segment Routing with IPv6\n[    1.304277] mip6: Mobile IPv6\n[    1.304505] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6_vti0\n[    1.304617] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    1.304731] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = sit0\n[    1.304941] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6tnl0\n[    1.305032] NET: Registered protocol family 17\n[    1.305041] NET: Registered protocol family 15\n[    1.305167] l2tp_core: L2TP core driver, V2.0\n[    1.305172] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    1.305174] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    1.305183] l2tp_netlink: L2TP netlink interface\n[    1.305202] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    1.305203] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    1.305236] sctp: Hash tables configured (bind 256/256)\n[    1.305370] Key type dns_resolver registered\n[    1.307839] kgsl-3d 5900000.qcom,kgsl-3d0: Linked as a consumer to regulator.11\n[    1.307854] kgsl-3d 5900000.qcom,kgsl-3d0: Linked as a consumer to regulator.12\n[    1.309074] platform 59a0000.qcom,kgsl-iommu:gfx3d_user: Linked as a consumer to 59a0000.kgsl-smmu\n[    1.309141] iommu: Adding device 59a0000.qcom,kgsl-iommu:gfx3d_user to group 21\n[    1.309508] platform 59a0000.qcom,kgsl-iommu:gfx3d_secure: Linked as a consumer to 59a0000.kgsl-smmu\n[    1.309547] iommu: Adding device 59a0000.qcom,kgsl-iommu:gfx3d_secure to group 22\n[    1.310449] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.310455] Failed reading reg=5 - retry(3)\n[    1.322845] msm-dwc3 4e00000.ssusb: Linked as a consumer to regulator.3\n[    1.323632] dwc3 4e00000.dwc3: Failed to get clk 'ref': -2\n[    1.323711] dwc3 4e00000.dwc3: changing max_speed on rev 00000000\n[    1.324384] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (4f04000.qcom,usbbam)\n[    1.324440] sps:BAM 0x0000000004f04000 is registered.\n[    1.325094] Invalid index Defaulting curr to 0\n[    1.326018] msm-dwc3 4e00000.ssusb: Dropping the link to regulator.3\n[    1.326497] sec-charger-config=0\n[    1.326907] QCOM-BATT: qcom_batt_create_debugfs: Couldn't create battery debugfs rc=-19\n[    1.326953] PL_DISABLE: CHG_STATE_VOTER,0 voting on of val=1\n[    1.326956] PL_DISABLE: effective vote is now 1 voted by CHG_STATE_VOTER,0\n[    1.326960] PL_DISABLE: TAPER_END_VOTER,1 same vote off of val=0\n[    1.326962] PL_DISABLE: TAPER_END_VOTER,1 Ignoring similar vote off of val=0\n[    1.326964] PL_DISABLE: PARALLEL_PSY_VOTER,2 voting on of val=1\n[    1.326969] PL_DISABLE: PL_INDIRECT_VOTER,3 voting on of val=1\n[    1.327018] PL_DISABLE: PL_DELAY_VOTER,4 voting on of val=1\n[    1.327077] pmi632_charger: smblib_get_charge_param: fast charge current = 2000000 (0x28)\n[    1.327089] pmi632_charger: smblib_get_charge_param: float voltage = 4500000 (0x5a)\n[    1.327100] pmi632_charger: smblib_get_charge_param: usb input current limit = 1500000 (0x1e)\n[    1.327112] pmi632_charger: smblib_get_charge_param: AICL 5V threshold = 4400 (0x04)\n[    1.327123] pmi632_charger: smblib_get_charge_param: AICL CONT threshold = 4000 (0x00)\n[    1.327371] pmi632_charger: smblib_set_charge_param: usb otg current limit = 1000000 (0x02)\n[    1.327374] USB_ICL: DEFAULT_VOTER,0 same vote off of val=0\n[    1.327376] USB_ICL: DEFAULT_VOTER,0 voting off of val=0\n[    1.327378] USB_ICL: effective vote is now -22 voted by (null),-22\n[    1.327382] DC_SUSPEND: DEFAULT_VOTER,0 same vote off of val=0\n[    1.327384] DC_SUSPEND: DEFAULT_VOTER,0 voting off of val=0\n[    1.327385] DC_SUSPEND: effective vote is now 0 voted by DEFAULT_VOTER,0\n[    1.327388] FCC: HW_LIMIT_VOTER,0 voting off of val=-22\n[    1.327390] FCC: effective vote is now -22 voted by (null),-22\n[    1.327394] FV: HW_LIMIT_VOTER,0 voting off of val=-22\n[    1.327396] FV: effective vote is now -22 voted by (null),-22\n[    1.327399] FCC: BATT_PROFILE_VOTER,1 voting on of val=2000000\n[    1.327400] FCC: effective vote is now 2000000 voted by BATT_PROFILE_VOTER,1\n[    1.327403] FV: BATT_PROFILE_VOTER,1 voting on of val=4500000\n[    1.327405] FV: effective vote is now 4500000 voted by BATT_PROFILE_VOTER,1\n[    1.327407] USB_ICL: HW_LIMIT_VOTER,1 voting on of val=3000000\n[    1.327409] USB_ICL: effective vote is now 3000000 voted by HW_LIMIT_VOTER,1\n[    1.327430] CHG_DISABLE: DEFAULT_VOTER,0 same vote off of val=0\n[    1.327432] CHG_DISABLE: DEFAULT_VOTER,0 voting off of val=0\n[    1.327434] CHG_DISABLE: effective vote is now 0 voted by DEFAULT_VOTER,0\n[    1.328191] pmi632_charger: smblib_set_charge_param: switching frequency = 1050 (0x08)\n[    1.328193] dhx---faling:0\n[    1.328204] pmi632_charger: smblib_set_charge_param: AICL 5V threshold = 4400 (0x04)\n[    1.328215] pmi632_charger: smblib_set_charge_param: AICL CONT threshold = 4000 (0x00)\n[    1.328228] USB_ICL: AICL_THRESHOLD_VOTER,2 same vote off of val=0\n[    1.328230] USB_ICL: AICL_THRESHOLD_VOTER,2 Ignoring similar vote off of val=0\n[    1.328270] qcom,qpnp-smb5 1c40000.qcom,spmi:qcom,pmi632@2:qcom,qpnp-smb5: Linked as a consumer to regulator.49\n[    1.328282] pmi632_charger: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    1.328285] pmi632_charger: smblib_update_usb_type: APSD=UNKNOWN PD=0 QC3P5=0\n[    1.328288] TEMP_CHANGE_IRQ_DISABLE: DEFAULT_VOTER,0 voting on of val=1\n[    1.328290] TEMP_CHANGE_IRQ_DISABLE: effective vote is now 1 voted by DEFAULT_VOTER,0\n[    1.328295] pmi632_charger: smblib_usb_plugin_locked: IRQ: usbin-plugin detached\n[    1.328298] pmi632_charger: typec_attach_detach_irq_handler: IRQ: determine-initial-status\n[    1.328310] USB_ICL: SW_ICL_MAX_VOTER,3 voting on of val=100000\n[    1.328311] USB_ICL: effective vote is now 100000 voted by SW_ICL_MAX_VOTER,3\n[    1.328324] AWAKE: DETACH_DETECT_VOTER,0 voting on of val=1\n[    1.328326] AWAKE: effective vote is now 1 voted by DETACH_DETECT_VOTER,0\n[    1.328366] pmi632_charger: smblib_get_prop_typec_mode: TYPE_C_MISC_STATUS_REG = 0x40\n[    1.328376] pmi632_charger: smblib_get_prop_dfp_mode: TYPE_C_SRC_STATUS_REG = 0x00\n[    1.328379] pmi632_charger: typec_state_change_irq_handler: IRQ: cc-state-change; Type-C NONE detected\n[    1.328390] pmi632_charger: usb_source_change_irq_handler: APSD_STATUS = 0x00\n[    1.328392] pmi632_charger: smblib_handle_hvdcp_detect_done: IRQ: hvdcp-detect-done falling\n[    1.328394] pmi632_charger: smblib_handle_hvdcp_check_timeout: IRQ: smblib_handle_hvdcp_check_timeout falling\n[    1.328396] pmi632_charger: smblib_handle_sdp_enumeration_done: IRQ: sdp-enumeration-done falling\n[    1.328398] pmi632_charger: smblib_handle_slow_plugin_timeout: IRQ: slow-plugin-timeout falling\n[    1.328410] pmi632_charger: usb_source_change_irq_handler: APSD_STATUS = 0x00\n[    1.328412] pmi632_charger: chg_state_change_irq_handler: IRQ: determine-initial-status\n[    1.328423] pmi632_charger: smblib_eval_chg_termination: Couldn't read SOC value, rc=-22\n[    1.328435] pmi632_charger: icl_change_irq_handler: skip ICL change DIE_TEMP 3\n[    1.328437] pmi632_charger: batt_temp_changed_irq_handler: IRQ: determine-initial-status\n[    1.328439] pmi632_charger: wdog_bark_irq_handler: IRQ: determine-initial-status\n[    1.328450] pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: determine-initial-status\n[    1.328452] pmi632_charger: wdog_snarl_irq_handler: IRQ: determine-initial-status\n[    1.328625] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.328656] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.328717] pmi632_charger: smblib_get_charge_param: usb input current limit = 1500000 (0x1e)\n[    1.328728] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.328744] pmi632_charger: smblib_get_prop_typec_power_role: TYPE_C_MODE_CFG_REG = 0x10\n[    1.328757] pmi632_charger: smblib_get_prop_typec_cc_orientation: TYPE_C_STATUS_4 = 0x40\n[    1.328770] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.329192] pmi632_charger: smblib_get_charge_param: float voltage = 4500000 (0x5a)\n[    1.329204] pmi632_charger: smblib_get_charge_param: fast charge current = 2000000 (0x28)\n[    1.329218] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.329233] pmi632_charger: smblib_get_charge_param: dcdc icl max status = 0 (0x00)\n[    1.329268] pmi632_charger: smblib_get_charge_param: fast charge current = 2000000 (0x28)\n[    1.329280] pmi632_charger: smblib_get_charge_param: usb input current limit = 1500000 (0x1e)\n[    1.329310] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.329330] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.329358] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.329387] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.329406] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.329434] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.329455] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.329550] current_now=476102712\n[    1.329653] pmi632_charger: smblib_get_prop_dfp_mode: TYPE_C_SRC_STATUS_REG = 0x00\n[    1.329679] pmi632_charger: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    1.329699] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.329710] pmi632_charger: smblib_get_prop_ufp_mode: TYPE_C_STATUS_1 = 0x00\n[    1.330344] PL_DISABLE: ICL_CHANGE_VOTER,6 voting on of val=1\n[    1.330348] PL_ENABLE_INDIRECT: USBIN_I_VOTER,0 same vote off of val=0\n[    1.330350] PL_ENABLE_INDIRECT: USBIN_I_VOTER,0 voting off of val=0\n[    1.330352] PL_ENABLE_INDIRECT: effective vote is now 0 voted by USBIN_I_VOTER,0\n[    1.330354] PL_DISABLE: PL_INDIRECT_VOTER,3 same vote on of val=1\n[    1.330356] PL_DISABLE: PL_INDIRECT_VOTER,3 Ignoring similar vote on of val=1\n[    1.330368] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.330390] pmi632_charger: smblib_get_prop_typec_mode: TYPE_C_MISC_STATUS_REG = 0x40\n[    1.330401] pmi632_charger: smblib_get_prop_dfp_mode: TYPE_C_SRC_STATUS_REG = 0x00\n[    1.330412] pmi632_charger: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    1.330488] USB_ICL_IRQ_DISABLE: USB_SUSPEND_VOTER,0 same vote off of val=0\n[    1.330490] USB_ICL_IRQ_DISABLE: USB_SUSPEND_VOTER,0 voting off of val=0\n[    1.330491] USB_ICL_IRQ_DISABLE: effective vote is now 0 voted by USB_SUSPEND_VOTER,0\n[    1.330502] pmi632_charger: smblib_run_aicl: re-running AICL\n[    1.330522] PL_DISABLE: ICL_CHANGE_VOTER,6 voting off of val=0\n[    1.330532] QCOM-BATT: pl_fcc_vote_callback: cp_fcc_ua=2000000 total_fcc_ua=2000000 forced_main_fcc=0\n[    1.330537] FCC_MAIN: MAIN_FCC_VOTER,0 voting on of val=2000000\n[    1.330539] FCC_MAIN: effective vote is now 2000000 voted by MAIN_FCC_VOTER,0\n[    1.330552] pmi632_charger: smblib_set_charge_param: fast charge current = 2000000 (0x28)\n[    1.330564] pmi632_charger: smblib_set_charge_param: float voltage = 4500000 (0x5a)\n[    1.330567] QCOM-BATT: pl_disable_vote_callback: parallel charging disabled\n[    1.330578] pmi632_charger: smblib_set_charge_param: float voltage = 4500000 (0x5a)\n[    1.330590] PL_DISABLE: TAPER_END_VOTER,1 same vote off of val=0\n[    1.330592] PL_DISABLE: TAPER_END_VOTER,1 Ignoring similar vote off of val=0\n[    1.330594] PL_DISABLE: PL_TAPER_EARLY_BAD_VOTER,7 same vote off of val=0\n[    1.330597] PL_DISABLE: PL_TAPER_EARLY_BAD_VOTER,7 Ignoring similar vote off of val=0\n[    1.330599] PL_DISABLE: ICL_LIMIT_VOTER,8 same vote off of val=0\n[    1.330601] PL_DISABLE: ICL_LIMIT_VOTER,8 Ignoring similar vote off of val=0\n[    1.330612] PL_DISABLE: CHG_STATE_VOTER,0 same vote on of val=1\n[    1.330614] PL_DISABLE: CHG_STATE_VOTER,0 Ignoring similar vote on of val=1\n[    1.330625] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.330636] PL_ENABLE_INDIRECT: USBIN_I_VOTER,0 same vote off of val=0\n[    1.330638] PL_ENABLE_INDIRECT: USBIN_I_VOTER,0 Ignoring similar vote off of val=0\n[    1.330642] QCOM-BATT: pl_fcc_vote_callback: cp_fcc_ua=2000000 total_fcc_ua=2000000 forced_main_fcc=0\n[    1.330644] FCC_MAIN: MAIN_FCC_VOTER,0 same vote on of val=2000000\n[    1.330646] FCC_MAIN: MAIN_FCC_VOTER,0 Ignoring similar vote on of val=2000000\n[    1.330657] pmi632_charger: smblib_set_charge_param: float voltage = 4500000 (0x5a)\n[    1.330659] QCOM-BATT: pl_disable_vote_callback: parallel charging disabled\n[    1.330663] bcl_soc:bcl_read_soc battery percentage read error:-61\n[    1.336198] USB_LIMITED_IRQ_DISABLE: CHARGER_TYPE_VOTER,0 voting on of val=1\n[    1.336202] USB_LIMITED_IRQ_DISABLE: effective vote is now 1 voted by CHARGER_TYPE_VOTER,0\n[    1.336206] USB_HDC_IRQ_DISABLE: CHARGER_TYPE_VOTER,0 voting on of val=1\n[    1.336208] USB_HDC_IRQ_DISABLE: effective vote is now 1 voted by CHARGER_TYPE_VOTER,0\n[    1.336213] PL_DISABLE: ICL_CHANGE_VOTER,6 voting on of val=1\n[    1.336216] PL_ENABLE_INDIRECT: USBIN_I_VOTER,0 same vote off of val=0\n[    1.336219] PL_ENABLE_INDIRECT: USBIN_I_VOTER,0 Ignoring similar vote off of val=0\n[    1.336232] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.336255] pmi632_charger: smblib_get_prop_typec_mode: TYPE_C_MISC_STATUS_REG = 0x40\n[    1.336266] pmi632_charger: smblib_get_prop_dfp_mode: TYPE_C_SRC_STATUS_REG = 0x00\n[    1.336277] pmi632_charger: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    1.336324] USB_ICL_IRQ_DISABLE: USB_SUSPEND_VOTER,0 same vote off of val=0\n[    1.336326] USB_ICL_IRQ_DISABLE: USB_SUSPEND_VOTER,0 Ignoring similar vote off of val=0\n[    1.336337] pmi632_charger: smblib_run_aicl: re-running AICL\n[    1.336359] PL_DISABLE: ICL_CHANGE_VOTER,6 voting off of val=0\n[    1.336366] pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 1!\n[    1.336368] pmi632_charger: smblib_set_prop_typec_power_role: power role already in 1, ignore!\n[    1.336404] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.336425] SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    1.336479] QPNP SMB5 probed successfully\n[    1.336740] QG-K: qg_parse_dt: PMIC subtype 37 Digital major 2\n[    1.336769] QG-K: qg_parse_s2_dt: DT: S2 FIFO length=5 low_vbat_length=2 acc_length=128 acc_interval=100\n[    1.336781] QG-K: qg_parse_cl_dt: DT: cl_min_start_soc=10 cl_max_start_soc=15 cl_min_temp=150 cl_max_temp=500 chip->cl->dt.cl_wt_enable=0\n[    1.336784] QG-K: qg_parse_dt: DT: OCV timer_expiry =-22min ocv_tol_threshold=-22uV\n[    1.336806] QG-K: qg_parse_dt: DT: vbatt_empty_mv=3200mV vbatt_low_mv=3500mV delta_soc=1 ext-sns=0\n[    1.336838] QG-K: qg_set_wa_flags: wa_flags = 2\n[    1.336868] QG-K: qg_master_hold: Master hold = 1\n[    1.336951] QG-K: qg_process_accumulator: ACC v_avg=4241140uV i_avg=483703uA interval=300 count=16\n[    1.337027] QG-K: qg_master_hold: Master hold = 0\n[    1.349409] QG-K: qg_vbat_thresholds_config: VBAT LOW threshold updated to 3500mV temp=334\n[    1.350185] thermal test,the thermal_level=0\n[    1.350190] CHG_DISABLE: THERMAL_DAEMON_VOTER,1 same vote off of val=0\n[    1.350192] CHG_DISABLE: THERMAL_DAEMON_VOTER,1 Ignoring similar vote off of val=0\n[    1.350196] FCC: THERMAL_DAEMON_VOTER,3 voting on of val=3000000\n[    1.350199] pmi632_charger: smblib_set_prop_system_temp_level: system_temp_level = 0, ibat =3000000\n[    1.350201] thermal test,the thermal_level=0\n[    1.350203] CHG_DISABLE: THERMAL_DAEMON_VOTER,1 same vote off of val=0\n[    1.350205] CHG_DISABLE: THERMAL_DAEMON_VOTER,1 Ignoring similar vote off of val=0\n[    1.350207] FCC: THERMAL_DAEMON_VOTER,3 same vote on of val=3000000\n[    1.350209] FCC: THERMAL_DAEMON_VOTER,3 Ignoring similar vote on of val=3000000\n[    1.350211] pmi632_charger: smblib_set_prop_system_temp_level: system_temp_level = 0, ibat =3000000\n[    1.350234] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.350269] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.350331] pmi632_charger: smblib_get_charge_param: usb input current limit = 1500000 (0x1e)\n[    1.350342] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.350359] pmi632_charger: smblib_get_prop_typec_power_role: TYPE_C_MODE_CFG_REG = 0x10\n[    1.350372] pmi632_charger: smblib_get_prop_typec_cc_orientation: TYPE_C_STATUS_4 = 0x40\n[    1.350422] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.350482] QG-K: get_batt_id_ohm: batt_id_mv=760, batt_id_ohm=68166\n[    1.350604] pmi632_charger: smblib_get_charge_param: float voltage = 4500000 (0x5a)\n[    1.350617] pmi632_charger: smblib_get_charge_param: fast charge current = 2000000 (0x28)\n[    1.350631] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.350646] pmi632_charger: smblib_get_charge_param: dcdc icl max status = 0 (0x00)\n[    1.350682] pmi632_charger: smblib_get_charge_param: fast charge current = 2000000 (0x28)\n[    1.350695] pmi632_charger: smblib_get_charge_param: usb input current limit = 1500000 (0x1e)\n[    1.350726] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.350745] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.350758] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.350773] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.350793] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.350820] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.350850] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.350869] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.350896] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.350917] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.350973] current_now=476102712\n[    1.351637] QG-K: get_batt_id_ohm: batt_id_mv=760, batt_id_ohm=68166\n[    1.351965] batt_id_kohm=68\n[    1.351973] of_batterydata_get_best_profile: NVT found\n[    1.352278] QG-K: qg_batterydata_init: QG Battery-profile loaded\n[    1.352287] QG-K: qg_load_battery_profile: profile=NVT FV=4450000uV FCC=3000ma\n[    1.352290] QG-K: qg_setup_battery: battery_missing=0 batt_id_ohm=68166 Ohm profile_loaded=1 profile=NVT\n[    1.352327] QG-K: qg_register_device: '/dev/qg' successfully created\n[    1.352341] QG-K: qg_sanitize_sdam: SDAM valid\n[    1.352452] QG-K: qg_determine_pon_soc: S7_PON_OCV OCV=4279289\n[    1.352463] QG-K: qg_determine_pon_soc: S3_GOOD_OCV OCV=6377865\n[    1.352473] QG-K: qg_determine_pon_soc: S3_LAST_OCV OCV=6377865\n[    1.352484] QG-K: qg_determine_pon_soc: SDAM_PON_OCV OCV=4276174\n[    1.352608] PL_DISABLE: TAPER_END_VOTER,1 same vote off of val=0\n[    1.352610] PL_DISABLE: TAPER_END_VOTER,1 Ignoring similar vote off of val=0\n[    1.352613] PL_DISABLE: PL_TAPER_EARLY_BAD_VOTER,7 same vote off of val=0\n[    1.352615] PL_DISABLE: PL_TAPER_EARLY_BAD_VOTER,7 Ignoring similar vote off of val=0\n[    1.352618] PL_DISABLE: ICL_LIMIT_VOTER,8 same vote off of val=0\n[    1.352619] PL_DISABLE: ICL_LIMIT_VOTER,8 Ignoring similar vote off of val=0\n[    1.352632] PL_DISABLE: CHG_STATE_VOTER,0 same vote on of val=1\n[    1.352634] PL_DISABLE: CHG_STATE_VOTER,0 Ignoring similar vote on of val=1\n[    1.352648] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.352660] PL_ENABLE_INDIRECT: USBIN_I_VOTER,0 same vote off of val=0\n[    1.352662] PL_ENABLE_INDIRECT: USBIN_I_VOTER,0 Ignoring similar vote off of val=0\n[    1.352671] QCOM-BATT: pl_fcc_vote_callback: cp_fcc_ua=2000000 total_fcc_ua=2000000 forced_main_fcc=0\n[    1.352675] FCC_MAIN: MAIN_FCC_VOTER,0 same vote on of val=2000000\n[    1.352677] FCC_MAIN: MAIN_FCC_VOTER,0 Ignoring similar vote on of val=2000000\n[    1.352691] pmi632_charger: smblib_set_charge_param: float voltage = 4500000 (0x5a)\n[    1.352694] QCOM-BATT: pl_disable_vote_callback: parallel charging disabled\n[    1.352697] bcl_soc:bcl_read_soc battery percentage read error:-61\n[    1.353312] pmi632_charger: smblib_get_prop_dfp_mode: TYPE_C_SRC_STATUS_REG = 0x00\n[    1.353344] pmi632_charger: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    1.353363] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.353375] pmi632_charger: smblib_get_prop_ufp_mode: TYPE_C_STATUS_1 = 0x00\n[    1.354594] QG-K: qg_determine_pon_soc: Shutdown: Valid=1 SOC=89 OCV=4291000uV time=16909637secs temp=335, time_now=16909705secs temp_now=333 S7_soc=87\n[    1.354595] QG-K: qg_determine_pon_soc: Using SHUTDOWN_SOC @ PON\n[    1.355610] QG-K: qg_store_soc_params: SDAM write param 0 value=1\n[    1.355621] QG-K: qg_store_soc_params: SDAM write param 1 value=89\n[    1.355631] QG-K: qg_store_soc_params: SDAM write param 2 value=334\n[    1.355642] QG-K: qg_store_soc_params: SDAM write param 3 value=0\n[    1.355655] QG-K: qg_store_soc_params: SDAM write param 4 value=4291000\n[    1.355667] QG-K: qg_store_soc_params: SDAM write param 5 value=0\n[    1.355680] QG-K: qg_store_soc_params: SDAM write param 6 value=16909705\n[    1.355691] QG-K: qg_determine_pon_soc: using SHUTDOWN_SOC @ PON ocv_uv=4291000uV soc=89\n[    1.356197] QG-K: qg_request_interrupt: IRQ qg-vbat-low registered wakeable=1\n[    1.356371] QG-K: qg_request_interrupt: IRQ qg-vbat-empty registered wakeable=1\n[    1.356531] QG-K: qg_request_interrupt: IRQ qg-fifo-done registered wakeable=1\n[    1.356697] QG-K: qg_request_interrupt: IRQ qg-good-ocv registered wakeable=1\n[    1.356757] QG-K: qpnp_qg_probe: QG initialized! battery_profile=NVT SOC=89 QG_subtype=3 QG_version=QG_PMIC5 QG_mode=QG_V_I\n[    1.360402] USB_ICL: DEBUG_BOARD_VOTER,9 same vote off of val=0\n[    1.360405] USB_ICL: DEBUG_BOARD_VOTER,9 Ignoring similar vote off of val=0\n[    1.360408] DC_SUSPEND: DEBUG_BOARD_VOTER,1 same vote off of val=0\n[    1.360410] DC_SUSPEND: DEBUG_BOARD_VOTER,1 Ignoring similar vote off of val=0\n[    1.360942] batt_id_kohm=68\n[    1.360950] of_batterydata_get_best_profile: NVT found\n[    1.360975] pmi632_charger: smblib_update_jeita: Hard Jeita threshold configured\n[    1.360996] pmi632_charger: smblib_update_jeita: Soft Jeita threshold configured\n[    1.361016] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.361036] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.361069] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.361106] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.361125] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.361194] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.361216] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.361335] current_now=611114\n[    1.361782] PL_DISABLE: TAPER_END_VOTER,1 same vote off of val=0\n[    1.361785] PL_DISABLE: TAPER_END_VOTER,1 Ignoring similar vote off of val=0\n[    1.361788] PL_DISABLE: PL_TAPER_EARLY_BAD_VOTER,7 same vote off of val=0\n[    1.361790] PL_DISABLE: PL_TAPER_EARLY_BAD_VOTER,7 Ignoring similar vote off of val=0\n[    1.361793] PL_DISABLE: ICL_LIMIT_VOTER,8 same vote off of val=0\n[    1.361795] PL_DISABLE: ICL_LIMIT_VOTER,8 Ignoring similar vote off of val=0\n[    1.361807] PL_DISABLE: CHG_STATE_VOTER,0 same vote on of val=1\n[    1.361808] PL_DISABLE: CHG_STATE_VOTER,0 Ignoring similar vote on of val=1\n[    1.361822] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.361834] PL_ENABLE_INDIRECT: USBIN_I_VOTER,0 same vote off of val=0\n[    1.361836] PL_ENABLE_INDIRECT: USBIN_I_VOTER,0 Ignoring similar vote off of val=0\n[    1.361846] QCOM-BATT: pl_fcc_vote_callback: cp_fcc_ua=2000000 total_fcc_ua=2000000 forced_main_fcc=0\n[    1.361850] FCC_MAIN: MAIN_FCC_VOTER,0 same vote on of val=2000000\n[    1.361852] FCC_MAIN: MAIN_FCC_VOTER,0 Ignoring similar vote on of val=2000000\n[    1.361866] pmi632_charger: smblib_set_charge_param: float voltage = 4500000 (0x5a)\n[    1.361869] QCOM-BATT: pl_disable_vote_callback: parallel charging disabled\n[    1.361896] FV: BATT_PROFILE_VOTER,1 voting on of val=4450000\n[    1.361899] FV: effective vote is now 4450000 voted by BATT_PROFILE_VOTER,1\n[    1.361910] pmi632_charger: smblib_set_charge_param: float voltage = 4450000 (0x55)\n[    1.361913] FCC: BATT_PROFILE_VOTER,1 voting on of val=3000000\n[    1.361915] FCC: effective vote is now 3000000 voted by BATT_PROFILE_VOTER,1\n[    1.361919] QCOM-BATT: pl_fcc_vote_callback: cp_fcc_ua=3000000 total_fcc_ua=3000000 forced_main_fcc=0\n[    1.361922] FCC_MAIN: MAIN_FCC_VOTER,0 voting on of val=3000000\n[    1.361923] FCC_MAIN: effective vote is now 3000000 voted by MAIN_FCC_VOTER,0\n[    1.361936] pmi632_charger: smblib_set_charge_param: fast charge current = 3000000 (0x3c)\n[    1.361947] pmi632_charger: smblib_set_charge_param: float voltage = 4450000 (0x55)\n[    1.361948] QCOM-BATT: pl_disable_vote_callback: parallel charging disabled\n[    1.361995] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.362014] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.362043] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.362063] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    1.362102] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.362109] Failed reading reg=5 - retry(4)\n[    1.366761] tmc_etr_bam_init: setting SPS_BAM_SMMU_EN flag with (8048000.tmc)\n[    1.366814] sps:BAM 0x0000000008064000 is registered.\n[    1.367424] coresight-stm 8002000.stm: STM32 initialized\n[    1.368092] msm-dwc3 4e00000.ssusb: Linked as a consumer to regulator.3\n[    1.368861] dwc3 4e00000.dwc3: Failed to get clk 'ref': -2\n[    1.368937] dwc3 4e00000.dwc3: changing max_speed on rev 00000000\n[    1.369612] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (4f04000.qcom,usbbam)\n[    1.369670] sps:BAM 0x0000000004f04000 is registered.\n[    1.370378] msm-dwc3 4e00000.ssusb: Linked as a consumer to regulator.49\n[    1.370656] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.370867] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.371012] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.371633] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.371815] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.371960] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.372154] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.372299] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.372719] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.372864] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.374401] core_ctl: Creating CPU group 0\n[    1.374403] core_ctl: Init CPU0 state\n[    1.374405] core_ctl: Init CPU1 state\n[    1.374406] core_ctl: Init CPU2 state\n[    1.374407] core_ctl: Init CPU3 state\n[    1.374534] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.374547] QG-K: qg_charge_full_update: msoc=89 health=1 charge_full=0 charge_done=0\n[    1.374819] core_ctl: Creating CPU group 4\n[    1.374821] core_ctl: Init CPU4 state\n[    1.374823] core_ctl: Init CPU5 state\n[    1.374824] core_ctl: Init CPU6 state\n[    1.374825] core_ctl: Init CPU7 state\n[    1.375089] registered taskstats version 1\n[    1.375092] Loading compiled-in X.509 certificates\n[    1.377150] Loaded X.509 cert 'Build time autogenerated kernel key: 15b322e7696c6e2188f922ab286570fdfab30a8b'\n[    1.377310] Key type ._fscrypt registered\n[    1.377311] Key type .fscrypt registered\n[    1.377313] Key type fscrypt-provisioning registered\n[    1.377504] pstore: Using compression: deflate\n[    1.379455] Error: swapper/0: fastrpc_device_init: failed to create debugfs root dir\n[    1.380118] adsprpc: init_secure_vmid_list: secure VMID = 22\n[    1.380120] adsprpc: init_secure_vmid_list: secure VMID = 37\n[    1.380136] adsprpc: fastrpc_probe: service location enabled for avs/audio (audio_pdr_adsprpc)\n[    1.380139] adsprpc: fastrpc_probe: service location enabled for tms/servreg (sensors_pdr_adsprpc)\n[    1.380571] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1: Linked as a consumer to c600000.apps-smmu\n[    1.381070] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 23\n[    1.381590] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2: Linked as a consumer to c600000.apps-smmu\n[    1.381864] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 24\n[    1.382346] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3: Linked as a consumer to c600000.apps-smmu\n[    1.383512] msm-dwc3 4e00000.ssusb: DWC3 exited from low power mode\n[    1.383676] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 25\n[    1.384194] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4: Linked as a consumer to c600000.apps-smmu\n[    1.384473] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 26\n[    1.384969] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5: Linked as a consumer to c600000.apps-smmu\n[    1.385214] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 27\n[    1.385697] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6: Linked as a consumer to c600000.apps-smmu\n[    1.386243] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 28\n[    1.386668] msm-dwc3 4e00000.ssusb: DWC3 in low power mode\n[    1.387200] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9: Linked as a consumer to c600000.apps-smmu\n[    1.387433] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 29\n[    1.387873] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10: Linked as a consumer to c600000.apps-smmu\n[    1.388076] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 30\n[    1.388472] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11: Linked as a consumer to c600000.apps-smmu\n[    1.388672] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 31\n[    1.389055] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12: Linked as a consumer to c600000.apps-smmu\n[    1.389260] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 32\n[    1.389644] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13: Linked as a consumer to c600000.apps-smmu\n[    1.389839] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13 to group 33\n[    1.390275] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14: Linked as a consumer to c600000.apps-smmu\n[    1.390552] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14 to group 34\n[    1.391569] adsprpc: fastrpc_device_init: SSR notifier registered for adsp\n[    1.391573] adsprpc: fastrpc_device_init: SSR notifier registered for modem\n[    1.391577] adsprpc: fastrpc_device_init: SSR notifier registered for slpi\n[    1.391580] adsprpc: fastrpc_device_init: SSR notifier registered for cdsp\n[    1.392261] i2c_pmic 0-0009: ignoring dependency for device, assuming no driver\n[    1.394866] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input4\n[    1.395767] [NVT-ts] nvt_driver_init 2649: start\n[    1.395809] [NVT-ts] nvt_ts_probe 1724: start\n[    1.395811] [NVT-ts] check_dt 2431: chenwenmin  \n[    1.395815] [NVT-ts] check_dt 2434: chenwenmin  panel count=3\n[    1.395818] [NVT-ts] check_dt 2442: chenwenmin node=00000000d1b45e74 \n[    1.395829] [NVT-ts] check_dt 2445: chenwenmin IS_ERR(panel)=1 \n[    1.395831] [NVT-ts] check_dt 2446: chenwenmin panel=00000000be1cd670 \n[    1.395834] [NVT-ts] check_dt 2442: chenwenmin node=0000000037dcdafa \n[    1.395841] [NVT-ts] check_dt 2445: chenwenmin IS_ERR(panel)=1 \n[    1.395843] [NVT-ts] check_dt 2446: chenwenmin panel=00000000be1cd670 \n[    1.395845] [NVT-ts] check_dt 2442: chenwenmin node=00000000c7fa0d92 \n[    1.395852] [NVT-ts] check_dt 2445: chenwenmin IS_ERR(panel)=1 \n[    1.395854] [NVT-ts] check_dt 2446: chenwenmin panel=00000000be1cd670 \n[    1.395856] [NVT-ts] check_dt 2462: chenwenmin no find drm_panel\n[    1.395858] [NVT-ts] nvt_ts_probe 1727: nvt_ts_probe: novatek not actived\n[    1.395876] [NVT-ts] nvt_driver_init 2658: finished\n[    1.395879] [FTS_TS]fts_ts_init: Enter\n[    1.396131] [FTS_TS/I]fts_ts_probe:Touch Screen(SPI BUS) driver prboe...\n[    1.396133] [FTS_TS/I]fill_ctrl_data:read spi-cs-clk-delay failed!(-22)\n\n[    1.396137] [FTS_TS]fts_ts_probe_entry: Enter\n[    1.396139] [FTS_TS/I]fts_ts_probe_entry:Focaltech V3.2 20200422\n[    1.396140] [FTS_TS]fts_parse_dt: Enter\n[    1.396143] [FTS_TS/I]fts_get_dt_coords:display x(0 1080) y(0 2340)\n[    1.396160] [FTS_TS/I]fts_parse_dt:max touch number:10, irq gpio:1260, reset gpio:1270\n[    1.396162] [FTS_TS]fts_parse_dt: Exit(1295)\n[    1.396167] [FTS_TS/I]drm_check_dt:find drm_panel successfully\n[    1.396243] i2c_pmic 0-0009: ignoring dependency for device, assuming no driver\n[    1.396983] [FTS_TS]fts_bus_init: Enter\n[    1.396985] [FTS_TS]fts_bus_init: Exit(469)\n[    1.396987] [FTS_TS]fts_input_init: Enter\n[    1.397065] input: fts_ts as /devices/platform/soc/4a88000.spi/spi_master/spi1/spi1.0/input/input5\n[    1.397101] [FTS_TS]fts_input_init: Exit(839)\n[    1.397102] [FTS_TS]fts_gpio_configure: Enter\n[    1.397120] [FTS_TS]fts_gpio_configure: Exit(1166)\n[    1.397122] 1727 fts_ts_probe_entry wo shi miaozhichao\n[    1.397124] [FTS_TS/I]fts_ts_get_regulator:get/put regulator : 1\n[    1.397154] fts_ts spi1.0: Linked as a consumer to regulator.33\n[    1.397176] fts_ts spi1.0: Linked as a consumer to regulator.14\n[    1.397193] fts_ts spi1.0: Linked as a consumer to regulator.15\n[    1.397196] [FTS_TS/I]fts_ts_enable_regulator:enable touch regulator\n[    1.397200] [FTS_TS]fts_reset_proc:tp reset\n[    1.420217] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.420223] Failed reading reg=5 rc=-107\n[    1.420227] wsa881x-i2c-codec 0-000e: failed to read wsa881x with addr e\n[    1.420230] wsa881x-i2c-codec 0-000e: failed to ping wsa with addr:e, ret = -107\n[    1.420360] wsa881x-i2c-codec: probe of 0-000e failed with error -107\n[    1.423674] spi_geni 4a88000.spi: tx_fifo 16 rx_fifo 16 tx_width 32\n[    1.451677] [FTS_TS]fts_get_chip_types:verify id:0x8719\n[    1.451679] [FTS_TS/I]fts_get_ic_information:get ic information, chip id = 0x8719\n[    1.451688] [FTS_TS/I]fts_create_apk_debug_channel:Create proc entry success!\n[    1.451704] [FTS_TS/I]fts_create_sysfs:[EX]: sysfs_create_group() succeeded!!\n[    1.451708] [FTS_TS/I]fts_extra_proc_init:create proc/fts_tp_info Succeeded!\n\n[    1.451710] [FTS_TS][TEST]fts_tp_data_dump_proc_init: Enter\n[    1.451714] [FTS_TS/I]fts_tp_data_dump_proc_init:create /proc/tp_data_dump\n[    1.451720] [FTS_TS]fts_ex_mode_init:create sysfs(ex_mode) succeedfully\n[    1.451722] [FTS_TS]fts_gesture_init: Enter\n[    1.451730] [FTS_TS]fts_gesture_init: Exit(519)\n[    1.451731] [FTS_TS][TEST]fts_test_init: Enter\n[    1.451733] [FTS_TS][TEST]fts_tp_differ_proc: Enter\n[    1.451737] [FTS_TS/I][TEST]fts_test_func_init:init test function\n[    1.451740] [FTS_TS/I][TEST]fts_test_func_init:match test function,type:d\n[    1.451744] [FTS_TS][TEST]fts_test_init:create proc entry self_test success\n[    1.451747] [FTS_TS][TEST]fts_test_init:sysfs(test) create successfully\n[    1.451749] [FTS_TS][TEST]fts_test_init: Exit(2371)\n[    1.451753] [FTS_TS/I]focal_proc_tp_lockdown_info:Sucess to creat focal_tp_lockdown_info /proc\n[    1.451755] [FTS_TS]fts_esdcheck_init: Enter\n[    1.451757] [FTS_TS]fts_esdcheck_switch: Enter\n[    1.451758] [FTS_TS]fts_esdcheck_switch:ESD check start\n[    1.451760] [FTS_TS]fts_esdcheck_switch: Exit(346)\n[    1.451764] [FTS_TS]fts_esdcheck_init: Exit(455)\n[    1.451773] [FTS_TS/I]fts_irq_registration:irq:281, flag:2002\n[    1.451961] [FTS_TS/I]fts_fwupg_init:fw upgrade init function\n[    1.451964] [FTS_TS/I]fts_fwupg_init:match upgrade setting,type(ID):0x8719\n[    1.451965] [FTS_TS]fts_esdcheck_switch: Enter\n[    1.451967] [FTS_TS]fts_esdcheck_switch:ESD check stop\n[    1.451971] [FTS_TS]fts_esdcheck_switch: Exit(346)\n[    1.451987] [FTS_TS/I]fts_fwupg_work:fw upgrade work function\n[    1.451988] [FTS_TS]fts_fwupg_get_fw_file:get upgrade fw file\n[    1.451996] [FTS_TS]fts_ts_probe_entry: Exit(1864)\n[    1.451998] [FTS_TS/I]fts_ts_probe:Touch Screen(SPI BUS) driver prboe successfully\n[    1.452046] i2c_pmic 0-0009: ignoring dependency for device, assuming no driver\n[    1.452752] [FTS_TS]fts_ts_init: Exit(2218)\n[    1.453475] lpm_levels: Cluster (system) stats not registered\n[    1.453478] lpm_levels: Cluster (perf) stats not registered\n[    1.453480] lpm_levels: Cluster (pwr) stats not registered\n[    1.454154] i2c_pmic 0-0009: ignoring dependency for device, assuming no driver\n[    1.458199] rmnet_ipa3 started initialization\n[    1.458831] RNDIS_IPA module is loaded.\n[    1.459160] msm notifier probed successfully\n[    1.459734] OF: /soc/qcom,mdss_rotator: could not get #list-cells for /soc/qcom,mdss_mdp\n[    1.459750] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-rot-vbif-memtype : doesn't exist in device tree\n[    1.459759] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-qos-lut : doesn't exist in device tree\n[    1.459761] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-danger-lut : doesn't exist in device tree\n[    1.459764] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-safe-lut : doesn't exist in device tree\n[    1.460324] sde_smmu 5e00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb: Linked as a consumer to c600000.apps-smmu\n[    1.460468] i2c_pmic 0-0009: ignoring dependency for device, assuming no driver\n[    1.461302] iommu: Adding device 5e00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 35\n[    1.461427] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    1.461698] sde_smmu 5e00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb: Linked as a consumer to c600000.apps-smmu\n[    1.462129] i2c_pmic 0-0009: ignoring dependency for device, assuming no driver\n[    1.462842] iommu: Adding device 5e00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 36\n[    1.462970] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    1.463296] i2c_pmic 0-0009: ignoring dependency for device, assuming no driver\n[    1.463902] No change in context(0==0), skip\n[    1.465601] sde_rotator 5e00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    1.466698] CAM_ERR: CAM-CCI: cam_cci_assign_fops: 597 Invalid dev node:00000000599c70b6 offset: 0\n[    1.466724] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    1.466844] i2c_pmic 0-0009: ignoring dependency for device, assuming no driver\n[    1.468283] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    1.472026] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    1.472528] ALSA device list:\n[    1.472530]   No soundcards found.\n[    1.472570] Warning: unable to open an initial console.\n[    1.473472] Freeing unused kernel memory: 3840K\n[    1.473673] Run /init as init process\n[    1.960295] fts_ts spi1.0: Falling back to syfs fallback for: focaltech_ts_fw.bin\n[    2.557705] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    2.557920] cpu1 \n[    2.557986] cpu4 \n[    2.558037] \n               Offline CPUs: \n[    2.562159] cpu1 \n[    2.564324] CPU1: shutdown\n[    2.564425] psci: CPU1 killed (polled 0 ms)\n[    2.565079] cpu2 \n[    2.567094] CPU2: shutdown\n[    2.567190] psci: CPU2 killed (polled 0 ms)\n[    2.567817] cpu3 \n[    2.569218] CPU3: shutdown\n[    2.569278] psci: CPU3 killed (polled 0 ms)\n[    2.570221] cpu4 \n[    2.572327] IRQ 6: no longer affine to CPU4\n[    2.572442] CPU4: shutdown\n[    2.572498] psci: CPU4 killed (polled 0 ms)\n[    2.573488] cpu5 \n[    2.574899] CPU5: shutdown\n[    2.574955] psci: CPU5 killed (polled 0 ms)\n[    2.575748] cpu6 \n[    2.577021] IRQ 6: no longer affine to CPU6\n[    2.577126] CPU6: shutdown\n[    2.577174] psci: CPU6 killed (polled 0 ms)\n[    2.578091] cpu7 \n[    2.579339] IRQ 6: no longer affine to CPU7\n[    2.579444] CPU7: shutdown\n[    2.579490] psci: CPU7 killed (polled 0 ms)\n[    2.582437] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    2.582477] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    2.582535] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n\n[    3.360955] pmi632_charger: smblib_pr_swap_detach_work: STATE_MACHINE_STS 1\n[    3.360978] AWAKE: DETACH_DETECT_VOTER,0 voting off of val=0\n[    3.360991] AWAKE: effective vote is now 0 voted by DETACH_DETECT_VOTER,0\n[    3.361015] batt_id_kohm=68\n[    3.361039] of_batterydata_get_best_profile: NVT found\n[    6.240926] aw87519_cfg_work_routine enter\n[    6.240938] aw87519_kspk_update enter\n[    6.240954] aw87519_drcv_update enter\n[    6.240964] aw87519_hvload_update enter\n[    6.240976] aw87359_cfg_work_routine enter\n[    6.240983] aw87359_dspk_update enter\n[    6.240992] aw87359_drcv_update enter\n[    6.241002] aw87359_abspk_update enter\n[    6.241011] aw87359_abrcv_update enter\n[    6.241485] aw87519_pa 0-0059: Falling back to syfs fallback for: aw87519_kspk.bin\n[    6.241938] aw87519_pa 0-0059: Falling back to syfs fallback for: aw87519_drcv.bin\n[    6.242331] aw87519_pa 0-0059: Falling back to syfs fallback for: aw87519_hvload.bin\n[    6.242720] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_dspk.bin\n[    6.243495] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_drcv.bin\n[    6.244176] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_abspk.bin\n[    6.244856] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_abrcv.bin\n[    7.591908] Sampling power every 250 ms\n               Baseline power usage: \n[   31.841052] macro_iovdd: disabling\n[   64.481210] [FTS_TS/I]fts_get_fw_file_via_request_firmware:firmware(focaltech_ts_fw.bin) request fail,ret=-11\n[   64.481224] [FTS_TS/I]fts_fwupg_get_fw_file:upgrade fw file len:0\n[   64.481233] [FTS_TS/E]fts_fwupg_get_fw_file:fw file len(0) fail\n[   64.481241] [FTS_TS/E]fts_fwupg_work:get file fail, can't upgrade\n[   65.138115] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[   65.138204] QG-K: qg_process_fifo: FIFO length=5\n[   65.138284] QG-K: qg_process_fifo: FIFO 0 raw_v=21794 uV=4241918 raw_i=3013 uA=459747 interval=100 count=128\n[   65.138333] QG-K: qg_process_fifo: FIFO 1 raw_v=21795 uV=4242113 raw_i=2950 uA=450134 interval=100 count=128\n[   65.138382] QG-K: qg_process_fifo: FIFO 2 raw_v=21793 uV=4241724 raw_i=2951 uA=450287 interval=100 count=128\n[   65.138430] QG-K: qg_process_fifo: FIFO 3 raw_v=21791 uV=4241334 raw_i=2947 uA=449676 interval=100 count=128\n[   65.138478] QG-K: qg_process_fifo: FIFO 4 raw_v=21789 uV=4240945 raw_i=2948 uA=449829 interval=100 count=128\n[   65.140309] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63801\n[   65.140332] QG_WS: FIFO_DONE_VOTER,0 voting on of val=1\n[   65.140344] QG_WS: effective vote is now 1 voted by FIFO_DONE_VOTER,0\n[   69.601310] aw87359_abrcv_cfg_loaded enter\n[   69.601323] aw87359_abrcv_cfg_loaded: failed to read aw87359_abrcv.bin\n[   69.601341] aw87359_abrcv_cfg_loaded:restart hrtimer to load firmware\n[   69.601540] aw87359_abspk_cfg_loaded enter\n[   69.601550] aw87359_abspk_cfg_loaded: failed to read aw87359_abspk.bin\n[   69.601558] aw87359_abspk_cfg_loaded:restart hrtimer to load firmware\n[   69.601742] aw87359_drcv_cfg_loaded enter\n[   69.601752] aw87359_drcv_cfg_loaded: failed to read aw87359_drcv.bin\n[   69.601759] aw87359_drcv_cfg_loaded:restart hrtimer to load firmware\n[   69.601947] aw87359_dspk_cfg_loaded enter\n[   69.601956] aw87359_dspk_cfg_loaded: failed to read aw87359_dspk.bin\n[   69.601963] aw87359_dspk_cfg_loaded:restart hrtimer to load firmware\n[   69.602147] aw87519_hvload_cfg_loaded enter\n[   69.602157] aw87519_hvload_cfg_loaded: failed to read aw87519_hvload.bin\n[   69.602169] aw87519_hvload_cfg_loaded:restart hrtimer to load firmware\n[   69.602349] aw87519_drcv_cfg_loaded enter\n[   69.602358] aw87519_drcv_cfg_loaded: failed to read aw87519_drcv.bin\n[   69.602366] aw87519_drcv_cfg_loaded:restart hrtimer to load firmware\n[   69.602548] aw87519_kspk_cfg_loaded enter\n[   69.602557] aw87519_kspk_cfg_loaded: failed to read aw87519_kspk.bin\n[   69.602564] aw87519_kspk_cfg_loaded:restart hrtimer to load firmware\n[   71.600929] aw87519_cfg_work_routine enter\n[   71.600941] aw87519_kspk_update enter\n[   71.600957] aw87519_drcv_update enter\n[   71.600967] aw87519_hvload_update enter\n[   71.600979] aw87359_cfg_work_routine enter\n[   71.600987] aw87359_dspk_update enter\n[   71.600996] aw87359_drcv_update enter\n[   71.601005] aw87359_abspk_update enter\n[   71.601014] aw87359_abrcv_update enter\n[   71.601333] aw87519_pa 0-0059: Falling back to syfs fallback for: aw87519_kspk.bin\n[   71.601791] aw87519_pa 0-0059: Falling back to syfs fallback for: aw87519_drcv.bin\n[   71.602189] aw87519_pa 0-0059: Falling back to syfs fallback for: aw87519_hvload.bin\n[   71.602572] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_dspk.bin\n[   71.602969] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_drcv.bin\n[   71.603354] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_abspk.bin\n[   71.603768] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_abrcv.bin\n[   83.057385] Detected VIPT I-cache on CPU1\n[   83.057549] arch_timer: CPU1: Trapping CNTVCT access\n[   83.057579] CPU1: Booted secondary processor 0x0000000001 [0x51af8014]\n[   84.069775] 1873 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 614 864 1017 1305 1420 1612 1804\n               \n                300: \n[  100.663989] boot log copy done\n[  105.440668] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  105.440684] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  115.681210] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  115.681227] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  125.920674] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  125.920690] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  128.993682] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  128.993764] QG-K: qg_process_fifo: FIFO length=5\n[  128.993844] QG-K: qg_process_fifo: FIFO 0 raw_v=21787 uV=4240556 raw_i=2948 uA=449829 interval=100 count=128\n[  128.993893] QG-K: qg_process_fifo: FIFO 1 raw_v=21785 uV=4240167 raw_i=2947 uA=449676 interval=100 count=128\n[  128.993941] QG-K: qg_process_fifo: FIFO 2 raw_v=21782 uV=4239583 raw_i=2967 uA=452728 interval=100 count=128\n[  128.993989] QG-K: qg_process_fifo: FIFO 3 raw_v=21780 uV=4239193 raw_i=2972 uA=453491 interval=100 count=128\n[  128.994037] QG-K: qg_process_fifo: FIFO 4 raw_v=21778 uV=4238804 raw_i=2971 uA=453338 interval=100 count=128\n[  128.995527] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63855\n[  128.995546] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  128.995558] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  136.160831] aw87359_abrcv_cfg_loaded enter\n[  136.160844] aw87359_abrcv_cfg_loaded: failed to read aw87359_abrcv.bin\n[  136.160859] aw87359_abrcv_cfg_loaded:restart hrtimer to load firmware\n[  136.161052] aw87359_abspk_cfg_loaded enter\n[  136.161062] aw87359_abspk_cfg_loaded: failed to read aw87359_abspk.bin\n[  136.161069] aw87359_abspk_cfg_loaded:restart hrtimer to load firmware\n[  136.161254] aw87359_drcv_cfg_loaded enter\n[  136.161263] aw87359_drcv_cfg_loaded: failed to read aw87359_drcv.bin\n[  136.161271] aw87359_drcv_cfg_loaded:restart hrtimer to load firmware\n[  136.161456] aw87359_dspk_cfg_loaded enter\n[  136.161465] aw87359_dspk_cfg_loaded: failed to read aw87359_dspk.bin\n[  136.161473] aw87359_dspk_cfg_loaded:restart hrtimer to load firmware\n[  136.161654] aw87519_hvload_cfg_loaded enter\n[  136.161664] aw87519_hvload_cfg_loaded: failed to read aw87519_hvload.bin\n[  136.161676] aw87519_hvload_cfg_loaded:restart hrtimer to load firmware\n[  136.161855] aw87519_drcv_cfg_loaded enter\n[  136.161864] aw87519_drcv_cfg_loaded: failed to read aw87519_drcv.bin\n[  136.161872] aw87519_drcv_cfg_loaded:restart hrtimer to load firmware\n[  136.162098] aw87519_kspk_cfg_loaded enter\n[  136.162107] aw87519_kspk_cfg_loaded: failed to read aw87519_kspk.bin\n[  136.162115] aw87519_kspk_cfg_loaded:restart hrtimer to load firmware\n[  136.162245] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  136.162257] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  138.160567] aw87519_cfg_work_routine enter\n[  138.160579] aw87519_kspk_update enter\n[  138.160593] aw87519_drcv_update enter\n[  138.160603] aw87519_hvload_update enter\n[  138.160615] aw87359_cfg_work_routine enter\n[  138.160622] aw87359_dspk_update enter\n[  138.160631] aw87359_drcv_update enter\n[  138.160641] aw87359_abspk_update enter\n[  138.160653] aw87359_abrcv_update enter\n[  138.160972] aw87519_pa 0-0059: Falling back to syfs fallback for: aw87519_kspk.bin\n[  138.161416] aw87519_pa 0-0059: Falling back to syfs fallback for: aw87519_drcv.bin\n[  138.161806] aw87519_pa 0-0059: Falling back to syfs fallback for: aw87519_hvload.bin\n[  138.162197] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_dspk.bin\n[  138.162597] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_drcv.bin\n[  138.162986] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_abspk.bin\n[  138.163375] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_abrcv.bin\n[  146.400608] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  146.400624] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  156.640610] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  156.640626] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  166.880674] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  166.880690] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  177.120617] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  177.120633] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  187.360612] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  187.360628] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  192.850449] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  192.850532] QG-K: qg_process_fifo: FIFO length=5\n[  192.850612] QG-K: qg_process_fifo: FIFO 0 raw_v=21776 uV=4238415 raw_i=2967 uA=452728 interval=100 count=128\n[  192.850661] QG-K: qg_process_fifo: FIFO 1 raw_v=21774 uV=4238026 raw_i=2969 uA=453033 interval=100 count=128\n[  192.850709] QG-K: qg_process_fifo: FIFO 2 raw_v=21772 uV=4237636 raw_i=2972 uA=453491 interval=100 count=128\n[  192.850757] QG-K: qg_process_fifo: FIFO 3 raw_v=21770 uV=4237247 raw_i=2969 uA=453033 interval=100 count=128\n[  192.850805] QG-K: qg_process_fifo: FIFO 4 raw_v=21768 uV=4236858 raw_i=2968 uA=452881 interval=100 count=128\n[  192.852374] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63856\n[  192.852393] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  192.852406] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  197.600611] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  197.600628] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  202.720865] aw87359_abrcv_cfg_loaded enter\n[  202.720878] aw87359_abrcv_cfg_loaded: failed to read aw87359_abrcv.bin\n[  202.721075] aw87359_abspk_cfg_loaded enter\n[  202.721085] aw87359_abspk_cfg_loaded: failed to read aw87359_abspk.bin\n[  202.721308] aw87359_drcv_cfg_loaded enter\n[  202.721318] aw87359_drcv_cfg_loaded: failed to read aw87359_drcv.bin\n[  202.721505] aw87359_dspk_cfg_loaded enter\n[  202.721515] aw87359_dspk_cfg_loaded: failed to read aw87359_dspk.bin\n[  202.721696] aw87519_hvload_cfg_loaded enter\n[  202.721706] aw87519_hvload_cfg_loaded: failed to read aw87519_hvload.bin\n[  202.721882] aw87519_drcv_cfg_loaded enter\n[  202.721891] aw87519_drcv_cfg_loaded: failed to read aw87519_drcv.bin\n[  202.722073] aw87519_kspk_cfg_loaded enter\n[  202.722082] aw87519_kspk_cfg_loaded: failed to read aw87519_kspk.bin\n[  207.840680] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  207.840696] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  218.080750] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  218.080766] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  228.320613] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  228.320630] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  238.560606] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  238.560623] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  248.800672] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  248.800688] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  256.708124] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  256.708205] QG-K: qg_process_fifo: FIFO length=5\n[  256.708285] QG-K: qg_process_fifo: FIFO 0 raw_v=21767 uV=4236663 raw_i=2969 uA=453033 interval=100 count=128\n[  256.708335] QG-K: qg_process_fifo: FIFO 1 raw_v=21765 uV=4236274 raw_i=2968 uA=452881 interval=100 count=128\n[  256.708383] QG-K: qg_process_fifo: FIFO 2 raw_v=21763 uV=4235885 raw_i=2966 uA=452576 interval=100 count=128\n[  256.708431] QG-K: qg_process_fifo: FIFO 3 raw_v=21761 uV=4235495 raw_i=2967 uA=452728 interval=100 count=128\n[  256.708479] QG-K: qg_process_fifo: FIFO 4 raw_v=21759 uV=4235106 raw_i=2969 uA=453033 interval=100 count=128\n[  256.709971] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63857\n[  256.709991] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  256.710004] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  259.040611] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  259.040627] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  269.281217] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  269.281234] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  279.520619] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  279.520636] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  289.760609] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  289.760625] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  300.000610] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  300.000626] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  305.121048] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.121099] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.122031] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.122053] audio_notifer_reg_service: service SSR_ADSP is in use\n[  305.122132] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.122146] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for audio_pdr_adsprpc\n[  305.122219] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.122232] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for sensors_pdr_adsprpc\n[  305.122274] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  310.240617] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  310.240633] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  320.480671] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  320.480688] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  320.563648] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  320.563726] QG-K: qg_process_fifo: FIFO length=5\n[  320.563805] QG-K: qg_process_fifo: FIFO 0 raw_v=21757 uV=4234717 raw_i=2965 uA=452423 interval=100 count=128\n[  320.563854] QG-K: qg_process_fifo: FIFO 1 raw_v=21756 uV=4234522 raw_i=2965 uA=452423 interval=100 count=128\n[  320.563903] QG-K: qg_process_fifo: FIFO 2 raw_v=21753 uV=4233938 raw_i=2968 uA=452881 interval=100 count=128\n[  320.563951] QG-K: qg_process_fifo: FIFO 3 raw_v=21751 uV=4233549 raw_i=2970 uA=453186 interval=100 count=128\n[  320.563999] QG-K: qg_process_fifo: FIFO 4 raw_v=21750 uV=4233354 raw_i=2967 uA=452728 interval=100 count=128\n[  320.565487] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63855\n[  320.565504] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  320.565516] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  330.720685] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  330.720701] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  340.960683] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  340.960699] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  351.200609] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  351.200625] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  361.440607] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  361.440623] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  371.680735] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  371.680751] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  381.920619] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  381.920636] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  384.417347] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  384.417430] QG-K: qg_process_fifo: FIFO length=5\n[  384.417509] QG-K: qg_process_fifo: FIFO 0 raw_v=21748 uV=4232965 raw_i=2967 uA=452728 interval=100 count=128\n[  384.417558] QG-K: qg_process_fifo: FIFO 1 raw_v=21746 uV=4232576 raw_i=2967 uA=452728 interval=100 count=128\n[  384.417606] QG-K: qg_process_fifo: FIFO 2 raw_v=21744 uV=4232186 raw_i=2969 uA=453033 interval=100 count=128\n[  384.417654] QG-K: qg_process_fifo: FIFO 3 raw_v=21742 uV=4231797 raw_i=2966 uA=452576 interval=100 count=128\n[  384.417702] QG-K: qg_process_fifo: FIFO 4 raw_v=21740 uV=4231408 raw_i=2966 uA=452576 interval=100 count=128\n[  384.419192] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63853\n[  384.419211] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  384.419224] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  392.160616] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  392.160632] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  400.330691]   974     3.2 C/MHz     37 mW   11.5 J   26.1 I/mJ   308.0 s\n                614: \n[  402.400871] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  402.400880] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  412.640416] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  412.640425] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  422.880778] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  422.880786] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  433.120422] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  433.120431] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  443.360412] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  443.360422] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  448.269463] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  448.269528] QG-K: qg_process_fifo: FIFO length=5\n[  448.269592] QG-K: qg_process_fifo: FIFO 0 raw_v=21739 uV=4231213 raw_i=2968 uA=452881 interval=100 count=128\n[  448.269627] QG-K: qg_process_fifo: FIFO 1 raw_v=21737 uV=4230824 raw_i=2957 uA=451202 interval=100 count=128\n[  448.269663] QG-K: qg_process_fifo: FIFO 2 raw_v=21733 uV=4230045 raw_i=2996 uA=457153 interval=100 count=128\n[  448.269698] QG-K: qg_process_fifo: FIFO 3 raw_v=21731 uV=4229656 raw_i=2996 uA=457153 interval=100 count=128\n[  448.269733] QG-K: qg_process_fifo: FIFO 4 raw_v=21729 uV=4229267 raw_i=2997 uA=457306 interval=100 count=128\n[  448.271080] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63852\n[  448.271091] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  448.271097] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  453.600417] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  453.600426] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  463.840416] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  463.840425] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  474.080492] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  474.080501] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  484.320431] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  484.320440] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  494.560448] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  494.560457] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  504.801037] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  504.801046] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  512.123197] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  512.123259] QG-K: qg_process_fifo: FIFO length=5\n[  512.123320] QG-K: qg_process_fifo: FIFO 0 raw_v=21727 uV=4228878 raw_i=2999 uA=457611 interval=100 count=128\n[  512.123355] QG-K: qg_process_fifo: FIFO 1 raw_v=21726 uV=4228683 raw_i=2998 uA=457458 interval=100 count=128\n[  512.123390] QG-K: qg_process_fifo: FIFO 2 raw_v=21724 uV=4228294 raw_i=2996 uA=457153 interval=100 count=128\n[  512.123426] QG-K: qg_process_fifo: FIFO 3 raw_v=21722 uV=4227904 raw_i=2998 uA=457458 interval=100 count=128\n[  512.123461] QG-K: qg_process_fifo: FIFO 4 raw_v=21721 uV=4227710 raw_i=2999 uA=457611 interval=100 count=128\n[  512.124817] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63853\n[  512.124828] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  512.124835] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  515.040456] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  515.040465] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  525.280448] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  525.280457] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  535.520422] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  535.520431] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  545.760472] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  545.760482] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  556.000414] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  556.000423] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  559.120914]  1995     3.2 C/MHz     60 mW    9.1 J   33.0 I/mJ   150.4 s\n                864: \n[  566.240801] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  566.240808] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  575.977571] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  575.977634] QG-K: qg_process_fifo: FIFO length=5\n[  575.977695] QG-K: qg_process_fifo: FIFO 0 raw_v=21718 uV=4227126 raw_i=2998 uA=457458 interval=100 count=128\n[  575.977727] QG-K: qg_process_fifo: FIFO 1 raw_v=21717 uV=4226931 raw_i=2997 uA=457306 interval=100 count=128\n[  575.977759] QG-K: qg_process_fifo: FIFO 2 raw_v=21715 uV=4226542 raw_i=2997 uA=457306 interval=100 count=128\n[  575.977790] QG-K: qg_process_fifo: FIFO 3 raw_v=21715 uV=4226542 raw_i=2982 uA=455017 interval=100 count=128\n[  575.977822] QG-K: qg_process_fifo: FIFO 4 raw_v=21712 uV=4225958 raw_i=3000 uA=457764 interval=100 count=128\n[  575.979138] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63854\n[  575.979147] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  575.979151] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  576.480643] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  576.480650] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  586.720372] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  586.720380] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  596.960442] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  596.960448] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  607.200697] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  607.200705] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  617.440388] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  617.440395] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  627.680390] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  627.680398] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  637.920366] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  637.920374] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  639.833620] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  639.833682] QG-K: qg_process_fifo: FIFO length=5\n[  639.833743] QG-K: qg_process_fifo: FIFO 0 raw_v=21707 uV=4224985 raw_i=3024 uA=461426 interval=100 count=128\n[  639.833775] QG-K: qg_process_fifo: FIFO 1 raw_v=21706 uV=4224790 raw_i=3025 uA=461578 interval=100 count=128\n[  639.833807] QG-K: qg_process_fifo: FIFO 2 raw_v=21704 uV=4224401 raw_i=3028 uA=462036 interval=100 count=128\n[  639.833839] QG-K: qg_process_fifo: FIFO 3 raw_v=21702 uV=4224012 raw_i=3026 uA=461731 interval=100 count=128\n[  639.833870] QG-K: qg_process_fifo: FIFO 4 raw_v=21700 uV=4223622 raw_i=3025 uA=461578 interval=100 count=128\n[  639.835187] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63856\n[  639.835196] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  639.835201] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  648.160362] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  648.160370] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  658.400359] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  658.400366] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  668.640456] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  668.640463] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  674.428662]  2806     3.2 C/MHz     77 mW    8.2 J   36.4 I/mJ   106.9 s\n               1017: \n[  678.880821] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  678.880828] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  689.120444] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  689.120451] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  699.360342] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  699.360348] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  703.687006] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  703.687068] QG-K: qg_process_fifo: FIFO length=5\n[  703.687130] QG-K: qg_process_fifo: FIFO 0 raw_v=21699 uV=4223428 raw_i=3029 uA=462189 interval=100 count=128\n[  703.687161] QG-K: qg_process_fifo: FIFO 1 raw_v=21696 uV=4222844 raw_i=3027 uA=461883 interval=100 count=128\n[  703.687192] QG-K: qg_process_fifo: FIFO 2 raw_v=21697 uV=4223038 raw_i=3002 uA=458069 interval=100 count=128\n[  703.687223] QG-K: qg_process_fifo: FIFO 3 raw_v=21694 uV=4222455 raw_i=3012 uA=459595 interval=100 count=128\n[  703.687253] QG-K: qg_process_fifo: FIFO 4 raw_v=21690 uV=4221676 raw_i=3046 uA=464783 interval=100 count=128\n[  703.688557] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63853\n[  703.688565] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  703.688569] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  709.600344] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  709.600351] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  719.840344] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  719.840350] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  730.080610] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  730.080616] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  740.320397] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  740.320403] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  750.560344] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  750.560351] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  760.800343] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  760.800349] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  767.541003] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  767.541064] QG-K: qg_process_fifo: FIFO length=5\n[  767.541123] QG-K: qg_process_fifo: FIFO 0 raw_v=21688 uV=4221287 raw_i=3047 uA=464935 interval=100 count=128\n[  767.541154] QG-K: qg_process_fifo: FIFO 1 raw_v=21687 uV=4221092 raw_i=3045 uA=464630 interval=100 count=128\n[  767.541184] QG-K: qg_process_fifo: FIFO 2 raw_v=21685 uV=4220703 raw_i=3046 uA=464783 interval=100 count=128\n[  767.541215] QG-K: qg_process_fifo: FIFO 3 raw_v=21684 uV=4220508 raw_i=3046 uA=464783 interval=100 count=128\n[  767.541245] QG-K: qg_process_fifo: FIFO 4 raw_v=21681 uV=4219924 raw_i=3050 uA=465393 interval=100 count=128\n[  767.542546] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63853\n[  767.542554] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  767.542558] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  771.040342] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  771.040348] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  773.588333]  3305     3.2 C/MHz     89 mW    8.1 J   37.2 I/mJ    90.8 s\n               1305: \n[  781.280788] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  781.280794] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  791.520327] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  791.520332] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  801.760320] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  801.760325] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  812.000318] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  812.000324] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  822.240329] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  822.240335] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  831.396237] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  831.396296] QG-K: qg_process_fifo: FIFO length=5\n[  831.396353] QG-K: qg_process_fifo: FIFO 0 raw_v=21683 uV=4220314 raw_i=2993 uA=456695 interval=100 count=128\n[  831.396382] QG-K: qg_process_fifo: FIFO 1 raw_v=21675 uV=4218756 raw_i=3081 uA=470123 interval=100 count=128\n[  831.396411] QG-K: qg_process_fifo: FIFO 2 raw_v=21672 uV=4218173 raw_i=3097 uA=472565 interval=100 count=128\n[  831.396439] QG-K: qg_process_fifo: FIFO 3 raw_v=21670 uV=4217783 raw_i=3101 uA=473175 interval=100 count=128\n[  831.396468] QG-K: qg_process_fifo: FIFO 4 raw_v=21668 uV=4217394 raw_i=3098 uA=472717 interval=100 count=128\n[  831.397748] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63855\n[  831.397755] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  831.397758] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  832.480436] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  832.480441] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  842.720324] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  842.720330] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  852.583527]  4240     3.2 C/MHz    120 mW    8.5 J   35.3 I/mJ    70.8 s\n               1420: \n[  852.960754] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  852.960759] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  863.200331] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  863.200336] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  873.440334] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  873.440340] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  883.680540] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  883.680545] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  893.920329] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  893.920334] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  895.252754] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  895.252812] QG-K: qg_process_fifo: FIFO length=5\n[  895.252868] QG-K: qg_process_fifo: FIFO 0 raw_v=21667 uV=4217199 raw_i=3096 uA=472412 interval=100 count=128\n[  895.252896] QG-K: qg_process_fifo: FIFO 1 raw_v=21668 uV=4217394 raw_i=3049 uA=465240 interval=100 count=128\n[  895.252924] QG-K: qg_process_fifo: FIFO 2 raw_v=21665 uV=4216810 raw_i=3073 uA=468902 interval=100 count=128\n[  895.252952] QG-K: qg_process_fifo: FIFO 3 raw_v=21660 uV=4215837 raw_i=3120 uA=476074 interval=100 count=128\n[  895.252981] QG-K: qg_process_fifo: FIFO 4 raw_v=21659 uV=4215642 raw_i=3120 uA=476074 interval=100 count=128\n[  895.254267] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63856\n[  895.254272] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  895.254275] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  904.160310] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  904.160315] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  914.400312] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  914.400318] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  924.640315] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  924.640320] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  925.786997]  4614     3.2 C/MHz    134 mW    8.7 J   34.4 I/mJ    65.0 s\n               1612: \n[  934.880327] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  934.880332] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  945.120309] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  945.120314] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  955.360303] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  955.360309] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  959.109109] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  959.109165] QG-K: qg_process_fifo: FIFO length=5\n[  959.109220] QG-K: qg_process_fifo: FIFO 0 raw_v=21657 uV=4215253 raw_i=3124 uA=476684 interval=100 count=128\n[  959.109248] QG-K: qg_process_fifo: FIFO 1 raw_v=21654 uV=4214669 raw_i=3121 uA=476227 interval=100 count=128\n[  959.109275] QG-K: qg_process_fifo: FIFO 2 raw_v=21658 uV=4215448 raw_i=3018 uA=460510 interval=100 count=128\n[  959.109303] QG-K: qg_process_fifo: FIFO 3 raw_v=21649 uV=4213696 raw_i=3164 uA=482788 interval=100 count=128\n[  959.109331] QG-K: qg_process_fifo: FIFO 4 raw_v=21646 uV=4213112 raw_i=3168 uA=483398 interval=100 count=128\n[  959.110601] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63856\n[  959.110607] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  959.110610] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  965.600305] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  965.600310] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  975.840303] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  975.840308] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  986.080335] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  986.080340] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  991.435632]  5238     3.2 C/MHz    163 mW    9.3 J   32.1 I/mJ    57.3 s\n               1804: \n[  996.320776] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  996.320781] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1006.560313] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1006.560317] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1016.800294] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1016.800299] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1022.968329] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1022.968384] QG-K: qg_process_fifo: FIFO length=5\n[ 1022.968439] QG-K: qg_process_fifo: FIFO 0 raw_v=21643 uV=4212528 raw_i=3166 uA=483093 interval=100 count=128\n[ 1022.968466] QG-K: qg_process_fifo: FIFO 1 raw_v=21641 uV=4212139 raw_i=3168 uA=483398 interval=100 count=128\n[ 1022.968493] QG-K: qg_process_fifo: FIFO 2 raw_v=21647 uV=4213307 raw_i=3069 uA=468292 interval=100 count=128\n[ 1022.968520] QG-K: qg_process_fifo: FIFO 3 raw_v=21638 uV=4211555 raw_i=3181 uA=485382 interval=100 count=128\n[ 1022.968547] QG-K: qg_process_fifo: FIFO 4 raw_v=21633 uV=4210582 raw_i=3225 uA=492096 interval=100 count=128\n[ 1022.969808] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63859\n[ 1022.969814] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1022.969816] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1027.040296] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1027.040300] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1037.280508] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1037.280513] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1047.520301] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1047.520306] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1051.054566] CPU1: shutdown\n[ 1051.054706] psci: CPU1 killed (polled 0 ms)\n[ 1051.058789] Detected VIPT I-cache on CPU4\n[ 1051.058876] arch_timer: CPU4: Trapping CNTVCT access\n[ 1051.058885] CPU4: Booted secondary processor 0x0000000100 [0x51af8002]\n[ 1052.070457]  5846     3.2 C/MHz    200 mW   10.2 J   29.3 I/mJ    51.3 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 300 652 902 1056 1401 1536 1612 1804 2016\n               \n                300: \n[ 1057.761067] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1057.761084] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1068.001003] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1068.001019] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1078.240986] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1078.241003] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1086.823162] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1086.823251] QG-K: qg_process_fifo: FIFO length=5\n[ 1086.823332] QG-K: qg_process_fifo: FIFO 0 raw_v=21630 uV=4209998 raw_i=3228 uA=492554 interval=100 count=128\n[ 1086.823381] QG-K: qg_process_fifo: FIFO 1 raw_v=21628 uV=4209609 raw_i=3228 uA=492554 interval=100 count=128\n[ 1086.823430] QG-K: qg_process_fifo: FIFO 2 raw_v=21640 uV=4211944 raw_i=3012 uA=459595 interval=100 count=128\n[ 1086.823478] QG-K: qg_process_fifo: FIFO 3 raw_v=21638 uV=4211555 raw_i=3032 uA=462646 interval=100 count=128\n[ 1086.823526] QG-K: qg_process_fifo: FIFO 4 raw_v=21637 uV=4211360 raw_i=3033 uA=462799 interval=100 count=128\n[ 1086.825045] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63854\n[ 1086.825066] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1086.825078] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1088.481141] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1088.481158] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1098.720986] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1098.721003] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1108.961045] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1108.961062] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1119.200981] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1119.200998] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1129.440733] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1129.440749] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1139.681068] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1139.681085] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1149.920985] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1149.921002] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1150.677130] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1150.677219] QG-K: qg_process_fifo: FIFO length=5\n[ 1150.677300] QG-K: qg_process_fifo: FIFO 0 raw_v=21635 uV=4210971 raw_i=3034 uA=462951 interval=100 count=128\n[ 1150.677350] QG-K: qg_process_fifo: FIFO 1 raw_v=21633 uV=4210582 raw_i=3031 uA=462494 interval=100 count=128\n[ 1150.677398] QG-K: qg_process_fifo: FIFO 2 raw_v=21632 uV=4210387 raw_i=3032 uA=462646 interval=100 count=128\n[ 1150.677446] QG-K: qg_process_fifo: FIFO 3 raw_v=21630 uV=4209998 raw_i=3034 uA=462951 interval=100 count=128\n[ 1150.677494] QG-K: qg_process_fifo: FIFO 4 raw_v=21628 uV=4209609 raw_i=3034 uA=462951 interval=100 count=128\n[ 1150.679013] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63853\n[ 1150.679033] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1150.679045] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1160.160978] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1160.160994] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1170.400984] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1170.401001] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1180.640981] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1180.640998] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1190.881626] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1190.881642] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1201.120995] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1201.121012] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1211.360980] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1211.360997] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1214.532853] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1214.532942] QG-K: qg_process_fifo: FIFO length=5\n[ 1214.533023] QG-K: qg_process_fifo: FIFO 0 raw_v=21627 uV=4209414 raw_i=3032 uA=462646 interval=100 count=128\n[ 1214.533072] QG-K: qg_process_fifo: FIFO 1 raw_v=21625 uV=4209025 raw_i=3033 uA=462799 interval=100 count=128\n[ 1214.533121] QG-K: qg_process_fifo: FIFO 2 raw_v=21623 uV=4208635 raw_i=3036 uA=463257 interval=100 count=128\n[ 1214.533169] QG-K: qg_process_fifo: FIFO 3 raw_v=21621 uV=4208246 raw_i=3033 uA=462799 interval=100 count=128\n[ 1214.533217] QG-K: qg_process_fifo: FIFO 4 raw_v=21620 uV=4208051 raw_i=3036 uA=463257 interval=100 count=128\n[ 1214.534734] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63855\n[ 1214.534754] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1214.534767] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1221.601070] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1221.601087] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1231.841047] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1231.841064] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1242.081065] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1242.081082] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1251.882352]  1568     5.2 C/MHz     75 mW   14.3 J   21.0 I/mJ   191.3 s\n                652: \n[ 1252.321087] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1252.321104] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1262.560930] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1262.560947] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1272.800924] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1272.800940] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1278.382998] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1278.383087] QG-K: qg_process_fifo: FIFO length=5\n[ 1278.383168] QG-K: qg_process_fifo: FIFO 0 raw_v=21618 uV=4207662 raw_i=3033 uA=462799 interval=100 count=128\n[ 1278.383217] QG-K: qg_process_fifo: FIFO 1 raw_v=21616 uV=4207273 raw_i=3037 uA=463409 interval=100 count=128\n[ 1278.383265] QG-K: qg_process_fifo: FIFO 2 raw_v=21615 uV=4207078 raw_i=3029 uA=462189 interval=100 count=128\n[ 1278.383314] QG-K: qg_process_fifo: FIFO 3 raw_v=21614 uV=4206884 raw_i=3024 uA=461426 interval=100 count=128\n[ 1278.383361] QG-K: qg_process_fifo: FIFO 4 raw_v=21607 uV=4205521 raw_i=3109 uA=474396 interval=100 count=128\n[ 1278.384877] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63850\n[ 1278.384897] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1278.384909] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1283.040929] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1283.040945] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1293.281038] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1293.281054] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1303.520937] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1303.520954] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1313.760927] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1313.760943] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1324.000930] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1324.000947] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1334.240927] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1334.240944] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1342.235676] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1342.235763] QG-K: qg_process_fifo: FIFO length=5\n[ 1342.235844] QG-K: qg_process_fifo: FIFO 0 raw_v=21604 uV=4204937 raw_i=3110 uA=474548 interval=100 count=128\n[ 1342.235893] QG-K: qg_process_fifo: FIFO 1 raw_v=21602 uV=4204548 raw_i=3111 uA=474701 interval=100 count=128\n[ 1342.235942] QG-K: qg_process_fifo: FIFO 2 raw_v=21600 uV=4204159 raw_i=3112 uA=474853 interval=100 count=128\n[ 1342.235990] QG-K: qg_process_fifo: FIFO 3 raw_v=21599 uV=4203964 raw_i=3107 uA=474090 interval=100 count=128\n[ 1342.236038] QG-K: qg_process_fifo: FIFO 4 raw_v=21597 uV=4203575 raw_i=3111 uA=474701 interval=100 count=128\n[ 1342.237567] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63852\n[ 1342.237588] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1342.237601] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1344.481511] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1344.481527] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1348.015233]  3415     5.2 C/MHz    122 mW   10.7 J   28.1 I/mJ    87.9 s\n                902: \n[ 1354.721221] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1354.721237] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1364.960933] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1364.960949] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1375.200963] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1375.200979] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1385.440934] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1385.440951] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1395.681010] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1395.681027] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1405.920939] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1405.920956] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1406.090738] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1406.090825] QG-K: qg_process_fifo: FIFO length=5\n[ 1406.090906] QG-K: qg_process_fifo: FIFO 0 raw_v=21600 uV=4204159 raw_i=3027 uA=461883 interval=100 count=128\n[ 1406.090955] QG-K: qg_process_fifo: FIFO 1 raw_v=21591 uV=4202407 raw_i=3153 uA=481109 interval=100 count=128\n[ 1406.091003] QG-K: qg_process_fifo: FIFO 2 raw_v=21588 uV=4201823 raw_i=3174 uA=484314 interval=100 count=128\n[ 1406.091051] QG-K: qg_process_fifo: FIFO 3 raw_v=21585 uV=4201239 raw_i=3173 uA=484161 interval=100 count=128\n[ 1406.091099] QG-K: qg_process_fifo: FIFO 4 raw_v=21583 uV=4200850 raw_i=3176 uA=484619 interval=100 count=128\n[ 1406.092874] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63855\n[ 1406.092897] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1406.092910] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1416.160936] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1416.160954] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1420.067896]  4714     5.2 C/MHz    161 mW   10.3 J   29.3 I/mJ    63.7 s\n               1056: \n[ 1426.401066] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1426.401083] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1436.640941] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1436.640958] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1446.881023] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1446.881040] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1457.120952] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1457.120968] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1467.360947] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1467.360963] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1469.942730] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1469.942821] QG-K: qg_process_fifo: FIFO length=5\n[ 1469.942902] QG-K: qg_process_fifo: FIFO 0 raw_v=21581 uV=4200461 raw_i=3173 uA=484161 interval=100 count=128\n[ 1469.942951] QG-K: qg_process_fifo: FIFO 1 raw_v=21588 uV=4201823 raw_i=3047 uA=464935 interval=100 count=128\n[ 1469.942999] QG-K: qg_process_fifo: FIFO 2 raw_v=21576 uV=4199487 raw_i=3221 uA=491485 interval=100 count=128\n[ 1469.943047] QG-K: qg_process_fifo: FIFO 3 raw_v=21573 uV=4198904 raw_i=3224 uA=491943 interval=100 count=128\n[ 1469.943095] QG-K: qg_process_fifo: FIFO 4 raw_v=21571 uV=4198514 raw_i=3224 uA=491943 interval=100 count=128\n[ 1469.944612] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63851\n[ 1469.944632] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1469.944645] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1477.601008] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1477.601024] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1482.746376]  5515     5.2 C/MHz    191 mW   10.4 J   28.8 I/mJ    54.4 s\n               1401: \n[ 1487.841139] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1487.841156] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1498.081522] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1498.081538] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1508.320949] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1508.320966] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1518.560970] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1518.560986] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1528.800934] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1528.800950] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1531.995190]  7331     5.2 C/MHz    288 mW   11.8 J   25.5 I/mJ    40.9 s\n               1536: \n[ 1533.794282] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1533.794371] QG-K: qg_process_fifo: FIFO length=5\n[ 1533.794451] QG-K: qg_process_fifo: FIFO 0 raw_v=21569 uV=4198125 raw_i=3222 uA=491638 interval=100 count=128\n[ 1533.794500] QG-K: qg_process_fifo: FIFO 1 raw_v=21574 uV=4199098 raw_i=3109 uA=474396 interval=100 count=128\n[ 1533.794548] QG-K: qg_process_fifo: FIFO 2 raw_v=21555 uV=4195400 raw_i=3376 uA=515137 interval=100 count=128\n[ 1533.794596] QG-K: qg_process_fifo: FIFO 3 raw_v=21552 uV=4194816 raw_i=3378 uA=515442 interval=100 count=128\n[ 1533.794644] QG-K: qg_process_fifo: FIFO 4 raw_v=21554 uV=4195205 raw_i=3315 uA=505829 interval=100 count=128\n[ 1533.796264] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63851\n[ 1533.796285] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1533.796298] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1539.041071] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1539.041088] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1549.281003] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1549.281019] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1559.520933] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1559.520949] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1569.760929] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1569.760945] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1577.695418]  8028     5.2 C/MHz    330 mW   12.3 J   24.3 I/mJ    37.4 s\n               1612: \n[ 1580.001066] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1580.001083] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1590.240926] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1590.240942] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1597.646797] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1597.646886] QG-K: qg_process_fifo: FIFO length=5\n[ 1597.646969] QG-K: qg_process_fifo: FIFO 0 raw_v=21560 uV=4196373 raw_i=3204 uA=488891 interval=100 count=128\n[ 1597.647021] QG-K: qg_process_fifo: FIFO 1 raw_v=21542 uV=4192870 raw_i=3444 uA=525513 interval=100 count=128\n[ 1597.647069] QG-K: qg_process_fifo: FIFO 2 raw_v=21539 uV=4192286 raw_i=3446 uA=525818 interval=100 count=128\n[ 1597.647119] QG-K: qg_process_fifo: FIFO 3 raw_v=21554 uV=4195205 raw_i=3171 uA=483856 interval=100 count=128\n[ 1597.647167] QG-K: qg_process_fifo: FIFO 4 raw_v=21536 uV=4191702 raw_i=3445 uA=525665 interval=100 count=128\n[ 1597.648688] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63852\n[ 1597.648708] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1597.648720] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1600.481076] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1600.481092] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1610.720970] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1610.720986] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1620.961009] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1620.961026] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1621.621357]  8428     5.2 C/MHz    356 mW   12.7 J   23.7 I/mJ    35.6 s\n               1804: \n[ 1631.200930] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1631.200947] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1641.440925] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1641.440942] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1651.681544] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1651.681560] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1661.502629] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1661.502719] QG-K: qg_process_fifo: FIFO length=5\n[ 1661.502801] QG-K: qg_process_fifo: FIFO 0 raw_v=21531 uV=4190729 raw_i=3485 uA=531769 interval=100 count=128\n[ 1661.502850] QG-K: qg_process_fifo: FIFO 1 raw_v=21533 uV=4191118 raw_i=3418 uA=521545 interval=100 count=128\n[ 1661.502899] QG-K: qg_process_fifo: FIFO 2 raw_v=21541 uV=4192675 raw_i=3274 uA=499573 interval=100 count=128\n[ 1661.502947] QG-K: qg_process_fifo: FIFO 3 raw_v=21518 uV=4188198 raw_i=3597 uA=548859 interval=100 count=128\n[ 1661.502996] QG-K: qg_process_fifo: FIFO 4 raw_v=21515 uV=4187615 raw_i=3598 uA=549011 interval=100 count=128\n[ 1661.504516] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63855\n[ 1661.504535] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1661.504548] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1661.746848]  9436     5.2 C/MHz    425 mW   13.5 J   22.2 I/mJ    31.8 s\n               2016: \n[ 1661.921084] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1661.921102] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1672.160928] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1672.160944] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1682.400932] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1682.400949] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1692.640943] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1692.640959] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1698.585505] CPU4: shutdown\n[ 1698.585607] psci: CPU4 killed (polled 0 ms)\n[ 1698.619114] 10539     5.2 C/MHz    514 mW   14.6 J   20.5 I/mJ    28.5 s\n               \n               \n               Benchmark finished!\n[ 1698.657784] \n               real\t28m17.048s\n               user\t24m42.159s\n               sys\t0m3.288s\n"
  },
  {
    "path": "results/sm6115/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  1:          0   mpm-gic 229 Edge      mpm\n  4:       3560   mpm-gic  19 Level     arch_timer\n  6:     172554   mpm-gic  39 Level     arch_mem_timer\n  8:          0   mpm-gic 315 Level     ngd_slim_irq\n 14:          0   mpm-gic 279 Level     sps\n 15:          0   mpm-gic  22 Level     arm-pmu\n 16:          0   mpm-gic 221 Level     eud_irq\n 18:          0   mpm-gic  35 Edge      apps_wdog_bark\n 20:        279   mpm-gic 226 Edge      glink-native-rpm-glink\n 21:          0     GICv3 314 Edge      adsp\n 22:          0     GICv3 297 Edge      cdsp\n 25:         13   mpm-gic 382 Level     mmc0\n 26:          2   mpm-gic 385 Level     4784000.sdhci\n 27:        457   mpm-gic 388 Level     4804000.ufshc\n 28:          0   mpm-gic 307 Level     tsens-upper-lower\n 29:          0   mpm-gic 222 Level     tsens-critical\n 30:          0   mpm-gic 102 Edge      smp2p\n 31:          0   mpm-gic 311 Edge      smp2p\n 32:          0   mpm-gic 295 Edge      smp2p\n 46:          0     GICv3 339 Edge      modem\n 50:          1   mpm-gic 334 Level     pwr_event_irq\n 51:          0   mpm-gic 454 Level     ss_phy_irq\n 52:          0   mpm-gic 292 Level     hs_phy_irq\n 53:          0   mpm-gic  85 Edge      apps-tgu\n 54:          0   mpm-gic  86 Edge      apps-tgu\n 55:          0   mpm-gic  87 Edge      apps-tgu\n 56:          0   mpm-gic  88 Edge      apps-tgu\n 57:          0   mpm-gic 461 Edge      tmc-etr\n 58:          0   mpm-gic 257 Level     msm_vidc\n 59:          0   mpm-gic 195 Level     arm-smmu global fault\n 60:          0   mpm-gic 199 Level     arm-smmu-context-fault\n 61:          0   mpm-gic 200 Level     arm-smmu-context-fault\n 68:          0   mpm-gic 113 Level     arm-smmu global fault\n 70:          0   mpm-gic 121 Level     arm-smmu-context-fault\n 72:          0   mpm-gic 123 Level     arm-smmu-context-fault\n 73:          0   mpm-gic 124 Level     arm-smmu-context-fault\n 74:          0   mpm-gic 125 Level     arm-smmu-context-fault\n 75:          0   mpm-gic 126 Level     arm-smmu-context-fault\n 76:          0   mpm-gic 127 Level     arm-smmu-context-fault\n 77:          0   mpm-gic 128 Level     arm-smmu-context-fault\n 78:          0   mpm-gic 129 Level     arm-smmu-context-fault\n 79:          0   mpm-gic 130 Level     arm-smmu-context-fault\n 80:          0   mpm-gic 131 Level     arm-smmu-context-fault\n 81:          0   mpm-gic 132 Level     arm-smmu-context-fault\n 82:          0   mpm-gic 133 Level     arm-smmu-context-fault\n 83:          0   mpm-gic 134 Level     arm-smmu-context-fault\n 84:          0   mpm-gic 135 Level     arm-smmu-context-fault\n 85:          0   mpm-gic 136 Level     arm-smmu-context-fault\n 86:          0   mpm-gic 137 Level     arm-smmu-context-fault\n 87:          0   mpm-gic 138 Level     arm-smmu-context-fault\n 88:          0   mpm-gic 139 Level     arm-smmu-context-fault\n 89:          0   mpm-gic 140 Level     arm-smmu-context-fault\n 90:          0   mpm-gic 141 Level     arm-smmu-context-fault\n 91:          0   mpm-gic 142 Level     arm-smmu-context-fault\n 92:          0   mpm-gic 143 Level     arm-smmu-context-fault\n 93:          0   mpm-gic 144 Level     arm-smmu-context-fault\n 94:          0   mpm-gic 145 Level     arm-smmu-context-fault\n 95:          0   mpm-gic 146 Level     arm-smmu-context-fault\n 96:          0   mpm-gic 147 Level     arm-smmu-context-fault\n 97:          0   mpm-gic 148 Level     arm-smmu-context-fault\n 98:          0   mpm-gic 149 Level     arm-smmu-context-fault\n 99:          0   mpm-gic 150 Level     arm-smmu-context-fault\n100:          0   mpm-gic 151 Level     arm-smmu-context-fault\n101:          0   mpm-gic 152 Level     arm-smmu-context-fault\n102:          0   mpm-gic 153 Level     arm-smmu-context-fault\n103:          0   mpm-gic 154 Level     arm-smmu-context-fault\n104:          0   mpm-gic 155 Level     arm-smmu-context-fault\n105:          0   mpm-gic 156 Level     arm-smmu-context-fault\n145:          0     GICv3 362 Level     msm_serial_geni0\n146:         70   mpm-gic 360 Level     i2c_geni\n147:          0   mpm-gic 359 Level     spi_geni\n148:         32   mpm-gic 361 Level     spi_geni\n149:          0   mpm-gic 209 Level     kgsl_3d0_irq\n150:          0   mpm-gic 218 Level     msm_drm\n151:          0   mpm-gic 104 Edge      csiphy\n152:          0   mpm-gic 105 Edge      csiphy\n153:          0   mpm-gic 106 Edge      csiphy\n154:          0   mpm-gic 238 Edge      cci\n155:          0   mpm-gic 191 Edge      cpas_camnoc\n156:          2   mpm-gic 239 Edge      cpas-cdm0\n157:          2   mpm-gic 240 Edge      ope-cdm0\n158:          0   mpm-gic 242 Edge      csid0\n159:          2   mpm-gic 243 Edge      tfe0\n160:          0   mpm-gic 244 Edge      csid1\n161:          2   mpm-gic 245 Edge      tfe1\n162:          0   mpm-gic 109 Edge      csid2\n163:          2   mpm-gic 110 Edge      tfe2\n164:          0   mpm-gic 241 Edge      ope\n165:         37  pmic_arb 588251292 Edge      pm-adc5\n166:          0  pmic_arb 592445597 Edge      thr-int-en\n167:          0  pmic_arb 574619801 Edge      qcom,temp-alarm\n176:          0  pmic_arb 600834208 Edge      bcl-lvl0\n177:          0  pmic_arb 600899744 Edge      bcl-lvl1\n178:          0  pmic_arb 600965280 Edge      bcl-lvl2\n179:          0  pmic_arb 1052836027 Edge      qpnp_lcdb_sc_irq\n180:          0  pmic_arb 1026556090 Edge      qpnp_flash_led_fault_irq\n181:          0  pmic_arb 1026752698 Edge      qpnp_flash_led_all_ramp_down_done_irq\n182:          0  pmic_arb 1026818234 Edge      qpnp_flash_led_all_ramp_up_done_irq\n183:          0  pmic_arb 8388736 Edge      pon_kpdpwr_status\n184:          0  pmic_arb 8454272 Edge      pon_resin_status\n185:          6  pmic_arb 51380354 Edge      pm-adc5\n186:          0  pmic_arb 55574659 Edge      thr-int-en\n187:          0  pmic_arb 37748865 Edge      qcom,temp-alarm\n192:          0  pmic_arb 205521034 Edge      volume_up\n197:          0  pmic_arb 101777541 Edge      pm8xxx_rtc_alarm\n198:          0   mpm-gic  69 Level     limits_sensor-00, limits_sensor-01\n199:          0     smp2p   2 Edge      adsp\n200:          0     smp2p   0 Edge      adsp\n201:          0     smp2p   1 Edge      error_ready_interrupt\n202:          0     smp2p   3 Edge      adsp\n203:          0     smp2p   2 Edge      cdsp\n204:          0     smp2p   0 Edge      cdsp\n205:          0     smp2p   1 Edge      error_ready_interrupt\n206:          0     smp2p   3 Edge      cdsp\n207:          0     smp2p   2 Edge      modem\n208:          0     smp2p   0 Edge      modem\n209:          0     smp2p   1 Edge      error_ready_interrupt\n210:          0     smp2p   3 Edge      modem\n211:          0     smp2p   7 Edge      modem\n212:          0     smp2p   0 Edge      smp2p_sleepstate\n214:          0     GICv3 287 Level     dwc3\n217:          0   msmgpio  41 Edge      sar\n218:          0   mpm-gic  89 Level     l2-cache-pmu\n219:          0   mpm-gic  90 Level     l2-cache-pmu\n220:          0   msmgpio  88 Edge      4784000.sdhci cd\n221:          0   msmgpio  81 Edge      TE_GPIO\n222:          0       sde   4 Edge      dsi_ctrl\n223:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n224:          0  pmic_arb 553648272 Edge      chgr-error\n225:          0  pmic_arb 553713808 Edge      chg-state-change\n232:          0  pmic_arb 554696849 Edge      otg-fail\n236:          0  pmic_arb 554958993 Edge      high-duty-cycle\n237:          0  pmic_arb 555024529 Edge      input-current-limiting\n239:          0  pmic_arb 555155601 Edge      switcher-power-ok\n240:          0  pmic_arb 555745426 Edge      bat-temp\n242:          0  pmic_arb 555876498 Edge      bat-ov\n243:          0  pmic_arb 555942034 Edge      bat-low\n244:          0  pmic_arb 556007570 Edge      bat-therm-or-id-missing\n245:          0  pmic_arb 556073106 Edge      bat-terminal-missing\n248:          0  pmic_arb 556794003 Edge      usbin-collapse\n249:          0  pmic_arb 556859539 Edge      usbin-vashdn\n250:          0  pmic_arb 556925075 Edge      usbin-uv\n251:          0  pmic_arb 556990611 Edge      usbin-ov\n252:          0  pmic_arb 557056147 Edge      usbin-plugin\n254:          0  pmic_arb 557187219 Edge      usbin-src-change\n255:          0  pmic_arb 557252755 Edge      usbin-icl-change\n256:          0  pmic_arb 558891156 Edge      typec-or-rid-detect-change\n258:          0  pmic_arb 559022228 Edge      typec-cc-state-change\n259:          0  pmic_arb 559087764 Edge      typec-vconn-oc\n261:          0  pmic_arb 559218836 Edge      typec-attach-detach\n262:          0  pmic_arb 559284372 Edge      typec-legacy-cable-detect\n264:          0  pmic_arb 559939733 Edge      wdog-snarl\n265:          0  pmic_arb 560005269 Edge      wdog-bark\n267:          0  pmic_arb 560136341 Edge      aicl-done\n268:          0  pmic_arb 560201877 Edge      smb-en\n270:          0  pmic_arb 560332949 Edge      temp-change\n272:          0  pmic_arb 711065765 Edge      flash-state-change\n274:          0  pmic_arb 711327909 Edge      ilim2-s2\n277:          0  pmic_arb 612434081 Edge      qg-vbat-low\n278:          0  pmic_arb 612499617 Edge      qg-vbat-empty\n279:         26  pmic_arb 612565153 Edge      qg-fifo-done\n280:          0  pmic_arb 612630689 Edge      qg-good-ocv\n281:          0   msmgpio  93 Edge      fts_ts\nIPI0:       142       Rescheduling interrupts\nIPI1:        10       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:     84949       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm6115/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  1:          0          0          0          0          0          0          0          0   mpm-gic 229 Edge      mpm\n  4:        320          2          1          2          2          1          1          1   mpm-gic  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   mpm-gic  39 Level     arch_mem_timer\n  8:          0          0          0          0          0          0          0          0   mpm-gic 315 Level     ngd_slim_irq\n 14:          0          0          0          0          0          0          0          0   mpm-gic 279 Level     sps\n 15:          0          0          0          0          0          0          0          0   mpm-gic  22 Level     arm-pmu\n 16:          0          0          0          0          0          0          0          0   mpm-gic 221 Level     eud_irq\n 18:          0          0          0          0          0          0          0          0   mpm-gic  35 Edge      apps_wdog_bark\n 20:        245          0          0          0          0          0          0          0   mpm-gic 226 Edge      glink-native-rpm-glink\n 21:          0          0          0          0          0          0          0          0     GICv3 314 Edge      adsp\n 22:          0          0          0          0          0          0          0          0     GICv3 297 Edge      cdsp\n 25:         13          0          0          0          0          0          0          0   mpm-gic 382 Level     mmc0\n 26:          2          0          0          0          0          0          0          0   mpm-gic 385 Level     4784000.sdhci\n 27:        447          0          0          0          0          0          0          0   mpm-gic 388 Level     4804000.ufshc\n 28:          0          0          0          0          0          0          0          0   mpm-gic 307 Level     tsens-upper-lower\n 29:          0          0          0          0          0          0          0          0   mpm-gic 222 Level     tsens-critical\n 30:          0          0          0          0          0          0          0          0   mpm-gic 102 Edge      smp2p\n 31:          0          0          0          0          0          0          0          0   mpm-gic 311 Edge      smp2p\n 32:          0          0          0          0          0          0          0          0   mpm-gic 295 Edge      smp2p\n 46:          0          0          0          0          0          0          0          0     GICv3 339 Edge      modem\n 50:          1          0          0          0          0          0          0          0   mpm-gic 334 Level     pwr_event_irq\n 51:          0          0          0          0          0          0          0          0   mpm-gic 454 Level     ss_phy_irq\n 52:          0          0          0          0          0          0          0          0   mpm-gic 292 Level     hs_phy_irq\n 53:          0          0          0          0          0          0          0          0   mpm-gic  85 Edge      apps-tgu\n 54:          0          0          0          0          0          0          0          0   mpm-gic  86 Edge      apps-tgu\n 55:          0          0          0          0          0          0          0          0   mpm-gic  87 Edge      apps-tgu\n 56:          0          0          0          0          0          0          0          0   mpm-gic  88 Edge      apps-tgu\n 57:          0          0          0          0          0          0          0          0   mpm-gic 461 Edge      tmc-etr\n 58:          0          0          0          0          0          0          0          0   mpm-gic 257 Level     msm_vidc\n 59:          0          0          0          0          0          0          0          0   mpm-gic 195 Level     arm-smmu global fault\n 60:          0          0          0          0          0          0          0          0   mpm-gic 199 Level     arm-smmu-context-fault\n 61:          0          0          0          0          0          0          0          0   mpm-gic 200 Level     arm-smmu-context-fault\n 68:          0          0          0          0          0          0          0          0   mpm-gic 113 Level     arm-smmu global fault\n 70:          0          0          0          0          0          0          0          0   mpm-gic 121 Level     arm-smmu-context-fault\n 72:          0          0          0          0          0          0          0          0   mpm-gic 123 Level     arm-smmu-context-fault\n 73:          0          0          0          0          0          0          0          0   mpm-gic 124 Level     arm-smmu-context-fault\n 74:          0          0          0          0          0          0          0          0   mpm-gic 125 Level     arm-smmu-context-fault\n 75:          0          0          0          0          0          0          0          0   mpm-gic 126 Level     arm-smmu-context-fault\n 76:          0          0          0          0          0          0          0          0   mpm-gic 127 Level     arm-smmu-context-fault\n 77:          0          0          0          0          0          0          0          0   mpm-gic 128 Level     arm-smmu-context-fault\n 78:          0          0          0          0          0          0          0          0   mpm-gic 129 Level     arm-smmu-context-fault\n 79:          0          0          0          0          0          0          0          0   mpm-gic 130 Level     arm-smmu-context-fault\n 80:          0          0          0          0          0          0          0          0   mpm-gic 131 Level     arm-smmu-context-fault\n 81:          0          0          0          0          0          0          0          0   mpm-gic 132 Level     arm-smmu-context-fault\n 82:          0          0          0          0          0          0          0          0   mpm-gic 133 Level     arm-smmu-context-fault\n 83:          0          0          0          0          0          0          0          0   mpm-gic 134 Level     arm-smmu-context-fault\n 84:          0          0          0          0          0          0          0          0   mpm-gic 135 Level     arm-smmu-context-fault\n 85:          0          0          0          0          0          0          0          0   mpm-gic 136 Level     arm-smmu-context-fault\n 86:          0          0          0          0          0          0          0          0   mpm-gic 137 Level     arm-smmu-context-fault\n 87:          0          0          0          0          0          0          0          0   mpm-gic 138 Level     arm-smmu-context-fault\n 88:          0          0          0          0          0          0          0          0   mpm-gic 139 Level     arm-smmu-context-fault\n 89:          0          0          0          0          0          0          0          0   mpm-gic 140 Level     arm-smmu-context-fault\n 90:          0          0          0          0          0          0          0          0   mpm-gic 141 Level     arm-smmu-context-fault\n 91:          0          0          0          0          0          0          0          0   mpm-gic 142 Level     arm-smmu-context-fault\n 92:          0          0          0          0          0          0          0          0   mpm-gic 143 Level     arm-smmu-context-fault\n 93:          0          0          0          0          0          0          0          0   mpm-gic 144 Level     arm-smmu-context-fault\n 94:          0          0          0          0          0          0          0          0   mpm-gic 145 Level     arm-smmu-context-fault\n 95:          0          0          0          0          0          0          0          0   mpm-gic 146 Level     arm-smmu-context-fault\n 96:          0          0          0          0          0          0          0          0   mpm-gic 147 Level     arm-smmu-context-fault\n 97:          0          0          0          0          0          0          0          0   mpm-gic 148 Level     arm-smmu-context-fault\n 98:          0          0          0          0          0          0          0          0   mpm-gic 149 Level     arm-smmu-context-fault\n 99:          0          0          0          0          0          0          0          0   mpm-gic 150 Level     arm-smmu-context-fault\n100:          0          0          0          0          0          0          0          0   mpm-gic 151 Level     arm-smmu-context-fault\n101:          0          0          0          0          0          0          0          0   mpm-gic 152 Level     arm-smmu-context-fault\n102:          0          0          0          0          0          0          0          0   mpm-gic 153 Level     arm-smmu-context-fault\n103:          0          0          0          0          0          0          0          0   mpm-gic 154 Level     arm-smmu-context-fault\n104:          0          0          0          0          0          0          0          0   mpm-gic 155 Level     arm-smmu-context-fault\n105:          0          0          0          0          0          0          0          0   mpm-gic 156 Level     arm-smmu-context-fault\n145:          0          0          0          0          0          0          0          0     GICv3 362 Level     msm_serial_geni0\n146:         70          0          0          0          0          0          0          0   mpm-gic 360 Level     i2c_geni\n147:          0          0          0          0          0          0          0          0   mpm-gic 359 Level     spi_geni\n148:         32          0          0          0          0          0          0          0   mpm-gic 361 Level     spi_geni\n149:          0          0          0          0          0          0          0          0   mpm-gic 209 Level     kgsl_3d0_irq\n150:          0          0          0          0          0          0          0          0   mpm-gic 218 Level     msm_drm\n151:          0          0          0          0          0          0          0          0   mpm-gic 104 Edge      csiphy\n152:          0          0          0          0          0          0          0          0   mpm-gic 105 Edge      csiphy\n153:          0          0          0          0          0          0          0          0   mpm-gic 106 Edge      csiphy\n154:          0          0          0          0          0          0          0          0   mpm-gic 238 Edge      cci\n155:          0          0          0          0          0          0          0          0   mpm-gic 191 Edge      cpas_camnoc\n156:          2          0          0          0          0          0          0          0   mpm-gic 239 Edge      cpas-cdm0\n157:          2          0          0          0          0          0          0          0   mpm-gic 240 Edge      ope-cdm0\n158:          0          0          0          0          0          0          0          0   mpm-gic 242 Edge      csid0\n159:          2          0          0          0          0          0          0          0   mpm-gic 243 Edge      tfe0\n160:          0          0          0          0          0          0          0          0   mpm-gic 244 Edge      csid1\n161:          2          0          0          0          0          0          0          0   mpm-gic 245 Edge      tfe1\n162:          0          0          0          0          0          0          0          0   mpm-gic 109 Edge      csid2\n163:          2          0          0          0          0          0          0          0   mpm-gic 110 Edge      tfe2\n164:          0          0          0          0          0          0          0          0   mpm-gic 241 Edge      ope\n165:         11          0          0          0          0          0          0          0  pmic_arb 588251292 Edge      pm-adc5\n166:          0          0          0          0          0          0          0          0  pmic_arb 592445597 Edge      thr-int-en\n167:          0          0          0          0          0          0          0          0  pmic_arb 574619801 Edge      qcom,temp-alarm\n176:          0          0          0          0          0          0          0          0  pmic_arb 600834208 Edge      bcl-lvl0\n177:          0          0          0          0          0          0          0          0  pmic_arb 600899744 Edge      bcl-lvl1\n178:          0          0          0          0          0          0          0          0  pmic_arb 600965280 Edge      bcl-lvl2\n179:          0          0          0          0          0          0          0          0  pmic_arb 1052836027 Edge      qpnp_lcdb_sc_irq\n180:          0          0          0          0          0          0          0          0  pmic_arb 1026556090 Edge      qpnp_flash_led_fault_irq\n181:          0          0          0          0          0          0          0          0  pmic_arb 1026752698 Edge      qpnp_flash_led_all_ramp_down_done_irq\n182:          0          0          0          0          0          0          0          0  pmic_arb 1026818234 Edge      qpnp_flash_led_all_ramp_up_done_irq\n183:          0          0          0          0          0          0          0          0  pmic_arb 8388736 Edge      pon_kpdpwr_status\n184:          0          0          0          0          0          0          0          0  pmic_arb 8454272 Edge      pon_resin_status\n185:          6          0          0          0          0          0          0          0  pmic_arb 51380354 Edge      pm-adc5\n186:          0          0          0          0          0          0          0          0  pmic_arb 55574659 Edge      thr-int-en\n187:          0          0          0          0          0          0          0          0  pmic_arb 37748865 Edge      qcom,temp-alarm\n192:          0          0          0          0          0          0          0          0  pmic_arb 205521034 Edge      volume_up\n197:          0          0          0          0          0          0          0          0  pmic_arb 101777541 Edge      pm8xxx_rtc_alarm\n198:          0          0          0          0          0          0          0          0   mpm-gic  69 Level     limits_sensor-00, limits_sensor-01\n199:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n200:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n201:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n202:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n203:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n204:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n205:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n206:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n207:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n208:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n209:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n210:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n211:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n212:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n214:          0          0          0          0          0          0          0          0     GICv3 287 Level     dwc3\n217:          0          0          0          0          0          0          0          0   msmgpio  41 Edge      sar\n218:          0          0          0          0          0          0          0          0   mpm-gic  89 Level     l2-cache-pmu\n219:          0          0          0          0          0          0          0          0   mpm-gic  90 Level     l2-cache-pmu\n220:          0          0          0          0          0          0          0          0   msmgpio  88 Edge      4784000.sdhci cd\n221:          0          0          0          0          0          0          0          0   msmgpio  81 Edge      TE_GPIO\n222:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n223:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n224:          0          0          0          0          0          0          0          0  pmic_arb 553648272 Edge      chgr-error\n225:          0          0          0          0          0          0          0          0  pmic_arb 553713808 Edge      chg-state-change\n232:          0          0          0          0          0          0          0          0  pmic_arb 554696849 Edge      otg-fail\n236:          0          0          0          0          0          0          0          0  pmic_arb 554958993 Edge      high-duty-cycle\n237:          0          0          0          0          0          0          0          0  pmic_arb 555024529 Edge      input-current-limiting\n239:          0          0          0          0          0          0          0          0  pmic_arb 555155601 Edge      switcher-power-ok\n240:          0          0          0          0          0          0          0          0  pmic_arb 555745426 Edge      bat-temp\n242:          0          0          0          0          0          0          0          0  pmic_arb 555876498 Edge      bat-ov\n243:          0          0          0          0          0          0          0          0  pmic_arb 555942034 Edge      bat-low\n244:          0          0          0          0          0          0          0          0  pmic_arb 556007570 Edge      bat-therm-or-id-missing\n245:          0          0          0          0          0          0          0          0  pmic_arb 556073106 Edge      bat-terminal-missing\n248:          0          0          0          0          0          0          0          0  pmic_arb 556794003 Edge      usbin-collapse\n249:          0          0          0          0          0          0          0          0  pmic_arb 556859539 Edge      usbin-vashdn\n250:          0          0          0          0          0          0          0          0  pmic_arb 556925075 Edge      usbin-uv\n251:          0          0          0          0          0          0          0          0  pmic_arb 556990611 Edge      usbin-ov\n252:          0          0          0          0          0          0          0          0  pmic_arb 557056147 Edge      usbin-plugin\n254:          0          0          0          0          0          0          0          0  pmic_arb 557187219 Edge      usbin-src-change\n255:          0          0          0          0          0          0          0          0  pmic_arb 557252755 Edge      usbin-icl-change\n256:          0          0          0          0          0          0          0          0  pmic_arb 558891156 Edge      typec-or-rid-detect-change\n258:          0          0          0          0          0          0          0          0  pmic_arb 559022228 Edge      typec-cc-state-change\n259:          0          0          0          0          0          0          0          0  pmic_arb 559087764 Edge      typec-vconn-oc\n261:          0          0          0          0          0          0          0          0  pmic_arb 559218836 Edge      typec-attach-detach\n262:          0          0          0          0          0          0          0          0  pmic_arb 559284372 Edge      typec-legacy-cable-detect\n264:          0          0          0          0          0          0          0          0  pmic_arb 559939733 Edge      wdog-snarl\n265:          0          0          0          0          0          0          0          0  pmic_arb 560005269 Edge      wdog-bark\n267:          0          0          0          0          0          0          0          0  pmic_arb 560136341 Edge      aicl-done\n268:          0          0          0          0          0          0          0          0  pmic_arb 560201877 Edge      smb-en\n270:          0          0          0          0          0          0          0          0  pmic_arb 560332949 Edge      temp-change\n272:          0          0          0          0          0          0          0          0  pmic_arb 711065765 Edge      flash-state-change\n274:          0          0          0          0          0          0          0          0  pmic_arb 711327909 Edge      ilim2-s2\n277:          0          0          0          0          0          0          0          0  pmic_arb 612434081 Edge      qg-vbat-low\n278:          0          0          0          0          0          0          0          0  pmic_arb 612499617 Edge      qg-vbat-empty\n279:          0          0          0          0          0          0          0          0  pmic_arb 612565153 Edge      qg-fifo-done\n280:          0          0          0          0          0          0          0          0  pmic_arb 612630689 Edge      qg-good-ocv\n281:          0          0          0          0          0          0          0          0   msmgpio  93 Edge      fts_ts\nIPI0:        78         40         39         39         34         34         32         32       Rescheduling interrupts\nIPI1:         0          3          3          3          3          3          3          3       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:        86          8          7          7          7          7          7          7       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm6115/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    5 root      0:00 [kworker/0:0-eve]\n    6 root      0:00 [kworker/0:0H-ev]\n    7 root      0:00 [kworker/u16:0+M]\n    8 root      0:00 [mm_percpu_wq]\n    9 root      0:00 [ksoftirqd/0]\n   10 root      0:00 [rcu_preempt]\n   11 root      0:00 [rcu_sched]\n   12 root      0:00 [rcu_bh]\n   13 root      0:00 [rcuop/0]\n   14 root      0:00 [rcuos/0]\n   15 root      0:00 [rcuob/0]\n   16 root      0:00 [migration/0]\n   17 root      0:00 [cpuhp/0]\n   18 root      0:00 [cpuhp/1]\n   19 root      0:00 [migration/1]\n   20 root      0:00 [ksoftirqd/1]\n   21 root      0:00 [kworker/1:0-mm_]\n   22 root      0:00 [kworker/1:0H-ev]\n   23 root      0:00 [rcuop/1]\n   24 root      0:00 [rcuos/1]\n   25 root      0:00 [rcuob/1]\n   27 root      0:00 [cpuhp/2]\n   28 root      0:00 [migration/2]\n   29 root      0:00 [ksoftirqd/2]\n   31 root      0:00 [kworker/2:0H-ev]\n   32 root      0:00 [rcuop/2]\n   33 root      0:00 [rcuos/2]\n   34 root      0:00 [rcuob/2]\n   35 root      0:00 [cpuhp/3]\n   36 root      0:00 [migration/3]\n   37 root      0:00 [ksoftirqd/3]\n   39 root      0:00 [kworker/3:0H-ev]\n   40 root      0:00 [rcuop/3]\n   41 root      0:00 [rcuos/3]\n   42 root      0:00 [rcuob/3]\n   43 root      0:00 [cpuhp/4]\n   44 root      0:00 [migration/4]\n   45 root      0:00 [ksoftirqd/4]\n   47 root      0:00 [kworker/4:0H-ev]\n   48 root      0:00 [rcuop/4]\n   49 root      0:00 [rcuos/4]\n   50 root      0:00 [rcuob/4]\n   51 root      0:00 [cpuhp/5]\n   52 root      0:00 [migration/5]\n   53 root      0:00 [ksoftirqd/5]\n   55 root      0:00 [kworker/5:0H-ev]\n   56 root      0:00 [rcuop/5]\n   57 root      0:00 [rcuos/5]\n   58 root      0:00 [rcuob/5]\n   59 root      0:00 [cpuhp/6]\n   60 root      0:00 [migration/6]\n   61 root      0:00 [ksoftirqd/6]\n   63 root      0:00 [kworker/6:0H-ev]\n   64 root      0:00 [rcuop/6]\n   65 root      0:00 [rcuos/6]\n   66 root      0:00 [rcuob/6]\n   67 root      0:00 [cpuhp/7]\n   68 root      0:00 [migration/7]\n   69 root      0:00 [ksoftirqd/7]\n   71 root      0:00 [kworker/7:0H-ev]\n   72 root      0:00 [rcuop/7]\n   73 root      0:00 [rcuos/7]\n   74 root      0:00 [rcuob/7]\n   75 root      0:00 [netns]\n   76 root      0:00 [rcu_tasks_kthre]\n   77 root      0:00 [kauditd]\n   78 root      0:00 [kworker/u16:1+L]\n   79 root      0:00 [kworker/u17:0]\n   80 root      0:00 [ipa_usb_wq]\n   81 root      0:00 [msm_watchdog]\n   82 root      0:00 [glink_rpm-glink]\n   83 root      0:00 [oom_reaper]\n   84 root      0:00 [writeback]\n   85 root      0:00 [kcompactd0]\n   86 root      0:00 [crypto]\n   87 root      0:00 [kblockd]\n   88 root      0:00 [blk_crypto_wq]\n   89 root      0:00 [irq/28-tsens-up]\n   90 root      0:00 [irq/29-tsens-cr]\n   91 root      0:00 [ion-pool-uncach]\n   92 root      0:00 [ion-pool-cached]\n   93 root      0:00 [system]\n   94 root      0:00 [devfreq_wq]\n   95 root      0:00 [governor_msm_ad]\n   96 root      0:00 [irq/179-qpnp_lc]\n   98 root      0:00 [irq/59-arm-smmu]\n   99 root      0:00 [cfg80211]\n  100 root      0:00 [irq/68-arm-smmu]\n  101 root      0:00 [ipa_power_mgmt]\n  102 root      0:00 [transport_power]\n  103 root      0:00 [ipa_pm_activate]\n  104 root      0:00 [irq/73-arm-smmu]\n  105 root      0:00 [irq/74-arm-smmu]\n  106 root      0:00 [irq/75-arm-smmu]\n  107 root      0:00 [irq/76-arm-smmu]\n  144 root      0:00 [kswapd0:0]\n  181 root      0:00 [irq/77-arm-smmu]\n  182 root      0:00 [irq/30-smp2p]\n  183 root      0:00 [irq/31-smp2p]\n  184 root      0:00 [irq/32-smp2p]\n  185 root      0:00 [mem_share_svc]\n  186 root      0:00 [irq/78-arm-smmu]\n  187 root      0:00 [hwrng]\n  189 root      0:00 [diag_real_time_]\n  190 root      0:00 [diag_wq]\n  191 root      0:00 [DIAG_USB_diag]\n  192 root      0:00 [diag_cntl_wq]\n  193 root      0:00 [diag_dci_wq]\n  194 root      0:00 [MODEM_CNTL]\n  195 root      0:00 [MODEM_DATA]\n  196 root      0:00 [MODEM_CMD]\n  197 root      0:00 [MODEM_DCI]\n  198 root      0:00 [MODEM_DCI_CMD]\n  199 root      0:00 [LPASS_CNTL]\n  200 root      0:00 [LPASS_DATA]\n  201 root      0:00 [LPASS_CMD]\n  202 root      0:00 [LPASS_DCI]\n  203 root      0:00 [LPASS_DCI_CMD]\n  204 root      0:00 [WCNSS_CNTL]\n  205 root      0:00 [WCNSS_DATA]\n  206 root      0:00 [WCNSS_CMD]\n  207 root      0:00 [WCNSS_DCI]\n  208 root      0:00 [WCNSS_DCI_CMD]\n  209 root      0:00 [SENSORS_CNTL]\n  210 root      0:00 [SENSORS_DATA]\n  211 root      0:00 [SENSORS_CMD]\n  212 root      0:00 [SENSORS_DCI]\n  213 root      0:00 [SENSORS_DCI_CMD]\n  214 root      0:00 [DIAG_CTRL]\n  215 root      0:00 [DIAG_DATA]\n  216 root      0:00 [DIAG_CMD]\n  217 root      0:00 [DIAG_DCI_DATA]\n  218 root      0:00 [DIAG_DCI_CMD]\n  219 root      0:00 [CDSP_CNTL]\n  220 root      0:00 [CDSP_DATA]\n  221 root      0:00 [CDSP_CMD]\n  222 root      0:00 [CDSP_DCI]\n  223 root      0:00 [CDSP_DCI_CMD]\n  224 root      0:00 [NPU_CNTL]\n  225 root      0:00 [NPU_DATA]\n  226 root      0:00 [NPU_CMD]\n  227 root      0:00 [NPU_DCI]\n  228 root      0:00 [NPU_DCI_CMD]\n  229 root      0:00 [DIAG_RPMSG_DIAG]\n  230 root      0:00 [DIAG_RPMSG_DIAG]\n  231 root      0:00 [DIAG_RPMSG_DIAG]\n  232 root      0:00 [DIAG_RPMSG_DIAG]\n  233 root      0:00 [DIAG_RPMSG_DIAG]\n  234 root      0:00 [kgsl-workqueue]\n  235 root      0:00 [kworker/u16:2+W]\n  236 root      0:00 [kgsl-mementry]\n  237 root      0:00 [kworker/u16:3+S]\n  238 root      0:00 [kworker/u16:4+D]\n  239 root      0:00 [kgsl_worker_thr]\n  240 root      0:00 [kworker/u16:5+C]\n  241 root      0:00 [kworker/u16:6+N]\n  243 root      0:00 [qseecom-unreg-l]\n  244 root      0:00 [qseecom-unload-]\n  245 root      0:00 [irq/79-arm-smmu]\n  246 root      0:00 [irq/80-arm-smmu]\n  247 root      0:00 [irq/81-arm-smmu]\n  248 root      0:00 [qcrypto_seq_res]\n  249 root      0:00 [scsi_eh_0]\n  250 root      0:00 [scsi_tmf_0]\n  251 root      0:00 [ufs_pm_qos_0]\n  252 root      0:00 [kworker/1:1-eve]\n  253 root      0:00 [kworker/2:1-eve]\n  254 root      0:00 [kworker/3:1-eve]\n  255 root      0:00 [kworker/4:1-rcu]\n  256 root      0:00 [kworker/5:1-eve]\n  257 root      0:00 [kworker/6:1-eve]\n  258 root      0:00 [kworker/7:1-eve]\n  259 root      0:00 [ufs_recovery_wq]\n  260 root      0:00 [ufs_clk_gating_]\n  261 root      0:00 [ufs_clkscaling_]\n  262 root      0:00 [spi0]\n  264 root      0:00 [spi1]\n  265 root      0:00 [bond0]\n  266 root      0:00 [irq/70-arm-smmu]\n  270 root      0:00 [k_ipa_usb]\n  271 root      0:00 [kworker/u16:9-e]\n  272 root      0:00 [irq/167-qcom,te]\n  273 root      0:00 [irq/187-qcom,te]\n  274 root      0:00 [irq/176-bcl-lvl]\n  275 root      0:00 [irq/177-bcl-lvl]\n  276 root      0:00 [irq/178-bcl-lvl]\n  277 root      0:00 [irq/198-limits_]\n  278 root      0:00 [irq/198-limits_]\n  279 root      0:00 [kworker/0:1H-kb]\n  280 root      0:00 [kworker/1:1H]\n  281 root      0:00 [kworker/2:1H]\n  282 root      0:00 [kworker/3:1H]\n  283 root      0:00 [kworker/4:1H]\n  284 root      0:00 [kworker/5:1H]\n  285 root      0:00 [kworker/6:1H]\n  286 root      0:00 [kworker/7:1H]\n  287 root      0:00 [dm_bufio_cache]\n  288 root      0:00 [irq/26-4784000.]\n  289 root      0:00 [memlat_wq]\n  290 root      0:00 [kworker/u16:10-]\n  291 root      0:00 [irq/25-mmc0]\n  293 root      0:00 [irq/82-arm-smmu]\n  294 root      0:00 [kworker/u16:12-]\n  295 root      0:00 [irq/220-4784000]\n  296 root      0:00 [irq/53-apps-tgu]\n  297 root      0:00 [irq/54-apps-tgu]\n  298 root      0:00 [irq/55-apps-tgu]\n  299 root      0:00 [irq/56-apps-tgu]\n  300 root      0:00 [kworker/0:3-eve]\n  301 root      0:00 [irq/83-arm-smmu]\n  302 root      0:00 [uaudio_svc]\n  303 root      0:00 [msm_vidc_worker]\n  304 root      0:00 [pm_workerq_venu]\n  305 root      0:00 [vidc_core_workq]\n  306 root      0:00 [irq/84-arm-smmu]\n  307 root      0:00 [irq/85-arm-smmu]\n  308 root      0:00 [irq/86-arm-smmu]\n  309 root      0:00 [irq/87-arm-smmu]\n  310 root      0:00 [dsi_dma_cmd_wor]\n  311 root      0:00 [irq/72-arm-smmu]\n  312 root      0:00 [irq/88-arm-smmu]\n  313 root      0:00 [crtc_commit:72]\n  314 root      0:00 [crtc_event:72]\n  315 root      0:00 [pp_event]\n  316 root      0:00 [apr_driver]\n  317 root      0:00 [irq/89-arm-smmu]\n  318 root      0:00 [irq/90-arm-smmu]\n  319 root      0:00 [irq/91-arm-smmu]\n  320 root      0:00 [cam-cpas]\n  321 root      0:00 [qcom,cam_virtua]\n  322 root      0:00 [qcom,cam-cpas-c]\n  323 root      0:00 [qcom,cam-cpas-c]\n  324 root      0:00 [qcom,cam-cpas-c]\n  325 root      0:00 [qcom,cam-cpas-c]\n  326 root      0:00 [qcom,cam-ope-cd]\n  327 root      0:00 [qcom,cam-ope-cd]\n  328 root      0:00 [qcom,cam-ope-cd]\n  329 root      0:00 [qcom,cam-ope-cd]\n  330 root      0:00 [cam_cci_wq]\n  331 root      0:00 [cam_cci_wq]\n  332 root      0:00 [ipv6_addrconf]\n  334 root      0:00 [irq/60-arm-smmu]\n  335 root      0:00 [irq/61-arm-smmu]\n  336 root      0:00 [kgsl-events]\n  337 root      0:00 [kgsl_devfreq_wq]\n  342 root      0:00 [irq/224-chgr-er]\n  344 root      0:00 [irq/225-chg-sta]\n  347 root      0:00 [irq/232-otg-fai]\n  349 root      0:00 [irq/236-high-du]\n  350 root      0:00 [irq/237-input-c]\n  351 root      0:00 [irq/239-switche]\n  352 root      0:00 [irq/240-bat-tem]\n  353 root      0:00 [irq/242-bat-ov]\n  354 root      0:00 [irq/243-bat-low]\n  355 root      0:00 [irq/244-bat-the]\n  356 root      0:00 [irq/245-bat-ter]\n  357 root      0:00 [irq/248-usbin-c]\n  358 root      0:00 [irq/249-usbin-v]\n  359 root      0:00 [irq/250-usbin-u]\n  360 root      0:00 [irq/251-usbin-o]\n  361 root      0:00 [irq/252-usbin-p]\n  362 root      0:00 [irq/254-usbin-s]\n  363 root      0:00 [irq/255-usbin-i]\n  364 root      0:00 [irq/256-typec-o]\n  365 root      0:00 [irq/258-typec-c]\n  366 root      0:00 [irq/259-typec-v]\n  367 root      0:00 [irq/261-typec-a]\n  368 root      0:00 [irq/262-typec-l]\n  369 root      0:00 [irq/264-wdog-sn]\n  370 root      0:00 [irq/265-wdog-ba]\n  371 root      0:00 [irq/267-aicl-do]\n  372 root      0:00 [irq/268-smb-en]\n  373 root      0:00 [irq/270-temp-ch]\n  374 root      0:00 [irq/272-flash-s]\n  375 root      0:00 [irq/274-ilim2-s]\n  376 root      0:00 [irq/277-qg-vbat]\n  377 root      0:00 [irq/278-qg-vbat]\n  378 root      0:00 [irq/279-qg-fifo]\n  379 root      0:00 [irq/280-qg-good]\n  380 root      0:00 [irq/166-thr-int]\n  381 root      0:00 [irq/186-thr-int]\n  382 root      0:00 [irq/52-hs_phy_i]\n  383 root      0:00 [irq/50-pwr_even]\n  384 root      0:00 [irq/51-ss_phy_i]\n  385 root      0:00 [usb_bam_wq]\n  386 root      0:00 [core_ctl/0]\n  387 root      0:00 [core_ctl/4]\n  390 root      0:00 [rq_stats]\n  391 root      0:00 [msm_perf:events]\n  392 root      0:00 [cdsprm-wq]\n  393 root      0:00 [cdsprm-wq-delay]\n  394 root      0:00 [irq/92-arm-smmu]\n  395 root      0:00 [irq/93-arm-smmu]\n  396 root      0:00 [irq/94-arm-smmu]\n  397 root      0:00 [irq/95-arm-smmu]\n  398 root      0:00 [irq/96-arm-smmu]\n  399 root      0:00 [irq/97-arm-smmu]\n  400 root      0:00 [irq/98-arm-smmu]\n  401 root      0:00 [irq/99-arm-smmu]\n  402 root      0:00 [irq/100-arm-smm]\n  403 root      0:00 [irq/101-arm-smm]\n  404 root      0:00 [irq/102-arm-smm]\n  405 root      0:00 [irq/103-arm-smm]\n  406 root      0:00 [sb-1]\n  407 root      0:00 [ngd_rx_thread1]\n  408 root      0:00 [ngd_notify_sl1]\n  409 root      0:00 [fts_wq]\n  410 root      0:00 [irq/281-fts_ts]\n  411 root      0:00 [irq/182-qpnp_fl]\n  412 root      0:00 [irq/181-qpnp_fl]\n  413 root      0:00 [irq/180-qpnp_fl]\n  414 root      0:00 [irq/104-arm-smm]\n  415 root      0:00 [irq/105-arm-smm]\n  416 root      0:00 [rot_commitq_0_0]\n  417 root      0:00 [rot_commitq_0_1]\n  418 root      0:00 [rot_doneq_0_0]\n  419 root      0:00 [rot_doneq_0_1]\n  420 root      0:00 [rot_fenceq_0_0]\n  421 root      0:00 [rot_fenceq_0_1]\n  422 root      0:00 [rot_fenceq_0_2]\n  423 root      0:00 [rot_fenceq_0_3]\n  424 root      0:00 [rot_fenceq_0_4]\n  425 root      0:00 [rot_fenceq_0_5]\n  426 root      0:00 [rot_fenceq_0_6]\n  427 root      0:00 [rot_fenceq_0_7]\n  428 root      0:00 [rot_fenceq_0_8]\n  429 root      0:00 [rot_fenceq_0_9]\n  430 root      0:00 [rot_fenceq_0_10]\n  431 root      0:00 [rot_fenceq_0_11]\n  432 root      0:00 [rot_fenceq_0_12]\n  433 root      0:00 [rot_fenceq_0_13]\n  434 root      0:00 [rot_fenceq_0_14]\n  435 root      0:00 [rot_fenceq_0_15]\n  448 root      0:00 [kworker/2:2]\n  449 root      0:00 [kworker/3:2]\n  450 root      0:00 [kworker/4:2-eve]\n  451 root      0:00 [kworker/5:2]\n  452 root      0:00 [kworker/6:2]\n  453 root      0:00 [kworker/7:2]\n  511 root      0:00 [kworker/4:0]\n  555 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm6115/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,974.225247,3.2474174899999997,37.37933196442095,11.511247254405557,26.061467829664135,307.957543633\r\n1,614400,1995.238032,3.247457734375,60.36744196445395,9.07736986830857,33.04922068311627,150.368635359\r\n1,864000,2805.757414,3.247404414351852,77.00415312684939,8.234111952156523,36.43380145219299,106.930751366\r\n1,1017600,3304.619859,3.2474644840801887,88.77915826645427,8.060275686816079,37.219570602367845,90.790179184\r\n1,1305600,4239.863194,3.24744423560049,120.24787793119575,8.50914456093466,35.25618795775253,70.763365702\r\n1,1420800,4614.106863,3.2475414294763514,134.18205954474416,8.725124402562924,34.383463909337245,65.024522892\r\n1,1612800,5237.613045,3.2475279296875,162.97724371950437,9.336089760166395,32.133367149059325,57.284621749\r\n1,1804800,5846.357719,3.239338275155142,199.6514143106764,10.246080558045621,29.27948870794582,51.319849616\r\n4,300000,1568.069915,5.226899716666667,74.76340724746886,14.30496918323372,20.971733399581034,191.336506854\r\n4,652800,3415.37831,5.231890793504903,121.59290883570806,10.682607577715205,28.08303102192246,87.855514602\r\n4,902400,4714.090416,5.223947712765957,161.02306226125896,10.25012794296901,29.26792735360757,63.65627258\r\n4,1056000,5515.010019,5.222547366477273,191.3654686722196,10.413004163857615,28.81012964935391,54.414227583\r\n4,1401600,7331.378299,5.2307208183504565,287.64899022203105,11.77563089217325,25.476342010634603,40.937501234\r\n4,1536000,8028.259473,5.226731427734375,330.0802889013945,12.340415664283679,24.31036426660058,37.386102955\r\n4,1612800,8427.67649,5.2254938554067465,355.5333976274571,12.66219920006355,23.69256676979891,35.614654726\r\n4,1804800,9435.742593,5.2281375182845755,425.04265493087996,13.520951310044062,22.187787909356977,31.810810405\r\n4,2016000,10538.518284,5.227439625,514.2730520769107,14.649274261558142,20.47883018937288,28.485401291\r\n"
  },
  {
    "path": "results/sm6115/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1696.034172322601, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1909.6070692720002, 1926.908219172, 1894.66956275, 1920.4350523039998, 1916.553697334, 1897.2214075550003, 1904.9011485879996, 1882.9383212359999, 1931.616163176, 1885.3087421520004, 1908.1377320219997, 1909.7821713980002, 1911.8127414719997, 1928.322766128, 1893.3356320470002, 1925.5263680760002, 1913.4348814999998, 1912.8782422499999, 1919.19643825, 1911.462180896, 1907.1064690480002, 1903.782380388, 1884.793284423, 1909.694395268, 1891.1366029980004, 1899.7606068879998, 1915.9927575800002, 1907.2813338839999, 1926.7633791009998, 1897.2214075550003, 1923.1110231940002, 1922.466222018, 1897.2214075550003, 1925.172741805, 1902.8215830870004, 1920.3472230720001, 1901.0155516999998, 1880.86525608, 1909.848747708, 1889.4051691359996, 1901.0155516999998, 1904.850728059, 1905.9325009139998, 1926.7315143660003, 1911.1990351680001, 1915.64091444, 1921.728837294, 1892.4302693430002, 1926.5548095600002, 1911.6684081600004, 1899.6348847800002, 1912.7027838, 1872.887571534, 1930.7055130800002, 1887.9003163710001, 1891.1366029980004, 1911.1990351680001, 1899.286013525, 1922.052025626, 1900.7538320999997, 1914.6407178919997, 1922.8462738020003, 1911.58051308, 1916.2308118049998, 1920.1706591519999, 1896.13735348, 1913.698383468, 1885.9576960890001, 1911.492618, 1886.9047495000002, 1895.3540658159998, 1922.6699253200002, 1904.427211204, 1924.5545827149997, 1890.0539742039998, 1920.2589411120002, 1915.0800342030002, 1898.7286900200002, 1919.465761656, 1900.5795017499997, 1927.79265171, 1896.699037075, 1894.4599815, 1907.13887064, 1885.0491611599998, 1921.2880361849998, 1903.7278047500001, 1916.3779420770002, 1918.31632083, 1903.170719145, 1924.4353869999998, 1892.08270525, 1920.73172434, 1906.4065601799998, 1906.231695344, 1897.81843224, 1885.9141057679997, 1919.085619936, 1882.3756285, 1915.2014492600001, 1892.8551011759998, 1913.8205762850002, 1916.2308118049998, 1899.237345224, 1923.0539809959996, 1907.525064924, 1910.7606091519997, 1920.4672418359999, 1898.85026034, 1910.4974634239998, 1886.1738654639998, 1897.2606609999998, 1907.700048405, 1877.801409666, 1919.9382768279997, 1904.4642073699997, 1917.46241643, 1914.4353217950002, 1895.2316930799998], \"power_mean\": 1907.3510073984035, \"energy_millijoules\": 9536.755036992017, \"energy_joules\": 9.536755036992018}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 307.957543633, \"elapsed_ns\": 307957543633, \"power_samples\": [3.5796612459996595, 21.69531647799954, 43.60718783099992, 35.28629845799969, 25.144060484999727, 37.04901177900024, 46.93086523399984, 52.55027648700025, 45.37328062200004, 39.81521226599989, 35.93086296999968, 46.66647208199993, 51.10627195799998, 44.81275755600018, 22.988686057999757, 18.93501835500001, 43.431373445999725, 49.45874973900004, 45.845944273999976], \"power_mean\": 37.37933196442095, \"energy_millijoules\": 11511.247254405556, \"energy_joules\": 11.511247254405557, \"coremark_score\": 974.225247, \"coremarks_per_mhz\": 3.2474174899999997, \"ulpmark_cm_score\": 26.061467829664135}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1876.4672327799997, 1894.5828880119996, 1916.494759365, 1908.1738699919997, 1898.0316320189997, 1909.9365833130003, 1919.8184367679999, 1925.4378480210003, 1918.260852156, 1912.7027838, 1908.8184345039997, 1919.554043616, 1923.993843492, 1917.7003290900002, 1895.8762575919998, 1891.822589889, 1916.3189449799997, 1922.346321273, 1918.733515808], \"power_mean\": 1910.266903498421, \"energy_millijoules\": 9551.334517492105, \"energy_joules\": 9.551334517492105}}, \"614400\": {\"active\": {\"elapsed_sec\": 150.368635359, \"elapsed_ns\": 150368635359, \"power_samples\": [77.20758954600024, 71.39920229100017, 70.39404041800003, 47.71535212800018, 56.37250229099982, 69.92556647100014, 71.13079881099998, 42.731579196999746, 31.37505675600005, 55.26009276600007, 67.81395025799998, 62.18035407599996, 37.83070056600013, 36.65608383500012, 61.06848002100014, 72.33122286599973, 61.53738723599986, 53.05664548799996, 57.375108577999754, 73.24280094599999, 73.94271246599965, 63.56401182600007, 51.38501430600013, 56.28402180099988, 76.20135810600004, 78.87565599199979, 70.39404041800003, 53.88099246599995, 53.88099246599995, 73.97976764100008, 79.6081394759999, 64.4978573440003, 49.652445724000245, 57.108665585999915, 75.00111247599966, 61.06848002100014, 47.04343636999988, 34.51495374599995, 53.588461584000015, 68.63540274599995, 64.63334852999992, 38.389853585999845, 30.17204090700011, 57.485130305999974, 78.4978722210003, 60.514112094999746, 52.96785769799999, 60.514112094999746, 72.93689607300007, 76.63455916199996, 64.94355848100031, 56.84222259400008, 70.95201635600029, 72.42090336599972, 71.21996024100008, 63.939585362000116, 53.43781529099988, 60.24722351100013, 70.572763356, 78.31797575100018, 60.15856531699956, 49.74063017000003, 67.81395025799998, 72.39991157700001, 47.71535212800018, 37.654553165999914, 46.513402641999846, 63.11860745399986, 72.79517034999981, 51.589539320000085, 30.849300244000005, 52.96785769799999, 73.71100792099992, 62.00240291399996, 46.04696244599995, 61.62656190599978, 74.82197408600018, 78.01474451400009, 65.22963044200014, 46.04696244599995, 54.72774172599975, 76.11195999600022, 81.09593905800011, 70.77277430599997, 50.21088456999996, 59.980791928000144, 74.17486640000016, 75.37925248700003, 70.30490867000003, 46.425366218000136, 55.54794785800004, 67.16681288999985, 58.043698332000076, 41.08891793800012, 38.301750051, 54.435141681000005, 70.48363160799977, 59.89167673299971, 36.10124947600025, 29.734357289999934, 62.29351892399973, 74.35394527299991, 60.06945012199981, 58.043698332000076, 59.130940791000285, 74.73217463599985, 78.5685795060001, 67.81395025799998, 51.589539320000085, 59.33368424200012, 78.04905359200029, 75.73764830100004, 60.71235783399993, 49.56380671900001, 69.01492275999999, 79.89610964299982, 75.28942320200008, 62.29351892399973, 47.80344772199987, 69.7469030499999, 75.64827967899987, 52.5248293919999, 44.57622019400014, 40.05894758599993, 63.451274754000224, 69.65780098400023, 48.450585090000004, 32.786304529999825, 43.198286712000254, 76.6691789219999, 66.25189633800005, 51.32380939199993, 56.46143886599975, 78.47866110599989, 76.45536125500007, 62.26955838599997, 54.16951114000017, 61.9136560620002, 73.99532717000034, 79.6081394759999, 63.583326713999895, 49.652445724000245, 60.53452531700009, 68.92539104499974, 78.04905359200029, 73.53198817600014, 49.82926917499981, 52.059130705999905, 72.88488049000011, 61.73524744200017, 41.90830080200021, 35.925221026000145, 55.75131452099981, 72.52649998200013, 62.94053725799995, 35.190639821999866, 34.72330881599987, 68.74678675199993, 70.77277430599997, 52.70194964999996, 49.386983267999994, 68.17138038600001, 75.20005457999991, 70.93066867399989, 53.08300026600023, 58.043698332000076, 71.32640233199982, 77.959105357, 71.14710100200023, 53.43781529099988, 51.7933114260004, 71.97342066599981, 77.04273342600004, 68.83585932999995, 51.88206957600005, 55.84025109599975, 66.72051822299977, 66.43072147800012, 42.37878489799982, 31.496378094999955, 57.77707721999991, 79.68407434400001, 64.96202937800012, 42.819438110999954, 34.81126356600021, 51.146352762000106, 73.90601791200015, 68.09976841799971, 54.638864625999986, 56.48726942999997, 72.39991157700001, 77.65611141000022, 67.25625529499962, 51.412082690000034, 53.991816610000114, 71.88374016600005, 80.26921855499995, 74.55303624599969, 55.66237794599988, 49.85666392200005, 71.41559325000003, 76.48986236999986, 71.50524391499994, 47.74331161200007, 48.097175477999826, 76.39997360999996, 70.21531747999984, 49.20970525800021, 40.530092406999984, 44.782110818999854, 60.35669280000002, 71.14710100200023, 53.34899766600029, 41.0011181939999, 35.01467104199992, 64.14102159300023, 65.609077394, 56.48726942999997, 51.7933114260004, 66.16294229399978, 82.35498715799986, 68.56772332200012, 53.171817891000046, 61.64650058999996, 71.79405966599984, 73.81624829700013, 73.26322845599975, 66.72051822299977, 48.74419381199982, 61.46809197000016, 71.14710100200023, 75.84284403599986, 60.17840313000033, 49.29834426299999, 69.94700335199991, 70.68361287599987, 51.970827725999925, 30.586421987999984, 43.95877383800007, 70.41520939600014, 70.50437082600024, 46.630327578000106, 29.208957018000092, 49.12152081199997, 74.10449950600014, 65.89516310999988, 47.92001641800039, 53.991816610000114, 69.12135143199998, 81.52784973000007, 69.85741216200017, 51.058079463999775, 54.37268910600005, 73.08374850600012, 78.24673235399996, 75.57372807599995, 54.28426778599987, 56.13186002800012, 71.05791008400001, 76.04087953800013, 65.25246242200001, 54.28426778599987, 61.84780581000018, 69.85741216200017, 64.60553344000004, 49.12152081199997, 32.34787851399983, 46.983953849000045, 71.79405966599984, 64.51618034500007, 38.329140560999804, 34.33955481299972, 58.80008577799981, 71.525478066, 65.52015283800006, 55.28168357000027, 67.16681288999985, 80.8846757140002, 68.9929512819997, 52.2589213440001, 56.95206678600016, 74.93102738800008, 76.13076829800025, 70.3255883710001, 60.55829509000023, 56.220826437999904, 69.32124334800005, 70.78941783599998, 67.74221988199997, 49.67978095399985, 48.94424280200019, 72.34753975400008, 68.21051473600005, 46.188635201000125, 32.43529336200004, 48.94424280200019, 69.2104534980001, 66.54209209199985, 40.001662343000135, 32.99057920200016, 54.92696847399998, 76.3100848500003, 57.59902545000023, 50.322452001999864, 63.761456038000006, 71.88374016600005, 75.18025086599982, 61.200936498000374, 52.2589213440001, 63.13731653000036, 74.10449950600014, 77.42033849300014, 62.762009298000066, 50.41115048199981, 65.80575053999996, 76.77343934600026, 72.25782961400023, 67.09954883400019, 50.145509905999916, 71.79405966599984, 70.9682594190001, 48.21344643599991, 38.065193001000125, 46.188635201000125, 69.58909803400002, 67.56367510600012, 47.71535212800018, 31.996867346000045, 41.849819889999935, 74.57217091100028, 66.74257753799975, 48.124837071, 51.439189166000006, 75.91730687100039, 77.38690609799983, 70.03659454199988, 50.79234953599985, 56.042893618000335, 73.54739980900013, 79.99947888299994, 71.34657696600016, 55.13012675099981, 58.06410127100003, 73.800287691, 75.48386915099991, 72.25782961400023, 51.99301329600007, 50.23375352200014, 70.6997671710003, 70.05718489100013, 47.56660680599998, 37.33441841800004, 50.88062283400018, 73.27855132100012, 70.6997671710003, 46.743121886999916, 31.525278322000304, 44.42884133000007, 71.25735636599984, 63.78418584200017, 56.41945965600007, 55.484960881000006, 71.34657696600016, 83.01597680100008, 68.21051473600005, 51.52749214600044, 52.90582049100021, 72.16811947400038, 70.61057625300009, 69.67868922400021, 58.06410127100003, 45.71835205000025, 69.58909803400002, 74.48280228900012, 77.42033849300014, 54.48334663800006, 43.139330610000115, 71.43625746599992, 72.54668927099988, 50.79234953599985, 32.552005290000125, 38.62392913800022, 64.89538907600013, 72.16811947400038, 52.46264331600014, 37.0710114389999, 39.913439858000174, 56.33046360599997, 74.10449950600014, 63.78418584200017, 52.08180108600004, 55.04119017599987, 72.97413057799986, 79.55006672399986, 63.96283275199994, 54.660704185999975, 57.24383499600003, 74.19429895600001, 79.81980639599988, 72.72570901600011, 57.70879256099988, 48.50195689499992, 63.04848082600006, 78.99758111699975, 74.48280228900012, 60.934238483999934, 54.10651358600012, 63.60599700100033, 67.2061265699997, 55.04119017599987, 41.67364918099997, 40.76244623399975, 47.65473208200024, 73.18924206299994, 67.74221988199997, 41.96377178700004, 32.084732785999904, 47.56660680599998, 69.87840243600021, 67.47417322600018, 51.173369886000046, 54.01809226599994, 72.2420022660001, 82.37295068100025, 65.52015283800006, 50.79234953599985, 56.97721388400009, 72.63596904099995, 79.72973921100015, 77.52829207199989, 60.66708301200015, 52.92792756500012, 74.30314371899999, 69.87840243600021, 73.18924206299994, 69.1420609679999, 50.34961799500002, 59.55576074400028, 65.27019217199972, 61.96046453400004, 37.80124544099999, 33.110860487999844, 55.59897404399999, 68.58490188000019, 57.53068151099956, 34.871307101000184, 30.269346020000057, 63.3384847049997, 67.2061265699997, 60.38040305599998, 53.19401373299979, 65.80575053999996, 74.39297300400017, 76.93838423399984, 58.824122396999655, 52.2854635409999, 58.355572674000086, 74.30314371899999, 76.14539390599998, 62.60292855800003, 50.81879245599998, 62.04927074999978, 76.23485118599979, 76.23485118599979, 61.871200554000325, 48.59059590000015, 59.55576074400028, 74.30314371899999, 56.97721388400009, 44.8992431260001, 33.7576107660002, 49.591112114000225, 67.67424272000017, 63.761456038000006, 39.56145476400002, 29.155293708000045, 54.95225360099971, 75.28942320200008, 61.96046453400004, 47.30132247000006, 55.86541703600005, 69.478678274, 79.98614718800013, 57.70879256099988, 51.35043101600036, 60.20251102199995, 72.18818957600001, 78.63789266799995, 72.45694929599995, 56.710592772000155, 52.839080300000205, 62.60292855800003, 74.03411652699992, 70.43127492299982, 66.6531052979999, 47.94807274799996, 56.46143886599975, 68.40623845899995, 64.07033131200023, 43.72275584299996, 30.64872402800006, 50.73048947600023, 68.96333803000016, 65.27019217199972, 31.55844133000005, 34.136631950000265, 61.49178445200005, 73.38748543599968, 57.53068151099956, 42.61046254799999, 60.38040305599998, 71.54152865000037, 75.55845039399992, 62.513634937999996, 45.2768085419998, 57.73288884999988, 70.25243334000038, 79.28032705200008, 68.96333803000016, 49.52553027399995, 59.84626964799986, 68.87374683999997, 72.09844960099986, 70.89909426600002, 50.81879245599998, 66.29567516999987, 66.38514741000017, 51.461197200000015, 36.71904911200022, 41.875430352000194, 63.80273024799999, 66.00635502, 59.357899565000025, 30.823944798999946, 38.738771455999995, 68.87374683999997, 68.49534052499985, 49.06046321000008, 53.39686412599963, 71.79405966599984, 78.69616127800009, 67.01007659400011, 50.172161364999965, 54.68589996099968, 74.58712316100014, 77.4387754280001, 69.60999895600025, 51.84183089099997, 54.863773111, 70.43127492299982, 74.67652127099973, 68.87374683999997, 47.41732537199982, 52.373825690999865, 71.72048887799997, 62.982107023000026, 41.69920051500026, 32.200875714000176, 57.4420826810001, 74.37343734600017, 56.710592772000155, 43.07612475200017, 31.55844133000005, 50.172161364999965, 70.16278267500002, 54.03926886999989, 52.92792756500012, 70.23596734600028, 72.15232176599989, 71.525478066, 57.35302715600005, 58.46857561900015, 67.58471100499969, 76.52270123500011, 79.74725597400015, 59.199638556999844, 50.08388806700009, 59.66837761399984, 70.16278267500002, 72.65154508700016, 71.36256842200032, 46.85933332800005, 50.172161364999965, 68.13801368300005, 62.42434131799996, 38.47464577599999, 38.562386155999775, 56.44397165999999, 68.96333803000016, 56.62156688699997, 34.78329287600013, 32.025536298000134, 71.91942985599985, 74.03411652699992, 52.75023303499984, 51.37286473200015, 71.61515856599999], \"power_mean\": 60.36744196445395, \"energy_millijoules\": 9077.369868308571, \"energy_joules\": 9.07736986830857, \"coremark_score\": 1995.238032, \"coremarks_per_mhz\": 3.247457734375, \"ulpmark_cm_score\": 33.04922068311627}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1891.824175575, 1925.4879676639998, 1903.794645168, 1877.197387416, 1872.9760529409998, 1888.3841690610002, 1913.0075591339998, 1902.381971808, 1883.395469392, 1893.4292301679998, 1913.415973785, 1921.0791117840001, 1902.5568366440002, 1885.242339428, 1896.13116485, 1912.008554775, 1920.4610416320002, 1908.3417133240002, 1897.425856664], \"power_mean\": 1900.449537958579, \"energy_millijoules\": 9502.247689792895, \"energy_joules\": 9.502247689792895}}, \"864000\": {\"active\": {\"elapsed_sec\": 106.930751366, \"elapsed_ns\": 106930751366, \"power_samples\": [96.42153433999965, 86.38708327199993, 69.71544884399987, 64.00339327200027, 88.32221525400018, 89.97272243199973, 85.27913318700007, 74.58712316100014, 62.068082670000194, 86.56793173200026, 89.14975439100022, 69.16281302100037, 51.106956684000124, 59.57920294399992, 86.38708327199993, 79.56706193399987, 67.22750241900007, 50.46467019600027, 57.37700425800017, 87.21444378900014, 84.54651158399975, 64.55626718999997, 68.89440954099996, 86.7378058679999, 92.46409060999986, 89.69208599099989, 72.84960975600006, 77.4521086379998, 81.60486948199969, 91.35649826500025, 94.3049485710003, 72.38269659900016, 67.69066619699993, 80.03381215200011, 84.45617646900018, 91.63668915599987, 83.25354713999991, 66.31294370599994, 80.31636770199975, 83.16327169500028, 68.98357097100006, 58.39916365399995, 52.86451308599976, 70.36193106599967, 90.90379962300017, 77.70824821199994, 54.06471219099967, 50.198850915999856, 79.943685297, 91.36516711599984, 68.98357097100006, 66.40198660200008, 86.4670856600003, 90.25734723599999, 89.31647167799997, 78.65078052299987, 67.69066619699993, 81.3225512219999, 92.19247921800024, 89.89586509599985, 77.09300095399976, 70.91447777400003, 90.81363172099987, 90.43855293600018, 88.05160297799989, 67.78022755199981, 68.80478851599992, 86.11673800999984, 83.04554912599997, 57.757025061999684, 50.84104863599987, 69.62579817899996, 88.11712897100028, 77.82893995599989, 63.44577608899999, 50.198850915999856, 66.223441826, 89.15895872800002, 82.88156490799975, 69.0731919960001, 68.60543271200004, 89.31647167799997, 94.56831686100008, 84.17048209799964, 64.377900576, 70.82522768599983, 90.16720901599979, 95.96811342099977, 89.43021329599969, 68.62600606100023, 71.84499962299992, 88.23216588599985, 95.23507475600013, 90.72299903599992, 64.75645474499993, 66.223441826, 89.43021329599969, 87.77047194599982, 64.1995339619998, 46.06348032000005, 70.73551754599998, 88.49295108599972, 78.09859086000006, 59.045526841999845, 51.95243015799974, 61.97878904999993, 90.25734723599999, 79.29723291000005, 67.04843898900003, 76.98934650399997, 87.8462306429999, 98.25509927400003, 85.5497640430001, 68.15839564599992, 76.63035707599988, 91.45582944099988, 88.788045216, 84.27596949600002, 75.71455093899999, 66.869834696, 84.82823622999967, 89.98646794599972, 86.38708327199993, 68.24798683599988, 65.40278809799975, 83.62957662599979, 88.69796616599979, 61.80065972599982, 53.88729512599957, 55.7331342089999, 73.04783704400006, 87.13847670599966, 64.28848800600008, 52.687214666000045, 60.9803918099999, 79.02786592199982, 85.18876843199973, 78.84767188200021, 68.15839564599992, 77.46971323799971, 94.74935473800019, 90.5421984489999, 75.98393437100003, 68.62600606100023, 87.78052653000009, 91.00344768599984, 87.31898048599987, 78.84767188200021, 68.89440954099996, 79.49397540000018, 87.96108943800004, 90.63283113399984, 82.71282037200012, 66.04489704999992, 73.22749561399974, 92.56347150599981, 71.66592074999994, 51.132656316000066, 49.933031635999896, 74.426108634, 87.40946438599963, 79.58410225499983, 60.801863850000245, 47.175099174000025, 61.35510745800002, 94.31671425399986, 86.76310119799973, 66.13439892999986, 69.17846434800003, 87.75624044500023, 91.18430740099984, 87.21444378900014, 77.6493265969998, 67.80094976999999, 76.82343940199962, 95.05385871699991, 93.76119201100005, 87.96108943800004, 70.37759708999988, 70.46684717800008, 86.02631377999978, 91.83064075399989, 84.467240619, 68.90997210000023, 68.26798155600022, 90.27076517699993, 90.5421984489999, 71.57615113499992, 47.732704169999806, 55.7331342089999, 83.35912389000009, 86.7378058679999, 64.11012139199988, 56.197588805999885, 56.75477728200008, 74.06701456200017, 87.96108943800004, 71.75523000800013, 73.04783704400006, 77.90122403199985, 94.29652734899969, 97.71045152999977, 78.84767188200021, 67.24377800000002, 80.78235823000023, 87.13847670599966, 94.31671425399986, 85.02309003000028, 70.00412886599975, 70.10892672199998, 87.66578638000033, 89.2495317429998, 89.80526224599998, 66.04489704999992, 69.08927342999982, 85.11348462000001, 87.04799280599991, 61.35510745800002, 50.30923254000004, 65.68734851399995, 87.69001299000001, 87.04799280599991, 68.90997210000023, 47.732704169999806, 58.77846013799967, 91.46833720200038, 90.18013249199998, 62.64343111799985, 68.71562708599981, 85.74485606400003, 99.45761009999978, 87.77047194599982, 65.68734851399995, 71.02387092599974, 88.9782771749999, 91.46833720200038, 90.73192564600004, 80.04636055799983, 72.68944123000006, 83.08867115399994, 87.13847670599966, 93.30821672599996, 79.86604756800034, 68.26798155600022, 79.40431073399986, 85.66508057400006, 74.06701456200017, 59.50925681400008, 55.841823401000056, 70.66537123100011, 83.82522043500012, 80.6024480640001, 54.08928250200006, 54.82026909599995, 72.043256746, 86.31129474000022, 86.31129474000022, 71.57615113499992, 74.52962942599993, 92.73570200199993, 94.78180173300007, 79.67422910999971, 65.04535797000017, 79.22405702400033, 91.3781101300001, 92.11032774600017, 87.04799280599991, 67.62176739000029, 65.59830561799981, 92.57550403499977, 94.04474662200005, 87.41893654200021, 70.66537123100011, 68.90997210000023, 87.5994994500004, 84.28697451800008, 63.3961964099999, 50.68947914099999, 70.01921658200013, 91.8386275859998, 75.35521927200034, 57.686919279999984, 51.597496725000155, 71.39707226200017, 90.641263321, 78.39811085400015, 68.17882012599989, 73.88769801000035, 92.73570200199993, 95.70693039399976, 76.82343940199962, 70.01921658200013, 80.51226173400028, 88.2457136160001, 96.07006591799995, 91.3781101300001, 66.15495838700008, 71.57615113499992, 84.28697451800008, 95.33295133200022, 86.77700512599995, 70.57563125599972, 67.53263564199983, 86.86748902599993, 89.35317725599998, 63.48515045399972, 50.86665891600023, 64.95634456199991, 88.88770416000011, 92.02007118599977, 68.89440954099996, 49.49015122600008, 59.33130565200008, 91.2874179700002, 88.9782771749999, 69.824767866, 68.90997210000023, 89.70146786399982, 91.92934938600024, 87.40946438599963, 71.9534572959999, 73.15168443599987, 82.35264449400006, 94.04474662200005, 96.25836841799992, 78.30801383399967, 69.92950644199982, 83.64501346199995, 92.02007118599977, 91.92934938600024, 79.59604042399997, 67.4430444520001, 77.66188901999976, 87.41893654200021, 77.75195620499994, 58.51139343399973, 48.932240040000124, 65.22430244999987, 85.3942715979997, 81.96480806999989, 59.33130565200008, 44.244825582999965, 66.6182263820001, 90.99443230799989, 79.77635341399991, 66.52866502699999, 70.84439097599989, 85.45939928799976, 95.3137736719998, 82.53273243299986, 66.06542667199983, 71.21753303199989, 88.52634105399989, 98.46502231399995, 89.90869922000002, 67.82079562100034, 64.22071767300008, 87.32842300199991, 96.25836841799992, 85.30431108199991, 71.30730264700037, 65.4193018579997, 89.72789863300022, 81.99200566500008, 62.84324867799978, 49.95453670199959, 61.55522208799994, 91.6576492260001, 82.72837624199997, 60.90909727399958, 48.84396674200002, 66.79688980300011, 89.26257440599966, 75.91191679399981, 66.6182263820001, 71.39707226200017, 92.46409060999986, 91.56739266599993, 76.37386242999969, 69.66129612600002, 80.15244140200025, 89.35317725599998, 90.55060099599996, 87.14786009400018, 70.48635148599988, 75.55246594000005, 90.36974128099996, 90.279543891, 75.82193872400012, 63.48515045399972, 80.6143443960002, 86.68652122599974, 63.863865411000006, 51.15417165400004, 61.19884440600026, 79.8823449060003, 85.48469582800021, 60.178389282000126, 48.755238426999995, 68.57154036599991, 89.72789863300022, 83.19426440100005, 66.06542667199983, 70.19817681000018, 85.3942715979997, 96.70497038999997, 86.50601744599999, 64.86687232200006, 69.01948296599994, 89.63773073100015, 91.47667086600018, 91.6576492260001, 74.90640064300032, 72.24121613099987, 82.45792350600004, 91.10649873800003, 88.52634105399989, 77.66188901999976, 69.66129612600002, 82.45792350600004, 79.79215857599979, 68.55228893400022, 53.73432933799995, 59.443060005000234, 89.26257440599966], \"power_mean\": 77.00415312684939, \"energy_millijoules\": 8234.111952156523, \"energy_joules\": 8.234111952156523, \"coremark_score\": 2805.757414, \"coremarks_per_mhz\": 3.247404414351852, \"ulpmark_cm_score\": 36.43380145219299}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1897.7864411950002, 1906.4697238500003, 1900.1945880240003, 1877.530892373, 1878.9934566480001, 1902.685358754, 1902.184245207, 1887.8530578749996, 1874.0467867399998, 1884.0206454780005, 1895.7985664639998, 1915.7626947059998, 1905.823033089, 1888.5826729020002, 1919.047920888, 1917.8169420300003, 1911.5115006720002, 1887.2063374319996, 1892.454720318], \"power_mean\": 1897.1457676128948, \"energy_millijoules\": 9485.728838064475, \"energy_joules\": 9.485728838064475}}, \"1017600\": {\"active\": {\"elapsed_sec\": 90.790179184, \"elapsed_ns\": 90790179184, \"power_samples\": [101.14142400600008, 81.81191772600005, 83.2841362590002, 100.85396128999992, 109.32666843399988, 99.57101016399997, 79.9725312359999, 88.90109226599998, 99.85363470599987, 108.1391029859999, 97.27805610600012, 87.05781072600007, 80.34415913200019, 97.18706637599985, 102.52044093599989, 99.11655008099979, 77.21247686099969, 81.07988840099961, 99.48966720999965, 95.71372067400011, 71.88235965400008, 59.0870386470001, 81.81191772600005, 102.78873694799995, 89.63773073100015, 68.84012196599974, 66.81728444800001, 81.63182978700024, 104.27169144599952, 94.60738466099974, 80.52412842600006, 98.55557491800005, 107.29229297699999, 100.39935233799974, 81.81191772600005, 84.03060378800001, 98.38421391500015, 109.15263721899987, 101.14142400600008, 79.34215191399994, 82.18747077000012, 101.05025585099975, 101.42310550799994, 100.59535013399977, 82.09716548999995, 80.89985959, 100.29870678199995, 96.54109043099993, 77.67872080200004, 60.374709302000156, 75.10349844200005, 99.39902575400015, 94.60738466099974, 74.36763377899979, 62.95005061200004, 77.12287155900003, 102.06477061999999, 94.426109494, 81.72164228099996, 81.81191772600005, 104.53718213399998, 107.95658107400027, 92.67367889100001, 78.96633198200016, 86.51565783000024, 100.22669231800023, 103.80828971100004, 98.75316884300037, 83.47508195, 78.32463723000023, 104.91766739099967, 106.48234534000017, 100.135553803, 86.42514428999993, 77.49898879800003, 97.37465693800004, 96.45059699700005, 78.14484570900004, 63.506554469999855, 68.01530443800016, 98.11153321899997, 93.2293094239999, 75.7451931940002, 58.90857035699992, 71.97218893900003, 98.9348594620003, 94.98112550199994, 79.61224841000035, 82.36761822599965, 101.86936665899998, 103.26150335900002, 93.77277898999955, 81.8267127539998, 86.05452598600004, 98.29316470999993, 105.46851345299979, 103.07892914900003, 84.12099837800042, 79.43233824400022, 95.71372067400011, 97.00555353000004, 101.42310550799994, 86.87678364599992, 80.07397386800017, 92.3114848810003, 97.46567630800018, 85.31815549299995, 62.50344628799985, 76.0314211729999, 98.20211550499971, 92.22070360599969, 69.68007232599962, 55.219804810999904, 72.25493844599987, 100.04488266500016, 94.89069123800004, 75.56563935199983, 82.92372231299987, 102.42441267000004, 105.93164721599987, 96.54109043099993, 73.4524531059999, 85.96404208599961, 101.88278319399978, 106.20850657200003, 97.46567630800018, 78.60616834300004, 80.71983077899995, 103.72472638999989, 102.43735280500005, 98.57101115299997, 86.51565783000024, 79.25196558399989, 93.60319870300009, 92.3114848810003, 67.7468121899999, 61.4836737669998, 88.82343091500024, 97.37465693800004, 85.49906362299998, 68.48231976600005, 61.30542579799999, 81.18091551300017, 91.6698492569999, 93.2293094239999, 83.3847171949999, 86.2445813820002, 106.74544027799948, 101.14997921999998, 83.3847171949999, 81.8267127539998, 103.81604332999973, 101.88278319399978, 101.33237520000012, 93.04768720399966, 79.34215191399994, 94.89069123800004, 107.77405916200019, 105.10347638999974, 79.713572634, 78.14484570900004, 103.07892914900003, 94.33523890899983, 72.54213241800016, 62.59285885799977, 71.52350317700007, 97.83885252300001, 98.73761365799987, 71.52350317700007, 65.99221547499974, 80.1637271919999, 102.06477061999999, 91.11424890599983, 79.16224174800027, 85.87402220600006, 101.24117720999993, 108.40637712600005, 94.33523890899983, 81.36146640300012, 87.71257734999972, 98.48039937900035, 107.03673652599991, 101.88278319399978, 80.3593103579999, 78.42631769399986, 98.48039937900035, 103.5425608019998, 97.7478033179998, 77.22915977400021, 83.29481584900009, 100.02593731799993, 86.33463075000009, 69.769812301, 61.127177829000175, 79.79215857599979, 101.88278319399978, 96.62115604200017, 65.08241435499986, 63.14924352899993, 83.57955796200008, 106.20850657200003, 90.29166456199982, 75.4756316419996, 88.07440493299987, 98.37400294400004, 104.81865650199984, 95.53232686199999, 74.0087633850003, 86.70972651600005, 103.451712154, 110.72043807900036, 102.623429902, 78.42631769399986, 81.64656529799981, 101.70079576800026, 106.10674256700008, 99.68079598200006, 83.02418499300006, 78.33662354000012, 98.48039937900035, 93.24030077399993, 79.07205541799999, 63.14924352899993, 70.05282982199992, 96.37002526200013, 96.54109043099993, 79.07205541799999, 63.238685933999705, 71.16510736299983, 89.92982609800015, 96.55153810800016, 88.08706050599972, 84.31149940800015, 94.50974474900022, 107.85107027799995, 95.98604454600013, 83.1140863390001, 81.18091551300017, 94.97040099799983, 106.85427413100024, 100.5041819789999, 82.93382023799995, 73.27307742599987, 94.15396374199963, 103.36039521399971, 99.12616693800032, 93.88181798999972, 76.31365254299976, 88.82343091500024, 104.73890792399993, 83.20445109399975, 68.76557488200001, 63.61655512199968, 86.06401847400002, 98.02048401399975, 83.48962693400017, 66.65802027099994, 62.68227142800015, 81.73687057800021, 99.590124844, 84.86681290199999, 79.713572634, 92.49258188600038, 101.59632972300005, 102.52044093599989, 92.03960660100006, 80.3593103579999, 93.24030077399993, 100.41348135300018, 109.3373182859998, 98.9444168020002, 78.71223508599996, 84.04069043199979, 102.16451638400031, 106.58034601099985, 101.51880834200006, 82.38263813700019, 78.98233158200037, 98.38932053400003, 96.46054837799988, 70.51942915599989, 67.76625546599985, 74.1155853759999, 101.51880834200006, 95.6333573249999, 67.38912902400034, 59.66173408999998, 79.80378860400015, 100.69492463400024, 93.88181798999972, 71.62730841599978, 87.07097136599964, 104.64753150899969, 106.66149096599975, 93.24030077399993, 78.24646704499992, 88.55199764299982, 98.29870876000018, 107.95900750600026, 99.2260381609999, 79.62381931000027, 89.19345573099986, 101.98200145400006, 100.87732061400015, 99.49898632899976, 78.15631054999994, 83.21890672599966, 98.9444168020002, 92.23225000599973, 68.96353314099974, 64.72520576899979, 85.4225307459999, 93.6096722379998, 90.57131382600028, 72.36235489799992, 61.32694748599988, 89.56752254599996, 101.98200145400006, 88.64263032800022, 82.66318938199993, 88.26780157600001, 101.98200145400006, 103.34852349400012, 92.69618680600024, 81.1959651059999, 87.17006821399991, 102.16451638400031, 105.9346678039999, 96.92049361999989, 80.37028831199996, 75.95384568600002, 97.47512262199984, 103.82384831599961, 99.95857563599975, 83.95026620199997, 73.46999652099998, 103.82384831599961, 93.6096722379998, 72.36235489799992, 61.415872042000046, 72.54213241800016, 103.08691268599978, 93.51926765599978, 70.16069186599998, 61.87893387600002, 71.62730841599978, 98.76219944199988, 94.16488634599978, 80.55037625099999, 82.75355413699981, 99.49898632899976, 110.3428710510002, 98.11655107000024, 81.28627038599984, 85.79294202599976, 101.70869704600022, 103.91472664599996, 96.6479022760002, 94.16488634599978, 81.9318890759996, 83.0381175460002], \"power_mean\": 88.77915826645427, \"energy_millijoules\": 8060.275686816078, \"energy_joules\": 8.060275686816079, \"coremark_score\": 3304.619859, \"coremarks_per_mhz\": 3.2474644840801887, \"ulpmark_cm_score\": 37.219570602367845}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1914.1747309619998, 1915.932771632, 1901.108539352, 1881.7736859679999, 1901.491756228, 1914.640402664, 1912.0930192649998, 1893.4978305600002, 1884.6484790310003, 1918.243778376, 1908.753502845, 1890.7991516039997, 1886.2885305, 1881.7736859679999, 1899.3193647960002, 1899.7326771570001, 1896.183061614, 1879.1106304180003, 1878.5554338319998], \"power_mean\": 1897.7958438301052, \"energy_millijoules\": 9488.979219150526, \"energy_joules\": 9.488979219150526}}, \"1305600\": {\"active\": {\"elapsed_sec\": 70.763365702, \"elapsed_ns\": 70763365702, \"power_samples\": [118.90872822300003, 126.72604541399983, 115.78158068999983, 91.04287475600017, 97.84378160600022, 126.72604541399983, 129.85863616200027, 111.18382894199999, 99.41250176400013, 103.91792597999984, 126.7298558089999, 129.8526871170002, 114.95228686199994, 111.91684295399978, 123.78180848999978, 139.51783085000034, 128.197365471, 113.11188954900013, 116.70100564900008, 131.5074738190001, 138.1259135700002, 135.36727962400005, 109.71423016799986, 112.19578969300005, 133.52801265799985, 143.277014646, 130.76991250399965, 111.55037954199997, 112.92877441199994, 135.92030173699982, 124.6090193460002, 106.495467362, 94.81611765299999, 108.88033424100013, 129.66802842800007, 121.85163175600019, 98.77128033999998, 96.00653295599977, 120.01174000999981, 131.60012982399985, 112.28755298800002, 113.66556628200033, 124.51639561399998, 135.9259496029997, 135.74081633399987, 119.45791827000016, 115.41440371400017, 131.96376962399995, 131.5074738190001, 131.60012982399985, 126.99803949600005, 112.1044969789998, 120.1936977920002, 133.98837850299992, 137.1139207619999, 120.56502982100005, 109.43976710399988, 124.24065190600004, 128.65291555000022, 118.449368112, 99.9667437600001, 92.70283040000004, 109.98922577500002, 131.41529297299985, 129.8526871170002, 96.38486675700005, 89.85807430799991, 110.35545159199978, 132.51640477800015, 125.254489014, 107.04516358600017, 117.5299467780003, 132.9871189449998, 140.53110154599995, 122.861307678, 111.733376034, 123.50300250700002, 137.03229178199967, 135.73457320700004, 130.67728633399997, 110.81795421400011, 118.449368112, 133.98837850299992, 137.20684450199974, 130.49250899999993, 115.32296297799985, 115.13913881799999, 135.92030173699982, 121.85163175600019, 106.12995433000015, 89.20521899400023, 107.68256360199985, 132.60912025800008, 121.11451450699974, 104.28961596599993, 94.54370442900017, 114.49381801899995, 132.97249317, 124.88600253999994, 113.29921697400005, 115.6896686099999, 133.90475965800033, 139.97825768500024, 124.05584844300006, 108.79441646999999, 116.51753418800013, 131.22998096300012, 131.96376962399995, 131.32263696799987, 111.92097038900033, 108.14906583600009, 129.2061443550001, 137.20684450199974, 133.52497949699978, 112.19578969300005, 111.45911650999983, 135.64848766000023, 122.95416861600006, 104.38102221600002, 91.41634710999983, 110.26377760700007, 132.97249317, 128.011812534, 103.46198109899979, 92.61195981500009, 106.12995433000015, 132.60912025800008, 128.011812534, 107.41637814499995, 118.35730724700034, 135.64848766000023, 139.05401731800043, 126.26490373999991, 114.9557860020002, 125.52713519600024, 131.77887364499975, 143.91241320599988, 133.61775445200033, 112.56207340500032, 112.84104489600008, 127.82727249000027, 132.42416476199992, 131.04514411200012, 124.70175930300002, 108.24065051100001, 115.59452019499963, 130.49250899999993, 124.1483233060003, 100.61594740100008, 91.14437947800002, 112.28716533299985, 135.64218516899973, 122.21657869200021, 104.10727221599996, 95.6485562700002, 117.06918510000014, 137.4766699620002, 125.34283283100012, 105.94743241800029, 119.45791827000016, 132.97249317, 138.3195467219998, 130.86030726100012, 110.54331303000004, 113.02421955000023, 133.0652382899998, 139.96042517099977, 134.07366507100005, 114.77243318600017, 112.65386634000015, 131.6861879999999, 138.67417947599984, 132.60912025800008, 119.27619452599993, 108.89084097600016, 128.46831637800005, 124.24065190600004, 116.15011961699975, 100.15273306200015, 98.22538400400026, 116.05861971100012, 129.11357766000037, 122.12481242400008, 97.48901404199978, 97.48901404199978, 117.80588627099996, 131.6861879999999, 124.70175930300002, 114.40240696499995, 116.24209117200007, 134.36129189000007, 138.12193124400005, 124.05646818600007, 110.909656606, 114.9557860020002, 132.33144928200022, 138.3074208370001, 130.3998828299998, 112.19584313099995, 107.23373758800017, 129.93933936500025, 133.432680311, 132.69473342600008, 114.77243318600017, 105.6734149460001, 126.3523289159998, 133.52497949699978, 108.15405453599965, 94.27129120499967, 99.32976087599991, 127.18201120799995, 126.3523289159998, 106.77105734600013, 92.33981406299972, 100.79799434400002, 127.08953382299978, 125.80328812799985, 108.42842824799982, 115.41341794599998, 126.81361848599977, 130.21510549599998, 130.49396766900009, 123.13475410100023, 111.09265309800003, 123.22657953899966, 134.7188668360002, 141.79921823099994, 122.677834416, 111.00091963799991, 115.96664815600025, 129.75462154800016, 137.1982865060004, 130.9524881069999, 109.62347008100005, 115.50488816999973, 129.47730739600001, 128.191180346, 104.936777291, 93.99887798100008, 107.60049711600027, 132.33144928200022, 125.89570603800007, 97.39837258600005, 92.80371082600027, 114.77243318600017, 134.62603240600038, 125.80328812799985, 111.28003906700019, 119.55208313399976, 130.30725665999967, 140.9823137660003, 128.2837172059999, 107.5089124409999, 114.58860902599986, 136.09747088699987, 138.67417947599984, 131.40860637600008, 113.85271500300018, 119.6454183310002, 139.77475741600028, 135.64218516899973, 130.76765125600014, 110.35990538999977, 110.909656606, 132.05377830600037, 128.0986434859999, 105.85593685799995, 94.73500980600011, 114.68052110600024, 127.82727249000027, 121.20758281600001, 96.75317082100014, 92.98504550999996, 120.37802142099986, 126.0754603559999, 121.94033384399995, 113.7601736319998, 119.73585140199998, 130.9524881069999, 135.83049962600012, 123.31887830400001], \"power_mean\": 120.24787793119575, \"energy_millijoules\": 8509.14456093466, \"energy_joules\": 8.50914456093466, \"coremark_score\": 4239.863194, \"coremarks_per_mhz\": 3.24744423560049, \"ulpmark_cm_score\": 35.25618795775253}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1883.9535603479999, 1905.21097966, 1910.4531853120002, 1889.1075136799998, 1892.502596743, 1905.7645417790002, 1918.685767518, 1914.543087996, 1883.3119543639996, 1888.2046331039999, 1904.94738834, 1916.271708324, 1916.7406518900002, 1893.00463584, 1904.8598254700003, 1911.6523660519997, 1905.21097966, 1912.675138488, 1905.1229654350002], \"power_mean\": 1903.2749200001579, \"energy_millijoules\": 9516.374600000789, \"energy_joules\": 9.51637460000079}}, \"1420800\": {\"active\": {\"elapsed_sec\": 65.024522892, \"elapsed_ns\": 65024522892, \"power_samples\": [132.32470417800005, 125.3421464539997, 131.8688228100002, 151.6256986740002, 145.83708673800015, 135.085952033, 121.94110094100006, 138.02451909600018, 141.33436456200002, 131.2237103970001, 113.7601736319998, 107.69692162199976, 127.27448859299989, 150.52648573500028, 144.37771153599988, 110.26846324199983, 103.37742846600008, 131.2237103970001, 152.55079387099977, 134.25564683400012, 120.01024759500024, 133.33990535600037, 144.45367052100005, 154.95966451799995, 138.5722836299999, 119.46159054600002, 127.08863791800013, 144.54698094600008, 156.0345747600004, 143.719582512, 126.536092242, 135.7268480250002, 142.06791499599967, 150.2462305590002, 142.52703301200017, 127.72944514200026, 130.94612877300028, 141.78881847599973, 136.09366575000013, 122.85833113300009, 104.38939010600006, 122.95015657099998, 146.10480363499983, 138.4933872669999, 116.79356396400021, 104.66331822600023, 125.61417078599993, 149.69475601800013, 136.73447297400025, 124.69664289799971, 132.05377830600037, 145.28489543399996, 156.34023118799973, 144.91926561600008, 122.39778396199995, 125.06536666199986, 147.2159269419999, 149.05391915400014, 145.0053533219998, 127.54484597000032, 124.97342269, 148.12887855400004, 151.6256986740002, 146.10480363499983, 131.95419931399965, 124.23607107099997, 144.26752818599994, 146.38452386700033, 125.89570603800007, 104.75431489599987, 116.4282891080004, 143.53349930499985, 145.39576646399996, 123.77959585199983, 112.38287281800012, 114.95465233799996, 132.13921393799978, 144.26752818599994, 133.51778934300023, 135.44864268900028, 135.90829480200023, 149.71483630199987, 149.80063144199994, 134.99308776799967, 126.62809538399983, 135.54153659400004, 148.96040027400022, 151.6256986740002, 142.06188257799977, 126.44361485700006, 129.47552115400003, 143.719582512, 149.60120749800012, 140.50304766600016, 124.97342269, 126.44361485700006, 142.43381170199973, 147.596325557, 120.65527065600031, 106.59426088200007, 122.30548519699983, 143.64377649999983, 144.54698094600008, 127.08953382299978, 102.45871492200013, 114.77076889799991, 142.34106844999997, 142.88856559599958, 124.23607107099997, 125.52172323599984, 144.5576744880002, 153.02738496000006, 144.74375769500034, 135.35574878399984, 124.0561975239998, 134.52971889699984, 150.70030183400013, 153.6358991219995, 145.464085179, 126.16665694499989, 131.95419931399965, 145.74371664300043, 149.41459019400008, 149.1344243699998, 135.2633312580001, 124.88100477999978, 140.05349769600025, 140.41039326600026, 133.97761961800006, 111.46291185000018, 105.03435365000018, 130.02782869299972, 144.28493879599978, 135.8153710619997, 119.55326815599983, 104.206458656, 120.74748030600017, 145.37071508400004, 142.44020299099998, 131.4061963380002, 128.28190150800015, 141.985064148, 151.00155688200016, 143.8191622559998, 136.54904289800038, 126.99613069799989, 147.57689494199985, 151.99022892199991, 149.41459019400008, 137.83896998600017, 123.59535261499991, 132.69190797800024, 149.9659753829999, 153.4723307669999, 137.37438172600014, 122.48960939999984, 132.59913302299992, 155.84736384200005, 134.52971889699984, 123.59535261499991, 104.38939010600006, 123.411114946, 145.27782380999975, 135.72244732199988, 119.64200105199984, 109.53645211399999, 131.22076537800012, 152.6444615360001, 131.95419931399965, 121.84883181600003, 132.23195905800003, 146.76887240400015, 155.039365998, 141.14804089199993, 125.33730222599957, 133.23985147899975, 146.4699277599998, 148.68032321799978, 146.65630777399997, 133.23985147899975, 122.7662351859999, 138.2010671539997, 144.47096248599996, 145.27782380999975, 141.6029134309997, 126.62705060999997, 131.12852536199966, 145.37071508400004, 139.94521086600002, 116.15029066200009, 108.52526275299988, 128.828087976, 148.3067272820001, 140.59002538799996, 119.09034031299984, 104.1154619859999, 122.7701035409998, 149.4990433859998, 140.03834286600022, 124.23607107099997, 125.06536666199986, 143.91241320599988, 153.1118391670002, 142.52703301200017, 120.65134889399997, 129.56549898599974, 149.87239702800002, 153.08848628199985, 143.52248033099977, 126.71908343399991, 128.7379612750001, 146.30297957100015, 148.21368798599974, 145.27782380999975, 129.75033583699997, 122.95041890599987, 145.27782380999975, 138.01498177400003, 120.74358818399992, 109.26181092999968, 116.33435272199972, 136.63706082599992, 139.8525564659999, 127.26770993799983, 105.95431466299988, 115.32147622600019, 141.68947539600003, 143.44021851999992, 129.19811764999986, 131.31348085799982, 142.99218344600013, 153.20550683199986, 142.52703301200017, 123.86699255600024, 129.01286530999982, 146.4699277599998, 146.4699277599998, 145.0910836200003, 133.60675797199997, 123.22639250799989, 142.15462583, 151.52237094399993, 146.37649819000012, 131.49142494599982, 119.274227226, 142.4232672659998, 146.92411830599985, 122.48972286599997, 115.87722437199977, 114.589904725, 127.08263621800006, 143.52248033099977, 126.80597473399985, 109.71900333800022, 108.98716974599984, 137.18883261600013, 143.80145457599997, 128.36805078800012], \"power_mean\": 134.18205954474416, \"energy_millijoules\": 8725.124402562924, \"energy_joules\": 8.725124402562924, \"coremark_score\": 4614.106863, \"coremarks_per_mhz\": 3.2475414294763514, \"ulpmark_cm_score\": 34.383463909337245}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1892.5676916480002, 1881.8847107600002, 1887.246775396, 1909.131663392, 1898.1892193940002, 1894.2380764179998, 1880.723050126, 1877.6777276379999, 1912.3460590460002, 1901.052936216, 1893.300669711, 1902.5189769, 1913.5211466849998, 1917.408500707, 1906.818188715, 1909.15623964, 1906.001152906, 1902.136950114, 1915.1000674440002], \"power_mean\": 1900.0536738345263, \"energy_millijoules\": 9500.26836917263, \"energy_joules\": 9.50026836917263}}, \"1612800\": {\"active\": {\"elapsed_sec\": 57.284621749, \"elapsed_ns\": 57284621749, \"power_samples\": [170.64358632200015, 158.21924286599983, 156.4766996610001, 167.1252861270002, 185.51006598599997, 179.07907470600003, 158.86393835399986, 156.84013018600012, 173.00931582600015, 171.90867893099994, 176.86484766600006, 169.9828420859999, 151.78914277000013, 164.31802493100008, 166.39093622899986, 160.8837112509998, 143.33585948099994, 136.08011521000003, 165.55759641800023, 172.1758067400001, 161.5284365739999, 140.7656238709999, 135.3425556940001, 149.8592700019999, 175.39055998099957, 170.6233830059998, 157.38709916999983, 158.68825319099983, 172.85341979400005, 182.503917042, 169.69973523800013, 154.26568107499997, 155.46161787100004, 174.840206458, 178.43428986599974, 173.64979761799987, 155.00419281799986, 156.74667650599986, 176.20181631599962, 178.51036616200008, 172.3646203379999, 152.2468646299999, 150.50396548999993, 176.86484766600006, 171.81454450499973, 146.457780812, 134.79511604999993, 149.1252098550001, 176.03098264499977, 166.57921573, 147.008927738, 136.3585880180001, 147.653533874, 172.72576338599993, 162.719470194, 152.43383825799992, 161.8099019780002, 174.14352558600035, 179.64778324999997, 167.6759948639999, 159.22273942599986, 161.79695085799972, 168.96105349899995, 178.60531322199995, 170.98485304300016, 152.79353051399994, 156.84013018600012, 170.34018738999998, 177.77084280100007, 170.89074810499983, 150.86813832999974, 154.72313581000003, 174.01076254600002, 169.51115892999997, 146.91543869300017, 138.83584041300014, 154.16102179400036, 177.41465556899993, 170.60746313699997, 145.8173581479998, 138.00972050600012, 152.05941035, 179.24573588600015, 166.39093622899986, 152.88728729399986, 163.18951968300007, 178.45647259199995, 182.86417007399996, 170.26594893399988, 150.22353219399997, 163.9103848640002, 176.48590311600037, 180.79565396999988, 171.0585577229997, 152.69977373400025, 160.31999357099994, 174.3673362420002, 176.58076086599976, 173.36615641000003, 153.89137827299987, 154.9927196609999, 176.9411908500001, 170.34018738999998, 145.63049900800002, 133.6953691929998, 146.91543869300017, 169.868356338, 168.67803600300022, 149.03211138899974, 133.96519848300022, 151.32161724300022, 179.96576434000008, 169.3225826219998, 155.27386602100023, 153.53192326499993, 174.4834848659998, 181.6730074379998, 175.21879422599977, 149.392190109, 157.38709916999983, 175.84132681500023, 181.6298747730002, 170.70156807500007, 161.51491331400007, 151.87243672199997, 171.0585577229997, 182.9148144579999, 177.67641233099994, 161.42073981899966, 148.2003783780001, 172.25333783100018, 175.55732936699997, 155.63299427699985, 147.008927738, 135.70865918699997, 157.0117208820002, 176.29667406599992, 157.0117208820002, 142.41604333700025, 137.91664798100032, 164.81918173500003, 178.51036616200008, 163.5343012200001, 158.75343233599983, 161.34014925400015, 176.24179987599973, 180.74348181999994, 163.5343012200001, 155.44566471400026, 163.72234304200015, 174.6336322159998, 178.77133944599973, 175.6521572820002, 157.5622427909998, 153.89137827299987, 171.0585577229997, 178.77133944599973, 172.34753162099992, 163.3457759999999, 152.23195144200008, 159.30380541800014, 173.63229318599974, 162.1552175700001, 142.32324091500004, 136.72956720399998, 164.89858454600017, 176.9411908500001, 157.10568592200002, 140.30062230600015, 139.6603180499999, 160.22587974600015, 172.25333783100018, 164.53669918299988, 154.16102179400036, 167.86439301000019, 179.36342897799977, 175.7687807909997, 168.77205208900023, 150.76039441100033, 164.27265673300008, 176.29667406599992, 181.06076271600023, 172.3263005429999, 153.51659436199998, 162.06101443499983, 172.893582959, 175.91821596599993, 176.9411908500001, 161.96729439299997, 153.61041061700007, 163.7083527159998, 173.83872986100005, 158.65937798599998, 145.44411899400006, 137.17950613199991, 153.23562670599972, 168.20650171600005, 166.46585884499996, 144.51988197800006, 135.52316959400014, 154.25486788400008, 173.44330142600006, 168.58353529800024, 154.3482327119998, 153.797562018, 176.6933191590001, 186.8160906779999, 169.05506958500018, 154.9927196609999, 153.797562018, 172.98780623699986, 179.8707279700002, 177.39214741100022, 163.25199678800004, 153.51659436199998, 160.58844833800026, 175.2738182160001, 176.56261371600021, 169.67972090199987, 153.32944296100004, 143.78677521600002, 178.58187310599988, 174.8227426210001, 149.1118461650001, 142.32324091500004, 147.27993793799988, 167.56210396600022, 170.60746313699997], \"power_mean\": 162.97724371950437, \"energy_millijoules\": 9336.089760166395, \"energy_joules\": 9.336089760166395, \"coremark_score\": 5237.613045, \"coremarks_per_mhz\": 3.2475279296875, \"ulpmark_cm_score\": 32.133367149059325}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1919.3654077000003, 1908.715735296, 1894.737321191, 1886.7556909800003, 1908.0986670319999, 1905.5865840899999, 1887.1038770999999, 1871.616418798, 1876.7247706790001, 1932.0526470410002, 1927.9051744469998, 1876.811119885, 1870.031465601, 1891.990736352, 1908.891846488, 1909.536958901, 1885.7310459350003, 1892.077795986, 1916.855493369], \"power_mean\": 1898.4520398353159, \"energy_millijoules\": 9492.260199176579, \"energy_joules\": 9.49226019917658}}, \"1804800\": {\"active\": {\"elapsed_sec\": 51.319849616, \"elapsed_ns\": 51319849616, \"power_samples\": [205.932374386, 215.02451215600013, 206.4767089500001, 187.65145329000006, 197.02853764100018, 209.1456420659997, 217.5640758210002, 208.95332630099983, 185.81825162699988, 194.5303363019998, 215.66888007099988, 217.30368179399966, 208.95332630099983, 194.45948909100025, 191.5085241060001, 207.66476917499995, 211.4254945859998, 211.4254945859998, 200.79030382600013, 188.10528574, 204.09973848599975, 206.76507296599993, 195.4571642459996, 181.22580911399973, 169.11332966999976, 183.15434452199997, 213.73998788100016, 204.45600927299984, 183.89383787999986, 168.4732620779996, 185.53273928299996, 218.84527905799996, 208.85692122599994, 192.88847193599986, 194.26853871599997, 204.48342007799965, 206.38042301999985, 211.74470323200012, 203.71556372999976, 185.89132679799968, 198.03006752699957, 214.63831667399973, 216.37382405799963, 207.56842376999975, 190.864275378, 190.95984721800005, 210.04523804600012, 222.34824752999975, 209.68982860799997, 192.0534211600002, 181.13117145200022, 208.02041624999993, 210.04523804600012, 183.6085924240001, 178.65723575399988, 178.7522422889997, 198.47876929199992, 210.39625878199968, 199.0270296179997, 178.0129870259998, 182.4196095440002, 199.21845496199967, 206.4767089500001, 192.7928107859998, 194.36376846599978, 201.49928801800024, 219.74825607699995, 218.044781952, 192.7928107859998, 193.34185925200018, 199.0270296179997, 209.75633908599957, 217.0138028819997, 210.04523804600012, 191.7670176319998, 195.4571642459996, 207.828160002, 211.8771307420002, 200.85933883400003, 186.17692849399964, 195.07453502599992, 208.56820038600017, 197.74286158299992, 182.3244243889999, 173.32682736999982, 184.6073368829998, 214.34879400199998, 211.13641750600027, 179.30148448199952, 174.0658148560001, 189.48496614000032, 217.65799209299985, 205.644099138, 187.65145329000006, 189.38945377499977, 211.5517148519998, 215.8263671320001, 209.24204714100006, 188.64978203400005, 191.222209346, 210.39625878199968, 215.08965602299986, 216.08403391399997, 197.55155488399987, 193.43705951399988, 206.54411061200017, 213.0646854419997, 212.13176616600003, 209.75633908599957, 190.03364298599945, 194.33932641, 210.49225812999975, 203.33188213799986, 184.0585112939998, 173.23205893000022, 192.6019790559999, 213.608487256, 202.2395548989998, 182.86918841800025, 169.92554800799962, 192.2203155960001, 215.60121574599998, 206.83256398000003, 194.24357594999992, 191.60412578099977, 210.94386445100008, 214.76572493100002, 209.20814956999993, 193.15047728199988, 188.45930662799992, 211.78057688200033, 217.0138028819997, 202.68775244399967, 190.48296824199997, 200.6677353279997, 211.745927466, 216.18079603399974, 206.54411061200017, 189.74750634599968, 189.98408918400037, 214.05976708800017, 203.33188213799986, 181.3952571939999, 173.23205893000022, 198.7396455539997, 211.5879643100002, 196.90742518999969, 181.49041251399967, 176.99413464999998, 195.62337579999985, 209.01577467700008, 189.84304854599986, 194.8834660059997, 208.50130398600004, 216.0546988289998, 210.62303596599986, 196.8115557799997, 197.0028029619998, 209.20814956999993, 212.3244378659997, 213.22241096100015, 205.45208017999994, 188.8173591990003, 200.21517945799997, 209.56390467600022, 212.96856755999988, 208.2799739310003, 187.0803830069999, 193.74795057600022, 210.94386445100008, 196.16745592100006, 176.99413464999998, 174.8767265160002, 204.97178597399989, 211.04038847599986, 198.7396455539997, 174.8767265160002, 179.92156325999986, 195.9762682559999, 209.75633908599957, 189.65245410600028, 189.19891885199968, 205.38426276100017, 215.79640736200008, 207.76111458000014, 194.8834660059997, 192.2203155960001, 210.29976459199997, 215.1502332629998, 212.48649179099993, 195.68924101599987, 192.76869478799972, 213.7702444159995, 214.4142252409997, 211.39535173800004, 199.7360732850002, 190.1011709940003, 199.18805113799954, 201.568280941, 192.2203155960001, 174.2326563390002, 182.44001381000044, 211.93859916600013, 206.25565724399985], \"power_mean\": 199.6514143106764, \"energy_millijoules\": 10246.080558045622, \"energy_joules\": 10.246080558045621, \"coremark_score\": 5846.357719, \"coremarks_per_mhz\": 3.239338275155142, \"ulpmark_cm_score\": 29.27948870794582}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1917.2312226970002, 1920.050906295, 1913.06819172, 1892.1072428319999, 1885.5923345719998, 1908.0986670319999, 1913.796857874, 1912.8916055589998, 1905.439555932, 1888.7165231, 1888.9130276350002, 1912.1357713520001, 1899.648868656, 1874.5205674820002, 1875.632304528, 1907.1937329600003, 1930.6985376159998, 1895.70535812, 1877.7841775440002], \"power_mean\": 1901.011865974, \"energy_millijoules\": 9505.05932987, \"energy_joules\": 9.50505932987}}}}, \"4\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 191.336506854, \"elapsed_ns\": 191336506854, \"power_samples\": [89.885707723, 84.3907954440001, 76.39589972199997, 77.21620314899974, 86.58699846600007, 89.89096829800019, 84.66222871600007, 67.86014579100015, 59.598104465999995, 87.78080094100005, 91.54762542599974, 93.38584601999992, 73.73694921600008, 60.882688215999906, 83.47514312600015, 85.39261210600012, 71.99827967399983, 45.56727338000019, 57.22266668999987, 94.11655502600001, 89.89096829800019, 60.703624785999864, 43.06282256199984, 58.219896396000195, 85.94681246599998, 80.08156093000002, 58.48767558000009, 62.63242766600001, 86.026318511, 94.46763828999974, 81.61649683300016, 58.398263010000164, 70.52338396599998, 91.82003865000024, 95.40523118599981, 79.70821052999986, 72.91235742599997, 77.5003951860001, 86.22457650599995, 86.67725502600024, 87.50892266099981, 71.34312380799975, 63.91689246599958, 81.26769566599978, 83.37343321599974, 56.667771056999754, 56.4734046020003, 61.06129250900017, 81.9078223859999, 86.58026232200018, 60.703624785999864, 52.34828654599983, 62.91487122000012, 75.39153370200006, 88.78748189999965, 80.89425591400027, 68.68383025800017, 87.12348510600009, 89.06953677100023, 79.5968120289997, 67.77028686599988, 63.362205051000046, 86.49627666600009, 90.3540610460002, 90.90328734599962, 63.27255438599991, 59.33014657800004, 81.17767578600001, 88.06239011399998, 81.91974981599992, 65.20135726599983, 80.17201499499993, 89.61882254599982, 79.97901950599976, 62.167271966000044, 51.797275020999905, 69.78903798100009, 83.82536933699976, 70.52338396599998, 64.55701918599993, 51.241992466000056, 79.0555503170001, 84.57159603100013, 75.48128702599979, 70.89400841399993, 84.01783096600002, 90.17272636200005, 83.55411476899985, 82.46208141600005, 76.03584209999985, 75.12134843800027, 87.6900196659999, 88.15320122399953, 75.48128702599979, 59.70219715400003, 71.62789262599972, 87.04989294599955, 88.32455750100007, 72.17841404399996, 59.062188690000085, 81.0871918859998, 85.31289752199996, 61.433312861000104, 46.851500890000125, 58.97271644999978, 88.42516885600003, 87.04989294599955, 54.366323571000066, 44.81486196600008, 70.80400070399969, 91.36617209699989, 68.59440246600025, 63.362205051000046, 75.75147229000027, 88.34420676399986, 92.81873165100001, 72.08834685899978, 65.29109724100022, 77.8742210129999, 88.34420676399986, 79.1670562920001, 79.6182500140003, 77.8742210129999, 82.28099466599974, 80.99670798599982, 88.97869582599992, 74.10712807200025, 66.96339980100015, 74.10712807200025, 81.26769566599978, 62.8116697160001, 48.40638197400017, 60.34641620000025, 77.8742210129999, 78.60465335999993, 54.099078746999794, 45.28162446600004, 68.89140072300029, 88.24401233399999, 78.69455470599996, 70.07395504199985, 74.73683651400006, 91.80567083000005, 91.44300146199976, 72.17841404399996, 63.64831086599975, 82.9210326179998, 87.5997039360002, 91.54762542599974, 79.15856716799976, 64.37805895799988, 73.56711378399996, 86.68781719200001, 90.72189353399972, 77.06259474900003, 60.80730195399997, 86.13385470599997, 85.67520107400014, 71.62789262599972, 56.48952308800017, 46.851500890000125, 76.13521256399986, 81.2426401560001, 67.59102983099979, 56.75712415200019, 54.565287114000284, 71.358241722, 73.92681508199985, 68.14541963400006, 71.44827926699963, 82.73324721599988, 87.6092659599999, 85.39261210600012, 84.48784859599982, 78.42392384999971, 80.35245925799995, 90.72189353399972, 94.95367769099994, 72.46279639799991, 62.185241730999905, 82.83092408000016, 89.3466767939999, 89.16540162699971, 64.75357780099966, 59.70219715400003, 85.77189798599989, 88.43458185799977, 61.63064370999996, 49.51273583400007, 60.07828019199974, 89.51303938399951, 88.24401233399999, 58.59639577499979, 42.99881836000009, 66.86113295399991, 89.9004912580001, 74.01697157699982, 54.93787263399986, 68.32519715400008, 82.6497780499999, 96.95563686899982, 78.33402250400013, 58.50695336999979, 65.58966960599992, 89.07453104199999, 91.4654455079999, 87.42810943799986, 75.85535048999964, 76.58566388699978, 84.75937063600009, 90.08678203800014, 83.56528134599989, 77.60367892499994, 66.86113295399991, 74.37713521600017, 81.45618303000015, 67.32191387099988, 48.40638197400017, 58.50695336999979, 78.79745236999997, 78.33402250400013, 60.256884485, 48.890924267999935, 60.16735276999998, 86.87485037100032, 89.9004912580001, 69.25027111700001, 62.646378971999866, 83.09449206599993, 91.07986593800001, 81.62916724599995, 68.51616350599988, 63.37972926599991, 87.23704438100003, 89.2410717519997, 84.66870831099982, 65.12470813699997, 67.23205494600006, 83.94480451599998, 89.07453104199999, 81.00454367399993, 61.469652316000065, 69.3402193520003, 90.35863960200004, 85.31289752199996, 63.29050866599982, 49.79746507599975, 70.54975074099957, 75.67532167899958, 75.38135329800025, 55.11600195799997, 48.51341568599969, 76.31530050300012, 81.36566949000007, 75.76556748400003, 72.46279639799991, 80.35245925799995, 87.04989294599955, 79.33889278599986, 86.95960670399995, 80.82398076599975, 74.30096731399999, 85.31289752199996, 89.62825615399993, 78.70752134199984, 60.256884485, 58.97271644999978, 83.38454027599983, 92.93106691399998, 84.02872948699996, 55.670867713999996, 64.66383782599996, 84.02872948699996, 73.73694921600008, 46.874076080999885, 48.050972571999864, 83.02305813600015, 91.37858090200007, 65.94794638600001, 50.99660926899969, 56.86605171799988, 72.92719408799985, 83.84792889999972, 62.09562070600009, 72.92719408799985, 82.64270384100018, 92.84048462799979, 80.89425591400027, 62.109394476000034, 68.42670622599962, 85.04128612999989, 89.53735573400013, 87.80009279599994, 70.8194016450002, 78.61712675199988, 83.29393742599996, 87.05594737599995, 88.71198070799983, 78.06339164799965, 64.9619944760002, 73.47695728899998, 76.68903697799988, 65.76880799599985, 54.38675915399995, 58.23908483399987, 72.01323537000007, 81.18510658200012, 72.83706723299997, 51.54781164300039, 59.45247646100006, 84.1256642310002, 91.0027989780001, 74.9409164980002, 68.51616350599988, 80.63570042599986, 93.55884488800007, 86.88417417400001, 66.6819350469998, 62.4675373890002, 89.99585197799979, 87.79042248199971, 90.2681758499998, 66.41290785499996, 60.73611013599998, 82.37898795900014, 86.05348653300007, 89.26981042199986, 81.18510658200012, 66.51456599100015, 76.59919480200006, 90.73085221500037, 77.973026893, 57.327604800000245, 49.530755195999745, 56.687744232000114, 81.55804064099993, 72.657275712, 54.848579013999824, 53.47581256500007, 62.73556989000008, 78.436801134, 68.60608190599987, 68.98088768499997, 70.44443144199977, 86.40555486599987, 95.49636970100028, 81.54669657000022, 78.61712675199988, 70.72936409999966, 83.58262015100013, 92.65885313700005, 83.48586294300003, 66.96339980100015, 58.15010110799972, 75.31526405699992, 90.73085221500037, 84.76967473800005, 67.60746997800015, 55.49267887300016, 85.50019782599998, 81.64858401599986, 59.363403883000046, 40.62808589700035, 69.72575449599981, 98.6120270670001, 75.31526405699992, 52.19188182000016, 42.0002602579998, 64.94562926399999, 88.16299072500033, 72.01323537000007, 59.25560572199993, 73.10698560900005, 86.78406909599994, 97.1447505719998, 80.91403013400031, 57.327604800000245, 65.87485347100005, 84.30698888100028, 92.84378655100022, 86.33109381099985, 72.19296737399986, 75.31526405699992, 86.23498980299996, 88.53070554099986, 84.30698888100028, 79.72067240399997, 71.18952254099963, 75.59448579600007, 84.86036689799994, 72.83706723299997, 55.31449003199987, 55.151517768000076, 70.35488530999964, 82.37898795900014, 68.71150425300016, 51.102544621000106, 55.151517768000076, 77.98575530800008, 93.20763485999987, 78.436801134, 65.41053121599975, 79.70821052999986, 84.21632655599979, 88.60632537800007, 73.38726313500024, 61.648434770999984, 71.09945535599991, 88.34420676399986, 85.409476026, 79.25701680800012, 54.670449689999714, 68.53206905599995, 85.13777586600008, 90.45843899099987, 78.4445898800002, 64.01967845000013, 86.1442381679999, 90.55741466399991, 73.38726313500024, 67.33826466599999, 52.653333768000266, 71.83350336599983, 78.89624731599997, 68.89140072300029, 60.092188980999936, 48.890924267999935, 70.45971319599994, 81.73912739100024, 80.18420896599969, 70.1753314680002, 74.67119388000015, 88.802851293, 90.54049972200005, 83.02305813600015, 76.97272289099965, 75.22501825199993, 86.69328782100001, 92.29512323599988, 81.37741821600002, 76.32874206599968, 53.11933359599993, 72.12738390999993, 89.35602104999998, 84.21632655599979, 66.60442491599997, 59.16610384199976, 74.04060738199996, 78.71539885600009, 62.30586276599979, 47.35874898599991, 58.060658702999945, 96.88141114099994, 94.38932449000026, 56.33067088600001, 45.963801286000034, 59.16610384199976, 78.07568633599999, 78.436801134, 54.030618761999904, 66.69428384099979, 84.66870831099982, 95.415262536, 77.60367892499994, 67.26007262599978, 70.54975074099957, 81.37741821600002, 93.85868069300022, 91.56813035299979, 72.11743896000007, 78.07568633599999, 80.18420896599969, 83.39569504099973, 85.87244865599973, 74.86449783100011, 65.60582627900021, 76.14813150600003, 82.57050851600002, 62.843025965999686, 55.776072990999864, 55.776072990999864, 68.72705254800007, 78.25647551599991, 75.04498944099987, 47.802816455999846, 62.67678666200004, 75.5173838579999, 92.47675472700007, 73.49114032000011, 66.87354087599988, 86.42140954100023, 95.7693178689999, 80.47384176599985, 62.019743811000126, 62.843025965999686, 84.5887555060001, 94.40457702900017, 88.167689204, 62.57444436599985, 62.75334546599993, 85.69141077899985, 87.06533069600005, 86.98392184400018, 73.58086415600019, 67.79819966600007, 82.48037029599982, 81.37741821600002, 66.60442491599997, 51.74646577599992, 46.69665901600001, 73.40095399000006, 75.41439785700004, 68.54755783399992, 54.313733126000216, 46.69665901600001, 74.1308233520001, 82.48037029599982, 71.38348030200018, 68.53206905599995, 80.09372506599993, 85.86215454599983, 86.23498980299996, 83.30506235600001, 80.73346722600013, 83.21442967100006, 87.71426828500012, 88.34896437099997, 75.41439785700004, 62.019743811000126, 71.65330932600023, 91.83274422, 87.15614180599982, 74.31079264599998, 59.91352556000015, 79.91322128599995, 82.57050851600002, 71.29384531799997, 47.180756886000154, 51.479399072000206, 95.14213624800027, 98.15667571600011, 61.751251563000096, 48.446707928999786, 58.168842785999914, 76.58566388699978, 85.13777586600008, 68.35263385899998, 63.214127397999846, 81.829206441, 95.22342153299974, 83.47514312600015, 71.48793754200028, 68.35263385899998, 78.08382038800005, 88.63021615799994, 86.88417417400001, 74.87367108900025, 77.98575530800008, 84.49806334600021, 80.00324116600018, 85.04751930599991, 84.95679750599993, 68.906547262, 72.02731210500042, 81.27562012199996, 77.80496612800016, 59.823964205000266, 54.135603802000105, 63.768278895999856, 83.94480451599998, 83.58262015100013, 58.91666358199973, 52.317599124000026, 68.36760169400009, 93.94981920800024, 87.53299311799992, 66.15605192099997, 72.57724170300003, 85.21175239100012, 97.15650266000011, 72.56714885700012, 57.90088489799996, 79.73225348599999, 87.3468197730001, 89.45120423399999, 86.05921553100006, 59.363403883000046, 82.67202791, 83.40176043600013, 87.4421225330002, 73.50023685400038, 70.82971568400012, 88.34896437099997, 82.9429963990001, 72.02731210500042, 53.86818085799996, 57.078626963999795, 86.14953126100022, 77.25149908000003, 65.51645765699982, 49.55211171400015, 56.989643237999644, 87.5280358120001, 74.14391978799995, 71.47357732199998, 73.13085749400011, 86.51219081599993, 93.1242074339998, 86.60297209099986, 79.91322128599995, 73.40095399000006, 82.7621958120003, 93.67687104000015, 75.78783659399983, 62.12696166599994, 71.20374829800016, 86.05921553100006, 89.36027417400032, 76.52151057300034, 56.524267248000115, 62.9619997359996, 84.8660757060004, 71.29384531799997, 48.19720579599971, 60.66444187600041, 86.70301765199997, 88.53931573800014, 63.870235312000204, 46.98520060400028, 58.451465753999855, 87.3468197730001, 80.92562999099982, 58.54050864999999, 71.29384531799997, 93.11655601500001, 96.41656969799988, 86.69328782100001, 59.18434045300023, 73.04113365800004, 91.659179558, 95.87945097400006, 84.78529060799974, 73.13085749400011, 75.14403447299992, 80.1913143300003, 91.19700892800006, 81.93768245600018, 68.26268562400014, 65.05179392600007, 79.46172982600001, 74.414194404, 55.06262289399979, 50.19594351699993, 62.66366496600017, 81.01570904100026, 79.35932001100014, 54.60127659900013, 48.00249158999986, 77.2639892740001, 89.55023942400044, 77.07123297899989, 67.70874238599981, 89.26512063000018, 97.61006690000022, 80.83508661600013, 58.91666358199973, 67.99330219200033, 87.3468197730001, 92.76023993800004, 84.59484078599985, 60.11035013200012, 73.77042211800017, 83.86461349000024, 89.00541297600012, 66.990778546, 69.00707755000008, 89.82265264800003, 84.75937063600009, 64.78285608600004, 54.69014198500031, 57.543913601999975, 77.90343564199998, 68.54755783399992, 60.127634916000034, 48.00249158999986, 59.0057361600002, 82.85282849700002, 74.504440209, 68.91753141799995, 77.34186383499991, 85.96843425600014, 87.61887675699995, 85.87811852599998, 79.64223360599976, 78.63707909200025, 88.167689204, 92.20763584900033, 71.11411331399972, 58.272920977999775, 76.07076151200022, 92.85134861799997, 85.05708012000014, 64.69351714599975, 61.9476006660002, 83.77392133000035, 85.51545897100004, 64.70937608099985, 47.07416701400007, 63.05173971099998, 89.36878609500013, 87.71426828500012, 50.12378004800007, 44.79219350599965, 69.56118466999988, 90.83339821400045, 70.47037070999977, 58.093917218000115, 76.70218080299992, 85.05708012000014, 92.19635493399983, 75.62001245099987, 61.48321906199999, 72.03722741500019, 87.62339770000017, 86.34943278200035, 80.29275501599977, 80.92562999099982, 80.28182786999992, 86.98392184400018, 91.659179558, 75.60768913799984, 68.457579764, 75.98088965399984, 77.90343564199998, 66.8109417459998, 56.989643237999644, 56.43485467800019, 77.993396158, 85.05708012000014, 60.66444187600041, 55.70636549799997, 62.13944592600001, 83.04004100600014, 93.58619990200009, 68.008612266, 69.45619294400012, 86.41602767999962, 92.46894627800043, 82.02828530600004, 56.8107584280001, 75.42707857799996, 86.9651661009998, 88.90655649000018, 80.29275501599977, 59.93162719399993], \"power_mean\": 74.76340724746886, \"energy_millijoules\": 14304.96918323372, \"energy_joules\": 14.30496918323372, \"coremark_score\": 1568.069915, \"coremarks_per_mhz\": 5.226899716666667, \"ulpmark_cm_score\": 20.971733399581034}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1910.8995914519999, 1918.258013625, 1906.892586742, 1892.813114569, 1898.219282016, 1915.9503940959999, 1900.9064070250004, 1883.9899600800002, 1871.1333246240001, 1890.971044029, 1905.703592844, 1895.649520986, 1888.227131032, 1873.149367443, 1885.2747811200002, 1905.8445553440001, 1899.7674863789998, 1891.7906667179998, 1895.1799578480002], \"power_mean\": 1896.3484619985263, \"energy_millijoules\": 9481.74230999263, \"energy_joules\": 9.481742309992631}}, \"652800\": {\"active\": {\"elapsed_sec\": 87.855514602, \"elapsed_ns\": 87855514602, \"power_samples\": [137.87457255599975, 123.66211137599998, 102.20733392100033, 93.58849301099963, 115.86935338600006, 146.97722669099971, 123.66211137599998, 98.72414721599966, 95.97211099000037, 123.48749788200007, 130.99783369199986, 119.99427396600026, 112.66039207800031, 128.80249640300008, 138.53332961599972, 132.19801665, 116.50862221800003, 121.82828198099992, 130.08033003599985, 143.73293467400003, 132.7389183509997, 120.36105807400008, 127.51051902599988, 127.51051902599988, 127.96894911499976, 130.17319430099974, 112.56833121300019, 113.94313545800014, 123.57001938200028, 132.19801665, 103.40251963799983, 96.615585538, 114.12690372599968, 124.57535925799971, 118.52669526600016, 104.86802226199984, 99.36815633100014, 113.94250391100013, 140.99046057600003, 122.9265448340002, 115.31758593599989, 135.31586752599992, 140.71130793300017, 135.22279500100012, 109.26807795399986, 117.05982764099986, 134.84008646999973, 144.83886822599993, 131.63157075399977, 117.51494262999972, 112.7519808359998, 133.65056389999995, 135.29768526600037, 127.6911000189998, 110.09131656299996, 113.0238616539998, 140.06789290200027, 130.53431692499998, 111.83332742400012, 98.54180346600015, 107.5252128420002, 130.53431692499998, 120.815905896, 111.19411772000012, 96.25078606999978, 113.11595215900024, 130.3490054939998, 116.41638292799985, 111.9253214790001, 122.9265448340002, 133.74312944799976, 134.48603954200007, 133.82909360100007, 126.68626520999987, 119.62519545099985, 133.83617213800017, 136.76603692599974, 130.25611158900006, 104.593381078, 114.58078263599987, 138.59870659700005, 133.65056389999995, 116.78349344100002, 103.67547388499997, 125.21874445399976, 131.63157075399977, 110.64305298399972, 100.92817799799991, 100.46755254599998, 141.53683813400016, 136.58013188100017, 99.36815633100014, 92.2214590619999, 115.59319730599987, 134.20090640599983, 122.37930882599994, 103.12805657399986, 114.49445983099986, 135.39774456600026, 143.48593103199983, 128.70099290200005, 106.24012921500002, 121.45932092699991, 135.94101094500002, 142.62309294999977, 133.46447852000006, 123.93197406199988, 126.40859423399979, 129.80268969500003, 139.14502511100022, 137.8625784960002, 115.22483157600004, 120.63101079599983, 127.14048977799985, 123.74725624500024, 104.86653851799974, 98.72483065200004, 114.8576322949998, 130.53431692499998, 123.01556861400013, 104.77678871800003, 96.25611934099993, 113.85082630099964, 136.3937489309999, 129.70982542999968, 112.93177114900004, 121.27719546599997, 133.5743367749999, 133.6610145760003, 119.34850501100004, 110.45873113399989, 131.90349992699998, 145.01544045900005, 131.90349992699998, 113.0238616539998, 105.60106755900028, 135.1114212660002, 137.49005290599985, 134.00359932599986, 120.9054051029998, 115.86389323200001, 144.27901631400027, 127.49691277199963, 110.36675957900002, 97.35100762199977, 114.8576322949998, 134.76469047, 121.45932092699991, 108.90090097799975, 96.43341994999992, 116.69169749100024, 127.6911000189998, 122.37227276999988, 120.35414223599992, 126.13550614200017, 137.4094221219998, 128.2467982109997, 133.37191297200002, 123.01556861400013, 126.22363873799986, 133.1858275919999, 131.35318729799997, 113.48347858200009, 108.34948737900004, 126.0386832419997, 139.69501053, 131.16775722199986, 110.91858535200026, 100.10250836199998, 129.43170886199982, 122.92300191899994, 100.92817799799991, 90.29577607799979, 119.34635681600002, 141.52726394399997, 121.54864142999986, 103.76714786999992, 97.35100762199977, 126.22363873799986, 134.01523865100035, 110.27525967300016, 114.58078263599987, 133.2894393659999, 140.60427770299998, 128.88612617099966, 110.18398963799996, 120.53903733600009, 131.81099354899993, 145.550284186, 133.91097460799983, 124.11317841999971, 128.51038580199997, 126.67771540999979, 137.49005290599985, 128.2379217690002, 111.9253214790001, 104.95780155000011, 123.01556861400013, 127.04774465799983, 106.24012921500002, 95.80032235599992, 112.38017263699999, 123.37734575800005, 122.73834323000005, 101.11081855499992, 88.28687093999997, 114.2137917409998, 133.1858275919999, 135.56884135799987, 117.78948690600009, 121.73580459599998, 131.71801033399993, 142.73993184999995, 126.67771540999979, 107.52666123299991, 119.62313660799987, 129.97790625300013, 138.67895150100003, 128.33025044300007, 106.14880701299967, 116.13282779000019, 132.36121682600015, 133.7364983709997, 123.92393617900007, 103.49416398300013, 131.90349992699998, 138.4126233899999, 117.78948690600009, 108.07431183499966, 95.88645489399983, 119.53071869799987, 125.94596776200001, 113.11546963399974, 103.67547388499997, 94.6041863989999, 112.01691023700027, 126.49222516999998, 114.76472906599997, 116.23082504100012, 120.63101079599983, 130.44189939900002, 141.53683813400016, 128.97360580399982, 122.27973591000023, 121.45932092699991, 134.5612574219997, 139.22926656599998, 125.58034289399984, 114.58156556699987, 106.97521799399988, 130.62117226200007, 141.15450391599984, 136.66508581599987, 112.28855439099993, 108.5337240020001, 129.6997009170002, 129.79259482200018, 109.81587354700014, 93.14130490399998, 101.93304956100019, 147.0192291970002, 140.448978486, 105.60106755900028, 94.69497587700016, 107.43527966699958, 127.32095173699986, 127.22817678199999, 102.21038701799989, 114.03465408599982, 132.28081436199977, 140.15204500499976, 125.58841815599999, 106.333871262, 119.071814571, 128.87547572599988, 141.51354896400017, 134.18932620900023, 121.1790869460001, 131.07480384200016, 128.14000022999994, 137.5833038559997, 133.00021935400014, 114.58156556699987, 113.66652595100004, 125.30276126999979, 128.96833999099977, 105.87389894099988, 100.28497150600015, 117.6053031859999, 128.32519301599996, 126.30721054600008, 108.5337240020001, 99.2800717460002, 121.44880236199992, 135.6620031929997, 126.58497029, 112.65581275799991, 126.68626520999987, 134.739848466, 130.62721083000042, 117.88002320399983, 104.50007510599994, 120.99454690200014, 133.36468556599993, 136.7578290680001, 124.02055224999981, 108.25893044999975, 128.0471657999999, 133.36468556599993, 133.45775809099996, 122.26808914999992, 111.55755012600025, 137.396801956, 136.30103536099978, 115.86269489100005, 107.98242959000004, 100.83662296299985, 118.42651940099995, 125.02517964599997, 115.21963726799981, 102.94349237400002, 108.35037118599985, 122.00259987800018, 123.00791012399986, 120.07453136699996, 121.08705412199993, 129.32907805500008, 136.85105037800008, 129.43170886199982, 124.6637587419998, 123.83577491599976, 126.95032768600004, 135.83603379599958, 128.69557858800022, 114.30549883900017, 105.4158757319999, 128.6902234229999, 139.0430647139999, 129.32907805500008, 111.9253214790001, 101.93601330599995, 126.76525354500018, 121.08705412199993, 109.08151605400008, 92.5025390400001, 114.58078263599987], \"power_mean\": 121.59290883570806, \"energy_millijoules\": 10682.607577715204, \"energy_joules\": 10.682607577715205, \"coremark_score\": 3415.37831, \"coremarks_per_mhz\": 5.231890793504903, \"ulpmark_cm_score\": 28.08303102192246}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1878.0465283830001, 1893.1971190860002, 1903.907280058, 1898.4465222749998, 1898.417976536, 1901.6282746199997, 1915.8219092499999, 1908.6041528120002, 1911.701158014, 1901.076391206, 1905.1025131280003, 1914.002666448, 1908.9570878440002, 1887.5038045439999, 1882.74886536, 1910.063957238, 1912.4538076070003, 1908.6041528120002, 1889.0487985630002], \"power_mean\": 1901.543840304421, \"energy_millijoules\": 9507.719201522106, \"energy_joules\": 9.507719201522105}}, \"902400\": {\"active\": {\"elapsed_sec\": 63.65627258, \"elapsed_ns\": 63656272580, \"power_samples\": [149.00911208399975, 172.5601305260002, 175.12768205800012, 153.42063091199998, 150.2141943710003, 173.5078425109998, 177.14321842699974, 168.1894098810003, 149.83917208599973, 156.43920340399995, 174.48474362200022, 179.71088910400022, 179.71088910400022, 159.82930158699992, 151.4019931060002, 168.54522724799995, 176.85832979499992, 178.2392727880001, 156.607860651, 152.22865940999986, 174.20021122999992, 172.0162818870001, 153.1390389600001, 141.6901202240001, 136.1999353819997, 164.77180509799973, 161.65959259800024, 150.40146480600015, 139.85851674200012, 136.10671407200016, 153.1390389600001, 165.05500071400002, 159.1704981009998, 155.9840991819999, 156.43920340399995, 172.6790351730001, 173.03422989599972, 166.62016805999974, 164.86588035400018, 160.6442973720002, 175.222718428, 177.78618669800017, 165.5088187900003, 148.36632251699984, 152.8716575159997, 172.46570005600006, 179.16313562799996, 170.09157948099983, 146.72705706200009, 151.120668626, 170.6355174300004, 153.40246331599997, 141.86639374600009, 138.75388768499988, 171.92139430200018, 185.3852815500004, 155.54767526299975, 136.28018160599981, 143.15835301800007, 166.7904934500002, 170.56459856599986, 146.3647895590002, 147.36573415800012, 169.3773064659997, 183.60700227399957, 166.2640836789999, 141.50314213399975, 154.60828086200013, 174.93809668400013, 175.67183978999992, 172.8242545380001, 165.8641812779997, 165.32012383699998, 169.42944999099996, 164.67724491800004, 176.5044525630001, 170.89999776600007, 155.88995552200026, 154.96515824599965, 166.05342058799988, 162.49141349399997, 142.784638674, 137.9339036460001, 158.35952563000023, 167.05568565600015, 160.18969795400017, 144.98941759400032, 141.0366557709997, 151.9331548409998, 174.6534749399998, 165.225533822, 151.85328112200023, 165.88669377299993, 171.99208744099997, 172.77392275800003, 160.7381951179998, 142.87818719400002, 162.75280998400035, 171.1840845659999, 175.74514881599998, 166.31821676399977, 144.4290311960001, 156.15716585999985, 170.80514001599954, 173.79960970800016, 169.85850831599987, 152.21465744099964, 168.14813126599984, 179.2356428220005, 158.8138494939999, 153.32660620200022, 136.73691780100012, 149.19632300199964, 165.95880093300002, 160.00147797, 144.61582666200002, 140.95375226000033, 148.00861307700006, 167.97794483200005, 162.90614043000005, 157.6265859240002, 158.62574815499988, 176.0511287940003, 176.47880350100013, 171.732105735, 169.23985344099992, 160.6442973720002, 163.3956889030003, 178.6875499339999, 167.59959465899988, 152.4021651659998, 147.0849446219995, 166.9610063309999, 179.9690464739997, 171.35352860099988, 147.17870140200012, 145.0717910809999, 166.41286625400016, 166.77213321600016, 142.41140406600016, 129.49745648600015, 147.25976302799995, 183.34145227599993, 172.72930747799978, 136.82972022299987, 131.70000740399973, 155.51434645800032, 175.38712927799997, 158.26526302000025, 146.54008343400005, 163.03573812800005, 172.1307162659998, 175.4333473329998, 161.47125396900014, 150.933279546, 171.8022529909997, 177.92729641699998, 175.71877526699973, 164.4886094819999, 164.299974046, 164.94273393100002, 166.22405265600014, 178.40288211100005, 167.69430362399999, 151.3844196660002, 150.74589046600022, 163.84999151400007, 161.54845413599992, 142.69156988999998, 135.9076560159997, 159.71890606600005, 162.94126725800015, 153.0450142499999, 140.31507516400006, 142.13123824199965, 157.0032784919997, 174.74851131000014, 170.61591096600023, 152.7639044760001, 168.92309173400008, 178.73578799400002, 169.44861121000008, 150.65195506600003, 150.83982586600018, 174.36885319599992, 177.12156338600016, 173.91616605100012, 152.85744700799978, 152.12114459100007, 167.31595345100004, 175.08045324299997, 166.65444775700007, 147.71105205900017, 159.07617601599986, 177.4792559350003, 162.58537041000022, 145.61665261600047, 129.0448044059999, 151.10300641799972, 169.95287961600002, 156.41945438099992, 146.25938266599996, 132.98138529899984, 148.82190116600032, 169.33465171600005, 158.53193926099993, 155.7809548209998, 163.3956889030003, 172.98896312600004, 168.5261147860001, 167.2217301730002, 161.54845413599992, 158.24954547700008, 177.12156338600016, 179.01825811800018, 164.20541386600007, 152.5758550559999, 159.1704981009998, 170.06800883100004, 176.19391486899985, 164.56485894799994, 148.80846257100006, 157.41834972399988, 172.42007704599973, 153.57528475899994, 142.41140406600016, 138.64671505199976, 164.11085368599993, 184.07543436600008, 149.08960893099993, 129.68336324600023, 157.34437025999955, 174.08423145200004, 157.60687494400008, 141.5863166900001, 161.28291534000005, 171.70782252100003, 180.73026346200004, 162.35811962399998, 141.1301448160002, 159.07617601599986, 170.5210532159997, 177.35747248999996, 167.20220078600005, 165.20329937999986, 168.6919216660001, 169.87835300100005, 177.4792559350003, 164.56485894799994, 157.51261233399987, 162.5466364150002], \"power_mean\": 161.02306226125896, \"energy_millijoules\": 10250.127942969011, \"energy_joules\": 10.25012794296901, \"coremark_score\": 4714.090416, \"coremarks_per_mhz\": 5.223947712765957, \"ulpmark_cm_score\": 29.26792735360757}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1902.9657679680004, 1916.0827119199998, 1917.254243024, 1904.2482145830002, 1902.2342198039998, 1904.1599027879997, 1900.83643194, 1914.511992246, 1907.544440428, 1889.576744627, 1891.034624052, 1898.7345777890002, 1899.581341989, 1879.777728936, 1877.4736943039998, 1880.856184435, 1904.336073497, 1899.817458, 1881.87750498], \"power_mean\": 1898.573887226842, \"energy_millijoules\": 9492.86943613421, \"energy_joules\": 9.49286943613421}}, \"1056000\": {\"active\": {\"elapsed_sec\": 54.414227583, \"elapsed_ns\": 54414227583, \"power_samples\": [187.28068291599993, 170.69028871199976, 168.67203608099976, 196.22487028800015, 193.95056728200007, 191.28897581100045, 189.46489145400028, 200.7444071660002, 205.9659383559997, 197.25132895999968, 194.0465260019996, 195.93762269000035, 198.79075684500003, 206.5765714019999, 202.6332874499999, 181.8699548679997, 179.56550535899987, 199.33334588299977, 206.3839588300002, 205.00248098199972, 179.01825811800018, 184.59802674599996, 202.08711134399982, 182.57929766200004, 172.9675623400001, 169.47956376599996, 196.54555090199983, 208.20639275600024, 183.21756055800006, 163.63902263399973, 171.13929268099992, 204.01056569999992, 194.39749360199994, 177.19418859900043, 188.375251769, 207.3753986429997, 206.35092543200017, 193.30795641899977, 180.20382738299986, 189.24324606599976, 208.46315502599964, 208.20639275600024, 196.58005500199988, 193.56771659399965, 198.79075684500003, 196.77177715299968, 203.8181908069996, 191.0972966610002, 185.33140101000026, 189.0828716699998, 193.37629125000012, 178.37990645399987, 171.32864037599984, 176.361296778, 190.03841215800003, 194.75248276399998, 180.75147435799954, 163.3558270179999, 175.60151814600022, 196.93036998599973, 206.3839588300002, 189.72116420599968, 186.35583895599984, 205.64494297600004, 207.92584970200005, 199.52530532399987, 174.15370873799998, 180.65611077799986, 205.00248098199972, 206.82957966599997, 206.48001754200004, 189.53009518600038, 179.9188039300002, 205.64494297600004, 210.64976484, 201.12563361000002, 192.38233968300028, 190.52373366599977, 209.39511001000028, 197.86072072200022, 183.57397526400018, 164.37616399500007, 170.5010001449998, 195.93762269000035, 187.89728756700015, 178.92298384800006, 168.83719112400013, 172.2306107060001, 197.57271294599968, 190.97433780600022, 185.7832094360001, 185.59249635099968, 199.07885397300015, 201.70271788200034, 202.82603792999998, 202.9875825060003, 190.26784610000004, 195.20334125199952, 207.47201197799995, 205.45238992099985, 200.32576623199975, 176.07680677000008, 179.72813644000007, 208.65600488799964, 210.77204163399983, 199.23711942799991, 177.61941471599994, 181.93683566800019, 199.68756246400017, 190.90610899600006, 166.8947232500002, 159.3036651719999, 194.56093877500007, 213.14022609999984, 182.3888813839999, 167.1079478260001, 171.78178451000008, 188.15370884100003, 201.70271788200034, 182.8366097459998, 179.9188039300002, 190.29486244600002, 207.54012940999974, 204.14197148099947, 188.98712121000017, 184.66386846600017, 188.41360050600042, 206.7329961659998, 212.49782362299993, 195.45772704599995, 192.99294846600014, 199.49554350599965, 199.0451599869998, 212.30461782600014, 204.1717836759999, 185.496894676, 191.00194857099996, 195.84154502, 187.77131721600017, 173.7050607039996, 171.49743023799988, 182.0322587229998, 190.81076090600027, 193.18437381000012, 167.55664435400013, 166.06727854599967, 188.76483674599967, 210.57901360999995, 192.44656422599974, 176.52886877200035, 191.32941515199946, 213.85125754799992, 202.34515019400033, 176.52886877200035, 181.10827513899994, 204.6174939059997, 207.08605409099982, 198.75697409099985, 186.96876374600015, 183.47895270599975, 198.2150559060001, 207.53137874599997, 199.71853339900008, 178.25752971600014, 196.48394749699992, 209.45394183399958, 191.99972628500018, 181.55612214599978, 167.55664435400013, 185.23631928199984, 195.74546735000013, 195.10729322199995, 174.51134118599998, 168.6480215910001, 185.94429659099978, 197.12215126499996, 186.5866097160001, 189.43431508599997, 198.1188590910001, 208.3030357309999, 199.1413864420001, 200.1336881459997, 196.93036998599973, 201.25662207699997, 202.9875825060003, 202.69886166599963, 189.88558902600016, 172.58851062600002, 197.830761963, 214.74974971099982, 199.20726825799966, 184.47321489800015, 177.23892462999993, 201.640383381, 192.89698974600014, 174.3211494960001, 164.8819454610002, 180.82258409099995, 213.5893037459996, 183.287927976, 167.915108316, 171.30802302599977, 189.78977909100013, 200.77603110600012, 189.338534986, 184.47321489800015, 195.16998674199976, 211.19165052299968, 200.54854933800016, 178.3528039859998, 186.49094856600004, 203.43294648400024, 212.91192136900008, 204.4886346559997], \"power_mean\": 191.3654686722196, \"energy_millijoules\": 10413.004163857615, \"energy_joules\": 10.413004163857615, \"coremark_score\": 5515.010019, \"coremarks_per_mhz\": 5.222547366477273, \"ulpmark_cm_score\": 28.81012964935391}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1905.04766735, 1913.229545631, 1898.05914562, 1884.213474273, 1902.172854816, 1913.89138836, 1904.8250505959998, 1890.9197601840003, 1888.5274633419997, 1907.123977192, 1916.100735064, 1906.018591581, 1892.114079166, 1902.701463584, 1914.907333092, 1904.9344360840003, 1884.682082512, 1874.975323969, 1892.7273700599999], \"power_mean\": 1899.8511443408422, \"energy_millijoules\": 9499.25572170421, \"energy_joules\": 9.49925572170421}}, \"1401600\": {\"active\": {\"elapsed_sec\": 40.937501234, \"elapsed_ns\": 40937501234, \"power_samples\": [295.6980663539998, 278.073031466, 306.2055418740001, 299.50342077000005, 280.2942060180003, 271.571173111, 267.58753254500016, 293.6638611059998, 291.17858851400024, 279.4701253410003, 259.56274238199967, 270.00615643400033, 295.4588583910004, 286.05529204999993, 278.57188370099993, 288.7194899889996, 297.4138189409996, 303.41114539, 295.4588583910004, 291.921174566, 290.3360368960007, 300.04022315300017, 307.18626747400003, 299.30202341099994, 280.7365155360003, 274.53311998599975, 293.6374491389997, 303.34274613000025, 292.69822549100036, 271.571173111, 278.7149276659993, 300.5131200820001, 285.1171080659997, 275.17090955400045, 257.1913077180002, 280.9931204039999, 310.62014125099995, 288.3181982659994, 260.7879834659998, 265.2686706659997, 292.7988854659998, 289.7983022039998, 270.3912540659994, 284.57548496100026, 293.53727588100037, 309.88268016899974, 291.218002866, 268.27121293200025, 281.3742459760001, 300.3796458459997, 303.4102517140004, 296.4741786049999, 286.934013821, 290.87739226599933, 299.8387666660001, 308.12757001800037, 301.6591833709999, 288.3181982659994, 276.05165205099956, 292.156989266, 292.0563591260002, 280.4367448320004, 262.51146282900027, 277.87359311100045, 291.17858851400024, 289.93438917000003, 274.3738314299999, 261.2752543060001, 275.31463640100037, 299.4353358090002, 306.0388969650003, 279.25259346600023, 286.1556246199998, 304.11785271200006, 308.93590990999974, 291.61988896599996, 269.8531421060002, 290.1349552360002, 303.0398568659998, 298.9996685070005, 285.65447629599976, 269.65396442600013, 297.7159951409999, 301.01731700599976, 296.910364416, 292.5980817210002, 281.5159148969997, 302.5032623960001, 294.4144526580003, 278.41542443399976, 261.1327825139997, 274.57297297800005, 289.83384834000026, 288.855417711, 282.29523403400026, 261.23198447400046, 274.57297297800005, 295.2958652499997, 293.0733540059996, 283.4328566940003, 282.99570154200046, 302.5032623960001, 304.4206493110005, 296.7385148660005, 297.1787044309999, 284.2159248180001, 299.2010658659997, 301.8976614039998, 294.4144526580003, 274.67279971800053, 273.0945311949995, 294.11272205000023, 303.81451454299986, 296.67539780200013, 272.4527838639997, 273.1937868330001, 298.59635605799986, 279.3951619620002, 266.3421183859996, 264.6734076419998, 293.5759182359998, 305.1945504419996, 290.9377350939999, 261.5724402259998, 273.2935540980002, 300.81574187399974, 293.5759182359998, 272.4527838639997, 281.2741216659997, 304.2877102980001, 310.85950596600014, 291.85561489799966, 270.5359307249996, 286.7740500980003, 305.53351200799943, 303.9151910370001, 297.11164274099974, 287.3157416639997, 295.8991669060001, 298.15597640399983, 303.1769616390002, 298.15597640399983, 276.49419870600013, 281.6160690419997, 288.0173582579996, 289.73382310399984, 272.8507106359998, 259.11244413600025, 275.61369404100014, 288.0173582579996, 288.65497029000016, 268.07215459200006, 263.63950037999984, 284.5528761300002, 301.15483757799984, 293.0343441629998, 281.0743865039999, 303.20837977500014, 311.93746853799985, 301.15483757799984, 277.4742037060005], \"power_mean\": 287.64899022203105, \"energy_millijoules\": 11775.63089217325, \"energy_joules\": 11.77563089217325, \"coremark_score\": 7331.378299, \"coremarks_per_mhz\": 5.2307208183504565, \"ulpmark_cm_score\": 25.476342010634603}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1905.136098095, 1884.5349168000002, 1868.9783201060002, 1882.05975791, 1910.7267359199998, 1915.5682064880002, 1891.675949915, 1893.7711668960003, 1915.8165364, 1918.596246275, 1903.190284567, 1887.189233855, 1897.822885793, 1914.1979218529998, 1916.9423554639998, 1903.7664081, 1885.903714085, 1894.70543775, 1911.74631707], \"power_mean\": 1900.1225522811578, \"energy_millijoules\": 9500.61276140579, \"energy_joules\": 9.50061276140579}}, \"1536000\": {\"active\": {\"elapsed_sec\": 37.386102955, \"elapsed_ns\": 37386102955, \"power_samples\": [321.53376697800013, 352.5826597199998, 347.026762127, 329.5438234439998, 311.4262233059999, 330.08297670599995, 339.8610892019997, 325.0652145719996, 311.76344670599974, 298.9679977459996, 326.139684882, 351.6092134759997, 314.18739489599966, 309.40482745599957, 319.3076022299997, 333.3850273080002, 336.6868485939999, 317.5901781100001, 321.3297096180004, 337.5557566360003, 350.4939846359998, 332.6176447519997, 311.4262233059999, 323.88783489800016, 342.77776283400044, 348.45460294199984, 340.72987890399963, 329.33899271400014, 335.1229109669998, 340.11340733600036, 343.51817854199953, 341.7048400439994, 330.69659718599996, 320.05064697800026, 332.97517749100007, 340.42164311999977, 319.5418467909999, 306.20566764600017, 323.4802920459997, 337.4529543910003, 333.1798393380004, 316.41284657999995, 306.87711080400004, 318.5640942330001, 343.74787662599965, 343.74787662599965, 322.30303132200015, 320.35603167399995, 343.47324757100023, 347.95414303100006, 333.0505953259999, 314.5243217259999, 327.29218115199956, 345.1297423160004, 341.49887831399974, 334.8954226410001, 318.2897768279995, 327.8559213160006, 340.4465913099998, 342.5722105660002, 338.6545416030003, 316.471916682, 340.7549164459997, 347.7905523059994, 331.9009548179997, 318.5950721720001, 305.23017715199967, 322.71086041299986, 333.61665676600023, 328.00668226599964, 313.8828126159997, 305.2649271979999, 330.5201207760001, 337.2220377179997, 330.28734174600004, 332.5383005460003, 337.7608339350004, 348.63814778100004, 336.5036849240005, 338.52652432199966, 334.2539433660004, 338.73172026600014, 343.954076256, 342.16110603000016, 324.2491301490004, 313.2454963760001, 333.4119354019999, 341.1904638259998, 337.9916015859999, 321.55995758599965, 316.1397170819996, 339.37319954099985, 335.6354221759998, 310.5821003159999, 301.56142155299995, 317.38700029799975, 353.24144818199966, 338.1972657460001, 311.12199726599965, 304.7242727859998, 331.7989461259999, 340.5490143859997, 323.0722253599997, 322.2014666959999, 332.6679216590005, 344.54676408600017, 337.7864647700003, 313.57823033600016, 322.97060156399994, 344.40921435200016, 348.8668947059996, 336.5293157590004, 329.67372126600003, 336.8114751160001, 336.91424752600005, 347.3779689779999, 334.1512899059994, 325.5276587339995, 326.2707907930003, 330.41764574100034, 328.39501486599966, 314.01670957199985, 304.82555754099985, 317.8522953270003, 329.8038465569998, 334.69058263199986, 313.1438247410001, 306.57341970800053, 323.5097843399999, 341.6222280349998, 345.25633431599954, 321.15224768200005, 325.7316674499998, 343.164744315, 343.54220571299993, 331.05493234100004, 320.3115157140005, 333.9465094140005, 344.08099485599996, 341.93073129100003, 328.19076847099996, 317.3164844170001, 342.4895929979998, 342.5921344139997, 342.38652301799993, 335.4299963059998, 320.84659609799974], \"power_mean\": 330.0802889013945, \"energy_millijoules\": 12340.415664283679, \"energy_joules\": 12.340415664283679, \"coremark_score\": 8028.259473, \"coremarks_per_mhz\": 5.226731427734375, \"ulpmark_cm_score\": 24.31036426660058}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1882.904429513, 1881.2748654139998, 1898.7253034249998, 1902.418305669, 1894.816933374, 1876.234203399, 1876.0604071459998, 1902.0444956370002, 1901.225350536, 1894.09110765, 1891.3251763419998, 1905.4695394090002, 1913.754596782, 1907.457062892, 1901.1375213039998, 1900.032729486, 1912.118819814, 1915.6995631520003, 1908.276289209], \"power_mean\": 1898.1614052712105, \"energy_millijoules\": 9490.807026356053, \"energy_joules\": 9.490807026356054}}, \"1612800\": {\"active\": {\"elapsed_sec\": 35.614654726, \"elapsed_ns\": 35614654726, \"power_samples\": [351.01154116199996, 376.3847412289997, 356.7301338739999, 324.2491301490004, 327.9865220759998, 354.85114019400044, 368.784419611, 344.08099485599996, 341.51974578900035, 357.49122441000054, 374.4263730419998, 371.2257284339994, 350.3702107559998, 336.83719530300004, 362.214702276, 372.2211994170002, 369.79664063400014, 368.50186732600014, 359.2240341900001, 362.5261465560002, 365.51666662000025, 366.2573829359999, 367.53579257099955, 347.70996446099934, 345.4811272869997, 358.16854275700007, 367.8479493310001, 344.94729611599996, 326.50392521599997, 345.79025425500004, 358.92841357, 359.55005579799945, 340.2412172039999, 328.88367329400035, 340.92673559800005, 371.06252127900007, 372.44522131400026, 345.89347302000033, 346.20259998799975, 369.2473982800002, 371.87994260999994, 362.31869480099976, 338.3463945870003, 346.7593588019995, 366.0495752460006, 372.3565815500001, 360.29517023200015, 346.32883570600006, 342.4895929979998, 365.94540429599965, 371.2982105379997, 362.6621780659998, 347.50387809600034, 357.20110162799983, 380.9695725059996, 361.46949853199976, 343.1308638869996, 331.61732707600004, 339.7269900079996, 362.1107097509994, 353.1547072999997, 348.04178123999964, 333.4342949699999, 341.54392081400056, 364.875395731, 354.54076521800016, 351.2394554890002, 353.5892385400002, 368.1770931420001, 370.1087077080001, 360.29517023200015, 369.7842897639998, 362.747730047, 358.16854275700007, 368.07336755000006, 360.6209545920001, 358.16854275700007, 341.0052215229998, 346.45005371399975, 367.2236358109999, 370.42131006, 358.80972429400026, 339.54593862799993, 344.844106991, 363.5066208659996, 351.66997396799934, 337.9557568480004, 329.5205162059997, 366.8077831410001, 377.2489935039998, 352.6212331740003, 334.17821931900016, 331.95134213300025, 350.3918610979995, 365.20477674799986, 350.9469521819992, 342.71899334399995, 352.18649393699934, 373.4877635700004, 372.74232167599985, 352.18649393699934, 337.6023513299997, 359.7578025580001, 371.61108036199994, 375.9666900999996, 358.5134527340001, 357.4235771499998, 364.0259615619998, 362.3327082810001, 369.5761257499994, 364.996494128, 351.66997396799934, 341.0052215229998, 353.81691125000043, 358.0647288519999, 347.423343594, 329.9294835759997, 328.65137070599985, 353.485632895, 358.89364295500036, 344.5350687909995, 333.02420755799994, 333.0508093980002, 352.5553073340002, 375.757932861, 358.60203681400026, 347.60718617099974, 369.55982251199976, 371.386761103, 368.28135340200015, 353.692844185, 343.99710621400027, 361.79926547099967, 368.83065431299974, 371.4177040219997, 354.7636862899999, 338.46983502200055, 361.6958062409999, 370.7617357419999, 369.91616350799995], \"power_mean\": 355.5333976274571, \"energy_millijoules\": 12662.199200063551, \"energy_joules\": 12.66219920006355, \"coremark_score\": 8427.67649, \"coremarks_per_mhz\": 5.2254938554067465, \"ulpmark_cm_score\": 23.69256676979891}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1894.66913228, 1909.930269056, 1917.6382107680001, 1908.011369928, 1899.794567936, 1899.97062, 1909.9525131970001, 1921.4831583240002, 1909.6646284799997, 1888.0006870079999, 1892.6586442770001, 1906.8612658109998, 1915.166677168, 1906.28421093, 1883.6926967010002, 1887.74016535, 1914.701840625, 1907.215248864, 1877.5809576559998], \"power_mean\": 1902.685098124158, \"energy_millijoules\": 9513.42549062079, \"energy_joules\": 9.51342549062079}}, \"1804800\": {\"active\": {\"elapsed_sec\": 31.810810405, \"elapsed_ns\": 31810810405, \"power_samples\": [412.73808189400006, 392.9345898209999, 408.48153942199997, 450.4496862400001, 428.39820212199993, 403.8968295520003, 404.1082580540001, 416.6815873559999, 440.43604444599987, 427.01393735799957, 409.75454871799957, 423.92439986399995, 437.89023756599954, 448.6496952810003, 417.63759750799954, 408.587218788, 421.5790489860001, 439.7910573260001, 446.9361466720002, 433.6118219160003, 427.86371765400054, 434.36261956199996, 433.1919044000001, 439.5839857320002, 434.8960295009997, 420.30152964599984, 418.06586596599936, 426.79982306799957, 430.42282577700007, 417.5332097159999, 401.6611310459998, 412.4194199579997, 427.01345712199964, 430.31693174999964, 404.3277351259999, 399.84865444199977, 415.18990260600003, 436.1702163910004, 437.7730865509998, 420.30152964599984, 421.79505597600064, 438.53153813699964, 442.15189589000056, 421.4752353839999, 409.542041228, 431.16672691799977, 441.2875172189997, 438.62078664599994, 432.7635866139999, 407.946424494, 418.81061010600024, 437.1288119110004, 438.832075926, 436.1623999510002, 415.0833512910003, 437.45094923099987, 437.55851220600016, 424.4539812779999, 407.20001019799975, 403.90273530500053, 422.96397698600003, 428.8306407979999, 430.3155900120005, 415.72156634700013, 402.09064531800004, 417.9570223090004, 430.95219610799995, 421.36541088600006, 420.1947700710002, 427.54291710999996, 434.68169244599994, 440.861564242, 436.5997982779995, 430.95219610799995, 425.4155822460002, 436.06598586599966, 443.51940844499995, 438.832075926, 422.00620518000005, 409.97090275799974, 435.6401389020002, 443.09378210999967, 433.0827482660002, 414.76591185100006, 409.011862285, 431.26587411399987, 429.3542774759999, 409.86461917800034, 398.155838916, 412.84676218499953, 449.9100049790004, 440.964844955, 404.96841038599996, 403.90273530500053, 414.6599364409999, 440.32411017799996, 432.0154971220004, 414.8724335259999, 421.0460493159994, 443.53352823600017, 443.0890725270001, 427.65488067399974, 409.65259706200004, 426.6927453459998, 445.00673272500035, 443.2986800340004, 430.30819868200024, 424.88190465599973, 430.6315000509994, 431.26587411399987, 438.2990231159997, 439.468563766, 418.49160416599943, 417.1056370020001, 427.32923318600024, 430.52423464599997, 410.28914403000044, 401.2386303659996, 414.125177074, 424.98835362, 427.6500337299999, 407.95150837500023, 396.76625754599945, 418.4930243169997, 441.60139192299994], \"power_mean\": 425.04265493087996, \"energy_millijoules\": 13520.951310044062, \"energy_joules\": 13.520951310044062, \"coremark_score\": 9435.742593, \"coremarks_per_mhz\": 5.2281375182845755, \"ulpmark_cm_score\": 22.187787909356977}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1900.545912408, 1889.7473706939998, 1897.4316419159998, 1905.6005267940002, 1915.43312016, 1907.3222910560005, 1904.2972819079998, 1899.3537589119999, 1911.254630025, 1915.929147475, 1907.5877535120003, 1892.68653795, 1885.9031367019998, 1907.4109300610003, 1916.55162276, 1912.5344646199999, 1886.3703764519998, 1883.1685438529998, 1908.9783217999998], \"power_mean\": 1902.5319667925264, \"energy_millijoules\": 9512.659833962633, \"energy_joules\": 9.512659833962633}}, \"2016000\": {\"active\": {\"elapsed_sec\": 28.485401291, \"elapsed_ns\": 28485401291, \"power_samples\": [519.6463659780002, 516.866155923, 521.6437293420004, 530.6663359560002, 526.4489331059999, 512.2839267420004, 497.3740956679999, 514.478475466, 532.7253952579999, 525.8912873460004, 499.0665844800001, 491.6227199060004, 527.2791013659998, 521.7274109160003, 501.9286963260006, 488.3912883869998, 506.22755659799986, 543.7716322740002, 526.9234004969999, 485.54644191900024, 486.93289535400027, 510.5880829709995, 527.5021636909996, 501.95465781999974, 504.9276342459998, 514.3124232529999, 530.9832089720003, 521.532179202, 496.0932215900002, 500.09988226999985, 527.4732648859999, 528.1426304119996, 525.3042873749996, 516.0881132700001, 526.1142310260002, 524.6147177760004, 528.3325491360006, 527.0560390410001, 508.64713446600035, 511.84065112800045, 515.8965394430002, 523.3381482059999, 503.53667071200016, 489.70978051500015, 497.7900149099996, 518.8680619739998, 521.3096509740003, 494.57602604199974, 485.1992572859999, 511.59309952200056, 531.9728725670002, 526.1142310260002, 507.4808917260002, 513.6464051250005, 530.2310217059999, 521.1981008339999, 506.2042629859998, 492.8795303759998, 522.3635141959999, 527.1382953339994, 525.6677705459997, 522.3635141959999, 495.0162153299998, 524.1684948909997, 528.8308334419999, 521.6664190060001, 517.3645638899998, 523.003802366, 538.9649728260001, 520.5577829819999, 509.3692009659999, 491.60319840099964, 501.1819652559998, 521.8384186859998, 513.2022029659997, 500.0162015960004, 491.60319840099964, 506.92755149100003, 516.0881132700001, 511.5637853979997, 515.7547479660002, 520.8640224659998, 527.6963867280001, 521.3932431959997, 524.1684948909997, 526.1968734360003, 515.9773720560001, 534.7192848899999, 526.7211588409996, 505.01096118099986, 498.51460796599986, 514.0606924360004, 530.3309208119999, 521.7274109160003, 508.9551266360004, 491.38340056399966, 509.2587557959996, 525.6385055340002, 499.8792535289999, 486.03646825099986, 497.2173896129998, 539.4928479809996, 524.1684948909997, 492.8345203030008, 486.38374246600006, 504.9001549659997, 523.9456698560002, 515.451980502, 501.81803889599996, 515.9773720560001, 528.589447674, 532.4204026140001], \"power_mean\": 514.2730520769107, \"energy_millijoules\": 14649.274261558143, \"energy_joules\": 14.649274261558142, \"coremark_score\": 10538.518284, \"coremarks_per_mhz\": 5.227439625, \"ulpmark_cm_score\": 20.47883018937288}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1912.8378212299997, 1912.00211358, 1889.8873853439998, 1896.90402021, 1916.945991621, 1904.120755264, 1890.2383965120002, 1873.770525, 1892.0717567999998, 1907.61005596, 1901.7578967180002, 1884.0114964, 1872.5205339359998, 1898.5612983360002, 1904.5168498379999, 1895.272401408, 1894.8062903, 1909.7089761500001, 1910.828104561], \"power_mean\": 1898.335403640421, \"energy_millijoules\": 9491.677018202105, \"energy_joules\": 9.491677018202104}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm6115/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 250 ms\nBaseline power usage: 1873 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 614 864 1017 1305 1420 1612 1804\n\n 300:   974     3.2 C/MHz     37 mW   11.5 J   26.1 I/mJ   308.0 s\n 614:  1995     3.2 C/MHz     60 mW    9.1 J   33.0 I/mJ   150.4 s\n 864:  2806     3.2 C/MHz     77 mW    8.2 J   36.4 I/mJ   106.9 s\n1017:  3305     3.2 C/MHz     89 mW    8.1 J   37.2 I/mJ    90.8 s\n1305:  4240     3.2 C/MHz    120 mW    8.5 J   35.3 I/mJ    70.8 s\n1420:  4614     3.2 C/MHz    134 mW    8.7 J   34.4 I/mJ    65.0 s\n1612:  5238     3.2 C/MHz    163 mW    9.3 J   32.1 I/mJ    57.3 s\n1804:  5846     3.2 C/MHz    200 mW   10.2 J   29.3 I/mJ    51.3 s\n\n\n===== CPU 4 =====\nFrequencies: 300 652 902 1056 1401 1536 1612 1804 2016\n\n 300:  1568     5.2 C/MHz     75 mW   14.3 J   21.0 I/mJ   191.3 s\n 652:  3415     5.2 C/MHz    122 mW   10.7 J   28.1 I/mJ    87.9 s\n 902:  4714     5.2 C/MHz    161 mW   10.3 J   29.3 I/mJ    63.7 s\n1056:  5515     5.2 C/MHz    191 mW   10.4 J   28.8 I/mJ    54.4 s\n1401:  7331     5.2 C/MHz    288 mW   11.8 J   25.5 I/mJ    40.9 s\n1536:  8028     5.2 C/MHz    330 mW   12.3 J   24.3 I/mJ    37.4 s\n1612:  8428     5.2 C/MHz    356 mW   12.7 J   23.7 I/mJ    35.6 s\n1804:  9436     5.2 C/MHz    425 mW   13.5 J   22.2 I/mJ    31.8 s\n2016: 10539     5.2 C/MHz    514 mW   14.6 J   20.5 I/mJ    28.5 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm6115/main/uptime.txt",
    "content": " 17:36:42 up 28 min,  load average: 0.82, 0.87, 0.98\n"
  },
  {
    "path": "results/sm6115/main/versions.txt",
    "content": "Kernel: Linux version 4.19.152-perf (mamles@cs-550292588298-default-boost-sg65m) (gcc version 11.2.0 (GCC)) #1 SMP PREEMPT Tue Dec 28 07:18:31 UTC 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm6115/second/cmdline.txt",
    "content": "rcupdate.rcu_expedited=1 rcu_nocbs=0-7 kpti=off console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0x4a90000 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 msm_rtb.filter=0x237 service_locator.enable=1 swiotlb=2048 loop.max_part=7 androidboot.fstab_suffix=default androidboot.init_fatal_reboot_target=recovery kpti=off buildvariant=user rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 androidboot.vbmeta.device=PARTUUID=99438b06-772c-ddbb-e890-ad6329220522 androidboot.vbmeta.device=PARTUUID=99438b06-772c-ddbb-e890-ad6329220522 androidboot.vbmeta.avb_version=1.0 androidboot.vbmeta.device_state=unlocked androidboot.vbmeta.hash_alg=sha256 androidboot.vbmeta.size=7552 androidboot.vbmeta.digest=e4b6507478876def33e12354408aabc981412c0c8d4f4b5b8cc2dcf5b4bc3ecd androidboot.vbmeta.invalidate_on_error=yes androidboot.veritymode=enforcing androidboot.bootdevice=4804000.ufshc androidboot.fstab_suffix=default androidboot.boot_devices=soc/4804000.ufshc androidboot.serialno=REDACTED androidboot.baseband=msm msm_drm.dsi_display0=qcom,mdss_dsi_ft8719_truly_v2_video: msm_drm.dsi_wp=302321 androidboot.dtbo_idx=0 androidboot.dtb_idx=0 androidboot.efuse=1 androidboot.cpuid=REDACTED androidboot.secureboot=1 androidboot.dp=0x0 powerup.reason=0x40001 androidboot.product.hardware.sku=citrus\n"
  },
  {
    "path": "results/sm6115/second/cpufreq_stats/0/time_in_state",
    "content": "300000 104536\n614400 15879\n864000 11531\n1017600 9916\n1305600 7900\n1420800 7321\n1612800 6565\n1804800 6194\n"
  },
  {
    "path": "results/sm6115/second/cpufreq_stats/0/total_trans",
    "content": "11\n"
  },
  {
    "path": "results/sm6115/second/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    614400    864000   1017600   1305600   1420800   1612800   1804800 \n   300000:         0         1         0         0         0         0         0         1 \n   614400:         0         0         1         0         0         0         0         0 \n   864000:         0         0         0         1         0         0         0         0 \n  1017600:         0         0         0         0         1         0         0         0 \n  1305600:         0         0         0         0         0         1         0         1 \n  1420800:         0         0         0         0         0         0         1         0 \n  1612800:         0         0         0         0         0         0         0         1 \n  1804800:         2         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm6115/second/cpufreq_stats/4/time_in_state",
    "content": "300000 20000\n652800 9638\n902400 7206\n1056000 6268\n1401600 4924\n1536000 4570\n1612800 4393\n1804800 4013\n2016000 108831\n"
  },
  {
    "path": "results/sm6115/second/cpufreq_stats/4/total_trans",
    "content": "11\n"
  },
  {
    "path": "results/sm6115/second/cpufreq_stats/4/trans_table",
    "content": "   From  :    To\n         :    300000    652800    902400   1056000   1401600   1536000   1612800   1804800   2016000 \n   300000:         0         1         0         0         0         0         0         0         1 \n   652800:         0         0         1         0         0         0         0         0         0 \n   902400:         0         0         0         1         0         0         0         0         0 \n  1056000:         0         0         0         0         1         0         0         0         0 \n  1401600:         0         0         0         0         0         1         0         0         0 \n  1536000:         0         0         0         0         0         0         1         0         0 \n  1612800:         0         0         0         0         0         0         0         1         0 \n  1804800:         0         0         0         0         0         0         0         0         1 \n  2016000:         2         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm6115/second/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 4 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nHardware\t: Qualcomm Technologies, Inc BENGAL\n"
  },
  {
    "path": "results/sm6115/second/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. BENGAL IDP;\nCompatible: qcom,bengal-idp;qcom,bengal;qcom,idp;\n"
  },
  {
    "path": "results/sm6115/second/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x51af8014]\n[    0.000000] Linux version 4.19.152-perf (mamles@af6f0d3b6e63) (clang version 14.0.0 (https://github.com/llvm/llvm-project.git 08f70adedb775ce6d41a1f8ad75c4bac225efb5b)) #1 SMP PREEMPT Wed Mar 16 19:33:28 WIB 2022\n[    0.000000] Machine model: Qualcomm Technologies, Inc. BENGAL IDP\n[    0.000000] efi: Getting EFI parameters from FDT:\n[    0.000000] efi: UEFI not found.\n[    0.000000] mem-offline: no memory to offline for DDR size:4258267136\n[    0.000000] OF: reserved mem: OVERLAP DETECTED!\n               disp_rdump_region@5c000000 (0x000000005c000000--0x000000005cf00000) overlaps with cont_splash_region@5c000000 (0x000000005c000000--0x000000005cf00000)\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fec00000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe400000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fd000000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fc000000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node user_contig_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fa000000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f9800000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f3c00000, size 92 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000045700000, size 6 MiB\n[    0.000000] OF: reserved mem: initialized node hyp_region@45700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000045e00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node xbl_aop_region@45e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000045fff000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node sec_apps_region@45fff000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000046000000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node smem_region@46000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000004ab00000, size 105 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@4ab00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000051400000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region@51400000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000051900000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_msa_region@51900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000051a00000, size 10 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_regions@51a00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000053800000, size 34 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region@53800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000055a00000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_fw_region@55A00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000055a10000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_gsi_region@55A10000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000055a15000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@55A15000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000060000000, size 57 MiB\n[    0.000000] OF: reserved mem: initialized node removed_region@60000000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 982952\n[    0.000000]   Normal zone: 15359 pages used for memmap\n[    0.000000]   Normal zone: 0 pages reserved\n[    0.000000]   Normal zone: 982952 pages, LIFO batch:63\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.0 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.1\n[    0.000000] random: fast init done\n[    0.000000] percpu: Embedded 24 pages/cpu s60312 r8192 d29800 u98304\n[    0.000000] pcpu-alloc: s60312 r8192 d29800 u98304 alloc=24*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: enabling workaround for ARM erratum 845719\n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 967593\n[    0.000000] Kernel command line: rcupdate.rcu_expedited=1 rcu_nocbs=0-7 kpti=off console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0x4a90000 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 msm_rtb.filter=0x237 service_locator.enable=1 swiotlb=2048 loop.max_part=7 androidboot.fstab_suffix=default androidboot.init_fatal_reboot_target=recovery kpti=off buildvariant=user rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 androidboot.vbmeta.device=PARTUUID=99438b06-772c-ddbb-e890-ad6329220522 androidboot.vbmeta.device=PARTUUID=99438b06-772c-ddbb-e890-ad6329220522 androidboot.vbmeta.avb_version=1.0 androidboot.vbmeta.device_state=unlocked androidboot.vbmeta.hash_alg=sha256 androidboot.vbmeta.size=7552 androidboot.vbmeta.digest=e4b6507478876def33e12354408aabc981412c0c8d4f4b5b8cc2dcf5b4bc3ecd androidboot.vbmeta.invalidate_on_error=yes androidboot.veritymode=enfor\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off\n[    0.000000] Memory: 3588424K/3931808K available (21496K kernel code, 2730K rwdata, 11700K rodata, 1024K init, 6034K bss, 146776K reserved, 196608K cma-reserved)\n[    0.000000] random: random: get_random_u64 called from __kmem_cache_create+0x3c/0x4bc with crng_init=1\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: Distributor has no Range Selector support\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: CPU0: Trapping CNTVCT access\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000014] clocksource: Switched to clocksource arch_sys_counter\n[    0.002173] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.002183] pid_max: default: 32768 minimum: 301\n[    0.002309] Security Framework initialized\n[    0.002315] SELinux:  Initializing.\n[    0.002434] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.002447] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.003773] ASID allocator initialised with 65536 entries\n[    0.003858] rcu: Hierarchical SRCU implementation.\n[    0.005979] scm_mem_protection_init: SCM call failed\n[    0.007220] shmbridge is enabled\n[    0.007396] EFI services will not be available.\n[    0.007787] smp: Bringing up secondary CPUs ...\n[    0.010044] Detected VIPT I-cache on CPU1\n[    0.010124] arch_timer: CPU1: Trapping CNTVCT access\n[    0.010132] CPU1: Booted secondary processor 0x0000000001 [0x51af8014]\n[    0.012383] Detected VIPT I-cache on CPU2\n[    0.012456] arch_timer: CPU2: Trapping CNTVCT access\n[    0.012462] CPU2: Booted secondary processor 0x0000000002 [0x51af8014]\n[    0.014645] Detected VIPT I-cache on CPU3\n[    0.014718] arch_timer: CPU3: Trapping CNTVCT access\n[    0.014724] CPU3: Booted secondary processor 0x0000000003 [0x51af8014]\n[    0.017671] CPU features: enabling workaround for ARM erratum 858921\n[    0.017730] SSBD disabled by kernel configuration\n[    0.017739] CPU features: enabling workaround for Speculative Store Bypass Disable\n[    0.017754] Detected VIPT I-cache on CPU4\n[    0.017856] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.017890] arch_timer: CPU4: Trapping CNTVCT access\n[    0.017906] CPU4: Booted secondary processor 0x0000000100 [0x51af8002]\n[    0.020517] Detected VIPT I-cache on CPU5\n[    0.020609] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.020635] arch_timer: CPU5: Trapping CNTVCT access\n[    0.020651] CPU5: Booted secondary processor 0x0000000101 [0x51af8002]\n[    0.023232] Detected VIPT I-cache on CPU6\n[    0.023327] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.023352] arch_timer: CPU6: Trapping CNTVCT access\n[    0.023369] CPU6: Booted secondary processor 0x0000000102 [0x51af8002]\n[    0.025942] Detected VIPT I-cache on CPU7\n[    0.026040] arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.026066] arch_timer: CPU7: Trapping CNTVCT access\n[    0.026083] CPU7: Booted secondary processor 0x0000000103 [0x51af8002]\n[    0.026554] smp: Brought up 1 node, 8 CPUs\n[    0.026561] SMP: Total of 8 processors activated.\n[    0.026568] CPU features: detected: GIC system register CPU interface\n[    0.026571] CPU features: detected: 32-bit EL0 Support\n[    0.026676] CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching\n[    0.026680] CPU: All CPU(s) started at EL1\n[    0.026745] alternatives: patching kernel code\n[    0.071961] Registered cp15_barrier emulation handler\n[    0.071979] Registered setend emulation handler\n[    0.072345] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.072355] futex hash table entries: 2048 (order: 5, 131072 bytes)\n[    0.077956] pinctrl core: initialized pinctrl subsystem\n[    0.078326] DMI not present or invalid.\n[    0.078498] NET: Registered protocol family 16\n[    0.080365] schedtune: configured to support 6 boost groups\n[    0.080467] audit: initializing netlink subsys (disabled)\n[    0.080950] cpuidle: using governor menu\n[    0.080973] cpuidle: using governor qcom\n[    0.081095] NET: Registered protocol family 42\n[    0.082106] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.082231] audit: type=2000 audit(0.079:1): state=initialized audit_enabled=0 res=1\n[    0.083393] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.083891] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.084121] exit: IPA_USB init success!\n[    0.087422] console [pstore-1] enabled\n[    0.087487] pstore: Registered ramoops as persistent store backend\n[    0.087490] ramoops: attached 0x400000@0x64000000, ecc: 0/0\n[    0.091804] platform 61800000.qseecom: assigned reserved memory node qseecom_region\n[    0.093335] platform ab00000.qcom,lpass: assigned reserved memory node pil_adsp_region@53800000\n[    0.093475] platform b300000.qcom,turing: assigned reserved memory node cdsp_regions@51a00000\n[    0.093549] platform soc:mem_dump: assigned reserved memory node mem_dump_region\n[    0.094199] ------------[ cut here ]------------\n[    0.094244] WARNING: CPU: 0 PID: 1 at drivers/irqchip/irq-gic-v3.c:1057 gic_irq_domain_translate+0x13c/0x148\n[    0.094247] Modules linked in:\n[    0.094255] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.19.152-perf #1\n[    0.094257] Hardware name: Qualcomm Technologies, Inc. BENGAL IDP (DT)\n[    0.094262] pstate: 60400005 (nZCv daif +PAN -UAO)\n[    0.094267] pc : gic_irq_domain_translate+0x13c/0x148\n[    0.094271] lr : gic_irq_domain_translate+0x138/0x148\n[    0.094273] sp : ffffff800805b660\n[    0.094276] x29: ffffff800805b660 x28: 0000000000000000 \n[    0.094280] x27: ffffff990bb586bc x26: 0000000000000000 \n[    0.094284] x25: ffffff990bc7c000 x24: 0000000000000001 \n[    0.094288] x23: ffffffc47a9b1980 x22: ffffff800805b838 \n[    0.094291] x21: ffffffc385ffdb00 x20: 000000000000001c \n[    0.094295] x19: 0000000000000001 x18: 0000000000000000 \n[    0.094299] x17: 00000000001fcd10 x16: 0000000000000000 \n[    0.094303] x15: 0000000000000086 x14: 0000000000000034 \n[    0.094307] x13: 0000000000000000 x12: 0000000000000000 \n[    0.094310] x11: 0000000000000000 x10: ffffffffffffffff \n[    0.094314] x9 : a0648cdc035e8b00 x8 : a0648cdc035e8b00 \n[    0.094318] x7 : 0000000000000000 x6 : ffffff990c0b7458 \n[    0.094322] x5 : 00000000001fcd10 x4 : 000000000000000e \n[    0.094326] x3 : 0000000000002d2d x2 : ffffffffffffff64 \n[    0.094329] x1 : 0000000000000000 x0 : 0000000000000000 \n[    0.094334] Call trace:\n[    0.094339]  gic_irq_domain_translate+0x13c/0x148\n[    0.094343]  gic_irq_domain_alloc+0x4c/0x220\n[    0.094349]  irq_domain_alloc_irqs_parent+0x20/0x34\n[    0.094354]  msm_mpm_gic_chip_alloc+0xe8/0x168\n[    0.094358]  __irq_domain_alloc_irqs+0x18c/0x2d8\n[    0.094362]  irq_create_fwspec_mapping+0x258/0x374\n[    0.094365]  irq_create_of_mapping+0x5c/0x80\n[    0.094371]  of_irq_to_resource+0xa8/0x1ac\n[    0.094375]  of_irq_to_resource_table+0x38/0x70\n[    0.094381]  of_device_alloc+0x118/0x1a4\n[    0.094385]  of_platform_device_create_pdata+0x6c/0x104\n[    0.094390]  of_platform_bus_create+0x1e4/0x3bc\n[    0.094394]  of_platform_bus_create+0x230/0x3bc\n[    0.094398]  of_platform_populate+0x70/0xc0\n[    0.094404]  of_platform_default_populate_init+0xac/0xc8\n[    0.094409]  do_one_initcall+0x118/0x280\n[    0.094415]  do_initcall_level+0x140/0x168\n[    0.094418]  do_basic_setup+0x30/0x48\n[    0.094422]  kernel_init_freeable+0xac/0x12c\n[    0.094428]  kernel_init+0x14/0x28c\n[    0.094432]  ret_from_fork+0x10/0x18\n[    0.094439] ---[ end trace 4342d910bfd8d0f9 ]---\n[    0.094475] ------------[ cut here ]------------\n[    0.094508] WARNING: CPU: 0 PID: 1 at drivers/irqchip/irq-gic-v3.c:1057 gic_irq_domain_translate+0x13c/0x148\n[    0.094509] Modules linked in:\n[    0.094515] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.152-perf #1\n[    0.094517] Hardware name: Qualcomm Technologies, Inc. BENGAL IDP (DT)\n[    0.094521] pstate: 60400005 (nZCv daif +PAN -UAO)\n[    0.094525] pc : gic_irq_domain_translate+0x13c/0x148\n[    0.094530] lr : gic_irq_domain_translate+0x138/0x148\n[    0.094532] sp : ffffff800805b660\n[    0.094534] x29: ffffff800805b660 x28: 0000000000000000 \n[    0.094538] x27: ffffff990bb586bc x26: 0000000000000000 \n[    0.094542] x25: ffffff990bc7c000 x24: 0000000000000001 \n[    0.094546] x23: ffffffc47a9b1000 x22: ffffff800805b838 \n[    0.094549] x21: ffffffc385ffdb00 x20: 000000000000001d \n[    0.094553] x19: 0000000000000001 x18: 0000000000000000 \n[    0.094557] x17: 00000000001fc2ec x16: 0000000000000000 \n[    0.094561] x15: 0000000000000086 x14: 0000000000000034 \n[    0.094564] x13: 0000000000000000 x12: 0000000000000000 \n[    0.094568] x11: 0000000000000000 x10: ffffffffffffffff \n[    0.094572] x9 : a0648cdc035e8b00 x8 : a0648cdc035e8b00 \n[    0.094576] x7 : 0000000000000000 x6 : ffffff990c0b7e7c \n[    0.094579] x5 : 00000000001fc2ec x4 : 000000000000000e \n[    0.094583] x3 : 0000000000002d2d x2 : ffffffffffffff35 \n[    0.094587] x1 : 0000000000000000 x0 : 0000000000000000 \n[    0.094590] Call trace:\n[    0.094595]  gic_irq_domain_translate+0x13c/0x148\n[    0.094599]  gic_irq_domain_alloc+0x4c/0x220\n[    0.094603]  irq_domain_alloc_irqs_parent+0x20/0x34\n[    0.094607]  msm_mpm_gic_chip_alloc+0xe8/0x168\n[    0.094611]  __irq_domain_alloc_irqs+0x18c/0x2d8\n[    0.094615]  irq_create_fwspec_mapping+0x258/0x374\n[    0.094619]  irq_create_of_mapping+0x5c/0x80\n[    0.094622]  of_irq_to_resource+0xa8/0x1ac\n[    0.094626]  of_irq_to_resource_table+0x38/0x70\n[    0.094630]  of_device_alloc+0x118/0x1a4\n[    0.094635]  of_platform_device_create_pdata+0x6c/0x104\n[    0.094639]  of_platform_bus_create+0x1e4/0x3bc\n[    0.094643]  of_platform_bus_create+0x230/0x3bc\n[    0.094648]  of_platform_populate+0x70/0xc0\n[    0.094652]  of_platform_default_populate_init+0xac/0xc8\n[    0.094656]  do_one_initcall+0x118/0x280\n[    0.094659]  do_initcall_level+0x140/0x168\n[    0.094663]  do_basic_setup+0x30/0x48\n[    0.094666]  kernel_init_freeable+0xac/0x12c\n[    0.094670]  kernel_init+0x14/0x28c\n[    0.094674]  ret_from_fork+0x10/0x18\n[    0.094677] ---[ end trace 4342d910bfd8d0fa ]---\n[    0.095579] platform soc:qcom,smem: assigned reserved memory node smem_region@46000000\n[    0.095850] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.097527] platform 5ab0000.qcom,venus: assigned reserved memory node pil_video_region@51400000\n[    0.097760] platform 6080000.qcom,mss: assigned reserved memory node modem_region@4ab00000\n[    0.098606] ------------[ cut here ]------------\n[    0.098643] WARNING: CPU: 0 PID: 1 at drivers/irqchip/irq-gic-v3.c:1057 gic_irq_domain_translate+0x13c/0x148\n[    0.098645] Modules linked in:\n[    0.098652] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.152-perf #1\n[    0.098654] Hardware name: Qualcomm Technologies, Inc. BENGAL IDP (DT)\n[    0.098658] pstate: 60400005 (nZCv daif +PAN -UAO)\n[    0.098663] pc : gic_irq_domain_translate+0x13c/0x148\n[    0.098668] lr : gic_irq_domain_translate+0x138/0x148\n[    0.098670] sp : ffffff800805b660\n[    0.098672] x29: ffffff800805b660 x28: 0000000000000000 \n[    0.098676] x27: ffffff990bb586bc x26: 0000000000000000 \n[    0.098680] x25: ffffff990bc7c000 x24: 0000000000000001 \n[    0.098683] x23: ffffffc47aa87f80 x22: ffffff800805b838 \n[    0.098687] x21: ffffffc385ffdb00 x20: 0000000000000030 \n[    0.098691] x19: 0000000000000001 x18: 0000000000000000 \n[    0.098695] x17: 00000000001fb664 x16: 0000000000000000 \n[    0.098699] x15: 0000000000000086 x14: 0000000000000034 \n[    0.098702] x13: 0000000000000000 x12: 0000000000000000 \n[    0.098706] x11: 0000000000000000 x10: ffffffffffffffff \n[    0.098710] x9 : a0648cdc035e8b00 x8 : a0648cdc035e8b00 \n[    0.098714] x7 : 0000000000000000 x6 : ffffff990c0b8b04 \n[    0.098717] x5 : 00000000001fb664 x4 : 000000000000000e \n[    0.098721] x3 : 0000000000002d2d x2 : ffffffffffffff02 \n[    0.098725] x1 : 0000000000000000 x0 : 0000000000000000 \n[    0.098729] Call trace:\n[    0.098734]  gic_irq_domain_translate+0x13c/0x148\n[    0.098738]  gic_irq_domain_alloc+0x4c/0x220\n[    0.098743]  irq_domain_alloc_irqs_parent+0x20/0x34\n[    0.098747]  msm_mpm_gic_chip_alloc+0xe8/0x168\n[    0.098751]  __irq_domain_alloc_irqs+0x18c/0x2d8\n[    0.098755]  irq_create_fwspec_mapping+0x258/0x374\n[    0.098759]  irq_create_of_mapping+0x5c/0x80\n[    0.098764]  of_irq_to_resource+0xa8/0x1ac\n[    0.098768]  of_irq_to_resource_table+0x38/0x70\n[    0.098772]  of_device_alloc+0x118/0x1a4\n[    0.098777]  of_platform_device_create_pdata+0x6c/0x104\n[    0.098781]  of_platform_bus_create+0x1e4/0x3bc\n[    0.098785]  of_platform_bus_create+0x230/0x3bc\n[    0.098790]  of_platform_populate+0x70/0xc0\n[    0.098794]  of_platform_default_populate_init+0xac/0xc8\n[    0.098798]  do_one_initcall+0x118/0x280\n[    0.098803]  do_initcall_level+0x140/0x168\n[    0.098807]  do_basic_setup+0x30/0x48\n[    0.098810]  kernel_init_freeable+0xac/0x12c\n[    0.098815]  kernel_init+0x14/0x28c\n[    0.098819]  ret_from_fork+0x10/0x18\n[    0.098822] ---[ end trace 4342d910bfd8d0fb ]---\n[    0.098862] ------------[ cut here ]------------\n[    0.098893] WARNING: CPU: 0 PID: 1 at drivers/irqchip/irq-gic-v3.c:1057 gic_irq_domain_translate+0x13c/0x148\n[    0.098895] Modules linked in:\n[    0.098900] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.152-perf #1\n[    0.098902] Hardware name: Qualcomm Technologies, Inc. BENGAL IDP (DT)\n[    0.098905] pstate: 60400005 (nZCv daif +PAN -UAO)\n[    0.098910] pc : gic_irq_domain_translate+0x13c/0x148\n[    0.098915] lr : gic_irq_domain_translate+0x138/0x148\n[    0.098916] sp : ffffff800805b660\n[    0.098918] x29: ffffff800805b660 x28: 0000000000000000 \n[    0.098922] x27: ffffff990bb586bc x26: 0000000000000000 \n[    0.098926] x25: ffffff990bc7c000 x24: 0000000000000001 \n[    0.098930] x23: ffffffc47aa87980 x22: ffffff800805b838 \n[    0.098934] x21: ffffffc385ffdb00 x20: 0000000000000031 \n[    0.098938] x19: 0000000000000001 x18: 0000000000000000 \n[    0.098941] x17: 00000000001fac30 x16: 0000000000000000 \n[    0.098945] x15: 0000000000000086 x14: 0000000000000034 \n[    0.098949] x13: 0000000000000000 x12: 0000000000000000 \n[    0.098953] x11: 0000000000000000 x10: ffffffffffffffff \n[    0.098957] x9 : a0648cdc035e8b00 x8 : a0648cdc035e8b00 \n[    0.098960] x7 : 0000000000000000 x6 : ffffff990c0b9538 \n[    0.098964] x5 : 00000000001fac30 x4 : 000000000000000e \n[    0.098968] x3 : 0000000000002d2d x2 : fffffffffffffed3 \n[    0.098972] x1 : 0000000000000000 x0 : 0000000000000000 \n[    0.098975] Call trace:\n[    0.098980]  gic_irq_domain_translate+0x13c/0x148\n[    0.098984]  gic_irq_domain_alloc+0x4c/0x220\n[    0.098988]  irq_domain_alloc_irqs_parent+0x20/0x34\n[    0.098992]  msm_mpm_gic_chip_alloc+0xe8/0x168\n[    0.098996]  __irq_domain_alloc_irqs+0x18c/0x2d8\n[    0.099000]  irq_create_fwspec_mapping+0x258/0x374\n[    0.099004]  irq_create_of_mapping+0x5c/0x80\n[    0.099007]  of_irq_to_resource+0xa8/0x1ac\n[    0.099011]  of_irq_to_resource_table+0x38/0x70\n[    0.099015]  of_device_alloc+0x118/0x1a4\n[    0.099020]  of_platform_device_create_pdata+0x6c/0x104\n[    0.099024]  of_platform_bus_create+0x1e4/0x3bc\n[    0.099028]  of_platform_bus_create+0x230/0x3bc\n[    0.099033]  of_platform_populate+0x70/0xc0\n[    0.099037]  of_platform_default_populate_init+0xac/0xc8\n[    0.099040]  do_one_initcall+0x118/0x280\n[    0.099044]  do_initcall_level+0x140/0x168\n[    0.099048]  do_basic_setup+0x30/0x48\n[    0.099051]  kernel_init_freeable+0xac/0x12c\n[    0.099055]  kernel_init+0x14/0x28c\n[    0.099059]  ret_from_fork+0x10/0x18\n[    0.099062] ---[ end trace 4342d910bfd8d0fc ]---\n[    0.099354] platform soc:qcom,ipa_fws: assigned reserved memory node ipa_fw_region@55A00000\n[    0.117997] ------------[ cut here ]------------\n[    0.118045] WARNING: CPU: 0 PID: 1 at drivers/irqchip/irq-gic-v3.c:1057 gic_irq_domain_translate+0x13c/0x148\n[    0.118047] Modules linked in:\n[    0.118056] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.152-perf #1\n[    0.118058] Hardware name: Qualcomm Technologies, Inc. BENGAL IDP (DT)\n[    0.118063] pstate: 60400005 (nZCv daif +PAN -UAO)\n[    0.118068] pc : gic_irq_domain_translate+0x13c/0x148\n[    0.118072] lr : gic_irq_domain_translate+0x138/0x148\n[    0.118074] sp : ffffff800805b660\n[    0.118077] x29: ffffff800805b660 x28: 0000000000000000 \n[    0.118081] x27: ffffff990bb586bc x26: 0000000000000000 \n[    0.118085] x25: ffffff990bc7c000 x24: 0000000000000001 \n[    0.118089] x23: ffffffc47a47b800 x22: ffffff800805b838 \n[    0.118093] x21: ffffffc385ffdb00 x20: 00000000000000a1 \n[    0.118096] x19: 0000000000000001 x18: 0000000000000000 \n[    0.118100] x17: 00000000001fa168 x16: 0000000000000000 \n[    0.118104] x15: 0000000000000086 x14: 0000000000000034 \n[    0.118107] x13: 0000000000000000 x12: 0000000000000000 \n[    0.118111] x11: 0000000000000000 x10: ffffffffffffffff \n[    0.118115] x9 : a0648cdc035e8b00 x8 : a0648cdc035e8b00 \n[    0.118119] x7 : 0000000000000000 x6 : ffffff990c0ba000 \n[    0.118123] x5 : 00000000001fa168 x4 : 000000000000000e \n[    0.118126] x3 : 0000000000002d2d x2 : fffffffffffffea3 \n[    0.118130] x1 : 0000000000000000 x0 : 0000000000000000 \n[    0.118134] Call trace:\n[    0.118140]  gic_irq_domain_translate+0x13c/0x148\n[    0.118144]  gic_irq_domain_alloc+0x4c/0x220\n[    0.118150]  irq_domain_alloc_irqs_parent+0x20/0x34\n[    0.118155]  msm_mpm_gic_chip_alloc+0xe8/0x168\n[    0.118159]  __irq_domain_alloc_irqs+0x18c/0x2d8\n[    0.118163]  irq_create_fwspec_mapping+0x258/0x374\n[    0.118167]  irq_create_of_mapping+0x5c/0x80\n[    0.118173]  of_irq_to_resource+0xa8/0x1ac\n[    0.118177]  of_irq_to_resource_table+0x38/0x70\n[    0.118182]  of_device_alloc+0x118/0x1a4\n[    0.118187]  of_platform_device_create_pdata+0x6c/0x104\n[    0.118191]  of_platform_bus_create+0x1e4/0x3bc\n[    0.118195]  of_platform_bus_create+0x230/0x3bc\n[    0.118199]  of_platform_populate+0x70/0xc0\n[    0.118205]  of_platform_default_populate_init+0xac/0xc8\n[    0.118210]  do_one_initcall+0x118/0x280\n[    0.118216]  do_initcall_level+0x140/0x168\n[    0.118220]  do_basic_setup+0x30/0x48\n[    0.118223]  kernel_init_freeable+0xac/0x12c\n[    0.118230]  kernel_init+0x14/0x28c\n[    0.118234]  ret_from_fork+0x10/0x18\n[    0.118237] ---[ end trace 4342d910bfd8d0fd ]---\n[    0.128231] Unable to find DT property: qcom,msm-imem-download_mode\n[    0.129626] Unable to find DT property: qcom,msm-imem-emergency_download_mode\n[    0.130499] msm_watchdog f017000.qcom,wdt: wdog absent resource not present\n[    0.130764] msm_watchdog f017000.qcom,wdt: MSM Watchdog Initialized\n[    0.132383] MSM Memory Dump base table set up\n[    0.132390] MSM Memory Dump apps data table set up\n[    0.132450] Minidump: Entry name already exist.\n[    0.132455] msm_mem_dump soc:mem_dump: Mini dump entry failed id = 101\n[    0.132461] Minidump: Entry name already exist.\n[    0.132465] msm_mem_dump soc:mem_dump: Mini dump entry failed id = 102\n[    0.132470] Minidump: Entry name already exist.\n[    0.132474] msm_mem_dump soc:mem_dump: Mini dump entry failed id = 103\n[    0.132499] Minidump: Entry name already exist.\n[    0.132502] msm_mem_dump soc:mem_dump: Mini dump entry failed id = 133\n[    0.132508] Minidump: Entry name already exist.\n[    0.132512] msm_mem_dump soc:mem_dump: Mini dump entry failed id = 134\n[    0.132518] Minidump: Entry name already exist.\n[    0.132522] msm_mem_dump soc:mem_dump: Mini dump entry failed id = 135\n[    0.133524] qcom_glink_rpm soc:rpm-glink: failed to register early notif -22\n[    0.134089] sps:sps is ready.\n[    0.140326] spmi spmi-0: PMIC arbiter version v5 (0x50010000)\n[    0.143474] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.145355] qcom_smd_rpm_probe: RPM-SMD running version 0\n[    0.159287] cryptd: max_cpu_qlen set to 1000\n[    0.163795] Minidump: Enabled with max number of regions 200\n[    0.239195] KPI: Bootloader start count = 74237\n[    0.239201] KPI: Bootloader end count = 138581\n[    0.239203] KPI: Bootloader display count = 1411674752\n[    0.239205] KPI: Bootloader load kernel count = 3406480209\n[    0.239209] KPI: Kernel MPM timestamp = 154089\n[    0.239211] KPI: Kernel MPM Clock frequency = 32768\n[    0.239229] socinfo_print: v0.15, id=444, ver=1.0, raw_id=333, raw_ver=0, hw_plat=34, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65581, pmic_die_revision=65537 foundry_id=2 serial_number=2538571322 num_pmics=2 chip_family=0x6a raw_device_family=0x9 raw_device_number=0x2 nproduct_id=0x41c num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xc ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.239301] mem-offline: System booted with no zone movable memory blocks. Cannot perform memory offlining\n[    0.241663] arm-smmu 59a0000.kgsl-smmu: Couldn't get clock: gcc_gpu_memnoc_gfx\n[    0.242265] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.242270] arm-smmu c600000.apps-smmu: Bus client registration failed\n[    0.242680] Error: Driver 'arm-smmu' is already registered, aborting...\n[    0.242720] pcba config =25.\n[    0.242951] SCSI subsystem initialized\n[    0.243071] usbcore: registered new interface driver usbfs\n[    0.243103] usbcore: registered new interface driver hub\n[    0.243313] usbcore: registered new device driver usb\n[    0.243532] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.243548] usb_phy_generic soc:usb_nop_phy: Linked as a consumer to regulator.0\n[    0.244136] xiaomi_touch_probe enter\n[    0.244140] xiaomi_touch_parse_dt touch,name:xiaomi-touch\n[    0.244232] xiaomi_touch_probe over\n[    0.244609] qcom,qpnp-power-on 1c40000.qcom,spmi:qcom,pmi632@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from CBL (External Power Supply) and 'cold' boot\n[    0.244634] qcom,qpnp-power-on 1c40000.qcom,spmi:qcom,pmi632@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from SOFT (Software)\n[    0.244822] qcom,qpnp-power-on 1c40000.qcom,spmi:qcom,pm6125@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.244845] qcom,qpnp-power-on 1c40000.qcom,spmi:qcom,pm6125@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.245013] input: qpnp_pon as /devices/platform/soc/1c40000.qcom,spmi/spmi-0/spmi0-00/1c40000.qcom,spmi:qcom,pm6125@0:qcom,power-on@800/input/input0\n[    0.245798] media: Linux media interface: v0.10\n[    0.245819] videodev: Linux video capture interface: v2.00\n[    0.250257] thermal_sys: of_parse_thermal_message board sensor: VIRTUAL-SENSOR\n[    0.254637] qcom-cpufreq-hw f521000.qcom,cpufreq-hw: CPUFreq resource init failed\n[    0.256142] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.256238] platform soc:qcom,ion:qcom,ion-heap@26: assigned reserved memory node user_contig_region\n[    0.256336] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.256427] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.260170] ION heap system created\n[    0.270164] ION heap secure_heap created\n[    0.270176] ION heap secure_display created at 0x00000000f3c00000 with size 5c00000\n[    0.270181] ION heap user_contig created at 0x00000000fc000000 with size 1000000\n[    0.270186] ION heap qsecom created at 0x00000000fd000000 with size 1400000\n[    0.270189] ION heap qsecom_ta created at 0x00000000fec00000 with size 1000000\n[    0.271399] PMIC@SID2: PMI632 v2.0 options: 0, 0, 0, 0\n[    0.271522] PMIC@SID0: PM6125 v1.1 options: 0, 0, 0, 0\n[    0.272368] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.272372] ipa ipa3_pre_init:6708 fail to register with bus mgr!\n[    0.272401] ipa ipa3_plat_drv_probe:8255 ipa3_init failed\n[    0.281375] SDAM base=0xb600 size=128 registered successfully\n[    0.281503] Advanced Linux Sound Architecture Driver Initialized.\n[    0.281830] Bluetooth: Core ver 2.22\n[    0.281844] NET: Registered protocol family 31\n[    0.281847] Bluetooth: HCI device and connection manager initialized\n[    0.281853] Bluetooth: HCI socket layer initialized\n[    0.281857] Bluetooth: L2CAP socket layer initialized\n[    0.281863] Bluetooth: SCO socket layer initialized\n[    0.281869] NetLabel: Initializing\n[    0.281871] NetLabel:  domain hash size = 128\n[    0.281873] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\n[    0.281917] NetLabel:  unlabeled traffic allowed by default\n[    0.288604] qcom-clk-smd-rpm soc:qcom,rpmcc: Registered RPM clocks\n[    0.310276] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=5500mV ncp_voltage=5500mV bst_voltage=5650mV\n[    0.310586] pm6125_s3_level: Bringing 1uV into 16-16uV\n[    0.310816] pm6125_s3_floor_level: Bringing 1uV into 16-16uV\n[    0.311122] gpu_cx_gdsc: supplied by pm6125_s3_level\n[    0.311136] gpu_gx_gdsc: supplied by pm6125_s3_level\n[    0.311275] pm6125_s3_level_ao: Bringing 1uV into 16-16uV\n[    0.311667] pm6125_s5_level: Bringing 1uV into 16-16uV\n[    0.311862] pm6125_s5_floor_level: Bringing 1uV into 16-16uV\n[    0.312283] pm6125_s5_level_ao: Bringing 1uV into 16-16uV\n[    0.313630] pm6125_l2_level: Bringing 1uV into 16-16uV\n[    0.313884] pm6125_l3_level: Bringing 1uV into 16-16uV\n[    0.319285] bengal-dispcc 5f00000.qcom,dispcc: Linked as a consumer to regulator.15\n[    0.319333] bengal-dispcc 5f00000.qcom,dispcc: Dropping the link to regulator.15\n[    0.319492] gcc-bengal 1400000.qcom,gcc: Linked as a consumer to regulator.15\n[    0.319508] gcc-bengal 1400000.qcom,gcc: Linked as a consumer to regulator.17\n[    0.319524] gcc-bengal 1400000.qcom,gcc: Linked as a consumer to regulator.18\n[    0.328284] gcc-bengal 1400000.qcom,gcc: Registered GCC clocks\n[    0.328397] bengal-gpucc 5990000.qcom,gpucc: Linked as a consumer to regulator.15\n[    0.328416] bengal-gpucc 5990000.qcom,gpucc: Linked as a consumer to regulator.18\n[    0.329343] gpu_cc_gx_gfx3d_clk_src: set OPP pair(320000000 Hz: 64 uV) on 5900000.qcom,kgsl-3d0\n[    0.329367] gpu_cc_gx_gfx3d_clk_src: set OPP pair(980000000 Hz: 416 uV) on 5900000.qcom,kgsl-3d0\n[    0.329422] bengal-gpucc 5990000.qcom,gpucc: Registered GPUCC clocks\n[    0.329660] arm-smmu 59a0000.kgsl-smmu: Linked as a consumer to regulator.11\n[    0.329720] arm-smmu 59a0000.kgsl-smmu: \tnon-coherent table walk\n[    0.329724] arm-smmu 59a0000.kgsl-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.329729] arm-smmu 59a0000.kgsl-smmu: \tstream matching with 4 register groups\n[    0.344513] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.344522] arm-smmu c600000.apps-smmu: Bus client registration failed\n[    0.344687] qcom-cpufreq-hw f521000.qcom,cpufreq-hw: index=0 freq=300000 volt=588000, core_count 7\n[    0.344719] qcom-cpufreq-hw f521000.qcom,cpufreq-hw: index=1 freq=614400 volt=588000, core_count 7\n[    0.344730] qcom-cpufreq-hw f521000.qcom,cpufreq-hw: index=2 freq=864000 volt=648000, core_count 7\n[    0.344742] qcom-cpufreq-hw f521000.qcom,cpufreq-hw: index=3 freq=1017600 volt=680000, core_count 7\n[    0.344753] qcom-cpufreq-hw f521000.qcom,cpufreq-hw: index=4 freq=1305600 volt=744000, core_count 7\n[    0.344765] qcom-cpufreq-hw f521000.qcom,cpufreq-hw: index=5 freq=1420800 volt=772000, core_count 7\n[    0.344776] qcom-cpufreq-hw f521000.qcom,cpufreq-hw: index=6 freq=1612800 volt=816000, core_count 7\n[    0.344787] qcom-cpufreq-hw f521000.qcom,cpufreq-hw: index=7 freq=1804800 volt=868000, core_count 7\n[    0.344799] qcom-cpufreq-hw f521000.qcom,cpufreq-hw: index=8 freq=1804800 volt=868000, core_count 7\n[    0.344831] qcom-cpufreq-hw f521000.qcom,cpufreq-hw: index=0 freq=300000 volt=588000, core_count 7\n[    0.344853] qcom-cpufreq-hw f521000.qcom,cpufreq-hw: index=1 freq=652800 volt=588000, core_count 7\n[    0.344865] qcom-cpufreq-hw f521000.qcom,cpufreq-hw: index=2 freq=902400 volt=640000, core_count 7\n[    0.344875] qcom-cpufreq-hw f521000.qcom,cpufreq-hw: index=3 freq=1056000 volt=672000, core_count 7\n[    0.344887] qcom-cpufreq-hw f521000.qcom,cpufreq-hw: index=4 freq=1401600 volt=752000, core_count 7\n[    0.344898] qcom-cpufreq-hw f521000.qcom,cpufreq-hw: index=5 freq=1536000 volt=784000, core_count 7\n[    0.344910] qcom-cpufreq-hw f521000.qcom,cpufreq-hw: index=6 freq=1612800 volt=800000, core_count 7\n[    0.344923] qcom-cpufreq-hw f521000.qcom,cpufreq-hw: index=7 freq=1804800 volt=844000, core_count 7\n[    0.344934] qcom-cpufreq-hw f521000.qcom,cpufreq-hw: index=8 freq=2016000 volt=896000, core_count 7\n[    0.344945] qcom-cpufreq-hw f521000.qcom,cpufreq-hw: index=9 freq=2016000 volt=896000, core_count 7\n[    0.345433] cpufreq: driver qcom-cpufreq-hw up and running\n[    0.346455] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.346457] ipa ipa3_pre_init:6708 fail to register with bus mgr!\n[    0.346483] ipa ipa3_plat_drv_probe:8255 ipa3_init failed\n[    0.346719] bengal-dispcc 5f00000.qcom,dispcc: Linked as a consumer to regulator.15\n[    0.348486] bengal-dispcc 5f00000.qcom,dispcc: Registered Display CC clocks\n[    0.348962] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.348965] arm-smmu c600000.apps-smmu: Bus client registration failed\n[    0.349394] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.349396] ipa ipa3_pre_init:6708 fail to register with bus mgr!\n[    0.349419] ipa ipa3_plat_drv_probe:8255 ipa3_init failed\n[    0.350387] clocksource: Switched to clocksource arch_sys_counter\n[    0.407768] VFS: Disk quotas dquot_6.6.0\n[    0.407807] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.410176] msm_bus_fabric_init_driver\n[    0.415771] msm_bus_dev_init_qos: Skipping QOS init for 26\n[    0.415820] msm_bus_device 1880000.ad-hoc-bus: Bus scaling driver probe successful\n[    0.417402] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.417406] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.417618] mdss_pll 5e94400.qcom,mdss_dsi0_pll: Linked as a consumer to regulator.10\n[    0.419147] dsi_pll_clock_register_14nm: Registered DSI PLL ndx=0 clocks successfully\n[    0.419650] NET: Registered protocol family 2\n[    0.420143] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes)\n[    0.420173] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.420326] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.420618] TCP: Hash tables configured (established 32768 bind 32768)\n[    0.420702] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.420753] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.420920] NET: Registered protocol family 1\n[    0.421947] arm-smmu c600000.apps-smmu: \tnon-coherent table walk\n[    0.421951] arm-smmu c600000.apps-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.421955] arm-smmu c600000.apps-smmu: \tstream matching with 50 register groups\n[    0.422829] qsmmuv500-tbu c789000.mm_rt_tbu: Linked as a consumer to regulator.8\n[    0.423034] qsmmuv500-tbu c78d000.mm_nrt_tbu: Linked as a consumer to regulator.9\n[    0.423237] qsmmuv500-tbu c791000.cdsp_tbu: Linked as a consumer to regulator.7\n[    0.431669] ipa ipa3_smp2p_probe:8124 fail to get smp2p clk resp bit -517\n[    0.432190] ipa soc:ipa_smmu_ap: Linked as a consumer to c600000.apps-smmu\n[    0.440704] iommu: Adding device soc:ipa_smmu_ap to group 0\n[    0.441347] ipa soc:ipa_smmu_wlan: Linked as a consumer to c600000.apps-smmu\n[    0.441720] iommu: Adding device soc:ipa_smmu_wlan to group 1\n[    0.442188] ipa soc:ipa_smmu_uc: Linked as a consumer to c600000.apps-smmu\n[    0.442519] iommu: Adding device soc:ipa_smmu_uc to group 2\n[    0.442961] qupv3_geni_se 4ac0000.qcom,qupv3_0_geni_se: Linked as a consumer to c600000.apps-smmu\n[    0.454571] iommu: Adding device 4ac0000.qcom,qupv3_0_geni_se to group 3\n[    0.455648] ipa ipa3_smp2p_probe:8124 fail to get smp2p clk resp bit -517\n[    0.456296] Trying to unpack rootfs image as initramfs...\n[    0.739428] Freeing initrd memory: 7476K\n[    0.742686] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.753137] Initialise system trusted keyrings\n[    0.753465] workingset: timestamp_bits=45 max_order=20 bucket_order=0\n[    0.758702] exFAT: file-system version 5.8-2arter97\n[    0.758811] Registering sdcardfs 0.1\n[    0.759050] ntfs: driver 2.1.32 [Flags: R/W].\n[    0.759182] fuse init (API version 7.27)\n[    0.767154] Key type asymmetric registered\n[    0.767163] Asymmetric key parser 'x509' registered\n[    0.767191] io scheduler noop registered\n[    0.767545] io scheduler cfq registered (default)\n[    0.767550] io scheduler mq-deadline registered\n[    0.767554] io scheduler kyber registered\n[    0.767672] io scheduler bfq registered\n[    0.786106] gpi_dma 4a00000.qcom,gpi-dma: Linked as a consumer to c600000.apps-smmu\n[    0.786914] iommu: Adding device 4a00000.qcom,gpi-dma to group 4\n[    0.793659] subsys-pil-tz ab00000.qcom,lpass: Linked as a consumer to regulator.26\n[    0.793692] subsys-pil-tz ab00000.qcom,lpass: Linked as a consumer to regulator.25\n[    0.795254] subsys-pil-tz b300000.qcom,turing: Linked as a consumer to regulator.15\n[    0.796210] subsys-pil-tz 5ab0000.qcom,venus: Linked as a consumer to regulator.5\n[    0.796372] minidump-id not found for venus\n[    0.796449] subsys-pil-tz 5ab0000.qcom,venus: for venus segments only will be dumped.\n[    0.796518] subsys-pil-tz 5ab0000.qcom,venus: for md_venus segments only will be dumped.\n[    0.797107] subsys-pil-tz 6080000.qcom,mss: Linked as a consumer to regulator.15\n[    0.798026] minidump-id not found for ipa_fws\n[    0.798087] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    0.798161] subsys-pil-tz soc:qcom,ipa_fws: for md_ipa_fws segments only will be dumped.\n[    0.798701] minidump-id not found for a610_zap\n[    0.798766] subsys-pil-tz soc:qcom,kgsl-hyp: for a610_zap segments only will be dumped.\n[    0.798832] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a610_zap segments only will be dumped.\n[    0.805073] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.805275] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.805398] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.808313] scm_call failed: func id 0xc2000502, ret: -2, syscall returns: 0xffffffffffffffff, 0x0, 0x0\n[    0.808325] msm-eud 1610000.qcom,msm-eud: TCSR scm_io_write failed with rc:-22\n[    0.815417] icnss c800000.qcom,icnss: Linked as a consumer to c600000.apps-smmu\n[    0.817072] iommu: Adding device c800000.qcom,icnss to group 5\n[    0.817561] icnss: Recursive recovery allowed for WLAN\n[    0.817654] icnss c800000.qcom,icnss: Linked as a consumer to regulator.31\n[    0.817710] icnss c800000.qcom,icnss: Linked as a consumer to regulator.39\n[    0.817744] icnss c800000.qcom,icnss: Linked as a consumer to regulator.40\n[    0.817866] icnss c800000.qcom,icnss: Linked as a consumer to regulator.46\n[    0.818327] icnss c800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.818637] icnss: Unable to create debugfs -19\n[    0.818764] icnss: Platform driver probed successfully\n[    0.824340] msm_geni_serial 4a8c000.qcom,qup_uart: Wakeup byte 0xfd\n[    0.824792] msm_geni_serial 4a8c000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    0.824806] msm_geni_serial 4a8c000.qcom,qup_uart: Failed to create dbg dir\n[    0.827250] 4a8c000.qcom,qup_uart: ttyHS0 at MMIO 0x4a8c000 (irq = 145, base_baud = 0) is a MSM\n[    0.828420] msm_geni_serial_init: Driver initialized\n[    0.832740] random: crng init done\n[    0.856790] brd: module loaded\n[    0.872653] loop: module loaded\n[    0.872986] zram: Added device: zram0\n[    0.873812] QSEECOM: qseecom_init_control: qseecom.qsee_version = 0x1402000\n[    0.873893] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.882730] simtray_probe enter\n[    0.883725] dpdt_probe enter\n[    0.885006] fpc1020 soc:fpc1020: fpc1020_probe: ok\n[    0.885260] fpc1020_init OK\n[    0.886080] input: uinput-goodix as /devices/virtual/input/input1\n[    0.886095] gf_spi: version V1.2.11\n[    0.886427] gf_spi: status = 0x0\n[    0.886510] focaltech_fp: FocalTech fingerprint device control driver registered.\n[    0.887051] [DBG][cdfinger]:  606: <cdfinger_probe>enter\n[    0.887057] [DBG][cdfinger]:  279: <cdfinger_parse_dts>enter\n[    0.887194] cdfinger_fp soc:cdfinger_fingerprint: soc:cdfinger_fingerprint supply vdd not found, using dummy regulator\n[    0.887229] cdfinger_fp soc:cdfinger_fingerprint: Linked as a consumer to regulator.0\n[    0.887401] input: cdfinger_input as /devices/virtual/input/input2\n[    0.888819] qce 1b20000.qcedev: Linked as a consumer to c600000.apps-smmu\n[    0.889748] iommu: Adding device 1b20000.qcedev to group 6\n[    0.893884] qce 1b20000.qcedev: QTI Crypto 5.5.1 device found @0x1b20000\n[    0.894207] sps:BAM 0x0000000001b04000 is registered.\n[    0.894432] sps:BAM 0x0000000001b04000 (va:0x00000000368c6eba) enabled: ver:0x27, number of pipes:16\n[    0.894799] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001b04000 irq 14\n[    0.896913] qce 1b20000.qcedev:qcom_cedev_ns_cb: Linked as a consumer to c600000.apps-smmu\n[    0.897630] iommu: Adding device 1b20000.qcedev:qcom_cedev_ns_cb to group 7\n[    0.898563] qce 1b20000.qcedev:qcom_cedev_s_cb: Linked as a consumer to c600000.apps-smmu\n[    0.899873] iommu: Adding device 1b20000.qcedev:qcom_cedev_s_cb to group 8\n[    0.903153] Error: Driver 'qcrypto' is already registered, aborting...\n[    0.905760] ufshcd-qcom 4804000.ufshc: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    0.905777] ufshcd-qcom 4804000.ufshc: no vccq2-voltage-level property.\n[    0.905927] ufshcd-qcom 4804000.ufshc: Linked as a consumer to regulator.2\n[    0.906251] ufshcd-qcom 4804000.ufshc: Linked as a consumer to regulator.47\n[    0.906278] ufshcd-qcom 4804000.ufshc: Linked as a consumer to regulator.34\n[    0.907736] ufshcd-qcom 4804000.ufshc: Linked as a consumer to regulator.41\n[    0.907823] ufs_qcom_phy_qmp_v3_660 4807000.ufsphy_mem: Linked as a consumer to regulator.35\n[    0.907853] ufs_qcom_phy_qmp_v3_660 4807000.ufsphy_mem: Linked as a consumer to regulator.27\n[    0.908096] ufshcd-qcom 4804000.ufshc: ufs_qcom_parse_reg_info: Unable to find qcom,vccq-parent-supply regulator, assuming enabled\n[    0.911411] scsi host0: ufshcd\n[    0.932656] SCSI Media Changer driver v0.25 \n[    0.937554] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    0.940269] libphy: Fixed MDIO Bus: probed\n[    0.940277] tun: Universal TUN/TAP device driver, 1.6\n[    0.940411] PPP generic driver version 2.4.2\n[    0.940519] PPP BSD Compression module registered\n[    0.940523] PPP Deflate Compression module registered\n[    0.940594] PPP MPPE Compression module registered\n[    0.940600] NET: Registered protocol family 24\n[    0.940625] PPTP driver version 0.8.5\n[    0.941169] cnss_utils: Unable to create debugfs -19\n[    0.941217] wcnss_pre_alloc_init: Failed to create debugfs dir\n[    0.941220] CLD80211: Initializing\n[    0.941350] usbcore: registered new interface driver r8152\n[    0.950277] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.952933] ufshcd-qcom 4804000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    0.954800] msm-qusb-phy 1613000.qusb: 1613000.qusb supply USB3_GDSC not found, using dummy regulator\n[    0.954837] msm-qusb-phy 1613000.qusb: Linked as a consumer to regulator.0\n[    0.954895] msm-qusb-phy 1613000.qusb: Linked as a consumer to regulator.27\n[    0.954928] msm-qusb-phy 1613000.qusb: Linked as a consumer to regulator.38\n[    0.954954] msm-qusb-phy 1613000.qusb: Linked as a consumer to regulator.35\n[    0.957845] msm-usb-ssphy-qmp 1615000.ssphy: Linked as a consumer to regulator.27\n[    0.957879] msm-usb-ssphy-qmp 1615000.ssphy: Linked as a consumer to regulator.35\n[    0.961409] msm-dwc3 4e00000.ssusb: Linked as a consumer to c600000.apps-smmu\n[    0.962281] iommu: Adding device 4e00000.ssusb to group 9\n[    0.962933] msm-dwc3 4e00000.ssusb: Linked as a consumer to regulator.3\n[    0.965351] dwc3 4e00000.dwc3: Failed to get clk 'ref': -2\n[    0.965621] dwc3 4e00000.dwc3: changing max_speed on rev 00000000\n[    0.968636] Invalid index Defaulting curr to 0\n[    0.970896] msm-dwc3 4e00000.ssusb: Dropping the link to regulator.3\n[    0.974787] usbcore: registered new interface driver usb-storage\n[    0.974923] usbcore: registered new interface driver usb_ehset_test\n[    0.974954] usbcore: registered new interface driver lvs\n[    0.976435] usbcore: registered new interface driver xpad\n[    0.976451] SAR  virtualsar_init - Start driver initialization...\n[    0.976487] ret : 0\n[    0.978581] rtc-pm8xxx 1c40000.qcom,spmi:qcom,pm6125@0:qcom,pm6125_rtc: rtc core: registered pm8xxx_rtc as rtc0\n[    0.978699] rtc-pm8xxx 1c40000.qcom,spmi:qcom,pm6125@0:qcom,pm6125_rtc: setting system clock to 1970-10-01 22:54:01 UTC (23669641)\n[    0.979336] i2c /dev entries driver\n[    0.981081] i2c_geni 4a84000.i2c: Bus frequency is set to 400000Hz\n[    0.983560] bengal-pinctrl 400000.pinctrl: invalid group \"gpior25\" for function \"gpio\"\n[    0.983986] i2c_geni 4a84000.i2c: i2c error :-107\n[    0.984144] i2c_geni 4a84000.i2c: i2c error :-107\n[    0.984293] i2c_geni 4a84000.i2c: i2c error :-107\n[    0.984441] i2c_geni 4a84000.i2c: i2c error :-107\n[    0.984448] I2C PMIC: i2c_pmic_read: i2c_pmic_read failed for 3 retries, rc = -107\n[    0.984452] I2C PMIC: i2c_pmic_determine_initial_status: Couldn't read irq data rc=-107\n[    0.984455] I2C PMIC: i2c_pmic_probe: Couldn't determine initial status rc=-107\n[    0.984486] i2c_pmic: probe of 0-0028 failed with error -107\n[    0.985022] virtualsar,sar 0-0033: virtualsar_probe\n[    0.985025] SAR  virtualsar_probe - Device tree matched!\n[    0.985052] parse irq gpio incorrectly\n                \n[    0.985204] input: vitural-sar as /devices/virtual/input/input3\n[    0.985381] genirq: irq_chip msmgpio did not update eff. affinity mask of irq 217\n[    0.985425] after sar_irq_enable,probe end \n[    0.985828] hyper backlight ic is sgm37603 !\n[    0.986062] i2c i2c-0: Failed to register i2c client lm36923 at 0x36 (-16)\n[    0.986069] i2c i2c-0: of_i2c: Failure registering /soc/i2c@4a84000/lm36923@36\n[    0.986073] i2c i2c-0: Failed to create I2C device for /soc/i2c@4a84000/lm36923@36\n[    0.987623] rc_core: IR Remote Control driver registered, major 508\n[    0.987693] liping led!\n[    0.987807] ir-spi spi0.0: lirc_dev: driver ir-spi registered at minor = 0\n[    0.992620] Couldn't parse device tree rc=-517\n[    1.016546] reg-cooling-device soc:qcom,rpm-smd:rpm-regulator-smpa3:cx-cdev-lvl: Linked as a consumer to regulator.16\n[    1.017160] reg-cooling-device soc:qcom,rpm-smd:rpm-regulator-smpa5:mx-cdev-lvl: Linked as a consumer to regulator.18\n[    1.026202] device-mapper: uevent: version 1.0.3\n[    1.026587] device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel@redhat.com\n[    1.027677] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in devicetree\n[    1.027683] bt_power_populate_dt_pinfo: wl-reset-gpio not provided in devicetree\n[    1.027743] bt_dt_parse_vreg_info: qca,bt-vdd-ldo: is not provided in device tree\n[    1.027747] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    1.027750] bt_dt_parse_vreg_info: qca,bt-vdd-aon: is not provided in device tree\n[    1.027754] bt_dt_parse_vreg_info: qca,bt-vdd-dig: is not provided in device tree\n[    1.027756] bt_dt_parse_vreg_info: qca,bt-vdd-rfa1: is not provided in device tree\n[    1.027760] bt_dt_parse_vreg_info: qca,bt-vdd-rfa2: is not provided in device tree\n[    1.027763] bt_dt_parse_vreg_info: qca,bt-vdd-asd: is not provided in device tree\n[    1.027768] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.032093] sdhci: Secure Digital Host Controller Interface driver\n[    1.032098] sdhci: Copyright(c) Pierre Ossman\n[    1.032101] sdhci-pltfm: SDHCI platform and OF driver helper\n[    1.036500] qpnp_vibrator_ldo_probe: Vibrator LDO successfully registered: uV = 3000000, overdrive = disabled\n[    1.037827] usbcore: registered new interface driver usbhid\n[    1.037831] usbhid: USB HID core driver\n[    1.038214] ashmem: initialized\n[    1.038326] wlan_hdd_state wlan major(505) initialized\n[    1.040914] bimc-bwmon 1b8e300.qcom,cpu-cpu-ddr-bwmon: BW HWmon governor registered.\n[    1.045898] sdhci_msm 4784000.sdhci: core_reset unavailable,err = -2\n[    1.045906] sdhci_msm 4784000.sdhci: Reset data parsing error\n[    1.047722] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-cpu-ddr-latmon: Memory Latency governor registered.\n[    1.049045] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-computemon: Compute governor registered.\n[    1.049791] sdhci_msm 4784000.sdhci: Linked as a consumer to regulator.45\n[    1.049820] sdhci_msm 4784000.sdhci: Linked as a consumer to regulator.28\n[    1.049847] sdhci_msm 4784000.sdhci: Linked as a consumer to regulator.30\n[    1.050337] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-cpu-ddr-latmon: Memory Latency governor registered.\n[    1.050768] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-computemon: Compute governor registered.\n[    1.055345] ufshcd-qcom 4804000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[1, 1], pwr[FAST MODE, FAST MODE], rate = 2\n[    1.056080] scsi 0:0:0:49488: Well-known LUN    SAMSUNG  KM5C7001DM-B622  0800 PQ: 0 ANSI: 6\n[    1.056863] scsi 0:0:0:49476: Well-known LUN    SAMSUNG  KM5C7001DM-B622  0800 PQ: 0 ANSI: 6\n[    1.057371] scsi 0:0:0:49456: Well-known LUN    SAMSUNG  KM5C7001DM-B622  0800 PQ: 0 ANSI: 6\n[    1.057997] scsi 0:0:0:0: Direct-Access     SAMSUNG  KM5C7001DM-B622  0800 PQ: 0 ANSI: 6\n[    1.058394] scsi 0:0:0:1: Direct-Access     SAMSUNG  KM5C7001DM-B622  0800 PQ: 0 ANSI: 6\n[    1.058736] scsi 0:0:0:2: Direct-Access     SAMSUNG  KM5C7001DM-B622  0800 PQ: 0 ANSI: 6\n[    1.059080] scsi 0:0:0:3: Direct-Access     SAMSUNG  KM5C7001DM-B622  0800 PQ: 0 ANSI: 6\n[    1.059413] scsi 0:0:0:4: Direct-Access     SAMSUNG  KM5C7001DM-B622  0800 PQ: 0 ANSI: 6\n[    1.059753] scsi 0:0:0:5: Direct-Access     SAMSUNG  KM5C7001DM-B622  0800 PQ: 0 ANSI: 6\n[    1.061742] sd 0:0:0:0: Power-on or device reset occurred\n[    1.061773] sd 0:0:0:1: Power-on or device reset occurred\n[    1.062335] sd 0:0:0:0: [sda] Write Protect is off\n[    1.062340] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.062522] sd 0:0:0:0: [sda] Optimal transfer size 524288 bytes\n[    1.062980] sd 0:0:0:1: [sdb] Write Protect is off\n[    1.062984] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.063383] sd 0:0:0:1: [sdb] Optimal transfer size 524288 bytes\n[    1.064751]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11\n[    1.067759] sd 0:0:0:2: Power-on or device reset occurred\n[    1.068312] sd 0:0:0:2: [sdc] Write Protect is off\n[    1.068317] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.068558] sd 0:0:0:2: [sdc] Optimal transfer size 524288 bytes\n[    1.068738]  sdb: sdb1 sdb2\n[    1.069938] sd 0:0:0:3: Power-on or device reset occurred\n[    1.070826]  sdc: sdc1 sdc2\n[    1.071432] sd 0:0:0:3: [sdd] Write Protect is off\n[    1.071456] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.071702] sd 0:0:0:3: [sdd] Optimal transfer size 524288 bytes\n[    1.071964] sd 0:0:0:4: Power-on or device reset occurred\n[    1.072667] sd 0:0:0:4: [sde] Write Protect is off\n[    1.072671] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    1.072850] sd 0:0:0:4: [sde] Optimal transfer size 524288 bytes\n[    1.074330]  sdd: sdd1 sdd2 sdd3\n[    1.075257]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51 sde52 sde53 sde54 sde55 sde56\n[    1.078746] sd 0:0:0:5: Power-on or device reset occurred\n[    1.079399] sd 0:0:0:5: [sdf] Write Protect is off\n[    1.079404] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    1.079603] sd 0:0:0:5: [sdf] Optimal transfer size 524288 bytes\n[    1.081111] [l2 counters error]: Registered L2 cache PMU cluster 0\n[    1.081272] [l2 counters error]: Registered L2 cache PMU cluster 1\n[    1.081293] l2cache-pmu soc:l2cache_pmu: CPU0 associated with cluster 0\n[    1.081448] l2cache-pmu soc:l2cache_pmu: CPU1 associated with cluster 0\n[    1.081593] mmc0: SDHCI controller on 4784000.sdhci [4784000.sdhci] using 64-bit ADMA in legacy mode\n[    1.081757]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6 sdf7\n[    1.082385] l2cache-pmu soc:l2cache_pmu: CPU2 associated with cluster 0\n[    1.082461] l2cache-pmu soc:l2cache_pmu: CPU3 associated with cluster 0\n[    1.082527] l2cache-pmu soc:l2cache_pmu: CPU4 associated with cluster 1\n[    1.082594] l2cache-pmu soc:l2cache_pmu: CPU5 associated with cluster 1\n[    1.082664] l2cache-pmu soc:l2cache_pmu: CPU6 associated with cluster 1\n[    1.082842] l2cache-pmu soc:l2cache_pmu: CPU7 associated with cluster 1\n[    1.083230] l2cache-pmu soc:l2cache_pmu: Registered L2 cache PMU using 2 HW PMUs\n[    1.084157] coresight-tmc 8047000.tmc: No csr data\n[    1.084161] coresight-tmc 8047000.tmc: invalid cti data\n[    1.084357] coresight-tmc 8048000.tmc: Linked as a consumer to c600000.apps-smmu\n[    1.084693] iommu: Adding device 8048000.tmc to group 10\n[    1.087615] coresight-stm 8002000.stm: stm_register_device failed, probing deffered\n[    1.087685] OF: graph: no port node found in /soc/cti@8B30000\n[    1.087793] OF: graph: no port node found in /soc/cti@98E0000\n[    1.087893] OF: graph: no port node found in /soc/cti@98F0000\n[    1.087997] OF: graph: no port node found in /soc/cti@8867000\n[    1.088101] OF: graph: no port node found in /soc/cti@8833000\n[    1.088204] OF: graph: no port node found in /soc/cti@8A02000\n[    1.088306] OF: graph: no port node found in /soc/cti@8B59000\n[    1.088411] OF: graph: no port node found in /soc/cti@8B5A000\n[    1.088514] OF: graph: no port node found in /soc/cti@8B5B000\n[    1.088616] OF: graph: no port node found in /soc/cti@8B5C000\n[    1.088717] OF: graph: no port node found in /soc/cti@8010000\n[    1.088816] OF: graph: no port node found in /soc/cti@8011000\n[    1.088915] OF: graph: no port node found in /soc/cti@801a000\n[    1.089014] OF: graph: no port node found in /soc/cti@801b000\n[    1.089142] OF: graph: no port node found in /soc/cti@801c000\n[    1.089252] OF: graph: no port node found in /soc/cti@801d000\n[    1.089353] OF: graph: no port node found in /soc/cti@801e000\n[    1.089451] OF: graph: no port node found in /soc/cti@801f000\n[    1.089552] OF: graph: no port node found in /soc/cti@8012000\n[    1.089654] OF: graph: no port node found in /soc/cti@8013000\n[    1.089753] OF: graph: no port node found in /soc/cti@8014000\n[    1.089855] OF: graph: no port node found in /soc/cti@8015000\n[    1.089955] OF: graph: no port node found in /soc/cti@8016000\n[    1.090170] OF: graph: no port node found in /soc/cti@8017000\n[    1.090271] OF: graph: no port node found in /soc/cti@8018000\n[    1.090376] OF: graph: no port node found in /soc/cti@8019000\n[    1.094936] OF: graph: no port node found in /soc/csr@8001000\n[    1.094983] coresight-csr 8001000.csr: CSR initialized: coresight-csr\n[    1.095012] OF: graph: no port node found in /soc/csr@8a03000\n[    1.095067] coresight-csr 8a03000.csr: CSR initialized: coresight-swao-csr\n[    1.095606] OF: graph: no port node found in /soc/hwevent\n[    1.095660] coresight-hwevent soc:hwevent: Hardware Event driver initialized\n[    1.096207] coresight-dummy soc:modem_rfxe: Dummy device initialized\n[    1.096337] coresight-dummy soc:snoc: Dummy device initialized\n[    1.096461] coresight-dummy soc:tpdm@8a26000: Dummy device initialized\n[    1.096589] coresight-dummy soc:tpdm@899c000: Dummy device initialized\n[    1.097140] coresight-remote-etm soc:audio_etm0: Remote ETM initialized\n[    1.097322] coresight-remote-etm soc:turing_etm0: Remote ETM initialized\n[    1.097491] coresight-remote-etm soc:modem_etm0: Remote ETM initialized\n[    1.097766] OF: graph: no port node found in /soc/tgu@9900000\n[    1.099307] usbcore: registered new interface driver snd-usb-audio\n[    1.099531] uaudio-qmi soc:usb_audio_qmi_dev: Linked as a consumer to c600000.apps-smmu\n[    1.099594] iommu: Adding device soc:usb_audio_qmi_dev to group 11\n[    1.109639] wsa881x-i2c-codec 0-000e: No cache used with register defaults set!\n[    1.109958] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.109966] Failed reading reg=5 - retry(0)\n[    1.110831] aw87359_pa_init enter\n[    1.110833] aw87359_pa_init: driver version: v1.0.4\n[    1.110989] aw87359_i2c_probe Enter\n[    1.111297] aw87359_read_chipid: This Chip is aw87359 chipid=0x59\n[    1.111306] aw87359_hw_off enter\n[    1.111338] aw87519_pa_init enter\n[    1.111339] aw87519_pa_init: driver version: v1.0.7\n[    1.111520] aw87519_i2c_probe Enter\n[    1.111574] aw87519_pa 0-0059: aw87519_parse_dt: reset gpio provided ok\n[    1.111587] aw87519_hw_reset enter\n[    1.116172] aw87519_read_chipid This Chip is  AW87519 chipid=0x59\n[    1.116184] aw87519_hw_off enter\n[    1.130381] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.130389] Failed reading reg=5 - retry(1)\n[    1.146406] msm_vidc:   err : ffffffff: .....: Failed to create debugfs for msm_vidc\n[    1.147153] msm_vidc:   err : ffffffff: .....: no device Registered\n[    1.147539] msm_vidc:   err : ffffffff: .....: Failed to create debugfs for msm_vidc\n[    1.148560] msm_vidc_v4l2 5a00000.qcom,vidc:non_secure_cb: Linked as a consumer to c600000.apps-smmu\n[    1.148840] iommu: Adding device 5a00000.qcom,vidc:non_secure_cb to group 12\n[    1.149208] msm_vidc_v4l2 5a00000.qcom,vidc:secure_bitstream_cb: Linked as a consumer to c600000.apps-smmu\n[    1.149782] iommu: Adding device 5a00000.qcom,vidc:secure_bitstream_cb to group 13\n[    1.150236] msm_vidc_v4l2 5a00000.qcom,vidc:secure_pixel_cb: Linked as a consumer to c600000.apps-smmu\n[    1.150745] iommu: Adding device 5a00000.qcom,vidc:secure_pixel_cb to group 14\n[    1.151191] msm_vidc_v4l2 5a00000.qcom,vidc:secure_non_pixel_cb: Linked as a consumer to c600000.apps-smmu\n[    1.151655] iommu: Adding device 5a00000.qcom,vidc:secure_non_pixel_cb to group 15\n[    1.153051] dsi_phy 5e94400.qcom,mdss_dsi_phy0: 5e94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    1.153065] dsi_phy 5e94400.qcom,mdss_dsi_phy0: Linked as a consumer to regulator.0\n[    1.153080] dsi_phy 5e94400.qcom,mdss_dsi_phy0: Linked as a consumer to regulator.18\n[    1.153096] [drm:dsi_phy_driver_probe] [msm-dsi-info]: DSI_0: Probe successful\n[    1.154094] drm_dsi_ctrl 5e94000.qcom,mdss_dsi0_ctrl: 5e94000.qcom,mdss_dsi0_ctrl supply refgen not found, using dummy regulator\n[    1.154103] drm_dsi_ctrl 5e94000.qcom,mdss_dsi0_ctrl: Linked as a consumer to regulator.0\n[    1.154124] drm_dsi_ctrl 5e94000.qcom,mdss_dsi0_ctrl: Linked as a consumer to regulator.41\n[    1.154129] AXI: get_pdata(): Error: Client name not found\n[    1.154131] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    1.154144] [drm:dsi_ctrl_dev_probe] [msm-dsi-info]: dsi-ctrl-0: Probe successful\n[    1.155182] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    1.155288] [drm:dsi_panel_get] *ERROR* [msm-dsi-error]: kook: [ft8719 v2 video mode dsi truly panel], gpio=1252\n[    1.156917] msm_drm 5e00000.qcom,mdss_mdp: Linked as a consumer to regulator.10\n[    1.157307] msm-dsi-display soc:qcom,dsi-display-primary: Linked as a consumer to regulator.32\n[    1.157320] msm-dsi-display soc:qcom,dsi-display-primary: Linked as a consumer to regulator.13\n[    1.157332] msm-dsi-display soc:qcom,dsi-display-primary: Linked as a consumer to regulator.14\n[    1.157524] [drm:dsi_display_bind] [msm-dsi-info]: Successfully bind display panel 'qcom,mdss_dsi_ft8719_truly_v2_video'\n[    1.157662] hyper:dsi_display_feature_create_sysfs success\n[    1.157674] hyper:dsi_display_whitepoint_create_sysfs success\n[    1.157684] msm_drm 5e00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-primary (ops dsi_display_comp_ops)\n[    1.157712] [drm] mapped mdp address space @00000000274ac0e0\n[    1.158176] [drm:_sde_kms_hw_init_blocks:3588] sde hardware revision:0x60030000\n[    1.159572] msmdrm_smmu 5e00000.qcom,mdss_mdp:qcom,smmu_sde_unsec_cb: Linked as a consumer to c600000.apps-smmu\n[    1.159863] iommu: Adding device 5e00000.qcom,mdss_mdp:qcom,smmu_sde_unsec_cb to group 16\n[    1.159963] [drm] probing device qcom,smmu_sde_unsec\n[    1.159967] [drm] Created domain mdp_ns, secure=0\n[    1.160809] msmdrm_smmu 5e00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb: Linked as a consumer to c600000.apps-smmu\n[    1.161429] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.161436] Failed reading reg=5 - retry(2)\n[    1.161552] iommu: Adding device 5e00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 17\n[    1.161658] [drm] probing device qcom,smmu_sde_sec\n[    1.161662] [drm] Created domain mdp_s, secure=1\n[    1.162027] WARNING: CPU: 0 PID: 1 at mm/page_alloc.c:4837 __alloc_pages_nodemask+0x24c/0xfa4\n[    1.162029] Modules linked in:\n[    1.162036] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.152-perf #1\n[    1.162038] Hardware name: Qualcomm Technologies, Inc. BENGAL IDP (DT)\n[    1.162042] pstate: 20400005 (nzCv daif +PAN -UAO)\n[    1.162045] pc : __alloc_pages_nodemask+0x24c/0xfa4\n[    1.162049] lr : kmalloc_order_trace+0x40/0x124\n[    1.162051] sp : ffffff800805b2d0\n[    1.162052] x29: ffffff800805b3d0 x28: ffffffc45e09c000 \n[    1.162055] x27: ffffffc45e024000 x26: ffffffc45e021720 \n[    1.162058] x25: ffffffc45e021000 x24: 000000000000000e \n[    1.162061] x23: 0000000000000000 x22: 000000000000000f \n[    1.162064] x21: ffffff9909e7bb04 x20: 0000000004008030 \n[    1.162066] x19: 00000000006080c0 x18: ffffffffffffffff \n[    1.162069] x17: 0000000000000000 x16: 0000000000000001 \n[    1.162072] x15: ffffff990b1631e0 x14: 0000000000000000 \n[    1.162075] x13: ffffffc47fcf8c60 x12: 0000000000000000 \n[    1.162078] x11: 0101010101010101 x10: 0000000000000030 \n[    1.162080] x9 : 0000000000000040 x8 : a0648cdc035e8b00 \n[    1.162083] x7 : 622d306c656e6170 x6 : ffffffc45e2aa814 \n[    1.162086] x5 : 8080808080808080 x4 : 0000000000000000 \n[    1.162088] x3 : 0000000000000000 x2 : 0000000000000000 \n[    1.162091] x1 : 000000000000000f x0 : 000000000060c0c0 \n[    1.162095] Call trace:\n[    1.162098]  __alloc_pages_nodemask+0x24c/0xfa4\n[    1.162101]  kmalloc_order_trace+0x40/0x124\n[    1.162105]  __kmalloc+0x2d0/0x35c\n[    1.162110]  thermal_cooling_device_setup_sysfs+0x60/0xd0\n[    1.162114]  __thermal_cooling_device_register+0x120/0x25c\n[    1.162116]  thermal_of_cooling_device_register+0xc/0x14\n[    1.162121]  backlight_device_register+0x19c/0x230\n[    1.162125]  sde_connector_init+0x250/0xaf0\n[    1.162130]  sde_kms_hw_init+0xd9c/0x1954\n[    1.162134]  msm_drm_bind+0x424/0x7e0\n[    1.162139]  try_to_bring_up_master+0x13c/0x184\n[    1.162143]  component_master_add_with_match+0xfc/0x1b0\n[    1.162146]  msm_pdev_probe+0xd0/0x288\n[    1.162150]  platform_drv_probe+0x7c/0xb4\n[    1.162154]  really_probe+0x284/0x308\n[    1.162157]  driver_probe_device+0x60/0xf8\n[    1.162160]  __driver_attach+0xe8/0x124\n[    1.162163]  bus_for_each_dev+0x78/0xc0\n[    1.162165]  driver_attach+0x20/0x28\n[    1.162168]  bus_add_driver+0x11c/0x1fc\n[    1.162171]  driver_register+0x74/0x108\n[    1.162174]  __platform_driver_register+0x40/0x48\n[    1.162179]  msm_drm_register+0x44/0x48\n[    1.162184]  do_one_initcall+0x118/0x280\n[    1.162188]  do_initcall_level+0x140/0x168\n[    1.162191]  do_basic_setup+0x30/0x48\n[    1.162194]  kernel_init_freeable+0xac/0x12c\n[    1.162199]  kernel_init+0x14/0x28c\n[    1.162202]  ret_from_fork+0x10/0x18\n[    1.162204] ---[ end trace 4342d910bfd8d0fe ]---\n[    1.162323] [drm:dsi_panel_get_mode] [msm-dsi-info]: default topology: lm: 1 comp_enc:0 intf: 1\n[    1.163067] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    1.163069] [drm] No driver support for vblank timestamp query.\n[    1.163254] [drm] Initialized msm_drm 1.3.0 20130625 for 5e00000.qcom,mdss_mdp on minor 0\n[    1.163269] [drm] cont_splash enabled in 1 of 1 display(s)\n[    1.163403] [drm:dsi_ctrl_isr_configure] [msm-dsi-info]: dsi-ctrl-0: IRQ 222 registered\n[    1.200218] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.200224] Failed reading reg=5 - retry(3)\n[    1.205291] rmnet_perf_init(): initializing rmnet_perf\n[    1.205295] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = lo\n[    1.205297] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = bond0\n[    1.205300] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = dummy0\n[    1.205303] rmnet_shs_module_init(): Starting rmnet SHS module\n[    1.207302] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_tfe: Linked as a consumer to c600000.apps-smmu\n[    1.207597] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_tfe to group 18\n[    1.208076] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_ope: Linked as a consumer to c600000.apps-smmu\n[    1.208317] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ope to group 19\n[    1.208722] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm: Linked as a consumer to c600000.apps-smmu\n[    1.208939] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 20\n[    1.210436] cam-cpas 5c11000.qcom,cam-cpas: Linked as a consumer to regulator.1\n[    1.210532] CAM_INFO: CAM-CPAS: cam_cpas_get_hw_features: 436 feature 0x2 addr 0x1b401d0, bit 5 enable type:0 hw_id=2\n[    1.210540] CAM_INFO: CAM-CPAS: cam_cpas_get_hw_features: 487 num entries:0 feature 0x2 enable=1 hw id=2\n[    1.210544] CAM_INFO: CAM-CPAS: cam_cpas_get_hw_features: 436 feature 0x3 addr 0x1b401d0, bit 6 enable type:0 hw_id=2\n[    1.210549] CAM_INFO: CAM-CPAS: cam_cpas_get_hw_features: 487 num entries:1 feature 0x3 enable=1 hw id=2\n[    1.215567] msm_cam_cdm 5c23000.qcom,cpas-cdm0: Linked as a consumer to regulator.1\n[    1.219662] msm_cam_cdm 5c42000.qcom,ope-cdm0: Linked as a consumer to regulator.1\n[    1.224339] tpg_v1 5c66000.qcom,tpg0: Linked as a consumer to regulator.1\n[    1.226537] tpg_v1 5c68000.qcom,tpg0: Linked as a consumer to regulator.1\n[    1.229276] csid_530 5c6e000.qcom,tfe_csid0: Linked as a consumer to regulator.1\n[    1.229447] csid_530 5c75000.qcom,tfe_csid1: Linked as a consumer to regulator.1\n[    1.229589] csid_530 5c7c000.qcom,tfe_csid2: Linked as a consumer to regulator.1\n[    1.230420] CAM_INFO: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 559 No clk data for tfe_dsp_clk\n[    1.230424] CAM_WARN: CAM-ISP: cam_tfe_init_soc_resources: 50 Option clk get failed with rc -22\n[    1.230441] cam_tfe 5c6e000.qcom,tfe0: Linked as a consumer to regulator.1\n[    1.232628] CAM_INFO: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 559 No clk data for tfe_dsp_clk\n[    1.232631] CAM_WARN: CAM-ISP: cam_tfe_init_soc_resources: 50 Option clk get failed with rc -22\n[    1.232649] cam_tfe 5c75000.qcom,tfe1: Linked as a consumer to regulator.1\n[    1.234519] CAM_INFO: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 559 No clk data for tfe_dsp_clk\n[    1.234523] CAM_WARN: CAM-ISP: cam_tfe_init_soc_resources: 50 Option clk get failed with rc -22\n[    1.234540] cam_tfe 5c7c000.qcom,tfe2: Linked as a consumer to regulator.1\n[    1.237490] CAM_INFO: CAM-ISP: cam_isp_dev_probe: 207 Camera ISP probe complete\n[    1.238246] CAM_INFO: CAM: cam_res_mgr_probe: 682 Disable shared gpio support.\n[    1.238986] cam-cci-driver 5c1b000.qcom,cci0: Linked as a consumer to regulator.1\n[    1.241564] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 519 Device Type :0\n[    1.241573] CAM_WARN: CAM-CCI: cam_cci_create_debugfs_entry: 441 DebugFS not enabled\n[    1.242434] cam-csiphy-driver 5c52000.qcom,csiphy0: Linked as a consumer to regulator.1\n[    1.242593] cam-csiphy-driver 5c53000.qcom,csiphy1: Linked as a consumer to regulator.1\n[    1.242713] cam-csiphy-driver 5c54000.qcom,csiphy2: Linked as a consumer to regulator.1\n[    1.243870] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 60 No GPIO found\n[    1.248642] ope 5c42000.qcom,ope: Linked as a consumer to regulator.1\n[    1.250212] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.250219] Failed reading reg=5 - retry(4)\n[    1.251892] CAM_INFO: CAM-SMMU: cam_smmu_create_add_handle_in_table: 858 ope already got handle 0x14a9b\n[    1.252575] GACT probability NOT on\n[    1.252585] Mirror/redirect action on\n[    1.252593] netem: version 1.3\n[    1.252595] u32 classifier\n[    1.252596]     Actions configured\n[    1.253077] xt_time: kernel timezone is -0000\n[    1.253153] gre: GRE over IPv4 demultiplexor driver\n[    1.253155] IPv4 over IPsec tunneling driver\n[    1.253321] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip_vti0\n[    1.253611] Initializing XFRM netlink socket\n[    1.253620] IPsec XFRM device driver\n[    1.253851] NET: Registered protocol family 10\n[    1.254551] Segment Routing with IPv6\n[    1.254602] mip6: Mobile IPv6\n[    1.254843] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6_vti0\n[    1.254962] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    1.255082] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = sit0\n[    1.255301] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6tnl0\n[    1.255399] NET: Registered protocol family 17\n[    1.255410] NET: Registered protocol family 15\n[    1.255546] l2tp_core: L2TP core driver, V2.0\n[    1.255553] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    1.255554] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    1.255563] l2tp_netlink: L2TP netlink interface\n[    1.255584] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    1.255585] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    1.255621] sctp: Hash tables configured (bind 256/256)\n[    1.255767] Key type dns_resolver registered\n[    1.258282] kgsl-3d 5900000.qcom,kgsl-3d0: Linked as a consumer to regulator.11\n[    1.258297] kgsl-3d 5900000.qcom,kgsl-3d0: Linked as a consumer to regulator.12\n[    1.259539] platform 59a0000.qcom,kgsl-iommu:gfx3d_user: Linked as a consumer to 59a0000.kgsl-smmu\n[    1.259609] iommu: Adding device 59a0000.qcom,kgsl-iommu:gfx3d_user to group 21\n[    1.259974] platform 59a0000.qcom,kgsl-iommu:gfx3d_secure: Linked as a consumer to 59a0000.kgsl-smmu\n[    1.260152] iommu: Adding device 59a0000.qcom,kgsl-iommu:gfx3d_secure to group 22\n[    1.273316] msm-dwc3 4e00000.ssusb: Linked as a consumer to regulator.3\n[    1.274124] dwc3 4e00000.dwc3: Failed to get clk 'ref': -2\n[    1.274206] dwc3 4e00000.dwc3: changing max_speed on rev 00000000\n[    1.274914] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (4f04000.qcom,usbbam)\n[    1.274974] sps:BAM 0x0000000004f04000 is registered.\n[    1.275655] Invalid index Defaulting curr to 0\n[    1.276591] msm-dwc3 4e00000.ssusb: Dropping the link to regulator.3\n[    1.277096] sec-charger-config=0\n[    1.277512] QCOM-BATT: qcom_batt_create_debugfs: Couldn't create battery debugfs rc=-19\n[    1.277552] PL_DISABLE: CHG_STATE_VOTER,0 voting on of val=1\n[    1.277555] PL_DISABLE: effective vote is now 1 voted by CHG_STATE_VOTER,0\n[    1.277559] PL_DISABLE: TAPER_END_VOTER,1 same vote off of val=0\n[    1.277561] PL_DISABLE: TAPER_END_VOTER,1 Ignoring similar vote off of val=0\n[    1.277564] PL_DISABLE: PARALLEL_PSY_VOTER,2 voting on of val=1\n[    1.277569] PL_DISABLE: PL_INDIRECT_VOTER,3 voting on of val=1\n[    1.277623] PL_DISABLE: PL_DELAY_VOTER,4 voting on of val=1\n[    1.277687] pmi632_charger: smblib_get_charge_param: fast charge current = 2000000 (0x28)\n[    1.277699] pmi632_charger: smblib_get_charge_param: float voltage = 4500000 (0x5a)\n[    1.277710] pmi632_charger: smblib_get_charge_param: usb input current limit = 1500000 (0x1e)\n[    1.277721] pmi632_charger: smblib_get_charge_param: AICL 5V threshold = 4400 (0x04)\n[    1.277732] pmi632_charger: smblib_get_charge_param: AICL CONT threshold = 4000 (0x00)\n[    1.277981] pmi632_charger: smblib_set_charge_param: usb otg current limit = 1000000 (0x02)\n[    1.277985] USB_ICL: DEFAULT_VOTER,0 same vote off of val=0\n[    1.277986] USB_ICL: DEFAULT_VOTER,0 voting off of val=0\n[    1.277989] USB_ICL: effective vote is now -22 voted by (null),-22\n[    1.277992] DC_SUSPEND: DEFAULT_VOTER,0 same vote off of val=0\n[    1.277994] DC_SUSPEND: DEFAULT_VOTER,0 voting off of val=0\n[    1.277996] DC_SUSPEND: effective vote is now 0 voted by DEFAULT_VOTER,0\n[    1.277999] FCC: HW_LIMIT_VOTER,0 voting off of val=-22\n[    1.278001] FCC: effective vote is now -22 voted by (null),-22\n[    1.278004] FV: HW_LIMIT_VOTER,0 voting off of val=-22\n[    1.278006] FV: effective vote is now -22 voted by (null),-22\n[    1.278009] FCC: BATT_PROFILE_VOTER,1 voting on of val=2000000\n[    1.278010] FCC: effective vote is now 2000000 voted by BATT_PROFILE_VOTER,1\n[    1.278013] FV: BATT_PROFILE_VOTER,1 voting on of val=4500000\n[    1.278015] FV: effective vote is now 4500000 voted by BATT_PROFILE_VOTER,1\n[    1.278017] USB_ICL: HW_LIMIT_VOTER,1 voting on of val=3000000\n[    1.278019] USB_ICL: effective vote is now 3000000 voted by HW_LIMIT_VOTER,1\n[    1.278041] CHG_DISABLE: DEFAULT_VOTER,0 same vote off of val=0\n[    1.278043] CHG_DISABLE: DEFAULT_VOTER,0 voting off of val=0\n[    1.278044] CHG_DISABLE: effective vote is now 0 voted by DEFAULT_VOTER,0\n[    1.278865] pmi632_charger: smblib_set_charge_param: switching frequency = 1050 (0x08)\n[    1.278867] dhx---faling:0\n[    1.278878] pmi632_charger: smblib_set_charge_param: AICL 5V threshold = 4400 (0x04)\n[    1.278889] pmi632_charger: smblib_set_charge_param: AICL CONT threshold = 4000 (0x00)\n[    1.278903] USB_ICL: AICL_THRESHOLD_VOTER,2 same vote off of val=0\n[    1.278905] USB_ICL: AICL_THRESHOLD_VOTER,2 Ignoring similar vote off of val=0\n[    1.278946] qcom,qpnp-smb5 1c40000.qcom,spmi:qcom,pmi632@2:qcom,qpnp-smb5: Linked as a consumer to regulator.48\n[    1.278958] pmi632_charger: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    1.278961] pmi632_charger: smblib_update_usb_type: APSD=UNKNOWN PD=0 QC3P5=0\n[    1.278965] TEMP_CHANGE_IRQ_DISABLE: DEFAULT_VOTER,0 voting on of val=1\n[    1.278967] TEMP_CHANGE_IRQ_DISABLE: effective vote is now 1 voted by DEFAULT_VOTER,0\n[    1.278972] pmi632_charger: smblib_usb_plugin_locked: IRQ: usbin-plugin detached\n[    1.278975] pmi632_charger: typec_attach_detach_irq_handler: IRQ: determine-initial-status\n[    1.278988] USB_ICL: SW_ICL_MAX_VOTER,3 voting on of val=100000\n[    1.278990] USB_ICL: effective vote is now 100000 voted by SW_ICL_MAX_VOTER,3\n[    1.279002] AWAKE: DETACH_DETECT_VOTER,0 voting on of val=1\n[    1.279004] AWAKE: effective vote is now 1 voted by DETACH_DETECT_VOTER,0\n[    1.279044] pmi632_charger: smblib_get_prop_typec_mode: TYPE_C_MISC_STATUS_REG = 0x40\n[    1.279055] pmi632_charger: smblib_get_prop_dfp_mode: TYPE_C_SRC_STATUS_REG = 0x00\n[    1.279058] pmi632_charger: typec_state_change_irq_handler: IRQ: cc-state-change; Type-C NONE detected\n[    1.279068] pmi632_charger: usb_source_change_irq_handler: APSD_STATUS = 0x00\n[    1.279071] pmi632_charger: smblib_handle_hvdcp_detect_done: IRQ: hvdcp-detect-done falling\n[    1.279073] pmi632_charger: smblib_handle_hvdcp_check_timeout: IRQ: smblib_handle_hvdcp_check_timeout falling\n[    1.279075] pmi632_charger: smblib_handle_sdp_enumeration_done: IRQ: sdp-enumeration-done falling\n[    1.279077] pmi632_charger: smblib_handle_slow_plugin_timeout: IRQ: slow-plugin-timeout falling\n[    1.279090] pmi632_charger: usb_source_change_irq_handler: APSD_STATUS = 0x00\n[    1.279092] pmi632_charger: chg_state_change_irq_handler: IRQ: determine-initial-status\n[    1.279103] pmi632_charger: smblib_eval_chg_termination: Couldn't read SOC value, rc=-22\n[    1.279115] pmi632_charger: icl_change_irq_handler: skip ICL change DIE_TEMP 3\n[    1.279117] pmi632_charger: batt_temp_changed_irq_handler: IRQ: determine-initial-status\n[    1.279119] pmi632_charger: wdog_bark_irq_handler: IRQ: determine-initial-status\n[    1.279131] pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: determine-initial-status\n[    1.279133] pmi632_charger: wdog_snarl_irq_handler: IRQ: determine-initial-status\n[    1.279311] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.279343] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.279405] pmi632_charger: smblib_get_charge_param: usb input current limit = 1500000 (0x1e)\n[    1.279417] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.279432] pmi632_charger: smblib_get_prop_typec_power_role: TYPE_C_MODE_CFG_REG = 0x10\n[    1.279445] pmi632_charger: smblib_get_prop_typec_cc_orientation: TYPE_C_STATUS_4 = 0x40\n[    1.279459] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.279889] pmi632_charger: smblib_get_charge_param: float voltage = 4500000 (0x5a)\n[    1.279903] pmi632_charger: smblib_get_charge_param: fast charge current = 2000000 (0x28)\n[    1.279917] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.279933] pmi632_charger: smblib_get_charge_param: dcdc icl max status = 0 (0x00)\n[    1.279970] pmi632_charger: smblib_get_charge_param: fast charge current = 2000000 (0x28)\n[    1.279982] pmi632_charger: smblib_get_charge_param: usb input current limit = 1500000 (0x1e)\n[    1.280092] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.280113] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.280143] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.280174] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.280193] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.280262] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.280283] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.280342] current_now=134724552\n[    1.280487] pmi632_charger: smblib_get_prop_dfp_mode: TYPE_C_SRC_STATUS_REG = 0x00\n[    1.280514] pmi632_charger: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    1.280533] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.280545] pmi632_charger: smblib_get_prop_ufp_mode: TYPE_C_STATUS_1 = 0x00\n[    1.281126] PL_DISABLE: ICL_CHANGE_VOTER,6 voting on of val=1\n[    1.281131] PL_ENABLE_INDIRECT: USBIN_I_VOTER,0 same vote off of val=0\n[    1.281133] PL_ENABLE_INDIRECT: USBIN_I_VOTER,0 voting off of val=0\n[    1.281135] PL_ENABLE_INDIRECT: effective vote is now 0 voted by USBIN_I_VOTER,0\n[    1.281138] PL_DISABLE: PL_INDIRECT_VOTER,3 same vote on of val=1\n[    1.281140] PL_DISABLE: PL_INDIRECT_VOTER,3 Ignoring similar vote on of val=1\n[    1.281152] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.281173] pmi632_charger: smblib_get_prop_typec_mode: TYPE_C_MISC_STATUS_REG = 0x40\n[    1.281184] pmi632_charger: smblib_get_prop_dfp_mode: TYPE_C_SRC_STATUS_REG = 0x00\n[    1.281195] pmi632_charger: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    1.281272] USB_ICL_IRQ_DISABLE: USB_SUSPEND_VOTER,0 same vote off of val=0\n[    1.281274] USB_ICL_IRQ_DISABLE: USB_SUSPEND_VOTER,0 voting off of val=0\n[    1.281276] USB_ICL_IRQ_DISABLE: effective vote is now 0 voted by USB_SUSPEND_VOTER,0\n[    1.281288] pmi632_charger: smblib_run_aicl: re-running AICL\n[    1.281308] PL_DISABLE: ICL_CHANGE_VOTER,6 voting off of val=0\n[    1.281318] QCOM-BATT: pl_fcc_vote_callback: cp_fcc_ua=2000000 total_fcc_ua=2000000 forced_main_fcc=0\n[    1.281324] FCC_MAIN: MAIN_FCC_VOTER,0 voting on of val=2000000\n[    1.281326] FCC_MAIN: effective vote is now 2000000 voted by MAIN_FCC_VOTER,0\n[    1.281340] pmi632_charger: smblib_set_charge_param: fast charge current = 2000000 (0x28)\n[    1.281351] pmi632_charger: smblib_set_charge_param: float voltage = 4500000 (0x5a)\n[    1.281354] QCOM-BATT: pl_disable_vote_callback: parallel charging disabled\n[    1.281365] pmi632_charger: smblib_set_charge_param: float voltage = 4500000 (0x5a)\n[    1.281378] PL_DISABLE: TAPER_END_VOTER,1 same vote off of val=0\n[    1.281380] PL_DISABLE: TAPER_END_VOTER,1 Ignoring similar vote off of val=0\n[    1.281383] PL_DISABLE: PL_TAPER_EARLY_BAD_VOTER,7 same vote off of val=0\n[    1.281385] PL_DISABLE: PL_TAPER_EARLY_BAD_VOTER,7 Ignoring similar vote off of val=0\n[    1.281387] PL_DISABLE: ICL_LIMIT_VOTER,8 same vote off of val=0\n[    1.281389] PL_DISABLE: ICL_LIMIT_VOTER,8 Ignoring similar vote off of val=0\n[    1.281401] PL_DISABLE: CHG_STATE_VOTER,0 same vote on of val=1\n[    1.281403] PL_DISABLE: CHG_STATE_VOTER,0 Ignoring similar vote on of val=1\n[    1.281415] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.281426] PL_ENABLE_INDIRECT: USBIN_I_VOTER,0 same vote off of val=0\n[    1.281428] PL_ENABLE_INDIRECT: USBIN_I_VOTER,0 Ignoring similar vote off of val=0\n[    1.281432] QCOM-BATT: pl_fcc_vote_callback: cp_fcc_ua=2000000 total_fcc_ua=2000000 forced_main_fcc=0\n[    1.281435] FCC_MAIN: MAIN_FCC_VOTER,0 same vote on of val=2000000\n[    1.281437] FCC_MAIN: MAIN_FCC_VOTER,0 Ignoring similar vote on of val=2000000\n[    1.281448] pmi632_charger: smblib_set_charge_param: float voltage = 4500000 (0x5a)\n[    1.281450] QCOM-BATT: pl_disable_vote_callback: parallel charging disabled\n[    1.282366] bcl_soc:bcl_read_soc battery percentage read error:-61\n[    1.287016] USB_LIMITED_IRQ_DISABLE: CHARGER_TYPE_VOTER,0 voting on of val=1\n[    1.287020] USB_LIMITED_IRQ_DISABLE: effective vote is now 1 voted by CHARGER_TYPE_VOTER,0\n[    1.287024] USB_HDC_IRQ_DISABLE: CHARGER_TYPE_VOTER,0 voting on of val=1\n[    1.287026] USB_HDC_IRQ_DISABLE: effective vote is now 1 voted by CHARGER_TYPE_VOTER,0\n[    1.287031] PL_DISABLE: ICL_CHANGE_VOTER,6 voting on of val=1\n[    1.287034] PL_ENABLE_INDIRECT: USBIN_I_VOTER,0 same vote off of val=0\n[    1.287036] PL_ENABLE_INDIRECT: USBIN_I_VOTER,0 Ignoring similar vote off of val=0\n[    1.287051] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.287073] pmi632_charger: smblib_get_prop_typec_mode: TYPE_C_MISC_STATUS_REG = 0x40\n[    1.287084] pmi632_charger: smblib_get_prop_dfp_mode: TYPE_C_SRC_STATUS_REG = 0x00\n[    1.287096] pmi632_charger: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    1.287143] USB_ICL_IRQ_DISABLE: USB_SUSPEND_VOTER,0 same vote off of val=0\n[    1.287145] USB_ICL_IRQ_DISABLE: USB_SUSPEND_VOTER,0 Ignoring similar vote off of val=0\n[    1.287156] pmi632_charger: smblib_run_aicl: re-running AICL\n[    1.287180] PL_DISABLE: ICL_CHANGE_VOTER,6 voting off of val=0\n[    1.287187] pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 1!\n[    1.287189] pmi632_charger: smblib_set_prop_typec_power_role: power role already in 1, ignore!\n[    1.287226] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.287246] SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    1.287302] QPNP SMB5 probed successfully\n[    1.287568] QG-K: qg_parse_dt: PMIC subtype 37 Digital major 2\n[    1.287597] QG-K: qg_parse_s2_dt: DT: S2 FIFO length=5 low_vbat_length=2 acc_length=128 acc_interval=100\n[    1.287612] QG-K: qg_parse_cl_dt: DT: cl_min_start_soc=10 cl_max_start_soc=15 cl_min_temp=150 cl_max_temp=500 chip->cl->dt.cl_wt_enable=0\n[    1.287615] QG-K: qg_parse_dt: DT: OCV timer_expiry =-22min ocv_tol_threshold=-22uV\n[    1.287642] QG-K: qg_parse_dt: DT: vbatt_empty_mv=3200mV vbatt_low_mv=3500mV delta_soc=1 ext-sns=0\n[    1.287673] QG-K: qg_set_wa_flags: wa_flags = 2\n[    1.287701] QG-K: qg_master_hold: Master hold = 1\n[    1.287781] QG-K: qg_process_accumulator: ACC v_avg=4017502uV i_avg=504455uA interval=300 count=16\n[    1.287854] QG-K: qg_master_hold: Master hold = 0\n[    1.300259] thermal test,the thermal_level=0\n[    1.300263] CHG_DISABLE: THERMAL_DAEMON_VOTER,1 same vote off of val=0\n[    1.300266] CHG_DISABLE: THERMAL_DAEMON_VOTER,1 Ignoring similar vote off of val=0\n[    1.300270] FCC: THERMAL_DAEMON_VOTER,3 voting on of val=3000000\n[    1.300273] pmi632_charger: smblib_set_prop_system_temp_level: system_temp_level = 0, ibat =3000000\n[    1.300276] thermal test,the thermal_level=0\n[    1.300278] CHG_DISABLE: THERMAL_DAEMON_VOTER,1 same vote off of val=0\n[    1.300280] CHG_DISABLE: THERMAL_DAEMON_VOTER,1 Ignoring similar vote off of val=0\n[    1.300282] FCC: THERMAL_DAEMON_VOTER,3 same vote on of val=3000000\n[    1.300284] FCC: THERMAL_DAEMON_VOTER,3 Ignoring similar vote on of val=3000000\n[    1.300286] pmi632_charger: smblib_set_prop_system_temp_level: system_temp_level = 0, ibat =3000000\n[    1.300372] QG-K: qg_vbat_thresholds_config: VBAT LOW threshold updated to 3500mV temp=317\n[    1.300536] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.300573] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.300636] pmi632_charger: smblib_get_charge_param: usb input current limit = 1500000 (0x1e)\n[    1.300647] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.300664] pmi632_charger: smblib_get_prop_typec_power_role: TYPE_C_MODE_CFG_REG = 0x10\n[    1.300677] pmi632_charger: smblib_get_prop_typec_cc_orientation: TYPE_C_STATUS_4 = 0x40\n[    1.300692] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.300726] pmi632_charger: smblib_get_charge_param: float voltage = 4500000 (0x5a)\n[    1.300740] pmi632_charger: smblib_get_charge_param: fast charge current = 2000000 (0x28)\n[    1.300754] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.300770] pmi632_charger: smblib_get_charge_param: dcdc icl max status = 0 (0x00)\n[    1.300807] pmi632_charger: smblib_get_charge_param: fast charge current = 2000000 (0x28)\n[    1.300820] pmi632_charger: smblib_get_charge_param: usb input current limit = 1500000 (0x1e)\n[    1.300852] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.300872] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.300885] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.300901] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.300920] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.300949] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.300978] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.300997] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.301026] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.301046] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.301104] current_now=134724552\n[    1.301766] QG-K: get_batt_id_ohm: batt_id_mv=759, batt_id_ohm=68027\n[    1.301887] PL_DISABLE: TAPER_END_VOTER,1 same vote off of val=0\n[    1.301889] PL_DISABLE: TAPER_END_VOTER,1 Ignoring similar vote off of val=0\n[    1.301893] PL_DISABLE: PL_TAPER_EARLY_BAD_VOTER,7 same vote off of val=0\n[    1.301895] PL_DISABLE: PL_TAPER_EARLY_BAD_VOTER,7 Ignoring similar vote off of val=0\n[    1.301898] PL_DISABLE: ICL_LIMIT_VOTER,8 same vote off of val=0\n[    1.301900] PL_DISABLE: ICL_LIMIT_VOTER,8 Ignoring similar vote off of val=0\n[    1.301912] PL_DISABLE: CHG_STATE_VOTER,0 same vote on of val=1\n[    1.301914] PL_DISABLE: CHG_STATE_VOTER,0 Ignoring similar vote on of val=1\n[    1.301926] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.301939] PL_ENABLE_INDIRECT: USBIN_I_VOTER,0 same vote off of val=0\n[    1.301941] PL_ENABLE_INDIRECT: USBIN_I_VOTER,0 Ignoring similar vote off of val=0\n[    1.301951] QCOM-BATT: pl_fcc_vote_callback: cp_fcc_ua=2000000 total_fcc_ua=2000000 forced_main_fcc=0\n[    1.301955] FCC_MAIN: MAIN_FCC_VOTER,0 same vote on of val=2000000\n[    1.301958] FCC_MAIN: MAIN_FCC_VOTER,0 Ignoring similar vote on of val=2000000\n[    1.301971] pmi632_charger: smblib_set_charge_param: float voltage = 4500000 (0x5a)\n[    1.301974] QCOM-BATT: pl_disable_vote_callback: parallel charging disabled\n[    1.301978] bcl_soc:bcl_read_soc battery percentage read error:-61\n[    1.302758] QG-K: get_batt_id_ohm: batt_id_mv=760, batt_id_ohm=68166\n[    1.303110] batt_id_kohm=68\n[    1.303118] of_batterydata_get_best_profile: NVT found\n[    1.303435] QG-K: qg_batterydata_init: QG Battery-profile loaded\n[    1.303445] QG-K: qg_load_battery_profile: profile=NVT FV=4450000uV FCC=3000ma\n[    1.303448] QG-K: qg_setup_battery: battery_missing=0 batt_id_ohm=68166 Ohm profile_loaded=1 profile=NVT\n[    1.303488] QG-K: qg_register_device: '/dev/qg' successfully created\n[    1.303502] QG-K: qg_sanitize_sdam: SDAM valid\n[    1.303610] QG-K: qg_determine_pon_soc: S7_PON_OCV OCV=4058765\n[    1.303621] QG-K: qg_determine_pon_soc: S3_GOOD_OCV OCV=6377865\n[    1.303632] QG-K: qg_determine_pon_soc: S3_LAST_OCV OCV=6377865\n[    1.303643] QG-K: qg_determine_pon_soc: SDAM_PON_OCV OCV=4055651\n[    1.304465] pmi632_charger: smblib_get_prop_dfp_mode: TYPE_C_SRC_STATUS_REG = 0x00\n[    1.304498] pmi632_charger: smblib_get_apsd_result: APSD_STATUS = 0x00\n[    1.304518] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.304529] pmi632_charger: smblib_get_prop_ufp_mode: TYPE_C_STATUS_1 = 0x00\n[    1.305751] QG-K: qg_determine_pon_soc: Shutdown: Valid=1 SOC=70 OCV=4076200uV time=23669545secs temp=314, time_now=23669641secs temp_now=317 S7_soc=68\n[    1.305754] QG-K: qg_determine_pon_soc: Using SHUTDOWN_SOC @ PON\n[    1.306768] QG-K: qg_store_soc_params: SDAM write param 0 value=1\n[    1.306779] QG-K: qg_store_soc_params: SDAM write param 1 value=70\n[    1.306790] QG-K: qg_store_soc_params: SDAM write param 2 value=317\n[    1.306801] QG-K: qg_store_soc_params: SDAM write param 3 value=0\n[    1.306814] QG-K: qg_store_soc_params: SDAM write param 4 value=4076200\n[    1.306827] QG-K: qg_store_soc_params: SDAM write param 5 value=0\n[    1.306840] QG-K: qg_store_soc_params: SDAM write param 6 value=23669641\n[    1.306851] QG-K: qg_determine_pon_soc: using SHUTDOWN_SOC @ PON ocv_uv=4076200uV soc=70\n[    1.307397] QG-K: qg_request_interrupt: IRQ qg-vbat-low registered wakeable=1\n[    1.307568] QG-K: qg_request_interrupt: IRQ qg-vbat-empty registered wakeable=1\n[    1.307735] QG-K: qg_request_interrupt: IRQ qg-fifo-done registered wakeable=1\n[    1.307902] QG-K: qg_request_interrupt: IRQ qg-good-ocv registered wakeable=1\n[    1.307964] QG-K: qpnp_qg_probe: QG initialized! battery_profile=NVT SOC=70 QG_subtype=3 QG_version=QG_PMIC5 QG_mode=QG_V_I\n[    1.310436] USB_ICL: DEBUG_BOARD_VOTER,9 same vote off of val=0\n[    1.310439] USB_ICL: DEBUG_BOARD_VOTER,9 Ignoring similar vote off of val=0\n[    1.310443] DC_SUSPEND: DEBUG_BOARD_VOTER,1 same vote off of val=0\n[    1.310445] DC_SUSPEND: DEBUG_BOARD_VOTER,1 Ignoring similar vote off of val=0\n[    1.310968] batt_id_kohm=68\n[    1.310976] of_batterydata_get_best_profile: NVT found\n[    1.311002] pmi632_charger: smblib_update_jeita: Hard Jeita threshold configured\n[    1.311022] pmi632_charger: smblib_update_jeita: Soft Jeita threshold configured\n[    1.311044] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.311104] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.311136] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.311175] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.311194] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.311222] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.311244] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.311364] current_now=641632\n[    1.311850] PL_DISABLE: TAPER_END_VOTER,1 same vote off of val=0\n[    1.311853] PL_DISABLE: TAPER_END_VOTER,1 Ignoring similar vote off of val=0\n[    1.311856] PL_DISABLE: PL_TAPER_EARLY_BAD_VOTER,7 same vote off of val=0\n[    1.311859] PL_DISABLE: PL_TAPER_EARLY_BAD_VOTER,7 Ignoring similar vote off of val=0\n[    1.311862] PL_DISABLE: ICL_LIMIT_VOTER,8 same vote off of val=0\n[    1.311864] PL_DISABLE: ICL_LIMIT_VOTER,8 Ignoring similar vote off of val=0\n[    1.311876] PL_DISABLE: CHG_STATE_VOTER,0 same vote on of val=1\n[    1.311878] PL_DISABLE: CHG_STATE_VOTER,0 Ignoring similar vote on of val=1\n[    1.311891] pmi632_charger: smblib_get_charge_param: input current limit status = 0 (0x00)\n[    1.311904] PL_ENABLE_INDIRECT: USBIN_I_VOTER,0 same vote off of val=0\n[    1.311906] PL_ENABLE_INDIRECT: USBIN_I_VOTER,0 Ignoring similar vote off of val=0\n[    1.311917] QCOM-BATT: pl_fcc_vote_callback: cp_fcc_ua=2000000 total_fcc_ua=2000000 forced_main_fcc=0\n[    1.311922] FCC_MAIN: MAIN_FCC_VOTER,0 same vote on of val=2000000\n[    1.311924] FCC_MAIN: MAIN_FCC_VOTER,0 Ignoring similar vote on of val=2000000\n[    1.311937] pmi632_charger: smblib_set_charge_param: float voltage = 4500000 (0x5a)\n[    1.311940] QCOM-BATT: pl_disable_vote_callback: parallel charging disabled\n[    1.311967] FV: BATT_PROFILE_VOTER,1 voting on of val=4450000\n[    1.311971] FV: effective vote is now 4450000 voted by BATT_PROFILE_VOTER,1\n[    1.311982] pmi632_charger: smblib_set_charge_param: float voltage = 4450000 (0x55)\n[    1.311985] FCC: BATT_PROFILE_VOTER,1 voting on of val=3000000\n[    1.311988] FCC: effective vote is now 3000000 voted by BATT_PROFILE_VOTER,1\n[    1.311992] QCOM-BATT: pl_fcc_vote_callback: cp_fcc_ua=3000000 total_fcc_ua=3000000 forced_main_fcc=0\n[    1.311995] FCC_MAIN: MAIN_FCC_VOTER,0 voting on of val=3000000\n[    1.311996] FCC_MAIN: effective vote is now 3000000 voted by MAIN_FCC_VOTER,0\n[    1.312009] pmi632_charger: smblib_set_charge_param: fast charge current = 3000000 (0x3c)\n[    1.312020] pmi632_charger: smblib_set_charge_param: float voltage = 4450000 (0x55)\n[    1.312022] QCOM-BATT: pl_disable_vote_callback: parallel charging disabled\n[    1.312068] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.312087] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.312117] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n[    1.312137] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    1.312176] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.312184] Failed reading reg=5 rc=-107\n[    1.312189] wsa881x-i2c-codec 0-000e: failed to read wsa881x with addr e\n[    1.312192] wsa881x-i2c-codec 0-000e: failed to ping wsa with addr:e, ret = -107\n[    1.312340] wsa881x-i2c-codec: probe of 0-000e failed with error -107\n[    1.318123] tmc_etr_bam_init: setting SPS_BAM_SMMU_EN flag with (8048000.tmc)\n[    1.318175] sps:BAM 0x0000000008064000 is registered.\n[    1.318793] coresight-stm 8002000.stm: STM32 initialized\n[    1.319474] msm-dwc3 4e00000.ssusb: Linked as a consumer to regulator.3\n[    1.320346] dwc3 4e00000.dwc3: Failed to get clk 'ref': -2\n[    1.320427] dwc3 4e00000.dwc3: changing max_speed on rev 00000000\n[    1.321136] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (4f04000.qcom,usbbam)\n[    1.321196] sps:BAM 0x0000000004f04000 is registered.\n[    1.321888] msm-dwc3 4e00000.ssusb: Linked as a consumer to regulator.48\n[    1.322161] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.322800] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.322989] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.323132] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.323311] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.323460] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.323873] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.324016] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.324168] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.324308] i2c_geni 4a84000.i2c: i2c error :-107\n[    1.325790] core_ctl: Creating CPU group 0\n[    1.325792] core_ctl: Init CPU0 state\n[    1.325794] core_ctl: Init CPU1 state\n[    1.325795] core_ctl: Init CPU2 state\n[    1.325796] core_ctl: Init CPU3 state\n[    1.325935] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    1.325948] QG-K: qg_charge_full_update: msoc=70 health=1 charge_full=0 charge_done=0\n[    1.326233] core_ctl: Creating CPU group 4\n[    1.326235] core_ctl: Init CPU4 state\n[    1.326236] core_ctl: Init CPU5 state\n[    1.326238] core_ctl: Init CPU6 state\n[    1.326239] core_ctl: Init CPU7 state\n[    1.326520] registered taskstats version 1\n[    1.326522] Loading compiled-in X.509 certificates\n[    1.328418] Loaded X.509 cert 'Build time autogenerated kernel key: d69e224c477d1c384e51bc99338ccfb64d47e837'\n[    1.328551] Key type ._fscrypt registered\n[    1.328553] Key type .fscrypt registered\n[    1.328555] Key type fscrypt-provisioning registered\n[    1.328752] pstore: Using compression: deflate\n[    1.330838] Error: swapper/0: fastrpc_device_init: failed to create debugfs root dir\n[    1.331418] adsprpc: init_secure_vmid_list: secure VMID = 22\n[    1.331420] adsprpc: init_secure_vmid_list: secure VMID = 37\n[    1.331445] adsprpc: fastrpc_probe: service location enabled for avs/audio (audio_pdr_adsprpc)\n[    1.331452] adsprpc: fastrpc_probe: service location enabled for tms/servreg (sensors_pdr_adsprpc)\n[    1.331893] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1: Linked as a consumer to c600000.apps-smmu\n[    1.332397] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 23\n[    1.332911] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2: Linked as a consumer to c600000.apps-smmu\n[    1.333222] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 24\n[    1.333685] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3: Linked as a consumer to c600000.apps-smmu\n[    1.334862] msm-dwc3 4e00000.ssusb: DWC3 exited from low power mode\n[    1.335025] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 25\n[    1.335548] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4: Linked as a consumer to c600000.apps-smmu\n[    1.335831] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 26\n[    1.336341] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5: Linked as a consumer to c600000.apps-smmu\n[    1.336588] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 27\n[    1.337078] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6: Linked as a consumer to c600000.apps-smmu\n[    1.337666] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 28\n[    1.338324] msm-dwc3 4e00000.ssusb: DWC3 in low power mode\n[    1.338866] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9: Linked as a consumer to c600000.apps-smmu\n[    1.339098] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 29\n[    1.339543] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10: Linked as a consumer to c600000.apps-smmu\n[    1.339752] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 30\n[    1.340250] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11: Linked as a consumer to c600000.apps-smmu\n[    1.340536] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 31\n[    1.340965] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12: Linked as a consumer to c600000.apps-smmu\n[    1.341192] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 32\n[    1.341595] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13: Linked as a consumer to c600000.apps-smmu\n[    1.341799] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13 to group 33\n[    1.342203] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14: Linked as a consumer to c600000.apps-smmu\n[    1.342403] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14 to group 34\n[    1.343443] adsprpc: fastrpc_device_init: SSR notifier registered for adsp\n[    1.343447] adsprpc: fastrpc_device_init: SSR notifier registered for modem\n[    1.343450] adsprpc: fastrpc_device_init: SSR notifier registered for slpi\n[    1.343453] adsprpc: fastrpc_device_init: SSR notifier registered for cdsp\n[    1.344211] i2c_pmic 0-0009: ignoring dependency for device, assuming no driver\n[    1.346936] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input4\n[    1.347909] [NVT-ts] nvt_driver_init 2688: start\n[    1.347946] [NVT-ts] nvt_ts_probe 1756: start\n[    1.347949] [NVT-ts] check_dt 2470: chenwenmin  \n[    1.347953] [NVT-ts] check_dt 2473: chenwenmin  panel count=4\n[    1.347957] [NVT-ts] check_dt 2481: chenwenmin node=00000000db6e26ac \n[    1.347966] [NVT-ts] check_dt 2484: chenwenmin IS_ERR(panel)=1 \n[    1.347968] [NVT-ts] check_dt 2485: chenwenmin panel=000000007c86e3a4 \n[    1.347970] [NVT-ts] check_dt 2481: chenwenmin node=0000000016bbe5b5 \n[    1.347977] [NVT-ts] check_dt 2484: chenwenmin IS_ERR(panel)=1 \n[    1.347979] [NVT-ts] check_dt 2485: chenwenmin panel=000000007c86e3a4 \n[    1.347981] [NVT-ts] check_dt 2481: chenwenmin node=0000000073b7cf68 \n[    1.347987] [NVT-ts] check_dt 2484: chenwenmin IS_ERR(panel)=1 \n[    1.347989] [NVT-ts] check_dt 2485: chenwenmin panel=000000007c86e3a4 \n[    1.347991] [NVT-ts] check_dt 2481: chenwenmin node=000000000eee3b74 \n[    1.347999] [NVT-ts] check_dt 2484: chenwenmin IS_ERR(panel)=1 \n[    1.348000] [NVT-ts] check_dt 2485: chenwenmin panel=000000007c86e3a4 \n[    1.348002] [NVT-ts] check_dt 2501: chenwenmin no find drm_panel\n[    1.348005] [NVT-ts] nvt_ts_probe 1759: nvt_ts_probe: novatek not actived\n[    1.348024] [NVT-ts] nvt_driver_init 2697: finished\n[    1.348026] [FTS_TS]fts_ts_init: Enter\n[    1.348306] [FTS_TS/I]fts_ts_probe:Touch Screen(SPI BUS) driver prboe...\n[    1.348309] [FTS_TS/I]fill_ctrl_data:read spi-cs-clk-delay failed!(-22)\n\n[    1.348313] [FTS_TS]fts_ts_probe_entry: Enter\n[    1.348315] [FTS_TS/I]fts_ts_probe_entry:Focaltech V3.2 20200422\n[    1.348316] [FTS_TS]fts_parse_dt: Enter\n[    1.348320] [FTS_TS/I]fts_get_dt_coords:display x(0 1080) y(0 2340)\n[    1.348338] [FTS_TS/I]fts_parse_dt:max touch number:10, irq gpio:1260, reset gpio:1270\n[    1.348340] [FTS_TS]fts_parse_dt: Exit(1295)\n[    1.348346] [FTS_TS/I]drm_check_dt:find drm_panel successfully\n[    1.348421] i2c_pmic 0-0009: ignoring dependency for device, assuming no driver\n[    1.349251] [FTS_TS]fts_bus_init: Enter\n[    1.349254] [FTS_TS]fts_bus_init: Exit(469)\n[    1.349256] [FTS_TS]fts_input_init: Enter\n[    1.349340] input: fts_ts as /devices/platform/soc/4a88000.spi/spi_master/spi1/spi1.0/input/input5\n[    1.349378] [FTS_TS]fts_input_init: Exit(839)\n[    1.349380] [FTS_TS]fts_gpio_configure: Enter\n[    1.349398] [FTS_TS]fts_gpio_configure: Exit(1166)\n[    1.349400] 1727 fts_ts_probe_entry wo shi miaozhichao\n[    1.349402] [FTS_TS/I]fts_ts_get_regulator:get/put regulator : 1\n[    1.349431] fts_ts spi1.0: Linked as a consumer to regulator.32\n[    1.349455] fts_ts spi1.0: Linked as a consumer to regulator.13\n[    1.349467] fts_ts spi1.0: Linked as a consumer to regulator.14\n[    1.349470] [FTS_TS/I]fts_ts_enable_regulator:enable touch regulator\n[    1.349474] [FTS_TS]fts_reset_proc:tp reset\n[    1.373838] spi_geni 4a88000.spi: tx_fifo 16 rx_fifo 16 tx_width 32\n[    1.401723] [FTS_TS]fts_get_chip_types:verify id:0x8719\n[    1.401726] [FTS_TS/I]fts_get_ic_information:get ic information, chip id = 0x8719\n[    1.401735] [FTS_TS/I]fts_create_apk_debug_channel:Create proc entry success!\n[    1.401756] [FTS_TS/I]fts_create_sysfs:[EX]: sysfs_create_group() succeeded!!\n[    1.401760] [FTS_TS/I]fts_extra_proc_init:create proc/fts_tp_info Succeeded!\n\n[    1.401762] [FTS_TS][TEST]fts_tp_data_dump_proc_init: Enter\n[    1.401766] [FTS_TS/I]fts_tp_data_dump_proc_init:create /proc/tp_data_dump\n[    1.401774] [FTS_TS]fts_ex_mode_init:create sysfs(ex_mode) succeedfully\n[    1.401776] [FTS_TS]fts_gesture_init: Enter\n[    1.401784] [FTS_TS]fts_gesture_init: Exit(519)\n[    1.401786] [FTS_TS][TEST]fts_test_init: Enter\n[    1.401787] [FTS_TS][TEST]fts_tp_differ_proc: Enter\n[    1.401792] [FTS_TS/I][TEST]fts_test_func_init:init test function\n[    1.401795] [FTS_TS/I][TEST]fts_test_func_init:match test function,type:d\n[    1.401799] [FTS_TS][TEST]fts_test_init:create proc entry self_test success\n[    1.401802] [FTS_TS][TEST]fts_test_init:sysfs(test) create successfully\n[    1.401804] [FTS_TS][TEST]fts_test_init: Exit(2371)\n[    1.401808] [FTS_TS/I]focal_proc_tp_lockdown_info:Sucess to creat focal_tp_lockdown_info /proc\n[    1.401809] [FTS_TS]fts_esdcheck_init: Enter\n[    1.401811] [FTS_TS]fts_esdcheck_switch: Enter\n[    1.401813] [FTS_TS]fts_esdcheck_switch:ESD check start\n[    1.401815] [FTS_TS]fts_esdcheck_switch: Exit(346)\n[    1.401818] [FTS_TS]fts_esdcheck_init: Exit(455)\n[    1.401826] [FTS_TS/I]fts_irq_registration:irq:281, flag:2002\n[    1.402013] [FTS_TS/I]fts_fwupg_init:fw upgrade init function\n[    1.402016] [FTS_TS/I]fts_fwupg_init:match upgrade setting,type(ID):0x8719\n[    1.402018] [FTS_TS]fts_esdcheck_switch: Enter\n[    1.402020] [FTS_TS]fts_esdcheck_switch:ESD check stop\n[    1.402022] [FTS_TS]fts_esdcheck_switch: Exit(346)\n[    1.402038] [FTS_TS/I]fts_fwupg_work:fw upgrade work function\n[    1.402040] [FTS_TS]fts_fwupg_get_fw_file:get upgrade fw file\n[    1.402049] [FTS_TS]fts_ts_probe_entry: Exit(1864)\n[    1.402051] [FTS_TS/I]fts_ts_probe:Touch Screen(SPI BUS) driver prboe successfully\n[    1.402106] i2c_pmic 0-0009: ignoring dependency for device, assuming no driver\n[    1.402819] [FTS_TS]fts_ts_init: Exit(2218)\n[    1.403565] lpm_levels: Cluster (system) stats not registered\n[    1.403568] lpm_levels: Cluster (perf) stats not registered\n[    1.403570] lpm_levels: Cluster (pwr) stats not registered\n[    1.404257] i2c_pmic 0-0009: ignoring dependency for device, assuming no driver\n[    1.408290] rmnet_ipa3 started initialization\n[    1.408943] RNDIS_IPA module is loaded.\n[    1.409291] msm notifier probed successfully\n[    1.409900] OF: /soc/qcom,mdss_rotator: could not get #list-cells for /soc/qcom,mdss_mdp\n[    1.409914] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-rot-vbif-memtype : doesn't exist in device tree\n[    1.409923] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-qos-lut : doesn't exist in device tree\n[    1.409926] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-danger-lut : doesn't exist in device tree\n[    1.409929] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-safe-lut : doesn't exist in device tree\n[    1.410498] sde_smmu 5e00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb: Linked as a consumer to c600000.apps-smmu\n[    1.410649] i2c_pmic 0-0009: ignoring dependency for device, assuming no driver\n[    1.411435] iommu: Adding device 5e00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 35\n[    1.411558] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    1.411853] sde_smmu 5e00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb: Linked as a consumer to c600000.apps-smmu\n[    1.412297] i2c_pmic 0-0009: ignoring dependency for device, assuming no driver\n[    1.413017] iommu: Adding device 5e00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 36\n[    1.413143] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    1.413476] i2c_pmic 0-0009: ignoring dependency for device, assuming no driver\n[    1.414094] No change in context(0==0), skip\n[    1.415810] sde_rotator 5e00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    1.416894] CAM_ERR: CAM-CCI: cam_cci_assign_fops: 599 Invalid dev node:00000000340f0421 offset: 0\n[    1.416924] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    1.417043] i2c_pmic 0-0009: ignoring dependency for device, assuming no driver\n[    1.418512] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    1.422216] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    1.422721] ALSA device list:\n[    1.422723]   No soundcards found.\n[    1.422765] Warning: unable to open an initial console.\n[    1.422963] Freeing unused kernel memory: 1024K\n[    1.423037] Run /init as init process\n[    1.910189] fts_ts spi1.0: Falling back to syfs fallback for: focaltech_ts_fw.bin\n[    2.510238] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    2.510462] cpu1 \n[    2.510526] cpu4 \n[    2.510578] \n               Offline CPUs: \n[    2.514380] cpu1 \n[    2.516547] CPU1: shutdown\n[    2.516645] psci: CPU1 killed (polled 0 ms)\n[    2.517300] cpu2 \n[    2.519328] CPU2: shutdown\n[    2.519430] psci: CPU2 killed (polled 0 ms)\n[    2.520269] cpu3 \n[    2.522132] CPU3: shutdown\n[    2.522211] psci: CPU3 killed (polled 0 ms)\n[    2.523111] cpu4 \n[    2.524156] IRQ 6: no longer affine to CPU4\n[    2.524266] CPU4: shutdown\n[    2.524329] psci: CPU4 killed (polled 0 ms)\n[    2.525157] cpu5 \n[    2.528210] CPU5: shutdown\n[    2.528261] psci: CPU5 killed (polled 0 ms)\n[    2.529158] cpu6 \n[    2.530292] IRQ 6: no longer affine to CPU6\n[    2.530437] CPU6: shutdown\n[    2.530502] psci: CPU6 killed (polled 0 ms)\n[    2.531405] cpu7 \n[    2.533627] CPU7: shutdown\n[    2.533673] psci: CPU7 killed (polled 0 ms)\n[    2.536655] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    2.536697] pmi632_charger: smblib_get_prop_batt_health: BATTERY_CHARGER_STATUS_2 = 0x08\n[    2.536755] pmi632_charger: smblib_get_prop_usb_online: POWER_PATH_STATUS = 0x02\n\n[    3.281025] pmi632_charger: smblib_pr_swap_detach_work: STATE_MACHINE_STS 4\n[    3.281049] AWAKE: DETACH_DETECT_VOTER,0 voting off of val=0\n[    3.281063] AWAKE: effective vote is now 0 voted by DETACH_DETECT_VOTER,0\n[    3.281088] batt_id_kohm=68\n[    3.281113] of_batterydata_get_best_profile: NVT found\n[    6.160924] aw87519_cfg_work_routine enter\n[    6.160937] aw87519_kspk_update enter\n[    6.160955] aw87519_drcv_update enter\n[    6.160965] aw87519_hvload_update enter\n[    6.160979] aw87359_cfg_work_routine enter\n[    6.160987] aw87359_dspk_update enter\n[    6.160996] aw87359_drcv_update enter\n[    6.161006] aw87359_abspk_update enter\n[    6.161016] aw87359_abrcv_update enter\n[    6.161495] aw87519_pa 0-0059: Falling back to syfs fallback for: aw87519_kspk.bin\n[    6.161963] aw87519_pa 0-0059: Falling back to syfs fallback for: aw87519_drcv.bin\n[    6.162366] aw87519_pa 0-0059: Falling back to syfs fallback for: aw87519_hvload.bin\n[    6.162762] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_dspk.bin\n[    6.163200] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_drcv.bin\n[    6.163596] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_abspk.bin\n[    6.163995] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_abrcv.bin\n[    7.542860] Sampling power every 250 ms\n               Baseline power usage: \n[   64.481203] [FTS_TS/I]fts_get_fw_file_via_request_firmware:firmware(focaltech_ts_fw.bin) request fail,ret=-11\n[   64.481218] [FTS_TS/I]fts_fwupg_get_fw_file:upgrade fw file len:0\n[   64.481227] [FTS_TS/E]fts_fwupg_get_fw_file:fw file len(0) fail\n[   64.481236] [FTS_TS/E]fts_fwupg_work:get file fail, can't upgrade\n[   65.124573] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[   65.124665] QG-K: qg_process_fifo: FIFO length=5\n[   65.124748] QG-K: qg_process_fifo: FIFO 0 raw_v=20640 uV=4017307 raw_i=3186 uA=486145 interval=100 count=128\n[   65.124799] QG-K: qg_process_fifo: FIFO 1 raw_v=20641 uV=4017502 raw_i=3123 uA=476532 interval=100 count=128\n[   65.124849] QG-K: qg_process_fifo: FIFO 2 raw_v=20637 uV=4016723 raw_i=3124 uA=476684 interval=100 count=128\n[   65.124899] QG-K: qg_process_fifo: FIFO 3 raw_v=20634 uV=4016139 raw_i=3123 uA=476532 interval=100 count=128\n[   65.124948] QG-K: qg_process_fifo: FIFO 4 raw_v=20632 uV=4015750 raw_i=3118 uA=475769 interval=100 count=128\n[   65.126569] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63836\n[   65.126593] QG_WS: FIFO_DONE_VOTER,0 voting on of val=1\n[   65.126606] QG_WS: effective vote is now 1 voted by FIFO_DONE_VOTER,0\n[   69.601255] aw87359_abrcv_cfg_loaded enter\n[   69.601268] aw87359_abrcv_cfg_loaded: failed to read aw87359_abrcv.bin\n[   69.601285] aw87359_abrcv_cfg_loaded:restart hrtimer to load firmware\n[   69.601490] aw87359_abspk_cfg_loaded enter\n[   69.601500] aw87359_abspk_cfg_loaded: failed to read aw87359_abspk.bin\n[   69.601509] aw87359_abspk_cfg_loaded:restart hrtimer to load firmware\n[   69.601696] aw87359_drcv_cfg_loaded enter\n[   69.601706] aw87359_drcv_cfg_loaded: failed to read aw87359_drcv.bin\n[   69.601715] aw87359_drcv_cfg_loaded:restart hrtimer to load firmware\n[   69.601951] aw87359_dspk_cfg_loaded enter\n[   69.601960] aw87359_dspk_cfg_loaded: failed to read aw87359_dspk.bin\n[   69.601969] aw87359_dspk_cfg_loaded:restart hrtimer to load firmware\n[   69.602159] aw87519_hvload_cfg_loaded enter\n[   69.602169] aw87519_hvload_cfg_loaded: failed to read aw87519_hvload.bin\n[   69.602182] aw87519_hvload_cfg_loaded:restart hrtimer to load firmware\n[   69.602369] aw87519_drcv_cfg_loaded enter\n[   69.602379] aw87519_drcv_cfg_loaded: failed to read aw87519_drcv.bin\n[   69.602387] aw87519_drcv_cfg_loaded:restart hrtimer to load firmware\n[   69.602579] aw87519_kspk_cfg_loaded enter\n[   69.602589] aw87519_kspk_cfg_loaded: failed to read aw87519_kspk.bin\n[   69.602597] aw87519_kspk_cfg_loaded:restart hrtimer to load firmware\n[   71.600920] aw87519_cfg_work_routine enter\n[   71.600933] aw87519_kspk_update enter\n[   71.600951] aw87519_drcv_update enter\n[   71.600962] aw87519_hvload_update enter\n[   71.600975] aw87359_cfg_work_routine enter\n[   71.600983] aw87359_dspk_update enter\n[   71.600993] aw87359_drcv_update enter\n[   71.601003] aw87359_abspk_update enter\n[   71.601013] aw87359_abrcv_update enter\n[   71.601330] aw87519_pa 0-0059: Falling back to syfs fallback for: aw87519_kspk.bin\n[   71.601806] aw87519_pa 0-0059: Falling back to syfs fallback for: aw87519_drcv.bin\n[   71.602207] aw87519_pa 0-0059: Falling back to syfs fallback for: aw87519_hvload.bin\n[   71.602601] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_dspk.bin\n[   71.603007] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_drcv.bin\n[   71.603403] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_abspk.bin\n[   71.603804] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_abrcv.bin\n[   83.014413] Detected VIPT I-cache on CPU1\n[   83.014580] arch_timer: CPU1: Trapping CNTVCT access\n[   83.014614] CPU1: Booted secondary processor 0x0000000001 [0x51af8014]\n[   84.027218] 1879 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 614 864 1017 1305 1420 1612 1804\n               \n                300: \n[  100.659304] boot log copy done\n[  105.440603] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  105.440621] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  115.681163] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  115.681180] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  125.920670] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  125.920688] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  129.014602] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  129.014688] QG-K: qg_process_fifo: FIFO length=5\n[  129.014768] QG-K: qg_process_fifo: FIFO 0 raw_v=20629 uV=4015166 raw_i=3123 uA=476532 interval=100 count=128\n[  129.014819] QG-K: qg_process_fifo: FIFO 1 raw_v=20627 uV=4014777 raw_i=3123 uA=476532 interval=100 count=128\n[  129.014869] QG-K: qg_process_fifo: FIFO 2 raw_v=20624 uV=4014193 raw_i=3141 uA=479278 interval=100 count=128\n[  129.014919] QG-K: qg_process_fifo: FIFO 3 raw_v=20621 uV=4013609 raw_i=3147 uA=480194 interval=100 count=128\n[  129.014969] QG-K: qg_process_fifo: FIFO 4 raw_v=20619 uV=4013220 raw_i=3147 uA=480194 interval=100 count=128\n[  129.016455] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63890\n[  129.016475] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  129.016488] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  136.160823] aw87359_abrcv_cfg_loaded enter\n[  136.160836] aw87359_abrcv_cfg_loaded: failed to read aw87359_abrcv.bin\n[  136.160850] aw87359_abrcv_cfg_loaded:restart hrtimer to load firmware\n[  136.161052] aw87359_abspk_cfg_loaded enter\n[  136.161063] aw87359_abspk_cfg_loaded: failed to read aw87359_abspk.bin\n[  136.161071] aw87359_abspk_cfg_loaded:restart hrtimer to load firmware\n[  136.161263] aw87359_drcv_cfg_loaded enter\n[  136.161273] aw87359_drcv_cfg_loaded: failed to read aw87359_drcv.bin\n[  136.161282] aw87359_drcv_cfg_loaded:restart hrtimer to load firmware\n[  136.161474] aw87359_dspk_cfg_loaded enter\n[  136.161484] aw87359_dspk_cfg_loaded: failed to read aw87359_dspk.bin\n[  136.161492] aw87359_dspk_cfg_loaded:restart hrtimer to load firmware\n[  136.161679] aw87519_hvload_cfg_loaded enter\n[  136.161689] aw87519_hvload_cfg_loaded: failed to read aw87519_hvload.bin\n[  136.161701] aw87519_hvload_cfg_loaded:restart hrtimer to load firmware\n[  136.161927] aw87519_drcv_cfg_loaded enter\n[  136.161937] aw87519_drcv_cfg_loaded: failed to read aw87519_drcv.bin\n[  136.161946] aw87519_drcv_cfg_loaded:restart hrtimer to load firmware\n[  136.162135] aw87519_kspk_cfg_loaded enter\n[  136.162146] aw87519_kspk_cfg_loaded: failed to read aw87519_kspk.bin\n[  136.162154] aw87519_kspk_cfg_loaded:restart hrtimer to load firmware\n[  136.162285] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  136.162299] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  138.160553] aw87519_cfg_work_routine enter\n[  138.160566] aw87519_kspk_update enter\n[  138.160582] aw87519_drcv_update enter\n[  138.160592] aw87519_hvload_update enter\n[  138.160604] aw87359_cfg_work_routine enter\n[  138.160613] aw87359_dspk_update enter\n[  138.160622] aw87359_drcv_update enter\n[  138.160632] aw87359_abspk_update enter\n[  138.160642] aw87359_abrcv_update enter\n[  138.160967] aw87519_pa 0-0059: Falling back to syfs fallback for: aw87519_kspk.bin\n[  138.161424] aw87519_pa 0-0059: Falling back to syfs fallback for: aw87519_drcv.bin\n[  138.161831] aw87519_pa 0-0059: Falling back to syfs fallback for: aw87519_hvload.bin\n[  138.162226] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_dspk.bin\n[  138.162637] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_drcv.bin\n[  138.163033] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_abspk.bin\n[  138.163425] aw87359_pa 0-0058: Falling back to syfs fallback for: aw87359_abrcv.bin\n[  146.400599] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  146.400616] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  156.640603] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  156.640620] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  166.880659] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  166.880677] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  177.120599] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  177.120616] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  187.360602] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  187.360619] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  192.901473] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  192.901558] QG-K: qg_process_fifo: FIFO length=5\n[  192.901639] QG-K: qg_process_fifo: FIFO 0 raw_v=20617 uV=4012831 raw_i=3144 uA=479736 interval=100 count=128\n[  192.901690] QG-K: qg_process_fifo: FIFO 1 raw_v=20615 uV=4012441 raw_i=3145 uA=479889 interval=100 count=128\n[  192.901740] QG-K: qg_process_fifo: FIFO 2 raw_v=20614 uV=4012247 raw_i=3147 uA=480194 interval=100 count=128\n[  192.901789] QG-K: qg_process_fifo: FIFO 3 raw_v=20612 uV=4011857 raw_i=3143 uA=479584 interval=100 count=128\n[  192.901840] QG-K: qg_process_fifo: FIFO 4 raw_v=20609 uV=4011273 raw_i=3148 uA=480347 interval=100 count=128\n[  192.903331] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63886\n[  192.903351] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  192.903364] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  197.600600] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  197.600617] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  202.720880] aw87359_abrcv_cfg_loaded enter\n[  202.720893] aw87359_abrcv_cfg_loaded: failed to read aw87359_abrcv.bin\n[  202.721090] aw87359_abspk_cfg_loaded enter\n[  202.721101] aw87359_abspk_cfg_loaded: failed to read aw87359_abspk.bin\n[  202.721291] aw87359_drcv_cfg_loaded enter\n[  202.721301] aw87359_drcv_cfg_loaded: failed to read aw87359_drcv.bin\n[  202.721495] aw87359_dspk_cfg_loaded enter\n[  202.721505] aw87359_dspk_cfg_loaded: failed to read aw87359_dspk.bin\n[  202.721696] aw87519_hvload_cfg_loaded enter\n[  202.721706] aw87519_hvload_cfg_loaded: failed to read aw87519_hvload.bin\n[  202.721892] aw87519_drcv_cfg_loaded enter\n[  202.721902] aw87519_drcv_cfg_loaded: failed to read aw87519_drcv.bin\n[  202.722090] aw87519_kspk_cfg_loaded enter\n[  202.722100] aw87519_kspk_cfg_loaded: failed to read aw87519_kspk.bin\n[  207.840661] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  207.840678] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  218.080680] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  218.080697] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  228.320601] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  228.320618] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  238.560659] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  238.560676] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  248.800659] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  248.800676] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  256.785766] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  256.785851] QG-K: qg_process_fifo: FIFO length=5\n[  256.785931] QG-K: qg_process_fifo: FIFO 0 raw_v=20608 uV=4011079 raw_i=3148 uA=480347 interval=100 count=128\n[  256.785983] QG-K: qg_process_fifo: FIFO 1 raw_v=20606 uV=4010690 raw_i=3142 uA=479431 interval=100 count=128\n[  256.786033] QG-K: qg_process_fifo: FIFO 2 raw_v=20603 uV=4010106 raw_i=3147 uA=480194 interval=100 count=128\n[  256.786082] QG-K: qg_process_fifo: FIFO 3 raw_v=20602 uV=4009911 raw_i=3145 uA=479889 interval=100 count=128\n[  256.786132] QG-K: qg_process_fifo: FIFO 4 raw_v=20600 uV=4009522 raw_i=3145 uA=479889 interval=100 count=128\n[  256.787620] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63884\n[  256.787640] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  256.787653] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  259.040604] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  259.040620] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  269.281171] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  269.281187] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  279.520622] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  279.520640] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  289.760604] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  289.760621] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  300.000601] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  300.000618] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  305.120748] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120798] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121590] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121612] audio_notifer_reg_service: service SSR_ADSP is in use\n[  305.121691] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121707] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for audio_pdr_adsprpc\n[  305.121780] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121793] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for sensors_pdr_adsprpc\n[  305.121836] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  310.240603] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  310.240621] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  320.480661] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  320.480678] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  320.669396] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  320.669479] QG-K: qg_process_fifo: FIFO length=5\n[  320.669560] QG-K: qg_process_fifo: FIFO 0 raw_v=20598 uV=4009132 raw_i=3148 uA=480347 interval=100 count=128\n[  320.669611] QG-K: qg_process_fifo: FIFO 1 raw_v=20596 uV=4008743 raw_i=3143 uA=479584 interval=100 count=128\n[  320.669661] QG-K: qg_process_fifo: FIFO 2 raw_v=20594 uV=4008354 raw_i=3147 uA=480194 interval=100 count=128\n[  320.669711] QG-K: qg_process_fifo: FIFO 3 raw_v=20593 uV=4008159 raw_i=3146 uA=480041 interval=100 count=128\n[  320.669760] QG-K: qg_process_fifo: FIFO 4 raw_v=20591 uV=4007770 raw_i=3145 uA=479889 interval=100 count=128\n[  320.671250] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63883\n[  320.671270] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  320.671283] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  330.720608] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  330.720625] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  340.960668] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  340.960686] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  351.200735] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  351.200752] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  361.440598] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  361.440615] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  371.680718] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  371.680735] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  381.920607] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  381.920625] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  384.558790] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  384.558876] QG-K: qg_process_fifo: FIFO length=5\n[  384.558958] QG-K: qg_process_fifo: FIFO 0 raw_v=20589 uV=4007381 raw_i=3149 uA=480499 interval=100 count=128\n[  384.559009] QG-K: qg_process_fifo: FIFO 1 raw_v=20587 uV=4006991 raw_i=3142 uA=479431 interval=100 count=128\n[  384.559059] QG-K: qg_process_fifo: FIFO 2 raw_v=20585 uV=4006602 raw_i=3148 uA=480347 interval=100 count=128\n[  384.559109] QG-K: qg_process_fifo: FIFO 3 raw_v=20584 uV=4006408 raw_i=3149 uA=480499 interval=100 count=128\n[  384.559158] QG-K: qg_process_fifo: FIFO 4 raw_v=20583 uV=4006213 raw_i=3146 uA=480041 interval=100 count=128\n[  384.560474] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63889\n[  384.560494] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  384.560507] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  392.160603] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  392.160621] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  400.322130]   974     3.2 C/MHz     34 mW   10.6 J   28.4 I/mJ   308.0 s\n                614: \n[  402.400854] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  402.400863] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  412.640411] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  412.640421] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  422.880756] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  422.880765] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  433.120408] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  433.120419] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  443.360410] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  443.360420] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  448.448492] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  448.448559] QG-K: qg_process_fifo: FIFO length=5\n[  448.448624] QG-K: qg_process_fifo: FIFO 0 raw_v=20581 uV=4005824 raw_i=3146 uA=480041 interval=100 count=128\n[  448.448660] QG-K: qg_process_fifo: FIFO 1 raw_v=20579 uV=4005434 raw_i=3138 uA=478821 interval=100 count=128\n[  448.448697] QG-K: qg_process_fifo: FIFO 2 raw_v=20575 uV=4004656 raw_i=3177 uA=484772 interval=100 count=128\n[  448.448733] QG-K: qg_process_fifo: FIFO 3 raw_v=20573 uV=4004267 raw_i=3180 uA=485229 interval=100 count=128\n[  448.448768] QG-K: qg_process_fifo: FIFO 4 raw_v=20571 uV=4003877 raw_i=3181 uA=485382 interval=100 count=128\n[  448.449935] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63889\n[  448.449945] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  448.449952] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  453.600413] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  453.600423] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  463.840422] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  463.840432] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  474.080481] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  474.080491] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  484.320419] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  484.320429] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  494.560441] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  494.560451] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  504.801047] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  504.801056] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  512.337958] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  512.338028] QG-K: qg_process_fifo: FIFO length=5\n[  512.338090] QG-K: qg_process_fifo: FIFO 0 raw_v=20569 uV=4003488 raw_i=3178 uA=484924 interval=100 count=128\n[  512.338126] QG-K: qg_process_fifo: FIFO 1 raw_v=20568 uV=4003293 raw_i=3178 uA=484924 interval=100 count=128\n[  512.338162] QG-K: qg_process_fifo: FIFO 2 raw_v=20566 uV=4002904 raw_i=3180 uA=485229 interval=100 count=128\n[  512.338198] QG-K: qg_process_fifo: FIFO 3 raw_v=20564 uV=4002515 raw_i=3179 uA=485077 interval=100 count=128\n[  512.338234] QG-K: qg_process_fifo: FIFO 4 raw_v=20563 uV=4002320 raw_i=3178 uA=484924 interval=100 count=128\n[  512.339575] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63889\n[  512.339586] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  512.339593] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  515.040414] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  515.040423] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  525.280439] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  525.280448] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  535.520410] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  535.520419] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  545.760460] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  545.760470] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  556.000411] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  556.000422] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  559.117033]  1995     3.2 C/MHz     62 mW    9.4 J   32.0 I/mJ   150.4 s\n                864: \n[  566.240803] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  566.240811] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  576.226224] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  576.226289] QG-K: qg_process_fifo: FIFO length=5\n[  576.226351] QG-K: qg_process_fifo: FIFO 0 raw_v=20561 uV=4001931 raw_i=3182 uA=485535 interval=100 count=128\n[  576.226383] QG-K: qg_process_fifo: FIFO 1 raw_v=20559 uV=4001542 raw_i=3181 uA=485382 interval=100 count=128\n[  576.226416] QG-K: qg_process_fifo: FIFO 2 raw_v=20557 uV=4001152 raw_i=3180 uA=485229 interval=100 count=128\n[  576.226448] QG-K: qg_process_fifo: FIFO 3 raw_v=20556 uV=4000958 raw_i=3162 uA=482483 interval=100 count=128\n[  576.226480] QG-K: qg_process_fifo: FIFO 4 raw_v=20553 uV=4000374 raw_i=3183 uA=485687 interval=100 count=128\n[  576.227796] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63888\n[  576.227804] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  576.227810] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  576.480617] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  576.480623] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  586.720359] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  586.720366] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  596.960404] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  596.960411] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  607.200684] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  607.200691] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  617.440382] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  617.440389] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  627.680388] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  627.680396] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  637.920356] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  637.920364] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  640.114189] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  640.114254] QG-K: qg_process_fifo: FIFO length=5\n[  640.114316] QG-K: qg_process_fifo: FIFO 0 raw_v=20550 uV=3999790 raw_i=3208 uA=489502 interval=100 count=128\n[  640.114349] QG-K: qg_process_fifo: FIFO 1 raw_v=20548 uV=3999401 raw_i=3211 uA=489960 interval=100 count=128\n[  640.114381] QG-K: qg_process_fifo: FIFO 2 raw_v=20548 uV=3999401 raw_i=3206 uA=489197 interval=100 count=128\n[  640.114413] QG-K: qg_process_fifo: FIFO 3 raw_v=20546 uV=3999011 raw_i=3209 uA=489654 interval=100 count=128\n[  640.114446] QG-K: qg_process_fifo: FIFO 4 raw_v=20544 uV=3998622 raw_i=3211 uA=489960 interval=100 count=128\n[  640.115766] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63887\n[  640.115774] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  640.115779] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  648.160358] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  648.160367] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  658.400356] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  658.400364] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  668.640450] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  668.640458] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  674.427339]  2806     3.2 C/MHz     79 mW    8.4 J   35.7 I/mJ   106.9 s\n               1017: \n[  678.880815] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  678.880822] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  689.120381] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  689.120387] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  699.360337] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  699.360344] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  704.004082] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  704.004144] QG-K: qg_process_fifo: FIFO length=5\n[  704.004204] QG-K: qg_process_fifo: FIFO 0 raw_v=20543 uV=3998427 raw_i=3209 uA=489654 interval=100 count=128\n[  704.004235] QG-K: qg_process_fifo: FIFO 1 raw_v=20540 uV=3997843 raw_i=3209 uA=489654 interval=100 count=128\n[  704.004266] QG-K: qg_process_fifo: FIFO 2 raw_v=20540 uV=3997843 raw_i=3184 uA=485840 interval=100 count=128\n[  704.004297] QG-K: qg_process_fifo: FIFO 3 raw_v=20537 uV=3997260 raw_i=3197 uA=487823 interval=100 count=128\n[  704.004328] QG-K: qg_process_fifo: FIFO 4 raw_v=20533 uV=3996481 raw_i=3231 uA=493011 interval=100 count=128\n[  704.005630] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63889\n[  704.005637] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  704.005642] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  709.600340] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  709.600346] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  719.840338] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  719.840345] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  730.080596] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  730.080603] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  740.320383] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  740.320389] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  750.560340] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  750.560347] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  760.800337] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  760.800343] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  767.890125] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  767.890188] QG-K: qg_process_fifo: FIFO length=5\n[  767.890248] QG-K: qg_process_fifo: FIFO 0 raw_v=20531 uV=3996092 raw_i=3235 uA=493622 interval=100 count=128\n[  767.890280] QG-K: qg_process_fifo: FIFO 1 raw_v=20530 uV=3995897 raw_i=3231 uA=493011 interval=100 count=128\n[  767.890310] QG-K: qg_process_fifo: FIFO 2 raw_v=20528 uV=3995508 raw_i=3233 uA=493317 interval=100 count=128\n[  767.890341] QG-K: qg_process_fifo: FIFO 3 raw_v=20526 uV=3995119 raw_i=3236 uA=493774 interval=100 count=128\n[  767.890372] QG-K: qg_process_fifo: FIFO 4 raw_v=20525 uV=3994924 raw_i=3230 uA=492859 interval=100 count=128\n[  767.891689] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63886\n[  767.891696] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  767.891701] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  771.040340] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  771.040347] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  773.587992]  3305     3.2 C/MHz     92 mW    8.3 J   36.0 I/mJ    90.8 s\n               1305: \n[  781.280784] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  781.280791] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  791.520314] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  791.520320] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  801.760314] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  801.760320] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  812.000317] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  812.000323] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  822.240316] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  822.240322] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  831.778076] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  831.778135] QG-K: qg_process_fifo: FIFO length=5\n[  831.778192] QG-K: qg_process_fifo: FIFO 0 raw_v=20527 uV=3995313 raw_i=3177 uA=484772 interval=100 count=128\n[  831.778221] QG-K: qg_process_fifo: FIFO 1 raw_v=20519 uV=3993756 raw_i=3275 uA=499725 interval=100 count=128\n[  831.778251] QG-K: qg_process_fifo: FIFO 2 raw_v=20515 uV=3992978 raw_i=3284 uA=501098 interval=100 count=128\n[  831.778280] QG-K: qg_process_fifo: FIFO 3 raw_v=20513 uV=3992588 raw_i=3289 uA=501861 interval=100 count=128\n[  831.778309] QG-K: qg_process_fifo: FIFO 4 raw_v=20511 uV=3992199 raw_i=3289 uA=501861 interval=100 count=128\n[  831.779589] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63887\n[  831.779596] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  831.779599] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  832.480241] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  832.480246] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  842.720326] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  842.720331] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  852.584590]  4240     3.2 C/MHz    123 mW    8.7 J   34.4 I/mJ    70.8 s\n               1420: \n[  852.960758] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  852.960764] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  863.200324] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  863.200330] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  873.440330] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  873.440335] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  883.680529] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  883.680534] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  893.920327] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  893.920332] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  895.662861] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  895.662920] QG-K: qg_process_fifo: FIFO length=5\n[  895.662976] QG-K: qg_process_fifo: FIFO 0 raw_v=20510 uV=3992004 raw_i=3285 uA=501251 interval=100 count=128\n[  895.663004] QG-K: qg_process_fifo: FIFO 1 raw_v=20512 uV=3992394 raw_i=3232 uA=493164 interval=100 count=128\n[  895.663033] QG-K: qg_process_fifo: FIFO 2 raw_v=20509 uV=3991810 raw_i=3262 uA=497742 interval=100 count=128\n[  895.663061] QG-K: qg_process_fifo: FIFO 3 raw_v=20504 uV=3990837 raw_i=3309 uA=504913 interval=100 count=128\n[  895.663090] QG-K: qg_process_fifo: FIFO 4 raw_v=20501 uV=3990253 raw_i=3312 uA=505371 interval=100 count=128\n[  895.664360] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63884\n[  895.664367] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  895.664369] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  904.160306] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  904.160312] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  914.400308] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  914.400313] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  924.640310] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  924.640316] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  925.789545]  4614     3.2 C/MHz    135 mW    8.8 J   34.1 I/mJ    65.0 s\n               1612: \n[  934.880315] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  934.880320] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  945.120300] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  945.120305] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  955.360302] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  955.360307] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  959.547886] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[  959.547942] QG-K: qg_process_fifo: FIFO length=5\n[  959.547997] QG-K: qg_process_fifo: FIFO 0 raw_v=20499 uV=3989863 raw_i=3307 uA=504608 interval=100 count=128\n[  959.548025] QG-K: qg_process_fifo: FIFO 1 raw_v=20497 uV=3989474 raw_i=3311 uA=505218 interval=100 count=128\n[  959.548053] QG-K: qg_process_fifo: FIFO 2 raw_v=20503 uV=3990642 raw_i=3199 uA=488129 interval=100 count=128\n[  959.548081] QG-K: qg_process_fifo: FIFO 3 raw_v=20491 uV=3988306 raw_i=3357 uA=512237 interval=100 count=128\n[  959.548108] QG-K: qg_process_fifo: FIFO 4 raw_v=20489 uV=3987917 raw_i=3362 uA=513000 interval=100 count=128\n[  959.549383] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63885\n[  959.549388] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[  959.549391] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[  965.600307] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  965.600312] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  975.840300] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  975.840306] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  986.080331] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  986.080336] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[  991.441587]  5238     3.2 C/MHz    164 mW    9.4 J   31.9 I/mJ    57.3 s\n               1804: \n[  996.320745] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[  996.320750] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1006.560306] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1006.560311] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1016.800301] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1016.800306] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1023.432767] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1023.432825] QG-K: qg_process_fifo: FIFO length=5\n[ 1023.432880] QG-K: qg_process_fifo: FIFO 0 raw_v=20488 uV=3987722 raw_i=3355 uA=511932 interval=100 count=128\n[ 1023.432907] QG-K: qg_process_fifo: FIFO 1 raw_v=20485 uV=3987138 raw_i=3361 uA=512848 interval=100 count=128\n[ 1023.432935] QG-K: qg_process_fifo: FIFO 2 raw_v=20491 uV=3988306 raw_i=3246 uA=495300 interval=100 count=128\n[ 1023.432962] QG-K: qg_process_fifo: FIFO 3 raw_v=20482 uV=3986555 raw_i=3380 uA=515747 interval=100 count=128\n[ 1023.432989] QG-K: qg_process_fifo: FIFO 4 raw_v=20476 uV=3985387 raw_i=3421 uA=522003 interval=100 count=128\n[ 1023.434206] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63884\n[ 1023.434212] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1023.434214] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1027.040297] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1027.040302] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1037.280500] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1037.280504] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1047.520298] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1047.520303] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1050.810798] CPU1: shutdown\n[ 1050.810923] psci: CPU1 killed (polled 0 ms)\n[ 1050.814935] Detected VIPT I-cache on CPU4\n[ 1050.815021] arch_timer: CPU4: Trapping CNTVCT access\n[ 1050.815029] CPU4: Booted secondary processor 0x0000000100 [0x51af8002]\n[ 1051.826725]  5861     3.2 C/MHz    200 mW   10.2 J   29.3 I/mJ    51.2 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 300 652 902 1056 1401 1536 1612 1804 2016\n               \n                300: \n[ 1057.761064] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1057.761081] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1068.000970] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1068.000987] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1078.240976] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1078.240994] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1087.317609] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1087.317701] QG-K: qg_process_fifo: FIFO length=5\n[ 1087.317782] QG-K: qg_process_fifo: FIFO 0 raw_v=20474 uV=3984997 raw_i=3419 uA=521698 interval=100 count=128\n[ 1087.317833] QG-K: qg_process_fifo: FIFO 1 raw_v=20471 uV=3984414 raw_i=3419 uA=521698 interval=100 count=128\n[ 1087.317883] QG-K: qg_process_fifo: FIFO 2 raw_v=20485 uV=3987138 raw_i=3192 uA=487060 interval=100 count=128\n[ 1087.317933] QG-K: qg_process_fifo: FIFO 3 raw_v=20482 uV=3986555 raw_i=3215 uA=490570 interval=100 count=128\n[ 1087.317983] QG-K: qg_process_fifo: FIFO 4 raw_v=20481 uV=3986360 raw_i=3220 uA=491333 interval=100 count=128\n[ 1087.319500] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63884\n[ 1087.319521] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1087.319534] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1088.481052] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1088.481069] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1098.720971] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1098.720988] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1108.961035] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1108.961052] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1119.200976] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1119.200993] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1129.440973] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1129.440991] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1139.681074] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1139.681091] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1149.920975] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1149.920993] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1151.200923] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1151.201014] QG-K: qg_process_fifo: FIFO length=5\n[ 1151.201095] QG-K: qg_process_fifo: FIFO 0 raw_v=20481 uV=3986360 raw_i=3217 uA=490875 interval=100 count=128\n[ 1151.201146] QG-K: qg_process_fifo: FIFO 1 raw_v=20479 uV=3985971 raw_i=3216 uA=490723 interval=100 count=128\n[ 1151.201195] QG-K: qg_process_fifo: FIFO 2 raw_v=20477 uV=3985581 raw_i=3220 uA=491333 interval=100 count=128\n[ 1151.201245] QG-K: qg_process_fifo: FIFO 3 raw_v=20476 uV=3985387 raw_i=3215 uA=490570 interval=100 count=128\n[ 1151.201295] QG-K: qg_process_fifo: FIFO 4 raw_v=20474 uV=3984997 raw_i=3219 uA=491180 interval=100 count=128\n[ 1151.203094] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63883\n[ 1151.203117] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1151.203130] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1160.160974] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1160.160992] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1170.401056] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1170.401073] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1180.640977] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1180.640994] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1190.881564] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1190.881580] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1201.120977] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1201.120995] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1211.360977] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1211.360995] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1215.080963] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1215.081054] QG-K: qg_process_fifo: FIFO length=5\n[ 1215.081136] QG-K: qg_process_fifo: FIFO 0 raw_v=20473 uV=3984803 raw_i=3217 uA=490875 interval=100 count=128\n[ 1215.081187] QG-K: qg_process_fifo: FIFO 1 raw_v=20471 uV=3984414 raw_i=3218 uA=491028 interval=100 count=128\n[ 1215.081237] QG-K: qg_process_fifo: FIFO 2 raw_v=20469 uV=3984024 raw_i=3221 uA=491485 interval=100 count=128\n[ 1215.081287] QG-K: qg_process_fifo: FIFO 3 raw_v=20468 uV=3983830 raw_i=3214 uA=490417 interval=100 count=128\n[ 1215.081336] QG-K: qg_process_fifo: FIFO 4 raw_v=20466 uV=3983440 raw_i=3222 uA=491638 interval=100 count=128\n[ 1215.083140] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63880\n[ 1215.083162] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1215.083176] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1221.600971] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1221.600989] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1231.840793] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1231.840810] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1242.081054] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1242.081071] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1251.412750]  1568     5.2 C/MHz     77 mW   14.7 J   20.4 I/mJ   191.3 s\n                652: \n[ 1252.321083] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1252.321100] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1262.560923] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1262.560941] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1272.800922] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1272.800940] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1278.961833] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1278.961924] QG-K: qg_process_fifo: FIFO length=5\n[ 1278.962005] QG-K: qg_process_fifo: FIFO 0 raw_v=20465 uV=3983246 raw_i=3215 uA=490570 interval=100 count=128\n[ 1278.962056] QG-K: qg_process_fifo: FIFO 1 raw_v=20463 uV=3982856 raw_i=3221 uA=491485 interval=100 count=128\n[ 1278.962106] QG-K: qg_process_fifo: FIFO 2 raw_v=20462 uV=3982662 raw_i=3204 uA=488891 interval=100 count=128\n[ 1278.962156] QG-K: qg_process_fifo: FIFO 3 raw_v=20459 uV=3982078 raw_i=3222 uA=491638 interval=100 count=128\n[ 1278.962205] QG-K: qg_process_fifo: FIFO 4 raw_v=20452 uV=3980715 raw_i=3302 uA=503845 interval=100 count=128\n[ 1278.963969] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63880\n[ 1278.963991] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1278.964005] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1283.040925] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1283.040943] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1293.280993] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1293.281010] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1303.521100] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1303.521117] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1313.760917] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1313.760934] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1324.000924] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1324.000942] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1334.240924] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1334.240941] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1342.846751] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1342.846843] QG-K: qg_process_fifo: FIFO length=5\n[ 1342.846925] QG-K: qg_process_fifo: FIFO 0 raw_v=20451 uV=3980521 raw_i=3296 uA=502930 interval=100 count=128\n[ 1342.846975] QG-K: qg_process_fifo: FIFO 1 raw_v=20449 uV=3980132 raw_i=3303 uA=503998 interval=100 count=128\n[ 1342.847026] QG-K: qg_process_fifo: FIFO 2 raw_v=20447 uV=3979742 raw_i=3300 uA=503540 interval=100 count=128\n[ 1342.847076] QG-K: qg_process_fifo: FIFO 3 raw_v=20445 uV=3979353 raw_i=3300 uA=503540 interval=100 count=128\n[ 1342.847125] QG-K: qg_process_fifo: FIFO 4 raw_v=20443 uV=3978964 raw_i=3302 uA=503845 interval=100 count=128\n[ 1342.848640] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63884\n[ 1342.848660] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1342.848674] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1344.481472] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1344.481489] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1347.795634]  3412     5.2 C/MHz    124 mW   10.9 J   27.5 I/mJ    87.9 s\n                902: \n[ 1354.721159] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1354.721175] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1364.960935] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1364.960952] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1375.200932] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1375.200949] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1385.440933] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1385.440951] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1395.681009] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1395.681027] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1405.920934] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1405.920951] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1406.728003] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1406.728093] QG-K: qg_process_fifo: FIFO length=5\n[ 1406.728175] QG-K: qg_process_fifo: FIFO 0 raw_v=20449 uV=3980132 raw_i=3197 uA=487823 interval=100 count=128\n[ 1406.728225] QG-K: qg_process_fifo: FIFO 1 raw_v=20437 uV=3977796 raw_i=3363 uA=513153 interval=100 count=128\n[ 1406.728276] QG-K: qg_process_fifo: FIFO 2 raw_v=20435 uV=3977407 raw_i=3365 uA=513458 interval=100 count=128\n[ 1406.728326] QG-K: qg_process_fifo: FIFO 3 raw_v=20432 uV=3976823 raw_i=3368 uA=513916 interval=100 count=128\n[ 1406.728375] QG-K: qg_process_fifo: FIFO 4 raw_v=20430 uV=3976433 raw_i=3367 uA=513763 interval=100 count=128\n[ 1406.729892] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63881\n[ 1406.729912] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1406.729926] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1416.160937] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1416.160954] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1419.849379]  4718     5.2 C/MHz    163 mW   10.4 J   28.9 I/mJ    63.6 s\n               1056: \n[ 1426.401062] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1426.401079] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1436.641010] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1436.641028] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1446.881006] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1446.881023] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1457.120937] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1457.120954] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1467.360930] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1467.360948] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1470.610529] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1470.610613] QG-K: qg_process_fifo: FIFO length=5\n[ 1470.610694] QG-K: qg_process_fifo: FIFO 0 raw_v=20428 uV=3976044 raw_i=3365 uA=513458 interval=100 count=128\n[ 1470.610745] QG-K: qg_process_fifo: FIFO 1 raw_v=20435 uV=3977407 raw_i=3238 uA=494079 interval=100 count=128\n[ 1470.610795] QG-K: qg_process_fifo: FIFO 2 raw_v=20421 uV=3974682 raw_i=3417 uA=521393 interval=100 count=128\n[ 1470.610845] QG-K: qg_process_fifo: FIFO 3 raw_v=20419 uV=3974292 raw_i=3422 uA=522156 interval=100 count=128\n[ 1470.610894] QG-K: qg_process_fifo: FIFO 4 raw_v=20417 uV=3973903 raw_i=3420 uA=521850 interval=100 count=128\n[ 1470.613039] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63882\n[ 1470.613061] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1470.613075] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1477.600992] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1477.601009] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1482.530489]  5516     5.2 C/MHz    194 mW   10.6 J   28.4 I/mJ    54.4 s\n               1401: \n[ 1487.841065] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1487.841082] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1498.081516] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1498.081532] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1508.320927] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1508.320945] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1518.560926] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1518.560944] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1528.800920] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1528.800938] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1531.778669]  7323     5.2 C/MHz    290 mW   11.9 J   25.2 I/mJ    41.0 s\n               1536: \n[ 1534.493174] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1534.493265] QG-K: qg_process_fifo: FIFO length=5\n[ 1534.493347] QG-K: qg_process_fifo: FIFO 0 raw_v=20417 uV=3973903 raw_i=3399 uA=518646 interval=100 count=128\n[ 1534.493397] QG-K: qg_process_fifo: FIFO 1 raw_v=20419 uV=3974292 raw_i=3334 uA=508728 interval=100 count=128\n[ 1534.493447] QG-K: qg_process_fifo: FIFO 2 raw_v=20401 uV=3970789 raw_i=3578 uA=545959 interval=100 count=128\n[ 1534.493496] QG-K: qg_process_fifo: FIFO 3 raw_v=20398 uV=3970205 raw_i=3583 uA=546722 interval=100 count=128\n[ 1534.493546] QG-K: qg_process_fifo: FIFO 4 raw_v=20402 uV=3970984 raw_i=3487 uA=532074 interval=100 count=128\n[ 1534.495165] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63882\n[ 1534.495184] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1534.495198] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1539.041062] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1539.041079] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1549.280988] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1549.281005] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1559.520916] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1559.520933] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1569.760993] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1569.761010] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1577.477259]  8031     5.2 C/MHz    336 mW   12.5 J   23.9 I/mJ    37.4 s\n               1612: \n[ 1580.001061] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1580.001078] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1590.240942] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1590.240961] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1598.373290] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1598.373380] QG-K: qg_process_fifo: FIFO length=5\n[ 1598.373463] QG-K: qg_process_fifo: FIFO 0 raw_v=20404 uV=3971373 raw_i=3438 uA=524597 interval=100 count=128\n[ 1598.373516] QG-K: qg_process_fifo: FIFO 1 raw_v=20387 uV=3968064 raw_i=3659 uA=558319 interval=100 count=128\n[ 1598.373566] QG-K: qg_process_fifo: FIFO 2 raw_v=20384 uV=3967480 raw_i=3657 uA=558014 interval=100 count=128\n[ 1598.373617] QG-K: qg_process_fifo: FIFO 3 raw_v=20403 uV=3971178 raw_i=3331 uA=508270 interval=100 count=128\n[ 1598.373667] QG-K: qg_process_fifo: FIFO 4 raw_v=20379 uV=3966507 raw_i=3693 uA=563507 interval=100 count=128\n[ 1598.375190] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63880\n[ 1598.375210] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1598.375224] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1600.481069] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1600.481086] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1610.720914] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1610.720932] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1620.960910] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1620.960927] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1621.404127]  8434     5.2 C/MHz    359 mW   12.8 J   23.5 I/mJ    35.6 s\n               1804: \n[ 1631.200930] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1631.200947] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1641.440928] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1641.440946] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1651.681488] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1651.681505] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1661.529014]  9436     5.2 C/MHz    430 mW   13.7 J   21.9 I/mJ    31.8 s\n               2016: \n[ 1661.921084] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1661.921101] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1662.249602] QG-K: qg_fifo_update_done_handler: IRQ triggered\n[ 1662.249695] QG-K: qg_process_fifo: FIFO length=5\n[ 1662.249777] QG-K: qg_process_fifo: FIFO 0 raw_v=20375 uV=3965728 raw_i=3701 uA=564728 interval=100 count=128\n[ 1662.249828] QG-K: qg_process_fifo: FIFO 1 raw_v=20380 uV=3966702 raw_i=3581 uA=546417 interval=100 count=128\n[ 1662.249878] QG-K: qg_process_fifo: FIFO 2 raw_v=20384 uV=3967480 raw_i=3526 uA=538025 interval=100 count=128\n[ 1662.249928] QG-K: qg_process_fifo: FIFO 3 raw_v=20362 uV=3963198 raw_i=3818 uA=582580 interval=100 count=128\n[ 1662.249977] QG-K: qg_process_fifo: FIFO 4 raw_v=20361 uV=3963003 raw_i=3778 uA=576477 interval=100 count=128\n[ 1662.251976] QG-K: qg_fifo_update_done_handler: FIFO_done time_delta_ms=63876\n[ 1662.251998] QG_WS: FIFO_DONE_VOTER,0 same vote on of val=1\n[ 1662.252011] QG_WS: FIFO_DONE_VOTER,0 Ignoring similar vote on of val=1\n[ 1672.160927] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1672.160945] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1682.400958] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1682.400977] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1692.640927] QG_WS: TTF_AWAKE_VOTER,1 same vote off of val=0\n[ 1692.640945] QG_WS: TTF_AWAKE_VOTER,1 Ignoring similar vote off of val=0\n[ 1698.368660] CPU4: shutdown\n[ 1698.368761] psci: CPU4 killed (polled 0 ms)\n[ 1698.402639] 10544     5.2 C/MHz    518 mW   14.7 J   20.4 I/mJ    28.5 s\n               \n               \n               Benchmark finished!\n[ 1698.441002] \n               real\t28m16.881s\n               user\t24m41.878s\n               sys\t0m3.528s\n"
  },
  {
    "path": "results/sm6115/second/post_bench_interrupts.txt",
    "content": "           CPU0       \n  1:          0   mpm-gic 229 Edge      mpm\n  4:       3510   mpm-gic  19 Level     arch_timer\n  6:     172578   mpm-gic  39 Level     arch_mem_timer\n  8:          0   mpm-gic 315 Level     ngd_slim_irq\n 14:          0   mpm-gic 279 Level     sps\n 15:          0   mpm-gic  22 Level     arm-pmu\n 16:          0   mpm-gic 221 Level     eud_irq\n 18:          0   mpm-gic  35 Edge      apps_wdog_bark\n 20:        279   mpm-gic 226 Edge      glink-native-rpm-glink\n 21:          0     GICv3 314 Edge      adsp\n 22:          0     GICv3 297 Edge      cdsp\n 25:         13   mpm-gic 382 Level     mmc0\n 26:          2   mpm-gic 385 Level     4784000.sdhci\n 27:        463   mpm-gic 388 Level     4804000.ufshc\n 28:          0   mpm-gic 307 Level     tsens-upper-lower\n 29:          0   mpm-gic 222 Level     tsens-critical\n 30:          0   mpm-gic 102 Edge      smp2p\n 31:          0   mpm-gic 311 Edge      smp2p\n 32:          0   mpm-gic 295 Edge      smp2p\n 46:          0     GICv3 339 Edge      modem\n 50:          1   mpm-gic 334 Level     pwr_event_irq\n 51:          0   mpm-gic 454 Level     ss_phy_irq\n 52:          0   mpm-gic 292 Level     hs_phy_irq\n 53:          0   mpm-gic  85 Edge      apps-tgu\n 54:          0   mpm-gic  86 Edge      apps-tgu\n 55:          0   mpm-gic  87 Edge      apps-tgu\n 56:          0   mpm-gic  88 Edge      apps-tgu\n 57:          0   mpm-gic 461 Edge      tmc-etr\n 58:          0   mpm-gic 257 Level     msm_vidc\n 59:          0   mpm-gic 195 Level     arm-smmu global fault\n 60:          0   mpm-gic 199 Level     arm-smmu-context-fault\n 61:          0   mpm-gic 200 Level     arm-smmu-context-fault\n 68:          0   mpm-gic 113 Level     arm-smmu global fault\n 70:          0   mpm-gic 121 Level     arm-smmu-context-fault\n 72:          0   mpm-gic 123 Level     arm-smmu-context-fault\n 73:          0   mpm-gic 124 Level     arm-smmu-context-fault\n 74:          0   mpm-gic 125 Level     arm-smmu-context-fault\n 75:          0   mpm-gic 126 Level     arm-smmu-context-fault\n 76:          0   mpm-gic 127 Level     arm-smmu-context-fault\n 77:          0   mpm-gic 128 Level     arm-smmu-context-fault\n 78:          0   mpm-gic 129 Level     arm-smmu-context-fault\n 79:          0   mpm-gic 130 Level     arm-smmu-context-fault\n 80:          0   mpm-gic 131 Level     arm-smmu-context-fault\n 81:          0   mpm-gic 132 Level     arm-smmu-context-fault\n 82:          0   mpm-gic 133 Level     arm-smmu-context-fault\n 83:          0   mpm-gic 134 Level     arm-smmu-context-fault\n 84:          0   mpm-gic 135 Level     arm-smmu-context-fault\n 85:          0   mpm-gic 136 Level     arm-smmu-context-fault\n 86:          0   mpm-gic 137 Level     arm-smmu-context-fault\n 87:          0   mpm-gic 138 Level     arm-smmu-context-fault\n 88:          0   mpm-gic 139 Level     arm-smmu-context-fault\n 89:          0   mpm-gic 140 Level     arm-smmu-context-fault\n 90:          0   mpm-gic 141 Level     arm-smmu-context-fault\n 91:          0   mpm-gic 142 Level     arm-smmu-context-fault\n 92:          0   mpm-gic 143 Level     arm-smmu-context-fault\n 93:          0   mpm-gic 144 Level     arm-smmu-context-fault\n 94:          0   mpm-gic 145 Level     arm-smmu-context-fault\n 95:          0   mpm-gic 146 Level     arm-smmu-context-fault\n 96:          0   mpm-gic 147 Level     arm-smmu-context-fault\n 97:          0   mpm-gic 148 Level     arm-smmu-context-fault\n 98:          0   mpm-gic 149 Level     arm-smmu-context-fault\n 99:          0   mpm-gic 150 Level     arm-smmu-context-fault\n100:          0   mpm-gic 151 Level     arm-smmu-context-fault\n101:          0   mpm-gic 152 Level     arm-smmu-context-fault\n102:          0   mpm-gic 153 Level     arm-smmu-context-fault\n103:          0   mpm-gic 154 Level     arm-smmu-context-fault\n104:          0   mpm-gic 155 Level     arm-smmu-context-fault\n105:          0   mpm-gic 156 Level     arm-smmu-context-fault\n145:          0     GICv3 362 Level     msm_serial_geni0\n146:         70   mpm-gic 360 Level     i2c_geni\n147:          0   mpm-gic 359 Level     spi_geni\n148:         32   mpm-gic 361 Level     spi_geni\n149:          0   mpm-gic 209 Level     kgsl_3d0_irq\n150:          0   mpm-gic 218 Level     msm_drm\n151:          0   mpm-gic 104 Edge      csiphy\n152:          0   mpm-gic 105 Edge      csiphy\n153:          0   mpm-gic 106 Edge      csiphy\n154:          0   mpm-gic 238 Edge      cci\n155:          0   mpm-gic 191 Edge      cpas_camnoc\n156:          2   mpm-gic 239 Edge      cpas-cdm0\n157:          2   mpm-gic 240 Edge      ope-cdm0\n158:          0   mpm-gic 242 Edge      csid0\n159:          2   mpm-gic 243 Edge      tfe0\n160:          0   mpm-gic 244 Edge      csid1\n161:          2   mpm-gic 245 Edge      tfe1\n162:          0   mpm-gic 109 Edge      csid2\n163:          2   mpm-gic 110 Edge      tfe2\n164:          0   mpm-gic 241 Edge      ope\n165:         37  pmic_arb 588251292 Edge      pm-adc5\n166:          0  pmic_arb 592445597 Edge      thr-int-en\n167:          0  pmic_arb 574619801 Edge      qcom,temp-alarm\n176:          0  pmic_arb 600834208 Edge      bcl-lvl0\n177:          0  pmic_arb 600899744 Edge      bcl-lvl1\n178:          0  pmic_arb 600965280 Edge      bcl-lvl2\n179:          0  pmic_arb 1052836027 Edge      qpnp_lcdb_sc_irq\n180:          0  pmic_arb 1026556090 Edge      qpnp_flash_led_fault_irq\n181:          0  pmic_arb 1026752698 Edge      qpnp_flash_led_all_ramp_down_done_irq\n182:          0  pmic_arb 1026818234 Edge      qpnp_flash_led_all_ramp_up_done_irq\n183:          0  pmic_arb 8388736 Edge      pon_kpdpwr_status\n184:          0  pmic_arb 8454272 Edge      pon_resin_status\n185:          6  pmic_arb 51380354 Edge      pm-adc5\n186:          0  pmic_arb 55574659 Edge      thr-int-en\n187:          0  pmic_arb 37748865 Edge      qcom,temp-alarm\n192:          0  pmic_arb 205521034 Edge      volume_up\n197:          0  pmic_arb 101777541 Edge      pm8xxx_rtc_alarm\n198:          0   mpm-gic  69 Level     limits_sensor-00, limits_sensor-01\n199:          0     smp2p   2 Edge      adsp\n200:          0     smp2p   0 Edge      adsp\n201:          0     smp2p   1 Edge      error_ready_interrupt\n202:          0     smp2p   3 Edge      adsp\n203:          0     smp2p   2 Edge      cdsp\n204:          0     smp2p   0 Edge      cdsp\n205:          0     smp2p   1 Edge      error_ready_interrupt\n206:          0     smp2p   3 Edge      cdsp\n207:          0     smp2p   2 Edge      modem\n208:          0     smp2p   0 Edge      modem\n209:          0     smp2p   1 Edge      error_ready_interrupt\n210:          0     smp2p   3 Edge      modem\n211:          0     smp2p   7 Edge      modem\n212:          0     smp2p   0 Edge      smp2p_sleepstate\n214:          0     GICv3 287 Level     dwc3\n217:          0   msmgpio  41 Edge      sar\n218:          0   mpm-gic  89 Level     l2-cache-pmu\n219:          0   mpm-gic  90 Level     l2-cache-pmu\n220:          0   msmgpio  88 Edge      4784000.sdhci cd\n221:          0   msmgpio  81 Edge      TE_GPIO\n222:          0       sde   4 Edge      dsi_ctrl\n223:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n224:          0  pmic_arb 553648272 Edge      chgr-error\n225:          0  pmic_arb 553713808 Edge      chg-state-change\n232:          0  pmic_arb 554696849 Edge      otg-fail\n236:          0  pmic_arb 554958993 Edge      high-duty-cycle\n237:          0  pmic_arb 555024529 Edge      input-current-limiting\n239:          0  pmic_arb 555155601 Edge      switcher-power-ok\n240:          0  pmic_arb 555745426 Edge      bat-temp\n242:          0  pmic_arb 555876498 Edge      bat-ov\n243:          0  pmic_arb 555942034 Edge      bat-low\n244:          0  pmic_arb 556007570 Edge      bat-therm-or-id-missing\n245:          0  pmic_arb 556073106 Edge      bat-terminal-missing\n248:          0  pmic_arb 556794003 Edge      usbin-collapse\n249:          0  pmic_arb 556859539 Edge      usbin-vashdn\n250:          0  pmic_arb 556925075 Edge      usbin-uv\n251:          0  pmic_arb 556990611 Edge      usbin-ov\n252:          0  pmic_arb 557056147 Edge      usbin-plugin\n254:          0  pmic_arb 557187219 Edge      usbin-src-change\n255:          0  pmic_arb 557252755 Edge      usbin-icl-change\n256:          0  pmic_arb 558891156 Edge      typec-or-rid-detect-change\n258:          0  pmic_arb 559022228 Edge      typec-cc-state-change\n259:          0  pmic_arb 559087764 Edge      typec-vconn-oc\n261:          0  pmic_arb 559218836 Edge      typec-attach-detach\n262:          0  pmic_arb 559284372 Edge      typec-legacy-cable-detect\n264:          0  pmic_arb 559939733 Edge      wdog-snarl\n265:          0  pmic_arb 560005269 Edge      wdog-bark\n267:          0  pmic_arb 560136341 Edge      aicl-done\n268:          0  pmic_arb 560201877 Edge      smb-en\n270:          0  pmic_arb 560332949 Edge      temp-change\n272:          0  pmic_arb 711065765 Edge      flash-state-change\n274:          0  pmic_arb 711327909 Edge      ilim2-s2\n277:          0  pmic_arb 612434081 Edge      qg-vbat-low\n278:          0  pmic_arb 612499617 Edge      qg-vbat-empty\n279:         26  pmic_arb 612565153 Edge      qg-fifo-done\n280:          0  pmic_arb 612630689 Edge      qg-good-ocv\n281:          0   msmgpio  93 Edge      fts_ts\nIPI0:       140       Rescheduling interrupts\nIPI1:        10       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:     84943       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm6115/second/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  1:          0          0          0          0          0          0          0          0   mpm-gic 229 Edge      mpm\n  4:        317          2          1          1          2          2          1          2   mpm-gic  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   mpm-gic  39 Level     arch_mem_timer\n  8:          0          0          0          0          0          0          0          0   mpm-gic 315 Level     ngd_slim_irq\n 14:          0          0          0          0          0          0          0          0   mpm-gic 279 Level     sps\n 15:          0          0          0          0          0          0          0          0   mpm-gic  22 Level     arm-pmu\n 16:          0          0          0          0          0          0          0          0   mpm-gic 221 Level     eud_irq\n 18:          0          0          0          0          0          0          0          0   mpm-gic  35 Edge      apps_wdog_bark\n 20:        245          0          0          0          0          0          0          0   mpm-gic 226 Edge      glink-native-rpm-glink\n 21:          0          0          0          0          0          0          0          0     GICv3 314 Edge      adsp\n 22:          0          0          0          0          0          0          0          0     GICv3 297 Edge      cdsp\n 25:         13          0          0          0          0          0          0          0   mpm-gic 382 Level     mmc0\n 26:          2          0          0          0          0          0          0          0   mpm-gic 385 Level     4784000.sdhci\n 27:        454          0          0          0          0          0          0          0   mpm-gic 388 Level     4804000.ufshc\n 28:          0          0          0          0          0          0          0          0   mpm-gic 307 Level     tsens-upper-lower\n 29:          0          0          0          0          0          0          0          0   mpm-gic 222 Level     tsens-critical\n 30:          0          0          0          0          0          0          0          0   mpm-gic 102 Edge      smp2p\n 31:          0          0          0          0          0          0          0          0   mpm-gic 311 Edge      smp2p\n 32:          0          0          0          0          0          0          0          0   mpm-gic 295 Edge      smp2p\n 46:          0          0          0          0          0          0          0          0     GICv3 339 Edge      modem\n 50:          1          0          0          0          0          0          0          0   mpm-gic 334 Level     pwr_event_irq\n 51:          0          0          0          0          0          0          0          0   mpm-gic 454 Level     ss_phy_irq\n 52:          0          0          0          0          0          0          0          0   mpm-gic 292 Level     hs_phy_irq\n 53:          0          0          0          0          0          0          0          0   mpm-gic  85 Edge      apps-tgu\n 54:          0          0          0          0          0          0          0          0   mpm-gic  86 Edge      apps-tgu\n 55:          0          0          0          0          0          0          0          0   mpm-gic  87 Edge      apps-tgu\n 56:          0          0          0          0          0          0          0          0   mpm-gic  88 Edge      apps-tgu\n 57:          0          0          0          0          0          0          0          0   mpm-gic 461 Edge      tmc-etr\n 58:          0          0          0          0          0          0          0          0   mpm-gic 257 Level     msm_vidc\n 59:          0          0          0          0          0          0          0          0   mpm-gic 195 Level     arm-smmu global fault\n 60:          0          0          0          0          0          0          0          0   mpm-gic 199 Level     arm-smmu-context-fault\n 61:          0          0          0          0          0          0          0          0   mpm-gic 200 Level     arm-smmu-context-fault\n 68:          0          0          0          0          0          0          0          0   mpm-gic 113 Level     arm-smmu global fault\n 70:          0          0          0          0          0          0          0          0   mpm-gic 121 Level     arm-smmu-context-fault\n 72:          0          0          0          0          0          0          0          0   mpm-gic 123 Level     arm-smmu-context-fault\n 73:          0          0          0          0          0          0          0          0   mpm-gic 124 Level     arm-smmu-context-fault\n 74:          0          0          0          0          0          0          0          0   mpm-gic 125 Level     arm-smmu-context-fault\n 75:          0          0          0          0          0          0          0          0   mpm-gic 126 Level     arm-smmu-context-fault\n 76:          0          0          0          0          0          0          0          0   mpm-gic 127 Level     arm-smmu-context-fault\n 77:          0          0          0          0          0          0          0          0   mpm-gic 128 Level     arm-smmu-context-fault\n 78:          0          0          0          0          0          0          0          0   mpm-gic 129 Level     arm-smmu-context-fault\n 79:          0          0          0          0          0          0          0          0   mpm-gic 130 Level     arm-smmu-context-fault\n 80:          0          0          0          0          0          0          0          0   mpm-gic 131 Level     arm-smmu-context-fault\n 81:          0          0          0          0          0          0          0          0   mpm-gic 132 Level     arm-smmu-context-fault\n 82:          0          0          0          0          0          0          0          0   mpm-gic 133 Level     arm-smmu-context-fault\n 83:          0          0          0          0          0          0          0          0   mpm-gic 134 Level     arm-smmu-context-fault\n 84:          0          0          0          0          0          0          0          0   mpm-gic 135 Level     arm-smmu-context-fault\n 85:          0          0          0          0          0          0          0          0   mpm-gic 136 Level     arm-smmu-context-fault\n 86:          0          0          0          0          0          0          0          0   mpm-gic 137 Level     arm-smmu-context-fault\n 87:          0          0          0          0          0          0          0          0   mpm-gic 138 Level     arm-smmu-context-fault\n 88:          0          0          0          0          0          0          0          0   mpm-gic 139 Level     arm-smmu-context-fault\n 89:          0          0          0          0          0          0          0          0   mpm-gic 140 Level     arm-smmu-context-fault\n 90:          0          0          0          0          0          0          0          0   mpm-gic 141 Level     arm-smmu-context-fault\n 91:          0          0          0          0          0          0          0          0   mpm-gic 142 Level     arm-smmu-context-fault\n 92:          0          0          0          0          0          0          0          0   mpm-gic 143 Level     arm-smmu-context-fault\n 93:          0          0          0          0          0          0          0          0   mpm-gic 144 Level     arm-smmu-context-fault\n 94:          0          0          0          0          0          0          0          0   mpm-gic 145 Level     arm-smmu-context-fault\n 95:          0          0          0          0          0          0          0          0   mpm-gic 146 Level     arm-smmu-context-fault\n 96:          0          0          0          0          0          0          0          0   mpm-gic 147 Level     arm-smmu-context-fault\n 97:          0          0          0          0          0          0          0          0   mpm-gic 148 Level     arm-smmu-context-fault\n 98:          0          0          0          0          0          0          0          0   mpm-gic 149 Level     arm-smmu-context-fault\n 99:          0          0          0          0          0          0          0          0   mpm-gic 150 Level     arm-smmu-context-fault\n100:          0          0          0          0          0          0          0          0   mpm-gic 151 Level     arm-smmu-context-fault\n101:          0          0          0          0          0          0          0          0   mpm-gic 152 Level     arm-smmu-context-fault\n102:          0          0          0          0          0          0          0          0   mpm-gic 153 Level     arm-smmu-context-fault\n103:          0          0          0          0          0          0          0          0   mpm-gic 154 Level     arm-smmu-context-fault\n104:          0          0          0          0          0          0          0          0   mpm-gic 155 Level     arm-smmu-context-fault\n105:          0          0          0          0          0          0          0          0   mpm-gic 156 Level     arm-smmu-context-fault\n145:          0          0          0          0          0          0          0          0     GICv3 362 Level     msm_serial_geni0\n146:         70          0          0          0          0          0          0          0   mpm-gic 360 Level     i2c_geni\n147:          0          0          0          0          0          0          0          0   mpm-gic 359 Level     spi_geni\n148:         32          0          0          0          0          0          0          0   mpm-gic 361 Level     spi_geni\n149:          0          0          0          0          0          0          0          0   mpm-gic 209 Level     kgsl_3d0_irq\n150:          0          0          0          0          0          0          0          0   mpm-gic 218 Level     msm_drm\n151:          0          0          0          0          0          0          0          0   mpm-gic 104 Edge      csiphy\n152:          0          0          0          0          0          0          0          0   mpm-gic 105 Edge      csiphy\n153:          0          0          0          0          0          0          0          0   mpm-gic 106 Edge      csiphy\n154:          0          0          0          0          0          0          0          0   mpm-gic 238 Edge      cci\n155:          0          0          0          0          0          0          0          0   mpm-gic 191 Edge      cpas_camnoc\n156:          2          0          0          0          0          0          0          0   mpm-gic 239 Edge      cpas-cdm0\n157:          2          0          0          0          0          0          0          0   mpm-gic 240 Edge      ope-cdm0\n158:          0          0          0          0          0          0          0          0   mpm-gic 242 Edge      csid0\n159:          2          0          0          0          0          0          0          0   mpm-gic 243 Edge      tfe0\n160:          0          0          0          0          0          0          0          0   mpm-gic 244 Edge      csid1\n161:          2          0          0          0          0          0          0          0   mpm-gic 245 Edge      tfe1\n162:          0          0          0          0          0          0          0          0   mpm-gic 109 Edge      csid2\n163:          2          0          0          0          0          0          0          0   mpm-gic 110 Edge      tfe2\n164:          0          0          0          0          0          0          0          0   mpm-gic 241 Edge      ope\n165:         11          0          0          0          0          0          0          0  pmic_arb 588251292 Edge      pm-adc5\n166:          0          0          0          0          0          0          0          0  pmic_arb 592445597 Edge      thr-int-en\n167:          0          0          0          0          0          0          0          0  pmic_arb 574619801 Edge      qcom,temp-alarm\n176:          0          0          0          0          0          0          0          0  pmic_arb 600834208 Edge      bcl-lvl0\n177:          0          0          0          0          0          0          0          0  pmic_arb 600899744 Edge      bcl-lvl1\n178:          0          0          0          0          0          0          0          0  pmic_arb 600965280 Edge      bcl-lvl2\n179:          0          0          0          0          0          0          0          0  pmic_arb 1052836027 Edge      qpnp_lcdb_sc_irq\n180:          0          0          0          0          0          0          0          0  pmic_arb 1026556090 Edge      qpnp_flash_led_fault_irq\n181:          0          0          0          0          0          0          0          0  pmic_arb 1026752698 Edge      qpnp_flash_led_all_ramp_down_done_irq\n182:          0          0          0          0          0          0          0          0  pmic_arb 1026818234 Edge      qpnp_flash_led_all_ramp_up_done_irq\n183:          0          0          0          0          0          0          0          0  pmic_arb 8388736 Edge      pon_kpdpwr_status\n184:          0          0          0          0          0          0          0          0  pmic_arb 8454272 Edge      pon_resin_status\n185:          6          0          0          0          0          0          0          0  pmic_arb 51380354 Edge      pm-adc5\n186:          0          0          0          0          0          0          0          0  pmic_arb 55574659 Edge      thr-int-en\n187:          0          0          0          0          0          0          0          0  pmic_arb 37748865 Edge      qcom,temp-alarm\n192:          0          0          0          0          0          0          0          0  pmic_arb 205521034 Edge      volume_up\n197:          0          0          0          0          0          0          0          0  pmic_arb 101777541 Edge      pm8xxx_rtc_alarm\n198:          0          0          0          0          0          0          0          0   mpm-gic  69 Level     limits_sensor-00, limits_sensor-01\n199:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n200:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n201:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n202:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n203:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n204:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n205:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n206:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n207:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n208:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n209:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n210:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n211:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n212:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n214:          0          0          0          0          0          0          0          0     GICv3 287 Level     dwc3\n217:          0          0          0          0          0          0          0          0   msmgpio  41 Edge      sar\n218:          0          0          0          0          0          0          0          0   mpm-gic  89 Level     l2-cache-pmu\n219:          0          0          0          0          0          0          0          0   mpm-gic  90 Level     l2-cache-pmu\n220:          0          0          0          0          0          0          0          0   msmgpio  88 Edge      4784000.sdhci cd\n221:          0          0          0          0          0          0          0          0   msmgpio  81 Edge      TE_GPIO\n222:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n223:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n224:          0          0          0          0          0          0          0          0  pmic_arb 553648272 Edge      chgr-error\n225:          0          0          0          0          0          0          0          0  pmic_arb 553713808 Edge      chg-state-change\n232:          0          0          0          0          0          0          0          0  pmic_arb 554696849 Edge      otg-fail\n236:          0          0          0          0          0          0          0          0  pmic_arb 554958993 Edge      high-duty-cycle\n237:          0          0          0          0          0          0          0          0  pmic_arb 555024529 Edge      input-current-limiting\n239:          0          0          0          0          0          0          0          0  pmic_arb 555155601 Edge      switcher-power-ok\n240:          0          0          0          0          0          0          0          0  pmic_arb 555745426 Edge      bat-temp\n242:          0          0          0          0          0          0          0          0  pmic_arb 555876498 Edge      bat-ov\n243:          0          0          0          0          0          0          0          0  pmic_arb 555942034 Edge      bat-low\n244:          0          0          0          0          0          0          0          0  pmic_arb 556007570 Edge      bat-therm-or-id-missing\n245:          0          0          0          0          0          0          0          0  pmic_arb 556073106 Edge      bat-terminal-missing\n248:          0          0          0          0          0          0          0          0  pmic_arb 556794003 Edge      usbin-collapse\n249:          0          0          0          0          0          0          0          0  pmic_arb 556859539 Edge      usbin-vashdn\n250:          0          0          0          0          0          0          0          0  pmic_arb 556925075 Edge      usbin-uv\n251:          0          0          0          0          0          0          0          0  pmic_arb 556990611 Edge      usbin-ov\n252:          0          0          0          0          0          0          0          0  pmic_arb 557056147 Edge      usbin-plugin\n254:          0          0          0          0          0          0          0          0  pmic_arb 557187219 Edge      usbin-src-change\n255:          0          0          0          0          0          0          0          0  pmic_arb 557252755 Edge      usbin-icl-change\n256:          0          0          0          0          0          0          0          0  pmic_arb 558891156 Edge      typec-or-rid-detect-change\n258:          0          0          0          0          0          0          0          0  pmic_arb 559022228 Edge      typec-cc-state-change\n259:          0          0          0          0          0          0          0          0  pmic_arb 559087764 Edge      typec-vconn-oc\n261:          0          0          0          0          0          0          0          0  pmic_arb 559218836 Edge      typec-attach-detach\n262:          0          0          0          0          0          0          0          0  pmic_arb 559284372 Edge      typec-legacy-cable-detect\n264:          0          0          0          0          0          0          0          0  pmic_arb 559939733 Edge      wdog-snarl\n265:          0          0          0          0          0          0          0          0  pmic_arb 560005269 Edge      wdog-bark\n267:          0          0          0          0          0          0          0          0  pmic_arb 560136341 Edge      aicl-done\n268:          0          0          0          0          0          0          0          0  pmic_arb 560201877 Edge      smb-en\n270:          0          0          0          0          0          0          0          0  pmic_arb 560332949 Edge      temp-change\n272:          0          0          0          0          0          0          0          0  pmic_arb 711065765 Edge      flash-state-change\n274:          0          0          0          0          0          0          0          0  pmic_arb 711327909 Edge      ilim2-s2\n277:          0          0          0          0          0          0          0          0  pmic_arb 612434081 Edge      qg-vbat-low\n278:          0          0          0          0          0          0          0          0  pmic_arb 612499617 Edge      qg-vbat-empty\n279:          0          0          0          0          0          0          0          0  pmic_arb 612565153 Edge      qg-fifo-done\n280:          0          0          0          0          0          0          0          0  pmic_arb 612630689 Edge      qg-good-ocv\n281:          0          0          0          0          0          0          0          0   msmgpio  93 Edge      fts_ts\nIPI0:        73         36         36         36         34         34         32         32       Rescheduling interrupts\nIPI1:         0          3          3          3          3          3          3          3       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:        84          7          7          7          7          7          7          7       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm6115/second/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    5 root      0:00 [kworker/0:0-eve]\n    6 root      0:00 [kworker/0:0H-ev]\n    7 root      0:00 [kworker/u16:0+M]\n    8 root      0:00 [mm_percpu_wq]\n    9 root      0:00 [ksoftirqd/0]\n   10 root      0:00 [rcu_preempt]\n   11 root      0:00 [rcu_sched]\n   12 root      0:00 [rcu_bh]\n   13 root      0:00 [rcuop/0]\n   14 root      0:00 [rcuos/0]\n   15 root      0:00 [rcuob/0]\n   16 root      0:00 [migration/0]\n   17 root      0:00 [cpuhp/0]\n   18 root      0:00 [cpuhp/1]\n   19 root      0:00 [migration/1]\n   20 root      0:00 [ksoftirqd/1]\n   21 root      0:00 [kworker/1:0-mm_]\n   22 root      0:00 [kworker/1:0H-ev]\n   23 root      0:00 [rcuop/1]\n   24 root      0:00 [rcuos/1]\n   25 root      0:00 [rcuob/1]\n   27 root      0:00 [cpuhp/2]\n   28 root      0:00 [migration/2]\n   29 root      0:00 [ksoftirqd/2]\n   31 root      0:00 [kworker/2:0H-ev]\n   32 root      0:00 [rcuop/2]\n   33 root      0:00 [rcuos/2]\n   34 root      0:00 [rcuob/2]\n   35 root      0:00 [cpuhp/3]\n   36 root      0:00 [migration/3]\n   37 root      0:00 [ksoftirqd/3]\n   39 root      0:00 [kworker/3:0H-ev]\n   40 root      0:00 [rcuop/3]\n   41 root      0:00 [rcuos/3]\n   42 root      0:00 [rcuob/3]\n   43 root      0:00 [cpuhp/4]\n   44 root      0:00 [migration/4]\n   45 root      0:00 [ksoftirqd/4]\n   47 root      0:00 [kworker/4:0H-ev]\n   48 root      0:00 [rcuop/4]\n   49 root      0:00 [rcuos/4]\n   50 root      0:00 [rcuob/4]\n   51 root      0:00 [cpuhp/5]\n   52 root      0:00 [migration/5]\n   53 root      0:00 [ksoftirqd/5]\n   55 root      0:00 [kworker/5:0H-ev]\n   56 root      0:00 [rcuop/5]\n   57 root      0:00 [rcuos/5]\n   58 root      0:00 [rcuob/5]\n   59 root      0:00 [cpuhp/6]\n   60 root      0:00 [migration/6]\n   61 root      0:00 [ksoftirqd/6]\n   63 root      0:00 [kworker/6:0H-ev]\n   64 root      0:00 [rcuop/6]\n   65 root      0:00 [rcuos/6]\n   66 root      0:00 [rcuob/6]\n   67 root      0:00 [cpuhp/7]\n   68 root      0:00 [migration/7]\n   69 root      0:00 [ksoftirqd/7]\n   71 root      0:00 [kworker/7:0H-ev]\n   72 root      0:00 [rcuop/7]\n   73 root      0:00 [rcuos/7]\n   74 root      0:00 [rcuob/7]\n   75 root      0:00 [netns]\n   76 root      0:00 [rcu_tasks_kthre]\n   77 root      0:00 [kauditd]\n   78 root      0:00 [kworker/u16:1+L]\n   79 root      0:00 [kworker/u17:0]\n   80 root      0:00 [ipa_usb_wq]\n   81 root      0:00 [msm_watchdog]\n   82 root      0:00 [glink_rpm-glink]\n   83 root      0:00 [oom_reaper]\n   84 root      0:00 [writeback]\n   85 root      0:00 [kcompactd0]\n   86 root      0:00 [crypto]\n   87 root      0:00 [kblockd]\n   88 root      0:00 [blk_crypto_wq]\n   89 root      0:00 [irq/28-tsens-up]\n   90 root      0:00 [irq/29-tsens-cr]\n   91 root      0:00 [ion-pool-uncach]\n   92 root      0:00 [ion-pool-cached]\n   93 root      0:00 [system]\n   94 root      0:00 [devfreq_wq]\n   95 root      0:00 [governor_msm_ad]\n   96 root      0:00 [irq/179-qpnp_lc]\n   98 root      0:00 [irq/59-arm-smmu]\n   99 root      0:00 [cfg80211]\n  100 root      0:00 [irq/68-arm-smmu]\n  101 root      0:00 [ipa_power_mgmt]\n  102 root      0:00 [transport_power]\n  103 root      0:00 [ipa_pm_activate]\n  104 root      0:00 [irq/73-arm-smmu]\n  105 root      0:00 [irq/74-arm-smmu]\n  106 root      0:00 [irq/75-arm-smmu]\n  107 root      0:00 [irq/76-arm-smmu]\n  144 root      0:00 [kswapd0:0]\n  181 root      0:00 [irq/77-arm-smmu]\n  182 root      0:00 [irq/30-smp2p]\n  183 root      0:00 [irq/31-smp2p]\n  184 root      0:00 [irq/32-smp2p]\n  185 root      0:00 [mem_share_svc]\n  186 root      0:00 [irq/78-arm-smmu]\n  187 root      0:00 [hwrng]\n  189 root      0:00 [diag_real_time_]\n  190 root      0:00 [diag_wq]\n  191 root      0:00 [DIAG_USB_diag]\n  192 root      0:00 [diag_cntl_wq]\n  193 root      0:00 [diag_dci_wq]\n  194 root      0:00 [MODEM_CNTL]\n  195 root      0:00 [MODEM_DATA]\n  196 root      0:00 [MODEM_CMD]\n  197 root      0:00 [MODEM_DCI]\n  198 root      0:00 [MODEM_DCI_CMD]\n  199 root      0:00 [LPASS_CNTL]\n  200 root      0:00 [LPASS_DATA]\n  201 root      0:00 [LPASS_CMD]\n  202 root      0:00 [LPASS_DCI]\n  203 root      0:00 [LPASS_DCI_CMD]\n  204 root      0:00 [WCNSS_CNTL]\n  205 root      0:00 [WCNSS_DATA]\n  206 root      0:00 [WCNSS_CMD]\n  207 root      0:00 [WCNSS_DCI]\n  208 root      0:00 [WCNSS_DCI_CMD]\n  209 root      0:00 [SENSORS_CNTL]\n  210 root      0:00 [SENSORS_DATA]\n  211 root      0:00 [SENSORS_CMD]\n  212 root      0:00 [SENSORS_DCI]\n  213 root      0:00 [SENSORS_DCI_CMD]\n  214 root      0:00 [DIAG_CTRL]\n  215 root      0:00 [DIAG_DATA]\n  216 root      0:00 [DIAG_CMD]\n  217 root      0:00 [DIAG_DCI_DATA]\n  218 root      0:00 [DIAG_DCI_CMD]\n  219 root      0:00 [CDSP_CNTL]\n  220 root      0:00 [CDSP_DATA]\n  221 root      0:00 [CDSP_CMD]\n  222 root      0:00 [CDSP_DCI]\n  223 root      0:00 [CDSP_DCI_CMD]\n  224 root      0:00 [NPU_CNTL]\n  225 root      0:00 [NPU_DATA]\n  226 root      0:00 [NPU_CMD]\n  227 root      0:00 [NPU_DCI]\n  228 root      0:00 [NPU_DCI_CMD]\n  229 root      0:00 [DIAG_RPMSG_DIAG]\n  230 root      0:00 [DIAG_RPMSG_DIAG]\n  231 root      0:00 [DIAG_RPMSG_DIAG]\n  232 root      0:00 [DIAG_RPMSG_DIAG]\n  233 root      0:00 [DIAG_RPMSG_DIAG]\n  234 root      0:00 [kgsl-workqueue]\n  235 root      0:00 [kworker/u16:2+W]\n  236 root      0:00 [kgsl-mementry]\n  237 root      0:00 [kworker/u16:3+S]\n  238 root      0:00 [kworker/u16:4+D]\n  239 root      0:00 [kgsl_worker_thr]\n  240 root      0:00 [kworker/u16:5+C]\n  241 root      0:00 [kworker/u16:6+N]\n  243 root      0:00 [qseecom-unreg-l]\n  244 root      0:00 [qseecom-unload-]\n  245 root      0:00 [irq/79-arm-smmu]\n  246 root      0:00 [irq/80-arm-smmu]\n  247 root      0:00 [irq/81-arm-smmu]\n  248 root      0:00 [qcrypto_seq_res]\n  249 root      0:00 [scsi_eh_0]\n  250 root      0:00 [scsi_tmf_0]\n  251 root      0:00 [ufs_pm_qos_0]\n  252 root      0:00 [kworker/1:1-eve]\n  253 root      0:00 [kworker/2:1-eve]\n  254 root      0:00 [kworker/3:1-eve]\n  255 root      0:00 [kworker/4:1-rcu]\n  256 root      0:00 [kworker/5:1-eve]\n  257 root      0:00 [kworker/6:1-eve]\n  258 root      0:00 [kworker/7:1-eve]\n  259 root      0:00 [ufs_recovery_wq]\n  260 root      0:00 [ufs_clk_gating_]\n  261 root      0:00 [ufs_clkscaling_]\n  262 root      0:00 [spi0]\n  263 root      0:00 [kworker/u16:8-e]\n  264 root      0:00 [spi1]\n  265 root      0:00 [bond0]\n  266 root      0:00 [irq/70-arm-smmu]\n  270 root      0:00 [k_ipa_usb]\n  271 root      0:00 [irq/167-qcom,te]\n  272 root      0:00 [irq/187-qcom,te]\n  273 root      0:00 [irq/176-bcl-lvl]\n  274 root      0:00 [irq/177-bcl-lvl]\n  275 root      0:00 [irq/178-bcl-lvl]\n  276 root      0:00 [irq/198-limits_]\n  277 root      0:00 [irq/198-limits_]\n  278 root      0:00 [kworker/0:1H-kb]\n  279 root      0:00 [kworker/1:1H]\n  280 root      0:00 [kworker/2:1H]\n  281 root      0:00 [kworker/3:1H]\n  282 root      0:00 [kworker/4:1H]\n  283 root      0:00 [kworker/5:1H]\n  284 root      0:00 [kworker/6:1H]\n  285 root      0:00 [kworker/7:1H]\n  286 root      0:00 [dm_bufio_cache]\n  288 root      0:00 [memlat_wq]\n  289 root      0:00 [kworker/u16:10-]\n  290 root      0:00 [irq/26-4784000.]\n  291 root      0:00 [kworker/u16:11-]\n  292 root      0:00 [irq/25-mmc0]\n  293 root      0:00 [irq/82-arm-smmu]\n  294 root      0:00 [irq/53-apps-tgu]\n  295 root      0:00 [irq/54-apps-tgu]\n  296 root      0:00 [irq/55-apps-tgu]\n  297 root      0:00 [irq/56-apps-tgu]\n  298 root      0:00 [irq/83-arm-smmu]\n  299 root      0:00 [uaudio_svc]\n  300 root      0:00 [kworker/0:3-eve]\n  301 root      0:00 [apr_driver]\n  302 root      0:00 [irq/220-4784000]\n  303 root      0:00 [msm_vidc_worker]\n  304 root      0:00 [pm_workerq_venu]\n  305 root      0:00 [vidc_core_workq]\n  306 root      0:00 [irq/84-arm-smmu]\n  307 root      0:00 [irq/85-arm-smmu]\n  308 root      0:00 [irq/86-arm-smmu]\n  309 root      0:00 [irq/87-arm-smmu]\n  310 root      0:00 [dsi_dma_cmd_wor]\n  311 root      0:00 [irq/72-arm-smmu]\n  312 root      0:00 [irq/88-arm-smmu]\n  313 root      0:00 [crtc_commit:72]\n  314 root      0:00 [crtc_event:72]\n  315 root      0:00 [pp_event]\n  316 root      0:00 [irq/89-arm-smmu]\n  317 root      0:00 [irq/90-arm-smmu]\n  318 root      0:00 [irq/91-arm-smmu]\n  319 root      0:00 [cam-cpas]\n  320 root      0:00 [qcom,cam_virtua]\n  321 root      0:00 [qcom,cam-cpas-c]\n  322 root      0:00 [qcom,cam-cpas-c]\n  323 root      0:00 [qcom,cam-cpas-c]\n  324 root      0:00 [qcom,cam-cpas-c]\n  325 root      0:00 [qcom,cam-ope-cd]\n  326 root      0:00 [qcom,cam-ope-cd]\n  327 root      0:00 [qcom,cam-ope-cd]\n  328 root      0:00 [qcom,cam-ope-cd]\n  329 root      0:00 [cam_cci_wq]\n  330 root      0:00 [cam_cci_wq]\n  331 root      0:00 [ipv6_addrconf]\n  333 root      0:00 [irq/60-arm-smmu]\n  334 root      0:00 [irq/61-arm-smmu]\n  335 root      0:00 [kgsl-events]\n  336 root      0:00 [kgsl_devfreq_wq]\n  341 root      0:00 [irq/224-chgr-er]\n  343 root      0:00 [irq/225-chg-sta]\n  346 root      0:00 [irq/232-otg-fai]\n  348 root      0:00 [irq/236-high-du]\n  349 root      0:00 [irq/237-input-c]\n  350 root      0:00 [irq/239-switche]\n  351 root      0:00 [irq/240-bat-tem]\n  352 root      0:00 [irq/242-bat-ov]\n  353 root      0:00 [irq/243-bat-low]\n  354 root      0:00 [irq/244-bat-the]\n  355 root      0:00 [irq/245-bat-ter]\n  356 root      0:00 [irq/248-usbin-c]\n  357 root      0:00 [irq/249-usbin-v]\n  358 root      0:00 [irq/250-usbin-u]\n  359 root      0:00 [irq/251-usbin-o]\n  360 root      0:00 [irq/252-usbin-p]\n  361 root      0:00 [irq/254-usbin-s]\n  362 root      0:00 [irq/255-usbin-i]\n  363 root      0:00 [irq/256-typec-o]\n  364 root      0:00 [irq/258-typec-c]\n  365 root      0:00 [irq/259-typec-v]\n  366 root      0:00 [irq/261-typec-a]\n  367 root      0:00 [irq/262-typec-l]\n  368 root      0:00 [irq/264-wdog-sn]\n  369 root      0:00 [irq/265-wdog-ba]\n  370 root      0:00 [irq/267-aicl-do]\n  371 root      0:00 [irq/268-smb-en]\n  372 root      0:00 [irq/270-temp-ch]\n  373 root      0:00 [irq/272-flash-s]\n  374 root      0:00 [irq/274-ilim2-s]\n  375 root      0:00 [irq/277-qg-vbat]\n  376 root      0:00 [irq/278-qg-vbat]\n  377 root      0:00 [irq/279-qg-fifo]\n  378 root      0:00 [irq/280-qg-good]\n  379 root      0:00 [irq/166-thr-int]\n  380 root      0:00 [irq/186-thr-int]\n  381 root      0:00 [irq/52-hs_phy_i]\n  382 root      0:00 [irq/50-pwr_even]\n  383 root      0:00 [irq/51-ss_phy_i]\n  384 root      0:00 [usb_bam_wq]\n  385 root      0:00 [core_ctl/0]\n  386 root      0:00 [core_ctl/4]\n  389 root      0:00 [rq_stats]\n  390 root      0:00 [msm_perf:events]\n  391 root      0:00 [cdsprm-wq]\n  392 root      0:00 [cdsprm-wq-delay]\n  393 root      0:00 [irq/92-arm-smmu]\n  394 root      0:00 [irq/93-arm-smmu]\n  395 root      0:00 [irq/94-arm-smmu]\n  396 root      0:00 [irq/95-arm-smmu]\n  397 root      0:00 [irq/96-arm-smmu]\n  398 root      0:00 [irq/97-arm-smmu]\n  399 root      0:00 [irq/98-arm-smmu]\n  400 root      0:00 [irq/99-arm-smmu]\n  401 root      0:00 [irq/100-arm-smm]\n  402 root      0:00 [irq/101-arm-smm]\n  403 root      0:00 [irq/102-arm-smm]\n  404 root      0:00 [irq/103-arm-smm]\n  405 root      0:00 [sb-1]\n  406 root      0:00 [ngd_rx_thread1]\n  407 root      0:00 [ngd_notify_sl1]\n  408 root      0:00 [fts_wq]\n  409 root      0:00 [irq/281-fts_ts]\n  410 root      0:00 [irq/182-qpnp_fl]\n  411 root      0:00 [irq/181-qpnp_fl]\n  412 root      0:00 [irq/180-qpnp_fl]\n  413 root      0:00 [irq/104-arm-smm]\n  414 root      0:00 [irq/105-arm-smm]\n  415 root      0:00 [rot_commitq_0_0]\n  416 root      0:00 [rot_commitq_0_1]\n  417 root      0:00 [rot_doneq_0_0]\n  418 root      0:00 [rot_doneq_0_1]\n  419 root      0:00 [rot_fenceq_0_0]\n  420 root      0:00 [rot_fenceq_0_1]\n  421 root      0:00 [rot_fenceq_0_2]\n  422 root      0:00 [rot_fenceq_0_3]\n  423 root      0:00 [rot_fenceq_0_4]\n  424 root      0:00 [rot_fenceq_0_5]\n  425 root      0:00 [rot_fenceq_0_6]\n  426 root      0:00 [rot_fenceq_0_7]\n  427 root      0:00 [rot_fenceq_0_8]\n  428 root      0:00 [rot_fenceq_0_9]\n  429 root      0:00 [rot_fenceq_0_10]\n  430 root      0:00 [rot_fenceq_0_11]\n  431 root      0:00 [rot_fenceq_0_12]\n  432 root      0:00 [rot_fenceq_0_13]\n  433 root      0:00 [rot_fenceq_0_14]\n  434 root      0:00 [rot_fenceq_0_15]\n  447 root      0:00 [kworker/2:2]\n  448 root      0:00 [kworker/3:2]\n  449 root      0:00 [kworker/4:2-eve]\n  450 root      0:00 [kworker/5:2]\n  451 root      0:00 [kworker/6:2]\n  452 root      0:00 [kworker/7:2]\n  510 root      0:00 [kworker/4:0]\n  554 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm6115/second/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,974.231575,3.2474385833333335,34.32868550152617,10.571666043101256,28.37774091395658,307.954292122\r\n1,614400,1995.224762,3.2474361360677086,62.417910317038384,9.385797217398878,31.963187894564395,150.370257026\r\n1,864000,2805.757414,3.247404414351852,78.51678662639749,8.395798224192312,35.73215934794102,106.92997746\r\n1,1017600,3304.692664,3.247536029874214,91.71255198891956,8.326366164548531,36.03012335408942,90.787640121\r\n1,1305600,4239.863194,3.24744423560049,123.16692707232372,8.715681913172341,34.4207146369808,70.763167681\r\n1,1420800,4614.17783,3.2475913780968466,135.21958800548825,8.792468195272672,34.12011204786581,65.023628048\r\n1,1612800,5237.613045,3.2475279296875,164.08981514797796,9.39978174045118,31.915634669364174,57.284370343\r\n1,1804800,5861.321142,3.247629178856383,199.8891530278866,10.232071224439077,29.31957698686231,51.188726699\r\n4,300000,1568.38963,5.227965433333333,76.9595242964654,14.722256908820183,20.377310480179734,191.298699458\r\n4,652800,3411.843647,5.2264761749387265,124.22373964023907,10.925010007177827,27.459929080421656,87.946233456\r\n4,902400,4718.464926,5.228795352393616,163.04363134328673,10.368983474834216,28.932440747746156,63.596372268\r\n4,1056000,5516.02405,5.223507623106061,194.34018480891575,10.572975296828908,28.374226892403435,54.404472792\r\n4,1401600,7322.788518,5.224592264554795,290.46074413058994,11.904353402155785,25.200864747989787,40.98437962\r\n4,1536000,8031.268405,5.228690367838541,335.6493773690067,12.543420977157881,23.91692031594197,37.370607017\r\n4,1612800,8434.310776,5.229607375992064,358.551312484607,12.759633635605308,23.511646851901812,35.58663207\r\n4,1804800,9436.03938,5.228301961436171,430.2063138201679,13.685229140064619,21.921445152988024,31.810851446\r\n4,2016000,10544.444835,5.230379382440477,517.766634010241,14.740349697153642,20.352298701429717,28.46909926\r\n"
  },
  {
    "path": "results/sm6115/second/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1695.8650192022324, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1924.274985446, 1900.7051746500001, 1893.625462688, 1926.7128968960003, 1924.074475524, 1886.33150811, 1909.6319463619998, 1924.9826136959998, 1905.794371572, 1922.1402280799998, 1928.9824596270003, 1905.087720459, 1909.992615432, 1934.3212449409998, 1916.1760291900002, 1904.0113385099999, 1937.38600459, 1920.8371058299997, 1906.035803892, 1923.9018654790002, 1902.452564659, 1884.7408948, 1923.3846936780003, 1909.7847113859998, 1884.7408948, 1910.939985801, 1918.722455667, 1913.5753799220001, 1923.1800173850002, 1926.7679863839999, 1901.223447421, 1911.735631478, 1929.844470666, 1923.622145247, 1904.9952430740002, 1913.9116736879998, 1924.3300440839998, 1905.055737, 1917.6432816000001, 1928.5258509660002, 1888.877192004, 1899.01991215, 1924.3300440839998, 1897.70289875, 1881.5861185169997, 1921.7827535850001, 1921.265581242, 1900.76290025, 1921.0794980350001, 1927.2467909519999, 1901.2849813999999, 1927.207830105, 1925.555025954, 1917.9222000000002, 1907.2608452370002, 1920.4650584499998, 1921.7827535850001, 1903.91936505, 1919.240195225, 1909.43727348, 1888.079315097, 1901.530874841, 1922.9697840210001, 1905.1482442200002, 1887.377687595, 1924.1436640699999, 1910.7544358910002, 1904.10378606, 1928.95346525, 1917.1220633669998, 1898.37539034, 1924.1436640699999, 1928.4860876189998, 1898.893840536, 1930.0845418599997, 1927.020673395, 1905.240277044, 1911.7013310700002, 1916.604323725, 1885.172634158, 1900.15250625, 1925.1815492049998, 1889.277775437, 1888.9382445079998, 1919.389484376, 1914.579709942, 1916.13991569, 1924.380730148, 1920.3718075, 1908.11975425, 1919.3479598899999, 1930.88241978, 1911.7013310700002, 1903.032161618, 1932.5340304099998, 1918.0717560809999, 1901.254273169, 1927.351173852, 1894.3633491320002, 1894.3633491320002, 1924.995050546, 1890.6854570760004, 1878.9547013640001, 1922.639169381, 1909.6771922560001, 1895.4963860040002, 1925.6593445279998, 1917.4574952, 1902.847799736, 1931.732499094, 1929.8975682320001, 1922.732060655, 1910.1992134680002, 1920.706853258, 1923.770424916, 1906.428902781, 1918.6820021849999, 1907.0431636619999, 1882.628400744], \"power_mean\": 1912.4326489873108, \"energy_millijoules\": 9562.163244936553, \"energy_joules\": 9.562163244936553}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 307.954292122, \"elapsed_ns\": 307954292122, \"power_samples\": [22.05424119600002, 28.610067173999596, 44.722773107999956, 49.344531271999585, 43.735362425000176, 35.53250219999995, 24.56374900799983, 29.55684370799986, 48.20925649799983, 54.33550862999982, 44.90915312199968, 36.4784177319998, 25.02518744699978, 27.474201416999904, 31.854787847999887, 43.82876216, 40.93640047099984, 10.750205039999855, 10.323074072999816], \"power_mean\": 34.32868550152617, \"energy_millijoules\": 10571.666043101257, \"energy_joules\": 10.571666043101256, \"coremark_score\": 974.231575, \"coremarks_per_mhz\": 3.2474385833333335, \"ulpmark_cm_score\": 28.37774091395658}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1901.0089425600002, 1907.5647685379997, 1923.677474472, 1928.2992326359997, 1922.6900637890003, 1914.487203564, 1903.518450372, 1908.511545072, 1927.163957862, 1933.290209994, 1923.8638544859998, 1915.433119096, 1903.979888811, 1906.428902781, 1910.809489212, 1922.7834635240001, 1919.891101835, 1889.704906404, 1889.277775437], \"power_mean\": 1913.2833868655264, \"energy_millijoules\": 9566.416934327632, \"energy_joules\": 9.566416934327632}}, \"614400\": {\"active\": {\"elapsed_sec\": 150.370257026, \"elapsed_ns\": 150370257026, \"power_samples\": [72.77847473199995, 69.72292220399981, 74.28469467599962, 74.7983656709996, 55.854502821000096, 51.48311988599971, 64.83323722799992, 75.93792019899979, 65.63482271099997, 59.523124040999846, 41.6142417399999, 38.83832067599974, 50.449511435999966, 69.72292220399981, 73.06309647599983, 62.484442835999744, 44.05708189999973, 33.148916585999814, 36.91063997099991, 67.18130894799992, 75.50629287599986, 73.38718244399956, 58.01509771899964, 53.22373948399968, 54.35101590399972, 66.99980420999987, 74.93633690799993, 84.69228783599988, 70.33162991599988, 60.461823389999836, 54.25735503199962, 54.25735503199962, 64.92740133599978, 77.56888078199972, 81.33241994800005, 74.51347703899978, 73.1975379419996, 57.92125933699958, 56.18505904199969, 66.99225806000004, 75.73884210499978, 76.63267628099993, 72.07075582899984, 62.81046934399956, 53.036053596999636, 54.870007882999744, 77.56888078199972, 75.64414507899983, 60.17898401399998, 42.22294945199974, 33.05629186799979, 41.427683563999835, 66.47837791599954, 77.66415505199984, 61.5891679089998, 51.29561216099978, 42.0363321479997, 33.148916585999814, 54.538820435999924, 75.54895992399997, 76.44273497199993, 64.22052485999984, 54.020192210999994, 57.31261075299972, 64.92740133599978, 76.74087215600002, 81.75065225399976, 71.41810376799981, 61.77768470000001, 53.83244719599975, 56.88799972399988, 77.89613973899964, 75.0314922279997, 78.27686741999969, 74.93633690799993, 56.417653470000005, 54.77583438800002, 56.60569529199984, 70.65998801199999, 82.26779274, 79.92070223499968, 74.70324018599968, 51.202099310999756, 51.90829469399955, 62.10729021999987, 77.05544734, 72.39881661799996, 59.7580678679999, 42.977289638999764, 31.64926354999966, 44.997890564000045, 61.12194337200003, 76.0623640729998, 72.97477813599971, 52.32934639599989, 40.01545944199984, 35.832569755999884, 45.08517725399997, 71.97623650699984, 79.4029239199997, 66.89748961999976, 52.75428352499989, 55.47865646699984, 69.67838343599988, 77.06899363000002, 80.92580693599984, 73.63233996399981, 63.51722713299978, 53.036053596999636, 54.77583438800002, 73.52539092899997, 73.99989481199964, 77.18876087399985, 72.58888935799973, 69.24945748499977, 50.401516379999975, 55.43264501999988, 76.58020105800006, 71.36358365599972, 77.47409509799968, 73.71509494800011, 57.82693725199988, 56.32339085999979, 58.769522027999756, 75.16870743300001, 72.49385298799984, 60.976515057999904, 43.16402558799996, 35.64654606599993, 41.24064580399977, 65.7710161, 74.32371389199966, 67.60488107599986, 55.00905594799997, 41.334164683999916, 31.04061496600002, 46.12537574399971, 64.45512464999979, 81.3692117879998, 70.37563374000001, 56.51143268199985, 55.620627713999966, 60.65022153599989, 74.43095848199982, 80.21780310700001, 76.68922926799996, 69.62803461899966, 53.97540683999978, 56.22912825000003, 66.38363911599981, 79.63501118699992, 82.88041575600005, 75.45377476899989, 73.75393662799979, 54.39962334899974, 55.99707634799984, 57.82693725199988, 70.56504095199989, 78.83172052799978, 71.50169104499992, 72.39881661799996, 51.53316020999978, 52.84788522699978, 63.139837226999816, 72.20923124399974, 69.95244777099992, 55.29025019699975, 40.535043008999764, 31.797031070999992, 47.253223082999966, 72.11419487399985, 72.01964586999975, 59.89614463800012, 50.401516379999975, 36.68104853099976, 38.70135619500002, 59.9905858679997, 76.67495725399999, 68.02433048700004, 59.472463598999866, 60.085027097999955, 59.8021877220001, 75.1783797879998, 76.99821233400007, 80.87267959700011, 70.28068667999992, 50.401516379999975, 54.914403842999945, 62.2440781119999, 72.20923124399974, 80.14814794799986, 74.03882525999984, 70.28068667999992, 54.30593279499976, 55.620627713999966, 64.17166156199983, 75.55790608199959, 76.90342665000003, 77.09348660399996, 56.32339085999979, 52.566115155000034, 55.80909365399975, 74.55620360399985, 72.30426761399985, 62.950657197000055, 43.309419842000125, 30.483490646000064, 44.62358184300001, 64.68997160100002, 74.55620360399985, 71.0791406159999, 42.88368164399981, 33.53785518299992, 36.77435895599979, 59.9905858679997, 73.24059106499999, 70.79469757599986, 55.52687799, 55.620627713999966, 60.50464517399996, 78.32960918399999, 79.25392672399994, 74.89349115599975, 66.28890031599963, 52.047665675999724, 58.156988363999744, 68.25794943599976, 74.97882525199998, 77.61071616299978, 75.77720796900007, 68.35280718600006, 58.25134028399998, 55.52687799, 59.61330526199981, 76.19971097199982, 76.48495642800003, 73.84906211299972, 60.92863221199991, 55.33841204999976, 57.78006453999956, 74.37930284999993, 66.32985096399989, 65.39266592700005, 44.53036503699991, 29.87101649899978, 42.088474646999884, 57.82693725199988, 71.12263933099985, 69.53363363699987, 50.54509923599994, 40.34806491899985, 30.483490646000064, 48.89909876699994, 73.43029508399991, 75.35907774299994, 67.74033303900023, 52.660199339999735, 54.21175929999981, 68.4026695529999, 76.07624884399979, 83.92942011599985, 68.06872038599977, 57.78006453999956, 50.96997630599981, 57.26197214799981, 75.58726665999984, 78.12437184499981, 80.37935955399985, 70.6997208759999, 57.35629423299997, 58.392479016999914, 58.298581270999875, 77.3252925869997, 75.49205186499967, 73.24059106499999, 69.28948746099968, 54.72599757299986, 56.653530739999724, 61.44654598399961, 78.54611883199982, 69.57375238099985, 44.342970426999955, 40.068077214999676, 33.53785518299992, 46.972255426999936, 75.62922005999985, 73.34771821999993, 64.31173983600002, 48.852890950999836, 36.5882166209999, 38.51455672499992, 56.559238294999886, 72.01964586999975, 68.77550616299982, 63.46502330699968, 52.89275685099983, 53.456474530999685, 70.84939522399986, 71.60751097999992, 77.34069279599976, 67.32097239599989, 54.39962334899974, 54.63227753099977, 63.74839704299961, 72.95579120099978, 79.15853330899972, 74.46153626, 68.16309168599992, 53.31736679599999, 54.8202007079999, 66.14080007600023, 81.69569816399985, 82.7259303159999, 70.3203011359999, 59.61330526199981, 49.46379346799995, 58.71814076099986, 72.86069535599995, 74.78894307099972, 60.31618789999993, 39.0341101099998, 36.30876386099976, 47.49088348399982, 66.23556851599983, 77.64819201099976, 63.88819847399964, 49.418148916000064, 32.034077841, 32.92538103600009, 56.04108642799997, 79.15853330899972, 69.80692519600007, 63.181649570999525, 54.63227753099977, 56.08874317199957, 76.82261758999994, 77.23047722099977, 75.50629287599986, 71.50169104499992, 56.04108642799997, 57.35629423299997, 65.72143919599966, 75.49205186499967, 76.00971014599986, 77.1351731159998, 64.40641916100003, 56.559238294999886, 58.81255215599981, 71.35536601199965, 76.61809242599998, 74.40869057999998, 72.6709913369998, 54.21175929999981, 50.35759151099978, 65.4377086359998, 73.56417348099967, 69.28948746099968, 59.61330526199981, 40.21385645999999, 32.034077841, 49.042889035999906, 68.06872038599977, 74.08140295599992, 63.6047353859999, 46.08290549099979, 29.68505006899977, 38.660870955999826, 63.08702991599989, 73.27928484899985, 69.28948746099968, 55.75878199600015, 52.70501183600004, 57.59184455599984, 74.09450298599995, 81.8314113959998, 71.5530499959998, 68.39692902899992, 50.45110436099981, 53.647684211999604, 72.24834039599978, 79.06362909099994, 81.40965087600011, 75.81922088600004, 59.938788885999884, 54.023895250999885, 52.89275685099983, 69.99633240799972, 75.91446551600006, 78.96823567599995, 71.9636298839996, 50.688384353999936, 49.23027811599991, 64.31173983600002, 76.02390944100011, 69.09965301099965, 53.647684211999604, 37.440163356000085, 35.32773680399987, 50.87595159600005, 67.69967935099953, 71.45040238199977, 67.74033303900023, 50.87595159600005, 39.97506760099964, 44.0623590109999, 49.65124167599993, 74.50387573500007, 72.76559951099989, 56.885167510999736, 54.538074395999956, 55.946823817999984, 70.65998801199999, 74.50387573500007, 78.37168278599961, 69.19457023599989, 56.885167510999736, 59.750331611999854, 66.84795331099986, 70.64858108199996, 79.29080849999968, 73.08952170199973, 62.10128736999968, 54.8682136919997, 51.81488912399982, 68.5862175960001, 76.33275820199992, 80.60682051000003, 73.70175762799977, 59.330465885999956, 54.25594808400001, 62.10128736999968, 73.1841593639997, 68.5862175960001, 58.52980213199976, 37.16053189199988, 34.01446407199978, 48.6681108759999, 62.992410260999804, 72.76559951099989, 68.17269843599956, 47.02261555799987, 37.440163356000085, 37.16053189199988, 51.2026235159999, 78.87284226099973, 73.89158029199984, 63.32175767999979, 53.55399365799963, 62.289982323000004, 67.32097239599989, 77.34069279599976, 82.22708559599982, 68.44717848599976, 53.92972175599971, 52.42315299599977, 61.67768688000001, 76.96020270999975, 77.03986901099984, 77.17250106799997, 73.08952170199973, 56.79132912899968, 55.19417313200006, 67.07751022799994, 71.45040238199977, 80.74253374199998, 73.32162432399991, 70.3203011359999, 50.82737077599995, 56.50884657699976, 78.39685357999974, 71.26081700799978, 54.25594808400001, 46.92876946799993, 31.239550510999834, 53.55399365799963, 67.07751022799994, 70.74310040399996, 57.12105266799995, 41.949521858000026, 26.075404743999798, 53.129562264000015, 68.39692902899992, 73.79642497199984, 69.00522254099997, 52.84761407200017, 54.06802490700011, 73.61999910299983, 77.17250106799997, 81.65516972399996, 71.26081700799978, 53.03541860399969, 61.394491263999726, 70.9761952639999, 80.93306866500006, 79.99852699799999, 74.12362324399987, 60.26858113399976, 54.06802490700011, 60.26858113399976, 75.53446386399992, 78.7902413869997, 69.23821665200012, 64.54222798999967, 54.58599802799995, 55.90064183299978, 72.48128731799989, 74.21880839899995, 47.353764641000225, 45.84838480299959, 33.30903667099983, 50.589446459999635, 72.00629576399979, 71.77398538199986, 56.32068610999977, 53.88010172999998, 38.38106137199975, 38.1946813579998, 58.52980213199976, 74.40869057999998, 68.43669270099986, 55.90064183299978, 57.63887700399982, 61.16343913599985, 72.10139160899985, 83.16655239599982, 76.98232246899988, 66.04603163599995, 52.14129415599973, 57.12105266799995, 63.83931428100004, 74.82701314299993, 81.44973255599984, 77.36316855799987, 69.33316371199999, 52.471522220000224, 53.08360912399985, 73.93374106299984, 76.2374839319998, 80.83755629999996, 72.61438209999983, 56.83848076399977, 52.84761407200017, 61.394491263999726, 72.00629576399979, 72.99439621700003, 46.647712459999866, 35.470405580999795, 38.616446960000076, 50.688384353999936, 76.04742397799987, 71.5530499959998, 56.22636402499984, 41.0610322980001, 33.21584519599969, 46.36378437899975, 69.65692541599992, 75.76208975399982, 64.49226399599979, 52.65980953999997, 55.994934277999846, 73.65881114299964, 79.82530881999992, 77.2835465579999, 68.77550616299982, 53.459820162999904, 56.32068610999977, 66.60434324699986, 73.13180165999984, 79.52224155199997, 75.85736402399993, 69.04880944000001, 52.283717688000024, 54.303782363999744, 71.67891937199965, 75.24921840799993, 75.85736402399993, 72.00629576399979, 59.2789461939999, 52.75347041200007, 58.48243207199994, 72.00629576399979, 73.32162432399991, 55.94388147299992, 42.70613573199989, 33.029940150999664, 46.55434763199992, 67.54440057300008, 70.88115889399978, 69.846391756, 47.493404693999764, 35.749858340999936, 34.34342381599981, 48.6681108759999, 75.57202979999988, 73.83855590799999, 63.03829459200006, 50.733316425999874], \"power_mean\": 62.417910317038384, \"energy_millijoules\": 9385.797217398878, \"energy_joules\": 9.385797217398878, \"coremark_score\": 1995.224762, \"coremarks_per_mhz\": 3.2474361360677086, \"ulpmark_cm_score\": 31.963187894564395}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1878.429852236, 1891.694345911, 1912.3824469980002, 1913.7519342049998, 1910.217605066, 1901.90022972, 1912.0523613100002, 1920.83599006, 1919.294429824, 1926.3839168680001, 1920.3292280540002, 1901.753317313, 1904.4396713760002, 1908.810398628, 1914.4033187199998, 1921.550885424, 1923.665807492, 1916.051424542, 1905.56902956], \"power_mean\": 1910.7113785951053, \"energy_millijoules\": 9553.556892975526, \"energy_joules\": 9.553556892975527}}, \"864000\": {\"active\": {\"elapsed_sec\": 106.92997746, \"elapsed_ns\": 106929977460, \"power_samples\": [53.08360912399985, 66.41517371399982, 86.78624721099982, 90.83345660999976, 79.36799588999997, 67.96308008599976, 69.60545804899994, 82.05790765999996, 88.60375874099987, 102.04281334199982, 90.89184116399974, 81.2591381159998, 68.99354969599972, 73.5534885720001, 88.90535643299995, 89.42142509999985, 94.49779919399975, 89.22999975599964, 73.03664633999983, 68.99354969599972, 79.88439187799986, 89.83793819599964, 91.76583037599994, 97.16119664099983, 89.51738381999985, 71.4371837069998, 71.53179188099966, 80.36097408899991, 91.95749301000001, 87.55148935600005, 67.16582343899995, 57.77596345500001, 48.432105515999865, 62.142774281999664, 88.7139906059997, 90.64142021999987, 78.33853534599962, 61.953534971999716, 51.76580412599969, 61.76478089099987, 78.85505032599963, 86.88208678599972, 84.95843229599996, 68.48010089599984, 73.13180165999984, 84.88488474899987, 95.94132016599974, 92.78772348199982, 88.90535643299995, 72.75166835599975, 71.10949834799976, 78.95050321600002, 90.02942266799982, 93.40589339999974, 92.88962918099992, 86.27411870600008, 74.58348286599994, 70.9198538459998, 83.26108234200001, 87.58943242799978, 93.50156721599978, 91.2534177719997, 80.68686483599959, 69.1830160359998, 79.97990424299974, 87.39818524599946, 82.41953885299972, 69.37248237599988, 49.46847401399987, 51.38983146099986, 75.0966356219999, 88.90535643299995, 85.05418275599982, 69.52257092399987, 53.83358400599991, 50.07638296599953, 70.9198538459998, 92.2816907409997, 88.20142997999983, 77.21347393199994, 76.6014763799999, 72.84682367599976, 93.10845422600005, 97.35339337200003, 91.17931399600002, 83.6433555589997, 69.60545804899994, 71.24699201699968, 93.50156721599978, 95.23761905799984, 95.4296380159999, 91.57416774199987, 75.51793576499972, 71.53179188099966, 75.51793576499972, 88.61806172099955, 97.06303321399992, 84.67167194400008, 83.22227893599984, 68.8035962959998, 68.38564074399983, 93.40589339999974, 91.57416774199987, 75.28669557600006, 61.76478089099987, 52.52001697699984, 59.04811082399988, 79.36799588999997, 89.13453313199989, 81.90674131099968, 70.12233003199981, 53.83358400599991, 53.73983428199972, 72.5618456919999, 91.76583037599994, 88.01012328099978, 68.66950810799995, 72.65700101199968, 78.52889210699982, 83.6433555589997, 99.50492360400017, 88.01012328099978, 74.67872749599996, 69.08803933599984, 76.50663152599986, 86.69089912100003, 95.23761905799984, 94.85308751999969, 86.69089912100003, 77.02323581599967, 73.87681831699979, 73.2689093649999, 90.44987623099973, 98.80063625799971, 92.18607609499963, 89.83793819599964, 63.78552764400001, 69.51045151400012, 90.25833224199982, 89.64645372399991, 77.54026963299975, 60.450829159999785, 48.85656566099965, 59.842920207999896, 77.34948280299977, 91.57416774199987, 83.6433555589997, 62.799783845999855, 51.296200270999634, 46.930934437999895, 65.84717881799997, 92.50606662299992, 89.74244208399978, 78.66463404799993, 68.29069368399996, 70.9198538459998, 89.45496925199973, 94.74927213599972, 92.60171075699986, 83.4695216499997, 74.67872749599996, 68.10128647199986, 68.7091066559999, 95.14136276799991, 86.91982147199951, 91.76583037599994, 83.92944706799994, 76.12578543699988, 71.24699201699968, 74.2034812139998, 89.64645372399991, 95.33338172599974, 87.30280747399956, 86.40387188099999, 68.19574662399987, 67.77373239099984, 84.7058233759999, 89.93392655599973, 84.67167194400008, 72.04509265899992, 56.17946889199993, 45.71117660799996, 66.97604826899988, 87.51719119600011, 85.89137029900007, 83.6433555589997, 61.99909172999992, 50.50012294899989, 58.61910350199969, 69.93274465799982, 91.89824643899988, 85.47108181599992, 70.12233003199981, 73.49644741799989, 70.50150077999979, 90.37953601200002, 90.87021075999996, 91.40858097799969, 84.34649426099986, 69.41544497899986, 72.27686770799983, 87.01569088199994, 94.11350525099988, 97.38862217999986, 92.50606662299992, 79.97990424299974, 71.24699201699968, 69.60545804899994, 81.65546916699964, 90.39095571799999, 94.24129835399981, 88.75119034799968, 80.30567595599973, 70.73020934399983, 71.24699201699968, 88.1394011819998, 89.45496925199973, 75.4231203989998, 59.653859127999795, 48.15069226800006, 61.38727272899973, 69.74267191799981, 91.09427209799992, 85.27952161600001, 71.76020402699987, 61.90444223999975, 51.81396496399998, 60.07307336399981, 76.83299769999985, 95.04510647799998, 80.30567595599973, 72.37202302799983, 71.05728799799977, 80.30567595599973, 87.55148935600005, 92.0899685899999, 88.68043441400005, 84.34649426099986, 69.8377082879997, 72.4666903719999, 80.91349614, 94.43325779499969, 96.58411236899997, 86.82395206199976, 77.25457858499999, 72.08704504399998, 70.96219215299993, 87.7229173369999, 95.74589120399992, 90.48651119399983, 90.77416272999972, 69.22591912200005, 70.12233003199981, 77.44487621799999, 96.48826104299997, 82.74495432599974, 68.8035962959998, 50.92022760599957, 49.70064789599974, 64.24883322000005, 84.04183828899954, 86.91982147199951, 81.71602822599993, 57.116536172999986, 48.19956558599961, 52.75159648199974, 69.55308654399983, 95.14136276799991, 84.89738357600004, 71.15238384299982, 68.61412995599972, 74.2034812139998, 93.14517970899988, 93.53731099499987, 88.25953502199991, 83.5822018859999, 69.93274465799982, 69.22591912200005, 83.35677332699993, 94.85308751999969, 91.09427209799992, 92.50606662299992, 86.82395206199976, 70.54056484199987, 71.99188972399975, 83.86887288599974, 87.34030393900002, 91.70603142899995, 87.14850544899969, 87.34030393900002, 69.74267191799981, 62.04380585099989, 88.46380628399993, 87.94803535499977, 80.62727073199994, 67.11028532599971, 56.927713382999855, 55.89689698799975, 70.16078831999971, 94.66106856200008, 87.43571139299979, 73.40123262299994, 64.72218942799987, 44.724514178999925, 53.551368341999705, 77.6715526590001, 94.24129835399981, 86.72857428999987, 77.25457858499999, 72.79347171900008, 75.13769682299994, 90.83345660999976, 89.77922606900006, 94.36559054400004, 87.81881658199995, 69.55308654399983, 73.30650610899988, 82.97450010999978, 92.50606662299992, 100.85843083199984, 87.01569088199994, 81.75110048199986, 73.40123262299994, 68.3296869159999, 86.95719874999986, 92.95345755799963, 95.88052962699999, 87.7561775849997, 78.37876487999984, 68.42466361599986, 72.79347171900008, 87.7561775849997, 89.87475186300003, 81.04779703099985, 64.67148214599979, 55.425621243999785, 57.53947271400011, 68.20764046199997, 89.91170067600001, 90.80653179399997, 77.57661895299998, 64.76628042099992, 53.26915267799973, 54.20627912899954, 70.77248813400001, 90.19885965799972, 86.02100506599982, 70.63514333399962, 71.09530127799985, 77.54026963299975, 85.6044318270001, 94.36559054400004, 96.29557023300003, 84.15554388600003, 74.14535868000007, 75.74542823899992, 78.09289571199974, 90.71094683000001, 90.10330418199965, 94.04933891299993, 92.2181481990001, 69.97114381799952, 68.23471021599971, 75.78595449599993, 90.29490768799974, 96.29557023300003, 97.42299950099982, 87.27751704599973, 70.16078831999971, 70.25585432999969, 87.05309799499969, 90.19885965799972, 80.57076918599978, 64.10366478599985, 50.54425494099996, 51.95594188899986, 76.07155619199966, 90.51928419599994, 83.5822018859999, 75.19142130599971, 57.2566333379998, 51.9052175459999, 67.11028532599971, 82.07630741599996, 89.81565264599976, 84.7058233759999, 66.826020406, 72.08704504399998, 79.1770308299997, 93.66492656200012, 99.05891946599968, 90.25833224199982, 81.84673179699985, 69.45805017399971, 75.97619261199975, 77.80702654399988, 92.02587390899976, 95.9111767710001, 91.03475747099992, 77.80702654399988, 72.50840438299997, 74.24063294999996, 86.97743487599973, 92.86541324099994, 94.468555982, 87.37344593099988, 77.19541608199984, 68.3296869159999, 73.11607651899976, 91.03475747099992, 83.5822018859999, 75.78595449599993, 65.32271013599984, 45.66688648099989, 53.31278811600009, 81.36955605599974, 91.64231135099999, 83.81188191599995, 69.97114381799952, 59.08764543199982, 46.605385836000096, 67.53257792799991, 92.35002927599976, 91.51430927799993, 80.76197253600003], \"power_mean\": 78.51678662639749, \"energy_millijoules\": 8395.798224192313, \"energy_joules\": 8.395798224192312, \"coremark_score\": 2805.757414, \"coremarks_per_mhz\": 3.247404414351852, \"ulpmark_cm_score\": 35.73215934794102}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1895.262342086, 1902.496450008, 1919.075518528, 1915.8356017920003, 1914.096354961, 1916.350856134, 1899.628080936, 1896.72173067, 1909.303752964, 1921.27769512, 1905.7347300719998, 1898.038471368, 1891.5047497990001, 1880.425406592, 1884.940225434, 1913.773369515, 1915.463079054, 1911.89145004, 1904.232260992], \"power_mean\": 1905.0553750560528, \"energy_millijoules\": 9525.276875280264, \"energy_joules\": 9.525276875280264}}, \"1017600\": {\"active\": {\"elapsed_sec\": 90.787640121, \"elapsed_ns\": 90787640121, \"power_samples\": [68.98384305599984, 94.69207194599994, 107.18126070999983, 97.7418325409999, 82.49702663099993, 86.86179129599986, 89.77922606900006, 103.97318945599977, 109.65828508499976, 103.87651664599957, 93.15351036899983, 83.71613145600008, 86.47868610700016, 96.234096228, 104.54966679599988, 109.03882135199979, 105.38204123700007, 93.37674066599993, 84.74410774399985, 86.66999280599998, 103.55165293899995, 109.65028294500007, 104.86737140399987, 102.42939904399987, 80.47565777599971, 82.11475341399978, 93.89249910800004, 101.30653074599968, 93.89249910800004, 84.55248787400001, 67.89826369699995, 61.47670097100013, 81.69464395599971, 97.0378735859997, 102.52557609599967, 95.01516952299994, 69.40172279399985, 60.95988886799978, 71.23211109199997, 91.86968753999986, 104.45290467599989, 95.2073071259997, 80.98752121299981, 84.83942634599998, 93.79624281799988, 107.14973447699981, 115.13745135799991, 101.78860651499963, 91.83409262999999, 83.94105611600003, 88.01760509199971, 100.08748539599992, 102.23605342399969, 106.08635758399987, 101.72126464100006, 91.96585452, 83.33362064400012, 89.33639760399979, 101.94653075199994, 99.18688720599994, 108.33438585999988, 103.26195214699965, 93.69998652799995, 79.57794094000019, 81.9238621669997, 103.16521986199996, 101.21041286399986, 90.74692781499971, 73.25250021600004, 60.15915812999992, 70.71577498399984, 88.20908956399967, 103.13709720599968, 98.76844382799982, 79.0655871959998, 72.03345486600006, 60.770589887999904, 78.64518016800002, 103.35868443199979, 102.33272623399989, 84.13261631599994, 81.5033216559998, 88.36784756399993, 101.0171861939998, 112.1994541439999, 104.259876652, 96.619102956, 82.95160085999987, 84.8728961060001, 94.82303191999995, 105.89265511400004, 110.77212031999989, 101.72126464100006, 86.57458535199976, 78.97053495599971, 92.57731611300005, 99.28341123099995, 108.1409423839998, 99.53891282199993, 96.234096228, 79.99813966599982, 86.38278686199988, 102.94418782699995, 98.38296190999972, 87.2188034039998, 72.77725393399987, 62.60088887599977, 72.07066689800013, 91.22647962199994, 104.8021047090001, 96.52272771599996, 78.54966780300015, 74.37673019999988, 67.38186815600011, 83.74998709600004, 105.79630055200005, 101.0171861939998, 84.968735681, 80.89188989799982, 91.73844849600005, 104.10263592299975, 112.22597079999991, 98.83471685599989, 90.03938855199999, 86.19148016299982, 85.96309392399962, 97.26064803999975, 104.57749249199992, 104.57749249199992, 100.92106831199976, 83.04686029200002, 84.36135933699984, 96.97183843199969, 103.55165293899995, 110.67552888399996, 104.38390897199997, 88.53295913800002, 80.28445442599991, 87.41022874800001, 99.09085817599998, 104.38390897199997, 94.72671615500008, 74.60337886299976, 61.193148530999906, 75.82612334500004, 82.01955315200007, 100.11649923599998, 95.33409249899978, 80.60548636999988, 62.317158315999905, 63.303092788000185, 87.08615121899993, 101.85035369999969, 99.82773933599992, 91.86968753999986, 80.79674899999986, 87.92161673199985, 107.47140709400014, 105.09207297299986, 107.567791338, 98.28646771999979, 84.77754801599986, 88.53295913800002, 98.99433415099975, 106.92219379899984, 105.40939228499997, 98.89781012599997, 93.50796756999989, 83.65420699600008, 83.55891807599983, 97.58315115599976, 103.9700865079999, 106.50408687200002, 100.72784164199993, 83.55891807599983, 80.09374134099971, 96.17220545100008, 100.11649923599998, 97.67912101599995, 81.12165819599954, 65.87879517599981, 64.66016523599978, 89.04874606799967, 107.14973447699981, 98.89781012599997, 88.17642221999995, 69.72838452299993, 60.39296269199963, 84.26554940200003, 103.16521986199996, 101.14239800099995, 93.2196923219999, 85.48423851199982, 84.68170844099996, 104.74269481999977, 106.02639068400003, 107.761553478, 98.67194963799989, 86.93141934000005, 85.00587473799965, 103.77656226800013, 109.26266111399991, 111.0926926300001, 100.53511042499986, 87.6346361479998, 86.4161248529997, 88.43743334399983, 103.16521986199996, 110.48135022399993, 102.36496377899994, 95.65683325200007, 79.80742658099985, 82.3402881359998, 101.04625063100002, 102.26875704500003, 92.70463588799976, 74.92914940799983, 67.00244841599988, 65.41756788599969, 88.24588935500014, 105.40939228499997, 96.68302882399985, 86.93141934000005, 72.11200682599974, 62.12816655599977, 75.82612334500004, 85.71296751999989, 107.33618618399964, 98.09397418199978, 81.828171182, 89.14430154399997, 88.40106628399985, 103.39414411199982, 108.55481612399967, 100.69500963599967, 92.32022353699995, 85.3888607399997, 85.90427421899994, 102.77928284799987, 102.26875704500003, 110.19107802199983, 101.56083102799971, 88.95269803799988, 84.07442086499987, 89.3683229799999, 97.90148064399978, 108.16731347999985, 107.94749890799972, 95.04555036300007, 83.69216379099998, 77.88255066900001, 89.46440065000002, 104.09452642800011, 99.73115583599974, 75.86194005699963, 63.34673702099985, 66.0163464159998, 93.73118774199997, 101.46415821799974, 96.58659410899963, 78.90991828399979, 63.34673702099985, 63.95402459700017, 83.17628885599993, 103.29374409999969, 97.10181778599963, 94.94969903700007, 82.05361713599996, 89.97954635199972, 107.59957617600003, 103.4872683399999, 101.69248863299981, 93.3465377959999, 83.97910226299996, 86.12883014099975, 101.65750383799991, 103.06898363999971, 103.58353424400002, 104.5121364449999, 90.0756538569999, 88.0538529649998, 91.71302472899993, 99.63457233599979, 105.02298069099993, 105.73052878999988, 96.68302882399985, 82.47383061599976, 83.36784905599984, 100.56353136099983, 105.22551298799999, 90.77855607900005, 80.73950416599973, 65.17659037499993, 70.75731044399959, 96.26811614099984, 105.73651177199986, 92.22449055099969, 79.35172383599979, 60.90959609100014, 56.45014921999996, 85.29299132999995, 102.39627865099988, 100.75681731099985, 89.46440065000002, 82.664840508, 82.24456751100001, 98.96093736599983, 105.0324849640001, 107.98622583799988, 93.31594861199983, 81.76694613599989, 86.22426708299963, 101.36798116599971, 107.56011467199983, 113.05763160900005, 101.27130835599974, 92.93141707399968, 81.95789651099994, 83.97910226299996, 104.5121364449999, 104.8021047090001, 103.9009429079997, 102.0753517549997, 83.36784905599984, 83.69216379099998, 94.94969903700007, 103.7163212539997, 96.8754037169997, 78.81483655599982, 66.39516084000002, 62.357352355999865, 82.76059096799986, 103.19747819600002, 96.49065393099977, 92.93141707399968, 72.90923609999982, 68.03542881999965, 77.6915259389998, 99.027373528, 99.22048124800017, 89.88343884699975, 82.56909004799991, 85.10174414799985, 88.14987115999975, 103.39414411199982, 110.70521206400008, 98.38296190999972, 86.93141934000005, 82.664840508, 87.76629078099995, 101.17463554599976, 105.15023602199994, 109.29313860599996, 103.19747819600002, 84.62338037399968, 82.664840508, 94.46846609099998, 104.705779635, 112.43368405199976, 102.68255056299972, 89.27224530999979], \"power_mean\": 91.71255198891956, \"energy_millijoules\": 8326.366164548532, \"energy_joules\": 8.326366164548531, \"coremark_score\": 3304.692664, \"coremarks_per_mhz\": 3.247536029874214, \"ulpmark_cm_score\": 36.03012335408942}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1902.750242998, 1900.830424152, 1918.282923792, 1914.437923293, 1916.783356378, 1918.282923792, 1901.715856032, 1897.445535996, 1910.868255435, 1913.307295905, 1908.429214965, 1890.032709061, 1882.283329926, 1881.308956783, 1897.3534736840002, 1916.41035906, 1912.635548125, 1911.387271514, 1905.0448611690001], \"power_mean\": 1905.241603266316, \"energy_millijoules\": 9526.20801633158, \"energy_joules\": 9.52620801633158}}, \"1305600\": {\"active\": {\"elapsed_sec\": 70.763167681, \"elapsed_ns\": 70763167681, \"power_samples\": [138.7627174439997, 137.11220093999987, 129.6250037159998, 114.89851842299981, 113.6804823179998, 127.47817309599986, 129.3312925959999, 126.89146450399994, 113.6804823179998, 101.36798116599971, 100.59608595999975, 119.96984672399981, 136.93757095199976, 133.45249423200016, 115.70430705600006, 103.32118508400004, 93.66921844800004, 103.32118508400004, 130.2320546279998, 135.01009161900015, 129.3312925959999, 114.99587548799968, 113.17072899599975, 129.0879908920001, 138.9205097890001, 138.9205097890001, 134.47900478799988, 115.21837139600007, 118.3620491119998, 123.2377121239997, 139.0786254479999, 143.63909351999973, 137.15179954999985, 130.647340881, 122.113515602, 114.70430355999997, 121.21397135400002, 133.69427990199983, 137.66423731399982, 129.3312925959999, 130.744968471, 108.51815431199998, 114.33594915599997, 132.78904927099984, 132.07993353200004, 120.70073019000006, 111.05055117999973, 94.50280153200015, 99.66707676899978, 119.67756173199996, 133.20388984799956, 132.07993353200004, 108.10079079899992, 99.0560619360001, 97.83802583099987, 113.3895874719999, 136.83914255700006, 131.254332665, 123.33548590400005, 114.89851842299981, 116.63062271099989, 123.84467426799984, 135.45978489599975, 141.80995327199958, 130.81965440399995, 122.82174344699979, 111.97725295199984, 122.01580149200004, 134.51940479999985, 137.87757550799984, 138.46767013199997, 136.25008647000004, 120.79788403199973, 114.00051310599997, 123.96746672699987, 136.4464384989999, 141.1208071499998, 136.1516580749999, 129.13565282599984, 110.95387089199994, 111.754721604, 129.037581476, 133.90853883599993, 118.45958479699993, 104.24966082999981, 89.0204427379997, 99.88851735099979, 117.36207045599963, 136.34801010399997, 131.37537339599976, 124.35829803799993, 98.38146333600002, 93.09231171200008, 104.15280959499978, 127.81584954800019, 133.81073373599975, 124.16263152800002, 110.43959586400001, 112.49134977599965, 132.86418197599983, 136.95488348000003, 139.2370128379996, 131.1561721999999, 114.92671011599987, 117.04715531999977, 125.99123683199991, 135.12627817599991, 139.27521476699985, 135.63925018799978, 129.93825474000005, 118.58374301999993, 115.63446355999986, 135.2246469009997, 133.81073373599975, 134.51940479999985, 131.78577740399987, 116.14439028599986, 110.8566922519999, 121.62594724799987, 133.10561023799983, 130.96035465699993, 115.9959683359998, 97.96726166000008, 97.16384264099997, 115.73188029499988, 137.91983585800017, 130.15769322599976, 121.16566991499985, 102.64513186799991, 91.35993286299981, 110.05199704199981, 126.89146450399994, 135.63925018799978, 126.3824249249999, 113.90318568099974, 117.14413165199994, 124.23538639199978, 134.3580226009999, 145.43353709999974, 133.2792904559999, 118.58374301999993, 117.68079986599992, 120.31061244300008, 141.2189674639999, 138.88203612899974, 137.15179954999985, 133.47528616099999, 115.34271292799963, 117.36207045599963, 129.86380398599977, 131.57125045599992, 141.82983342800003, 128.94001305599977, 128.23113525899976, 115.85255088600002, 114.82932321600015, 125.380370868, 135.0284139059995, 126.40270811699997, 108.22747298399986, 101.33077888799971, 98.47804683599998, 116.06480613500003, 136.1516580749999, 131.17899279599987, 118.99539658799972, 107.00580041999979, 94.21417004399973, 103.44908498400014, 117.97290673799966, 137.05334151500006, 128.74387035599966, 114.92671011599987, 115.63446355999986, 126.5777678879997, 133.06062185599967, 145.8433129240002, 136.85693035799977, 128.1093819639998, 115.53754639799968, 119.38527673999988, 125.08719469199968, 136.66001428799973, 137.1728080959997, 131.37537339599976, 130.47055910599966, 114.24600065599975, 114.02430190599989, 122.6520722519997, 129.66754233599977, 142.1410357799998, 141.02214085499986, 127.5223171319999, 112.10277678599982, 114.82932321600015, 127.42480807600009, 136.66001428799973, 130.15769322599976, 106.10854267599984, 96.55303619399979, 100.62778754600004, 114.92671011599987, 132.59305356599998, 135.44245306799985, 124.06529998199994, 103.57269553099991, 95.23898078399952, 102.96597005099989, 115.44012966299988, 133.22188653599983, 135.63925018799978, 121.13787779600011, 109.25091482399989, 120.50542092, 134.73381218599957, 138.33077140499995, 136.75847232299998, 130.744968471, 117.16705875599973, 114.6350488359999, 120.92141889000004, 135.44245306799985, 134.22489184799974, 140.3166899519997, 138.39031014599982, 115.05096229599962, 116.46329781599957, 124.89191124599984, 134.02871798099977, 133.71242448599992, 135.44245306799985, 128.94001305599977, 112.29681387599976, 114.95404513399967, 138.70583106000004, 131.2956850879998, 124.28119415099968, 110.97855087599987, 93.41064295199976, 106.71529779599973, 128.35259081599997, 137.5271318, 128.450159236, 109.22167840399993, 90.7835610709999, 92.51540497600013, 120.53118195600018, 142.65356322599996, 132.39655401599975, 117.87537105299998, 117.58326418099978, 114.95404513399967, 137.13392298100007, 142.55480762099978, 139.17717279299995, 130.56821618399977, 113.1260636259999, 117.68079986599992, 136.56206116599992, 138.90247989599993, 147.2310897960001, 134.73381218599957, 128.03555500599964, 112.80679985599977, 114.34338755599993, 135.95530604600003, 136.4636031309999, 137.58252819599988, 132.78904927099984, 122.77084287199978, 113.9269448409998, 119.41142385099988, 129.35065496399966, 131.39390502800006, 121.23559190599985, 103.37948973400012, 94.43988041099965, 101.74852747599994, 118.97300442799997, 132.29880808599978, 129.3312925959999], \"power_mean\": 123.16692707232372, \"energy_millijoules\": 8715.68191317234, \"energy_joules\": 8.715681913172341, \"coremark_score\": 4239.863194, \"coremarks_per_mhz\": 3.24744423560049, \"ulpmark_cm_score\": 34.4207146369808}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1901.824100732, 1924.5731562720002, 1916.975643192, 1899.349829256, 1915.7568946069998, 1923.9659006150002, 1922.1810421169998, 1917.6233194899999, 1920.1182099080002, 1912.987567308, 1900.605292672, 1903.4685230580003, 1909.47325074, 1908.7193256, 1925.698327392, 1922.792325006, 1908.4404072, 1903.561416963, 1910.177306716], \"power_mean\": 1913.0679915181054, \"energy_millijoules\": 9565.339957590528, \"energy_joules\": 9.565339957590528}}, \"1420800\": {\"active\": {\"elapsed_sec\": 65.023628048, \"elapsed_ns\": 65023628048, \"power_samples\": [118.50842176399988, 138.70583106000004, 148.54695893599978, 142.77139613999975, 120.43399843200018, 102.77282338199984, 112.51540604799993, 131.49162127599993, 151.4937191639999, 145.30420389799974, 127.42480807600009, 129.374156331, 141.4514742479996, 149.108416476, 156.66481632599994, 145.07386790199985, 132.00456260600004, 129.05685507599992, 138.09517348199984, 150.67194832799987, 150.177252749, 150.98172513600002, 143.27918828399993, 125.30728537799973, 125.71854963899978, 146.3240481299997, 148.86141340199993, 152.61178165899992, 147.03361005600004, 127.6438917229998, 124.30555889399989, 134.97253637899985, 145.42117522599983, 144.2841223759997, 124.91609728499998, 112.73725304100003, 108.05909591399995, 126.6220888759999, 147.54119393999986, 142.96846042799984, 126.23116565999976, 115.97691652199978, 103.28263849899986, 116.77803541599974, 147.13209609599994, 147.6402172799999, 137.4845159040001, 126.3291476999998, 128.35259081599997, 136.38642033399992, 150.54226774599988, 152.9250447779998, 141.1208071499998, 128.05887969599985, 129.27602550599977, 134.24297747099968, 148.05270899099992, 156.26756605499986, 143.88975650999964, 137.1894685919999, 127.6438917229998, 133.4396920769998, 148.05270899099992, 153.53159272200014, 143.98860142499984, 144.397459539, 128.05887969599985, 128.1569510459999, 139.23371006299976, 146.73713661600004, 142.32230181, 122.99114101299983, 110.90962831499974, 110.20238014799997, 126.81805295599975, 146.83562265599994, 144.34892362799974, 125.01401984999984, 118.60601692399973, 109.17915239399986, 122.99114101299983, 147.9541637809998, 146.22508426499985, 136.5828910079997, 129.17789468099977, 133.22188653599983, 142.2241118139998, 153.48708351599976, 150.9688673600001, 136.87784955199982, 128.76355826999998, 132.2226057419998, 147.44217060000005, 148.1517621659998, 142.98324978799997, 143.69257357700008, 129.39280753899993, 125.62059743399982, 149.88033371699998, 155.82803683199973, 152.11649254999975, 139.52911419899988, 127.47145745599983, 127.96080834600002, 149.3689079759995, 139.93883553399974, 129.68678554699977, 107.45248868999988, 110.39629820399978, 128.1569510459999, 146.12662790700006, 139.23371006299976, 124.91609728499998, 110.29908992399987, 109.69254197999999, 127.44831146999991, 151.60524527599978, 150.80032289999986, 127.76516857599995, 126.13318361999973, 139.50920537599973, 149.73356517599973, 156.7484115479997, 143.0667392759999, 126.23116565999976, 132.02655051999977, 138.115379028, 145.92870017699988, 153.18989759600004, 146.73713661600004, 132.32088535199955, 126.34869009199997, 133.1451791249997, 147.34365507200005, 149.48478062299978, 146.02766404199997, 133.94837575099996, 124.11027544799981, 131.5143214210002, 146.7505306559999, 141.96328686899983, 127.76516857599995, 114.66229450199967, 109.59586169199997, 129.17789468099977, 144.90960074199984, 142.27797553199957, 123.49979657399967, 110.61841262699954, 113.85745189599993, 130.60965658400005, 145.2238141309997, 138.4106050439998, 126.446199148, 124.72075432199972, 138.31202786400013, 149.43691361599963, 152.5288980699995, 145.50150547599992, 131.5143214210002, 129.70915953600002, 134.26419338799997, 153.53159272200014, 156.17944520499964, 145.2238141309997, 140.54931440799987, 124.11027544799981, 124.93593663699994, 147.04709286399975, 141.47052172200006, 146.63814291599988, 144.2002174779998, 127.05664818699984, 120.87087455499955, 144.51449038399983, 149.18786159099977, 130.7073728319997, 115.6849877699999, 106.16367682199984, 117.82675710799981, 137.62350417599987, 143.80522630699966, 137.91873019199988, 121.38352013199983, 111.9326184319998, 112.4457698809997, 128.0778575039999, 146.94806952399995, 146.3416694760001, 128.17595849399981, 125.83973997199973, 132.32088535199955, 143.10051788099986, 157.45880691900015, 145.12487990600016, 135.26731680300009, 125.54629632399974, 134.77618435, 142.7861263719999, 149.48478062299978, 150.30533055599994, 143.1988558989999, 132.53473008599963, 121.28574635199993, 136.599373968, 148.16884856799993, 154.86318594, 149.48478062299978, 135.2841263629998, 125.03388884200012, 128.0778575039999, 146.14418973600004, 140.15503602199988, 127.7840576159997, 107.6999964659999, 106.58044470599998, 131.4160716460001, 145.5338597309999, 139.84016923899958, 129.39280753899993, 108.50010715699977, 105.3597846959999, 128.688247026, 145.12487990600016, 146.45396844800007, 135.8944860499996, 125.13184104699985, 132.94900525799994, 148.84361049599966, 149.79420251099987, 148.74506528599977, 139.95814989599967, 126.15266673199994, 131.732215688, 142.58849621199988, 151.2088277559999, 149.18786159099977, 146.7505306559999, 132.8506661729998, 127.88215860600008, 134.48140392599998, 145.02594568099994, 151.5219420059998, 144.8285845859998, 138.93830592699987, 126.95910944899993, 129.61096923599985, 148.4784189359998, 143.70685880099973, 129.19648660899998, 121.28574635199993, 105.3597846959999, 115.80447700599984, 148.4784189359998, 148.72744277200013, 131.83049529799973, 115.58751155999971, 105.45628727999974], \"power_mean\": 135.21958800548825, \"energy_millijoules\": 8792.468195272671, \"energy_joules\": 8.792468195272672, \"coremark_score\": 4614.17783, \"coremarks_per_mhz\": 3.2475913780968466, \"ulpmark_cm_score\": 34.12011204786581}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1900.012523409, 1899.309239072, 1915.52803568, 1924.3409229000001, 1928.2316153880001, 1925.0902358999997, 1905.784606905, 1898.979918264, 1917.310439902, 1931.979918935, 1938.4026253020002, 1919.606808912, 1905.588725352, 1898.831321364, 1900.8051538710001, 1918.108190684, 1920.026827068, 1904.1851401790002, 1880.328790392], \"power_mean\": 1912.2342652357368, \"energy_millijoules\": 9561.171326178684, \"energy_joules\": 9.561171326178684}}, \"1612800\": {\"active\": {\"elapsed_sec\": 57.284370343, \"elapsed_ns\": 57284370343, \"power_samples\": [163.90382517999979, 148.18158925599982, 135.6000325719997, 151.22466673400004, 164.61340997599996, 178.2032945479998, 166.9390552279997, 155.58364723699992, 159.63468537899985, 172.30667784000002, 187.21874494799954, 176.87309830499976, 167.34586863599975, 154.36715443199978, 157.11221423899974, 166.6281094210001, 170.28972168399991, 185.30474150399982, 176.07554300399966, 162.88659256799997, 152.34228849199985, 159.33676246799996, 174.24898770799996, 180.13346738999985, 174.9590757399999, 169.58328574699976, 154.16884378799978, 154.2677442119998, 174.24898770799996, 174.74472242299976, 165.82984330600016, 153.15066162699986, 136.6194901619997, 140.68199619899997, 158.12021018799965, 177.29191716400032, 174.44925696699988, 159.8433663049998, 141.39093293999986, 133.99027147300012, 142.7056451179999, 161.4710768599998, 179.11847246000002, 167.8673462040001, 160.05528712, 155.28574825299984, 158.4281474039999, 176.67219487499983, 179.01784232000023, 181.64122982999947, 171.40603070400016, 152.34228849199985, 160.35389916799977, 165.02424156699976, 180.13346738999985, 178.00215321799965, 178.3110784359999, 174.65832508400013, 160.35389916799977, 156.60159210799998, 161.7698670279999, 176.9908102679999, 176.1755090700001, 176.07554300399966, 173.03261354799974, 156.402533768, 155.28574825299984, 169.6896465000002, 173.3422221479998, 168.67318562199966, 157.01265523400025, 138.24936682899988, 135.51770222999994, 159.1374658379998, 174.1485956629997, 172.22581466399993, 149.29935903599994, 144.84212768999987, 137.13162932399973, 152.75376813799994, 177.8015276349995, 174.24898770799996, 163.90382517999979, 154.48121470799992, 154.87795503000007, 169.5894627150003, 184.88724935599998, 182.974939596, 172.21630332599966, 162.58762427999977, 158.73989461199972, 164.92429568199987, 179.72865359599996, 181.55776199600018, 175.97506164899983, 171.41566122900008, 159.74368834999996, 154.67958486899988, 164.72491645499986, 172.32611759399992, 179.6279936210001, 173.94832640399977, 171.51593432399955, 155.6974107479998, 158.93868022499964, 175.47368545199993, 171.61569319800014, 165.131552716, 146.76755754099963, 132.57373587599977, 141.60237238800005, 162.08125799599975, 176.9908102679999, 167.8673462040001, 156.8140477830002, 140.48499142799983, 140.97775657500006, 152.14364667200016, 170.19952466400014, 175.46934997999983, 166.84671963599976, 153.9700233479998, 156.3035150039998, 170.4895754910001, 175.67413287299973, 176.47180658199954, 172.63179779399957, 155.385217948, 152.55557613899964, 166.44709263599975, 173.4420698739998, 181.85958195599983, 180.8443083059999, 160.87349652399985, 156.20398583399992, 156.10445666399983, 176.0836878839998, 186.01727467500018, 179.12572615600016, 170.70535601999995, 149.61244301999977, 155.6974107479998, 174.0482036179999, 175.97506164899983, 151.43873084399956, 145.4522491560001, 132.67160014599995, 155.58364723699992, 174.3575744279999, 176.3624071400002, 164.51400631599995, 147.9838722259999, 129.53125201199964, 143.93969862599988, 167.56757549999998, 178.00979283599986, 168.27320183999973, 153.7717127039998, 155.28574825299984, 165.84104765999973, 181.54054021499974, 182.15107860600006, 174.74991827100007, 166.04105837999964, 161.0725194270001, 162.188829252, 176.9908102679999, 178.6158378120001, 179.52733364600022, 167.76725153400002, 158.0301843479997, 161.0725194270001, 173.54727305499978, 173.64766510000004, 175.97506164899983, 175.06805825699962, 159.1466429579998, 153.16165075499976, 169.48927892999995, 174.3575744279999, 170.8055992799998, 149.9213613559998, 140.58324059400002, 140.48499142799983, 156.70061087199997, 177.80910773599976, 175.96174958799998, 156.00543790000006, 141.60237238800005, 133.08542910000006, 155.77138567800012, 173.84793435899996, 176.28419482200002, 167.76725153400002, 149.41403909999985, 157.9305658679998, 167.24634663599977, 178.29526308800018, 184.38409159599973, 172.11654445199997, 155.10143407600003, 160.87349652399985, 171.9254202479999, 181.85958195599983, 182.57262023599992, 179.82133528400004, 170.19952466400014, 163.8156187459997, 158.54059798199978, 173.0416496119999, 179.53087877099938, 179.83191490199965, 173.44739584099966, 156.31727387599994, 155.80688996599974, 171.11535616499964, 175.9831766939999, 165.84104765999973, 150.02008407599988, 138.36321069999985, 141.50355730799993, 162.5664702669999, 176.38859647600043, 171.8256316919999, 149.72340703599957, 148.80400698599988, 143.93969862599988, 155.39942241199992], \"power_mean\": 164.08981514797796, \"energy_millijoules\": 9399.78174045118, \"energy_joules\": 9.39978174045118, \"coremark_score\": 5237.613045, \"coremarks_per_mhz\": 3.2475279296875, \"ulpmark_cm_score\": 31.915634669364174}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1927.80871321, 1918.8584337480002, 1920.214749634, 1903.25673854, 1900.8219723399998, 1921.2487943550002, 1916.0452482199998, 1914.3146881599998, 1916.74957331, 1906.727033343, 1902.6460512800002, 1908.037519108, 1922.8407778, 1905.87770907, 1898.253129647, 1889.0087618250002, 1881.4237805599998, 1901.4832425959999, 1923.1221022800003], \"power_mean\": 1909.407316790842, \"energy_millijoules\": 9547.03658395421, \"energy_joules\": 9.54703658395421}}, \"1804800\": {\"active\": {\"elapsed_sec\": 51.188726699, \"elapsed_ns\": 51188726699, \"power_samples\": [168.38349045099994, 176.2880556460002, 195.75249934099998, 214.10354843599976, 205.7871378870002, 194.4358056479998, 188.963067465, 201.0260095479996, 215.7281183159996, 216.34496975399975, 212.88770863600007, 203.6612232, 191.90304874799972, 196.96827966600017, 197.8837307639999, 209.5401075479997, 215.2169430360002, 213.8993020409996, 204.57153568199988, 192.50888670000018, 194.02823947599995, 207.71462213999962, 210.65353228800018, 213.8993020409996, 212.37712688599981, 195.04565921100016, 193.72454838, 196.56311127000004, 211.56561589599983, 207.71462213999962, 191.2932250199999, 182.67873924900027, 170.10543866399962, 179.0279470529997, 207.71462213999962, 211.97143090799977, 205.38526798499993, 185.5182215479997, 168.78953372399997, 169.4995710720002, 198.59118087599995, 213.28944847800017, 204.26694778100023, 197.78263969199975, 191.90304874799972, 189.8756318840003, 206.3008991539998, 213.5926699209997, 211.574224275, 208.32444586799988, 192.20537372400008, 189.46773961199983, 200.92074348599976, 214.91013279599997, 219.57168718800017, 214.19844874499972, 207.1047984119998, 192.81510809999986, 193.52226098899996, 202.5429617719999, 212.37712688599981, 213.4902841959995, 209.83984832400006, 189.06347678299994, 188.05032463799967, 206.7991468279995, 212.98290570999984, 203.86035486700007, 186.22501739199993, 172.13993200399977, 175.3811404380001, 197.1728754809999, 212.98290570999984, 205.583663268, 192.7120067819999, 175.98694875000024, 180.24354925800003, 191.80173415800004, 212.274800636, 212.274800636, 200.819504586, 194.64032603600003, 189.8756318840003, 207.313620228, 213.4902841959995, 214.92105907099972, 204.1648237339998, 191.80173415800004, 199.40055900099946, 206.29542632400012, 209.7376412189999, 217.54646550599978, 212.17247438599975, 196.86864944099966, 191.094090714, 199.1976779959998, 214.0960333800001, 220.58221209399994, 213.89172785699952, 193.31945357899963, 189.7744066040002, 195.04360966699983, 212.5740070520003, 209.63595825299967, 194.94211665199987, 186.22501739199993, 168.89931718399998, 181.15516311099987, 205.88783482800022, 211.6764313799997, 204.26624033799976, 180.24354925800003, 167.68395226899975, 173.56437335399983, 193.42085728400002, 211.66506625999978, 207.20522842299965, 199.40055900099946, 185.11518953999962, 195.75428674599948, 213.09183638599984, 213.80707063600016, 211.77604146, 209.5401075479997, 192.00320497799999, 195.65328452599965, 208.21682191199966, 211.66506625999978, 216.93213254599982, 209.53375114799996, 204.67252938800016, 190.27890086799994, 193.92915811999978, 210.24563311199995, 213.80707063600016, 215.11107757500008, 212.274800636, 192.61287983699935, 188.2559444279998, 203.24994288300036, 207.81490328199993, 205.38018864899982, 196.66600572599987, 179.03497377600002, 173.05466490799995, 187.64629940400005, 206.70249459599995, 212.5740070520003, 202.33978395999998, 182.98237136099965, 170.31471406800006, 174.679108434, 191.3975149219998, 215.00860253999986, 214.3989575160001, 193.218569893, 194.0305916599998, 194.4379196110001, 209.2419367320001, 222.32567786799996, 207.41044999599967, 201.83539216799977, 189.8749196999995, 193.93164338600013, 211.96834663599998, 221.81768293399978, 213.7893124919999, 206.28990197999997, 195.55176167600007, 195.45075945600024, 204.57108310199987, 211.866545136, 214.29703767600017, 206.3919602999997, 199.60438249799995, 189.97617461999994, 195.45075945600024, 210.14339617200017, 209.32986107700003, 198.49086733800027, 181.46546631600017, 170.51474603700012, 185.01417251999987, 202.64434159500001, 213.38070144599965, 201.02239527599954, 184.10134062899965, 180.45126108099998, 180.2502200460001, 189.06347678299994, 215.2052955859997, 202.23793390000014, 191.80103623200034, 196.05639038400045, 199.60396155099966, 210.3559553069997, 222.01797644399971, 211.0619557560001, 199.80732302, 193.52446430400028, 195.9548378940001, 211.25692979400014, 212.26746428399997], \"power_mean\": 199.8891530278866, \"energy_millijoules\": 10232.071224439076, \"energy_joules\": 10.232071224439077, \"coremark_score\": 5861.321142, \"coremarks_per_mhz\": 3.247629178856383, \"ulpmark_cm_score\": 29.31957698686231}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1920.4053552750001, 1909.9130827440001, 1904.4433728, 1901.0191004279998, 1931.642132709, 1945.3201620539999, 1923.9181863239999, 1910.337300249, 1904.15599283, 1906.5811104000002, 1927.9915855739998, 1922.7918185160001, 1900.686946077, 1884.0650017660003, 1879.712361289, 1891.040108404, 1915.204696429, 1925.6475290049998, 1913.567975872], \"power_mean\": 1911.497043091842, \"energy_millijoules\": 9557.48521545921, \"energy_joules\": 9.55748521545921}}}}, \"4\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 191.298699458, \"elapsed_ns\": 191298699458, \"power_samples\": [87.96825538200005, 71.25604497099994, 72.4719442459998, 79.79772801600006, 88.47856737199982, 88.70403826599977, 84.83051361199978, 70.03615914099987, 65.81850534799992, 83.83693080099988, 92.13060807599982, 79.77132645099982, 64.46755311599986, 50.15207469999973, 72.56690763399979, 92.9612624859999, 87.2625494519998, 64.75226362799958, 52.67809694399989, 49.542072267999856, 64.24079714399977, 97.41183232599974, 88.67052681299992, 77.43472816299982, 64.75226362799958, 66.95792930800008, 91.2657696660001, 93.0596440920001, 99.78603870599977, 88.28660793099971, 65.11361565199991, 75.60879712099972, 98.02177524099989, 98.82070010799976, 94.88347991599994, 87.20016081299991, 76.92041671599986, 68.30905970199979, 71.67115522099971, 84.73446558199953, 84.63891010599968, 87.8725518839999, 94.14513502199998, 67.18828641200002, 66.90321907600014, 84.44681404599987, 82.01126723099992, 74.20224423599984, 66.23789924900007, 52.1127251219998, 49.5869308919996, 72.82970165699999, 85.08693505899987, 84.25521053999955, 78.36392625600001, 67.41393100099981, 44.06799815599993, 65.26717021499962, 93.05772703599996, 88.47856737199982, 75.89511188100005, 67.60436059099993, 70.41651633900005, 82.65009317199974, 97.32102603599992, 88.83254676599972, 78.32738501099993, 70.2651367799997, 67.96425719399986, 86.3646285960001, 96.92896403399982, 92.25543906299981, 86.46076574099993, 62.0729141559998, 65.683392916, 96.19593305099966, 103.68875873199977, 83.93294899600005, 69.14477920499985, 65.07746619599993, 81.91583028899981, 89.82327039699976, 79.86664505299996, 55.53152915699957, 46.92211325099993, 52.48963966999986, 75.09439636399998, 87.99842203499975, 80.37728281099976, 60.8200337159999, 48.138012525999784, 63.95666276599968, 71.934068862, 89.6313652230001, 85.7587018759998, 74.0116497959998, 82.62115047599968, 86.01200970800005, 88.094155021, 100.17247178299976, 90.11245012099994, 75.09439636399998, 71.76657827600002, 74.6175173879999, 83.0355630839997, 93.76014794599973, 91.3283493959998, 88.80029455599993, 66.4831286599997, 70.03615914099987, 79.57970658099998, 80.79548690599972, 93.6636537559998, 91.96662945499997, 71.48079845999973, 64.92385250499979, 74.33129197999983, 89.21414318999996, 90.78340895099973, 62.64180023599988, 49.35391180099964, 53.70958486399991, 70.09586529899957, 87.4882579409998, 84.54286207599989, 65.87315606299967, 49.86950279599978, 44.39623051599983, 59.69503547099998, 88.28660793099971, 83.93294899600005, 71.57622151499982, 61.00932228299962, 69.50369527199973, 92.7710126039999, 94.59431348399971, 86.01200970800005, 81.40537015099994, 66.103483332, 72.98241807599993, 99.14091239599998, 99.14091239599998, 93.95264148399974, 87.68065157099977, 73.4968187909999, 73.17289348199984, 75.92837944099983, 83.32303591599998, 89.50250720599979, 89.91981859099997, 87.71023613899979, 67.09310125699994, 71.57622151499982, 84.3512585699998, 84.44681404599987, 71.16065155599995, 56.27904879599987, 56.601245540000036, 66.42826955900023, 85.08319773199992, 85.08693505899987, 87.19735729699983, 74.29778643599957, 52.628077979999716, 56.88488674799987, 77.24383691600019, 89.50250720599979, 84.44681404599987, 65.87315606299967, 67.09310125699994, 74.42637370800003, 93.0596440920001, 91.13559891599994, 79.2566724559997, 65.49362976899965, 63.766590025999676, 76.95725468399974, 92.76882807599986, 91.74548216099993, 85.88492889300005, 67.07332168200014, 67.45332333399983, 90.33351893999975, 98.98681804700004, 92.35137924099968, 88.3200003500001, 67.31920448699975, 69.14477920499985, 82.52568385199993, 85.08693505899987, 78.26866682399987, 57.168527955999934, 47.94948730600004, 54.548153403000015, 76.25176980599986, 86.59036691999995, 78.49190519599983, 56.97959571299998, 49.021787083999925, 63.387419277999925, 70.36050035999983, 89.75643466800011, 86.07671017199982, 68.24959141799991, 78.96982333599976, 88.57430035799962, 85.27474172100005, 93.79542728099977, 87.2625494519998, 70.45537489599997, 72.1860750779997, 77.37214226099991, 83.54936861700003, 96.51245609099988, 86.49469310399991, 82.46061742000006, 68.34437710199995, 69.65531305199988, 78.07716590399991, 91.64957147099972, 89.02157132999992, 83.0355630839997, 69.55997930700005, 66.04801706800004, 79.99441599599982, 89.82399675299985, 92.57639366599983, 62.35735719599984, 53.42647801599969, 49.07142924899972, 66.6181517399998, 90.8469674280002, 85.88492889300005, 76.3474309559997, 48.37126921199979, 43.96883570099999, 63.86162639599979, 82.84407861199998, 95.2967349359999, 87.4882579409998, 64.41277062299991, 63.29238290799981, 85.3404514299998, 91.96842635099983, 99.40010169199991, 86.68653389999963, 71.42392046399982, 72.82970165699999, 87.83970614400005, 99.36016844400001, 97.12230965399976, 89.43922761999988, 77.65881326099998, 67.03404838300003, 64.79266633199973, 85.47087221999982, 91.03971790800006, 84.9571261619999, 74.52194554799985, 66.103483332, 76.95725468399974, 85.53211406399987, 78.172916364, 65.62819470799991, 51.22401815400008, 49.5869308919996, 76.28888995800003, 88.51201930799994, 82.84407861199998, 74.84545451599979, 55.38576197999987, 58.71037215599972, 81.30996269699995, 92.6723635259998, 86.07671017199982, 70.97035392299995, 63.57700465199969, 80.3447120620001, 88.9257791739999, 91.90511814000001, 81.34124086499969, 65.20874113699983, 66.42826955900023, 84.7649708219999, 96.51245609099988, 97.0908271259998, 80.3524456199998, 72.31501967399981, 67.07332168200014, 89.53554338499998, 100.38256485199986, 98.87720237999997, 82.74809025199988, 73.7255131559998, 66.71333689499988, 74.23572014000001, 84.15916250999999, 82.23829978799995, 58.42646347599975, 47.384878441999945, 51.829796978000104, 74.42637370800003, 90.27131332399995, 81.11816420700006, 66.23789924900007, 49.5869308919996, 47.47914105199993, 66.52296658499995, 82.97473665000007, 82.97473665000007, 74.46402834600008, 74.84545451599979, 80.70010913399983, 86.39852612399977, 93.69899256599979, 88.12748776999979, 78.77875431599978, 68.47862794799994, 75.45120369999972, 82.55660577999993, 86.39852612399977, 92.57639366599983, 87.51778322899963, 70.58926945999974, 66.74889227899985, 79.51620109099986, 84.31955359599988, 94.30514705199994, 90.0774482039999, 75.26043148699978, 69.69393338799978, 68.70393116599985, 81.34124086499969, 96.02973682099991, 79.80322833100013, 51.546868833999724, 51.03513569399979, 66.27379486599989, 86.72016337199989, 86.5260833389998, 61.46716497200009, 44.43843955599982, 44.2506945409998, 61.37221791199977, 88.73320731399963, 86.30235914399987, 71.1950186439999, 65.62819470799991, 62.26238049599988, 86.04653153199979, 87.74344985399989, 92.83256374199959, 81.95091572399997, 64.63896387299974, 65.20874113699983, 93.59888865099992, 97.34584854800005, 94.40170091200002, 88.82949324399988, 81.53260669199972, 67.45332333399983, 74.84545451599979, 84.38164555399976, 90.0491582159998, 89.24709001699989, 86.39852612399977, 67.64381259399988, 69.2744669629999, 88.03172510199988, 82.78270025999973, 76.28888995800003, 62.398116139999956, 53.18327317199987, 62.43851767599972, 83.20065242600003, 83.90224261599974, 80.73555080899996, 64.92385250499979, 50.14316528999984, 60.66808290099971, 78.30083617599985, 85.788791748, 81.4366778069998, 65.91317269199999, 67.2239896919998, 81.78847533999988, 95.75097921199995, 97.79753204999975, 76.86156369900004, 67.3585671379999, 67.64381259399988, 75.48795231599979, 90.36607969200008, 95.5475131559997, 89.24709001699989, 81.05394615299974, 67.81296542999985, 74.08211191099986, 100.79903391399989, 100.18935905499984, 86.72016337199989, 74.14014829999996, 67.4888630160001, 81.75949037999999, 89.15077425200002, 79.83875935799983, 61.69398147600009, 51.546868833999724, 52.48311170399984, 75.35557238499973, 94.20859319199985, 77.08547126099984, 54.07568840499994, 54.492653867999934, 56.83299639599977, 71.934068862, 90.39828303599984, 81.85495700399997, 68.00308490099997, 80.7666514409998, 89.91981859099997, 85.37476471499986, 91.67988421500013, 87.39255444299988, 75.87010634599983, 70.90923882799984, 76.67067245199996, 80.12587594999968, 88.18959230999985, 84.89521290799985, 76.98975063599983, 70.30357841199998, 73.66326932399988, 82.36512130799997, 92.79669057199976, 89.85278007299985, 75.90661674099988, 65.28800021500001, 80.06523967599992, 87.51778322899963, 87.42205024299983, 70.11328077899998, 43.55092030000014, 55.10229889199991, 76.09750798799973, 93.27817183799993, 84.89521290799985, 66.97807705199989, 40.928876603999925, 44.76622574000021, 70.71888206699987, 93.11725851599977, 88.95863664900003, 66.74889227899985, 64.1643120939998, 75.54683501499971, 86.6537190099998, 99.84363087599968, 90.10956219600007, 70.75672923799993, 63.84365856599993, 88.12748776999979, 103.03626113999985, 92.19103015600012, 87.55143089600006, 81.34124086499969, 67.07332168200014, 72.44814200399992, 83.58435199199994, 90.2701986840002, 87.42205024299983, 79.87393297699964, 71.13805129599996, 70.52852530599989, 81.98166011599983, 79.55164276599999, 65.66825270599975, 49.95434249999971, 48.36277521199986, 77.15343969599985, 89.18433247199982, 84.82939234199989, 75.73760722799966, 55.00813478400005, 49.76600387099984, 74.78325574599967, 90.0774482039999, 89.56423793699992, 77.12162541600014, 68.79877601999988, 73.62997095599985, 88.57386751600006, 99.52696844399998, 85.72683675599978, 73.75884116400016, 67.07332168200014, 69.31345715599969, 87.55143089600006, 94.33238583599973, 94.13971413600007, 82.20757589200002, 66.63286034399994, 61.354993107000155, 87.45517460600013, 101.54279297999983, 96.57371512100008, 85.21295489999989, 67.77419724000015, 64.44920072599984, 79.22917385099981, 84.41566110099984, 79.64751217599974, 59.494040541000004, 46.40319350999994, 53.18327317199987, 67.4888630160001, 87.74344985399989, 86.84567845099991, 60.28890075599975, 49.577665241999966, 49.86041526600002, 63.65346687599981, 87.86860903999991, 87.74344985399989, 75.20145943599982, 77.40838576800002, 83.87151097399965, 87.2625494519998, 96.1640052360001, 90.55833593999978, 76.19319897300011, 73.75884116400016, 72.35311944599971, 84.18998292000015, 89.66058334200011, 93.53420161600002, 76.00230772600003, 70.43310225100004, 70.94714551599986, 81.98166011599983, 90.68700387599961, 88.67018328099994, 70.24274548999983, 66.36852137999972, 80.80137946800005, 90.59109318599985, 89.8851919560002, 65.76294973199992, 42.659594555999774, 57.66953571099998, 78.94214661100023, 91.29257552399963, 77.82291803599992, 49.348770851999916, 41.16296463599974, 67.29831447599986, 77.53606891599998, 89.8851919560002, 77.21737587599978, 58.46421776399984, 63.87942346199975, 87.2963576279999, 91.10020063099978, 87.99842203499975, 84.63711805200023, 61.44999964199974, 78.62357256299993, 97.59569577199977, 95.03855484299993, 88.47804567799994, 83.10460439599979, 71.04259840600002, 73.05769767599963, 86.94190490599976, 86.43206624399977, 91.10020063099978, 85.21295489999989, 66.083365276, 72.77156103599987, 85.43882897999993, 85.43882897999993, 73.28196218800008, 63.084354819000055, 54.34655911799973, 61.5990047759999, 88.41006939299973, 86.33636274599985, 77.40838576800002, 69.31345715599969, 49.16049135100002, 60.09955306100005, 87.45517460600013, 86.33636274599985, 73.28196218800008, 68.19320437199963, 62.533554045999836, 83.74140500699991, 93.63075547599988, 86.68653389999963, 76.6438551719998, 64.9635713959999, 64.35407524099992, 87.26315564800007, 93.43764775599993, 91.61323223599993, 77.76275714700023, 67.01298025200003, 71.26667045999989, 94.55647907399998, 104.98564031599994, 89.59656046799978, 75.7157254939998, 66.083365276, 75.10628885599999, 91.709696786, 83.10460439599979, 60.519642003999934, 46.95930029199985, 57.99105078299999, 71.78102486999978, 90.61901612999964, 83.74140500699991, 53.32042351599989, 45.973839679999855, 56.35978823599976, 72.58096659599983, 91.5447403119997, 84.44533677300001, 69.35160104999977, 80.16113892099997, 91.07212979099995, 84.73446558199953, 88.69861152899989, 84.18998292000015, 71.36215298999991, 70.8521821280001, 77.02587495599983, 78.24082415599992, 90.30237234599986, 89.08349906999979, 77.02587495599983, 66.083365276, 81.40671445199973, 75.90661674099988, 91.42079782599967, 88.18959230999985, 71.78102486999978, 66.91819456799976, 76.07033446800006, 84.73325519700006, 92.73215240600007, 73.28196218800008, 45.13515224399998, 47.75333857399983, 76.0345078859998, 87.26315564800007, 79.45577335599978, 51.30749120500013, 40.31893886099965, 55.46668070800001, 75.62003450899988, 89.27569580099998, 82.9130008899997, 61.639525499, 64.1643120939998, 86.72016337199989, 89.40622127599977, 98.56133210799976, 78.97740958199984, 60.17678957599969, 80.38342784399993, 93.14848132399993, 95.25807983599998, 91.32433327600006, 85.53450279599974, 72.9368528709997, 68.22775133200003, 81.59819892399992, 86.55749255499995, 90.81139102299971, 88.98715366499982, 63.974061123999945, 63.55885870199995, 89.59656046799978, 83.51452038799971, 72.67650879599978, 61.26047378500016, 49.38884245200006, 56.58716933999972, 80.22661133999986, 82.84735907000004, 80.47935672899985, 69.95696567399978, 50.18710188, 64.77374873199983, 88.1215272569998, 90.81139102299971, 80.99280481200003, 71.36215298999991, 62.15389593199984, 83.0355630839997, 91.32433327600006, 88.73320731399963, 82.20757589200002, 67.4322377489998, 63.36866701200006, 89.50018522800019, 104.18249322999986, 91.80616133599983, 75.5568865109999, 64.90823585299995, 72.51885780399994, 93.24503518399979, 99.831713692, 84.25355549400001, 71.26667045999989, 65.70348265799976, 78.2727440409999, 88.47804567799994, 78.36809213099991, 54.76709280599971, 52.05049070799987, 56.49240089999989, 73.75884116400016, 85.76016848999984, 79.1974495070001, 49.80982127399989, 46.865491397999676, 60.840652355999964, 78.69029298999976, 86.3983299040001, 71.8180988759998, 74.1148173749998, 77.63135783599978, 89.94496219899975, 91.03971790800006, 91.22836341599987, 83.20065242600003, 72.29482995599983, 71.49497758199982, 79.617472593, 86.07734721799989, 95.38517362199968, 95.28899656999988, 75.84355751099997, 69.86154261899992, 76.96237067599986, 82.93957472399984, 92.63562838099983, 90.52258141499988, 71.49497758199982, 65.93233985799998, 78.91690769099978, 88.50641479799992], \"power_mean\": 76.9595242964654, \"energy_millijoules\": 14722.256908820184, \"energy_joules\": 14.722256908820183, \"coremark_score\": 1568.38963, \"coremarks_per_mhz\": 5.227965433333333, \"ulpmark_cm_score\": 20.377310480179734}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1920.449225939, 1915.0674537280001, 1889.415255845, 1884.5123199349998, 1885.248340304, 1899.852806448, 1921.712686725, 1917.548657048, 1904.1644544, 1905.146148666, 1915.7708221819998, 1917.499490358, 1925.1816086, 1918.2488138759998, 1910.714720542, 1903.5059170400002, 1902.19652983, 1914.457272592, 1917.8295042959999], \"power_mean\": 1908.8695804396841, \"energy_millijoules\": 9544.34790219842, \"energy_joules\": 9.544347902198421}}, \"652800\": {\"active\": {\"elapsed_sec\": 87.946233456, \"elapsed_ns\": 87946233456, \"power_samples\": [119.3225679300001, 132.9803135909999, 132.320017324, 115.96905192600002, 111.42521426599978, 97.94068100999993, 109.38564521600006, 127.03999923599963, 131.07767160799972, 132.78321890100005, 119.51785137599973, 104.01644085400017, 100.07906784599959, 118.30367382600002, 136.72124414999985, 131.7660765659998, 115.36392396600013, 113.85731259699992, 116.87089157499986, 121.14564654799983, 143.0643306689999, 141.4839538709998, 125.98497769599976, 117.18727005599999, 117.38231621199975, 132.88176624599987, 136.01789670599987, 134.803659681, 132.88176624599987, 113.15069772399988, 114.1496869409998, 140.68095746099993, 146.25640759599992, 143.91640902599988, 133.3922682960001, 118.49883862699994, 114.34443628999998, 135.11329473699993, 131.6675886959997, 118.20584057099995, 102.2207225279999, 95.85695490800003, 111.20908015799978, 129.4153541369999, 134.60638637099987, 125.35783779600001, 100.07906784599959, 97.84385941499977, 110.9171514059999, 122.35970545300006, 136.03168261799988, 121.35914164400015, 121.94620647599982, 130.04062442799977, 133.40721308399975, 138.80918477699993, 137.9395216439998, 130.84661996499972, 116.57816099099978, 123.16436493599986, 127.92276588599975, 130.35498275099985, 137.03462252099985, 137.95330884400005, 119.51785137599973, 116.99172249599974, 124.28041166100002, 126.15955283800008, 139.66060778099973, 137.85449376399993, 125.39684297600002, 115.77362370599985, 120.46077721199981, 129.96227869299992, 143.61966811399998, 128.33564141399984, 103.43472195799995, 95.22235764599986, 112.03423397899996, 138.15043226000012, 137.74245735599993, 117.5967911759999, 100.07906784599959, 92.08836945600024, 110.82017507399996, 135.8205044460001, 138.95663490599964, 126.61090188100002, 112.2288051659998, 115.36392396600013, 138.11890842000003, 142.1624340610001, 140.05509190299972, 129.84433191599965, 111.45002023500001, 118.71354821699992, 146.75154783599987, 142.30260534800004, 135.91920057599987, 136.32735364200016, 117.5967911759999, 114.65716026599989, 129.45174689199985, 132.37120452599993, 133.99733697599981, 133.09754780399976, 119.7362446799998, 115.16855502600015, 119.22467519999987, 131.879627412, 124.90689855599976, 114.46235178899997, 102.51140385599979, 100.80924016799986, 113.17493891399977, 132.19345094399955, 130.66568715199992, 121.14564654799983, 105.66874324499986, 96.4365351959998, 115.578696584, 141.79658949600025, 129.64803940399997, 126.41490617600016, 114.36469715399994, 113.27256390899993, 140.54845058, 142.0634998359999, 140.8621287819999, 130.453411146, 116.18768646199965, 116.28543040699992, 126.57260887600023, 144.12559465599998, 146.35563919599986, 137.85449376399993, 121.84819479600014, 112.56612773999996, 117.5412009209997, 146.35563919599986, 152.72710016199994, 131.2746473479997, 124.49384525499977, 115.48148357199989, 119.41995864600017, 130.4687710820001, 136.95369361200005, 123.30111635099979, 101.90232462599988, 96.84854636399996, 107.49155439099991, 118.42046139299987, 140.99014955999996, 129.15705581999987, 109.31436553699973, 97.77254823699991, 97.45756607699991, 117.40168589199993, 132.01522092000005, 136.8549081719998, 125.29865267600007, 123.27996446999964, 125.10277561599992, 139.75897528699966, 138.969499994, 143.48885417999986, 137.15075789999992, 123.67136226599996, 121.55516500399995, 123.47566336799991, 130.06070708800007, 138.66060705799987, 139.57840051999983, 132.39004026299972, 119.7362446799998, 117.10877718799998, 125.9036622279998, 132.50709577199973, 133.50531422799986, 139.06837454899983, 121.57688166399976, 114.79848699799982, 119.75451615199995, 135.8347373639997, 138.26624119199982, 114.07223404199999, 95.0550858749998, 100.30126012399978, 117.79239801599988, 139.06837454899983, 134.76982119599984, 122.77308539599994, 101.73641956200004, 89.97679771599974, 107.99914775000002, 131.07767160799972, 133.60392104799962, 126.31665640100005, 110.52824632199963, 110.43077011199989, 132.0610351099997, 136.4436082079999, 139.9430564679999, 132.90039344399997, 107.00591549599972, 118.931499024, 135.932956848, 145.14175841099973, 141.5001160559998, 136.4436082079999, 127.84495459499999, 116.40658402799977, 120.22485317099972, 134.21285140899977, 137.24954333999972, 136.64061297900003, 137.65737034799986, 117.81551096899989, 119.26575976499976, 136.4436082079999, 132.39004026299972, 121.35914164400015, 105.47476567199965, 95.24805438199996, 116.01599031199976, 129.05865726000002, 128.7639661879998, 130.63000657199996, 120.04787044799968, 95.15181815999972, 101.9300412, 125.92416114599996, 137.85449376399993, 124.39568479000013, 115.38376946199992, 113.75968760199999, 122.84890747400004, 141.35563632799995, 141.6109654039999, 128.43398049899997, 117.5225129129999, 116.30881024799987, 115.40723865499967, 131.07767160799972, 139.67730490999998, 137.05247905199963, 136.24609699799998, 116.03494579199969, 110.45165585599966, 131.28953278799986, 150.31238163299986, 146.35563919599986, 129.05865726000002, 119.24713402199973, 112.76131805999967, 121.67442040199967, 142.31829210599972, 130.3897717159998, 108.82828100799975, 103.84593209899981, 98.28459752800018, 109.72492293599998, 125.31534997199992, 133.50531422799986, 124.80870825599982, 104.35768381999992, 98.43406136699969, 101.03054869799985, 114.29139858000008, 140.5122096959999, 135.1311499379999, 120.77207681200002, 118.63832284799992, 130.158630722, 136.9186956899996, 138.8270708279997, 133.78607149200002, 129.3727178449999, 117.22951485699969, 120.77207681200002, 127.84495459499999, 126.4351967079997, 139.38109894199988, 133.11189829999967, 122.38130292599999, 115.21225201599964, 119.65656394699977, 127.74661550999986, 138.06855136199965, 135.44034056999976, 131.1910152779999, 115.91821653199986, 119.02939175400002, 133.42527565599994, 138.6733833779997, 126.23863748799977, 107.73356385599982, 99.01471037499982, 111.6690994999999, 137.262616772, 133.20999944399978, 120.96810017200005, 93.64853334799977, 92.01883953600009, 118.02951167399965, 130.68473025999992, 136.8549081719998, 127.03999923599963, 109.43308353599991, 116.93651680099993, 135.31012134599996, 141.51194206399987, 140.4670184239999, 129.17636581600004, 110.7687709889999, 127.84495459499999, 145.15649446799966, 144.4485706859998, 132.50709577199973, 134.22681602499983, 114.38858210400008, 116.30881024799987, 125.21763372399982, 130.78271306399984, 133.20999944399978, 136.24609699799998, 122.59426370399979, 115.40723865499967, 130.78271306399984, 132.30994141199994, 122.6923646939997, 111.76666501999989, 99.11165091999965, 100.42173752399981, 124.33516533999978, 138.53122110000004, 134.02998941600003, 125.41356991199973, 109.6274765610001, 96.17199677999997, 111.35248454999987, 140.9071691759998, 136.24609699799998, 122.79046568399986, 116.01599031199976, 113.66256324799997, 130.58624238999982], \"power_mean\": 124.22373964023907, \"energy_millijoules\": 10925.010007177827, \"energy_joules\": 10.925010007177827, \"coremark_score\": 3411.843647, \"coremarks_per_mhz\": 5.2264761749387265, \"ulpmark_cm_score\": 27.459929080421656}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1888.565094339, 1898.7007722480002, 1916.000715903, 1924.23871744, 1918.29325048, 1906.7025700380002, 1895.948994558, 1905.344225513, 1927.832531459, 1926.1963954399998, 1922.5475644, 1922.593617124, 1905.01409335, 1900.0610456000002, 1903.8922761499998, 1915.676259807, 1919.4147165120003, 1918.62139232, 1915.25388576], \"power_mean\": 1912.1525325495263, \"energy_millijoules\": 9560.762662747631, \"energy_joules\": 9.560762662747631}}, \"902400\": {\"active\": {\"elapsed_sec\": 63.596372268, \"elapsed_ns\": 63596372268, \"power_samples\": [165.18959638299998, 178.2443258359997, 179.5513893799996, 175.81763298599958, 166.71156752099978, 152.75211635599976, 157.705328796, 164.58952119900005, 171.26119787699986, 178.8529881410002, 176.93071730099996, 159.9367397489998, 156.39215563099992, 162.8718522119998, 167.23143838099986, 180.57455705699954, 176.729159451, 165.29830777200004, 153.75476353199997, 155.70601453599988, 171.16791752999984, 181.98936031599965, 164.68970498399995, 135.55632707999985, 141.62644377599986, 159.13819775499974, 173.59413580000023, 167.01983541000004, 144.05289933599965, 133.12987151999982, 142.23504656399973, 156.50285599599988, 176.32208467800024, 169.14542136400019, 155.07961273799992, 148.30118546399967, 158.5132220009998, 173.4780683460001, 180.262557066, 171.16071652199957, 159.537468752, 152.66100370799973, 167.62443076199975, 182.08987715199987, 183.30696369400016, 172.68222291299958, 168.83759906699993, 154.27162420499985, 163.88528531299994, 173.0896545359999, 175.5159911459998, 175.7174300459999, 162.1631845889999, 154.97990494799978, 165.70296031199996, 174.90741819299978, 164.48985117700022, 156.40305889599972, 137.27931273299987, 136.06614442799992, 163.5897384010002, 171.7786341689996, 169.14542136400019, 157.20721895999986, 139.10105399099984, 140.82030212000018, 161.76395155499995, 171.97304946000008, 165.70296031199996, 153.15807437999956, 151.1499062370001, 169.83997502399984, 174.70655531999978, 177.52849044800018, 165.49822109600018, 153.0584558999999, 146.28525933799983, 163.58533648899993, 182.49626743299973, 179.9698472489997, 167.53201091699975, 154.17245741899978, 154.0840688039998, 170.86689940199972, 188.15940023400003, 182.59734392799987, 171.5714017339999, 158.92895531599993, 156.9015326159997, 175.1141463659999, 173.0896545359999, 145.57745463200013, 143.7702106679999, 136.88494686699983, 147.69656047199965, 177.64032967599974, 175.81014144100004, 155.5845299399998, 138.49248103799982, 137.08212979999962, 144.7709868759996, 170.4653700839997, 176.23090391599976, 163.9894460150001, 161.96356807200004, 168.53693776299997, 175.1065540259999, 172.6882843359997, 175.50867772100014, 167.93243117899965, 155.38556655399998, 161.76395155499995, 168.53693776299997, 167.22412953399953, 179.1554960609999, 170.35841154899958, 157.71590565600013, 157.20721895999986, 166.40312092799968, 171.67194256400012, 177.23801031599965, 172.8889694359998, 160.14200497600018, 154.38972667599978, 161.772864066, 174.9127074659998, 177.64032967599974, 151.03816670800006, 129.60338395399958, 144.8697095959999, 171.37083566800015, 179.56273117199976, 168.84467070799997, 149.30640953999978, 127.46814682099989, 135.06356193299985, 159.338089525, 175.8188558899999, 169.75390496499972, 167.83258345299987, 150.64056043399978, 161.0500216439998, 175.91276527199966, 186.13561291500014, 174.30431321699984, 162.9854388409999, 148.92277060800006, 161.56382188499992, 185.3287999480001, 179.9698472489997, 177.84637488300018, 177.54000839600008, 162.2723108040002, 150.135642148, 160.855905636, 169.0455144680002, 170.45889290399987, 170.2584454829996, 154.4823886419997, 151.05034723199992, 167.7322210479997, 174.30431321699984, 157.516704591, 153.0584558999999, 141.13219383099977, 136.58891901899983, 158.03124803599985, 172.58938255599992, 167.33128610699987, 163.68497702299965, 157.217646951, 131.3261917079999, 150.64056043399978, 177.64032967599974, 177.03582309199942, 158.72963560599965, 154.59992624999973, 155.9941098249999, 169.73958297900003, 186.94528980400014, 177.1317583360003, 160.14200497600018, 155.90509695599962, 159.63741463700012, 176.226298456, 176.83517383599997, 172.4892684680001, 160.25151730799985, 150.45401431999994, 159.44320169100024, 181.18277826399958, 186.94798595399993, 172.38699873599967, 156.8084239320001, 148.21493630400005, 166.118652162, 177.23801031599965, 161.97254010000006, 142.35974070099996, 133.85063091799975, 139.82026911599996, 156.20397647599998, 176.12551953100024, 163.2853876649997, 148.7244004470001, 136.07886278799992, 131.83203234400003, 152.36265913199986, 173.1976279359999, 173.4990916559998, 155.80529985599992, 163.78959220799993, 176.12058649799997, 176.226298456, 181.07405893199962, 177.23801031599965, 169.24584324400007, 156.91858931100023, 157.92140925699982, 169.85703535199968, 170.15796412799978, 176.73391377999974, 174.51086268599988, 157.72214906399972, 153.67457881299993, 165.10252888799982, 171.48314193600004, 174.81250452599966, 175.01342691600007, 158.03124803599985, 151.26889930799962, 170.0643562079997, 178.2489674609999, 172.69001269600017, 138.113741161, 129.11144966999973, 154.0840688039998, 175.1151622460004, 169.95751670699997, 156.9015326159997, 130.32408361499984, 129.30842540999993, 153.67457881299993, 176.21999427600008, 169.45306495699947, 160.25151730799985, 146.29491841799995, 162.9768825699996, 172.4747224219998, 183.60603551400004, 171.38254143599966], \"power_mean\": 163.04363134328673, \"energy_millijoules\": 10368.983474834216, \"energy_joules\": 10.368983474834216, \"coremark_score\": 4718.464926, \"coremarks_per_mhz\": 5.228795352393616, \"ulpmark_cm_score\": 28.932440747746156}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1922.638829805, 1910.2082421690002, 1898.8542608999999, 1895.958408123, 1913.5260804599998, 1916.8875564070001, 1906.14330711, 1881.9360122849998, 1875.16386549, 1892.7793922399999, 1912.124508105, 1912.031320787, 1902.1193712, 1882.26896527, 1878.347186898, 1893.47723568, 1910.6741660159998, 1918.662446124, 1914.877326388], \"power_mean\": 1902.0357095503684, \"energy_millijoules\": 9510.178547751842, \"energy_joules\": 9.510178547751842}}, \"1056000\": {\"active\": {\"elapsed_sec\": 54.404472792, \"elapsed_ns\": 54404472792, \"power_samples\": [202.6291957560004, 211.90966069, 199.28278760000035, 192.5087080439996, 181.689210496, 181.99465538000027, 200.99987622000003, 206.861479636, 207.06613213599962, 202.41259977000004, 182.50038832199994, 181.28846655199982, 197.66163103799977, 215.95599592400026, 216.4540654519999, 199.07726502199944, 195.74086038600012, 185.12476581199985, 191.9004923459995, 207.56801667800005, 202.9253788479998, 183.50997117599968, 171.38254143599966, 166.52283059599972, 179.8684498160003, 204.43283040000028, 199.78742008999984, 190.38398829599987, 171.5837424359995, 162.18973422599993, 187.35130592999963, 197.15483244400025, 207.05205978599975, 200.89784754000016, 188.56358393999994, 197.35853256399992, 205.95954601200015, 205.15763135199973, 210.92265039599965, 204.33848859899967, 187.24993186499955, 190.07982051799968, 190.28246544599983, 196.55065129199988, 205.44115886399982, 205.94695895999962, 201.19640674799962, 186.84400410000012, 182.90401394399964, 197.35651381399998, 202.82054804799986, 207.46566078799992, 201.80450325900006, 186.84209691499996, 182.80129506599974, 199.28278760000035, 208.4736924450001, 208.5761078099997, 181.1848647029999, 163.697973348, 179.364549657, 193.20877676099985, 207.46566078799992, 199.38006618899976, 175.32083857600014, 163.08984700199971, 166.22234741199964, 193.9191210509996, 208.97934375599993, 206.25332360799962, 191.49468398099975, 179.56600614400008, 179.67011314399974, 208.08729563599968, 211.4036618759999, 205.55112254400024, 194.62357953600008, 180.68051891000027, 199.38006618899976, 214.33386046999954, 213.83195428800013, 208.2693869219995, 204.633087252, 191.49468398099975, 186.54049112400003, 195.63764551200006, 201.70241510399978, 202.31048178000015, 201.80450325900006, 205.3388922839997, 181.7929612139999, 188.56358393999994, 205.03261698799975, 198.56861370399952, 186.2398229480002, 170.77447475999975, 169.0547303789997, 180.98566605599967, 204.2403980179995, 202.20111225599953, 197.0535046919997, 187.752650184, 167.23441533300002, 184.21739828400018, 208.5761078099997, 210.1915028159999, 197.45787124799995, 184.6195297239999, 181.7929612139999, 198.56861370399952, 214.86371083200015, 213.83195428800013, 203.93082671299976, 191.4892858759997, 186.33832237799993, 189.8768946759999, 208.67253351600016, 210.49249177999968, 206.7507442640001, 182.09624390099975, 179.97264616799998, 200.388750588, 220.398334018, 215.04411334799966, 203.21663243199987, 184.92277522799964, 182.7022011329998, 195.63764551200006, 202.91457416399976, 196.64662675999966, 171.78588959199965, 162.98966321700004, 177.34295628599943, 193.61453877099962, 206.45322413599956, 199.89121168399993, 167.44133930800012, 165.22107981599947, 176.53715691999992, 193.51283749599975, 208.7691866910002, 201.4951089059998, 184.11429363599996, 195.53637692999996, 207.27025988599985, 207.07427747999986, 209.98087086600003, 201.70241510399978, 188.361564261, 189.47190338199994, 195.33279576000018, 199.5767159039999, 213.52443098399976, 206.45322413599956, 193.61453877099962, 188.66491373600024, 191.08887561599954, 204.02505025799996, 213.92353546299978, 210.2879485779997, 188.46250731099985, 184.6195297239999, 197.35016472600023, 203.7269957699998, 208.67253351600016, 186.33832237799993, 161.37746089999973, 171.98663381999972, 199.07468149299962, 204.02505025799996, 195.23152717800008, 169.46231995199992, 155.31358249200002, 178.3571151839999, 192.50414015599995, 205.03261698799975, 199.78071359399996, 177.2420584109998, 179.26708113599966, 195.53786073600008, 207.4787821999996, 215.46159582299947, 200.18469322800024, 181.99559689500006, 188.15863751099982, 208.8828286979999, 214.73641192399987, 216.4540654519999, 207.35869190599965, 200.89075516399976, 187.44895908800004, 192.49791092599958, 203.21663243199987, 203.91847725599996, 207.35869190599965, 204.2246637840001, 188.46250731099985, 190.27831409399982, 205.4365260789998, 196.94951669499983, 190.27777982099974, 174.3151165859997, 169.9658420180001, 183.4065477079996, 201.29510954199964, 204.4205908399997, 200.08318777199997, 190.78517051099948, 165.72171361399955, 172.19309300600003, 205.4365260789998, 205.23245784599953, 193.61453877099962, 182.80129506599974], \"power_mean\": 194.34018480891575, \"energy_millijoules\": 10572.975296828909, \"energy_joules\": 10.572975296828908, \"coremark_score\": 5516.02405, \"coremarks_per_mhz\": 5.223507623106061, \"ulpmark_cm_score\": 28.374226892403435}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1901.56679042, 1898.5308408879998, 1913.335923045, 1914.876785415, 1908.1539520959998, 1896.853294467, 1881.6772588019999, 1882.101353175, 1902.085616757, 1915.4813807670002, 1916.5586672800002, 1903.1097919400002, 1891.668708336, 1879.6182208279997, 1894.9824768659998, 1921.089732504, 1917.9601220999998, 1896.8939054520001, 1894.240991427], \"power_mean\": 1901.6203059244738, \"energy_millijoules\": 9508.101529622369, \"energy_joules\": 9.508101529622369}}, \"1401600\": {\"active\": {\"elapsed_sec\": 40.98437962, \"elapsed_ns\": 40984379620, \"power_samples\": [301.65966903199956, 290.04183004599986, 292.88990801099976, 294.77974263600004, 302.76175856899977, 298.6299570249996, 303.082380993, 299.44690406999985, 286.1156595240002, 286.08628212600047, 296.7044867779998, 295.2056859659999, 303.6881221739998, 303.0845031180004, 292.2822879419998, 281.9805463800001, 288.6781854499998, 293.78162365599997, 304.1543020679999, 306.0077669239997, 295.70703442800027, 282.55591740099976, 284.3008311779997, 299.02012983599957, 307.00420761400005, 295.41865763099963, 266.62354761199936, 254.71309936199964, 284.618958754, 301.5863260179997, 301.65966903199956, 292.24089797400006, 266.51818638200007, 254.2945722639995, 275.70915900399973, 292.5705330109997, 300.1614919740002, 297.4188663800003, 276.6072218359998, 273.89441931599936, 293.8130204749998, 308.43202676399983, 312.63382904399964, 293.749869429, 280.45168498299995, 283.1633587660001, 300.4485783870002, 307.71909304600035, 306.18260735599983, 302.7636132219998, 296.096985896, 282.16417154999976, 287.1186397140002, 295.99071463599944, 299.02012983599957, 300.3415508820001, 289.221891596, 279.1346083279998, 289.32838343599974, 298.4166290359997, 289.32838343599974, 282.27030634499965, 268.6244680559996, 256.40251735599963, 280.8155683319999, 294.92416750599955, 299.200159062, 291.35944236599994, 280.84760903599977, 260.9572289959999, 272.3628642360002, 299.23351695299993, 299.02012983599957, 285.79726505999975, 280.6039025399998, 280.3771169380004, 298.3044803380001, 314.8901105249995, 300.982618194, 282.98003070799973, 280.9531403799999, 279.6634513419997, 300.73151589099984, 306.57588982799984, 301.12533246, 297.31198765999966, 275.1546811009996, 279.1346083279998, 312.8485815509996, 319.61856503600006, 300.73151589099984, 291.14682663600047, 274.89401393599996, 286.5878662679995, 297.09877831599965, 295.99071463599944, 281.4228608279998, 264.987760276, 258.4307306359999, 279.4520228399999, 296.38448806600013, 294.28242443800013, 288.01097907100007, 264.987760276, 255.40131543599978, 275.2864720459995, 301.0182454799999, 299.59400492400005, 283.2407690839998, 290.4328041209999, 295.8132761999998, 301.8353117959998, 305.7938465579998, 303.54692021999995, 295.0994738760003, 284.6634069600002, 283.4813969899999, 297.31198765999966, 304.86442942599956, 305.18567556199946, 297.66915847299947, 282.76770183799977, 281.34500487599985, 291.64371664599935, 296.8486273400001, 306.7900487209997, 299.23351695299993, 282.52728231800006, 284.4179191800001, 295.030986556, 305.6864314359998, 300.62445874599985, 269.5193028450001, 255.90393123599983, 280.5299270519997, 290.3262528060002, 299.52060336599993, 292.9208592379998, 263.0681641460003, 251.34637790699958, 272.0464302600001, 286.6789796720002, 303.760782306, 303.260517036, 279.4246053459999, 277.10482593599977, 288.040861578, 301.8371916570002, 308.17917750599986, 298.80619416600007, 285.98048442000004, 281.6345861369998, 295.712095436, 311.9188247459999, 314.45200477199955, 301.5145112519997, 296.38448806600013, 281.02723412399996, 289.00945402799994, 299.4136056959999, 301.0182454799999], \"power_mean\": 290.46074413058994, \"energy_millijoules\": 11904.353402155784, \"energy_joules\": 11.904353402155785, \"coremark_score\": 7322.788518, \"coremarks_per_mhz\": 5.224592264554795, \"ulpmark_cm_score\": 25.200864747989787}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1926.729517922, 1931.3696046539999, 1921.971790152, 1919.3539686049999, 1900.543595815, 1904.883763541, 1914.502244545, 1923.0905473669998, 1905.3992966979997, 1887.193401004, 1876.877522142, 1887.709288228, 1906.7052373269998, 1922.388284554, 1913.987155454, 1890.3199272869997, 1882.4849845200001, 1880.003545189, 1896.296348851], \"power_mean\": 1904.8321065186842, \"energy_millijoules\": 9524.160532593422, \"energy_joules\": 9.524160532593422}}, \"1536000\": {\"active\": {\"elapsed_sec\": 37.370607017, \"elapsed_ns\": 37370607017, \"power_samples\": [359.93710526699965, 353.0580355029999, 338.13625066799955, 327.8410719259998, 327.94894174599926, 349.4229325550002, 347.9370120780002, 327.7326460759998, 317.8298301870002, 306.25437622000004, 325.1365653780001, 344.58141989499995, 343.8182872089999, 326.13112279999973, 312.377442321, 311.48943876599947, 326.91317503799996, 351.4103170860001, 344.0939793209998, 330.9773169769994, 338.02731898800016, 342.1566951120001, 344.11785588, 349.0950031230002, 342.53380433599955, 340.5111138609998, 331.537182798, 329.65880201999994, 337.20683888400004, 347.3297494169999, 346.01043517999983, 343.9742465859997, 330.6521498649997, 323.1027475689996, 337.2659144759998, 342.7638684210003, 349.87206807499956, 344.85731903100054, 331.97116213999993, 325.33240121099993, 331.10376055399934, 346.6746030329998, 347.39109485999984, 328.40176976099997, 300.7663428600001, 311.62477327600004, 345.57372154799964, 352.8814685489999, 335.3893762619998, 316.65787144199953, 302.69092210199983, 309.9568043310003, 332.4697013389998, 352.8392467319993, 340.72871540399933, 331.367927644, 324.59629058700034, 342.8104153679999, 348.38298106100024, 361.0348769489999, 347.9942405879999, 323.0210793660001, 325.5905512439997, 342.546088716, 358.67513001099974, 351.02187342, 343.1492344439996, 337.09793684400006, 325.2660971959997, 333.3544668000002, 343.0400350289999, 343.7563482359999, 348.60135437999975, 344.14550416099996, 326.5885422859999, 325.48221470400017, 344.14550416099996, 336.9402366840002, 324.3802917239998, 319.9268159609999, 308.92404707599985, 322.3059563700001, 345.36487117799993, 341.5029748559998, 339.0203332469998, 321.0288285559998, 303.86571374799973, 325.3744337360001, 346.783981068, 344.85731903100054, 331.537182798, 324.9874055159996, 327.12941158000035, 348.48292929600007, 356.08074945400017, 350.6861434320001, 327.29949870599944, 327.08320303599953, 328.7266694010002, 343.65738487600015, 357.3550754360001, 349.3740682959999, 337.4381805749997, 325.440767586, 331.988199957, 351.1910848259997, 359.27821661099983, 346.9540244460002, 336.0558925509997, 324.6630402359999, 328.79179371600026, 343.31999138599963, 344.5660268539998, 314.263596046, 310.45635514799983, 312.33942012400007, 324.77134713600003, 345.5218995959997, 338.9744690979994, 316.0806125759998, 310.2417212859998, 308.10256693599945, 331.32047167599944, 342.1207102359997, 341.56524027599994, 329.398788321, 340.1255696759997, 341.72125473599976, 350.904635396, 348.05514039700006, 346.4465882039997, 343.4910702569998, 333.4188998999996, 332.8119648119998, 340.8999475359999, 349.98106290099963, 351.5753828919999, 349.48359511600006, 333.63584870099953, 325.04997968799967, 336.50506858799986, 343.42922063599985, 349.7625114199998, 345.5218995959997, 329.29079996699943, 325.1816150679999, 337.82366625799955], \"power_mean\": 335.6493773690067, \"energy_millijoules\": 12543.42097715788, \"energy_joules\": 12.543420977157881, \"coremark_score\": 8031.268405, \"coremarks_per_mhz\": 5.228690367838541, \"ulpmark_cm_score\": 23.91692031594197}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1885.242073638, 1890.700113856, 1910.111337734, 1921.1251431599999, 1910.9997735480001, 1897.4671807000002, 1894.852744564, 1911.841875852, 1917.9982654780001, 1922.764368198, 1908.9920392400002, 1900.3144921179999, 1894.248533772, 1909.3197619720002, 1919.3043824800002, 1922.482063766, 1915.7081013, 1897.5645, 1899.2413046899999], \"power_mean\": 1906.8567397929473, \"energy_millijoules\": 9534.283698964737, \"energy_joules\": 9.534283698964737}}, \"1612800\": {\"active\": {\"elapsed_sec\": 35.58663207, \"elapsed_ns\": 35586632070, \"power_samples\": [352.4011067509998, 364.1795793179997, 362.4724462040001, 353.8352518019999, 345.80126149199964, 329.07426661800014, 344.7581444760001, 367.80562750700005, 363.62879108399943, 364.89225276400043, 353.88995433000014, 327.4738722889999, 336.44564154800014, 374.3584277309999, 373.0940685959997, 357.2995999799998, 349.32540845799963, 343.5384498860001, 366.43362993899996, 379.599397836, 367.59051038899975, 351.68502866199947, 351.2470078679996, 347.22986167199974, 364.45218250999983, 376.831383468, 368.19505904399944, 357.906445716, 343.82798823599956, 354.4419785040002, 376.1711214300001, 383.322573012, 368.79793846799953, 353.28304892400024, 353.99915634800004, 358.1263920660001, 366.98533388400006, 367.095753414, 346.40810722799984, 333.6960772680002, 337.4381805749997, 350.1468690029999, 374.4200452679995, 364.6722176369997, 349.92825839400007, 334.797518224, 335.0146447980003, 352.84467134799957, 369.57049071400047, 364.5619172520003, 356.1482793759999, 362.4724462040001, 367.8669913619999, 367.6986624779995, 378.3276908759997, 373.5306266119999, 351.2470078679996, 351.13792438399946, 358.89666984599967, 363.5726739119998, 371.3319828899996, 372.2102733569993, 357.79703650600027, 346.1898525539998, 353.2324906340002, 357.2995999799998, 370.11734648800007, 374.5186801719999, 361.7028712580002, 349.65983181000024, 346.4159370769996, 371.0513349360001, 375.0151688960002, 361.20573127600005, 333.4790693389998, 330.5779703669998, 357.68706333099976, 374.36029142799975, 369.1842741079997, 348.98606766100033, 327.4270708409997, 323.4738860159998, 356.970333772, 373.19895432399994, 367.47833054399985, 352.9544064280001, 349.70908580399987, 358.3457744509999, 372.59222762199965, 379.9241986149998, 367.3678813739996, 352.07821402000013, 346.5743590479999, 367.25743220399977, 384.6950373899997, 375.6179300639999, 368.85322553200035, 360.8231845399994, 349.2158518029994, 353.4514575669998, 365.71728217999976, 367.1475494399999, 369.68049201200006, 366.654641548, 343.65738487600015, 349.8186720989995, 371.16142489200024, 359.5569448859999, 345.97159787999976, 342.945895438, 334.75221768599954, 342.8458030199997, 367.86007980399995, 367.69511886199984, 363.51908583, 344.0460647479997, 335.6850026839995, 357.3577077710004, 370.779978584, 369.07373562800035, 356.86266761699994, 346.29926042400007, 347.4481754739993, 374.8567478319999, 382.95242582399965, 368.63640850499974, 347.0716184049995, 348.88774366699977, 355.7607867319996, 366.7616647739999, 376.7204581079998, 373.80568102600023, 348.287273874, 345.86219000999995, 369.12878447100024, 380.84430653999993, 372.97746084399955, 365.33133486799966, 346.46492153799977, 350.3715285659998], \"power_mean\": 358.551312484607, \"energy_millijoules\": 12759.633635605307, \"energy_joules\": 12.759633635605308, \"coremark_score\": 8434.310776, \"coremarks_per_mhz\": 5.229607375992064, \"ulpmark_cm_score\": 23.511646851901812}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1894.811001596, 1891.6867040360003, 1905.0706195280002, 1920.2888388989998, 1927.946485124, 1916.034576024, 1893.83216412, 1903.019600625, 1915.6594415399998, 1928.766336456, 1928.4833587500002, 1920.184746444, 1910.574701232, 1901.6655044699999, 1900.782077582, 1917.7569293899999, 1921.8124818749998, 1920.3727291379998, 1919.066515228], \"power_mean\": 1912.5165690556316, \"energy_millijoules\": 9562.582845278159, \"energy_joules\": 9.56258284527816}}, \"1804800\": {\"active\": {\"elapsed_sec\": 31.810851446, \"elapsed_ns\": 31810851446, \"power_samples\": [430.0781924959995, 442.21647291600016, 447.16705713600027, 429.1700063109995, 395.5210038160001, 418.3973540949994, 431.0985579789997, 440.8892083200001, 429.2829676609997, 403.05008898400024, 388.5347193, 423.61419, 441.1539253499998, 441.3816175529994, 430.4179258349998, 413.33213949199967, 425.8414181739997, 443.95872605999944, 446.1542133100004, 442.05727026099953, 421.388030546, 431.13792806399965, 455.9316947519999, 452.7930407729998, 440.54746670400004, 440.54746670400004, 420.47669722900014, 421.6855912640001, 434.5026991540001, 438.73601833, 443.57183237000004, 425.31623695600024, 420.518501924, 435.711652664, 442.25617478399977, 425.95917094599986, 417.6463529519999, 404.68304271600005, 412.72568084599993, 435.9345421200003, 434.0823746660001, 437.902164288, 430.64519170499966, 401.61730137300015, 413.71357680899996, 441.9430421859995, 434.87809542900027, 427.62112284599993, 417.45248034799965, 420.97054939199984, 442.7489414250001, 447.0882203469994, 436.882482666, 421.99025910600017, 420.1378960530003, 425.4662858439999, 443.4575746549997, 446.02533893600025, 437.97225920999995, 416.81813756999986, 420.2510231580002, 453.3954172289998, 456.1899531519996, 438.39454360199966, 439.6033189919997, 424.3703832570002, 424.29827559599994, 441.9066715319998, 431.74033416, 411.29194368599997, 400.89872732399976, 407.17093567000006, 430.26541619600016, 442.6272390659999, 431.13792806399965, 404.57065953599954, 405.0190396079995, 412.7694458080002, 436.87800816000004, 446.8116046419998, 431.5523973119996, 426.56545088799953, 436.2002468580001, 442.67197635599973, 443.01389667599983, 443.6535343859998, 430.6844427559997, 427.0548660359998, 423.1616673420001, 430.79752263999967, 444.1000178380002, 444.70233516600024, 433.9691172720002, 423.8048688460001, 421.6144633759998, 431.6266417500003, 446.1391587360001, 442.88745795399996, 423.2026402859999, 422.29202007499975, 435.3285003989997, 447.6119009959996, 439.26166614399995, 417.91389080399927, 400.67495274, 411.8254935110001, 439.52224185599994, 441.79305892399975, 423.65528213099947, 399.8488903159998, 397.42785169600006, 424.3703832570002, 444.4742275109995, 440.5844021790001, 429.35833913600004, 415.0738702879996, 425.5066355759998, 446.5644143760003, 450.52058286099987, 439.63635078599987, 423.7320309559998, 423.35268980000023, 449.91436243600015, 452.07258547000015, 441.6788606839998], \"power_mean\": 430.2063138201679, \"energy_millijoules\": 13685.229140064619, \"energy_joules\": 13.685229140064619, \"coremark_score\": 9436.03938, \"coremarks_per_mhz\": 5.228301961436171, \"ulpmark_cm_score\": 21.921445152988024}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1903.391708694, 1906.888946186, 1908.5718616929998, 1920.4231777380003, 1926.421700721, 1919.066515228, 1907.122643998, 1900.920456615, 1907.2162818280003, 1919.012546178, 1922.9203056000001, 1926.1913515239999, 1911.551969734, 1900.130068813, 1905.397214832, 1917.005466695, 1926.380471884, 1920.129849098, 1906.004894418], \"power_mean\": 1913.4077595514211, \"energy_millijoules\": 9567.038797757106, \"energy_joules\": 9.567038797757107}}, \"2016000\": {\"active\": {\"elapsed_sec\": 28.46909926, \"elapsed_ns\": 28469099260, \"power_samples\": [526.7246977440002, 518.766061567, 504.03303307500005, 511.01427095099984, 546.419731406, 534.3311805820001, 520.9170172040006, 508.34396500000025, 507.01903319200005, 522.495119772, 526.3589750359995, 508.2270369319997, 492.76732682399984, 488.02805120399967, 500.13538453800015, 527.566978776, 522.140991516, 500.3690716200001, 490.58441311699994, 490.8408706859998, 512.9594511360003, 531.7969722, 526.0151938079996, 516.5690764699996, 523.4546535299999, 529.1444282129999, 524.7375278040001, 536.479674984, 529.9726100189998, 510.6430444119999, 511.8550088200002, 520.68131199, 527.5252549250001, 534.5818912799998, 527.581612446, 510.40834826399964, 509.21888853599944, 519.6074516359997, 524.0722591739998, 531.8105667060001, 529.8783946360002, 507.4247031359994, 507.19018476099995, 527.4734472059997, 540.268475226, 522.140991516, 487.8194753790001, 487.8194753790001, 518.14750518, 528.9857364510001, 520.56315642, 502.47485888799997, 477.2891052560001, 496.3947637679996, 522.7468248510002, 533.3740061849996, 513.5472355710001, 493.86226599299994, 501.71472587999983, 530.2091465259998, 538.0904882039997, 528.6564400659997, 523.5847005119997, 506.10051329600014, 519.6074516359997, 543.5276835359998, 536.9976614699997, 529.391193061, 528.3014206259998, 511.98667794599965, 516.9396795599998, 523.927145853, 525.8858883359997, 525.8967406680001, 523.3486984909998, 505.4753259399997, 512.7244581810003, 526.4877914639999, 522.0227466359995, 512.4753760209999, 501.0125289519999, 489.1873896219997, 509.3697743260002, 529.7828732429996, 529.1539892109997, 521.9045017559995, 514.1531879399997, 488.9112310759999, 500.27321313599964, 531.92867895, 524.3346974399999, 506.4328814510002, 506.0613288119996, 510.15803979599946, 532.7305455959997, 539.147387627, 524.3089275539999, 506.4518116060001, 499.1826799060002, 519.6356694019998, 536.403476666, 534.475814015, 521.4482291340003, 507.2885987779998, 510.44491045200016, 532.5437606319995, 542.932475111, 526.2514926360002, 524.2058800809998, 513.565254636, 510.9151444539996, 528.3156383439998], \"power_mean\": 517.766634010241, \"energy_millijoules\": 14740.349697153642, \"energy_joules\": 14.740349697153642, \"coremark_score\": 10544.444835, \"coremarks_per_mhz\": 5.230379382440477, \"ulpmark_cm_score\": 20.352298701429717}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1883.2648311359999, 1904.604098427, 1914.992878871, 1916.6731878800001, 1902.22844083, 1882.841929815, 1888.478035904, 1920.4943911999999, 1920.5882295819997, 1909.5916728, 1894.537162348, 1898.639376886, 1911.089372898, 1922.471285361, 1922.3260180799998, 1912.4821814910001, 1900.5034272, 1899.98878791, 1920.4943911999999], \"power_mean\": 1906.6468263062632, \"energy_millijoules\": 9533.234131531315, \"energy_joules\": 9.533234131531316}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm6115/second/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 250 ms\nBaseline power usage: 1879 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 614 864 1017 1305 1420 1612 1804\n\n 300:   974     3.2 C/MHz     34 mW   10.6 J   28.4 I/mJ   308.0 s\n 614:  1995     3.2 C/MHz     62 mW    9.4 J   32.0 I/mJ   150.4 s\n 864:  2806     3.2 C/MHz     79 mW    8.4 J   35.7 I/mJ   106.9 s\n1017:  3305     3.2 C/MHz     92 mW    8.3 J   36.0 I/mJ    90.8 s\n1305:  4240     3.2 C/MHz    123 mW    8.7 J   34.4 I/mJ    70.8 s\n1420:  4614     3.2 C/MHz    135 mW    8.8 J   34.1 I/mJ    65.0 s\n1612:  5238     3.2 C/MHz    164 mW    9.4 J   31.9 I/mJ    57.3 s\n1804:  5861     3.2 C/MHz    200 mW   10.2 J   29.3 I/mJ    51.2 s\n\n\n===== CPU 4 =====\nFrequencies: 300 652 902 1056 1401 1536 1612 1804 2016\n\n 300:  1568     5.2 C/MHz     77 mW   14.7 J   20.4 I/mJ   191.3 s\n 652:  3412     5.2 C/MHz    124 mW   10.9 J   27.5 I/mJ    87.9 s\n 902:  4718     5.2 C/MHz    163 mW   10.4 J   28.9 I/mJ    63.6 s\n1056:  5516     5.2 C/MHz    194 mW   10.6 J   28.4 I/mJ    54.4 s\n1401:  7323     5.2 C/MHz    290 mW   11.9 J   25.2 I/mJ    41.0 s\n1536:  8031     5.2 C/MHz    336 mW   12.5 J   23.9 I/mJ    37.4 s\n1612:  8434     5.2 C/MHz    359 mW   12.8 J   23.5 I/mJ    35.6 s\n1804:  9436     5.2 C/MHz    430 mW   13.7 J   21.9 I/mJ    31.8 s\n2016: 10544     5.2 C/MHz    518 mW   14.7 J   20.4 I/mJ    28.5 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm6115/second/uptime.txt",
    "content": " 23:22:19 up 28 min,  load average: 0.82, 0.88, 0.98\n"
  },
  {
    "path": "results/sm6115/second/versions.txt",
    "content": "Kernel: Linux version 4.19.152-perf (mamles@af6f0d3b6e63) (clang version 14.0.0 (https://github.com/llvm/llvm-project.git 08f70adedb775ce6d41a1f8ad75c4bac225efb5b)) #1 SMP PREEMPT Wed Mar 16 19:33:28 WIB 2022\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm6125/main/cmdline.txt",
    "content": "rcupdate.rcu_expedited=1 rcu_nocbs=0-7 console=ttyMSM0,115200n8 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 androidboot.selinux=permissive lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 swiotlb=1 earlycon=msm_geni_serial,0x4a90000 loop.max_part=7 cgroup.memory=nokmem,nosocket buildvariant=user isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=1824407e-9782-b35a-add2-e957f246f452 androidboot.bootdevice=4804000.ufshc androidboot.serialno=REDACTED androidboot.hwversion=10.39.0 androidboot.hwlevel=MP androidboot.hwc=Global28 board_id=S88512DA1 androidboot.baseband=msm msm_drm.dsi_display0=dsi_s6e8fco_samsung_hdp_video_display: androidboot.bootreason=WARM-RESET androidboot.secureboot=1 androidboot.dp=0x0 androidboot.slot_suffix=_b skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=0\n"
  },
  {
    "path": "results/sm6125/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 4 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x801\nCPU revision\t: 4\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xa\nCPU part\t: 0x800\nCPU revision\t: 2\n\nHardware\t: Qualcomm Technologies, Inc SM6125\n"
  },
  {
    "path": "results/sm6125/main/device.txt",
    "content": "Model: QRD;\nCompatible: qcom,trinket-qrd;qcom,trinket;qcom,qrd;\n"
  },
  {
    "path": "results/sm6125/main/kernel.log",
    "content": "[    0.000000] [<0>][0, swapper]Booting Linux on physical CPU 0x0\n[    0.000000] [<0>][0, swapper]Linux version 4.14.210-20210102-1539-ReZero (diepquynh@lolicon) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project f502b14d40e751fe00afc493ef0d08f196524886)) #1 SMP PREEMPT Sat Jan 2 15:49:39 +07 2021\n[    0.000000] [<0>][0, swapper]Boot CPU: AArch64 Processor [51af8014]\n[    0.000000] [<0>][0, swapper]Powerup reason=0x40141\n[    0.000000] [<0>][0, swapper]Machine: Qualcomm Technologies, Inc. trinket pm6125 + pmi632 QRD\n[    0.000000] [<0>][0, swapper]mem-offine node not found in FDT\n[    0.000000] [<0>][0, swapper]Reserved memory: created CMA memory pool at 0x00000000fec00000, size 16 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] [<0>][0, swapper]Reserved memory: created CMA memory pool at 0x00000000fcc00000, size 32 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] [<0>][0, swapper]Reserved memory: created CMA memory pool at 0x00000000fc800000, size 4 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node sdsp_region, compatible id shared-dma-pool\n[    0.000000] [<0>][0, swapper]Reserved memory: created CMA memory pool at 0x00000000fc000000, size 8 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] [<0>][0, swapper]Reserved memory: created CMA memory pool at 0x00000000f3400000, size 140 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] [<0>][0, swapper]Reserved memory: created CMA memory pool at 0x000000013fc00000, size 4 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] [<0>][0, swapper]Removed memory: created DMA memory pool at 0x0000000045700000, size 6 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node hyp_region@45700000, compatible id removed-dma-pool\n[    0.000000] [<0>][0, swapper]Removed memory: created DMA memory pool at 0x0000000045e00000, size 1 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node xbl_aop_mem@45e00000, compatible id removed-dma-pool\n[    0.000000] [<0>][0, swapper]Removed memory: created DMA memory pool at 0x0000000045fff000, size 0 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node sec_apps_region@45fff000, compatible id removed-dma-pool\n[    0.000000] [<0>][0, swapper]Removed memory: created DMA memory pool at 0x0000000046000000, size 2 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node smem@46000000, compatible id removed-dma-pool\n[    0.000000] [<0>][0, swapper]Removed memory: created DMA memory pool at 0x0000000046200000, size 73 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node removed_region@46200000, compatible id removed-dma-pool\n[    0.000000] [<0>][0, swapper]Removed memory: created DMA memory pool at 0x000000004ab00000, size 5 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node camera_region@4ab00000, compatible id removed-dma-pool\n[    0.000000] [<0>][0, swapper]Removed memory: created DMA memory pool at 0x000000004b000000, size 126 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node modem_region@4b000000, compatible id removed-dma-pool\n[    0.000000] [<0>][0, swapper]Removed memory: created DMA memory pool at 0x0000000052e00000, size 5 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node pil_video_region@52e00000, compatible id removed-dma-pool\n[    0.000000] [<0>][0, swapper]Removed memory: created DMA memory pool at 0x0000000053300000, size 2 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node wlan_msa_region@53300000, compatible id removed-dma-pool\n[    0.000000] [<0>][0, swapper]Removed memory: created DMA memory pool at 0x0000000053500000, size 30 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node cdsp_regions@53500000, compatible id removed-dma-pool\n[    0.000000] [<0>][0, swapper]Removed memory: created DMA memory pool at 0x0000000055300000, size 34 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node pil_adsp_region@55300000, compatible id removed-dma-pool\n[    0.000000] [<0>][0, swapper]Removed memory: created DMA memory pool at 0x0000000057500000, size 0 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node ips_fw_region@57500000, compatible id removed-dma-pool\n[    0.000000] [<0>][0, swapper]Removed memory: created DMA memory pool at 0x0000000057510000, size 0 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node ipa_gsi_region@57510000, compatible id removed-dma-pool\n[    0.000000] [<0>][0, swapper]Removed memory: created DMA memory pool at 0x0000000057515000, size 0 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node gpu_region@57515000, compatible id removed-dma-pool\n[    0.000000] [<0>][0, swapper]Reserved memory: created DMA memory pool at 0x000000005e400000, size 20 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node qseecom_region@5e400000, compatible id shared-dma-pool\n[    0.000000] [<0>][0, swapper]Removed memory: created DMA memory pool at 0x000000005f800000, size 30 MiB\n[    0.000000] [<0>][0, swapper]OF: reserved mem: initialized node cdsp_sec_regions@5f800000, compatible id removed-dma-pool\n[    0.000000] [<0>][0, swapper]On node 0 totalpages: 953768\n[    0.000000] [<0>][0, swapper]  DMA zone: 10807 pages used for memmap\n[    0.000000] [<0>][0, swapper]  DMA zone: 0 pages reserved\n[    0.000000] [<0>][0, swapper]  DMA zone: 691624 pages, LIFO batch:31\n[    0.000000] [<0>][0, swapper]  Normal zone: 4096 pages used for memmap\n[    0.000000] [<0>][0, swapper]  Normal zone: 262144 pages, LIFO batch:31\n[    0.000000] [<0>][0, swapper]psci: probing for conduit method from DT.\n[    0.000000] [<0>][0, swapper]psci: PSCIv1.0 detected in firmware.\n[    0.000000] [<0>][0, swapper]psci: Using standard PSCI v0.2 function IDs\n[    0.000000] [<0>][0, swapper]psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] [<0>][0, swapper]psci: SMC Calling Convention v1.1\n[    0.000000] [<0>][0, swapper]random: fast init done\n[    0.000000] [<0>][0, swapper]random: get_random_bytes called from start_kernel+0x94/0x518 with crng_init=1\n[    0.000000] [<0>][0, swapper]percpu: Embedded 19 pages/cpu s48920 r0 d28904 u77824\n[    0.000000] [<0>][0, swapper]pcpu-alloc: s48920 r0 d28904 u77824 alloc=19*4096\n[    0.000000] [<0>][0, swapper]pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] [<0>][0, swapper]CPU features: enabling workaround for Kryo2xx Silver erratum 845719\n[    0.000000] [<0>][0, swapper]CPU features: kernel page table isolation forced ON by KASLR\n[    0.000000] [<0>][0, swapper]CPU features: detected: Kernel page table isolation (KPTI)\n[    0.000000] [<0>][0, swapper]Built 1 zonelists, mobility grouping on.  Total pages: 938865\n[    0.000000] [<0>][0, swapper]Kernel command line: rcupdate.rcu_expedited=1 rcu_nocbs=0-7 console=ttyMSM0,115200n8 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 androidboot.selinux=permissive lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 swiotlb=1 earlycon=msm_geni_serial,0x4a90000 loop.max_part=7 cgroup.memory=nokmem,nosocket buildvariant=user isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=1824407e-9782-b35a-add2-e957f246f452 androidboot.bootdevice=4804000.ufshc androidboot.serialno=REDACTED androidboot.hwversion=10.39.0 androidboot.hwlevel=MP androidboot.hwc=Global28 board_id=S88512DA1 androidboot.baseband=msm msm_drm.dsi_display0=dsi_s6e8fco_samsung_hdp_video_display: androidboot.bootreason=WARM-RESET androidboot.secureboot=1 androidboot.dp=0x0 androidboot.slot_suffix=_b skip_initramfs rootwait ro init=/init androidboot\n[    0.000000] [<0>][0, swapper]log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] [<0>][0, swapper]log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] [<0>][0, swapper]log_buf_len min size: 131072 bytes\n[    0.000000] [<0>][0, swapper]log_buf_len: 1048576 bytes\n[    0.000000] [<0>][0, swapper]early log buf free: 122004(93%)\n[    0.000000] [<0>][0, swapper]PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] [<0>][0, swapper]Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] [<0>][0, swapper]Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] [<0>][0, swapper]software IO TLB: mapped [mem 0xfffbf000-0xfffff000] (0MB)\n[    0.000000] [<0>][0, swapper]Memory: 3422452K/3815072K available (22014K kernel code, 3438K rwdata, 7880K rodata, 6144K init, 10894K bss, 183724K reserved, 208896K cma-reserved)\n[    0.000000] [<0>][0, swapper]SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] [<0>][0, swapper/0]Preemptible hierarchical RCU implementation.\n[    0.000000] [<0>][0, swapper/0]\tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] [<0>][0, swapper/0]\tAll grace periods are expedited (rcu_expedited).\n[    0.000000] [<0>][0, swapper/0]\tTasks RCU enabled.\n[    0.000000] [<0>][0, swapper/0]NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] [<0>][0, swapper/0]GICv3: no VLPI support, no direct LPI support\n[    0.000000] [<0>][0, swapper/0]GICv3: CPU0: found redistributor 0 region 0:0x000000000f300000\n[    0.000000] [<0>][0, swapper/0]NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] [<0>][0, swapper/0]\tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] [<0>][0, swapper/0]arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] [<0>][0, swapper/0]clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] [<0>][0, swapper/0]sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000014] [<0>][0, swapper/0]clocksource: Switched to clocksource arch_sys_counter\n[    0.002333] [<0>][0, swapper/0]Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.002347] [<0>][0, swapper/0]pid_max: default: 32768 minimum: 301\n[    0.002457] [<0>][0, swapper/0]Security Framework initialized\n[    0.002465] [<0>][0, swapper/0]SELinux:  Initializing.\n[    0.002528] [<0>][0, swapper/0]SELinux:  Starting in permissive mode\n[    0.002576] [<0>][0, swapper/0]Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.002588] [<0>][0, swapper/0]Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.014187] [<0>][1, swapper/0]ASID allocator initialised with 32768 entries\n[    0.016273] [<0>][1, swapper/0]Hierarchical SRCU implementation.\n[    0.026838] [<0>][1, swapper/0]MSM Memory Dump base table set up\n[    0.026854] [<0>][1, swapper/0]MSM Memory Dump apps data table set up\n[    0.026997] [<0>][1, swapper/0]scm_call failed: func id 0x42000404, ret: -1, syscall returns: 0x0, 0x0, 0x0\n[    0.027000] [<0>][1, swapper/0]Core Debug Lock unlock failed, ret: -5\n[    0.029504] [<0>][1, swapper/0]smp: Bringing up secondary CPUs ...\n[    0.039691] [<1>][0, swapper/1]GICv3: CPU1: found redistributor 1 region 0:0x000000000f320000\n[    0.039749] [<1>][0, swapper/1]CPU1: Booted secondary processor [51af8014]\n[    0.049863] [<2>][0, swapper/2]GICv3: CPU2: found redistributor 2 region 0:0x000000000f340000\n[    0.049912] [<2>][0, swapper/2]CPU2: Booted secondary processor [51af8014]\n[    0.060003] [<3>][0, swapper/3]GICv3: CPU3: found redistributor 3 region 0:0x000000000f360000\n[    0.060049] [<3>][0, swapper/3]CPU3: Booted secondary processor [51af8014]\n[    0.070965] [<4>][0, swapper/4]CPU features: enabling workaround for ARM erratum 858921\n[    0.070999] [<4>][0, swapper/4]SSBD disabled by kernel configuration\n[    0.071007] [<4>][0, swapper/4]CPU features: enabling workaround for Speculative Store Bypass Disable\n[    0.071043] [<4>][0, swapper/4]CPU features: Unsupported CPU feature variation detected.\n[    0.071079] [<4>][0, swapper/4]GICv3: CPU4: found redistributor 100 region 0:0x000000000f380000\n[    0.071120] [<4>][0, swapper/4]arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.071147] [<4>][0, swapper/4]arch_timer: CPU4: Trapping CNTVCT access\n[    0.071167] [<4>][0, swapper/4]CPU4: Booted secondary processor [51af8002]\n[    0.081513] [<5>][0, swapper/5]GICv3: CPU5: found redistributor 101 region 0:0x000000000f3a0000\n[    0.081553] [<5>][0, swapper/5]arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.081578] [<5>][0, swapper/5]arch_timer: CPU5: Trapping CNTVCT access\n[    0.081596] [<5>][0, swapper/5]CPU5: Booted secondary processor [51af8002]\n[    0.091915] [<6>][0, swapper/6]GICv3: CPU6: found redistributor 102 region 0:0x000000000f3c0000\n[    0.091956] [<6>][0, swapper/6]arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.091980] [<6>][0, swapper/6]arch_timer: CPU6: Trapping CNTVCT access\n[    0.091998] [<6>][0, swapper/6]CPU6: Booted secondary processor [51af8002]\n[    0.102341] [<7>][0, swapper/7]GICv3: CPU7: found redistributor 103 region 0:0x000000000f3e0000\n[    0.102382] [<7>][0, swapper/7]arch_timer: Enabling local workaround for ARM erratum 858921\n[    0.102406] [<7>][0, swapper/7]arch_timer: CPU7: Trapping CNTVCT access\n[    0.102424] [<7>][0, swapper/7]CPU7: Booted secondary processor [51af8002]\n[    0.102677] [<0>][1, swapper/0]smp: Brought up 1 node, 8 CPUs\n[    0.102685] [<0>][1, swapper/0]SMP: Total of 8 processors activated.\n[    0.102691] [<0>][1, swapper/0]CPU features: detected: GIC system register CPU interface\n[    0.102693] [<0>][1, swapper/0]CPU features: detected: 32-bit EL0 Support\n[    0.121974] [<0>][1, swapper/0]CPU: All CPU(s) started at EL1\n[    0.122030] [<0>][15, migration/0]alternatives: patching kernel code\n[    0.122305] [<0>][1, swapper/0]scm_enable_mem_protection: SCM call failed\n[    0.122954] [<0>][1, swapper/0]devtmpfs: initialized\n[    0.167866] [<0>][1, swapper/0]Registered cp15_barrier emulation handler\n[    0.167884] [<0>][1, swapper/0]Registered setend emulation handler\n[    0.168124] [<0>][1, swapper/0]clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.168135] [<0>][1, swapper/0]futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.174089] [<0>][1, swapper/0]pinctrl core: initialized pinctrl subsystem\n[    0.174680] [<0>][1, swapper/0]NET: Registered protocol family 16\n[    0.176206] [<0>][1, swapper/0]schedtune: configured to support 6 boost groups\n[    0.177796] [<0>][1, swapper/0]cpuidle: using governor menu\n[    0.177815] [<0>][1, swapper/0]cpuidle: using governor qcom\n[    0.177934] [<0>][1, swapper/0]NET: Registered protocol family 42\n[    0.182238] [<0>][1, swapper/0]vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.182248] [<0>][1, swapper/0]hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.183342] [<0>][1, swapper/0]DMA: preallocated 256 KiB pool for atomic allocations\n[    0.186261] [<0>][1, swapper/0]exit: IPA_USB init success!\n[    0.186639] [<0>][1, swapper/0]pstore: using zlib compression\n[    0.186683] [<0>][1, swapper/0]console [pstore-1] enabled\n[    0.186686] [<0>][1, swapper/0]pstore: Registered ramoops as persistent store backend\n[    0.186690] [<0>][1, swapper/0]ramoops: attached 0x100000@0x61600000, ecc: 4/0\n[    0.187769] [<0>][1, swapper/0]msm-sn-fuse 1b46134.snfuse: SN interface initialized\n[    0.187871] [<0>][1, swapper/0]msm-secboot-fuse 1b40458.secbootfuse: Secboot-fuse interface initialized\n[    0.187978] [<0>][1, swapper/0]msm-cpufeature-id 1b44180.cpufeatureid: Cpu-feature-id interface initialized\n[    0.191086] [<0>][1, swapper/0]unable to find DT imem DLOAD mode node\n[    0.192642] [<0>][1, swapper/0]unable to find DT imem EDLOAD mode node\n[    0.194612] [<0>][1, swapper/0]platform 6080000.qcom,mss: assigned reserved memory node modem_region@4b000000\n[    0.194914] [<0>][1, swapper/0]msm_watchdog f017000.qcom,wdt: wdog absent resource not present\n[    0.195199] [<0>][1, swapper/0]msm_watchdog f017000.qcom,wdt: MSM Watchdog Initialized\n[    0.195616] [<0>][1, swapper/0]sps:sps is ready.\n[    0.196355] [<0>][1, swapper/0]platform ab00000.qcom,lpass: assigned reserved memory node pil_adsp_region@55300000\n[    0.196499] [<0>][1, swapper/0]platform b300000.qcom,turing: assigned reserved memory node cdsp_regions@53500000\n[    0.196643] [<0>][1, swapper/0]platform soc:mem_dump: assigned reserved memory node mem_dump_region\n[    0.198039] [<0>][1, swapper/0]platform soc:qcom,smem: assigned reserved memory node smem@46000000\n[    0.198414] [<0>][1, swapper/0]platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.198790] [<0>][1, swapper/0]qcom_glink_rpm soc:rpm-glink: failed to register early notif -22\n[    0.199351] [<0>][1, swapper/0]msm_glink soc:qcom,glink: [probe_subsystem]: no qcom,glink-label for wdsp\n[    0.199875] [<0>][1, swapper/0]platform 46d00000.qseecom: assigned reserved memory node qseecom_region@5e400000\n[    0.201979] [<0>][1, swapper/0]platform soc:qcom,ipa_fws: assigned reserved memory node ips_fw_region@57500000\n[    0.202068] [<0>][1, swapper/0]platform 5ae0000.qcom,venus: assigned reserved memory node pil_video_region@52e00000\n[    0.204293] [<0>][1, swapper/0]trinket-pinctrl 400000.pinctrl: invalid resource\n[    0.204962] [<0>][75, kworker/0:1]qcom_smd_rpm_probe: RPM-SMD running version 0\n[    0.207872] [<0>][78, kworker/u16:1]spmi spmi-0: PMIC arbiter version v5 (0x50010000)\n[    0.211058] [<0>][78, kworker/u16:1]LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.252250] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=0 freq=300000000 virtual_corner=0 open_loop_voltage=588\n[    0.252259] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=1 freq=614400000 virtual_corner=1 open_loop_voltage=588\n[    0.252267] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=2 freq=864000000 virtual_corner=2 open_loop_voltage=608\n[    0.252274] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=3 freq=1017600000 virtual_corner=3 open_loop_voltage=636\n[    0.252281] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=4 freq=1305600000 virtual_corner=4 open_loop_voltage=716\n[    0.252288] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=5 freq=1420800000 virtual_corner=5 open_loop_voltage=748\n[    0.252294] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=6 freq=1612800000 virtual_corner=6 open_loop_voltage=836\n[    0.252301] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=7 freq=1804800000 virtual_corner=7 open_loop_voltage=920\n[    0.252308] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=8 freq=1804800000 virtual_corner=7 open_loop_voltage=920\n[    0.252315] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=9 freq=1804800000 virtual_corner=7 open_loop_voltage=920\n[    0.252322] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=10 freq=1804800000 virtual_corner=7 open_loop_voltage=920\n[    0.252328] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=11 freq=1804800000 virtual_corner=7 open_loop_voltage=920\n[    0.252336] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=0 freq=300000000 virtual_corner=0 open_loop_voltage=588\n[    0.252342] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=1 freq=652800000 virtual_corner=1 open_loop_voltage=588\n[    0.252348] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=2 freq=902400000 virtual_corner=2 open_loop_voltage=620\n[    0.252355] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=3 freq=1056000000 virtual_corner=3 open_loop_voltage=648\n[    0.252361] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=4 freq=1401600000 virtual_corner=4 open_loop_voltage=732\n[    0.252367] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=5 freq=1536000000 virtual_corner=5 open_loop_voltage=764\n[    0.252375] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=6 freq=1804800000 virtual_corner=6 open_loop_voltage=852\n[    0.252381] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=7 freq=2016000000 virtual_corner=7 open_loop_voltage=920\n[    0.252387] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=8 freq=2016000000 virtual_corner=7 open_loop_voltage=920\n[    0.252394] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=9 freq=2016000000 virtual_corner=7 open_loop_voltage=920\n[    0.252401] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=10 freq=2016000000 virtual_corner=7 open_loop_voltage=920\n[    0.252408] [<0>][1, swapper/0]clk: clk_osm_read_lut: index=11 freq=2016000000 virtual_corner=7 open_loop_voltage=920\n[    0.252529] [<0>][1, swapper/0]clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu0\n[    0.252731] [<0>][1, swapper/0]clk: add_opp: Set OPP pair (1804800000 Hz, 920000 uv) on cpu0\n[    0.252774] [<0>][1, swapper/0]clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu1\n[    0.252970] [<0>][1, swapper/0]clk: add_opp: Set OPP pair (1804800000 Hz, 920000 uv) on cpu1\n[    0.253013] [<0>][1, swapper/0]clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu2\n[    0.253207] [<0>][1, swapper/0]clk: add_opp: Set OPP pair (1804800000 Hz, 920000 uv) on cpu2\n[    0.253265] [<0>][1, swapper/0]clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu3\n[    0.253468] [<0>][1, swapper/0]clk: add_opp: Set OPP pair (1804800000 Hz, 920000 uv) on cpu3\n[    0.253513] [<0>][1, swapper/0]clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu4\n[    0.253717] [<0>][1, swapper/0]clk: add_opp: Set OPP pair (2016000000 Hz, 920000 uv) on cpu4\n[    0.253760] [<0>][1, swapper/0]clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu5\n[    0.253958] [<0>][1, swapper/0]clk: add_opp: Set OPP pair (2016000000 Hz, 920000 uv) on cpu5\n[    0.254017] [<0>][1, swapper/0]clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu6\n[    0.254212] [<0>][1, swapper/0]clk: add_opp: Set OPP pair (2016000000 Hz, 920000 uv) on cpu6\n[    0.254259] [<0>][1, swapper/0]clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu7\n[    0.254457] [<0>][1, swapper/0]clk: add_opp: Set OPP pair (2016000000 Hz, 920000 uv) on cpu7\n[    0.254991] [<0>][1, swapper/0]sched-energy: Sched-energy-costs installed from DT\n[    0.255297] [<0>][1, swapper/0]cpufreq: driver osm-cpufreq up and running\n[    0.255299] [<0>][1, swapper/0]clk: clk_cpu_osm_driver_probe: OSM CPUFreq driver inited\n[    0.259499] [<0>][1, swapper/0]KPI: Bootloader start count = 85427\n[    0.259502] [<0>][1, swapper/0]KPI: Bootloader end count = 126520\n[    0.259504] [<0>][1, swapper/0]KPI: Bootloader display count = 3638055919\n[    0.259506] [<0>][1, swapper/0]KPI: Bootloader load kernel count = 3401131773\n[    0.259509] [<0>][1, swapper/0]KPI: Kernel MPM timestamp = 142520\n[    0.259511] [<0>][1, swapper/0]KPI: Kernel MPM Clock frequency = 32768\n[    0.259526] [<0>][1, swapper/0]socinfo_print: v0.15, id=394, ver=1.0, raw_id=266, raw_ver=0, hw_plat=11, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65581, pmic_die_revision=65537 foundry_id=3 serial_number=3661159501 num_pmics=2 chip_family=0x64 raw_device_family=0x9 raw_device_number=0x1 nproduct_id=0x411 num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xc ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.259582] [<0>][1, swapper/0]Minidump: Enabled with max number of regions 200\n[    0.262157] [<0>][1, swapper/0]arm-smmu 59a0000.kgsl-smmu: Couldn't get clock: gcc_gpu_memnoc_gfx_clk\n[    0.262638] [<0>][1, swapper/0]AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.262642] [<0>][1, swapper/0]arm-smmu c600000.apps-smmu: Bus client registration failed\n[    0.262969] [<0>][1, swapper/0]vgaarb: loaded\n[    0.263208] [<0>][1, swapper/0]qcom,qpnp-misc 1c40000.qcom,spmi:qcom,pm6125@0:qcom,misc@900: probe successful\n[    0.263632] [<0>][1, swapper/0]SCSI subsystem initialized\n[    0.263702] [<0>][1, swapper/0]usbcore: registered new interface driver usbfs\n[    0.263717] [<0>][1, swapper/0]usbcore: registered new interface driver hub\n[    0.263820] [<0>][1, swapper/0]usbcore: registered new device driver usb\n[    0.264071] [<0>][1, swapper/0]usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.264311] [<0>][1, swapper/0]touch tp_dev: touch info interface ready\n[    0.264535] [<0>][1, swapper/0]qcom,qpnp-power-on 1c40000.qcom,spmi:qcom,pmi632@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from CBL (External Power Supply) and 'warm' boot\n[    0.264558] [<0>][1, swapper/0]qcom,qpnp-power-on 1c40000.qcom,spmi:qcom,pmi632@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from SOFT (Software)\n[    0.264709] [<0>][1, swapper/0]qcom,qpnp-power-on 1c40000.qcom,spmi:qcom,pm6125@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'warm' boot\n[    0.264730] [<0>][1, swapper/0]qcom,qpnp-power-on 1c40000.qcom,spmi:qcom,pm6125@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.264955] [<0>][1, swapper/0]input: qpnp_pon as /devices/platform/soc/1c40000.qcom,spmi/spmi-0/spmi0-00/1c40000.qcom,spmi:qcom,pm6125@0:qcom,power-on@800/input/input0\n[    0.265944] [<0>][1, swapper/0]media: Linux media interface: v0.10\n[    0.265960] [<0>][1, swapper/0]Linux video capture interface: v2.00\n[    0.274731] [<0>][1, swapper/0]platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@5e400000\n[    0.274809] [<0>][1, swapper/0]platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.274952] [<0>][1, swapper/0]platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.275083] [<0>][1, swapper/0]platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node sdsp_region\n[    0.275276] [<0>][1, swapper/0]ION heap system created\n[    0.275377] [<0>][1, swapper/0]ION heap qsecom created at 0x000000005e400000 with size 1400000\n[    0.275381] [<0>][1, swapper/0]ION heap qsecom_ta created at 0x00000000fec00000 with size 1000000\n[    0.275384] [<0>][1, swapper/0]ION heap secure_heap created\n[    0.275391] [<0>][1, swapper/0]ION heap secure_display created at 0x00000000f3400000 with size 8c00000\n[    0.305806] [<0>][1, swapper/0]platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x5f800000, size 0x1e00000\n[    0.305808] [<0>][1, swapper/0]ION heap secure_carveout created\n[    0.305813] [<0>][1, swapper/0]ION heap adsp created at 0x00000000fc800000 with size 400000\n[    0.307929] [<0>][1, swapper/0]PMIC@SID2: PMI632 v2.0 options: 0, 0, 0, 0\n[    0.308042] [<0>][1, swapper/0]PMIC@SID0: PM6125 v1.1 options: 0, 0, 0, 0\n[    0.308854] [<0>][1, swapper/0]AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.308857] [<0>][1, swapper/0]ipa ipa3_pre_init:6472 fail to register with bus mgr!\n[    0.308951] [<0>][1, swapper/0]ipa ipa3_plat_drv_probe:8106 ipa3_init failed\n[    0.310968] [<0>][1, swapper/0]SDAM base=0xb600 size=128 registered successfully\n[    0.311222] [<0>][1, swapper/0]Advanced Linux Sound Architecture Driver Initialized.\n[    0.311471] [<0>][1, swapper/0]Bluetooth: Core ver 2.22\n[    0.311493] [<0>][1, swapper/0]NET: Registered protocol family 31\n[    0.311496] [<0>][1, swapper/0]Bluetooth: HCI device and connection manager initialized\n[    0.311502] [<0>][1, swapper/0]Bluetooth: HCI socket layer initialized\n[    0.311505] [<0>][1, swapper/0]Bluetooth: L2CAP socket layer initialized\n[    0.311520] [<0>][1, swapper/0]Bluetooth: SCO socket layer initialized\n[    0.312838] [<0>][1, swapper/0]NetLabel: Initializing\n[    0.312840] [<0>][1, swapper/0]NetLabel:  domain hash size = 128\n[    0.312841] [<0>][1, swapper/0]NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\n[    0.312871] [<0>][1, swapper/0]NetLabel:  unlabeled traffic allowed by default\n[    0.312975] [<0>][1, swapper/0]pcie:pcie_init.\n[    0.320206] [<0>][75, kworker/0:1]qcom-clk-smd-rpm soc:qcom,rpmcc: Registered RPM clocks\n[    0.320407] [<0>][75, kworker/0:1]pm6125_s3_level: Bringing 1uV into 16-16uV\n[    0.320646] [<0>][75, kworker/0:1]pm6125_s3_floor_level: Bringing 1uV into 16-16uV\n[    0.321044] [<0>][75, kworker/0:1]pm6125_s3_level_ao: Bringing 1uV into 16-16uV\n[    0.321407] [<0>][75, kworker/0:1]pm6125_s5_level: Bringing 1uV into 16-16uV\n[    0.321593] [<0>][75, kworker/0:1]pm6125_s5_floor_level: Bringing 1uV into 16-16uV\n[    0.321996] [<0>][75, kworker/0:1]pm6125_s5_level_ao: Bringing 1uV into 16-16uV\n[    0.323334] [<0>][75, kworker/0:1]pm6125_l4: regulator get failed, ret=-517\n[    0.324314] [<0>][75, kworker/0:1]pm6125_l4: supplied by pm6125_l7\n[    0.325980] [<0>][75, kworker/0:1]pm6125_l15: supplied by pm6125_l10\n[    0.328959] [<0>][75, kworker/0:1]LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=0 ldo_voltage=5500mV ncp_voltage=5500mV bst_voltage=5650mV\n[    0.329033] [<0>][75, kworker/0:1]sched-energy energy-costs: cpu=0 eff=1024 [freq=300000 cap=96 power_d0=12] -> [freq=1804800 cap=574 power_d0=172]\n[    0.329039] [<0>][75, kworker/0:1]sched-energy energy-costs: cpu=1 eff=1024 [freq=300000 cap=96 power_d0=12] -> [freq=1804800 cap=574 power_d0=172]\n[    0.329044] [<0>][75, kworker/0:1]sched-energy energy-costs: cpu=2 eff=1024 [freq=300000 cap=96 power_d0=12] -> [freq=1804800 cap=574 power_d0=172]\n[    0.329050] [<0>][75, kworker/0:1]sched-energy energy-costs: cpu=3 eff=1024 [freq=300000 cap=96 power_d0=12] -> [freq=1804800 cap=574 power_d0=172]\n[    0.329056] [<0>][75, kworker/0:1]sched-energy energy-costs: cpu=4 eff=1638 [freq=300000 cap=153 power_d0=211] -> [freq=2016000 cap=1024 power_d0=3391]\n[    0.329062] [<0>][75, kworker/0:1]sched-energy energy-costs: cpu=5 eff=1638 [freq=300000 cap=153 power_d0=211] -> [freq=2016000 cap=1024 power_d0=3391]\n[    0.329068] [<0>][75, kworker/0:1]sched-energy energy-costs: cpu=6 eff=1638 [freq=300000 cap=153 power_d0=211] -> [freq=2016000 cap=1024 power_d0=3391]\n[    0.329073] [<0>][75, kworker/0:1]sched-energy energy-costs: cpu=7 eff=1638 [freq=300000 cap=153 power_d0=211] -> [freq=2016000 cap=1024 power_d0=3391]\n[    0.329076] [<0>][75, kworker/0:1]sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.342189] [<0>][75, kworker/0:1]gcc-trinket 1400000.qcom,gcc: Registered GCC clocks\n[    0.343527] [<0>][75, kworker/0:1]gpu_cc_gx_gfx3d_clk_src: set OPP pair(320000000 Hz: 64 uV) on 5900000.qcom,kgsl-3d0\n[    0.343675] [<0>][75, kworker/0:1]gpu_cc_gx_gfx3d_clk_src: set OPP pair(950000000 Hz: 416 uV) on 5900000.qcom,kgsl-3d0\n[    0.343770] [<0>][75, kworker/0:1]gpu_cc-trinket 5990000.qcom,gpupcc: Registered GPU CC clocks\n[    0.344406] [<0>][75, kworker/0:1]video_cc-trinket 5b00000.qcom,videocc: Registered Video CC clocks\n[    0.344659] [<0>][75, kworker/0:1]arm-smmu 59a0000.kgsl-smmu: \tnon-coherent table walk\n[    0.344662] [<0>][75, kworker/0:1]arm-smmu 59a0000.kgsl-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.344666] [<0>][75, kworker/0:1]arm-smmu 59a0000.kgsl-smmu: \tstream matching with 4 register groups\n[    0.346327] [<0>][75, kworker/0:1]AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.346332] [<0>][75, kworker/0:1]arm-smmu c600000.apps-smmu: Bus client registration failed\n[    0.346968] [<0>][75, kworker/0:1]AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.346971] [<0>][75, kworker/0:1]ipa ipa3_pre_init:6472 fail to register with bus mgr!\n[    0.347028] [<0>][75, kworker/0:1]ipa ipa3_plat_drv_probe:8106 ipa3_init failed\n[    0.349813] [<0>][75, kworker/0:1]disp_cc-trinket 5f00000.qcom,dispcc: Registered Display CC clocks\n[    0.350343] [<0>][75, kworker/0:1]AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.350347] [<0>][75, kworker/0:1]arm-smmu c600000.apps-smmu: Bus client registration failed\n[    0.350904] [<0>][75, kworker/0:1]AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.350907] [<0>][75, kworker/0:1]ipa ipa3_pre_init:6472 fail to register with bus mgr!\n[    0.350948] [<0>][75, kworker/0:1]ipa ipa3_plat_drv_probe:8106 ipa3_init failed\n[    0.351686] [<0>][1, swapper/0]clocksource: Switched to clocksource arch_sys_counter\n[    0.395877] [<0>][1, swapper/0]VFS: Disk quotas dquot_6.6.0\n[    0.395913] [<0>][1, swapper/0]VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.397685] [<0>][1, swapper/0]mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.397805] [<0>][1, swapper/0]mdss_pll 5e94400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.397812] [<0>][1, swapper/0]mdss_pll 5e94400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.397817] [<0>][1, swapper/0]mdss_pll 5e94400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.399530] [<0>][1, swapper/0]dsi_pll_clock_register_14nm: Registered DSI PLL ndx=0 clocks successfully\n[    0.400176] [<0>][1, swapper/0]msm_bus_fabric_init_driver\n[    0.405745] [<0>][1, swapper/0]msm_bus_dev_init_qos: Skipping QOS init for 26\n[    0.405803] [<0>][1, swapper/0]msm_bus_device 1880000.ad-hoc-bus: Bus scaling driver probe successful\n[    0.407109] [<0>][1, swapper/0]NET: Registered protocol family 2\n[    0.407401] [<0>][1, swapper/0]TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.407538] [<0>][1, swapper/0]TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.407831] [<0>][1, swapper/0]TCP: Hash tables configured (established 32768 bind 32768)\n[    0.407910] [<0>][1, swapper/0]UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.407961] [<0>][1, swapper/0]UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.408106] [<0>][1, swapper/0]NET: Registered protocol family 1\n[    0.408121] [<0>][1, swapper/0]PCI: CLS 0 bytes, default 128\n[    0.408872] [<0>][75, kworker/0:1]arm-smmu c600000.apps-smmu: \tnon-coherent table walk\n[    0.408875] [<0>][75, kworker/0:1]arm-smmu c600000.apps-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.408879] [<0>][75, kworker/0:1]arm-smmu c600000.apps-smmu: \tstream matching with 54 register groups\n[    0.411498] [<0>][75, kworker/0:1]iommu: Adding device 4ac0000.qcom,qupv3_0_geni_se:qcom,iommu_qupv3_0_geni_se_cb to group 0\n[    0.411610] [<0>][75, kworker/0:1]iommu: Adding device 4cc0000.qcom,qupv3_1_geni_se:qcom,iommu_qupv3_1_geni_se_cb to group 1\n[    0.420449] [<0>][75, kworker/0:1]ipa ipa3_smp2p_probe:7956 fail to get smp2p clk resp bit -517\n[    0.421024] [<0>][75, kworker/0:1]iommu: Adding device soc:ipa_smmu_ap to group 2\n[    0.421193] [<0>][75, kworker/0:1]iommu: Adding device soc:ipa_smmu_wlan to group 3\n[    0.421316] [<0>][75, kworker/0:1]iommu: Adding device soc:ipa_smmu_uc to group 4\n[    0.421425] [<0>][75, kworker/0:1]ipa ipa3_smp2p_probe:7956 fail to get smp2p clk resp bit -517\n[    0.421859] [<0>][1, swapper/0]Trying to unpack rootfs image as initramfs...\n[    1.307894] [<0>][1, swapper/0]Freeing initrd memory: 23656K\n[    1.310508] [<0>][1, swapper/0]hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    1.318423] [<0>][1, swapper/0]workingset: timestamp_bits=45 max_order=20 bucket_order=0\n[    1.324566] [<0>][1, swapper/0]Registering sdcardfs 0.1\n[    1.324825] [<0>][1, swapper/0]fuse init (API version 7.26)\n[    1.325504] [<0>][1, swapper/0]SELinux:  Registering netfilter hooks\n[    1.326167] [<0>][1, swapper/0]pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    1.326171] [<0>][1, swapper/0]pfk_f2fs [pfk_f2fs_init]: PFK F2FS inited successfully\n[    1.326179] [<0>][1, swapper/0]pfk [pfk_init]: Driver initialized successfully\n[    1.329554] [<0>][1, swapper/0]io scheduler noop registered\n[    1.329791] [<0>][1, swapper/0]io scheduler cfq registered (default)\n[    1.329796] [<0>][1, swapper/0]io scheduler mq-deadline registered\n[    1.329799] [<0>][1, swapper/0]io scheduler kyber registered\n[    1.348215] [<0>][1, swapper/0]fb0: Virtual frame buffer device, using 1024K of video memory\n[    1.353187] [<0>][1, swapper/0]iommu: Adding device 4a00000.qcom,gpi-dma to group 5\n[    1.355671] [<0>][1, swapper/0]iommu: Adding device 4c00000.qcom,gpi-dma to group 6\n[    1.363325] [<0>][1, swapper/0]iommu: Adding device c800000.qcom,icnss to group 7\n[    1.363428] [<0>][1, swapper/0]icnss: Recursive recovery allowed for WLAN\n[    1.363440] [<0>][1, swapper/0]icnss: adc_tm_dev probe defer\n[    1.366992] [<0>][1, swapper/0]memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    1.367658] [<0>][1, swapper/0]memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    1.367804] [<0>][1, swapper/0]memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    1.369965] [<0>][1, swapper/0]minidump-id not found for adsp\n[    1.370855] [<0>][1, swapper/0]minidump-id not found for cdsp\n[    1.371676] [<0>][1, swapper/0]minidump-id not found for ipa_fws\n[    1.371694] [<0>][1, swapper/0]subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    1.371761] [<0>][1, swapper/0]subsys-pil-tz soc:qcom,ipa_fws: for md_ipa_fws segments only will be dumped.\n[    1.372376] [<0>][1, swapper/0]minidump-id not found for venus\n[    1.372388] [<0>][1, swapper/0]subsys-pil-tz 5ae0000.qcom,venus: for venus segments only will be dumped.\n[    1.372459] [<0>][1, swapper/0]subsys-pil-tz 5ae0000.qcom,venus: for md_venus segments only will be dumped.\n[    1.373433] [<0>][1, swapper/0]minidump-id not found for a610_zap\n[    1.373447] [<0>][1, swapper/0]subsys-pil-tz soc:qcom,kgsl-hyp: for a610_zap segments only will be dumped.\n[    1.373528] [<0>][1, swapper/0]subsys-pil-tz soc:qcom,kgsl-hyp: for md_a610_zap segments only will be dumped.\n[    1.385577] [<0>][1, swapper/0]smp2p_sleepstate soc:qcom,smp2p_sleepstate: got smp2p-sleepstate-in irq 224\n[    1.393325] [<0>][1, swapper/0]msm_geni_serial 4c90000.qcom,qup_uart: Wakeup byte 0xfd\n[    1.393766] [<0>][1, swapper/0]msm_geni_serial 4c90000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    1.395657] [<0>][1, swapper/0]4c90000.qcom,qup_uart: ttyHS0 at MMIO 0x4c90000 (irq = 59, base_baud = 0) is a MSM\n[    1.397333] [<0>][184, hwrng]msm_geni_serial_init: Driver initialized\n[    1.402143] [<0>][184, hwrng]random: crng init done\n[    1.407510] [<0>][1, swapper/0]diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    1.407519] [<0>][1, swapper/0]diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    1.462690] [<0>][1, swapper/0]dsi_phy 5e94400.qcom,mdss_dsi_phy0: 5e94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    1.462926] [<0>][1, swapper/0]msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-0\n[    1.464390] [<0>][1, swapper/0]drm_dsi_ctrl 5e94000.qcom,mdss_dsi_ctrl0: 5e94000.qcom,mdss_dsi_ctrl0 supply refgen not found, using dummy regulator\n[    1.464575] [<0>][1, swapper/0]AXI: get_pdata(): Error: Client name not found\n[    1.464579] [<0>][1, swapper/0]AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    1.464585] [<0>][1, swapper/0]dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-0\n[    1.465992] [<0>][1, swapper/0]msm-dsi-display:[dsi_display_parse_te_data] invalid vsync source selection\n[    1.466002] [<0>][1, swapper/0]OF: graph: no port node found in /soc/qcom,dsi-display\n[    1.466075] [<0>][1, swapper/0]msm-dsi-panel:[dsi_panel_parse_triggers:1296] [s6e8fco samsung amoled video mode dsi panel] fallback to default te-pin-select\n[    1.466103] [<0>][1, swapper/0]msm-dsi-panel:[dsi_panel_parse_panel_mode:1811] dsi_panel_parse_panel_mode: panel operating mode switch feature disabled\n[    1.466137] [<0>][1, swapper/0]msm-dsi-panel:[dsi_panel_parse_qsync_caps:1494] [s6e8fco samsung amoled video mode dsi panel] qsync min fps not defined rc:-22\n[    1.466139] [<0>][1, swapper/0]msm-dsi-panel:[dsi_panel_get:3601] failed to parse qsync features, rc=-22\n[    1.466175] [<0>][1, swapper/0]msm-dsi-panel:[dsi_panel_parse_reset_sequence:2189] RESET SEQ LENGTH = 24\n[    1.466239] [<0>][1, swapper/0]msm-dsi-panel:[dsi_panel_parse_misc_features:2239] dsi_panel_parse_misc_features: ulps feature disabled\n[    1.466244] [<0>][1, swapper/0]msm-dsi-panel:[dsi_panel_parse_misc_features:2245] dsi_panel_parse_misc_features: ulps during suspend feature disabled\n[    1.466301] [<0>][1, swapper/0]msm-dsi-panel:[dsi_panel_parse_esd_config:3495] ESD enabled with mode: error_flag\n[    1.469254] [<0>][1, swapper/0]iommu: Adding device 5e00000.qcom,mdss_mdp to group 8\n[    1.471716] [<0>][1, swapper/0][drm:sde_dbg_init:5189] evtlog_status: enable:3, panic:1, dump:2\n[    1.471765] [<0>][1, swapper/0]msm_drm 5e00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops sde_wb_comp_ops)\n[    1.472435] [<0>][1, swapper/0]msm-dsi-display:[dsi_display_bind] Successfully bind display panel 'dsi_s6e8fco_samsung_hdp_video_display'\n[    1.472441] [<0>][1, swapper/0]msm-dsi-display:[dsi_display_register_te_irq] Unable to register for TE IRQ\n[    1.472459] [<0>][1, swapper/0]msm_drm 5e00000.qcom,mdss_mdp: bound soc:qcom,dsi-display (ops dsi_display_comp_ops)\n[    1.472532] [<0>][1, swapper/0][drm] mapped mdp address space @ffffff800fa00000\n[    1.472658] [<0>][1, swapper/0]msm_drm 5e00000.qcom,mdss_mdp: failed to get memory resource: vbif_nrt_phys\n[    1.472672] [<0>][1, swapper/0]msm_drm 5e00000.qcom,mdss_mdp: failed to get memory resource: sid_phys\n[    1.472732] [<0>][1, swapper/0][drm:_sde_kms_get_splash_data:3291] splash mem num_regions:1\n[    1.472771] [<0>][1, swapper/0][drm:_sde_kms_get_splash_data:3326] splash mem for disp:1 add:5c000000 size:f00000\n[    1.472781] [<0>][1, swapper/0][sde_rsc:sde_rsc_client_create:105]: rsc not probed yet or not available\n[    1.474391] [<0>][1, swapper/0][drm:sde_kms_hw_init:3472] sde hardware revision:0x50040000\n[    1.475631] [<0>][1, swapper/0][drm] Created domain mdp_ns [80000000,80000000] secure=0\n[    1.477860] [<0>][1, swapper/0]iommu: Adding device 5e00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 9\n[    1.477897] [<0>][1, swapper/0][drm] probing device qcom,smmu_sde_sec\n[    1.477905] [<0>][1, swapper/0][drm] Created domain mdp_s [80000000,80000000] secure=1\n[    1.480509] [<0>][1, swapper/0][sde_rsc:is_sde_rsc_available:262]: rsc idx:0 not probed yet or not available\n[    1.480546] [<0>][1, swapper/0][sde_rsc:sde_rsc_client_create:105]: rsc not probed yet or not available\n[    1.480882] [<0>][1, swapper/0][sde_rsc:sde_rsc_client_create:105]: rsc not probed yet or not available\n[    1.480963] [<0>][1, swapper/0][drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.481216] [<0>][1, swapper/0][drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.481927] [<0>][1, swapper/0][drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    1.481929] [<0>][1, swapper/0][drm] No driver support for vblank timestamp query.\n[    1.482890] [<0>][1, swapper/0][drm] Initialized msm_drm 1.2.0 20130625 for 5e00000.qcom,mdss_mdp on minor 0\n[    1.482973] [<0>][1, swapper/0]msm-dsi-panel:[dsi_panel_parse_topology:3018] default topology: lm: 1 comp_enc:0 intf: 1\n[    1.483077] [<0>][1, swapper/0]msm-dsi-panel:[dsi_panel_parse_partial_update_caps:3108] partial update disabled as the property is not set\n[    1.483303] [<0>][1, swapper/0]dsi-ctrl:[_dsi_ctrl_setup_isr] [DSI_0] IRQ 228 registered\n[    1.493521] [<0>][1, swapper/0]iommu: Adding device 59a0000.qcom,kgsl-iommu:gfx3d_user to group 10\n[    1.493837] [<0>][1, swapper/0]iommu: Adding device 59a0000.qcom,kgsl-iommu:gfx3d_secure to group 11\n[    1.530609] [<0>][1, swapper/0]brd: module loaded\n[    1.539876] [<0>][1, swapper/0]loop: module loaded\n[    1.540216] [<0>][1, swapper/0]zram: Added device: zram0\n[    1.541792] [<0>][1, swapper/0]QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1401000\n[    1.541808] [<0>][1, swapper/0]QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    1.541814] [<0>][1, swapper/0]QSEECOM: qseecom_probe: qseecom clocks handled by other subsystem\n[    1.541817] [<0>][1, swapper/0]QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    1.541920] [<0>][1, swapper/0]QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    1.543377] [<0>][1, swapper/0]fpc1020_init OK\n[    1.545955] [<0>][1, swapper/0]iommu: Adding device 1b20000.qcedev to group 12\n[    1.548101] [<0>][1, swapper/0]qce 1b20000.qcedev: QTI Crypto 5.5.0 device found @0x1b20000\n[    1.548303] [<0>][1, swapper/0]sps:BAM 0x0000000001b04000 is registered.\n[    1.548453] [<0>][1, swapper/0]sps:BAM 0x0000000001b04000 (va:0xffffff800fec0000) enabled: ver:0x27, number of pipes:16\n[    1.548649] [<0>][1, swapper/0]QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001b04000 irq 45\n[    1.552009] [<0>][1, swapper/0]iommu: Adding device 1b20000.qcrypto to group 13\n[    1.553149] [<0>][1, swapper/0]QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.553899] [<0>][1, swapper/0]qcrypto 1b20000.qcrypto: QTI Crypto 5.5.0 device found @0x1b20000\n[    1.554178] [<0>][1, swapper/0]QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001b04000 irq 45\n[    1.555224] [<0>][1, swapper/0]qcrypto 1b20000.qcrypto: qcrypto-ecb-aes\n[    1.555345] [<0>][1, swapper/0]qcrypto 1b20000.qcrypto: qcrypto-cbc-aes\n[    1.555414] [<0>][1, swapper/0]qcrypto 1b20000.qcrypto: qcrypto-ctr-aes\n[    1.555475] [<0>][1, swapper/0]qcrypto 1b20000.qcrypto: qcrypto-ecb-des\n[    1.555540] [<0>][1, swapper/0]qcrypto 1b20000.qcrypto: qcrypto-cbc-des\n[    1.555602] [<0>][1, swapper/0]qcrypto 1b20000.qcrypto: qcrypto-ecb-3des\n[    1.555664] [<0>][1, swapper/0]qcrypto 1b20000.qcrypto: qcrypto-cbc-3des\n[    1.555730] [<0>][1, swapper/0]qcrypto 1b20000.qcrypto: qcrypto-xts-aes\n[    1.555793] [<0>][1, swapper/0]qcrypto 1b20000.qcrypto: qcrypto-sha1\n[    1.555855] [<0>][1, swapper/0]qcrypto 1b20000.qcrypto: qcrypto-sha256\n[    1.555921] [<0>][1, swapper/0]qcrypto 1b20000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    1.555982] [<0>][1, swapper/0]qcrypto 1b20000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    1.556045] [<0>][1, swapper/0]qcrypto 1b20000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    1.556111] [<0>][1, swapper/0]qcrypto 1b20000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    1.556175] [<0>][1, swapper/0]qcrypto 1b20000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    1.556241] [<0>][1, swapper/0]qcrypto 1b20000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    1.556304] [<0>][1, swapper/0]qcrypto 1b20000.qcrypto: qcrypto-hmac-sha1\n[    1.556366] [<0>][1, swapper/0]qcrypto 1b20000.qcrypto: qcrypto-hmac-sha256\n[    1.556434] [<0>][1, swapper/0]qcrypto 1b20000.qcrypto: qcrypto-aes-ccm\n[    1.556502] [<0>][1, swapper/0]qcrypto 1b20000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    1.557811] [<0>][1, swapper/0]qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    1.560061] [<0>][1, swapper/0]ufshcd-qcom 4804000.ufshc: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    1.560073] [<0>][1, swapper/0]ufshcd-qcom 4804000.ufshc: no vccq2-voltage-level property.\n[    1.561041] [<0>][1, swapper/0]qcom_ice_get_pdevice: found ice device ffffffc5b0bff800\n[    1.561044] [<0>][1, swapper/0]qcom_ice_get_pdevice: matching platform device ffffffc5ba273000\n[    1.565076] [<0>][1, swapper/0]scsi host0: ufshcd\n[    1.569607] [<0>][1, swapper/0]qcom_ice 4810000.ufsice: QC ICE 3.1.79 device found @0xffffff800ffa8000\n[    1.592251] [<0>][1, swapper/0]SCSI Media Changer driver v0.25 \n[    1.594882] [<0>][1, swapper/0]Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    1.597146] [<0>][1, swapper/0]libphy: Fixed MDIO Bus: probed\n[    1.597150] [<0>][1, swapper/0]tun: Universal TUN/TAP device driver, 1.6\n[    1.597361] [<0>][1, swapper/0]PPP generic driver version 2.4.2\n[    1.597438] [<0>][1, swapper/0]PPP BSD Compression module registered\n[    1.597440] [<0>][1, swapper/0]PPP Deflate Compression module registered\n[    1.597477] [<0>][1, swapper/0]PPP MPPE Compression module registered\n[    1.597481] [<0>][1, swapper/0]NET: Registered protocol family 24\n[    1.597498] [<0>][1, swapper/0]PPTP driver version 0.8.5\n[    1.597803] [<0>][1, swapper/0]Context not found\n[    1.597908] [<0>][1, swapper/0]CLD80211: Initializing\n[    1.597983] [<0>][1, swapper/0]usbcore: registered new interface driver r8152\n[    1.597996] [<0>][1, swapper/0]usbcore: registered new interface driver asix\n[    1.598009] [<0>][1, swapper/0]usbcore: registered new interface driver ax88179_178a\n[    1.598021] [<0>][1, swapper/0]usbcore: registered new interface driver cdc_ether\n[    1.598037] [<0>][1, swapper/0]usbcore: registered new interface driver net1080\n[    1.598050] [<0>][1, swapper/0]usbcore: registered new interface driver cdc_subset\n[    1.598062] [<0>][1, swapper/0]usbcore: registered new interface driver zaurus\n[    1.598075] [<0>][1, swapper/0]usbcore: registered new interface driver cdc_ncm\n[    1.603927] [<0>][1, swapper/0]msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.606821] [<0>][1, swapper/0]msm-qusb-phy 1613000.qusb: 1613000.qusb supply USB3_GDSC not found, using dummy regulator\n[    1.609425] [<0>][1, swapper/0]iommu: Adding device 4e00000.ssusb to group 14\n[    1.611595] [<0>][1, swapper/0]dwc3 4e00000.dwc3: changing max_speed on rev 00000000\n[    1.614369] [<0>][232, kworker/u16:2]Invalid index Defaulting curr to 0\n[    1.615817] [<0>][232, kworker/u16:2]ufshcd-qcom 4804000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.618631] [<0>][1, swapper/0]ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    1.618665] [<0>][1, swapper/0]ehci-pci: EHCI PCI platform driver\n[    1.618681] [<0>][1, swapper/0]ehci-platform: EHCI generic platform driver\n[    1.619319] [<0>][1, swapper/0]ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    1.619332] [<0>][1, swapper/0]ohci-pci: OHCI PCI platform driver\n[    1.619349] [<0>][1, swapper/0]ohci-platform: OHCI generic platform driver\n[    1.621444] [<0>][1, swapper/0]usbcore: registered new interface driver usb-storage\n[    1.621460] [<0>][1, swapper/0]usbcore: registered new interface driver usb_ehset_test\n[    1.621474] [<0>][1, swapper/0]usbcore: registered new interface driver lvs\n[    1.624197] [<0>][1, swapper/0][FTS_TS]fts_ts_init: Enter\n[    1.624213] [<0>][1, swapper/0][FTS_TS]fts_ts_init: Exit(2104)\n[    1.624282] [<0>][1, swapper/0]gf_spi: zhc:gf_init in!\n[    1.624302] [<0>][1, swapper/0]gf_spi: zhc:gf_init next platform_driver_register!\n[    1.624786] [<0>][1, swapper/0]gf_spi: zhc:gf_probe in!\n[    1.624797] [<0>][1, swapper/0]gf_platform: zhc:gf::reset_gpio:93\n[    1.624801] [<0>][1, swapper/0]gf_platform: zhc:gf::irq_gpio:92\n[    1.624802] [<0>][1, swapper/0]gf_spi: zhc:gf_probe next device_create!\n[    1.624947] [<0>][1, swapper/0]input: uinput-goodix as /devices/virtual/input/input1\n[    1.625070] [<0>][1, swapper/0]gf_spi: zhc:gf_probe out!\n[    1.625228] [<0>][1, swapper/0]gf_spi: zhc:gf_init out!\n[    1.625823] [<0>][1, swapper/0]qcom,qpnp-rtc 1c40000.qcom,spmi:qcom,pm6125@0:qcom,pm6125_rtc: rtc core: registered qpnp_rtc as rtc0\n[    1.626297] [<0>][1, swapper/0]i2c /dev entries driver\n[    1.626734] [<0>][1, swapper/0]i2c_geni 4a84000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.628893] [<0>][1, swapper/0]i2c_geni 4a84000.i2c: i2c error :-107\n[    1.628901] [<0>][1, swapper/0]read failed rc=-107\n[    1.628903] [<0>][1, swapper/0]Invalid REVID peripheral type: 00\n[    1.628910] [<0>][1, swapper/0]qcom,qpnp-revid: probe of 4a84000.i2c:qcom,pm8008@8:qcom,revid@100 failed with error -22\n[    1.629417] [<0>][1, swapper/0]i2c_geni 4a84000.i2c: i2c error :-107\n[    1.629422] [<0>][1, swapper/0]qcom-spmi-gpio 4a84000.i2c:qcom,pm8008@8:pinctrl@c000: read 0x4 failed\n[    1.629426] [<0>][1, swapper/0]qcom-spmi-gpio 4a84000.i2c:qcom,pm8008@8:pinctrl@c000: failed to populate gpio 0, ret=-107\n[    1.629433] [<0>][1, swapper/0]qcom-spmi-gpio: probe of 4a84000.i2c:qcom,pm8008@8:pinctrl@c000 failed with error -107\n[    1.629492] [<0>][1, swapper/0]I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    1.629561] [<0>][1, swapper/0]i2c_pmic 0-0009: could not find pctldev for node /soc/i2c@4a84000/qcom,pm8008@8/pinctrl@c000/gpio1_active/pm8008_gpio1_active, deferring probe\n[    1.629906] [<0>][1, swapper/0]i2c_geni 4a84000.i2c: i2c error :-107\n[    1.630057] [<0>][1, swapper/0]i2c_geni 4a84000.i2c: i2c error :-107\n[    1.630254] [<0>][1, swapper/0]i2c_geni 4a84000.i2c: i2c error :-107\n[    1.630360] [<0>][1, swapper/0]i2c_geni 4a84000.i2c: i2c error :-107\n[    1.630364] [<0>][1, swapper/0]I2C PMIC: i2c_pmic_read: i2c_pmic_read failed for 3 retries, rc = -107\n[    1.630366] [<0>][1, swapper/0]I2C PMIC: i2c_pmic_determine_initial_status: Couldn't read irq data rc=-107\n[    1.630368] [<0>][1, swapper/0]I2C PMIC: i2c_pmic_probe: Couldn't determine initial status rc=-107\n[    1.630439] [<0>][1, swapper/0]i2c_pmic: probe of 0-000c failed with error -107\n[    1.630754] [<0>][1, swapper/0]i2c_geni 4a88000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.666450] [<0>][232, kworker/u16:2]ufshcd-qcom 4804000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[1, 1], pwr[FAST MODE, FAST MODE], rate = 2\n[    1.666876] [<0>][232, kworker/u16:2]scsi 0:0:0:49488: Well-known LUN    SKhynix  H9HQ53ACPMMDAR   0004 PQ: 0 ANSI: 6\n[    1.667485] [<0>][232, kworker/u16:2]scsi 0:0:0:49456: Well-known LUN    SKhynix  H9HQ53ACPMMDAR   0004 PQ: 0 ANSI: 6\n[    1.667986] [<0>][232, kworker/u16:2]scsi 0:0:0:49476: Well-known LUN    SKhynix  H9HQ53ACPMMDAR   0004 PQ: 0 ANSI: 6\n[    1.668718] [<0>][232, kworker/u16:2]scsi 0:0:0:0: Direct-Access     SKhynix  H9HQ53ACPMMDAR   0004 PQ: 0 ANSI: 6\n[    1.669111] [<0>][232, kworker/u16:2]scsi 0:0:0:1: Direct-Access     SKhynix  H9HQ53ACPMMDAR   0004 PQ: 0 ANSI: 6\n[    1.669439] [<0>][232, kworker/u16:2]scsi 0:0:0:2: Direct-Access     SKhynix  H9HQ53ACPMMDAR   0004 PQ: 0 ANSI: 6\n[    1.669760] [<0>][232, kworker/u16:2]scsi 0:0:0:3: Direct-Access     SKhynix  H9HQ53ACPMMDAR   0004 PQ: 0 ANSI: 6\n[    1.670111] [<0>][232, kworker/u16:2]scsi 0:0:0:4: Direct-Access     SKhynix  H9HQ53ACPMMDAR   0004 PQ: 0 ANSI: 6\n[    1.670430] [<0>][232, kworker/u16:2]scsi 0:0:0:5: Direct-Access     SKhynix  H9HQ53ACPMMDAR   0004 PQ: 0 ANSI: 6\n[    1.672820] [<0>][232, kworker/u16:2]sd 0:0:0:0: [sda] Write Protect is off\n[    1.672826] [<0>][232, kworker/u16:2]sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.672844] [<0>][286, kworker/u16:3]sd 0:0:0:2: [sdc] Write Protect is off\n[    1.672848] [<0>][286, kworker/u16:3]sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.673117] [<0>][232, kworker/u16:2]sd 0:0:0:0: [sda] Optimal transfer size 524288 bytes\n[    1.673265] [<0>][286, kworker/u16:3]sd 0:0:0:2: [sdc] Optimal transfer size 524288 bytes\n[    1.673686] [<0>][78, kworker/u16:1]sd 0:0:0:3: [sdd] Write Protect is off\n[    1.673690] [<0>][78, kworker/u16:1]sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.673886] [<0>][78, kworker/u16:1]sd 0:0:0:3: [sdd] Optimal transfer size 524288 bytes\n[    1.675898] [<0>][232, kworker/u16:2] sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15\n[    1.676081] [<0>][286, kworker/u16:3] sdc: sdc1 sdc2\n[    1.676172] [<0>][78, kworker/u16:1] sdd: sdd1 sdd2 sdd3\n[    1.679102] [<0>][286, kworker/u16:3]sd 0:0:0:5: [sdf] Write Protect is off\n[    1.679108] [<0>][286, kworker/u16:3]sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    1.679186] [<0>][78, kworker/u16:1]sd 0:0:0:4: [sde] Write Protect is off\n[    1.679189] [<0>][78, kworker/u16:1]sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    1.679332] [<0>][286, kworker/u16:3]sd 0:0:0:5: [sdf] Optimal transfer size 524288 bytes\n[    1.679545] [<0>][78, kworker/u16:1]sd 0:0:0:4: [sde] Optimal transfer size 524288 bytes\n[    1.680349] [<0>][287, kworker/u16:4]sd 0:0:0:1: [sdb] Write Protect is off\n[    1.680353] [<0>][287, kworker/u16:4]sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.680874] [<0>][287, kworker/u16:4]sd 0:0:0:1: [sdb] Optimal transfer size 524288 bytes\n[    1.681721] [<0>][286, kworker/u16:3] sdf: sdf1 sdf2 sdf3 sdf4 sdf5\n[    1.682474] [<0>][78, kworker/u16:1] sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51 sde52 sde53 sde54 sde55 sde56 sde57 sde58 sde59 sde60 sde61 sde62\n[    1.686859] [<0>][287, kworker/u16:4] sdb: sdb1 sdb2\n[    2.010399] [<0>][1, swapper/0]i2c_geni 4a88000.i2c: i2c error :-107\n[    2.040126] [<0>][1, swapper/0]i2c_geni 4a88000.i2c: i2c error :-107\n[    2.070125] [<0>][1, swapper/0]i2c_geni 4a88000.i2c: i2c error :-107\n[    2.100025] [<0>][1, swapper/0]pm_qos_remove_request called for unknown object\n[    2.100039] [<0>][1, swapper/0]------------[ cut here ]------------\n[    2.100053] [<0>][1, swapper/0]WARNING: CPU: 0 PID: 1 at kernel/power/qos.c:734 pm_qos_remove_request+0x134/0x150\n[    2.100061] [<0>][1, swapper/0]CPU: 0 PID: 1 Comm: swapper/0 Tainted: G S              4.14.210-20210102-1539-ReZero #1\n[    2.100062] [<0>][1, swapper/0]Hardware name: Qualcomm Technologies, Inc. trinket pm6125 + pmi632 QRD (DT)\n[    2.100067] [<0>][1, swapper/0]task: 00000000b962b19b task.stack: 00000000ecce75bd\n[    2.100071] [<0>][1, swapper/0]pc : pm_qos_remove_request+0x134/0x150\n[    2.100075] [<0>][1, swapper/0]lr : pm_qos_remove_request+0x134/0x150\n[    2.100076] [<0>][1, swapper/0]sp : ffffff800805b380 pstate : 60400045\n[    2.100078] [<0>][1, swapper/0]x29: ffffff800805b380 x28: ffffffc5bfa55520 \n[    2.100083] [<0>][1, swapper/0]x27: 000000000000005d x26: 0000000000000001 \n[    2.100086] [<0>][1, swapper/0]x25: 0000000000000000 x24: ffffffc5afea2c80 \n[    2.100090] [<0>][1, swapper/0]x23: 00000000fffffc18 x22: ffffffc5afe41080 \n[    2.100095] [<0>][1, swapper/0]x21: ffffffc5afe69880 x20: ffffffc5afe6c810 \n[    2.100099] [<0>][1, swapper/0]x19: ffffffc5afe15ad0 x18: 0000000000000000 \n[    2.100103] [<0>][1, swapper/0]x17: 00000000fffef40c x16: 0000000000000000 \n[    2.100107] [<0>][1, swapper/0]x15: 0000000000000082 x14: 0000000000000058 \n[    2.100111] [<0>][1, swapper/0]x13: 0000000000010c4c x12: 0000000000000000 \n[    2.100116] [<0>][1, swapper/0]x11: 0000000000000000 x10: ffffffffffffffff \n[    2.100120] [<0>][1, swapper/0]x9 : 56c00c8b7eebd500 x8 : 56c00c8b7eebd500 \n[    2.100124] [<0>][1, swapper/0]x7 : 0000000000000000 x6 : ffffffc5bf809c1b \n[    2.100128] [<0>][1, swapper/0]x5 : ffffff90ad634000 x4 : 0000000000000004 \n[    2.100132] [<0>][1, swapper/0]x3 : 0000000000000000 x2 : 0000000000000001 \n[    2.100136] [<0>][1, swapper/0]x1 : 00000000000000c0 x0 : 000000000000002f \n[    2.100142] [<0>][1, swapper/0]\n               PC: 0xffffff90ab327c8c:\n[    2.100144] [<0>][1, swapper/0]7c8c  91014261 f8687928 52800042 12800003 f9400100 97fffc57 52801c02 aa1303e0\n[    2.100159] [<0>][1, swapper/0]7cac  2a1f03e1 944ef1d4 14000007 b000cdc0 f000d961 911a9c00 9127f021 94000f6e\n[    2.100171] [<0>][1, swapper/0]7ccc  d4210000 a9424ff4 a94157f6 a8c37bfd d65f03c0 944f5be3 17ffffe7 a9bf7bfd\n[    2.100182] [<0>][1, swapper/0]7cec  910003fd f000a708 91050108 f860d908 f9400108 f9402100 97feed75 a8c17bfd\n[    2.100194] [<0>][1, swapper/0]\n               LR: 0xffffff90ab327c8c:\n[    2.100195] [<0>][1, swapper/0]7c8c  91014261 f8687928 52800042 12800003 f9400100 97fffc57 52801c02 aa1303e0\n[    2.100206] [<0>][1, swapper/0]7cac  2a1f03e1 944ef1d4 14000007 b000cdc0 f000d961 911a9c00 9127f021 94000f6e\n[    2.100217] [<0>][1, swapper/0]7ccc  d4210000 a9424ff4 a94157f6 a8c37bfd d65f03c0 944f5be3 17ffffe7 a9bf7bfd\n[    2.100228] [<0>][1, swapper/0]7cec  910003fd f000a708 91050108 f860d908 f9400108 f9402100 97feed75 a8c17bfd\n[    2.100240] [<0>][1, swapper/0]\n               SP: 0xffffff800805b340:\n[    2.100241] [<0>][1, swapper/0]b340  ab327ccc ffffff90 60400045 00000000 ffffffc8 ffffff80 7eebd500 56c00c8b\n[    2.100252] [<0>][1, swapper/0]b360  ffffffff ffffffff ab327ccc ffffff90 0805b380 ffffff80 ab327ccc ffffff90\n[    2.100263] [<0>][1, swapper/0]b380  0805b3c0 ffffff80 abc1f508 ffffff90 afe41080 ffffffc5 afe69880 ffffffc5\n[    2.100274] [<0>][1, swapper/0]b3a0  afe6c810 ffffffc5 afe15880 ffffffc5 0805b3f0 ffffff00 7eebd500 56c00c8b\n[    2.100285] [<0>][1, swapper/0]\n[    2.100287] [<0>][1, swapper/0]Call trace:\n[    2.100292] [<0>][1, swapper/0] pm_qos_remove_request+0x134/0x150\n[    2.100297] [<0>][1, swapper/0] goodix_ts_probe+0x39c/0x6cc\n[    2.100303] [<0>][1, swapper/0] platform_drv_probe+0x64/0xb8\n[    2.100309] [<0>][1, swapper/0] driver_probe_device+0x4c0/0x62c\n[    2.100311] [<0>][1, swapper/0] __device_attach_driver+0x114/0x1b0\n[    2.100315] [<0>][1, swapper/0] bus_for_each_drv+0x7c/0xc4\n[    2.100320] [<0>][1, swapper/0] __device_attach+0xa8/0x15c\n[    2.100324] [<0>][1, swapper/0] device_initial_probe+0x10/0x18\n[    2.100326] [<0>][1, swapper/0] bus_probe_device+0x30/0x90\n[    2.100331] [<0>][1, swapper/0] device_add+0x614/0x898\n[    2.100333] [<0>][1, swapper/0] platform_device_add+0x8c/0x25c\n[    2.100337] [<0>][1, swapper/0] platform_device_register+0x28/0x34\n[    2.100342] [<0>][1, swapper/0] goodix_i2c_probe+0x280/0x5a4\n[    2.100349] [<0>][1, swapper/0] i2c_device_probe+0x24c/0x2d0\n[    2.100353] [<0>][1, swapper/0] driver_probe_device+0x4c0/0x62c\n[    2.100355] [<0>][1, swapper/0] __device_attach_driver+0x114/0x1b0\n[    2.100358] [<0>][1, swapper/0] bus_for_each_drv+0x7c/0xc4\n[    2.100362] [<0>][1, swapper/0] __device_attach+0xa8/0x15c\n[    2.100365] [<0>][1, swapper/0] device_initial_probe+0x10/0x18\n[    2.100368] [<0>][1, swapper/0] bus_probe_device+0x30/0x90\n[    2.100371] [<0>][1, swapper/0] device_add+0x614/0x898\n[    2.100373] [<0>][1, swapper/0] device_register+0x1c/0x28\n[    2.100377] [<0>][1, swapper/0] i2c_new_device+0x300/0x358\n[    2.100381] [<0>][1, swapper/0] of_i2c_register_devices+0x224/0x2b0\n[    2.100386] [<0>][1, swapper/0] i2c_register_adapter+0x2ac/0x3ac\n[    2.100389] [<0>][1, swapper/0] i2c_add_adapter+0xac/0xfc\n[    2.100393] [<0>][1, swapper/0] geni_i2c_probe+0x63c/0x698\n[    2.100396] [<0>][1, swapper/0] platform_drv_probe+0x64/0xb8\n[    2.100399] [<0>][1, swapper/0] driver_probe_device+0x4c0/0x62c\n[    2.100402] [<0>][1, swapper/0] __driver_attach+0xf0/0x194\n[    2.100405] [<0>][1, swapper/0] bus_for_each_dev+0x80/0xc8\n[    2.100409] [<0>][1, swapper/0] driver_attach+0x20/0x28\n[    2.100412] [<0>][1, swapper/0] bus_add_driver+0x134/0x230\n[    2.100415] [<0>][1, swapper/0] driver_register+0xa4/0xf0\n[    2.100418] [<0>][1, swapper/0] __platform_driver_register+0x40/0x48\n[    2.100424] [<0>][1, swapper/0] geni_i2c_driver_init+0x18/0x20\n[    2.100431] [<0>][1, swapper/0] do_one_initcall+0xe0/0x1bc\n[    2.100436] [<0>][1, swapper/0] kernel_init_freeable+0x1a8/0x238\n[    2.100442] [<0>][1, swapper/0] kernel_init+0x10/0x1fc\n[    2.100448] [<0>][1, swapper/0] ret_from_fork+0x10/0x18\n[    2.100454] [<0>][1, swapper/0]---[ end trace ea315601390abae1 ]---\n[    2.100457] [<0>][1, swapper/0]pm_qos_remove_request called for unknown object\n[    2.100463] [<0>][1, swapper/0]------------[ cut here ]------------\n[    2.100467] [<0>][1, swapper/0]WARNING: CPU: 0 PID: 1 at kernel/power/qos.c:734 pm_qos_remove_request+0x134/0x150\n[    2.100470] [<0>][1, swapper/0]CPU: 0 PID: 1 Comm: swapper/0 Tainted: G S      W       4.14.210-20210102-1539-ReZero #1\n[    2.100472] [<0>][1, swapper/0]Hardware name: Qualcomm Technologies, Inc. trinket pm6125 + pmi632 QRD (DT)\n[    2.100474] [<0>][1, swapper/0]task: 00000000b962b19b task.stack: 00000000ecce75bd\n[    2.100477] [<0>][1, swapper/0]pc : pm_qos_remove_request+0x134/0x150\n[    2.100480] [<0>][1, swapper/0]lr : pm_qos_remove_request+0x134/0x150\n[    2.100483] [<0>][1, swapper/0]sp : ffffff800805b380 pstate : 60400045\n[    2.100484] [<0>][1, swapper/0]x29: ffffff800805b380 x28: ffffffc5bfa55520 \n[    2.100489] [<0>][1, swapper/0]x27: 000000000000005d x26: 0000000000000001 \n[    2.100493] [<0>][1, swapper/0]x25: 0000000000000000 x24: ffffffc5afea2c80 \n[    2.100497] [<0>][1, swapper/0]x23: 00000000fffffc18 x22: ffffffc5afe41080 \n[    2.100501] [<0>][1, swapper/0]x21: ffffffc5afe69880 x20: ffffffc5afe6c810 \n[    2.100506] [<0>][1, swapper/0]x19: ffffffc5afe15bb0 x18: 0000000000000000 \n[    2.100510] [<0>][1, swapper/0]x17: 00000000fffed9bc x16: 0000000000000000 \n[    2.100514] [<0>][1, swapper/0]x15: 0000000000000082 x14: 0000000000000058 \n[    2.100518] [<0>][1, swapper/0]x13: 000000000001269c x12: 0000000000000000 \n[    2.100522] [<0>][1, swapper/0]x11: 0000000000000000 x10: ffffffffffffffff \n[    2.100527] [<0>][1, swapper/0]x9 : 56c00c8b7eebd500 x8 : 56c00c8b7eebd500 \n[    2.100531] [<0>][1, swapper/0]x7 : 0000000000000000 x6 : ffffffc5bf80b66b \n[    2.100535] [<0>][1, swapper/0]x5 : ffffff90ad634000 x4 : 0000000000000004 \n[    2.100539] [<0>][1, swapper/0]x3 : 0000000000000000 x2 : 0000000000000001 \n[    2.100543] [<0>][1, swapper/0]x1 : 00000000000000c0 x0 : 000000000000002f \n[    2.100547] [<0>][1, swapper/0]\n               PC: 0xffffff90ab327c8c:\n[    2.100548] [<0>][1, swapper/0]7c8c  91014261 f8687928 52800042 12800003 f9400100 97fffc57 52801c02 aa1303e0\n[    2.100561] [<0>][1, swapper/0]7cac  2a1f03e1 944ef1d4 14000007 b000cdc0 f000d961 911a9c00 9127f021 94000f6e\n[    2.100572] [<0>][1, swapper/0]7ccc  d4210000 a9424ff4 a94157f6 a8c37bfd d65f03c0 944f5be3 17ffffe7 a9bf7bfd\n[    2.100583] [<0>][1, swapper/0]7cec  910003fd f000a708 91050108 f860d908 f9400108 f9402100 97feed75 a8c17bfd\n[    2.100595] [<0>][1, swapper/0]\n               LR: 0xffffff90ab327c8c:\n[    2.100596] [<0>][1, swapper/0]7c8c  91014261 f8687928 52800042 12800003 f9400100 97fffc57 52801c02 aa1303e0\n[    2.100606] [<0>][1, swapper/0]7cac  2a1f03e1 944ef1d4 14000007 b000cdc0 f000d961 911a9c00 9127f021 94000f6e\n[    2.100617] [<0>][1, swapper/0]7ccc  d4210000 a9424ff4 a94157f6 a8c37bfd d65f03c0 944f5be3 17ffffe7 a9bf7bfd\n[    2.100629] [<0>][1, swapper/0]7cec  910003fd f000a708 91050108 f860d908 f9400108 f9402100 97feed75 a8c17bfd\n[    2.100640] [<0>][1, swapper/0]\n               SP: 0xffffff800805b340:\n[    2.100641] [<0>][1, swapper/0]b340  ab327ccc ffffff90 60400045 00000000 ffffffc8 ffffff80 7eebd500 56c00c8b\n[    2.100652] [<0>][1, swapper/0]b360  ffffffff ffffffff ab327ccc ffffff90 0805b380 ffffff80 ab327ccc ffffff90\n[    2.100663] [<0>][1, swapper/0]b380  0805b3c0 ffffff80 abc1f510 ffffff90 afe41080 ffffffc5 afe69880 ffffffc5\n[    2.100675] [<0>][1, swapper/0]b3a0  afe6c810 ffffffc5 afe15880 ffffffc5 0805b3f0 ffffff00 7eebd500 56c00c8b\n[    2.100686] [<0>][1, swapper/0]\n[    2.100687] [<0>][1, swapper/0]Call trace:\n[    2.100690] [<0>][1, swapper/0] pm_qos_remove_request+0x134/0x150\n[    2.100693] [<0>][1, swapper/0] goodix_ts_probe+0x3a4/0x6cc\n[    2.100697] [<0>][1, swapper/0] platform_drv_probe+0x64/0xb8\n[    2.100700] [<0>][1, swapper/0] driver_probe_device+0x4c0/0x62c\n[    2.100702] [<0>][1, swapper/0] __device_attach_driver+0x114/0x1b0\n[    2.100706] [<0>][1, swapper/0] bus_for_each_drv+0x7c/0xc4\n[    2.100710] [<0>][1, swapper/0] __device_attach+0xa8/0x15c\n[    2.100713] [<0>][1, swapper/0] device_initial_probe+0x10/0x18\n[    2.100716] [<0>][1, swapper/0] bus_probe_device+0x30/0x90\n[    2.100719] [<0>][1, swapper/0] device_add+0x614/0x898\n[    2.100721] [<0>][1, swapper/0] platform_device_add+0x8c/0x25c\n[    2.100724] [<0>][1, swapper/0] platform_device_register+0x28/0x34\n[    2.100726] [<0>][1, swapper/0] goodix_i2c_probe+0x280/0x5a4\n[    2.100730] [<0>][1, swapper/0] i2c_device_probe+0x24c/0x2d0\n[    2.100733] [<0>][1, swapper/0] driver_probe_device+0x4c0/0x62c\n[    2.100735] [<0>][1, swapper/0] __device_attach_driver+0x114/0x1b0\n[    2.100738] [<0>][1, swapper/0] bus_for_each_drv+0x7c/0xc4\n[    2.100742] [<0>][1, swapper/0] __device_attach+0xa8/0x15c\n[    2.100745] [<0>][1, swapper/0] device_initial_probe+0x10/0x18\n[    2.100749] [<0>][1, swapper/0] bus_probe_device+0x30/0x90\n[    2.100752] [<0>][1, swapper/0] device_add+0x614/0x898\n[    2.100755] [<0>][1, swapper/0] device_register+0x1c/0x28\n[    2.100758] [<0>][1, swapper/0] i2c_new_device+0x300/0x358\n[    2.100762] [<0>][1, swapper/0] of_i2c_register_devices+0x224/0x2b0\n[    2.100766] [<0>][1, swapper/0] i2c_register_adapter+0x2ac/0x3ac\n[    2.100770] [<0>][1, swapper/0] i2c_add_adapter+0xac/0xfc\n[    2.100772] [<0>][1, swapper/0] geni_i2c_probe+0x63c/0x698\n[    2.100775] [<0>][1, swapper/0] platform_drv_probe+0x64/0xb8\n[    2.100778] [<0>][1, swapper/0] driver_probe_device+0x4c0/0x62c\n[    2.100780] [<0>][1, swapper/0] __driver_attach+0xf0/0x194\n[    2.100783] [<0>][1, swapper/0] bus_for_each_dev+0x80/0xc8\n[    2.100787] [<0>][1, swapper/0] driver_attach+0x20/0x28\n[    2.100790] [<0>][1, swapper/0] bus_add_driver+0x134/0x230\n[    2.100793] [<0>][1, swapper/0] driver_register+0xa4/0xf0\n[    2.100796] [<0>][1, swapper/0] __platform_driver_register+0x40/0x48\n[    2.100798] [<0>][1, swapper/0] geni_i2c_driver_init+0x18/0x20\n[    2.100802] [<0>][1, swapper/0] do_one_initcall+0xe0/0x1bc\n[    2.100805] [<0>][1, swapper/0] kernel_init_freeable+0x1a8/0x238\n[    2.100808] [<0>][1, swapper/0] kernel_init+0x10/0x1fc\n[    2.100811] [<0>][1, swapper/0] ret_from_fork+0x10/0x18\n[    2.100813] [<0>][1, swapper/0]---[ end trace ea315601390abae2 ]---\n[    2.100850] [<0>][1, swapper/0]goodix_ts: probe of goodix_ts.0 failed with error -1000\n[    2.101236] [<0>][1, swapper/0][FTS_TS/I]fts_ts_probe:Touch Screen(I2C BUS) driver prboe...\n[    2.101243] [<0>][1, swapper/0][FTS_TS]fts_ts_probe_entry: Enter\n[    2.101245] [<0>][1, swapper/0][FTS_TS]fts_parse_dt: Enter\n[    2.101250] [<0>][1, swapper/0][FTS_TS/I]fts_get_dt_coords:display x(0 720) y(0 1560)\n[    2.101258] [<0>][1, swapper/0][FTS_TS/I]fts_parse_dt:VK Number:3, key:(139,102,158), coords:(200,2000),(600,2000),(800,2000)\n[    2.101266] [<0>][1, swapper/0][FTS_TS/I]fts_parse_dt:max touch number:10, irq gpio:88, reset gpio:87\n[    2.101268] [<0>][1, swapper/0][FTS_TS]fts_parse_dt: Exit(1381)\n[    2.102362] [<0>][1, swapper/0][FTS_TS]fts_bus_init: Enter\n[    2.102364] [<0>][1, swapper/0][FTS_TS]fts_bus_init: Exit(162)\n[    2.102366] [<0>][1, swapper/0][FTS_TS]fts_input_init: Enter\n[    2.102372] [<0>][1, swapper/0][FTS_TS/I]fts_input_init:set key capabilities\n[    2.102458] [<0>][1, swapper/0]input: fts_ts as /devices/platform/soc/4a88000.i2c/i2c-1/1-0038/input/input2\n[    2.102628] [<0>][1, swapper/0][FTS_TS]fts_input_init: Exit(927)\n[    2.102630] [<0>][1, swapper/0][FTS_TS]fts_gpio_configure: Enter\n[    2.102651] [<0>][1, swapper/0][FTS_TS]fts_gpio_configure: Exit(1252)\n[    2.102652] [<0>][1, swapper/0][FTS_TS]fts_power_source_init: Enter\n[    2.102772] [<0>][1, swapper/0]fts_ts 1-0038: 1-0038 supply vcc_i2c not found, using dummy regulator\n[    2.102799] [<0>][1, swapper/0][FTS_TS]fts_power_source_ctrl: Enter\n[    2.102800] [<0>][1, swapper/0][FTS_TS]fts_power_source_ctrl:regulator enable !\n[    2.120023] [<0>][1, swapper/0][FTS_TS]fts_power_source_ctrl: Exit(1097)\n[    2.120025] [<0>][1, swapper/0][FTS_TS]fts_power_source_init: Exit(1157)\n[    2.120027] [<0>][1, swapper/0][FTS_TS]fts_reset_proc:tp reset\n[    2.350416] [<0>][1, swapper/0][FTS_TS]fts_get_chip_types:verify id:0x5452\n[    2.350419] [<0>][1, swapper/0][FTS_TS/I]fts_get_ic_information:get ic information, chip id = 0x5452\n[    2.350432] [<0>][1, swapper/0][FTS_TS/I]fts_create_apk_debug_channel:Create proc entry success!\n[    2.350452] [<0>][1, swapper/0][FTS_TS/I]fts_create_sysfs:[EX]: sysfs_create_group() succeeded!!\n[    2.350458] [<0>][1, swapper/0][FTS_TS]fts_ex_mode_init:create sysfs(ex_mode) succeedfully\n[    2.350460] [<0>][1, swapper/0][FTS_TS]fts_gesture_init: Enter\n[    2.350467] [<0>][1, swapper/0][FTS_TS]fts_gesture_init: Exit(753)\n[    2.350469] [<0>][1, swapper/0][FTS_TS][TEST]fts_test_init: Enter\n[    2.350471] [<0>][1, swapper/0][FTS_TS/I][TEST]fts_test_func_init:init test function\n[    2.350475] [<0>][1, swapper/0][FTS_TS/I][TEST]fts_test_func_init:match test function,type:81\n[    2.350479] [<0>][1, swapper/0][FTS_TS][TEST]fts_test_init:sysfs(test) create successfully\n[    2.350481] [<0>][1, swapper/0][FTS_TS][TEST]fts_test_init: Exit(2051)\n[    2.350484] [<0>][1, swapper/0]IRQ-0 not set for request with affinity flag\n[    2.350493] [<0>][1, swapper/0]------------[ cut here ]------------\n[    2.350499] [<0>][1, swapper/0]WARNING: CPU: 0 PID: 1 at kernel/power/qos.c:626 pm_qos_add_request+0x26c/0x27c\n[    2.350505] [<0>][1, swapper/0]CPU: 0 PID: 1 Comm: swapper/0 Tainted: G S      W       4.14.210-20210102-1539-ReZero #1\n[    2.350507] [<0>][1, swapper/0]Hardware name: Qualcomm Technologies, Inc. trinket pm6125 + pmi632 QRD (DT)\n[    2.350510] [<0>][1, swapper/0]task: 00000000b962b19b task.stack: 00000000ecce75bd\n[    2.350514] [<0>][1, swapper/0]pc : pm_qos_add_request+0x26c/0x27c\n[    2.350517] [<0>][1, swapper/0]lr : pm_qos_add_request+0x26c/0x27c\n[    2.350518] [<0>][1, swapper/0]sp : ffffff800805b600 pstate : 60400045\n[    2.350521] [<0>][1, swapper/0]x29: ffffff800805b600 x28: 0000000000000054 \n[    2.350525] [<0>][1, swapper/0]x27: ffffff800805b665 x26: 0000000000000000 \n[    2.350529] [<0>][1, swapper/0]x25: ffffff90ae21a000 x24: ffffff90ace11024 \n[    2.350533] [<0>][1, swapper/0]x23: 0000000000000052 x22: 0000000000000002 \n[    2.350537] [<0>][1, swapper/0]x21: 0000000000000001 x20: ffffffc5afe071b0 \n[    2.350542] [<0>][1, swapper/0]x19: 00000000ffffffff x18: 00000000ffff0a01 \n[    2.350546] [<0>][1, swapper/0]x17: 00000000fffeb324 x16: 0000000000000000 \n[    2.350550] [<0>][1, swapper/0]x15: 0000000000000082 x14: 0000000000000054 \n[    2.350554] [<0>][1, swapper/0]x13: 0000000000014d30 x12: 0000000000000000 \n[    2.350558] [<0>][1, swapper/0]x11: 0000000000000000 x10: ffffffffffffffff \n[    2.350563] [<0>][1, swapper/0]x9 : 56c00c8b7eebd500 x8 : 56c00c8b7eebd500 \n[    2.350567] [<0>][1, swapper/0]x7 : 0000000000000000 x6 : ffffffc5bf80dd03 \n[    2.350571] [<0>][1, swapper/0]x5 : ffffff90ad634000 x4 : 000000000000000c \n[    2.350575] [<0>][1, swapper/0]x3 : 0000000000000000 x2 : 0000000000000000 \n[    2.350579] [<0>][1, swapper/0]x1 : 00000000000000c0 x0 : 000000000000002c \n[    2.350584] [<0>][1, swapper/0]\n               PC: 0xffffff90ab327774:\n[    2.350585] [<0>][1, swapper/0]7774  52800022 aa1503e1 2a1303e3 97fffd9f a9434ff4 a94257f6 f9400bf7 a8c47bfd\n[    2.350599] [<0>][1, swapper/0]7794  d65f03c0 b9401281 b000cdc0 52801fe8 91173800 b900029f f9000688 940010b4\n[    2.350611] [<0>][1, swapper/0]77b4  d4210000 17ffff9f 944f5d2c 17ffffd2 a9bd7bfd f9000bf5 a9024ff4 910003fd\n[    2.350622] [<0>][1, swapper/0]77d4  b9806008 f000a709 91050129 aa0003f4 f8687928 b85f8000 f9400113 940020dd\n[    2.350635] [<0>][1, swapper/0]\n               LR: 0xffffff90ab327774:\n[    2.350636] [<0>][1, swapper/0]7774  52800022 aa1503e1 2a1303e3 97fffd9f a9434ff4 a94257f6 f9400bf7 a8c47bfd\n[    2.350647] [<0>][1, swapper/0]7794  d65f03c0 b9401281 b000cdc0 52801fe8 91173800 b900029f f9000688 940010b4\n[    2.350658] [<0>][1, swapper/0]77b4  d4210000 17ffff9f 944f5d2c 17ffffd2 a9bd7bfd f9000bf5 a9024ff4 910003fd\n[    2.350669] [<0>][1, swapper/0]77d4  b9806008 f000a709 91050129 aa0003f4 f8687928 b85f8000 f9400113 940020dd\n[    2.350681] [<0>][1, swapper/0]\n               SP: 0xffffff800805b5c0:\n[    2.350682] [<0>][1, swapper/0]b5c0  ab3277b4 ffffff90 60400045 00000000 ffffffc8 ffffff80 7eebd500 56c00c8b\n[    2.350693] [<0>][1, swapper/0]b5e0  ffffffff ffffffff ab3277b4 ffffff90 0805b600 ffffff80 ab3277b4 ffffff90\n[    2.350704] [<0>][1, swapper/0]b600  0805b680 ffffff80 abc2cde8 ffffff90 00000052 00000000 abc2cd88 ffffff90\n[    2.350715] [<0>][1, swapper/0]b620  00000002 00000000 aff96c80 ffffffc5 aff93020 ffffffc5 afe07000 ffffffc5\n[    2.350726] [<0>][1, swapper/0]\n[    2.350728] [<0>][1, swapper/0]Call trace:\n[    2.350732] [<0>][1, swapper/0] pm_qos_add_request+0x26c/0x27c\n[    2.350737] [<0>][1, swapper/0] fts_ts_probe+0xe64/0x1084\n[    2.350742] [<0>][1, swapper/0] i2c_device_probe+0x24c/0x2d0\n[    2.350747] [<0>][1, swapper/0] driver_probe_device+0x4c0/0x62c\n[    2.350750] [<0>][1, swapper/0] __device_attach_driver+0x114/0x1b0\n[    2.350753] [<0>][1, swapper/0] bus_for_each_drv+0x7c/0xc4\n[    2.350756] [<0>][1, swapper/0] __device_attach+0xa8/0x15c\n[    2.350759] [<0>][1, swapper/0] device_initial_probe+0x10/0x18\n[    2.350763] [<0>][1, swapper/0] bus_probe_device+0x30/0x90\n[    2.350766] [<0>][1, swapper/0] device_add+0x614/0x898\n[    2.350770] [<0>][1, swapper/0] device_register+0x1c/0x28\n[    2.350774] [<0>][1, swapper/0] i2c_new_device+0x300/0x358\n[    2.350778] [<0>][1, swapper/0] of_i2c_register_devices+0x224/0x2b0\n[    2.350781] [<0>][1, swapper/0] i2c_register_adapter+0x2ac/0x3ac\n[    2.350785] [<0>][1, swapper/0] i2c_add_adapter+0xac/0xfc\n[    2.350788] [<0>][1, swapper/0] geni_i2c_probe+0x63c/0x698\n[    2.350790] [<0>][1, swapper/0] platform_drv_probe+0x64/0xb8\n[    2.350794] [<0>][1, swapper/0] driver_probe_device+0x4c0/0x62c\n[    2.350796] [<0>][1, swapper/0] __driver_attach+0xf0/0x194\n[    2.350800] [<0>][1, swapper/0] bus_for_each_dev+0x80/0xc8\n[    2.350803] [<0>][1, swapper/0] driver_attach+0x20/0x28\n[    2.350806] [<0>][1, swapper/0] bus_add_driver+0x134/0x230\n[    2.350808] [<0>][1, swapper/0] driver_register+0xa4/0xf0\n[    2.350811] [<0>][1, swapper/0] __platform_driver_register+0x40/0x48\n[    2.350815] [<0>][1, swapper/0] geni_i2c_driver_init+0x18/0x20\n[    2.350821] [<0>][1, swapper/0] do_one_initcall+0xe0/0x1bc\n[    2.350825] [<0>][1, swapper/0] kernel_init_freeable+0x1a8/0x238\n[    2.350830] [<0>][1, swapper/0] kernel_init+0x10/0x1fc\n[    2.350834] [<0>][1, swapper/0] ret_from_fork+0x10/0x18\n[    2.350836] [<0>][1, swapper/0]---[ end trace ea315601390abae3 ]---\n[    2.350845] [<0>][1, swapper/0]IRQ-0 not set for request with affinity flag\n[    2.350850] [<0>][1, swapper/0]------------[ cut here ]------------\n[    2.350854] [<0>][1, swapper/0]WARNING: CPU: 0 PID: 1 at kernel/power/qos.c:626 pm_qos_add_request+0x26c/0x27c\n[    2.350857] [<0>][1, swapper/0]CPU: 0 PID: 1 Comm: swapper/0 Tainted: G S      W       4.14.210-20210102-1539-ReZero #1\n[    2.350860] [<0>][1, swapper/0]Hardware name: Qualcomm Technologies, Inc. trinket pm6125 + pmi632 QRD (DT)\n[    2.350862] [<0>][1, swapper/0]task: 00000000b962b19b task.stack: 00000000ecce75bd\n[    2.350865] [<0>][1, swapper/0]pc : pm_qos_add_request+0x26c/0x27c\n[    2.350867] [<0>][1, swapper/0]lr : pm_qos_add_request+0x26c/0x27c\n[    2.350870] [<0>][1, swapper/0]sp : ffffff800805b600 pstate : 60400045\n[    2.350871] [<0>][1, swapper/0]x29: ffffff800805b600 x28: 0000000000000054 \n[    2.350875] [<0>][1, swapper/0]x27: ffffff800805b665 x26: 0000000000000000 \n[    2.350879] [<0>][1, swapper/0]x25: ffffff90ae21a000 x24: ffffff90ace11024 \n[    2.350884] [<0>][1, swapper/0]x23: 0000000000000052 x22: 0000000000000002 \n[    2.350888] [<0>][1, swapper/0]x21: 0000000000000001 x20: ffffffc5afe07290 \n[    2.350892] [<0>][1, swapper/0]x19: 00000000ffffffff x18: 00000000ffff0a01 \n[    2.350896] [<0>][1, swapper/0]x17: 00000000fffe9bf4 x16: 0000000000000000 \n[    2.350900] [<0>][1, swapper/0]x15: 0000000000000082 x14: 0000000000000054 \n[    2.350905] [<0>][1, swapper/0]x13: 0000000000016460 x12: 0000000000000000 \n[    2.350909] [<0>][1, swapper/0]x11: 0000000000000000 x10: ffffffffffffffff \n[    2.350913] [<0>][1, swapper/0]x9 : 56c00c8b7eebd500 x8 : 56c00c8b7eebd500 \n[    2.350917] [<0>][1, swapper/0]x7 : 0000000000000000 x6 : ffffffc5bf80f433 \n[    2.350921] [<0>][1, swapper/0]x5 : ffffff90ad634000 x4 : 000000000000000c \n[    2.350925] [<0>][1, swapper/0]x3 : 0000000000000000 x2 : 0000000000000000 \n[    2.350930] [<0>][1, swapper/0]x1 : 00000000000000c0 x0 : 000000000000002c \n[    2.350934] [<0>][1, swapper/0]\n               PC: 0xffffff90ab327774:\n[    2.350935] [<0>][1, swapper/0]7774  52800022 aa1503e1 2a1303e3 97fffd9f a9434ff4 a94257f6 f9400bf7 a8c47bfd\n[    2.350946] [<0>][1, swapper/0]7794  d65f03c0 b9401281 b000cdc0 52801fe8 91173800 b900029f f9000688 940010b4\n[    2.350957] [<0>][1, swapper/0]77b4  d4210000 17ffff9f 944f5d2c 17ffffd2 a9bd7bfd f9000bf5 a9024ff4 910003fd\n[    2.350969] [<0>][1, swapper/0]77d4  b9806008 f000a709 91050129 aa0003f4 f8687928 b85f8000 f9400113 940020dd\n[    2.350980] [<0>][1, swapper/0]\n               LR: 0xffffff90ab327774:\n[    2.350981] [<0>][1, swapper/0]7774  52800022 aa1503e1 2a1303e3 97fffd9f a9434ff4 a94257f6 f9400bf7 a8c47bfd\n[    2.350992] [<0>][1, swapper/0]7794  d65f03c0 b9401281 b000cdc0 52801fe8 91173800 b900029f f9000688 940010b4\n[    2.351003] [<0>][1, swapper/0]77b4  d4210000 17ffff9f 944f5d2c 17ffffd2 a9bd7bfd f9000bf5 a9024ff4 910003fd\n[    2.351014] [<0>][1, swapper/0]77d4  b9806008 f000a709 91050129 aa0003f4 f8687928 b85f8000 f9400113 940020dd\n[    2.351026] [<0>][1, swapper/0]\n               SP: 0xffffff800805b5c0:\n[    2.351027] [<0>][1, swapper/0]b5c0  ab3277b4 ffffff90 60400045 00000000 ffffffc8 ffffff80 7eebd500 56c00c8b\n[    2.351038] [<0>][1, swapper/0]b5e0  ffffffff ffffffff ab3277b4 ffffff90 0805b600 ffffff80 ab3277b4 ffffff90\n[    2.351049] [<0>][1, swapper/0]b600  0805b680 ffffff80 abc2ce04 ffffff90 00000052 00000000 abc2cd88 ffffff90\n[    2.351061] [<0>][1, swapper/0]b620  00000002 00000000 aff96c80 ffffffc5 aff93020 ffffffc5 afe07000 ffffffc5\n[    2.351072] [<0>][1, swapper/0]\n[    2.351073] [<0>][1, swapper/0]Call trace:\n[    2.351076] [<0>][1, swapper/0] pm_qos_add_request+0x26c/0x27c\n[    2.351079] [<0>][1, swapper/0] fts_ts_probe+0xe80/0x1084\n[    2.351082] [<0>][1, swapper/0] i2c_device_probe+0x24c/0x2d0\n[    2.351085] [<0>][1, swapper/0] driver_probe_device+0x4c0/0x62c\n[    2.351088] [<0>][1, swapper/0] __device_attach_driver+0x114/0x1b0\n[    2.351091] [<0>][1, swapper/0] bus_for_each_drv+0x7c/0xc4\n[    2.351094] [<0>][1, swapper/0] __device_attach+0xa8/0x15c\n[    2.351098] [<0>][1, swapper/0] device_initial_probe+0x10/0x18\n[    2.351102] [<0>][1, swapper/0] bus_probe_device+0x30/0x90\n[    2.351105] [<0>][1, swapper/0] device_add+0x614/0x898\n[    2.351107] [<0>][1, swapper/0] device_register+0x1c/0x28\n[    2.351110] [<0>][1, swapper/0] i2c_new_device+0x300/0x358\n[    2.351114] [<0>][1, swapper/0] of_i2c_register_devices+0x224/0x2b0\n[    2.351117] [<0>][1, swapper/0] i2c_register_adapter+0x2ac/0x3ac\n[    2.351120] [<0>][1, swapper/0] i2c_add_adapter+0xac/0xfc\n[    2.351123] [<0>][1, swapper/0] geni_i2c_probe+0x63c/0x698\n[    2.351126] [<0>][1, swapper/0] platform_drv_probe+0x64/0xb8\n[    2.351130] [<0>][1, swapper/0] driver_probe_device+0x4c0/0x62c\n[    2.351132] [<0>][1, swapper/0] __driver_attach+0xf0/0x194\n[    2.351135] [<0>][1, swapper/0] bus_for_each_dev+0x80/0xc8\n[    2.351139] [<0>][1, swapper/0] driver_attach+0x20/0x28\n[    2.351143] [<0>][1, swapper/0] bus_add_driver+0x134/0x230\n[    2.351145] [<0>][1, swapper/0] driver_register+0xa4/0xf0\n[    2.351147] [<0>][1, swapper/0] __platform_driver_register+0x40/0x48\n[    2.351150] [<0>][1, swapper/0] geni_i2c_driver_init+0x18/0x20\n[    2.351153] [<0>][1, swapper/0] do_one_initcall+0xe0/0x1bc\n[    2.351156] [<0>][1, swapper/0] kernel_init_freeable+0x1a8/0x238\n[    2.351159] [<0>][1, swapper/0] kernel_init+0x10/0x1fc\n[    2.351162] [<0>][1, swapper/0] ret_from_fork+0x10/0x18\n[    2.351164] [<0>][1, swapper/0]---[ end trace ea315601390abae4 ]---\n[    2.351170] [<0>][1, swapper/0][FTS_TS/I]fts_irq_registration:irq:236, flag:2002\n[    2.351331] [<0>][1, swapper/0][FTS_TS/I]fts_fwupg_init:fw upgrade init function\n[    2.351384] [<0>][289, kworker/u16:6][FTS_TS/I]fts_fwupg_work:fw upgrade work function\n[    2.351386] [<0>][289, kworker/u16:6][FTS_TS]fts_irq_disable: Enter\n[    2.351390] [<0>][289, kworker/u16:6][FTS_TS]fts_irq_disable: Exit(200)\n[    2.351391] [<0>][289, kworker/u16:6][FTS_TS]fts_fwupg_get_fw_file:get upgrade fw file\n[    2.351394] [<0>][289, kworker/u16:6][FTS_TS/I]fts_fwupg_get_fw_file:upgrade fw file len:49640\n[    2.351396] [<0>][289, kworker/u16:6][FTS_TS/I]fts_fwupg_auto_upgrade:********************FTS enter upgrade********************\n[    2.351398] [<0>][289, kworker/u16:6][FTS_TS/I]fts_fwupg_upgrade:fw auto upgrade function\n[    2.351474] [<0>][1, swapper/0][FTS_TS]fts_ts_probe_entry: Exit(1631)\n[    2.351480] [<0>][1, swapper/0]touch tp_dev: device: 'tp_dev' register\n[    2.351558] [<0>][1, swapper/0]touch tp_dev: sysfs_create_link_targets: may return an invalid value\n[    2.351564] [<0>][1, swapper/0]touch tp_dev: create proc symlink: tp_dev as /sys/class/touch/tp_dev\n[    2.351579] [<0>][1, swapper/0]touch tp_dev: 'vendor' property does not exist\n[    2.351581] [<0>][1, swapper/0]touch tp_dev: 'product' property does not exist\n[    2.351585] [<0>][1, swapper/0]touch tp_dev: 'panel_maker' property does not exist\n[    2.351600] [<0>][1, swapper/0]touch tp_dev: set product information from compatible[0]\n[    2.351619] [<0>][1, swapper/0][FTS_TS/I]fts_ts_probe:Touch Screen(I2C BUS) driver prboe successfully\n[    2.352410] [<0>][1, swapper/0]IR NEC protocol handler initialized\n[    2.352412] [<0>][1, swapper/0]IR RC5(x/sz) protocol handler initialized\n[    2.352414] [<0>][1, swapper/0]IR RC6 protocol handler initialized\n[    2.352417] [<0>][1, swapper/0]IR JVC protocol handler initialized\n[    2.352419] [<0>][1, swapper/0]IR Sony protocol handler initialized\n[    2.352421] [<0>][1, swapper/0]IR SANYO protocol handler initialized\n[    2.352423] [<0>][1, swapper/0]IR Sharp protocol handler initialized\n[    2.352425] [<0>][1, swapper/0]IR MCE Keyboard/mouse protocol handler initialized\n[    2.352427] [<0>][1, swapper/0]IR XMP protocol handler initialized\n[    2.353897] [<0>][1, swapper/0]sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-rot-vbif-memtype : doesn't exist in device tree\n[    2.353909] [<0>][1, swapper/0]sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-qos-lut : doesn't exist in device tree\n[    2.353912] [<0>][1, swapper/0]sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-danger-lut : doesn't exist in device tree\n[    2.353917] [<0>][1, swapper/0]sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-safe-lut : doesn't exist in device tree\n[    2.354040] [<0>][1, swapper/0]register_client_adhoc:Failed to find path.src 1 dest 590\n[    2.354046] [<0>][1, swapper/0]sde_mdp_bus_scale_register: <SDEROT_WARN> reg_bus_client register failed\n[    2.355272] [<0>][289, kworker/u16:6][FTS_TS/I]fts_wait_tp_to_valid:TP Ready, Device ID = 0x54\n[    2.355275] [<0>][289, kworker/u16:6][FTS_TS/I]fts_fwupg_check_fw_valid:tp fw vaild\n[    2.355279] [<0>][289, kworker/u16:6][FTS_TS/I]fts_fwupg_get_ver_in_host:fw version offset:0x10e\n[    2.355507] [<0>][1, swapper/0]No change in context(0==0), skip\n[    2.355678] [<0>][289, kworker/u16:6][FTS_TS/I]fts_fwupg_need_upgrade:fw version in tp:81, host:81\n[    2.355681] [<0>][289, kworker/u16:6][FTS_TS/I]fts_fwupg_upgrade:fw upgrade flag:0\n[    2.355685] [<0>][289, kworker/u16:6][FTS_TS/I]fts_fwupg_auto_upgrade:**********tp fw(app/param) no upgrade/upgrade success**********\n[    2.355687] [<0>][289, kworker/u16:6][FTS_TS/I]fts_fwupg_auto_upgrade:********************FTS exit upgrade********************\n[    2.355689] [<0>][289, kworker/u16:6][FTS_TS]fts_irq_enable: Enter\n[    2.355708] [<0>][289, kworker/u16:6][FTS_TS]fts_irq_enable: Exit(216)\n[    2.356649] [<0>][1, swapper/0]sde_rotator_evtlog_create_debugfs: evtlog_status: enable:1, panic:1, dump:2\n[    2.357298] [<0>][1, swapper/0]sde_rotator 5e00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    2.359347] [<0>][1, swapper/0]iommu: Adding device 5e00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 15\n[    2.359398] [<0>][1, swapper/0]sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    2.359462] [<0>][1, swapper/0]iommu: Adding device 5e00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 16\n[    2.359482] [<0>][1, swapper/0]sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    2.364584] [<0>][1, swapper/0]iommu: Adding device 5a00000.qcom,vidc:non_secure_cb to group 17\n[    2.365180] [<0>][1, swapper/0]iommu: Adding device 5a00000.qcom,vidc:secure_bitstream_cb to group 18\n[    2.367277] [<0>][1, swapper/0]iommu: Adding device 5a00000.qcom,vidc:secure_pixel_cb to group 19\n[    2.368885] [<0>][1, swapper/0]iommu: Adding device 5a00000.qcom,vidc:secure_non_pixel_cb to group 20\n[    2.370783] [<0>][1, swapper/0]dvbdev: DVB: registering new adapter (Qualcomm Technologies, Inc. DVB adapter)\n[    2.380638] [<0>][1, swapper/0]iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb1 to group 21\n[    2.380671] [<0>][1, swapper/0]CAM-SMMU cam_smmu_populate_sids:2115 __debug cnt = 6, cb->name: :vfe sid [0] = 1056\n               ,\n[    2.380675] [<0>][1, swapper/0]CAM-SMMU cam_smmu_populate_sids:2115 __debug cnt = 6, cb->name: :vfe sid [1] = 1057\n               ,\n[    2.381531] [<0>][1, swapper/0]iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb2 to group 22\n[    2.381549] [<0>][1, swapper/0]CAM-SMMU cam_smmu_populate_sids:2115 __debug cnt = 3, cb->name: :cpp sid [0] = 2048\n               ,\n[    2.382066] [<0>][1, swapper/0]iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb4 to group 23\n[    2.382084] [<0>][1, swapper/0]CAM-SMMU cam_smmu_populate_sids:2115 __debug cnt = 3, cb->name: :jpeg_enc0 sid [0] = 2080\n               ,\n[    2.382590] [<0>][1, swapper/0]iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cb5 to group 24\n[    2.382606] [<0>][1, swapper/0]CAM-SMMU cam_smmu_populate_sids:2115 __debug cnt = 3, cb->name: :jpeg_dma sid [0] = 2081\n               ,\n[    2.394603] [<0>][1, swapper/0]msm_actuator_platform_probe:1993 msm_actuator_platform_probe: No/Error Actuator GPIOs\n[    2.395637] [<0>][1, swapper/0]msm_eeprom_platform_probe failed 1834\n[    2.395705] [<0>][1, swapper/0]msm_eeprom_platform_probe:1901 pdev->id=0\n[    2.396712] [<0>][1, swapper/0]msm_cci_init:1441: hw_version = 0x10060000\n[    2.396743] [<0>][1, swapper/0]fill_module_id:1722 cell_index=0, sid=0x51, addr=0x1\n[    2.397251] [<0>][1, swapper/0]fill_module_id:1729 complete=1 rc=0\n[    2.397254] [<0>][1, swapper/0]fill_module_id:1739 complete=1 main_module_id=1 sub_module_id=-1 aux_8m_module_id=-1\n[    2.398075] [<0>][1, swapper/0]msm_eeprom_platform_probe failed 1834\n[    2.398139] [<0>][1, swapper/0]msm_eeprom_platform_probe:1901 pdev->id=1\n[    2.398646] [<0>][1, swapper/0]msm_cci_init:1441: hw_version = 0x10060000\n[    2.398671] [<0>][1, swapper/0]fill_module_id:1722 cell_index=1, sid=0x52, addr=0x1\n[    2.399174] [<0>][1, swapper/0]fill_module_id:1729 complete=1 rc=0\n[    2.399178] [<0>][1, swapper/0]fill_module_id:1739 complete=1 main_module_id=1 sub_module_id=1 aux_8m_module_id=-1\n[    2.399791] [<0>][1, swapper/0]msm_eeprom_platform_probe failed 1834\n[    2.399848] [<0>][1, swapper/0]msm_eeprom_platform_probe:1901 pdev->id=2\n[    2.400456] [<0>][1, swapper/0]msm_cci_init:1441: hw_version = 0x10060000\n[    2.400482] [<0>][1, swapper/0]fill_module_id:1722 cell_index=2, sid=0x54, addr=0x1\n[    2.400987] [<0>][1, swapper/0]fill_module_id:1729 complete=1 rc=0\n[    2.400990] [<0>][1, swapper/0]fill_module_id:1739 complete=1 main_module_id=1 sub_module_id=1 aux_8m_module_id=1\n[    2.410924] [<0>][1, swapper/0]MSM-CPP cpp_init_hardware:1135 CPP HW Version: 0x60010004\n[    2.410940] [<0>][1, swapper/0]MSM-CPP cpp_init_hardware:1153 stream_cnt:0\n[    2.411906] [<0>][1, swapper/0]MSM-CPP cpp_release_hardware:1216 cpp hw release done\n[    2.414460] [<0>][1, swapper/0]CAM-SOC msm_camera_get_reg_base:894 err: mem resource vfe_fuse not found\n[    2.414464] [<0>][1, swapper/0]CAM-SOC msm_camera_get_res_size:937 err: mem resource vfe_fuse not found\n[    2.415516] [<0>][1, swapper/0]CAM-SOC msm_camera_get_reg_base:894 err: mem resource vfe_fuse not found\n[    2.415520] [<0>][1, swapper/0]CAM-SOC msm_camera_get_res_size:937 err: mem resource vfe_fuse not found\n[    2.420532] [<0>][1, swapper/0]__msm_jpeg_init:1595] Jpeg Device id 0\n[    2.425877] [<0>][1, swapper/0]Couldn't parse device tree rc=-517\n[    2.444451] [<0>][1, swapper/0]device-mapper: uevent: version 1.0.3\n[    2.444770] [<0>][1, swapper/0]device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com\n[    2.446448] [<0>][1, swapper/0]bt_dt_parse_vreg_info: qca,bt-vdd-vl: is not provided in device tree\n[    2.446452] [<0>][1, swapper/0]bt_dt_parse_vreg_info: qca,bt-vdd-vm: is not provided in device tree\n[    2.446455] [<0>][1, swapper/0]bt_dt_parse_vreg_info: qca,bt-vdd-5c: is not provided in device tree\n[    2.446458] [<0>][1, swapper/0]bt_dt_parse_vreg_info: qca,bt-vdd-5a: is not provided in device tree\n[    2.446460] [<0>][1, swapper/0]bt_dt_parse_vreg_info: qca,bt-vdd-vh: is not provided in device tree\n[    2.446474] [<0>][1, swapper/0]bt_dt_parse_vreg_info: qca,bt-vdd-ldo: is not provided in device tree\n[    2.446477] [<0>][1, swapper/0]bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    2.446481] [<0>][1, swapper/0]bt_power_populate_dt_pinfo: bt-reset-gpio not provided in device tree\n[    2.446484] [<0>][1, swapper/0]bt_dt_parse_clk_info: clocks is not provided in device tree\n[    2.446485] [<0>][1, swapper/0]bt_power_populate_dt_pinfo: clock not provided in device tree\n[    2.448763] [<0>][1, swapper/0]sdhci: Secure Digital Host Controller Interface driver\n[    2.448767] [<0>][1, swapper/0]sdhci: Copyright(c) Pierre Ossman\n[    2.448770] [<0>][1, swapper/0]sdhci-pltfm: SDHCI platform and OF driver helper\n[    2.450354] [<0>][1, swapper/0]qpnp_vibrator_ldo_probe: Vibrator LDO successfully registered: uV = 3000000, overdrive = disabled\n[    2.452897] [<0>][1, swapper/0]usbcore: registered new interface driver usbhid\n[    2.452901] [<0>][1, swapper/0]usbhid: USB HID core driver\n[    2.453146] [<0>][1, swapper/0]ashmem: initialized\n[    2.453220] [<0>][1, swapper/0]wlan_hdd_state wlan major(501) initialized\n[    2.454127] [<0>][1, swapper/0]ipa_ut ipa_ut_module_init:1043 Loading IPA test module...\n[    2.456029] [<0>][289, kworker/u16:6]qcom_ice_get_pdevice: found ice device ffffffc5b0bfde00\n[    2.456032] [<0>][289, kworker/u16:6]qcom_ice_get_pdevice: matching platform device ffffffc5b9e1e800\n[    2.458501] [<0>][289, kworker/u16:6]sdhci_msm 4784000.sdhci: sdhci_msm_probe: ICE device is not enabled\n[    2.472687] [<0>][289, kworker/u16:6]mmc0: SDHCI controller on 4784000.sdhci [4784000.sdhci] using 64-bit ADMA in legacy mode\n[    2.504320] [<0>][1, swapper/0]bimc-bwmon 1b8e200.qcom,cpu-cpu-ddr-bwmon: BW HWmon governor registered.\n[    2.507401] [<0>][1, swapper/0]arm-memlat-mon soc:qcom,cpu0-cpu-ddr-latmon: Memory Latency governor registered.\n[    2.509430] [<0>][1, swapper/0]arm-memlat-mon soc:qcom,cpu4-cpu-ddr-latmon: Memory Latency governor registered.\n[    2.511484] [<0>][1, swapper/0]arm-memlat-mon soc:qcom,cpu0-computemon: Compute governor registered.\n[    2.513476] [<0>][1, swapper/0]arm-memlat-mon soc:qcom,cpu4-computemon: Compute governor registered.\n[    2.539065] [<0>][1, swapper/0]iommu: Adding device 8048000.tmc to group 25\n[    2.543645] [<0>][1, swapper/0]coresight-stm 8002000.stm: stm_register_device failed, probing deffered\n[    2.543994] [<0>][1, swapper/0]OF: graph: no port node found in /soc/csr@8001000\n[    2.544123] [<0>][1, swapper/0]coresight-csr 8001000.csr: CSR initialized: coresight-csr\n[    2.545982] [<0>][1, swapper/0]usbcore: registered new interface driver snd-usb-audio\n[    2.546258] [<0>][1, swapper/0]iommu: Adding device soc:usb_audio_qmi_dev to group 26\n[    2.580199] [<0>][1, swapper/0]i2c_geni 4a84000.i2c: i2c error :-107\n[    2.580206] [<0>][1, swapper/0]reading version=0 - retry(0)\n[    2.600527] [<0>][1, swapper/0]This is max98937! device version 0x43\n[    2.610140] [<0>][1, swapper/0]max98927 register codec ok.\n[    2.612399] [<0>][1, swapper/0]msm-dai-q6-hdmi soc:qcom,msm-dai-q6-hdmi_ms: invalid device ID 24578\n[    2.641981] [<0>][1, swapper/0]GACT probability NOT on\n[    2.641992] [<0>][1, swapper/0]Mirror/redirect action on\n[    2.641999] [<0>][1, swapper/0]u32 classifier\n[    2.642001] [<0>][1, swapper/0]    Actions configured\n[    2.642009] [<0>][1, swapper/0]Netfilter messages via NETLINK v0.30.\n[    2.642146] [<0>][1, swapper/0]nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    2.642220] [<0>][1, swapper/0]ctnetlink v0.93: registering with nfnetlink.\n[    2.642431] [<0>][1, swapper/0]xt_time: kernel timezone is -0000\n[    2.642497] [<0>][1, swapper/0]gre: GRE over IPv4 demultiplexor driver\n[    2.642499] [<0>][1, swapper/0]IPv4 over IPsec tunneling driver\n[    2.642820] [<0>][1, swapper/0]ip_tables: (C) 2000-2006 Netfilter Core Team\n[    2.643178] [<0>][1, swapper/0]arp_tables: arp_tables: (C) 2002 David S. Miller\n[    2.643227] [<0>][1, swapper/0]Initializing XFRM netlink socket\n[    2.643239] [<0>][1, swapper/0]IPsec XFRM device driver\n[    2.643515] [<0>][1, swapper/0]NET: Registered protocol family 10\n[    2.645195] [<0>][1, swapper/0]Segment Routing with IPv6\n[    2.645237] [<0>][1, swapper/0]mip6: Mobile IPv6\n[    2.645249] [<0>][1, swapper/0]ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    2.645727] [<0>][1, swapper/0]sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    2.646178] [<0>][1, swapper/0]NET: Registered protocol family 17\n[    2.646189] [<0>][1, swapper/0]NET: Registered protocol family 15\n[    2.646216] [<0>][1, swapper/0]Bridge firewalling registered\n[    2.646219] [<0>][1, swapper/0]Ebtables v2.0 registered\n[    2.646347] [<0>][1, swapper/0]l2tp_core: L2TP core driver, V2.0\n[    2.646353] [<0>][1, swapper/0]l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    2.646355] [<0>][1, swapper/0]l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    2.646368] [<0>][1, swapper/0]l2tp_netlink: L2TP netlink interface\n[    2.646386] [<0>][1, swapper/0]l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    2.646388] [<0>][1, swapper/0]l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    2.646475] [<0>][1, swapper/0]sctp: Hash tables configured (bind 256/256)\n[    2.647074] [<0>][352, kworker/0:5]icnss: Recursive recovery allowed for WLAN\n[    2.647081] [<0>][352, kworker/0:5]icnss: adc_tm_dev probe defer\n[    2.648871] [<0>][352, kworker/0:5]dwc3 4e00000.dwc3: changing max_speed on rev 00000000\n[    2.651734] [<0>][352, kworker/0:5]usb_bam_init: setting SPS_BAM_SMMU_EN flag with (4f04000.qcom,usbbam)\n[    2.651881] [<0>][352, kworker/0:5]sps:BAM 0x0000000004f04000 is registered.\n[    2.652585] [<0>][352, kworker/0:5]Invalid index Defaulting curr to 0\n[    2.655214] [<0>][352, kworker/0:5]i2c_pmic 0-0009: could not find pctldev for node /soc/i2c@4a84000/qcom,pm8008@8/pinctrl@c000/gpio1_active/pm8008_gpio1_active, deferring probe\n[    2.655531] [<0>][352, kworker/0:5]QG-K: qg_parse_dt: PMIC subtype 37 Digital major 2\n[    2.655565] [<0>][352, kworker/0:5]QG-K: qg_parse_dt: DT: S2 FIFO length=4 low_vbat_length=2 acc_length=128 acc_interval=100\n[    2.655569] [<0>][352, kworker/0:5]QG-K: qg_parse_dt: DT: OCV timer_expiry =-22min ocv_tol_threshold=-22uV\n[    2.655597] [<0>][352, kworker/0:5]QG-K: qg_parse_dt: DT: cl_min_start_soc=10 cl_max_start_soc=15 cl_min_temp=150 cl_max_temp=500\n[    2.655601] [<0>][352, kworker/0:5]QG-K: qg_parse_dt: DT: vbatt_empty_mv=3200mV vbatt_low_mv=3500mV delta_soc=1 ext-sns=0\n[    2.655613] [<0>][352, kworker/0:5]QG-K: qg_set_wa_flags: wa_flags = 2\n[    2.669948] [<0>][352, kworker/0:5]of_batterydata_get_best_profile: profile id 330 batt id 331 pct 15\n[    2.669952] [<0>][352, kworker/0:5]of_batterydata_get_best_profile: S88512_mtp_Feimaotui_4V4_4030mAh found\n[    2.670786] [<0>][352, kworker/0:5]QG-K: qg_batterydata_init: QG Battery-profile loaded\n[    2.670876] [<0>][352, kworker/0:5]QG-K: qg_sanitize_sdam: SDAM valid\n[    2.670987] [<0>][352, kworker/0:5]QG-K: qg_determine_pon_soc: S7_PON_OCV OCV=4313350\n[    2.670998] [<0>][352, kworker/0:5]QG-K: qg_determine_pon_soc: S3_GOOD_OCV OCV=6377865\n[    2.671009] [<0>][352, kworker/0:5]QG-K: qg_determine_pon_soc: S3_LAST_OCV OCV=6377865\n[    2.671021] [<0>][352, kworker/0:5]QG-K: qg_determine_pon_soc: SDAM_PON_OCV OCV=4251845\n[    2.672177] [<0>][352, kworker/0:5]QG-K: qg_determine_pon_soc: Shutdown: Valid=1 SOC=98 OCV=4339900uV time=3042814secs temp=232, time_now=3043147secs temp_now=244 S7_soc=95\n[    2.672180] [<0>][352, kworker/0:5]QG-K: qg_determine_pon_soc: Using SHUTDOWN_SOC @ PON\n[    2.673372] [<0>][352, kworker/0:5]QG-K: qg_sdam_write: QG SDAM write param=SOC value=98\n[    2.673426] [<0>][352, kworker/0:5]QG-K: qg_determine_pon_soc: using SHUTDOWN_SOC @ PON ocv_uv=4339900uV soc=98\n[    2.673647] [<0>][352, kworker/0:5](NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    2.673931] [<0>][352, kworker/0:5]QG-K: qg_request_interrupt: IRQ qg-vbat-low registered wakeable=1\n[    2.674073] [<0>][352, kworker/0:5]QG-K: qg_request_interrupt: IRQ qg-vbat-empty registered wakeable=1\n[    2.674354] [<0>][352, kworker/0:5]QG-K: qg_request_interrupt: IRQ qg-fifo-done registered wakeable=1\n[    2.674495] [<0>][352, kworker/0:5]QG-K: qg_request_interrupt: IRQ qg-good-ocv registered wakeable=1\n[    2.674565] [<0>][352, kworker/0:5]QG-K: qpnp_qg_probe: QG initialized! battery_profile=S88512_mtp_Feimaotui_4V4_4030mAh SOC=98 QG_subtype=3\n[    2.675054] [<0>][352, kworker/0:5]PL_DISABLE: effective vote is now 1 voted by CHG_STATE_VOTER,0\n[    2.675559] [<0>][352, kworker/0:5]USB_ICL: effective vote is now -22 voted by (null),-22\n[    2.675563] [<0>][352, kworker/0:5]DC_SUSPEND: effective vote is now 0 voted by DEFAULT_VOTER,0\n[    2.675566] [<0>][352, kworker/0:5]FCC: effective vote is now 3000000 voted by HW_LIMIT_VOTER,0\n[    2.675571] [<0>][352, kworker/0:5]FV: effective vote is now 4400000 voted by HW_LIMIT_VOTER,0\n[    2.675575] [<0>][352, kworker/0:5]USB_ICL: effective vote is now 2000000 voted by HW_LIMIT_VOTER,1\n[    2.675623] [<0>][352, kworker/0:5]CHG_DISABLE: effective vote is now 0 voted by DEFAULT_VOTER,0\n[    2.676232] [<0>][352, kworker/0:5](NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    2.676440] [<0>][352, kworker/0:5]pmi632_charger: smblib_update_usb_type: APSD=UNKNOWN PD=0 QC3P5=0\n[    2.676443] [<0>][352, kworker/0:5]TEMP_CHANGE_IRQ_DISABLE: effective vote is now 1 voted by DEFAULT_VOTER,0\n[    2.676450] [<0>][352, kworker/0:5]pmi632_charger: smblib_usb_plugin_locked: IRQ: usbin-plugin detached\n[    2.676453] [<0>][352, kworker/0:5]pmi632_charger: typec_attach_detach_irq_handler: IRQ: determine-initial-status\n[    2.676466] [<0>][352, kworker/0:5]USB_ICL: effective vote is now 100000 voted by SW_ICL_MAX_VOTER,4\n[    2.676525] [<0>][352, kworker/0:5]pmi632_charger: typec_state_change_irq_handler: IRQ: cc-state-change; Type-C NONE detected\n[    2.676537] [<0>][352, kworker/0:5]pmi632_charger: usb_source_change_irq_handler: APSD_STATUS = 0x00\n[    2.676540] [<0>][352, kworker/0:5]pmi632_charger: smblib_handle_hvdcp_detect_done: IRQ: hvdcp-detect-done falling\n[    2.676542] [<0>][352, kworker/0:5]pmi632_charger: smblib_handle_hvdcp_check_timeout: IRQ: smblib_handle_hvdcp_check_timeout falling\n[    2.676544] [<0>][352, kworker/0:5]pmi632_charger: smblib_handle_sdp_enumeration_done: IRQ: sdp-enumeration-done falling\n[    2.676546] [<0>][352, kworker/0:5]pmi632_charger: smblib_handle_slow_plugin_timeout: IRQ: slow-plugin-timeout falling\n[    2.676558] [<0>][352, kworker/0:5]pmi632_charger: usb_source_change_irq_handler: APSD_STATUS = 0x00\n[    2.676561] [<0>][352, kworker/0:5]pmi632_charger: chg_state_change_irq_handler: IRQ: determine-initial-status\n[    2.676575] [<0>][352, kworker/0:5]AWAKE: effective vote is now 1 voted by USBOV_DELAY_VOTER,0\n[    2.676597] [<0>][352, kworker/0:5]pmi632_charger: batt_temp_changed_irq_handler: IRQ: determine-initial-status\n[    2.676600] [<0>][352, kworker/0:5]pmi632_charger: wdog_bark_irq_handler: IRQ: determine-initial-status\n[    2.676611] [<0>][352, kworker/0:5]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: determine-initial-status\n[    2.676625] [<0>][352, kworker/0:5]pmi632_charger: wdog_snarl_irq_handler: IRQ: determine-initial-status\n[    2.678296] [<0>][365, kworker/0:7]pmi632_charger: smblib_get_irq_status: Couldn't read MISC_PBS_RT_STS_REG rc=-19\n[    2.678359] [<0>][365, kworker/0:7]pmi632_charger: smblib_get_prop_batt_status: WT batt_status  old=0,new=2\n[    2.681762] [<0>][373, kworker/0:8]of_batterydata_get_best_profile: profile id 330 batt id 331 pct 15\n[    2.681767] [<0>][373, kworker/0:8]of_batterydata_get_best_profile: S88512_mtp_Feimaotui_4V4_4030mAh found\n[    2.681794] [<0>][373, kworker/0:8]pmi632_charger: smblib_update_jeita: Hard Jeita threshold configured\n[    2.681820] [<0>][373, kworker/0:8]pmi632_charger: jeita_update_work: Couldn't get fcc values for soft JEITA rc=-22\n[    2.681830] [<0>][373, kworker/0:8]PL_ENABLE_INDIRECT: effective vote is now 0 voted by USBIN_I_VOTER,0\n[    2.681951] [<0>][373, kworker/0:8]USB_ICL_IRQ_DISABLE: effective vote is now 0 voted by USB_SUSPEND_VOTER,0\n[    2.681962] [<0>][373, kworker/0:8]pmi632_charger: smblib_run_aicl: re-running AICL\n[    2.681997] [<0>][373, kworker/0:8]FCC_MAIN: effective vote is now 3000000 voted by MAIN_FCC_VOTER,0\n[    2.683297] [<0>][352, kworker/0:5]USB_LIMITED_IRQ_DISABLE: effective vote is now 1 voted by CHARGER_TYPE_VOTER,0\n[    2.683301] [<0>][352, kworker/0:5]USB_HDC_IRQ_DISABLE: effective vote is now 1 voted by CHARGER_TYPE_VOTER,0\n[    2.683404] [<0>][352, kworker/0:5]pmi632_charger: smblib_run_aicl: re-running AICL\n[    2.683427] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 0 --> 1!\n[    2.683447] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[    2.683538] [<0>][352, kworker/0:5]SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    2.683555] [<0>][352, kworker/0:5]QPNP SMB5 probed successfully\n[    2.684294] [<0>][391, kworker/0:10]pmi632_charger: smblib_get_irq_status: Couldn't read MISC_PBS_RT_STS_REG rc=-19\n[    2.721231] [<0>][352, kworker/0:5]sps:BAM 0x0000000008064000 is registered.\n[    2.722451] [<0>][352, kworker/0:5]coresight-stm 8002000.stm: STM32 initialized with master Enabled\n[    2.723198] [<0>][352, kworker/0:5]icnss: Recursive recovery allowed for WLAN\n[    2.726302] [<0>][352, kworker/0:5]icnss c800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    2.726452] [<0>][352, kworker/0:5]icnss: Platform driver probed successfully\n[    2.729244] [<0>][352, kworker/0:5]dwc3 4e00000.dwc3: changing max_speed on rev 00000000\n[    2.732100] [<0>][352, kworker/0:5]usb_bam_init: setting SPS_BAM_SMMU_EN flag with (4f04000.qcom,usbbam)\n[    2.732243] [<0>][352, kworker/0:5]sps:BAM 0x0000000004f04000 is registered.\n[    2.733476] [<0>][352, kworker/0:5]i2c_geni 4a84000.i2c: i2c error :-107\n[    2.733636] [<0>][352, kworker/0:5]i2c_geni 4a84000.i2c: i2c error :-107\n[    2.733749] [<0>][352, kworker/0:5]i2c_geni 4a84000.i2c: i2c error :-107\n[    2.733881] [<0>][352, kworker/0:5]i2c_geni 4a84000.i2c: i2c error :-107\n[    2.733985] [<0>][352, kworker/0:5]i2c_geni 4a84000.i2c: i2c error :-107\n[    2.734088] [<0>][352, kworker/0:5]i2c_geni 4a84000.i2c: i2c error :-107\n[    2.734192] [<0>][352, kworker/0:5]i2c_geni 4a84000.i2c: i2c error :-107\n[    2.734295] [<0>][352, kworker/0:5]i2c_geni 4a84000.i2c: i2c error :-107\n[    2.734434] [<0>][352, kworker/0:5]i2c_geni 4a84000.i2c: i2c error :-107\n[    2.734538] [<0>][352, kworker/0:5]i2c_geni 4a84000.i2c: i2c error :-107\n[    2.734578] [<0>][352, kworker/0:5]i2c_pmic 0-0009: could not find pctldev for node /soc/i2c@4a84000/qcom,pm8008@8/pinctrl@c000/gpio1_active/pm8008_gpio1_active, deferring probe\n[    2.736344] [<0>][1, swapper/0]registered taskstats version 1\n[    2.736354] [<0>][1, swapper/0]page_owner is disabled\n[    2.743534] [<0>][78, kworker/u16:1]msm-dwc3 4e00000.ssusb: DWC3 exited from low power mode\n[    2.746768] [<0>][78, kworker/u16:1]msm-dwc3 4e00000.ssusb: DWC3 in low power mode\n[    2.757672] [<0>][285, kworker/0:3]mmc0: new ultra high speed SDR104 SDHC card at address 0001\n[    2.766968] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[    2.767256] [<0>][285, kworker/0:3]mmcblk0: mmc0:0001 SD16G 14.6 GiB \n[    2.768729] [<0>][285, kworker/0:3] mmcblk0:\n[    2.830627] [<0>][1, swapper/0]ADSPRPC: Secure VMID = 22\n[    2.830631] [<0>][1, swapper/0]ADSPRPC: Secure VMID = 37\n[    2.831156] [<0>][1, swapper/0]iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 27\n[    2.831933] [<0>][1, swapper/0]iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 28\n[    2.832538] [<0>][1, swapper/0]iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 29\n[    2.833109] [<0>][1, swapper/0]iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 30\n[    2.833669] [<0>][1, swapper/0]iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 31\n[    2.834233] [<0>][1, swapper/0]iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 32\n[    2.834805] [<0>][1, swapper/0]iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 33\n[    2.836380] [<0>][1, swapper/0]iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 34\n[    2.838568] [<0>][285, kworker/0:3]i2c_pmic 0-0009: could not find pctldev for node /soc/i2c@4a84000/qcom,pm8008@8/pinctrl@c000/gpio1_active/pm8008_gpio1_active, deferring probe\n[    2.840058] [<0>][1, swapper/0]iommu: Adding device a340000.slim:qcom,iommu_slim_ctrl_cb to group 35\n[    2.840580] [<0>][285, kworker/0:3]i2c_pmic 0-0009: could not find pctldev for node /soc/i2c@4a84000/qcom,pm8008@8/pinctrl@c000/gpio1_active/pm8008_gpio1_active, deferring probe\n[    2.843863] [<0>][1, swapper/0]input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    2.843960] [<0>][285, kworker/0:3]i2c_pmic 0-0009: could not find pctldev for node /soc/i2c@4a84000/qcom,pm8008@8/pinctrl@c000/gpio1_active/pm8008_gpio1_active, deferring probe\n[    2.845007] [<0>][1, swapper/0]qcom,qpnp-rtc 1c40000.qcom,spmi:qcom,pm6125@0:qcom,pm6125_rtc: setting system clock to 1970-02-05 05:19:07 UTC (3043147)\n[    2.846660] [<0>][285, kworker/0:3]i2c_pmic 0-0009: could not find pctldev for node /soc/i2c@4a84000/qcom,pm8008@8/pinctrl@c000/gpio1_active/pm8008_gpio1_active, deferring probe\n[    2.848270] [<0>][1, swapper/0]lpm_levels: register_cluster_lpm_stats()\n[    2.848436] [<0>][1, swapper/0]lpm_levels: register_cluster_lpm_stats()\n[    2.849072] [<0>][285, kworker/0:3]i2c_pmic 0-0009: could not find pctldev for node /soc/i2c@4a84000/qcom,pm8008@8/pinctrl@c000/gpio1_active/pm8008_gpio1_active, deferring probe\n[    2.853085] [<0>][1, swapper/0]rmnet_ipa3 started initialization\n[    2.853802] [<0>][285, kworker/0:3]RNDIS_IPA module is loaded.\n[    2.853854] [<0>][285, kworker/0:3]i2c_pmic 0-0009: could not find pctldev for node /soc/i2c@4a84000/qcom,pm8008@8/pinctrl@c000/gpio1_active/pm8008_gpio1_active, deferring probe\n[    2.857182] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[    2.858339] [<0>][1, swapper/0]dbu1: disabling\n[    2.858490] [<0>][1, swapper/0]i2c_geni 4a84000.i2c: i2c error :-107\n[    2.858496] [<0>][1, swapper/0]PM8008: pm8008_read: failed to read 0x0950\n[    2.858498] [<0>][1, swapper/0]PM8008: pm8008_enable_regulator_is_enabled: qcom,pm8008-chip-en: failed to get chip state rc=-107\n[    2.858500] [<0>][1, swapper/0]pm8008-chip-en: disabling\n[    2.858605] [<0>][1, swapper/0]i2c_geni 4a84000.i2c: i2c error :-107\n[    2.858610] [<0>][1, swapper/0]PM8008: pm8008_masked_write: failed to write 0x00 to 0x0950 with mask 0x01\n[    2.858612] [<0>][1, swapper/0]PM8008: pm8008_enable_regulator_disable: qcom,pm8008-chip-en: failed to disable chip rc=-107\n[    2.858614] [<0>][1, swapper/0]pm8008-chip-en: couldn't disable: -107\n[    2.858617] [<0>][1, swapper/0]regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    2.858679] [<0>][1, swapper/0]ALSA device list:\n[    2.858680] [<0>][1, swapper/0]  No soundcards found.\n[    2.858720] [<0>][1, swapper/0]Warning: unable to open an initial console.\n[    2.860261] [<0>][1, swapper/0]Freeing unused kernel memory: 6144K\n[    2.947394] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[    2.970200] [<0>][365, kworker/0:7]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[    2.970215] [<0>][365, kworker/0:7]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[    2.971804] [<0>][365, kworker/0:7]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[    2.971820] [<0>][365, kworker/0:7]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[    2.971848] [<0>][365, kworker/0:7]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[    3.065032] [<0>][433, tee]\n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    3.065233] [<0>][433, tee]cpu1 \n[    3.065286] [<0>][433, tee]cpu4 \n[    3.065328] [<0>][433, tee]\n               Offline CPUs: \n[    3.066601] [<0>][432, python3]cpu1 \n[    3.067874] [<0>][432, python3]CPU1: shutdown\n[    3.068600] [<0>][432, python3]cpu2 \n[    3.070751] [<0>][432, python3]CPU2: shutdown\n[    3.071527] [<0>][432, python3]cpu3 \n[    3.073701] [<0>][432, python3]CPU3: shutdown\n[    3.074420] [<0>][432, python3]cpu4 \n[    3.076038] [<0>][432, python3]CPU4: shutdown\n[    3.076588] [<0>][432, python3]cpu5 \n[    3.077645] [<0>][432, python3]CPU5: shutdown\n[    3.078375] [<0>][432, python3]cpu6 \n[    3.079085] [<0>][432, python3]CPU6: shutdown\n[    3.079811] [<7>][66, migration/7]cpu7 \n[    3.081356] [<7>][66, migration/7]IRQ 7: no longer affine to CPU7\n[    3.081452] [<0>][432, python3]CPU7: shutdown\n[    3.082810] [<0>][285, kworker/0:3]\n               Sampling power every 250 ms\n               Baseline power usage: \n[    3.681282] [<0>][285, kworker/0:3]pmi632_charger: smblib_icl_change_work: icl_settled=0\n[    3.681605] [<0>][285, kworker/0:3]pmi632_charger: smblib_get_irq_status: Couldn't read MISC_PBS_RT_STS_REG rc=-19\n[    4.721787] [<0>][285, kworker/0:3]of_batterydata_get_best_profile: profile id 330 batt id 331 pct 15\n[    4.721809] [<0>][285, kworker/0:3]of_batterydata_get_best_profile: S88512_mtp_Feimaotui_4V4_4030mAh found\n[    4.721845] [<0>][285, kworker/0:3]QCOM-STEPCHG: read_range_data_from_node: Count qcom,step-chg-ranges failed, rc=-22\n[    4.721860] [<0>][285, kworker/0:3]QCOM-STEPCHG: read_range_data_from_node: Count qcom,jeita-fcc-ranges failed, rc=-22\n[   13.314949] [<0>][382, kworker/0:9]***temp=244,v_batt=4294mV,c_batt=236mA,cap=98,status=2,charge_type=1,batt_p=1,usb_p=0,usb_v=0mV,chg_done=0\n[   13.314960] [<0>][382, kworker/0:9]WT temp change\n[   53.723566] [<0>][362, irq/242-qg-fifo]QG_WS: effective vote is now 1 voted by FIFO_DONE_VOTER,0\n[   63.048959] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[   63.049013] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[   63.139175] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[   63.229422] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[   63.319676] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[   63.341363] [<0>][91, kworker/0:2]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[   63.341401] [<0>][91, kworker/0:2]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[   63.343051] [<0>][91, kworker/0:2]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[   63.343084] [<0>][91, kworker/0:2]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[   63.343139] [<0>][91, kworker/0:2]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[   78.543814] [<1>][0, swapper/1]GICv3: CPU1: found redistributor 1 region 0:0x000000000f320000\n[   78.543944] [<1>][0, swapper/1]CPU1: Booted secondary processor [51af8014]\n[   78.552586] [<0>][385, irq/276-typec-o]1003 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 614 864 1017 1305 1420 1612 1804\n               \n                300: \n[  123.430483] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  123.430530] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[  123.520940] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  123.611190] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  123.701219] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  123.730557] [<0>][348, kworker/0:4]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[  123.730603] [<0>][348, kworker/0:4]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  123.731936] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  123.732244] [<0>][348, kworker/0:4]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[  123.732276] [<0>][348, kworker/0:4]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  123.732329] [<0>][348, kworker/0:4]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[  183.752418] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  183.752462] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[  183.842682] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  183.932902] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  184.023138] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  184.050509] [<0>][348, kworker/0:4]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[  184.050543] [<0>][348, kworker/0:4]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  184.052186] [<0>][348, kworker/0:4]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[  184.052219] [<0>][348, kworker/0:4]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  184.052272] [<0>][348, kworker/0:4]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[  244.134092] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  244.134137] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[  244.224321] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  244.314591] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  244.404830] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  244.430548] [<0>][75, kworker/0:1]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[  244.430583] [<0>][75, kworker/0:1]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  244.432228] [<0>][75, kworker/0:1]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[  244.432261] [<0>][75, kworker/0:1]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  244.432314] [<0>][75, kworker/0:1]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[  304.514222] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  304.514269] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[  304.604437] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  304.694692] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  304.784962] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  304.810509] [<0>][91, kworker/0:2]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[  304.810543] [<0>][91, kworker/0:2]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  304.812187] [<0>][91, kworker/0:2]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[  304.812220] [<0>][91, kworker/0:2]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  304.812273] [<0>][91, kworker/0:2]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[  305.120547] [<0>][4, kworker/0:0]servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120581] [<0>][4, kworker/0:0]servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120605] [<0>][4, kworker/0:0]audio_notifer_reg_service: service SSR_ADSP is in use\n[  305.121413] [<0>][391, kworker/0:10]servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121489] [<0>][352, kworker/0:5]servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121499] [<0>][352, kworker/0:5]ADSPRPC: Audio PD restart notifier locator down\n[  305.121531] [<0>][355, kworker/0:6]servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121540] [<0>][355, kworker/0:6]ADSPRPC: Audio PD restart notifier locator down\n[  320.512896] [<0>][355, kworker/0:6]***temp=247,v_batt=4271mV,c_batt=240mA,cap=98,status=2,charge_type=1,batt_p=1,usb_p=0,usb_v=0mV,chg_done=0\n[  343.480106] [<0>][385, irq/276-typec-o]  974     3.2 C/MHz     34 mW    8.6 J   28.9 I/mJ   256.6 s\n                614: \n[  364.899434] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  364.899468] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[  364.989718] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  365.079924] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  365.170199] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  365.190263] [<0>][355, kworker/0:6]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[  365.190286] [<0>][355, kworker/0:6]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  365.192071] [<0>][355, kworker/0:6]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[  365.192094] [<0>][355, kworker/0:6]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  365.192133] [<0>][355, kworker/0:6]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[  425.280652] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  425.280685] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[  425.370892] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  425.461160] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  425.551406] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  425.580383] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[  425.580421] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  425.581900] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  425.582025] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[  425.582048] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  425.582087] [<0>][352, kworker/0:5]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[  477.003238] [<0>][385, irq/276-typec-o] 1995     3.2 C/MHz     52 mW    6.5 J   38.7 I/mJ   125.3 s\n                864: \n[  485.603894] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  485.603923] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[  485.694134] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  485.784372] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  485.874620] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  485.900323] [<0>][355, kworker/0:6]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[  485.900345] [<0>][355, kworker/0:6]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  485.902103] [<0>][355, kworker/0:6]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[  485.902122] [<0>][355, kworker/0:6]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  485.902157] [<0>][355, kworker/0:6]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[  545.985164] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  545.985193] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[  546.075402] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  546.165648] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  546.255937] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  546.280348] [<0>][391, kworker/0:10]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[  546.280370] [<0>][391, kworker/0:10]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  546.281961] [<0>][391, kworker/0:10]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[  546.281981] [<0>][391, kworker/0:10]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  546.282016] [<0>][391, kworker/0:10]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[  574.408038] [<0>][385, irq/276-typec-o] 2806     3.2 C/MHz     68 mW    6.1 J   41.2 I/mJ    89.1 s\n               1017: \n[  606.363871] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  606.363899] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[  606.454107] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  606.544336] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  606.634578] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  606.660307] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[  606.660327] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  606.661913] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[  606.661932] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  606.661965] [<0>][352, kworker/0:5]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[  627.712443] [<0>][453, kworker/0:1]***temp=251,v_batt=4257mV,c_batt=256mA,cap=98,status=2,charge_type=1,batt_p=1,usb_p=0,usb_v=1mV,chg_done=0\n[  658.443614] [<0>][385, irq/276-typec-o] 3304     3.2 C/MHz     79 mW    6.0 J   41.6 I/mJ    75.7 s\n               1305: \n[  666.739131] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  666.739158] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[  666.829365] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  666.919627] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  667.009864] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  667.030297] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[  667.030316] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  667.031896] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[  667.031914] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  667.031945] [<0>][352, kworker/0:5]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[  725.607376] [<0>][385, irq/276-typec-o] 4240     3.2 C/MHz    114 mW    6.7 J   37.1 I/mJ    59.0 s\n               1420: \n[  727.116910] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  727.116942] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[  727.207142] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  727.297382] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  727.387617] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  727.411118] [<0>][355, kworker/0:6]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[  727.411140] [<0>][355, kworker/0:6]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  727.412722] [<0>][355, kworker/0:6]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[  727.412739] [<0>][355, kworker/0:6]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  727.412770] [<0>][355, kworker/0:6]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[  787.491353] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  787.491380] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[  787.581565] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  787.671799] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  787.762065] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  787.790285] [<0>][453, kworker/0:1]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[  787.790304] [<0>][453, kworker/0:1]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  787.792032] [<0>][453, kworker/0:1]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[  787.792048] [<0>][453, kworker/0:1]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  787.792078] [<0>][453, kworker/0:1]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[  787.988345] [<0>][433, tee] 4614     3.2 C/MHz    132 mW    7.2 J   34.9 I/mJ    54.2 s\n               1612: \n[  844.078191] [<0>][385, irq/276-typec-o] 5237     3.2 C/MHz    171 mW    8.1 J   30.7 I/mJ    47.7 s\n               1804: \n[  847.866485] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  847.866517] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[  847.956708] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  848.046949] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  848.137179] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  848.161107] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[  848.161129] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  848.162709] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[  848.162724] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  848.162757] [<0>][352, kworker/0:5]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[  894.893725] [<0>][432, python3]CPU1: shutdown\n[  894.899053] [<4>][0, swapper/4]GICv3: CPU4: found redistributor 100 region 0:0x000000000f380000\n[  894.899108] [<4>][0, swapper/4]arch_timer: CPU4: Trapping CNTVCT access\n[  894.899122] [<4>][0, swapper/4]CPU4: Booted secondary processor [51af8002]\n[  894.906578] [<0>][385, irq/276-typec-o] 5861     3.2 C/MHz    223 mW    9.5 J   26.3 I/mJ    42.7 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 300 652 902 1056 1401 1536 1804 2016\n               \n                300: \n[  908.235632] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  908.235684] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[  908.325856] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  908.416091] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  908.506321] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  908.531323] [<0>][355, kworker/0:6]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[  908.531361] [<0>][355, kworker/0:6]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  908.533011] [<0>][355, kworker/0:6]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[  908.533044] [<0>][355, kworker/0:6]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  908.533098] [<0>][355, kworker/0:6]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[  934.914352] [<0>][355, kworker/0:6]***temp=255,v_batt=4244mV,c_batt=256mA,cap=98,status=2,charge_type=1,batt_p=1,usb_p=0,usb_v=0mV,chg_done=0\n[  968.603804] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  968.603856] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[  968.694001] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  968.784233] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  968.874460] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[  968.901266] [<0>][470, kworker/0:0]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[  968.901304] [<0>][470, kworker/0:0]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  968.903224] [<0>][470, kworker/0:0]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[  968.903256] [<0>][470, kworker/0:0]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[  968.903311] [<0>][470, kworker/0:0]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[ 1028.968551] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1028.968602] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[ 1029.058769] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1029.148997] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1029.239231] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1029.261370] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[ 1029.261409] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[ 1029.263061] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[ 1029.263093] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[ 1029.263147] [<0>][352, kworker/0:5]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[ 1062.487891] [<0>][385, irq/276-typec-o] 1569     5.2 C/MHz     70 mW   11.2 J   22.4 I/mJ   159.3 s\n                652: \n[ 1089.331507] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1089.331556] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[ 1089.421476] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1089.512578] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1089.602795] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1089.631270] [<0>][355, kworker/0:6]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[ 1089.631320] [<0>][355, kworker/0:6]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[ 1089.632664] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1089.632966] [<0>][355, kworker/0:6]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[ 1089.632998] [<0>][355, kworker/0:6]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[ 1089.633051] [<0>][355, kworker/0:6]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[ 1144.162512] [<0>][385, irq/276-typec-o] 3414     5.2 C/MHz    115 mW    8.4 J   29.6 I/mJ    73.3 s\n                902: \n[ 1149.716521] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1149.716575] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[ 1149.805723] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1149.896923] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1149.987135] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1150.011361] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[ 1150.011399] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[ 1150.013049] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[ 1150.013081] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[ 1150.013136] [<0>][352, kworker/0:5]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[ 1205.562973] [<0>][385, irq/276-typec-o] 4723     5.2 C/MHz    154 mW    8.2 J   30.6 I/mJ    52.9 s\n               1056: \n[ 1210.059216] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1210.059269] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[ 1210.149375] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1210.239573] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1210.329766] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1210.351207] [<0>][470, kworker/0:0]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[ 1210.351245] [<0>][470, kworker/0:0]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[ 1210.353574] [<0>][470, kworker/0:0]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[ 1210.353606] [<0>][470, kworker/0:0]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[ 1210.353661] [<0>][470, kworker/0:0]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[ 1242.124330] [<0>][480, kworker/0:2]***temp=272,v_batt=4231mV,c_batt=278mA,cap=98,status=2,charge_type=1,batt_p=1,usb_p=0,usb_v=0mV,chg_done=0\n[ 1259.102421] [<0>][385, irq/276-typec-o] 5524     5.2 C/MHz    185 mW    8.4 J   29.9 I/mJ    45.3 s\n               1401: \n[ 1270.389409] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1270.389461] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[ 1270.479559] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1270.569733] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1270.659917] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1270.681109] [<0>][480, kworker/0:2]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[ 1270.681147] [<0>][480, kworker/0:2]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[ 1270.683072] [<0>][480, kworker/0:2]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[ 1270.683104] [<0>][480, kworker/0:2]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[ 1270.683158] [<0>][480, kworker/0:2]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[ 1301.497462] [<0>][480, kworker/0:2] 7333     5.2 C/MHz    289 mW    9.9 J   25.3 I/mJ    34.1 s\n               1536: \n[ 1303.554923] [<0>][480, kworker/0:2]WT temp change\n[ 1330.710561] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1330.710607] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[ 1330.801082] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1330.891078] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1330.981125] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1331.011199] [<0>][480, kworker/0:2]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[ 1331.011249] [<0>][480, kworker/0:2]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[ 1331.012597] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1331.012893] [<0>][480, kworker/0:2]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[ 1331.012925] [<0>][480, kworker/0:2]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[ 1331.012979] [<0>][480, kworker/0:2]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[ 1340.854393] [<0>][433, tee] 8038     5.2 C/MHz    344 mW   10.7 J   23.4 I/mJ    31.1 s\n               1804: \n[ 1375.646621] [<0>][385, irq/276-typec-o] 9433     5.2 C/MHz    469 mW   12.4 J   20.1 I/mJ    26.5 s\n               2016: \n[ 1391.054956] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1391.055007] [<0>][385, irq/276-typec-o]AWAKE: effective vote is now 1 voted by LPD_VOTER,1\n[ 1391.145100] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1391.235245] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1391.325394] [<0>][385, irq/276-typec-o]pmi632_charger: typec_or_rid_detection_change_irq_handler: IRQ: typec-or-rid-detect-change\n[ 1391.351201] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 3!\n[ 1391.351239] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[ 1391.353159] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: power role change: 3 --> 1!\n[ 1391.353192] [<0>][352, kworker/0:5]pmi632_charger: smblib_set_prop_typec_power_role: snk_attached = 0, src_attached = 0, is_pr_lock = 0\n[ 1391.353246] [<0>][352, kworker/0:5]AWAKE: effective vote is now 0 voted by LPD_VOTER,1\n[ 1407.664079] [<0>][432, python3]CPU4: shutdown\n[ 1407.696609] [<0>][433, tee]10554     5.2 C/MHz    596 mW   14.1 J   17.7 I/mJ    23.7 s\n               \n               \n               Benchmark finished!\n[ 1407.729377] [<0>][1, bash]\n               real\t23m24.850s\n               user\t20m2.663s\n               sys\t0m3.743s\n"
  },
  {
    "path": "results/sm6125/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  2:          0   mpm-gic 229 Edge      mpm\n  5:       3666   mpm-gic  19 Level     arch_timer\n  7:     143127   mpm-gic  39 Level     arch_mem_timer\n 13:        359   mpm-gic 388 Edge      4804000.ufshc\n 14:          0   mpm-gic 307 Level     tsens-upper-lower\n 15:          0   mpm-gic 222 Level     tsens-critical\n 16:          0   mpm-gic  22 Level     arm-pmu\n 17:          0   mpm-gic 221 Level     eud_irq\n 19:          0   mpm-gic 339 Edge      modem\n 20:        296   mpm-gic 226 Edge      glink-native\n 21:          0   mpm-gic  35 Edge      apps_wdog_bark\n 39:          0   mpm-gic 428 Edge      adsp\n 40:          0   mpm-gic 297 Edge      cdsp\n 41:          0   mpm-gic 102 Edge      smp2p\n 42:          0   mpm-gic 425 Edge      smp2p\n 43:          0   mpm-gic 295 Edge      smp2p\n 45:          0   mpm-gic 279 Level     sps\n 46:          0   mpm-gic 435 Level     ngd_slim_irq\n 50:        100   mpm-gic 382 Edge      mmc0\n 51:          3   mpm-gic 385 Edge      4784000.sdhci\n 56:        267   mpm-gic 360 Level     i2c_geni\n 57:         26   mpm-gic 361 Level     i2c_geni\n 58:          0   mpm-gic 359 Level     spi_geni\n 61:        541  pmic_arb 588251286 Edge      pm-adc5\n 62:          0  pmic_arb 592445591 Edge      thr-int-en\n 63:          0  pmic_arb 574619795 Edge      qcom,temp-alarm\n 72:          0  pmic_arb 600834202 Edge      bcl-lvl0\n 73:          0  pmic_arb 600899738 Edge      bcl-lvl1\n 74:          0  pmic_arb 600965274 Edge      bcl-lvl2\n 75:          0  pmic_arb 1052836021 Edge      qpnp_lcdb_sc_irq\n 76:          0  pmic_arb 1026556084 Edge      qpnp_flash_led_fault_irq\n 77:          0  pmic_arb 1026752692 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 78:          0  pmic_arb 1026818228 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 79:          0  pmic_arb 8388720 Edge      pon_kpdpwr_status\n 80:          0  pmic_arb 8454256 Edge      pon_resin_status\n 81:        840  pmic_arb 51380338 Edge      pm-adc5\n 82:          0  pmic_arb 55574643 Edge      thr-int-en\n 83:          0  pmic_arb 37748849 Edge      qcom,temp-alarm\n 88:          0  pmic_arb 205521020 Edge      volume_up\n 93:          0   mpm-gic 334 Edge      pwr_event_irq\n 94:          0   mpm-gic 454 Level     ss_phy_irq\n 95:          0   mpm-gic 292 Edge      hs_phy_irq\n 96:          0   mpm-gic 104 Edge      csiphy\n 97:          0   mpm-gic 105 Edge      csiphy\n 98:          0   mpm-gic 106 Edge      csiphy\n 99:          0   mpm-gic 240 Edge      csid\n100:          0   mpm-gic 241 Edge      csid\n101:          0   mpm-gic 242 Edge      csid\n102:          0   mpm-gic 243 Edge      csid\n104:          0   mpm-gic 244 Edge      ispif\n105:          0   mpm-gic 246 Edge      vfe\n106:          0   mpm-gic 290 Edge      dual-vfe-irq\n107:          0   mpm-gic 247 Edge      vfe\n108:          6   mpm-gic 239 Edge      cci\n111:          0   mpm-gic 195 Level     arm-smmu global fault\n112:          0   mpm-gic 199 Level     arm-smmu-context-fault\n120:          0   mpm-gic 113 Level     arm-smmu global fault\n122:          0   mpm-gic 121 Level     arm-smmu-context-fault\n124:          0   mpm-gic 123 Level     arm-smmu-context-fault\n125:          0   mpm-gic 124 Level     arm-smmu-context-fault\n126:          0   mpm-gic 125 Level     arm-smmu-context-fault\n127:          0   mpm-gic 126 Level     arm-smmu-context-fault\n128:          0   mpm-gic 127 Level     arm-smmu-context-fault\n129:          0   mpm-gic 128 Level     arm-smmu-context-fault\n130:          0   mpm-gic 129 Level     arm-smmu-context-fault\n131:          0   mpm-gic 130 Level     arm-smmu-context-fault\n132:          0   mpm-gic 131 Level     arm-smmu-context-fault\n133:          0   mpm-gic 132 Level     arm-smmu-context-fault\n134:          0   mpm-gic 133 Level     arm-smmu-context-fault\n135:          0   mpm-gic 134 Level     arm-smmu-context-fault\n136:          0   mpm-gic 135 Level     arm-smmu-context-fault\n137:          0   mpm-gic 136 Level     arm-smmu-context-fault\n138:          0   mpm-gic 137 Level     arm-smmu-context-fault\n139:          0   mpm-gic 138 Level     arm-smmu-context-fault\n140:          0   mpm-gic 139 Level     arm-smmu-context-fault\n141:          0   mpm-gic 140 Level     arm-smmu-context-fault\n142:          0   mpm-gic 141 Level     arm-smmu-context-fault\n143:          0   mpm-gic 142 Level     arm-smmu-context-fault\n144:          0   mpm-gic 143 Level     arm-smmu-context-fault\n145:          0   mpm-gic 144 Level     arm-smmu-context-fault\n146:          0   mpm-gic 145 Level     arm-smmu-context-fault\n147:          0   mpm-gic 146 Level     arm-smmu-context-fault\n148:          0   mpm-gic 147 Level     arm-smmu-context-fault\n149:          0   mpm-gic 148 Level     arm-smmu-context-fault\n150:          0   mpm-gic 149 Level     arm-smmu-context-fault\n185:          0   mpm-gic 461 Edge      tmc-etr\n190:          0   mpm-gic 257 Level     msm_vidc\n191:          0   mpm-gic 209 Level     kgsl-3d0\n192:          0   mpm-gic 218 Edge      msm_drm\n205:          0   mpm-gic  69 Level     limits_sensor-00, limits_sensor-01\n206:          0   mpm-gic 208 Level     capture bus\n207:          0   mpm-gic 189 Level     capture bus\n208:          0   mpm-gic 190 Level     capture bus\n209:          0   mpm-gic 191 Level     capture bus\n210:          0   mpm-gic 192 Level     capture bus\n211:          0     smp2p   2 Edge      modem\n212:          0     smp2p   0 Edge      modem\n213:          0     smp2p   1 Edge      error_ready_interrupt\n214:          0     smp2p   3 Edge      modem\n215:          0     smp2p   7 Edge      modem\n216:          0     smp2p   2 Edge      adsp\n217:          0     smp2p   0 Edge      adsp\n218:          0     smp2p   1 Edge      error_ready_interrupt\n219:          0     smp2p   3 Edge      adsp\n220:          0     smp2p   2 Edge      cdsp\n221:          0     smp2p   0 Edge      cdsp\n222:          0     smp2p   1 Edge      error_ready_interrupt\n223:          0     smp2p   3 Edge      cdsp\n224:          0     smp2p   0 Edge      smp2p_sleepstate\n228:          0       sde   4 Edge      dsi_ctrl\n229:          0     GICv3 287 Edge      dwc3\n232:          0  pmic_arb 101777525 Edge      qpnp_rtc_alarm\n236:          0   msmgpio  88 Edge      fts_ts\n237:          0   msmgpio  98 Edge      4784000.sdhci cd\n238:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n240:          0  pmic_arb 612434075 Edge      qg-vbat-low\n241:          0  pmic_arb 612499611 Edge      qg-vbat-empty\n242:         27  pmic_arb 612565147 Edge      qg-fifo-done\n243:          0  pmic_arb 612630683 Edge      qg-good-ocv\n244:          0  pmic_arb 553648266 Edge      chgr-error\n245:          0  pmic_arb 553713802 Edge      chg-state-change\n252:          0  pmic_arb 554696843 Edge      otg-fail\n256:          0  pmic_arb 554958987 Edge      high-duty-cycle\n257:          0  pmic_arb 555024523 Edge      input-current-limiting\n259:          0  pmic_arb 555155595 Edge      switcher-power-ok\n260:          0  pmic_arb 555745420 Edge      bat-temp\n262:          0  pmic_arb 555876492 Edge      bat-ov\n263:          0  pmic_arb 555942028 Edge      bat-low\n264:          0  pmic_arb 556007564 Edge      bat-therm-or-id-missing\n265:          0  pmic_arb 556073100 Edge      bat-terminal-missing\n268:          0  pmic_arb 556793997 Edge      usbin-collapse\n269:          0  pmic_arb 556859533 Edge      usbin-vashdn\n270:          0  pmic_arb 556925069 Edge      usbin-uv\n271:          0  pmic_arb 556990605 Edge      usbin-ov\n272:          0  pmic_arb 557056141 Edge      usbin-plugin\n274:          0  pmic_arb 557187213 Edge      usbin-src-change\n275:          0  pmic_arb 557252749 Edge      usbin-icl-change\n276:         99  pmic_arb 558891150 Edge      typec-or-rid-detect-change\n278:          0  pmic_arb 559022222 Edge      typec-cc-state-change\n279:          0  pmic_arb 559087758 Edge      typec-vconn-oc\n281:          0  pmic_arb 559218830 Edge      typec-attach-detach\n282:          0  pmic_arb 559284366 Edge      typec-legacy-cable-detect\n284:          0  pmic_arb 559939727 Edge      wdog-snarl\n285:          0  pmic_arb 560005263 Edge      wdog-bark\n287:          0  pmic_arb 560136335 Edge      aicl-done\n288:          0  pmic_arb 560201871 Edge      smb-en\n290:          0  pmic_arb 560332943 Edge      temp-change\n292:          0  pmic_arb 711065759 Edge      flash-state-change\n294:          0  pmic_arb 711327903 Edge      ilim2-s2\nIPI0:       137       Rescheduling interrupts\nIPI1:         9       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:         0       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm6125/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  2:          0          0          0          0          0          0          0          0   mpm-gic 229 Edge      mpm\n  5:        605          2          2          2          3          2          2          1   mpm-gic  19 Level     arch_timer\n  7:          0          0          0          0          0          0          0          0   mpm-gic  39 Level     arch_mem_timer\n 13:        348          0          0          0          0          0          0          0   mpm-gic 388 Edge      4804000.ufshc\n 14:          0          0          0          0          0          0          0          0   mpm-gic 307 Level     tsens-upper-lower\n 15:          0          0          0          0          0          0          0          0   mpm-gic 222 Level     tsens-critical\n 16:          0          0          0          0          0          0          0          0   mpm-gic  22 Level     arm-pmu\n 17:          0          0          0          0          0          0          0          0   mpm-gic 221 Level     eud_irq\n 19:          0          0          0          0          0          0          0          0   mpm-gic 339 Edge      modem\n 20:        221          0          0          0          0          0          0          0   mpm-gic 226 Edge      glink-native\n 21:          0          0          0          0          0          0          0          0   mpm-gic  35 Edge      apps_wdog_bark\n 39:          0          0          0          0          0          0          0          0   mpm-gic 428 Edge      adsp\n 40:          0          0          0          0          0          0          0          0   mpm-gic 297 Edge      cdsp\n 41:          0          0          0          0          0          0          0          0   mpm-gic 102 Edge      smp2p\n 42:          0          0          0          0          0          0          0          0   mpm-gic 425 Edge      smp2p\n 43:          0          0          0          0          0          0          0          0   mpm-gic 295 Edge      smp2p\n 45:          0          0          0          0          0          0          0          0   mpm-gic 279 Level     sps\n 46:          0          0          0          0          0          0          0          0   mpm-gic 435 Level     ngd_slim_irq\n 50:         99          0          0          0          0          0          0          0   mpm-gic 382 Edge      mmc0\n 51:          2          0          0          0          0          0          0          0   mpm-gic 385 Edge      4784000.sdhci\n 56:        267          0          0          0          0          0          0          0   mpm-gic 360 Level     i2c_geni\n 57:         26          0          0          0          0          0          0          0   mpm-gic 361 Level     i2c_geni\n 58:          0          0          0          0          0          0          0          0   mpm-gic 359 Level     spi_geni\n 61:         21          0          0          0          0          0          0          0  pmic_arb 588251286 Edge      pm-adc5\n 62:          0          0          0          0          0          0          0          0  pmic_arb 592445591 Edge      thr-int-en\n 63:          0          0          0          0          0          0          0          0  pmic_arb 574619795 Edge      qcom,temp-alarm\n 72:          0          0          0          0          0          0          0          0  pmic_arb 600834202 Edge      bcl-lvl0\n 73:          0          0          0          0          0          0          0          0  pmic_arb 600899738 Edge      bcl-lvl1\n 74:          0          0          0          0          0          0          0          0  pmic_arb 600965274 Edge      bcl-lvl2\n 75:          0          0          0          0          0          0          0          0  pmic_arb 1052836021 Edge      qpnp_lcdb_sc_irq\n 76:          0          0          0          0          0          0          0          0  pmic_arb 1026556084 Edge      qpnp_flash_led_fault_irq\n 77:          0          0          0          0          0          0          0          0  pmic_arb 1026752692 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 78:          0          0          0          0          0          0          0          0  pmic_arb 1026818228 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 79:          0          0          0          0          0          0          0          0  pmic_arb 8388720 Edge      pon_kpdpwr_status\n 80:          0          0          0          0          0          0          0          0  pmic_arb 8454256 Edge      pon_resin_status\n 81:          6          0          0          0          0          0          0          0  pmic_arb 51380338 Edge      pm-adc5\n 82:          0          0          0          0          0          0          0          0  pmic_arb 55574643 Edge      thr-int-en\n 83:          0          0          0          0          0          0          0          0  pmic_arb 37748849 Edge      qcom,temp-alarm\n 88:          0          0          0          0          0          0          0          0  pmic_arb 205521020 Edge      volume_up\n 93:          0          0          0          0          0          0          0          0   mpm-gic 334 Edge      pwr_event_irq\n 94:          0          0          0          0          0          0          0          0   mpm-gic 454 Level     ss_phy_irq\n 95:          0          0          0          0          0          0          0          0   mpm-gic 292 Edge      hs_phy_irq\n 96:          0          0          0          0          0          0          0          0   mpm-gic 104 Edge      csiphy\n 97:          0          0          0          0          0          0          0          0   mpm-gic 105 Edge      csiphy\n 98:          0          0          0          0          0          0          0          0   mpm-gic 106 Edge      csiphy\n 99:          0          0          0          0          0          0          0          0   mpm-gic 240 Edge      csid\n100:          0          0          0          0          0          0          0          0   mpm-gic 241 Edge      csid\n101:          0          0          0          0          0          0          0          0   mpm-gic 242 Edge      csid\n102:          0          0          0          0          0          0          0          0   mpm-gic 243 Edge      csid\n104:          0          0          0          0          0          0          0          0   mpm-gic 244 Edge      ispif\n105:          0          0          0          0          0          0          0          0   mpm-gic 246 Edge      vfe\n106:          0          0          0          0          0          0          0          0   mpm-gic 290 Edge      dual-vfe-irq\n107:          0          0          0          0          0          0          0          0   mpm-gic 247 Edge      vfe\n108:          6          0          0          0          0          0          0          0   mpm-gic 239 Edge      cci\n111:          0          0          0          0          0          0          0          0   mpm-gic 195 Level     arm-smmu global fault\n112:          0          0          0          0          0          0          0          0   mpm-gic 199 Level     arm-smmu-context-fault\n120:          0          0          0          0          0          0          0          0   mpm-gic 113 Level     arm-smmu global fault\n122:          0          0          0          0          0          0          0          0   mpm-gic 121 Level     arm-smmu-context-fault\n124:          0          0          0          0          0          0          0          0   mpm-gic 123 Level     arm-smmu-context-fault\n125:          0          0          0          0          0          0          0          0   mpm-gic 124 Level     arm-smmu-context-fault\n126:          0          0          0          0          0          0          0          0   mpm-gic 125 Level     arm-smmu-context-fault\n127:          0          0          0          0          0          0          0          0   mpm-gic 126 Level     arm-smmu-context-fault\n128:          0          0          0          0          0          0          0          0   mpm-gic 127 Level     arm-smmu-context-fault\n129:          0          0          0          0          0          0          0          0   mpm-gic 128 Level     arm-smmu-context-fault\n130:          0          0          0          0          0          0          0          0   mpm-gic 129 Level     arm-smmu-context-fault\n131:          0          0          0          0          0          0          0          0   mpm-gic 130 Level     arm-smmu-context-fault\n132:          0          0          0          0          0          0          0          0   mpm-gic 131 Level     arm-smmu-context-fault\n133:          0          0          0          0          0          0          0          0   mpm-gic 132 Level     arm-smmu-context-fault\n134:          0          0          0          0          0          0          0          0   mpm-gic 133 Level     arm-smmu-context-fault\n135:          0          0          0          0          0          0          0          0   mpm-gic 134 Level     arm-smmu-context-fault\n136:          0          0          0          0          0          0          0          0   mpm-gic 135 Level     arm-smmu-context-fault\n137:          0          0          0          0          0          0          0          0   mpm-gic 136 Level     arm-smmu-context-fault\n138:          0          0          0          0          0          0          0          0   mpm-gic 137 Level     arm-smmu-context-fault\n139:          0          0          0          0          0          0          0          0   mpm-gic 138 Level     arm-smmu-context-fault\n140:          0          0          0          0          0          0          0          0   mpm-gic 139 Level     arm-smmu-context-fault\n141:          0          0          0          0          0          0          0          0   mpm-gic 140 Level     arm-smmu-context-fault\n142:          0          0          0          0          0          0          0          0   mpm-gic 141 Level     arm-smmu-context-fault\n143:          0          0          0          0          0          0          0          0   mpm-gic 142 Level     arm-smmu-context-fault\n144:          0          0          0          0          0          0          0          0   mpm-gic 143 Level     arm-smmu-context-fault\n145:          0          0          0          0          0          0          0          0   mpm-gic 144 Level     arm-smmu-context-fault\n146:          0          0          0          0          0          0          0          0   mpm-gic 145 Level     arm-smmu-context-fault\n147:          0          0          0          0          0          0          0          0   mpm-gic 146 Level     arm-smmu-context-fault\n148:          0          0          0          0          0          0          0          0   mpm-gic 147 Level     arm-smmu-context-fault\n149:          0          0          0          0          0          0          0          0   mpm-gic 148 Level     arm-smmu-context-fault\n150:          0          0          0          0          0          0          0          0   mpm-gic 149 Level     arm-smmu-context-fault\n185:          0          0          0          0          0          0          0          0   mpm-gic 461 Edge      tmc-etr\n190:          0          0          0          0          0          0          0          0   mpm-gic 257 Level     msm_vidc\n191:          0          0          0          0          0          0          0          0   mpm-gic 209 Level     kgsl-3d0\n192:          0          0          0          0          0          0          0          0   mpm-gic 218 Edge      msm_drm\n205:          0          0          0          0          0          0          0          0   mpm-gic  69 Level     limits_sensor-00, limits_sensor-01\n206:          0          0          0          0          0          0          0          0   mpm-gic 208 Level     capture bus\n207:          0          0          0          0          0          0          0          0   mpm-gic 189 Level     capture bus\n208:          0          0          0          0          0          0          0          0   mpm-gic 190 Level     capture bus\n209:          0          0          0          0          0          0          0          0   mpm-gic 191 Level     capture bus\n210:          0          0          0          0          0          0          0          0   mpm-gic 192 Level     capture bus\n211:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n212:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n213:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n214:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n215:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n216:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n217:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n218:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n219:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n220:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n221:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n222:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n223:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n224:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n228:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n229:          0          0          0          0          0          0          0          0     GICv3 287 Edge      dwc3\n232:          0          0          0          0          0          0          0          0  pmic_arb 101777525 Edge      qpnp_rtc_alarm\n236:          0          0          0          0          0          0          0          0   msmgpio  88 Edge      fts_ts\n237:          0          0          0          0          0          0          0          0   msmgpio  98 Edge      4784000.sdhci cd\n238:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n240:          0          0          0          0          0          0          0          0  pmic_arb 612434075 Edge      qg-vbat-low\n241:          0          0          0          0          0          0          0          0  pmic_arb 612499611 Edge      qg-vbat-empty\n242:          0          0          0          0          0          0          0          0  pmic_arb 612565147 Edge      qg-fifo-done\n243:          0          0          0          0          0          0          0          0  pmic_arb 612630683 Edge      qg-good-ocv\n244:          0          0          0          0          0          0          0          0  pmic_arb 553648266 Edge      chgr-error\n245:          0          0          0          0          0          0          0          0  pmic_arb 553713802 Edge      chg-state-change\n252:          0          0          0          0          0          0          0          0  pmic_arb 554696843 Edge      otg-fail\n256:          0          0          0          0          0          0          0          0  pmic_arb 554958987 Edge      high-duty-cycle\n257:          0          0          0          0          0          0          0          0  pmic_arb 555024523 Edge      input-current-limiting\n259:          0          0          0          0          0          0          0          0  pmic_arb 555155595 Edge      switcher-power-ok\n260:          0          0          0          0          0          0          0          0  pmic_arb 555745420 Edge      bat-temp\n262:          0          0          0          0          0          0          0          0  pmic_arb 555876492 Edge      bat-ov\n263:          0          0          0          0          0          0          0          0  pmic_arb 555942028 Edge      bat-low\n264:          0          0          0          0          0          0          0          0  pmic_arb 556007564 Edge      bat-therm-or-id-missing\n265:          0          0          0          0          0          0          0          0  pmic_arb 556073100 Edge      bat-terminal-missing\n268:          0          0          0          0          0          0          0          0  pmic_arb 556793997 Edge      usbin-collapse\n269:          0          0          0          0          0          0          0          0  pmic_arb 556859533 Edge      usbin-vashdn\n270:          0          0          0          0          0          0          0          0  pmic_arb 556925069 Edge      usbin-uv\n271:          0          0          0          0          0          0          0          0  pmic_arb 556990605 Edge      usbin-ov\n272:          0          0          0          0          0          0          0          0  pmic_arb 557056141 Edge      usbin-plugin\n274:          0          0          0          0          0          0          0          0  pmic_arb 557187213 Edge      usbin-src-change\n275:          0          0          0          0          0          0          0          0  pmic_arb 557252749 Edge      usbin-icl-change\n276:          2          0          0          0          0          0          0          0  pmic_arb 558891150 Edge      typec-or-rid-detect-change\n278:          0          0          0          0          0          0          0          0  pmic_arb 559022222 Edge      typec-cc-state-change\n279:          0          0          0          0          0          0          0          0  pmic_arb 559087758 Edge      typec-vconn-oc\n281:          0          0          0          0          0          0          0          0  pmic_arb 559218830 Edge      typec-attach-detach\n282:          0          0          0          0          0          0          0          0  pmic_arb 559284366 Edge      typec-legacy-cable-detect\n284:          0          0          0          0          0          0          0          0  pmic_arb 559939727 Edge      wdog-snarl\n285:          0          0          0          0          0          0          0          0  pmic_arb 560005263 Edge      wdog-bark\n287:          0          0          0          0          0          0          0          0  pmic_arb 560136335 Edge      aicl-done\n288:          0          0          0          0          0          0          0          0  pmic_arb 560201871 Edge      smb-en\n290:          0          0          0          0          0          0          0          0  pmic_arb 560332943 Edge      temp-change\n292:          0          0          0          0          0          0          0          0  pmic_arb 711065759 Edge      flash-state-change\n294:          0          0          0          0          0          0          0          0  pmic_arb 711327903 Edge      ilim2-s2\nIPI0:        81         38         38         38         40         38         37         36       Rescheduling interrupts\nIPI1:         0          4          4          4          4          4          4          4       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         0          2          2          2          4          2          2          2       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm6125/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    5 root      0:00 [kworker/0:0H]\n    6 root      0:00 [kworker/u16:0]\n    7 root      0:00 [mm_percpu_wq]\n    8 root      0:00 [ksoftirqd/0]\n    9 root      0:00 [rcu_preempt]\n   10 root      0:00 [rcu_sched]\n   11 root      0:00 [rcu_bh]\n   12 root      0:00 [rcuop/0]\n   13 root      0:00 [rcuos/0]\n   14 root      0:00 [rcuob/0]\n   15 root      0:00 [migration/0]\n   16 root      0:00 [cpuhp/0]\n   17 root      0:00 [cpuhp/1]\n   18 root      0:00 [migration/1]\n   19 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0]\n   21 root      0:00 [kworker/1:0H]\n   22 root      0:00 [rcuop/1]\n   23 root      0:00 [rcuos/1]\n   24 root      0:00 [rcuob/1]\n   25 root      0:00 [cpuhp/2]\n   26 root      0:00 [migration/2]\n   27 root      0:00 [ksoftirqd/2]\n   28 root      0:00 [kworker/2:0]\n   29 root      0:00 [kworker/2:0H]\n   30 root      0:00 [rcuop/2]\n   31 root      0:00 [rcuos/2]\n   32 root      0:00 [rcuob/2]\n   33 root      0:00 [cpuhp/3]\n   34 root      0:00 [migration/3]\n   35 root      0:00 [ksoftirqd/3]\n   36 root      0:00 [kworker/3:0]\n   37 root      0:00 [kworker/3:0H]\n   38 root      0:00 [rcuop/3]\n   39 root      0:00 [rcuos/3]\n   40 root      0:00 [rcuob/3]\n   41 root      0:00 [cpuhp/4]\n   42 root      0:00 [migration/4]\n   43 root      0:00 [ksoftirqd/4]\n   45 root      0:00 [kworker/4:0H]\n   46 root      0:00 [rcuop/4]\n   47 root      0:00 [rcuos/4]\n   48 root      0:00 [rcuob/4]\n   49 root      0:00 [cpuhp/5]\n   50 root      0:00 [migration/5]\n   51 root      0:00 [ksoftirqd/5]\n   53 root      0:00 [kworker/5:0H]\n   54 root      0:00 [rcuop/5]\n   55 root      0:00 [rcuos/5]\n   56 root      0:00 [rcuob/5]\n   57 root      0:00 [cpuhp/6]\n   58 root      0:00 [migration/6]\n   59 root      0:00 [ksoftirqd/6]\n   61 root      0:00 [kworker/6:0H]\n   62 root      0:00 [rcuop/6]\n   63 root      0:00 [rcuos/6]\n   64 root      0:00 [rcuob/6]\n   65 root      0:00 [cpuhp/7]\n   66 root      0:00 [migration/7]\n   67 root      0:00 [ksoftirqd/7]\n   69 root      0:00 [kworker/7:0H]\n   70 root      0:00 [rcuop/7]\n   71 root      0:00 [rcuos/7]\n   72 root      0:00 [rcuob/7]\n   73 root      0:00 [kdevtmpfs]\n   74 root      0:00 [netns]\n   76 root      0:00 [kworker/u17:0]\n   77 root      0:00 [ipa_usb_wq]\n   78 root      0:00 [kworker/u16:1]\n   79 root      0:00 [msm_watchdog]\n   80 root      0:00 [glink_rpm-glink]\n   81 root      0:00 [oom_reaper]\n   82 root      0:00 [writeback]\n   83 root      0:00 [kcompactd0]\n   84 root      0:00 [crypto]\n   85 root      0:00 [kblockd]\n   86 root      0:00 [irq/14-tsens-up]\n   87 root      0:00 [irq/15-tsens-cr]\n   88 root      0:00 [system]\n   89 root      0:00 [devfreq_wq]\n   90 root      0:00 [cfg80211]\n   92 root      0:00 [irq/75-qpnp_lcd]\n   93 root      0:00 [irq/111-arm-smm]\n   94 root      0:00 [irq/206-capture]\n   95 root      0:00 [irq/120-arm-smm]\n   96 root      0:00 [irq/207-capture]\n   97 root      0:00 [irq/208-capture]\n   98 root      0:00 [irq/209-capture]\n   99 root      0:00 [irq/210-capture]\n  100 root      0:00 [ipa_power_mgmt]\n  101 root      0:00 [transport_power]\n  102 root      0:00 [ipa_pm_activate]\n  139 root      0:00 [kswapd0]\n  140 root      0:00 [ecryptfs-kthrea]\n  175 root      0:00 [irq/125-arm-smm]\n  176 root      0:00 [irq/126-arm-smm]\n  177 root      0:00 [irq/41-smp2p]\n  178 root      0:00 [irq/42-smp2p]\n  179 root      0:00 [irq/43-smp2p]\n  180 root      0:00 [mem_share_svc]\n  181 root      0:00 [cdsprm-wq]\n  182 root      0:00 [cdsprm-wq-delay]\n  183 root      0:00 [irq/127-arm-smm]\n  184 root      0:00 [hwrng]\n  186 root      0:00 [diag_real_time_]\n  187 root      0:00 [diag_wq]\n  189 root      0:00 [DIAG_USB_diag]\n  190 root      0:00 [diag_cntl_wq]\n  191 root      0:00 [diag_dci_wq]\n  192 root      0:00 [MODEM_CNTL]\n  193 root      0:00 [MODEM_DATA]\n  194 root      0:00 [MODEM_CMD]\n  195 root      0:00 [MODEM_DCI]\n  196 root      0:00 [MODEM_DCI_CMD]\n  197 root      0:00 [LPASS_CNTL]\n  198 root      0:00 [LPASS_DATA]\n  199 root      0:00 [LPASS_CMD]\n  200 root      0:00 [LPASS_DCI]\n  201 root      0:00 [LPASS_DCI_CMD]\n  202 root      0:00 [WCNSS_CNTL]\n  203 root      0:00 [WCNSS_DATA]\n  204 root      0:00 [WCNSS_CMD]\n  205 root      0:00 [WCNSS_DCI]\n  206 root      0:00 [WCNSS_DCI_CMD]\n  207 root      0:00 [SENSORS_CNTL]\n  208 root      0:00 [SENSORS_DATA]\n  209 root      0:00 [SENSORS_CMD]\n  210 root      0:00 [SENSORS_DCI]\n  211 root      0:00 [SENSORS_DCI_CMD]\n  212 root      0:00 [DIAG_CTRL]\n  213 root      0:00 [DIAG_DATA]\n  214 root      0:00 [DIAG_CMD]\n  215 root      0:00 [DIAG_DCI_DATA]\n  216 root      0:00 [DIAG_DCI_CMD]\n  217 root      0:00 [CDSP_CNTL]\n  218 root      0:00 [CDSP_DATA]\n  219 root      0:00 [CDSP_CMD]\n  220 root      0:00 [CDSP_DCI]\n  221 root      0:00 [CDSP_DCI_CMD]\n  222 root      0:00 [NPU_CNTL]\n  223 root      0:00 [NPU_DATA]\n  224 root      0:00 [NPU_CMD]\n  225 root      0:00 [NPU_DCI]\n  226 root      0:00 [NPU_DCI_CMD]\n  227 root      0:00 [DIAG_RPMSG_DIAG]\n  228 root      0:00 [DIAG_RPMSG_DIAG]\n  229 root      0:00 [DIAG_RPMSG_DIAG]\n  230 root      0:00 [DIAG_RPMSG_DIAG]\n  231 root      0:00 [DIAG_RPMSG_DIAG]\n  233 root      0:00 [irq/124-arm-smm]\n  234 root      0:00 [irq/128-arm-smm]\n  235 root      0:00 [crtc_commit:88]\n  236 root      0:00 [crtc_event:88]\n  237 root      0:00 [crtc_commit:124]\n  238 root      0:00 [crtc_event:124]\n  239 root      0:00 [pp_event]\n  240 root      0:00 [kgsl-workqueue]\n  241 root      0:00 [kgsl-mementry]\n  242 root      0:00 [kgsl_worker_thr]\n  243 root      0:00 [irq/112-arm-smm]\n  244 root      0:00 [kgsl-events]\n  245 root      0:00 [kgsl_devfreq_wq]\n  246 root      0:00 [qseecom-unreg-l]\n  247 root      0:00 [memory_wq]\n  248 root      0:00 [irq/129-arm-smm]\n  249 root      0:00 [qcrypto_seq_res]\n  250 root      0:00 [irq/130-arm-smm]\n  271 root      0:00 [scsi_eh_0]\n  272 root      0:00 [scsi_tmf_0]\n  273 root      0:00 [ufs_pm_qos_0]\n  274 root      0:00 [ufs_clk_gating_]\n  275 root      0:00 [ice-set-key]\n  276 root      0:00 [ufs_clkscaling_]\n  277 root      0:00 [irq/131-arm-smm]\n  278 root      0:00 [spi0]\n  279 root      0:00 [bond0]\n  284 root      0:00 [k_ipa_usb]\n  289 root      0:00 [kworker/u16:6]\n  290 root      0:00 [kworker/1:1]\n  291 root      0:00 [kworker/2:1]\n  292 root      0:00 [kworker/4:1]\n  293 root      0:00 [kworker/3:1]\n  294 root      0:00 [kworker/5:1]\n  295 root      0:00 [kworker/6:1]\n  296 root      0:00 [kworker/7:1]\n  297 root      0:00 [fts_wq]\n  298 root      0:00 [irq/236-fts_ts]\n  299 root      0:00 [rot_commitq_0_0]\n  300 root      0:00 [rot_commitq_0_1]\n  301 root      0:00 [rot_doneq_0_0]\n  302 root      0:00 [rot_doneq_0_1]\n  303 root      0:00 [rot_fenceq_0_0]\n  304 root      0:00 [rot_fenceq_0_1]\n  305 root      0:00 [rot_fenceq_0_2]\n  306 root      0:00 [rot_fenceq_0_3]\n  307 root      0:00 [rot_fenceq_0_4]\n  308 root      0:00 [rot_fenceq_0_5]\n  309 root      0:00 [rot_fenceq_0_6]\n  310 root      0:00 [rot_fenceq_0_7]\n  311 root      0:00 [rot_fenceq_0_8]\n  312 root      0:00 [rot_fenceq_0_9]\n  313 root      0:00 [rot_fenceq_0_10]\n  314 root      0:00 [rot_fenceq_0_11]\n  315 root      0:00 [rot_fenceq_0_12]\n  316 root      0:00 [rot_fenceq_0_13]\n  317 root      0:00 [rot_fenceq_0_14]\n  318 root      0:00 [rot_fenceq_0_15]\n  319 root      0:00 [msm_vidc_worker]\n  320 root      0:00 [pm_workerq_venu]\n  321 root      0:00 [irq/122-arm-smm]\n  322 root      0:00 [irq/132-arm-smm]\n  323 root      0:00 [irq/133-arm-smm]\n  324 root      0:00 [irq/134-arm-smm]\n  325 root      0:00 [irq/135-arm-smm]\n  326 root      0:00 [irq/136-arm-smm]\n  327 root      0:00 [irq/137-arm-smm]\n  328 root      0:00 [irq/138-arm-smm]\n  329 root      0:00 [msm_cci_wq]\n  330 root      0:00 [msm_cci_wq]\n  331 root      0:00 [msm_cpp_workque]\n  332 root      0:00 [irq/63-qcom,tem]\n  333 root      0:00 [irq/83-qcom,tem]\n  334 root      0:00 [irq/205-limits_]\n  335 root      0:00 [kworker/0:1H]\n  336 root      0:00 [irq/205-limits_]\n  337 root      0:00 [kworker/4:1H]\n  338 root      0:00 [irq/72-bcl-lvl0]\n  339 root      0:00 [irq/73-bcl-lvl1]\n  340 root      0:00 [irq/74-bcl-lvl2]\n  341 root      0:00 [dm_bufio_cache]\n  342 root      0:00 [mmc_clk_gate/mm]\n  343 root      0:00 [mmc_clk_gate/mm]\n  344 root      0:00 [irq/51-4784000.]\n  345 root      0:00 [irq/50-mmc0]\n  346 root      0:00 [irq/237-4784000]\n  349 root      0:00 [irq/139-arm-smm]\n  350 root      0:00 [uaudio_svc]\n  351 root      0:00 [apr_driver]\n  352 root      0:00 [kworker/0:5]\n  353 root      0:00 [ipv6_addrconf]\n  355 root      0:00 [kworker/0:6]\n  360 root      0:00 [irq/240-qg-vbat]\n  361 root      0:00 [irq/241-qg-vbat]\n  362 root      0:00 [irq/242-qg-fifo]\n  363 root      0:00 [irq/243-qg-good]\n  364 root      0:00 [irq/244-chgr-er]\n  366 root      0:00 [irq/245-chg-sta]\n  367 root      0:00 [irq/252-otg-fai]\n  368 root      0:00 [irq/256-high-du]\n  369 root      0:00 [irq/257-input-c]\n  370 root      0:00 [irq/259-switche]\n  371 root      0:00 [irq/260-bat-tem]\n  372 root      0:00 [irq/262-bat-ov]\n  374 root      0:00 [irq/263-bat-low]\n  375 root      0:00 [irq/264-bat-the]\n  376 root      0:00 [irq/265-bat-ter]\n  377 root      0:00 [irq/268-usbin-c]\n  378 root      0:00 [irq/269-usbin-v]\n  379 root      0:00 [irq/270-usbin-u]\n  380 root      0:00 [irq/271-usbin-o]\n  381 root      0:00 [irq/272-usbin-p]\n  383 root      0:00 [irq/274-usbin-s]\n  384 root      0:00 [irq/275-usbin-i]\n  385 root      0:00 [irq/276-typec-o]\n  386 root      0:00 [irq/278-typec-c]\n  387 root      0:00 [irq/279-typec-v]\n  388 root      0:00 [irq/281-typec-a]\n  389 root      0:00 [irq/282-typec-l]\n  390 root      0:00 [irq/284-wdog-sn]\n  392 root      0:00 [irq/285-wdog-ba]\n  393 root      0:00 [irq/287-aicl-do]\n  394 root      0:00 [irq/288-smb-en]\n  395 root      0:00 [irq/290-temp-ch]\n  396 root      0:00 [irq/292-flash-s]\n  397 root      0:00 [irq/294-ilim2-s]\n  399 root      0:00 [irq/62-thr-int-]\n  400 root      0:00 [irq/82-thr-int-]\n  401 root      0:00 [irq/140-arm-smm]\n  402 root      0:00 [etr_pcie]\n  403 root      0:00 [irq/141-arm-smm]\n  404 root      0:00 [irq/95-hs_phy_i]\n  405 root      0:00 [irq/93-pwr_even]\n  406 root      0:00 [irq/94-ss_phy_i]\n  407 root      0:00 [irq/142-arm-smm]\n  408 root      0:00 [usb_bam_wq]\n  409 root      0:00 [mmcqd/0]\n  410 root      0:00 [rq_stats]\n  411 root      0:00 [msm_perf:events]\n  412 root      0:00 [irq/143-arm-smm]\n  413 root      0:00 [irq/144-arm-smm]\n  414 root      0:00 [irq/145-arm-smm]\n  415 root      0:00 [irq/146-arm-smm]\n  416 root      0:00 [irq/147-arm-smm]\n  417 root      0:00 [irq/148-arm-smm]\n  418 root      0:00 [irq/149-arm-smm]\n  419 root      0:00 [irq/150-arm-smm]\n  420 root      0:00 [sb-3]\n  421 root      0:00 [ngd_rx_thread3]\n  422 root      0:00 [ngd_notify_sl3]\n  423 root      0:00 [irq/78-qpnp_fla]\n  424 root      0:00 [irq/77-qpnp_fla]\n  425 root      0:00 [irq/76-qpnp_fla]\n  426 root      0:00 [devfreq_boostd/]\n  434 root      0:00 [kworker/4:2]\n  435 root      0:00 [kworker/5:2]\n  436 root      0:00 [kworker/6:2]\n  437 root      0:00 [kworker/7:2]\n  453 root      0:00 [kworker/0:1]\n  470 root      0:00 [kworker/0:0]\n  480 root      0:00 [kworker/0:2]\n  502 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm6125/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,974.187917,3.2472930566666665,33.6683016944261,8.640749893568776,28.93267402474784,256.643473496\r\n1,614400,1995.147801,3.2473108740234378,51.53634118444474,6.458292220368149,38.709923842025994,125.315303181\r\n1,864000,2805.710181,3.2473497465277776,68.1358692265368,6.071797180720754,41.17397082923045,89.113080227\r\n1,1017600,3304.474258,3.247321401336478,79.45850829204657,6.012023111589622,41.58333981086413,75.662421065\r\n1,1305600,4239.659471,3.2472881977634804,114.1909849509274,6.734116450283732,37.124395137162594,58.972400082\r\n1,1420800,4613.823014,3.247341648367117,132.35373310228846,7.172427037453027,34.855704867341046,54.191346699\r\n1,1612800,5237.13759,3.2472331287202385,170.56253100926847,8.142740792905595,30.702193077030497,47.740501649\r\n1,1804800,5860.84021,3.2473627050088654,222.9900074927101,9.512925604127618,26.280033125826826,42.660770817\r\n4,300000,1569.080331,5.230267769999999,70.16932027971504,11.181381461443426,22.358596821159434,159.348578793\r\n4,652800,3413.575105,5.229128530943628,115.23986761792742,8.442215881577585,29.613078308687225,73.25777143\r\n4,902400,4723.397823,5.2342617719414894,154.08006647809577,8.15804731925497,30.644588124653232,52.946805552\r\n4,1056000,5524.007336,5.231067553030303,184.87202244934278,8.370574662254484,29.866527698191085,45.277671285\r\n4,1401600,7332.668505,5.231641342037672,289.17291349456724,9.864380253128136,25.343710763858827,34.112393633\r\n4,1536000,8037.55144,5.232780885416667,343.9537865536476,10.705174654344965,23.35319208440296,31.123874988\r\n4,1804800,9433.250321,5.226756605164007,468.6405437218174,12.428537673145003,20.11499716013962,26.520406396\r\n4,2016000,10553.866937,5.2350530441468255,595.9249139513656,14.127221742317005,17.696331561862888,23.706378793\r\n"
  },
  {
    "path": "results/sm6125/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1404.6024484229274, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1036.75343484, 1013.768557245, 1024.02407354, 1039.4202482160001, 1033.894752738, 1023.506330392, 1016.158029796, 1038.763104954, 1033.7541354659998, 1013.630702293, 1025.986290784, 1039.9359717900002, 1033.38261057, 1005.5403419760001, 1049.6189632700002, 1043.11815652, 1016.2500917030002, 1014.7104206640001, 1027.295866844, 1020.655271064, 1033.101553562, 1042.65027762, 1031.6986096379999, 1022.246449805, 1002.7395623479999, 1055.231891861, 1039.184778324, 1009.98797196, 1033.289005111, 1036.283440722, 1017.3335096520001, 1009.4269769939999, 1041.709790888, 1031.41790887, 1009.8505625999999, 1030.901532917, 1041.379108006, 1037.6805798780001, 1016.6304850079999, 1018.6429075920001, 1024.868706, 1043.534347776, 1040.6323562799998, 1034.176579944, 1009.4728289040002, 1018.9718483699999, 1040.821234178, 1032.77381414, 1031.41790887, 1023.042278518, 1014.066345114, 1018.0426043720001, 1020.7523938279999, 1061.541667025, 1028.985506532, 1011.9999188119999, 1022.8103717519999, 1034.880318636, 1027.30040947, 1008.7862259440001, 1022.2928966599999, 1044.464807727, 1030.24480658, 1015.9392191039999, 1021.455090957, 1022.30008153, 1046.335242435, 1047.1818567199998, 1021.362494564, 1022.90308679, 1029.8245315600002, 1044.97919351, 1024.305141345, 1018.602176088, 1016.3079416160001, 1006.86708244, 1023.8870318009999, 1036.792997196, 1033.801442592, 1049.704791498, 1030.716397276, 1030.9970980439998, 1016.503170276, 1015.044901695, 1013.5521512019999, 1013.9744018519999, 1024.119235332, 1029.77772766, 1048.85776154, 1037.2635851490002, 1023.7941981179999, 1039.6456646020001, 1018.6484741579999, 1012.954550022, 1015.893039984, 1018.463519304, 1012.619923347, 1015.3287626440001, 1019.2585748520002, 1035.2980547910001, 1040.859671432, 1031.7896162840002, 1040.765294586, 1032.16501771, 1023.1883870600001, 1026.8342782, 1007.901186775, 1013.5603026360001, 1036.698976285, 1048.253201331, 1028.705340708, 1027.0674635399998, 1023.095612505, 1011.082151848, 1008.648905352, 1007.901186775, 1022.9098249000001, 1031.043721288, 1016.970709946], \"power_mean\": 1026.8246712286386, \"energy_millijoules\": 5134.123356143193, \"energy_joules\": 5.134123356143193}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 256.643473496, \"elapsed_ns\": 256643473496, \"power_samples\": [22.553915586999892, 23.67550894200008, 26.85302771900001, 35.26399658200012, 42.7890739070001, 38.912814891999915, 46.47835978100011, 56.38308414300013, 51.99564628899998, 42.83637789699992, 42.37442381000005, 32.134378808000065, 27.27508300799991, 19.520602172000167, 23.721954482, 25.685612536000008, 9.755094591999978, 23.582139042000108, 44.19183953200013, 45.77501528200014, 44.70527344600009, 45.547420117, 39.88939677700023, 29.37435932199992, 41.61559494800008, 38.16230733800012, 35.452636885000175, 27.649270590000015, 18.440753493000102, 17.179285943999957, 15.501699226000028, 25.358912319999945, 29.514976594000018, 22.274640946999853, 30.12391639600014, 43.906684011999914, 45.11915247700017, 42.45672680200005, 42.55157861700013, 38.77094961199987, 47.59520430799989, 56.19064076199993, 46.108157757999834, 36.80729155800009, 24.517841112999804, 15.732863593000047, 21.572391772000174, 26.57274582800028, 28.72281284199994, 38.67645373200003, 26.01039967199995, 41.05461418200002, 53.71979639799997, 58.34665334500005, 50.25763078800014, 48.62848051600031, 39.42264398800012, 34.41988450000008, 30.545229285999994, 35.358195655000145, 29.37435932199992, 19.70615128199995, 18.486962158999972, 19.474095647000013, 25.776860211999974, 33.34791546700012, 37.22292251199997, 40.31552697699999, 52.07701794000013, 62.08027802200013, 54.423802210000076, 42.970070780000015, 33.48906768300026, 30.967617214000256, 29.233742050000046, 27.926540720000048, 33.62292957999989, 24.14484152199998, 16.76275106000014, 14.799894964000146, 23.582139042000108, 23.209377672000073, 28.535601924000048, 32.59809126800019, 26.01039967199995, 29.842744084000287, 31.1028442490001, 35.72702666000009, 38.44009257199991, 51.756316506000076, 54.375718719999895, 52.92433538199998, 48.05567462800013, 55.7578284340002, 43.38398027199992, 25.823424092000096, 20.781356452000068, 22.833175581999967, 24.42315174700002, 31.009001500000068, 28.441755834000105, 21.90235446199995, 24.376407322000205, 34.372693719999916, 41.47328407600003, 44.182242133000045, 48.95031050800003, 50.44875893599988, 45.44162820800011, 44.64321806199996, 52.22075435600027, 44.83364071699998, 24.189909052000075, 18.632653776000097, 20.17211916400015, 24.938663584000096, 34.325502940000206, 44.88130749200013, 35.217018124000106, 43.33637297200016, 32.97159012400016, 43.57416533200012, 35.6325261500001, 24.79858067200007, 20.455872052000245, 24.098366299999952, 21.576693451999972, 27.78610156800005, 28.952507506000074, 13.492752804000247, 23.02311669200003, 39.04418088400007, 53.38416010000037, 46.65338415100018, 50.11416184400014, 41.71038763499996, 41.98222389200009, 38.713116820000096, 51.46902237800009, 49.366983160000245, 43.38398027199992, 37.784319118999974, 36.89248224400012, 26.245390028999964, 28.395073420000017, 28.348150374999932, 15.602338624000026, 16.57743942400009, 22.50730754799997, 22.181200257000228, 30.77427400700003, 27.692555626000058, 32.26886407000006, 23.538747132000026, 28.858842918999926, 49.17597326800001, 61.596866324000075, 58.93068855000024, 52.12476599600018, 48.66372885999999, 41.330973203999974, 49.588190938000025, 47.165866196000025, 36.14658260800002, 37.64254319099996, 40.20925004600008, 36.5617993620001, 32.59526478099997, 34.184172604000196, 25.730056311999988, 19.475269924000145, 22.50730754799997, 21.809342617000084, 26.713921798, 34.886958133000235, 32.83043790800002, 14.5686420400001, 7.942651101000138, 17.745241613000076, 15.602338624000026, 28.067093367000098, 28.254544915999986, 19.102758932000143, 18.824196772000164, 17.51348371600011, 26.338817326000253, 30.539305273000082, 35.208243090999986, 36.703485938000085, 27.505463742000074, 35.4440097480001, 47.86490280400017, 48.329301817000214, 46.87964078799996, 47.96028871600015, 43.47895073199993, 43.003854291999914, 51.454078095999876, 55.61380469699998, 48.88921291600013, 40.06711787800032, 37.50076726300017, 27.27123817000006, 21.390430656999797, 26.058535435000067, 26.058535435000067, 18.076125206000142, 19.614639772000032, 25.91827440300017, 22.510539882000103, 27.739353945000175, 26.058535435000067, 22.08812928400016, 29.186193484000114, 26.57357141400007, 42.305203480000046, 37.0754394789999, 38.33465371600005, 38.108992612000065, 29.23293506799996, 32.45411256500006, 51.74155092800015, 56.17287553200026, 56.124920284000154, 50.99036281200006, 40.296261762000086, 32.35984995500007, 42.305203480000046, 40.58070480200013, 34.651339372000166, 23.585461916999975, 21.530067977000044, 14.29156589799993, 17.3279344849999, 27.318131380000068, 38.42920872400009, 32.45411256500006, 43.14643205200014, 57.57594768700005, 58.882614961999934, 44.870491878000166, 35.208243090999986, 27.879882449000206, 22.41740939200008, 28.951762756000107, 33.199206628000184, 33.199206628000184, 27.83295940400012, 46.081290742999954, 56.202508726999895, 46.78431400400018, 28.951762756000107, 21.25079333699989, 22.650355321999996, 27.69243090000009, 41.22292170200012, 54.62610615600033, 43.75424079700019, 38.75329280200003, 46.68898722000017, 39.498832583000194, 31.053657870000052, 16.86241056400013, 19.15023271000007, 26.292870645999983, 28.296614613999964, 29.559898543000145, 38.38180968400002, 35.62747146599986, 46.59366043599994, 52.37675834800007, 49.44472199400002, 32.59526478099997, 24.00317106700004, 22.696800861999918, 15.74413177200006, 12.569640751000179, 28.624561060000133, 38.2872546760002, 30.351619775000245, 35.48611612000013, 49.157784106000236, 49.44472199400002, 41.925314164000156, 38.57116277200021, 42.25786980800012, 28.436991102999855, 33.52495370800011, 29.888261760999967, 18.02964851600018, 10.049733939999896, 21.204406967000068, 26.24600707599984, 34.83096797800022, 45.239919721000206, 50.7987514030001, 48.84133768600009, 47.05350953199991, 54.77028816400002, 40.05930707200014, 28.15599734200009, 25.73117963599998, 32.35984995500007, 28.015380069999992, 30.16369303600004, 27.084146286000077, 16.021742399999994, 16.538204170000085, 26.80326798200008, 40.66693702900011, 49.764967708000086, 53.31985459600014, 53.31985459600014, 42.02046948400016, 36.50857853399998, 37.588900891999856, 30.91292516800013, 22.510539882000103, 20.40965134000021, 21.575880047000055, 22.13777851199984, 32.58732359800001, 29.606910898000024, 41.365321342000016, 28.109044656999913, 42.433543251999936, 57.19034736100002, 56.997794695000266, 49.47785111600001, 44.16752809200011, 39.404158929999994, 36.55567533200019, 39.54604772099992, 40.24877341200022, 29.653682163999974, 24.049915492000082, 27.69243090000009, 21.389498844000173, 26.615935620000073, 24.982634032000078, 31.37562696200007, 21.668951019999895, 25.49749130700002, 46.3074350280001, 53.58667414199999, 52.7438390440002, 48.50694761800037, 42.528757852000126, 39.072436079, 43.92968310700007, 43.691838122000036, 33.99146154699997, 24.425106195999888, 24.285023283999863, 15.327359003999959, 18.73212316599995, 27.96842738500004, 42.48115055199992, 45.65246558999979, 49.525785821, 54.67424912100023, 35.39155593999999, 21.389498844000173, 17.00352106699995, 15.000638932000129, 20.692483161999917, 22.606128373000047, 24.285023283999863, 15.139474420000056, 20.083959764000156, 27.92147470000009, 39.119894594000016, 54.94062342200027, 49.62140941199982, 50.511703246000025, 45.55695342000013, 31.889503700999967, 31.140602704000003, 24.098405979999825, 16.16734252400022, 18.220804422000015, 23.58484859200007, 25.216969242999994, 33.80282124400014, 44.346807560000116, 37.95619061200023, 27.78085742799999, 39.679887332000135, 50.368056182000146, 54.70000743600008, 51.630149746999905, 51.773975515000075, 52.232843812000056, 47.98130214400021, 48.459072388000095, 48.172312035999994, 37.482929428000034, 43.278846619000205, 37.2580438519999, 31.140602704000003, 33.5672024830003, 29.278306591000046, 25.310396540000056, 10.987084868000125, 11.457425620000095, 21.71833219200016, 33.47300341000005, 40.19248622800001, 45.049258692000194, 35.014042605999975, 35.10836032400016, 46.21186318800028, 48.22018726600004, 51.48632397899996, 47.101325092000025, 45.747732856999846, 42.19599503199993, 41.450513516, 42.94587526000009, 37.021682691999786, 26.381950526000082, 31.422728432000213, 34.406442609999885, 34.778127080000104, 32.446082614000034, 26.56928288800009, 14.815683435999972, 14.815683435999972, 21.249772756000084, 30.395859220000148, 31.04639976400017, 35.711922519999916, 29.83512279399997, 13.459625194000068, 14.722967956000048, 12.200443354000072, 19.665554812000096, 26.990029010999933, 32.39892166899995, 26.7089720030001, 20.599232212000175, 24.562118992000023, 19.015191652000112, 26.381950526000082, 30.49000288000002, 29.043726994000053, 27.82781011300017, 23.349947692000114, 24.375383432000035, 27.45291098200005, 28.52964288399994, 34.264934154, 20.599232212000175, 28.388936260000037, 28.623366988000043, 25.076708211000096, 27.593528254000148, 24.098405979999825, 9.687238590000106, 12.901354596000147, 21.203356898000038, 19.061518852000177, 26.0544194900001, 23.72493150399987, 25.076708211000096, 8.704627114000004, 10.756662900000038, 14.491654720000156, 19.61895917200013, 28.85591866300024, 23.77146589600011, 13.744564942000125, 8.612447494000207, 17.148259800000233, 22.186413996999818, 29.090498260000004, 27.874762797999892, 19.619355651999967, 16.074746131000097, 16.725316314999986, 18.968625652000128, 21.765017142000033, 24.983280914000034, 31.65433057400014, 27.45291098200005, 24.281775632000063, 36.879817411999966, 33.33158372200023, 39.253466302000106, 40.795722781999984, 31.27800523100018, 33.33158372200023, 41.86347635199991, 47.23106598100003, 46.48070364399996, 43.54908224199994, 44.763389524000104, 32.257680685000196, 28.574326710999912, 30.764515582000058, 45.032616096999845, 50.208690656000044, 55.210557076000214, 51.801346632999866, 47.742417022000154, 48.67947240400008, 40.795722781999984, 30.85847697600002, 26.42884373600009, 27.03671142500002, 24.79618614700007, 20.784178634000227, 25.450768341999947, 19.200978052000096, 15.003123111999912, 30.11415242199996, 50.49616348800009, 52.456077850000156, 49.047422047000055, 33.52022402500006, 26.896182921000218, 22.09322399000007, 25.216931144, 31.41915744700009, 22.373033574000146, 21.765017142000033, 20.320196677000013, 27.265341024999998, 23.721328932000233, 26.896182921000218, 31.41915744700009, 16.823399654000013, 22.186413996999818, 26.802577462000045, 31.183742621000192, 39.765797295000084, 47.278666015000226, 35.84703845900003, 43.07314782699996, 52.57827228400015, 57.43545128200003, 54.31536771299989, 50.49616348800009, 53.568936022000116, 46.2421162600001, 40.368523862000075, 47.36015172400016, 51.41741025100009, 41.43574307200015, 31.975198717000012, 24.749592585000073, 14.725512483999978, 20.69110766100016, 20.83083374900002, 15.518691698999987, 27.265341024999998, 42.18514685800005, 50.67139338599986, 58.090033477000134, 50.911020906999966, 44.334830523000164, 34.02310041199985, 35.00348964, 46.94448433299999, 43.87057525400019, 30.435288383999932, 28.668351421000125, 24.048236172000315, 15.287081698000065, 19.85465924199991, 20.784178634000227, 16.49355841800002, 28.060540491999973, 35.84703845900003, 51.36960302500006, 44.98510491500019, 52.31207396200011, 47.087775156999896, 39.765797295000084, 41.530713531999936, 50.76719513900002, 43.72773002200006, 31.928279623000208, 29.832204230000116, 32.30017146400019, 20.365000370000075, 27.497954932000084, 24.655925115000173, 34.44765137399986, 25.726647976000095, 37.00991131600017, 44.334830523000164, 46.051344436000136, 49.41049107900017, 48.90386375100002, 42.137754016000144, 39.52869373600015, 54.922084011999914, 54.63336375600011, 43.10889708200011, 39.15848960199992, 32.67697169200005, 21.72022439899979, 21.15907043200002, 17.52439902200024, 25.310417958000016, 25.029957516000195, 32.206031908000114, 48.473188862999905, 51.88006229800021, 43.906026770999915, 34.542211554000005, 32.90732465800011, 29.69123013400008, 42.090116881000085, 39.481175551000206, 27.77936818000012, 13.467072669999993, 13.37465443900021, 18.967814972000042, 22.230238927000073, 33.04874434599992, 48.44043938600021, 35.374371110000084, 42.18514685800005, 50.86324316900004, 56.39955635199999, 49.17116129600004, 40.22612422199995, 34.30629602800013, 28.292975848000196, 36.77340226000024, 31.64579765500025, 17.756534230000057, 16.59149288800006, 16.49877785000001, 26.193781031999833, 29.59732786800032, 37.52233107700022, 49.87322364400006, 44.334830523000164, 46.610057289999986, 54.68131900399999, 47.45565667000028, 36.48949416400001, 19.761647396999933, 23.117825596000102, 18.828267004000054, 24.655769933999863, 33.51038392800024, 26.521520453999983, 30.713396367000087, 35.93412985200007, 47.86680927600014, 42.042479746000026, 30.200264125999865, 23.767892812000127, 18.78260045200011, 22.884434031999945, 27.77936818000012, 37.52233107700022, 34.11741813000003, 43.71536574200013, 44.971879828000056, 39.52869373600015, 27.77936818000012, 21.72022439899979, 11.36957137000013, 22.323488062000024, 30.807417278000003, 44.842081562999965, 51.975982695999846, 49.72948722800015, 43.95375321600022, 48.15350149799997, 42.50236875199994, 28.480543090000083, 17.617164382000055, 20.318584511999916, 28.56740133900007, 39.1965538070001, 48.473188862999905, 55.143377437000254, 41.7571455220002, 36.394939155999964, 32.01751079199994, 27.497954932000084, 13.56640177600002, 21.393939592999914, 36.217860412000164, 45.81251184400003, 42.823206618000086, 46.466766465999854, 46.93001119600012, 46.834506250000004, 52.80012990399996, 44.92409390800003, 28.01138389599987, 15.70539101700001, 5.8306294480000815, 24.23538219200009, 39.6092216720001, 48.28169586199988, 47.216771548000224, 38.12496941800009, 28.379474600000094, 24.095121159999962, 17.756534230000057, 12.396668992000059, 28.61420209300013, 48.138383385, 53.64218643799995, 55.50439779700014, 38.077754280000136, 33.41588341800002, 26.562495447999936, 28.473317349000126, 35.98149925199982, 33.51038392800024, 20.69317857200008, 21.627034391999814, 30.200264125999865, 48.88386716800005, 41.34077261200014, 46.466766465999854, 46.466766465999854, 40.31084556799988, 46.64325084400025, 45.067206612000064, 38.35289236199992, 19.482372757000007, 16.174156046000007, 15.988487628000144, 21.857002672000135, 32.62448528200002, 39.244071992000045, 31.782040900000084, 38.305404012000054, 49.95251082300001, 53.49791566199997, 43.25174231400001, 49.68173917200011, 42.45470197700001, 35.650399291999975, 23.954860128000064, 30.012099792000072, 17.663700546999962, 6.996680923999975, 17.478033181, 21.763753537000184, 25.819118565000053, 30.572244151000177, 23.440985572000045, 10.166181538999922, 8.346618229, 18.364461652000045, 16.64244451200011, 23.7677653610001, 28.5203593440001, 14.35488921199999, 10.212153525000076, 16.127679356000158, 19.110086272000103, 21.857002672000135, 27.823575565000056, 35.23259518200007, 22.651042468000014, 25.352223730000105, 24.095121159999962, 19.899406248000105, 24.421692410000105, 32.62448528200002, 25.399116940000113, 23.908026393, 33.69262470600006, 34.2479896440002, 41.37678132100018, 43.47722301900012, 48.28169586199988, 42.12176788700003, 44.68565442000022, 52.70409086099994, 48.138383385, 30.751432657000123, 13.473686296000096, 15.380977598999948, 20.881035209999936, 30.195918808000215, 35.04372245600007, 33.133108815000014, 34.90194652800005, 32.94435010400002, 45.52635410800008, 44.92409390800003, 34.38967622000018, 37.84070508200011, 33.78718488599998, 22.324102383999843, 25.30557099800012, 21.99699623200013, 8.392501363000065, 17.89951805200019, 33.180116761000136, 44.17472088800014, 44.079453621000084, 48.329630567000095, 45.11499253200009, 36.95415747700008, 41.88367845699986, 48.74022010400017, 44.733440340000016, 31.175155609000058, 24.702393177999966, 22.651042468000014, 20.227286712000137, 23.721171799000103, 29.73021560999996, 23.721171799000103, 36.15818702800016, 49.76066104000006, 53.767202988000236, 53.95976555600009, 51.35213023600022, 47.57987138800013, 41.329388479000045, 40.627883812000164, 43.69813965000003, 33.08585856000013, 20.273732252000173, 18.642362348000006, 23.20744611200007, 15.056325992000097, 19.713025044999995, 19.99247722100006, 16.688951037000038, 23.67433806400004, 34.80751016500017, 34.85460696300015, 32.15324776000011, 39.006968432999884, 38.35289236199992, 32.059048687000086, 38.722346689000005, 52.65594789600004, 49.66485928700013, 38.817139376000114, 26.562495447999936, 31.40524067199999, 13.103537572000164, 22.55773381600011, 24.60890636399995, 21.347224807999964, 34.76017060000004, 36.71749955200016, 53.065350373, 51.160042858000224, 36.57545615200024, 21.99699623200013, 21.577015552000148, 23.580910767000205, 32.80284164800014, 32.34188806299994, 19.713025044999995, 21.114130009000064, 35.55590341199991, 45.94144856499997, 43.88867418400014, 42.2645237669999, 36.90697182700001, 27.307404015999964, 24.603375238000353, 30.798351750999927, 26.234308219000013, 22.27756799200006, 20.74113041800001, 36.252985108000075, 50.36220127299998, 56.085178183999915, 49.25052992399992, 43.19135385100003, 34.47661874400001, 30.610191673000145, 24.884253542000124, 9.889401746999965, 21.343772857000204, 26.79442181200011, 44.30410222800015, 51.52175729600026, 47.10155968599997, 49.85646279300022, 40.627883812000164, 38.992319122000026, 50.5541694640001, 48.9630570920001, 46.40436572200019, 47.19736942600002, 45.46397605900006, 40.94902427800025, 38.70751984200001, 33.362391462000005, 15.66386582400014, 8.53563643200016, 12.44975939200026, 28.84538555800009, 34.42952194600002, 42.347218910000265, 42.07410111200011, 33.917549376000125, 43.04866401800018, 49.904486808, 48.9630570920001, 44.16098952400034, 44.733440340000016, 38.91193206300022, 37.64178476200004, 38.84991948200013, 31.40524067199999, 30.704271712000264, 19.480227983999953, 20.273732252000173, 20.647700848, 22.044176428000128, 27.260632750000013, 28.144747107000057, 19.854285932000153, 18.970448952000083, 18.924062582000033, 14.685465718999922, 26.04697904500017, 23.721171799000103, 22.324102383999843, 19.433812126000134, 18.784425262000013, 35.68516891600029, 41.55074436700011, 38.89722347199995, 40.99641711999993, 37.87873945200022, 44.714960836000046, 59.587228687000106, 62.00443621199997, 45.46397605900006, 27.541983612999957, 20.040786322000145, 10.823308904000214, 23.11329393599999, 29.16596415400022, 28.097705112000085, 39.59840060800025, 40.75872003099994, 47.516215496000086, 46.308860776000074, 37.03561396600003, 29.448089881999977, 29.213065624000137, 22.45978381200007, 23.954018014000212, 27.95682036800008, 14.639018864000036, 26.513008564000074, 50.68019428599996, 58.64745877500036, 55.483746652000264, 48.69225575900009, 37.87873945200022, 29.584420337999973, 21.203779296999983, 24.047504828, 27.307404015999964, 19.807840392000003, 20.50779605599996, 35.22504637199995, 45.559421488, 46.814867464000145, 49.521033519000184, 47.37265720000005, 41.40798848700001, 48.02198478399987, 41.59841114200003, 40.94902427800025, 27.307404015999964, 19.15435995000007, 18.177122803999964, 17.944622507999952, 27.16660804000003, 36.29136935199995, 27.862977619000276, 38.2478958879999, 50.68019428599996, 55.14644735200022, 49.233381982999845, 39.27687456700005, 30.657352618000004, 35.54321486799995, 35.44865985999991, 33.079195846000175, 27.213620395000135, 18.365513301999954, 18.41213877700011, 28.375632834000044, 23.72018081600004, 29.772462160000032, 31.263910336000208, 26.466266980000228, 34.193066887999976, 46.76696259400023, 44.76253118800014, 42.10922505600024, 46.86252666799987, 33.22079365400009, 35.40126082000006, 43.922550036000075, 56.03685679400019, 56.835381177000045], \"power_mean\": 33.6683016944261, \"energy_millijoules\": 8640.749893568776, \"energy_joules\": 8.640749893568776, \"coremark_score\": 974.187917, \"coremarks_per_mhz\": 3.2472930566666665, \"ulpmark_cm_score\": 28.93267402474784}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1012.908489852, 1026.97409364, 1033.47328776, 1030.2004679299998, 1036.369782247, 1040.529231164, 1056.6991341629998, 1032.770055345, 1018.140145092, 1003.2293114419999, 1005.102421875, 1011.325043674, 1018.7038278870001, 1028.9387322720002, 1016.934060244, 1036.0427263899999, 1043.00766045, 1034.6874738200002, 1032.676390758], \"power_mean\": 1027.300649263421, \"energy_millijoules\": 5136.503246317106, \"energy_joules\": 5.136503246317106}}, \"614400\": {\"active\": {\"elapsed_sec\": 125.315303181, \"elapsed_ns\": 125315303181, \"power_samples\": [37.91599964200009, 38.612668027000154, 54.58915389100025, 62.53083567800013, 58.30887185600022, 62.91927759500004, 59.66012080600012, 59.829357799000036, 71.00240854200001, 62.07176045200026, 51.502738719000035, 34.79945053199981, 32.51280461400006, 34.32648529200014, 48.610301172999925, 51.45459575399991, 62.31435659600015, 56.5233047480001, 62.579484472999866, 71.99414268800001, 59.36961818200007, 50.51310870400016, 40.010209611999926, 39.02844464000009, 36.27749461100029, 44.23754086000008, 48.292369192000024, 39.677446791999955, 43.350099220000175, 50.10417873400024, 60.47833046300002, 61.325431611999875, 64.77839969799993, 60.21684994599991, 59.17611557800001, 63.73600245400007, 70.3981126440001, 63.83316920800007, 56.256158296999956, 51.502738719000035, 46.33655576199999, 42.79224345300008, 47.591289563000146, 47.639007937000315, 31.623766054000043, 31.069110871000248, 33.767981871000075, 40.28332585299995, 50.70531449000009, 62.77358069100001, 57.558788592000155, 62.28809066500003, 71.94532899000001, 71.05144421699993, 58.164047077000305, 51.69481680500007, 46.24099168800012, 42.00064023599998, 49.86425444800011, 44.98650355299992, 41.82353459199999, 35.022797716000014, 33.767981871000075, 44.843212729000015, 67.09113800600016, 70.75773309700003, 66.82770284000003, 56.81309489199998, 44.1421549480001, 47.49536087299998, 36.419626779000055, 26.369085627999993, 33.067429919999995, 51.35855671099989, 59.03086426599998, 55.26520136599993, 69.04677327400009, 67.59802977599998, 58.377711396999985, 58.88561295400018, 53.26578154200001, 44.28535641999997, 40.14065874100015, 34.97539867600017, 42.601708918999975, 54.42330935200016, 62.43378756900006, 65.8861493920001, 55.82174113700012, 50.22492339199994, 52.05545494100011, 43.540997844, 33.25642622600003, 33.57886637800016, 40.14065874100015, 41.299850274000164, 49.16332418800016, 52.15180015099986, 57.77701962300034, 60.986053900000115, 71.71660735199998, 66.14537373999997, 55.48402642700012, 42.38171754299992, 32.182571370000005, 27.01791039600016, 39.059772591999945, 44.28535641999997, 32.371206806000146, 41.39499889600006, 53.67390998500014, 68.85123882100015, 66.99367444500012, 62.725181377000354, 50.392186509999874, 46.92101858800015, 42.69697618600003, 42.50644165199992, 39.58247633200017, 27.71783418400014, 38.09061729200016, 53.217549267000095, 69.90880818000028, 66.60356965200003, 69.04677327400009, 61.03439404400001, 52.17948877200001, 59.58720631600022, 51.11833565999996, 45.90639459599993, 44.79536733400005, 43.350099220000175, 40.599119982000275, 41.8099792070002, 38.743710643999975, 43.998953476, 36.598989302000064, 50.369016048000276, 63.63858591400026, 70.75773309700003, 63.082760233000045, 60.47833046300002, 52.42025377999994, 43.06387381199988, 39.43989857199995, 43.350099220000175, 33.57886637800016, 37.20444528200005, 35.676010101999964, 46.36799494699994, 51.02204973000016, 53.81844823300003, 51.11833565999996, 54.23063765200004, 66.55471259700016, 69.95781402000034, 61.44071128400037, 63.082760233000045, 62.93697456100017, 62.59672478200014, 60.23603108399993, 71.96183133199997, 71.50449600599995, 69.66428160400005, 63.082760233000045, 56.47492368800022, 53.57763365200003, 67.04228095100007, 70.70869742200011, 59.2965249880001, 68.14939059400012, 62.19104255599996, 64.50277250800013, 64.45400476300006, 65.44797214800019, 69.66428160400005, 53.962986481000144, 56.5233047480001, 51.987173396000344, 59.19946529800018, 56.23351460400022, 40.6467867570002, 34.69173365200004, 30.086318871999993, 38.22133233600016, 37.47347090700009, 47.71766965200004, 49.5762466719998, 36.45676778200004, 28.972921868000185, 31.387999397000158, 24.875328967000087, 35.107836502000055, 44.55663108099998, 30.692072422000138, 33.24821772400014, 36.83594399200024, 30.45645366100007, 39.71265740500007, 34.64433461200019, 22.131706884999858, 30.692072422000138, 39.15474305199996, 39.569990293000046, 42.22039494800015, 43.903567564000014, 24.320228066000027, 23.526755231999914, 32.4063067699999, 44.92293424600007, 41.76225276200012, 49.912337938000064, 51.71898782299991, 42.22039494800015, 29.897797756000045, 41.66704462299981, 43.01633294800013, 54.03771830200003, 58.18407926200007, 47.621681292000176, 50.08083073600005, 71.16179365199991, 67.75881091600013, 63.34708565200003, 65.901738432, 59.15118432400004, 61.19811514000003, 70.96578400899989, 68.60700901000018, 64.50277250800013, 63.54141916000003, 53.625648070000125, 51.382273666000174, 41.52411003900011, 53.288557156000024, 46.968736961999866, 29.33926466800017, 30.692072422000138, 39.059772591999945, 42.125127681000095, 50.829971644000125, 54.87937365200014, 51.382273666000174, 58.20785640400004, 68.00289185800011, 68.86471993500004, 68.21619111100017, 65.30182965200015, 50.41712917800032, 55.84721044799994, 65.35037698800011, 65.95056565200002, 61.19811514000003, 56.785706952000055, 48.27462562200003, 42.873220244000095, 49.88887168399992, 44.126758609000035, 48.77938780599993, 41.85770565200005, 42.4586855670002, 40.504030877000105, 38.03126568400012, 37.06213441, 35.15526537699998, 26.40732942500017, 31.80505803599999, 42.873220244000095, 41.57183648400019, 51.987173396000344, 54.03771830200003, 46.63372445999994, 47.23846622399992, 64.00008965200004, 65.0095446600003, 69.8110478120002, 75.26775232600016, 67.85639312200033, 61.802351157999965, 71.56957367200016, 65.80433438800014, 51.23824992899995, 42.4109294819998, 49.480326273999935, 47.84339459500006, 43.93586775100016, 44.17460400400023, 37.10965259499994, 27.060035534000008, 25.200148300000137, 30.597873348999883, 41.42890190000003, 57.003461541000206, 61.10112654800014, 48.92330234199994, 51.79461082800003, 60.69501633200002, 62.35383187299999, 57.55520981199993, 65.7555071679999, 58.401607726000066, 60.112941196000065, 73.97610789199985, 72.16928875600024, 61.802351157999965, 65.15568715600011, 62.645403217000194, 66.71982067000022, 64.30795161900005, 73.01822840199998, 74.97279378200005, 63.36749404300008, 52.13153352400013, 51.09397915300019, 45.284613949999994, 50.68578963600021, 48.034998101000156, 35.887881702000186, 32.028556772, 42.82543432400007, 41.79132489199992, 51.19007732399996, 51.89101570800017, 43.378577235999956, 51.45793532400012, 63.51345841900002, 65.60927590399979, 67.56339565000007, 68.86471993500004, 58.498359028000095, 58.66663248700024, 59.36345449200007, 69.3219946600002, 75.9300494759998, 66.40839198100002, 65.7555071679999, 53.04774257500003, 40.585624113999984, 45.65020346700021, 45.428082894, 32.72845357699998, 39.52259745100014, 45.61945670800014, 33.19180597200011, 42.77789346000009, 36.920067220999954, 26.595256164000148, 32.217553078000265, 46.68168880500025, 51.650250700000015, 57.41004785200016, 55.84721044799994, 47.38220263999983, 38.774617071999955, 54.396903157999986, 56.76175569200018, 68.76701908399991, 70.96578400899989, 67.01238990399997, 65.31681337600003, 59.31489500700013, 68.06960302300013, 66.06714424300026, 65.31681337600003, 63.05533560400022, 66.81734374799998, 63.96732767699996, 70.91671869399988, 69.22398298000007, 65.12200528800008, 61.10112654800014, 56.95526941900016, 53.60383550200004, 57.60367998700008, 55.750696436, 43.888022355999965, 45.284613949999994, 46.585760115000085, 41.095306287000085, 46.01141783000003, 41.28596731599987, 40.585624113999984, 34.12391746000003, 40.44277888200031, 44.20627888000013, 49.600686372000155, 57.36157767700024, 55.097960492000084, 45.428082894, 54.107470422000006, 67.97196129999998, 72.429633277, 67.97196129999998, 68.06960302300013, 61.00413795600025, 60.56731530000002, 61.17116422799995, 55.04960926700028, 44.34941354200009, 47.891172332999986, 47.1907181680001, 45.69813817199997, 48.76055341599999, 45.14114500599999, 31.474582329999976, 27.473451331999968, 30.77495762700005, 37.79386535999993, 42.3960962120002, 52.39933200700011, 56.39916613199989, 47.651544811999884, 48.3478906270002, 56.15760915200008, 61.413909241000056, 64.42497467599992, 69.27298882000014, 61.965153292000196, 64.23028484399993, 67.4658134440001, 61.21981302300014, 44.540668948000075, 39.885585026999934, 36.077591572000074, 38.251913332000186, 48.85647381400008, 56.76175569200018, 45.04558093200012, 57.96585378999998, 68.37596452100001, 63.91855993200011, 64.97577402399997, 50.349282655000025, 49.840758554000104, 49.360614190000206, 37.74628770000004, 44.39728877200014, 36.63544547699985, 23.43037462799998, 29.09724852399995, 39.79025147700008, 42.901402468000015, 58.66663248700024, 57.41004785200016, 55.21949720799989, 56.42341718600005, 63.82127453300018, 67.87431957700005, 67.63008976600008, 69.37074918800022, 60.112941196000065, 57.16819410700009, 61.770938818000104, 60.71292285200002, 58.014105082000015, 56.95526941900016, 49.69666589800022, 43.601440708000155, 42.205442644000186, 40.68101733400022, 44.540668948000075, 38.34712793199992, 44.85445278399993, 58.52154069400012, 65.92082362700012, 70.08436965800001, 66.62204689000009, 61.21981302300014, 57.071502322000015, 54.20411320199992, 45.554579875999934, 31.427544701999977, 29.937995524000144, 38.67964661199994, 54.51873761200022, 61.02546732400015, 67.67878512399989, 60.064601051999944, 58.47301084900005, 61.43068903900007, 60.97706801000004, 52.75866607900025, 40.95261645400001, 42.25322856399998, 37.46130971600019, 37.46130971600019, 41.64830154000015, 50.757264996, 44.950016858000026, 54.567088837000256, 75.83169549400009, 68.22928766500013, 49.50470684600009, 36.54040910699996, 31.33298452200006, 34.856416308000234, 52.75866607900025], \"power_mean\": 51.53634118444474, \"energy_millijoules\": 6458.292220368149, \"energy_joules\": 6.458292220368149, \"coremark_score\": 1995.147801, \"coremarks_per_mhz\": 3.2473108740234378, \"ulpmark_cm_score\": 38.709923842025994}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1027.155605224, 1030.7434247110002, 1025.5264934200002, 1007.560063714, 1012.3521843030001, 1028.411642262, 1034.4215725860001, 1040.52356863, 1035.353887594, 1034.0034726840001, 1035.023620427, 1039.680259284, 1026.6935803620001, 1026.133378348, 1013.1400201910001, 1012.398393258, 1005.5123061750002, 1008.301097659, 1012.1216134659999], \"power_mean\": 1023.9503254893684, \"energy_millijoules\": 5119.751627446842, \"energy_joules\": 5.119751627446842}}, \"864000\": {\"active\": {\"elapsed_sec\": 89.113080227, \"elapsed_ns\": 89113080227, \"power_samples\": [82.99791608400028, 87.09796114000005, 75.69204221199993, 74.29361082699984, 77.14436674000012, 57.723851175999926, 44.663078970000015, 39.919094564000034, 59.16971459799993, 75.044105124, 79.24089938799989, 84.39767098400011, 79.29038122299994, 75.69204221199993, 78.99399771900016, 66.73331976400027, 53.67356911999991, 51.6770846070001, 49.07242887799998, 59.28866698800016, 72.43956853999998, 74.68704137200007, 79.24089938799989, 74.58874690700009, 74.39190529200005, 76.6020600039999, 66.28059076599993, 51.98796042100025, 44.42404595200014, 51.72531688200024, 58.63655635500004, 73.59674146500015, 80.49636901400004, 75.83978837200038, 74.24458993700023, 76.65145272400014, 75.64296215200011, 62.540695830999994, 51.6770846070001, 53.38413638400016, 54.736679040000126, 64.390848968, 67.43455531300015, 59.48252591600021, 68.34363704400039, 75.64296215200011, 80.69907647800005, 78.84580596699993, 85.00027007300014, 87.50153740999986, 80.05125764600007, 73.04280665200008, 69.88836001499999, 67.48350167800004, 50.276527102000045, 49.02431574800016, 50.42079787800003, 54.736679040000126, 60.5886260929999, 61.18779613000015, 48.37637866, 48.136454374000095, 52.78460930200026, 62.34599335000007, 68.49040325200008, 73.79321213899993, 67.7405322510001, 74.04774832199996, 82.14761345200009, 75.59362910200002, 78.29657879599995, 82.99791608400028, 75.64296215200011, 80.10079915100027, 89.95234250200019, 87.04812226000013, 83.64594194000006, 80.84753570200019, 79.6957390560001, 72.24333593400024, 73.49825359500005, 86.10166305999996, 87.95445860199993, 82.60139645100003, 82.14761345200009, 76.7993775880002, 70.79631385599987, 75.14271194399998, 75.64296215200011, 61.59683515000029, 58.182329521000156, 63.091008813000144, 56.442384306999884, 62.99372341399999, 57.23959723000007, 43.63275817600015, 53.746605742000156, 74.8967005699999, 81.85033876399984, 87.1033549010001, 91.95441057199992, 78.89528780200021, 66.19624135000004, 68.2946312040001, 65.1892205470001, 67.83823310200023, 53.89141146199995, 51.24373616699995, 55.79468388300006, 62.896438015000285, 66.94609569100021, 71.69357427699993, 74.19531636200009, 75.8516257660001, 82.09798283200007, 81.30155629600017, 56.997594616000015, 47.48440341100013, 48.18453786400005, 50.39945918000012, 61.40225185600002, 76.14729679000015, 66.44057314600013, 72.84620263200009, 86.79943902800005, 88.45280803399987, 75.74137526200025, 71.2376812, 70.54058968200025, 69.25176900499991, 68.09911046800016, 61.69400190399983, 49.98798554999985, 54.54340290799996, 59.69366998800024, 74.60138578600026, 80.50104610900007, 81.49970585200003, 88.55266441399999, 74.8967005699999, 78.45071254599975, 81.50368797200008, 77.24976042800017, 58.05483862699998, 52.543398201999935, 52.639981702000114, 54.20547981200025, 63.548369944000115, 62.34599335000007, 54.350126776000025, 51.843422173000135, 58.94904010000005, 62.34599335000007, 71.39915067700008, 81.25220968000008, 73.350774323, 79.70497522899996, 88.25360735800018, 85.00246969900013, 75.9994612779999, 65.14061404100016, 68.34363704400039, 64.84797280900034, 60.65333187700003, 61.742710174000194, 61.54812687999993, 44.232672138, 43.993639120000125, 57.84336721900013, 69.25176900499991, 74.79809375000013, 86.60059467600013, 79.25089574399999, 84.35479876300019, 83.90123660600011, 80.55061725399992, 69.90361158200017, 69.04475351700012, 64.79911575400001, 69.15388999200013, 69.85451643200008, 67.3492265289999, 55.504785912000216, 46.5489626829999, 48.85981338400006, 50.3033014920004, 57.50415604600016, 67.39820253399989, 63.59691728000007, 62.05406459799997, 78.95433353600015, 76.50352785999985, 87.60593642200001, 81.15300772, 77.39777406000007, 73.50674973700006, 70.85945810199996, 77.75361905499994, 64.89657931500005, 56.24900073699996, 42.09000919600021, 41.44233826000027, 45.70560595200004, 56.80409201200018, 74.55208237600004, 68.14786499599995, 73.60504420200027, 80.60018839900022, 75.753153139, 65.30460788000005, 57.600966865000146, 51.14751896200005, 50.9068522770001, 65.69495089400016, 64.75025869900014, 61.04201045800005, 74.95356440200021, 86.65530367699989, 88.85558126199999, 77.20059151600026, 67.6425802409999, 59.143148204, 53.96382261999997, 54.15709875199991, 58.24857852100013, 63.49957236399996, 55.45634537700016, 52.206098901999894, 64.00098239599993, 69.75657790199989, 76.25707085199997, 75.2490567220002, 63.95240557200009, 64.60418863200039, 79.15212631000031, 83.60342697400006, 77.556317477, 83.80205172000001, 80.55061725399992, 76.95398661200011, 85.55478314800007, 72.40428525200014, 66.14757567400034, 60.75043911400007, 61.450960126000155, 61.20791834800002, 65.6104972600001, 55.60141856900009, 40.69489416100009, 37.905866377000166, 47.004852577000065, 59.30546629200012, 69.75657790199989, 73.60504420200027, 75.80226288100016, 62.005576432000225, 61.20791834800002, 77.16146072000015, 86.75478537000004, 83.35533727200004, 85.05199382500018, 78.85556410200002, 70.35494651199997, 76.30646357200021, 76.20767813199996, 72.10950541200009, 65.69495089400016, 63.85475113200005, 58.658002531999955, 59.257096660000116, 62.65309947200012, 54.853002852000145, 57.165193744000135, 72.06029131200012, 74.65807208200022, 79.35894687099994, 75.2490567220002, 75.80226288100016, 71.60520162400007, 73.40845527200008, 86.75478537000004, 88.70596338199994, 79.05310297000028, 71.89955053299991, 63.75734708800019, 55.35971272000006, 55.16619899300008, 54.108717692000255, 48.352212332000136, 59.2084777, 77.70442046099993, 74.10911020000003, 78.00613728999997, 71.20303632699984, 64.45786801600002, 67.10484882200012, 84.50544148600011, 89.85553265199997, 84.75408323200008, 82.75330397699986, 73.65431777699996, 70.8105555520001, 75.35900948800008, 81.95708388100002, 82.00674433600011, 85.50522933999991, 79.05310297000028, 71.40871679099996, 60.4588677700001, 65.20708480199983, 63.25608495200004, 54.5630351719999, 53.65015124699994, 58.4641436039999, 57.21347471800004, 62.507046328000115, 69.25176900499991, 60.50754620500015, 68.8600013360001, 82.80299407200005, 92.55417985200029, 81.61022470300009, 74.90423135200012, 70.35494651199997, 61.062043324000115, 61.616171470000154, 54.012203680000084, 48.16000654599998, 54.012203680000084, 59.71444466900016, 64.71921870999995, 66.21315525100022, 67.75657221200026, 58.51248374800025, 64.86537797600022, 69.46251054200025, 88.40672762200006, 91.75659334000011, 84.30504899799985, 77.75361905499994, 64.45786801600002, 64.76785489800022, 69.70748275200003, 68.31047571700014, 59.257096660000116, 56.055368602000044, 55.552978034000034, 47.775841708000144, 55.06956633600021, 54.61119761200007, 45.37013894000006, 52.56415956600017, 62.36099318400011, 68.01676459700025], \"power_mean\": 68.1358692265368, \"energy_millijoules\": 6071.797180720754, \"energy_joules\": 6.071797180720754, \"coremark_score\": 2805.710181, \"coremarks_per_mhz\": 3.2473497465277776, \"ulpmark_cm_score\": 41.17397082923045}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1046.2135254959999, 1045.469669888, 1040.62833904, 1035.0041825419999, 1015.987795641, 1018.6405632, 1009.7625841920001, 1020.5433165329999, 1028.170088499, 1035.42067636, 1040.8184056920002, 1030.542240878, 1021.708645255, 1025.7048014499999, 1025.751454182, 1019.9415907199999, 1008.692216235, 1010.6917425199999, 1024.450486137], \"power_mean\": 1026.5338065505264, \"energy_millijoules\": 5132.669032752632, \"energy_joules\": 5.1326690327526325}}, \"1017600\": {\"active\": {\"elapsed_sec\": 75.662421065, \"elapsed_ns\": 75662421065, \"power_samples\": [57.90940919500008, 48.571449368, 59.47169965600028, 66.86047111500011, 77.61104386900001, 79.80832113400015, 81.05777593999983, 64.86537797600022, 67.91894471199998, 78.60851356400008, 88.20740791200024, 91.95357089200024, 96.35572803200012, 88.10774805699998, 91.95357089200024, 95.40280897799994, 82.35654768000018, 70.66334375200017, 75.86268898000003, 74.0107562180001, 69.96270395800002, 75.06333846400003, 78.55900189399995, 64.06776322300016, 64.47503496199988, 66.56711740299988, 81.36217709700009, 83.56033328500007, 97.35318457400012, 98.65201548400046, 88.55525135200014, 92.4045886670001, 96.60120864600026, 87.00817738199999, 75.46830710800009, 67.00714797100022, 70.91788304900024, 67.674269267, 66.87622627600012, 75.96122112400008, 65.07341884600032, 71.76551147199984, 85.15707552399999, 93.05163822700001, 98.45079667600021, 96.80232930800003, 87.85821412700011, 80.56223328800002, 81.95979138300027, 66.66506941300008, 52.08193687400012, 53.48100445200021, 66.37171570100008, 69.61958619400002, 83.90936502100021, 86.05790204499999, 81.61022470300009, 83.41133911700013, 88.60523901700003, 94.6052714110001, 98.4003626560002, 92.25387537200004, 82.4556730490001, 75.5174465319999, 67.77208915200026, 73.71544143400001, 72.22043661500015, 60.57570998199981, 65.8712837170001, 74.61983192799994, 83.90936502100021, 85.95842035200008, 88.75494566499992, 83.41133911700013, 89.70803860000024, 98.45079667600021, 92.5548302589998, 78.01538914799994, 77.61104386900001, 72.91647757700002, 60.83786142400004, 67.02299248400004, 66.56711740299988, 67.57619791699994, 72.71988864700006, 86.41041834199996, 93.10183415200027, 89.0567916519999, 92.50492123699996, 85.6551894600002, 87.75855427200008, 92.95150379200004, 102.8463360520002, 100.90084135200027, 84.15775148800003, 78.91383550299997, 65.57810754100001, 58.48043994, 67.12075285200012, 71.71654975199999, 64.52392185200006, 70.27086297699998, 84.8091771400002, 86.31087713200009, 92.25434707499994, 92.05358668200029, 84.51083256399988, 85.05840082000009, 89.40640115200017, 76.86525475200006, 61.87406600700001, 55.23286701699999, 65.12208452200002, 72.0729573430001, 84.8091771400002, 90.854771562, 90.1576946560001, 94.35425115700014, 96.69960714400008, 87.00770698600013, 72.96575115200017, 63.17242203199976, 62.525372471999844, 63.53133781400038, 68.17434501100001, 83.95888914700004, 93.75317045200018, 87.10730732399975, 85.56023784299987, 99.54767525700004, 98.19914384800018, 79.41251460700005, 72.41690728899994, 68.97256612200022, 63.38501719800024, 68.77643729200008, 72.67061507199992, 70.12365117700006, 82.31325853399994, 96.400346162, 104.59342165399994, 94.70036292600003, 80.90913859600005, 76.11532718000012, 73.27272209600028, 74.76766743999997, 81.11438415999987, 62.97761394400027, 59.82729627999993, 60.381376474000035, 58.23784379599988, 71.87623413600022, 75.56683925200014, 82.61106816600022, 72.71988864700006, 70.57409764800013, 85.1079841159999, 88.3555570389999, 91.35296193199997, 97.75322432799999, 92.2044380530001, 94.20374209300007, 105.09287512200012, 90.30495205700004, 75.22185009999998, 76.21391845200014, 77.21595044799983, 68.38443140200025, 69.37446608799996, 77.41362403500011, 66.07836198899986, 68.12527969599978, 83.01410637800018, 89.1068091520001, 99.79557236400001, 92.95150379200004, 89.85792395200019, 90.80636265600015, 96.09879425800023, 94.90098811999997, 89.55815324800005, 87.85821412700011, 84.51083256399988, 72.57232060700017, 65.93168513299997, 67.674269267, 63.72626493600001, 53.74154283200005, 61.53344206499992, 75.22185009999998, 78.36989518400014, 87.00770698600013, 89.65799126500019, 77.96587747800004, 78.91782000100011, 89.20658765200028, 98.64882399999988, 99.34621915900016, 94.30425328300021, 88.85723465199999, 80.21558249600002, 81.21345040100005, 78.36989518400014, 73.77184811200027, 71.66733565200002, 70.23056447399995, 69.22734364000007, 67.0868470270002, 70.67246617800015, 59.73018904300011, 62.78255545999991, 79.66777632399999, 93.25194312400004, 98.54815507900003, 101.24494252000022, 95.35149084000022, 83.51189561800015, 80.86659122300011, 83.01410637800018, 77.8671080439999, 63.38501719800024, 64.78042137400007, 77.06775869599983, 93.25194312400004, 88.1561190729999, 91.60312996200014, 89.75808593500028, 88.1561190729999, 88.95701315200017, 70.72139821600013, 54.24756771900002, 51.74418274799996, 60.6918970480001, 74.97513979600012, 90.856212508, 97.40116912000008, 83.2137297459999, 76.12473983200016, 82.06516883199993, 76.91956694400005, 58.986209630000076, 62.038397648, 74.82721493200006, 82.86511221000023, 95.89767359600023, 90.9561691700003, 86.90810664800006, 84.06331569999998, 72.37547899200013, 73.8209281720001, 76.7171517679999, 70.37786504199994, 75.62186392400008, 93.30191131600009, 97.94749102000014, 92.25004791700007, 86.90810664800006, 79.71737730399991, 70.23056447399995, 77.57054583600006, 65.48046581800008, 63.84075890200006, 72.97740731199997, 89.80520952700022, 100.34579352500009, 94.29859679200013, 94.05349075000026, 86.50919321200013, 70.18138020900005, 71.33556098300005, 68.38443140200025, 62.63632419600003, 70.32868077700005, 85.26153702700003, 94.00323515499986, 93.85272609100002, 80.31458922000002, 76.47039799499998, 70.42679707999991, 70.78299613199988, 72.97740731199997, 77.01853061400016, 65.04070155399995, 70.37786504199994, 92.0997175570003, 100.2449464419999, 91.55330539999977, 79.66777632399999, 69.12909406000017, 62.44151610800009, 66.33816728400006, 80.76752498200017, 80.71786452700007, 89.15854452700023, 102.73888991200033, 97.99766640400003, 86.35966468399988, 65.23598500000026, 63.59682585600012, 62.84859178900001, 73.32860963200005], \"power_mean\": 79.45850829204657, \"energy_millijoules\": 6012.023111589622, \"energy_joules\": 6.012023111589622, \"coremark_score\": 3304.474258, \"coremarks_per_mhz\": 3.247321401336478, \"ulpmark_cm_score\": 41.58333981086413}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1046.8766704119998, 1047.9370621389999, 1039.4886710919998, 1041.6258562149999, 1028.624974678, 1019.9378337399999, 1023.74670295, 1028.578144242, 1022.9078549580001, 1015.7127853340002, 1020.776266059, 1013.6715190940001, 1018.45244478, 1011.208255596, 997.184030766, 1016.64099294, 1025.880772149, 1018.4058193049999, 1017.9402990400001], \"power_mean\": 1023.978787131, \"energy_millijoules\": 5119.893935655, \"energy_joules\": 5.119893935655}}, \"1305600\": {\"active\": {\"elapsed_sec\": 58.972400082, \"elapsed_ns\": 58972400082, \"power_samples\": [103.2843817710002, 98.43888989499987, 102.98069125899997, 101.28978664399983, 89.5553382620003, 90.0560452960001, 103.03139301400006, 103.6313425779997, 114.01199532100009, 114.26750804000017, 102.23320819000014, 94.99327606200018, 99.19058787400013, 100.98688946000038, 112.01769028600006, 119.5125944360002, 110.22290359599992, 113.90984275400024, 121.20368432800024, 122.94524251200005, 123.5401633920003, 118.60946534800019, 120.111948944, 126.29309443900001, 138.6208861099999, 135.63669553000022, 132.13167945600003, 118.76344979600003, 113.51886800900024, 114.30477296800018, 111.76236008199999, 127.53825272400013, 131.532802081, 122.84225865200006, 119.4099669000002, 111.76236008199999, 111.86459702200023, 122.6876504920001, 122.44919935300004, 119.64972521699997, 115.31329795900001, 104.38351674699993, 96.8901870520001, 102.28388030500014, 103.58087115000012, 93.49558026999989, 96.29434063200006, 105.37628155200014, 101.92969521400005, 101.32992439600025, 106.17485284000009, 98.18694030199981, 107.32362656200007, 120.3472466830001, 121.6999354420002, 127.64165203599987, 122.50079381800015, 113.46795251499998, 114.45822247199999, 120.89500295199991, 132.07963863600003, 130.23575206600003, 131.68856831300013, 134.18328486400014, 126.13804068700006, 130.62702980199992, 128.28805073199987, 126.29309443900001, 113.756482602, 109.47019395700022, 106.67309427700002, 104.47231487599993, 108.51849991699987, 105.32546065199995, 92.14903694800023, 88.905621612, 98.388655341, 108.80851040700009, 113.80769018700016, 118.45548090000034, 109.9680194839998, 100.03328979100024, 111.11188746700009, 125.48750840200023, 125.43576515199993, 130.1321154640002, 122.7906343520001, 122.6876504920001, 130.4713523380001, 124.19069567700012, 117.8048890980001, 116.76406495000015, 114.71388405999983, 115.60140757300019, 113.70527501700008, 120.19299534700008, 113.80769018700016, 98.18694030199981, 100.18477880700016, 102.62655900100026, 103.32747336200009, 112.9060449240003, 111.76236008199999, 94.14599336800006, 92.24923090000016, 92.0988111879999, 97.88449721400002, 109.66262958800007, 110.46566630699999, 98.53482095999993, 103.22627034399989, 118.50689694000016, 129.17477720800002, 124.0359093970003, 129.48577589600018, 123.20309927199992, 125.77616009799999, 135.60570140400023, 133.3765700060003, 127.9258132120001, 129.58935337000003, 125.04329938299998, 118.04494359600017, 121.77979424299997, 123.43685551199997, 115.05748750199996, 105.37628155200014, 102.0814517020001, 95.94202694, 89.55600502800007, 98.98875364800006, 105.122698292, 96.68896824400008, 103.62339694699995, 117.49709890600002, 124.63038765400006, 126.47403608699983, 124.94013775000008, 119.1872375129999, 127.22778898000001, 139.26725531800002, 134.51728955199997, 119.1872375129999, 107.27271635199986, 96.73914362800019, 96.53792482000017, 110.46566630699999, 124.34548195699995, 122.84225865200006, 126.42223336200004, 127.56330973199988, 120.84346796199998, 111.40531723000004, 100.78469845200016, 101.07723240399991, 103.37011045200006, 117.18930871400016, 124.08732812700009, 118.74249218000023, 120.48351587799993, 132.47041122100018, 133.76704582600019, 124.0359093970003, 105.81942060400002, 94.94293135199996, 98.38351006400012, 95.74092638799993, 111.50729202400021, 122.73927479200029, 118.69104650000008, 121.18534493199991, 127.17622222799992, 124.47551260600017, 118.63960082000017, 125.280800752, 122.73927479200029, 128.31732819599983, 135.4282047490001, 133.55879263999987, 126.96915779599999, 120.94653794200008, 111.45643570000016, 117.83954310800027, 126.37069629199982, 121.83138870799985, 106.114453852, 101.828610841, 93.94524913999999, 98.93289737500004, 104.16808941999989, 115.44777994900005, 108.02058562200023, 118.04494359600017, 131.76792746799993, 134.36107772800005, 131.11751436999998, 124.68210106900005, 123.48850945199979, 116.48798131599983, 112.49714626600007, 116.8980421780002, 116.69288006400006, 104.81829413199989, 94.69172415799994, 99.62940554800002, 100.97594784400007, 111.45643570000016, 116.20052377599995, 111.15024917200003, 113.39881731599985, 121.83138870799985, 125.56959876399992, 121.0822152820001, 123.88112311700002, 125.77616009799999, 133.94460202599998, 140.35905665199994, 133.50692984400007, 114.04911137999966, 99.33654495400015, 103.82618233200014, 98.88234421000038, 102.47471374500014, 106.21595367700002, 99.78089456399994, 100.7232558520002, 99.57882274300005, 91.09760096200034, 104.0159766920001, 106.36833387700017, 111.60952896400022, 103.52213441200001, 104.97049621199994, 115.84202630799996], \"power_mean\": 114.1909849509274, \"energy_millijoules\": 6734.116450283732, \"energy_joules\": 6.734116450283732, \"coremark_score\": 4239.659471, \"coremarks_per_mhz\": 3.2472881977634804, \"ulpmark_cm_score\": 37.124395137162594}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1024.437153145, 1017.2891548399999, 1017.7542581799999, 1036.54185313, 1051.6697269000001, 1047.343271152, 1040.170034547, 1029.6779721389998, 1019.517362494, 1030.3765587359999, 1018.8195496299999, 1015.3435710250001, 1023.6920005899999, 1025.500956456, 1011.7251062160001, 1007.780671088, 1010.0528769699999, 1009.5400491689999, 1008.0110930559999], \"power_mean\": 1023.4338536559474, \"energy_millijoules\": 5117.169268279737, \"energy_joules\": 5.117169268279737}}, \"1420800\": {\"active\": {\"elapsed_sec\": 54.191346699, \"elapsed_ns\": 54191346699, \"power_samples\": [116.77900963100001, 119.73050546800005, 124.06260087700002, 115.63698260199999, 122.56059277600002, 139.18565037999997, 148.10484581200012, 145.35506654000005, 135.39709221499993, 126.6071273, 113.53752544800022, 122.50893883599997, 118.33145438800011, 116.28281920200016, 131.9505057580002, 151.50554227599991, 158.64079529200012, 139.78342739200025, 123.57155055700014, 111.94929744399997, 112.0885100590001, 123.10719171699998, 130.54646042700028, 137.13466883800015, 137.36691196599986, 141.41089074900015, 149.40082741200013, 140.11514674400019, 134.82375168400017, 138.0462374279998, 135.03236087300002, 125.15621059299997, 130.93687560400008, 120.27764020000018, 108.14682685700018, 107.0545570820002, 119.03307494500018, 137.52365873400004, 146.545630738, 143.67172812700005, 135.18848302600009, 132.88243762000002, 138.53544566799997, 134.5425872980004, 126.11194832199999, 118.22882685200011, 117.83954310800027, 113.93171116400003, 118.22882685200011, 129.25053830200022, 118.878912377, 133.0385606760001, 149.83959929300022, 144.8627672519999, 136.87366256100017, 123.31366177200016, 120.12356379399989, 110.79294417400024, 122.2511989200002, 123.46844805199999, 128.86377852000032, 124.01115265899989, 131.19654595199995, 144.2169010120001, 148.59669950800003, 144.8627672519999, 145.61800324900014, 139.78342739200025, 136.61265628400042, 136.071346081, 131.79482785100004, 118.41642467299994, 110.84406264400013, 114.78223561899995, 125.00115684100024, 132.12856755500002, 143.51417952700012, 139.41724007200014, 145.14455503299996, 144.33692149199987, 135.63016763600012, 119.06199496900012, 113.93171116400003, 115.8214019699999, 117.76660720400014, 127.48838620099991, 127.85109822000004, 121.31623781900021, 116.52260564400035, 123.80456419600023, 136.66496483900005, 139.41724007200014, 148.6495437279998, 146.75610930200014, 139.74875240000028, 127.43676027900005, 120.02049381400002, 116.72788694499991, 107.60287526799993, 116.47121943899992, 129.74494636300028, 140.6079505570001, 141.56817187700017, 142.9689769600002, 132.72631456400018, 135.36945812400018, 144.65237493199993, 140.87011726700007, 125.98619981200022, 113.48655078399997, 120.02049381400002, 119.76334742800009, 129.3818766610002, 140.81763009200017, 140.76514291700028, 146.2821267259999, 153.9388875720001, 148.33302040000012, 140.81763009200017, 132.4406349630001, 119.21624630500014, 115.71895259600001, 122.35424190800018, 128.99131358800014, 114.0852500200001, 121.81162583199989, 132.07646726000007, 133.91765023300013, 124.94938375600009, 130.83306083999992, 135.36945812400018, 129.2781805420002, 129.53755412500004, 136.7693137000001, 136.61265628400042, 139.41724007200014, 141.3061264360001, 132.9864305460003, 133.86546062799994, 146.10602377700002, 146.82664539599978, 143.1467459769999, 139.3648123720002, 132.83030748999977, 135.91477743299993, 151.67962522000016, 154.7085179579999, 148.7148229720001, 142.70663475400033, 138.16940656600013, 128.57650076200025, 143.40923705199998, 151.02968856400003, 149.83959929300022, 152.48410994799997, 141.41089074900015, 142.44429254800025, 148.82029954400014, 146.33488163600032, 135.96705634799991, 143.40923705199998, 144.59997941200004, 140.83428305200005, 137.64680048200012, 140.50324537200026, 141.0440809950003, 123.1588754920001, 125.69832348699993, 126.19299843599993, 113.6246334519999, 120.36162990699995, 121.60565811200036, 108.74567483600003, 114.42368347599995, 125.59498369199991, 133.6572374860002, 138.40102593999995, 137.9081035239999, 124.14457205200006, 130.0791617310001, 136.66496483900005, 148.12191451599983, 144.33692149199987, 150.87107066, 141.25360962100012, 134.61514249499987, 143.7966231160001, 138.71487571600028, 136.61265628400042, 136.66496483900005, 139.312384672, 139.59164939200014, 140.78203555400023, 143.0941398519999, 139.85339806800016, 144.05926306000015, 144.81010165199996, 139.20779813200033, 141.6938687820002, 147.52497094900036, 138.5055529629999, 126.99388937199978, 126.45189542800017, 130.0791617310001, 128.52454925200004, 139.85339806800016, 133.91765023300013, 123.59797573299988, 120.25876469199989, 117.01846849999993, 114.76600747599991, 124.09309415200005, 125.3365013770001, 114.66361723, 117.66397966800014], \"power_mean\": 132.35373310228846, \"energy_millijoules\": 7172.427037453027, \"energy_joules\": 7.172427037453027, \"coremark_score\": 4613.823014, \"coremarks_per_mhz\": 3.247341648367117, \"ulpmark_cm_score\": 34.855704867341046}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1040.421074408, 1042.655446784, 1034.81778825, 1022.8027129460002, 1020.7145724599999, 1015.94475, 1009.036869702, 1017.00968521, 1030.448826507, 1028.642366157, 1033.18904444, 1029.5757675, 1025.172801624, 1038.37795698, 1036.386966879, 1039.219001898, 1027.392239492, 1016.358914704, 1009.6832683979998], \"power_mean\": 1027.2552660178421, \"energy_millijoules\": 5136.276330089211, \"energy_joules\": 5.136276330089211}}, \"1612800\": {\"active\": {\"elapsed_sec\": 47.740501649, \"elapsed_ns\": 47740501649, \"power_samples\": [187.4329034760001, 176.36461046199997, 168.96731563000003, 171.01900565499977, 167.99468800800014, 159.7937965069998, 164.27325025400023, 165.13666136400002, 154.28420120400006, 148.78369580100002, 152.72017654000024, 160.28315317199986, 155.74646148700003, 170.9114514339999, 183.10855486399987, 179.2248840289999, 177.92608263500006, 191.26316126100005, 182.51757039999984, 167.77989745399987, 167.94092143800003, 166.59224198800007, 167.40435864200003, 171.83008431400003, 166.2708256809999, 155.69323058200007, 148.94186428400008, 149.69722123999986, 152.50839249199998, 167.51161605599987, 178.73774389200003, 171.01900565499977, 175.2287215150002, 188.50934089499992, 185.80658797599995, 182.19410896500017, 180.1411424019998, 181.06194296200033, 178.73774389200003, 182.99959354400016, 176.73961400800022, 170.20810570000003, 165.7819062279998, 161.14154825200012, 162.65795224, 161.4173098450001, 164.32686803900015, 163.62387939199994, 154.9949914770002, 153.75387339199983, 161.47053432700022, 175.2287215150002, 184.2397710969999, 191.47467414000016, 183.10855486399987, 179.76137652700004, 182.99959354400016, 178.5212109319998, 159.42047762200013, 153.75387339199983, 157.79651865000005, 163.35648926199997, 166.7013105619999, 163.62387939199994, 163.5702914420001, 169.29419293200021, 179.92409352699997, 190.18017667000004, 185.58846953400007, 186.99647014799984, 179.1162795590003, 169.9392307720002, 172.63984552500006, 174.63347426799987, 167.4578494860002, 162.43616436699995, 165.40699121199987, 159.90962574800028, 160.6611498520001, 158.17968644199982, 152.02221038799985, 155.427622015, 153.21054342300022, 158.87777110200022, 166.7013105619999, 172.90931495600012, 171.3454075300001, 161.63075647899996, 166.54037592999998, 185.6430691439998, 186.1834612670002, 183.10855486399987, 183.92092796400016, 179.652991402, 172.3163714289999, 173.88049663200013, 175.60785071200007, 161.25708769300013, 155.7994194129999, 157.423824019, 159.20738731200004, 165.353313952, 169.13290147600037, 166.37796445000004, 177.2762845230002, 188.45462213999986, 195.84259245199996, 188.12715143700007, 178.6837498120001, 172.15215219399988, 163.30290131200013, 171.55953624000017, 165.5677477239999, 158.98453048200008, 151.00219499800005, 154.78273207100005, 159.80302107600005, 165.8417197629999, 176.30698287400014, 188.12715143700007, 182.56458642799998, 183.43145167299986, 186.72345405200008, 182.30032479200008, 170.80706219800004, 170.74998185799996, 171.50583820399993, 165.24623470000006, 168.86417444400035, 168.59108537700013, 154.18649818599965, 145.0184437280002, 153.6478623339999, 165.6274422250001, 171.55953624000017, 179.43594252699995, 167.89255665100018, 175.49982152200005, 186.50537754000015, 189.9612254770002, 185.42495070199993, 187.1598873800001, 182.67326835999984, 170.91467593600032, 177.70939054199994, 168.5375353630002, 156.93850302700025, 147.7647203800002, 154.72953080600018, 164.27995013999998, 173.39475112800028, 173.23118528700002, 174.95865855400007, 170.21193426399986, 168.9716100200003, 185.2614318699998, 188.38954167400038, 189.797082349, 179.7073232769999, 176.956204867, 157.10472304000018, 161.4173098450001, 158.12633639199998, 154.34573980200025, 160.01623042000006, 170.37312735099977, 174.95865855400007, 177.97960021200015, 182.35449657599997, 174.36356017599996, 182.40142383599982, 189.9612254770002, 183.59470361700005, 173.98545852400002, 161.4173098450001, 152.78646489000016, 149.39081796000005, 156.61957943200014, 170.64242763699986, 158.61142013600033, 164.92472167599976, 179.2191722770001, 179.81385385599992, 183.85854953800003, 186.614415796, 183.43145167299986, 181.32504450300007, 180.56740809200005, 165.08547818800002, 158.71790577399997], \"power_mean\": 170.56253100926847, \"energy_millijoules\": 8142.740792905595, \"energy_joules\": 8.142740792905595, \"coremark_score\": 5237.13759, \"coremarks_per_mhz\": 3.2472331287202385, \"ulpmark_cm_score\": 30.702193077030497}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1013.6724365599999, 1021.3609867480001, 1032.62182624, 1032.62182624, 1036.748625575, 1045.184286055, 1037.209091208, 1031.971442824, 1034.24961465, 1040.5955891499998, 1047.825718731, 1044.53375377, 1040.040235322, 1042.061418432, 1049.218816886, 1045.2559782390001, 1041.1465726830002, 1054.9167592600002, 1049.6771135499998], \"power_mean\": 1038.9953732696315, \"energy_millijoules\": 5194.976866348157, \"energy_joules\": 5.194976866348157}}, \"1804800\": {\"active\": {\"elapsed_sec\": 42.660770817, \"elapsed_ns\": 42660770817, \"power_samples\": [239.64680870799975, 240.90525799600005, 232.60530670200023, 221.7165981160001, 219.54981797999994, 208.92054030300005, 214.68548961200008, 217.018878652, 203.04413016400008, 212.21093477199997, 226.02090643600013, 235.5000298330001, 236.850171628, 239.72161241200024, 237.02090869999984, 230.80201275700006, 228.69079459500017, 205.79661669999996, 200.93665431599993, 197.38451225199992, 214.79719874200032, 222.3914538449999, 233.4447815120002, 233.55821196700003, 223.43416727599993, 223.15282043399998, 241.321243654, 242.67165318399998, 226.02090643600013, 217.018878652, 204.50342523999984, 203.63302482000017, 206.81217331300013, 222.50416423499996, 234.3206795680003, 232.97059724799988, 236.79316181800004, 245.84932549000018, 241.321243654, 226.3876222629999, 214.9091950420002, 213.87348412400002, 213.70586561200003, 214.4617841820002, 230.32326211600002, 229.62242409199985, 234.73779485199998, 237.7264609020001, 231.67316581599994, 217.808136719, 205.20345277899992, 205.14790098399976, 213.87348412400002, 217.1595698719998, 221.2670984440001, 209.564956919, 224.1639601830002, 236.56570729399982, 241.321243654, 238.08629380300022, 231.67316581599994, 219.66194256199992, 222.81508856200026, 227.28512249200003, 224.22040468800014, 211.87623269200026, 213.3365375970002, 210.63927667200005, 205.2419405359999, 202.11890811700005, 210.91780278700026, 220.562435221, 216.45915456400007, 222.81508856200026, 238.5071688359999, 237.8586019889999, 232.8003945360001, 236.90718143800018, 232.15176817200017, 228.21186583400004, 236.14871571400022, 229.56574149199992, 211.17216255699987, 206.33015508999983, 206.10799519600005, 211.0607502339999, 219.3565213280001, 219.7495982610003, 211.39498720300003, 220.5366975640004, 235.5000298330001, 235.27281259899996, 239.2654612360002, 238.6210742599999, 229.67881601199997, 211.70916821200012, 213.48256560799996, 211.87623269200026, 209.76815230399984, 222.64622262600005, 237.63061751200007, 243.56831218499997, 240.2201699320001, 227.08831226500024, 215.9785029520001, 211.7647608520001, 215.36301897700014, 219.63712577100046, 211.2277255150002, 198.6641447400002, 207.07161456400013, 216.991506352, 232.51682049700003, 238.27906517199995, 243.56831218499997, 233.047629122, 221.7727027039998, 225.400521712, 221.24132191000012, 207.715735236, 208.0493674280001, 213.2249471120001, 215.58696200200006, 220.5366975640004, 226.74951167300014, 218.51259225000035, 232.87733764200016, 241.79847939900014, 242.27129783100008, 246.26877600499984, 231.503141808, 229.98357034000014, 222.53374172000008, 227.81637644600005, 222.927569468, 211.87623269200026, 209.23096848700015, 204.00458003200015, 206.84950178800023, 211.3185869319998, 218.00815366400025, 231.75503119200016, 232.28978640000014, 233.047629122, 247.4466394200001, 229.16983533200005, 225.23129953600005, 224.86894170000005, 225.34401773200034, 219.8883987730003, 224.86894170000005, 211.0607502339999, 201.13858079800025, 198.2914908470002, 204.00458003200015, 210.89348854599984, 223.93876108100017, 226.04899920699995, 214.18236777200013, 218.652244848, 233.99928785199995, 246.15386367500014, 239.22935694399985, 240.08527026399997, 232.8204766170004, 218.5398320280001, 216.54343289199983, 216.29117981199988, 210.41657028200007], \"power_mean\": 222.9900074927101, \"energy_millijoules\": 9512.925604127618, \"energy_joules\": 9.512925604127618, \"coremark_score\": 5860.84021, \"coremarks_per_mhz\": 3.2473627050088654, \"ulpmark_cm_score\": 26.280033125826826}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1018.1578201200001, 1022.7876737309998, 1032.274280448, 1030.061255542, 1029.683742208, 1059.521579952, 1048.306394554, 1042.453917084, 1013.3473678750001, 1011.355181047, 1024.733146437, 1034.69346043, 1047.10639248, 1045.16029552, 1035.201205401, 1038.4382934149999, 1019.78041462, 1022.5166771340001, 1014.3643715999999], \"power_mean\": 1031.0496562946316, \"energy_millijoules\": 5155.248281473158, \"energy_joules\": 5.155248281473158}}}}, \"4\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 159.348578793, \"elapsed_ns\": 159348578793, \"power_samples\": [86.71084486600012, 70.71876479200023, 58.85621790999994, 52.979555325999854, 48.108977302000085, 61.509034360000214, 80.18347231300027, 78.93430164999995, 83.56906292600002, 85.96141810600011, 79.73648980899998, 74.80322434200002, 68.22865815200021, 59.26219071200012, 60.458855427000344, 62.451313342000276, 70.866510952, 82.07369086799986, 75.69973509400006, 79.93523374200004, 87.75550032200022, 86.51091217900034, 71.06359016200008, 65.38265439600013, 55.66577614800008, 52.088271202000215, 52.088271202000215, 58.71016476600016, 63.194052032999934, 63.549860643999864, 74.1539129969999, 87.70539351200023, 89.49442034200024, 77.04507668400015, 65.28477538300012, 61.25451707000002, 65.54219987200031, 57.72437130099979, 53.58070473099997, 63.292004042999906, 63.7456326920003, 67.82507557500003, 83.52167613200004, 82.623354135, 81.27936233199989, 72.55945584400001, 67.43210590900003, 66.187148944, 64.69724968800006, 63.24302803800015, 74.95150544600006, 62.94967432600015, 61.89961403800021, 82.623354135, 91.73894939399997, 82.97381564200009, 68.376048072, 65.78717208200032, 53.45015433399999, 51.894639066999844, 69.025389099, 68.87790982700017, 72.76068945200018, 74.10443116200008, 89.25002976099995, 83.37249226199992, 62.402366977000156, 62.74448951800014, 59.40833320799993, 51.99157941700014, 61.352290850000145, 77.94197242700011, 68.572652092, 79.23623230200019, 86.4110741620002, 80.77913392300002, 73.50884551700005, 62.14369498000019, 58.01630005300012, 54.12874200900001, 55.63567980000016, 64.99088672700009, 77.14408340799991, 71.4664295770001, 77.64477370400004, 86.90613788200017, 83.12325540200004, 78.14035957800002, 54.778083036, 48.898672382000086, 61.05947091400003, 77.09470730399994, 83.27269516199999, 85.76179265199994, 75.60090614299997, 77.29272075200015, 80.97774098500008, 75.50182313300002, 71.36795695, 61.205880881999974, 58.82376322400023, 57.43269248800016, 57.627145030000065, 56.571832327000266, 55.42318000399996, 56.47472509000022, 68.13048233200016, 72.81011181200006, 75.20508222100011, 73.16318735400023, 75.15579477500023, 73.60749630600003, 77.64477370400004, 90.64229559400019, 80.53049217700004, 59.71219970800007, 51.24971963500002, 54.72974289199988, 53.192963712999926, 65.34632281200015, 67.08161007700005, 76.79626112799997, 63.598866484000155, 66.73828392699988, 78.8351762809998, 89.74488513700021, 75.25462372600009, 64.73740953200013, 58.612879367000005, 51.84641745700014, 51.74972567200007, 54.08043154699999, 73.4593933220001, 66.83634110200023, 78.53754535300004, 93.73319227100001, 92.92849120600022, 80.9312085160002, 70.07381572000008, 68.5339598810001, 67.23587330300029, 70.866510952, 76.79626112799997, 78.78548618600007, 81.179743852, 77.69417949000035, 79.68699517100004, 62.5489550650002, 48.01239380200013, 52.786052721999795, 78.09069912300015, 87.15600914700008, 74.75371267200012, 63.194052032999934, 51.94310924200022, 53.64414325100006, 71.86922424400018, 87.1061889770001, 83.81819179199988, 71.72129938000012, 60.522717932000205, 57.627145030000065, 68.17969643200013, 71.31859406499984, 82.42439074900017, 81.37722446800012, 86.26118881000025, 66.28514660200017, 56.02412171700007, 57.91907378200017, 73.36074253300012, 77.99163288199998, 76.14692010099998, 67.67777500700004, 59.419737180000084, 59.468564400000105, 73.11398876000021, 76.69731353199995, 68.08126823199996, 71.36795695, 82.42439074900017, 67.67777500700004, 59.419737180000084, 49.6177147840001, 45.13169288800009, 55.29563719700013, 79.13704741600009, 96.32230616099969, 93.08379157400009, 81.179743852, 72.51408454800003, 71.4664295770001, 60.361391866000304, 50.165854051999986, 49.95563787999981, 55.58703100499997, 49.16191779200017, 63.45210027600024, 75.94914394300008, 79.23623230200019, 77.99197359200025, 78.93867764399988, 79.88548397700038, 64.3458785270002, 49.972459512000114, 49.90750492800021, 69.5721916020002, 76.94606996000016, 89.24395554700004, 81.6259077000002, 74.65494323799999, 72.415493276, 64.59911905800004, 64.15023875700012, 67.57940647700025, 77.14408340799991, 83.56906292600002, 88.40056780200007, 76.59836593599994, 62.265266051000026, 47.507769727000095, 51.84641745700014, 57.578656864000095, 74.50666213400018, 79.78623957400009, 91.3874684949999, 71.9186169640002, 71.2201214380002, 71.86922424400018, 70.02451230999986, 56.0860465090002, 46.67032711700017, 47.31521706100034, 53.15954449300011, 61.02087247600002, 73.31129033800016, 77.19371402800016, 83.51913473600007, 74.50666213400018, 81.179743852, 85.46220065200009, 75.10625327000002, 72.16507397200007, 69.27705552200018, 52.95081223000011, 55.63567980000016, 51.84641745700014, 49.762609856000154, 61.65553309600023, 81.08038080400001, 90.24380645200017, 90.79280465800025, 72.31299883600013, 65.08901735699988, 65.84403118, 63.954347522000035, 64.00338319700018, 62.70529661900014, 74.45715046400028, 63.158567860000176, 79.23623230200019, 95.96936957799994, 88.89963755500003, 82.47400372700008, 71.66362797400006, 82.82463177199998, 61.46036868400029, 68.08126823199996, 60.31253481099998, 46.02119447600012, 49.306475556999885, 68.87790982700017, 76.35086976399998, 74.45715046400028, 84.3178554220001, 80.48096805099999, 73.75881957599995, 75.65222549500027, 74.45715046400028, 69.97546173799992, 54.69539157200006, 53.5472733040001, 63.40334574800022, 70.72750515999996, 76.99570057999995, 90.94331372200008, 91.73551447600016, 80.83184546800021, 73.4129542369999, 75.7511135740001, 56.52340352500005, 57.123917248000225, 55.58703100499997, 66.44386032700004, 67.88491659200008, 72.21805728400022, 90.09338673999991, 80.78203622799992, 76.59916465200013, 76.54978854799992, 62.99865033099991, 44.84315133599989, 43.837967068000125, 63.954347522000035, 82.22517162600002, 89.1438211120003, 87.89997463199984, 69.778500936, 58.12595218999991, 66.9904564320002, 76.30126878400006, 71.17101169600005, 52.059796161999884, 57.38395438300017, 65.24813251199998, 76.89643933999992, 82.87427443199999, 85.7117751520002, 69.42462356200008, 72.16888837200008, 60.571354120000024, 57.54198970499988, 61.509034360000214, 54.74376120399984, 60.11760768900035, 76.79743261600015, 87.95011108200038, 81.67549099600001, 73.16318735400023, 65.74578159999987, 59.58118228000012, 56.94606125500013, 65.29722766200007, 88.00024753200023, 83.27000586999998, 81.27754670800005, 85.01279215900013, 84.16823754200027, 76.59916465200013, 63.45210027600024, 55.89158240200004, 51.60456371200007, 61.96285372000011, 76.40021638000007, 87.60543685000016, 83.31993405999992, 76.20232118800004, 82.72483467199982, 70.97381329900008, 56.39479191400028, 54.88936875600007, 59.02987060800001, 57.83384590200012, 61.11845468199999, 66.9904564320002, 63.75870775200019, 75.95457065200003, 90.4917865299999, 101.5460832470003, 89.99319278799999, 74.76022491200024, 71.86922424400018, 69.82780434600022, 76.64879527199992, 78.38872988900016, 73.01508436999984, 54.66445026699989, 44.438807875000066, 47.62680275200023, 55.94026083699987, 71.72129938000012, 81.03057156399996, 86.75616376200014, 74.35838103000015, 72.16888837200008, 82.27677128200003, 73.11398876000021, 56.686292175999824, 51.81779354799983, 67.13775699999997, 83.07054915200001, 90.4917865299999, 96.66908506599998, 87.60543685000016, 68.33723667399977, 63.20757370000024, 65.34632281200015, 60.71776408799997, 55.53838221000001, 55.98893927200038, 74.45715046400028, 84.563672215, 83.36960620800005, 78.53754535300004, 71.17899264399989, 66.29664852699989, 64.80728324200004, 60.571354120000024, 59.371160356000246, 48.319806910000125, 48.82395512699986, 61.620731178999904, 68.49019443199995, 72.81778279200012, 84.763366528, 82.67519201200002, 81.27754670800005, 81.47664664400008, 80.23258158400017, 69.3263290970001, 66.08915128600006, 53.5472733040001, 61.81626563200007, 74.80951235800012, 73.06453656500003, 77.69417949000035, 65.10109883200016, 59.72750289600003, 65.10109883200016, 72.31690200400021, 64.01159336299997, 72.81778279200012, 91.4841971520002, 77.59511324900018, 70.1771132020001, 51.12060765699994, 55.00424338900007, 67.73752667200006, 86.95507615200017, 99.35035463200029, 88.84947126999987, 74.30886936000002, 57.140763735999826, 53.90521950800007, 62.55861976300025, 62.15813716600019, 77.94228349700006, 87.00518296200016, 80.58331013200018, 73.01508436999984, 55.19858908800006, 50.862940594000065, 58.72641830800012, 77.2976598570001, 76.30214447999992, 75.80068471900017, 68.9328985520001, 59.58118228000012, 65.90416775200015, 81.77712040200004, 80.48369165200006, 79.7853327759999, 75.80627644000015, 68.09152206499994, 70.37419241200018, 66.79397159900009, 81.72750742400012, 89.89299883600006, 71.37631022799997, 52.20504747400014, 48.87230635200035, 61.81626563200007, 94.17192269200018, 86.9052263000001, 81.27754670800005, 50.766307936999965, 54.74376120399984, 77.2976598570001, 77.54545279400008, 68.38648060900005, 59.1272746520001, 66.14943672699997, 74.8590538630001, 77.84315812799991, 60.47383104200003, 57.09202563099984, 73.31424431999994, 85.76174207200029, 78.14078905600013, 59.1272746520001, 50.06903265200003, 64.305230402, 77.99197359200025, 81.3273855880002, 67.99328672799993, 62.92661006700018, 58.58027581200008, 52.61184992800008, 73.51166415399985, 90.34127746600007, 87.25520309600006, 63.90556331200014, 45.0835202830001, 56.39479191400028, 79.88463630699994, 93.17495572000007, 95.3142488479998, 75.1575308890001, 61.313869948000274, 63.51403230700021, 78.59114808200002, 74.1113304920002, 69.58179297200013, 81.6280257310002, 75.1575308890001, 66.29664852699989, 61.76731926699995, 57.68804284900011, 62.816280916000096, 79.43875660000003, 90.8353624020001, 76.40115120400014, 58.028666791000205, 50.165854051999986, 56.94606125500013, 60.92329027000028, 65.05225545200005, 80.48369165200006, 75.05838859900018, 77.04986692000011, 83.9648456230002, 70.57966964800016, 50.427969431000065, 59.02987060800001, 76.84706323600017, 85.71169473700002, 78.34305838, 78.88895771400007, 75.65222549500027, 73.31424431999994, 66.6466710310001, 61.8649609900001, 68.9328985520001, 61.02087247600002, 74.1113304920002, 88.29867118699985, 76.1031192280002, 60.13237491799987, 51.86629355800028, 55.6002606909999, 63.61185219199979, 79.19026290200009, 86.50629249700023, 74.25961159600024, 62.66951470800018, 53.37173369199991, 58.093050744000266, 77.89259340199987, 87.15524643400045, 92.57664438400002, 82.62529346200017, 70.87534067200022, 53.30472490200009, 49.27979168800016, 63.81558372000018, 88.74302595700033, 87.69994305200021, 73.61062782400018, 66.9904564320002, 60.63029279800003, 53.711111403999894, 59.53232522500002, 69.53248956199991, 62.265266051000026, 73.71599885, 84.91303415200014, 83.12047734199973, 67.54092265199984, 51.16907783199986, 65.15754373000004, 83.22082843200019, 91.97827337800027, 86.45621552199987, 79.43875660000003, 65.756955952, 53.06242552300023, 68.68703604700022, 81.22796341200024, 81.92647080999996, 76.54978854799992, 81.37893789300006, 57.93138139200005, 46.236978677000025, 55.14994029299987, 72.52157682400002, 92.12879115200008, 83.86900178199994, 68.09152206499994, 45.996311991999846, 52.96555557600004, 68.68703604700022, 81.6776387089999, 82.62529346200017, 69.48318615200014, 54.112961364000284, 53.51725247600007, 68.09152206499994, 88.24850490199992, 80.68075806799993, 73.21553440299999, 78.6440359950002, 67.68831257199986, 57.44445421500018, 53.80829004400016, 62.314242055999784, 61.52308945599998, 70.0293670420001, 86.30624140200007, 86.55636947200014, 81.72750742400012, 80.38432860400007, 72.02087473999995, 54.598153652000065, 42.16055129500023, 58.88363934400013, 83.52006419199984, 91.4841971520002, 82.27677128200003, 74.90992937500005, 66.00222492700004, 61.82523548300014, 74.95950052000012, 84.41396556699988, 70.67814227500003, 77.14893316100006, 76.59916465200013, 70.13616311200008, 62.86528675600039], \"power_mean\": 70.16932027971504, \"energy_millijoules\": 11181.381461443425, \"energy_joules\": 11.181381461443426, \"coremark_score\": 1569.080331, \"coremarks_per_mhz\": 5.230267769999999, \"ulpmark_cm_score\": 22.358596821159434}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1001.5450600160001, 1015.38090195, 1020.2852875719998, 1027.409105688, 1029.447826682, 1018.93938454, 1025.784816241, 1033.238070094, 1046.892484512, 1041.393226632, 1021.5801412819999, 1004.3191278450001, 1001.7288268950002, 1009.9179670479998, 1020.55616747, 1026.443446016, 1018.5742758600001, 1019.07955622, 1033.4274174], \"power_mean\": 1021.891741577, \"energy_millijoules\": 5109.458707885, \"energy_joules\": 5.109458707885}}, \"652800\": {\"active\": {\"elapsed_sec\": 73.25777143, \"elapsed_ns\": 73257771430, \"power_samples\": [107.54249483500007, 99.73229468400018, 113.4634861720001, 124.95046652000019, 122.675616064, 112.25573555799997, 115.95035153899994, 121.43025545499995, 120.63114132700002, 109.53459937800017, 128.28786442799992, 129.16419436, 107.05125966700007, 94.50790657399989, 97.9937668120001, 119.75062493199994, 127.74320169700013, 122.13030020200017, 113.56593554599999, 103.11799115200029, 99.5803600759998, 118.53542844900016, 128.49549395600002, 122.18204345200002, 117.14008429599994, 108.73299936800004, 107.00020067200035, 116.4917556700002, 112.76821321600005, 119.57022698800006, 142.88297505600008, 137.4971219600002, 121.32682862500019, 96.05681115700008, 97.79145739600017, 117.14008429599994, 132.16565821799986, 128.49549395600002, 118.94739040800005, 106.4535496440003, 107.78272165600038, 106.40278217200012, 114.8629499000001, 107.59358347000011, 116.44025051500034, 125.44332548400007, 125.70266856800004, 117.34569569200016, 100.43141441700004, 93.76288767999995, 99.63109166599997, 116.72859722199996, 122.31400097799997, 132.42621886100005, 129.94436287999997, 101.5717507920001, 96.99575835600012, 108.29285777200016, 110.92940939200003, 127.5354244800003, 132.76182711600018, 110.28093189700007, 90.8313913720001, 93.31609616800006, 113.85552984500009, 135.1377004599999, 139.49095153200028, 124.14678757199977, 99.98543231000008, 95.75401066100017, 99.42842546799989, 112.40945253399991, 119.62161603599998, 118.2779852980002, 132.83621958199979, 130.50847686999987, 136.04769003399997, 122.62384297900007, 94.55814112800022, 101.67313197200042, 114.76038149200008, 129.58046235799998, 136.04769003399997, 121.32682862500019, 110.57127296399995, 105.44883179700037, 102.0635214880001, 106.84728552800038, 122.52056231200004, 116.33750433400019, 115.69350191800004, 128.02792720399998, 103.66487946999996, 94.35668502999988, 100.72054820800008, 122.75114691699969, 132.4488685240001, 134.2630632930002, 125.20939446900024, 106.94940351800005, 95.6026104130001, 108.68185125800028, 122.13030020200017, 124.66461169200011, 121.01734372600004, 115.95035153899994, 119.8796208440001, 119.18381659200008, 100.77133927299997, 101.52092989200014, 113.41239316799988, 117.6852832720001, 119.18381659200008, 131.08116439599985, 118.74127713500025, 111.81253999, 100.3150010889999, 106.94940351800005, 115.69350191800004, 130.22888033599997, 132.501117604, 127.5354244800003, 108.88618139999994, 93.56154983800002, 105.49983112200016, 129.21629465499996, 134.0020570160002, 110.72472246799998, 99.73229468400018, 94.60863462299994, 103.91890836399989, 126.73562634400014, 130.40442481600007, 119.49303291200022, 106.33774294199998, 103.46149970800002, 108.37548719400002, 118.22639083299987, 117.63398288200005, 126.37255664200006, 125.23617053600037, 124.35397041199985, 115.2505177160001, 98.98279287500009, 100.82213033800008, 120.11509871200019, 135.29453599600015, 130.6125289239999, 116.69724803200029, 102.66085055200028, 92.31963216399981, 111.06600306399991, 131.46928866100006, 127.69119071199998, 118.12346649000006, 93.51108598299993, 96.490670164, 117.83971331200019, 119.98266383200007, 122.64780712200013, 117.8912781370002, 103.10591147199989, 91.22439361800002, 109.22805661000007, 134.54600694600003, 135.78596941599994, 111.32207642999992, 98.43981570400024, 98.83094761899997, 115.69350191800004, 135.83836728100027, 116.44025051500034, 98.28805921600019, 99.63109166599997, 122.2104548079999, 129.2683949499999, 129.73622888100022, 106.77747527500014, 96.74321426000006, 113.70163474900005, 131.52147826600003, 126.68391157000019, 109.95773770399978, 102.95344191999993, 127.5354244800003, 139.33358105200023, 121.01734372600004, 103.30903015599984, 106.59251423499995, 122.95809216199996, 121.35574355200038, 121.40722145200016, 112.20467204200008, 104.2074113120002, 114.45241259600016, 115.64202640300005, 123.93987069200011, 121.2525224020003, 99.1346381310002, 96.04477076700005, 122.64780712200013, 134.7550921039999, 117.96894768199991, 96.64224853200017, 104.99062247700022, 128.6243925340002, 140.25880460200005, 119.41553006000004, 109.53459937800017, 100.97424306599987, 113.13744057000008, 130.50847686999987, 126.42453798700012, 109.4834214330001, 107.98667124400026, 105.04162180200024, 112.307062288, 127.82029767600011, 124.25051197199991, 109.12570072000017, 111.04440187, 109.2789721040001, 119.62161603599998, 120.2946819010001, 122.98549330000014, 124.95046652000019, 116.93420861799996, 108.87033589700013, 105.34709468200026, 118.17479636799999, 133.25364661100002, 120.91391689599982, 102.91499150200002, 103.95297329200025, 110.75918826099996, 122.5444673269999, 132.29238922800005, 122.52056231200004, 107.73160318600003, 102.45785090200002, 108.32460138200031, 117.73684809700012, 122.90628943699994, 124.58802061400002, 129.5003951860001, 120.5527185819999, 110.81019260700009, 97.28607341199995, 105.19435824200036, 120.21846626200022, 122.64780712200013, 124.74343060600017, 131.31298748500035, 122.6993441919999, 102.50873127700015, 105.19435824200036, 104.05485299200018, 97.3367156920001, 118.17479636799999, 138.80919243200037, 153.03036425000028, 113.2072310540002, 96.29716599400012, 91.57096180100007, 107.8335779800002, 126.52823410600035, 130.35226504599996, 118.12346649000006, 109.0236072810003, 99.62079350700014, 111.117270319, 119.51857304799978, 104.05485299200018, 99.37795404000008, 116.08050681700024, 133.79335929400008, 136.38207953200003, 115.48786383499987, 96.24658318899992, 86.49872513200012, 109.51413113700005, 124.48450265700012, 139.33358105200023, 129.13601894400017, 110.91272711700003, 104.34682723700007, 107.23648701099978, 110.31561137599988, 106.43959909099999], \"power_mean\": 115.23986761792742, \"energy_millijoules\": 8442.215881577586, \"energy_joules\": 8.442215881577585, \"coremark_score\": 3413.575105, \"coremarks_per_mhz\": 5.229128530943628, \"ulpmark_cm_score\": 29.613078308687225}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1021.335029892, 1011.8565978839999, 1021.1944126200001, 1032.574867769, 1034.42317118, 1030.49408996, 1031.091492096, 1027.807900716, 1019.0746938780001, 1010.285550981, 1019.3496984540001, 1033.967925738, 1037.8026528179998, 1029.5614948149998, 1012.460374794, 1013.5218376080002, 1025.6767891949999, 1037.612355574, 1028.88143545], \"power_mean\": 1025.2090721801053, \"energy_millijoules\": 5126.045360900526, \"energy_joules\": 5.126045360900526}}, \"902400\": {\"active\": {\"elapsed_sec\": 52.946805552, \"elapsed_ns\": 52946805552, \"power_samples\": [165.69104223100044, 174.84579300199994, 173.98127793400022, 149.26837858000022, 130.14416093800014, 138.17971051200016, 147.32905681400007, 160.30578112800004, 170.480423514, 158.5265028519998, 148.8978274120002, 158.53358546200025, 159.7114277369999, 139.73355267700003, 146.143394469, 155.188749981, 168.05919090999987, 180.33507018799992, 149.26837858000022, 134.56272634599986, 137.8464802540002, 145.93205098999988, 157.61611803600022, 167.0363887320002, 163.26873678099992, 149.32143106000012, 149.10976526800005, 144.09826531300018, 156.53344461400025, 152.87717921800004, 163.75130159699984, 176.18952832900027, 182.38334135800005, 169.08139955799993, 143.07029959000033, 144.256437625, 140.0138521240001, 145.60095934000014, 155.188749981, 147.5936010580001, 153.89716129600015, 159.6043707870001, 164.8820171939999, 150.82513572100015, 133.34437119200015, 131.77097020400015, 143.507432354, 173.71091820800007, 167.03493941199986, 152.76490357900025, 137.707599072, 131.35378139600016, 143.78219153200007, 165.529928895, 171.5061105040004, 155.02906277300008, 154.3321839820003, 174.3047758119999, 152.65850104900005, 138.61350317200004, 125.95750559500016, 131.33148925299997, 160.25222281800006, 172.41956711800003, 175.65206740999997, 170.2143436990002, 153.1427877850001, 155.6235350720001, 156.48033866600008, 150.6660722250001, 135.12596561199985, 135.02137907200017, 141.0252005320001, 166.06595378900033, 178.1242602220002, 174.19773243199984, 162.13817208, 165.95857773000012, 157.509513364, 149.8591863800002, 133.21903818500004, 136.78365423700006, 149.10976526800005, 168.32821470699992, 171.87968476000015, 160.735626292, 155.943088192, 139.80357821200028, 140.0138521240001, 143.99290738600007, 150.24199369200028, 144.42986501199994, 152.66480155600016, 176.18952832900027, 175.70433421200005, 153.08982985900002, 143.67656276200023, 139.03330462600002, 145.1259080440002, 154.1725855420002, 155.51710856199998, 164.93550803800008, 166.71217896400026, 158.6938076140002, 161.06223234000026, 143.34934881000004, 124.121790638, 143.2440500109999, 152.2337094100003, 173.6028298900003, 168.16872744400007, 148.79199451600016, 140.762412692, 152.4462416429999, 162.08452446, 164.77448405400014, 159.7646817069999, 153.68439146800029, 138.71838613, 147.7124873380003, 144.1510796980001, 166.7138058200003, 159.44433437199996, 158.6938076140002, 170.2108061869999, 150.61296027000026, 130.341198135, 135.4924217920002, 153.04662824800016, 173.6028298900003, 174.03546102400014, 153.08982985900002, 155.08210955100026, 150.24199369200028, 142.43832282200015, 150.4538967740002, 169.29674529, 167.30381434000014, 161.16919294700006, 162.13817208, 153.6314038600001, 141.737954102, 137.97006285200018, 150.02981824100016, 167.03493941199986, 160.09209720400008, 163.42958264499998, 147.32905681400007, 139.54093826799976, 134.21698924299994, 139.54093826799976, 169.08139955799993, 167.30381434000014, 156.70179585200003, 165.4223360850001, 164.55996922600002, 153.24924959500004, 140.0138521240001, 126.93720499200003, 143.138751212, 164.55996922600002, 175.3271683539997, 170.91186665700002, 158.53358546200025, 146.15718962600022, 150.73051432399984, 147.9241875990001, 135.28297985200038, 136.85054598800025, 151.26084213600006, 173.01348389199984, 178.77199321900002, 163.48301431900018, 162.835162288, 145.02043147200038, 137.7601457220003, 147.32905681400007, 150.5070087290003, 147.7124873380003, 156.70179585200003, 171.29013119599995, 167.24992882000015, 147.76548034300004, 130.91453866600023, 137.81269237200013, 159.93169693200025, 176.93825878600023, 162.46024727200006, 157.509513364, 153.90667923700016, 135.12596561199985, 143.88754945900018, 169.45839298600004, 169.62140017200022, 162.40657001199997, 145.404099244, 135.5448494919999, 141.410205206, 154.65636814200025, 178.55458756200028, 163.80503833199987, 139.36611912700005, 130.16695728700006, 148.84477493200006, 170.53445781899995, 171.28576279599997, 147.50105883600008, 140.60468597199997, 152.1807809720001], \"power_mean\": 154.08006647809577, \"energy_millijoules\": 8158.047319254971, \"energy_joules\": 8.15804731925497, \"coremark_score\": 4723.397823, \"coremarks_per_mhz\": 5.2342617719414894, \"ulpmark_cm_score\": 30.644588124653232}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1009.5900391010001, 1015.4138878670001, 1030.02136764, 1014.85875059, 1026.503280843, 1044.159560229, 1044.708145452, 1034.2648880119998, 1019.432654254, 1008.343650736, 1016.24489442, 1030.334565888, 1030.85498304, 1041.020360838, 1038.095816012, 1035.14676408, 1035.8431169310002, 1013.1497893439999, 995.4526131679999], \"power_mean\": 1025.444164655, \"energy_millijoules\": 5127.220823275, \"energy_joules\": 5.127220823275}}, \"1056000\": {\"active\": {\"elapsed_sec\": 45.277671285, \"elapsed_ns\": 45277671285, \"power_samples\": [180.16697187500017, 194.97814776400014, 197.17431020000004, 186.25029211599986, 163.5366302299999, 170.10301467600016, 203.68850523600008, 200.62506401200017, 182.53677133199994, 152.07437844200012, 164.07689727399998, 203.68850523600008, 206.75105527600022, 192.50113982300013, 169.88715455500005, 161.97797773599973, 187.80530188800003, 203.04092110800002, 196.3063057170002, 173.11431558200002, 181.45761079000022, 196.6369810020003, 194.16526185199996, 185.1655631110002, 165.31404534500007, 185.92218456399996, 197.39516293199995, 188.83216347600023, 171.17785264000008, 170.96203232800008, 186.35956766200002, 183.87510231600004, 188.50334344400017, 192.26944401200012, 173.92584136699998, 181.29418072600015, 182.3117744470003, 201.4176006600003, 205.1825140000003, 175.97259786200016, 162.03165499600004, 181.67533097800015, 207.17156378900017, 195.23587970200015, 169.40565845900005, 163.4294323329998, 175.5933176360004, 195.66310206100002, 205.51568316400017, 184.36618077200023, 167.57478218200026, 174.35274935300004, 188.44844626400004, 201.25140827600012, 187.21276400400006, 183.71131601200022, 181.77377678200014, 183.76572447600006, 197.82186449300025, 187.65062198700025, 185.22003074500026, 170.2648532999999, 169.99494606599978, 185.32952753500012, 184.6316051240001, 193.66989261200024, 195.29107445199998, 181.51190091399985, 158.91601164800022, 172.41890678200002, 193.72502788700012, 209.10945934300003, 199.31369088399993, 176.39920865199997, 176.77545243400027, 176.019442777, 190.49631479800018, 204.05437081000014, 193.242343764, 180.9732365499999, 160.7410755560004, 174.24426422299985, 195.9935999620002, 197.43551821100027, 182.046214836, 179.13873077199992, 172.63496516200007, 197.06402558800005, 191.67686178299982, 184.83763426300015, 184.09329708400014, 181.56647088399995, 177.63557486199988, 176.29082352699993, 188.18881192400022, 203.99875954000004, 188.82175013200003, 169.94118886000024, 166.0150603000002, 172.25672414200017, 200.1270212200002, 203.85496509199993, 196.6922352270003, 181.5556583399998, 159.8262800020002, 171.77017622199992, 191.67686178299982, 193.5599048070003, 194.89137388599988, 190.44132830800027, 189.31524823600012, 175.2167175720001, 185.703352558, 191.84171739099975, 196.95374097600006, 181.29418072600015, 165.74633326800017, 178.71325913600003, 204.97944091599993, 196.898456916, 185.53929878199983, 165.15284324100026, 164.72436221500016, 187.58639447200017, 198.72597900600022, 192.96738174799998, 175.2137589370002, 171.98623460199997, 185.81290901800003, 196.512035512, 196.52675590700005, 190.44132830800027, 183.1773281479998, 177.95707085900017, 175.75594586800025, 173.43875908699988, 194.85036560200024, 195.86483862700015, 182.53001207600005, 169.7253287389999, 176.019442777, 193.44963425700007, 196.40175090000002, 180.32015339500003, 163.70135846200014, 174.458295572, 213.96416562700028, 206.58414982800036, 177.57695981300026, 165.26021930000024, 172.79147285, 201.25140827600012, 198.02328956399992, 184.03888862000008, 169.028456645, 165.26021930000024, 193.44963425700007, 198.9267221680002, 191.89676335600006, 181.61025794999978, 171.23106804400004, 187.90060055999993, 193.98687317200006, 203.57734197599984, 190.75920005199987, 179.568474594, 188.39383060800014, 204.16530816400018, 189.63356557199995, 166.01304888400023, 167.52249173199993, 199.47961579599996, 194.79517085199996, 173.06010265700002, 168.21946304200014, 187.0485321079998, 200.71896396399984, 187.53152693200013], \"power_mean\": 184.87202244934278, \"energy_millijoules\": 8370.574662254483, \"energy_joules\": 8.370574662254484, \"coremark_score\": 5524.007336, \"coremarks_per_mhz\": 5.231067553030303, \"ulpmark_cm_score\": 29.866527698191085}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1027.796175538, 1019.987645324, 1019.2852434350001, 1035.177418506, 1055.109260793, 1036.29719966, 1014.6258046599999, 1015.274222638, 1027.147608691, 1045.260851418, 1040.685725256, 1024.829585142, 1023.72508812, 1022.5733157640001, 1018.1802721379999, 1030.6990161, 1034.62406034, 1028.393193656, 1021.280480544], \"power_mean\": 1028.4711667222632, \"energy_millijoules\": 5142.3558336113165, \"energy_joules\": 5.142355833611316}}, \"1401600\": {\"active\": {\"elapsed_sec\": 34.112393633, \"elapsed_ns\": 34112393633, \"power_samples\": [274.96023260799984, 295.6003366809998, 302.6374392580001, 293.60490228900017, 277.42506440600005, 282.4038471580002, 294.77855108099993, 293.37995800299996, 296.9649379560001, 287.4449692840001, 271.44171210599984, 281.9390112620001, 298.35850168700017, 302.6374392580001, 288.0914813410002, 283.8747674980002, 279.59289907599987, 274.96023260799984, 299.8147941179998, 290.1415762559998, 280.59070420199987, 282.87273089199994, 282.9320615920001, 308.9019611910003, 309.20394439000006, 279.533746996, 263.06163739199997, 274.0826866240002, 297.5962563940002, 302.6374392580001, 277.24817839799994, 268.3342979019999, 273.43608521500005, 303.6857716459999, 303.926594043, 275.605845432, 272.7348552540002, 287.8608260199999, 306.7896241660003, 306.32400786100015, 285.6877027620001, 285.74684754200007, 291.37500182400026, 303.9865677849998, 299.5322801020002, 290.2605861379998, 276.89440638200017, 286.15617073900034, 301.509817267, 291.85212997600024, 279.29744202000006, 277.890524014, 293.65414831199996, 304.7496863470001, 290.72846008500005, 271.970935606, 275.429137544, 295.8284981800002, 306.68579936499987, 296.9376483970002, 264.53004483999985, 279.58958861500014, 305.3361241, 302.4570778660002, 275.19504475300005, 272.02945881000005, 284.57659205699997, 286.4529581180004, 297.9393203090001, 294.53969963500026, 278.47797314800005, 272.85226284500004, 287.73467953299996, 303.66591666700015, 302.036131672, 294.77855108099993, 276.89440638200017, 292.4848349229999, 313.4197187480004, 300.64145961200006, 280.9924953919999, 264.8804308240003, 291.25587290800013, 304.50874554200027, 298.58592171800024, 274.72506188000034, 263.5874067100003, 292.25600028400004, 301.22373025599995, 288.495679722, 271.50124164399995, 281.7615015419999, 312.59133040300026, 304.02717322700005, 293.5450955940005, 289.7967604180001, 279.471528282, 288.55527815699975, 290.907217229, 296.3069829640003, 292.25600028400004, 277.88796151600013, 281.3475148319999, 291.43471940400013, 296.231270212, 294.9427092620001, 291.07702641200035, 273.3180107800001, 268.6881503740001, 309.065089188, 315.81543955000006, 301.75028288199996, 280.53179610200004, 267.3977624020001, 283.2230192650002, 295.7797175370001, 306.1431121090002, 294.2409818240001, 279.88519469300013, 280.2952527519999, 279.471528282, 288.61457095900005, 309.48801198, 303.6857716459999, 298.393018752, 282.22131023199995, 288.67416939400005, 295.1819861230001, 289.20170086200005, 301.389738802, 313.48013655600016, 292.5446119779999, 268.0439170510001, 269.27592667600015], \"power_mean\": 289.17291349456724, \"energy_millijoules\": 9864.380253128136, \"energy_joules\": 9.864380253128136, \"coremark_score\": 7332.668505, \"coremarks_per_mhz\": 5.231641342037672, \"ulpmark_cm_score\": 25.343710763858827}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1031.881024526, 1003.773432565, 1012.8212829250001, 1030.19261184, 1047.4135604240003, 1038.076575424, 1022.47015186, 1028.74458012, 1036.9275059129998, 1022.150661532, 1040.851957428, 1045.13684959, 1024.7352632519999, 1008.528967746, 1008.3899541380001, 1037.619234774, 1046.813434238, 1040.947521502, 1019.7415279979999], \"power_mean\": 1028.8008472523684, \"energy_millijoules\": 5144.004236261842, \"energy_joules\": 5.144004236261843}}, \"1536000\": {\"active\": {\"elapsed_sec\": 31.123874988, \"elapsed_ns\": 31123874988, \"power_samples\": [349.55128022600024, 335.49416176399995, 328.80185163400006, 329.2639026190002, 346.390487418, 355.35111506400017, 344.66716496999993, 325.3679401640002, 347.3055539950001, 361.7972534200003, 353.08657732000006, 347.2045997800001, 331.8400747490002, 358.9067750460001, 350.7150142300002, 341.50705508600026, 347.05684995700017, 340.798862162, 338.22280898200006, 333.9591321910002, 342.5472680170001, 353.1082761370003, 348.0761201800001, 332.116952182, 323.9238551740002, 357.884214877, 373.52819955199993, 346.72592878399996, 324.722113088, 321.40918504399997, 343.25514229600003, 358.07241763700017, 347.24321814999985, 333.1898420440002, 323.52663878, 333.9274927720003, 335.5234719770001, 355.100986508, 352.00327841499984, 342.0293322960001, 329.56888642800004, 338.1612071920001, 364.76841319999994, 359.81792064699994, 344.17038699299997, 340.36554867199993, 336.28865757799986, 351.4237726959998, 351.5038877919999, 344.35671861699984, 340.30351039699985, 335.5234719770001, 332.7587060620001, 355.82954786000005, 357.3199288620001, 333.2815763440001, 318.70728708699994, 337.7284069870002, 373.47252843700016, 354.8505364500004, 334.9391772199999, 326.25898787100004, 340.61338362699985, 356.86623301300006, 344.60526713599984, 328.65013616500005, 327.26824840999984, 350.61236699899996, 354.662779282, 346.8078262480003, 345.8309581860001, 336.0419716720003, 335.8235257020001, 357.05434700499995, 372.25995747700017, 353.81284096800005, 336.31745281200006, 331.6863395380001, 336.56457498200007, 354.7881650620002, 345.43778324400023, 350.61236699899996, 343.5866874600001, 335.40018815200006, 323.0377002980001, 333.2198652789998, 355.70436454800006, 363.8860827250003, 350.81718559299975, 327.4237718659999, 329.81450414000005, 341.32116905400017, 361.105650472, 363.4335410450001, 350.5278807740003, 334.63095806399997, 321.5625952920002, 348.2865256719999, 363.2913518359999, 354.8505364500004, 335.03001975200004, 322.7318389740001, 340.825579068, 357.36808506700004, 353.8960202520004, 338.3354632520002, 343.4872773920001, 351.44134368699974, 337.4574452190002, 353.7083518520001, 360.8543346880001, 349.449725274, 330.64476186900015, 328.9570193920001, 347.97518805100003, 367.03328456199984, 339.6001546430002, 321.99858826399986, 331.04057197900033, 356.03273309200017, 367.56261778499993, 342.11301212800004], \"power_mean\": 343.9537865536476, \"energy_millijoules\": 10705.174654344964, \"energy_joules\": 10.705174654344965, \"coremark_score\": 8037.55144, \"coremarks_per_mhz\": 5.232780885416667, \"ulpmark_cm_score\": 23.35319208440296}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1035.517618302, 1041.3087037009998, 1028.74458012, 1031.691439152, 1028.79194952, 1033.600020712, 1029.719593728, 1026.110041553, 1037.047141366, 1040.8303399269998, 1021.9062554760002, 1009.9588309149999, 1030.679934447, 1053.559043334, 1047.580525845, 1041.85690499, 1019.835192585, 1014.9384476700001, 1029.341130624], \"power_mean\": 1031.7377733666842, \"energy_millijoules\": 5158.688866833421, \"energy_joules\": 5.158688866833422}}, \"1804800\": {\"active\": {\"elapsed_sec\": 26.520406396, \"elapsed_ns\": 26520406396, \"power_samples\": [469.811176292, 459.544832714, 455.9224856120002, 471.90568604800023, 479.50008663200015, 473.063452204, 453.5919073299999, 458.4313837569998, 470.486267646, 481.496316643, 468.21925373199997, 456.60624852800015, 460.05526569999984, 472.0096157620003, 488.0967459120002, 476.37670803100013, 466.58974997200016, 469.1317355960002, 468.49063258, 480.3071823769999, 468.7241409720002, 460.05526569999984, 472.07781330700027, 470.2141839789999, 466.65736091199983, 461.3784693820003, 464.49181025200005, 452.64197136200005, 473.39567046900015, 478.5129629370001, 483.0167242770001, 470.2141839789999, 457.21282947200007, 471.0966881800002, 483.5931928320001, 473.3639998320002, 443.94230279199996, 457.38202320400023, 481.4277025780002, 483.15377870199995, 459.889999857, 442.92362381700013, 470.1464250170002, 488.234275306, 482.2623964520001, 457.9594139829999, 460.86848261399996, 483.38734567999995, 485.387199708, 467.7055033800002, 449.15675791900026, 464.28863665200015, 480.3071823769999, 480.468865003, 458.768901055, 451.9298990730001, 456.673761818, 468.3845951080002, 484.3713210220001, 470.01020854700005, 453.5601259079999, 446.4224770850003, 471.66932749900025, 489.3828729620002, 471.8053728579998, 465.100508492, 463.24151186799986, 462.9347285770002, 455.18187945599993, 468.3168953160002, 488.9695749939999, 478.1711898760002, 457.58430562000035, 441.43756037200023, 470.1112943600001, 492.1173147239999, 482.701423492, 457.38202320400023, 466.58974997200016, 482.8109664770002, 485.7530401480001, 475.4207807560001, 454.3674732039999, 459.177433908, 476.61190850799994, 481.4563141719998, 465.4393119570002, 447.29297150800016, 456.1634489500002, 485.04379298000003, 481.4843896540001, 458.97488402, 453.457523779, 481.62173712399976, 486.260622625, 478.5129629370001, 470.01020854700005, 457.62224321199983, 451.768731742, 465.94891310800017, 488.39355287800004, 479.92100808400005, 462.8353422040002, 454.272245376], \"power_mean\": 468.6405437218174, \"energy_millijoules\": 12428.537673145003, \"energy_joules\": 12.428537673145003, \"coremark_score\": 9433.250321, \"coremarks_per_mhz\": 5.226756605164007, \"ulpmark_cm_score\": 20.11499716013962}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1040.8036571680002, 1025.042105505, 1020.56831124, 1037.2656851200002, 1046.451241968, 1041.330281079, 1026.474757638, 1014.1085090799999, 1024.38222768, 1044.704571622, 1041.090951296, 1020.155068488, 1021.342600486, 1036.71358348, 1047.38784409, 1027.813329648, 1022.8211031029999, 1016.9173590080001, 1050.1840991600002], \"power_mean\": 1031.8714361504738, \"energy_millijoules\": 5159.357180752369, \"energy_joules\": 5.159357180752369}}, \"2016000\": {\"active\": {\"elapsed_sec\": 23.706378793, \"elapsed_ns\": 23706378793, \"power_samples\": [577.4906238670003, 598.5520979860003, 613.5847022580003, 592.1802571360001, 569.5612115739998, 590.1233829669998, 608.4890715240003, 599.9845391220001, 580.909089575, 588.2684306140002, 600.058747152, 599.2659930119999, 593.6852504039998, 588.0477913260002, 588.7653346119998, 606.0844814519999, 605.7670041370004, 618.0212576939998, 601.0466417409998, 589.4833153749998, 593.3363538400001, 611.3728641939999, 607.0744460000001, 584.9082637959998, 574.5570865980003, 590.4728739080001, 601.4684092959999, 587.459545827, 592.401141844, 596.697063412, 604.012064777, 605.543958769, 597.0458050600002, 581.8269873279999, 585.1123236250003, 619.3053070839999, 610.8345989319998, 581.2605313900001, 565.9130217090001, 591.5361869590004, 619.9051942720002, 610.3870820680002, 575.0386360800001, 582.5444621350002, 603.9623290760001, 613.986422764, 595.883930881, 583.8283928800001, 595.3879791940003, 594.5264988019999, 605.0978680330002, 601.690920304, 586.3962543700002, 572.7626909139999, 593.3163072909999, 602.7284311020003, 607.9680547680002, 591.5899683280002, 579.4599357479999, 594.6488240080002, 610.4344417870002, 607.3724431019998, 603.5910108700002, 609.221283502, 587.7534796730001, 605.0237741950004, 609.6885380410001, 601.514915772, 591.3884849890001, 587.8271520379999, 586.0285674220004, 597.5896877670002, 611.0312414440002, 594.674118856, 579.899075716, 582.45081187, 596.1319810759999, 606.9998510900002, 606.653897202, 573.6820139900001, 580.8210340139999, 616.587570118, 611.298090859, 574.0343154599998, 574.107018124, 600.156955117, 618.5902866480001, 606.1586344600003, 581.2605313900001, 580.7476590240001, 596.5021945799999, 621.2401060350003, 607.9375903520001], \"power_mean\": 595.9249139513656, \"energy_millijoules\": 14127.221742317004, \"energy_joules\": 14.127221742317005, \"coremark_score\": 10553.866937, \"coremarks_per_mhz\": 5.2350530441468255, \"ulpmark_cm_score\": 17.696331561862888}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1037.5750928640002, 1027.435098662, 1025.4024992729999, 1022.585929976, 1044.199184794, 1053.268362006, 1060.2725065529999, 1030.5695234099999, 1011.797435315, 1023.3702562080001, 1037.5750928640002, 1048.1491546500001, 1034.63204032, 1030.0641906370001, 1022.0325752979999, 1018.0674099439999, 1029.0421674, 1046.258926592, 1039.060913604], \"power_mean\": 1033.7557031773683, \"energy_millijoules\": 5168.778515886842, \"energy_joules\": 5.168778515886842}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm6125/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 250 ms\nBaseline power usage: 1003 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 614 864 1017 1305 1420 1612 1804\n\n 300:   974     3.2 C/MHz     34 mW    8.6 J   28.9 I/mJ   256.6 s\n 614:  1995     3.2 C/MHz     52 mW    6.5 J   38.7 I/mJ   125.3 s\n 864:  2806     3.2 C/MHz     68 mW    6.1 J   41.2 I/mJ    89.1 s\n1017:  3304     3.2 C/MHz     79 mW    6.0 J   41.6 I/mJ    75.7 s\n1305:  4240     3.2 C/MHz    114 mW    6.7 J   37.1 I/mJ    59.0 s\n1420:  4614     3.2 C/MHz    132 mW    7.2 J   34.9 I/mJ    54.2 s\n1612:  5237     3.2 C/MHz    171 mW    8.1 J   30.7 I/mJ    47.7 s\n1804:  5861     3.2 C/MHz    223 mW    9.5 J   26.3 I/mJ    42.7 s\n\n\n===== CPU 4 =====\nFrequencies: 300 652 902 1056 1401 1536 1804 2016\n\n 300:  1569     5.2 C/MHz     70 mW   11.2 J   22.4 I/mJ   159.3 s\n 652:  3414     5.2 C/MHz    115 mW    8.4 J   29.6 I/mJ    73.3 s\n 902:  4723     5.2 C/MHz    154 mW    8.2 J   30.6 I/mJ    52.9 s\n1056:  5524     5.2 C/MHz    185 mW    8.4 J   29.9 I/mJ    45.3 s\n1401:  7333     5.2 C/MHz    289 mW    9.9 J   25.3 I/mJ    34.1 s\n1536:  8038     5.2 C/MHz    344 mW   10.7 J   23.4 I/mJ    31.1 s\n1804:  9433     5.2 C/MHz    469 mW   12.4 J   20.1 I/mJ    26.5 s\n2016: 10554     5.2 C/MHz    596 mW   14.1 J   17.7 I/mJ    23.7 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm6125/main/uptime.txt",
    "content": " 05:42:32 up 23 min,  load average: 1.78, 1.84, 1.49\n"
  },
  {
    "path": "results/sm6125/main/versions.txt",
    "content": "Kernel: Linux version 4.14.210-20210102-1539-ReZero (diepquynh@lolicon) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project f502b14d40e751fe00afc493ef0d08f196524886)) #1 SMP PREEMPT Sat Jan 2 15:49:39 +07 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm6150/main/cmdline.txt",
    "content": "rcupdate.rcu_expedited=1 rcu_nocbs=0-7 androidboot.hardware=qcom androidboot.console=ttyMSM0 service_locator.enable=1 swiotlb=1 earlycon=msm_geni_serial,0x880000 loop.max_part=16 cgroup.memory=nokmem,nosocket androidboot.vbmeta.avb_version=1.0 buildvariant=userdebug skip_override rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=green androidboot.keymaster=1 root=PARTUUID=0de6d3c0-bc3b-230a-21ab-0451e89c001b androidboot.bootdevice=7c4000.sdhci androidboot.serialno=REDACTED androidboot.cpuid=0x7cd1e8fd androidboot.hwc=India androidboot.hwlevel=MP androidboot.hwversion=1.19.0 androidboot.secureboot=1 androidboot.dp=0x0 androidboot.baseband=msm msm_drm.dsi_display0=dsi_nt36672a_shenchao_vid_display: androidboot.fpsensor=fpc skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=0 androidboot.dtb_idx=0\n"
  },
  {
    "path": "results/sm6150/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 14 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nHardware\t: Qualcomm Technologies, Inc SM6150\n"
  },
  {
    "path": "results/sm6150/main/dev.list",
    "content": "/dev\n/dev/mmcblk0p69\n/dev/loop15\n/dev/mmcblk0p39\n/dev/mmcblk0p21\n/dev/mmcblk0p79\n/dev/ram14\n/dev/loop1\n/dev/mmcblk0p31\n/dev/loop5\n/dev/mmcblk0p51\n/dev/mmcblk0p9\n/dev/ram4\n/dev/mmcblk0p61\n/dev/mmcblk0p13\n/dev/mmcblk0p71\n/dev/loop13\n/dev/mmcblk0p41\n/dev/mmcblk0p23\n/dev/mmcblk0p42\n/dev/mmcblk0\n/dev/mmcblk0p81\n/dev/mmcblk0p52\n/dev/ram6\n/dev/mmcblk0p62\n/dev/mmcblk0p32\n/dev/mmcblk0p15\n/dev/mmcblk0p72\n/dev/mmcblk0p25\n/dev/mmcblk0p44\n/dev/mmcblk0p2\n/dev/loop2\n/dev/loop6\n/dev/mmcblk0p82\n/dev/mmcblk0p54\n/dev/ram8\n/dev/mmcblk0p64\n/dev/mmcblk0p34\n/dev/mmcblk0p17\n/dev/loop14\n/dev/mmcblk0p74\n/dev/mmcblk0p27\n/dev/mmcblk0p46\n/dev/mmcblk0p4\n/dev/loop4\n/dev/mmcblk0p84\n/dev/mmcblk0p56\n/dev/mmcblk0p66\n/dev/mmcblk0p36\n/dev/mmcblk0p19\n/dev/mmcblk0p76\n/dev/ram11\n/dev/loop3\n/dev/mmcblk0p29\n/dev/mmcblk0p48\n/dev/mmcblk0p6\n/dev/mmcblk0p86\n/dev/ram1\n/dev/mmcblk0p58\n/dev/loop7\n/dev/mmcblk0p10\n/dev/mmcblk0p68\n/dev/mmcblk0p38\n/dev/mmcblk0p20\n/dev/mmcblk0p78\n/dev/ram13\n/dev/mmcblk0p30\n/dev/mmcblk0p50\n/dev/mmcblk0p8\n/dev/ram3\n/dev/mmcblk0p60\n/dev/mmcblk0p12\n/dev/loop10\n/dev/mmcblk0p70\n/dev/mmcblk0p40\n/dev/mmcblk0p22\n/dev/mmcblk0p80\n/dev/ram15\n/dev/mmcblk0rpmb\n/dev/loop8\n/dev/ram5\n/dev/mmcblk0p14\n/dev/zram0\n/dev/mmcblk0p24\n/dev/mmcblk0p43\n/dev/mmcblk0p1\n/dev/mmcblk0p53\n/dev/loop0\n/dev/ram7\n/dev/mmcblk0p63\n/dev/loop11\n/dev/mmcblk0p33\n/dev/mmcblk0p16\n/dev/mmcblk0p73\n/dev/mmcblk0p26\n/dev/mmcblk0p45\n/dev/mmcblk0p3\n/dev/mmcblk0p83\n/dev/mmcblk0p55\n/dev/loop9\n/dev/ram9\n/dev/mmcblk0p65\n/dev/mmcblk0p35\n/dev/mmcblk0p18\n/dev/mmcblk0p75\n/dev/ram10\n/dev/mmcblk0p28\n/dev/mmcblk0p47\n/dev/mmcblk0p5\n/dev/mmcblk0p85\n/dev/ram0\n/dev/mmcblk0p57\n/dev/loop12\n/dev/mmcblk0p67\n/dev/mmcblk0p37\n/dev/mmcblk0p77\n/dev/ram12\n/dev/mmcblk0p49\n/dev/mmcblk0p7\n/dev/mmcblk0p87\n/dev/ram2\n/dev/mmcblk0p59\n/dev/mmcblk0p11\n/dev/msm_alac\n/dev/v4l-subdev26\n/dev/tty60\n/dev/ipa_odl_ctl\n/dev/tty32\n/dev/video33\n/dev/ion\n/dev/ramdump_md_cdsp\n/dev/msm_audio_cal\n/dev/v4l-subdev8\n/dev/tty42\n/dev/subsys_modem\n/dev/rdbg_cdsp\n/dev/adsprpc-smd-secure\n/dev/ramdump_md_a612_zap\n/dev/msm_sps\n/dev/loop-control\n/dev/tty14\n/dev/msm_hweffects\n/dev/v4l-subdev18\n/dev/tty52\n/dev/tty6\n/dev/media1\n/dev/tty24\n/dev/msm_amrwb_in\n/dev/qseecom\n/dev/tty\n/dev/tty62\n/dev/ramdump_wcss_msa0\n/dev/v4l-subdev0\n/dev/qg_battery\n/dev/tty34\n/dev/fuse\n/dev/msm_g711mlaw_in\n/dev/net\n/dev/net/tun\n/dev/apr_apps2\n/dev/v4l-subdev10\n/dev/tty44\n/dev/subsys_venus\n/dev/uhid\n/dev/tty16\n/dev/msm_g711alaw\n/dev/v4l-subdev20\n/dev/tty54\n/dev/i2c-0\n/dev/tty8\n/dev/tty26\n/dev/iceufs\n/dev/msm_aac_in\n/dev/ptmx\n/dev/smcinvoke\n/dev/ramdump_memshare_FTM\n/dev/memory_bandwidth\n/dev/gpiochip1\n/dev/tty36\n/dev/msm_evrc_in\n/dev/smd7\n/dev/tty46\n/dev/subsys_a612_zap\n/dev/dri\n/dev/dri/renderD128\n/dev/dri/card0\n/dev/tty18\n/dev/vcs1\n/dev/msm_ape\n/dev/iio:device1\n/dev/tty56\n/dev/random\n/dev/msm-rng\n/dev/i2c-2\n/dev/btpower\n/dev/tty28\n/dev/ttyHS0\n/dev/hwbinder\n/dev/video1\n/dev/ramdump_adsp\n/dev/v4l-subdev3\n/dev/gpiochip3\n/dev/tty38\n/dev/ramdump_venus\n/dev/ipa_adpl\n/dev/vcsa\n/dev/smd11\n/dev/v4l-subdev13\n/dev/tty48\n/dev/tty1\n/dev/rfkill\n/dev/v4l-subdev23\n/dev/tty58\n/dev/i2c-4\n/dev/ramdump_modem\n/dev/kmsg\n/dev/cpu_dma_latency\n/dev/v4l-subdev5\n/dev/msm_hdcp\n/dev/rdbg_adsp\n/dev/ramdump_ipa_fws\n/dev/tty11\n/dev/tiload_node\n/dev/msm_qcelp\n/dev/v4l-subdev15\n/dev/ppp\n/dev/tty3\n/dev/tty21\n/dev/msm_amrnb\n/dev/v4l-subdev25\n/dev/tty31\n/dev/video32\n/dev/ecryptfs\n/dev/icesdcc\n/dev/ramdump_cdsp\n/dev/msm_rtac\n/dev/v4l-subdev7\n/dev/tty41\n/dev/subsys_adsp\n/dev/rdbg_wcnss\n/dev/adsprpc-smd\n/dev/ramdump_a612_zap\n/dev/mapper\n/dev/mapper/control\n/dev/tty13\n/dev/msm_mp3\n/dev/v4l-subdev17\n/dev/tty51\n/dev/null\n/dev/tty5\n/dev/media0\n/dev/tty23\n/dev/msm_aac\n/dev/tty61\n/dev/tty33\n/dev/vga_arbiter\n/dev/msm_qcelp_in\n/dev/at_mdm0\n/dev/v4l-subdev9\n/dev/tty43\n/dev/subsys_cdsp\n/dev/ramdump_microdump_modem\n/dev/tty15\n/dev/diag\n/dev/msm_g711mlaw\n/dev/v4l-subdev19\n/dev/spidev0.1\n/dev/tty53\n/dev/zero\n/dev/ipa\n/dev/tty7\n/dev/tty25\n/dev/msm_amrnb_in\n/dev/console\n/dev/tty63\n/dev/ramdump_memshare_GPS\n/dev/v4l-subdev1\n/dev/gpiochip0\n/dev/tty35\n/dev/snd\n/dev/snd/timer\n/dev/msm_g711alaw_in\n/dev/smdcntl8\n/dev/v4l-subdev11\n/dev/tty45\n/dev/input\n/dev/input/event0\n/dev/input/event2\n/dev/input/event1\n/dev/subsys_ipa_fws\n/dev/hwrng\n/dev/tty17\n/dev/kgsl-3d0\n/dev/vcs\n/dev/msm_evrc\n/dev/v4l-subdev21\n/dev/iio:device0\n/dev/tty55\n/dev/full\n/dev/avtimer\n/dev/i2c-1\n/dev/tty9\n/dev/tty27\n/dev/vndbinder\n/dev/video0\n/dev/dcc_sram\n/dev/ramdump_memshare_DIAG\n/dev/network_throughput\n/dev/v4l-subdev2\n/dev/gpiochip2\n/dev/tty37\n/dev/msm_wmapro\n/dev/smd8\n/dev/v4l-subdev12\n/dev/tty47\n/dev/qce\n/dev/tty0\n/dev/tty19\n/dev/msm_amrwbplus\n/dev/v4l-subdev22\n/dev/qg\n/dev/tty57\n/dev/urandom\n/dev/i2c-3\n/dev/tty29\n/dev/binder\n/dev/uinput\n/dev/rtc0\n/dev/video2\n/dev/ramdump_md_adsp\n/dev/network_latency\n/dev/v4l-subdev4\n/dev/tty39\n/dev/rdbg_modem\n/dev/ramdump_md_venus\n/dev/tty10\n/dev/vcsa1\n/dev/msm_wma\n/dev/v4l-subdev14\n/dev/uio0\n/dev/tty49\n/dev/tty2\n/dev/tty20\n/dev/msm_amrwb\n/dev/v4l-subdev24\n/dev/tty59\n/dev/tty30\n/dev/ashmem\n/dev/ramdump_md_modem\n/dev/tas2563\n/dev/v4l-subdev6\n/dev/tty40\n/dev/ramdump_md_ipa_fws\n/dev/tty12\n/dev/qvr_external_sensor_ioctl\n/dev/msm_multi_aac\n/dev/v4l-subdev16\n/dev/dvb\n/dev/dvb/adapter0\n/dev/dvb/adapter0/demux2\n/dev/dvb/adapter0/dvr1\n/dev/dvb/adapter0/dvr0\n/dev/dvb/adapter0/dvr3\n/dev/dvb/adapter0/dvr2\n/dev/dvb/adapter0/demux1\n/dev/dvb/adapter0/demux0\n/dev/dvb/adapter0/demux3\n/dev/tty50\n/dev/tty4\n/dev/tty22\n"
  },
  {
    "path": "results/sm6150/main/device.txt",
    "content": "Model: VIOLET;\nCompatible: qcom,sm6150-idp;qcom,sm6150;qcom,idp;\n"
  },
  {
    "path": "results/sm6150/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Linux version 4.14.212-azure-Alfred-Intro+ (panchajanya@archlinux) (gcc version 9.3.0 (GCC), LLD 11.0.0) #5 SMP PREEMPT Sat Jan 9 22:13:29 IST 2021\n[    0.000000] Boot CPU: AArch64 Processor [51df805e]\n[    0.000000] memblock_reserve: 0xa0f4d setup_arch+0xb4/0x514\n[    0.000000] Machine: VIOLET\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff800000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node sdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe000000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f5400000, size 140 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f3000000, size 36 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f0800000, size 40 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f0000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085700000, size 6 MiB\n[    0.000000] OF: reserved mem: initialized node hyp_region@85700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085e00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node xbl_aop_mem@85e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085fff000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node sec_apps_region@85fff000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086000000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node smem@86000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086200000, size 45 MiB\n[    0.000000] OF: reserved mem: initialized node removed_region@86200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ab00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node camera_region@8ab00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b000000, size 126 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@8b000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000092e00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region@93400000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093300000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_msa_region@93900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093500000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_regions@93b00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000095300000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region@95900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097100000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ips_fw_region@0x97700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097110000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_gsi_region@0x97710000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097115000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@0x97715000, compatible id removed-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x000000009e400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@0x9e400000, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000009f800000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_sec_regions@0x9f800000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 962216\n[    0.000000]   DMA zone: 6983 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 446888 pages, LIFO batch:31\n[    0.000000]   Normal zone: 8052 pages used for memmap\n[    0.000000]   Normal zone: 515328 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.1\n[    0.000000] random: fast init done\n[    0.000000] random: get_random_bytes called from start_kernel+0x9c/0x564 with crng_init=1\n[    0.000000] percpu: Embedded 20 pages/cpu s49816 r0 d32104 u81920\n[    0.000000] pcpu-alloc: s49816 r0 d32104 u81920 alloc=20*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] CPU features: detected: Hardware dirty bit management\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 947181\n[    0.000000] Kernel command line: rcupdate.rcu_expedited=1 rcu_nocbs=0-7 androidboot.hardware=qcom androidboot.console=ttyMSM0 service_locator.enable=1 swiotlb=1 earlycon=msm_geni_serial,0x880000 loop.max_part=16 cgroup.memory=nokmem,nosocket androidboot.vbmeta.avb_version=1.0 buildvariant=userdebug skip_override rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=0de6d3c0-bc3b-230a-21ab-0451e89c001b androidboot.bootdevice=7c4000.sdhci androidboot.serialno=REDACTED androidboot.cpuid=0x7cd1e8fd androidboot.hwc=India androidboot.hwlevel=MP androidboot.hwversion=1.19.0 androidboot.secureboot=1 androidboot.dp=0x0 androidboot.baseband=msm msm_drm.dsi_display0=dsi_nt36672a_shenchao_vid_display: androidboot.fpsensor=fpc skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=0 androidboot.dtb_idx=0\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 131072 bytes\n[    0.000000] log_buf_len: 1048576 bytes\n[    0.000000] early log buf free: 123908(94%)\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off\n[    0.000000] software IO TLB: mapped [mem 0xfffbf000-0xfffff000] (0MB)\n[    0.000000] Memory: 3419540K/3848864K available (22014K kernel code, 2964K rwdata, 7280K rodata, 2048K init, 6137K bss, 171276K reserved, 258048K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000017a60000\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000014] clocksource: Switched to clocksource arch_sys_counter\n[    0.001841] Console: colour dummy device 80x25\n[    0.001856] console [tty0] enabled\n[    0.001868] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001875] pid_max: default: 32768 minimum: 301\n[    0.001962] Security Framework initialized\n[    0.001968] SELinux:  Initializing.\n[    0.002050] SELinux:  Starting in permissive mode\n[    0.002086] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.002098] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.014231] ASID allocator initialised with 65536 entries\n[    0.016327] Hierarchical SRCU implementation.\n[    0.020911] MSM Memory Dump base table set up\n[    0.020921] MSM Memory Dump apps data table set up\n[    0.023267] smp: Bringing up secondary CPUs ...\n[    0.032774] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000\n[    0.032816] CPU1: Booted secondary processor [51df805e]\n[    0.042537] GICv3: CPU2: found redistributor 200 region 0:0x0000000017aa0000\n[    0.042576] CPU2: Booted secondary processor [51df805e]\n[    0.052353] GICv3: CPU3: found redistributor 300 region 0:0x0000000017ac0000\n[    0.052391] CPU3: Booted secondary processor [51df805e]\n[    0.062220] SSBD disabled by kernel configuration\n[    0.062224] CPU features: enabling workaround for Speculative Store Bypass Disable\n[    0.062254] GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000\n[    0.062288] CPU4: Booted secondary processor [51df805e]\n[    0.072242] GICv3: CPU5: found redistributor 500 region 0:0x0000000017b00000\n[    0.072275] CPU5: Booted secondary processor [51df805e]\n[    0.083040] CPU features: Unsupported CPU feature variation detected.\n[    0.083076] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000\n[    0.083128] CPU6: Booted secondary processor [51df804e]\n[    0.093782] GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000\n[    0.093838] CPU7: Booted secondary processor [51df804e]\n[    0.094127] smp: Brought up 1 node, 8 CPUs\n[    0.094132] SMP: Total of 8 processors activated.\n[    0.094135] CPU features: detected: GIC system register CPU interface\n[    0.094138] CPU features: detected: Privileged Access Never\n[    0.094139] CPU features: detected: User Access Override\n[    0.094141] CPU features: detected: 32-bit EL0 Support\n[    0.175075] CPU: All CPU(s) started at EL1\n[    0.175141] alternatives: patching kernel code\n[    0.176491] scm_enable_mem_protection: SCM call failed\n[    0.177148] devtmpfs: initialized\n[    0.221841] Registered cp15_barrier emulation handler\n[    0.221856] Registered setend emulation handler\n[    0.222157] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.222167] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.226431] pinctrl core: initialized pinctrl subsystem\n[    0.226959] NET: Registered protocol family 16\n[    0.228199] schedtune: configured to support 6 boost groups\n[    0.229774] cpuidle: using governor menu\n[    0.229794] cpuidle: using governor qcom\n[    0.229871] NET: Registered protocol family 42\n[    0.233327] vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.233335] vdso32: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.233346] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.234172] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.236914] exit: IPA_USB init success!\n[    0.806574] console [pstore-1] enabled\n[    0.806577] pstore: Registered ramoops as persistent store backend\n[    0.806580] ramoops: attached 0x800000@0xa1600000, ecc: 0/0\n[    0.809066] unable to find DT imem DLOAD mode node\n[    0.810051] unable to find DT imem EDLOAD mode node\n[    0.810750] sps:sps is ready.\n[    0.811504] msm_watchdog 17c10000.qcom,wdt: wdog absent resource not present\n[    0.812333] msm_watchdog 17c10000.qcom,wdt: MSM Watchdog Initialized\n[    0.812695] platform soc:mem_dump: assigned reserved memory node mem_dump_region\n[    0.829725] platform 86d00000.qseecom: assigned reserved memory node qseecom_region@0x9e400000\n[    0.830677] spmi spmi-0: PMIC arbiter version v5 (0x50000000)\n[    0.834721] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.835659] platform soc:qcom,smem: assigned reserved memory node smem@86000000\n[    0.835971] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.837888] platform 62400000.qcom,lpass: assigned reserved memory node pil_adsp_region@95900000\n[    0.838004] platform 4080000.qcom,mss: assigned reserved memory node modem_region@8b000000\n[    0.838124] platform 8300000.qcom,turing: assigned reserved memory node cdsp_regions@93b00000\n[    0.838196] platform aae0000.qcom,venus: assigned reserved memory node pil_video_region@93400000\n[    0.838773] platform soc:qcom,ipa_fws: assigned reserved memory node ips_fw_region@0x97700000\n[    0.841056] sm6150-pinctrl 3000000.pinctrl: invalid resource\n[    0.843538] pm6150_s1_level: supplied by pm6150_s3_level\n[    0.843656] pm6150_s1_level_ao: supplied by pm6150_s3_level_ao\n[    0.865063] OF: amba_device_add() failed (-16) for /soc/cti@6867000\n[    0.889648] gpu_cx_gdsc: supplied by pm6150_s1_level\n[    0.891087] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu0\n[    0.891269] clk: add_opp: Set OPP pair (1708800000 Hz, 852000 uv) on cpu0\n[    0.891305] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu1\n[    0.891467] clk: add_opp: Set OPP pair (1708800000 Hz, 852000 uv) on cpu1\n[    0.891500] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu2\n[    0.891668] clk: add_opp: Set OPP pair (1708800000 Hz, 852000 uv) on cpu2\n[    0.891700] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu3\n[    0.891866] clk: add_opp: Set OPP pair (1708800000 Hz, 852000 uv) on cpu3\n[    0.891908] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu4\n[    0.892068] clk: add_opp: Set OPP pair (1708800000 Hz, 852000 uv) on cpu4\n[    0.892103] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu5\n[    0.892262] clk: add_opp: Set OPP pair (1708800000 Hz, 852000 uv) on cpu5\n[    0.892307] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu6\n[    0.892505] clk: add_opp: Set OPP pair (2016000000 Hz, 928000 uv) on cpu6\n[    0.892553] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu7\n[    0.892756] clk: add_opp: Set OPP pair (2016000000 Hz, 928000 uv) on cpu7\n[    0.893068] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.893070] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on soc:qcom,cpu6-cpu-l3-lat\n[    0.893073] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.893075] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on 5000000.qcom,kgsl-3d0\n[    0.893574] clk: add_opp: Set OPP pair (1363200000 Hz, 828000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.893577] clk: add_opp: Set OPP pair (1363200000 Hz, 828000 uv) on soc:qcom,cpu6-cpu-l3-lat\n[    0.893579] clk: add_opp: Set OPP pair (1363200000 Hz, 828000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.893582] clk: add_opp: Set OPP pair (1363200000 Hz, 828000 uv) on 5000000.qcom,kgsl-3d0\n[    0.894156] sched-energy: Sched-energy-costs installed from DT\n[    0.894384] cpufreq: driver osm-cpufreq up and running\n[    0.894387] clk: clk_cpu_osm_driver_probe: OSM CPUFreq driver inited\n[    0.895840] cam_cc_bps_clk_src: set OPP pair(200000000 Hz: 65 uV) on ac6f000.qcom,bps\n[    0.895939] cam_cc_bps_clk_src: set OPP pair(600000000 Hz: 385 uV) on ac6f000.qcom,bps\n[    0.896091] cam_cc_cci_clk_src: set OPP pair(37500000 Hz: 65 uV) on ac4a000.qcom,cci\n[    0.896142] cam_cc_cci_clk_src: set OPP pair(100000000 Hz: 257 uV) on ac4a000.qcom,cci\n[    0.896320] cam_cc_csi0phytimer_clk_src: set OPP pair(100000000 Hz: 65 uV) on ac65000.qcom,csiphy\n[    0.896368] cam_cc_csi0phytimer_clk_src: set OPP pair(269333333 Hz: 193 uV) on ac65000.qcom,csiphy\n[    0.896494] cam_cc_csi1phytimer_clk_src: set OPP pair(100000000 Hz: 65 uV) on ac66000.qcom,csiphy\n[    0.896542] cam_cc_csi1phytimer_clk_src: set OPP pair(269333333 Hz: 193 uV) on ac66000.qcom,csiphy\n[    0.896671] cam_cc_csi2phytimer_clk_src: set OPP pair(100000000 Hz: 65 uV) on ac67000.qcom,csiphy\n[    0.896722] cam_cc_csi2phytimer_clk_src: set OPP pair(269333333 Hz: 193 uV) on ac67000.qcom,csiphy\n[    0.897043] cam_cc_icp_clk_src: set OPP pair(240000000 Hz: 65 uV) on ac00000.qcom,a5\n[    0.897146] cam_cc_icp_clk_src: set OPP pair(600000000 Hz: 385 uV) on ac00000.qcom,a5\n[    0.897403] cam_cc_ife_0_clk_src: set OPP pair(240000000 Hz: 65 uV) on acaf000.qcom,vfe0\n[    0.897484] cam_cc_ife_0_clk_src: set OPP pair(600000000 Hz: 385 uV) on acaf000.qcom,vfe0\n[    0.897681] cam_cc_ife_0_csid_clk_src: set OPP pair(100000000 Hz: 65 uV) on acb3000.qcom,csid0\n[    0.897780] cam_cc_ife_0_csid_clk_src: set OPP pair(540000000 Hz: 385 uV) on acb3000.qcom,csid0\n[    0.898042] cam_cc_ife_1_clk_src: set OPP pair(240000000 Hz: 65 uV) on acb6000.qcom,vfe1\n[    0.898128] cam_cc_ife_1_clk_src: set OPP pair(600000000 Hz: 385 uV) on acb6000.qcom,vfe1\n[    0.898353] cam_cc_ife_1_csid_clk_src: set OPP pair(100000000 Hz: 65 uV) on acba000.qcom,csid1\n[    0.898462] cam_cc_ife_1_csid_clk_src: set OPP pair(540000000 Hz: 385 uV) on acba000.qcom,csid1\n[    0.898702] cam_cc_ife_lite_clk_src: set OPP pair(240000000 Hz: 65 uV) on acc4000.qcom,vfe-lite\n[    0.898787] cam_cc_ife_lite_clk_src: set OPP pair(600000000 Hz: 385 uV) on acc4000.qcom,vfe-lite\n[    0.899046] cam_cc_ife_lite_csid_clk_src: set OPP pair(100000000 Hz: 65 uV) on acc8000.qcom,csid-lite\n[    0.899154] cam_cc_ife_lite_csid_clk_src: set OPP pair(540000000 Hz: 385 uV) on acc8000.qcom,csid-lite\n[    0.899559] cam_cc_ipe_0_clk_src: set OPP pair(240000000 Hz: 65 uV) on ac87000.qcom,ipe0\n[    0.899660] cam_cc_ipe_0_clk_src: set OPP pair(600000000 Hz: 385 uV) on ac87000.qcom,ipe0\n[    0.901128] cam_cc-sm6150 ad00000.qcom,camcc: Registered Camera CC clocks\n[    0.902207] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.903582] clk-rpmh soc:qcom,rpmhclk: Registered RPMh clocks\n[    0.905094] disp_cc-sm6150 af00000.qcom,dispcc: Registered Display CC clocks\n[    0.926166] gcc-sm6150 100000.qcom,gcc: Registered GCC clocks\n[    0.928927] gpu_cc_gx_gfx3d_clk_src: set OPP pair(290000000 Hz: 65 uV) on 5000000.qcom,kgsl-3d0\n[    0.929092] gpu_cc_gx_gfx3d_clk_src: set OPP pair(845000000 Hz: 385 uV) on 5000000.qcom,kgsl-3d0\n[    0.929113] gpu_cc_gx_gfx3d_clk_src: set OPP pair(895000000 Hz: 417 uV) on 5000000.qcom,kgsl-3d0\n[    0.929306] gpu_cc-sm6150 5090000.qcom,gpupcc: Registered GPU CC clocks\n[    0.931233] video_cc-sm6150 ab00000.qcom,videocc: Registered Video CC clocks\n[    0.934733] KPI: Bootloader start count = 57517\n[    0.934736] KPI: Bootloader end count = 95483\n[    0.934737] KPI: Bootloader load kernel count = 2827625064\n[    0.934741] KPI: Kernel MPM timestamp = 131226\n[    0.934742] KPI: Kernel MPM Clock frequency = 32768\n[    0.934758] socinfo_print: v0.15, id=355, ver=1.1, raw_id=149, raw_ver=1, hw_plat=34, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65576, pmic_die_revision=131072 foundry_id=3 serial_number=2094131453 num_pmics=2 chip_family=0x5c raw_device_family=0x6 raw_device_number=0x7 nproduct_id=0x40e num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xc ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.934837] Minidump: Enabled with max number of regions 200\n[    0.935800] Unable to find DT property: qcom,msm-imem-minidump-debug\n[    0.935917] msm_bus_fabric_rpmh_init_driver\n[    0.936389] msm_bus: Probe started\n[    0.936783] msm_bus_device 1700000.ad-hoc-bus: Bus type is missing\n[    0.936835] msm_bus_device 1700000.ad-hoc-bus: Bus type is missing\n[    0.936849] msm_bus_device 1700000.ad-hoc-bus: Bus type is missing\n[    0.936897] msm_bus_device 1700000.ad-hoc-bus: Bus type is missing\n[    0.938583] msm_bus: DT Parsing complete\n[    0.940848] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.940975] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.941028] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.941147] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.951440] reg-fixed-voltage 0.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_sensor_dvdd_en, deferring probe\n[    0.951458] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_sensor_0_vana, deferring probe\n[    0.951472] reg-fixed-voltage 2.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_sensor_1_2_vana, deferring probe\n[    0.952569] arm-smmu 50a0000.kgsl-smmu: \tnon-coherent table walk\n[    0.952573] arm-smmu 50a0000.kgsl-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.952577] arm-smmu 50a0000.kgsl-smmu: \tstream matching with 4 register groups\n[    0.954228] register_client_adhoc:find path.src 161 dest 627\n[    0.954390] register_client_adhoc:Client handle 1 apps_smmu\n[    0.954529] arm-smmu 15000000.apps-smmu: \tnon-coherent table walk\n[    0.954532] arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.954536] arm-smmu 15000000.apps-smmu: \tstream matching with 68 register groups\n[    0.955282] register_client_adhoc:find path.src 161 dest 627\n[    0.955406] register_client_adhoc:Client handle 2 apps_smmu\n[    0.955616] register_client_adhoc:find path.src 161 dest 627\n[    0.955738] register_client_adhoc:Client handle 3 apps_smmu\n[    0.955930] register_client_adhoc:find path.src 22 dest 773\n[    0.955995] register_client_adhoc:Client handle 4 mnoc_hf_0_tbu\n[    0.956191] register_client_adhoc:find path.src 137 dest 772\n[    0.956253] register_client_adhoc:Client handle 5 mnoc_sf_0_tbu\n[    0.956422] register_client_adhoc:find path.src 161 dest 627\n[    0.956549] register_client_adhoc:Client handle 6 apps_smmu\n[    0.956745] register_client_adhoc:find path.src 161 dest 627\n[    0.956865] register_client_adhoc:Client handle 7 apps_smmu\n[    0.957368] vgaarb: loaded\n[    0.957530] qcom,qpnp-misc c440000.qcom,spmi:qcom,pm6150@0:qcom,misc@900: probe successful\n[    0.958150] SCSI subsystem initialized\n[    0.958217] usbcore: registered new interface driver usbfs\n[    0.958230] usbcore: registered new interface driver hub\n[    0.958371] usbcore: registered new device driver usb\n[    0.958691] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.958991] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.959012] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.959159] input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800/input/input0\n[    0.960011] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150l@4:qcom,power-on@800: PMIC@SID4 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'cold' boot\n[    0.960087] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150l@4:qcom,power-on@800: PMIC@SID4: Power-off reason: Triggered from SOFT (Software)\n[    0.960397] media: Linux media interface: v0.10\n[    0.960412] Linux video capture interface: v2.00\n[    0.960438] pps_core: LinuxPPS API ver. 1 registered\n[    0.960441] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>\n[    0.960446] PTP clock support registered\n[    0.965380] thermal_sys: Thermal: Can not parse thermal message node, return -22\n[    0.969739] EDAC MC: Ver: 3.0.0\n[    0.972408] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@0x9e400000\n[    0.972514] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.972594] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.972671] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.972882] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node sdsp_region\n[    0.973081] ION heap system created\n[    0.973191] ION heap qsecom created at 0x000000009e400000 with size 1400000\n[    0.973194] ION heap qsecom_ta created at 0x00000000fe000000 with size 1000000\n[    0.973197] ION heap spss created at 0x00000000ff000000 with size 800000\n[    0.973200] ION heap secure_display created at 0x00000000f5400000 with size 8c00000\n[    0.997906] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x9f800000, size 0x1e00000\n[    0.997910] ION heap secure_carveout created\n[    0.997914] ION heap secure_heap created\n[    0.997928] ION heap adsp created at 0x00000000ff800000 with size 400000\n[    0.999601] iommu: Adding device 8c0000.qcom,qupv3_0_geni_se:qcom,iommu_qupv3_0_geni_se_cb to group 0\n[    0.999948] iommu: Adding device ac0000.qcom,qupv3_1_geni_se:qcom,iommu_qupv3_1_geni_se_cb to group 1\n[    1.000498] PMIC@SID0: PM6150 v2.0 options: 0, 0, 0, 0\n[    1.000607] PMIC@SID4: PM8150L v3.0 options: 0, 0, 0, 0\n[    1.001711] register_client_adhoc:find path.src 90 dest 512\n[    1.002089] register_client_adhoc:find path.src 90 dest 585\n[    1.002207] register_client_adhoc:find path.src 1 dest 676\n[    1.002403] register_client_adhoc:find path.src 143 dest 777\n[    1.002461] register_client_adhoc:Client handle 8 ipa\n[    1.007859] ipa ipa3_smp2p_probe:8658 fail to get smp2p clk resp bit -517\n[    1.008333] iommu: Adding device soc:ipa_smmu_ap to group 2\n[    1.008599] iommu: Adding device soc:ipa_smmu_wlan to group 3\n[    1.008820] iommu: Adding device soc:ipa_smmu_uc to group 4\n[    1.010328] ipa ipa3_smp2p_probe:8658 fail to get smp2p clk resp bit -517\n[    1.013304] Advanced Linux Sound Architecture Driver Initialized.\n[    1.013968] Bluetooth: Core ver 2.22\n[    1.014005] NET: Registered protocol family 31\n[    1.014009] Bluetooth: HCI device and connection manager initialized\n[    1.014021] Bluetooth: HCI socket layer initialized\n[    1.014029] Bluetooth: L2CAP socket layer initialized\n[    1.014063] Bluetooth: SCO socket layer initialized\n[    1.015650] NetLabel: Initializing\n[    1.015654] NetLabel:  domain hash size = 128\n[    1.015657] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\n[    1.015717] NetLabel:  unlabeled traffic allowed by default\n[    1.015900] pcie:pcie_init.\n[    1.022119] register_client_adhoc:find path.src 22 dest 512\n[    1.022518] register_client_adhoc:Client handle 9 bus-proxy-client\n[    1.024333] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=5500mV ncp_voltage=5500mV bst_voltage=5650mV\n[    1.024440] sched-energy energy-costs: cpu=0 eff=1024 [freq=300000 cap=90 power_d0=24] -> [freq=1804800 cap=511 power_d0=178]\n[    1.024446] sched-energy energy-costs: cpu=1 eff=1024 [freq=300000 cap=90 power_d0=24] -> [freq=1804800 cap=511 power_d0=178]\n[    1.024452] sched-energy energy-costs: cpu=2 eff=1024 [freq=300000 cap=90 power_d0=24] -> [freq=1804800 cap=511 power_d0=178]\n[    1.024457] sched-energy energy-costs: cpu=3 eff=1024 [freq=300000 cap=90 power_d0=24] -> [freq=1804800 cap=511 power_d0=178]\n[    1.024462] sched-energy energy-costs: cpu=4 eff=1024 [freq=300000 cap=90 power_d0=24] -> [freq=1804800 cap=511 power_d0=178]\n[    1.024467] sched-energy energy-costs: cpu=5 eff=1024 [freq=300000 cap=90 power_d0=24] -> [freq=1804800 cap=511 power_d0=178]\n[    1.024473] sched-energy energy-costs: cpu=6 eff=1740 [freq=300000 cap=153 power_d0=180] -> [freq=2208000 cap=1024 power_d0=2713]\n[    1.024479] sched-energy energy-costs: cpu=7 eff=1740 [freq=300000 cap=153 power_d0=180] -> [freq=2208000 cap=1024 power_d0=2713]\n[    1.024482] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    1.024750] gpu_gx_gdsc: supplied by pm6150_s1_level\n[    1.024871] reg-fixed-voltage 0.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_sensor_dvdd_en, deferring probe\n[    1.024928] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_sensor_0_vana, deferring probe\n[    1.024970] reg-fixed-voltage 2.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_sensor_1_2_vana, deferring probe\n[    1.025043] ipa ipa3_smp2p_probe:8658 fail to get smp2p clk resp bit -517\n[    1.025692] clocksource: Switched to clocksource arch_sys_counter\n[    1.068982] VFS: Disk quotas dquot_6.6.0\n[    1.069019] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    1.071690] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    1.071695] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    1.071855] mdss_pll ae94400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    1.071861] mdss_pll ae94400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    1.071866] mdss_pll ae94400.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    1.073695] dsi_pll_clock_register_14nm: Registered DSI PLL ndx=0 clocks successfully\n[    1.073933] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    1.079344] NET: Registered protocol family 2\n[    1.079726] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    1.079852] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    1.080273] TCP: Hash tables configured (established 32768 bind 32768)\n[    1.080359] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    1.080396] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    1.080548] NET: Registered protocol family 1\n[    1.080565] PCI: CLS 0 bytes, default 128\n[    1.080705] reg-fixed-voltage 0.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_sensor_dvdd_en, deferring probe\n[    1.080793] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_sensor_0_vana, deferring probe\n[    1.080842] reg-fixed-voltage 2.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_sensor_1_2_vana, deferring probe\n[    1.080938] ipa ipa3_smp2p_probe:8658 fail to get smp2p clk resp bit -517\n[    1.081230] Trying to unpack rootfs image as initramfs...\n[    1.402738] Freeing initrd memory: 11516K\n[    1.404207] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    1.409772] audit: initializing netlink subsys (disabled)\n[    1.410141] Initialise system trusted keyrings\n[    1.410265] audit: type=2000 audit(1.399:1): state=initialized audit_enabled=0 res=1\n[    1.410313] workingset: timestamp_bits=45 max_order=20 bucket_order=0\n[    1.412943] exFAT: file-system version 5.8-2arter97\n[    1.413343] Registering sdcardfs 0.1\n[    1.413487] fuse init (API version 7.26)\n[    1.413994] SELinux:  Registering netfilter hooks\n[    1.419156] Key type asymmetric registered\n[    1.419160] Asymmetric key parser 'x509' registered\n[    1.419194] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 241)\n[    1.419198] io scheduler noop registered\n[    1.419200] io scheduler deadline registered\n[    1.419230] io scheduler cfq registered (default)\n[    1.419232] io scheduler mq-deadline registered\n[    1.419234] io scheduler kyber registered\n[    1.424843] qpnp_lpg_parse_dt: lut pattern switch disable\n[    1.430360] iommu: Adding device 800000.qcom,gpi-dma to group 5\n[    1.431561] iommu: Adding device a00000.qcom,gpi-dma to group 6\n[    1.434043] llcc_perfmon: 2 memory controllers connected with LLCC\n[    1.435761] iommu: Adding device 18800000.qcom,icnss to group 7\n[    1.435801] icnss: Recursive recovery allowed for WLAN\n[    1.436682] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    1.436879] icnss: Platform driver probed successfully\n[    1.437812] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    1.438257] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    1.438519] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    1.439217] register_client_adhoc:find path.src 125 dest 512\n[    1.439608] register_client_adhoc:Client handle 10 scm_pas\n[    1.439616] minidump-id not found for adsp\n[    1.441086] minidump-id not found for cdsp\n[    1.441754] register_client_adhoc:find path.src 63 dest 512\n[    1.441979] register_client_adhoc:Client handle 11 pil-venus\n[    1.441986] minidump-id not found for venus\n[    1.441995] subsys-pil-tz aae0000.qcom,venus: for venus segments only will be dumped.\n[    1.442067] subsys-pil-tz aae0000.qcom,venus: for md_venus segments only will be dumped.\n[    1.442285] minidump-id not found for ipa_fws\n[    1.442297] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    1.442364] subsys-pil-tz soc:qcom,ipa_fws: for md_ipa_fws segments only will be dumped.\n[    1.442676] minidump-id not found for a612_zap\n[    1.442683] subsys-pil-tz soc:qcom,kgsl-hyp: for a612_zap segments only will be dumped.\n[    1.442770] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a612_zap segments only will be dumped.\n[    1.447384] smp2p_sleepstate soc:qcom,smp2p_sleepstate: got smp2p-sleepstate-in irq 378\n[    1.450992] msm_geni_serial a8c000.qcom,qup_uart: Wakeup byte 0xfd\n[    1.451103] msm_geni_serial a8c000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    1.451608] a8c000.qcom,qup_uart: ttyHS0 at MMIO 0xa8c000 (irq = 247, base_baud = 0) is a MSM\n[    1.451950] msm_geni_serial_init: Driver initialized\n[    1.452205] register_client_adhoc:find path.src 1 dest 618\n[    1.452453] register_client_adhoc:Client handle 12 msm-rng-noc\n[    1.453477] random: crng init done\n[    1.456501] diag: Pcie registration initiated for id: 0\n[    1.457700] diag: diag_pcie_register: failed registering pcie channels\n[    1.457703] diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    1.457705] diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    1.513333] iommu: Adding device soc:kgsl_iommu_test_device to group 8\n[    1.513578] iommu: Adding device soc:kgsl_iommu_coherent_test_device to group 9\n[    1.513910] iommu: Adding device soc:apps_iommu_test_device to group 10\n[    1.514080] iommu: Adding device soc:apps_iommu_coherent_test_device to group 11\n[    1.516253] register_client_adhoc:find path.src 20003 dest 20515\n[    1.516413] register_client_adhoc:Client handle 13 disp_rsc_mnoc\n[    1.516441] register_client_adhoc:find path.src 20001 dest 20513\n[    1.516521] register_client_adhoc:Client handle 14 disp_rsc_llcc\n[    1.516549] register_client_adhoc:find path.src 20000 dest 20512\n[    1.516620] register_client_adhoc:Client handle 15 disp_rsc_ebi\n[    1.516892] [sde_rsc_hw:rsc_hw_init:714]: sde rsc init successfully done\n[    1.516929] [sde_rsc:sde_rsc_probe:1887]: sde rsc index:0 probed successfully\n[    1.517772] dsi_phy ae94400.qcom,mdss_dsi_phy0: ae94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    1.517854] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-0\n[    1.518613] drm_dsi_ctrl ae94000.qcom,mdss_dsi_ctrl0: ae94000.qcom,mdss_dsi_ctrl0 supply refgen not found, using dummy regulator\n[    1.518672] AXI: get_pdata(): Error: Client name not found\n[    1.518675] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    1.518677] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-0\n[    1.519316] msm-dsi-display:[dsi_display_parse_te_data] invalid vsync source selection\n[    1.519322] OF: graph: no port node found in /soc/qcom,dsi-display\n[    1.519361] msm-dsi-panel:[dsi_panel_parse_triggers:1138] [nt36672a video mode dsi shenchao panel] fallback to default te-pin-select\n[    1.519384] msm-dsi-panel:[dsi_panel_parse_panel_mode:1655] dsi_panel_parse_panel_mode: panel operating mode switch feature disabled\n[    1.519407] msm-dsi-panel:[dsi_panel_parse_qsync_caps:1338] [nt36672a video mode dsi shenchao panel] qsync min fps not defined rc:-22\n[    1.519426] msm-dsi-panel:[dsi_panel_parse_reset_sequence:2030] RESET SEQ LENGTH = 24\n[    1.519465] msm-dsi-panel:[dsi_panel_parse_misc_features:2079] dsi_panel_parse_misc_features: ulps feature disabled\n[    1.519470] msm-dsi-panel:[dsi_panel_parse_misc_features:2085] dsi_panel_parse_misc_features: ulps during suspend feature disabled\n[    1.521062] iommu: Adding device ae00000.qcom,mdss_mdp to group 12\n[    1.527798] iommu: Adding device 50a0000.qcom,kgsl-iommu:gfx3d_user to group 13\n[    1.528123] iommu: Adding device 50a0000.qcom,kgsl-iommu:gfx3d_secure to group 14\n[    1.559960] brd: module loaded\n[    1.567518] loop: module loaded\n[    1.567737] zram: Added device: zram0\n[    1.569146] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1400000\n[    1.569158] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    1.569163] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    1.569167] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    1.569174] AXI: get_pdata(): Error: Client name not found\n[    1.569177] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    1.569227] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    1.569536] QSEECOM: qseecom_probe: Unable to register bus client\n[    1.570872] iommu: Adding device 1de0000.qcedev to group 15\n[    1.571056] register_client_adhoc:find path.src 125 dest 512\n[    1.571425] register_client_adhoc:Client handle 16 qcedev-noc\n[    1.571609] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.572510] qce 1de0000.qcedev: QTI Crypto 5.4.1 device found @0x1de0000\n[    1.572672] sps:BAM 0x0000000001dc4000 is registered.\n[    1.572813] sps:BAM 0x0000000001dc4000 (va:0x00000000679e5bc1) enabled: ver:0x27, number of pipes:16\n[    1.572964] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 37\n[    1.577140] iommu: Adding device 1de0000.qcrypto to group 16\n[    1.577221] register_client_adhoc:find path.src 125 dest 512\n[    1.577570] register_client_adhoc:Client handle 17 qcrypto-noc\n[    1.577723] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.578318] qcrypto 1de0000.qcrypto: QTI Crypto 5.4.1 device found @0x1de0000\n[    1.578562] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 37\n[    1.580715] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    1.580855] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    1.580959] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    1.581065] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    1.581166] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    1.581272] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    1.581374] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    1.581479] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    1.581586] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    1.581689] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    1.581791] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    1.581893] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    1.581994] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    1.582101] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    1.582204] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    1.582306] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    1.582412] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    1.582516] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    1.582624] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    1.582732] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    1.583593] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    1.584702] SCSI Media Changer driver v0.25 \n[    1.585907] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    1.588040] libphy: Fixed MDIO Bus: probed\n[    1.588160] tun: Universal TUN/TAP device driver, 1.6\n[    1.588279] sky2: driver version 1.30\n[    1.588771] PPP generic driver version 2.4.2\n[    1.588856] PPP BSD Compression module registered\n[    1.588858] PPP Deflate Compression module registered\n[    1.588885] PPP MPPE Compression module registered\n[    1.588888] NET: Registered protocol family 24\n[    1.588899] PPTP driver version 0.8.5\n[    1.589191] CLD80211: Initializing\n[    1.589254] usbcore: registered new interface driver asix\n[    1.589265] usbcore: registered new interface driver ax88179_178a\n[    1.589277] usbcore: registered new interface driver cdc_ether\n[    1.589290] usbcore: registered new interface driver net1080\n[    1.589301] usbcore: registered new interface driver cdc_subset\n[    1.589311] usbcore: registered new interface driver zaurus\n[    1.589462] usbcore: registered new interface driver cdc_ncm\n[    1.593249] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.595075] msm-qusb-phy 88e2000.qusb: 88e2000.qusb supply USB3_GDSC not found, using dummy regulator\n[    1.595450] msm-qusb-phy 88e3000.qusb: 88e3000.qusb supply USB3_GDSC not found, using dummy regulator\n[    1.597153] iommu: Adding device a600000.ssusb to group 17\n[    1.599415] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.603069] register_client_adhoc:find path.src 61 dest 512\n[    1.603462] register_client_adhoc:find path.src 61 dest 676\n[    1.603640] register_client_adhoc:find path.src 1 dest 583\n[    1.603834] register_client_adhoc:Client handle 18 usb0\n[    1.607449] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    1.607452] ehci-pci: EHCI PCI platform driver\n[    1.607465] ehci-platform: EHCI generic platform driver\n[    1.608134] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    1.608148] ohci-pci: OHCI PCI platform driver\n[    1.608167] ohci-platform: OHCI generic platform driver\n[    1.609676] usbcore: registered new interface driver usb-storage\n[    1.609689] usbcore: registered new interface driver usb_ehset_test\n[    1.609701] usbcore: registered new interface driver lvs\n[    1.613235] qpnp-pdphy c440000.qcom,spmi:qcom,pm6150@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.614011] nvt_driver_init: finished\n[    1.614013] ctp_selftest_init\n[    1.615122] create_proc_entry g_ctp_selftest_proc success\n[    1.615126] [FTS][Error]LCM is right! [Vendor]shenchao [IC] nt36672a\n\n[    1.615884] fpc1020 soc:fpc1020: found pin control fpc1020_reset_reset\n[    1.615887] fpc1020 soc:fpc1020: found pin control fpc1020_reset_active\n[    1.615891] fpc1020 soc:fpc1020: found pin control fpc1020_irq_active\n[    1.616181] genirq: irq_chip msmgpio-dc did not update eff. affinity mask of irq 188\n[    1.626722] fpc1020 soc:fpc1020: IRQ after reset 93=1\n[    1.626730] fpc1020 Create proc entry success!\n[    1.626733] fpc1020 soc:fpc1020: fpc1020_probe: ok\n[    1.626807] fpc1020_init OK\n[    1.626810] gf_spi:  hml gf_init failed as fpsensor = 1(2=gdx)\n[    1.627255] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm6150@0:qcom,pm6150_rtc: rtc core: registered qpnp_rtc as rtc0\n[    1.627773] i2c /dev entries driver\n[    1.629002] i2c_geni 884000.i2c: Bus frequency is set to 400000Hz.\n[    1.802710] input: NVTCapacitiveTouchScreen as /devices/virtual/input/input1\n[    1.805290] [LCT_TP_GESTURE] init_lct_tp_gesture (line 77): Initialization tp_gesture node!\n[    1.805298] [LCT_TP_GESTURE] lct_creat_proc_tp_entry (line 107): /proc/tp_gesture is okay!\n[    1.805302] [LCT_TP_GRIP_AREA] init_lct_tp_grip_area (line 79): Initialization /proc/tp_grip_area node!\n[    1.805306] [LCT_TP_GRIP_AREA] init_lct_tp_grip_area (line 95): /proc/tp_grip_area is okay!\n[    2.080640] [LCT_TP_INFO] init_lct_tp_info (line 83): Initialization tp_info & tp_lockdown_info node!\n[    2.080652] [LCT_TP_INFO] lct_creat_proc_tp_entry (line 134): /proc/tp_info & /proc/tp_lockdown_info is okay!\n[    2.080667] [LCT_TP_INFO] lct_creat_sys_tp_entry (line 204): /sys/android_tp/tp_info & tp_lockdown_info is okay!\n[    2.080679] lct_ctp_selftest_int\n[    2.081173] i2c_geni 88c000.i2c: Bus frequency is set to 400000Hz.\n[    2.082256] i2c_geni 88c000.i2c: i2c error :-107\n[    2.082360] i2c_geni 88c000.i2c: i2c error :-107\n[    2.082459] i2c_geni 88c000.i2c: i2c error :-107\n[    2.082558] i2c_geni 88c000.i2c: i2c error :-107\n[    2.082562] I2C PMIC: i2c_pmic_read: i2c_pmic_read failed for 3 retries, rc = -107\n[    2.082565] I2C PMIC: i2c_pmic_determine_initial_status: Couldn't read irq data rc=-107\n[    2.082567] I2C PMIC: i2c_pmic_probe: Couldn't determine initial status rc=-107\n[    2.082635] i2c_pmic: probe of 2-0010 failed with error -107\n[    2.082843] i2c_geni 88c000.i2c: i2c error :-107\n[    2.082944] i2c_geni 88c000.i2c: i2c error :-107\n[    2.083043] i2c_geni 88c000.i2c: i2c error :-107\n[    2.083147] i2c_geni 88c000.i2c: i2c error :-107\n[    2.083151] I2C PMIC: i2c_pmic_read: i2c_pmic_read failed for 3 retries, rc = -107\n[    2.083154] I2C PMIC: i2c_pmic_determine_initial_status: Couldn't read irq data rc=-107\n[    2.083156] I2C PMIC: i2c_pmic_probe: Couldn't determine initial status rc=-107\n[    2.083209] i2c_pmic: probe of 2-000c failed with error -107\n[    2.083556] i2c_geni a80000.i2c: Bus frequency is set to 400000Hz.\n[    2.084264] i2c_geni a84000.i2c: Bus frequency is set to 1000000Hz.\n[    2.085121] IR NEC protocol handler initialized\n[    2.085124] IR RC5(x/sz) protocol handler initialized\n[    2.085126] IR RC6 protocol handler initialized\n[    2.085127] IR JVC protocol handler initialized\n[    2.085129] IR Sony protocol handler initialized\n[    2.085131] IR SANYO protocol handler initialized\n[    2.085132] IR Sharp protocol handler initialized\n[    2.085133] IR MCE Keyboard/mouse protocol handler initialized\n[    2.085134] IR XMP protocol handler initialized\n[    2.091795] iommu: Adding device aa00000.qcom,vidc:non_secure_cb to group 18\n[    2.092407] iommu: Adding device aa00000.qcom,vidc:secure_bitstream_cb to group 19\n[    2.093866] iommu: Adding device aa00000.qcom,vidc:secure_pixel_cb to group 20\n[    2.094990] iommu: Adding device aa00000.qcom,vidc:secure_non_pixel_cb to group 21\n[    2.099070] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 22\n[    2.099296] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 23\n[    2.099576] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 24\n[    2.099635] platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node camera_region@8ab00000\n[    2.099948] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 25\n[    2.100305] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 26\n[    2.102806] register_client_adhoc:find path.src 1 dest 589\n[    2.103111] register_client_adhoc:Client handle 18 cam_ahb\n[    2.103297] register_client_adhoc:find path.src 136 dest 512\n[    2.103503] register_client_adhoc:Client handle 19 cam_hf_1_mnoc\n[    2.103667] register_client_adhoc:find path.src 146 dest 778\n[    2.103713] register_client_adhoc:Client handle 20 cam_hf_1_camnoc\n[    2.103829] register_client_adhoc:find path.src 145 dest 512\n[    2.104027] register_client_adhoc:Client handle 21 cam_hf_2_mnoc\n[    2.104165] register_client_adhoc:find path.src 147 dest 778\n[    2.104208] register_client_adhoc:Client handle 22 cam_hf_2_camnoc\n[    2.104318] register_client_adhoc:find path.src 137 dest 512\n[    2.104515] register_client_adhoc:Client handle 23 cam_sf_1_mnoc\n[    2.104647] register_client_adhoc:find path.src 148 dest 778\n[    2.104690] register_client_adhoc:Client handle 24 cam_sf_1_camnoc\n[    2.110822] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1017 AXI client=[13][cpas-cdm][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    2.116054] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1019 Invalid mux type: 0\n[    2.116057] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1019 Invalid mux type: 0\n[    2.116088] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1080 Inval_prms soc_info:00000000988ce779 hw_intf:00000000ef0ccb50 hw_info0000000065f32fd0\n[    2.116091] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1083 controller: 00000000e1c3310f\n[    2.116094] CAM_ERR: CAM-ISP: cam_vfe_core_init: 875 Error! RD cam_vfe_bus_init failed\n[    2.116238] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1017 AXI client=[7][ife][0] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    2.117954] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1019 Invalid mux type: 0\n[    2.117957] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1019 Invalid mux type: 0\n[    2.117987] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1080 Inval_prms soc_info:0000000052839c95 hw_intf:00000000a098fe7a hw_info0000000065f32fd0\n[    2.117989] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1083 controller: 00000000e0e61791\n[    2.117992] CAM_ERR: CAM-ISP: cam_vfe_core_init: 875 Error! RD cam_vfe_bus_init failed\n[    2.118119] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1017 AXI client=[8][ife][1] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    2.119563] CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 524 No clk named ife_dsp_clk found. Dev vfe2\n[    2.119567] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 109 Option clk get failed with rc -14\n[    2.119772] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1019 Invalid mux type: 0\n[    2.119775] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1019 Invalid mux type: 0\n[    2.119915] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1017 AXI client=[9][ife][2] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    2.122504] CAM_INFO: CAM-ISP: cam_isp_dev_probe: 171 Camera ISP probe complete\n[    2.124511] CAM_INFO: CAM: cam_res_mgr_probe: 689 Disable shared gpio support.\n[    2.129265] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 428 Device Type :0\n[    2.131305] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    2.131343] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    2.131390] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    2.131428] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    2.144129] CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 170 Camera JPEG probe complete\n[    2.146274] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1017 AXI client=[18][lrmecpas][0] comp[7200000], comp_ab[7200000], uncomp[7200000]\n[    2.146934] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1017 AXI client=[12][cam-cdm-intf][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    2.148527] dvbdev: DVB: registering new adapter (Qualcomm Technologies, Inc. DVB adapter)\n[    2.155579] usbcore: registered new interface driver uvcvideo\n[    2.155583] USB Video Class driver (1.1.1)\n[    2.155584] gspca_main: v2.14.0 registered\n[    2.157512] Couldn't parse device tree rc=-517\n[    2.174492] device-mapper: uevent: version 1.0.3\n[    2.174798] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com\n[    2.176265] bt_dt_parse_vreg_info: qca,bt-vdd-vl: is not provided in device tree\n[    2.176269] bt_dt_parse_vreg_info: qca,bt-vdd-vm: is not provided in device tree\n[    2.176272] bt_dt_parse_vreg_info: qca,bt-vdd-5c: is not provided in device tree\n[    2.176275] bt_dt_parse_vreg_info: qca,bt-vdd-5a: is not provided in device tree\n[    2.176277] bt_dt_parse_vreg_info: qca,bt-vdd-vh: is not provided in device tree\n[    2.176280] bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    2.176282] bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    2.176295] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    2.176298] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in device tree\n[    2.176301] bt_power_populate_dt_pinfo: bt-3P3-gpio not provided in devicetree\n[    2.176303] bt_power_populate_dt_pinfo: bt-1P3-gpio not provided in devicetree\n[    2.176305] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    2.176307] bt_power_populate_dt_pinfo: clock not provided in device tree\n[    2.177310] EDAC DEVICE0: Giving out device to module soc:kryo-erp controller cache: DEV soc:kryo-erp (INTERRUPT)\n[    2.178852] sdhci: Secure Digital Host Controller Interface driver\n[    2.178854] sdhci: Copyright(c) Pierre Ossman\n[    2.178856] sdhci-pltfm: SDHCI platform and OF driver helper\n[    2.180096] qpnp_vibrator_ldo_probe: Vibrator LDO successfully registered: uV = 2800000, overdrive = disabled\n[    2.181695] usbcore: registered new interface driver usbhid\n[    2.181697] usbhid: USB HID core driver\n[    2.181976] ashmem: initialized\n[    2.182018] ipa_ut ipa_ut_module_init:1045 Loading IPA test module...\n[    2.184229] register_client_adhoc:find path.src 78 dest 512\n[    2.184638] register_client_adhoc:find path.src 1 dest 606\n[    2.184844] register_client_adhoc:Client handle 25 sdhc1\n[    2.186386] mmc0: SDHCI controller on 7c4000.sdhci [7c4000.sdhci] using 64-bit ADMA in CMDQ mode\n[    2.251389] mmc0: Out-of-interrupt timeout is 100[ms]\n[    2.251394] mmc0: eMMC FW version: 0x02\n[    2.251396] mmc0: CMDQ supported: depth: 16\n[    2.254560] cmdq_host_alloc_tdl: desc_size: 1024 data_sz: 63488 slot-sz: 32\n[    2.254883] mmc0: CMDQ enabled on card\n[    2.254894] mmc0: new HS400 Enhanced strobe MMC card at address 0001\n[    2.256439] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0x3f) latency=-1\n[    2.256442] sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xc0) latency=-1\n[    2.256527] mmcblk0: mmc0:0001 DH6DAB 58.2 GiB \n[    2.256702] mmcblk0rpmb: mmc0:0001 DH6DAB partition 3 16.0 MiB\n[    2.258843]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42 p43 p44 p45 p46 p47 p48 p49 p50 p51 p52 p53 p54 p55 p56 p57 p58 p59 p60 p61 p62 p63 p64 p65 p66 p67 p68 p69 p70 p71 p72 p73 p74 p75 p76 p77 p78 p79 p80 p81 p82 p83 p84 p85 p86 p87\n[    2.268432] register_client_adhoc:find path.src 81 dest 512\n[    2.268841] register_client_adhoc:find path.src 1 dest 608\n[    2.269050] register_client_adhoc:Client handle 26 sdhc2\n[    2.280875] mmc1: SDHCI controller on 8804000.sdhci [8804000.sdhci] using 64-bit ADMA in legacy mode\n[    2.310725] bimc-bwmon 90b6300.qcom,cpu-cpu-llcc-bwmon: BW HWmon governor registered.\n[    2.310807] bimc-bwmon 90cd000.qcom,cpu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    2.311985] arm-memlat-mon soc:qcom,cpu0-cpu-l3-latmon: Memory Latency governor registered.\n[    2.312031] arm-memlat-mon soc:qcom,cpu6-cpu-l3-latmon: Memory Latency governor registered.\n[    2.312072] arm-memlat-mon soc:qcom,cpu0-cpu-llcc-latmon: Memory Latency governor registered.\n[    2.312109] arm-memlat-mon soc:qcom,cpu6-cpu-llcc-latmon: Memory Latency governor registered.\n[    2.312150] arm-memlat-mon soc:qcom,cpu0-llcc-ddr-latmon: Memory Latency governor registered.\n[    2.312192] arm-memlat-mon soc:qcom,cpu6-llcc-ddr-latmon: Memory Latency governor registered.\n[    2.312234] arm-memlat-mon soc:qcom,cpu0-computemon: Compute governor registered.\n[    2.312274] arm-memlat-mon soc:qcom,cpu6-computemon: Compute governor registered.\n[    2.314952] register_client_adhoc:find path.src 1 dest 770\n[    2.315066] register_client_adhoc:Client handle 27 soc:qcom,cpu-cpu-llcc-bw\n[    2.318180] register_client_adhoc:find path.src 129 dest 512\n[    2.318274] register_client_adhoc:Client handle 28 soc:qcom,cpu-llcc-ddr-bw\n[    2.320719] register_client_adhoc:find path.src 1 dest 770\n[    2.320799] register_client_adhoc:Client handle 29 soc:qcom,cpu0-cpu-llcc-lat\n[    2.321341] register_client_adhoc:find path.src 1 dest 770\n[    2.321410] register_client_adhoc:Client handle 30 soc:qcom,cpu6-cpu-llcc-lat\n[    2.321976] register_client_adhoc:find path.src 129 dest 512\n[    2.322171] register_client_adhoc:Client handle 31 soc:qcom,cpu0-llcc-ddr-lat\n[    2.322607] register_client_adhoc:find path.src 129 dest 512\n[    2.322803] register_client_adhoc:Client handle 32 soc:qcom,cpu6-llcc-ddr-lat\n[    2.323222] register_client_adhoc:find path.src 129 dest 512\n[    2.323288] register_client_adhoc:Client handle 33 soc:qcom,cpu0-cpu-ddr-latfloor\n[    2.324020] register_client_adhoc:find path.src 129 dest 512\n[    2.324080] register_client_adhoc:Client handle 34 soc:qcom,cpu6-cpu-ddr-latfloor\n[    2.324479] register_client_adhoc:find path.src 1 dest 627\n[    2.324687] register_client_adhoc:Client handle 35 soc:qcom,snoc_cnoc_keepalive\n[    2.325615] register_client_adhoc:find path.src 26 dest 512\n[    2.325744] register_client_adhoc:Client handle 36 soc:qcom,gpubw\n[    2.332136] qcom-llcc-pmu 90cc000.llcc-pmu: Registered llcc_pmu, type: 8\n[    2.333769] usbcore: registered new interface driver snd-usb-audio\n[    2.334010] iommu: Adding device soc:usb_audio_qmi_dev to group 27\n[    2.344266] tas2563 3-004c: tas2563_i2c_probe enter\n[    2.344305] tas2563 3-004c: ti,asi-format=0\n[    2.344312] tas2563 3-004c: ti,reset-gpio=22\n[    2.344316] tas2563 3-004c: ti,irq-gpio=117\n[    2.344319] tas2563 3-004c: ti,left-slot=0\n[    2.344322] tas2563 3-004c: ti,right-slot=1\n[    2.344325] tas2563 3-004c: ti,imon-slot-no=0\n[    2.344327] tas2563 3-004c: ti,vmon-slot-no=2\n[    2.380061] tas2563 3-004c: tas2563_change_book_page, 65\n[    2.380464] tas2563 3-004c: tas2563_dev_write: BOOK:PAGE:REG 0:0:1, VAL: 0x01\n[    2.400056] tas2563 3-004c: tas2563_change_book_page, 65\n[    2.400248] tas2563 3-004c: tas2563_dev_read: BOOK:PAGE:REG 0:0:125\n[    2.400251] tas2563 3-004c: PGID: 16\n[    2.400263] tas2563 3-004c: irq = 222\n[    2.400470] tas2563 3-004c: tas2563_register_codec, enter\n[    2.400483] tas2563 3-004c: register codec\n[    2.400565] tas2563 3-004c: tas2563_register_misc, leave\n[    2.400569] tas2563 3-004c: tiload_driver_init\n[    2.400586] tas2563 3-004c: allocated Major Number: 497\n[    2.400650] tas2563 3-004c: Registered TiLoad driver, Major number: 497\n[    2.401414] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    2.401430] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    2.401443] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    2.401455] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    2.401466] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    2.405444] msm-dai-q6-hdmi soc:qcom,msm-dai-q6-hdmi_ms: invalid device ID 24578\n[    2.405926] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: msm_auxpcm_dev_probe: invalid DT intf name senary\n[    2.419809] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: group id not supported 0x9150\n[    2.419821] msm-dai-tdm: probe of soc:qcom,msm-dai-tdm-sen-rx failed with error -22\n[    2.419840] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: group id not supported 0x9151\n[    2.419845] msm-dai-tdm: probe of soc:qcom,msm-dai-tdm-sen-tx failed with error -22\n[    2.432365] GACT probability NOT on\n[    2.432376] Mirror/redirect action on\n[    2.432386] u32 classifier\n[    2.432387]     Actions configured\n[    2.432397] Netfilter messages via NETLINK v0.30.\n[    2.432507] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    2.432577] ctnetlink v0.93: registering with nfnetlink.\n[    2.432761] xt_time: kernel timezone is -0000\n[    2.432836] gre: GRE over IPv4 demultiplexor driver\n[    2.432838] IPv4 over IPsec tunneling driver\n[    2.433136] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    2.433633] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    2.433758] Initializing XFRM netlink socket\n[    2.433772] IPsec XFRM device driver\n[    2.433954] NET: Registered protocol family 10\n[    2.435629] Segment Routing with IPv6\n[    2.435671] mip6: Mobile IPv6\n[    2.435681] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    2.436266] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    2.436678] NET: Registered protocol family 17\n[    2.436689] NET: Registered protocol family 15\n[    2.436718] Bridge firewalling registered\n[    2.436721] Ebtables v2.0 registered\n[    2.436868] l2tp_core: L2TP core driver, V2.0\n[    2.436875] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    2.436877] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    2.436890] l2tp_netlink: L2TP netlink interface\n[    2.436909] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    2.436910] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    2.436980] sctp: Hash tables configured (bind 256/256)\n[    2.437713] camera_ldo: supplied by pm6150l_s8\n[    2.438214] camera_vana0_ldo: supplied by pm6150l_bob\n[    2.438639] camera_vana1_2_ldo: supplied by pm6150l_bob\n[    2.441244] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.445190] register_client_adhoc:find path.src 61 dest 512\n[    2.445535] register_client_adhoc:find path.src 61 dest 676\n[    2.445701] register_client_adhoc:find path.src 1 dest 583\n[    2.445897] register_client_adhoc:Client handle 37 usb0\n[    2.448983] sps:BAM 0x000000000a704000 is registered.\n[    2.449034] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    2.449039] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    2.449043] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    2.449046] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    2.450778] qpnp-pdphy c440000.qcom,spmi:qcom,pm6150@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    2.466404] of_batterydata_get_best_profile: 3633204_LC_M6300_ATL4000mAh_FG_averaged_MasterSlave_Sep25th2018 found\n[    2.466729] QG-K: qg_batterydata_init: QG Battery-profile loaded\n[    2.469216] QG-K: qg_determine_pon_soc: using SHUTDOWN_SOC @ PON ocv_uv=4063400uV soc=74\n[    2.469444] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    2.470566] QG-K: qpnp_qg_probe: QG initialized! battery_profile=3633204_LC_M6300_ATL4000mAh_FG_averaged_MasterSlave_Sep25th2018 SOC=74 QG_subtype=4\n[    2.472495] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    2.475695] power_supply main: driver failed to report `flash_trigger' property: -1\n[    2.479066] of_batterydata_get_best_profile: 3633204_LC_M6300_ATL4000mAh_FG_averaged_MasterSlave_Sep25th2018 found\n[    2.479111] pm6150_charger: jeita_update_work: Couldn't get Soft Jeita hysteresis thresholds rc=-22\n[    2.483115] SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    2.483162] QPNP SMB5 probed successfully\n[    2.495604] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    2.495885] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    2.496117] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    2.496320] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    2.496508] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    2.498859] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.503056] register_client_adhoc:find path.src 61 dest 512\n[    2.503627] register_client_adhoc:find path.src 61 dest 676\n[    2.503795] register_client_adhoc:find path.src 1 dest 583\n[    2.503976] register_client_adhoc:Client handle 37 usb0\n[    2.504090] tas2563 3-004c: irq_work_routine\n[    2.504094] tas2563 3-004c: irq_work_routine, device not powered\n[    2.504373] power_supply main: driver failed to report `flash_trigger' property: -1\n[    2.508449] sps:BAM 0x000000000a704000 is registered.\n[    2.508499] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    2.508505] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    2.508509] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    2.508512] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    2.511210] i2c_geni 88c000.i2c: i2c error :-107\n[    2.511327] i2c_geni 88c000.i2c: i2c error :-107\n[    2.511439] i2c_geni 88c000.i2c: i2c error :-107\n[    2.511550] i2c_geni 88c000.i2c: i2c error :-107\n[    2.511661] i2c_geni 88c000.i2c: i2c error :-107\n[    2.511773] i2c_geni 88c000.i2c: i2c error :-107\n[    2.511883] i2c_geni 88c000.i2c: i2c error :-107\n[    2.511995] i2c_geni 88c000.i2c: i2c error :-107\n[    2.512106] i2c_geni 88c000.i2c: i2c error :-107\n[    2.512221] i2c_geni 88c000.i2c: i2c error :-107\n[    2.512671] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    2.512850] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    2.513017] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    2.513179] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    2.513340] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    2.515642] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.519055] register_client_adhoc:find path.src 61 dest 512\n[    2.519395] register_client_adhoc:find path.src 61 dest 676\n[    2.519561] register_client_adhoc:find path.src 1 dest 583\n[    2.519743] register_client_adhoc:Client handle 37 usb0\n[    2.521041] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    2.521211] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    2.521370] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    2.521529] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    2.521685] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    2.523653] registered taskstats version 1\n[    2.523655] Loading compiled-in X.509 certificates\n[    2.523665] page_owner is disabled\n[    2.524010] Key type ._fscrypt registered\n[    2.524012] Key type .fscrypt registered\n[    2.524014] Key type fscrypt-provisioning registered\n[    2.530141] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode\n[    2.561326] sps:BAM 0x000000000a704000 is registered.\n[    2.562297] msm-dwc3 a600000.ssusb: DWC3 in low power mode\n[    2.602704] ADSPRPC: Secure VMID = 22\n[    2.602709] ADSPRPC: Secure VMID = 37\n[    2.603307] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 28\n[    2.610832] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 29\n[    2.616264] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    2.616758] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 30\n[    2.617098] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    2.617506] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 31\n[    2.617819] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    2.618113] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 32\n[    2.618400] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    2.618655] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 33\n[    2.618942] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    2.619182] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 34\n[    2.620233] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    2.620511] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 35\n[    2.620795] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    2.621046] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 36\n[    2.621331] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    2.621571] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 37\n[    2.621851] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    2.622093] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13 to group 38\n[    2.622360] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    2.624497] i2c_geni 88c000.i2c: i2c error :-107\n[    2.624611] i2c_geni 88c000.i2c: i2c error :-107\n[    2.624795] i2c_geni 88c000.i2c: i2c error :-107\n[    2.624909] i2c_geni 88c000.i2c: i2c error :-107\n[    2.625020] i2c_geni 88c000.i2c: i2c error :-107\n[    2.625200] i2c_geni 88c000.i2c: i2c error :-107\n[    2.626866] register_client_adhoc:find path.src 1 dest 590\n[    2.627121] register_client_adhoc:Client handle 38 mdss_reg\n[    2.627152] register_client_adhoc:find path.src 22 dest 512\n[    2.627339] register_client_adhoc:Client handle 39 mdss_sde\n[    2.627391] [drm:sde_dbg_init:5211] evtlog_status: enable:3, panic:1, dump:2\n[    2.627406] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops sde_rsc_comp_ops)\n[    2.627413] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops sde_wb_comp_ops)\n[    2.627421] msm_drm ae00000.qcom,mdss_mdp: bound ae90000.qcom,dp_display (ops dp_display_comp_ops)\n[    2.627761] msm-dsi-display:[dsi_display_bind] Successfully bind display panel 'dsi_nt36672a_shenchao_vid_display'\n[    2.627972] msm-dsi-display:[dsi_display_feature_create_sysfs] xinj:dsi_display_feature_create_sysfs success\n[    2.627979] msm-dsi-display:[dsi_display_whitepoint_create_sysfs] xinj:dsi_display_whitepoint_create_sysfs success\n[    2.627987] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display (ops dsi_display_comp_ops)\n[    2.628006] [drm] mapped mdp address space @0000000068955632\n[    2.628111] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: vbif_nrt_phys\n[    2.628135] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: sid_phys\n[    2.628154] [drm:_sde_kms_get_splash_data:3290] splash mem num_regions:1\n[    2.628169] [drm:_sde_kms_get_splash_data:3323] splash mem for disp:1 add:9c000000 size:f00000\n[    2.628654] [drm:sde_kms_hw_init:3471] sde hardware revision:0x50030000\n[    2.629597] [drm] Created domain mdp_ns [80000000,80000000] secure=0\n[    2.630866] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 39\n[    2.630886] [drm] probing device qcom,smmu_sde_sec\n[    2.630892] [drm] Created domain mdp_s [80000000,80000000] secure=1\n[    2.633676] msm-dp-display ae90000.qcom,dp_display: ae90000.qcom,dp_display supply refgen not found, using dummy regulator\n[    2.634120] i2c i2c-4: of_i2c: modalias failure on /soc/qcom,dp_display@0/qcom,ctrl-supply-entries\n[    2.634124] i2c i2c-4: Failed to create I2C device for /soc/qcom,dp_display@0/qcom,ctrl-supply-entries\n[    2.634128] i2c i2c-4: of_i2c: modalias failure on /soc/qcom,dp_display@0/qcom,core-supply-entries\n[    2.634131] i2c i2c-4: Failed to create I2C device for /soc/qcom,dp_display@0/qcom,core-supply-entries\n[    2.634134] i2c i2c-4: of_i2c: modalias failure on /soc/qcom,dp_display@0/qcom,phy-supply-entries\n[    2.634137] i2c i2c-4: Failed to create I2C device for /soc/qcom,dp_display@0/qcom,phy-supply-entries\n[    2.636719] [drm-dp-mst]: dp_mst_drm_bridge_init: mst not initialized. cache encoder information\n[    2.636724] [drm-dp-mst]: dp_mst_drm_bridge_init: mst not initialized. cache encoder information\n[    2.636744] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    2.637064] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    2.637820] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    2.637822] [drm] No driver support for vblank timestamp query.\n[    2.638710] [drm] Initialized msm_drm 1.2.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    2.638772] msm-dsi-panel:[dsi_panel_parse_topology:2857] default topology: lm: 1 comp_enc:0 intf: 1\n[    2.638876] msm-dsi-panel:[dsi_panel_parse_partial_update_caps:2950] partial update disabled as the property is not set\n[    2.639001] dsi-ctrl:[_dsi_ctrl_setup_isr] [DSI_0] IRQ 446 registered\n[    2.671127] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-qos-lut : doesn't exist in device tree\n[    2.671130] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-danger-lut : doesn't exist in device tree\n[    2.671133] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-safe-lut : doesn't exist in device tree\n[    2.671188] register_client_adhoc:find path.src 1 dest 590\n[    2.671433] register_client_adhoc:Client handle 40 sde_reg\n[    2.671648] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 40\n[    2.671697] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    2.671865] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 41\n[    2.671886] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    2.671959] register_client_adhoc:find path.src 25 dest 512\n[    2.672155] register_client_adhoc:Client handle 41 mdss_rotator\n[    2.672167] register_client_adhoc:find path.src 1 dest 590\n[    2.672349] register_client_adhoc:Client handle 42 mdss_rot_reg\n[    2.672668] No change in context(0==0), skip\n[    2.673782] sde_rotator_evtlog_create_debugfs: evtlog_status: enable:1, panic:1, dump:2\n[    2.674677] sde_rotator ae00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    2.674974] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    2.675182] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    2.675338] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    2.675494] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    2.675650] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    2.676818] iommu: Adding device 62e40000.slim:qcom,iommu_slim_ctrl_cb to group 42\n[    2.677375] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    2.677531] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    2.677682] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    2.677835] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    2.677988] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    2.681448] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input2\n[    2.681730] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    2.681904] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    2.682055] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    2.682209] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    2.682362] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    2.683191] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm6150@0:qcom,pm6150_rtc: setting system clock to 1970-04-25 20:05:55 UTC (9921955)\n[    2.683411] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    2.683563] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    2.683713] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    2.683864] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    2.684016] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    2.686059] CAM_ERR: CAM-CCI: cam_cci_assign_fops: 499 Invalid dev node:0000000065f32fd0 offset: 0\n[    2.686804] lpm_levels: register_cluster_lpm_stats()\n[    2.686893] lpm_levels: register_cluster_lpm_stats()\n[    2.689179] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    2.689374] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    2.689529] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    2.689684] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    2.689838] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    2.692968] rmnet_ipa3 started initialization\n[    2.693695] RNDIS_IPA module is loaded.\n[    2.698103] msm_bus_late_init: Remove handoff bw requests\n[    2.698963] ufs_phy_gdsc: disabling\n[    2.698980] hlos1_vote_aggre_noc_mmu_audio_tbu_gdsc: disabling\n[    2.699089] hlos1_vote_aggre_noc_mmu_tbu1_gdsc: disabling\n[    2.699198] hlos1_vote_aggre_noc_mmu_tbu2_gdsc: disabling\n[    2.699307] hlos1_vote_aggre_noc_mmu_pcie_tbu_gdsc: disabling\n[    2.699443] dbu1: disabling\n[    2.699451] camera_ldo: disabling\n[    2.699454] camera_vana0_ldo: disabling\n[    2.699456] camera_vana1_2_ldo: disabling\n[    2.699482] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    2.699623] ALSA device list:\n[    2.699625]   No soundcards found.\n[    2.700415] Freeing unused kernel memory: 2048K\n[    3.520216] power_supply main: driver failed to report `flash_trigger' property: -1\n[    3.735183] CPU1: shutdown\n[    3.738947] CPU2: shutdown\n[    3.741407] CPU3: shutdown\n[    3.743356] IRQ 6: no longer affine to CPU4\n[    3.743613] CPU4: shutdown\n[    3.745532] CPU5: shutdown\n[    3.747167] CPU6: shutdown\n[    3.749702] IRQ 6: no longer affine to CPU7\n[    3.749814] CPU7: shutdown\n[    4.481834] of_batterydata_get_best_profile: 3633204_LC_M6300_ATL4000mAh_FG_averaged_MasterSlave_Sep25th2018 found\n[    4.481877] QCOM-STEPCHG: read_range_data_from_node: Count qcom,step-chg-ranges failed, rc=-22\n[   64.481207] firmware tas2563_uCDSP.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   64.481430] tas2563 3-004c: tas2563_fw_ready:\n[   64.481444] tas2563 3-004c: tas2563_uCDSP.bin firmware is not loaded.\n[   84.175668] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000\n[   84.175780] CPU1: Booted secondary processor [51df805e]\n[  305.120782] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120825] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121781] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121802] audio_notifer_reg_service: service SSR_ADSP is in use\n[  305.121867] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121875] ADSPRPC: Audio PD restart notifier locator down\n[  305.121912] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121919] ADSPRPC: Audio PD restart notifier locator down\n[  887.882679] CPU1: shutdown\n[  887.886559] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000\n[  887.886596] CPU6: Booted secondary processor [51df804e]\n[ 1365.476982] CPU6: shutdown\n"
  },
  {
    "path": "results/sm6150/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  4:       3685   PDC-GIC  19 Level     arch_timer\n  6:     138168   PDC-GIC  38 Level     arch_mem_timer\n  8:          0   PDC-GIC  21 Level     arm-pmu\n  9:          0   PDC-GIC  82 Level     arm_dsu_0\n 26:          0   PDC-GIC  32 Edge      apps_wdog_bark\n 28:          0   PDC-GIC  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 29:          0   PDC-GIC  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 30:        207   PDC-GIC  37 Level     apps_rsc\n 31:          0   PDC-GIC 161 Level     display_rsc\n 32:         77   PDC-GIC 673 Edge      mmc0\n 33:          2   PDC-GIC 676 Edge      7c4000.sdhci\n 34:         13   PDC-GIC 236 Edge      mmc1\n 35:          2   PDC-GIC 254 Edge      8804000.sdhci\n 37:          0   PDC-GIC 304 Level     sps\n 39:          0  pmic_arb 8388749 Edge      pon_kpdpwr_status\n 40:          0  pmic_arb 8454285 Edge      pon_resin_status\n 41:         44  pmic_arb 51380379 Edge      pm-adc5\n 42:          0  pmic_arb 55574684 Edge      thr-int-en\n 43:          0  pmic_arb 24117397 Edge      sig-tx\n 44:          0  pmic_arb 24182933 Edge      sig-rx\n 45:          0  pmic_arb 24248469 Edge      msg-tx\n 46:          0  pmic_arb 24314005 Edge      msg-rx\n 47:          0  pmic_arb 24379541 Edge      msg-tx-failed\n 48:          0  pmic_arb 24445077 Edge      msg-tx-discarded\n 49:          0  pmic_arb 24510613 Edge      msg-rx-discarded\n 51:          0  pmic_arb 30408857 Edge      bcl-lvl0\n 52:          0  pmic_arb 30474393 Edge      bcl-lvl1\n 53:          0  pmic_arb 30539929 Edge      bcl-lvl2\n 54:          0  pmic_arb 37748890 Edge      qcom,temp-alarm\n 61:          0  pmic_arb 1111490736 Edge      qcom,temp-alarm\n 62:          0  pmic_arb 1137705139 Edge      bcl-lvl0\n 63:          0  pmic_arb 1137770675 Edge      bcl-lvl1\n 64:          0  pmic_arb 1137836211 Edge      bcl-lvl2\n 65:          6  pmic_arb 1125122225 Edge      pm-adc5\n 66:          0  pmic_arb 1129316530 Edge      thr-int-en\n 68:          0  pmic_arb 1276117175 Edge      volume_up\n 79:          0  pmic_arb 1589706970 Edge      qpnp_lcdb_sc_irq\n 80:          0  pmic_arb 1563427028 Edge      qpnp_flash_led_fault_irq\n 81:          0  pmic_arb 1563623636 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 82:          0  pmic_arb 1563689172 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 83:          0  pmic_arb 1568735445 Edge      wled_ovp_irq\n 84:          0  pmic_arb 1568932053 Edge      wled_pre_flash_irq\n 85:          0  pmic_arb 1568997589 Edge      wled_flash_irq\n 86:          0   PDC-GIC 524 Level     eud_irq\n 87:          0   PDC-GIC 323 Level     ngd_slim_irq\n 89:          7   PDC-GIC 421 Edge      qcom,qmp-aop\n 90:          0   PDC-GIC 483 Edge      smp2p\n 91:          0   PDC-GIC 204 Edge      smp2p\n 92:          0   PDC-GIC 608 Edge      smp2p\n 93:          0   PDC-GIC 538 Level     tsens-upper-lower\n 94:          0   PDC-GIC 540 Level     tsens-critical\n 95:          0   PDC-GIC 194 Edge      adsp\n 96:          0   PDC-GIC 298 Edge      modem\n 97:          0   PDC-GIC 610 Edge      cdsp\n182:        170  msmgpio-dc  89 Edge      NVT-ts\n184:          0  msmgpio-dc  90 Edge      TE_GPIO\n188:          2  msmgpio-dc  93 Edge      soc:fpc1020\n200:          0  msmgpio-dc  99 Edge      8804000.sdhci cd\n222:          1  msmgpio-dc 117 Level     tas2563\n242:        663   PDC-GIC 634 Level     i2c_geni\n243:         72   PDC-GIC 636 Level     i2c_geni\n244:          9   PDC-GIC 385 Level     i2c_geni\n245:          0   PDC-GIC 386 Level     i2c_geni\n246:          0   PDC-GIC 387 Level     spi_geni\n247:          0   PDC-GIC 388 Level     msm_serial_geni0\n248:          0   PDC-GIC 332 Level     kgsl-3d0\n249:          0   PDC-GIC 336 Level     kgsl-oob\n250:          0   PDC-GIC 337 Level     kgsl-rgmu\n251:          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n252:          0   PDC-GIC 162 Edge      pwr_event_irq\n253:          0   PDC-GIC 518 Level     ss_phy_irq\n254:          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n255:          0   PDC-GIC 509 Edge      csiphy\n256:          0   PDC-GIC 510 Edge      csiphy\n257:          0   PDC-GIC 511 Edge      csiphy\n258:          0   PDC-GIC 492 Edge      cci\n259:          0   PDC-GIC 491 Edge      cpas_camnoc\n260:          1   PDC-GIC 493 Edge      cpas-cdm\n261:          0   PDC-GIC 496 Edge      csid\n262:          2   PDC-GIC 497 Edge      ife\n263:          0   PDC-GIC 498 Edge      csid\n264:          2   PDC-GIC 499 Edge      ife\n265:          0   PDC-GIC 500 Edge      csid-lite\n266:          2   PDC-GIC 501 Edge      ife-lite\n267:          0   PDC-GIC 495 Edge      a5\n268:          0   PDC-GIC 506 Edge      jpeg\n269:          0   PDC-GIC 507 Edge      jpegdma\n270:          1   PDC-GIC 508 Edge      lrme\n271:          0   PDC-GIC 617 Level     arm-smmu global fault\n272:          0   PDC-GIC 622 Level     arm-smmu-context-fault\n273:          0   PDC-GIC 623 Level     arm-smmu-context-fault\n280:          0   PDC-GIC  97 Level     arm-smmu global fault\n282:          0   PDC-GIC 127 Level     arm-smmu-context-fault\n283:          0   PDC-GIC 128 Level     arm-smmu-context-fault\n284:          0   PDC-GIC 129 Level     arm-smmu-context-fault\n285:          0   PDC-GIC 130 Level     arm-smmu-context-fault\n286:          0   PDC-GIC 131 Level     arm-smmu-context-fault\n287:          0   PDC-GIC 132 Level     arm-smmu-context-fault\n288:          0   PDC-GIC 133 Level     arm-smmu-context-fault\n289:          0   PDC-GIC 134 Level     arm-smmu-context-fault\n290:          0   PDC-GIC 135 Level     arm-smmu-context-fault\n291:          0   PDC-GIC 136 Level     arm-smmu-context-fault\n292:          0   PDC-GIC 137 Level     arm-smmu-context-fault\n293:          0   PDC-GIC 138 Level     arm-smmu-context-fault\n294:          0   PDC-GIC 139 Level     arm-smmu-context-fault\n295:          0   PDC-GIC 140 Level     arm-smmu-context-fault\n296:          0   PDC-GIC 141 Level     arm-smmu-context-fault\n297:          0   PDC-GIC 142 Level     arm-smmu-context-fault\n298:          0   PDC-GIC 143 Level     arm-smmu-context-fault\n299:          0   PDC-GIC 144 Level     arm-smmu-context-fault\n300:          0   PDC-GIC 145 Level     arm-smmu-context-fault\n301:          0   PDC-GIC 146 Level     arm-smmu-context-fault\n302:          0   PDC-GIC 147 Level     arm-smmu-context-fault\n303:          0   PDC-GIC 148 Level     arm-smmu-context-fault\n304:          0   PDC-GIC 149 Level     arm-smmu-context-fault\n305:          0   PDC-GIC 150 Level     arm-smmu-context-fault\n306:          0   PDC-GIC 213 Level     arm-smmu-context-fault\n307:          0   PDC-GIC 214 Level     arm-smmu-context-fault\n308:          0   PDC-GIC 215 Level     arm-smmu-context-fault\n309:          0   PDC-GIC 216 Level     arm-smmu-context-fault\n310:          0   PDC-GIC 217 Level     arm-smmu-context-fault\n311:          0   PDC-GIC 218 Level     arm-smmu-context-fault\n312:          0   PDC-GIC 219 Level     arm-smmu-context-fault\n346:          0   PDC-GIC 206 Level     msm_vidc\n347:          0   PDC-GIC 115 Edge      msm_drm\n361:          0   PDC-GIC  64 Level     limits_sensor-00\n362:          0   PDC-GIC  65 Level     limits_sensor-01\n363:          0     smp2p   2 Edge      adsp\n364:          0     smp2p   0 Edge      adsp\n365:          0     smp2p   1 Edge      error_ready_interrupt\n366:          0     smp2p   3 Edge      adsp\n367:          0     smp2p   7 Edge      adsp\n368:          0     smp2p   2 Edge      modem\n369:          0     smp2p   0 Edge      modem\n370:          0     smp2p   1 Edge      error_ready_interrupt\n371:          0     smp2p   3 Edge      modem\n372:          0     smp2p   7 Edge      modem\n373:          0     smp2p   2 Edge      cdsp\n374:          0     smp2p   0 Edge      cdsp\n375:          0     smp2p   1 Edge      error_ready_interrupt\n376:          0     smp2p   3 Edge      cdsp\n377:          0     smp2p   7 Edge      cdsp\n378:          0     smp2p   0 Edge      smp2p_sleepstate\n381:          0     GICv3 165 Edge      dwc3\n383:          0  pmic_arb 101777568 Edge      qpnp_rtc_alarm\n384:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n386:          0  pmic_arb 75563166 Edge      qg-vbat-low\n387:          0  pmic_arb 75628702 Edge      qg-vbat-empty\n388:         21  pmic_arb 75694238 Edge      qg-fifo-done\n389:          0  pmic_arb 75759774 Edge      qg-good-ocv\n390:          0  pmic_arb 16777358 Edge      chgr-error\n391:          0  pmic_arb 16842894 Edge      chg-state-change\n398:          0  pmic_arb 17825935 Edge      otg-fail\n402:          0  pmic_arb 18088079 Edge      high-duty-cycle\n403:          0  pmic_arb 18153615 Edge      input-current-limiting\n405:          0  pmic_arb 18284687 Edge      switcher-power-ok\n406:          0  pmic_arb 18874512 Edge      bat-temp\n407:          0  pmic_arb 19005584 Edge      bat-ov\n408:          0  pmic_arb 19071120 Edge      bat-low\n409:          0  pmic_arb 19136656 Edge      bat-therm-or-id-missing\n410:          0  pmic_arb 19202192 Edge      bat-terminal-missing\n413:          0  pmic_arb 19923089 Edge      usbin-collapse\n414:          0  pmic_arb 19988625 Edge      usbin-vashdn\n415:          0  pmic_arb 20054161 Edge      usbin-uv\n416:          0  pmic_arb 20119697 Edge      usbin-ov\n417:          0  pmic_arb 20185233 Edge      usbin-plugin\n419:          0  pmic_arb 20316305 Edge      usbin-src-change\n420:          0  pmic_arb 20381841 Edge      usbin-icl-change\n422:          0  pmic_arb 21102738 Edge      dcin-uv\n423:          0  pmic_arb 21168274 Edge      dcin-ov\n424:          0  pmic_arb 21233810 Edge      dcin-plugin\n426:          0  pmic_arb 21364882 Edge      dcin-pon\n427:          0  pmic_arb 21430418 Edge      dcin-en\n428:          0  pmic_arb 22020243 Edge      typec-or-rid-detect-change\n430:          0  pmic_arb 22151315 Edge      typec-cc-state-change\n431:          0  pmic_arb 22216851 Edge      typec-vconn-oc\n433:          0  pmic_arb 22347923 Edge      typec-attach-detach\n434:          0  pmic_arb 22413459 Edge      typec-legacy-cable-detect\n436:          0  pmic_arb 23068820 Edge      wdog-snarl\n437:          0  pmic_arb 23134356 Edge      wdog-bark\n439:          0  pmic_arb 23265428 Edge      aicl-done\n440:          0  pmic_arb 23330964 Edge      smb-en\n442:          0  pmic_arb 23462036 Edge      temp-change\n444:          0  pmic_arb 185663650 Edge      sdam-sts\n445:          0       sde  12 Edge      dp_display_isr\n446:          0       sde   4 Edge      dsi_ctrl\nIPI0:       162       Rescheduling interrupts\nIPI1:        11       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:     67735       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm6150/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  4:        497          1          1          1          1          1          7          1   PDC-GIC  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   PDC-GIC  38 Level     arch_mem_timer\n  8:          0          0          0          0          0          0          0          0   PDC-GIC  21 Level     arm-pmu\n  9:          0          0          0          0          0          0          0          0   PDC-GIC  82 Level     arm_dsu_0\n 26:          0          0          0          0          0          0          0          0   PDC-GIC  32 Edge      apps_wdog_bark\n 28:          0          0          0          0          0          0          0          0   PDC-GIC  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 29:          0          0          0          0          0          0          0          0   PDC-GIC  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 30:        193          0          0          0          0          0          0          0   PDC-GIC  37 Level     apps_rsc\n 31:          0          0          0          0          0          0          0          0   PDC-GIC 161 Level     display_rsc\n 32:         65          0          0          0          0          0          0          0   PDC-GIC 673 Edge      mmc0\n 33:          1          0          0          0          0          0          0          0   PDC-GIC 676 Edge      7c4000.sdhci\n 34:         13          0          0          0          0          0          0          0   PDC-GIC 236 Edge      mmc1\n 35:          2          0          0          0          0          0          0          0   PDC-GIC 254 Edge      8804000.sdhci\n 37:          0          0          0          0          0          0          0          0   PDC-GIC 304 Level     sps\n 39:          0          0          0          0          0          0          0          0  pmic_arb 8388749 Edge      pon_kpdpwr_status\n 40:          0          0          0          0          0          0          0          0  pmic_arb 8454285 Edge      pon_resin_status\n 41:         23          0          0          0          0          0          0          0  pmic_arb 51380379 Edge      pm-adc5\n 42:          0          0          0          0          0          0          0          0  pmic_arb 55574684 Edge      thr-int-en\n 43:          0          0          0          0          0          0          0          0  pmic_arb 24117397 Edge      sig-tx\n 44:          0          0          0          0          0          0          0          0  pmic_arb 24182933 Edge      sig-rx\n 45:          0          0          0          0          0          0          0          0  pmic_arb 24248469 Edge      msg-tx\n 46:          0          0          0          0          0          0          0          0  pmic_arb 24314005 Edge      msg-rx\n 47:          0          0          0          0          0          0          0          0  pmic_arb 24379541 Edge      msg-tx-failed\n 48:          0          0          0          0          0          0          0          0  pmic_arb 24445077 Edge      msg-tx-discarded\n 49:          0          0          0          0          0          0          0          0  pmic_arb 24510613 Edge      msg-rx-discarded\n 51:          0          0          0          0          0          0          0          0  pmic_arb 30408857 Edge      bcl-lvl0\n 52:          0          0          0          0          0          0          0          0  pmic_arb 30474393 Edge      bcl-lvl1\n 53:          0          0          0          0          0          0          0          0  pmic_arb 30539929 Edge      bcl-lvl2\n 54:          0          0          0          0          0          0          0          0  pmic_arb 37748890 Edge      qcom,temp-alarm\n 61:          0          0          0          0          0          0          0          0  pmic_arb 1111490736 Edge      qcom,temp-alarm\n 62:          0          0          0          0          0          0          0          0  pmic_arb 1137705139 Edge      bcl-lvl0\n 63:          0          0          0          0          0          0          0          0  pmic_arb 1137770675 Edge      bcl-lvl1\n 64:          0          0          0          0          0          0          0          0  pmic_arb 1137836211 Edge      bcl-lvl2\n 65:          6          0          0          0          0          0          0          0  pmic_arb 1125122225 Edge      pm-adc5\n 66:          0          0          0          0          0          0          0          0  pmic_arb 1129316530 Edge      thr-int-en\n 68:          0          0          0          0          0          0          0          0  pmic_arb 1276117175 Edge      volume_up\n 79:          0          0          0          0          0          0          0          0  pmic_arb 1589706970 Edge      qpnp_lcdb_sc_irq\n 80:          0          0          0          0          0          0          0          0  pmic_arb 1563427028 Edge      qpnp_flash_led_fault_irq\n 81:          0          0          0          0          0          0          0          0  pmic_arb 1563623636 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 82:          0          0          0          0          0          0          0          0  pmic_arb 1563689172 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 83:          0          0          0          0          0          0          0          0  pmic_arb 1568735445 Edge      wled_ovp_irq\n 84:          0          0          0          0          0          0          0          0  pmic_arb 1568932053 Edge      wled_pre_flash_irq\n 85:          0          0          0          0          0          0          0          0  pmic_arb 1568997589 Edge      wled_flash_irq\n 86:          0          0          0          0          0          0          0          0   PDC-GIC 524 Level     eud_irq\n 87:          0          0          0          0          0          0          0          0   PDC-GIC 323 Level     ngd_slim_irq\n 89:          7          0          0          0          0          0          0          0   PDC-GIC 421 Edge      qcom,qmp-aop\n 90:          0          0          0          0          0          0          0          0   PDC-GIC 483 Edge      smp2p\n 91:          0          0          0          0          0          0          0          0   PDC-GIC 204 Edge      smp2p\n 92:          0          0          0          0          0          0          0          0   PDC-GIC 608 Edge      smp2p\n 93:          0          0          0          0          0          0          0          0   PDC-GIC 538 Level     tsens-upper-lower\n 94:          0          0          0          0          0          0          0          0   PDC-GIC 540 Level     tsens-critical\n 95:          0          0          0          0          0          0          0          0   PDC-GIC 194 Edge      adsp\n 96:          0          0          0          0          0          0          0          0   PDC-GIC 298 Edge      modem\n 97:          0          0          0          0          0          0          0          0   PDC-GIC 610 Edge      cdsp\n182:          1          0          0          0          0          0          0          0  msmgpio-dc  89 Edge      NVT-ts\n184:          0          0          0          0          0          0          0          0  msmgpio-dc  90 Edge      TE_GPIO\n188:          2          0          0          0          0          0          0          0  msmgpio-dc  93 Edge      soc:fpc1020\n200:          0          0          0          0          0          0          0          0  msmgpio-dc  99 Edge      8804000.sdhci cd\n222:          1          0          0          0          0          0          0          0  msmgpio-dc 117 Level     tas2563\n242:        100          0          0          0          0          0          0          0   PDC-GIC 634 Level     i2c_geni\n243:         72          0          0          0          0          0          0          0   PDC-GIC 636 Level     i2c_geni\n244:          9          0          0          0          0          0          0          0   PDC-GIC 385 Level     i2c_geni\n245:          0          0          0          0          0          0          0          0   PDC-GIC 386 Level     i2c_geni\n246:          0          0          0          0          0          0          0          0   PDC-GIC 387 Level     spi_geni\n247:          0          0          0          0          0          0          0          0   PDC-GIC 388 Level     msm_serial_geni0\n248:          0          0          0          0          0          0          0          0   PDC-GIC 332 Level     kgsl-3d0\n249:          0          0          0          0          0          0          0          0   PDC-GIC 336 Level     kgsl-oob\n250:          0          0          0          0          0          0          0          0   PDC-GIC 337 Level     kgsl-rgmu\n251:          0          0          0          0          0          0          0          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n252:          0          0          0          0          0          0          0          0   PDC-GIC 162 Edge      pwr_event_irq\n253:          0          0          0          0          0          0          0          0   PDC-GIC 518 Level     ss_phy_irq\n254:          0          0          0          0          0          0          0          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n255:          0          0          0          0          0          0          0          0   PDC-GIC 509 Edge      csiphy\n256:          0          0          0          0          0          0          0          0   PDC-GIC 510 Edge      csiphy\n257:          0          0          0          0          0          0          0          0   PDC-GIC 511 Edge      csiphy\n258:          0          0          0          0          0          0          0          0   PDC-GIC 492 Edge      cci\n259:          0          0          0          0          0          0          0          0   PDC-GIC 491 Edge      cpas_camnoc\n260:          1          0          0          0          0          0          0          0   PDC-GIC 493 Edge      cpas-cdm\n261:          0          0          0          0          0          0          0          0   PDC-GIC 496 Edge      csid\n262:          2          0          0          0          0          0          0          0   PDC-GIC 497 Edge      ife\n263:          0          0          0          0          0          0          0          0   PDC-GIC 498 Edge      csid\n264:          2          0          0          0          0          0          0          0   PDC-GIC 499 Edge      ife\n265:          0          0          0          0          0          0          0          0   PDC-GIC 500 Edge      csid-lite\n266:          2          0          0          0          0          0          0          0   PDC-GIC 501 Edge      ife-lite\n267:          0          0          0          0          0          0          0          0   PDC-GIC 495 Edge      a5\n268:          0          0          0          0          0          0          0          0   PDC-GIC 506 Edge      jpeg\n269:          0          0          0          0          0          0          0          0   PDC-GIC 507 Edge      jpegdma\n270:          1          0          0          0          0          0          0          0   PDC-GIC 508 Edge      lrme\n271:          0          0          0          0          0          0          0          0   PDC-GIC 617 Level     arm-smmu global fault\n272:          0          0          0          0          0          0          0          0   PDC-GIC 622 Level     arm-smmu-context-fault\n273:          0          0          0          0          0          0          0          0   PDC-GIC 623 Level     arm-smmu-context-fault\n280:          0          0          0          0          0          0          0          0   PDC-GIC  97 Level     arm-smmu global fault\n282:          0          0          0          0          0          0          0          0   PDC-GIC 127 Level     arm-smmu-context-fault\n283:          0          0          0          0          0          0          0          0   PDC-GIC 128 Level     arm-smmu-context-fault\n284:          0          0          0          0          0          0          0          0   PDC-GIC 129 Level     arm-smmu-context-fault\n285:          0          0          0          0          0          0          0          0   PDC-GIC 130 Level     arm-smmu-context-fault\n286:          0          0          0          0          0          0          0          0   PDC-GIC 131 Level     arm-smmu-context-fault\n287:          0          0          0          0          0          0          0          0   PDC-GIC 132 Level     arm-smmu-context-fault\n288:          0          0          0          0          0          0          0          0   PDC-GIC 133 Level     arm-smmu-context-fault\n289:          0          0          0          0          0          0          0          0   PDC-GIC 134 Level     arm-smmu-context-fault\n290:          0          0          0          0          0          0          0          0   PDC-GIC 135 Level     arm-smmu-context-fault\n291:          0          0          0          0          0          0          0          0   PDC-GIC 136 Level     arm-smmu-context-fault\n292:          0          0          0          0          0          0          0          0   PDC-GIC 137 Level     arm-smmu-context-fault\n293:          0          0          0          0          0          0          0          0   PDC-GIC 138 Level     arm-smmu-context-fault\n294:          0          0          0          0          0          0          0          0   PDC-GIC 139 Level     arm-smmu-context-fault\n295:          0          0          0          0          0          0          0          0   PDC-GIC 140 Level     arm-smmu-context-fault\n296:          0          0          0          0          0          0          0          0   PDC-GIC 141 Level     arm-smmu-context-fault\n297:          0          0          0          0          0          0          0          0   PDC-GIC 142 Level     arm-smmu-context-fault\n298:          0          0          0          0          0          0          0          0   PDC-GIC 143 Level     arm-smmu-context-fault\n299:          0          0          0          0          0          0          0          0   PDC-GIC 144 Level     arm-smmu-context-fault\n300:          0          0          0          0          0          0          0          0   PDC-GIC 145 Level     arm-smmu-context-fault\n301:          0          0          0          0          0          0          0          0   PDC-GIC 146 Level     arm-smmu-context-fault\n302:          0          0          0          0          0          0          0          0   PDC-GIC 147 Level     arm-smmu-context-fault\n303:          0          0          0          0          0          0          0          0   PDC-GIC 148 Level     arm-smmu-context-fault\n304:          0          0          0          0          0          0          0          0   PDC-GIC 149 Level     arm-smmu-context-fault\n305:          0          0          0          0          0          0          0          0   PDC-GIC 150 Level     arm-smmu-context-fault\n306:          0          0          0          0          0          0          0          0   PDC-GIC 213 Level     arm-smmu-context-fault\n307:          0          0          0          0          0          0          0          0   PDC-GIC 214 Level     arm-smmu-context-fault\n308:          0          0          0          0          0          0          0          0   PDC-GIC 215 Level     arm-smmu-context-fault\n309:          0          0          0          0          0          0          0          0   PDC-GIC 216 Level     arm-smmu-context-fault\n310:          0          0          0          0          0          0          0          0   PDC-GIC 217 Level     arm-smmu-context-fault\n311:          0          0          0          0          0          0          0          0   PDC-GIC 218 Level     arm-smmu-context-fault\n312:          0          0          0          0          0          0          0          0   PDC-GIC 219 Level     arm-smmu-context-fault\n346:          0          0          0          0          0          0          0          0   PDC-GIC 206 Level     msm_vidc\n347:          0          0          0          0          0          0          0          0   PDC-GIC 115 Edge      msm_drm\n361:          0          0          0          0          0          0          0          0   PDC-GIC  64 Level     limits_sensor-00\n362:          0          0          0          0          0          0          0          0   PDC-GIC  65 Level     limits_sensor-01\n363:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n364:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n365:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n366:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n367:          0          0          0          0          0          0          0          0     smp2p   7 Edge      adsp\n368:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n369:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n370:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n371:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n372:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n373:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n374:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n375:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n376:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n377:          0          0          0          0          0          0          0          0     smp2p   7 Edge      cdsp\n378:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n381:          0          0          0          0          0          0          0          0     GICv3 165 Edge      dwc3\n383:          0          0          0          0          0          0          0          0  pmic_arb 101777568 Edge      qpnp_rtc_alarm\n384:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n386:          0          0          0          0          0          0          0          0  pmic_arb 75563166 Edge      qg-vbat-low\n387:          0          0          0          0          0          0          0          0  pmic_arb 75628702 Edge      qg-vbat-empty\n388:          0          0          0          0          0          0          0          0  pmic_arb 75694238 Edge      qg-fifo-done\n389:          0          0          0          0          0          0          0          0  pmic_arb 75759774 Edge      qg-good-ocv\n390:          0          0          0          0          0          0          0          0  pmic_arb 16777358 Edge      chgr-error\n391:          0          0          0          0          0          0          0          0  pmic_arb 16842894 Edge      chg-state-change\n398:          0          0          0          0          0          0          0          0  pmic_arb 17825935 Edge      otg-fail\n402:          0          0          0          0          0          0          0          0  pmic_arb 18088079 Edge      high-duty-cycle\n403:          0          0          0          0          0          0          0          0  pmic_arb 18153615 Edge      input-current-limiting\n405:          0          0          0          0          0          0          0          0  pmic_arb 18284687 Edge      switcher-power-ok\n406:          0          0          0          0          0          0          0          0  pmic_arb 18874512 Edge      bat-temp\n407:          0          0          0          0          0          0          0          0  pmic_arb 19005584 Edge      bat-ov\n408:          0          0          0          0          0          0          0          0  pmic_arb 19071120 Edge      bat-low\n409:          0          0          0          0          0          0          0          0  pmic_arb 19136656 Edge      bat-therm-or-id-missing\n410:          0          0          0          0          0          0          0          0  pmic_arb 19202192 Edge      bat-terminal-missing\n413:          0          0          0          0          0          0          0          0  pmic_arb 19923089 Edge      usbin-collapse\n414:          0          0          0          0          0          0          0          0  pmic_arb 19988625 Edge      usbin-vashdn\n415:          0          0          0          0          0          0          0          0  pmic_arb 20054161 Edge      usbin-uv\n416:          0          0          0          0          0          0          0          0  pmic_arb 20119697 Edge      usbin-ov\n417:          0          0          0          0          0          0          0          0  pmic_arb 20185233 Edge      usbin-plugin\n419:          0          0          0          0          0          0          0          0  pmic_arb 20316305 Edge      usbin-src-change\n420:          0          0          0          0          0          0          0          0  pmic_arb 20381841 Edge      usbin-icl-change\n422:          0          0          0          0          0          0          0          0  pmic_arb 21102738 Edge      dcin-uv\n423:          0          0          0          0          0          0          0          0  pmic_arb 21168274 Edge      dcin-ov\n424:          0          0          0          0          0          0          0          0  pmic_arb 21233810 Edge      dcin-plugin\n426:          0          0          0          0          0          0          0          0  pmic_arb 21364882 Edge      dcin-pon\n427:          0          0          0          0          0          0          0          0  pmic_arb 21430418 Edge      dcin-en\n428:          0          0          0          0          0          0          0          0  pmic_arb 22020243 Edge      typec-or-rid-detect-change\n430:          0          0          0          0          0          0          0          0  pmic_arb 22151315 Edge      typec-cc-state-change\n431:          0          0          0          0          0          0          0          0  pmic_arb 22216851 Edge      typec-vconn-oc\n433:          0          0          0          0          0          0          0          0  pmic_arb 22347923 Edge      typec-attach-detach\n434:          0          0          0          0          0          0          0          0  pmic_arb 22413459 Edge      typec-legacy-cable-detect\n436:          0          0          0          0          0          0          0          0  pmic_arb 23068820 Edge      wdog-snarl\n437:          0          0          0          0          0          0          0          0  pmic_arb 23134356 Edge      wdog-bark\n439:          0          0          0          0          0          0          0          0  pmic_arb 23265428 Edge      aicl-done\n440:          0          0          0          0          0          0          0          0  pmic_arb 23330964 Edge      smb-en\n442:          0          0          0          0          0          0          0          0  pmic_arb 23462036 Edge      temp-change\n444:          0          0          0          0          0          0          0          0  pmic_arb 185663650 Edge      sdam-sts\n445:          0          0          0          0          0          0          0          0       sde  12 Edge      dp_display_isr\n446:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\nIPI0:        95         43         42         42         42         43         41         38       Rescheduling interrupts\nIPI1:         0       7913       7913       7913       7913       7913       7913       7913       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:       146          5          5          7          5          6          7          5       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm6150/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    5 root      0:00 [kworker/0:0H]\n    6 root      0:00 [kworker/u16:0]\n    7 root      0:00 [mm_percpu_wq]\n    8 root      0:00 [ksoftirqd/0]\n    9 root      0:00 [rcu_preempt]\n   10 root      0:00 [rcu_sched]\n   11 root      0:00 [rcu_bh]\n   12 root      0:00 [rcuop/0]\n   13 root      0:00 [rcuos/0]\n   14 root      0:00 [rcuob/0]\n   15 root      0:00 [migration/0]\n   16 root      0:00 [cpuhp/0]\n   17 root      0:00 [cpuhp/1]\n   18 root      0:00 [migration/1]\n   19 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0]\n   21 root      0:00 [kworker/1:0H]\n   22 root      0:00 [rcuop/1]\n   23 root      0:00 [rcuos/1]\n   24 root      0:00 [rcuob/1]\n   25 root      0:00 [cpuhp/2]\n   26 root      0:00 [migration/2]\n   27 root      0:00 [ksoftirqd/2]\n   29 root      0:00 [kworker/2:0H]\n   30 root      0:00 [rcuop/2]\n   31 root      0:00 [rcuos/2]\n   32 root      0:00 [rcuob/2]\n   33 root      0:00 [cpuhp/3]\n   34 root      0:00 [migration/3]\n   35 root      0:00 [ksoftirqd/3]\n   36 root      0:00 [kworker/3:0]\n   37 root      0:00 [kworker/3:0H]\n   38 root      0:00 [rcuop/3]\n   39 root      0:00 [rcuos/3]\n   40 root      0:00 [rcuob/3]\n   41 root      0:00 [cpuhp/4]\n   42 root      0:00 [migration/4]\n   43 root      0:00 [ksoftirqd/4]\n   44 root      0:00 [kworker/4:0]\n   45 root      0:00 [kworker/4:0H]\n   46 root      0:00 [rcuop/4]\n   47 root      0:00 [rcuos/4]\n   48 root      0:00 [rcuob/4]\n   49 root      0:00 [cpuhp/5]\n   50 root      0:00 [migration/5]\n   51 root      0:00 [ksoftirqd/5]\n   53 root      0:00 [kworker/5:0H]\n   54 root      0:00 [rcuop/5]\n   55 root      0:00 [rcuos/5]\n   56 root      0:00 [rcuob/5]\n   57 root      0:00 [cpuhp/6]\n   58 root      0:00 [migration/6]\n   59 root      0:00 [ksoftirqd/6]\n   61 root      0:00 [kworker/6:0H]\n   62 root      0:00 [rcuop/6]\n   63 root      0:00 [rcuos/6]\n   64 root      0:00 [rcuob/6]\n   65 root      0:00 [cpuhp/7]\n   66 root      0:00 [migration/7]\n   67 root      0:00 [ksoftirqd/7]\n   69 root      0:00 [kworker/7:0H]\n   70 root      0:00 [rcuop/7]\n   71 root      0:00 [rcuos/7]\n   72 root      0:00 [rcuob/7]\n   73 root      0:00 [kdevtmpfs]\n   74 root      0:00 [netns]\n   76 root      0:00 [kworker/u16:1]\n   77 root      0:00 [kworker/u17:0]\n   78 root      0:00 [ipa_usb_wq]\n   79 root      0:00 [msm_watchdog]\n   80 root      0:00 [spi_wdsp]\n   81 root      0:00 [qmp_aop]\n   82 root      0:00 [oom_reaper]\n   83 root      0:00 [writeback]\n   84 root      0:00 [kcompactd0]\n   85 root      0:00 [crypto]\n   86 root      0:00 [kblockd]\n   87 root      0:00 [blk_crypto_wq]\n   88 root      0:00 [irq/271-arm-smm]\n   89 root      0:00 [irq/280-arm-smm]\n   90 root      0:00 [irq/93-tsens-up]\n   91 root      0:00 [irq/94-tsens-cr]\n   92 root      0:00 [edac-poller]\n   93 root      0:00 [system]\n   94 root      0:00 [ipa_power_mgmt]\n   95 root      0:00 [transport_power]\n   96 root      0:00 [ipa_pm_activate]\n   97 root      0:00 [devfreq_wq]\n   98 root      0:00 [cfg80211]\n   99 root      0:00 [irq/79-qpnp_lcd]\n  136 root      0:00 [kauditd]\n  137 root      0:00 [kswapd0]\n  138 root      0:00 [ecryptfs-kthrea]\n  180 root      0:00 [irq/83-wled_ovp]\n  181 root      0:00 [irq/85-wled_fla]\n  182 root      0:00 [irq/84-wled_pre]\n  183 root      0:00 [irq/284-arm-smm]\n  184 root      0:00 [irq/285-arm-smm]\n  185 root      0:00 [irq/90-smp2p]\n  186 root      0:00 [irq/91-smp2p]\n  187 root      0:00 [irq/92-smp2p]\n  188 root      0:00 [irq/286-arm-smm]\n  190 root      0:00 [cdsprm-wq]\n  191 root      0:00 [cdsprm-wq-delay]\n  192 root      0:00 [mem_share_svc]\n  193 root      0:00 [irq/287-arm-smm]\n  194 root      0:00 [hwrng]\n  196 root      0:00 [diag_real_time_]\n  197 root      0:00 [diag_wq]\n  199 root      0:00 [DIAG_USB_diag]\n  200 root      0:00 [diag_cntl_wq]\n  201 root      0:00 [diag_dci_wq]\n  202 root      0:00 [MODEM_CNTL]\n  203 root      0:00 [MODEM_DATA]\n  204 root      0:00 [MODEM_CMD]\n  205 root      0:00 [MODEM_DCI]\n  206 root      0:00 [MODEM_DCI_CMD]\n  207 root      0:00 [LPASS_CNTL]\n  208 root      0:00 [LPASS_DATA]\n  209 root      0:00 [LPASS_CMD]\n  210 root      0:00 [LPASS_DCI]\n  211 root      0:00 [LPASS_DCI_CMD]\n  212 root      0:00 [WCNSS_CNTL]\n  213 root      0:00 [WCNSS_DATA]\n  214 root      0:00 [WCNSS_CMD]\n  215 root      0:00 [WCNSS_DCI]\n  216 root      0:00 [WCNSS_DCI_CMD]\n  217 root      0:00 [SENSORS_CNTL]\n  218 root      0:00 [SENSORS_DATA]\n  219 root      0:00 [SENSORS_CMD]\n  220 root      0:00 [SENSORS_DCI]\n  221 root      0:00 [SENSORS_DCI_CMD]\n  222 root      0:00 [DIAG_CTRL]\n  223 root      0:00 [DIAG_DATA]\n  224 root      0:00 [DIAG_CMD]\n  225 root      0:00 [DIAG_DCI_DATA]\n  226 root      0:00 [DIAG_DCI_CMD]\n  227 root      0:00 [CDSP_CNTL]\n  228 root      0:00 [CDSP_DATA]\n  229 root      0:00 [CDSP_CMD]\n  230 root      0:00 [CDSP_DCI]\n  231 root      0:00 [CDSP_DCI_CMD]\n  232 root      0:00 [NPU_CNTL]\n  233 root      0:00 [NPU_DATA]\n  234 root      0:00 [NPU_CMD]\n  235 root      0:00 [NPU_DCI]\n  236 root      0:00 [NPU_DCI_CMD]\n  237 root      0:00 [DIAG_RPMSG_APPS]\n  238 root      0:00 [DIAG_RPMSG_APPS]\n  239 root      0:00 [DIAG_RPMSG_DIAG]\n  240 root      0:00 [DIAG_RPMSG_DIAG]\n  241 root      0:00 [DIAG_RPMSG_DIAG]\n  242 root      0:00 [DIAG_RPMSG_DIAG]\n  243 root      0:00 [DIAG_RPMSG_DIAG]\n  244 root      0:00 [DIAG_RPMSG_DIAG]\n  245 root      0:00 [DIAG_RPMSG_DIAG]\n  246 root      0:00 [DIAG_RPMSG_DIAG]\n  247 root      0:00 [kworker/u16:2]\n  248 root      0:00 [kgsl-workqueue]\n  249 root      0:00 [kgsl-mementry]\n  250 root      0:00 [kgsl_worker_thr]\n  251 root      0:00 [kworker/u16:3]\n  252 root      0:00 [irq/272-arm-smm]\n  253 root      0:00 [irq/273-arm-smm]\n  254 root      0:00 [kworker/u16:4]\n  255 root      0:00 [kgsl-events]\n  256 root      0:00 [kworker/u16:5]\n  257 root      0:00 [kworker/u16:6]\n  258 root      0:00 [kgsl_devfreq_wq]\n  259 root      0:00 [kworker/u16:7]\n  260 root      0:00 [qseecom-unreg-l]\n  261 root      0:00 [qseecom-unload-]\n  262 root      0:00 [irq/288-arm-smm]\n  263 root      0:00 [qcrypto_seq_res]\n  264 root      0:00 [irq/289-arm-smm]\n  285 root      0:00 [spi0]\n  286 root      0:00 [bond0]\n  292 root      0:00 [uether]\n  293 root      0:00 [k_ipa_usb]\n  296 root      0:00 [ctp_selftest]\n  297 root      0:00 [irq/188-soc:fpc]\n  298 root      0:00 [irq/282-arm-smm]\n  299 root      0:00 [nvt_wq]\n  300 root      0:00 [nvt_fwu_wq]\n  301 root      0:00 [nvt_esd_check_w]\n  302 root      0:00 [kworker/1:1]\n  303 root      0:00 [kworker/2:1]\n  306 root      0:00 [kworker/5:1]\n  307 root      0:00 [kworker/6:1]\n  308 root      0:00 [kworker/7:1]\n  310 root      0:00 [msm_vidc_worker]\n  311 root      0:00 [pm_workerq_venu]\n  312 root      0:00 [irq/290-arm-smm]\n  313 root      0:00 [irq/291-arm-smm]\n  314 root      0:00 [irq/292-arm-smm]\n  315 root      0:00 [irq/293-arm-smm]\n  316 root      0:00 [cam-cpas]\n  317 root      0:00 [qcom,cam_virtua]\n  318 root      0:00 [irq/294-arm-smm]\n  319 root      0:00 [qcom,cam170-cpa]\n  320 root      0:00 [kworker/u16:8]\n  321 root      0:00 [irq/295-arm-smm]\n  322 root      0:00 [cam_cci_wq]\n  323 root      0:00 [cam_cci_wq]\n  324 root      0:00 [irq/296-arm-smm]\n  325 root      0:00 [irq/297-arm-smm]\n  326 root      0:00 [irq/298-arm-smm]\n  327 root      0:00 [irq/54-qcom,tem]\n  328 root      0:00 [irq/61-qcom,tem]\n  329 root      0:00 [irq/361-limits_]\n  330 root      0:00 [kworker/0:1H]\n  331 root      0:00 [irq/362-limits_]\n  332 root      0:00 [kworker/6:1H]\n  333 root      0:00 [irq/51-bcl-lvl0]\n  334 root      0:00 [irq/52-bcl-lvl1]\n  335 root      0:00 [irq/53-bcl-lvl2]\n  336 root      0:00 [irq/62-bcl-lvl0]\n  337 root      0:00 [irq/63-bcl-lvl1]\n  338 root      0:00 [irq/64-bcl-lvl2]\n  339 root      0:00 [dm_bufio_cache]\n  340 root      0:00 [irq/29-KRYO L3-]\n  341 root      0:00 [mmc_clk_gate/mm]\n  343 root      0:00 [kworker/u16:10]\n  344 root      0:00 [irq/33-7c4000.s]\n  345 root      0:00 [irq/32-mmc0]\n  346 root      0:00 [sdhci_msm_pm_qo]\n  347 root      0:00 [mmc-cmdqd/0]\n  348 root      0:00 [mmcqd/0rpmb]\n  349 root      0:00 [mmc_clk_gate/mm]\n  350 root      0:00 [irq/35-8804000.]\n  351 root      0:00 [irq/34-mmc1]\n  352 root      0:00 [irq/200-8804000]\n  353 root      0:00 [irq/299-arm-smm]\n  354 root      0:00 [uaudio_svc]\n  355 root      0:00 [apr_driver]\n  357 root      0:00 [ipv6_addrconf]\n  367 root      0:00 [irq/386-qg-vbat]\n  368 root      0:00 [irq/387-qg-vbat]\n  369 root      0:00 [irq/388-qg-fifo]\n  370 root      0:00 [irq/389-qg-good]\n  371 root      0:00 [irq/390-chgr-er]\n  373 root      0:00 [irq/391-chg-sta]\n  374 root      0:00 [irq/398-otg-fai]\n  375 root      0:00 [irq/402-high-du]\n  376 root      0:00 [irq/403-input-c]\n  377 root      0:00 [irq/405-switche]\n  378 root      0:00 [irq/406-bat-tem]\n  379 root      0:00 [kworker/0:7]\n  380 root      0:00 [irq/407-bat-ov]\n  381 root      0:00 [irq/408-bat-low]\n  382 root      0:00 [irq/409-bat-the]\n  383 root      0:00 [irq/410-bat-ter]\n  384 root      0:00 [irq/413-usbin-c]\n  385 root      0:00 [irq/414-usbin-v]\n  387 root      0:00 [irq/415-usbin-u]\n  388 root      0:00 [irq/416-usbin-o]\n  389 root      0:00 [irq/417-usbin-p]\n  390 root      0:00 [irq/419-usbin-s]\n  391 root      0:00 [irq/420-usbin-i]\n  392 root      0:00 [irq/422-dcin-uv]\n  394 root      0:00 [irq/423-dcin-ov]\n  395 root      0:00 [irq/424-dcin-pl]\n  396 root      0:00 [irq/426-dcin-po]\n  397 root      0:00 [irq/427-dcin-en]\n  398 root      0:00 [irq/428-typec-o]\n  399 root      0:00 [irq/430-typec-c]\n  401 root      0:00 [irq/431-typec-v]\n  402 root      0:00 [irq/433-typec-a]\n  403 root      0:00 [irq/434-typec-l]\n  404 root      0:00 [irq/436-wdog-sn]\n  405 root      0:00 [irq/437-wdog-ba]\n  406 root      0:00 [irq/439-aicl-do]\n  408 root      0:00 [irq/440-smb-en]\n  409 root      0:00 [irq/442-temp-ch]\n  410 root      0:00 [irq/444-sdam-st]\n  411 root      0:00 [irq/42-thr-int-]\n  413 root      0:00 [irq/66-thr-int-]\n  420 root      0:00 [irq/43-sig-tx]\n  421 root      0:00 [irq/44-sig-rx]\n  422 root      0:00 [irq/252-pwr_eve]\n  423 root      0:00 [irq/251-dp_hs_p]\n  424 root      0:00 [irq/254-dm_hs_p]\n  425 root      0:00 [irq/253-ss_phy_]\n  426 root      0:00 [irq/300-arm-smm]\n  427 root      0:00 [usb_bam_wq]\n  428 root      0:00 [rq_stats]\n  429 root      0:00 [irq/301-arm-smm]\n  430 root      0:00 [irq/302-arm-smm]\n  431 root      0:00 [irq/303-arm-smm]\n  432 root      0:00 [irq/304-arm-smm]\n  433 root      0:00 [irq/305-arm-smm]\n  434 root      0:00 [irq/306-arm-smm]\n  435 root      0:00 [irq/307-arm-smm]\n  436 root      0:00 [irq/308-arm-smm]\n  437 root      0:00 [irq/309-arm-smm]\n  438 root      0:00 [irq/310-arm-smm]\n  439 root      0:00 [irq/311-arm-smm]\n  440 root      0:00 [drm_dp]\n  441 root      0:00 [irq/283-arm-smm]\n  442 root      0:00 [irq/312-arm-smm]\n  443 root      0:00 [sdm_dp_audio_no]\n  444 root      0:00 [hdcp_1x_1]\n  445 root      0:00 [hdcp_tz_lib]\n  446 root      0:00 [dp_hdcp2p2]\n  447 root      0:00 [crtc_commit:107]\n  448 root      0:00 [crtc_event:107]\n  449 root      0:00 [crtc_commit:144]\n  450 root      0:00 [crtc_event:144]\n  451 root      0:00 [crtc_commit:148]\n  452 root      0:00 [crtc_event:148]\n  453 root      0:00 [pp_event]\n  454 root      0:00 [rot_commitq_0_0]\n  455 root      0:00 [rot_commitq_0_1]\n  456 root      0:00 [rot_doneq_0_0]\n  457 root      0:00 [rot_doneq_0_1]\n  458 root      0:00 [rot_fenceq_0_0]\n  459 root      0:00 [rot_fenceq_0_1]\n  460 root      0:00 [rot_fenceq_0_2]\n  461 root      0:00 [rot_fenceq_0_3]\n  462 root      0:00 [rot_fenceq_0_4]\n  463 root      0:00 [rot_fenceq_0_5]\n  464 root      0:00 [rot_fenceq_0_6]\n  465 root      0:00 [rot_fenceq_0_7]\n  466 root      0:00 [rot_fenceq_0_8]\n  467 root      0:00 [rot_fenceq_0_9]\n  468 root      0:00 [rot_fenceq_0_10]\n  469 root      0:00 [rot_fenceq_0_11]\n  470 root      0:00 [rot_fenceq_0_12]\n  471 root      0:00 [rot_fenceq_0_13]\n  472 root      0:00 [rot_fenceq_0_14]\n  473 root      0:00 [rot_fenceq_0_15]\n  474 root      0:00 [sb-3]\n  475 root      0:00 [ngd_rx_thread3]\n  476 root      0:00 [ngd_notify_sl3]\n  477 root      0:00 [irq/82-qpnp_fla]\n  478 root      0:00 [irq/81-qpnp_fla]\n  479 root      0:00 [irq/80-qpnp_fla]\n  488 root      0:00 [kworker/2:2]\n  489 root      0:00 [kworker/3:2]\n  490 root      0:00 [kworker/4:2]\n  491 root      0:00 [kworker/5:2]\n  492 root      0:00 [kworker/6:2]\n  493 root      0:00 [kworker/7:2]\n  510 root      0:00 [kworker/0:0]\n  569 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm6150/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1113.918185,3.7130606166666666,190.61825831732997,42.78471487422584,5.843208275079654,224.452343925\r\n1,576000,2138.781237,3.713161869791667,214.77082847864008,25.106460638318804,9.957596317596309,116.898839643\r\n1,748800,2780.31095,3.713022102029915,230.22959927431933,20.70390331978121,12.075017746104981,89.927200434\r\n1,1017600,3778.604033,3.7132508185927673,252.97091829109883,16.738961503677483,14.935215661083632,66.169509194\r\n1,1209600,4491.47518,3.713190459656085,273.0743400139774,15.20121824297792,16.446050310177313,55.666959562\r\n1,1363200,5061.753391,3.713140691754695,287.69423814007143,14.211026080012253,17.591973907614168,49.396283262\r\n1,1516800,5631.772206,3.7129299881329114,300.17104870598297,13.326244350544277,18.759974185059075,44.395501858\r\n1,1593600,5917.439879,3.7132529361194777,308.8945860555357,13.051941209210161,19.154238897704072,42.253706599\r\n1,1708800,6344.855591,3.713047513459738,335.43931938113377,13.218837028498697,18.912405036919743,39.407535923\r\n6,300000,2337.300511,7.791001703333333,232.5650366712222,24.879423154475937,10.048464486003313,106.978346834\r\n6,652800,5087.505088,7.793359509803922,289.59169113521136,14.235695979588195,17.56148771078433,49.157819148\r\n6,768000,5985.443402,7.7935460963541665,309.1771834565879,12.918929266391045,19.351448935507523,41.784872745\r\n6,979200,7627.765065,7.7897927542892145,358.35003061299227,11.750821138482047,21.275108952283365,32.791461238\r\n6,1017600,7932.730446,7.795529133254717,367.90421212782263,11.600657830450249,21.55050201927186,31.531734207\r\n6,1209600,9422.939203,7.790128309358466,417.75285494086665,11.090486753349264,22.541841991245462,26.547961605\r\n6,1363200,10624.282861,7.793634727846244,494.6150836026237,11.646534359388776,21.46561305582413,23.546662335\r\n6,1516800,11816.978635,7.7907295853111815,568.436003696976,12.036215461170297,20.770648448967876,21.174266554\r\n6,1708800,13321.965256,7.796093899812734,676.3041464597568,12.702706684313654,19.680844894948297,18.782535566\r\n6,1900800,14810.42654,7.791680629208755,820.3715561218788,13.862745668800475,18.03394550926881,16.898130567\r\n6,2016000,15709.43823,7.792380074404762,907.8061484860317,14.461049527012435,17.28781853163658,15.929666869\r\n"
  },
  {
    "path": "results/sm6150/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1361.7503985930234, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1045.7782676250001, 1015.408355375, 985.7682355759999, 960.4237746010001, 1039.735530144, 960.626308893, 982.652750016, 1092.20549594, 981.0228791999999, 1002.015323392, 991.244392164, 1020.166632246, 1040.0377956959999, 935.925154722, 1058.5842811440002, 1050.1064398100002, 970.317702342, 1007.1228695580002, 1007.1228695580002, 1030.323705138, 966.417069861, 976.77058052, 1087.6719845639998, 962.957736009, 970.2706305119999, 1034.3286959999998, 998.3380628320001, 1004.386549907, 949.17067542, 1094.221068652, 1097.734436652, 949.2797899839999, 1051.5390547450002, 1035.5032145149999, 973.94571484, 960.79629775, 961.9784024649999, 1088.832389436, 970.5558319799999, 938.874301176, 1062.257802099, 955.359109068, 1009.5205402319999, 988.9388387349999, 1035.481827936, 1047.59935866, 949.7032048000001, 1104.0680169119998, 1086.458735472, 987.585181312, 1007.3669505, 978.9431497950001, 1025.5194596610002, 962.1650220419999, 942.3249194800001, 1107.2581122880001, 958.188943634, 969.138482493, 1001.3845235519999, 1001.128988221, 1025.5194596610002, 965.793074442, 1110.9264680679998, 1081.96678202, 944.78445076, 1036.878734742, 1022.072627, 1002.355157456, 998.6925571979999, 942.05081324, 1104.075706643, 958.439523933, 960.5017341360001, 1060.168324803, 981.5931902399999, 975.35803185, 970.60275925, 1051.22633268, 1073.153235056, 969.614935437, 1097.575571126, 1049.1359909700002, 954.646198315, 990.451590786, 979.0855494350001, 1037.9842529379998, 950.8555514560001, 952.288144584, 1112.58144876, 934.836092388, 1018.546318734, 1006.239610311, 1020.908037766, 1023.360732476, 964.4747247500001, 1079.3867387159999, 1092.8949765999998, 959.4151128689999, 1028.4997185559998, 1005.0146879160001, 996.316686032, 991.580652258, 951.2704530880001, 1045.06300482, 943.37534716, 948.6051012, 1031.779131838, 976.8772733999999, 1006.037685388, 1020.759756662, 1013.3426555000001, 1106.203207589, 946.182267705, 958.3281353620001, 1050.4119126900002, 978.95090461, 987.8721191999999, 966.92433225, 1040.289597393], \"power_mean\": 1007.4342654627227, \"energy_millijoules\": 5037.171327313614, \"energy_joules\": 5.037171327313613}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 224.452343925, \"elapsed_ns\": 224452343925, \"power_samples\": [181.77449198699992, 195.48610519900012, 187.97518157399986, 184.46285844199997, 190.69553593199998, 184.2455719720001, 197.98869578699987, 191.77994132999993, 179.40502198199988, 202.39189329600003, 194.31677791200013, 191.64638757900002, 186.91469818299993, 189.30789564799989, 180.68269222699973, 196.43536818600023, 189.08965801900013, 184.5169708620001, 193.8238141679999, 191.72513326499984, 189.36252509299993, 201.11351364899997, 188.02947169799995, 187.920611604, 197.87888614400003, 184.1370682019999, 191.5916391840001, 204.94957584600002, 190.53174962800017, 180.628757317, 192.70999203299993, 188.59911361800005, 181.85249265200014, 190.42265224400012, 188.92604983499996, 186.91469818299993, 197.4941289630001, 191.64638757900002, 177.1514344080001, 189.14428746400017, 196.49035467600015, 185.47325988399984, 189.25326620300007, 197.78275289199996, 182.96756423700003, 200.00018187600017, 195.2666788160002, 178.393094712, 198.93770639599984, 197.54917492799973, 187.21260122400008, 194.15245666400006, 188.87170054099988, 180.628757317, 197.76907650099974, 201.38907016799976, 185.47325988399984, 199.66975701200022, 188.81707109600006, 193.93354924799996, 192.81932709600005, 192.38170577699998, 187.94468088200006, 194.15245666400006, 192.54584890499996, 190.25886594000008, 198.6076389399998, 185.31018605999975, 198.82777810799985, 185.52771090400006, 197.4393652849999, 196.49035467600015, 200.11022919800007, 200.61734199300008, 188.2172678049999, 199.78008723200014, 206.17714472399985, 186.64242524899987, 189.14428746400017, 196.10629519200006, 185.36463707999997, 189.05795334799996, 194.88303474200006, 194.09787049600004, 185.36463707999997, 190.25886594000008, 193.11194300800025, 192.8741351609999, 185.31018605999975, 192.70999203299993, 197.54917492799973, 197.16470003400013, 188.08404166800005, 190.49863661099994, 182.91351098699988, 191.4824231550001, 193.93354924799996, 185.36463707999997, 192.54584890499996, 194.09787049600004, 187.64832144599995, 196.65503216399998, 187.81175151000002, 182.8048472370001, 191.372926365, 186.20717991200013, 179.18868589199997, 193.87868170799993, 188.98067928, 187.75718153999992, 198.82777810799985, 184.19118062200005, 196.10629519200006, 199.83496944400008, 196.3256771880001, 185.47325988399984, 186.53368379999984, 184.1689485280001, 185.31018605999975, 191.2092427020002, 190.20417701999986, 198.442605212, 198.66274437999982, 188.98067928, 200.94812309699978, 195.10217944800002, 191.15449430700005, 184.2455719720001, 186.26169040699983, 188.05365962100018, 194.7185353740001, 192.60037590299999, 187.53946135200022, 181.6356813719999, 192.65518396800007, 190.99052988300014, 191.34232001100008, 202.06103946000007, 183.81127796200008, 188.65346291200012, 195.157106463, 191.26371033600003, 181.5814089720002, 200.05534698600013, 197.21946371199988, 199.89013455400027, 203.17343471999993, 185.2015632560001, 184.7667928039998, 192.70999203299993, 181.68995377199985, 182.96756423700003, 187.8660416340001, 194.66360835900014, 192.43651384200007, 196.16099970000005, 179.08065670200017, 196.3256771880001, 201.05828906400006, 191.09974591200012, 182.4253599870001, 188.92604983499996, 181.47314249199985, 197.3843193199998, 185.092940452, 185.2015632560001, 192.8741351609999, 186.7223110320001, 188.81707109600006, 200.78273254499982, 187.70261157000004, 182.8048472370001, 198.84397775000002, 188.59911361800005, 180.41218363200005, 194.043002956, 191.94408445800013, 187.59375147599985, 193.49545304400021, 182.8339072419999, 186.53368379999984, 194.88303474200006, 188.81707109600006, 179.02650325199988, 190.31327440400014, 204.39639809999994, 177.90708290399994, 197.27450967699997, 193.55003921200023, 191.3184587310002, 197.3843193199998, 181.55772173700007, 190.04039071600005, 191.3184587310002, 199.39449725800023, 179.1345324419999, 200.94812309699978, 193.71436046000008, 207.79195987399999, 190.20417701999986, 187.430321412, 189.65840964400013, 197.32955564200006, 200.0110043699999, 182.69646211200006, 192.65518396800007, 191.15449430700005, 189.876604412, 199.61487480000028, 182.37102811199998, 187.9993103270001, 197.21946371199988, 192.43651384200007, 183.81127796200008, 193.60490675200003, 179.97931427699996, 188.87170054099988, 201.0033476819999, 187.37603128800015, 199.72492212200018, 194.9376800800003, 187.37603128800015, 190.44416897700012, 191.04527827800007, 205.45726757999978, 191.15449430700005, 194.9376800800003, 193.49545304400021, 187.430321412, 192.4910408400001, 182.6424088619999, 193.44058550400018, 190.04039071600005, 196.99984442599998, 186.94031106599982, 189.93129333200022, 180.1416750369999, 184.98403841200002, 182.69646211200006, 187.430321412, 200.83795712999995, 195.17321675400012, 187.04917116000001, 197.21946371199988, 187.59375147599985, 178.91847406199986, 188.83947812399992, 198.55281609200006, 178.81044487199983, 205.73429655600012, 185.2015632560001, 188.3808759890003, 192.43651384200007, 191.94408445800013, 174.02165966699977, 193.60490675200003, 189.98598225199999, 191.04527827800007, 204.2304731879999, 177.69126259200016, 186.316200902, 202.06103946000007, 198.332676924, 183.86566931200014, 192.43651384200007, 198.5135528860003, 189.93129333200022, 192.38170577699998, 187.430321412, 187.37603128800015, 199.39449725800023, 197.16470003400013, 184.9298666279999, 189.82219594800017, 193.38571796399992, 195.99632221200022, 189.71281810799996, 184.22312031199976, 183.7027741920001, 206.45853367799987, 197.10965406900004, 181.14806473199997, 193.55003921200023, 193.55003921200023, 185.28217874300003, 192.2723707140001, 196.94479846100012, 178.91847406199986, 200.39701005899997, 186.94031106599982, 181.41914841200014, 194.7185353740001, 194.49910899100018, 192.38170577699998, 188.65346291200012, 185.88067602399997, 186.77688100199998, 200.39701005899997, 191.04527827800007, 188.48985472800018, 189.76750702800018, 189.65840964400013, 186.26169040699983, 191.26371033600003, 194.3895366380002, 199.61487480000028, 193.16681054800006, 189.876604412, 188.326246544, 188.544484173, 185.038489432, 193.49545304400021, 180.08746211200014, 199.119237504, 182.53374511200013, 188.65346291200012, 181.2023371319999, 178.97262751199992, 188.70809235699994, 184.98403841200002, 187.3448775910001, 191.09974591200012, 183.75688661200002, 182.6424088619999, 195.8866312140001, 191.09974591200012, 189.876604412, 188.6756918200001, 186.316200902, 194.66360835900014, 193.38571796399992, 182.47969186199998, 186.88574109600017, 190.99052988300014, 186.9946011899999, 190.99052988300014, 189.54903180400015, 181.31060361200002, 195.72195372600027, 192.23575060000007, 180.03352720199996, 203.22877825499995, 183.75688661200002, 191.88927639299982, 192.217562649, 188.3808759890003, 194.7731807120001, 202.0057554, 183.53987907199985, 186.15294895800002, 198.222748636, 187.83570214300016, 195.66696723600012, 184.9298666279999, 187.1580312540002, 188.48985472800018, 192.16275458400014, 193.22139671600007, 177.5292586559999, 192.2723707140001, 193.22139671600007, 201.5090493839998, 200.672566578, 193.62196681299997, 191.04527827800007, 194.66360835900014, 193.16681054800006, 187.59375147599985, 185.8264450700001, 196.88975249600003, 195.1182302640002, 187.53946135200022, 187.21260122400008, 187.59375147599985, 193.3311317959999, 188.6756918200001, 186.20717991200013, 195.94161770400024, 192.05341952100002, 198.38778236400003, 185.038489432, 190.88131385400015, 187.45385633, 188.48985472800018, 186.26169040699983, 193.49545304400021, 193.49545304400021, 188.3808759890003, 197.05460810399995, 187.04917116000001, 179.70880568199982, 202.7868814139997, 193.55003921200023, 177.58335243600004, 193.51239446000022, 192.1082275860001, 181.2023371319999, 197.3843193199998, 192.16275458400014, 182.4253599870001, 200.28656088899993, 194.279964285, 190.99052988300014, 199.2844499360001, 189.71281810799996, 189.76750702800018, 197.34275714799992, 195.44758524000008, 183.64838284200005, 194.17011025500005, 187.32146131800005, 181.14806473199997, 185.98969701399983, 188.457497052, 187.1580312540002, 196.99984442599998, 193.11194300800025, 172.74460281200027, 194.3895366380002, 197.10965406900004, 178.86432061200003, 195.72195372600027, 194.60868134399993, 184.7667928039998, 189.76750702800018, 198.84397775000002, 176.41402731199992, 199.5597096900001, 187.21260122400008, 181.14806473199997, 198.332676924, 187.1034612840001, 186.04392796799993, 193.3311317959999, 196.77994285299997, 186.15294895800002, 195.94161770400024, 197.1226179800001, 188.48985472800018, 191.72513326499984, 189.4946233400001, 198.27757148399974, 190.93578148799998, 184.49509617600006, 202.73153787900014, 192.2723707140001, 194.06053790200008, 190.93578148799998, 198.11253775600017, 189.56959846200016, 188.3808759890003, 178.59410878199992, 189.38552595600004, 188.3808759890003, 187.32146131800005, 194.06053790200008, 192.12629689200003, 183.593991492, 188.4355054340001, 192.2723707140001, 189.82219594800017, 177.42134850000002, 198.16764319599997, 194.49910899100018, 197.6725420119999, 189.93129333200022, 189.82219594800017, 178.53995533199986, 196.230612351, 192.217562649, 181.14806473199997, 191.88927639299982, 189.60372072400014, 194.22503727000003, 193.38571796399992, 187.32146131800005, 182.4253599870001, 200.56211740799972, 196.99984442599998, 178.70213797199995, 196.1755663859999, 185.88067602399997, 183.593991492, 197.21946371199988, 188.3808759890003, 176.41402731199992, 196.88975249600003, 195.6809995619999, 189.65840964400013, 193.3311317959999, 184.71234178400005, 184.8754156079999, 200.5071760259998, 182.26264298700016, 191.83474939500002, 188.48985472800018, 183.48548772200002, 187.1580312540002, 183.322592602, 179.16751047699995, 190.93578148799998, 196.72517917499977, 193.11194300800025, 195.33789424200017, 194.49910899100018, 195.50257173, 184.65789076400006, 192.05341952100002, 195.5572762380002, 180.9855258519999, 196.39546795899992, 190.95922569000004, 195.50257173, 198.16764319599997, 190.49863661099994, 185.98969701399983, 196.88975249600003, 192.89303559200016, 195.72195372600027, 205.06988209199994, 188.326246544, 179.65459275700005, 182.099925987, 192.01656181199996, 195.77694021599996, 194.7185353740001, 199.06407239400028, 198.16764319599997, 205.06988209199994, 176.09037567999985, 178.89700188200004, 190.60813340100003, 178.43192614200007, 193.16681054800006, 192.16275458400014, 190.22545615800004, 187.04917116000001, 181.03979825200008, 183.43109637199996, 183.7027741920001, 196.88975249600003, 193.05735684000024, 198.56871799600026, 192.05341952100002, 192.16275458400014, 199.39449725800023, 188.4355054340001, 185.93518651900013, 188.544484173, 201.28848015999984, 193.11194300800025, 195.61226272800013, 183.43109637199996, 188.326246544, 199.955779785, 196.99984442599998, 184.82096458799992, 184.82096458799992, 200.231619507, 193.38571796399992, 188.108289066, 190.55338500599987, 178.53995533199986, 196.77994285299997, 190.99052988300014, 176.09037567999985, 189.6243468570001, 196.61508724500004, 178.59410878199992, 191.77994132999993, 191.99861145600016, 181.09407065200003, 191.88927639299982, 187.72644325300007, 185.5544516770001, 191.88927639299982, 195.33789424200017, 187.21260122400008, 192.18088306000004, 183.43109637199996, 199.39449725800023, 198.05771490799998, 189.38552595600004, 181.93720898700008, 189.65840964400013, 207.959442867, 182.26264298700016, 188.326246544, 187.04917116000001, 194.3895366380002, 195.61226272800013, 191.5609901370001, 178.43192614200007, 188.27189724999994, 189.221739652, 189.38552595600004, 185.8264450700001, 180.11883737199992, 189.54903180400015, 196.88975249600003, 197.78275289199996, 189.4946233400001, 191.88927639299982, 185.71770362099983, 197.78275289199996, 196.67013320999968, 184.0600464879999, 194.3895366380002, 188.3808759890003, 195.00853926600007, 182.15425786200012, 193.05735684000024, 185.77193457499993, 208.73699164200002, 196.67013320999968, 191.67060626700004, 188.56659443600006, 188.4355054340001, 183.37698395200005, 190.93578148799998, 190.66260103500008, 187.18126940699995, 208.84798851300002, 178.37805040199987, 180.76899289199991, 202.89728467099985, 194.49910899100018, 184.44064515599985, 193.95096554899987, 190.49863661099994, 188.05365962100018, 213.51900697199994, 182.26264298700016, 191.99861145600016, 199.119237504, 190.55338500599987, 186.83117112600007, 195.39259875000016, 189.27614811600006, 189.38552595600004, 190.41226930800008, 187.1034612840001, 182.15425786200012, 196.67013320999968, 193.16681054800006, 196.88975249600003, 188.2172678049999, 204.405467628, 190.66260103500008, 188.05365962100018, 194.3895366380002, 188.05365962100018, 197.23254626799985, 193.00248929999998, 179.762740592, 190.66260103500008, 195.33789424200017, 188.27189724999994, 198.11253775600017, 190.57641243600028, 180.93153177199997, 208.57035366599985, 187.1034612840001, 187.1034612840001, 178.4860795919999, 185.49994118199993, 186.88574109600017, 187.1034612840001, 184.3320223520002, 181.99154086199997, 196.1755663859999, 184.84693340600006, 191.94408445800013, 178.53995533199986, 189.11236181200002, 190.71734943, 198.05771490799998, 191.50646313900006, 193.05735684000024, 197.34275714799992, 189.38552595600004, 184.60371897999994, 188.326246544, 191.3968470090001, 201.5090493839998, 194.49910899100018, 196.34042199399983, 198.11253775600017, 190.38942058199996, 189.27614811600006, 194.51450680200014, 188.326246544, 185.60868263099997, 194.22503727000003, 195.50257173, 190.57641243600028, 193.16681054800006, 192.94762176000017, 184.38619413599986, 188.05365962100018, 186.77688100199998, 194.17011025500005, 188.83947812399992, 197.89268117999995, 185.6631931259999, 181.09407065200003, 188.05365962100018, 186.83117112600007, 188.16291851100004, 194.7888752880001, 188.16291851100004, 190.44416897700012, 196.61508724500004, 179.49223199699986, 188.40280813200025, 193.16681054800006, 193.67689382799995, 198.8988599620002, 194.11546491700005, 180.93153177199997, 192.94762176000017, 186.77688100199998, 181.93720898700008, 189.221739652, 185.77193457499993, 193.84111151900015, 192.12629689200003, 187.94468088200006, 185.5544516770001, 183.05119371199999, 196.45023163699966, 191.61579820199995, 192.94762176000017, 182.9188089559998, 197.4526854359999, 179.60065784699987, 195.44758524000008, 186.94031106599982, 188.7850696600001, 200.12117033699974, 186.9946011899999, 184.0600464879999, 190.22545615800004, 197.61771916399994, 193.00248929999998, 197.01268969199987, 186.77688100199998, 190.44416897700012, 192.89303559200016, 191.77994132999993, 198.5135528860003, 191.50646313900006, 192.94762176000017, 191.72513326499984, 178.37805040199987, 188.108289066, 190.28020455299998, 187.9993103270001, 197.94778662, 192.94762176000017, 183.05119371199999, 190.49863661099994, 192.94762176000017, 185.71770362099983, 203.788101462, 189.27614811600006, 183.26848018200008, 190.66260103500008, 193.00248929999998, 183.190505584, 191.83474939500002, 190.38942058199996, 189.38552595600004, 202.34498457299992, 188.05365962100018, 193.11194300800025, 198.85355370899993, 181.82882386200004, 189.38552595600004, 190.71734943, 194.89884826800017, 183.67972705600005, 202.17923778099998, 189.27614811600006, 186.9946011899999, 196.50527760199975, 192.83816805200013, 191.5609901370001, 186.9086824840001, 201.28848015999984, 178.21586776200002, 185.49994118199993, 187.9993103270001, 191.83474939500002, 190.33467218700025, 189.11236181200002, 181.93720898700008, 190.33467218700025, 195.00853926600007, 183.15969748199996, 194.56949329200006, 196.34042199399983, 187.9993103270001, 209.95936149199997, 191.5609901370001, 176.93533669199996, 192.89303559200016, 192.67384680400005, 186.83117112600007, 188.108289066, 198.95402507200015, 189.33083703600005, 197.72764745199993, 180.33564865199992, 189.27614811600006, 191.67060626700004, 191.287511946, 179.49223199699986, 186.77688100199998, 192.23575060000007, 184.27757133199998, 190.44416897700012, 185.173437294, 183.10558506200005, 193.40254043000027, 198.7336475300001, 188.05365962100018, 189.221739652, 201.122911488, 189.221739652, 189.33083703600005, 188.18461336399992, 192.94762176000017, 197.78275289199996, 189.11236181200002, 187.83570214300016, 191.5609901370001, 200.84705820399995, 190.60813340100003, 183.10558506200005, 185.5544516770001, 185.445430687, 193.05735684000024, 186.63609556100027, 201.28848015999984, 195.39259875000016, 194.7888752880001, 193.05735684000024, 194.17011025500005, 184.38619413599986, 207.01524222400008, 192.94762176000017, 183.15969748199996, 192.50952555599997, 191.5609901370001, 192.071429352, 191.77994132999993, 184.44064515599985, 180.5521816119999, 198.84397775000002, 192.72871434400008, 192.72871434400008, 194.404815804, 184.3320223520002, 189.27614811600006, 191.5609901370001, 178.1075608619999, 184.22312031199976, 193.95096554899987, 192.67384680400005, 180.49818753199997, 183.10558506200005, 179.22172340199995, 177.9995316720001, 196.79255052400003, 200.0110043699999, 191.287511946, 186.61345093799991, 193.67689382799995, 189.00326442799997, 185.5544516770001, 196.28537602899974, 191.72513326499984, 209.3477976879999, 191.5609901370001, 185.173437294, 188.83947812399992, 197.5626137239999], \"power_mean\": 190.61825831732997, \"energy_millijoules\": 42784.71487422584, \"energy_joules\": 42.78471487422584, \"coremark_score\": 1113.918185, \"coremarks_per_mhz\": 3.7130606166666666, \"ulpmark_cm_score\": 5.843208275079654}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [997.4822954099999, 953.280246467, 957.214601538, 962.1002483999999, 950.210227856, 1022.738575361, 977.05502356, 985.2129903209999, 1091.3974594439999, 956.128692751, 1062.2963876000001, 1057.462341057, 1006.288467366, 1094.9105493119998, 1019.730889005, 1115.98415712, 1018.1101006079999, 1090.596139766, 1052.762114056], \"power_mean\": 1019.5242898419999, \"energy_millijoules\": 5097.62144921, \"energy_joules\": 5.09762144921}}, \"576000\": {\"active\": {\"elapsed_sec\": 116.898839643, \"elapsed_ns\": 116898839643, \"power_samples\": [213.57459961199993, 203.456535756, 201.1779120399999, 213.74195065200024, 215.2926802620002, 208.51471256100012, 227.85505689800016, 210.95897707100016, 207.57020342200008, 215.6280948220001, 214.2946093720002, 218.29577759199992, 218.29577759199992, 220.07065610799987, 209.62572929999988, 222.4010748789999, 213.18430489200023, 205.06988209199994, 209.79254539599992, 213.12842569200006, 220.46344465000016, 214.62938082699998, 217.7357577119999, 209.40349826800002, 215.73980395199987, 203.34572973599984, 214.40619985700005, 209.68142988, 220.2950243060002, 210.68074869400016, 215.01326385200014, 216.57027661200004, 210.90350296500014, 211.96240992699995, 204.73767485999974, 213.29577673199992, 220.57591714000023, 214.90155472200013, 208.34835992399985, 221.62927311600015, 229.90244281200012, 216.01922036199994, 212.01822965199995, 204.73767485999974, 214.5177903419999, 214.62938082699998, 199.84561381799995, 216.84998978700014, 212.07376312199995, 220.2950243060002, 218.29577759199992, 220.63186499400013, 206.07044805099986, 226.57662811799992, 220.8002853380001, 207.23728370999993, 220.68810123900016, 216.9060474119999, 208.45935679500008, 213.24018409199994, 212.07376312199995, 206.015210625, 211.79523700699997, 218.07188475199996, 212.12958284699994, 226.5203842200001, 207.12640548399986, 208.45935679500008, 210.79226880400006, 211.85105673199996, 208.45935679500008, 224.07282575599993, 218.9051247120001, 213.18430489200023, 214.2386706970001, 203.456535756, 212.18511631699994, 214.35026118199994, 216.9060474119999, 206.5161476899998, 222.96347082500006, 224.07282575599993, 218.07188475199996, 211.79523700699997, 207.07082385399985, 211.79523700699997, 215.40438939199998, 209.57031436400007, 204.35028937199968, 211.73941728199998, 210.56951453299985, 210.73650874900022, 208.01508397199996, 214.46213853199993, 214.62938082699998, 222.51349626799993, 218.01576765200002, 199.57005729899993, 216.79393216200015, 217.7357577119999, 208.23707771399995, 218.01576765200002, 215.34867841200003, 215.73980395199987, 219.8459995190001, 215.51638569200009, 208.2927188189999, 217.62381129200003, 216.62604676200021, 216.84998978700014, 225.1294744920001, 211.79523700699997, 202.01349098900005, 213.90361237699994, 217.56769419199986, 202.12389424599996, 221.57297739599994, 211.62806408699998, 216.57027661200004, 214.35026118199994, 223.84745638200002, 210.12429193999992, 226.01244963599993, 213.12842569200006, 217.9038212319997, 219.18572047599991, 215.12497298199992, 210.62527458800014, 215.84267738699987, 214.127080212, 216.79393216200015, 222.28836448899983, 216.79393216200015, 218.12800185199967, 213.12842569200006, 209.79030350800008, 219.18572047599991, 215.51638569200009, 217.455747772, 221.8538786040001, 215.23668211200015, 211.79523700699997, 220.46344465000016, 208.2927188189999, 210.68074869400016, 214.2946093720002, 212.96107465199998, 220.01441986299983, 210.79226880400006, 212.84960281200006, 204.35028937199968, 216.7381620120002, 210.51375447800024, 205.84892888900004, 220.35126055100022, 219.07336693600018, 222.73833904599996, 216.79393216200015, 216.79393216200015, 208.01508397199996, 221.57297739599994, 214.07114153700013, 214.1827320220002, 216.29056343699995, 211.68388381199998, 214.1827320220002, 210.73650874900022, 215.40438939199998, 224.01641108599983, 215.23668211200015, 213.7920218920001, 203.34572973599984, 215.51638569200009, 222.73833904599996, 211.73941728199998, 216.96181756200008, 214.2386706970001, 209.7345434529998, 222.62591765699995, 214.127080212, 208.07043973800023, 220.2950243060002, 210.56951453299985, 211.79523700699997, 224.17114838400016, 205.7381693079999, 222.4010748789999, 221.46067465200008, 222.73833904599996, 205.5163654170001, 221.5166816760002, 205.90445104399987, 206.848782368, 211.572244362, 205.5163654170001, 205.3500836809999, 221.17977344400015, 219.95847200899993, 212.96107465199998, 221.46067465200008, 219.8459995190001, 215.23668211200015, 223.73491634799984, 212.96107465199998, 213.68043140700001, 217.67964061199973, 223.84745638200002, 218.01576765200002, 211.572244362, 220.07065610799987, 216.62604676200021, 222.28836448899983, 218.73717057399995, 212.51490073200011, 216.57027661200004, 215.12497298199992, 205.57188757199992, 217.455747772, 215.01326385200014, 214.45414386200014, 225.89967192299991, 205.4608432619998, 204.35028937199968, 221.34808321200012, 223.6223763139999, 221.46067465200008, 217.06350363199977, 210.01305777900006, 217.51186487199993, 222.1759430999998, 199.40466674699996, 204.29482669200002, 217.62381129200003, 209.40084097000022, 214.07114153700013, 209.292097108, 216.34633358700012, 217.62381129200003, 230.7841651829999, 202.95876101999988, 214.17472745200007, 219.01747825200005, 207.90380176200006, 223.56596164400003, 209.12528101199996, 208.9030499800001, 223.67850167799975, 221.292076188, 206.5161476899998, 211.68388381199998, 216.29056343699995, 213.95955105200005, 218.84923602800018, 211.73941728199998, 206.6270259160001, 223.9038710519999, 211.62806408699998, 209.12528101199996, 215.34867841200003, 215.34867841200003, 211.73941728199998, 222.5695624619998, 223.79104171199992, 208.01508397199996, 220.2950243060002, 214.07114153700013, 213.95955105200005, 209.18098159200008, 211.12654532700003, 211.79523700699997, 218.9051247120001, 218.96130148199995, 205.4608432619998, 217.79187481199983, 215.23668211200015, 217.06350363199977, 211.62806408699998, 221.0671820040002, 200.73649008400002, 219.95847200899993, 220.01441986299983, 203.06928292199996, 209.40084097000022, 211.62806408699998, 215.12497298199992, 219.90223576400012, 220.78628079600026, 206.68232251199993, 220.01441986299983, 223.84745638200002, 207.90380176200006, 217.56769419199986, 212.905482012, 221.95081132099972, 215.06926200199996, 211.29371824700002, 210.3467602620001, 216.4023912120001, 218.68099380400008, 210.29128615600007, 217.62381129200003, 217.67964061199973, 217.28768425199974, 224.7347333360001, 219.01747825200005, 204.01808213999993, 223.73491634799984, 216.12267803700001, 204.2393640119999, 218.79305925800008, 214.127080212, 213.7920218920001, 215.34867841200003, 222.28836448899983, 207.90380176200006, 218.84923602800018, 218.51275157999999, 211.79523700699997, 215.01326385200014, 206.5161476899998, 219.90223576400012, 220.18284020700003, 221.17977344400015, 212.7381309719999, 222.5695624619998, 213.6244927319999, 214.1827320220002, 219.73381541999993, 218.84923602800018, 217.17573783199987, 211.516710892, 213.68043140700001, 210.458280372, 212.7381309719999, 217.2315671519998, 217.79187481199983, 224.45294086000013, 210.18005199499999, 211.29371824700002, 223.67850167799975, 213.95955105200005, 217.62381129200003, 215.1809711320002, 218.51275157999999, 221.4043789320001, 228.1155980200001, 212.626659132, 216.45816136200006, 223.73491634799984, 215.01326385200014, 221.17977344400015, 212.7937236119999, 218.624817034, 221.17977344400015, 215.06926200199996, 205.12856451899984, 217.7357577119999, 211.349537972, 216.29056343699995, 211.572244362, 216.51421898700005, 212.68225177199997, 216.29056343699995, 207.737449125, 213.90361237699994, 215.1809711320002, 219.8459995190001, 211.349537972, 214.78955842200003, 211.405357697, 215.1809711320002, 222.1759430999998, 215.01326385200014, 210.235526101, 217.7357577119999, 219.621631321, 212.68225177199997, 216.12267803700001, 207.737449125, 211.46089116699977, 222.34471968399998, 217.3438013519999, 216.12267803700001, 217.67964061199973, 229.506329628, 216.4023912120001, 212.34754969200003, 217.455747772, 215.01326385200014, 218.68099380400008, 211.46089116699977, 208.9030499800001, 206.68232251199993, 221.89474512699985, 201.73734093999997, 226.01244963599993, 212.51490073200011, 212.45930809200013, 223.50954697399993, 211.516710892, 208.95875056, 219.95847200899993, 223.17163756599984, 208.9030499800001, 218.73717057399995, 216.06662041200002, 205.12856451899984, 227.23369159599997, 210.12429193999992, 212.29195705200004, 223.28446690600003, 224.3964665200001, 202.57150818600007, 218.73717057399995, 209.90153766900016, 214.90155472200013, 213.84796056699997, 206.90425924500005, 220.67397805200017, 212.57077993200005, 216.06662041200002, 217.455747772, 221.01117498000008, 214.67784929200025, 215.50719406200005, 219.73381541999993, 212.34754969200003, 209.79030350800008, 211.405357697, 217.39963067200006, 216.29056343699995, 212.73119512199992, 220.84257651600024, 211.349537972, 212.29195705200004, 211.18236505200002, 212.2360778520001, 213.90361237699994, 217.51186487199993, 211.29371824700002, 216.12267803700001, 206.12764634799987, 210.12429193999992, 214.9572657020001, 217.3438013519999, 222.34471968399998, 211.349537972, 204.01808213999993, 210.01305777900006, 218.68099380400008, 228.22861302299998, 210.12429193999992, 220.78628079600026, 211.12654532700003, 218.624817034, 216.17844818699996, 206.34968783399995, 210.235526101, 205.3500836809999, 212.18019865199994, 219.79005166499996, 217.56769419199986, 205.12856451899984, 215.06926200199996], \"power_mean\": 214.77082847864008, \"energy_millijoules\": 25106.460638318804, \"energy_joules\": 25.106460638318804, \"coremark_score\": 2138.781237, \"coremarks_per_mhz\": 3.713161869791667, \"ulpmark_cm_score\": 9.957596317596309}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [991.3883272850001, 963.5931816980001, 979.4547679799999, 1095.869432406, 1019.7217889340001, 1036.9002945119998, 1034.178276288, 986.676708444, 937.4637692000001, 997.467872093, 952.1957858699999, 979.4074048199999, 1044.09326846, 970.8384926519999, 1027.154217846, 1036.577441016, 994.030615998, 1065.005015319, 992.516913872], \"power_mean\": 1005.5017670891052, \"energy_millijoules\": 5027.508835445526, \"energy_joules\": 5.027508835445525}}, \"748800\": {\"active\": {\"elapsed_sec\": 89.927200434, \"elapsed_ns\": 89927200434, \"power_samples\": [232.17949489299986, 234.56514742800005, 223.45342160999985, 223.45342160999985, 230.7841651829999, 221.12347772400017, 225.56104886699995, 232.17949489299986, 242.6024260920001, 230.7841651829999, 224.622074268, 225.95591582099996, 225.67382657999997, 235.67266212599998, 229.6194632759998, 238.99749172199995, 233.343905468, 228.22861302299998, 227.3465879539997, 235.7863893880001, 224.7347333360001, 228.71381242799998, 224.5655999280002, 230.7841651829999, 238.76903127600008, 237.17854654000007, 222.1195879049999, 228.1155980200001, 217.28768425199974, 233.11663377600007, 220.89858354000012, 227.00760865799998, 235.55864250600007, 227.94593025200015, 227.29028488599988, 228.28526578800006, 225.67382657999997, 225.67382657999997, 230.6141411750002, 223.50954697399993, 233.23041549599998, 230.50059774500005, 237.48766426800012, 230.8974174760001, 241.5533467480002, 224.5655999280002, 229.22335009199992, 230.67062175299998, 231.72542669899985, 236.77964687100007, 235.61565231600002, 235.50192505400014, 233.11663377600007, 224.7912076760001, 219.73381541999993, 234.16707918899988, 239.16876373800005, 223.34059227000012, 243.82313369200028, 225.84313810799972, 231.83908946899987, 227.12079523800003, 222.1759430999998, 214.84555657199985, 233.0600346640001, 224.28380745200002, 220.84257651600024, 225.78660429299975, 225.67382657999997, 224.622074268, 228.1155980200001, 222.00716651599987, 218.00802490799992, 241.61065412800008, 236.551955057, 222.0635217109998, 223.28446690600003, 220.84257651600024, 224.622074268, 232.8896538319998, 228.1155980200001, 228.99679196400007, 233.0600346640001, 237.658464612, 230.6141411750002, 224.622074268, 224.34028179200004, 220.78628079600026, 240.44666325900016, 240.10376298699998, 223.05909753200012, 231.83908946899987, 230.27409315900013, 225.56104886699995, 230.6141411750002, 230.55736946000002, 232.8896538319998, 242.37354705000007, 236.72287024899993, 227.94593025200015, 225.504515052, 229.1666378519999, 230.3873454520001, 228.0589452549998, 231.55522398699986, 222.0635217109998, 238.71213611999997, 234.11042090699993, 228.0589452549998, 232.94625294399998, 230.44411716700006, 222.00716651599987, 232.83276297199995, 235.16045091, 218.2324439019999, 245.98141404700004, 227.38056471000004, 226.72522265199996, 234.16707918899988, 235.0467236479999, 234.11042090699993, 230.67062175299998, 232.492001308, 228.17225078499996, 236.09627876600007, 224.28380745200002, 226.72522265199996, 229.1666378519999, 227.88927748699984, 232.94625294399998, 235.44491524399996, 237.3734067480002, 233.0600346640001, 243.59401735999995, 228.1155980200001, 240.3324610279999, 224.45294086000013, 226.329940288, 235.27417817200012, 237.6016288200001, 231.21511000600003, 235.55864250600007, 228.88365831600004, 228.00258301699978, 227.06420194799966, 239.05438687800006, 235.33118798200007, 229.22335009199992, 234.16707918899988, 228.71381242799998, 231.89562941099985, 237.43053550800028, 231.612055372, 225.44798123700002, 235.21716836200017, 226.8947122999998, 234.05347057199992, 235.27417817200012, 236.03920948100017, 226.78181594199987, 224.7710250419998, 243.53659103000018, 230.16084086599994, 235.387905434, 216.89544011199996, 227.77626248399997, 227.71990024599995, 238.88311486199996, 231.83908946899987, 232.71927299999993, 228.0589452549998, 246.15375536700003, 224.17114838400016, 231.612055372, 222.77760279400013, 226.72522265199996, 223.00268286200003, 231.89562941099985, 216.9515572119999, 220.67397805200017, 235.0467236479999, 232.83276297199995, 225.56104886699995, 229.99081685800002, 233.93986195499997, 229.27977149999992, 226.612326294, 225.56104886699995, 224.34028179200004, 239.93260643000008, 230.36409644599985, 224.5655999280002, 231.66888675699988, 224.34028179200004, 225.61729276499977, 240.2182587970001, 219.396974732, 220.6176823320002, 236.4948857720001, 231.44185266, 225.67382657999997, 229.10992561199987, 227.83291524900005, 226.72522265199996, 233.14401752999993, 231.44185266, 234.76196695600015, 227.71990024599995, 238.71213611999997, 243.76570736200006, 229.10992561199987, 227.77626248399997, 228.0589452549998, 240.9814484840001, 235.16045091, 231.27164994799978, 232.492001308, 231.44185266, 228.60067877999973, 231.4986840449999, 237.54450006000002, 219.396974732, 238.5408641040001, 234.932704028, 213.2334957370001, 224.45294086000013, 231.21511000600003, 232.94625294399998, 241.324411112, 235.0467236479999, 220.67397805200017, 239.646660484, 229.0535042040001, 224.17114838400016, 234.11042090699993, 232.6057830279999, 236.4948857720001, 231.3853127179998, 220.39307684400023, 218.12009036200016, 239.76115629399987, 232.6623821400001, 229.10992561199987, 244.933166412, 234.98971383800017, 229.10992561199987, 233.99652023700014, 216.61543017200006, 226.1604506399999, 237.20231343600017, 231.612055372, 227.88927748699984, 232.94625294399998, 220.28048540400005, 232.6623821400001, 230.3873454520001, 227.43692694800006, 235.21716836200017, 239.646660484, 227.77626248399997, 235.21716836200017, 225.33520352399978, 230.27409315900013, 232.71927299999993, 228.99679196400007, 231.101447236, 231.612055372, 236.15305538799998, 227.71990024599995, 235.5264639049999, 230.3305737369999, 226.8381190099999, 232.6623821400001, 225.27895962599973, 233.712352668, 231.612055372, 231.3853127179998, 226.329940288, 236.267193958, 226.49942993599984, 224.22733311200022, 232.6623821400001, 228.99679196400007, 234.81897676599988, 232.94625294399998, 228.770524668, 224.17114838400016, 236.2101246730001, 233.82625333800001, 219.45321097700003, 231.3853127179998, 225.44798123700002, 240.63819197199996, 234.11042090699993, 233.88291161999996, 225.39173733899997, 239.98956075600017, 232.77587211200012, 220.44908386800012, 243.59401735999995, 227.83291524900005, 224.22733311200022, 231.44185266, 227.71990024599995, 218.00802490799992, 241.09576936000008, 234.932704028, 221.7259685429999, 233.88291161999996, 232.77587211200012, 216.89544011199996, 225.39173733899997, 219.396974732, 215.3950788120003, 234.87598657600006, 233.65569438599982, 226.55573300399988, 226.44283664599993, 231.4986840449999, 221.83838993199993, 235.33118798200007, 227.77626248399997, 233.42818509900007, 241.15307673999996, 237.31657095600008, 225.33520352399978, 231.44185266, 221.78203473699978, 221.78203473699978, 229.93404514300005, 226.38624335600002, 237.259442196, 227.77626248399997, 236.15305538799998, 231.3853127179998, 227.60659471600002, 219.6623872680002, 230.16084086599994, 238.19832007200012, 238.71213611999997, 231.21511000600003, 223.00268286200003, 236.2101246730001, 221.6135471539999, 228.99679196400007, 238.48367567399987, 231.612055372, 240.63819197199996, 226.55573300399988, 230.16084086599994, 227.49357971299992, 229.87727342800008, 237.658464612, 233.93986195499997, 227.38056471000004, 221.83838993199993, 238.4264872440001], \"power_mean\": 230.22959927431933, \"energy_millijoules\": 20703.903319781213, \"energy_joules\": 20.70390331978121, \"coremark_score\": 2780.31095, \"coremarks_per_mhz\": 3.713022102029915, \"ulpmark_cm_score\": 12.075017746104981}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [999.432394522, 940.1651156300002, 999.443505072, 1044.91080274, 1011.730488675, 1044.70804038, 1016.581712544, 963.960514357, 953.4106632180001, 992.248142604, 930.346580709, 1000.7145413190001, 1040.065997278, 1019.1781761880001, 957.650079657, 1098.427957632, 966.549433119, 962.55814421, 997.0950414839999], \"power_mean\": 996.7988069125263, \"energy_millijoules\": 4983.994034562631, \"energy_joules\": 4.983994034562631}}, \"1017600\": {\"active\": {\"elapsed_sec\": 66.169509194, \"elapsed_ns\": 66169509194, \"power_samples\": [249.70037045200002, 255.748702074, 246.85678600200026, 239.81811061999997, 256.85324887, 259.06533231000003, 246.97170049200008, 263.0167899159999, 246.97170049200008, 245.92386857199995, 273.8315140440002, 241.80076106700017, 243.19262203800008, 249.46977087200003, 255.4591898159997, 248.30720258199995, 254.6483769659999, 250.57473316200003, 248.30720258199995, 250.69000358699986, 249.2391712919998, 250.51694978700016, 250.69000358699986, 258.07354106, 242.02993429799994, 248.07684059699977, 251.68316151599993, 250.86305738700003, 255.4591898159997, 260.1109069769998, 257.72529485200016, 250.632220212, 247.08691039200016, 248.13450502199998, 254.29674049999994, 246.68426656199995, 250.74778696199996, 255.57493520999992, 262.55065992699997, 257.3189082240001, 243.36460653400013, 250.74778696199996, 255.57493520999992, 251.74100456099995, 257.72529485200016, 249.52749477199995, 256.795167925, 247.96180746200002, 255.57493520999992, 254.4703292439999, 250.57473316200003, 251.85639401999993, 256.67930388599984, 248.07684059699977, 247.02930544200012, 253.07656726000005, 249.2391712919998, 254.29674049999994, 260.05294617899995, 251.79884760599998, 249.41204697199987, 255.40116834600008, 259.93642704900003, 251.68316151599993, 255.51691374000006, 257.72529485200016, 251.74100456099995, 255.40116834600008, 255.4591898159997, 249.41204697199987, 262.6090384419999, 249.3546190919999, 257.841277536, 251.62561510199998, 245.52193556199995, 257.899417956, 258.1313833239999, 235.868294289, 257.66715443199996, 253.0189616759999, 244.47416281200003, 257.78313711600003, 254.06548700199983, 239.41825602200015, 256.795167925, 258.8910305019999, 247.9041430369998, 261.03978639599995, 249.2391712919998, 246.79918105200022, 252.78764853199982, 250.51694978700016, 236.91725557199993, 254.18111375099988, 252.61423790799995, 251.51022564299979, 256.1574689339998, 248.07684059699977, 245.57918593199997, 256.44727795699987, 258.83312887399984, 251.62561510199998, 253.07656726000005, 253.89189825800008, 259.06533231000003, 254.93788922399995, 254.6483769659999, 252.90315663599972, 260.2271273399999, 249.008867732, 254.06548700199983, 256.62122294100004, 263.5373838060002, 244.41667681199988, 254.0075250069999, 249.06659163199993, 248.19187373199998, 260.2271273399999, 259.0071322199999, 237.03122012400013, 246.85678600200026, 257.43518906400004, 247.9041430369998, 261.3307834519999, 256.5053589019999, 249.18174341200006, 256.563141996, 246.741871512, 238.255215228, 247.098319662, 252.49872980399982, 255.227401482, 263.5373838060002, 257.60931216799986, 246.741871512, 260.1691665420001, 255.40116834600008, 241.68632154600004, 250.343895987, 260.98146735599994, 251.51022564299979, 256.33141391799995, 247.84677432699982, 247.78910990199984, 260.285386905, 253.83393626299994, 253.71830951399988, 260.1691665420001, 254.99591069400003, 247.73144547699985, 264.70252414800007, 248.8937159520001, 244.602978592, 261.2727634839998, 263.4789458160001, 260.05294617899995, 249.1240195119999, 258.83312887399984, 252.90315663599972, 257.43518906400004, 258.54242688600016, 254.06548700199983, 256.5053589019999, 263.5373838060002, 253.66034751899997, 252.96105915599992, 247.96180746200002, 252.73004294799966, 258.77492878400017, 253.77627150900003, 249.06659163199993, 251.56777205699973, 252.49872980399982, 259.703986323, 257.66715443199996, 248.8937159520001, 245.46439008700008, 258.8910305019999, 250.2864089369998, 240.523871096, 254.99591069400003, 254.99591069400003, 255.16967755799988, 258.8910305019999, 244.0723504120001, 251.68316151599993, 262.55065992699997, 256.21554987900004, 250.22862556199993, 258.60062697600006, 248.95114383199984, 264.994412472, 257.60931216799986, 252.84555105200002, 246.741871512, 255.28542295199986, 251.56777205699973, 262.375823759, 258.83312887399984, 250.17084218699983, 267.6097146540001, 257.4930313279999, 247.84677432699982, 251.51022564299979, 260.1691665420001, 250.17084218699983, 257.4930313279999, 256.5053589019999, 242.8486530460002, 259.06533231000003, 251.39453955299973, 249.008867732, 264.7610218079999, 257.43518906400004, 250.2864089369998, 251.3369931389998, 257.4930313279999, 241.68632154600004, 262.66711757999997, 250.2864089369998, 248.95114383199984, 254.93788922399995, 251.62561510199998, 250.22862556199993, 264.87771713999996, 247.84677432699982, 240.523871096, 251.56777205699973, 258.42632516799995, 250.22862556199993, 256.0416048950001, 250.11335513699987, 249.008867732, 252.49872980399982, 252.61423790799995, 247.61641234199988, 251.68316151599993, 257.028802436, 247.6740767670001, 253.77627150900003, 250.22862556199993, 258.77492878400017, 255.16967755799988, 253.83393626299994, 239.07535574999997, 243.02063754200026, 262.20098759100006, 245.2920487670001, 258.42632516799995, 250.2864089369998, 251.39453955299973, 258.65882706599996, 250.2864089369998, 250.2864089369998, 247.84677432699982, 265.6881756109999, 252.38322169999992, 262.259366106, 251.27915009399976, 250.17084218699983, 256.099387989, 246.56935207200013, 248.66311637199988], \"power_mean\": 252.97091829109883, \"energy_millijoules\": 16738.961503677485, \"energy_joules\": 16.738961503677483, \"coremark_score\": 3778.604033, \"coremarks_per_mhz\": 3.7132508185927673, \"ulpmark_cm_score\": 14.935215661083632}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [935.335275102, 973.558896525, 1044.2514341400001, 1104.165069681, 965.986964031, 1083.760954953, 991.8915181120001, 935.877132037, 991.0595666019999, 1057.7534632069999, 1042.8659379560002, 1040.8339000800001, 1090.4446833000002, 956.194021094, 954.292051934, 996.8530388700001, 931.2084244079999, 962.464716913, 1060.300916647], \"power_mean\": 1006.2683139785263, \"energy_millijoules\": 5031.341569892631, \"energy_joules\": 5.031341569892631}}, \"1209600\": {\"active\": {\"elapsed_sec\": 55.666959562, \"elapsed_ns\": 55666959562, \"power_samples\": [263.65396010400013, 264.585828816, 267.2586161900001, 276.9023198699999, 311.865331752, 325.3452912959999, 312.9667372619999, 310.585408572, 329.79515457599996, 317.78211615200007, 289.90838257199994, 299.84974404599984, 298.56654888, 294.7890370320001, 298.32620245199996, 294.8487147300002, 287.64832720999993, 304.7271125059999, 305.6444714219999, 292.2908420670001, 300.82857290699985, 300.70831627999974, 269.287767604, 280.2693094069998, 269.52210742800025, 264.235442832, 277.82674586799976, 273.0671403240001, 262.142908453, 267.083066958, 268.12685984099994, 257.37704864400007, 276.60746292299996, 275.68274015999987, 266.6736524820001, 276.60746292299996, 275.4469103739998, 269.404937516, 266.96613433599987, 266.96613433599987, 262.142908453, 277.88559460399983, 270.44825551400004, 258.42632516799995, 266.8492017140002, 268.30258719300014, 266.90751772600015, 273.0671403240001, 277.88559460399983, 254.93788922399995, 265.80528988100014, 267.95143339200035, 258.0198199239999, 267.892757307, 271.612923552, 270.44825551400004, 268.0098085740003, 274.3455155689999, 268.30258719300014, 274.227568259, 282.5300093369999, 273.008226144, 272.9496140880001, 270.3897619919999, 264.52733115599995, 275.27041645200006, 266.73226909200025, 263.303931528, 265.80528988100014, 277.7675937879999, 266.96613433599987, 281.42926165200015, 265.3959905219999, 261.96807228500006, 272.9496140880001, 273.87463361599976, 269.404937516, 273.0671403240001, 276.430488147, 266.79058510400023, 268.64288127600025, 269.11186213200017, 271.6714764380001, 272.773173672, 273.69801508, 269.34620195599996, 269.287767604, 269.0531265719999, 274.227568259, 275.32914684799994, 270.09608832999993, 269.34620195599996, 270.565544071, 261.5600214340002, 261.50194229600015, 265.4545476569999, 270.27217192199987, 271.8477387339999, 266.79058510400023, 270.037594808, 270.44825551400004, 268.068484659, 258.13592164199986, 275.21138332199985, 266.90751772600015, 268.7013156280002, 271.73033114300006, 276.725345094, 272.4792070200001, 268.0098085740003, 260.63245033199996, 270.27217192199987, 279.97356119200003, 273.9922784969999, 275.034586666, 271.73033114300006, 272.9496140880001, 272.9496140880001, 268.0098085740003, 278.695363262, 271.73033114300006, 283.63051973200004, 267.892757307, 263.885056848, 271.73033114300006, 275.3881799779999, 257.08694285599995, 265.3959905219999, 277.53159215599976, 261.73485760200015, 278.695363262, 272.5967332560001, 270.27217192199987, 256.91281975200013, 269.11186213200017, 260.6904703, 270.44825551400004, 276.13563120000003, 267.8340812219999, 282.5300093369999, 276.7638284919999, 269.0531265719999, 281.1332166720001, 274.10992337799985, 276.37139554199985, 274.10992337799985, 268.8187867480001, 262.95390295200013, 274.7987568799999, 264.0602498400001, 260.63245033199996, 276.13563120000003, 273.7566863059999, 267.77570603999993, 282.7078752970001, 264.235442832, 262.72075035600005, 286.0724887680001, 273.93330484199987, 271.55406884700005, 270.15488336499993, 268.93595666000033, 264.235442832, 266.43948664000004, 267.54130260299985, 267.8340812219999, 283.33357635200014, 271.4952141419999, 261.6767784640001, 270.09608832999993, 272.8320878520001, 271.26039896, 262.8957646440001, 277.23613509999996, 265.3959905219999, 274.7987568799999, 278.695363262, 263.01234094200004, 270.09608832999993, 275.15235019199986, 271.3189518460001, 271.55406884700005, 287.112895924, 257.028802436, 270.037594808, 271.3189518460001, 272.7142594919999, 276.1944207660001, 270.09608832999993, 265.51310479200015, 281.01485953199995, 284.67527980399996, 263.01234094200004, 271.02528195900004, 275.034586666, 265.4545476569999, 276.430488147, 268.76005118800003, 259.2388061040001, 276.430488147, 277.29528717999983, 262.7788886640001, 278.63615151199997, 273.40375166299987, 264.0602498400001, 266.43948664000004, 267.4826265180002, 261.61839994900015, 270.21367839999994, 268.99469222000016, 267.8340812219999, 266.6736524820001, 272.4792070200001, 266.49810325, 282.41153355200004, 272.2438524240001, 265.04524829800016, 266.6150358719999, 271.20154425500004, 269.92000473799976, 270.09608832999993], \"power_mean\": 273.0743400139774, \"energy_millijoules\": 15201.218242977919, \"energy_joules\": 15.20121824297792, \"coremark_score\": 4491.47518, \"coremarks_per_mhz\": 3.713190459656085, \"ulpmark_cm_score\": 16.446050310177313}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1071.802127184, 997.4822954099999, 1043.89620908, 994.0350528460001, 966.651649458, 952.607649447, 1020.7680775040001, 1096.614582016, 993.615644232, 943.26302202, 1011.7689333200001, 936.2861522049999, 928.9473289199999, 1020.7680775040001, 1087.79425227, 960.439689316, 1093.0021571519999, 1092.047088343, 943.40043138], \"power_mean\": 1008.167916821421, \"energy_millijoules\": 5040.839584107105, \"energy_joules\": 5.040839584107105}}, \"1363200\": {\"active\": {\"elapsed_sec\": 49.396283262, \"elapsed_ns\": 49396283262, \"power_samples\": [272.890699908, 292.1714163439999, 278.81348311199986, 281.19254737200004, 290.76932010400014, 296.74714796599983, 275.21138332199985, 291.9921242560001, 288.0932590949999, 282.3521433770002, 276.1944207660001, 278.695363262, 273.7566863059999, 284.49705701999983, 287.112895924, 278.2225802119999, 289.60995286799994, 286.8153661460001, 279.73678024699984, 283.2149819220001, 282.3521433770002, 277.4724400759999, 283.452475652, 289.25238873600006, 279.61854175200006, 288.2720162390001, 294.13042903500013, 284.67527980399996, 283.39302600199994, 278.63615151199997, 276.25351337100005, 290.4709000309999, 285.8940878640001, 272.36137866000036, 281.19254737200004, 286.87468863000004, 275.78168164800013, 290.5304000250003, 281.937325847, 277.4724400759999, 291.69340644499994, 288.2123284940001, 283.39302600199994, 287.0532676539999, 284.49705701999983, 286.87468863000004, 293.210932316, 284.43754769999987, 269.92000473799976, 302.54319954899984, 289.1926415160001, 289.49076482400005, 294.13042903500013, 286.57715885200014, 294.13042903500013, 285.95335117800005, 286.755737876, 279.79605147200004, 296.20744248899996, 290.411093336, 285.83451906899995, 281.01485953199995, 284.14061145200003, 287.112895924, 291.93225789099984, 301.144089572, 283.1558371420001, 302.4227056320001, 284.20012077199976, 285.71568695999986, 290.5304000250003, 284.0218979880001, 288.0932590949999, 285.77495027400005, 293.830810077, 280.83717169199986, 283.0369378419998, 286.9343168999999, 286.8153661460001, 285.71568695999986, 281.7000697120002, 287.7954325520002, 281.7594598869998, 286.57715885200014, 284.67527980399996, 285.5968548510002, 283.2744315719999, 290.411093336, 289.25238873600006, 286.755737876, 280.65948385199977, 285.53728605599986, 291.45424799199986, 290.8288200980003, 285.71568695999986, 275.84077425299984, 280.8961981320001, 290.709513409, 295.22885075, 286.9343168999999, 292.97153626800014, 286.51753058199984, 283.452475652, 292.79206606, 279.55927052699985, 290.4709000309999, 292.97153626800014, 280.9555288319998, 287.97418969600017, 291.75296580300005, 280.30410817200004, 289.4310176040001, 289.25238873600006, 280.65948385199977, 296.5674516249999, 307.60237247400005, 292.85199190000003, 298.8880225139999, 282.0558016320001, 296.3273427920001, 291.6335400800001, 292.91191774000004, 284.31883423599993, 292.79206606, 297.78596292, 286.755737876, 300.04644111699986, 288.1529468399999, 286.8153661460001, 286.755737876, 291.5736737149998, 280.7188145519999, 295.22885075, 294.010458405, 288.0932590949999, 296.20744248899996, 288.0932590949999, 282.74029933199995, 295.04902430200013, 296.2672385269998, 290.59020671999997, 295.34894033000023, 285.65611816499995, 295.1691138819999, 295.84743335300004, 292.91191774000004, 286.87468863000004, 296.3273427920001, 292.79206606, 285.71568695999986, 275.78168164800013, 285.5968548510002, 285.53728605599986, 292.67252169200015, 291.75296580300005, 275.78168164800013, 294.010458405, 291.3348222689999, 284.14061145200003, 274.4454663019999, 292.97153626800014, 289.25238873600006, 287.97418969600017, 296.3874470569997, 281.8779356719999, 285.53728605599986, 286.636787122, 289.25238873600006, 285.41845394699976, 296.20744248899996, 286.87468863000004, 297.78596292, 290.3512866409999, 280.65948385199977, 284.25932491599997, 295.10906909200025, 292.79206606, 295.04902430200013, 290.11267326300026, 280.65948385199977, 291.69340644499994, 296.3874470569997, 287.73574480699995, 287.7954325520002, 291.21508953900025, 302.72409530100003, 296.3273427920001, 291.3348222689999, 282.97779306200005, 290.5304000250003, 294.010458405, 289.1328942959999, 289.9335598790001, 286.4582080980001, 288.03387744099996, 292.55297732400004], \"power_mean\": 287.69423814007143, \"energy_millijoules\": 14211.026080012252, \"energy_joules\": 14.211026080012253, \"coremark_score\": 5061.753391, \"coremarks_per_mhz\": 3.713140691754695, \"ulpmark_cm_score\": 17.591973907614168}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [995.58216901, 1090.1314376960001, 975.01692099, 943.1558143350001, 1011.57916842, 1066.6012659839998, 966.511884538, 995.775682737, 1058.061788343, 1002.923594296, 956.651648739, 1009.1341914300001, 1094.701748256, 962.891226416, 956.3957510249999, 1040.732875224, 1004.437477488, 923.6567269439998, 998.075468195], \"power_mean\": 1002.7377284245263, \"energy_millijoules\": 5013.688642122632, \"energy_joules\": 5.013688642122632}}, \"1516800\": {\"active\": {\"elapsed_sec\": 44.395501858, \"elapsed_ns\": 44395501858, \"power_samples\": [301.08405666, 300.10641485899987, 298.94824592400005, 300.28695437099987, 306.081521072, 291.6335400800001, 292.97153626800014, 296.447243095, 291.5736737149998, 297.42559754399986, 304.79873224699986, 292.61259585200014, 297.72579917999997, 309.797101052, 299.98615823199975, 297.6057802319999, 305.0405050239999, 296.5674516249999, 313.3342201119999, 304.8592530320002, 308.45736906699995, 293.9507807069999, 301.32480720399985, 296.1473382239999, 291.6335400800001, 299.9258753469999, 297.54561649200014, 297.30527006399984, 304.91977381699985, 302.3022117149999, 292.91191774000004, 294.13042903500013, 305.779240135, 303.76159189400005, 304.4967490480001, 308.578767877, 304.4967490480001, 309.8575483479999, 301.144089572, 289.1328942959999, 297.66563543999996, 307.05754602599995, 296.3273427920001, 305.83950992099994, 308.39698094100004, 282.97779306200005, 301.2044319319998, 302.3022117149999, 298.76788453200015, 302.36230379699987, 304.55726983299996, 289.073453472, 305.5978094389998, 291.2749559040001, 292.61259585200014, 299.68536209299987, 305.90009037599975, 304.91977381699985, 302.3022117149999, 293.77113237900016, 297.42559754399986, 312.8476576119999, 293.830810077, 298.6477465500002, 307.360434702, 305.6583898939998, 302.4831074670001, 308.2755821310002, 288.71558294400006, 304.79873224699986, 299.625079208, 297.54561649200014, 298.8281079420001, 302.3022117149999, 303.76159189400005, 303.45990545999985, 288.8945182079999, 300.7226213959998, 299.9258753469999, 308.0334070690001, 302.36230379699987, 308.45736906699995, 292.61259585200014, 293.77113237900016, 305.779240135, 304.8592530320002, 308.0334070690001, 309.7363421719999, 307.9727076639999, 294.8094609860002, 305.35579828799996, 296.2672385269998, 299.86590160499986, 306.02094061699995, 299.80561871999976, 306.93657714000005, 302.54319954899984, 296.3874470569997, 291.2749559040001, 294.7494161960001, 298.8281079420001, 289.1328942959999, 303.33929289800017, 306.02094061699995, 306.8156082539999, 297.6057802319999, 293.531498736, 298.6477465500002, 303.278831588, 302.4227056320001, 298.8281079420001, 294.98928743400006, 304.6174802549999, 300.4815614039999, 297.4854527519999, 302.1814080450001, 291.15553018100013, 304.55726983299996, 299.80561871999976, 289.9335598790001, 308.2755821310002, 294.8094609860002, 294.7494161960001, 301.2044319319998, 305.6583898939998, 294.92924264399994, 311.87311817700015, 295.96733365599994, 292.55297732400004, 314.36975621700026, 301.02371429999994, 297.36543380399985, 299.9258753469999, 296.027437921, 286.4582080980001, 310.59032952000007, 306.99721707000003, 287.556987663, 303.52036677, 297.245414856, 296.20744248899996, 293.531498736, 296.08723395900006, 288.71558294400006, 305.6583898939998, 299.38456595399975, 294.8094609860002, 299.50482258099987, 291.15553018100013, 300.9033390280001, 306.8762481839999, 291.21508953900025, 306.7549683240002, 306.8762481839999, 299.68536209299987, 292.37350711600016, 309.493618236, 294.689679328, 294.8691978540003, 305.5978094389998, 301.94042021099995, 303.09775771599993, 309.3119647640001, 305.4769591979998, 299.444539696, 308.21519400500006, 293.5914840510002, 292.37350711600016, 310.5298230540002, 304.4967490480001, 297.125395908, 292.31358127600015, 305.416378743, 293.5914840510002, 300.7829637560001, 303.21868033600003], \"power_mean\": 300.17104870598297, \"energy_millijoules\": 13326.244350544277, \"energy_joules\": 13.326244350544277, \"coremark_score\": 5631.772206, \"coremarks_per_mhz\": 3.7129299881329114, \"ulpmark_cm_score\": 18.759974185059075}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1045.3720074, 1028.528099222, 943.0182268549999, 995.340463161, 1080.69369495, 988.264959848, 945.345185281, 1007.569207605, 1023.7405289630001, 960.168576672, 971.11874093, 1047.818555976, 1012.6453499099999, 957.5251090720001, 1005.2186368440001, 1048.175445259, 975.9056972000001, 973.5201189999999, 1039.064796432], \"power_mean\": 1002.5807052936842, \"energy_millijoules\": 5012.903526468421, \"energy_joules\": 5.0129035264684205}}, \"1593600\": {\"active\": {\"elapsed_sec\": 42.253706599, \"elapsed_ns\": 42253706599, \"power_samples\": [316.80582842700005, 309.61513599599994, 302.2418098799999, 309.3724120600002, 305.90009037599975, 297.185251116, 308.3362815359999, 321.43717960000004, 301.144089572, 314.0653969520001, 314.1263939270002, 310.59032952000007, 315.4052491919999, 305.83950992099994, 298.46738515800007, 313.03015761200004, 322.5324663659999, 300.5419037639999, 308.094106474, 310.5298230540002, 305.6583898939998, 311.87311817700015, 308.21519400500006, 308.94803465199993, 311.5084744169999, 312.54359511200005, 303.278831588, 311.7516743219999, 298.40716174800014, 307.11818595599993, 314.18739090200006, 304.73852182500013, 300.602246124, 319.9135367220001, 318.9403469000001, 310.711654341, 314.0653969520001, 305.35579828799996, 299.7453358349999, 307.9727076639999, 300.7829637560001, 311.38703056200006, 300.7829637560001, 304.074034642, 304.31549705600014, 303.278831588, 315.100280052, 306.8156082539999, 314.0653969520001, 312.11797011199997, 316.623107482, 310.2868615230002, 312.90859511200006, 304.376017841, 314.00471278200007, 309.00848194800005, 300.602246124, 302.00082204599994, 307.912319538, 306.5130305519999, 313.21265761199993, 311.62991827200017, 308.21519400500006, 305.4769591979998, 310.043899992, 300.7829637560001, 316.2570387620001, 306.45239062199994, 308.64486341999987, 312.7870326120001, 309.00848194800005, 305.53722898399997, 300.24081086, 319.8522421769999, 305.4769591979998, 310.2868615230002, 301.81992629399974, 306.57335950800007, 314.00471278200007, 320.0971060259999, 312.90859511200006, 310.347679878, 313.761037687, 314.00471278200007, 316.0740044020001, 295.787329088, 308.88727577199984, 317.474540812, 311.62991827200017, 310.4690046989999, 309.19044700400013, 313.63935654199986, 317.53540249200023, 311.3261525370001, 301.81992629399974, 305.416378743, 308.94803465199993, 304.25528663399996, 314.00471278200007, 301.94042021099995, 309.129999708, 315.16133650200004, 316.01288847700016, 305.4769591979998, 307.9727076639999, 309.06924082800015, 309.3119647640001, 303.03760646399974, 305.17436759199995, 304.19476584899985, 314.1263939270002, 315.3441927419999, 310.347679878, 309.251205884, 305.5978094389998, 299.3242830690001, 306.7549683240002, 306.8156082539999, 314.91742381200015, 314.0653969520001, 306.57335950800007, 311.4475963919999, 301.94042021099995, 304.25528663399996, 302.9166838440001, 313.943715807, 307.8516201330001, 312.54359511200005, 313.88271883200014, 305.4769591979998, 308.94803465199993, 307.9727076639999, 306.6946393679998, 297.125395908, 310.4690046989999, 313.8220346620001, 301.6390305419998, 305.6583898939998, 300.4215284919999, 302.8565325919999, 307.73053260200004, 307.12447238899995, 301.94042021099995, 313.761037687, 317.474540812, 304.13424506399997, 310.59032952000007, 313.943715807, 312.60453261199996, 308.826516892, 306.63399943800005, 305.416378743, 323.50456990199996, 314.8566804720001, 304.19476584899985, 304.13424506399997, 307.8516201330001, 304.31549705600014, 319.6076926590001, 317.230152932, 296.8850494799999, 308.94803465199993, 307.79092072799995, 303.03760646399974, 310.4690046989999, 310.16553670200005, 313.63935654199986, 316.3789571970001], \"power_mean\": 308.8945860555357, \"energy_millijoules\": 13051.941209210161, \"energy_joules\": 13.051941209210161, \"coremark_score\": 5917.439879, \"coremarks_per_mhz\": 3.7132529361194777, \"ulpmark_cm_score\": 19.154238897704072}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [947.5368120320001, 985.268570759, 1056.1608899659998, 978.252023295, 941.49137097, 1021.8943601180001, 1025.733299409, 956.1298683440001, 984.1424179879999, 1093.211516606, 999.062470125, 947.375320419, 1022.1428538160001, 1040.740364381, 974.87469947, 963.3591966040001, 1100.531924184, 1007.56616787, 923.836452371], \"power_mean\": 998.3847673014211, \"energy_millijoules\": 4991.923836507105, \"energy_joules\": 4.991923836507105}}, \"1708800\": {\"active\": {\"elapsed_sec\": 39.407535923, \"elapsed_ns\": 39407535923, \"power_samples\": [329.7640091740002, 332.5288164880001, 330.689874014, 324.7220124769999, 334.283828395, 329.53400385200007, 327.22254083200005, 343.1201561280002, 330.7513869520001, 331.84929948499985, 333.62315331599984, 334.469536307, 334.34583703, 343.83880161, 337.028358024, 325.8818545520003, 337.93562176000023, 331.91118916999994, 328.31662075199984, 340.7473398930001, 339.9389568230001, 329.53400385200007, 342.43475993900006, 331.91118916999994, 328.1935150889999, 331.7877271829998, 331.7877271829998, 331.91118916999994, 338.3081063039999, 344.99366457899987, 324.47651379900003, 340.18754260499986, 331.16978248199985, 331.91118916999994, 335.5010928500001, 347.61937756199995, 326.85326361600005, 334.531544942, 342.4971850940001, 339.219123976, 336.4083565860001, 340.3121550149999, 333.190144572, 338.9704562700001, 339.03270299999986, 326.91491520599993, 336.5322931530002, 346.02719171700005, 335.5010928500001, 347.6817194620003, 342.68414043000007, 331.7877271829998, 341.65377183600003, 337.811566548, 326.85326361600005, 330.31952807799985, 348.1479194919998, 329.410779544, 335.3772749279999, 341.5914061560002, 330.381358093, 340.37414170099987, 330.07252509499995, 330.31952807799985, 336.7183573049999, 340.8446171159999, 330.5047010459998, 336.4704841710002, 332.57192372400004, 326.73027659800005, 337.811566548, 326.91491520599993, 338.784035294, 340.4984345920002, 347.11871426200014, 334.160129118, 335.1293207859999, 326.6069734179998, 326.17636077400016, 338.9085287539999, 341.28021740400004, 339.8143444130001, 335.19138889600003, 340.12555591900013, 335.19138889600003, 340.18754260499986, 336.2222924340001, 339.09494973000005, 340.063249714, 349.5521744519999, 336.03622828200014, 331.7258374979997, 338.84628202399995, 331.602375511, 334.943434754, 332.63387288399986, 331.7258374979997, 335.315206818, 332.63387288399986, 338.65986104800004, 328.0086983609999, 332.94298330799984, 331.478596141, 340.12555591900013, 336.4083565860001, 332.881034148, 335.00550286399994, 336.346229001, 337.31502679200025, 329.04078984800003, 338.9704562700001, 334.160129118, 333.850721929, 334.81961683200007, 324.23069957000007, 338.784035294, 332.881034148, 341.21785172399996, 337.62532427600013, 335.1293207859999, 323.13636257400003, 331.602375511, 347.05637236200005, 338.9704562700001, 339.690051522, 336.4083565860001, 340.37414170099987, 335.19138889600003, 329.04078984800003, 327.94730376300004, 327.8238816329999, 340.96902865200013, 341.40462894000007, 343.589503958, 327.63906490499994, 341.5914061560002, 346.02719171700005, 343.65166815399994, 330.2576980629999, 336.346229001, 334.098120483, 334.943434754, 335.06757097399986, 333.665014017, 337.62532427600013, 346.02719171700005, 330.07252509499995, 338.784035294, 331.5404858259999, 330.31952807799985, 335.06757097399986, 333.912412571, 330.19618512500006, 340.12555591900013, 341.1558058679998, 337.5012690640001, 332.44834309199996], \"power_mean\": 335.43931938113377, \"energy_millijoules\": 13218.837028498698, \"energy_joules\": 13.218837028498697, \"coremark_score\": 6344.855591, \"coremarks_per_mhz\": 3.713047513459738, \"ulpmark_cm_score\": 18.912405036919743}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1019.3480332199999, 1048.630924134, 975.47849828, 978.77538004, 1045.016366625, 1019.478428423, 947.926528529, 986.350467465, 1042.67885306, 977.966511535, 947.28331764, 1021.646121547, 1036.674476288, 948.7111619180001, 992.554556068, 1087.58689869, 1008.835659375, 948.597037264, 1018.1264944950001], \"power_mean\": 1002.7192481366316, \"energy_millijoules\": 5013.596240683158, \"energy_joules\": 5.013596240683158}}}}, \"6\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 106.978346834, \"elapsed_ns\": 106978346834, \"power_samples\": [233.3963627380001, 229.56991427100002, 228.404120208, 230.870092872, 229.6267456559999, 222.14183709999998, 230.61810390399978, 228.23409619999984, 234.29431306800006, 233.45337254800006, 225.85384532500007, 216.04558307600018, 235.20661541999993, 236.71406035799987, 224.57874073999983, 247.6908982619998, 233.22562566600004, 230.73188562399991, 227.12877802799994, 220.975805026, 227.12877802799994, 236.4287047559999, 230.5046139320002, 232.00705520099996, 225.79719255999998, 219.813359925, 228.29086791500004, 229.70960063199982, 226.90251073199988, 233.81760464800004, 241.58762973800003, 239.0938315520002, 229.34317161700005, 232.06400553599997, 234.10236574700002, 224.40925109199998, 234.10236574700002, 230.56150479199982, 232.59968718799996, 236.78984323500003, 234.15943503200015, 225.96686032799994, 224.52214744999992, 227.78079589100003, 231.77983796699982, 249.66251114400006, 229.87998146400014, 233.87467393300017, 241.70248239800026, 235.26374418, 230.73188562399991, 234.522242172, 230.44772307199992, 229.3997115589998, 252.098346064, 213.54862688699995, 222.0291780319999, 233.1689082140001, 236.7325953300001, 231.836496249, 241.70248239800026, 232.59968718799996, 234.21650431699982, 248.15227628699995, 218.53878243600002, 228.404120208, 231.77983796699982, 230.61810390399978, 232.00705520099996, 230.73188562399991, 228.2654154029999, 229.28634023199993, 231.950396919, 223.4168227350001, 232.1206638179999, 235.548802044, 233.11189840399993, 232.82743406999998, 228.17732448499987, 234.15943503200015, 237.98970060800002, 235.43483749200004, 222.45748738199995, 224.74823038799968, 238.69326765999995, 231.66593729700003, 236.542788342, 229.45654294399992, 224.691637098, 237.89243376000013, 230.90197470800013, 225.79719255999998, 229.45654294399992, 240.02562464100015, 227.04421928099987, 232.99817114199982, 237.81825047200005, 233.22562566600004, 237.93245270299985, 230.67499476400008, 228.17732448499987, 227.49751959000014, 246.99237949199983, 226.90251073199988, 241.35851340600016, 228.12084390699988, 223.3602889199999, 237.98970060800002, 216.87095796300014, 229.11613751999994, 226.9589321399999, 242.52317641199988, 227.01564438000014, 234.00925520399983, 229.22950884700003, 226.9589321399999, 235.49167328400017, 233.93145055500008, 236.2005375839999, 234.38741950899998, 240.84255991800023, 223.3602889199999, 225.7405397949999, 227.95081989900018, 230.67499476400008, 235.74361669199993, 226.619240364, 228.23409619999984, 225.96686032799994, 228.00730047700017, 233.11189840399993, 235.60593080400008, 225.65716810799995, 239.0938315520002, 229.51337432899982, 237.53259810500003, 230.73188562399991, 225.79719255999998, 225.7405397949999, 232.82743406999998, 241.4156452420002, 237.36114796899983, 231.77983796699982, 230.61810390399978, 233.24808245000008, 222.08536275999995, 237.87549837699999, 224.40925109199998, 238.9222032959999, 231.66593729700003, 229.05930613500004, 235.3777087320002, 225.85384532500007, 218.08899406800015, 229.28634023199993, 237.87549837699999, 220.0746168359999, 248.38311346199998, 229.34317161700005, 225.68417755699988, 239.20815242800018, 233.11189840399993, 232.99817114199982, 232.96332135099988, 236.542788342, 229.28634023199993, 246.00476559199979, 227.01564438000014, 233.19101316499996, 243.85606783699996, 243.91361331200005, 226.84579849200009, 235.3777087320002, 225.68417755699988, 227.298623916, 248.32533008699988, 234.27328093899996, 220.8629756859998, 235.3777087320002, 230.44772307199992, 225.7405397949999, 219.53216195200002, 246.35016071199993, 235.548802044, 241.58762973800003, 226.9589321399999, 229.3997115589998, 239.224253805, 231.836496249, 233.11189840399993, 236.599976772, 219.47580675699987, 220.75043565200008, 236.599976772, 231.43872006300012, 226.9589321399999, 247.2226830520001, 238.979216792, 233.05488859399998, 234.522242172, 225.45785702399985, 238.0469485130002, 253.72181872200008, 229.05930613500004, 220.69402098199998, 243.33933898200007, 229.25534899600007, 225.68417755699988, 224.4658443819999, 226.6759526039998, 232.9411613320001, 232.65669699799992, 237.418395874, 230.73188562399991, 242.2938220120002, 230.61810390399978, 230.67499476400008, 230.56150479199982, 235.40136593400007, 240.25479787199993, 229.34317161700005, 244.6719336420001, 229.51337432899982, 238.75057504000006, 229.17296890499983, 227.01564438000014, 228.12084390699988, 229.34317161700005, 237.81825047200005, 239.0365241720001, 244.6143286920003, 227.24191167599997, 232.99817114199982, 240.31216472699998, 224.4658443819999, 238.979216792, 220.6378956179999, 243.79881746699994, 239.0365241720001, 224.29635473400003, 230.56150479199982, 221.97270369200032, 224.44014094299996, 229.11613751999994, 231.49537834500006, 228.17732448499987, 236.542788342, 237.704048241, 232.8841515219999, 228.83256348099985, 230.5046139320002, 235.97207713800003, 233.98851983999998, 231.43872006300012, 228.3219553450001, 237.87549837699999, 231.49537834500006, 235.26374418, 234.0455891250001, 232.9411613320001, 237.30390006400012, 239.05244742900004, 229.22950884700003, 219.53216195200002, 245.1318870120001, 237.4753502000001, 231.836496249, 235.20661541999993, 240.02562464100015, 238.46462590800002, 231.60927901500008, 243.74127199199984, 230.44772307199992, 233.3619283569999, 238.9222032959999, 234.33035022400009, 231.43872006300012, 224.183168154, 237.30390006400012, 236.657165202, 225.45785702399985, 224.40925109199998, 237.93245270299985, 237.53259810500003, 226.84579849200009, 242.59242822700003, 238.9222032959999, 237.87549837699999, 229.28634023199993, 227.95081989900018, 223.19097739199992, 231.77983796699982, 243.33933898200007, 241.53049790199998, 229.34317161700005, 229.17296890499983, 234.21650431699982, 235.91488870800003, 225.68417755699988, 253.37428499399994, 237.87549837699999, 235.3205799719999, 234.10236574700002, 224.4658443819999, 222.11886432599977, 237.93245270299985, 238.9222032959999, 227.78079589100003, 245.94739688200002, 226.9589321399999, 225.79719255999998, 232.9411613320001, 224.29635473400003, 226.73266484399983, 239.37978068400002, 236.0861607239999, 225.4873222199999, 242.23633601200004, 230.39112395999996, 225.79719255999998, 239.15084504800006, 237.704048241, 226.84579849200009, 231.60927901500008, 247.2226830520001, 225.7405397949999, 239.96855197500008, 237.64680033599984, 235.45826108999995, 234.10236574700002, 235.3205799719999, 230.3342330999999, 235.3777087320002, 240.95711808400006, 219.53216195200002, 229.11613751999994, 240.25479787199993, 233.98851983999998, 245.07428206200007, 226.56281895600023, 217.41488890799997, 247.39555873199993, 229.05930613500004, 219.47580675699987, 231.836496249, 252.04068131000008, 225.401204259, 236.61839309900006, 226.56281895600023, 237.81825047200005, 237.81825047200005, 233.81760464800004, 225.45785702399985, 232.99817114199982, 233.3619283569999, 234.0455891250001, 230.44772307199992, 232.65669699799992, 231.55232867999985, 237.0182476970001, 233.81760464800004, 231.55232867999985, 229.05930613500004, 238.40731852800013, 233.98851983999998, 240.08299149599998, 225.401204259, 230.5046139320002, 231.55232867999985, 231.60927901500008, 230.27734224000005, 237.94974114000001, 235.91488870800003, 229.34317161700005, 229.17296890499983, 225.51450978899993, 233.05488859399998, 228.12084390699988, 228.77573209599996, 244.72953859200015, 238.979216792, 238.5216394040001, 232.99817114199982, 237.94974114000001, 223.0781996789999, 241.24366074600016, 235.3777087320002, 231.66593729700003, 243.3965893520001, 237.7610025670001, 242.59242822700003, 239.0938315520002, 223.13444357699973, 219.419740563, 241.07197074400005, 232.59968718799996, 227.95081989900018, 228.00730047700017, 225.51450978899993, 240.25479787199993, 242.52317641199988, 231.77983796699982, 215.8044880450002, 236.37151632600012, 234.15943503200015, 227.95081989900018, 223.19097739199992, 226.73266484399983, 226.90251073199988, 234.86442879600008, 232.9411613320001, 243.28179350699997, 237.58955243100013, 236.37151632600012, 234.63649969200014, 235.20661541999993, 234.97868631600022, 235.3205799719999, 244.15437532200008, 237.58955243100013, 230.16385226800003, 225.77030175599998, 233.93145055500008], \"power_mean\": 232.5650366712222, \"energy_millijoules\": 24879.42315447594, \"energy_joules\": 24.879423154475937, \"coremark_score\": 2337.300511, \"coremarks_per_mhz\": 7.791001703333333, \"ulpmark_cm_score\": 10.048464486003313}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1026.508055535, 1062.583354514, 1014.35074379, 1062.917549136, 1023.7405289630001, 1043.6958252000002, 1031.320816896, 975.01692099, 1107.1512712919998, 996.1752823199998, 957.210553091, 1012.9901752800001, 945.8318910019999, 981.082156626, 966.6528586339999, 957.315787796, 974.96943264, 979.3616479360002, 1012.771063161], \"power_mean\": 1006.928732358, \"energy_millijoules\": 5034.64366179, \"energy_joules\": 5.03464366179}}, \"652800\": {\"active\": {\"elapsed_sec\": 49.157819148, \"elapsed_ns\": 49157819148, \"power_samples\": [299.625079208, 296.40466515599996, 274.6974491640001, 292.13411106800027, 289.0379929590001, 288.35771241600014, 292.693242411, 296.8248857399999, 289.396219727, 285.9820992959999, 286.66350803399996, 294.20993685200006, 288.35771241600014, 291.53608191600006, 289.4224756660001, 290.2590697410001, 289.5753331110002, 296.70486679199985, 287.1997794660001, 286.84226517799993, 293.052539067, 280.57378834199994, 296.10446351999985, 287.1997794660001, 292.872890739, 286.9613345769999, 286.18692434700006, 289.63513980599987, 279.5933568119999, 289.3364130320001, 290.6176539170001, 286.54443863500023, 292.01456669999993, 286.687854216, 286.9613345769999, 294.26998164199995, 285.86284275599996, 279.88970605199984, 290.49822819400015, 294.20993685200006, 288.1190299320001, 285.92247102600004, 290.91637172800006, 281.8503838020001, 287.9998418880002, 286.18692434700006, 282.206167092, 289.396219727, 294.33002643200007, 288.0595891080002, 299.20402644199976, 285.803520272, 290.3189361059999, 303.83226186499996, 286.9613345769999, 282.02812301200015, 296.464828896, 289.24318357800007, 287.08040397600007, 288.0595891080002, 284.5860182219999, 294.8275102099999, 299.02348693, 300.18046849999973, 285.029575906, 283.1307840679999, 290.2590697410001, 280.81073991200014, 288.978492965, 295.2637138199998, 297.5056636260001, 284.169647619, 291.4761560760003, 280.81073991200014, 284.46688063199986, 291.4761560760003, 289.36291630799997, 299.69865796399995, 286.84226517799993, 297.325302234, 283.24949753199985, 289.097799654, 291.71555212399994, 290.55778755200004, 285.38673395399996, 291.71555212399994, 311.75297011199996, 286.66350803399996, 285.94847945800007, 295.30741964899994, 275.819215276, 286.7825774329999, 300.24081086, 288.85887957499995, 296.64470305200007, 288.0595891080002, 284.526449427, 290.73707964000005, 297.6258016080001, 290.55778755200004, 288.6202661970001, 291.71555212399994, 280.9886058719999, 294.20993685200006, 284.288785209, 276.8042310620001, 293.17220208000003, 292.9514596380002, 284.34804852299976, 294.9474105129998, 284.4076173180001, 291.83509649200005, 294.10749193800007, 289.097799654, 281.612890072, 296.70486679199985, 302.1926984139998, 289.0379929590001, 288.9186862700001, 282.7151343559999, 282.952561284, 297.68602501800024, 292.753227726, 287.70171858000003, 284.4076173180001, 294.707609907, 274.424976045, 293.73050229800015, 292.693242411, 284.288785209, 300.0600932279999, 289.064198497, 281.67233972200006, 289.097799654, 303.16777468199984, 274.5431612550001, 294.9474105129998, 299.99975086799986, 292.33394575500006, 295.2476236110001, 280.218056422, 273.2669228399998, 297.4454402160002, 295.2035500799998, 285.32741147, 289.0379929590001, 284.2292164140001, 295.12741508099975, 294.030418326, 286.246306001, 289.064198497, 286.4847508900002, 283.812845811, 291.53608191600006, 284.169647619, 282.861577977, 291.4761560760003, 289.21710634300007, 288.679766191, 285.2081549300001, 287.82090662400014, 293.6707654300001, 277.1929808519999, 286.60382028899994, 299.3372227, 283.07157992399993, 292.693242411, 297.26507882400006, 284.2292164140001, 298.7826645329999, 294.88761447499974, 292.274268057, 286.4847508900002, 299.45790741999986, 289.7810598419999, 288.9186862700001, 280.57378834199994, 280.2774465970001, 302.3737722860001, 286.42506314499997, 305.78659528799994, 287.90381266099985, 287.4035952720001, 292.693242411, 290.3788024710002, 281.8503838020001, 279.1511652270001, 295.0676190429999, 288.73957288600013, 301.5890154880001, 288.978492965, 291.35661170799995, 284.0508155099999, 287.463036096], \"power_mean\": 289.59169113521136, \"energy_millijoules\": 14235.695979588196, \"energy_joules\": 14.235695979588195, \"coremark_score\": 5087.505088, \"coremarks_per_mhz\": 7.793359509803922, \"ulpmark_cm_score\": 17.56148771078433}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [975.0641658100001, 1092.204884844, 1092.311133192, 950.461569816, 1022.4697745279999, 955.1881972049999, 1038.399877501, 951.555170748, 943.946730916, 1003.167905394, 960.55089452, 1018.9517518079999, 1106.450210822, 970.35774133, 1034.7993887579998, 1042.0667161850001, 1015.4223986360001, 1083.1404845939999, 1010.25291152], \"power_mean\": 1014.0401004277368, \"energy_millijoules\": 5070.200502138684, \"energy_joules\": 5.070200502138684}}, \"768000\": {\"active\": {\"elapsed_sec\": 41.784872745, \"elapsed_ns\": 41784872745, \"power_samples\": [307.06408426300004, 306.1498129199997, 305.90756417399984, 316.01288847700016, 319.9675148440001, 295.2035500799998, 303.2282954670002, 317.0469404520002, 309.679925529, 309.4977823529998, 307.06408426300004, 306.02884403400003, 307.36695872999985, 318.8734154430001, 296.1643187279999, 305.78659528799994, 312.17859511200004, 307.00717791600005, 311.9354701120001, 307.12447238899995, 303.59079945099984, 320.57979650000016, 321.12247550899997, 299.87937559600005, 301.09634328599986, 307.12447238899995, 310.71862106699996, 321.73535069499985, 308.22017442800006, 296.36358070200004, 310.71862106699996, 311.87453261199994, 304.81181686900004, 307.12447238899995, 314.4299115419999, 304.63038617300003, 310.47547011200004, 304.569805718, 304.69065595899997, 309.3761456430002, 311.69203261200005, 306.21584898799983, 299.81903323599977, 314.9757982420001, 309.4977823529998, 311.81359511200003, 301.77008935999993, 304.872086655, 309.320924052, 309.25482082199983, 309.3156391770001, 298.54215127899965, 317.29014026999994, 304.751236414, 308.1594155480002, 303.349026674, 307.12447238899995, 311.9354701120001, 306.761209796, 313.03032520700003, 307.79579702, 311.32703261200004, 313.395681447, 310.77918689700005, 302.1926984139998, 307.12447238899995, 309.3761456430002, 298.54215127899965, 311.57047011200007, 307.0033848579999, 316.31440425200003, 317.96246993600016, 310.53640761199995, 297.2048554139999, 314.12525551199997, 318.023705006, 304.63038617300003, 317.59568756800013, 310.657743042, 311.26640761199997, 305.90756417399984, 300.9154475339999, 295.924280832, 308.0989682520001, 316.5565755339999, 310.596865017, 308.22017442800006, 297.385216806, 304.50922526299996, 317.8403138220001, 301.89101198000003, 299.83038277499986, 313.03032520700003, 306.761209796, 304.50922526299996, 311.87453261199994, 302.13223710399984, 308.40213948400014, 327.0849311879997, 308.0989682520001, 310.11077740200017, 306.88229732700006, 311.631407612, 308.46574165200013, 307.9777620760001, 310.35397730700015, 303.2885058889999, 335.5401634110001, 311.57047011200007, 309.0726776460001, 315.281064452, 314.06451217200015, 310.657743042, 312.84795989199984, 311.57047011200007, 307.1891429720001, 321.97058286599986, 303.1075642600001, 294.5877096039999, 310.53629918699994, 311.4489076120001, 314.24705530200004, 310.90140761199996, 310.475421162, 319.0569847470001, 322.09321355999987, 298.3013288819998, 304.2130668479999, 311.631407612, 311.631407612, 309.3761456430002, 306.8215979219999, 301.649476798, 316.4976167320001, 322.15468652999994, 300.55365602999996, 308.038209372, 312.9086440619999, 312.84795989199984, 308.34138060400005, 298.060815628, 306.88229732700006, 317.9012348660001, 313.03032520700003, 316.4976167320001, 310.657743042, 307.85880565800016, 306.88229732700006, 307.9777620760001, 308.038209372, 312.7869629170002, 310.71862106699996, 317.9012348660001, 304.267524781, 299.81903323599977, 311.32703261200004, 308.038209372, 312.7869629170002, 307.128695676, 308.038209372, 309.3156391770001, 305.78659528799994, 297.1449408420001, 316.924903372, 319.6610593800001], \"power_mean\": 309.1771834565879, \"energy_millijoules\": 12918.929266391046, \"energy_joules\": 12.918929266391045, \"coremark_score\": 5985.443402, \"coremarks_per_mhz\": 7.7935460963541665, \"ulpmark_cm_score\": 19.351448935507523}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1013.8569826429999, 1099.781818884, 991.8003170320001, 1098.6567985679999, 1036.724999618, 1039.576564097, 1053.8187540019999, 989.38968788, 1085.674978536, 1012.5469368, 949.2188379790001, 1033.31097296, 983.425318934, 968.6190812860001, 979.7147569040001, 968.37437188, 1004.0942500369999, 951.294582744, 997.993541619], \"power_mean\": 1013.5722922317368, \"energy_millijoules\": 5067.861461158684, \"energy_joules\": 5.067861461158683}}, \"979200\": {\"active\": {\"elapsed_sec\": 32.791461238, \"elapsed_ns\": 32791461238, \"power_samples\": [364.679834538, 363.590750028, 359.9421619079999, 356.22644701499985, 357.6318556440001, 351.4248021000001, 356.3701499160002, 347.7722264519998, 371.2189540889999, 367.0526274839999, 368.01403470700006, 358.6627074779999, 362.3745539880001, 352.3894777359999, 353.8571941800001, 356.81189276400005, 348.80039785200006, 356.93796610799996, 357.0011648279999, 364.4262633320002, 355.07339021999974, 354.75863834200004, 363.21042353200005, 358.53651509999986, 364.235921964, 358.9310243100001, 352.13828020799997, 362.05802054699984, 368.332052946, 347.7722264519998, 353.56206362800003, 359.6262219969999, 362.12113204499997, 376.20838658, 355.8482591269999, 352.3894777359999, 358.47325671, 356.05480450799996, 349.953574097, 352.57803732, 357.12723817200026, 355.9745376169999, 367.63228208299984, 347.39653341200005, 358.6627074779999, 358.41032272200005, 369.48466332400017, 356.03735307099987, 354.94723067999985, 357.58926125999983, 360.9051735999999, 353.47971877200007, 346.36836201200026, 368.4595217159999, 360.9685509400001, 357.12723817200026, 359.4365931089999, 355.9113983719999, 353.47971877200007, 365.7729941289999, 358.2838059420001, 357.0841673460002, 357.56865692400015, 372.37034652400007, 356.03735307099987, 349.702851927, 353.60543618099973, 352.3268397919999, 354.39897061099987, 359.49958626700004, 353.22796077299995, 347.70950372699986, 372.242729628, 358.9310243100001, 361.7411617890002, 361.7411617890002, 349.89105468699995, 357.12723817200026, 357.12723817200026, 347.33381068699987, 352.78778825099994, 373.7133875050001, 358.3470643320002, 361.86803541899985, 359.49958626700004, 349.76537133700003, 366.861929292, 348.4871307719998, 349.6400102519999, 369.1663483200002, 364.94762463899997, 355.9745376169999, 369.87222515400003, 348.36156637199997, 353.29098106799984, 366.92560420200016, 361.6780502910001, 355.34411653999996, 361.7411617890002, 362.8935933260002, 349.57716857699984, 355.9745376169999, 355.65916518300014, 361.931146917, 364.6301999299999, 350.7341775890002, 361.7411617890002, 350.859657708, 351.82379898399995, 353.41669847699995, 358.2838059420001, 355.4869883160002, 360.6523142640001, 360.7153665919998, 361.42462834799994, 354.63247880200015, 354.839973953, 367.82315839500006, 366.4805329080002, 354.695558572, 365.074529276, 361.7411617890002, 358.1576135639998, 347.04571585199983, 349.76537133700003, 375.120757206, 358.1576135639998, 370.0631302529998, 359.3099573789998], \"power_mean\": 358.35003061299227, \"energy_millijoules\": 11750.821138482048, \"energy_joules\": 11.750821138482047, \"coremark_score\": 7627.765065, \"coremarks_per_mhz\": 7.7897927542892145, \"ulpmark_cm_score\": 21.275108952283365}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1059.906485172, 952.62198954, 1034.44691814, 964.9105061010001, 1032.784716393, 1112.3264463750002, 1041.55988288, 1075.5031288300002, 1055.0431661840003, 944.013524136, 1061.1452203590002, 1078.0457193, 971.2392596999999, 1024.6624171019998, 966.928918032, 1040.285088622, 950.19847697, 975.9384195599999, 1020.9783070799999], \"power_mean\": 1019.0809784461053, \"energy_millijoules\": 5095.4048922305265, \"energy_joules\": 5.095404892230526}}, \"1017600\": {\"active\": {\"elapsed_sec\": 31.531734207, \"elapsed_ns\": 31531734207, \"power_samples\": [367.6379128640001, 366.92560420200016, 356.03735307099987, 369.1663483200002, 363.33709049000004, 359.4365931089999, 369.48466332400017, 370.1983125630002, 362.9567639940001, 377.29577866399995, 365.45556941999985, 365.51918485500005, 367.6960164679999, 358.1576135639998, 361.931146917, 379.02830001200005, 374.800957404, 356.874767388, 372.242729628, 361.0446580920002, 365.8366095639999, 377.55196161599997, 370.3182161399998, 366.73490601000003, 369.42086946400013, 378.3869178719999, 360.6523142640001, 371.0275428330001, 367.759750853, 365.45556941999985, 383.50527313199996, 373.4576667660001, 356.81189276400005, 368.9752938880001, 380.56018461200006, 364.29947772900005, 368.6569788840002, 374.86504883399994, 368.4659244520001, 373.64968391900015, 364.94762463899997, 358.9310243100001, 366.5442078179999, 377.1677644619999, 366.6712311000001, 359.49958626700004, 369.99960437100003, 362.8300970360001, 370.0631302529998, 366.1628114340001, 362.84030255000016, 372.5619359, 363.72845362500016, 365.3919539850001, 359.3099573789998, 360.399129916, 362.766600746, 371.2189540889999, 367.4417326140001, 366.5442078179999, 371.4103653450002, 367.4417326140001, 370.1983125630002, 361.61461347600016, 375.63201537200007, 373.77741946000015, 365.01124007400017, 375.88829001299996, 361.4880651629999, 375.05699445000005, 363.72845362500016, 374.67310321800005, 372.62590838000006, 378.130167262, 364.3760644230001, 371.34645234000004, 359.2469642210001, 356.7486940440001, 368.84770616800006, 365.074529276, 377.1034768080001, 364.05863971400026, 369.6171392670001, 372.62590838000006, 367.63228208299984, 356.68549532399993, 356.38962266399994, 372.3067021080001, 362.8300970360001, 378.130167262, 363.9187949929999, 370.70863332600015, 371.2825393349999, 375.4398916360001, 359.18364635600005, 368.6569788840002, 374.9288115899999, 368.84770616800006, 381.96820820699986, 360.399129916, 365.26504934800005, 379.602164142, 363.7920093900002, 357.778712028, 378.3226478219999, 368.40621807299976, 366.1628114340001, 370.12698358800003, 363.72845362500016, 367.63228208299984, 369.87222515400003, 368.5293911640001, 363.34777088900023, 366.353509626, 367.4417326140001, 359.1203284909998, 359.0573353330001, 366.3602091270002, 360.27270024799986, 386.12271424000005, 368.59318502400015, 362.38659987200003, 382.9256940120001, 367.2508563020001], \"power_mean\": 367.90421212782263, \"energy_millijoules\": 11600.65783045025, \"energy_joules\": 11.600657830450249, \"coremark_score\": 7932.730446, \"coremarks_per_mhz\": 7.795529133254717, \"ulpmark_cm_score\": 21.55050201927186}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1000.8244273260001, 946.0402158239999, 946.200222528, 1029.064778784, 981.15126219, 1021.2737012319999, 963.179244591, 984.0017237159999, 1056.095185944, 1055.9552518829998, 1064.578886946, 1081.588398915, 1006.00283212, 1111.3796310399998, 1036.573688722, 954.967127912, 1033.982268636, 1090.294720522, 962.1910200359999], \"power_mean\": 1017.1233994140526, \"energy_millijoules\": 5085.616997070263, \"energy_joules\": 5.085616997070263}}, \"1209600\": {\"active\": {\"elapsed_sec\": 26.547961605, \"elapsed_ns\": 26547961605, \"power_samples\": [409.9334413680001, 419.1335771040001, 404.87230901700013, 419.59661079600005, 413.1876880519999, 418.11324397199996, 430.2830692260002, 405.76378077000004, 415.6173491620002, 426.6254406740002, 413.9411479170001, 417.9807765720002, 428.9884513689999, 417.8100894659999, 414.4685738820001, 414.2707468020001, 415.28745351199996, 425.4728166520001, 417.94233624000003, 414.2707468020001, 413.121692252, 417.91488253199987, 420.899899452, 422.9103155429998, 413.121692252, 412.660736972, 421.761897308, 425.4065673979999, 417.716521092, 417.716521092, 409.6705101719999, 426.15957136300017, 415.7492396120001, 420.54700727800014, 414.336463332, 411.97285749699995, 420.2819361689999, 422.531466292, 425.0742966550001, 414.204691527, 422.0478866130002, 415.683463912, 424.12514609799996, 404.67590806499993, 432.30287280599987, 426.55879025900003, 415.683463912, 417.5181596520001, 417.7827547920001, 422.7969089999999, 425.27338590800014, 407.04385399600005, 405.69814201500003, 417.6502873920001, 425.1405459089999, 410.4912129290001, 427.055906261, 412.7923901319998, 409.3420993200002, 417.9807765720002, 411.643852142, 399.98701816799985, 422.44603562099996, 423.72664084999997, 415.35356826199995, 421.49658860399995, 416.56816152700003, 411.7097884670002, 432.44734900399976, 412.660736972, 425.62739343400017, 426.15957136300017, 421.09879583600014, 416.17179488700003, 412.7267327720001, 411.380444977, 415.28745351199996, 427.98896533599986, 412.660736972, 413.4794384820002, 419.4874033840001, 419.8844996410003, 417.716521092, 422.5121665349998, 431.7013709099999, 412.8583859319999, 435.07555203599986, 404.1522842940001, 411.31484678699985, 430.75060139699985, 412.5290838120002, 415.28745351199996, 414.9168600969999, 415.97361156700003, 407.799332798, 427.98896533599986, 410.2939207930001, 404.28310616099975, 412.5290838120002, 417.18767047200004, 422.24696111699996, 415.35356826199995, 414.75955266200026, 423.46119814199983, 428.4023303639999], \"power_mean\": 417.75285494086665, \"energy_millijoules\": 11090.486753349263, \"energy_joules\": 11.090486753349264, \"coremark_score\": 9422.939203, \"coremarks_per_mhz\": 7.790128309358466, \"ulpmark_cm_score\": 22.541841991245462}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1036.329873481, 1088.174350516, 1024.286220594, 1099.4985164989998, 994.7712692099999, 1072.7483523899998, 1081.284673685, 958.2481669919999, 1094.2179469200003, 981.2491833659999, 969.4067546399999, 1112.94687794, 957.315787796, 962.1440673509999, 958.154976985, 961.9567381769999, 961.771284831, 958.4912948010001, 1005.7040769500001], \"power_mean\": 1014.668442796, \"energy_millijoules\": 5073.34221398, \"energy_joules\": 5.07334221398}}, \"1363200\": {\"active\": {\"elapsed_sec\": 23.546662335, \"elapsed_ns\": 23546662335, \"power_samples\": [491.4982825920001, 491.1496800440002, 487.2294750450001, 498.4373017360001, 498.1567783830001, 492.80918563800014, 499.3002007079999, 492.69779967599993, 503.173302701, 497.08303869600013, 493.0184161760001, 492.0143624099999, 496.9430757180003, 500.517823056, 487.15978965, 487.88629174799985, 509.08806107400005, 507.09814099999994, 491.00995240400016, 498.8329092780002, 485.80327290699984, 495.02979189100006, 506.58603900599996, 480.9491747269999, 496.3127026140003, 508.73500413199986, 502.1014085559998, 490.87058304000016, 485.7336471819999, 493.2280056000002, 500.16684444199996, 492.488031548, 487.0207762209998, 498.94951983199985, 500.447843764, 501.520628814, 499.0897201, 485.7336471819999, 483.13171111199995, 495.30948055700014, 489.16932387300017, 485.872898632, 495.51942680499997, 490.521980492, 486.9510908259999, 497.596091784, 487.88629174799985, 505.4580143039998, 505.810476743, 497.5258709190002, 490.2695072639999, 492.7392028680001, 492.6692200980001, 492.878809522, 495.82265228999995, 492.878809522, 495.7524908999999, 507.09814099999994, 494.819845643, 485.38623266700006, 497.736173407, 499.6052065160002, 486.70277495400023, 503.0326274639997, 490.1035141240002, 491.1770757749998, 496.45302539399995, 498.8093195639999, 496.3127026140003, 498.3416113620001, 494.679641813, 492.59959621400026, 510.02998903599996, 484.10385486199993, 484.96919242700005, 498.66911929599996, 497.3857892960002, 494.0961341320001, 491.45605179300014, 484.8999237569999, 497.3155684310002, 509.74685058, 486.6033785730001, 502.66399625200006, 498.66911929599996, 492.52961344400023, 496.3127026140003, 488.9602688090001, 487.81654687800005, 491.10715247999997, 495.02979189100006, 482.9598960569999, 491.3864870790003], \"power_mean\": 494.6150836026237, \"energy_millijoules\": 11646.534359388776, \"energy_joules\": 11.646534359388776, \"coremark_score\": 10624.282861, \"coremarks_per_mhz\": 7.793634727846244, \"ulpmark_cm_score\": 21.46561305582413}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [949.132785321, 1052.8959195379998, 1016.474802096, 954.602651791, 1002.823385497, 1109.86278704, 992.149349763, 1034.455595272, 1037.087059162, 1025.009458668, 1069.874591106, 1007.99335338, 1063.904849406, 1022.296893598, 950.692883052, 1024.8850471859998, 978.428590399, 977.4061010560001, 995.894275738], \"power_mean\": 1013.9931778457368, \"energy_millijoules\": 5069.965889228684, \"energy_joules\": 5.069965889228684}}, \"1516800\": {\"active\": {\"elapsed_sec\": 21.174266554, \"elapsed_ns\": 21174266554, \"power_samples\": [559.9147718920001, 566.791666761, 568.7049185410001, 555.1371754559998, 573.4086062640001, 573.1870757920001, 576.014484043, 567.4148354850001, 562.416954975, 565.8347731440001, 563.336366944, 568.484100549, 557.4164259719998, 562.8961570879999, 570.5408709600001, 564.328480551, 561.131322322, 563.482977932, 560.984948624, 582.672192512, 581.1863242119998, 562.123970289, 570.4673986979999, 569.1813291779999, 571.531855788, 571.9318628950002, 564.548763599, 579.6500709280001, 575.0245090440001, 575.0985981240001, 564.4020339659999, 572.744014848, 564.2183095800001, 567.674560616, 563.8879144549999, 565.6143119760002, 569.5827017700001, 570.025050234, 570.025050234, 566.532278333, 566.8998845440001, 569.951199249, 566.752917621, 567.454120737, 566.865020683, 581.5577912869999, 569.951199249, 572.5964543110001, 559.2560619400001, 565.026541362, 566.0177051990001, 577.3005543679999, 585.3409983519998, 570.025050234, 574.3588471559999, 566.826589986, 570.6030593960002, 556.75878474, 573.882524136, 572.3013332370001, 566.532278333, 580.2719577520002, 561.464189865, 569.361527538, 565.2466250280002, 561.6841166729998, 561.53762433, 573.8084947259997, 566.05548075, 571.0895301120001, 564.1081975029999, 566.164672122, 576.458614875, 582.003704487, 569.877726987, 563.5569260759999, 571.2369720040001, 561.6841166729998, 572.3013332370001, 562.7495461000001, 559.0364919560002, 565.393850808, 569.2876765530002], \"power_mean\": 568.436003696976, \"energy_millijoules\": 12036.215461170297, \"energy_joules\": 12.036215461170297, \"coremark_score\": 11816.978635, \"coremarks_per_mhz\": 7.7907295853111815, \"ulpmark_cm_score\": 20.770648448967876}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1005.07291455, 1070.851080996, 1025.5589527410002, 952.7611812680001, 1030.584544913, 981.89506542, 962.142411744, 1028.463357504, 962.428252356, 1007.74778764, 1057.6046204959998, 992.5498968479999, 1041.9692844750002, 1090.45405149, 1031.81901604, 1103.207146362, 983.401404898, 1107.8626710899998, 1092.0939795870001], \"power_mean\": 1027.814085285158, \"energy_millijoules\": 5139.070426425789, \"energy_joules\": 5.139070426425789}}, \"1708800\": {\"active\": {\"elapsed_sec\": 18.782535566, \"elapsed_ns\": 18782535566, \"power_samples\": [673.048854812, 668.3580539950001, 666.0144844199999, 683.4793324919999, 675.4707988119999, 684.7878783870001, 680.5562278279999, 675.7076563639998, 667.9652081640002, 667.9652081640002, 671.8378828120001, 672.890917292, 671.8934377650003, 686.139025812, 667.8864774990002, 674.3384497740003, 665.2295766809998, 676.0782050589999, 683.5584292019998, 688.9785850409999, 670.2330661199999, 678.4747740540001, 676.290410196, 683.241226932, 683.0219624920001, 679.9224349859999, 686.474942862, 678.3955077240003, 670.8136807589999, 660.3833825039999, 686.872539852, 674.444280894, 679.4477005529998, 670.9714993290002, 677.185070084, 684.7878783870001, 681.2572857419998, 684.372100672, 680.1825220759999, 680.816383004, 676.6314344770001, 667.179112755, 676.7106413320003, 675.5005599320002, 681.154557975, 684.372100672, 682.923616947, 680.5786342679999, 675.1056348, 675.342671056, 673.6288167510002, 673.1554578870002, 676.5526338110001, 672.6820990230003, 671.9453170120003, 676.2593817540001, 673.313109084, 675.658448808, 671.9453170120003, 681.788893788, 678.75602966, 675.5005599320002, 676.7898481870002, 675.5005599320002, 669.3673356420002, 664.8373243799999, 675.421412552, 669.553560177, 676.7898481870002, 681.7094490329998, 676.5526338110001, 685.344017037, 676.5526338110001, 671.6298469400001], \"power_mean\": 676.3041464597568, \"energy_millijoules\": 12702.706684313654, \"energy_joules\": 12.702706684313654, \"coremark_score\": 13321.965256, \"coremarks_per_mhz\": 7.796093899812734, \"ulpmark_cm_score\": 19.680844894948297}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1079.0097371699999, 1002.2856540779999, 1052.6310947280003, 1026.7275945160002, 1042.52634951, 1106.696045496, 978.142721231, 1114.35106076, 1007.3148909, 952.2046526980001, 1105.562295348, 946.430644496, 947.3435107079999, 975.27313806, 974.63594841, 1023.9768591260001, 963.458009044, 979.673229663, 1065.721016899], \"power_mean\": 1018.1033922547895, \"energy_millijoules\": 5090.516961273947, \"energy_joules\": 5.090516961273948}}, \"1900800\": {\"active\": {\"elapsed_sec\": 16.898130567, \"elapsed_ns\": 16898130567, \"power_samples\": [815.090613268, 819.6741073619999, 837.5605876239999, 814.746853032, 825.550268508, 831.1638769839999, 831.5885851489998, 818.8125501269999, 818.8988386020001, 817.8620790119999, 819.9353609020002, 819.763107812, 817.2598026119999, 812.6794576230002, 822.5251647720002, 823.6474137870002, 818.5545697120001, 815.010661258, 815.3663022119999, 817.2598026119999, 827.9669884680002, 825.550268508, 812.1643941509999, 823.215669362, 805.5087490560002, 818.1235698419998, 822.0937171119999, 822.5247895370001, 819.590411912, 827.7934595279999, 821.3168452720001, 804.4833384760002, 831.248703746, 819.4181588220001, 821.0578879920001, 817.7793009519999, 817.6930124769999, 809.1550590080001, 818.1235698419998, 810.527317844, 816.7433130119998, 823.6505522609998, 816.0566289870001, 819.591342687, 812.9433253239999, 823.8232803200001, 813.20103518, 826.2392878, 823.477380171, 824.9446385400001, 822.7839249369999, 827.0143590820003, 829.1695683279997, 812.9433253239999, 821.1443548919999, 822.4387068870001, 820.022936697, 816.3130524119999, 821.4893356520001, 823.5639662159999, 828.2220660569999, 827.8685448079998, 817.8651469220001, 813.9795509429998, 821.0578879920001, 829.689977736], \"power_mean\": 820.3715561218788, \"energy_millijoules\": 13862.745668800475, \"energy_joules\": 13.862745668800475, \"coremark_score\": 14810.42654, \"coremarks_per_mhz\": 7.791680629208755, \"ulpmark_cm_score\": 18.03394550926881}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1014.1186038690001, 1059.320596089, 987.431108493, 1040.95350345, 1028.386485788, 1041.156764025, 1114.913180304, 1002.093748566, 1087.1662916379998, 998.390083365, 949.860107856, 1084.728842169, 966.64625736, 955.124265472, 980.293992993, 966.3081803529999, 995.665748265, 953.1444242969999, 971.7463130900001], \"power_mean\": 1010.3920261811579, \"energy_millijoules\": 5051.96013090579, \"energy_joules\": 5.0519601309057895}}, \"2016000\": {\"active\": {\"elapsed_sec\": 15.929666869, \"elapsed_ns\": 15929666869, \"power_samples\": [897.6408684640003, 911.6013636719999, 901.393951521, 889.9348556960001, 917.575886442, 895.1733886699999, 906.1366208280001, 905.9557015960002, 918.968944367, 907.5249499649999, 898.7990430780001, 907.9169226719998, 909.5772194410001, 917.1203871950001, 898.4381658750001, 893.9489533839999, 909.3050736889998, 907.9169226719998, 904.657896296, 904.296295122, 916.846994019, 912.7483830419999, 921.2193966519999, 898.2579589019999, 899.7355549600002, 906.891084699, 916.0045679059999, 905.831992726, 905.5933980440002, 907.7353004519998, 905.412478812, 907.4637985179997, 904.0248618500002, 907.6449550399998, 900.8253172199998, 904.2056624370002, 920.6526147220002, 909.6950965679998, 909.9674204399998, 910.4211381240002, 911.3595277319998, 893.913509445, 902.633526181, 918.807188862, 913.8641502119999, 913.3184325799998, 911.6817469079999, 895.299879704, 909.8769566880001, 906.4382573099999, 900.8847942000002, 913.5006499399999, 925.8647106620003, 904.779028956, 919.263751362, 922.6997849070003, 898.7430687179999, 909.604632816, 911.2943972759999, 905.07930975, 909.5137027559999, 910.088471196, 908.2164906809999], \"power_mean\": 907.8061484860317, \"energy_millijoules\": 14461.049527012434, \"energy_joules\": 14.461049527012435, \"coremark_score\": 15709.43823, \"coremarks_per_mhz\": 7.792380074404762, \"ulpmark_cm_score\": 17.28781853163658}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1004.1848967700001, 1108.29194896, 1015.0589303580001, 1035.98133084, 1049.178927368, 993.173753496, 1074.61273101, 1018.5422520959999, 951.6014090960001, 1024.659897282, 956.569788614, 1016.474802096, 978.503216768, 967.2790183599999, 1017.8225331980001, 937.420725815, 1009.1492811, 1057.84166133, 989.53828072], \"power_mean\": 1010.8360729093158, \"energy_millijoules\": 5054.180364546579, \"energy_joules\": 5.054180364546579}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm6150/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 250 ms\nBaseline power usage: 935 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 748 1017 1209 1363 1516 1593 1708\n\n 300:  1114     3.7 C/MHz    191 mW   42.8 J    5.8 I/mJ   224.5 s\n 576:  2139     3.7 C/MHz    215 mW   25.1 J   10.0 I/mJ   116.9 s\n 748:  2780     3.7 C/MHz    230 mW   20.7 J   12.1 I/mJ    89.9 s\n1017:  3779     3.7 C/MHz    253 mW   16.7 J   14.9 I/mJ    66.2 s\n1209:  4491     3.7 C/MHz    273 mW   15.2 J   16.4 I/mJ    55.7 s\n1363:  5062     3.7 C/MHz    288 mW   14.2 J   17.6 I/mJ    49.4 s\n1516:  5632     3.7 C/MHz    300 mW   13.3 J   18.8 I/mJ    44.4 s\n1593:  5917     3.7 C/MHz    309 mW   13.1 J   19.2 I/mJ    42.3 s\n1708:  6345     3.7 C/MHz    335 mW   13.2 J   18.9 I/mJ    39.4 s\n\n\n===== CPU 6 =====\nFrequencies: 300 652 768 979 1017 1209 1363 1516 1708 1900 2016\n\n 300:  2337     7.8 C/MHz    233 mW   24.9 J   10.0 I/mJ   107.0 s\n 652:  5088     7.8 C/MHz    290 mW   14.2 J   17.6 I/mJ    49.2 s\n 768:  5985     7.8 C/MHz    309 mW   12.9 J   19.4 I/mJ    41.8 s\n 979:  7628     7.8 C/MHz    358 mW   11.8 J   21.3 I/mJ    32.8 s\n1017:  7933     7.8 C/MHz    368 mW   11.6 J   21.6 I/mJ    31.5 s\n1209:  9423     7.8 C/MHz    418 mW   11.1 J   22.5 I/mJ    26.5 s\n1363: 10624     7.8 C/MHz    495 mW   11.6 J   21.5 I/mJ    23.5 s\n1516: 11817     7.8 C/MHz    568 mW   12.0 J   20.8 I/mJ    21.2 s\n1708: 13322     7.8 C/MHz    676 mW   12.7 J   19.7 I/mJ    18.8 s\n1900: 14810     7.8 C/MHz    820 mW   13.9 J   18.0 I/mJ    16.9 s\n2016: 15709     7.8 C/MHz    908 mW   14.5 J   17.3 I/mJ    15.9 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm6150/main/uptime.txt",
    "content": " 20:28:38 up 22 min,  load average: 1.72, 1.79, 1.44\n"
  },
  {
    "path": "results/sm6150/main/versions.txt",
    "content": "Kernel: Linux version 4.14.212-azure-Alfred-Intro+ (panchajanya@archlinux) (gcc version 9.3.0 (GCC), LLD 11.0.0) #5 SMP PREEMPT Sat Jan 9 22:13:29 IST 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm6150ac/main/cmdline.txt",
    "content": "rcupdate.rcu_expedited=1 rcu_nocbs=0-7 androidboot.console=ttyMSM0 androidboot.hardware=qcom androidboot.memcg=1 androidboot.usbcontroller=a600000.dwc3 console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0x880000 loop.max_part=7 lpm_levels.sleep_disabled=1 service_locator.enable=1 swiotlb=1 msm_rtb.filter=0x237 buildvariant=userdebug  androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.multisim_config=dsds androidboot.dp=0x0 androidboot.baseband=msm msm_drm.dsi_display0=dsi_panel_k7_38_0c_0a_fhdp_video_display: panel_info=1 androidboot.slot_suffix=_b rootwait ro init=/init androidboot.dtbo_idx=16 androidboot.dtb_idx=5 androidboot.force_normal_boot=1 androidboot.secureboot=1 androidboot.hwc=GLOBAL_K7A androidboot.hwversion=1.91.0 androidboot.hwlevel=MP androidboot.hwname=sunny androidboot.AdcVol1=1121 androidboot.AdcVol2=466 androidboot.product.hardware.sku=sunny\n"
  },
  {
    "path": "results/sm6150ac/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 14 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nHardware\t: Qualcomm Technologies, Inc SM6150\n"
  },
  {
    "path": "results/sm6150ac/main/device.txt",
    "content": "Model: IDP;\nCompatible: qcom,sm6150-idp;qcom,sm6150;qcom,idp;\n"
  },
  {
    "path": "results/sm6150ac/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Linux version 4.14.206-NetErnels (cyberknight777@cloud.drone.io) (aarch64-elf-gcc (Eva GCC) 12.0.0 20210627 (experimental), LLD 13.0.0) #84 SMP PREEMPT Sat Oct 9 11:21:01 UTC 2021\n[    0.000000] Boot CPU: AArch64 Processor [51df805e]\n[    0.000000] memblock_reserve: 0x7e7a0 setup_arch+0xac/0x4cc\n[    0.000000] Machine: Qualcomm Technologies, Inc. SM6150 PM6150 IDP\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff400000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fcc00000, size 40 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fc800000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node sdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f3c00000, size 140 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f2c00000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f2400000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085700000, size 6 MiB\n[    0.000000] OF: reserved mem: initialized node hyp_region@85700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085e00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node xbl_aop_mem@85e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085fff000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node sec_apps_region@85fff000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086000000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node smem@86000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086200000, size 73 MiB\n[    0.000000] OF: reserved mem: initialized node removed_region@86200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ab00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node camera_region@8ab00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b000000, size 132 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@8b000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093400000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region@93400000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093900000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_msa_region@93900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093b00000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_regions@93b00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000095900000, size 34 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region@95900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097b00000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ips_fw_region@0x97B00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097b10000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_gsi_region@0x97B10000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097b15000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@0x97B15000, compatible id removed-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x000000009e400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@0x9e400000, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000009f800000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_sec_regions@0x9f800000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 952488\n[    0.000000]   DMA zone: 6831 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 437160 pages, LIFO batch:31\n[    0.000000]   Normal zone: 8052 pages used for memmap\n[    0.000000]   Normal zone: 515328 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.1\n[    0.000000] random: fast init done\n[    0.000000] random: get_random_bytes called from start_kernel+0xa0/0x480 with crng_init=1\n[    0.000000] percpu: Embedded 21 pages/cpu s49048 r8192 d28776 u86016\n[    0.000000] pcpu-alloc: s49048 r8192 d28776 u86016 alloc=21*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] CPU features: detected: Hardware dirty bit management\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 937605\n[    0.000000] Kernel command line: rcupdate.rcu_expedited=1 rcu_nocbs=0-7 androidboot.console=ttyMSM0 androidboot.hardware=qcom androidboot.memcg=1 androidboot.usbcontroller=a600000.dwc3 console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0x880000 loop.max_part=7 lpm_levels.sleep_disabled=1 service_locator.enable=1 swiotlb=1 msm_rtb.filter=0x237 buildvariant=userdebug  androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.multisim_config=dsds androidboot.dp=0x0 androidboot.baseband=msm msm_drm.dsi_display0=dsi_panel_k7_38_0c_0a_fhdp_video_display: panel_info=1 androidboot.slot_suffix=_b rootwait ro init=/init androidboot.dtbo_idx=16 androidboot.dtb_idx=5 androidboot.force_normal_boot=1 androidboot.secureboot=1 androidboot.hwc=GLOBAL_K7A androidboot.hwversion=1.91.0 androidboot.hwlevel=MP androidboot.hw\n[    0.000000] get panel_info 1 from cmdline\n[    0.000000] board_id_hwversion_product_num : 1\n[    0.000000] board_id_hwversion_major_num : 91\n[    0.000000] board_id_hwversion_minor_num : 0\n[    0.000000] board_id_hwlevel : 9 (MP)\n[    0.000000] board_id_hwname : sunny\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off\n[    0.000000] software IO TLB: mapped [mem 0xfffbf000-0xfffff000] (0MB)\n[    0.000000] Memory: 3427696K/3809952K available (24062K kernel code, 3124K rwdata, 12312K rodata, 6144K init, 9245K bss, 161072K reserved, 221184K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000017a60000\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000014] clocksource: Switched to clocksource arch_sys_counter\n[    0.001834] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001849] pid_max: default: 32768 minimum: 301\n[    0.001944] Security Framework initialized\n[    0.001955] SELinux:  Initializing.\n[    0.002024] SELinux:  Starting in permissive mode\n[    0.002061] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.002073] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.014242] ASID allocator initialised with 65536 entries\n[    0.016344] Hierarchical SRCU implementation.\n[    0.021060] MSM Memory Dump base table set up\n[    0.021079] MSM Memory Dump apps data table set up\n[    0.023537] smp: Bringing up secondary CPUs ...\n[    0.033100] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000\n[    0.033145] CPU1: Booted secondary processor [51df805e]\n[    0.042832] GICv3: CPU2: found redistributor 200 region 0:0x0000000017aa0000\n[    0.042870] CPU2: Booted secondary processor [51df805e]\n[    0.052592] GICv3: CPU3: found redistributor 300 region 0:0x0000000017ac0000\n[    0.052626] CPU3: Booted secondary processor [51df805e]\n[    0.062407] GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000\n[    0.062437] CPU4: Booted secondary processor [51df805e]\n[    0.072321] GICv3: CPU5: found redistributor 500 region 0:0x0000000017b00000\n[    0.072350] CPU5: Booted secondary processor [51df805e]\n[    0.083044] CPU features: Unsupported CPU feature variation detected.\n[    0.083077] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000\n[    0.083126] CPU6: Booted secondary processor [51df804e]\n[    0.093714] GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000\n[    0.093768] CPU7: Booted secondary processor [51df804e]\n[    0.094037] smp: Brought up 1 node, 8 CPUs\n[    0.094066] SMP: Total of 8 processors activated.\n[    0.094071] CPU features: detected: GIC system register CPU interface\n[    0.094075] CPU features: detected: Privileged Access Never\n[    0.094078] CPU features: detected: User Access Override\n[    0.094081] CPU features: detected: 32-bit EL0 Support\n[    0.094660] CPU: All CPU(s) started at EL1\n[    0.094709] alternatives: patching kernel code\n[    0.096219] scm_enable_mem_protection: SCM call failed\n[    0.140924] Registered cp15_barrier emulation handler\n[    0.140961] Registered setend emulation handler\n[    0.141314] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.141338] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.147715] pinctrl core: initialized pinctrl subsystem\n[    0.148475] NET: Registered protocol family 16\n[    0.151117] schedtune: configured to support 6 boost groups\n[    0.152862] cpuidle: using governor menu\n[    0.152935] cpuidle: using governor qcom\n[    0.153028] NET: Registered protocol family 42\n[    0.159822] vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.159835] vdso32: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.159855] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.161109] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.161614] Failed to create IPC log0\n[    0.161621] Failed to create IPC log1\n[    0.161627] Failed to create IPC log2\n[    0.161633] Failed to create IPC log3\n[    0.161639] Failed to create IPC log4\n[    0.161798] exit: IPA_USB init success!\n[    0.162234] ramoops: dump_mem_sz=1048576,cxt->record_size=524288,cxt->size=4194304,cxt->console_size=1048576,cxt->ftrace_size=0,cxt->pmsg_size=2097152\n[    0.162649] pstore: using zlib compression\n[    0.163435] console [pstore-1] enabled\n[    0.163519] pstore: Registered ramoops as persistent store backend\n[    0.163533] ramoops: attached 0x400000@0x9d800000, ecc: 0/0\n[    0.167126] unable to find DT imem DLOAD mode node\n[    0.168335] unable to find DT imem EDLOAD mode node\n[    0.169294] sps:sps is ready.\n[    0.170701] msm_watchdog 17c10000.qcom,wdt: wdog absent resource not present\n[    0.172168] msm_watchdog 17c10000.qcom,wdt: MSM Watchdog Initialized\n[    0.187769] platform 86d00000.qseecom: assigned reserved memory node qseecom_region@0x9e400000\n[    0.189338] spmi spmi-0: PMIC arbiter version v5 (0x50000000)\n[    0.190074] platform soc:qcom,smem: assigned reserved memory node smem@86000000\n[    0.190809] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.193699] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.197017] platform 62400000.qcom,lpass: assigned reserved memory node pil_adsp_region@95900000\n[    0.197233] platform 4080000.qcom,mss: assigned reserved memory node modem_region@8b000000\n[    0.197444] platform 8300000.qcom,turing: assigned reserved memory node cdsp_regions@93b00000\n[    0.197572] platform aae0000.qcom,venus: assigned reserved memory node pil_video_region@93400000\n[    0.197782] (NULL device *): msm_gsi_probe:4608 failed to create IPC log, continue...\n[    0.198426] platform soc:qcom,ipa_fws: assigned reserved memory node ips_fw_region@0x97B00000\n[    0.202486] sm6150-pinctrl 3000000.pinctrl: invalid resource\n[    0.206181] pm6150_s1_level: supplied by pm6150_s3_level\n[    0.206304] pm6150_s1_level_ao: supplied by pm6150_s3_level_ao\n[    0.235543] OF: amba_device_add() failed (-16) for /soc/cti@6867000\n[    0.251968] msm-sn-fuse 786134.snfuse: serial num: d84553bd buqingshuai\n[    0.251988] msm-sn-fuse 786134.snfuse: fuse state: 0x0,0x0,0x0 buqingshuai\n[    0.252000] msm-sn-fuse 786134.snfuse: SN interface initializedbuqingshuai\n[    0.276331] gpu_cx_gdsc: supplied by pm6150_s1_level\n[    0.277178] clk: clk_osm_read_lut: index=0 freq=300000000 virtual_corner=0 open_loop_voltage=588\n[    0.277199] clk: clk_osm_read_lut: index=1 freq=576000000 virtual_corner=1 open_loop_voltage=588\n[    0.277213] clk: clk_osm_read_lut: index=2 freq=806400000 virtual_corner=2 open_loop_voltage=636\n[    0.277226] clk: clk_osm_read_lut: index=3 freq=940800000 virtual_corner=3 open_loop_voltage=676\n[    0.277239] clk: clk_osm_read_lut: index=4 freq=1017600000 virtual_corner=4 open_loop_voltage=696\n[    0.277251] clk: clk_osm_read_lut: index=5 freq=1209600000 virtual_corner=5 open_loop_voltage=760\n[    0.277264] clk: clk_osm_read_lut: index=6 freq=1363200000 virtual_corner=6 open_loop_voltage=844\n[    0.277276] clk: clk_osm_read_lut: index=7 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277288] clk: clk_osm_read_lut: index=8 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277300] clk: clk_osm_read_lut: index=9 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277312] clk: clk_osm_read_lut: index=10 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277325] clk: clk_osm_read_lut: index=11 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277337] clk: clk_osm_read_lut: index=12 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277349] clk: clk_osm_read_lut: index=13 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277361] clk: clk_osm_read_lut: index=14 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277373] clk: clk_osm_read_lut: index=15 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277385] clk: clk_osm_read_lut: index=16 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277397] clk: clk_osm_read_lut: index=17 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277409] clk: clk_osm_read_lut: index=18 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277421] clk: clk_osm_read_lut: index=19 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277433] clk: clk_osm_read_lut: index=20 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277444] clk: clk_osm_read_lut: index=21 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277456] clk: clk_osm_read_lut: index=22 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277468] clk: clk_osm_read_lut: index=23 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277480] clk: clk_osm_read_lut: index=24 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277492] clk: clk_osm_read_lut: index=25 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277504] clk: clk_osm_read_lut: index=26 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277516] clk: clk_osm_read_lut: index=27 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277528] clk: clk_osm_read_lut: index=28 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277540] clk: clk_osm_read_lut: index=29 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277552] clk: clk_osm_read_lut: index=30 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277564] clk: clk_osm_read_lut: index=31 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277576] clk: clk_osm_read_lut: index=32 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277588] clk: clk_osm_read_lut: index=33 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277600] clk: clk_osm_read_lut: index=34 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277612] clk: clk_osm_read_lut: index=35 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277624] clk: clk_osm_read_lut: index=36 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277635] clk: clk_osm_read_lut: index=37 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277647] clk: clk_osm_read_lut: index=38 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277659] clk: clk_osm_read_lut: index=39 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.277672] clk: clk_osm_read_lut: index=0 freq=300000000 virtual_corner=0 open_loop_voltage=588\n[    0.277684] clk: clk_osm_read_lut: index=1 freq=576000000 virtual_corner=1 open_loop_voltage=588\n[    0.277696] clk: clk_osm_read_lut: index=2 freq=748800000 virtual_corner=2 open_loop_voltage=588\n[    0.277708] clk: clk_osm_read_lut: index=3 freq=1017600000 virtual_corner=3 open_loop_voltage=664\n[    0.277721] clk: clk_osm_read_lut: index=4 freq=1209600000 virtual_corner=4 open_loop_voltage=728\n[    0.277733] clk: clk_osm_read_lut: index=5 freq=1363200000 virtual_corner=5 open_loop_voltage=744\n[    0.277745] clk: clk_osm_read_lut: index=6 freq=1516800000 virtual_corner=6 open_loop_voltage=772\n[    0.277757] clk: clk_osm_read_lut: index=7 freq=1593600000 virtual_corner=7 open_loop_voltage=804\n[    0.277769] clk: clk_osm_read_lut: index=8 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.277781] clk: clk_osm_read_lut: index=9 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.277793] clk: clk_osm_read_lut: index=10 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.277805] clk: clk_osm_read_lut: index=11 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.277817] clk: clk_osm_read_lut: index=12 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.277830] clk: clk_osm_read_lut: index=13 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.277842] clk: clk_osm_read_lut: index=14 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.277854] clk: clk_osm_read_lut: index=15 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.277866] clk: clk_osm_read_lut: index=16 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.277878] clk: clk_osm_read_lut: index=17 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.277890] clk: clk_osm_read_lut: index=18 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.277903] clk: clk_osm_read_lut: index=19 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.277915] clk: clk_osm_read_lut: index=20 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.277927] clk: clk_osm_read_lut: index=21 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.277939] clk: clk_osm_read_lut: index=22 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.277951] clk: clk_osm_read_lut: index=23 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.277963] clk: clk_osm_read_lut: index=24 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.277975] clk: clk_osm_read_lut: index=25 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.277987] clk: clk_osm_read_lut: index=26 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.277999] clk: clk_osm_read_lut: index=27 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.278011] clk: clk_osm_read_lut: index=28 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.278023] clk: clk_osm_read_lut: index=29 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.278035] clk: clk_osm_read_lut: index=30 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.278047] clk: clk_osm_read_lut: index=31 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.278059] clk: clk_osm_read_lut: index=32 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.278071] clk: clk_osm_read_lut: index=33 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.278084] clk: clk_osm_read_lut: index=34 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.278096] clk: clk_osm_read_lut: index=35 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.278108] clk: clk_osm_read_lut: index=36 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.278120] clk: clk_osm_read_lut: index=37 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.278132] clk: clk_osm_read_lut: index=38 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.278144] clk: clk_osm_read_lut: index=39 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.278157] clk: clk_osm_read_lut: index=0 freq=300000000 virtual_corner=0 open_loop_voltage=588\n[    0.278170] clk: clk_osm_read_lut: index=1 freq=652800000 virtual_corner=1 open_loop_voltage=588\n[    0.278182] clk: clk_osm_read_lut: index=2 freq=768000000 virtual_corner=2 open_loop_voltage=588\n[    0.278194] clk: clk_osm_read_lut: index=3 freq=979200000 virtual_corner=3 open_loop_voltage=628\n[    0.278206] clk: clk_osm_read_lut: index=4 freq=1017600000 virtual_corner=4 open_loop_voltage=636\n[    0.278219] clk: clk_osm_read_lut: index=5 freq=1209600000 virtual_corner=5 open_loop_voltage=668\n[    0.278230] clk: clk_osm_read_lut: index=6 freq=1363200000 virtual_corner=6 open_loop_voltage=716\n[    0.278242] clk: clk_osm_read_lut: index=7 freq=1516800000 virtual_corner=7 open_loop_voltage=776\n[    0.278254] clk: clk_osm_read_lut: index=8 freq=1708800000 virtual_corner=8 open_loop_voltage=832\n[    0.278266] clk: clk_osm_read_lut: index=9 freq=1900800000 virtual_corner=9 open_loop_voltage=896\n[    0.278279] clk: clk_osm_read_lut: index=10 freq=2016000000 virtual_corner=10 open_loop_voltage=932\n[    0.278292] clk: clk_osm_read_lut: index=11 freq=2112000000 virtual_corner=11 open_loop_voltage=960\n[    0.278305] clk: clk_osm_read_lut: index=12 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278318] clk: clk_osm_read_lut: index=13 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278330] clk: clk_osm_read_lut: index=14 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278343] clk: clk_osm_read_lut: index=15 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278355] clk: clk_osm_read_lut: index=16 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278367] clk: clk_osm_read_lut: index=17 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278380] clk: clk_osm_read_lut: index=18 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278392] clk: clk_osm_read_lut: index=19 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278404] clk: clk_osm_read_lut: index=20 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278416] clk: clk_osm_read_lut: index=21 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278428] clk: clk_osm_read_lut: index=22 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278441] clk: clk_osm_read_lut: index=23 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278453] clk: clk_osm_read_lut: index=24 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278465] clk: clk_osm_read_lut: index=25 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278477] clk: clk_osm_read_lut: index=26 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278490] clk: clk_osm_read_lut: index=27 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278502] clk: clk_osm_read_lut: index=28 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278514] clk: clk_osm_read_lut: index=29 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278527] clk: clk_osm_read_lut: index=30 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278539] clk: clk_osm_read_lut: index=31 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278551] clk: clk_osm_read_lut: index=32 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278563] clk: clk_osm_read_lut: index=33 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278576] clk: clk_osm_read_lut: index=34 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278588] clk: clk_osm_read_lut: index=35 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278600] clk: clk_osm_read_lut: index=36 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278613] clk: clk_osm_read_lut: index=37 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278625] clk: clk_osm_read_lut: index=38 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278637] clk: clk_osm_read_lut: index=39 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.278814] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu0\n[    0.278834] clk: add_opp: Set OPP pair (1708800000 Hz, 856000 uv) on cpu0\n[    0.278856] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu1\n[    0.278876] clk: add_opp: Set OPP pair (1708800000 Hz, 856000 uv) on cpu1\n[    0.278897] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu2\n[    0.278915] clk: add_opp: Set OPP pair (1708800000 Hz, 856000 uv) on cpu2\n[    0.278934] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu3\n[    0.278951] clk: add_opp: Set OPP pair (1708800000 Hz, 856000 uv) on cpu3\n[    0.278971] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu4\n[    0.278987] clk: add_opp: Set OPP pair (1708800000 Hz, 856000 uv) on cpu4\n[    0.279012] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu5\n[    0.279029] clk: add_opp: Set OPP pair (1708800000 Hz, 856000 uv) on cpu5\n[    0.279049] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu6\n[    0.279071] clk: add_opp: Set OPP pair (2208000000 Hz, 1020000 uv) on cpu6\n[    0.279093] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu7\n[    0.279116] clk: add_opp: Set OPP pair (2208000000 Hz, 1020000 uv) on cpu7\n[    0.279404] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.279416] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on soc:qcom,cpu6-cpu-l3-lat\n[    0.279427] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.279438] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on 5000000.qcom,kgsl-3d0\n[    0.279474] clk: add_opp: Set OPP pair (1363200000 Hz, 844000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.279485] clk: add_opp: Set OPP pair (1363200000 Hz, 844000 uv) on soc:qcom,cpu6-cpu-l3-lat\n[    0.279495] clk: add_opp: Set OPP pair (1363200000 Hz, 844000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.279506] clk: add_opp: Set OPP pair (1363200000 Hz, 844000 uv) on 5000000.qcom,kgsl-3d0\n[    0.280592] sched-energy: Sched-energy-costs installed from DT\n[    0.280689] cpufreq: driver osm-cpufreq up and running\n[    0.280700] clk: clk_cpu_osm_driver_probe: OSM CPUFreq driver inited\n[    0.281685] cam_cc_bps_clk_src: set OPP pair(200000000 Hz: 65 uV) on ac6f000.qcom,bps\n[    0.281692] cam_cc_bps_clk_src: set OPP pair(600000000 Hz: 385 uV) on ac6f000.qcom,bps\n[    0.281740] cam_cc_cci_clk_src: set OPP pair(37500000 Hz: 65 uV) on ac4a000.qcom,cci\n[    0.281743] cam_cc_cci_clk_src: set OPP pair(100000000 Hz: 257 uV) on ac4a000.qcom,cci\n[    0.281807] cam_cc_csi0phytimer_clk_src: set OPP pair(100000000 Hz: 65 uV) on ac65000.qcom,csiphy\n[    0.281810] cam_cc_csi0phytimer_clk_src: set OPP pair(269333333 Hz: 193 uV) on ac65000.qcom,csiphy\n[    0.281851] cam_cc_csi1phytimer_clk_src: set OPP pair(100000000 Hz: 65 uV) on ac66000.qcom,csiphy\n[    0.281854] cam_cc_csi1phytimer_clk_src: set OPP pair(269333333 Hz: 193 uV) on ac66000.qcom,csiphy\n[    0.281896] cam_cc_csi2phytimer_clk_src: set OPP pair(100000000 Hz: 65 uV) on ac67000.qcom,csiphy\n[    0.281899] cam_cc_csi2phytimer_clk_src: set OPP pair(269333333 Hz: 193 uV) on ac67000.qcom,csiphy\n[    0.282013] cam_cc_icp_clk_src: set OPP pair(240000000 Hz: 65 uV) on ac00000.qcom,a5\n[    0.282018] cam_cc_icp_clk_src: set OPP pair(600000000 Hz: 385 uV) on ac00000.qcom,a5\n[    0.282107] cam_cc_ife_0_clk_src: set OPP pair(240000000 Hz: 65 uV) on acaf000.qcom,vfe0\n[    0.282111] cam_cc_ife_0_clk_src: set OPP pair(600000000 Hz: 385 uV) on acaf000.qcom,vfe0\n[    0.282179] cam_cc_ife_0_csid_clk_src: set OPP pair(100000000 Hz: 65 uV) on acb3000.qcom,csid0\n[    0.282183] cam_cc_ife_0_csid_clk_src: set OPP pair(540000000 Hz: 385 uV) on acb3000.qcom,csid0\n[    0.282273] cam_cc_ife_1_clk_src: set OPP pair(240000000 Hz: 65 uV) on acb6000.qcom,vfe1\n[    0.282277] cam_cc_ife_1_clk_src: set OPP pair(600000000 Hz: 385 uV) on acb6000.qcom,vfe1\n[    0.282354] cam_cc_ife_1_csid_clk_src: set OPP pair(100000000 Hz: 65 uV) on acba000.qcom,csid1\n[    0.282359] cam_cc_ife_1_csid_clk_src: set OPP pair(540000000 Hz: 385 uV) on acba000.qcom,csid1\n[    0.282445] cam_cc_ife_lite_clk_src: set OPP pair(240000000 Hz: 65 uV) on acc4000.qcom,vfe-lite\n[    0.282449] cam_cc_ife_lite_clk_src: set OPP pair(600000000 Hz: 385 uV) on acc4000.qcom,vfe-lite\n[    0.282538] cam_cc_ife_lite_csid_clk_src: set OPP pair(100000000 Hz: 65 uV) on acc8000.qcom,csid-lite\n[    0.282543] cam_cc_ife_lite_csid_clk_src: set OPP pair(540000000 Hz: 385 uV) on acc8000.qcom,csid-lite\n[    0.282688] cam_cc_ipe_0_clk_src: set OPP pair(240000000 Hz: 65 uV) on ac87000.qcom,ipe0\n[    0.282693] cam_cc_ipe_0_clk_src: set OPP pair(600000000 Hz: 385 uV) on ac87000.qcom,ipe0\n[    0.283197] cam_cc-sm6150 ad00000.qcom,camcc: Registered Camera CC clocks\n[    0.283849] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.284814] clk-rpmh soc:qcom,rpmhclk: Registered RPMh clocks\n[    0.285356] disp_cc-sm6150 af00000.qcom,dispcc: Registered Display CC clocks\n[    0.289501] gcc-sm6150 100000.qcom,gcc: Registered GCC clocks\n[    0.290349] gpu_cc_gx_gfx3d_clk_src: set OPP pair(290000000 Hz: 65 uV) on 5000000.qcom,kgsl-3d0\n[    0.290358] gpu_cc_gx_gfx3d_clk_src: set OPP pair(845000000 Hz: 385 uV) on 5000000.qcom,kgsl-3d0\n[    0.290361] gpu_cc_gx_gfx3d_clk_src: set OPP pair(895000000 Hz: 417 uV) on 5000000.qcom,kgsl-3d0\n[    0.290414] gpu_cc-sm6150 5090000.qcom,gpupcc: Registered GPU CC clocks\n[    0.291155] video_cc-sm6150 ab00000.qcom,videocc: Registered Video CC clocks\n[    0.292700] KPI: Bootloader start count = 57255\n[    0.292705] KPI: Bootloader end count = 266115\n[    0.292708] KPI: Bootloader load kernel count = 1765148542\n[    0.292711] KPI: Kernel MPM timestamp = 280763\n[    0.292713] KPI: Kernel MPM Clock frequency = 32768\n[    0.292723] socinfo_print: v0.15, id=355, ver=1.1, raw_id=149, raw_ver=1, hw_plat=34, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65576, pmic_die_revision=131072 foundry_id=3 serial_number=3628422077 num_pmics=2 chip_family=0x5c raw_device_family=0x6 raw_device_number=0x7 nproduct_id=0x40e num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xc ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.292773] Minidump: Enabled with max number of regions 200\n[    0.293179] Unable to find DT property: qcom,msm-imem-minidump-debug\n[    0.293199] Failed to setup PIL ipc logging\n[    0.293204] msm_bus_fabric_rpmh_init_driver\n[    0.293382] msm_bus: Probe started\n[    0.293555] msm_bus_device 1700000.ad-hoc-bus: Bus type is missing\n[    0.293577] msm_bus_device 1700000.ad-hoc-bus: Bus type is missing\n[    0.293582] msm_bus_device 1700000.ad-hoc-bus: Bus type is missing\n[    0.293598] msm_bus_device 1700000.ad-hoc-bus: Bus type is missing\n[    0.294082] msm_bus: DT Parsing complete\n[    0.295598] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.295656] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.295684] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.295735] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.300436] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_sensor_0_vana, deferring probe\n[    0.300450] reg-fixed-voltage 2.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_sensor_1_2_vana, deferring probe\n[    0.300946] arm-smmu 50a0000.kgsl-smmu: \tnon-coherent table walk\n[    0.300951] arm-smmu 50a0000.kgsl-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.300954] arm-smmu 50a0000.kgsl-smmu: \tstream matching with 4 register groups\n[    0.301962] register_client_adhoc:find path.src 161 dest 627\n[    0.302033] register_client_adhoc:Client handle 1 apps_smmu\n[    0.302135] arm-smmu 15000000.apps-smmu: \tnon-coherent table walk\n[    0.302140] arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.302143] arm-smmu 15000000.apps-smmu: \tstream matching with 68 register groups\n[    0.302761] register_client_adhoc:find path.src 161 dest 627\n[    0.302813] register_client_adhoc:Client handle 2 apps_smmu\n[    0.302880] register_client_adhoc:find path.src 161 dest 627\n[    0.302927] register_client_adhoc:Client handle 3 apps_smmu\n[    0.302994] register_client_adhoc:find path.src 22 dest 773\n[    0.303022] register_client_adhoc:Client handle 4 mnoc_hf_0_tbu\n[    0.303084] register_client_adhoc:find path.src 137 dest 772\n[    0.303110] register_client_adhoc:Client handle 5 mnoc_sf_0_tbu\n[    0.303160] register_client_adhoc:find path.src 161 dest 627\n[    0.303209] register_client_adhoc:Client handle 6 apps_smmu\n[    0.303270] register_client_adhoc:find path.src 161 dest 627\n[    0.303316] register_client_adhoc:Client handle 7 apps_smmu\n[    0.303640] qcom,qpnp-misc c440000.qcom,spmi:qcom,pm6150@0:qcom,misc@900: probe successful\n[    0.303949] SCSI subsystem initialized\n[    0.303983] usbcore: registered new interface driver usbfs\n[    0.303991] usbcore: registered new interface driver hub\n[    0.304075] usbcore: registered new device driver usb\n[    0.304250] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.304477] xiaomi_touch_probe enter\n[    0.304480] xiaomi_touch_parse_dt touch,name:xiaomi-touch\n[    0.304510] xiaomi_touch_probe over\n[    0.304604] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.304624] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.304711] input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800/input/input0\n[    0.305465] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150l@4:qcom,power-on@800: PMIC@SID4 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'cold' boot\n[    0.305485] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150l@4:qcom,power-on@800: PMIC@SID4: Power-off reason: Triggered from SOFT (Software)\n[    0.305626] media: Linux media interface: v0.10\n[    0.305634] Linux video capture interface: v2.00\n[    0.305645] pps_core: LinuxPPS API ver. 1 registered\n[    0.305648] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>\n[    0.305651] PTP clock support registered\n[    0.306915] thermal_sys: VIRTUAL-SENSOR board sensor: \n[    0.306919] board sensor: VIRTUAL-SENSOR\n[    0.306921] dsi-drm:[drm_register_client] drm_register_client,63\n[    0.308502] tsens_tm_probe : unable to create IPC Logging 0 for tsens 0x000000000c263000\n[    0.308504] tsens_tm_probe : unable to create IPC Logging 1 for tsens 0x000000000c263000\n[    0.308509] tsens_tm_probe : unable to create IPC Logging 2 for tsens 0x000000000c263000\n[    0.308857] EDAC MC: Ver: 3.0.0\n[    0.309596] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@0x9e400000\n[    0.309627] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.309653] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.309676] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.309742] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node sdsp_region\n[    0.309781] ION heap system created\n[    0.309893] ION heap qsecom created at 0x000000009e400000 with size 1400000\n[    0.309896] ION heap qsecom_ta created at 0x00000000f2c00000 with size 1000000\n[    0.309898] ION heap spss created at 0x00000000f2400000 with size 800000\n[    0.309901] ION heap secure_display created at 0x00000000f3c00000 with size 8c00000\n[    0.322131] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x9f800000, size 0x1e00000\n[    0.322135] ION heap secure_carveout created\n[    0.322139] ION heap secure_heap created\n[    0.322142] ION heap adsp created at 0x00000000fc800000 with size 400000\n[    0.322719] qupv3_geni_se 8c0000.qcom,qupv3_0_geni_se: geni_se_probe Failed to allocate log context\n[    0.322888] iommu: Adding device 8c0000.qcom,qupv3_0_geni_se:qcom,iommu_qupv3_0_geni_se_cb to group 0\n[    0.322938] qupv3_geni_se ac0000.qcom,qupv3_1_geni_se: geni_se_probe Failed to allocate log context\n[    0.323060] iommu: Adding device ac0000.qcom,qupv3_1_geni_se:qcom,iommu_qupv3_1_geni_se_cb to group 1\n[    0.323291] PMIC@SID0: PM6150 v2.0 options: 0, 0, 0, 0\n[    0.323371] PMIC@SID4: PM8150L v3.0 options: 0, 0, 0, 0\n[    0.323953] register_client_adhoc:find path.src 90 dest 512\n[    0.324095] register_client_adhoc:find path.src 90 dest 585\n[    0.324143] register_client_adhoc:find path.src 1 dest 676\n[    0.324218] register_client_adhoc:find path.src 143 dest 777\n[    0.324242] register_client_adhoc:Client handle 8 ipa\n[    0.325984] ipa ipa3_smp2p_probe:8828 fail to get smp2p clk resp bit -517\n[    0.326351] iommu: Adding device soc:ipa_smmu_ap to group 2\n[    0.326526] iommu: Adding device soc:ipa_smmu_wlan to group 3\n[    0.326662] iommu: Adding device soc:ipa_smmu_uc to group 4\n[    0.327617] ipa ipa3_smp2p_probe:8828 fail to get smp2p clk resp bit -517\n[    0.328976] Advanced Linux Sound Architecture Driver Initialized.\n[    0.329393] Bluetooth: Core ver 2.22\n[    0.329413] NET: Registered protocol family 31\n[    0.329419] Bluetooth: HCI device and connection manager initialized\n[    0.329429] Bluetooth: HCI socket layer initialized\n[    0.329438] Bluetooth: L2CAP socket layer initialized\n[    0.329447] Bluetooth: SCO socket layer initialized\n[    0.329868] NetLabel: Initializing\n[    0.329875] NetLabel:  domain hash size = 128\n[    0.329880] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\n[    0.329921] NetLabel:  unlabeled traffic allowed by default\n[    0.329964] pcie:pcie_init.\n[    0.331444] register_client_adhoc:find path.src 22 dest 512\n[    0.331648] register_client_adhoc:Client handle 9 bus-proxy-client\n[    0.332920] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=0 ldo_voltage=5500mV ncp_voltage=5500mV bst_voltage=5650mV\n[    0.332978] sched-energy energy-costs: cpu=0 eff=1024 [freq=300000 cap=82 power_d0=24] -> [freq=1804800 cap=467 power_d0=178]\n[    0.332981] sched-energy energy-costs: cpu=1 eff=1024 [freq=300000 cap=82 power_d0=24] -> [freq=1804800 cap=467 power_d0=178]\n[    0.332985] sched-energy energy-costs: cpu=2 eff=1024 [freq=300000 cap=82 power_d0=24] -> [freq=1804800 cap=467 power_d0=178]\n[    0.332988] sched-energy energy-costs: cpu=3 eff=1024 [freq=300000 cap=82 power_d0=24] -> [freq=1804800 cap=467 power_d0=178]\n[    0.332992] sched-energy energy-costs: cpu=4 eff=1024 [freq=300000 cap=82 power_d0=24] -> [freq=1804800 cap=467 power_d0=178]\n[    0.332995] sched-energy energy-costs: cpu=5 eff=1024 [freq=300000 cap=82 power_d0=24] -> [freq=1804800 cap=467 power_d0=178]\n[    0.332999] sched-energy energy-costs: cpu=6 eff=1740 [freq=300000 cap=140 power_d0=180] -> [freq=2208000 cap=1024 power_d0=2713]\n[    0.333002] sched-energy energy-costs: cpu=7 eff=1740 [freq=300000 cap=140 power_d0=180] -> [freq=2208000 cap=1024 power_d0=2713]\n[    0.333006] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.333103] gpu_gx_gdsc: supplied by pm6150_s1_level\n[    0.333138] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_sensor_0_vana, deferring probe\n[    0.333165] reg-fixed-voltage 2.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_sensor_1_2_vana, deferring probe\n[    0.333194] ipa ipa3_smp2p_probe:8828 fail to get smp2p clk resp bit -517\n[    0.333496] clocksource: Switched to clocksource arch_sys_counter\n[    0.349693] VFS: Disk quotas dquot_6.6.0\n[    0.349720] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.350267] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.350272] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.350938] dsi_pll_clock_register_14nm: Registered DSI PLL ndx=0 clocks successfully\n[    0.351080] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.351544] NET: Registered protocol family 2\n[    0.351734] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.351774] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.351890] TCP: Hash tables configured (established 32768 bind 32768)\n[    0.351946] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.351960] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.352023] NET: Registered protocol family 1\n[    0.352033] PCI: CLS 0 bytes, default 128\n[    0.352095] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_sensor_0_vana, deferring probe\n[    0.352125] reg-fixed-voltage 2.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_sensor_1_2_vana, deferring probe\n[    0.352163] ipa ipa3_smp2p_probe:8828 fail to get smp2p clk resp bit -517\n[    0.352280] Trying to unpack rootfs image as initramfs...\n[    0.473077] Freeing initrd memory: 7492K\n[    0.474033] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.478267] Initialise system trusted keyrings\n[    0.478356] workingset: timestamp_bits=61 max_order=20 bucket_order=0\n[    0.479201] exFAT: Version 1.2.9\n[    0.479345] Registering sdcardfs 0.1\n[    0.479394] fuse init (API version 7.26)\n[    0.479520] SELinux:  Registering netfilter hooks\n[    0.483567] Key type asymmetric registered\n[    0.483573] Asymmetric key parser 'x509' registered\n[    0.483600] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 240)\n[    0.483604] io scheduler noop registered\n[    0.483606] io scheduler deadline registered\n[    0.483622] io scheduler cfq registered (default)\n[    0.483624] io scheduler mq-deadline registered\n[    0.483626] io scheduler kyber registered\n[    0.489208] iommu: Adding device 800000.qcom,gpi-dma to group 5\n[    0.489906] iommu: Adding device a00000.qcom,gpi-dma to group 6\n[    0.491942] icnss: Unable to create log context\n[    0.491948] icnss: Unable to create log long context\n[    0.492134] iommu: Adding device 18800000.qcom,icnss to group 7\n[    0.492157] icnss: Recursive recovery allowed for WLAN\n[    0.492717] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.492781] icnss: Unable to create debugfs -19\n[    0.492809] icnss: Platform driver probed successfully\n[    0.493415] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.493544] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.493602] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.494009] register_client_adhoc:find path.src 125 dest 512\n[    0.494151] register_client_adhoc:Client handle 10 scm_pas\n[    0.494156] minidump-id not found for adsp\n[    0.494568] minidump-id not found for cdsp\n[    0.494769] register_client_adhoc:find path.src 63 dest 512\n[    0.494856] register_client_adhoc:Client handle 11 pil-venus\n[    0.494860] minidump-id not found for venus\n[    0.494868] subsys-pil-tz aae0000.qcom,venus: for venus segments only will be dumped.\n[    0.494881] subsys-pil-tz aae0000.qcom,venus: for md_venus segments only will be dumped.\n[    0.494931] minidump-id not found for ipa_fws\n[    0.494935] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    0.494946] subsys-pil-tz soc:qcom,ipa_fws: for md_ipa_fws segments only will be dumped.\n[    0.495053] minidump-id not found for a612_zap\n[    0.495057] subsys-pil-tz soc:qcom,kgsl-hyp: for a612_zap segments only will be dumped.\n[    0.495069] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a612_zap segments only will be dumped.\n[    0.496417] smp2p_sleepstate soc:qcom,smp2p_sleepstate: got smp2p-sleepstate-in irq 377\n[    0.497830] msm_geni_serial a8c000.qcom,qup_uart: Wakeup byte 0xfd\n[    0.497942] msm_geni_serial a8c000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    0.497948] msm_geni_serial a8c000.qcom,qup_uart: Failed to create dbg dir\n[    0.497952] msm_geni_serial a8c000.qcom,qup_uart: Err in Rx IPC Log\n[    0.497955] msm_geni_serial a8c000.qcom,qup_uart: Err in Tx IPC Log\n[    0.497957] msm_geni_serial a8c000.qcom,qup_uart: Err in Pwr IPC Log\n[    0.497960] msm_geni_serial a8c000.qcom,qup_uart: Err in Misc IPC Log\n[    0.498233] a8c000.qcom,qup_uart: ttyHS0 at MMIO 0xa8c000 (irq = 246, base_baud = 0) is a MSM\n[    0.498426] msm_geni_serial_init: Driver initialized\n[    0.498857] diag: Pcie registration initiated for id: 0\n[    0.499022] diag: diag_pcie_register: failed registering pcie channels\n[    0.499025] diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    0.499028] diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    0.503816] register_client_adhoc:find path.src 20003 dest 20515\n[    0.503878] register_client_adhoc:Client handle 12 disp_rsc_mnoc\n[    0.503891] register_client_adhoc:find path.src 20001 dest 20513\n[    0.503918] register_client_adhoc:Client handle 13 disp_rsc_llcc\n[    0.503930] register_client_adhoc:find path.src 20000 dest 20512\n[    0.503957] register_client_adhoc:Client handle 14 disp_rsc_ebi\n[    0.504125] [sde_rsc_hw:rsc_hw_init:714]: sde rsc init successfully done\n[    0.504159] [sde_rsc:sde_rsc_probe:1910]: sde rsc index:0 probed successfully\n[    0.504547] dsi_phy ae94400.qcom,mdss_dsi_phy0: ae94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    0.504566] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-0\n[    0.504878] drm_dsi_ctrl ae94000.qcom,mdss_dsi_ctrl0: ae94000.qcom,mdss_dsi_ctrl0 supply refgen not found, using dummy regulator\n[    0.504894] AXI: get_pdata(): Error: Client name not found\n[    0.504896] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.504899] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-0\n[    0.505166] msm-dsi-display:[dsi_display_parse_te_data] invalid vsync source selection\n[    0.505172] OF: graph: no port node found in /soc/qcom,dsi-display\n[    0.505185] msm-dsi-panel:[dsi_panel_get:3560] [LCD]dsi_panel_get:3560 Dispparam enabled.\n[    0.505188] msm-dsi-panel:[dsi_panel_get:3586] xy_coordinate_cmds->enabled:1\n[    0.505197] msm-dsi-panel:[dsi_panel_parse_triggers:1222] [k7 38 0c 0a video mode fhdp dsi panel] fallback to default te-pin-select\n[    0.505209] msm-dsi-panel:[dsi_panel_parse_panel_mode:1739] dsi_panel_parse_panel_mode: panel operating mode switch feature disabled\n[    0.505220] msm-dsi-panel:[dsi_panel_parse_qsync_caps:1422] [k7 38 0c 0a video mode fhdp dsi panel] qsync min fps not defined rc:-22\n[    0.505231] msm-dsi-panel:[dsi_panel_parse_reset_sequence:2200] RESET SEQ LENGTH = 16\n[    0.505252] msm-dsi-panel:[dsi_panel_parse_misc_features:2249] dsi_panel_parse_misc_features: ulps feature disabled\n[    0.505255] msm-dsi-panel:[dsi_panel_parse_misc_features:2255] dsi_panel_parse_misc_features: ulps during suspend feature disabled\n[    0.505264] msm-dsi-panel:[dsi_panel_parse_esd_config:3394] esd irq gpio is valid\n[    0.505273] msm-dsi-panel:[dsi_panel_parse_esd_config:3401] dsi_panel_parse_esd_config: Succeed to get esd irq GPIO26 (rc = 0)\n[    0.505928] iommu: Adding device ae00000.qcom,mdss_mdp to group 8\n[    0.506263] register_client_adhoc:find path.src 1 dest 590\n[    0.506372] register_client_adhoc:Client handle 15 mdss_reg\n[    0.506386] register_client_adhoc:find path.src 22 dest 512\n[    0.506458] register_client_adhoc:Client handle 16 mdss_sde\n[    0.506514] [drm:sde_dbg_init:5228] evtlog_status: enable:0, panic:1, dump:2\n[    0.506529] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops sde_rsc_comp_ops)\n[    0.506535] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops sde_wb_comp_ops)\n[    0.506656] msm-dsi-display:[dsi_display_bind] Successfully bind display panel 'dsi_panel_k7_38_0c_0a_fhdp_video_display'\n[    0.506814] genirq: irq_chip msmgpio-dc did not update eff. affinity mask of irq 184\n[    0.506839] msm-dsi-display:[dsi_display_whitepoint_create_sysfs] xinj:dsi_display_whitepoint_create_sysfs success\n[    0.506847] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display (ops dsi_display_comp_ops)\n[    0.506865] [drm] mapped mdp address space @        (ptrval)\n[    0.506900] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: vbif_nrt_phys\n[    0.506905] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: sid_phys\n[    0.506920] [drm:_sde_kms_get_splash_data:3311] splash mem num_regions:1\n[    0.506927] [drm:_sde_kms_get_splash_data:3344] splash mem for disp:1 add:9c000000 size:f00000\n[    0.507309] [drm:sde_kms_hw_init:3492] sde hardware revision:0x50030000\n[    0.507776] [drm] Created domain mdp_ns [80000000,80000000] secure=0\n[    0.509057] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 9\n[    0.509152] [drm] probing device qcom,smmu_sde_sec\n[    0.509157] [drm] Created domain mdp_s [80000000,80000000] secure=1\n[    0.511123] [drm:sde_connector_init:2352] sde_connector_init: Request esd irq succeed!\n[    0.511213] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    0.511336] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    0.511880] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    0.511882] [drm] No driver support for vblank timestamp query.\n[    0.512012] [drm] Initialized msm_drm 1.2.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    0.512048] msm-dsi-panel:[dsi_panel_parse_topology:3030] default topology: lm: 1 comp_enc:0 intf: 1\n[    0.512114] msm-dsi-panel:[dsi_panel_parse_partial_update_caps:3123] partial update disabled as the property is not set\n[    0.512181] dsi-ctrl:[_dsi_ctrl_setup_isr] [DSI_0] IRQ 378 registered\n[    0.592617] iommu: Adding device 50a0000.qcom,kgsl-iommu:gfx3d_user to group 10\n[    0.592841] iommu: Adding device 50a0000.qcom,kgsl-iommu:gfx3d_secure to group 11\n[    0.617850] brd: module loaded\n[    0.619623] loop: module loaded\n[    0.620369] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1400000\n[    0.620381] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.620384] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    0.620387] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    0.620394] AXI: get_pdata(): Error: Client name not found\n[    0.620397] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.620437] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    0.620821] QSEECOM: qseecom_probe: Unable to register bus client\n[    0.621321] fpc1020 Create proc entry success!\n[    0.621325] fpc1020 soc:fpc1020: fpc1020_probe: ok\n[    0.621365] fpc1020_init OK\n[    0.621814] sm6150-pinctrl 3000000.pinctrl: pin_config_group_set op failed for group 110\n[    0.621820] ant_check soc:ant_check: Error applying setting, reverse things back\n[    0.621833] Macle ant_probe\n[    0.621839] Macle irq_gpio=110\n[    0.621878] input: ant_check-input as /devices/virtual/input/input1\n[    0.621888] ant_probe: gpios = 0, gpion=0\n[    0.621908] Macle irq = 379\n[    0.622052] ant_probe end\n[    0.622280] sm6150-pinctrl 3000000.pinctrl: pin_config_group_set op failed for group 95\n[    0.622284] ant_check_div soc:ant_check_div: Error applying setting, reverse things back\n[    0.622296] Macle ant_div_probe\n[    0.622301] Macle irq_gpio=95\n[    0.622330] input: ant_div_check-input as /devices/virtual/input/input2\n[    0.622340] ant_div_probe: gpios = 0, gpion=0\n[    0.622343] Macle irq = 192\n[    0.622698] ant_div_probe end\n[    0.622919] iommu: Adding device 1de0000.qcedev to group 12\n[    0.623067] register_client_adhoc:find path.src 125 dest 512\n[    0.623211] register_client_adhoc:Client handle 17 qcedev-noc\n[    0.623352] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    0.624099] qce 1de0000.qcedev: QTI Crypto 5.4.1 device found @0x1de0000\n[    0.624109] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000001dc4000\n[    0.624110] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000001dc4000\n[    0.624113] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000001dc4000\n[    0.624116] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000001dc4000\n[    0.624118] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000001dc4000\n[    0.624121] sps:BAM 0x0000000001dc4000 is registered.\n[    0.624196] sps:BAM 0x0000000001dc4000 (va:0x        (ptrval)) enabled: ver:0x27, number of pipes:16\n[    0.624270] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 37\n[    0.627090] iommu: Adding device 1de0000.qcrypto to group 13\n[    0.627149] register_client_adhoc:find path.src 125 dest 512\n[    0.627286] register_client_adhoc:Client handle 18 qcrypto-noc\n[    0.627412] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    0.628011] qcrypto 1de0000.qcrypto: QTI Crypto 5.4.1 device found @0x1de0000\n[    0.628143] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 37\n[    0.630557] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    0.630666] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    0.630767] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    0.630867] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    0.630963] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    0.631056] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    0.631145] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    0.631239] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    0.631330] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    0.631426] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    0.631517] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    0.631609] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    0.631704] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    0.631793] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    0.631882] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    0.631977] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    0.632068] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    0.632161] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    0.632253] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    0.632343] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    0.632676] SCSI Media Changer driver v0.25 \n[    0.633416] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    0.633433] ufshcd-qcom 1d84000.ufshc: no vccq2-voltage-level property.\n[    0.634150] register_client_adhoc:find path.src 123 dest 512\n[    0.634515] register_client_adhoc:find path.src 1 dest 757\n[    0.634713] register_client_adhoc:Client handle 19 ufshc_mem\n[    0.634819] ufshcd-qcom 1d84000.ufshc: ufs_qcom_parse_reg_info: Unable to find qcom,vccq-parent-supply regulator, assuming enabled\n[    0.635689] scsi host0: ufshcd\n[    0.660794] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    0.661326] libphy: Fixed MDIO Bus: probed\n[    0.661369] tun: Universal TUN/TAP device driver, 1.6\n[    0.661387] sky2: driver version 1.30\n[    0.661638] PPP generic driver version 2.4.2\n[    0.661661] PPP BSD Compression module registered\n[    0.661663] PPP Deflate Compression module registered\n[    0.661684] PPP MPPE Compression module registered\n[    0.661687] NET: Registered protocol family 24\n[    0.661693] PPTP driver version 0.8.5\n[    0.661920] wcnss_pre_alloc_init: Failed to create debugfs dir\n[    0.661923] cnss_utils: Unable to create debugfs -19\n[    0.661925] CLD80211: Initializing\n[    0.661963] usbcore: registered new interface driver r8152\n[    0.661971] usbcore: registered new interface driver asix\n[    0.661993] usbcore: registered new interface driver ax88179_178a\n[    0.661999] usbcore: registered new interface driver cdc_ether\n[    0.662005] usbcore: registered new interface driver net1080\n[    0.662010] usbcore: registered new interface driver cdc_subset\n[    0.662016] usbcore: registered new interface driver zaurus\n[    0.662020] usbnet_init: Error getting ipc_log_ctxt\n[    0.662022] usbnet_init: Error getting ipc_log_ctxt\n[    0.662024] usbnet_init: Error getting ipc_log_ctxt\n[    0.662034] usbcore: registered new interface driver cdc_ncm\n[    0.665061] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.665895] msm-qusb-phy 88e2000.qusb: yangyangyang:phy-msm-qusb probe\n[    0.665972] msm-qusb-phy 88e2000.qusb: 88e2000.qusb supply USB3_GDSC not found, using dummy regulator\n[    0.665980] panel_info 1\n[    0.666070] msm-qusb-phy 88e3000.qusb: yangyangyang:phy-msm-qusb probe\n[    0.666092] msm-qusb-phy 88e3000.qusb: 88e3000.qusb supply USB3_GDSC not found, using dummy regulator\n[    0.666097] panel_info 1\n[    0.666890] iommu: Adding device a600000.ssusb to group 14\n[    0.668335] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    0.668947] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    0.668961] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    0.669239] register_client_adhoc:find path.src 61 dest 512\n[    0.669383] register_client_adhoc:find path.src 61 dest 676\n[    0.669452] register_client_adhoc:find path.src 1 dest 583\n[    0.669529] register_client_adhoc:Client handle 20 usb0\n[    0.670670] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.670677] ehci-pci: EHCI PCI platform driver\n[    0.670685] ehci-platform: EHCI generic platform driver\n[    0.670899] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    0.670903] ohci-pci: OHCI PCI platform driver\n[    0.670921] ohci-platform: OHCI generic platform driver\n[    0.671403] usbcore: registered new interface driver usb-storage\n[    0.671417] usbcore: registered new interface driver usb_ehset_test\n[    0.671424] usbcore: registered new interface driver lvs\n[    0.671924] fgsi_init: Err allocating ipc_log_ctxt\n[    0.672505] usbpd usbpd0: Could not get USB power_supply, deferring probe\n[    0.672607] usbpd_create error\n[    0.672611] qpnp-pdphy c440000.qcom,spmi:qcom,pm6150@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    0.672978] usbcore: registered new interface driver xpad\n[    0.672982] [LCT_TP_INFO] tp_info_init (line 227): init\n[    0.672987] [LCT_TP_SELFTEST] tp_selftest_init (line 200): create /proc/tp_selftest success\n[    0.672991] [LCT_TP_GESTURE] tp_gesture_init (line 204): init\n[    0.673274] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm6150@0:qcom,pm6150_rtc: rtc core: registered qpnp_rtc as rtc0\n[    0.673532] i2c /dev entries driver\n[    0.674241] i2c_geni 884000.i2c: Bus frequency is set to 400000Hz.\n[    0.674770] input: fts_ts as /devices/platform/soc/884000.i2c/i2c-1/1-0038/input/input3\n[    0.692723] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    0.797198] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[1, 1], pwr[FAST MODE, FAST MODE], rate = 2\n[    0.798424] ufshcd_get_max_icc_level: Couldn't find valid icc_level = 0\n[    0.798427] ufshcd_get_max_icc_level: Couldn't find valid icc_level = 0\n[    0.803028] scsi 0:0:0:49488: Well-known LUN    MICRON   MT128GASAO4U21   0605 PQ: 0 ANSI: 6\n[    0.807765] scsi 0:0:0:49456: Well-known LUN    MICRON   MT128GASAO4U21   0605 PQ: 0 ANSI: 6\n[    0.808901] scsi 0:0:0:49476: Well-known LUN    MICRON   MT128GASAO4U21   0605 PQ: 0 ANSI: 6\n[    0.809689] scsi 0:0:0:0: Direct-Access     MICRON   MT128GASAO4U21   0605 PQ: 0 ANSI: 6\n[    0.810274] scsi 0:0:0:1: Direct-Access     MICRON   MT128GASAO4U21   0605 PQ: 0 ANSI: 6\n[    0.810746] scsi 0:0:0:2: Direct-Access     MICRON   MT128GASAO4U21   0605 PQ: 0 ANSI: 6\n[    0.811216] scsi 0:0:0:3: Direct-Access     MICRON   MT128GASAO4U21   0605 PQ: 0 ANSI: 6\n[    0.811680] scsi 0:0:0:4: Direct-Access     MICRON   MT128GASAO4U21   0605 PQ: 0 ANSI: 6\n[    0.812145] scsi 0:0:0:5: Direct-Access     MICRON   MT128GASAO4U21   0605 PQ: 0 ANSI: 6\n[    0.813578] sd 0:0:0:1: [sdb] Write Protect is off\n[    0.813587] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    0.813722] sd 0:0:0:2: [sdc] Write Protect is off\n[    0.813730] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    0.813920] sd 0:0:0:1: [sdb] Optimal transfer size 131072 bytes\n[    0.814096] sd 0:0:0:2: [sdc] Optimal transfer size 131072 bytes\n[    0.814170] sd 0:0:0:0: [sda] Write Protect is off\n[    0.814179] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    0.814591] sd 0:0:0:0: [sda] Optimal transfer size 131072 bytes\n[    0.814887] sd 0:0:0:4: [sde] Write Protect is off\n[    0.814896] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    0.814919] sd 0:0:0:5: [sdf] Write Protect is off\n[    0.814927] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    0.815226] sd 0:0:0:4: [sde] Optimal transfer size 131072 bytes\n[    0.815276] sd 0:0:0:5: [sdf] Optimal transfer size 131072 bytes\n[    0.817178]  sdc: sdc1 sdc2\n[    0.817200]  sdb: sdb1 sdb2\n[    0.817384]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17\n[    0.817553] sd 0:0:0:3: [sdd] Write Protect is off\n[    0.817561] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    0.818031] sd 0:0:0:3: [sdd] Optimal transfer size 131072 bytes\n[    0.818599]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51 sde52 sde53 sde54 sde55 sde56 sde57 sde58\n[    0.818974]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5\n[    0.822524]  sdd: sdd1 sdd2 sdd3\n[    0.920438] [LCT_TP_INFO] init_lct_tp_info (line 79): init /proc/tp_info and /proc/tp_lockdown_info ...\n[    0.920445] [LCT_TP_INFO] init_lct_tp_info (line 102): done\n[    0.920448] [LCT_TP_GESTURE] init_lct_tp_gesture (line 79): Initialization tp_gesture node!\n[    0.920451] [LCT_TP_GESTURE] lct_creat_proc_tp_entry (line 131): /proc/tp_gesture is okay!\n[    0.920455] [LCT_TP_GRIP_AREA] init_lct_tp_grip_area (line 79): Initialization /proc/tp_grip_area node!\n[    0.920458] [LCT_TP_GRIP_AREA] init_lct_tp_grip_area (line 95): /proc/tp_grip_area is okay!\n[    0.920461] [LCT_TP_PALM] init_lct_tp_palm (line 79): Initialization tp_palm node!\n[    0.920464] [LCT_TP_PALM] lct_creat_proc_tp_entry (line 131): /proc/tp_palm is okay!\n[    0.921151] dsi-drm:[drm_register_client] drm_register_client,63\n[    0.921169] xiaomitouch_register_modedata\n[    0.921472] i2c_geni 88c000.i2c: Bus frequency is set to 400000Hz.\n[    0.921845] wl2866d_probe,enrty\n[    0.922016] wl2866d_init: en_gpio is 1264\n[    0.940269] wl2866d_get_id:wl2866d id is 100\n[    0.960249] wl2866d_print_reg:wl2866d info is reg 3, value 100\n[    0.960436] wl2866d_print_reg:wl2866d info is reg 4, value 84\n[    0.960622] wl2866d_print_reg:wl2866d info is reg 5, value 129\n[    0.960808] wl2866d_print_reg:wl2866d info is reg 6, value 136\n[    0.960994] wl2866d_print_reg:wl2866d info is reg 14, value 15\n[    0.961179] wl2866d_print_reg:wl2866d info is reg 14, value 15\n[    0.961375] wl2866d_probe:ET5904/wl2866d ldo module info before is 0\n[    0.961680] wl2866d_probe:ET5904/wl2866d ldo module info after is 1\n[    0.961685] wl2866d_probe: ET5904/wl2866d ldo module info is ET5904\n[    0.961990] wl2866d_probe:ET5904/wl2866d ldo module info last is 0\n[    0.961995] wl2866d_probe,successfully\n[    0.962357] i2c_geni a84000.i2c: Bus frequency is set to 1000000Hz.\n[    0.963150] IR NEC protocol handler initialized\n[    0.963156] IR RC5(x/sz) protocol handler initialized\n[    0.963160] IR RC6 protocol handler initialized\n[    0.963164] IR JVC protocol handler initialized\n[    0.963169] IR Sony protocol handler initialized\n[    0.963173] IR SANYO protocol handler initialized\n[    0.963178] IR Sharp protocol handler initialized\n[    0.963182] IR MCE Keyboard/mouse protocol handler initialized\n[    0.963185] IR XMP protocol handler initialized\n[    0.964513] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-qos-lut : doesn't exist in device tree\n[    0.964521] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-danger-lut : doesn't exist in device tree\n[    0.964527] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-safe-lut : doesn't exist in device tree\n[    0.964584] register_client_adhoc:find path.src 1 dest 590\n[    0.964880] register_client_adhoc:Client handle 20 sde_reg\n[    0.965522] register_client_adhoc:find path.src 25 dest 512\n[    0.965729] register_client_adhoc:Client handle 21 mdss_rotator\n[    0.965745] register_client_adhoc:find path.src 1 dest 590\n[    0.965940] register_client_adhoc:Client handle 22 mdss_rot_reg\n[    0.966202] No change in context(0==0), skip\n[    0.968788] sde_rotator ae00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    0.969877] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 15\n[    0.969923] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    0.970663] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 16\n[    0.970691] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    0.970895] msm_vidc:  err: Failed to create debugfs for msm_vidc\n[    0.972421] msm_vidc:  err: Failed to create debugfs for msm_vidc\n[    0.973382] iommu: Adding device aa00000.qcom,vidc:non_secure_cb to group 17\n[    0.973926] iommu: Adding device aa00000.qcom,vidc:secure_bitstream_cb to group 18\n[    0.975389] iommu: Adding device aa00000.qcom,vidc:secure_pixel_cb to group 19\n[    0.976517] iommu: Adding device aa00000.qcom,vidc:secure_non_pixel_cb to group 20\n[    0.980095] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 21\n[    0.980320] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 22\n[    0.980609] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 23\n[    0.980669] platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node camera_region@8ab00000\n[    0.981002] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 24\n[    0.981212] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 25\n[    0.982651] register_client_adhoc:find path.src 1 dest 589\n[    0.982941] register_client_adhoc:Client handle 23 cam_ahb\n[    0.983116] register_client_adhoc:find path.src 136 dest 512\n[    0.983315] register_client_adhoc:Client handle 24 cam_hf_1_mnoc\n[    0.983458] register_client_adhoc:find path.src 146 dest 778\n[    0.983505] register_client_adhoc:Client handle 25 cam_hf_1_camnoc\n[    0.983609] register_client_adhoc:find path.src 145 dest 512\n[    0.983807] register_client_adhoc:Client handle 26 cam_hf_2_mnoc\n[    0.983932] register_client_adhoc:find path.src 147 dest 778\n[    0.983983] register_client_adhoc:Client handle 27 cam_hf_2_camnoc\n[    0.984086] register_client_adhoc:find path.src 137 dest 512\n[    0.984279] register_client_adhoc:Client handle 28 cam_sf_1_mnoc\n[    0.984396] register_client_adhoc:find path.src 148 dest 778\n[    0.984440] register_client_adhoc:Client handle 29 cam_sf_1_camnoc\n[    0.988276] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[13][cpas-cdm][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    0.991964] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1019 Invalid mux type: 0\n[    0.991972] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1019 Invalid mux type: 0\n[    0.992009] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1080 Inval_prms soc_info:        (ptrval) hw_intf:        (ptrval) hw_info        (ptrval)\n[    0.992015] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1083 controller:         (ptrval)\n[    0.992022] CAM_ERR: CAM-ISP: cam_vfe_core_init: 875 Error! RD cam_vfe_bus_init failed\n[    0.992155] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[7][ife][0] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    0.993842] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1019 Invalid mux type: 0\n[    0.993849] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1019 Invalid mux type: 0\n[    0.993887] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1080 Inval_prms soc_info:        (ptrval) hw_intf:        (ptrval) hw_info        (ptrval)\n[    0.993893] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1083 controller:         (ptrval)\n[    0.993899] CAM_ERR: CAM-ISP: cam_vfe_core_init: 875 Error! RD cam_vfe_bus_init failed\n[    0.994020] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[8][ife][1] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    0.995445] CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 524 No clk named ife_dsp_clk found. Dev vfe2\n[    0.995453] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 109 Option clk get failed with rc -14\n[    0.995672] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1019 Invalid mux type: 0\n[    0.995679] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1019 Invalid mux type: 0\n[    0.995817] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[9][ife][2] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    0.998286] CAM_INFO: CAM-ISP: cam_isp_dev_probe: 171 Camera ISP probe complete\n[    1.000285] CAM_INFO: CAM: cam_res_mgr_probe: 689 Disable shared gpio support.\n[    1.002921] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 428 Device Type :0\n[    1.004720] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    1.004769] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    1.004805] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    1.004842] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    1.016725] CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 170 Camera JPEG probe complete\n[    1.018784] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[18][lrmecpas][0] comp[7200000], comp_ab[7200000], uncomp[7200000]\n[    1.019422] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[12][cam-cdm-intf][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    1.020681] uvcvideo: Unable to create debugfs directory\n[    1.020702] usbcore: registered new interface driver uvcvideo\n[    1.020704] USB Video Class driver (1.1.1)\n[    1.020706] gspca_main: v2.14.0 registered\n[    1.021357] Couldn't parse device tree rc=-517\n[    1.021920] [bq2597x-STANDALONE]:bq2597x_get_work_mode:work mode:Standalone\n[    1.023073] [bq2597x-STANDALONE]:bq2597x_init_protection:enable bat ovp successfullly\n[    1.023360] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bat ocp successfullly\n[    1.023648] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bat ovp alarm successfullly\n[    1.023935] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bat ocp alarm successfullly\n[    1.024221] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bat ocp alarm successfullly\n[    1.024509] [bq2597x-STANDALONE]:bq2597x_init_protection:enable bus ovp alarm successfullly\n[    1.024795] [bq2597x-STANDALONE]:bq2597x_init_protection:enable bus ocp successfullly\n[    1.025082] [bq2597x-STANDALONE]:bq2597x_init_protection:enable bus ocp alarm successfullly\n[    1.025370] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bat therm successfullly\n[    1.025656] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bus therm successfullly\n[    1.025943] [bq2597x-STANDALONE]:bq2597x_init_protection:disable die therm successfullly\n[    1.026230] [bq2597x-STANDALONE]:bq2597x_init_protection:set bat ovp th 4550 successfully\n[    1.026518] [bq2597x-STANDALONE]:bq2597x_init_protection:set bat ovp alarm threshold 4450 successfully\n[    1.026805] [bq2597x-STANDALONE]:bq2597x_init_protection:set bat ocp threshold 0 successfully\n[    1.027092] [bq2597x-STANDALONE]:bq2597x_init_protection:set bat ocp alarm threshold 0 successfully\n[    1.027379] [bq2597x-STANDALONE]:bq2597x_init_protection:set bus ovp threshold 12000 successfully\n[    1.027666] [bq2597x-STANDALONE]:bq2597x_init_protection:set bus ovp alarm threshold 11000 successfully\n[    1.027953] [bq2597x-STANDALONE]:bq2597x_init_protection:set bus ocp threshold 3750 successfully\n[    1.028240] [bq2597x-STANDALONE]:bq2597x_init_protection:set bus ocp alarm th 3550 successfully\n[    1.028527] [bq2597x-STANDALONE]:bq2597x_init_protection:set bat ucp threshold 0 successfully\n[    1.028643] [bq2597x-STANDALONE]:bq2597x_init_protection:set die therm threshold 21 successfully\n[    1.028760] [bq2597x-STANDALONE]:bq2597x_init_protection:set bus therm threshold 21 successfully\n[    1.029046] [bq2597x-STANDALONE]:bq2597x_init_protection:set die therm threshold 145 successfully\n[    1.029333] [bq2597x-STANDALONE]:bq2597x_init_protection:set ac ovp threshold 14 successfully\n[    1.035098] [bq2597x-STANDALONE]:bq2597x_psy_register:bq2597x-standalone power supply register successfully\n[    1.035101] [bq2597x] bq2597x_charger_probe: lct client->irq=144\n[    1.035435] [bq2597x-STANDALONE]:bq2597x_charger_interrupt:INT OCCURED\n[    1.037386] [bq2597x-STANDALONE]:bq2597x_charger_info:charger info: vbat(3781), vbus(0), ibus(0)\n[    1.037419] [bq2597x-STANDALONE]:bq2597x_charger_probe:bq2597x probe successfully, Part Num:6\n               !\n[    1.037436] [bq2597x-STANDALONE]:bq2597x_charger_interrupt:INT OCCURED\n[    1.037443] [Onewire] onewire_gpio_init: onewire gpio init entry.\n[    1.037815] [Onewire] onewire_gpio_probe: onewire probe entry\n[    1.037821] [Onewire] onewire_gpio_parse_dt: ow_gpio: 108\n[    1.037922] [Onewire] onewire_gpio_probe: onewire_gpio_level_addr is 3d6c004; onewire_gpio_cfg_addr is 3d6c000\n[    1.037923] [Onewire] onewire_gpio_probe: onewire_data->gpio_cfg_reg is b975000; onewire_data->gpio_in_out_reg is b96d004\n[    1.038023] [ds28e16] ds28e16_init: ds28e16_init entry.\n[    1.038294] [ds28e16] get_random_number: randnum = 1089569223,seed_result = 3\n[    1.038298] [ds28e16] ds28e16_probe: ds28e16_probe entry.\n[    1.038299] [ds28e16] ds28e16_probe: platform_device is soc:maxim_ds28e16\n[    1.038373] [ds28e16] verify_psy_register: batt_verify power supply register successfully\n[    1.038385] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start ...\n[    1.038850] [bq2597x-STANDALONE]:bq2597x_check_alarm_status:INT_FLAG =0x02\n[    1.039046] [bq2597x-STANDALONE]:bq2597x_check_alarm_status:INT_STAT = 0X02\n[    1.042173] [bq2597x-STANDALONE]:bq2597x_charger_info:charger info: vbat(3781), vbus(0), ibus(0)\n[    1.043524] [bq2597x-STANDALONE]:bq2597x_get_work_mode:work mode:Standalone\n[    1.047082] [bq2597x-STANDALONE]:bq2597x_get_work_mode:work mode:Standalone\n[    1.090937] [ds28e16] DS28E16_cmd_romid_pre: DS28E16_cmd_romid_pre done\n[    1.092159] [ds28e16] Read_RomID: RomID = 9f,71,24,4e,14,f0,04,bf\n[    1.092161] [ds28e16] Read_RomID: crc_low_first = bf\n[    1.092164] [ds28e16] Read_RomID: getian--mi_romid = 9f,71,24,4e,14,f0,04,bf\n[    1.092167] [ds28e16] Read_RomID: getian---Read_RomID22\n[    1.092169] [ds28e16] ds28el16_Read_RomID_retry: ds28el16_Read_RomID_retry success 0\n[    1.092171] [ds28e16] ds28el16_get_page_status_retry: read page status communication start... 0\n[    1.092175] [ds28e16] DS28E16_cmd_readStatus: getian--data = 00,37,2f,7a,e7,81,a0,78\n[    1.092177] [ds28e16] DS28E16_cmd_readStatus: getian--mi_status = 00,00,00,00,00,00,00,00\n[    1.092180] [ds28e16] DS28E16_standard_cmd_flow: DS28E16_standard_cmd_flow start\n[    1.144538] [ds28e16] DS28E16_standard_cmd_flow: DS28E16_standard_cmd_flow success!\n[    1.144541] [ds28e16] DS28E16_cmd_readStatus: getian--data = 02,00,08,03,02,00,01,00\n[    1.144544] [ds28e16] DS28E16_cmd_readStatus: getian--mi_status = 02,00,08,03,02,00,01,00\n[    1.144546] [ds28e16] DS28E16_cmd_readStatus: getian---DS28E16_cmd_readStatus11\n[    1.144549] [ds28e16] DS28E16_standard_cmd_flow: DS28E16_standard_cmd_flow start\n[    1.250830] [ds28e16] DS28E16_standard_cmd_flow: DS28E16_standard_cmd_flow success!\n[    1.250832] [ds28e16] DS28E16_cmd_computeReadPageAuthentication: computeReadPageAuthen:\n[    1.250834] [ds28e16] DS28E16_standard_cmd_flow: DS28E16_standard_cmd_flow start\n[    1.360964] [ds28e16] DS28E16_standard_cmd_flow: DS28E16_standard_cmd_flow success!\n[    1.360967] [ds28e16] ds28el16_get_page_data_retry: read page data communication start... 0\n[    1.360970] [ds28e16] DS28E16_cmd_readMemory: DS28E16_cmd_readMemory write_buf:\n[    1.360972] [ds28e16] DS28E16_cmd_readMemory: 02 44 01\n[    1.360973] [ds28e16] DS28E16_standard_cmd_flow: DS28E16_standard_cmd_flow start\n[    1.416600] [ds28e16] DS28E16_standard_cmd_flow: DS28E16_standard_cmd_flow success!\n[    1.416603] [ds28e16] ds28el16_get_page_data_retry: page number is 1\n[    1.416605] [ds28e16] ds28el16_get_page_data_retry: flag_mi_counter is 0\n[    1.416617] [ds28e16] AuthenticateDS28E16: hmac is match. result=DS_TRUE\n[    1.426075] device-mapper: uevent: version 1.0.3\n[    1.426137] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com\n[    1.426505] bt_dt_parse_vreg_info: qca,bt-vdd-vl: is not provided in device tree\n[    1.426509] bt_dt_parse_vreg_info: qca,bt-vdd-vm: is not provided in device tree\n[    1.426512] bt_dt_parse_vreg_info: qca,bt-vdd-5c: is not provided in device tree\n[    1.426515] bt_dt_parse_vreg_info: qca,bt-vdd-5a: is not provided in device tree\n[    1.426517] bt_dt_parse_vreg_info: qca,bt-vdd-vh: is not provided in device tree\n[    1.426519] bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    1.426522] bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    1.426530] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    1.426533] bt_dt_parse_vreg_info: qca,bt-vdd-s5: is not provided in device tree\n[    1.426536] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in devicetree\n[    1.426538] bt_power_populate_dt_pinfo: bt-swctrl-gpio not entered in devicetree\n[    1.426541] bt_power_populate_dt_pinfo: bt-3P3-gpio not provided in devicetree\n[    1.426544] bt_power_populate_dt_pinfo: bt-1P3-gpio not provided in devicetree\n[    1.426546] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.426549] bt_power_populate_dt_pinfo: clock not provided in device tree\n[    1.427004] EDAC DEVICE0: Giving out device to module soc:kryo-erp controller cache: DEV soc:kryo-erp (INTERRUPT)\n[    1.427776] sdhci: Secure Digital Host Controller Interface driver\n[    1.427779] sdhci: Copyright(c) Pierre Ossman\n[    1.427782] sdhci-pltfm: SDHCI platform and OF driver helper\n[    1.427934] qcom,tri-led c440000.qcom,spmi:qcom,pm6150l@5:qcom,leds@d000: enter qpnp_tri_led_hw_init\n[    1.427957] qcom,tri-led c440000.qcom,spmi:qcom,pm6150l@5:qcom,leds@d000: enter qpnp_tri_led_register\n[    1.428005] qcom,tri-led c440000.qcom,spmi:qcom,pm6150l@5:qcom,leds@d000: enter qpnp_tri_white_led_register\n[    1.428864] qpnp_vibrator_pwm_probe: vib---qpnp_vibrator_pwm_probe\n[    1.428873] vib---vib,en-gpio=112\n[    1.428876] chip->label=vib1 \n[    1.428901] vib---Vibrator PWM successfully registered: overdrive = enabled\n[    1.429143] usbcore: registered new interface driver usbhid\n[    1.429145] usbhid: USB HID core driver\n[    1.429187] ashmem: initialized\n[    1.429211] wlan_hdd_state wlan major(501) initialized\n[    1.430086] [ds28e16] verify_get_property: unsupported property 4\n[    1.430110] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start ...\n[    1.430114] [ds28e16] ds28el16_Read_RomID_retry: ds28el16_Read_RomID_retry success ...\n[    1.430120] register_client_adhoc:find path.src 81 dest 512\n[    1.430128] [ds28e16] ds28el16_get_page_status_retry: read page status communication start... 0\n[    1.430137] [ds28e16] DS28E16_cmd_readStatus: getian--data = ff,ff,34,32,73,17,83,ff\n[    1.430143] [ds28e16] DS28E16_cmd_readStatus: getian--mi_status = 02,00,08,03,02,00,01,00\n[    1.430147] [ds28e16] DS28E16_cmd_readStatus: getian---DS28E16_cmd_readStatus00\n[    1.430156] [ds28e16] ds28el16_get_page_data_retry: read page data communication start... 0\n[    1.430161] [ds28e16] ds28el16_get_page_data_retry: page number is 1\n[    1.430165] [ds28e16] ds28el16_get_page_data_retry: flag_mi_counter is 0\n[    1.430175] [ds28e16] verify_get_property: unsupported property 226\n[    1.430179] [ds28e16] verify_get_property: unsupported property 227\n[    1.430183] [ds28e16] verify_get_property: unsupported property 228\n[    1.430187] [ds28e16] verify_get_property: unsupported property 229\n[    1.430191] [ds28e16] verify_get_property: unsupported property 230\n[    1.430195] [ds28e16] ds28el16_get_page_data_retry: read page data communication start... 0\n[    1.430200] [ds28e16] DS28E16_cmd_readMemory: DS28E16_cmd_readMemory write_buf:\n[    1.430204] [ds28e16] DS28E16_cmd_readMemory: 02 44 00\n[    1.430206] [ds28e16] DS28E16_standard_cmd_flow: DS28E16_standard_cmd_flow start\n[    1.430494] register_client_adhoc:find path.src 1 dest 608\n[    1.430694] register_client_adhoc:Client handle 30 sdhc2\n[    1.461614] mmc0: SDHCI controller on 8804000.sdhci [8804000.sdhci] using 64-bit ADMA in legacy mode\n[    1.486227] [ds28e16] DS28E16_standard_cmd_flow: DS28E16_standard_cmd_flow success!\n[    1.486236] [ds28e16] ds28el16_get_page_data_retry: page number is 0\n[    1.486241] [ds28e16] ds28el16_get_page_data_retry: flag_mi_counter is 0\n[    1.486255] [ds28e16] ds28el16_get_page_data_retry: read page data communication start... 0\n[    1.486260] [ds28e16] ds28el16_get_page_data_retry: page number is 1\n[    1.486264] [ds28e16] ds28el16_get_page_data_retry: flag_mi_counter is 0\n[    1.486274] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start ...\n[    1.486278] [ds28e16] ds28el16_Read_RomID_retry: ds28el16_Read_RomID_retry success ...\n[    1.486285] [ds28e16] verify_get_property: getian---POWER_SUPPLY_PROP_CHIP_OK\n[    1.486289] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start ...\n[    1.486293] [ds28e16] ds28el16_Read_RomID_retry: ds28el16_Read_RomID_retry success ...\n[    1.486298] [ds28e16] verify_get_property: getian---flag_mi_romid: 1, flag_mi_status: 1\n[    1.490703] bimc-bwmon 90b6300.qcom,cpu-cpu-llcc-bwmon: BW HWmon governor registered.\n[    1.490735] bimc-bwmon 90cd000.qcom,cpu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    1.491214] arm-memlat-mon soc:qcom,cpu0-cpu-l3-latmon: Memory Latency governor registered.\n[    1.491232] arm-memlat-mon soc:qcom,cpu6-cpu-l3-latmon: Memory Latency governor registered.\n[    1.491246] arm-memlat-mon soc:qcom,cpu0-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.491258] arm-memlat-mon soc:qcom,cpu6-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.491271] arm-memlat-mon soc:qcom,cpu0-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.491282] arm-memlat-mon soc:qcom,cpu6-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.491295] arm-memlat-mon soc:qcom,cpu0-computemon: Compute governor registered.\n[    1.491310] arm-memlat-mon soc:qcom,cpu6-computemon: Compute governor registered.\n[    1.492009] register_client_adhoc:find path.src 1 dest 770\n[    1.492064] register_client_adhoc:Client handle 31 soc:qcom,cpu-cpu-llcc-bw\n[    1.492456] register_client_adhoc:find path.src 129 dest 512\n[    1.492490] register_client_adhoc:Client handle 32 soc:qcom,cpu-llcc-ddr-bw\n[    1.493079] register_client_adhoc:find path.src 1 dest 770\n[    1.493103] register_client_adhoc:Client handle 33 soc:qcom,cpu0-cpu-llcc-lat\n[    1.493212] register_client_adhoc:find path.src 1 dest 770\n[    1.493237] register_client_adhoc:Client handle 34 soc:qcom,cpu6-cpu-llcc-lat\n[    1.493342] register_client_adhoc:find path.src 129 dest 512\n[    1.493366] register_client_adhoc:Client handle 35 soc:qcom,cpu0-llcc-ddr-lat\n[    1.493479] register_client_adhoc:find path.src 129 dest 512\n[    1.493502] register_client_adhoc:Client handle 36 soc:qcom,cpu6-llcc-ddr-lat\n[    1.493616] register_client_adhoc:find path.src 129 dest 512\n[    1.493642] register_client_adhoc:Client handle 37 soc:qcom,cpu0-cpu-ddr-latfloor\n[    1.493751] register_client_adhoc:find path.src 129 dest 512\n[    1.493775] register_client_adhoc:Client handle 38 soc:qcom,cpu6-cpu-ddr-latfloor\n[    1.493880] register_client_adhoc:find path.src 1 dest 627\n[    1.493962] register_client_adhoc:Client handle 39 soc:qcom,snoc_cnoc_keepalive\n[    1.494134] register_client_adhoc:find path.src 26 dest 512\n[    1.494186] register_client_adhoc:Client handle 40 soc:qcom,gpubw\n[    1.495919] qcom-llcc-pmu 90cc000.llcc-pmu: Registered llcc_pmu, type: 8\n[    1.496456] usbcore: registered new interface driver snd-usb-audio\n[    1.496569] iommu: Adding device soc:usb_audio_qmi_dev to group 26\n[    1.499600] apr_probe: Unable to create ipc log context\n[    1.500841] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.500853] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.500926] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio53\" for function \"ter_mi2s\"\n[    1.500932] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio54\" for function \"ter_mi2s\"\n[    1.500937] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio55\" for function \"ter_mi2s\"\n[    1.500942] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio56\" for function \"ter_mi2s\"\n[    1.500946] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio53\" for function \"ter_mi2s\"\n[    1.500951] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio54\" for function \"ter_mi2s\"\n[    1.500955] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio55\" for function \"ter_mi2s\"\n[    1.500959] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio56\" for function \"ter_mi2s\"\n[    1.501006] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio53\" for function \"ter_mi2s\"\n[    1.501010] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio54\" for function \"ter_mi2s\"\n[    1.501014] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio55\" for function \"ter_mi2s\"\n[    1.501018] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio56\" for function \"ter_mi2s\"\n[    1.501022] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio53\" for function \"ter_mi2s\"\n[    1.501026] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio54\" for function \"ter_mi2s\"\n[    1.501030] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio55\" for function \"ter_mi2s\"\n[    1.501034] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio56\" for function \"ter_mi2s\"\n[    1.501061] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.501067] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.501072] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.501770] aw87xxx_pa_init enter, driver version: v0.1.14\n[    1.501952] aw87xxx_i2c_probe enter, dev_i2c2@0x5B\n[    1.501956] [2-005b]aw87xxx_parse_dt enter, dev_i2c2@0x5B\n[    1.501958] [2-005b]aw87xxx_parse_gpio_dt enter, dev_i2c2@0x5B\n[    1.501963] [2-005b]aw87xxx_parse_gpio_dt: reset gpio provided ok\n[    1.501965] [2-005b]aw87xxx_parse_monitor_dt enter, dev_i2c2@0x5B\n[    1.501968] [2-005b]aw87xxx_parse_monitor_dt: monitor-flag = 1\n[    1.501970] [2-005b]aw87xxx_parse_monitor_dt: monitor-timer-val = 3000\n[    1.501972] [2-005b]aw87xxx_parse_monitor_dt: monitor-timer-count-max = 5\n[    1.501974] [2-005b]aw87xxx_parse_channel_dt enter, dev_i2c2@0x5B\n[    1.501977] [2-005b]aw87xxx_parse_channel_dt: pa_channel: 0\n[    1.501980] [2-005b]aw87xxx_int_to_str enter, dev_i2c2@0x5B, pa_channel: 0\n[    1.501982] [2-005b]aw87xxx_int_to_str: pa_channel: 0\n[    1.501990] [2-005b]aw87xxx_hw_reset enter, dev_i2c2@0x5B\n[    1.505995] [2-005b]aw87xxx_read_chipid enter, dev_i2c2@0x5B\n[    1.506194] [2-005b]aw87xxx_product_select enter, dev_i2c2@0x5B\n[    1.506196] [2-005b]aw87xxx_product_select: aw87559_i2c2@0x5B selected, chipid: 0x5A\n[    1.506200] [2-005b]aw87xxx_update_cfg_name: cfg_name: aw87xxx_pid_5a_off_0.bin\n[    1.506202] [2-005b]aw87xxx_update_cfg_name: cfg_name: aw87xxx_pid_5a_music_0.bin\n[    1.506204] [2-005b]aw87xxx_update_cfg_name: cfg_name: aw87xxx_pid_5a_voice_0.bin\n[    1.506206] [2-005b]aw87xxx_update_cfg_name: cfg_name: aw87xxx_pid_5a_fm_0.bin\n[    1.506208] [2-005b]aw87xxx_update_cfg_name: cfg_name: aw87xxx_pid_5a_rcv_0.bin\n[    1.506210] [2-005b]aw87xxx_update_cfg_name: dev_i2c2@0x5B, vmax_name: aw87xxx_vmax_0.bin\n[    1.506212] [2-005b]aw87xxx_read_chipid: find device chip id is (0x5a)\n[    1.506219] [aw87xxx_pa_2_5b]aw87xxx_cfg_init enter, aw87559_i2c2@0x5B\n[    1.506221] [aw87xxx_pa_2_5b]aw87xxx_hw_off enter\n[    1.508224] [aw87xxx_pa_2_5b]aw87xxx_monitor_init enter, dev_i2c2@0x5B\n[    1.508264] aw87xxx_i2c_probe enter, dev_i2c2@0x58\n[    1.508267] [2-0058]aw87xxx_parse_dt enter, dev_i2c2@0x58\n[    1.508269] [2-0058]aw87xxx_parse_gpio_dt enter, dev_i2c2@0x58\n[    1.508271] [2-0058]aw87xxx_parse_gpio_dt: no reset gpio provided, hardware reset unavailable\n[    1.508273] [2-0058]aw87xxx_parse_monitor_dt enter, dev_i2c2@0x58\n[    1.508275] [2-0058]aw87xxx_parse_monitor_dt: monitor-flag = 1\n[    1.508277] [2-0058]aw87xxx_parse_monitor_dt: monitor-timer-val = 3000\n[    1.508279] [2-0058]aw87xxx_parse_monitor_dt: monitor-timer-count-max = 5\n[    1.508280] [2-0058]aw87xxx_parse_channel_dt enter, dev_i2c2@0x58\n[    1.508282] [2-0058]aw87xxx_parse_channel_dt: pa_channel: 1\n[    1.508284] [2-0058]aw87xxx_int_to_str enter, dev_i2c2@0x58, pa_channel: 1\n[    1.508286] [2-0058]aw87xxx_int_to_str: pa_channel: 1\n[    1.508287] [2-0058]aw87xxx_hw_reset enter, dev_i2c2@0x58\n[    1.508290] [2-0058]aw87xxx_read_chipid enter, dev_i2c2@0x58\n[    1.508482] [2-0058]aw87xxx_product_select enter, dev_i2c2@0x58\n[    1.508484] [2-0058]aw87xxx_product_select: aw87359_i2c2@0x58 selected, chipid: 0x59\n[    1.508487] [2-0058]aw87xxx_update_cfg_name: cfg_name: aw87xxx_pid_59_off_1.bin\n[    1.508488] [2-0058]aw87xxx_update_cfg_name: cfg_name: aw87xxx_pid_59_music_1.bin\n[    1.508490] [2-0058]aw87xxx_update_cfg_name: cfg_name: aw87xxx_pid_59_voice_1.bin\n[    1.508492] [2-0058]aw87xxx_update_cfg_name: cfg_name: aw87xxx_pid_59_fm_1.bin\n[    1.508494] [2-0058]aw87xxx_update_cfg_name: cfg_name: aw87xxx_pid_59_rcv_1.bin\n[    1.508497] [2-0058]aw87xxx_update_cfg_name: dev_i2c2@0x58, vmax_name: aw87xxx_vmax_1.bin\n[    1.508499] [2-0058]aw87xxx_read_chipid: find device chip id is (0x59)\n[    1.508505] [aw87xxx_pa_2_58]aw87xxx_cfg_init enter, aw87359_i2c2@0x58\n[    1.508507] [aw87xxx_pa_2_58]aw87xxx_hw_off enter\n[    1.508509] [aw87xxx_pa_2_58]aw87xxx_hw_off: aw873x9 hw always enabled!!!\n[    1.508511] [aw87xxx_pa_2_58]aw87xxx_monitor_init enter, dev_i2c2@0x58\n[    1.509483] msm-dai-q6-hdmi soc:qcom,msm-dai-q6-hdmi_ms: invalid device ID 24578\n[    1.509712] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: msm_auxpcm_dev_probe: invalid DT intf name senary\n[    1.514817] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: group id not supported 0x9150\n[    1.514825] msm-dai-tdm: probe of soc:qcom,msm-dai-tdm-sen-rx failed with error -22\n[    1.514835] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: group id not supported 0x9151\n[    1.514838] msm-dai-tdm: probe of soc:qcom,msm-dai-tdm-sen-tx failed with error -22\n[    1.519917] rmnet_perf_init(): initializing rmnet_perf\n[    1.519922] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = lo\n[    1.519926] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = bond0\n[    1.519928] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = dummy0\n[    1.519931] rmnet_shs_module_init(): Starting rmnet SHS module\n[    1.519999] GACT probability NOT on\n[    1.520007] Mirror/redirect action on\n[    1.520051] u32 classifier\n[    1.520053]     Actions configured\n[    1.520060] Netfilter messages via NETLINK v0.30.\n[    1.520131] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    1.520166] ctnetlink v0.93: registering with nfnetlink.\n[    1.520254] xt_time: kernel timezone is -0000\n[    1.520288] wireguard: WireGuard 1.0.20210606 loaded. See www.wireguard.com for information.\n[    1.520290] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    1.520336] gre: GRE over IPv4 demultiplexor driver\n[    1.520338] IPv4 over IPsec tunneling driver\n[    1.520415] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip_vti0\n[    1.520484] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    1.520986] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    1.521112] Initializing XFRM netlink socket\n[    1.521119] IPsec XFRM device driver\n[    1.521184] NET: Registered protocol family 10\n[    1.521543] Segment Routing with IPv6\n[    1.521565] mip6: Mobile IPv6\n[    1.521570] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    1.521965] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6_vti0\n[    1.522019] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    1.522057] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = sit0\n[    1.522136] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6tnl0\n[    1.522172] NET: Registered protocol family 17\n[    1.522178] NET: Registered protocol family 15\n[    1.522192] Bridge firewalling registered\n[    1.522194] Ebtables v2.0 registered\n[    1.522278] l2tp_core: L2TP core driver, V2.0\n[    1.522282] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    1.522284] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    1.522291] l2tp_netlink: L2TP netlink interface\n[    1.522300] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    1.522302] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    1.522329] sctp: Hash tables configured (bind 256/256)\n[    1.522743] camera_vana0_ldo: supplied by pm6150l_bob\n[    1.522981] camera_vana1_2_ldo: supplied by pm6150l_bob\n[    1.524247] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.524821] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.524824] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.525155] register_client_adhoc:find path.src 61 dest 512\n[    1.525289] register_client_adhoc:find path.src 61 dest 676\n[    1.525354] register_client_adhoc:find path.src 1 dest 583\n[    1.525368] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    1.525377] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    1.525382] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    1.525387] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    1.525392] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    1.525397] sps:BAM 0x000000000a704000 is registered.\n[    1.525423] register_client_adhoc:Client handle 41 usb0\n[    1.525826] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.525831] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    1.525834] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.525837] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    1.526812] usbpd usbpd0: Could not get USB power_supply, deferring probe\n[    1.526881] usbpd_create error\n[    1.526884] qpnp-pdphy c440000.qcom,spmi:qcom,pm6150@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.527194] QG-K: qg_parse_dt: size=96 dt.dec_rate_len=24 [0]=0 [end]=5\n[    1.541223] [ds28e16] verify_get_property: getian---POWER_SUPPLY_PROP_CHIP_OK\n[    1.541227] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start ...\n[    1.541229] [ds28e16] ds28el16_Read_RomID_retry: ds28el16_Read_RomID_retry success ...\n[    1.541231] [ds28e16] verify_get_property: getian---flag_mi_romid: 1, flag_mi_status: 1\n[    1.541234] [ds28e16] ds28el16_get_page_data_retry: read page data communication start... 0\n[    1.541236] [ds28e16] ds28el16_get_page_data_retry: page number is 0\n[    1.541238] [ds28e16] ds28el16_get_page_data_retry: flag_mi_counter is 0\n[    1.541241] of_batterydata_get_best_profile:  sunxing get best profile enter\n[    1.541244] of_batterydata_get_best_profile: sunxing test batt_id_kohm 100\n[    1.541247] of_batterydata_get_best_profile: m305-sunwoda-5000mah found\n[    1.541360] QG-K: qg_batterydata_init: QG Battery-profile loaded\n[    1.543735] QG-K: qg_determine_pon_soc: using SHUTDOWN_SOC @ PON ocv_uv=3783700uV soc=28\n[    1.543824] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    1.544513] QG-K: qpnp_qg_probe: QG initialized! battery_profile=m305-sunwoda-5000mah SOC=28 QG_subtype=4\n[    1.544688] lct six-pin-step-chg-cfg: 4250000uV, 6000000uA,six-pin-step-chg-cfg_2: 4250000uV, 6000000uA\n[    1.544691] lct six-pin-step-chg-cfg: 4450000uV, 5400000uA,six-pin-step-chg-cfg_2: 4450000uV, 5400000uA\n[    1.544693] lct six-pin-step-chg-cfg: 4470000uV, 3900000uA,six-pin-step-chg-cfg_2: 4470000uV, 3900000uA\n[    1.545570] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    1.545583] enter sysfs create file thermal\n[    1.546273] Couldn't get prop 4 rc = -22\n[    1.547074] [smblib_get_quick_charge_type] real_charger_type=0 pd_verifed=0 qc_class_ab=1\n[    1.547628] pm6150_charger: jeita_update_work: longcheer get battery type: m305-sunwoda-5000mah\n[    1.547632] of_batterydata_get_best_profile:  sunxing get best profile enter\n[    1.547635] of_batterydata_get_best_profile: sunxing test batt_id_kohm 100\n[    1.547637] of_batterydata_get_best_profile: m305-sunwoda-5000mah found\n[    1.548901] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.550198] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start ...\n[    1.550204] [ds28e16] ds28el16_Read_RomID_retry: ds28el16_Read_RomID_retry success ...\n[    1.550213] [ds28e16] ds28el16_get_page_status_retry: read page status communication start... 0\n[    1.550220] [ds28e16] DS28E16_cmd_readStatus: getian--data = 00,00,f8,bf,dd,17,83,ff\n[    1.550225] [ds28e16] DS28E16_cmd_readStatus: getian--mi_status = 02,00,08,03,02,00,01,00\n[    1.550230] [ds28e16] DS28E16_cmd_readStatus: getian---DS28E16_cmd_readStatus00\n[    1.550237] [ds28e16] ds28el16_get_page_data_retry: read page data communication start... 0\n[    1.550242] [ds28e16] ds28el16_get_page_data_retry: page number is 0\n[    1.550246] [ds28e16] ds28el16_get_page_data_retry: flag_mi_counter is 0\n[    1.550255] [ds28e16] verify_get_property: getian---POWER_SUPPLY_PROP_CHIP_OK\n[    1.550259] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start ...\n[    1.550262] [ds28e16] ds28el16_Read_RomID_retry: ds28el16_Read_RomID_retry success ...\n[    1.550267] [ds28e16] verify_get_property: getian---flag_mi_romid: 1, flag_mi_status: 1\n[    1.550280] QG-K: qg_get_prop_soc_decimal: debug soc_dec=0 dec_rate=28 last_val=0 last_soc_dec=0 last_hal_soc=0\n[    1.550287] QG-K: qg_get_prop_soc_decimal: debug val=50 soc_dec=0 sys_soc=2800 dec_rate=28 soc=28 hal_soc=28 last_val=50 last_soc_dec=0 last_hal_soc=28\n[    1.551489] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.551754] SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    1.551784] QPNP SMB5 probed successfully\n[    1.559246] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.560158] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.566349] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.570111] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.570252] smblib_set_prop_system_temp_level val=0, chg->system_temp_level=0, LctThermal=0, lct_backlight_off= 0, IsInCall=0 \n                \n[    1.570256] smblib_set_prop_system_temp_level val=0, chg->system_temp_level=0, LctThermal=0, lct_backlight_off= 0, IsInCall=0 \n                \n[    1.571358] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.573949] smblib_set_prop_system_temp_level val=0, chg->system_temp_level=0, LctThermal=0, lct_backlight_off= 0, IsInCall=0 \n                \n[    1.573955] smblib_set_prop_system_temp_level val=0, chg->system_temp_level=0, LctThermal=0, lct_backlight_off= 0, IsInCall=0 \n                \n[    1.573960] smblib_set_prop_system_temp_level val=0, chg->system_temp_level=0, LctThermal=0, lct_backlight_off= 0, IsInCall=0 \n                \n[    1.573963] smblib_set_prop_system_temp_level val=0, chg->system_temp_level=0, LctThermal=0, lct_backlight_off= 0, IsInCall=0 \n                \n[    1.574371] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.574459] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.574515] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.574566] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.574618] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.575059] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.576209] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.576884] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.576887] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.577220] register_client_adhoc:find path.src 61 dest 512\n[    1.577345] register_client_adhoc:find path.src 61 dest 676\n[    1.577406] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    1.577410] register_client_adhoc:find path.src 1 dest 583\n[    1.577414] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    1.577416] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    1.577419] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    1.577421] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    1.577423] sps:BAM 0x000000000a704000 is registered.\n[    1.577493] register_client_adhoc:Client handle 41 usb0\n[    1.577798] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.578152] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.578155] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    1.578159] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.578161] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    1.579057] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.579313] usbpd usbpd0: usbpd_create\n[    1.579402] usbpd_create successfully:pd=709a1000,g_pd=709a1000\n[    1.579405] qpnp-pdphy c440000.qcom,spmi:qcom,pm6150@0:qcom,usb-pdphy@1700: usbpd_create success\n[    1.579588] i2c_geni 88c000.i2c: i2c error :-107\n[    1.579692] i2c_geni 88c000.i2c: i2c error :-107\n[    1.579793] i2c_geni 88c000.i2c: i2c error :-107\n[    1.580093] i2c_geni 88c000.i2c: i2c error :-107\n[    1.580194] i2c_geni 88c000.i2c: i2c error :-107\n[    1.580296] i2c_geni 88c000.i2c: i2c error :-107\n[    1.580397] i2c_geni 88c000.i2c: i2c error :-107\n[    1.580499] i2c_geni 88c000.i2c: i2c error :-107\n[    1.580600] i2c_geni 88c000.i2c: i2c error :-107\n[    1.580701] i2c_geni 88c000.i2c: i2c error :-107\n[    1.580819] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.580892] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.580946] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.580997] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.581047] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.582480] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.583055] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.583058] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.583135] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.583584] register_client_adhoc:find path.src 61 dest 512\n[    1.583714] register_client_adhoc:find path.src 61 dest 676\n[    1.583780] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    1.583781] register_client_adhoc:find path.src 1 dest 583\n[    1.583791] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    1.583797] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    1.583802] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    1.583807] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    1.583812] sps:BAM 0x000000000a704000 is registered.\n[    1.583849] register_client_adhoc:Client handle 41 usb0\n[    1.583993] msm-qusb-phy 88e2000.qusb: qusb_phy_dpdm_regulator_is_enabled qphy->dpdm_enable = 0\n[    1.584092] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.584212] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.584269] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.584320] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.584370] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.584761] core_ctl: Creating CPU group 0\n[    1.584764] core_ctl: Init CPU0 state\n[    1.584766] core_ctl: Init CPU1 state\n[    1.584768] core_ctl: Init CPU2 state\n[    1.584769] core_ctl: Init CPU3 state\n[    1.584771] core_ctl: Init CPU4 state\n[    1.584772] core_ctl: Init CPU5 state\n[    1.585031] core_ctl: Creating CPU group 6\n[    1.585033] core_ctl: Init CPU6 state\n[    1.585034] core_ctl: Init CPU7 state\n[    1.585173] registered taskstats version 1\n[    1.585175] Loading compiled-in X.509 certificates\n[    1.585607] msm-qusb-phy 88e2000.qusb: qusb_phy_enable_power turn on regulators\n[    1.585686] msm-qusb-phy 88e2000.qusb: min_vol:925000 max_vol:975000\n[    1.586201] qusb_phy_enable_power(): QUSB PHY's regulators are turned ON.\n[    1.586210] msm-qusb-phy 88e2000.qusb: qusb_phy_enable_clocks(): on:1\n[    1.586298] msm-qusb-phy 88e2000.qusb: qusb_phy_init\n[    1.586480] Seq count:20\n[    1.586485] write 0xc8 to 0x80\n[    1.586489] write 0xb8 to 0x84\n[    1.586493] write 0x83 to 0x88\n[    1.586497] write 0xc7 to 0x8c\n[    1.586501] write 0x30 to 0x08\n[    1.586504] write 0x79 to 0x0c\n[    1.586508] write 0x21 to 0x10\n[    1.586512] write 0x14 to 0x9c\n[    1.586515] write 0x9f to 0x1c\n[    1.586519] write 0x00 to 0x18\n[    1.586521] Loaded X.509 cert 'Build time autogenerated kernel key: 874c135f3e5c5f19c1264f03d30e2c861f7e4153'\n[    1.586526] yangyangyang:write 0xc8 to 0x80\n[    1.586530] yangyangyang:write 0xb8 to 0x84\n[    1.586534] yangyangyang:write 0x83 to 0x88\n[    1.586538] yangyangyang:write 0xc7 to 0x8c\n[    1.586541] yangyangyang:write 0x30 to 0x08\n[    1.586545] yangyangyang:write 0x79 to 0x0c\n[    1.586548] yangyangyang:write 0x21 to 0x10\n[    1.586552] yangyangyang:write 0x14 to 0x9c\n[    1.586556] yangyangyang:write 0x9f to 0x1c\n[    1.586559] yangyangyang:write 0x00 to 0x18\n[    1.586563] qusb_phy_get_tune2_param(): num_of_bits:4 bit_pos:25\n[    1.586569] qusb_phy_get_tune2_param(): efuse based tune2 value:12\n[    1.586574] qusb_phy_init(): Programming TUNE2 parameter as:c8\n[    1.586579] qusb_phy_init():userspecified modparams TUNEX val:0x0 0 0 0 0\n[    1.586683] zswap: loaded using pool lz4/zsmalloc\n[    1.586773] msm-qusb-phy 88e2000.qusb: QUSB2PHY_PLL_STATUS:20\n[    1.586778] Key type ._fscrypt registered\n[    1.586781] Key type .fscrypt registered\n[    1.586783] Key type fscrypt-provisioning registered\n[    1.587035] Error: swapper/0: fastrpc_device_init: failed to create debugfs root dir\n[    1.587508] ADSPRPC: Secure VMID = 22\n[    1.587509] ADSPRPC: Secure VMID = 37\n[    1.587709] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 27\n[    1.587808] msm-qusb-phy 88e2000.qusb: qusb_phy_set_suspend: USB PHY is already suspended\n[    1.587843] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode\n[    1.587869] msm-qusb-phy 88e2000.qusb: qusb_phy_enable_clocks(): on:0\n[    1.587877] msm-qusb-phy 88e2000.qusb: qusb_phy_enable_power turn off regulators\n[    1.587955] msm-qusb-phy 88e2000.qusb: min_vol:0 max_vol:975000\n[    1.587960] msm-qusb-phy 88e2000.qusb: QUSB PHY's regulators are turned OFF.\n[    1.588093] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 28\n[    1.588445] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 29\n[    1.588495] msm-dwc3 a600000.ssusb: DWC3 in low power mode\n[    1.588785] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 30\n[    1.589114] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 31\n[    1.589454] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 32\n[    1.589782] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 33\n[    1.590110] Couldn't get prop 4 rc = -22\n[    1.590726] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 34\n[    1.591081] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 35\n[    1.591147] [smblib_get_quick_charge_type] real_charger_type=0 pd_verifed=0 qc_class_ab=1\n[    1.591417] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 36\n[    1.591752] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13 to group 37\n[    1.592898] i2c_geni 88c000.i2c: i2c error :-107\n[    1.593023] i2c_geni 88c000.i2c: i2c error :-107\n[    1.593193] i2c_geni 88c000.i2c: i2c error :-107\n[    1.593296] i2c_geni 88c000.i2c: i2c error :-107\n[    1.593398] i2c_geni 88c000.i2c: i2c error :-107\n[    1.593563] i2c_geni 88c000.i2c: i2c error :-107\n[    1.594278] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.594346] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.594400] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.594452] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.594504] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.594683] vbswap: created vbswap device with size 2147483648\n[    1.594842] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.594846] ngd_msm_ctrl 62e40000.slim: error creating ipc_logging context\n[    1.594849] ngd_msm_ctrl 62e40000.slim: error creating ipc_error_logging context\n[    1.595103] iommu: Adding device 62e40000.slim:qcom,iommu_slim_ctrl_cb to group 38\n[    1.595296] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.595354] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.595407] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.595458] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.595513] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.596550] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input4\n[    1.596727] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm6150@0:qcom,pm6150_rtc: setting system clock to 1970-07-21 02:29:55 UTC (17375395)\n[    1.596977] CAM_ERR: CAM-CCI: cam_cci_assign_fops: 499 Invalid dev node:        (ptrval) offset: 0\n[    1.597191] [USBPD-PM]: usbpd_pm_probe: usbpd_pm_probe enter\n[    1.597195] [USBPD-PM]: pd_policy_parse_dt: pm_config.bat_volt_lp_lmt:4450\n[    1.597197] [USBPD-PM]: pd_policy_parse_dt: pm_config.bat_curr_lp_lmt:6000\n[    1.597199] [USBPD-PM]: pd_policy_parse_dt: pm_config.bus_volt_lp_lmt:12000\n[    1.597201] [USBPD-PM]: pd_policy_parse_dt: pm_config.bus_curr_lp_lmt:3000\n[    1.597203] [USBPD-PM]: pd_policy_parse_dt: pm_config.bus_curr_compensate:100\n[    1.597206] [USBPD-PM]: pd_policy_parse_dt: pdpm->ffc_bat_volt_max:4470\n[    1.597212] [USBPD-PM]: usbpd_check_cp_sec_psy: cp_sec_psy not found\n[    1.597480] [FC2-PM]: cp_qc30_probe: cp_qc30_probe enter\n[    1.597485] [FC2-PM]: cp_qc30_probe: charge pump qc3 probe\n[    1.597725] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.597802] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.597857] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.597910] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.597962] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.598413] lpm_levels: Cluster (L3) stats not registered\n[    1.598418] lpm_levels: register_cluster_lpm_stats()\n[    1.598420] lpm_levels: register_cluster_lpm_stats()\n[    1.599364] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.599443] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.599497] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.599550] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.599602] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.600874] rmnet_ipa3 started initialization\n[    1.601096] RNDIS_IPA module is loaded.\n[    1.602079] msm_bus_late_init: Remove handoff bw requests\n[    1.602619] hlos1_vote_aggre_noc_mmu_audio_tbu_gdsc: disabling\n[    1.602730] hlos1_vote_aggre_noc_mmu_tbu1_gdsc: disabling\n[    1.602838] hlos1_vote_aggre_noc_mmu_tbu2_gdsc: disabling\n[    1.602945] hlos1_vote_aggre_noc_mmu_pcie_tbu_gdsc: disabling\n[    1.603067] dbu1: disabling\n[    1.603074] msm-qusb-phy 88e2000.qusb: qusb_phy_dpdm_regulator_is_enabled qphy->dpdm_enable = 0\n[    1.603078] msm-qusb-phy 88e3000.qusb: qusb_phy_dpdm_regulator_is_enabled qphy->dpdm_enable = 0\n[    1.603080] camera_vana0_ldo: disabling\n[    1.603083] camera_vana1_2_ldo: disabling\n[    1.603104] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    1.603123] ALSA device list:\n[    1.603125]   No soundcards found.\n[    1.603150] Warning: unable to open an initial console.\n[    1.612066] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.632334] Freeing unused kernel memory: 6144K\n[    1.675115] mmc0: new high speed SDHC card at address 1234\n[    1.675540] mmcblk0: mmc0:1234 SA16G 14.6 GiB \n[    1.676878]  mmcblk0: p1\n[    2.560838] Couldn't get prop 4 rc = -22\n[    2.570472] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: cpu1 cpu6 \n               Offline CPUs: \n[    2.572141] cpu1 \n[    2.573823] CPU1: shutdown\n[    2.575632] cpu2 \n[    2.577230] CPU2: shutdown\n[    2.578630] cpu3 \n[    2.580482] CPU3: shutdown\n[    2.581822] cpu4 \n[    2.582986] IRQ 6: no longer affine to CPU4\n[    2.583281] CPU4: shutdown\n[    2.584319] cpu5 \n[    2.586060] CPU5: shutdown\n[    2.586930] cpu6 \n[    2.587680] CPU6: shutdown\n[    2.588481] cpu7 \n[    2.589012] CPU7: shutdown\n\n[    2.594470] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    3.602085] QCOM-STEPCHG: get_step_chg_jeita_setting_from_profile: longcheer get battery type: m305-sunwoda-5000mah\n[    3.602125] of_batterydata_get_best_profile:  sunxing get best profile enter\n[    3.602151] of_batterydata_get_best_profile: sunxing test batt_id_kohm 100\n[    3.602182] of_batterydata_get_best_profile: m305-sunwoda-5000mah found\n[    3.602228] QCOM-STEPCHG: read_range_data_from_node: Count qcom,step-chg-ranges failed, rc=-22\n[    3.602266] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.602288] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.602310] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.602331] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.602352] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.602373] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.602394] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.602415] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.602438] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: -100decidegree ~ 0decidegre, 450000uA\n[    3.602459] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 1decidegree ~ 50decidegre, 950000uA\n[    3.602481] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 51decidegree ~ 100decidegre, 2450000uA\n[    3.602504] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 101decidegree ~ 150decidegre, 3900000uA\n[    3.602525] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 151decidegree ~ 480decidegre, 6000000uA\n[    3.602547] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 481decidegree ~ 580decidegre, 2450000uA\n[    3.602569] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 0decidegree ~ 0decidegre, 0uA\n[    3.602591] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 0decidegree ~ 0decidegre, 0uA\n[    3.602613] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: -100decidegree ~ 0decidegre, 4450000uV\n[    3.602635] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 1decidegree ~ 50decidegre, 4450000uV\n[    3.602656] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 51decidegree ~ 100decidegre, 4450000uV\n[    3.602678] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 101decidegree ~ 150decidegre, 4450000uV\n[    3.602700] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 151decidegree ~ 480decidegre, 4470000uV\n[    3.602720] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 481decidegree ~ 580decidegre, 4100000uV\n[    3.602742] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 0decidegree ~ 0decidegre, 0uV\n[    3.602762] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 0decidegree ~ 0decidegre, 0uV\n[    7.605359] Sampling power every 250 ms\n               Baseline power usage: \n[   10.082190] [aw87xxx_pa_2_5b]aw87xxx_cfg_work_routine enter, aw87559_i2c2@0x5B\n[   10.082248] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[   10.082282] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[   10.082309] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[   10.082340] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[   10.082369] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[   10.082399] [aw87xxx_pa_2_5b]aw87xxx_vbat_monitor_update enter, dev_i2c2@0x5B\n[   10.082428] [aw87xxx_pa_2_58]aw87xxx_cfg_work_routine enter, aw87359_i2c2@0x58\n[   10.082451] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[   10.082476] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[   10.082502] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[   10.082528] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[   10.082553] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[   10.082577] [aw87xxx_pa_2_58]aw87xxx_vbat_monitor_update enter, dev_i2c2@0x58\n[   31.842685] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 03 78 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[   31.842971] smb:01:1200 00 ff ff fe 00 3d 3d 00 00 00 00 00 00 00 00 01 06 00 01 00 \n[   31.843645] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 a3 00 00 00 00 07 00 18 18 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[   31.844553] smb:01:1500 00 00 00 01 c2 00 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[   31.845227] smb:01:1600 03 03 00 00 00 02 01 04 00 00 00 5b 5b 00 00 00 00 00 42 00 7b 00 00 00 00 00 00 00 00 00 00 00 00 0c 01 00 80 00 00 00 00 00 00 20 b8 4c cc 18 02 00 03 32 11 \n[   64.482084] firmware focaltech_ts_fw_samsung.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   74.722146] firmware aw87xxx_vmax_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   74.722387] [aw87xxx_pa_2_58]aw87xxx_vmax_cfg_loaded enter, aw87359_i2c2@0x58\n[   74.722413] [aw87xxx_pa_2_58]aw87xxx_vmax_cfg_loaded: failed to read aw87xxx_vmax_1.bin\n[   74.722490] firmware aw87xxx_pid_59_rcv_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   74.722650] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[   74.722674] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_rcv_1.bin\n[   74.722696] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[   74.722756] firmware aw87xxx_pid_59_fm_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   74.722950] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[   74.722974] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_fm_1.bin\n[   74.722995] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[   74.723055] firmware aw87xxx_pid_59_voice_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   74.723216] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[   74.723240] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_voice_1.bin\n[   74.723261] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[   74.723321] firmware aw87xxx_pid_59_music_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   74.723475] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[   74.723499] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_music_1.bin\n[   74.723521] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[   74.723580] firmware aw87xxx_pid_59_off_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   74.723741] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[   74.723766] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_off_1.bin\n[   74.723787] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[   74.723846] firmware aw87xxx_vmax_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   74.724004] [aw87xxx_pa_2_5b]aw87xxx_vmax_cfg_loaded enter, aw87559_i2c2@0x5B\n[   74.724028] [aw87xxx_pa_2_5b]aw87xxx_vmax_cfg_loaded: failed to read aw87xxx_vmax_0.bin\n[   74.724091] firmware aw87xxx_pid_5a_rcv_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   74.724248] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[   74.724272] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_rcv_0.bin\n[   74.724294] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[   74.724354] firmware aw87xxx_pid_5a_fm_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   74.724508] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[   74.724532] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_fm_0.bin\n[   74.724553] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[   74.724613] firmware aw87xxx_pid_5a_voice_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   74.724766] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[   74.724790] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_voice_0.bin\n[   74.724812] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[   74.724871] firmware aw87xxx_pid_5a_music_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   74.725023] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[   74.725047] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_music_0.bin\n[   74.725068] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[   74.725129] firmware aw87xxx_pid_5a_off_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   74.725287] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[   74.725310] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_off_0.bin\n[   74.725332] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[   76.721998] [aw87xxx_pa_2_5b]aw87xxx_cfg_work_routine enter, aw87559_i2c2@0x5B\n[   76.722038] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[   76.722075] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[   76.722103] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[   76.722129] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[   76.722156] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[   76.722182] [aw87xxx_pa_2_5b]aw87xxx_vbat_monitor_update enter, dev_i2c2@0x5B\n[   76.722211] [aw87xxx_pa_2_58]aw87xxx_cfg_work_routine enter, aw87359_i2c2@0x58\n[   76.722235] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[   76.722265] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[   76.722291] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[   76.722318] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[   76.722345] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[   76.722373] [aw87xxx_pa_2_58]aw87xxx_vbat_monitor_update enter, dev_i2c2@0x58\n[   82.716383] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000\n[   82.716513] CPU1: Booted secondary processor [51df805e]\n[   83.728779] 420 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 576 748 1017 1209 1363 1516 1593 1708\n               \n                300: \n[  141.280580] firmware aw87xxx_vmax_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  141.280852] [aw87xxx_pa_2_58]aw87xxx_vmax_cfg_loaded enter, aw87359_i2c2@0x58\n[  141.280877] [aw87xxx_pa_2_58]aw87xxx_vmax_cfg_loaded: failed to read aw87xxx_vmax_1.bin\n[  141.280948] firmware aw87xxx_pid_59_rcv_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  141.281110] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[  141.281134] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_rcv_1.bin\n[  141.281156] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[  141.281219] firmware aw87xxx_pid_59_fm_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  141.281374] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[  141.281398] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_fm_1.bin\n[  141.281419] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[  141.281481] firmware aw87xxx_pid_59_voice_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  141.281647] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[  141.281671] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_voice_1.bin\n[  141.281693] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[  141.281755] firmware aw87xxx_pid_59_music_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  141.281995] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[  141.282019] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_music_1.bin\n[  141.282041] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[  141.282104] firmware aw87xxx_pid_59_off_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  141.282269] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[  141.282292] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_off_1.bin\n[  141.282314] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[  141.282375] firmware aw87xxx_vmax_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  141.282537] [aw87xxx_pa_2_5b]aw87xxx_vmax_cfg_loaded enter, aw87559_i2c2@0x5B\n[  141.282560] [aw87xxx_pa_2_5b]aw87xxx_vmax_cfg_loaded: failed to read aw87xxx_vmax_0.bin\n[  141.282624] firmware aw87xxx_pid_5a_rcv_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  141.282780] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[  141.282805] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_rcv_0.bin\n[  141.282826] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[  141.282887] firmware aw87xxx_pid_5a_fm_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  141.283042] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[  141.283066] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_fm_0.bin\n[  141.283087] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[  141.283147] firmware aw87xxx_pid_5a_voice_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  141.283304] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[  141.283329] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_voice_0.bin\n[  141.283350] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[  141.283410] firmware aw87xxx_pid_5a_music_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  141.283564] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[  141.283588] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_music_0.bin\n[  141.283610] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[  141.283669] firmware aw87xxx_pid_5a_off_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  141.283831] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[  141.283855] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_off_0.bin\n[  141.283876] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[  143.280317] [aw87xxx_pa_2_5b]aw87xxx_cfg_work_routine enter, aw87559_i2c2@0x5B\n[  143.280351] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[  143.280383] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[  143.280413] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[  143.280440] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[  143.280467] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[  143.280493] [aw87xxx_pa_2_5b]aw87xxx_vbat_monitor_update enter, dev_i2c2@0x5B\n[  143.280522] [aw87xxx_pa_2_58]aw87xxx_cfg_work_routine enter, aw87359_i2c2@0x58\n[  143.280545] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[  143.280571] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[  143.280599] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[  143.280625] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[  143.280650] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[  143.280675] [aw87xxx_pa_2_58]aw87xxx_vbat_monitor_update enter, dev_i2c2@0x58\n[  188.910297] random: crng init done\n[  207.840504] firmware aw87xxx_vmax_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  207.840710] [aw87xxx_pa_2_58]aw87xxx_vmax_cfg_loaded enter, aw87359_i2c2@0x58\n[  207.840736] [aw87xxx_pa_2_58]aw87xxx_vmax_cfg_loaded: failed to read aw87xxx_vmax_1.bin\n[  207.840800] firmware aw87xxx_pid_59_rcv_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  207.840956] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[  207.840981] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_rcv_1.bin\n[  207.841039] firmware aw87xxx_pid_59_fm_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  207.841192] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[  207.841216] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_fm_1.bin\n[  207.841274] firmware aw87xxx_pid_59_voice_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  207.841424] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[  207.841448] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_voice_1.bin\n[  207.841508] firmware aw87xxx_pid_59_music_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  207.841654] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[  207.841678] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_music_1.bin\n[  207.841734] firmware aw87xxx_pid_59_off_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  207.841892] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[  207.841916] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_off_1.bin\n[  207.841974] firmware aw87xxx_vmax_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  207.842126] [aw87xxx_pa_2_5b]aw87xxx_vmax_cfg_loaded enter, aw87559_i2c2@0x5B\n[  207.842150] [aw87xxx_pa_2_5b]aw87xxx_vmax_cfg_loaded: failed to read aw87xxx_vmax_0.bin\n[  207.842209] firmware aw87xxx_pid_5a_rcv_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  207.842357] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[  207.842380] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_rcv_0.bin\n[  207.842439] firmware aw87xxx_pid_5a_fm_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  207.842592] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[  207.842616] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_fm_0.bin\n[  207.842675] firmware aw87xxx_pid_5a_voice_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  207.842824] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[  207.842848] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_voice_0.bin\n[  207.842907] firmware aw87xxx_pid_5a_music_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  207.843058] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[  207.843083] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_music_0.bin\n[  207.843142] firmware aw87xxx_pid_5a_off_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  207.843299] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[  207.843323] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_off_0.bin\n[  364.406777]  1102     3.7 C/MHz    259 mW   70.5 J    4.3 I/mJ   272.2 s\n                576: \n[  513.953445]  2126     3.7 C/MHz    282 mW   39.8 J    7.5 I/mJ   141.1 s\n                748: \n[  630.690852]  2767     3.7 C/MHz    295 mW   32.0 J    9.4 I/mJ   108.4 s\n               1017: \n[  718.706576]  3764     3.7 C/MHz    319 mW   25.4 J   11.8 I/mJ    79.7 s\n               1209: \n[  794.139331]  4476     3.7 C/MHz    336 mW   22.5 J   13.3 I/mJ    67.0 s\n               1363: \n[  861.776526]  5046     3.7 C/MHz    353 mW   21.0 J   14.3 I/mJ    59.5 s\n               1516: \n[  923.383041]  5615     3.7 C/MHz    365 mW   19.5 J   15.4 I/mJ    53.4 s\n               1593: \n[  982.474868]  5901     3.7 C/MHz    372 mW   18.9 J   15.8 I/mJ    50.8 s\n               1708: \n[ 1038.301856] IRQ 6: no longer affine to CPU1\n[ 1038.302553] CPU1: shutdown\n[ 1038.306560] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000\n[ 1038.306599] CPU6: Booted secondary processor [51df804e]\n[ 1039.317768]  6328     3.7 C/MHz    390 mW   18.5 J   16.2 I/mJ    47.4 s\n               \n               \n               ===== CPU 6 =====\n               Frequencies: 300 652 768 979 1017 1209 1363 1516 1708 1900 2016 2112 2208\n               \n                300: \n[ 1176.594066]  2328     7.8 C/MHz    291 mW   37.5 J    8.0 I/mJ   128.9 s\n                652: \n[ 1201.120464] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[ 1201.120554] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[ 1201.120588] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[ 1201.120605] audio_notifer_reg_service: service SSR_ADSP is in use\n[ 1201.120698] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[ 1201.120721] ADSPRPC: Audio PD restart notifier locator down\n[ 1201.120772] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[ 1201.120792] ADSPRPC: Audio PD restart notifier locator down\n[ 1242.081053] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 03 78 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[ 1242.081337] smb:01:1200 00 ff ff fe 00 3d 3d 00 00 00 00 00 00 00 00 01 06 00 01 00 \n[ 1242.082012] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 a3 00 00 00 00 07 00 18 18 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[ 1242.082921] smb:01:1500 00 00 00 01 c2 00 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 1242.083601] smb:01:1600 03 03 00 00 00 02 01 04 00 00 00 5b 5b 00 00 00 00 00 42 00 7b 00 00 00 00 00 00 00 00 00 00 00 00 0c 01 00 80 00 00 00 00 00 00 20 b8 4c cc 18 02 00 03 32 11 \n[ 1244.164298]  5075     7.8 C/MHz    347 mW   20.5 J   14.6 I/mJ    59.1 s\n                768: \n[ 1302.645474]  5975     7.8 C/MHz    368 mW   18.5 J   16.3 I/mJ    50.2 s\n                979: \n[ 1350.518364]  7614     7.8 C/MHz    414 mW   16.3 J   18.4 I/mJ    39.4 s\n               1017: \n[ 1396.875125]  7917     7.8 C/MHz    422 mW   16.0 J   18.7 I/mJ    37.9 s\n               1209: \n[ 1437.172228]  9403     7.8 C/MHz    471 mW   15.0 J   20.0 I/mJ    31.9 s\n               1363: \n[ 1473.936594] 10607     7.8 C/MHz    550 mW   15.6 J   19.3 I/mJ    28.3 s\n               1516: \n[ 1507.668119] 11804     7.8 C/MHz    614 mW   15.6 J   19.2 I/mJ    25.4 s\n               1708: \n[ 1538.619258] 13292     7.8 C/MHz    729 mW   16.5 J   18.2 I/mJ    22.6 s\n               1900: \n[ 1567.299225] 14792     7.8 C/MHz    868 mW   17.6 J   17.0 I/mJ    20.3 s\n               2016: \n[ 1594.717819] 15684     7.8 C/MHz    968 mW   18.5 J   16.2 I/mJ    19.1 s\n               2112: \n[ 1621.377901] 16432     7.8 C/MHz   1070 mW   19.5 J   15.3 I/mJ    18.3 s\n               2208: \n[ 1647.283982] IRQ 6: no longer affine to CPU6\n[ 1647.284257] CPU6: shutdown\n[ 1647.318206] 17186     7.8 C/MHz   1195 mW   20.9 J   14.4 I/mJ    17.5 s\n               \n               \n               Benchmark finished!\n[ 1647.353383] \n               real\t27m25.662s\n               user\t22m59.987s\n               sys\t0m2.832s\n"
  },
  {
    "path": "results/sm6150ac/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  4:      55205   PDC-GIC  19 Level     arch_timer\n  6:      27535   PDC-GIC  38 Level     arch_mem_timer\n  8:          0   PDC-GIC  21 Level     arm-pmu\n  9:          0   PDC-GIC  82 Level     arm_dsu_0\n 26:          0   PDC-GIC  32 Edge      apps_wdog_bark\n 28:          0   PDC-GIC  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 29:          0   PDC-GIC  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 30:        238   PDC-GIC  37 Level     apps_rsc\n 31:          0   PDC-GIC 161 Level     display_rsc\n 34:         62   PDC-GIC 236 Edge      mmc0\n 35:          2   PDC-GIC 254 Edge      8804000.sdhci\n 36:        362   PDC-GIC 297 Edge      1d84000.ufshc\n 37:          0   PDC-GIC 304 Level     sps\n 39:          0   PDC-GIC 524 Level     eud_irq\n 40:          0   PDC-GIC 323 Level     ngd_slim_irq\n 42:          0  pmic_arb 8388749 Edge      pon_kpdpwr_status\n 43:          0  pmic_arb 8454285 Edge      pon_resin_status\n 44:         79  pmic_arb 51380379 Edge      pm-adc5\n 45:          0  pmic_arb 55574684 Edge      thr-int-en\n 46:          0  pmic_arb 24117397 Edge      sig-tx\n 47:          0  pmic_arb 24182933 Edge      sig-rx\n 48:          0  pmic_arb 24248469 Edge      msg-tx\n 49:          0  pmic_arb 24314005 Edge      msg-rx\n 50:          0  pmic_arb 24379541 Edge      msg-tx-failed\n 51:          0  pmic_arb 24445077 Edge      msg-tx-discarded\n 52:          0  pmic_arb 24510613 Edge      msg-rx-discarded\n 54:          0  pmic_arb 30408857 Edge      bcl-lvl0\n 55:          0  pmic_arb 30474393 Edge      bcl-lvl1\n 56:          0  pmic_arb 30539929 Edge      bcl-lvl2\n 57:          0  pmic_arb 37748890 Edge      qcom,temp-alarm\n 64:          0  pmic_arb 1111490736 Edge      qcom,temp-alarm\n 65:          0  pmic_arb 1137705139 Edge      bcl-lvl0\n 66:          0  pmic_arb 1137770675 Edge      bcl-lvl1\n 67:          0  pmic_arb 1137836211 Edge      bcl-lvl2\n 68:          5  pmic_arb 1125122225 Edge      pm-adc5\n 69:          0  pmic_arb 1129316530 Edge      thr-int-en\n 71:          0  pmic_arb 1276117175 Edge      volume_up\n 82:          1  pmic_arb 1589706970 Edge      qpnp_lcdb_sc_irq\n 83:          0  pmic_arb 1563427028 Edge      qpnp_flash_led_fault_irq\n 84:          0  pmic_arb 1563623636 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 85:          0  pmic_arb 1563689172 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 86:          0  pmic_arb 1568735445 Edge      wled_ovp_irq\n 87:          0  pmic_arb 1568932053 Edge      wled_pre_flash_irq\n 88:          0  pmic_arb 1568997589 Edge      wled_flash_irq\n 89:          7   PDC-GIC 421 Edge      qcom,qmp-aop\n 90:          0   PDC-GIC 483 Edge      smp2p\n 91:          0   PDC-GIC 204 Edge      smp2p\n 92:          0   PDC-GIC 608 Edge      smp2p\n 93:          0   PDC-GIC 538 Level     tsens-upper-lower\n 94:          0   PDC-GIC 540 Level     tsens-critical\n 95:          0   PDC-GIC 194 Edge      adsp\n 96:          0   PDC-GIC 298 Edge      modem\n 97:          0   PDC-GIC 610 Edge      cdsp\n138:          0  msmgpio-dc  26 Edge      esd_err_irq\n144:          1  msmgpio-dc  41 Edge      bq2597x charger irq\n182:        189  msmgpio-dc  89 Edge      fts_ts\n184:          0  msmgpio-dc  90 Edge      TE_GPIO\n192:          0  msmgpio-dc  95 Edge      ant-div-switch-irq\n200:          0  msmgpio-dc  99 Edge      8804000.sdhci cd\n242:        601   PDC-GIC 634 Level     i2c_geni\n243:        519   PDC-GIC 636 Level     i2c_geni\n244:          0   PDC-GIC 386 Level     i2c_geni\n245:          0   PDC-GIC 385 Level     spi_geni\n246:          0   PDC-GIC 388 Level     msm_serial_geni0\n247:          0   PDC-GIC 332 Level     kgsl-3d0\n248:          0   PDC-GIC 336 Level     kgsl-oob\n249:          0   PDC-GIC 337 Level     kgsl-rgmu\n250:          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n251:          1   PDC-GIC 162 Edge      pwr_event_irq\n252:          0   PDC-GIC 518 Level     ss_phy_irq\n253:          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n254:          0   PDC-GIC 509 Edge      csiphy\n255:          0   PDC-GIC 510 Edge      csiphy\n256:          0   PDC-GIC 511 Edge      csiphy\n257:          0   PDC-GIC 492 Edge      cci\n258:          0   PDC-GIC 491 Edge      cpas_camnoc\n259:          1   PDC-GIC 493 Edge      cpas-cdm\n260:          0   PDC-GIC 496 Edge      csid\n261:          2   PDC-GIC 497 Edge      ife\n262:          0   PDC-GIC 498 Edge      csid\n263:          2   PDC-GIC 499 Edge      ife\n264:          0   PDC-GIC 500 Edge      csid-lite\n265:          2   PDC-GIC 501 Edge      ife-lite\n266:          0   PDC-GIC 495 Edge      a5\n267:          0   PDC-GIC 506 Edge      jpeg\n268:          0   PDC-GIC 507 Edge      jpegdma\n269:          1   PDC-GIC 508 Edge      lrme\n270:          0   PDC-GIC 617 Level     arm-smmu global fault\n271:          0   PDC-GIC 622 Level     arm-smmu-context-fault\n272:          0   PDC-GIC 623 Level     arm-smmu-context-fault\n279:          0   PDC-GIC  97 Level     arm-smmu global fault\n281:          0   PDC-GIC 127 Level     arm-smmu-context-fault\n283:          0   PDC-GIC 129 Level     arm-smmu-context-fault\n284:          0   PDC-GIC 130 Level     arm-smmu-context-fault\n285:          0   PDC-GIC 131 Level     arm-smmu-context-fault\n286:          0   PDC-GIC 132 Level     arm-smmu-context-fault\n287:          0   PDC-GIC 133 Level     arm-smmu-context-fault\n288:          0   PDC-GIC 134 Level     arm-smmu-context-fault\n289:          0   PDC-GIC 135 Level     arm-smmu-context-fault\n290:          0   PDC-GIC 136 Level     arm-smmu-context-fault\n291:          0   PDC-GIC 137 Level     arm-smmu-context-fault\n292:          0   PDC-GIC 138 Level     arm-smmu-context-fault\n293:          0   PDC-GIC 139 Level     arm-smmu-context-fault\n294:          0   PDC-GIC 140 Level     arm-smmu-context-fault\n295:          0   PDC-GIC 141 Level     arm-smmu-context-fault\n296:          0   PDC-GIC 142 Level     arm-smmu-context-fault\n297:          0   PDC-GIC 143 Level     arm-smmu-context-fault\n298:          0   PDC-GIC 144 Level     arm-smmu-context-fault\n299:          0   PDC-GIC 145 Level     arm-smmu-context-fault\n300:          0   PDC-GIC 146 Level     arm-smmu-context-fault\n301:          0   PDC-GIC 147 Level     arm-smmu-context-fault\n302:          0   PDC-GIC 148 Level     arm-smmu-context-fault\n303:          0   PDC-GIC 149 Level     arm-smmu-context-fault\n304:          0   PDC-GIC 150 Level     arm-smmu-context-fault\n305:          0   PDC-GIC 213 Level     arm-smmu-context-fault\n306:          0   PDC-GIC 214 Level     arm-smmu-context-fault\n307:          0   PDC-GIC 215 Level     arm-smmu-context-fault\n308:          0   PDC-GIC 216 Level     arm-smmu-context-fault\n309:          0   PDC-GIC 217 Level     arm-smmu-context-fault\n310:          0   PDC-GIC 218 Level     arm-smmu-context-fault\n311:          0   PDC-GIC 219 Level     arm-smmu-context-fault\n312:          0   PDC-GIC 220 Level     arm-smmu-context-fault\n345:          0   PDC-GIC 206 Level     msm_vidc\n346:          0   PDC-GIC 115 Edge      msm_drm\n360:          0   PDC-GIC  64 Level     limits_sensor-00\n361:          0   PDC-GIC  65 Level     limits_sensor-01\n362:          0     smp2p   2 Edge      adsp\n363:          0     smp2p   0 Edge      adsp\n364:          0     smp2p   1 Edge      error_ready_interrupt\n365:          0     smp2p   3 Edge      adsp\n366:          0     smp2p   7 Edge      adsp\n367:          0     smp2p   2 Edge      modem\n368:          0     smp2p   0 Edge      modem\n369:          0     smp2p   1 Edge      error_ready_interrupt\n370:          0     smp2p   3 Edge      modem\n371:          0     smp2p   7 Edge      modem\n372:          0     smp2p   2 Edge      cdsp\n373:          0     smp2p   0 Edge      cdsp\n374:          0     smp2p   1 Edge      error_ready_interrupt\n375:          0     smp2p   3 Edge      cdsp\n376:          0     smp2p   7 Edge      cdsp\n377:          0     smp2p   0 Edge      smp2p_sleepstate\n378:          0       sde   4 Edge      dsi_ctrl\n379:          0   msmgpio 110 Edge      ant-switch-irq\n380:          0     GICv3 165 Edge      dwc3\n382:          0  pmic_arb 101777568 Edge      qpnp_rtc_alarm\n383:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n385:          0  pmic_arb 75563166 Edge      qg-vbat-low\n386:          0  pmic_arb 75628702 Edge      qg-vbat-empty\n387:         26  pmic_arb 75694238 Edge      qg-fifo-done\n388:          0  pmic_arb 75759774 Edge      qg-good-ocv\n389:          0  pmic_arb 16777358 Edge      chgr-error\n390:          0  pmic_arb 16842894 Edge      chg-state-change\n397:          0  pmic_arb 17825935 Edge      otg-fail\n401:          0  pmic_arb 18088079 Edge      high-duty-cycle\n402:          0  pmic_arb 18153615 Edge      input-current-limiting\n404:          0  pmic_arb 18284687 Edge      switcher-power-ok\n405:          0  pmic_arb 18874512 Edge      bat-temp\n406:          0  pmic_arb 19005584 Edge      bat-ov\n407:          0  pmic_arb 19071120 Edge      bat-low\n408:          0  pmic_arb 19136656 Edge      bat-therm-or-id-missing\n409:          0  pmic_arb 19202192 Edge      bat-terminal-missing\n412:          0  pmic_arb 19923089 Edge      usbin-collapse\n413:          0  pmic_arb 19988625 Edge      usbin-vashdn\n414:          0  pmic_arb 20054161 Edge      usbin-uv\n415:          0  pmic_arb 20119697 Edge      usbin-ov\n416:          0  pmic_arb 20185233 Edge      usbin-plugin\n418:          0  pmic_arb 20316305 Edge      usbin-src-change\n419:          0  pmic_arb 20381841 Edge      usbin-icl-change\n421:          0  pmic_arb 21102738 Edge      dcin-uv\n422:          0  pmic_arb 21168274 Edge      dcin-ov\n423:          0  pmic_arb 21233810 Edge      dcin-plugin\n425:          0  pmic_arb 21364882 Edge      dcin-pon\n426:          0  pmic_arb 21430418 Edge      dcin-en\n427:          0  pmic_arb 22020243 Edge      typec-or-rid-detect-change\n429:          0  pmic_arb 22151315 Edge      typec-cc-state-change\n430:          0  pmic_arb 22216851 Edge      typec-vconn-oc\n432:          0  pmic_arb 22347923 Edge      typec-attach-detach\n433:          0  pmic_arb 22413459 Edge      typec-legacy-cable-detect\n435:          0  pmic_arb 23068820 Edge      wdog-snarl\n436:          0  pmic_arb 23134356 Edge      wdog-bark\n438:          0  pmic_arb 23265428 Edge      aicl-done\n439:          0  pmic_arb 23330964 Edge      smb-en\n441:          0  pmic_arb 23462036 Edge      temp-change\n443:          0  pmic_arb 185663650 Edge      sdam-sts\nIPI0:     38095       Rescheduling interrupts\nIPI1:        48       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         5       Timer broadcast interrupts\nIPI5:      1736       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm6150ac/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  4:        129         20         15        162         34         63         26         91   PDC-GIC  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   PDC-GIC  38 Level     arch_mem_timer\n  8:          0          0          0          0          0          0          0          0   PDC-GIC  21 Level     arm-pmu\n  9:          0          0          0          0          0          0          0          0   PDC-GIC  82 Level     arm_dsu_0\n 26:          0          0          0          0          0          0          0          0   PDC-GIC  32 Edge      apps_wdog_bark\n 28:          0          0          0          0          0          0          0          0   PDC-GIC  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 29:          0          0          0          0          0          0          0          0   PDC-GIC  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 30:        211          0          0          0          0          0          0          0   PDC-GIC  37 Level     apps_rsc\n 31:          0          0          0          0          0          0          0          0   PDC-GIC 161 Level     display_rsc\n 34:         61          0          0          0          0          0          0          0   PDC-GIC 236 Edge      mmc0\n 35:          1          0          0          0          0          0          0          0   PDC-GIC 254 Edge      8804000.sdhci\n 36:        351          0          0          0          0          0          0          0   PDC-GIC 297 Edge      1d84000.ufshc\n 37:          0          0          0          0          0          0          0          0   PDC-GIC 304 Level     sps\n 39:          0          0          0          0          0          0          0          0   PDC-GIC 524 Level     eud_irq\n 40:          0          0          0          0          0          0          0          0   PDC-GIC 323 Level     ngd_slim_irq\n 42:          0          0          0          0          0          0          0          0  pmic_arb 8388749 Edge      pon_kpdpwr_status\n 43:          0          0          0          0          0          0          0          0  pmic_arb 8454285 Edge      pon_resin_status\n 44:         51          0          0          0          0          0          0          0  pmic_arb 51380379 Edge      pm-adc5\n 45:          0          0          0          0          0          0          0          0  pmic_arb 55574684 Edge      thr-int-en\n 46:          0          0          0          0          0          0          0          0  pmic_arb 24117397 Edge      sig-tx\n 47:          0          0          0          0          0          0          0          0  pmic_arb 24182933 Edge      sig-rx\n 48:          0          0          0          0          0          0          0          0  pmic_arb 24248469 Edge      msg-tx\n 49:          0          0          0          0          0          0          0          0  pmic_arb 24314005 Edge      msg-rx\n 50:          0          0          0          0          0          0          0          0  pmic_arb 24379541 Edge      msg-tx-failed\n 51:          0          0          0          0          0          0          0          0  pmic_arb 24445077 Edge      msg-tx-discarded\n 52:          0          0          0          0          0          0          0          0  pmic_arb 24510613 Edge      msg-rx-discarded\n 54:          0          0          0          0          0          0          0          0  pmic_arb 30408857 Edge      bcl-lvl0\n 55:          0          0          0          0          0          0          0          0  pmic_arb 30474393 Edge      bcl-lvl1\n 56:          0          0          0          0          0          0          0          0  pmic_arb 30539929 Edge      bcl-lvl2\n 57:          0          0          0          0          0          0          0          0  pmic_arb 37748890 Edge      qcom,temp-alarm\n 64:          0          0          0          0          0          0          0          0  pmic_arb 1111490736 Edge      qcom,temp-alarm\n 65:          0          0          0          0          0          0          0          0  pmic_arb 1137705139 Edge      bcl-lvl0\n 66:          0          0          0          0          0          0          0          0  pmic_arb 1137770675 Edge      bcl-lvl1\n 67:          0          0          0          0          0          0          0          0  pmic_arb 1137836211 Edge      bcl-lvl2\n 68:          5          0          0          0          0          0          0          0  pmic_arb 1125122225 Edge      pm-adc5\n 69:          0          0          0          0          0          0          0          0  pmic_arb 1129316530 Edge      thr-int-en\n 71:          0          0          0          0          0          0          0          0  pmic_arb 1276117175 Edge      volume_up\n 82:          1          0          0          0          0          0          0          0  pmic_arb 1589706970 Edge      qpnp_lcdb_sc_irq\n 83:          0          0          0          0          0          0          0          0  pmic_arb 1563427028 Edge      qpnp_flash_led_fault_irq\n 84:          0          0          0          0          0          0          0          0  pmic_arb 1563623636 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 85:          0          0          0          0          0          0          0          0  pmic_arb 1563689172 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 86:          0          0          0          0          0          0          0          0  pmic_arb 1568735445 Edge      wled_ovp_irq\n 87:          0          0          0          0          0          0          0          0  pmic_arb 1568932053 Edge      wled_pre_flash_irq\n 88:          0          0          0          0          0          0          0          0  pmic_arb 1568997589 Edge      wled_flash_irq\n 89:          7          0          0          0          0          0          0          0   PDC-GIC 421 Edge      qcom,qmp-aop\n 90:          0          0          0          0          0          0          0          0   PDC-GIC 483 Edge      smp2p\n 91:          0          0          0          0          0          0          0          0   PDC-GIC 204 Edge      smp2p\n 92:          0          0          0          0          0          0          0          0   PDC-GIC 608 Edge      smp2p\n 93:          0          0          0          0          0          0          0          0   PDC-GIC 538 Level     tsens-upper-lower\n 94:          0          0          0          0          0          0          0          0   PDC-GIC 540 Level     tsens-critical\n 95:          0          0          0          0          0          0          0          0   PDC-GIC 194 Edge      adsp\n 96:          0          0          0          0          0          0          0          0   PDC-GIC 298 Edge      modem\n 97:          0          0          0          0          0          0          0          0   PDC-GIC 610 Edge      cdsp\n138:          0          0          0          0          0          0          0          0  msmgpio-dc  26 Edge      esd_err_irq\n144:          1          0          0          0          0          0          0          0  msmgpio-dc  41 Edge      bq2597x charger irq\n182:          0          0          0          0          0          0          0          0  msmgpio-dc  89 Edge      fts_ts\n184:          0          0          0          0          0          0          0          0  msmgpio-dc  90 Edge      TE_GPIO\n192:          0          0          0          0          0          0          0          0  msmgpio-dc  95 Edge      ant-div-switch-irq\n200:          0          0          0          0          0          0          0          0  msmgpio-dc  99 Edge      8804000.sdhci cd\n242:         32          0          0          0          0          0          0          0   PDC-GIC 634 Level     i2c_geni\n243:        519          0          0          0          0          0          0          0   PDC-GIC 636 Level     i2c_geni\n244:          0          0          0          0          0          0          0          0   PDC-GIC 386 Level     i2c_geni\n245:          0          0          0          0          0          0          0          0   PDC-GIC 385 Level     spi_geni\n246:          0          0          0          0          0          0          0          0   PDC-GIC 388 Level     msm_serial_geni0\n247:          0          0          0          0          0          0          0          0   PDC-GIC 332 Level     kgsl-3d0\n248:          0          0          0          0          0          0          0          0   PDC-GIC 336 Level     kgsl-oob\n249:          0          0          0          0          0          0          0          0   PDC-GIC 337 Level     kgsl-rgmu\n250:          0          0          0          0          0          0          0          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n251:          1          0          0          0          0          0          0          0   PDC-GIC 162 Edge      pwr_event_irq\n252:          0          0          0          0          0          0          0          0   PDC-GIC 518 Level     ss_phy_irq\n253:          0          0          0          0          0          0          0          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n254:          0          0          0          0          0          0          0          0   PDC-GIC 509 Edge      csiphy\n255:          0          0          0          0          0          0          0          0   PDC-GIC 510 Edge      csiphy\n256:          0          0          0          0          0          0          0          0   PDC-GIC 511 Edge      csiphy\n257:          0          0          0          0          0          0          0          0   PDC-GIC 492 Edge      cci\n258:          0          0          0          0          0          0          0          0   PDC-GIC 491 Edge      cpas_camnoc\n259:          1          0          0          0          0          0          0          0   PDC-GIC 493 Edge      cpas-cdm\n260:          0          0          0          0          0          0          0          0   PDC-GIC 496 Edge      csid\n261:          2          0          0          0          0          0          0          0   PDC-GIC 497 Edge      ife\n262:          0          0          0          0          0          0          0          0   PDC-GIC 498 Edge      csid\n263:          2          0          0          0          0          0          0          0   PDC-GIC 499 Edge      ife\n264:          0          0          0          0          0          0          0          0   PDC-GIC 500 Edge      csid-lite\n265:          2          0          0          0          0          0          0          0   PDC-GIC 501 Edge      ife-lite\n266:          0          0          0          0          0          0          0          0   PDC-GIC 495 Edge      a5\n267:          0          0          0          0          0          0          0          0   PDC-GIC 506 Edge      jpeg\n268:          0          0          0          0          0          0          0          0   PDC-GIC 507 Edge      jpegdma\n269:          1          0          0          0          0          0          0          0   PDC-GIC 508 Edge      lrme\n270:          0          0          0          0          0          0          0          0   PDC-GIC 617 Level     arm-smmu global fault\n271:          0          0          0          0          0          0          0          0   PDC-GIC 622 Level     arm-smmu-context-fault\n272:          0          0          0          0          0          0          0          0   PDC-GIC 623 Level     arm-smmu-context-fault\n279:          0          0          0          0          0          0          0          0   PDC-GIC  97 Level     arm-smmu global fault\n281:          0          0          0          0          0          0          0          0   PDC-GIC 127 Level     arm-smmu-context-fault\n283:          0          0          0          0          0          0          0          0   PDC-GIC 129 Level     arm-smmu-context-fault\n284:          0          0          0          0          0          0          0          0   PDC-GIC 130 Level     arm-smmu-context-fault\n285:          0          0          0          0          0          0          0          0   PDC-GIC 131 Level     arm-smmu-context-fault\n286:          0          0          0          0          0          0          0          0   PDC-GIC 132 Level     arm-smmu-context-fault\n287:          0          0          0          0          0          0          0          0   PDC-GIC 133 Level     arm-smmu-context-fault\n288:          0          0          0          0          0          0          0          0   PDC-GIC 134 Level     arm-smmu-context-fault\n289:          0          0          0          0          0          0          0          0   PDC-GIC 135 Level     arm-smmu-context-fault\n290:          0          0          0          0          0          0          0          0   PDC-GIC 136 Level     arm-smmu-context-fault\n291:          0          0          0          0          0          0          0          0   PDC-GIC 137 Level     arm-smmu-context-fault\n292:          0          0          0          0          0          0          0          0   PDC-GIC 138 Level     arm-smmu-context-fault\n293:          0          0          0          0          0          0          0          0   PDC-GIC 139 Level     arm-smmu-context-fault\n294:          0          0          0          0          0          0          0          0   PDC-GIC 140 Level     arm-smmu-context-fault\n295:          0          0          0          0          0          0          0          0   PDC-GIC 141 Level     arm-smmu-context-fault\n296:          0          0          0          0          0          0          0          0   PDC-GIC 142 Level     arm-smmu-context-fault\n297:          0          0          0          0          0          0          0          0   PDC-GIC 143 Level     arm-smmu-context-fault\n298:          0          0          0          0          0          0          0          0   PDC-GIC 144 Level     arm-smmu-context-fault\n299:          0          0          0          0          0          0          0          0   PDC-GIC 145 Level     arm-smmu-context-fault\n300:          0          0          0          0          0          0          0          0   PDC-GIC 146 Level     arm-smmu-context-fault\n301:          0          0          0          0          0          0          0          0   PDC-GIC 147 Level     arm-smmu-context-fault\n302:          0          0          0          0          0          0          0          0   PDC-GIC 148 Level     arm-smmu-context-fault\n303:          0          0          0          0          0          0          0          0   PDC-GIC 149 Level     arm-smmu-context-fault\n304:          0          0          0          0          0          0          0          0   PDC-GIC 150 Level     arm-smmu-context-fault\n305:          0          0          0          0          0          0          0          0   PDC-GIC 213 Level     arm-smmu-context-fault\n306:          0          0          0          0          0          0          0          0   PDC-GIC 214 Level     arm-smmu-context-fault\n307:          0          0          0          0          0          0          0          0   PDC-GIC 215 Level     arm-smmu-context-fault\n308:          0          0          0          0          0          0          0          0   PDC-GIC 216 Level     arm-smmu-context-fault\n309:          0          0          0          0          0          0          0          0   PDC-GIC 217 Level     arm-smmu-context-fault\n310:          0          0          0          0          0          0          0          0   PDC-GIC 218 Level     arm-smmu-context-fault\n311:          0          0          0          0          0          0          0          0   PDC-GIC 219 Level     arm-smmu-context-fault\n312:          0          0          0          0          0          0          0          0   PDC-GIC 220 Level     arm-smmu-context-fault\n345:          0          0          0          0          0          0          0          0   PDC-GIC 206 Level     msm_vidc\n346:          0          0          0          0          0          0          0          0   PDC-GIC 115 Edge      msm_drm\n360:          0          0          0          0          0          0          0          0   PDC-GIC  64 Level     limits_sensor-00\n361:          0          0          0          0          0          0          0          0   PDC-GIC  65 Level     limits_sensor-01\n362:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n363:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n364:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n365:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n366:          0          0          0          0          0          0          0          0     smp2p   7 Edge      adsp\n367:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n368:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n369:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n370:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n371:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n372:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n373:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n374:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n375:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n376:          0          0          0          0          0          0          0          0     smp2p   7 Edge      cdsp\n377:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n378:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n379:          0          0          0          0          0          0          0          0   msmgpio 110 Edge      ant-switch-irq\n380:          0          0          0          0          0          0          0          0     GICv3 165 Edge      dwc3\n382:          0          0          0          0          0          0          0          0  pmic_arb 101777568 Edge      qpnp_rtc_alarm\n383:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n385:          0          0          0          0          0          0          0          0  pmic_arb 75563166 Edge      qg-vbat-low\n386:          0          0          0          0          0          0          0          0  pmic_arb 75628702 Edge      qg-vbat-empty\n387:          0          0          0          0          0          0          0          0  pmic_arb 75694238 Edge      qg-fifo-done\n388:          0          0          0          0          0          0          0          0  pmic_arb 75759774 Edge      qg-good-ocv\n389:          0          0          0          0          0          0          0          0  pmic_arb 16777358 Edge      chgr-error\n390:          0          0          0          0          0          0          0          0  pmic_arb 16842894 Edge      chg-state-change\n397:          0          0          0          0          0          0          0          0  pmic_arb 17825935 Edge      otg-fail\n401:          0          0          0          0          0          0          0          0  pmic_arb 18088079 Edge      high-duty-cycle\n402:          0          0          0          0          0          0          0          0  pmic_arb 18153615 Edge      input-current-limiting\n404:          0          0          0          0          0          0          0          0  pmic_arb 18284687 Edge      switcher-power-ok\n405:          0          0          0          0          0          0          0          0  pmic_arb 18874512 Edge      bat-temp\n406:          0          0          0          0          0          0          0          0  pmic_arb 19005584 Edge      bat-ov\n407:          0          0          0          0          0          0          0          0  pmic_arb 19071120 Edge      bat-low\n408:          0          0          0          0          0          0          0          0  pmic_arb 19136656 Edge      bat-therm-or-id-missing\n409:          0          0          0          0          0          0          0          0  pmic_arb 19202192 Edge      bat-terminal-missing\n412:          0          0          0          0          0          0          0          0  pmic_arb 19923089 Edge      usbin-collapse\n413:          0          0          0          0          0          0          0          0  pmic_arb 19988625 Edge      usbin-vashdn\n414:          0          0          0          0          0          0          0          0  pmic_arb 20054161 Edge      usbin-uv\n415:          0          0          0          0          0          0          0          0  pmic_arb 20119697 Edge      usbin-ov\n416:          0          0          0          0          0          0          0          0  pmic_arb 20185233 Edge      usbin-plugin\n418:          0          0          0          0          0          0          0          0  pmic_arb 20316305 Edge      usbin-src-change\n419:          0          0          0          0          0          0          0          0  pmic_arb 20381841 Edge      usbin-icl-change\n421:          0          0          0          0          0          0          0          0  pmic_arb 21102738 Edge      dcin-uv\n422:          0          0          0          0          0          0          0          0  pmic_arb 21168274 Edge      dcin-ov\n423:          0          0          0          0          0          0          0          0  pmic_arb 21233810 Edge      dcin-plugin\n425:          0          0          0          0          0          0          0          0  pmic_arb 21364882 Edge      dcin-pon\n426:          0          0          0          0          0          0          0          0  pmic_arb 21430418 Edge      dcin-en\n427:          0          0          0          0          0          0          0          0  pmic_arb 22020243 Edge      typec-or-rid-detect-change\n429:          0          0          0          0          0          0          0          0  pmic_arb 22151315 Edge      typec-cc-state-change\n430:          0          0          0          0          0          0          0          0  pmic_arb 22216851 Edge      typec-vconn-oc\n432:          0          0          0          0          0          0          0          0  pmic_arb 22347923 Edge      typec-attach-detach\n433:          0          0          0          0          0          0          0          0  pmic_arb 22413459 Edge      typec-legacy-cable-detect\n435:          0          0          0          0          0          0          0          0  pmic_arb 23068820 Edge      wdog-snarl\n436:          0          0          0          0          0          0          0          0  pmic_arb 23134356 Edge      wdog-bark\n438:          0          0          0          0          0          0          0          0  pmic_arb 23265428 Edge      aicl-done\n439:          0          0          0          0          0          0          0          0  pmic_arb 23330964 Edge      smb-en\n441:          0          0          0          0          0          0          0          0  pmic_arb 23462036 Edge      temp-change\n443:          0          0          0          0          0          0          0          0  pmic_arb 185663650 Edge      sdam-sts\nIPI0:       431        405        531        533        624        674        373        696       Rescheduling interrupts\nIPI1:        36         84         84         84         84         85         74         65       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:        34         11          9          8          7         19         20         36       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm6150ac/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    5 root      0:00 [kworker/0:0H]\n    6 root      0:00 [kworker/u16:0]\n    7 root      0:00 [mm_percpu_wq]\n    8 root      0:00 [ksoftirqd/0]\n    9 root      0:00 [rcu_preempt]\n   10 root      0:00 [rcu_sched]\n   11 root      0:00 [rcu_bh]\n   12 root      0:00 [rcuop/0]\n   13 root      0:00 [rcuos/0]\n   14 root      0:00 [rcuob/0]\n   15 root      0:00 [migration/0]\n   16 root      0:00 [cpuhp/0]\n   17 root      0:00 [cpuhp/1]\n   18 root      0:00 [migration/1]\n   19 root      0:00 [ksoftirqd/1]\n   21 root      0:00 [kworker/1:0H]\n   22 root      0:00 [rcuop/1]\n   23 root      0:00 [rcuos/1]\n   24 root      0:00 [rcuob/1]\n   25 root      0:00 [cpuhp/2]\n   26 root      0:00 [migration/2]\n   27 root      0:00 [ksoftirqd/2]\n   28 root      0:00 [kworker/2:0]\n   29 root      0:00 [kworker/2:0H]\n   30 root      0:00 [rcuop/2]\n   31 root      0:00 [rcuos/2]\n   32 root      0:00 [rcuob/2]\n   33 root      0:00 [cpuhp/3]\n   34 root      0:00 [migration/3]\n   35 root      0:00 [ksoftirqd/3]\n   36 root      0:00 [kworker/3:0]\n   37 root      0:00 [kworker/3:0H]\n   38 root      0:00 [rcuop/3]\n   39 root      0:00 [rcuos/3]\n   40 root      0:00 [rcuob/3]\n   41 root      0:00 [cpuhp/4]\n   42 root      0:00 [migration/4]\n   43 root      0:00 [ksoftirqd/4]\n   44 root      0:00 [kworker/4:0]\n   45 root      0:00 [kworker/4:0H]\n   46 root      0:00 [rcuop/4]\n   47 root      0:00 [rcuos/4]\n   48 root      0:00 [rcuob/4]\n   49 root      0:00 [cpuhp/5]\n   50 root      0:00 [migration/5]\n   51 root      0:00 [ksoftirqd/5]\n   52 root      0:00 [kworker/5:0]\n   53 root      0:00 [kworker/5:0H]\n   54 root      0:00 [rcuop/5]\n   55 root      0:00 [rcuos/5]\n   56 root      0:00 [rcuob/5]\n   57 root      0:00 [cpuhp/6]\n   58 root      0:00 [migration/6]\n   59 root      0:00 [ksoftirqd/6]\n   61 root      0:00 [kworker/6:0H]\n   62 root      0:00 [rcuop/6]\n   63 root      0:00 [rcuos/6]\n   64 root      0:00 [rcuob/6]\n   65 root      0:00 [cpuhp/7]\n   66 root      0:00 [migration/7]\n   67 root      0:00 [ksoftirqd/7]\n   69 root      0:00 [kworker/7:0H]\n   70 root      0:00 [rcuop/7]\n   71 root      0:00 [rcuos/7]\n   72 root      0:00 [rcuob/7]\n   73 root      0:00 [netns]\n   74 root      0:00 [kworker/u16:1]\n   75 root      0:00 [kworker/u17:0]\n   76 root      0:00 [ipa_usb_wq]\n   78 root      0:00 [msm_watchdog]\n   79 root      0:00 [spi_wdsp]\n   80 root      0:00 [qmp_aop]\n   81 root      0:00 [oom_reaper]\n   82 root      0:00 [writeback]\n   83 root      0:00 [kcompactd0]\n   84 root      0:00 [crypto]\n   85 root      0:00 [kblockd]\n   86 root      0:00 [blk_crypto_wq]\n   87 root      0:00 [kworker/6:1]\n   88 root      0:00 [irq/270-arm-smm]\n   89 root      0:00 [irq/279-arm-smm]\n   90 root      0:00 [irq/93-tsens-up]\n   91 root      0:00 [irq/94-tsens-cr]\n   92 root      0:00 [edac-poller]\n   93 root      0:00 [system]\n   94 root      0:00 [ipa_power_mgmt]\n   95 root      0:00 [transport_power]\n   96 root      0:00 [ipa_pm_activate]\n   97 root      0:00 [devfreq_wq]\n   98 root      0:00 [cfg80211]\n   99 root      0:00 [irq/82-qpnp_lcd]\n  105 root      0:00 [kworker/2:1]\n  109 root      0:00 [kworker/5:1]\n  113 root      0:00 [kworker/3:1]\n  140 root      0:00 [kswapd0]\n  141 root      0:00 [ecryptfs-kthrea]\n  147 root      0:00 [kworker/4:1]\n  180 root      0:00 [irq/86-wled_ovp]\n  181 root      0:00 [irq/88-wled_fla]\n  182 root      0:00 [irq/87-wled_pre]\n  183 root      0:00 [irq/283-arm-smm]\n  184 root      0:00 [irq/285-arm-smm]\n  185 root      0:00 [irq/90-smp2p]\n  186 root      0:00 [irq/91-smp2p]\n  187 root      0:00 [irq/92-smp2p]\n  188 root      0:00 [irq/286-arm-smm]\n  189 root      0:00 [kworker/7:2]\n  190 root      0:00 [mem_share_svc]\n  191 root      0:00 [cdsprm-wq]\n  192 root      0:00 [cdsprm-wq-delay]\n  193 root      0:00 [irq/287-arm-smm]\n  194 root      0:00 [diag_real_time_]\n  195 root      0:00 [diag_wq]\n  197 root      0:00 [DIAG_USB_diag]\n  198 root      0:00 [diag_cntl_wq]\n  199 root      0:00 [diag_dci_wq]\n  200 root      0:00 [MODEM_CNTL]\n  201 root      0:00 [MODEM_DATA]\n  202 root      0:00 [MODEM_CMD]\n  203 root      0:00 [MODEM_DCI]\n  204 root      0:00 [MODEM_DCI_CMD]\n  205 root      0:00 [LPASS_CNTL]\n  206 root      0:00 [LPASS_DATA]\n  207 root      0:00 [LPASS_CMD]\n  208 root      0:00 [LPASS_DCI]\n  209 root      0:00 [LPASS_DCI_CMD]\n  210 root      0:00 [WCNSS_CNTL]\n  211 root      0:00 [WCNSS_DATA]\n  212 root      0:00 [WCNSS_CMD]\n  213 root      0:00 [WCNSS_DCI]\n  214 root      0:00 [WCNSS_DCI_CMD]\n  215 root      0:00 [SENSORS_CNTL]\n  216 root      0:00 [SENSORS_DATA]\n  217 root      0:00 [SENSORS_CMD]\n  218 root      0:00 [SENSORS_DCI]\n  219 root      0:00 [SENSORS_DCI_CMD]\n  220 root      0:00 [DIAG_CTRL]\n  221 root      0:00 [DIAG_DATA]\n  222 root      0:00 [DIAG_CMD]\n  223 root      0:00 [DIAG_DCI_DATA]\n  224 root      0:00 [DIAG_DCI_CMD]\n  225 root      0:00 [CDSP_CNTL]\n  226 root      0:00 [CDSP_DATA]\n  227 root      0:00 [CDSP_CMD]\n  228 root      0:00 [CDSP_DCI]\n  229 root      0:00 [CDSP_DCI_CMD]\n  230 root      0:00 [NPU_CNTL]\n  231 root      0:00 [NPU_DATA]\n  232 root      0:00 [NPU_CMD]\n  233 root      0:00 [NPU_DCI]\n  234 root      0:00 [NPU_DCI_CMD]\n  235 root      0:00 [DIAG_RPMSG_APPS]\n  236 root      0:00 [DIAG_RPMSG_APPS]\n  237 root      0:00 [kworker/u16:2]\n  238 root      0:00 [DIAG_RPMSG_DIAG]\n  239 root      0:00 [DIAG_RPMSG_DIAG]\n  240 root      0:00 [DIAG_RPMSG_DIAG]\n  241 root      0:00 [DIAG_RPMSG_DIAG]\n  242 root      0:00 [DIAG_RPMSG_DIAG]\n  243 root      0:00 [DIAG_RPMSG_DIAG]\n  244 root      0:00 [DIAG_RPMSG_DIAG]\n  245 root      0:00 [DIAG_RPMSG_DIAG]\n  246 root      0:00 [kworker/u16:3]\n  247 root      0:00 [mykthread]\n  248 root      0:00 [kworker/u16:4]\n  249 root      0:00 [kworker/u16:5]\n  250 root      0:00 [kworker/u16:6]\n  252 root      0:00 [irq/284-arm-smm]\n  253 root      0:00 [irq/288-arm-smm]\n  254 root      0:00 [irq/138-esd_err]\n  255 root      0:00 [crtc_commit:100]\n  256 root      0:00 [crtc_event:100]\n  257 root      0:00 [crtc_commit:137]\n  258 root      0:00 [crtc_event:137]\n  259 root      0:00 [pp_event]\n  260 root      0:00 [kgsl-workqueue]\n  261 root      0:00 [kgsl-mementry]\n  262 root      0:00 [kgsl_worker_thr]\n  263 root      0:00 [irq/271-arm-smm]\n  264 root      0:00 [irq/272-arm-smm]\n  265 root      0:00 [kgsl-events]\n  266 root      0:00 [kgsl_devfreq_wq]\n  267 root      0:00 [qseecom-unreg-l]\n  268 root      0:00 [qseecom-unload-]\n  269 root      0:00 [memory_wq]\n  270 root      0:00 [irq/379-ant-swi]\n  271 root      0:00 [irq/192-ant-div]\n  272 root      0:00 [irq/289-arm-smm]\n  273 root      0:00 [qcrypto_seq_res]\n  274 root      0:00 [irq/290-arm-smm]\n  296 root      0:00 [scsi_eh_0]\n  297 root      0:00 [scsi_tmf_0]\n  298 root      0:00 [ufs_pm_qos_0]\n  299 root      0:00 [ufs_clk_gating_]\n  300 root      0:00 [ufs_clkscaling_]\n  301 root      0:00 [kworker/u16:9]\n  302 root      0:00 [spi0]\n  303 root      0:00 [bond0]\n  309 root      0:00 [uether]\n  310 root      0:00 [k_ipa_usb]\n  313 root      0:00 [irq/281-arm-smm]\n  314 root      0:00 [fts_wq]\n  315 root      0:00 [kworker/u16:10]\n  316 root      0:00 [kworker/u16:11]\n  321 root      0:00 [irq/182-fts_ts]\n  322 root      0:00 [rot_commitq_0_0]\n  323 root      0:00 [rot_commitq_0_1]\n  324 root      0:00 [rot_doneq_0_0]\n  325 root      0:00 [rot_doneq_0_1]\n  326 root      0:00 [rot_fenceq_0_0]\n  327 root      0:00 [rot_fenceq_0_1]\n  328 root      0:00 [rot_fenceq_0_2]\n  329 root      0:00 [rot_fenceq_0_3]\n  330 root      0:00 [rot_fenceq_0_4]\n  331 root      0:00 [rot_fenceq_0_5]\n  332 root      0:00 [rot_fenceq_0_6]\n  333 root      0:00 [rot_fenceq_0_7]\n  334 root      0:00 [rot_fenceq_0_8]\n  335 root      0:00 [rot_fenceq_0_9]\n  336 root      0:00 [rot_fenceq_0_10]\n  337 root      0:00 [rot_fenceq_0_11]\n  338 root      0:00 [rot_fenceq_0_12]\n  339 root      0:00 [rot_fenceq_0_13]\n  340 root      0:00 [rot_fenceq_0_14]\n  341 root      0:00 [rot_fenceq_0_15]\n  342 root      0:00 [msm_vidc_worker]\n  343 root      0:00 [pm_workerq_venu]\n  344 root      0:00 [irq/291-arm-smm]\n  345 root      0:00 [irq/292-arm-smm]\n  346 root      0:00 [irq/293-arm-smm]\n  347 root      0:00 [irq/294-arm-smm]\n  348 root      0:00 [cam-cpas]\n  349 root      0:00 [qcom,cam_virtua]\n  350 root      0:00 [irq/295-arm-smm]\n  351 root      0:00 [qcom,cam170-cpa]\n  352 root      0:00 [irq/296-arm-smm]\n  353 root      0:00 [cam_cci_wq]\n  354 root      0:00 [cam_cci_wq]\n  355 root      0:00 [irq/297-arm-smm]\n  356 root      0:00 [irq/298-arm-smm]\n  357 root      0:00 [irq/299-arm-smm]\n  358 root      0:00 [irq/144-bq2597x]\n  359 root      0:00 [kworker/7:3]\n  360 root      0:00 [irq/57-qcom,tem]\n  361 root      0:00 [irq/64-qcom,tem]\n  362 root      0:00 [irq/360-limits_]\n  363 root      0:00 [kworker/0:1H]\n  364 root      0:00 [irq/361-limits_]\n  365 root      0:00 [kworker/6:1H]\n  366 root      0:00 [irq/54-bcl-lvl0]\n  367 root      0:00 [irq/55-bcl-lvl1]\n  368 root      0:00 [irq/56-bcl-lvl2]\n  369 root      0:00 [irq/65-bcl-lvl0]\n  370 root      0:00 [irq/66-bcl-lvl1]\n  371 root      0:00 [irq/67-bcl-lvl2]\n  372 root      0:00 [dm_bufio_cache]\n  373 root      0:00 [irq/29-KRYO L3-]\n  374 root      0:00 [mmc_clk_gate/mm]\n  375 root      0:00 [mmc_clk_gate/mm]\n  376 root      0:00 [irq/35-8804000.]\n  377 root      0:00 [irq/34-mmc0]\n  378 root      0:00 [irq/200-8804000]\n  379 root      0:00 [irq/300-arm-smm]\n  380 root      0:00 [uaudio_svc]\n  381 root      0:00 [apr_driver]\n  383 root      0:00 [ipv6_addrconf]\n  393 root      0:00 [irq/385-qg-vbat]\n  394 root      0:00 [irq/386-qg-vbat]\n  395 root      0:00 [irq/387-qg-fifo]\n  396 root      0:00 [irq/388-qg-good]\n  397 root      0:00 [irq/389-chgr-er]\n  398 root      0:00 [irq/390-chg-sta]\n  399 root      0:00 [irq/397-otg-fai]\n  400 root      0:00 [kworker/6:4]\n  401 root      0:00 [irq/401-high-du]\n  402 root      0:00 [irq/402-input-c]\n  404 root      0:00 [irq/404-switche]\n  406 root      0:00 [irq/405-bat-tem]\n  407 root      0:00 [irq/406-bat-ov]\n  408 root      0:00 [irq/407-bat-low]\n  409 root      0:00 [irq/408-bat-the]\n  410 root      0:00 [irq/409-bat-ter]\n  411 root      0:00 [irq/412-usbin-c]\n  412 root      0:00 [irq/413-usbin-v]\n  413 root      0:00 [irq/414-usbin-u]\n  414 root      0:00 [irq/415-usbin-o]\n  415 root      0:00 [irq/416-usbin-p]\n  416 root      0:00 [irq/418-usbin-s]\n  417 root      0:00 [irq/419-usbin-i]\n  418 root      0:00 [irq/421-dcin-uv]\n  419 root      0:00 [irq/422-dcin-ov]\n  420 root      0:00 [irq/423-dcin-pl]\n  421 root      0:00 [irq/425-dcin-po]\n  422 root      0:00 [irq/426-dcin-en]\n  423 root      0:00 [irq/427-typec-o]\n  424 root      0:00 [irq/429-typec-c]\n  425 root      0:00 [irq/430-typec-v]\n  426 root      0:00 [irq/432-typec-a]\n  427 root      0:00 [kworker/1:2]\n  428 root      0:00 [irq/433-typec-l]\n  429 root      0:00 [irq/435-wdog-sn]\n  430 root      0:00 [irq/436-wdog-ba]\n  431 root      0:00 [irq/438-aicl-do]\n  432 root      0:00 [irq/439-smb-en]\n  433 root      0:00 [irq/441-temp-ch]\n  434 root      0:00 [irq/443-sdam-st]\n  435 root      0:00 [irq/45-thr-int-]\n  436 root      0:00 [irq/69-thr-int-]\n  443 root      0:00 [irq/46-sig-tx]\n  444 root      0:00 [irq/47-sig-rx]\n  445 root      0:00 [irq/251-pwr_eve]\n  446 root      0:00 [irq/250-dp_hs_p]\n  447 root      0:00 [irq/253-dm_hs_p]\n  448 root      0:00 [irq/252-ss_phy_]\n  449 root      0:00 [irq/301-arm-smm]\n  450 root      0:00 [usb_bam_wq]\n  451 root      0:00 [core_ctl/0]\n  452 root      0:00 [core_ctl/6]\n  457 root      0:00 [rq_stats]\n  458 root      0:00 [msm_perf:events]\n  459 root      0:00 [irq/302-arm-smm]\n  460 root      0:00 [irq/303-arm-smm]\n  461 root      0:00 [irq/304-arm-smm]\n  462 root      0:00 [irq/305-arm-smm]\n  463 root      0:00 [irq/306-arm-smm]\n  464 root      0:00 [irq/307-arm-smm]\n  465 root      0:00 [irq/308-arm-smm]\n  466 root      0:00 [kworker/1:3]\n  467 root      0:00 [irq/309-arm-smm]\n  468 root      0:00 [irq/310-arm-smm]\n  469 root      0:00 [irq/311-arm-smm]\n  470 root      0:00 [irq/312-arm-smm]\n  471 root      0:00 [drm_dp]\n  473 root      0:00 [sb-3]\n  474 root      0:00 [ngd_rx_thread3]\n  475 root      0:00 [ngd_notify_sl3]\n  476 root      0:00 [irq/85-qpnp_fla]\n  477 root      0:00 [irq/84-qpnp_fla]\n  478 root      0:00 [irq/83-qpnp_fla]\n  484 root      0:00 [mmcqd/0]\n  491 root      0:00 [kworker/0:3]\n  492 root      0:00 [kworker/0:4]\n  612 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm6150ac/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1102.385931,3.67461977,259.02480321476617,70.49502557342237,4.255619422217847,272.155502865\r\n1,576000,2126.076326,3.691104732638889,282.32723051645274,39.84049771728173,7.530026410033229,141.114612446\r\n1,748800,2767.093721,3.6953708880876075,295.4290048097378,32.03201057533121,9.365631273581021,108.425408656\r\n1,1017600,3763.926528,3.6988271698113206,318.9741841928233,25.425206305354248,11.799314286658259,79.70929174\r\n1,1209600,4476.208949,3.7005695676256614,336.04083012055804,22.52366323430157,13.31932540809464,67.026567058\r\n1,1363200,5045.917852,3.7015242458920183,352.6518065995551,20.968544590347943,14.307144623575516,59.459626175\r\n1,1516800,5615.34862,3.7021022020042196,365.2539992170188,19.51504693054646,15.372753192328572,53.428701595\r\n1,1593600,5900.517279,3.7026338347138554,372.39685440735144,18.93533990793895,15.843391323237885,50.847206908\r\n1,1708800,6328.312872,3.7033666151685396,389.9734741286084,18.48890959408344,16.225943367476994,47.410685138\r\n6,300000,2328.360989,7.7612032966666655,290.8287059736294,37.47695541596815,8.004919200885146,128.862641982\r\n6,652800,5074.854098,7.773979929534314,347.293742247282,20.53612962244719,14.608400195920192,59.131873467\r\n6,768000,5975.381429,7.780444569010417,367.5057927680909,18.45729843404882,16.253732964873105,50.223149668\r\n6,979200,7614.213198,7.775953020833334,414.3328454092564,16.33095969572881,18.37001655686296,39.415073839\r\n6,1017600,7917.238467,7.7803050972877354,422.14693262954,16.0025465176398,18.747016274522707,37.907527642\r\n6,1209600,9402.914904,7.77357382936508,470.56682505514283,15.021412174882492,19.971491129285038,31.921953217\r\n6,1363200,10606.703437,7.7807390236208915,549.776127411125,15.559596327949755,19.28070585360296,28.301695094\r\n6,1516800,11804.052725,7.78220775646097,613.96232799156,15.613728847412446,19.21385999025575,25.431086136\r\n6,1708800,13291.980505,7.778546643843633,729.0297925248201,16.46560379075861,18.219799517365786,22.585639105\r\n6,1900800,14792.170011,7.782075973800505,868.1049595995374,17.620438856831445,17.025682642614203,20.297590357\r\n6,2016000,15683.814304,7.779669793650793,967.8731807479332,18.52960669097798,16.190305871201748,19.144663846\r\n6,2112000,16432.053459,7.780328342329545,1069.9254311309583,19.549739270098215,15.345473198144234,18.272057754\r\n6,2208000,17186.067828,7.783545211956522,1194.740946303087,20.875151685998762,14.37115305855305,17.4725339\r\n"
  },
  {
    "path": "results/sm6150ac/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1644.7212462984025, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [436.58969889599996, 430.81422227999997, 438.717816594, 429.61572267500003, 428.50554552, 431.96856066000004, 428.50554552, 435.412925571, 424.251831536, 437.721483381, 436.63457237999995, 430.74774556, 436.544825412, 434.236385942, 433.476996914, 435.412925571, 438.898375656, 428.50554552, 428.50554552, 440.033825712, 433.43236072, 426.171125289, 441.188104617, 436.63457237999995, 436.544825412, 444.74246760000005, 427.64609249999995, 429.704045125, 428.52762342, 427.439167925, 425.016846384, 438.898375656, 432.03521550000005, 436.6570668, 432.01295917500005, 438.94348643, 423.9498147, 434.258646666, 429.682021275, 488.938778708, 437.766591171, 434.258646666, 437.766591171, 433.1935173, 426.236888945, 431.21321523, 433.171201305, 431.96856066000004, 429.6598839, 436.612193316, 433.08216620700006, 431.19107304000005, 427.37322556500004, 430.76994241, 427.37322556500004, 429.637746525, 435.435360516, 432.324795669, 422.751849234, 442.41064261, 433.171201305, 436.6570668, 433.148999751, 431.16881671500005, 429.6598839, 431.96856066000004, 425.12623047999995, 428.52762342, 427.37322556500004, 426.560011735, 434.214010472, 428.50554552, 429.61572267500003, 424.973160128, 433.12668375600003, 427.41714950000005, 434.236385942, 426.149279143, 434.281022136, 434.281022136, 433.21583329500004, 431.94630433500004, 507.23324737799993, 421.59745137899995, 432.01295917500005, 423.90624708900003, 428.57166600000005, 435.457795461, 431.25772788, 431.94630433500004, 434.30339760600003, 428.50554552, 430.79202543, 431.9241621450001, 429.95013875, 431.96856066000004, 433.10436776100005, 434.30339760600003, 431.96856066000004, 440.033825712, 429.9723356, 429.682021275, 433.059850212, 420.46460382000004, 431.96856066000004, 436.58969889599996, 426.560011735, 422.708288574, 430.83641912999997, 433.03753421700003, 426.215042799, 430.85850215, 426.215042799, 421.57573052399994, 430.76994241, 428.48346762, 434.236385942, 433.148999751], \"power_mean\": 432.731055662178, \"energy_millijoules\": 2163.65527831089, \"energy_joules\": 2.16365527831089}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 272.155502865, \"elapsed_ns\": 272155502865, \"power_samples\": [257.768028345, 260.10872822999994, 250.60557249599998, 257.80301973, 270.56308538, 256.65016548, 265.9474135609999, 269.23254485, 258.9558739799999, 261.26536232999996, 258.88595200799995, 249.7292601299999, 255.4277451929999, 262.3829871, 261.996185476, 264.75927351, 257.83801111500003, 255.35800032299989, 251.8963712869999, 258.9558739799999, 256.68509739000007, 257.733216403, 249.69468526499992, 255.46243879499997, 261.230192325, 264.72392508, 256.68509739000007, 256.61523356999993, 263.53578187500005, 257.80301973, 252.03496862999992, 257.6982250180001, 251.931065102, 268.04434166999994, 257.768028345, 256.510616978, 253.22257617000008, 264.61806106399996, 248.50755210199992, 260.21387918199997, 251.8963712869999, 261.1952026789999, 260.10872822999994, 266.8526604479999, 254.37548989499993, 254.9751188699999, 264.72392508, 256.5804807979999, 254.305864365, 250.84748004, 258.9558739799999, 258.7809791759999, 264.335817446, 261.08987302300005, 264.58271263399996, 260.003577278, 250.81302331199987, 253.22257617000008, 257.66323363299995, 258.7809791759999, 270.34957498, 258.7809791759999, 263.50067388899987, 256.510616978, 256.09232974799994, 248.50755210199992, 261.230192325, 262.20720102799993, 263.53578187500005, 266.8879459439998, 256.510616978, 253.08374123200002, 258.92082311999997, 254.23641736199994, 254.2712301269998, 256.54554888800004, 251.61935451799997, 255.4277451929999, 261.230192325, 256.5804807979999, 258.850901148, 263.50067388899987, 251.8963712869999, 258.676006344, 260.003577278, 263.50067388899987, 258.88595200799995, 263.50067388899987, 253.74993128700004, 251.96575891699996, 257.733216403, 254.20160459699986, 254.23641736199994, 256.61523356999993, 255.392872758, 261.996185476, 271.57360258499995, 255.46243879499997, 258.850901148, 265.700102963, 256.4758642059999, 254.166970359, 264.61806106399996, 274.9281205969999, 263.50067388899987, 257.6982250180001, 254.20160459699986, 244.59989216000002, 261.0547030179999, 258.850901148, 248.43852132199999, 261.0547030179999, 264.65340949399996, 258.88595200799995, 263.3245910519999, 256.54554888800004, 248.61092127, 261.0547030179999, 250.77838897199996, 258.4310098199998, 261.1952026789999, 255.392872758, 261.230192325, 251.8618553889999, 259.9335366609999, 253.18782288000006, 259.75834509199984, 257.66323363299995, 266.8879459439998, 259.898426326, 261.1248626689999, 260.0386876129999, 247.31658131600005, 256.510616978, 257.66323363299995, 258.8158502879999, 258.7809791759999, 262.2424305079999, 259.828385709, 269.1969583249999, 257.593430306, 246.06089284199987, 254.13215759399992, 260.0386876129999, 259.9335366609999, 260.668554399, 256.4758642059999, 261.0197133719999, 268.07986872, 264.58271263399996, 254.06271059099998, 247.24784657200001, 265.700102963, 258.74592831599983, 264.547545478, 258.74592831599983, 266.8879459439998, 265.240708093, 259.79327537399996, 257.733216403, 251.82716157399994, 257.593430306, 255.4277451929999, 261.1248626689999, 255.32330672099994, 267.9381249, 258.8158502879999, 266.74644019199997, 256.4758642059999, 252.45942956599998, 257.4886355940001, 254.20160459699986, 251.8963712869999, 265.66469505799995, 262.17215221199996, 259.898426326, 269.95820018, 261.1248626689999, 261.1600326740001, 264.47702989199996, 257.628421691, 264.0889222580001, 254.09752335599984, 264.47702989199996, 260.98454336699996, 257.66323363299995, 246.02667298799992, 258.8158502879999, 249.10815370899985, 256.4758642059999, 249.6602877069999, 260.98454336699996, 259.9684669429999, 263.4300959789999, 263.3949879929999, 255.25374068399987, 255.35800032299989, 256.510616978, 253.048987942, 262.45344605999986, 257.2790461700001, 266.8171930679999, 266.6402199359998, 263.35969903799986, 258.74592831599983, 253.048987942, 257.558618364, 263.11321926, 260.0386876129999, 254.166970359, 264.44168146199996, 268.91281361, 253.71529704899996, 256.3712476140001, 259.9684669429999, 257.593430306, 248.335329156, 254.23641736199994, 264.58271263399996, 261.1248626689999, 277.12541106300006, 248.30081376599998, 248.30081376599998, 257.593430306, 251.79264567599995, 248.36966754400004, 259.9335366609999, 268.04434166999994, 261.0197133719999, 268.9484001349999, 257.593430306, 248.02522165199997, 256.4061795239999, 258.74592831599983, 254.09752335599984, 261.0547030179999, 265.59406082699996, 262.17215221199996, 256.3712476140001, 255.25374068399987, 251.8618553889999, 259.863496044, 252.91033122599998, 252.70216793000003, 255.28843428599993, 261.08987302300005, 264.44168146199996, 257.628421691, 256.44093229599997, 248.40418293399995, 261.6446133319999, 259.863496044, 252.87557793599996, 259.898426326, 261.0547030179999, 262.10169325199996, 251.82716157399994, 256.336315704, 251.79264567599995, 263.35969903799986, 257.593430306, 256.3712476140001, 264.40633303199996, 265.452610786, 266.8879459439998, 257.4886355940001, 257.4538236519999, 250.6746635639999, 260.91438371600003, 251.61935451799997, 251.931065102, 252.91033122599998, 252.9450845159999, 258.7809791759999, 259.79327537399996, 252.87557793599996, 254.13215759399992, 261.0547030179999, 248.40418293399995, 254.23641736199994, 257.558618364, 259.37285161899985, 263.46538493400004, 251.723258046, 258.6060843719999, 265.59406082699996, 261.0197133719999, 255.25374068399987, 255.1493022119999, 251.75795186099998, 257.52362697899997, 272.65480828999983, 250.57093815599995, 250.12157979599993, 256.4061795239999, 250.6402068359999, 265.59406082699996, 263.28930209699996, 257.52362697899997, 258.6060843719999, 255.28843428599993, 259.75834509199984, 252.97965958399988, 250.60557249599998, 259.828385709, 247.85299870599994, 257.4886355940001, 259.79327537399996, 258.676006344, 260.949373362, 256.336315704, 249.48776799599995, 258.36108784799995, 254.06271059099998, 259.863496044, 254.0278978259999, 258.676006344, 260.52823509699994, 264.40633303199996, 252.97965958399988, 248.36966754400004, 258.676006344, 235.58322339, 256.4758642059999, 259.37285161899985, 258.6409554839999, 260.98454336699996, 262.13692273199996, 256.44093229599997, 247.21339085199992, 260.98454336699996, 255.21886824899997, 258.7110572039999, 256.336315704, 265.66469505799995, 258.7110572039999, 261.750121108, 248.36966754400004, 250.74375463199993, 259.828385709, 250.60557249599998, 246.02667298799992, 259.828385709, 267.76067184000004, 263.28930209699996, 258.676006344, 301.3404908999999, 253.08374123200002, 255.00999130499991, 255.1493022119999, 262.2424305079999, 255.28843428599993, 263.2540131419999, 264.58271263399996, 260.98454336699996, 257.1744309010001, 254.20160459699986, 255.21886824899997, 252.73692122000006, 254.0278978259999, 257.52362697899997, 257.52362697899997, 257.31403755499997, 247.17911182799998, 257.4538236519999, 250.84748004, 248.30081376599998, 250.39812167999986, 269.05497721499995, 266.6402199359998, 253.92363805799988, 265.381976555, 257.4886355940001, 254.09752335599984, 254.73154832400002, 252.91033122599998, 252.97965958399988, 252.91033122599998, 263.21890515599995, 259.37285161899985, 266.60475255599994, 255.21886824899997, 259.75834509199984, 258.535982652, 259.79327537399996, 252.84100286799998, 256.999653419, 258.50111153999995, 265.48801869100004, 258.57103351199993, 260.80905406000005, 265.5586529219999, 258.535982652, 250.60557249599998, 246.02667298799992, 257.52362697899997, 315.024927008, 262.20720102799993, 264.993215916, 258.57103351199993, 249.3496458429998, 267.9381249, 255.1493022119999, 251.79264567599995, 259.72323475699994, 260.493065092, 255.1493022119999, 262.066644436, 252.77149628800004, 248.197444598, 253.74993128700004, 251.68874214800002, 246.19830143099995, 262.0314149559999, 248.335329156, 257.52362697899997, 253.92363805799988, 250.05248872800001, 261.996185476, 250.6402068359999, 259.863496044, 249.52216555399986, 263.2540131419999, 257.418832267, 259.68812442199993, 257.418832267, 259.75834509199984, 254.09752335599984, 257.418832267, 253.74993128700004, 247.24784657200001, 252.84100286799998, 264.371165876, 263.0075333639999, 255.1493022119999, 253.92363805799988, 254.73154832400002, 251.68874214800002, 253.99326358799993, 262.2424305079999, 257.52362697899997, 266.6402199359998, 266.56946706, 255.18399581399996, 253.95845082299985, 262.0314149559999, 315.1008607879999, 250.53648142799995, 251.13453069300004, 259.68812442199993, 259.75834509199984, 265.27593441899995, 253.95845082299985, 250.53648142799995, 258.57103351199993, 257.4538236519999, 240.12448046499998, 258.6409554839999, 250.57093815599995, 264.300469016, 263.8771942260001, 252.84100286799998, 254.06271059099998, 260.949373362, 248.30081376599998, 257.418832267, 260.91438371600003, 258.15114218399987, 260.773884055, 255.1493022119999, 249.3496458429998, 256.3712476140001, 259.5829734699999, 259.68812442199993, 253.99326358799993, 259.79327537399996, 263.21890515599995, 264.22995342999997, 260.91438371600003, 248.72853942199998, 253.95845082299985, 256.19694634, 252.77149628800004, 252.73692122000006, 255.21886824899997, 257.38384088200013, 255.25374068399987, 264.335817446, 247.07592136399995, 255.1493022119999, 260.63356475300003, 251.58483861999997, 255.18399581399996, 262.066644436, 261.9259071799999, 259.863496044, 338.1182519249999, 253.92363805799988, 253.57622451599997, 257.31403755499997, 259.68812442199993, 256.2666310219999, 257.34902894, 273.449915555, 259.75834509199984, 244.6685657000001, 252.91033122599998, 264.44168146199996, 259.6531941399999, 257.418832267, 261.5743350359999, 263.1836162009999, 263.1836162009999, 260.91438371600003, 256.336315704, 245.82064829999996, 268.9484001349999, 257.38384088200013, 253.95845082299985, 258.50111153999995, 258.7110572039999, 253.99326358799993, 262.6551867209999, 250.467212748, 251.550144805, 259.68812442199993, 248.23195998800003, 252.80624957799995, 255.1493022119999, 255.56924678799993, 263.1836162009999, 267.79619888999997, 256.2666310219999, 249.3496458429998, 263.0426413499999, 250.467212748, 245.923660644, 264.335817446, 260.84404370600004, 264.335817446, 252.80624957799995, 254.62710985199993, 240.02235930499995, 262.10169325199996, 249.2806734199999, 252.77149628800004, 325.2443659079999, 269.92273698, 260.879213711, 267.79619888999997, 245.88926439899996, 249.31507097799994, 252.80624957799995, 250.43275602, 261.85562888399994, 258.535982652, 258.535982652, 263.0426413499999, 258.6060843719999, 247.07592136399995, 248.93545669099996, 257.34902894, 249.17712613199996, 256.23169911199994, 265.48801869100004, 260.5632247429999, 263.07793030499994, 253.95845082299985, 250.467212748, 252.97965958399988, 249.31507097799994, 252.87557793599996, 254.48797777800002, 258.57103351199993, 266.5339996799999, 264.371165876, 261.8906776999999, 250.43275602, 247.144656108, 305.6879579799999, 247.07592136399995, 259.79327537399996, 263.11321926, 261.9259071799999, 259.197479997, 260.80905406000005, 249.24609855499995, 254.13215759399992, 251.61935451799997, 259.6531941399999, 263.14832724599995, 255.77847997199996, 260.80905406000005, 265.134665957, 261.996185476, 249.21152368999986, 288.2183338109999, 248.09407543000003, 250.32903061199994, 258.50111153999995, 256.23169911199994, 255.1493022119999, 269.88709098, 252.285841338, 250.39812167999986, 260.84404370600004, 244.6685657000001, 249.2806734199999, 256.2666310219999, 251.68874214800002, 257.34902894, 266.4632468039999, 251.58483861999997, 247.04146564399986, 260.84404370600004, 248.09407543000003, 245.88926439899996, 256.19694634, 261.96113666, 265.381976555, 266.32155916799996, 251.550144805, 243.03747987499997, 258.535982652, 249.2806734199999, 257.34902894, 255.079557342, 261.785350588, 258.50111153999995, 260.773884055, 253.7847440519999, 251.550144805, 255.04486374000004, 259.618083805, 245.44299516899997, 255.04486374000004, 258.50111153999995, 258.57103351199993, 261.8906776999999, 256.19694634, 245.88926439899996, 260.80905406000005, 340.11282741199994, 389.41291357200004, 379.08810694799996, 380.23953654300004, 377.8916624039999, 346.90826547600005, 346.947898641, 342.3376920179999, 347.98063198799997, 336.49768267999997, 342.5342633159999, 348.97325698000003, 353.9011058259999, 356.1645361239999, 350.3629101960001, 346.829202393, 255.8134118819999, 258.4660606799999, 250.29439627199991, 254.09752335599984, 248.16292920799998, 333.159774025, 259.618083805, 256.057397838, 261.96113666, 259.5829734699999, 261.8906776999999, 248.0595600399999, 245.992276743, 248.09407543000003, 253.81937828999986, 261.85562888399994, 253.7847440519999, 260.70372440400007, 260.70372440400007, 253.36770497999993, 249.21152368999986, 266.4985322999999, 252.70216793000003, 259.5480431879999, 257.209242843, 256.23169911199994, 252.49400463399996, 265.27593441899995, 252.73692122000006, 252.77149628800004, 265.381976555, 247.68059875800003, 255.04486374000004, 248.12859082000006, 253.74993128700004, 252.70216793000003, 257.31403755499997, 250.36348733999995, 251.06532097999997, 260.668554399, 265.27593441899995, 259.478002571, 262.972244409, 249.10815370899985, 248.02522165199997, 260.80905406000005, 254.94042526799996, 249.10815370899985, 268.7708324999999, 258.3961387079999, 257.10444813099997, 253.7847440519999, 253.81937828999986, 256.09232974799994, 256.23169911199994, 327.2435737409999, 257.209242843, 252.63283957200002, 252.63283957200002, 256.19694634, 255.079557342, 256.12708252, 255.77847997199996, 261.82039940399994, 248.16292920799998, 251.51545098999992, 259.5829734699999, 257.2442342279999, 256.12708252, 261.6446133319999, 250.32903061199994, 252.84100286799998, 262.90184746799997, 252.66741464, 246.93827517999995, 258.4310098199998, 260.73871404999994, 256.30156293199997, 252.63283957200002, 252.70216793000003, 255.11442977699988, 260.45789508700005, 256.057397838, 265.240708093, 261.96113666, 255.00999130499991, 259.618083805, 244.59989216000002, 247.74962953799997, 256.12708252, 249.21152368999986, 252.66741464, 263.0426413499999, 255.67386338, 261.9259071799999, 254.90555283300006, 253.7847440519999, 256.09232974799994, 257.2790461700001, 257.209242843, 244.25722880400002, 253.81937828999986, 260.5632247429999, 260.70372440400007, 253.6456715189999, 281.0514261199999, 254.90555283300006, 267.61892801999994, 248.02522165199997, 250.39812167999986, 253.7847440519999, 264.159437844, 263.665466194, 252.66741464, 251.377031564, 249.17712613199996, 251.48093509200004, 251.44624127699996, 252.63283957200002, 257.03464480400004, 265.169892283, 252.66741464, 259.5129328529999, 257.209242843, 247.47403742400007, 258.36108784799995, 248.09407543000003, 253.68048428399987, 261.8906776999999, 258.32621673599994, 263.07793030499994, 259.23259033200003, 251.44624127699996, 253.71529704899996, 259.618083805, 246.7318942519999, 259.618083805, 254.870859231, 308.84685082799996, 264.22995342999997, 260.668554399, 251.48093509200004, 259.478002571, 259.057398763, 254.80111436099997, 248.16292920799998, 256.09232974799994, 246.83508471599993, 257.2442342279999, 264.124089414, 244.3257262580001, 245.85486815399992, 256.09232974799994, 254.870859231, 248.197444598, 304.237120395, 264.159437844, 262.7961615719999, 262.90184746799997, 250.36348733999995, 244.63422893, 250.39812167999986, 249.03900397899992, 252.84100286799998, 251.44624127699996, 268.66425541999996, 257.10444813099997, 267.65427287999984, 250.36348733999995, 259.442892236, 250.29439627199991, 254.90555283300006, 250.39812167999986, 264.124089414, 263.806497366, 268.486687785, 252.598086282, 252.45942956599998, 260.80905406000005, 255.91802847399998, 255.98771315599998, 257.06963618900005, 255.98771315599998, 261.82039940399994, 268.593264865, 246.83508471599993, 264.781131644, 257.10444813099997, 320.44581814399993, 254.94042526799996, 254.9751188699999, 257.1744309010001, 262.972244409, 262.69047567599995, 246.83508471599993, 247.88733709399997, 263.0075333639999, 256.057397838, 253.74993128700004, 253.6456715189999, 264.0889222580001, 259.5480431879999, 258.36108784799995, 252.528757924, 251.377031564, 316.683118452, 246.83508471599993, 244.53139470600007, 259.40778190099985, 257.2442342279999, 261.82039940399994, 261.785350588, 266.1800534159999, 251.48093509200004, 260.63356475300003, 251.377031564, 259.442892236, 253.33307074199996, 266.2153389119998, 251.51545098999992, 255.95278124600003, 254.90555283300006, 256.09232974799994, 261.82039940399994, 248.79751184499986, 271.0389359849999, 250.29439627199991, 262.8665585129999, 261.996185476, 256.057397838, 246.83508471599993, 259.5129328529999, 260.668554399, 247.95636787400002, 247.007009924, 246.80080569199998, 250.996111267, 264.0889222580001, 304.4240845650001, 254.835986796, 264.0889222580001, 254.835986796, 253.74993128700004, 249.98322004800008, 251.34233774900002, 258.3961387079999, 265.34656864999994, 253.68048428399987, 258.18619304400005, 252.66741464, 253.74993128700004, 246.7663499719999, 262.83145052699996, 250.25993954400002, 264.01822539799986, 309.69708967599985, 253.71529704899996, 244.497234022, 254.870859231, 251.41172537899996, 248.0595600399999, 260.63356475300003, 259.442892236, 264.01822539799986, 260.598394748, 253.74993128700004, 246.80080569199998, 262.408706943, 251.48093509200004, 255.91802847399998, 260.668554399, 259.40778190099985, 265.169892283, 258.36108784799995, 246.45677857999993, 250.19067086399986, 258.36108784799995, 244.462897252, 257.1744309010001, 254.870859231, 258.36108784799995, 252.42467627600007, 251.377031564, 249.17712613199996, 247.88733709399997, 259.40778190099985, 246.250397652, 244.497234022, 283.3901026979999, 252.528757924, 262.90184746799997, 252.528757924, 249.142551267, 243.44792850999994, 254.80111436099997, 245.58022736699985, 255.98771315599998, 259.442892236, 260.036756822, 259.478002571, 251.377031564, 252.528757924, 245.71763595599992, 251.377031564, 249.07357884399988, 293.428143122, 253.71529704899996, 260.63356475300003, 260.668554399, 251.41172537899996, 259.40778190099985, 251.58483861999997, 247.95636787400002, 251.377031564, 260.598394748, 254.80111436099997, 246.69761522799996, 256.720260668, 251.30782185100003, 251.377031564, 246.93827517999995, 250.19067086399986, 254.7664207589999, 253.74993128700004, 259.442892236, 252.42467627600007, 262.6551867209999, 249.0046064209999, 258.32621673599994, 248.79751184499986, 255.98771315599998, 246.69761522799996, 257.10444813099997, 258.18619304400005, 261.785350588, 269.53136218000003, 246.31930909199997, 250.19067086399986, 304.12501867500015, 251.377031564, 256.057397838, 245.614623612, 261.6798428119999, 259.478002571, 263.983058242, 253.68048428399987, 253.61103728099982, 255.98771315599998, 253.4025177449999, 250.19067086399986, 258.15114218399987, 267.4416571499999, 255.95278124600003, 259.478002571, 252.32059462799992, 252.38992298600004, 255.84816465399996, 246.7663499719999, 244.462897252, 251.30782185100003, 260.17707612399994, 255.88309656400003, 253.61103728099982, 247.921852484, 251.377031564, 260.598394748, 243.20851478800006, 247.57740659199993, 259.478002571, 258.29116587599987, 259.5129328529999, 261.750121108, 252.63283957200002, 253.61103728099982, 254.870859231, 243.311170892, 246.8695404359999, 251.44624127699996, 266.427779424, 255.743548062, 260.5632247429999, 259.40778190099985, 260.598394748, 257.139439516, 255.95278124600003, 256.12708252, 255.8134118819999, 265.311342324, 256.82505538000004, 255.98771315599998, 262.7961615719999, 252.147184622, 258.221243904, 249.03900397899992, 250.39812167999986, 260.668554399, 253.68048428399987, 262.76087261699996, 258.0112982399998, 254.66198228699994, 265.134665957, 251.377031564, 244.497234022, 251.550144805, 254.73154832400002, 257.06963618900005, 256.9648414770001, 251.27312803599995, 247.783967926, 263.9123613819999, 253.2634452119999, 247.81848331600003, 254.73154832400002, 251.30782185100003, 258.0812202119999, 260.45789508700005, 251.30782185100003, 259.40778190099985, 258.11627107199996, 254.835986796], \"power_mean\": 259.02480321476617, \"energy_millijoules\": 70495.02557342236, \"energy_joules\": 70.49502557342237, \"coremark_score\": 1102.385931, \"coremarks_per_mhz\": 3.67461977, \"ulpmark_cm_score\": 4.255619422217847}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [436.63457237999995, 431.96856066000004, 433.171201305, 426.2588477, 453.542654268, 433.12668375600003, 428.43942504, 429.637746525, 433.12668375600003, 428.52762342, 427.32918871500004, 422.751849234, 430.81422227999997, 426.171125289, 429.704045125, 430.79202543, 471.3114883, 425.038745664, 431.94630433500004], \"power_mean\": 433.1733154306316, \"energy_millijoules\": 2165.866577153158, \"energy_joules\": 2.1658665771531576}}, \"576000\": {\"active\": {\"elapsed_sec\": 141.114612446, \"elapsed_ns\": 141114612446, \"power_samples\": [285.9112240839999, 274.3550792029999, 275.0401578119999, 283.64425040399993, 273.1996957249999, 278.8892660730001, 288.072316437, 281.159963688, 273.092406165, 276.55047012899996, 273.092406165, 291.5266052220001, 290.4117044690001, 287.06666692599987, 278.925388068, 283.49899650599997, 282.311393283, 277.7377773079999, 288.10872693899995, 276.58628854299997, 292.8250013509999, 288.035718252, 282.42010897100005, 289.15043071200006, 285.801974036, 274.28331101299995, 276.4426456249999, 290.301741357, 278.78108532900006, 298.550168507, 287.9261113799999, 279.90017464499994, 282.5288246590001, 286.88434813199984, 271.94097657000003, 276.55047012899996, 282.311393283, 281.0151849799999, 281.3045565439999, 282.3838083560001, 270.8250693449999, 277.88184245200006, 284.65048527100004, 279.90017464499994, 284.57783290799995, 278.8892660730001, 277.66583720400007, 288.2915301809999, 284.65048527100004, 270.86077482, 277.70189972400004, 283.3901026979999, 280.08071187599995, 284.57783290799995, 291.5999698440001, 281.0514261199999, 285.98418216400006, 277.629774684, 281.268501256, 281.19601897599995, 278.8892660730001, 287.999120067, 282.347507741, 284.65048527100004, 274.2117268439999, 278.56490908199993, 286.9208868419999, 271.97655810999987, 284.614252473, 275.32715339399994, 278.78108532900006, 290.3384584919999, 273.8177378829999, 278.817207324, 292.751518084, 282.23879205299994, 271.8338651299999, 283.49899650599997, 274.14014267499994, 281.985246219, 276.51446708399993, 284.57783290799995, 273.05658174, 293.833239591, 285.765682068, 276.478464039, 291.48982861200005, 276.4426456249999, 286.9572381739999, 289.15043071200006, 278.745148575, 281.0514261199999, 296.02524448499986, 284.79597676399993, 275.32715339399994, 287.8897008779999, 313.3809608279999, 289.187088372, 283.3539290699999, 278.78108532900006, 284.35968905199985, 297.17649595999984, 274.14014267499994, 278.745148575, 281.123722548, 281.0874814080001, 283.4264627879999, 286.4102817919999, 281.0151849799999, 281.0874814080001, 295.95140489399995, 275.4347997779999, 269.49571618, 279.90017464499994, 276.40664258, 269.60247138000005, 280.9791296920001, 278.78108532900006, 281.0874814080001, 283.3539290699999, 278.817207324, 279.827996862, 279.936170763, 279.97235242799997, 279.90017464499994, 286.7385680479999, 277.5938971, 285.58366101199994, 290.155249403, 283.31756897999986, 284.72332440099996, 284.57783290799995, 279.90017464499994, 276.478464039, 285.58366101199994, 270.4330415399999, 296.06206937099995, 294.83703778, 277.7377773079999, 278.925388068, 282.16637697999994, 276.4426456249999, 270.2548803749999, 278.63696783100005, 272.98511660499986, 292.751518084, 360.25105606799997, 283.31756897999986, 276.6941130469999, 284.72332440099996, 284.3961086169999, 289.07730337999993, 284.541413343, 281.0514261199999, 284.65048527100004, 278.817207324, 272.98511660499986, 272.04808800999996, 274.2476109389999, 277.629774684, 291.41646398999995, 285.61995297999994, 269.53136218000003, 366.25246018, 283.3901026979999, 271.9052116199999, 282.311393283, 278.6730898260001, 279.86399298, 287.9261113799999, 281.912831146, 274.1042585799999, 281.0151849799999, 279.86399298, 281.0514261199999, 278.745148575, 278.70902657999994, 281.76781484299994, 281.0514261199999, 277.629774684, 278.6730898260001, 287.9261113799999, 276.33482112099995, 282.2026775949999, 287.9627095649999, 284.614252473, 276.40664258, 284.505180545, 282.23879205299994, 275.14780419599987, 290.265212515, 281.0151849799999, 285.765682068, 284.541413343, 282.2026775949999, 275.2913941499999, 284.541413343, 271.8338651299999, 283.4264627879999, 290.1919665379999, 283.24503526199993, 276.40664258, 289.15043071200006, 274.14014267499994, 279.936170763, 284.432528182, 278.78108532900006, 289.1139610399999, 298.25367055399994, 269.42460697999996, 269.49571618, 281.0151849799999, 272.98511660499986, 338.4093001500001, 284.4687609799999, 284.541413343, 284.4687609799999, 294.947713956, 270.61138580999994, 279.90017464499994, 281.0151849799999, 287.9627095649999, 287.9261113799999, 284.57783290799995, 284.3961086169999, 284.35968905199985, 291.37968738, 277.5938971, 283.31756897999986, 277.55783458, 278.78108532900006, 276.3708241660001, 283.31756897999986, 275.2913941499999, 289.0041760479999, 289.040833708, 274.0685585059999, 272.01232306, 285.61995297999994, 272.87782704499995, 276.478464039, 283.31756897999986, 282.16637697999994, 284.3961086169999, 291.3430993680001, 281.0514261199999, 278.745148575, 277.52195699600003, 274.2476109389999, 284.541413343, 285.510702932, 275.2913941499999, 289.1139610399999, 286.88434813199984, 277.44983195599997, 276.73011609199995, 283.28139535199995, 274.0685585059999, 283.3539290699999, 283.28139535199995, 285.61995297999994, 289.07730337999993, 292.53087937999993, 279.647274084, 277.66583720400007, 274.03267441099996, 277.413954372, 284.505180545, 283.28139535199995, 282.130262522, 293.6491392340001, 283.31756897999986, 279.90017464499994, 284.57783290799995, 275.11204495199996, 278.745148575, 280.9791296920001, 286.70202933799993, 279.86399298, 291.306322758, 279.90017464499994, 278.6730898260001, 282.311393283, 272.91365146999993, 277.44983195599997, 277.55783458, 275.25545057999994, 278.600845836, 285.5471819719999, 275.14780419599987, 283.28139535199995, 277.3778918520001, 272.91365146999993, 272.84200261999996, 281.0514261199999, 263.7359817799999, 276.33482112099995, 287.999120067, 283.0272476459999, 284.3961086169999, 287.8897008779999, 276.3708241660001, 279.827996862, 282.02154683399993, 283.2086751719999, 281.0514261199999, 293.57534772399987, 283.136141454, 281.0151849799999, 282.130262522, 279.90017464499994, 272.94929218, 280.9791296920001, 283.28139535199995, 280.94288855199994, 293.538641178, 282.130262522, 277.55783458, 278.70902657999994, 276.33482112099995, 270.6469081799999, 287.8165045079999, 276.2988180759999, 291.306322758, 291.306322758, 279.827996862, 283.09978136399985, 279.79181519699995, 279.827996862, 280.9066474119999, 279.7196374139999, 274.03267441099996, 292.4573961129999, 282.9908875559999, 277.48589447600006, 279.7556335319999, 286.70202933799993, 275.25545057999994, 286.6654906279999, 275.18374776599995, 278.6730898260001, 278.6730898260001, 290.155249403, 277.52195699600003, 276.51446708399993, 287.8531026929999, 282.09396190699994, 276.33482112099995, 287.8531026929999, 277.55783458, 286.7385680479999, 286.77491937999986, 280.94288855199994, 285.69272398799995, 278.600845836, 283.2086751719999, 277.5938971, 283.1725015439999, 278.56490908199993, 278.6730898260001, 293.612243479, 278.528787087, 273.05658174, 278.56490908199993, 280.9791296920001, 274.2476109389999, 289.0041760479999, 275.25545057999994, 280.54497941999995, 290.08200342599997, 276.3708241660001, 285.69272398799995, 278.600845836, 273.99679031599993, 278.745148575, 279.827996862, 283.1725015439999, 290.1919665379999, 288.89439105599996, 276.3708241660001, 276.51446708399993, 278.600845836, 276.33482112099995, 281.0514261199999, 284.35968905199985, 287.8165045079999, 299.29718835, 294.763316834, 272.8063619099999, 280.79810984399995, 276.33482112099995, 286.6654906279999, 284.432528182, 284.3961086169999, 280.9066474119999, 290.1919665379999, 289.898606044, 274.0685585059999, 284.2506171239999, 271.65540719999996, 278.6730898260001, 283.136141454, 283.09978136399985, 280.50873827999993, 292.4205600279999, 278.420606343, 276.33482112099995, 282.09396190699994, 276.3708241660001, 280.9791296920001, 290.155249403, 277.52195699600003, 282.02154683399993, 287.78009400599984, 288.711478732, 277.44983195599997, 286.70202933799993, 285.61995297999994, 277.30595174800004, 286.70202933799993, 280.870592124, 286.6654906279999, 287.8165045079999, 289.935323179, 280.8343509840001, 313.1539051319999, 272.84200261999996, 277.413954372, 289.0041760479999, 269.38896098000004, 285.474410964, 286.446633124, 281.948945604, 275.0401578119999, 279.7196374139999, 271.72675368999995, 277.413954372, 276.33482112099995, 282.057661292, 286.556061876, 290.04528629099997, 286.6291392959999, 275.18374776599995, 277.3778918520001, 278.63696783100005, 278.528787087, 291.26954614799996, 281.948945604, 277.44983195599997, 286.6654906279999, 279.68345574899996, 273.9610902419999, 285.474410964, 283.136141454, 272.87782704499995, 278.600845836, 275.004398568, 287.78009400599984, 288.8577333959999, 272.73471306000005, 278.63696783100005, 286.556061876, 284.287036689, 272.91365146999993, 287.78009400599984, 282.130262522, 286.30085303999994, 288.89439105599996, 273.99679031599993, 277.44983195599997, 283.136141454, 281.985246219, 277.5938971, 289.67886811299996, 278.600845836, 361.40189182800003, 288.89439105599996, 281.948945604, 278.6730898260001, 280.8343509840001, 282.09396190699994, 272.98511660499986, 273.8536219779999, 271.6196422499999, 294.68959588800004, 292.347076761, 275.0401578119999, 272.73471306000005, 278.528787087, 276.19099357199997, 281.0151849799999, 272.8063619099999, 348.6160995159999, 295.7665211879999, 292.27359349399995, 275.14780419599987, 286.446633124, 282.057661292, 279.86399298, 286.77491937999986, 273.92520614699987, 274.86080861399995, 285.401452884, 280.689572276, 280.9066474119999, 287.78009400599984, 283.1725015439999, 278.528787087, 279.647274084, 276.33482112099995, 279.7556335319999, 298.10532636299996, 285.365160916, 277.44983195599997, 281.8765305309999, 273.88932205199995, 283.09978136399985, 284.35968905199985, 282.057661292, 271.65540719999996, 283.1725015439999, 282.954713928, 277.48589447600006, 285.474410964, 281.985246219, 284.2506171239999, 285.437931924, 273.88932205199995, 279.647274084, 279.79181519699995, 295.65566689199994, 276.2988180759999, 279.7196374139999, 279.7556335319999, 280.79810984399995, 287.78009400599984, 281.985246219, 280.79810984399995, 286.6654906279999, 279.538914636, 272.69907235, 291.23295813600004, 287.670487134, 277.3778918520001, 279.7556335319999, 277.3778918520001, 280.870592124, 295.7665211879999, 287.597290764, 271.65540719999996, 275.076101382, 276.226996617, 280.79810984399995, 285.474410964, 285.474410964, 284.2506171239999, 292.347076761, 280.7258134159999, 279.7196374139999, 276.11917211299993, 277.44983195599997], \"power_mean\": 282.32723051645274, \"energy_millijoules\": 39840.49771728173, \"energy_joules\": 39.84049771728173, \"coremark_score\": 2126.076326, \"coremarks_per_mhz\": 3.691104732638889, \"ulpmark_cm_score\": 7.530026410033229}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [424.85607738699997, 425.710892306, 431.41317975, 430.34899906999993, 431.56863162, 430.52463877499997, 422.273575526, 430.34899906999993, 431.502090915, 432.61433139900004, 428.06478006, 429.17376985000004, 428.02073748000004, 424.557859936, 424.51417368, 423.426667371, 428.08685796, 500.952094122, 426.889723535], \"power_mean\": 431.83410946378945, \"energy_millijoules\": 2159.1705473189472, \"energy_joules\": 2.159170547318947}}, \"748800\": {\"active\": {\"elapsed_sec\": 108.425408656, \"elapsed_ns\": 108425408656, \"power_samples\": [299.3341909399999, 292.27359349399995, 301.52447321999995, 301.4127277400001, 294.763316834, 287.8531026929999, 301.226549055, 294.72636160400003, 294.68959588800004, 295.6926815969999, 298.216536899, 291.1228169040001, 298.03124948199996, 290.1919665379999, 284.287036689, 292.3839128459999, 304.93968205999994, 290.22849537999997, 298.03124948199996, 291.1961815260001, 290.08200342599997, 301.52447321999995, 286.5197105439999, 291.26954614799996, 300.3736374599999, 302.75005247999997, 301.6735309749999, 299.03721654500004, 291.1228169040001, 295.8405505979999, 302.48883353, 291.1228169040001, 301.5990977699999, 295.80353589299983, 304.9769804999999, 299.3341909399999, 294.57891971199996, 295.8405505979999, 298.03124948199996, 295.6926815969999, 295.7665211879999, 301.52447321999995, 299.1857991100001, 295.80353589299983, 288.96751838799986, 285.32868187599996, 286.5197105439999, 299.1857991100001, 299.1486057849999, 299.22280170000005, 296.8063245319999, 286.59260058599995, 299.1486057849999, 294.57891971199996, 287.670487134, 288.8577333959999, 293.3543516119999, 295.7296963019999, 289.972040314, 379.53770757, 289.972040314, 296.8433987119999, 301.5990977699999, 292.23675740899984, 293.39124736699995, 302.60075713, 286.48317183399985, 289.898606044, 297.956982172, 289.935323179, 297.9941158269999, 297.9941158269999, 292.23675740899984, 287.63388894899987, 295.6926815969999, 296.8804728919999, 345.00623772, 295.6926815969999, 286.3373917499999, 299.1857991100001, 309.5840967719999, 294.54196448199997, 288.82126372399995, 301.52447321999995, 290.04528629099997, 285.365160916, 297.9941158269999, 306.01913094800005, 300.3736374599999, 297.956982172, 298.03124948199996, 287.63388894899987, 295.61884200599997, 291.159404916, 289.86207720199997, 299.11141246000005, 295.7296963019999, 294.57891971199996, 295.61884200599997, 284.2143843259999, 287.63388894899987, 301.301173605, 292.310240676, 289.935323179, 302.52620528000006, 293.3543516119999, 289.935323179, 289.972040314, 293.059753199, 296.73236629599995, 298.068192708, 295.5818273009999, 297.9200389459999, 300.29932289999994, 295.65566689199994, 291.0492636840001, 296.76944047600006, 288.6383514, 292.310240676, 292.19992132399994, 294.54196448199997, 291.01267567200006, 290.82916981800014, 295.65566689199994, 301.56178549500004, 296.8063245319999, 301.2638613299999, 296.76944047600006, 301.45004001499996, 294.4682435360001, 282.954713928, 299.11141246000005, 293.39124736699995, 302.75005247999997, 293.39124736699995, 295.6926815969999, 292.27359349399995, 301.45004001499996, 284.141545196, 291.08604029400004, 294.4682435360001, 296.76944047600006, 293.50174542300005, 303.527270805, 289.898606044, 294.68959588800004, 296.8804728919999, 293.428143122, 292.12643805700003, 296.8063245319999, 295.6926815969999, 294.68959588800004, 304.75261308, 279.538914636, 291.08604029400004, 299.11141246000005, 291.01267567200006, 297.9941158269999, 307.09476176900006, 301.48735229000005, 300.33657569999997, 287.670487134, 287.5608802619999, 289.898606044, 293.317645066, 301.3382945349999, 292.1632741419999, 293.317645066, 299.03721654500004, 293.538641178, 287.5608802619999, 286.446633124, 293.317645066, 297.9200389459999, 288.784606064, 293.3543516119999, 295.6926815969999, 293.428143122, 292.27359349399995, 286.48317183399985, 295.24926441299993, 293.24404276499996, 292.089790875, 289.82536006699996, 295.65566689199994, 295.6926815969999, 296.76944047600006, 304.82740222, 289.82536006699996, 291.01267567200006, 304.86470066, 287.5608802619999, 291.0492636840001, 296.76944047600006, 295.5818273009999, 304.86470066, 301.3382945349999, 295.65566689199994, 284.17796476099994, 299.1857991100001, 291.01267567200006, 289.935323179, 296.73236629599995, 288.67482107200004, 299.1486057849999, 301.37560680999997, 294.54196448199997, 290.9393110500001, 294.4682435360001, 285.25591086800006, 292.87565284199997, 309.4335685539999, 297.882905291, 293.317645066, 301.301173605, 288.74794840399994, 292.12643805700003, 289.788831225, 286.4102817919999, 292.016118705, 295.61884200599997, 294.431288306, 301.45004001499996, 300.22500834, 289.898606044, 292.19992132399994, 297.956982172, 291.01267567200006, 294.39452259, 290.975899062, 293.2807493110001, 298.59185032, 295.61884200599997, 292.12643805700003, 293.2807493110001, 300.2620700999999, 295.47097300499996, 291.01267567200006, 313.92602891999996, 290.86575783000006, 292.12643805700003, 301.3382945349999, 295.54500241499994, 296.8063245319999, 296.69548224, 297.84596206500004, 289.82536006699996, 299.07440987, 295.61884200599997, 294.4682435360001, 294.4682435360001, 297.9941158269999, 293.2807493110001, 297.84596206500004, 297.69761787400006, 286.30085303999994, 295.6926815969999, 299.03721654500004, 303.8261447400001, 294.54196448199997, 287.63388894899987, 289.82536006699996, 294.39452259, 281.804115458, 293.2807493110001, 294.4682435360001, 301.4127277400001, 288.8577333959999, 297.882905291, 293.317645066, 287.48787157499993, 295.5079877099999, 301.226549055, 290.975899062, 300.22500834, 293.20714701, 297.0283893639999, 290.9393110500001, 287.5608802619999, 288.82126372399995, 301.301173605, 296.8063245319999, 295.5818273009999, 296.8804728919999, 299.11141246000005, 296.8804728919999, 293.20714701, 289.86207720199997, 377.10958717599993, 295.61884200599997, 292.27359349399995, 299.03721654500004, 294.35756736, 297.882905291, 299.1857991100001, 280.58122055999996, 292.1632741419999, 303.41516908499995, 288.6383514, 295.5079877099999, 293.1702512550001, 294.39452259, 296.65840806, 295.6926815969999, 285.25591086800006, 349.7271497279999, 301.45004001499996, 294.39452259, 295.5818273009999, 304.67763167999993, 282.736926312, 294.35756736, 305.49458116400007, 294.4682435360001, 288.5650360800001, 303.56470203, 286.30085303999994, 282.88218020999994, 295.434148119, 293.24404276499996, 297.84596206500004, 298.96302063, 288.6016937399999, 290.86575783000006, 300.18775553999996, 290.975899062, 287.37826470299996, 306.94470813100014, 296.73236629599995, 297.84596206500004, 300.1506937799999, 286.30085303999994, 288.5650360800001, 297.84596206500004, 294.431288306, 289.86207720199997, 294.4682435360001, 298.888824715, 300.1134409799999, 291.979471523, 297.84596206500004, 289.67886811299996, 293.24404276499996, 294.35756736, 289.788831225, 296.76944047600006, 296.8063245319999, 291.01267567200006, 300.18775553999996, 295.54500241499994, 295.6926815969999, 297.882905291, 289.75211409, 296.69548224, 294.39452259, 337.82205895, 296.4734174079999, 298.92582730500004, 292.089790875, 294.32061213000003, 298.888824715, 286.3373917499999, 290.90253444, 300.1134409799999, 301.3382945349999, 304.64033323999996, 296.62133388, 297.69761787400006, 295.54500241499994, 290.7923932080001, 296.8433987119999, 290.7923932080001, 297.80882841, 297.77169475499994, 299.03721654500004, 294.28384641400004, 296.69548224, 291.721996734, 301.2638613299999, 288.528566408, 294.39452259, 301.226549055, 296.62133388, 288.74794840399994, 294.5050092520001, 288.711478732, 300.22500834, 294.28384641400004, 285.073889812, 288.528566408, 302.41428168, 302.41428168, 298.03124948199996, 296.65840806, 287.41467520500004, 283.0272476459999, 296.62133388, 292.0529547899999, 289.75211409, 297.882905291, 295.61884200599997, 299.07440987, 290.9393110500001, 289.75211409, 301.4127277400001, 295.47097300499996, 281.69539976999994, 295.1754248219999, 298.96302063, 292.089790875, 292.12643805700003, 294.39452259, 286.2643143299999, 298.96302063, 301.3382945349999, 293.1702512550001, 288.67482107200004, 298.96302063, 296.54737564399994, 296.76944047600006, 286.19142428799995, 289.788831225, 295.5079877099999, 292.016118705, 292.089790875, 300.07618818, 293.2807493110001, 298.96302063, 294.24689118399994, 289.67886811299996, 285.1466608199999], \"power_mean\": 295.4290048097378, \"energy_millijoules\": 32032.010575331213, \"energy_joules\": 32.03201057533121, \"coremark_score\": 2767.093721, \"coremarks_per_mhz\": 3.6953708880876075, \"ulpmark_cm_score\": 9.365631273581021}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [426.69189645500006, 424.361103328, 425.72489239500004, 428.99701142500004, 422.034438672, 439.377586544, 424.33931635199997, 428.97487405, 424.361103328, 426.69189645500006, 425.53556009299996, 428.9528502, 429.04117265, 430.12737205999997, 436.123164022, 432.458462757, 423.252172929, 425.513601338, 430.12737205999997], \"power_mean\": 428.0360972164737, \"energy_millijoules\": 2140.1804860823686, \"energy_joules\": 2.1401804860823685}}, \"1017600\": {\"active\": {\"elapsed_sec\": 79.70929174, \"elapsed_ns\": 79709291740, \"power_samples\": [316.1128074120001, 316.1128074120001, 334.6449108299999, 316.03683104400005, 310.3956132460001, 310.50878427000004, 313.88806202999996, 305.83176423000003, 322.941343451, 319.300042852, 318.413291872, 323.09472070500004, 312.77560857, 311.470219461, 311.734765494, 320.75587155299996, 316.1128074120001, 320.6410962809999, 323.1331635899999, 349.36945790399994, 320.602772346, 311.6592640950001, 312.66208072199987, 309.2453115409999, 313.850289842, 309.2453115409999, 320.67922368299986, 312.77560857, 321.906173258, 328.73427405900003, 313.850289842, 315.00059154700006, 320.83232288999983, 314.962565182, 310.3578249759999, 318.33707821399986, 313.774356062, 315.00059154700006, 327.62277228399995, 325.3608498539999, 316.18878378000005, 319.605569848, 320.83232288999983, 316.150893252, 329.72965504199993, 312.69998813699993, 317.2630496419999, 333.41673326999995, 312.66208072199987, 310.24465395199996, 314.848681094, 313.812322952, 304.64033323999996, 321.71445304599996, 317.3772899699998, 325.3608498539999, 326.47253005400006, 317.22490432699993, 318.48950553000003, 317.2630496419999, 317.14880931399995, 313.7365838739999, 319.605569848, 317.22490432699993, 320.67922368299986, 323.05647496299997, 310.28244222199993, 320.67922368299986, 316.150893252, 308.981596938, 310.3956132460001, 321.906173258, 320.6410962809999, 321.8294064379999, 325.28372579399985, 316.150893252, 313.7365838739999, 322.97958919299987, 314.962565182, 322.941343451, 323.05647496299997, 314.9245388169999, 316.22686961999995, 324.9374585399999, 315.07644926999996, 316.22686961999995, 368.8095994799999, 311.31921666299996, 311.54591495100004, 321.79121986599995, 319.56730538799997, 331.112358379, 326.31824209300004, 314.962565182, 313.92602891999996, 321.79121986599995, 308.0196711959998, 314.9245388169999, 327.58409130399997, 320.5644484109999, 326.395485103, 328.5797095770001, 309.2075827459999, 309.3958397589999, 322.97958919299987, 313.698616984, 317.22490432699993, 316.074721572, 332.18859341499996, 324.168274308, 324.168274308, 317.22490432699993, 311.734765494, 318.413291872, 313.850289842, 319.4527082360001, 320.6410962809999, 325.20679948800006, 318.451496662, 321.8294064379999, 317.22490432699993, 313.88806202999996, 326.395485103, 307.94452573199993, 322.941343451, 317.22490432699993, 327.506927708, 323.05647496299997, 306.869488441, 316.18878378000005, 317.4154352849999, 310.169271198, 313.774356062, 329.69085511199995, 314.81065472899996, 317.2630496419999, 327.54560868799996, 316.074721572, 310.32003670599994, 313.850289842, 319.4144437759999, 310.28244222199993, 327.506927708, 328.5024273359999, 312.51064545899993, 325.2453615179999, 312.58646028899983, 313.7365838739999, 317.186954629, 318.22265976599994, 325.2453615179999, 320.602772346, 328.656991818, 313.660650094, 328.73427405900003, 310.24465395199996, 317.186954629, 327.54560868799996, 313.812322952, 314.848681094, 328.61825136300007, 317.1106639989999, 318.413291872, 322.8644576809999, 318.26066863399996, 320.5644484109999, 321.522929672, 313.5849110159999, 314.848681094, 322.902900566, 317.07271430099996, 324.091467036, 326.433908549, 319.4909726959999, 314.848681094, 329.884456814, 317.14880931399995, 304.45307199999996, 325.16823745799985, 315.922768836, 326.24119714199986, 407.8857170039999, 317.1106639989999, 307.90685641199997, 326.31824209300004, 312.51064545899993, 312.548552874, 322.82621193899996, 318.1844549759999, 327.3139195359999, 327.468246728, 320.5644484109999, 319.4527082360001, 324.091467036, 313.7365838739999, 321.79121986599995, 320.67922368299986, 314.886707459, 310.24465395199996, 322.8644576809999, 306.79446162200003, 317.1106639989999, 321.79121986599995, 317.07271430099996, 319.4527082360001, 325.32228782399994, 317.1106639989999, 321.71445304599996, 324.05296467599993, 315.922768836, 311.3947180620001, 320.5644484109999, 313.47120504800006, 311.35687031699996, 324.0144623160001, 311.31921666299996, 322.82621193899996, 327.4297641120001, 315.96065936400004, 314.886707459, 325.16823745799985, 311.35687031699996, 309.019325733, 320.5644484109999, 313.6228779059999, 321.71445304599996, 326.31824209300004, 312.47293244099995, 316.18878378000005, 325.16823745799985, 328.5797095770001, 312.51064545899993, 325.1298731819999, 315.884682996, 330.8796005069999, 322.8644576809999, 317.1106639989999, 314.886707459, 318.26066863399996, 307.86938026800004, 317.1106639989999, 321.71445304599996, 314.772823371, 328.69573227300003, 324.05296467599993, 313.5849110159999, 316.1128074120001, 326.2798186469999, 311.20586751900004, 317.1106639989999, 321.71445304599996, 326.2798186469999, 318.413291872, 315.922768836, 311.24371526400006, 312.69998813699993, 325.93281927899994, 313.50917193799995, 325.1298731819999, 322.82621193899996, 319.37637554400004, 318.451496662, 314.65893928300005, 316.996619288, 318.33707821399986, 322.8644576809999, 310.206865682, 321.71445304599996, 318.1844549759999, 320.526321009, 312.6241733069999, 314.848681094, 307.86938026800004, 321.752836456, 321.59969649199996, 325.09131115199995, 313.6228779059999, 325.0529468759999, 315.922768836, 314.46919747199996, 310.1314829279999, 318.22265976599994, 324.0144623160001, 318.1844549759999, 314.81065472899996, 326.24119714199986, 323.82234541200006, 315.884682996, 330.802080976, 312.3973120079999, 318.22265976599994, 318.1844549759999, 314.73479700599995, 309.019325733, 326.1641521909999, 313.50917193799995, 326.24119714199986, 318.1844549759999, 314.6969656479999, 311.35687031699996, 325.09131115199995, 312.35940459299985, 315.8087066279999, 319.338111084, 319.300042852, 318.1844549759999, 327.27523855600003, 312.548552874, 304.30349371999995, 323.9376550439999, 320.526321009, 323.97615740399993, 320.4115457369999, 315.884682996, 320.4115457369999, 321.676266474, 323.9376550439999], \"power_mean\": 318.9741841928233, \"energy_millijoules\": 25425.206305354248, \"energy_joules\": 25.425206305354248, \"coremark_score\": 3763.926528, \"coremarks_per_mhz\": 3.6988271698113206, \"ulpmark_cm_score\": 11.799314286658259}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [431.16881671500005, 427.64609249999995, 436.84350072999996, 424.50541296099993, 434.651633104, 421.86041941999997, 426.51608780000004, 425.44783768199994, 431.16881671500005, 426.58203016000004, 416.36721335, 435.80389382399994, 427.60204991999996, 431.14656039000005, 428.79811562500004, 429.24120551, 425.49175519199997, 427.6681704, 434.53957342999996], \"power_mean\": 428.5815360751579, \"energy_millijoules\": 2142.9076803757894, \"energy_joules\": 2.142907680375789}}, \"1209600\": {\"active\": {\"elapsed_sec\": 67.026567058, \"elapsed_ns\": 67026567058, \"power_samples\": [336.672054315, 329.69085511199995, 325.16823745799985, 338.936759388, 330.84074110199987, 336.633098145, 335.36606068, 342.3471412379999, 327.391083132, 335.36606068, 326.2798186469999, 326.2798186469999, 337.70481182, 330.8796005069999, 329.72965504199993, 342.3471412379999, 334.33320721499996, 326.20277369599995, 343.378687804, 330.802080976, 329.65225415599986, 342.3471412379999, 336.398557905, 332.033316285, 346.91096622799995, 348.060793048, 404.180665296, 340.882700766, 329.65225415599986, 335.36606068, 338.85840856399994, 335.32696317999995, 333.14428319999985, 347.0296370439999, 334.25533135999984, 330.76322157099986, 334.099379455, 333.0665259899999, 323.9376550439999, 339.81175913, 329.72965504199993, 326.08710723999997, 343.4577158439999, 411.3817719359999, 336.51582802499996, 334.13841748, 337.70481182, 331.95567772, 344.532165208, 327.3139195359999, 334.2162933349999, 337.70481182, 345.64244316, 338.85840856399994, 344.532165208, 339.92956419399997, 330.76322157099986, 343.41820182399994, 327.23675594, 329.5360533399999, 343.33937642000006, 336.43771488, 330.802080976, 339.851094725, 335.32696317999995, 336.47667105, 336.59394116999994, 333.0665259899999, 325.1298731819999, 339.89043032, 336.43771488, 328.4249464260001, 338.89748326800003, 331.76128192999994, 330.6468426349999, 334.25533135999984, 329.5746542959999, 334.41108306999996, 339.89043032, 335.24896868, 333.02754743999986, 336.59394116999994, 332.94979023, 335.4440551799999, 339.81175913, 334.2162933349999, 329.8070559279999, 336.47667105, 329.6134542259999, 331.87783957000005, 342.30788902399996, 329.6134542259999, 336.55498500000004, 362.53060469200005, 336.43771488, 336.55498500000004, 339.851094725, 328.2703819439999, 335.24896868, 343.2210369959999, 335.32696317999995, 331.95567772, 337.54814713, 330.6468426349999, 333.1055045399999, 329.5746542959999, 332.94979023, 337.58736358000004, 339.89043032, 331.87783957000005, 345.64244316, 336.51582802499996, 326.20277369599995, 334.372045045, 337.66559537000006, 330.6079832299999, 342.1502731749999, 330.68570203999997, 334.13841748, 328.19290103400004, 324.9374585399999, 336.47667105, 336.51582802499996, 334.13841748, 338.62315467599996, 338.7798563239999, 343.2998623999999, 336.47667105, 342.18972772, 325.09131115199995, 337.62637892000004, 337.70481182, 345.72150624299996, 345.6028099950001, 338.74078161999995, 337.50893068, 332.94979023, 335.24896868, 328.4249464260001, 335.28806618000004, 349.09138925999997, 337.50893068, 342.18972772, 336.47667105, 328.4249464260001, 335.36606068, 335.24896868, 335.24896868, 328.34766418500004, 343.18152297600005, 336.43771488, 330.6468426349999, 338.7798563239999, 334.1772553099999, 335.28806618000004, 338.62315467599996, 333.98246557499994, 337.50893068, 345.40505066400004, 335.28806618000004, 327.19807495999993, 336.47667105, 329.5360533399999, 336.35940092999994, 333.02754743999986, 335.17097418, 328.34766418500004, 338.6622293799999, 342.11081862999987, 331.8391200800001, 341.04007901999995, 328.30892373, 331.76128192999994, 335.28806618000004, 340.9612888799999, 335.28806618000004, 336.398557905, 335.24896868, 335.32696317999995, 336.43771488, 334.0215035999999, 337.66559537000006, 339.89043032, 339.851094725, 327.15939397999995, 339.81175913, 337.58736358000004, 335.24896868, 340.922095836, 334.0215035999999, 332.7940759199999, 334.099379455, 331.800201005, 321.3697897079999, 346.83158094799995, 339.733289661, 332.87203301999995, 338.6622293799999, 335.09277918000004, 332.9108116799999, 337.46991534, 332.94979023, 323.74553813999995, 339.89043032, 335.17097418, 346.6732174919999, 342.18972772, 327.15939397999995, 343.2998623999999, 334.0215035999999, 330.5693231039999, 342.18972772, 342.11081862999987, 334.0215035999999, 328.38640463999997, 339.7726252559999, 331.800201005, 337.50893068, 338.583878556, 336.398557905, 335.52204967999995, 340.76471758199995, 333.98246557499994, 336.28128778499996, 338.74078161999995, 327.12091136399994, 334.13841748, 328.2703819439999, 330.5693231039999, 336.55498500000004, 342.1502731749999, 338.583878556, 330.6468426349999, 338.7015054999999, 331.37288952, 327.352600516, 335.09277918000004, 334.0215035999999, 331.8391200800001, 343.2210369959999, 333.78767583999996, 331.7225624399999, 340.882700766, 329.45845347999983, 333.1055045399999, 334.13841748, 329.381052594, 338.7798563239999, 340.922095836, 344.13724007600007, 344.41364708, 334.099379455, 331.76128192999994, 326.1641521909999, 327.12091136399994, 330.5693231039999, 338.7015054999999, 351.23493783300006, 341.91395056699986, 342.07156641599994, 336.398557905, 327.23675594, 326.1641521909999, 331.683643365, 329.381052594, 340.9612888799999, 341.8746983529999], \"power_mean\": 336.04083012055804, \"energy_millijoules\": 22523.66323430157, \"energy_joules\": 22.52366323430157, \"coremark_score\": 4476.208949, \"coremarks_per_mhz\": 3.7005695676256614, \"ulpmark_cm_score\": 13.31932540809464}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [425.790834755, 421.730072522, 432.12429503699997, 428.64349457500003, 422.90340804299996, 427.60204991999996, 422.92524784799997, 452.608848144, 425.31631036999994, 429.81718530999996, 428.64349457500003, 426.406221505, 428.44459877500003, 420.57846480699993, 426.406221505, 428.6876558, 424.055074928, 430.99110852, 425.2944642239999], \"power_mean\": 427.84047637699996, \"energy_millijoules\": 2139.202381885, \"energy_joules\": 2.1392023818849997}}, \"1363200\": {\"active\": {\"elapsed_sec\": 59.459626175, \"elapsed_ns\": 59459626175, \"power_samples\": [352.50411448999995, 350.121629232, 358.175460804, 351.43418196199997, 347.74318384200006, 395.747220876, 354.64306198799983, 350.08175816700003, 342.0321118709999, 350.24103796, 350.041887102, 356.901743436, 352.5838898319999, 350.041887102, 345.52374691200004, 358.054804068, 361.58340633899996, 345.44448058200004, 344.29512895199997, 352.4243391479999, 348.9721586519999, 347.94174056, 341.95340511199987, 347.74318384200006, 346.4751613959999, 350.00222050400004, 344.29512895199997, 355.7524509759999, 347.782935957, 352.304573596, 359.32493138399997, 355.591982429, 351.15528113600004, 358.054804068, 360.312982258, 337.46991534, 354.7631837799999, 350.16129583000003, 355.7524509759999, 361.623872544, 348.81311645399995, 345.40505066400004, 362.61144822800003, 352.34435872800003, 355.71228234099993, 352.304573596, 349.962349439, 345.44448058200004, 364.00754503, 348.85292804399995, 348.8925354719999, 361.462215243, 347.82268807199995, 338.466251612, 348.8925354719999, 343.14200895599987, 360.35338898799995, 358.054804068, 347.62433521099996, 351.27486856799993, 356.901743436, 344.29512895199997, 345.40505066400004, 353.4937103580001, 347.74318384200006, 351.15528113600004, 364.9136821749999, 347.703635584, 348.932347062, 344.37427633199997, 364.9136821749999, 352.304573596, 362.651973908, 343.18152297600005, 354.5630493559998, 361.421956557, 350.00222050400004, 351.27486856799993, 358.09488524400007, 356.8214935139999, 353.3339223840001, 355.67231969899996, 353.4937103580001, 354.60315851599995, 354.40302409199995, 344.21618451399996, 354.5231458839999, 348.85292804399995, 346.5146504839999, 350.041887102, 359.16374927299984, 349.962349439, 354.60315851599995, 362.4900790120001, 347.74318384200006, 351.27486856799993, 350.00222050400004, 348.733697436, 344.33470264199997, 352.22479825399995, 400.6435057500001, 353.4538660560001, 357.89385955200004, 348.8925354719999, 343.0631835519999, 358.0145162879999, 347.62433521099996, 354.64306198799983, 353.373972069, 347.703635584, 351.15528113600004, 361.3410241469999, 347.54483098099996, 355.71228234099993, 357.974435112, 344.21618451399996, 353.413816371, 432.40354097999995, 355.71228234099993, 364.954327, 359.04291441699996, 346.3957761159999, 348.81311645399995, 352.184808044, 349.8032741130001, 353.413816371, 354.4830367239999, 354.4830367239999, 351.23493783300006, 354.44292756399994, 343.10269757199995, 356.78126540399995, 354.4830367239999, 349.9226828409999, 351.19500709799996, 352.22479825399995, 349.9226828409999, 350.16129583000003, 365.8191068400001, 343.02387216799985, 348.693885846, 357.8537783760001, 359.16374927299984, 344.25575820399996, 348.773509026, 346.5543431239999, 360.59541494, 356.70101548199995, 342.984358148, 349.9226828409999, 358.0145162879999, 351.19500709799996, 350.041887102, 345.325987581, 352.184808044, 359.20409652799987, 361.462215243, 355.67231969899996, 352.144817834, 355.67231969899996, 348.693885846, 345.44448058200004, 345.207291333, 348.693885846, 356.86151532599996, 355.552019787, 353.413816371, 353.09403504000005, 356.78126540399995, 345.246721251, 345.484113747, 342.905532744, 353.254028397, 360.232376012, 354.44292756399994, 354.4830367239999, 355.63215106399997, 356.8214935139999, 348.65427841800005, 342.826504704, 346.5146504839999, 353.373972069, 364.75151974499994, 349.882811776, 346.4751613959999, 355.591982429, 340.725524538, 348.773509026, 346.19772001999996, 354.5630493559998, 356.70101548199995, 361.38149035200007, 345.40505066400004, 345.16765816799995, 364.791956135, 347.26717774699995, 350.956037007, 356.78126540399995, 350.9161062719999, 344.13724007600007, 357.934147332, 349.882811776, 347.30672600500003, 351.11535040099994, 360.27278274199995, 347.584583096, 357.89385955200004, 349.9226828409999, 352.1050327020001, 353.293872699, 348.733697436, 348.693885846, 354.5231458839999, 355.591982429, 356.86151532599996, 352.1050327020001, 349.882811776, 349.962349439, 357.974435112, 346.27690174799994, 344.09766638600007, 348.773509026, 347.62433521099996, 345.207291333, 357.974435112, 348.65427841800005, 354.5231458839999, 353.293872699, 351.03569370400004, 348.81311645399995, 353.3339223840001, 347.54483098099996, 349.84294071100004, 360.232376012, 341.7957892629999, 359.16374927299984], \"power_mean\": 352.6518065995551, \"energy_millijoules\": 20968.54459034794, \"energy_joules\": 20.968544590347943, \"coremark_score\": 5045.917852, \"coremarks_per_mhz\": 3.7015242458920183, \"ulpmark_cm_score\": 14.307144623575516}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [434.29324923900003, 422.772593211, 438.970169456, 430.902197355, 426.23029993500006, 416.711336745, 428.57719597500005, 426.27433678500006, 420.57846480699993, 430.92445368000006, 428.00264595000004, 422.838000627, 434.29324923900003, 432.07977748800005, 420.53502309699996, 428.57719597500005, 427.46980896, 423.33374633600005, 429.75070859], \"power_mean\": 427.5323396552632, \"energy_millijoules\": 2137.6616982763157, \"energy_joules\": 2.137661698276316}}, \"1516800\": {\"active\": {\"elapsed_sec\": 53.428701595, \"elapsed_ns\": 53428701595, \"power_samples\": [358.054804068, 354.44292756399994, 363.8050345399999, 354.5231458839999, 367.21214814499996, 369.38817559499995, 364.62979370499994, 363.7644491899999, 369.42905832, 367.13082963999994, 361.3410241469999, 369.46994104499987, 362.61144822800003, 364.87324578499994, 377.48039387600005, 362.44976115599997, 361.2198330510001, 365.9817153000001, 365.94101099999995, 364.75151974499994, 364.791956135, 356.70101548199995, 359.04291441699996, 371.6492611139999, 364.670230095, 360.151769766, 364.75151974499994, 363.64290127, 360.191969282, 368.27994398000004, 360.111363036, 362.409235476, 371.60825924399984, 369.1841812799999, 367.04951113499993, 375.137217313, 361.260299256, 356.7410372939999, 370.54099785299996, 359.1236089269999, 364.670230095, 365.85981114, 369.225064005, 368.03542318, 364.71087491999987, 354.44292756399994, 355.552019787, 357.813490596, 361.2198330510001, 368.15768357999985, 376.20400412399994, 367.00874735999986, 363.5619387, 369.38817559499995, 358.92207956099986, 369.3475025249999, 371.60825924399984, 367.090065865, 365.85981114, 370.45932302399996, 362.44976115599997, 361.3410241469999, 368.19850683, 361.2198330510001, 367.04951113499993, 370.54099785299996, 363.64290127, 359.20409652799987, 377.39800678800003, 362.44976115599997, 359.083261672, 368.15768357999985, 355.552019787, 365.94101099999995, 366.967983585, 363.5619387, 363.8050345399999, 369.225064005, 360.070956306, 359.0027740709999, 370.45932302399996, 361.260299256, 362.5711303719999, 360.151769766, 357.813490596, 357.974435112, 373.947252504, 355.63215106399997, 359.083261672, 370.45932302399996, 355.4716825169999, 362.651973908, 355.4317198749998, 367.00874735999986, 371.567257374, 373.947252504, 367.99459993, 368.15768357999985, 377.35670734799993, 362.3283919399999, 350.041887102, 364.71087491999987, 367.04951113499993, 364.71087491999987, 372.88016892799993, 361.421956557, 368.15768357999985, 370.45932302399996, 353.213978712, 369.55149683999997, 360.232376012, 362.409235476, 371.5264657699999, 368.15768357999985, 362.409235476, 370.45932302399996, 362.4900790120001, 368.15768357999985, 363.72407197, 355.552019787, 362.409235476, 377.31540790799994, 366.92742885499985, 361.13910816000003, 366.92742885499985, 356.54030933999996, 364.71087491999987, 362.44976115599997, 361.2198330510001, 360.111363036, 377.39800678800003, 365.73790698, 362.36870979600013, 365.73790698, 357.8537783760001, 363.44039078, 362.36870979600013, 364.71087491999987, 418.7410132919999, 370.25503097100005, 363.31884285999985, 360.070956306, 372.55230988099987, 356.299353276, 362.36870979600013, 365.8191068400001, 366.967983585, 360.111363036, 375.01388760900005, 368.03542318, 361.2198330510001, 368.11686032999995, 356.5805374499999, 362.36870979600013, 365.85981114, 435.8979161199998, 364.5485040549999, 374.890557905, 369.06174275999996, 359.94994332999994, 366.8459013049999, 363.39980542999984, 362.3283919399999, 369.3475025249999, 360.0307567899999, 369.225064005, 374.8084084959999, 362.20702272399996, 361.260299256, 362.409235476, 362.24734057999996, 357.73312164, 358.8415919599999, 356.54030933999996, 363.44039078, 373.8241009199999, 375.9569884759998, 364.58914888, 366.92742885499985, 363.5213533500001, 356.54030933999996, 369.1841812799999, 362.166497044, 373.70094933599995, 372.75719546399995, 367.79090237999986, 358.88193921499993, 364.58914888, 361.2198330510001, 365.77861128, 365.8191068400001, 356.5805374499999, 368.11686032999995, 368.03542318, 364.58914888, 361.17957436499995, 374.9317382000001, 355.4716825169999, 354.1627805079999, 366.92742885499985, 356.5805374499999, 376.12173606999994, 375.9982282459999, 369.14329855499994, 351.9452769399999, 369.10262548500003, 356.46005941799996, 360.312982258, 359.99035006, 368.03542318, 371.5264657699999, 369.1841812799999], \"power_mean\": 365.2539992170188, \"energy_millijoules\": 19515.04693054646, \"energy_joules\": 19.51504693054646, \"coremark_score\": 5615.34862, \"coremarks_per_mhz\": 3.7021022020042196, \"ulpmark_cm_score\": 15.372753192328572}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [428.46673615000003, 428.48876, 427.29352542000004, 425.009563454, 419.361984036, 423.83653134400004, 460.26578949, 434.136549777, 429.639952, 423.83653134400004, 427.33756800000003, 423.02771793600004, 423.814632064, 431.90159285100003, 422.685457989, 420.3615904239999, 425.0314096, 428.44459877500003, 429.52919541], \"power_mean\": 428.0247203191579, \"energy_millijoules\": 2140.1236015957893, \"energy_joules\": 2.140123601595789}}, \"1593600\": {\"active\": {\"elapsed_sec\": 50.847206908, \"elapsed_ns\": 50847206908, \"power_samples\": [370.21408857599994, 373.74185928, 363.35942821, 364.62979370499994, 371.48546389999984, 370.25503097100005, 364.46742284, 366.8459013049999, 365.77861128, 375.9982282459999, 376.12173606999994, 370.29576340500006, 365.8191068400001, 379.61316139800005, 370.33670580000006, 363.5213533500001, 384.21243518700004, 376.12173606999994, 370.29576340500006, 381.7451915519999, 371.4036704259999, 370.37764819499995, 373.70094933599995, 369.14329855499994, 364.5485040549999, 374.9317382000001, 371.36266855599996, 368.11686032999995, 372.67528334499997, 371.567257374, 369.225064005, 362.44976115599997, 367.95398602999995, 369.225064005, 378.299273187, 374.9729184949999, 369.14329855499994, 379.5719554099998, 373.659828516, 370.25503097100005, 380.5965520969999, 365.69720268, 365.69720268, 380.6378172549999, 373.74185928, 377.43909443600006, 378.340420005, 370.25503097100005, 370.37764819499995, 379.48911862999984, 371.5264657699999, 366.8459013049999, 379.48911862999984, 371.4444620299999, 372.92123027299994, 371.48546389999984, 364.670230095, 386.30173996799994, 377.23302082000004, 374.8084084959999, 375.9159601919999, 385.19487594799995, 367.95398602999995, 367.04951113499993, 362.24734057999996, 365.6567071199999, 374.890557905, 372.63422199999997, 372.4703977619999, 365.69720268, 380.6378172549999, 375.9159601919999, 365.90051544, 367.95398602999995, 365.77861128, 366.8459013049999, 373.659828516, 370.25503097100005, 379.44791264199995, 381.7036542119999, 372.55230988099987, 370.41838062900007, 371.32187695199985, 369.265737075, 370.17335614199993, 379.44791264199995, 367.95398602999995, 378.340420005, 369.10262548500003, 370.21408857599994, 370.33670580000006, 367.95398602999995, 370.05073891800004, 380.47233120900006, 369.1841812799999, 359.86933708399994, 370.25503097100005, 374.8084084959999, 372.63422199999997, 370.41838062900007, 366.72402807, 373.7829801, 380.6378172549999, 364.46742284, 364.50806766499994, 448.09324446399995, 373.74185928, 379.40649425199985, 378.13404962400006, 373.577797752, 365.69720268, 366.8459013049999, 366.5611820149998, 371.280875082, 377.23302082000004, 375.9569884759998, 369.1841812799999, 374.8084084959999, 371.48546389999984, 363.35942821, 373.53667693200003, 363.31884285999985, 421.5384024759998, 372.55230988099987, 373.372615404, 373.70094933599995, 372.4703977619999, 362.20702272399996, 365.57550725999994, 383.96313714599984, 371.48546389999984, 372.429336417, 373.74185928, 370.13241374700004, 368.9801869650001, 378.25791427200005, 364.5485040549999, 373.6189185719999, 371.48546389999984, 364.46742284, 372.347424298, 378.25791427200005, 374.7262590870001, 367.8725488799999, 365.57550725999994, 378.13404962400006, 371.32187695199985, 377.026947204, 377.026947204, 372.429336417, 374.7262590870001, 372.4703977619999, 372.429336417, 378.21676745400003, 365.61600282, 366.7645827999999, 373.659828516, 370.0914713519999, 367.8725488799999, 378.13404962400006, 375.9982282459999, 378.13404962400006, 378.25791427200005, 363.11633236999984, 367.79090237999986, 379.40649425199985, 366.6832642949999, 364.46742284, 372.511248536, 377.026947204, 375.9569884759998, 378.175408539, 365.57550725999994, 370.17335614199993, 374.7262590870001, 365.53480296000004, 365.61600282, 373.70094933599995, 367.8317256299999, 371.60825924399984, 374.8084084959999, 367.79090237999986, 359.78873083800005, 372.511248536, 372.4703977619999, 371.19908160799986, 378.175408539, 374.8084084959999, 371.5264657699999, 373.577797752, 372.4703977619999, 365.61600282, 376.861961236, 373.41352534800006, 369.10262548500003, 379.40649425199985, 372.429336417, 372.67528334499997, 372.3882750719999, 363.27846563999987, 366.7645827999999, 370.21408857599994], \"power_mean\": 372.39685440735144, \"energy_millijoules\": 18935.33990793895, \"energy_joules\": 18.93533990793895, \"coremark_score\": 5900.517279, \"coremarks_per_mhz\": 3.7026338347138554, \"ulpmark_cm_score\": 15.843391323237885}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [426.03258577, 430.72448916, 427.11724188, 434.114114832, 429.50699856, 431.812443312, 429.52919541, 428.37830017500005, 423.02771793600004, 423.727259552, 428.312001575, 428.2898642, 434.15898472199996, 419.189026248, 432.963279072, 430.613435805, 427.22740494000004, 429.52919541, 420.40503213399995], \"power_mean\": 428.1399247733158, \"energy_millijoules\": 2140.699623866579, \"energy_joules\": 2.140699623866579}}, \"1708800\": {\"active\": {\"elapsed_sec\": 47.410685138, \"elapsed_ns\": 47410685138, \"power_samples\": [386.38507660499994, 386.30173996799994, 389.58385982199997, 385.02822603600004, 388.5153260009999, 386.13506669399993, 395.367608028, 394.3035900779999, 389.75124574399985, 387.45031994799996, 395.53639707400004, 383.83838131399995, 387.40869957600006, 389.62559872799994, 394.17723058199994, 464.0386749199999, 395.325573272, 383.96313714599984, 380.6378172549999, 396.4776810199999, 382.690038624, 389.62559872799994, 391.9224024479999, 391.9224024479999, 394.17723058199994, 401.0710517799999, 382.773019326, 384.12933584, 394.21920616799997, 387.325029756, 379.32386987399985, 390.732202512, 396.5197751399999, 394.261398123, 397.5836531349999, 390.732202512, 387.492154858, 390.858027648, 390.81601411799994, 388.4734316159999, 389.58385982199997, 389.58385982199997, 397.66817699999996, 395.325573272, 389.58385982199997, 381.7451915519999, 381.6623298839999, 387.366864666, 393.028887892, 393.028887892, 384.90329208400004, 391.02565086, 389.66755278299996, 389.83493870499996, 381.7451915519999, 383.83838131399995, 388.5153260009999, 389.62559872799994, 393.07080430799994, 383.83838131399995, 382.5238639020001, 388.34796330399985, 379.36528826399984, 390.81601411799994, 386.13506669399993, 391.88054520199984, 394.261398123, 394.0928466719999, 387.366864666, 396.18193728, 387.325029756, 384.861790052, 387.325029756, 388.34796330399985, 390.774000588, 387.325029756, 393.07080430799994, 381.49639353599997, 401.0710517799999, 387.2834093840001, 391.7963991919999, 391.9644754529999, 404.30642592400005, 390.774000588, 390.6481754520001, 380.430853344, 379.1998271059999, 403.3288340729999, 389.45821280599995, 386.0515158240001, 389.49995171200004, 386.0515158240001, 388.34796330399985, 397.54128255999996, 389.58385982199997, 388.34796330399985, 406.7308371479999, 395.19903565600004, 389.709506838, 389.24887282900005, 390.606377376, 383.71362548199994, 392.9867554119999, 377.026947204, 389.54190576699995, 403.2437165940001, 397.41438811999996, 384.986724004, 396.4776810199999, 376.820873588, 384.94500804399996, 392.902706516, 388.30628376199996, 386.09329125899984, 396.3509646999999, 395.53639707400004, 386.17662789599996, 397.49912926999997, 379.1998271059999, 386.09329125899984, 389.49995171200004, 392.94462293199996, 388.30628376199996, 399.79545841, 389.54190576699995, 381.3719945279999, 388.34796330399985, 378.0515438909999, 384.90329208400004, 392.902706516, 390.6481754520001, 384.986724004, 389.45821280599995, 381.49639353599997, 386.0515158240001, 391.9224024479999, 388.264389377, 375.668944544, 389.41625875099993, 389.45821280599995, 390.522350316, 399.83773003999994, 387.2834093840001, 388.34796330399985, 395.24107041199994, 384.861790052, 387.19973956400014, 393.96648717599993, 382.60684460400006, 392.818441556, 391.7963991919999, 391.75454194599996, 389.49995171200004, 397.41438811999996, 393.84034404899995, 384.77835813199994, 389.54190576699995, 382.5238639020001, 389.45821280599995, 399.880219565, 382.5654609120001, 387.158119192, 398.5624337399999, 389.54190576699995, 382.60684460400006, 395.19903565600004, 387.19973956400014, 389.58385982199997, 399.79545841, 388.30628376199996, 391.8384721969998, 385.926403752, 379.0757843379999, 382.5654609120001, 392.86057403599995, 394.0508710860001, 393.15506926799986, 398.22364611000006, 387.19973956400014, 386.0515158240001, 395.19903565600004, 387.158119192, 390.69018898199994, 397.41438811999996, 382.5238639020001, 395.40985945799997, 389.2906117349999, 389.49995171200004, 384.986724004], \"power_mean\": 389.9734741286084, \"energy_millijoules\": 18488.90959408344, \"energy_joules\": 18.48890959408344, \"coremark_score\": 6328.312872, \"coremarks_per_mhz\": 3.7033666151685396, \"ulpmark_cm_score\": 16.225943367476994}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [426.01056734499997, 427.84802490000004, 424.878036142, 429.48491554000003, 421.33869674600004, 428.22367912500005, 428.26784035000003, 427.13920656000005, 428.312001575, 428.24570297500003, 431.767925763, 428.312001575, 430.613435805, 430.32467425500005, 437.498897968, 436.34824032800003, 422.576482962, 422.55464315699993, 437.476400564], \"power_mean\": 428.8011249281579, \"energy_millijoules\": 2144.0056246407894, \"energy_joules\": 2.1440056246407893}}}}, \"6\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 128.862641982, \"elapsed_ns\": 128862641982, \"power_samples\": [279.82145758400003, 287.61381679999994, 285.4256104019999, 286.53800791199984, 296.65977982399994, 284.19988942800006, 304.8198298999999, 304.85738026999985, 293.39843700600005, 280.137451837, 281.8296022199999, 294.39963456899994, 287.650286472, 295.58515807999987, 293.32471606000007, 311.71614491999986, 310.525772655, 286.42840104, 296.8081240149999, 280.753259193, 284.16359745999983, 294.4364594549999, 285.4256104019999, 289.98481657199994, 301.36978918000005, 287.5771591399999, 277.266925395, 307.0422006359999, 285.9169648649999, 291.09691670699993, 287.61381679999994, 285.3161816499998, 281.7932421299999, 302.5559785049999, 296.77099036, 284.12711842000004, 295.69619049600004, 285.2067528979998, 280.717144735, 292.139062205, 287.3211194839999, 294.47347415999985, 304.85738026999985, 296.8081240149999, 286.391802855, 299.10952577999996, 287.504031808, 285.9535630499999, 293.39843700600005, 288.72591724, 292.06545990399997, 301.40716093, 299.62518274999996, 293.32471606000007, 297.92351488, 285.2431042299999, 284.16359745999983, 293.32471606000007, 285.2431042299999, 289.43411041200005, 305.89356118100005, 285.1702141879999, 295.62223226, 295.58515807999987, 287.504031808, 288.83588035199995, 286.391802855, 282.97836032000004, 286.6110165989999, 305.818534362, 292.02875335799996, 281.2125994619999, 291.02343344, 282.94194075499996, 291.20723605899997, 281.86596230999993, 283.0147798849999, 286.57460609699996, 292.139062205, 296.474492407, 296.65977982399994, 288.72591724, 284.12711842000004, 287.10154949999986, 278.31115013699997, 282.90570795699995, 292.28645601599993, 307.1173460999999, 297.73792972500013, 293.28776082999997, 291.88135954699993, 279.4235484519999, 290.9499501729999, 284.054347412, 294.4364594549999, 292.58693805799993, 299.0722729799999, 288.61595412799994, 288.5794252859999, 288.7626343749999, 282.94194075499996, 293.36167129000006, 284.6232578059999, 285.4619617339999, 309.45265057, 304.7822795299999, 279.45978959200005, 293.214039884, 287.394246816, 284.09063938, 288.65267126299995, 292.139062205, 363.07574701999994, 303.66730537999996, 298.70050914000007, 281.7932421299999, 289.83789872999995, 284.09063938, 285.3161816499998, 293.140318938, 289.7279460959999, 289.83789872999995, 297.960708205, 294.3257949779999, 289.91145194999996, 293.250995114, 288.359499062, 285.2067528979998, 288.689200105, 283.051012683, 292.139062205, 293.214039884, 298.9236438599999, 290.5821560319999, 287.4673741479999, 278.3471462549999, 284.017868372, 295.548274024, 288.102855703, 292.17595795999995, 297.849318965, 297.7007363999999, 281.9748561179999, 292.02875335799996, 281.75706850199987, 284.5501803859999, 280.68084412, 293.28776082999997, 288.83588035199995, 300.18371880499996, 296.65977982399994, 285.38907169199996, 287.5771591399999, 281.6481746939999, 295.62223226, 291.954961848, 285.1702141879999, 289.214016546, 294.39963456899994, 284.09063938, 286.6110165989999, 288.65267126299995, 328.45164503999985, 286.3553923529999, 299.88579464000003, 281.72070841199985, 303.5550255399999, 296.77099036, 287.61381679999994, 284.76903789, 288.46946217400006, 285.1338628559999, 295.5111998439998, 292.06545990399997, 278.2749684719999, 296.622836598, 285.73434930599996, 287.54050147999993, 298.9236438599999, 295.5111998439998, 285.2067528979998, 298.81207649999993, 278.2749684719999, 287.4673741479999, 301.2206854799999, 295.400167428, 284.09063938, 297.849318965, 291.6972591899999, 280.5360139739999, 292.06545990399997, 288.61595412799994, 278.1666090239999, 300.22103108000005, 301.2952373299999, 282.833055594, 292.06545990399997, 294.4364594549999, 285.1338628559999, 288.65267126299995, 284.9513566839999, 286.3553923529999, 308.11557598199994, 292.02875335799996, 296.6969134789999, 302.443876785, 289.76453410799996, 282.5784921729999, 291.0602695249999, 293.28776082999997, 281.68453478399994, 303.4802364, 288.102855703, 290.80279473599995, 289.691169486, 287.43090447599997, 279.6043824480001, 296.58570294300006, 285.2067528979998, 286.026571737, 296.73385670499994, 303.40544726, 296.65977982399994, 334.5075196799999, 293.214039884, 284.19988942800006, 287.43090447599997, 286.28238366599993, 295.548274024, 289.7279460959999, 297.66373381, 291.51315883299986, 292.1023556589999, 285.1702141879999, 284.16359745999983, 285.1338628559999, 288.542708151, 302.25710456999997, 297.66373381, 294.21494068199996, 294.39963456899994, 283.981576404, 282.869288392, 294.9562278879999, 287.4673741479999, 290.9131140879999, 308.07784718700003, 298.84913825999996, 284.9513566839999, 294.288780273, 278.8810464639999, 283.981576404, 296.73385670499994, 288.46946217400006, 281.72070841199985, 313.406409322, 292.139062205, 291.918255302, 286.17277679399996, 290.9131140879999, 289.6543928759999, 289.691169486, 291.549865379, 279.45978959200005, 296.622836598, 294.39963456899994, 287.3211194839999, 294.288780273, 291.954961848, 282.94194075499996, 286.391802855, 284.017868372, 288.43274503899994, 304.44509646399996, 288.61595412799994, 288.46946217400006, 287.35758915599996, 279.38749316399986, 284.017868372, 293.140318938, 280.5360139739999, 286.42840104, 301.2206854799999, 296.474492407, 281.68453478399994, 290.87646690599985, 284.6596091379999, 282.869288392, 294.25176556799994, 290.80279473599995, 286.4649992249999, 303.4802364, 287.35758915599996, 291.918255302, 291.991857603, 282.72398366600004, 293.214039884, 287.35758915599996, 290.39835341299994, 288.7626343749999, 287.394246816, 293.02964276200004, 295.3632833719999, 300.07216466999995, 285.0244341039999, 284.5501803859999, 289.6543928759999, 282.76021646399994, 285.1702141879999, 287.394246816, 290.7293114689999, 290.76614755399993, 279.31501088399995, 285.2431042299999, 295.43724160799997, 288.5794252859999, 287.35758915599996, 295.06726030400006, 293.177274168, 289.7279460959999, 289.7279460959999, 290.76614755399993, 281.68453478399994, 289.7279460959999, 283.908618324, 280.57212843199994, 303.59251623999995, 300.10928559999985, 284.054347412, 286.88197951599994, 283.908618324, 286.17277679399996, 293.02964276200004, 291.954961848, 289.7279460959999, 301.2578655799999, 299.69961595499996, 283.945097364, 294.3626198639999, 283.981576404, 291.991857603, 289.10387531399994, 303.4802364, 285.09732414599995, 304.7073713559999, 287.3211194839999, 285.0244341039999, 295.3632833719999, 279.956134919, 296.474492407, 287.3211194839999, 329.4832525539999, 282.796636029, 302.25710456999997, 289.58102825399993, 279.45978959200005, 294.21494068199996, 286.2091872959999, 290.76614755399993, 291.954961848, 286.918637176, 290.80279473599995, 298.99795842, 291.918255302, 287.504031808, 291.88135954699993, 287.35758915599996, 290.80279473599995, 286.2091872959999, 286.24578548100004, 286.2091872959999, 303.51772709999995, 292.84524564, 279.5683271599999, 278.23897235399994, 289.801310718, 286.24578548100004, 290.76614755399993, 296.58570294300006, 285.5517337469999, 303.4427456999999, 287.174676832, 285.1702141879999, 285.0244341039999, 285.69775112099995, 285.0607854359999, 287.43090447599997, 290.83963082099996, 303.4427456999999, 311.41346879099984, 283.908618324, 284.8055765999998, 282.76021646399994, 279.35125202399996, 297.6265404849999, 284.98789539399996, 287.28446182399995, 303.33046585999995, 291.844463792, 281.68453478399994, 288.542708151, 285.0244341039999, 283.908618324, 293.66066920199995, 284.98789539399996, 296.5485692879999, 310.22357296800004, 290.7293114689999, 289.544251644, 298.7748236999999, 295.06726030400006, 280.42729828599994, 322.9000658039999, 286.24578548100004, 288.43274503899994, 306.25249714800003, 296.43735875199997, 285.0244341039999, 291.88135954699993, 282.76021646399994, 287.247804164, 292.02875335799996, 278.0582495759999, 284.9513566839999, 299.84867371, 305.6306780080001, 282.614911738, 288.505991016, 280.463412744, 296.5485692879999, 290.83963082099996, 289.58102825399993, 294.21494068199996, 308.0025830779999, 297.18098352499993, 286.17277679399996, 294.140911272, 287.3211194839999, 286.3553923529999, 289.50766363200006, 281.5756409759999, 286.3187941679999, 303.36795655999987, 292.88201135599996, 280.49971335899994, 290.618992117, 284.8055765999998, 281.72070841199985, 284.98789539399996, 281.50292079599996, 286.28238366599993, 302.25710456999997, 290.5821560319999, 279.9924355340001, 290.83963082099996, 291.844463792, 280.57212843199994, 284.9513566839999, 275.218209244, 291.88135954699993, 305.74331467199994, 295.06726030400006, 354.87038894999995, 288.359499062, 281.4303870779999, 275.50615459600004, 286.09958042399995, 290.7293114689999, 290.7293114689999, 296.474492407, 299.69961595499996, 292.88201135599996, 283.76307630800005, 281.50292079599996, 296.51162606199995, 281.5756409759999, 287.174676832, 298.29149249999995, 303.40544726, 281.4303870779999, 295.3632833719999, 290.54550884999986, 286.13617860899984, 286.13617860899984, 283.872326356, 280.354697056, 302.219673345, 291.77086149099995, 284.878466642, 295.95557338200007, 288.43274503899994, 285.989973552, 294.25176556799994, 279.1704180279999, 280.42729828599994, 302.18224212, 292.51321711200006, 288.39602790400005, 286.063169922, 286.063169922, 281.4303870779999, 298.5146272199999, 282.5784921729999, 288.46946217400006, 299.88579464000003, 303.33046585999995, 289.50766363200006, 288.43274503899994, 282.1059716629998, 287.3211194839999], \"power_mean\": 290.8287059736294, \"energy_millijoules\": 37476.95541596815, \"energy_joules\": 37.47695541596815, \"coremark_score\": 2328.360989, \"coremarks_per_mhz\": 7.7612032966666655, \"ulpmark_cm_score\": 8.004919200885146}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [432.82937049, 425.90070105, 429.28548538, 436.23570217500003, 425.06558171000006, 428.2898642, 427.0731993, 418.99440708, 423.661674016, 427.406072075, 420.14482742999996, 424.834118632, 428.17940437500005, 418.99440708, 419.320994386, 436.303248199, 420.166548285, 430.54678096500004, 422.48923574099996], \"power_mean\": 426.0906117141579, \"energy_millijoules\": 2130.4530585707894, \"energy_joules\": 2.1304530585707893}}, \"652800\": {\"active\": {\"elapsed_sec\": 59.131873467, \"elapsed_ns\": 59131873467, \"power_samples\": [343.46570499800004, 342.2743216039999, 346.870268168, 339.978230364, 336.76522589999996, 353.08189006799984, 338.712581401, 348.01831378799994, 357.1298379600001, 347.9388947700001, 340.456965036, 343.34718687000003, 356.0583972119999, 415.7513096999999, 336.49131408, 342.23501022, 352.53436636500004, 360.290978007, 352.53436636500004, 350.2784431499999, 343.38676056, 339.93903731999995, 338.9088559340001, 338.79105087, 331.86038973, 352.45447237799993, 354.7500890379999, 354.87038894999995, 354.83022031499996, 333.5709841799999, 342.23501022, 349.12669280999995, 337.6821391239999, 329.52211195900003, 343.307816122, 349.04715514700007, 355.61671319399994, 347.85947575200004, 346.790967795, 346.790967795, 351.346654258, 339.191945172, 338.673245806, 355.9381254779999, 347.97870636, 356.84844331200003, 350.19878645299997, 350.19878645299997, 352.0946413620001, 349.04715514700007, 342.23501022, 334.03915168, 351.346654258, 347.81966416200004, 340.6930853129999, 345.524166452, 339.821054136, 339.93903731999995, 344.4160507620001, 336.4130822900001, 337.01585499599986, 350.19878645299997, 350.19878645299997, 358.036095223, 345.524166452, 344.4160507620001, 344.4160507620001, 346.592614934, 346.671915307, 337.72141524399996, 350.15885571799987, 347.8992873419999, 354.3891893019999, 349.20623047300006, 376.61479997199996, 339.86044920600006, 347.81966416200004, 342.156184816, 341.2838918329999, 350.7078362879999, 352.294479021, 350.15885571799987, 351.226888706, 352.49452206300003, 338.673245806, 349.04715514700007, 340.96886246599996, 338.94798980799993, 351.38643939, 353.5222680759999, 343.268242432, 421.858099794, 343.307816122, 346.6323670489999, 344.37641759699994, 335.1869005349999, 345.76191518799993, 345.444984724, 356.92881226800006, 339.7816590659999, 343.2286687419999, 338.6339102109999, 352.33452870599996, 340.57512634000005, 336.25641760000013, 345.524166452, 349.04715514700007, 353.5222680759999, 347.7402451440001, 345.524166452, 333.45389217999997, 357.04946900399995, 339.742466022, 342.03784539199995, 352.53436636500004, 344.25772134900006, 350.0392682860001, 343.1892979939999, 337.48616135599997, 339.742466022, 355.85766925799993, 347.78005673399997, 347.4621765, 349.007284082, 368.2864385699999, 350.0392682860001, 340.8901557069999, 345.365802996, 342.11667079599994, 355.77741933600004, 346.592614934, 339.742466022, 345.524166452, 353.56217154799987, 352.1745353490001, 341.008317011, 343.2286687419999, 338.6339102109999, 347.81966416200004, 343.070779866, 335.22605751, 357.04946900399995, 349.999337551, 344.4160507620001, 341.998331372, 339.821054136, 333.49278918, 348.927746419, 330.595905115, 339.742466022, 355.81764744599997, 354.7099204029999, 353.8024151319999, 342.991632486, 337.4078105319999, 340.96886246599996, 347.81966416200004, 338.55544074200003, 344.92999816399987, 355.69716941400003, 346.592614934, 348.01831378799994, 342.03784539199995, 336.25641760000013, 345.60355173199997, 340.2598946419999, 348.848004289, 348.8878753540001, 354.62978912599993, 359.2644794179999, 346.751419537, 334.07824918, 349.04715514700007, 348.927746419, 350.0392682860001, 343.2286687419999, 347.81966416200004, 355.4159852399999, 354.62978912599993, 344.4160507620001, 344.25772134900006, 337.4470866519999, 352.294479021, 346.5528628189999, 343.149724304, 355.81764744599997, 352.37457839099994, 344.37641759699994, 343.1892979939999, 341.80116654399995, 335.30417065500006, 346.6323670489999, 338.55544074200003, 356.96910004800003, 347.85947575200004, 353.5222680759999, 344.0205321, 349.007284082, 347.85947575200004, 340.8901557069999, 347.7004335540001, 337.92728154799994, 355.61671319399994, 351.2666738379999, 355.77741933600004, 353.4021462839999, 352.33452870599996, 345.444984724, 340.57512634000005, 346.71166742200006, 345.524166452, 345.3261103559999, 351.2666738379999, 352.41442269299995, 359.10305971199995, 346.6323670489999, 339.624482838, 344.37641759699994, 352.33452870599996, 343.1892979939999, 346.35450995799994, 365.0066907599999, 349.95961158899996, 352.1346910469999, 346.671915307, 339.624482838, 373.90413145400004, 349.48126186099995, 340.96886246599996, 336.53032942, 378.74507442399994, 349.95961158899996, 344.059962018, 348.848004289], \"power_mean\": 347.293742247282, \"energy_millijoules\": 20536.12962244719, \"energy_joules\": 20.53612962244719, \"coremark_score\": 5074.854098, \"coremarks_per_mhz\": 7.773979929534314, \"ulpmark_cm_score\": 14.608400195920192}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [430.65418595100004, 418.79978791200006, 425.658950035, 525.7180593100001, 428.02478332500004, 423.78212535399996, 422.271285687, 431.433872484, 434.950605492, 423.421231152, 427.22931365000005, 429.10825207, 432.605960028, 425.70287397000004, 431.456074038, 419.169171179, 424.59302276299996, 428.0689445500001, 428.02478332500004], \"power_mean\": 432.1406990671053, \"energy_millijoules\": 2160.7034953355264, \"energy_joules\": 2.1607034953355266}}, \"768000\": {\"active\": {\"elapsed_sec\": 50.223149668, \"elapsed_ns\": 50223149668, \"power_samples\": [351.346654258, 359.02245346599994, 365.74736982999985, 363.89943746499983, 362.67072604000003, 363.65598538500006, 368.367994365, 363.41274173999994, 359.1434664419999, 368.2864385699999, 351.1469082859999, 363.859001075, 369.5602700220001, 374.0686414530001, 369.9303365639999, 370.707900232, 359.1434664419999, 356.92881226800006, 367.17980972999993, 359.10305971199995, 361.3574382120001, 383.17294566899994, 382.0255530540001, 354.469320579, 370.6668983619999, 364.8440822999999, 360.87216917200004, 370.6668983619999, 365.9915343899998, 368.2864385699999, 376.408514564, 369.355977969, 355.69716941400003, 370.5851048879999, 361.47880742800004, 368.24555584499996, 362.54917812, 362.4682155499999, 361.0743819240001, 376.408514564, 396.9070276449999, 363.77771142500006, 365.9102158849999, 363.859001075, 357.995954877, 375.95506789200005, 361.3574382120001, 369.519327627, 373.986280863, 372.83888824799993, 355.094779254, 365.9915343899998, 360.25051180199995, 357.95560762199995, 367.17980972999993, 362.54917812, 361.3574382120001, 457.476875859, 378.53840727799985, 365.0066907599999, 369.437652798, 362.54917812, 363.65598538500006, 361.43848957200004, 361.43848957200004, 362.5897634699999, 380.87439849599997, 377.34971491799996, 360.41216910300005, 366.48707057999985, 365.9102158849999, 363.6966302099999, 364.8033780000001, 361.3574382120001, 365.0066907599999, 375.13367347800005, 360.1697869109999, 362.7516886099999, 368.24555584499996, 368.2048827749998, 370.62610675799993, 363.29101570000006, 360.331236693, 378.496988888, 378.70365603399995, 353.4021462839999, 360.331236693, 363.61554899499987, 364.1940659399999, 386.65695842400004, 371.4866100499999, 361.317120356, 376.16135330000003, 366.93528893, 357.8751200209999, 364.76288243999994, 360.290978007, 360.25051180199995, 367.1389864799999, 362.4682155499999, 367.91912300999985, 385.21772098799994, 376.2848280360001, 369.315035574, 372.79797830399997, 367.05754932999986, 358.90144048999997, 374.027461158, 364.5597784199999, 372.71594754000006, 371.7325569779999, 377.43222065100014, 361.8604759500001, 370.462309544, 356.64741762, 360.129320706, 364.72217814000004, 372.7568574839999, 365.8288973799999, 378.496988888, 371.5687327399999, 362.4682155499999, 375.0103771399999, 361.317120356, 361.8604759500001, 365.8694521099998, 360.1697869109999, 355.57669138199986, 381.942572352, 372.7568574839999, 362.38725298, 368.74289184900005, 364.60027397999994, 359.18366595799995, 362.2251197099999, 360.08906202, 365.6252875499999, 384.320338284, 375.8726808039999, 365.74736982999985, 369.27430314, 371.5687327399999, 361.519333108, 367.4702516549999, 355.4964414600001, 368.2864385699999, 378.53840727799985, 373.61650293200006, 360.2100455969999, 364.6816825800001, 357.8751200209999, 358.036095223, 360.08906202, 363.53446777999994, 380.7502124999999, 371.24066312199994, 366.81302852999994, 367.01672607999996, 372.71594754000006, 360.1697869109999, 351.2666738379999, 357.7542851649999, 360.1697869109999, 373.9453117489999, 377.391073833, 370.2167188559999, 369.315035574, 361.82009873, 425.3865694439998, 368.16400004999997, 362.34666763, 363.493822955, 379.6029977, 377.34971491799996, 372.34649278800003, 370.42151794, 365.8288973799999, 357.7946324199999, 367.01672607999996, 366.32398693, 366.81302852999994, 378.45578289999986, 364.5597784199999, 362.34666763, 369.19241834999997, 362.34666763, 366.7315913799999, 370.42151794, 373.82198204499997, 356.60712984, 371.609583514, 366.89446568, 370.42151794, 370.3395141999999, 368.0415615299999, 360.129320706, 372.59279595599986, 364.60027397999994], \"power_mean\": 367.5057927680909, \"energy_millijoules\": 18457.29843404882, \"energy_joules\": 18.45729843404882, \"coremark_score\": 5975.381429, \"coremarks_per_mhz\": 7.780444569010417, \"ulpmark_cm_score\": 16.253732964873105}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [425.6150261, 422.11863105, 419.884622726, 427.892186125, 425.57098924999997, 431.41155648899996, 429.04177535, 430.498317309, 422.184038466, 426.69855431999997, 426.7646748, 432.561323834, 428.22197169000003, 429.0639722, 418.756576236, 428.99749548, 419.86301326, 425.90522178, 426.7646748], \"power_mean\": 426.20076954026314, \"energy_millijoules\": 2131.003847701316, \"energy_joules\": 2.131003847701316}}, \"979200\": {\"active\": {\"elapsed_sec\": 39.415073839, \"elapsed_ns\": 39415073839, \"power_samples\": [423.13601105999993, 409.44938929999995, 409.32053437199994, 418.50058858799997, 410.29545333899995, 413.7791136839999, 416.2065152279999, 421.8146439879999, 409.44938929999995, 414.79998632400003, 418.5438666899999, 409.492193848, 409.32053437199994, 411.39910828399996, 412.6752371819999, 417.35355190799993, 415.6434360649999, 404.81398164499996, 416.16313299300003, 405.7899704159999, 410.725416201, 418.457087403, 411.4853965639999, 416.076590996, 426.4020782279999, 415.05947854799996, 412.76164441199984, 404.60048501199987, 419.34314742400005, 417.35355190799993, 407.02270023599993, 425.12386989199996, 413.82215491200003, 424.108361108, 421.858099794, 419.4736060159999, 413.7791136839999, 412.502865836, 411.65753061999993, 405.7899704159999, 413.7358505939998, 419.56050394799996, 416.11975075799995, 426.35816052299987, 419.51716667600004, 409.19167944399993, 413.7791136839999, 413.34714836999984, 412.58905150899994, 408.044820884, 412.6752371819999, 414.92973243599994, 413.1312766439999, 413.865418002, 413.82215491200003, 404.60048501199987, 411.39910828399996, 405.7473435719999, 403.32566270800004, 414.756663564, 422.96150254800006, 414.58381686, 417.266668488, 408.130531977, 406.93688814600006, 413.7358505939998, 409.23448399199987, 406.851296087, 421.770964183, 414.8864096759999, 419.299810152, 413.1312766439999, 412.58905150899994, 418.4135862179999, 410.42448638699994, 411.39910828399996, 409.14865425399984, 422.9177632679999, 417.1800078459999, 413.5199788679999, 414.92973243599994, 416.033208761, 420.7548023939999, 412.07149435699995, 413.865418002, 412.80462646999985, 427.5526969799999, 411.4853965639999, 419.34314742400005, 425.2988529839999, 407.3157257509999, 419.69096253999993, 457.3405358029999, 411.44225242399995, 412.847830085, 430.2439826999999, 420.5805447679999, 420.5805447679999, 415.98982652600006, 418.3268069309999, 410.467571052, 410.29545333899995, 403.95977569199994, 412.76164441199984, 413.69258750399996, 421.683828572, 420.5371481319999, 411.22697422799996, 402.2214316020001, 419.299810152, 408.044820884, 410.2095049560001, 406.93688814600006, 420.66778542799995, 421.46587754499996, 413.7358505939998, 410.2095049560001, 405.61902358800006, 414.972833028, 408.044820884, 415.903284529, 417.22344955599993, 426.35816052299987, 420.49352780199996, 411.39910828399996, 406.93688814600006, 409.73645742900004, 413.7358505939998, 405.576177018, 409.06282451600003, 414.8864096759999, 423.977189452, 420.49352780199996, 415.816742532, 406.808390042, 406.765704028, 413.69258750399996, 409.14865425399984, 407.401436844, 420.49352780199996, 418.3268069309999, 414.670240212, 415.7733602970001, 409.01979932599994, 396.48397374999996, 418.7779757839999, 404.60048501199987, 410.2523686739999, 417.22344955599993, 415.98982652600006, 418.153248357, 418.28330574599994, 410.2095049560001, 410.1235565729999, 421.727284378, 405.61902358800006], \"power_mean\": 414.3328454092564, \"energy_millijoules\": 16330.959695728812, \"energy_joules\": 16.33095969572881, \"coremark_score\": 7614.213198, \"coremarks_per_mhz\": 7.775953020833334, \"ulpmark_cm_score\": 18.37001655686296}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [428.90882191, 447.42336134999994, 430.10245341, 423.224474544, 418.952408185, 427.759588925, 422.053223634, 432.427300506, 427.82588752500004, 426.96411925, 427.84802490000004, 424.330080748, 420.882203368, 416.23829135899996, 431.534002896, 426.67647642000003, 423.20257526399996, 426.69855431999997, 425.54908374], \"power_mean\": 426.76847011863157, \"energy_millijoules\": 2133.842350593158, \"energy_joules\": 2.1338423505931576}}, \"1017600\": {\"active\": {\"elapsed_sec\": 37.907527642, \"elapsed_ns\": 37907527642, \"power_samples\": [434.43760853199996, 428.56767082000005, 416.33643946, 426.2266326269999, 416.076590996, 415.47035207100004, 422.96150254800006, 421.683828572, 422.83050901199994, 433.28698977999994, 431.74287397999996, 413.9517223199999, 418.19652645900004, 413.7358505939998, 424.020763598, 424.020763598, 420.5805447679999, 423.32133117200004, 433.1101178300001, 407.9588894539999, 408.1734976919999, 412.5458478939999, 413.606283186, 428.7433665600001, 428.4357860999999, 419.34314742400005, 436.73132565199995, 430.81687589999996, 410.2523686739999, 417.76240694099994, 413.7791136839999, 413.5632419579999, 420.5371481319999, 417.136566136, 417.09334720399994, 443.52661637400007, 423.889816551, 415.86012476700006, 420.49352780199996, 412.45966222099986, 415.816742532, 423.671047385, 415.903284529, 418.19652645900004, 433.1101178300001, 433.06607013, 421.727284378, 435.18560501999997, 421.0734312969999, 418.19652645900004, 427.37701300500004, 410.2095049560001, 426.2266326269999, 427.95228406999996, 433.06607013, 414.756663564, 427.42099038, 422.83050901199994, 412.41668016299997, 422.786769732, 418.95177164800003, 420.49352780199996, 438.935898132, 426.2266326269999, 413.606283186, 419.34314742400005, 413.64954627599997, 412.6752371819999, 426.18294014099996, 413.5632419579999, 412.502865836, 431.9634968650001, 429.23019622500004, 419.299810152, 423.977189452, 424.064562353, 416.11975075799995, 415.946666764, 415.86012476700006, 413.1745397339999, 436.553740138, 422.52478265999997, 414.626917452, 427.37701300500004, 415.2538858420001, 411.57146359200004, 412.3734765479999, 415.903284529, 421.683828572, 433.19844028000006, 430.50846461999987, 423.23395827099995, 422.655776196, 410.1235565729999, 418.457087403, 408.89094439799993, 415.86012476700006, 427.333261155, 438.84698206799993, 430.55239398, 422.7432547559999, 418.153248357, 421.596692961, 417.4583448119999, 414.71356297200003, 425.03637834599994, 432.88919817999994, 433.15439258, 424.77367879399986, 427.28928377999995, 412.3302729329999, 415.86012476700006, 421.50933335100007, 414.58381686, 415.6868183000001, 431.5662396249999, 430.77294653999996, 427.2453064050001, 418.1097471719999, 414.5404941000001, 413.5199788679999, 420.3628905059999, 424.423487696, 418.06624598699995, 437.6115636839998, 492.4411450999999, 415.86012476700006, 423.14658536999985, 415.7733602970001, 419.256249492, 423.75864489500003, 414.71356297200003, 419.2126888320001, 431.787089255, 429.27406641499994, 422.61226122, 421.55301315599985, 421.596692961, 416.96324485199995, 431.831077785, 415.903284529, 415.7733602970001, 428.47982295, 432.88919817999994, 418.19652645900004, 428.39174925000003, 426.051412245, 411.27011836800006, 423.75864489500003, 409.99452352500003], \"power_mean\": 422.14693262954, \"energy_millijoules\": 16002.5465176398, \"energy_joules\": 16.0025465176398, \"coremark_score\": 7917.238467, \"coremarks_per_mhz\": 7.7803050972877354, \"ulpmark_cm_score\": 18.747016274522707}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [428.08913207999996, 557.6118379299999, 431.16653830800004, 423.13710203200003, 418.497084012, 420.012553884, 428.93101876000003, 425.41719902000006, 428.88673889, 428.84234519, 425.77298082, 424.28627584699996, 420.838754402, 423.093303472, 424.28627584699996, 425.70686033999993, 420.838754402, 462.20769584000004, 423.15888900799996], \"power_mean\": 433.72533368863157, \"energy_millijoules\": 2168.626668443158, \"energy_joules\": 2.168626668443158}}, \"1209600\": {\"active\": {\"elapsed_sec\": 31.921953217, \"elapsed_ns\": 31921953217, \"power_samples\": [468.90262049999995, 468.35579624099995, 475.32950266000006, 468.4016793749999, 461.56609538000004, 464.500659085, 473.03685426, 466.10914992499994, 465.188596485, 462.48377917500005, 470.64820735099994, 474.275774853, 465.374554211, 464.95912695499993, 475.19031093200005, 463.90462533, 461.38327966, 468.5859214439999, 467.16353051599987, 510.73962869199994, 477.62215106, 464.8674805, 466.10914992499994, 476.4758268599999, 470.094292695, 466.06338513099996, 472.805541024, 467.11747034599995, 485.56015371899997, 480.924799188, 467.071646382, 465.971383741, 475.19031093200005, 463.58392506, 463.72133442, 474.04416485200005, 534.5268093479999, 479.8718431149999, 466.0173844360001, 462.62101041499994, 456.61354447699995, 469.40964355600005, 457.895911968, 467.7571868999999, 466.10914992499994, 474.04416485200005, 472.89801877200006, 472.89801877200006, 460.74401134, 463.72133442, 473.95156845900004, 464.82153947499995, 465.971383741, 469.363701252, 469.54794410000005, 470.2327713590001, 468.35579624099995, 472.89801877200006, 458.032430144, 465.971383741, 462.52936626499996, 467.3014748199999, 469.31752213199997, 473.95156845900004, 479.63874831599986, 462.4379571, 461.33775174, 464.08789664500006, 479.82536789299996, 489.62619236999984, 457.7593937919999, 472.805541024, 476.24362332900006, 479.5455583089999, 486.1895347199999, 462.62101041499994, 463.90462533, 467.11747034599995, 469.31752213199997, 462.8512319999999, 479.59227309399984, 477.296698436, 484.2226201559999, 470.41748861799994, 464.91342152499993, 466.15515062000003, 464.54660011000004, 467.071646382, 470.4634900920001, 464.77583404499995, 471.655756122, 476.4758268599999, 468.21767381699993, 464.82153947499995, 467.25541464999986, 464.72989302, 471.655756122, 475.1438342420001, 467.57318134199994, 471.56339740799984, 480.55132471199994, 465.92561894700003, 464.77583404499995, 468.35579624099995, 463.5382787999999, 455.6038570979999, 470.325011428, 477.3896507639999, 471.7018167659999, 478.3492969960001, 464.31713057999997, 477.3896507639999, 475.00488085600006, 472.851661032, 460.14602118, 476.24362332900006, 478.48902308399994, 474.35539890599995, 476.01141979799996, 470.37125002299996, 467.02558621199995, 471.56339740799984, 469.087100164, 464.6841875899999, 485.4193577429999, 477.3896507639999], \"power_mean\": 470.56682505514283, \"energy_millijoules\": 15021.412174882493, \"energy_joules\": 15.021412174882492, \"coremark_score\": 9402.914904, \"coremarks_per_mhz\": 7.77357382936508, \"ulpmark_cm_score\": 19.971491129285038}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [425.35125666, 422.98403168, 432.22626551400003, 417.301169112, 423.071516496, 427.67126647500004, 421.81343377499996, 423.00593095999994, 432.248640984, 418.432210956, 428.75378544999995, 426.50019288, 429.8803467000001, 428.82026217, 429.9247452150001, 429.96925786500003, 425.35125666, 434.569007844, 423.02771793600004], \"power_mean\": 426.36327870168424, \"energy_millijoules\": 2131.8163935084212, \"energy_joules\": 2.131816393508421}}, \"1363200\": {\"active\": {\"elapsed_sec\": 28.301695094, \"elapsed_ns\": 28301695094, \"power_samples\": [540.4584617599999, 550.5289912759999, 556.257644626, 544.64651796, 585.439507332, 538.9645531079998, 552.719405956, 555.010629396, 542.4013882679999, 552.6186183899999, 551.5235891699999, 557.30560894, 549.9755770319998, 540.0106831349999, 541.4053050759999, 553.865017676, 538.9645531079998, 549.2788146919997, 550.3780366199999, 544.096370882, 547.037817012, 547.0880427719999, 544.6963678120001, 544.996494756, 552.66914172, 541.1561762099998, 541.4053050759999, 553.7135286600001, 549.12803874, 553.8146942699998, 551.42266146, 543.9463074100001, 537.918440918, 550.4281825159999, 548.0328903750001, 545.942312102, 549.22872816, 554.85896226, 559.038191955, 557.204346405, 543.5009654099999, 543.7006414440002, 543.6008034270001, 545.1409378569999, 560.7424441000001, 549.17838345, 557.1030838700001, 561.4301080350001, 553.764111465, 540.0106831349999, 554.9096045399999, 540.0106831349999, 545.5916626329999, 546.6870093959999, 549.027607498, 549.4221627879999, 553.461133433, 548.0328903750001, 544.4463476779999, 556.055097615, 544.59641115, 545.6418289179999, 546.23575026, 546.7872033479998, 549.12803874, 564.9711888220002, 545.5417536109999, 544.8407119359999, 556.055097615, 546.8873973, 542.1022313189999, 552.6186183899999, 545.5417536109999, 560.4882673099999, 556.849797375, 554.7579374039999, 541.1062480199998, 550.1265316879999, 545.7419042249999, 538.7160177719998, 558.3498394799999, 559.292332905, 606.9928703979999, 555.953954114, 547.932577778, 538.86519006, 549.3717584079998, 550.227081964, 550.32763224, 552.4673074939999, 560.43758869, 549.027607498, 551.2717874729999, 548.8267450139999, 543.351080058, 547.932577778, 545.491587326, 540.1101648279998, 551.811799674, 547.932577778, 562.935567495, 546.636783636, 545.7419042249999, 548.9775209659999, 554.85896226, 537.870793284, 543.6008034270001, 542.052243654, 545.6418289179999, 552.66914172, 553.6126224489999, 550.227081964], \"power_mean\": 549.776127411125, \"energy_millijoules\": 15559.596327949756, \"energy_joules\": 15.559596327949755, \"coremark_score\": 10606.703437, \"coremarks_per_mhz\": 7.7807390236208915, \"ulpmark_cm_score\": 19.28070585360296}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [427.62699172500004, 426.4340724, 419.882206986, 421.90068099599995, 428.7315886, 425.32923823500005, 435.605349725, 501.38508248799997, 431.03287122, 424.15474853499995, 414.93895856000006, 433.37514225900003, 427.49450805, 420.70829581, 433.37514225900003, 426.4561503, 433.35282236499995, 432.248640984, 427.604967875], \"power_mean\": 431.1388136511579, \"energy_millijoules\": 2155.6940682557893, \"energy_joules\": 2.1556940682557895}}, \"1516800\": {\"active\": {\"elapsed_sec\": 25.431086136, \"elapsed_ns\": 25431086136, \"power_samples\": [608.4614924359998, 607.099629778, 597.7253361699998, 600.3852747630001, 602.7851955040001, 612.16444194, 619.5929637009999, 623.3018454749999, 621.115845948, 608.9660150159998, 615.2825474669999, 611.7363245490001, 609.446407119, 610.644924144, 614.922422332, 615.0676377259999, 607.2061154160001, 616.3737692520001, 616.5889165880001, 612.8812832639999, 618.5561327659998, 611.3618249429999, 620.953842012, 620.8997482319999, 624.2301118599999, 607.312601054, 622.0484609099999, 608.3548877639998, 602.7320537139999, 616.319913372, 613.8118461849997, 653.5132027899999, 620.8459318559999, 615.2450052439999, 616.212477796, 611.7363245490001, 600.226478739, 609.3931826369999, 608.194843732, 605.7950430249998, 618.6098308019998, 624.2843842599998, 609.446407119, 605.954730233, 615.1214341309999, 609.9500394040001, 606.9928703979999, 615.174954657, 604.969339776, 610.5380821819999, 619.7010323109998, 610.698482454, 613.4899769209999, 611.7363245490001, 610.484523872, 612.8278812719998, 612.8278812719998, 611.308207158, 617.4112332209997, 622.9229110299998, 615.0676377259999, 608.3548877639998, 616.212477796, 610.591365834, 608.752294029, 618.502157936, 619.5929637009999, 621.9945851699997, 623.1394847149998, 616.212477796, 608.4083271239999, 606.8863847599998, 609.2329604849999, 618.5561327659998, 613.9190440819998, 615.1214341309999, 619.377380679, 624.3926507399999, 615.013841321, 608.4614924359998, 601.265214044, 616.1586219160001, 617.3573178659999, 617.4112332209997, 611.682981727, 617.1419329349999, 616.2663336759999, 613.8653073469998, 617.58624659, 612.7205267519996, 609.2329604849999, 620.5757403599998, 621.8324025299999, 609.2329604849999, 627.5597628399998, 610.6125507680001, 611.4687855499999, 619.4851721899997, 617.1958482899997, 605.848089803], \"power_mean\": 613.96232799156, \"energy_millijoules\": 15613.728847412445, \"energy_joules\": 15.613728847412446, \"coremark_score\": 11804.052725, \"coremarks_per_mhz\": 7.78220775646097, \"ulpmark_cm_score\": 19.21385999025575}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [432.092356932, 429.835948185, 434.411777616, 420.66473515, 430.98835367099997, 429.858090375, 428.70939175, 424.110831025, 426.34598724, 425.241390365, 426.30183144, 433.263197636, 425.241390365, 429.8803467000001, 422.96213240000003, 426.36795191999994, 428.70939175, 432.136993126, 426.34598724], \"power_mean\": 428.07726762557894, \"energy_millijoules\": 2140.3863381278948, \"energy_joules\": 2.140386338127895}}, \"1708800\": {\"active\": {\"elapsed_sec\": 22.585639105, \"elapsed_ns\": 22585639105, \"power_samples\": [722.0905878249998, 728.9594616479999, 731.371012934, 724.5014268519999, 728.7207791639999, 731.371012934, 718.6580266299998, 718.5399067799999, 727.874962328, 725.4080683439997, 727.994031727, 730.4149931359998, 722.0311976499997, 722.99728116, 731.072295123, 720.8280436199998, 731.1321614879998, 737.1527052239999, 735.4683263349998, 726.6114592479998, 727.874962328, 729.8647286340001, 718.4806950299999, 725.7188699139999, 720.8870700599998, 749.080471944, 736.8525035879998, 727.5768296939998, 727.636517439, 723.0567308100001, 730.0438420179999, 723.1161804599999, 733.420298328, 718.4214832799998, 729.138396912, 737.0386015199999, 734.3244955100001, 724.5014268519999, 726.3735577399998, 724.2044906039998, 721.79424608, 735.5284305999999, 719.8805779799998, 725.8837022609998, 730.0438420179999, 734.2647586419998, 731.191720846, 729.9968496019999, 725.2889307539999, 734.504321958, 735.5882266379997, 725.348499549, 725.8241334659999, 723.967063676, 726.3735577399998, 731.977215332, 732.0967597000001, 722.9381363800001, 724.0857771399999, 729.924535329, 730.773577312, 734.3845403, 725.051266536, 724.1449812839999, 728.542150296, 725.1700986449998, 727.82640924, 733.180664685, 727.3386908959999, 725.2889307539999, 743.4186819529998, 728.542150296, 725.22966744, 729.8647286340001, 724.0857771399999, 731.977215332, 731.251587211, 729.80522864, 727.9455972839999, 749.080471944, 734.3845403, 719.3289557600001, 734.504321958, 729.4470018720001, 726.3735577399998, 742.5124219929999, 733.300327698, 740.0473998999998, 743.5394131599999], \"power_mean\": 729.0297925248201, \"energy_millijoules\": 16465.60379075861, \"energy_joules\": 16.46560379075861, \"coremark_score\": 13291.980505, \"coremarks_per_mhz\": 7.778546643843633, \"ulpmark_cm_score\": 18.219799517365786}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [419.38604556199994, 430.921520127, 426.30183144, 426.30183144, 430.921520127, 420.53438825200004, 425.109505645, 420.621286184, 423.97941632199996, 421.682730942, 426.30183144, 430.87700257800003, 496.31877044800007, 429.74703702, 427.45023330000004, 422.831073632, 430.89920413199997, 426.34598724, 413.74746375300003], \"power_mean\": 428.9620357675789, \"energy_millijoules\": 2144.8101788378945, \"energy_joules\": 2.1448101788378944}}, \"1900800\": {\"active\": {\"elapsed_sec\": 20.297590357, \"elapsed_ns\": 20297590357, \"power_samples\": [874.2915460499999, 859.5525998089997, 860.4999759750001, 864.0624684679997, 866.2859675699999, 852.8437126139997, 854.7809323649999, 865.1391009899999, 874.3585650959999, 876.5102998949999, 876.5777833499999, 858.21010989, 859.818279807, 862.7193249599998, 852.49106628, 863.9291535, 865.1391009899999, 864.2043796649998, 876.7795415769999, 867.4290862199996, 863.99598234, 856.188959668, 870.7240703999998, 863.99598234, 865.2834644100001, 859.2865783199998, 869.64819711, 874.5603131520002, 856.9344480059999, 865.016015793, 865.2725346029999, 867.2950713, 862.7193249599998, 866.1520716, 879.6056087500001, 869.514288528, 873.686301882, 859.2865783199998, 863.7958385319998, 866.1520716, 862.5861286369998, 872.8122474040001, 867.2284074679999, 875.097890564, 876.4428164399999, 880.68064961, 859.1537383209998, 872.8122474040001, 864.6046805039998, 865.884966306, 859.0871475759998, 870.4560159460002, 871.665678868, 875.097890564, 873.8206854329999, 866.9607212559997, 862.519359272, 878.323894768, 861.4432475819997, 856.6689017069998, 868.1741699939998, 879.6729238400001, 872.6779824979999, 867.1614000079996, 862.519359272, 864.8718907469997, 866.9607212559997, 866.4256924599999, 857.8781359120001, 877.383533724, 879.5379466750001, 869.3800357079999, 864.882463146, 869.045092134, 866.8270499639998, 949.9993626739999, 867.027728716, 857.9443259959999, 876.1060913030001, 875.836849621], \"power_mean\": 868.1049595995374, \"energy_millijoules\": 17620.438856831446, \"energy_joules\": 17.620438856831445, \"coremark_score\": 14792.170011, \"coremarks_per_mhz\": 7.782075973800505, \"ulpmark_cm_score\": 17.025682642614203}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [424.02322122299995, 429.569328825, 420.53438825200004, 433.08406322900004, 425.06558171000006, 420.78897892199996, 435.42526554799997, 421.639051332, 425.04356328500006, 434.232168324, 419.599509472, 421.617323526, 429.702638505, 421.617323526, 425.04356328500006, 438.011497944, 423.935498812, 501.878251466, 429.65823999], \"power_mean\": 430.55102406189474, \"energy_millijoules\": 2152.7551203094736, \"energy_joules\": 2.1527551203094735}}, \"2016000\": {\"active\": {\"elapsed_sec\": 19.144663846, \"elapsed_ns\": 19144663846, \"power_samples\": [968.4290079119999, 954.7831510379999, 961.570468253, 964.2814682459998, 962.7845707260001, 965.1454915739998, 965.7835232499999, 960.1408227, 960.2842283279997, 968.4290079119999, 965.9997072019999, 969.430492686, 967.286542267, 973.85504932, 963.859145332, 972.6956635239999, 962.49728489, 976.2883182549997, 973.92765055, 976.0705300550001, 971.6430755000001, 970.3559423649999, 968.2124677199997, 968.3567042519999, 965.7835232499999, 955.56816549, 964.6413546749998, 965.9883698349997, 966.9979360100001, 965.9278926699999, 964.569599313, 962.209629792, 963.7870795719998, 963.4991860999999, 963.2018089589999, 964.4974740779999, 968.997054894, 963.4274899079999, 972.3508565129998, 966.985530228, 966.709329753, 984.9195887219998, 954.283125426, 959.997417072, 971.3535180839999, 962.0659868739999, 956.996620488, 973.5650167140002, 965.6395240079999, 977.06751216, 985.065606096, 967.8513202080001, 962.3532727099998, 973.3479576520001, 960.9956332469999, 966.6374560509998, 1015.7704536019999, 959.6387186759998, 979.9111181849999, 975.92546223, 958.568365354, 966.6374560509998, 967.8513202080001, 962.1376237019999, 965.567339298, 980.6392043549997, 966.4933381640001, 972.4955680139999, 971.2810358039999, 970.0669939429997, 964.3427904739999, 966.8538181229999, 970.0669939429997, 967.7793873359999, 969.069418224], \"power_mean\": 967.8731807479332, \"energy_millijoules\": 18529.60669097798, \"energy_joules\": 18.52960669097798, \"coremark_score\": 15683.814304, \"coremarks_per_mhz\": 7.779669793650793, \"ulpmark_cm_score\": 16.190305871201748}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [430.74333549, 428.39931883, 429.52493031, 428.33284210999994, 431.84668574600005, 432.97211860600004, 427.251451025, 418.08629538, 425.31025068, 428.51007542, 423.804084109, 433.03930839000003, 430.721019495, 427.62379504, 439.8855238820001, 423.825930255, 419.234222355, 430.6988179410001, 421.869302176], \"power_mean\": 427.98312143368423, \"energy_millijoules\": 2139.915607168421, \"energy_joules\": 2.139915607168421}}, \"2112000\": {\"active\": {\"elapsed_sec\": 18.272057754, \"elapsed_ns\": 18272057754, \"power_samples\": [1045.3233341, 1065.6553252919998, 1057.583135673, 1058.8784442959998, 1067.864796816, 1065.577903857, 1060.2548579159998, 1060.8576324199998, 1054.00515154, 1063.294753767, 1076.9231234699998, 1070.2034486759999, 1058.8784442959998, 1054.00515154, 1093.190701559, 1071.2895219509999, 1080.039434076, 1065.500482422, 1061.459179986, 1079.05402654, 1064.882302041, 1069.1611740219998, 1069.527865428, 1061.98299006, 1064.436328812, 1066.3366109239998, 1069.9153665699998, 1084.7610111649997, 1075.4705790599999, 1070.824005039, 1064.1096758229999, 1070.746684593, 1075.3926219599998, 1066.3366109239998, 1067.6325727199999, 1060.3953228359997, 1078.898155796, 1071.891585735, 1068.4643653229998, 1069.760445764, 1067.323205688, 1070.668965588, 1070.80467861, 1074.173905005, 1070.668965588, 1090.1576229089999, 1078.898155796, 1064.959723476, 1075.15915044, 1076.2225746349998, 1067.323205688, 1077.6750595699998, 1063.6642961239997, 1067.4778892040001, 1083.586928066, 1079.9612388809999, 1065.037144911, 1075.0815931199995, 1069.6827862339999, 1058.186445594, 1075.15915044, 1063.5095722039998, 1078.586013612, 1085.5929843689999, 1087.6398716309998, 1068.309165213, 1074.018109755, 1061.459179986, 1068.309165213, 1070.824005039, 1075.15915044, 1078.586013612], \"power_mean\": 1069.9254311309583, \"energy_millijoules\": 19549.739270098216, \"energy_joules\": 19.549739270098215, \"coremark_score\": 16432.053459, \"coremarks_per_mhz\": 7.780328342329545, \"ulpmark_cm_score\": 15.345473198144234}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [435.17763534700003, 508.971001902, 428.28844841, 429.45827547000005, 430.721019495, 427.20717627500005, 430.97564886, 423.804084109, 433.01687344500004, 432.927363767, 429.502673985, 504.27995903999994, 432.97211860600004, 429.480531795, 420.273471068, 426.08150532, 446.40670321799996, 422.74358881600006, 436.438156966], \"power_mean\": 438.3540124154737, \"energy_millijoules\": 2191.7700620773685, \"energy_joules\": 2.1917700620773686}}, \"2208000\": {\"active\": {\"elapsed_sec\": 17.4725339, \"elapsed_ns\": 17472533900, \"power_samples\": [1173.0959675049999, 1177.2474479399998, 1186.626651108, 1255.380774174, 1183.2044193479999, 1187.57193112, 1192.166368995, 1196.012446092, 1204.63598538, 1197.8732351249998, 1186.5428621429999, 1190.858120508, 1196.227526938, 1192.166368995, 1192.9708417479999, 1194.114968404, 1198.2099060669998, 1212.66235054, 1190.858120508, 1195.087257903, 1194.114968404, 1190.6064702360002, 1192.166368995, 1184.984389012, 1175.774722042, 1192.418197387, 1200.539087145, 1191.914540603, 1203.072879735, 1199.9484490349998, 1186.041417414, 1198.5080650079997, 1188.2419051059999, 1193.8627831879999, 1191.998627138, 1196.143202308, 1186.566754992, 1193.946988868, 1183.760760394, 1191.662712211, 1190.5224431759998, 1193.19043322, 1193.946988868, 1205.18425143, 1201.67917806, 1188.2419051059999, 1198.3396108919999, 1190.4384161159999, 1185.842320844, 1200.6236498699998, 1199.3952582269999, 1190.5224431759998, 1207.4682904079998, 1199.3107551719997, 1193.7790093319998, 1194.750629412, 1193.694803652, 1192.7188352359997, 1206.40882674, 1190.186765844, 1200.8346918999998, 1208.5234615529998, 1196.6940213499997, 1191.578625676, 1195.002992748, 1191.4949703539999, 1197.1994605019997, 1202.65033989, 1197.115076397], \"power_mean\": 1194.740946303087, \"energy_millijoules\": 20875.151685998764, \"energy_joules\": 20.875151685998762, \"coremark_score\": 17186.067828, \"coremarks_per_mhz\": 7.783545211956522, \"ulpmark_cm_score\": 14.37115305855305}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [425.13396714, 437.363406688, 430.520518863, 424.77979384500003, 435.11008932300007, 428.59187668500005, 427.09671645000003, 427.16301505000007, 421.39926147299997, 429.41387695500003, 426.234948175, 427.14087767500007, 422.503145952, 437.45398257600004, 425.99330693999997, 431.964386897, 428.28844841, 426.01538484, 431.73492314199996], \"power_mean\": 428.62641721468424, \"energy_millijoules\": 2143.1320860734213, \"energy_joules\": 2.1431320860734213}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm6150ac/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 250 ms\nBaseline power usage: 420 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 748 1017 1209 1363 1516 1593 1708\n\n 300:  1102     3.7 C/MHz    259 mW   70.5 J    4.3 I/mJ   272.2 s\n 576:  2126     3.7 C/MHz    282 mW   39.8 J    7.5 I/mJ   141.1 s\n 748:  2767     3.7 C/MHz    295 mW   32.0 J    9.4 I/mJ   108.4 s\n1017:  3764     3.7 C/MHz    319 mW   25.4 J   11.8 I/mJ    79.7 s\n1209:  4476     3.7 C/MHz    336 mW   22.5 J   13.3 I/mJ    67.0 s\n1363:  5046     3.7 C/MHz    353 mW   21.0 J   14.3 I/mJ    59.5 s\n1516:  5615     3.7 C/MHz    365 mW   19.5 J   15.4 I/mJ    53.4 s\n1593:  5901     3.7 C/MHz    372 mW   18.9 J   15.8 I/mJ    50.8 s\n1708:  6328     3.7 C/MHz    390 mW   18.5 J   16.2 I/mJ    47.4 s\n\n\n===== CPU 6 =====\nFrequencies: 300 652 768 979 1017 1209 1363 1516 1708 1900 2016 2112 2208\n\n 300:  2328     7.8 C/MHz    291 mW   37.5 J    8.0 I/mJ   128.9 s\n 652:  5075     7.8 C/MHz    347 mW   20.5 J   14.6 I/mJ    59.1 s\n 768:  5975     7.8 C/MHz    368 mW   18.5 J   16.3 I/mJ    50.2 s\n 979:  7614     7.8 C/MHz    414 mW   16.3 J   18.4 I/mJ    39.4 s\n1017:  7917     7.8 C/MHz    422 mW   16.0 J   18.7 I/mJ    37.9 s\n1209:  9403     7.8 C/MHz    471 mW   15.0 J   20.0 I/mJ    31.9 s\n1363: 10607     7.8 C/MHz    550 mW   15.6 J   19.3 I/mJ    28.3 s\n1516: 11804     7.8 C/MHz    614 mW   15.6 J   19.2 I/mJ    25.4 s\n1708: 13292     7.8 C/MHz    729 mW   16.5 J   18.2 I/mJ    22.6 s\n1900: 14792     7.8 C/MHz    868 mW   17.6 J   17.0 I/mJ    20.3 s\n2016: 15684     7.8 C/MHz    968 mW   18.5 J   16.2 I/mJ    19.1 s\n2112: 16432     7.8 C/MHz   1070 mW   19.5 J   15.3 I/mJ    18.3 s\n2208: 17186     7.8 C/MHz   1195 mW   20.9 J   14.4 I/mJ    17.5 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm6150ac/main/time_in_state",
    "content": "300000 13759\n652800 6757\n768000 5848\n979200 4787\n1017600 4636\n1209600 4030\n1363200 3676\n1516800 3373\n1708800 3096\n1900800 2868\n2016000 2741\n2112000 2666\n2208000 106494\n"
  },
  {
    "path": "results/sm6150ac/main/total_trans",
    "content": "15\n"
  },
  {
    "path": "results/sm6150ac/main/trans_table",
    "content": "   From  :    To\n         :    300000    652800    768000    979200   1017600   1209600   1363200   1516800   1708800   1900800   2016000   2112000   2208000 \n   300000:         0         1         0         0         0         0         0         0         0         0         0         0         1 \n   652800:         0         0         1         0         0         0         0         0         0         0         0         0         0 \n   768000:         0         0         0         1         0         0         0         0         0         0         0         0         0 \n   979200:         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1017600:         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1209600:         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1363200:         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1516800:         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1708800:         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  1900800:         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2016000:         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2112000:         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2208000:         2         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm6150ac/main/uptime.txt",
    "content": " 02:57:21 up 27 min,  load average: 1.85, 1.96, 2.10\n"
  },
  {
    "path": "results/sm6150ac/main/versions.txt",
    "content": "Kernel: Linux version 4.14.206-NetErnels (cyberknight777@cloud.drone.io) (aarch64-elf-gcc (Eva GCC) 12.0.0 20210627 (experimental), LLD 13.0.0) #84 SMP PREEMPT Sat Oct 9 11:21:01 UTC 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm6150ac/new/cmdline.txt",
    "content": "rcupdate.rcu_expedited=1 kpti=off rcu_nocbs=0-7 androidboot.hardware=qcom androidboot.memcg=1 androidboot.usbcontroller=a600000.dwc3 loop.max_part=7 lpm_levels.sleep_disabled=1 service_locator.enable=1 swiotlb=1 msm_rtb.filter=0x237 buildvariant=userdebug  androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.multisim_config=dsds androidboot.dp=0x0 androidboot.baseband=msm msm_drm.dsi_display0=dsi_panel_k7_38_0c_0a_fhdp_video_display: panel_info=1 androidboot.slot_suffix=_a rootwait ro init=/init androidboot.dtbo_idx=16 androidboot.dtb_idx=5 androidboot.force_normal_boot=1 androidboot.secureboot=1 androidboot.hwc=GLOBAL_K7A androidboot.hwversion=1.91.0 androidboot.hwlevel=MP androidboot.hwname=sunny androidboot.AdcVol1=1121 androidboot.AdcVol2=466 androidboot.product.hardware.sku=sunny\n"
  },
  {
    "path": "results/sm6150ac/new/cpufreq_stats/0/time_in_state",
    "content": "300000 97109\n576000 14955\n748800 11673\n1017600 8802\n1209600 7543\n1363200 6763\n1516800 6161\n1593600 5909\n1708800 5849\n"
  },
  {
    "path": "results/sm6150ac/new/cpufreq_stats/0/total_trans",
    "content": "12\n"
  },
  {
    "path": "results/sm6150ac/new/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    576000    748800   1017600   1209600   1363200   1516800   1593600   1708800 \n   300000:         0         1         0         0         0         0         0         0         1 \n   576000:         0         0         1         0         0         0         0         0         0 \n   748800:         0         0         0         1         0         0         0         0         0 \n  1017600:         0         0         0         0         1         0         0         0         0 \n  1209600:         0         0         0         0         0         1         0         0         0 \n  1363200:         0         0         0         0         0         0         1         0         0 \n  1516800:         0         0         0         0         0         0         0         1         1 \n  1593600:         0         0         0         0         0         0         0         0         1 \n  1708800:         2         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm6150ac/new/cpufreq_stats/6/time_in_state",
    "content": "300000 13762\n652800 6757\n768000 5873\n979200 4788\n1017600 4635\n1209600 4030\n1363200 3677\n1516800 3373\n1708800 3095\n1900800 2868\n2016000 2742\n2112000 2666\n2208000 106499\n"
  },
  {
    "path": "results/sm6150ac/new/cpufreq_stats/6/total_trans",
    "content": "15\n"
  },
  {
    "path": "results/sm6150ac/new/cpufreq_stats/6/trans_table",
    "content": "   From  :    To\n         :    300000    652800    768000    979200   1017600   1209600   1363200   1516800   1708800   1900800   2016000   2112000   2208000 \n   300000:         0         1         0         0         0         0         0         0         0         0         0         0         1 \n   652800:         0         0         1         0         0         0         0         0         0         0         0         0         0 \n   768000:         0         0         0         1         0         0         0         0         0         0         0         0         0 \n   979200:         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1017600:         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1209600:         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1363200:         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1516800:         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1708800:         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  1900800:         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2016000:         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2112000:         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2208000:         2         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm6150ac/new/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 14 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nHardware\t: Qualcomm Technologies, Inc SM6150\n"
  },
  {
    "path": "results/sm6150ac/new/device.txt",
    "content": "Model: IDP;\nCompatible: qcom,sm6150-idp;qcom,sm6150;qcom,idp;\n"
  },
  {
    "path": "results/sm6150ac/new/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Linux version 4.14.206-NetErnels (cyberknight777@cloud.drone.io) (aarch64-elf-gcc (Eva GCC) 12.0.0 20210627 (experimental), LLD 13.0.0) #151 SMP PREEMPT Sun Dec 12 12:12:21 UTC 2021\n[    0.000000] Boot CPU: AArch64 Processor [51df805e]\n[    0.000000] memblock_reserve: 0x7e657 setup_arch+0xac/0x4cc\n[    0.000000] Machine: Qualcomm Technologies, Inc. SM6150 PM6150 IDP\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff400000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fcc00000, size 40 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fc800000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node sdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f3c00000, size 140 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f2c00000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f2400000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085700000, size 6 MiB\n[    0.000000] OF: reserved mem: initialized node hyp_region@85700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085e00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node xbl_aop_mem@85e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085fff000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node sec_apps_region@85fff000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086000000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node smem@86000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086200000, size 73 MiB\n[    0.000000] OF: reserved mem: initialized node removed_region@86200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ab00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node camera_region@8ab00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b000000, size 132 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@8b000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093400000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region@93400000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093900000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_msa_region@93900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093b00000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_regions@93b00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000095900000, size 34 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region@95900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097b00000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ips_fw_region@0x97B00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097b10000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_gsi_region@0x97B10000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097b15000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@0x97B15000, compatible id removed-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x000000009e400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@0x9e400000, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000009f800000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_sec_regions@0x9f800000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 952488\n[    0.000000]   DMA zone: 6831 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 437160 pages, LIFO batch:31\n[    0.000000]   Normal zone: 8052 pages used for memmap\n[    0.000000]   Normal zone: 515328 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.1\n[    0.000000] random: fast init done\n[    0.000000] random: get_random_bytes called from start_kernel+0xa0/0x480 with crng_init=1\n[    0.000000] percpu: Embedded 22 pages/cpu s49432 r8192 d32488 u90112\n[    0.000000] pcpu-alloc: s49432 r8192 d32488 u90112 alloc=22*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] CPU features: detected: Hardware dirty bit management\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 937605\n[    0.000000] Kernel command line: rcupdate.rcu_expedited=1 kpti=off rcu_nocbs=0-7 androidboot.hardware=qcom androidboot.memcg=1 androidboot.usbcontroller=a600000.dwc3 loop.max_part=7 lpm_levels.sleep_disabled=1 service_locator.enable=1 swiotlb=1 msm_rtb.filter=0x237 buildvariant=userdebug  androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.multisim_config=dsds androidboot.dp=0x0 androidboot.baseband=msm msm_drm.dsi_display0=dsi_panel_k7_38_0c_0a_fhdp_video_display: panel_info=1 androidboot.slot_suffix=_a rootwait ro init=/init androidboot.dtbo_idx=16 androidboot.dtb_idx=5 androidboot.force_normal_boot=1 androidboot.secureboot=1 androidboot.hwc=GLOBAL_K7A androidboot.hwversion=1.91.0 androidboot.hwlevel=MP androidboot.hwname=sunny androidboot.AdcVol1=1121 androidboot.AdcVol2=466 androidboot.produc\n[    0.000000] get panel_info 1 from cmdline\n[    0.000000] board_id_hwversion_product_num : 1\n[    0.000000] board_id_hwversion_major_num : 91\n[    0.000000] board_id_hwversion_minor_num : 0\n[    0.000000] board_id_hwlevel : 9 (MP)\n[    0.000000] board_id_hwname : sunny\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off\n[    0.000000] software IO TLB: mapped [mem 0xfffbf000-0xfffff000] (0MB)\n[    0.000000] Memory: 3433200K/3809952K available (22014K kernel code, 2660K rwdata, 11312K rodata, 6144K init, 8269K bss, 155568K reserved, 221184K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000017a60000\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000015] clocksource: Switched to clocksource arch_sys_counter\n[    0.001749] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001764] pid_max: default: 32768 minimum: 301\n[    0.001872] Security Framework initialized\n[    0.001884] SELinux:  Initializing.\n[    0.001967] SELinux:  Starting in permissive mode\n[    0.002004] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.002016] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.014313] ASID allocator initialised with 65536 entries\n[    0.016424] Hierarchical SRCU implementation.\n[    0.021155] MSM Memory Dump base table set up\n[    0.021173] MSM Memory Dump apps data table set up\n[    0.023570] smp: Bringing up secondary CPUs ...\n[    0.033152] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000\n[    0.033194] CPU1: Booted secondary processor [51df805e]\n[    0.042927] GICv3: CPU2: found redistributor 200 region 0:0x0000000017aa0000\n[    0.042963] CPU2: Booted secondary processor [51df805e]\n[    0.052700] GICv3: CPU3: found redistributor 300 region 0:0x0000000017ac0000\n[    0.052730] CPU3: Booted secondary processor [51df805e]\n[    0.062550] GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000\n[    0.062580] CPU4: Booted secondary processor [51df805e]\n[    0.072499] GICv3: CPU5: found redistributor 500 region 0:0x0000000017b00000\n[    0.072527] CPU5: Booted secondary processor [51df805e]\n[    0.083291] CPU features: Unsupported CPU feature variation detected.\n[    0.083325] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000\n[    0.083375] CPU6: Booted secondary processor [51df804e]\n[    0.094028] GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000\n[    0.094083] CPU7: Booted secondary processor [51df804e]\n[    0.094366] smp: Brought up 1 node, 8 CPUs\n[    0.094395] SMP: Total of 8 processors activated.\n[    0.094400] CPU features: detected: GIC system register CPU interface\n[    0.094404] CPU features: detected: Privileged Access Never\n[    0.094407] CPU features: detected: User Access Override\n[    0.094410] CPU features: detected: 32-bit EL0 Support\n[    0.094956] CPU: All CPU(s) started at EL1\n[    0.095005] alternatives: patching kernel code\n[    0.096519] scm_enable_mem_protection: SCM call failed\n[    0.141219] Registered cp15_barrier emulation handler\n[    0.141262] Registered setend emulation handler\n[    0.141620] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.141644] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.148686] pinctrl core: initialized pinctrl subsystem\n[    0.149451] NET: Registered protocol family 16\n[    0.152312] schedtune: configured to support 6 boost groups\n[    0.154065] cpuidle: using governor menu\n[    0.154142] cpuidle: using governor qcom\n[    0.154258] NET: Registered protocol family 42\n[    0.161351] vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.161366] vdso32: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.161388] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.162656] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.163176] Failed to create IPC log0\n[    0.163184] Failed to create IPC log1\n[    0.163190] Failed to create IPC log2\n[    0.163196] Failed to create IPC log3\n[    0.163202] Failed to create IPC log4\n[    0.163368] exit: IPA_USB init success!\n[    0.163822] ramoops: dump_mem_sz=1048576,cxt->record_size=524288,cxt->size=4194304,cxt->console_size=1048576,cxt->ftrace_size=0,cxt->pmsg_size=2097152\n[    0.164242] pstore: using zlib compression\n[    0.165053] console [pstore0] enabled\n[    0.165140] pstore: Registered ramoops as persistent store backend\n[    0.165153] ramoops: attached 0x400000@0x9d800000, ecc: 0/0\n[    0.168606] unable to find DT imem DLOAD mode node\n[    0.169779] unable to find DT imem EDLOAD mode node\n[    0.170823] sps:sps is ready.\n[    0.172064] msm_watchdog 17c10000.qcom,wdt: wdog absent resource not present\n[    0.173625] msm_watchdog 17c10000.qcom,wdt: MSM Watchdog Initialized\n[    0.178633] platform 86d00000.qseecom: assigned reserved memory node qseecom_region@0x9e400000\n[    0.180008] spmi spmi-0: PMIC arbiter version v5 (0x50000000)\n[    0.180732] platform soc:qcom,smem: assigned reserved memory node smem@86000000\n[    0.181404] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.184313] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.187535] platform 62400000.qcom,lpass: assigned reserved memory node pil_adsp_region@95900000\n[    0.187739] platform 4080000.qcom,mss: assigned reserved memory node modem_region@8b000000\n[    0.187948] platform 8300000.qcom,turing: assigned reserved memory node cdsp_regions@93b00000\n[    0.188076] platform aae0000.qcom,venus: assigned reserved memory node pil_video_region@93400000\n[    0.188285] (NULL device *): msm_gsi_probe:4608 failed to create IPC log, continue...\n[    0.188890] platform soc:qcom,ipa_fws: assigned reserved memory node ips_fw_region@0x97B00000\n[    0.192688] sm6150-pinctrl 3000000.pinctrl: invalid resource\n[    0.196248] pm6150_s1_level: supplied by pm6150_s3_level\n[    0.196368] pm6150_s1_level_ao: supplied by pm6150_s3_level_ao\n[    0.224271] OF: amba_device_add() failed (-16) for /soc/cti@6867000\n[    0.239710] msm-sn-fuse 786134.snfuse: serial num: d84553bd buqingshuai\n[    0.239729] msm-sn-fuse 786134.snfuse: fuse state: 0x0,0x0,0x0 buqingshuai\n[    0.239742] msm-sn-fuse 786134.snfuse: SN interface initializedbuqingshuai\n[    0.263008] gpu_cx_gdsc: supplied by pm6150_s1_level\n[    0.263819] clk: clk_osm_read_lut: index=0 freq=300000000 virtual_corner=0 open_loop_voltage=588\n[    0.263837] clk: clk_osm_read_lut: index=1 freq=576000000 virtual_corner=1 open_loop_voltage=588\n[    0.263850] clk: clk_osm_read_lut: index=2 freq=806400000 virtual_corner=2 open_loop_voltage=636\n[    0.263864] clk: clk_osm_read_lut: index=3 freq=940800000 virtual_corner=3 open_loop_voltage=676\n[    0.263877] clk: clk_osm_read_lut: index=4 freq=1017600000 virtual_corner=4 open_loop_voltage=696\n[    0.263890] clk: clk_osm_read_lut: index=5 freq=1209600000 virtual_corner=5 open_loop_voltage=760\n[    0.263903] clk: clk_osm_read_lut: index=6 freq=1363200000 virtual_corner=6 open_loop_voltage=844\n[    0.263915] clk: clk_osm_read_lut: index=7 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.263928] clk: clk_osm_read_lut: index=8 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.263940] clk: clk_osm_read_lut: index=9 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.263952] clk: clk_osm_read_lut: index=10 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.263965] clk: clk_osm_read_lut: index=11 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.263978] clk: clk_osm_read_lut: index=12 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.263990] clk: clk_osm_read_lut: index=13 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264002] clk: clk_osm_read_lut: index=14 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264014] clk: clk_osm_read_lut: index=15 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264026] clk: clk_osm_read_lut: index=16 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264038] clk: clk_osm_read_lut: index=17 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264050] clk: clk_osm_read_lut: index=18 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264063] clk: clk_osm_read_lut: index=19 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264075] clk: clk_osm_read_lut: index=20 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264087] clk: clk_osm_read_lut: index=21 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264099] clk: clk_osm_read_lut: index=22 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264111] clk: clk_osm_read_lut: index=23 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264123] clk: clk_osm_read_lut: index=24 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264135] clk: clk_osm_read_lut: index=25 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264147] clk: clk_osm_read_lut: index=26 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264160] clk: clk_osm_read_lut: index=27 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264172] clk: clk_osm_read_lut: index=28 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264184] clk: clk_osm_read_lut: index=29 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264196] clk: clk_osm_read_lut: index=30 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264208] clk: clk_osm_read_lut: index=31 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264220] clk: clk_osm_read_lut: index=32 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264233] clk: clk_osm_read_lut: index=33 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264245] clk: clk_osm_read_lut: index=34 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264257] clk: clk_osm_read_lut: index=35 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264269] clk: clk_osm_read_lut: index=36 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264281] clk: clk_osm_read_lut: index=37 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264293] clk: clk_osm_read_lut: index=38 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264305] clk: clk_osm_read_lut: index=39 freq=1363200000 virtual_corner=7 open_loop_voltage=844\n[    0.264318] clk: clk_osm_read_lut: index=0 freq=300000000 virtual_corner=0 open_loop_voltage=588\n[    0.264331] clk: clk_osm_read_lut: index=1 freq=576000000 virtual_corner=1 open_loop_voltage=588\n[    0.264344] clk: clk_osm_read_lut: index=2 freq=748800000 virtual_corner=2 open_loop_voltage=588\n[    0.264356] clk: clk_osm_read_lut: index=3 freq=1017600000 virtual_corner=3 open_loop_voltage=664\n[    0.264369] clk: clk_osm_read_lut: index=4 freq=1209600000 virtual_corner=4 open_loop_voltage=728\n[    0.264381] clk: clk_osm_read_lut: index=5 freq=1363200000 virtual_corner=5 open_loop_voltage=744\n[    0.264393] clk: clk_osm_read_lut: index=6 freq=1516800000 virtual_corner=6 open_loop_voltage=772\n[    0.264405] clk: clk_osm_read_lut: index=7 freq=1593600000 virtual_corner=7 open_loop_voltage=804\n[    0.264418] clk: clk_osm_read_lut: index=8 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264430] clk: clk_osm_read_lut: index=9 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264442] clk: clk_osm_read_lut: index=10 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264454] clk: clk_osm_read_lut: index=11 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264466] clk: clk_osm_read_lut: index=12 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264478] clk: clk_osm_read_lut: index=13 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264490] clk: clk_osm_read_lut: index=14 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264502] clk: clk_osm_read_lut: index=15 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264514] clk: clk_osm_read_lut: index=16 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264526] clk: clk_osm_read_lut: index=17 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264538] clk: clk_osm_read_lut: index=18 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264550] clk: clk_osm_read_lut: index=19 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264562] clk: clk_osm_read_lut: index=20 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264574] clk: clk_osm_read_lut: index=21 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264586] clk: clk_osm_read_lut: index=22 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264597] clk: clk_osm_read_lut: index=23 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264609] clk: clk_osm_read_lut: index=24 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264621] clk: clk_osm_read_lut: index=25 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264634] clk: clk_osm_read_lut: index=26 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264645] clk: clk_osm_read_lut: index=27 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264657] clk: clk_osm_read_lut: index=28 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264669] clk: clk_osm_read_lut: index=29 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264681] clk: clk_osm_read_lut: index=30 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264692] clk: clk_osm_read_lut: index=31 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264705] clk: clk_osm_read_lut: index=32 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264716] clk: clk_osm_read_lut: index=33 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264729] clk: clk_osm_read_lut: index=34 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264740] clk: clk_osm_read_lut: index=35 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264752] clk: clk_osm_read_lut: index=36 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264764] clk: clk_osm_read_lut: index=37 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264777] clk: clk_osm_read_lut: index=38 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264788] clk: clk_osm_read_lut: index=39 freq=1708800000 virtual_corner=8 open_loop_voltage=856\n[    0.264801] clk: clk_osm_read_lut: index=0 freq=300000000 virtual_corner=0 open_loop_voltage=588\n[    0.264813] clk: clk_osm_read_lut: index=1 freq=652800000 virtual_corner=1 open_loop_voltage=588\n[    0.264825] clk: clk_osm_read_lut: index=2 freq=768000000 virtual_corner=2 open_loop_voltage=588\n[    0.264838] clk: clk_osm_read_lut: index=3 freq=979200000 virtual_corner=3 open_loop_voltage=624\n[    0.264849] clk: clk_osm_read_lut: index=4 freq=1017600000 virtual_corner=4 open_loop_voltage=632\n[    0.264862] clk: clk_osm_read_lut: index=5 freq=1209600000 virtual_corner=5 open_loop_voltage=664\n[    0.264874] clk: clk_osm_read_lut: index=6 freq=1363200000 virtual_corner=6 open_loop_voltage=716\n[    0.264886] clk: clk_osm_read_lut: index=7 freq=1516800000 virtual_corner=7 open_loop_voltage=772\n[    0.264898] clk: clk_osm_read_lut: index=8 freq=1708800000 virtual_corner=8 open_loop_voltage=832\n[    0.264909] clk: clk_osm_read_lut: index=9 freq=1900800000 virtual_corner=9 open_loop_voltage=896\n[    0.264922] clk: clk_osm_read_lut: index=10 freq=2016000000 virtual_corner=10 open_loop_voltage=928\n[    0.264935] clk: clk_osm_read_lut: index=11 freq=2112000000 virtual_corner=11 open_loop_voltage=960\n[    0.264949] clk: clk_osm_read_lut: index=12 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.264961] clk: clk_osm_read_lut: index=13 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.264973] clk: clk_osm_read_lut: index=14 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.264985] clk: clk_osm_read_lut: index=15 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.264997] clk: clk_osm_read_lut: index=16 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265008] clk: clk_osm_read_lut: index=17 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265020] clk: clk_osm_read_lut: index=18 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265032] clk: clk_osm_read_lut: index=19 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265043] clk: clk_osm_read_lut: index=20 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265055] clk: clk_osm_read_lut: index=21 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265067] clk: clk_osm_read_lut: index=22 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265078] clk: clk_osm_read_lut: index=23 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265090] clk: clk_osm_read_lut: index=24 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265102] clk: clk_osm_read_lut: index=25 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265113] clk: clk_osm_read_lut: index=26 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265125] clk: clk_osm_read_lut: index=27 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265137] clk: clk_osm_read_lut: index=28 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265148] clk: clk_osm_read_lut: index=29 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265160] clk: clk_osm_read_lut: index=30 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265171] clk: clk_osm_read_lut: index=31 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265183] clk: clk_osm_read_lut: index=32 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265195] clk: clk_osm_read_lut: index=33 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265206] clk: clk_osm_read_lut: index=34 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265218] clk: clk_osm_read_lut: index=35 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265229] clk: clk_osm_read_lut: index=36 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265241] clk: clk_osm_read_lut: index=37 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265253] clk: clk_osm_read_lut: index=38 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265265] clk: clk_osm_read_lut: index=39 freq=2208000000 virtual_corner=12 open_loop_voltage=1020\n[    0.265442] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu0\n[    0.265465] clk: add_opp: Set OPP pair (1708800000 Hz, 856000 uv) on cpu0\n[    0.265486] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu1\n[    0.265504] clk: add_opp: Set OPP pair (1708800000 Hz, 856000 uv) on cpu1\n[    0.265524] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu2\n[    0.265540] clk: add_opp: Set OPP pair (1708800000 Hz, 856000 uv) on cpu2\n[    0.265559] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu3\n[    0.265578] clk: add_opp: Set OPP pair (1708800000 Hz, 856000 uv) on cpu3\n[    0.265596] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu4\n[    0.265613] clk: add_opp: Set OPP pair (1708800000 Hz, 856000 uv) on cpu4\n[    0.265631] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu5\n[    0.265647] clk: add_opp: Set OPP pair (1708800000 Hz, 856000 uv) on cpu5\n[    0.265667] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu6\n[    0.265690] clk: add_opp: Set OPP pair (2208000000 Hz, 1020000 uv) on cpu6\n[    0.265711] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on cpu7\n[    0.265731] clk: add_opp: Set OPP pair (2208000000 Hz, 1020000 uv) on cpu7\n[    0.265982] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.265993] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on soc:qcom,cpu6-cpu-l3-lat\n[    0.266004] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.266014] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on 5000000.qcom,kgsl-3d0\n[    0.266047] clk: add_opp: Set OPP pair (1363200000 Hz, 844000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.266057] clk: add_opp: Set OPP pair (1363200000 Hz, 844000 uv) on soc:qcom,cpu6-cpu-l3-lat\n[    0.266067] clk: add_opp: Set OPP pair (1363200000 Hz, 844000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.266078] clk: add_opp: Set OPP pair (1363200000 Hz, 844000 uv) on 5000000.qcom,kgsl-3d0\n[    0.267087] sched-energy: Sched-energy-costs installed from DT\n[    0.268371] cpufreq: driver osm-cpufreq up and running\n[    0.268387] clk: clk_cpu_osm_driver_probe: OSM CPUFreq driver inited\n[    0.269147] cam_cc_bps_clk_src: set OPP pair(200000000 Hz: 65 uV) on ac6f000.qcom,bps\n[    0.269153] cam_cc_bps_clk_src: set OPP pair(600000000 Hz: 385 uV) on ac6f000.qcom,bps\n[    0.269194] cam_cc_cci_clk_src: set OPP pair(37500000 Hz: 65 uV) on ac4a000.qcom,cci\n[    0.269197] cam_cc_cci_clk_src: set OPP pair(100000000 Hz: 257 uV) on ac4a000.qcom,cci\n[    0.269251] cam_cc_csi0phytimer_clk_src: set OPP pair(100000000 Hz: 65 uV) on ac65000.qcom,csiphy\n[    0.269255] cam_cc_csi0phytimer_clk_src: set OPP pair(269333333 Hz: 193 uV) on ac65000.qcom,csiphy\n[    0.269291] cam_cc_csi1phytimer_clk_src: set OPP pair(100000000 Hz: 65 uV) on ac66000.qcom,csiphy\n[    0.269294] cam_cc_csi1phytimer_clk_src: set OPP pair(269333333 Hz: 193 uV) on ac66000.qcom,csiphy\n[    0.269331] cam_cc_csi2phytimer_clk_src: set OPP pair(100000000 Hz: 65 uV) on ac67000.qcom,csiphy\n[    0.269334] cam_cc_csi2phytimer_clk_src: set OPP pair(269333333 Hz: 193 uV) on ac67000.qcom,csiphy\n[    0.269447] cam_cc_icp_clk_src: set OPP pair(240000000 Hz: 65 uV) on ac00000.qcom,a5\n[    0.269452] cam_cc_icp_clk_src: set OPP pair(600000000 Hz: 385 uV) on ac00000.qcom,a5\n[    0.269539] cam_cc_ife_0_clk_src: set OPP pair(240000000 Hz: 65 uV) on acaf000.qcom,vfe0\n[    0.269543] cam_cc_ife_0_clk_src: set OPP pair(600000000 Hz: 385 uV) on acaf000.qcom,vfe0\n[    0.269610] cam_cc_ife_0_csid_clk_src: set OPP pair(100000000 Hz: 65 uV) on acb3000.qcom,csid0\n[    0.269615] cam_cc_ife_0_csid_clk_src: set OPP pair(540000000 Hz: 385 uV) on acb3000.qcom,csid0\n[    0.269703] cam_cc_ife_1_clk_src: set OPP pair(240000000 Hz: 65 uV) on acb6000.qcom,vfe1\n[    0.269707] cam_cc_ife_1_clk_src: set OPP pair(600000000 Hz: 385 uV) on acb6000.qcom,vfe1\n[    0.269785] cam_cc_ife_1_csid_clk_src: set OPP pair(100000000 Hz: 65 uV) on acba000.qcom,csid1\n[    0.269789] cam_cc_ife_1_csid_clk_src: set OPP pair(540000000 Hz: 385 uV) on acba000.qcom,csid1\n[    0.269871] cam_cc_ife_lite_clk_src: set OPP pair(240000000 Hz: 65 uV) on acc4000.qcom,vfe-lite\n[    0.269875] cam_cc_ife_lite_clk_src: set OPP pair(600000000 Hz: 385 uV) on acc4000.qcom,vfe-lite\n[    0.269963] cam_cc_ife_lite_csid_clk_src: set OPP pair(100000000 Hz: 65 uV) on acc8000.qcom,csid-lite\n[    0.269968] cam_cc_ife_lite_csid_clk_src: set OPP pair(540000000 Hz: 385 uV) on acc8000.qcom,csid-lite\n[    0.270133] cam_cc_ipe_0_clk_src: set OPP pair(240000000 Hz: 65 uV) on ac87000.qcom,ipe0\n[    0.270139] cam_cc_ipe_0_clk_src: set OPP pair(600000000 Hz: 385 uV) on ac87000.qcom,ipe0\n[    0.270639] cam_cc-sm6150 ad00000.qcom,camcc: Registered Camera CC clocks\n[    0.271285] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.272246] clk-rpmh soc:qcom,rpmhclk: Registered RPMh clocks\n[    0.272772] disp_cc-sm6150 af00000.qcom,dispcc: Registered Display CC clocks\n[    0.276864] gcc-sm6150 100000.qcom,gcc: Registered GCC clocks\n[    0.277694] gpu_cc_gx_gfx3d_clk_src: set OPP pair(290000000 Hz: 65 uV) on 5000000.qcom,kgsl-3d0\n[    0.277701] gpu_cc_gx_gfx3d_clk_src: set OPP pair(845000000 Hz: 385 uV) on 5000000.qcom,kgsl-3d0\n[    0.277704] gpu_cc_gx_gfx3d_clk_src: set OPP pair(895000000 Hz: 417 uV) on 5000000.qcom,kgsl-3d0\n[    0.277755] gpu_cc-sm6150 5090000.qcom,gpupcc: Registered GPU CC clocks\n[    0.278454] video_cc-sm6150 ab00000.qcom,videocc: Registered Video CC clocks\n[    0.280148] KPI: Bootloader start count = 57178\n[    0.280153] KPI: Bootloader end count = 264920\n[    0.280155] KPI: Bootloader load kernel count = 2033583998\n[    0.280158] KPI: Kernel MPM timestamp = 279141\n[    0.280160] KPI: Kernel MPM Clock frequency = 32768\n[    0.280168] socinfo_print: v0.15, id=355, ver=1.1, raw_id=149, raw_ver=1, hw_plat=34, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65576, pmic_die_revision=131072 foundry_id=3 serial_number=3628422077 num_pmics=2 chip_family=0x5c raw_device_family=0x6 raw_device_number=0x7 nproduct_id=0x40e num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xc ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.280218] Minidump: Enabled with max number of regions 200\n[    0.280637] Unable to find DT property: qcom,msm-imem-minidump-debug\n[    0.280656] Failed to setup PIL ipc logging\n[    0.280661] msm_bus_fabric_rpmh_init_driver\n[    0.280854] msm_bus: Probe started\n[    0.281018] msm_bus_device 1700000.ad-hoc-bus: Bus type is missing\n[    0.281040] msm_bus_device 1700000.ad-hoc-bus: Bus type is missing\n[    0.281045] msm_bus_device 1700000.ad-hoc-bus: Bus type is missing\n[    0.281064] msm_bus_device 1700000.ad-hoc-bus: Bus type is missing\n[    0.281573] msm_bus: DT Parsing complete\n[    0.283097] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.283147] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.283175] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.283221] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.287640] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_sensor_0_vana, deferring probe\n[    0.287655] reg-fixed-voltage 2.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_sensor_1_2_vana, deferring probe\n[    0.288137] arm-smmu 50a0000.kgsl-smmu: \tnon-coherent table walk\n[    0.288142] arm-smmu 50a0000.kgsl-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.288146] arm-smmu 50a0000.kgsl-smmu: \tstream matching with 4 register groups\n[    0.289165] register_client_adhoc:find path.src 161 dest 627\n[    0.289236] register_client_adhoc:Client handle 1 apps_smmu\n[    0.289339] arm-smmu 15000000.apps-smmu: \tnon-coherent table walk\n[    0.289344] arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.289347] arm-smmu 15000000.apps-smmu: \tstream matching with 68 register groups\n[    0.289967] register_client_adhoc:find path.src 161 dest 627\n[    0.290035] register_client_adhoc:Client handle 2 apps_smmu\n[    0.290110] register_client_adhoc:find path.src 161 dest 627\n[    0.290152] register_client_adhoc:Client handle 3 apps_smmu\n[    0.290214] register_client_adhoc:find path.src 22 dest 773\n[    0.290241] register_client_adhoc:Client handle 4 mnoc_hf_0_tbu\n[    0.290299] register_client_adhoc:find path.src 137 dest 772\n[    0.290324] register_client_adhoc:Client handle 5 mnoc_sf_0_tbu\n[    0.290376] register_client_adhoc:find path.src 161 dest 627\n[    0.290424] register_client_adhoc:Client handle 6 apps_smmu\n[    0.290481] register_client_adhoc:find path.src 161 dest 627\n[    0.290525] register_client_adhoc:Client handle 7 apps_smmu\n[    0.290870] qcom,qpnp-misc c440000.qcom,spmi:qcom,pm6150@0:qcom,misc@900: probe successful\n[    0.291193] SCSI subsystem initialized\n[    0.291228] usbcore: registered new interface driver usbfs\n[    0.291235] usbcore: registered new interface driver hub\n[    0.291327] usbcore: registered new device driver usb\n[    0.291501] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.291731] xiaomi_touch_probe enter\n[    0.291735] xiaomi_touch_parse_dt touch,name:xiaomi-touch\n[    0.291765] xiaomi_touch_probe over\n[    0.291862] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.291882] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.291968] input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800/input/input0\n[    0.292730] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150l@4:qcom,power-on@800: PMIC@SID4 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'cold' boot\n[    0.292749] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150l@4:qcom,power-on@800: PMIC@SID4: Power-off reason: Triggered from SOFT (Software)\n[    0.292892] media: Linux media interface: v0.10\n[    0.292899] Linux video capture interface: v2.00\n[    0.292914] pps_core: LinuxPPS API ver. 1 registered\n[    0.292916] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>\n[    0.292920] PTP clock support registered\n[    0.294069] thermal_sys: VIRTUAL-SENSOR board sensor: \n[    0.294073] board sensor: VIRTUAL-SENSOR\n[    0.294076] dsi-drm:[drm_register_client] drm_register_client,63\n[    0.295620] tsens_tm_probe : unable to create IPC Logging 0 for tsens 0x000000000c263000\n[    0.295622] tsens_tm_probe : unable to create IPC Logging 1 for tsens 0x000000000c263000\n[    0.295625] tsens_tm_probe : unable to create IPC Logging 2 for tsens 0x000000000c263000\n[    0.295996] EDAC MC: Ver: 3.0.0\n[    0.296775] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@0x9e400000\n[    0.296807] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.296834] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.296856] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.296914] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node sdsp_region\n[    0.296953] ION heap system created\n[    0.297066] ION heap qsecom created at 0x000000009e400000 with size 1400000\n[    0.297069] ION heap qsecom_ta created at 0x00000000f2c00000 with size 1000000\n[    0.297072] ION heap spss created at 0x00000000f2400000 with size 800000\n[    0.297074] ION heap secure_display created at 0x00000000f3c00000 with size 8c00000\n[    0.309266] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x9f800000, size 0x1e00000\n[    0.309272] ION heap secure_carveout created\n[    0.309275] ION heap secure_heap created\n[    0.309278] ION heap adsp created at 0x00000000fc800000 with size 400000\n[    0.309853] qupv3_geni_se 8c0000.qcom,qupv3_0_geni_se: geni_se_probe Failed to allocate log context\n[    0.310037] iommu: Adding device 8c0000.qcom,qupv3_0_geni_se:qcom,iommu_qupv3_0_geni_se_cb to group 0\n[    0.310089] qupv3_geni_se ac0000.qcom,qupv3_1_geni_se: geni_se_probe Failed to allocate log context\n[    0.310215] iommu: Adding device ac0000.qcom,qupv3_1_geni_se:qcom,iommu_qupv3_1_geni_se_cb to group 1\n[    0.310453] PMIC@SID0: PM6150 v2.0 options: 0, 0, 0, 0\n[    0.310532] PMIC@SID4: PM8150L v3.0 options: 0, 0, 0, 0\n[    0.311101] register_client_adhoc:find path.src 90 dest 512\n[    0.311240] register_client_adhoc:find path.src 90 dest 585\n[    0.311285] register_client_adhoc:find path.src 1 dest 676\n[    0.311354] register_client_adhoc:find path.src 143 dest 777\n[    0.311376] register_client_adhoc:Client handle 8 ipa\n[    0.313278] ipa ipa3_smp2p_probe:8830 fail to get smp2p clk resp bit -517\n[    0.313658] iommu: Adding device soc:ipa_smmu_ap to group 2\n[    0.313846] iommu: Adding device soc:ipa_smmu_wlan to group 3\n[    0.313986] iommu: Adding device soc:ipa_smmu_uc to group 4\n[    0.314931] ipa ipa3_smp2p_probe:8830 fail to get smp2p clk resp bit -517\n[    0.316285] Advanced Linux Sound Architecture Driver Initialized.\n[    0.316688] Bluetooth: Core ver 2.22\n[    0.316706] NET: Registered protocol family 31\n[    0.316711] Bluetooth: HCI device and connection manager initialized\n[    0.316722] Bluetooth: HCI socket layer initialized\n[    0.316729] Bluetooth: L2CAP socket layer initialized\n[    0.316738] Bluetooth: SCO socket layer initialized\n[    0.317168] NetLabel: Initializing\n[    0.317172] NetLabel:  domain hash size = 128\n[    0.317177] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\n[    0.317214] NetLabel:  unlabeled traffic allowed by default\n[    0.317273] pcie:pcie_init.\n[    0.318612] register_client_adhoc:find path.src 22 dest 512\n[    0.318833] register_client_adhoc:Client handle 9 bus-proxy-client\n[    0.320123] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=0 ldo_voltage=5500mV ncp_voltage=5500mV bst_voltage=5650mV\n[    0.320183] sched-energy energy-costs: cpu=0 eff=1024 [freq=300000 cap=82 power_d0=24] -> [freq=1804800 cap=467 power_d0=178]\n[    0.320187] sched-energy energy-costs: cpu=1 eff=1024 [freq=300000 cap=82 power_d0=24] -> [freq=1804800 cap=467 power_d0=178]\n[    0.320191] sched-energy energy-costs: cpu=2 eff=1024 [freq=300000 cap=82 power_d0=24] -> [freq=1804800 cap=467 power_d0=178]\n[    0.320194] sched-energy energy-costs: cpu=3 eff=1024 [freq=300000 cap=82 power_d0=24] -> [freq=1804800 cap=467 power_d0=178]\n[    0.320197] sched-energy energy-costs: cpu=4 eff=1024 [freq=300000 cap=82 power_d0=24] -> [freq=1804800 cap=467 power_d0=178]\n[    0.320201] sched-energy energy-costs: cpu=5 eff=1024 [freq=300000 cap=82 power_d0=24] -> [freq=1804800 cap=467 power_d0=178]\n[    0.320204] sched-energy energy-costs: cpu=6 eff=1740 [freq=300000 cap=140 power_d0=180] -> [freq=2208000 cap=1024 power_d0=2713]\n[    0.320207] sched-energy energy-costs: cpu=7 eff=1740 [freq=300000 cap=140 power_d0=180] -> [freq=2208000 cap=1024 power_d0=2713]\n[    0.320210] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.320314] gpu_gx_gdsc: supplied by pm6150_s1_level\n[    0.320348] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_sensor_0_vana, deferring probe\n[    0.320377] reg-fixed-voltage 2.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_sensor_1_2_vana, deferring probe\n[    0.320406] ipa ipa3_smp2p_probe:8830 fail to get smp2p clk resp bit -517\n[    0.320735] clocksource: Switched to clocksource arch_sys_counter\n[    0.337019] VFS: Disk quotas dquot_6.6.0\n[    0.337043] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.337569] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.337575] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.338248] dsi_pll_clock_register_14nm: Registered DSI PLL ndx=0 clocks successfully\n[    0.338392] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.338871] NET: Registered protocol family 2\n[    0.339059] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.339097] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.339214] TCP: Hash tables configured (established 32768 bind 32768)\n[    0.339272] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.339282] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.339342] NET: Registered protocol family 1\n[    0.339355] PCI: CLS 0 bytes, default 128\n[    0.339437] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_sensor_0_vana, deferring probe\n[    0.339473] reg-fixed-voltage 2.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_sensor_1_2_vana, deferring probe\n[    0.339512] ipa ipa3_smp2p_probe:8830 fail to get smp2p clk resp bit -517\n[    0.339640] Trying to unpack rootfs image as initramfs...\n[    0.460891] Freeing initrd memory: 7492K\n[    0.461894] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.466385] Initialise system trusted keyrings\n[    0.466479] workingset: timestamp_bits=45 max_order=20 bucket_order=0\n[    0.467317] exFAT: Version 1.2.9\n[    0.467475] Registering sdcardfs 0.1\n[    0.467523] fuse init (API version 7.26)\n[    0.467644] SELinux:  Registering netfilter hooks\n[    0.471742] Key type asymmetric registered\n[    0.471748] Asymmetric key parser 'x509' registered\n[    0.471773] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 241)\n[    0.471776] io scheduler noop registered\n[    0.471779] io scheduler deadline registered\n[    0.471793] io scheduler cfq registered (default)\n[    0.471796] io scheduler mq-deadline registered\n[    0.471798] io scheduler kyber registered\n[    0.477461] iommu: Adding device 800000.qcom,gpi-dma to group 5\n[    0.478162] iommu: Adding device a00000.qcom,gpi-dma to group 6\n[    0.480234] icnss: Unable to create log context\n[    0.480241] icnss: Unable to create log long context\n[    0.480422] iommu: Adding device 18800000.qcom,icnss to group 7\n[    0.480444] icnss: Recursive recovery allowed for WLAN\n[    0.481008] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.481067] icnss: Unable to create debugfs -19\n[    0.481094] icnss: Platform driver probed successfully\n[    0.481700] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.481814] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.481868] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.482230] register_client_adhoc:find path.src 125 dest 512\n[    0.482369] register_client_adhoc:Client handle 10 scm_pas\n[    0.482375] minidump-id not found for adsp\n[    0.482791] minidump-id not found for cdsp\n[    0.482990] register_client_adhoc:find path.src 63 dest 512\n[    0.483075] register_client_adhoc:Client handle 11 pil-venus\n[    0.483079] minidump-id not found for venus\n[    0.483086] subsys-pil-tz aae0000.qcom,venus: for venus segments only will be dumped.\n[    0.483099] subsys-pil-tz aae0000.qcom,venus: for md_venus segments only will be dumped.\n[    0.483159] minidump-id not found for ipa_fws\n[    0.483163] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    0.483173] subsys-pil-tz soc:qcom,ipa_fws: for md_ipa_fws segments only will be dumped.\n[    0.483279] minidump-id not found for a612_zap\n[    0.483283] subsys-pil-tz soc:qcom,kgsl-hyp: for a612_zap segments only will be dumped.\n[    0.483295] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a612_zap segments only will be dumped.\n[    0.484612] smp2p_sleepstate soc:qcom,smp2p_sleepstate: got smp2p-sleepstate-in irq 377\n[    0.485997] msm_geni_serial a8c000.qcom,qup_uart: Wakeup byte 0xfd\n[    0.486104] msm_geni_serial a8c000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    0.486111] msm_geni_serial a8c000.qcom,qup_uart: Failed to create dbg dir\n[    0.486114] msm_geni_serial a8c000.qcom,qup_uart: Err in Rx IPC Log\n[    0.486117] msm_geni_serial a8c000.qcom,qup_uart: Err in Tx IPC Log\n[    0.486119] msm_geni_serial a8c000.qcom,qup_uart: Err in Pwr IPC Log\n[    0.486122] msm_geni_serial a8c000.qcom,qup_uart: Err in Misc IPC Log\n[    0.486395] a8c000.qcom,qup_uart: ttyHS0 at MMIO 0xa8c000 (irq = 246, base_baud = 0) is a MSM\n[    0.486592] msm_geni_serial_init: Driver initialized\n[    0.487027] diag: Pcie registration initiated for id: 0\n[    0.487190] diag: diag_pcie_register: failed registering pcie channels\n[    0.487193] diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    0.487195] diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    0.492116] register_client_adhoc:find path.src 20003 dest 20515\n[    0.492177] register_client_adhoc:Client handle 12 disp_rsc_mnoc\n[    0.492190] register_client_adhoc:find path.src 20001 dest 20513\n[    0.492217] register_client_adhoc:Client handle 13 disp_rsc_llcc\n[    0.492226] register_client_adhoc:find path.src 20000 dest 20512\n[    0.492251] register_client_adhoc:Client handle 14 disp_rsc_ebi\n[    0.492420] [sde_rsc_hw:rsc_hw_init:714]: sde rsc init successfully done\n[    0.492454] [sde_rsc:sde_rsc_probe:1910]: sde rsc index:0 probed successfully\n[    0.492873] dsi_phy ae94400.qcom,mdss_dsi_phy0: ae94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    0.492892] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-0\n[    0.493206] drm_dsi_ctrl ae94000.qcom,mdss_dsi_ctrl0: ae94000.qcom,mdss_dsi_ctrl0 supply refgen not found, using dummy regulator\n[    0.493222] AXI: get_pdata(): Error: Client name not found\n[    0.493226] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.493228] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-0\n[    0.493492] msm-dsi-display:[dsi_display_parse_te_data] invalid vsync source selection\n[    0.493497] OF: graph: no port node found in /soc/qcom,dsi-display\n[    0.493510] msm-dsi-panel:[dsi_panel_get:3560] [LCD]dsi_panel_get:3560 Dispparam enabled.\n[    0.493513] msm-dsi-panel:[dsi_panel_get:3586] xy_coordinate_cmds->enabled:1\n[    0.493521] msm-dsi-panel:[dsi_panel_parse_triggers:1222] [k7 38 0c 0a video mode fhdp dsi panel] fallback to default te-pin-select\n[    0.493533] msm-dsi-panel:[dsi_panel_parse_panel_mode:1739] dsi_panel_parse_panel_mode: panel operating mode switch feature disabled\n[    0.493545] msm-dsi-panel:[dsi_panel_parse_qsync_caps:1422] [k7 38 0c 0a video mode fhdp dsi panel] qsync min fps not defined rc:-22\n[    0.493556] msm-dsi-panel:[dsi_panel_parse_reset_sequence:2200] RESET SEQ LENGTH = 16\n[    0.493577] msm-dsi-panel:[dsi_panel_parse_misc_features:2249] dsi_panel_parse_misc_features: ulps feature disabled\n[    0.493581] msm-dsi-panel:[dsi_panel_parse_misc_features:2255] dsi_panel_parse_misc_features: ulps during suspend feature disabled\n[    0.493590] msm-dsi-panel:[dsi_panel_parse_esd_config:3394] esd irq gpio is valid\n[    0.493600] msm-dsi-panel:[dsi_panel_parse_esd_config:3401] dsi_panel_parse_esd_config: Succeed to get esd irq GPIO26 (rc = 0)\n[    0.494274] iommu: Adding device ae00000.qcom,mdss_mdp to group 8\n[    0.494625] register_client_adhoc:find path.src 1 dest 590\n[    0.494733] register_client_adhoc:Client handle 15 mdss_reg\n[    0.494747] register_client_adhoc:find path.src 22 dest 512\n[    0.494813] register_client_adhoc:Client handle 16 mdss_sde\n[    0.494868] [drm:sde_dbg_init:5228] evtlog_status: enable:0, panic:1, dump:2\n[    0.494882] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops sde_rsc_comp_ops)\n[    0.494887] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops sde_wb_comp_ops)\n[    0.494995] msm-dsi-display:[dsi_display_bind] Successfully bind display panel 'dsi_panel_k7_38_0c_0a_fhdp_video_display'\n[    0.495154] genirq: irq_chip msmgpio-dc did not update eff. affinity mask of irq 184\n[    0.495181] msm-dsi-display:[dsi_display_whitepoint_create_sysfs] xinj:dsi_display_whitepoint_create_sysfs success\n[    0.495187] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display (ops dsi_display_comp_ops)\n[    0.495204] [drm] mapped mdp address space @        (ptrval)\n[    0.495240] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: vbif_nrt_phys\n[    0.495246] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: sid_phys\n[    0.495261] [drm:_sde_kms_get_splash_data:3311] splash mem num_regions:1\n[    0.495267] [drm:_sde_kms_get_splash_data:3344] splash mem for disp:1 add:9c000000 size:f00000\n[    0.495653] [drm:sde_kms_hw_init:3492] sde hardware revision:0x50030000\n[    0.496117] [drm] Created domain mdp_ns [80000000,80000000] secure=0\n[    0.497390] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 9\n[    0.497484] [drm] probing device qcom,smmu_sde_sec\n[    0.497490] [drm] Created domain mdp_s [80000000,80000000] secure=1\n[    0.499459] [drm:sde_connector_init:2352] sde_connector_init: Request esd irq succeed!\n[    0.499554] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    0.499677] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    0.500375] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    0.500379] [drm] No driver support for vblank timestamp query.\n[    0.500515] [drm] Initialized msm_drm 1.2.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    0.500550] msm-dsi-panel:[dsi_panel_parse_topology:3030] default topology: lm: 1 comp_enc:0 intf: 1\n[    0.500613] msm-dsi-panel:[dsi_panel_parse_partial_update_caps:3123] partial update disabled as the property is not set\n[    0.500679] dsi-ctrl:[_dsi_ctrl_setup_isr] [DSI_0] IRQ 378 registered\n[    0.585831] iommu: Adding device 50a0000.qcom,kgsl-iommu:gfx3d_user to group 10\n[    0.586112] iommu: Adding device 50a0000.qcom,kgsl-iommu:gfx3d_secure to group 11\n[    0.611146] brd: module loaded\n[    0.612867] loop: module loaded\n[    0.613567] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1400000\n[    0.613580] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.613583] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    0.613586] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    0.613593] AXI: get_pdata(): Error: Client name not found\n[    0.613596] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.613636] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    0.613991] QSEECOM: qseecom_probe: Unable to register bus client\n[    0.614523] fpc1020 Create proc entry success!\n[    0.614528] fpc1020 soc:fpc1020: fpc1020_probe: ok\n[    0.614572] fpc1020_init OK\n[    0.615050] sm6150-pinctrl 3000000.pinctrl: pin_config_group_set op failed for group 110\n[    0.615056] ant_check soc:ant_check: Error applying setting, reverse things back\n[    0.615068] Macle ant_probe\n[    0.615074] Macle irq_gpio=110\n[    0.615115] input: ant_check-input as /devices/virtual/input/input1\n[    0.615125] ant_probe: gpios = 0, gpion=0\n[    0.615143] Macle irq = 379\n[    0.615291] ant_probe end\n[    0.615536] sm6150-pinctrl 3000000.pinctrl: pin_config_group_set op failed for group 95\n[    0.615540] ant_check_div soc:ant_check_div: Error applying setting, reverse things back\n[    0.615554] Macle ant_div_probe\n[    0.615557] Macle irq_gpio=95\n[    0.615586] input: ant_div_check-input as /devices/virtual/input/input2\n[    0.615596] ant_div_probe: gpios = 0, gpion=0\n[    0.615598] Macle irq = 192\n[    0.615959] ant_div_probe end\n[    0.616185] iommu: Adding device 1de0000.qcedev to group 12\n[    0.616338] register_client_adhoc:find path.src 125 dest 512\n[    0.616477] register_client_adhoc:Client handle 17 qcedev-noc\n[    0.616616] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    0.617346] qce 1de0000.qcedev: QTI Crypto 5.4.1 device found @0x1de0000\n[    0.617356] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000001dc4000\n[    0.617357] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000001dc4000\n[    0.617360] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000001dc4000\n[    0.617363] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000001dc4000\n[    0.617365] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000001dc4000\n[    0.617368] sps:BAM 0x0000000001dc4000 is registered.\n[    0.617445] sps:BAM 0x0000000001dc4000 (va:0x        (ptrval)) enabled: ver:0x27, number of pipes:16\n[    0.617534] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 37\n[    0.620412] iommu: Adding device 1de0000.qcrypto to group 13\n[    0.620471] register_client_adhoc:find path.src 125 dest 512\n[    0.620600] register_client_adhoc:Client handle 18 qcrypto-noc\n[    0.620728] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    0.621263] qcrypto 1de0000.qcrypto: QTI Crypto 5.4.1 device found @0x1de0000\n[    0.621383] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 37\n[    0.623692] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    0.623791] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    0.623906] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    0.624019] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    0.624127] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    0.624219] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    0.624315] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    0.624410] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    0.624503] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    0.624598] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    0.624696] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    0.624794] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    0.624888] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    0.624982] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    0.625076] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    0.625168] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    0.625263] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    0.625354] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    0.625448] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    0.625544] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    0.625961] SCSI Media Changer driver v0.25 \n[    0.626634] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    0.626650] ufshcd-qcom 1d84000.ufshc: no vccq2-voltage-level property.\n[    0.627338] register_client_adhoc:find path.src 123 dest 512\n[    0.627701] register_client_adhoc:find path.src 1 dest 757\n[    0.627888] register_client_adhoc:Client handle 19 ufshc_mem\n[    0.627982] ufshcd-qcom 1d84000.ufshc: ufs_qcom_parse_reg_info: Unable to find qcom,vccq-parent-supply regulator, assuming enabled\n[    0.628859] scsi host0: ufshcd\n[    0.651276] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    0.652406] libphy: Fixed MDIO Bus: probed\n[    0.652526] tun: Universal TUN/TAP device driver, 1.6\n[    0.652565] sky2: driver version 1.30\n[    0.653077] PPP generic driver version 2.4.2\n[    0.653135] PPP BSD Compression module registered\n[    0.653141] PPP Deflate Compression module registered\n[    0.653172] PPP MPPE Compression module registered\n[    0.653178] NET: Registered protocol family 24\n[    0.653192] PPTP driver version 0.8.5\n[    0.653465] wcnss_pre_alloc_init: Failed to create debugfs dir\n[    0.653471] cnss_utils: Unable to create debugfs -19\n[    0.653476] CLD80211: Initializing\n[    0.653554] usbcore: registered new interface driver r8152\n[    0.653575] usbcore: registered new interface driver asix\n[    0.653647] usbcore: registered new interface driver ax88179_178a\n[    0.653667] usbcore: registered new interface driver cdc_ether\n[    0.653685] usbcore: registered new interface driver net1080\n[    0.653702] usbcore: registered new interface driver cdc_subset\n[    0.653720] usbcore: registered new interface driver zaurus\n[    0.653727] usbnet_init: Error getting ipc_log_ctxt\n[    0.653732] usbnet_init: Error getting ipc_log_ctxt\n[    0.653735] usbnet_init: Error getting ipc_log_ctxt\n[    0.653760] usbcore: registered new interface driver cdc_ncm\n[    0.657647] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.659158] msm-qusb-phy 88e2000.qusb: yangyangyang:phy-msm-qusb probe\n[    0.659263] msm-qusb-phy 88e2000.qusb: 88e2000.qusb supply USB3_GDSC not found, using dummy regulator\n[    0.659280] panel_info 1\n[    0.659436] msm-qusb-phy 88e3000.qusb: yangyangyang:phy-msm-qusb probe\n[    0.659484] msm-qusb-phy 88e3000.qusb: 88e3000.qusb supply USB3_GDSC not found, using dummy regulator\n[    0.659496] panel_info 1\n[    0.661140] iommu: Adding device a600000.ssusb to group 14\n[    0.663408] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    0.665575] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    0.665601] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    0.666102] register_client_adhoc:find path.src 61 dest 512\n[    0.666464] register_client_adhoc:find path.src 61 dest 676\n[    0.666633] register_client_adhoc:find path.src 1 dest 583\n[    0.666824] register_client_adhoc:Client handle 20 usb0\n[    0.668875] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.668888] ehci-pci: EHCI PCI platform driver\n[    0.668909] ehci-platform: EHCI generic platform driver\n[    0.669338] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    0.669344] ohci-pci: OHCI PCI platform driver\n[    0.669376] ohci-platform: OHCI generic platform driver\n[    0.670387] usbcore: registered new interface driver usb-storage\n[    0.670413] usbcore: registered new interface driver usb_ehset_test\n[    0.670431] usbcore: registered new interface driver lvs\n[    0.670930] fgsi_init: Err allocating ipc_log_ctxt\n[    0.671768] usbpd usbpd0: Could not get USB power_supply, deferring probe\n[    0.671955] usbpd_create error\n[    0.671963] qpnp-pdphy c440000.qcom,spmi:qcom,pm6150@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    0.672613] usbcore: registered new interface driver xpad\n[    0.672620] [LCT_TP_INFO] tp_info_init (line 227): init\n[    0.672629] [LCT_TP_SELFTEST] tp_selftest_init (line 200): create /proc/tp_selftest success\n[    0.672637] [LCT_TP_GESTURE] tp_gesture_init (line 204): init\n[    0.673020] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm6150@0:qcom,pm6150_rtc: rtc core: registered qpnp_rtc as rtc0\n[    0.673452] i2c /dev entries driver\n[    0.674573] i2c_geni 884000.i2c: Bus frequency is set to 400000Hz.\n[    0.675311] i2c_geni 88c000.i2c: Bus frequency is set to 400000Hz.\n[    0.675945] wl2866d_probe,enrty\n[    0.676192] wl2866d_init: en_gpio is 1264\n[    0.683246] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    0.690234] wl2866d_get_id:wl2866d id is 100\n[    0.710249] wl2866d_print_reg:wl2866d info is reg 3, value 100\n[    0.710439] wl2866d_print_reg:wl2866d info is reg 4, value 84\n[    0.710626] wl2866d_print_reg:wl2866d info is reg 5, value 129\n[    0.710812] wl2866d_print_reg:wl2866d info is reg 6, value 136\n[    0.710998] wl2866d_print_reg:wl2866d info is reg 14, value 15\n[    0.711184] wl2866d_print_reg:wl2866d info is reg 14, value 15\n[    0.711381] wl2866d_probe:ET5904/wl2866d ldo module info before is 0\n[    0.711686] wl2866d_probe:ET5904/wl2866d ldo module info after is 1\n[    0.711692] wl2866d_probe: ET5904/wl2866d ldo module info is ET5904\n[    0.711997] wl2866d_probe:ET5904/wl2866d ldo module info last is 0\n[    0.712002] wl2866d_probe,successfully\n[    0.712299] i2c_geni a84000.i2c: Bus frequency is set to 1000000Hz.\n[    0.713090] IR NEC protocol handler initialized\n[    0.713096] IR RC5(x/sz) protocol handler initialized\n[    0.713101] IR RC6 protocol handler initialized\n[    0.713105] IR JVC protocol handler initialized\n[    0.713110] IR Sony protocol handler initialized\n[    0.713114] IR SANYO protocol handler initialized\n[    0.713118] IR Sharp protocol handler initialized\n[    0.713122] IR MCE Keyboard/mouse protocol handler initialized\n[    0.713126] IR XMP protocol handler initialized\n[    0.714200] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-qos-lut : doesn't exist in device tree\n[    0.714209] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-danger-lut : doesn't exist in device tree\n[    0.714215] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-safe-lut : doesn't exist in device tree\n[    0.714277] register_client_adhoc:find path.src 1 dest 590\n[    0.714533] register_client_adhoc:Client handle 20 sde_reg\n[    0.715094] register_client_adhoc:find path.src 25 dest 512\n[    0.715285] register_client_adhoc:Client handle 21 mdss_rotator\n[    0.715301] register_client_adhoc:find path.src 1 dest 590\n[    0.715481] register_client_adhoc:Client handle 22 mdss_rot_reg\n[    0.715756] No change in context(0==0), skip\n[    0.718285] sde_rotator ae00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    0.719437] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 15\n[    0.719489] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    0.720261] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 16\n[    0.720289] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    0.720409] msm_vidc:  err: Failed to create debugfs for msm_vidc\n[    0.721777] msm_vidc:  err: Failed to create debugfs for msm_vidc\n[    0.722613] iommu: Adding device aa00000.qcom,vidc:non_secure_cb to group 17\n[    0.723299] iommu: Adding device aa00000.qcom,vidc:secure_bitstream_cb to group 18\n[    0.724624] iommu: Adding device aa00000.qcom,vidc:secure_pixel_cb to group 19\n[    0.725550] iommu: Adding device aa00000.qcom,vidc:secure_non_pixel_cb to group 20\n[    0.728650] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 21\n[    0.728866] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 22\n[    0.729147] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 23\n[    0.729203] platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node camera_region@8ab00000\n[    0.729516] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 24\n[    0.729717] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 25\n[    0.731109] register_client_adhoc:find path.src 1 dest 589\n[    0.731371] register_client_adhoc:Client handle 23 cam_ahb\n[    0.731545] register_client_adhoc:find path.src 136 dest 512\n[    0.731728] register_client_adhoc:Client handle 24 cam_hf_1_mnoc\n[    0.731864] register_client_adhoc:find path.src 146 dest 778\n[    0.731910] register_client_adhoc:Client handle 25 cam_hf_1_camnoc\n[    0.732013] register_client_adhoc:find path.src 145 dest 512\n[    0.732201] register_client_adhoc:Client handle 26 cam_hf_2_mnoc\n[    0.732328] register_client_adhoc:find path.src 147 dest 778\n[    0.732370] register_client_adhoc:Client handle 27 cam_hf_2_camnoc\n[    0.732470] register_client_adhoc:find path.src 137 dest 512\n[    0.732648] register_client_adhoc:Client handle 28 cam_sf_1_mnoc\n[    0.732764] register_client_adhoc:find path.src 148 dest 778\n[    0.732805] register_client_adhoc:Client handle 29 cam_sf_1_camnoc\n[    0.736539] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[13][cpas-cdm][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    0.739745] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1019 Invalid mux type: 0\n[    0.739756] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1019 Invalid mux type: 0\n[    0.739802] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1080 Inval_prms soc_info:        (ptrval) hw_intf:        (ptrval) hw_info        (ptrval)\n[    0.739809] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1083 controller:         (ptrval)\n[    0.739814] CAM_ERR: CAM-ISP: cam_vfe_core_init: 875 Error! RD cam_vfe_bus_init failed\n[    0.739950] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[7][ife][0] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    0.741650] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1019 Invalid mux type: 0\n[    0.741657] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1019 Invalid mux type: 0\n[    0.741691] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1080 Inval_prms soc_info:        (ptrval) hw_intf:        (ptrval) hw_info        (ptrval)\n[    0.741697] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1083 controller:         (ptrval)\n[    0.741703] CAM_ERR: CAM-ISP: cam_vfe_core_init: 875 Error! RD cam_vfe_bus_init failed\n[    0.741819] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[8][ife][1] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    0.743238] CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 524 No clk named ife_dsp_clk found. Dev vfe2\n[    0.743246] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 109 Option clk get failed with rc -14\n[    0.743394] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1019 Invalid mux type: 0\n[    0.743400] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1019 Invalid mux type: 0\n[    0.743532] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[9][ife][2] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    0.746107] CAM_INFO: CAM-ISP: cam_isp_dev_probe: 171 Camera ISP probe complete\n[    0.748152] CAM_INFO: CAM: cam_res_mgr_probe: 689 Disable shared gpio support.\n[    0.750548] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 428 Device Type :0\n[    0.752253] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    0.752296] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    0.752331] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    0.752372] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    0.762692] CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 170 Camera JPEG probe complete\n[    0.764848] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[18][lrmecpas][0] comp[7200000], comp_ab[7200000], uncomp[7200000]\n[    0.765486] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[12][cam-cdm-intf][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    0.766985] uvcvideo: Unable to create debugfs directory\n[    0.767027] usbcore: registered new interface driver uvcvideo\n[    0.767032] USB Video Class driver (1.1.1)\n[    0.767036] gspca_main: v2.14.0 registered\n[    0.768073] Couldn't parse device tree rc=-517\n[    0.768846] [bq2597x-STANDALONE]:bq2597x_get_work_mode:work mode:Standalone\n[    0.770124] [bq2597x-STANDALONE]:bq2597x_init_protection:enable bat ovp successfullly\n[    0.770437] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bat ocp successfullly\n[    0.770744] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bat ovp alarm successfullly\n[    0.771052] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bat ocp alarm successfullly\n[    0.771393] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bat ocp alarm successfullly\n[    0.771700] [bq2597x-STANDALONE]:bq2597x_init_protection:enable bus ovp alarm successfullly\n[    0.772006] [bq2597x-STANDALONE]:bq2597x_init_protection:enable bus ocp successfullly\n[    0.772313] [bq2597x-STANDALONE]:bq2597x_init_protection:enable bus ocp alarm successfullly\n[    0.772619] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bat therm successfullly\n[    0.772926] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bus therm successfullly\n[    0.773235] [bq2597x-STANDALONE]:bq2597x_init_protection:disable die therm successfullly\n[    0.773542] [bq2597x-STANDALONE]:bq2597x_init_protection:set bat ovp th 4550 successfully\n[    0.773849] [bq2597x-STANDALONE]:bq2597x_init_protection:set bat ovp alarm threshold 4450 successfully\n[    0.774156] [bq2597x-STANDALONE]:bq2597x_init_protection:set bat ocp threshold 0 successfully\n[    0.774462] [bq2597x-STANDALONE]:bq2597x_init_protection:set bat ocp alarm threshold 0 successfully\n[    0.774785] [bq2597x-STANDALONE]:bq2597x_init_protection:set bus ovp threshold 12000 successfully\n[    0.775092] [bq2597x-STANDALONE]:bq2597x_init_protection:set bus ovp alarm threshold 11000 successfully\n[    0.775398] [bq2597x-STANDALONE]:bq2597x_init_protection:set bus ocp threshold 3750 successfully\n[    0.775704] [bq2597x-STANDALONE]:bq2597x_init_protection:set bus ocp alarm th 3550 successfully\n[    0.776010] [bq2597x-STANDALONE]:bq2597x_init_protection:set bat ucp threshold 0 successfully\n[    0.776137] [bq2597x-STANDALONE]:bq2597x_init_protection:set die therm threshold 21 successfully\n[    0.776265] [bq2597x-STANDALONE]:bq2597x_init_protection:set bus therm threshold 21 successfully\n[    0.776570] [bq2597x-STANDALONE]:bq2597x_init_protection:set die therm threshold 145 successfully\n[    0.776878] [bq2597x-STANDALONE]:bq2597x_init_protection:set ac ovp threshold 14 successfully\n[    0.783041] [bq2597x-STANDALONE]:bq2597x_psy_register:bq2597x-standalone power supply register successfully\n[    0.783047] [bq2597x] bq2597x_charger_probe: lct client->irq=144\n[    0.783550] [bq2597x-STANDALONE]:bq2597x_charger_interrupt:INT OCCURED\n[    0.784624] [bq2597x-STANDALONE]:bq2597x_charger_interrupt:INT OCCURED\n[    0.785618] [bq2597x-STANDALONE]:bq2597x_charger_info:charger info: vbat(3882), vbus(0), ibus(0)\n[    0.785693] [bq2597x-STANDALONE]:bq2597x_charger_probe:bq2597x probe successfully, Part Num:6\n               !\n[    0.785754] [Onewire] onewire_gpio_init: onewire gpio init entry.\n[    0.786453] [bq2597x-STANDALONE]:bq2597x_check_alarm_status:INT_FLAG =0x02\n[    0.786800] [Onewire] onewire_gpio_probe: onewire probe entry\n[    0.786812] [Onewire] onewire_gpio_parse_dt: ow_gpio: 108\n[    0.787050] [bq2597x-STANDALONE]:bq2597x_check_alarm_status:INT_STAT = 0X02\n[    0.787103] [Onewire] onewire_gpio_probe: onewire_gpio_level_addr is 3d6c004; onewire_gpio_cfg_addr is 3d6c000\n[    0.787106] [Onewire] onewire_gpio_probe: onewire_data->gpio_cfg_reg is b9f5000; onewire_data->gpio_in_out_reg is b9ed004\n[    0.787321] [ds28e16] ds28e16_init: ds28e16_init entry.\n[    0.787888] [ds28e16] get_random_number: randnum = 3506364519,seed_result = 9\n[    0.787897] [ds28e16] ds28e16_probe: ds28e16_probe entry.\n[    0.787899] [ds28e16] ds28e16_probe: platform_device is soc:maxim_ds28e16\n[    0.788123] [ds28e16] verify_psy_register: batt_verify power supply register successfully\n[    0.788152] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start ...\n[    0.788329] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[1, 1], pwr[FAST MODE, FAST MODE], rate = 2\n[    0.790284] [bq2597x-STANDALONE]:bq2597x_charger_info:charger info: vbat(3882), vbus(0), ibus(0)\n[    0.790595] ufshcd_get_max_icc_level: Couldn't find valid icc_level = 0\n[    0.790598] ufshcd_get_max_icc_level: Couldn't find valid icc_level = 0\n[    0.792391] [bq2597x-STANDALONE]:bq2597x_get_work_mode:work mode:Standalone\n[    0.795200] scsi 0:0:0:49488: Well-known LUN    MICRON   MT128GASAO4U21   0605 PQ: 0 ANSI: 6\n[    0.795993] [bq2597x-STANDALONE]:bq2597x_get_work_mode:work mode:Standalone\n[    0.799296] scsi 0:0:0:49456: Well-known LUN    MICRON   MT128GASAO4U21   0605 PQ: 0 ANSI: 6\n[    0.799911] scsi 0:0:0:49476: Well-known LUN    MICRON   MT128GASAO4U21   0605 PQ: 0 ANSI: 6\n[    0.800729] scsi 0:0:0:0: Direct-Access     MICRON   MT128GASAO4U21   0605 PQ: 0 ANSI: 6\n[    0.801257] scsi 0:0:0:1: Direct-Access     MICRON   MT128GASAO4U21   0605 PQ: 0 ANSI: 6\n[    0.801698] scsi 0:0:0:2: Direct-Access     MICRON   MT128GASAO4U21   0605 PQ: 0 ANSI: 6\n[    0.802127] scsi 0:0:0:3: Direct-Access     MICRON   MT128GASAO4U21   0605 PQ: 0 ANSI: 6\n[    0.802562] scsi 0:0:0:4: Direct-Access     MICRON   MT128GASAO4U21   0605 PQ: 0 ANSI: 6\n[    0.802998] scsi 0:0:0:5: Direct-Access     MICRON   MT128GASAO4U21   0605 PQ: 0 ANSI: 6\n[    0.804476] sd 0:0:0:0: [sda] Write Protect is off\n[    0.804485] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    0.804784] sd 0:0:0:1: [sdb] Write Protect is off\n[    0.804791] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    0.804949] sd 0:0:0:0: [sda] Optimal transfer size 131072 bytes\n[    0.805047] sd 0:0:0:2: [sdc] Write Protect is off\n[    0.805055] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    0.805244] sd 0:0:0:1: [sdb] Optimal transfer size 131072 bytes\n[    0.805333] sd 0:0:0:3: [sdd] Write Protect is off\n[    0.805341] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    0.805550] sd 0:0:0:2: [sdc] Optimal transfer size 131072 bytes\n[    0.805897] sd 0:0:0:4: [sde] Write Protect is off\n[    0.805905] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    0.805977] sd 0:0:0:3: [sdd] Optimal transfer size 131072 bytes\n[    0.806147] sd 0:0:0:5: [sdf] Write Protect is off\n[    0.806155] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    0.806467] sd 0:0:0:4: [sde] Optimal transfer size 131072 bytes\n[    0.806668] sd 0:0:0:5: [sdf] Optimal transfer size 131072 bytes\n[    0.808762]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17\n[    0.808897]  sdb: sdb1 sdb2\n[    0.809310]  sdd: sdd1 sdd2 sdd3\n[    0.809393]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5\n[    0.809507]  sdc: sdc1 sdc2\n[    0.809707]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51 sde52 sde53 sde54 sde55 sde56 sde57 sde58\n[    0.840941] [ds28e16] DS28E16_cmd_romid_pre: DS28E16_cmd_romid_pre done\n[    0.842242] [ds28e16] Read_RomID: RomID = 9f,71,24,4e,14,f0,04,bf\n[    0.842245] [ds28e16] Read_RomID: crc_low_first = bf\n[    0.842248] [ds28e16] Read_RomID: getian--mi_romid = 9f,71,24,4e,14,f0,04,bf\n[    0.842250] [ds28e16] Read_RomID: getian---Read_RomID22\n[    0.842253] [ds28e16] ds28el16_Read_RomID_retry: ds28el16_Read_RomID_retry success 0\n[    0.842255] [ds28e16] ds28el16_get_page_status_retry: read page status communication start... 0\n[    0.842258] [ds28e16] DS28E16_cmd_readStatus: getian--data = 00,d4,dc,e0,41,da,6e,80\n[    0.842261] [ds28e16] DS28E16_cmd_readStatus: getian--mi_status = 00,00,00,00,00,00,00,00\n[    0.842264] [ds28e16] DS28E16_standard_cmd_flow: DS28E16_standard_cmd_flow start\n[    0.894751] [ds28e16] DS28E16_standard_cmd_flow: DS28E16_standard_cmd_flow success!\n[    0.894754] [ds28e16] DS28E16_cmd_readStatus: getian--data = 02,00,08,03,02,00,a0,b8\n[    0.894757] [ds28e16] DS28E16_cmd_readStatus: getian--mi_status = 02,00,08,03,02,00,a0,b8\n[    0.894759] [ds28e16] DS28E16_cmd_readStatus: getian---DS28E16_cmd_readStatus11\n[    0.894762] [ds28e16] DS28E16_standard_cmd_flow: DS28E16_standard_cmd_flow start\n[    1.001120] [ds28e16] DS28E16_standard_cmd_flow: DS28E16_standard_cmd_flow success!\n[    1.001124] [ds28e16] DS28E16_cmd_computeReadPageAuthentication: computeReadPageAuthen:\n[    1.001126] [ds28e16] DS28E16_standard_cmd_flow: DS28E16_standard_cmd_flow start\n[    1.111634] [ds28e16] DS28E16_standard_cmd_flow: DS28E16_standard_cmd_flow success!\n[    1.111637] [ds28e16] ds28el16_get_page_data_retry: read page data communication start... 0\n[    1.111640] [ds28e16] DS28E16_cmd_readMemory: DS28E16_cmd_readMemory write_buf:\n[    1.111643] [ds28e16] DS28E16_cmd_readMemory: 02 44 01\n[    1.111643] [ds28e16] DS28E16_standard_cmd_flow: DS28E16_standard_cmd_flow start\n[    1.167650] [ds28e16] DS28E16_standard_cmd_flow: DS28E16_standard_cmd_flow success!\n[    1.167653] [ds28e16] ds28el16_get_page_data_retry: page number is 1\n[    1.167655] [ds28e16] ds28el16_get_page_data_retry: flag_mi_counter is 0\n[    1.167666] [ds28e16] AuthenticateDS28E16: hmac is match. result=DS_TRUE\n[    1.170074] [ds28e16] verify_get_property: unsupported property 4\n[    1.170100] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start ...\n[    1.170105] [ds28e16] ds28el16_Read_RomID_retry: ds28el16_Read_RomID_retry success ...\n[    1.170115] [ds28e16] ds28el16_get_page_status_retry: read page status communication start... 0\n[    1.170123] [ds28e16] DS28E16_cmd_readStatus: getian--data = ff,ff,24,9f,3d,f7,80,ff\n[    1.170129] [ds28e16] DS28E16_cmd_readStatus: getian--mi_status = 02,00,08,03,02,00,a0,b8\n[    1.170134] [ds28e16] DS28E16_cmd_readStatus: getian---DS28E16_cmd_readStatus00\n[    1.170143] [ds28e16] ds28el16_get_page_data_retry: read page data communication start... 0\n[    1.170149] [ds28e16] ds28el16_get_page_data_retry: page number is 1\n[    1.170153] [ds28e16] ds28el16_get_page_data_retry: flag_mi_counter is 0\n[    1.170163] [ds28e16] verify_get_property: unsupported property 226\n[    1.170167] [ds28e16] verify_get_property: unsupported property 227\n[    1.170171] [ds28e16] verify_get_property: unsupported property 228\n[    1.170175] [ds28e16] verify_get_property: unsupported property 229\n[    1.170179] [ds28e16] verify_get_property: unsupported property 230\n[    1.170183] [ds28e16] ds28el16_get_page_data_retry: read page data communication start... 0\n[    1.170188] [ds28e16] DS28E16_cmd_readMemory: DS28E16_cmd_readMemory write_buf:\n[    1.170193] [ds28e16] DS28E16_cmd_readMemory: 02 44 00\n[    1.170195] [ds28e16] DS28E16_standard_cmd_flow: DS28E16_standard_cmd_flow start\n[    1.196197] device-mapper: uevent: version 1.0.3\n[    1.196257] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com\n[    1.196590] bt_dt_parse_vreg_info: qca,bt-vdd-vl: is not provided in device tree\n[    1.196595] bt_dt_parse_vreg_info: qca,bt-vdd-vm: is not provided in device tree\n[    1.196598] bt_dt_parse_vreg_info: qca,bt-vdd-5c: is not provided in device tree\n[    1.196600] bt_dt_parse_vreg_info: qca,bt-vdd-5a: is not provided in device tree\n[    1.196603] bt_dt_parse_vreg_info: qca,bt-vdd-vh: is not provided in device tree\n[    1.196605] bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    1.196608] bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    1.196616] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    1.196618] bt_dt_parse_vreg_info: qca,bt-vdd-s5: is not provided in device tree\n[    1.196621] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in devicetree\n[    1.196624] bt_power_populate_dt_pinfo: bt-swctrl-gpio not entered in devicetree\n[    1.196626] bt_power_populate_dt_pinfo: bt-3P3-gpio not provided in devicetree\n[    1.196629] bt_power_populate_dt_pinfo: bt-1P3-gpio not provided in devicetree\n[    1.196631] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.196634] bt_power_populate_dt_pinfo: clock not provided in device tree\n[    1.197091] EDAC DEVICE0: Giving out device to module soc:kryo-erp controller cache: DEV soc:kryo-erp (INTERRUPT)\n[    1.197879] sdhci: Secure Digital Host Controller Interface driver\n[    1.197883] sdhci: Copyright(c) Pierre Ossman\n[    1.197885] sdhci-pltfm: SDHCI platform and OF driver helper\n[    1.198019] qcom,tri-led c440000.qcom,spmi:qcom,pm6150l@5:qcom,leds@d000: enter qpnp_tri_led_hw_init\n[    1.198043] qcom,tri-led c440000.qcom,spmi:qcom,pm6150l@5:qcom,leds@d000: enter qpnp_tri_led_register\n[    1.198091] qcom,tri-led c440000.qcom,spmi:qcom,pm6150l@5:qcom,leds@d000: enter qpnp_tri_white_led_register\n[    1.198926] qpnp_vibrator_pwm_probe: vib---qpnp_vibrator_pwm_probe\n[    1.198934] vib---vib,en-gpio=112\n[    1.198938] chip->label=vib1 \n[    1.198963] vib---Vibrator PWM successfully registered: overdrive = enabled\n[    1.199210] usbcore: registered new interface driver usbhid\n[    1.199212] usbhid: USB HID core driver\n[    1.199254] ashmem: initialized\n[    1.199276] wlan_hdd_state wlan major(502) initialized\n[    1.200271] register_client_adhoc:find path.src 81 dest 512\n[    1.200654] register_client_adhoc:find path.src 1 dest 608\n[    1.200846] register_client_adhoc:Client handle 30 sdhc2\n[    1.212770] mmc0: SDHCI controller on 8804000.sdhci [8804000.sdhci] using 64-bit ADMA in legacy mode\n[    1.226215] [ds28e16] DS28E16_standard_cmd_flow: DS28E16_standard_cmd_flow success!\n[    1.226224] [ds28e16] ds28el16_get_page_data_retry: page number is 0\n[    1.226229] [ds28e16] ds28el16_get_page_data_retry: flag_mi_counter is 0\n[    1.226244] [ds28e16] ds28el16_get_page_data_retry: read page data communication start... 0\n[    1.226249] [ds28e16] ds28el16_get_page_data_retry: page number is 1\n[    1.226253] [ds28e16] ds28el16_get_page_data_retry: flag_mi_counter is 0\n[    1.226263] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start ...\n[    1.226268] [ds28e16] ds28el16_Read_RomID_retry: ds28el16_Read_RomID_retry success ...\n[    1.226275] [ds28e16] verify_get_property: getian---POWER_SUPPLY_PROP_CHIP_OK\n[    1.226279] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start ...\n[    1.226283] [ds28e16] ds28el16_Read_RomID_retry: ds28el16_Read_RomID_retry success ...\n[    1.226288] [ds28e16] verify_get_property: getian---flag_mi_romid: 1, flag_mi_status: 1\n[    1.241654] bimc-bwmon 90b6300.qcom,cpu-cpu-llcc-bwmon: BW HWmon governor registered.\n[    1.241684] bimc-bwmon 90cd000.qcom,cpu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    1.242135] arm-memlat-mon soc:qcom,cpu0-cpu-l3-latmon: Memory Latency governor registered.\n[    1.242152] arm-memlat-mon soc:qcom,cpu6-cpu-l3-latmon: Memory Latency governor registered.\n[    1.242165] arm-memlat-mon soc:qcom,cpu0-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.242178] arm-memlat-mon soc:qcom,cpu6-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.242194] arm-memlat-mon soc:qcom,cpu0-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.242207] arm-memlat-mon soc:qcom,cpu6-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.242220] arm-memlat-mon soc:qcom,cpu0-computemon: Compute governor registered.\n[    1.242230] arm-memlat-mon soc:qcom,cpu6-computemon: Compute governor registered.\n[    1.242909] register_client_adhoc:find path.src 1 dest 770\n[    1.242966] register_client_adhoc:Client handle 31 soc:qcom,cpu-cpu-llcc-bw\n[    1.243353] register_client_adhoc:find path.src 129 dest 512\n[    1.243384] register_client_adhoc:Client handle 32 soc:qcom,cpu-llcc-ddr-bw\n[    1.243973] register_client_adhoc:find path.src 1 dest 770\n[    1.243996] register_client_adhoc:Client handle 33 soc:qcom,cpu0-cpu-llcc-lat\n[    1.244100] register_client_adhoc:find path.src 1 dest 770\n[    1.244127] register_client_adhoc:Client handle 34 soc:qcom,cpu6-cpu-llcc-lat\n[    1.244231] register_client_adhoc:find path.src 129 dest 512\n[    1.244254] register_client_adhoc:Client handle 35 soc:qcom,cpu0-llcc-ddr-lat\n[    1.244364] register_client_adhoc:find path.src 129 dest 512\n[    1.244386] register_client_adhoc:Client handle 36 soc:qcom,cpu6-llcc-ddr-lat\n[    1.244496] register_client_adhoc:find path.src 129 dest 512\n[    1.244519] register_client_adhoc:Client handle 37 soc:qcom,cpu0-cpu-ddr-latfloor\n[    1.244628] register_client_adhoc:find path.src 129 dest 512\n[    1.244650] register_client_adhoc:Client handle 38 soc:qcom,cpu6-cpu-ddr-latfloor\n[    1.244756] register_client_adhoc:find path.src 1 dest 627\n[    1.244830] register_client_adhoc:Client handle 39 soc:qcom,snoc_cnoc_keepalive\n[    1.245011] register_client_adhoc:find path.src 26 dest 512\n[    1.245060] register_client_adhoc:Client handle 40 soc:qcom,gpubw\n[    1.246807] qcom-llcc-pmu 90cc000.llcc-pmu: Registered llcc_pmu, type: 8\n[    1.247337] usbcore: registered new interface driver snd-usb-audio\n[    1.247446] iommu: Adding device soc:usb_audio_qmi_dev to group 26\n[    1.250665] apr_probe: Unable to create ipc log context\n[    1.251844] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.251856] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.251928] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio53\" for function \"ter_mi2s\"\n[    1.251936] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio54\" for function \"ter_mi2s\"\n[    1.251941] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio55\" for function \"ter_mi2s\"\n[    1.251945] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio56\" for function \"ter_mi2s\"\n[    1.251950] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio53\" for function \"ter_mi2s\"\n[    1.251954] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio54\" for function \"ter_mi2s\"\n[    1.251959] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio55\" for function \"ter_mi2s\"\n[    1.251963] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio56\" for function \"ter_mi2s\"\n[    1.252004] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio53\" for function \"ter_mi2s\"\n[    1.252008] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio54\" for function \"ter_mi2s\"\n[    1.252013] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio55\" for function \"ter_mi2s\"\n[    1.252017] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio56\" for function \"ter_mi2s\"\n[    1.252021] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio53\" for function \"ter_mi2s\"\n[    1.252025] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio54\" for function \"ter_mi2s\"\n[    1.252030] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio55\" for function \"ter_mi2s\"\n[    1.252034] sm6150-pinctrl 3000000.pinctrl: invalid group \"gpio56\" for function \"ter_mi2s\"\n[    1.252063] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.252069] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.252074] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.252784] aw87xxx_pa_init enter, driver version: v0.1.14\n[    1.252964] aw87xxx_i2c_probe enter, dev_i2c2@0x5B\n[    1.252968] [2-005b]aw87xxx_parse_dt enter, dev_i2c2@0x5B\n[    1.252970] [2-005b]aw87xxx_parse_gpio_dt enter, dev_i2c2@0x5B\n[    1.252975] [2-005b]aw87xxx_parse_gpio_dt: reset gpio provided ok\n[    1.252978] [2-005b]aw87xxx_parse_monitor_dt enter, dev_i2c2@0x5B\n[    1.252980] [2-005b]aw87xxx_parse_monitor_dt: monitor-flag = 1\n[    1.252982] [2-005b]aw87xxx_parse_monitor_dt: monitor-timer-val = 3000\n[    1.252985] [2-005b]aw87xxx_parse_monitor_dt: monitor-timer-count-max = 5\n[    1.252987] [2-005b]aw87xxx_parse_channel_dt enter, dev_i2c2@0x5B\n[    1.252990] [2-005b]aw87xxx_parse_channel_dt: pa_channel: 0\n[    1.252992] [2-005b]aw87xxx_int_to_str enter, dev_i2c2@0x5B, pa_channel: 0\n[    1.252995] [2-005b]aw87xxx_int_to_str: pa_channel: 0\n[    1.253003] [2-005b]aw87xxx_hw_reset enter, dev_i2c2@0x5B\n[    1.257009] [2-005b]aw87xxx_read_chipid enter, dev_i2c2@0x5B\n[    1.257206] [2-005b]aw87xxx_product_select enter, dev_i2c2@0x5B\n[    1.257209] [2-005b]aw87xxx_product_select: aw87559_i2c2@0x5B selected, chipid: 0x5A\n[    1.257212] [2-005b]aw87xxx_update_cfg_name: cfg_name: aw87xxx_pid_5a_off_0.bin\n[    1.257214] [2-005b]aw87xxx_update_cfg_name: cfg_name: aw87xxx_pid_5a_music_0.bin\n[    1.257216] [2-005b]aw87xxx_update_cfg_name: cfg_name: aw87xxx_pid_5a_voice_0.bin\n[    1.257218] [2-005b]aw87xxx_update_cfg_name: cfg_name: aw87xxx_pid_5a_fm_0.bin\n[    1.257220] [2-005b]aw87xxx_update_cfg_name: cfg_name: aw87xxx_pid_5a_rcv_0.bin\n[    1.257222] [2-005b]aw87xxx_update_cfg_name: dev_i2c2@0x5B, vmax_name: aw87xxx_vmax_0.bin\n[    1.257225] [2-005b]aw87xxx_read_chipid: find device chip id is (0x5a)\n[    1.257232] [aw87xxx_pa_2_5b]aw87xxx_cfg_init enter, aw87559_i2c2@0x5B\n[    1.257235] [aw87xxx_pa_2_5b]aw87xxx_hw_off enter\n[    1.259238] [aw87xxx_pa_2_5b]aw87xxx_monitor_init enter, dev_i2c2@0x5B\n[    1.259274] aw87xxx_i2c_probe enter, dev_i2c2@0x58\n[    1.259279] [2-0058]aw87xxx_parse_dt enter, dev_i2c2@0x58\n[    1.259281] [2-0058]aw87xxx_parse_gpio_dt enter, dev_i2c2@0x58\n[    1.259283] [2-0058]aw87xxx_parse_gpio_dt: no reset gpio provided, hardware reset unavailable\n[    1.259285] [2-0058]aw87xxx_parse_monitor_dt enter, dev_i2c2@0x58\n[    1.259287] [2-0058]aw87xxx_parse_monitor_dt: monitor-flag = 1\n[    1.259289] [2-0058]aw87xxx_parse_monitor_dt: monitor-timer-val = 3000\n[    1.259291] [2-0058]aw87xxx_parse_monitor_dt: monitor-timer-count-max = 5\n[    1.259293] [2-0058]aw87xxx_parse_channel_dt enter, dev_i2c2@0x58\n[    1.259296] [2-0058]aw87xxx_parse_channel_dt: pa_channel: 1\n[    1.259298] [2-0058]aw87xxx_int_to_str enter, dev_i2c2@0x58, pa_channel: 1\n[    1.259300] [2-0058]aw87xxx_int_to_str: pa_channel: 1\n[    1.259301] [2-0058]aw87xxx_hw_reset enter, dev_i2c2@0x58\n[    1.259304] [2-0058]aw87xxx_read_chipid enter, dev_i2c2@0x58\n[    1.259495] [2-0058]aw87xxx_product_select enter, dev_i2c2@0x58\n[    1.259498] [2-0058]aw87xxx_product_select: aw87359_i2c2@0x58 selected, chipid: 0x59\n[    1.259500] [2-0058]aw87xxx_update_cfg_name: cfg_name: aw87xxx_pid_59_off_1.bin\n[    1.259502] [2-0058]aw87xxx_update_cfg_name: cfg_name: aw87xxx_pid_59_music_1.bin\n[    1.259504] [2-0058]aw87xxx_update_cfg_name: cfg_name: aw87xxx_pid_59_voice_1.bin\n[    1.259506] [2-0058]aw87xxx_update_cfg_name: cfg_name: aw87xxx_pid_59_fm_1.bin\n[    1.259508] [2-0058]aw87xxx_update_cfg_name: cfg_name: aw87xxx_pid_59_rcv_1.bin\n[    1.259510] [2-0058]aw87xxx_update_cfg_name: dev_i2c2@0x58, vmax_name: aw87xxx_vmax_1.bin\n[    1.259512] [2-0058]aw87xxx_read_chipid: find device chip id is (0x59)\n[    1.259517] [aw87xxx_pa_2_58]aw87xxx_cfg_init enter, aw87359_i2c2@0x58\n[    1.259519] [aw87xxx_pa_2_58]aw87xxx_hw_off enter\n[    1.259521] [aw87xxx_pa_2_58]aw87xxx_hw_off: aw873x9 hw always enabled!!!\n[    1.259523] [aw87xxx_pa_2_58]aw87xxx_monitor_init enter, dev_i2c2@0x58\n[    1.260533] msm-dai-q6-hdmi soc:qcom,msm-dai-q6-hdmi_ms: invalid device ID 24578\n[    1.260758] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: msm_auxpcm_dev_probe: invalid DT intf name senary\n[    1.265954] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: group id not supported 0x9150\n[    1.265962] msm-dai-tdm: probe of soc:qcom,msm-dai-tdm-sen-rx failed with error -22\n[    1.265970] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: group id not supported 0x9151\n[    1.265973] msm-dai-tdm: probe of soc:qcom,msm-dai-tdm-sen-tx failed with error -22\n[    1.271191] rmnet_perf_init(): initializing rmnet_perf\n[    1.271196] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = lo\n[    1.271198] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = bond0\n[    1.271201] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = dummy0\n[    1.271204] rmnet_shs_module_init(): Starting rmnet SHS module\n[    1.271285] GACT probability NOT on\n[    1.271292] Mirror/redirect action on\n[    1.271297] u32 classifier\n[    1.271299]     Actions configured\n[    1.271304] Netfilter messages via NETLINK v0.30.\n[    1.271373] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    1.271410] ctnetlink v0.93: registering with nfnetlink.\n[    1.271499] xt_time: kernel timezone is -0000\n[    1.271535] wireguard: WireGuard 1.0.20210606 loaded. See www.wireguard.com for information.\n[    1.271537] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    1.271585] gre: GRE over IPv4 demultiplexor driver\n[    1.271587] IPv4 over IPsec tunneling driver\n[    1.271660] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip_vti0\n[    1.271728] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    1.272229] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    1.272372] Initializing XFRM netlink socket\n[    1.272380] IPsec XFRM device driver\n[    1.272443] NET: Registered protocol family 10\n[    1.272789] Segment Routing with IPv6\n[    1.272810] mip6: Mobile IPv6\n[    1.272817] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    1.273223] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6_vti0\n[    1.273278] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    1.273315] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = sit0\n[    1.273384] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6tnl0\n[    1.273424] NET: Registered protocol family 17\n[    1.273429] NET: Registered protocol family 15\n[    1.273444] Bridge firewalling registered\n[    1.273447] Ebtables v2.0 registered\n[    1.273527] l2tp_core: L2TP core driver, V2.0\n[    1.273532] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    1.273534] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    1.273541] l2tp_netlink: L2TP netlink interface\n[    1.273550] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    1.273552] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    1.273580] sctp: Hash tables configured (bind 256/256)\n[    1.273997] camera_vana0_ldo: supplied by pm6150l_bob\n[    1.274235] camera_vana1_2_ldo: supplied by pm6150l_bob\n[    1.275558] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.276308] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.276311] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.276699] register_client_adhoc:find path.src 61 dest 512\n[    1.276821] register_client_adhoc:find path.src 61 dest 676\n[    1.276849] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    1.276857] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    1.276863] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    1.276868] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    1.276873] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    1.276878] sps:BAM 0x000000000a704000 is registered.\n[    1.276880] register_client_adhoc:find path.src 1 dest 583\n[    1.276943] register_client_adhoc:Client handle 41 usb0\n[    1.277349] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.277354] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    1.277357] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.277359] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    1.278353] usbpd usbpd0: Could not get USB power_supply, deferring probe\n[    1.278425] usbpd_create error\n[    1.278429] qpnp-pdphy c440000.qcom,spmi:qcom,pm6150@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.278735] QG-K: qg_parse_dt: size=96 dt.dec_rate_len=24 [0]=0 [end]=5\n[    1.293049] [ds28e16] verify_get_property: getian---POWER_SUPPLY_PROP_CHIP_OK\n[    1.293053] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start ...\n[    1.293055] [ds28e16] ds28el16_Read_RomID_retry: ds28el16_Read_RomID_retry success ...\n[    1.293058] [ds28e16] verify_get_property: getian---flag_mi_romid: 1, flag_mi_status: 1\n[    1.293060] [ds28e16] ds28el16_get_page_data_retry: read page data communication start... 0\n[    1.293062] [ds28e16] ds28el16_get_page_data_retry: page number is 0\n[    1.293064] [ds28e16] ds28el16_get_page_data_retry: flag_mi_counter is 0\n[    1.293067] of_batterydata_get_best_profile:  sunxing get best profile enter\n[    1.293069] of_batterydata_get_best_profile: sunxing test batt_id_kohm 100\n[    1.293073] of_batterydata_get_best_profile: m305-sunwoda-5000mah found\n[    1.293182] QG-K: qg_batterydata_init: QG Battery-profile loaded\n[    1.295981] QG-K: qg_determine_pon_soc: using SHUTDOWN_SOC @ PON ocv_uv=3933600uV soc=56\n[    1.296072] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    1.296764] QG-K: qpnp_qg_probe: QG initialized! battery_profile=m305-sunwoda-5000mah SOC=56 QG_subtype=4\n[    1.296944] lct six-pin-step-chg-cfg: 4250000uV, 6000000uA,six-pin-step-chg-cfg_2: 4250000uV, 6000000uA\n[    1.296946] lct six-pin-step-chg-cfg: 4450000uV, 5400000uA,six-pin-step-chg-cfg_2: 4450000uV, 5400000uA\n[    1.296949] lct six-pin-step-chg-cfg: 4470000uV, 3900000uA,six-pin-step-chg-cfg_2: 4470000uV, 3900000uA\n[    1.297806] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    1.297824] enter sysfs create file thermal\n[    1.298524] Couldn't get prop 4 rc = -22\n[    1.299173] [smblib_get_quick_charge_type] real_charger_type=0 pd_verifed=0 qc_class_ab=1\n[    1.299873] pm6150_charger: jeita_update_work: longcheer get battery type: m305-sunwoda-5000mah\n[    1.299878] of_batterydata_get_best_profile:  sunxing get best profile enter\n[    1.299880] of_batterydata_get_best_profile: sunxing test batt_id_kohm 100\n[    1.299883] of_batterydata_get_best_profile: m305-sunwoda-5000mah found\n[    1.300245] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start ...\n[    1.300251] [ds28e16] ds28el16_Read_RomID_retry: ds28el16_Read_RomID_retry success ...\n[    1.300260] [ds28e16] ds28el16_get_page_status_retry: read page status communication start... 0\n[    1.300266] [ds28e16] DS28E16_cmd_readStatus: getian--data = 00,00,70,5a,9b,f7,80,ff\n[    1.300272] [ds28e16] DS28E16_cmd_readStatus: getian--mi_status = 02,00,08,03,02,00,a0,b8\n[    1.300276] [ds28e16] DS28E16_cmd_readStatus: getian---DS28E16_cmd_readStatus00\n[    1.300284] [ds28e16] ds28el16_get_page_data_retry: read page data communication start... 0\n[    1.300289] [ds28e16] ds28el16_get_page_data_retry: page number is 0\n[    1.300293] [ds28e16] ds28el16_get_page_data_retry: flag_mi_counter is 0\n[    1.300302] [ds28e16] verify_get_property: getian---POWER_SUPPLY_PROP_CHIP_OK\n[    1.300305] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start ...\n[    1.300309] [ds28e16] ds28el16_Read_RomID_retry: ds28el16_Read_RomID_retry success ...\n[    1.300314] [ds28e16] verify_get_property: getian---flag_mi_romid: 1, flag_mi_status: 1\n[    1.300327] QG-K: qg_get_prop_soc_decimal: debug soc_dec=0 dec_rate=28 last_val=0 last_soc_dec=0 last_hal_soc=0\n[    1.300334] QG-K: qg_get_prop_soc_decimal: debug val=50 soc_dec=0 sys_soc=5600 dec_rate=28 soc=56 hal_soc=56 last_val=50 last_soc_dec=0 last_hal_soc=56\n[    1.301193] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.303938] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.304152] SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    1.304182] QPNP SMB5 probed successfully\n[    1.311043] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.311934] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.318127] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.320140] Couldn't get prop 4 rc = -22\n[    1.321928] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.323136] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.323937] [smblib_get_quick_charge_type] real_charger_type=0 pd_verifed=0 qc_class_ab=1\n[    1.326005] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.326093] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.326148] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.326201] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.326254] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.327780] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.328535] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.328538] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.328907] register_client_adhoc:find path.src 61 dest 512\n[    1.329023] register_client_adhoc:find path.src 61 dest 676\n[    1.329082] register_client_adhoc:find path.src 1 dest 583\n[    1.329116] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    1.329123] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    1.329129] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    1.329134] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    1.329139] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    1.329144] sps:BAM 0x000000000a704000 is registered.\n[    1.329146] register_client_adhoc:Client handle 41 usb0\n[    1.329601] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.329606] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    1.329609] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.329611] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    1.330687] usbpd usbpd0: usbpd_create\n[    1.330770] usbpd_create successfully:pd=f0a23000,g_pd=f0a23000\n[    1.330774] qpnp-pdphy c440000.qcom,spmi:qcom,pm6150@0:qcom,usb-pdphy@1700: usbpd_create success\n[    1.330955] i2c_geni 88c000.i2c: i2c error :-107\n[    1.331059] i2c_geni 88c000.i2c: i2c error :-107\n[    1.331156] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.331301] i2c_geni 88c000.i2c: i2c error :-107\n[    1.331403] i2c_geni 88c000.i2c: i2c error :-107\n[    1.331505] i2c_geni 88c000.i2c: i2c error :-107\n[    1.331607] i2c_geni 88c000.i2c: i2c error :-107\n[    1.331708] i2c_geni 88c000.i2c: i2c error :-107\n[    1.331810] i2c_geni 88c000.i2c: i2c error :-107\n[    1.331911] i2c_geni 88c000.i2c: i2c error :-107\n[    1.332013] i2c_geni 88c000.i2c: i2c error :-107\n[    1.332130] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.332251] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.332306] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.332359] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.332411] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.333752] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.334505] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.334508] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.334874] register_client_adhoc:find path.src 61 dest 512\n[    1.334992] register_client_adhoc:find path.src 61 dest 676\n[    1.335040] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    1.335047] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    1.335050] register_client_adhoc:find path.src 1 dest 583\n[    1.335053] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    1.335055] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    1.335058] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    1.335060] sps:BAM 0x000000000a704000 is registered.\n[    1.335122] register_client_adhoc:Client handle 41 usb0\n[    1.335270] msm-qusb-phy 88e2000.qusb: qusb_phy_dpdm_regulator_is_enabled qphy->dpdm_enable = 0\n[    1.335368] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.335437] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.335490] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.335541] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.335593] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.336292] input: fts_ts as /devices/platform/soc/884000.i2c/i2c-1/1-0038/input/input3\n[    1.336882] msm-qusb-phy 88e2000.qusb: qusb_phy_enable_power turn on regulators\n[    1.336955] msm-qusb-phy 88e2000.qusb: min_vol:925000 max_vol:975000\n[    1.337462] qusb_phy_enable_power(): QUSB PHY's regulators are turned ON.\n[    1.337470] msm-qusb-phy 88e2000.qusb: qusb_phy_enable_clocks(): on:1\n[    1.337556] msm-qusb-phy 88e2000.qusb: qusb_phy_init\n[    1.337733] Seq count:20\n[    1.337739] write 0xc8 to 0x80\n[    1.337743] write 0xb8 to 0x84\n[    1.337747] write 0x83 to 0x88\n[    1.337751] write 0xc7 to 0x8c\n[    1.337754] write 0x30 to 0x08\n[    1.337758] write 0x79 to 0x0c\n[    1.337762] write 0x21 to 0x10\n[    1.337765] write 0x14 to 0x9c\n[    1.337769] write 0x9f to 0x1c\n[    1.337773] write 0x00 to 0x18\n[    1.337777] yangyangyang:write 0xc8 to 0x80\n[    1.337781] yangyangyang:write 0xb8 to 0x84\n[    1.337784] yangyangyang:write 0x83 to 0x88\n[    1.337788] yangyangyang:write 0xc7 to 0x8c\n[    1.337792] yangyangyang:write 0x30 to 0x08\n[    1.337796] yangyangyang:write 0x79 to 0x0c\n[    1.337799] yangyangyang:write 0x21 to 0x10\n[    1.337803] yangyangyang:write 0x14 to 0x9c\n[    1.337807] yangyangyang:write 0x9f to 0x1c\n[    1.337810] yangyangyang:write 0x00 to 0x18\n[    1.337815] qusb_phy_get_tune2_param(): num_of_bits:4 bit_pos:25\n[    1.337821] qusb_phy_get_tune2_param(): efuse based tune2 value:12\n[    1.337826] qusb_phy_init(): Programming TUNE2 parameter as:c8\n[    1.337831] qusb_phy_init():userspecified modparams TUNEX val:0x0 0 0 0 0\n[    1.338015] msm-qusb-phy 88e2000.qusb: QUSB2PHY_PLL_STATUS:30\n[    1.339039] msm-qusb-phy 88e2000.qusb: qusb_phy_set_suspend: USB PHY is already suspended\n[    1.339070] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode\n[    1.339094] msm-qusb-phy 88e2000.qusb: qusb_phy_enable_clocks(): on:0\n[    1.339101] msm-qusb-phy 88e2000.qusb: qusb_phy_enable_power turn off regulators\n[    1.339145] msm-qusb-phy 88e2000.qusb: min_vol:0 max_vol:975000\n[    1.339150] msm-qusb-phy 88e2000.qusb: QUSB PHY's regulators are turned OFF.\n[    1.339212] qcom,rpmh-regulator soc:rpmh-regulator-ldoa4: TCS Busy, retrying RPMH message send\n[    1.339636] msm-dwc3 a600000.ssusb: DWC3 in low power mode\n[    1.340307] smblib_set_prop_system_temp_level val=0, chg->system_temp_level=0, LctThermal=0, lct_backlight_off= 0, IsInCall=0 \n                \n[    1.340313] smblib_set_prop_system_temp_level val=0, chg->system_temp_level=0, LctThermal=0, lct_backlight_off= 0, IsInCall=0 \n                \n[    1.341428] smblib_set_prop_system_temp_level val=0, chg->system_temp_level=0, LctThermal=0, lct_backlight_off= 0, IsInCall=0 \n                \n[    1.341440] smblib_set_prop_system_temp_level val=0, chg->system_temp_level=0, LctThermal=0, lct_backlight_off= 0, IsInCall=0 \n                \n[    1.341449] smblib_set_prop_system_temp_level val=0, chg->system_temp_level=0, LctThermal=0, lct_backlight_off= 0, IsInCall=0 \n                \n[    1.341457] smblib_set_prop_system_temp_level val=0, chg->system_temp_level=0, LctThermal=0, lct_backlight_off= 0, IsInCall=0 \n                \n[    1.342088] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.343913] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.346754] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.348581] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    1.425190] mmc0: new high speed SDHC card at address 1234\n[    1.425485] mmcblk0: mmc0:1234 SA16G 14.6 GiB \n[    1.426739]  mmcblk0: p1\n[    1.580475] [LCT_TP_INFO] init_lct_tp_info (line 79): init /proc/tp_info and /proc/tp_lockdown_info ...\n[    1.580488] [LCT_TP_INFO] init_lct_tp_info (line 102): done\n[    1.580494] [LCT_TP_GESTURE] init_lct_tp_gesture (line 79): Initialization tp_gesture node!\n[    1.580501] [LCT_TP_GESTURE] lct_creat_proc_tp_entry (line 131): /proc/tp_gesture is okay!\n[    1.580508] [LCT_TP_GRIP_AREA] init_lct_tp_grip_area (line 79): Initialization /proc/tp_grip_area node!\n[    1.580515] [LCT_TP_GRIP_AREA] init_lct_tp_grip_area (line 95): /proc/tp_grip_area is okay!\n[    1.580520] [LCT_TP_PALM] init_lct_tp_palm (line 79): Initialization tp_palm node!\n[    1.580527] [LCT_TP_PALM] lct_creat_proc_tp_entry (line 131): /proc/tp_palm is okay!\n[    1.581222] dsi-drm:[drm_register_client] drm_register_client,63\n[    1.581252] xiaomitouch_register_modedata\n[    1.581991] core_ctl: Creating CPU group 0\n[    1.581997] core_ctl: Init CPU0 state\n[    1.582001] core_ctl: Init CPU1 state\n[    1.582005] core_ctl: Init CPU2 state\n[    1.582009] core_ctl: Init CPU3 state\n[    1.582013] core_ctl: Init CPU4 state\n[    1.582016] core_ctl: Init CPU5 state\n[    1.582142] core_ctl: Creating CPU group 6\n[    1.582148] core_ctl: Init CPU6 state\n[    1.582152] core_ctl: Init CPU7 state\n[    1.582395] registered taskstats version 1\n[    1.582400] Loading compiled-in X.509 certificates\n[    1.584928] Loaded X.509 cert 'Build time autogenerated kernel key: 4a5f259a06a7e87c3d5c089078e69c4f12a0eda6'\n[    1.585259] zswap: loaded using pool lz4/zsmalloc\n[    1.585419] Key type ._fscrypt registered\n[    1.585424] Key type .fscrypt registered\n[    1.585428] Key type fscrypt-provisioning registered\n[    1.585810] Error: swapper/0: fastrpc_device_init: failed to create debugfs root dir\n[    1.586839] ADSPRPC: Secure VMID = 22\n[    1.586841] ADSPRPC: Secure VMID = 37\n[    1.587374] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 27\n[    1.588132] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 28\n[    1.588838] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 29\n[    1.589528] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 30\n[    1.590207] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 31\n[    1.590861] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 32\n[    1.591476] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 33\n[    1.600850] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 34\n[    1.601555] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 35\n[    1.602107] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 36\n[    1.602604] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13 to group 37\n[    1.605144] i2c_geni 88c000.i2c: i2c error :-107\n[    1.605250] i2c_geni 88c000.i2c: i2c error :-107\n[    1.605423] i2c_geni 88c000.i2c: i2c error :-107\n[    1.605523] i2c_geni 88c000.i2c: i2c error :-107\n[    1.605620] i2c_geni 88c000.i2c: i2c error :-107\n[    1.605788] i2c_geni 88c000.i2c: i2c error :-107\n[    1.607083] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.607273] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.607432] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.607590] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.607749] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.608181] vbswap: created vbswap device with size 2147483648\n[    1.608492] ngd_msm_ctrl 62e40000.slim: error creating ipc_logging context\n[    1.608500] ngd_msm_ctrl 62e40000.slim: error creating ipc_error_logging context\n[    1.608922] iommu: Adding device 62e40000.slim:qcom,iommu_slim_ctrl_cb to group 38\n[    1.609092] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.609250] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.609402] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.609557] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.609713] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.610999] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.611158] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.611310] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.611466] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.611621] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.613770] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input4\n[    1.614090] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.614264] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.614417] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.614573] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.614729] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.615470] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm6150@0:qcom,pm6150_rtc: setting system clock to 1970-09-23 02:43:12 UTC (22905792)\n[    1.616200] CAM_ERR: CAM-CCI: cam_cci_assign_fops: 499 Invalid dev node:        (ptrval) offset: 0\n[    1.616798] [USBPD-PM]: usbpd_pm_probe: usbpd_pm_probe enter\n[    1.616805] [USBPD-PM]: pd_policy_parse_dt: pm_config.bat_volt_lp_lmt:4450\n[    1.616811] [USBPD-PM]: pd_policy_parse_dt: pm_config.bat_curr_lp_lmt:6000\n[    1.616816] [USBPD-PM]: pd_policy_parse_dt: pm_config.bus_volt_lp_lmt:12000\n[    1.616821] [USBPD-PM]: pd_policy_parse_dt: pm_config.bus_curr_lp_lmt:3000\n[    1.616826] [USBPD-PM]: pd_policy_parse_dt: pm_config.bus_curr_compensate:100\n[    1.616831] [USBPD-PM]: pd_policy_parse_dt: pdpm->ffc_bat_volt_max:4470\n[    1.616843] [USBPD-PM]: usbpd_check_cp_sec_psy: cp_sec_psy not found\n[    1.617060] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.617228] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.617380] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.617536] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.617694] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.618876] [FC2-PM]: cp_qc30_probe: cp_qc30_probe enter\n[    1.618889] [FC2-PM]: cp_qc30_probe: charge pump qc3 probe\n[    1.619050] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.619210] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.619362] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.619518] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.619674] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.621255] lpm_levels: Cluster (L3) stats not registered\n[    1.621265] lpm_levels: register_cluster_lpm_stats()\n[    1.621269] lpm_levels: register_cluster_lpm_stats()\n[    1.622256] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.622453] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.622611] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.622770] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.622930] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.625456] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.625630] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.625786] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.625944] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.626103] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.628287] rmnet_ipa3 started initialization\n[    1.628560] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.628758] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.628916] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.629076] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.629236] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.630320] RNDIS_IPA module is loaded.\n[    1.633999] msm_bus_late_init: Remove handoff bw requests\n[    1.634743] hlos1_vote_aggre_noc_mmu_audio_tbu_gdsc: disabling\n[    1.634858] hlos1_vote_aggre_noc_mmu_tbu1_gdsc: disabling\n[    1.634970] hlos1_vote_aggre_noc_mmu_tbu2_gdsc: disabling\n[    1.635080] hlos1_vote_aggre_noc_mmu_pcie_tbu_gdsc: disabling\n[    1.635218] dbu1: disabling\n[    1.635232] msm-qusb-phy 88e2000.qusb: qusb_phy_dpdm_regulator_is_enabled qphy->dpdm_enable = 0\n[    1.635239] msm-qusb-phy 88e3000.qusb: qusb_phy_dpdm_regulator_is_enabled qphy->dpdm_enable = 0\n[    1.635244] camera_vana0_ldo: disabling\n[    1.635248] camera_vana1_2_ldo: disabling\n[    1.635277] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    1.635314] ALSA device list:\n[    1.635319]   No soundcards found.\n[    1.635362] Warning: unable to open an initial console.\n[    1.637149] Freeing unused kernel memory: 6144K\n[    2.320757] Couldn't get prop 4 rc = -22\n[    2.596585] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: cpu1 cpu6 \n               Offline CPUs: cpu1 \n[    2.599134] CPU1: shutdown\n[    2.600847] cpu2 \n[    2.602935] CPU2: shutdown\n[    2.604238] cpu3 \n[    2.605970] CPU3: shutdown\n[    2.607053] cpu4 \n[    2.608734] CPU4: shutdown\n[    2.609828] cpu5 \n[    2.611373] CPU5: shutdown\n[    2.612333] cpu6 \n[    2.614534] IRQ 6: no longer affine to CPU6\n[    2.614639] CPU6: shutdown\n[    2.615339] cpu7 \n[    2.618999] IRQ 6: no longer affine to CPU7\n[    2.619097] CPU7: shutdown\n\n[    2.625945] [smblib_get_prop_batt_status] usb online=0 real_charger_type=0\n[    3.362121] QCOM-STEPCHG: get_step_chg_jeita_setting_from_profile: longcheer get battery type: m305-sunwoda-5000mah\n[    3.362164] of_batterydata_get_best_profile:  sunxing get best profile enter\n[    3.362189] of_batterydata_get_best_profile: sunxing test batt_id_kohm 100\n[    3.362220] of_batterydata_get_best_profile: m305-sunwoda-5000mah found\n[    3.362267] QCOM-STEPCHG: read_range_data_from_node: Count qcom,step-chg-ranges failed, rc=-22\n[    3.362304] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.362326] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.362348] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.362369] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.362390] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.362411] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.362432] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.362453] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.362475] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: -100decidegree ~ 0decidegre, 450000uA\n[    3.362497] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 1decidegree ~ 50decidegre, 950000uA\n[    3.362518] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 51decidegree ~ 100decidegre, 2450000uA\n[    3.362541] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 101decidegree ~ 150decidegre, 3900000uA\n[    3.362564] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 151decidegree ~ 480decidegre, 6000000uA\n[    3.362586] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 481decidegree ~ 580decidegre, 2450000uA\n[    3.362608] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 0decidegree ~ 0decidegre, 0uA\n[    3.362629] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 0decidegree ~ 0decidegre, 0uA\n[    3.362651] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: -100decidegree ~ 0decidegre, 4450000uV\n[    3.362674] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 1decidegree ~ 50decidegre, 4450000uV\n[    3.362696] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 51decidegree ~ 100decidegre, 4450000uV\n[    3.362718] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 101decidegree ~ 150decidegre, 4450000uV\n[    3.362740] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 151decidegree ~ 480decidegre, 4470000uV\n[    3.362762] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 481decidegree ~ 580decidegre, 4100000uV\n[    3.362784] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 0decidegree ~ 0decidegre, 0uV\n[    3.362805] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 0decidegree ~ 0decidegre, 0uV\n[    7.637361] Sampling power every 250 ms\n               Baseline power usage: \n[    9.442101] [aw87xxx_pa_2_5b]aw87xxx_cfg_work_routine enter, aw87559_i2c2@0x5B\n[    9.442160] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[    9.442193] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[    9.442220] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[    9.442248] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[    9.442275] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[    9.442303] [aw87xxx_pa_2_5b]aw87xxx_vbat_monitor_update enter, dev_i2c2@0x5B\n[    9.442332] [aw87xxx_pa_2_58]aw87xxx_cfg_work_routine enter, aw87359_i2c2@0x58\n[    9.442355] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[    9.442381] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[    9.442406] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[    9.442431] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[    9.442457] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[    9.442482] [aw87xxx_pa_2_58]aw87xxx_vbat_monitor_update enter, dev_i2c2@0x58\n[   31.842665] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 03 78 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[   31.842951] smb:01:1200 00 ff ff fe 00 3d 3d 00 00 00 00 00 00 00 00 01 06 00 01 00 \n[   31.843617] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 a3 00 00 00 00 07 00 18 18 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[   31.844516] smb:01:1500 00 00 00 04 c5 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[   31.845188] smb:01:1600 03 03 00 00 00 02 01 04 00 00 00 5b 5b 00 00 00 00 00 42 00 7b 00 00 00 00 00 00 00 00 00 00 00 00 0c 01 00 80 00 00 00 00 00 00 20 b8 4c cc 18 02 00 03 32 11 \n[   64.481979] firmware focaltech_ts_fw_samsung.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   69.602197] firmware aw87xxx_vmax_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   69.602426] [aw87xxx_pa_2_58]aw87xxx_vmax_cfg_loaded enter, aw87359_i2c2@0x58\n[   69.602451] [aw87xxx_pa_2_58]aw87xxx_vmax_cfg_loaded: failed to read aw87xxx_vmax_1.bin\n[   69.602527] firmware aw87xxx_pid_59_rcv_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   69.602685] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[   69.602707] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_rcv_1.bin\n[   69.602729] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[   69.602793] firmware aw87xxx_pid_59_fm_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   69.602950] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[   69.602974] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_fm_1.bin\n[   69.602993] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[   69.603056] firmware aw87xxx_pid_59_voice_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   69.603253] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[   69.603277] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_voice_1.bin\n[   69.603297] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[   69.603360] firmware aw87xxx_pid_59_music_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   69.603516] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[   69.603539] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_music_1.bin\n[   69.603561] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[   69.603625] firmware aw87xxx_pid_59_off_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   69.603788] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[   69.603811] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_off_1.bin\n[   69.603832] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[   69.603894] firmware aw87xxx_vmax_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   69.604049] [aw87xxx_pa_2_5b]aw87xxx_vmax_cfg_loaded enter, aw87559_i2c2@0x5B\n[   69.604073] [aw87xxx_pa_2_5b]aw87xxx_vmax_cfg_loaded: failed to read aw87xxx_vmax_0.bin\n[   69.604140] firmware aw87xxx_pid_5a_rcv_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   69.604295] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[   69.604317] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_rcv_0.bin\n[   69.604338] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[   69.604403] firmware aw87xxx_pid_5a_fm_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   69.604559] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[   69.604583] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_fm_0.bin\n[   69.604602] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[   69.604667] firmware aw87xxx_pid_5a_voice_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   69.604818] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[   69.604842] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_voice_0.bin\n[   69.604861] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[   69.604927] firmware aw87xxx_pid_5a_music_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   69.605080] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[   69.605104] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_music_0.bin\n[   69.605125] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[   69.605187] firmware aw87xxx_pid_5a_off_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   69.605344] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[   69.605368] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_off_0.bin\n[   69.605389] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[   71.601964] [aw87xxx_pa_2_5b]aw87xxx_cfg_work_routine enter, aw87559_i2c2@0x5B\n[   71.602004] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[   71.602038] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[   71.602067] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[   71.602094] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[   71.602121] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[   71.602149] [aw87xxx_pa_2_5b]aw87xxx_vbat_monitor_update enter, dev_i2c2@0x5B\n[   71.602176] [aw87xxx_pa_2_58]aw87xxx_cfg_work_routine enter, aw87359_i2c2@0x58\n[   71.602199] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[   71.602226] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[   71.602253] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[   71.602278] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[   71.602303] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[   71.602327] [aw87xxx_pa_2_58]aw87xxx_vbat_monitor_update enter, dev_i2c2@0x58\n[   82.741449] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000\n[   82.741579] CPU1: Booted secondary processor [51df805e]\n[   83.753008] 415 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 576 748 1017 1209 1363 1516 1593 1708\n               \n                300: \n[  136.160661] firmware aw87xxx_vmax_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  136.160928] [aw87xxx_pa_2_58]aw87xxx_vmax_cfg_loaded enter, aw87359_i2c2@0x58\n[  136.160953] [aw87xxx_pa_2_58]aw87xxx_vmax_cfg_loaded: failed to read aw87xxx_vmax_1.bin\n[  136.161027] firmware aw87xxx_pid_59_rcv_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  136.161192] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[  136.161214] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_rcv_1.bin\n[  136.161236] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[  136.161302] firmware aw87xxx_pid_59_fm_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  136.161462] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[  136.161486] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_fm_1.bin\n[  136.161505] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[  136.161570] firmware aw87xxx_pid_59_voice_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  136.161727] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[  136.161750] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_voice_1.bin\n[  136.161770] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[  136.161836] firmware aw87xxx_pid_59_music_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  136.161990] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[  136.162014] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_music_1.bin\n[  136.162035] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[  136.162100] firmware aw87xxx_pid_59_off_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  136.162261] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[  136.162284] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_off_1.bin\n[  136.162305] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[  136.162371] firmware aw87xxx_vmax_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  136.162531] [aw87xxx_pa_2_5b]aw87xxx_vmax_cfg_loaded enter, aw87559_i2c2@0x5B\n[  136.162555] [aw87xxx_pa_2_5b]aw87xxx_vmax_cfg_loaded: failed to read aw87xxx_vmax_0.bin\n[  136.162625] firmware aw87xxx_pid_5a_rcv_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  136.162782] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[  136.162804] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_rcv_0.bin\n[  136.162826] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[  136.162891] firmware aw87xxx_pid_5a_fm_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  136.163045] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[  136.163068] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_fm_0.bin\n[  136.163087] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[  136.163152] firmware aw87xxx_pid_5a_voice_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  136.163308] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[  136.163331] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_voice_0.bin\n[  136.163351] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[  136.163414] firmware aw87xxx_pid_5a_music_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  136.163568] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[  136.163592] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_music_0.bin\n[  136.163613] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[  136.163679] firmware aw87xxx_pid_5a_off_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  136.163841] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[  136.163863] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_off_0.bin\n[  136.163884] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded:restart hrtimer to load firmware\n[  138.160351] [aw87xxx_pa_2_5b]aw87xxx_cfg_work_routine enter, aw87559_i2c2@0x5B\n[  138.160385] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[  138.160416] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[  138.160445] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[  138.160471] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[  138.160498] [aw87xxx_pa_2_5b]aw87xxx_scene_update enter, aw87559_i2c2@0x5B\n[  138.160523] [aw87xxx_pa_2_5b]aw87xxx_vbat_monitor_update enter, dev_i2c2@0x5B\n[  138.160549] [aw87xxx_pa_2_58]aw87xxx_cfg_work_routine enter, aw87359_i2c2@0x58\n[  138.160572] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[  138.160599] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[  138.160624] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[  138.160649] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[  138.160673] [aw87xxx_pa_2_58]aw87xxx_scene_update enter, aw87359_i2c2@0x58\n[  138.160698] [aw87xxx_pa_2_58]aw87xxx_vbat_monitor_update enter, dev_i2c2@0x58\n[  185.650301] random: crng init done\n[  202.720496] firmware aw87xxx_vmax_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  202.720696] [aw87xxx_pa_2_58]aw87xxx_vmax_cfg_loaded enter, aw87359_i2c2@0x58\n[  202.720722] [aw87xxx_pa_2_58]aw87xxx_vmax_cfg_loaded: failed to read aw87xxx_vmax_1.bin\n[  202.720789] firmware aw87xxx_pid_59_rcv_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  202.720992] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[  202.721015] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_rcv_1.bin\n[  202.721078] firmware aw87xxx_pid_59_fm_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  202.721232] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[  202.721256] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_fm_1.bin\n[  202.721319] firmware aw87xxx_pid_59_voice_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  202.721472] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[  202.721496] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_voice_1.bin\n[  202.721559] firmware aw87xxx_pid_59_music_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  202.721707] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[  202.721730] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_music_1.bin\n[  202.721792] firmware aw87xxx_pid_59_off_1.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  202.721950] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded enter, aw87359_i2c2@0x58\n[  202.721974] [aw87xxx_pa_2_58]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_59_off_1.bin\n[  202.722036] firmware aw87xxx_vmax_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  202.722188] [aw87xxx_pa_2_5b]aw87xxx_vmax_cfg_loaded enter, aw87559_i2c2@0x5B\n[  202.722212] [aw87xxx_pa_2_5b]aw87xxx_vmax_cfg_loaded: failed to read aw87xxx_vmax_0.bin\n[  202.722275] firmware aw87xxx_pid_5a_rcv_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  202.722427] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[  202.722451] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_rcv_0.bin\n[  202.722512] firmware aw87xxx_pid_5a_fm_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  202.722662] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[  202.722685] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_fm_0.bin\n[  202.722746] firmware aw87xxx_pid_5a_voice_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  202.722899] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[  202.722921] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_voice_0.bin\n[  202.722986] firmware aw87xxx_pid_5a_music_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  202.723137] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[  202.723160] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_music_0.bin\n[  202.723222] firmware aw87xxx_pid_5a_off_0.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  202.723382] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded enter, aw87559_i2c2@0x5B\n[  202.723403] [aw87xxx_pa_2_5b]aw87xxx_scene_cfg_loaded: failed to read aw87xxx_pid_5a_off_0.bin\n[  364.442545]  1102     3.7 C/MHz    247 mW   67.2 J    4.5 I/mJ   272.3 s\n                576: \n[  513.993086]  2125     3.7 C/MHz    268 mW   37.8 J    7.9 I/mJ   141.2 s\n                748: \n[  630.726810]  2766     3.7 C/MHz    283 mW   30.7 J    9.8 I/mJ   108.5 s\n               1017: \n[  718.740546]  3763     3.7 C/MHz    307 mW   24.5 J   12.2 I/mJ    79.7 s\n               1209: \n[  794.173555]  4475     3.7 C/MHz    324 mW   21.7 J   13.8 I/mJ    67.0 s\n               1363: \n[  861.809376]  5045     3.7 C/MHz    337 mW   20.0 J   15.0 I/mJ    59.5 s\n               1516: \n[  923.412586]  5615     3.7 C/MHz    353 mW   18.9 J   15.9 I/mJ    53.4 s\n               1593: \n[  982.504119]  5900     3.7 C/MHz    360 mW   18.3 J   16.4 I/mJ    50.9 s\n               1708: \n[ 1038.333494] IRQ 6: no longer affine to CPU1\n[ 1038.334196] CPU1: shutdown\n[ 1038.338215] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000\n[ 1038.338252] CPU6: Booted secondary processor [51df804e]\n[ 1039.349541]  6327     3.7 C/MHz    376 mW   17.8 J   16.8 I/mJ    47.4 s\n               \n               \n               ===== CPU 6 =====\n               Frequencies: 300 652 768 979 1017 1209 1363 1516 1708 1900 2016 2112 2208\n               \n                300: \n[ 1176.629313]  2328     7.8 C/MHz    275 mW   35.5 J    8.4 I/mJ   128.9 s\n                652: \n[ 1201.120341] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[ 1201.120370] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[ 1201.120400] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[ 1201.120412] audio_notifer_reg_service: service SSR_ADSP is in use\n[ 1201.120567] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[ 1201.120594] ADSPRPC: Audio PD restart notifier locator down\n[ 1201.120653] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[ 1201.120672] ADSPRPC: Audio PD restart notifier locator down\n[ 1242.081048] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 03 78 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[ 1242.081325] smb:01:1200 00 ff ff fe 00 3d 3d 00 00 00 00 00 00 00 00 01 06 00 01 00 \n[ 1242.081991] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 a3 00 00 00 00 07 00 18 18 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[ 1242.082890] smb:01:1500 00 00 00 01 c2 00 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 1242.083561] smb:01:1600 03 03 00 00 00 02 01 04 00 00 00 5b 5b 00 00 00 00 00 42 00 7b 00 00 00 00 00 00 00 00 00 00 00 00 0c 01 00 80 00 00 00 00 00 00 20 b8 4c cc 18 02 00 03 32 11 \n[ 1244.204059]  5075     7.8 C/MHz    330 mW   19.5 J   15.4 I/mJ    59.1 s\n                768: \n[ 1302.935741]  5970     7.8 C/MHz    348 mW   17.5 J   17.1 I/mJ    50.3 s\n                979: \n[ 1350.809046]  7615     7.8 C/MHz    392 mW   15.5 J   19.4 I/mJ    39.4 s\n               1017: \n[ 1397.168640]  7916     7.8 C/MHz    404 mW   15.3 J   19.6 I/mJ    37.9 s\n               1209: \n[ 1437.465043]  9408     7.8 C/MHz    452 mW   14.4 J   20.8 I/mJ    31.9 s\n               1363: \n[ 1474.229596] 10600     7.8 C/MHz    531 mW   15.0 J   19.9 I/mJ    28.3 s\n               1516: \n[ 1507.961588] 11802     7.8 C/MHz    594 mW   15.1 J   19.9 I/mJ    25.4 s\n               1708: \n[ 1538.916977] 13294     7.8 C/MHz    706 mW   15.9 J   18.8 I/mJ    22.6 s\n               1900: \n[ 1567.596915] 14785     7.8 C/MHz    848 mW   17.2 J   17.4 I/mJ    20.3 s\n               2016: \n[ 1595.013637] 15684     7.8 C/MHz    942 mW   18.0 J   16.6 I/mJ    19.1 s\n               2112: \n[ 1621.676574] 16435     7.8 C/MHz   1031 mW   18.8 J   15.9 I/mJ    18.3 s\n               2208: \n[ 1647.587662] CPU6: shutdown\n[ 1647.622299] 17178     7.8 C/MHz   1157 mW   20.2 J   14.8 I/mJ    17.5 s\n               \n               \n               Benchmark finished!\n[ 1647.657294] \n               real\t27m25.949s\n               user\t22m59.743s\n               sys\t0m3.240s\n"
  },
  {
    "path": "results/sm6150ac/new/post_bench_interrupts.txt",
    "content": "           CPU0       \n  4:       2925   PDC-GIC  19 Level     arch_timer\n  6:      28826   PDC-GIC  38 Level     arch_mem_timer\n  8:          0   PDC-GIC  21 Level     arm-pmu\n  9:          0   PDC-GIC  82 Level     arm_dsu_0\n 26:          0   PDC-GIC  32 Edge      apps_wdog_bark\n 28:          0   PDC-GIC  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 29:          0   PDC-GIC  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 30:        233   PDC-GIC  37 Level     apps_rsc\n 31:          0   PDC-GIC 161 Level     display_rsc\n 34:         62   PDC-GIC 236 Edge      mmc0\n 35:          2   PDC-GIC 254 Edge      8804000.sdhci\n 36:        338   PDC-GIC 297 Edge      1d84000.ufshc\n 37:          0   PDC-GIC 304 Level     sps\n 39:          0   PDC-GIC 524 Level     eud_irq\n 40:          0   PDC-GIC 323 Level     ngd_slim_irq\n 42:          0  pmic_arb 8388749 Edge      pon_kpdpwr_status\n 43:          0  pmic_arb 8454285 Edge      pon_resin_status\n 44:         76  pmic_arb 51380379 Edge      pm-adc5\n 45:          0  pmic_arb 55574684 Edge      thr-int-en\n 46:          0  pmic_arb 24117397 Edge      sig-tx\n 47:          0  pmic_arb 24182933 Edge      sig-rx\n 48:          0  pmic_arb 24248469 Edge      msg-tx\n 49:          0  pmic_arb 24314005 Edge      msg-rx\n 50:          0  pmic_arb 24379541 Edge      msg-tx-failed\n 51:          0  pmic_arb 24445077 Edge      msg-tx-discarded\n 52:          0  pmic_arb 24510613 Edge      msg-rx-discarded\n 54:          0  pmic_arb 30408857 Edge      bcl-lvl0\n 55:          0  pmic_arb 30474393 Edge      bcl-lvl1\n 56:          0  pmic_arb 30539929 Edge      bcl-lvl2\n 57:          0  pmic_arb 37748890 Edge      qcom,temp-alarm\n 64:          0  pmic_arb 1111490736 Edge      qcom,temp-alarm\n 65:          0  pmic_arb 1137705139 Edge      bcl-lvl0\n 66:          0  pmic_arb 1137770675 Edge      bcl-lvl1\n 67:          0  pmic_arb 1137836211 Edge      bcl-lvl2\n 68:          6  pmic_arb 1125122225 Edge      pm-adc5\n 69:          0  pmic_arb 1129316530 Edge      thr-int-en\n 71:          0  pmic_arb 1276117175 Edge      volume_up\n 82:          1  pmic_arb 1589706970 Edge      qpnp_lcdb_sc_irq\n 83:          0  pmic_arb 1563427028 Edge      qpnp_flash_led_fault_irq\n 84:          0  pmic_arb 1563623636 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 85:          0  pmic_arb 1563689172 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 86:          0  pmic_arb 1568735445 Edge      wled_ovp_irq\n 87:          0  pmic_arb 1568932053 Edge      wled_pre_flash_irq\n 88:          0  pmic_arb 1568997589 Edge      wled_flash_irq\n 89:          7   PDC-GIC 421 Edge      qcom,qmp-aop\n 90:          0   PDC-GIC 483 Edge      smp2p\n 91:          0   PDC-GIC 204 Edge      smp2p\n 92:          0   PDC-GIC 608 Edge      smp2p\n 93:          0   PDC-GIC 538 Level     tsens-upper-lower\n 94:          0   PDC-GIC 540 Level     tsens-critical\n 95:          0   PDC-GIC 194 Edge      adsp\n 96:          0   PDC-GIC 298 Edge      modem\n 97:          0   PDC-GIC 610 Edge      cdsp\n138:          0  msmgpio-dc  26 Edge      esd_err_irq\n144:          1  msmgpio-dc  41 Edge      bq2597x charger irq\n182:          1  msmgpio-dc  89 Edge      fts_ts\n184:          0  msmgpio-dc  90 Edge      TE_GPIO\n192:          0  msmgpio-dc  95 Edge      ant-div-switch-irq\n200:          0  msmgpio-dc  99 Edge      8804000.sdhci cd\n242:         37   PDC-GIC 634 Level     i2c_geni\n243:        519   PDC-GIC 636 Level     i2c_geni\n244:          0   PDC-GIC 386 Level     i2c_geni\n245:          0   PDC-GIC 385 Level     spi_geni\n246:          0   PDC-GIC 388 Level     msm_serial_geni0\n247:          0   PDC-GIC 332 Level     kgsl-3d0\n248:          0   PDC-GIC 336 Level     kgsl-oob\n249:          0   PDC-GIC 337 Level     kgsl-rgmu\n250:          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n251:          1   PDC-GIC 162 Edge      pwr_event_irq\n252:          0   PDC-GIC 518 Level     ss_phy_irq\n253:          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n254:          0   PDC-GIC 509 Edge      csiphy\n255:          0   PDC-GIC 510 Edge      csiphy\n256:          0   PDC-GIC 511 Edge      csiphy\n257:          0   PDC-GIC 492 Edge      cci\n258:          0   PDC-GIC 491 Edge      cpas_camnoc\n259:          1   PDC-GIC 493 Edge      cpas-cdm\n260:          0   PDC-GIC 496 Edge      csid\n261:          2   PDC-GIC 497 Edge      ife\n262:          0   PDC-GIC 498 Edge      csid\n263:          2   PDC-GIC 499 Edge      ife\n264:          0   PDC-GIC 500 Edge      csid-lite\n265:          2   PDC-GIC 501 Edge      ife-lite\n266:          0   PDC-GIC 495 Edge      a5\n267:          0   PDC-GIC 506 Edge      jpeg\n268:          0   PDC-GIC 507 Edge      jpegdma\n269:          1   PDC-GIC 508 Edge      lrme\n270:          0   PDC-GIC 617 Level     arm-smmu global fault\n271:          0   PDC-GIC 622 Level     arm-smmu-context-fault\n272:          0   PDC-GIC 623 Level     arm-smmu-context-fault\n279:          0   PDC-GIC  97 Level     arm-smmu global fault\n281:          0   PDC-GIC 127 Level     arm-smmu-context-fault\n283:          0   PDC-GIC 129 Level     arm-smmu-context-fault\n284:          0   PDC-GIC 130 Level     arm-smmu-context-fault\n285:          0   PDC-GIC 131 Level     arm-smmu-context-fault\n286:          0   PDC-GIC 132 Level     arm-smmu-context-fault\n287:          0   PDC-GIC 133 Level     arm-smmu-context-fault\n288:          0   PDC-GIC 134 Level     arm-smmu-context-fault\n289:          0   PDC-GIC 135 Level     arm-smmu-context-fault\n290:          0   PDC-GIC 136 Level     arm-smmu-context-fault\n291:          0   PDC-GIC 137 Level     arm-smmu-context-fault\n292:          0   PDC-GIC 138 Level     arm-smmu-context-fault\n293:          0   PDC-GIC 139 Level     arm-smmu-context-fault\n294:          0   PDC-GIC 140 Level     arm-smmu-context-fault\n295:          0   PDC-GIC 141 Level     arm-smmu-context-fault\n296:          0   PDC-GIC 142 Level     arm-smmu-context-fault\n297:          0   PDC-GIC 143 Level     arm-smmu-context-fault\n298:          0   PDC-GIC 144 Level     arm-smmu-context-fault\n299:          0   PDC-GIC 145 Level     arm-smmu-context-fault\n300:          0   PDC-GIC 146 Level     arm-smmu-context-fault\n301:          0   PDC-GIC 147 Level     arm-smmu-context-fault\n302:          0   PDC-GIC 148 Level     arm-smmu-context-fault\n303:          0   PDC-GIC 149 Level     arm-smmu-context-fault\n304:          0   PDC-GIC 150 Level     arm-smmu-context-fault\n305:          0   PDC-GIC 213 Level     arm-smmu-context-fault\n306:          0   PDC-GIC 214 Level     arm-smmu-context-fault\n307:          0   PDC-GIC 215 Level     arm-smmu-context-fault\n308:          0   PDC-GIC 216 Level     arm-smmu-context-fault\n309:          0   PDC-GIC 217 Level     arm-smmu-context-fault\n310:          0   PDC-GIC 218 Level     arm-smmu-context-fault\n311:          0   PDC-GIC 219 Level     arm-smmu-context-fault\n312:          0   PDC-GIC 220 Level     arm-smmu-context-fault\n345:          0   PDC-GIC 206 Level     msm_vidc\n346:          0   PDC-GIC 115 Edge      msm_drm\n360:          0   PDC-GIC  64 Level     limits_sensor-00\n361:          0   PDC-GIC  65 Level     limits_sensor-01\n362:          0     smp2p   2 Edge      adsp\n363:          0     smp2p   0 Edge      adsp\n364:          0     smp2p   1 Edge      error_ready_interrupt\n365:          0     smp2p   3 Edge      adsp\n366:          0     smp2p   7 Edge      adsp\n367:          0     smp2p   2 Edge      modem\n368:          0     smp2p   0 Edge      modem\n369:          0     smp2p   1 Edge      error_ready_interrupt\n370:          0     smp2p   3 Edge      modem\n371:          0     smp2p   7 Edge      modem\n372:          0     smp2p   2 Edge      cdsp\n373:          0     smp2p   0 Edge      cdsp\n374:          0     smp2p   1 Edge      error_ready_interrupt\n375:          0     smp2p   3 Edge      cdsp\n376:          0     smp2p   7 Edge      cdsp\n377:          0     smp2p   0 Edge      smp2p_sleepstate\n378:          0       sde   4 Edge      dsi_ctrl\n379:          0   msmgpio 110 Edge      ant-switch-irq\n380:          0     GICv3 165 Edge      dwc3\n382:          0  pmic_arb 101777568 Edge      qpnp_rtc_alarm\n383:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n385:          0  pmic_arb 75563166 Edge      qg-vbat-low\n386:          0  pmic_arb 75628702 Edge      qg-vbat-empty\n387:         26  pmic_arb 75694238 Edge      qg-fifo-done\n388:          0  pmic_arb 75759774 Edge      qg-good-ocv\n389:          0  pmic_arb 16777358 Edge      chgr-error\n390:          0  pmic_arb 16842894 Edge      chg-state-change\n397:          0  pmic_arb 17825935 Edge      otg-fail\n401:          0  pmic_arb 18088079 Edge      high-duty-cycle\n402:          0  pmic_arb 18153615 Edge      input-current-limiting\n404:          0  pmic_arb 18284687 Edge      switcher-power-ok\n405:          0  pmic_arb 18874512 Edge      bat-temp\n406:          0  pmic_arb 19005584 Edge      bat-ov\n407:          0  pmic_arb 19071120 Edge      bat-low\n408:          0  pmic_arb 19136656 Edge      bat-therm-or-id-missing\n409:          0  pmic_arb 19202192 Edge      bat-terminal-missing\n412:          0  pmic_arb 19923089 Edge      usbin-collapse\n413:          0  pmic_arb 19988625 Edge      usbin-vashdn\n414:          0  pmic_arb 20054161 Edge      usbin-uv\n415:          0  pmic_arb 20119697 Edge      usbin-ov\n416:          0  pmic_arb 20185233 Edge      usbin-plugin\n418:          0  pmic_arb 20316305 Edge      usbin-src-change\n419:          0  pmic_arb 20381841 Edge      usbin-icl-change\n421:          0  pmic_arb 21102738 Edge      dcin-uv\n422:          0  pmic_arb 21168274 Edge      dcin-ov\n423:          0  pmic_arb 21233810 Edge      dcin-plugin\n425:          0  pmic_arb 21364882 Edge      dcin-pon\n426:          0  pmic_arb 21430418 Edge      dcin-en\n427:          0  pmic_arb 22020243 Edge      typec-or-rid-detect-change\n429:          0  pmic_arb 22151315 Edge      typec-cc-state-change\n430:          0  pmic_arb 22216851 Edge      typec-vconn-oc\n432:          0  pmic_arb 22347923 Edge      typec-attach-detach\n433:          0  pmic_arb 22413459 Edge      typec-legacy-cable-detect\n435:          0  pmic_arb 23068820 Edge      wdog-snarl\n436:          0  pmic_arb 23134356 Edge      wdog-bark\n438:          0  pmic_arb 23265428 Edge      aicl-done\n439:          0  pmic_arb 23330964 Edge      smb-en\n441:          0  pmic_arb 23462036 Edge      temp-change\n443:          0  pmic_arb 185663650 Edge      sdam-sts\nIPI0:     38258       Rescheduling interrupts\nIPI1:        47       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         3       Timer broadcast interrupts\nIPI5:      1772       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm6150ac/new/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  4:        113         97         17        115         34         75         54         43   PDC-GIC  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   PDC-GIC  38 Level     arch_mem_timer\n  8:          0          0          0          0          0          0          0          0   PDC-GIC  21 Level     arm-pmu\n  9:          0          0          0          0          0          0          0          0   PDC-GIC  82 Level     arm_dsu_0\n 26:          0          0          0          0          0          0          0          0   PDC-GIC  32 Edge      apps_wdog_bark\n 28:          0          0          0          0          0          0          0          0   PDC-GIC  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 29:          0          0          0          0          0          0          0          0   PDC-GIC  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 30:        208          0          0          0          0          0          0          0   PDC-GIC  37 Level     apps_rsc\n 31:          0          0          0          0          0          0          0          0   PDC-GIC 161 Level     display_rsc\n 34:         61          0          0          0          0          0          0          0   PDC-GIC 236 Edge      mmc0\n 35:          1          0          0          0          0          0          0          0   PDC-GIC 254 Edge      8804000.sdhci\n 36:        327          0          0          0          0          0          0          0   PDC-GIC 297 Edge      1d84000.ufshc\n 37:          0          0          0          0          0          0          0          0   PDC-GIC 304 Level     sps\n 39:          0          0          0          0          0          0          0          0   PDC-GIC 524 Level     eud_irq\n 40:          0          0          0          0          0          0          0          0   PDC-GIC 323 Level     ngd_slim_irq\n 42:          0          0          0          0          0          0          0          0  pmic_arb 8388749 Edge      pon_kpdpwr_status\n 43:          0          0          0          0          0          0          0          0  pmic_arb 8454285 Edge      pon_resin_status\n 44:         48          0          0          0          0          0          0          0  pmic_arb 51380379 Edge      pm-adc5\n 45:          0          0          0          0          0          0          0          0  pmic_arb 55574684 Edge      thr-int-en\n 46:          0          0          0          0          0          0          0          0  pmic_arb 24117397 Edge      sig-tx\n 47:          0          0          0          0          0          0          0          0  pmic_arb 24182933 Edge      sig-rx\n 48:          0          0          0          0          0          0          0          0  pmic_arb 24248469 Edge      msg-tx\n 49:          0          0          0          0          0          0          0          0  pmic_arb 24314005 Edge      msg-rx\n 50:          0          0          0          0          0          0          0          0  pmic_arb 24379541 Edge      msg-tx-failed\n 51:          0          0          0          0          0          0          0          0  pmic_arb 24445077 Edge      msg-tx-discarded\n 52:          0          0          0          0          0          0          0          0  pmic_arb 24510613 Edge      msg-rx-discarded\n 54:          0          0          0          0          0          0          0          0  pmic_arb 30408857 Edge      bcl-lvl0\n 55:          0          0          0          0          0          0          0          0  pmic_arb 30474393 Edge      bcl-lvl1\n 56:          0          0          0          0          0          0          0          0  pmic_arb 30539929 Edge      bcl-lvl2\n 57:          0          0          0          0          0          0          0          0  pmic_arb 37748890 Edge      qcom,temp-alarm\n 64:          0          0          0          0          0          0          0          0  pmic_arb 1111490736 Edge      qcom,temp-alarm\n 65:          0          0          0          0          0          0          0          0  pmic_arb 1137705139 Edge      bcl-lvl0\n 66:          0          0          0          0          0          0          0          0  pmic_arb 1137770675 Edge      bcl-lvl1\n 67:          0          0          0          0          0          0          0          0  pmic_arb 1137836211 Edge      bcl-lvl2\n 68:          6          0          0          0          0          0          0          0  pmic_arb 1125122225 Edge      pm-adc5\n 69:          0          0          0          0          0          0          0          0  pmic_arb 1129316530 Edge      thr-int-en\n 71:          0          0          0          0          0          0          0          0  pmic_arb 1276117175 Edge      volume_up\n 82:          1          0          0          0          0          0          0          0  pmic_arb 1589706970 Edge      qpnp_lcdb_sc_irq\n 83:          0          0          0          0          0          0          0          0  pmic_arb 1563427028 Edge      qpnp_flash_led_fault_irq\n 84:          0          0          0          0          0          0          0          0  pmic_arb 1563623636 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 85:          0          0          0          0          0          0          0          0  pmic_arb 1563689172 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 86:          0          0          0          0          0          0          0          0  pmic_arb 1568735445 Edge      wled_ovp_irq\n 87:          0          0          0          0          0          0          0          0  pmic_arb 1568932053 Edge      wled_pre_flash_irq\n 88:          0          0          0          0          0          0          0          0  pmic_arb 1568997589 Edge      wled_flash_irq\n 89:          7          0          0          0          0          0          0          0   PDC-GIC 421 Edge      qcom,qmp-aop\n 90:          0          0          0          0          0          0          0          0   PDC-GIC 483 Edge      smp2p\n 91:          0          0          0          0          0          0          0          0   PDC-GIC 204 Edge      smp2p\n 92:          0          0          0          0          0          0          0          0   PDC-GIC 608 Edge      smp2p\n 93:          0          0          0          0          0          0          0          0   PDC-GIC 538 Level     tsens-upper-lower\n 94:          0          0          0          0          0          0          0          0   PDC-GIC 540 Level     tsens-critical\n 95:          0          0          0          0          0          0          0          0   PDC-GIC 194 Edge      adsp\n 96:          0          0          0          0          0          0          0          0   PDC-GIC 298 Edge      modem\n 97:          0          0          0          0          0          0          0          0   PDC-GIC 610 Edge      cdsp\n138:          0          0          0          0          0          0          0          0  msmgpio-dc  26 Edge      esd_err_irq\n144:          1          0          0          0          0          0          0          0  msmgpio-dc  41 Edge      bq2597x charger irq\n182:          0          0          0          0          0          0          0          0  msmgpio-dc  89 Edge      fts_ts\n184:          0          0          0          0          0          0          0          0  msmgpio-dc  90 Edge      TE_GPIO\n192:          0          0          0          0          0          0          0          0  msmgpio-dc  95 Edge      ant-div-switch-irq\n200:          0          0          0          0          0          0          0          0  msmgpio-dc  99 Edge      8804000.sdhci cd\n242:         21          0          0          0          0          0          0          0   PDC-GIC 634 Level     i2c_geni\n243:        519          0          0          0          0          0          0          0   PDC-GIC 636 Level     i2c_geni\n244:          0          0          0          0          0          0          0          0   PDC-GIC 386 Level     i2c_geni\n245:          0          0          0          0          0          0          0          0   PDC-GIC 385 Level     spi_geni\n246:          0          0          0          0          0          0          0          0   PDC-GIC 388 Level     msm_serial_geni0\n247:          0          0          0          0          0          0          0          0   PDC-GIC 332 Level     kgsl-3d0\n248:          0          0          0          0          0          0          0          0   PDC-GIC 336 Level     kgsl-oob\n249:          0          0          0          0          0          0          0          0   PDC-GIC 337 Level     kgsl-rgmu\n250:          0          0          0          0          0          0          0          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n251:          1          0          0          0          0          0          0          0   PDC-GIC 162 Edge      pwr_event_irq\n252:          0          0          0          0          0          0          0          0   PDC-GIC 518 Level     ss_phy_irq\n253:          0          0          0          0          0          0          0          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n254:          0          0          0          0          0          0          0          0   PDC-GIC 509 Edge      csiphy\n255:          0          0          0          0          0          0          0          0   PDC-GIC 510 Edge      csiphy\n256:          0          0          0          0          0          0          0          0   PDC-GIC 511 Edge      csiphy\n257:          0          0          0          0          0          0          0          0   PDC-GIC 492 Edge      cci\n258:          0          0          0          0          0          0          0          0   PDC-GIC 491 Edge      cpas_camnoc\n259:          1          0          0          0          0          0          0          0   PDC-GIC 493 Edge      cpas-cdm\n260:          0          0          0          0          0          0          0          0   PDC-GIC 496 Edge      csid\n261:          2          0          0          0          0          0          0          0   PDC-GIC 497 Edge      ife\n262:          0          0          0          0          0          0          0          0   PDC-GIC 498 Edge      csid\n263:          2          0          0          0          0          0          0          0   PDC-GIC 499 Edge      ife\n264:          0          0          0          0          0          0          0          0   PDC-GIC 500 Edge      csid-lite\n265:          2          0          0          0          0          0          0          0   PDC-GIC 501 Edge      ife-lite\n266:          0          0          0          0          0          0          0          0   PDC-GIC 495 Edge      a5\n267:          0          0          0          0          0          0          0          0   PDC-GIC 506 Edge      jpeg\n268:          0          0          0          0          0          0          0          0   PDC-GIC 507 Edge      jpegdma\n269:          1          0          0          0          0          0          0          0   PDC-GIC 508 Edge      lrme\n270:          0          0          0          0          0          0          0          0   PDC-GIC 617 Level     arm-smmu global fault\n271:          0          0          0          0          0          0          0          0   PDC-GIC 622 Level     arm-smmu-context-fault\n272:          0          0          0          0          0          0          0          0   PDC-GIC 623 Level     arm-smmu-context-fault\n279:          0          0          0          0          0          0          0          0   PDC-GIC  97 Level     arm-smmu global fault\n281:          0          0          0          0          0          0          0          0   PDC-GIC 127 Level     arm-smmu-context-fault\n283:          0          0          0          0          0          0          0          0   PDC-GIC 129 Level     arm-smmu-context-fault\n284:          0          0          0          0          0          0          0          0   PDC-GIC 130 Level     arm-smmu-context-fault\n285:          0          0          0          0          0          0          0          0   PDC-GIC 131 Level     arm-smmu-context-fault\n286:          0          0          0          0          0          0          0          0   PDC-GIC 132 Level     arm-smmu-context-fault\n287:          0          0          0          0          0          0          0          0   PDC-GIC 133 Level     arm-smmu-context-fault\n288:          0          0          0          0          0          0          0          0   PDC-GIC 134 Level     arm-smmu-context-fault\n289:          0          0          0          0          0          0          0          0   PDC-GIC 135 Level     arm-smmu-context-fault\n290:          0          0          0          0          0          0          0          0   PDC-GIC 136 Level     arm-smmu-context-fault\n291:          0          0          0          0          0          0          0          0   PDC-GIC 137 Level     arm-smmu-context-fault\n292:          0          0          0          0          0          0          0          0   PDC-GIC 138 Level     arm-smmu-context-fault\n293:          0          0          0          0          0          0          0          0   PDC-GIC 139 Level     arm-smmu-context-fault\n294:          0          0          0          0          0          0          0          0   PDC-GIC 140 Level     arm-smmu-context-fault\n295:          0          0          0          0          0          0          0          0   PDC-GIC 141 Level     arm-smmu-context-fault\n296:          0          0          0          0          0          0          0          0   PDC-GIC 142 Level     arm-smmu-context-fault\n297:          0          0          0          0          0          0          0          0   PDC-GIC 143 Level     arm-smmu-context-fault\n298:          0          0          0          0          0          0          0          0   PDC-GIC 144 Level     arm-smmu-context-fault\n299:          0          0          0          0          0          0          0          0   PDC-GIC 145 Level     arm-smmu-context-fault\n300:          0          0          0          0          0          0          0          0   PDC-GIC 146 Level     arm-smmu-context-fault\n301:          0          0          0          0          0          0          0          0   PDC-GIC 147 Level     arm-smmu-context-fault\n302:          0          0          0          0          0          0          0          0   PDC-GIC 148 Level     arm-smmu-context-fault\n303:          0          0          0          0          0          0          0          0   PDC-GIC 149 Level     arm-smmu-context-fault\n304:          0          0          0          0          0          0          0          0   PDC-GIC 150 Level     arm-smmu-context-fault\n305:          0          0          0          0          0          0          0          0   PDC-GIC 213 Level     arm-smmu-context-fault\n306:          0          0          0          0          0          0          0          0   PDC-GIC 214 Level     arm-smmu-context-fault\n307:          0          0          0          0          0          0          0          0   PDC-GIC 215 Level     arm-smmu-context-fault\n308:          0          0          0          0          0          0          0          0   PDC-GIC 216 Level     arm-smmu-context-fault\n309:          0          0          0          0          0          0          0          0   PDC-GIC 217 Level     arm-smmu-context-fault\n310:          0          0          0          0          0          0          0          0   PDC-GIC 218 Level     arm-smmu-context-fault\n311:          0          0          0          0          0          0          0          0   PDC-GIC 219 Level     arm-smmu-context-fault\n312:          0          0          0          0          0          0          0          0   PDC-GIC 220 Level     arm-smmu-context-fault\n345:          0          0          0          0          0          0          0          0   PDC-GIC 206 Level     msm_vidc\n346:          0          0          0          0          0          0          0          0   PDC-GIC 115 Edge      msm_drm\n360:          0          0          0          0          0          0          0          0   PDC-GIC  64 Level     limits_sensor-00\n361:          0          0          0          0          0          0          0          0   PDC-GIC  65 Level     limits_sensor-01\n362:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n363:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n364:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n365:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n366:          0          0          0          0          0          0          0          0     smp2p   7 Edge      adsp\n367:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n368:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n369:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n370:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n371:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n372:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n373:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n374:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n375:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n376:          0          0          0          0          0          0          0          0     smp2p   7 Edge      cdsp\n377:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n378:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n379:          0          0          0          0          0          0          0          0   msmgpio 110 Edge      ant-switch-irq\n380:          0          0          0          0          0          0          0          0     GICv3 165 Edge      dwc3\n382:          0          0          0          0          0          0          0          0  pmic_arb 101777568 Edge      qpnp_rtc_alarm\n383:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n385:          0          0          0          0          0          0          0          0  pmic_arb 75563166 Edge      qg-vbat-low\n386:          0          0          0          0          0          0          0          0  pmic_arb 75628702 Edge      qg-vbat-empty\n387:          0          0          0          0          0          0          0          0  pmic_arb 75694238 Edge      qg-fifo-done\n388:          0          0          0          0          0          0          0          0  pmic_arb 75759774 Edge      qg-good-ocv\n389:          0          0          0          0          0          0          0          0  pmic_arb 16777358 Edge      chgr-error\n390:          0          0          0          0          0          0          0          0  pmic_arb 16842894 Edge      chg-state-change\n397:          0          0          0          0          0          0          0          0  pmic_arb 17825935 Edge      otg-fail\n401:          0          0          0          0          0          0          0          0  pmic_arb 18088079 Edge      high-duty-cycle\n402:          0          0          0          0          0          0          0          0  pmic_arb 18153615 Edge      input-current-limiting\n404:          0          0          0          0          0          0          0          0  pmic_arb 18284687 Edge      switcher-power-ok\n405:          0          0          0          0          0          0          0          0  pmic_arb 18874512 Edge      bat-temp\n406:          0          0          0          0          0          0          0          0  pmic_arb 19005584 Edge      bat-ov\n407:          0          0          0          0          0          0          0          0  pmic_arb 19071120 Edge      bat-low\n408:          0          0          0          0          0          0          0          0  pmic_arb 19136656 Edge      bat-therm-or-id-missing\n409:          0          0          0          0          0          0          0          0  pmic_arb 19202192 Edge      bat-terminal-missing\n412:          0          0          0          0          0          0          0          0  pmic_arb 19923089 Edge      usbin-collapse\n413:          0          0          0          0          0          0          0          0  pmic_arb 19988625 Edge      usbin-vashdn\n414:          0          0          0          0          0          0          0          0  pmic_arb 20054161 Edge      usbin-uv\n415:          0          0          0          0          0          0          0          0  pmic_arb 20119697 Edge      usbin-ov\n416:          0          0          0          0          0          0          0          0  pmic_arb 20185233 Edge      usbin-plugin\n418:          0          0          0          0          0          0          0          0  pmic_arb 20316305 Edge      usbin-src-change\n419:          0          0          0          0          0          0          0          0  pmic_arb 20381841 Edge      usbin-icl-change\n421:          0          0          0          0          0          0          0          0  pmic_arb 21102738 Edge      dcin-uv\n422:          0          0          0          0          0          0          0          0  pmic_arb 21168274 Edge      dcin-ov\n423:          0          0          0          0          0          0          0          0  pmic_arb 21233810 Edge      dcin-plugin\n425:          0          0          0          0          0          0          0          0  pmic_arb 21364882 Edge      dcin-pon\n426:          0          0          0          0          0          0          0          0  pmic_arb 21430418 Edge      dcin-en\n427:          0          0          0          0          0          0          0          0  pmic_arb 22020243 Edge      typec-or-rid-detect-change\n429:          0          0          0          0          0          0          0          0  pmic_arb 22151315 Edge      typec-cc-state-change\n430:          0          0          0          0          0          0          0          0  pmic_arb 22216851 Edge      typec-vconn-oc\n432:          0          0          0          0          0          0          0          0  pmic_arb 22347923 Edge      typec-attach-detach\n433:          0          0          0          0          0          0          0          0  pmic_arb 22413459 Edge      typec-legacy-cable-detect\n435:          0          0          0          0          0          0          0          0  pmic_arb 23068820 Edge      wdog-snarl\n436:          0          0          0          0          0          0          0          0  pmic_arb 23134356 Edge      wdog-bark\n438:          0          0          0          0          0          0          0          0  pmic_arb 23265428 Edge      aicl-done\n439:          0          0          0          0          0          0          0          0  pmic_arb 23330964 Edge      smb-en\n441:          0          0          0          0          0          0          0          0  pmic_arb 23462036 Edge      temp-change\n443:          0          0          0          0          0          0          0          0  pmic_arb 185663650 Edge      sdam-sts\nIPI0:       378        431        504        676        656        570        571        133       Rescheduling interrupts\nIPI1:        36         83         84         84         84         80         57         84       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:        19         13          9         12         11         27         25         24       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm6150ac/new/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [kworker/0:0]\n    5 root      0:00 [kworker/0:0H]\n    6 root      0:00 [kworker/u16:0]\n    7 root      0:00 [mm_percpu_wq]\n    8 root      0:00 [ksoftirqd/0]\n    9 root      0:00 [rcu_preempt]\n   10 root      0:00 [rcu_sched]\n   11 root      0:00 [rcu_bh]\n   12 root      0:00 [rcuop/0]\n   13 root      0:00 [rcuos/0]\n   14 root      0:00 [rcuob/0]\n   15 root      0:00 [migration/0]\n   16 root      0:00 [cpuhp/0]\n   17 root      0:00 [cpuhp/1]\n   18 root      0:00 [migration/1]\n   19 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0]\n   21 root      0:00 [kworker/1:0H]\n   22 root      0:00 [rcuop/1]\n   23 root      0:00 [rcuos/1]\n   24 root      0:00 [rcuob/1]\n   25 root      0:00 [cpuhp/2]\n   26 root      0:00 [migration/2]\n   27 root      0:00 [ksoftirqd/2]\n   29 root      0:00 [kworker/2:0H]\n   30 root      0:00 [rcuop/2]\n   31 root      0:00 [rcuos/2]\n   32 root      0:00 [rcuob/2]\n   33 root      0:00 [cpuhp/3]\n   34 root      0:00 [migration/3]\n   35 root      0:00 [ksoftirqd/3]\n   36 root      0:00 [kworker/3:0]\n   37 root      0:00 [kworker/3:0H]\n   38 root      0:00 [rcuop/3]\n   39 root      0:00 [rcuos/3]\n   40 root      0:00 [rcuob/3]\n   41 root      0:00 [cpuhp/4]\n   42 root      0:00 [migration/4]\n   43 root      0:00 [ksoftirqd/4]\n   45 root      0:00 [kworker/4:0H]\n   46 root      0:00 [rcuop/4]\n   47 root      0:00 [rcuos/4]\n   48 root      0:00 [rcuob/4]\n   49 root      0:00 [cpuhp/5]\n   50 root      0:00 [migration/5]\n   51 root      0:00 [ksoftirqd/5]\n   53 root      0:00 [kworker/5:0H]\n   54 root      0:00 [rcuop/5]\n   55 root      0:00 [rcuos/5]\n   56 root      0:00 [rcuob/5]\n   57 root      0:00 [cpuhp/6]\n   58 root      0:00 [migration/6]\n   59 root      0:00 [ksoftirqd/6]\n   61 root      0:00 [kworker/6:0H]\n   62 root      0:00 [rcuop/6]\n   63 root      0:00 [rcuos/6]\n   64 root      0:00 [rcuob/6]\n   65 root      0:00 [cpuhp/7]\n   66 root      0:00 [migration/7]\n   67 root      0:00 [ksoftirqd/7]\n   68 root      0:00 [kworker/7:0]\n   69 root      0:00 [kworker/7:0H]\n   70 root      0:00 [rcuop/7]\n   71 root      0:00 [rcuos/7]\n   72 root      0:00 [rcuob/7]\n   73 root      0:00 [netns]\n   74 root      0:00 [kworker/u16:1]\n   75 root      0:00 [kworker/u17:0]\n   76 root      0:00 [ipa_usb_wq]\n   77 root      0:00 [kworker/6:1]\n   78 root      0:00 [msm_watchdog]\n   79 root      0:00 [spi_wdsp]\n   80 root      0:00 [qmp_aop]\n   81 root      0:00 [oom_reaper]\n   82 root      0:00 [writeback]\n   83 root      0:00 [kcompactd0]\n   84 root      0:00 [crypto]\n   85 root      0:00 [kblockd]\n   86 root      0:00 [blk_crypto_wq]\n   87 root      0:00 [irq/270-arm-smm]\n   88 root      0:00 [irq/279-arm-smm]\n   89 root      0:00 [irq/93-tsens-up]\n   90 root      0:00 [irq/94-tsens-cr]\n   91 root      0:00 [edac-poller]\n   92 root      0:00 [system]\n   93 root      0:00 [ipa_power_mgmt]\n   94 root      0:00 [transport_power]\n   95 root      0:00 [ipa_pm_activate]\n   96 root      0:00 [devfreq_wq]\n   97 root      0:00 [cfg80211]\n   98 root      0:00 [irq/82-qpnp_lcd]\n  104 root      0:00 [kworker/4:1]\n  109 root      0:00 [kworker/3:1]\n  112 root      0:00 [kworker/5:1]\n  117 root      0:00 [kworker/2:1]\n  121 root      0:00 [kworker/1:1]\n  140 root      0:00 [kswapd0]\n  141 root      0:00 [ecryptfs-kthrea]\n  179 root      0:00 [irq/86-wled_ovp]\n  180 root      0:00 [irq/88-wled_fla]\n  181 root      0:00 [irq/87-wled_pre]\n  182 root      0:00 [irq/283-arm-smm]\n  183 root      0:00 [irq/285-arm-smm]\n  184 root      0:00 [irq/90-smp2p]\n  185 root      0:00 [irq/91-smp2p]\n  186 root      0:00 [irq/92-smp2p]\n  187 root      0:00 [irq/286-arm-smm]\n  188 root      0:00 [kworker/6:2]\n  189 root      0:00 [mem_share_svc]\n  190 root      0:00 [cdsprm-wq]\n  191 root      0:00 [cdsprm-wq-delay]\n  192 root      0:00 [irq/287-arm-smm]\n  193 root      0:00 [diag_real_time_]\n  194 root      0:00 [diag_wq]\n  196 root      0:00 [DIAG_USB_diag]\n  197 root      0:00 [diag_cntl_wq]\n  198 root      0:00 [diag_dci_wq]\n  199 root      0:00 [MODEM_CNTL]\n  200 root      0:00 [MODEM_DATA]\n  201 root      0:00 [MODEM_CMD]\n  202 root      0:00 [MODEM_DCI]\n  203 root      0:00 [MODEM_DCI_CMD]\n  204 root      0:00 [LPASS_CNTL]\n  205 root      0:00 [LPASS_DATA]\n  206 root      0:00 [LPASS_CMD]\n  207 root      0:00 [LPASS_DCI]\n  208 root      0:00 [LPASS_DCI_CMD]\n  209 root      0:00 [WCNSS_CNTL]\n  210 root      0:00 [WCNSS_DATA]\n  211 root      0:00 [WCNSS_CMD]\n  212 root      0:00 [WCNSS_DCI]\n  213 root      0:00 [WCNSS_DCI_CMD]\n  214 root      0:00 [SENSORS_CNTL]\n  215 root      0:00 [SENSORS_DATA]\n  216 root      0:00 [SENSORS_CMD]\n  217 root      0:00 [SENSORS_DCI]\n  218 root      0:00 [SENSORS_DCI_CMD]\n  219 root      0:00 [DIAG_CTRL]\n  220 root      0:00 [DIAG_DATA]\n  221 root      0:00 [DIAG_CMD]\n  222 root      0:00 [DIAG_DCI_DATA]\n  223 root      0:00 [DIAG_DCI_CMD]\n  224 root      0:00 [CDSP_CNTL]\n  225 root      0:00 [CDSP_DATA]\n  226 root      0:00 [CDSP_CMD]\n  227 root      0:00 [CDSP_DCI]\n  228 root      0:00 [CDSP_DCI_CMD]\n  229 root      0:00 [NPU_CNTL]\n  230 root      0:00 [NPU_DATA]\n  231 root      0:00 [NPU_CMD]\n  232 root      0:00 [NPU_DCI]\n  233 root      0:00 [NPU_DCI_CMD]\n  234 root      0:00 [DIAG_RPMSG_APPS]\n  235 root      0:00 [DIAG_RPMSG_APPS]\n  236 root      0:00 [kworker/u16:2]\n  237 root      0:00 [DIAG_RPMSG_DIAG]\n  238 root      0:00 [DIAG_RPMSG_DIAG]\n  239 root      0:00 [DIAG_RPMSG_DIAG]\n  240 root      0:00 [DIAG_RPMSG_DIAG]\n  241 root      0:00 [DIAG_RPMSG_DIAG]\n  242 root      0:00 [DIAG_RPMSG_DIAG]\n  243 root      0:00 [DIAG_RPMSG_DIAG]\n  244 root      0:00 [DIAG_RPMSG_DIAG]\n  245 root      0:00 [kworker/u16:3]\n  246 root      0:00 [mykthread]\n  247 root      0:00 [kworker/u16:4]\n  248 root      0:00 [kworker/u16:5]\n  249 root      0:00 [kworker/u16:6]\n  251 root      0:00 [irq/284-arm-smm]\n  252 root      0:00 [irq/288-arm-smm]\n  253 root      0:00 [irq/138-esd_err]\n  254 root      0:00 [crtc_commit:100]\n  255 root      0:00 [crtc_event:100]\n  256 root      0:00 [crtc_commit:137]\n  257 root      0:00 [crtc_event:137]\n  258 root      0:00 [pp_event]\n  259 root      0:00 [kgsl-workqueue]\n  260 root      0:00 [kgsl-mementry]\n  261 root      0:00 [kgsl_worker_thr]\n  262 root      0:00 [irq/271-arm-smm]\n  263 root      0:00 [irq/272-arm-smm]\n  264 root      0:00 [kgsl-events]\n  265 root      0:00 [kgsl_devfreq_wq]\n  266 root      0:00 [kworker/7:1]\n  267 root      0:00 [qseecom-unreg-l]\n  268 root      0:00 [qseecom-unload-]\n  269 root      0:00 [memory_wq]\n  270 root      0:00 [irq/379-ant-swi]\n  271 root      0:00 [irq/192-ant-div]\n  272 root      0:00 [irq/289-arm-smm]\n  273 root      0:00 [qcrypto_seq_res]\n  274 root      0:00 [irq/290-arm-smm]\n  296 root      0:00 [scsi_eh_0]\n  297 root      0:00 [scsi_tmf_0]\n  298 root      0:00 [ufs_pm_qos_0]\n  299 root      0:00 [ufs_clk_gating_]\n  300 root      0:00 [ufs_clkscaling_]\n  302 root      0:00 [spi0]\n  303 root      0:00 [bond0]\n  309 root      0:00 [uether]\n  310 root      0:00 [k_ipa_usb]\n  313 root      0:00 [irq/281-arm-smm]\n  314 root      0:00 [rot_commitq_0_0]\n  315 root      0:00 [rot_commitq_0_1]\n  316 root      0:00 [rot_doneq_0_0]\n  317 root      0:00 [rot_doneq_0_1]\n  318 root      0:00 [rot_fenceq_0_0]\n  319 root      0:00 [rot_fenceq_0_1]\n  320 root      0:00 [rot_fenceq_0_2]\n  321 root      0:00 [rot_fenceq_0_3]\n  322 root      0:00 [rot_fenceq_0_4]\n  323 root      0:00 [rot_fenceq_0_5]\n  324 root      0:00 [rot_fenceq_0_6]\n  325 root      0:00 [rot_fenceq_0_7]\n  326 root      0:00 [rot_fenceq_0_8]\n  327 root      0:00 [rot_fenceq_0_9]\n  328 root      0:00 [rot_fenceq_0_10]\n  329 root      0:00 [rot_fenceq_0_11]\n  330 root      0:00 [rot_fenceq_0_12]\n  331 root      0:00 [rot_fenceq_0_13]\n  332 root      0:00 [rot_fenceq_0_14]\n  333 root      0:00 [rot_fenceq_0_15]\n  334 root      0:00 [msm_vidc_worker]\n  335 root      0:00 [pm_workerq_venu]\n  336 root      0:00 [irq/291-arm-smm]\n  337 root      0:00 [irq/292-arm-smm]\n  338 root      0:00 [irq/293-arm-smm]\n  339 root      0:00 [irq/294-arm-smm]\n  340 root      0:00 [cam-cpas]\n  341 root      0:00 [qcom,cam_virtua]\n  342 root      0:00 [irq/295-arm-smm]\n  343 root      0:00 [qcom,cam170-cpa]\n  344 root      0:00 [irq/296-arm-smm]\n  345 root      0:00 [cam_cci_wq]\n  346 root      0:00 [cam_cci_wq]\n  347 root      0:00 [irq/297-arm-smm]\n  348 root      0:00 [irq/298-arm-smm]\n  349 root      0:00 [irq/299-arm-smm]\n  350 root      0:00 [irq/144-bq2597x]\n  352 root      0:00 [kworker/0:2]\n  353 root      0:00 [kworker/u16:11]\n  354 root      0:00 [kworker/u16:12]\n  355 root      0:00 [kworker/u16:13]\n  359 root      0:00 [irq/57-qcom,tem]\n  360 root      0:00 [irq/64-qcom,tem]\n  361 root      0:00 [irq/360-limits_]\n  362 root      0:00 [kworker/0:1H]\n  363 root      0:00 [irq/361-limits_]\n  364 root      0:00 [kworker/6:1H]\n  365 root      0:00 [irq/54-bcl-lvl0]\n  366 root      0:00 [irq/55-bcl-lvl1]\n  367 root      0:00 [irq/56-bcl-lvl2]\n  368 root      0:00 [irq/65-bcl-lvl0]\n  369 root      0:00 [irq/66-bcl-lvl1]\n  370 root      0:00 [irq/67-bcl-lvl2]\n  371 root      0:00 [dm_bufio_cache]\n  372 root      0:00 [irq/29-KRYO L3-]\n  373 root      0:00 [mmc_clk_gate/mm]\n  374 root      0:00 [mmc_clk_gate/mm]\n  375 root      0:00 [irq/35-8804000.]\n  376 root      0:00 [irq/34-mmc0]\n  377 root      0:00 [irq/200-8804000]\n  378 root      0:00 [irq/300-arm-smm]\n  379 root      0:00 [uaudio_svc]\n  381 root      0:00 [apr_driver]\n  382 root      0:00 [ipv6_addrconf]\n  392 root      0:00 [irq/385-qg-vbat]\n  393 root      0:00 [irq/386-qg-vbat]\n  394 root      0:00 [irq/387-qg-fifo]\n  395 root      0:00 [irq/388-qg-good]\n  396 root      0:00 [irq/389-chgr-er]\n  397 root      0:00 [irq/390-chg-sta]\n  398 root      0:00 [irq/397-otg-fai]\n  400 root      0:00 [irq/401-high-du]\n  401 root      0:00 [irq/402-input-c]\n  403 root      0:00 [irq/404-switche]\n  405 root      0:00 [irq/405-bat-tem]\n  406 root      0:00 [irq/406-bat-ov]\n  407 root      0:00 [irq/407-bat-low]\n  408 root      0:00 [irq/408-bat-the]\n  409 root      0:00 [irq/409-bat-ter]\n  410 root      0:00 [irq/412-usbin-c]\n  411 root      0:00 [kworker/2:2]\n  412 root      0:00 [irq/413-usbin-v]\n  413 root      0:00 [irq/414-usbin-u]\n  414 root      0:00 [irq/415-usbin-o]\n  415 root      0:00 [irq/416-usbin-p]\n  416 root      0:00 [irq/418-usbin-s]\n  417 root      0:00 [irq/419-usbin-i]\n  418 root      0:00 [irq/421-dcin-uv]\n  419 root      0:00 [irq/422-dcin-ov]\n  420 root      0:00 [irq/423-dcin-pl]\n  421 root      0:00 [irq/425-dcin-po]\n  422 root      0:00 [irq/426-dcin-en]\n  423 root      0:00 [irq/427-typec-o]\n  424 root      0:00 [irq/429-typec-c]\n  425 root      0:00 [irq/430-typec-v]\n  426 root      0:00 [irq/432-typec-a]\n  427 root      0:00 [irq/433-typec-l]\n  428 root      0:00 [irq/435-wdog-sn]\n  429 root      0:00 [irq/436-wdog-ba]\n  430 root      0:00 [irq/438-aicl-do]\n  431 root      0:00 [irq/439-smb-en]\n  432 root      0:00 [irq/441-temp-ch]\n  433 root      0:00 [irq/443-sdam-st]\n  434 root      0:00 [irq/45-thr-int-]\n  435 root      0:00 [kworker/4:2]\n  436 root      0:00 [irq/69-thr-int-]\n  443 root      0:00 [irq/46-sig-tx]\n  444 root      0:00 [irq/47-sig-rx]\n  445 root      0:00 [irq/251-pwr_eve]\n  446 root      0:00 [irq/250-dp_hs_p]\n  447 root      0:00 [irq/253-dm_hs_p]\n  448 root      0:00 [irq/252-ss_phy_]\n  449 root      0:00 [irq/301-arm-smm]\n  450 root      0:00 [usb_bam_wq]\n  451 root      0:00 [fts_wq]\n  452 root      0:00 [kworker/5:2]\n  454 root      0:00 [mmcqd/0]\n  455 root      0:00 [irq/182-fts_ts]\n  456 root      0:00 [core_ctl/0]\n  457 root      0:00 [core_ctl/6]\n  462 root      0:00 [rq_stats]\n  463 root      0:00 [msm_perf:events]\n  464 root      0:00 [irq/302-arm-smm]\n  465 root      0:00 [irq/303-arm-smm]\n  466 root      0:00 [irq/304-arm-smm]\n  467 root      0:00 [irq/305-arm-smm]\n  468 root      0:00 [irq/306-arm-smm]\n  469 root      0:00 [irq/307-arm-smm]\n  470 root      0:00 [irq/308-arm-smm]\n  471 root      0:00 [irq/309-arm-smm]\n  472 root      0:00 [irq/310-arm-smm]\n  473 root      0:00 [irq/311-arm-smm]\n  474 root      0:00 [irq/312-arm-smm]\n  475 root      0:00 [drm_dp]\n  476 root      0:00 [sb-3]\n  477 root      0:00 [ngd_rx_thread3]\n  478 root      0:00 [ngd_notify_sl3]\n  479 root      0:00 [irq/85-qpnp_fla]\n  480 root      0:00 [irq/84-qpnp_fla]\n  481 root      0:00 [irq/83-qpnp_fla]\n  615 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm6150ac/new/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1101.770545,3.6725684833333334,246.84771026820692,67.21854213322923,4.463054247820351,272.307740105\r\n1,576000,2125.473804,3.6900586875000005,268.0039643111961,37.8303479740491,7.930141171468852,141.155926821\r\n1,748800,2766.481312,3.694553034188034,282.74063822795597,30.663340336661,9.783669903742382,108.450417771\r\n1,1017600,3763.407138,3.698316762971698,307.3495827262082,24.5022450651229,12.243775996960679,79.721094292\r\n1,1209600,4475.407635,3.699907105654762,323.6785413104457,21.699173200181583,13.82541155980494,67.039270235\r\n1,1363200,5045.323826,3.701088487382629,336.9200895657882,20.035800858416113,14.97319733411025,59.467516123\r\n1,1516800,5614.718048,3.701686476793249,353.17197042602834,18.872003243676915,15.8965636094046,53.435733365\r\n1,1593600,5899.821039,3.7021969371234946,360.46582353989606,18.331014441468472,16.365706380184783,50.85368222\r\n1,1708800,6327.378567,3.7028198542837076,375.5340373077302,17.80705523444595,16.847254981254864,47.417952743\r\n6,300000,2327.746741,7.759155803333333,275.49988650468634,35.511056268223726,8.448073122185562,128.896809065\r\n6,652800,5075.111652,7.774374466911764,329.9212122158334,19.508118340770686,15.37821304748904,59.129627373\r\n6,768000,5969.911645,7.773322454427084,348.2261135786081,17.50528257800769,17.137683934156954,50.26987321\r\n6,979200,7614.599726,7.776347759395425,392.23321341002566,15.460002579796738,19.404912673950168,39.415332642\r\n6,1017600,7916.193894,7.779278590801886,404.3245388234667,15.329309498821885,19.57035312145378,37.913379048\r\n6,1209600,9407.927747,7.777718044808202,452.30394240409527,14.43046179495091,20.789355480291512,31.904346706\r\n6,1363200,10599.583083,7.775515759242957,531.0751335995983,15.040223503025453,19.946512094029238,28.320330875\r\n6,1516800,11801.730921,7.780677031250001,594.1338340110901,15.11333488049799,19.8500200235168,25.437593376\r\n6,1708800,13293.747507,7.779580704002809,705.5768705448652,15.934806836577975,18.82671080212639,22.584083325\r\n6,1900800,14784.879996,7.778240738636364,847.8390484313376,17.21821292770087,17.423410969518002,20.30835093\r\n6,2016000,15683.814304,7.779669793650793,941.5068645103468,18.02546632937681,16.643120045725432,19.145337128\r\n6,2112000,16434.754027,7.781607020359848,1031.1489247363472,18.840617485352222,15.923044997502723,18.271480514\r\n6,2208000,17178.195144,7.779979684782609,1157.469231690261,20.231925795677117,14.82804963945152,17.479450202\r\n"
  },
  {
    "path": "results/sm6150ac/new/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1645.0006574951112, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [435.621790384, 422.55005121, 433.26425772, 429.60584473600005, 430.85972432799997, 436.81133186399995, 426.080254073, 427.248372268, 433.242707424, 424.165860881, 422.57117692500003, 430.88115609, 427.35508176, 427.35508176, 430.88115609, 425.29352322, 424.92925251, 435.600010054, 423.73965186, 429.73452096, 438.08824585600007, 423.041844294, 429.69155544, 434.51890954600003, 423.718575312, 424.950497175, 435.66523935000004, 419.43701358600003, 435.70868831600006, 433.32913077600006, 422.676588826, 423.76083704999996, 438.02266032, 427.31235414, 422.65557144800005, 422.634445733, 430.945672322, 426.229165912, 433.30758048, 423.887730906, 433.112961312, 423.803098788, 432.11396016000003, 429.7130382, 423.803098788, 427.33371795, 424.20835021100004, 430.945672322, 426.16536216, 426.229165912, 426.186557242, 435.730468646, 427.732144749, 421.423541248, 430.967214557, 435.57822972400004, 430.92424055999993, 436.92030689099994, 419.499926154, 428.54480136, 421.36045055999995, 427.397699822, 430.988756792, 432.17865451200004, 433.76012767799995, 432.11396016000003, 430.945672322, 429.8417144240001, 429.798859072, 432.13545109200004, 426.566045044, 434.49730007999995, 421.423541248, 438.08824585600007, 426.207861577, 422.59230264, 425.056502606, 422.59230264, 429.798859072, 429.77737631200006, 466.44907136399996, 422.676588826, 471.92754157999997, 474.283807375, 427.4190636320001, 432.13545109200004, 423.887730906, 423.803098788, 419.081976984, 419.56283872200004, 424.99287755800003, 434.51890954600003, 432.157052802, 427.33371795, 424.950497175, 421.875328374, 432.13545109200004, 423.803098788, 415.49151515399996, 424.97174184, 426.250360994, 426.60866310600005, 425.03536688800006, 428.566114782, 416.72290287800007, 417.93374738800003, 427.376336012, 427.4190636320001, 417.871191644, 426.186557242, 423.824283978, 425.03536688800006, 427.397699822, 421.52865638400004, 421.790933851, 423.824283978, 419.10281665800005, 420.254769243], \"power_mean\": 428.488280748, \"energy_millijoules\": 2142.44140374, \"energy_joules\": 2.1424414037400004}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 272.307740105, \"elapsed_ns\": 272307740105, \"power_samples\": [259.9467790940001, 251.52359058999997, 243.33333525500012, 251.5569751750001, 248.94791927900002, 257.56983357400014, 258.825789594, 248.19080921400013, 255.22645125900004, 251.52359058999997, 252.87893402200012, 246.27423165300007, 259.879350223, 239.73105227800016, 248.0581548620001, 251.5569751750001, 245.64439537200002, 249.346253934, 264.670702126, 243.30036719000003, 246.7042886430001, 258.7920479640001, 250.302141738, 242.7081254890001, 256.41498349400007, 250.43510038200003, 250.36862105999995, 268.20562151400003, 255.12593376299998, 245.61130835699993, 268.000665546, 246.90282878700015, 248.02511899000007, 253.93757964800005, 251.52359058999997, 255.8108097980001, 257.50264199300017, 247.9919128300001, 250.40194617000003, 250.33529595, 245.57822134200006, 252.81204590200008, 250.16901219599998, 257.4689598380001, 250.40194617000003, 253.87074400199998, 247.95870667000003, 250.40194617000003, 239.69843098400014, 250.43510038200003, 251.69034231200004, 247.95870667000003, 249.08064063299997, 255.29340554999993, 260.9026439960001, 251.5569751750001, 255.12593376299998, 263.3125641660001, 250.36862105999995, 249.313158892, 248.02511899000007, 252.645168618, 258.825789594, 249.24662762200006, 247.9919128300001, 257.43545041199997, 252.6786126780001, 242.013337422, 249.21353258000005, 247.95870667000003, 264.602623726, 269.4623544380001, 258.690996108, 248.71540102, 262.2599546960001, 242.013337422, 246.80355871499995, 257.5363241480001, 253.8372402720001, 259.7781202470001, 256.280665198, 252.71188523000006, 240.79236212400002, 252.81204590200008, 247.85925847800007, 242.7409244870001, 243.10289693400006, 246.77041203000005, 261.03773980600005, 255.05897947199998, 249.18026694500003, 245.67731271000008, 247.925670798, 253.87074400199998, 250.40194617000003, 251.5569751750001, 242.013337422, 255.77735954200006, 263.38052361600006, 246.737435328, 247.89246463800004, 264.5347198860001, 251.45699262300008, 246.737435328, 257.166511359, 247.95870667000003, 257.4689598380001, 266.71036780699995, 252.6786126780001, 247.46163599800008, 247.925670798, 249.08064063299997, 240.79236212400002, 254.95846197600002, 246.67114195800008, 251.49037720799998, 260.80123531600015, 246.7042886430001, 250.43510038200003, 247.89246463800004, 247.85925847800007, 239.60023080000013, 253.7369008959999, 254.95846197600002, 269.32559682000004, 254.92489877100007, 247.89246463800004, 242.11189443000006, 247.62732622200002, 241.9476890040001, 253.80373654200008, 253.80373654200008, 264.5347198860001, 257.5363241480001, 247.85925847800007, 245.01692982599997, 248.02511899000007, 247.925670798, 247.89246463800004, 262.1244476460001, 258.253220088, 256.112896646, 255.05897947199998, 245.51221698900002, 240.82504278200003, 248.02511899000007, 252.61172455800005, 249.93624912000013, 251.59035976000013, 250.26881662800002, 252.545007946, 260.9026439960001, 245.51221698900002, 250.26881662800002, 253.80373654200008, 250.20233730600006, 247.9919128300001, 285.688342587, 241.9476890040001, 252.14453676600004, 265.654873396, 246.7042886430001, 250.36862105999995, 256.17996958200007, 252.57845200600008, 246.63816525600004, 257.03195546800015, 245.51221698900002, 262.1244476460001, 259.7781202470001, 247.82622260600004, 254.52300090599994, 253.80373654200008, 254.99185306200008, 262.05678109599995, 252.61172455800005, 247.89246463800004, 252.57845200600008, 260.69982663600007, 247.79301644600008, 250.26881662800002, 247.82622260600004, 251.52359058999997, 241.91478041399995, 258.65725447799997, 249.01427995599994, 251.35701007100005, 266.6422262879999, 247.89246463800004, 252.61172455800005, 252.2112533780001, 244.29101345400005, 252.7787733500001, 250.26881662800002, 240.72666389400007, 257.36808610200006, 254.85794447999996, 242.97136280800015, 252.71188523000006, 245.47912997400005, 257.4689598380001, 245.57822134200006, 253.435882768, 245.47912997400005, 256.17996958200007, 272.6494665820001, 257.36808610200006, 294.0104552760001, 247.75998057400017, 250.89048189600004, 243.26756819200006, 249.08064063299997, 244.22512774600006, 260.835096091, 260.80123531600015, 251.52359058999997, 252.57845200600008, 244.2581552860001, 239.50203061600013, 238.44455745400006, 247.75998057400017, 254.5563919920001, 258.55620262199994, 245.51221698900002, 250.23549151799995, 257.43545041199997, 250.23549151799995, 251.49037720799998, 255.02541626700014, 247.85925847800007, 252.545007946, 258.52263402600005, 251.42360803800005, 242.67515742400013, 248.98101432099992, 250.20233730600006, 256.112896646, 250.16901219599998, 247.89246463800004, 246.737435328, 256.863890151, 248.98101432099992, 253.87074400199998, 254.92489877100007, 246.53889518400007, 257.98380615, 245.47912997400005, 247.85925847800007, 246.60501857100002, 261.955194296, 246.57204186899997, 250.10253287400013, 254.5563919920001, 245.413125621, 246.60501857100002, 253.70356898000006, 251.45699262300008, 317.92384182100005, 262.2260344459999, 249.04737499799995, 245.34712126800008, 255.02541626700014, 247.75998057400017, 251.35701007100005, 255.710286606, 246.67114195800008, 254.03791902400002, 259.71069137600006, 251.39039465600007, 243.07009793600008, 256.14651932600003, 246.472771797, 247.75998057400017, 246.7042886430001, 253.8372402720001, 252.7787733500001, 261.8875277459999, 252.61172455800005, 242.07915460200007, 252.51173539400003, 247.89246463800004, 248.94791927900002, 246.63816525600004, 246.67114195800008, 246.80355871499995, 234.68486505700008, 256.07944639, 251.45699262300008, 246.60501857100002, 252.51173539400003, 330.8131331460001, 248.98101432099992, 250.16901219599998, 249.1470013099999, 243.07009793600008, 235.41708566199992, 244.3240409940001, 247.82622260600004, 245.47912997400005, 258.4888923959999, 256.07944639, 246.7042886430001, 277.26622066700014, 238.31397326600012, 238.281243296, 251.22381413700003, 247.82622260600004, 325.7619366510001, 264.39891220600003, 251.29041210400004, 251.32379668900006, 259.60946140000004, 244.22512774600006, 242.93839474300006, 259.3057714720001, 237.09324542100006, 251.35701007100005, 247.75998057400017, 244.1922695780001, 262.158367896, 245.38020828299994, 240.66113412099998, 248.8813880090001, 253.80373654200008, 246.50574849900005, 250.16901219599998, 253.23537583, 241.78348357800002, 248.98101432099992, 257.36808610200006, 242.97136280800015, 245.38020828299994, 256.14651932600003, 252.37813066200016, 248.94791927900002, 254.89150768500002, 252.47829133400018, 247.7267744140002, 258.15216823200007, 246.57204186899997, 323.72004708899993, 254.824381275, 244.1922695780001, 245.47912997400005, 262.090701346, 246.00956812200008, 243.10289693400006, 260.6322787310001, 243.10289693400006, 240.66113412099998, 248.98101432099992, 246.60501857100002, 247.925670798, 253.6032296040001, 255.97875077400005, 257.2337029400002, 252.3114140500001, 327.0644446610001, 238.37926536000003, 250.0027284420001, 245.44621263599998, 246.63816525600004, 264.26292996599994, 256.112896646, 253.63656152000004, 247.62732622200002, 250.13585798399998, 252.6786126780001, 243.00433087300001, 240.16940813800005, 256.0458237100001, 252.545007946, 252.4448472740001, 254.757426984, 248.914653644, 240.66113412099998, 249.73664025600004, 245.28111691499993, 250.16901219599998, 248.914653644, 239.33841969300005, 267.966623202, 248.94791927900002, 246.53889518400007, 243.037129871, 251.32379668900006, 245.38020828299994, 235.87280376200005, 242.543623298, 243.00433087300001, 311.725580717, 261.92144799600004, 245.314034253, 242.93839474300006, 251.35701007100005, 237.060742467, 240.62845346299997, 254.757426984, 250.10253287400013, 250.10253287400013, 261.48118054599996, 246.53889518400007, 248.8813880090001, 246.50574849900005, 240.53007457500001, 234.7498012160001, 254.79099018900007, 310.465278072, 260.835096091, 254.85794447999996, 244.22512774600006, 251.25702751900002, 247.4284298380001, 229.96136309599996, 239.50203061600013, 246.60501857100002, 246.60501857100002, 257.26738509500007, 253.56972587399997, 244.88475144299997, 240.56275523300002, 250.10253287400013, 240.62845346299997, 237.125915916, 243.00433087300001, 246.57204186899997, 250.23549151799995, 254.72386377900006, 235.80758172199995, 238.1832212320001, 246.50574849900005, 240.23493791100003, 236.03552439000003, 239.43661987700006, 238.15065910800007, 252.57845200600008, 253.46938649800012, 240.56275523300002, 247.52787803000007, 247.7267744140002, 291.4541818630001, 237.15841887000005, 235.87280376200005, 235.41708566199992, 243.037129871, 244.0273012500001, 245.38020828299994, 256.0122010300001, 250.06920776400005, 232.24022796600008, 235.64486109399996, 240.53007457500001, 254.89150768500002, 260.80123531600015, 246.63816525600004, 235.905247546, 250.10253287400013, 246.57204186899997, 245.21494288500008, 255.94512809400004, 239.37104098700007, 251.35701007100005, 261.6843541460001, 241.78348357800002, 234.65231351200003, 244.1922695780001, 238.15065910800007, 239.43661987700006, 241.7178351600001, 241.29069853800007, 242.93839474300006, 257.0991470490001, 244.1922695780001, 242.8726276800001, 249.83644468799997, 245.314034253, 235.775137938, 241.7505749880001, 240.53007457500001, 246.53889518400007, 250.10253287400013, 238.15065910800007, 252.4448472740001, 245.28111691499993, 241.78348357800002, 247.75998057400017, 248.81502733200006, 253.6032296040001, 254.79099018900007, 254.85794447999996, 261.8198611960001, 245.413125621, 239.37104098700007, 246.37350172500004, 238.1832212320001, 244.12621449800002, 244.15924203800006, 256.112896646, 259.542032529, 244.06032879000014, 240.333316799, 244.22512774600006, 232.20796188600008, 239.33841969300005, 244.1922695780001, 234.4247865590001, 250.23549151799995, 244.12621449800002, 236.99540147700003, 238.34653539000004, 241.78348357800002, 240.46437634500006, 246.042544824, 241.65201798000004, 250.0027284420001, 252.6786126780001, 234.65231351200003, 242.93839474300006, 245.44621263599998, 238.15065910800007, 245.314034253, 238.15065910800007, 244.15924203800006, 250.03605355200006, 238.94561895700002, 246.50574849900005, 239.3056302480001, 233.496926352, 245.24802990000006, 244.15924203800006, 248.84829296699996, 250.89048189600004, 236.8975575330001, 254.85794447999996, 240.53007457500001, 240.5956043480001, 245.24802990000006, 240.62845346299997, 238.0851991680001, 246.53889518400007, 238.11792913800008, 238.05263704400005, 258.42158217, 241.25795871000008, 245.34712126800008, 251.22381413700003, 238.11792913800008, 245.24802990000006, 254.72386377900006, 234.5548258080001, 252.37813066200016, 255.97875077400005, 242.93839474300006, 238.11792913800008, 253.56972587399997, 245.97642143700006, 239.403830432, 240.5956043480001, 238.05263704400005, 239.33841969300005, 251.19042955200013, 244.12621449800002, 254.58995519700005, 248.8813880090001, 241.7505749880001, 248.84829296699996, 246.40647842700008, 247.19649758200006, 245.28111691499993, 256.9310817320002, 244.06032879000014, 240.5956043480001, 245.28111691499993, 250.03605355200006, 250.85726851400005, 242.8726276800001, 241.78348357800002, 241.7178351600001, 251.02384903299998, 240.43169568700006, 243.037129871, 235.64486109399996, 238.11792913800008, 232.36979124600003, 244.12621449800002, 245.314034253, 236.7345401400001, 254.52300090599994, 236.93022802800004, 237.060742467, 241.68492657000007, 244.06032879000014, 233.46443428200013, 241.55346097199998, 241.61927815200016, 252.37813066200016, 253.40255085199993, 236.8975575330001, 237.69327875800008, 232.17552948600002, 236.93022802800004, 237.02807197199996, 235.742526918, 252.3114140500001, 251.19042955200013, 249.73664025600004, 239.3056302480001, 245.314034253, 239.3056302480001, 242.93839474300006, 242.90559574500008, 241.61927815200016, 241.7505749880001, 242.77389255200006, 244.09335633000006, 234.48988964900008, 246.50574849900005, 230.82629578100006, 271.3930307279999, 243.92838800200008, 241.7178351600001, 238.11792913800008, 247.59412006200006, 239.403830432, 240.46437634500006, 241.68492657000007, 239.24021950900016, 239.33841969300005, 246.34035504000013, 241.323607128, 244.09335633000006, 257.03195546800015, 238.11792913800008, 244.0273012500001, 238.05263704400005, 235.61225007399997, 234.16487499200008, 240.49722546000004, 238.05263704400005, 247.7267744140002, 254.623346283, 241.68492657000007, 234.48988964900008, 245.18202554700002, 228.5480836110001, 234.5548258080001, 249.93624912000013, 242.8726276800001, 243.9614155420001, 257.13282920399996, 239.27284080300007, 243.9614155420001, 242.8726276800001, 241.61927815200016, 244.09335633000006, 246.37350172500004, 242.83965961500013, 247.7267744140002, 252.3114140500001, 238.05263704400005, 236.604193242, 249.93624912000013, 241.65201798000004, 241.7178351600001, 245.24802990000006, 246.40647842700008, 234.619761967, 254.38892020500003, 279.676019835, 245.18202554700002, 239.27284080300007, 241.58636956200013, 241.68492657000007, 244.0273012500001, 246.439625112, 246.67114195800008, 230.92324854099996, 240.56275523300002, 248.78176169700004, 251.8440547500001, 233.33463262800007, 247.56108419000014, 229.83244071600012, 247.59412006200006, 246.439625112, 239.27284080300007, 251.1570449670001, 247.56108419000014, 236.79971358899996, 249.93624912000013, 251.1570449670001, 236.53885225200003, 252.34468660200008, 243.99444308200003, 232.11083100599996, 235.64486109399996, 248.71540102, 240.365997457, 229.3162540660001, 251.02384903299998, 246.40647842700008, 248.68213538499998, 248.68213538499998, 239.2074300640001, 240.46437634500006, 245.24802990000006, 241.58636956200013, 245.24802990000006, 253.435882768, 247.59412006200006, 244.7525730600001, 249.90292401000005, 238.11792913800008, 235.67747211400007, 241.65201798000004, 237.95461498000003, 235.64486109399996, 246.27423165300007, 285.5480813, 242.80686061700004, 255.94512809400004, 232.07839860600012, 242.543623298, 251.12383158500012, 241.68492657000007, 241.65201798000004, 247.56108419000014, 232.14309708600007, 248.68213538499998, 255.57596830999995, 246.37350172500004, 239.37104098700007, 248.68213538499998, 238.11792913800008, 230.43848474100008, 240.43169568700006, 258.08485800600005, 253.53622214400008, 247.49467187, 233.237323044, 229.8969019060001, 251.94421542200013, 239.24021950900016, 240.43169568700006, 242.80686061700004, 252.3114140500001, 250.03605355200006, 241.61927815200016, 234.48988964900008, 240.53007457500001, 239.17464061900006, 235.64486109399996, 247.52787803000007, 238.71642914400007, 253.435882768, 259.4408025530001, 244.0273012500001, 248.74866665500002, 244.12621449800002, 239.27284080300007, 234.16487499200008, 236.86505457900006, 240.43169568700006, 245.24802990000006, 253.56972587399997, 232.91306884800014, 235.70991589800002, 248.71540102, 316.44314663000006, 233.36712469800005, 234.39240194500013, 233.30230718400009, 247.26273961400005, 255.8444324780001, 248.74866665500002, 245.18202554700002, 248.74866665500002, 239.24021950900016, 235.67747211400007, 245.18202554700002, 234.48988964900008, 251.0904470000001, 252.3114140500001, 242.64235842600004, 241.19214153000001, 243.92838800200008, 240.39884657199997, 229.67103917599997, 248.74866665500002, 235.54719527000015, 247.52787803000007, 252.96768961800007, 245.18202554700002, 241.48781255400007, 240.49722546000004, 248.74866665500002, 235.319419838, 240.46437634500006, 237.98717710400007, 248.71540102, 254.4894377010001, 228.58017218100002, 239.14201932500004, 242.67515742400013, 236.7345401400001, 241.7505749880001, 248.71540102, 235.61225007399997, 243.92838800200008, 253.30221147599997, 240.365997457, 241.58636956200013, 241.520721144, 235.57980629000002, 236.99540147700003, 238.9128295120002, 233.33463262800007, 247.62732622200002, 304.05617909400013, 241.45507272600008, 245.14893853200005, 246.3072083550001, 239.87427147400007, 236.99540147700003, 238.0851991680001, 240.46437634500006, 255.94512809400004, 260.2605047860001, 241.520721144, 246.34035504000013, 236.86505457900006, 239.2074300640001, 234.58737735300002, 246.34035504000013, 243.53290438200003, 255.8108097980001, 234.45733810400014, 246.24108496800017, 245.14893853200005, 243.92838800200008, 237.95461498000003, 243.9614155420001, 238.05263704400005, 249.90292401000005, 249.86959890000008, 241.520721144, 243.7966165860002, 240.2677870259999, 246.24108496800017, 241.58636956200013, 246.37350172500004, 232.04596620600006, 246.37350172500004, 254.22144841799997, 234.48988964900008, 235.61225007399997, 251.1570449670001, 243.9614155420001, 236.7345401400001, 238.0851991680001, 239.2074300640001, 245.14893853200005, 253.36904712200004, 235.64486109399996, 240.30046768400013, 241.1264931120001, 245.11585151699995, 240.365997457, 243.89552983400011, 228.4835756610001, 239.17464061900006, 251.0904470000001, 245.11585151699995, 241.55346097199998, 243.89552983400011, 249.57035650200004, 241.520721144, 243.4998768420001, 235.70991589800002, 244.09335633000006, 249.83644468799997, 238.0851991680001, 239.1092298800001, 242.67515742400013, 235.286808818, 235.61225007399997, 239.17464061900006, 234.45733810400014, 246.50574849900005, 254.690472693, 239.2074300640001, 240.39884657199997, 247.49467187, 236.7345401400001, 241.55346097199998, 247.4284298380001, 260.0576874260001, 240.53007457500001, 236.79971358899996, 242.64235842600004, 241.520721144, 240.333316799, 234.45733810400014, 243.82964412600012, 239.1092298800001, 241.55346097199998, 236.99540147700003, 228.5158296360001, 238.6183971110001, 241.48781255400007, 241.55346097199998, 242.77389255200006, 246.34035504000013, 239.07660858599996, 243.89552983400011, 234.06738728800002, 240.20208879599994, 239.1092298800001, 242.64235842600004, 245.082934179, 233.10768801600005, 239.0110296960001, 236.7345401400001, 241.520721144, 248.64904034300008, 239.17464061900006, 236.86505457900006, 248.084548106, 236.7345401400001, 279.537125829, 243.82964412600012, 237.92188501000004, 255.710286606, 255.710286606, 237.98717710400007, 233.10768801600005, 240.39884657199997, 241.520721144, 241.520721144, 237.431942536, 239.17464061900006, 245.14893853200005, 245.082934179, 229.63889143600005, 237.889322886, 246.3072083550001, 316.97107924100004, 242.77389255200006, 245.01692982599997, 236.79971358899996, 233.2698151140001, 246.99760119800004, 236.669366691, 238.11792913800008, 241.520721144, 237.889322886, 243.8625022940002, 246.1749615810001, 235.0914771699999, 233.237323044, 253.16836837, 236.7345401400001, 246.439625112, 240.2677870259999, 234.45733810400014, 233.237323044, 246.34035504000013, 249.80311957800012, 240.365997457, 257.882754294, 236.34316436400007, 238.0851991680001, 236.7345401400001, 227.19985884600004, 251.0904470000001, 240.39884657199997, 245.01692982599997, 249.43722696000003, 247.26273961400005, 281.567045962, 240.53007457500001, 229.57443024599996, 238.94561895700002, 243.89552983400011, 245.01692982599997, 254.58995519700005, 260.49700927600014, 246.14181489600008, 235.61225007399997, 229.25179287600014, 239.1092298800001, 240.16940813800005, 247.39539396599997, 245.01692982599997, 259.3057714720001, 242.64235842600004, 234.32746578600012, 243.82964412600012, 239.14201932500004, 236.669366691, 236.669366691, 235.0914771699999, 243.82964412600012, 243.82964412600012, 248.58267966600005, 236.7345401400001, 240.333316799, 244.983842811, 239.87427147400007, 235.54719527000015, 243.8625022940002, 236.70203718599993, 244.983842811, 249.769965366, 241.520721144, 230.72934302100003, 239.1092298800001, 237.82386294600002, 236.63669619600006, 242.64235842600004, 236.18014697100006, 249.80311957800012, 244.983842811, 239.0110296960001, 241.35651571800003, 239.07660858599996, 237.92188501000004, 241.48781255400007, 246.1749615810001, 245.04984716400014, 253.33571520599997, 246.1749615810001, 238.78200803400006, 239.07660858599996, 235.54719527000015, 241.38925554600002, 241.520721144, 247.32898164600016, 234.3598504000002, 248.3168957719999, 249.67016093399997, 243.8625022940002, 233.07519594599995, 233.2049976, 243.69770333800005, 240.333316799, 237.95461498000003, 236.63669619600006, 253.435882768, 248.35016140700003, 241.38925554600002, 241.06084469400008, 241.45507272600008, 236.7345401400001, 238.01990707400006, 234.39240194500013, 242.67515742400013, 246.208108266, 240.2677870259999, 236.669366691, 246.208108266, 241.38925554600002, 230.69697009599992, 241.02793610400005, 236.669366691, 249.769965366, 253.23537583, 236.70203718599993, 233.14018008600004, 240.2677870259999, 241.1264931120001, 241.520721144, 238.94561895700002, 235.54719527000015, 242.64235842600004, 250.49072289100008, 231.949001646, 241.45507272600008], \"power_mean\": 246.84771026820692, \"energy_millijoules\": 67218.54213322923, \"energy_joules\": 67.21854213322923, \"coremark_score\": 1101.770545, \"coremarks_per_mhz\": 3.6725684833333334, \"ulpmark_cm_score\": 4.463054247820351}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [420.21286344, 419.520932919, 420.233762478, 428.566114782, 419.081976984, 416.743731023, 450.733461542, 411.93868936, 416.70218154400004, 424.99287755800003, 415.49151515399996, 422.71873191900005, 422.634445733, 416.70218154400004, 415.63657632599995, 422.71873191900005, 420.27577600800004, 420.254769243, 411.95917382000005], \"power_mean\": 420.90097333136845, \"energy_millijoules\": 2104.5048666568423, \"energy_joules\": 2.104504866656842}}, \"576000\": {\"active\": {\"elapsed_sec\": 141.155926821, \"elapsed_ns\": 141155926821, \"power_samples\": [254.45587449600004, 262.769934096, 261.54902104600006, 272.340071886, 263.8212931660001, 267.45423328199996, 265.1103437860001, 266.369485041, 266.30134352199997, 265.17836627100013, 265.17836627100013, 272.23688142200007, 279.43286606099997, 263.923236206, 285.33777939600003, 263.923236206, 259.204541496, 272.167969982, 263.8212931660001, 268.53862528300004, 269.79399272200004, 261.5151007959999, 272.271160446, 274.5458390080001, 268.60700409200007, 267.55671126600004, 272.23688142200007, 256.79669857000005, 271.01537759699994, 271.049773842, 263.8212931660001, 266.30134352199997, 275.594645502, 272.271160446, 261.6843541460001, 263.95710084600006, 260.3619134660001, 254.38892020500003, 269.6911584980001, 261.075007296, 269.8968269460001, 275.73282763800006, 273.4622195460001, 258.15216823200007, 268.5729025780001, 258.05111637600004, 259.17091373, 271.118389941, 258.01737474600003, 265.1103437860001, 275.767461978, 272.167969982, 266.40364338600006, 267.385973118, 259.0696837540001, 265.1103437860001, 271.08399369600005, 256.763016415, 265.24638875600016, 269.828329492, 268.60700409200007, 259.204541496, 273.42788115800005, 261.447434246, 267.45423328199996, 270.94676149800006, 269.8968269460001, 258.86722380199996, 266.26718517699993, 262.66816917600005, 260.42946137100006, 261.48118054599996, 261.48118054599996, 263.923236206, 271.96158905400006, 259.0020815440001, 278.106804898, 266.26718517699993, 256.79669857000005, 271.01537759699994, 261.48118054599996, 265.75568585700006, 266.30134352199997, 261.54902104600006, 263.8212931660001, 276.88530037000004, 266.199043658, 256.763016415, 261.5151007959999, 262.70214890100004, 261.48118054599996, 269.75983203800007, 261.447434246, 255.50889537400013, 261.48118054599996, 262.430833866, 255.54234563000006, 272.09923523799995, 266.335326696, 261.48118054599996, 272.23688142200007, 260.22664401100013, 263.753214766, 267.385973118, 262.70214890100004, 255.47527269400013, 265.1103437860001, 255.54234563000006, 263.8891970060001, 260.12523533100017, 267.385973118, 261.48118054599996, 274.64938629599993, 272.09923523799995, 265.0082226260001, 279.25915929, 263.48142484600015, 262.66816917600005, 269.828329492, 267.4200154620001, 259.1033115200001, 285.162587827, 271.99604477400004, 263.41352100600005, 270.8093529090001, 272.09923523799995, 254.32196591400003, 267.4200154620001, 266.16488531300007, 300.60357176299993, 273.28999660000005, 269.79399272200004, 265.1103437860001, 276.85060655500007, 267.4200154620001, 262.600383981, 274.51144144999995, 260.15909610600005, 264.9741239510001, 267.385973118, 266.16488531300007, 261.54902104600006, 278.106804898, 263.8891970060001, 263.65127172600006, 274.614988738, 264.9741239510001, 264.9741239510001, 279.25915929, 269.79399272200004, 267.45423328199996, 271.96158905400006, 262.6343637060001, 266.26718517699993, 272.030500494, 268.470246474, 267.385973118, 273.3588503780001, 273.083258264, 257.98380615, 268.60700409200007, 262.600383981, 268.5729025780001, 273.3245119900001, 278.106804898, 278.106804898, 280.44998032200004, 268.470246474, 262.769934096, 263.78725396600004, 265.0082226260001, 278.07222983000014, 269.828329492, 272.09923523799995, 275.66373657, 269.6911584980001, 268.53862528300004, 265.17836627100013, 259.0696837540001, 263.65127172600006, 274.476866585, 265.0082226260001, 253.13503645400004, 272.09923523799995, 274.51144144999995, 263.753214766, 267.21505949399995, 263.78725396600004, 266.0967437939999, 279.22434652500004, 263.78725396600004, 261.41351399599995, 282.7190445300001, 270.56910836700007, 263.78725396600004, 273.25548121, 315.674839674, 261.34584744599994, 273.25548121, 266.16488531300007, 264.5656393110001, 275.594645502, 280.4846739240001, 262.566404256, 272.13369095800005, 273.25548121, 262.53259878600005, 268.5729025780001, 264.9400252760001, 268.5729025780001, 276.88530037000004, 275.594645502, 262.53259878600005, 272.13369095800005, 266.335326696, 261.447434246, 266.0625854490001, 267.283495134, 263.78725396600004, 270.980981352, 275.66373657, 263.753214766, 267.317537478, 257.91632289, 254.28840270899997, 270.94676149800006, 267.18101715000006, 267.385973118, 271.89285431, 274.4422917199999, 263.753214766, 264.90610146600005, 272.0647795180001, 260.2941919160001, 272.09923523799995, 272.979889096, 261.447434246, 278.07222983000014, 265.0082226260001, 268.6412813870001, 272.09923523799995, 270.843749154, 270.53471212200003, 276.81591274, 266.13072696800003, 264.9741239510001, 289.77274669800005, 267.351755298, 270.877969008, 272.0647795180001, 264.9741239510001, 262.769934096, 272.0647795180001, 267.283495134, 266.0967437939999, 276.81591274, 268.4359691790001, 270.980981352, 261.3119271960001, 259.0020815440001, 275.73282763800006, 275.594645502, 260.15909610600005, 263.78725396600004, 276.746703027, 267.14679932999996, 263.8891970060001, 266.0967437939999, 261.3119271960001, 261.582767346, 269.51982682, 268.504347988, 270.843749154, 279.18953375999996, 270.53471212200003, 266.335326696, 260.09137455600006, 264.5997379860001, 264.90610146600005, 275.594645502, 261.3119271960001, 276.781396842, 276.781396842, 269.5541635900001, 258.4961050030001, 266.13072696800003, 261.3119271960001, 266.199043658, 264.9400252760001, 271.99604477400004, 283.80082303800003, 268.53862528300004, 265.99444393000005, 269.656997814, 262.53259878600005, 267.24927731400004, 263.6853109260001, 269.62266104400015, 266.0625854490001, 275.52537682199994, 273.1866274320001, 262.46463933600006, 263.6853109260001, 262.6343637060001, 257.78170243799997, 270.843749154, 273.25548121, 274.4422917199999, 277.9681481820001, 262.600383981, 261.34584744599994, 269.656997814, 258.833422697, 260.12523533100017, 266.0625854490001, 257.78170243799997, 261.3119271960001, 276.67749331400006, 266.0625854490001, 266.976061182, 265.960285585, 273.11777365400013, 261.27800694599995, 274.4422917199999, 259.0020815440001, 263.65127172600006, 283.5209554020001, 280.380235452, 260.12523533100017, 274.33874443200006, 266.0967437939999, 263.71935012600005, 267.21505949399995, 263.78725396600004, 269.656997814, 276.746703027, 271.99604477400004, 262.53259878600005, 273.04891987600007, 277.9681481820001, 260.09137455600006, 299.37698597600007, 269.58832427400006, 266.0967437939999, 275.594645502, 273.15211204200017, 263.6853109260001, 268.470246474, 264.9400252760001, 275.69837091000005, 264.9400252760001, 268.33331307500004, 263.71935012600005, 276.781396842, 269.656997814, 267.21505949399995, 272.0647795180001, 264.803980306, 262.66816917600005, 267.18101715000006, 257.849012664, 261.27800694599995, 282.7190445300001, 269.41699259600017, 273.11777365400013, 264.87200279100017, 269.62266104400015, 263.8891970060001, 269.58832427400006, 258.934652673, 268.3675903700001, 274.407894162, 272.979889096, 268.470246474, 263.5833678860001, 270.74073681, 265.0421464360001, 264.83790411600006, 268.4359691790001, 275.594645502, 274.33874443200006, 271.75538482200005, 260.12523533100017, 263.617407086, 268.40169188400006, 256.5949510980001, 264.9741239510001, 261.3119271960001, 268.3675903700001, 277.8640665340001, 267.0102790020001, 334.5917115570001, 258.833422697, 263.65127172600006, 263.71935012600005, 256.49407736200004, 268.4359691790001, 273.15211204200017, 260.12523533100017, 267.044321346, 270.77495666400006, 263.65127172600006, 267.283495134, 270.843749154, 274.407894162, 256.561268943, 282.61424981800013, 268.470246474, 323.76059945799994, 274.476866585, 262.49861906100006, 262.396854141, 261.27800694599995, 268.4359691790001, 265.960285585, 275.5600111620001, 271.99604477400004, 275.421829026, 271.96158905400006, 265.960285585, 264.803980306, 269.5541635900001, 264.87200279100017, 264.90610146600005, 280.241103378, 263.71935012600005, 268.33331307500004, 271.96158905400006, 252.96768961800007, 267.21505949399995, 264.90610146600005, 263.617407086, 272.09923523799995, 275.248834938, 268.470246474, 262.430833866, 264.90610146600005, 264.76988163100003, 267.21505949399995, 266.02842710399995, 262.023774186, 260.09137455600006, 273.11777365400013, 273.1866274320001, 256.5949510980001, 270.8093529090001, 263.5154640460001, 260.871833696, 269.51982682, 267.18101715000006, 261.21034039600005, 279.120086757, 275.49092009400005, 269.62266104400015, 262.49861906100006, 262.36304867100006, 263.71935012600005, 266.0967437939999, 268.40169188400006, 263.6853109260001, 277.9333948920001, 273.083258264, 261.34584744599994, 279.08527399199994, 268.3675903700001, 267.283495134, 268.29921156100005, 265.85798572100003, 269.27999768800015, 277.9333948920001, 254.120930922, 264.803980306, 269.58832427400006, 262.49861906100006, 266.13072696800003, 268.09389935300004, 258.833422697, 264.9741239510001, 284.8471349710001, 268.3675903700001, 262.430833866, 263.5833678860001, 263.2096349260001, 257.882754294, 263.5833678860001, 263.5833678860001, 260.15909610600005, 281.46242937000005, 278.9115672210001, 268.33331307500004, 271.85857528599996, 257.74796080799996, 262.566404256, 256.3932036260001, 263.617407086, 275.421829026, 271.96158905400006, 281.2184434140001, 268.3675903700001, 265.89214406600007, 254.15432200800007, 260.22664401100013, 252.86752205600004, 279.050639754, 281.39274468800005, 270.74073681, 275.31810361799995, 268.29921156100005, 265.960285585, 260.023826651, 266.90780101800004, 263.617407086, 269.485666136, 269.51982682, 261.21034039600005, 276.50438007300005, 270.63772446600007, 263.41352100600005, 263.617407086, 256.5275867880002, 264.803980306, 260.09137455600006, 276.642799499, 269.58832427400006, 283.485904542, 268.33331307500004, 269.51982682, 264.87200279100017, 274.26977200900006, 265.926302411, 265.85798572100003, 278.98119275100004, 268.33331307500004, 268.3675903700001, 263.54950324600003, 275.3871946860001, 273.04891987600007, 271.85857528599996, 265.960285585, 263.617407086, 270.70634056500006, 271.89285431, 263.5833678860001, 270.672120711, 264.76988163100003, 263.54950324600003, 271.824119566, 262.396854141, 258.799794931, 265.89214406600007, 267.1127569860001, 264.803980306, 276.50438007300005, 332.17820906599997, 261.075007296, 269.485666136, 262.396854141, 263.54950324600003, 276.573589786, 265.72170268300005, 264.83790411600006], \"power_mean\": 268.0039643111961, \"energy_millijoules\": 37830.347974049095, \"energy_joules\": 37.8303479740491, \"coremark_score\": 2125.473804, \"coremarks_per_mhz\": 3.6900586875000005, \"ulpmark_cm_score\": 7.930141171468852}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [409.15020678, 418.62200026200003, 418.684626705, 410.31838655999996, 416.30708765500003, 411.50703744, 409.15020678, 417.93192775800003, 415.076887296, 413.846924227, 418.62200026200003, 410.35934242499997, 413.10277382, 421.10819584, 422.23381550700003, 413.8882364159999, 423.40134067199995, 419.03863914000004, 417.45418905599996], \"power_mean\": 415.77914866321055, \"energy_millijoules\": 2078.8957433160526, \"energy_joules\": 2.0788957433160524}}, \"748800\": {\"active\": {\"elapsed_sec\": 108.450417771, \"elapsed_ns\": 108450417771, \"power_samples\": [283.73090106599994, 275.3871946860001, 283.7657721780001, 278.98119275100004, 276.573589786, 284.98739625800005, 270.672120711, 282.64906176000017, 293.2303176960001, 286.03736022100014, 280.03222643400005, 281.427676598, 284.95228592300003, 276.6082836010001, 274.30434687400003, 298.01171753600005, 280.31066941500006, 296.789681421, 284.882245306, 282.5444464910001, 286.0725302260001, 280.17153734100003, 287.1534175499999, 282.43965177900014, 274.166224721, 274.166224721, 292.039973106, 280.17153734100003, 281.4973612800001, 288.58611430800005, 284.812204689, 274.33874443200006, 284.8471349710001, 276.642799499, 275.49092009400005, 292.1107259819999, 269.45132936600004, 281.46242937000005, 274.26977200900006, 276.6082836010001, 270.8093529090001, 282.43965177900014, 284.67194340200007, 279.78865588799994, 281.32306000600005, 288.26923758900006, 275.52537682199994, 281.3579919160001, 271.89285431, 281.427676598, 281.3579919160001, 277.79473817600007, 288.374923485, 284.7419840190001, 289.41998749400005, 280.241103378, 278.94637998599995, 272.9110353180001, 287.36443310199996, 282.579258433, 283.66079934600003, 293.19479064600006, 297.976135996, 288.41003147099997, 277.8640665340001, 278.94637998599995, 280.17153734100003, 277.8640665340001, 280.101792471, 282.47446372100006, 296.611337151, 286.03736022100014, 282.3348570670001, 273.89015772199997, 272.979889096, 288.41003147099997, 282.47446372100006, 280.101792471, 279.99735399900015, 289.63171552600005, 284.3215602640001, 281.2184434140001, 290.7474763950001, 276.573589786, 268.09389935300004, 286.107700231, 279.99735399900015, 277.82931324400005, 302.5101953030001, 278.9115672210001, 281.427676598, 282.5094551060002, 280.206230943, 280.13666490600014, 286.9424019980001, 286.0725302260001, 276.573589786, 294.274608666, 282.579258433, 282.404660394, 283.73090106599994, 268.29921156100005, 282.47446372100006, 284.8471349710001, 278.94637998599995, 277.5865748800001, 291.93375284999996, 293.19479064600006, 284.882245306, 284.812204689, 271.824119566, 277.69065652800003, 287.18864703, 272.87651992800016, 280.13666490600014, 284.91735564100003, 286.107700231, 286.142689877, 282.3696690090001, 278.876932983, 274.166224721, 287.1534175499999, 278.8073074530001, 281.288128096, 290.4999842180002, 288.33963452999996, 280.06709886900006, 284.8471349710001, 276.50438007300005, 274.06267743300003, 293.123918736, 280.206230943, 278.876932983, 291.93375284999996, 279.9626603970001, 277.7252315960001, 282.47446372100006, 283.66079934600003, 281.2184434140001, 282.404660394, 280.03222643400005, 275.28346927800004, 289.56119994, 285.89704091900006, 276.50438007300005, 290.4999842180002, 282.47446372100006, 274.373319297, 280.06709886900006, 281.288128096, 283.695850206, 295.5675808460001, 278.876932983, 278.94637998599995, 271.789663846, 280.06709886900006, 280.206230943, 280.06709886900006, 288.41003147099997, 278.876932983, 284.777094354, 288.33963452999996, 284.95228592300003, 282.43965177900014, 278.876932983, 280.13666490600014, 290.782702721, 269.3141583720001, 278.73786045, 288.41003147099997, 288.19865967899995, 270.77495666400006, 274.06267743300003, 287.18864703, 278.98119275100004, 284.426711216, 280.101792471, 288.19865967899995, 288.3043455750001, 282.26487429700006, 278.98119275100004, 277.6559032380001, 277.69065652800003, 288.445320426, 275.28346927800004, 281.25337532400005, 293.123918736, 291.79206521400005, 279.9277879620001, 277.51706830000006, 282.3696690090001, 279.9626603970001, 289.4905030800001, 281.25337532400005, 284.7419840190001, 296.611337151, 283.3110097380001, 285.82670090900007, 282.3348570670001, 281.2184434140001, 274.06267743300003, 290.7474763950001, 278.772673215, 280.13666490600014, 295.31842444600005, 271.75538482200005, 277.5865748800001, 287.18864703, 285.93203056500005, 283.625928234, 288.374923485, 276.400476545, 278.772673215, 289.45533592400005, 278.8073074530001, 279.99735399900015, 282.43965177900014, 278.84212021799993, 277.69065652800003, 281.1487587320001, 277.75998488600015, 281.1487587320001, 289.4905030800001, 282.43965177900014, 275.248834938, 286.00237057500016, 285.72155161200004, 278.772673215, 280.03222643400005, 277.5865748800001, 281.1487587320001, 295.28296124600007, 285.9672005700001, 282.3348570670001, 295.3540704460002, 279.9626603970001, 270.56910836700007, 285.9672005700001, 275.1797438700001, 277.6559032380001, 288.093154752, 284.7419840190001, 278.84212021799993, 287.18864703, 270.5003158770001, 285.9672005700001, 288.233948634, 282.160259028, 279.99735399900015, 290.606026354, 291.82753259400005, 277.7252315960001, 295.4251796460001, 281.113826822, 271.6864733820001, 284.7070537370001, 275.248834938, 277.5865748800001, 284.7070537370001, 278.9115672210001, 273.9937050099999, 287.1534175499999, 289.45533592400005, 269.45132936600004, 287.08313925399995, 288.3043455750001, 276.50438007300005, 290.606026354, 285.82670090900007, 289.52585151, 292.9819927260001, 307.36701505800005, 281.25337532400005, 283.485904542, 283.34606059800007, 283.5209554020001, 296.57581478100013, 280.904593638, 286.00237057500016, 287.11818807000003, 281.18351150400014, 277.7252315960001, 285.89704091900006, 276.434992443, 290.606026354, 289.4905030800001, 282.160259028, 282.5444464910001, 278.84212021799993, 284.67194340200007, 274.20079958599996, 289.45533592400005, 269.3141583720001, 282.3696690090001, 288.33963452999996, 284.53186216800003, 280.17153734100003, 282.3696690090001, 278.529340914, 277.79473817600007, 274.13182716299997, 282.3348570670001, 286.977631478, 285.89704091900006, 283.3110097380001, 276.6082836010001, 276.36578273000003, 279.9626603970001, 284.777094354, 275.248834938, 285.93203056500005, 285.861870914, 288.3043455750001, 290.3587157560001, 284.63683306699994, 278.8073074530001, 283.5209554020001, 288.26923758900006, 281.07889491199995, 279.9626603970001, 290.606026354, 288.093154752, 279.8233494900001, 291.8628180900001, 283.5209554020001, 274.0282798750001, 278.772673215, 279.89291552700007, 288.12826273800005, 292.840248906, 276.434992443, 271.6864733820001, 288.233948634, 276.50438007300005, 276.36578273000003, 284.56679245000004, 272.8421815400001, 275.14510952999996, 329.731268896, 273.95913014499996, 278.73786045, 291.8628180900001, 277.69065652800003, 276.434992443, 285.861870914, 277.5518215900001, 284.7070537370001, 296.46888146099997, 285.93203056500005, 281.985481546, 284.63683306699994, 269.27999768800015, 275.1797438700001, 290.64143425900005, 277.5865748800001, 283.4159825699999, 290.4999842180002, 287.01268029400006, 278.772673215, 280.974457458, 276.33108891500007, 273.9937050099999, 283.485904542, 275.14510952999996, 282.3696690090001, 290.64143425900005, 289.38463906400005, 273.92473258699994, 284.63683306699994, 276.434992443, 276.36578273000003, 280.03222643400005, 282.2998656820001, 281.113826822, 289.41998749400005, 289.41998749400005, 278.70304768499994, 283.5209554020001, 271.61773863800005, 278.494706676, 282.2998656820001, 269.2113241480001, 276.192669489, 295.28296124600007, 285.861870914, 276.29657301700007, 283.59087737399994, 283.485904542, 349.82801383, 285.82670090900007, 272.8421815400001, 282.2998656820001, 300.06623044299994, 284.7419840190001, 282.2998656820001, 282.23006235500014, 284.63683306699994, 288.48060938099997, 284.7070537370001, 278.70304768499994, 280.8349089560001, 290.606026354, 291.685844958, 279.99735399900015, 277.5518215900001, 350.78361154600003, 277.69065652800003, 288.233948634, 269.1771634640001, 281.0092102300002, 282.2998656820001, 291.579624702, 269.27999768800015, 281.113826822, 269.27999768800015, 278.9115672210001, 272.669958594, 282.26487429700006, 288.163551693, 291.685844958, 281.0092102300002, 269.3828319120002, 284.7070537370001, 269.24566091800006, 275.28346927800004, 284.56679245000004, 281.113826822, 288.233948634, 283.485904542, 289.20825946200006, 277.37841158400005], \"power_mean\": 282.74063822795597, \"energy_millijoules\": 30663.340336661, \"energy_joules\": 30.663340336661, \"coremark_score\": 2766.481312, \"coremarks_per_mhz\": 3.694553034188034, \"ulpmark_cm_score\": 9.783669903742382}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [400.62509961599994, 412.514055744, 408.96628182, 413.68156926999995, 416.078405304, 414.89028878399995, 413.722881459, 417.287409444, 417.24574132, 407.003929525, 416.12006159400005, 417.24574132, 481.343509636, 414.911057454, 412.81337609499997, 417.266521824, 418.496532534, 412.514055744, 411.36322385999995], \"power_mean\": 417.05735486036843, \"energy_millijoules\": 2085.2867743018423, \"energy_joules\": 2.085286774301842}}, \"1017600\": {\"active\": {\"elapsed_sec\": 79.721094292, \"elapsed_ns\": 79721094292, \"power_samples\": [301.1447477699999, 303.6962936380001, 319.086513602, 308.37197459500015, 305.9640197070001, 309.63067415999996, 303.62416859800004, 300.2454668970001, 305.89184192400006, 296.50440383099993, 309.521780352, 302.3663677540001, 310.707700567, 304.70215248000017, 303.58829101400005, 297.69038321600004, 295.4251796460001, 307.0414023540001, 303.3003456620001, 303.4802883900001, 308.37197459500015, 311.7478916940001, 315.4552696900001, 309.44924663399996, 299.95894619999996, 301.18050701400006, 299.994646274, 302.3663677540001, 308.263445064, 305.8556602590001, 311.893620782, 314.23275129000007, 301.10880420000007, 296.4331759860001, 314.26934947499996, 301.18050701400006, 311.7115997260001, 309.485420262, 308.263445064, 308.263445064, 316.56794392800003, 302.1149003320001, 306.96910592600005, 315.3454846980001, 302.4023707989999, 304.70215248000017, 311.7478916940001, 305.927838042, 311.7843707340001, 304.70215248000017, 308.22714444900004, 303.37228576599995, 355.722722982, 305.8556602590001, 299.994646274, 308.15472937600003, 304.73808923400014, 308.263445064, 304.6299084900001, 307.1136987820001, 303.7321712220001, 310.63504820399993, 306.93286478600004, 297.61903672600005, 311.7478916940001, 309.485420262, 302.22272483600005, 304.6299084900001, 304.5939717360001, 382.69172387400005, 310.5986286390001, 296.4331759860001, 301.03710138599996, 299.88717801, 308.22714444900004, 317.4966864240002, 308.335860137, 304.6299084900001, 298.87636260100004, 308.22714444900004, 298.66196719600015, 302.3663677540001, 309.41288654400006, 309.44924663399996, 304.5939717360001, 310.380484783, 299.95894619999996, 299.88717801, 308.263445064, 309.3039927359999, 304.666030485, 302.22272483600005, 302.22272483600005, 309.3039927359999, 314.1597426030001, 303.40834828600003, 308.22714444900004, 303.44422587, 307.1136987820001, 305.747300811, 309.37652645399993, 308.1908438340001, 312.68225296199995, 304.6299084900001, 299.851477936, 305.9640197070001, 308.11842876099996, 308.22714444900004, 301.899251324, 311.7115997260001, 304.6299084900001, 310.48955671100003, 302.2945462950001, 308.15472937600003, 304.8823919730001, 302.22272483600005, 308.22714444900004, 300.030530369, 309.3039927359999, 309.37652645399993, 316.3845465460001, 308.22714444900004, 307.005161214, 303.5522284940001, 297.511925286, 305.747300811, 311.8571417420001, 317.6801922780001, 310.525976276, 311.67512068600007, 308.22714444900004, 307.90099738500004, 295.3540704460002, 297.511925286, 299.81559384099995, 304.666030485, 321.2411276220001, 309.23145901799995, 314.0501357309999, 307.005161214, 301.03710138599996, 307.07764349400003, 308.1908438340001, 300.965214246, 308.11842876099996, 312.937461798, 311.7115997260001, 305.7834824760001, 305.81947859400003, 297.511925286, 301.1447477699999, 299.88717801, 302.150718746, 309.340352826, 306.89662364600014, 312.82803304600003, 306.96910592600005, 302.25854325000006, 306.89662364600014, 307.18599521000004, 304.52172774600007, 302.43818921300004, 304.5578497410001, 312.90111046600003, 305.8556602590001, 314.0501357309999, 301.07286063, 304.6299084900001, 308.0821281460001, 306.96910592600005, 299.92306210499993, 310.48955671100003, 310.48955671100003, 303.37228576599995, 317.5700510460002, 296.11237602599994, 309.3039927359999, 303.44422587, 298.66196719600015, 292.66279584600005, 312.864571756, 310.48955671100003, 310.45313714599996, 305.7834824760001, 304.4857909920001, 304.5939717360001, 304.5578497410001, 312.864571756, 298.62614277100005, 304.5939717360001, 308.11842876099996, 309.267632646, 308.009713073, 304.5939717360001, 307.005161214, 316.3845465460001, 299.744009672, 308.0821281460001, 311.60234967800005, 304.5939717360001, 302.0788972870001, 309.267632646, 303.3362232460001, 298.7334323310001, 312.90111046600003, 305.747300811, 305.7834824760001, 314.123144418, 308.1908438340001, 309.1587388379999, 297.47634374600005, 301.03710138599996, 298.554677636, 308.15472937600003, 374.39055289800007, 306.93286478600004, 305.6751230280001, 304.52172774600007, 303.084340414, 315.23569970600005, 305.747300811, 294.74918524599997, 309.23145901799995, 312.90111046600003, 302.25854325000006, 314.0501357309999, 308.11842876099996, 305.56676358, 310.380484783, 295.06945084600005, 300.030530369, 390.790978863, 302.1149003320001, 314.086733916, 318.82922771600005, 305.6751230280001, 311.383849582, 311.67512068600007, 304.41354700200014, 304.6299084900001, 311.63864164600005, 300.929455002, 306.8605683580001, 309.23145901799995, 308.11842876099996, 306.82432721800006, 309.19509892800005, 299.7797097459999, 300.06623044299994, 312.755143004, 306.89662364600014, 302.186721791, 316.311300569, 311.56587063800004, 318.79239163099993, 304.5939717360001, 306.8605683580001, 298.7334323310001, 303.37228576599995, 302.1149003320001, 312.864571756, 313.90393067400004, 305.6751230280001, 314.0501357309999, 309.19509892800005, 308.97731131200004, 302.186721791, 290.32330785100004, 304.4857909920001, 312.82803304600003, 317.4599098140001, 306.8605683580001, 309.340352826, 299.7797097459999, 310.48955671100003, 298.6976079060001, 302.22272483600005, 299.7797097459999, 318.86587489799996, 320.94605432400004, 303.264283142, 302.04289424200005, 300.965214246, 300.965214246, 305.81947859400003, 305.6751230280001, 315.1990420460001, 306.82432721800006, 314.7234324060001, 308.11842876099996, 316.4212636810001, 300.929455002, 305.6751230280001, 309.340352826, 309.267632646, 300.8218086179999, 318.6452361939999, 308.11842876099996, 309.1587388379999, 317.64360426600007, 296.183786976, 307.937298, 309.267632646, 302.186721791, 298.59031834600006, 315.125914714, 313.97712704400004, 307.97341245800004, 304.41354700200014, 303.22822062200004, 300.929455002, 310.380484783, 305.638941363, 298.518853211, 316.311300569, 300.929455002, 302.150718746], \"power_mean\": 307.3495827262082, \"energy_millijoules\": 24502.2450651229, \"energy_joules\": 24.5022450651229, \"coremark_score\": 3763.407138, \"coremarks_per_mhz\": 3.698316762971698, \"ulpmark_cm_score\": 12.243775996960679}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [501.0969985919999, 423.0630294839999, 406.48837782000004, 415.93292872200004, 419.499926154, 410.52061566000003, 410.011059645, 420.70869350399994, 412.411018936, 407.67625705, 413.5575265019999, 404.048129418, 412.411018936, 411.15764013, 412.34917567200006, 406.52897775, 423.041844294, 412.95802185699995, 407.77810582499995], \"power_mean\": 417.4336497868947, \"energy_millijoules\": 2087.1682489344735, \"energy_joules\": 2.0871682489344736}}, \"1209600\": {\"active\": {\"elapsed_sec\": 67.039270235, \"elapsed_ns\": 67039270235, \"power_samples\": [317.4599098140001, 309.3039927359999, 329.470241596, 321.1674066760001, 328.172932141, 327.061860846, 318.682072279, 324.65002172, 328.172932141, 349.483153654, 317.3499571800001, 323.35354397399993, 314.013537546, 311.529391598, 324.57575441, 322.24211635500006, 313.90393067400004, 335.1763189980001, 313.86752017199996, 318.75555554600004, 320.98300955400003, 318.608589012, 319.650348533, 319.87134464499997, 321.01977527, 323.42750221, 330.469033356, 317.4233218020001, 312.60936292, 329.35831799600004, 316.34801770400003, 321.01977527, 328.098498936, 328.06118666100014, 330.5062726260001, 329.35831799600004, 313.94052885900004, 316.164808615, 319.797742344, 326.950293486, 327.09911364600003, 319.83444889000003, 322.2051016499999, 325.913549671, 320.98300955400003, 322.2051016499999, 322.24211635500006, 322.2051016499999, 323.42750221, 317.4599098140001, 320.98300955400003, 316.2013374570001, 320.54030485000015, 332.880811702, 307.8648829270001, 319.797742344, 329.2837661460001, 315.08925705400003, 319.7241400430001, 322.2051016499999, 318.608589012, 317.38654519200014, 330.58113507600007, 318.608589012, 316.2380545920001, 323.2425115580001, 316.12809148000014, 310.27141285500005, 330.35693163600007, 323.2425115580001, 332.880811702, 336.36152673300006, 322.0574224680001, 328.0240657310001, 330.5437038510001, 329.3209462460001, 396.557375271, 329.2463943960002, 320.90928860800005, 325.8021604310001, 341.14421049000003, 323.31646979400006, 320.98300955400003, 325.6907711910001, 312.645714252, 319.83444889000003, 316.2380545920001, 313.83092198699995, 328.2102444160001, 334.066138082, 324.46473430300006, 319.87134464499997, 329.3209462460001, 318.53510574500007, 316.12809148000014, 325.6907711910001, 316.2013374570001, 325.913549671, 325.5051860360001, 318.53510574500007, 321.01977527, 319.797742344, 316.2380545920001, 323.35354397399993, 322.16827676400004, 326.83891716600004, 323.50146044600007, 323.2425115580001, 319.83444889000003, 322.131262059, 325.7279645160001, 320.94605432400004, 324.57575441, 326.913231726, 323.39042803, 322.38998535599995, 318.53510574500007, 317.38654519200014, 325.6907711910001, 323.31646979400006, 324.46473430300006, 320.98300955400003, 325.6907711910001, 323.2795857380001, 317.6068276560001, 319.797742344, 324.53881118400005, 324.501677529, 331.616809866, 322.16827676400004, 326.8759789260001, 323.2795857380001, 318.608589012, 318.75555554600004, 324.57575441, 310.380484783, 328.0240657310001, 325.6907711910001, 323.2795857380001, 324.46473430300006, 316.2380545920001, 318.608589012, 319.797742344, 320.90928860800005, 313.53869955600004, 319.68724428800016, 310.3078324199999, 315.016129722, 324.501677529, 315.08925705400003, 329.2092142960002, 328.0240657310001, 330.35693163600007, 318.49826966000006, 326.8759789260001, 314.9796600500002, 318.53510574500007, 323.35354397399993, 318.608589012, 336.2109985150001, 330.39436286100016, 318.571752927, 320.8723333780002, 328.06118666100014, 311.34737054199996, 322.16827676400004, 319.68724428800016, 320.98300955400003, 320.8723333780002, 326.8759789260001, 311.4203286220001, 361.18867566599994, 330.282261141, 322.0574224680001, 320.8353781480001, 323.205437378, 312.4999341679999, 319.650348533, 329.2092142960002, 325.6165752760001, 314.9796600500002, 329.2463943960002, 318.53510574500007, 319.7241400430001, 319.760846589, 311.34737054199996, 323.2795857380001, 332.7309953540001, 385.9667251380001, 320.90928860800005, 326.652844206, 327.7259502210001, 320.8353781480001, 324.3904669930001, 314.94300239, 329.097290696, 333.87847459900007, 318.571752927, 323.35354397399993, 326.764411566, 329.0599189460001, 317.23981594800017, 325.6537686010002, 313.7945114850001, 324.4276006480001, 342.2155936120001, 320.7616572020001, 319.650348533, 332.65608717999993, 323.13147914200005, 310.19876049199996, 330.282261141, 318.571752927, 316.12809148000014, 333.84105762500013, 322.094437173, 325.5423793610001, 327.98675345600003, 318.49826966000006, 329.2463943960002, 326.764411566, 326.801664366, 326.950293486, 335.06350421400003, 322.0204077629999, 318.46143357499994, 326.72734980599995, 323.16855332200004, 318.46143357499994, 329.2092142960002, 320.90928860800005, 326.98754628600005, 332.6185368100002, 320.8353781480001, 320.7616572020001, 333.87847459900007, 320.7986124320001, 324.3904669930001, 332.7309953540001, 322.0574224680001, 326.98754628600005, 337.4335634440001, 317.23981594800017, 326.764411566, 329.02254719600006, 326.69009700600003, 329.17184254600005, 323.13147914200005, 329.0599189460001, 324.57575441, 325.87635634600014, 318.46143357499994, 327.837695701, 325.6165752760001, 322.0574224680001, 319.797742344, 323.057520906, 321.90955346699997, 317.4233218020001, 337.3581806900001, 317.2030393380002, 337.4335634440001, 335.13884285399996, 320.8723333780002, 317.4599098140001, 324.3163901120001, 314.57717774200006], \"power_mean\": 323.6785413104457, \"energy_millijoules\": 21699.173200181584, \"energy_joules\": 21.699173200181583, \"coremark_score\": 4475.407635, \"coremarks_per_mhz\": 3.699907105654762, \"ulpmark_cm_score\": 13.82541155980494}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [408.6598452, 414.703796778, 411.35989523999996, 411.0344166, 420.51942144000003, 418.12012935, 407.533585025, 412.22559504, 413.41288073999993, 409.92904262999997, 409.94957320500004, 420.58251212799996, 412.266788584, 408.68021132000007, 414.37203058800003, 413.37146235, 414.662259438, 409.92904262999997, 408.74151964000004], \"power_mean\": 412.63442146978946, \"energy_millijoules\": 2063.172107348947, \"energy_joules\": 2.063172107348947}}, \"1363200\": {\"active\": {\"elapsed_sec\": 59.467516123, \"elapsed_ns\": 59467516123, \"power_samples\": [342.13973588900006, 320.94605432400004, 334.98835875000003, 345.694647224, 328.9106235960001, 340.03456371299995, 336.248533829, 330.282261141, 335.32680310199993, 335.1763189980001, 336.286262624, 331.616809866, 345.732656092, 324.46473430300006, 335.1763189980001, 327.94944118100005, 341.91196771300014, 333.99111126300016, 343.4006827020001, 330.282261141, 333.9160844440001, 335.06350421400003, 332.6185368100002, 334.14135777200005, 336.248533829, 321.90955346699997, 341.06847141200006, 339.769794999, 329.17184254600005, 343.362596862, 346.88350281800007, 332.6185368100002, 338.8074436020001, 338.467590261, 326.8759789260001, 333.9160844440001, 336.17326972000006, 337.24500966599993, 342.13973588900006, 333.8034477800001, 332.6185368100002, 335.251464462, 334.87554396599995, 338.467590261, 335.02602807, 330.2448299160001, 331.35495174600004, 341.06847141200006, 326.61578244599997, 333.9160844440001, 341.03050452200006, 338.54309166000013, 331.579511426, 335.06350421400003, 325.579381951, 331.317461046, 343.28662049400015, 336.17326972000006, 338.58093940500004, 344.31914582100006, 347.95369799099996, 332.5809864400001, 339.54273930300013, 331.46723158599997, 328.98536709600006, 345.58022877600007, 334.87554396599995, 334.95068942999995, 346.73064120600003, 343.2106441260001, 331.42974088600005, 349.13849031600006, 332.5809864400001, 330.0952969710001, 340.87883166399996, 344.433386149, 342.025851801, 345.54202398600006, 343.24853465400014, 327.837695701, 344.433386149, 325.5051860360001, 331.317461046, 339.84541543200004, 338.5052439150001, 338.54309166000013, 344.433386149, 340.99253763200005, 327.8005747710001, 339.656267151, 339.580452321, 334.87554396599995, 338.5052439150001, 332.506078266, 331.42974088600005, 346.73064120600003, 334.95068942999995, 334.98835875000003, 339.73188758400005, 334.91321328600003, 337.3581806900001, 340.9167985540001, 329.02254719600006, 330.1327281960001, 339.61835973600006, 332.54362863600005, 338.54309166000013, 334.91321328600003, 334.91321328600003, 328.98536709600006, 336.098005611, 391.6929521900002, 331.317461046, 338.429742516, 333.57817445200016, 327.8005747710001, 336.13554092500004, 331.46723158599997, 334.91321328600003, 342.1017095240001, 333.765837935, 329.097290696, 350.32328264100005, 339.6939801690001, 332.54362863600005, 342.13973588900006, 330.17015942100016, 330.1327281960001, 377.5094211960001, 332.5809864400001, 333.87847459900007, 339.769794999, 331.42974088600005, 330.20739869100015, 337.24500966599993, 330.02062647600013, 337.39596896000006, 338.5052439150001, 343.05849607800013, 335.101173534, 345.58022877600007, 333.765837935, 323.057520906, 336.098005611, 340.9167985540001, 343.24853465400014, 339.54273930300013, 339.61835973600006, 338.65644080400006, 344.433386149, 337.16962691200007, 338.429742516, 337.39596896000006, 341.98782543600004, 336.286262624, 331.35495174600004, 337.39596896000006, 332.65608717999993, 346.9598355100001, 327.837695701, 333.6532012710001, 345.656442434, 334.87554396599995, 327.98675345600003, 330.20739869100015, 332.65608717999993, 342.1017095240001, 339.4671188700001, 328.8734434960001, 336.098005611, 342.06368315900005, 327.837695701, 343.362596862, 328.9106235960001, 325.4309901210002, 342.177567247, 340.8030925860001, 332.506078266, 344.433386149, 338.39189477100007, 332.506078266, 326.652844206, 334.87554396599995, 331.46723158599997, 342.13973588900006, 334.95068942999995, 339.769794999, 344.31914582100006, 331.27997034599997, 338.467590261, 325.3196008810001, 333.6532012710001, 330.17015942100016, 339.580452321, 347.91537405599996, 337.2072213960001, 347.99182539299994, 339.84541543200004, 327.8005747710001, 331.20518120599996, 321.872728581, 333.690811116, 337.16962691200007, 339.6939801690001, 334.72525303800006, 344.357291136, 377.46981376800005, 324.2423132310001, 334.87554396599995, 330.1327281960001, 337.2072213960001, 343.1344724460002, 337.2072213960001, 329.8338542610001, 336.060276816, 340.8030925860001, 328.947995346, 339.580452321, 334.8378746460001, 326.5042150860001, 345.27517822199997, 327.8005747710001, 334.91321328600003, 409.4323988180001, 332.506078266, 337.16962691200007, 341.98782543600004, 329.98338720600015, 333.6532012710001, 339.61835973600006, 331.27997034599997, 336.0225480210001, 344.357291136, 334.87554396599995, 335.98501270700007, 341.8739413480001], \"power_mean\": 336.9200895657882, \"energy_millijoules\": 20035.800858416114, \"energy_joules\": 20.035800858416113, \"coremark_score\": 5045.323826, \"coremarks_per_mhz\": 3.701088487382629, \"ulpmark_cm_score\": 14.97319733411025}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [411.669005664, 406.20396957, 410.93157193999997, 419.227376844, 410.95216199, 418.0365558120001, 407.45214787500004, 405.05740275, 415.74579585, 406.18361742, 409.76511388499995, 414.60016644, 413.040752436, 420.47739699199997, 414.517198266, 408.59853688000004, 412.20494532, 418.078342581, 408.55759468], \"power_mean\": 412.17366595763156, \"energy_millijoules\": 2060.868329788158, \"energy_joules\": 2.060868329788158}}, \"1516800\": {\"active\": {\"elapsed_sec\": 53.435733365, \"elapsed_ns\": 53435733365, \"power_samples\": [342.06368315900005, 350.2463968710002, 348.9469669420001, 345.58022877600007, 353.91996762700006, 350.28483975600005, 356.2123883760001, 352.65818982599995, 352.54270149000007, 350.32328264100005, 347.87705012099997, 340.8030925860001, 350.2081511290001, 362.06206114100013, 357.1261186379999, 352.65818982599995, 352.69675185600005, 362.178975021, 349.100106906, 346.7689056660001, 344.24305080799996, 346.8069738980001, 352.54270149000007, 353.76587772500005, 348.98515351400005, 356.13510613500006, 344.28119612300003, 350.169708244, 351.43107024600016, 344.39543645099997, 346.57797582200016, 363.32466984599995, 358.42681501400006, 355.02765552600005, 356.17364792100005, 354.98897454600007, 339.50483188799996, 356.05782389400014, 339.656267151, 353.88154418100004, 357.2423194540001, 350.2081511290001, 349.06172349599996, 349.100106906, 344.24305080799996, 358.50433454500006, 357.397121226, 357.28092040999996, 350.2463968710002, 356.09636568000013, 357.28092040999996, 357.35832129600004, 355.02765552600005, 351.35426297400016, 353.65021126900007, 362.02302311600005, 353.65021126900007, 345.427605538, 348.98515351400005, 351.43107024600016, 350.13146250200015, 355.9803429840002, 345.46581032800003, 352.54270149000007, 356.25112883100013, 352.6196277960001, 345.46581032800003, 359.5762750910001, 357.31972034000006, 350.2463968710002, 357.203519524, 353.76587772500005, 350.01633099, 353.76587772500005, 344.24305080799996, 357.28092040999996, 351.35426297400016, 356.05782389400014, 345.58022877600007, 358.54299467100014, 351.43107024600016, 345.3895966700001, 406.69222977400005, 345.27517822199997, 354.9118109500001, 347.8389227190001, 365.4592390660002, 352.69675185600005, 353.72725622, 351.3159580620001, 350.09301961700004, 360.838468386, 353.573166318, 353.76587772500005, 358.42681501400006, 356.019083439, 357.31972034000006, 348.9469669420001, 347.800598784, 350.2463968710002, 360.8774469360001, 352.54270149000007, 353.91996762700006, 356.05782389400014, 357.203519524, 345.6182376440001, 358.42681501400006, 346.57797582200016, 360.76071117600003, 350.09301961700004, 343.096581918, 352.6196277960001, 353.8043011710001, 354.9118109500001, 359.77047129600004, 360.838468386, 349.0235369240001, 358.3490962040001, 354.95049193000006, 344.31914582100006, 347.91537405599996, 347.8389227190001, 354.7188027780001, 359.6928327310001, 357.28092040999996, 354.87332833400006, 360.838468386, 345.427605538, 347.762471382, 339.353591022, 344.166955795, 361.9841852860001, 366.8044019420001, 348.87020012199997, 357.28092040999996, 357.31972034000006, 348.9469669420001, 344.20510111000004, 340.689386618, 354.95049193000006, 353.6888327740001, 356.09636568000013, 348.908583532, 347.762471382, 357.16471959400013, 355.94180119800006, 354.87332833400006, 348.98515351400005, 344.28119612300003, 356.05782389400014, 358.3104360779999, 348.98515351400005, 349.0235369240001, 356.019083439, 354.87332833400006, 356.05782389400014, 346.61604405400016, 350.09301961700004, 354.9118109500001, 352.46577518399994, 353.65021126900007, 340.65161443000005, 358.46547514, 351.35426297400016, 356.019083439, 356.05782389400014, 357.2423194540001, 354.9118109500001, 355.9803429840002, 352.46577518399994, 346.57797582200016, 364.2748624560001, 351.2389533420001, 350.13146250200015, 348.98515351400005, 351.27745570200005, 347.724147447, 370.16137649399997, 350.09301961700004, 344.166955795, 353.61158976400014, 352.42721315400007, 348.75524673, 366.529871934, 348.908583532, 353.6888327740001, 357.2423194540001, 340.49994157200007, 348.87020012199997, 364.35317640600016, 348.98515351400005, 347.6476961099999, 353.6888327740001, 351.1621460700001, 423.52864177400005, 358.387955609, 352.42721315400007, 351.2389533420001, 354.8346473540001, 350.05457673200004, 346.46337867000005, 351.2389533420001, 363.246675346, 359.6151941660001, 361.94514726099993, 354.7188027780001, 347.6476961099999, 347.6476961099999, 347.762471382, 348.87020012199997, 361.94514726099993, 355.903060743], \"power_mean\": 353.17197042602834, \"energy_millijoules\": 18872.003243676914, \"energy_joules\": 18.872003243676915, \"coremark_score\": 5614.718048, \"coremarks_per_mhz\": 3.701686476793249, \"ulpmark_cm_score\": 15.8965636094046}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [410.86990738, 418.870908201, 414.454998762, 407.24834565, 417.93192775800003, 474.97290516, 413.288837972, 453.418197687, 420.37217382399996, 415.641868747, 410.89049743, 408.45544914000004, 415.62104060200005, 416.37006802, 412.143102056, 414.454998762, 409.66267157999994, 413.2268165879999, 408.51675746], \"power_mean\": 418.75849856731577, \"energy_millijoules\": 2093.7924928365787, \"energy_joules\": 2.0937924928365788}}, \"1593600\": {\"active\": {\"elapsed_sec\": 50.85368222, \"elapsed_ns\": 50853682220, \"power_samples\": [361.94514726099993, 363.09048584600004, 365.61590375600014, 361.9061092360001, 358.3490962040001, 344.20510111000004, 357.16471959400013, 354.9118109500001, 365.42022372599996, 362.02302311600005, 363.12958334600006, 358.46547514, 366.8044019420001, 357.28092040999996, 351.2389533420001, 362.02302311600005, 351.27745570200005, 358.42681501400006, 359.6151941660001, 372.69178325800016, 361.9841852860001, 363.246675346, 351.27745570200005, 354.8346473540001, 359.6151941660001, 358.3104360779999, 354.7188027780001, 364.235906286, 363.051588846, 366.647498878, 358.46547514, 353.61158976400014, 351.3159580620001, 364.3140194310001, 354.7959663740001, 359.5762750910001, 365.42022372599996, 356.019083439, 366.647498878, 361.86727140599993, 354.680121798, 358.42681501400006, 367.9105466780001, 360.68295396599996, 348.79363014000006, 360.721732626, 352.42721315400007, 366.765125822, 359.459717451, 358.23271726800004, 357.31972034000006, 360.64397541600005, 350.13146250200015, 360.68295396599996, 354.7188027780001, 361.9841852860001, 360.79968972600005, 367.871211083, 357.1261186379999, 350.09301961700004, 359.343159811, 355.903060743, 358.2715766730001, 359.382078886, 358.3490962040001, 364.35317640600016, 353.573166318, 357.0099178220001, 351.43107024600016, 367.792741614, 353.65021126900007, 354.757483758, 359.459717451, 360.838468386, 358.46547514, 352.27336054200003, 358.2715766730001, 429.412195566, 371.3061799140001, 357.08731870800005, 365.4592390660002, 364.235906286, 361.8282333810001, 356.09636568000013, 358.19405714199996, 357.203519524, 366.5691480540001, 364.0403222160001, 358.23271726800004, 366.5691480540001, 358.2715766730001, 366.6867749980001, 362.06206114100013, 357.0099178220001, 426.663411726, 365.34179082600014, 359.5762750910001, 357.16471959400013, 355.94180119800006, 357.08731870800005, 361.86727140599993, 361.9841852860001, 348.83201355, 353.457499862, 361.9841852860001, 353.49592330800004, 355.94180119800006, 357.04851877799996, 347.6476961099999, 360.64397541600005, 368.93766398400004, 360.68295396599996, 354.680121798, 361.8282333810001, 358.19405714199996, 354.757483758, 359.4986365260001, 365.4592390660002, 370.08246740399994, 367.792741614, 363.0124913460001, 358.19405714199996, 365.30277548600003, 354.641639182, 349.9778881050001, 364.15759233600005, 357.04851877799996, 360.566218206, 360.68295396599996, 358.2715766730001, 358.23271726800004, 359.382078886, 359.459717451, 351.1621460700001, 362.9733938460001, 362.89539934600003, 361.75035752599996, 360.64397541600005, 358.23271726800004, 355.8257785020001, 361.75035752599996, 360.52723965599995, 354.680121798, 360.449482446, 365.2635590360001, 359.343159811, 366.41224499000015, 360.64397541600005, 351.12364371000007, 365.38100727600016, 358.07767820600003, 351.2389533420001, 362.7783073460001, 361.672281476, 358.3104360779999, 367.67493655000004, 358.3104360779999, 360.721732626, 362.73941034600006, 361.672281476, 347.685823512, 361.86727140599993, 354.602958202, 352.1962364820001, 360.68295396599996, 353.418878357, 364.0794791910001, 367.67493655000004, 361.672281476, 354.757483758, 368.85907587000014, 353.457499862, 355.70975580600015, 357.04851877799996, 354.7188027780001, 359.343159811, 361.86727140599993, 362.8174048460001, 355.70975580600015, 371.22735451, 363.0124913460001, 365.30277548600003, 361.75035752599996, 364.0794791910001, 359.2655212460001, 367.59626536, 357.04851877799996, 361.75035752599996, 367.55713148600006, 417.3522951380001, 360.76071117600003, 359.343159811, 348.64029333800005, 354.680121798, 354.602958202, 355.8643202880001, 355.8257785020001, 365.2635590360001, 361.789195356, 356.019083439, 367.59626536, 353.418878357], \"power_mean\": 360.46582353989606, \"energy_millijoules\": 18331.014441468473, \"energy_joules\": 18.331014441468472, \"coremark_score\": 5899.821039, \"coremarks_per_mhz\": 3.7021969371234946, \"ulpmark_cm_score\": 16.365706380184783}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [419.101551708, 411.95757226399996, 449.765378972, 411.153715728, 408.39414081999996, 419.12245074599997, 406.02111333000005, 407.20762707499995, 410.80824282, 413.164795204, 406.84095055, 408.39414081999996, 411.998765808, 409.62161043, 412.019415528, 409.62161043, 410.84942292, 407.268757275, 412.019415528], \"power_mean\": 412.9121409450526, \"energy_millijoules\": 2064.560704725263, \"energy_joules\": 2.0645607047252628}}, \"1708800\": {\"active\": {\"elapsed_sec\": 47.417952743, \"elapsed_ns\": 47417952743, \"power_samples\": [378.25633072400007, 374.743962254, 374.783654894, 365.34179082600014, 373.5995155740001, 368.7802857300001, 373.55988240900007, 374.7042696140001, 364.0013660460001, 377.1121219440001, 377.1121219440001, 379.484163863, 378.3757394520001, 372.375802564, 378.2166641260001, 384.340783155, 374.743962254, 372.375802564, 391.24800100600015, 381.89237323800006, 376.00734247199995, 380.5884683660001, 369.88559934100005, 373.55988240900007, 371.1483264700001, 373.5202492440001, 366.529871934, 391.28831886200004, 373.55988240900007, 377.19154096200015, 374.783654894, 367.51779589100005, 366.49079722999994, 378.2166641260001, 373.55988240900007, 369.88559934100005, 387.776605007, 367.59626536, 378.3757394520001, 380.628253498, 369.9643061, 366.5691480540001, 383.07651255800005, 373.55988240900007, 366.49079722999994, 374.823143982, 374.5855987979999, 371.34569393399994, 378.2166641260001, 370.04321519, 377.19154096200015, 378.25633072400007, 368.701697616, 377.032702926, 383.036403398, 385.20383513400003, 374.94201835000007, 365.2243425860002, 369.846347127, 372.33622887400014, 374.664780526, 372.178339998, 380.7082339180001, 387.61562980499997, 374.38733914999995, 373.718211822, 374.5855987979999, 370.95116164200005, 380.54847815600004, 374.664780526, 369.88559934100005, 375.650388865, 381.7724295660001, 373.3224899130001, 372.415376254, 368.6231095020001, 368.701697616, 376.91347231799995, 381.93221754000007, 373.4017562430001, 387.534935295, 374.7042696140001, 427.847194806, 376.00734247199995, 372.13876630800013, 368.66250457200005, 373.3224899130001, 382.7961598140001, 369.806892582, 381.6925355790001, 375.9677942140001, 371.10901508600006, 375.92804209900004, 380.54847815600004, 376.87366072800006, 379.4045071660001, 369.846347127, 366.333894166, 381.6524858940001, 448.8632876, 381.8523235530001, 381.7323798810001, 372.2179136880001, 371.069501066, 380.38892747200003, 379.4045071660001, 365.06787900600006, 383.97988341900003, 378.25633072400007, 368.6231095020001, 380.50869302400014, 370.95116164200005, 366.17719251800014, 376.8340533000001, 372.2179136880001, 363.8449389510001, 384.060220689, 368.701697616, 376.95328390800006, 378.0972553980001, 372.29685812600013, 369.7674380370001, 372.178339998, 366.25554334200007, 376.95328390800006, 381.7323798810001, 371.03018968200007, 366.333894166, 375.7694413530001, 375.72968923800005, 381.6124362090001, 379.28491973399997, 368.66250457200005, 373.2830599950001, 380.468702814, 376.91347231799995, 368.58371443200014, 382.9162816059999, 376.87366072800006, 366.2162672220001, 381.6925355790001, 379.244988999, 370.911850258, 382.836268974, 375.72968923800005, 362.73941034600006, 378.13712646300013, 368.5445213880002, 372.2179136880001, 374.38733914999995, 373.3224899130001, 363.88409592600004, 387.61562980499997, 376.71482269200004, 366.2162672220001, 368.6231095020001, 374.5459061579999, 374.5855987979999, 380.42871260400005, 370.911850258, 367.3215213580001, 386.47186842600007, 366.17719251800014, 372.178339998, 381.7323798810001, 368.6231095020001, 374.625087886, 375.7694413530001, 372.2179136880001, 375.7694413530001, 380.30894705200006, 369.68873127800003, 374.50621351800004, 373.2830599950001, 363.88409592600004, 368.66250457200005, 380.54847815600004, 372.25728443600013, 372.2179136880001, 391.0861061100001, 386.3111305140001, 371.18784049000004, 376.87366072800006, 374.50621351800004, 367.43932642199997, 381.6124362090001, 368.5051263180001, 372.33622887400014, 381.452648235], \"power_mean\": 375.5340373077302, \"energy_millijoules\": 17807.05523444595, \"energy_joules\": 17.80705523444595, \"coremark_score\": 6327.378567, \"coremarks_per_mhz\": 3.7028198542837076, \"ulpmark_cm_score\": 16.847254981254864}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [413.10277382, 404.773825625, 413.040752436, 405.20859288, 417.911088084, 414.247738086, 409.53969870000003, 485.341648912, 414.87261592500005, 415.47556402000004, 407.20762707499995, 413.1234830149999, 410.70550375000005, 409.51916812499996, 417.84835422000003, 411.62781211999993, 410.74668384999995, 414.28916892, 410.78775836000005], \"power_mean\": 415.75630831173686, \"energy_millijoules\": 2078.7815415586842, \"energy_joules\": 2.0787815415586843}}}}, \"6\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 128.896809065, \"elapsed_ns\": 128896809065, \"power_samples\": [276.61526498000006, 277.869148068, 274.28102715000006, 277.869148068, 279.68430558200015, 273.1999015710001, 277.79970106499997, 283.65572427, 278.95314811200006, 283.83091583900006, 270.75793590200004, 276.4764300420001, 280.172456632, 266.01971698200015, 283.86584612100006, 272.95840943700006, 276.51118333200014, 280.2421413140001, 273.09653159, 271.91203603000014, 279.05758658400015, 272.992984302, 264.8011790780001, 261.95262836600006, 278.9880205470001, 268.35466575800007, 274.28102715000006, 262.4621690060001, 265.95145681800005, 276.58051169000015, 270.62046641399996, 279.05758658400015, 284.91408436900014, 289.6518287090001, 268.2859922180002, 275.22302183899995, 265.98567463800003, 275.36161918199997, 283.83091583900006, 269.436148974, 268.35466575800007, 292.024584276, 278.67470513100005, 269.40175272899995, 281.42669604400004, 274.2117584700001, 267.2042717120001, 273.72776576999996, 271.94637441800006, 270.75793590200004, 287.318245494, 269.47036882800006, 262.4621690060001, 276.6500182700001, 265.98567463800003, 263.57870125100015, 274.24639281000003, 271.77415147200014, 267.1701701980001, 291.95371236600005, 277.7648883000001, 266.156412786, 348.678676748, 271.9808898080001, 277.7648883000001, 281.42669604400004, 265.5075025380001, 274.28102715000006, 289.6518287090001, 282.50627794200005, 269.6763935159999, 280.20738854200005, 271.80866686200005, 280.03290813000007, 275.46552271000013, 271.8430052500001, 277.79970106499997, 284.9492543740001, 282.2963322780001, 260.19464634599996, 282.541328802, 265.8831966540001, 277.79970106499997, 275.46552271000013, 268.3203289880001, 267.80615786800007, 281.25209800500005, 267.06751409400005, 269.745009615, 271.8430052500001, 265.405024554, 287.2476675840001, 278.95314811200006, 277.83451383000005, 285.0194140250001, 287.318245494, 271.7052976940001, 268.11466054, 268.35466575800007, 265.9172389980001, 279.0228929820001, 272.923834572, 273.09653159, 277.869148068, 280.137524722, 271.8775206400001, 274.142667402, 270.7236568780001, 269.40175272899995, 276.06028167200003, 274.177301742, 273.02738186000005, 282.4714068299999, 280.10277195, 271.80866686200005, 270.689201158, 274.07357633400005, 276.54593662200006, 276.61526498000006, 276.54593662200006, 287.35335347999995, 281.007696639, 288.32618017800013, 265.98567463800003, 281.3219013320001, 264.698879214, 274.28102715000006, 271.80866686200005, 268.886691009, 269.40175272899995, 287.2476675840001, 284.8789143640002, 269.539161318, 274.2117584700001, 271.67078230400006, 268.4916606660001, 268.2859922180002, 270.654745438, 265.98567463800003, 290.836264794, 283.270230797, 268.251831534, 269.436148974, 268.21749476400015, 274.3845749460001, 272.923834572, 269.47036882800006, 273.130929148, 284.8789143640002, 277.55636876399996, 270.689201158, 272.854862149, 275.22302183899995, 268.42316321200013, 269.47036882800006, 273.02738186000005, 277.83451383000005, 282.541328802, 284.6682550520001, 270.2421602780001, 280.03290813000007, 268.21749476400015, 263.7829435710001, 280.10277195, 273.69330904200007, 277.7648883000001, 288.396877038, 288.22031616199996, 281.28708939000006, 274.07357633400005, 274.2117584700001, 265.71228303000015, 269.5047650730001, 352.27336054200003, 280.06784004000014, 275.36161918199997, 281.04250858100005, 275.29223155200003, 269.33313663000007, 268.3203289880001, 276.51118333200014, 284.8789143640002, 270.551554974, 279.5796889900001, 271.80866686200005, 268.18315799400006, 276.4764300420001, 270.51727594999994, 271.739636082, 282.43635596999997, 271.8775206400001, 265.848978834, 288.46739262400007, 278.8487096400001, 272.95840943700006, 278.6051390940001, 270.4828202300001, 269.436148974, 273.061956725, 265.8831966540001, 271.739636082, 289.61642080400003, 278.465828187, 271.8430052500001, 276.54593662200006, 276.58051169000015, 269.436148974, 276.23369167800007, 265.8831966540001, 271.80866686200005, 281.147303293, 277.79970106499997, 280.137524722, 268.21749476400015, 270.276439302, 262.292322126, 283.6206139350001, 259.99147274599994, 270.654745438, 278.95314811200006, 280.10277195, 267.1701701980001, 274.2117584700001, 269.436148974, 269.2987403849999, 284.6682550520001, 276.3377733260001, 267.2042717120001, 280.03290813000007, 280.03290813000007, 264.8011790780001, 272.95840943700006, 274.142667402, 280.137524722, 278.91845451, 273.02738186000005, 270.7236568780001, 280.137524722, 280.6933125030001, 269.436148974, 271.67078230400006, 268.251831534, 274.177301742, 273.02738186000005, 274.24639281000003, 269.1271119419999, 274.2117584700001, 269.40175272899995, 276.54593662200006, 278.8835820750001, 273.76240011, 304.880610774, 268.2859922180002, 276.51118333200014, 278.95314811200006, 270.551554974, 261.14204388599995, 280.7631158300001, 274.2117584700001, 264.7328623880001, 283.65572427, 270.586010694, 274.142667402, 278.779143603, 291.8826582660001, 271.739636082, 283.6206139350001, 268.21749476400015, 275.22302183899995, 276.23369167800007, 272.95840943700006, 261.209829081, 288.396877038, 276.4764300420001, 268.2859922180002, 277.869148068, 267.0332367990001, 275.3961350800001, 281.25209800500005, 275.25771565400004, 269.47036882800006, 287.8675569580001, 280.06784004000014, 276.54593662200006, 274.24639281000003, 272.820287284, 271.77415147200014, 274.0043076540001, 266.72526848700005, 262.25828292600005, 289.5103786680001, 274.177301742, 282.5763796620001, 278.43113458500005, 280.172456632, 273.130929148, 271.80866686200005, 274.10803306200006, 272.95840943700006, 276.54593662200006, 264.698879214, 315.4683128080001, 267.06751409400005, 269.436148974, 271.91203603000014, 275.3269253670001, 274.10803306200006, 285.922734382, 282.541328802, 277.486921761, 271.94637441800006, 268.0803237700001, 261.7487422860001, 264.8011790780001, 265.9172389980001, 271.80866686200005, 284.8439247180001, 283.550573318, 285.74694830999994, 280.06784004000014, 271.739636082, 278.81401603800003, 278.95314811200006, 277.7302540619999, 271.36067480000014, 287.2476675840001, 277.660628532, 283.270230797, 281.21710662000004, 269.26434414, 270.4483645100001, 275.9907750920001, 270.4828202300001, 268.11466054, 298.70521112700004, 271.80866686200005, 268.9554834990001, 276.51118333200014, 278.8835820750001, 276.54593662200006, 283.6206139350001, 274.10803306200006, 270.51727594999994, 285.60621105399997, 268.21749476400015, 272.923834572, 272.95840943700006, 271.67078230400006, 271.739636082, 274.142667402, 265.8831966540001, 269.436148974, 283.65572427, 282.40130511, 270.586010694, 279.5447570800001, 272.88943701399995, 275.1538121260001, 277.625994294, 270.654745438, 269.40175272899995, 281.25209800500005, 279.82385408400006, 264.7328623880001, 278.91845451, 272.820287284, 271.7052976940001, 275.9214467340001, 274.0389419939999, 277.7302540619999, 276.4071016840001, 269.40175272899995, 271.67078230400006, 275.3961350800001, 265.2683287500001, 270.62046641399996, 276.44185497400014, 268.1489973100001, 266.01971698200015, 358.116338332, 282.43635596999997, 276.44185497400014, 278.8487096400001, 269.26434414, 266.01971698200015, 278.779143603, 271.464043968, 268.251831534, 281.147303293, 272.820287284, 275.25771565400004, 271.5674131360001, 271.7052976940001, 285.95778319799996, 271.77415147200014, 271.80866686200005, 273.02738186000005, 277.59118152900004, 277.41747475799997, 269.436148974, 261.1080641610001, 264.66472086900006, 268.11466054, 268.18315799400006, 276.51118333200014, 272.50982272699997, 282.40130511, 278.8835820750001, 274.0389419939999, 266.93058069500006, 268.886691009, 270.51727594999994, 329.34820811100013, 268.21749476400015, 284.738595062, 278.81401603800003, 261.1080641610001, 271.464043968, 275.22302183899995, 271.80866686200005, 275.25771565400004, 282.4714068299999, 266.9989595040001, 290.62382428199993, 268.2859922180002, 272.923834572, 272.88943701399995, 277.7302540619999, 275.1883280240001, 272.406275439, 275.25771565400004, 267.06751409400005, 289.581194478, 282.33138313800004, 275.29223155200003, 270.551554974, 269.367356484, 268.11466054, 284.6682550520001, 262.1563398860001, 279.96322344799995, 285.5007032780001, 287.0715847469999, 271.8775206400001, 281.1123119080001, 270.4828202300001, 264.49427948600004, 275.3269253670001, 268.715062566, 281.147303293, 285.852275422, 282.33138313800004, 273.09653159, 278.779143603, 264.698879214, 281.1123119080001, 272.88943701399995, 269.2987403849999, 280.06784004000014, 279.9282915380001, 277.1741424570001, 267.0332367990001, 271.7052976940001, 271.63626691400015, 283.5154629830001, 271.7052976940001, 271.67078230400006, 281.147303293, 279.9282915380001, 275.22302183899995, 268.2859922180002, 275.25771565400004, 264.323838103, 281.21710662000004, 272.95840943700006, 268.18315799400006, 284.773584708, 280.10277195, 266.8963034, 284.70342505700006, 266.93058069500006, 274.0043076540001, 277.625994294, 263.44248141600013, 270.4828202300001, 287.14198168799993, 277.625994294, 257.48397858200013, 272.820287284, 275.29223155200003, 323.83460474200007, 276.09485674, 258.5705916460001, 277.59118152900004, 281.04250858100005, 285.8875049019999, 277.243767987, 278.779143603, 272.785889726, 270.4828202300001, 275.1883280240001, 285.71171882999994, 275.25771565400004, 289.98668462999996, 288.22031616199996, 262.1563398860001, 275.1538121260001, 266.86220188600004, 269.26434414, 275.29223155200003], \"power_mean\": 275.49988650468634, \"energy_millijoules\": 35511.05626822373, \"energy_joules\": 35.511056268223726, \"coremark_score\": 2327.746741, \"coremarks_per_mhz\": 7.759155803333333, \"ulpmark_cm_score\": 8.448073122185562}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [416.55773525200004, 449.202572546, 413.061461631, 414.22696941600003, 410.66442924, 415.3923582510001, 414.20620074600004, 411.833885736, 416.620290996, 399.944580868, 416.599403376, 421.348160532, 414.185538582, 413.040752436, 408.29199528, 413.020043241, 409.498742835, 417.80656745100003, 410.64383919000005], \"power_mean\": 415.06029092657894, \"energy_millijoules\": 2075.3014546328945, \"energy_joules\": 2.0753014546328945}}, \"652800\": {\"active\": {\"elapsed_sec\": 59.129627373, \"elapsed_ns\": 59129627373, \"power_samples\": [330.045084366, 329.4975491010002, 334.349139366, 341.3425472730001, 337.8253431420001, 326.05794564600006, 325.0226264860001, 328.42574909600006, 326.05794564600006, 321.355471806, 337.86319088700014, 333.16523764100003, 336.52838903800006, 335.4577769820001, 330.68127270600013, 323.83460474200007, 318.87705135000004, 325.983631086, 318.87705135000004, 329.4975491010002, 329.57241155100013, 337.67414625300006, 324.8370413310001, 327.13010189100015, 324.2058992160001, 321.281632215, 329.609650821, 334.273993902, 323.5381067890001, 335.4200481870001, 338.7480443670001, 324.24290180600013, 323.5381067890001, 329.53498032600004, 318.8401555950001, 329.4228786060001, 335.00580536599995, 325.983631086, 332.9775741580001, 335.00580536599995, 328.2392736460001, 351.88833350399995, 333.09021082199996, 321.87323851, 322.354442354, 334.19884843799997, 329.4228786060001, 330.606483566, 337.48529571, 320.0238792000002, 323.57505001500016, 334.236324582, 322.4284005900001, 329.34820811100013, 333.16523764100003, 323.2044751810001, 335.53304109100003, 338.89947963000003, 324.76265468100013, 320.0238792000002, 335.4200481870001, 325.9463782860001, 330.71876340599994, 334.236324582, 336.56617730800014, 331.90642774200006, 335.4200481870001, 328.86237000600016, 322.317368174, 328.2392736460001, 316.43223931200015, 329.4603098310001, 328.3138254960001, 342.60244255800006, 339.5904885300001, 333.05260097700017, 319.9501582540001, 317.579067662, 330.71876340599994, 320.727360735, 322.46547477000007, 327.092980961, 337.7498417430001, 335.646033995, 334.086033654, 325.9463782860001, 326.64599904100004, 328.3138254960001, 316.43223931200015, 323.72339420600014, 324.76265468100013, 326.906610931, 336.75473108600005, 318.87705135000004, 330.71876340599994, 329.3854473810001, 337.7119939980001, 318.729657539, 326.57156583599993, 329.4603098310001, 340.04511770000005, 338.97510006300007, 325.834810926, 330.756254106, 334.086033654, 325.834810926, 322.28029399400003, 337.7498417430001, 327.05566868600005, 340.04511770000005, 348.142293198, 321.207602805, 325.983631086, 332.9775741580001, 325.90931652600005, 326.98123548099994, 329.4228786060001, 326.57156583599993, 344.85570922000005, 329.4228786060001, 327.2047264410001, 328.20190189600004, 331.2316764780001, 319.9501582540001, 322.4284005900001, 336.415218014, 331.71906102400004, 334.161179118, 333.0151840030001, 322.02134510600007, 323.42689625300005, 335.38251287300005, 324.7256520910002, 328.16472179600004, 331.83151956800003, 331.71906102400004, 338.9373870450001, 327.13010189100015, 328.20190189600004, 319.9501582540001, 330.64397426600004, 320.76437544000004, 327.01835641099996, 331.83151956800003, 327.092980961, 338.86157221499997, 331.6439602840001, 330.64397426600004, 330.71876340599994, 326.98123548099994, 325.872063726, 323.463839479, 397.74345744600004, 333.7099199819999, 336.56617730800014, 332.9775741580001, 325.90931652600005, 321.281632215, 338.89947963000003, 317.4319122250001, 325.277165166, 336.4530062840001, 338.7480443670001, 334.19884843799997, 321.17077791900005, 319.9132030240001, 330.756254106, 325.872063726, 325.872063726, 339.9314117320001, 329.34820811100013, 334.12350979799993, 323.1303983000001, 330.64397426600004, 326.9439232060001, 322.3913264100001, 316.358686092, 319.8764373080001, 324.651265441, 328.20190189600004, 323.50097313400005, 354.023933686, 323.42689625300005, 327.05566868600005, 325.686181806, 323.27855206199996, 325.834810926, 334.086033654, 336.60377179200015, 324.6884587660001, 343.367469116, 344.55065866600006, 324.6884587660001, 332.9399643130001, 330.531694426, 326.906610931, 328.82513073600006, 334.19884843799997, 341.228663185, 351.657554586, 321.133763214, 325.76049636600015, 328.20190189600004, 322.907977228, 326.9439232060001, 334.086033654, 344.51245387599994, 324.651265441, 336.33983526000003, 321.133763214, 328.20190189600004, 329.4228786060001, 321.02290891800004, 324.651265441, 332.9399643130001, 334.742284244, 331.6815106540001, 332.90254733900014, 325.79774916599996, 328.20190189600004, 334.086033654, 324.5028736110001, 321.318457101, 336.415218014, 324.76265468100013, 329.34820811100013, 335.3070552829999, 328.01542644600005, 332.9775741580001, 328.1273500460001, 362.6223183460001, 317.65255092900014, 335.269519969, 332.9775741580001], \"power_mean\": 329.9212122158334, \"energy_millijoules\": 19508.118340770685, \"energy_joules\": 19.508118340770686, \"coremark_score\": 5075.111652, \"coremarks_per_mhz\": 7.774374466911764, \"ulpmark_cm_score\": 15.37821304748904}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [465.00540065999996, 410.47943556, 421.158354108, 411.669005664, 414.06113957400004, 408.16937864, 410.56169017, 401.050326132, 408.16937864, 414.081908244, 409.35523938, 414.081908244, 409.33481408999995, 409.33481408999995, 408.18984974000006, 410.54110012, 405.81800931, 414.22696941600003, 414.102570408], \"power_mean\": 413.65217327315787, \"energy_millijoules\": 2068.2608663657893, \"energy_joules\": 2.0682608663657893}}, \"768000\": {\"active\": {\"elapsed_sec\": 50.26987321, \"elapsed_ns\": 50269873210, \"power_samples\": [349.59424782700006, 344.703085982, 348.8652130130001, 348.2572465900001, 335.269519969, 342.56435671800006, 340.04511770000005, 342.37431814200005, 354.2554244740001, 344.703085982, 348.21886318, 349.4791163150001, 346.92091707599997, 353.033455543, 344.359830638, 342.33623230200016, 347.03549581499993, 350.5855979100001, 348.333816572, 345.85212845000007, 347.03549581499993, 345.317603378, 345.8903929100001, 368.426538204, 343.59575415499995, 343.40541881400003, 349.36398480300005, 345.92865737000005, 344.6648811920001, 349.36398480300005, 341.11477909700005, 344.6268723240001, 358.87692925100015, 347.83581643200006, 336.37742974400004, 350.54729299800016, 333.89807340600004, 345.8903929100001, 346.99736841299995, 348.2572465900001, 351.734480892, 360.0602966159999, 339.8556726540001, 341.2666895500001, 348.1041066259999, 345.6994630660001, 344.6648811920001, 353.033455543, 349.44067343, 350.5087906380001, 357.53464293099995, 342.2221700940001, 345.27933891800006, 342.41220867, 349.4791163150001, 350.62410027000016, 349.36398480300005, 363.454172421, 345.775795758, 364.48063780600006, 342.2602559340001, 342.4502945100001, 350.5855979100001, 344.6648811920001, 346.57659125999993, 351.77284516800006, 348.142293198, 349.402230545, 352.64783467, 344.58866753399997, 347.2269189570001, 345.85212845000007, 345.92865737000005, 353.071878989, 352.95621253300004, 352.84074413599996, 347.49095625600006, 360.970998391, 344.6268723240001, 340.12105148000006, 337.48529571, 344.741290772, 345.85212845000007, 342.37431814200005, 357.6896819930001, 356.467713672, 355.01361963000005, 333.97321887000004, 340.50752729900006, 347.0738197499999, 413.13501200599995, 352.879167582, 338.6347109160001, 355.3229472630001, 357.61216246199996, 352.68645617500005, 341.03892137400004, 341.11477909700005, 348.142293198, 344.6268723240001, 342.986602817, 341.03892137400004, 354.139579898, 355.16838278100005, 348.21886318, 342.2221700940001, 348.18067660800006, 411.5368245780002, 342.33623230200016, 351.6959188619999, 344.6268723240001, 351.6959188619999, 352.84074413599996, 335.081262956, 339.8556726540001, 349.32554191800006, 342.14619372600015, 345.737727526, 350.3551760940001, 343.02474813200007, 352.84074413599996, 362.310139846, 338.710331349, 339.817900466, 346.99736841299995, 342.2221700940001, 346.99736841299995, 348.1041066259999, 335.04353416099997, 355.3229472630001, 351.6959188619999, 348.02733980600004, 344.58866753399997, 351.77284516800006, 339.8556726540001, 345.81406021800007, 354.139579898, 350.5087906380001, 354.74303245200014, 350.47048572600016, 387.99278825799996, 338.6347109160001, 345.81406021800007, 339.325109704, 342.4502945100001, 343.443564129, 347.0738197499999, 349.4791163150001, 352.57078971900006, 339.817900466, 340.84917956300006, 352.95621253300004, 338.6347109160001, 348.2572465900001, 336.30204699000006, 342.14619372600015, 350.6626026300001, 342.18427956600004, 339.779933576, 349.287296176, 354.1010972820001, 349.287296176, 342.79626747599997, 348.02733980600004, 355.207123236, 361.2048261510001, 348.02733980600004, 349.13372177900004, 354.023933686, 345.584865914, 341.03892137400004, 351.58043052600004, 336.26445250600005, 357.495783526, 361.95886384600004, 340.9250372860001, 344.51245387599994, 348.142293198, 339.8556726540001, 336.226664236, 359.788046436, 342.87236248900007, 350.31667373400006, 359.98253940600006, 344.55065866600006, 341.0010900160001, 351.6189925559999, 345.775795758, 344.55065866600006, 348.065723216, 350.4319833660001, 352.763501126, 353.98525270600004, 339.438815672, 339.817900466, 345.66119860600014, 363.41501544600015, 339.779933576, 348.18067660800006], \"power_mean\": 348.2261135786081, \"energy_millijoules\": 17505.28257800769, \"energy_joules\": 17.50528257800769, \"coremark_score\": 5969.911645, \"coremarks_per_mhz\": 7.773322454427084, \"ulpmark_cm_score\": 17.137683934156954}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [408.10807032, 405.69610515, 416.328399896, 408.0877042, 408.04676200000006, 416.3491804, 410.417771, 411.60716240000005, 413.957509236, 410.47943556, 404.53083385, 408.0877042, 415.16367590000004, 410.47943556, 405.69610515, 409.29375294, 405.77740938, 421.179479823, 405.73670508], \"power_mean\": 410.264379055, \"energy_millijoules\": 2051.321895275, \"energy_joules\": 2.0513218952749996}}, \"979200\": {\"active\": {\"elapsed_sec\": 39.415332642, \"elapsed_ns\": 39415332642, \"power_samples\": [392.8490126159999, 395.33676151599997, 383.579021041, 384.039282924, 398.88967453200013, 387.0919431260001, 398.88967453200013, 400.072685962, 391.54463138600005, 385.90887252600004, 401.1327239280001, 402.356467182, 389.6197416270001, 395.214679236, 389.3773594350001, 399.62250645599994, 395.418080021, 403.5393596620001, 390.64115492600007, 396.438126446, 388.23481421, 387.212777982, 401.74092013800004, 381.1328669040001, 396.47894969600003, 404.80473168200007, 387.0114555249999, 392.889449006, 397.6210189260001, 387.05180278000006, 383.579021041, 392.93009383099997, 386.89062066900004, 401.0916625830001, 400.68189141700003, 391.74714187600006, 388.0733945040001, 384.64167308400005, 383.41855249400004, 384.762151116, 392.97073865600004, 384.64167308400005, 404.7634919119999, 391.70655652599993, 389.296634544, 397.5394631310001, 387.6701560600001, 390.43894217400015, 392.97073865600004, 377.50021175800003, 390.5603113900001, 405.909022958, 428.3109725760001, 387.46853683800003, 398.7670573080001, 391.62559395600005, 395.25523396599993, 395.17391546100004, 389.054252352, 385.7078468340001, 399.8678868780001, 387.871775282, 396.438126446, 402.31555723800005, 389.33689323000004, 383.99926111200006, 398.807789742, 382.115538222, 385.78821579000004, 397.5394631310001, 392.6866417510001, 391.74714187600006, 392.8083677910001, 394.031845926, 389.256168339, 388.0733945040001, 379.6305490280001, 383.17815866300003, 399.9088887479999, 379.9098652640001, 389.256168339, 391.66617930599995, 388.032987774, 382.23566001399996, 395.295997741, 387.0114555249999, 397.7027843760001, 398.807789742, 392.8083677910001, 391.0180624859999, 391.66617930599995, 386.8101330680001, 382.15564738200004, 399.9088887479999, 389.296634544, 396.47894969600003, 399.8678868780001, 391.66617930599995, 385.7078468340001, 392.8083677910001, 391.74714187600006, 386.48797575500004, 447.07390378300005, 381.052767534, 404.80473168200007, 388.032987774, 394.031845926, 390.51978571, 396.92748018599997, 395.13315168599996, 395.13315168599996, 389.296634544, 391.58500860600003, 397.7843401710001, 391.5040460359999, 385.7481346140001, 393.90994176600003, 385.587190098, 389.17544344800007, 397.4579073360001, 389.913147454, 384.48096694200007, 404.598744318, 393.90994176600003, 389.2157021340001, 397.5394631310001, 389.2157021340001, 380.89297956000013, 391.62559395600005, 388.032987774, 382.07563475, 399.74530179999994, 401.6997993180002, 384.5211950520001, 399.8678868780001, 386.9711082699999, 386.850273414, 392.72728657600015, 391.5040460359999, 392.48383449600004, 403.3750608440001, 386.76978581300006, 374.936073937, 384.48096694200007, 387.3877233780001, 388.032987774, 390.39841649400006, 397.58034585600006, 398.603497689, 402.151284834, 382.19575654199997, 377.92973202, 396.31586604599994, 392.60556053600016, 383.218121305, 395.13315168599996], \"power_mean\": 392.23321341002566, \"energy_millijoules\": 15460.002579796737, \"energy_joules\": 15.460002579796738, \"coremark_score\": 7614.599726, \"coremarks_per_mhz\": 7.776347759395425, \"ulpmark_cm_score\": 19.404912673950168}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [411.58661857600003, 413.895309732, 411.565968856, 405.63515307, 421.07406792200004, 400.90983719400003, 405.67575300000004, 406.77982035, 408.00592478, 417.471951036, 415.1221264210001, 412.751354711, 414.01970874, 413.957509236, 412.79266690000003, 412.81337609499997, 411.545319136, 415.142954566, 408.45357864], \"power_mean\": 411.536789419, \"energy_millijoules\": 2057.683947095, \"energy_joules\": 2.0576839470949997}}, \"1017600\": {\"active\": {\"elapsed_sec\": 37.913379048, \"elapsed_ns\": 37913379048, \"power_samples\": [399.8678868780001, 411.827363694, 397.4579073360001, 404.7634919119999, 400.47700583400007, 398.6851725180001, 397.66190165100005, 500.08900101600005, 398.6851725180001, 398.7670573080001, 408.1507651499999, 404.43420821, 404.928239506, 399.949890618, 398.603497689, 397.66190165100005, 419.482579164, 400.8867770000001, 405.8266358700001, 404.47544797999996, 401.05060123800007, 402.561860406, 404.598744318, 398.03135396400006, 408.2336019299999, 404.63998408799995, 409.085250441, 403.3750608440001, 409.250736487, 402.31555723800005, 405.7853364300001, 399.827095274, 402.11037489000006, 403.49839054800003, 409.209471329, 404.187192562, 404.43420821, 398.603497689, 390.3175729580001, 409.250736487, 396.31586604599994, 389.094718557, 412.84405748, 411.7027859820001, 398.603497689, 408.02693478400005, 399.827095274, 397.2539130210001, 408.1507651499999, 402.0692540700001, 395.17391546100004, 412.802400995, 416.30856776800005, 392.767722966, 405.37318919800003, 397.41702461100004, 401.009750464, 404.55771603399995, 402.1924056540001, 400.3129710250001, 417.4073155429999, 403.33388054900007, 398.562765255, 402.151284834, 405.62056225400005, 402.151284834, 400.640830072, 397.49858040600014, 403.3750608440001, 415.167592425, 409.250736487, 396.234428896, 408.06814077199994, 394.97051467600005, 395.092596956, 408.02693478400005, 403.33388054900007, 406.8443982390001, 414.4171342260001, 407.90289201599995, 393.9911416260001, 406.80303932400005, 396.275252146, 398.562765255, 404.351940156, 402.151284834, 403.3750608440001, 422.18299518200007, 410.43333220200003, 401.17357470199994, 395.82703379599997, 409.126515599, 403.2929114350001, 400.845715655, 397.376351541, 395.13315168599996, 410.35047053400007, 413.27710895800004, 389.256168339, 399.70429993, 395.05183318099995, 404.47544797999996, 406.55531002800006, 391.382498116, 417.532783855, 408.06814077199994, 393.90994176600003, 398.807789742, 397.2539130210001, 397.049709051, 409.085250441, 400.763803536, 398.4401480310001, 423.449639793, 402.0692540700001, 407.86147362599996, 400.845715655, 399.70429993, 475.11226581299996, 411.5368245780002, 398.6444400840001, 397.049709051, 419.7760275120001, 419.7760275120001, 407.98551639399994, 404.43420821, 402.02813325000005, 397.33546881600006, 405.53817516600014, 393.74733330600003, 415.126031223, 411.4538438760001, 412.7193016480001, 401.53573779000016, 410.43333220200003, 387.91218201199996, 397.41702461100004, 404.47544797999996, 399.581504586, 398.5218228600001, 413.31882491799996, 410.30893319399996, 392.4027532810001, 398.3992056360001, 392.5649157110001, 393.21922110600013, 398.3992056360001, 396.0307313460001, 400.8867770000001, 410.30893319399996], \"power_mean\": 404.3245388234667, \"energy_millijoules\": 15329.309498821885, \"energy_joules\": 15.329309498821885, \"coremark_score\": 7916.193894, \"coremarks_per_mhz\": 7.779278590801886, \"ulpmark_cm_score\": 19.57035312145378}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [412.689333327, 416.182400788, 413.87454106200005, 416.20328840800005, 410.29454747000005, 412.689333327, 420.989673399, 411.545319136, 411.52477531200003, 416.307512276, 413.93674056599997, 410.31503193000003, 409.08886832999997, 416.286624656, 406.759408725, 409.12982419499997, 411.46293204799997, 411.545319136, 405.59455313999996], \"power_mean\": 412.4431593279474, \"energy_millijoules\": 2062.215796639737, \"energy_joules\": 2.062215796639737}}, \"1209600\": {\"active\": {\"elapsed_sec\": 31.904346706, \"elapsed_ns\": 31904346706, \"power_samples\": [441.02831084100006, 461.18390401100004, 446.8572150810002, 444.704953524, 444.488859936, 445.67497560600015, 446.9871393130001, 452.815968456, 446.81405531900015, 451.54665254, 461.05184117100015, 459.2542149460001, 442.21066926600014, 445.58855225400004, 444.61842734400005, 450.53439209800007, 453.9110131500001, 452.7722886510001, 456.62469420300005, 459.9136385460001, 451.2853779480001, 442.38280332200003, 447.996235624, 443.0480634419999, 452.728832845, 445.76162112599997, 454.0855216620001, 463.41632012100007, 466.833960717, 523.4626444979999, 453.25604547000006, 446.81405531900015, 450.4039335060001, 447.952793914, 451.67728983600006, 444.488859936, 463.32811631600003, 452.728832845, 452.728832845, 456.319007076, 451.416015244, 444.402555618, 443.97081216600003, 454.96202179900007, 446.6407488520002, 462.101839686, 449.0481354570001, 447.952793914, 456.14402398399994, 445.58855225400004, 446.81405531900015, 450.27347491400013, 443.263638403, 447.90935220399996, 466.080858129, 453.7800196140001, 449.1784159290001, 447.996235624, 446.81405531900015, 447.90935220399996, 455.04939470000016, 446.25097615600004, 451.416015244, 453.69276535800003, 460.8318118160001, 452.598017429, 455.48727510399993, 449.09141355899993, 443.263638403, 452.6851530400001, 459.78175382600006, 450.2301376420001, 458.51190377100005, 463.1517087060001, 440.89927779300007, 451.37239491400004, 452.5543376240001, 453.998267406, 449.134914744, 462.8868705460001, 443.30662046100014, 466.789794483, 450.09967905000013, 443.0910455000001, 452.6851530400001, 451.900484543, 441.071174559, 447.866133272, 445.41570555000004, 456.36286530599995, 460.875908141, 455.968815978, 471.254344464, 453.82353458999995, 444.359292528, 449.3086964010001, 445.41570555000004, 443.6684142599999, 446.7272908490001, 456.100165754, 467.66107901000004, 450.1865769820001, 455.00559594500004, 447.866133272, 448.917854985, 456.100165754, 449.134914744, 451.45941188, 465.607792298, 460.5676861360001, 458.4241745460001, 443.17723117300005, 446.77067308400007, 452.510881818, 450.1865769820001, 445.545229494, 454.262589373, 458.51190377100005, 452.4672020130001, 451.37239491400004, 447.822691562, 452.5543376240001, 454.96202179900007, 451.416015244, 445.32906003, 461.969825166], \"power_mean\": 452.30394240409527, \"energy_millijoules\": 14430.46179495091, \"energy_joules\": 14.43046179495091, \"coremark_score\": 9407.927747, \"coremarks_per_mhz\": 7.777718044808202, \"ulpmark_cm_score\": 20.789355480291512}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [418.556345361, 404.63977638000006, 410.19170281, 413.77091072400003, 416.182400788, 412.62731194299994, 414.2906027860001, 401.97444825199995, 412.689333327, 414.99737117300003, 423.169213725, 493.42546065399995, 417.367430403, 413.853878898, 414.99737117300003, 415.01819931800003, 450.003395782, 410.25336737, 411.46293204799997], \"power_mean\": 419.4458659428947, \"energy_millijoules\": 2097.229329714474, \"energy_joules\": 2.097229329714474}}, \"1363200\": {\"active\": {\"elapsed_sec\": 28.320330875, \"elapsed_ns\": 28320330875, \"power_samples\": [522.139430622, 530.3200284060001, 524.3611548860001, 511.54274881200007, 531.311436666, 523.1796275860002, 515.4779401080002, 531.5969484259999, 531.5016148760001, 525.5936825260001, 535.05024834, 530.3676357059999, 519.5409020260001, 532.496659122, 524.3138451560001, 526.6332255959999, 518.453518386, 526.822697871, 533.24867019, 547.958696316, 524.3611548860001, 531.358858996, 527.9096106460001, 524.3138451560001, 536.184175606, 531.4065257710001, 530.3200284060001, 524.597218308, 539.780468274, 530.1774506459999, 522.849360419, 536.088365866, 531.358858996, 530.4152430060001, 532.6870754000001, 523.1796275860002, 525.7829172060001, 543.831553704, 527.814633946, 533.8211210060001, 524.266535426, 529.0911379460001, 518.8362729400001, 530.0351170260001, 526.680654471, 526.822697871, 530.2250579459999, 534.716066658, 530.1300874860001, 522.8023524729999, 524.3611548860001, 529.0435901210001, 521.998100286, 547.910196306, 524.408222002, 528.901190481, 527.9096106460001, 530.1300874860001, 528.948738306, 531.1686807860001, 538.4072782979999, 523.6056548900001, 525.4046907659999, 544.362097786, 536.23183481, 526.5386110710001, 529.0435901210001, 528.948738306, 536.982726059, 532.4014509830001, 531.311436666, 521.7626303940001, 549.043294194, 537.8319752259999, 528.901190481, 608.966329777, 522.943860929, 532.544140816, 532.353724538, 526.586039946, 522.5193355610002, 541.951325838, 532.4489326770001, 524.1721585800001, 532.4489326770001, 528.948738306, 519.49407159, 531.358858996, 524.1721585800001, 527.862122296, 541.951325838, 533.630222382, 579.3275488380002, 540.721833693, 532.544140816, 525.2154560859999, 524.2194683099999, 520.6282894650001, 531.263769891, 534.6682212630001, 549.043294194, 523.1796275860002, 531.216347561, 522.8966106740002, 519.0711493020001, 537.2220558419999, 528.8538864910001, 534.9069575159999, 540.7699766579999, 546.4870821070001, 536.1362707359999, 528.3791397460002], \"power_mean\": 531.0751335995983, \"energy_millijoules\": 15040.223503025454, \"energy_joules\": 15.040223503025453, \"coremark_score\": 10599.583083, \"coremarks_per_mhz\": 7.775515759242957, \"ulpmark_cm_score\": 19.946512094029238}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [417.325643634, 495.79065208399993, 413.750142054, 408.986426025, 412.54468756499995, 412.54468756499995, 405.90369059999995, 407.8016337, 416.11984504400004, 416.11984504400004, 414.87261592500005, 408.22816345499996, 409.006851315, 412.60670894899994, 414.95582169400006, 412.585999754, 410.679725232, 412.565290559, 412.60670894899994], \"power_mean\": 416.5786915340526, \"energy_millijoules\": 2082.893457670263, \"energy_joules\": 2.0828934576702633}}, \"1516800\": {\"active\": {\"elapsed_sec\": 25.437593376, \"elapsed_ns\": 25437593376, \"power_samples\": [587.849222564, 596.4875677510001, 598.4361746690001, 604.495242488, 594.7873843710001, 592.527040291, 596.2734344760001, 589.030334149, 586.21497144, 591.4939608290001, 593.606450906, 594.7873843710001, 593.606450906, 597.2002506260001, 597.1492513010003, 605.2695449340001, 580.608438965, 581.9900179019999, 593.809473886, 584.0004634080001, 578.6273382880001, 595.9176392160002, 601.9280944940001, 595.8666993660001, 640.8179644590002, 586.5674420580001, 584.1512393600001, 612.1513869989999, 587.647647432, 587.798958328, 592.3242549060001, 605.4749454220002, 598.7497859700002, 593.4542488260001, 588.6264499060001, 588.8285217270002, 595.8157595160001, 588.8788451329999, 598.2832595250002, 591.7669204910001, 602.8531290810001, 593.606450906, 592.425517441, 586.4163092819999, 586.4163092819999, 588.727356117, 595.9176392160002, 588.8285217270002, 594.736764921, 601.7746449899998, 597.1492513010003, 592.845701126, 592.1722309460001, 586.516978203, 595.8666993660001, 588.727356117, 587.697911668, 604.08491826, 593.4542488260001, 599.3618968800001, 589.958753742, 584.1011528280001, 587.899745894, 600.2872874020002, 589.9081114620001, 588.9294279380001, 597.0475141860002, 599.3618968800001, 602.9554598100001, 603.9824688860001, 589.4027274780001, 584.2015840700001, 586.265176506, 588.5761265000001, 622.6755711840001, 592.2229923710001, 596.8947777460003, 593.251486466, 592.2734934810001, 590.9877233060001, 583.02059113, 590.9372815600002, 591.6148965309999, 596.9965148610002, 588.677032711, 606.450300279, 598.9537355580001, 591.0384250610002, 588.727356117, 600.5426522250002, 592.2734934810001, 594.6858845460001, 598.181141535, 597.0475141860002, 609.219346566, 599.9807446340001, 585.285898842, 584.0508081180001, 599.41301535, 592.2229923710001], \"power_mean\": 594.1338340110901, \"energy_millijoules\": 15113.334880497989, \"energy_joules\": 15.11333488049799, \"coremark_score\": 11801.730921, \"coremarks_per_mhz\": 7.780677031250001, \"ulpmark_cm_score\": 19.8500200235168}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [413.68794255000006, 402.97775157399997, 404.16619009, 415.22339123999996, 410.08896374000005, 412.50326917499996, 411.3185958, 413.667280386, 412.941761514, 407.7606915, 411.33924552, 407.78116259999996, 414.8518945910001, 411.67649438999996, 408.96589544999995, 418.43052022500007, 412.52397836999995, 406.637148325, 417.675784863], \"power_mean\": 411.2746295738421, \"energy_millijoules\": 2056.3731478692107, \"energy_joules\": 2.056373147869211}}, \"1708800\": {\"active\": {\"elapsed_sec\": 22.584083325, \"elapsed_ns\": 22584083325, \"power_samples\": [705.2408933100003, 709.8488815019998, 706.364929872, 710.122442699, 699.279732554, 699.279732554, 714.6303484800001, 710.8590193090001, 699.2235557840002, 705.1282342420002, 694.7849535760001, 693.3188773260001, 704.113157748, 702.7076860340001, 699.1114903300002, 703.77524834, 713.2797463580002, 696.8033051460002, 707.093275508, 700.2915335000002, 696.747534996, 706.1956183440002, 700.6285843500002, 693.1515262860003, 705.0155751740001, 710.8590193090001, 711.0290433170001, 705.969773001, 703.7191229759999, 696.859362771, 709.7357478540002, 701.302978206, 700.2915335000002, 713.166256386, 710.575743008, 756.6697006650002, 711.9295004759999, 697.8714610659999, 700.4037175990002, 708.442689681, 700.3474813540004, 705.405594519, 716.5918913910002, 715.070611672, 695.6232028060001, 703.6062936359999, 709.8391663980001, 695.6792009559999, 698.943248106, 698.8870713360002, 710.8025387310001, 700.0668769110002, 711.532263667, 698.6629404280002, 702.539198451, 705.969773001, 703.8877883739999, 700.2352972550002, 701.302978206, 705.913529103, 710.7457670160002, 703.3247988980002, 702.482843256, 705.913529103, 710.8025387310001, 695.6283948210003, 711.986331861, 698.831182652, 715.3553683640002, 721.3149819060004, 703.4373389320001, 706.980088928, 708.386036916, 704.9591008340001, 709.4527683179999, 710.8025387310001, 696.4678218210001, 724.284586046, 706.980088928, 709.565901966, 702.2577114769999, 702.482843256, 697.647568226, 706.1390845289998, 703.8316413180003, 703.7191229759999, 711.8161291490001, 709.3960560779999, 704.6208340180001], \"power_mean\": 705.5768705448652, \"energy_millijoules\": 15934.806836577975, \"energy_joules\": 15.934806836577975, \"coremark_score\": 13293.747507, \"coremarks_per_mhz\": 7.779580704002809, \"ulpmark_cm_score\": 18.82671080212639}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [416.40569019, 477.948041235, 414.831066446, 413.625849552, 413.625849552, 461.54549604600004, 411.215558992, 401.752953238, 406.47416935000007, 417.179336232, 414.810345112, 414.8518945910001, 421.921202064, 412.482666181, 415.93228492799994, 412.39993560199997, 406.51499259999997, 417.200175906, 406.53529955], \"power_mean\": 418.80277933510524, \"energy_millijoules\": 2094.013896675526, \"energy_joules\": 2.094013896675526}}, \"1900800\": {\"active\": {\"elapsed_sec\": 20.30835093, \"elapsed_ns\": 20308350930, \"power_samples\": [854.0713701070003, 832.6453949060001, 843.3872328740001, 840.9658754060001, 837.6604347660002, 834.940382986, 837.2983318859999, 921.8305350640003, 862.2011542460002, 849.1596012260002, 846.737858466, 848.2043290660001, 841.8915468630003, 842.3980654320001, 848.0443016860004, 849.1596012260002, 842.6269055040002, 862.1367057710002, 846.5471602740001, 840.8391207260001, 847.7896909890003, 841.954983678, 839.7867820060001, 844.416089817, 841.8915468630003, 849.2868617980002, 852.381362414, 859.2006618810001, 847.9168329160002, 843.1338989580001, 845.431979379, 842.3349539340002, 843.1338989580001, 840.776068398, 850.402488486, 847.0899201260002, 856.9040091980003, 845.3683639440001, 847.7259566040002, 845.431979379, 837.3615306060001, 846.737858466, 848.777492362, 847.6625490620002, 846.4838119020001, 858.879674046, 844.0589171050003, 844.1224728700001, 839.533835253, 851.138712249, 847.7259566040002, 844.185702708, 848.777492362, 851.0747992440001, 849.191239839, 847.7259566040002, 841.7649985500002, 842.94373571, 845.305074742, 844.416089817, 840.6493137180003, 865.355200598, 853.5600995740001, 843.9953613400003, 854.610653874, 853.4320356640003, 842.5634092140003, 851.138712249, 841.8281100480001, 837.9760779119999, 853.5600995740001, 851.0747992440001, 853.4960676190001, 848.6502317900004, 847.3445308230002, 845.1778438720003, 858.214642876, 841.4484651090002, 843.0439804270002, 857.032100674], \"power_mean\": 847.8390484313376, \"energy_millijoules\": 17218.212927700868, \"energy_joules\": 17.21821292770087, \"coremark_score\": 14784.879996, \"coremarks_per_mhz\": 7.778240738636364, \"ulpmark_cm_score\": 17.423410969518002}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [419.426029568, 415.93228492799994, 417.074708178, 411.215558992, 411.19501516799994, 406.4538624, 412.25528984, 413.542881378, 407.67901706, 409.26694559000003, 415.911397308, 417.11660236800003, 419.510078464, 420.63118626600004, 417.50794619699997, 406.4538624, 413.625849552, 413.605080882, 405.28979274000005], \"power_mean\": 413.3522836462632, \"energy_millijoules\": 2066.761418231316, \"energy_joules\": 2.066761418231316}}, \"2016000\": {\"active\": {\"elapsed_sec\": 19.145337128, \"elapsed_ns\": 19145337128, \"power_samples\": [932.310138174, 938.0702168940002, 925.3323153560002, 930.9922042860001, 945.075692223, 942.578428366, 929.9492751110001, 943.962121494, 939.1802216490003, 938.138533584, 931.9707402059998, 929.6783716210002, 935.5735461510001, 953.1208892310001, 949.9348549859999, 939.5214011800001, 941.2635865929999, 934.2590077360001, 937.2968144780002, 939.1802216490003, 936.7518084260003, 938.8557666300003, 957.975981996, 942.304561568, 938.206499932, 938.9074182830002, 942.16780395, 931.9707402059998, 937.9339338560003, 935.2329081570001, 942.3731161580001, 955.3391123900001, 944.5960325970002, 941.8257341240003, 943.4825267730002, 938.8390421180002, 937.865617166, 935.165060343, 937.4564177099999, 942.3731161580001, 945.7739386320002, 948.1982497740003, 939.8805464700001, 939.9486311580001, 939.8805464700001, 944.4590373000003, 946.8830519820003, 937.592700748, 948.2671019340003, 942.2363585400001, 951.8050383500004, 943.2773883120001, 942.3731161580001, 941.1265963630001, 942.304561568, 938.9074182830002, 942.3731161580001, 941.3469066800001, 955.1318396940001, 948.963805348, 943.34565051, 943.140160182, 937.3884513620001, 954.023142864, 940.6481843290001, 939.9486311580001, 947.0202845690001, 948.2671019340003, 953.539803982, 945.0192832340001, 935.165060343, 942.3731161580001, 939.7440261419999, 943.34565051, 942.304561568], \"power_mean\": 941.5068645103468, \"energy_millijoules\": 18025.46632937681, \"energy_joules\": 18.02546632937681, \"coremark_score\": 15683.814304, \"coremarks_per_mhz\": 7.779669793650793, \"ulpmark_cm_score\": 16.643120045725432}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [418.22088348299997, 407.51556320000003, 405.18824073, 414.581662761, 415.890509688, 405.20859288, 415.869729184, 406.41303915, 447.81591410399994, 414.664761719, 408.78143613, 411.133171904, 418.283796051, 415.890509688, 413.522112708, 415.911397308, 411.07132864000005, 415.014943504, 411.153715728], \"power_mean\": 414.3227004505263, \"energy_millijoules\": 2071.6135022526314, \"energy_joules\": 2.071613502252631}}, \"2112000\": {\"active\": {\"elapsed_sec\": 18.271480514, \"elapsed_ns\": 18271480514, \"power_samples\": [1027.9099586060001, 1018.8465946590002, 1010.3778794320001, 1031.4466474300002, 1030.483855946, 1032.851814624, 1024.304410421, 1041.534456648, 1030.119141646, 1028.796108921, 1020.8582931320002, 1032.47798291, 1028.941651326, 1029.0875678759999, 1031.30049259, 1027.764161006, 1023.4132700080002, 1033.290242112, 1033.6554732299999, 1030.046498346, 1034.760083376, 1028.796108921, 1032.405221076, 1035.790883886, 1022.9053903110002, 1022.0902801580003, 1033.4362594860002, 1032.258947286, 1038.002875983, 1029.098765396, 1030.119141646, 1034.467435667, 1021.6554174060002, 1024.159342596, 1018.4852234320001, 1065.168569522, 1020.4059354600001, 1027.473313486, 1023.8688340210001, 1029.827819546, 1038.002875983, 1024.319721996, 1024.0139018460002, 1036.825682428, 1028.577608241, 1028.432065836, 1029.754801796, 1022.7604415200001, 1026.527498286, 1033.363438482, 1046.3209415040003, 1031.081635086, 1043.7456174520003, 1043.9652948220003, 1029.6091407460003, 1036.60593374, 1028.577608241, 1029.5361229960001, 1036.6793087300002, 1033.217421108, 1035.05923459, 1042.3440439920003, 1030.790074918, 1026.2232211310002, 1030.790074918, 1036.60593374, 1032.040286723, 1027.327889726, 1042.4177163570002, 1030.863152338, 1045.8785930400002, 1037.7829491749999], \"power_mean\": 1031.1489247363472, \"energy_millijoules\": 18840.61748535222, \"energy_joules\": 18.840617485352222, \"coremark_score\": 16434.754027, \"coremarks_per_mhz\": 7.781607020359848, \"ulpmark_cm_score\": 15.923044997502723}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [414.95238776, 413.397820206, 406.311190375, 408.63803795999996, 415.80717344000004, 410.288121824, 411.05067892, 413.41848237, 412.21397765099994, 411.009485376, 409.10254196, 408.71994968999996, 411.112522184, 411.05067892, 408.678993825, 407.900305965, 416.949347871, 415.827953944, 405.10704087000005], \"power_mean\": 411.1335100584737, \"energy_millijoules\": 2055.6675502923686, \"energy_joules\": 2.0556675502923687}}, \"2208000\": {\"active\": {\"elapsed_sec\": 17.479450202, \"elapsed_ns\": 17479450202, \"power_samples\": [1142.5168819770004, 1139.770314009, 1142.202363064, 1155.074599342, 1158.752031771, 1147.8531350760004, 1155.074599342, 1157.194077786, 1158.767562626, 1157.0350689359998, 1159.547040546, 1153.8979401469999, 1159.6262555960002, 1141.7307865680002, 1153.739695336, 1160.723521926, 1156.6383622409999, 1156.4101480470001, 1146.361529422, 1147.4588044470001, 1157.3526789209998, 1156.172221191, 1142.9897962590003, 1158.370559166, 1222.119408766, 1155.9342943350002, 1159.467417171, 1151.2286067150003, 1143.924700917, 1156.876467801, 1156.876467801, 1152.2469024540003, 1163.0005400070002, 1171.934927792, 1156.9559722259999, 1155.6859400010003, 1155.775812234, 1147.4588044470001, 1167.466518403, 1167.3068490740002, 1152.552249055, 1163.937787048, 1165.034109888, 1161.3426249010001, 1164.5558137710002, 1153.423205714, 1150.9121854840002, 1162.34342447, 1160.007602166, 1152.009509958, 1156.7178666660002, 1157.893991806, 1161.1835491860002, 1169.6629555020002, 1154.2029896779998, 1152.8687386770002, 1166.1307239340001, 1150.8333848180002, 1161.3426249010001, 1168.462625262, 1163.7784736540002, 1158.990493571, 1163.698612184, 1161.4223672260002, 1151.6928511320004, 1160.086876386, 1154.124011502, 1153.026983488, 1163.618750714], \"power_mean\": 1157.469231690261, \"energy_millijoules\": 20231.925795677118, \"energy_joules\": 20.231925795677117, \"coremark_score\": 17178.195144, \"coremarks_per_mhz\": 7.779979684782609, \"ulpmark_cm_score\": 14.82804963945152}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [410.94764211200004, 413.377051536, 420.420362464, 415.661174332, 411.36638746999995, 418.07415930900004, 409.84241109, 419.23675750399997, 418.13707187700004, 418.563934208, 408.63803795999996, 425.18002678600004, 414.581662761, 405.08668872, 416.154754734, 407.4747259800001, 412.172559261, 411.009485376, 419.29984819199996], \"power_mean\": 414.48551271957894, \"energy_millijoules\": 2072.4275635978947, \"energy_joules\": 2.072427563597895}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm6150ac/new/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 250 ms\nBaseline power usage: 415 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 748 1017 1209 1363 1516 1593 1708\n\n 300:  1102     3.7 C/MHz    247 mW   67.2 J    4.5 I/mJ   272.3 s\n 576:  2125     3.7 C/MHz    268 mW   37.8 J    7.9 I/mJ   141.2 s\n 748:  2766     3.7 C/MHz    283 mW   30.7 J    9.8 I/mJ   108.5 s\n1017:  3763     3.7 C/MHz    307 mW   24.5 J   12.2 I/mJ    79.7 s\n1209:  4475     3.7 C/MHz    324 mW   21.7 J   13.8 I/mJ    67.0 s\n1363:  5045     3.7 C/MHz    337 mW   20.0 J   15.0 I/mJ    59.5 s\n1516:  5615     3.7 C/MHz    353 mW   18.9 J   15.9 I/mJ    53.4 s\n1593:  5900     3.7 C/MHz    360 mW   18.3 J   16.4 I/mJ    50.9 s\n1708:  6327     3.7 C/MHz    376 mW   17.8 J   16.8 I/mJ    47.4 s\n\n\n===== CPU 6 =====\nFrequencies: 300 652 768 979 1017 1209 1363 1516 1708 1900 2016 2112 2208\n\n 300:  2328     7.8 C/MHz    275 mW   35.5 J    8.4 I/mJ   128.9 s\n 652:  5075     7.8 C/MHz    330 mW   19.5 J   15.4 I/mJ    59.1 s\n 768:  5970     7.8 C/MHz    348 mW   17.5 J   17.1 I/mJ    50.3 s\n 979:  7615     7.8 C/MHz    392 mW   15.5 J   19.4 I/mJ    39.4 s\n1017:  7916     7.8 C/MHz    404 mW   15.3 J   19.6 I/mJ    37.9 s\n1209:  9408     7.8 C/MHz    452 mW   14.4 J   20.8 I/mJ    31.9 s\n1363: 10600     7.8 C/MHz    531 mW   15.0 J   19.9 I/mJ    28.3 s\n1516: 11802     7.8 C/MHz    594 mW   15.1 J   19.9 I/mJ    25.4 s\n1708: 13294     7.8 C/MHz    706 mW   15.9 J   18.8 I/mJ    22.6 s\n1900: 14785     7.8 C/MHz    848 mW   17.2 J   17.4 I/mJ    20.3 s\n2016: 15684     7.8 C/MHz    942 mW   18.0 J   16.6 I/mJ    19.1 s\n2112: 16435     7.8 C/MHz   1031 mW   18.8 J   15.9 I/mJ    18.3 s\n2208: 17178     7.8 C/MHz   1157 mW   20.2 J   14.8 I/mJ    17.5 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm6150ac/new/uptime.txt",
    "content": " 03:10:38 up 27 min,  load average: 1.80, 1.93, 2.07\n"
  },
  {
    "path": "results/sm6150ac/new/versions.txt",
    "content": "Kernel: Linux version 4.14.206-NetErnels (cyberknight777@cloud.drone.io) (aarch64-elf-gcc (Eva GCC) 12.0.0 20210627 (experimental), LLD 13.0.0) #151 SMP PREEMPT Sun Dec 12 12:12:21 UTC 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm7125/main/cmdline.txt",
    "content": "rcupdate.rcu_expedited=1 rcu_nocbs=0-7 noirqdebug androidboot.console=ttyMSM0 androidboot.hardware=qcom androidboot.memcg=1 androidboot.usbcontroller=a600000.dwc3 cgroup.memory=nokmem,nosocket console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0xa88000 loop.max_part=7 lpm_levels.sleep_disabled=1 msm_rtb.enabled=1 msm_rtb.filter=0x237 service_locator.enable=1 swiotlb=1 video=vfb:640x400,bpp=32,memsize=3072000 androidboot.selinux=enforcing buildvariant=userdebug isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=green androidboot.keymaster=1  androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.multisim_config=dsds androidboot.dp=0x0 androidboot.baseband=msm msm_drm.dsi_display0=dsi_nt36675_tianma_vid_display: androidboot.fpsensor=fpc androidboot.lcmtype=dsi_nt36672c_tianma_fhd_video_display androidboot.dtbo_idx=0 androidboot.dtb_idx=0 androidboot.secureboot=1 androidboot.hwc=Global_TWO androidboot.hwversion=1.91.0 androidboot.hwlevel=MP androidboot.hwname=curtana androidboot.AdcVol1=183 androidboot.AdcVol2=1403\n"
  },
  {
    "path": "results/sm7125/main/cpufreq_stats/0/time_in_state",
    "content": "300000 72356\n576000 12522\n768000 9598\n1017600 8348\n1248000 6229\n1324800 5902\n1516800 5275\n1612800 4998\n1708800 4773\n1804800 4894\n"
  },
  {
    "path": "results/sm7125/main/cpufreq_stats/0/total_trans",
    "content": "13\n"
  },
  {
    "path": "results/sm7125/main/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    576000    768000   1017600   1248000   1324800   1516800   1612800   1708800   1804800 \n   300000:         0         1         0         0         0         0         0         0         0         1 \n   576000:         0         0         1         0         0         0         0         0         0         0 \n   768000:         0         0         0         1         0         0         0         0         0         0 \n  1017600:         0         0         0         0         1         0         0         0         0         0 \n  1248000:         0         0         0         0         0         1         0         0         0         0 \n  1324800:         0         0         0         0         0         0         1         0         0         0 \n  1516800:         0         0         0         0         0         0         0         1         0         1 \n  1612800:         0         0         0         0         0         0         0         0         1         0 \n  1708800:         0         0         0         0         0         0         0         0         0         1 \n  1804800:         2         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm7125/main/cpufreq_stats/6/time_in_state",
    "content": "652800 5868\n825600 4722\n979200 4092\n1113600 3714\n1267200 3361\n1555200 2882\n1708800 2706\n1843200 2554\n1900800 2504\n1996800 2429\n2112000 2353\n2208000 2277\n2323200 95433\n"
  },
  {
    "path": "results/sm7125/main/cpufreq_stats/6/total_trans",
    "content": "15\n"
  },
  {
    "path": "results/sm7125/main/cpufreq_stats/6/trans_table",
    "content": "   From  :    To\n         :    652800    825600    979200   1113600   1267200   1555200   1708800   1843200   1900800   1996800   2112000   2208000   2323200 \n   652800:         0         1         0         0         0         0         0         0         0         0         0         0         1 \n   825600:         0         0         1         0         0         0         0         0         0         0         0         0         0 \n   979200:         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1113600:         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1267200:         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1555200:         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1708800:         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1843200:         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1900800:         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  1996800:         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2112000:         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2208000:         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2323200:         2         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm7125/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 14 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xf\nCPU part\t: 0x804\nCPU revision\t: 15\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xf\nCPU part\t: 0x804\nCPU revision\t: 15\n\nHardware\t: Qualcomm Technologies, Inc SM7125\n"
  },
  {
    "path": "results/sm7125/main/device.txt",
    "content": "Model: wcd937x Audio Codec AB IDP CURTANA\nCompatible: qcom,cust-atoll,\n"
  },
  {
    "path": "results/sm7125/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Linux version 4.14.209-positron-alpha/021975df (dereference23@github.com) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project f502b14d40e751fe00afc493ef0d08f196524886), LLD 12.0.0 (https://github.com/llvm/llvm-project f502b14d40e751fe00afc493ef0d08f196524886)) #1 SMP PREEMPT Tue Dec 8 17:42:38 UTC 2020\n[    0.000000] Boot CPU: AArch64 Processor [51df805e]\n[    0.000000] memblock_reserve: 0x92704 0xffffff89ad604bdc\n[    0.000000] Machine: Qualcomm Technologies, Inc. ATOLL-AB PM6150 wcd937x Audio Codec AB IDP CURTANA\n[    0.000000] mem-offline: no memory to offline for DDR size:4258267136\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f7000000, size 140 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6800000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f5800000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f3800000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f1400000, size 36 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000080000000, size 6 MiB\n[    0.000000] OF: reserved mem: initialized node hyp_region@80000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000080700000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node xbl_aop_mem@80700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000808ff000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node sec_apps_region@808ff000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000080900000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node smem@80900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000080b00000, size 57 MiB\n[    0.000000] OF: reserved mem: initialized node removed_region@80b00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086000000, size 132 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@86000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008e400000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node camera_region@8e400000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008e900000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_npu_region@8e900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ee00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region@8ee00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008f300000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_regions@8f300000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000091100000, size 40 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region@91100000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093900000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_fw_region@93900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093b00000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_fw_region@93b00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093b10000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_gsi_region@93b10000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093b15000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@93b15000, compatible id removed-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x000000009e000000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@9e000000, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000009f400000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_sec_regions@0x9f400000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 953768\n[    0.000000]   DMA zone: 6711 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 429480 pages, LIFO batch:31\n[    0.000000]   Normal zone: 8192 pages used for memmap\n[    0.000000]   Normal zone: 524288 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.1\n[    0.000000] percpu: Embedded 19 pages/cpu s46616 r0 d31208 u77824\n[    0.000000] pcpu-alloc: s46616 r0 d31208 u77824 alloc=19*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] CPU features: detected: Hardware dirty bit management\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 938865\n[    0.000000] Kernel command line: rcupdate.rcu_expedited=1 rcu_nocbs=0-7 noirqdebug androidboot.console=ttyMSM0 androidboot.hardware=qcom androidboot.memcg=1 androidboot.usbcontroller=a600000.dwc3 cgroup.memory=nokmem,nosocket console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0xa88000 loop.max_part=7 lpm_levels.sleep_disabled=1 msm_rtb.enabled=1 msm_rtb.filter=0x237 service_locator.enable=1 swiotlb=1 video=vfb:640x400,bpp=32,memsize=3072000 androidboot.selinux=permissive buildvariant=userdebug isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.multisim_config=dsds androidboot.dp=0x0 androidboot.baseband=msm msm_drm.dsi_display0=dsi_nt36675_tianma_vid_display: androidboot.fpsensor=fpc androidboot.lcmtype=dsi_nt36672c_tianma_fhd_video_display \n[    0.000000] I am fpc fingerprint\n[    0.000000] IRQ lockup detection disabled\n[    0.000000] board_id_hwversion_product_num : 1\n[    0.000000] board_id_hwversion_major_num : 91\n[    0.000000] board_id_hwversion_minor_num : 0\n[    0.000000] board_id_hwlevel : 9 (MP)\n[    0.000000] board_id_hwname : curtana\n[    0.000000] board_33w_supported : false\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 131072 bytes\n[    0.000000] log_buf_len: 1048576 bytes\n[    0.000000] early log buf free: 123428(94%)\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)\n[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off\n[    0.000000] software IO TLB: mapped [mem 0xfffbf000-0xfffff000] (0MB)\n[    0.000000] Memory: 3406948K/3815072K available (24062K kernel code, 2828K rwdata, 4840K rodata, 2048K init, 7523K bss, 170556K reserved, 237568K cma-reserved)\n[    0.000000] random: get_random_u64 called from 0xffffff89aba656f4 with crng_init=0\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000017a60000\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000012] clocksource: Switched to clocksource arch_sys_counter\n[    0.001740] Console: colour dummy device 80x25\n[    0.001753] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001761] pid_max: default: 32768 minimum: 301\n[    0.001807] Security Framework initialized\n[    0.001813] SELinux:  Initializing.\n[    0.001865] SELinux:  Starting in permissive mode\n[    0.001893] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.001902] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)\n[    0.013117] ASID allocator initialised with 65536 entries\n[    0.015189] Hierarchical SRCU implementation.\n[    0.017756] smp: Bringing up secondary CPUs ...\n[    0.027129] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000\n[    0.027168] CPU1: Booted secondary processor [51df805e]\n[    0.036558] GICv3: CPU2: found redistributor 200 region 0:0x0000000017aa0000\n[    0.036587] CPU2: Booted secondary processor [51df805e]\n[    0.046064] GICv3: CPU3: found redistributor 300 region 0:0x0000000017ac0000\n[    0.046092] CPU3: Booted secondary processor [51df805e]\n[    0.055671] GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000\n[    0.055698] CPU4: Booted secondary processor [51df805e]\n[    0.065404] GICv3: CPU5: found redistributor 500 region 0:0x0000000017b00000\n[    0.065431] CPU5: Booted secondary processor [51df805e]\n[    0.075909] CPU features: enabling workaround for Mismatched cache type\n[    0.075920] CPU features: enabling workaround for ARM erratum 1188873\n[    0.075932] CPU features: Unsupported CPU feature variation detected.\n[    0.075951] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000\n[    0.075979] CPU6: Booted secondary processor [51ff804f]\n[    0.086023] GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000\n[    0.086053] CPU7: Booted secondary processor [51ff804f]\n[    0.086130] smp: Brought up 1 node, 8 CPUs\n[    0.086133] SMP: Total of 8 processors activated.\n[    0.086136] CPU features: detected: GIC system register CPU interface\n[    0.086138] CPU features: detected: Privileged Access Never\n[    0.086140] CPU features: detected: LSE atomic instructions\n[    0.086142] CPU features: detected: User Access Override\n[    0.086144] CPU features: detected: 32-bit EL0 Support\n[    0.086563] CPU: All CPU(s) started at EL1\n[    0.086597] alternatives: patching kernel code\n[    0.103126] devtmpfs: initialized\n[    0.143539] Registered cp15_barrier emulation handler\n[    0.143553] Registered setend emulation handler\n[    0.143739] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.143750] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.147271] pinctrl core: initialized pinctrl subsystem\n[    0.147676] NET: Registered protocol family 16\n[    0.148450] schedtune: configured to support 8 boost groups\n[    0.149864] cpuidle: using governor qcom\n[    0.149919] NET: Registered protocol family 42\n[    0.152816] vdso32: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.152823] vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.152827] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.153450] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.153763] Failed to create IPC log0\n[    0.153765] Failed to create IPC log1\n[    0.153767] Failed to create IPC log2\n[    0.153768] Failed to create IPC log3\n[    0.153770] Failed to create IPC log4\n[    0.154852] exit: IPA_USB init success!\n[    0.158252] msm-dcc 10a2000.dcc_v2: DCC list passed 3\n[    0.158487] msm-dcc 10a2000.dcc_v2: All values written to enable\n[    0.158906] platform 82200000.qseecom: assigned reserved memory node qseecom_region@9e000000\n[    0.159568] msm_watchdog 17c10000.qcom,wdt: wdog absent resource not present\n[    0.159758] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 304\n[    0.159840] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 305\n[    0.159909] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 306\n[    0.159979] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 307\n[    0.160068] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 308\n[    0.160139] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 309\n[    0.160222] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 310\n[    0.160310] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 311\n[    0.160328] msm_watchdog 17c10000.qcom,wdt: MSM Watchdog Initialized\n[    0.160771] platform 4080000.qcom,mss: assigned reserved memory node modem_region@86000000\n[    0.160826] platform 9800000.qcom,npu: assigned reserved memory node pil_npu_region@8e900000\n[    0.160930] platform 8300000.qcom,turing: assigned reserved memory node cdsp_regions@8f300000\n[    0.161026] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.161167] platform 62400000.qcom,lpass: assigned reserved memory node pil_adsp_region@91100000\n[    0.161494] platform soc:mem_dump: assigned reserved memory node mem_dump_region\n[    0.162408] sps:sps is ready.\n[    0.162435] platform soc:qcom,smem: assigned reserved memory node smem@80900000\n[    0.164402] (NULL device *): msm_gsi_probe:4573 failed to create IPC log, continue...\n[    0.164722] platform soc:qcom,ipa_fws: assigned reserved memory node ipa_fw_region@93b00000\n[    0.167429] platform aae0000.qcom,venus: assigned reserved memory node pil_video_region@8ee00000\n[    0.170123] spmi spmi-0: PMIC arbiter version v5 (0x50000000)\n[    0.173652] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.177997] atoll-pinctrl 3400000.pinctrl: invalid resource\n[    0.215172] gpu_cx_gdsc: supplied by pm6150l_s1_level\n[    0.216014] clk: clk_osm_read_lut: index=0 freq=300000000 virtual_corner=0 open_loop_voltage=588\n[    0.216018] clk: clk_osm_read_lut: index=1 freq=556800000 virtual_corner=1 open_loop_voltage=588\n[    0.216023] clk: clk_osm_read_lut: index=2 freq=652800000 virtual_corner=2 open_loop_voltage=612\n[    0.216027] clk: clk_osm_read_lut: index=3 freq=806400000 virtual_corner=3 open_loop_voltage=652\n[    0.216031] clk: clk_osm_read_lut: index=4 freq=844800000 virtual_corner=4 open_loop_voltage=656\n[    0.216035] clk: clk_osm_read_lut: index=5 freq=940800000 virtual_corner=5 open_loop_voltage=680\n[    0.216039] clk: clk_osm_read_lut: index=6 freq=1132800000 virtual_corner=6 open_loop_voltage=716\n[    0.216043] clk: clk_osm_read_lut: index=7 freq=1209600000 virtual_corner=7 open_loop_voltage=732\n[    0.216047] clk: clk_osm_read_lut: index=8 freq=1305600000 virtual_corner=8 open_loop_voltage=764\n[    0.216051] clk: clk_osm_read_lut: index=9 freq=1401600000 virtual_corner=9 open_loop_voltage=804\n[    0.216056] clk: clk_osm_read_lut: index=10 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216060] clk: clk_osm_read_lut: index=11 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216064] clk: clk_osm_read_lut: index=12 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216068] clk: clk_osm_read_lut: index=13 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216072] clk: clk_osm_read_lut: index=14 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216076] clk: clk_osm_read_lut: index=15 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216080] clk: clk_osm_read_lut: index=16 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216085] clk: clk_osm_read_lut: index=17 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216089] clk: clk_osm_read_lut: index=18 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216093] clk: clk_osm_read_lut: index=19 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216097] clk: clk_osm_read_lut: index=20 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216101] clk: clk_osm_read_lut: index=21 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216105] clk: clk_osm_read_lut: index=22 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216109] clk: clk_osm_read_lut: index=23 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216113] clk: clk_osm_read_lut: index=24 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216117] clk: clk_osm_read_lut: index=25 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216121] clk: clk_osm_read_lut: index=26 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216125] clk: clk_osm_read_lut: index=27 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216130] clk: clk_osm_read_lut: index=28 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216134] clk: clk_osm_read_lut: index=29 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216138] clk: clk_osm_read_lut: index=30 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216142] clk: clk_osm_read_lut: index=31 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216146] clk: clk_osm_read_lut: index=32 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216150] clk: clk_osm_read_lut: index=33 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216154] clk: clk_osm_read_lut: index=34 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216158] clk: clk_osm_read_lut: index=35 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216162] clk: clk_osm_read_lut: index=36 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216166] clk: clk_osm_read_lut: index=37 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216170] clk: clk_osm_read_lut: index=38 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216175] clk: clk_osm_read_lut: index=39 freq=1459200000 virtual_corner=10 open_loop_voltage=816\n[    0.216180] clk: clk_osm_read_lut: index=0 freq=300000000 virtual_corner=0 open_loop_voltage=604\n[    0.216184] clk: clk_osm_read_lut: index=1 freq=576000000 virtual_corner=1 open_loop_voltage=604\n[    0.216188] clk: clk_osm_read_lut: index=2 freq=768000000 virtual_corner=2 open_loop_voltage=604\n[    0.216192] clk: clk_osm_read_lut: index=3 freq=1017600000 virtual_corner=3 open_loop_voltage=664\n[    0.216196] clk: clk_osm_read_lut: index=4 freq=1248000000 virtual_corner=4 open_loop_voltage=720\n[    0.216200] clk: clk_osm_read_lut: index=5 freq=1324800000 virtual_corner=5 open_loop_voltage=732\n[    0.216204] clk: clk_osm_read_lut: index=6 freq=1516800000 virtual_corner=6 open_loop_voltage=772\n[    0.216208] clk: clk_osm_read_lut: index=7 freq=1612800000 virtual_corner=7 open_loop_voltage=828\n[    0.216212] clk: clk_osm_read_lut: index=8 freq=1708800000 virtual_corner=8 open_loop_voltage=836\n[    0.216216] clk: clk_osm_read_lut: index=9 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216220] clk: clk_osm_read_lut: index=10 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216224] clk: clk_osm_read_lut: index=11 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216228] clk: clk_osm_read_lut: index=12 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216233] clk: clk_osm_read_lut: index=13 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216237] clk: clk_osm_read_lut: index=14 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216241] clk: clk_osm_read_lut: index=15 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216245] clk: clk_osm_read_lut: index=16 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216249] clk: clk_osm_read_lut: index=17 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216253] clk: clk_osm_read_lut: index=18 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216257] clk: clk_osm_read_lut: index=19 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216261] clk: clk_osm_read_lut: index=20 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216265] clk: clk_osm_read_lut: index=21 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216269] clk: clk_osm_read_lut: index=22 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216273] clk: clk_osm_read_lut: index=23 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216277] clk: clk_osm_read_lut: index=24 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216281] clk: clk_osm_read_lut: index=25 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216285] clk: clk_osm_read_lut: index=26 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216289] clk: clk_osm_read_lut: index=27 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216294] clk: clk_osm_read_lut: index=28 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216298] clk: clk_osm_read_lut: index=29 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216302] clk: clk_osm_read_lut: index=30 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216306] clk: clk_osm_read_lut: index=31 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216311] clk: clk_osm_read_lut: index=32 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216315] clk: clk_osm_read_lut: index=33 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216319] clk: clk_osm_read_lut: index=34 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216323] clk: clk_osm_read_lut: index=35 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216327] clk: clk_osm_read_lut: index=36 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216331] clk: clk_osm_read_lut: index=37 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216335] clk: clk_osm_read_lut: index=38 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216339] clk: clk_osm_read_lut: index=39 freq=1804800000 virtual_corner=9 open_loop_voltage=876\n[    0.216344] clk: clk_osm_read_lut: index=0 freq=652800000 virtual_corner=0 open_loop_voltage=604\n[    0.216349] clk: clk_osm_read_lut: index=1 freq=825600000 virtual_corner=1 open_loop_voltage=604\n[    0.216353] clk: clk_osm_read_lut: index=2 freq=979200000 virtual_corner=2 open_loop_voltage=636\n[    0.216357] clk: clk_osm_read_lut: index=3 freq=1113600000 virtual_corner=3 open_loop_voltage=664\n[    0.216361] clk: clk_osm_read_lut: index=4 freq=1267200000 virtual_corner=4 open_loop_voltage=692\n[    0.216365] clk: clk_osm_read_lut: index=5 freq=1555200000 virtual_corner=5 open_loop_voltage=744\n[    0.216369] clk: clk_osm_read_lut: index=6 freq=1708800000 virtual_corner=6 open_loop_voltage=776\n[    0.216373] clk: clk_osm_read_lut: index=7 freq=1843200000 virtual_corner=7 open_loop_voltage=800\n[    0.216377] clk: clk_osm_read_lut: index=8 freq=1900800000 virtual_corner=8 open_loop_voltage=808\n[    0.216381] clk: clk_osm_read_lut: index=9 freq=1996800000 virtual_corner=9 open_loop_voltage=832\n[    0.216385] clk: clk_osm_read_lut: index=10 freq=2112000000 virtual_corner=10 open_loop_voltage=860\n[    0.216389] clk: clk_osm_read_lut: index=11 freq=2208000000 virtual_corner=11 open_loop_voltage=880\n[    0.216393] clk: clk_osm_read_lut: index=12 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216397] clk: clk_osm_read_lut: index=13 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216402] clk: clk_osm_read_lut: index=14 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216406] clk: clk_osm_read_lut: index=15 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216410] clk: clk_osm_read_lut: index=16 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216414] clk: clk_osm_read_lut: index=17 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216418] clk: clk_osm_read_lut: index=18 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216422] clk: clk_osm_read_lut: index=19 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216426] clk: clk_osm_read_lut: index=20 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216430] clk: clk_osm_read_lut: index=21 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216434] clk: clk_osm_read_lut: index=22 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216438] clk: clk_osm_read_lut: index=23 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216442] clk: clk_osm_read_lut: index=24 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216446] clk: clk_osm_read_lut: index=25 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216450] clk: clk_osm_read_lut: index=26 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216455] clk: clk_osm_read_lut: index=27 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216459] clk: clk_osm_read_lut: index=28 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216463] clk: clk_osm_read_lut: index=29 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216467] clk: clk_osm_read_lut: index=30 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216471] clk: clk_osm_read_lut: index=31 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216475] clk: clk_osm_read_lut: index=32 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216479] clk: clk_osm_read_lut: index=33 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216483] clk: clk_osm_read_lut: index=34 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216487] clk: clk_osm_read_lut: index=35 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216491] clk: clk_osm_read_lut: index=36 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216495] clk: clk_osm_read_lut: index=37 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216500] clk: clk_osm_read_lut: index=38 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216504] clk: clk_osm_read_lut: index=39 freq=2323200000 virtual_corner=12 open_loop_voltage=912\n[    0.216597] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on cpu0\n[    0.216605] clk: add_opp: Set OPP pair (1804800000 Hz, 876000 uv) on cpu0\n[    0.216614] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on cpu1\n[    0.216623] clk: add_opp: Set OPP pair (1804800000 Hz, 876000 uv) on cpu1\n[    0.216632] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on cpu2\n[    0.216639] clk: add_opp: Set OPP pair (1804800000 Hz, 876000 uv) on cpu2\n[    0.216648] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on cpu3\n[    0.216655] clk: add_opp: Set OPP pair (1804800000 Hz, 876000 uv) on cpu3\n[    0.216664] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on cpu4\n[    0.216674] clk: add_opp: Set OPP pair (1804800000 Hz, 876000 uv) on cpu4\n[    0.216683] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on cpu5\n[    0.216691] clk: add_opp: Set OPP pair (1804800000 Hz, 876000 uv) on cpu5\n[    0.216701] clk: add_opp: Set OPP pair (652800000 Hz, 604000 uv) on cpu6\n[    0.216710] clk: add_opp: Set OPP pair (2323200000 Hz, 912000 uv) on cpu6\n[    0.216723] clk: add_opp: Set OPP pair (652800000 Hz, 604000 uv) on cpu7\n[    0.216732] clk: add_opp: Set OPP pair (2323200000 Hz, 912000 uv) on cpu7\n[    0.216799] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.216802] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on soc:qcom,cpu6-cpu-l3-lat\n[    0.216804] clk: add_opp: Set OPP pair (300000000 Hz, 588000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.216825] clk: add_opp: Set OPP pair (1459200000 Hz, 816000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.216827] clk: add_opp: Set OPP pair (1459200000 Hz, 816000 uv) on soc:qcom,cpu6-cpu-l3-lat\n[    0.216829] clk: add_opp: Set OPP pair (1459200000 Hz, 816000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.217222] sched-energy: Sched-energy-costs installed from DT\n[    0.217243] cpufreq: driver osm-cpufreq up and running\n[    0.217245] clk: clk_cpu_osm_driver_probe: OSM CPUFreq driver inited\n[    0.218795] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.219969] clk-rpmh soc:qcom,rpmh: Registered RPMh clocks\n[    0.222095] gpu_cc_gmu_clk_src: set OPP pair(19200000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.222102] gpu_cc_gmu_clk_src: set OPP pair(200000000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.222170] gpu_cc_gx_gfx3d_clk_src: set OPP pair(180000000 Hz: 49 uV) on 5000000.qcom,kgsl-3d0\n[    0.222180] gpu_cc_gx_gfx3d_clk_src: set OPP pair(700000000 Hz: 385 uV) on 5000000.qcom,kgsl-3d0\n[    0.222185] gpu_cc_gx_gfx3d_clk_src: set OPP pair(825000000 Hz: 417 uV) on 5000000.qcom,kgsl-3d0\n[    0.222203] gpu_cc-sdmmagpie 5090000.qcom,gpucc: Registered GPU CC clocks\n[    0.225929] atoll-camcc ad00000.qcom,camcc: Registered Camera CC clocks\n[    0.226959] atoll-dispcc af00000.qcom,dispcc: Registered Display CC clocks\n[    0.235384] atoll-gcc 100000.qcom,gcc: Registered GCC clocks\n[    0.237398] atoll-npucc 9980000.qcom,npucc: Registered NPU CC clocks\n[    0.238207] atoll-videocc ab00000.qcom,videocc: Registered Video CC clocks\n[    0.238459] KPI: Bootloader start count = 53189\n[    0.238461] KPI: Bootloader end count = 251373\n[    0.238463] KPI: Bootloader load kernel count = 3224707211\n[    0.238465] KPI: Kernel MPM timestamp = 263880\n[    0.238467] KPI: Kernel MPM Clock frequency = 32768\n[    0.238480] socinfo_print: v0.15, id=443, ver=1.1, raw_id=329, raw_ver=1, hw_plat=34, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=1, pmic_model=65576, pmic_die_revision=131072 foundry_id=3 serial_number=3407512481 num_pmics=2 chip_family=0x67 raw_device_family=0x6 raw_device_number=0xe nproduct_id=0x416 num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xc ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.238522] Failed to setup PIL ipc logging\n[    0.238525] msm_bus_fabric_rpmh_init_driver\n[    0.238644] msm_bus: Probe started\n[    0.239116] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.239131] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.239167] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.239207] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.239233] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.241031] msm_bus: DT Parsing complete\n[    0.243784] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.243816] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.243898] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.243983] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.244042] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.254861] mem-offline: System booted with no zone movable memory blocks. Cannot perform memory offlining\n[    0.255427] wide_ldo_dvdd_regulator: supplied by pm6150_s5\n[    0.255520] wide_ldo_dvdd2_regulator: supplied by pm6150l_s8\n[    0.255613] depth_ldo_avdd_regulator: supplied by pm6150l_bob\n[    0.255727] ultra_ldo_dvdd_regulator: supplied by pm6150_s5\n[    0.255838] front_ldo_dvdd_regulator: supplied by pm6150_s5\n[    0.256485] arm-smmu 5040000.arm,smmu-kgsl: \tnon-coherent table walk\n[    0.256488] arm-smmu 5040000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by FW configuration)\n[    0.256491] arm-smmu 5040000.arm,smmu-kgsl: \tstream matching with 5 register groups\n[    0.258017] register_client_adhoc:find path.src 161 dest 627\n[    0.258181] register_client_adhoc:Client handle 1 apps_smmu\n[    0.258279] arm-smmu 15000000.apps-smmu: \tnon-coherent table walk\n[    0.258281] arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.258285] arm-smmu 15000000.apps-smmu: \tstream matching with 71 register groups\n[    0.258873] register_client_adhoc:find path.src 161 dest 627\n[    0.258995] register_client_adhoc:Client handle 2 apps_smmu\n[    0.259128] register_client_adhoc:find path.src 161 dest 627\n[    0.259247] register_client_adhoc:Client handle 3 apps_smmu\n[    0.259392] register_client_adhoc:find path.src 22 dest 773\n[    0.259451] register_client_adhoc:Client handle 4 mnoc_hf_0_tbu\n[    0.259593] register_client_adhoc:find path.src 137 dest 772\n[    0.259655] register_client_adhoc:Client handle 5 mnoc_sf_0_tbu\n[    0.259784] register_client_adhoc:find path.src 161 dest 627\n[    0.259907] register_client_adhoc:Client handle 6 apps_smmu\n[    0.260062] register_client_adhoc:find path.src 154 dest 10076\n[    0.260106] register_client_adhoc:Client handle 7 apps_smmu\n[    0.260789] qcom,qpnp-misc c440000.qcom,spmi:qcom,pm6150@0:qcom,misc@900: probe successful\n[    0.261188] SCSI subsystem initialized\n[    0.261244] usbcore: registered new interface driver usbfs\n[    0.261256] usbcore: registered new interface driver hub\n[    0.261334] usbcore: registered new device driver usb\n[    0.261645] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.261871] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.261895] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.262049] input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800/input/input0\n[    0.262934] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150l@4:qcom,power-on@800: PMIC@SID4 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'cold' boot\n[    0.262958] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150l@4:qcom,power-on@800: PMIC@SID4: Power-off reason: Triggered from SOFT (Software)\n[    0.263145] media: Linux media interface: v0.10\n[    0.263159] Linux video capture interface: v2.00\n[    0.263172] pps_core: LinuxPPS API ver. 1 registered\n[    0.263174] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>\n[    0.263180] PTP clock support registered\n[    0.268542] tsens_tm_probe : unable to create IPC Logging 0 for tsens 0x000000000c263000\n[    0.268547] tsens_tm_probe : unable to create IPC Logging 1 for tsens 0x000000000c263000\n[    0.268550] tsens_tm_probe : unable to create IPC Logging 2 for tsens 0x000000000c263000\n[    0.269759] tsens_tm_probe : unable to create IPC Logging 0 for tsens 0x000000000c265000\n[    0.269762] tsens_tm_probe : unable to create IPC Logging 1 for tsens 0x000000000c265000\n[    0.269764] tsens_tm_probe : unable to create IPC Logging 2 for tsens 0x000000000c265000\n[    0.271924] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@9e000000\n[    0.271998] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.272120] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.272378] ION heap system created\n[    0.272435] ION heap qsecom created at 0x000000009e000000 with size 1400000\n[    0.272437] ION heap qsecom_ta created at 0x00000000f5800000 with size 1000000\n[    0.272440] ION heap secure_heap created\n[    0.272443] ION heap secure_display created at 0x00000000f7000000 with size 8c00000\n[    0.295555] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x9f400000, size 0x1e00000\n[    0.295558] ION heap secure_carveout created\n[    0.296699] qupv3_geni_se 8c0000.qcom,qupv3_0_geni_se: geni_se_probe Failed to allocate log context\n[    0.296900] iommu: Adding device 8c0000.qcom,qupv3_0_geni_se:qcom,iommu_qupv3_0_geni_se_cb to group 0\n[    0.296970] qupv3_geni_se ac0000.qcom,qupv3_1_geni_se: geni_se_probe Failed to allocate log context\n[    0.297131] iommu: Adding device ac0000.qcom,qupv3_1_geni_se:qcom,iommu_qupv3_1_geni_se_cb to group 1\n[    0.297516] PMIC@SID0: PM6150 v2.0 options: 0, 0, 0, 0\n[    0.297624] PMIC@SID4: PM8150L v3.0 options: 0, 0, 0, 0\n[    0.298163] register_client_adhoc:find path.src 90 dest 512\n[    0.298506] register_client_adhoc:find path.src 90 dest 585\n[    0.298618] register_client_adhoc:find path.src 1 dest 676\n[    0.298812] register_client_adhoc:find path.src 143 dest 777\n[    0.298867] register_client_adhoc:Client handle 8 ipa\n[    0.302594] ipa ipa3_smp2p_probe:8651 fail to get smp2p clk resp bit -517\n[    0.302952] iommu: Adding device soc:ipa_smmu_ap to group 2\n[    0.303125] iommu: Adding device soc:ipa_smmu_wlan to group 3\n[    0.303271] iommu: Adding device soc:ipa_smmu_uc to group 4\n[    0.304555] ipa ipa3_smp2p_probe:8651 fail to get smp2p clk resp bit -517\n[    0.306850] Advanced Linux Sound Architecture Driver Initialized.\n[    0.307431] Bluetooth: Core ver 2.22\n[    0.307446] NET: Registered protocol family 31\n[    0.307449] Bluetooth: HCI device and connection manager initialized\n[    0.307472] Bluetooth: HCI socket layer initialized\n[    0.307479] Bluetooth: L2CAP socket layer initialized\n[    0.307487] Bluetooth: SCO socket layer initialized\n[    0.308949] NetLabel: Initializing\n[    0.308952] NetLabel:  domain hash size = 128\n[    0.308954] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\n[    0.309010] NetLabel:  unlabeled traffic allowed by default\n[    0.309726] register_client_adhoc:find path.src 22 dest 512\n[    0.310149] register_client_adhoc:Client handle 9 bus-proxy-client\n[    0.311473] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=5500mV ncp_voltage=5500mV bst_voltage=5650mV\n[    0.311565] sched-energy energy-costs: cpu=0 eff=1024 [freq=300000 cap=78 power_d0=10] -> [freq=1804800 cap=469 power_d0=119]\n[    0.311571] sched-energy energy-costs: cpu=1 eff=1024 [freq=300000 cap=78 power_d0=10] -> [freq=1804800 cap=469 power_d0=119]\n[    0.311577] sched-energy energy-costs: cpu=2 eff=1024 [freq=300000 cap=78 power_d0=10] -> [freq=1804800 cap=469 power_d0=119]\n[    0.311582] sched-energy energy-costs: cpu=3 eff=1024 [freq=300000 cap=78 power_d0=10] -> [freq=1804800 cap=469 power_d0=119]\n[    0.311588] sched-energy energy-costs: cpu=4 eff=1024 [freq=300000 cap=78 power_d0=10] -> [freq=1804800 cap=469 power_d0=119]\n[    0.311594] sched-energy energy-costs: cpu=5 eff=1024 [freq=300000 cap=78 power_d0=10] -> [freq=1804800 cap=469 power_d0=119]\n[    0.311600] sched-energy energy-costs: cpu=6 eff=1740 [freq=652800 cap=288 power_d0=242] -> [freq=2400000 cap=1024 power_d0=2568]\n[    0.311606] sched-energy energy-costs: cpu=7 eff=1740 [freq=652800 cap=288 power_d0=242] -> [freq=2400000 cap=1024 power_d0=2568]\n[    0.311608] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.311795] gpu_gx_gdsc: supplied by pm6150_s2_level\n[    0.312125] ipa ipa3_smp2p_probe:8651 fail to get smp2p clk resp bit -517\n[    0.312452] clocksource: Switched to clocksource arch_sys_counter\n[    0.349246] VFS: Disk quotas dquot_6.6.0\n[    0.349286] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.351177] atoll-debugcc soc:qcom,cc-debug: Registered debug mux successfully\n[    0.351975] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.351979] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.353301] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=0, clocks successfully\n[    0.353514] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.357459] NET: Registered protocol family 2\n[    0.357785] TCP established hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.357902] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)\n[    0.358249] TCP: Hash tables configured (established 32768 bind 32768)\n[    0.358325] UDP hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.358361] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)\n[    0.358479] NET: Registered protocol family 1\n[    0.358987] ipa ipa3_smp2p_probe:8651 fail to get smp2p clk resp bit -517\n[    0.359224] Unpacking initramfs...\n[    0.926498] Freeing initrd memory: 22060K\n[    0.927459] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.931881] Initialise system trusted keyrings\n[    0.931960] workingset: timestamp_bits=61 max_order=20 bucket_order=0\n[    0.933788] exFAT: file-system version 5.8-2arter97\n[    0.934098] Registering sdcardfs 0.1\n[    0.934182] fuse init (API version 7.26)\n[    0.934437] SELinux:  Registering netfilter hooks\n[    0.937443] Key type asymmetric registered\n[    0.937446] Asymmetric key parser 'x509' registered\n[    0.937474] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 241)\n[    0.938619] io scheduler cfq registered (default)\n[    0.947462] iommu: Adding device 800000.qcom,gpi-dma to group 5\n[    0.948350] iommu: Adding device a00000.qcom,gpi-dma to group 6\n[    0.951413] icnss: Unable to create log context\n[    0.951416] icnss: Unable to create log long context\n[    0.952336] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.952639] iommu: Adding device 18800000.qcom,icnss to group 7\n[    0.952667] icnss: Recursive recovery allowed for WLAN\n[    0.953000] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.956356] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.957068] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.957145] icnss: Unable to create debugfs -19\n[    0.957204] icnss: Platform driver probed successfully\n[    0.958077] register_client_adhoc:find path.src 129 dest 512\n[    0.958193] register_client_adhoc:Client handle 10 pil-modem\n[    0.958207] register_client_adhoc:find path.src 125 dest 512\n[    0.958506] register_client_adhoc:Client handle 11 scm_pas\n[    0.959016] subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    0.959150] subsys-restart: __get_smem_state(): Could not get smem-states qcom,force-stop\n[    0.959437] register_client_adhoc:find path.src 154 dest 10076\n[    0.959479] register_client_adhoc:Client handle 12 pil-cdsp\n[    0.960467] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    0.960729] register_client_adhoc:find path.src 63 dest 512\n[    0.960928] register_client_adhoc:Client handle 13 pil-venus\n[    0.960937] subsys-pil-tz aae0000.qcom,venus: for venus segments only will be dumped.\n[    0.961242] subsys-pil-tz soc:qcom,kgsl-hyp: for a615_zap segments only will be dumped.\n[    0.963937] smp2p_sleepstate soc:qcom,smp2p_sleepstate: got smp2p-sleepstate-in irq 426\n[    0.966620] register_client_adhoc:find path.src 183 dest 816\n[    0.966733] register_client_adhoc:find path.src 151 dest 512\n[    0.967012] register_client_adhoc:Client handle 14 8c0000.qcom,qupv3_0_geni_se\n[    0.967293] msm_geni_serial 88c000.qcom,qup_uart: Wakeup byte 0xfd\n[    0.967436] msm_geni_serial 88c000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    0.967446] msm_geni_serial 88c000.qcom,qup_uart: Failed to create dbg dir\n[    0.967450] msm_geni_serial 88c000.qcom,qup_uart: Err in Rx IPC Log\n[    0.967452] msm_geni_serial 88c000.qcom,qup_uart: Err in Tx IPC Log\n[    0.967455] msm_geni_serial 88c000.qcom,qup_uart: Err in Pwr IPC Log\n[    0.967457] msm_geni_serial 88c000.qcom,qup_uart: Err in Misc IPC Log\n[    0.967782] 88c000.qcom,qup_uart: ttyHS0 at MMIO 0x88c000 (irq = 205, base_baud = 0) is a MSM\n[    0.968127] msm_geni_serial_init: Driver initialized\n[    0.968298] register_client_adhoc:find path.src 1 dest 618\n[    0.968521] register_client_adhoc:Client handle 15 msm-rng-noc\n[    0.969430] random: fast init done\n[    0.969682] random: crng init done\n[    0.972531] diag: Pcie registration initiated for id: 0\n[    0.973628] diag: diag_pcie_register: failed registering pcie channels\n[    0.973631] diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    0.973633] diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    1.026067] register_client_adhoc:find path.src 20003 dest 20515\n[    1.026202] register_client_adhoc:Client handle 16 disp_rsc_mnoc\n[    1.026223] register_client_adhoc:find path.src 20001 dest 20513\n[    1.026290] register_client_adhoc:Client handle 17 disp_rsc_llcc\n[    1.026317] register_client_adhoc:find path.src 20000 dest 20512\n[    1.026383] register_client_adhoc:Client handle 18 disp_rsc_ebi\n[    1.026598] [sde_rsc_hw:rsc_hw_init_v3:520]: sde rsc init successfully done\n[    1.026635] [sde_rsc:sde_rsc_probe:1888]: sde rsc index:0 probed successfully\n[    1.027213] dsi_phy ae94400.qcom,mdss_dsi_phy0: ae94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    1.027237] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-0\n[    1.027736] AXI: get_pdata(): Error: Client name not found\n[    1.027738] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    1.027741] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-0\n[    1.028121] OF: graph: no port node found in /soc/qcom,dsi-display\n[    1.028152] msm-dsi-panel:[dsi_panel_parse_triggers:1148] [nt36675 video mode dsi tianma panel] fallback to default te-pin-select\n[    1.028175] msm-dsi-panel:[dsi_panel_parse_panel_mode:1666] dsi_panel_parse_panel_mode: panel operating mode switch feature disabled\n[    1.028198] msm-dsi-panel:[dsi_panel_parse_qsync_caps:1349] [nt36675 video mode dsi tianma panel] qsync min fps not defined rc:-22\n[    1.028225] msm-dsi-panel:[dsi_panel_parse_reset_sequence:2024] RESET SEQ LENGTH = 24\n[    1.028262] msm-dsi-panel:[dsi_panel_parse_misc_features:2074] dsi_panel_parse_misc_features: ulps feature disabled\n[    1.028265] msm-dsi-panel:[dsi_panel_parse_misc_features:2080] dsi_panel_parse_misc_features: ulps during suspend feature disabled\n[    1.035608] loop: module loaded\n[    1.035796] zram: Added device: zram0\n[    1.035800] aw8624 driver version v1.0.9\n[    1.036240] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1400000\n[    1.036252] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    1.036257] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    1.036261] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    1.036267] AXI: get_pdata(): Error: Client name not found\n[    1.036269] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    1.036319] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    1.036477] QSEECOM: qseecom_probe: Unable to register bus client\n[    1.037328] [nq-nci] NFC not supported on the board!\n[    1.037450] iommu: Adding device 1de0000.qcedev to group 8\n[    1.037619] register_client_adhoc:find path.src 125 dest 512\n[    1.038003] register_client_adhoc:Client handle 19 qcedev-noc\n[    1.038188] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.038872] qce 1de0000.qcedev: QTI Crypto 5.5.1 device found @0x1de0000\n[    1.038888] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000001dc4000\n[    1.038890] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000001dc4000\n[    1.038893] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000001dc4000\n[    1.038896] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000001dc4000\n[    1.038898] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000001dc4000\n[    1.038901] sps:BAM 0x0000000001dc4000 is registered.\n[    1.038999] sps:BAM 0x0000000001dc4000 (va:0x00000000ceff4157) enabled: ver:0x27, number of pipes:16\n[    1.039086] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 9\n[    1.039670] iommu: Adding device 1de0000.qcedev:qcom_cedev_ns_cb to group 9\n[    1.039980] qcedev_setup_context_bank Attached 1de0000.qcedev:qcom_cedev_ns_cb and create mapping\n[    1.039984] qcedev_setup_context_bank Context Bank name:ns_context, is_secure:0, start_addr:0x60000000\n[    1.040205] iommu: Adding device 1de0000.qcedev:qcom_cedev_s_cb to group 10\n[    1.041315] qcedev_setup_context_bank Attached 1de0000.qcedev:qcom_cedev_s_cb and create mapping\n[    1.041318] qcedev_setup_context_bank Context Bank name:secure_context, is_secure:1, start_addr:0xa0000000\n[    1.043503] iommu: Adding device 1de0000.qcrypto to group 11\n[    1.043573] register_client_adhoc:find path.src 125 dest 512\n[    1.043942] register_client_adhoc:Client handle 20 qcrypto-noc\n[    1.044537] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.045149] qcrypto 1de0000.qcrypto: QTI Crypto 5.5.1 device found @0x1de0000\n[    1.045280] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 9\n[    1.045629] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    1.045744] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    1.045806] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    1.045873] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    1.045933] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    1.045992] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    1.046051] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    1.046112] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    1.046177] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    1.046236] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    1.046295] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    1.046361] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    1.046424] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    1.046484] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    1.046545] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    1.046931] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    1.046992] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    1.047052] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    1.047112] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    1.047174] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    1.048253] register_client_adhoc:find path.src 184 dest 817\n[    1.048379] register_client_adhoc:find path.src 152 dest 512\n[    1.048658] register_client_adhoc:Client handle 21 ac0000.qcom,qupv3_1_geni_se\n[    1.049526] iommu: Adding device ae00000.qcom,mdss_mdp to group 12\n[    1.049987] register_client_adhoc:find path.src 1 dest 590\n[    1.050280] register_client_adhoc:Client handle 22 mdss_reg\n[    1.050312] register_client_adhoc:find path.src 22 dest 512\n[    1.050507] register_client_adhoc:Client handle 23 mdss_sde\n[    1.050547] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops 0xffffff89ad31ed70)\n[    1.050728] msm-dsi-display:[dsi_display_bind] Successfully bind display panel 'dsi_nt36675_tianma_vid_display'\n[    1.050928] genirq: irq_chip msmgpio-dc did not update eff. affinity mask of irq 237\n[    1.050953] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display (ops 0xffffff89ad31ce28)\n[    1.050959] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops 0xffffff89ad31bff0)\n[    1.050979] [drm] mapped mdp address space @000000002e120bda\n[    1.050993] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: vbif_nrt_phys\n[    1.051027] [drm:_sde_kms_get_splash_data:3304] splash mem num_regions:1\n[    1.051040] [drm:_sde_kms_get_splash_data:3339] splash mem for disp:1 add:9c000000 size:1700000\n[    1.051610] [drm:sde_kms_hw_init:3485] sde hardware revision:0x60020000\n[    1.052601] [drm] Created domain mdp_ns [80000000,80000000] secure=0\n[    1.053776] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 13\n[    1.053794] [drm] probing device qcom,smmu_sde_sec\n[    1.053800] [drm] Created domain mdp_s [80000000,80000000] secure=1\n[    1.056166] [drm:0xffffff89abf9085c] *ERROR* invalid feature map 12 for feature 31\n[    1.056912] [drm:0xffffff89abf9085c] *ERROR* invalid feature map 12 for feature 31\n[    1.057536] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    1.057538] [drm] No driver support for vblank timestamp query.\n[    1.057888] [drm] Initialized msm_drm 1.2.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    1.057949] msm-dsi-panel:[dsi_panel_parse_topology:2851] default topology: lm: 1 comp_enc:0 intf: 1\n[    1.058011] msm-dsi-panel:[dsi_panel_parse_partial_update_caps:2941] partial update disabled as the property is not set\n[    1.058152] dsi-ctrl:[_dsi_ctrl_setup_isr] [DSI_0] IRQ 427 registered\n[    1.092491] iommu: Adding device 506a000.qcom,gmu:gmu_user to group 14\n[    1.093092] iommu: Adding device 506a000.qcom,gmu:gmu_kernel to group 15\n[    1.094459] register_client_adhoc:find path.src 26 dest 512\n[    1.094658] register_client_adhoc:Client handle 24 grp3d\n[    1.094676] register_client_adhoc:find path.src 26 dest 10036\n[    1.094816] register_client_adhoc:Client handle 25 cnoc\n[    1.094820] query_client_usecase_all: query_start\n[    1.094869] query_client_usecase_all: query_start\n[    1.097693] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 16\n[    1.097938] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 17\n[    1.121740] libphy: Fixed MDIO Bus: probed\n[    1.121863] tun: Universal TUN/TAP device driver, 1.6\n[    1.122743] PPP generic driver version 2.4.2\n[    1.122819] PPP BSD Compression module registered\n[    1.122822] PPP Deflate Compression module registered\n[    1.122859] PPP MPPE Compression module registered\n[    1.122861] NET: Registered protocol family 24\n[    1.122863] PPTP driver version 0.8.5\n[    1.123053] wcnss_pre_alloc_init: Failed to create debugfs dir\n[    1.123056] cnss_utils: Unable to create debugfs -19\n[    1.123058] CLD80211: Initializing\n[    1.123126] usbcore: registered new interface driver r8152\n[    1.123136] usbcore: registered new interface driver asix\n[    1.123146] usbcore: registered new interface driver ax88179_178a\n[    1.123157] usbcore: registered new interface driver cdc_ether\n[    1.123168] usbcore: registered new interface driver net1080\n[    1.123179] usbcore: registered new interface driver cdc_subset\n[    1.123190] usbcore: registered new interface driver zaurus\n[    1.123195] usbnet_init: Error getting ipc_log_ctxt\n[    1.123196] usbnet_init: Error getting ipc_log_ctxt\n[    1.123198] usbnet_init: Error getting ipc_log_ctxt\n[    1.123210] usbcore: registered new interface driver cdc_ncm\n[    1.124523] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    1.126312] register_client_adhoc:find path.src 123 dest 512\n[    1.126703] register_client_adhoc:find path.src 1 dest 757\n[    1.126903] register_client_adhoc:Client handle 26 ufshc_mem\n[    1.126980] ufshcd-qcom 1d84000.ufshc: ufs_qcom_parse_reg_info: Unable to find qcom,vccq-parent-supply regulator, assuming enabled\n[    1.128437] scsi host0: ufshcd\n[    1.153871] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.155363] panel_info 0\n[    1.155515] msm-qusb-phy-v2 88e3000.qusb: can't create debugfs root for 88e3000.qusb\n[    1.156520] iommu: Adding device a600000.ssusb to group 18\n[    1.158227] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.158469] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.158473] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.158887] register_client_adhoc:find path.src 61 dest 512\n[    1.159281] register_client_adhoc:find path.src 61 dest 676\n[    1.159456] register_client_adhoc:find path.src 1 dest 583\n[    1.159652] register_client_adhoc:Client handle 27 usb0\n[    1.161403] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    1.161405] ehci-platform: EHCI generic platform driver\n[    1.162073] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    1.162076] ohci-platform: OHCI generic platform driver\n[    1.162397] usbcore: registered new interface driver usb-storage\n[    1.164667] fgsi_init: Err allocating ipc_log_ctxt\n[    1.165551] qpnp-pdphy c440000.qcom,spmi:qcom,pm6150@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.165978] usbcore: registered new interface driver xpad\n[    1.165988] [FTS_TS/E]fts_ts_init:Unknown Touch\n[    1.165991] [NVT-ts] nvt_driver_init 2579: start\n[    1.165998] [NVT-ts] nvt_driver_init 2591: TP info: [Vendor]tianma [IC]nt36675\n[    1.166077] [NVT-ts] nvt_ts_probe 1702: start\n[    1.166090] [NVT-ts] nvt_ts_probe 1767: mode=0, max_speed_hz=8000000\n[    1.166096] [NVT-ts] nvt_parse_dt 1100: novatek,irq-gpio=9\n[    1.166099] [NVT-ts] nvt_parse_dt 1107: SWRST_N8_ADDR=0x03F0FE\n[    1.166102] [NVT-ts] nvt_parse_dt 1116: SPI_RD_FAST_ADDR=0x03F310\n[    1.166105] [NVT-ts] nvt_ts_get_regulator 1564: get/put regulator : 1 \n[    1.166171] [NVT-ts] nvt_ts_enable_regulator 1635: Already disable touch regulator\n[    1.166444] spi_geni a94000.spi: proto 1\n[    1.166467] spi_geni a94000.spi: tx_fifo 16 rx_fifo 32 tx_width 32\n[    1.174927] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.185510] [NVT-ts] nvt_ts_check_chip_ver_trim 1514: buf[1]=0x00, buf[2]=0x00, buf[3]=0x01, buf[4]=0x75, buf[5]=0x66, buf[6]=0x03\n[    1.185512] [NVT-ts] nvt_ts_check_chip_ver_trim 1533: This is NVT touch IC\n[    1.185595] input: NVTCapacitiveTouchScreen as /devices/virtual/input/input1\n[    1.185670] [NVT-ts] nvt_ts_probe 1891: int_trigger_type=1\n[    1.185930] [NVT-ts] nvt_irq_enable 251: enable=0, desc->depth=1\n[    1.185932] [NVT-ts] nvt_ts_probe 1900: request irq 235 succeed\n[    1.187027] [NVT-ts] nvt_ts_probe 1920: NVT_TOUCH_ESD_PROTECT is 0\n[    1.187037] [NVT-ts] nvt_flash_proc_init 946: Succeeded!\n[    1.187039] [NVT-ts] nvt_flash_proc_init 949: ============================================================\n[    1.187041] [NVT-ts] nvt_flash_proc_init 950: Create /proc/NVTSPI\n[    1.187043] [NVT-ts] nvt_flash_proc_init 951: ============================================================\n[    1.187050] [NVT-ts] nvt_extra_proc_init 1853: create proc/nvt_fw_version Succeeded!\n[    1.187054] [NVT-ts] nvt_extra_proc_init 1861: create proc/nvt_baseline Succeeded!\n[    1.187059] [NVT-ts] nvt_extra_proc_init 1869: create proc/nvt_raw Succeeded!\n[    1.187064] [NVT-ts] nvt_extra_proc_init 1877: create proc/nvt_diff Succeeded!\n[    1.187067] [NVT-ts] nvt_extra_proc_init 1885: create proc/nvt_pf_switch Succeeded!\n[    1.187071] [NVT-ts] nvt_extra_proc_init 1893: create proc/nvt_sensitivity_switch Succeeded!\n[    1.187074] [NVT-ts] nvt_extra_proc_init 1901: create proc/nvt_er_range_switch Succeeded!\n[    1.187077] [NVT-ts] nvt_extra_proc_init 1909: create proc/nvt_max_power_switch Succeeded!\n[    1.187080] [NVT-ts] nvt_extra_proc_init 1917: create proc/nvt_edge_reject_switch Succeeded!\n[    1.187084] [NVT-ts] nvt_extra_proc_init 1925: create proc/nvt_pocket_palm_switch Succeeded!\n[    1.187086] [NVT-ts] nvt_extra_proc_init 1933: create proc/nvt_charger_switch Succeeded!\n[    1.188147] [NVT-ts] nvt_ts_probe 1997: end\n[    1.188159] [NVT-ts] nvt_irq_enable 251: enable=1, desc->depth=0\n[    1.188162] [NVT-ts] nvt_ts_probe 2016: pm_runtime_get fail!\n[    1.188190] [NVT-ts] nvt_driver_init 2616: finished\n[    1.188939] fpc1020 soc:fpc1020: found pin control fpc1020_reset_reset\n[    1.188942] fpc1020 soc:fpc1020: found pin control fpc1020_reset_active\n[    1.188946] fpc1020 soc:fpc1020: found pin control fpc1020_irq_active\n[    1.199645] fpc1020 soc:fpc1020: IRQ after reset 90=1\n[    1.199651] fpc1020 Create proc entry success!\n[    1.199654] fpc1020 soc:fpc1020: fpc1020_probe: ok\n[    1.199751] fpc1020_init OK\n[    1.199754] gf_spi:  hml gf_init failed as fpsensor = 1(2=gdx)\n[    1.200242] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm6150@0:qcom,pm6150_rtc: rtc core: registered qpnp_rtc as rtc0\n[    1.200593] i2c /dev entries driver\n[    1.201113] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-qos-lut : doesn't exist in device tree\n[    1.201116] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-danger-lut : doesn't exist in device tree\n[    1.201119] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-safe-lut : doesn't exist in device tree\n[    1.201183] register_client_adhoc:find path.src 1 dest 590\n[    1.201471] register_client_adhoc:Client handle 27 sde_reg\n[    1.201962] register_client_adhoc:find path.src 25 dest 512\n[    1.202157] register_client_adhoc:Client handle 28 mdss_rotator\n[    1.202169] register_client_adhoc:find path.src 1 dest 590\n[    1.202351] register_client_adhoc:Client handle 29 mdss_rot_reg\n[    1.202774] No change in context(0==0), skip\n[    1.204062] sde_rotator ae00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    1.205313] i2c_geni 880000.i2c: Bus frequency is set to 1000000Hz.\n[    1.205990] i2c_geni 890000.i2c: Bus frequency is set to 400000Hz.\n[    1.206456] aw8624_haptic 1-005a: aw8624_parse_dt: reset gpio provided ok\n[    1.206461] aw8624_haptic 1-005a: aw8624_parse_dt: irq gpio provided ok.\n[    1.206668] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 19\n[    1.206707] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    1.206747] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 20\n[    1.206767] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    1.224595] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[1, 1], pwr[FAST MODE, FAST MODE], rate = 2\n[    1.224983] scsi 0:0:0:49488: Well-known LUN    SKhynix  H9HQ53ACPMMDAR   0004 PQ: 0 ANSI: 6\n[    1.225654] scsi 0:0:0:49456: Well-known LUN    SKhynix  H9HQ53ACPMMDAR   0004 PQ: 0 ANSI: 6\n[    1.226191] scsi 0:0:0:49476: Well-known LUN    SKhynix  H9HQ53ACPMMDAR   0004 PQ: 0 ANSI: 6\n[    1.226764] scsi 0:0:0:0: Direct-Access     SKhynix  H9HQ53ACPMMDAR   0004 PQ: 0 ANSI: 6\n[    1.227164] scsi 0:0:0:1: Direct-Access     SKhynix  H9HQ53ACPMMDAR   0004 PQ: 0 ANSI: 6\n[    1.227495] scsi 0:0:0:2: Direct-Access     SKhynix  H9HQ53ACPMMDAR   0004 PQ: 0 ANSI: 6\n[    1.227823] scsi 0:0:0:3: Direct-Access     SKhynix  H9HQ53ACPMMDAR   0004 PQ: 0 ANSI: 6\n[    1.228155] scsi 0:0:0:4: Direct-Access     SKhynix  H9HQ53ACPMMDAR   0004 PQ: 0 ANSI: 6\n[    1.228492] scsi 0:0:0:5: Direct-Access     SKhynix  H9HQ53ACPMMDAR   0004 PQ: 0 ANSI: 6\n[    1.229965] sd 0:0:0:1: [sdb] Write Protect is off\n[    1.229970] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.230118] sd 0:0:0:0: [sda] Write Protect is off\n[    1.230121] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.230356] sd 0:0:0:1: [sdb] Optimal transfer size 524288 bytes\n[    1.230878] sd 0:0:0:0: [sda] Optimal transfer size 524288 bytes\n[    1.232557] sd 0:0:0:2: [sdc] Write Protect is off\n[    1.232561] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.232780]  sdb: sdb1 sdb2\n[    1.232886] sd 0:0:0:2: [sdc] Optimal transfer size 524288 bytes\n[    1.233586]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18\n[    1.234166] sd 0:0:0:3: [sdd] Write Protect is off\n[    1.234170] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.234362] sd 0:0:0:3: [sdd] Optimal transfer size 524288 bytes\n[    1.235455]  sdc: sdc1 sdc2\n[    1.236674]  sdd: sdd1 sdd2 sdd3\n[    1.236752] sd 0:0:0:4: [sde] Write Protect is off\n[    1.236756] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    1.237096] sd 0:0:0:4: [sde] Optimal transfer size 524288 bytes\n[    1.238646] sd 0:0:0:5: [sdf] Write Protect is off\n[    1.238650] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    1.238885] sd 0:0:0:5: [sdf] Optimal transfer size 524288 bytes\n[    1.239510]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51 sde52 sde53 sde54 sde55\n[    1.240233] i2c_geni 890000.i2c: i2c error :-107\n[    1.240238] aw8624_i2c_read: i2c_read cnt=0 error=-107\n[    1.241393]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5\n[    1.260208] aw8624_read_chipid aw8624 detected\n[    1.280195] aw8624_interrupt_setup: reg SYSINT=0x0\n[    1.283062] aw8624_vibrator_init enter\n[    1.283065] aw8624_haptic_init enter\n[    1.287227] aw8624_haptic_f0_calibration enter\n[    1.287344] aw8624_haptic_get_f0 enter\n[    1.287346] aw8624_haptic_play_go enter\n[    1.288918] aw8624_interrupt_clear enter\n[    1.290783] aw8624_haptic_set_f0_preset enter\n[    1.291635] aw8624_haptic_play_go enter\n[    1.472386] aw8624_haptic_read_f0 enter\n[    1.472733] aw8624_haptic_read_f0 f0=2028\n[    1.473073] aw8624_haptic_read_beme max_pos_beme=102\n[    1.473075] aw8624_haptic_read_beme max_neg_beme=141\n[    1.473642] aw8624->f0_calib_data=60\n[    1.473927] aw8624_haptic_f0_calibration final trim_lra=0x3c\n[    1.476070] aw8624_interrupt_clear enter\n[    1.476522] aw8624_haptic_play_go enter\n[    1.493531] aw8624_haptic_stop_delay do not enter standby automatically\n[    1.495482] input: aw8624_haptic as /devices/platform/soc/890000.i2c/i2c-1/1-005a/input/input2\n[    1.495591] aw8624_i2c_probe probe completed successfully!\n[    1.495776] iommu: Adding device 9900000.qcom,msm_npu to group 21\n[    1.496097] register_client_adhoc:find path.src 154 dest 512\n[    1.496365] register_client_adhoc:find path.src 154 dest 620\n[    1.496627] register_client_adhoc:Client handle 30 9900000.qcom,msm_npu\n[    1.496630] NPU_INFO: npu_parse_dt_bw: 1698 NPU BW client sets up successfully\n[    1.497643] NPU_INFO: npu_adjust_max_power_level: 1797 Adjust max_pwrlevel to 3[29]\n[    1.498801] NPU_ERR: npu_debugfs_init: 367 debugfs_create_dir for npu failed, error -19\n[    1.505439] iommu: Adding device aa00000.qcom,vidc:non_secure_cb to group 22\n[    1.505926] iommu: Adding device aa00000.qcom,vidc:secure_bitstream_cb to group 23\n[    1.507348] iommu: Adding device aa00000.qcom,vidc:secure_pixel_cb to group 24\n[    1.508418] iommu: Adding device aa00000.qcom,vidc:secure_non_pixel_cb to group 25\n[    1.510801] i2c_geni a8c000.i2c: Bus frequency is set to 100000Hz.\n[    1.512118] i2c_geni a8c000.i2c: i2c error :-107\n[    1.512124] read failed rc=-107\n[    1.512126] Invalid REVID peripheral type: 00\n[    1.512135] qcom,qpnp-revid: probe of a8c000.i2c:qcom,pm8008@8:qcom,revid@100 failed with error -22\n[    1.512525] i2c_geni a8c000.i2c: i2c error :-107\n[    1.512530] qcom-spmi-gpio a8c000.i2c:qcom,pm8008@8:pinctrl@c000: read 0x4 failed\n[    1.512534] qcom-spmi-gpio a8c000.i2c:qcom,pm8008@8:pinctrl@c000: failed to populate gpio 0, ret=-107\n[    1.512542] qcom-spmi-gpio: probe of a8c000.i2c:qcom,pm8008@8:pinctrl@c000 failed with error -107\n[    1.512578] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    1.512644] i2c_pmic 2-0009: could not find pctldev for node /soc/i2c@a8c000/qcom,pm8008@8/pinctrl@c000/gpio1_active/pm8008_gpio1_active, deferring probe\n[    1.513054] i2c_geni a8c000.i2c: i2c error :-107\n[    1.513238] i2c_geni a8c000.i2c: i2c error :-107\n[    1.513420] i2c_geni a8c000.i2c: i2c error :-107\n[    1.513603] i2c_geni a8c000.i2c: i2c error :-107\n[    1.513606] I2C PMIC: i2c_pmic_read: i2c_pmic_read failed for 3 retries, rc = -107\n[    1.513609] I2C PMIC: i2c_pmic_determine_initial_status: Couldn't read irq data rc=-107\n[    1.513612] I2C PMIC: i2c_pmic_probe: Couldn't determine initial status rc=-107\n[    1.513625] i2c_pmic: probe of 2-0034 failed with error -107\n[    1.516500] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 26\n[    1.516677] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 27\n[    1.516954] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 28\n[    1.517001] platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node camera_region@8e400000\n[    1.517269] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 29\n[    1.517442] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 30\n[    1.519769] register_client_adhoc:find path.src 1 dest 589\n[    1.520127] register_client_adhoc:Client handle 31 cam_ahb\n[    1.520276] register_client_adhoc:find path.src 136 dest 512\n[    1.520466] register_client_adhoc:Client handle 32 cam_hf_1_mnoc\n[    1.520577] register_client_adhoc:find path.src 146 dest 778\n[    1.520618] register_client_adhoc:Client handle 33 cam_hf_1_camnoc\n[    1.520705] register_client_adhoc:find path.src 145 dest 512\n[    1.520889] register_client_adhoc:Client handle 34 cam_hf_2_mnoc\n[    1.520988] register_client_adhoc:find path.src 147 dest 778\n[    1.521028] register_client_adhoc:Client handle 35 cam_hf_2_camnoc\n[    1.521107] register_client_adhoc:find path.src 137 dest 512\n[    1.521295] register_client_adhoc:Client handle 36 cam_sf_1_mnoc\n[    1.521390] register_client_adhoc:find path.src 148 dest 778\n[    1.521429] register_client_adhoc:Client handle 37 cam_sf_1_camnoc\n[    1.530227] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1082 Inval_prms soc_info:00000000dfee55e6 hw_intf:000000006eaf838f hw_info00000000f0fd7e53\n[    1.530233] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1083 controller: 00000000f47ac5d9\n[    1.530235] CAM_ERR: CAM-ISP: cam_vfe_core_init: 875 Error! RD cam_vfe_bus_init failed\n[    1.531664] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1082 Inval_prms soc_info:0000000054ac097c hw_intf:00000000efae03d9 hw_info00000000f0fd7e53\n[    1.531667] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1083 controller: 00000000174f9bec\n[    1.531669] CAM_ERR: CAM-ISP: cam_vfe_core_init: 875 Error! RD cam_vfe_bus_init failed\n[    1.532747] CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 525 No clk named ife_dsp_clk found. Dev vfe2\n[    1.560605] ==test qcom,fcc-max-ua:3600000\n[    1.560647] smb en qc3 with cp:1\n[    1.560654] Couldn't parse device tree rc=-517\n[    1.561374] [Onewire] onewire_gpio_init: onewire gpio init entry.\n[    1.561588] [ds28e16] ds28e16_init: ds28e16_init entry.\n[    1.572729] device-mapper: uevent: version 1.0.3\n[    1.572973] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com\n[    1.574266] bt_dt_parse_vreg_info: qca,bt-vdd-vl: is not provided in device tree\n[    1.574269] bt_dt_parse_vreg_info: qca,bt-vdd-vm: is not provided in device tree\n[    1.574271] bt_dt_parse_vreg_info: qca,bt-vdd-5c: is not provided in device tree\n[    1.574274] bt_dt_parse_vreg_info: qca,bt-vdd-5a: is not provided in device tree\n[    1.574276] bt_dt_parse_vreg_info: qca,bt-vdd-vh: is not provided in device tree\n[    1.574291] bt_dt_parse_vreg_info: qca,bt-vdd-ldo: is not provided in device tree\n[    1.574293] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    1.574296] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in device tree\n[    1.574299] bt_power_populate_dt_pinfo: bt-3P3-gpio not provided in devicetree\n[    1.574301] bt_power_populate_dt_pinfo: bt-1P3-gpio not provided in devicetree\n[    1.574304] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.574305] bt_power_populate_dt_pinfo: clock not provided in device tree\n[    1.574840] sdhci: Secure Digital Host Controller Interface driver\n[    1.574841] sdhci: Copyright(c) Pierre Ossman\n[    1.574843] sdhci-pltfm: SDHCI platform and OF driver helper\n[    1.576230] usbcore: registered new interface driver usbhid\n[    1.576232] usbhid: USB HID core driver\n[    1.576428] ashmem: initialized\n[    1.576489] wlan_hdd_state wlan major(501) initialized\n[    1.580285] register_client_adhoc:find path.src 81 dest 512\n[    1.580675] register_client_adhoc:find path.src 1 dest 608\n[    1.580881] register_client_adhoc:Client handle 38 sdhc2\n[    1.592518] mmc0: SDHCI controller on 8804000.sdhci [8804000.sdhci] using 64-bit ADMA in legacy mode\n[    1.621324] bimc-bwmon 90b6300.qcom,cpu-cpu-llcc-bwmon: BW HWmon governor registered.\n[    1.621376] bimc-bwmon 90cd000.qcom,cpu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    1.621680] bimc-bwmon 60400.qcom,npu-npu-ddr-bwmon: BW HWmon governor registered.\n[    1.621782] bimc-bwmon 70300.qcom,npudsp-npu-ddr-bwmon: BW HWmon governor registered.\n[    1.622511] arm-memlat-mon soc:qcom,cpu0-cpu-l3-latmon: Memory Latency governor registered.\n[    1.622544] arm-memlat-mon soc:qcom,cpu6-cpu-l3-latmon: Memory Latency governor registered.\n[    1.622578] arm-memlat-mon soc:qcom,cpu0-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.622609] arm-memlat-mon soc:qcom,cpu6-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.622641] arm-memlat-mon soc:qcom,cpu0-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.622677] arm-memlat-mon soc:qcom,cpu6-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.622710] arm-memlat-mon soc:qcom,cpu0-computemon: Compute governor registered.\n[    1.622740] arm-memlat-mon soc:qcom,cpu6-computemon: Compute governor registered.\n[    1.623817] register_client_adhoc:find path.src 1 dest 770\n[    1.623914] register_client_adhoc:Client handle 39 soc:qcom,cpu-cpu-llcc-bw\n[    1.624271] register_client_adhoc:find path.src 129 dest 512\n[    1.624340] register_client_adhoc:Client handle 40 soc:qcom,cpu-llcc-ddr-bw\n[    1.625696] register_client_adhoc:find path.src 1 dest 770\n[    1.625755] register_client_adhoc:Client handle 41 soc:qcom,cpu0-cpu-llcc-lat\n[    1.627981] register_client_adhoc:find path.src 1 dest 770\n[    1.628034] register_client_adhoc:Client handle 42 soc:qcom,cpu6-cpu-llcc-lat\n[    1.628185] register_client_adhoc:find path.src 129 dest 512\n[    1.628253] register_client_adhoc:Client handle 43 soc:qcom,cpu0-llcc-ddr-lat\n[    1.628432] register_client_adhoc:find path.src 129 dest 512\n[    1.628486] register_client_adhoc:Client handle 44 soc:qcom,cpu6-llcc-ddr-lat\n[    1.628639] register_client_adhoc:find path.src 129 dest 512\n[    1.628822] register_client_adhoc:Client handle 45 soc:qcom,cpu0-cpu-ddr-latfloor\n[    1.628999] register_client_adhoc:find path.src 129 dest 512\n[    1.629053] register_client_adhoc:Client handle 46 soc:qcom,cpu6-cpu-ddr-latfloor\n[    1.629219] register_client_adhoc:find path.src 154 dest 512\n[    1.629512] register_client_adhoc:Client handle 47 soc:qcom,npu-npu-ddr-bw\n[    1.629718] register_client_adhoc:find path.src 154 dest 512\n[    1.629880] register_client_adhoc:Client handle 48 soc:qcom,npudsp-npu-ddr-bw\n[    1.630208] register_client_adhoc:find path.src 1 dest 627\n[    1.630410] register_client_adhoc:Client handle 49 soc:qcom,snoc_cnoc_keepalive\n[    1.630702] register_client_adhoc:find path.src 26 dest 512\n[    1.630820] register_client_adhoc:Client handle 51 soc:qcom,gpubw\n[    1.637413] usbcore: registered new interface driver snd-usb-audio\n[    1.637581] iommu: Adding device soc:usb_audio_qmi_dev to group 31\n[    1.644357] apr_probe: Unable to create ipc log context\n[    1.646112] tas2562 1-004c: Driver ID: 2.1.0\n[    1.646117] tas2562 1-004c: tas2562_i2c_probe enter\n[    1.646127] tas2562 1-004c: Failed to allocate register p_tas2562->regmap: efb7ec00\n[    1.646129] tas2562 1-004c: Before tas2562_parse_dt\n[    1.646132] tas2562 1-004c: ti,channels=1\n[    1.646135] tas2562 1-004c: ti,left-channel=0x4c\n[    1.646141] tas2562 1-004c: ti,reset-gpio=51\n[    1.646145] tas2562 1-004c: ti,irq-gpio=33\n[    1.700021] tas2562 1-004c: reset gpio up !!\n[    1.700024] tas2562 1-004c: Before SW reset\n[    1.700028] tas2562 1-004c: tas2562_change_book_page,  L=176\n[    1.700115] i2c_geni 890000.i2c: i2c error :-107\n[    1.730097] i2c_geni 890000.i2c: i2c error :-107\n[    1.760112] i2c_geni 890000.i2c: i2c error :-107\n[    1.790021] tas2562 1-004c: tas2562_change_book_page,  L=180\n[    1.790025] tas2562 1-004c: tas2562_change_book_page, ERROR, L=183, E=-2\n[    1.790028] tas2562 1-004c: I2c fail, -2\n[    1.790045] tas2562: probe of 1-004c failed with error -2\n[    1.790227] tas2562 2-004c: Driver ID: 2.1.0\n[    1.790230] tas2562 2-004c: tas2562_i2c_probe enter\n[    1.790236] tas2562 2-004c: Failed to allocate register p_tas2562->regmap: efb7ec00\n[    1.790238] tas2562 2-004c: Before tas2562_parse_dt\n[    1.790240] tas2562 2-004c: ti,channels=1\n[    1.790243] tas2562 2-004c: ti,left-channel=0x4c\n[    1.790248] tas2562 2-004c: ti,reset-gpio=51\n[    1.790251] tas2562 2-004c: ti,irq-gpio=33\n[    1.824381] mmc0: new ultra high speed SDR104 SDHC card at address 0007\n[    1.824618] mmcblk0: mmc0:0007 SD16G 14.4 GiB \n[    1.825604]  mmcblk0: p1\n[    1.850021] tas2562 2-004c: reset gpio up !!\n[    1.850024] tas2562 2-004c: Before SW reset\n[    1.850028] tas2562 2-004c: tas2562_change_book_page,  L=176\n[    1.850379] tas2562 2-004c: tas2562_change_book_page,  L=180\n[    1.851066] tas2562 2-004c: After SW reset\n[    1.851419] tas2562 2-004c: irq = 261\n[    1.851615] tas2562 2-004c: tas2562_register_codec, enter\n[    1.851624] [TI-SmartPA:register_tas2562_reset_func] \n[    1.855208] msm-dai-q6-hdmi soc:qcom,msm-dai-q6-hdmi_ms: invalid device ID 24578\n[    1.876153] rmnet_perf_init(): initializing rmnet_perf\n[    1.876159] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = lo\n[    1.876161] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = dummy0\n[    1.876165] rmnet_shs_module_init(): Starting rmnet SHS module\n[    1.876275] GACT probability NOT on\n[    1.876282] Mirror/redirect action on\n[    1.876288] u32 classifier\n[    1.876289]     Actions configured\n[    1.876297] Netfilter messages via NETLINK v0.30.\n[    1.876387] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)\n[    1.876447] ctnetlink v0.93: registering with nfnetlink.\n[    1.876601] xt_time: kernel timezone is -0000\n[    1.876626] wireguard: WireGuard 1.0.20201112 loaded. See www.wireguard.com for information.\n[    1.876628] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    1.876710] gre: GRE over IPv4 demultiplexor driver\n[    1.876712] IPv4 over IPsec tunneling driver\n[    1.876851] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip_vti0\n[    1.876978] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    1.877279] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    1.877376] Initializing XFRM netlink socket\n[    1.877384] IPsec XFRM device driver\n[    1.877559] NET: Registered protocol family 10\n[    1.878208] Segment Routing with IPv6\n[    1.878250] mip6: Mobile IPv6\n[    1.878259] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    1.878563] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6_vti0\n[    1.878668] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    1.878771] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = sit0\n[    1.878961] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6tnl0\n[    1.879047] NET: Registered protocol family 17\n[    1.879057] NET: Registered protocol family 15\n[    1.879071] Ebtables v2.0 registered\n[    1.879147] l2tp_core: L2TP core driver, V2.0\n[    1.879152] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    1.879154] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    1.879163] l2tp_netlink: L2TP netlink interface\n[    1.879180] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    1.879181] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    1.879243] sctp: Hash tables configured (bind 256/256)\n[    1.879710] wide_ldo_avdd1_regulator: supplied by pm6150l_bob\n[    1.879899] wide_ldo_avdd2_regulator: supplied by pm6150l_bob\n[    1.880117] ultra_ldo_avdd_regulator: supplied by pm6150l_bob\n[    1.880300] wide_ldo_afvdd_regulator: supplied by pm6150l_bob\n[    1.880668] NPU_WARN: npu_bridge_mbox_work: 1165 NPU fw is not loaded\n[    1.880923] subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    1.882283] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.882482] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.882485] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.883058] register_client_adhoc:find path.src 61 dest 512\n[    1.883384] register_client_adhoc:find path.src 61 dest 676\n[    1.883554] register_client_adhoc:find path.src 1 dest 583\n[    1.883747] register_client_adhoc:Client handle 50 usb0\n[    1.886002] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    1.886010] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    1.886013] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    1.886015] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    1.886018] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    1.886020] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    1.886022] sps:BAM 0x000000000a704000 is registered.\n[    1.886053] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.886057] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    1.886060] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.886062] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    1.887211] qpnp-pdphy c440000.qcom,spmi:qcom,pm6150@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.887506] i2c_pmic 2-0009: could not find pctldev for node /soc/i2c@a8c000/qcom,pm8008@8/pinctrl@c000/gpio1_active/pm8008_gpio1_active, deferring probe\n[    1.887635] QG-K: qg_parse_dt: PMIC subtype 40 Digital major 2\n[    1.887669] QG-K: qg_parse_dt: DT: S2 FIFO length=5 low_vbat_length=2 acc_length=128 acc_interval=100\n[    1.887674] QG-K: qg_parse_dt: DT: OCV timer_expiry =-22min ocv_tol_threshold=-22uV\n[    1.887719] QG-K: qg_parse_dt: DT: cl_min_start_soc=10 cl_max_start_soc=15 cl_min_temp=150 cl_max_temp=500\n[    1.887724] QG-K: qg_parse_dt: DT: vbatt_empty_mv=3100mV vbatt_low_mv=3500mV delta_soc=1 ext-sns=1\n[    1.887737] QG-K: qg_set_wa_flags: wa_flags = 6\n[    1.902282] QG-K: get_batt_id_ohm: batt_id_mv=760, batt_id_ohm=68166\n[    1.903077] of_batterydata_get_best_profile: 4374729_NVT_BKn10_5020mAH_PM6250_averaged_MasterSlave_Dec27th2019 found\n[    1.903377] QG-K: qg_batterydata_init: QG Battery-profile loaded\n[    1.903382] QG-K: qg_load_battery_profile: battery nominal capacity unavailable, rc:-22\n[    1.903386] QG-K: qg_load_battery_profile: Read mi,ffc-chg-term-current = -541\n[    1.903393] QG-K: qg_load_battery_profile: profile=4374729_NVT_BKn10_5020mAH_PM6250_averaged_MasterSlave_Dec27th2019 FV=4450000uV FCC=3600ma\n[    1.903397] QG-K: qg_setup_battery: battery_missing=0 batt_id_ohm=68166 Ohm profile_loaded=1 profile=4374729_NVT_BKn10_5020mAH_PM6250_averaged_MasterSlave_Dec27th2019\n[    1.903462] QG-K: qg_sanitize_sdam: SDAM valid\n[    1.903579] QG-K: qg_determine_pon_soc: S7_PON_OCV OCV=3836100\n[    1.903591] QG-K: qg_determine_pon_soc: S3_GOOD_OCV OCV=3847194\n[    1.903603] QG-K: qg_determine_pon_soc: S3_LAST_OCV OCV=3847584\n[    1.903615] QG-K: qg_determine_pon_soc: SDAM_PON_OCV OCV=0\n[    1.905683] QG-K: qg_determine_pon_soc: Shutdown: Valid=1 SOC=45 OCV=3846800uV time=10763574secs temp=218, time_now=10763659secs temp_now=228 S7_soc=44\n[    1.905685] QG-K: qg_determine_pon_soc: Using SHUTDOWN_SOC @ PON\n[    1.905689] QG-K: qg_determine_pon_soc: Using SHUTDOWN_SOC @ PON\n[    1.905694] QG-K: qg_determine_pon_soc: v_float=4450000 v_cutoff=3400000 FULL_SOC=99 CUTOFF_SOC=2 calcualte_soc=44 pon_soc=44 shutdown[SDAM_SOC]=45 final soc = 44 ibat = 0\n[    1.907686] QG-K: qg_determine_pon_soc: using SHUTDOWN_SOC @ PON ocv_uv=3846800uV soc=44\n[    1.907877] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    1.908105] QG-K: qg_request_interrupt: IRQ qg-vbat-low registered wakeable=1\n[    1.908242] QG-K: qg_request_interrupt: IRQ qg-vbat-empty registered wakeable=1\n[    1.908513] QG-K: qg_request_interrupt: IRQ qg-fifo-done registered wakeable=1\n[    1.908651] QG-K: qg_request_interrupt: IRQ qg-good-ocv registered wakeable=1\n[    1.908728] QG-K: qpnp_qg_probe: QG initialized! battery_profile=4374729_NVT_BKn10_5020mAH_PM6250_averaged_MasterSlave_Dec27th2019 SOC=44 QG_subtype=4\n[    1.908937] ==test qcom,fcc-max-ua:3600000\n[    1.908971] smb en qc3 with cp:1\n[    1.909082] PL_DISABLE: CHG_STATE_VOTER,0 voting on of val=1\n[    1.909085] PL_DISABLE: current vote is now 1 voted by CHG_STATE_VOTER,0, previous voted 0\n[    1.909090] PL_DISABLE: PARALLEL_PSY_VOTER,2 voting on of val=1\n[    1.909095] PL_DISABLE: PL_INDIRECT_VOTER,3 voting on of val=1\n[    1.909135] PL_DISABLE: PL_DELAY_VOTER,4 voting on of val=1\n[    1.909477] pm6150_charger: smblib_set_charge_param: usb otg current limit = 1000000 (0x01)\n[    1.909480] USB_ICL: DEFAULT_VOTER,0 voting off of val=0\n[    1.909483] USB_ICL: current vote is now -22 voted by (null),-22, previous voted -22\n[    1.909485] DC_SUSPEND: DEFAULT_VOTER,0 voting off of val=0\n[    1.909487] DC_SUSPEND: current vote is now 0 voted by DEFAULT_VOTER,0, previous voted 0\n[    1.909500] FCC: HW_LIMIT_VOTER,0 voting on of val=3600000\n[    1.909502] FCC: current vote is now 3600000 voted by HW_LIMIT_VOTER,0, previous voted -22\n[    1.909505] FV: HW_LIMIT_VOTER,0 voting on of val=4480000\n[    1.909507] FV: current vote is now 4480000 voted by HW_LIMIT_VOTER,0, previous voted -22\n[    1.909510] FV: BATT_PROFILE_VOTER,1 voting on of val=4480000\n[    1.909513] FCC: J6A_GLOBAL_FCC_VOTER,2 voting on of val=3000000\n[    1.909515] FCC: current vote is now 3000000 voted by J6A_GLOBAL_FCC_VOTER,2, previous voted 3600000\n[    1.909517] FV: NON_FFC_VFLOAT_VOTER,2 voting on of val=4450000\n[    1.909519] FV: current vote is now 4450000 voted by NON_FFC_VFLOAT_VOTER,2, previous voted 4480000\n[    1.909530] pm6150_charger: smblib_set_charge_param: DC input current limit = 100000 (0x02)\n[    1.909623] CHG_DISABLE: DEFAULT_VOTER,0 voting off of val=0\n[    1.909625] CHG_DISABLE: current vote is now 0 voted by DEFAULT_VOTER,0, previous voted 0\n[    1.910564] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    1.910595] enter sysfs create file thermal\n[    1.910716] QG-K: qg_get_prop_soc_decimal: debug soc_dec=0 dec_rate=28 last_val=0 last_soc_dec=0 last_hal_soc=0\n[    1.910720] QG-K: qg_get_prop_soc_decimal: debug val=50 soc_dec=0 sys_soc=4500 dec_rate=28 soc=44 hal_soc=44 last_val=50 last_soc_dec=0 last_hal_soc=44\n[    1.912648] of_batterydata_get_best_profile: 4374729_NVT_BKn10_5020mAH_PM6250_averaged_MasterSlave_Dec27th2019 found\n[    1.914189] QG-K: qg_get_ffc_iterm_for_chg: Set ffc_chg_iterm = -541\n[    1.914190] QG-K: qg_get_ffc_iterm_for_chg: Set ffc_chg_iterm = -541\n[    1.914274] FCC: BATT_PROFILE_VOTER,1 voting on of val=3600000\n[    1.914403] PL_DISABLE: ICL_CHANGE_VOTER,5 voting on of val=1\n[    1.914419] pm6150_charger: smblib_set_icl_current: set icl current = 2147483647\n[    1.914463] USB_ICL_IRQ_DISABLE: USB_SUSPEND_VOTER,0 voting off of val=0\n[    1.914465] USB_ICL_IRQ_DISABLE: current vote is now 0 voted by USB_SUSPEND_VOTER,0, previous voted 0\n[    1.914477] pm6150_charger: smblib_run_aicl: re-running AICL\n[    1.914499] PL_DISABLE: ICL_CHANGE_VOTER,5 voting off of val=0\n[    1.914513] FCC_MAIN: MAIN_FCC_VOTER,0 voting on of val=3000000\n[    1.914515] FCC_MAIN: current vote is now 3000000 voted by MAIN_FCC_VOTER,0, previous voted -22\n[    1.914529] pm6150_charger: smblib_set_charge_param: fast charge current = 3000000 (0x3c)\n[    1.914542] pm6150_charger: smblib_set_charge_param: float voltage = 4450000 (0x55)\n[    1.914575] pm6150_charger: smblib_set_charge_param: float voltage = 4450000 (0x55)\n[    1.914622] PL_ENABLE_INDIRECT: USBIN_I_VOTER,0 voting off of val=0\n[    1.914624] PL_ENABLE_INDIRECT: current vote is now 0 voted by USBIN_I_VOTER,0, previous voted 0\n[    1.914639] pm6150_charger: smblib_set_charge_param: float voltage = 4450000 (0x55)\n[    1.914654] QCOM-STEPCHG: handle_jeita: handle_jeita enter\n[    1.980039] tas2562 tas2562: irq_work_routine\n[    1.980044] tas2562 tas2562: irq_work_routine, device not powered\n[    2.060035] [PMIC_DEBUG][usb_plugin_irq_handler]: pd_hard_reset=0\n[    2.060059] pm6150_charger: smblib_set_charge_param: switching frequency = 1050 (0x08)\n[    2.060087] AWAKE: CHG_AWAKE_VOTER,0 voting off of val=0\n[    2.060089] AWAKE: current vote is now 0 voted by CHG_AWAKE_VOTER,0, previous voted 0\n[    2.060104] pm6150_charger: smblib_update_usb_type: APSD=UNKNOWN PD=0 QC3P5=0\n[    2.060107] TEMP_CHANGE_IRQ_DISABLE: DEFAULT_VOTER,0 voting on of val=1\n[    2.060109] TEMP_CHANGE_IRQ_DISABLE: current vote is now 1 voted by DEFAULT_VOTER,0, previous voted 0\n[    2.060113] pm6150_charger: smblib_usb_plugin_locked: IRQ: usbin-plugin detached\n[    2.060127] USB_ICL: SW_ICL_MAX_VOTER,6 voting on of val=100000\n[    2.060129] USB_ICL: current vote is now 100000 voted by SW_ICL_MAX_VOTER,6, previous voted -22\n[    2.060131] PL_DISABLE: ICL_CHANGE_VOTER,5 voting on of val=1\n[    2.060144] pm6150_charger: smblib_set_icl_current: set icl current = 100000\n[    2.060251] pm6150_charger: smblib_run_aicl: re-running AICL\n[    2.060271] PL_DISABLE: ICL_CHANGE_VOTER,5 voting off of val=0\n[    2.060325] pm6150_charger: typec_state_change_irq_handler: IRQ: cc-state-change; Type-C NONE detected\n[    2.060338] pm6150_charger: usb_source_change_irq_handler: APSD_STATUS = 0x00\n[    2.060352] pm6150_charger: usb_source_change_irq_handler: APSD_STATUS = 0x00\n[    2.060389] pm6150_charger: batt_temp_changed_irq_handler: IRQ: determine-initial-status\n[    2.060391] pm6150_charger: wdog_bark_irq_handler: IRQ: determine-initial-status\n[    2.060412] AWAKE: LPD_VOTER,1 voting on of val=1\n[    2.060414] AWAKE: current vote is now 1 voted by LPD_VOTER,1, previous voted 0\n[    2.062416] QCOM-STEPCHG: handle_jeita: handle_jeita enter\n[    2.067194] USB_LIMITED_IRQ_DISABLE: CHARGER_TYPE_VOTER,0 voting on of val=1\n[    2.067197] USB_LIMITED_IRQ_DISABLE: current vote is now 1 voted by CHARGER_TYPE_VOTER,0, previous voted 0\n[    2.067201] USB_HDC_IRQ_DISABLE: CHARGER_TYPE_VOTER,0 voting on of val=1\n[    2.067203] USB_HDC_IRQ_DISABLE: current vote is now 1 voted by CHARGER_TYPE_VOTER,0, previous voted 0\n[    2.067206] PL_DISABLE: ICL_CHANGE_VOTER,5 voting on of val=1\n[    2.067220] pm6150_charger: smblib_set_icl_current: set icl current = 100000\n[    2.067304] pm6150_charger: smblib_run_aicl: re-running AICL\n[    2.067325] PL_DISABLE: ICL_CHANGE_VOTER,5 voting off of val=0\n[    2.067331] pm6150_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 1!\n[    2.067334] pm6150_charger: smblib_set_prop_typec_power_role: power role already in 1, ignore!\n[    2.067388] SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    2.067391] QPNP SMB5 probed successfully\n[    2.082592] pm6150_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:228, thermal_levels:10chg->system_temp_level:0, charger_type:0\n[    2.082598] smblib_set_prop_system_temp_level val=0, chg->system_temp_level=0, LctThermal=0, lct_backlight_off= 0, IsInCall=0 \n                \n[    2.082800] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.083010] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    2.083013] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    2.083540] register_client_adhoc:find path.src 61 dest 512\n[    2.083866] register_client_adhoc:find path.src 61 dest 676\n[    2.084033] register_client_adhoc:find path.src 1 dest 583\n[    2.084214] register_client_adhoc:Client handle 50 usb0\n[    2.085640] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    2.085653] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    2.085656] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    2.085658] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    2.085661] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    2.085663] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    2.085665] sps:BAM 0x000000000a704000 is registered.\n[    2.086618] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    2.086622] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    2.086626] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    2.086627] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    2.088212] i2c_geni a8c000.i2c: i2c error :-107\n[    2.088394] i2c_geni a8c000.i2c: i2c error :-107\n[    2.088574] i2c_geni a8c000.i2c: i2c error :-107\n[    2.088754] i2c_geni a8c000.i2c: i2c error :-107\n[    2.088933] i2c_geni a8c000.i2c: i2c error :-107\n[    2.089113] i2c_geni a8c000.i2c: i2c error :-107\n[    2.089292] i2c_geni a8c000.i2c: i2c error :-107\n[    2.089471] i2c_geni a8c000.i2c: i2c error :-107\n[    2.089651] i2c_geni a8c000.i2c: i2c error :-107\n[    2.089831] i2c_geni a8c000.i2c: i2c error :-107\n[    2.089870] i2c_pmic 2-0009: could not find pctldev for node /soc/i2c@a8c000/qcom,pm8008@8/pinctrl@c000/gpio1_active/pm8008_gpio1_active, deferring probe\n[    2.091377] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.091574] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    2.091577] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    2.092067] register_client_adhoc:find path.src 61 dest 512\n[    2.092390] register_client_adhoc:find path.src 61 dest 676\n[    2.092556] register_client_adhoc:find path.src 1 dest 583\n[    2.092738] register_client_adhoc:Client handle 50 usb0\n[    2.093106] i2c_pmic 2-0009: could not find pctldev for node /soc/i2c@a8c000/qcom,pm8008@8/pinctrl@c000/gpio1_active/pm8008_gpio1_active, deferring probe\n[    2.094019] registered taskstats version 1\n[    2.094021] Loading compiled-in X.509 certificates\n[    2.095132] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    2.095140] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    2.095143] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    2.095145] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    2.095148] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    2.095150] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    2.095152] sps:BAM 0x000000000a704000 is registered.\n[    2.095457] Key type ._fscrypt registered\n[    2.095459] Key type .fscrypt registered\n[    2.095461] Key type fscrypt-provisioning registered\n[    2.095970] pm6150_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:228, thermal_levels:10chg->system_temp_level:0, charger_type:0\n[    2.095973] smblib_set_prop_system_temp_level val=0, chg->system_temp_level=0, LctThermal=0, lct_backlight_off= 0, IsInCall=0 \n                \n[    2.096473] QCOM-STEPCHG: handle_jeita: handle_jeita enter\n[    2.097009] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode\n[    2.097868] Error: swapper/0: fastrpc_device_init: failed to create debugfs root dir\n[    2.098387] ADSPRPC: Secure VMID = 22\n[    2.098389] ADSPRPC: Secure VMID = 37\n[    2.098736] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 32\n[    2.099022] msm-dwc3 a600000.ssusb: DWC3 in low power mode\n[    2.099484] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 33\n[    2.099916] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 34\n[    2.100558] QCOM-STEPCHG: handle_jeita: handle_jeita enter\n[    2.100925] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 35\n[    2.101566] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 36\n[    2.101935] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 37\n[    2.102338] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7 to group 38\n[    2.102813] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8 to group 39\n[    2.103218] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 40\n[    2.104562] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 41\n[    2.104977] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 42\n[    2.105607] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 43\n[    2.107799] i2c_pmic 2-0009: could not find pctldev for node /soc/i2c@a8c000/qcom,pm8008@8/pinctrl@c000/gpio1_active/pm8008_gpio1_active, deferring probe\n[    2.108375] ngd_msm_ctrl 62ec0000.slim: error creating ipc_logging context\n[    2.108379] ngd_msm_ctrl 62ec0000.slim: error creating ipc_error_logging context\n[    2.108581] iommu: Adding device 62ec0000.slim:qcom,iommu_slim_ctrl_cb to group 44\n[    2.108823] i2c_pmic 2-0009: could not find pctldev for node /soc/i2c@a8c000/qcom,pm8008@8/pinctrl@c000/gpio1_active/pm8008_gpio1_active, deferring probe\n[    2.111773] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    2.111855] i2c_pmic 2-0009: could not find pctldev for node /soc/i2c@a8c000/qcom,pm8008@8/pinctrl@c000/gpio1_active/pm8008_gpio1_active, deferring probe\n[    2.112568] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm6150@0:qcom,pm6150_rtc: setting system clock to 1970-05-05 13:54:20 UTC (10763660)\n[    2.112654] i2c_pmic 2-0009: could not find pctldev for node /soc/i2c@a8c000/qcom,pm8008@8/pinctrl@c000/gpio1_active/pm8008_gpio1_active, deferring probe\n[    2.114108] CAM_ERR: CAM-CCI: cam_cci_assign_fops: 499 Invalid dev node:00000000f0fd7e53 offset: 0\n[    2.114504] lpm_levels: Cluster (L3) stats not registered\n[    2.114507] lpm_levels: register_cluster_lpm_stats()\n[    2.114508] lpm_levels: register_cluster_lpm_stats()\n[    2.116065] i2c_pmic 2-0009: could not find pctldev for node /soc/i2c@a8c000/qcom,pm8008@8/pinctrl@c000/gpio1_active/pm8008_gpio1_active, deferring probe\n[    2.118619] rmnet_ipa3 started initialization\n[    2.119186] RNDIS_IPA module is loaded.\n[    2.119794] i2c_pmic 2-0009: could not find pctldev for node /soc/i2c@a8c000/qcom,pm8008@8/pinctrl@c000/gpio1_active/pm8008_gpio1_active, deferring probe\n[    2.120524] msm_bus_late_init: Remove handoff bw requests\n[    2.121373] wide_ldo_dvdd_regulator: disabling\n[    2.121376] wide_ldo_dvdd2_regulator: disabling\n[    2.121379] depth_ldo_avdd_regulator: disabling\n[    2.121381] ultra_ldo_dvdd_regulator: disabling\n[    2.121383] front_ldo_dvdd_regulator: disabling\n[    2.121584] i2c_geni a8c000.i2c: i2c error :-107\n[    2.121588] PM8008: pm8008_read: failed to read 0x0950\n[    2.121591] PM8008: pm8008_enable_regulator_is_enabled: qcom,pm8008-chip-en: failed to get chip state rc=-107\n[    2.121592] pm8008-chip-en: disabling\n[    2.121774] i2c_geni a8c000.i2c: i2c error :-107\n[    2.121778] PM8008: pm8008_masked_write: failed to write 0x00 to 0x0950 with mask 0x01\n[    2.121780] PM8008: pm8008_enable_regulator_disable: qcom,pm8008-chip-en: failed to disable chip rc=-107\n[    2.121782] pm8008-chip-en: couldn't disable: -107\n[    2.121784] wide_ldo_avdd1_regulator: disabling\n[    2.121787] wide_ldo_avdd2_regulator: disabling\n[    2.121789] ultra_ldo_avdd_regulator: disabling\n[    2.121792] wide_ldo_afvdd_regulator: disabling\n[    2.121822] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    2.121843] ALSA device list:\n[    2.121845]   No soundcards found.\n[    2.121887] Warning: unable to open an initial console.\n[    2.122410] Freeing unused kernel memory: 2048K\n[    2.287018] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    2.287176] cpu1 \n[    2.287232] cpu6 \n[    2.287276] \n               Offline CPUs: \n[    2.288307] cpu1 \n[    2.289423] CPU1: shutdown\n[    2.290501] cpu2 \n[    2.292529] CPU2: shutdown\n[    2.294152] cpu3 \n[    2.295752] CPU3: shutdown\n[    2.297328] cpu4 \n[    2.298704] CPU4: shutdown\n[    2.300319] cpu5 \n[    2.301566] IRQ 6: no longer affine to CPU5\n[    2.301725] CPU5: shutdown\n[    2.302228] cpu6 \n[    2.303403] CPU6: shutdown\n[    2.303898] cpu7 \n[    2.306384] IRQ 6: no longer affine to CPU7\n[    2.306447] CPU7: shutdown\n[    2.307312] \n               Sampling power every 250 ms\n               Baseline power usage: \n[    2.360102] AWAKE: LPD_VOTER,1 voting off of val=0\n[    2.360117] AWAKE: current vote is now 0 voted by LPD_VOTER,1, previous voted 1\n[    2.962177] QG-K: qg_battery_soc_smooth_tracking: soc:-22, last_soc:-22, raw_soc:44, soc_changed:0, update_now:0, charge_status:2, batt_ma:259\n[    2.964147] QCOM-STEPCHG: handle_jeita: handle_jeita enter\n[    2.976362] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:259, s:2\n[    3.120126] pm6150_charger: smblib_icl_change_work: icl_settled=0\n[    3.920741] of_batterydata_get_best_profile: 4374729_NVT_BKn10_5020mAH_PM6250_averaged_MasterSlave_Dec27th2019 found\n[    3.920810] QCOM-STEPCHG: get_config_work: step-chg-cfg: 3001000uV(SoC) ~ 4250000uV(SoC), 3600000uA\n[    3.920822] QCOM-STEPCHG: get_config_work: step-chg-cfg: 4250001uV(SoC) ~ 4430000uV(SoC), 3300000uA\n[    3.920834] QCOM-STEPCHG: get_config_work: step-chg-cfg: 4430001uV(SoC) ~ 4450000uV(SoC), 3000000uA\n[    3.920844] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.920854] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.920865] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 0decidegree ~ 50decidegre, 984000uA\n[    3.920876] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 51decidegree ~ 100decidegre, 2460000uA\n[    3.920887] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 101decidegree ~ 150decidegre, 3444000uA\n[    3.920897] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 151decidegree ~ 450decidegre, 3600000uA\n[    3.920908] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 451decidegree ~ 600decidegre, 2460000uA\n[    3.920919] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 0decidegree ~ 50decidegre, 4450000uV\n[    3.920930] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 51decidegree ~ 100decidegre, 4450000uV\n[    3.920940] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 101decidegree ~ 150decidegre, 4450000uV\n[    3.920950] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 151decidegree ~ 450decidegre, 4480000uV\n[    3.920961] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 451decidegree ~ 600decidegre, 4100000uV\n[    4.960212] pm6150_charger: smblib_set_charge_param: float voltage = 4450000 (0x55)\n[    6.240086] [NVT-ts] update_firmware_request 316: filename is novatek_ts_tianma_fw.bin\n[    6.560073] aw8624_ram_work_routine enter\n[   13.282155] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:0, update_now:0, charge_status:2, batt_ma:256\n[   13.284180] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:256, s:2\n[   23.522167] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:0, update_now:0, charge_status:2, batt_ma:260\n[   23.524190] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:260, s:2\n[   32.480732] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[   32.481340] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[   32.482159] smb:01:1500 00 00 00 04 c6 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[   32.482185] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[   33.762151] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:0, update_now:0, charge_status:2, batt_ma:260\n[   33.764173] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:260, s:2\n[   44.002179] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:0, update_now:0, charge_status:2, batt_ma:263\n[   44.004202] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:263, s:2\n[   54.242154] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:0, update_now:0, charge_status:2, batt_ma:258\n[   54.244176] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:258, s:2\n[   62.560807] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[   62.561468] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[   62.562289] smb:01:1500 00 00 00 04 c5 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[   62.562312] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[   64.408389] QG_WS: FIFO_DONE_VOTER,0 voting on of val=1\n[   64.482170] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:256\n[   64.484190] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:256, s:2\n[   69.600134] firmware aw8624_haptic.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   69.600316] aw8624_ram_loaded enter\n[   69.600325] aw8624_ram_loaded: failed to read aw8624_haptic.bin\n[   69.600401] firmware novatek_ts_tianma_fw.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   69.600551] [NVT-ts] update_firmware_request 320: firmware load failed, ret=-11\n[   69.600563] [NVT-ts] update_firmware_request 316: filename is novatek_ts_tianma_fw.bin\n[   74.722150] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:258\n[   74.724195] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:258, s:2\n[   77.588627] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000\n[   77.588745] CPU1: Booted secondary processor [51df805e]\n[   77.595153] 970 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 576 768 1017 1248 1324 1516 1612 1708 1804\n               \n                300: \n[   84.962160] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:255\n[   84.964185] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:255, s:2\n[   92.640748] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[   92.641360] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[   92.642181] smb:01:1500 00 00 00 04 c5 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[   92.642206] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[   95.202188] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:263\n[   95.204213] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:263, s:2\n[  105.442235] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:263\n[  105.444260] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:263, s:2\n[  115.682219] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:260\n[  115.684243] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:260, s:2\n[  122.720691] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  122.721297] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  122.722117] smb:01:1500 00 00 00 04 c6 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  122.722141] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  125.922235] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:261\n[  125.936103] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:261, s:2\n[  131.040103] firmware novatek_ts_tianma_fw.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  131.040303] [NVT-ts] update_firmware_request 320: firmware load failed, ret=-11\n[  131.040315] [NVT-ts] update_firmware_request 316: filename is novatek_ts_tianma_fw.bin\n[  136.162189] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:264\n[  136.164213] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:264, s:2\n[  146.402184] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:265\n[  146.404215] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:265, s:2\n[  152.800768] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  152.801375] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  152.802196] smb:01:1500 00 00 00 01 c2 00 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  152.802220] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  156.651438] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:263\n[  156.653459] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:263, s:2\n[  166.882154] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:262\n[  166.884176] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:262, s:2\n[  177.122156] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:266\n[  177.124180] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:266, s:2\n[  182.880748] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  182.881356] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  182.882177] smb:01:1500 00 00 00 01 c2 00 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  182.882199] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  187.367608] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:263\n[  187.369944] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:263, s:2\n[  192.480155] firmware novatek_ts_tianma_fw.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  192.480315] [NVT-ts] update_firmware_request 320: firmware load failed, ret=-11\n[  192.480326] [NVT-ts] update_firmware_request 358: error, retry=3\n[  192.480338] [NVT-ts] nvt_update_firmware 889: update_firmware_request failed. (-11)\n[  197.602181] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:263\n[  197.604205] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:263, s:2\n[  207.842154] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:265\n[  207.844177] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:265, s:2\n[  212.960749] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  212.961355] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  212.962175] smb:01:1500 00 00 00 01 c3 00 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  212.962197] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  218.082152] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:260\n[  218.084174] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:260, s:2\n[  228.322170] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:264\n[  228.324193] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:264, s:2\n[  238.562158] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:265\n[  238.564181] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:265, s:2\n[  243.040687] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  243.041293] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  243.042113] smb:01:1500 00 00 00 04 c6 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  243.042136] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  248.802263] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:268\n[  248.804289] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:268, s:2\n[  259.042152] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:264\n[  259.044176] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:264, s:2\n[  269.282211] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:262\n[  269.284233] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:262, s:2\n[  273.120735] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  273.121344] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  273.122164] smb:01:1500 00 00 00 04 c6 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  273.122186] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  279.522151] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:264\n[  279.524173] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:264, s:2\n[  289.762151] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:261\n[  289.764173] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:261, s:2\n[  300.002182] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:267\n[  300.004204] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:267, s:2\n[  303.200715] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  303.201320] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  303.202140] smb:01:1500 00 00 00 04 c6 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  303.202163] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  305.120165] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120193] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120807] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120826] audio_notifer_reg_service: service SSR_ADSP is in use\n[  305.120870] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120878] ADSPRPC: Audio PD restart notifier locator down\n[  305.120904] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120911] ADSPRPC: Audio PD restart notifier locator down\n[  310.242179] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:263\n[  310.244203] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:263, s:2\n[  310.348949]  1114     3.7 C/MHz     34 mW    7.5 J   33.2 I/mJ   224.5 s\n                576: \n[  320.482062] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:265\n[  320.484027] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:265, s:2\n[  330.722055] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:267\n[  330.724014] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:267, s:2\n[  333.280678] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  333.281275] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  333.282052] smb:01:1500 00 00 00 04 c6 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  333.282070] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  340.962050] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:270\n[  340.964010] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:270, s:2\n[  351.213903] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:265\n[  351.215856] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:265, s:2\n[  361.442067] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:267\n[  361.444026] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:267, s:2\n[  363.360621] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  363.361162] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  363.361949] smb:01:1500 00 00 00 04 c5 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  363.361967] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  371.682124] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:269\n[  371.684085] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:269, s:2\n[  381.930117] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:269\n[  381.932428] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:269, s:2\n[  392.162056] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:268\n[  392.164016] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:268, s:2\n[  393.440701] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  393.441252] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  393.442041] smb:01:1500 00 00 00 01 c1 00 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  393.442060] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  402.402074] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:269\n[  402.404031] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:269, s:2\n[  412.644406] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:270\n[  412.646369] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:270, s:2\n[  422.882080] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:267\n[  422.884039] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:267, s:2\n[  423.520646] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  423.521195] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  423.521945] smb:01:1500 00 00 00 01 c2 00 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  423.521963] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  433.122051] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:267\n[  433.124006] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:267, s:2\n[  435.562430]  2139     3.7 C/MHz     53 mW    6.1 J   40.7 I/mJ   116.9 s\n                768: \n[  443.362030] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:258\n[  443.363972] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:258, s:2\n[  453.600885] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  453.601500] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  453.602290] smb:01:1500 00 00 00 01 c3 00 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  453.602309] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  453.603318] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:273\n[  453.605261] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:273, s:2\n[  463.842024] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:271\n[  463.843968] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:271, s:2\n[  474.082027] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:271\n[  474.083966] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:271, s:2\n[  483.680621] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  483.681204] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  483.681990] smb:01:1500 00 00 00 01 c2 00 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  483.682007] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  484.322024] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:274\n[  484.323986] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:274, s:2\n[  494.562057] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:269\n[  494.563997] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:269, s:2\n[  504.802034] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:273\n[  504.803972] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:273, s:2\n[  513.760652] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  513.761232] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  513.762015] smb:01:1500 00 00 00 01 c2 00 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  513.762031] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  515.042025] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:272\n[  515.043967] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:272, s:2\n[  525.282029] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:272\n[  525.284359] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:272, s:2\n[  531.549034]  2852     3.7 C/MHz     64 mW    5.6 J   44.3 I/mJ    87.7 s\n               1017: \n[  535.522061] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:260\n[  535.524013] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:260, s:2\n[  543.840637] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  543.841223] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  543.842003] smb:01:1500 00 00 00 01 c3 00 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  543.842021] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  545.762067] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:273\n[  545.775455] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:273, s:2\n[  556.002093] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:272\n[  556.004044] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:272, s:2\n[  566.242027] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:272\n[  566.243977] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:272, s:2\n[  573.920673] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  573.921255] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  573.922047] smb:01:1500 00 00 00 04 c4 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  573.922062] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  576.491679] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:276\n[  576.493627] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:276, s:2\n[  586.722991] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:275\n[  586.724945] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:275, s:2\n[  596.962034] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:274\n[  596.963982] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:274, s:2\n[  604.000646] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  604.001231] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  604.002024] smb:01:1500 00 00 00 04 c6 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  604.002041] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  607.206926] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:272\n[  607.208871] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:272, s:2\n[  615.021657]  3320     3.3 C/MHz     73 mW    5.5 J   45.6 I/mJ    75.3 s\n               1248: \n[  617.442020] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:258\n[  617.443941] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:258, s:2\n[  627.682004] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:281\n[  627.683929] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:281, s:2\n[  634.080659] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  634.081213] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  634.081965] smb:01:1500 00 00 00 04 c5 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  634.081982] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  637.922158] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:279\n[  637.924079] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:279, s:2\n[  648.161990] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:281\n[  648.163912] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:281, s:2\n[  658.402000] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:279\n[  658.403923] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:279, s:2\n[  664.160595] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  664.161148] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  664.161901] smb:01:1500 00 00 00 04 c5 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  664.161915] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  668.641991] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:281\n[  668.643930] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:281, s:2\n[  677.314375]  4633     3.7 C/MHz     97 mW    5.2 J   47.9 I/mJ    54.0 s\n               1324: \n[  678.882002] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:260\n[  678.883920] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:260, s:2\n[  689.121999] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:283\n[  689.123920] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:283, s:2\n[  694.240628] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  694.241179] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  694.241924] smb:01:1500 00 00 00 04 c5 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  694.241940] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  699.361989] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:282\n[  699.363919] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:282, s:2\n[  709.601991] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:278\n[  709.603909] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:278, s:2\n[  719.842383] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:286\n[  719.845082] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:286, s:2\n[  724.320594] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  724.321144] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  724.321890] smb:01:1500 00 00 00 04 c6 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  724.321905] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  730.082023] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:283\n[  730.083940] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:283, s:2\n[  736.338739]  4919     3.7 C/MHz    101 mW    5.1 J   48.7 I/mJ    50.8 s\n               1516: \n[  740.322009] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:257\n[  740.323924] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:257, s:2\n[  750.561992] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:285\n[  750.563909] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:285, s:2\n[  754.400625] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  754.401169] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  754.401906] smb:01:1500 00 00 00 04 c6 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  754.401921] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  760.801994] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:281\n[  760.803911] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:281, s:2\n[  771.054180] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:282\n[  771.056093] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:282, s:2\n[  781.281980] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:286\n[  781.283894] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:286, s:2\n[  784.480580] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  784.481124] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  784.481863] smb:01:1500 00 00 00 04 c5 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  784.481878] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  789.082008]  5632     3.7 C/MHz    114 mW    5.1 J   49.3 I/mJ    44.4 s\n               1612: \n[  791.521996] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:263\n[  791.523914] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:263, s:2\n[  801.769435] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:286\n[  801.771353] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:286, s:2\n[  812.001997] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:286\n[  812.003911] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:286, s:2\n[  814.560617] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  814.561158] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  814.561892] smb:01:1500 00 00 00 04 c6 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  814.561908] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  822.241979] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:289\n[  822.243891] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:289, s:2\n[  832.484676] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:287\n[  832.486588] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:287, s:2\n[  839.068207]  5988     3.7 C/MHz    124 mW    5.2 J   48.2 I/mJ    41.8 s\n               1708: \n[  842.721987] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:260\n[  842.723900] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:260, s:2\n[  844.640577] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  844.641116] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  844.641848] smb:01:1500 00 00 00 04 c5 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  844.641863] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  852.961991] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:289\n[  852.963904] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:289, s:2\n[  863.202005] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:289\n[  863.203918] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:289, s:2\n[  873.441976] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:287\n[  873.443887] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:287, s:2\n[  874.720613] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  874.721152] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  874.721882] smb:01:1500 00 00 00 04 c5 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  874.721897] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  883.681994] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:290\n[  883.683905] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:290, s:2\n[  886.792105]  6344     3.7 C/MHz    133 mW    5.3 J   47.5 I/mJ    39.4 s\n               1804: \n[  893.921997] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:263\n[  893.923908] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:263, s:2\n[  904.161987] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:293\n[  904.163901] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:293, s:2\n[  904.800578] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  904.801115] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  904.801843] smb:01:1500 00 00 00 04 c6 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  904.801858] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  914.401943] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:292\n[  914.403855] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:292, s:2\n[  924.641989] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:297\n[  924.643900] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:297, s:2\n[  932.264789] CPU1: shutdown\n[  932.268135] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000\n[  932.268167] CPU6: Booted secondary processor [51ff804f]\n[  932.274135]  6701     3.7 C/MHz    153 mW    5.7 J   43.7 I/mJ    37.3 s\n               \n               \n               ===== CPU 6 =====\n               Frequencies: 652 825 979 1113 1267 1555 1708 1843 1900 1996 2112 2208 2323\n               \n                652: \n[  934.881010] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  934.881667] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  934.882486] smb:01:1500 00 00 00 04 c5 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  934.882511] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  934.883587] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:255\n[  934.885612] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:255, s:2\n[  945.122165] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:284\n[  945.124196] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:284, s:2\n[  955.362158] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:284\n[  955.364184] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:284, s:2\n[  964.960697] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  964.961304] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  964.962123] smb:01:1500 00 00 00 04 c6 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  964.962149] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  965.602180] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:283\n[  965.615791] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:283, s:2\n[  975.842158] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:285\n[  975.844182] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:285, s:2\n[  986.082236] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:285\n[  986.084261] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:285, s:2\n[  989.577757]  5093     7.8 C/MHz    110 mW    5.4 J   46.4 I/mJ    49.1 s\n                825: \n[  995.040743] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[  995.041352] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[  995.042175] smb:01:1500 00 00 00 04 c5 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  995.042199] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[  996.332072] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:257\n[  996.334098] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:257, s:2\n[ 1006.562189] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:289\n[ 1006.564219] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:289, s:2\n[ 1016.802186] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:289\n[ 1016.804214] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:289, s:2\n[ 1025.120700] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[ 1025.121306] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[ 1025.122126] smb:01:1500 00 00 00 04 c6 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 1025.122151] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[ 1027.047318] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:290\n[ 1027.049340] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:290, s:2\n[ 1036.797411]  6444     7.8 C/MHz    132 mW    5.1 J   48.7 I/mJ    38.8 s\n                979: \n[ 1037.282247] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:257\n[ 1037.284274] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:257, s:2\n[ 1047.522205] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:298\n[ 1047.524235] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:298, s:2\n[ 1055.200770] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[ 1055.201379] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[ 1055.202198] smb:01:1500 00 00 00 04 c5 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 1055.202223] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[ 1057.762564] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:297\n[ 1057.764941] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:297, s:2\n[ 1068.002191] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:295\n[ 1068.004216] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:295, s:2\n[ 1077.714242]  7644     7.8 C/MHz    161 mW    5.3 J   47.6 I/mJ    32.7 s\n               1113: \n[ 1078.242177] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:257\n[ 1078.244203] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:257, s:2\n[ 1085.280772] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[ 1085.281379] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[ 1085.282198] smb:01:1500 00 00 00 04 c6 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 1085.282223] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[ 1088.482186] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:306\n[ 1088.484215] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:306, s:2\n[ 1098.722192] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:301\n[ 1098.724218] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:301, s:2\n[ 1108.962262] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:302\n[ 1108.964287] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:302, s:2\n[ 1114.855788]  8644     7.8 C/MHz    185 mW    5.4 J   46.6 I/mJ    28.9 s\n               1267: \n[ 1115.360780] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[ 1115.361387] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[ 1115.362206] smb:01:1500 00 00 00 04 c6 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 1115.362231] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[ 1119.202193] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:256\n[ 1119.204220] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:256, s:2\n[ 1129.442162] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:310\n[ 1129.444206] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:310, s:2\n[ 1139.682160] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:313\n[ 1139.684184] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:313, s:2\n[ 1145.440725] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[ 1145.441332] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[ 1145.442151] smb:01:1500 00 00 00 04 c6 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 1145.442177] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[ 1148.466864]  9890     7.8 C/MHz    218 mW    5.5 J   45.4 I/mJ    25.3 s\n               1555: \n[ 1149.922176] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:257\n[ 1149.924201] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:257, s:2\n[ 1160.162207] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:333\n[ 1160.164237] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:333, s:2\n[ 1170.402195] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:329\n[ 1170.404220] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:329, s:2\n[ 1175.520771] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[ 1175.521378] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[ 1175.522197] smb:01:1500 00 00 00 04 c5 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 1175.522222] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[ 1177.287608] 12142     7.8 C/MHz    291 mW    6.0 J   41.7 I/mJ    20.6 s\n               1708: \n[ 1180.642208] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:256\n[ 1180.644269] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:256, s:2\n[ 1190.893596] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:344\n[ 1190.895627] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:344, s:2\n[ 1201.122163] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:349\n[ 1201.124188] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:349, s:2\n[ 1204.343599] 13335     7.8 C/MHz    340 mW    6.4 J   39.2 I/mJ    18.8 s\n               1843: \n[ 1205.600727] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[ 1205.601333] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[ 1205.602154] smb:01:1500 00 00 00 04 c4 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 1205.602179] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[ 1211.362166] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:256\n[ 1211.364193] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:256, s:2\n[ 1221.614779] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:358\n[ 1221.616810] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:358, s:2\n[ 1229.888686] 14391     7.8 C/MHz    385 mW    6.7 J   37.3 I/mJ    17.4 s\n               1900: \n[ 1231.843336] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:259\n[ 1231.845365] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:259, s:2\n[ 1235.680742] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[ 1235.681351] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[ 1235.682171] smb:01:1500 00 00 00 01 c2 00 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 1235.682196] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[ 1242.082186] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:359\n[ 1242.084219] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:359, s:2\n[ 1252.325449] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:363\n[ 1252.328138] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:363, s:2\n[ 1254.928673] 14835     7.8 C/MHz    401 mW    6.8 J   37.0 I/mJ    16.9 s\n               1996: \n[ 1262.562165] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:261\n[ 1262.564192] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:261, s:2\n[ 1265.760704] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[ 1265.761313] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[ 1265.762133] smb:01:1500 00 00 00 01 c2 00 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 1265.762158] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[ 1272.802190] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:371\n[ 1272.804225] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:371, s:2\n[ 1279.212682] 15592     7.8 C/MHz    447 mW    7.2 J   34.8 I/mJ    16.0 s\n               2112: \n[ 1283.042169] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:256\n[ 1283.044197] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:256, s:2\n[ 1293.282198] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:393\n[ 1293.284229] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:393, s:2\n[ 1295.840738] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[ 1295.841344] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[ 1295.842166] smb:01:1500 00 00 00 01 c2 00 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 1295.842191] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[ 1302.740427] 16488     7.8 C/MHz    520 mW    7.9 J   31.7 I/mJ    15.2 s\n               2208: \n[ 1303.522180] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:256\n[ 1303.524208] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:256, s:2\n[ 1313.762178] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:396\n[ 1313.764205] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:396, s:2\n[ 1324.002220] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:400\n[ 1324.004251] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:400, s:2\n[ 1325.512431] 17225     7.8 C/MHz    539 mW    7.8 J   31.9 I/mJ    14.5 s\n               2323: \n[ 1325.920703] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 3c 04 02 03 07 a0 fd 71 00 a3 02 0a 0a 00 00 55 \n[ 1325.921309] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a0 00 00 00 7f 00 00 00 00 00 00 1c 54 00 00 00 00 \n[ 1325.922129] smb:01:1500 00 00 00 04 c5 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 44 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 1325.922154] pm6150_charger: smblib_reg_work: Awake vote value is 0 voted by LPD_VOTER\n[ 1334.242187] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:410\n[ 1334.244217] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:410, s:2\n[ 1344.482230] QG-K: qg_battery_soc_smooth_tracking: soc:44, last_soc:44, raw_soc:44, soc_changed:1, update_now:0, charge_status:2, batt_ma:411\n[ 1344.484257] QG-K: soc_monitor_work: soc:44, raw_soc:44, c:411, s:2\n[ 1347.785122] CPU6: shutdown\n[ 1347.812505] 17984     7.7 C/MHz    591 mW    8.2 J   30.4 I/mJ    13.9 s\n               \n               \n               Benchmark finished!\n[ 1347.841753] \n               real\t22m25.706s\n               user\t18m4.170s\n               sys\t0m2.271s\n"
  },
  {
    "path": "results/sm7125/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  4:     250355   PDC-GIC  19 Level     arch_timer\n  6:          2   PDC-GIC  38 Level     arch_mem_timer\n  8:          0   PDC-GIC  21 Level     arm-pmu\n  9:          0   PDC-GIC 304 Level     sps\n 10:          0   PDC-GIC  32 Edge      apps_wdog_bark\n 12:          0   PDC-GIC 524 Level     eud_irq\n 15:          0   PDC-GIC 298 Edge      modem\n 16:          0   PDC-GIC 610 Edge      cdsp\n 17:          0   PDC-GIC 194 Edge      adsp\n 18:          0   PDC-GIC 483 Edge      smp2p\n 19:          0   PDC-GIC 190 Edge      smp2p\n 20:          0   PDC-GIC 608 Edge      smp2p\n 21:          0   PDC-GIC 621 Edge      smp2p\n 22:          7   PDC-GIC 421 Edge      qcom,qmp-aop\n 26:        225   PDC-GIC  37 Level     apps_rsc\n 29:         99   PDC-GIC 236 Edge      mmc0\n 30:          3   PDC-GIC 254 Edge      8804000.sdhci\n 31:        320   PDC-GIC 297 Edge      1d84000.ufshc\n 32:          0   PDC-GIC 161 Level     display_rsc\n 33:          0   PDC-GIC 538 Level     tsens-upper-lower\n 34:          0   PDC-GIC 540 Level     tsens-critical\n 35:          0   PDC-GIC 539 Level     tsens-upper-lower\n 36:          0   PDC-GIC 541 Level     tsens-critical\n 49:          0   PDC-GIC 195 Level     ngd_slim_irq\n 55:          0  pmic_arb 8388762 Edge      pon_kpdpwr_status\n 56:          0  pmic_arb 8454298 Edge      pon_resin_status\n 57:        879  pmic_arb 51380392 Edge      pm-adc5\n 58:          0  pmic_arb 55574697 Edge      thr-int-en\n 59:          0  pmic_arb 24117410 Edge      sig-tx\n 60:          0  pmic_arb 24182946 Edge      sig-rx\n 61:          0  pmic_arb 24248482 Edge      msg-tx\n 62:          0  pmic_arb 24314018 Edge      msg-rx\n 63:          0  pmic_arb 24379554 Edge      msg-tx-failed\n 64:          0  pmic_arb 24445090 Edge      msg-tx-discarded\n 65:          0  pmic_arb 24510626 Edge      msg-rx-discarded\n 67:          0  pmic_arb 30408870 Edge      bcl-lvl0\n 68:          0  pmic_arb 30474406 Edge      bcl-lvl1\n 69:          0  pmic_arb 30539942 Edge      bcl-lvl2\n 70:          0  pmic_arb 37748903 Edge      qcom,temp-alarm\n 77:          0  pmic_arb 1111490747 Edge      qcom,temp-alarm\n 78:          0  pmic_arb 1137705150 Edge      bcl-lvl0\n 79:          0  pmic_arb 1137770686 Edge      bcl-lvl1\n 80:          0  pmic_arb 1137836222 Edge      bcl-lvl2\n 81:          5  pmic_arb 1125122236 Edge      pm-adc5\n 82:          0  pmic_arb 1129316541 Edge      thr-int-en\n 84:          0  pmic_arb 1276117184 Edge      volume_up\n 95:          0  pmic_arb 1589706969 Edge      qpnp_lcdb_sc_irq\n 96:          0  pmic_arb 1563427027 Edge      qpnp_flash_led_fault_irq\n 97:          0  pmic_arb 1563623635 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 98:          0  pmic_arb 1563689171 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 99:          0  pmic_arb 1568735444 Edge      wled_ovp_irq\n100:          0  pmic_arb 1568932052 Edge      wled_pre_flash_irq\n101:          0  pmic_arb 1568997588 Edge      wled_flash_irq\n102:          0   PDC-GIC 261 Level     arm-smmu global fault\n103:          0   PDC-GIC 263 Level     arm-smmu global fault\n104:          0   PDC-GIC 396 Level     arm-smmu-context-fault\n105:          0   PDC-GIC 397 Level     arm-smmu-context-fault\n106:          0   PDC-GIC 398 Level     arm-smmu-context-fault\n107:          0   PDC-GIC 399 Level     arm-smmu-context-fault\n112:          0   PDC-GIC  97 Level     arm-smmu global fault\n114:          0   PDC-GIC 127 Level     arm-smmu-context-fault\n116:          0   PDC-GIC 129 Level     arm-smmu-context-fault\n117:          0   PDC-GIC 130 Level     arm-smmu-context-fault\n118:          0   PDC-GIC 131 Level     arm-smmu-context-fault\n119:          0   PDC-GIC 132 Level     arm-smmu-context-fault\n120:          0   PDC-GIC 133 Level     arm-smmu-context-fault\n121:          0   PDC-GIC 134 Level     arm-smmu-context-fault\n122:          0   PDC-GIC 135 Level     arm-smmu-context-fault\n123:          0   PDC-GIC 136 Level     arm-smmu-context-fault\n124:          0   PDC-GIC 137 Level     arm-smmu-context-fault\n125:          0   PDC-GIC 138 Level     arm-smmu-context-fault\n126:          0   PDC-GIC 139 Level     arm-smmu-context-fault\n127:          0   PDC-GIC 140 Level     arm-smmu-context-fault\n128:          0   PDC-GIC 141 Level     arm-smmu-context-fault\n129:          0   PDC-GIC 142 Level     arm-smmu-context-fault\n130:          0   PDC-GIC 143 Level     arm-smmu-context-fault\n131:          0   PDC-GIC 144 Level     arm-smmu-context-fault\n132:          0   PDC-GIC 145 Level     arm-smmu-context-fault\n133:          0   PDC-GIC 146 Level     arm-smmu-context-fault\n134:          0   PDC-GIC 147 Level     arm-smmu-context-fault\n135:          0   PDC-GIC 148 Level     arm-smmu-context-fault\n136:          0   PDC-GIC 149 Level     arm-smmu-context-fault\n137:          0   PDC-GIC 150 Level     arm-smmu-context-fault\n138:          0   PDC-GIC 213 Level     arm-smmu-context-fault\n139:          0   PDC-GIC 214 Level     arm-smmu-context-fault\n140:          0   PDC-GIC 215 Level     arm-smmu-context-fault\n141:          0   PDC-GIC 216 Level     arm-smmu-context-fault\n142:          0   PDC-GIC 217 Level     arm-smmu-context-fault\n143:          0   PDC-GIC 218 Level     arm-smmu-context-fault\n144:          0   PDC-GIC 219 Level     arm-smmu-context-fault\n145:          0   PDC-GIC 220 Level     arm-smmu-context-fault\n146:          0   PDC-GIC 221 Level     arm-smmu-context-fault\n147:          0   PDC-GIC 222 Level     arm-smmu-context-fault\n148:          0   PDC-GIC 223 Level     arm-smmu-context-fault\n149:          0   PDC-GIC 224 Level     arm-smmu-context-fault\n203:          0   PDC-GIC 633 Level     i2c_geni\n204:        806   PDC-GIC 637 Level     i2c_geni\n205:          0     GICv3 636 Level     msm_serial_geni0\n216:          0   PDC-GIC 389 Level     spi_geni\n217:         16   PDC-GIC 390 Level     spi_geni\n218:         62   PDC-GIC 388 Level     i2c_geni\n220:          0   PDC-GIC 332 Level     kgsl-3d0\n221:          0   PDC-GIC 336 Level     HFI\n222:          0   PDC-GIC 337 Level     GMU\n229:          0  msmgpio-dc   4 Edge      esd_err_irq\n235:          0  msmgpio-dc   9 Edge      NVT-ts\n237:          0  msmgpio-dc  10 Edge      TE_GPIO\n251:          0  msmgpio-dc  26 Edge      aw8624\n261:          1  msmgpio-dc  33 Edge      tas2562\n313:          0  msmgpio-dc  69 Edge      8804000.sdhci cd\n337:          2  msmgpio-dc  90 Edge      soc:fpc1020\n379:          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n380:          0   PDC-GIC 162 Edge      pwr_event_irq\n381:          0   PDC-GIC 518 Level     ss_phy_irq\n382:          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n383:          0   PDC-GIC 206 Level     msm_vidc\n384:          0   PDC-GIC 615 Level     error_irq\n385:          0   PDC-GIC 617 Edge      wdg_bite_irq\n386:          0   PDC-GIC 620 Edge      ipc_irq\n387:          0   PDC-GIC 616 Level     general_irq\n388:          0   PDC-GIC 509 Edge      csiphy\n389:          0   PDC-GIC 510 Edge      csiphy\n390:          0   PDC-GIC 511 Edge      csiphy\n391:          0   PDC-GIC 493 Edge      csiphy\n392:          0   PDC-GIC 500 Edge      cci\n393:          0   PDC-GIC 494 Edge      cci\n394:          0   PDC-GIC 491 Edge      cpas_camnoc\n395:          0   PDC-GIC 495 Edge      a5\n396:          1   PDC-GIC 501 Edge      cpas-cdm\n397:          0   PDC-GIC 496 Edge      csid\n398:          2   PDC-GIC 497 Edge      ife\n399:          0   PDC-GIC 498 Edge      csid\n400:          2   PDC-GIC 499 Edge      ife\n401:          0   PDC-GIC 505 Edge      csid-lite\n402:          2   PDC-GIC 504 Edge      ife-lite\n403:          0   PDC-GIC 506 Edge      jpeg\n404:          0   PDC-GIC 507 Edge      jpegdma\n405:          0   PDC-GIC 202 Edge      ppi\n406:          0   PDC-GIC 203 Edge      ppi\n407:          0   PDC-GIC 204 Edge      ppi\n408:          0   PDC-GIC 205 Edge      ppi\n409:          1   PDC-GIC 508 Edge      lrme\n410:          0   PDC-GIC 115 Level     msm_drm\n411:          0   PDC-GIC  64 Level     limits_sensor-00\n412:          0   PDC-GIC  65 Level     limits_sensor-01\n413:          0     smp2p   2 Edge      modem\n414:          0     smp2p   0 Edge      modem\n415:          0     smp2p   1 Edge      error_ready_interrupt\n416:          0     smp2p   3 Edge      modem\n417:          0     smp2p   7 Edge      modem\n418:          0     smp2p   2 Edge      cdsp\n419:          0     smp2p   0 Edge      cdsp\n420:          0     smp2p   1 Edge      error_ready_interrupt\n421:          0     smp2p   3 Edge      cdsp\n422:          0     smp2p   2 Edge      adsp\n423:          0     smp2p   0 Edge      adsp\n424:          0     smp2p   1 Edge      error_ready_interrupt\n425:          0     smp2p   3 Edge      adsp\n426:          0     smp2p   0 Edge      smp2p_sleepstate\n427:          0       sde   4 Edge      dsi_ctrl\n428:          0   PDC-GIC 165 Edge      dwc3\n431:          0  pmic_arb 101777580 Edge      qpnp_rtc_alarm\n432:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n434:          0  pmic_arb 75563178 Edge      qg-vbat-low\n435:          0  pmic_arb 75628714 Edge      qg-vbat-empty\n436:         21  pmic_arb 75694250 Edge      qg-fifo-done\n437:          0  pmic_arb 75759786 Edge      qg-good-ocv\n438:          0  pmic_arb 16777371 Edge      chgr-error\n439:          0  pmic_arb 16842907 Edge      chg-state-change\n446:          0  pmic_arb 17825948 Edge      otg-fail\n450:          0  pmic_arb 18088092 Edge      high-duty-cycle\n451:          0  pmic_arb 18153628 Edge      input-current-limiting\n453:          0  pmic_arb 18284700 Edge      switcher-power-ok\n454:          0  pmic_arb 18874525 Edge      bat-temp\n455:          0  pmic_arb 19005597 Edge      bat-ov\n456:          0  pmic_arb 19071133 Edge      bat-low\n457:          0  pmic_arb 19136669 Edge      bat-therm-or-id-missing\n458:          0  pmic_arb 19202205 Edge      bat-terminal-missing\n461:          0  pmic_arb 19923102 Edge      usbin-collapse\n462:          0  pmic_arb 19988638 Edge      usbin-vashdn\n463:          0  pmic_arb 20054174 Edge      usbin-uv\n464:          0  pmic_arb 20119710 Edge      usbin-ov\n465:          0  pmic_arb 20185246 Edge      usbin-plugin\n467:          0  pmic_arb 20316318 Edge      usbin-src-change\n468:          0  pmic_arb 20381854 Edge      usbin-icl-change\n470:          0  pmic_arb 21102751 Edge      dcin-uv\n471:          0  pmic_arb 21168287 Edge      dcin-ov\n472:          0  pmic_arb 21233823 Edge      dcin-plugin\n474:          0  pmic_arb 21364895 Edge      dcin-pon\n475:          0  pmic_arb 21430431 Edge      dcin-en\n476:          0  pmic_arb 22020256 Edge      typec-or-rid-detect-change\n478:          0  pmic_arb 22151328 Edge      typec-cc-state-change\n479:          0  pmic_arb 22216864 Edge      typec-vconn-oc\n481:          0  pmic_arb 22347936 Edge      typec-attach-detach\n482:          0  pmic_arb 22413472 Edge      typec-legacy-cable-detect\n484:          0  pmic_arb 23068833 Edge      wdog-snarl\n485:          0  pmic_arb 23134369 Edge      wdog-bark\n487:          0  pmic_arb 23265441 Edge      aicl-done\n488:          0  pmic_arb 23330977 Edge      smb-en\n490:          0  pmic_arb 23462049 Edge      temp-change\n492:          0  pmic_arb 185663662 Edge      sdam-sts\nIPI0:       219       Rescheduling interrupts\nIPI1:         9       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:         0       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm7125/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  4:        544          2          2          2          2          2          2          1   PDC-GIC  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   PDC-GIC  38 Level     arch_mem_timer\n  8:          0          0          0          0          0          0          0          0   PDC-GIC  21 Level     arm-pmu\n  9:          0          0          0          0          0          0          0          0   PDC-GIC 304 Level     sps\n 10:          0          0          0          0          0          0          0          0   PDC-GIC  32 Edge      apps_wdog_bark\n 12:          0          0          0          0          0          0          0          0   PDC-GIC 524 Level     eud_irq\n 15:          0          0          0          0          0          0          0          0   PDC-GIC 298 Edge      modem\n 16:          0          0          0          0          0          0          0          0   PDC-GIC 610 Edge      cdsp\n 17:          0          0          0          0          0          0          0          0   PDC-GIC 194 Edge      adsp\n 18:          0          0          0          0          0          0          0          0   PDC-GIC 483 Edge      smp2p\n 19:          0          0          0          0          0          0          0          0   PDC-GIC 190 Edge      smp2p\n 20:          0          0          0          0          0          0          0          0   PDC-GIC 608 Edge      smp2p\n 21:          0          0          0          0          0          0          0          0   PDC-GIC 621 Edge      smp2p\n 22:          7          0          0          0          0          0          0          0   PDC-GIC 421 Edge      qcom,qmp-aop\n 26:        201          0          0          0          0          0          0          0   PDC-GIC  37 Level     apps_rsc\n 29:         98          0          0          0          0          0          0          0   PDC-GIC 236 Edge      mmc0\n 30:          2          0          0          0          0          0          0          0   PDC-GIC 254 Edge      8804000.sdhci\n 31:        310          0          0          0          0          0          0          0   PDC-GIC 297 Edge      1d84000.ufshc\n 32:          0          0          0          0          0          0          0          0   PDC-GIC 161 Level     display_rsc\n 33:          0          0          0          0          0          0          0          0   PDC-GIC 538 Level     tsens-upper-lower\n 34:          0          0          0          0          0          0          0          0   PDC-GIC 540 Level     tsens-critical\n 35:          0          0          0          0          0          0          0          0   PDC-GIC 539 Level     tsens-upper-lower\n 36:          0          0          0          0          0          0          0          0   PDC-GIC 541 Level     tsens-critical\n 49:          0          0          0          0          0          0          0          0   PDC-GIC 195 Level     ngd_slim_irq\n 55:          0          0          0          0          0          0          0          0  pmic_arb 8388762 Edge      pon_kpdpwr_status\n 56:          0          0          0          0          0          0          0          0  pmic_arb 8454298 Edge      pon_resin_status\n 57:         38          0          0          0          0          0          0          0  pmic_arb 51380392 Edge      pm-adc5\n 58:          0          0          0          0          0          0          0          0  pmic_arb 55574697 Edge      thr-int-en\n 59:          0          0          0          0          0          0          0          0  pmic_arb 24117410 Edge      sig-tx\n 60:          0          0          0          0          0          0          0          0  pmic_arb 24182946 Edge      sig-rx\n 61:          0          0          0          0          0          0          0          0  pmic_arb 24248482 Edge      msg-tx\n 62:          0          0          0          0          0          0          0          0  pmic_arb 24314018 Edge      msg-rx\n 63:          0          0          0          0          0          0          0          0  pmic_arb 24379554 Edge      msg-tx-failed\n 64:          0          0          0          0          0          0          0          0  pmic_arb 24445090 Edge      msg-tx-discarded\n 65:          0          0          0          0          0          0          0          0  pmic_arb 24510626 Edge      msg-rx-discarded\n 67:          0          0          0          0          0          0          0          0  pmic_arb 30408870 Edge      bcl-lvl0\n 68:          0          0          0          0          0          0          0          0  pmic_arb 30474406 Edge      bcl-lvl1\n 69:          0          0          0          0          0          0          0          0  pmic_arb 30539942 Edge      bcl-lvl2\n 70:          0          0          0          0          0          0          0          0  pmic_arb 37748903 Edge      qcom,temp-alarm\n 77:          0          0          0          0          0          0          0          0  pmic_arb 1111490747 Edge      qcom,temp-alarm\n 78:          0          0          0          0          0          0          0          0  pmic_arb 1137705150 Edge      bcl-lvl0\n 79:          0          0          0          0          0          0          0          0  pmic_arb 1137770686 Edge      bcl-lvl1\n 80:          0          0          0          0          0          0          0          0  pmic_arb 1137836222 Edge      bcl-lvl2\n 81:          5          0          0          0          0          0          0          0  pmic_arb 1125122236 Edge      pm-adc5\n 82:          0          0          0          0          0          0          0          0  pmic_arb 1129316541 Edge      thr-int-en\n 84:          0          0          0          0          0          0          0          0  pmic_arb 1276117184 Edge      volume_up\n 95:          0          0          0          0          0          0          0          0  pmic_arb 1589706969 Edge      qpnp_lcdb_sc_irq\n 96:          0          0          0          0          0          0          0          0  pmic_arb 1563427027 Edge      qpnp_flash_led_fault_irq\n 97:          0          0          0          0          0          0          0          0  pmic_arb 1563623635 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 98:          0          0          0          0          0          0          0          0  pmic_arb 1563689171 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 99:          0          0          0          0          0          0          0          0  pmic_arb 1568735444 Edge      wled_ovp_irq\n100:          0          0          0          0          0          0          0          0  pmic_arb 1568932052 Edge      wled_pre_flash_irq\n101:          0          0          0          0          0          0          0          0  pmic_arb 1568997588 Edge      wled_flash_irq\n102:          0          0          0          0          0          0          0          0   PDC-GIC 261 Level     arm-smmu global fault\n103:          0          0          0          0          0          0          0          0   PDC-GIC 263 Level     arm-smmu global fault\n104:          0          0          0          0          0          0          0          0   PDC-GIC 396 Level     arm-smmu-context-fault\n105:          0          0          0          0          0          0          0          0   PDC-GIC 397 Level     arm-smmu-context-fault\n106:          0          0          0          0          0          0          0          0   PDC-GIC 398 Level     arm-smmu-context-fault\n107:          0          0          0          0          0          0          0          0   PDC-GIC 399 Level     arm-smmu-context-fault\n112:          0          0          0          0          0          0          0          0   PDC-GIC  97 Level     arm-smmu global fault\n114:          0          0          0          0          0          0          0          0   PDC-GIC 127 Level     arm-smmu-context-fault\n116:          0          0          0          0          0          0          0          0   PDC-GIC 129 Level     arm-smmu-context-fault\n117:          0          0          0          0          0          0          0          0   PDC-GIC 130 Level     arm-smmu-context-fault\n118:          0          0          0          0          0          0          0          0   PDC-GIC 131 Level     arm-smmu-context-fault\n119:          0          0          0          0          0          0          0          0   PDC-GIC 132 Level     arm-smmu-context-fault\n120:          0          0          0          0          0          0          0          0   PDC-GIC 133 Level     arm-smmu-context-fault\n121:          0          0          0          0          0          0          0          0   PDC-GIC 134 Level     arm-smmu-context-fault\n122:          0          0          0          0          0          0          0          0   PDC-GIC 135 Level     arm-smmu-context-fault\n123:          0          0          0          0          0          0          0          0   PDC-GIC 136 Level     arm-smmu-context-fault\n124:          0          0          0          0          0          0          0          0   PDC-GIC 137 Level     arm-smmu-context-fault\n125:          0          0          0          0          0          0          0          0   PDC-GIC 138 Level     arm-smmu-context-fault\n126:          0          0          0          0          0          0          0          0   PDC-GIC 139 Level     arm-smmu-context-fault\n127:          0          0          0          0          0          0          0          0   PDC-GIC 140 Level     arm-smmu-context-fault\n128:          0          0          0          0          0          0          0          0   PDC-GIC 141 Level     arm-smmu-context-fault\n129:          0          0          0          0          0          0          0          0   PDC-GIC 142 Level     arm-smmu-context-fault\n130:          0          0          0          0          0          0          0          0   PDC-GIC 143 Level     arm-smmu-context-fault\n131:          0          0          0          0          0          0          0          0   PDC-GIC 144 Level     arm-smmu-context-fault\n132:          0          0          0          0          0          0          0          0   PDC-GIC 145 Level     arm-smmu-context-fault\n133:          0          0          0          0          0          0          0          0   PDC-GIC 146 Level     arm-smmu-context-fault\n134:          0          0          0          0          0          0          0          0   PDC-GIC 147 Level     arm-smmu-context-fault\n135:          0          0          0          0          0          0          0          0   PDC-GIC 148 Level     arm-smmu-context-fault\n136:          0          0          0          0          0          0          0          0   PDC-GIC 149 Level     arm-smmu-context-fault\n137:          0          0          0          0          0          0          0          0   PDC-GIC 150 Level     arm-smmu-context-fault\n138:          0          0          0          0          0          0          0          0   PDC-GIC 213 Level     arm-smmu-context-fault\n139:          0          0          0          0          0          0          0          0   PDC-GIC 214 Level     arm-smmu-context-fault\n140:          0          0          0          0          0          0          0          0   PDC-GIC 215 Level     arm-smmu-context-fault\n141:          0          0          0          0          0          0          0          0   PDC-GIC 216 Level     arm-smmu-context-fault\n142:          0          0          0          0          0          0          0          0   PDC-GIC 217 Level     arm-smmu-context-fault\n143:          0          0          0          0          0          0          0          0   PDC-GIC 218 Level     arm-smmu-context-fault\n144:          0          0          0          0          0          0          0          0   PDC-GIC 219 Level     arm-smmu-context-fault\n145:          0          0          0          0          0          0          0          0   PDC-GIC 220 Level     arm-smmu-context-fault\n146:          0          0          0          0          0          0          0          0   PDC-GIC 221 Level     arm-smmu-context-fault\n147:          0          0          0          0          0          0          0          0   PDC-GIC 222 Level     arm-smmu-context-fault\n148:          0          0          0          0          0          0          0          0   PDC-GIC 223 Level     arm-smmu-context-fault\n149:          0          0          0          0          0          0          0          0   PDC-GIC 224 Level     arm-smmu-context-fault\n203:          0          0          0          0          0          0          0          0   PDC-GIC 633 Level     i2c_geni\n204:        806          0          0          0          0          0          0          0   PDC-GIC 637 Level     i2c_geni\n205:          0          0          0          0          0          0          0          0     GICv3 636 Level     msm_serial_geni0\n216:          0          0          0          0          0          0          0          0   PDC-GIC 389 Level     spi_geni\n217:         16          0          0          0          0          0          0          0   PDC-GIC 390 Level     spi_geni\n218:         62          0          0          0          0          0          0          0   PDC-GIC 388 Level     i2c_geni\n220:          0          0          0          0          0          0          0          0   PDC-GIC 332 Level     kgsl-3d0\n221:          0          0          0          0          0          0          0          0   PDC-GIC 336 Level     HFI\n222:          0          0          0          0          0          0          0          0   PDC-GIC 337 Level     GMU\n229:          0          0          0          0          0          0          0          0  msmgpio-dc   4 Edge      esd_err_irq\n235:          0          0          0          0          0          0          0          0  msmgpio-dc   9 Edge      NVT-ts\n237:          0          0          0          0          0          0          0          0  msmgpio-dc  10 Edge      TE_GPIO\n251:          0          0          0          0          0          0          0          0  msmgpio-dc  26 Edge      aw8624\n261:          1          0          0          0          0          0          0          0  msmgpio-dc  33 Edge      tas2562\n313:          0          0          0          0          0          0          0          0  msmgpio-dc  69 Edge      8804000.sdhci cd\n337:          2          0          0          0          0          0          0          0  msmgpio-dc  90 Edge      soc:fpc1020\n379:          0          0          0          0          0          0          0          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n380:          0          0          0          0          0          0          0          0   PDC-GIC 162 Edge      pwr_event_irq\n381:          0          0          0          0          0          0          0          0   PDC-GIC 518 Level     ss_phy_irq\n382:          0          0          0          0          0          0          0          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n383:          0          0          0          0          0          0          0          0   PDC-GIC 206 Level     msm_vidc\n384:          0          0          0          0          0          0          0          0   PDC-GIC 615 Level     error_irq\n385:          0          0          0          0          0          0          0          0   PDC-GIC 617 Edge      wdg_bite_irq\n386:          0          0          0          0          0          0          0          0   PDC-GIC 620 Edge      ipc_irq\n387:          0          0          0          0          0          0          0          0   PDC-GIC 616 Level     general_irq\n388:          0          0          0          0          0          0          0          0   PDC-GIC 509 Edge      csiphy\n389:          0          0          0          0          0          0          0          0   PDC-GIC 510 Edge      csiphy\n390:          0          0          0          0          0          0          0          0   PDC-GIC 511 Edge      csiphy\n391:          0          0          0          0          0          0          0          0   PDC-GIC 493 Edge      csiphy\n392:          0          0          0          0          0          0          0          0   PDC-GIC 500 Edge      cci\n393:          0          0          0          0          0          0          0          0   PDC-GIC 494 Edge      cci\n394:          0          0          0          0          0          0          0          0   PDC-GIC 491 Edge      cpas_camnoc\n395:          0          0          0          0          0          0          0          0   PDC-GIC 495 Edge      a5\n396:          1          0          0          0          0          0          0          0   PDC-GIC 501 Edge      cpas-cdm\n397:          0          0          0          0          0          0          0          0   PDC-GIC 496 Edge      csid\n398:          2          0          0          0          0          0          0          0   PDC-GIC 497 Edge      ife\n399:          0          0          0          0          0          0          0          0   PDC-GIC 498 Edge      csid\n400:          2          0          0          0          0          0          0          0   PDC-GIC 499 Edge      ife\n401:          0          0          0          0          0          0          0          0   PDC-GIC 505 Edge      csid-lite\n402:          2          0          0          0          0          0          0          0   PDC-GIC 504 Edge      ife-lite\n403:          0          0          0          0          0          0          0          0   PDC-GIC 506 Edge      jpeg\n404:          0          0          0          0          0          0          0          0   PDC-GIC 507 Edge      jpegdma\n405:          0          0          0          0          0          0          0          0   PDC-GIC 202 Edge      ppi\n406:          0          0          0          0          0          0          0          0   PDC-GIC 203 Edge      ppi\n407:          0          0          0          0          0          0          0          0   PDC-GIC 204 Edge      ppi\n408:          0          0          0          0          0          0          0          0   PDC-GIC 205 Edge      ppi\n409:          1          0          0          0          0          0          0          0   PDC-GIC 508 Edge      lrme\n410:          0          0          0          0          0          0          0          0   PDC-GIC 115 Level     msm_drm\n411:          0          0          0          0          0          0          0          0   PDC-GIC  64 Level     limits_sensor-00\n412:          0          0          0          0          0          0          0          0   PDC-GIC  65 Level     limits_sensor-01\n413:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n414:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n415:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n416:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n417:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n418:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n419:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n420:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n421:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n422:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n423:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n424:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n425:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n426:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n427:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n428:          0          0          0          0          0          0          0          0   PDC-GIC 165 Edge      dwc3\n431:          0          0          0          0          0          0          0          0  pmic_arb 101777580 Edge      qpnp_rtc_alarm\n432:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n434:          0          0          0          0          0          0          0          0  pmic_arb 75563178 Edge      qg-vbat-low\n435:          0          0          0          0          0          0          0          0  pmic_arb 75628714 Edge      qg-vbat-empty\n436:          0          0          0          0          0          0          0          0  pmic_arb 75694250 Edge      qg-fifo-done\n437:          0          0          0          0          0          0          0          0  pmic_arb 75759786 Edge      qg-good-ocv\n438:          0          0          0          0          0          0          0          0  pmic_arb 16777371 Edge      chgr-error\n439:          0          0          0          0          0          0          0          0  pmic_arb 16842907 Edge      chg-state-change\n446:          0          0          0          0          0          0          0          0  pmic_arb 17825948 Edge      otg-fail\n450:          0          0          0          0          0          0          0          0  pmic_arb 18088092 Edge      high-duty-cycle\n451:          0          0          0          0          0          0          0          0  pmic_arb 18153628 Edge      input-current-limiting\n453:          0          0          0          0          0          0          0          0  pmic_arb 18284700 Edge      switcher-power-ok\n454:          0          0          0          0          0          0          0          0  pmic_arb 18874525 Edge      bat-temp\n455:          0          0          0          0          0          0          0          0  pmic_arb 19005597 Edge      bat-ov\n456:          0          0          0          0          0          0          0          0  pmic_arb 19071133 Edge      bat-low\n457:          0          0          0          0          0          0          0          0  pmic_arb 19136669 Edge      bat-therm-or-id-missing\n458:          0          0          0          0          0          0          0          0  pmic_arb 19202205 Edge      bat-terminal-missing\n461:          0          0          0          0          0          0          0          0  pmic_arb 19923102 Edge      usbin-collapse\n462:          0          0          0          0          0          0          0          0  pmic_arb 19988638 Edge      usbin-vashdn\n463:          0          0          0          0          0          0          0          0  pmic_arb 20054174 Edge      usbin-uv\n464:          0          0          0          0          0          0          0          0  pmic_arb 20119710 Edge      usbin-ov\n465:          0          0          0          0          0          0          0          0  pmic_arb 20185246 Edge      usbin-plugin\n467:          0          0          0          0          0          0          0          0  pmic_arb 20316318 Edge      usbin-src-change\n468:          0          0          0          0          0          0          0          0  pmic_arb 20381854 Edge      usbin-icl-change\n470:          0          0          0          0          0          0          0          0  pmic_arb 21102751 Edge      dcin-uv\n471:          0          0          0          0          0          0          0          0  pmic_arb 21168287 Edge      dcin-ov\n472:          0          0          0          0          0          0          0          0  pmic_arb 21233823 Edge      dcin-plugin\n474:          0          0          0          0          0          0          0          0  pmic_arb 21364895 Edge      dcin-pon\n475:          0          0          0          0          0          0          0          0  pmic_arb 21430431 Edge      dcin-en\n476:          0          0          0          0          0          0          0          0  pmic_arb 22020256 Edge      typec-or-rid-detect-change\n478:          0          0          0          0          0          0          0          0  pmic_arb 22151328 Edge      typec-cc-state-change\n479:          0          0          0          0          0          0          0          0  pmic_arb 22216864 Edge      typec-vconn-oc\n481:          0          0          0          0          0          0          0          0  pmic_arb 22347936 Edge      typec-attach-detach\n482:          0          0          0          0          0          0          0          0  pmic_arb 22413472 Edge      typec-legacy-cable-detect\n484:          0          0          0          0          0          0          0          0  pmic_arb 23068833 Edge      wdog-snarl\n485:          0          0          0          0          0          0          0          0  pmic_arb 23134369 Edge      wdog-bark\n487:          0          0          0          0          0          0          0          0  pmic_arb 23265441 Edge      aicl-done\n488:          0          0          0          0          0          0          0          0  pmic_arb 23330977 Edge      smb-en\n490:          0          0          0          0          0          0          0          0  pmic_arb 23462049 Edge      temp-change\n492:          0          0          0          0          0          0          0          0  pmic_arb 185663662 Edge      sdam-sts\nIPI0:        86         32         32         32         32         32         33         30       Rescheduling interrupts\nIPI1:         0         72         72         72         72         72         72         72       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         0          1          1          1          1          1          3          1       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm7125/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    5 root      0:00 [kworker/0:0H]\n    6 root      0:00 [kworker/u16:0]\n    7 root      0:00 [mm_percpu_wq]\n    8 root      0:00 [ksoftirqd/0]\n    9 root      0:00 [rcu_preempt]\n   10 root      0:00 [rcu_sched]\n   11 root      0:00 [rcu_bh]\n   12 root      0:00 [rcuop/0]\n   13 root      0:00 [rcuos/0]\n   14 root      0:00 [rcuob/0]\n   15 root      0:00 [migration/0]\n   16 root      0:00 [cpuhp/0]\n   17 root      0:00 [cpuhp/1]\n   18 root      0:00 [migration/1]\n   19 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0]\n   21 root      0:00 [kworker/1:0H]\n   22 root      0:00 [rcuop/1]\n   23 root      0:00 [rcuos/1]\n   24 root      0:00 [rcuob/1]\n   25 root      0:00 [cpuhp/2]\n   26 root      0:00 [migration/2]\n   27 root      0:00 [ksoftirqd/2]\n   28 root      0:00 [kworker/2:0]\n   29 root      0:00 [kworker/2:0H]\n   30 root      0:00 [rcuop/2]\n   31 root      0:00 [rcuos/2]\n   32 root      0:00 [rcuob/2]\n   33 root      0:00 [cpuhp/3]\n   34 root      0:00 [migration/3]\n   35 root      0:00 [ksoftirqd/3]\n   36 root      0:00 [kworker/3:0]\n   37 root      0:00 [kworker/3:0H]\n   38 root      0:00 [rcuop/3]\n   39 root      0:00 [rcuos/3]\n   40 root      0:00 [rcuob/3]\n   41 root      0:00 [cpuhp/4]\n   42 root      0:00 [migration/4]\n   43 root      0:00 [ksoftirqd/4]\n   44 root      0:00 [kworker/4:0]\n   45 root      0:00 [kworker/4:0H]\n   46 root      0:00 [rcuop/4]\n   47 root      0:00 [rcuos/4]\n   48 root      0:00 [rcuob/4]\n   49 root      0:00 [cpuhp/5]\n   50 root      0:00 [migration/5]\n   51 root      0:00 [ksoftirqd/5]\n   52 root      0:00 [kworker/5:0]\n   53 root      0:00 [kworker/5:0H]\n   54 root      0:00 [rcuop/5]\n   55 root      0:00 [rcuos/5]\n   56 root      0:00 [rcuob/5]\n   57 root      0:00 [cpuhp/6]\n   58 root      0:00 [migration/6]\n   59 root      0:00 [ksoftirqd/6]\n   60 root      0:00 [kworker/6:0]\n   61 root      0:00 [kworker/6:0H]\n   62 root      0:00 [rcuop/6]\n   63 root      0:00 [rcuos/6]\n   64 root      0:00 [rcuob/6]\n   65 root      0:00 [cpuhp/7]\n   66 root      0:00 [migration/7]\n   67 root      0:00 [ksoftirqd/7]\n   68 root      0:00 [kworker/7:0]\n   69 root      0:00 [kworker/7:0H]\n   70 root      0:00 [rcuop/7]\n   71 root      0:00 [rcuos/7]\n   72 root      0:00 [rcuob/7]\n   73 root      0:00 [kdevtmpfs]\n   74 root      0:00 [netns]\n   75 root      0:00 [kworker/u16:1]\n   76 root      0:00 [kworker/u17:0]\n   77 root      0:00 [ipa_usb_wq]\n   79 root      0:00 [msm_watchdog]\n   80 root      0:00 [spi_wdsp]\n   81 root      0:00 [qmp_aop]\n   82 root      0:00 [oom_reaper]\n   83 root      0:00 [writeback]\n   84 root      0:00 [kcompactd0]\n   85 root      0:00 [crypto]\n   86 root      0:00 [kblockd]\n   87 root      0:00 [blk_crypto_wq]\n   88 root      0:00 [irq/102-arm-smm]\n   89 root      0:00 [irq/103-arm-smm]\n   90 root      0:00 [irq/112-arm-smm]\n   91 root      0:00 [irq/33-tsens-up]\n   92 root      0:00 [irq/34-tsens-cr]\n   93 root      0:00 [irq/35-tsens-up]\n   94 root      0:00 [irq/36-tsens-cr]\n   95 root      0:00 [system]\n   96 root      0:00 [ipa_power_mgmt]\n   97 root      0:00 [transport_power]\n   98 root      0:00 [ipa_pm_activate]\n   99 root      0:00 [devfreq_wq]\n  100 root      0:00 [cfg80211]\n  101 root      0:00 [irq/95-qpnp_lcd]\n  138 root      0:00 [kswapd0]\n  139 root      0:00 [ecryptfs-kthrea]\n  179 root      0:00 [kthrotld]\n  180 root      0:00 [irq/99-wled_ovp]\n  181 root      0:00 [irq/101-wled_fl]\n  182 root      0:00 [irq/100-wled_pr]\n  183 root      0:00 [irq/117-arm-smm]\n  184 root      0:00 [irq/118-arm-smm]\n  185 root      0:00 [irq/18-smp2p]\n  186 root      0:00 [irq/19-smp2p]\n  187 root      0:00 [irq/20-smp2p]\n  188 root      0:00 [mem_share_svc]\n  189 root      0:00 [irq/119-arm-smm]\n  190 root      0:00 [cdsprm-wq]\n  191 root      0:00 [cdsprm-wq-delay]\n  192 root      0:00 [irq/120-arm-smm]\n  193 root      0:00 [hwrng]\n  195 root      0:00 [diag_real_time_]\n  197 root      0:00 [diag_wq]\n  199 root      0:00 [DIAG_USB_diag]\n  200 root      0:00 [diag_cntl_wq]\n  201 root      0:00 [diag_dci_wq]\n  202 root      0:00 [MODEM_CNTL]\n  203 root      0:00 [MODEM_DATA]\n  204 root      0:00 [MODEM_CMD]\n  205 root      0:00 [MODEM_DCI]\n  206 root      0:00 [MODEM_DCI_CMD]\n  207 root      0:00 [LPASS_CNTL]\n  208 root      0:00 [LPASS_DATA]\n  209 root      0:00 [LPASS_CMD]\n  210 root      0:00 [LPASS_DCI]\n  211 root      0:00 [LPASS_DCI_CMD]\n  212 root      0:00 [WCNSS_CNTL]\n  213 root      0:00 [WCNSS_DATA]\n  214 root      0:00 [WCNSS_CMD]\n  215 root      0:00 [WCNSS_DCI]\n  216 root      0:00 [WCNSS_DCI_CMD]\n  217 root      0:00 [SENSORS_CNTL]\n  218 root      0:00 [SENSORS_DATA]\n  219 root      0:00 [SENSORS_CMD]\n  220 root      0:00 [SENSORS_DCI]\n  221 root      0:00 [SENSORS_DCI_CMD]\n  222 root      0:00 [DIAG_CTRL]\n  223 root      0:00 [DIAG_DATA]\n  224 root      0:00 [DIAG_CMD]\n  225 root      0:00 [DIAG_DCI_DATA]\n  226 root      0:00 [DIAG_DCI_CMD]\n  227 root      0:00 [CDSP_CNTL]\n  228 root      0:00 [CDSP_DATA]\n  229 root      0:00 [CDSP_CMD]\n  230 root      0:00 [CDSP_DCI]\n  231 root      0:00 [CDSP_DCI_CMD]\n  232 root      0:00 [NPU_CNTL]\n  233 root      0:00 [NPU_DATA]\n  234 root      0:00 [NPU_CMD]\n  235 root      0:00 [NPU_DCI]\n  236 root      0:00 [NPU_DCI_CMD]\n  237 root      0:00 [DIAG_RPMSG_APPS]\n  238 root      0:00 [DIAG_RPMSG_APPS]\n  239 root      0:00 [DIAG_RPMSG_DIAG]\n  240 root      0:00 [DIAG_RPMSG_DIAG]\n  241 root      0:00 [DIAG_RPMSG_DIAG]\n  242 root      0:00 [DIAG_RPMSG_DIAG]\n  243 root      0:00 [DIAG_RPMSG_DIAG]\n  244 root      0:00 [DIAG_RPMSG_DIAG]\n  245 root      0:00 [DIAG_RPMSG_DIAG]\n  246 root      0:00 [DIAG_RPMSG_DIAG]\n  247 root      0:00 [kworker/u16:2]\n  248 root      0:00 [kgsl-workqueue]\n  249 root      0:00 [kgsl-mementry]\n  250 root      0:00 [kworker/u16:3]\n  251 root      0:00 [kgsl_worker_thr]\n  252 root      0:00 [kworker/u16:4]\n  253 root      0:00 [kgsl_low_prio_w]\n  254 root      0:00 [kworker/u16:5]\n  255 root      0:00 [qseecom-unreg-l]\n  256 root      0:00 [qseecom-unload-]\n  257 root      0:00 [kworker/u16:6]\n  258 root      0:00 [irq/121-arm-smm]\n  259 root      0:00 [irq/122-arm-smm]\n  261 root      0:00 [irq/123-arm-smm]\n  262 root      0:00 [qcrypto_seq_res]\n  263 root      0:00 [kworker/u16:8]\n  264 root      0:00 [irq/124-arm-smm]\n  286 root      0:00 [irq/125-arm-smm]\n  288 root      0:00 [spi0]\n  289 root      0:00 [irq/116-arm-smm]\n  290 root      0:00 [irq/126-arm-smm]\n  291 root      0:00 [irq/229-esd_err]\n  292 root      0:00 [crtc_commit:97]\n  293 root      0:00 [crtc_event:97]\n  294 root      0:00 [crtc_commit:134]\n  295 root      0:00 [crtc_event:134]\n  296 root      0:00 [pp_event]\n  298 root      0:00 [irq/104-arm-smm]\n  299 root      0:00 [irq/105-arm-smm]\n  300 root      0:00 [irq/106-arm-smm]\n  301 root      0:00 [irq/107-arm-smm]\n  302 root      0:00 [kgsl-events]\n  303 root      0:00 [kgsl_devfreq_wq]\n  304 root      0:00 [spi1]\n  305 root      0:00 [scsi_eh_0]\n  306 root      0:00 [scsi_tmf_0]\n  307 root      0:00 [ufs_pm_qos_0]\n  308 root      0:00 [ufs_clk_gating_]\n  314 root      0:00 [uether]\n  315 root      0:00 [k_ipa_usb]\n  318 root      0:00 [irq/235-NVT-ts]\n  319 root      0:00 [nvt_fwu_wq]\n  320 root      0:00 [nvt_ts_workqueu]\n  321 root      0:00 [irq/337-soc:fpc]\n  322 root      0:00 [rot_commitq_0_0]\n  323 root      0:00 [rot_commitq_0_1]\n  324 root      0:00 [rot_doneq_0_0]\n  325 root      0:00 [rot_doneq_0_1]\n  326 root      0:00 [rot_fenceq_0_0]\n  327 root      0:00 [rot_fenceq_0_1]\n  328 root      0:00 [rot_fenceq_0_2]\n  329 root      0:00 [rot_fenceq_0_3]\n  330 root      0:00 [rot_fenceq_0_4]\n  331 root      0:00 [rot_fenceq_0_5]\n  332 root      0:00 [rot_fenceq_0_6]\n  333 root      0:00 [rot_fenceq_0_7]\n  334 root      0:00 [rot_fenceq_0_8]\n  335 root      0:00 [rot_fenceq_0_9]\n  336 root      0:00 [rot_fenceq_0_10]\n  337 root      0:00 [rot_fenceq_0_11]\n  338 root      0:00 [rot_fenceq_0_12]\n  339 root      0:00 [rot_fenceq_0_13]\n  340 root      0:00 [rot_fenceq_0_14]\n  341 root      0:00 [rot_fenceq_0_15]\n  342 root      0:00 [kworker/u16:12]\n  343 root      0:00 [kworker/u16:13]\n  344 root      0:00 [irq/251-aw8624]\n  345 root      0:00 [aw8924_vibrator]\n  346 root      0:00 [irq/114-arm-smm]\n  347 root      0:00 [npu_general_wq]\n  348 root      0:00 [msm_vidc_worker]\n  349 root      0:00 [pm_workerq_venu]\n  350 root      0:00 [irq/127-arm-smm]\n  351 root      0:00 [irq/128-arm-smm]\n  352 root      0:00 [irq/129-arm-smm]\n  353 root      0:00 [irq/130-arm-smm]\n  354 root      0:00 [cam-cpas]\n  355 root      0:00 [qcom,cam_virtua]\n  356 root      0:00 [irq/131-arm-smm]\n  357 root      0:00 [qcom,cam170-cpa]\n  358 root      0:00 [irq/132-arm-smm]\n  359 root      0:00 [cam_cci_wq]\n  360 root      0:00 [cam_cci_wq]\n  361 root      0:00 [cam_cci_wq]\n  362 root      0:00 [cam_cci_wq]\n  363 root      0:00 [irq/133-arm-smm]\n  364 root      0:00 [irq/134-arm-smm]\n  365 root      0:00 [irq/135-arm-smm]\n  366 root      0:00 [irq/70-qcom,tem]\n  367 root      0:00 [irq/77-qcom,tem]\n  368 root      0:00 [irq/411-limits_]\n  369 root      0:00 [kworker/0:1H]\n  370 root      0:00 [irq/412-limits_]\n  371 root      0:00 [kworker/6:1H]\n  372 root      0:00 [irq/67-bcl-lvl0]\n  373 root      0:00 [irq/68-bcl-lvl1]\n  374 root      0:00 [irq/69-bcl-lvl2]\n  375 root      0:00 [irq/78-bcl-lvl0]\n  376 root      0:00 [irq/79-bcl-lvl1]\n  377 root      0:00 [irq/80-bcl-lvl2]\n  378 root      0:00 [dm_bufio_cache]\n  379 root      0:00 [mmc_clk_gate/mm]\n  380 root      0:00 [mmc_clk_gate/mm]\n  381 root      0:00 [irq/30-8804000.]\n  382 root      0:00 [irq/29-mmc0]\n  383 root      0:00 [irq/313-8804000]\n  384 root      0:00 [irq/136-arm-smm]\n  385 root      0:00 [uaudio_svc]\n  386 root      0:00 [apr_driver]\n  389 root      0:00 [mmcqd/0]\n  390 root      0:00 [ipv6_addrconf]\n  391 root      0:00 [irq/21-smp2p]\n  400 root      0:00 [irq/434-qg-vbat]\n  401 root      0:00 [irq/435-qg-vbat]\n  402 root      0:00 [irq/436-qg-fifo]\n  403 root      0:00 [irq/437-qg-good]\n  405 root      0:00 [kworker/0:6]\n  406 root      0:00 [kworker/u17:1]\n  407 root      0:00 [irq/438-chgr-er]\n  409 root      0:00 [irq/439-chg-sta]\n  410 root      0:00 [irq/446-otg-fai]\n  411 root      0:00 [irq/450-high-du]\n  412 root      0:00 [irq/451-input-c]\n  413 root      0:00 [irq/453-switche]\n  414 root      0:00 [irq/454-bat-tem]\n  415 root      0:00 [irq/455-bat-ov]\n  416 root      0:00 [irq/456-bat-low]\n  417 root      0:00 [irq/457-bat-the]\n  418 root      0:00 [irq/458-bat-ter]\n  419 root      0:00 [irq/461-usbin-c]\n  420 root      0:00 [irq/462-usbin-v]\n  421 root      0:00 [irq/463-usbin-u]\n  422 root      0:00 [irq/464-usbin-o]\n  423 root      0:00 [irq/465-usbin-p]\n  424 root      0:00 [irq/467-usbin-s]\n  425 root      0:00 [irq/468-usbin-i]\n  426 root      0:00 [irq/470-dcin-uv]\n  427 root      0:00 [irq/471-dcin-ov]\n  428 root      0:00 [irq/472-dcin-pl]\n  429 root      0:00 [irq/474-dcin-po]\n  430 root      0:00 [irq/475-dcin-en]\n  431 root      0:00 [irq/476-typec-o]\n  432 root      0:00 [irq/478-typec-c]\n  433 root      0:00 [irq/479-typec-v]\n  434 root      0:00 [irq/481-typec-a]\n  435 root      0:00 [irq/482-typec-l]\n  436 root      0:00 [irq/484-wdog-sn]\n  437 root      0:00 [irq/485-wdog-ba]\n  438 root      0:00 [irq/487-aicl-do]\n  439 root      0:00 [irq/488-smb-en]\n  440 root      0:00 [irq/490-temp-ch]\n  441 root      0:00 [irq/492-sdam-st]\n  442 root      0:00 [irq/58-thr-int-]\n  443 root      0:00 [irq/82-thr-int-]\n  451 root      0:00 [irq/59-sig-tx]\n  452 root      0:00 [irq/60-sig-rx]\n  453 root      0:00 [irq/380-pwr_eve]\n  454 root      0:00 [irq/379-dp_hs_p]\n  455 root      0:00 [irq/382-dm_hs_p]\n  456 root      0:00 [irq/381-ss_phy_]\n  457 root      0:00 [irq/137-arm-smm]\n  458 root      0:00 [usb_bam_wq]\n  459 root      0:00 [compaction_wq]\n  460 root      0:00 [rq_stats]\n  461 root      0:00 [irq/138-arm-smm]\n  462 root      0:00 [irq/139-arm-smm]\n  463 root      0:00 [irq/140-arm-smm]\n  464 root      0:00 [irq/141-arm-smm]\n  465 root      0:00 [irq/142-arm-smm]\n  466 root      0:00 [irq/143-arm-smm]\n  467 root      0:00 [irq/144-arm-smm]\n  468 root      0:00 [irq/145-arm-smm]\n  469 root      0:00 [irq/146-arm-smm]\n  470 root      0:00 [irq/147-arm-smm]\n  471 root      0:00 [irq/148-arm-smm]\n  472 root      0:00 [irq/149-arm-smm]\n  473 root      0:00 [sb-1]\n  474 root      0:00 [ngd_rx_thread1]\n  475 root      0:00 [ngd_notify_sl1]\n  476 root      0:00 [irq/98-qpnp_fla]\n  477 root      0:00 [irq/97-qpnp_fla]\n  478 root      0:00 [irq/96-qpnp_fla]\n  486 root      0:00 [kworker/1:1]\n  487 root      0:00 [kworker/2:1]\n  488 root      0:00 [kworker/3:1]\n  489 root      0:00 [kworker/4:1]\n  490 root      0:00 [kworker/5:1]\n  491 root      0:00 [kworker/6:1]\n  492 root      0:00 [kworker/7:1]\n  526 root      0:00 [kworker/0:1]\n  551 root      0:00 [kworker/0:0]\n  576 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm7125/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1113.79908,3.7126636,33.57311828426281,7.5361885655638,33.17326760404606,224.47091455\r\n1,576000,2138.598277,3.712844230902778,52.55950319817836,6.144514670319843,40.68669592532466,116.905874227\r\n1,768000,2851.570074,3.7129818671875,64.43062308512022,5.649138158467204,44.254538123711455,87.677844602\r\n1,1017600,3319.524113,3.262110960102201,72.77858192356177,5.481604517263372,45.60708442439946,75.318924502\r\n1,1248000,4633.061527,3.7123890440705125,96.81230483422777,5.224364492535453,47.85271019225378,53.963847896\r\n1,1324800,4918.548831,3.7126727287137684,101.01248934333157,5.1346199854748,48.689094949035926,50.83153597\r\n1,1516800,5631.772206,3.7129299881329114,114.20302301245748,5.069983343240636,49.30982669465829,44.394475816\r\n1,1612800,5988.167381,3.7129014019097224,124.28473410786133,5.189116460430106,48.177758565719,41.751841026\r\n1,1708800,6344.372542,3.7127648302902623,133.4970435015986,5.2609367942543095,47.52005389478078,39.408638995\r\n1,1804800,6701.155279,3.7129628097296097,153.42852593363503,5.724539884564442,43.671632138348095,37.310792434\r\n6,652800,5092.790646,7.801456259191178,109.79649310538133,5.391305695289028,46.370956152319884,49.102713054\r\n6,825600,6443.631115,7.804785749757752,132.28123015055834,5.133953531226189,48.695415429732215,38.810899516\r\n6,979200,7643.857396,7.806226915849673,160.68339562353475,5.257220120919427,47.55364893419717,32.717880404\r\n6,1113600,8643.64001,7.761889376795977,185.2562505243069,5.3603683892993725,46.638585605247236,28.934885458\r\n6,1267200,9890.022945,7.804626692708333,217.5121527757299,5.5009703434599055,45.44652750168424,25.290404574\r\n6,1555200,12141.816416,7.8072379218106995,290.910331253469,5.993436218153408,41.712298404507855,20.602349158\r\n6,1708800,13335.467008,7.80399520599251,340.1226652467431,6.38000566448399,39.18491818772073,18.757955045\r\n6,1843200,14390.973981,7.807603071289062,385.39826762823515,6.699471903681901,37.31637412534036,17.38324343\r\n6,1900800,14835.034417,7.804626692445287,400.56415822922713,6.754968569602353,37.00979470504285,16.863637025\r\n6,1996800,15591.867282,7.808427124399039,447.1020864909999,7.174345012446942,34.84638661317083,16.04632416\r\n6,2112000,16487.502473,7.8065826103219695,520.0036507166333,7.891366586449615,31.680190910060976,15.175598432\r\n6,2208000,17224.748519,7.801063640851449,539.4501730079648,7.836465440436803,31.902137755879014,14.526764162\r\n6,2323200,17984.317675,7.741183572227961,590.8769007801635,8.220924358019621,30.410205606152022,13.913091453\r\n"
  },
  {
    "path": "results/sm7125/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1345.5003084465861, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [989.981238358, 990.285892632, 984.969466062, 991.8537322100001, 993.1222898850001, 980.5653467740001, 995.5003684500001, 969.8350476690001, 979.301355939, 982.2914602559999, 979.251565257, 981.7292429389998, 983.956464799, 989.7288431310001, 988.6153893219999, 996.7149668700001, 985.8352294079999, 978.084031743, 987.5020759619999, 971.147284108, 978.0340440779999, 992.005577466, 986.237688996, 986.1872846159999, 984.107062631, 984.057035269, 972.311061323, 988.665912652, 985.2209314339999, 987.401407041, 982.742719392, 977.0199140359999, 985.170586724, 996.76564549, 981.679076654, 979.401450609, 991.0442283120001, 993.274313845, 992.106720967, 992.2585662230001, 978.2834697089999, 974.592877608, 980.4152833020001, 984.107062631, 978.133763061, 988.766700218, 974.493259128, 978.2337383909999, 991.0442283120001, 980.8153669080001, 986.3886436519999, 987.5525398169999, 985.2710179659999, 983.8561522019999, 977.0199140359999, 986.4387895479998, 982.8931391039999, 992.208124477, 984.45854353, 978.2337383909999, 988.766700218, 981.628910369, 980.5152399640002, 980.7151532880001, 989.930655553, 976.0054277539999, 986.287834892, 974.9905852319998, 976.920313698, 979.4512412910001, 974.642431416, 984.1573478659999, 978.2834697089999, 1001.577841397, 974.7916037039998, 975.856077346, 974.493259128, 981.8792272679999, 972.459876787, 993.47709923, 977.1195143739999, 981.8792272679999, 989.829749342, 980.2652198300002, 980.5653467740001, 991.195635744, 984.057035269, 971.2959214519999, 986.4387895479998, 979.3514032740002, 972.509566882, 989.627677521, 976.0054277539999, 976.0054277539999, 980.6653034360002, 979.4512412910001, 984.057035269, 1000.158818004, 977.634911799, 986.3382392719999, 996.91820381, 970.082649183, 986.489193928, 989.880332147, 977.0698422259999, 988.665912652, 988.6153893219999, 980.9153235700002, 978.2337383909999, 982.9431072959999, 986.6401485839998, 986.3886436519999, 989.880332147, 980.2652198300002, 975.856077346, 987.753877659, 990.2842163900001, 980.7151532880001, 987.6027448829999], \"power_mean\": 983.5768971915462, \"energy_millijoules\": 4917.884485957731, \"energy_joules\": 4.917884485957731}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 224.47091455, \"elapsed_ns\": 224470914550, \"power_samples\": [38.52473058899977, 31.53860684999995, 27.99263792099987, 43.28669890499987, 33.91707677399984, 31.589522343999874, 46.57066935299997, 22.322375052999973, 30.680813187000012, 31.487428905, 36.248446866999984, 19.1837510109998, 33.814746044999765, 37.41222408199985, 33.814746044999765, 36.094462419000024, 31.589522343999874, 32.855774398999756, 22.271673297999882, 32.80453697899986, 39.945891784999844, 44.34713628299983, 31.487428905, 25.309940930999915, 41.96417130899988, 33.76344914999993, 30.680813187000012, 28.094375036000088, 23.49002760099995, 44.450535594999906, 32.65108747499971, 37.25806151399979, 39.739778511999816, 37.36101254399978, 34.01967056399974, 22.67650731099991, 37.36101254399978, 25.817700980999916, 27.99263792099987, 28.043637246000003, 43.33847198999979, 52.28824969099992, 44.760999338999795, 23.28724221599998, 33.86604293999983, 32.80453697899986, 37.309537028999785, 35.029760984999825, 31.589522343999874, 34.67079312699991, 37.36101254399978, 32.49763797099979, 33.9683736689999, 38.52473058899977, 25.61444040599997, 30.323770334999836, 38.26731992099985, 26.879919201000007, 26.676421031000018, 46.46703275099992, 28.094375036000088, 35.13221035899994, 37.309537028999785, 25.766820605999897, 28.094375036000088, 34.97840461499982, 30.374888804999955, 28.094375036000088, 28.956137625999872, 38.52473058899977, 18.62903075700001, 29.10905276999995, 30.272651865000057, 33.814746044999765, 32.59985005499982, 28.247111475999873, 40.74885879899989, 34.87595524099993, 25.716201155999897, 29.26196791399991, 37.36101254399978, 27.99263792099987, 20.703536955000004, 42.015884723999875, 22.373076807999837, 35.08085398899982, 30.323770334999836, 21.1078960829999, 31.487428905, 40.74885879899989, 17.61656443799984, 44.657334218999836, 36.197294498999895, 36.197294498999895, 37.36101254399978, 36.29986290700003, 25.766820605999897, 30.221795541000006, 45.458962292999786, 26.676421031000018, 36.402431314999944, 38.37038990099984, 37.41222408199985, 23.59129013599977, 43.131645152999795, 30.374888804999955, 31.385335466000015, 46.57066935299997, 40.64581581099981, 29.66965435099985, 32.59985005499982, 31.385335466000015, 31.691878233999887, 45.407070257999976, 34.82459887099992, 42.51143014499985, 35.991894011, 30.272651865000057, 25.970081180999955, 27.89090080599999, 32.49763797099979, 44.450535594999906, 32.80453697899986, 27.99263792099987, 45.458962292999786, 36.197294498999895, 34.97840461499982, 25.46206020599982, 31.43625095999994, 35.029760984999825, 32.753299558999856, 32.65108747499971, 32.65108747499971, 37.206849975999944, 29.058255615999883, 30.272651865000057, 34.92704824499981, 19.893795461999957, 44.29530372299985, 36.145878458999846, 36.094462419000024, 35.889325602999975, 43.07987206799987, 25.61444040599997, 29.058255615999883, 43.02836448599987, 24.450841310999976, 26.676421031000018, 37.95890282699975, 29.058255615999883, 37.206849975999944, 38.37038990099984, 25.563820955999972, 25.61444040599997, 47.83829041799993, 30.221795541000006, 29.10905276999995, 38.37038990099984, 22.069386295999948, 27.99263792099987, 40.43972983499975, 25.512940580999953, 38.47319559899972, 35.991894011, 31.43625095999994, 32.5488753909998, 36.197294498999895, 30.272651865000057, 33.814746044999765, 50.221404772999904, 29.211170759999845, 26.93059782099988, 36.197294498999895, 25.512940580999953, 23.28724221599998, 45.56248024999991, 26.82897935099993, 33.76344914999993, 39.739778511999816, 34.87595524099993, 27.89090080599999, 40.74885879899989, 27.99263792099987, 30.578838392999955, 38.21604921299979, 34.82459887099992, 24.5524831109999, 36.145878458999846, 28.196373686000015, 38.3188549109999, 37.36101254399978, 28.043637246000003, 19.032440114999872, 43.88144066699988, 27.99263792099987, 32.90674906299978, 39.585259703999895, 43.07987206799987, 28.094375036000088, 40.64581581099981, 30.425745128999893, 34.275628916999835, 26.82897935099993, 34.92704824499981, 29.160111764999897, 40.59416187099987, 32.70232489499983, 22.01868454099997, 34.97840461499982, 22.069386295999948, 30.476863599000012, 27.89090080599999, 24.400281030999963, 39.585259703999895, 29.058255615999883, 37.206849975999944, 43.02836448599987, 39.53392982599985, 25.66532078099999, 28.196373686000015, 40.74885879899989, 35.029760984999825, 33.86604293999983, 33.86604293999983, 28.043637246000003, 33.86604293999983, 28.701366332999896, 30.374888804999955, 33.76344914999993, 33.76344914999993, 25.868581355999936, 46.72625746499989, 15.2351078129999, 23.439266175999933, 33.814746044999765, 33.91707677399984, 27.941638596000075, 33.91707677399984, 27.941638596000075, 33.76344914999993, 45.303552300999854, 27.99263792099987, 32.65108747499971, 44.24347116299987, 44.29530372299985, 26.879919201000007, 37.41222408199985, 26.82897935099993, 25.716201155999897, 29.160111764999897, 26.82897935099993, 37.15537446099984, 40.80051273899983, 32.5488753909998, 31.43625095999994, 44.398703034999926, 22.119828041999995, 26.727360881000095, 41.96417130899988, 28.803484322999793, 36.094462419000024, 36.197294498999895, 34.87595524099993, 40.74885879899989, 33.91707677399984, 40.74885879899989, 35.78675719499995, 44.29530372299985, 27.99263792099987, 33.814746044999765, 39.53392982599985, 34.97840461499982, 38.47319559899972, 29.160111764999897, 38.37038990099984, 22.474220308999975, 44.24347116299987, 25.66532078099999, 26.625481180999827, 36.145878458999846, 36.094462419000024, 37.41222408199985, 37.36101254399978, 32.5488753909998, 30.578838392999955, 34.82459887099992, 30.272651865000057, 34.82459887099992, 30.374888804999955, 41.912457894, 22.17052979699986, 45.51085432799982, 38.01017353499981, 32.80453697899986, 30.272651865000057, 38.52473058899977, 34.82459887099992, 45.303552300999854, 25.61444040599997, 34.67079312699991, 32.49763797099979, 39.585259703999895, 29.414883057999873, 25.512940580999953, 26.778039500999967, 35.94047797099995, 34.82459887099992, 32.39542588699976, 37.15537446099984, 33.661118420999856, 27.941638596000075, 30.221795541000006, 35.889325602999975, 18.37693229499996, 37.36101254399978, 30.11955860099988, 43.02836448599987, 34.7732425009998, 21.816397538999922, 30.323770334999836, 37.206849975999944, 31.43625095999994, 30.323770334999836, 56.94598618099997, 27.89090080599999, 18.225621398999806, 41.912457894, 25.61444040599997, 37.309537028999785, 22.17052979699986, 30.272651865000057, 31.28297957599989, 45.458962292999786, 34.87595524099993, 29.058255615999883, 37.25806151399979, 38.26731992099985, 45.844680302999905, 42.97659140099984, 32.49763797099979, 29.160111764999897, 38.37038990099984, 33.60982152599979, 29.058255615999883, 33.45645696299971, 32.59985005499982, 36.145878458999846, 41.80929626099987, 27.89090080599999, 33.60982152599979, 44.036672538999824, 37.36101254399978, 26.82897935099993, 40.64581581099981, 27.83990148099997, 26.727360881000095, 34.87595524099993, 38.47319559899972, 37.05268740799977, 33.71241531599992, 27.78890215599995, 32.59985005499982, 39.482335360999855, 28.854281476999972, 31.53860684999995, 32.49763797099979, 38.4216606089999, 36.248446866999984, 37.15537446099984, 32.49763797099979, 39.327816552999934, 27.738164365999978, 39.53392982599985, 30.476863599000012, 37.309537028999785, 30.170677071, 29.414883057999873, 35.78675719499995, 25.512940580999953, 35.94047797099995, 41.86100967599998, 30.170677071, 26.981537670999955, 25.563820955999972, 38.26731992099985, 31.64070028900005, 28.956137625999872, 29.058255615999883, 31.334157520999952, 48.74573768599987, 29.10905276999995, 43.07987206799987, 30.017583806999937, 23.18597968099982, 29.313026908999973, 27.83990148099997, 30.425745128999893, 43.131645152999795, 25.563820955999972, 32.59985005499982, 46.5189842609999, 34.92704824499981, 33.55878769199978, 27.636427250999986, 30.11955860099988, 38.3188549109999, 46.415081240999825, 31.28297957599989, 34.87595524099993, 32.44640055099978, 28.75242532799996, 26.727360881000095, 32.5488753909998, 36.950000354999815, 27.687165040999957, 33.661118420999856, 30.068702276999943, 25.61444040599997, 38.26731992099985, 35.889325602999975, 36.04331005100005, 28.803484322999793, 24.29863923099981, 33.661118420999856, 41.70613462799986, 34.7732425009998, 35.94047797099995, 39.636854168999776, 34.722149496999805, 25.41144075599982, 40.59416187099987, 36.094462419000024, 22.119828041999995, 39.585259703999895, 33.661118420999856, 26.778039500999967, 39.07037340199986, 39.43074089599986, 37.25806151399979, 35.991894011, 28.956137625999872, 40.54277282299984, 37.206849975999944, 35.58135670699994, 27.78890215599995, 30.170677071, 30.068702276999943, 34.92704824499981, 38.26731992099985, 21.917541039999946, 25.66532078099999, 30.11955860099988, 29.10905276999995, 35.94047797099995, 41.602972994999845, 37.10389894599973, 30.323770334999836, 35.889325602999975, 24.29863923099981, 42.11904635699989, 38.3188549109999, 24.29863923099981, 38.11324351499968, 26.727360881000095, 34.67079312699991, 29.313026908999973, 38.11324351499968, 23.18597968099982, 26.879919201000007, 38.915854593999825, 25.360560381000028, 39.53392982599985, 51.28107041699991, 22.069386295999948, 32.855774398999756, 26.676421031000018, 34.5169873829999, 31.43625095999994, 30.170677071, 41.80929626099987, 34.67079312699991, 44.08823929099981, 24.450841310999976, 41.75758284599988, 31.385335466000015, 35.889325602999975, 32.59985005499982, 44.08823929099981, 24.095876870999973, 41.75758284599988, 23.135218255999803, 30.170677071, 41.75758284599988, 26.625481180999827, 38.26731992099985, 31.180886137000016, 38.4216606089999, 34.97840461499982, 38.164514222999856, 39.43074089599986, 22.01868454099997, 53.3994215859999, 30.170677071, 28.956137625999872, 43.02836448599987, 39.482335360999855, 32.49763797099979, 33.661118420999856, 32.5488753909998, 36.950000354999815, 41.65442121299998, 34.722149496999805, 30.11955860099988, 44.191904410999996, 19.843212656999867, 19.641140835999863, 41.86100967599998, 32.44640055099978, 38.3188549109999, 33.661118420999856, 35.94047797099995, 32.0885268789998, 39.585259703999895, 35.991894011, 49.857295864999855, 43.98483997899996, 37.10389894599973, 31.385335466000015, 38.26731992099985, 28.956137625999872, 42.015884723999875, 29.10905276999995, 36.29986290700003, 28.854281476999972, 41.70613462799986, 34.7732425009998, 37.05268740799977, 41.70613462799986, 37.15537446099984, 30.527982068999904, 36.950000354999815, 37.25806151399979, 24.65386429099999, 26.574802560999956, 17.314298885999847, 34.56834375299991, 41.80929626099987, 33.2002355489999, 22.22123155199995, 34.722149496999805, 27.78890215599995, 31.64070028900005, 35.889325602999975, 32.5488753909998, 39.07037340199986, 32.44640055099978, 40.49111888300001, 27.184774610999966, 27.78890215599995, 30.11955860099988, 28.043637246000003, 48.53798912399998, 40.64581581099981, 44.08823929099981, 44.036672538999824, 32.5488753909998, 24.603043390999915, 31.232064081999965, 20.703536955000004, 35.83790956300004, 31.385335466000015, 36.950000354999815, 28.90534047199992, 34.82459887099992, 31.28297957599989, 41.70613462799986, 26.778039500999967, 32.49763797099979, 39.585259703999895, 33.71241531599992, 31.98631479499977, 38.26731992099985, 27.78890215599995, 37.05268740799977, 37.15537446099984, 38.26731992099985, 38.3188549109999, 40.13033597899994, 26.625481180999827, 33.50749079699983, 40.64581581099981, 32.34418846699975, 33.661118420999856, 39.482335360999855, 35.683925114999965, 30.068702276999943, 30.221795541000006, 26.625481180999827, 37.10389894599973, 46.415081240999825, 30.11955860099988, 32.29321380299973, 37.10389894599973, 31.232064081999965, 30.11955860099988, 46.36339614899987, 34.722149496999805, 31.232064081999965, 45.35544433599989, 37.05268740799977, 24.24807895099991, 44.08823929099981, 37.10389894599973, 28.854281476999972, 41.65442121299998, 28.956137625999872, 33.55878769199978, 41.75758284599988, 34.87595524099993, 38.26731992099985, 41.29322289899994, 37.05268740799977, 34.87595524099993, 32.49763797099979, 28.90534047199992, 32.39542588699976, 38.11324351499968, 31.027614752999966, 27.738164365999978, 39.327816552999934, 27.738164365999978, 24.603043390999915, 37.206849975999944, 42.9248183159998, 32.753299558999856, 39.482335360999855, 33.55878769199978, 33.60982152599979, 34.67079312699991, 36.950000354999815, 32.855774398999756, 26.727360881000095, 27.738164365999978, 26.82897935099993, 40.43972983499975, 35.94047797099995, 43.8296081069999, 34.722149496999805, 26.625481180999827, 22.373076807999837, 26.574802560999956, 26.422244241000044, 42.71825698199984, 36.48751265099975, 30.11955860099988, 40.54277282299984, 39.379411017999814, 23.08471714599989, 31.64070028900005, 27.738164365999978, 32.13976429899981, 48.64186340499998, 29.966727482999886, 38.21604921299979, 46.415081240999825, 18.427455624999766, 33.50749079699983, 34.7732425009998, 27.738164365999978, 36.950000354999815, 46.155856526999855, 34.87595524099993, 32.19073896299972, 39.276486674999774, 37.05268740799977, 23.033955720999984, 33.661118420999856, 21.917541039999946, 31.232064081999965, 43.98483997899996, 26.625481180999827, 31.12997064299998, 47.68252418600002, 33.55878769199978, 33.55878769199978, 41.70613462799986, 27.330954371000075, 19.641140835999863, 39.22489220999978, 27.738164365999978, 35.78675719499995, 33.40516006799987, 39.379411017999814, 28.854281476999972, 32.34418846699975, 32.39542588699976, 27.687165040999957, 40.38807589499993, 27.330954371000075, 35.889325602999975, 42.71825698199984, 40.43972983499975, 26.422244241000044, 36.04331005100005, 31.180886137000016, 26.269685920999905, 35.83790956300004, 34.722149496999805, 30.11955860099988, 42.8733107339998, 39.22489220999978, 30.068702276999943, 37.00121189299978, 30.068702276999943, 31.53860684999995, 44.08823929099981, 29.864490542999874, 25.41144075599982, 42.9248183159998, 34.05583351699988, 42.82153764899999, 35.83790956300004, 26.574802560999956, 32.65108747499971, 44.036672538999824, 28.75242532799996, 35.889325602999975, 30.11955860099988, 28.956137625999872, 30.170677071, 42.71825698199984, 34.26073226499989, 31.742793727999924, 28.854281476999972, 30.11955860099988, 31.027614752999966, 35.83790956300004, 32.19073896299972, 30.87434336900003, 33.50749079699983, 17.264093819999857, 30.323770334999836, 30.068702276999943, 21.816397538999922, 33.45645696299971, 43.8296081069999, 37.10389894599973, 40.38807589499993, 36.950000354999815, 29.91560901299988, 36.197294498999895, 21.86683928499997, 18.427455624999766, 42.9248183159998, 31.232064081999965, 24.24807895099991, 32.29321380299973, 33.661118420999856, 20.80456181099987, 43.933273226999745, 34.67079312699991, 30.017583806999937, 42.66648389699981, 29.864490542999874, 34.15828289099977, 34.6197001229998, 28.75242532799996, 31.12997064299998, 39.327816552999934, 35.735341155000015, 19.338422202999936, 35.683925114999965, 30.017583806999937, 32.39542588699976, 39.327816552999934, 31.28297957599989, 38.164514222999856, 37.00121189299978, 35.683925114999965, 32.34418846699975, 27.738164365999978, 27.636427250999986, 35.78675719499995, 43.98483997899996, 49.7011728089999, 26.422244241000044, 38.21604921299979, 31.027614752999966, 28.854281476999972, 30.11955860099988, 30.068702276999943, 20.703536955000004, 39.482335360999855, 31.078792697999916, 28.90534047199992, 41.499546164999856, 31.078792697999916, 31.935077374999764, 31.078792697999916, 22.98345461099973, 20.703536955000004, 41.65442121299998, 25.360560381000028, 34.5169873829999, 29.558304014999862, 22.98345461099973, 30.221795541000006, 42.71825698199984, 35.889325602999975, 32.34418846699975, 40.49111888300001, 28.803484322999793, 26.676421031000018, 38.164514222999856, 34.6197001229998, 34.97840461499982, 35.63277274699999, 39.276486674999774, 38.06170852499986, 43.98483997899996, 33.661118420999856, 41.96417130899988, 40.43972983499975, 35.735341155000015, 38.4216606089999, 35.78675719499995, 27.636427250999986, 35.735341155000015, 34.56834375299991, 25.309940930999915, 23.89285389099996, 35.991894011, 37.05268740799977, 29.007196620999935, 21.86683928499997, 31.180886137000016, 43.8296081069999, 42.30486881099978, 33.45645696299971, 40.43972983499975, 33.50749079699983, 25.309940930999915, 34.82459887099992, 36.950000354999815, 42.71825698199984, 42.66648389699981, 26.320625770999868, 20.65315437899983, 33.45645696299971, 22.679406690999826, 37.00121189299978, 41.602972994999845, 32.29321380299973, 32.24197638299984, 42.61497631499981, 32.34418846699975, 29.91560901299988, 38.21604921299979, 33.2002355489999, 28.75242532799996, 43.88144066699988, 28.75242532799996, 30.017583806999937, 40.33642195499988, 33.45645696299971, 27.534428600999945, 44.88921435999987, 35.735341155000015, 25.25906055600001, 36.89852483999982, 26.11712760099988, 27.636427250999986, 52.13177039499999, 39.07037340199986, 32.34418846699975, 41.551259579999964, 32.24197638299984, 26.422244241000044, 34.46589437899979, 33.251532443999736, 38.01017353499981, 33.251532443999736, 25.005180531000065, 42.77003006699988, 40.33642195499988, 23.89285389099996, 33.45645696299971, 35.63277274699999, 25.157560730999876, 22.98345461099973], \"power_mean\": 33.57311828426281, \"energy_millijoules\": 7536.188565563801, \"energy_joules\": 7.5361885655638, \"coremark_score\": 1113.79908, \"coremarks_per_mhz\": 3.7126636, \"ulpmark_cm_score\": 33.17326760404606}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [985.2209314339999, 979.3514032740002, 995.703629025, 975.9555590389999, 988.716435982, 994.59029314, 980.5653467740001, 971.345552072, 990.993586032, 981.8792272679999, 972.311061323, 989.930655553, 986.3382392719999, 978.133763061, 986.489193928, 978.183750726, 974.7420498959999, 991.094610888, 986.4387895479998], \"power_mean\": 983.5781093807894, \"energy_millijoules\": 4917.890546903947, \"energy_joules\": 4.917890546903947}}, \"576000\": {\"active\": {\"elapsed_sec\": 116.905874227, \"elapsed_ns\": 116905874227, \"power_samples\": [53.50403869599995, 51.92330996299984, 51.76683066700002, 54.19707201299968, 53.03406644799986, 72.763280237, 55.41631841099991, 41.44809794699995, 63.403325354999765, 48.53798912399998, 47.26723647499989, 69.38072554699977, 48.53798912399998, 52.02754017899997, 55.625491490999934, 56.47440910099988, 45.35544433599989, 56.317216740999925, 49.49291962299992, 53.08637500300006, 52.92971758700003, 51.76683066700002, 46.155856526999855, 56.5793834509999, 51.92330996299984, 56.94598618099997, 55.25930417100005, 43.72620879499982, 40.233378966999794, 50.70805531799988, 46.1041714349999, 55.625491490999934, 56.47440910099988, 48.329973532999816, 49.75330293899981, 48.38204418799978, 40.07868203899989, 52.92971758700003, 55.363890710999726, 48.38204418799978, 48.797808340999836, 50.70805531799988, 54.092604506999805, 57.74244849099989, 55.363890710999726, 49.44105682700001, 61.02101369599984, 56.422191090999945, 43.778041354999914, 49.857295864999855, 40.285032906999845, 43.51914436299978, 58.74796493099973, 49.388926696999874, 52.98175789300001, 66.94473684899992, 56.47440910099988, 47.16321450499993, 48.43411484299986, 44.837322324999946, 54.14470398299977, 54.24944004299971, 50.55175414199982, 56.47440910099988, 64.61884466899994, 48.27816990699989, 48.329973532999816, 50.70805531799988, 57.47998471099993, 35.37595621899993, 58.80030128099986, 56.526896276, 50.760244922999846, 62.134868944999766, 55.20687647099987, 49.33679656699985, 57.42770753099978, 44.78569640299986, 49.33679656699985, 54.14470398299977, 41.24150948399995, 50.499564536999856, 61.02101369599984, 52.92971758700003, 50.6039437469999, 65.78179075899982, 56.21251155599987, 42.51143014499985, 58.5904163309998, 47.111470242999985, 51.76683066700002, 55.20687647099987, 47.007448272999795, 43.51914436299978, 60.120974090999766, 52.825100476999864, 54.092604506999805, 54.19707201299968, 49.44105682700001, 49.44105682700001, 59.85818625099989, 48.17402859699985, 49.23280364099992, 55.25930417100005, 43.72620879499982, 42.51143014499985, 57.74244849099989, 51.662332506999974, 50.6039437469999, 70.4373880569998, 47.05945925799995, 48.4859184689999, 58.852907405999645, 53.93576897099979, 52.877409031999946, 61.07373877099997, 49.44105682700001, 37.855832846999874, 61.12619346099984, 53.03406644799986, 51.76683066700002, 60.91583393099984, 49.33679656699985, 51.76683066700002, 65.729099195, 44.837322324999946, 49.388926696999874, 49.44105682700001, 60.968288620999715, 42.51143014499985, 58.69535880599972, 52.92971758700003, 52.720751615999916, 58.74796493099973, 51.87106088299993, 56.36970391600005, 61.07373877099997, 48.38204418799978, 55.41631841099991, 50.70805531799988, 57.42770753099978, 61.38954845099977, 66.8919861149999, 46.00026841499994, 49.54504975299983, 54.092604506999805, 54.04023647699978, 45.044624351999914, 55.20687647099987, 51.76683066700002, 46.25975954699982, 54.19707201299968, 51.714581586999884, 49.49291962299992, 61.12619346099984, 42.51143014499985, 41.912457894, 49.54504975299983, 57.532531361, 47.26723647499989, 55.20687647099987, 48.329973532999816, 45.585455588999935, 55.468477250999854, 52.92971758700003, 46.415081240999825, 49.23280364099992, 44.73380436799994, 48.38204418799978, 59.85818625099989, 49.44105682700001, 48.27816990699989, 56.422191090999945, 38.86426012899983, 43.933273226999745, 49.388926696999874, 40.285032906999845, 57.585078011000064, 57.68990184100005, 40.027028098999835, 56.264998730999764, 48.27816990699989, 37.855832846999874, 49.44105682700001, 45.94858332299998, 56.422191090999945, 54.301539518999675, 56.422191090999945, 43.570976922999876, 69.16843090899977, 41.18979606899984, 51.662332506999974, 59.85818625099989, 56.317216740999925, 54.092604506999805, 58.642752680999706, 51.662332506999974, 48.27816990699989, 58.69535880599972, 55.311463011, 42.35637639299978, 58.74796493099973, 55.15444877099992, 40.07868203899989, 43.622809482999855, 48.22609925199981, 47.111470242999985, 61.12619346099984, 63.403325354999765, 50.55175414199982, 50.44764257099996, 57.63735519099998, 52.773060171, 62.029570145999855, 37.70149215899983, 55.15444877099992, 61.02101369599984, 45.792995210999834, 55.102289930999746, 63.29763691499977, 59.06306213099981, 56.47440910099988, 55.15444877099992, 51.76683066700002, 38.915854593999825, 51.714581586999884, 52.773060171, 56.264998730999764, 64.40777249099972, 53.8313014649998, 48.27816990699989, 49.388926696999874, 50.6039437469999, 39.975639050999916, 59.85818625099989, 52.877409031999946, 49.44105682700001, 64.51330857999972, 44.6819123329999, 43.67437623499984, 56.422191090999945, 49.49291962299992, 54.092604506999805, 63.13964624699986, 44.73380436799994, 40.18172502699997, 67.94870879499979, 45.792995210999834, 49.49291962299992, 56.264998730999764, 57.37516088099994, 39.975639050999916, 59.75312513099982, 38.915854593999825, 57.532531361, 53.93576897099979, 45.792995210999834, 63.033957806999865, 58.53781020599979, 49.44105682700001, 54.94527569099989, 57.47998471099993, 52.773060171, 54.301539518999675, 60.968288620999715, 43.570976922999876, 47.31898073699983, 63.19221947099993, 49.49291962299992, 64.46040488499978, 58.5904163309998, 50.39545296599999, 48.43411484299986, 52.720751615999916, 48.17402859699985, 49.7011728089999, 55.102289930999746, 47.05945925799995, 50.6039437469999, 51.76683066700002, 47.111470242999985, 49.90915866099988, 52.825100476999864, 50.499564536999856, 56.47440910099988, 49.54504975299983, 51.714581586999884, 48.01835068999992, 51.558102290999955, 49.33679656699985, 48.64186340499998, 43.4675776109998, 48.17402859699985, 51.8188118029999, 63.19221947099993, 49.54504975299983, 57.37516088099994, 54.14470398299977, 51.662332506999974, 46.155856526999855, 36.53872418899971, 49.28493377099983, 55.311463011, 57.42770753099978, 50.6039437469999, 60.968288620999715, 56.317216740999925, 32.99557409099975, 42.14981505899982, 49.388926696999874, 43.4675776109998, 60.86310885599994, 55.15444877099992, 44.57839437599989, 59.75312513099982, 57.585078011000064, 52.825100476999864, 60.968288620999715, 45.844680302999905, 46.00026841499994, 56.264998730999764, 56.264998730999764, 44.837322324999946, 62.08235489099968, 47.16321450499993, 42.35637639299978, 63.403325354999765, 54.092604506999805, 45.94858332299998, 67.89589889099977, 43.4675776109998, 49.44105682700001, 56.47440910099988, 57.42770753099978, 58.69535880599972, 58.5904163309998, 50.499564536999856, 48.12222497099981, 53.622097898999755, 49.33679656699985, 50.343530999999984, 63.2450636909997, 49.388926696999874, 64.51330857999972, 59.80552065099971, 56.317216740999925, 42.30486881099978, 60.968288620999715, 45.637407098999915, 55.15444877099992, 64.46040488499978, 56.36970391600005, 47.007448272999795, 60.968288620999715, 39.923985110999865, 57.42770753099978, 63.29763691499977, 55.20687647099987, 55.15444877099992, 56.36970391600005, 49.54504975299983, 53.93576897099979, 50.55175414199982, 56.36970391600005, 58.5904163309998, 62.134868944999766, 45.844680302999905, 46.95570401099985, 60.91583393099984, 56.317216740999925, 56.317216740999925, 56.21251155599987, 51.61035137099998, 50.6039437469999, 58.485473855999885, 55.15444877099992, 46.90369302599993, 58.5904163309998, 56.264998730999764, 61.17891853599974, 57.42770753099978, 48.07015431599996, 58.5904163309998, 58.642752680999706, 55.04986223100002, 47.007448272999795, 55.04986223100002, 53.93576897099979, 59.0104560059998, 64.354868796, 57.47998471099993, 50.70805531799988, 62.08235489099968, 42.408149477999814, 50.44764257099996, 50.39545296599999, 49.28493377099983, 42.66648389699981, 42.35637639299978, 48.12222497099981, 50.812166888999855, 59.80552065099971, 48.17402859699985, 56.264998730999764, 50.44764257099996, 49.28493377099983, 54.19707201299968, 50.760244922999846, 48.01835068999992, 57.585078011000064, 52.66871131000005, 50.499564536999856, 56.21251155599987, 45.792995210999834, 39.820942122999895, 52.13177039499999, 44.57839437599989, 49.28493377099983, 54.04023647699978, 56.317216740999925, 53.98786844699964, 56.21251155599987, 64.51330857999972, 48.22609925199981, 49.7011728089999, 49.44105682700001, 35.529940667000005, 62.134868944999766, 50.44764257099996, 56.264998730999764, 58.5904163309998, 56.160293545999934, 41.03518621799992, 57.270337050999956, 42.253095725999856, 55.15444877099992, 48.01835068999992, 50.44764257099996, 57.47998471099993, 57.532531361, 53.08637500300006, 50.499564536999856, 62.08235489099968, 55.15444877099992, 45.792995210999834, 52.877409031999946, 45.792995210999834, 43.26051317899976, 63.29763691499977, 58.53781020599979, 56.317216740999925, 67.842816771, 54.04023647699978, 44.73380436799994, 65.35890021699981, 46.851948763999985, 50.44764257099996, 58.642752680999706, 58.53781020599979, 53.88340094099988, 62.134868944999766, 56.317216740999925, 53.93576897099979, 61.87148660199966, 42.30486881099978], \"power_mean\": 52.55950319817836, \"energy_millijoules\": 6144.514670319843, \"energy_joules\": 6.144514670319843, \"coremark_score\": 2138.598277, \"coremarks_per_mhz\": 3.712844230902778, \"ulpmark_cm_score\": 40.68669592532466}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [978.8019092010002, 990.63960948, 988.2119799640001, 989.375282294, 992.7677408549999, 995.0941082250001, 978.8019092010002, 979.8651362240001, 982.2412344959998, 985.885375304, 988.1111923980001, 981.078110286, 985.885375304, 985.7344206479999, 989.173469872, 983.5049291759999, 977.784618447, 977.7346307820001, 978.851956536], \"power_mean\": 984.712788878579, \"energy_millijoules\": 4923.563944392895, \"energy_joules\": 4.923563944392895}}, \"768000\": {\"active\": {\"elapsed_sec\": 87.677844602, \"elapsed_ns\": 87677844602, \"power_samples\": [65.46482655700004, 63.033957806999865, 61.92427134699972, 69.06241985099985, 73.60676941300005, 66.6274167119999, 76.04248481099978, 63.13964624699986, 68.903267003, 80.58612211399975, 54.840689150999765, 67.68384262699976, 65.46482655700004, 68.95640879299992, 54.99770339100007, 63.13964624699986, 65.30620865299977, 66.57439406699984, 70.11899894799978, 58.485473855999885, 57.32288370100002, 62.029570145999855, 70.11899894799978, 66.46862068799976, 75.98898597599998, 63.2450636909997, 65.51751812099985, 71.22832836299983, 61.97705609199977, 69.11528911899984, 70.06579768299991, 63.29763691499977, 61.97705609199977, 75.98898597599998, 65.41186338699993, 66.68016744599993, 79.31617743899972, 77.15163530100006, 63.033957806999865, 61.92427134699972, 60.86310885599994, 67.94870879499979, 69.00927806099992, 67.73692474699999, 67.63103272299998, 69.00927806099992, 72.49722603599992, 58.485473855999885, 70.06579768299991, 53.77893343499977, 65.14759074899973, 70.171927386, 71.22832836299983, 59.33261057099969, 68.903267003, 60.75792909099994, 55.89812683599996, 54.73583375100009, 57.270337050999956, 69.06241985099985, 72.5505462509999, 64.30223640199995, 60.81065416600006, 72.5505462509999, 62.981384582999794, 56.160293545999934, 64.30223640199995, 59.59539841099979, 59.59539841099979, 79.47693395099975, 52.720751615999916, 62.08235489099968, 66.73319009099976, 75.98898597599998, 65.41186338699993, 71.2815891030001, 65.30620865299977, 52.720751615999916, 74.77317133899999, 52.66871131000005, 58.5904163309998, 65.46482655700004, 67.68384262699976, 70.06579768299991, 70.171927386, 54.94527569099989, 59.64806401099975, 67.73692474699999, 62.981384582999794, 51.714581586999884, 68.903267003, 71.33457671099984, 56.317216740999925, 73.50001003299997, 58.432867730999874, 67.73692474699999, 65.30620865299977, 50.291341394999904, 63.403325354999765, 60.652749325999935, 50.18722982399993, 63.2450636909997, 60.75792909099994, 53.72656540499975, 66.52137142199979, 71.22832836299983, 65.35890021699981, 60.068578570999875, 61.87148660199966, 49.07668058499985, 70.38445961900004, 70.27805708899984, 67.79000686699999, 72.28449204999981, 63.13964624699986, 63.13964624699986, 58.852907405999645, 60.81065416600006, 46.79993777899995, 65.46482655700004, 67.68384262699976, 56.10780637100004, 66.57439406699984, 73.44690408500003, 59.49033729099972, 56.47440910099988, 53.674465928999666, 61.87148660199966, 77.04479333899997, 73.50001003299997, 67.52486848299998, 73.44690408500003, 72.33753882799977, 53.8313014649998, 62.240438434999874, 49.18094084500001, 58.485473855999885, 65.30620865299977, 71.06881927500001, 62.9285403629998, 54.99770339100007, 71.17506762299979, 59.49033729099972, 65.62317285499978, 61.7134030579997, 58.38026160599986, 65.30620865299977, 64.0379892279999, 68.69097236499977, 70.01259641799982, 60.70520401599981, 75.77553934199989, 61.555319513999734, 59.33261057099969, 53.674465928999666, 69.85326544999987, 54.78826145100004, 45.585455588999935, 75.66854167200006, 56.21251155599987, 60.75792909099994, 79.209098187, 65.20028231299978, 56.160293545999934, 67.57795060299998, 64.24933270699978, 59.49033729099972, 67.68384262699976, 68.69097236499977, 72.28449204999981, 65.35890021699981, 58.38026160599986, 67.73692474699999, 73.50001003299997, 60.54729917599991, 57.42770753099978, 73.44690408500003, 64.19642901199984, 57.16551322099997, 75.98898597599998, 66.41559804299993, 62.8756961429998, 78.10036341200009, 68.74411415499992, 58.432867730999874, 60.75792909099994, 66.41559804299993, 59.49033729099972, 70.01259641799982, 56.955596091000075, 60.70520401599981, 79.42353195899989, 54.94527569099989, 60.652749325999935, 64.0379892279999, 66.46862068799976, 57.21779040099989, 63.033957806999865, 68.95640879299992, 58.27531913099995, 74.7197319789999, 59.38500609099981, 51.40162299499991, 79.42353195899989, 50.18722982399993, 57.21779040099989, 76.8843930669999, 55.89812683599996, 66.41559804299993, 68.903267003, 64.19642901199984, 52.564094199999886, 61.92427134699972, 66.46862068799976, 58.485473855999885, 63.033957806999865, 65.30620865299977, 64.24933270699978, 70.01259641799982, 64.09089292299984, 63.13964624699986, 72.49722603599992, 52.66871131000005, 58.642752680999706, 65.51751812099985, 60.75792909099994, 66.41559804299993, 68.903267003, 69.69393448199992, 67.68384262699976, 67.68384262699976, 62.981384582999794, 68.1607650589998, 77.04479333899997, 59.64806401099975, 59.49033729099972, 72.28449204999981, 67.57795060299998, 71.2815891030001, 71.33457671099984, 63.08680202699986, 63.403325354999765, 76.25593144499987, 59.437671690999764, 68.85012521299984, 66.52137142199979, 69.85326544999987, 70.11899894799978, 71.12208001499982, 52.45974533900005, 59.85818625099989, 62.664861254999664, 48.92055752899989, 65.25324548299989, 79.15542092699991, 58.32792525599973, 65.62317285499978, 53.622097898999755, 59.80552065099971, 60.91583393099984, 59.437671690999764, 64.19642901199984, 70.962570927, 68.903267003, 58.1703766559998, 50.18722982399993, 72.28449204999981, 70.85604944699992, 72.44417925799996, 54.78826145100004, 62.8756961429998, 79.31617743899972, 74.6131273069999, 53.56972986899984, 71.01555853499997, 54.840689150999765, 68.69097236499977, 71.22832836299983, 55.950614011000084, 61.87148660199966, 72.23117183500005, 73.34014470499994, 53.56972986899984, 67.63103272299998, 64.24933270699978, 67.52486848299998, 65.30620865299977, 61.76618780299975, 53.51763039299988, 73.34014470499994, 59.437671690999764, 56.00310118599998, 68.79725594499985, 53.77893343499977, 65.14759074899973, 65.41186338699993, 65.35890021699981, 67.57795060299998, 68.69097236499977, 65.20028231299978, 63.033957806999865, 71.06881927500001, 64.19642901199984, 50.08285061399988, 69.90646671499997, 54.73583375100009, 60.60002425099981, 73.287038757, 59.54273281099984, 63.985356833999845, 77.99312784200004, 64.09089292299984, 58.1703766559998, 57.11296657100013, 49.978739042999905, 59.437671690999764, 62.8756961429998, 65.09462757899985, 67.52486848299998, 73.287038757, 61.66088900399984, 67.79000686699999, 69.85326544999987, 52.40743678399997, 68.69097236499977, 72.17785162000007, 60.494844485999806, 65.30620865299977, 74.55968794699982, 49.024817788999826, 59.49033729099972, 77.99312784200004, 66.30982466399985, 60.494844485999806, 71.06881927500001, 62.82312291899996, 58.1703766559998, 73.5533897229999, 54.89284799099994, 64.24933270699978, 75.66854167200006, 62.77027869899973, 54.73583375100009, 68.74411415499992, 58.38026160599986, 59.54273281099984, 74.55968794699982, 64.0379892279999, 66.30982466399985], \"power_mean\": 64.43062308512022, \"energy_millijoules\": 5649.1381584672035, \"energy_joules\": 5.649138158467204, \"coremark_score\": 2851.570074, \"coremarks_per_mhz\": 3.7129818671875, \"ulpmark_cm_score\": 44.254538123711455}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [987.9598815019999, 979.8150294140002, 984.86903482, 979.7150727520002, 990.083583216, 989.324958888, 987.909358172, 986.7464120819999, 976.0730707199998, 996.0031151200001, 973.896825408, 987.1998104099999, 973.7972069279998, 983.05313568, 986.7464120819999, 980.9278686939999, 984.265931012, 988.8704918399999, 984.517396384], \"power_mean\": 984.3039260591579, \"energy_millijoules\": 4921.519630295789, \"energy_joules\": 4.921519630295789}}, \"1017600\": {\"active\": {\"elapsed_sec\": 75.318924502, \"elapsed_ns\": 75318924502, \"power_samples\": [75.61531718999993, 65.04166440899996, 72.12480484199989, 71.2815891030001, 72.23117183500005, 87.511381035, 66.41559804299993, 72.23117183500005, 75.61531718999993, 55.7934216509999, 72.01816441199992, 82.53867540299996, 69.74713574699979, 67.47205857899996, 74.45308327499981, 65.09462757899985, 66.30982466399985, 72.01816441199992, 70.80306183899995, 72.12480484199989, 76.83083475699993, 67.41897645899996, 70.962570927, 73.44690408500003, 72.0714846269999, 75.61531718999993, 76.61715083299976, 76.77755110500004, 58.22271300599971, 70.80306183899995, 66.20377937399996, 76.61715083299976, 76.67043448499987, 67.04821826699992, 83.80840406399977, 78.83418317099984, 70.85604944699992, 67.36589433899996, 86.13299023399975, 74.45308327499981, 64.93600967499981, 84.86302428299962, 75.5083195200001, 61.50280545999965, 83.64693448799983, 65.04166440899996, 70.01259641799982, 74.29303924299995, 59.17488385099966, 74.7197319789999, 70.80306183899995, 72.0714846269999, 72.23117183500005, 82.48481952300006, 61.66088900399984, 75.5618183549999, 71.96511763399997, 75.40159620299994, 72.44417925799996, 74.39964391499996, 56.955596091000075, 69.64100604399971, 71.01555853499997, 68.4789502489997, 68.638103097, 82.59253128299986, 67.47205857899996, 74.8263366509999, 74.50624858699996, 65.14759074899973, 69.80033701199989, 87.29528331899985, 82.53867540299996, 78.04674562699995, 79.04834167499973, 69.74713574699979, 66.68016744599993, 81.37650096300001, 61.66088900399984, 83.64693448799983, 80.26425284999993, 71.91179741899998, 72.28449204999981, 66.30982466399985, 68.53181951699992, 67.73692474699999, 62.981384582999794, 67.52486848299998, 85.02467197899989, 80.26425284999993, 69.69393448199992, 74.87977601099976, 68.58496130699984, 64.98897284499992, 74.50624858699996, 68.4789502489997, 68.53181951699992, 82.48481952300006, 75.61531718999993, 62.8756961429998, 71.85875064100003, 66.15102863999971, 65.04166440899996, 73.23365906699985, 76.56359252300001, 69.64100604399971, 71.91179741899998, 89.40738461599983, 73.23365906699985, 82.53867540299996, 60.28421457099978, 65.04166440899996, 79.15542092699991, 79.04834167499973, 70.962570927, 82.37738394700011, 67.26000231499995, 70.962570927, 77.93978501999993, 69.64100604399971, 68.638103097, 77.88616723500002, 66.25680201899979, 68.4789502489997, 78.99466441499987, 85.91740721199983, 72.12480484199989, 76.83083475699993, 61.555319513999734, 70.85604944699992, 76.8843930669999, 75.66854167200006, 70.80306183899995, 82.53867540299996, 72.0714846269999, 71.01555853499997, 78.99466441499987, 82.59253128299986, 75.40159620299994, 80.15677937999988, 73.18027937700015, 79.10201893499959, 79.04834167499973, 61.7134030579997, 63.985356833999845, 74.39964391499996, 56.85077226099986, 67.26000231499995, 72.0714846269999, 60.44211941099991, 66.20377937399996, 79.04834167499973, 67.26000231499995, 70.90931018699973, 83.59329562199957, 71.91179741899998, 63.87954944399996, 75.5618183549999, 70.80306183899995, 66.25680201899979, 68.4789502489997, 73.23365906699985, 75.40159620299994, 81.37650096300001, 68.58496130699984, 68.638103097, 76.56359252300001, 70.85604944699992, 69.69393448199992, 80.2105161149999, 63.72138096099991, 67.36589433899996, 83.75476519799997, 69.69393448199992, 74.39964391499996, 75.40159620299994, 61.50280545999965, 78.99466441499987, 68.53181951699992, 63.826917049999906, 75.61531718999993, 77.61862823600006, 71.91179741899998, 68.79725594499985, 81.269184032, 65.04166440899996, 65.25324548299989, 83.53938026699973, 66.25680201899979, 75.61531718999993, 78.8875851629997, 71.01555853499997, 79.31617743899972, 76.72399279500007, 70.80306183899995, 76.61715083299976, 71.96511763399997, 69.69393448199992, 72.39085904299998, 81.43029736799997, 73.12717342899998, 73.34014470499994, 81.269184032, 71.96511763399997, 72.01816441199992, 80.2105161149999, 67.31308443499995, 64.14379661799978, 63.77401335499974, 58.01282805599965, 73.5533897229999, 78.83418317099984, 69.80033701199989, 76.72399279500007, 75.5083195200001, 61.555319513999734, 70.171927386, 53.30842682699972, 69.69393448199992, 75.66854167200006, 67.36589433899996, 70.80306183899995, 83.53938026699973, 87.02536922699994, 65.09462757899985, 74.87977601099976, 78.94126242299978, 74.13299521099987, 70.85604944699992, 78.8875851629997, 63.985356833999845, 83.48574140099993, 89.35317169099983, 69.58780477899984, 68.31979740099985, 65.14759074899973, 75.61531718999993, 69.69393448199992, 71.96511763399997, 74.39964391499996, 68.42580845899977, 77.779206628, 66.09800599499988, 83.48574140099993, 68.53181951699992, 70.85604944699992, 88.19117537099976, 80.2105161149999, 70.5373044029999, 82.48481952300006, 73.18027937700015, 78.99466441499987, 82.53867540299996, 73.07379373900005, 67.31308443499995, 81.21538762699981, 68.4789502489997, 67.20719241099994, 70.85604944699992, 75.45509503799997, 59.01715713099986, 67.36589433899996, 78.99466441499987, 76.67043448499987, 83.27035646999991, 60.28421457099978, 63.72138096099991, 79.94238358599989, 84.80904945300006, 75.61531718999993, 73.02068779099989, 83.02254977099994, 63.87954944399996, 83.48574140099993, 75.45509503799997, 63.87954944399996, 72.86082246299986, 64.88331811099977, 75.34837172100003, 78.99466441499987, 76.51030887099989, 66.25680201899979, 82.43123982700001, 72.0714846269999, 71.91179741899998, 75.29487288599978, 62.612017034999894, 61.45002071499982, 88.24532882099982, 76.56359252300001, 68.31979740099985, 78.94126242299978, 68.37293919099977, 73.12717342899998, 81.32270455800005, 70.74980109899991, 80.2105161149999, 75.34837172100003, 70.6435527509999], \"power_mean\": 72.77858192356177, \"energy_millijoules\": 5481.604517263371, \"energy_joules\": 5.481604517263372, \"coremark_score\": 3319.524113, \"coremarks_per_mhz\": 3.262110960102201, \"ulpmark_cm_score\": 45.60708442439946}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [987.7077830399999, 994.4845874250001, 982.902537848, 974.9103619199999, 999.393351684, 987.758047276, 986.5450742399998, 987.6572597100001, 982.040846592, 990.740373672, 994.636967625, 987.758047276, 985.3823654399998, 994.687848, 981.84020112, 986.494610385, 997.822897277, 980.9278686939999, 985.4829157159999], \"power_mean\": 987.85126026, \"energy_millijoules\": 4939.2563013, \"energy_joules\": 4.9392563012999995}}, \"1248000\": {\"active\": {\"elapsed_sec\": 53.963847896, \"elapsed_ns\": 53963847896, \"power_samples\": [102.03329715099983, 97.16373938699996, 87.97511699099971, 101.92384344299978, 95.0582216659999, 91.56877920599993, 110.17025031099968, 90.24436265099996, 88.08314618099973, 99.86969678999992, 90.2986350509999, 98.48916577099988, 98.48916577099988, 104.30206601099974, 98.65295207499992, 102.14275085899988, 92.62215311099988, 102.08816469099986, 103.19517482599997, 93.84189297099977, 96.38352940499988, 101.9784296109998, 105.40912053299996, 92.67626553099979, 101.9784296109998, 97.27299827699983, 103.085602473, 103.085602473, 92.73065688099985, 97.27299827699983, 101.92384344299978, 108.6223669469997, 89.29923678099988, 104.35705250099988, 92.62215311099988, 103.085602473, 92.62215311099988, 102.19761839899991, 84.59370372099977, 103.085602473, 96.11123924699984, 91.46039408099989, 94.89496972199993, 96.05666927699997, 92.67626553099979, 92.45925799099984, 93.78772118699987, 95.3302150589999, 106.57087956299972, 92.62215311099988, 92.62215311099988, 111.2767844509998, 98.32537946699983, 93.84189297099977, 91.62311108099982, 86.64754497899992, 91.46039408099989, 100.70727634799994, 92.45925799099984, 99.65098397099985, 94.89496972199993, 104.08268401499993, 91.406062206, 94.89496972199993, 91.406062206, 102.03329715099983, 104.19237501300006, 98.38006838700005, 101.75952219499993, 101.86897590299975, 96.6012495929998, 98.43475730699981, 101.81410836299995, 90.35262913099984, 88.24532882099982, 98.48916577099988, 95.00371117099996, 92.62215311099988, 102.97574844299982, 90.40690153099979, 97.49095575499985, 104.35705250099988, 97.38197701599995, 91.67716433099997, 99.48701954699993, 84.53972889099975, 98.48916577099988, 92.67626553099979, 98.21628208300001, 88.02899273099968, 108.8982066689997, 104.19237501300006, 89.46131952599978, 107.68128252899999, 91.406062206, 102.03329715099983, 101.81410836299995, 100.87141947599991, 95.00371117099996, 98.38006838700005, 97.3273475709999, 92.94766442100001, 105.24426492499981, 89.02845017099969, 98.43475730699981, 93.5701963429998, 102.81124907500009, 98.54385469099986, 90.19009025099979, 94.84045922699977, 94.05941781499962, 91.46039408099989, 83.27035646999991, 101.7046546549999, 99.43255191300011, 93.73327016699966, 96.49238949899984, 90.08182377099968, 96.00209930699987, 92.89355200099988, 93.5701963429998, 93.78772118699987, 106.40584583499992, 101.86897590299975, 90.19009025099979, 89.1368760209997, 90.19009025099979, 96.11123924699984, 97.21836883200001, 91.46039408099989, 97.27299827699983, 102.97574844299982, 105.35407456799987, 91.35173033099989, 98.270971003, 92.51337041099976, 98.21628208300001, 91.51444733099981, 97.21836883200001, 93.5157453229998, 101.92384344299978, 103.140247811, 92.56776176100004, 96.05666927699997, 95.0582216659999, 92.56776176100004, 104.24736150299998, 88.02899273099968, 84.43205602499995, 101.7046546549999, 95.72980914900006, 97.16373938699996, 95.00371117099996, 96.05666927699997, 92.73065688099985, 105.40912053299996, 93.73327016699966, 92.51337041099976, 94.6772072829998, 96.00209930699987, 85.4859640689998, 103.085602473, 94.89496972199993, 92.56776176100004, 97.21836883200001, 92.40486664099978, 98.270971003, 92.40486664099978, 93.5701963429998, 99.48701954699993, 102.86617608999984, 94.84045922699977, 99.48701954699993, 103.140247811, 89.02845017099969, 96.05666927699997, 102.97574844299982, 95.947809183, 93.46157353899991, 100.48832515499987, 98.48916577099988, 92.45925799099984, 95.947809183, 94.56846583399977, 99.48701954699993, 101.92384344299978, 97.27299827699983, 98.32537946699983, 101.86897590299975, 84.2704083289999, 93.46157353899991, 107.68128252899999, 93.67881914699967, 97.16373938699996, 105.40912053299996, 97.16373938699996, 97.38197701599995, 100.81661141099983, 98.270971003, 96.00209930699987, 105.29902860299978, 98.32537946699983, 88.02899273099968, 99.48701954699993, 100.70727634799994, 94.89496972199993, 106.57087956299972, 92.51337041099976, 106.57087956299972, 105.46388421099971, 92.51337041099976, 89.02845017099969, 99.65098397099985, 92.51337041099976, 99.76048076100017], \"power_mean\": 96.81230483422777, \"energy_millijoules\": 5224.364492535453, \"energy_joules\": 5.224364492535453, \"coremark_score\": 4633.061527, \"coremarks_per_mhz\": 3.7123890440705125, \"ulpmark_cm_score\": 47.85271019225378}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [989.5275569520002, 996.6060556050002, 1005.8600726159998, 995.5963800100001, 982.902537848, 993.11935386, 992.1596450149999, 979.2648823360001, 989.7298663680001, 988.719002824, 989.6792240880001, 1000.147483447, 993.27155594, 992.05838248, 1001.3097765319999, 982.751940016, 986.3434776089999, 993.06853296, 989.830891224], \"power_mean\": 991.6814009331579, \"energy_millijoules\": 4958.407004665789, \"energy_joules\": 4.958407004665789}}, \"1324800\": {\"active\": {\"elapsed_sec\": 50.83153597, \"elapsed_ns\": 50831535970, \"power_samples\": [100.54313321999973, 97.27299827699983, 106.40584583499992, 99.54176794200009, 105.40912053299996, 109.94939757899976, 100.54313321999973, 102.86617608999984, 95.78437911899994, 95.8932392129999, 99.48701954699993, 114.59976655499975, 106.40584583499992, 96.00209930699987, 98.38006838700005, 97.0001312029998, 95.00371117099996, 114.59976655499975, 91.29767708099996, 98.54385469099986, 102.92110310499982, 101.7046546549999, 107.68128252899999, 101.7046546549999, 100.65246828299985, 90.2986350509999, 120.41177561099983, 104.08268401499993, 96.00209930699987, 110.9452908669997, 107.57123520699986, 91.29767708099996, 113.38294821899979, 102.97574844299982, 107.5160700969999, 94.73171777799996, 104.02769752499978, 94.73171777799996, 102.92110310499982, 95.72980914900006, 95.8932392129999, 110.9452908669997, 97.05476064799984, 96.782173725, 108.45697639499974, 99.26858748899997, 95.8932392129999, 110.89023114500003, 93.46157353899991, 88.92030233599974, 111.05597793699974, 96.94578190899995, 99.32305512300002, 99.26858748899997, 102.86617608999984, 92.45925799099984, 107.46090498699994, 94.6772072829998, 94.6772072829998, 110.9452908669997, 94.6772072829998, 108.6223669469997, 107.57123520699986, 105.07940931699989, 101.7046546549999, 113.38294821899979, 98.16159316300002, 95.27570456399997, 108.67759153199984, 100.54313321999973, 94.6772072829998, 104.02769752499978, 101.54033340700005, 107.6261174189998, 109.89439702699963, 95.8386692429998, 99.81494839499999, 106.51577412299991, 100.65246828299985, 91.29767708099996, 99.48701954699993, 100.43379815699984, 100.54313321999973, 113.27202285899978, 112.05163393499981, 100.87141947599991, 112.16215583699966, 94.73171777799996, 100.43379815699984, 106.35074039499989, 94.6772072829998, 108.67759153199984, 109.7838289069997, 105.13417299499986, 93.95079501099997, 112.16215583699966, 89.97355729099979, 95.72980914900006, 116.70105297299995, 98.270971003, 100.7620844129998, 100.54313321999973, 92.40486664099978, 96.11123924699984, 105.07940931699989, 99.32305512300002, 101.48546586699979, 98.05249577899997, 106.18570666699986, 93.67881914699967, 106.2408121069999, 101.59520094700008, 97.27299827699983, 107.46090498699994, 97.21836883200001, 104.96931738699993, 105.0243633519998, 91.13496008100003, 93.73327016699966, 102.81124907500009, 94.6772072829998, 92.62215311099988, 104.08268401499993, 95.8932392129999, 106.29563495499985, 101.6497871150001, 103.97271103500009, 99.81494839499999, 101.7046546549999, 86.80954891499971, 104.19237501300006, 95.8932392129999, 102.86617608999984, 101.75952219499993, 111.00063440199972, 88.97451526099996, 98.270971003, 94.78622827299989, 109.7838289069997, 94.78622827299989, 94.51395533899984, 106.29563495499985, 113.43812647499965, 105.29902860299978, 88.81215450099978, 95.8386692429998, 94.62297632899993, 100.59794128499982, 99.32305512300002, 98.16159316300002, 105.0243633519998, 106.13060122699983, 98.54385469099986, 89.97355729099979, 97.99780685899998, 92.18758017099992, 97.05476064799984, 113.1613819229998, 99.37780351799995, 96.94578190899995, 109.83911296699978, 94.51395533899984, 93.46157353899991, 112.94010005099983, 98.05249577899997, 99.32305512300002, 100.32418202699989, 102.75660373700009, 94.56846583399977, 101.81410836299995, 94.62297632899993, 94.62297632899993, 105.07940931699989, 100.37899009199975, 96.94578190899995, 105.13417299499986, 93.40712251899993, 101.59520094700008, 94.62297632899993, 96.94578190899995, 108.78775749899967, 118.85686433700005, 110.89023114500003, 89.86501249099967, 111.94082791499989, 87.54244481099965, 101.59520094700008, 99.21383909400004, 101.59520094700008, 99.26858748899997, 101.54033340700005, 106.29563495499985, 100.43379815699984, 105.13417299499986, 92.24197152099998, 94.62297632899993, 110.83488760999978, 101.54033340700005, 96.8911524639999, 102.64674970699991, 92.24197152099998, 100.32418202699989], \"power_mean\": 101.01248934333157, \"energy_millijoules\": 5134.6199854748, \"energy_joules\": 5.1346199854748, \"coremark_score\": 4918.548831, \"coremarks_per_mhz\": 3.7126727287137684, \"ulpmark_cm_score\": 48.689094949035926}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1001.156327028, 995.49450031, 984.929501472, 991.8555970950001, 998.8320970980001, 991.90635852, 988.4160247919999, 984.8289511959998, 981.388941984, 983.763516624, 1001.1053523639998, 998.7301223040001, 990.740373672, 990.841517173, 995.4438216900002, 989.6288415120001, 995.2403235200001, 987.05227522, 984.929501472], \"power_mean\": 991.3833655287368, \"energy_millijoules\": 4956.916827643684, \"energy_joules\": 4.956916827643684}}, \"1516800\": {\"active\": {\"elapsed_sec\": 44.394475816, \"elapsed_ns\": 44394475816, \"power_samples\": [109.67354429499972, 120.07742977099986, 107.68128252899999, 99.21383909400004, 118.74563017599996, 119.02385855299997, 115.4284869229997, 108.51220097999988, 117.63993908699979, 115.53965018299994, 114.32272523799986, 109.83911296699978, 117.91787069899999, 110.17025031099968, 128.322696629, 109.72882835499979, 109.45297507099974, 128.322696629, 105.13417299499986, 105.13417299499986, 113.1613819229998, 109.72882835499979, 108.51220097999988, 122.3443456409999, 110.83488760999978, 108.40203501299959, 116.64541186799977, 110.72448435299964, 116.756408739, 117.86245576299996, 121.23871361099975, 109.7838289069997, 115.37319032699963, 107.29569255499985, 111.00063440199972, 115.48406855299993, 107.406022775, 111.99623092499985, 111.94082791499989, 113.1059192429999, 109.72882835499979, 116.534414997, 115.4284869229997, 115.31760869699986, 122.28840696600003, 111.83030601299981, 107.29569255499985, 124.66679498099995, 115.37319032699963, 113.1059192429999, 110.61408109599995, 122.45593612599998, 109.61826023499987, 129.20319821099986, 107.24081034299991, 107.29569255499985, 117.69563966699991, 121.35047201100008, 109.67354429499972, 115.37319032699963, 115.4284869229997, 115.76140663499984, 120.07742977099986, 113.27202285899978, 109.72882835499979, 118.85686433700005, 110.83488760999978, 117.75105460299972, 117.75105460299972, 109.61826023499987, 101.37601215899997, 116.81204984399994, 116.64541186799977, 116.47877389200005, 124.77862275600012, 114.2672030829998, 128.09804004, 126.76863262099994, 115.4284869229997, 105.07940931699989, 126.05191249099983, 111.94082791499989, 114.15644350199989, 117.86245576299996, 103.75332903899982, 109.61826023499987, 120.07742977099986, 110.89023114500003, 109.72882835499979, 112.99527830699992, 114.2672030829998, 113.1059192429999, 116.58977076299982, 110.77954407499976, 109.7838289069997, 120.07742977099986, 114.2672030829998, 108.51220097999988, 130.53279181899973, 110.72448435299964, 116.64541186799977, 120.07742977099986, 113.21684460299991, 103.86302003699996, 110.61408109599995, 106.07577837899987, 106.2408121069999, 115.2623121009998, 116.64541186799977, 111.22172472899967, 128.15427628500004, 110.77954407499976, 109.50797562299988, 121.23871361099975, 105.96585009099988, 113.32748553899967, 127.10511706900013, 122.17681648099995, 119.24632687499991, 123.61727944099982, 115.4284869229997, 105.96585009099988, 121.12724177099983, 119.91054310599986, 104.08268401499993, 116.47877389200005, 108.34681042799991, 117.91787069899999, 114.2672030829998, 102.64674970699991, 108.40203501299959, 122.56752661099983, 120.13324949599985, 107.6261174189998, 107.406022775, 107.18564523299995, 106.2408121069999, 112.99527830699992, 103.69834254900013, 103.91800652699987, 122.3443456409999, 101.32142599099996, 111.00063440199972, 111.77518712099993, 109.56325968299973, 111.99623092499985, 121.12724177099983, 118.80110428199998, 114.15644350199989, 128.15427628500004, 105.96585009099988, 109.83911296699978, 114.21196565699995, 111.94082791499989, 123.3938611809998, 123.561281291, 116.64541186799977, 125.77190255099993, 116.423418126, 108.45697639499974, 104.02769752499978, 108.34681042799991, 110.77954407499976, 125.71607323099977, 115.48406855299993, 113.1059192429999, 121.07164913099984, 116.423418126, 109.45297507099974, 114.48900697399961, 115.31760869699986, 117.75105460299972, 123.61727944099982, 107.29569255499985, 113.21684460299991, 127.04894029899981, 104.91455370899973], \"power_mean\": 114.20302301245748, \"energy_millijoules\": 5069.983343240636, \"energy_joules\": 5.069983343240636, \"coremark_score\": 5631.772206, \"coremarks_per_mhz\": 3.7129299881329114, \"ulpmark_cm_score\": 49.30982669465829}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [997.5681259840001, 986.041212057, 996.5040569550001, 988.163629565, 989.7298663680001, 977.702921055, 981.3389737919998, 987.1025394559999, 982.551056949, 989.27486496, 996.2495834, 991.8050959849999, 991.8555970950001, 989.6792240880001, 984.67799654, 980.1267517119999, 1001.2075644479999, 995.29126337, 995.0877652], \"power_mean\": 989.5767415252105, \"energy_millijoules\": 4947.8837076260525, \"energy_joules\": 4.947883707626053}}, \"1612800\": {\"active\": {\"elapsed_sec\": 41.751841026, \"elapsed_ns\": 41751841026, \"power_samples\": [121.12724177099983, 128.0420921860001, 129.20319821099986, 119.85472338099987, 125.71607323099977, 123.3938611809998, 120.24460269100007, 124.66679498099995, 115.2623121009998, 120.02189630099986, 136.1736412659999, 126.82480939100003, 126.82480939100003, 135.12543159899985, 122.39999745099988, 118.02927185899978, 128.0420921860001, 120.07742977099986, 119.91054310599986, 125.71607323099977, 121.183120971, 118.9680984979999, 126.82480939100003, 121.23871361099975, 119.13509271399982, 139.66076624599998, 121.183120971, 124.66679498099995, 122.28840696600003, 125.77190255099993, 119.24632687499991, 130.4203704299997, 125.77190255099993, 114.37824739299992, 121.07164913099984, 114.21196565699995, 131.46899559099973, 131.5815356249999, 122.17681648099995, 125.11439355599998, 119.96607657599986, 124.55496720600001, 138.89238190999993, 115.31760869699986, 119.96607657599986, 130.58914701399988, 127.04894029899981, 112.99527830699992, 117.97357127899988, 131.52541026099982, 126.76863262099994, 119.02385855299997, 123.44957216099999, 123.50557031100004, 130.25159384599976, 131.52541026099982, 125.71607323099977, 117.63993908699979, 119.91054310599986, 111.77518712099993, 131.5815356249999, 124.44285195600003, 119.91054310599986, 129.03459974700002, 126.76863262099994, 128.15427628500004, 128.09804004, 111.66438110099978, 124.44285195600003, 130.25159384599976, 122.12087780599984, 134.84304559299983, 134.89934866099986, 129.14690249099988, 128.09804004, 131.46899559099973, 113.05074098699959, 128.09804004, 127.98585594100007, 116.47877389200005, 121.01576993099991, 123.33786303099998, 124.44285195600003, 117.41770805499993, 138.43908160099988, 116.47877389200005, 118.6898701209999, 120.90429809099976, 131.46899559099973, 117.47312299099997, 132.35205637499996, 112.94010005099983, 121.07164913099984, 118.74563017599996, 130.4203704299997, 120.90429809099976, 130.19552765199967, 123.17015575099992, 121.01576993099991, 133.79489540099974, 130.36430423599984, 131.46899559099973, 129.20319821099986, 122.17681648099995, 117.47312299099997, 138.43908160099988, 118.6898701209999, 125.6599561309996, 126.9930516149999, 127.98585594100007, 123.22615390099998, 119.6317307359999, 126.82480939100003, 112.88463737099971, 132.69032319099995, 112.88463737099971, 119.85472338099987, 132.52118978300007, 119.85472338099987, 112.77399643499973, 125.6599561309996, 113.93492433999984, 120.90429809099976, 126.82480939100003, 123.22615390099998, 122.06522599599987, 124.33102418100009, 123.22615390099998, 113.87940218499978, 124.38708180599986, 126.65656716699993, 119.85472338099987, 130.25159384599976, 122.12087780599984, 125.6599561309996, 123.33786303099998, 113.93492433999984, 117.41770805499993, 133.90767311399975, 121.07164913099984, 125.43577551099963, 129.03459974700002, 120.95989073099975, 126.65656716699993, 123.3938611809998, 124.49890958100002, 125.8838489709998, 131.41258092099963, 127.92961969600003, 124.44285195600003, 120.90429809099976, 131.35645555699978, 123.33786303099998, 134.729859013, 115.20673047100001, 121.23871361099975, 123.22615390099998, 124.49890958100002, 118.46711585000014, 135.01253524099968, 125.54800971099974, 119.85472338099987, 134.78645230299992, 124.33102418100009, 125.93996607099973, 132.69032319099995], \"power_mean\": 124.28473410786133, \"energy_millijoules\": 5189.116460430106, \"energy_joules\": 5.189116460430106, \"coremark_score\": 5988.167381, \"coremarks_per_mhz\": 3.7129014019097224, \"ulpmark_cm_score\": 48.177758565719}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [997.51732883, 989.224482384, 983.5123094300001, 999.6879317460001, 993.8753275500001, 991.70383345, 1010.2507336949999, 984.7284009199999, 989.477174376, 1003.27565821, 997.51732883, 988.3151185809999, 985.7894103599999, 992.8657706, 985.940543136, 1003.173208836, 990.487384915, 984.979905852, 997.51732883], \"power_mean\": 993.1494305542632, \"energy_millijoules\": 4965.747152771316, \"energy_joules\": 4.965747152771316}}, \"1708800\": {\"active\": {\"elapsed_sec\": 39.408638995, \"elapsed_ns\": 39408638995, \"power_samples\": [135.94732073299986, 135.890667968, 124.44285195600003, 122.06522599599987, 132.52118978300007, 131.35645555699978, 133.62558387299998, 136.1169885009998, 132.52118978300007, 134.95594195099977, 137.22132281099982, 135.890667968, 130.25159384599976, 142.9163374389999, 131.41258092099963, 132.52118978300007, 139.43373214899987, 134.84304559299983, 130.19552765199967, 137.16490140299982, 132.5773745109999, 130.08281726199982, 131.3000408869999, 125.4918926109998, 141.8690776259997, 137.16490140299982, 135.94732073299986, 130.25159384599976, 137.27803505099985, 135.94732073299986, 135.890667968, 140.53770971899974, 137.051476923, 131.35645555699978, 134.89934866099986, 137.051476923, 129.03459974700002, 135.83430572999976, 126.54450171299993, 117.19519137899977, 128.86600128300017, 126.7127439369998, 131.41258092099963, 141.8690776259997, 127.98585594100007, 129.03459974700002, 138.3823098859997, 131.24362621699981, 129.0906067709999, 135.890667968, 123.05844662099992, 128.97830402700004, 134.78645230299992, 124.27496655599987, 130.4203704299997, 132.29558203499994, 133.5690500579998, 131.46899559099973, 140.53770971899974, 133.73836158599977, 128.92200830700006, 131.35645555699978, 132.5773745109999, 130.4203704299997, 140.59460057900003, 139.49056353399976, 133.62558387299998, 142.9163374389999, 137.22132281099982, 126.65656716699993, 148.83880659099975, 133.62558387299998, 136.1169885009998, 134.78645230299992, 126.82480939100003, 125.93996607099973, 134.84304559299983, 131.35645555699978, 132.35205637499996, 146.34556042499992, 124.16313878099993, 129.31550095499995, 145.18094553899994, 129.03459974700002, 138.55233389400007, 138.3258293079997, 132.46471544300005, 129.03459974700002, 156.854370851, 130.19552765199967, 130.58914701399988, 120.84841889100005, 125.3799461909997, 132.63384885100015, 134.78645230299992, 130.08281726199982, 129.0906067709999, 140.70809055099983, 128.92200830700006, 141.98297829599994, 127.87367184199991, 132.52118978300007, 133.68211768799995, 142.97334724900008, 144.13427515399974, 132.5773745109999, 136.0039734979997, 120.90429809099976, 135.2383279569998, 126.54450171299993, 130.08281726199982, 135.890667968, 142.85932762899972, 146.2314768389998, 137.051476923, 135.94732073299986, 130.13917245699997, 127.92961969600003, 142.85932762899972, 120.7369470509999, 137.051476923, 130.19552765199967, 122.23275515600005, 135.83430572999976, 140.481110607, 138.26905759299996, 131.52541026099982, 131.3000408869999, 136.0039734979997, 134.729859013, 142.74560036700007, 125.4918926109998, 142.74560036700007, 132.46471544300005, 130.02675106799995, 133.79489540099974, 125.43577551099963, 127.87367184199991, 134.67355594499975, 123.00244847099987, 131.074671513, 132.29558203499994, 129.9703958729998, 139.49056353399976, 138.212285878, 128.97830402700004, 136.28665626899976, 141.58491005699977, 133.51280615999974, 124.38708180599986, 130.02675106799995, 134.89934866099986, 141.641860392, 137.16490140299982, 137.16490140299982, 134.89934866099986, 138.212285878], \"power_mean\": 133.4970435015986, \"energy_millijoules\": 5260.9367942543095, \"energy_joules\": 5.2609367942543095, \"coremark_score\": 6344.372542, \"coremarks_per_mhz\": 3.7127648302902623, \"ulpmark_cm_score\": 47.52005389478078}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [997.262295696, 992.56136644, 990.3355396590001, 1002.0114498059999, 992.71356852, 999.6879317460001, 1000.9006654399998, 994.9352068800001, 996.1478462850001, 1000.7472159359999, 985.6382775839999, 991.6023106, 993.824447175, 978.7147352580001, 997.160439547, 1003.2243018399998, 989.224482384, 991.5518094899999, 1000.6450038519998], \"power_mean\": 994.6783628493685, \"energy_millijoules\": 4973.391814246842, \"energy_joules\": 4.973391814246842}}, \"1804800\": {\"active\": {\"elapsed_sec\": 37.310792434, \"elapsed_ns\": 37310792434, \"power_samples\": [156.73921907099987, 147.6778195159999, 164.75199246299997, 152.0387339309999, 154.24520006099976, 157.72691505599994, 156.62377127099978, 151.1036489050001, 161.21243520399992, 146.34556042499992, 139.60393486099986, 149.713547769, 149.59910824799988, 161.3860239479999, 157.84218548099977, 147.44941505399981, 153.54410688099995, 148.49555007900005, 151.92405673099995, 145.29520305899985, 161.27009995799983, 159.00668133299962, 160.05186353899978, 160.16737164299968, 150.81681174900007, 143.20080177299985, 150.93166440900006, 152.0387339309999, 161.44368870200003, 152.0387339309999, 150.87423807899984, 161.27009995799983, 154.302509601, 150.81681174900007, 143.0300647009998, 145.06698098699997, 147.33491924399993, 150.9887962449999, 157.66913168099984, 142.574863295, 157.7844021059999, 156.68149517099994, 145.06698098699997, 153.19942424099997, 147.39216714899987, 154.41771950100008, 153.027082921, 147.39216714899987, 152.0387339309999, 162.37300686899982, 148.55285745899994, 157.84218548099977, 140.3107297749997, 159.00668133299962, 147.39216714899987, 160.16737164299968, 149.713547769, 146.2886652689998, 151.98124793099998, 147.5063693799999, 147.1637626869998, 175.20528067200019, 142.6885905570001, 149.65618091399995, 163.53357853399973, 152.1534111310001, 140.36732888699987, 164.69415019899986, 149.54174139300005, 139.0367867829999, 151.92405673099995, 153.19942424099997, 142.51814584300007, 164.6360097789999, 148.43853658299997, 148.55285745899994, 164.81013288299994, 150.64512174699996, 156.45119161099967, 154.41771950100008, 154.24520006099976, 150.93166440900006, 161.15447320899978, 155.40577172599967, 162.31498539899997, 159.00668133299962, 148.49555007900005, 160.05186353899978, 149.65618091399995, 156.50861949099988, 157.7844021059999, 156.50861949099988, 150.81681174900007, 156.62377127099978, 162.37300686899982, 150.81681174900007, 140.3107297749997, 158.83344882899985, 155.4631404359999, 146.17428840899981, 142.80261017700002, 157.7844021059999, 143.849221392, 156.5663433909998, 150.87423807899984, 141.527959722, 162.5467737329999, 148.72448571500001, 150.7596799129998, 155.4631404359999, 160.05186353899978, 155.40577172599967, 162.25726147499984, 151.75189353099984, 147.1637626869998, 161.21243520399992, 153.027082921, 157.61164463099988, 162.43073079299995, 149.65618091399995, 145.1241097469998, 155.4631404359999, 153.08462839599986, 148.2669083269999, 162.37300686899982, 155.52080486099965, 158.83344882899985, 163.47549758899993, 147.2207170129999, 153.14187876599988, 168.12135130699983, 152.96983255099997, 149.942721, 161.21243520399992, 160.10946912299994, 151.809379531, 155.40577172599967, 146.06020482299994, 155.57846928599986, 165.8003269269999, 147.33491924399993, 148.95342135099997, 155.40577172599967, 159.06452437799965, 149.59910824799988, 161.3860239479999, 153.19942424099997, 152.0387339309999], \"power_mean\": 153.42852593363503, \"energy_millijoules\": 5724.539884564442, \"energy_joules\": 5.724539884564442, \"coremark_score\": 6701.155279, \"coremarks_per_mhz\": 3.7129628097296097, \"ulpmark_cm_score\": 43.671632138348095}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [986.8504409940001, 1002.0114498059999, 992.4091643600001, 991.90635852, 1003.019403092, 990.2343961580001, 990.2343961580001, 1008.831116104, 993.8753275500001, 1003.1218524660001, 989.022172968, 1000.8496907759998, 996.5040569550001, 1008.831116104, 987.911234338, 997.2114985420001, 993.8753275500001, 1000.6450038519998, 993.9259470000001], \"power_mean\": 996.3826291206842, \"energy_millijoules\": 4981.913145603421, \"energy_joules\": 4.981913145603421}}}}, \"6\": {\"freqs\": {\"652800\": {\"active\": {\"elapsed_sec\": 49.102713054, \"elapsed_ns\": 49102713054, \"power_samples\": [112.77399643499973, 106.91038547899996, 105.85563921099981, 109.17683827899998, 102.31803264799998, 115.04027061499994, 105.80081636299963, 107.02043280099986, 111.49845618899997, 108.01602932399999, 116.25678014999983, 124.44285195600003, 107.46491628599995, 101.21169091099989, 112.71853375499984, 109.34240695099982, 123.3938611809998, 117.47312299099997, 116.31213591599987, 107.8506387719998, 115.04027061499994, 113.99016176599969, 109.12183772699984, 120.84841889100005, 109.23212233899983, 106.07577837899987, 107.07559791099982, 102.26310563300001, 108.67759153199984, 110.28258751199985, 111.66438110099978, 111.33253127699993, 108.01602932399999, 112.60789281899986, 110.66914081799985, 104.52979652799979, 106.91038547899996, 120.07742977099986, 119.5761972659999, 109.34240695099982, 111.6092622089999, 104.47503284999982, 111.66438110099978, 100.10551190099989, 102.26310563300001, 97.7796120910001, 111.66438110099978, 108.1264784939998, 106.96555058899992, 118.30012163399999, 123.22615390099998, 106.80033815699983, 100.937915955, 120.84841889100005, 102.09860626499983, 108.07125390899989, 106.91038547899996, 104.47503284999982, 114.92939238899987, 104.47503284999982, 103.31428306500004, 124.38708180599986, 97.67051470699982, 110.17190044199981, 104.03551199099968, 111.6092622089999, 108.07125390899989, 119.5203775409999, 114.9846889849997, 107.96108794199984, 117.36200747500004, 101.98903391199985, 104.58484249299988, 113.93492433999984, 103.42397406299995, 103.47896055299987, 113.82388002999971, 104.52979652799979, 101.9341068970001, 112.71853375499984, 101.10223720300007, 108.01602932399999, 109.2874063989999, 103.53366506099985, 111.44333729699986, 111.44333729699986, 109.23212233899983, 101.10223720300007, 117.19519137899977, 112.66307107499972, 99.94136877299991, 127.8174355970001, 117.41770805499993, 112.60789281899986, 113.93492433999984, 105.74571092299982, 104.52979652799979, 104.20036759899983, 105.63578263500006, 112.8291746909996, 118.46711585000014, 103.09461908700007, 106.855220369, 119.6317307359999, 106.579960615, 101.10223720300007, 114.9846889849997, 99.88656070800005, 107.07559791099982, 114.9846889849997, 99.88656070800005, 112.38632652299987, 118.41164174400012, 109.39769101099989, 115.97885996399998, 115.97885996399998, 107.96108794199984, 112.94010005099983, 112.66307107499972, 106.579960615, 115.31760869699986, 117.19519137899977, 110.392990769, 110.11684071999991, 113.82388002999971, 102.26310563300001, 103.97271103500009, 100.99278349500003, 107.9058633569997, 109.2874063989999, 109.23212233899983, 116.1454979399997, 118.41164174400012, 118.41164174400012, 104.41998688499973, 106.2408121069999, 112.71853375499984, 114.48559445099988, 106.91038547899996, 103.2043100850002, 106.855220369, 119.40902434599968, 107.8506387719998, 97.50672840300001, 103.14960557699976, 108.01602932399999, 118.41164174400012, 117.36200747500004, 114.92939238899987, 101.1571047430001, 116.1454979399997, 100.937915955, 116.25678014999983, 117.08407586299984, 103.42397406299995, 96.29134917299996, 116.97296034699991, 112.71853375499984, 105.63578263500006, 113.7131204489998, 100.937915955, 111.55385919899993, 113.76864260399987, 105.80081636299963, 103.14960557699976, 113.76864260399987, 105.69060548299979, 107.96108794199984, 118.41164174400012, 113.82388002999971, 103.36898757300003, 112.55243013899974, 105.63578263500006, 105.63578263500006, 111.55385919899993, 105.63578263500006, 118.35588168899983, 108.95626905499978, 110.11684071999991, 110.28258751199985, 111.55385919899993, 108.01602932399999, 106.41474818299992, 117.3063068949997, 115.04027061499994, 105.80081636299963, 116.03450106899993, 96.23671972799991, 110.33764723399997, 119.46455781599991, 105.52557175499976, 102.42760500099996, 113.76864260399987, 112.38632652299987], \"power_mean\": 109.79649310538133, \"energy_millijoules\": 5391.305695289028, \"energy_joules\": 5.391305695289028, \"coremark_score\": 5092.790646, \"coremarks_per_mhz\": 7.801456259191178, \"ulpmark_cm_score\": 46.370956152319884}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [974.9766988759999, 984.275536952, 983.210757526, 983.311188768, 994.7319699400001, 983.210757526, 978.364501504, 992.45972464, 994.83358841, 986.749653428, 985.5880725179999, 984.5270418839999, 978.664628448, 998.2708425120002, 971.591734909, 981.038134368, 985.5880725179999, 985.4369397419999, 990.1329926480001], \"power_mean\": 985.1033072166842, \"energy_millijoules\": 4925.516536083422, \"energy_joules\": 4.925516536083422}}, \"825600\": {\"active\": {\"elapsed_sec\": 38.810899516, \"elapsed_ns\": 38810899516, \"power_samples\": [142.6885905570001, 124.10708115600016, 128.41650161099994, 139.20669805199998, 136.8252096269997, 132.35205637499996, 139.20669805199998, 138.09903358500003, 125.3799461909997, 144.78192312299973, 128.80970556299997, 137.92900957699987, 132.29558203499994, 125.26771199099983, 128.6411070989999, 127.48059490900016, 130.02675106799995, 123.93948323100005, 136.93834327499974, 125.26771199099983, 127.25622671100007, 139.15015810999978, 124.05131100599999, 135.94732073299986, 134.50406629699967, 120.62518865100003, 120.56959601099982, 150.64512174699996, 135.2686496609998, 129.9703958729998, 132.29558203499994, 126.20801726499997, 129.03459974700002, 141.47130143999982, 129.9703958729998, 130.84959144499987, 128.69740281899988, 125.32382909099977, 117.3063068949997, 139.20669805199998, 132.29558203499994, 127.87367184199991, 121.61857719099987, 122.83474119099981, 139.26352943699987, 133.51280615999974, 128.69740281899988, 126.26419403500006, 129.85797448399978, 132.29558203499994, 124.38708180599986, 127.48059490900016, 123.00244847099987, 132.23910769500014, 129.46406612099975, 124.05131100599999, 139.20669805199998, 134.5603693649997, 128.69740281899988, 128.97830402700004, 119.35320462099992, 136.93834327499974, 141.527959722, 127.42464705500004, 133.3997385299998, 148.49555007900005, 121.78581948599992, 132.29558203499994, 138.04226186999983, 129.80161928899986, 120.51371681100011, 143.849221392, 130.90600611499997, 134.2779833589999, 140.481110607, 139.15015810999978, 133.17418310399978, 136.76849738699968, 130.96213147899982, 129.74555309499976, 136.7120759789999, 122.94645032100004, 126.32008271899997, 140.25383891499985, 139.15015810999978, 125.21188267099967, 144.83905188300002, 138.69638135899993, 128.80970556299997, 141.24379215299984, 119.35320462099992, 130.96213147899982, 143.9062906769999, 129.6891978999996, 130.96213147899982, 141.47130143999982, 126.37625948900006, 127.53683115399997, 137.98578129199961, 131.90113049100012, 126.32008271899997, 135.6646379619998, 134.67355594499975, 138.09903358500003, 137.87252899899988, 139.15015810999978, 122.55532478099997, 142.63187310499995, 133.45627234499977, 134.50406629699967, 139.20669805199998, 134.50406629699967, 132.18292296699985, 135.72100020000005, 135.72100020000005, 137.27803505099985, 129.74555309499976, 122.77903021099985, 139.20669805199998, 131.074671513, 128.02300896299982, 137.10818916300002, 136.88163103499994, 133.23071691899997, 119.85472338099987, 133.45627234499977, 127.53683115399997, 127.143754221, 132.23910769500014, 129.9703958729998, 135.890667968, 131.0185461489997, 126.32008271899997, 125.43577551099963, 129.63284270499992, 127.53683115399997, 142.6885905570001, 141.41435110500004, 126.37625948900006, 134.2779833589999, 127.5927790080001, 126.43214817299997, 144.02013658399994, 135.60798519699995, 128.585100075, 132.070263899, 135.60798519699995, 135.55162295899993, 135.60798519699995, 133.23071691899997, 136.65536373899988, 132.01378955899997, 144.953016435, 129.18286814799978], \"power_mean\": 132.28123015055834, \"energy_millijoules\": 5133.95353122619, \"energy_joules\": 5.133953531226189, \"coremark_score\": 6443.631115, \"coremarks_per_mhz\": 7.804785749757752, \"ulpmark_cm_score\": 48.695415429732215}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [982.099521326, 986.5478192019999, 998.321960982, 973.2677631690001, 986.5478192019999, 987.759745322, 973.864909064, 980.787520704, 993.4688064, 985.5376086629999, 977.3531030160001, 986.5983425320001, 987.8606515329999, 983.210757526, 988.819863552, 986.194933174, 978.364501504, 984.2251325719999, 981.8986382589999], \"power_mean\": 984.354178826421, \"energy_millijoules\": 4921.770894132105, \"energy_joules\": 4.921770894132106}}, \"979200\": {\"active\": {\"elapsed_sec\": 32.717880404, \"elapsed_ns\": 32717880404, \"power_samples\": [160.92321971099966, 156.33574381099982, 152.1534111310001, 161.09680845499986, 159.93635543499988, 163.30155260499976, 168.58281820199988, 152.79749123099998, 165.5681234909997, 163.30155260499976, 156.45119161099967, 150.87423807899984, 149.54174139300005, 154.01507567099986, 169.10702732899983, 155.06037660599975, 164.40404441099997, 165.39382168300006, 159.7050422909998, 146.99231255099983, 161.96745167099982, 159.8205503949997, 158.6026699109999, 173.810784593, 159.7050422909998, 157.09248323099985, 175.955666211, 159.8784529149999, 148.15258745099993, 172.59183391299996, 152.854741601, 159.64713977099984, 167.71401524300006, 164.2877635709998, 158.71805936999988, 173.810784593, 158.54482686599988, 158.6026699109999, 169.10702732899983, 158.37159436199966, 156.2205920309999, 179.44011647100012, 156.39346771099997, 159.8205503949997, 164.40404441099997, 172.53357707099974, 147.04926687699992, 158.6026699109999, 150.47313725100014, 150.47313725100014, 167.77203521099966, 155.17540974099973, 167.77203521099966, 170.03420880300007, 158.6026699109999, 160.92321971099966, 157.4960778809999, 161.96745167099982, 162.7219345589998, 165.4517233109999, 161.96745167099982, 158.71805936999988, 163.1276076209998, 158.48698382099985, 169.10702732899983, 160.4604154739999, 149.19812864099993, 161.27009995799983, 165.5099234009998, 159.5895341869999, 157.4960778809999, 173.57661875099996, 149.31286235100004, 152.854741601, 171.3148045109998, 152.79749123099998, 145.0098522269999, 167.88867329099992, 152.79749123099998, 166.90287831900002, 165.5099234009998, 161.85170627699983, 170.32579938899983, 162.08349461099976, 161.90972774699992, 157.7844021059999, 160.86525771599997, 145.83203765099995, 167.94669325899974, 180.48268701499967, 164.22992130699993, 149.48466872699998, 172.41646280099997, 152.854741601, 151.98124793099998, 158.6026699109999, 154.8300146209998, 158.66021632499985, 164.98701797699994, 165.5099234009998, 160.8072957209996, 165.3356215929997, 158.54482686599988, 157.84218548099977, 155.06037660599975, 161.90972774699992, 174.56104734899998, 170.09234711099987, 161.90972774699992, 158.54482686599988, 156.50861949099988, 159.64713977099984, 161.96745167099982, 152.73994575599988, 160.92321971099966, 170.09234711099987, 164.17178088699995, 158.37159436199966, 166.67013882599997, 163.0117435819999, 156.10544025099978, 164.22992130699993, 150.35828459099992, 151.57973033099995, 164.345903991, 151.465053131, 160.86525771599997, 167.77203521099966, 149.0836891199998], \"power_mean\": 160.68339562353475, \"energy_millijoules\": 5257.220120919426, \"energy_joules\": 5.257220120919427, \"coremark_score\": 7643.857396, \"coremarks_per_mhz\": 7.806226915849673, \"ulpmark_cm_score\": 47.55364893419717}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [987.1032064530001, 975.9883950179999, 995.9441105200001, 974.8768424959999, 976.4375149619998, 991.2477615700001, 971.4427407410001, 983.311188768, 999.3813889780001, 981.8986382589999, 983.009636864, 985.3360120319999, 985.386475887, 989.27486496, 978.364501504, 986.4972958719999, 989.022172968, 992.35834346, 989.022172968], \"power_mean\": 985.0475402252631, \"energy_millijoules\": 4925.237701126315, \"energy_joules\": 4.925237701126315}}, \"1113600\": {\"active\": {\"elapsed_sec\": 28.934885458, \"elapsed_ns\": 28934885458, \"power_samples\": [174.73677470099994, 169.9757708129997, 174.56104734899998, 180.3060684789997, 173.4010695190001, 165.3356215929997, 182.8028805749999, 174.32694481499982, 182.62590579899995, 194.232698423, 187.38774059099967, 180.3647397049998, 192.03169321199982, 179.0872356389999, 180.9355971709998, 191.91286110299995, 191.73446019899973, 179.26367605500002, 192.95382900899983, 181.34822361299996, 177.9862311590001, 199.67679807899992, 184.83142628099984, 183.72667237899975, 184.8903343809999, 189.70781520100002, 182.74378796999974, 181.34822361299996, 183.6678236429999, 181.46598713900005, 190.8121465869998, 186.16843206099986, 183.78582445899985, 199.91643172199986, 174.44399608200013, 181.5837506649999, 200.0360947349999, 188.2514361509999, 181.34822361299996, 194.29208007700015, 183.6678236429999, 182.74378796999974, 191.97212441699992, 168.75735499299992, 186.2869745109998, 190.69343312299986, 190.63422897899966, 186.79565063099983, 191.97212441699992, 180.3060684789997, 175.5454209149999, 188.48838772099987, 178.10363874999973, 178.22104634100003, 192.77524998499996, 182.44893102299977, 181.99637710699983, 195.21368181899982, 180.42371335999985, 183.84467319499993, 196.43322905399998, 190.69343312299986, 181.81958045099975, 181.5837506649999, 184.8903343809999, 181.81958045099975, 185.18578583099986, 183.78582445899985, 193.07277976299986, 187.26938345099995, 180.18842359799976, 187.50609773099984, 184.9495461309997, 180.70007011899986, 196.850955816, 179.26367605500002, 188.42930211099986, 196.37342235899985, 193.013151493, 174.38562090000016, 178.91079522300004, 173.22582088499996, 176.64642589499965, 190.8121465869998, 184.77221453099958, 179.028623583, 190.456006195, 185.57693563099986, 182.62590579899995, 188.42930211099986, 186.16843206099986, 175.5454209149999, 192.95382900899983, 187.03236491099995, 181.46598713900005, 187.09169561099964, 182.44893102299977, 189.47062634099973, 190.51521033899996, 183.6086715629998, 187.32840989099998, 185.9912262959998, 191.79402899399986, 187.26938345099995, 201.01618694699994, 187.26938345099995, 178.10363874999973, 197.4175396039999, 187.2100527509998, 181.64278379499967, 196.43322905399998, 186.05019356599962, 191.85329230799982, 193.93487187999983], \"power_mean\": 185.2562505243069, \"energy_millijoules\": 5360.368389299372, \"energy_joules\": 5.3603683892993725, \"coremark_score\": 8643.64001, \"coremarks_per_mhz\": 7.761889376795977, \"ulpmark_cm_score\": 46.638585605247236}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [981.597442595, 993.316687125, 971.690979312, 987.507350095, 992.45972464, 991.1462387199999, 990.9944750750001, 981.748040427, 976.0381263359999, 987.658579712, 981.748040427, 972.653893296, 980.586875232, 992.1047602, 979.4758763219999, 1003.5174386320001, 980.6371009919999, 990.9437136500001, 988.718838696], \"power_mean\": 985.5023253412631, \"energy_millijoules\": 4927.511626706316, \"energy_joules\": 4.927511626706316}}, \"1267200\": {\"active\": {\"elapsed_sec\": 25.290404574, \"elapsed_ns\": 25290404574, \"power_samples\": [213.72023833800006, 220.7431834109999, 218.24120233099995, 216.16123717800008, 227.70542907899983, 203.1554853389997, 208.89663797299966, 210.35843448000003, 217.26396179099982, 220.68212696099988, 218.42370233099984, 206.57763208299968, 218.30213983099986, 210.11666170299998, 217.0816399109998, 223.00148909099983, 224.04281627500006, 213.53845140199985, 211.03801481599987, 229.7790959299997, 214.75871322699993, 207.85793869799988, 221.84180802599997, 214.87991940299992, 218.30213983099986, 220.37747093099995, 219.52244589600002, 211.5823069039999, 213.78093774299975, 212.50022831699982, 213.8416371479999, 220.86498320099997, 219.46176172599996, 225.26367324, 229.96337771399988, 219.52244589600002, 224.1649723889999, 217.20308376600008, 218.54526483099983, 217.68917138099994, 213.72023833800006, 223.06266449099996, 215.00143716299988, 218.36276483099994, 217.69370233099983, 213.72023833800006, 217.142517936, 213.59915080699977, 216.58602999599987, 226.5456885389998, 213.47806327599972, 200.35692594499994, 215.79695082599994, 211.21944551199988, 215.00143716299988, 220.7431834109999, 212.43958838699984, 218.6668273309998, 217.93713983099985, 213.65985021199992, 220.56032717100004, 228.74253892499985, 215.7361324709999, 218.36276483099994, 231.00399263899988, 221.65877366599977, 209.37939827899993, 217.0816399109998, 215.79695082599994, 224.1040513449999, 226.30058709499997, 219.40076475099988, 220.68212696099988, 221.65877366599977, 208.89663797299966, 213.96272467899996, 216.96019605599975, 211.15917572599994, 222.8794520109999, 212.31861950099994, 218.30213983099986, 220.62138362100006, 219.2180866309999, 216.96019605599975, 214.33433581899988, 207.7371350279999, 220.68212696099988, 221.84180802599997, 219.40076475099988, 208.89663797299966, 219.27908360599997, 215.4326644739998, 222.818276611, 216.89931803099978, 215.9790940019999, 214.63750705099972, 232.1019034689997, 220.62138362100006, 222.94062741100004, 220.37747093099995], \"power_mean\": 217.5121527757299, \"energy_millijoules\": 5500.970343459906, \"energy_joules\": 5.5009703434599055, \"coremark_score\": 9890.022945, \"coremarks_per_mhz\": 7.804626692708333, \"ulpmark_cm_score\": 45.44652750168424}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [999.775544248, 982.8087743799999, 967.8064438890001, 979.6261179139999, 977.203217664, 981.698013065, 989.8800038910001, 985.034005269, 982.7584296699999, 997.9649181300001, 990.9944750750001, 986.144409844, 975.4395560909999, 980.53690704, 990.9944750750001, 994.4268533000001, 981.7983256619999, 993.367306575, 990.892952225], \"power_mean\": 985.7447752108948, \"energy_millijoules\": 4928.723876054474, \"energy_joules\": 4.928723876054474}}, \"1555200\": {\"active\": {\"elapsed_sec\": 20.602349158, \"elapsed_ns\": 20602349158, \"power_samples\": [293.266411467, 287.7242808809998, 290.75427112299974, 290.9479991069999, 294.361085293, 273.48503766700003, 281.6028672189997, 297.77728319000005, 291.9780452279998, 292.0427912729998, 281.66674831499984, 295.45910811999977, 282.82975517099965, 297.9070368629999, 289.5952430629999, 280.4437202089997, 290.68991627899993, 286.8228236309998, 282.5090641009998, 295.45910811999977, 298.67629222699986, 296.55321151500004, 295.0702260239999, 294.1019579539999, 283.66797351599973, 275.87071741500006, 291.91329918300005, 290.6252297089999, 304.73560868699985, 281.474446459, 296.6181956549998, 293.0723272429999, 293.0723272429999, 287.27338685100005, 291.848885169, 295.329591737, 287.14470176099996, 295.39418345499996, 293.0723272429999, 288.36817860099984, 302.4174336169998, 293.0078540589999, 293.0723272429999, 296.22895731899996, 289.4016931989996, 291.848885169, 290.6252297089999, 289.53094738900006, 283.66797351599973, 296.3585923469999, 285.728328951, 289.53094738900006, 309.2448182129998, 284.82688293099966, 290.88364426299984, 295.329591737, 288.36817860099984, 295.13515068899994, 299.9003047319999, 287.14470176099996, 296.55321151500004, 295.0702260239999, 288.3036111759999, 279.4124273849999, 287.14470176099996, 283.53964436099966, 283.86063219599976, 302.09169462299985, 284.76249393099977, 287.08019381099973, 297.5174422869999, 276.583100427, 303.706868439, 292.6841587949999, 284.63404613099976, 287.33789480099983, 299.3800067129997, 288.3036111759999, 289.53094738900006, 303.31549149499995, 289.46632029399996], \"power_mean\": 290.910331253469, \"energy_millijoules\": 5993.436218153408, \"energy_joules\": 5.993436218153408, \"coremark_score\": 12141.816416, \"coremarks_per_mhz\": 7.8072379218106995, \"ulpmark_cm_score\": 41.712298404507855}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [991.044976185, 996.5998379660001, 995.486162735, 984.4264916079999, 994.12173666, 985.1346741899999, 980.4866812799999, 994.1726765100001, 979.2255594229998, 984.275536952, 985.1346741899999, 976.6537235910001, 989.9811473919999, 980.43645552, 975.688981722, 999.1260241550001, 990.79168969, 992.2569622799999, 987.2043720629999], \"power_mean\": 987.4867560058947, \"energy_millijoules\": 4937.433780029473, \"energy_joules\": 4.937433780029473}}, \"1708800\": {\"active\": {\"elapsed_sec\": 18.757955045, \"elapsed_ns\": 18757955045, \"power_samples\": [338.0332050629996, 337.83217007099995, 325.7734095929999, 341.31180675099984, 333.06048712799986, 336.87441429299986, 345.9462573509999, 333.3273543539998, 331.47659250499976, 342.47041940099996, 333.2604660389999, 343.6961102669999, 350.7197211360002, 335.3812734789998, 344.989748997, 338.99078272099985, 344.65302385999996, 339.5272361719998, 335.4479373109999, 334.6234374149998, 337.6982614889997, 350.3137301759999, 342.40305489599984, 345.9462573509999, 347.10487000099977, 341.24450172099966, 343.07566356899986, 335.3812734789998, 338.3199575, 354.0603446309998, 344.720161246, 336.60649048599987, 355.08706658699987, 338.0332050629996, 336.53976748399975, 331.4348766669997, 340.08215001099995, 337.83217007099995, 343.561608071, 335.4479373109999, 338.9235968359998, 338.9235968359998, 338.78956960900007, 336.60649048599987, 343.62903205099985, 342.3360358499998, 333.1270324259998, 345.67643200500004, 332.86016519999987, 340.0152494989999, 345.8787144209999, 358.6303964159998, 341.24450172099966, 352.83383200599985, 333.06048712799986, 331.8351642829997, 339.88075877899985, 338.78956960900007, 331.96847925099985, 342.3360358499998, 348.06464214100004, 339.94800413899986, 342.2686713449999, 333.1270324259998, 341.17754184499984, 351.60778623099975, 332.9267104979998, 339.94800413899986, 347.65936366099993, 339.813858267, 331.56819163499983, 344.45091956399995, 332.79327688499995, 334.0888835039999], \"power_mean\": 340.1226652467431, \"energy_millijoules\": 6380.005664483991, \"energy_joules\": 6.38000566448399, \"coremark_score\": 13335.467008, \"coremarks_per_mhz\": 7.80399520599251, \"ulpmark_cm_score\": 39.18491818772073}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [978.11448137, 988.466146704, 996.701694115, 986.29572074, 985.084210335, 986.194933174, 981.346532166, 983.7221227079999, 989.6270151340001, 977.9145680460001, 980.3864873279999, 986.144409844, 981.497129998, 989.5763133790001, 990.9944750750001, 986.093886514, 980.3362615679999, 989.4751698780001, 986.194933174], \"power_mean\": 985.4824469078948, \"energy_millijoules\": 4927.4122345394735, \"energy_joules\": 4.9274122345394735}}, \"1843200\": {\"active\": {\"elapsed_sec\": 17.38324343, \"elapsed_ns\": 17383243430, \"power_samples\": [389.512214688, 377.30118743499986, 390.87964480699986, 387.26550621299987, 383.717432646, 390.6009060789996, 376.5573590929997, 383.717432646, 391.34022123600005, 381.2626189609997, 377.9918598089997, 398.922148215, 385.825306396, 384.8064200809998, 384.66728758099987, 384.8064200809998, 375.46843053299983, 397.7638323299999, 374.44805979900013, 377.9918598089997, 396.99284324300004, 382.5592357109998, 384.8064200809998, 385.7560377259998, 390.4611784389998, 377.78458711299993, 388.1451408089998, 399.06234848299994, 374.310352243, 389.44276831399986, 379.7586099809997, 389.512214688, 385.7560377259998, 379.8969111509997, 392.84719883900004, 391.689120549, 379.9662395009997, 395.16715239699977, 385.825306396, 377.7153779079996, 383.78693942099983, 386.84810856499973, 389.30315962399993, 379.2882983549997, 388.21488567899985, 369.6054494199999, 385.8949321209999, 397.27300648899984, 381.05481132099965, 380.5197997109998, 386.84810856499973, 390.4611784389998, 383.99510330099986, 379.3433509409996, 382.2821587909999, 395.0970504819999, 395.16715239699977, 380.1045406709999, 375.9513536999999, 383.44011843600003, 376.6956585529998, 382.5592357109998, 385.7560377259998, 383.578775541, 387.0568073889998, 399.66294323299996, 380.1045406709999, 394.8874637309999], \"power_mean\": 385.39826762823515, \"energy_millijoules\": 6699.471903681901, \"energy_joules\": 6.699471903681901, \"coremark_score\": 14390.973981, \"coremarks_per_mhz\": 7.807603071289062, \"ulpmark_cm_score\": 37.31637412534036}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [982.607653718, 994.12173666, 995.0789527400001, 985.942575618, 988.466146704, 982.557567186, 989.5763133790001, 1001.1409809569999, 975.5892627389999, 985.993098948, 994.0201181900001, 980.2360676159999, 974.4781851019999, 987.355861079, 984.882872493, 983.772268604, 986.144409844, 982.607653718, 983.7221227079999], \"power_mean\": 986.2259920001579, \"energy_millijoules\": 4931.12996000079, \"energy_joules\": 4.931129960000789}}, \"1900800\": {\"active\": {\"elapsed_sec\": 16.863637025, \"elapsed_ns\": 16863637025, \"power_samples\": [390.6009060789996, 398.78158753499986, 400.7505033929998, 403.13682216799964, 401.0317403099999, 403.27749740499996, 402.5737595869997, 396.81564081299996, 397.34322735399985, 398.6413872669999, 405.59365398499983, 405.4527414579999, 390.53104225899995, 409.8052381709998, 402.0489601549999, 396.18526770899996, 400.1542411490001, 391.6191972539999, 400.89094134000004, 406.4734661309998, 399.3119646189999, 391.54963254000006, 405.3118289309997, 411.2463362719999, 398.29070639099984, 400.68046493099985, 389.2337132499998, 401.978862523, 399.452283921, 392.49800276099984, 405.3821040729998, 412.12068227099996, 400.3288285289999, 389.16390890499986, 412.33330148699986, 395.02730806399984, 393.65958029099977, 398.4309066589998, 396.0453047309999, 399.2416246089998, 408.9304169819999, 394.8874637309999, 392.70759218499995, 410.9629602209999, 399.59260322299986, 397.13292486600005, 404.3649977849997, 393.79930597899977, 399.73292252499994, 404.08341002099985, 401.90840356299975, 396.0453047309999, 413.35325423100005, 394.817361816, 399.59260322299986, 399.5226239309999, 407.7017008069996, 404.08341002099985, 401.41627482699994, 401.7678469709998, 396.1151063189999, 404.22420390299965, 404.29478181299976, 404.15398793099973, 407.77245733699976, 401.2753569069997], \"power_mean\": 400.56415822922713, \"energy_millijoules\": 6754.9685696023525, \"energy_joules\": 6.754968569602353, \"coremark_score\": 14835.034417, \"coremarks_per_mhz\": 7.804626692445287, \"ulpmark_cm_score\": 37.00979470504285}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [976.4540475570001, 985.942575618, 994.1726765100001, 984.882872493, 992.9610463500001, 987.305278274, 985.993098948, 991.8511769400001, 977.7645045740001, 981.597442595, 996.548778971, 988.263837288, 974.6277136299999, 994.2742949800001, 985.841788052, 980.286035808, 996.446922822, 975.5892627389999, 974.8768424959999], \"power_mean\": 985.5621156128948, \"energy_millijoules\": 4927.810578064474, \"energy_joules\": 4.927810578064474}}, \"1996800\": {\"active\": {\"elapsed_sec\": 16.04632416, \"elapsed_ns\": 16046324160, \"power_samples\": [443.32592775499995, 444.41092992999995, 442.1682648750001, 454.7637550469998, 445.8628373309999, 450.27570065099997, 445.8580668809999, 436.1597927869999, 450.05719997099993, 445.7173965809999, 441.95101161900004, 439.63604209899984, 458.2401820629999, 447.451246686, 452.52174460699973, 460.5552699230001, 445.35454055599996, 433.9887038639996, 444.3382692250001, 438.550549575, 433.77269803199977, 450.1297841009999, 458.0204333749997, 448.82681641099987, 451.14166698099996, 441.80592810899986, 448.82681641099987, 452.30288710299976, 443.10849637900003, 446.657152311, 451.36034578099964, 447.5240860109999, 446.221592901, 438.47855733899985, 448.9722401709997, 447.74223045099995, 464.175246443, 434.13258446099996, 446.72993216099997, 455.2634990559999, 432.54320698699973, 450.4942013309998, 451.36034578099964, 439.7805163099998, 447.74223045099995, 454.7637550469998, 452.0840295989998, 447.8875355659999, 446.4391859909998, 444.12065972899984, 441.22767713099995, 445.1367523559999, 445.427260931, 459.25123365, 458.167183355, 446.72993216099997, 445.935184781, 444.19332043399993, 444.19332043399993, 447.0206783309999, 456.93258824299994, 438.47855733899985, 451.14166698099996], \"power_mean\": 447.1020864909999, \"energy_millijoules\": 7174.345012446942, \"energy_joules\": 7.174345012446942, \"coremark_score\": 15591.867282, \"coremarks_per_mhz\": 7.808427124399039, \"ulpmark_cm_score\": 34.84638661317083}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [992.5547861250001, 977.8143544260001, 995.0789527400001, 986.8508112259999, 988.2134547119999, 989.5258716330001, 984.681275862, 979.075317831, 996.1921515290001, 978.9250762389998, 978.825000932, 997.5564946620001, 982.4568777659999, 990.48764177, 989.4244681230001, 982.4568777659999, 988.263837288, 993.9691783400001, 981.195934334], \"power_mean\": 987.0288612265264, \"energy_millijoules\": 4935.144306132632, \"energy_joules\": 4.935144306132631}}, \"2112000\": {\"active\": {\"elapsed_sec\": 15.175598432, \"elapsed_ns\": 15175598432, \"power_samples\": [509.8250264269999, 519.548030923, 524.8022522889997, 518.7839190909998, 522.6377352199999, 519.013113395, 525.8059436909999, 521.0977009409997, 516.6191637059998, 513.148134081, 513.452277621, 514.2288531310002, 515.309453231, 517.8560443499999, 536.376736408, 529.0459969229997, 513.543409411, 524.418907803, 512.8435996109998, 509.9767418729999, 519.7880259869997, 514.152562306, 526.8093978029998, 520.8681503969998, 524.3420813130002, 524.188822315, 527.966229558, 517.550950872, 519.4058695339999, 509.44554280499995, 516.3903262260002, 525.4987941179999, 518.554724787, 526.7324523629999, 531.3633341789999, 521.8718418829998, 523.262135523, 521.7955279089998, 523.0322281550001, 516.466344156, 520.6389929189996, 517.3219346879999, 517.169387949, 520.7918955929998, 522.0248632019999, 526.5789560749998, 524.2656488050001, 522.9558548170002, 509.1417218989999, 525.4987941179999, 509.36949007500004, 522.0248632019999, 520.8681503969998, 512.539456071, 527.73560971, 518.6312537069999, 517.4744814269999, 524.188822315, 529.8217326149996, 503.35875109899996], \"power_mean\": 520.0036507166333, \"energy_millijoules\": 7891.366586449615, \"energy_joules\": 7.891366586449615, \"coremark_score\": 16487.502473, \"coremarks_per_mhz\": 7.8065826103219695, \"ulpmark_cm_score\": 31.680190910060976}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [984.681275862, 984.5301430859998, 977.51448444, 976.404000222, 992.80866615, 982.306359992, 990.386379235, 984.6310707959999, 983.5711680519998, 985.791523816, 982.306359992, 984.5806069409999, 977.864461236, 985.942575618, 992.80866615, 984.7819447830001, 989.2728828760002, 976.4540475570001, 989.3233246220001], \"power_mean\": 984.5242074434736, \"energy_millijoules\": 4922.621037217368, \"energy_joules\": 4.922621037217368}}, \"2208000\": {\"active\": {\"elapsed_sec\": 14.526764162, \"elapsed_ns\": 14526764162, \"power_samples\": [549.883068747, 526.5020106349999, 538.1530770389996, 540.311463503, 547.5657314909998, 534.5249966349999, 536.9189422989999, 529.9755852269999, 533.1369506129998, 544.1732528010001, 535.9130018640002, 538.2302199749998, 539.3869327799999, 541.467998493, 525.6525660479998, 533.2138566749999, 539.232130619, 532.211926655, 546.1754876909998, 532.0574406349998, 542.705705211, 546.331002111, 541.467998493, 531.1321793869998, 539.1549285129998, 540.0788831669998, 541.778077395, 548.5667520609996, 531.0553916649998, 536.454157843, 555.432033083, 533.3684616449999, 529.9755852269999, 549.649062283, 533.599576254, 527.6586047949999, 549.804933027, 541.7003583900001, 535.9130018640002, 546.2534447909997, 551.0398410269999, 535.758556027, 543.7070222409999, 527.8892246429999, 545.0967911559998, 550.7278622489999, 539.3869327799999, 538.3077605549998, 558.1211030729997, 531.3633341789999, 538.6946681669998, 548.3329243009997, 540.2338039729999, 542.7834838859998, 542.705705211, 530.5930820809998, 537.1509882749998], \"power_mean\": 539.4501730079648, \"energy_millijoules\": 7836.465440436803, \"energy_joules\": 7.836465440436803, \"coremark_score\": 17224.748519, \"coremarks_per_mhz\": 7.801063640851449, \"ulpmark_cm_score\": 31.902137755879014}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [991.29318952, 991.3945707, 978.274200849, 985.5896895899999, 974.1793840879999, 980.035422144, 982.05489462, 980.9953091399999, 990.3356178099999, 985.287067798, 975.140142795, 992.6056665000001, 992.5547861250001, 979.6846145279999, 983.5711680519998, 976.304162205, 987.6574284480001, 997.1994518100001, 978.624593055], \"power_mean\": 984.3569136724736, \"energy_millijoules\": 4921.784568362368, \"energy_joules\": 4.921784568362368}}, \"2323200\": {\"active\": {\"elapsed_sec\": 13.913091453, \"elapsed_ns\": 13913091453, \"power_samples\": [588.9960163949999, 593.2212329189998, 587.3558554349999, 586.3596973049997, 589.9925849019997, 593.2212329189998, 585.1233600149998, 600.6465040919999, 601.4037106169995, 581.6544678299998, 587.2761668309998, 592.305535932, 592.6596912149997, 586.3596973049997, 594.4579867289996, 585.1233600149998, 581.9732665689997, 601.2420833069997, 583.9670626199999, 588.9162684270001, 589.512096566, 585.1233600149998, 582.7309037549998, 596.452602771, 585.880278857, 589.316241483, 588.5158842989998, 588.5158842989998, 586.3596973049997, 586.0399481859998, 587.1159680909999, 596.1311269470001, 596.452602771, 590.587937851, 589.316241483, 584.0469835649998, 580.2555612559996, 590.9889161189998, 599.7598667489998, 585.880278857, 605.7053475259999, 599.0872055429996, 590.828360139, 597.0158052749999, 591.7439976509999, 598.8455358309999, 591.984598059, 583.7277096359998, 588.3559772909997, 598.684146811, 605.786399081, 601.1616840809996, 584.8038484909999, 591.984598059, 587.2761668309998], \"power_mean\": 590.8769007801635, \"energy_millijoules\": 8220.924358019622, \"energy_joules\": 8.220924358019621, \"coremark_score\": 17984.317675, \"coremarks_per_mhz\": 7.741183572227961, \"ulpmark_cm_score\": 30.410205606152022}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [993.7659414, 992.4532863000001, 986.8508112259999, 980.9953091399999, 984.4799380199998, 990.2851166999999, 977.7645045740001, 999.5198826599999, 987.8594781600001, 982.10523933, 990.18359385, 991.4959518799999, 991.54677278, 987.9101204400001, 982.10523933, 990.234355275, 985.841788052, 984.4799380199998, 977.7645045740001], \"power_mean\": 987.2443037742631, \"energy_millijoules\": 4936.221518871315, \"energy_joules\": 4.936221518871315}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm7125/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 250 ms\nBaseline power usage: 970 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 768 1017 1248 1324 1516 1612 1708 1804\n\n 300:  1114     3.7 C/MHz     34 mW    7.5 J   33.2 I/mJ   224.5 s\n 576:  2139     3.7 C/MHz     53 mW    6.1 J   40.7 I/mJ   116.9 s\n 768:  2852     3.7 C/MHz     64 mW    5.6 J   44.3 I/mJ    87.7 s\n1017:  3320     3.3 C/MHz     73 mW    5.5 J   45.6 I/mJ    75.3 s\n1248:  4633     3.7 C/MHz     97 mW    5.2 J   47.9 I/mJ    54.0 s\n1324:  4919     3.7 C/MHz    101 mW    5.1 J   48.7 I/mJ    50.8 s\n1516:  5632     3.7 C/MHz    114 mW    5.1 J   49.3 I/mJ    44.4 s\n1612:  5988     3.7 C/MHz    124 mW    5.2 J   48.2 I/mJ    41.8 s\n1708:  6344     3.7 C/MHz    133 mW    5.3 J   47.5 I/mJ    39.4 s\n1804:  6701     3.7 C/MHz    153 mW    5.7 J   43.7 I/mJ    37.3 s\n\n\n===== CPU 6 =====\nFrequencies: 652 825 979 1113 1267 1555 1708 1843 1900 1996 2112 2208 2323\n\n 652:  5093     7.8 C/MHz    110 mW    5.4 J   46.4 I/mJ    49.1 s\n 825:  6444     7.8 C/MHz    132 mW    5.1 J   48.7 I/mJ    38.8 s\n 979:  7644     7.8 C/MHz    161 mW    5.3 J   47.6 I/mJ    32.7 s\n1113:  8644     7.8 C/MHz    185 mW    5.4 J   46.6 I/mJ    28.9 s\n1267:  9890     7.8 C/MHz    218 mW    5.5 J   45.4 I/mJ    25.3 s\n1555: 12142     7.8 C/MHz    291 mW    6.0 J   41.7 I/mJ    20.6 s\n1708: 13335     7.8 C/MHz    340 mW    6.4 J   39.2 I/mJ    18.8 s\n1843: 14391     7.8 C/MHz    385 mW    6.7 J   37.3 I/mJ    17.4 s\n1900: 14835     7.8 C/MHz    401 mW    6.8 J   37.0 I/mJ    16.9 s\n1996: 15592     7.8 C/MHz    447 mW    7.2 J   34.8 I/mJ    16.0 s\n2112: 16488     7.8 C/MHz    520 mW    7.9 J   31.7 I/mJ    15.2 s\n2208: 17225     7.8 C/MHz    539 mW    7.8 J   31.9 I/mJ    14.5 s\n2323: 17984     7.7 C/MHz    591 mW    8.2 J   30.4 I/mJ    13.9 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm7125/main/uptime.txt",
    "content": " 14:16:46 up 22 min,  load average: 1.01, 0.99, 0.82\n"
  },
  {
    "path": "results/sm7125/main/versions.txt",
    "content": "Kernel: Linux version 4.14.209-positron-alpha/021975df (dereference23@github.com) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project f502b14d40e751fe00afc493ef0d08f196524886), LLD 12.0.0 (https://github.com/llvm/llvm-project f502b14d40e751fe00afc493ef0d08f196524886)) #1 SMP PREEMPT Tue Dec 8 17:42:38 UTC 2020\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm7150/main/cmdline.txt",
    "content": "ramoops_memreserve=4M rcu_nocbs=0-7 console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0x880000 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.usbcontroller=a600000.dwc3 service_locator.enable=1 lpm_levels.sleep_disabled=1 loop.max_part=7 buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=green  androidboot.keymaster=1 root=PARTUUID=605d118e-3d23-fc84-e5ae-711fbf93c0fa androidboot.bootdevice=1d84000.ufshc androidboot.serialno=REDACTED androidboot.ramdump=disable androidboot.secureboot=1 androidboot.cpuid=REDACTED androidboot.hwversion=5.19.0 androidboot.hwc=GLOBAL androidboot.hwlevel=MP androidboot.baseband=msm msm_drm.dsi_display0=dsi_ss_fhd_ea_f10_cmd_display: skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=0 androidboot.dtb_idx=0 androidboot.dp=0x0\n"
  },
  {
    "path": "results/sm7150/main/cpufreq_stats/0/time_in_state",
    "content": "300000 96180\n576000 14866\n768000 11336\n1017600 8769\n1248000 7310\n1324800 6934\n1497600 6229\n1612800 5828\n1708800 5552\n1804800 5542\n"
  },
  {
    "path": "results/sm7150/main/cpufreq_stats/0/total_trans",
    "content": "13\n"
  },
  {
    "path": "results/sm7150/main/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    576000    768000   1017600   1248000   1324800   1497600   1612800   1708800   1804800 \n   300000:         0         1         0         0         0         0         0         0         0         1 \n   576000:         0         0         1         0         0         0         0         0         0         0 \n   768000:         0         0         0         1         0         0         0         0         0         0 \n  1017600:         0         0         0         0         1         0         0         0         0         0 \n  1248000:         0         0         0         0         0         1         0         0         0         0 \n  1324800:         0         0         0         0         0         0         1         0         0         0 \n  1497600:         0         0         0         0         0         0         0         1         0         1 \n  1612800:         0         0         0         0         0         0         0         0         1         0 \n  1708800:         0         0         0         0         0         0         0         0         0         1 \n  1804800:         2         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm7150/main/cpufreq_stats/6/time_in_state",
    "content": "300000 13689\n652800 6720\n806400 5611\n979200 4753\n1094400 4349\n1209600 4021\n1324800 3744\n1555200 3315\n1708800 3087\n1843200 2911\n1939200 2810\n2169600 2608\n2208000 110928\n"
  },
  {
    "path": "results/sm7150/main/cpufreq_stats/6/total_trans",
    "content": "15\n"
  },
  {
    "path": "results/sm7150/main/cpufreq_stats/6/trans_table",
    "content": "   From  :    To\n         :    300000    652800    806400    979200   1094400   1209600   1324800   1555200   1708800   1843200   1939200   2169600   2208000 \n   300000:         0         1         0         0         0         0         0         0         0         0         0         0         1 \n   652800:         0         0         1         0         0         0         0         0         0         0         0         0         0 \n   806400:         0         0         0         1         0         0         0         0         0         0         0         0         0 \n   979200:         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1094400:         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1209600:         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1324800:         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1555200:         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1708800:         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  1843200:         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  1939200:         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2169600:         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2208000:         2         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm7150/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 14 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nHardware\t: Qualcomm Technologies, Inc SDMMAGPIE\n"
  },
  {
    "path": "results/sm7150/main/device.txt",
    "content": "Model: DAVINCI;\nCompatible: qcom,sdmmagpie-qrd;qcom,sdmmagpie;qcom,qrd;\n"
  },
  {
    "path": "results/sm7150/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Linux version 4.14.237-OrokinKernel (Orokin@Shadowfax-FX505DY) (Proton clang version 13.0.0 (https://github.com/llvm/llvm-project b4fd512c36ca344a3ff69350219e8b0a67e9472a), LLD 13.0.0 (https://github.com/llvm/llvm-project b4fd512c36ca344a3ff69350219e8b0a67e9472a)) #1 SMP PREEMPT Mon Jul 19 20:17:42 +08 2021\n[    0.000000] Boot CPU: AArch64 Processor [51df805e]\n[    0.000000] memblock_reserve: 0x8bb30 setup_arch+0xb0/0x570\n[    0.000000] Machine: Qualcomm Technologies, Inc. SDMMAGPIE PM6150 DAVINCI\n[    0.000000] ramoops: msm_reserve_ramoops_memory addr=b0000000,size=400000\n[    0.000000] ramoops: msm_reserve_ramoops_memory record_size=0,ftrace_size=0\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff800000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe400000, size 12 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f8800000, size 92 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f7800000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f5800000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085700000, size 6 MiB\n[    0.000000] OF: reserved mem: initialized node hyp_region@85700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085d00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node xbl_dump_mem@85d00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085e00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node xbl_aop_mem@85e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085fff000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node sec_apps_region@85fff000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086000000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node smem@86000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086200000, size 73 MiB\n[    0.000000] OF: reserved mem: initialized node removed_region@86200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ab00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node camera_region@8ab00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b000000, size 132 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@8b000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093400000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region@93400000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093900000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_regions@93900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000095700000, size 38 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region@95700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097d00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_msa_region@97500000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097e80000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node npu_region@97680000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097f00000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ips_fw_region@97700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097f10000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_gsi_region@97710000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097f15000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@97715000, compatible id removed-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x000000009e400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@9e400000, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000009f800000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_sec_regions@0x9f800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000af000000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node ramdump_fb_region@af000000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 1466857\n[    0.000000]   DMA zone: 6744 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 431593 pages, LIFO batch:63\n[    0.000000]   Normal zone: 16176 pages used for memmap\n[    0.000000]   Normal zone: 1035264 pages, LIFO batch:63\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.1\n[    0.000000] random: fast init done\n[    0.000000] random: get_random_bytes called from start_kernel+0x94/0x510 with crng_init=1\n[    0.000000] percpu: Embedded 21 pages/cpu s49048 r8192 d28776 u86016\n[    0.000000] pcpu-alloc: s49048 r8192 d28776 u86016 alloc=21*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] CPU features: detected: Hardware dirty bit management\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1443937\n[    0.000000] Kernel command line: ramoops_memreserve=4M rcu_nocbs=0-7 console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0x880000 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.usbcontroller=a600000.dwc3 service_locator.enable=1 lpm_levels.sleep_disabled=1 loop.max_part=7 buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=green  androidboot.keymaster=1 root=PARTUUID=605d118e-3d23-fc84-e5ae-711fbf93c0fa androidboot.bootdevice=1d84000.ufshc androidboot.serialno=REDACTED androidboot.ramdump=disable androidboot.secureboot=1 androidboot.cpuid=REDACTED androidboot.hwversion=5.19.0 androidboot.hwc=GLOBAL androidboot.hwlevel=MP androidboot.baseband=msm msm_drm.dsi_display0=dsi_ss_fhd_ea_f10_cmd_display: skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=0 androidboot.dtb_idx=0 androidboot.dp=0x0\n[    0.000000] parse_hwversion: socinfo: hwversion:5.19.0,strlen-is: 6\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 131072 bytes\n[    0.000000] log_buf_len: 1048576 bytes\n[    0.000000] early log buf free: 123064(93%)\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off\n[    0.000000] software IO TLB: mapped [mem 0xf1800000-0xf5800000] (64MB)\n[    0.000000] Memory: 5430812K/5867428K available (24062K kernel code, 3104K rwdata, 8524K rodata, 6144K init, 7066K bss, 268680K reserved, 167936K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000017a60000\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000015] clocksource: Switched to clocksource arch_sys_counter\n[    0.002020] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.002032] pid_max: default: 32768 minimum: 301\n[    0.002124] Security Framework initialized\n[    0.002132] SELinux:  Initializing.\n[    0.002184] SELinux:  Starting in permissive mode\n[    0.002225] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.002239] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.003271] ASID allocator initialised with 65536 entries\n[    0.003334] Hierarchical SRCU implementation.\n[    0.006198] MSM Memory Dump base table set up\n[    0.006211] MSM Memory Dump apps data table set up\n[    0.006545] smp: Bringing up secondary CPUs ...\n[    0.018179] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000\n[    0.018230] CPU1: Booted secondary processor [51df805e]\n[    0.027615] GICv3: CPU2: found redistributor 200 region 0:0x0000000017aa0000\n[    0.027652] CPU2: Booted secondary processor [51df805e]\n[    0.037064] GICv3: CPU3: found redistributor 300 region 0:0x0000000017ac0000\n[    0.037096] CPU3: Booted secondary processor [51df805e]\n[    0.046535] SSBD disabled by kernel configuration\n[    0.046538] CPU features: enabling workaround for Speculative Store Bypass Disable\n[    0.046562] GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000\n[    0.046592] CPU4: Booted secondary processor [51df805e]\n[    0.056136] GICv3: CPU5: found redistributor 500 region 0:0x0000000017b00000\n[    0.056167] CPU5: Booted secondary processor [51df805e]\n[    0.066521] CPU features: Unsupported CPU feature variation detected.\n[    0.066554] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000\n[    0.066607] CPU6: Booted secondary processor [51df804e]\n[    0.076796] GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000\n[    0.076852] CPU7: Booted secondary processor [51df804e]\n[    0.077019] smp: Brought up 1 node, 8 CPUs\n[    0.077023] SMP: Total of 8 processors activated.\n[    0.077027] CPU features: detected: GIC system register CPU interface\n[    0.077029] CPU features: detected: Privileged Access Never\n[    0.077031] CPU features: detected: User Access Override\n[    0.077032] CPU features: detected: 32-bit EL0 Support\n[    0.158115] CPU: All CPU(s) started at EL1\n[    0.158165] alternatives: patching kernel code\n[    0.159595] scm_enable_mem_protection: SCM call failed\n[    0.208548] Registered cp15_barrier emulation handler\n[    0.208563] Registered setend emulation handler\n[    0.208684] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.208692] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.211797] ramoops: msm_register_ramoops_device\n[    0.211878] pinctrl core: initialized pinctrl subsystem\n[    0.212416] NET: Registered protocol family 16\n[    0.266621] console [pstore-1] enabled\n[    0.266680] pstore: Registered ramoops as persistent store backend\n[    0.266684] ramoops: attached 0x400000@0xb0000000, ecc: 0/0\n[    0.267124] cpuidle: using governor qcom\n[    0.267204] NET: Registered protocol family 42\n[    0.270771] vdso32: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.270777] vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.270781] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.271618] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.272297] exit: IPA_USB init success!\n[    0.274019] sps:sps is ready.\n[    0.275612] msm_watchdog 17c10000.qcom,wdt: wdog absent resource not present\n[    0.276455] msm_watchdog 17c10000.qcom,wdt: MSM Watchdog Initialized\n[    0.284305] platform soc:qcom,smem: assigned reserved memory node smem@86000000\n[    0.284618] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.288619] platform 86d00000.qseecom: assigned reserved memory node qseecom_region@9e400000\n[    0.289074] platform 62400000.qcom,lpass: assigned reserved memory node pil_adsp_region@95700000\n[    0.289637] platform 8300000.qcom,turing: assigned reserved memory node cdsp_regions@93900000\n[    0.289752] platform 4080000.qcom,mss: assigned reserved memory node modem_region@8b000000\n[    0.289820] platform aae0000.qcom,venus: assigned reserved memory node pil_video_region@93400000\n[    0.289887] platform 9800000.qcom,npu: assigned reserved memory node npu_region@97680000\n[    0.292360] platform soc:qcom,ipa_fws: assigned reserved memory node ips_fw_region@97700000\n[    0.300133] spmi spmi-0: PMIC arbiter version v5 (0x50000000)\n[    0.304597] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.306257] sdmmagpie-pinctrl 3400000.pinctrl: invalid resource\n[    0.310116] rpmh_regulator_probe: smpf1: could not find RPMh address for resource\n[    0.310234] rpmh_regulator_probe: smpf2: could not find RPMh address for resource\n[    0.314490] pm6150_l17: supplied by pm6150_l11\n[    0.318840] rpmh_regulator_probe: ldof1: could not find RPMh address for resource\n[    0.318961] rpmh_regulator_probe: ldof2: could not find RPMh address for resource\n[    0.319076] rpmh_regulator_probe: ldof4: could not find RPMh address for resource\n[    0.319188] rpmh_regulator_probe: ldof5: could not find RPMh address for resource\n[    0.319306] rpmh_regulator_probe: ldof6: could not find RPMh address for resource\n[    0.319417] rpmh_regulator_probe: ldof7: could not find RPMh address for resource\n[    0.324248] OF: amba_device_add() failed (-16) for /soc/cti@6867000\n[    0.341641] gpu_cx_gdsc: supplied by pm6150l_s2_level\n[    0.343061] clk: add_opp: Set OPP pair (300000000 Hz, 572000 uv) on cpu0\n[    0.343252] clk: add_opp: Set OPP pair (1804800000 Hz, 828000 uv) on cpu0\n[    0.343296] clk: add_opp: Set OPP pair (300000000 Hz, 572000 uv) on cpu1\n[    0.343483] clk: add_opp: Set OPP pair (1804800000 Hz, 828000 uv) on cpu1\n[    0.343524] clk: add_opp: Set OPP pair (300000000 Hz, 572000 uv) on cpu2\n[    0.343722] clk: add_opp: Set OPP pair (1804800000 Hz, 828000 uv) on cpu2\n[    0.343759] clk: add_opp: Set OPP pair (300000000 Hz, 572000 uv) on cpu3\n[    0.343953] clk: add_opp: Set OPP pair (1804800000 Hz, 828000 uv) on cpu3\n[    0.343987] clk: add_opp: Set OPP pair (300000000 Hz, 572000 uv) on cpu4\n[    0.344183] clk: add_opp: Set OPP pair (1804800000 Hz, 828000 uv) on cpu4\n[    0.344219] clk: add_opp: Set OPP pair (300000000 Hz, 572000 uv) on cpu5\n[    0.344417] clk: add_opp: Set OPP pair (1804800000 Hz, 828000 uv) on cpu5\n[    0.344455] clk: add_opp: Set OPP pair (300000000 Hz, 580000 uv) on cpu6\n[    0.344709] clk: add_opp: Set OPP pair (2208000000 Hz, 884000 uv) on cpu6\n[    0.344754] clk: add_opp: Set OPP pair (300000000 Hz, 580000 uv) on cpu7\n[    0.345003] clk: add_opp: Set OPP pair (2208000000 Hz, 884000 uv) on cpu7\n[    0.345184] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.345187] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on soc:qcom,cpu6-cpu-l3-lat\n[    0.345189] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.345816] clk: add_opp: Set OPP pair (1459200000 Hz, 772000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.345819] clk: add_opp: Set OPP pair (1459200000 Hz, 772000 uv) on soc:qcom,cpu6-cpu-l3-lat\n[    0.345822] clk: add_opp: Set OPP pair (1459200000 Hz, 772000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.346271] sched-energy: Sched-energy-costs installed from DT\n[    0.346294] cpufreq: driver osm-cpufreq up and running\n[    0.346296] clk: clk_cpu_osm_driver_probe: OSM CPUFreq driver inited\n[    0.355183] cam_cc-sdmmagpie ad00000.qcom,camcc: Registered Camera CC clocks\n[    0.356289] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.357895] clk-rpmh soc:qcom,rpmh: Registered RPMh clocks\n[    0.359884] disp_cc-sdmmagpie af00000.qcom,dispcc: Registered Display CC clocks\n[    0.375116] gcc-sdmmagpie 100000.qcom,gcc: Registered GCC clocks\n[    0.377261] gpu_cc_gmu_clk_src: set OPP pair(19200000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.377283] gpu_cc_gmu_clk_src: set OPP pair(200000000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.377699] gpu_cc_gx_gfx3d_clk_src: set OPP pair(180000000 Hz: 49 uV) on 5000000.qcom,kgsl-3d0\n[    0.377865] gpu_cc_gx_gfx3d_clk_src: set OPP pair(700000000 Hz: 385 uV) on 5000000.qcom,kgsl-3d0\n[    0.377917] gpu_cc_gx_gfx3d_clk_src: set OPP pair(825000000 Hz: 417 uV) on 5000000.qcom,kgsl-3d0\n[    0.378074] gpu_cc-sdmmagpie 5090000.qcom,gpucc: Registered GPU CC clocks\n[    0.379927] video_cc-sdmmagpie ab00000.qcom,videocc: Registered Video CC clocks\n[    0.383916] KPI: Bootloader start count = 63497\n[    0.383919] KPI: Bootloader end count = 104777\n[    0.383920] KPI: Bootloader load kernel count = 1155233667\n[    0.383924] KPI: Kernel MPM timestamp = 124789\n[    0.383926] KPI: Kernel MPM Clock frequency = 32768\n[    0.383939] socinfo_print: v0.15, id=365, ver=1.0, raw_id=230, raw_ver=0, hw_plat=39, hw_plat_ver=1638400\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65576, pmic_die_revision=131072 foundry_id=3 serial_number=3839921280 num_pmics=2 chip_family=0x60 raw_device_family=0x6 raw_device_number=0xc nproduct_id=0x40f num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xc ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.383992] msm_bus_fabric_rpmh_init_driver\n[    0.384119] msm_bus: Probe started\n[    0.384590] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.384654] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.384668] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.384720] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.386663] msm_bus: DT Parsing complete\n[    0.389258] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.389402] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.389436] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.389569] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.401067] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_actuator_tele_en, deferring probe\n[    0.402000] arm-smmu 5040000.arm,smmu-kgsl: \tnon-coherent table walk\n[    0.402004] arm-smmu 5040000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by FW configuration)\n[    0.402008] arm-smmu 5040000.arm,smmu-kgsl: \tstream matching with 5 register groups\n[    0.403748] register_client_adhoc:find path.src 161 dest 627\n[    0.403911] register_client_adhoc:Client handle 1 apps_smmu\n[    0.404030] arm-smmu 15000000.apps-smmu: \tnon-coherent table walk\n[    0.404033] arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.404037] arm-smmu 15000000.apps-smmu: \tstream matching with 79 register groups\n[    0.404877] register_client_adhoc:find path.src 161 dest 627\n[    0.405010] register_client_adhoc:Client handle 2 apps_smmu\n[    0.405253] register_client_adhoc:find path.src 161 dest 627\n[    0.405375] register_client_adhoc:Client handle 3 apps_smmu\n[    0.405583] register_client_adhoc:find path.src 22 dest 773\n[    0.405650] register_client_adhoc:Client handle 4 mnoc_hf_0_tbu\n[    0.405840] register_client_adhoc:find path.src 22 dest 773\n[    0.405899] register_client_adhoc:Client handle 5 mnoc_hf_1_tbu\n[    0.406094] register_client_adhoc:find path.src 137 dest 772\n[    0.406157] register_client_adhoc:Client handle 6 mnoc_sf_0_tbu\n[    0.406305] register_client_adhoc:find path.src 154 dest 10076\n[    0.406350] register_client_adhoc:Client handle 7 apps_smmu\n[    0.406537] register_client_adhoc:find path.src 161 dest 627\n[    0.406666] register_client_adhoc:Client handle 8 apps_smmu\n[    0.406861] register_client_adhoc:find path.src 161 dest 627\n[    0.406979] register_client_adhoc:Client handle 9 apps_smmu\n[    0.407721] SCSI subsystem initialized\n[    0.407819] usbcore: registered new interface driver usbfs\n[    0.407837] usbcore: registered new interface driver hub\n[    0.407857] usbcore: registered new device driver usb\n[    0.408249] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.408771] [mi-touch] xiaomi_touch_probe: enter\n[    0.408836] [mi-touch] xiaomi_touch_probe: over\n[    0.409115] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.409140] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.409300] input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800/input/input0\n[    0.410274] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150l@4:qcom,power-on@800: PMIC@SID4 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'cold' boot\n[    0.410298] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150l@4:qcom,power-on@800: PMIC@SID4: Power-off reason: Triggered from SOFT (Software)\n[    0.410527] media: Linux media interface: v0.10\n[    0.410542] Linux video capture interface: v2.00\n[    0.410569] pps_core: LinuxPPS API ver. 1 registered\n[    0.410571] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>\n[    0.410578] PTP clock support registered\n[    0.415108] thermal_sys: Thermal: Can not parse thermal message node, return -22\n[    0.422162] iommu: Adding device 8c0000.qcom,qupv3_0_geni_se:qcom,iommu_qupv3_0_geni_se_cb to group 0\n[    0.422515] iommu: Adding device ac0000.qcom,qupv3_1_geni_se:qcom,iommu_qupv3_1_geni_se_cb to group 1\n[    0.423217] PMIC@SID0: PM6150 v2.0 options: 0, 0, 0, 0\n[    0.423332] PMIC@SID4: PM8150A v2.0 options: 0, 0, 0, 0\n[    0.423383] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.423385] read failed rc=-5\n[    0.423387] Invalid REVID peripheral type: 00\n[    0.423396] qcom,qpnp-revid: probe of c440000.qcom,spmi:qcom,pm8009@a:qcom,revid@100 failed with error -22\n[    0.423854] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@9e400000\n[    0.423928] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.424000] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.424064] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.424292] ION heap system created\n[    0.424372] ION heap qsecom created at 0x000000009e400000 with size 1400000\n[    0.424375] ION heap qsecom_ta created at 0x00000000f7800000 with size 1000000\n[    0.424378] ION heap spss created at 0x00000000ff000000 with size 800000\n[    0.424381] ION heap secure_display created at 0x00000000f8800000 with size 5c00000\n[    0.447586] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x9f800000, size 0x1e00000\n[    0.447589] ION heap secure_carveout created\n[    0.447594] ION heap secure_heap created\n[    0.448331] register_client_adhoc:find path.src 90 dest 512\n[    0.448689] register_client_adhoc:find path.src 90 dest 585\n[    0.448803] register_client_adhoc:find path.src 1 dest 676\n[    0.449004] register_client_adhoc:find path.src 143 dest 777\n[    0.449065] register_client_adhoc:Client handle 10 ipa\n[    0.450561] ipa ipa3_smp2p_probe:8666 fail to get smp2p clk resp bit -517\n[    0.451210] iommu: Adding device soc:ipa_smmu_ap to group 2\n[    0.451443] iommu: Adding device soc:ipa_smmu_wlan to group 3\n[    0.451735] iommu: Adding device soc:ipa_smmu_uc to group 4\n[    0.453180] ipa ipa3_smp2p_probe:8666 fail to get smp2p clk resp bit -517\n[    0.455065] Advanced Linux Sound Architecture Driver Initialized.\n[    0.455743] Bluetooth: Core ver 2.22\n[    0.455778] NET: Registered protocol family 31\n[    0.455780] Bluetooth: HCI device and connection manager initialized\n[    0.455794] Bluetooth: HCI socket layer initialized\n[    0.455802] Bluetooth: L2CAP socket layer initialized\n[    0.455838] Bluetooth: SCO socket layer initialized\n[    0.456328] NetLabel: Initializing\n[    0.456331] NetLabel:  domain hash size = 128\n[    0.456334] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\n[    0.456395] NetLabel:  unlabeled traffic allowed by default\n[    0.456478] pcie:pcie_init.\n[    0.463247] register_client_adhoc:find path.src 22 dest 512\n[    0.463730] register_client_adhoc:Client handle 11 bus-proxy-client\n[    0.464651] sched-energy energy-costs: cpu=0 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.464658] sched-energy energy-costs: cpu=1 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.464664] sched-energy energy-costs: cpu=2 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.464670] sched-energy energy-costs: cpu=3 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.464677] sched-energy energy-costs: cpu=4 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.464683] sched-energy energy-costs: cpu=5 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.464690] sched-energy energy-costs: cpu=6 eff=1740 [freq=300000 cap=140 power_d0=166] -> [freq=2400000 cap=1024 power_d0=2568]\n[    0.464696] sched-energy energy-costs: cpu=7 eff=1740 [freq=300000 cap=140 power_d0=166] -> [freq=2400000 cap=1024 power_d0=2568]\n[    0.464699] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.466650] gpu_gx_gdsc: supplied by pm6150_s2_level\n[    0.470389] npu_cc-sdmmagpie 9910000.qcom,npucc: Registered NPU CC clocks\n[    0.470455] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_actuator_tele_en, deferring probe\n[    0.470547] ipa ipa3_smp2p_probe:8666 fail to get smp2p clk resp bit -517\n[    0.470924] clocksource: Switched to clocksource arch_sys_counter\n[    0.523080] VFS: Disk quotas dquot_6.6.0\n[    0.523118] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.523934] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.524033] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.524039] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.524045] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.524050] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.524055] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.524060] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.525732] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=0, clocks successfully\n[    0.525913] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.525997] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.526002] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.526007] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.526015] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.526020] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.526025] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.531171] dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.536987] dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.537582] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=1, clocks successfully\n[    0.537633] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.539736] NET: Registered protocol family 2\n[    0.540117] TCP established hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.540383] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)\n[    0.541210] TCP: Hash tables configured (established 65536 bind 65536)\n[    0.541305] UDP hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.541375] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.541556] NET: Registered protocol family 1\n[    0.541575] PCI: CLS 0 bytes, default 128\n[    0.541712] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_actuator_tele_en, deferring probe\n[    0.541832] ipa ipa3_smp2p_probe:8666 fail to get smp2p clk resp bit -517\n[    0.542077] Trying to unpack rootfs image as initramfs...\n[    0.731527] Freeing initrd memory: 7492K\n[    0.732691] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.737252] Initialise system trusted keyrings\n[    0.737350] workingset: timestamp_bits=45 max_order=21 bucket_order=0\n[    0.739479] exFAT: file-system version 5.8-2arter97\n[    0.739793] Registering sdcardfs 0.1\n[    0.739925] ntfs: driver 2.1.32 [Flags: R/W].\n[    0.739999] fuse init (API version 7.26)\n[    0.740141] SGI XFS with ACLs, security attributes, realtime, no debug enabled\n[    0.740676] SELinux:  Registering netfilter hooks\n[    0.743715] Key type asymmetric registered\n[    0.743718] Asymmetric key parser 'x509' registered\n[    0.743750] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 240)\n[    0.743754] io scheduler noop registered\n[    0.743756] io scheduler deadline registered\n[    0.743783] io scheduler cfq registered (default)\n[    0.743786] io scheduler mq-deadline registered\n[    0.743788] io scheduler kyber registered\n[    0.750840] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.750845] qcom-spmi-gpio c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000: read 0x4 failed\n[    0.750848] qcom-spmi-gpio c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000: failed to populate gpio 0, ret=-5\n[    0.750860] qcom-spmi-gpio: probe of c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000 failed with error -5\n[    0.751906] qpnp_lpg_parse_dt: lut pattern switch enable\n[    0.754448] iommu: Adding device 800000.qcom,gpi-dma to group 5\n[    0.755480] iommu: Adding device a00000.qcom,gpi-dma to group 6\n[    0.759478] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.759539] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.759589] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.759872] register_client_adhoc:find path.src 125 dest 512\n[    0.760284] register_client_adhoc:Client handle 12 scm_pas\n[    0.761172] register_client_adhoc:find path.src 129 dest 512\n[    0.761238] register_client_adhoc:Client handle 13 pil-modem\n[    0.761674] register_client_adhoc:find path.src 63 dest 512\n[    0.761866] register_client_adhoc:Client handle 14 pil-venus\n[    0.761877] subsys-pil-tz aae0000.qcom,venus: for venus segments only will be dumped.\n[    0.762005] subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    0.762153] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    0.762481] subsys-pil-tz soc:qcom,kgsl-hyp: for a615_zap segments only will be dumped.\n[    0.765372] smp2p_sleepstate soc:qcom,smp2p_sleepstate: got smp2p-sleepstate-in irq 399\n[    0.766195] iommu: Adding device 18800000.qcom,icnss to group 7\n[    0.766249] icnss: Recursive recovery allowed for WLAN\n[    0.767177] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.767303] icnss: Platform driver probed successfully\n[    0.769328] msm_geni_serial 88c000.qcom,qup_uart: Wakeup byte 0xfd\n[    0.769401] msm_geni_serial 88c000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    0.769839] 88c000.qcom,qup_uart: ttyHS0 at MMIO 0x88c000 (irq = 72, base_baud = 0) is a MSM\n[    0.770201] msm_geni_serial_init: Driver initialized\n[    0.770390] register_client_adhoc:find path.src 1 dest 618\n[    0.770610] register_client_adhoc:Client handle 15 msm-rng-noc\n[    0.771437] random: crng init done\n[    0.772316] diag: Pcie registration initiated for id: 0\n[    0.772436] diag: diag_pcie_register: failed registering pcie channels\n[    0.772439] diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    0.772441] diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    0.776455] register_client_adhoc:find path.src 20003 dest 20515\n[    0.776592] register_client_adhoc:find path.src 20004 dest 20515\n[    0.776659] register_client_adhoc:Client handle 16 disp_rsc_mnoc\n[    0.776681] register_client_adhoc:find path.src 20001 dest 20513\n[    0.776746] register_client_adhoc:Client handle 17 disp_rsc_llcc\n[    0.776768] register_client_adhoc:find path.src 20000 dest 20512\n[    0.776833] register_client_adhoc:Client handle 18 disp_rsc_ebi\n[    0.777027] [sde_rsc_hw:rsc_hw_init:714]: sde rsc init successfully done\n[    0.777065] [sde_rsc:sde_rsc_probe:1911]: sde rsc index:0 probed successfully\n[    0.777624] dsi_phy ae94400.qcom,mdss_dsi_phy0: ae94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    0.777706] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-0\n[    0.777763] dsi_phy ae96400.qcom,mdss_dsi_phy1: ae96400.qcom,mdss_dsi_phy1 supply gdsc not found, using dummy regulator\n[    0.777802] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-1\n[    0.778446] AXI: get_pdata(): Error: Client name not found\n[    0.778448] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.778451] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-0\n[    0.778592] AXI: get_pdata(): Error: Client name not found\n[    0.778594] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.778596] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-1\n[    0.779219] OF: graph: no port node found in /soc/qcom,dsi-display\n[    0.779284] msm-dsi-panel:[dsi_panel_parse_panel_mode:1825] dsi_panel_parse_panel_mode: panel operating mode switch feature disabled\n[    0.779299] msm-dsi-panel:[dsi_panel_parse_qsync_caps:1508] [ss ea fhd cmd dsi panel] qsync min fps not defined rc:-22\n[    0.779332] msm-dsi-panel:[dsi_panel_parse_reset_sequence:2201] RESET SEQ LENGTH = 16\n[    0.779385] msm-dsi-panel:[dsi_panel_parse_bl_config:2622] dc demura disabled\n[    0.779389] msm-dsi-panel:[dsi_panel_parse_bl_config:2631] default dc backlight threshold is 488\n[    0.779392] msm-dsi-panel:[dsi_panel_parse_bl_config:2640] default dc backlight type is 1\n[    0.779406] msm-dsi-panel:[dsi_panel_parse_misc_features:2251] dsi_panel_parse_misc_features: ulps feature enabled\n[    0.779412] msm-dsi-panel:[dsi_panel_parse_misc_features:2257] dsi_panel_parse_misc_features: ulps during suspend feature disabled\n[    0.781915] iommu: Adding device ae00000.qcom,mdss_mdp to group 8\n[    0.783575] iommu: Adding device 506a000.qcom,gmu:gmu_user to group 9\n[    0.784211] iommu: Adding device 506a000.qcom,gmu:gmu_kernel to group 10\n[    0.787168] brd: module loaded\n[    0.791804] register_client_adhoc:find path.src 26 dest 512\n[    0.792012] register_client_adhoc:Client handle 19 grp3d\n[    0.792031] register_client_adhoc:find path.src 26 dest 10036\n[    0.792161] register_client_adhoc:Client handle 20 cnoc\n[    0.792166] query_client_usecase_all: query_start\n[    0.792219] query_client_usecase_all: query_start\n[    0.793895] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 11\n[    0.794136] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 12\n[    0.798303] loop: module loaded\n[    0.798484] zram: Added device: zram0\n[    0.822820] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1400000\n[    0.822836] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.822842] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    0.822845] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    0.822853] AXI: get_pdata(): Error: Client name not found\n[    0.822855] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.822895] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    0.822997] QSEECOM: qseecom_probe: Unable to register bus client\n[    0.823842] drv8846: drv8846_probe: 559 Enter\n[    0.823848] drv8846: drv8846_probe: 569 mctrl: 00000000461a3a82\n[    0.823957] drv8846: drv8846_probe: 613 successfully probed.\n[    0.824328] iommu: Adding device 1de0000.qcedev to group 13\n[    0.824464] register_client_adhoc:find path.src 125 dest 512\n[    0.824847] register_client_adhoc:Client handle 21 qcedev-noc\n[    0.825013] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    0.825646] qce 1de0000.qcedev: QTI Crypto 5.4.1 device found @0x1de0000\n[    0.825817] sps:BAM 0x0000000001dc4000 is registered.\n[    0.825936] sps:BAM 0x0000000001dc4000 (va:0x00000000d80ac907) enabled: ver:0x27, number of pipes:16\n[    0.826086] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 49\n[    0.827263] iommu: Adding device 1de0000.qcrypto to group 14\n[    0.827338] register_client_adhoc:find path.src 125 dest 512\n[    0.827668] register_client_adhoc:Client handle 22 qcrypto-noc\n[    0.827801] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    0.828295] qcrypto 1de0000.qcrypto: QTI Crypto 5.4.1 device found @0x1de0000\n[    0.828508] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 49\n[    0.828832] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    0.828903] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    0.828960] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    0.829017] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    0.829080] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    0.829141] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    0.829198] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    0.829258] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    0.829317] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    0.829380] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    0.829439] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    0.829497] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    0.829558] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    0.829618] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    0.829674] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    0.829736] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    0.829796] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    0.829858] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    0.829916] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    0.829975] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    0.830915] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    0.832012] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    0.833432] libphy: Fixed MDIO Bus: probed\n[    0.833568] tun: Universal TUN/TAP device driver, 1.6\n[    0.833607] sky2: driver version 1.30\n[    0.833949] PPP generic driver version 2.4.2\n[    0.833996] PPP BSD Compression module registered\n[    0.834000] PPP Deflate Compression module registered\n[    0.834025] PPP MPPE Compression module registered\n[    0.834029] NET: Registered protocol family 24\n[    0.834041] PPTP driver version 0.8.5\n[    0.834271] CLD80211: Initializing\n[    0.834351] usbcore: registered new interface driver r8152\n[    0.834370] usbcore: registered new interface driver asix\n[    0.834455] usbcore: registered new interface driver ax88179_178a\n[    0.834472] usbcore: registered new interface driver cdc_ether\n[    0.834487] usbcore: registered new interface driver net1080\n[    0.834502] usbcore: registered new interface driver cdc_subset\n[    0.834516] usbcore: registered new interface driver zaurus\n[    0.834693] usbcore: registered new interface driver cdc_ncm\n[    0.835004] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    0.835787] register_client_adhoc:find path.src 123 dest 512\n[    0.836168] register_client_adhoc:find path.src 1 dest 757\n[    0.836376] register_client_adhoc:Client handle 23 ufshc_mem\n[    0.836643] ufshcd-qcom 1d84000.ufshc: ufs_qcom_parse_reg_info: Unable to find qcom,vccq-parent-supply regulator, assuming enabled\n[    0.837268] scsi host0: ufshcd\n[    0.864273] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.867430] iommu: Adding device a600000.ssusb to group 15\n[    0.869585] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    0.873664] register_client_adhoc:find path.src 61 dest 512\n[    0.874047] register_client_adhoc:find path.src 61 dest 676\n[    0.874232] register_client_adhoc:find path.src 1 dest 583\n[    0.874435] register_client_adhoc:Client handle 24 usb0\n[    0.877669] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.877673] ehci-pci: EHCI PCI platform driver\n[    0.877690] ehci-platform: EHCI generic platform driver\n[    0.878069] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    0.878085] ohci-pci: OHCI PCI platform driver\n[    0.878109] ohci-platform: OHCI generic platform driver\n[    0.879050] usbcore: registered new interface driver usb-storage\n[    0.879069] usbcore: registered new interface driver usb_ehset_test\n[    0.879084] usbcore: registered new interface driver lvs\n[    0.881044] qpnp-pdphy c440000.qcom,spmi:qcom,pm6150@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    0.881526] usbcore: registered new interface driver xpad\n[    0.881701] goodix firmware update module init start\n[    0.882049] gf_platform: gf::irq_gpio:69\n[    0.882157] input: uinput-goodix as /devices/virtual/input/input1\n[    0.882195] gf_spi: version V1.2.01\n[    0.882264] gf_spi: status = 0x0\n[    0.882687] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm6150@0:qcom,pm6150_rtc: rtc core: registered qpnp_rtc as rtc0\n[    0.882926] i2c /dev entries driver\n[    0.883028] IR NEC protocol handler initialized\n[    0.883030] IR RC5(x/sz) protocol handler initialized\n[    0.883032] IR RC6 protocol handler initialized\n[    0.883034] IR JVC protocol handler initialized\n[    0.883036] IR Sony protocol handler initialized\n[    0.883038] IR SANYO protocol handler initialized\n[    0.883039] IR Sharp protocol handler initialized\n[    0.883041] IR MCE Keyboard/mouse protocol handler initialized\n[    0.883042] IR XMP protocol handler initialized\n[    0.883830] iommu: Adding device 9800000.qcom,msm_npu to group 16\n[    0.884853] msm_npu 9800000.qcom,msm_npu: Unable to startup the chan (-11)\n[    0.884855] msm_npu: aop mailbox is not available\n[    0.885917] msm_vidc:  err: Failed to get platform resources\n[    0.885919] msm_vidc:  err: Failed to init core\n[    0.885928] msm_vidc_v4l2: probe of aa00000.qcom,vidc0 failed with error -22\n[    0.888113] iommu: Adding device aa00000.qcom,vidc1:non_secure_cb to group 17\n[    0.888227] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    0.888646] iommu: Adding device aa00000.qcom,vidc1:secure_non_pixel_cb to group 18\n[    0.889907] iommu: Adding device aa00000.qcom,vidc1:secure_bitstream_cb to group 19\n[    0.890945] iommu: Adding device aa00000.qcom,vidc1:secure_pixel_cb to group 20\n[    0.891649] platform aa00000.qcom,vidc1:qcom,msm-vidc,mem_cdsp: assigned reserved memory node cdsp_region\n[    0.893202] i2c_geni 888000.i2c: Bus frequency is set to 1000000Hz.\n[    0.893904] i2c_geni 890000.i2c: Bus frequency is set to 400000Hz.\n[    0.896026] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 21\n[    0.896222] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 22\n[    0.896275] platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node camera_region@8ab00000\n[    0.896566] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 23\n[    0.896753] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 24\n[    0.897057] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_fd to group 25\n[    0.897231] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 26\n[    0.898117] nq-nci 0-0028: ese GPIO <OPTIONAL> error getting from OF node\n[    0.898154] nq-nci 0-0028: nqx_probe: ese gpio not provided\n[    0.898390] genirq: irq_chip msmgpio-dc did not update eff. affinity mask of irq 268\n[    0.898882] register_client_adhoc:find path.src 1 dest 589\n[    0.899186] register_client_adhoc:Client handle 24 cam_ahb\n[    0.899350] register_client_adhoc:find path.src 136 dest 512\n[    0.899552] register_client_adhoc:Client handle 25 cam_hf_0_mnoc\n[    0.899677] register_client_adhoc:find path.src 146 dest 778\n[    0.899720] register_client_adhoc:Client handle 26 cam_hf_0_camnoc\n[    0.899808] register_client_adhoc:find path.src 172 dest 512\n[    0.899988] register_client_adhoc:Client handle 27 cam_hf_1_mnoc\n[    0.900216] register_client_adhoc:find path.src 178 dest 778\n[    0.900258] register_client_adhoc:Client handle 28 cam_hf_1_camnoc\n[    0.900345] register_client_adhoc:find path.src 137 dest 512\n[    0.900544] register_client_adhoc:Client handle 29 cam_sf_0_mnoc\n[    0.900651] register_client_adhoc:find path.src 148 dest 778\n[    0.900694] register_client_adhoc:Client handle 30 cam_sf_0_camnoc\n[    0.900781] register_client_adhoc:find path.src 171 dest 512\n[    0.900968] register_client_adhoc:Client handle 31 cam_sf_1_mnoc\n[    0.901073] register_client_adhoc:find path.src 179 dest 778\n[    0.901118] register_client_adhoc:Client handle 32 cam_sf_1_camnoc\n[    0.904381] i2c_geni a84000.i2c: Bus frequency is set to 400000Hz.\n[    0.962110] nq-nci 0-0028: nqx_probe: probing NFCC NQxxx exited successfully\n[    1.020795] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.030351] [mi-touch] xiaomitouch_register_modedata: \n[    1.030565] i2c_geni a8c000.i2c: Bus frequency is set to 400000Hz.\n[    1.031227] error: hwirq 0x78 is too large for :soc:pinctrl@3400000\n[    1.031237] ------------[ cut here ]------------\n[    1.031252] WARNING: CPU: 0 PID: 253 at kernel/irq/irqdomain.c:523 irq_domain_associate+0x174/0x1c0\n[    1.031253] Modules linked in:\n[    1.031263] CPU: 0 PID: 253 Comm: kworker/u16:8 Tainted: G S              4.14.237-OrokinKernel #1\n[    1.031265] Hardware name: Qualcomm Technologies, Inc. SDMMAGPIE PM6150 DAVINCI (DT)\n[    1.031277] Workqueue: events_unbound async_run_entry_fn\n[    1.031282] task: 0000000003dec86d task.stack: 000000002880c40a\n[    1.031285] pc : irq_domain_associate+0x174/0x1c0\n[    1.031288] lr : irq_domain_associate+0x170/0x1c0\n[    1.031290] sp : ffffff8017dcb5b0 pstate : 60c00045\n[    1.031292] x29: ffffff8017dcb5b0 x28: 000000000000000c \n[    1.031296] x27: fffffffd3ca01270 x26: fffffffd2ceec110 \n[    1.031299] x25: 0000000000000000 x24: 0000000000000011 \n[    1.031302] x23: 00000000ffffffea x22: fffffffd340c6000 \n[    1.031305] x21: 0000000000000193 x20: 0000000000000078 \n[    1.031309] x19: 0000000000000193 x18: 0000000000000000 \n[    1.031312] x17: 0000000000000000 x16: 0000000000000000 \n[    1.031315] x15: 0000000000000082 x14: 0000000000000048 \n[    1.031319] x13: 000000000000d76c x12: 0000000000000000 \n[    1.031322] x11: 0000000000000000 x10: ffffffffffffffff \n[    1.031326] x9 : fe4745afd3386f00 x8 : fe4745afd3386f00 \n[    1.031329] x7 : 0000000000000000 x6 : fffffffd3c76eeeb \n[    1.031332] x5 : 0000000000000001 x4 : 0000000000000000 \n[    1.031335] x3 : 0000000000000030 x2 : 0000000000000001 \n[    1.031338] x1 : 00000000000000c0 x0 : 0000000000000037 \n[    1.031343] \n               PC: 0xffffff9de8b3d714:\n[    1.031344] d714  f90012bf 9131a000 f90006bf 945423c4 a9434ff4 2a1703e0 a94257f6 f9400bf7\n[    1.031355] d734  a8c47bfd d65f03c0 d000eae0 f9400ac2 910d1c00 2a1403e1 97ffcfb5 128002b7\n[    1.031365] d754  d4210000 17fffff3 b000e500 2a1303e1 913e2000 97ffcfae 128002b7 d4210000\n[    1.031374] d774  17ffffec b000e500 2a1303e1 9136e400 97ffcfa7 128002b7 d4210000 17ffffe5\n[    1.031385] \n               LR: 0xffffff9de8b3d710:\n[    1.031386] d710  900137c0 f90012bf 9131a000 f90006bf 945423c4 a9434ff4 2a1703e0 a94257f6\n[    1.031396] d730  f9400bf7 a8c47bfd d65f03c0 d000eae0 f9400ac2 910d1c00 2a1403e1 97ffcfb5\n[    1.031405] d750  128002b7 d4210000 17fffff3 b000e500 2a1303e1 913e2000 97ffcfae 128002b7\n[    1.031415] d770  d4210000 17ffffec b000e500 2a1303e1 9136e400 97ffcfa7 128002b7 d4210000\n[    1.031425] \n               SP: 0xffffff8017dcb570:\n[    1.031426] b570  e8b3d754 ffffff9d 60c00045 00000000 ffffffc8 ffffff80 d3386f00 fe4745af\n[    1.031435] b590  ffffffff ffffffff e8b3d750 ffffff9d 17dcb5b0 ffffff80 e8b3d754 ffffff9d\n[    1.031445] b5b0  17dcb5f0 ffffff80 e8b3d978 ffffff9d eb2fd6b0 ffffff9d eb2fd6b0 ffffff9d\n[    1.031455] b5d0  00000078 00000000 00000193 00000000 340c6000 fffffffd 00000078 00000000\n\n[    1.031467] Call trace:\n[    1.031471]  irq_domain_associate+0x174/0x1c0\n[    1.031474]  irq_create_mapping+0x148/0x170\n[    1.031477]  irq_create_fwspec_mapping+0x270/0x370\n[    1.031480]  irq_create_of_mapping+0x5c/0x80\n[    1.031486]  of_irq_get+0x60/0x90\n[    1.031492]  i2c_device_probe+0xac/0x280\n[    1.031499]  driver_probe_device+0x440/0x480\n[    1.031501]  __device_attach_driver+0x120/0x140\n[    1.031504]  bus_for_each_drv+0x7c/0xd0\n[    1.031507]  __device_attach+0xa8/0x140\n[    1.031509]  device_initial_probe+0x10/0x20\n[    1.031511]  bus_probe_device+0x30/0x90\n[    1.031516]  device_add+0x364/0x560\n[    1.031519]  device_register+0x1c/0x30\n[    1.031521]  i2c_new_device+0x300/0x320\n[    1.031524]  of_i2c_register_devices+0x234/0x280\n[    1.031527]  i2c_register_adapter+0x2b8/0x3a0\n[    1.031529]  __i2c_add_numbered_adapter+0x80/0xe0\n[    1.031532]  i2c_add_adapter+0x44/0x100\n[    1.031535]  geni_i2c_probe+0x610/0x650\n[    1.031538]  platform_drv_probe+0x64/0xc0\n[    1.031540]  driver_probe_device+0x440/0x480\n[    1.031542]  __driver_attach+0xd0/0x100\n[    1.031544]  bus_for_each_dev+0x80/0xd0\n[    1.031546]  driver_attach+0x20/0x30\n[    1.031548]  driver_attach_async+0xc/0x20\n[    1.031551]  async_run_entry_fn+0x44/0x110\n[    1.031559]  process_one_work+0x188/0x400\n[    1.031562]  worker_thread+0x258/0x490\n[    1.031566]  kthread+0x118/0x130\n[    1.031571]  ret_from_fork+0x10/0x1c\n[    1.031578] ---[ end trace 4ed1d79cceccb946 ]---\n[    1.032760] akm09970: akm09970_probe: 685 IRQ is #346.\n[    1.032864] akm09970: akm09970_probe: 727 Probe exit\n[    1.035141] PMIC@SID0: SMB1390 v2.0 options: 0, 0, 0, 0\n[    1.035370] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    1.037450] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[18][cpas-cdm][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    1.041336] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[9][iferdi][0] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.042148] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[10][ifenrdi][0] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.043641] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[11][iferdi][1] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.044436] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[12][ifenrdi][1] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.045511] CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 525 No clk named ife_dsp_clk found. Dev vfe2\n[    1.045515] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 109 Option clk get failed with rc -14\n[    1.045622] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1020 Invalid mux type: 0\n[    1.045625] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1020 Invalid mux type: 0\n[    1.045761] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[13][iferdi][2] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.046511] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[14][ifenrdi][2] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.048712] CAM_INFO: CAM-ISP: cam_isp_dev_probe: 171 Camera ISP probe complete\n[    1.050932] CAM_INFO: CAM: cam_res_mgr_probe: 692 Disable shared gpio support.\n[    1.052231] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 428 Device Type :0\n[    1.053089] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 428 Device Type :1\n[    1.055163] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    1.055198] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    1.057908] CAM_ERR: CAM-EEPROM: cam_eeprom_driver_init: 588 hw_version_platform = 5\n[    1.065046] CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 170 Camera JPEG probe complete\n[    1.065973] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[23][fd][0] comp[7200000], comp_ab[7200000], uncomp[7200000]\n[    1.069429] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[24][lrmecpas][0] comp[7200000], comp_ab[7200000], uncomp[7200000]\n[    1.070193] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[17][cam-cdm-intf][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    1.071832] usbcore: registered new interface driver uvcvideo\n[    1.071835] USB Video Class driver (1.1.1)\n[    1.071836] gspca_main: v2.14.0 registered\n[    1.073217] use default ffc_low_tbat\n[    1.073220] use default ffc_high_tbat\n[    1.073229] fcc_calibrate = 0\n[    1.073283] Couldn't parse device tree rc=-517\n[    1.073776] SMB1390: smb1390_master_probe: Couldn't parse device tree rc=-517\n[    1.085348] device-mapper: uevent: version 1.0.3\n[    1.085444] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com\n[    1.085673] bt_dt_parse_vreg_info: qca,bt-vdd-vl: is not provided in device tree\n[    1.085676] bt_dt_parse_vreg_info: qca,bt-vdd-vm: is not provided in device tree\n[    1.085679] bt_dt_parse_vreg_info: qca,bt-vdd-5c: is not provided in device tree\n[    1.085682] bt_dt_parse_vreg_info: qca,bt-vdd-5a: is not provided in device tree\n[    1.085685] bt_dt_parse_vreg_info: qca,bt-vdd-vh: is not provided in device tree\n[    1.085701] bt_dt_parse_vreg_info: qca,bt-vdd-ldo: is not provided in device tree\n[    1.085704] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    1.085707] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in device tree\n[    1.085710] bt_power_populate_dt_pinfo: bt-3P3-gpio not provided in devicetree\n[    1.085712] bt_power_populate_dt_pinfo: bt-1P3-gpio not provided in devicetree\n[    1.085714] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.085716] bt_power_populate_dt_pinfo: clock not provided in device tree\n[    1.087066] qpnp_vibrator_ldo_probe: Vibrator LDO successfully registered: uV = 3000000, overdrive = disabled\n[    1.087749] usbcore: registered new interface driver usbhid\n[    1.087751] usbhid: USB HID core driver\n[    1.087831] ashmem: initialized\n[    1.087833] wlan: Loading driver v5.2.022.8C\n[    1.089143] ipa ipa3_uc_reg_rdyCB:3131 bad parm. inout=00000000cc58c20a \n[    1.089208] wlan_hdd_state wlan major(496) initialized\n[    1.089271] ipa_ut ipa_ut_module_init:1045 Loading IPA test module...\n[    1.089473] bimc-bwmon 90b6300.qcom,cpu-cpu-llcc-bwmon: BW HWmon governor registered.\n[    1.089523] bimc-bwmon 90cd000.qcom,cpu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    1.089589] bimc-bwmon 9960300.qcom,npu-npu-ddr-bwmon: BW HWmon governor registered.\n[    1.090165] arm-memlat-mon soc:qcom,cpu0-cpu-l3-latmon: Memory Latency governor registered.\n[    1.090202] arm-memlat-mon soc:qcom,cpu6-cpu-l3-latmon: Memory Latency governor registered.\n[    1.090239] arm-memlat-mon soc:qcom,cpu0-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.090275] arm-memlat-mon soc:qcom,cpu6-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.090315] arm-memlat-mon soc:qcom,cpu0-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.090348] arm-memlat-mon soc:qcom,cpu6-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.090384] arm-memlat-mon soc:qcom,cpu0-computemon: Compute governor registered.\n[    1.090418] arm-memlat-mon soc:qcom,cpu6-computemon: Compute governor registered.\n[    1.091726] register_client_adhoc:find path.src 1 dest 770\n[    1.091862] register_client_adhoc:Client handle 33 soc:qcom,cpu-cpu-llcc-bw\n[    1.092721] register_client_adhoc:find path.src 129 dest 512\n[    1.092803] register_client_adhoc:Client handle 34 soc:qcom,cpu-llcc-ddr-bw\n[    1.093456] register_client_adhoc:find path.src 1 dest 770\n[    1.093518] register_client_adhoc:Client handle 35 soc:qcom,cpu0-cpu-llcc-lat\n[    1.093814] register_client_adhoc:find path.src 1 dest 770\n[    1.093872] register_client_adhoc:Client handle 36 soc:qcom,cpu6-cpu-llcc-lat\n[    1.094258] register_client_adhoc:find path.src 129 dest 512\n[    1.094321] register_client_adhoc:Client handle 37 soc:qcom,cpu0-llcc-ddr-lat\n[    1.094716] register_client_adhoc:find path.src 129 dest 512\n[    1.094773] register_client_adhoc:Client handle 38 soc:qcom,cpu6-llcc-ddr-lat\n[    1.095159] register_client_adhoc:find path.src 129 dest 512\n[    1.095221] register_client_adhoc:Client handle 39 soc:qcom,cpu0-cpu-ddr-latfloor\n[    1.095617] register_client_adhoc:find path.src 129 dest 512\n[    1.095674] register_client_adhoc:Client handle 40 soc:qcom,cpu6-cpu-ddr-latfloor\n[    1.096104] register_client_adhoc:find path.src 154 dest 512\n[    1.096276] register_client_adhoc:Client handle 41 soc:qcom,npu-npu-ddr-bw\n[    1.096493] register_client_adhoc:find path.src 1 dest 627\n[    1.096693] register_client_adhoc:Client handle 42 soc:qcom,snoc_cnoc_keepalive\n[    1.097377] register_client_adhoc:find path.src 26 dest 512\n[    1.097515] register_client_adhoc:Client handle 43 soc:qcom,gpubw\n[    1.100984] qcom-llcc-pmu 90cc000.llcc-pmu: Registered llcc_pmu, type: 8\n[    1.102338] usbcore: registered new interface driver snd-usb-audio\n[    1.102595] iommu: Adding device soc:usb_audio_qmi_dev to group 27\n[    1.108645] [nxp] tfa98xx_i2c_init(): TFA98XX driver version v6.5.2_xxxxxxxxxx\n[    1.108866] [nxp] tfa98xx_i2c_probe(): addr=0x34\n[    1.108939] tfa98xx 3-0034: property nxp,spk-id-pin not detected in node /soc/i2c@0x890000/tfa98xx@34\n[    1.124313] ufshcd-qcom 1d84000.ufshc: ufshcd_query_attr: opcode 0x03 for idn 23 failed, index 0, err = 253\n[    1.125248] ufshcd-qcom 1d84000.ufshc: ufshcd_query_attr: opcode 0x03 for idn 23 failed, index 0, err = 253\n[    1.126185] ufshcd-qcom 1d84000.ufshc: ufshcd_query_attr: opcode 0x03 for idn 23 failed, index 0, err = 253\n[    1.126189] ufshcd-qcom 1d84000.ufshc: ufshcd_query_attr_retry: query attribute, idn 23, failed with error 253 after 0 retires\n[    1.126193] ufshcd-qcom 1d84000.ufshc: failed reading bRefClkGatingWait. err = 253, use default 100us\n[    1.129473] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[1, 1], pwr[FAST MODE, FAST MODE], rate = 1\n[    1.129806] scsi 0:0:0:49488: Well-known LUN    MICRON   128GB-UFS-MT     9QSV PQ: 0 ANSI: 6\n[    1.130335] scsi 0:0:0:49456: Well-known LUN    MICRON   128GB-UFS-MT     9QSV PQ: 0 ANSI: 6\n[    1.130824] scsi 0:0:0:49476: Well-known LUN    MICRON   128GB-UFS-MT     9QSV PQ: 0 ANSI: 6\n[    1.131293] scsi 0:0:0:0: Direct-Access     MICRON   128GB-UFS-MT     9QSV PQ: 0 ANSI: 6\n[    1.131655] scsi 0:0:0:1: Direct-Access     MICRON   128GB-UFS-MT     9QSV PQ: 0 ANSI: 6\n[    1.131967] scsi 0:0:0:2: Direct-Access     MICRON   128GB-UFS-MT     9QSV PQ: 0 ANSI: 6\n[    1.132277] scsi 0:0:0:3: Direct-Access     MICRON   128GB-UFS-MT     9QSV PQ: 0 ANSI: 6\n[    1.132590] scsi 0:0:0:4: Direct-Access     MICRON   128GB-UFS-MT     9QSV PQ: 0 ANSI: 6\n[    1.132897] scsi 0:0:0:5: Direct-Access     MICRON   128GB-UFS-MT     9QSV PQ: 0 ANSI: 6\n[    1.134841] sd 0:0:0:0: [sda] physical block alignment offset: 131072\n[    1.134913] sd 0:0:0:5: [sdf] physical block alignment offset: 131072\n[    1.134930] sd 0:0:0:4: [sde] physical block alignment offset: 131072\n[    1.134960] sd 0:0:0:1: [sdb] physical block alignment offset: 131072\n[    1.134992] sd 0:0:0:2: [sdc] physical block alignment offset: 131072\n[    1.135023] sd 0:0:0:3: [sdd] physical block alignment offset: 131072\n[    1.135766] sd 0:0:0:4: [sde] 67108864-byte physical blocks\n[    1.135796] sd 0:0:0:5: [sdf] 67108864-byte physical blocks\n[    1.135827] sd 0:0:0:2: [sdc] 67108864-byte physical blocks\n[    1.135845] sd 0:0:0:3: [sdd] 67108864-byte physical blocks\n[    1.135861] sd 0:0:0:0: [sda] 67108864-byte physical blocks\n[    1.135877] sd 0:0:0:1: [sdb] 67108864-byte physical blocks\n[    1.136245] sd 0:0:0:5: [sdf] Test WP failed, assume Write Enabled\n[    1.136287] sd 0:0:0:1: [sdb] Test WP failed, assume Write Enabled\n[    1.136329] sd 0:0:0:2: [sdc] Test WP failed, assume Write Enabled\n[    1.136372] sd 0:0:0:3: [sdd] Test WP failed, assume Write Enabled\n[    1.136388] sd 0:0:0:0: [sda] Test WP failed, assume Write Enabled\n[    1.136403] sd 0:0:0:4: [sde] Test WP failed, assume Write Enabled\n[    1.136694] sd 0:0:0:2: [sdc] Optimal transfer size 131072 bytes not a multiple of physical block size (67108864 bytes)\n[    1.136888] sd 0:0:0:5: [sdf] Optimal transfer size 131072 bytes not a multiple of physical block size (67108864 bytes)\n[    1.136985] sd 0:0:0:1: [sdb] Optimal transfer size 131072 bytes not a multiple of physical block size (67108864 bytes)\n[    1.137090] sd 0:0:0:3: [sdd] Optimal transfer size 131072 bytes not a multiple of physical block size (67108864 bytes)\n[    1.137198] sd 0:0:0:0: [sda] Optimal transfer size 131072 bytes not a multiple of physical block size (67108864 bytes)\n[    1.137301] sd 0:0:0:4: [sde] Optimal transfer size 131072 bytes not a multiple of physical block size (67108864 bytes)\n[    1.140289] [nxp] tfa98xx_i2c_probe(): TFA9874 detected\n[    1.140295] [nxp] tfa98xx_append_i2c_address(): tfa98xx_append_i2c_address()  dai_drv[0].name = [tfa98xx-aif-3-34]\n[    1.140299] [nxp] tfa98xx_append_i2c_address(): tfa98xx_append_i2c_address()  dai_drv[0].playback.stream_name = [AIF Playback-3-34]\n[    1.140319] [nxp] tfa98xx_append_i2c_address(): tfa98xx_append_i2c_address()  dai_drv[0].capture.stream_name = [AIF Capture-3-34]\n[    1.141021]  sdb: sdb1 sdb2\n[    1.141415]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6 sdf7 sdf8\n[    1.141814]  sdd: sdd1 sdd2 sdd3 sdd4 sdd5\n[    1.142216]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21 sda22 sda23 sda24 sda25 sda26 sda27 sda28 sda29 sda30 sda31 sda32\n[    1.143497] [nxp] tfa98xx_init_misc_device(): entry\n[    1.143614] [nxp] tfa98xx_init_misc_device(): register misc device successed.\n[    1.143616] [nxp] tfa98xx_i2c_probe(): tfa98xx_i2c_probe Probe completed successfully!\n[    1.144401] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.144417] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.144430] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.144443] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.144457] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.149359] msm-dai-q6-hdmi soc:qcom,msm-dai-q6-hdmi_ms: invalid device ID 24578\n[    1.149923] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: msm_auxpcm_dev_probe: invalid DT intf name senary\n[    1.150154]  sdc: sdc1 sdc2\n[    1.150503]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51\n[    1.167905] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: group id not supported 0x9150\n[    1.167914] msm-dai-tdm: probe of soc:qcom,msm-dai-tdm-sen-rx failed with error -22\n[    1.167933] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: group id not supported 0x9151\n[    1.167938] msm-dai-tdm: probe of soc:qcom,msm-dai-tdm-sen-tx failed with error -22\n[    1.170141] input: goodix_ts as /devices/platform/goodix_ts.0/input/input2\n[    1.179313] GACT probability NOT on\n[    1.179324] Mirror/redirect action on\n[    1.179332] u32 classifier\n[    1.179334]     Actions configured\n[    1.179341] Netfilter messages via NETLINK v0.30.\n[    1.179484] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)\n[    1.179541] ctnetlink v0.93: registering with nfnetlink.\n[    1.179730] xt_time: kernel timezone is -0000\n[    1.179769] wireguard: WireGuard 1.0.20201112 loaded. See www.wireguard.com for information.\n[    1.179771] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    1.179840] gre: GRE over IPv4 demultiplexor driver\n[    1.179842] IPv4 over IPsec tunneling driver\n[    1.180207] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    1.180538] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    1.180617] Initializing XFRM netlink socket\n[    1.180627] IPsec XFRM device driver\n[    1.180791] NET: Registered protocol family 10\n[    1.181330] Segment Routing with IPv6\n[    1.181368] mip6: Mobile IPv6\n[    1.181379] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    1.181920] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    1.182302] NET: Registered protocol family 17\n[    1.182312] NET: Registered protocol family 15\n[    1.182328] Ebtables v2.0 registered\n[    1.182357] l2tp_core: L2TP core driver, V2.0\n[    1.182363] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    1.182365] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    1.182375] l2tp_netlink: L2TP netlink interface\n[    1.182390] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    1.182392] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    1.182453] sctp: Hash tables configured (bind 256/256)\n[    1.183225] actuator_regulator: supplied by pm6150l_bob\n[    1.185577] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.189574] register_client_adhoc:find path.src 61 dest 512\n[    1.189901] register_client_adhoc:find path.src 61 dest 676\n[    1.190381] register_client_adhoc:find path.src 1 dest 583\n[    1.190573] register_client_adhoc:Client handle 44 usb0\n[    1.192538] sps:BAM 0x000000000a704000 is registered.\n[    1.192576] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.192581] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    1.192585] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.192588] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    1.193938] qpnp-pdphy c440000.qcom,spmi:qcom,pm6150@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.194540] QG-K: qg_parse_dt: PMIC subtype 40 Digital major 2\n[    1.194574] QG-K: qg_parse_dt: DT: S2 FIFO length=5 low_vbat_length=2 acc_length=128 acc_interval=100\n[    1.194578] QG-K: qg_parse_dt: DT: OCV timer_expiry =-22min ocv_tol_threshold=-22uV\n[    1.194617] QG-K: qg_parse_dt: DT: cl_min_start_soc=10 cl_max_start_soc=15 cl_min_temp=150 cl_max_temp=500\n[    1.194620] QG-K: qg_parse_dt: use default soc_decimal_rate.\n[    1.194623] QG-K: qg_parse_dt: DT: vbatt_empty_mv=3100mV vbatt_low_mv=3300mV delta_soc=1 ext-sns=0\n[    1.194636] QG-K: qg_set_wa_flags: wa_flags = 6\n[    1.194671] QG-K: qg_master_hold: Master hold = 1\n[    1.194826] QG-K: qg_master_hold: Master hold = 0\n[    1.209261] QG-K: get_batt_id_ohm: batt_id_mv=759, batt_id_ohm=68027\n[    1.209996] of_batterydata_get_best_profile: f10_swd found\n[    1.210267] QG-K: qg_batterydata_init: QG Battery-profile loaded\n[    1.210275] QG-K: qg_load_battery_profile: Failed to read temp comp hysteresis rc:-22\n[    1.210278] QG-K: qg_load_battery_profile: Failed to max temp comp value rc:-22\n[    1.210280] QG-K: qg_load_battery_profile: don't use dts ffc_current_cfg\n[    1.210284] QG-K: qg_load_battery_profile: profile=f10_swd FV=4400000uV FCC=3500ma\n[    1.210288] QG-K: qg_setup_battery: battery_missing=0 batt_id_ohm=68027 Ohm profile_loaded=1 profile=f10_swd\n[    1.210330] QG-K: qg_sanitize_sdam: SDAM valid\n[    1.210437] QG-K: qg_determine_pon_soc: S7_PON_OCV OCV=4260214\n[    1.210449] QG-K: qg_determine_pon_soc: S3_GOOD_OCV OCV=4321914\n[    1.210461] QG-K: qg_determine_pon_soc: S3_LAST_OCV OCV=4321914\n[    1.210473] QG-K: qg_determine_pon_soc: SDAM_PON_OCV OCV=0\n[    1.212579] QG-K: qg_determine_pon_soc: Shutdown: Valid=1 SOC=94 OCV=4311800uV time=53041781secs temp=325, time_now=53041990secs temp_now=330 S7_soc=90\n[    1.212582] QG-K: qg_determine_pon_soc: Using SHUTDOWN_SOC @ PON\n[    1.212587] QG-K: qg_determine_pon_soc: Using SHUTDOWN_SOC @ PON\n[    1.212591] QG-K: qg_determine_pon_soc: v_float=4400000 v_cutoff=3400000 FULL_SOC=99 CUTOFF_SOC=2 calcualte_soc=91 pon_soc=90 shutdown[SDAM_SOC]=94 final soc = 93 ibat = 0\n[    1.214903] QG-K: qg_store_soc_params: SDAM write param 0 value=1\n[    1.214914] QG-K: qg_store_soc_params: SDAM write param 1 value=93\n[    1.214924] QG-K: qg_store_soc_params: SDAM write param 2 value=330\n[    1.214934] QG-K: qg_store_soc_params: SDAM write param 3 value=0\n[    1.214947] QG-K: qg_store_soc_params: SDAM write param 4 value=4311800\n[    1.214959] QG-K: qg_store_soc_params: SDAM write param 5 value=0\n[    1.214972] QG-K: qg_store_soc_params: SDAM write param 6 value=53041990\n[    1.214975] QG-K: qg_determine_pon_soc: using SHUTDOWN_SOC @ PON ocv_uv=4311800uV soc=93\n[    1.215251] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    1.215513] QG-K: qg_request_interrupt: IRQ qg-vbat-low registered wakeable=1\n[    1.215647] QG-K: qg_request_interrupt: IRQ qg-vbat-empty registered wakeable=1\n[    1.215795] QG-K: qg_request_interrupt: IRQ qg-fifo-done registered wakeable=1\n[    1.215935] QG-K: qg_request_interrupt: IRQ qg-good-ocv registered wakeable=1\n[    1.216005] QG-K: qpnp_qg_probe: QG initialized! battery_profile=f10_swd SOC=93 QG_subtype=4\n[    1.216261] use default ffc_low_tbat\n[    1.216263] use default ffc_high_tbat\n[    1.216271] fcc_calibrate = 0\n[    1.216357] failed to get uart_en_gpio\n[    1.217082] pm6150_charger: smblib_set_charge_param: usb otg current limit = 3000000 (0x05)\n[    1.217113] pm6150_charger: smblib_set_charge_param: DC input current limit = 100000 (0x02)\n[    1.218231] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    1.218299] pm6150_charger: smblib_set_charge_param: switching frequency = 1050 (0x08)\n[    1.218305] pm6150_charger: smblib_set_sw_thermal_regulation: WDOG SNARL INT Disabled\n[    1.218365] pm6150_charger: smblib_update_usb_type: APSD=UNKNOWN PD=0 QC3P5=0\n[    1.218371] pm6150_charger: smblib_usb_plugin_locked: IRQ: usbin-plugin detached\n[    1.218435] pm6150_charger: typec_state_change_irq_handler: IRQ: cc-state-change; Type-C NONE detected\n[    1.218448] pm6150_charger: usb_source_change_irq_handler: APSD_STATUS = 0x00\n[    1.218461] pm6150_charger: usb_source_change_irq_handler: APSD_STATUS = 0x00\n[    1.218496] pm6150_charger: batt_temp_changed_irq_handler: IRQ: determine-initial-status\n[    1.218498] pm6150_charger: wdog_bark_irq_handler: IRQ: determine-initial-status\n[    1.219432] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    1.219530] real_charger_type:0 pd_verified:0, qc_class_ab:0\n[    1.221495] of_batterydata_get_best_profile: f10_swd found\n[    1.221891] pm6150_charger: smblib_run_aicl: re-running AICL\n[    1.221935] pm6150_charger: smblib_set_charge_param: fast charge current = 3500000 (0x46)\n[    1.221948] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    1.221959] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    1.222017] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    1.223087] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    1.224608] pm6150_charger: smblib_process_thermal_readings: Current temperatures: \tDIE_TEMP: 433,\tCONN_TEMP: 323,\tSMB_TEMP: -61,\tSKIN_TEMP: -61\n               THERMAL_STATUS: 5\n[    1.225692] QG-K: qg_charge_full_update: msoc=93 health=1 charge_full=0 charge_done=0 charge_status=2\n[    1.225759] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    1.228083] QG-K: qg_get_ffc_iterm_for_chg: ffc_terminal_current other is 830\n[    1.229024] pm6150_charger: smblib_run_aicl: re-running AICL\n[    1.229048] pm6150_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 1!\n[    1.229050] pm6150_charger: smblib_set_prop_typec_power_role: power role already in 1, ignore!\n[    1.229128] SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    1.229131] QPNP SMB5 probed successfully\n[    1.232094] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    1.232969] SMB1390: smb1390_probe: smb1390 Master probed successfully\n[    1.234431] QG-K: qg_charge_full_update: msoc=93 health=1 charge_full=0 charge_done=0 charge_status=2\n[    1.234497] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    1.236741] QG-K: qg_get_ffc_iterm_for_chg: ffc_terminal_current other is 830\n[    1.241553] SMB1390: smb1390_ilim_vote_cb: Client missing\n[    1.241680] pm6150_charger: smblib_run_aicl: re-running AICL\n[    1.242177] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    1.244543] QG-K: qg_charge_full_update: msoc=93 health=1 charge_full=0 charge_done=0 charge_status=2\n[    1.244608] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    1.246583] pm6150_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:330, thermal_levels:16chg->system_temp_level:0, charger_type:0\n[    1.247395] real_charger_type:0 pd_verified:0, qc_class_ab:0\n[    1.250371] QG-K: qg_charge_full_update: msoc=93 health=1 charge_full=0 charge_done=0 charge_status=2\n[    1.252303] pm6150_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:330, thermal_levels:16chg->system_temp_level:0, charger_type:0\n[    1.252804] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    1.252909] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    1.252936] SMB1390: smb1390_ilim_vote_cb: Client missing\n[    1.253050] pm6150_charger: smblib_run_aicl: re-running AICL\n[    1.259485] QG-K: qg_charge_full_update: msoc=93 health=1 charge_full=0 charge_done=0 charge_status=2\n[    1.263936] Error registering TZ zone:-19 for dt_ch:85\n[    1.264268] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.264447] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.264587] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.264722] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.264860] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.266752] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.270689] register_client_adhoc:find path.src 61 dest 512\n[    1.271012] register_client_adhoc:find path.src 61 dest 676\n[    1.271180] register_client_adhoc:find path.src 1 dest 583\n[    1.271366] register_client_adhoc:Client handle 44 usb0\n[    1.273497] sps:BAM 0x000000000a704000 is registered.\n[    1.273536] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.273541] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    1.273545] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.273548] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    1.274892] usbpd usbpd0: do not limit current\n[    1.274896] usbpd usbpd0: failed to read pd unverified pps vbus limit\n[    1.275440] i2c_geni a8c000.i2c: i2c error :-107\n[    1.275528] i2c_geni a8c000.i2c: i2c error :-107\n[    1.275612] i2c_geni a8c000.i2c: i2c error :-107\n[    1.275698] i2c_geni a8c000.i2c: i2c error :-107\n[    1.275782] i2c_geni a8c000.i2c: i2c error :-107\n[    1.275867] i2c_geni a8c000.i2c: i2c error :-107\n[    1.275951] i2c_geni a8c000.i2c: i2c error :-107\n[    1.276036] i2c_geni a8c000.i2c: i2c error :-107\n[    1.276120] i2c_geni a8c000.i2c: i2c error :-107\n[    1.276205] i2c_geni a8c000.i2c: i2c error :-107\n[    1.276354] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.276499] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.276637] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.276771] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.276908] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.278718] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.282694] register_client_adhoc:find path.src 61 dest 512\n[    1.283027] register_client_adhoc:find path.src 61 dest 676\n[    1.283199] register_client_adhoc:find path.src 1 dest 583\n[    1.283386] register_client_adhoc:Client handle 44 usb0\n[    1.284653] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.284795] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.284933] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.285068] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.285206] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.285946] sps:BAM 0x000000000a704000 is registered.\n[    1.286288] registered taskstats version 1\n[    1.286290] Loading compiled-in X.509 certificates\n[    1.286365] page_owner is disabled\n[    1.286380] Key type ._fscrypt registered\n[    1.286381] Key type .fscrypt registered\n[    1.286383] Key type fscrypt-provisioning registered\n[    1.288328] Please check if `measure` clk is registered.\n[    1.301510] ADSPRPC: Secure VMID = 22\n[    1.301514] ADSPRPC: Secure VMID = 37\n[    1.301970] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 28\n[    1.302855] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 29\n[    1.302949] qusb_phy_init(): Programming TUNE1 parameter as:26\n[    1.302951] qusb_phy_init(): Override TUNE1 parameter as:0\n[    1.302952] qusb_phy_init(): Programming pll_bias parameter as:0\n[    1.303182] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.303489] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 30\n[    1.303700] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode\n[    1.303931] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.304241] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 31\n[    1.305047] msm-dwc3 a600000.ssusb: DWC3 in low power mode\n[    1.305264] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.305572] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 32\n[    1.305858] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.306129] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 33\n[    1.306392] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.306672] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 34\n[    1.307667] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.307938] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 35\n[    1.308186] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.308437] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 36\n[    1.308679] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.308918] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 37\n[    1.309167] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.309408] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13 to group 38\n[    1.309668] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.309906] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14 to group 39\n[    1.310203] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.310434] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb15 to group 40\n[    1.310687] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.312422] [drm-dp] dp_display_init_aux_switch: cannot parse qcom,dp-aux-switch handle\n[    1.312874] register_client_adhoc:find path.src 1 dest 590\n[    1.313147] register_client_adhoc:Client handle 45 mdss_reg\n[    1.313180] register_client_adhoc:find path.src 22 dest 512\n[    1.313376] register_client_adhoc:find path.src 23 dest 512\n[    1.313563] register_client_adhoc:Client handle 46 mdss_sde\n[    1.313615] [drm:sde_dbg_init:5222] evtlog_status: enable:3, panic:1, dump:2\n[    1.313637] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops sde_rsc_comp_ops)\n[    1.313645] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops sde_wb_comp_ops)\n[    1.313925] msm-dsi-display:[dsi_display_bind] Successfully bind display panel 'dsi_ss_fhd_ea_f10_cmd_display'\n[    1.314102] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display (ops dsi_display_comp_ops)\n[    1.314108] msm_drm ae00000.qcom,mdss_mdp: bound ae90000.qcom,dp_display (ops dp_display_comp_ops)\n[    1.314114] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-secondary (ops dsi_display_comp_ops)\n[    1.314135] [drm] mapped mdp address space @000000000eabda64\n[    1.314143] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: vbif_nrt_phys\n[    1.314151] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: sid_phys\n[    1.314172] [drm:_sde_kms_get_splash_data:3334] splash mem num_regions:1\n[    1.314184] [drm:_sde_kms_get_splash_data:3369] splash mem for disp:1 add:9c000000 size:1700000\n[    1.314700] [drm:sde_kms_hw_init:3515] sde hardware revision:0x50020000\n[    1.315826] [drm] Created domain mdp_ns [80000000,80000000] secure=0\n[    1.317605] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 41\n[    1.317624] [drm] probing device qcom,smmu_sde_sec\n[    1.317630] [drm] Created domain mdp_s [80000000,80000000] secure=1\n[    1.321076] [drm-dp] dp_aux_get: invalid input\n[    1.321080] [drm-dp] dp_init_sub_modules: failed to initialize aux, rc = -19\n[    1.321088] [drm:sde_connector_init:2293] [sde error]post-init failed, -19\n[    1.321103] [drm-dp-mst]: dp_mst_drm_bridge_init: mst not initialized. cache encoder information\n[    1.321108] [drm-dp-mst]: dp_mst_drm_bridge_init: mst not initialized. cache encoder information\n[    1.321128] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.321425] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.322193] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.322234] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.323078] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    1.323080] [drm] No driver support for vblank timestamp query.\n[    1.323828] [drm] Initialized msm_drm 1.2.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    1.323900] msm-dsi-panel:[dsi_panel_parse_topology:3162] default topology: lm: 1 comp_enc:0 intf: 1\n[    1.324007] msm-dsi-panel:[dsi_panel_parse_partial_update_caps:3252] partial update disabled as the property is not set\n[    1.324142] dsi-ctrl:[_dsi_ctrl_setup_isr] [DSI_0] IRQ 473 registered\n[    1.326354] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-qos-lut : doesn't exist in device tree\n[    1.326357] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-danger-lut : doesn't exist in device tree\n[    1.326361] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-safe-lut : doesn't exist in device tree\n[    1.326408] register_client_adhoc:find path.src 1 dest 590\n[    1.326670] register_client_adhoc:Client handle 47 sde_reg\n[    1.326882] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 42\n[    1.326920] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    1.327088] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 43\n[    1.327110] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    1.327195] register_client_adhoc:find path.src 25 dest 512\n[    1.327393] register_client_adhoc:Client handle 48 mdss_rotator\n[    1.327405] register_client_adhoc:find path.src 1 dest 590\n[    1.327587] register_client_adhoc:Client handle 49 mdss_rot_reg\n[    1.327897] No change in context(0==0), skip\n[    1.328738] sde_rotator_evtlog_create_debugfs: evtlog_status: enable:1, panic:1, dump:2\n[    1.329319] sde_rotator ae00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    1.329583] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.329780] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.329932] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.330107] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.330253] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.331057] iommu: Adding device 62e40000.slim:qcom,iommu_slim_ctrl_cb to group 44\n[    1.331472] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.331614] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.331754] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.331889] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.332028] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.334465] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    1.334784] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm6150@0:qcom,pm6150_rtc: setting system clock to 1971-09-06 21:53:10 UTC (53041990)\n[    1.335402] CAM_ERR: CAM-CCI: cam_cci_assign_fops: 501 Invalid dev node:00000000cc58c20a offset: 0\n[    1.336074] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.336222] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.336363] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.336500] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.336639] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.337071] lpm_levels: register_cluster_lpm_stats()\n[    1.337181] lpm_levels: register_cluster_lpm_stats()\n[    1.339196] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.339349] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.339489] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.339627] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.339767] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.342223] rmnet_ipa3 started initialization\n[    1.342932] RNDIS_IPA module is loaded.\n[    1.346988] msm_bus_late_init: Remove handoff bw requests\n[    1.347797] dbu1: disabling\n[    1.347833] actuator_regulator: disabling\n[    1.347863] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    1.347931] ALSA device list:\n[    1.347933]   No soundcards found.\n[    1.347972] Warning: unable to open an initial console.\n[    1.349386] Freeing unused kernel memory: 6144K\n[    2.240135] pm6150_charger: smblib_icl_change_work: icl_settled=0\n[    2.240544] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    2.240558] SMB1390: smb1390_ilim_vote_cb: Client missing\n[    2.240681] pm6150_charger: smblib_run_aicl: re-running AICL\n[    2.242141] QG-K: qg_battery_soc_smooth_tracking: soc:-22, last_soc:-22, raw_soc:93, soc_changed:0, update_now:0, charge_status:2, batt_ma:289\n[    2.242656] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    2.242798] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    2.242853] SMB1390: smb1390_ilim_vote_cb: Client missing\n[    2.242977] pm6150_charger: smblib_run_aicl: re-running AICL\n[    2.246515] QG-K: qg_charge_full_update: msoc=93 health=1 charge_full=0 charge_done=0 charge_status=2\n[    2.308862] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    2.309116] cpu1 \n[    2.309250] cpu6 \n               Offline CPUs: \n[    2.312560] cpu1 \n[    2.340785] CPU1: shutdown\n[    2.341448] cpu2 \n[    2.372298] CPU2: shutdown\n[    2.373199] cpu3 \n[    2.401234] CPU3: shutdown\n[    2.401825] cpu4 \n[    2.421608] CPU4: shutdown\n[    2.422487] cpu5 \n[    2.441526] CPU5: shutdown\n[    2.442368] cpu6 \n[    2.461299] CPU6: shutdown\n[    2.462149] cpu7 \n[    2.481162] CPU7: shutdown\n\n[    3.280171] of_batterydata_get_best_profile: f10_swd found\n[    3.280196] QCOM-STEPCHG: get_step_chg_jeita_setting_from_profile: ffc-max-voltage_uv reading failed, try max-voltage_uv, rc=-22\n[    3.280228] QCOM-STEPCHG: get_step_chg_jeita_setting_from_profile: don't use dts step_chg_hysteresis: 100000\n[    3.280243] QCOM-STEPCHG: read_range_data_from_node: Count qcom,step-chg-ranges failed, rc=-22\n[    3.280278] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.280289] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.280299] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.280310] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.280320] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.280332] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 0decidegree ~ 50decidegre, 390000uA\n[    3.280344] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 51decidegree ~ 100decidegre, 1170000uA\n[    3.280356] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 101decidegree ~ 150decidegre, 2730000uA\n[    3.280367] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 151decidegree ~ 450decidegre, 3500000uA\n[    3.280378] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 451decidegree ~ 580decidegre, 1950000uA\n[    3.280390] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 0decidegree ~ 50decidegre, 4400000uV\n[    3.280401] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 51decidegree ~ 100decidegre, 4400000uV\n[    3.280412] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 101decidegree ~ 150decidegre, 4400000uV\n[    3.280423] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 151decidegree ~ 450decidegre, 4400000uV\n[    3.280434] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 451decidegree ~ 580decidegre, 4100000uV\n[    7.491953] Sampling power every 250 ms\n               Baseline power usage: \n[   12.653201] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:0, update_now:0, charge_status:2, batt_ma:174\n[   22.883260] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:0, update_now:0, charge_status:2, batt_ma:156\n[   26.721821] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[   26.722127] SMB1390: smb1390_ilim_vote_cb: Client missing\n[   26.722278] pm6150_charger: smblib_run_aicl: re-running AICL\n[   26.722977] real_charger_type:0 pd_verified:0, qc_class_ab:0\n[   26.723390] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[   26.723418] SMB1390: smb1390_ilim_vote_cb: Client missing\n[   26.723550] pm6150_charger: smblib_run_aicl: re-running AICL\n[   26.739087] QG-K: qg_charge_full_update: msoc=93 health=1 charge_full=0 charge_done=0 charge_status=2\n[   26.739187] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[   26.741915] QG-K: qg_get_ffc_iterm_for_chg: ffc_terminal_current other is 830\n[   26.744088] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 329 FCC = 3500000uA FV = 4400000uV\n[   26.744168] pm6150_charger: smblib_set_charge_param: float voltage = 4360000 (0x4c)\n[   26.749611] QG-K: qg_charge_full_update: msoc=93 health=1 charge_full=0 charge_done=0 charge_status=2\n[   33.123316] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:0, update_now:0, charge_status:2, batt_ma:154\n[   43.369350] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:0, update_now:0, charge_status:2, batt_ma:151\n[   53.603216] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:0, update_now:0, charge_status:2, batt_ma:151\n[   63.843208] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:165\n[   74.083650] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:167\n[   82.871525] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000\n[   82.871660] CPU1: Booted secondary processor [51df805e]\n[   83.882135] 641 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 576 768 1017 1248 1324 1497 1612 1708 1804\n               \n                300: \n[   84.323320] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:153\n[   94.562454] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:162\n[  104.802444] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:161\n[  115.042411] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:172\n[  125.282408] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:176\n[  135.522522] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:161\n[  145.762455] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:162\n[  156.002414] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:163\n[  166.242426] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:159\n[  176.482420] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:162\n[  186.722485] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:159\n[  196.962488] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:171\n[  207.214815] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:174\n[  217.442410] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:166\n[  227.682444] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:162\n[  237.931149] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:163\n[  248.163235] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:162\n[  258.402439] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:174\n[  268.646347] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:172\n[  278.882407] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:159\n[  289.122521] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:161\n[  299.362901] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:177\n[  305.120384] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120416] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120481] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120502] audio_notifer_reg_service: service SSR_ADSP is in use\n[  305.120552] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120561] ADSPRPC: Audio PD restart notifier locator down\n[  305.120605] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120612] ADSPRPC: Audio PD restart notifier locator down\n[  305.120640] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  309.602414] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:165\n[  319.842417] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:165\n[  330.082411] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:159\n[  340.322485] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:168\n[  350.562478] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:173\n[  360.802433] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:159\n[  361.501808]  1114     3.7 C/MHz     63 mW   16.9 J   17.7 I/mJ   269.3 s\n                576: \n[  371.042244] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:165\n[  381.282246] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:163\n[  391.522236] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:177\n[  401.762243] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:177\n[  412.002240] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:165\n[  422.242228] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:163\n[  432.493509] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:163\n[  442.722236] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:178\n[  452.962254] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:164\n[  463.208745] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:166\n[  473.442243] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:165\n[  483.682225] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:178\n[  493.924808] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:174\n[  504.162228] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:165\n[  510.163079]  2139     3.7 C/MHz     79 mW   11.1 J   27.1 I/mJ   140.3 s\n                768: \n[  514.402933] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:153\n[  524.642204] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:180\n[  534.882215] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:181\n[  545.122194] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:169\n[  555.362194] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:166\n[  565.602192] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:166\n[  575.842182] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:178\n[  586.082181] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:175\n[  596.322198] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:168\n[  606.562192] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:164\n[  616.802182] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:166\n[  623.529539]  2852     3.7 C/MHz     89 mW    9.4 J   32.0 I/mJ   105.2 s\n               1017: \n[  627.055737] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:152\n[  637.282163] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:183\n[  647.522159] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:185\n[  657.771180] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:183\n[  668.002162] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:173\n[  678.242167] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:170\n[  688.486483] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:171\n[  698.722160] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:171\n[  708.962167] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:183\n[  711.215849]  3779     3.7 C/MHz    106 mW    8.4 J   35.8 I/mJ    79.4 s\n               1248: \n[  719.202902] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:159\n[  729.442146] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:176\n[  739.682136] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:173\n[  749.922147] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:179\n[  760.162148] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:189\n[  770.402140] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:176\n[  780.642524] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:176\n[  784.319222]  4634     3.7 C/MHz    120 mW    7.8 J   38.6 I/mJ    64.7 s\n               1324: \n[  790.882874] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:153\n[  801.122138] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:189\n[  811.362151] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:176\n[  821.602127] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:174\n[  831.842128] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:175\n[  842.082155] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:190\n[  852.333740] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:177\n[  853.651387]  4919     3.7 C/MHz    125 mW    7.6 J   39.5 I/mJ    61.0 s\n               1497: \n[  862.562140] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:179\n[  872.802137] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:182\n[  883.048982] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:193\n[  893.282119] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:180\n[  903.522139] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:178\n[  913.764245] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:178\n[  915.947307]  5561     3.7 C/MHz    135 mW    7.3 J   41.2 I/mJ    54.0 s\n               1612: \n[  924.002856] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:165\n[  934.242136] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:179\n[  944.482114] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:180\n[  954.722117] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:188\n[  964.962145] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:183\n[  974.227451]  5989     3.7 C/MHz    142 mW    7.1 J   42.2 I/mJ    50.1 s\n               1708: \n[  975.202871] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:152\n[  985.442121] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:185\n[  995.682126] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:196\n[ 1005.922115] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:183\n[ 1016.162118] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:185\n[ 1026.402127] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:183\n[ 1029.744541]  6346     3.7 C/MHz    154 mW    7.3 J   41.3 I/mJ    47.3 s\n               1804: \n[ 1036.642885] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:171\n[ 1046.882132] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:200\n[ 1057.122122] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:187\n[ 1067.362112] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:186\n[ 1077.616418] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:189\n[ 1082.782882] CPU1: shutdown\n[ 1082.786879] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000\n[ 1082.786913] CPU6: Booted secondary processor [51df804e]\n[ 1083.795955]  6702     3.7 C/MHz    172 mW    7.7 J   38.9 I/mJ    44.8 s\n               \n               \n               ===== CPU 6 =====\n               Frequencies: 300 652 806 979 1094 1209 1324 1555 1708 1843 1939 2169 2208\n               \n                300: \n[ 1087.843262] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:166\n[ 1098.082480] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:172\n[ 1108.327023] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:173\n[ 1118.562548] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:169\n[ 1128.802466] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:186\n[ 1139.042468] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:173\n[ 1149.282479] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:172\n[ 1159.522474] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:173\n[ 1169.762507] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:187\n[ 1180.002493] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:172\n[ 1190.242479] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:172\n[ 1200.482472] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:175\n[ 1210.722502] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:182\n[ 1220.381190]  2338     7.8 C/MHz    110 mW   14.2 J   21.2 I/mJ   128.4 s\n                652: \n[ 1220.963266] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:156\n[ 1231.202481] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:185\n[ 1241.442485] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:187\n[ 1251.682478] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:185\n[ 1261.922474] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:201\n[ 1272.174301] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:195\n[ 1282.402476] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:187\n[ 1287.588218]  5088     7.8 C/MHz    169 mW   10.0 J   30.0 I/mJ    59.0 s\n                806: \n[ 1292.643213] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:151\n[ 1302.889544] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:204\n[ 1313.123681] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:205\n[ 1323.362500] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:194\n[ 1333.604807] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:191\n[ 1343.690889]  6286     7.8 C/MHz    196 mW    9.3 J   32.1 I/mJ    47.7 s\n                979: \n[ 1343.843222] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:152\n[ 1354.082479] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:205\n[ 1364.322548] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:216\n[ 1374.562285] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:214\n[ 1384.802473] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:205\n[ 1391.220356]  7632     7.8 C/MHz    238 mW    9.4 J   32.0 I/mJ    39.3 s\n               1094: \n[ 1395.043259] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:157\n[ 1405.282481] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:226\n[ 1415.522479] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:213\n[ 1425.762549] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:209\n[ 1434.714710]  8527     7.8 C/MHz    272 mW    9.6 J   31.3 I/mJ    35.2 s\n               1209: \n[ 1436.003244] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:157\n[ 1446.242492] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:220\n[ 1456.482515] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:231\n[ 1466.722477] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:220\n[ 1474.929240]  9424     7.8 C/MHz    297 mW    9.5 J   31.7 I/mJ    31.9 s\n               1324: \n[ 1476.963263] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:150\n[ 1487.202512] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:225\n[ 1497.451861] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:240\n[ 1507.682919] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:229\n[ 1512.368702] 10326     7.8 C/MHz    335 mW    9.7 J   30.8 I/mJ    29.1 s\n               1555: \n[ 1517.923298] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:152\n[ 1528.167343] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:248\n[ 1538.402469] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:263\n[ 1545.512818] 12120     7.8 C/MHz    430 mW   10.6 J   28.2 I/mJ    24.8 s\n               1708: \n[ 1548.644085] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:151\n[ 1558.883249] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:269\n[ 1569.122471] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:267\n[ 1576.386832] 13317     7.8 C/MHz    502 mW   11.3 J   26.5 I/mJ    22.5 s\n               1843: \n[ 1579.363351] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:166\n[ 1589.602429] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:286\n[ 1599.842474] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:282\n[ 1605.495448] 14362     7.8 C/MHz    573 mW   12.0 J   25.1 I/mJ    20.9 s\n               1939: \n[ 1610.083265] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:152\n[ 1620.322508] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:312\n[ 1630.562269] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:303\n[ 1633.595309] 15097     7.8 C/MHz    633 mW   12.6 J   23.8 I/mJ    19.9 s\n               2169: \n[ 1640.803260] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:163\n[ 1651.042577] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:342\n[ 1659.677206] 16910     7.8 C/MHz    816 mW   14.5 J   20.7 I/mJ    17.8 s\n               2208: \n[ 1661.283231] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:157\n[ 1671.522514] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:352\n[ 1681.762483] QG-K: qg_battery_soc_smooth_tracking: soc:93, last_soc:93, raw_soc:93, soc_changed:1, update_now:0, charge_status:2, batt_ma:345\n[ 1685.532113] CPU6: shutdown\n[ 1685.565869] 17198     7.8 C/MHz    830 mW   14.5 J   20.7 I/mJ    17.5 s\n               \n               \n               Benchmark finished!\n[ 1685.598650] \n               real\t28m4.115s\n               user\t23m36.952s\n               sys\t0m2.419s\n"
  },
  {
    "path": "results/sm7150/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  4:     175478   PDC-GIC  19 Level     arch_timer\n  6:     168843   PDC-GIC  38 Level     arch_mem_timer\n  8:          0   PDC-GIC  21 Level     arm-pmu\n  9:          0   PDC-GIC  82 Level     arm_dsu_0\n 26:          0   PDC-GIC 323 Level     ngd_slim_irq\n 28:          0   PDC-GIC  32 Edge      apps_wdog_bark\n 30:          0   PDC-GIC 524 Level     eud_irq\n 33:          0   PDC-GIC 538 Level     tsens-upper-lower\n 34:          0   PDC-GIC 540 Level     tsens-critical\n 35:          0   PDC-GIC 539 Level     tsens-upper-lower\n 36:          0   PDC-GIC 541 Level     tsens-critical\n 37:        896   PDC-GIC  37 Level     apps_rsc\n 38:          0   PDC-GIC 161 Level     display_rsc\n 39:          0   PDC-GIC 620 Edge      qcom,qmp-npu-low\n 40:          0   PDC-GIC 621 Edge      qcom,qmp-npu-high\n 41:          7   PDC-GIC 421 Edge      qcom,qmp-aop\n 42:          0   PDC-GIC 483 Edge      smp2p\n 43:          0   PDC-GIC 204 Edge      smp2p\n 44:          0   PDC-GIC 608 Edge      smp2p\n 47:        408   PDC-GIC 297 Edge      1d84000.ufshc\n 48:          0   PDC-GIC 194 Edge      adsp\n 49:          0   PDC-GIC 304 Level     sps\n 51:          0   PDC-GIC 610 Edge      cdsp\n 52:          0   PDC-GIC 298 Edge      modem\n 69:          0   PDC-GIC 397 Level     arm-smmu-context-fault\n 70:          5   PDC-GIC 635 Level     i2c_geni\n 71:          3   PDC-GIC 637 Level     i2c_geni\n 72:          0   PDC-GIC 636 Level     msm_serial_geni0\n 74:       3796   PDC-GIC 386 Level     i2c_geni\n 75:        238   PDC-GIC 388 Level     i2c_geni\n 76:          0   PDC-GIC 206 Level     msm_vidc\n 77:          0   PDC-GIC 115 Edge      msm_drm\n 78:          0   PDC-GIC 509 Edge      csiphy\n 79:          0   PDC-GIC 510 Edge      csiphy\n 80:          0   PDC-GIC 511 Edge      csiphy\n 81:          0   PDC-GIC 639 Edge      csiphy\n 82:          0   PDC-GIC 492 Edge      cci\n 83:          0   PDC-GIC 493 Edge      cci\n 84:          1   PDC-GIC 500 Edge      cpas-cdm\n 85:          0   PDC-GIC 496 Edge      csid\n 86:          2   PDC-GIC 497 Edge      ife\n 87:          0   PDC-GIC 498 Edge      csid\n 88:          2   PDC-GIC 499 Edge      ife\n 89:          0   PDC-GIC 470 Edge      csid-lite\n 90:          2   PDC-GIC 466 Edge      ife-lite\n 91:          0   PDC-GIC 495 Edge      a5\n 92:          0   PDC-GIC 506 Edge      jpeg\n 93:          0   PDC-GIC 507 Edge      jpegdma\n 94:          2   PDC-GIC 494 Edge      fd\n 95:          1   PDC-GIC 508 Edge      lrme\n 96:          0   PDC-GIC 491 Edge      cpas_camnoc\n 97:          0   PDC-GIC 261 Level     arm-smmu global fault\n 98:          0   PDC-GIC 263 Level     arm-smmu global fault\n 99:          0   PDC-GIC 396 Level     arm-smmu-context-fault\n100:          0   PDC-GIC 398 Level     arm-smmu-context-fault\n101:          0   PDC-GIC 399 Level     arm-smmu-context-fault\n106:          0   PDC-GIC  97 Level     arm-smmu global fault\n108:          0   PDC-GIC 129 Level     arm-smmu-context-fault\n110:          0   PDC-GIC 131 Level     arm-smmu-context-fault\n111:          0   PDC-GIC 132 Level     arm-smmu-context-fault\n112:          0   PDC-GIC 133 Level     arm-smmu-context-fault\n113:          0   PDC-GIC 134 Level     arm-smmu-context-fault\n114:          0   PDC-GIC 135 Level     arm-smmu-context-fault\n115:          0   PDC-GIC 136 Level     arm-smmu-context-fault\n116:          0   PDC-GIC 137 Level     arm-smmu-context-fault\n117:          0   PDC-GIC 138 Level     arm-smmu-context-fault\n118:          0   PDC-GIC 139 Level     arm-smmu-context-fault\n119:          0   PDC-GIC 140 Level     arm-smmu-context-fault\n120:          0   PDC-GIC 141 Level     arm-smmu-context-fault\n121:          0   PDC-GIC 142 Level     arm-smmu-context-fault\n122:          0   PDC-GIC 143 Level     arm-smmu-context-fault\n123:          0   PDC-GIC 144 Level     arm-smmu-context-fault\n124:          0   PDC-GIC 145 Level     arm-smmu-context-fault\n125:          0   PDC-GIC 146 Level     arm-smmu-context-fault\n126:          0   PDC-GIC 147 Level     arm-smmu-context-fault\n127:          0   PDC-GIC 148 Level     arm-smmu-context-fault\n128:          0   PDC-GIC 149 Level     arm-smmu-context-fault\n129:          0   PDC-GIC 150 Level     arm-smmu-context-fault\n130:          0   PDC-GIC 213 Level     arm-smmu-context-fault\n131:          0   PDC-GIC 214 Level     arm-smmu-context-fault\n132:          0   PDC-GIC 215 Level     arm-smmu-context-fault\n133:          0   PDC-GIC 216 Level     arm-smmu-context-fault\n134:          0   PDC-GIC 217 Level     arm-smmu-context-fault\n135:          0   PDC-GIC 218 Level     arm-smmu-context-fault\n136:          0   PDC-GIC 219 Level     arm-smmu-context-fault\n137:          0   PDC-GIC 220 Level     arm-smmu-context-fault\n138:          0   PDC-GIC 221 Level     arm-smmu-context-fault\n139:          0   PDC-GIC 222 Level     arm-smmu-context-fault\n140:          0  pmic_arb 8388807 Edge      pon_kpdpwr_status\n141:          0  pmic_arb 8454343 Edge      pon_resin_status\n143:          0  pmic_arb 8716487 Edge      pon_kpdpwr_resin_bark\n144:        443  pmic_arb 51380437 Edge      pm-adc5\n145:          0  pmic_arb 55574742 Edge      thr-int-en\n146:          0  pmic_arb 24117455 Edge      sig-tx\n147:          0  pmic_arb 24182991 Edge      sig-rx\n148:          0  pmic_arb 24248527 Edge      msg-tx\n149:          0  pmic_arb 24314063 Edge      msg-rx\n150:          0  pmic_arb 24379599 Edge      msg-tx-failed\n151:          0  pmic_arb 24445135 Edge      msg-tx-discarded\n152:          0  pmic_arb 24510671 Edge      msg-rx-discarded\n154:          0  pmic_arb 30408915 Edge      bcl-lvl0\n155:          0  pmic_arb 30474451 Edge      bcl-lvl1\n156:          0  pmic_arb 30539987 Edge      bcl-lvl2\n157:          0  pmic_arb 37748948 Edge      qcom,temp-alarm\n160:          0  pmic_arb 203423971 Level     i2c_pmic_stat_irq\n164:          0  pmic_arb 1111490794 Edge      qcom,temp-alarm\n165:          0  pmic_arb 1137705197 Edge      bcl-lvl0\n166:          0  pmic_arb 1137770733 Edge      bcl-lvl1\n167:          0  pmic_arb 1137836269 Edge      bcl-lvl2\n168:          6  pmic_arb 1125122283 Edge      pm-adc5\n169:          0  pmic_arb 1129316588 Edge      thr-int-en\n171:          0  pmic_arb 1276117232 Edge      volume_up\n182:          0  pmic_arb 1563427082 Edge      qpnp_flash_led_fault_irq\n183:          0  pmic_arb 1563623690 Edge      qpnp_flash_led_all_ramp_down_done_irq\n184:          0  pmic_arb 1563689226 Edge      qpnp_flash_led_all_ramp_up_done_irq\n185:          0   PDC-GIC 223 Level     arm-smmu-context-fault\n186:          0   PDC-GIC 224 Level     arm-smmu-context-fault\n187:          0   PDC-GIC 347 Level     arm-smmu-context-fault\n188:          0   PDC-GIC 348 Level     arm-smmu-context-fault\n244:         10  msmgpio-dc   9 Edge      goodix_ts\n246:          0  msmgpio-dc  10 Edge      TE_GPIO\n268:          2  msmgpio-dc  37 Level     nq-nci\n296:          0  msmgpio-dc  56 Edge      tfa98xx\n346:          0  msmgpio-dc  93 Edge      akm09970_irq\n374:          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n375:          0   PDC-GIC 162 Edge      pwr_event_irq\n376:          0   PDC-GIC 518 Level     ss_phy_irq\n377:          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n378:          0   PDC-GIC 332 Level     kgsl-3d0\n379:          0   PDC-GIC 336 Level     HFI\n380:          0   PDC-GIC 337 Level     GMU\n381:          0   PDC-GIC 615 Edge      error_irq\n382:          0   PDC-GIC 617 Edge      wdg_bite_irq\n383:          0   PDC-GIC 619 Level     ipc_irq\n384:          0   PDC-GIC  64 Level     limits_sensor-00\n385:          0   PDC-GIC  65 Level     limits_sensor-01\n386:          0     smp2p   2 Edge      adsp\n387:          0     smp2p   0 Edge      adsp\n388:          0     smp2p   1 Edge      error_ready_interrupt\n389:          0     smp2p   3 Edge      adsp\n390:          0     smp2p   2 Edge      cdsp\n391:          0     smp2p   0 Edge      cdsp\n392:          0     smp2p   1 Edge      error_ready_interrupt\n393:          0     smp2p   3 Edge      cdsp\n394:          0     smp2p   2 Edge      modem\n395:          0     smp2p   0 Edge      modem\n396:          0     smp2p   1 Edge      error_ready_interrupt\n397:          0     smp2p   3 Edge      modem\n398:          0     smp2p   7 Edge      modem\n399:          0     smp2p   0 Edge      smp2p_sleepstate\n400:          0   PDC-GIC 165 Edge      dwc3\n402:          0  pmic_arb 101777626 Edge      qpnp_rtc_alarm\n403:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n405:          0  pmic_arb 75563224 Edge      qg-vbat-low\n406:          0  pmic_arb 75628760 Edge      qg-vbat-empty\n407:         26  pmic_arb 75694296 Edge      qg-fifo-done\n408:          0  pmic_arb 75759832 Edge      qg-good-ocv\n409:          0  pmic_arb 16777416 Edge      chgr-error\n410:          0  pmic_arb 16842952 Edge      chg-state-change\n417:          0  pmic_arb 17825993 Edge      otg-fail\n421:          0  pmic_arb 18088137 Edge      high-duty-cycle\n422:          0  pmic_arb 18153673 Edge      input-current-limiting\n424:          0  pmic_arb 18284745 Edge      switcher-power-ok\n425:          0  pmic_arb 18874570 Edge      bat-temp\n426:          0  pmic_arb 19005642 Edge      bat-ov\n427:          0  pmic_arb 19071178 Edge      bat-low\n428:          0  pmic_arb 19136714 Edge      bat-therm-or-id-missing\n429:          0  pmic_arb 19202250 Edge      bat-terminal-missing\n432:          0  pmic_arb 19923147 Edge      usbin-collapse\n433:          0  pmic_arb 19988683 Edge      usbin-vashdn\n434:          0  pmic_arb 20054219 Edge      usbin-uv\n435:          0  pmic_arb 20119755 Edge      usbin-ov\n436:          0  pmic_arb 20185291 Edge      usbin-plugin\n438:          0  pmic_arb 20316363 Edge      usbin-src-change\n439:          0  pmic_arb 20381899 Edge      usbin-icl-change\n441:          0  pmic_arb 21102796 Edge      dcin-uv\n442:          0  pmic_arb 21168332 Edge      dcin-ov\n443:          0  pmic_arb 21233868 Edge      dcin-plugin\n445:          0  pmic_arb 21364940 Edge      dcin-pon\n446:          0  pmic_arb 21430476 Edge      dcin-en\n447:          0  pmic_arb 22020301 Edge      typec-or-rid-detect-change\n449:          0  pmic_arb 22151373 Edge      typec-cc-state-change\n450:          0  pmic_arb 22216909 Edge      typec-vconn-oc\n452:          0  pmic_arb 22347981 Edge      typec-attach-detach\n453:          0  pmic_arb 22413517 Edge      typec-legacy-cable-detect\n455:          0  pmic_arb 23068878 Edge      wdog-snarl\n456:          0  pmic_arb 23134414 Edge      wdog-bark\n458:          0  pmic_arb 23265486 Edge      aicl-done\n459:          0  pmic_arb 23331022 Edge      smb-en\n461:          0  pmic_arb 23462094 Edge      temp-change\n463:          0  pmic_arb 185663708 Edge      sdam-sts\n464:          0  i2c_pmic_irq_chip 4097 Edge      switcher-off-window\n465:          0  i2c_pmic_irq_chip 4098 Edge      switcher-off-fault\n466:          0  i2c_pmic_irq_chip 4100 Edge      tsd-fault\n467:          0  i2c_pmic_irq_chip 4104 Edge      irev-fault\n468:          0  i2c_pmic_irq_chip 4112 Edge      vph-ov-hard\n469:          0  i2c_pmic_irq_chip 4128 Edge      vph-ov-soft\n470:          0  i2c_pmic_irq_chip 4160 Edge      ilim\n471:          0  i2c_pmic_irq_chip 4224 Edge      temp-alarm\n472:          0       sde  12 Edge      dp_display_isr\n473:          0       sde   4 Edge      dsi_ctrl\nIPI0:       187       Rescheduling interrupts\nIPI1:         9       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:         0       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm7150/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  4:        461          1          1          1          1          1          1          1   PDC-GIC  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   PDC-GIC  38 Level     arch_mem_timer\n  8:          0          0          0          0          0          0          0          0   PDC-GIC  21 Level     arm-pmu\n  9:          0          0          0          0          0          0          0          0   PDC-GIC  82 Level     arm_dsu_0\n 26:          0          0          0          0          0          0          0          0   PDC-GIC 323 Level     ngd_slim_irq\n 28:          0          0          0          0          0          0          0          0   PDC-GIC  32 Edge      apps_wdog_bark\n 30:          0          0          0          0          0          0          0          0   PDC-GIC 524 Level     eud_irq\n 33:          0          0          0          0          0          0          0          0   PDC-GIC 538 Level     tsens-upper-lower\n 34:          0          0          0          0          0          0          0          0   PDC-GIC 540 Level     tsens-critical\n 35:          0          0          0          0          0          0          0          0   PDC-GIC 539 Level     tsens-upper-lower\n 36:          0          0          0          0          0          0          0          0   PDC-GIC 541 Level     tsens-critical\n 37:        213          0          0          0          0          0          0          0   PDC-GIC  37 Level     apps_rsc\n 38:          0          0          0          0          0          0          0          0   PDC-GIC 161 Level     display_rsc\n 39:          0          0          0          0          0          0          0          0   PDC-GIC 620 Edge      qcom,qmp-npu-low\n 40:          0          0          0          0          0          0          0          0   PDC-GIC 621 Edge      qcom,qmp-npu-high\n 41:          7          0          0          0          0          0          0          0   PDC-GIC 421 Edge      qcom,qmp-aop\n 42:          0          0          0          0          0          0          0          0   PDC-GIC 483 Edge      smp2p\n 43:          0          0          0          0          0          0          0          0   PDC-GIC 204 Edge      smp2p\n 44:          0          0          0          0          0          0          0          0   PDC-GIC 608 Edge      smp2p\n 47:        402          0          0          0          0          0          0          0   PDC-GIC 297 Edge      1d84000.ufshc\n 48:          0          0          0          0          0          0          0          0   PDC-GIC 194 Edge      adsp\n 49:          0          0          0          0          0          0          0          0   PDC-GIC 304 Level     sps\n 51:          0          0          0          0          0          0          0          0   PDC-GIC 610 Edge      cdsp\n 52:          0          0          0          0          0          0          0          0   PDC-GIC 298 Edge      modem\n 69:          0          0          0          0          0          0          0          0   PDC-GIC 397 Level     arm-smmu-context-fault\n 70:          5          0          0          0          0          0          0          0   PDC-GIC 635 Level     i2c_geni\n 71:          3          0          0          0          0          0          0          0   PDC-GIC 637 Level     i2c_geni\n 72:          0          0          0          0          0          0          0          0   PDC-GIC 636 Level     msm_serial_geni0\n 74:        231          0          0          0          0          0          0          0   PDC-GIC 386 Level     i2c_geni\n 75:        166          0          0          0          0          0          0          0   PDC-GIC 388 Level     i2c_geni\n 76:          0          0          0          0          0          0          0          0   PDC-GIC 206 Level     msm_vidc\n 77:          0          0          0          0          0          0          0          0   PDC-GIC 115 Edge      msm_drm\n 78:          0          0          0          0          0          0          0          0   PDC-GIC 509 Edge      csiphy\n 79:          0          0          0          0          0          0          0          0   PDC-GIC 510 Edge      csiphy\n 80:          0          0          0          0          0          0          0          0   PDC-GIC 511 Edge      csiphy\n 81:          0          0          0          0          0          0          0          0   PDC-GIC 639 Edge      csiphy\n 82:          0          0          0          0          0          0          0          0   PDC-GIC 492 Edge      cci\n 83:          0          0          0          0          0          0          0          0   PDC-GIC 493 Edge      cci\n 84:          1          0          0          0          0          0          0          0   PDC-GIC 500 Edge      cpas-cdm\n 85:          0          0          0          0          0          0          0          0   PDC-GIC 496 Edge      csid\n 86:          2          0          0          0          0          0          0          0   PDC-GIC 497 Edge      ife\n 87:          0          0          0          0          0          0          0          0   PDC-GIC 498 Edge      csid\n 88:          2          0          0          0          0          0          0          0   PDC-GIC 499 Edge      ife\n 89:          0          0          0          0          0          0          0          0   PDC-GIC 470 Edge      csid-lite\n 90:          2          0          0          0          0          0          0          0   PDC-GIC 466 Edge      ife-lite\n 91:          0          0          0          0          0          0          0          0   PDC-GIC 495 Edge      a5\n 92:          0          0          0          0          0          0          0          0   PDC-GIC 506 Edge      jpeg\n 93:          0          0          0          0          0          0          0          0   PDC-GIC 507 Edge      jpegdma\n 94:          2          0          0          0          0          0          0          0   PDC-GIC 494 Edge      fd\n 95:          1          0          0          0          0          0          0          0   PDC-GIC 508 Edge      lrme\n 96:          0          0          0          0          0          0          0          0   PDC-GIC 491 Edge      cpas_camnoc\n 97:          0          0          0          0          0          0          0          0   PDC-GIC 261 Level     arm-smmu global fault\n 98:          0          0          0          0          0          0          0          0   PDC-GIC 263 Level     arm-smmu global fault\n 99:          0          0          0          0          0          0          0          0   PDC-GIC 396 Level     arm-smmu-context-fault\n100:          0          0          0          0          0          0          0          0   PDC-GIC 398 Level     arm-smmu-context-fault\n101:          0          0          0          0          0          0          0          0   PDC-GIC 399 Level     arm-smmu-context-fault\n106:          0          0          0          0          0          0          0          0   PDC-GIC  97 Level     arm-smmu global fault\n108:          0          0          0          0          0          0          0          0   PDC-GIC 129 Level     arm-smmu-context-fault\n110:          0          0          0          0          0          0          0          0   PDC-GIC 131 Level     arm-smmu-context-fault\n111:          0          0          0          0          0          0          0          0   PDC-GIC 132 Level     arm-smmu-context-fault\n112:          0          0          0          0          0          0          0          0   PDC-GIC 133 Level     arm-smmu-context-fault\n113:          0          0          0          0          0          0          0          0   PDC-GIC 134 Level     arm-smmu-context-fault\n114:          0          0          0          0          0          0          0          0   PDC-GIC 135 Level     arm-smmu-context-fault\n115:          0          0          0          0          0          0          0          0   PDC-GIC 136 Level     arm-smmu-context-fault\n116:          0          0          0          0          0          0          0          0   PDC-GIC 137 Level     arm-smmu-context-fault\n117:          0          0          0          0          0          0          0          0   PDC-GIC 138 Level     arm-smmu-context-fault\n118:          0          0          0          0          0          0          0          0   PDC-GIC 139 Level     arm-smmu-context-fault\n119:          0          0          0          0          0          0          0          0   PDC-GIC 140 Level     arm-smmu-context-fault\n120:          0          0          0          0          0          0          0          0   PDC-GIC 141 Level     arm-smmu-context-fault\n121:          0          0          0          0          0          0          0          0   PDC-GIC 142 Level     arm-smmu-context-fault\n122:          0          0          0          0          0          0          0          0   PDC-GIC 143 Level     arm-smmu-context-fault\n123:          0          0          0          0          0          0          0          0   PDC-GIC 144 Level     arm-smmu-context-fault\n124:          0          0          0          0          0          0          0          0   PDC-GIC 145 Level     arm-smmu-context-fault\n125:          0          0          0          0          0          0          0          0   PDC-GIC 146 Level     arm-smmu-context-fault\n126:          0          0          0          0          0          0          0          0   PDC-GIC 147 Level     arm-smmu-context-fault\n127:          0          0          0          0          0          0          0          0   PDC-GIC 148 Level     arm-smmu-context-fault\n128:          0          0          0          0          0          0          0          0   PDC-GIC 149 Level     arm-smmu-context-fault\n129:          0          0          0          0          0          0          0          0   PDC-GIC 150 Level     arm-smmu-context-fault\n130:          0          0          0          0          0          0          0          0   PDC-GIC 213 Level     arm-smmu-context-fault\n131:          0          0          0          0          0          0          0          0   PDC-GIC 214 Level     arm-smmu-context-fault\n132:          0          0          0          0          0          0          0          0   PDC-GIC 215 Level     arm-smmu-context-fault\n133:          0          0          0          0          0          0          0          0   PDC-GIC 216 Level     arm-smmu-context-fault\n134:          0          0          0          0          0          0          0          0   PDC-GIC 217 Level     arm-smmu-context-fault\n135:          0          0          0          0          0          0          0          0   PDC-GIC 218 Level     arm-smmu-context-fault\n136:          0          0          0          0          0          0          0          0   PDC-GIC 219 Level     arm-smmu-context-fault\n137:          0          0          0          0          0          0          0          0   PDC-GIC 220 Level     arm-smmu-context-fault\n138:          0          0          0          0          0          0          0          0   PDC-GIC 221 Level     arm-smmu-context-fault\n139:          0          0          0          0          0          0          0          0   PDC-GIC 222 Level     arm-smmu-context-fault\n140:          0          0          0          0          0          0          0          0  pmic_arb 8388807 Edge      pon_kpdpwr_status\n141:          0          0          0          0          0          0          0          0  pmic_arb 8454343 Edge      pon_resin_status\n143:          0          0          0          0          0          0          0          0  pmic_arb 8716487 Edge      pon_kpdpwr_resin_bark\n144:         44          0          0          0          0          0          0          0  pmic_arb 51380437 Edge      pm-adc5\n145:          0          0          0          0          0          0          0          0  pmic_arb 55574742 Edge      thr-int-en\n146:          0          0          0          0          0          0          0          0  pmic_arb 24117455 Edge      sig-tx\n147:          0          0          0          0          0          0          0          0  pmic_arb 24182991 Edge      sig-rx\n148:          0          0          0          0          0          0          0          0  pmic_arb 24248527 Edge      msg-tx\n149:          0          0          0          0          0          0          0          0  pmic_arb 24314063 Edge      msg-rx\n150:          0          0          0          0          0          0          0          0  pmic_arb 24379599 Edge      msg-tx-failed\n151:          0          0          0          0          0          0          0          0  pmic_arb 24445135 Edge      msg-tx-discarded\n152:          0          0          0          0          0          0          0          0  pmic_arb 24510671 Edge      msg-rx-discarded\n154:          0          0          0          0          0          0          0          0  pmic_arb 30408915 Edge      bcl-lvl0\n155:          0          0          0          0          0          0          0          0  pmic_arb 30474451 Edge      bcl-lvl1\n156:          0          0          0          0          0          0          0          0  pmic_arb 30539987 Edge      bcl-lvl2\n157:          0          0          0          0          0          0          0          0  pmic_arb 37748948 Edge      qcom,temp-alarm\n160:          0          0          0          0          0          0          0          0  pmic_arb 203423971 Level     i2c_pmic_stat_irq\n164:          0          0          0          0          0          0          0          0  pmic_arb 1111490794 Edge      qcom,temp-alarm\n165:          0          0          0          0          0          0          0          0  pmic_arb 1137705197 Edge      bcl-lvl0\n166:          0          0          0          0          0          0          0          0  pmic_arb 1137770733 Edge      bcl-lvl1\n167:          0          0          0          0          0          0          0          0  pmic_arb 1137836269 Edge      bcl-lvl2\n168:          5          0          0          0          0          0          0          0  pmic_arb 1125122283 Edge      pm-adc5\n169:          0          0          0          0          0          0          0          0  pmic_arb 1129316588 Edge      thr-int-en\n171:          0          0          0          0          0          0          0          0  pmic_arb 1276117232 Edge      volume_up\n182:          0          0          0          0          0          0          0          0  pmic_arb 1563427082 Edge      qpnp_flash_led_fault_irq\n183:          0          0          0          0          0          0          0          0  pmic_arb 1563623690 Edge      qpnp_flash_led_all_ramp_down_done_irq\n184:          0          0          0          0          0          0          0          0  pmic_arb 1563689226 Edge      qpnp_flash_led_all_ramp_up_done_irq\n185:          0          0          0          0          0          0          0          0   PDC-GIC 223 Level     arm-smmu-context-fault\n186:          0          0          0          0          0          0          0          0   PDC-GIC 224 Level     arm-smmu-context-fault\n187:          0          0          0          0          0          0          0          0   PDC-GIC 347 Level     arm-smmu-context-fault\n188:          0          0          0          0          0          0          0          0   PDC-GIC 348 Level     arm-smmu-context-fault\n244:          1          0          0          0          0          0          0          0  msmgpio-dc   9 Edge      goodix_ts\n246:          0          0          0          0          0          0          0          0  msmgpio-dc  10 Edge      TE_GPIO\n268:          2          0          0          0          0          0          0          0  msmgpio-dc  37 Level     nq-nci\n296:          0          0          0          0          0          0          0          0  msmgpio-dc  56 Edge      tfa98xx\n346:          0          0          0          0          0          0          0          0  msmgpio-dc  93 Edge      akm09970_irq\n374:          0          0          0          0          0          0          0          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n375:          0          0          0          0          0          0          0          0   PDC-GIC 162 Edge      pwr_event_irq\n376:          0          0          0          0          0          0          0          0   PDC-GIC 518 Level     ss_phy_irq\n377:          0          0          0          0          0          0          0          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n378:          0          0          0          0          0          0          0          0   PDC-GIC 332 Level     kgsl-3d0\n379:          0          0          0          0          0          0          0          0   PDC-GIC 336 Level     HFI\n380:          0          0          0          0          0          0          0          0   PDC-GIC 337 Level     GMU\n381:          0          0          0          0          0          0          0          0   PDC-GIC 615 Edge      error_irq\n382:          0          0          0          0          0          0          0          0   PDC-GIC 617 Edge      wdg_bite_irq\n383:          0          0          0          0          0          0          0          0   PDC-GIC 619 Level     ipc_irq\n384:          0          0          0          0          0          0          0          0   PDC-GIC  64 Level     limits_sensor-00\n385:          0          0          0          0          0          0          0          0   PDC-GIC  65 Level     limits_sensor-01\n386:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n387:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n388:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n389:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n390:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n391:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n392:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n393:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n394:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n395:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n396:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n397:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n398:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n399:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n400:          0          0          0          0          0          0          0          0   PDC-GIC 165 Edge      dwc3\n402:          0          0          0          0          0          0          0          0  pmic_arb 101777626 Edge      qpnp_rtc_alarm\n403:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n405:          0          0          0          0          0          0          0          0  pmic_arb 75563224 Edge      qg-vbat-low\n406:          0          0          0          0          0          0          0          0  pmic_arb 75628760 Edge      qg-vbat-empty\n407:          0          0          0          0          0          0          0          0  pmic_arb 75694296 Edge      qg-fifo-done\n408:          0          0          0          0          0          0          0          0  pmic_arb 75759832 Edge      qg-good-ocv\n409:          0          0          0          0          0          0          0          0  pmic_arb 16777416 Edge      chgr-error\n410:          0          0          0          0          0          0          0          0  pmic_arb 16842952 Edge      chg-state-change\n417:          0          0          0          0          0          0          0          0  pmic_arb 17825993 Edge      otg-fail\n421:          0          0          0          0          0          0          0          0  pmic_arb 18088137 Edge      high-duty-cycle\n422:          0          0          0          0          0          0          0          0  pmic_arb 18153673 Edge      input-current-limiting\n424:          0          0          0          0          0          0          0          0  pmic_arb 18284745 Edge      switcher-power-ok\n425:          0          0          0          0          0          0          0          0  pmic_arb 18874570 Edge      bat-temp\n426:          0          0          0          0          0          0          0          0  pmic_arb 19005642 Edge      bat-ov\n427:          0          0          0          0          0          0          0          0  pmic_arb 19071178 Edge      bat-low\n428:          0          0          0          0          0          0          0          0  pmic_arb 19136714 Edge      bat-therm-or-id-missing\n429:          0          0          0          0          0          0          0          0  pmic_arb 19202250 Edge      bat-terminal-missing\n432:          0          0          0          0          0          0          0          0  pmic_arb 19923147 Edge      usbin-collapse\n433:          0          0          0          0          0          0          0          0  pmic_arb 19988683 Edge      usbin-vashdn\n434:          0          0          0          0          0          0          0          0  pmic_arb 20054219 Edge      usbin-uv\n435:          0          0          0          0          0          0          0          0  pmic_arb 20119755 Edge      usbin-ov\n436:          0          0          0          0          0          0          0          0  pmic_arb 20185291 Edge      usbin-plugin\n438:          0          0          0          0          0          0          0          0  pmic_arb 20316363 Edge      usbin-src-change\n439:          0          0          0          0          0          0          0          0  pmic_arb 20381899 Edge      usbin-icl-change\n441:          0          0          0          0          0          0          0          0  pmic_arb 21102796 Edge      dcin-uv\n442:          0          0          0          0          0          0          0          0  pmic_arb 21168332 Edge      dcin-ov\n443:          0          0          0          0          0          0          0          0  pmic_arb 21233868 Edge      dcin-plugin\n445:          0          0          0          0          0          0          0          0  pmic_arb 21364940 Edge      dcin-pon\n446:          0          0          0          0          0          0          0          0  pmic_arb 21430476 Edge      dcin-en\n447:          0          0          0          0          0          0          0          0  pmic_arb 22020301 Edge      typec-or-rid-detect-change\n449:          0          0          0          0          0          0          0          0  pmic_arb 22151373 Edge      typec-cc-state-change\n450:          0          0          0          0          0          0          0          0  pmic_arb 22216909 Edge      typec-vconn-oc\n452:          0          0          0          0          0          0          0          0  pmic_arb 22347981 Edge      typec-attach-detach\n453:          0          0          0          0          0          0          0          0  pmic_arb 22413517 Edge      typec-legacy-cable-detect\n455:          0          0          0          0          0          0          0          0  pmic_arb 23068878 Edge      wdog-snarl\n456:          0          0          0          0          0          0          0          0  pmic_arb 23134414 Edge      wdog-bark\n458:          0          0          0          0          0          0          0          0  pmic_arb 23265486 Edge      aicl-done\n459:          0          0          0          0          0          0          0          0  pmic_arb 23331022 Edge      smb-en\n461:          0          0          0          0          0          0          0          0  pmic_arb 23462094 Edge      temp-change\n463:          0          0          0          0          0          0          0          0  pmic_arb 185663708 Edge      sdam-sts\n464:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4097 Edge      switcher-off-window\n465:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4098 Edge      switcher-off-fault\n466:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4100 Edge      tsd-fault\n467:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4104 Edge      irev-fault\n468:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4112 Edge      vph-ov-hard\n469:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4128 Edge      vph-ov-soft\n470:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4160 Edge      ilim\n471:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4224 Edge      temp-alarm\n472:          0          0          0          0          0          0          0          0       sde  12 Edge      dp_display_isr\n473:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\nIPI0:        82         15         15         15         15         15         15         15       Rescheduling interrupts\nIPI1:         0       8173       8173       8173       8173       8173       8174       8173       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         0          1          1          1          1          1          2          1       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm7150/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    5 root      0:00 [kworker/0:0H]\n    6 root      0:00 [kworker/u16:0]\n    7 root      0:00 [mm_percpu_wq]\n    8 root      0:00 [ksoftirqd/0]\n    9 root      0:00 [rcu_preempt]\n   10 root      0:00 [rcu_sched]\n   11 root      0:00 [rcu_bh]\n   12 root      0:00 [rcuop/0]\n   13 root      0:00 [rcuos/0]\n   14 root      0:00 [rcuob/0]\n   15 root      0:00 [migration/0]\n   16 root      0:00 [cpuhp/0]\n   17 root      0:00 [cpuhp/1]\n   18 root      0:00 [migration/1]\n   19 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0]\n   21 root      0:00 [kworker/1:0H]\n   22 root      0:00 [rcuop/1]\n   23 root      0:00 [rcuos/1]\n   24 root      0:00 [rcuob/1]\n   25 root      0:00 [cpuhp/2]\n   26 root      0:00 [migration/2]\n   27 root      0:00 [ksoftirqd/2]\n   28 root      0:00 [kworker/2:0]\n   29 root      0:00 [kworker/2:0H]\n   30 root      0:00 [rcuop/2]\n   31 root      0:00 [rcuos/2]\n   32 root      0:00 [rcuob/2]\n   33 root      0:00 [cpuhp/3]\n   34 root      0:00 [migration/3]\n   35 root      0:00 [ksoftirqd/3]\n   36 root      0:00 [kworker/3:0]\n   37 root      0:00 [kworker/3:0H]\n   38 root      0:00 [rcuop/3]\n   39 root      0:00 [rcuos/3]\n   40 root      0:00 [rcuob/3]\n   41 root      0:00 [cpuhp/4]\n   42 root      0:00 [migration/4]\n   43 root      0:00 [ksoftirqd/4]\n   44 root      0:00 [kworker/4:0]\n   45 root      0:00 [kworker/4:0H]\n   46 root      0:00 [rcuop/4]\n   47 root      0:00 [rcuos/4]\n   48 root      0:00 [rcuob/4]\n   49 root      0:00 [cpuhp/5]\n   50 root      0:00 [migration/5]\n   51 root      0:00 [ksoftirqd/5]\n   52 root      0:00 [kworker/5:0]\n   53 root      0:00 [kworker/5:0H]\n   54 root      0:00 [rcuop/5]\n   55 root      0:00 [rcuos/5]\n   56 root      0:00 [rcuob/5]\n   57 root      0:00 [cpuhp/6]\n   58 root      0:00 [migration/6]\n   59 root      0:00 [ksoftirqd/6]\n   60 root      0:00 [kworker/6:0]\n   61 root      0:00 [kworker/6:0H]\n   62 root      0:00 [rcuop/6]\n   63 root      0:00 [rcuos/6]\n   64 root      0:00 [rcuob/6]\n   65 root      0:00 [cpuhp/7]\n   66 root      0:00 [migration/7]\n   67 root      0:00 [ksoftirqd/7]\n   68 root      0:00 [kworker/7:0]\n   69 root      0:00 [kworker/7:0H]\n   70 root      0:00 [rcuop/7]\n   71 root      0:00 [rcuos/7]\n   72 root      0:00 [rcuob/7]\n   73 root      0:00 [netns]\n   75 root      0:00 [kworker/u16:1]\n   76 root      0:00 [kworker/u17:0]\n   77 root      0:00 [ipa_usb_wq]\n   78 root      0:00 [msm_watchdog]\n   79 root      0:00 [spi_wdsp]\n   80 root      0:00 [qmp_npu_qmp_low]\n   81 root      0:00 [qmp_npu_qmp_hig]\n   82 root      0:00 [qmp_aop]\n   83 root      0:00 [oom_reaper]\n   84 root      0:00 [writeback]\n   85 root      0:00 [kcompactd0]\n   86 root      0:00 [crypto]\n   87 root      0:00 [kblockd]\n   88 root      0:00 [blk_crypto_wq]\n   89 root      0:00 [irq/97-arm-smmu]\n   90 root      0:00 [irq/98-arm-smmu]\n   91 root      0:00 [irq/106-arm-smm]\n   92 root      0:00 [irq/33-tsens-up]\n   93 root      0:00 [irq/34-tsens-cr]\n   94 root      0:00 [irq/35-tsens-up]\n   95 root      0:00 [irq/36-tsens-cr]\n   96 root      0:00 [system]\n   97 root      0:00 [ipa_power_mgmt]\n   98 root      0:00 [transport_power]\n   99 root      0:00 [ipa_pm_activate]\n  100 root      0:00 [devfreq_wq]\n  101 root      0:00 [cfg80211]\n  138 root      0:00 [kswapd0]\n  139 root      0:00 [ecryptfs-kthrea]\n  140 root      0:00 [xfsalloc]\n  141 root      0:00 [xfs_mru_cache]\n  180 root      0:00 [irq/111-arm-smm]\n  181 root      0:00 [irq/112-arm-smm]\n  182 root      0:00 [irq/42-smp2p]\n  183 root      0:00 [irq/43-smp2p]\n  184 root      0:00 [irq/44-smp2p]\n  185 root      0:00 [cdsprm-wq]\n  186 root      0:00 [mem_share_svc]\n  188 root      0:00 [irq/113-arm-smm]\n  189 root      0:00 [cdsprm-wq-delay]\n  190 root      0:00 [irq/114-arm-smm]\n  191 root      0:00 [hwrng]\n  193 root      0:00 [diag_real_time_]\n  194 root      0:00 [diag_wq]\n  196 root      0:00 [DIAG_USB_diag]\n  197 root      0:00 [diag_cntl_wq]\n  198 root      0:00 [diag_dci_wq]\n  199 root      0:00 [MODEM_CNTL]\n  200 root      0:00 [MODEM_DATA]\n  201 root      0:00 [MODEM_CMD]\n  202 root      0:00 [MODEM_DCI]\n  203 root      0:00 [MODEM_DCI_CMD]\n  204 root      0:00 [LPASS_CNTL]\n  205 root      0:00 [LPASS_DATA]\n  206 root      0:00 [LPASS_CMD]\n  207 root      0:00 [LPASS_DCI]\n  208 root      0:00 [LPASS_DCI_CMD]\n  209 root      0:00 [WCNSS_CNTL]\n  210 root      0:00 [WCNSS_DATA]\n  211 root      0:00 [WCNSS_CMD]\n  212 root      0:00 [WCNSS_DCI]\n  213 root      0:00 [WCNSS_DCI_CMD]\n  214 root      0:00 [SENSORS_CNTL]\n  215 root      0:00 [SENSORS_DATA]\n  216 root      0:00 [SENSORS_CMD]\n  217 root      0:00 [SENSORS_DCI]\n  218 root      0:00 [SENSORS_DCI_CMD]\n  219 root      0:00 [DIAG_CTRL]\n  220 root      0:00 [DIAG_DATA]\n  221 root      0:00 [DIAG_CMD]\n  222 root      0:00 [DIAG_DCI_DATA]\n  223 root      0:00 [DIAG_DCI_CMD]\n  224 root      0:00 [CDSP_CNTL]\n  225 root      0:00 [CDSP_DATA]\n  226 root      0:00 [CDSP_CMD]\n  227 root      0:00 [CDSP_DCI]\n  228 root      0:00 [CDSP_DCI_CMD]\n  229 root      0:00 [NPU_CNTL]\n  230 root      0:00 [NPU_DATA]\n  231 root      0:00 [NPU_CMD]\n  232 root      0:00 [NPU_DCI]\n  233 root      0:00 [NPU_DCI_CMD]\n  234 root      0:00 [DIAG_RPMSG_APPS]\n  235 root      0:00 [DIAG_RPMSG_APPS]\n  236 root      0:00 [DIAG_RPMSG_DIAG]\n  237 root      0:00 [DIAG_RPMSG_DIAG]\n  238 root      0:00 [DIAG_RPMSG_DIAG]\n  239 root      0:00 [DIAG_RPMSG_DIAG]\n  240 root      0:00 [DIAG_RPMSG_DIAG]\n  241 root      0:00 [DIAG_RPMSG_DIAG]\n  242 root      0:00 [DIAG_RPMSG_DIAG]\n  243 root      0:00 [DIAG_RPMSG_DIAG]\n  244 root      0:00 [kworker/u16:2]\n  245 root      0:00 [kgsl-workqueue]\n  246 root      0:00 [kworker/u16:3]\n  247 root      0:00 [kgsl-mementry]\n  248 root      0:00 [kworker/u16:4]\n  249 root      0:00 [kgsl_worker_thr]\n  250 root      0:00 [kworker/u16:5]\n  251 root      0:00 [kworker/u16:6]\n  252 root      0:00 [kworker/u16:7]\n  254 root      0:00 [irq/99-arm-smmu]\n  255 root      0:00 [irq/69-arm-smmu]\n  256 root      0:00 [irq/100-arm-smm]\n  257 root      0:00 [irq/101-arm-smm]\n  258 root      0:00 [kgsl-events]\n  259 root      0:00 [kgsl_devfreq_wq]\n  260 root      0:00 [qseecom-unreg-l]\n  261 root      0:00 [qseecom-unload-]\n  262 root      0:00 [irq/115-arm-smm]\n  263 root      0:00 [qcrypto_seq_res]\n  264 root      0:00 [irq/116-arm-smm]\n  285 root      0:00 [bond0]\n  286 root      0:00 [scsi_eh_0]\n  287 root      0:00 [scsi_tmf_0]\n  288 root      0:00 [ufs_clk_gating_]\n  295 root      0:00 [uether]\n  296 root      0:00 [k_ipa_usb]\n  299 root      0:00 [irq/108-arm-smm]\n  300 root      0:01 [kworker/0:3]\n  301 root      0:00 [msm_vidc_worker]\n  302 root      0:00 [pm_workerq_venu]\n  303 root      0:00 [irq/117-arm-smm]\n  304 root      0:00 [irq/118-arm-smm]\n  305 root      0:00 [irq/119-arm-smm]\n  306 root      0:00 [irq/120-arm-smm]\n  308 root      0:00 [kworker/u16:10]\n  309 root      0:00 [cam-cpas]\n  310 root      0:00 [irq/121-arm-smm]\n  313 root      0:00 [akm09970_poll_w]\n  314 root      0:00 [irq/160-i2c_pmi]\n  315 root      0:00 [qcom,cam_virtua]\n  316 root      0:00 [irq/122-arm-smm]\n  317 root      0:00 [qcom,cam170-cpa]\n  318 root      0:00 [irq/123-arm-smm]\n  319 root      0:00 [cam_cci_wq]\n  320 root      0:00 [cam_cci_wq]\n  321 root      0:00 [cam_cci_wq]\n  322 root      0:00 [cam_cci_wq]\n  323 root      0:00 [irq/124-arm-smm]\n  324 root      0:00 [irq/125-arm-smm]\n  325 root      0:00 [irq/126-arm-smm]\n  326 root      0:00 [irq/127-arm-smm]\n  327 root      0:00 [irq/157-qcom,te]\n  328 root      0:00 [irq/164-qcom,te]\n  329 root      0:00 [irq/384-limits_]\n  330 root      0:00 [kworker/0:1H]\n  331 root      0:00 [irq/385-limits_]\n  332 root      0:00 [kworker/6:1H]\n  333 root      0:00 [irq/154-bcl-lvl]\n  334 root      0:00 [irq/155-bcl-lvl]\n  335 root      0:00 [irq/156-bcl-lvl]\n  336 root      0:00 [irq/165-bcl-lvl]\n  337 root      0:00 [irq/166-bcl-lvl]\n  338 root      0:00 [irq/167-bcl-lvl]\n  339 root      0:00 [dm_bufio_cache]\n  340 root      0:00 [cds_recovery_wo]\n  341 root      0:00 [irq/128-arm-smm]\n  342 root      0:00 [uaudio_svc]\n  343 root      0:00 [apr_driver]\n  347 root      0:00 [kworker/u16:14]\n  348 root      0:00 [irq/296-tfa98xx]\n  349 root      0:00 [irq/244-goodix_]\n  350 root      0:00 [ipv6_addrconf]\n  361 root      0:00 [irq/405-qg-vbat]\n  362 root      0:00 [irq/406-qg-vbat]\n  363 root      0:00 [irq/407-qg-fifo]\n  364 root      0:00 [irq/408-qg-good]\n  365 root      0:00 [irq/409-chgr-er]\n  366 root      0:00 [kworker/u17:1]\n  368 root      0:00 [irq/410-chg-sta]\n  370 root      0:00 [irq/417-otg-fai]\n  372 root      0:00 [irq/421-high-du]\n  373 root      0:00 [irq/422-input-c]\n  374 root      0:00 [irq/424-switche]\n  375 root      0:00 [irq/425-bat-tem]\n  376 root      0:00 [irq/426-bat-ov]\n  377 root      0:00 [irq/427-bat-low]\n  378 root      0:00 [irq/428-bat-the]\n  379 root      0:00 [irq/429-bat-ter]\n  380 root      0:00 [irq/432-usbin-c]\n  381 root      0:00 [irq/433-usbin-v]\n  382 root      0:00 [irq/434-usbin-u]\n  383 root      0:00 [irq/435-usbin-o]\n  384 root      0:00 [irq/436-usbin-p]\n  385 root      0:00 [irq/438-usbin-s]\n  386 root      0:00 [irq/439-usbin-i]\n  387 root      0:00 [irq/441-dcin-uv]\n  388 root      0:00 [irq/442-dcin-ov]\n  389 root      0:00 [irq/443-dcin-pl]\n  390 root      0:00 [irq/445-dcin-po]\n  391 root      0:00 [irq/446-dcin-en]\n  392 root      0:00 [irq/447-typec-o]\n  393 root      0:00 [irq/449-typec-c]\n  394 root      0:00 [irq/450-typec-v]\n  395 root      0:00 [irq/452-typec-a]\n  396 root      0:00 [irq/453-typec-l]\n  397 root      0:00 [irq/455-wdog-sn]\n  398 root      0:00 [irq/456-wdog-ba]\n  399 root      0:00 [irq/458-aicl-do]\n  400 root      0:00 [irq/459-smb-en]\n  401 root      0:00 [irq/461-temp-ch]\n  402 root      0:00 [irq/463-sdam-st]\n  403 root      0:00 [irq/145-thr-int]\n  404 root      0:00 [irq/169-thr-int]\n  411 root      0:00 [irq/146-sig-tx]\n  412 root      0:00 [irq/147-sig-rx]\n  413 root      0:00 [irq/375-pwr_eve]\n  414 root      0:00 [irq/374-dp_hs_p]\n  415 root      0:00 [irq/377-dm_hs_p]\n  416 root      0:00 [irq/376-ss_phy_]\n  417 root      0:00 [irq/129-arm-smm]\n  418 root      0:00 [usb_bam_wq]\n  419 root      0:00 [compaction_wq]\n  420 root      0:00 [rq_stats]\n  421 root      0:00 [msm_perf:events]\n  422 root      0:00 [irq/130-arm-smm]\n  423 root      0:00 [irq/131-arm-smm]\n  424 root      0:00 [irq/132-arm-smm]\n  425 root      0:00 [irq/133-arm-smm]\n  426 root      0:00 [irq/134-arm-smm]\n  427 root      0:00 [irq/135-arm-smm]\n  428 root      0:00 [irq/136-arm-smm]\n  429 root      0:00 [irq/137-arm-smm]\n  430 root      0:00 [irq/138-arm-smm]\n  431 root      0:00 [irq/139-arm-smm]\n  432 root      0:00 [irq/185-arm-smm]\n  433 root      0:00 [irq/186-arm-smm]\n  434 root      0:00 [irq/187-arm-smm]\n  435 root      0:00 [drm_dp]\n  436 root      0:00 [irq/110-arm-smm]\n  437 root      0:00 [irq/188-arm-smm]\n  438 root      0:00 [crtc_commit:111]\n  439 root      0:00 [crtc_event:111]\n  440 root      0:00 [crtc_commit:162]\n  441 root      0:00 [crtc_event:162]\n  442 root      0:00 [crtc_commit:170]\n  443 root      0:00 [crtc_event:170]\n  444 root      0:00 [crtc_commit:178]\n  445 root      0:00 [crtc_event:178]\n  446 root      0:00 [pp_event]\n  447 root      0:00 [rot_commitq_0_0]\n  448 root      0:00 [rot_commitq_0_1]\n  449 root      0:00 [rot_doneq_0_0]\n  450 root      0:00 [rot_doneq_0_1]\n  451 root      0:00 [rot_fenceq_0_0]\n  452 root      0:00 [rot_fenceq_0_1]\n  453 root      0:00 [rot_fenceq_0_2]\n  454 root      0:00 [rot_fenceq_0_3]\n  455 root      0:00 [rot_fenceq_0_4]\n  456 root      0:00 [rot_fenceq_0_5]\n  457 root      0:00 [rot_fenceq_0_6]\n  458 root      0:00 [rot_fenceq_0_7]\n  459 root      0:00 [rot_fenceq_0_8]\n  460 root      0:00 [rot_fenceq_0_9]\n  461 root      0:00 [rot_fenceq_0_10]\n  462 root      0:00 [rot_fenceq_0_11]\n  463 root      0:00 [rot_fenceq_0_12]\n  464 root      0:00 [rot_fenceq_0_13]\n  465 root      0:00 [rot_fenceq_0_14]\n  466 root      0:00 [rot_fenceq_0_15]\n  467 root      0:00 [sb-3]\n  468 root      0:00 [ngd_rx_thread3]\n  469 root      0:00 [ngd_notify_sl3]\n  470 root      0:00 [irq/184-qpnp_fl]\n  471 root      0:00 [irq/183-qpnp_fl]\n  472 root      0:00 [irq/182-qpnp_fl]\n  483 root      0:00 [kworker/1:1]\n  484 root      0:00 [kworker/2:1]\n  485 root      0:00 [kworker/3:1]\n  486 root      0:00 [kworker/4:1]\n  487 root      0:00 [kworker/5:1]\n  488 root      0:00 [kworker/6:1]\n  489 root      0:00 [kworker/7:1]\n  536 root      0:00 [kworker/0:1]\n  561 root      0:00 [kworker/0:0]\n  611 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm7150/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1114.048899,3.71349633,62.82465579,16.91908509,17.73145524,269.3064511\r\n1,576000,2138.945927,3.71344779,78.81607036,11.05517686,27.13660794,140.265517\r\n1,768000,2851.846571,3.713341889,89.16226548,9.380135884,31.98247911,105.2029783\r\n1,1017600,3778.718259,3.713363069,105.59373,8.383900978,35.78286537,79.39771591\r\n1,1248000,4634.278211,3.713363951,119.9286784,7.764184144,38.63895992,64.74001253\r\n1,1324800,4919.323101,3.713257172,124.5972716,7.598998509,39.47888655,60.98848242\r\n1,1497600,5561.013587,3.713283645,135.0320612,7.285172232,41.17953433,53.95142581\r\n1,1612800,5989.099838,3.713479562,141.9594625,7.111547781,42.18490956,50.09562347\r\n1,1708800,6345.580303,3.713471619,153.8045508,7.272172301,41.25314797,47.28190592\r\n1,1804800,6702.412869,3.713659613,172.4615826,7.720214258,38.85902515,44.76483483\r\n6,300000,2337.595549,7.791985163,110.4618122,14.17828734,21.15911414,128.3546508\r\n6,652800,5088.367991,7.794681359,169.3057627,9.984478793,30.04663601,58.97305935\r\n6,806400,6285.881909,7.794992447,195.7311578,9.34451401,32.10439833,47.74157634\r\n6,979200,7632.422531,7.794549153,238.3952035,9.374285402,32.00243935,39.32245811\r\n6,1094400,8527.330093,7.791785538,272.2412312,9.582203642,31.30803844,35.19747395\r\n6,1209600,9423.886411,7.790911385,297.4996497,9.475540697,31.6604624,31.85059447\r\n6,1324800,10326.31144,7.794619144,335.0132346,9.738087227,30.80687131,29.06776874\r\n6,1555200,12120.23271,7.793359509,429.5327144,10.63863101,28.19911695,24.76791791\r\n6,1708800,13316.76136,7.793048551,501.5946966,11.30739916,26.53130006,22.54290015\r\n6,1843200,14362.31329,7.792053651,572.6666716,11.97087401,25.06082678,20.90373791\r\n6,1939200,15097.37809,7.785364114,632.7766664,12.58363618,23.84048582,19.88637833\r\n6,2169600,16909.98253,7.794055368,816.3339055,14.49519961,20.69650699,17.75645911\r\n6,2208000,17197.89039,7.788899634,830.1400293,14.49472907,20.69717886,17.46058322\r\n"
  },
  {
    "path": "results/sm7150/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1683.228484466672, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [662.4730357679999, 729.355928048, 678.903696772, 660.0629408760001, 711.934316874, 668.1799250749999, 661.419680856, 716.991432432, 654.664626576, 653.7282967039998, 715.859537613, 647.1534245280001, 653.7282967039998, 685.421851412, 653.6384728319999, 710.18272524, 700.6185267249999, 652.372092694, 689.8888758420002, 651.79161486, 660.0629408760001, 717.221286276, 640.58033472, 657.5312016959999, 726.066305328, 657.591389332, 655.174586493, 696.7241939449999, 661.692204745, 677.9717514989999, 703.0832291849999, 660.2443709879999, 684.8574060159999, 669.59928798, 660.3955109699999, 712.1300047619999, 652.282446942, 652.5513841979999, 700.4262109599998, 670.650563675, 653.668311584, 709.3422353340001, 673.062732474, 667.5682388949999, 712.2278487059999, 656.5656530550001, 660.3955109699999, 668.85306277, 657.6817481479999, 712.097501808, 674.4205635180001, 640.9617474, 704.5409215, 651.79161486, 655.2645884850001, 713.524423836, 659.038510914, 667.782297625, 703.308510795, 648.661658808, 650.04752345, 688.335831334, 651.3442766999999, 701.9474149999999, 644.236375336, 664.0465625, 683.7801145499999, 655.9245003510001, 660.335086044, 708.5652345540001, 643.647903878, 654.634574541, 723.7730429439999, 646.123376535, 705.4176567999999, 699.5738553570001, 647.509002998, 678.6863120380001, 654.754628568, 652.790388369, 682.4209182420001, 667.4328687400001, 670.5891891999999, 725.202102138, 652.730675702, 645.76851024, 704.6700095900001, 648.958747644, 646.1826475650001, 717.3856604640001, 659.008435288, 682.295871604, 669.0476705699999, 644.8562588, 670.834844875, 663.7477220239999, 651.493338354, 722.675075265, 664.5028125, 662.8069118719999, 698.1167711759999, 651.79161486, 656.6257220460001, 711.0289393999999, 654.057599632, 651.403870722, 678.158172475, 648.7210155399999, 656.595610341, 675.439835811, 642.4097356259999, 698.1487870560001, 657.1967635080001, 648.3053658279999, 692.829861165, 672.3820415619999, 659.12904785, 718.879477613, 645.1219881439999], \"power_mean\": 673.5326869191681, \"energy_millijoules\": 3367.6634345958405, \"energy_joules\": 3.3676634345958405}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 269.306451148, \"elapsed_ns\": 269306451148, \"power_samples\": [36.68069823499991, 87.71483043799992, 53.48696003400005, 52.535037621000015, 80.02469531999998, 44.46511234000002, 46.999833318000015, 87.51486533399998, 82.12788722999994, 49.68779773000006, 90.0465014859999, 78.06887363899989, 32.729004755999995, 51.52278630199987, 70.31849507200002, 40.325573146000124, 59.37760245200002, 66.48939480000001, 38.04389019500002, 82.78963104900004, 109.26944808600001, 44.52795382000011, 54.496953516000076, 100.22315083500007, 49.59298357800003, 49.877426033999996, 107.904375502, 41.87172478999992, 45.95461715399995, 100.18917110999996, 39.216131471999915, 43.32506406300001, 105.34568035200004, 41.84058352200009, 45.45189922199995, 104.04916439199997, 53.35993675199995, 46.96845517600002, 111.72914185599996, 52.154519015999995, 43.07465642400007, 75.47596066899996, 54.656274592000045, 50.92127701800007, 77.36359044000005, 43.1372181270001, 40.575031015000036, 82.45867414799989, 79.03573221199997, 45.640458805999856, 90.14684086199998, 83.29215641600013, 43.07465642400007, 48.958860672000014, 66.35983151999994, 43.043295158999854, 58.01585373599994, 69.18440297500013, 36.5567620569999, 58.111737191999964, 102.54415524000001, 45.640458805999856, 65.83905658999993, 107.80154127800006, 37.919556341999964, 47.062751344999924, 110.49728847199992, 46.87399726399997, 38.199187806000054, 100.2569563049999, 43.07465642400007, 43.45018746900007, 111.79799563400002, 41.809281732000045, 54.059054609999976, 101.51978544000008, 37.88859258399998, 46.999833318000015, 98.79100917999995, 51.45951233999995, 52.313082014999964, 115.51425184799996, 43.105856861999996, 45.640458805999856, 72.16923666000002, 49.59298357800003, 40.51270660199998, 83.9881234720001, 44.30833090400006, 40.54394891700008, 92.74117879200003, 80.72779096199997, 36.68069823499991, 92.6739334319999, 84.62176741799999, 84.52214110599994, 43.606672140000114, 74.14246406200004, 48.328007808000166, 55.48395903200014, 74.20804295200014, 52.21791162300008, 64.47660772000006, 94.93130929799986, 41.77814046399999, 51.86900783999988, 101.48574623999991, 39.18510854400017, 41.84058352200009, 107.83587804799993, 57.3766854239999, 47.062751344999924, 102.71429888499995, 49.529828261000034, 49.498169426000004, 105.20898454799999, 48.2649711360001, 45.483379631999924, 109.23522823200005, 49.529828261000034, 48.2649711360001, 92.40546926399998, 66.39226391999989, 41.903026579999846, 64.96648174999996, 67.79028066600017, 45.640458805999856, 69.37937838300013, 62.69608750500015, 47.09429122999995, 64.54123462000018, 62.53514844000006, 43.1372181270001, 72.36492454799998, 100.1213859149999, 44.49653308000006, 44.27707129599992, 102.88444252999989, 40.38805777599998, 42.309147240000016, 88.4782202560001, 39.216131471999915, 47.59795893199998, 102.4420340800001, 52.18613383799993, 52.693600619999984, 109.26944808600001, 39.216131471999915, 53.51879748900012, 100.1213859149999, 45.51469860399993, 43.105856861999996, 110.32536326399998, 50.85800305600003, 41.809281732000045, 86.317560276, 49.624642413000174, 35.44601290000014, 100.49446587, 50.82628474599994, 35.32215501600001, 92.60686049600008, 86.98173919199996, 43.07465642400007, 86.21775584400007, 69.08691527100018, 41.55934897799989, 45.061139608000076, 80.82688232999988, 36.494793967999954, 55.22927431400012, 80.66178660899982, 49.59298357800003, 39.99426326399998, 100.2569563049999, 37.85746921899988, 45.02971886800003, 98.92651622999995, 41.87172478999992, 56.04831776799995, 107.93871227200009, 46.30025591200001, 47.15720925699998, 100.22315083500007, 46.90537540599996, 36.71176192999985, 97.83269898500009, 46.96845517600002, 42.05921448599997, 97.90024689000006, 43.168418565000025, 41.746838673999946, 88.57820942000001, 70.35093885599986, 39.18510854400017, 101.79157536000002, 67.72546315199997, 41.809281732000045, 55.452225676000126, 70.31849507200002, 41.52804718799996, 55.54775289200006, 75.47596066899996, 35.353159236000124, 55.452225676000126, 104.08314756599998, 41.93432837, 46.779539351999915, 105.31146253199995, 49.529828261000034, 47.062751344999924, 98.8925959799999, 49.529828261000034, 28.896284130000026, 102.74839756000017, 37.88859258399998, 48.296408447999966, 103.980847702, 53.48696003400005, 49.30854112200018, 96.4638535009999, 45.608978395999884, 50.82628474599994, 106.74467663500002, 67.66047901200011, 54.68800794800006, 57.344833728000026, 70.38354987600007, 40.60627333000002, 58.143753072000095, 76.90371399000003, 46.999833318000015, 55.57948624799997, 79.46424337200006, 44.30833090400006, 57.95198615999993, 97.59602085000006, 42.94937219099995, 45.640458805999856, 106.57364172200005, 47.09429122999995, 44.433852732000105, 104.01500604699993, 44.24565055599999, 53.58230913, 101.17991712000003, 43.07465642400007, 45.7975379799999, 114.42554294400009, 45.640458805999856, 41.77814046399999, 101.55365008000001, 71.38665264899998, 40.41913987400005, 100.22315083500007, 67.66047901200011, 53.328099296999994, 57.18491851200008, 66.42469632000007, 49.59298357800003, 56.71809124099991, 54.81543209400013, 47.062751344999924, 73.69553565799993, 105.14072438400001, 40.38805777599998, 59.31361623099997, 100.1213859149999, 46.96845517600002, 44.46511234000002, 98.8925959799999, 49.59298357800003, 43.32506406300001, 102.68020021000007, 45.546179013999904, 46.080377355999985, 105.34568035200004, 45.640458805999856, 47.220289027000035, 111.83251102400004, 44.37117238400003, 33.96384908699997, 93.66853496800002, 61.045795679999856, 40.66859774300008, 105.41394051600003, 62.63157955500003, 41.71553688400002, 60.64776871000004, 62.40629794499989, 40.23200641800008, 72.13673370599997, 65.192760195, 40.41913987400005, 77.52796462800006, 96.19396467800004, 49.561487096000064, 80.12360856800024, 94.79651581199994, 45.7975379799999, 47.40904310799988, 94.99861952399988, 46.90537540599996, 40.980540242000075, 87.148319711, 44.18297020800003, 48.67495257600001, 107.87003873200013, 40.450382188999924, 40.450382188999924, 97.46092503999989, 53.423448392999944, 41.87172478999992, 94.93130929799986, 45.734738598000035, 35.291309792000106, 103.980847702, 49.529828261000034, 36.58782575200007, 70.83926797599986, 46.84245737899994, 48.201772415999926, 78.72705146999999, 48.201772415999926, 44.40243199200006, 64.50892117000001, 88.57820942000001, 36.5567620569999, 52.05934862399988, 94.99861952399988, 50.699574163999955, 107.25795715499999, 91.04193984299991, 45.640458805999856, 44.87293743199996, 93.63485281300007, 40.450382188999924, 53.83651896300012, 106.53954020799995, 44.37117238400003, 45.640458805999856, 102.74839756000017, 40.38805777599998, 52.122741230999964, 101.41784240000004, 61.14221407999992, 48.201772415999926, 76.41109771200001, 43.043295158999854, 49.59298357800003, 77.33085061200006, 41.62179203599999, 36.58782575200007, 72.20190715499996, 45.32630045799999, 41.65309382599992, 76.06606554000007, 92.271323392, 40.450382188999924, 41.52804718799996, 91.04193984299991, 48.201772415999926, 40.82464910100009, 85.75205879400005, 41.71553688400002, 48.864224639999975, 105.17476672800001, 49.529828261000034, 40.94929792700009, 94.93130929799986, 32.759890025999994, 46.84245737899994, 105.27724471199997, 50.5413079299999, 39.15392570400002, 98.75726287999987, 53.3916109380001, 39.02935425600003, 74.73166516600008, 48.296408447999966, 48.2649711360001, 68.37397154400003, 61.17424347999997, 44.214229816000056, 74.82986534999998, 93.53397907700003, 41.77814046399999, 83.92188143999999, 92.37201900800005, 39.18510854400017, 43.731956373, 84.58867237599998, 44.120128728000054, 46.30025591200001, 93.53397907700003, 44.33975164399999, 37.238888938999935, 101.38380319999999, 33.932904341999915, 47.56658078999999, 102.68020021000007, 53.232750201000044, 54.751801808000096, 110.35964228800003, 34.24187571900006, 37.88859258399998, 111.79799563400002, 61.23863248000009, 40.48162450400014, 84.68812809500002, 49.37185879200001, 53.90003060399988, 86.01814697999987, 41.62179203599999, 54.783535164, 88.64509754000005, 80.52960822600005, 44.30833090400006, 100.35872122499995, 81.92934708600012, 28.681809990000033, 41.04286465500013, 74.20804295200014, 49.24538580500007, 58.01585373599994, 79.266416876, 45.608978395999884, 47.53504090499996, 114.32181753599991, 48.2333717759999, 44.214229816000056, 105.27724471199997, 40.450382188999924, 50.79456643599997, 105.14072438400001, 42.94937219099995, 52.122741230999964, 105.27724471199997, 48.2333717759999, 44.40243199200006, 102.64627640000003, 42.94937219099995, 86.68179153599999, 97.59602085000006, 50.7630107839999, 44.27707129599992, 101.38380319999999, 71.45182609799997, 40.38805777599998, 67.30373274600015, 63.67026286000009, 42.94937219099995, 67.03974768, 61.14221407999992, 41.68439561599985, 59.28154087600001, 63.638115120000066, 42.98073345599994, 73.40146946599998, 101.45188159999998, 36.40176218399995, 49.30854112200018, 87.08172174399988, 37.85746921899988, 44.778836343999956, 106.29995070500001, 45.546179013999904, 53.86835641799996, 106.36832951400004, 35.198456127999975, 44.778836343999956, 106.50526291300002, 48.13873574399997, 41.746838673999946, 103.81040631899998, 48.13873574399997, 51.995793054000046, 101.31589936, 39.02935425600003, 54.81543209400013, 91.44400982700006, 43.043295158999854, 37.919556341999964, 100.42668067499994, 36.5567620569999, 42.94937219099995, 88.61165347999997, 67.3687168859999, 53.3916109380001, 87.31490022999992, 62.40629794499989, 48.201772415999926, 53.86835641799996, 66.26270063999993, 37.57783775500002, 56.62238590499999, 67.66047901200011, 53.296261842000035, 52.8205487969999, 106.436884104, 53.423448392999944, 57.98383785600004, 98.75726287999987, 45.546179013999904, 49.498169426000004, 97.49461216999998, 44.49653308000006, 44.46511234000002, 101.28186016000006, 39.18510854400017, 43.231141095, 93.50029692200008, 42.918010925999965, 41.903026579999846, 103.91270618299995, 50.79456643599997, 50.66801851199989, 102.64627640000003, 58.60927433300003, 42.85544922300005, 101.17991712000003, 54.656274592000045, 41.59065076799993, 57.95198615999993, 64.96648174999996, 46.747999467, 64.54123462000018, 55.98440495800003, 41.77814046399999, 66.91018439999993, 81.89637038399997, 44.18297020800003, 45.29482004800002, 85.71873368399997, 48.107136384, 42.27800597199996, 85.75205879400005, 48.04409971200005, 47.377664966, 79.266416876, 54.560747375999995, 41.01162234000003, 103.94686452799999, 48.2333717759999, 39.12274286400009, 107.73304382399999, 46.84245737899994, 46.96845517600002, 102.68020021000007, 49.40335527399998, 50.57302623999999, 100.01962099499997, 35.198456127999975, 46.87399726399997, 100.08740618999991, 37.67104824299997, 51.96417823199988, 101.21395632000008, 51.995793054000046, 38.99833132799995, 103.87854783800003, 61.077825080000025, 40.41913987400005, 77.904371448, 62.34195539999996, 38.967148488000134, 65.7421038299999, 44.27707129599992, 49.43501410900001, 82.55794422000008, 96.12653580699998, 45.67193921599994, 81.12415643399993, 91.04193984299991, 44.120128728000054, 51.42779402999997, 80.66178660899982, 37.515750631999936, 46.23745652999992, 84.45578042900001, 33.74755325400008, 43.63803340499999, 105.20898454799999, 40.29449104799994, 45.02971886800003, 105.14072438400001, 48.04409971200005, 37.85746921899988, 98.58783558000005, 40.48162450400014, 39.091719936000004, 107.69870705400001, 41.65309382599992, 42.886810487999924, 83.65674302399998, 48.107136384, 46.96845517600002, 83.52408867200018, 33.778497999000024, 42.918010925999965, 92.40546926399998, 71.45182609799997, 44.27707129599992, 95.0659297499999, 84.35615411699996, 37.79538209599991, 55.22927431400012, 77.97013851099996, 42.44855691299995, 57.79207094399999, 62.438551919999895, 46.779539351999915, 56.52668056899995, 105.20898454799999, 44.27707129599992, 46.65354155500006, 102.57807905000016, 45.577659423999876, 52.313082014999964, 96.12653580699998, 46.779539351999915, 52.154519015999995, 106.36832951400004, 44.214229816000056, 34.27266177299998, 101.28186016000006, 41.55934897799989, 47.94946368000012, 105.17476672800001, 41.52804718799996, 45.577659423999876, 105.17476672800001, 45.483379631999924, 40.325573146000124, 82.79491545600001, 49.24538580500007, 46.84245737899994, 66.65122416000008, 40.23200641800008, 38.99833132799995, 77.00227099799997, 46.716459582000084, 46.716459582000084, 89.91265837999993, 68.89193986299995, 44.27707129599992, 42.73032581699988, 66.26270063999993, 40.26324873300007, 53.93186805900007, 84.32288848200005, 49.466672943999924, 40.85573119900005, 96.02530583099997, 44.08886912000003, 50.06705433800005, 97.35951636000004, 50.7630107839999, 50.73129247399993, 103.77624797399994, 41.49690592000002, 45.608978395999884, 95.99150472600002, 48.2333717759999, 44.52795382000011, 105.17476672800001, 49.43501410900001, 44.68473525599995, 104.96998623600007, 40.38805777599998, 42.886810487999924, 101.2479955199999, 41.93432837, 46.747999467, 92.06993216000001, 41.62179203599999, 40.450382188999924, 100.2569563049999, 45.546179013999904, 45.232020665999926, 97.42706426500001, 37.79538209599991, 44.18297020800003, 99.95183579999991, 62.37404397, 41.62179203599999, 98.62175582999998, 51.995793054000046, 41.59065076799993, 79.62904232800008, 42.98073345599994, 48.92944686700014, 65.54819830999998, 58.54528811199987, 37.70217160799996, 75.90215687900002, 82.96060568000007, 45.32630045799999, 45.26333963800005, 92.20407803199998, 51.995793054000046, 33.28398929999992, 76.67386014599992, 44.120128728000054, 46.20597612000006, 68.76190061400007, 46.87399726399997, 56.36722630200006, 103.81040631899998, 36.40176218399995, 41.46560413000009, 105.14072438400001, 36.37069848899989, 39.15392570400002, 95.82284587900006, 49.277044639999986, 43.1372181270001, 109.98133615199993, 53.3916109380001, 41.903026579999846, 93.33223160500017, 40.356815461, 39.12274286400009, 110.32536326399998, 37.67104824299997, 40.29449104799994, 105.17476672800001, 50.63630020200003, 46.747999467, 80.49669088799988, 44.120128728000054, 44.214229816000056, 101.34993855999994, 99.85007087999998, 28.589847510000027, 94.86399907199984, 72.51943873599998, 38.967148488000134, 100.1213859149999, 80.49669088799988, 44.120128728000054, 57.72820336799998, 72.65002292400004, 42.824087958000064, 53.804844777000085, 77.904371448, 49.277044639999986, 65.67735798000001, 102.51005656500001, 42.918010925999965, 72.03888976199994, 103.77624797399994, 36.37069848899989, 47.062751344999924, 95.92407585499996, 40.575031015000036, 47.220289027000035, 93.56766123199998, 44.18297020800003, 42.121818065999946, 107.76720450800008, 38.99833132799995, 47.28320705400006, 98.58783558000005, 45.42041881199998, 41.62179203599999, 105.27724471199997, 38.90494272000001, 35.198456127999975, 106.40260680900008, 41.68439561599985, 44.27707129599992, 103.87854783800003, 49.24538580500007, 50.383041695999964, 96.09273470200003, 42.824087958000064, 45.483379631999924, 99.85007087999998, 41.55934897799989, 47.98106303999998, 75.08244511700002, 51.86900783999988, 44.24565055599999, 77.29794202200003, 58.41715118100001, 41.62179203599999, 81.058152081, 57.12105093599996, 41.46560413000009, 79.69492803600008, 96.02530583099997, 42.761526255000035, 43.994768032000025, 83.02684771200006, 45.51469860399993, 49.909084869000026, 74.0116425839999, 42.73032581699988, 51.33280175799996, 99.95183579999991, 37.608961120000004, 53.86835641799996, 102.54415524000001, 45.42041881199998, 46.716459582000084, 105.00402858000007, 39.02935425600003, 58.38507582600016, 102.47595789000013, 42.918010925999965, 43.07465642400007, 103.74226479999993, 40.13859990699996, 39.27833724000004, 102.40793540499999, 47.98106303999998, 47.98106303999998, 102.47595789000013, 39.982548548999944, 51.96417823199988, 112.74941269699991, 45.51469860399993, 50.57302623999999, 88.61165347999997, 37.70217160799996, 47.94946368000012, 93.73572654900022, 45.42041881199998, 33.809442743999966, 135.98093687999994, 67.69297108199999, 48.012500352000075, 93.33223160500017, 67.56316942800004, 47.94946368000012, 66.87775199999987, 62.30970142500007, 40.69984005800006, 69.37937838300013, 64.83732207999992, 41.62179203599999, 69.37937838300013, 90.80734164600005, 129.56878014400002, 75.93500599399988, 94.79651581199994, 40.26324873300007, 44.84151669200003, 85.65225436200001, 43.963347292000094, 47.220289027000035, 77.73986925700001, 45.42041881199998, 52.56681540599993, 101.28186016000006, 47.91802636800003, 34.85804569200002, 88.111021628, 36.33963479399995, 57.12105093599996, 105.03824640000005, 50.47803396799986, 50.95283266999991, 101.2479955199999, 42.79288752000002, 39.40290868800014, 101.04410944000006, 35.10560246400007, 41.37185928200006, 98.58783558000005, 35.01274879999994, 49.24538580500007, 92.03630948000011, 50.50975227799995, 38.842736951999996, 81.46614341099996, 48.012500352000075, 45.35761943, 78.29914289299995, 44.151549467999985, 51.86900783999988, 83.49088251199998, 80.19941678400005, 41.52804718799996, 83.39143432000003, 75.21367311999995, 38.842736951999996, 49.08741633600016, 72.65002292400004, 45.35761943, 59.12149307900006, 70.05794138400006, 40.13859990699996, 60.29494261499997, 101.11201328000004, 45.32630045799999, 76.00053576699997, 97.29179481000017, 49.18223048800007, 35.41500868000003, 98.55408927999986, 40.20092432000001, 53.74116986700005, 101.04410944000006, 54.46522016000006, 43.231141095, 94.6618953599999, 51.80561523299991, 39.52748013600001, 98.52016903000003, 41.55934897799989, 41.65309382599992, 98.48642272999996, 45.95461715399995, 45.483379631999924, 106.33422800000005, 54.30606265800009, 44.24565055599999, 83.19270822399994, 46.68508143999986, 36.71176192999985, 96.02530583099997, 37.57783775500002, 42.69896455200001, 97.22424690500009, 80.39759951999997, 37.6399248780001, 102.37401159499996, 60.91718277999996, 45.42041881199998, 70.77404593599988, 57.025167479999936, 30.78635257899998, 71.97371631299995, 61.01360117999991, 32.328288176, 62.953623090000065, 103.708106455, 46.68508143999986, 30.847846087999983, 102.4420340800001, 36.33963479399995, 37.88859258399998, 95.89044808899996, 58.2250280290001, 36.64979384100002, 110.11898233600004, 40.29449104799994, 40.82464910100009, 101.2479955199999, 41.43446286199992, 46.65354155500006, 92.03630948000011, 53.0738894640001, 46.779539351999915, 110.11898233600004, 41.43446286199992, 31.186297508999928, 93.09697470700007, 42.824087958000064, 31.032484695999983, 87.18170429600013, 41.40316107199999, 40.13859990699996, 93.56766123199998, 76.24689228600005, 33.68582245500011, 88.27789891200007, 72.55216870599997, 42.94937219099995, 59.089417723999986, 77.73986925700001, 44.08886912000003, 55.03821988199991, 63.54134048000003, 35.04359402400007, 64.12182260999998, 111.24681140600012, 44.120128728000054, 72.07139271599988, 108.7887826110001, 25.967059320000203, 39.24731431200007, 93.29872217899992, 51.71044484099991, 49.78261188200008, 94.56084350399999, 36.246762311, 46.01757797399989, 106.33422800000005, 42.73032581699988, 40.85573119900005, 105.10650656399991, 42.761526255000035, 45.35761943, 104.93576841599997, 35.56971178799995, 36.246762311, 94.32499816199993, 36.15373052699999, 41.52804718799996, 94.69546395600003, 37.515750631999936, 40.762164471000006, 102.30581424500008, 44.05744837999998, 44.08886912000003, 114.11436672000002, 51.678667055999995, 44.151549467999985, 99.74830595999993, 51.80561523299991, 40.13859990699996, 74.46985405900011, 45.29482004800002, 43.86924620399998, 83.55729483200014, 42.73032581699988, 40.16968200500014, 73.0093812099999, 85.55244993000008, 38.87375988000008, 43.5871040720001, 97.15669900000012, 49.18223048800007, 40.762164471000006, 82.92756980800004, 40.23200641800008, 41.99677142799999, 84.15690149300008, 40.107357592000085, 47.220289027000035, 103.74226479999993, 37.57783775500002, 38.718165504000126, 107.39020438199998, 46.59062352800004, 40.07611527700021, 93.36591376000013, 41.34071801399989, 31.032484695999983, 85.38616617600007, 36.21569861599994, 35.04359402400007, 99.85007087999998, 42.63640284899998, 44.026188771999955, 92.13700509600005, 45.16905984599987, 46.59062352800004, 110.15343805600003, 66.00374040000008, 46.496165615999985, 58.032904876999964, 69.862776972, 40.26324873300007, 53.77300732200001, 68.59947675100011, 51.71044484099991, 64.12182260999998, 102.16976927500002, 42.66760328700002, 65.28971295500003, 98.38483593000001, 40.20092432000001, 46.43324758899996], \"power_mean\": 62.824655785825676, \"energy_millijoules\": 16919.08509427538, \"energy_joules\": 16.919085094275378, \"coremark_score\": 1114.048899, \"coremarks_per_mhz\": 3.7134963299999995, \"ulpmark_cm_score\": 17.731455236991856}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [715.082810073, 653.96777576, 637.217282943, 721.3412126970001, 655.3844883989999, 666.73060652, 708.3706153860002, 654.057599632, 663.0193075999999, 704.6376961400001, 657.86246578, 665.1904533750001, 719.846751596, 652.730675702, 657.6817481479999, 704.57323495, 661.8437971310001, 666.913819, 721.539395433], \"power_mean\": 678.3153545402631, \"energy_millijoules\": 3391.5767727013153, \"energy_joules\": 3.3915767727013155}}, \"576000\": {\"active\": {\"elapsed_sec\": 140.265516978, \"elapsed_ns\": 140265516978, \"power_samples\": [128.23768770900006, 68.43705288800004, 54.24226879799994, 113.90691590400002, 59.39680986500002, 52.85135381700002, 117.72434498099994, 51.61527444899991, 60.72434597999995, 115.16784744899996, 77.57519799900001, 49.11907517100008, 86.64840695099986, 73.68425258699995, 47.69715494400009, 73.0093812099999, 73.58605240300005, 55.41033682099999, 92.47254220000002, 115.86047832999998, 55.63354001899995, 82.22715730200014, 100.8402233600001, 68.69696445500006, 62.69608750500015, 106.12891579200004, 64.54646379999997, 62.5994909850001, 98.21540862999984, 54.337796014000105, 57.44055300000002, 112.68026296700009, 56.833400568, 58.19311716300001, 104.76503026800003, 60.660122080000065, 63.38010465000002, 121.58012130400004, 58.19311716300001, 54.433323230000155, 115.16784744899996, 61.95556932000011, 58.35316495999996, 120.31960597399996, 61.98782329500011, 52.91502872700005, 119.09366529600004, 63.315477750000014, 56.897432328000036, 100.90812719999997, 58.12896645299986, 64.61104363499987, 89.87915464999992, 63.21870311000009, 63.347791200000074, 100.15536564000001, 99.476990925, 59.46091511999998, 109.1322158879999, 98.38483593000001, 59.36467484000002, 65.32191986499993, 91.70077237600015, 65.192760195, 69.11929988500003, 81.33389663700007, 59.39680986500002, 88.67837009200002, 120.38929065600007, 60.72434597999995, 59.268434559999946, 124.17101578400013, 64.67578948499988, 57.15306681599998, 116.39408497600004, 59.49305014499987, 53.16923856000005, 121.37053188000004, 64.51409087499997, 58.41715118100001, 121.51031797700011, 60.69231658000001, 56.769532991999995, 125.50588039700006, 79.3323025840001, 63.21870311000009, 115.23723507900002, 78.87076388399998, 56.96129990400004, 93.87010971100005, 73.55343110900003, 60.53167427999995, 87.31490022999992, 59.39680986500002, 60.660122080000065, 93.70204439400004, 96.92002086499997, 51.678667055999995, 56.67364953599986, 87.97741689600014, 58.097055587, 63.96058677999997, 107.25320947400007, 46.464625730999956, 69.15185142999997, 121.58012130400004, 58.097055587, 69.15185142999997, 117.68953221600009, 68.50198904700005, 63.38010465000002, 113.83782483599998, 64.54646379999997, 62.019911864999926, 124.38131768799997, 50.35132338599999, 59.525020375000054, 102.51005656500001, 61.92331534499999, 68.46960443299997, 111.66011107600002, 94.39248142200006, 67.3687168859999, 109.98133615199993, 82.72867342400014, 59.46091511999998, 67.75778859599995, 73.71704203200011, 66.26270063999993, 80.82688232999988, 86.58180898400008, 59.39680986500002, 101.31589936, 122.805646572, 64.64341655999999, 61.98782329500011, 116.46341333399994, 59.428780094999865, 63.44456584000011, 121.54512991900003, 58.12896645299986, 55.824950691000026, 113.90691590400002, 56.73751711199998, 56.04831776799995, 117.82860474899996, 54.178638512000134, 62.019911864999926, 125.54087004300004, 61.36708027999987, 56.833400568, 130.5818651210002, 65.84191104000013, 48.96094334899999, 93.39942318600015, 63.2833300100001, 54.27416572800007, 111.41903435200004, 64.74036932000001, 65.87434343999996, 113.83782483599998, 83.89128819199993, 49.02426101900005, 73.71704203200011, 80.19941678400005, 64.44951103999995, 72.97681908600009, 80.0343210630001, 64.70799639500001, 84.55540674099996, 111.17778062599996, 60.78873497999996, 94.79651581199994, 107.21887270399998, 63.186555370000065, 52.05934862399988, 113.80319049600007, 59.30056958499995, 58.51321275700002, 109.94705712799998, 56.73751711199998, 62.47064048999994, 117.68953221600009, 59.30056958499995, 62.019911864999926, 128.02631591700003, 63.025319540000055, 56.60978196000008, 129.35705211200013, 59.30056958499995, 50.288049424000064, 120.31960597399996, 48.83463271500011, 48.2333717759999, 130.54645721600002, 67.07678813400003, 60.62792757999989, 109.74067620000005, 68.50198904700005, 61.85897279999995, 87.54350165599999, 55.378380415999914, 61.92331534499999, 93.56766123199998, 69.60239051999997, 55.44212934699999, 101.41784240000004, 103.1626239609999, 67.01197062000006, 92.20407803199998, 102.13567060000014, 56.73751711199998, 65.06343450999998, 97.05529032000004, 77.87140338300003, 61.36708027999987, 95.55295705599997, 52.85135381700002, 73.0093812099999, 114.96021831000007, 61.891226775000064, 57.93700778999994, 127.99120793099996, 60.59589818000006, 54.27416572800007, 130.5818651210002, 68.33956518399998, 54.337796014000105, 124.06586483199987, 64.48188396499995, 54.27416572800007, 126.62560103999999, 56.70566541599999, 61.85897279999995, 117.75897921899991, 81.46614341099996, 54.178638512000134, 113.76855615599993, 87.91070028400009, 56.897432328000036, 82.194010617, 77.47646287099997, 51.48832627199988, 83.32519228800004, 73.55343110900003, 46.30724979199999, 95.13341301000003, 114.99473420799995, 58.0009940110001, 53.423448392999944, 109.74067620000005, 55.474085752000065, 57.28080196799999, 107.35604369800012, 65.87434343999996, 57.53643645599993, 112.43877083300004, 65.87434343999996, 59.97408674999997, 130.617091447, 63.21870311000009, 52.88319127200009, 120.35435874599989, 56.80154887200001, 59.46091511999998, 122.94549051599984, 55.44212934699999, 65.77721256000007, 122.91061940399993, 60.59589818000006, 48.897788031999994, 118.85009474999993, 83.99091450399999, 64.51409087499997, 109.912601408, 69.66744532400003, 65.77721256000007, 92.47254220000002, 67.17409771799998, 59.332539814999905, 91.10889413400002, 69.53716847999988, 51.48832627199988, 97.42706426500001, 103.43536520800001, 121.12613051400001, 60.69231658000001, 99.37522600500006, 55.34658789000002, 58.73724677500002, 98.08007553000004, 63.2833300100001, 70.31849507200002, 112.542318121, 63.21870311000009, 66.45696239999984, 113.76855615599993, 59.30056958499995, 67.23891523200007, 161.68673931700005, 65.68008167999994, 52.88319127200009, 129.39240054200002, 68.30718057000013, 57.025167479999936, 112.36979840999993, 55.378380415999914, 63.154241920000004, 125.40055074100019, 51.45671144999994, 59.30056958499995, 127.92081098999995, 77.41069580800001, 61.85897279999995, 91.24297483500004, 64.35255827999993, 64.22339860999989, 94.99861952399988, 67.07678813400003, 64.41730413000005, 88.61165347999997, 103.23076547999995, 55.378380415999914, 57.15306681599998, 98.21540862999984, 59.30056958499995, 70.15560720799999, 105.85522477500001, 65.6153832, 58.60927433300003, 121.44051465000007, 64.38493120500004, 58.73724677500002, 121.33571993800012, 59.30056958499995, 58.06498023200004, 121.37053188000004, 69.37444785199989, 45.137740873999974, 116.22067497000012, 59.36467484000002, 54.01948101000016, 116.32475661800004, 54.08311129599997, 59.2043293050001, 122.77059571199982, 56.73751711199998, 60.62792757999989, 120.00575619799997, 81.2346265650001, 61.92331534499999, 87.71037894000017, 76.04977827000005, 59.39680986500002, 84.65503305300001, 78.70596492800007, 58.0009940110001, 85.85186322599986, 113.66500836, 54.1150082260001, 90.907859142, 98.14774207999994, 65.64764928, 56.01636136299999, 101.99962563000008, 61.82688423000002, 57.18491851200008, 104.52585648000002, 65.68008167999994, 63.799350950000075, 118.7803498799999, 64.35255827999993, 60.56370368, 117.51582544500002, 60.467285280000056, 55.474085752000065, 117.44637844199997, 59.236464329999876, 56.70566541599999, 122.59570090799991, 56.57776608000006, 59.332539814999905, 124.0309345500001, 60.40306137999994, 58.06498023200004, 121.33571993800012, 78.60705168000004, 55.34658789000002, 120.07544087999997, 64.38493120500004, 52.8196796310001, 88.4782202560001, 82.46353500800012, 61.79463025500013, 92.23770071199999, 100.73828031999994, 64.44951103999995, 98.75726287999987, 99.37522600500006, 55.282675079999876, 63.70257630999993, 119.97082428800002, 58.0009940110001, 62.567237009999985, 87.74382300000002, 52.756167989999994, 71.61501103199998, 122.66562288, 51.45671144999994, 56.60978196000008, 126.62560103999999, 50.288049424000064, 60.62792757999989, 113.6994650879999, 61.95556932000011, 63.08978073000014, 117.55063820999999, 53.98758408000003, 63.2833300100001, 131.73550607999994, 55.378380415999914, 50.224775462000025, 120.1453047, 70.25327303200004, 52.72433053500015, 116.25542826000014, 57.80887085899997, 46.33878967700002, 96.02530583099997, 68.11220516200001, 51.202815095999995, 102.37401159499996, 64.38493120500004, 56.641797840000095, 101.07814864, 99.34124628000006, 51.424933665000026, 62.993006089999994, 95.51932929000009, 58.06498023200004, 68.85938831800001, 83.75856683799998, 63.154241920000004, 67.62815356800002, 124.55650925700002, 59.268434559999946, 79.29944441600003, 118.81522231500003, 42.38599521000003, 64.41730413000005, 116.18592167999998, 55.34658789000002, 118.88478835199999, 109.77513192000004, 69.63483430399992, 62.11650838500009, 120.1453047, 55.34658789000002, 66.81735145199991, 121.26573716799999, 55.378380415999914, 63.12209418000009, 118.919660787, 53.98758408000003, 59.17219427999987, 98.58783558000005, 59.30056958499995, 67.40104233, 102.40793540499999, 52.72433053500015, 61.79463025500013, 107.35604369800012, 92.82803565400013, 65.68008167999994, 56.641797840000095, 83.69203556799994, 61.79463025500013, 77.9371704460001, 79.83613832699984, 54.051377940000066, 72.84606705199997, 113.59573967999995, 64.32035137000003, 84.45578042900001, 113.59573967999995, 66.9146610360001, 64.74036932000001, 117.34211867399983, 50.7630107839999, 54.62437766200003, 108.30811713599996, 51.424933665000026, 68.56709213700003, 120.11037279000004, 60.69231658000001, 64.35255827999993, 116.15134661200011, 65.71251408, 59.17219427999987, 120.07544087999997, 52.72433053500015, 60.43525588, 105.85522477500001, 55.31463148500006, 56.60978196000008, 116.15134661200011, 68.20969286600018, 54.051377940000066, 126.48486378399991, 83.92455382700007, 60.370866879999994, 122.70067374000007, 77.2461936169999, 60.56370368, 87.214917678, 77.41069580800001, 61.79463025500013, 95.99150472600002, 64.38493120500004, 69.43950265600006, 90.907859142, 92.92890939000006, 55.31463148500006, 67.62815356800002, 98.04615527999988, 57.87285708000002, 71.41932314399992, 79.80305131199998, 51.32976327299991, 76.57530313799998, 114.71771743900001, 64.28797844499991, 67.3687168859999, 118.7803498799999, 63.08978073000014, 61.85897279999995, 121.300728553, 64.38493120500004, 54.27416572800007, 112.12812896899993, 61.665779759999964, 54.337796014000105, 100.56843344000004, 65.48581991999993, 63.05746728000008, 112.47316839099994, 71.80072216399992, 57.84094621400004, 121.23092522599995, 55.282675079999876, 47.5394822400001, 116.42883826600007, 60.43525588, 63.025319540000055, 120.18005747199993, 57.80887085899997, 53.923953794, 112.30064867999988], \"power_mean\": 78.81607036047133, \"energy_millijoules\": 11055.176855285934, \"energy_joules\": 11.055176855285934, \"coremark_score\": 2138.945927, \"coremarks_per_mhz\": 3.713447789930556, \"ulpmark_cm_score\": 27.136607937353592}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [657.561218152, 681.4673082340001, 699.1575336980001, 649.690365402, 652.999612958, 696.2777875489999, 652.282446942, 662.8371650079999, 688.8453058560001, 661.4498748220001, 647.657325666, 704.99763885, 656.114749575, 646.567149375, 705.4176567999999, 642.057005856, 650.8970917380001, 704.3796856700001, 658.1635586839999], \"power_mean\": 669.4116042544737, \"energy_millijoules\": 3347.0580212723685, \"energy_joules\": 3.3470580212723684}}, \"768000\": {\"active\": {\"elapsed_sec\": 105.202978345, \"elapsed_ns\": 105202978345, \"power_samples\": [125.04939176799996, 73.38982018600018, 70.53889518899985, 132.99949842, 64.28797844499991, 78.90379142400013, 129.07480849399997, 73.25883055700001, 65.97147431999997, 130.5112308900001, 77.04872336100004, 68.59947675100011, 126.44963430400003, 77.21322555200004, 74.68909802199994, 138.10809584000003, 84.98694844799991, 63.08978073000014, 90.1374544979999, 83.65894052599992, 69.47211367599994, 96.02530583099997, 83.592409256, 66.72004186799995, 106.57364172200005, 131.59400032799988, 72.06205838599988, 97.42706426500001, 126.41458548799983, 74.52502090399992, 72.6174608, 112.12812896899993, 66.00374040000008, 70.02549759999988, 118.60634537099997, 69.43950265600006, 75.31205200799991, 132.82204536000006, 77.14745848899997, 64.32035137000003, 131.6647532039999, 74.65624890699985, 73.42244147999997, 130.26373871300007, 59.07595399999991, 70.73441553600003, 110.18771707999997, 70.70191258199998, 74.65624890699985, 120.45897533800007, 69.24433824399989, 68.17714132100002, 120.28467406400011, 113.52664861200003, 66.78485938200004, 77.08169142600002, 114.68302362400004, 81.10220980800011, 77.83843531800005, 104.32090051199998, 77.18042655399995, 83.09326003199999, 126.48486378399991, 78.37636701600002, 73.97885313900008, 130.19310448200008, 71.99676629199996, 74.65624890699985, 135.34040568, 64.2556055199999, 78.50813843200012, 127.60375330199997, 77.114490424, 79.80305131199998, 125.08456177300002, 66.72004186799995, 72.06205838599988, 124.909072466, 68.07965361700008, 69.40705887199988, 130.26373871300007, 86.18187877600008, 60.370866879999994, 105.14072438400001, 90.03693700199995, 69.50472469600004, 98.55408927999986, 82.33088065600009, 70.73441553600003, 102.40793540499999, 126.30907771199998, 69.40705887199988, 66.81735145199991, 117.30730590899987, 68.11220516200001, 76.18107510599998, 123.89067326299994, 75.85266425400005, 71.15846180699998, 138.07251429999985, 72.06205838599988, 71.12579131200005, 136.70624964, 68.07965361700008, 64.19102568499989, 121.23092522599995, 77.14745848899997, 69.47211367599994, 129.0042929079999, 73.32424129599997, 70.76708603099996, 95.95787695999991, 70.636571592, 68.04710207200003, 105.00402858000007, 75.81975566400001, 58.97971371999995, 98.48642272999996, 118.60634537099997, 66.78485938200004, 72.48670876599999, 109.63748573599992, 69.43950265600006, 68.69696445500006, 104.38933615199994, 70.57139814300001, 72.65002292400004, 128.86308046200008, 66.81735145199991, 68.07965361700008, 132.96397136999997, 74.72177867999994, 62.89623144999996, 123.78552231100002, 69.34183683200001, 64.22339860999989, 123.75041197600001, 69.24433824399989, 72.029328416, 118.57147293600008, 73.16063037300012, 64.15865276, 132.68030153999996, 78.2774537680001, 64.09407292499986, 132.68030153999996, 79.77013397399992, 65.48581991999993, 94.72920558599992, 79.6710426059999, 60.27444847999993, 95.755417008, 115.90843002600002, 68.04710207200003, 109.8781456879999, 116.01251167400005, 66.622732284, 68.76190061400007, 109.49983955200003, 83.06005387200003, 71.28880870500006, 97.8092353799999, 73.32424129599997, 84.12380645099995, 118.60634537099997, 67.98216591300002, 73.22604111200008, 131.523065568, 62.96069264000005, 73.5206416640001, 136.63502179499994, 77.04872336100004, 69.73250012799997, 138.14386078999985, 81.10220980800011, 74.8201575679999, 135.37605167999993, 74.39396135799996, 69.27678202799996, 125.01440212200009, 78.37636701600002, 74.52502090399992, 127.39238151000006, 78.50813843200012, 77.04872336100004, 104.9015505960001, 71.93130635199998, 61.53709466999999, 107.32170692800014, 115.94318331599993, 73.09521963400005, 112.542318121, 117.27249314400001, 69.37444785199989, 68.72951599999999, 96.44701188499994, 68.56709213700003, 80.39759951999997, 100.33068272000003, 62.831770259999985, 73.91344240000001, 130.22833080800012, 61.56918324000014, 62.76730907000001, 134.11678012000004, 66.72004186799995, 73.38982018600018, 131.59400032799988, 68.01471745799995, 74.65624890699985, 132.75117345, 67.917229754, 73.42244147999997, 131.48778007199996, 69.34183683200001, 69.24433824399989, 127.46277845100008, 66.72004186799995, 74.52502090399992, 100.33068272000003, 73.12800907899998, 59.01184874499995, 102.37401159499996, 74.49234024599991, 70.57139814300001, 113.76855615599993, 102.88988271400001, 75.85266425400005, 117.48101267999994, 100.33068272000003, 61.56918324000014, 77.70690119200003, 92.76067134400012, 66.622732284, 88.21101079200014, 91.29798991200005, 67.98216591300002, 79.06859038000016, 140.5589988779999, 71.99676629199996, 61.44049815000005, 115.87385495799992, 78.40922518400009, 72.029328416, 122.38575524399994, 71.80072216399992, 73.32424129599997, 118.57147293600008, 64.15865276, 77.27916168200011, 126.23879941599989, 77.04872336100004, 65.32399055999997, 130.26373871300007, 80.90383964700004, 66.75236731200005, 102.82174119499996, 70.636571592, 75.78701583599991, 103.63996493599996, 71.80072216399992, 67.98216591300002, 102.30581424500008, 110.833334734, 67.98216591300002, 111.2122960160001, 109.43110480799999, 58.94774348999999, 72.6174608, 103.12846561599997, 79.50594688499996, 73.84803166100005, 95.11440938599992, 69.27678202799996, 73.68425258699995, 126.23879941599989, 77.01592436300007, 78.31048130800002, 130.15769657700002, 65.29155816000002, 70.66924208699993, 132.71582859, 74.39396135799996, 67.98216591300002, 130.19310448200008, 71.86601425799995, 69.66744532400003, 126.27384823199998, 82.03253608000011, 74.32843158499998, 125.08456177300002, 95.18183825699998, 78.21156805999999, 97.77531512999997, 87.34318031200007, 66.68754979800008, 90.77395056, 88.64192203599998, 75.68845882799997, 92.00285922399996, 126.73092815199993, 75.75410724599999, 103.5376650720001, 120.95153247500002, 71.7354300699999, 69.63483430399992, 119.62222173999999, 71.70270010000002, 68.43705288800004, 119.83145492400001, 75.72136741799989, 64.74036932000001, 130.01642811499994, 64.02949308999996, 61.44049815000005, 140.48741470899984, 65.19442728000001, 71.83345213399991, 130.15769657700002, 66.68754979800008, 75.85266425400005, 127.60375330199997, 62.70268217000012, 65.29155816000002, 143.04052555399994, 67.94978129899994, 68.14458977600009, 140.415646519, 87.37662437199992, 66.622732284, 89.90285630100004, 92.39085855500014, 62.67053443000009, 89.41113331399993, 80.90383964700004, 66.65522435399998, 107.42454115200007, 125.71653970900002, 65.29155816000002, 99.74830595999993, 132.6094296299999, 69.11406139999997, 62.019911864999926, 122.3508841319998, 77.01592436300007, 81.43316670900003, 117.02933937, 56.226248136000095, 71.19096476100003, 140.415646519, 58.81936818499992, 69.34183683200001, 137.82252646999996, 73.12800907899998, 65.42112143999998, 126.20356993600001, 84.62105583000005, 65.29155816000002, 114.96021831000007, 74.39396135799996, 69.27678202799996, 114.99473420799995, 73.12800907899998, 71.86601425799995, 114.85631478200003, 106.6705409000001, 74.36111224299998, 78.3433394760001, 106.73903835400017, 74.39396135799996, 73.71704203200011, 102.88988271400001, 66.622732284, 78.90379142400013, 122.24591129999999, 65.19442728000001, 81.46614341099996, 126.20356993600001, 71.80072216399992, 66.49293063000016, 127.56846434699992, 63.86796049499992, 74.29558247, 124.94424247099994, 74.49234024599991, 69.17911620400002, 122.45567721600003, 71.86601425799995, 78.17854052000007, 121.05632718699997, 99.1039109699999, 65.29155816000002, 122.28078241200001, 96.24419452500001, 66.68754979800008, 85.41949128599992, 93.92096377199994, 72.99701945000004, 94.49353327799997, 87.34318031200007, 73.22604111200008, 99.68052076499998, 133.79723137500002, 66.68754979800008, 69.08145037999998, 132.68030153999996, 65.29155816000002, 69.34183683200001, 121.12613051400001, 78.31048130800002, 72.029328416, 131.34609243599994, 69.21172722400001, 83.69203556799994, 123.57522040699996, 67.88467820900007, 75.78701583599991, 118.46721329699994], \"power_mean\": 89.16226547895693, \"energy_millijoules\": 9380.135884373847, \"energy_joules\": 9.380135884373846, \"coremark_score\": 2851.846571, \"coremarks_per_mhz\": 3.713341889322917, \"ulpmark_cm_score\": 31.982479113097188}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [648.2458565080001, 690.488415056, 644.354376152, 647.0940345480001, 687.328334187, 643.1176652769999, 647.97867492, 692.576127774, 685.7493945659999, 639.2258276809998, 690.931658106, 662.381964472, 641.586447726, 665.5561658550001, 667.660023255, 654.2146166160001, 656.5656530550001, 663.7425, 633.8970248669999], \"power_mean\": 661.1944610853158, \"energy_millijoules\": 3305.9723054265787, \"energy_joules\": 3.305972305426579}}, \"1017600\": {\"active\": {\"elapsed_sec\": 79.397715907, \"elapsed_ns\": 79397715907, \"power_samples\": [149.40854147000005, 84.65438094000001, 82.198396592, 149.40854147000005, 86.71517612100001, 82.16519043200003, 140.27247818099988, 80.87069296199991, 87.20957558000009, 139.33154358500008, 88.47474701400006, 80.87069296199991, 131.523065568, 80.57288274600012, 86.04868284199995, 132.68030153999996, 123.43513917299992, 78.21156805999999, 97.05529032000004, 120.77675499300005, 90.070328088, 84.12380645099995, 114.4060068550001, 87.20957558000009, 89.210454562, 151.85168867699997, 89.80233880500009, 83.36006158999999, 146.74772498699997, 87.00942574400005, 88.37440763799998, 146.6393655390001, 87.176303028, 89.70182130899991, 134.11678012000004, 100.05871823999996, 85.91531570500013, 134.11678012000004, 70.37571025500006, 90.92883012800007, 133.97479900999997, 122.03596563600001, 76.71971897900005, 92.49173229100018, 127.21629867299998, 84.58790161799993, 99.61256131499988, 120.63714833900008, 84.65438094000001, 102.16976927500002, 142.89669800500008, 88.47474701400006, 102.03354944, 144.01101515200003, 97.60606177999989, 91.02952574400001, 138.86674463500003, 77.98071402400012, 93.61780820400008, 138.93820977000007, 83.16080896599999, 87.24301964000006, 147.96944341199992, 81.86684585600017, 83.26043527800005, 148.04192569200006, 114.4060068550001, 91.13022136000006, 145.48521775500012, 109.01851964799994, 84.55457650800008, 108.61715416800007, 106.53336990600008, 75.62281040999994, 99.51079639500006, 109.15598913600013, 80.63900613299995, 99.51079639500006, 149.19111009400012, 80.63900613299995, 89.63486701800002, 144.15508029600005, 89.76894771899993, 93.6851184300001, 140.27247818099988, 84.65438094000001, 95.08060828099997, 137.60830359, 83.45968790199993, 85.25303663399995, 142.7888735009999, 81.90005201600013, 80.60602943100002, 149.48095654300016, 116.82081983399996, 80.70529950299999, 102.68528298599995, 109.01851964799994, 88.47474701400006, 100.8402233600001, 102.71944133099998, 80.57288274600012, 108.61715416800007, 137.60830359, 86.01529825700004, 108.58275792299992, 154.48063378799998, 80.67215281800009, 83.36006158999999, 140.16500991700002, 87.04269829600003, 88.70875768199994, 150.37617939599988, 79.27467713400006, 84.82066469400002, 148.04192569200006, 87.00942574400005, 81.93308788800005, 151.81545587900007, 106.0262596880001, 101.45492115500019, 150.6303271019999, 105.34194425500016, 91.13022136000006, 112.33522354499996, 87.0761423560001, 96.00751638999998, 119.09366529600004, 97.53839522999999, 88.37440763799998, 108.47992196999996, 139.08132375499997, 84.52125139799989, 77.14745848899997, 143.90301252799998, 85.88210232300003, 88.8426007879998, 142.753055087, 89.76894771899993, 87.51005759600002, 154.40774374599994, 88.40773955399993, 83.22716964299991, 154.29831499399995, 79.27467713400006, 94.84452056300006, 147.86109169600002, 98.76463648499998, 84.45477207600004, 119.41298855600007, 93.51675634800006, 96.14278584500016, 124.135905449, 89.73538451400009, 87.14285896800004, 117.58527244799984, 129.839570169, 89.76894771899993, 89.60147593199997, 119.308371964, 89.53434952199996, 92.92890939000006, 125.85199779200002, 97.36914187999992, 87.57677420800007, 140.05754165299993, 88.27406826200001, 93.06329255200012, 145.3049782620002, 89.70182130899991, 88.30757199200002, 149.3722408550002, 81.73436179200007, 81.90005201600013, 143.93907504800018, 89.76894771899993, 92.32366697400005, 133.83263540500013, 87.0761423560001, 81.86684585600017, 141.530735316, 114.09447418800005, 87.0761423560001, 155.66516814600004, 112.869839436, 83.29370091299995, 106.0262596880001, 108.94960820799986, 92.49173229100018, 92.92890939000006, 111.67954225899996, 89.70182130899991, 94.22411934000002, 150.52143329400008, 90.8281345119999, 84.38829275399996, 145.23291951300007, 90.96245280800008, 94.84452056300006, 147.86109169600002, 89.63486701800002, 93.65154983399998, 145.41315900600011, 96.04137716500009, 89.04327953999996, 150.44889957600003, 81.86684585600017, 89.73538451400009, 145.41315900600011, 110.35100428400006, 89.56791272700002, 101.28477751000014, 114.09447418800005, 81.99950020799997, 101.9655269550002, 105.17090934200007, 83.22716964299991, 101.93142828000009, 140.73805131099994, 79.17558576599993, 99.37522600500006, 150.48507320400006, 87.176303028, 92.357349129, 149.2635251669999, 85.74873518600009, 88.44124328400005, 136.06483282500005, 92.12191950199997, 92.49173229100018, 140.0216575579999, 86.842376952, 88.34090390799997, 149.046279948, 93.61780820400008, 88.40773955399993, 156.99578891599992, 97.33522162999998, 92.22279323800012, 116.08184003200006, 88.34090390799997, 97.33522162999998, 113.52664861200003, 88.34090390799997, 89.70182130899991, 122.66562288, 136.02912734999984, 92.1892838120001, 91.60007676000009, 125.85199779200002, 90.86175719200014, 93.02961039700006, 114.26758742899995, 80.53990604399996, 100.67037648000019, 147.75255412800004, 88.30757199200002, 88.30757199200002, 138.93820977000007, 88.17372888600005, 83.22716964299991, 154.371205036, 85.74873518600009, 87.0761423560001, 144.0470776720001, 83.12771392399998, 88.44124328400005, 145.3049782620002, 81.83380998400014, 89.60147593199997, 141.35138611800005, 107.69021946299995, 84.321813432, 125.88704660799999, 106.3278775440001, 83.12771392399998, 125.22506143400005, 89.40044094000007, 85.782119771, 116.04726496399996, 137.50137556000004, 87.00942574400005, 121.37053188000004, 129.66289380199999, 87.00942574400005, 82.49657088000004, 134.94903088000012, 93.44944612200004, 86.44861305000006, 120.53235362700013, 94.777091692, 90.37188057599985, 146.56718775600007, 83.02808761200004, 92.2899848190001, 143.8671349440001, 84.45477207600004, 88.44124328400005, 146.60318387400002, 88.34090390799997, 92.22279323800012, 133.86822193, 85.74873518600009, 80.47361267400004, 135.0557860800002, 90.89537987200003, 83.06118265399994, 138.90238534499997, 120.63714833900008, 83.16080896599999, 93.38213589600002, 110.21329672800005, 76.58801578600003, 95.51932929000009, 107.75883556199994, 86.90926507200004], \"power_mean\": 105.59373002751902, \"energy_millijoules\": 8383.90097828541, \"energy_joules\": 8.38390097828541, \"coremark_score\": 3778.718259, \"coremarks_per_mhz\": 3.7133630689858492, \"ulpmark_cm_score\": 35.782865372218765}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [642.79358853, 684.8574060159999, 643.9706459919998, 639.3135406140001, 682.2647303359998, 643.9706459919998, 659.6398110599999, 671.7666322289999, 689.3833086, 649.2738848700001, 651.6251470959999, 676.4239061999999, 640.0520856960001, 641.968785648, 675.1908236400001, 636.225785046, 639.430741943, 704.73898748, 649.095305846], \"power_mean\": 659.051882254421, \"energy_millijoules\": 3295.259411272105, \"energy_joules\": 3.295259411272105}}, \"1248000\": {\"active\": {\"elapsed_sec\": 64.740012528, \"elapsed_ns\": 64740012528, \"power_samples\": [106.29354077400012, 136.59949942499986, 98.56128090000004, 90.8281345119999, 127.70943919799993, 143.75913232000016, 94.57463173999997, 135.41151488000003, 136.02912734999984, 113.95587684500003, 99.30744081, 137.50137556000004, 106.25920400400003, 107.11603848000004, 155.59215945900007, 92.02104576599993, 108.30811713599996, 151.5608924579999, 102.41254173900006, 104.9998744290001, 158.03316814200002, 101.1146338650002, 96.00751638999998, 165.91008311199994, 101.08053518999998, 94.91194943400001, 154.1523475319999, 102.37838339399991, 104.86294103, 155.44595440199998, 116.61230029799992, 101.1146338650002, 165.68801828000005, 114.19837771599998, 98.56128090000004, 134.2233572, 108.74322728000004, 108.88087346400016, 129.0042929079999, 107.51859102000003, 98.425536255, 137.96540285999993, 145.269041508, 103.70620808400008, 104.11612001999993, 146.42264664300012, 106.25920400400003, 99.13771644000008, 147.89714698400007, 103.6379479200001, 91.3986855280001, 156.66643393999993, 103.6037301, 102.37838339399991, 149.00997933300016, 98.52730117500005, 97.16596828000002, 156.62977628, 107.58720711900003, 91.92017203000012, 139.87848922, 103.74042590399995, 104.93149562000008, 153.03670745599993, 102.27608352999994, 98.4595159800001, 157.95992216499997, 129.5922595710001, 91.98753634000013, 170.82885309999983, 130.77970565999988, 93.24734240999999, 121.19593384100006, 116.61230029799992, 110.17878133800014, 126.23879941599989, 155.40954390000002, 103.6379479200001, 130.26373871300007, 148.75643349900008, 97.16596828000002, 101.69326215000001, 143.651129696, 104.9998744290001, 103.12846561599997, 132.14830673999995, 107.48419477499988, 108.17088493799997, 160.54689861499992, 90.69398864000004, 95.93996848500012, 156.7030916000001, 104.89721832499993, 99.78692832000002, 155.37294571500001, 107.31256633199985, 97.33522162999998, 164.46861894000006, 102.34440022000001, 103.56951227999991, 160.5100625299999, 95.80469903000005, 98.425536255, 156.52017927600002, 106.22504332000005, 99.75306368000008, 134.04578956500006, 95.87242058000004, 98.4595159800001, 137.7869449299999, 108.5713020720001, 108.91532918400003, 149.48095654300016, 142.2859386570001, 99.92291055999999, 98.4595159800001, 134.62876528000015, 106.22504332000005, 125.11973177799996, 119.23868728200011, 106.25920400400003, 119.93607151599986, 160.06098702600002, 103.6379479200001, 122.4208061039999, 160.39993208099997, 94.50702952999995, 96.10892507000017, 164.50544382599992, 97.13204802999985, 95.01317941000002, 164.24691034799991, 91.98753634000013, 104.08190220000006, 160.54689861499992, 97.0304612299999, 106.19070655000007, 176.11903052000002, 112.1627038339999, 101.18265635, 167.05571434000012, 103.6379479200001, 94.64206061100015, 142.86087959099996, 95.93996848500012, 98.4595159800001, 146.67536165699994, 104.89721832499993, 104.8288395159999, 158.14313125399997, 129.45080953000002, 89.36687773499989, 118.46721329699994, 120.2879522610001, 95.28306823299988, 117.30730590899987, 129.52162534000013, 95.80469903000005, 131.59400032799988, 160.5100625299999, 144.98043603000008, 97.16596828000002, 156.7030916000001, 102.31024187499986, 101.35279999499994, 138.4734108199999, 101.1146338650002, 106.70487766999997, 153.97002873799988, 106.22504332000005, 109.36237006399995, 156.62977628, 97.06438147999995, 101.01251270500006, 157.95992216499997, 111.36890039499997, 97.13204802999985, 140.99268772200003, 102.24210035599992, 102.37838339399991, 154.1523475319999, 98.35775105999994, 99.68498528000009, 151.3065158039999, 124.24210488400001, 98.425536255, 160.436579263, 116.40395928900011, 107.41557867599988, 121.09113912900011, 109.97204300199996, 106.122209096, 136.67072726999993, 152.63618630400015, 107.38118243099996, 139.18861331499988, 150.12221815199996, 97.16596828000002, 101.62523966499998, 150.08585806199994, 106.15636978000009, 108.17088493799997, 146.24210941199988, 99.68498528000009, 105.58153375799998, 164.39458952999996, 103.50125211599993, 102.31024187499986, 158.03316814200002, 98.32377133499995, 97.09812777999991, 162.87999794199993, 100.91039154500004, 109.90318922400002, 151.52465966, 108.70894825599987, 98.35775105999994, 157.81343021100008, 97.0304612299999, 97.06438147999995, 157.8866761879999, 120.32276420300002, 93.18003218399997, 121.58120319600005, 104.86294103, 99.65112063999993, 128.79256487600003, 107.44979852999995, 100.87646773500012, 135.09143208, 150.04968443400003, 100.97841403000007, 97.0304612299999, 137.0729298, 111.29992797199986, 106.77337512400004, 134.52219288000015, 96.99671493000005, 109.36237006399995, 157.73999594099996, 102.17395883699999, 110.62659639800006, 152.59970726400002, 98.28996586500011, 91.92017203000012, 165.54010180799992, 106.08787232600002, 101.01251270500006, 160.4734153479999, 106.08787232600002, 99.85500672, 155.33634753, 100.91039154500004, 100.91039154500004, 150.04968443400003, 105.81370642399997, 104.760460707, 160.39993208099997], \"power_mean\": 119.92867843386047, \"energy_millijoules\": 7764.184144274609, \"energy_joules\": 7.764184144274609, \"coremark_score\": 4634.278211, \"coremarks_per_mhz\": 3.713363951121795, \"ulpmark_cm_score\": 38.63895992487802}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [695.767304464, 647.7409428159999, 642.8229537279999, 683.9478158759999, 648.097388384, 641.7923452320001, 681.358583646, 642.498876981, 645.76851024, 694.376864368, 637.316167878, 663.1646875, 698.229157782, 651.5654344289999, 645.0881092110001, 695.6398066019999, 642.498876981, 646.5013530040001, 677.505858666], \"power_mean\": 662.1937388309474, \"energy_millijoules\": 3310.968694154737, \"energy_joules\": 3.310968694154737}}, \"1324800\": {\"active\": {\"elapsed_sec\": 60.988482424, \"elapsed_ns\": 60988482424, \"power_samples\": [141.0643905359999, 103.56951227999991, 117.09878637299994, 134.52219288000015, 109.93770461400004, 119.72683833200006, 161.7710254839999, 117.5272670490001, 106.122209096, 164.1730707569999, 103.6037301, 101.14873254000008, 161.69742318300007, 98.25598614, 111.575994971, 157.95992216499997, 98.22200641500001, 112.38584673599996, 173.30349053999998, 103.50125211599993, 99.68498528000009, 161.58692512699986, 100.91039154500004, 108.60575779199996, 145.48521775500012, 116.23007399100004, 108.70894825599987, 146.49482442599992, 108.64021351200006, 100.84236906000001, 160.62038188199995, 138.29465612499996, 98.39155653, 121.65112516799991, 146.1337499639999, 102.0716589729999, 126.09806216000004, 124.03144557200005, 99.51513839999996, 131.38155981599994, 164.65331282699992, 102.10564214700003, 133.903808455, 173.3409217650002, 98.32377133499995, 106.25920400400003, 153.82424865399992, 102.17395883699999, 109.190444856, 169.46116896000012, 107.31256633199985, 102.78758284999992, 166.796159613, 95.7034639950001, 112.42048107599999, 162.87999794199993, 109.22472388000006, 102.20794201099989, 160.28961272899983, 96.89512812999988, 100.94449021999992, 156.776218932, 100.87646773500012, 103.36473178799986, 154.04291878000004, 103.43299195199995, 104.86294103, 165.50302762799993, 133.05119181500004, 100.84236906000001, 133.97479900999997, 124.13677522799992, 102.92404105899993, 140.37994644499997, 115.14528342200003, 102.10564214700003, 137.89405636999993, 164.24691034799991, 100.94449021999992, 102.00334228300005, 151.34293536899997, 112.48957214399991, 107.86184790599998, 147.35464499599993, 109.79982005600004, 110.66111178799997, 174.37212232000002, 96.96279467999989, 112.97356484399995, 164.13605605199996, 107.20955398799993, 94.5408306349999, 166.87042692300008, 98.35775105999994, 99.58321680000006, 152.70895731199994, 103.36473178799986, 108.64021351200006, 157.95992216499997, 107.27817008699992, 104.79456222099998, 168.1307247000001, 130.5319796519998, 112.59329755199997, 165.39199521199998, 116.40395928900011, 107.38118243099996, 135.1268952800001, 111.2653531069999, 103.39877413199997, 140.45153061399992, 164.20989564299998, 103.33051396799999, 131.20458668399988, 168.01933545999998, 99.48127375999991, 107.72461570799999, 155.11732146899988, 99.48127375999991, 111.74851468199995, 151.161024311, 109.90318922400002, 109.25917959999992, 161.80773203, 107.31256633199985, 108.60575779199996, 164.20989564299998, 102.24210035599992, 102.03750062799998, 153.82424865399992, 109.93770461400004, 103.43299195199995, 164.025201756, 105.98503810200009, 100.80827038500013, 165.54010180799992, 104.69190611700003, 103.36473178799986, 159.03312792600013, 126.72315814799992, 102.00334228300005, 124.909072466, 120.25296087600009, 107.27817008699992, 131.169119304, 118.89008473399997, 104.79456222099998, 124.73358315900009, 160.25277664399994, 108.60575779199996, 98.05245630000002, 152.45397817600008, 99.61708143999999, 102.85572436899997, 144.692015793, 100.77434657499998, 104.15016236400004, 165.50302762799993, 107.24395023299996, 119.83145492400001, 170.75441989500007, 95.56819454000004, 112.454937804, 171.78645187999996, 106.05371164200017, 111.2653531069999, 171.74908013000004, 116.47340629199994, 109.62759711000001, 158.9229866940001, 113.64416626100001, 107.20955398799993, 160.21594055900005, 119.06438600799993, 102.0716589729999, 166.75921638700004, 116.36914652399992, 105.98503810200009, 129.87497807400007, 122.76930317899996, 107.24395023299996, 136.3142218349999, 117.5272670490001, 108.53702304799992, 137.60830359, 157.7034670989999, 116.36914652399992, 102.85572436899997, 160.21594055900005, 103.43299195199995, 110.833334734, 131.82929204999994, 104.65780460299993, 120.88154970500023, 169.27509600000008, 105.950877418, 107.20955398799993, 165.39199521199998, 107.27817008699992, 104.8288395159999, 160.14245729200002, 113.74806978900006, 114.05978037300008, 170.642674415, 100.7061492250001, 108.06787259400005, 169.20078144000001, 90.391901792, 102.0716589729999, 174.40961301999994, 105.91654064800002, 96.86120787999994, 140.92080058199997, 108.43383258400002, 104.5551484990001, 145.088616774, 111.09283339599995, 105.91654064800002, 152.70895731199994, 131.72289308999996, 99.34529152000005, 166.90737014900003, 136.89447186999996, 103.19381816400005, 127.286695614, 130.46104489200002, 104.65780460299993, 128.61618527400003, 162.6954113060001, 101.90104241899996, 132.64477449000003, 165.42906939199997, 103.2622538039999, 110.28215050600011, 149.72300300999996, 101.935200764, 109.190444856, 157.7034670989999, 104.58925001300008, 107.82745166099983, 167.9079462200001, 105.74520897000014, 95.73715112499997], \"power_mean\": 124.59727159901645, \"energy_millijoules\": 7598.998508994969, \"energy_joules\": 7.598998508994969, \"coremark_score\": 4919.323101, \"coremarks_per_mhz\": 3.713257171648551, \"ulpmark_cm_score\": 39.47888654602164}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [655.6640005140001, 701.859893805, 651.2667175909999, 646.26424993, 709.368954864, 660.5109047349999, 644.910600075, 676.8224214919999, 650.2112242920001, 658.914090612, 674.050020033, 655.1530280430001, 637.19935429, 686.6042107760001, 682.183745748, 641.145497748, 682.7471227289999, 677.412648178, 646.0863845540001], \"power_mean\": 665.1776352636316, \"energy_millijoules\": 3325.888176318158, \"energy_joules\": 3.325888176318158}}, \"1497600\": {\"active\": {\"elapsed_sec\": 53.951425813, \"elapsed_ns\": 53951425813, \"power_samples\": [177.07466822799995, 133.08677834000002, 120.14816616400003, 145.37703701099997, 139.59196852299988, 112.21303025999998, 128.58083684400003, 134.2730364800001, 122.69908250900005, 141.67432526999994, 184.68531479800004, 120.21796949100008, 126.899240985, 180.8027489540001, 111.02386097299984, 126.93452994000006, 175.74410451800009, 116.05636721999997, 106.22504332000005, 179.43470910000008, 105.64237474600009, 115.00662670600002, 178.3300122479999, 112.31675566799993, 110.98928610799999, 187.347037968, 109.62759711000001, 124.03144557200005, 157.44682374, 103.33051396799999, 108.50256732800005, 167.12979122100012, 122.66415222699993, 122.59393155700013, 164.32074993899994, 145.88084940300007, 110.98928610799999, 121.30115581200005, 139.37703199499992, 121.40612864399998, 129.7337096120001, 138.18736656499993, 122.69908250900005, 132.46750362, 166.87042692300008, 122.69908250900005, 140.20070999099983, 173.00461660500002, 120.14816616400003, 115.21461178000004, 169.0521523199999, 118.64591963999999, 107.58720711900003, 175.74410451800009, 120.07836283699999, 112.76611402800006, 178.21719746400004, 117.49257344699993, 116.09117998499994, 169.12646688000007, 120.77675499300005, 123.85595626500015, 167.9079462200001, 113.54026273300008, 121.37125753199985, 148.00568455200005, 118.78546814200001, 121.23123384000007, 155.59215945900007, 120.00838006700008, 112.28212132800002, 160.69405405199996, 145.953212733, 113.6096503629999, 123.22483726900009, 144.54789829499998, 107.55281087399987, 128.51032125799998, 138.18736656499993, 125.28922943199996, 135.0557860800002, 182.09552469900007, 127.91048559199999, 111.09283339599995, 183.35482603499997, 114.86779176800007, 113.74806978900006, 180.8783254939999, 126.54707531099996, 117.7014503910001, 171.74908013000004, 113.43653712199989, 112.38584673599996, 173.04185587500012, 170.195692495, 113.64416626100001, 170.49361666000004, 117.21413046600003, 108.39937686400003, 158.9229866940001, 116.09117998499994, 114.90254505799999, 160.4734153479999, 119.903764798, 105.81370642399997, 162.99067411800013, 148.39398582000013, 119.8687734130001, 116.05636721999997, 141.9264621000001, 113.43653712199989, 129.87497807400007, 148.5027015080001, 117.42282857700013, 129.7337096120001, 167.9079462200001, 127.76927314600005, 129.80434384300008, 167.7223610650001, 112.10930485200004, 126.51178635600002, 175.48182962600004, 129.06204889100013, 116.36914652399992, 172.85508366000022, 117.38813497499996, 106.19070655000007, 176.73675823600013, 123.82078626000009, 116.05636721999997, 178.14205199999992, 115.3534467180001, 104.41821510000011, 176.8493949000001, 119.93857674000014, 113.40184330700004, 155.22692834100008, 118.75053623200006, 113.6096503629999, 168.0935313750001, 106.93491320099997, 105.74520897000014, 169.34960159999991, 144.40359555600014, 125.11344336000002, 127.14590173199997, 147.10132872000008, 116.82081983399996, 125.88704660799999, 143.14717909600006, 113.47105302, 150.34000576799997, 173.15395759500007, 114.76371012000016, 109.73096627799998, 167.87075289500012, 116.05636721999997, 115.2841183600001, 171.74908013000004, 121.30115581200005, 116.85563259899993, 176.8493949000001, 123.75062660900005, 113.43653712199989, 169.08921408000003, 112.10930485200004, 114.971873416, 175.44427925600007, 118.61116686799994, 118.7156043220001, 172.92994611000006, 119.76397870100016, 112.28212132800002, 179.509973209, 114.83303847800016, 114.69438176200003, 180.57660069200006, 130.24878626399993, 117.31856893799988, 140.52615861599998, 126.300414564, 112.31675566799993, 150.41253948600001, 121.16131186799998, 114.72913505199995, 158.03316814200002, 152.2356651519999, 110.88573882000003, 161.84462778499994, 158.59275159600008, 113.40184330700004, 118.11902544600014, 140.52615861599998, 103.12555799999996, 129.62766747600006, 139.37703199499992, 118.50655027599998, 132.32575980000001, 184.571803532, 108.33064212, 117.562139484, 177.99176107199992, 120.21796949100008, 105.88220387800004, 177.99176107199992, 118.61116686799994, 117.87545490000002, 174.18505334000008, 115.98692021700003, 117.31856893799988, 176.88700474500013, 105.6080379760001, 122.62904189200003, 179.35944499100003, 115.84784768399982], \"power_mean\": 135.03206119193024, \"energy_millijoules\": 7285.172231772901, \"energy_joules\": 7.285172231772901, \"coremark_score\": 5561.013587, \"coremarks_per_mhz\": 3.713283645165599, \"ulpmark_cm_score\": 41.17953432749424}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [642.1748002339999, 650.270818314, 701.956490325, 654.882485955, 651.714792848, 708.010125954, 642.145435036, 646.115927262, 705.45110328, 627.96158297, 653.794812804, 739.24338054, 662.5868749999998, 643.5869158319999, 699.271492395, 646.1456222520001, 634.494108096, 711.956406504, 661.562478752], \"power_mean\": 667.5434554922631, \"energy_millijoules\": 3337.7172774613155, \"energy_joules\": 3.3377172774613153}}, \"1612800\": {\"active\": {\"elapsed_sec\": 50.09562347, \"elapsed_ns\": 50095623470, \"power_samples\": [128.33394165599998, 139.98595748399998, 150.87022809200005, 122.45385032299998, 145.269041508, 185.75051737399997, 118.64591963999999, 128.956188334, 176.73675823600013, 123.78579661399999, 130.67348540399996, 173.00461660500002, 121.19636272799994, 121.79096911199986, 174.0352827999999, 128.956188334, 128.08686519399998, 179.20872329199995, 121.23123384000007, 118.43668645599996, 176.66173141700006, 122.31358903599994, 123.89094591100002, 168.86607935999996, 121.05633903600005, 123.78579661399999, 180.53881242199998, 168.90333216, 119.8337820280002, 182.02002330000005, 155.9712543160001, 121.16131186799998, 175.44427925600007, 145.62813438900002, 121.02128817599998, 155.519150772, 133.98841688000005, 125.00793558400005, 149.00997933300016, 167.75955438999995, 122.45385032299998, 181.21764478, 171.63734818, 121.12626100800003, 124.41759419100015, 161.1818286580001, 123.68046695800001, 127.04021583600002, 144.36765880200005, 123.71545660400011, 136.02912734999984, 180.53881242199998, 136.57313755000007, 135.35200506, 184.571803532, 116.2648867559999, 123.85595626500015, 180.689771716, 124.93765728800008, 112.454937804, 179.20872329199995, 124.90242780799997, 135.06691057499995, 171.48805283000013, 124.97288676799985, 121.05633903600005, 180.689771716, 115.84784768399982, 122.38380970599997, 168.16791802500018, 127.62824197400005, 120.53235362700013, 160.36309599599997, 124.93765728800008, 114.62505340400003, 164.09904134700002, 152.19918611200012, 127.55772638799999, 128.77933038799995, 156.11769696800002, 118.332069864, 134.80681248000008, 144.25947805800013, 126.23001762299998, 148.97367871799997, 176.62412157200004, 130.0716312479999, 113.36714949200007, 174.0352827999999, 128.88537252400022, 120.04337145200009, 177.91642243199988, 122.31358903599994, 120.53235362700013, 178.06690653600003, 126.12433172699991, 124.27709453, 183.16567775399994, 124.90242780799997, 126.23001762299998, 176.69934126200008, 118.50655027599998, 117.28369650299999, 184.420130674, 126.26530657800004, 115.84784768399982, 175.48182962600004, 127.34599835600011, 128.88537252400022, 175.36937108200004, 150.761156164, 110.60967182099989, 181.67997586800004, 144.43971755100006, 123.64529695300007, 148.93756426000004, 135.28077721500006, 113.40184330700004, 155.29993702799993, 128.88537252400022, 121.05633903600005, 160.14245729200002, 158.44583375399998, 124.72664173599992, 116.75137283099991, 152.1264151040001, 115.2841183600001, 129.41558320399997, 150.761156164, 118.36700177399996, 132.00656291999985, 176.77436808100015, 121.12626100800003, 128.88537252400022, 185.560580556, 122.27865875400005, 121.12626100800003, 183.0142424909999, 124.867378992, 127.83997000599993, 168.86607935999996, 127.5223779580001, 127.83997000599993, 175.33182071199997, 122.27865875400005, 126.23001762299998, 192.21685386599995, 128.74410406200013, 129.965410992, 150.906647657, 131.40369621000002, 124.867378992, 161.513133617, 118.50655027599998, 126.300414564, 186.89078913600008, 155.898126984, 121.12626100800003, 141.63899163299993, 140.382752988, 123.64529695300007, 149.00997933300016, 137.82967345999998, 115.77840068099988, 155.37294571500001, 188.29721167900004, 118.43668645599996, 154.07945748999987, 175.36937108200004, 129.965410992, 124.17194523300009, 170.08394701499992, 119.72898731599992, 126.7584471030001, 189.436948776, 120.98641706399997, 119.23868728200011, 186.9288749760001, 127.45186237200005, 128.81473829300012, 181.71782361299995, 125.64098223999997, 131.33282429999997, 187.04293718400004, 119.72898731599992, 121.02128817599998, 172.78041316500003, 126.05393478600001, 117.17925803100013, 187.00485134400014, 127.34599835600011, 119.72898731599992, 184.38216378399989, 140.49039937199996, 120.98641706399997, 150.08585806199994, 120.9513662039999, 120.21796949100008, 159.14326915800007], \"power_mean\": 141.95946249082917, \"energy_millijoules\": 7111.547780944166, \"energy_joules\": 7.111547780944166, \"coremark_score\": 5989.099838, \"coremarks_per_mhz\": 3.7134795622519845, \"ulpmark_cm_score\": 42.18490956411326}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [713.1519321400001, 653.55470475, 634.4359385920001, 706.7165190840001, 656.085615364, 654.7623479730001, 700.1478249999999, 662.6171875, 648.529907532, 680.188776574, 652.2314372479999, 646.0271468560001, 683.6969333520001, 661.3499270799999, 665.08200792, 686.226540871, 670.4743200539999, 638.2301429629999, 662.1998218800001], \"power_mean\": 667.1425806701579, \"energy_millijoules\": 3335.71290335079, \"energy_joules\": 3.3357129033507897}}, \"1708800\": {\"active\": {\"elapsed_sec\": 47.28190592, \"elapsed_ns\": 47281905920, \"power_samples\": [190.8479051359999, 130.17785150400005, 136.32333312999992, 197.23672018199989, 145.48359327599997, 146.77571601599993, 192.02543072399988, 135.1738438949999, 135.20954937, 176.96203156400009, 127.27548277000005, 144.33153680700013, 184.458097564, 127.24013433999994, 129.82390523999993, 185.67446464399995, 167.53677591000007, 136.46602610999992, 142.82317122400002, 168.71745024000006, 137.72238389999995, 137.21562278, 159.62769661699997, 132.5184889100001, 154.11599619999993, 197.19815815200002, 133.91730768000014, 133.84601568000005, 189.36073511799987, 135.10261605000005, 126.300414564, 182.97633507599994, 120.81152226000006, 133.157768895, 195.978803664, 136.2162216900001, 138.36612126, 188.03078132500002, 131.22642534, 136.32333312999992, 191.87252804999991, 123.39964799500001, 136.32333312999992, 186.73883640000008, 131.19089828999995, 144.2954148120001, 226.535438786, 139.01874310799997, 146.70341958799997, 181.6044744689999, 149.86807044600005, 141.60298858800002, 190.58064259999992, 145.3392377099999, 144.18723406800007, 165.57717598800002, 137.65091876500003, 136.28756817999988, 162.87999794199993, 181.64232221400005, 131.22642534, 162.84304271200006, 187.8783956819999, 138.911458865, 129.30954106799993, 172.51897045500016, 145.37541937499998, 137.0729298, 167.16541486500012, 140.16746021999995, 139.7351368609999, 189.24631667000006, 136.25180323000006, 144.1512973140001, 198.41323594099993, 136.32333312999992, 135.20954937, 193.27936689199998, 130.94275550999998, 132.62506599000005, 191.83420411499992, 131.19089828999995, 141.42334262500003, 204.83877300500012, 137.68674319000013, 122.20843808399991, 195.70968204000008, 136.43026115999987, 141.31551812099997, 164.20989564299998, 135.1381384199999, 138.911458865, 171.74908013000004, 134.92445488500005, 144.18723406800007, 175.63164597399998, 169.93508060500005, 132.4119118299999, 133.81055248000007, 168.71745024000006, 136.28756817999988, 140.88504133799995, 176.39904111500005, 131.08449932999997, 148.75643349900008, 195.07020225200006, 128.60265402099992, 157.81343021100008, 202.134446454, 122.20843808399991, 127.487029528, 202.32804815600002, 137.65091876500003, 128.956188334, 199.66675742000007, 140.059813836, 139.55608442799996, 195.7481844, 129.78843785999993, 137.6152780550001, 203.58125232099985, 133.6326880800002, 133.66815128000007, 194.4562989499999, 133.66815128000007, 138.9471589389999, 177.87894628800007, 138.80399060100012, 138.83969067499993, 188.25906636399986, 166.12908682600005, 137.57945363, 197.08286757000008, 164.6889166599999, 136.25180323000006, 146.06157218099997, 166.01787629, 133.6326880800002, 160.36309599599997, 156.93372531499995, 136.28756817999988, 161.7710254839999, 194.37961032300007, 129.78843785999993, 130.17785150400005, 195.51756513600003, 133.77490648000003, 140.777394954, 184.003273692, 123.39964799500001, 139.448616164, 195.63287476800008, 138.69652233699992, 136.2162216900001, 200.91996188999997, 132.34092127500014, 132.4119118299999, 203.348494449, 129.78843785999993, 134.959977255, 179.35944499100003, 138.9471589389999, 136.57313755000007, 182.05787104500007, 134.74611061500002, 134.959977255, 178.06690653600003, 167.3139974300001, 129.85937261999993, 137.50798849500006, 169.97220153499995, 130.97810037, 147.46318256400002, 167.20260818999998, 137.543629205, 142.10610806300008, 200.84267964900005, 124.72664173599992, 140.66974857000002, 191.83420411499992, 129.78843785999993, 125.94824888999983, 191.60465357099997, 130.97810037, 128.46138555900018, 181.52897307, 137.57945363, 133.6326880800002], \"power_mean\": 153.80455079562233, \"energy_millijoules\": 7272.172300786477, \"energy_joules\": 7.272172300786477, \"coremark_score\": 6345.580303, \"coremarks_per_mhz\": 3.7134716192649813, \"ulpmark_cm_score\": 41.25314797169415}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [651.02771342, 671.583090462, 661.38033616, 658.551385722, 671.0282358779999, 672.8763413970001, 643.203034, 678.458162664, 704.0281112499999, 653.61480882, 708.3025890660001, 700.212214, 658.521095592, 637.17007582, 704.99788128, 641.703443396, 662.9517187499998, 697.55672675, 643.26218608], \"power_mean\": 669.4962710793158, \"energy_millijoules\": 3347.4813553965787, \"energy_joules\": 3.3474813553965785}}, \"1804800\": {\"active\": {\"elapsed_sec\": 44.764834827, \"elapsed_ns\": 44764834827, \"power_samples\": [162.87999794199993, 208.4804237799999, 151.68941491199996, 156.3737366239999, 218.66351087600015, 151.76218591999998, 209.61558537000008, 211.06360114999995, 143.97105782100016, 146.30551045599998, 192.85793673399996, 159.370410731, 159.4438939979999, 199.74392101600017, 146.41404802400007, 159.4438939979999, 206.0917393799998, 179.321716196, 155.42232935599998, 206.0917393799998, 188.97947090599996, 145.0503410309999, 153.78770994399997, 189.20830780200004, 150.47035994499993, 161.365929015, 209.772012465, 149.0334665339999, 157.37357776300007, 211.02438470000016, 152.87592859599988, 162.06849899400004, 207.22767292499998, 145.12251881400005, 169.6742773699999, 218.70308456599992, 149.10600025199983, 155.49564467599987, 205.89724640999987, 146.37780688400005, 150.43412714700014, 213.57234204700012, 173.54886499999986, 147.66927661900002, 201.863244892, 174.95708727600004, 150.361288017, 184.68531479800004, 167.054025625, 152.94881863800003, 176.8493949000001, 152.91246730599983, 167.12841227499996, 192.446207877, 192.934506716, 160.48213377599996, 148.43028643500008, 184.003273692, 154.05785093400004, 150.94306722199997, 178.68148756699998, 163.06471761599994, 165.28096279600015, 222.53756414600002, 148.92457272599995, 148.96074635399998, 216.23419060699985, 151.65293587199994, 155.45898701600004, 213.57234204700012, 152.69360980199997, 149.2148940599999, 204.48910008500002, 150.14333092799995, 160.068974025, 221.246213056, 152.83938988600005, 153.98484224699996, 208.20714228000008, 145.0503410309999, 165.72137833699992, 189.0174797740001, 155.42232935599998, 149.0334665339999, 192.02543072399988, 150.17956372599997, 151.50739385600002, 193.24098348199993, 184.9533287580001, 148.92457272599995, 208.67551028000003, 183.66215578800006, 147.70557723399997, 169.12646688000007, 186.43454030400005, 150.21598329099993, 171.71190003000004, 213.57234204700012, 147.524446473, 169.08921408000003, 216.1160293029999, 151.3981438080001, 147.95930922500008, 210.98516825000013, 150.25221608900006, 153.34999493599992, 208.44132628, 155.34920202400008, 161.32903326000007, 219.91543204799996, 152.91246730599983, 154.09444911899993, 213.6901471110001, 151.05195238300007, 159.26009137899996, 210.78948822000007, 155.1662897, 159.333574646, 207.110759045, 156.71379909100006, 159.22325529399996, 213.41540310899995, 145.12251881400005, 161.95782281800007, 208.44132628, 168.30843359999994, 156.71379909100006, 187.23297576000004, 160.44523802100002, 163.98818705099995, 183.27920560199993, 154.130859621, 148.92457272599995, 205.14952685000003, 206.79905543000007, 158.00526882600013, 154.130859621, 199.28054271200006, 155.3858596839999, 152.27195712000014, 186.24450172800005, 142.4991633520001, 154.75190266799996, 222.458263773, 146.37780688400005, 146.30551045599998, 213.53320817299993, 159.26009137899996, 161.99458853400006, 202.99955691999992, 151.434622848, 156.82376220300011, 217.36792584800003, 146.23321402800002, 158.1889632780002, 212.28087231200004, 147.596861546, 160.51884032200007, 214.6672404840001, 155.23941703200012, 155.45898701600004, 191.528202234, 151.434622848, 146.30551045599998, 179.20872329199995, 150.106911363, 163.06471761599994, 194.60967620399992, 182.02002330000005, 147.48814585800005, 207.14979706999998, 170.81670287999998, 155.27607469199995, 152.2356651519999, 182.25745497000003, 152.73014851199991, 160.068974025, 221.246213056], \"power_mean\": 172.46158257213483, \"energy_millijoules\": 7720.214257844637, \"energy_joules\": 7.7202142578446376, \"coremark_score\": 6702.412869, \"coremarks_per_mhz\": 3.713659612699468, \"ulpmark_cm_score\": 38.85902514883768}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [671.089718072, 658.76295063, 707.5552389790001, 653.3448028439999, 641.7329599609999, 668.28142155, 650.818488831, 650.7288430790001, 679.8457519770001, 667.30054092, 653.464856871, 677.164140079, 688.309018799, 640.557413382, 649.495636434, 683.257848652, 655.9952565479999, 643.64591624, 699.7623165], \"power_mean\": 665.3217431762105, \"energy_millijoules\": 3326.6087158810524, \"energy_joules\": 3.3266087158810524}}}}, \"6\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 128.354650836, \"elapsed_ns\": 128354650836, \"power_samples\": [88.76394487799996, 141.49534871499998, 92.37179036999999, 87.40451760799988, 156.93372531499995, 94.99360323500002, 88.49595559499994, 153.02189605799992, 106.90051695600005, 87.23734258599995, 158.22555129, 89.92204639199997, 86.00781902400001, 126.65276120699991, 96.21794077999982, 83.59002819599993, 124.066615577, 87.20401067, 89.88842371199996, 129.16809102700006, 137.57945363, 97.50982622999993, 133.98841688000005, 119.51957733500012, 93.76479193199998, 93.14629055399996, 118.332069864, 85.87438580000003, 107.44979852999995, 138.73222241099995, 87.30417823199991, 109.83433544600007, 155.71521466000002, 88.42882918499993, 96.21794077999982, 147.88670799499994, 87.13700320999988, 90.08981494400018, 158.1889632780002, 92.27073851399996, 76.991750916, 156.457344025, 93.62993418999986, 96.62428797999996, 154.45968023699993, 85.84094173999995, 91.214228607, 160.77673218900009, 92.30430710999997, 84.64909831700004, 162.14221994000002, 96.25186102999999, 94.95991610500016, 134.71058824499994, 98.80171168000004, 91.11335487099996, 139.0905112979999, 84.71569628400005, 84.64909831700004, 153.31364360400005, 114.34756175000007, 89.92204639199997, 149.25125415000002, 124.51562618399998, 86.04126308399998, 117.7014503910001, 122.17350780200013, 88.3954380990001, 104.69190611700003, 94.85850742500008, 87.20401067, 134.45090088000006, 149.10600025199983, 89.82135077600003, 131.75823795000008, 133.6326880800002, 83.39041933199996, 99.44723455999997, 131.1200263799999, 95.02746401000013, 89.433832026, 132.482902385, 84.51590238300003, 96.96279467999989, 149.25125415000002, 93.59613308500002, 107.27817008699992, 142.78729364000014, 82.06509012699996, 93.69736306099992, 150.47035994499993, 92.33804873999998, 98.80171168000004, 156.677270249, 80.83932806400003, 91.214228607, 158.26232789999995, 92.405358966, 88.62986417699994, 156.860479338, 93.66373529500004, 92.405358966, 159.51737726499994, 97.47584650499994, 84.58250034999992, 150.361288017, 94.99360323500002, 106.52286382499994, 126.65276120699991, 90.94528955400006, 84.415919831, 134.13081808000004, 92.23699688399995, 82.09835576199998, 130.46104489200002, 125.84256299399999, 90.91160739899999, 94.82464665000009, 119.48458595, 93.59613308500002, 100.7061492250001, 118.26238518199989, 87.17050693999988, 103.33051396799999, 116.79637657799992, 96.15027423000004, 100.80827038500013, 154.24046649299999, 93.66373529500004, 92.27073851399996, 142.71516859999997, 89.78790052000011, 89.92204639199997, 146.70341958799997, 87.17050693999988, 91.55035924100002, 146.26945516800004, 89.68720490400005, 100.60402806500008, 147.9230086099999, 83.15748535799992, 81.89910313799999, 131.04915447000008, 94.58814215999996, 96.21794077999982, 150.47035994499993, 93.69736306099992, 94.95991610500016, 128.28452761300002, 85.80766918800009, 92.20325525400006, 140.52615861599998, 96.18402052999988, 88.52934668099999, 142.89511132799998, 121.68286337699999, 83.15748535799992, 156.97044244999995, 118.15776859000005, 96.15027423000004, 108.674492536, 111.69440321999991, 94.82464665000009, 117.63170552099996, 115.60469390999981, 85.80766918800009, 148.24915567400012, 147.77799230699998, 94.7907858750001, 116.19543975299985, 153.1313248099999, 83.09100603600007, 91.44965823400003, 140.09575740600008, 91.04616328999998, 97.88290618500002, 137.47216406999996, 93.59613308500002, 94.16971183600003, 149.10600025199983, 151.434622848, 93.832394142, 156.78723336100006, 96.11635397999999, 93.56250531900002, 150.43412714700014, 93.56250531900002, 90.94528955400006, 156.89719647300012, 99.95737729500001, 82.06509012699996, 146.48634445200003, 83.32394001000011, 97.06896108000001, 156.82376220300011, 92.439100596, 94.72323797000001, 154.313662863, 109.00738210200007, 98.73380784000005, 122.94315936600015, 92.27073851399996, 85.9078298600001, 125.11344336000002, 90.97897170900012, 99.8552561350001, 130.17785150400005, 85.7742251279999, 79.31568847799997, 135.20954937, 123.29431833900014, 84.48251779799989, 95.9808469300001, 119.34479985300004, 90.94528955400006, 94.27094181199993, 111.62531215199999, 93.52870421399996, 107.106541644, 149.10600025199983, 97.40806131, 116.19543975299985, 150.39770758199995, 97.34027611499994, 90.25758349600005, 142.57128839199993, 88.26135739799997, 83.72298684000009, 142.53522587200007, 92.13594502799992, 85.08224190700014, 148.28527013200016, 94.7907858750001, 89.03193416099998, 163.24941150299992, 96.08243372999993, 87.10367129400004, 155.3858596839999, 84.14935676000005, 94.82464665000009, 155.53211434799994, 101.18511854200005, 97.50982622999993, 141.60298858800002, 101.32157675100007, 88.09388561100002, 145.30305604500006, 88.56290988600006, 98.76767247999999, 146.55882673200017, 111.38340460799986, 88.3954380990001, 152.94881863800003, 121.89316528099994, 91.04616328999998, 113.67886007599998, 105.23103785, 90.87809797299997, 108.39937686400003, 106.41985148100002, 93.3936731330001, 122.62904189200003, 154.02144043199985, 97.40806131, 90.71003265600007, 148.997106444, 81.83274246099995, 95.36537718000011, 125.73687709799992, 94.7907858750001, 99.34529152000005, 136.10911024999996, 85.74078106800005, 100.74024789999999, 147.77799230699998, 87.07016756399992, 90.87809797299997, 152.98535734799987, 95.94710062999991, 85.7742251279999, 154.313662863, 92.27073851399996, 96.21794077999982, 148.70678510999994, 98.59782560000008, 88.52934668099999, 158.07882204600003, 96.08243372999993, 79.216418406, 143.75469633299997, 94.82464665000009, 93.494903109, 159.22325529399996, 90.97897170900012, 93.42747423800006, 117.77423413200006, 94.52042061000009, 85.80766918800009, 134.13081808000004, 94.58814215999996, 89.55288660800011, 141.567170174, 128.14325915099994, 85.74078106800005, 141.63899163299993, 129.54071185199996, 93.4612753429999, 102.00334228300005, 110.26463239899988, 91.18054645200004, 107.00352929999997, 111.55622108399984, 89.31804511999997, 121.26628470000003, 147.995423683, 84.415919831, 117.49257344699993, 143.79063308700017, 85.674064456, 153.09478609999985, 141.20769361700002, 95.19642059500006, 92.67477290400006, 125.7015881430001, 94.68937719500013, 95.43292508500019, 143.8267550820001, 94.68937719500013, 102.00334228300005, 147.596861546, 88.36187489399993, 88.29492060299992, 151.54368582400014, 89.45219099200006, 85.80766918800009, 154.02144043199985, 93.42747423800006, 91.01248113500003, 151.50739385600002, 88.3954380990001, 93.15758541499997, 150.361288017, 99.71921116500005, 89.65358222399993, 159.22325529399996, 99.82133232499996, 89.55288660800011, 144.90579991800007, 88.22779419300002, 96.08243372999993, 125.00793558400005, 95.81159358000002, 95.81159358000002, 127.310649926, 88.26135739799997, 92.16968665799993, 133.52593288000003, 116.622372069, 94.75709874500001, 94.65569006500004, 120.39163093199988, 83.0576809260001, 99.31125232000011, 132.30533474999993, 93.360045367, 107.00352929999997, 146.341751596, 88.32831168900009, 120.00838006700008, 147.63316216099997, 85.64062039600003, 100.16161961500006, 154.05785093400004, 93.494903109, 95.02746401000013, 142.4991633520001, 95.9808469300001, 84.74908086899995, 147.34331571200005, 90.84441581800002, 97.84892646000003, 148.88821263599993, 89.61995954400004, 93.42747423800006, 143.862877077, 93.15758541499997, 92.10220339800003, 158.07882204600003, 92.16968665799993, 83.22413557800007, 141.567170174, 85.64062039600003, 90.84441581800002, 142.75123111999994, 88.26135739799997, 90.87809797299997, 141.27969970699996, 115.67414091299986, 92.20325525400006, 150.25221608900006, 115.43098713899985, 94.68937719500013, 120.07836283699999, 107.64276459199993, 88.86446237399991, 114.79846341000007, 103.69979815299996, 94.7907858750001, 118.61116686799994, 133.45464088000017, 90.84441581800002, 123.64529695300007, 125.77216605299998, 89.4187407359999, 91.55035924100002, 138.62475414699998, 84.21595472700005, 91.516849815, 133.41917767999996, 90.87809797299997, 87.50485698399996, 147.66927661900002, 94.7907858750001, 89.15010414400001, 147.524446473, 88.12744881599997, 88.26135739799997, 142.60716597600003, 95.9808469300001, 95.94710062999991, 156.75051622599995, 95.94710062999991, 86.90299254199999, 146.30551045599998, 93.4612753429999, 85.40702650000003, 151.58016486399993, 89.48581367200006, 103.66552085800004, 143.68263758400008, 101.18511854200005, 95.94710062999991, 121.71797371199989, 99.8552561350001, 84.38253524599997, 125.07839454399993, 98.49588256000004, 97.20453147, 125.11344336000002, 99.88935480999999, 89.38511805600001, 130.14256600800002, 132.12776711499998, 89.48581367200006, 87.99336811499995, 136.07334530000003, 97.4420410350001, 88.99837095600003, 125.73687709799992, 80.34225739200008, 100.60402806500008, 156.71379909100006, 88.16083990200002, 97.81512098999997, 148.88821263599993, 99.8552561350001, 85.674064456, 139.91622388200005, 94.31760324999993, 88.29492060299992, 148.92457272599995, 92.10220339800003, 91.93384131599998, 149.25125415000002, 94.55428138500008, 93.3936731330001, 138.73222241099995, 89.45219099200006, 94.65569006500004, 147.4520314, 114.97913530199992, 85.60734784400006, 146.19697288800012, 112.74390624099999, 90.81073366300006, 116.19543975299985, 95.9808469300001, 81.66675547199986, 135.28077721500006, 95.9808469300001, 84.24933931199996, 130.10709862800002, 136.07334530000003, 89.4187407359999, 140.382752988, 135.96623386, 89.586509288, 97.81512098999997, 120.56652573600002, 87.89285061900011, 101.76475938099998, 119.2400051410001, 98.52992175999998, 101.96935910899992, 141.10005374399998, 92.03489317200001, 99.68511249000017, 152.87592859599988], \"power_mean\": 110.46181220085828, \"energy_millijoules\": 14178.287335752968, \"energy_joules\": 14.178287335752968, \"coremark_score\": 2337.595549, \"coremarks_per_mhz\": 7.791985163333334, \"ulpmark_cm_score\": 21.15911413669117}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [689.5070993419998, 651.7823178880001, 647.3252931039999, 686.9213099519999, 641.114171665, 650.032289028, 686.763637248, 646.73126802, 649.9428213960001, 703.769625895, 673.674319792, 640.23398964, 713.9906756549999, 660.92497968, 644.2894700759999, 706.1976457200001, 643.7274591299999, 645.493550728, 698.469599925], \"power_mean\": 667.4153433623158, \"energy_millijoules\": 3337.076716811579, \"energy_joules\": 3.337076716811579}}, \"652800\": {\"active\": {\"elapsed_sec\": 58.973059353, \"elapsed_ns\": 58973059353, \"power_samples\": [151.1431646719999, 145.97989775199994, 176.39904111500005, 145.943842464, 148.23503625, 183.85160083400012, 147.3070150970001, 152.32897221400003, 191.4517508969999, 174.469895296, 148.56153121199986, 161.4413971680001, 184.687729224, 146.01613889200007, 154.49627842200005, 179.63363801599996, 158.74533070400003, 168.68019743999992, 207.58278528000005, 149.92518707200009, 166.166030052, 219.48028022100016, 145.90760132399998, 149.888767507, 205.43030337000005, 136.97154069500004, 151.28889376000006, 205.43030337000005, 145.90760132399998, 156.38409804800006, 207.58278528000005, 153.61961112899996, 155.42232935599998, 208.01205578000008, 152.474752298, 160.261137664, 213.0619879169999, 172.87537822000002, 157.56489249600008, 207.81696928000008, 153.8022266879999, 145.943842464, 188.106876338, 161.3676762220001, 145.97989775199994, 177.6533167199999, 162.621300432, 156.31066377799993, 177.54050193599994, 198.66283721599996, 153.7290303179999, 190.275115604, 182.06830668899988, 157.4915278740001, 157.080405562, 196.12059660600005, 153.14458545599996, 160.92393679099996, 192.35993659400003, 156.237417801, 160.81343873499998, 207.85606678, 149.74346278099995, 172.36943751, 205.2358104, 153.65602163099993, 155.12963204000005, 198.6241562360001, 129.222051084, 142.35528314400005, 206.68214154999987, 154.76380739199988, 148.779318828, 202.68927951700005, 148.52535758400006, 158.89229723799986, 219.4406470560001, 149.67062365099991, 148.48899749399982, 202.7279396429999, 158.63501135199988, 151.07039366399988, 202.61156070699985, 157.4179746540001, 145.7990637559999, 204.45018101000005, 153.76562850300002, 148.38010368599987, 197.91214667099996, 147.12588433600013, 148.34393005799996, 190.19878291199996, 188.445583456, 156.0174915770001, 160.00324579699998, 183.2075266180001, 139.2705299039999, 160.73983643400004, 172.95016736000002, 147.16218495100009, 153.24056618399993, 187.11685870099996, 152.25589479399991, 152.94881863800003, 207.77787177999994, 143.24991460800015, 150.9976226560001, 211.614588184, 145.7990637559999, 157.63825711800007, 238.32232460800003, 161.29376576200002, 142.0673377920001, 199.68265135800016, 159.892747741, 155.09316236799998, 215.48597056900007, 148.52535758400006, 149.74346278099995, 216.65809194000008, 164.68354028700003, 145.87154603600004, 214.19550977400013, 165.16532565700004, 154.76380739199988, 184.27021923699988, 148.23503625, 148.56153121199986, 191.528202234, 151.034101696, 151.034101696, 188.86505245799992, 175.23525750099998, 156.16417182400016, 190.12225399200008, 184.38410332500007, 143.24991460800015, 167.0912189500001, 183.16955972799985, 157.30783342199993, 152.91246730599983, 175.42292098400003, 156.054208712, 156.860479338, 201.01123822399995, 152.21954346200005, 164.57788424399996, 204.88560311999993, 139.37817628799996, 154.836934724, 210.24146346999999, 148.88821263599993, 157.344610032, 207.73897478000015, 148.16231606999997, 154.94671971599996, 205.04131742999994, 145.87154603600004, 152.474752298, 211.53603594399988, 150.9976226560001, 158.7084946189999, 214.19550977400013, 160.00324579699998, 145.6544709000001, 220.49347776000002, 152.21954346200005, 156.054208712, 181.26442703700013, 158.7084946189999, 154.32466742400004, 187.68806034099987, 156.090925847, 150.96114361599996, 197.64219225399995, 183.0938206500001, 149.59797128799994, 154.5808950679999, 180.848878206, 149.634390853, 155.60542966800017, 183.16955972799985, 162.54746084099997, 155.45898701600004, 185.86442457600015, 153.58301294399996, 163.286236389, 207.73897478000015, 152.14646604199993, 146.83603788699997, 210.2806799199999, 154.72714973200004, 153.61961112899996, 201.28243978599994, 152.25589479399991, 156.640553114, 203.7510347550001, 152.0735759999999, 150.28863565400002, 208.87300847999995, 139.2705299039999, 150.706351552, 209.0294355750001, 150.96114361599996, 149.67062365099991, 211.57531206399983, 157.344610032, 148.30756996799983, 197.025436528, 153.436807887, 153.510004257, 202.49518177099992, 156.0174915770001, 148.16231606999997, 210.2806799199999, 171.24861226500002, 157.344610032, 207.62188278000008, 166.3116850050002, 149.52531892500008, 178.68148756699998, 207.66077977999998, 152.03703728999994, 181.30227478200004, 153.510004257, 150.74264352, 174.95708727600004, 204.21706573000006, 150.74264352, 177.27739622399986, 189.66406161200007, 155.94424559999993, 149.10600025199983], \"power_mean\": 169.3057627106223, \"energy_millijoules\": 9984.478793138464, \"energy_joules\": 9.984478793138463, \"coremark_score\": 5088.367991, \"coremarks_per_mhz\": 7.794681358762255, \"ulpmark_cm_score\": 30.046636005293145}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [656.8056282269999, 705.970701108, 651.602670144, 651.7823178880001, 706.0355186220002, 652.9847948759999, 641.5561633049999, 710.5842654539999, 643.993722834, 663.3622040850001, 694.2681393719998, 649.048298274, 655.633976008, 699.5052558, 647.637165305, 650.4001931559999, 705.74358987, 649.167639516, 660.439370064], \"power_mean\": 668.2379796793684, \"energy_millijoules\": 3341.189898396842, \"energy_joules\": 3.341189898396842}}, \"806400\": {\"active\": {\"elapsed_sec\": 47.741576336, \"elapsed_ns\": 47741576336, \"power_samples\": [238.64590657600013, 180.39567572099998, 184.23219287199993, 243.893032135, 177.70247370699997, 178.11671652799998, 230.779324965, 173.9451529459999, 173.13723633999996, 233.2835135040001, 170.18253303000006, 186.81228303199998, 222.95469355199998, 175.19764765600007, 189.47293553999998, 250.1036202009999, 179.03018841200014, 177.89073071999997, 237.31530604500017, 182.90437560400005, 167.49040031999994, 218.189641306, 181.72772314500003, 168.40795616000014, 223.2329663580001, 175.23525750099998, 174.0576114900001, 224.5630937510001, 207.50479078, 176.60050751999995, 176.2245870239999, 208.75573836, 173.90760257599993, 186.32067340799995, 212.669438851, 173.9451529459999, 192.89612330600005, 220.29542166399995, 175.16023068200013, 203.11593585599985, 235.94420991000004, 171.24861226500002, 182.82844182400004, 237.11339005800016, 172.76309837999997, 172.76309837999997, 248.85430725000003, 177.66474491199995, 176.45021659200006, 240.9469324249999, 181.42504701600012, 172.68811698000002, 224.28460969699995, 184.1943615140002, 180.546678519, 235.9040103939999, 191.67021624200004, 171.24861226500002, 243.2826207349999, 194.364666264, 180.24447883200014, 209.49831525000002, 184.23219287199993, 173.90760257599993, 215.84025214999997, 173.90760257599993, 181.652102712, 213.2975980450001, 226.54974221199996, 176.45021659200006, 223.3918043939999, 218.7681027330001, 174.02006112000004, 183.81382864599993, 201.05003815399994, 184.00442469600011, 187.72601003900002, 207.42679628000008, 176.45021659200006, 174.694812384, 229.44925776799994, 183.01788686999998, 191.528202234, 228.11910352799998, 175.0850109920001, 182.94214779200001, 235.78299741799992, 169.22729544999993, 176.67565298399995, 233.1628567680001, 172.5385387, 178.04145241900005, 235.86360366400004, 175.19764765600007, 184.45996104799997, 224.20507203400007, 181.46295443099996, 176.41254727199987, 233.0422000320001, 191.82355304399982, 176.56283819999987, 242.1149547, 184.1943615140002, 175.19764765600007, 205.58601767999983, 195.50459289600008, 173.757786228, 223.43161598400013, 190.64852052599997, 168.70607167000014, 213.14045738599998, 229.36924513600002, 189.28200569600006, 176.03662677599993, 225.29983850400004, 177.70247370699997, 177.08924280000008, 229.36924513600002, 180.28232657700005, 184.53581877099998, 229.24912334399994, 209.81088696000006, 180.8112245520001, 242.03375484000003, 166.08890652500008, 173.49531877000004, 230.53893113399988, 186.85042834699982, 181.614389694, 230.5788937760001, 175.00998417300002, 180.39567572099998, 204.5353958400001, 181.614389694, 175.122620837, 210.55459173999998, 186.69804270399993, 168.51970164, 202.9606975150001, 184.11830878400008, 175.0850109920001, 210.71125643000016, 233.24343232800015, 173.83269440200002, 177.43875910400016, 225.29983850400004, 176.45021659200006, 174.58235384, 221.5060477259999, 171.06184005, 170.66740753, 234.33188887200004, 169.84676223000008, 183.39697166400003, 226.62951755400002, 180.24447883200014, 175.16023068200013, 233.08248781200007, 178.615292586, 172.5385387, 231.708260892, 177.70247370699997, 186.507707363, 210.59380819000012, 185.29411353600005, 177.5517520080001, 207.97295827999994, 180.1311296880001, 177.66474491199995, 227.22834531400008, 213.369627486, 178.84144084800005, 202.8054591739999, 214.97387080800002, 171.06184005, 171.99589307999997, 213.72357703800003, 174.93495735399995, 192.58964654, 205.98085846499998, 168.51970164, 175.79824795000013, 243.44546678999995, 181.34942658300008, 173.24951618, 230.498762499, 177.5517520080001, 177.47648789899995, 233.08248781200007], \"power_mean\": 195.73115777422223, \"energy_millijoules\": 9344.514010211691, \"energy_joules\": 9.344514010211691, \"coremark_score\": 6285.881909, \"coremarks_per_mhz\": 7.794992446676587, \"ulpmark_cm_score\": 32.10439833170134}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [645.691838564, 680.577483594, 663.1184479499999, 654.1310831010001, 696.9805217830001, 690.26074947, 647.666826547, 639.4401588300001, 688.93714571, 675.735178608, 646.9986021960001, 683.7070424279999, 640.7016965900001, 665.946924755, 669.5821108899999, 652.7748929699999, 651.90213432, 699.2802245, 639.587142156], \"power_mean\": 664.8958002611579, \"energy_millijoules\": 3324.4790013057896, \"energy_joules\": 3.3244790013057894}}, \"979200\": {\"active\": {\"elapsed_sec\": 39.32245811, \"elapsed_ns\": 39322458110, \"power_samples\": [221.14889026200012, 216.22424826400004, 247.891262763, 272.623235968, 213.52700574000005, 253.01263812800016, 269.04898297600005, 227.51959055099996, 229.84952661599993, 256.14541996800006, 224.82169354899997, 219.4406470560001, 261.100132338, 216.10590883999998, 228.35899087199994, 273.00178009599995, 226.23043576600003, 216.77643136400002, 273.99649881899995, 210.90882652000005, 219.9784912, 285.60787827599995, 219.78043510399993, 222.55739430000006, 275.37021563400003, 231.42707671799997, 212.19821859500007, 266.758148926, 216.027083436, 219.93879856000012, 281.8634382800001, 210.86975181600008, 213.56619878400022, 276.7902752000001, 253.35639474599986, 210.94810264, 280.48928505000015, 263.3037583920001, 219.8993094719999, 241.35254693499996, 245.9026438499999, 223.4090820030001, 238.76727579200008, 227.71942821000005, 214.777002745, 245.22410682999987, 280.44679552499997, 227.67937852500006, 222.04066027800013, 263.80349420000016, 223.64789945899997, 218.80773589800003, 285.82107814400024, 227.63953422299994, 208.63846823999995, 291.84349031599993, 218.6099765670001, 220.41429603199992, 275.37021563400003, 216.027083436, 211.80566952900006, 269.04898297600005, 219.81992419199992, 221.18864237699995, 281.77855848, 213.369627486, 218.57034340200005, 263.470408304, 218.6099765670001, 228.6485143839999, 266.5494034520001, 230.17803139800003, 214.65884144099994, 272.7072848639998, 248.28154266599995, 221.22819063500003, 282.816844028, 236.54790078300005, 221.22819063500003, 238.68643225599988, 244.20540972999993, 217.36001441000008, 245.1018464299999, 223.68756605700003, 223.64789945899997, 248.89530911999987, 267.25358594700003, 214.54068013699987, 256.7647432079999, 265.96478740200007, 217.39958810000007, 223.153343178, 252.0262116770001, 214.3832666190001, 228.35899087199994, 248.07674358199995, 217.16255184400018, 228.47893454400014, 286.7263826930001, 212.00194406200012, 229.64939219199982, 272.665368448, 216.06639482000014, 224.9810069429999, 264.967774203, 222.55739430000006, 214.93461859399997, 284.2335468420001, 223.68756605700003, 211.18335652799988, 280.27727321500015, 226.23043576600003, 217.28106997200018, 267.588096498, 226.15045534599994, 221.10913814699995, 277.826214325, 217.12297815399995, 224.901350246, 284.1057612179999, 205.3962890649999, 212.04127965700002, 259.0558389140001, 224.901350246, 215.71137654799998, 266.46573363200014, 230.09790012099995, 213.369627486, 278.90343644999996, 245.49444556499998, 218.412013989, 229.6568691079999, 237.67516067199995, 232.43912295600023, 233.52482697599999, 239.00888916999997, 213.17305618799992, 247.60508592000008, 247.9949501079999, 217.24149628199996, 237.19411494899998, 268.9235511090001, 215.75089056799993, 212.85850170599997, 271.2920676529999, 217.20212553400006, 219.00549522900008, 274.9906027860002, 251.90288197300004, 218.96586206400002, 277.6145787349999, 223.68756605700003, 223.07392415999993, 278.98829655, 213.33043444200007], \"power_mean\": 238.39520346925806, \"energy_millijoules\": 9374.285402044827, \"energy_joules\": 9.374285402044826, \"coremark_score\": 7632.422531, \"coremarks_per_mhz\": 7.7945491533905225, \"ulpmark_cm_score\": 32.00243934695658}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [647.280007257, 697.763947735, 642.140419968, 643.609069047, 709.1625185700001, 634.534229997, 660.3178896879999, 712.0063193770001, 639.763582572, 656.3831742020001, 700.41111141, 662.478607665, 651.3931836479999, 709.456050402, 653.8004720220001, 639.6165992460001, 671.2747129200001, 652.654838943, 654.8207466639999], \"power_mean\": 665.2035516491053, \"energy_millijoules\": 3326.0177582455262, \"energy_joules\": 3.326017758245526}}, \"1094400\": {\"active\": {\"elapsed_sec\": 35.197473945, \"elapsed_ns\": 35197473945, \"power_samples\": [256.98017800599996, 327.55276580200007, 256.98017800599996, 260.76799621199996, 309.8092913460001, 264.634213422, 253.15061886799992, 304.566856506, 254.44376201599994, 263.3037583920001, 280.87103708999996, 244.04253543000004, 254.36137492800003, 287.32430491799994, 253.19185863799999, 319.86257903599994, 301.21700194999994, 289.6896103040001, 246.583415694, 291.92932005399996, 276.32572101999995, 256.81492924999986, 268.048075361, 271.0400611409999, 247.03294219500015, 282.2031756800001, 268.4209630449999, 247.91315663400007, 275.74961180800005, 308.34552239000004, 253.02711104399998, 293.43355826699997, 304.4364429039998, 255.60881455799995, 263.67856024799994, 300.783475962, 248.628149204, 256.3520024459999, 290.2544741319998, 261.80722361799997, 250.1036202009999, 313.4601799599999, 249.11983248900003, 251.61504227, 305.8120802949999, 254.32007548800004, 252.98587127399992, 307.05696144, 256.7323048719999, 252.94484298999987, 305.24536282500003, 254.19638896000004, 250.61390530800008, 306.0300313219999, 258.269035721, 252.82133516599993, 301.89849285, 251.7795522690002, 250.32648132000008, 312.25940740500005, 272.24469183999986, 249.24280595300002, 280.80167708, 260.8095932220001, 261.93197944999986, 283.539880382, 256.81492924999986, 264.634213422, 280.87103708999996, 296.480889444, 244.0017121799999, 285.77856964, 296.65371994199995, 255.36108526200007, 246.06575543999998, 282.6042376899999, 247.6265640759999, 251.02427000400007, 284.92555105200006, 247.83115289399996, 256.3106435310001, 305.63758507399996, 257.93785092200005, 269.132891086, 313.50399098, 251.49171256600016, 246.42006603599998, 310.8350340989999, 259.267771092, 252.94484298999987, 296.65371994199995, 260.47745709599997, 251.9850313820001, 308.38932114499994, 259.184909424, 248.28154266599995, 309.54659179399994, 257.89658576399984, 259.1433720839999, 309.63408333999996, 249.48875288099987, 251.57407315599994, 316.12526867999986, 256.6082621039999, 241.34303418000002, 285.6506058960001, 257.89658576399984, 261.0171516360002, 299.667761411, 251.656222565, 245.04557421000004, 302.1155526089999, 329.63753608499985, 258.0208066519999, 312.21543003, 282.64662785400003, 247.79036128999985, 267.9645014339999, 281.35372308, 252.40978340999993, 261.4322684640001, 286.3847441959998, 256.7323048719999, 251.06539082400002, 312.1277008049999, 255.402444177, 255.278579529, 306.8824529279999, 266.9190753959999, 244.04253543000004, 314.66048908999994, 254.07270243200003, 247.83115289399996, 323.6833931059999, 251.45074345199998, 254.19638896000004, 318.56991232999997, 259.1433720839999, 248.751122668], \"power_mean\": 272.24123121467625, \"energy_millijoules\": 9582.203642433287, \"energy_joules\": 9.582203642433287, \"coremark_score\": 8527.330093, \"coremarks_per_mhz\": 7.7917855381944445, \"ulpmark_cm_score\": 31.308038442378432}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [718.104623922, 649.9221848139999, 668.316755875, 702.8326372349999, 650.974056848, 652.8648949620001, 720.4917634720001, 639.6459052740001, 648.023984595, 706.4830411659999, 651.213535904, 648.48177207, 701.5414047900001, 651.4231762080001, 651.273367216, 707.969189544, 648.630833724, 643.461195426, 726.02080528], \"power_mean\": 673.0355330697369, \"energy_millijoules\": 3365.177665348684, \"energy_joules\": 3.3651776653486842}}, \"1209600\": {\"active\": {\"elapsed_sec\": 31.850594467, \"elapsed_ns\": 31850594467, \"power_samples\": [291.1549914509999, 317.19326621999994, 273.3227257530001, 284.61690371400005, 314.52842625000005, 274.65324136799995, 293.5623703680002, 341.32624080000005, 279.85303165000005, 281.881201336, 332.661598164, 282.5192388559999, 278.43757626, 342.704667836, 278.56464882, 282.34902268200005, 342.52327846499986, 279.68350934, 283.67995501199994, 335.152372476, 272.034461568, 278.52243636000003, 345.23507817100005, 280.92910587999995, 268.211623068, 339.01698660600005, 301.811713563, 275.86116684, 302.752340752, 295.106499061, 273.1541743019999, 299.88445011300007, 301.46437333200004, 268.12771495800007, 311.4487558740001, 337.728781896, 274.56873850800014, 304.87175142800004, 336.350592539, 279.64101981500005, 276.32572101999995, 328.3498062599999, 271.57186854400004, 288.100832772, 323.5057982679999, 283.5521693879999, 285.56536977200005, 336.57566981800005, 278.3105036999999, 279.11536910999996, 346.5229861160002, 275.77676162, 273.1541743019999, 337.503407852, 279.03050900999995, 282.2640238480001, 333.54993666000007, 278.26829123999994, 279.59853029, 339.98888316, 270.536263876, 277.8024310500001, 337.3681370999999, 276.937953245, 283.2539299949999, 324.57153936, 287.245439454, 283.50950124300005, 338.88153773399983, 278.22586119000016, 279.59853029, 315.05667760999984, 277.02247710999995, 286.8178526580001, 311.05417218599996, 278.3953637999999, 282.178806508, 326.35364695199996, 314.35249322000004, 272.943647265, 281.881201336, 310.48436811600004, 287.28828602399994, 289.3899280820002, 310.48436811600004, 283.3392662850001, 289.51842618600006, 304.04453101600006, 278.18364872999996, 293.2183558889999, 343.90193835, 278.3105036999999, 271.65591743999994, 338.746320795, 274.48445232200015, 278.7763638900001, 323.37248800399993, 280.88655687999983, 285.30944228400017, 339.76291558599996, 277.02247710999995, 280.192294165, 331.0596454780001, 275.52332898, 281.92381000600005, 337.32320126800005, 280.71679728000004, 285.914963835, 343.947170226, 279.55625866000014, 284.754859688, 319.1102580319998, 270.494190871, 279.55625866000014, 334.92759196200006, 279.34424682500014, 272.943647265, 335.0625064740001, 303.69623945800004, 284.6696235640002, 332.39248278800005, 305.1580032149999, 275.6500453, 300.82669489399996, 298.715132025, 275.6079511799999], \"power_mean\": 297.49964971659523, \"energy_millijoules\": 9475.540697197826, \"energy_joules\": 9.475540697197827, \"coremark_score\": 9423.886411, \"coremarks_per_mhz\": 7.790911384755291, \"ulpmark_cm_score\": 31.660462403872966}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [637.528731768, 644.5746811400002, 711.548276053, 649.74289331, 664.8456696, 676.559527488, 649.5637553089999, 649.6831806429999, 684.9987497579999, 653.469860943, 643.2542027520001, 697.6677074549999, 675.082705192, 658.39032336, 697.763947735, 697.1224007999999, 643.2245672370001, 650.554930048, 684.400624144], \"power_mean\": 666.8408807755263, \"energy_millijoules\": 3334.2044038776316, \"energy_joules\": 3.3342044038776315}}, \"1324800\": {\"active\": {\"elapsed_sec\": 29.067768738, \"elapsed_ns\": 29067768738, \"power_samples\": [322.2618781320001, 373.4925162600001, 326.839077484, 304.26218527800006, 368.1509931919999, 311.5571225550001, 326.17534787400007, 379.88855371499994, 312.6688716399999, 321.28397536499995, 378.459849794, 319.1102580319998, 312.75671951000004, 375.8805249029999, 310.9665619949999, 316.486955545, 371.83125248400006, 308.846209598, 319.1986995159999, 360.5599401449999, 314.04427121499987, 313.1964105200001, 373.632777292, 319.1545924520001, 307.383746652, 365.7615582000001, 345.00792256400007, 314.132463865, 374.4994272559999, 333.2354748409999, 317.86287863000007, 340.666785882, 323.01707005699996, 329.01133926, 348.31203578999987, 330.65650677400004, 322.7949623740001, 349.60482153, 360.19074274800005, 316.5753860950001, 314.80308551999985, 371.87778687599996, 313.9563046999999, 312.21543003, 361.570356402, 325.6406795219999, 321.461095623, 355.1334884770001, 306.3584787840001, 316.2575096400001, 374.546320466, 320.44208498700004, 313.8242418599999, 374.546320466, 309.95825653199995, 307.514918308, 380.89362286799997, 316.3987517400001, 321.77380292600003, 371.92456113599985, 306.14023099200017, 323.06135463099986, 382.039730306, 312.44913904999987, 325.507012434, 377.078514468, 320.35329719699996, 316.619374625, 371.5043124, 324.25999027199987, 321.68512415199996, 348.7838059050001, 324.082158144, 322.7949623740001, 347.15999301599993, 320.26473706799993, 312.6688716399999, 344.49181796999994, 345.658526844, 321.55199200799996, 357.0186994479999, 349.88848272000007, 322.92804436699987, 327.86514768300015, 352.4173463400001, 329.10096008999983, 313.50399098, 347.3097523319999, 320.39769109199995, 334.22338790699996, 369.7646521880001, 323.10586747600007, 331.5522938600001, 378.0371689, 312.4931759000001, 319.1986995159999, 384.42910747999997, 313.50399098, 316.88421278500016, 367.778944928, 318.8890406439999, 306.57672657600006, 373.07173316399997, 306.0964917119999, 310.8350340989999, 367.918492896, 314.97925584000006, 320.30913096300003, 370.4507480620001, 314.97925584000006, 320.30913096300003, 365.34398301600004, 312.53698692, 312.53698692, 361.61665447199994], \"power_mean\": 335.01323459506085, \"energy_millijoules\": 9738.08722737857, \"energy_joules\": 9.73808722737857, \"coremark_score\": 10326.311442, \"coremarks_per_mhz\": 7.794619144021739, \"ulpmark_cm_score\": 30.806871308007175}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [650.9440642879998, 642.958303533, 672.073206246, 708.869154279, 646.982477479, 682.411099992, 681.7525535080001, 652.2049830960001, 660.3178896879999, 676.746304704, 646.952663344, 651.4830075199999, 665.02923832, 639.2049552960001, 643.845697236, 702.47719912, 648.4221780480001, 679.577752578, 701.2833943200001], \"power_mean\": 665.9755853997368, \"energy_millijoules\": 3329.877926998684, \"energy_joules\": 3.329877926998684}}, \"1555200\": {\"active\": {\"elapsed_sec\": 24.767917908, \"elapsed_ns\": 24767917908, \"power_samples\": [438.1127050660001, 411.07968406400016, 425.18103399999984, 431.67607063799994, 408.70022008800004, 440.2961034819997, 461.8558586350001, 407.26867472900005, 443.0753610600001, 473.7951107099999, 409.79320077399996, 410.520098911, 460.97694158000024, 401.925722928, 406.56146414400007, 455.9800618260002, 421.23295266, 408.1388654680003, 470.8638542960001, 412.07459601000016, 422.26193664999994, 481.5676248100002, 409.64777134200006, 405.8372368920001, 467.51400572399973, 411.83170310100024, 409.79320077399996, 466.227760029, 404.3536169, 407.1236015370001, 468.7492175849999, 413.4621661409998, 405.9821319639999, 467.46303105999993, 409.696330827, 417.1257388140001, 475.1327727500001, 419.38950920599984, 410.8854575519998, 478.9435976249998, 414.60226934000013, 401.925722928, 452.9279650320001, 401.8295652400001, 411.66211427200017, 453.86191853399976, 413.36493987000006, 418.55842407499983, 458.7090916399999, 435.19200038500014, 408.40996618199995, 473.7951107099999, 444.34893161699995, 408.3614661720002, 419.6338869130001, 434.00109638499987, 419.70197204500016, 431.130738962, 419.8976118149998, 403.06748985000024, 440.096902806, 459.89407510500007, 408.21621486000015, 409.1631725839999, 464.68644627599986, 409.50234191000015, 410.374918502, 453.407451486, 408.3614661720002, 419.6338869130001, 450.583039449, 404.30529550999984, 406.7063592159999, 475.08117828499974, 404.59472824600005, 398.8251805259998, 464.63558995200003, 411.9774887730001, 417.2722375500001, 468.69792068999993, 408.1194635579999, 415.98605102500017, 477.29211512099994, 417.02815660800013, 404.40193829, 471.120407152, 418.60714892099975, 410.73985000000005, 473.7951107099999, 411.9774887730001, 413.36493987000006, 463.6552686389999, 423.70738717999996, 412.26906011699987, 442.562645654, 416.8816578720001, 404.40193829, 445.2002148839998], \"power_mean\": 429.53271440606125, \"energy_millijoules\": 10638.631009209734, \"energy_joules\": 10.638631009209734, \"coremark_score\": 12120.232708, \"coremarks_per_mhz\": 7.793359508744856, \"ulpmark_cm_score\": 28.199116948439478}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [657.10010016, 708.869154279, 656.737239936, 648.1836487620001, 712.679069453, 648.153775152, 632.6604976639999, 683.8338766720001, 642.958303533, 650.465106176, 682.09753712, 665.98267449, 644.3080353580001, 693.5664094939999, 676.1237672880001, 639.2049552960001, 697.2507761049999, 683.047245322, 655.6892643980001], \"power_mean\": 667.3111282451579, \"energy_millijoules\": 3336.5556412257893, \"energy_joules\": 3.336555641225789}}, \"1708800\": {\"active\": {\"elapsed_sec\": 22.542900147, \"elapsed_ns\": 22542900147, \"power_samples\": [512.238807264, 487.89836529900015, 488.52330236399996, 513.311452006, 486.09185759600007, 500.2134564899999, 535.12579322, 491.33825193599966, 512.557908243, 540.2180297439999, 479.5056042079999, 488.6626867360002, 538.9324962239999, 476.7243283439999, 484.8585136810001, 536.252527144, 477.0340784399999, 482.3869875239999, 541.1213017360002, 473.0236715519999, 498.7925833149999, 542.406419541, 470.5558854000002, 487.4294617710001, 538.8233562840002, 476.98236502500015, 479.71240283200007, 516.370622394, 492.41855838000004, 474.51469751800016, 511.37818402799996, 493.75634148000006, 488.0370374959999, 522.4805610030002, 480.7389489279998, 485.8317416140002, 519.904684596, 503.93774422600006, 496.27444615499996, 493.12757204000025, 511.60005843199986, 485.936001874, 494.75171365000017, 507.74452659199994, 483.46506971999986, 502.369413924, 543.6957508470001, 492.3139718399999, 517.7606665320003, 538.605636096, 481.92048960599993, 478.7888093759999, 525.5837882080001, 490.97221283400006, 480.2296651999999, 532.0129971199998, 483.15353725600005, 481.36058889599997, 539.6182264530001, 480.8424668849999, 486.976465802, 541.0122043520001, 484.44274952800004, 476.827489977, 529.38884535, 477.7552061970001, 483.15353725600005, 535.872207712, 480.687056893, 489.7917121390002, 530.8361457949999, 483.04978200900007, 477.0340784399999, 556.3300985940001, 478.1168212829999, 477.85848686399993, 546.2659864570002, 496.747091955, 490.60644228599983, 543.6412238489999, 511.44037122400016, 485.7277486879999, 509.93248841499997, 497.24428864000004, 483.67258021400005, 524.0351183200004, 494.6744092700002, 480.22109303000013, 516.367638045], \"power_mean\": 501.59469655844947, \"energy_millijoules\": 11307.399158781891, \"energy_joules\": 11.307399158781891, \"coremark_score\": 13316.761364, \"coremarks_per_mhz\": 7.793048551029963, \"ulpmark_cm_score\": 26.53130006178344}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [640.289221515, 703.4116874399999, 680.117762106, 649.235105386, 717.411154023, 660.91421875, 645.51361578, 674.501621033, 649.235105386, 642.3075380189999, 673.117356804, 672.18897916, 654.5196537599999, 688.3989103879999, 690.66705456, 653.319611256, 697.3789866149998, 684.21170832, 653.079180873], \"power_mean\": 669.9904458512631, \"energy_millijoules\": 3349.952229256315, \"energy_joules\": 3.3499522292563153}}, \"1843200\": {\"active\": {\"elapsed_sec\": 20.903737909, \"elapsed_ns\": 20903737909, \"power_samples\": [611.5664295960001, 552.254841912, 559.6799588719999, 616.5248954080001, 551.9792853929997, 547.2217492860001, 620.378824168, 546.837689802, 545.8823423830003, 614.8299520720001, 554.6033212380001, 552.1999005299998, 607.88911701, 557.065418304, 554.7690680299999, 611.034934296, 558.0726636669998, 544.3784511999999, 608.4663609359999, 567.1763933600001, 548.012226314, 609.8085501359998, 560.6962846019998, 562.258265604, 581.323857753, 555.5558770439999, 555.8323238579998, 585.2369921279998, 559.467531808, 560.8629225780002, 583.8381530779999, 597.8974000469999, 554.437574446, 587.6420713199999, 601.86837544, 550.474561696, 558.2833218719999, 589.0188694560001, 546.7827033120001, 553.0817946719998, 581.3666011939998, 550.4196794839999, 550.5613356159998, 614.5976885480001, 557.176343664, 559.4026328259998, 608.4663609359999, 557.0102400480001, 564.8311688849998, 611.9719847940002, 554.1614243970001, 552.3100664969999, 608.1777389729997, 555.5558770439999, 560.1333712320001, 626.3377447409999, 552.9877782639998, 547.737561063, 610.9193075469999, 556.5673918799997, 546.5083348260001, 614.7718116519999, 552.7669255319998, 565.8922847999999, 610.688054049, 555.5558770439999, 566.0040432000002, 602.2706035550001, 552.7669255319998, 555.1686242100001, 612.3192209759999, 551.5383383219997, 555.445355142, 617.169878181, 577.2848066339999, 556.6780328159997, 562.7076406790001, 566.8416219049999, 552.7669255319998, 591.4411277100002, 573.264594055, 552.9324942039999], \"power_mean\": 572.6666716197072, \"energy_millijoules\": 11970.87401275773, \"energy_joules\": 11.97087401275773, \"coremark_score\": 14362.31329, \"coremarks_per_mhz\": 7.79205365125868, \"ulpmark_cm_score\": 25.06082677674836}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [650.3154509919999, 669.9182952159999, 664.63161087, 641.431808384, 670.349897066, 663.31121538, 659.194936944, 663.9523022000002, 704.2517872920001, 646.595505296, 671.70250407, 686.5077122640001, 653.139249864, 661.0662499999999, 690.4446821820001, 647.7363106020001, 645.92941808, 680.023839138, 645.3353929959999], \"power_mean\": 663.9914825703158, \"energy_millijoules\": 3319.957412851579, \"energy_joules\": 3.319957412851579}}, \"1939200\": {\"active\": {\"elapsed_sec\": 19.886378326, \"elapsed_ns\": 19886378326, \"power_samples\": [609.4617288879998, 659.5668041939999, 614.3075827600002, 611.855941854, 659.827839922, 605.43267366, 623.477223582, 665.7452913549997, 615.59548474, 613.0238896099999, 663.1173842699999, 685.6841764679999, 606.5434316550001, 671.8644836190002, 625.927914855, 614.3657231799999, 647.4328015340001, 617.929893952, 617.8718739840002, 635.74417353, 618.0465320320001, 606.42816123, 650.8093752620003, 647.5855794109999, 618.1628710400001, 656.0702775419999, 644.8992928110002, 614.24944234, 619.2105202559998, 649.6751949640003, 608.594972704, 626.8062507120002, 648.5112833880002, 621.492580344, 626.8649267970001, 667.7721791819998, 611.2769173380001, 616.5302180340001, 677.92021414, 607.369419498, 613.0238896099999, 674.25341528, 633.222013188, 615.8858882659998, 671.5610156220001, 612.502054658, 608.6395934399999, 671.4396908010002, 607.427262543, 602.825241525, 676.81997076, 612.675999642, 608.7104808079999, 678.1640510100002, 610.0516610679998, 613.9593365520001, 659.3465042709998, 611.0451290039999, 607.600495047, 669.2975725089999, 615.1889794959999, 618.8055980330001, 671.6218339769999, 617.5808769279998, 612.675999642, 665.0202833870002, 634.2695857560001, 608.594972704, 637.7088008349998, 626.6252155040003, 604.7988948400001, 645.4344955229998, 631.644412861, 621.434382672, 639.42462681, 673.4624777800001, 617.5225578880003, 653.262189184], \"power_mean\": 632.7766663597564, \"energy_millijoules\": 12583.636183095192, \"energy_joules\": 12.583636183095193, \"coremark_score\": 15097.378089, \"coremarks_per_mhz\": 7.78536411355198, \"ulpmark_cm_score\": 23.840485821023563}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [703.0555963200001, 662.79216564, 678.005819949, 692.673432823, 646.297975518, 645.5432178519999, 708.086402727, 645.3353929959999, 654.640183756, 696.8017097299999, 657.602634381, 643.0766936160002, 701.86327565, 650.2256271200001, 648.332710416, 722.2742496059999, 636.0923847040001, 648.936235045, 711.0244856880001], \"power_mean\": 671.1926417651052, \"energy_millijoules\": 3355.963208825526, \"energy_joules\": 3.3559632088255262}}, \"2169600\": {\"active\": {\"elapsed_sec\": 17.756459107, \"elapsed_ns\": 17756459107, \"power_samples\": [847.4329988000001, 794.3709941179999, 790.4597353280002, 849.444926602, 798.2864695640002, 803.0830203719999, 850.726482617, 805.9807197360002, 796.8050073359999, 858.0729027800002, 804.766112011, 787.63212975, 837.578969256, 794.3044033730001, 805.1769240060001, 828.8021195119999, 796.6719296579998, 795.4572021780001, 836.0229529130003, 828.6553341749999, 800.3826297300001, 804.975889014, 823.4578987800002, 783.91586298, 809.7524164480002, 823.4578987800002, 810.5067218790001, 823.5997533649999, 815.631284299, 796.53885198, 821.3055183000002, 855.2329512199998, 791.3431423349999, 797.4201798539999, 860.430923306, 793.506680397, 796.871717226, 850.2430829389999, 796.4057743019999, 794.3044033730001, 843.7642678179999, 802.6816628679998, 799.1013704799999, 862.853834847, 803.7618276510001, 807.9402402080001, 855.3023985199997, 800.1823078019999, 804.096818393, 866.5567567620002, 796.0725669539999, 808.8224414019998, 839.509330124, 793.6398618869999, 805.1769240060001, 833.7163744800001, 806.3235147209999, 810.0358612620001, 857.93412703, 813.338731614, 805.0426711860001, 861.5031274919999, 813.743296446, 799.9150975590002, 821.8434077799999, 823.657145856, 790.8123906179998, 829.404108246, 816.5113468850001, 811.1146599760001], \"power_mean\": 816.3339055066429, \"energy_millijoules\": 14495.199610786307, \"energy_joules\": 14.495199610786306, \"coremark_score\": 16909.982526, \"coremarks_per_mhz\": 7.794055367809735, \"ulpmark_cm_score\": 20.69650698544097}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [643.596573854, 652.0849290689999, 673.2613034469998, 649.477197392, 664.8763167750001, 685.8758343879999, 644.8898360359999, 676.403933112, 706.862588932, 637.2646072560001, 645.8218667159999, 708.119073222, 655.296885999, 651.7850251709999, 725.7777296840001, 649.626852576, 655.387422935, 711.8922068059999, 657.99655669], \"power_mean\": 668.2261442136842, \"energy_millijoules\": 3341.130721068421, \"energy_joules\": 3.3411307210684207}}, \"2208000\": {\"active\": {\"elapsed_sec\": 17.460583223, \"elapsed_ns\": 17460583223, \"power_samples\": [804.5544354679997, 841.545363417, 805.5118675800003, 811.9859773170002, 863.9950696919999, 814.4173402500002, 810.5067218790001, 868.26133604, 821.634484345, 806.591913718, 867.911842224, 799.9150975590002, 811.653014524, 867.2825378400001, 819.4111255499998, 811.3840101320001, 856.6529864250002, 819.0729156149999, 803.8288945859998, 874.2502169460003, 811.2495079360002, 810.1702448130001, 884.3598958619999, 821.7020361149999, 813.5410140300002, 837.81726717, 822.5761684799999, 815.1587608219999, 832.7079185959998, 820.21836688, 812.6647944969999, 855.7183700400002, 851.9790465299999, 818.5991436300002, 841.545363417, 844.2880815300001, 805.9214330399999, 814.146661955, 845.7104153360002, 812.5301736560003, 820.2905409000003, 835.4576441480002, 810.7782316040001, 822.99004641, 864.8574492000001, 821.4990326000003, 816.3059216329999, 873.7589190300001, 820.08268588, 812.3952067460001, 877.459528168, 820.6177257449998, 811.2495079360002, 867.0030864640001, 816.24104557, 808.8224414019998, 877.3890097330001, 809.901477711, 811.8549406999999, 865.9979712600001, 802.0799702399999, 805.7202199280001, 868.6330084050002, 820.0151932799996, 809.76709416, 879.949509743, 815.8357670899999, 809.63236515, 850.1046645289999], \"power_mean\": 830.140029287058, \"energy_millijoules\": 14494.729068110335, \"energy_joules\": 14.494729068110335, \"coremark_score\": 17197.890392, \"coremarks_per_mhz\": 7.788899634057971, \"ulpmark_cm_score\": 20.69717885655594}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [687.1958918199999, 654.753819412, 638.963549329, 681.9160492559998, 657.5420908100001, 668.105160107, 666.627616725, 658.891313976, 663.1585906000001, 673.1063035739999, 656.193104934, 667.3033670500001, 712.852713144, 657.7238771619999, 658.7093273279999, 691.2887508220001, 658.9217230559999, 664.2033362450001, 692.5457710819999], \"power_mean\": 668.9474924437894, \"energy_millijoules\": 3344.7374622189473, \"energy_joules\": 3.3447374622189474}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm7150/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 250 ms\nBaseline power usage: 641 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 768 1017 1248 1324 1497 1612 1708 1804\n\n 300:  1114     3.7 C/MHz     63 mW   16.9 J   17.7 I/mJ   269.3 s\n 576:  2139     3.7 C/MHz     79 mW   11.1 J   27.1 I/mJ   140.3 s\n 768:  2852     3.7 C/MHz     89 mW    9.4 J   32.0 I/mJ   105.2 s\n1017:  3779     3.7 C/MHz    106 mW    8.4 J   35.8 I/mJ    79.4 s\n1248:  4634     3.7 C/MHz    120 mW    7.8 J   38.6 I/mJ    64.7 s\n1324:  4919     3.7 C/MHz    125 mW    7.6 J   39.5 I/mJ    61.0 s\n1497:  5561     3.7 C/MHz    135 mW    7.3 J   41.2 I/mJ    54.0 s\n1612:  5989     3.7 C/MHz    142 mW    7.1 J   42.2 I/mJ    50.1 s\n1708:  6346     3.7 C/MHz    154 mW    7.3 J   41.3 I/mJ    47.3 s\n1804:  6702     3.7 C/MHz    172 mW    7.7 J   38.9 I/mJ    44.8 s\n\n\n===== CPU 6 =====\nFrequencies: 300 652 806 979 1094 1209 1324 1555 1708 1843 1939 2169 2208\n\n 300:  2338     7.8 C/MHz    110 mW   14.2 J   21.2 I/mJ   128.4 s\n 652:  5088     7.8 C/MHz    169 mW   10.0 J   30.0 I/mJ    59.0 s\n 806:  6286     7.8 C/MHz    196 mW    9.3 J   32.1 I/mJ    47.7 s\n 979:  7632     7.8 C/MHz    238 mW    9.4 J   32.0 I/mJ    39.3 s\n1094:  8527     7.8 C/MHz    272 mW    9.6 J   31.3 I/mJ    35.2 s\n1209:  9424     7.8 C/MHz    297 mW    9.5 J   31.7 I/mJ    31.9 s\n1324: 10326     7.8 C/MHz    335 mW    9.7 J   30.8 I/mJ    29.1 s\n1555: 12120     7.8 C/MHz    430 mW   10.6 J   28.2 I/mJ    24.8 s\n1708: 13317     7.8 C/MHz    502 mW   11.3 J   26.5 I/mJ    22.5 s\n1843: 14362     7.8 C/MHz    573 mW   12.0 J   25.1 I/mJ    20.9 s\n1939: 15097     7.8 C/MHz    633 mW   12.6 J   23.8 I/mJ    19.9 s\n2169: 16910     7.8 C/MHz    816 mW   14.5 J   20.7 I/mJ    17.8 s\n2208: 17198     7.8 C/MHz    830 mW   14.5 J   20.7 I/mJ    17.5 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm7150/main/uptime.txt",
    "content": " 22:21:14 up 28 min,  load average: 0.86, 0.89, 0.78\n"
  },
  {
    "path": "results/sm7150/main/versions.txt",
    "content": "Kernel: Linux version 4.14.237-OrokinKernel (Orokin@Shadowfax-FX505DY) (Proton clang version 13.0.0 (https://github.com/llvm/llvm-project b4fd512c36ca344a3ff69350219e8b0a67e9472a), LLD 13.0.0 (https://github.com/llvm/llvm-project b4fd512c36ca344a3ff69350219e8b0a67e9472a)) #1 SMP PREEMPT Mon Jul 19 20:17:42 +08 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm7150/second/cmdline.txt",
    "content": "ramoops_memreserve=4M rcu_nocbs=0-7 noirqdebug androidboot.hardware=qcom androidboot.usbcontroller=a600000.dwc3 service_locator.enable=1 lpm_levels.sleep_disabled=1 loop.max_part=7 swiotlb=1 androidboot.memcg=1 cgroup.memory=nokmem,nosocket buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.keymaster=1 root=PARTUUID=6b18816d-9435-5a4f-2253-b1527a78dfe1 androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.serialno=REDACTED androidboot.ramdump=disable androidboot.secureboot=1 androidboot.cpuid=REDACTED androidboot.hwversion=5.19.0 androidboot.hwc=GLOBAL androidboot.hwlevel=MP androidboot.baseband=msm msm_drm.dsi_display0=dsi_ss_fhd_ea_f10_cmd_display: skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=1 androidboot.dtb_idx=0 androidboot.dp=0x0\n"
  },
  {
    "path": "results/sm7150/second/cpufreq_stats/0/time_in_state",
    "content": "300000 96252\n576000 14847\n768000 11339\n1017600 8772\n1248000 7312\n1324800 6935\n1497600 6231\n1612800 5829\n1708800 5554\n1804800 5588\n"
  },
  {
    "path": "results/sm7150/second/cpufreq_stats/0/total_trans",
    "content": "13\n"
  },
  {
    "path": "results/sm7150/second/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    576000    768000   1017600   1248000   1324800   1497600   1612800   1708800   1804800 \n   300000:         0         1         0         0         0         0         0         0         0         1 \n   576000:         0         0         1         0         0         0         0         0         0         0 \n   768000:         0         0         0         1         0         0         0         0         0         0 \n  1017600:         0         0         0         0         1         0         0         0         0         0 \n  1248000:         0         0         0         0         0         1         0         0         0         0 \n  1324800:         0         0         0         0         0         0         1         0         0         0 \n  1497600:         0         0         0         0         0         0         0         1         0         1 \n  1612800:         0         0         0         0         0         0         0         0         1         0 \n  1708800:         0         0         0         0         0         0         0         0         0         1 \n  1804800:         2         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm7150/second/cpufreq_stats/6/time_in_state",
    "content": "300000 13702\n652800 6725\n806400 5616\n979200 4757\n1094400 4353\n1209600 4025\n1324800 3747\n1555200 3318\n1708800 3091\n1843200 2914\n1939200 2813\n2169600 2612\n2208000 110986\n"
  },
  {
    "path": "results/sm7150/second/cpufreq_stats/6/total_trans",
    "content": "15\n"
  },
  {
    "path": "results/sm7150/second/cpufreq_stats/6/trans_table",
    "content": "   From  :    To\n         :    300000    652800    806400    979200   1094400   1209600   1324800   1555200   1708800   1843200   1939200   2169600   2208000 \n   300000:         0         1         0         0         0         0         0         0         0         0         0         0         1 \n   652800:         0         0         1         0         0         0         0         0         0         0         0         0         0 \n   806400:         0         0         0         1         0         0         0         0         0         0         0         0         0 \n   979200:         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1094400:         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1209600:         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1324800:         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1555200:         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1708800:         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  1843200:         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  1939200:         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2169600:         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2208000:         2         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm7150/second/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 14 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nHardware\t: Qualcomm Technologies, Inc SDMMAGPIE\n"
  },
  {
    "path": "results/sm7150/second/device.txt",
    "content": "Model: DAVINCI;\nCompatible: qcom,sdmmagpie-qrd;qcom,sdmmagpie;qcom,qrd;\n"
  },
  {
    "path": "results/sm7150/second/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Linux version 4.14.230-perf-gf4d51ae67f2a-dirty (andrzej@andrzej-MS-7A32) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project d38205144febf4dc42c9270c6aa3d978f1ef65e1), LLD 12.0.0 (https://github.com/llvm/llvm-project d38205144febf4dc42c9270c6aa3d978f1ef65e1)) #5 SMP PREEMPT Mon Sep 13 14:08:13 CEST 2021\n[    0.000000] Boot CPU: AArch64 Processor [51df805e]\n[    0.000000] memblock_reserve: 0x8c52a setup_arch+0xb0/0x574\n[    0.000000] Machine: Qualcomm Technologies, Inc. SDMMAGPIE PM6150 DAVINCI\n[    0.000000] ramoops: msm_reserve_ramoops_memory addr=b0000000,size=400000\n[    0.000000] ramoops: msm_reserve_ramoops_memory record_size=0,ftrace_size=0\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000001fa800000, size 36 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fa000000, size 92 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f9000000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f8400000, size 12 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f8000000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f7800000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f5800000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085700000, size 6 MiB\n[    0.000000] OF: reserved mem: initialized node hyp_region@85700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085d00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node xbl_dump_mem@85d00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085e00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node xbl_aop_mem@85e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085fff000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node sec_apps_region@85fff000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086000000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node smem@86000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086200000, size 73 MiB\n[    0.000000] OF: reserved mem: initialized node removed_region@86200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ab00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node camera_region@8ab00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b000000, size 132 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@8b000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093400000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region@93400000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093900000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_regions@93900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000095700000, size 38 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region@95700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097d00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_msa_region@97500000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097e80000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node npu_region@97680000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097f00000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ips_fw_region@97700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097f10000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_gsi_region@97710000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097f15000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@97715000, compatible id removed-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x000000009e400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@9e400000, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000009f800000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_sec_regions@0x9f800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000af000000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node ramdump_fb_region@af000000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 1559552\n[    0.000000]   DMA zone: 8192 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 524288 pages, LIFO batch:31\n[    0.000000]   Normal zone: 16176 pages used for memmap\n[    0.000000]   Normal zone: 1035264 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.1\n[    0.000000] random: fast init done\n[    0.000000] random: get_random_bytes called from start_kernel+0x94/0x508 with crng_init=1\n[    0.000000] percpu: Embedded 19 pages/cpu s49048 r0 d28776 u77824\n[    0.000000] pcpu-alloc: s49048 r0 d28776 u77824 alloc=19*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] CPU features: detected: Hardware dirty bit management\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1535184\n[    0.000000] Kernel command line: ramoops_memreserve=4M rcu_nocbs=0-7 noirqdebug androidboot.hardware=qcom androidboot.usbcontroller=a600000.dwc3 service_locator.enable=1 lpm_levels.sleep_disabled=1 loop.max_part=7 swiotlb=1 androidboot.memcg=1 cgroup.memory=nokmem,nosocket buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=6b18816d-9435-5a4f-2253-b1527a78dfe1 androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.serialno=REDACTED androidboot.ramdump=disable androidboot.secureboot=1 androidboot.cpuid=REDACTED androidboot.hwversion=5.19.0 androidboot.hwc=GLOBAL androidboot.hwlevel=MP androidboot.baseband=msm msm_drm.dsi_display0=dsi_ss_fhd_ea_f10_cmd_display: skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=1 androidboot.dtb_idx=0 androidboot.dp=0x0\n[    0.000000] IRQ lockup detection disabled\n[    0.000000] parse_hwversion: socinfo: hwversion:5.19.0,strlen-is: 6\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 131072 bytes\n[    0.000000] log_buf_len: 1048576 bytes\n[    0.000000] early log buf free: 122792(93%)\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off\n[    0.000000] software IO TLB: mapped [mem 0xfffbf000-0xfffff000] (0MB)\n[    0.000000] Memory: 5456240K/6238208K available (24062K kernel code, 3028K rwdata, 11548K rodata, 6144K init, 8436K bss, 577168K reserved, 204800K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000017a60000\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000004] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000016] clocksource: Switched to clocksource arch_sys_counter\n[    0.002089] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.002102] pid_max: default: 32768 minimum: 301\n[    0.002209] Security Framework initialized\n[    0.002217] SELinux:  Initializing.\n[    0.002297] SELinux:  Starting in permissive mode\n[    0.002342] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.002356] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.014171] ASID allocator initialised with 65536 entries\n[    0.016253] Hierarchical SRCU implementation.\n[    0.020961] MSM Memory Dump base table set up\n[    0.020976] MSM Memory Dump apps data table set up\n[    0.023354] smp: Bringing up secondary CPUs ...\n[    0.032696] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000\n[    0.032742] CPU1: Booted secondary processor [51df805e]\n[    0.042147] GICv3: CPU2: found redistributor 200 region 0:0x0000000017aa0000\n[    0.042183] CPU2: Booted secondary processor [51df805e]\n[    0.051602] GICv3: CPU3: found redistributor 300 region 0:0x0000000017ac0000\n[    0.051637] CPU3: Booted secondary processor [51df805e]\n[    0.061108] GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000\n[    0.061138] CPU4: Booted secondary processor [51df805e]\n[    0.070661] GICv3: CPU5: found redistributor 500 region 0:0x0000000017b00000\n[    0.070690] CPU5: Booted secondary processor [51df805e]\n[    0.081010] CPU features: Unsupported CPU feature variation detected.\n[    0.081042] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000\n[    0.081092] CPU6: Booted secondary processor [51df804e]\n[    0.091264] GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000\n[    0.091319] CPU7: Booted secondary processor [51df804e]\n[    0.091516] smp: Brought up 1 node, 8 CPUs\n[    0.091520] SMP: Total of 8 processors activated.\n[    0.091524] CPU features: detected: GIC system register CPU interface\n[    0.091526] CPU features: detected: Privileged Access Never\n[    0.091528] CPU features: detected: User Access Override\n[    0.091530] CPU features: detected: 32-bit EL0 Support\n[    0.170818] CPU: All CPU(s) started at EL1\n[    0.170867] alternatives: patching kernel code\n[    0.172190] scm_enable_mem_protection: SCM call failed\n[    0.172254] CPU0: update max cpu_capacity 602\n[    0.222390] Registered cp15_barrier emulation handler\n[    0.222405] Registered setend emulation handler\n[    0.222531] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.222540] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.226978] ramoops: msm_register_ramoops_device\n[    0.227056] pinctrl core: initialized pinctrl subsystem\n[    0.227591] NET: Registered protocol family 16\n[    0.228436] schedtune: configured to support 8 boost groups\n[    0.260425] console [pstore0] enabled\n[    0.260487] pstore: Registered ramoops as persistent store backend\n[    0.260490] ramoops: attached 0x400000@0xb0000000, ecc: 0/0\n[    0.261935] cpuidle: using governor qcom\n[    0.262028] NET: Registered protocol family 42\n[    0.265488] vdso32: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.265495] vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.265500] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.266344] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.269151] exit: IPA_USB init success!\n[    0.271914] sps:sps is ready.\n[    0.273427] msm_watchdog 17c10000.qcom,wdt: wdog absent resource not present\n[    0.274338] msm_watchdog 17c10000.qcom,wdt: MSM Watchdog Initialized\n[    0.274773] platform soc:mem_dump: assigned reserved memory node mem_dump_region\n[    0.288625] platform soc:qcom,smem: assigned reserved memory node smem@86000000\n[    0.288926] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.293340] platform 86d00000.qseecom: assigned reserved memory node qseecom_region@9e400000\n[    0.293788] platform 62400000.qcom,lpass: assigned reserved memory node pil_adsp_region@95700000\n[    0.294338] platform 8300000.qcom,turing: assigned reserved memory node cdsp_regions@93900000\n[    0.294451] platform 4080000.qcom,mss: assigned reserved memory node modem_region@8b000000\n[    0.294517] platform aae0000.qcom,venus: assigned reserved memory node pil_video_region@93400000\n[    0.294585] platform 9800000.qcom,npu: assigned reserved memory node npu_region@97680000\n[    0.296989] platform soc:qcom,ipa_fws: assigned reserved memory node ips_fw_region@97700000\n[    0.305880] sdmmagpie-pinctrl 3400000.pinctrl: invalid resource\n[    0.309693] rpmh_regulator_probe: smpf1: could not find RPMh address for resource\n[    0.309813] rpmh_regulator_probe: smpf2: could not find RPMh address for resource\n[    0.310133] spmi spmi-0: PMIC arbiter version v5 (0x50000000)\n[    0.314405] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.318858] pm6150_l17: supplied by pm6150_l11\n[    0.323135] rpmh_regulator_probe: ldof1: could not find RPMh address for resource\n[    0.323252] rpmh_regulator_probe: ldof2: could not find RPMh address for resource\n[    0.323365] rpmh_regulator_probe: ldof4: could not find RPMh address for resource\n[    0.323475] rpmh_regulator_probe: ldof5: could not find RPMh address for resource\n[    0.323587] rpmh_regulator_probe: ldof6: could not find RPMh address for resource\n[    0.323695] rpmh_regulator_probe: ldof7: could not find RPMh address for resource\n[    0.328345] OF: amba_device_add() failed (-16) for /soc/cti@6867000\n[    0.349271] gpu_cx_gdsc: supplied by pm6150l_s2_level\n[    0.350454] clk: clk_osm_read_lut: index=0 freq=300000000 virtual_corner=0 open_loop_voltage=568\n[    0.350460] clk: clk_osm_read_lut: index=1 freq=556800000 virtual_corner=1 open_loop_voltage=568\n[    0.350465] clk: clk_osm_read_lut: index=2 freq=652800000 virtual_corner=2 open_loop_voltage=580\n[    0.350470] clk: clk_osm_read_lut: index=3 freq=768000000 virtual_corner=3 open_loop_voltage=612\n[    0.350474] clk: clk_osm_read_lut: index=4 freq=844800000 virtual_corner=4 open_loop_voltage=624\n[    0.350479] clk: clk_osm_read_lut: index=5 freq=940800000 virtual_corner=5 open_loop_voltage=652\n[    0.350483] clk: clk_osm_read_lut: index=6 freq=1132800000 virtual_corner=6 open_loop_voltage=684\n[    0.350487] clk: clk_osm_read_lut: index=7 freq=1190400000 virtual_corner=7 open_loop_voltage=696\n[    0.350492] clk: clk_osm_read_lut: index=8 freq=1305600000 virtual_corner=8 open_loop_voltage=720\n[    0.350496] clk: clk_osm_read_lut: index=9 freq=1382400000 virtual_corner=9 open_loop_voltage=740\n[    0.350500] clk: clk_osm_read_lut: index=10 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350504] clk: clk_osm_read_lut: index=11 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350508] clk: clk_osm_read_lut: index=12 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350512] clk: clk_osm_read_lut: index=13 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350516] clk: clk_osm_read_lut: index=14 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350520] clk: clk_osm_read_lut: index=15 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350525] clk: clk_osm_read_lut: index=16 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350529] clk: clk_osm_read_lut: index=17 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350533] clk: clk_osm_read_lut: index=18 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350537] clk: clk_osm_read_lut: index=19 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350541] clk: clk_osm_read_lut: index=20 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350545] clk: clk_osm_read_lut: index=21 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350550] clk: clk_osm_read_lut: index=22 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350554] clk: clk_osm_read_lut: index=23 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350558] clk: clk_osm_read_lut: index=24 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350563] clk: clk_osm_read_lut: index=25 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350567] clk: clk_osm_read_lut: index=26 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350572] clk: clk_osm_read_lut: index=27 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350577] clk: clk_osm_read_lut: index=28 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350582] clk: clk_osm_read_lut: index=29 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350586] clk: clk_osm_read_lut: index=30 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350591] clk: clk_osm_read_lut: index=31 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350596] clk: clk_osm_read_lut: index=32 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350600] clk: clk_osm_read_lut: index=33 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350605] clk: clk_osm_read_lut: index=34 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350609] clk: clk_osm_read_lut: index=35 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350613] clk: clk_osm_read_lut: index=36 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350617] clk: clk_osm_read_lut: index=37 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350621] clk: clk_osm_read_lut: index=38 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350625] clk: clk_osm_read_lut: index=39 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.350632] clk: clk_osm_read_lut: index=0 freq=300000000 virtual_corner=0 open_loop_voltage=568\n[    0.350637] clk: clk_osm_read_lut: index=1 freq=576000000 virtual_corner=1 open_loop_voltage=568\n[    0.350641] clk: clk_osm_read_lut: index=2 freq=768000000 virtual_corner=2 open_loop_voltage=568\n[    0.350646] clk: clk_osm_read_lut: index=3 freq=1017600000 virtual_corner=3 open_loop_voltage=620\n[    0.350651] clk: clk_osm_read_lut: index=4 freq=1248000000 virtual_corner=4 open_loop_voltage=668\n[    0.350655] clk: clk_osm_read_lut: index=5 freq=1324800000 virtual_corner=5 open_loop_voltage=684\n[    0.350659] clk: clk_osm_read_lut: index=6 freq=1497600000 virtual_corner=6 open_loop_voltage=724\n[    0.350663] clk: clk_osm_read_lut: index=7 freq=1612800000 virtual_corner=7 open_loop_voltage=748\n[    0.350668] clk: clk_osm_read_lut: index=8 freq=1708800000 virtual_corner=8 open_loop_voltage=776\n[    0.350672] clk: clk_osm_read_lut: index=9 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350676] clk: clk_osm_read_lut: index=10 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350680] clk: clk_osm_read_lut: index=11 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350684] clk: clk_osm_read_lut: index=12 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350688] clk: clk_osm_read_lut: index=13 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350692] clk: clk_osm_read_lut: index=14 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350696] clk: clk_osm_read_lut: index=15 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350700] clk: clk_osm_read_lut: index=16 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350705] clk: clk_osm_read_lut: index=17 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350709] clk: clk_osm_read_lut: index=18 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350713] clk: clk_osm_read_lut: index=19 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350717] clk: clk_osm_read_lut: index=20 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350721] clk: clk_osm_read_lut: index=21 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350725] clk: clk_osm_read_lut: index=22 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350729] clk: clk_osm_read_lut: index=23 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350733] clk: clk_osm_read_lut: index=24 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350737] clk: clk_osm_read_lut: index=25 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350741] clk: clk_osm_read_lut: index=26 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350745] clk: clk_osm_read_lut: index=27 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350749] clk: clk_osm_read_lut: index=28 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350753] clk: clk_osm_read_lut: index=29 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350758] clk: clk_osm_read_lut: index=30 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350762] clk: clk_osm_read_lut: index=31 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350766] clk: clk_osm_read_lut: index=32 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350770] clk: clk_osm_read_lut: index=33 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350774] clk: clk_osm_read_lut: index=34 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350778] clk: clk_osm_read_lut: index=35 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350782] clk: clk_osm_read_lut: index=36 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350786] clk: clk_osm_read_lut: index=37 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350790] clk: clk_osm_read_lut: index=38 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350795] clk: clk_osm_read_lut: index=39 freq=1804800000 virtual_corner=9 open_loop_voltage=804\n[    0.350800] clk: clk_osm_read_lut: index=0 freq=300000000 virtual_corner=0 open_loop_voltage=568\n[    0.350805] clk: clk_osm_read_lut: index=1 freq=652800000 virtual_corner=1 open_loop_voltage=568\n[    0.350809] clk: clk_osm_read_lut: index=2 freq=806400000 virtual_corner=2 open_loop_voltage=568\n[    0.350813] clk: clk_osm_read_lut: index=3 freq=979200000 virtual_corner=3 open_loop_voltage=592\n[    0.350817] clk: clk_osm_read_lut: index=4 freq=1094400000 virtual_corner=4 open_loop_voltage=620\n[    0.350821] clk: clk_osm_read_lut: index=5 freq=1209600000 virtual_corner=5 open_loop_voltage=632\n[    0.350825] clk: clk_osm_read_lut: index=6 freq=1324800000 virtual_corner=6 open_loop_voltage=660\n[    0.350829] clk: clk_osm_read_lut: index=7 freq=1555200000 virtual_corner=7 open_loop_voltage=716\n[    0.350833] clk: clk_osm_read_lut: index=8 freq=1708800000 virtual_corner=8 open_loop_voltage=752\n[    0.350837] clk: clk_osm_read_lut: index=9 freq=1843200000 virtual_corner=9 open_loop_voltage=780\n[    0.350841] clk: clk_osm_read_lut: index=10 freq=1939200000 virtual_corner=10 open_loop_voltage=804\n[    0.350846] clk: clk_osm_read_lut: index=11 freq=2169600000 virtual_corner=11 open_loop_voltage=864\n[    0.350850] clk: clk_osm_read_lut: index=12 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350854] clk: clk_osm_read_lut: index=13 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350858] clk: clk_osm_read_lut: index=14 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350862] clk: clk_osm_read_lut: index=15 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350866] clk: clk_osm_read_lut: index=16 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350870] clk: clk_osm_read_lut: index=17 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350874] clk: clk_osm_read_lut: index=18 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350879] clk: clk_osm_read_lut: index=19 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350883] clk: clk_osm_read_lut: index=20 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350887] clk: clk_osm_read_lut: index=21 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350892] clk: clk_osm_read_lut: index=22 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350897] clk: clk_osm_read_lut: index=23 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350901] clk: clk_osm_read_lut: index=24 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350906] clk: clk_osm_read_lut: index=25 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350910] clk: clk_osm_read_lut: index=26 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350914] clk: clk_osm_read_lut: index=27 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350918] clk: clk_osm_read_lut: index=28 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350922] clk: clk_osm_read_lut: index=29 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350927] clk: clk_osm_read_lut: index=30 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350931] clk: clk_osm_read_lut: index=31 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350935] clk: clk_osm_read_lut: index=32 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350939] clk: clk_osm_read_lut: index=33 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350943] clk: clk_osm_read_lut: index=34 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350947] clk: clk_osm_read_lut: index=35 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350951] clk: clk_osm_read_lut: index=36 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350955] clk: clk_osm_read_lut: index=37 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350960] clk: clk_osm_read_lut: index=38 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.350964] clk: clk_osm_read_lut: index=39 freq=2208000000 virtual_corner=12 open_loop_voltage=876\n[    0.351103] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu0\n[    0.351299] clk: add_opp: Set OPP pair (1804800000 Hz, 804000 uv) on cpu0\n[    0.351342] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu1\n[    0.351533] clk: add_opp: Set OPP pair (1804800000 Hz, 804000 uv) on cpu1\n[    0.351574] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu2\n[    0.351757] clk: add_opp: Set OPP pair (1804800000 Hz, 804000 uv) on cpu2\n[    0.351792] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu3\n[    0.351985] clk: add_opp: Set OPP pair (1804800000 Hz, 804000 uv) on cpu3\n[    0.352019] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu4\n[    0.352208] clk: add_opp: Set OPP pair (1804800000 Hz, 804000 uv) on cpu4\n[    0.352244] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu5\n[    0.352438] clk: add_opp: Set OPP pair (1804800000 Hz, 804000 uv) on cpu5\n[    0.352473] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu6\n[    0.352712] clk: add_opp: Set OPP pair (2208000000 Hz, 876000 uv) on cpu6\n[    0.352759] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu7\n[    0.353002] clk: add_opp: Set OPP pair (2208000000 Hz, 876000 uv) on cpu7\n[    0.353168] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.353171] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on soc:qcom,cpu6-cpu-l3-lat\n[    0.353173] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.353786] clk: add_opp: Set OPP pair (1459200000 Hz, 756000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.353789] clk: add_opp: Set OPP pair (1459200000 Hz, 756000 uv) on soc:qcom,cpu6-cpu-l3-lat\n[    0.353791] clk: add_opp: Set OPP pair (1459200000 Hz, 756000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.354255] sched-energy: Sched-energy-costs installed from DT\n[    0.354349] CPU0: update max cpu_capacity 492\n[    0.354513] cpufreq: driver osm-cpufreq up and running\n[    0.354515] clk: clk_cpu_osm_driver_probe: OSM CPUFreq driver inited\n[    0.363099] cam_cc-sdmmagpie ad00000.qcom,camcc: Registered Camera CC clocks\n[    0.363599] CPU0: update max cpu_capacity 492\n[    0.364060] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.365433] clk-rpmh soc:qcom,rpmh: Registered RPMh clocks\n[    0.367317] disp_cc-sdmmagpie af00000.qcom,dispcc: Registered Display CC clocks\n[    0.382608] gcc-sdmmagpie 100000.qcom,gcc: Registered GCC clocks\n[    0.384712] gpu_cc_gmu_clk_src: set OPP pair(19200000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.384734] gpu_cc_gmu_clk_src: set OPP pair(200000000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.385137] gpu_cc_gx_gfx3d_clk_src: set OPP pair(180000000 Hz: 49 uV) on 5000000.qcom,kgsl-3d0\n[    0.385301] gpu_cc_gx_gfx3d_clk_src: set OPP pair(700000000 Hz: 385 uV) on 5000000.qcom,kgsl-3d0\n[    0.385352] gpu_cc_gx_gfx3d_clk_src: set OPP pair(825000000 Hz: 417 uV) on 5000000.qcom,kgsl-3d0\n[    0.385506] gpu_cc-sdmmagpie 5090000.qcom,gpucc: Registered GPU CC clocks\n[    0.387272] video_cc-sdmmagpie ab00000.qcom,videocc: Registered Video CC clocks\n[    0.391693] KPI: Bootloader start count = 74874\n[    0.391696] KPI: Bootloader end count = 121506\n[    0.391698] KPI: Bootloader load kernel count = 1253469474\n[    0.391701] KPI: Kernel MPM timestamp = 142255\n[    0.391702] KPI: Kernel MPM Clock frequency = 32768\n[    0.391717] socinfo_print: v0.15, id=365, ver=1.0, raw_id=230, raw_ver=0, hw_plat=39, hw_plat_ver=1638400\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65576, pmic_die_revision=131072 foundry_id=3 serial_number=2445715428 num_pmics=2 chip_family=0x60 raw_device_family=0x6 raw_device_number=0xc nproduct_id=0x40f num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xc ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.391770] msm_bus_fabric_rpmh_init_driver\n[    0.391886] msm_bus: Probe started\n[    0.392340] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.392400] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.392415] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.392462] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.394351] msm_bus: DT Parsing complete\n[    0.396954] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.397109] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.397137] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.397261] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.408410] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_actuator_tele_en, deferring probe\n[    0.409149] arm-smmu 5040000.arm,smmu-kgsl: \tnon-coherent table walk\n[    0.409152] arm-smmu 5040000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by FW configuration)\n[    0.409156] arm-smmu 5040000.arm,smmu-kgsl: \tstream matching with 5 register groups\n[    0.410815] register_client_adhoc:find path.src 161 dest 627\n[    0.410973] register_client_adhoc:Client handle 1 apps_smmu\n[    0.411086] arm-smmu 15000000.apps-smmu: \tnon-coherent table walk\n[    0.411089] arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.411093] arm-smmu 15000000.apps-smmu: \tstream matching with 79 register groups\n[    0.411789] register_client_adhoc:find path.src 161 dest 627\n[    0.411905] register_client_adhoc:Client handle 2 apps_smmu\n[    0.412102] register_client_adhoc:find path.src 161 dest 627\n[    0.412213] register_client_adhoc:Client handle 3 apps_smmu\n[    0.412386] register_client_adhoc:find path.src 22 dest 773\n[    0.412448] register_client_adhoc:Client handle 4 mnoc_hf_0_tbu\n[    0.412624] register_client_adhoc:find path.src 22 dest 773\n[    0.412679] register_client_adhoc:Client handle 5 mnoc_hf_1_tbu\n[    0.412859] register_client_adhoc:find path.src 137 dest 772\n[    0.412923] register_client_adhoc:Client handle 6 mnoc_sf_0_tbu\n[    0.413065] register_client_adhoc:find path.src 154 dest 10076\n[    0.413108] register_client_adhoc:Client handle 7 apps_smmu\n[    0.413286] register_client_adhoc:find path.src 161 dest 627\n[    0.413408] register_client_adhoc:Client handle 8 apps_smmu\n[    0.413599] register_client_adhoc:find path.src 161 dest 627\n[    0.413710] register_client_adhoc:Client handle 9 apps_smmu\n[    0.414504] SCSI subsystem initialized\n[    0.414571] usbcore: registered new interface driver usbfs\n[    0.414585] usbcore: registered new interface driver hub\n[    0.414605] usbcore: registered new device driver usb\n[    0.415051] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.415491] [mi-touch] xiaomi_touch_probe: enter\n[    0.415564] [mi-touch] xiaomi_touch_probe: over\n[    0.415790] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.415817] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.415987] input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800/input/input0\n[    0.416959] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150l@4:qcom,power-on@800: PMIC@SID4 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'cold' boot\n[    0.416983] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150l@4:qcom,power-on@800: PMIC@SID4: Power-off reason: Triggered from SOFT (Software)\n[    0.417152] media: Linux media interface: v0.10\n[    0.417166] Linux video capture interface: v2.00\n[    0.417199] pps_core: LinuxPPS API ver. 1 registered\n[    0.417202] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>\n[    0.417208] PTP clock support registered\n[    0.425847] EDAC MC: Ver: 3.0.0\n[    0.429533] iommu: Adding device 8c0000.qcom,qupv3_0_geni_se:qcom,iommu_qupv3_0_geni_se_cb to group 0\n[    0.429810] iommu: Adding device ac0000.qcom,qupv3_1_geni_se:qcom,iommu_qupv3_1_geni_se_cb to group 1\n[    0.430411] PMIC@SID0: PM6150 v2.0 options: 0, 0, 0, 0\n[    0.430521] PMIC@SID4: PM8150A v2.0 options: 0, 0, 0, 0\n[    0.430570] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.430572] read failed rc=-5\n[    0.430574] Invalid REVID peripheral type: 00\n[    0.430584] qcom,qpnp-revid: probe of c440000.qcom,spmi:qcom,pm8009@a:qcom,revid@100 failed with error -22\n[    0.430919] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@9e400000\n[    0.430991] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.431056] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.431122] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.431347] ION heap system created\n[    0.431435] ION heap qsecom created at 0x000000009e400000 with size 1400000\n[    0.431439] ION heap qsecom_ta created at 0x00000000f9000000 with size 1000000\n[    0.431441] ION heap spss created at 0x00000000f7800000 with size 800000\n[    0.431444] ION heap secure_display created at 0x00000000fa000000 with size 5c00000\n[    0.450006] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x9f800000, size 0x1e00000\n[    0.450009] ION heap secure_carveout created\n[    0.450020] ION heap secure_heap created\n[    0.450507] register_client_adhoc:find path.src 90 dest 512\n[    0.450839] register_client_adhoc:find path.src 90 dest 585\n[    0.450948] register_client_adhoc:find path.src 1 dest 676\n[    0.451139] register_client_adhoc:find path.src 143 dest 777\n[    0.451199] register_client_adhoc:Client handle 10 ipa\n[    0.457382] ipa ipa3_smp2p_probe:8657 fail to get smp2p clk resp bit -517\n[    0.458040] iommu: Adding device soc:ipa_smmu_ap to group 2\n[    0.458249] iommu: Adding device soc:ipa_smmu_wlan to group 3\n[    0.458430] iommu: Adding device soc:ipa_smmu_uc to group 4\n[    0.460076] ipa ipa3_smp2p_probe:8657 fail to get smp2p clk resp bit -517\n[    0.463030] Advanced Linux Sound Architecture Driver Initialized.\n[    0.463617] Bluetooth: Core ver 2.22\n[    0.463647] NET: Registered protocol family 31\n[    0.463650] Bluetooth: HCI device and connection manager initialized\n[    0.463664] Bluetooth: HCI socket layer initialized\n[    0.463671] Bluetooth: L2CAP socket layer initialized\n[    0.463708] Bluetooth: SCO socket layer initialized\n[    0.465195] NetLabel: Initializing\n[    0.465199] NetLabel:  domain hash size = 128\n[    0.465202] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\n[    0.465256] NetLabel:  unlabeled traffic allowed by default\n[    0.465338] pcie:pcie_init.\n[    0.471434] register_client_adhoc:find path.src 22 dest 512\n[    0.471896] register_client_adhoc:Client handle 11 bus-proxy-client\n[    0.472932] sched-energy energy-costs: cpu=0 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.472938] sched-energy energy-costs: cpu=1 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.472945] sched-energy energy-costs: cpu=2 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.472951] sched-energy energy-costs: cpu=3 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.472957] sched-energy energy-costs: cpu=4 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.472963] sched-energy energy-costs: cpu=5 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.472969] sched-energy energy-costs: cpu=6 eff=1740 [freq=300000 cap=140 power_d0=166] -> [freq=2400000 cap=1024 power_d0=2568]\n[    0.472975] sched-energy energy-costs: cpu=7 eff=1740 [freq=300000 cap=140 power_d0=166] -> [freq=2400000 cap=1024 power_d0=2568]\n[    0.472978] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.474817] gpu_gx_gdsc: supplied by pm6150_s2_level\n[    0.478450] npu_cc-sdmmagpie 9910000.qcom,npucc: Registered NPU CC clocks\n[    0.478515] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_actuator_tele_en, deferring probe\n[    0.478630] ipa ipa3_smp2p_probe:8657 fail to get smp2p clk resp bit -517\n[    0.478986] clocksource: Switched to clocksource arch_sys_counter\n[    0.521401] VFS: Disk quotas dquot_6.6.0\n[    0.521442] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.522280] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.522422] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.522428] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.522433] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.522438] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.522443] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.522448] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.524181] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=0, clocks successfully\n[    0.524462] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.524537] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.524542] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.524551] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.524556] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.524561] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.524565] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.529710] dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.535544] dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.536135] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=1, clocks successfully\n[    0.536171] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.538308] NET: Registered protocol family 2\n[    0.538677] TCP established hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.538906] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)\n[    0.539683] TCP: Hash tables configured (established 65536 bind 65536)\n[    0.539768] UDP hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.539838] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.540053] NET: Registered protocol family 1\n[    0.540078] PCI: CLS 0 bytes, default 128\n[    0.540235] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_actuator_tele_en, deferring probe\n[    0.540372] ipa ipa3_smp2p_probe:8657 fail to get smp2p clk resp bit -517\n[    0.540666] Trying to unpack rootfs image as initramfs...\n[    0.725488] Freeing initrd memory: 7484K\n[    0.726590] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.731303] audit: initializing netlink subsys (disabled)\n[    0.731630] Initialise system trusted keyrings\n[    0.731680] audit: type=2000 audit(0.729:1): state=initialized audit_enabled=0 res=1\n[    0.731740] workingset: timestamp_bits=45 max_order=21 bucket_order=0\n[    0.734649] exFAT: file-system version 5.8-2arter97\n[    0.734953] Registering sdcardfs 0.1\n[    0.735094] fuse init (API version 7.26)\n[    0.735491] SELinux:  Registering netfilter hooks\n[    0.738839] Key type asymmetric registered\n[    0.738843] Asymmetric key parser 'x509' registered\n[    0.738882] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 240)\n[    0.738887] io scheduler noop registered\n[    0.738917] io scheduler cfq registered (default)\n[    0.738920] io scheduler mq-deadline registered\n[    0.738922] io scheduler kyber registered\n[    0.744328] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.744334] qcom-spmi-gpio c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000: read 0x4 failed\n[    0.744338] qcom-spmi-gpio c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000: failed to populate gpio 0, ret=-5\n[    0.744349] qcom-spmi-gpio: probe of c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000 failed with error -5\n[    0.745314] qpnp_lpg_parse_dt: lut pattern switch enable\n[    0.747893] iommu: Adding device 800000.qcom,gpi-dma to group 5\n[    0.749023] iommu: Adding device a00000.qcom,gpi-dma to group 6\n[    0.753776] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.753836] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.753887] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.754156] register_client_adhoc:find path.src 125 dest 512\n[    0.754517] register_client_adhoc:Client handle 12 scm_pas\n[    0.755385] register_client_adhoc:find path.src 129 dest 512\n[    0.755449] register_client_adhoc:Client handle 13 pil-modem\n[    0.755875] register_client_adhoc:find path.src 63 dest 512\n[    0.756056] register_client_adhoc:Client handle 14 pil-venus\n[    0.756067] subsys-pil-tz aae0000.qcom,venus: for venus segments only will be dumped.\n[    0.756202] subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    0.756349] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    0.756644] subsys-pil-tz soc:qcom,kgsl-hyp: for a615_zap segments only will be dumped.\n[    0.759552] smp2p_sleepstate soc:qcom,smp2p_sleepstate: got smp2p-sleepstate-in irq 399\n[    0.760283] iommu: Adding device 18800000.qcom,icnss to group 7\n[    0.760330] icnss: Recursive recovery allowed for WLAN\n[    0.761145] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.761258] icnss: Platform driver probed successfully\n[    0.764253] msm_geni_serial 88c000.qcom,qup_uart: Wakeup byte 0xfd\n[    0.764372] msm_geni_serial 88c000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    0.764822] 88c000.qcom,qup_uart: ttyHS0 at MMIO 0x88c000 (irq = 72, base_baud = 0) is a MSM\n[    0.765177] msm_geni_serial_init: Driver initialized\n[    0.765405] register_client_adhoc:find path.src 1 dest 618\n[    0.765627] register_client_adhoc:Client handle 15 msm-rng-noc\n[    0.766470] random: crng init done\n[    0.769354] diag: Pcie registration initiated for id: 0\n[    0.770484] diag: diag_pcie_register: failed registering pcie channels\n[    0.770487] diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    0.770490] diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    0.822959] register_client_adhoc:find path.src 20003 dest 20515\n[    0.823098] register_client_adhoc:find path.src 20004 dest 20515\n[    0.823162] register_client_adhoc:Client handle 16 disp_rsc_mnoc\n[    0.823183] register_client_adhoc:find path.src 20001 dest 20513\n[    0.823244] register_client_adhoc:Client handle 17 disp_rsc_llcc\n[    0.823266] register_client_adhoc:find path.src 20000 dest 20512\n[    0.823330] register_client_adhoc:Client handle 18 disp_rsc_ebi\n[    0.823596] [sde_rsc_hw:rsc_hw_init:714]: sde rsc init successfully done\n[    0.823634] [sde_rsc:sde_rsc_probe:1888]: sde rsc index:0 probed successfully\n[    0.824262] dsi_phy ae94400.qcom,mdss_dsi_phy0: ae94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    0.824346] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-0\n[    0.824401] dsi_phy ae96400.qcom,mdss_dsi_phy1: ae96400.qcom,mdss_dsi_phy1 supply gdsc not found, using dummy regulator\n[    0.824444] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-1\n[    0.825102] AXI: get_pdata(): Error: Client name not found\n[    0.825104] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.825107] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-0\n[    0.825247] AXI: get_pdata(): Error: Client name not found\n[    0.825249] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.825251] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-1\n[    0.825871] OF: graph: no port node found in /soc/qcom,dsi-display\n[    0.825933] msm-dsi-panel:[dsi_panel_parse_panel_mode:1785] dsi_panel_parse_panel_mode: panel operating mode switch feature disabled\n[    0.825948] msm-dsi-panel:[dsi_panel_parse_qsync_caps:1468] [ss ea fhd cmd dsi panel] qsync min fps not defined rc:-22\n[    0.825980] msm-dsi-panel:[dsi_panel_parse_reset_sequence:2151] RESET SEQ LENGTH = 16\n[    0.826041] msm-dsi-panel:[dsi_panel_parse_misc_features:2201] dsi_panel_parse_misc_features: ulps feature enabled\n[    0.826045] msm-dsi-panel:[dsi_panel_parse_misc_features:2207] dsi_panel_parse_misc_features: ulps during suspend feature disabled\n[    0.833322] brd: module loaded\n[    0.839917] loop: module loaded\n[    0.841035] zram: Added device: zram0\n[    0.841182] iommu: Adding device ae00000.qcom,mdss_mdp to group 8\n[    0.843325] iommu: Adding device 506a000.qcom,gmu:gmu_user to group 9\n[    0.844154] iommu: Adding device 506a000.qcom,gmu:gmu_kernel to group 10\n[    0.845980] register_client_adhoc:find path.src 26 dest 512\n[    0.846189] register_client_adhoc:Client handle 19 grp3d\n[    0.846207] register_client_adhoc:find path.src 26 dest 10036\n[    0.846329] register_client_adhoc:Client handle 20 cnoc\n[    0.846332] query_client_usecase_all: query_start\n[    0.846382] query_client_usecase_all: query_start\n[    0.847670] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 11\n[    0.847885] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 12\n[    0.874872] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1400000\n[    0.874888] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.874895] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    0.874899] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    0.874905] AXI: get_pdata(): Error: Client name not found\n[    0.874908] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.874946] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    0.875054] QSEECOM: qseecom_probe: Unable to register bus client\n[    0.875900] drv8846: drv8846_probe: 559 Enter\n[    0.875905] drv8846: drv8846_probe: 569 mctrl: 00000000a2aa8857\n[    0.876015] drv8846: drv8846_probe: 613 successfully probed.\n[    0.876416] iommu: Adding device 1de0000.qcedev to group 13\n[    0.876546] register_client_adhoc:find path.src 125 dest 512\n[    0.876921] register_client_adhoc:Client handle 21 qcedev-noc\n[    0.877091] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    0.877888] qce 1de0000.qcedev: QTI Crypto 5.4.1 device found @0x1de0000\n[    0.878069] sps:BAM 0x0000000001dc4000 is registered.\n[    0.878206] sps:BAM 0x0000000001dc4000 (va:0x000000008e487fa8) enabled: ver:0x27, number of pipes:16\n[    0.878371] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 49\n[    0.880643] iommu: Adding device 1de0000.qcrypto to group 14\n[    0.880712] register_client_adhoc:find path.src 125 dest 512\n[    0.881047] register_client_adhoc:Client handle 22 qcrypto-noc\n[    0.881180] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    0.881721] qcrypto 1de0000.qcrypto: QTI Crypto 5.4.1 device found @0x1de0000\n[    0.881967] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 49\n[    0.882263] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    0.882407] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    0.882479] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    0.882545] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    0.882615] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    0.882681] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    0.882747] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    0.882813] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    0.882885] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    0.882954] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    0.883021] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    0.883087] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    0.883161] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    0.883227] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    0.883294] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    0.883360] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    0.883427] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    0.883497] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    0.883570] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    0.883639] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    0.884696] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    0.885797] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    0.888303] libphy: Fixed MDIO Bus: probed\n[    0.888432] tun: Universal TUN/TAP device driver, 1.6\n[    0.888471] sky2: driver version 1.30\n[    0.888823] PPP generic driver version 2.4.2\n[    0.888871] PPP BSD Compression module registered\n[    0.888875] PPP Deflate Compression module registered\n[    0.888897] PPP MPPE Compression module registered\n[    0.888901] NET: Registered protocol family 24\n[    0.888912] PPTP driver version 0.8.5\n[    0.889184] CLD80211: Initializing\n[    0.889248] usbcore: registered new interface driver r8152\n[    0.889259] usbcore: registered new interface driver asix\n[    0.889269] usbcore: registered new interface driver ax88179_178a\n[    0.889280] usbcore: registered new interface driver cdc_ether\n[    0.889294] usbcore: registered new interface driver net1080\n[    0.889306] usbcore: registered new interface driver cdc_subset\n[    0.889318] usbcore: registered new interface driver zaurus\n[    0.889477] usbcore: registered new interface driver cdc_ncm\n[    0.889672] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    0.890802] register_client_adhoc:find path.src 123 dest 512\n[    0.891170] register_client_adhoc:find path.src 1 dest 757\n[    0.891359] register_client_adhoc:Client handle 23 ufshc_mem\n[    0.891629] ufshcd-qcom 1d84000.ufshc: ufs_qcom_parse_reg_info: Unable to find qcom,vccq-parent-supply regulator, assuming enabled\n[    0.893423] scsi host0: ufshcd\n[    0.914443] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.917669] iommu: Adding device a600000.ssusb to group 15\n[    0.919950] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    0.924627] register_client_adhoc:find path.src 61 dest 512\n[    0.925000] register_client_adhoc:find path.src 61 dest 676\n[    0.925173] register_client_adhoc:find path.src 1 dest 583\n[    0.925363] register_client_adhoc:Client handle 24 usb0\n[    0.928724] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.928728] ehci-pci: EHCI PCI platform driver\n[    0.928741] ehci-platform: EHCI generic platform driver\n[    0.929108] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    0.929126] ohci-pci: OHCI PCI platform driver\n[    0.929141] ohci-platform: OHCI generic platform driver\n[    0.930181] usbcore: registered new interface driver usb-storage\n[    0.930193] usbcore: registered new interface driver usb_ehset_test\n[    0.930204] usbcore: registered new interface driver lvs\n[    0.933720] qpnp-pdphy c440000.qcom,spmi:qcom,pm6150@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    0.934134] usbcore: registered new interface driver xpad\n[    0.934146] usbcore: registered new interface driver usb_acecad\n[    0.934158] usbcore: registered new interface driver aiptek\n[    0.934169] usbcore: registered new interface driver gtco\n[    0.934181] usbcore: registered new interface driver hanwang\n[    0.934192] usbcore: registered new interface driver kbtab\n[    0.934355] goodix firmware update module init start\n[    0.934779] gf_platform: gf::irq_gpio:69\n[    0.934881] input: uinput-goodix as /devices/virtual/input/input1\n[    0.934918] gf_spi: version V1.2.01\n[    0.934987] gf_spi: status = 0x0\n[    0.935576] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm6150@0:qcom,pm6150_rtc: rtc core: registered qpnp_rtc as rtc0\n[    0.935802] i2c /dev entries driver\n[    0.935905] IR NEC protocol handler initialized\n[    0.935908] IR RC5(x/sz) protocol handler initialized\n[    0.935909] IR RC6 protocol handler initialized\n[    0.935911] IR JVC protocol handler initialized\n[    0.935912] IR Sony protocol handler initialized\n[    0.935913] IR SANYO protocol handler initialized\n[    0.935915] IR Sharp protocol handler initialized\n[    0.935916] IR MCE Keyboard/mouse protocol handler initialized\n[    0.935917] IR XMP protocol handler initialized\n[    0.936696] iommu: Adding device 9800000.qcom,msm_npu to group 16\n[    0.937814] msm_npu 9800000.qcom,msm_npu: Unable to startup the chan (-11)\n[    0.937817] msm_npu: aop mailbox is not available\n[    0.938238] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    0.939125] msm_vidc:  err: Failed to get platform resources\n[    0.939127] msm_vidc:  err: Failed to init core\n[    0.939136] msm_vidc_v4l2: probe of aa00000.qcom,vidc0 failed with error -22\n[    0.944213] iommu: Adding device aa00000.qcom,vidc1:non_secure_cb to group 17\n[    0.944677] iommu: Adding device aa00000.qcom,vidc1:secure_non_pixel_cb to group 18\n[    0.945916] iommu: Adding device aa00000.qcom,vidc1:secure_bitstream_cb to group 19\n[    0.946798] iommu: Adding device aa00000.qcom,vidc1:secure_pixel_cb to group 20\n[    0.947511] platform aa00000.qcom,vidc1:qcom,msm-vidc,mem_cdsp: assigned reserved memory node cdsp_region\n[    0.949350] i2c_geni 888000.i2c: Bus frequency is set to 1000000Hz.\n[    0.950170] i2c_geni 890000.i2c: Bus frequency is set to 400000Hz.\n[    0.951545] i2c_geni a84000.i2c: Bus frequency is set to 400000Hz.\n[    0.952549] nq-nci 0-0028: ese GPIO <OPTIONAL> error getting from OF node\n[    0.952582] nq-nci 0-0028: nqx_probe: ese gpio not provided\n[    0.952798] genirq: irq_chip msmgpio-dc did not update eff. affinity mask of irq 223\n[    1.016680] nq-nci 0-0028: nqx_probe: probing NFCC NQxxx exited successfully\n[    1.046248] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[1, 1], pwr[FAST MODE, FAST MODE], rate = 2\n[    1.054901] scsi 0:0:0:49488: Well-known LUN    WDC      SDINDDC4-64G     1078 PQ: 0 ANSI: 6\n[    1.069980] scsi 0:0:0:49456: Well-known LUN    WDC      SDINDDC4-64G     1078 PQ: 0 ANSI: 6\n[    1.078116] scsi 0:0:0:49476: Well-known LUN    WDC      SDINDDC4-64G     1078 PQ: 0 ANSI: 6\n[    1.085953] scsi 0:0:0:0: Direct-Access     WDC      SDINDDC4-64G     1078 PQ: 0 ANSI: 6\n[    1.096271] scsi 0:0:0:1: Direct-Access     WDC      SDINDDC4-64G     1078 PQ: 0 ANSI: 6\n[    1.112647] scsi 0:0:0:2: Direct-Access     WDC      SDINDDC4-64G     1078 PQ: 0 ANSI: 6\n[    1.128861] scsi 0:0:0:3: Direct-Access     WDC      SDINDDC4-64G     1078 PQ: 0 ANSI: 6\n[    1.144773] scsi 0:0:0:4: Direct-Access     WDC      SDINDDC4-64G     1078 PQ: 0 ANSI: 6\n[    1.161139] scsi 0:0:0:5: Direct-Access     WDC      SDINDDC4-64G     1078 PQ: 0 ANSI: 6\n[    1.204819] sd 0:0:0:5: [sdf] Write Protect is off\n[    1.204824] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    1.241268] sd 0:0:0:0: [sda] Write Protect is off\n[    1.241273] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.250883] sd 0:0:0:1: [sdb] Write Protect is off\n[    1.250886] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.258582] sd 0:0:0:2: [sdc] Write Protect is off\n[    1.258585] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.269116] sd 0:0:0:3: [sdd] Write Protect is off\n[    1.269119] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.323002] sd 0:0:0:4: [sde] Write Protect is off\n[    1.323006] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    1.339313]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6 sdf7 sdf8\n[    1.360462] [mi-touch] xiaomitouch_register_modedata: \n[    1.363155] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 21\n[    1.363383] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 22\n[    1.363435] platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node camera_region@8ab00000\n[    1.363723] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 23\n[    1.364026] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 24\n[    1.364362] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_fd to group 25\n[    1.364525] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 26\n[    1.365427] i2c_geni a8c000.i2c: Bus frequency is set to 400000Hz.\n[    1.366580] error: hwirq 0x78 is too large for :soc:pinctrl@3400000\n[    1.366592] ------------[ cut here ]------------\n[    1.366607] WARNING: CPU: 0 PID: 283 at kernel/irq/irqdomain.c:523 irq_domain_associate+0x170/0x1b4\n[    1.366614] CPU: 0 PID: 283 Comm: kworker/u16:5 Tainted: G S              4.14.230-perf-gf4d51ae67f2a-dirty #5\n[    1.366617] Hardware name: Qualcomm Technologies, Inc. SDMMAGPIE PM6150 DAVINCI (DT)\n[    1.366629] Workqueue: events_unbound async_run_entry_fn\n[    1.366635] task: 00000000eb2ebcfc task.stack: 00000000d60cb6a5\n[    1.366639] pc : irq_domain_associate+0x170/0x1b4\n[    1.366642] lr : irq_domain_associate+0x170/0x1b4\n[    1.366645] sp : ffffff801300b580 pstate : 60c00145\n[    1.366647] x29: ffffff801300b580 x28: 000000000000000c \n[    1.366651] x27: fffffff7ba5eeeb8 x26: 0000000000000001 \n[    1.366654] x25: ffffff98f850d240 x24: 0000000000000011 \n[    1.366657] x23: ffffff98f84e9be8 x22: fffffff7b22ba800 \n[    1.366660] x21: 0000000000000193 x20: 0000000000000078 \n[    1.366664] x19: 0000000000000193 x18: fffffff7ba35b008 \n[    1.366667] x17: 00000000000ef224 x16: 0000000000000000 \n[    1.366670] x15: 0000000000000082 x14: 0000000000000048 \n[    1.366673] x13: 0000000000010e24 x12: 0000000000000000 \n[    1.366676] x11: 0000000000000000 x10: ffffffffffffffff \n[    1.366679] x9 : 8a5137d2395d6500 x8 : 8a5137d2395d6500 \n[    1.366682] x7 : 0000000000000000 x6 : fffffff7ba36be23 \n[    1.366685] x5 : 0000000000000000 x4 : 0000000000000008 \n[    1.366688] x3 : 0000000000000030 x2 : 0000000000000001 \n[    1.366691] x1 : 0000000000000000 x0 : 0000000000000037 \n[    1.366696] \n               PC: 0xffffff98f5b43074:\n[    1.366697] 3074  d0014780 9123a000 f90012bf f90006bf 9454d58b 2a1703e0 a9434ff4 a94257f6\n[    1.366710] 3094  f9400bf7 a8c47bfd d65f03c0 f9400ac2 d00105e0 911ef000 2a1403e1 97ffcb98\n[    1.366719] 30b4  d4210000 128002b7 17fffff3 9000fd20 910e4800 2a1303e1 97ffcb91 d4210000\n[    1.366729] 30d4  128002b7 17ffffec f000fd00 91398000 2a1303e1 97ffcb8a d4210000 128002b7\n[    1.366739] \n               LR: 0xffffff98f5b43074:\n[    1.366740] 3074  d0014780 9123a000 f90012bf f90006bf 9454d58b 2a1703e0 a9434ff4 a94257f6\n[    1.366749] 3094  f9400bf7 a8c47bfd d65f03c0 f9400ac2 d00105e0 911ef000 2a1403e1 97ffcb98\n[    1.366759] 30b4  d4210000 128002b7 17fffff3 9000fd20 910e4800 2a1303e1 97ffcb91 d4210000\n[    1.366769] 30d4  128002b7 17ffffec f000fd00 91398000 2a1303e1 97ffcb8a d4210000 128002b7\n[    1.366779] \n               SP: 0xffffff801300b540:\n[    1.366780] b540  f5b430b4 ffffff98 60c00145 00000000 ffffffc8 ffffff80 395d6500 8a5137d2\n[    1.366790] b560  ffffffff ffffffff f5b430b4 ffffff98 1300b580 ffffff80 f5b430b4 ffffff98\n[    1.366799] b580  1300b5c0 ffffff80 f5b432d4 ffffff98 f84e9be8 ffffff98 f84e9be8 ffffff98\n[    1.366808] b5a0  00000078 00000000 00000193 00000000 b22ba800 fffffff7 00000078 00000000\n\n[    1.366820] Call trace:\n[    1.366824]  irq_domain_associate+0x170/0x1b4\n[    1.366827]  irq_create_mapping+0x14c/0x174\n[    1.366830]  irq_create_fwspec_mapping+0x270/0x398\n[    1.366833]  irq_create_of_mapping+0x58/0x7c\n[    1.366840]  of_irq_get+0x60/0x8c\n[    1.366847]  i2c_device_probe+0xa8/0x27c\n[    1.366853]  driver_probe_device+0x440/0x478\n[    1.366856]  __device_attach_driver+0x118/0x138\n[    1.366859]  bus_for_each_drv+0x7c/0xc4\n[    1.366861]  __device_attach+0xa8/0x134\n[    1.366863]  device_initial_probe+0x10/0x18\n[    1.366865]  bus_probe_device+0x30/0x90\n[    1.366869]  device_add+0x5e4/0x854\n[    1.366871]  device_register+0x1c/0x28\n[    1.366874]  i2c_new_device+0x310/0x330\n[    1.366879]  of_i2c_register_devices+0x234/0x280\n[    1.366881]  i2c_register_adapter+0x2a0/0x380\n[    1.366884]  __i2c_add_numbered_adapter+0x80/0xd4\n[    1.366886]  i2c_add_adapter+0x44/0xfc\n[    1.366889]  geni_i2c_probe+0x680/0x6cc\n[    1.366894]  platform_drv_probe+0x64/0xb8\n[    1.366897]  driver_probe_device+0x440/0x478\n[    1.366899]  __driver_attach+0xd0/0x100\n[    1.366901]  bus_for_each_dev+0x80/0xc8\n[    1.366903]  driver_attach+0x20/0x28\n[    1.366906]  driver_attach_async+0xc/0x14\n[    1.366910]  async_run_entry_fn+0x44/0x178\n[    1.366917]  process_one_work+0x1fc/0x49c\n[    1.366920]  worker_thread+0x310/0x5b0\n[    1.366923]  kthread+0x1ac/0x1bc\n[    1.366929]  ret_from_fork+0x10/0x18\n[    1.366935] ---[ end trace f6aef0dec34fc1ce ]---\n[    1.367992] akm09970: akm09970_probe: 685 IRQ is #301.\n[    1.369165] akm09970: akm09970_probe: 727 Probe exit\n[    1.371626] PMIC@SID0: SMB1390 v2.0 options: 0, 0, 0, 0\n[    1.371846] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    1.373992] register_client_adhoc:find path.src 1 dest 589\n[    1.374273] register_client_adhoc:Client handle 24 cam_ahb\n[    1.374436] register_client_adhoc:find path.src 136 dest 512\n[    1.374622] register_client_adhoc:Client handle 25 cam_hf_0_mnoc\n[    1.374744] register_client_adhoc:find path.src 146 dest 778\n[    1.374785] register_client_adhoc:Client handle 26 cam_hf_0_camnoc\n[    1.374872] register_client_adhoc:find path.src 172 dest 512\n[    1.375047] register_client_adhoc:Client handle 27 cam_hf_1_mnoc\n[    1.375158] register_client_adhoc:find path.src 178 dest 778\n[    1.375205] register_client_adhoc:Client handle 28 cam_hf_1_camnoc\n[    1.375290] register_client_adhoc:find path.src 137 dest 512\n[    1.375472] register_client_adhoc:Client handle 29 cam_sf_0_mnoc\n[    1.375580] register_client_adhoc:find path.src 148 dest 778\n[    1.375619] register_client_adhoc:Client handle 30 cam_sf_0_camnoc\n[    1.375775] register_client_adhoc:find path.src 171 dest 512\n[    1.375950] register_client_adhoc:Client handle 31 cam_sf_1_mnoc\n[    1.376057] register_client_adhoc:find path.src 179 dest 778\n[    1.376099] register_client_adhoc:Client handle 32 cam_sf_1_camnoc\n[    1.382514] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[18][cpas-cdm][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    1.386109] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[9][iferdi][0] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.386905] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[10][ifenrdi][0] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.388610] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[11][iferdi][1] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.389396] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[12][ifenrdi][1] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.390524] CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 525 No clk named ife_dsp_clk found. Dev vfe2\n[    1.390528] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 109 Option clk get failed with rc -14\n[    1.390772] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1020 Invalid mux type: 0\n[    1.390775] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1020 Invalid mux type: 0\n[    1.390898] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[13][iferdi][2] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.391659] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[14][ifenrdi][2] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.394083] CAM_INFO: CAM-ISP: cam_isp_dev_probe: 171 Camera ISP probe complete\n[    1.396383] CAM_INFO: CAM: cam_res_mgr_probe: 692 Disable shared gpio support.\n[    1.399829] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 428 Device Type :0\n[    1.402944] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 428 Device Type :1\n[    1.405087] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    1.405122] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    1.407462] CAM_ERR: CAM-EEPROM: cam_eeprom_driver_init: 588 hw_version_platform = 5\n[    1.415797] CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 170 Camera JPEG probe complete\n[    1.417169] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[23][fd][0] comp[7200000], comp_ab[7200000], uncomp[7200000]\n[    1.419144]  sdd: sdd1 sdd2 sdd3 sdd4 sdd5\n[    1.419928]  sdc: sdc1 sdc2\n[    1.420320]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21 sda22 sda23 sda24 sda25 sda26 sda27 sda28 sda29 sda30 sda31 sda32\n[    1.421613]  sdb: sdb1 sdb2\n[    1.426527] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[24][lrmecpas][0] comp[7200000], comp_ab[7200000], uncomp[7200000]\n[    1.427330] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[17][cam-cdm-intf][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    1.428103]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51\n[    1.432359] usbcore: registered new interface driver uvcvideo\n[    1.432363] USB Video Class driver (1.1.1)\n[    1.433789] use default ffc_low_tbat\n[    1.433791] use default ffc_high_tbat\n[    1.433801] fcc_calibrate = 0\n[    1.433862] Couldn't parse device tree rc=-517\n[    1.434322] SMB1390: smb1390_master_probe: Couldn't parse device tree rc=-517\n[    1.447251] device-mapper: uevent: version 1.0.3\n[    1.447358] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com\n[    1.448860] bt_dt_parse_vreg_info: qca,bt-vdd-vl: is not provided in device tree\n[    1.448864] bt_dt_parse_vreg_info: qca,bt-vdd-vm: is not provided in device tree\n[    1.448867] bt_dt_parse_vreg_info: qca,bt-vdd-5c: is not provided in device tree\n[    1.448870] bt_dt_parse_vreg_info: qca,bt-vdd-5a: is not provided in device tree\n[    1.448874] bt_dt_parse_vreg_info: qca,bt-vdd-vh: is not provided in device tree\n[    1.448892] bt_dt_parse_vreg_info: qca,bt-vdd-ldo: is not provided in device tree\n[    1.448895] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    1.448900] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in device tree\n[    1.448903] bt_power_populate_dt_pinfo: bt-3P3-gpio not provided in devicetree\n[    1.448905] bt_power_populate_dt_pinfo: bt-1P3-gpio not provided in devicetree\n[    1.448908] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.448910] bt_power_populate_dt_pinfo: clock not provided in device tree\n[    1.449765] EDAC DEVICE0: Giving out device to module soc:kryo-erp controller cache: DEV soc:kryo-erp (INTERRUPT)\n[    1.451219] qpnp_vibrator_ldo_probe: Vibrator LDO successfully registered: uV = 3000000, overdrive = disabled\n[    1.451628] hidraw: raw HID events driver (C) Jiri Kosina\n[    1.452375] usbcore: registered new interface driver usbhid\n[    1.452377] usbhid: USB HID core driver\n[    1.452469] ashmem: initialized\n[    1.452506] wlan_hdd_state wlan major(494) initialized\n[    1.452528] ipa_ut ipa_ut_module_init:1045 Loading IPA test module...\n[    1.452830] bimc-bwmon 90b6300.qcom,cpu-cpu-llcc-bwmon: BW HWmon governor registered.\n[    1.452877] bimc-bwmon 90cd000.qcom,cpu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    1.452940] bimc-bwmon 9960300.qcom,npu-npu-ddr-bwmon: BW HWmon governor registered.\n[    1.453463] arm-memlat-mon soc:qcom,cpu0-cpu-l3-latmon: Memory Latency governor registered.\n[    1.453498] arm-memlat-mon soc:qcom,cpu6-cpu-l3-latmon: Memory Latency governor registered.\n[    1.453534] arm-memlat-mon soc:qcom,cpu0-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.453571] arm-memlat-mon soc:qcom,cpu6-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.453608] arm-memlat-mon soc:qcom,cpu0-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.453642] arm-memlat-mon soc:qcom,cpu6-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.453678] arm-memlat-mon soc:qcom,cpu0-computemon: Compute governor registered.\n[    1.453711] arm-memlat-mon soc:qcom,cpu6-computemon: Compute governor registered.\n[    1.456760] register_client_adhoc:find path.src 1 dest 770\n[    1.456963] register_client_adhoc:Client handle 33 soc:qcom,cpu-cpu-llcc-bw\n[    1.457593] register_client_adhoc:find path.src 129 dest 512\n[    1.457670] register_client_adhoc:Client handle 34 soc:qcom,cpu-llcc-ddr-bw\n[    1.458302] register_client_adhoc:find path.src 1 dest 770\n[    1.458359] register_client_adhoc:Client handle 35 soc:qcom,cpu0-cpu-llcc-lat\n[    1.458620] register_client_adhoc:find path.src 1 dest 770\n[    1.458739] register_client_adhoc:Client handle 36 soc:qcom,cpu6-cpu-llcc-lat\n[    1.459101] register_client_adhoc:find path.src 129 dest 512\n[    1.459155] register_client_adhoc:Client handle 37 soc:qcom,cpu0-llcc-ddr-lat\n[    1.459513] register_client_adhoc:find path.src 129 dest 512\n[    1.459567] register_client_adhoc:Client handle 38 soc:qcom,cpu6-llcc-ddr-lat\n[    1.459929] register_client_adhoc:find path.src 129 dest 512\n[    1.459987] register_client_adhoc:Client handle 39 soc:qcom,cpu0-cpu-ddr-latfloor\n[    1.460438] register_client_adhoc:find path.src 129 dest 512\n[    1.460493] register_client_adhoc:Client handle 40 soc:qcom,cpu6-cpu-ddr-latfloor\n[    1.460883] register_client_adhoc:find path.src 154 dest 512\n[    1.461047] register_client_adhoc:Client handle 41 soc:qcom,npu-npu-ddr-bw\n[    1.461269] register_client_adhoc:find path.src 1 dest 627\n[    1.461459] register_client_adhoc:Client handle 42 soc:qcom,snoc_cnoc_keepalive\n[    1.462252] register_client_adhoc:find path.src 26 dest 512\n[    1.462375] register_client_adhoc:Client handle 43 soc:qcom,gpubw\n[    1.465415] qcom-llcc-pmu 90cc000.llcc-pmu: Registered llcc_pmu, type: 8\n[    1.466445] usbcore: registered new interface driver snd-usb-audio\n[    1.466709] iommu: Adding device soc:usb_audio_qmi_dev to group 27\n[    1.475448] [nxp] tfa98xx_i2c_init(): TFA98XX driver version v6.5.2_xxxxxxxxxx\n[    1.475957] [nxp] tfa98xx_i2c_probe(): addr=0x34\n[    1.476028] tfa98xx 3-0034: property nxp,spk-id-pin not detected in node /soc/i2c@0x890000/tfa98xx@34\n[    1.479060] input: goodix_ts as /devices/platform/goodix_ts.0/input/input2\n[    1.510219] [nxp] tfa98xx_i2c_probe(): TFA9874 detected\n[    1.510226] [nxp] tfa98xx_append_i2c_address(): tfa98xx_append_i2c_address()  dai_drv[0].name = [tfa98xx-aif-3-34]\n[    1.510230] [nxp] tfa98xx_append_i2c_address(): tfa98xx_append_i2c_address()  dai_drv[0].playback.stream_name = [AIF Playback-3-34]\n[    1.510235] [nxp] tfa98xx_append_i2c_address(): tfa98xx_append_i2c_address()  dai_drv[0].capture.stream_name = [AIF Capture-3-34]\n[    1.510446] [nxp] tfa98xx_init_misc_device(): entry\n[    1.510555] [nxp] tfa98xx_init_misc_device(): register misc device successed.\n[    1.510558] [nxp] tfa98xx_i2c_probe(): tfa98xx_i2c_probe Probe completed successfully!\n[    1.511021] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.511038] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.511051] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.511065] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.511079] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.514567] msm-dai-q6-hdmi soc:qcom,msm-dai-q6-hdmi_ms: invalid device ID 24578\n[    1.515013] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: msm_auxpcm_dev_probe: invalid DT intf name senary\n[    1.527013] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: group id not supported 0x9150\n[    1.527023] msm-dai-tdm: probe of soc:qcom,msm-dai-tdm-sen-rx failed with error -22\n[    1.527042] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: group id not supported 0x9151\n[    1.527047] msm-dai-tdm: probe of soc:qcom,msm-dai-tdm-sen-tx failed with error -22\n[    1.537937] GACT probability NOT on\n[    1.537950] Mirror/redirect action on\n[    1.537958] netem: version 1.3\n[    1.537959] u32 classifier\n[    1.537961]     Actions configured\n[    1.537971] Netfilter messages via NETLINK v0.30.\n[    1.538188] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)\n[    1.538263] ctnetlink v0.93: registering with nfnetlink.\n[    1.538497] xt_time: kernel timezone is -0000\n[    1.538580] gre: GRE over IPv4 demultiplexor driver\n[    1.538582] IPv4 over IPsec tunneling driver\n[    1.538864] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    1.539171] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    1.539263] Initializing XFRM netlink socket\n[    1.539272] IPsec XFRM device driver\n[    1.539442] NET: Registered protocol family 10\n[    1.540984] Segment Routing with IPv6\n[    1.541022] mip6: Mobile IPv6\n[    1.541031] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    1.541453] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    1.541833] NET: Registered protocol family 17\n[    1.541843] NET: Registered protocol family 15\n[    1.541858] Ebtables v2.0 registered\n[    1.541986] l2tp_core: L2TP core driver, V2.0\n[    1.541992] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    1.541993] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    1.542003] l2tp_netlink: L2TP netlink interface\n[    1.542017] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    1.542018] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    1.542079] sctp: Hash tables configured (bind 256/256)\n[    1.542770] actuator_regulator: supplied by pm6150l_bob\n[    1.544930] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.549836] register_client_adhoc:find path.src 61 dest 512\n[    1.552293] register_client_adhoc:find path.src 61 dest 676\n[    1.552454] register_client_adhoc:find path.src 1 dest 583\n[    1.552635] register_client_adhoc:Client handle 44 usb0\n[    1.555588] sps:BAM 0x000000000a704000 is registered.\n[    1.555629] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.555635] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    1.555639] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.555642] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    1.557043] qpnp-pdphy c440000.qcom,spmi:qcom,pm6150@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.557648] QG-K: qg_parse_dt: PMIC subtype 40 Digital major 2\n[    1.557682] QG-K: qg_parse_dt: DT: S2 FIFO length=5 low_vbat_length=2 acc_length=128 acc_interval=100\n[    1.557686] QG-K: qg_parse_dt: DT: OCV timer_expiry =-22min ocv_tol_threshold=-22uV\n[    1.557727] QG-K: qg_parse_dt: DT: cl_min_start_soc=10 cl_max_start_soc=15 cl_min_temp=150 cl_max_temp=500\n[    1.557729] QG-K: qg_parse_dt: use default soc_decimal_rate.\n[    1.557733] QG-K: qg_parse_dt: DT: vbatt_empty_mv=3100mV vbatt_low_mv=3300mV delta_soc=1 ext-sns=0\n[    1.557746] QG-K: qg_set_wa_flags: wa_flags = 6\n[    1.557780] QG-K: qg_master_hold: Master hold = 1\n[    1.557935] QG-K: qg_master_hold: Master hold = 0\n[    1.572535] QG-K: get_batt_id_ohm: batt_id_mv=757, batt_id_ohm=67751\n[    1.573266] of_batterydata_get_best_profile: f10_swd found\n[    1.573517] QG-K: qg_batterydata_init: QG Battery-profile loaded\n[    1.573524] QG-K: qg_load_battery_profile: Failed to read temp comp hysteresis rc:-22\n[    1.573526] QG-K: qg_load_battery_profile: Failed to max temp comp value rc:-22\n[    1.573529] QG-K: qg_load_battery_profile: don't use dts ffc_current_cfg\n[    1.573534] QG-K: qg_load_battery_profile: profile=f10_swd FV=4400000uV FCC=3500ma\n[    1.573537] QG-K: qg_setup_battery: battery_missing=0 batt_id_ohm=67751 Ohm profile_loaded=1 profile=f10_swd\n[    1.573584] QG-K: qg_sanitize_sdam: SDAM valid\n[    1.573701] QG-K: qg_determine_pon_soc: S7_PON_OCV OCV=4092437\n[    1.573714] QG-K: qg_determine_pon_soc: S3_GOOD_OCV OCV=4136036\n[    1.573726] QG-K: qg_determine_pon_soc: S3_LAST_OCV OCV=4098471\n[    1.573738] QG-K: qg_determine_pon_soc: SDAM_PON_OCV OCV=0\n[    1.575802] QG-K: qg_determine_pon_soc: Shutdown: Valid=1 SOC=81 OCV=4132600uV time=58013563secs temp=263, time_now=58013760secs temp_now=269 S7_soc=75\n[    1.575805] QG-K: qg_determine_pon_soc: Using SHUTDOWN_SOC @ PON\n[    1.575809] QG-K: qg_determine_pon_soc: Using SHUTDOWN_SOC @ PON\n[    1.575813] QG-K: qg_determine_pon_soc: v_float=4400000 v_cutoff=3400000 FULL_SOC=99 CUTOFF_SOC=2 calcualte_soc=76 pon_soc=75 shutdown[SDAM_SOC]=81 final soc = 80 ibat = 0\n[    1.577744] QG-K: qg_store_soc_params: SDAM write param 0 value=1\n[    1.577755] QG-K: qg_store_soc_params: SDAM write param 1 value=80\n[    1.577765] QG-K: qg_store_soc_params: SDAM write param 2 value=269\n[    1.577774] QG-K: qg_store_soc_params: SDAM write param 3 value=0\n[    1.577786] QG-K: qg_store_soc_params: SDAM write param 4 value=4132600\n[    1.577798] QG-K: qg_store_soc_params: SDAM write param 5 value=0\n[    1.577810] QG-K: qg_store_soc_params: SDAM write param 6 value=58013760\n[    1.577813] QG-K: qg_determine_pon_soc: using SHUTDOWN_SOC @ PON ocv_uv=4132600uV soc=80\n[    1.578070] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    1.578317] QG-K: qg_request_interrupt: IRQ qg-vbat-low registered wakeable=1\n[    1.578453] QG-K: qg_request_interrupt: IRQ qg-vbat-empty registered wakeable=1\n[    1.578733] QG-K: qg_request_interrupt: IRQ qg-fifo-done registered wakeable=1\n[    1.578875] QG-K: qg_request_interrupt: IRQ qg-good-ocv registered wakeable=1\n[    1.578944] QG-K: qpnp_qg_probe: QG initialized! battery_profile=f10_swd SOC=80 QG_subtype=4\n[    1.579179] use default ffc_low_tbat\n[    1.579181] use default ffc_high_tbat\n[    1.579189] fcc_calibrate = 0\n[    1.579269] failed to get uart_en_gpio\n[    1.579974] pm6150_charger: smblib_set_charge_param: usb otg current limit = 3000000 (0x05)\n[    1.580001] pm6150_charger: smblib_set_charge_param: DC input current limit = 100000 (0x02)\n[    1.581124] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    1.581196] pm6150_charger: smblib_set_charge_param: switching frequency = 1050 (0x08)\n[    1.581202] pm6150_charger: smblib_set_sw_thermal_regulation: WDOG SNARL INT Disabled\n[    1.581263] pm6150_charger: smblib_update_usb_type: APSD=UNKNOWN PD=0 QC3P5=0\n[    1.581270] pm6150_charger: smblib_usb_plugin_locked: IRQ: usbin-plugin detached\n[    1.581339] pm6150_charger: typec_state_change_irq_handler: IRQ: cc-state-change; Type-C NONE detected\n[    1.581353] pm6150_charger: usb_source_change_irq_handler: APSD_STATUS = 0x00\n[    1.581366] pm6150_charger: usb_source_change_irq_handler: APSD_STATUS = 0x00\n[    1.581404] pm6150_charger: batt_temp_changed_irq_handler: IRQ: determine-initial-status\n[    1.581406] pm6150_charger: wdog_bark_irq_handler: IRQ: determine-initial-status\n[    1.585655] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    1.587140] of_batterydata_get_best_profile: f10_swd found\n[    1.587215] pm6150_charger: smblib_process_thermal_readings: Current temperatures: \tDIE_TEMP: 378,\tCONN_TEMP: 265,\tSMB_TEMP: -61,\tSKIN_TEMP: -61\n               THERMAL_STATUS: 5\n[    1.587441] pm6150_charger: smblib_run_aicl: re-running AICL\n[    1.587485] pm6150_charger: smblib_set_charge_param: fast charge current = 3500000 (0x46)\n[    1.587498] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    1.587509] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    1.587567] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    1.587877] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    1.589459] QG-K: qg_get_ffc_iterm_for_chg: ffc_terminal_current other is 830\n[    1.591339] pm6150_charger: smblib_run_aicl: re-running AICL\n[    1.591363] pm6150_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 1!\n[    1.591366] pm6150_charger: smblib_set_prop_typec_power_role: power role already in 1, ignore!\n[    1.591470] SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    1.591473] QPNP SMB5 probed successfully\n[    1.591930] QG-K: qg_charge_full_update: msoc=80 health=1 charge_full=0 charge_done=0 charge_status=2\n[    1.592006] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    1.595051] SMB1390: smb1390_probe: smb1390 Master probed successfully\n[    1.596429] QG-K: qg_charge_full_update: msoc=80 health=1 charge_full=0 charge_done=0 charge_status=2\n[    1.610561] Error registering TZ zone:-19 for dt_ch:85\n[    1.610984] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    1.611088] SMB1390: smb1390_ilim_vote_cb: Client missing\n[    1.611234] pm6150_charger: smblib_run_aicl: re-running AICL\n[    1.611320] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    1.611772] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.611951] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.612089] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.612223] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.612389] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.612982] pm6150_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:269, thermal_levels:16chg->system_temp_level:0, charger_type:0\n[    1.615156] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.620753] register_client_adhoc:find path.src 61 dest 512\n[    1.621063] register_client_adhoc:find path.src 61 dest 676\n[    1.621222] register_client_adhoc:find path.src 1 dest 583\n[    1.621396] register_client_adhoc:Client handle 44 usb0\n[    1.621524] QG-K: qg_charge_full_update: msoc=80 health=1 charge_full=0 charge_done=0 charge_status=2\n[    1.624365] pm6150_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:269, thermal_levels:16chg->system_temp_level:0, charger_type:0\n[    1.624632] sps:BAM 0x000000000a704000 is registered.\n[    1.624673] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.624679] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    1.624683] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.624686] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    1.626270] usbpd usbpd0: do not limit current\n[    1.626275] usbpd usbpd0: failed to read pd unverified pps vbus limit\n[    1.626992] i2c_geni a8c000.i2c: i2c error :-107\n[    1.627080] i2c_geni a8c000.i2c: i2c error :-107\n[    1.627166] i2c_geni a8c000.i2c: i2c error :-107\n[    1.627251] i2c_geni a8c000.i2c: i2c error :-107\n[    1.627336] i2c_geni a8c000.i2c: i2c error :-107\n[    1.627421] i2c_geni a8c000.i2c: i2c error :-107\n[    1.627506] i2c_geni a8c000.i2c: i2c error :-107\n[    1.627590] i2c_geni a8c000.i2c: i2c error :-107\n[    1.627676] i2c_geni a8c000.i2c: i2c error :-107\n[    1.627762] i2c_geni a8c000.i2c: i2c error :-107\n[    1.627942] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.628086] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.628223] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.628356] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.628492] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.629033] pm6150_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:269, thermal_levels:16chg->system_temp_level:0, charger_type:0\n[    1.631411] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.635663] pm6150_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:269, thermal_levels:16chg->system_temp_level:0, charger_type:0\n[    1.636327] register_client_adhoc:find path.src 61 dest 512\n[    1.636754] register_client_adhoc:find path.src 61 dest 676\n[    1.636915] register_client_adhoc:find path.src 1 dest 583\n[    1.637089] register_client_adhoc:Client handle 44 usb0\n[    1.637613] pm6150_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:269, thermal_levels:16chg->system_temp_level:0, charger_type:0\n[    1.637977] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.638117] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.638253] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.638385] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.638520] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.639566] pm6150_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:269, thermal_levels:16chg->system_temp_level:0, charger_type:0\n[    1.640152] registered taskstats version 1\n[    1.640154] Loading compiled-in X.509 certificates\n[    1.640163] page_owner is disabled\n[    1.640245] Key type ._fscrypt registered\n[    1.640247] Key type .fscrypt registered\n[    1.640249] Key type fscrypt-provisioning registered\n[    1.642211] Please check if `measure` clk is registered.\n[    1.646468] qusb_phy_init(): Programming TUNE1 parameter as:36\n[    1.646470] qusb_phy_init(): Override TUNE1 parameter as:0\n[    1.646472] qusb_phy_init(): Programming pll_bias parameter as:0\n[    1.646742] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode\n[    1.647346] pm6150_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:269, thermal_levels:16chg->system_temp_level:0, charger_type:0\n[    1.650550] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    1.650690] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    1.650729] SMB1390: smb1390_ilim_vote_cb: Client missing\n[    1.650849] pm6150_charger: smblib_run_aicl: re-running AICL\n[    1.653305] QG-K: qg_charge_full_update: msoc=80 health=1 charge_full=0 charge_done=0 charge_status=2\n[    1.657134] sps:BAM 0x000000000a704000 is registered.\n[    1.658228] msm-dwc3 a600000.ssusb: DWC3 in low power mode\n[    1.659043] ADSPRPC: Secure VMID = 22\n[    1.659045] ADSPRPC: Secure VMID = 37\n[    1.659729] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 28\n[    1.660599] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 29\n[    1.660871] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.661104] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 30\n[    1.661367] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.661583] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 31\n[    1.661845] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.662056] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 32\n[    1.662317] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.662521] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 33\n[    1.662760] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.662966] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 34\n[    1.663887] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.664096] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 35\n[    1.664343] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.664548] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 36\n[    1.664793] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.665006] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 37\n[    1.665243] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.665446] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13 to group 38\n[    1.665674] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.665898] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14 to group 39\n[    1.666193] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.666402] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb15 to group 40\n[    1.666650] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.668375] [drm-dp] dp_display_init_aux_switch: cannot parse qcom,dp-aux-switch handle\n[    1.670063] register_client_adhoc:find path.src 1 dest 590\n[    1.670313] register_client_adhoc:Client handle 45 mdss_reg\n[    1.670342] register_client_adhoc:find path.src 22 dest 512\n[    1.670527] register_client_adhoc:find path.src 23 dest 512\n[    1.670704] register_client_adhoc:Client handle 46 mdss_sde\n[    1.670752] [drm:sde_dbg_init:5222] evtlog_status: enable:3, panic:1, dump:2\n[    1.670776] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops sde_rsc_comp_ops)\n[    1.670782] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops sde_wb_comp_ops)\n[    1.671020] msm-dsi-display:[dsi_display_bind] Successfully bind display panel 'dsi_ss_fhd_ea_f10_cmd_display'\n[    1.671213] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display (ops dsi_display_comp_ops)\n[    1.671218] msm_drm ae00000.qcom,mdss_mdp: bound ae90000.qcom,dp_display (ops dp_display_comp_ops)\n[    1.671224] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-secondary (ops dsi_display_comp_ops)\n[    1.671243] [drm] mapped mdp address space @000000005bb1320d\n[    1.671339] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: vbif_nrt_phys\n[    1.671362] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: sid_phys\n[    1.671384] [drm:_sde_kms_get_splash_data:3290] splash mem num_regions:1\n[    1.671395] [drm:_sde_kms_get_splash_data:3325] splash mem for disp:1 add:9c000000 size:1700000\n[    1.671895] [drm:sde_kms_hw_init:3471] sde hardware revision:0x50020000\n[    1.672975] [drm] Created domain mdp_ns [80000000,80000000] secure=0\n[    1.674826] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 41\n[    1.674846] [drm] probing device qcom,smmu_sde_sec\n[    1.674852] [drm] Created domain mdp_s [80000000,80000000] secure=1\n[    1.678424] [drm-dp] dp_aux_get: invalid input\n[    1.678430] [drm-dp] dp_init_sub_modules: failed to initialize aux, rc = -19\n[    1.678440] [drm:sde_connector_init:2287] [sde error]post-init failed, -19\n[    1.678453] [drm-dp-mst]: dp_mst_drm_bridge_init: mst not initialized. cache encoder information\n[    1.678458] [drm-dp-mst]: dp_mst_drm_bridge_init: mst not initialized. cache encoder information\n[    1.678479] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.678802] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.679564] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.679600] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.680426] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    1.680428] [drm] No driver support for vblank timestamp query.\n[    1.681166] [drm] Initialized msm_drm 1.2.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    1.681258] msm-dsi-panel:[dsi_panel_parse_topology:3081] default topology: lm: 1 comp_enc:0 intf: 1\n[    1.681362] msm-dsi-panel:[dsi_panel_parse_partial_update_caps:3171] partial update disabled as the property is not set\n[    1.681503] dsi-ctrl:[_dsi_ctrl_setup_isr] [DSI_0] IRQ 473 registered\n[    1.683582] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-qos-lut : doesn't exist in device tree\n[    1.683586] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-danger-lut : doesn't exist in device tree\n[    1.683589] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-safe-lut : doesn't exist in device tree\n[    1.683668] register_client_adhoc:find path.src 1 dest 590\n[    1.683971] register_client_adhoc:Client handle 47 sde_reg\n[    1.684171] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 42\n[    1.684206] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    1.684354] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 43\n[    1.684370] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    1.684444] register_client_adhoc:find path.src 25 dest 512\n[    1.684622] register_client_adhoc:Client handle 48 mdss_rotator\n[    1.684633] register_client_adhoc:find path.src 1 dest 590\n[    1.684802] register_client_adhoc:Client handle 49 mdss_rot_reg\n[    1.685129] No change in context(0==0), skip\n[    1.686062] sde_rotator_evtlog_create_debugfs: evtlog_status: enable:1, panic:1, dump:2\n[    1.686613] sde_rotator ae00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    1.686857] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.687038] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.687176] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.687310] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.687448] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.688376] iommu: Adding device 62e40000.slim:qcom,iommu_slim_ctrl_cb to group 44\n[    1.688800] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.688940] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.689075] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.689207] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.689341] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.692572] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    1.692836] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm6150@0:qcom,pm6150_rtc: setting system clock to 1971-11-03 10:56:00 UTC (58013760)\n[    1.693464] CAM_ERR: CAM-CCI: cam_cci_assign_fops: 501 Invalid dev node:00000000f568a29a offset: 0\n[    1.694229] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.694402] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.694542] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.694675] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.694812] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.695432] lpm_levels: register_cluster_lpm_stats()\n[    1.695525] lpm_levels: register_cluster_lpm_stats()\n[    1.697637] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.697795] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.697932] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.698066] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.698204] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.700690] rmnet_ipa3 started initialization\n[    1.701372] RNDIS_IPA module is loaded.\n[    1.705277] msm_bus_late_init: Remove handoff bw requests\n[    1.706100] dbu1: disabling\n[    1.706137] actuator_regulator: disabling\n[    1.706166] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    1.706240] ALSA device list:\n[    1.706242]   No soundcards found.\n[    1.706282] Warning: unable to open an initial console.\n[    1.707729] Freeing unused kernel memory: 6144K\n[    2.640088] pm6150_charger: smblib_icl_change_work: icl_settled=0\n[    2.640479] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    2.640492] SMB1390: smb1390_ilim_vote_cb: Client missing\n[    2.640615] pm6150_charger: smblib_run_aicl: re-running AICL\n[    2.647258] QG-K: qg_battery_soc_smooth_tracking: soc:-22, last_soc:-22, raw_soc:80, soc_changed:0, update_now:0, charge_status:2, batt_ma:369\n[    2.647269] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:369, s:2\n[    2.647770] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    2.647907] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    2.647946] SMB1390: smb1390_ilim_vote_cb: Client missing\n[    2.648072] pm6150_charger: smblib_run_aicl: re-running AICL\n[    2.651609] QG-K: qg_charge_full_update: msoc=80 health=1 charge_full=0 charge_done=0 charge_status=2\n[    2.681847] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    2.682031] cpu1 \n[    2.682085] cpu6 \n[    2.682127] \n               Offline CPUs: \n[    2.685432] cpu1 \n[    2.711098] CPU1: shutdown\n[    2.711916] cpu2 \n[    2.741756] CPU2: shutdown\n[    2.742724] cpu3 \n[    2.772320] CPU3: shutdown\n[    2.774267] cpu4 \n[    2.801314] CPU4: shutdown\n[    2.801947] cpu5 \n[    2.842024] CPU5: shutdown\n[    2.843023] cpu6 \n[    2.882069] CPU6: shutdown\n[    2.882999] cpu7 \n[    2.912776] CPU7: shutdown\n\n[    3.601131] of_batterydata_get_best_profile: f10_swd found\n[    3.601157] QCOM-STEPCHG: get_step_chg_jeita_setting_from_profile: ffc-max-voltage_uv reading failed, try max-voltage_uv, rc=-22\n[    3.601185] QCOM-STEPCHG: get_step_chg_jeita_setting_from_profile: don't use dts step_chg_hysteresis: 100000\n[    3.601201] QCOM-STEPCHG: read_range_data_from_node: Count qcom,step-chg-ranges failed, rc=-22\n[    3.601234] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.601244] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.601254] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.601265] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.601275] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.601286] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 0decidegree ~ 50decidegre, 390000uA\n[    3.601297] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 51decidegree ~ 100decidegre, 1170000uA\n[    3.601308] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 101decidegree ~ 150decidegre, 2730000uA\n[    3.601319] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 151decidegree ~ 450decidegre, 3500000uA\n[    3.601330] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 451decidegree ~ 580decidegre, 1950000uA\n[    3.601341] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 0decidegree ~ 50decidegre, 4400000uV\n[    3.601352] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 51decidegree ~ 100decidegre, 4400000uV\n[    3.601362] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 101decidegree ~ 150decidegre, 4400000uV\n[    3.601373] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 151decidegree ~ 450decidegre, 4400000uV\n[    3.601384] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 451decidegree ~ 580decidegre, 4100000uV\n[    7.922910] Sampling power every 250 ms\n               Baseline power usage: \n[   12.645196] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:0, update_now:0, charge_status:2, batt_ma:177\n[   12.645214] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:177, s:2\n[   22.895928] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:0, update_now:0, charge_status:2, batt_ma:161\n[   22.895947] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:161, s:2\n[   26.721634] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[   26.722024] SMB1390: smb1390_ilim_vote_cb: Client missing\n[   26.722234] pm6150_charger: smblib_run_aicl: re-running AICL\n[   26.723369] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[   26.723838] SMB1390: smb1390_ilim_vote_cb: Client missing\n[   26.723970] pm6150_charger: smblib_run_aicl: re-running AICL\n[   26.726225] QG-K: qg_charge_full_update: msoc=80 health=1 charge_full=0 charge_done=0 charge_status=2\n[   26.726317] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[   26.729029] QG-K: qg_get_ffc_iterm_for_chg: ffc_terminal_current other is 830\n[   26.731229] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 269 FCC = 3500000uA FV = 4400000uV\n[   26.731299] pm6150_charger: smblib_set_charge_param: float voltage = 4340000 (0x4a)\n[   26.736655] QG-K: qg_charge_full_update: msoc=80 health=1 charge_full=0 charge_done=0 charge_status=2\n[   33.125184] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:0, update_now:0, charge_status:2, batt_ma:166\n[   33.125202] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:166, s:2\n[   43.365210] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:0, update_now:0, charge_status:2, batt_ma:152\n[   43.365228] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:152, s:2\n[   53.613211] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:0, update_now:0, charge_status:2, batt_ma:160\n[   53.613229] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:160, s:2\n[   63.845194] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:154\n[   63.845213] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:154, s:2\n[   74.085203] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:152\n[   74.085221] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:152, s:2\n[   83.333474] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000\n[   83.333598] CPU1: Booted secondary processor [51df805e]\n[   84.336828] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:152\n[   84.336846] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:152, s:2\n[   84.344167] 618 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 576 768 1017 1248 1324 1497 1612 1708 1804\n               \n                300: \n[   94.562641] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:163\n[   94.562660] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:163, s:2\n[  104.802588] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:166\n[  104.802605] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:166, s:2\n[  115.042589] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:173\n[  115.042605] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:173, s:2\n[  125.282587] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:175\n[  125.282604] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:175, s:2\n[  135.522586] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:176\n[  135.522603] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:176, s:2\n[  145.762621] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:166\n[  145.762638] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:166, s:2\n[  156.002587] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:166\n[  156.002603] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:166, s:2\n[  166.242581] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:165\n[  166.242598] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:165, s:2\n[  176.482574] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:162\n[  176.482591] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:162, s:2\n[  186.722719] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:162\n[  186.722736] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:162, s:2\n[  196.962612] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:162\n[  196.962628] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:162, s:2\n[  207.202577] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:163\n[  207.202594] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:163, s:2\n[  217.442412] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:160\n[  217.442429] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:160, s:2\n[  227.682580] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:165\n[  227.682596] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:165, s:2\n[  237.922573] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:177\n[  237.922589] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:177, s:2\n[  248.174076] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:178\n[  248.174093] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:178, s:2\n[  258.402564] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:174\n[  258.402580] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:174, s:2\n[  268.642567] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:168\n[  268.642584] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:168, s:2\n[  278.889325] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:173\n[  278.889342] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:173, s:2\n[  289.122583] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:163\n[  289.122600] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:163, s:2\n[  299.362604] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:163\n[  299.362620] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:163, s:2\n[  305.120393] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120425] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121122] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121144] audio_notifer_reg_service: service SSR_ADSP is in use\n[  305.121197] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121205] ADSPRPC: Audio PD restart notifier locator down\n[  305.121237] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121244] ADSPRPC: Audio PD restart notifier locator down\n[  309.604573] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:162\n[  309.604589] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:162, s:2\n[  319.842567] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:163\n[  319.842583] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:163, s:2\n[  330.082572] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:162\n[  330.082589] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:162, s:2\n[  340.322571] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:162\n[  340.322587] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:162, s:2\n[  350.562604] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:166\n[  350.562620] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:166, s:2\n[  360.802410] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:177\n[  360.802428] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:177, s:2\n[  362.114093]  1114     3.7 C/MHz     66 mW   17.8 J   16.8 I/mJ   269.4 s\n                576: \n[  371.042383] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:186\n[  371.042395] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:186, s:2\n[  381.282681] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:178\n[  381.282692] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:178, s:2\n[  391.522333] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:179\n[  391.522344] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:179, s:2\n[  401.762355] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:169\n[  401.762365] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:169, s:2\n[  412.002334] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:168\n[  412.002344] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:168, s:2\n[  422.242335] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:166\n[  422.242345] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:166, s:2\n[  432.482331] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:168\n[  432.482341] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:168, s:2\n[  442.722330] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:165\n[  442.722341] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:165, s:2\n[  452.962356] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:166\n[  452.962367] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:166, s:2\n[  463.202335] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:172\n[  463.202345] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:172, s:2\n[  473.451546] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:172\n[  473.451556] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:172, s:2\n[  483.682335] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:180\n[  483.682345] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:180, s:2\n[  493.922335] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:182\n[  493.922345] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:182, s:2\n[  504.166910] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:175\n[  504.166919] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:175, s:2\n[  510.582412]  2139     3.7 C/MHz     82 mW   11.4 J   26.2 I/mJ   140.3 s\n                768: \n[  514.404668] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:148\n[  514.404678] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:148, s:2\n[  524.642283] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:169\n[  524.642293] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:169, s:2\n[  534.883229] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:175\n[  534.883237] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:175, s:2\n[  545.122298] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:176\n[  545.122306] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:176, s:2\n[  555.362312] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:184\n[  555.362320] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:184, s:2\n[  565.602283] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:176\n[  565.602291] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:176, s:2\n[  575.842288] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:173\n[  575.842296] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:173, s:2\n[  586.082377] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:169\n[  586.082385] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:169, s:2\n[  596.322293] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:169\n[  596.322301] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:169, s:2\n[  606.562303] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:170\n[  606.562312] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:170, s:2\n[  616.802285] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:169\n[  616.802294] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:169, s:2\n[  623.978414]  2852     3.7 C/MHz     91 mW    9.6 J   31.2 I/mJ   105.2 s\n               1017: \n[  627.044640] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:153\n[  627.044648] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:153, s:2\n[  637.282254] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:178\n[  637.282262] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:178, s:2\n[  647.522241] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:187\n[  647.522248] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:187, s:2\n[  657.762247] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:177\n[  657.762253] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:177, s:2\n[  668.014300] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:172\n[  668.014307] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:172, s:2\n[  678.242237] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:174\n[  678.242244] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:174, s:2\n[  688.482237] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:172\n[  688.482244] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:172, s:2\n[  698.729269] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:184\n[  698.729276] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:184, s:2\n[  708.962248] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:174\n[  708.962255] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:174, s:2\n[  711.689768]  3779     3.7 C/MHz    106 mW    8.4 J   35.6 I/mJ    79.4 s\n               1248: \n[  719.204691] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:156\n[  719.204698] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:156, s:2\n[  729.444626] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:177\n[  729.444633] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:177, s:2\n[  739.682212] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:189\n[  739.682218] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:189, s:2\n[  749.922211] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:176\n[  749.922216] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:176, s:2\n[  760.162216] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:176\n[  760.162222] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:176, s:2\n[  770.402207] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:185\n[  770.402213] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:185, s:2\n[  780.642217] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:189\n[  780.642223] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:189, s:2\n[  784.812253]  4634     3.7 C/MHz    120 mW    7.8 J   38.7 I/mJ    64.7 s\n               1324: \n[  790.884567] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:151\n[  790.884573] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:151, s:2\n[  801.122214] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:177\n[  801.122221] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:177, s:2\n[  811.362208] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:191\n[  811.362214] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:191, s:2\n[  821.602199] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:179\n[  821.602204] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:179, s:2\n[  831.842225] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:174\n[  831.842231] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:174, s:2\n[  842.082212] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:186\n[  842.082217] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:186, s:2\n[  852.322206] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:178\n[  852.322211] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:178, s:2\n[  854.162521]  4919     3.7 C/MHz    125 mW    7.6 J   39.4 I/mJ    61.0 s\n               1497: \n[  862.562223] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:181\n[  862.562229] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:181, s:2\n[  872.802195] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:180\n[  872.802201] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:180, s:2\n[  883.042199] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:193\n[  883.042204] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:193, s:2\n[  893.291777] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:179\n[  893.291783] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:179, s:2\n[  903.522192] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:178\n[  903.522197] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:178, s:2\n[  913.762948] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:190\n[  913.762954] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:190, s:2\n[  916.477066]  5561     3.7 C/MHz    136 mW    7.4 J   40.8 I/mJ    54.0 s\n               1612: \n[  924.007893] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:165\n[  924.007900] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:165, s:2\n[  934.242198] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:181\n[  934.242204] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:181, s:2\n[  944.482189] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:182\n[  944.482194] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:182, s:2\n[  954.722288] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:185\n[  954.722294] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:185, s:2\n[  964.962194] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:190\n[  964.962199] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:190, s:2\n[  974.769046]  5988     3.7 C/MHz    143 mW    7.2 J   41.9 I/mJ    50.1 s\n               1708: \n[  975.204544] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:154\n[  975.204550] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:154, s:2\n[  985.442190] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:184\n[  985.442197] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:184, s:2\n[  995.682184] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:184\n[  995.682190] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:184, s:2\n[ 1005.922084] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:199\n[ 1005.922089] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:199, s:2\n[ 1016.162190] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:195\n[ 1016.162195] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:195, s:2\n[ 1026.402183] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:185\n[ 1026.402188] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:185, s:2\n[ 1030.304470]  6345     3.7 C/MHz    152 mW    7.2 J   41.8 I/mJ    47.3 s\n               1804: \n[ 1036.644581] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:150\n[ 1036.644587] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:150, s:2\n[ 1046.882186] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:202\n[ 1046.882193] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:202, s:2\n[ 1057.122177] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:190\n[ 1057.122181] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:190, s:2\n[ 1067.362179] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:187\n[ 1067.362184] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:187, s:2\n[ 1077.602183] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:198\n[ 1077.602188] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:198, s:2\n[ 1083.353531] CPU1: shutdown\n[ 1083.357522] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000\n[ 1083.357556] CPU6: Booted secondary processor [51df804e]\n[ 1084.367338]  6702     3.7 C/MHz    168 mW    7.5 J   39.9 I/mJ    44.8 s\n               \n               \n               ===== CPU 6 =====\n               Frequencies: 300 652 806 979 1094 1209 1324 1555 1708 1843 1939 2169 2208\n               \n                300: \n[ 1087.864763] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:167\n[ 1087.864781] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:167, s:2\n[ 1098.082705] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:175\n[ 1098.082724] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:175, s:2\n[ 1108.322692] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:172\n[ 1108.322709] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:172, s:2\n[ 1118.569813] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:184\n[ 1118.569832] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:184, s:2\n[ 1128.802691] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:176\n[ 1128.802708] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:176, s:2\n[ 1139.042705] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:173\n[ 1139.042721] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:173, s:2\n[ 1149.285274] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:176\n[ 1149.285292] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:176, s:2\n[ 1159.522692] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:186\n[ 1159.522709] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:186, s:2\n[ 1169.762728] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:174\n[ 1169.762745] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:174, s:2\n[ 1180.002696] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:176\n[ 1180.002713] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:176, s:2\n[ 1190.243314] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:189\n[ 1190.243331] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:189, s:2\n[ 1200.482695] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:173\n[ 1200.482713] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:173, s:2\n[ 1210.722694] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:174\n[ 1210.722711] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:174, s:2\n[ 1220.965214] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:154\n[ 1220.965233] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:154, s:2\n[ 1221.049631]  2338     7.8 C/MHz    112 mW   14.4 J   20.8 I/mJ   128.3 s\n                652: \n[ 1231.202699] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:215\n[ 1231.202717] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:215, s:2\n[ 1241.442698] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:192\n[ 1241.442715] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:192, s:2\n[ 1251.682693] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:188\n[ 1251.682710] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:188, s:2\n[ 1261.922698] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:187\n[ 1261.922715] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:187, s:2\n[ 1272.162685] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:208\n[ 1272.162703] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:208, s:2\n[ 1282.402695] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:194\n[ 1282.402712] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:194, s:2\n[ 1288.308433]  5086     7.8 C/MHz    168 mW    9.9 J   30.3 I/mJ    59.0 s\n                806: \n[ 1292.645160] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:149\n[ 1292.645178] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:149, s:2\n[ 1302.882700] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:195\n[ 1302.882718] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:195, s:2\n[ 1313.132354] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:203\n[ 1313.132372] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:203, s:2\n[ 1323.362739] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:195\n[ 1323.362756] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:195, s:2\n[ 1333.602707] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:193\n[ 1333.602725] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:193, s:2\n[ 1343.847804] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:201\n[ 1343.847821] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:201, s:2\n[ 1344.463632]  6285     7.8 C/MHz    191 mW    9.1 J   32.8 I/mJ    47.7 s\n                979: \n[ 1354.082702] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:207\n[ 1354.082721] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:207, s:2\n[ 1364.322698] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:203\n[ 1364.322715] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:203, s:2\n[ 1374.562872] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:205\n[ 1374.562889] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:205, s:2\n[ 1384.802695] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:219\n[ 1384.802713] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:219, s:2\n[ 1392.032997]  7634     7.8 C/MHz    231 mW    9.1 J   33.0 I/mJ    39.3 s\n               1094: \n[ 1395.045179] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:153\n[ 1395.045197] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:153, s:2\n[ 1405.282705] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:211\n[ 1405.282723] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:211, s:2\n[ 1415.522702] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:224\n[ 1415.522720] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:224, s:2\n[ 1425.762752] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:211\n[ 1425.762769] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:211, s:2\n[ 1435.565464]  8530     7.8 C/MHz    263 mW    9.3 J   32.4 I/mJ    35.2 s\n               1209: \n[ 1436.005210] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:155\n[ 1436.005229] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:155, s:2\n[ 1446.243045] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:225\n[ 1446.243064] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:225, s:2\n[ 1456.482700] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:222\n[ 1456.482717] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:222, s:2\n[ 1466.722581] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:217\n[ 1466.722598] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:217, s:2\n[ 1475.816411]  9430     7.8 C/MHz    291 mW    9.3 J   32.4 I/mJ    31.8 s\n               1324: \n[ 1476.965233] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:153\n[ 1476.965251] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:153, s:2\n[ 1487.202695] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:242\n[ 1487.202713] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:242, s:2\n[ 1497.442692] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:229\n[ 1497.442710] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:229, s:2\n[ 1507.694991] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:227\n[ 1507.695009] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:227, s:2\n[ 1513.287403] 10326     7.8 C/MHz    328 mW    9.5 J   31.5 I/mJ    29.1 s\n               1555: \n[ 1517.924443] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:169\n[ 1517.924461] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:169, s:2\n[ 1528.162744] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:252\n[ 1528.162763] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:252, s:2\n[ 1538.410212] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:252\n[ 1538.410229] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:252, s:2\n[ 1546.467928] 12115     7.8 C/MHz    425 mW   10.5 J   28.5 I/mJ    24.8 s\n               1708: \n[ 1548.645167] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:172\n[ 1548.645184] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:172, s:2\n[ 1558.882694] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:268\n[ 1558.882712] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:268, s:2\n[ 1569.125561] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:271\n[ 1569.125578] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:271, s:2\n[ 1577.376857] 13324     7.8 C/MHz    489 mW   11.0 J   27.2 I/mJ    22.5 s\n               1843: \n[ 1579.365203] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:151\n[ 1579.365221] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:151, s:2\n[ 1589.602595] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:301\n[ 1589.602613] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:301, s:2\n[ 1599.842693] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:287\n[ 1599.842710] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:287, s:2\n[ 1606.517512] 14355     7.8 C/MHz    560 mW   11.7 J   25.6 I/mJ    20.9 s\n               1939: \n[ 1610.085162] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:159\n[ 1610.085179] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:159, s:2\n[ 1620.322699] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:317\n[ 1620.322718] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:317, s:2\n[ 1630.562727] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:303\n[ 1630.562745] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:303, s:2\n[ 1634.647808] 15114     7.8 C/MHz    622 mW   12.3 J   24.3 I/mJ    19.9 s\n               2169: \n[ 1640.804467] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:152\n[ 1640.804486] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:152, s:2\n[ 1651.042870] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:360\n[ 1651.042888] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:360, s:2\n[ 1660.760848] 16910     7.8 C/MHz    819 mW   14.5 J   20.6 I/mJ    17.8 s\n               2208: \n[ 1661.285158] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:162\n[ 1661.285176] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:162, s:2\n[ 1671.522698] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:350\n[ 1671.522716] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:350, s:2\n[ 1681.762755] QG-K: qg_battery_soc_smooth_tracking: soc:80, last_soc:80, raw_soc:80, soc_changed:1, update_now:0, charge_status:2, batt_ma:354\n[ 1681.762774] QG-K: soc_monitor_work: soc:80, raw_soc:80, c:354, s:2\n[ 1686.644090] CPU6: shutdown\n[ 1686.678197] 17188     7.8 C/MHz    828 mW   14.5 J   20.7 I/mJ    17.5 s\n               \n               \n               Benchmark finished!\n[ 1686.710641] \n               real\t28m4.868s\n               user\t23m36.823s\n               sys\t0m2.718s\n"
  },
  {
    "path": "results/sm7150/second/post_bench_interrupts.txt",
    "content": "           CPU0       \n  4:       6457   PDC-GIC  19 Level     arch_timer\n  6:     177859   PDC-GIC  38 Level     arch_mem_timer\n  8:          0   PDC-GIC  21 Level     arm-pmu\n  9:          0   PDC-GIC  82 Level     arm_dsu_0\n 26:          0   PDC-GIC 323 Level     ngd_slim_irq\n 28:          0   PDC-GIC  32 Edge      apps_wdog_bark\n 30:          0   PDC-GIC 524 Level     eud_irq\n 31:          0   PDC-GIC  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 32:          0   PDC-GIC  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 33:          0   PDC-GIC 538 Level     tsens-upper-lower\n 34:          0   PDC-GIC 540 Level     tsens-critical\n 35:          0   PDC-GIC 539 Level     tsens-upper-lower\n 36:          0   PDC-GIC 541 Level     tsens-critical\n 37:        900   PDC-GIC  37 Level     apps_rsc\n 38:          0   PDC-GIC 161 Level     display_rsc\n 39:          0   PDC-GIC 620 Edge      qcom,qmp-npu-low\n 40:          0   PDC-GIC 621 Edge      qcom,qmp-npu-high\n 41:          7   PDC-GIC 421 Edge      qcom,qmp-aop\n 42:          0   PDC-GIC 483 Edge      smp2p\n 43:          0   PDC-GIC 204 Edge      smp2p\n 44:          0   PDC-GIC 608 Edge      smp2p\n 47:        354   PDC-GIC 297 Edge      1d84000.ufshc\n 48:          0   PDC-GIC 194 Edge      adsp\n 49:          0   PDC-GIC 304 Level     sps\n 51:          0   PDC-GIC 610 Edge      cdsp\n 52:          0   PDC-GIC 298 Edge      modem\n 69:          0   PDC-GIC 397 Level     arm-smmu-context-fault\n 70:          5   PDC-GIC 635 Level     i2c_geni\n 71:          4   PDC-GIC 637 Level     i2c_geni\n 72:          0   PDC-GIC 636 Level     msm_serial_geni0\n 74:       3967   PDC-GIC 386 Level     i2c_geni\n 75:        238   PDC-GIC 388 Level     i2c_geni\n 76:          0   PDC-GIC 206 Level     msm_vidc\n 77:          0   PDC-GIC 115 Edge      msm_drm\n 78:          0   PDC-GIC 509 Edge      csiphy\n 79:          0   PDC-GIC 510 Edge      csiphy\n 80:          0   PDC-GIC 511 Edge      csiphy\n 81:          0   PDC-GIC 639 Edge      csiphy\n 82:          0   PDC-GIC 492 Edge      cci\n 83:          0   PDC-GIC 493 Edge      cci\n 84:          1   PDC-GIC 500 Edge      cpas-cdm\n 85:          0   PDC-GIC 496 Edge      csid\n 86:          2   PDC-GIC 497 Edge      ife\n 87:          0   PDC-GIC 498 Edge      csid\n 88:          2   PDC-GIC 499 Edge      ife\n 89:          0   PDC-GIC 470 Edge      csid-lite\n 90:          2   PDC-GIC 466 Edge      ife-lite\n 91:          0   PDC-GIC 495 Edge      a5\n 92:          0   PDC-GIC 506 Edge      jpeg\n 93:          0   PDC-GIC 507 Edge      jpegdma\n 94:          2   PDC-GIC 494 Edge      fd\n 95:          1   PDC-GIC 508 Edge      lrme\n 96:          0   PDC-GIC 491 Edge      cpas_camnoc\n 97:          0   PDC-GIC 261 Level     arm-smmu global fault\n 98:          0   PDC-GIC 263 Level     arm-smmu global fault\n 99:          0   PDC-GIC 396 Level     arm-smmu-context-fault\n100:          0   PDC-GIC 398 Level     arm-smmu-context-fault\n101:          0   PDC-GIC 399 Level     arm-smmu-context-fault\n106:          0   PDC-GIC  97 Level     arm-smmu global fault\n108:          0   PDC-GIC 129 Level     arm-smmu-context-fault\n110:          0   PDC-GIC 131 Level     arm-smmu-context-fault\n111:          0   PDC-GIC 132 Level     arm-smmu-context-fault\n112:          0   PDC-GIC 133 Level     arm-smmu-context-fault\n113:          0   PDC-GIC 134 Level     arm-smmu-context-fault\n114:          0   PDC-GIC 135 Level     arm-smmu-context-fault\n115:          0   PDC-GIC 136 Level     arm-smmu-context-fault\n116:          0   PDC-GIC 137 Level     arm-smmu-context-fault\n117:          0   PDC-GIC 138 Level     arm-smmu-context-fault\n118:          0   PDC-GIC 139 Level     arm-smmu-context-fault\n119:          0   PDC-GIC 140 Level     arm-smmu-context-fault\n120:          0   PDC-GIC 141 Level     arm-smmu-context-fault\n121:          0   PDC-GIC 142 Level     arm-smmu-context-fault\n122:          0   PDC-GIC 143 Level     arm-smmu-context-fault\n123:          0   PDC-GIC 144 Level     arm-smmu-context-fault\n124:          0   PDC-GIC 145 Level     arm-smmu-context-fault\n125:          0   PDC-GIC 146 Level     arm-smmu-context-fault\n126:          0   PDC-GIC 147 Level     arm-smmu-context-fault\n127:          0   PDC-GIC 148 Level     arm-smmu-context-fault\n128:          0   PDC-GIC 149 Level     arm-smmu-context-fault\n129:          0   PDC-GIC 150 Level     arm-smmu-context-fault\n130:          0   PDC-GIC 213 Level     arm-smmu-context-fault\n131:          0   PDC-GIC 214 Level     arm-smmu-context-fault\n132:          0   PDC-GIC 215 Level     arm-smmu-context-fault\n133:          0   PDC-GIC 216 Level     arm-smmu-context-fault\n134:          0   PDC-GIC 217 Level     arm-smmu-context-fault\n135:          0   PDC-GIC 218 Level     arm-smmu-context-fault\n136:          0   PDC-GIC 219 Level     arm-smmu-context-fault\n137:          0   PDC-GIC 220 Level     arm-smmu-context-fault\n138:          0   PDC-GIC 221 Level     arm-smmu-context-fault\n139:          0   PDC-GIC 222 Level     arm-smmu-context-fault\n140:          0   PDC-GIC 223 Level     arm-smmu-context-fault\n141:          0   PDC-GIC 224 Level     arm-smmu-context-fault\n142:          0   PDC-GIC 347 Level     arm-smmu-context-fault\n143:          0   PDC-GIC 348 Level     arm-smmu-context-fault\n199:         10  msmgpio-dc   9 Edge      goodix_ts\n201:          0  msmgpio-dc  10 Edge      TE_GPIO\n223:          2  msmgpio-dc  37 Level     nq-nci\n251:          0  msmgpio-dc  56 Edge      tfa98xx\n301:          0  msmgpio-dc  93 Edge      akm09970_irq\n328:          0  pmic_arb 8388807 Edge      pon_kpdpwr_status\n329:          0  pmic_arb 8454343 Edge      pon_resin_status\n331:          0  pmic_arb 8716487 Edge      pon_kpdpwr_resin_bark\n332:        451  pmic_arb 51380437 Edge      pm-adc5\n333:          0  pmic_arb 55574742 Edge      thr-int-en\n334:          0  pmic_arb 24117455 Edge      sig-tx\n335:          0  pmic_arb 24182991 Edge      sig-rx\n336:          0  pmic_arb 24248527 Edge      msg-tx\n337:          0  pmic_arb 24314063 Edge      msg-rx\n338:          0  pmic_arb 24379599 Edge      msg-tx-failed\n339:          0  pmic_arb 24445135 Edge      msg-tx-discarded\n340:          0  pmic_arb 24510671 Edge      msg-rx-discarded\n342:          0  pmic_arb 30408915 Edge      bcl-lvl0\n343:          0  pmic_arb 30474451 Edge      bcl-lvl1\n344:          0  pmic_arb 30539987 Edge      bcl-lvl2\n345:          0  pmic_arb 37748948 Edge      qcom,temp-alarm\n348:          0  pmic_arb 203423971 Level     i2c_pmic_stat_irq\n352:          0  pmic_arb 1111490794 Edge      qcom,temp-alarm\n353:          0  pmic_arb 1137705197 Edge      bcl-lvl0\n354:          0  pmic_arb 1137770733 Edge      bcl-lvl1\n355:          0  pmic_arb 1137836269 Edge      bcl-lvl2\n356:          7  pmic_arb 1125122283 Edge      pm-adc5\n357:          0  pmic_arb 1129316588 Edge      thr-int-en\n359:          0  pmic_arb 1276117232 Edge      volume_up\n370:          0  pmic_arb 1563427082 Edge      qpnp_flash_led_fault_irq\n371:          0  pmic_arb 1563623690 Edge      qpnp_flash_led_all_ramp_down_done_irq\n372:          0  pmic_arb 1563689226 Edge      qpnp_flash_led_all_ramp_up_done_irq\n374:          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n375:          0   PDC-GIC 162 Edge      pwr_event_irq\n376:          0   PDC-GIC 518 Level     ss_phy_irq\n377:          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n378:          0   PDC-GIC 332 Level     kgsl-3d0\n379:          0   PDC-GIC 336 Level     HFI\n380:          0   PDC-GIC 337 Level     GMU\n381:          0   PDC-GIC 615 Edge      error_irq\n382:          0   PDC-GIC 617 Edge      wdg_bite_irq\n383:          0   PDC-GIC 619 Level     ipc_irq\n384:          0   PDC-GIC  64 Level     limits_sensor-00\n385:          0   PDC-GIC  65 Level     limits_sensor-01\n386:          0     smp2p   2 Edge      adsp\n387:          0     smp2p   0 Edge      adsp\n388:          0     smp2p   1 Edge      error_ready_interrupt\n389:          0     smp2p   3 Edge      adsp\n390:          0     smp2p   2 Edge      cdsp\n391:          0     smp2p   0 Edge      cdsp\n392:          0     smp2p   1 Edge      error_ready_interrupt\n393:          0     smp2p   3 Edge      cdsp\n394:          0     smp2p   2 Edge      modem\n395:          0     smp2p   0 Edge      modem\n396:          0     smp2p   1 Edge      error_ready_interrupt\n397:          0     smp2p   3 Edge      modem\n398:          0     smp2p   7 Edge      modem\n399:          0     smp2p   0 Edge      smp2p_sleepstate\n400:          0   PDC-GIC 165 Edge      dwc3\n402:          0  pmic_arb 101777626 Edge      qpnp_rtc_alarm\n403:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n405:          0  pmic_arb 75563224 Edge      qg-vbat-low\n406:          0  pmic_arb 75628760 Edge      qg-vbat-empty\n407:         26  pmic_arb 75694296 Edge      qg-fifo-done\n408:          0  pmic_arb 75759832 Edge      qg-good-ocv\n409:          0  pmic_arb 16777416 Edge      chgr-error\n410:          0  pmic_arb 16842952 Edge      chg-state-change\n417:          0  pmic_arb 17825993 Edge      otg-fail\n421:          0  pmic_arb 18088137 Edge      high-duty-cycle\n422:          0  pmic_arb 18153673 Edge      input-current-limiting\n424:          0  pmic_arb 18284745 Edge      switcher-power-ok\n425:          0  pmic_arb 18874570 Edge      bat-temp\n426:          0  pmic_arb 19005642 Edge      bat-ov\n427:          0  pmic_arb 19071178 Edge      bat-low\n428:          0  pmic_arb 19136714 Edge      bat-therm-or-id-missing\n429:          0  pmic_arb 19202250 Edge      bat-terminal-missing\n432:          0  pmic_arb 19923147 Edge      usbin-collapse\n433:          0  pmic_arb 19988683 Edge      usbin-vashdn\n434:          0  pmic_arb 20054219 Edge      usbin-uv\n435:          0  pmic_arb 20119755 Edge      usbin-ov\n436:          0  pmic_arb 20185291 Edge      usbin-plugin\n438:          0  pmic_arb 20316363 Edge      usbin-src-change\n439:          0  pmic_arb 20381899 Edge      usbin-icl-change\n441:          0  pmic_arb 21102796 Edge      dcin-uv\n442:          0  pmic_arb 21168332 Edge      dcin-ov\n443:          0  pmic_arb 21233868 Edge      dcin-plugin\n445:          0  pmic_arb 21364940 Edge      dcin-pon\n446:          0  pmic_arb 21430476 Edge      dcin-en\n447:          0  pmic_arb 22020301 Edge      typec-or-rid-detect-change\n449:          0  pmic_arb 22151373 Edge      typec-cc-state-change\n450:          0  pmic_arb 22216909 Edge      typec-vconn-oc\n452:          0  pmic_arb 22347981 Edge      typec-attach-detach\n453:          0  pmic_arb 22413517 Edge      typec-legacy-cable-detect\n455:          0  pmic_arb 23068878 Edge      wdog-snarl\n456:          0  pmic_arb 23134414 Edge      wdog-bark\n458:          0  pmic_arb 23265486 Edge      aicl-done\n459:          0  pmic_arb 23331022 Edge      smb-en\n461:          0  pmic_arb 23462094 Edge      temp-change\n463:          0  pmic_arb 185663708 Edge      sdam-sts\n464:          0  i2c_pmic_irq_chip 4097 Edge      switcher-off-window\n465:          0  i2c_pmic_irq_chip 4098 Edge      switcher-off-fault\n466:          0  i2c_pmic_irq_chip 4100 Edge      tsd-fault\n467:          0  i2c_pmic_irq_chip 4104 Edge      irev-fault\n468:          0  i2c_pmic_irq_chip 4112 Edge      vph-ov-hard\n469:          0  i2c_pmic_irq_chip 4128 Edge      vph-ov-soft\n470:          0  i2c_pmic_irq_chip 4160 Edge      ilim\n471:          0  i2c_pmic_irq_chip 4224 Edge      temp-alarm\n472:          0       sde  12 Edge      dp_display_isr\n473:          0       sde   4 Edge      dsi_ctrl\nIPI0:       196       Rescheduling interrupts\nIPI1:         9       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:         0       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm7150/second/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  4:        532          2          1          1          1          1          4          1   PDC-GIC  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   PDC-GIC  38 Level     arch_mem_timer\n  8:          0          0          0          0          0          0          0          0   PDC-GIC  21 Level     arm-pmu\n  9:          0          0          0          0          0          0          0          0   PDC-GIC  82 Level     arm_dsu_0\n 26:          0          0          0          0          0          0          0          0   PDC-GIC 323 Level     ngd_slim_irq\n 28:          0          0          0          0          0          0          0          0   PDC-GIC  32 Edge      apps_wdog_bark\n 30:          0          0          0          0          0          0          0          0   PDC-GIC 524 Level     eud_irq\n 31:          0          0          0          0          0          0          0          0   PDC-GIC  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 32:          0          0          0          0          0          0          0          0   PDC-GIC  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 33:          0          0          0          0          0          0          0          0   PDC-GIC 538 Level     tsens-upper-lower\n 34:          0          0          0          0          0          0          0          0   PDC-GIC 540 Level     tsens-critical\n 35:          0          0          0          0          0          0          0          0   PDC-GIC 539 Level     tsens-upper-lower\n 36:          0          0          0          0          0          0          0          0   PDC-GIC 541 Level     tsens-critical\n 37:        215          0          0          0          0          0          0          0   PDC-GIC  37 Level     apps_rsc\n 38:          0          0          0          0          0          0          0          0   PDC-GIC 161 Level     display_rsc\n 39:          0          0          0          0          0          0          0          0   PDC-GIC 620 Edge      qcom,qmp-npu-low\n 40:          0          0          0          0          0          0          0          0   PDC-GIC 621 Edge      qcom,qmp-npu-high\n 41:          7          0          0          0          0          0          0          0   PDC-GIC 421 Edge      qcom,qmp-aop\n 42:          0          0          0          0          0          0          0          0   PDC-GIC 483 Edge      smp2p\n 43:          0          0          0          0          0          0          0          0   PDC-GIC 204 Edge      smp2p\n 44:          0          0          0          0          0          0          0          0   PDC-GIC 608 Edge      smp2p\n 47:        341          0          0          0          0          0          0          0   PDC-GIC 297 Edge      1d84000.ufshc\n 48:          0          0          0          0          0          0          0          0   PDC-GIC 194 Edge      adsp\n 49:          0          0          0          0          0          0          0          0   PDC-GIC 304 Level     sps\n 51:          0          0          0          0          0          0          0          0   PDC-GIC 610 Edge      cdsp\n 52:          0          0          0          0          0          0          0          0   PDC-GIC 298 Edge      modem\n 69:          0          0          0          0          0          0          0          0   PDC-GIC 397 Level     arm-smmu-context-fault\n 70:          5          0          0          0          0          0          0          0   PDC-GIC 635 Level     i2c_geni\n 71:          4          0          0          0          0          0          0          0   PDC-GIC 637 Level     i2c_geni\n 72:          0          0          0          0          0          0          0          0   PDC-GIC 636 Level     msm_serial_geni0\n 74:        298          0          0          0          0          0          0          0   PDC-GIC 386 Level     i2c_geni\n 75:        166          0          0          0          0          0          0          0   PDC-GIC 388 Level     i2c_geni\n 76:          0          0          0          0          0          0          0          0   PDC-GIC 206 Level     msm_vidc\n 77:          0          0          0          0          0          0          0          0   PDC-GIC 115 Edge      msm_drm\n 78:          0          0          0          0          0          0          0          0   PDC-GIC 509 Edge      csiphy\n 79:          0          0          0          0          0          0          0          0   PDC-GIC 510 Edge      csiphy\n 80:          0          0          0          0          0          0          0          0   PDC-GIC 511 Edge      csiphy\n 81:          0          0          0          0          0          0          0          0   PDC-GIC 639 Edge      csiphy\n 82:          0          0          0          0          0          0          0          0   PDC-GIC 492 Edge      cci\n 83:          0          0          0          0          0          0          0          0   PDC-GIC 493 Edge      cci\n 84:          1          0          0          0          0          0          0          0   PDC-GIC 500 Edge      cpas-cdm\n 85:          0          0          0          0          0          0          0          0   PDC-GIC 496 Edge      csid\n 86:          2          0          0          0          0          0          0          0   PDC-GIC 497 Edge      ife\n 87:          0          0          0          0          0          0          0          0   PDC-GIC 498 Edge      csid\n 88:          2          0          0          0          0          0          0          0   PDC-GIC 499 Edge      ife\n 89:          0          0          0          0          0          0          0          0   PDC-GIC 470 Edge      csid-lite\n 90:          2          0          0          0          0          0          0          0   PDC-GIC 466 Edge      ife-lite\n 91:          0          0          0          0          0          0          0          0   PDC-GIC 495 Edge      a5\n 92:          0          0          0          0          0          0          0          0   PDC-GIC 506 Edge      jpeg\n 93:          0          0          0          0          0          0          0          0   PDC-GIC 507 Edge      jpegdma\n 94:          2          0          0          0          0          0          0          0   PDC-GIC 494 Edge      fd\n 95:          1          0          0          0          0          0          0          0   PDC-GIC 508 Edge      lrme\n 96:          0          0          0          0          0          0          0          0   PDC-GIC 491 Edge      cpas_camnoc\n 97:          0          0          0          0          0          0          0          0   PDC-GIC 261 Level     arm-smmu global fault\n 98:          0          0          0          0          0          0          0          0   PDC-GIC 263 Level     arm-smmu global fault\n 99:          0          0          0          0          0          0          0          0   PDC-GIC 396 Level     arm-smmu-context-fault\n100:          0          0          0          0          0          0          0          0   PDC-GIC 398 Level     arm-smmu-context-fault\n101:          0          0          0          0          0          0          0          0   PDC-GIC 399 Level     arm-smmu-context-fault\n106:          0          0          0          0          0          0          0          0   PDC-GIC  97 Level     arm-smmu global fault\n108:          0          0          0          0          0          0          0          0   PDC-GIC 129 Level     arm-smmu-context-fault\n110:          0          0          0          0          0          0          0          0   PDC-GIC 131 Level     arm-smmu-context-fault\n111:          0          0          0          0          0          0          0          0   PDC-GIC 132 Level     arm-smmu-context-fault\n112:          0          0          0          0          0          0          0          0   PDC-GIC 133 Level     arm-smmu-context-fault\n113:          0          0          0          0          0          0          0          0   PDC-GIC 134 Level     arm-smmu-context-fault\n114:          0          0          0          0          0          0          0          0   PDC-GIC 135 Level     arm-smmu-context-fault\n115:          0          0          0          0          0          0          0          0   PDC-GIC 136 Level     arm-smmu-context-fault\n116:          0          0          0          0          0          0          0          0   PDC-GIC 137 Level     arm-smmu-context-fault\n117:          0          0          0          0          0          0          0          0   PDC-GIC 138 Level     arm-smmu-context-fault\n118:          0          0          0          0          0          0          0          0   PDC-GIC 139 Level     arm-smmu-context-fault\n119:          0          0          0          0          0          0          0          0   PDC-GIC 140 Level     arm-smmu-context-fault\n120:          0          0          0          0          0          0          0          0   PDC-GIC 141 Level     arm-smmu-context-fault\n121:          0          0          0          0          0          0          0          0   PDC-GIC 142 Level     arm-smmu-context-fault\n122:          0          0          0          0          0          0          0          0   PDC-GIC 143 Level     arm-smmu-context-fault\n123:          0          0          0          0          0          0          0          0   PDC-GIC 144 Level     arm-smmu-context-fault\n124:          0          0          0          0          0          0          0          0   PDC-GIC 145 Level     arm-smmu-context-fault\n125:          0          0          0          0          0          0          0          0   PDC-GIC 146 Level     arm-smmu-context-fault\n126:          0          0          0          0          0          0          0          0   PDC-GIC 147 Level     arm-smmu-context-fault\n127:          0          0          0          0          0          0          0          0   PDC-GIC 148 Level     arm-smmu-context-fault\n128:          0          0          0          0          0          0          0          0   PDC-GIC 149 Level     arm-smmu-context-fault\n129:          0          0          0          0          0          0          0          0   PDC-GIC 150 Level     arm-smmu-context-fault\n130:          0          0          0          0          0          0          0          0   PDC-GIC 213 Level     arm-smmu-context-fault\n131:          0          0          0          0          0          0          0          0   PDC-GIC 214 Level     arm-smmu-context-fault\n132:          0          0          0          0          0          0          0          0   PDC-GIC 215 Level     arm-smmu-context-fault\n133:          0          0          0          0          0          0          0          0   PDC-GIC 216 Level     arm-smmu-context-fault\n134:          0          0          0          0          0          0          0          0   PDC-GIC 217 Level     arm-smmu-context-fault\n135:          0          0          0          0          0          0          0          0   PDC-GIC 218 Level     arm-smmu-context-fault\n136:          0          0          0          0          0          0          0          0   PDC-GIC 219 Level     arm-smmu-context-fault\n137:          0          0          0          0          0          0          0          0   PDC-GIC 220 Level     arm-smmu-context-fault\n138:          0          0          0          0          0          0          0          0   PDC-GIC 221 Level     arm-smmu-context-fault\n139:          0          0          0          0          0          0          0          0   PDC-GIC 222 Level     arm-smmu-context-fault\n140:          0          0          0          0          0          0          0          0   PDC-GIC 223 Level     arm-smmu-context-fault\n141:          0          0          0          0          0          0          0          0   PDC-GIC 224 Level     arm-smmu-context-fault\n142:          0          0          0          0          0          0          0          0   PDC-GIC 347 Level     arm-smmu-context-fault\n143:          0          0          0          0          0          0          0          0   PDC-GIC 348 Level     arm-smmu-context-fault\n199:          1          0          0          0          0          0          0          0  msmgpio-dc   9 Edge      goodix_ts\n201:          0          0          0          0          0          0          0          0  msmgpio-dc  10 Edge      TE_GPIO\n223:          2          0          0          0          0          0          0          0  msmgpio-dc  37 Level     nq-nci\n251:          0          0          0          0          0          0          0          0  msmgpio-dc  56 Edge      tfa98xx\n301:          0          0          0          0          0          0          0          0  msmgpio-dc  93 Edge      akm09970_irq\n328:          0          0          0          0          0          0          0          0  pmic_arb 8388807 Edge      pon_kpdpwr_status\n329:          0          0          0          0          0          0          0          0  pmic_arb 8454343 Edge      pon_resin_status\n331:          0          0          0          0          0          0          0          0  pmic_arb 8716487 Edge      pon_kpdpwr_resin_bark\n332:         52          0          0          0          0          0          0          0  pmic_arb 51380437 Edge      pm-adc5\n333:          0          0          0          0          0          0          0          0  pmic_arb 55574742 Edge      thr-int-en\n334:          0          0          0          0          0          0          0          0  pmic_arb 24117455 Edge      sig-tx\n335:          0          0          0          0          0          0          0          0  pmic_arb 24182991 Edge      sig-rx\n336:          0          0          0          0          0          0          0          0  pmic_arb 24248527 Edge      msg-tx\n337:          0          0          0          0          0          0          0          0  pmic_arb 24314063 Edge      msg-rx\n338:          0          0          0          0          0          0          0          0  pmic_arb 24379599 Edge      msg-tx-failed\n339:          0          0          0          0          0          0          0          0  pmic_arb 24445135 Edge      msg-tx-discarded\n340:          0          0          0          0          0          0          0          0  pmic_arb 24510671 Edge      msg-rx-discarded\n342:          0          0          0          0          0          0          0          0  pmic_arb 30408915 Edge      bcl-lvl0\n343:          0          0          0          0          0          0          0          0  pmic_arb 30474451 Edge      bcl-lvl1\n344:          0          0          0          0          0          0          0          0  pmic_arb 30539987 Edge      bcl-lvl2\n345:          0          0          0          0          0          0          0          0  pmic_arb 37748948 Edge      qcom,temp-alarm\n348:          0          0          0          0          0          0          0          0  pmic_arb 203423971 Level     i2c_pmic_stat_irq\n352:          0          0          0          0          0          0          0          0  pmic_arb 1111490794 Edge      qcom,temp-alarm\n353:          0          0          0          0          0          0          0          0  pmic_arb 1137705197 Edge      bcl-lvl0\n354:          0          0          0          0          0          0          0          0  pmic_arb 1137770733 Edge      bcl-lvl1\n355:          0          0          0          0          0          0          0          0  pmic_arb 1137836269 Edge      bcl-lvl2\n356:          6          0          0          0          0          0          0          0  pmic_arb 1125122283 Edge      pm-adc5\n357:          0          0          0          0          0          0          0          0  pmic_arb 1129316588 Edge      thr-int-en\n359:          0          0          0          0          0          0          0          0  pmic_arb 1276117232 Edge      volume_up\n370:          0          0          0          0          0          0          0          0  pmic_arb 1563427082 Edge      qpnp_flash_led_fault_irq\n371:          0          0          0          0          0          0          0          0  pmic_arb 1563623690 Edge      qpnp_flash_led_all_ramp_down_done_irq\n372:          0          0          0          0          0          0          0          0  pmic_arb 1563689226 Edge      qpnp_flash_led_all_ramp_up_done_irq\n374:          0          0          0          0          0          0          0          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n375:          0          0          0          0          0          0          0          0   PDC-GIC 162 Edge      pwr_event_irq\n376:          0          0          0          0          0          0          0          0   PDC-GIC 518 Level     ss_phy_irq\n377:          0          0          0          0          0          0          0          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n378:          0          0          0          0          0          0          0          0   PDC-GIC 332 Level     kgsl-3d0\n379:          0          0          0          0          0          0          0          0   PDC-GIC 336 Level     HFI\n380:          0          0          0          0          0          0          0          0   PDC-GIC 337 Level     GMU\n381:          0          0          0          0          0          0          0          0   PDC-GIC 615 Edge      error_irq\n382:          0          0          0          0          0          0          0          0   PDC-GIC 617 Edge      wdg_bite_irq\n383:          0          0          0          0          0          0          0          0   PDC-GIC 619 Level     ipc_irq\n384:          0          0          0          0          0          0          0          0   PDC-GIC  64 Level     limits_sensor-00\n385:          0          0          0          0          0          0          0          0   PDC-GIC  65 Level     limits_sensor-01\n386:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n387:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n388:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n389:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n390:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n391:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n392:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n393:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n394:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n395:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n396:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n397:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n398:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n399:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n400:          0          0          0          0          0          0          0          0   PDC-GIC 165 Edge      dwc3\n402:          0          0          0          0          0          0          0          0  pmic_arb 101777626 Edge      qpnp_rtc_alarm\n403:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n405:          0          0          0          0          0          0          0          0  pmic_arb 75563224 Edge      qg-vbat-low\n406:          0          0          0          0          0          0          0          0  pmic_arb 75628760 Edge      qg-vbat-empty\n407:          0          0          0          0          0          0          0          0  pmic_arb 75694296 Edge      qg-fifo-done\n408:          0          0          0          0          0          0          0          0  pmic_arb 75759832 Edge      qg-good-ocv\n409:          0          0          0          0          0          0          0          0  pmic_arb 16777416 Edge      chgr-error\n410:          0          0          0          0          0          0          0          0  pmic_arb 16842952 Edge      chg-state-change\n417:          0          0          0          0          0          0          0          0  pmic_arb 17825993 Edge      otg-fail\n421:          0          0          0          0          0          0          0          0  pmic_arb 18088137 Edge      high-duty-cycle\n422:          0          0          0          0          0          0          0          0  pmic_arb 18153673 Edge      input-current-limiting\n424:          0          0          0          0          0          0          0          0  pmic_arb 18284745 Edge      switcher-power-ok\n425:          0          0          0          0          0          0          0          0  pmic_arb 18874570 Edge      bat-temp\n426:          0          0          0          0          0          0          0          0  pmic_arb 19005642 Edge      bat-ov\n427:          0          0          0          0          0          0          0          0  pmic_arb 19071178 Edge      bat-low\n428:          0          0          0          0          0          0          0          0  pmic_arb 19136714 Edge      bat-therm-or-id-missing\n429:          0          0          0          0          0          0          0          0  pmic_arb 19202250 Edge      bat-terminal-missing\n432:          0          0          0          0          0          0          0          0  pmic_arb 19923147 Edge      usbin-collapse\n433:          0          0          0          0          0          0          0          0  pmic_arb 19988683 Edge      usbin-vashdn\n434:          0          0          0          0          0          0          0          0  pmic_arb 20054219 Edge      usbin-uv\n435:          0          0          0          0          0          0          0          0  pmic_arb 20119755 Edge      usbin-ov\n436:          0          0          0          0          0          0          0          0  pmic_arb 20185291 Edge      usbin-plugin\n438:          0          0          0          0          0          0          0          0  pmic_arb 20316363 Edge      usbin-src-change\n439:          0          0          0          0          0          0          0          0  pmic_arb 20381899 Edge      usbin-icl-change\n441:          0          0          0          0          0          0          0          0  pmic_arb 21102796 Edge      dcin-uv\n442:          0          0          0          0          0          0          0          0  pmic_arb 21168332 Edge      dcin-ov\n443:          0          0          0          0          0          0          0          0  pmic_arb 21233868 Edge      dcin-plugin\n445:          0          0          0          0          0          0          0          0  pmic_arb 21364940 Edge      dcin-pon\n446:          0          0          0          0          0          0          0          0  pmic_arb 21430476 Edge      dcin-en\n447:          0          0          0          0          0          0          0          0  pmic_arb 22020301 Edge      typec-or-rid-detect-change\n449:          0          0          0          0          0          0          0          0  pmic_arb 22151373 Edge      typec-cc-state-change\n450:          0          0          0          0          0          0          0          0  pmic_arb 22216909 Edge      typec-vconn-oc\n452:          0          0          0          0          0          0          0          0  pmic_arb 22347981 Edge      typec-attach-detach\n453:          0          0          0          0          0          0          0          0  pmic_arb 22413517 Edge      typec-legacy-cable-detect\n455:          0          0          0          0          0          0          0          0  pmic_arb 23068878 Edge      wdog-snarl\n456:          0          0          0          0          0          0          0          0  pmic_arb 23134414 Edge      wdog-bark\n458:          0          0          0          0          0          0          0          0  pmic_arb 23265486 Edge      aicl-done\n459:          0          0          0          0          0          0          0          0  pmic_arb 23331022 Edge      smb-en\n461:          0          0          0          0          0          0          0          0  pmic_arb 23462094 Edge      temp-change\n463:          0          0          0          0          0          0          0          0  pmic_arb 185663708 Edge      sdam-sts\n464:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4097 Edge      switcher-off-window\n465:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4098 Edge      switcher-off-fault\n466:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4100 Edge      tsd-fault\n467:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4104 Edge      irev-fault\n468:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4112 Edge      vph-ov-hard\n469:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4128 Edge      vph-ov-soft\n470:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4160 Edge      ilim\n471:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4224 Edge      temp-alarm\n472:          0          0          0          0          0          0          0          0       sde  12 Edge      dp_display_isr\n473:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\nIPI0:        94         14         14         14         14         14         16         14       Rescheduling interrupts\nIPI1:         0       7995       7995       7995       7995       7995       7995       7995       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         0          1          1          1          1          1          3          1       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm7150/second/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    5 root      0:00 [kworker/0:0H]\n    6 root      0:00 [kworker/u16:0]\n    7 root      0:00 [mm_percpu_wq]\n    8 root      0:00 [ksoftirqd/0]\n    9 root      0:00 [rcu_preempt]\n   10 root      0:00 [rcu_sched]\n   11 root      0:00 [rcu_bh]\n   12 root      0:00 [rcuop/0]\n   13 root      0:00 [rcuos/0]\n   14 root      0:00 [rcuob/0]\n   15 root      0:00 [migration/0]\n   16 root      0:00 [cpuhp/0]\n   17 root      0:00 [cpuhp/1]\n   18 root      0:00 [migration/1]\n   19 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0]\n   21 root      0:00 [kworker/1:0H]\n   22 root      0:00 [rcuop/1]\n   23 root      0:00 [rcuos/1]\n   24 root      0:00 [rcuob/1]\n   25 root      0:00 [cpuhp/2]\n   26 root      0:00 [migration/2]\n   27 root      0:00 [ksoftirqd/2]\n   28 root      0:00 [kworker/2:0]\n   29 root      0:00 [kworker/2:0H]\n   30 root      0:00 [rcuop/2]\n   31 root      0:00 [rcuos/2]\n   32 root      0:00 [rcuob/2]\n   33 root      0:00 [cpuhp/3]\n   34 root      0:00 [migration/3]\n   35 root      0:00 [ksoftirqd/3]\n   36 root      0:00 [kworker/3:0]\n   37 root      0:00 [kworker/3:0H]\n   38 root      0:00 [rcuop/3]\n   39 root      0:00 [rcuos/3]\n   40 root      0:00 [rcuob/3]\n   41 root      0:00 [cpuhp/4]\n   42 root      0:00 [migration/4]\n   43 root      0:00 [ksoftirqd/4]\n   44 root      0:00 [kworker/4:0]\n   45 root      0:00 [kworker/4:0H]\n   46 root      0:00 [rcuop/4]\n   47 root      0:00 [rcuos/4]\n   48 root      0:00 [rcuob/4]\n   49 root      0:00 [cpuhp/5]\n   50 root      0:00 [migration/5]\n   51 root      0:00 [ksoftirqd/5]\n   52 root      0:00 [kworker/5:0]\n   53 root      0:00 [kworker/5:0H]\n   54 root      0:00 [rcuop/5]\n   55 root      0:00 [rcuos/5]\n   56 root      0:00 [rcuob/5]\n   57 root      0:00 [cpuhp/6]\n   58 root      0:00 [migration/6]\n   59 root      0:00 [ksoftirqd/6]\n   60 root      0:00 [kworker/6:0]\n   61 root      0:00 [kworker/6:0H]\n   62 root      0:00 [rcuop/6]\n   63 root      0:00 [rcuos/6]\n   64 root      0:00 [rcuob/6]\n   65 root      0:00 [cpuhp/7]\n   66 root      0:00 [migration/7]\n   67 root      0:00 [ksoftirqd/7]\n   68 root      0:00 [kworker/7:0]\n   69 root      0:00 [kworker/7:0H]\n   70 root      0:00 [rcuop/7]\n   71 root      0:00 [rcuos/7]\n   72 root      0:00 [rcuob/7]\n   73 root      0:00 [netns]\n   74 root      0:00 [kworker/u16:1]\n   75 root      0:00 [kworker/u17:0]\n   76 root      0:00 [ipa_usb_wq]\n   78 root      0:00 [msm_watchdog]\n   79 root      0:00 [spi_wdsp]\n   80 root      0:00 [qmp_npu_qmp_low]\n   81 root      0:00 [qmp_npu_qmp_hig]\n   82 root      0:00 [qmp_aop]\n   83 root      0:00 [oom_reaper]\n   84 root      0:00 [writeback]\n   85 root      0:00 [kcompactd0]\n   86 root      0:00 [crypto]\n   87 root      0:00 [kblockd]\n   88 root      0:00 [blk_crypto_wq]\n   89 root      0:00 [irq/97-arm-smmu]\n   90 root      0:00 [irq/98-arm-smmu]\n   91 root      0:00 [irq/106-arm-smm]\n   92 root      0:00 [irq/33-tsens-up]\n   93 root      0:00 [irq/34-tsens-cr]\n   94 root      0:00 [irq/35-tsens-up]\n   95 root      0:00 [irq/36-tsens-cr]\n   96 root      0:00 [edac-poller]\n   97 root      0:00 [system]\n   98 root      0:00 [ipa_power_mgmt]\n   99 root      0:00 [transport_power]\n  100 root      0:00 [ipa_pm_activate]\n  101 root      0:00 [devfreq_wq]\n  102 root      0:00 [cfg80211]\n  139 root      0:00 [kauditd]\n  140 root      0:00 [kswapd0]\n  141 root      0:00 [ecryptfs-kthrea]\n  180 root      0:00 [irq/111-arm-smm]\n  181 root      0:00 [irq/112-arm-smm]\n  182 root      0:00 [irq/42-smp2p]\n  183 root      0:00 [irq/43-smp2p]\n  184 root      0:00 [irq/44-smp2p]\n  185 root      0:00 [cdsprm-wq]\n  186 root      0:00 [mem_share_svc]\n  188 root      0:00 [irq/113-arm-smm]\n  189 root      0:00 [cdsprm-wq-delay]\n  190 root      0:00 [irq/114-arm-smm]\n  191 root      0:00 [hwrng]\n  193 root      0:00 [diag_real_time_]\n  194 root      0:00 [diag_wq]\n  196 root      0:00 [DIAG_USB_diag]\n  197 root      0:00 [diag_cntl_wq]\n  198 root      0:00 [diag_dci_wq]\n  199 root      0:00 [MODEM_CNTL]\n  200 root      0:00 [MODEM_DATA]\n  201 root      0:00 [MODEM_CMD]\n  202 root      0:00 [MODEM_DCI]\n  203 root      0:00 [MODEM_DCI_CMD]\n  204 root      0:00 [LPASS_CNTL]\n  205 root      0:00 [LPASS_DATA]\n  206 root      0:00 [LPASS_CMD]\n  207 root      0:00 [LPASS_DCI]\n  208 root      0:00 [LPASS_DCI_CMD]\n  209 root      0:00 [WCNSS_CNTL]\n  210 root      0:00 [WCNSS_DATA]\n  211 root      0:00 [WCNSS_CMD]\n  212 root      0:00 [WCNSS_DCI]\n  213 root      0:00 [WCNSS_DCI_CMD]\n  214 root      0:00 [SENSORS_CNTL]\n  215 root      0:00 [SENSORS_DATA]\n  216 root      0:00 [SENSORS_CMD]\n  217 root      0:00 [SENSORS_DCI]\n  218 root      0:00 [SENSORS_DCI_CMD]\n  219 root      0:00 [DIAG_CTRL]\n  220 root      0:00 [DIAG_DATA]\n  221 root      0:00 [DIAG_CMD]\n  222 root      0:00 [DIAG_DCI_DATA]\n  223 root      0:00 [DIAG_DCI_CMD]\n  224 root      0:00 [CDSP_CNTL]\n  225 root      0:00 [CDSP_DATA]\n  226 root      0:00 [CDSP_CMD]\n  227 root      0:00 [CDSP_DCI]\n  228 root      0:00 [CDSP_DCI_CMD]\n  229 root      0:00 [NPU_CNTL]\n  230 root      0:00 [NPU_DATA]\n  231 root      0:00 [NPU_CMD]\n  232 root      0:00 [NPU_DCI]\n  233 root      0:00 [NPU_DCI_CMD]\n  234 root      0:00 [DIAG_RPMSG_APPS]\n  235 root      0:00 [DIAG_RPMSG_APPS]\n  236 root      0:00 [DIAG_RPMSG_DIAG]\n  237 root      0:00 [DIAG_RPMSG_DIAG]\n  238 root      0:00 [DIAG_RPMSG_DIAG]\n  239 root      0:00 [DIAG_RPMSG_DIAG]\n  240 root      0:00 [DIAG_RPMSG_DIAG]\n  241 root      0:00 [DIAG_RPMSG_DIAG]\n  242 root      0:00 [DIAG_RPMSG_DIAG]\n  243 root      0:00 [DIAG_RPMSG_DIAG]\n  244 root      0:00 [kgsl-workqueue]\n  245 root      0:00 [kworker/u16:2]\n  246 root      0:00 [kgsl-mementry]\n  248 root      0:00 [kgsl_worker_thr]\n  250 root      0:00 [irq/99-arm-smmu]\n  251 root      0:00 [irq/69-arm-smmu]\n  252 root      0:00 [irq/100-arm-smm]\n  253 root      0:00 [irq/101-arm-smm]\n  254 root      0:00 [kgsl-events]\n  255 root      0:00 [kgsl_devfreq_wq]\n  256 root      0:00 [qseecom-unreg-l]\n  257 root      0:00 [qseecom-unload-]\n  258 root      0:00 [irq/115-arm-smm]\n  259 root      0:00 [qcrypto_seq_res]\n  260 root      0:00 [irq/116-arm-smm]\n  281 root      0:00 [bond0]\n  282 root      0:00 [scsi_eh_0]\n  284 root      0:00 [scsi_tmf_0]\n  285 root      0:00 [ufs_clk_gating_]\n  291 root      0:00 [uether]\n  292 root      0:00 [k_ipa_usb]\n  295 root      0:00 [irq/108-arm-smm]\n  297 root      0:00 [msm_vidc_worker]\n  298 root      0:00 [pm_workerq_venu]\n  299 root      0:00 [irq/117-arm-smm]\n  300 root      0:00 [irq/118-arm-smm]\n  301 root      0:00 [irq/119-arm-smm]\n  302 root      0:00 [irq/120-arm-smm]\n  305 root      0:00 [irq/121-arm-smm]\n  306 root      0:00 [kworker/u16:7]\n  308 root      0:00 [kworker/0:1H]\n  309 root      0:00 [kworker/u16:8]\n  314 root      0:00 [akm09970_poll_w]\n  315 root      0:00 [irq/348-i2c_pmi]\n  316 root      0:00 [cam-cpas]\n  317 root      0:00 [qcom,cam_virtua]\n  318 root      0:00 [irq/122-arm-smm]\n  319 root      0:00 [qcom,cam170-cpa]\n  320 root      0:00 [irq/123-arm-smm]\n  321 root      0:00 [cam_cci_wq]\n  322 root      0:00 [cam_cci_wq]\n  323 root      0:00 [cam_cci_wq]\n  324 root      0:00 [cam_cci_wq]\n  325 root      0:00 [irq/124-arm-smm]\n  326 root      0:00 [irq/125-arm-smm]\n  327 root      0:00 [irq/126-arm-smm]\n  328 root      0:00 [irq/127-arm-smm]\n  329 root      0:00 [irq/345-qcom,te]\n  330 root      0:00 [irq/352-qcom,te]\n  331 root      0:00 [irq/384-limits_]\n  332 root      0:00 [irq/385-limits_]\n  333 root      0:00 [kworker/6:1H]\n  334 root      0:00 [irq/342-bcl-lvl]\n  335 root      0:00 [irq/343-bcl-lvl]\n  336 root      0:00 [irq/344-bcl-lvl]\n  337 root      0:00 [irq/353-bcl-lvl]\n  338 root      0:00 [irq/354-bcl-lvl]\n  339 root      0:00 [irq/355-bcl-lvl]\n  340 root      0:00 [dm_bufio_cache]\n  341 root      0:00 [irq/32-KRYO L3-]\n  342 root      0:00 [irq/128-arm-smm]\n  343 root      0:00 [uaudio_svc]\n  344 root      0:00 [apr_driver]\n  345 root      0:00 [irq/199-goodix_]\n  347 root      0:00 [irq/251-tfa98xx]\n  348 root      0:00 [ipv6_addrconf]\n  357 root      0:00 [irq/405-qg-vbat]\n  358 root      0:00 [irq/406-qg-vbat]\n  359 root      0:00 [irq/407-qg-fifo]\n  360 root      0:00 [irq/408-qg-good]\n  361 root      0:00 [irq/409-chgr-er]\n  362 root      0:00 [kworker/u17:1]\n  364 root      0:00 [irq/410-chg-sta]\n  365 root      0:00 [irq/417-otg-fai]\n  366 root      0:00 [irq/421-high-du]\n  367 root      0:00 [irq/422-input-c]\n  368 root      0:00 [irq/424-switche]\n  370 root      0:00 [irq/425-bat-tem]\n  371 root      0:00 [irq/426-bat-ov]\n  372 root      0:00 [irq/427-bat-low]\n  373 root      0:00 [irq/428-bat-the]\n  374 root      0:00 [irq/429-bat-ter]\n  375 root      0:00 [irq/432-usbin-c]\n  377 root      0:00 [irq/433-usbin-v]\n  378 root      0:00 [irq/434-usbin-u]\n  379 root      0:00 [irq/435-usbin-o]\n  380 root      0:00 [irq/436-usbin-p]\n  381 root      0:00 [irq/438-usbin-s]\n  382 root      0:00 [irq/439-usbin-i]\n  383 root      0:00 [irq/441-dcin-uv]\n  384 root      0:00 [irq/442-dcin-ov]\n  385 root      0:00 [irq/443-dcin-pl]\n  386 root      0:00 [irq/445-dcin-po]\n  387 root      0:00 [irq/446-dcin-en]\n  388 root      0:00 [irq/447-typec-o]\n  389 root      0:00 [irq/449-typec-c]\n  390 root      0:00 [irq/450-typec-v]\n  391 root      0:00 [irq/452-typec-a]\n  392 root      0:00 [irq/453-typec-l]\n  393 root      0:00 [irq/455-wdog-sn]\n  394 root      0:00 [irq/456-wdog-ba]\n  395 root      0:00 [irq/458-aicl-do]\n  396 root      0:00 [irq/459-smb-en]\n  397 root      0:00 [irq/461-temp-ch]\n  398 root      0:00 [irq/463-sdam-st]\n  399 root      0:00 [irq/333-thr-int]\n  400 root      0:00 [irq/357-thr-int]\n  407 root      0:00 [irq/334-sig-tx]\n  408 root      0:00 [irq/335-sig-rx]\n  409 root      0:00 [irq/375-pwr_eve]\n  410 root      0:00 [irq/374-dp_hs_p]\n  411 root      0:00 [irq/377-dm_hs_p]\n  412 root      0:00 [irq/376-ss_phy_]\n  413 root      0:00 [irq/129-arm-smm]\n  414 root      0:00 [usb_bam_wq]\n  415 root      0:00 [rq_stats]\n  416 root      0:00 [irq/130-arm-smm]\n  417 root      0:00 [irq/131-arm-smm]\n  418 root      0:00 [irq/132-arm-smm]\n  419 root      0:00 [irq/133-arm-smm]\n  420 root      0:00 [irq/134-arm-smm]\n  421 root      0:00 [irq/135-arm-smm]\n  422 root      0:00 [irq/136-arm-smm]\n  423 root      0:00 [irq/137-arm-smm]\n  424 root      0:00 [irq/138-arm-smm]\n  425 root      0:00 [irq/139-arm-smm]\n  426 root      0:00 [irq/140-arm-smm]\n  427 root      0:00 [irq/141-arm-smm]\n  428 root      0:00 [irq/142-arm-smm]\n  429 root      0:00 [drm_dp]\n  430 root      0:00 [irq/110-arm-smm]\n  431 root      0:00 [irq/143-arm-smm]\n  432 root      0:00 [crtc_commit:111]\n  433 root      0:00 [crtc_event:111]\n  434 root      0:00 [crtc_commit:162]\n  435 root      0:00 [crtc_event:162]\n  436 root      0:00 [crtc_commit:170]\n  437 root      0:00 [crtc_event:170]\n  438 root      0:00 [crtc_commit:178]\n  439 root      0:00 [crtc_event:178]\n  440 root      0:00 [pp_event]\n  441 root      0:00 [rot_commitq_0_0]\n  442 root      0:00 [rot_commitq_0_1]\n  443 root      0:00 [rot_doneq_0_0]\n  444 root      0:00 [rot_doneq_0_1]\n  445 root      0:00 [rot_fenceq_0_0]\n  446 root      0:00 [rot_fenceq_0_1]\n  447 root      0:00 [rot_fenceq_0_2]\n  448 root      0:00 [rot_fenceq_0_3]\n  449 root      0:00 [rot_fenceq_0_4]\n  450 root      0:00 [rot_fenceq_0_5]\n  451 root      0:00 [rot_fenceq_0_6]\n  452 root      0:00 [rot_fenceq_0_7]\n  453 root      0:00 [rot_fenceq_0_8]\n  454 root      0:00 [rot_fenceq_0_9]\n  455 root      0:00 [rot_fenceq_0_10]\n  456 root      0:00 [rot_fenceq_0_11]\n  457 root      0:00 [rot_fenceq_0_12]\n  458 root      0:00 [rot_fenceq_0_13]\n  459 root      0:00 [rot_fenceq_0_14]\n  460 root      0:00 [rot_fenceq_0_15]\n  461 root      0:00 [sb-3]\n  462 root      0:00 [ngd_rx_thread3]\n  463 root      0:00 [ngd_notify_sl3]\n  464 root      0:00 [irq/372-qpnp_fl]\n  465 root      0:00 [irq/371-qpnp_fl]\n  466 root      0:00 [irq/370-qpnp_fl]\n  477 root      0:00 [kworker/6:1]\n  478 root      0:00 [kworker/1:1]\n  479 root      0:00 [kworker/2:1]\n  480 root      0:00 [kworker/3:1]\n  481 root      0:00 [kworker/4:1]\n  482 root      0:00 [kworker/5:1]\n  483 root      0:00 [kworker/7:1]\n  496 root      0:00 [kworker/0:0]\n  522 root      0:00 [kworker/0:2]\n  541 root      0:00 [kworker/0:1]\n  557 root      0:00 [kworker/0:3]\n  604 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm7150/second/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1113.862765,3.7128758833333335,66.13198028956037,17.812784795717576,16.84183598693248,269.352055053\r\n1,576000,2138.839181,3.7132624670138887,81.51451110466061,11.434365252629142,26.236699053410067,140.273984321\r\n1,768000,2851.656813,3.71309480859375,91.41630779073917,9.618008620918998,31.1914879497514,105.211081626\r\n1,1017600,3778.575477,3.7132227564858487,105.99980963957906,8.416526496888261,35.64415796836323,79.40133596\r\n1,1248000,4633.920297,3.7130771610576923,119.72711805032162,7.7517244604606015,38.70106600540523,64.744934871\r\n1,1324800,4919.242437,3.7131962839673913,124.80122964415631,7.611661280891696,39.41320940713949,60.990274716\r\n1,1497600,5561.013587,3.713283645165599,136.26574886947435,7.351705358902406,40.80685845723139,53.951234407\r\n1,1612800,5988.382538,3.7130348077876985,142.7895326238341,7.154039375937177,41.934351243447004,50.101987481\r\n1,1708800,6345.311872,3.713314531835206,151.69742700283504,7.172914695937142,41.82400219675343,47.284353055\r\n1,1804800,6701.963675,3.7134107241799645,167.94868577504488,7.518560588957762,39.90125456202337,44.767010556\r\n6,300000,2337.959896,7.793199653333333,112.24324436241726,14.404700263186538,20.826535402940447,128.334674795\r\n6,652800,5086.383751,7.791641775428922,167.78103049073812,9.898632015904257,30.30721816085154,58.997325186\r\n6,806400,6285.22344,7.794175892857143,191.30724589804225,9.1343643837735,32.843007722893894,47.747090503\r\n6,979200,7633.976284,7.796135910947712,231.3472759817096,9.095335228095795,32.98394094076818,39.314641547\r\n6,1094400,8530.482257,7.794665805007309,263.2653072057985,9.26302350672187,32.386833497971786,35.185127904\r\n6,1209600,9430.403621,7.796299289847884,290.85031656103166,9.257319193032595,32.406790102451176,31.828465248\r\n6,1324800,10326.311442,7.794619144021739,327.74426248666947,9.527240740128693,31.488655339252784,29.06913051\r\n6,1555200,12115.338018,7.790212202932099,424.53477641156115,10.519288077212114,28.51904024283627,24.778389573\r\n6,1708800,13323.858589,7.797201889630149,489.41703788873025,11.027886495311538,27.20376203795204,22.532698377\r\n6,1843200,14354.753816,7.787952374131945,559.5589877675,11.703345928849718,25.633694998323097,20.915303274\r\n6,1939200,15114.111542,7.793993163160066,621.5787264434742,12.347784255213316,24.295856956954687,19.865197649\r\n6,2169600,16909.982526,7.794055367809735,818.9530690083999,14.541659761759526,20.63038228888532,17.756401816\r\n6,2208000,17188.037126,7.784437104166666,828.4324115186811,14.472870633956921,20.72843788820485,17.470188796\r\n"
  },
  {
    "path": "results/sm7150/second/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1683.9674328491092, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [637.0376337040001, 640.5047125400001, 679.4240191199999, 631.9635248679999, 630.8379034650001, 650.1859997079999, 621.039268731, 673.322542105, 620.176797648, 627.0660486229999, 713.8882860150001, 621.3646514879999, 630.9280841610001, 680.868660834, 632.234601316, 628.461641312, 662.729650176, 635.670453418, 643.4858804099999, 668.8750234720001, 638.59171875, 665.964269874, 620.5309517679999, 629.857827531, 663.4082897769999, 656.0513272139999, 632.264617772, 683.393692108, 626.2375756680001, 627.424631631, 686.7401182680001, 631.4090993460002, 629.797877574, 686.936350485, 648.166565787, 628.611296496, 666.5351292629999, 629.3779196490001, 624.9313316610001, 671.305523976, 633.601507623, 654.804796179, 645.008655125, 634.60618362, 685.4944775280001, 628.2013568109999, 629.977881558, 683.458914148, 622.493182012, 627.454411213, 668.9069204020001, 656.984888907, 623.714283748, 665.351085078, 633.722275214, 667.3419554129999, 625.675156106, 617.5648706100001, 684.2488367880001, 661.702743725, 627.484344298, 677.4804785, 633.6920445589999, 625.050282415, 676.42672479, 640.7185127200001, 673.226301825, 684.933576855, 622.493182012, 638.77421875, 646.967359192, 637.462581104, 646.1366435369999, 659.4539794240001, 624.752752637, 704.4598050000001, 620.324374504, 632.5658653999999, 688.743856608, 641.3901872400002, 625.08009655, 681.030787932, 632.53569422, 660.852622517, 650.4645607, 624.663463125, 642.57601776, 649.432919967, 617.623633728, 688.743856608, 638.9871875, 623.684681676, 705.6385563150001, 625.318150951, 622.671047388, 678.7596321599999, 633.8731184310001, 638.7134375, 651.991274626, 630.8981268750001, 640.08200592, 648.246338836, 621.305532435, 682.602226168, 625.377626328, 625.1395719269999, 690.7771608730001, 650.0002923800001, 633.81281215, 680.10376896, 622.671047388, 637.674976832, 654.5543569920001, 634.515468564, 636.367249221, 666.566907048, 639.838249785, 682.569841554, 620.5015273999999], \"power_mean\": 647.4512502368067, \"energy_millijoules\": 3237.2562511840333, \"energy_joules\": 3.2372562511840335}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 269.352055053, \"elapsed_ns\": 269352055053, \"power_samples\": [49.74524734799991, 52.557336901999975, 104.65829578199987, 55.98228707999988, 47.72277784799985, 102.19915649599989, 48.27245108699992, 50.158317917999966, 110.79155143599996, 61.0010220449999, 55.05170498199993, 113.46258646800004, 48.621354870000005, 54.539486236000016, 119.77067703499995, 49.84059644399997, 52.23842836799986, 115.74653430399997, 57.26107208999997, 43.63404366999998, 108.36769877399979, 65.99170936199994, 43.508207615999936, 76.66246651799986, 64.67995628699998, 38.20522205999998, 86.62025840099989, 61.0332289549998, 39.88947230999986, 78.07984796099993, 103.44586565099985, 47.311253107999846, 43.22483387999989, 104.5893843419999, 48.58974004799995, 46.222513421999906, 108.29860770599987, 54.795595608999975, 53.74065336599995, 108.333064434, 51.023734787999956, 51.40568007799993, 114.56980659600003, 38.517758393999884, 54.63554781199991, 107.12110826399987, 38.54906018399981, 44.944070189999934, 109.510385756, 65.99170936199994, 37.36473461200001, 124.36946549599998, 71.01507733699987, 48.58974004799995, 57.96803028999989, 61.0332289549998, 52.302177298999936, 65.49224253299997, 62.279938109999875, 53.580902333999916, 71.76925932599988, 98.42504585699987, 46.00138863599989, 52.142723031999935, 104.69257480599993, 55.91818182499992, 44.880871469999875, 109.61428928399982, 53.421151302, 44.81783479799992, 113.28858195899988, 52.23842836799986, 52.2064719629999, 97.31035346499993, 57.16465369000002, 50.896310642, 94.81657891500004, 43.6655835549999, 51.08736507399999, 103.61749409399988, 78.36693577400001, 47.18470518399988, 44.66016209399993, 88.34279748699998, 53.453002997999874, 46.696584181999924, 75.93590960399979, 53.51703475799991, 47.97619901199994, 68.51757145599993, 58.47546809999983, 50.44436520599993, 99.70573818599996, 44.59712542199986, 43.41374970399988, 104.55510531799996, 49.777084802999866, 42.35589689799997, 95.96152314999995, 48.36762147899992, 52.397882634999974, 90.56567905500003, 50.959940927999924, 52.23842836799986, 92.45807381999998, 48.52634744099987, 47.24797914599981, 100.01317213799996, 44.81783479799992, 41.07361976199991, 103.75490268299984, 79.6465026809999, 51.08736507399999, 55.757671494999954, 79.77939462799986, 39.826910606999945, 62.927421869999876, 79.67976831599981, 44.72319876599988, 50.507876847000034, 104.31426866999993, 46.00138863599989, 50.53971430199988, 99.39830423399997, 44.72319876599988, 47.057994601999894, 105.87451775399995, 43.57112564299996, 41.10504050199995, 110.72204485599991, 47.27969745599978, 48.653132655000036, 105.6677794179999, 53.5488864539999, 47.311253107999846, 94.71481399499987, 39.73298763899993, 43.602665527999875, 122.08836874799988, 47.311253107999846, 42.387215869999864, 112.17691730699983, 72.22904666399995, 46.064543952999884, 60.710163764999834, 78.33372961399994, 47.24797914599981, 66.57753706999983, 74.68931909399998, 49.8087589889999, 57.96803028999989, 100.61037751499998, 53.48501887799989, 60.46394227999997, 108.22933902599993, 52.27038477299993, 56.110497589999795, 109.64898309900002, 44.78639748599994, 42.387215869999864, 100.91834582699994, 45.906574483999975, 46.09620278800003, 109.44117604299981, 46.03304747099992, 46.127699269999994, 100.91834582699994, 41.07361976199991, 50.959940927999924, 107.19008068699986, 69.56788024299988, 49.8087589889999, 99.70573818599996, 84.63671380799985, 39.85827187199993, 59.24807485499991, 69.69886987199993, 47.18470518399988, 59.18373230999987, 87.19702123799993, 51.08736507399999, 55.43595128599986, 111.93376353299982, 47.27969745599978, 65.39475482899991, 104.69257480599993, 59.722058609999976, 48.621354870000005, 108.43678984199994, 50.86441371199987, 43.69712343999993, 100.91834582699994, 51.08736507399999, 48.52634744099987, 110.65271649800002, 46.00138863599989, 49.99945718099991, 99.63747802199987, 50.99183785799994, 32.342568106000044, 108.50588090999986, 64.42004471999996, 49.586386610999966, 94.61304907499994, 73.5084956469999, 44.59712542199986, 66.74025769799982, 72.09758106599998, 47.34297141799982, 71.67088043799993, 64.84238015000005, 50.92820757200002, 76.76155788599976, 102.43916171399997, 39.88947230999986, 69.17099593399996, 105.90903314399998, 88.10736785999995, 51.150995360000024, 109.57959546899997, 53.38913542199987, 40.01475654299986, 98.45902903099989, 42.32441648799988, 46.317327574000046, 110.93020815199986, 41.10504050199995, 43.822959493999974, 112.10747030399989, 54.763684743, 48.49456965599995, 104.65829578199987, 56.6879392699999, 49.87227063, 113.4277140329998, 55.88604679999992, 39.826910606999945, 74.1666734779999, 52.07897410099986, 40.97951867400002, 79.19555718200002, 67.01000096399991, 47.311253107999846, 76.69555353299995, 115.78152568899998, 46.09620278800003, 64.14691778399992, 100.8840685319999, 53.453002997999874, 48.84347343899992, 103.34285330699993, 40.48437138299994, 54.987718761, 100.8840685319999, 46.03304747099992, 47.43796368999995, 109.68349899700002, 45.87491564899983, 58.539810644999875, 112.0726575389998, 48.49456965599995, 46.00138863599989, 103.48026189599989, 60.968649119999895, 45.96972980099997, 108.43678984199994, 74.62343338599999, 44.78639748599994, 69.20372590399995, 73.5084956469999, 46.28583109200008, 67.95576990899997, 72.09758106599998, 47.374527069999885, 62.95985426999994, 104.45191485399994, 44.78639748599994, 71.7037295529999, 108.29860770599987, 44.754798125999855, 54.85958182999991, 93.36651803999996, 37.70775920899996, 49.84059644399997, 103.37724955199985, 43.602665527999875, 47.34297141799982, 105.90903314399998, 46.03304747099992, 51.469310363999966, 91.10563003999982, 57.2288775899998, 50.80078342599995, 91.07182893499987, 87.16339855799993, 46.064543952999884, 103.41164579699978, 74.65629155400006, 44.78639748599994, 49.16059943699986, 69.79707005599994, 46.222513421999906, 46.728243016999954, 79.6465026809999, 47.27969745599978, 61.61494551499982, 102.19915649599989, 49.84059644399997, 47.469519341999785, 104.65829578199987, 44.84943415800001, 44.880871469999875, 107.0175609759998, 45.685287345000006, 95.6218293899999, 113.35814799599996, 48.55796226299992, 47.34297141799982, 91.00440006399992, 47.34297141799982, 52.142723031999935, 109.64898309900002, 46.03304747099992, 55.98228707999988, 102.16499581199992, 85.849853757, 41.07361976199991, 89.85868328999982, 73.44272858399995, 48.58974004799995, 71.63803132299984, 70.91669844899991, 47.02627629199992, 52.940158245999896, 74.68931909399998, 39.73298763899993, 56.81614977999993, 104.69257480599993, 43.508207615999936, 47.21626083599983, 105.90903314399998, 47.18470518399988, 48.431177048999984, 103.44586565099985, 48.52634744099987, 44.81783479799992, 108.40233311399993, 49.71340989299995, 42.32441648799988, 104.76130954999996, 53.51703475799991, 47.12126856399982, 95.99556234999989, 47.24797914599981, 49.777084802999866, 97.20823230500002, 70.81831956099984, 37.20884347100002, 59.59297051999988, 76.00191395699994, 54.57156159099998, 56.720074294999904, 73.34399345599991, 54.69953403299996, 68.08611680699994, 80.76007507199984, 49.681735706999916, 64.27671943799987, 95.9276585099999, 50.896310642, 36.055760213999974, 102.13065904199993, 46.064543952999884, 46.127699269999994, 105.9433715319999, 44.81783479799992, 48.621354870000005, 115.67673097700003, 52.07897410099986, 43.72850158199981, 110.86087979399997, 43.508207615999936, 39.6704259359999, 104.65829578199987, 49.681735706999916, 48.46279187099992, 103.34285330699993, 79.51378132699983, 50.92820757200002, 67.0751744129999, 68.51757145599993, 49.8087589889999, 70.418892454, 65.92648732199984, 45.96972980099997, 71.7037295529999, 60.93627619499989, 42.32441648799988, 62.99212034999994, 103.44586565099985, 57.13245918999985, 49.586386610999966, 105.84000236399993, 47.34297141799982, 47.50123765199987, 103.37724955199985, 44.81783479799992, 49.99945718099991, 105.56441025000004, 47.21626083599983, 51.055468143999974, 110.895633084, 43.44528958899991, 47.18470518399988, 98.42504585699987, 48.33600665699987, 44.78639748599994, 104.48619387799988, 62.247672029999876, 44.78639748599994, 63.1414964999999, 71.01507733699987, 38.58020145199987, 56.6879392699999, 75.80373122099991, 44.6917614539999, 69.13826596399997, 103.37724955199985, 39.88947230999986, 64.08210026999996, 112.10747030399989, 42.2616171059999, 42.35589689799997, 109.40648222799996, 43.47666773099991, 41.07361976199991, 99.67169584199985, 53.51703475799991, 44.78639748599994, 105.56441025000004, 37.27116788399985, 48.46279187099992, 116.92302472199992, 24.797088419999795, 35.96237160600003, 97.17430849499988, 41.04236015399988, 46.00138863599989, 99.70573818599996, 74.72234663400002, 49.777084802999866, 68.15821316999995, 78.36693577400001, 47.21626083599983, 59.24807485499991, 75.80373122099991, 42.2616171059999, 61.58257258999993, 104.45191485399994, 47.21626083599983, 55.46802664099994, 105.84000236399993, 43.47666773099991, 40.97951867400002, 108.36769877399979, 43.57112564299996, 44.6917614539999, 99.63747802199987, 50.959940927999924, 47.311253107999846, 91.81576096499998, 39.88947230999986, 55.91818182499992, 100.91834582699994, 39.76434890399992, 54.731609387999924, 104.69257480599993, 75.506626794, 48.49456965599995, 103.27423720799982, 70.8840177909999, 54.731609387999924, 60.367167639999934, 64.67995628699998, 49.8087589889999, 62.927421869999876, 63.433425252000006, 43.53974750099985, 66.64259187399978, 106.81046639999988, 45.906574483999975, 62.894989469999814, 112.03802330099995, 43.508207615999936, 38.517758393999884, 104.55510531799996, 44.40785335800001, 57.196683089999965, 94.54526387999988, 41.07361976199991, 59.78651979999995, 105.59892563999995, 53.453002997999874, 47.34297141799982, 98.35672916699991, 42.2616171059999, 58.25002108499996, 102.09632227200007, 66.78181012199991, 45.96972980099997, 105.9433715319999, 69.50246950399992, 47.24797914599981, 65.459857919, 69.69886987199993, 49.777084802999866, 49.16059943699986, 64.51753242400002, 49.71340989299995, 71.57250154999997, 94.47747868499994, 45.906574483999975, 51.724158655999986, 109.54507957099997, 49.64989825199984, 46.03304747099992, 107.0175609759998, 44.43929066999988, 51.023734787999956, 99.53500003800002, 38.48645660399984, 47.27969745599978, 103.41164579699978, 47.24797914599981, 49.777084802999866, 103.44586565099985, 52.07897410099986, 44.81783479799992, 98.35672916699991, 71.04792645199996, 54.69953403299996, 105.805663976, 62.08567634999986, 42.135856903999866, 62.894989469999814, 74.49149259800004, 53.133500933999926, 57.90364128999988, 65.95909834199983, 49.681735706999916, 67.79258497499995, 98.3227459929999, 41.07361976199991, 64.11459233999983, 121.80660001499984, 42.23013669599993, 49.777084802999866, 99.50078221799981, 51.373946721999914, 43.63404366999998, 108.22933902599993, 48.33600665699987, 48.71652526199989, 109.37178841299999, 42.23013669599993, 44.59712542199986, 99.39830423399997, 52.23842836799986, 47.24797914599981, 102.0621615880001, 64.42004471999996, 52.27038477299993, 110.82612650399994, 62.15054114999998, 40.91683832599995, 72.82021995000002, 58.314529034999964, 48.71652526199989, 80.34388686499983, 54.63554781199991, 43.44528958899991, 69.04024389999995, 99.53500003800002, 42.16733731399995, 85.30558570999995, 103.20562110899982, 45.938233319000005, 37.489383438000004, 104.55510531799996, 45.527317875999984, 48.74830304699992, 111.75987823499986, 42.19881772399992, 49.8087589889999, 101.92499059399995, 47.18470518399988, 57.29310148999991, 102.027824818, 38.45531533600001, 48.46279187099992, 115.71154291899995, 70.71994067299988, 43.44528958899991, 107.0175609759998, 63.33611566799982, 48.36762147899992, 66.57753706999983, 70.81831956099984, 45.590635546000044, 73.8376690959999, 69.60066968799993, 42.16733731399995, 70.15708134700003, 102.0621615880001, 52.23842836799986, 49.459200059999944, 105.73663319599996, 42.19881772399992, 53.357119541999964, 105.70229480799992, 48.36762147899992, 44.72319876599988, 95.79167626999993, 54.667623166999874, 45.96972980099997, 101.95932736399993, 48.39939926399995, 54.347363083999994, 101.9934880479999, 47.24797914599981, 44.66016209399993, 118.23935908399994, 69.60066968799993, 45.96972980099997, 58.15342456499991, 73.34399345599991, 42.19881772399992, 61.51799275499991, 70.85116867599993, 44.40785335800001, 61.58257258999993, 77.08731722399989, 47.12126856399982, 52.84445290999986, 102.09632227200007, 57.16465369000002, 45.49582139400002, 103.20562110899982, 50.80078342599995, 49.777084802999866, 113.25370952399987, 50.896310642, 44.628562733999956, 114.50012191399992, 52.11076662699986, 52.174679436999895, 84.73705318399982, 55.66143121499988, 59.302812310000036, 93.4004382899999, 49.618060796999885, 35.93118876599988, 100.84979123699998, 90.86936898299996, 44.59712542199986, 46.86801005799987, 89.45447586599994, 48.240836264999984, 49.192377222000005, 74.55737830599992, 33.58927726099989, 54.09217130999991, 84.53637443199989, 45.81176033199995, 40.29652544699991, 99.50078221799981, 43.41374970399988, 46.80473609599983, 109.57959546899997, 43.35083167699986, 37.11527674299998, 110.79155143599996, 55.725701264999884, 38.39271175599981, 80.42733666599997, 54.50741088099994, 48.46279187099992, 88.64524596599995, 56.81117458999984, 48.33600665699987, 87.43186272599996, 42.01025813999979, 48.39939926399995, 89.92599351599995, 77.05417053899987, 50.83268035599997, 56.81117458999984, 72.13048965600001, 40.88541758600002, 47.88120673999981, 82.07296678399996, 42.16733731399995, 48.906866046000005, 117.92390622799985, 50.83268035599997, 47.78621446799991, 103.1712248639999, 44.59712542199986, 46.80473609599983, 108.22933902599993, 37.14635884099994, 39.60786423299987, 108.09115688999987, 49.618060796999885, 47.18470518399988, 78.03538503799996, 47.08971291199987, 52.07897410099986, 82.53949495899997, 37.05279211300001, 47.12126856399982, 98.62947041399991, 52.04701769600001, 50.73715314000003, 78.73152238199998, 84.50304251599994, 42.10453793199986, 45.527317875999984, 88.17455944100004, 48.36762147899992, 57.51813278999998, 97.106111145, 52.11076662699986, 48.97025865299986, 97.77708832799988, 54.539486236000016, 42.57577545399988, 106.7758915349998, 50.83268035599997, 55.757671494999954, 104.45191485399994, 52.174679436999895, 45.87491564899983, 105.63326402799999, 56.84320398999989, 44.66016209399993, 84.20202438799993, 54.539486236000016, 38.39271175599981, 76.53028813499986, 59.59297051999988, 39.73298763899993, 71.40859288899992, 105.35767191399998, 48.431177048999984, 71.60535066499983, 97.07218733499997, 50.959940927999924, 49.93594553999992, 105.6677794179999, 49.459200059999944, 47.43796368999995, 109.510385756, 44.59712542199986, 47.374527069999885, 102.99959642099986, 47.152986873999794, 52.23842836799986, 101.95932736399993, 50.73715314000003, 50.80078342599995, 101.92499059399995, 60.38693255999988, 45.938233319000005, 106.7758915349998, 60.77474359999985, 48.240836264999984, 74.22778039399986, 52.11076662699986, 54.57156159099998, 61.485619829999905, 57.0360407899999, 49.586386610999966, 85.20524633399987, 101.71932214599997, 44.50248938999994, 71.50697177699988, 95.6218293899999, 49.64989825199984, 50.126643731999934, 83.21921850199999, 48.30422887199995, 48.97025865299986, 99.53500003800002, 52.01506129099994, 48.97025865299986, 108.50588090999986, 43.287751906999915, 40.233802916999934, 157.85352696899986, 45.81176033199995, 40.88541758600002, 110.65271649800002, 49.554549155999894, 42.073057521999885, 98.28858764799986, 47.12126856399982, 44.628562733999956, 90.1616658239999, 44.59712542199986, 47.21626083599983, 74.00217128700001, 54.63554781199991, 50.896310642, 83.92017169799999, 95.15567914500002, 44.59712542199986, 80.24426055299978, 92.01857832499991, 42.19881772399992, 45.196378925999966, 93.2649312399999, 46.994720639999855, 45.101742893999926, 94.34173403999989, 43.22483387999989, 51.310152861999995, 99.39830423399997, 53.453002997999874, 54.85958182999991, 101.92499059399995, 46.96300232999988, 47.152986873999794, 105.56441025000004, 50.22182955899996, 48.36762147899992, 99.39830423399997, 57.06823528999985, 58.34661760499989, 80.17772928299996, 60.67779083999983, 50.67335928, 72.65601452399994, 50.86441371199987, 57.0360407899999, 78.86400644599996, 98.22044612899981, 48.27245108699992, 81.45853519799994, 99.33004406999987, 53.26123608599994, 46.28583109200008, 89.48821749599995, 50.22182955899996, 53.868552701999874, 95.58779018999985, 45.843419166999865, 53.772669245999964, 104.14234346199999, 45.78010149700003, 49.96761972599995, 100.678756324, 47.12126856399982, 50.7052562099999, 97.00398998499986, 54.50741088099994, 48.431177048999984, 95.68973322999989, 58.314529034999964, 53.357119541999964, 75.31565675000002, 57.100264689999904, 43.79158135199987, 71.53965243499988, 63.36860773799992, 55.69356623999988, 71.4741226619999, 101.9934880479999, 48.30422887199995, 80.07827356399991, 105.56441025000004, 49.554549155999894, 44.91247082999996, 99.43252205399995, 46.86801005799987, 40.01475654299986, 96.97006617499994, 44.565526062, 48.71652526199989, 103.13682861899986, 47.057994601999894, 48.33600665699987, 97.07218733499997, 48.20905847999995, 52.11076662699986, 103.20562110899982, 43.287751906999915, 55.725701264999884, 98.186287784, 54.539486236000016, 50.80078342599995, 88.54437223000002, 45.81176033199995, 45.590635546000044, 86.01732554399996, 53.29325196599996, 49.491037515000016, 88.510862804, 83.21921850199999, 53.22938438999995, 72.78455075299996, 75.77081388299985, 45.843419166999865, 60.07684371999994, 86.89493439, 51.98326876499982, 42.79581544799987, 80.72674996199999, 39.639064670999915, 41.575384809999946, 106.91401368799995, 50.60972899400008, 52.909718141999974, 109.30257869999991, 47.02627629199992, 54.60347245699995, 98.186287784, 39.54514170300001, 44.59712542199986, 85.34726627700002, 49.586386610999966, 48.33600665699987, 79.94538161699984, 45.78010149700003, 51.69615275699982, 88.71261027600008, 50.60972899400008, 42.04157711199991, 74.98605883799996, 83.21921850199999, 46.994720639999855, 45.49582139400002, 81.90638626499992, 54.475500014999966, 44.074793344999875, 90.63328126499994, 37.05279211300001, 57.77519348999988, 80.59362041999998, 42.135856903999866, 48.97025865299986, 114.39550532199996, 49.427362604999985, 50.38694120599996, 98.15212943899985, 53.26123608599994, 48.240836264999984, 97.98168805599994, 45.843419166999865, 45.906574483999975, 74.12886714599995, 59.36727350000001, 49.554549155999894, 78.7645582539999, 55.757671494999954, 49.491037515000016, 78.7645582539999, 44.470890029999964, 38.33026869799994, 70.05888116299991, 96.79974766499993, 51.9193559549999, 40.47775362599998, 94.47747868499994, 49.491037515000016, 53.99628785399989, 90.63328126499994, 39.54514170300001, 43.91741740599991, 109.26788488499994, 40.791316498000015, 47.817770119999864, 101.78781959999992, 50.80078342599995, 42.10453793199986, 101.92499059399995, 49.491037515000016, 50.73715314000003, 109.37178841299999, 50.73715314000003, 43.287751906999915, 70.62156178499993, 48.17728069499992, 44.628562733999956, 78.86400644599996, 56.90742789000001, 39.51394126499997, 78.93024847799995, 93.02801133999992, 43.16191585299998, 83.61986119000005, 96.86794501500003, 45.938233319000005, 38.83013420599991, 96.90186882499995, 44.53392670199992, 43.85449937899989, 102.93098032199987, 43.287751906999915, 47.532955961999846, 111.62098422899987, 49.427362604999985, 43.85449937899989, 105.49555647199998, 42.073057521999885, 47.057994601999894, 111.725243997, 44.250180653999905, 44.50248938999994, 104.34872438999992, 54.539486236000016, 50.76888649600005, 76.65726023399998, 53.29325196599996, 46.96300232999988, 86.15123412599985, 54.379438438999955, 38.33026869799994, 81.42521008799997, 107.84907173399995, 43.25637376499992, 76.33227507599997, 101.85649314, 46.93128401999991, 44.72319876599988, 88.073685705, 44.50248938999994, 61.09780878999982, 110.44455320200007, 43.25637376499992, 46.127699269999994, 107.84907173399995, 41.91597834799984, 53.580902333999916, 114.32582063999996, 44.470890029999964, 42.073057521999885, 106.91401368799995, 57.928142955, 38.23652384999991, 105.52989486000001, 60.77474359999985, 53.22938438999995, 78.83097057399993, 55.757671494999954, 53.165352629999916, 76.46428378199982, 44.53392670199992, 55.78980651999984, 80.14463424099995, 109.09477164400005, 39.576502967999886, 107.22465555199983, 91.782073835, 60.58083807999992, 47.40624537999986, 94.47747868499994], \"power_mean\": 66.13198028956037, \"energy_millijoules\": 17812.784795717576, \"energy_joules\": 17.812784795717576, \"coremark_score\": 1113.862765, \"coremarks_per_mhz\": 3.7128758833333335, \"ulpmark_cm_score\": 16.84183598693248}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [687.689162512, 617.6825479080001, 621.5126770859999, 683.7843554039999, 638.31796875, 641.0847808200001, 675.0830034, 656.082629004, 638.835, 645.776388275, 640.08200592, 648.598998762, 649.525595511, 646.413443368, 648.475378473, 648.2156119519999, 680.868660834, 627.693415384, 645.83776275], \"power_mean\": 649.5557571638421, \"energy_millijoules\": 3247.7787858192105, \"energy_joules\": 3.2477787858192104}}, \"576000\": {\"active\": {\"elapsed_sec\": 140.273984321, \"elapsed_ns\": 140273984321, \"power_samples\": [75.57263114699992, 60.64541791499994, 75.34136139599991, 91.782073835, 59.464048140000045, 75.05194454599996, 92.92642453999986, 66.87948652499995, 88.88067559300009, 120.38469831799989, 58.15342456499991, 90.06078700199998, 120.49002542999995, 49.39568841899995, 57.0360407899999, 124.0867469929999, 60.51625824499979, 111.75987823499986, 120.56048438999994, 60.64541791499994, 69.37147987499998, 122.69977516199992, 58.089082019999864, 53.19736850999982, 125.43872663399986, 67.99489901200002, 55.56535572999985, 124.22801545499999, 86.82768902999987, 60.58083807999992, 81.25892633399997, 90.39702020799996, 68.06019110599993, 84.93773193599986, 94.1382041999999, 61.85914850999984, 76.33227507599997, 119.20903910900006, 55.725701264999884, 67.33603574999995, 125.29703899799983, 65.47076922199994, 68.06019110599993, 121.63051717799988, 55.59732595999981, 66.74913962699986, 115.46714155300003, 58.15342456499991, 68.02762898200001, 119.06853944800002, 55.469115450000004, 61.891414589999954, 120.52525490999983, 89.01669984599982, 61.794450029999894, 117.99394684499998, 84.26886003399989, 71.83481863199995, 86.15123412599985, 85.51473806399997, 60.968649119999895, 72.55745751599989, 85.64881876499987, 74.12886714599995, 77.55052089899993, 119.13887945800002, 63.1414964999999, 72.9162539460001, 116.6081062259999, 56.81117458999984, 64.38749317500003, 110.37522484399994, 66.78181012199991, 63.206480639999995, 119.24402875500004, 59.302812310000036, 57.100264689999904, 120.41974713399986, 59.36727350000001, 60.61321100499981, 126.58235021999997, 71.63770461599995, 59.399421239999924, 114.11658745599993, 80.46066177599982, 64.3225570159999, 82.53949495899997, 78.00234916599993, 65.56843504599988, 83.72002186200007, 82.98562460599999, 60.61321100499981, 82.47289699199996, 122.87633603799998, 70.58888112699992, 68.94605784499993, 112.87082807099989, 61.66488674999982, 66.94482751499993, 116.57305536599995, 61.82671611000001, 61.95627938999996, 112.9057005059999, 70.35927423599992, 60.51625824499979, 114.11658745599993, 70.45765312399999, 68.02762898200001, 120.38469831799989, 87.43186272599996, 64.25762085699989, 125.43872663399986, 85.48134697799992, 71.67061320599998, 78.73152238199998, 95.24809642999992, 62.882059818000016, 79.94538161699984, 81.73980574599989, 66.74913962699986, 82.37291443999993, 120.24396106199993, 67.96216904200003, 63.07667898599993, 125.33250637799983, 64.22506931199996, 54.539486236000016, 124.05133908800008, 61.66488674999982, 64.61502012799997, 120.45497661399997, 61.632454349999875, 63.33611566799982, 117.74871465899992, 56.68256168999994, 65.53599126199981, 120.3494688379999, 79.18163675599988, 56.81117458999984, 119.06853944800002, 76.59096686399982, 64.25762085699989, 94.78259918999993, 72.94905294400007, 58.02473947499982, 91.10563003999982, 66.65129568299994, 59.270498859999975, 102.370488174, 116.46808253399979, 60.4838853199999, 61.06560187999992, 106.6725215539999, 65.56843504599988, 69.76428061099989, 120.3142393579999, 59.173724220000054, 60.90406928499988, 117.6786740419999, 57.99248549999993, 60.93627619499989, 117.81875527599993, 52.97374990200001, 68.02762898200001, 112.80126203399993, 69.14245821300005, 60.58083807999992, 105.2543027459999, 66.55345173899991, 49.39568841899995, 98.42504585699987, 57.99248549999993, 64.192684698, 108.333064434, 114.151519366, 67.96216904200003, 108.333064434, 100.23403039399989, 63.011861471999964, 61.29171430999986, 100.40506530699997, 59.109263029999966, 66.21948479399987, 96.56158153499996, 59.238185409999915, 59.91560788999993, 120.27919054199992, 65.43832543799999, 66.68396617799999, 115.2225607439999, 63.04435354199995, 64.3225570159999, 119.13887945800002, 58.02473947499982, 68.09292107600004, 100.37078801199993, 63.011861471999964, 68.02762898200001, 93.4004382899999, 67.92960691799999, 70.49050223899985, 102.23349326599998, 92.72325093999996, 65.43832543799999, 110.72204485599991, 101.58232723800006, 70.49050223899985, 58.73300368499997, 97.77708832799988, 62.37706899, 60.01238252999997, 97.77708832799988, 69.24065839699995, 68.41954939200002, 117.78382499399993, 55.56535572999985, 62.94704395799988, 122.80563917799998, 64.16013315299995, 62.91455188799989, 116.43321142199989, 56.77898008999989, 71.67061320599998, 90.228361361, 61.697319149999885, 62.979369401999975, 98.5954872399999, 72.85031781600003, 59.238185409999915, 91.00440006399992, 104.79576526999995, 61.600188269999876, 86.11784303999991, 112.9057005059999, 56.61833778999994, 52.23842836799986, 117.81875527599993, 71.47349918999987, 69.46968005899998, 107.74534632599989, 62.81724230399993, 58.50772207499995, 124.0867469929999, 62.84973437399992, 60.45167841, 121.559939268, 76.59096686399982, 67.86414697800001, 111.48191169599977, 74.09583960600003, 64.09519699399993, 84.8708962899999, 71.60479602599992, 61.632454349999875, 99.84243399000002, 62.979369401999975, 72.78455075299996, 86.08427983499996, 102.75917548799987, 66.65129568299994, 94.51128415499988, 100.26813190799987, 70.3921233509999, 71.17898599799992, 90.3295913369999, 59.07694958000002, 57.45374378999986, 97.74310515399986, 69.24065839699995, 59.883294439999986, 115.2225607439999, 69.109668768, 70.45765312399999, 126.47595125999987, 59.173724220000054, 71.80191004199992, 117.78382499399993, 51.728109161999896, 63.04435354199995, 117.78382499399993, 56.65036718999988, 67.36870624499988, 118.96320979199993, 58.056993449999936, 61.762017629999946, 115.29254351400004, 76.49169679199997, 56.746785589999945, 90.26216246599984, 71.67061320599998, 57.96039693, 82.37291443999993, 84.16852065799992, 61.66488674999982, 87.2975444299999, 120.24396106199993, 59.238185409999915, 79.87902093999992, 123.91007062599999, 57.96039693, 59.270498859999975, 116.50313339399986, 66.45560779499988, 61.85914850999984, 117.7136043239999, 56.746785589999945, 63.206480639999995, 121.48954232699987, 60.45167841, 67.896876948, 118.99837979699998, 70.26089534799985, 69.109668768, 121.38385643099991, 66.6186251879999, 62.91455188799989, 93.7991039699998, 64.25762085699989, 61.82671611000001, 90.97059895899986, 66.65129568299994, 59.20603767, 93.53577138999992, 101.37665879000008, 55.56535572999985, 94.8505586399998, 113.97703895399991, 59.20603767, 61.0010220449999, 123.94529695199992, 69.273447842, 55.98228707999988, 115.25755212900003, 67.86414697800001, 62.18280722999998, 121.34856747599997, 61.600188269999876, 82.81857581399993, 126.22780847999991, 57.79929245999995, 57.99248549999993, 125.29703899799983, 64.062645449, 60.354725649999864, 89.08401007199984, 57.86380040999995, 66.6186251879999, 95.99556234999989, 74.16189468599998, 72.883285881, 97.27625478999994, 115.99093567, 60.354725649999864, 87.26409417399998, 121.38385643099991, 57.928142955, 60.807116524999856, 118.92822014599994, 76.49169679199997, 59.399421239999924, 118.92822014599994, 64.12758160800001, 64.55008396899996, 123.87466272099994, 66.65129568299994, 67.73356278999995, 121.3134594899999, 51.66419635199986, 70.26089534799985, 122.66460800599998, 74.02995389800003, 57.895888979999995, 97.00398998499986, 80.32753223399982, 62.882059818000016, 89.79120002999991, 75.34136139599991, 65.2429937899999, 87.33116710999991, 121.52483128199992, 62.94704395799988, 81.05931746999988, 114.01197086399998, 60.38693255999988, 65.6987118899998, 120.27919054199992, 67.66827069600004, 51.9193559549999, 135.12740117399994, 65.34065961399995, 55.59732595999981, 120.17368276599984, 76.62411354899996, 56.65036718999988, 114.04690277399993, 83.70032750799987, 59.14141076999999, 122.62925957599998, 87.77123722599993, 61.600188269999876, 72.29469508199986, 90.19456025599993, 61.697319149999885, 80.99283814799992, 80.29437802199982, 57.86380040999995, 73.60723077499995, 106.39627724799993, 64.09519699399993, 61.600188269999876, 118.92822014599994, 70.29374446299994, 64.062645449, 115.18774880199999, 59.07694958000002, 69.24065839699995, 109.99365154199995, 65.3731033979999, 61.53532346999987, 106.53439940099986, 68.91343655100002, 68.94605784499993, 116.50313339399986, 86.59284754199996, 59.14141076999999, 116.32823858999984, 79.08201044399982, 59.04463613000007, 80.99283814799992, 87.63668133500005, 58.44321412499994, 75.96899661899988, 77.83648865399994, 57.83154643499995, 85.95037125299996, 117.74871465899992, 67.76612491399999, 65.3731033979999, 121.20777359399983, 56.553948789999936, 61.762017629999946, 116.36310970199986, 55.24449986499985, 62.882059818000016, 120.10322380599985, 67.66827069600004, 64.25762085699989, 112.62707869199994, 124.8723398579998, 62.91455188799989, 120.17368276599984, 87.12977587800003, 64.12758160800001, 121.34856747599997, 86.42507898999997, 59.14141076999999, 73.57426270999997, 89.01669984599982, 58.915713749999895, 82.37291443999993, 79.08201044399982, 61.600188269999876, 81.05931746999988, 127.50837836499988, 64.03009390400007, 59.04463613000007, 125.04931298999986, 70.26089534799985, 59.14141076999999, 115.18774880199999, 66.52078124399986, 69.17524765799999, 122.73512359199992, 68.97884728999998, 61.95627938999996, 118.82289048999996, 64.062645449, 59.14141076999999, 121.34856747599997, 77.60455639799989, 57.83154643499995, 117.64356370699988, 80.19457359, 56.61833778999994, 98.35672916699991, 80.29437802199982, 55.276634889999855, 87.19702123799993, 77.70400458999995, 61.600188269999876, 89.69032120799989, 126.29868038999996, 64.09519699399993, 63.238806083999975, 117.57352308999998, 61.53532346999987, 67.17301835699993, 104.03915299799996, 61.40592650999986, 59.78651979999995, 126.36955230000001, 61.470624989999806, 69.69886987199993, 120.03294550999988, 64.03009390400007, 68.97884728999998, 112.62707869199994, 57.7349499149999, 56.65036718999988, 121.27817053499984, 59.07694958000002, 67.70083281999996, 110.27114319599991, 63.965157745000056, 65.27543757399985, 104.00469727799987, 91.41029988999992, 61.50305738999987, 120.06817498999987, 91.41029988999992, 56.553948789999936, 72.09758106599998, 91.477847795, 61.470624989999806, 75.93590960399979, 86.39145630999997, 66.58612223399996, 79.58014200399998, 120.13845328599984, 60.257772889999956, 58.948027199999956, 118.82289048999996, 61.470624989999806, 70.22821468999996, 116.43321142199989, 54.123329066, 65.2103827699998, 113.62843640599999, 56.61833778999994, 66.48827828999993, 116.36310970199986, 60.32235272499997, 60.38693255999988, 116.36310970199986, 87.60317190899991, 61.470624989999806, 106.49982453599978, 98.95434995400001, 60.257772889999956, 61.0332289549998, 90.19456025599993, 74.52452013799996, 65.95909834199983, 87.73755507100009, 68.84785766100003, 73.31102539099993, 115.11776603199996], \"power_mean\": 81.51451110466061, \"energy_millijoules\": 11434.365252629143, \"energy_joules\": 11.434365252629142, \"coremark_score\": 2138.839181, \"coremarks_per_mhz\": 3.7132624670138887, \"ulpmark_cm_score\": 26.236699053410067}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [646.782720584, 677.28692922, 631.138557258, 644.6708588500001, 669.771342573, 628.7311129279999, 625.02046828, 672.136432201, 626.148108036, 628.850775552, 675.55735611, 627.3647654609999, 613.8493990999999, 672.264404643, 633.631738278, 631.1986262490001, 679.81254264, 650.8130844299999, 624.9015175259999], \"power_mean\": 645.2595126273158, \"energy_millijoules\": 3226.297563136579, \"energy_joules\": 3.226297563136579}}, \"768000\": {\"active\": {\"elapsed_sec\": 105.211081626, \"elapsed_ns\": 105211081626, \"power_samples\": [78.84966277799981, 68.91343655100002, 103.27423720799982, 86.42507898999997, 75.1433483369999, 94.61304907499994, 116.22326575799991, 68.78244692199996, 73.93104065, 117.57352308999998, 73.93104065, 67.17301835699993, 110.02840483199998, 80.09476915799996, 78.36693577400001, 127.54396488999998, 81.30649095299998, 84.63671380799985, 129.891895095, 70.19536557499987, 69.04425802900005, 127.472974335, 75.4735397789999, 71.70335303399997, 126.08588246999989, 73.96406819000003, 74.35955180999997, 134.9838112199999, 80.19457359, 68.717036183, 131.20847189999995, 77.47190204599997, 75.1433483369999, 131.1727069499999, 75.1433483369999, 67.76612491399999, 120.59553320599991, 77.67079842999999, 66.45560779499988, 121.559939268, 77.50510820599993, 75.1433483369999, 126.22780847999991, 105.04774141199994, 71.44059059999995, 92.48633103999987, 98.81782962599993, 68.84785766100003, 87.06270294199987, 97.43620556199983, 76.2933266309999, 93.33277173999988, 135.94156577799993, 66.39043434599989, 109.61428928399982, 133.63111793099984, 66.32526089699991, 69.37147987499998, 124.90762535399995, 70.75278978799997, 64.38749317500003, 123.73339425899997, 72.65301662699994, 68.22350526399998, 126.22780847999991, 81.23989298599997, 77.53831436600001, 133.63111793099984, 71.44059059999995, 69.01146858399989, 127.36639725500004, 77.60455639799989, 68.91343655100002, 113.00996014499992, 75.04425696899989, 71.37494218199993, 107.9527971419999, 77.37245385400001, 68.94605784499993, 106.84504126499996, 114.94316799300009, 73.83212740200008, 69.96592714099984, 123.48590208199994, 70.16268491699986, 74.42560688999993, 113.80273767999995, 66.32526089699991, 76.85563039500005, 129.74943940499986, 71.37494218199993, 78.10162706999995, 133.48794959299983, 67.53751866200002, 73.865154942, 131.1727069499999, 83.70032750799987, 72.5542814989999, 127.36639725500004, 83.767334968, 77.57135023799992, 100.54182292500002, 83.83417061399985, 72.5542814989999, 103.20562110899982, 78.78330210099989, 71.3420335919999, 100.61037751499998, 114.83837328100003, 78.84966277799981, 73.01498907399991, 121.13737665299993, 69.96592714099984, 78.10162706999995, 116.11829292599987, 73.76624169399997, 68.22350526399998, 129.78496177499994, 74.97808293899993, 79.08201044399982, 137.22237843799985, 68.74965747699991, 125.94395645999998, 131.1013604599999, 83.73383123799988, 70.06430602899991, 103.62639114199987, 75.0111699539998, 76.32630333299994, 100.57610021999994, 63.90022158599993, 71.37494218199993, 104.31426866999993, 117.46837213799984, 73.89818248200004, 106.94858855299981, 122.31166752799993, 63.83528542700003, 83.08561377000001, 126.05035541999985, 68.78244692199996, 68.19094313999994, 116.18821489799996, 83.63349186199991, 71.966115468, 134.9838112199999, 76.39259670299998, 72.58708049699987, 133.7028861209999, 75.0111699539998, 70.09698668699991, 133.66700202599986, 68.84785766100003, 70.09698668699991, 109.16415927399987, 78.84966277799981, 74.94516560099987, 109.19867517199998, 73.79926923400001, 85.14623128499989, 105.56441025000004, 117.46837213799984, 75.1433483369999, 67.60281075599994, 116.22326575799991, 73.79926923400001, 73.40976051899986, 109.99365154199995, 68.91343655100002, 80.79322928399995, 134.9121084059999, 70.16268491699986, 69.50246950399992, 129.85637272499991, 83.70032750799987, 71.30929376400002, 132.239058635, 75.4735397789999, 72.65301662699994, 127.25982017499996, 73.76624169399997, 71.37494218199993, 110.30589648599994, 67.53751866200002, 68.84785766100003, 117.78382499399993, 72.68581562499992, 62.655115206000005, 123.94529695199992, 106.18935997899985, 73.76624169399997, 80.85987950399999, 102.38152235699988, 71.1449195759999, 82.00636881699984, 98.6469160019999, 67.63554072599993, 90.66690903099993, 132.31052376999992, 72.48834536899994, 70.19536557499987, 131.02983055999982, 72.58708049699987, 63.90022158599993, 134.80446202199994, 71.37494218199993, 85.012322703, 122.34701595799993, 71.24347658399984, 81.4064735049999, 124.8723398579998, 71.30929376400002, 71.3420335919999, 129.78496177499994, 92.01857832499991, 65.14532796599985, 129.82066724999981, 89.78981369099995, 71.3420335919999, 79.6465026809999, 96.18719556999997, 67.37420450399998, 84.46953878599993, 86.19006507799986, 81.23989298599997, 92.99409108999987, 134.55341000999988, 68.68424673799996, 80.3608573439999, 128.50462978999997, 78.78330210099989, 85.2803119859999, 130.95848406999994, 68.74965747699991, 66.65129568299994, 134.69681563799998, 81.273277571, 80.3608573439999, 128.61138498999992, 72.52131343399992, 73.83212740200008, 131.02983055999982, 79.82868097199992, 77.50510820599993, 112.41838058099995, 71.30929376400002, 68.8152363669999, 109.30257869999991, 81.20650840099984, 76.19405655899993, 107.98743148199992, 119.24402875500004, 82.45137718599995, 109.06025574600005, 107.3650790339999, 71.30929376400002, 78.23428142199998, 99.96033937700008, 72.42257830599999, 82.00636881699984, 98.71535164199997, 67.60281075599994, 88.17455944100004, 133.63111793099984, 72.45554637099997, 82.55153785799996, 118.50690152200002, 76.35945001799985, 71.27638517399998, 123.55653631299992, 80.028289836, 65.11271694599986, 126.05035541999985, 76.2933266309999, 73.212290263, 130.99424901999987, 72.45554637099997, 71.30929376400002, 127.33081072999994, 96.15309689499986, 66.32526089699991, 99.82340597799998, 86.19006507799986, 73.76624169399997, 90.63328126499994, 87.43493386299997, 73.70035598599998, 97.00398998499986, 133.20142889599992, 69.96592714099984, 95.51988634999998, 140.96088862599993, 66.19474645799994, 77.67079842999999, 124.69518484199978, 73.63430090600002, 72.78455075299996, 133.5595337619999, 72.52131343399992, 73.79926923400001, 129.82066724999981, 73.73321415399994, 69.90022891099989, 134.76851845199985, 68.74965747699991, 67.50478869199992, 133.41618140299977, 92.3847442399998, 74.84607423299985, 93.09567788999982, 82.48482124599991, 68.19094313999994, 94.37571376499989, 94.80628506999994, 69.96592714099984, 102.93098032199987, 129.71373392999988, 71.1121797479999, 68.618835999, 132.239058635, 70.03145691399993, 63.83528542700003, 132.1674097849999, 65.08027316199991, 81.10652584899992, 134.73275920799983, 72.45554637099997, 86.25731043799988, 132.2032342099999, 66.32526089699991, 62.52531355199994, 129.78496177499994, 102.55332719099988, 78.65041015399993, 127.33081072999994, 91.13993462499991, 69.90022891099989, 91.782073835, 98.54443801799994, 74.87899157099991, 95.58779018999985, 106.05123782599992, 72.38961024100001, 88.1410500149999, 124.73065222199989, 73.70035598599998, 74.97808293899993, 127.25982017499996, 75.96236972999998, 73.73321415399994, 129.6780284549999, 73.46950195, 81.23989298599997, 128.54009298999995, 72.45554637099997, 75.86309965800001, 137.1502533979999, 64.98260733799987, 73.60144273799995, 123.521309987, 113.52381981399992, 74.94516560099987, 73.63430090600002, 99.891784787, 72.42257830599999, 86.96200732599993, 102.34730250299981, 82.15106667799989, 79.41415501499989, 131.85095712999987, 79.92848540399984, 73.14652319999993, 120.99640180199992, 82.38466057400001, 76.09478648699996, 117.3281108509999, 73.50252949000003, 78.65041015399993, 130.88713757999994, 71.04653133, 79.99496472599992, 124.73065222199989, 73.60144273799995, 72.38961024100001, 133.48794959299983, 97.23160583399988, 69.86754825299988, 124.69518484199978, 102.312906258, 73.70035598599998, 86.89493439, 96.15309689499986, 70.3921233509999, 87.87211096199997, 103.55765639799995, 83.56665621599984, 85.54830126899992, 132.2032342099999, 78.78330210099989, 66.19474645799994, 124.65989934599986, 68.618835999, 73.70035598599998, 135.94156577799993, 71.01362273999996, 67.60281075599994, 123.521309987, 77.27317595, 73.70035598599998, 128.54009298999995, 69.8020184799999, 72.38961024100001, 128.54009298999995, 99.78912868299994, 77.40566001400009, 130.88713757999994, 98.57865583799992, 69.99860779899996], \"power_mean\": 91.41630779073917, \"energy_millijoules\": 9618.008620918998, \"energy_joules\": 9.618008620918998, \"coremark_score\": 2851.656813, \"coremarks_per_mhz\": 3.71309480859375, \"ulpmark_cm_score\": 31.1914879497514}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [614.129999077, 676.83536947, 613.41097278, 639.32020929, 673.194331595, 625.730643486, 624.663463125, 673.9903716, 622.048518572, 618.517197703, 680.674041666, 632.023712504, 644.21015585, 679.3915867200001, 640.59631878, 623.268879376, 674.5366875, 630.8379034650001, 619.674915], \"power_mean\": 642.4765935557368, \"energy_millijoules\": 3212.3829677786844, \"energy_joules\": 3.212382967778684}}, \"1017600\": {\"active\": {\"elapsed_sec\": 79.40133596, \"elapsed_ns\": 79401335960, \"power_samples\": [86.02229652599988, 144.36810168699992, 108.29841515199996, 82.18433922999998, 114.55898052999999, 99.72074987399992, 93.52778893499988, 115.29254351400004, 88.4441303399999, 88.47787196999991, 124.01611276199992, 129.6780284549999, 93.39204428999994, 117.6786740419999, 130.95848406999994, 85.92160090999994, 82.91873648600006, 128.25547339000002, 85.98884626999984, 83.9010062599998, 145.7216269899999, 92.14765038999985, 92.75717118999978, 143.26908032999984, 87.26686854600007, 90.93711726499998, 144.4407540499999, 82.75185920199999, 88.27576825799997, 148.17801572999986, 84.67720700999996, 90.97097803999998, 116.53818425399993, 92.18157064000002, 88.54518219599993, 122.73512359199992, 87.26686854600007, 93.42602401499994, 120.03294550999988, 125.83773968999992, 89.72238482, 94.1721839249999, 123.3798599459999, 91.00466516999995, 86.659920478, 125.80221264, 88.41038870999989, 81.83961709499988, 148.28762260199983, 78.45115752999993, 85.6531367419999, 140.85235105799995, 83.46631683999988, 77.27317595, 150.74023779999993, 88.41038870999989, 82.18433922999998, 130.88713757999994, 89.72238482, 83.3324737339999, 133.48794959299983, 79.76220164999984, 83.3324737339999, 135.97756882299984, 128.18436418999988, 87.3005507009999, 94.70451658999991, 122.06477233999999, 91.07221307500004, 95.55375099000003, 118.29624220999995, 94.50063050999995, 97.87938819199985, 138.28694855999993, 94.67047738999997, 82.91873648600006, 141.915851792, 87.132485384, 92.21549088999984, 144.4407540499999, 85.8881506539999, 81.10652584899992, 140.6715170619999, 89.62115484399988, 90.97097803999998, 144.47717361499986, 80.9067319479999, 82.284499902, 140.70757234999996, 82.21778328999994, 79.72887653999999, 146.86073178799984, 108.29841515199996, 86.055919206, 116.71307905799995, 102.10688156999993, 85.44778377299997, 99.09104575799995, 105.91329297999982, 97.02700610599993, 110.40997813399997, 150.70352066500004, 96.85656472299979, 94.56853434999994, 146.93362182999988, 90.97097803999998, 81.43985808999992, 137.00637318999998, 83.36597746399991, 86.59284754199996, 153.11894414799985, 93.35823881999988, 84.20202438799993, 135.7259167699999, 92.14765038999985, 89.55355263399997, 146.93362182999988, 89.58735373899992, 88.47787196999991, 137.00637318999998, 79.72887653999999, 89.89104366699996, 139.354819002, 82.18433922999998, 82.15106667799989, 151.98475065000002, 105.42670269400003, 87.16599481000003, 149.312624638, 103.28254072599987, 93.35823881999988, 120.10322380599985, 85.8881506539999, 86.93073791199993, 125.08459848599989, 89.58735373899992, 89.55355263399997, 137.25825602199996, 120.60894717299993, 92.18157064000002, 94.23996911999996, 114.41937387600001, 84.509735223, 105.32333352600006, 129.53557276499998, 97.095322796, 102.75917548799987, 143.12382643199987, 93.25647389999995, 90.8357085849999, 153.04527197799996, 92.11390408999989, 85.98884626999984, 147.99540017099991, 90.80184781000003, 87.26686854600007, 141.988266865, 84.71077021499991, 85.95522358999995, 140.70757234999996, 84.67720700999996, 83.3324737339999, 153.04527197799996, 112.10506516499993, 86.02229652599988, 106.77753853799993, 110.78708461199983, 88.47787196999991, 102.79357173299991, 107.08853714999987, 82.21778328999994, 112.66195112699995, 139.57153789799986, 85.8881506539999, 96.52748285999985, 134.48152286999994, 93.42602401499994, 89.72238482, 136.97031067, 88.17471640199983, 93.2902793699999, 145.61237694199997, 85.98884626999984, 92.11390408999989, 138.10652382600006, 93.39204428999994, 82.21778328999994, 146.8972704979999, 88.30933685399987, 85.820905294, 146.86073178799984, 112.00062669299984, 79.5292676759999, 102.8621878319999, 119.54063610999992, 93.96865408499991, 102.58754704499995, 114.52416858800007, 95.84690827999998, 102.79357173299991, 154.18306909800003, 87.09880322899994, 84.57668951400001, 150.5568404180001, 82.11762261799993, 87.132485384, 139.42718233199992, 87.132485384, 98.54443801799994, 145.53960593400006, 90.93711726499998, 91.24134330499999, 143.08746634199997, 84.61025271899985, 92.07998383999995, 150.5568404180001, 98.3054397059999, 85.8881506539999, 108.26372133699999, 95.84690827999998, 95.67658976999996, 126.22780847999991, 87.16599481000003, 95.64266595999993, 121.17248463899989, 120.67934411399995, 94.43255210999996, 127.36639725500004, 126.97567545999993, 80.80674939599999, 92.72325093999996, 124.34123857799989, 84.64381592399991, 90.39702020799996, 121.95890832399982, 78.41806248799992, 85.4142205679999, 145.68514794999987, 87.0651210740001, 93.22249417499995, 150.44687730599992, 94.43255210999996, 95.81280960499998, 153.04527197799996, 86.96424733800006, 83.49982056999988, 146.75130303599985, 92.07998383999995, 90.76816068000005, 136.7543054219999, 94.50063050999995, 90.8357085849999, 147.99540017099991, 100.79399021599988, 90.8357085849999, 116.87257676099989, 102.003869226, 80.77336481099996, 121.38385643099991, 84.54329842799996, 88.27576825799997, 119.9626672139998, 131.88136552999993, 88.20828499799995, 133.52364966699986, 119.40007951799987, 87.09880322899994, 97.81124667299991, 118.15592290799998, 77.107315438, 111.48191169599977, 138.178767816, 80.873347363, 110.23638990599989, 145.57589790200007, 89.62115484399988, 96.22129424500008, 134.2662301019999, 84.71077021499991, 87.63668133500005, 129.35741159999986, 86.96424733800006, 86.59284754199996, 145.53960593400006, 90.76816068000005, 95.81280960499998, 146.75130303599985, 91.97839703999989, 88.27576825799997, 146.8241930779999, 90.76816068000005, 84.57668951400001, 134.5891692539999, 90.73429990499994, 86.32438337399992, 141.80713610400005, 91.97839703999989, 82.11762261799993, 145.57589790200007, 100.82832698599998, 84.54329842799996, 113.175217266, 92.01231728999994, 88.27576825799997, 121.3134594899999, 95.57464347500002, 80.77336481099996, 123.69798635399991, 129.99882841499993, 80.80674939599999, 139.67989734599996, 147.77618642699986, 84.40921772699994, 96.56158153499996, 116.83746642599988, 89.58735373899992], \"power_mean\": 105.99980963957906, \"energy_millijoules\": 8416.526496888262, \"energy_joules\": 8.416526496888261, \"coremark_score\": 3778.575477, \"coremarks_per_mhz\": 3.7132227564858487, \"ulpmark_cm_score\": 35.64415796836323}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [644.333062575, 619.438761696, 627.544056965, 683.792287563, 616.9180231260001, 636.0340261220001, 671.6240489659999, 615.668357988, 629.467921641, 680.349620844, 625.253584914, 614.452114668, 696.348172711, 623.0015451999999, 624.3361192120001, 674.1510139000001, 618.075206063, 631.4515431519999, 682.905530224], \"power_mean\": 642.9023682910527, \"energy_millijoules\": 3214.5118414552635, \"energy_joules\": 3.2145118414552636}}, \"1248000\": {\"active\": {\"elapsed_sec\": 64.744934871, \"elapsed_ns\": 64744934871, \"power_samples\": [109.82024153599991, 160.40733621000004, 96.85656472299979, 104.63426474000005, 152.8983054439999, 105.63704867399986, 105.56807625099987, 156.6711444179998, 96.89072306799983, 105.67162353899982, 142.94239890599988, 103.04188077399988, 104.42752640399999, 156.929867715, 98.13470155799996, 101.9352531269999, 158.93698909499983, 119.22429344599993, 95.57464347500002, 157.95225625799992, 121.67666470599988, 109.334586586, 132.5607435999999, 118.08558289799998, 101.90085688199986, 128.75360338999997, 157.91518207799982, 95.67658976999996, 131.24405344000002, 155.31662009599995, 103.17935026199996, 104.73763390800002, 155.39034104200005, 105.4645289629998, 108.5754319209999, 149.1297123139999, 102.97296933399991, 107.46880444199985, 157.73019142599992, 99.34440275299994, 104.35867262599993, 154.07276025099986, 99.48133615200004, 101.8666370279999, 156.52346523599988, 94.22884059, 99.37868004799998, 137.33038106200001, 104.28981884799998, 103.0074250539999, 129.78496177499994, 108.02139838299979, 109.19575164800005, 143.45050785599994, 127.93539059, 103.14489454199997, 105.56807625099987, 130.49445676999994, 98.13470155799996, 109.99365154199995, 120.4681532909998, 95.71068844499996, 113.83766959000002, 161.50274474999992, 98.06644139399987, 98.06644139399987, 166.55273536999982, 106.81199526599983, 96.08507441000006, 154.03586449599993, 104.32415723600002, 96.22129424500008, 156.63431953199995, 133.97923451999998, 105.08207979999997, 160.37033362, 108.12512399399998, 98.20296172199994, 156.52346523599988, 98.06644139399987, 100.75965344600002, 156.70815912299986, 103.07615979799994, 98.23717954199992, 156.5604799409998, 96.95886458699988, 103.07615979799994, 165.30881635499998, 119.08355618999985, 100.55416108399993, 159.12227651199987, 111.65261767499987, 98.13470155799996, 128.68249418999994, 110.50911807299974, 105.29200925199996, 135.83374127399998, 103.07615979799994, 110.47430530799988, 144.51359317999993, 126.76252129999989, 99.37868004799998, 112.59238508999988, 131.73843525999996, 101.83224078299986, 116.29318772999989, 116.76742580899986, 99.10498903099995, 122.48822840399998, 156.63431953199995, 101.8666370279999, 96.92470624199984, 145.3938768459999, 104.35867262599993, 94.90822810999998, 144.0408859029999, 101.7980209289999, 96.28931672999988, 171.3442328399999, 100.55416108399993, 101.27382456599992, 154.07276025099986, 105.49910382799999, 104.39301101399997, 157.73019142599992, 104.15193428999987, 95.50644612499991, 151.5809623319999, 91.77522343999988, 103.07615979799994, 154.07276025099986, 102.97296933399991, 99.2076451349999, 157.69330736999984, 124.12879806599994, 99.13909054499993, 171.23123993599984, 111.68731127699994, 104.32415723600002, 127.4373878099999, 105.60265111599983, 100.51982431399995, 138.46718805299997, 96.75426485899993, 99.24174664899988, 158.026214494, 137.854225584, 99.27602394399992, 111.23875792199976, 136.64648773399983, 94.1607621899999, 108.67933544899995, 130.3873453299999, 95.47252231499999, 107.29598796599987, 153.962262195, 96.82258154899989, 102.86977887, 151.5809623319999, 99.34440275299994, 101.7980209289999, 162.63479963999987, 94.26270522999982, 108.12512399399998, 160.29613770499986, 96.65196499499996, 105.91329297999982, 162.7838573949998, 93.01896433499996, 109.334586586, 167.53845791599997, 104.15193428999987, 104.25530345799996, 136.5384851099999, 106.70826985799988, 96.92470624199984, 138.3949440629999, 102.90423458999987, 101.83224078299986, 148.28762260199983, 139.21046343599994, 99.31030123899995, 148.1416052279999, 134.0511216599998, 94.26270522999982, 114.90835605099994, 129.07231711499992, 94.33078362999993, 127.29522420499984, 121.53545225999994, 104.32415723600002, 129.92760056999975, 160.22175105500003, 99.27602394399992, 93.52778893499988, 151.47082109999997, 104.84100307599988, 102.10688156999993, 155.24270963599997, 104.18644968000001, 110.9607913829999, 167.65091645999985, 102.97296933399991, 107.91749485499997, 158.78864490399985, 99.10498903099995, 106.5354533819999, 155.16898869, 100.41699009000001, 103.04188077399988, 136.01338723699985, 102.90423458999987, 107.74420369699999, 134.62511282399987, 111.61774523999986, 109.09166999999991, 134.80446202199994, 134.01517808999984, 104.22078806799993, 101.6262160949999, 141.58970472800002, 101.76362468399998, 116.01332009399982, 142.61571748199992, 97.92974558999981, 104.94437224399996, 160.81569984499993, 101.72922843899983, 103.62639114199987, 161.31686282999988, 101.76362468399998, 105.32658411699992, 148.98345764999988, 98.032223574, 105.3955565399998, 156.37559623499988, 95.50644612499991, 104.25530345799996, 157.73019142599992, 89.25003604499989, 105.36098167499983, 151.4340444899999, 126.58495366499994, 106.57008772199993, 167.68827426399992, 116.69738519199996, 102.97296933399991, 127.29522420499984, 111.61774523999986, 104.04856512200001, 134.73275920799983, 105.32658411699992, 101.66061233999994, 142.0606819379999, 144.004653105, 91.60597008999991, 101.20532711199996, 131.559680565], \"power_mean\": 119.72711805032162, \"energy_millijoules\": 7751.724460460601, \"energy_joules\": 7.7517244604606015, \"coremark_score\": 4633.920297, \"coremarks_per_mhz\": 3.7130771610576923, \"ulpmark_cm_score\": 38.70106600540523}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [651.6594203, 627.9526906399999, 630.939561436, 645.2751020869999, 636.3394724159999, 634.817903862, 646.6433141299999, 621.8114154980001, 627.424631631, 671.303953372, 626.7373986999999, 633.329896815, 676.51289781, 638.771797125, 621.7521778, 682.7752533799999, 619.4681860640001, 621.900348186, 679.00322952], \"power_mean\": 641.8115079353684, \"energy_millijoules\": 3209.0575396768418, \"energy_joules\": 3.209057539676842}}, \"1324800\": {\"active\": {\"elapsed_sec\": 60.990274716, \"elapsed_ns\": 60990274716, \"power_samples\": [109.12642328999993, 104.63426474000005, 161.42843018999986, 101.66061233999994, 120.99640180199992, 163.80387004, 101.69500858499987, 107.91749485499997, 160.0361658999999, 106.57008772199993, 110.40485830499995, 170.02546512599986, 115.38366284999984, 98.032223574, 156.4126109399998, 114.06999835499994, 109.12642328999993, 153.88847068500002, 140.16507036199994, 102.83549984599995, 168.89459818499995, 125.19934592999982, 101.72922843899983, 129.78496177499994, 130.28023388999986, 108.98758835199988, 132.239058635, 114.06999835499994, 101.69500858499987, 137.186315918, 149.01992732199994, 104.18644968000001, 112.24419723899996, 145.21185578999985, 104.22078806799993, 112.41838058099995, 132.66408757599982, 110.33523277499978, 109.854816604, 161.39117738999983, 104.11741889999996, 106.60454444999993, 153.92536643999995, 110.37004553999986, 111.75705614699984, 176.28483240000003, 109.05709493199993, 105.98226540299981, 167.53845791599997, 99.17336783999986, 103.48892165400002, 157.61915900999998, 102.80104412599997, 104.25530345799996, 165.08461291499998, 104.01404973199988, 101.66061233999994, 158.67743436799992, 109.0223416419999, 96.65196499499996, 163.95297373999995, 105.29200925199996, 104.11741889999996, 158.75151124899992, 135.9055627329999, 101.59199624099995, 171.3442328399999, 126.58495366499994, 107.95201075299997, 134.73275920799983, 125.09294696999996, 109.05709493199993, 140.99694391399987, 147.52056218099995, 104.11741889999996, 149.56885228199997, 144.004653105, 106.50081904199988, 112.4530741829999, 151.32390325799997, 107.29598796599987, 106.08581269099989, 135.15097583599993, 114.06999835499994, 112.38350814599994, 163.80387004, 110.33523277499978, 104.11741889999996, 161.2052954699999, 104.01404973199988, 114.20978445200001, 167.313540828, 106.57008772199993, 104.42752640399999, 166.29087724999988, 110.1963387689998, 104.42752640399999, 169.9877958059999, 105.29200925199996, 104.11741889999996, 162.4486209549998, 111.5481792029999, 94.1607621899999, 144.004653105, 110.26578577199984, 109.19575164800005, 156.70815912299986, 117.55911497699992, 99.13909054499993, 155.39034104200005, 147.48396399599994, 99.10498903099995, 156.4126109399998, 149.97049601599997, 106.46636231399998, 124.80140509799992, 116.52219362300002, 91.57204983999986, 142.16939762599998, 171.23123993599984, 111.40886829599992, 142.27811331399994, 166.17859740999984, 99.10498903099995, 102.17567405999989, 143.8227420469999, 101.59199624099995, 112.31394210899987, 140.12882922200004, 112.652134306, 106.1202102489998, 159.92477666000002, 109.0223416419999, 110.23097300699987, 159.8877740700001, 105.32658411699992, 111.7917497489999, 160.0733592250001, 110.1963387689998, 98.20296172199994, 162.48574188499992, 102.66357463799989, 106.3280025659999, 170.02546512599986, 98.96805563199996, 97.89552776999994, 162.4486209549998, 103.94519595400004, 100.41699009000001, 154.18306909800003, 107.60578427099995, 102.83549984599995, 163.91579363999995, 109.0223416419999, 95.30220380499998, 164.93527192499994, 138.8492034269999, 105.22303682899985, 123.91635755399977, 114.03518641300002, 102.86977887, 132.13176907499997, 126.33621298000003, 102.76658840599987, 133.4520654979999, 159.3816408099999, 104.15193428999987, 138.35900730900005, 139.947995226, 116.41704267099988, 108.54073810599994, 143.89558117699994, 107.70968779899988, 112.24419723899996, 140.05653279399996, 102.66357463799989, 108.50604429099997, 159.961969985, 108.98758835199988, 119.04832670999986, 166.17859740999984, 104.04856512200001, 111.5481792029999, 161.27961002999984, 97.75900744199987, 103.0074250539999, 161.16804266999986, 118.97804841399989, 97.724789622, 162.4486209549998, 106.50081904199988, 111.5481792029999, 154.98459156799993, 110.30059853699993, 107.77889751199996, 142.02456747999997, 108.9530132839999, 106.67381312999998, 148.1416052279999, 105.32658411699992, 115.20858829799988, 139.28264121899986, 136.3583574459999, 114.00019502800001, 106.46636231399998, 135.04315133199998, 105.25743438699988, 120.89071590599985, 126.4072035349999, 100.31415586599996, 124.62443196599975, 163.58002283999986, 107.74420369699999, 132.1674097849999, 156.26474193899992, 111.47843433299988, 104.53089557199996, 144.9933556939999, 110.1963387689998, 113.45413513200003, 153.7412660829999, 98.96805563199996, 108.47152839299997, 162.48574188499992, 105.25743438699988, 110.23097300699987, 154.94763633799994, 102.80104412599997, 104.11741889999996, 164.89784069999996, 102.69785366199994, 94.1607621899999, 163.65457469, 104.01404973199988, 111.47843433299988, 171.1559758269999, 111.37417469399998, 108.98758835199988, 166.0663175699999, 115.103795214, 113.96520364299988, 128.43333778999988, 113.96520364299988], \"power_mean\": 124.80122964415631, \"energy_millijoules\": 7611.661280891696, \"energy_joules\": 7.611661280891696, \"coremark_score\": 4919.242437, \"coremarks_per_mhz\": 3.7131962839673913, \"ulpmark_cm_score\": 39.41320940713949}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [654.55533831, 663.8946453459998, 624.0087752989999, 656.859604674, 650.2239893319999, 635.3070363530001, 641.658331325, 642.71963139, 624.806246754, 625.790237508, 653.775722388, 620.1815105430001, 622.13745126, 681.010205221, 624.0087752989999, 636.430543712, 676.2547216300001, 626.588040281, 614.247049955], \"power_mean\": 640.76093982, \"energy_millijoules\": 3203.8046991, \"energy_joules\": 3.2038046991}}, \"1497600\": {\"active\": {\"elapsed_sec\": 53.951234407, \"elapsed_ns\": 53951234407, \"power_samples\": [123.88107205799986, 129.53557276499998, 166.17859740999984, 121.32390550199989, 127.22423364999997, 173.6047790519999, 121.39442108799983, 120.256781499, 172.17295926399993, 116.38193233599998, 111.82662218399992, 168.669324857, 120.08069866199992, 122.99109930700001, 181.030442526, 115.103795214, 116.41704267099988, 179.63485004300003, 121.25320864199989, 113.93039170099996, 175.8679754179999, 131.27363631000003, 116.41704267099988, 157.7672656059999, 117.59428498200009, 118.87254063799992, 160.0361658999999, 149.8605329039999, 116.27678138399983, 168.5566881929999, 152.42038085399986, 122.46107020599993, 139.5355417799999, 143.56836539300002, 120.01012075199992, 149.34928229799982, 141.2274432060001, 117.62927462799996, 141.915851792, 171.00525412799993, 112.652134306, 116.69738519199996, 173.491429908, 114.99882238199984, 109.47324330200001, 162.33687547499994, 116.34700205399997, 122.02942390999988, 167.3884490019999, 120.01012075199992, 120.04540970699998, 180.91602407799985, 116.24185110199994, 108.91825999399998, 179.74909037099997, 118.90777011799992, 112.44290112199997, 173.64262679699993, 120.01012075199992, 122.81442293999987, 173.41592850899997, 110.16152600399994, 108.84893163599997, 172.32391855799995, 120.01012075199992, 116.27678138399983, 154.763239216, 117.45378532099994, 121.25320864199989, 162.63479963999987, 116.24185110199994, 112.54751771399992, 162.52305416000002, 153.192427415, 129.88755307999986, 164.823170205, 142.36175623799988, 115.03369349399986, 140.6715170619999, 137.385565854, 110.16152600399994, 138.250826565, 169.68702077399985, 116.13670014999991, 145.7581060299999, 173.37808076399995, 118.73198404599987, 120.60894717299993, 157.397284302, 115.03369349399986, 109.57732494999993, 147.37435712399986, 122.46107020599993, 130.74426118999986, 165.8042671899999, 112.51276494199999, 123.70409892599992, 184.68737231399984, 108.71009669800003, 122.77901503499993, 180.87781928799996, 117.418615316, 118.050593252, 170.9677188139999, 114.96377152199989, 118.5912467899999, 179.55875502999993, 114.99882238199984, 123.70409892599992, 168.5566881929999, 123.63316416599991, 110.02263199799984, 169.64935145399988, 119.93972381099991, 116.31189171899996, 162.41130867999993, 117.52394497199998, 119.90443485599997, 169.72469009399993, 139.80321651799989, 112.54751771399992, 143.60478495799987, 134.82750232399997, 115.03369349399986, 151.83783280799992, 127.40161459000001, 122.46107020599993, 136.97031067, 164.74849970999992, 111.26973622199989, 156.81901341899993, 159.8133874199999, 116.31189171899996, 121.99425675399993, 148.580975342, 113.790605604, 114.52416858800007, 148.6541026739999, 113.72080227700008, 126.97567545999993, 175.94390919799991, 109.98781923299998, 118.76703286199984, 180.91602407799985, 121.11217746999989, 113.790605604, 175.79223633999982, 108.84893163599997, 113.790605604, 170.9677188139999, 108.74484998800006, 114.92872066199993, 184.49584893999986, 112.54751771399992, 112.51276494199999, 175.8679754179999, 133.51288973999988, 114.99882238199984, 144.33168212199996, 119.90443485599997, 117.04776832999994, 159.19635339299998, 117.38362567000001, 111.234863787, 152.8983054439999, 153.48337421600002, 114.89384954999991, 118.69675456599987, 148.61744501399983, 117.38362567000001, 128.22001018999993, 145.9854891499998, 107.46718692799993, 124.48292621399992, 189.35542170899998, 121.21804148599995, 129.2504782799998, 175.90594230800002, 116.17163043199992, 116.24185110199994, 172.17295926399993, 120.08069866199992, 118.76703286199984, 180.76340083999992, 116.17163043199992, 122.60233866800002, 177.1869379179999, 110.05726623599992, 147.41095530899986, 172.17295926399993, 129.7446766899999, 119.83403791499995, 180.68718718199978, 129.9233180299999, 124.88014904999989, 145.53960593400006, 129.95889956999997, 113.72080227700008, 150.5568404180001, 175.94390919799991, 116.20674076699993, 151.72769157599998, 155.89535416499984, 124.88014904999989, 114.48917720299994, 155.9323688699999, 109.84874669999988, 124.48292621399992, 153.52026997099995, 118.5912467899999, 131.3807421549999, 178.27781858999992, 126.05206826499989, 122.42566230099999, 170.89226122399998], \"power_mean\": 136.26574886947435, \"energy_millijoules\": 7351.705358902406, \"energy_joules\": 7.351705358902406, \"coremark_score\": 5561.013587, \"coremarks_per_mhz\": 3.713283645165599, \"ulpmark_cm_score\": 40.80685845723139}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [665.107899309, 635.793200584, 627.6533802719999, 673.5726685999999, 633.78990345, 621.4261420380001, 644.547952125, 635.0040072200001, 620.210994081, 644.5787182500001, 652.157755848, 633.78990345, 654.3371227560001, 709.8141077999999, 611.465009319, 615.756399492, 660.0342029369999, 619.974365892, 615.90308508], \"power_mean\": 640.7850957106842, \"energy_millijoules\": 3203.9254785534213, \"energy_joules\": 3.2039254785534212}}, \"1612800\": {\"active\": {\"elapsed_sec\": 50.101987481, \"elapsed_ns\": 50101987481, \"power_samples\": [158.492146951, 128.57335598999987, 140.52673835399992, 158.492146951, 130.95176762999995, 134.48152286999994, 151.030256172, 123.66863154599992, 149.34928229799982, 179.59670472799985, 127.15264099000001, 122.14294379799992, 183.2913817499998, 127.18810418999999, 120.256781499, 185.70019717999992, 132.27009861499982, 125.4121438499999, 187.44266971800005, 124.63200626999992, 127.93539059, 180.7251960499999, 127.29485938999994, 143.53194582799983, 189.23975525299988, 126.08765478999999, 124.80927713999995, 171.90902273200004, 117.208136363, 125.02207506000002, 184.53423235000002, 128.53765051499988, 126.08765478999999, 189.54813311599992, 142.94239890599988, 123.49165841399986, 183.17660647799983, 133.3694841119999, 118.5560173099999, 152.82482217699987, 132.2342145199999, 117.418615316, 156.48645053099983, 172.0219999699999, 125.80351007499996, 162.67211191499996, 162.00163903499993, 127.33050538999998, 119.40007951799987, 158.38093641499995, 126.08765478999999, 135.54627080699993, 154.61560781000003, 127.08134898999992, 128.07760899000004, 184.45746552999992, 133.51288973999988, 123.59787866999989, 179.52060971499986, 122.31962016499995, 124.84480418999999, 174.51153779999993, 125.87450062999994, 111.5133067679999, 173.2270779659999, 123.49165841399986, 127.04588579000006, 186.86612155800003, 123.52694391, 130.98740834, 186.98143118999997, 140.7925804539999, 118.52096849399982, 154.726283986, 140.90129614199986, 128.53765051499988, 159.08514285699994, 128.39519482499998, 119.72835201899989, 156.63431953199995, 168.06872456299993, 121.00631345399984, 125.94549118499992, 166.9761651959999, 124.88014904999989, 137.9983430819999, 157.1010711099999, 130.7371885099999, 125.48301575999994, 191.91792996000004, 128.39519482499998, 135.4744493479999, 178.12586585400004, 126.05206826499989, 126.19423186999995, 180.648982392, 129.45910731999982, 118.87254063799992, 180.7251960499999, 125.87450062999994, 120.29188948499996, 179.44451470199988, 120.9357978679999, 128.5019450399999, 188.0358823979999, 134.23047085799988, 119.8693268699999, 178.20184222199987, 129.70909514999983, 127.25921339000001, 164.8606014300001, 120.97096502399995, 128.53765051499988, 174.77650091099986, 123.52694391, 127.22375018999992, 177.110885188, 150.5531032319999, 117.27829601399992, 140.4904972139999, 140.82888106899998, 121.0768290399999, 145.43035588599992, 138.41595118199996, 113.51121285299996, 154.21996485299996, 173.2270779659999, 114.78887671799987, 131.05905718999998, 168.25638804599998, 119.69324403299993, 125.58941471999992, 163.24425204, 123.56241128999989, 118.12075290300004, 178.04969417400002, 120.9004494379999, 133.29759697199984, 180.68718718199978, 129.6019837099999, 127.29485938999994, 180.648982392, 122.14294379799992, 126.30080895000003, 185.66195143799985, 114.61398191399996, 121.53545225999994, 190.63671569399992, 122.14294379799992, 119.7987489599999, 184.34270897599993, 124.4900802599999, 119.76364097399994, 168.143751382, 121.00631345399984, 129.6733301999999, 182.12486384200008, 120.9357978679999, 117.34845566499996, 185.62350855299997, 157.7672656059999, 118.48573901399982, 191.68608323699993, 138.45194729999992, 127.33050538999998, 155.31662009599995, 129.6733301999999, 113.44140952599992, 150.37363132899986, 130.77301293499988, 127.25921339000001, 167.6133660899999, 168.18136122700002, 129.70909514999983, 123.02650721199996, 159.51641302500002, 121.60614911999994, 129.17925043499986, 161.92720582999993, 127.22375018999992, 142.68825119999985, 169.49906052599977, 128.35948934999988, 131.02323276499988, 176.9211433769999, 119.72835201899989, 124.88014904999989, 187.95895609199977, 114.75382585799991, 123.91635755399977, 173.11372882199998, 128.46642266999982, 128.57335598999987, 176.9211433769999, 133.33354054199992, 118.41546071799985, 185.5083770409999, 123.42090553799983, 117.31328566000002], \"power_mean\": 142.7895326238341, \"energy_millijoules\": 7154.039375937177, \"energy_joules\": 7.154039375937177, \"coremark_score\": 5988.382538, \"coremarks_per_mhz\": 3.7130348077876985, \"ulpmark_cm_score\": 41.934351243447004}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [628.162330944, 677.99965464, 609.987550272, 643.8109851, 682.156814652, 623.681431386, 622.466876848, 668.559293489, 611.027473599, 626.2294572729999, 670.631686829, 619.974365892, 642.04534485, 669.9633197759999, 626.139811521, 624.9553084080001, 658.7580910319999, 618.641573664, 626.2294572729999], \"power_mean\": 639.5484646025263, \"energy_millijoules\": 3197.7423230126315, \"energy_joules\": 3.1977423230126316}}, \"1708800\": {\"active\": {\"elapsed_sec\": 47.284353055, \"elapsed_ns\": 47284353055, \"power_samples\": [134.97132987299995, 191.647342782, 132.19851444599976, 132.44915104799986, 191.840647719, 139.4415485259999, 131.05905718999998, 183.02350727099986, 137.133082371, 133.33354054199992, 190.32786294599998, 149.3109056369999, 136.88078412899995, 196.65965945999983, 140.7201653809999, 123.45619103399997, 167.725824634, 129.6019837099999, 139.51384495399986, 176.09538735399997, 169.3111002779998, 129.42352577999998, 166.21589584999992, 174.2846765009998, 129.63774865999994, 137.782166835, 159.40502378500003, 134.5042134429999, 139.02992620499992, 169.49906052599977, 133.18995058799987, 134.1228244739999, 191.72462502299993, 129.49487226999997, 130.80865364499982, 195.53384138499996, 132.05516208699987, 129.45910731999982, 183.13828254299983, 133.26183772799993, 142.10760853199986, 171.19351114099993, 136.88078412899995, 125.87450062999994, 171.26896873099986, 137.02490162699996, 133.18995058799987, 166.10380826999994, 169.3111002779998, 135.71052663799992, 135.40262788899986, 172.96253193300004, 125.91008715500004, 139.065922323, 164.41219454999998, 145.58431285199993, 147.77618642699986, 185.47013129899995, 130.77301293499988, 132.01946201299984, 193.93807679499992, 132.0910461819999, 137.24126311500004, 191.76336547799997, 133.22589415799996, 129.07231711499992, 192.9284589519998, 129.49487226999997, 131.5238561399999, 196.81517387999997, 123.38543815799994, 148.25162036599988, 191.68608323699993, 131.9835779179998, 133.26183772799993, 173.00037967800006, 138.1630506209999, 122.10753589299986, 177.37667972899987, 134.468210398, 129.49487226999997, 171.00525412799993, 170.17575605399986, 139.405307386, 182.23946099399996, 166.63878956400004, 129.6019837099999, 139.02992620499992, 169.34857642199984, 135.60252401399987, 137.70992284499994, 194.13197526199986, 135.7465891579999, 134.08688090399994, 186.520192662, 129.49487226999997, 143.20491681099986, 186.674004654, 140.93741060000002, 138.2714100689999, 187.9203940619999, 144.48358449399984, 132.05516208699987, 168.48166137399994, 133.18995058799987, 136.95284287800007, 171.04298292299995, 169.19828549399983, 138.1630506209999, 172.43689579599993, 171.83344619199988, 148.06870804200003, 135.0791543769999, 176.80725928899983, 145.51123543199992, 137.67398609100007, 165.61719820999986, 130.7371885099999, 136.5743626939999, 180.45835028599993, 132.01946201299984, 136.988964873, 196.5817023599999, 127.01023979000001, 135.85459178199994, 192.85085909199984, 128.21685055499995, 139.51384495399986, 199.1444108899999, 123.2437505219998, 136.95284287800007, 188.07444442799988, 136.95284287800007, 133.26183772799993, 184.15098876399998, 154.46816591799995, 130.7371885099999, 163.02040483999986, 136.988964873, 128.14562270999977, 157.69330736999984, 135.71052663799992, 125.6613464699999, 164.97251119499992, 175.41334624799993, 134.5042134429999, 131.91199374899998, 163.0577765899999, 136.95284287800007, 141.37227335199998, 172.96253193300004, 126.97459378999997, 137.70992284499994, 192.85085909199984, 133.11824777399988, 140.27360793000003, 189.1240887969999, 130.7013640849999, 133.29759697199984, 192.88965902199993, 126.76126619000001, 129.70909514999983, 185.43168841399995, 128.1099172349999, 131.87610965399983, 186.63550229399993, 139.33301095799993, 135.63858653399996, 196.50394514999982, 157.397284302, 127.04588579000006, 193.93807679499992, 151.7953008269999, 136.88078412899995, 157.65623318999985, 154.39444497199986, 130.7013640849999, 160.0733592250001, 155.41511209499993, 135.63858653399996, 169.95012648599982, 193.93807679499992, 135.63858653399996, 132.30598270999997, 177.89774143800003, 129.95889956999997, 131.23781188500004, 195.22288795499992], \"power_mean\": 151.69742700283504, \"energy_millijoules\": 7172.914695937142, \"energy_joules\": 7.172914695937142, \"coremark_score\": 6345.311872, \"coremarks_per_mhz\": 3.713314531835206, \"ulpmark_cm_score\": 41.82400219675343}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [628.568055834, 624.895714386, 664.822388133, 647.1782382389999, 634.761677297, 677.1439741799999, 644.7211862629999, 624.895714386, 636.6430953839999, 649.820957802, 625.313178936, 634.1527636740001, 669.228432192, 631.0299202519999, 635.428123495, 668.463588153, 619.885611324, 621.873004352, 684.5797168280001], \"power_mean\": 643.3371232163158, \"energy_millijoules\": 3216.685616081579, \"energy_joules\": 3.216685616081579}}, \"1804800\": {\"active\": {\"elapsed_sec\": 44.767010556, \"elapsed_ns\": 44767010556, \"power_samples\": [149.3109056369999, 152.96777969099992, 206.48457723899992, 145.54777414199975, 146.7899122619998, 213.82260497999994, 155.41511209499993, 145.51123543199992, 174.09533382299992, 164.11332061500002, 143.0230057529999, 182.35405814599994, 150.36959737799998, 149.4573975909999, 197.94087300499984, 208.657064514, 149.27418850200002, 152.89417738999998, 169.23576163799987, 149.2374713669999, 166.14110670999992, 170.139233172, 145.47488409999994, 174.81440832599992, 205.75350542399997, 149.27418850200002, 172.36151304199996, 201.4724976299999, 150.40618539000002, 152.34670868399985, 196.30945217999977, 146.68030538999994, 157.43416835799985, 207.3322425419999, 142.87770102699983, 146.3135880279999, 202.60108138999988, 147.84913805799988, 146.7899122619998, 209.93821714199998, 156.1909023479999, 144.33804247799992, 201.35504938999998, 144.15602142199998, 143.24114960899988, 213.82260497999994, 147.9222653899999, 145.54777414199975, 208.69643526200002, 144.19231338999998, 149.12769654800002, 210.01748347199998, 149.12769654800002, 150.479550012, 178.35379495799998, 152.89417738999998, 136.73648139, 201.70739411, 136.66442264099987, 143.0230057529999, 203.88237698500006, 176.50363339, 145.58431285199993, 166.14110670999992, 165.39263852999989, 145.58431285199993, 182.2011965339999, 155.37809738999988, 147.9953927219999, 181.10665618399992, 205.12439645999996, 156.509024974, 145.36545534799984, 196.3484307299999, 149.12769654800002, 154.68951827, 183.84451199799992, 151.68498147499997, 158.566223832, 199.65167588999998, 147.81248039800005, 157.397284302, 201.27681759999996, 149.12769654800002, 157.7138636279999, 210.05691338999998, 152.82057508899993, 145.6206641839999, 206.4056681489999, 155.23041820799995, 153.26256731299998, 213.50472474599997, 150.33282076800003, 150.40618539000002, 206.20880008599988, 148.28827802599994, 142.9141205919999, 204.96701820600003, 150.40618539000002, 147.84913805799988, 193.00585983799988, 139.11593582199998, 145.36545534799984, 195.41728374499996, 181.39921269799993, 150.44296199999997, 199.1444108899999, 187.61249108399988, 152.82057508899993, 158.45501329599995, 171.45633863599983, 150.25945614599993, 166.10380826999994, 183.95946539, 147.70269540599998, 163.58002283999986, 208.69643526200002, 147.81248039800005, 145.43834538999988, 191.33801514899994, 150.2960441580001, 151.8319480089998, 205.006413276, 154.02546121400007, 148.324747698, 197.51225550999993, 145.36545534799984, 155.1934035029998, 209.898787224, 155.30425779899986, 157.67672997299996, 201.27681759999996, 157.67672997299996, 145.36545534799984, 197.74608326999987, 155.3412725039999, 152.82057508899993, 206.09063878199981, 142.7686290989999, 149.054262278, 211.14050993399985, 155.26724309399992, 154.09937167399994, 183.72955860599984, 155.1934035029998, 149.27418850200002, 192.14997535199984, 153.98869549800008, 149.090979413, 189.5097096699999, 189.54813311599992, 155.30425779899986, 180.53456394399984, 183.84451199799992, 151.53782603799993, 156.11706275699987, 196.1927164199999, 146.57069851799986, 149.89725003900003, 207.37175656199997, 160.23844203, 147.48396399599994, 202.483454446, 155.1934035029998, 157.63959631799992, 207.41127058199993, 149.01773343599996, 157.82507416399994, 206.36641593499996, 153.98869549800008, 141.67221976199994, 196.4649665999999, 150.33282076800003, 158.84826832, 200.26951648499994, 182.56460271599997, 152.82057508899993, 207.49009598599991], \"power_mean\": 167.94868577504488, \"energy_millijoules\": 7518.560588957762, \"energy_joules\": 7.518560588957762, \"coremark_score\": 6701.963675, \"coremarks_per_mhz\": 3.7134107241799645, \"ulpmark_cm_score\": 39.90125456202337}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [643.9952663, 676.9178617499999, 624.68705871, 618.700725744, 677.079394345, 612.2128076999999, 620.3293841640001, 680.620254405, 626.020386187, 630.3270854130001, 673.1548005, 612.2420861699999, 613.602818773, 678.25861488, 624.001191264, 622.3184087239999, 686.645556216, 619.797008733, 621.040868578], \"power_mean\": 640.1027146608421, \"energy_millijoules\": 3200.5135733042107, \"energy_joules\": 3.2005135733042107}}}}, \"6\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 128.334674795, \"elapsed_ns\": 128334674795, \"power_samples\": [86.09023859799993, 120.39757538099991, 146.86292094899989, 87.16437087599991, 95.20025751000003, 148.10517771399986, 93.48137466999992, 90.56534332000001, 180.53456394399984, 84.78067130199997, 93.08692378499995, 147.81248039800005, 99.62865306800006, 104.18644968000001, 161.88989355499984, 97.17835735799997, 87.29899132799994, 153.0782777469999, 93.0056986699999, 87.5684052659999, 151.90562017899992, 98.35229478899998, 99.00233292699988, 150.773385696, 100.97392217699985, 99.10498903099995, 148.17849303399987, 93.37943162999989, 88.57522731799997, 158.1956489979999, 94.62162922499999, 94.7237503849999, 149.38415161399996, 94.89389402999984, 90.8950364399999, 149.3109056369999, 97.00761920999992, 97.31505316199991, 146.899519134, 100.97392217699985, 93.37943162999989, 149.27418850200002, 100.00565319400005, 99.66298983799993, 149.42086874899996, 95.86789959899988, 98.45495089299993, 133.7281825079998, 90.86111618999985, 86.25830391499994, 138.5603067479999, 87.23168110199992, 102.04443185399987, 144.592834542, 115.85635762899994, 99.73148729199988, 153.0415712009999, 110.71267142700003, 92.30678414999988, 111.61774523999986, 102.1131665979999, 92.61207890999981, 110.30059853699993, 95.93604111799993, 94.7237503849999, 121.39442108799983, 135.7465891579999, 97.24661752199995, 132.5209192379998, 140.68386476599994, 94.7237503849999, 94.22884059, 128.25255602999994, 84.34426615799987, 97.92974558999981, 133.22589415799996, 87.23168110199992, 105.4645289629998, 141.96254109599977, 90.96270298999991, 94.41738690499994, 146.9361173189999, 104.463808255, 89.85565620500006, 140.7201653809999, 83.53829558699988, 101.04271466699993, 146.899519134, 95.86789959899988, 93.58331770999996, 148.03205038199985, 103.22178878, 98.38639630299997, 146.7899122619998, 92.17103950499995, 100.97392217699985, 150.51632662199995, 94.65555303499991, 97.11009719399999, 126.54775579, 93.24344939000002, 95.9018827729999, 135.04315133199998, 89.51756938999995, 90.69186283999989, 150.92011493999996, 85.95568270699994, 92.13723403499989, 153.0415712009999, 125.59035591500003, 99.62865306800006, 118.02865909399975, 109.5707801609999, 93.48137466999992, 119.08355618999985, 99.69732660800003, 94.51950806499997, 125.23487297999986, 99.66298983799993, 89.85565620500006, 122.60233866800002, 128.14562270999977, 98.38639630299997, 101.90696236600002, 130.66572337499997, 92.30678414999988, 100.38265331999992, 120.8651010079999, 91.09821003999991, 100.45132686, 149.34743447899996, 93.51523930999986, 109.16117657999996, 153.00467544599985, 87.1306292459999, 89.92320410999992, 148.10517771399986, 103.29064255799994, 90.294978055, 140.64756415099987, 90.86111618999985, 95.33630247999997, 154.283768796, 88.50779844699991, 89.18243383499998, 149.38415161399996, 95.73144138999987, 89.85565620500006, 150.626467854, 83.37065168099991, 95.9018827729999, 150.51632662199995, 92.20501922999983, 92.23899895499983, 147.6662257339999, 99.49165816000004, 94.7237503849999, 149.38415161399996, 97.14413953799988, 99.62865306800006, 155.52596639099988, 103.29064255799994, 85.92217328100003, 143.13207768099994, 111.8153807079999, 95.9018827729999, 122.42566230099999, 102.147622318, 94.68965171000002, 138.6686661959999, 88.37276736599995, 97.14413953799988, 142.21650233999992, 125.62575994499991, 94.68965171000002, 139.62238252199995, 121.86022529500008, 94.75767419499994, 107.77889751199996, 109.53614592299982, 101.35157530799984, 126.54936713999984, 107.01705691799987, 92.13723403499989, 116.55712390499991, 144.265084398, 92.20501922999983, 123.95182493399977, 144.3015634379999, 92.23899895499983, 91.63989033999997, 131.87610965399983, 86.32549549599992, 96.68612333999988, 135.45864380599994, 87.26542273199993, 90.49779541499993, 149.27418850200002, 93.41329626999993, 96.37922374799996, 153.0782777469999, 99.49165816000004, 97.24661752199995, 161.59196938999992, 99.42316070599998, 98.69436461499993, 154.39444497199986, 99.560155614, 97.58826929399993, 146.82651044699992, 100.59626904599986, 87.02957738999987, 152.89417738999998, 94.62162922499999, 95.86789959899988, 143.0230057529999, 135.24263855799984, 97.17835735799997, 149.27418850200002, 98.11270528599994, 99.73148729199988, 153.0415712009999, 93.24344939000002, 95.49285848799991, 154.39444497199986, 93.44733546999998, 87.09688761599989, 141.8172871979998, 126.86783859000002, 93.44733546999998, 109.25817938399996, 112.02461389199993, 90.96270298999991, 121.53545225999994, 95.86789959899988, 79.70711252699994, 122.672972899, 94.62162922499999, 88.44019623700001, 122.672972899, 137.94651727199994, 95.83374125399996, 88.33896626099988, 126.97459378999997, 88.40656847100001, 95.37040115499997, 124.45473539999989, 91.9337041949999, 101.6262160949999, 127.96746154499988, 95.79958290899992, 102.80104412599997, 143.1684972459999, 93.44733546999998, 94.48540938999997, 149.34743447899996, 88.40656847100001, 88.54142621299991, 147.81248039800005, 89.61897807000003, 91.30120968999984, 156.21300190599982, 98.45495089299993, 98.8653995279999, 151.7584647419999, 84.71342594199996, 82.22891241199989, 162.83392938999998, 88.305338495, 88.40656847100001, 150.5531032319999, 94.68965171000002, 94.65555303499991, 141.49060577399985, 87.02957738999987, 89.55143016500006, 155.41511209499993, 92.1032543099999, 95.86789959899988, 145.54777414199975, 125.59035591500003, 94.62162922499999, 141.96254109599977, 129.2806493899999, 100.90530607799985, 117.59428498200009, 120.61820581999996, 85.989364862, 107.81359132699993, 114.4389073619999, 90.82719593999991, 114.00019502800001, 157.67672997299996, 97.14413953799988, 121.42958824399989, 154.320534512, 89.72038674999999, 95.23418131999995, 138.09087283799988, 93.41329626999993, 94.05881914999986, 119.4818722409999, 87.19793947199992, 96.51568195699986, 153.914785038, 93.3113532299999, 98.8653995279999, 154.17309262000003, 89.58511729500003, 95.9018827729999, 140.57514907799987, 81.99490174399978, 84.71342594199996, 154.13613738999993, 94.553431875, 93.27748858999996, 145.8031703559999, 93.3113532299999, 93.34539242999995, 146.68030538999994, 88.305338495, 92.17103950499995, 162.79674928999998, 110.32978997399994, 93.34539242999995, 154.17309262000003, 109.50133315799985, 102.04443185399987, 116.45197295299988, 102.04443185399987, 86.79390508199981, 137.27738510999995, 89.48388225999997, 89.6528388449999, 137.27738510999995, 124.66753331999996, 90.82719593999991, 140.75627983899983, 114.40403624999988, 89.61897807000003, 115.103795214, 125.62575994499991, 97.55405147400006, 117.699434279, 110.67797782499997, 92.1032543099999, 123.91635755399977, 151.68498147499997, 89.61897807000003, 126.4072035349999, 139.29676981799992, 84.71342594199996, 91.47063698999989, 142.9503533899998, 85.55236049199993, 96.54966513099987, 125.59035591500003, 92.13723403499989, 104.04856512200001, 157.75080685399996, 87.02957738999987, 97.0758793739999, 156.6940156259999, 77.25581237899996, 98.31801749399995, 149.2374713669999, 89.48388225999997, 92.340763875, 147.84913805799988, 94.58753054999988, 102.18207803799999, 160.2756948299998, 90.75952938999978, 103.083904222, 152.85747084399986, 89.48388225999997, 93.34539242999995, 154.13613738999993, 90.75952938999978, 98.1812598759999, 166.37651467199998, 99.52581884400001, 146.60729670299986, 140.68386476599994, 95.73144138999987, 95.45870014299987, 152.74697278799988, 96.90514122599996, 103.18727338999997, 146.7899122619998, 100.80229373399982, 90.79344963999995, 112.81264125399991, 101.90696236600002, 90.75952938999978, 127.25921339000001, 103.15293500199994, 88.27153738999982, 128.85845047499993, 90.79344963999995, 88.305338495, 128.6802893099998, 135.42258128599985, 103.18727338999997, 105.42928584599986, 126.83237538999992, 97.00761920999992, 99.00233292699988, 119.41129433100002, 94.553431875, 115.103795214, 151.35402341899987, 84.54565738999997, 115.103795214, 149.12769654800002, 93.20958474999998, 97.31505316199991, 140.50273400499998, 98.21536139, 92.64588437999987, 138.01869505499997, 96.90514122599996, 97.724789622, 154.02546121400007, 94.553431875, 106.36263690599992, 144.22879243, 95.69745821599986, 95.69745821599986, 141.7809271079999, 86.96226716399985, 102.00997613399988, 147.95892305000007, 86.99600879399998, 100.76789748899989, 145.2194878859999, 94.51950806499997, 97.45157348999987, 154.20985833600002, 97.04166155399992, 96.93935904599994, 152.85747084399986, 93.14150634999999, 101.90696236600002, 151.50117885600002, 94.41738690499994, 88.23790962399983, 134.61203794699986, 98.21536139, 95.69745821599986, 141.88982091599985, 98.14698258099997, 102.98053505399992, 143.1684972459999, 127.18810418999999, 85.75410796400001, 141.70839338999986, 127.93175606999989, 93.17554554999992, 118.6264762699999, 113.05722206300004, 87.79918861499993, 117.59428498200009, 109.22336661899988, 85.78761738999992, 121.42958824399989, 150.80997370799992, 92.0692745849999, 112.68706621599995, 139.11593582199998, 93.3113532299999, 98.79702071899999, 129.2806493899999, 96.24294070999986, 104.01404973199988, 125.62575994499991, 91.86591899999996, 86.527242968, 144.15602142199998, 131.4105365239999, 102.6291189179999, 157.75080685399996, 93.14150634999999, 87.06331902, 150.51632662199995, 93.20958474999998, 90.8950364399999, 154.13613738999993, 89.48388225999997, 95.79958290899992, 150.36959737799998, 98.11270528599994, 88.71008505999998, 186.48188775000006, 85.82129954499999, 84.54565738999997, 152.89417738999998, 109.39707338999983, 99.35448716600001, 146.57069851799986, 115.50579443799995, 96.90514122599996, 106.50081904199988, 121.75418315899992, 94.45148558000005, 112.68706621599995, 109.36243915199987, 99.45732138999995], \"power_mean\": 112.24324436241726, \"energy_millijoules\": 14404.700263186538, \"energy_joules\": 14.404700263186538, \"coremark_score\": 2337.959896, \"coremarks_per_mhz\": 7.793199653333333, \"ulpmark_cm_score\": 20.826535402940447}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [663.324854372, 625.811161598, 630.8191861639999, 670.7596592709999, 626.815126672, 625.811161598, 698.8479353, 656.9135723119999, 620.5962051380001, 631.428931217, 655.795412415, 613.251515688, 631.5117307879999, 648.1743823160001, 625.1837948369999, 669.3561673439999, 643.1661586749999, 622.021472476, 651.4729993239999], \"power_mean\": 642.6874435528947, \"energy_millijoules\": 3213.4372177644736, \"energy_joules\": 3.2134372177644734}}, \"652800\": {\"active\": {\"elapsed_sec\": 58.997325186, \"elapsed_ns\": 58997325186, \"power_samples\": [148.871053189, 210.8235794699999, 152.37858286499988, 145.11005913399993, 200.92447287999994, 157.528385782, 145.07370780199994, 260.3339038639999, 146.132458713, 150.2960441580001, 208.498972696, 149.92903245000002, 151.28054015199996, 228.00676777399997, 152.08398445199987, 147.5197830819999, 212.02507517999982, 154.86084061499992, 141.3817119659999, 176.90926740600003, 149.85566782800004, 147.62956807399996, 185.39324552899996, 146.20546739999986, 145.0008177599999, 189.04704384599995, 181.99072635599987, 153.69362220000005, 197.51225550999993, 179.7338307299998, 148.76109007699984, 155.8583394599999, 183.53803523199986, 151.24370406699984, 155.67364557299982, 182.3350521719999, 142.44141331499998, 154.46816591799995, 201.81696890199987, 153.73038791600004, 155.7476749829999, 205.81506395999986, 151.20705688499993, 150.075761694, 203.37202285499995, 139.74172418900002, 147.5929104139999, 210.62531982199994, 148.76109007699984, 146.31507427199995, 202.0131480859999, 159.94099274999985, 144.04677137400006, 203.29335166500005, 157.306155139, 147.5197830819999, 216.83414228799984, 153.61971173999996, 152.48908092099987, 213.02780231400004, 147.44665575, 153.69362220000005, 187.95895609199977, 159.75511082999992, 142.22326945899988, 186.48188775000006, 152.2680848089999, 151.20705688499993, 175.26167338999994, 177.6696170219999, 161.1822997449999, 197.6291693899999, 189.55563189399993, 151.20705688499993, 149.38415161399996, 185.94384194999998, 151.72162865699988, 158.1956489979999, 177.28953987, 144.96427904999985, 162.0389513099998, 222.8822268419999, 144.74542154599987, 166.788798478, 215.75270969999997, 146.3514847739999, 142.9141205919999, 193.23980317899986, 148.5046350109999, 151.7584647419999, 188.39166661499996, 149.81889121799998, 144.44729252599984, 213.30607511999995, 154.89785531999985, 158.55129392499998, 208.222565692, 156.21300190599982, 157.34309836500006, 200.72879285, 148.6878440999999, 152.37858286499988, 201.81696890199987, 151.096737533, 144.96427904999985, 189.82580366199988, 148.61459812300006, 154.49145284099995, 200.92447287999994, 146.0958605279999, 151.24370406699984, 209.30530598400003, 181.05542124199997, 151.096737533, 166.942550794, 168.44625132599992, 151.13338471499992, 171.7580634379999, 145.98625365599992, 139.77802480399998, 185.23986827499994, 155.91697883799986, 142.368760952, 187.72797941999988, 188.39166661499996, 146.0592623429999, 153.47226984799988, 175.85835522699983, 156.02801125399992, 155.37809738999988, 182.10550162799984, 151.096737533, 153.11517350199995, 187.18909976999987, 145.94965547099991, 143.24114960899988, 211.78697020399989, 151.0599014479999, 143.17277099, 215.71277896499998, 154.82401572899994, 148.6878440999999, 200.76800930000002, 155.99093707399993, 150.98641818099986, 209.06791348799993, 144.78196025599982, 151.31718733399998, 215.59319153299987, 154.7870010239999, 138.7542678299999, 198.2076748899999, 153.61971173999996, 157.2318878289999, 209.5426984799999, 148.61459812300006, 153.54599079399998, 188.00624380099998, 149.745526596, 173.14959241799988, 202.483454446, 141.05521700399993, 152.30498056399983, 199.68316588499988, 145.98625365599992, 148.61459812300006, 212.90857170599998, 170.8904835159999, 152.19448250799996, 176.94735324599992, 162.23713128999998, 144.78196025599982, 176.65554384300003, 154.82401572899994, 153.54599079399998, 188.81571093399998, 184.24212755199994, 143.60977118199992, 192.38625480199994, 182.18195296499982, 151.096737533, 151.94226736099984, 177.06141545399987, 147.2637434259999, 162.83392938999998, 173.2629258689999, 142.22326945899988, 164.150559885, 204.06274983000003, 142.22326945899988, 181.59014254199997, 207.90658499799997, 144.78196025599982, 159.94099274999985, 205.6969026559999, 140.90996310599985, 146.71690357499995, 199.48778261999996, 142.25968902399995, 140.75627983899983, 206.93791288599994, 147.2637434259999, 158.15851534299986, 205.57874135199995, 149.745526596, 147.37352841799998, 209.30530598400003, 151.8319480089998, 148.57788098799995, 208.064473874, 153.47226984799988, 143.64625022199994, 201.85624502199994, 146.0228518409998, 154.9348700249999, 203.13641272699988, 157.2318878289999, 149.81889121799998, 198.09058288999984, 157.45430890099988, 152.2680848089999, 204.33790924200002, 159.7178580299999, 157.0837340669999, 190.32786294599998, 157.19494460299984, 146.534288016, 181.55187808200003, 153.435314618, 158.5141006, 189.90316562199996, 170.8528890319999, 153.32463844199992], \"power_mean\": 167.78103049073812, \"energy_millijoules\": 9898.632015904257, \"energy_joules\": 9.898632015904257, \"coremark_score\": 5086.383751, \"coremarks_per_mhz\": 7.791641775428922, \"ulpmark_cm_score\": 30.30721816085154}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [634.277017451, 615.5948710680001, 657.41533736, 676.562423635, 620.625900128, 654.762420594, 677.6435635199999, 620.625900128, 636.036005392, 666.5509640800001, 623.6731943460001, 622.496631508, 660.3010368, 628.974529392, 627.3839086559999, 685.2672836590001, 621.9323610839999, 631.7910789609999, 681.538375924], \"power_mean\": 644.3922528255789, \"energy_millijoules\": 3221.9612641278945, \"energy_joules\": 3.2219612641278945}}, \"806400\": {\"active\": {\"elapsed_sec\": 47.747090503, \"elapsed_ns\": 47747090503, \"power_samples\": [187.8049057259999, 195.57025895999993, 167.01757761299996, 195.18416846499997, 235.21187360999988, 178.14992139599985, 177.99773136999988, 224.04245270599984, 181.8759510839999, 175.85835522699983, 222.72128232599994, 173.18730543599986, 177.21336818999998, 227.68318580599998, 175.66861341599997, 174.73111043999995, 235.21187360999988, 185.17517688600003, 179.0473200419999, 227.72371148600007, 159.4576615499999, 180.55896440200002, 240.13719959399998, 185.52110578200006, 175.40301388199998, 207.55103061399996, 186.72714642599988, 175.66861341599997, 198.91022689, 168.22062175799988, 169.46127574799993, 203.72523632599996, 169.49900454299996, 171.67823178599997, 208.34108382, 202.8614670039999, 168.0326615099998, 166.6420577759999, 204.2593211279999, 179.27615693799987, 181.51380985000003, 202.94013819399993, 182.92508169999985, 182.52627878099986, 224.798995622, 175.6307820579999, 193.89921738999988, 233.84901838999986, 170.701929738, 172.8090088739998, 232.73068396999986, 179.31436172799988, 177.09930598200003, 224.00210545099992, 172.99815715499983, 174.84481640799982, 239.89089642599993, 171.86708232900003, 186.17446121399996, 227.76423716599993, 173.03606457, 175.51689796999995, 221.516967432, 184.08875029799992, 179.31436172799988, 226.52364234599997, 171.79158093, 175.47887160499988, 218.79565315799994, 174.35222034799995, 180.52069994199996, 217.91530506900006, 186.57329381399984, 173.2629258689999, 230.08712346499988, 188.783400842, 168.0326615099998, 228.96831415999998, 189.28546012599986, 173.14959241799988, 193.78283845399994, 185.21367924599997, 175.44084523999993, 197.51225550999993, 181.7994997469999, 172.99815715499983, 218.39487437399998, 216.31529494799986, 171.79158093, 218.27513608499987, 208.90978732200006, 179.19994327999996, 182.64105405299983, 200.21998455000005, 179.12372962199993, 188.77728748799996, 200.25899989000004, 176.64325246200008, 186.40508047800006, 231.02028696000002, 166.75469443999998, 198.75403739, 226.36198504499987, 170.58875871399994, 171.00365453999996, 222.60062558999994, 182.69517491599993, 171.30537934199992, 213.95027930499998, 171.79158093, 176.42777566699988, 231.44938485000011, 179.27615693799987, 186.44338539, 217.675417725, 164.34501378999994, 170.66433525399998, 233.8896322899999, 172.24478341500003, 169.46127574799993, 236.33391872999994, 174.23851437999986, 172.20712976099992, 220.27643208699988, 166.75469443999998, 174.95852237600002, 245.02090256999998, 174.1627753019999, 168.1078069739999, 231.24628082999993, 157.66018000500003, 171.79158093, 222.64091337000002, 168.1078069739999, 174.23851437999986, 214.22876335900003, 171.56488264199993, 172.54404576299999, 233.80819513999984, 161.71488504, 160.7355091699999, 228.88735158999987, 190.33255134, 171.829234584, 224.9602081139999, 182.84851171799994, 169.31074752999996, 203.60743126199986, 170.437993206, 166.56703095700004, 209.5426984799999, 179.16173848999995, 169.16002583099987, 214.26863442399997, 216.2355196059999, 176.56708078199995, 171.1869874649999, 192.81314683999994, 175.5547293279999, 198.63694538999994, 195.18107312999985, 170.4002049359999, 196.11495920999994, 192.81314683999994, 170.55116422999993, 197.39534162999985, 241.007745827, 169.27301873499982, 172.65757361099986, 215.07511584299994, 174.27648126999986, 173.83056510899985, 207.70891949000008, 169.12229703599985, 177.55555481399995, 211.15215950599986, 174.23851437999986, 181.2463510859999, 220.11596353999994, 176.79520519799996, 166.6420577759999, 244.93818474, 167.88217740599987, 177.95958605499993, 234.88523111999996, 171.67823178599997, 181.9142750189999, 240.72011730500003, 172.99815715499983], \"power_mean\": 191.30724589804225, \"energy_millijoules\": 9134.3643837735, \"energy_joules\": 9.1343643837735, \"coremark_score\": 6285.22344, \"coremarks_per_mhz\": 7.794175892857143, \"ulpmark_cm_score\": 32.843007722893894}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [630.3673920839999, 616.74938251, 653.3703733780001, 621.546313444, 609.172579072, 682.5856572810001, 619.116607704, 626.575647616, 659.4045374379999, 645.071174694, 624.1502529180001, 661.765115064, 666.168855216, 636.55421875, 646.6531297199999, 657.7839741399999, 628.914460401, 631.0901078879999, 650.2614225870001], \"power_mean\": 640.3842737844736, \"energy_millijoules\": 3201.921368922368, \"energy_joules\": 3.201921368922368}}, \"979200\": {\"active\": {\"elapsed_sec\": 39.314641547, \"elapsed_ns\": 39314641547, \"power_samples\": [213.83087057700004, 270.873096186, 205.14555068099992, 212.590691472, 263.086885056, 208.79109107400006, 207.78806686999997, 276.94541626299986, 207.47208617599983, 213.75133291399993, 274.46553263299984, 222.96259579800005, 203.78738839200003, 289.0924042349999, 213.75133291399993, 208.83052099199995, 244.02764713399984, 206.18856495799992, 210.38777463799988, 258.58959309, 213.35323566499994, 217.35563639399993, 276.85960417299987, 238.5277438569999, 218.59551873399994, 258.086508, 224.92000859799998, 213.711461849, 243.1945696339999, 235.6798902149999, 209.47647233399994, 238.10630840999988, 223.43827842599978, 213.51251545799994, 238.229103754, 245.8477725759999, 211.27121199399994, 216.15574426399985, 255.56137824999985, 216.075763844, 220.79759437699988, 240.843447009, 209.35759796599984, 223.24419705000003, 248.3274183059999, 206.0307115139999, 216.91412270799992, 289.0489030499999, 214.6766275849999, 215.71667226599993, 268.134507495, 208.59333174300002, 218.83576231799987, 266.9369562599999, 213.472644393, 220.2362634519999, 260.73377694199996, 204.751814555, 216.7543669459999, 270.49049217999993, 218.47539694199986, 213.35323566499994, 270.5754910139999, 222.23886198599996, 222.319230942, 265.73950397, 208.55369857799997, 216.11575405399992, 268.90710498999977, 201.18975947799993, 214.83594097899982, 270.61809968399996, 213.472644393, 214.83594097899982, 269.4591509899999, 207.27442066800006, 209.63483578999978, 269.0768645899999, 217.19564303699997, 211.0331070179999, 244.19520894900006, 217.23569272199995, 214.7962150169999, 247.7499650389999, 225.79649576999998, 213.59205312099994, 261.1123210699999, 250.22900635399992, 214.71635354699993, 251.310152357, 248.16169496999999, 212.15358062999985, 211.95493100399995, 260.31331639799987, 225.6753046739999, 212.90857170599998, 239.5214416739999, 212.15358062999985, 210.62531982199994, 260.3973652939999, 207.39293879599995, 227.925924238, 274.0811070409999, 223.43827842599978, 215.99598850199993, 278.10349203099986, 209.75371015799988, 214.7962150169999, 260.73377694199996, 207.27442066800006, 217.19564303699997, 275.5343078939999, 208.51406541300003, 212.43185343599987, 279.1286302299999, 212.23299964800003, 209.83309543799987, 268.04952844499996, 226.67191422199994, 211.1919116209998, 263.00259886999993, 219.75526979699987, 213.552386523, 239.22452329599992, 219.75526979699987, 209.63483578999978, 245.14476721799997, 220.91457727199997, 204.86997585899996, 257.2656023789999, 242.95597961399994, 215.91621315999998, 276.64551400999994, 239.5214416739999, 199.86763982999992, 231.69319316999986, 238.28179692899994, 215.71667226599993, 237.90171959199984, 218.31516598999985, 213.39310673, 282.38294943799986, 268.47377000999995, 199.82842338, 244.06894657399994, 255.60327263499994, 208.35593924699992, 216.7543669459999, 249.239170038, 217.75531171199998, 226.44270993599991, 242.00073116399994, 210.91405452999993, 215.39394740399985, 264.28850008999984], \"power_mean\": 231.3472759817096, \"energy_millijoules\": 9095.335228095795, \"energy_joules\": 9.095335228095795, \"coremark_score\": 7633.976284, \"coremarks_per_mhz\": 7.796135910947712, \"ulpmark_cm_score\": 32.98394094076818}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [674.9002080900001, 640.9726592100001, 625.3032201709999, 682.389969393, 632.55033813, 621.72438364, 674.9002080900001, 628.974529392, 641.46302079, 670.72454893, 640.94195256, 620.744375524, 681.212934668, 620.181236688, 617.844537304, 687.363069426, 615.359667534, 633.701464429, 687.264512418], \"power_mean\": 647.2903598098421, \"energy_millijoules\": 3236.4517990492104, \"energy_joules\": 3.2364517990492105}}, \"1094400\": {\"active\": {\"elapsed_sec\": 35.185127904, \"elapsed_ns\": 35185127904, \"power_samples\": [243.07966614199995, 242.5360022299999, 302.42733626999984, 244.1127032159999, 248.7006153299999, 302.6476623899998, 236.83756336599993, 245.144934358, 328.5115602929999, 239.19310774199994, 238.036060572, 300.03707025000006, 255.47780432299976, 250.3537621859998, 300.7040113749998, 242.87359252599992, 243.244440318, 304.9499507400001, 244.1538500339999, 245.39301989399985, 307.210958304, 242.83229308599994, 251.38478010199992, 304.7290310899999, 252.7905407039999, 244.07134430100007, 270.0226708339999, 246.54944673099988, 247.83003528599988, 278.31787993199987, 246.59092459599992, 242.83229308599994, 283.4077477399999, 283.3525932719999, 232.9931955899999, 285.6331397339999, 277.5030737059999, 247.91289695399996, 257.2656023789999, 271.346720883, 245.39301989399985, 258.715418226, 256.55367433799995, 241.58917940799984, 266.12018729, 303.40166796999995, 246.54944673099988, 269.7563393899999, 292.37909912199996, 251.67636396599994, 244.773173274, 292.6407299539999, 241.38340352999978, 248.49335465399997, 291.2273480419999, 248.03729596199992, 251.22705300999996, 295.65839169799995, 246.6321897539998, 262.31048634, 299.7733008099999, 240.35012819300005, 241.67144746199983, 309.8221337079999, 248.65787848799994, 239.43941090999988, 302.29509530999997, 239.06995615799997, 252.915652776, 305.83924982999986, 246.59092459599992, 246.09585811199986, 307.299518433, 242.83229308599994, 244.19520894900006, 297.20353818599995, 235.884392229, 253.90436120200002, 299.86114868000004, 247.83003528599988, 245.18635274799988, 287.8093769499999, 249.031611624, 247.17055117099994, 283.87086290399986, 232.87093518999995, 255.01782545999993, 309.59979775399995, 259.7666744779998, 246.54944673099988, 303.4458832449999, 248.99001461399996, 246.34248281999987, 270.873096186, 256.38628841599996, 248.03729596199992, 282.0382388219999, 247.70563627800004, 239.06995615799997, 294.1858042859999, 269.89506332999986, 233.90593261499998, 295.075851768, 266.21695094999995, 246.46670370799995, 252.21760180599995, 265.10503176999987, 241.09514811199983, 268.38879095999994, 265.02050790499993, 240.18561819399997, 267.14867132999996, 300.9240407299999, 242.74990599799992, 252.290092416, 292.509914538, 256.1349943839999, 254.5724325340001, 286.05015392200005, 245.18635274799988, 247.29455935199996, 279.938193468, 250.18756349199987, 246.05443972199987, 298.4903908649999, 255.1013993869998, 244.81422444399982, 297.3350660819999, 247.788497946, 244.1127032159999, 298.53436824000005, 245.31039551599986, 261.29982674099983, 303.00463747499987, 238.98792539399994, 255.51948386499987, 301.1442962199998, 247.62256159800006, 247.20804024599988], \"power_mean\": 263.2653072057985, \"energy_millijoules\": 9263.023506721871, \"energy_joules\": 9.26302350672187, \"coremark_score\": 8530.482257, \"coremarks_per_mhz\": 7.794665805007309, \"ulpmark_cm_score\": 32.386833497971786}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [625.7373940159999, 677.982198636, 627.578188035, 635.4289153999999, 657.2812562080001, 619.766268238, 633.275903244, 648.580640216, 611.3068267360001, 636.88875, 706.5755702450001, 623.762661978, 648.143537092, 685.8585251119999, 633.792357605, 635.3985063199999, 669.703146424, 625.1837948369999, 620.53696744], \"power_mean\": 643.3042846201052, \"energy_millijoules\": 3216.521423100526, \"energy_joules\": 3.2165214231005264}}, \"1209600\": {\"active\": {\"elapsed_sec\": 31.828465248, \"elapsed_ns\": 31828465248, \"power_samples\": [319.74314454399985, 267.3710034149999, 268.65224738999984, 324.383462625, 273.35504295199996, 271.00603215599995, 337.9257021299999, 289.1791835219999, 273.6113266799998, 324.383462625, 273.48318481599983, 282.07109435899986, 309.159776998, 276.00324352099994, 267.20148110499997, 312.88348920600004, 280.8755595619999, 275.96033747599995, 308.84905933999994, 304.46383669, 282.11407641699986, 312.3044177459999, 298.1832258149999, 273.18411399299987, 279.4293652759999, 304.59643388999984, 277.24594042699994, 285.54649421399995, 302.07476919, 277.074297904, 297.99270556199997, 325.3961900259999, 267.24375273499993, 270.32027600599986, 320.53246318799995, 264.6398245849998, 268.134507495, 307.210958304, 275.7462473129999, 272.0280983370001, 304.46383669, 273.48318481599983, 282.97659781799985, 337.8798205799999, 262.4544136499999, 275.53193711899996, 335.4027868699999, 264.9359840399999, 277.76042732199994, 321.81608802799997, 259.8507233739998, 266.8947438, 309.59979775399995, 273.31225585699997, 264.49962162999987, 334.16427001499994, 279.63704270699986, 269.172026976, 327.9224523229999, 279.2930282279999, 282.24346570499995, 337.78829277, 273.26968818299986, 267.24375273499993, 326.412383246, 278.2696709239999, 276.1744276389999, 330.39936769299993, 283.22302586399985, 269.25702580999996, 320.48764569599984, 279.551094324, 264.7245657349998, 334.0273950149999, 290.74841918799984, 268.26996098999984, 307.65109800999994, 280.74634839400005, 272.201880866, 314.9611839019999, 274.6789145759999, 269.55484948799995, 319.56341911699985, 273.39783004699984, 280.78949253400003, 329.20614188399986, 297.963564465, 275.831839372, 300.3078228549998, 290.7047988579999, 264.7245657349998, 306.6356778979999, 285.703763461, 274.37964776399986, 304.06376336999983, 324.0223429439998, 270.96336401099995, 301.40819576499985, 322.9645610659999, 278.2696709239999, 274.25181657899986, 318.00666980899985, 270.96336401099995, 269.28917318999993, 321.7261033809999, 269.5122408179999, 275.66262787799997, 336.00096959999996, 264.59767129499994, 269.28917318999993, 323.97711600899993, 267.11650205499996, 264.5553007199999, 329.06997994799985, 266.69247838499996, 275.91743143099995, 332.7395867669999, 272.0739171219999, 267.24375273499993, 328.93381801199996, 270.87824653199993, 269.8524546599999, 331.59224139799994, 276.81694428799995, 266.0052358799999, 328.9792830419998], \"power_mean\": 290.85031656103166, \"energy_millijoules\": 9257.319193032596, \"energy_joules\": 9.257319193032595, \"coremark_score\": 9430.403621, \"coremarks_per_mhz\": 7.796299289847884, \"ulpmark_cm_score\": 32.406790102451176}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [615.6298721779999, 645.6955882259999, 678.274127388, 629.855410368, 631.097014128, 671.5482124, 627.4881860429999, 617.755960856, 677.949706566, 629.885581548, 637.09587585, 687.034658574, 626.186513376, 614.9480235840001, 675.9485001649999, 626.1265282559999, 618.761589432, 675.2376239349999, 628.674030018], \"power_mean\": 642.9048948889999, \"energy_millijoules\": 3214.5244744449997, \"energy_joules\": 3.2145244744449997}}, \"1324800\": {\"active\": {\"elapsed_sec\": 29.06913051, \"elapsed_ns\": 29069130510, \"power_samples\": [311.59145031599996, 302.5631649599999, 349.173607305, 301.6780463099999, 312.96345613899996, 357.75510612799985, 338.61392853999996, 307.78423015400006, 317.513368422, 332.69394331199976, 306.590582079, 322.356458556, 321.320825485, 309.20009523299996, 341.003745226, 327.51450087499984, 302.82800311999995, 343.3904384069999, 362.19664779999994, 305.26381179399993, 311.3243450220001, 353.56948285299995, 311.547047208, 307.52103258599993, 357.0072074059999, 312.74045718800005, 310.0442413909998, 368.05922322999993, 305.3524806339999, 317.48474975199986, 357.0538009679999, 308.97775927899977, 297.39298621499995, 369.39158858999986, 312.65130344500005, 315.5297544389998, 364.57835489399986, 305.3524806339999, 299.64141609, 369.34415971499993, 307.65109800999994, 307.3439123279999, 365.72165906399994, 310.17139802999986, 308.93347470499987, 362.00860187399996, 308.93347470499987, 321.2757174999999, 367.053964254, 306.147326112, 369.58081763999996, 359.0606087099999, 310.12682570999993, 306.6791422079998, 368.24845790999996, 313.7999543819999, 314.99294864699993, 369.5336319899999, 322.1529365539998, 303.84512543999995, 367.053964254, 313.7999543819999, 315.1717307129999, 349.081010912, 322.55874880999977, 310.12682570999993, 357.5680113609999, 306.41323416, 309.9044212619999, 357.33432303199993, 341.91721138799994, 309.94899358199996, 370.6764599699999, 322.51358134999987, 310.0379096459999, 334.71177001499996, 318.79998979999993, 309.9044212619999, 340.728212858, 319.67815862399993, 306.36906792600007, 343.068073914, 346.6921560599999, 311.19067793399995, 350.180395514, 336.00096959999996, 313.8892267699998, 312.3044177459999, 340.7720022379999, 308.88896186, 317.26086050599986, 338.56822310999996, 319.94798764799987, 334.71177001499996, 364.48397333399987, 305.131263246, 327.1365252620001, 372.9142832099998, 307.51796586599994, 314.6486157979999, 348.3397636939999, 302.0777039149999, 315.7533469199998, 348.478777302, 305.0425944059999, 311.01667207799994, 368.01209674999996, 309.85984894199987, 309.28889265199984, 365.76890931899993, 316.23069385199994, 312.5174582369999, 375.58377918199983, 297.39298621499995, 313.7999543819999], \"power_mean\": 327.74426248666947, \"energy_millijoules\": 9527.240740128693, \"energy_joules\": 9.527240740128693, \"coremark_score\": 10326.311442, \"coremarks_per_mhz\": 7.794619144021739, \"ulpmark_cm_score\": 31.488655339252784}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [618.6137158110001, 679.2881450250001, 628.433599635, 641.7842074499999, 674.77112, 635.550625, 617.9925858120001, 686.936101566, 618.524961243, 616.0423472529999, 676.8989488799999, 644.11547357, 645.510237138, 679.4831204330001, 649.453811167, 637.21767564, 656.631269048, 628.523625912, 618.6433513259999], \"power_mean\": 644.9692064162632, \"energy_millijoules\": 3224.846032081316, \"energy_joules\": 3.224846032081316}}, \"1555200\": {\"active\": {\"elapsed_sec\": 24.778389573, \"elapsed_ns\": 24778389573, \"power_samples\": [472.47100107000006, 401.701985865, 400.999402894, 461.43738989100007, 406.991187135, 407.04046070999993, 452.05329271799997, 401.94666130999985, 397.093720578, 466.33628771199983, 403.47728651, 405.45998319, 457.620144126, 420.30393680999987, 401.89787709999996, 453.910470606, 419.16709795299994, 400.657324336, 440.1796427899999, 413.12930730300013, 404.37087443999985, 432.7484011199999, 406.94216624499995, 406.8928926699998, 437.3457242620002, 447.100154814, 417.041702537, 452.3098455740003, 440.4017256149998, 405.75451064999993, 404.35923681999986, 442.8243407950001, 401.84884142499993, 416.6936854549999, 435.3499401419999, 405.5581590099998, 419.12378162999994, 467.41660385099976, 414.2669178939998, 428.67952797399994, 462.62238128399986, 406.991187135, 408.67110209999987, 468.86150347800003, 394.81077703799997, 400.0554862859999, 463.5994771200001, 406.79459820500006, 412.683353272, 462.46679317200005, 414.01901931, 409.16367362999995, 457.4652690780001, 400.755025187, 439.01310766999995, 469.57616740899994, 401.1635992999999, 406.84387178, 459.94208222199995, 410.3104145099999, 406.94216624499995, 461.12683602000016, 400.6083483309999, 406.2043260449999, 477.20711018999987, 399.371909136, 404.37087443999985, 466.180164656, 417.8808495179999, 405.6563348299999, 458.80924867199997, 400.5593723259999, 415.40403637400004, 452.8280753339998, 405.36155498999983, 401.55513030500003, 455.24995278899996, 406.79459820500006, 400.6083483309999, 459.9939147819998, 415.40403637400004, 407.83395819, 437.37103822999984, 419.06761626, 409.3209232139998, 427.6424674379998, 422.6805367500001, 400.51064748, 431.3094367179999, 417.6821234219999, 414.217287274, 436.05763354199985, 451.2322181100001, 408.97568076599987, 407.34163964999993, 446.3337978940001, 407.98170435, 414.01980843599995], \"power_mean\": 424.53477641156115, \"energy_millijoules\": 10519.288077212113, \"energy_joules\": 10.519288077212114, \"coremark_score\": 12115.338018, \"coremarks_per_mhz\": 7.790212202932099, \"ulpmark_cm_score\": 28.51904024283627}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [622.0743730629999, 629.034598383, 684.1218390470001, 619.7070305400001, 636.394979115, 687.980116425, 625.8870492, 624.5862076579999, 679.2881450250001, 627.098280153, 628.523625912, 681.640055877, 615.9245837269999, 627.368132016, 680.5292739, 628.373376225, 632.701795132, 673.046342805, 651.4993592520001], \"power_mean\": 645.0410086028947, \"energy_millijoules\": 3225.2050430144736, \"energy_joules\": 3.2252050430144736}}, \"1708800\": {\"active\": {\"elapsed_sec\": 22.532698377, \"elapsed_ns\": 22532698377, \"power_samples\": [525.122631234, 466.791399147, 483.94088025899987, 523.7221675559999, 471.33485644799975, 470.49857929199993, 533.391180912, 471.73835757000006, 476.83899114999986, 532.321379109, 470.49857929199993, 485.33540299799984, 537.268337532, 462.97641219199977, 476.7339300299998, 524.902967256, 471.2151560100001, 469.2628525769999, 528.5041516420001, 471.52918449000003, 474.1049871700002, 511.84435314000007, 459.32142054199994, 465.39954937599987, 516.1945385640001, 475.28798911499985, 465.5038096359999, 527.2644923979999, 486.0979952539999, 475.34059523999963, 529.4642031929998, 483.8351068799998, 471.37217024999995, 493.71813060599993, 483.94088025899987, 477.12773732999995, 498.66531234599984, 470.2896442799997, 465.3476865800001, 508.02708458999996, 517.157339035, 477.49600169999985, 477.0222871799997, 503.6141378499999, 465.4516795059999, 472.6804430100001, 498.7221041949997, 466.4787967949999, 481.0255427939999, 501.0894220700002, 467.6621861340002, 478.75897003499995, 538.1154325289999, 480.287078694, 473.63287573, 529.5191445749999, 481.25871089099974, 478.7880882809998, 522.10287133, 459.0109567979998, 475.0254980399998, 536.8801212239998, 476.3134154699999, 475.2356527649997, 523.6125952030002, 472.7121867400001, 484.487722374, 526.9344249419999, 470.0283412379997, 470.0283412379997, 535.5340503379998, 486.1508645219999, 470.13280874399993, 499.1025571989999, 466.42687482899987, 472.4502891950001, 506.94883380600004, 470.0804407139999, 473.63287573, 510.39122131, 472.3978020200002, 473.73796903000016, 516.1945385640001, 508.289399645, 474.97316168999987, 484.27593832599973, 498.4002349309999, 474.86794943999985, 490.92111025300005], \"power_mean\": 489.41703788873025, \"energy_millijoules\": 11027.886495311539, \"energy_joules\": 11.027886495311538, \"coremark_score\": 13323.858589, \"coremarks_per_mhz\": 7.797201889630149, \"ulpmark_cm_score\": 27.20376203795204}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [615.747787071, 656.1921843480001, 714.719569446, 629.5241462839999, 665.850540212, 666.709263458, 627.008278161, 622.580296, 669.1909276780001, 623.315323818, 616.484338893, 693.625337838, 629.373599832, 631.3083186550001, 686.049257256, 627.15823011, 636.37171875, 680.3339422519999, 621.895946932], \"power_mean\": 648.0757372102105, \"energy_millijoules\": 3240.3786860510527, \"energy_joules\": 3.2403786860510526}}, \"1843200\": {\"active\": {\"elapsed_sec\": 20.915303274, \"elapsed_ns\": 20915303274, \"power_samples\": [590.975816726, 534.021828702, 528.669364074, 588.2697124889999, 549.5785964070001, 533.7784337459998, 577.03787569, 538.7391800299999, 549.7460613479998, 594.33118801, 541.2680781599997, 539.751084059, 601.5672803980001, 548.456300326, 546.31906329, 601.6844503100001, 543.5702708049998, 540.4190609230002, 599.1569366479998, 543.5702708049998, 540.6972893000002, 590.3368095839999, 539.5840898430001, 544.02227221, 601.6844503100001, 543.17927381, 533.6344432139997, 608.9191163489998, 539.5840898430001, 531.1060918429998, 588.6341720700002, 544.5811050300001, 545.871464715, 581.9765088899999, 556.7061364759998, 544.4693959000001, 602.6844720209997, 536.2142817999998, 534.7026416579997, 603.9228806429999, 566.6968368790001, 545.4796362900001, 568.7126225939999, 554.1253484780002, 550.7566622220002, 571.7747411360001, 545.81540709, 539.751084059, 571.6032909999999, 552.9998969679998, 545.5914640650001, 582.3801035399999, 575.3442137899999, 538.349847258, 546.4335721699999, 561.760103219, 549.1855194740001, 553.1721113689998, 572.9288731229999, 550.5317680380001, 559.2975430849999, 594.515760582, 540.5996727349998, 562.8943993749999, 596.2204760339998, 541.8892706699999, 548.9610269980001, 597.5716547689999, 530.9403450509999, 545.5870615399999, 586.3398680879998, 540.48831954, 537.0465810799999, 601.9801376529999, 531.898140822, 545.8667651200001, 601.274205014, 538.0165007100002, 550.8129579419999, 604.8629734020001, 546.5455185899998, 533.4128769179999], \"power_mean\": 559.5589877675, \"energy_millijoules\": 11703.345928849718, \"energy_joules\": 11.703345928849718, \"coremark_score\": 14354.753816, \"coremarks_per_mhz\": 7.787952374131945, \"ulpmark_cm_score\": 25.633694998323097}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [635.459375, 655.8472007360001, 658.9762944, 623.1662621639999, 688.891647388, 661.6153187919999, 622.897859268, 624.974570248, 656.6842584839999, 623.809328975, 636.2196875, 647.8985133339999, 629.2832410159999, 669.062955236, 691.9875957280001, 626.76832422, 658.491659946, 676.51059168, 620.6849541839999], \"power_mean\": 647.854191489421, \"energy_millijoules\": 3239.2709574471055, \"energy_joules\": 3.2392709574471055}}, \"1939200\": {\"active\": {\"elapsed_sec\": 19.865197649, \"elapsed_ns\": 19865197649, \"power_samples\": [651.5988009900002, 593.3405495170002, 592.1069004619999, 659.8751776240001, 610.4464389399998, 600.8052241580001, 638.4695857209999, 597.9280920239999, 595.9285877099999, 642.2687117889998, 595.6951970459997, 601.7452590259998, 644.6770467329998, 600.629318686, 607.8575707319999, 651.5988009900002, 636.3614610759998, 599.3957882760001, 616.2613922139999, 626.4896494290001, 598.103641256, 617.8650920939997, 631.6079387280001, 599.3957882760001, 624.098486139, 659.567848763, 599.454163458, 624.0386794439999, 657.2199687779998, 594.3991842840001, 601.217309763, 647.34910668, 610.0917757399998, 609.0373015589998, 654.569516774, 607.9754529029999, 608.0973220859996, 665.1201156759998, 597.9867086339998, 616.56718159, 661.170043462, 605.1552739609997, 605.4495373779998, 665.4908190199999, 600.5118475660001, 607.0365421499998, 658.330571729, 601.5694769469999, 607.0365421499998, 656.6061848159998, 608.9137701259999, 614.4431934899999, 654.3857693499999, 605.3318924969999, 611.4434328849998, 663.205779158, 602.4542293889999, 606.5651853119998, 658.0232250549998, 615.7862331819997, 608.854618046, 626.033677854, 609.0317709420001, 606.6829488379999, 641.9051379169998, 605.3318924969999, 610.03286764, 646.78481689, 644.8824020999998, 602.747899276, 654.937011622, 632.1797126199999, 605.2142476159997, 616.50773194, 637.353469597, 603.2753117820002, 611.5693366399996, 623.6641233829998], \"power_mean\": 621.5787264434742, \"energy_millijoules\": 12347.784255213317, \"energy_joules\": 12.347784255213316, \"coremark_score\": 15114.111542, \"coremarks_per_mhz\": 7.793993163160066, \"ulpmark_cm_score\": 24.295856956954687}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [629.1025233839999, 615.98346549, 677.463325272, 627.772377477, 636.486407235, 681.1508361570001, 635.03359375, 618.051704865, 689.867995644, 621.628078396, 619.173434412, 678.8008734360001, 621.717367908, 644.8924530749999, 681.31385355, 627.682196781, 641.5999262500001, 683.8272384950001, 622.927732878], \"power_mean\": 644.9723886555263, \"energy_millijoules\": 3224.8619432776313, \"energy_joules\": 3.2248619432776313}}, \"2169600\": {\"active\": {\"elapsed_sec\": 17.756401816, \"elapsed_ns\": 17756401816, \"power_samples\": [797.1627208759996, 796.1929697549999, 824.1318133099999, 799.2845057100001, 794.688179752, 857.6380757899999, 795.4503031460001, 816.819682588, 856.8340595550001, 800.1740664489998, 803.458101831, 850.6748381929999, 802.704754584, 807.3634141709999, 840.9630623179999, 796.3446723059999, 807.56908666, 866.1895704149999, 796.2763556159998, 802.9790465579999, 854.2301230199998, 792.5116051979999, 796.4126386539999, 858.13638859, 793.4021163749999, 792.6478813379999, 860.317339623, 796.2763556159998, 797.7803685439999, 856.123195485, 807.220770222, 794.695421613, 857.70936779, 802.430650191, 804.8276704139998, 853.875284515, 800.4470970339999, 796.2763556159998, 868.4356990169999, 797.2344111649998, 791.2808057579998, 844.7978041279998, 800.92627604, 796.0717558879996, 858.872791604, 796.0717558879996, 792.103825056, 864.5970361710001, 828.0394418779999, 805.646772093, 852.57360879, 814.6781013419998, 811.664843349, 826.06278748, 816.5212025999999, 800.241784826, 843.7775393519998, 802.0882836000001, 847.011070992, 835.293657468, 847.5765095549998, 801.8827932719998, 845.0089917969999, 844.7627440279998, 806.739511278, 802.0210401079999, 826.5066100559998, 795.1097181179998, 808.389138414, 826.5066100559998], \"power_mean\": 818.9530690083999, \"energy_millijoules\": 14541.659761759525, \"energy_joules\": 14.541659761759526, \"coremark_score\": 16909.982526, \"coremarks_per_mhz\": 7.794055367809735, \"ulpmark_cm_score\": 20.63038228888532}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [657.830454562, 661.1403574319999, 631.401487866, 628.6207128479999, 656.275820344, 617.844712191, 633.3076977590001, 653.8545521789999, 622.271739042, 649.577985413, 659.553055439, 621.598264261, 665.62758885, 684.8422240309999, 622.8681388560001, 655.659159692, 673.7067646700001, 637.32955242, 623.46453867], \"power_mean\": 645.0934108697369, \"energy_millijoules\": 3225.4670543486845, \"energy_joules\": 3.2254670543486847}}, \"2208000\": {\"active\": {\"elapsed_sec\": 17.470188796, \"elapsed_ns\": 17470188796, \"power_samples\": [792.857585208, 809.4830646589996, 864.9549139649998, 801.131236686, 805.4452118700001, 876.3987614339999, 819.2588102899999, 802.4316645239999, 861.0490037459999, 798.5331174779999, 847.5765095549998, 867.061719132, 805.646772093, 810.434518794, 874.3759449510001, 812.0786762609998, 818.236115255, 860.9775331259998, 804.3475953779998, 817.49002185, 878.138673978, 805.646772093, 808.3140406149998, 873.4332034699999, 816.0474381419997, 815.5632678299999, 863.2238996019998, 811.664843349, 807.9698358329997, 858.872791604, 806.5333078860001, 807.289269294, 855.1767141999999, 808.2451289799999, 806.739511278, 868.2920436869999, 829.9181899520001, 812.6880733279997, 860.692017162, 832.5227199190001, 809.131542976, 839.1327288939999, 828.5485555080002, 808.3053044479998, 843.9889111439998, 822.5332780749998, 805.3031614509998, 848.4956649839999, 855.7673981549999, 814.8720019259997, 811.733933604, 849.5420615269998, 810.2277804580001, 810.4395181799998, 842.1575048639997, 809.9523653460001, 827.8303868139999, 847.1523398429999, 806.6021600460001, 827.412276686, 867.7903550729998, 811.3891909469999, 809.81465779, 873.0015480459999, 808.8560122339998, 811.8030238590002, 863.9536644899999, 812.481333366, 806.877215598], \"power_mean\": 828.4324115186811, \"energy_millijoules\": 14472.870633956922, \"energy_joules\": 14.472870633956921, \"coremark_score\": 17188.037126, \"coremarks_per_mhz\": 7.784437104166666, \"ulpmark_cm_score\": 20.72843788820485}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [656.55865972, 690.218861211, 618.7881609520001, 625.598452437, 654.749569552, 638.7217033, 639.425331005, 648.4596191640001, 633.4560678559999, 625.7373940159999, 662.28489126, 638.6605661149999, 619.5884028620001, 675.9278064, 627.6219733710001, 629.5279656189999, 683.3690270200001, 622.5997359600001, 627.772377477], \"power_mean\": 643.1087665945789, \"energy_millijoules\": 3215.5438329728945, \"energy_joules\": 3.2155438329728945}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm7150/second/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 250 ms\nBaseline power usage: 618 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 768 1017 1248 1324 1497 1612 1708 1804\n\n 300:  1114     3.7 C/MHz     66 mW   17.8 J   16.8 I/mJ   269.4 s\n 576:  2139     3.7 C/MHz     82 mW   11.4 J   26.2 I/mJ   140.3 s\n 768:  2852     3.7 C/MHz     91 mW    9.6 J   31.2 I/mJ   105.2 s\n1017:  3779     3.7 C/MHz    106 mW    8.4 J   35.6 I/mJ    79.4 s\n1248:  4634     3.7 C/MHz    120 mW    7.8 J   38.7 I/mJ    64.7 s\n1324:  4919     3.7 C/MHz    125 mW    7.6 J   39.4 I/mJ    61.0 s\n1497:  5561     3.7 C/MHz    136 mW    7.4 J   40.8 I/mJ    54.0 s\n1612:  5988     3.7 C/MHz    143 mW    7.2 J   41.9 I/mJ    50.1 s\n1708:  6345     3.7 C/MHz    152 mW    7.2 J   41.8 I/mJ    47.3 s\n1804:  6702     3.7 C/MHz    168 mW    7.5 J   39.9 I/mJ    44.8 s\n\n\n===== CPU 6 =====\nFrequencies: 300 652 806 979 1094 1209 1324 1555 1708 1843 1939 2169 2208\n\n 300:  2338     7.8 C/MHz    112 mW   14.4 J   20.8 I/mJ   128.3 s\n 652:  5086     7.8 C/MHz    168 mW    9.9 J   30.3 I/mJ    59.0 s\n 806:  6285     7.8 C/MHz    191 mW    9.1 J   32.8 I/mJ    47.7 s\n 979:  7634     7.8 C/MHz    231 mW    9.1 J   33.0 I/mJ    39.3 s\n1094:  8530     7.8 C/MHz    263 mW    9.3 J   32.4 I/mJ    35.2 s\n1209:  9430     7.8 C/MHz    291 mW    9.3 J   32.4 I/mJ    31.8 s\n1324: 10326     7.8 C/MHz    328 mW    9.5 J   31.5 I/mJ    29.1 s\n1555: 12115     7.8 C/MHz    425 mW   10.5 J   28.5 I/mJ    24.8 s\n1708: 13324     7.8 C/MHz    489 mW   11.0 J   27.2 I/mJ    22.5 s\n1843: 14355     7.8 C/MHz    560 mW   11.7 J   25.6 I/mJ    20.9 s\n1939: 15114     7.8 C/MHz    622 mW   12.3 J   24.3 I/mJ    19.9 s\n2169: 16910     7.8 C/MHz    819 mW   14.5 J   20.6 I/mJ    17.8 s\n2208: 17188     7.8 C/MHz    828 mW   14.5 J   20.7 I/mJ    17.5 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm7150/second/uptime.txt",
    "content": " 11:24:05 up 28 min,  load average: 0.73, 0.80, 0.72\n"
  },
  {
    "path": "results/sm7150/second/versions.txt",
    "content": "Kernel: Linux version 4.14.230-perf-gf4d51ae67f2a-dirty (andrzej@andrzej-MS-7A32) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project d38205144febf4dc42c9270c6aa3d978f1ef65e1), LLD 12.0.0 (https://github.com/llvm/llvm-project d38205144febf4dc42c9270c6aa3d978f1ef65e1)) #5 SMP PREEMPT Mon Sep 13 14:08:13 CEST 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm7150/third/cmdline.txt",
    "content": "cgroup_disable=pressure ramoops_memreserve=4M rcupdate.rcu_expedited=1 rcu_nocbs=0-7 console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0x880000 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.usbcontroller=a600000.dwc3 androidboot.android_dt_dir=/non-existent androidboot.boot_devices=soc/1d84000.ufshc service_locator.enable=1 lpm_levels.sleep_disabled=1 loop.max_part=7 androidboot.super_partition=system buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=605d118e-3d23-fc84-e5ae-711fbf93c0fa androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.serialno=REDACTED androidboot.ramdump=disable androidboot.secureboot=1 androidboot.cpuid=REDACTED androidboot.hwversion=5.19.0 androidboot.hwc=GLOBAL androidboot.hwlevel=MP androidboot.baseband=msm msm_drm.dsi_display0=dsi_ss_fhd_ea_f10_cmd_display: want_initramfs rootwait ro init=/init androidboot.dtbo_idx=0 androidboot.dtb_idx=0 androidboot.dp=0x0\n"
  },
  {
    "path": "results/sm7150/third/cpufreq_stats/0/time_in_state",
    "content": "300000 96252\n576000 14847\n768000 11340\n1017600 8771\n1248000 7312\n1324800 6935\n1497600 6232\n1612800 5829\n1708800 5553\n1804800 5563\n"
  },
  {
    "path": "results/sm7150/third/cpufreq_stats/0/total_trans",
    "content": "13\n"
  },
  {
    "path": "results/sm7150/third/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    576000    768000   1017600   1248000   1324800   1497600   1612800   1708800   1804800 \n   300000:         0         1         0         0         0         0         0         0         0         1 \n   576000:         0         0         1         0         0         0         0         0         0         0 \n   768000:         0         0         0         1         0         0         0         0         0         0 \n  1017600:         0         0         0         0         1         0         0         0         0         0 \n  1248000:         0         0         0         0         0         1         0         0         0         0 \n  1324800:         0         0         0         0         0         0         1         0         0         0 \n  1497600:         0         0         0         0         0         0         0         1         0         1 \n  1612800:         0         0         0         0         0         0         0         0         1         0 \n  1708800:         0         0         0         0         0         0         0         0         0         1 \n  1804800:         2         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm7150/third/cpufreq_stats/6/time_in_state",
    "content": "300000 13700\n652800 6726\n806400 5616\n979200 4757\n1094400 4353\n1209600 4025\n1324800 3747\n1555200 3319\n1708800 3091\n1843200 2914\n1939200 2813\n2169600 2611\n2208000 110963\n"
  },
  {
    "path": "results/sm7150/third/cpufreq_stats/6/total_trans",
    "content": "15\n"
  },
  {
    "path": "results/sm7150/third/cpufreq_stats/6/trans_table",
    "content": "   From  :    To\n         :    300000    652800    806400    979200   1094400   1209600   1324800   1555200   1708800   1843200   1939200   2169600   2208000 \n   300000:         0         1         0         0         0         0         0         0         0         0         0         0         1 \n   652800:         0         0         1         0         0         0         0         0         0         0         0         0         0 \n   806400:         0         0         0         1         0         0         0         0         0         0         0         0         0 \n   979200:         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1094400:         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1209600:         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1324800:         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1555200:         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1708800:         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  1843200:         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  1939200:         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2169600:         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2208000:         2         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm7150/third/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 14 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nHardware\t: Qualcomm Technologies, Inc SDMMAGPIE\n"
  },
  {
    "path": "results/sm7150/third/device.txt",
    "content": "Model: DAVINCI;\nCompatible: qcom,sdmmagpie-qrd;qcom,sdmmagpie;qcom,qrd;\n"
  },
  {
    "path": "results/sm7150/third/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Linux version 4.14.314-perf-g01c713be9531-dirty (Orokin@shadowfax-B550M-AORUS-ELITE) (Proton clang version 13.0.0 (https://github.com/llvm/llvm-project b4fd512c36ca344a3ff69350219e8b0a67e9472a), LLD 13.0.0 (https://github.com/llvm/llvm-project b4fd512c36ca344a3ff69350219e8b0a67e9472a)) #2 SMP PREEMPT Tue Jun 20 19:07:25 +08 2023\n[    0.000000] Boot CPU: AArch64 Processor [51df805e]\n[    0.000000] random: crng init done\n[    0.000000] Machine: Qualcomm Technologies, Inc. SDMMAGPIE PM6150 DAVINCI\n[    0.000000] ramoops: msm_reserve_ramoops_memory addr=b0000000,size=400000\n[    0.000000] ramoops: msm_reserve_ramoops_memory record_size=0,ftrace_size=0\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff800000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe400000, size 12 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f5800000, size 140 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f4800000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f2800000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085700000, size 6 MiB\n[    0.000000] OF: reserved mem: initialized node hyp_region@85700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085d00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node xbl_dump_mem@85d00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085e00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node xbl_aop_mem@85e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085fff000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node sec_apps_region@85fff000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086000000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node smem@86000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086200000, size 73 MiB\n[    0.000000] OF: reserved mem: initialized node removed_region@86200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ab00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node camera_region@8ab00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b000000, size 132 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@8b000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093400000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region@93400000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093900000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_regions@93900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000095700000, size 38 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region@95700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097d00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_msa_region@97500000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097e80000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node npu_region@97680000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097f00000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ips_fw_region@97700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097f10000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_gsi_region@97710000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097f15000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@97715000, compatible id removed-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x000000009e400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@9e400000, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000009f800000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_sec_regions@0x9f800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000af000000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node ramdump_fb_region@af000000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 1466857\n[    0.000000]   DMA zone: 6744 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 431593 pages, LIFO batch:31\n[    0.000000]   Normal zone: 16176 pages used for memmap\n[    0.000000]   Normal zone: 1035264 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.1\n[    0.000000] percpu: Embedded 22 pages/cpu s49304 r8192 d32616 u90112\n[    0.000000] pcpu-alloc: s49304 r8192 d32616 u90112 alloc=22*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] CPU features: detected: Hardware dirty bit management\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1443937\n[    0.000000] Kernel command line: cgroup_disable=pressure ramoops_memreserve=4M rcupdate.rcu_expedited=1 rcu_nocbs=0-7 console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0x880000 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.usbcontroller=a600000.dwc3 androidboot.android_dt_dir=/non-existent androidboot.boot_devices=soc/1d84000.ufshc service_locator.enable=1 lpm_levels.sleep_disabled=1 loop.max_part=7 androidboot.super_partition=system buildvariant=userdebug rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=605d118e-3d23-fc84-e5ae-711fbf93c0fa androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.serialno=REDACTED androidboot.ramdump=disable androidboot.secureboot=1 androidboot.cpuid=REDACTED androidboot.hwversion=5.19.0 androidboot.hwc=GLOBAL androidboot.hwlevel=MP androidboot.baseband=msm msm_drm.dsi_display0=dsi_ss_fhd_ea_f10_cmd_display: skip_\n[    0.000000] cgroup: Disabling pressure control group feature\n[    0.000000] cgroup: Disabling pressure control group feature\n[    0.000000] parse_hwversion: socinfo: hwversion:5.19.0,strlen-is: 6\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 131072 bytes\n[    0.000000] log_buf_len: 1048576 bytes\n[    0.000000] early log buf free: 122964(93%)\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off\n[    0.000000] software IO TLB: mapped [mem 0xee800000-0xf2800000] (64MB)\n[    0.000000] Memory: 5380728K/5867428K available (22014K kernel code, 2852K rwdata, 12256K rodata, 6144K init, 8050K bss, 269612K reserved, 217088K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000017a60000\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000014] clocksource: Switched to clocksource arch_sys_counter\n[    0.002053] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.002066] pid_max: default: 32768 minimum: 301\n[    0.002170] Security Framework initialized\n[    0.002179] SELinux:  Initializing.\n[    0.002262] SELinux:  Starting in permissive mode\n[    0.002304] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.002318] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.014152] ASID allocator initialised with 65536 entries\n[    0.016227] Hierarchical SRCU implementation.\n[    0.020982] MSM Memory Dump base table set up\n[    0.020997] MSM Memory Dump apps data table set up\n[    0.023348] smp: Bringing up secondary CPUs ...\n[    0.032696] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000\n[    0.032739] CPU1: Booted secondary processor [51df805e]\n[    0.042134] GICv3: CPU2: found redistributor 200 region 0:0x0000000017aa0000\n[    0.042168] CPU2: Booted secondary processor [51df805e]\n[    0.051565] GICv3: CPU3: found redistributor 300 region 0:0x0000000017ac0000\n[    0.051597] CPU3: Booted secondary processor [51df805e]\n[    0.061106] GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000\n[    0.061137] CPU4: Booted secondary processor [51df805e]\n[    0.070668] GICv3: CPU5: found redistributor 500 region 0:0x0000000017b00000\n[    0.070697] CPU5: Booted secondary processor [51df805e]\n[    0.081038] CPU features: Unsupported CPU feature variation detected.\n[    0.081071] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000\n[    0.081125] CPU6: Booted secondary processor [51df804e]\n[    0.091313] GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000\n[    0.091367] CPU7: Booted secondary processor [51df804e]\n[    0.091563] smp: Brought up 1 node, 8 CPUs\n[    0.091568] SMP: Total of 8 processors activated.\n[    0.091571] CPU features: detected: GIC system register CPU interface\n[    0.091573] CPU features: detected: Privileged Access Never\n[    0.091575] CPU features: detected: User Access Override\n[    0.091577] CPU features: detected: 32-bit EL0 Support\n[    0.171275] CPU: All CPU(s) started at EL1\n[    0.171324] alternatives: patching kernel code\n[    0.172662] scm_enable_mem_protection: SCM call failed\n[    0.172734] CPU0: update max cpu_capacity 602\n[    0.223896] Registered cp15_barrier emulation handler\n[    0.223910] Registered setend emulation handler\n[    0.224041] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.224055] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.228037] ramoops: msm_register_ramoops_device\n[    0.228108] pinctrl core: initialized pinctrl subsystem\n[    0.228674] NET: Registered protocol family 16\n[    0.229605] schedtune: configured to support 8 boost groups\n[    0.285167] console [pstore-1] enabled\n[    0.285230] pstore: Registered ramoops as persistent store backend\n[    0.285234] ramoops: attached 0x400000@0xb0000000, ecc: 0/0\n[    0.286691] cpuidle: using governor qcom\n[    0.286773] NET: Registered protocol family 42\n[    0.290382] vdso32: 2 pages (1 code @ 0000000035408a25, 1 data @ 000000000d26df78)\n[    0.290390] vdso: 2 pages (1 code @ 00000000246ef897, 1 data @ 000000000d26df78)\n[    0.290394] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.291169] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.293965] exit: IPA_USB init success!\n[    0.295723] sps:sps is ready.\n[    0.297251] msm_watchdog 17c10000.qcom,wdt: wdog absent resource not present\n[    0.298105] msm_watchdog 17c10000.qcom,wdt: MSM Watchdog Initialized\n[    0.302446] platform soc:qcom,smem: assigned reserved memory node smem@86000000\n[    0.302748] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.307026] platform 86d00000.qseecom: assigned reserved memory node qseecom_region@9e400000\n[    0.307480] platform 62400000.qcom,lpass: assigned reserved memory node pil_adsp_region@95700000\n[    0.308038] platform 8300000.qcom,turing: assigned reserved memory node cdsp_regions@93900000\n[    0.308158] platform 4080000.qcom,mss: assigned reserved memory node modem_region@8b000000\n[    0.308231] platform aae0000.qcom,venus: assigned reserved memory node pil_video_region@93400000\n[    0.308301] platform 9800000.qcom,npu: assigned reserved memory node npu_region@97680000\n[    0.310873] platform soc:qcom,ipa_fws: assigned reserved memory node ips_fw_region@97700000\n[    0.319927] sdmmagpie-pinctrl 3400000.pinctrl: invalid resource\n[    0.320130] spmi spmi-0: PMIC arbiter version v5 (0x50000000)\n[    0.324510] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.328713] rpmh_regulator_probe: smpf1: could not find RPMh address for resource\n[    0.328832] rpmh_regulator_probe: smpf2: could not find RPMh address for resource\n[    0.333148] pm6150_l17: supplied by pm6150_l11\n[    0.337468] rpmh_regulator_probe: ldof1: could not find RPMh address for resource\n[    0.337584] rpmh_regulator_probe: ldof2: could not find RPMh address for resource\n[    0.337698] rpmh_regulator_probe: ldof4: could not find RPMh address for resource\n[    0.337814] rpmh_regulator_probe: ldof5: could not find RPMh address for resource\n[    0.337929] rpmh_regulator_probe: ldof6: could not find RPMh address for resource\n[    0.338039] rpmh_regulator_probe: ldof7: could not find RPMh address for resource\n[    0.342838] OF: amba_device_add() failed (-16) for /soc/cti@6867000\n[    0.364576] gpu_cx_gdsc: supplied by pm6150l_s2_level\n[    0.365685] clk: clk_osm_read_lut: index=0 freq=300000000 virtual_corner=0 open_loop_voltage=568\n[    0.365690] clk: clk_osm_read_lut: index=1 freq=556800000 virtual_corner=1 open_loop_voltage=568\n[    0.365695] clk: clk_osm_read_lut: index=2 freq=652800000 virtual_corner=2 open_loop_voltage=588\n[    0.365699] clk: clk_osm_read_lut: index=3 freq=768000000 virtual_corner=3 open_loop_voltage=620\n[    0.365704] clk: clk_osm_read_lut: index=4 freq=844800000 virtual_corner=4 open_loop_voltage=632\n[    0.365708] clk: clk_osm_read_lut: index=5 freq=940800000 virtual_corner=5 open_loop_voltage=660\n[    0.365712] clk: clk_osm_read_lut: index=6 freq=1132800000 virtual_corner=6 open_loop_voltage=692\n[    0.365716] clk: clk_osm_read_lut: index=7 freq=1190400000 virtual_corner=7 open_loop_voltage=704\n[    0.365720] clk: clk_osm_read_lut: index=8 freq=1305600000 virtual_corner=8 open_loop_voltage=732\n[    0.365724] clk: clk_osm_read_lut: index=9 freq=1382400000 virtual_corner=9 open_loop_voltage=752\n[    0.365729] clk: clk_osm_read_lut: index=10 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365733] clk: clk_osm_read_lut: index=11 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365737] clk: clk_osm_read_lut: index=12 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365741] clk: clk_osm_read_lut: index=13 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365745] clk: clk_osm_read_lut: index=14 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365750] clk: clk_osm_read_lut: index=15 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365754] clk: clk_osm_read_lut: index=16 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365758] clk: clk_osm_read_lut: index=17 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365762] clk: clk_osm_read_lut: index=18 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365766] clk: clk_osm_read_lut: index=19 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365770] clk: clk_osm_read_lut: index=20 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365775] clk: clk_osm_read_lut: index=21 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365779] clk: clk_osm_read_lut: index=22 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365783] clk: clk_osm_read_lut: index=23 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365788] clk: clk_osm_read_lut: index=24 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365792] clk: clk_osm_read_lut: index=25 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365796] clk: clk_osm_read_lut: index=26 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365800] clk: clk_osm_read_lut: index=27 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365804] clk: clk_osm_read_lut: index=28 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365809] clk: clk_osm_read_lut: index=29 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365813] clk: clk_osm_read_lut: index=30 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365817] clk: clk_osm_read_lut: index=31 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365821] clk: clk_osm_read_lut: index=32 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365825] clk: clk_osm_read_lut: index=33 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365829] clk: clk_osm_read_lut: index=34 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365833] clk: clk_osm_read_lut: index=35 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365838] clk: clk_osm_read_lut: index=36 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365842] clk: clk_osm_read_lut: index=37 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365846] clk: clk_osm_read_lut: index=38 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365850] clk: clk_osm_read_lut: index=39 freq=1459200000 virtual_corner=10 open_loop_voltage=772\n[    0.365855] clk: clk_osm_read_lut: index=0 freq=300000000 virtual_corner=0 open_loop_voltage=572\n[    0.365859] clk: clk_osm_read_lut: index=1 freq=576000000 virtual_corner=1 open_loop_voltage=572\n[    0.365863] clk: clk_osm_read_lut: index=2 freq=768000000 virtual_corner=2 open_loop_voltage=572\n[    0.365868] clk: clk_osm_read_lut: index=3 freq=1017600000 virtual_corner=3 open_loop_voltage=632\n[    0.365872] clk: clk_osm_read_lut: index=4 freq=1248000000 virtual_corner=4 open_loop_voltage=676\n[    0.365876] clk: clk_osm_read_lut: index=5 freq=1324800000 virtual_corner=5 open_loop_voltage=696\n[    0.365880] clk: clk_osm_read_lut: index=6 freq=1497600000 virtual_corner=6 open_loop_voltage=740\n[    0.365884] clk: clk_osm_read_lut: index=7 freq=1612800000 virtual_corner=7 open_loop_voltage=768\n[    0.365888] clk: clk_osm_read_lut: index=8 freq=1708800000 virtual_corner=8 open_loop_voltage=796\n[    0.365892] clk: clk_osm_read_lut: index=9 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365897] clk: clk_osm_read_lut: index=10 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365901] clk: clk_osm_read_lut: index=11 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365906] clk: clk_osm_read_lut: index=12 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365910] clk: clk_osm_read_lut: index=13 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365915] clk: clk_osm_read_lut: index=14 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365919] clk: clk_osm_read_lut: index=15 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365923] clk: clk_osm_read_lut: index=16 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365928] clk: clk_osm_read_lut: index=17 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365932] clk: clk_osm_read_lut: index=18 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365937] clk: clk_osm_read_lut: index=19 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365941] clk: clk_osm_read_lut: index=20 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365945] clk: clk_osm_read_lut: index=21 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365950] clk: clk_osm_read_lut: index=22 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365955] clk: clk_osm_read_lut: index=23 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365959] clk: clk_osm_read_lut: index=24 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365964] clk: clk_osm_read_lut: index=25 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365968] clk: clk_osm_read_lut: index=26 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365972] clk: clk_osm_read_lut: index=27 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365976] clk: clk_osm_read_lut: index=28 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365980] clk: clk_osm_read_lut: index=29 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365984] clk: clk_osm_read_lut: index=30 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365988] clk: clk_osm_read_lut: index=31 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365992] clk: clk_osm_read_lut: index=32 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.365997] clk: clk_osm_read_lut: index=33 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.366001] clk: clk_osm_read_lut: index=34 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.366005] clk: clk_osm_read_lut: index=35 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.366009] clk: clk_osm_read_lut: index=36 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.366013] clk: clk_osm_read_lut: index=37 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.366017] clk: clk_osm_read_lut: index=38 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.366021] clk: clk_osm_read_lut: index=39 freq=1804800000 virtual_corner=9 open_loop_voltage=828\n[    0.366026] clk: clk_osm_read_lut: index=0 freq=300000000 virtual_corner=0 open_loop_voltage=580\n[    0.366030] clk: clk_osm_read_lut: index=1 freq=652800000 virtual_corner=1 open_loop_voltage=580\n[    0.366035] clk: clk_osm_read_lut: index=2 freq=806400000 virtual_corner=2 open_loop_voltage=580\n[    0.366039] clk: clk_osm_read_lut: index=3 freq=979200000 virtual_corner=3 open_loop_voltage=616\n[    0.366043] clk: clk_osm_read_lut: index=4 freq=1094400000 virtual_corner=4 open_loop_voltage=640\n[    0.366047] clk: clk_osm_read_lut: index=5 freq=1209600000 virtual_corner=5 open_loop_voltage=652\n[    0.366051] clk: clk_osm_read_lut: index=6 freq=1324800000 virtual_corner=6 open_loop_voltage=676\n[    0.366055] clk: clk_osm_read_lut: index=7 freq=1555200000 virtual_corner=7 open_loop_voltage=728\n[    0.366059] clk: clk_osm_read_lut: index=8 freq=1708800000 virtual_corner=8 open_loop_voltage=760\n[    0.366063] clk: clk_osm_read_lut: index=9 freq=1843200000 virtual_corner=9 open_loop_voltage=788\n[    0.366068] clk: clk_osm_read_lut: index=10 freq=1939200000 virtual_corner=10 open_loop_voltage=812\n[    0.366072] clk: clk_osm_read_lut: index=11 freq=2169600000 virtual_corner=11 open_loop_voltage=872\n[    0.366076] clk: clk_osm_read_lut: index=12 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366080] clk: clk_osm_read_lut: index=13 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366085] clk: clk_osm_read_lut: index=14 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366089] clk: clk_osm_read_lut: index=15 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366093] clk: clk_osm_read_lut: index=16 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366097] clk: clk_osm_read_lut: index=17 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366101] clk: clk_osm_read_lut: index=18 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366105] clk: clk_osm_read_lut: index=19 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366110] clk: clk_osm_read_lut: index=20 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366114] clk: clk_osm_read_lut: index=21 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366118] clk: clk_osm_read_lut: index=22 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366123] clk: clk_osm_read_lut: index=23 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366127] clk: clk_osm_read_lut: index=24 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366131] clk: clk_osm_read_lut: index=25 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366135] clk: clk_osm_read_lut: index=26 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366140] clk: clk_osm_read_lut: index=27 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366144] clk: clk_osm_read_lut: index=28 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366149] clk: clk_osm_read_lut: index=29 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366154] clk: clk_osm_read_lut: index=30 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366158] clk: clk_osm_read_lut: index=31 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366163] clk: clk_osm_read_lut: index=32 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366167] clk: clk_osm_read_lut: index=33 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366172] clk: clk_osm_read_lut: index=34 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366176] clk: clk_osm_read_lut: index=35 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366181] clk: clk_osm_read_lut: index=36 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366186] clk: clk_osm_read_lut: index=37 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366190] clk: clk_osm_read_lut: index=38 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366195] clk: clk_osm_read_lut: index=39 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.366318] clk: add_opp: Set OPP pair (300000000 Hz, 572000 uv) on cpu0\n[    0.366512] clk: add_opp: Set OPP pair (1804800000 Hz, 828000 uv) on cpu0\n[    0.366553] clk: add_opp: Set OPP pair (300000000 Hz, 572000 uv) on cpu1\n[    0.366739] clk: add_opp: Set OPP pair (1804800000 Hz, 828000 uv) on cpu1\n[    0.366779] clk: add_opp: Set OPP pair (300000000 Hz, 572000 uv) on cpu2\n[    0.366966] clk: add_opp: Set OPP pair (1804800000 Hz, 828000 uv) on cpu2\n[    0.367002] clk: add_opp: Set OPP pair (300000000 Hz, 572000 uv) on cpu3\n[    0.367195] clk: add_opp: Set OPP pair (1804800000 Hz, 828000 uv) on cpu3\n[    0.367226] clk: add_opp: Set OPP pair (300000000 Hz, 572000 uv) on cpu4\n[    0.367419] clk: add_opp: Set OPP pair (1804800000 Hz, 828000 uv) on cpu4\n[    0.367454] clk: add_opp: Set OPP pair (300000000 Hz, 572000 uv) on cpu5\n[    0.367647] clk: add_opp: Set OPP pair (1804800000 Hz, 828000 uv) on cpu5\n[    0.367684] clk: add_opp: Set OPP pair (300000000 Hz, 580000 uv) on cpu6\n[    0.367933] clk: add_opp: Set OPP pair (2208000000 Hz, 884000 uv) on cpu6\n[    0.367983] clk: add_opp: Set OPP pair (300000000 Hz, 580000 uv) on cpu7\n[    0.368227] clk: add_opp: Set OPP pair (2208000000 Hz, 884000 uv) on cpu7\n[    0.368412] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.368415] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on soc:qcom,cpu6-cpu-l3-lat\n[    0.368417] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.369043] clk: add_opp: Set OPP pair (1459200000 Hz, 772000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.369046] clk: add_opp: Set OPP pair (1459200000 Hz, 772000 uv) on soc:qcom,cpu6-cpu-l3-lat\n[    0.369048] clk: add_opp: Set OPP pair (1459200000 Hz, 772000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.369531] sched-energy: Sched-energy-costs installed from DT\n[    0.369628] CPU0: update max cpu_capacity 492\n[    0.369745] cpufreq: driver osm-cpufreq up and running\n[    0.369748] clk: clk_cpu_osm_driver_probe: OSM CPUFreq driver inited\n[    0.378316] cam_cc-sdmmagpie ad00000.qcom,camcc: Registered Camera CC clocks\n[    0.378847] CPU0: update max cpu_capacity 492\n[    0.379240] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.380813] clk-rpmh soc:qcom,rpmh: Registered RPMh clocks\n[    0.382645] disp_cc-sdmmagpie af00000.qcom,dispcc: Registered Display CC clocks\n[    0.397616] gcc-sdmmagpie 100000.qcom,gcc: Registered GCC clocks\n[    0.399698] gpu_cc_gmu_clk_src: set OPP pair(19200000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.399720] gpu_cc_gmu_clk_src: set OPP pair(200000000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.400152] gpu_cc_gx_gfx3d_clk_src: set OPP pair(180000000 Hz: 49 uV) on 5000000.qcom,kgsl-3d0\n[    0.400316] gpu_cc_gx_gfx3d_clk_src: set OPP pair(700000000 Hz: 385 uV) on 5000000.qcom,kgsl-3d0\n[    0.400369] gpu_cc_gx_gfx3d_clk_src: set OPP pair(825000000 Hz: 417 uV) on 5000000.qcom,kgsl-3d0\n[    0.400525] gpu_cc-sdmmagpie 5090000.qcom,gpucc: Registered GPU CC clocks\n[    0.402344] video_cc-sdmmagpie ab00000.qcom,videocc: Registered Video CC clocks\n[    0.406225] KPI: Bootloader start count = 67380\n[    0.406227] KPI: Bootloader end count = 108221\n[    0.406229] KPI: Bootloader load kernel count = 1297905571\n[    0.406233] KPI: Kernel MPM timestamp = 129052\n[    0.406234] KPI: Kernel MPM Clock frequency = 32768\n[    0.406249] socinfo_print: v0.15, id=365, ver=1.0, raw_id=230, raw_ver=0, hw_plat=39, hw_plat_ver=1638400\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65576, pmic_die_revision=131072 foundry_id=3 serial_number=3839921280 num_pmics=2 chip_family=0x60 raw_device_family=0x6 raw_device_number=0xc nproduct_id=0x40f num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xc ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.406308] msm_bus_fabric_rpmh_init_driver\n[    0.406426] msm_bus: Probe started\n[    0.406872] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.406936] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.406949] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.406997] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.408975] msm_bus: DT Parsing complete\n[    0.411764] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.411922] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.411954] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.412071] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.423686] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_actuator_tele_en, deferring probe\n[    0.424467] arm-smmu 5040000.arm,smmu-kgsl: \tnon-coherent table walk\n[    0.424470] arm-smmu 5040000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by FW configuration)\n[    0.424474] arm-smmu 5040000.arm,smmu-kgsl: \tstream matching with 5 register groups\n[    0.426199] register_client_adhoc:find path.src 161 dest 627\n[    0.426370] register_client_adhoc:Client handle 1 apps_smmu\n[    0.426485] arm-smmu 15000000.apps-smmu: \tnon-coherent table walk\n[    0.426488] arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.426491] arm-smmu 15000000.apps-smmu: \tstream matching with 79 register groups\n[    0.427222] register_client_adhoc:find path.src 161 dest 627\n[    0.427352] register_client_adhoc:Client handle 2 apps_smmu\n[    0.427563] register_client_adhoc:find path.src 161 dest 627\n[    0.427691] register_client_adhoc:Client handle 3 apps_smmu\n[    0.427869] register_client_adhoc:find path.src 22 dest 773\n[    0.427935] register_client_adhoc:Client handle 4 mnoc_hf_0_tbu\n[    0.428118] register_client_adhoc:find path.src 22 dest 773\n[    0.428178] register_client_adhoc:Client handle 5 mnoc_hf_1_tbu\n[    0.428366] register_client_adhoc:find path.src 137 dest 772\n[    0.428431] register_client_adhoc:Client handle 6 mnoc_sf_0_tbu\n[    0.428578] register_client_adhoc:find path.src 154 dest 10076\n[    0.428627] register_client_adhoc:Client handle 7 apps_smmu\n[    0.428814] register_client_adhoc:find path.src 161 dest 627\n[    0.428944] register_client_adhoc:Client handle 8 apps_smmu\n[    0.429142] register_client_adhoc:find path.src 161 dest 627\n[    0.429264] register_client_adhoc:Client handle 9 apps_smmu\n[    0.430083] SCSI subsystem initialized\n[    0.430182] usbcore: registered new interface driver usbfs\n[    0.430202] usbcore: registered new interface driver hub\n[    0.430222] usbcore: registered new device driver usb\n[    0.430680] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.431153] [mi-touch] xiaomi_touch_probe: enter\n[    0.431222] [mi-touch] xiaomi_touch_probe: over\n[    0.431450] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.431476] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.431633] input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800/input/input0\n[    0.432576] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150l@4:qcom,power-on@800: PMIC@SID4 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'cold' boot\n[    0.432600] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150l@4:qcom,power-on@800: PMIC@SID4: Power-off reason: Triggered from SOFT (Software)\n[    0.432788] media: Linux media interface: v0.10\n[    0.432801] Linux video capture interface: v2.00\n[    0.432832] pps_core: LinuxPPS API ver. 1 registered\n[    0.432834] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>\n[    0.432845] PTP clock support registered\n[    0.437447] thermal_sys: Thermal: Can not parse thermal message node, return -22\n[    0.442368] EDAC MC: Ver: 3.0.0\n[    0.446094] iommu: Adding device 8c0000.qcom,qupv3_0_geni_se:qcom,iommu_qupv3_0_geni_se_cb to group 0\n[    0.446375] iommu: Adding device ac0000.qcom,qupv3_1_geni_se:qcom,iommu_qupv3_1_geni_se_cb to group 1\n[    0.446948] PMIC@SID0: PM6150 v2.0 options: 0, 0, 0, 0\n[    0.447060] PMIC@SID4: PM8150A v2.0 options: 0, 0, 0, 0\n[    0.447110] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.447113] read failed rc=-5\n[    0.447114] Invalid REVID peripheral type: 00\n[    0.447124] qcom,qpnp-revid: probe of c440000.qcom,spmi:qcom,pm8009@a:qcom,revid@100 failed with error -22\n[    0.447482] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@9e400000\n[    0.447565] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.447637] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.447704] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.447937] ION heap system created\n[    0.448023] ION heap qsecom created at 0x000000009e400000 with size 1400000\n[    0.448026] ION heap qsecom_ta created at 0x00000000f4800000 with size 1000000\n[    0.448029] ION heap spss created at 0x00000000ff000000 with size 800000\n[    0.448031] ION heap secure_display created at 0x00000000f5800000 with size 8c00000\n[    0.466961] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x9f800000, size 0x1e00000\n[    0.466964] ION heap secure_carveout created\n[    0.466967] ION heap secure_heap created\n[    0.467453] register_client_adhoc:find path.src 90 dest 512\n[    0.467816] register_client_adhoc:find path.src 90 dest 585\n[    0.467935] register_client_adhoc:find path.src 1 dest 676\n[    0.468139] register_client_adhoc:find path.src 143 dest 777\n[    0.468202] register_client_adhoc:Client handle 10 ipa\n[    0.474235] ipa ipa3_smp2p_probe:8679 fail to get smp2p clk resp bit -517\n[    0.474903] iommu: Adding device soc:ipa_smmu_ap to group 2\n[    0.475096] iommu: Adding device soc:ipa_smmu_wlan to group 3\n[    0.475275] iommu: Adding device soc:ipa_smmu_uc to group 4\n[    0.476709] ipa ipa3_smp2p_probe:8679 fail to get smp2p clk resp bit -517\n[    0.479749] Advanced Linux Sound Architecture Driver Initialized.\n[    0.480401] Bluetooth: Core ver 2.22\n[    0.480435] NET: Registered protocol family 31\n[    0.480438] Bluetooth: HCI device and connection manager initialized\n[    0.480452] Bluetooth: HCI socket layer initialized\n[    0.480461] Bluetooth: L2CAP socket layer initialized\n[    0.480500] Bluetooth: SCO socket layer initialized\n[    0.481974] NetLabel: Initializing\n[    0.481977] NetLabel:  domain hash size = 128\n[    0.481980] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\n[    0.482041] NetLabel:  unlabeled traffic allowed by default\n[    0.482130] pcie:pcie_init.\n[    0.490194] register_client_adhoc:find path.src 22 dest 512\n[    0.490736] register_client_adhoc:Client handle 11 bus-proxy-client\n[    0.491827] sched-energy energy-costs: cpu=0 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.491834] sched-energy energy-costs: cpu=1 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.491840] sched-energy energy-costs: cpu=2 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.491847] sched-energy energy-costs: cpu=3 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.491854] sched-energy energy-costs: cpu=4 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.491860] sched-energy energy-costs: cpu=5 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.491867] sched-energy energy-costs: cpu=6 eff=1740 [freq=300000 cap=140 power_d0=166] -> [freq=2400000 cap=1024 power_d0=2568]\n[    0.491874] sched-energy energy-costs: cpu=7 eff=1740 [freq=300000 cap=140 power_d0=166] -> [freq=2400000 cap=1024 power_d0=2568]\n[    0.491877] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.493822] gpu_gx_gdsc: supplied by pm6150_s2_level\n[    0.497467] npu_cc-sdmmagpie 9910000.qcom,npucc: Registered NPU CC clocks\n[    0.497534] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_actuator_tele_en, deferring probe\n[    0.497651] ipa ipa3_smp2p_probe:8679 fail to get smp2p clk resp bit -517\n[    0.498076] clocksource: Switched to clocksource arch_sys_counter\n[    0.540409] VFS: Disk quotas dquot_6.6.0\n[    0.540450] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.541321] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.541459] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.541464] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.541471] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.541476] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.541481] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.541487] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.543266] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=0, clocks successfully\n[    0.543565] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.543628] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.543634] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.543640] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.543645] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.543651] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.543657] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.548800] dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.554588] dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.555174] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=1, clocks successfully\n[    0.555209] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.557408] NET: Registered protocol family 2\n[    0.557594] IP idents hash table entries: 131072 (order: 8, 1048576 bytes)\n[    0.559227] TCP established hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.559459] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)\n[    0.560288] TCP: Hash tables configured (established 65536 bind 65536)\n[    0.560388] UDP hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.560459] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.560623] NET: Registered protocol family 1\n[    0.560646] PCI: CLS 0 bytes, default 128\n[    0.560833] reg-fixed-voltage 1.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/cam_actuator_tele_en, deferring probe\n[    0.560994] ipa ipa3_smp2p_probe:8679 fail to get smp2p clk resp bit -517\n[    0.561288] Trying to unpack rootfs image as initramfs...\n[    0.749936] Freeing initrd memory: 7480K\n[    0.751614] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.755900] audit: initializing netlink subsys (disabled)\n[    0.756205] Initialise system trusted keyrings\n[    0.756250] audit: type=2000 audit(0.749:1): state=initialized audit_enabled=0 res=1\n[    0.756303] workingset: timestamp_bits=45 max_order=21 bucket_order=0\n[    0.759307] Registering sdcardfs 0.1\n[    0.759448] fuse init (API version 7.26)\n[    0.759871] SELinux:  Registering netfilter hooks\n[    0.763157] Key type asymmetric registered\n[    0.763161] Asymmetric key parser 'x509' registered\n[    0.763197] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 240)\n[    0.763202] io scheduler noop registered\n[    0.763204] io scheduler deadline registered\n[    0.763233] io scheduler cfq registered (default)\n[    0.763235] io scheduler mq-deadline registered\n[    0.763237] io scheduler kyber registered\n[    0.768755] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.768759] qcom-spmi-gpio c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000: read 0x4 failed\n[    0.768763] qcom-spmi-gpio c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000: failed to populate gpio 0, ret=-5\n[    0.768774] qcom-spmi-gpio: probe of c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000 failed with error -5\n[    0.769846] qpnp_lpg_parse_dt: lut pattern switch enable\n[    0.772747] iommu: Adding device 800000.qcom,gpi-dma to group 5\n[    0.773842] iommu: Adding device a00000.qcom,gpi-dma to group 6\n[    0.778352] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.778416] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.778465] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.778754] register_client_adhoc:find path.src 125 dest 512\n[    0.779158] register_client_adhoc:Client handle 12 scm_pas\n[    0.780099] register_client_adhoc:find path.src 129 dest 512\n[    0.780177] register_client_adhoc:Client handle 13 pil-modem\n[    0.780614] register_client_adhoc:find path.src 63 dest 512\n[    0.780814] register_client_adhoc:Client handle 14 pil-venus\n[    0.780826] subsys-pil-tz aae0000.qcom,venus: for venus segments only will be dumped.\n[    0.780963] subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    0.781112] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    0.781449] subsys-pil-tz soc:qcom,kgsl-hyp: for a615_zap segments only will be dumped.\n[    0.784578] smp2p_sleepstate soc:qcom,smp2p_sleepstate: got smp2p-sleepstate-in irq 399\n[    0.785464] iommu: Adding device 18800000.qcom,icnss to group 7\n[    0.785507] icnss: Recursive recovery allowed for WLAN\n[    0.786322] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.786440] icnss: Platform driver probed successfully\n[    0.789001] msm_geni_serial 88c000.qcom,qup_uart: Wakeup byte 0xfd\n[    0.789100] msm_geni_serial 88c000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    0.789556] 88c000.qcom,qup_uart: ttyHS0 at MMIO 0x88c000 (irq = 72, base_baud = 0) is a MSM\n[    0.789920] msm_geni_serial_init: Driver initialized\n[    0.790174] register_client_adhoc:find path.src 1 dest 618\n[    0.790414] register_client_adhoc:Client handle 15 msm-rng-noc\n[    0.793964] diag: Pcie registration initiated for id: 0\n[    0.795093] diag: diag_pcie_register: failed registering pcie channels\n[    0.795096] diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    0.795098] diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    0.847614] register_client_adhoc:find path.src 20003 dest 20515\n[    0.847776] register_client_adhoc:find path.src 20004 dest 20515\n[    0.847848] register_client_adhoc:Client handle 16 disp_rsc_mnoc\n[    0.847873] register_client_adhoc:find path.src 20001 dest 20513\n[    0.847940] register_client_adhoc:Client handle 17 disp_rsc_llcc\n[    0.847962] register_client_adhoc:find path.src 20000 dest 20512\n[    0.848029] register_client_adhoc:Client handle 18 disp_rsc_ebi\n[    0.848289] [sde_rsc_hw:rsc_hw_init:714]: sde rsc init successfully done\n[    0.848325] [sde_rsc:sde_rsc_probe:1911]: sde rsc index:0 probed successfully\n[    0.848966] dsi_phy ae94400.qcom,mdss_dsi_phy0: ae94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    0.849033] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-0\n[    0.849089] dsi_phy ae96400.qcom,mdss_dsi_phy1: ae96400.qcom,mdss_dsi_phy1 supply gdsc not found, using dummy regulator\n[    0.849132] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-1\n[    0.849832] AXI: get_pdata(): Error: Client name not found\n[    0.849835] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.849837] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-0\n[    0.849962] AXI: get_pdata(): Error: Client name not found\n[    0.849964] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.849966] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-1\n[    0.850841] OF: graph: no port node found in /soc/qcom,dsi-display\n[    0.850903] msm-dsi-panel:[dsi_panel_parse_panel_mode:1808] dsi_panel_parse_panel_mode: panel operating mode switch feature disabled\n[    0.850917] msm-dsi-panel:[dsi_panel_parse_qsync_caps:1491] [ss ea fhd cmd dsi panel] qsync min fps not defined rc:-22\n[    0.850951] msm-dsi-panel:[dsi_panel_parse_reset_sequence:2184] RESET SEQ LENGTH = 16\n[    0.851011] msm-dsi-panel:[dsi_panel_parse_misc_features:2234] dsi_panel_parse_misc_features: ulps feature enabled\n[    0.851016] msm-dsi-panel:[dsi_panel_parse_misc_features:2240] dsi_panel_parse_misc_features: ulps during suspend feature disabled\n[    0.858261] brd: module loaded\n[    0.864952] loop: module loaded\n[    0.865139] zram: Added device: zram0\n[    0.866745] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1400000\n[    0.866758] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.866763] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    0.866767] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    0.866774] AXI: get_pdata(): Error: Client name not found\n[    0.866777] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.866829] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    0.867314] QSEECOM: qseecom_probe: Unable to register bus client\n[    0.868301] drv8846: drv8846_probe: 559 Enter\n[    0.868319] drv8846: drv8846_probe: 569 mctrl: 000000003f18c6c4\n[    0.868433] drv8846: drv8846_probe: 613 successfully probed.\n[    0.868806] iommu: Adding device 1de0000.qcedev to group 8\n[    0.868952] register_client_adhoc:find path.src 125 dest 512\n[    0.869374] register_client_adhoc:Client handle 19 qcedev-noc\n[    0.869544] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    0.870383] qce 1de0000.qcedev: QTI Crypto 5.4.1 device found @0x1de0000\n[    0.870552] sps:BAM 0x0000000001dc4000 is registered.\n[    0.870694] sps:BAM 0x0000000001dc4000 (va:0x0000000025400b69) enabled: ver:0x27, number of pipes:16\n[    0.870841] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 49\n[    0.873215] iommu: Adding device 1de0000.qcrypto to group 9\n[    0.873299] register_client_adhoc:find path.src 125 dest 512\n[    0.873680] register_client_adhoc:Client handle 20 qcrypto-noc\n[    0.873829] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    0.874369] qcrypto 1de0000.qcrypto: QTI Crypto 5.4.1 device found @0x1de0000\n[    0.874616] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 49\n[    0.874923] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    0.875109] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    0.875175] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    0.875244] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    0.875302] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    0.875361] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    0.875422] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    0.875481] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    0.875542] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    0.875600] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    0.875667] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    0.875730] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    0.875788] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    0.875850] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    0.875914] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    0.875972] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    0.876032] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    0.876602] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    0.876677] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    0.876751] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    0.877590] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    0.878664] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    0.878790] iommu: Adding device ae00000.qcom,mdss_mdp to group 10\n[    0.880499] iommu: Adding device 506a000.qcom,gmu:gmu_user to group 11\n[    0.881262] iommu: Adding device 506a000.qcom,gmu:gmu_kernel to group 12\n[    0.883150] register_client_adhoc:find path.src 26 dest 512\n[    0.883376] register_client_adhoc:Client handle 21 grp3d\n[    0.883394] register_client_adhoc:find path.src 26 dest 10036\n[    0.883529] register_client_adhoc:Client handle 22 cnoc\n[    0.883533] query_client_usecase_all: query_start\n[    0.883586] query_client_usecase_all: query_start\n[    0.884981] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 13\n[    0.885212] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 14\n[    0.886585] wireguard: WireGuard 1.0.20220627 loaded. See www.wireguard.com for information.\n[    0.886587] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    0.886865] tun: Universal TUN/TAP device driver, 1.6\n[    0.886918] sky2: driver version 1.30\n[    0.887770] PPP generic driver version 2.4.2\n[    0.887820] PPP BSD Compression module registered\n[    0.887823] PPP Deflate Compression module registered\n[    0.887863] PPP MPPE Compression module registered\n[    0.887866] NET: Registered protocol family 24\n[    0.887882] PPTP driver version 0.8.5\n[    0.888180] CLD80211: Initializing\n[    0.888254] usbcore: registered new interface driver r8152\n[    0.888275] usbcore: registered new interface driver asix\n[    0.888356] usbcore: registered new interface driver ax88179_178a\n[    0.888372] usbcore: registered new interface driver cdc_ether\n[    0.888387] usbcore: registered new interface driver net1080\n[    0.888402] usbcore: registered new interface driver cdc_subset\n[    0.888418] usbcore: registered new interface driver zaurus\n[    0.888570] usbcore: registered new interface driver cdc_ncm\n[    0.915732] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    0.917666] register_client_adhoc:find path.src 123 dest 512\n[    0.918096] register_client_adhoc:find path.src 1 dest 757\n[    0.918305] register_client_adhoc:Client handle 23 ufshc_mem\n[    0.918573] ufshcd-qcom 1d84000.ufshc: ufs_qcom_parse_reg_info: Unable to find qcom,vccq-parent-supply regulator, assuming enabled\n[    0.920239] scsi host0: ufshcd\n[    0.945591] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.949156] iommu: Adding device a600000.ssusb to group 15\n[    0.951323] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    0.955445] register_client_adhoc:find path.src 61 dest 512\n[    0.955864] register_client_adhoc:find path.src 61 dest 676\n[    0.956055] register_client_adhoc:find path.src 1 dest 583\n[    0.956267] register_client_adhoc:Client handle 24 usb0\n[    0.959892] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.959895] ehci-pci: EHCI PCI platform driver\n[    0.959915] ehci-platform: EHCI generic platform driver\n[    0.960469] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    0.960489] ohci-pci: OHCI PCI platform driver\n[    0.960516] ohci-platform: OHCI generic platform driver\n[    0.961575] usbcore: registered new interface driver usb-storage\n[    0.961594] usbcore: registered new interface driver usb_ehset_test\n[    0.961610] usbcore: registered new interface driver lvs\n[    0.965059] qpnp-pdphy c440000.qcom,spmi:qcom,pm6150@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    0.965477] usbcore: registered new interface driver xpad\n[    0.965493] usbcore: registered new interface driver usb_acecad\n[    0.965509] usbcore: registered new interface driver aiptek\n[    0.965524] usbcore: registered new interface driver gtco\n[    0.965538] usbcore: registered new interface driver hanwang\n[    0.965553] usbcore: registered new interface driver kbtab\n[    0.965732] goodix firmware update module init start\n[    0.966064] gf_platform: gf::irq_gpio:69\n[    0.966165] input: uinput-goodix as /devices/virtual/input/input1\n[    0.966200] gf_spi: version V1.2.01\n[    0.966265] gf_spi: status = 0x0\n[    0.967028] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm6150@0:qcom,pm6150_rtc: rtc core: registered qpnp_rtc as rtc0\n[    0.967267] i2c /dev entries driver\n[    0.967400] IR NEC protocol handler initialized\n[    0.967403] IR RC5(x/sz) protocol handler initialized\n[    0.967405] IR RC6 protocol handler initialized\n[    0.967407] IR JVC protocol handler initialized\n[    0.967410] IR Sony protocol handler initialized\n[    0.967411] IR SANYO protocol handler initialized\n[    0.967413] IR Sharp protocol handler initialized\n[    0.967415] IR MCE Keyboard/mouse protocol handler initialized\n[    0.967416] IR XMP protocol handler initialized\n[    0.968242] iommu: Adding device 9800000.qcom,msm_npu to group 16\n[    0.969182] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    0.969668] msm_npu 9800000.qcom,msm_npu: Unable to startup the chan (-11)\n[    0.969672] msm_npu: aop mailbox is not available\n[    0.971562] msm_vidc:  err: Failed to get platform resources\n[    0.971564] msm_vidc:  err: Failed to init core\n[    0.971573] msm_vidc_v4l2: probe of aa00000.qcom,vidc0 failed with error -22\n[    0.975926] iommu: Adding device aa00000.qcom,vidc1:non_secure_cb to group 17\n[    0.976407] iommu: Adding device aa00000.qcom,vidc1:secure_non_pixel_cb to group 18\n[    0.977657] iommu: Adding device aa00000.qcom,vidc1:secure_bitstream_cb to group 19\n[    0.978542] iommu: Adding device aa00000.qcom,vidc1:secure_pixel_cb to group 20\n[    0.979253] platform aa00000.qcom,vidc1:qcom,msm-vidc,mem_cdsp: assigned reserved memory node cdsp_region\n[    0.981121] i2c_geni 888000.i2c: Bus frequency is set to 1000000Hz.\n[    0.981936] i2c_geni 890000.i2c: Bus frequency is set to 400000Hz.\n[    0.983183] i2c_geni a84000.i2c: Bus frequency is set to 400000Hz.\n[    0.984199] nq-nci 0-0028: ese GPIO <OPTIONAL> error getting from OF node\n[    0.984233] nq-nci 0-0028: nqx_probe: ese gpio not provided\n[    0.984450] genirq: irq_chip msmgpio-dc did not update eff. affinity mask of irq 268\n[    1.048145] nq-nci 0-0028: nqx_probe: probing NFCC NQxxx exited successfully\n[    1.117865] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[1, 1], pwr[FAST MODE, FAST MODE], rate = 2\n[    1.118288] scsi 0:0:0:49488: Well-known LUN    MICRON   128GB-UFS-MT     9QSV PQ: 0 ANSI: 6\n[    1.118796] scsi 0:0:0:49456: Well-known LUN    MICRON   128GB-UFS-MT     9QSV PQ: 0 ANSI: 6\n[    1.119265] scsi 0:0:0:49476: Well-known LUN    MICRON   128GB-UFS-MT     9QSV PQ: 0 ANSI: 6\n[    1.119898] scsi 0:0:0:0: Direct-Access     MICRON   128GB-UFS-MT     9QSV PQ: 0 ANSI: 6\n[    1.120265] scsi 0:0:0:1: Direct-Access     MICRON   128GB-UFS-MT     9QSV PQ: 0 ANSI: 6\n[    1.120564] scsi 0:0:0:2: Direct-Access     MICRON   128GB-UFS-MT     9QSV PQ: 0 ANSI: 6\n[    1.120866] scsi 0:0:0:3: Direct-Access     MICRON   128GB-UFS-MT     9QSV PQ: 0 ANSI: 6\n[    1.121165] scsi 0:0:0:4: Direct-Access     MICRON   128GB-UFS-MT     9QSV PQ: 0 ANSI: 6\n[    1.121463] scsi 0:0:0:5: Direct-Access     MICRON   128GB-UFS-MT     9QSV PQ: 0 ANSI: 6\n[    1.123258] sd 0:0:0:0: [sda] physical block alignment offset: 131072\n[    1.123307] sd 0:0:0:2: [sdc] physical block alignment offset: 131072\n[    1.123597] sd 0:0:0:0: [sda] 67108864-byte physical blocks\n[    1.123698] sd 0:0:0:2: [sdc] 67108864-byte physical blocks\n[    1.124028] sd 0:0:0:0: [sda] Test WP failed, assume Write Enabled\n[    1.124058] sd 0:0:0:2: [sdc] Test WP failed, assume Write Enabled\n[    1.124292] sd 0:0:0:0: [sda] Optimal transfer size 131072 bytes not a multiple of physical block size (67108864 bytes)\n[    1.124614] sd 0:0:0:2: [sdc] Optimal transfer size 131072 bytes not a multiple of physical block size (67108864 bytes)\n[    1.124708] sd 0:0:0:3: [sdd] Test WP failed, assume Write Enabled\n[    1.124908] sd 0:0:0:3: [sdd] Optimal transfer size 131072 bytes\n[    1.126963] sd 0:0:0:1: [sdb] Test WP failed, assume Write Enabled\n[    1.127271] sd 0:0:0:1: [sdb] Optimal transfer size 131072 bytes\n[    1.127513]  sdd: sdd1 sdd2 sdd3 sdd4 sdd5\n[    1.127985]  sdc: sdc1 sdc2\n[    1.128224]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21 sda22 sda23 sda24 sda25 sda26 sda27 sda28 sda29 sda30 sda31 sda32\n[    1.131484] sd 0:0:0:4: [sde] Test WP failed, assume Write Enabled\n[    1.131791] sd 0:0:0:4: [sde] Optimal transfer size 131072 bytes\n[    1.132606] sd 0:0:0:5: [sdf] Test WP failed, assume Write Enabled\n[    1.132877] sd 0:0:0:5: [sdf] Optimal transfer size 131072 bytes\n[    1.133008]  sdb: sdb1 sdb2\n[    1.134970]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51\n[    1.137543]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6 sdf7 sdf8\n[    1.390475] [mi-touch] xiaomitouch_register_modedata: \n[    1.394173] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 21\n[    1.394420] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 22\n[    1.394471] platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node camera_region@8ab00000\n[    1.394810] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 23\n[    1.395085] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 24\n[    1.395402] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_fd to group 25\n[    1.395575] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 26\n[    1.398204] register_client_adhoc:find path.src 1 dest 589\n[    1.398527] register_client_adhoc:Client handle 24 cam_ahb\n[    1.398678] register_client_adhoc:find path.src 136 dest 512\n[    1.398881] register_client_adhoc:Client handle 25 cam_hf_0_mnoc\n[    1.399013] register_client_adhoc:find path.src 146 dest 778\n[    1.399058] register_client_adhoc:Client handle 26 cam_hf_0_camnoc\n[    1.399156] register_client_adhoc:find path.src 172 dest 512\n[    1.399347] register_client_adhoc:Client handle 27 cam_hf_1_mnoc\n[    1.399463] register_client_adhoc:find path.src 178 dest 778\n[    1.399522] register_client_adhoc:Client handle 28 cam_hf_1_camnoc\n[    1.399607] register_client_adhoc:find path.src 137 dest 512\n[    1.399806] register_client_adhoc:Client handle 29 cam_sf_0_mnoc\n[    1.399915] register_client_adhoc:find path.src 148 dest 778\n[    1.399958] register_client_adhoc:Client handle 30 cam_sf_0_camnoc\n[    1.400076] register_client_adhoc:find path.src 171 dest 512\n[    1.400269] register_client_adhoc:Client handle 31 cam_sf_1_mnoc\n[    1.400374] register_client_adhoc:find path.src 179 dest 778\n[    1.400420] register_client_adhoc:Client handle 32 cam_sf_1_camnoc\n[    1.402678] i2c_geni a8c000.i2c: Bus frequency is set to 400000Hz.\n[    1.403318] error: hwirq 0x78 is too large for :soc:pinctrl@3400000\n[    1.403328] ------------[ cut here ]------------\n[    1.403344] WARNING: CPU: 0 PID: 256 at kernel/irq/irqdomain.c:528 irq_domain_associate+0x164/0x1a8\n[    1.403346] Modules linked in:\n[    1.403355] CPU: 0 PID: 256 Comm: kworker/u16:7 Tainted: G S              4.14.314-perf-g01c713be9531-dirty #2\n[    1.403357] Hardware name: Qualcomm Technologies, Inc. SDMMAGPIE PM6150 DAVINCI (DT)\n[    1.403369] Workqueue: events_unbound async_run_entry_fn\n[    1.403374] task: 0000000030b9afb7 task.stack: 000000008de16323\n[    1.403378] pc : irq_domain_associate+0x164/0x1a8\n[    1.403381] lr : irq_domain_associate+0x164/0x1a8\n[    1.403383] sp : ffffff800ff2b5e0 pstate : 60c00045\n[    1.403385] x29: ffffff800ff2b5e0 x28: 000000000000000c \n[    1.403389] x27: ffffffde7c9db778 x26: ffffff9351b32403 \n[    1.403392] x25: 0000000000000000 x24: 0000000000000011 \n[    1.403395] x23: ffffff93522ea918 x22: ffffffde7474c000 \n[    1.403399] x21: 0000000000000193 x20: 0000000000000078 \n[    1.403402] x19: 0000000000000193 x18: 0000000000000000 \n[    1.403405] x17: 0000000000000000 x16: 0000000000000000 \n[    1.403408] x15: 0000000000000082 x14: 0000000000000048 \n[    1.403411] x13: 0000000000011830 x12: 0000000000000000 \n[    1.403415] x11: 0000000000000000 x10: ffffffffffffffff \n[    1.403418] x9 : 9556d5d01c410800 x8 : 9556d5d01c410800 \n[    1.403421] x7 : 0000000000000000 x6 : ffffffde7c741faf \n[    1.403424] x5 : 00000000000ee818 x4 : 0000000000000000 \n[    1.403428] x3 : 0000000000000030 x2 : 0000000000000001 \n[    1.403431] x1 : 00000000000000c0 x0 : 0000000000000037 \n[    1.403437] \n               PC: irq_domain_associate+0x124/0x1a8:\n[    1.403438] 86a4  f90012bf f90006bf b00137e0 9135a000 94510436 2a1703e0 a9434ff4 a94257f6\n[    1.403450] 86c4  f9400bf7 a8c47bfd d65f03c0 f9400ac2 d000f800 913d8800 2a1403e1 97ffd137\n[    1.403460] 86e4  d4210000 128002b7 17fffff0 b000f080 910fd000 2a1303e1 97ffd130 d4210000\n[    1.403470] 8704  128002b7 17ffffe9 9000f080 913ee400 2a1303e1 97ffd129 d4210000 128002b7\n[    1.403482] \n               LR: irq_domain_associate+0x124/0x1a8:\n[    1.403483] 86a4  f90012bf f90006bf b00137e0 9135a000 94510436 2a1703e0 a9434ff4 a94257f6\n[    1.403492] 86c4  f9400bf7 a8c47bfd d65f03c0 f9400ac2 d000f800 913d8800 2a1403e1 97ffd137\n[    1.403502] 86e4  d4210000 128002b7 17fffff0 b000f080 910fd000 2a1303e1 97ffd130 d4210000\n[    1.403512] 8704  128002b7 17ffffe9 9000f080 913ee400 2a1303e1 97ffd129 d4210000 128002b7\n[    1.403525] \n               SP: 0xffffff800ff2b5a0:\n[    1.403526] b5a0  4fb386e4 ffffff93 60c00045 00000000 ffffffc8 ffffff80 1c410800 9556d5d0\n[    1.403536] b5c0  ffffffff ffffffff 4fb386e4 ffffff93 0ff2b5e0 ffffff80 4fb386e4 ffffff93\n[    1.403546] b5e0  0ff2b620 ffffff80 4fb38904 ffffff93 522ea918 ffffff93 522ea918 ffffff93\n[    1.403556] b600  00000078 00000000 00000193 00000000 7474c000 ffffffde 00000078 00000000\n\n[    1.403569] Call trace:\n[    1.403572]  irq_domain_associate+0x164/0x1a8\n[    1.403576]  irq_create_mapping+0x14c/0x174\n[    1.403579]  irq_create_fwspec_mapping+0x278/0x358\n[    1.403582]  irq_create_of_mapping+0x58/0x7c\n[    1.403588]  of_irq_get+0x60/0x8c\n[    1.403596]  i2c_device_probe+0xa8/0x27c\n[    1.403601]  driver_probe_device+0x440/0x478\n[    1.403603]  __device_attach_driver+0x128/0x134\n[    1.403610]  bus_for_each_drv+0x7c/0xc4\n[    1.403612]  __device_attach+0xa8/0x134\n[    1.403614]  device_initial_probe+0x10/0x18\n[    1.403616]  bus_probe_device+0x30/0x90\n[    1.403619]  device_add+0x364/0x560\n[    1.403622]  device_register+0x1c/0x28\n[    1.403625]  i2c_new_device+0x304/0x324\n[    1.403628]  of_i2c_register_devices+0x234/0x280\n[    1.403631]  i2c_register_adapter+0x2b8/0x398\n[    1.403633]  __i2c_add_numbered_adapter+0x80/0xd4\n[    1.403635]  i2c_add_adapter+0x44/0xfc\n[    1.403639]  geni_i2c_probe+0x610/0x64c\n[    1.403641]  platform_drv_probe+0x64/0xb8\n[    1.403644]  driver_probe_device+0x440/0x478\n[    1.403646]  __driver_attach+0xc8/0xf4\n[    1.403648]  bus_for_each_dev+0x80/0xc8\n[    1.403650]  driver_attach+0x20/0x28\n[    1.403653]  driver_attach_async+0xc/0x14\n[    1.403655]  async_run_entry_fn+0x44/0x110\n[    1.403661]  process_one_work+0x188/0x3fc\n[    1.403663]  worker_thread+0x258/0x490\n[    1.403668]  kthread+0x118/0x128\n[    1.403673]  ret_from_fork+0x10/0x18\n[    1.403678] ---[ end trace c9df8c3363c266c2 ]---\n[    1.405453] akm09970: akm09970_probe: 685 IRQ is #346.\n[    1.406609] akm09970: akm09970_probe: 727 Probe exit\n[    1.408897] PMIC@SID0: SMB1390 v2.0 options: 0, 0, 0, 0\n[    1.409147] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    1.413087] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[18][cpas-cdm][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    1.416579] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[9][iferdi][0] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.417375] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[10][ifenrdi][0] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.418826] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[11][iferdi][1] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.419582] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[12][ifenrdi][1] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.420683] CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 525 No clk named ife_dsp_clk found. Dev vfe2\n[    1.420687] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 109 Option clk get failed with rc -14\n[    1.420921] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1020 Invalid mux type: 0\n[    1.420923] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1020 Invalid mux type: 0\n[    1.421047] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[13][iferdi][2] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.421799] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[14][ifenrdi][2] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.424247] CAM_INFO: CAM-ISP: cam_isp_dev_probe: 176 Camera ISP probe complete\n[    1.426735] CAM_INFO: CAM: cam_res_mgr_probe: 689 Disable shared gpio support.\n[    1.430121] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 428 Device Type :0\n[    1.430671] CAM_INFO: CAM: cam_res_mgr_probe: 689 Disable shared gpio support.\n[    1.433117] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 428 Device Type :1\n[    1.435193] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    1.435232] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    1.437635] CAM_ERR: CAM-EEPROM: cam_eeprom_driver_init: 588 hw_version_platform = 5\n[    1.444877] CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 174 Camera JPEG probe complete\n[    1.445999] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[23][fd][0] comp[7200000], comp_ab[7200000], uncomp[7200000]\n[    1.449856] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[24][lrmecpas][0] comp[7200000], comp_ab[7200000], uncomp[7200000]\n[    1.450582] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[17][cam-cdm-intf][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    1.452493] usbcore: registered new interface driver uvcvideo\n[    1.452494] USB Video Class driver (1.1.1)\n[    1.453796] use default ffc_low_tbat\n[    1.453798] use default ffc_high_tbat\n[    1.453807] fcc_calibrate = 0\n[    1.453864] Couldn't parse device tree rc=-517\n[    1.454340] SMB1390: smb1390_master_probe: Couldn't parse device tree rc=-517\n[    1.467699] device-mapper: uevent: version 1.0.3\n[    1.467799] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com\n[    1.469191] bt_dt_parse_vreg_info: qca,bt-vdd-vl: is not provided in device tree\n[    1.469195] bt_dt_parse_vreg_info: qca,bt-vdd-vm: is not provided in device tree\n[    1.469198] bt_dt_parse_vreg_info: qca,bt-vdd-5c: is not provided in device tree\n[    1.469200] bt_dt_parse_vreg_info: qca,bt-vdd-5a: is not provided in device tree\n[    1.469203] bt_dt_parse_vreg_info: qca,bt-vdd-vh: is not provided in device tree\n[    1.469218] bt_dt_parse_vreg_info: qca,bt-vdd-ldo: is not provided in device tree\n[    1.469221] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    1.469224] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in device tree\n[    1.469228] bt_power_populate_dt_pinfo: bt-3P3-gpio not provided in devicetree\n[    1.469231] bt_power_populate_dt_pinfo: bt-1P3-gpio not provided in devicetree\n[    1.469234] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.469236] bt_power_populate_dt_pinfo: clock not provided in device tree\n[    1.470084] EDAC DEVICE0: Giving out device to module soc:kryo-erp controller cache: DEV soc:kryo-erp (INTERRUPT)\n[    1.471562] qpnp_vibrator_ldo_probe: Vibrator LDO successfully registered: uV = 3000000, overdrive = disabled\n[    1.471952] hidraw: raw HID events driver (C) Jiri Kosina\n[    1.473071] usbcore: registered new interface driver usbhid\n[    1.473073] usbhid: USB HID core driver\n[    1.473162] ashmem: initialized\n[    1.473201] wlan_hdd_state wlan major(494) initialized\n[    1.473227] ipa_ut ipa_ut_module_init:1045 Loading IPA test module...\n[    1.473550] bimc-bwmon 90b6300.qcom,cpu-cpu-llcc-bwmon: BW HWmon governor registered.\n[    1.473595] bimc-bwmon 90cd000.qcom,cpu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    1.473670] bimc-bwmon 9960300.qcom,npu-npu-ddr-bwmon: BW HWmon governor registered.\n[    1.474286] arm-memlat-mon soc:qcom,cpu0-cpu-l3-latmon: Memory Latency governor registered.\n[    1.474323] arm-memlat-mon soc:qcom,cpu6-cpu-l3-latmon: Memory Latency governor registered.\n[    1.474361] arm-memlat-mon soc:qcom,cpu0-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.474396] arm-memlat-mon soc:qcom,cpu6-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.474446] arm-memlat-mon soc:qcom,cpu0-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.474481] arm-memlat-mon soc:qcom,cpu6-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.474522] arm-memlat-mon soc:qcom,cpu0-computemon: Compute governor registered.\n[    1.474561] arm-memlat-mon soc:qcom,cpu6-computemon: Compute governor registered.\n[    1.475996] register_client_adhoc:find path.src 1 dest 770\n[    1.476165] register_client_adhoc:Client handle 33 soc:qcom,cpu-cpu-llcc-bw\n[    1.478157] register_client_adhoc:find path.src 129 dest 512\n[    1.478268] register_client_adhoc:Client handle 34 soc:qcom,cpu-llcc-ddr-bw\n[    1.478928] register_client_adhoc:find path.src 1 dest 770\n[    1.478995] register_client_adhoc:Client handle 35 soc:qcom,cpu0-cpu-llcc-lat\n[    1.479267] register_client_adhoc:find path.src 1 dest 770\n[    1.479332] register_client_adhoc:Client handle 36 soc:qcom,cpu6-cpu-llcc-lat\n[    1.479684] register_client_adhoc:find path.src 129 dest 512\n[    1.479747] register_client_adhoc:Client handle 37 soc:qcom,cpu0-llcc-ddr-lat\n[    1.480136] register_client_adhoc:find path.src 129 dest 512\n[    1.480197] register_client_adhoc:Client handle 38 soc:qcom,cpu6-llcc-ddr-lat\n[    1.480567] register_client_adhoc:find path.src 129 dest 512\n[    1.480631] register_client_adhoc:Client handle 39 soc:qcom,cpu0-cpu-ddr-latfloor\n[    1.480997] register_client_adhoc:find path.src 129 dest 512\n[    1.481058] register_client_adhoc:Client handle 40 soc:qcom,cpu6-cpu-ddr-latfloor\n[    1.481449] register_client_adhoc:find path.src 154 dest 512\n[    1.481630] register_client_adhoc:Client handle 41 soc:qcom,npu-npu-ddr-bw\n[    1.481879] register_client_adhoc:find path.src 1 dest 627\n[    1.482089] register_client_adhoc:Client handle 42 soc:qcom,snoc_cnoc_keepalive\n[    1.482779] register_client_adhoc:find path.src 26 dest 512\n[    1.482911] register_client_adhoc:Client handle 43 soc:qcom,gpubw\n[    1.486076] qcom-llcc-pmu 90cc000.llcc-pmu: Registered llcc_pmu, type: 8\n[    1.487221] usbcore: registered new interface driver snd-usb-audio\n[    1.487432] iommu: Adding device soc:usb_audio_qmi_dev to group 27\n[    1.496179] [nxp] tfa98xx_i2c_init(): TFA98XX driver version v6.5.2_xxxxxxxxxx\n[    1.496634] [nxp] tfa98xx_i2c_probe(): addr=0x34\n[    1.496699] tfa98xx 3-0034: property nxp,spk-id-pin not detected in node /soc/i2c@0x890000/tfa98xx@34\n[    1.508222] input: goodix_ts as /devices/platform/goodix_ts.0/input/input2\n[    1.530225] [nxp] tfa98xx_i2c_probe(): TFA9874 detected\n[    1.530232] [nxp] tfa98xx_append_i2c_address(): tfa98xx_append_i2c_address()  dai_drv[0].name = [tfa98xx-aif-3-34]\n[    1.530236] [nxp] tfa98xx_append_i2c_address(): tfa98xx_append_i2c_address()  dai_drv[0].playback.stream_name = [AIF Playback-3-34]\n[    1.530239] [nxp] tfa98xx_append_i2c_address(): tfa98xx_append_i2c_address()  dai_drv[0].capture.stream_name = [AIF Capture-3-34]\n[    1.530445] [nxp] tfa98xx_init_misc_device(): entry\n[    1.530557] [nxp] tfa98xx_init_misc_device(): register misc device successed.\n[    1.530559] [nxp] tfa98xx_i2c_probe(): tfa98xx_i2c_probe Probe completed successfully!\n[    1.530992] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.531008] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.531021] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.531032] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.531045] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.534680] msm-dai-q6-hdmi soc:qcom,msm-dai-q6-hdmi_ms: invalid device ID 24578\n[    1.535151] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: msm_auxpcm_dev_probe: invalid DT intf name senary\n[    1.548490] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: group id not supported 0x9150\n[    1.548498] msm-dai-tdm: probe of soc:qcom,msm-dai-tdm-sen-rx failed with error -22\n[    1.548516] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: group id not supported 0x9151\n[    1.548521] msm-dai-tdm: probe of soc:qcom,msm-dai-tdm-sen-tx failed with error -22\n[    1.559202] GACT probability NOT on\n[    1.559214] Mirror/redirect action on\n[    1.559224] netem: version 1.3\n[    1.559226] u32 classifier\n[    1.559227]     Actions configured\n[    1.559237] Netfilter messages via NETLINK v0.30.\n[    1.559455] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)\n[    1.559533] ctnetlink v0.93: registering with nfnetlink.\n[    1.559787] xt_time: kernel timezone is -0000\n[    1.559878] gre: GRE over IPv4 demultiplexor driver\n[    1.559880] IPv4 over IPsec tunneling driver\n[    1.560252] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    1.560563] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    1.560629] Initializing XFRM netlink socket\n[    1.560641] IPsec XFRM device driver\n[    1.560802] NET: Registered protocol family 10\n[    1.562348] Segment Routing with IPv6\n[    1.562392] mip6: Mobile IPv6\n[    1.562401] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    1.562994] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    1.563470] NET: Registered protocol family 17\n[    1.563480] NET: Registered protocol family 15\n[    1.563496] Ebtables v2.0 registered\n[    1.563621] l2tp_core: L2TP core driver, V2.0\n[    1.563626] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    1.563628] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    1.563638] l2tp_netlink: L2TP netlink interface\n[    1.563653] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    1.563655] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    1.563714] sctp: Hash tables configured (bind 256/256)\n[    1.564427] actuator_regulator: supplied by pm6150l_bob\n[    1.566441] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.570842] register_client_adhoc:find path.src 61 dest 512\n[    1.571194] register_client_adhoc:find path.src 61 dest 676\n[    1.571371] register_client_adhoc:find path.src 1 dest 583\n[    1.571569] register_client_adhoc:Client handle 44 usb0\n[    1.573512] sps:BAM 0x000000000a704000 is registered.\n[    1.573551] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.573557] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    1.573561] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.573564] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    1.575051] qpnp-pdphy c440000.qcom,spmi:qcom,pm6150@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.575512] QG-K: qg_parse_dt: PMIC subtype 40 Digital major 2\n[    1.575550] QG-K: qg_parse_dt: DT: S2 FIFO length=5 low_vbat_length=2 acc_length=128 acc_interval=100\n[    1.575555] QG-K: qg_parse_dt: DT: OCV timer_expiry =-22min ocv_tol_threshold=-22uV\n[    1.575600] QG-K: qg_parse_dt: DT: cl_min_start_soc=10 cl_max_start_soc=15 cl_min_temp=150 cl_max_temp=500\n[    1.575603] QG-K: qg_parse_dt: use default soc_decimal_rate.\n[    1.575607] QG-K: qg_parse_dt: DT: vbatt_empty_mv=3100mV vbatt_low_mv=3300mV delta_soc=1 ext-sns=0\n[    1.575620] QG-K: qg_set_wa_flags: wa_flags = 6\n[    1.575659] QG-K: qg_master_hold: Master hold = 1\n[    1.575820] QG-K: qg_master_hold: Master hold = 0\n[    1.590506] QG-K: get_batt_id_ohm: batt_id_mv=760, batt_id_ohm=68166\n[    1.591258] of_batterydata_get_best_profile: f10_swd found\n[    1.591516] QG-K: qg_batterydata_init: QG Battery-profile loaded\n[    1.591523] QG-K: qg_load_battery_profile: Failed to read temp comp hysteresis rc:-22\n[    1.591526] QG-K: qg_load_battery_profile: Failed to max temp comp value rc:-22\n[    1.591528] QG-K: qg_load_battery_profile: don't use dts ffc_current_cfg\n[    1.591534] QG-K: qg_load_battery_profile: profile=f10_swd FV=4400000uV FCC=3500ma\n[    1.591538] QG-K: qg_setup_battery: battery_missing=0 batt_id_ohm=68166 Ohm profile_loaded=1 profile=f10_swd\n[    1.591583] QG-K: qg_sanitize_sdam: SDAM valid\n[    1.591695] QG-K: qg_determine_pon_soc: S7_PON_OCV OCV=4170681\n[    1.591708] QG-K: qg_determine_pon_soc: S3_GOOD_OCV OCV=3764474\n[    1.591721] QG-K: qg_determine_pon_soc: S3_LAST_OCV OCV=4154332\n[    1.591733] QG-K: qg_determine_pon_soc: SDAM_PON_OCV OCV=0\n[    1.593810] QG-K: qg_determine_pon_soc: Shutdown: Valid=1 SOC=87 OCV=4154200uV time=113603970secs temp=316, time_now=113604155secs temp_now=323 S7_soc=82\n[    1.593812] QG-K: qg_determine_pon_soc: Using SHUTDOWN_SOC @ PON\n[    1.593816] QG-K: qg_determine_pon_soc: Using SHUTDOWN_SOC @ PON\n[    1.593821] QG-K: qg_determine_pon_soc: v_float=4400000 v_cutoff=3400000 FULL_SOC=99 CUTOFF_SOC=2 calcualte_soc=83 pon_soc=82 shutdown[SDAM_SOC]=87 final soc = 86 ibat = 0\n[    1.595763] QG-K: qg_store_soc_params: SDAM write param 0 value=1\n[    1.595773] QG-K: qg_store_soc_params: SDAM write param 1 value=86\n[    1.595784] QG-K: qg_store_soc_params: SDAM write param 2 value=323\n[    1.595794] QG-K: qg_store_soc_params: SDAM write param 3 value=0\n[    1.595806] QG-K: qg_store_soc_params: SDAM write param 4 value=4154200\n[    1.595818] QG-K: qg_store_soc_params: SDAM write param 5 value=0\n[    1.595830] QG-K: qg_store_soc_params: SDAM write param 6 value=113604155\n[    1.595833] QG-K: qg_determine_pon_soc: using SHUTDOWN_SOC @ PON ocv_uv=4154200uV soc=86\n[    1.596091] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    1.596327] QG-K: qg_request_interrupt: IRQ qg-vbat-low registered wakeable=1\n[    1.596460] QG-K: qg_request_interrupt: IRQ qg-vbat-empty registered wakeable=1\n[    1.596741] QG-K: qg_request_interrupt: IRQ qg-fifo-done registered wakeable=1\n[    1.596887] QG-K: qg_request_interrupt: IRQ qg-good-ocv registered wakeable=1\n[    1.596956] QG-K: qpnp_qg_probe: QG initialized! battery_profile=f10_swd SOC=86 QG_subtype=4\n[    1.597190] use default ffc_low_tbat\n[    1.597192] use default ffc_high_tbat\n[    1.597200] fcc_calibrate = 0\n[    1.597281] failed to get uart_en_gpio\n[    1.597988] pm6150_charger: smblib_set_charge_param: usb otg current limit = 3000000 (0x05)\n[    1.598017] pm6150_charger: smblib_set_charge_param: DC input current limit = 100000 (0x02)\n[    1.598093] battery present = 1 AICL on\n[    1.599124] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    1.599191] pm6150_charger: smblib_set_charge_param: switching frequency = 1050 (0x08)\n[    1.599197] pm6150_charger: smblib_set_sw_thermal_regulation: WDOG SNARL INT Disabled\n[    1.599264] pm6150_charger: smblib_update_usb_type: APSD=UNKNOWN PD=0 QC3P5=0\n[    1.599270] pm6150_charger: smblib_usb_plugin_locked: IRQ: usbin-plugin detached\n[    1.599335] pm6150_charger: typec_state_change_irq_handler: IRQ: cc-state-change; Type-C NONE detected\n[    1.599347] pm6150_charger: usb_source_change_irq_handler: APSD_STATUS = 0x00\n[    1.599361] pm6150_charger: usb_source_change_irq_handler: APSD_STATUS = 0x00\n[    1.599397] pm6150_charger: batt_temp_changed_irq_handler: IRQ: determine-initial-status\n[    1.599399] pm6150_charger: wdog_bark_irq_handler: IRQ: determine-initial-status\n[    1.603731] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    1.605281] of_batterydata_get_best_profile: f10_swd found\n[    1.605587] pm6150_charger: smblib_run_aicl: re-running AICL\n[    1.605632] pm6150_charger: smblib_set_charge_param: fast charge current = 3500000 (0x46)\n[    1.605645] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    1.605657] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    1.605716] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    1.606366] pm6150_charger: smblib_process_thermal_readings: Current temperatures: \tDIE_TEMP: 395,\tCONN_TEMP: 324,\tSMB_TEMP: -61,\tSKIN_TEMP: -61\n               THERMAL_STATUS: 5\n[    1.606632] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    1.607417] QG-K: qg_charge_full_update: msoc=86 health=1 charge_full=0 charge_done=0 charge_status=2\n[    1.607483] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    1.609223] pm6150_charger: smblib_run_aicl: re-running AICL\n[    1.609246] pm6150_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 1!\n[    1.609249] pm6150_charger: smblib_set_prop_typec_power_role: power role already in 1, ignore!\n[    1.609329] SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    1.609332] QPNP SMB5 probed successfully\n[    1.610157] QG-K: qg_get_ffc_iterm_for_chg: ffc_terminal_current other is 830\n[    1.613177] SMB1390: smb1390_probe: smb1390 Master probed successfully\n[    1.614647] QG-K: qg_charge_full_update: msoc=86 health=1 charge_full=0 charge_done=0 charge_status=2\n[    1.621432] Error registering TZ zone:-19 for dt_ch:79\n[    1.621524] Error registering TZ zone:-19 for dt_ch:85\n[    1.621786] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    1.621893] SMB1390: smb1390_ilim_vote_cb: Client missing\n[    1.622020] pm6150_charger: smblib_run_aicl: re-running AICL\n[    1.622133] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    1.622628] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.622816] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.622962] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.623135] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.623279] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.623867] pm6150_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:323, thermal_levels:16chg->system_temp_level:0, charger_type:0\n[    1.626009] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.630992] register_client_adhoc:find path.src 61 dest 512\n[    1.631506] register_client_adhoc:find path.src 61 dest 676\n[    1.631740] register_client_adhoc:find path.src 1 dest 583\n[    1.631839] QG-K: qg_charge_full_update: msoc=86 health=1 charge_full=0 charge_done=0 charge_status=2\n[    1.632085] register_client_adhoc:Client handle 44 usb0\n[    1.634182] sps:BAM 0x000000000a704000 is registered.\n[    1.634223] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.634228] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    1.634232] ipa_rm ipa_rm_delete_resource:146 IPA RM was not initialized\n[    1.634235] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    1.635166] pm6150_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:324, thermal_levels:16chg->system_temp_level:0, charger_type:0\n[    1.635827] usbpd usbpd0: do not limit current\n[    1.635832] usbpd usbpd0: failed to read pd unverified pps vbus limit\n[    1.636298] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.636443] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.636587] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.636731] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.636872] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.639107] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.643399] pm6150_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:323, thermal_levels:16chg->system_temp_level:0, charger_type:0\n[    1.644085] register_client_adhoc:find path.src 61 dest 512\n[    1.644557] register_client_adhoc:find path.src 61 dest 676\n[    1.644733] register_client_adhoc:find path.src 1 dest 583\n[    1.644926] register_client_adhoc:Client handle 44 usb0\n[    1.645503] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.645650] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.645793] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.645937] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.646078] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.646607] pm6150_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:323, thermal_levels:16chg->system_temp_level:0, charger_type:0\n[    1.647174] registered taskstats version 1\n[    1.647176] Loading compiled-in X.509 certificates\n[    1.647187] page_owner is disabled\n[    1.647270] Key type ._fscrypt registered\n[    1.647272] Key type .fscrypt registered\n[    1.647274] Key type fscrypt-provisioning registered\n[    1.649245] Please check if `measure` clk is registered.\n[    1.661179] pm6150_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:323, thermal_levels:16chg->system_temp_level:0, charger_type:0\n[    1.661499] sps:BAM 0x000000000a704000 is registered.\n[    1.663103] ADSPRPC: Secure VMID = 22\n[    1.663106] ADSPRPC: Secure VMID = 37\n[    1.663184] pm6150_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:324, thermal_levels:16chg->system_temp_level:0, charger_type:0\n[    1.663788] qusb_phy_init(): Programming TUNE1 parameter as:26\n[    1.663790] qusb_phy_init(): Override TUNE1 parameter as:0\n[    1.663792] qusb_phy_init(): Programming pll_bias parameter as:0\n[    1.664055] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode\n[    1.664971] msm-dwc3 a600000.ssusb: DWC3 in low power mode\n[    1.665132] pm6150_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:323, thermal_levels:16chg->system_temp_level:0, charger_type:0\n[    1.665709] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    1.665838] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    1.665872] SMB1390: smb1390_ilim_vote_cb: Client missing\n[    1.665990] pm6150_charger: smblib_run_aicl: re-running AICL\n[    1.666115] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 28\n[    1.667201] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 29\n[    1.667535] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.667795] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 30\n[    1.668323] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.668565] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 31\n[    1.668844] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.669096] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 32\n[    1.669496] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.669714] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 33\n[    1.669981] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.670270] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 34\n[    1.671108] QG-K: qg_charge_full_update: msoc=86 health=1 charge_full=0 charge_done=0 charge_status=2\n[    1.671376] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.671606] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 35\n[    1.671907] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.672134] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 36\n[    1.672388] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.672602] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 37\n[    1.672863] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.673079] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13 to group 38\n[    1.673318] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.673585] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14 to group 39\n[    1.673845] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.674112] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb15 to group 40\n[    1.674387] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    1.676282] [drm-dp] dp_display_init_aux_switch: cannot parse qcom,dp-aux-switch handle\n[    1.677909] register_client_adhoc:find path.src 1 dest 590\n[    1.678192] register_client_adhoc:Client handle 45 mdss_reg\n[    1.678224] register_client_adhoc:find path.src 22 dest 512\n[    1.678428] register_client_adhoc:find path.src 23 dest 512\n[    1.678622] register_client_adhoc:Client handle 46 mdss_sde\n[    1.678673] [drm:sde_dbg_init:5230] evtlog_status: enable:3, panic:1, dump:2\n[    1.678698] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops sde_rsc_comp_ops)\n[    1.678705] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops sde_wb_comp_ops)\n[    1.678949] msm-dsi-display:[dsi_display_bind] Successfully bind display panel 'dsi_ss_fhd_ea_f10_cmd_display'\n[    1.679136] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display (ops dsi_display_comp_ops)\n[    1.679142] msm_drm ae00000.qcom,mdss_mdp: bound ae90000.qcom,dp_display (ops dp_display_comp_ops)\n[    1.679148] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-secondary (ops dsi_display_comp_ops)\n[    1.679167] [drm] mapped mdp address space @00000000815e693f\n[    1.679250] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: vbif_nrt_phys\n[    1.679274] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: sid_phys\n[    1.679295] [drm:_sde_kms_get_splash_data:3311] splash mem num_regions:1\n[    1.679306] [drm:_sde_kms_get_splash_data:3346] splash mem for disp:1 add:9c000000 size:1700000\n[    1.679785] [drm:sde_kms_hw_init:3492] sde hardware revision:0x50020000\n[    1.680888] [drm] Created domain mdp_ns [80000000,80000000] secure=0\n[    1.682715] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 41\n[    1.682734] [drm] probing device qcom,smmu_sde_sec\n[    1.682741] [drm] Created domain mdp_s [80000000,80000000] secure=1\n[    1.686488] [drm-dp] dp_aux_get: invalid input\n[    1.686493] [drm-dp] dp_init_sub_modules: failed to initialize aux, rc = -19\n[    1.686501] [drm:sde_connector_init:2287] [sde error]post-init failed, -19\n[    1.686514] [drm-dp-mst]: dp_mst_drm_bridge_init: mst not initialized. cache encoder information\n[    1.686519] [drm-dp-mst]: dp_mst_drm_bridge_init: mst not initialized. cache encoder information\n[    1.686542] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.686865] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.687632] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.687669] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.688466] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    1.688468] [drm] No driver support for vblank timestamp query.\n[    1.689217] [drm] Initialized msm_drm 1.2.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    1.689284] msm-dsi-panel:[dsi_panel_parse_topology:3120] default topology: lm: 1 comp_enc:0 intf: 1\n[    1.689400] msm-dsi-panel:[dsi_panel_parse_partial_update_caps:3210] partial update disabled as the property is not set\n[    1.689531] dsi-ctrl:[_dsi_ctrl_setup_isr] [DSI_0] IRQ 473 registered\n[    1.691448] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-qos-lut : doesn't exist in device tree\n[    1.691452] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-danger-lut : doesn't exist in device tree\n[    1.691455] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-safe-lut : doesn't exist in device tree\n[    1.691523] register_client_adhoc:find path.src 1 dest 590\n[    1.691801] register_client_adhoc:Client handle 47 sde_reg\n[    1.691999] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 42\n[    1.692034] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    1.692194] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 43\n[    1.692211] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    1.692293] register_client_adhoc:find path.src 25 dest 512\n[    1.692497] register_client_adhoc:Client handle 48 mdss_rotator\n[    1.692509] register_client_adhoc:find path.src 1 dest 590\n[    1.692695] register_client_adhoc:Client handle 49 mdss_rot_reg\n[    1.693007] No change in context(0==0), skip\n[    1.693865] sde_rotator_evtlog_create_debugfs: evtlog_status: enable:1, panic:1, dump:2\n[    1.694420] sde_rotator ae00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    1.694683] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.694872] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.695020] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.695165] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.695309] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.696274] iommu: Adding device 62e40000.slim:qcom,iommu_slim_ctrl_cb to group 44\n[    1.696718] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.696863] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.697007] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.697150] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.697290] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.700638] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    1.700918] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm6150@0:qcom,pm6150_rtc: setting system clock to 1973-08-07 20:42:35 UTC (113604155)\n[    1.701556] CAM_ERR: CAM-CCI: cam_cci_assign_fops: 501 Invalid dev node:0000000076e02dde offset: 0\n[    1.702223] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.702393] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.702539] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.702682] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.702825] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.703409] lpm_levels: register_cluster_lpm_stats()\n[    1.703512] lpm_levels: register_cluster_lpm_stats()\n[    1.705566] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.705724] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.705870] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.706014] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.706158] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.708664] rmnet_ipa3 started initialization\n[    1.709383] RNDIS_IPA module is loaded.\n[    1.713340] msm_bus_late_init: Remove handoff bw requests\n[    1.714186] dbu1: disabling\n[    1.714223] actuator_regulator: disabling\n[    1.714258] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    1.714326] ALSA device list:\n[    1.714328]   No soundcards found.\n[    1.714364] Warning: unable to open an initial console.\n[    1.715816] Freeing unused kernel memory: 6144K\n[    2.640097] pm6150_charger: smblib_icl_change_work: icl_settled=0\n[    2.640516] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    2.640531] SMB1390: smb1390_ilim_vote_cb: Client missing\n[    2.640662] pm6150_charger: smblib_run_aicl: re-running AICL\n[    2.642115] QG-K: qg_battery_soc_smooth_tracking: soc:-22, last_soc:-22, raw_soc:86, soc_changed:0, update_now:0, charge_status:2, batt_ma:285\n[    2.642121] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:285, s:2\n[    2.642646] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    2.643351] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[    2.643407] SMB1390: smb1390_ilim_vote_cb: Client missing\n[    2.643522] pm6150_charger: smblib_run_aicl: re-running AICL\n[    2.646607] QG-K: qg_charge_full_update: msoc=86 health=1 charge_full=0 charge_done=0 charge_status=2\n[    2.671595] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    2.671760] cpu1 \n[    2.671812] cpu6 \n[    2.671853] \n               Offline CPUs: \n[    2.675049] cpu1 \n[    2.676508] CPU1: shutdown\n[    2.677432] cpu2 \n[    2.678835] CPU2: shutdown\n[    2.679510] cpu3 \n[    2.680898] CPU3: shutdown\n[    2.681492] cpu4 \n[    2.682838] CPU4: shutdown\n[    2.683428] cpu5 \n[    2.684657] CPU5: shutdown\n[    2.685204] cpu6 \n[    2.685667] CPU6: shutdown\n[    2.686250] cpu7 \n[    2.687279] CPU7: shutdown\n\n[    3.601124] of_batterydata_get_best_profile: f10_swd found\n[    3.601150] QCOM-STEPCHG: get_step_chg_jeita_setting_from_profile: ffc-max-voltage_uv reading failed, try max-voltage_uv, rc=-22\n[    3.601180] QCOM-STEPCHG: get_step_chg_jeita_setting_from_profile: don't use dts step_chg_hysteresis: 100000\n[    3.601196] QCOM-STEPCHG: read_range_data_from_node: Count qcom,step-chg-ranges failed, rc=-22\n[    3.601229] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.601239] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.601250] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.601260] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.601270] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.601282] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 0decidegree ~ 50decidegre, 390000uA\n[    3.601293] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 51decidegree ~ 100decidegre, 1170000uA\n[    3.601305] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 101decidegree ~ 150decidegre, 2730000uA\n[    3.601316] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 151decidegree ~ 450decidegre, 3500000uA\n[    3.601327] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 451decidegree ~ 580decidegre, 1950000uA\n[    3.601339] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 0decidegree ~ 50decidegre, 4400000uV\n[    3.601350] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 51decidegree ~ 100decidegre, 4400000uV\n[    3.601361] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 101decidegree ~ 150decidegre, 4400000uV\n[    3.601372] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 151decidegree ~ 450decidegre, 4400000uV\n[    3.601383] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 451decidegree ~ 580decidegre, 4100000uV\n[    7.700336] Sampling power every 250 ms\n               Baseline power usage: \n[   12.645333] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:0, update_now:0, charge_status:2, batt_ma:155\n[   12.645351] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:155, s:2\n[   22.885162] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:0, update_now:0, charge_status:2, batt_ma:152\n[   22.885180] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:152, s:2\n[   26.722465] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[   26.722987] SMB1390: smb1390_ilim_vote_cb: Client missing\n[   26.723149] pm6150_charger: smblib_run_aicl: re-running AICL\n[   26.723919] pm6150_charger: smblib_set_charge_param: float voltage = 4400000 (0x50)\n[   26.723947] SMB1390: smb1390_ilim_vote_cb: Client missing\n[   26.724079] pm6150_charger: smblib_run_aicl: re-running AICL\n[   26.731214] QG-K: qg_charge_full_update: msoc=86 health=1 charge_full=0 charge_done=0 charge_status=2\n[   26.731302] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[   26.733967] QG-K: qg_get_ffc_iterm_for_chg: ffc_terminal_current other is 830\n[   26.736103] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 324 FCC = 3500000uA FV = 4400000uV\n[   26.736177] pm6150_charger: smblib_set_charge_param: float voltage = 4340000 (0x4a)\n[   26.741633] QG-K: qg_charge_full_update: msoc=86 health=1 charge_full=0 charge_done=0 charge_status=2\n[   33.125206] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:0, update_now:0, charge_status:2, batt_ma:157\n[   33.125224] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:157, s:2\n[   43.365165] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:0, update_now:0, charge_status:2, batt_ma:177\n[   43.365182] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:177, s:2\n[   53.605228] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:0, update_now:0, charge_status:2, batt_ma:167\n[   53.605246] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:167, s:2\n[   63.845206] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:158\n[   63.845224] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:158, s:2\n[   74.085206] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:159\n[   74.085226] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:159, s:2\n[   83.113719] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000\n[   83.113853] CPU1: Booted secondary processor [51df805e]\n[   84.124737] 656 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 576 768 1017 1248 1324 1497 1612 1708 1804\n               \n                300: \n[   84.325260] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:154\n[   84.325280] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:154, s:2\n[   94.562580] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:180\n[   94.562597] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:180, s:2\n[  104.802575] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:166\n[  104.802592] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:166, s:2\n[  115.042612] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:163\n[  115.042629] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:163, s:2\n[  125.282568] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:167\n[  125.282585] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:167, s:2\n[  135.522587] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:165\n[  135.522605] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:165, s:2\n[  145.774071] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:165\n[  145.774089] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:165, s:2\n[  156.002575] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:181\n[  156.002592] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:181, s:2\n[  166.242585] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:162\n[  166.242602] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:162, s:2\n[  176.490519] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:165\n[  176.490536] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:165, s:2\n[  186.722583] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:172\n[  186.722600] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:172, s:2\n[  196.962571] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:172\n[  196.962588] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:172, s:2\n[  207.206503] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:164\n[  207.206520] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:164, s:2\n[  217.442578] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:164\n[  217.442595] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:164, s:2\n[  227.682594] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:173\n[  227.682612] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:173, s:2\n[  237.922644] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:180\n[  237.922661] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:180, s:2\n[  248.162571] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:165\n[  248.162587] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:165, s:2\n[  258.402569] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:168\n[  258.402586] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:168, s:2\n[  268.642538] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:174\n[  268.642555] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:174, s:2\n[  278.882571] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:184\n[  278.882587] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:184, s:2\n[  289.122619] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:165\n[  289.122635] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:165, s:2\n[  299.362629] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:164\n[  299.362647] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:164, s:2\n[  305.120373] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120405] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120968] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120990] audio_notifer_reg_service: service SSR_ADSP is in use\n[  305.121043] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121051] ADSPRPC: Audio PD restart notifier locator down\n[  305.121097] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121104] ADSPRPC: Audio PD restart notifier locator down\n[  305.121135] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  309.602588] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:164\n[  309.602604] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:164, s:2\n[  319.842573] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:174\n[  319.842589] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:174, s:2\n[  330.082612] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:162\n[  330.082628] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:162, s:2\n[  340.322609] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:162\n[  340.322626] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:162, s:2\n[  350.563119] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:179\n[  350.563136] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:179, s:2\n[  360.802627] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:171\n[  360.802644] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:171, s:2\n[  361.904243]  1114     3.7 C/MHz     43 mW   11.6 J   25.9 I/mJ   269.4 s\n                576: \n[  371.052753] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:168\n[  371.052763] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:168, s:2\n[  381.282334] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:170\n[  381.282344] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:170, s:2\n[  391.522384] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:166\n[  391.522394] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:166, s:2\n[  401.768946] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:172\n[  401.768955] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:172, s:2\n[  412.002339] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:180\n[  412.002349] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:180, s:2\n[  422.242358] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:169\n[  422.242368] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:169, s:2\n[  432.483379] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:168\n[  432.483389] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:168, s:2\n[  442.722406] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:170\n[  442.722416] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:170, s:2\n[  452.962375] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:182\n[  452.962385] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:182, s:2\n[  463.202336] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:169\n[  463.202347] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:169, s:2\n[  473.442343] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:167\n[  473.442353] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:167, s:2\n[  483.682360] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:172\n[  483.682370] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:172, s:2\n[  493.922358] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:187\n[  493.922368] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:187, s:2\n[  504.162334] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:170\n[  504.162344] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:170, s:2\n[  510.377699]  2139     3.7 C/MHz     59 mW    8.3 J   36.0 I/mJ   140.3 s\n                768: \n[  514.404711] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:156\n[  514.404720] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:156, s:2\n[  524.642293] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:176\n[  524.642303] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:176, s:2\n[  534.882280] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:186\n[  534.882289] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:186, s:2\n[  545.122874] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:170\n[  545.122882] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:170, s:2\n[  555.362274] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:171\n[  555.362282] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:171, s:2\n[  565.614273] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:176\n[  565.614281] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:176, s:2\n[  575.842313] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:182\n[  575.842322] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:182, s:2\n[  586.082287] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:174\n[  586.082296] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:174, s:2\n[  596.330603] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:172\n[  596.330611] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:172, s:2\n[  606.562296] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:182\n[  606.562304] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:182, s:2\n[  616.802284] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:171\n[  616.802292] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:171, s:2\n[  623.774016]  2852     3.7 C/MHz     71 mW    7.5 J   40.2 I/mJ   105.2 s\n               1017: \n[  627.046595] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:155\n[  627.046602] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:155, s:2\n[  637.282288] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:176\n[  637.282296] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:176, s:2\n[  647.522249] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:193\n[  647.522256] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:193, s:2\n[  657.762242] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:176\n[  657.762248] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:176, s:2\n[  668.002256] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:175\n[  668.002263] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:175, s:2\n[  678.242239] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:177\n[  678.242246] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:177, s:2\n[  688.482243] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:187\n[  688.482250] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:187, s:2\n[  698.722289] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:177\n[  698.722295] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:177, s:2\n[  708.962245] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:176\n[  708.962252] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:176, s:2\n[  711.488013]  3778     3.7 C/MHz     86 mW    6.8 J   43.9 I/mJ    79.4 s\n               1248: \n[  719.204582] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:156\n[  719.204588] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:156, s:2\n[  729.442230] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:192\n[  729.442236] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:192, s:2\n[  739.682214] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:180\n[  739.682221] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:180, s:2\n[  749.922228] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:181\n[  749.922234] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:181, s:2\n[  760.162234] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:179\n[  760.162240] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:179, s:2\n[  770.402232] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:191\n[  770.402238] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:191, s:2\n[  780.642229] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:185\n[  780.642234] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:185, s:2\n[  784.607922]  4634     3.7 C/MHz    101 mW    6.6 J   45.8 I/mJ    64.7 s\n               1324: \n[  790.894551] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:154\n[  790.894557] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:154, s:2\n[  801.122228] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:180\n[  801.122235] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:180, s:2\n[  811.362211] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:182\n[  811.362217] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:182, s:2\n[  821.608334] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:190\n[  821.608340] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:190, s:2\n[  831.842209] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:188\n[  831.842215] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:188, s:2\n[  842.082209] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:183\n[  842.082214] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:183, s:2\n[  852.324820] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:181\n[  852.324826] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:181, s:2\n[  853.957898]  4919     3.7 C/MHz    107 mW    6.5 J   46.0 I/mJ    61.0 s\n               1497: \n[  862.562215] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:183\n[  862.562220] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:183, s:2\n[  872.802213] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:187\n[  872.802218] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:187, s:2\n[  883.042220] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:196\n[  883.042226] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:196, s:2\n[  893.282205] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:188\n[  893.282210] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:188, s:2\n[  903.522204] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:189\n[  903.522209] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:189, s:2\n[  913.762111] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:185\n[  913.762116] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:185, s:2\n[  916.270372]  5560     3.7 C/MHz    117 mW    6.3 J   47.4 I/mJ    54.0 s\n               1612: \n[  924.004540] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:156\n[  924.004546] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:156, s:2\n[  934.242202] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:203\n[  934.242208] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:203, s:2\n[  944.482202] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:185\n[  944.482206] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:185, s:2\n[  954.722199] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:186\n[  954.722204] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:186, s:2\n[  964.962193] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:186\n[  964.962197] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:186, s:2\n[  974.565245]  5988     3.7 C/MHz    125 mW    6.3 J   47.9 I/mJ    50.1 s\n               1708: \n[  975.204560] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:154\n[  975.204565] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:154, s:2\n[  985.454555] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:190\n[  985.454561] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:190, s:2\n[  995.682189] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:195\n[  995.682194] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:195, s:2\n[ 1005.922205] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:202\n[ 1005.922210] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:202, s:2\n[ 1016.170850] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:206\n[ 1016.170855] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:206, s:2\n[ 1026.402189] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:197\n[ 1026.402193] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:197, s:2\n[ 1030.097786]  6345     3.7 C/MHz    136 mW    6.4 J   46.7 I/mJ    47.3 s\n               1804: \n[ 1036.644583] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:154\n[ 1036.644588] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:154, s:2\n[ 1046.886101] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:195\n[ 1046.886107] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:195, s:2\n[ 1057.122211] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:190\n[ 1057.122216] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:190, s:2\n[ 1067.362201] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:197\n[ 1067.362205] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:197, s:2\n[ 1077.602898] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:209\n[ 1077.602903] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:209, s:2\n[ 1083.120369] CPU1: shutdown\n[ 1083.124543] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000\n[ 1083.124577] CPU6: Booted secondary processor [51df804e]\n[ 1084.134654]  6701     3.7 C/MHz    155 mW    6.9 J   43.2 I/mJ    44.8 s\n               \n               \n               ===== CPU 6 =====\n               Frequencies: 300 652 806 979 1094 1209 1324 1555 1708 1843 1939 2169 2208\n               \n                300: \n[ 1087.845207] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:167\n[ 1087.845224] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:167, s:2\n[ 1098.082745] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:179\n[ 1098.082764] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:179, s:2\n[ 1108.322736] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:177\n[ 1108.322754] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:177, s:2\n[ 1118.562696] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:176\n[ 1118.562714] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:176, s:2\n[ 1128.802733] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:178\n[ 1128.802750] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:178, s:2\n[ 1139.042698] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:184\n[ 1139.042714] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:184, s:2\n[ 1149.282697] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:191\n[ 1149.282713] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:191, s:2\n[ 1159.522771] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:187\n[ 1159.522787] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:187, s:2\n[ 1169.762699] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:176\n[ 1169.762716] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:176, s:2\n[ 1180.002697] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:180\n[ 1180.002714] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:180, s:2\n[ 1190.242747] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:187\n[ 1190.242764] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:187, s:2\n[ 1200.482706] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:184\n[ 1200.482723] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:184, s:2\n[ 1210.733726] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:179\n[ 1210.733743] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:179, s:2\n[ 1220.825294]  2338     7.8 C/MHz     92 mW   11.9 J   25.3 I/mJ   128.3 s\n                652: \n[ 1220.965230] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:156\n[ 1220.965248] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:156, s:2\n[ 1231.202704] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:191\n[ 1231.202721] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:191, s:2\n[ 1241.448999] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:196\n[ 1241.449018] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:196, s:2\n[ 1251.682728] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:202\n[ 1251.682745] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:202, s:2\n[ 1261.922732] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:192\n[ 1261.922748] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:192, s:2\n[ 1272.164727] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:192\n[ 1272.164743] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:192, s:2\n[ 1282.402730] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:194\n[ 1282.402747] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:194, s:2\n[ 1288.087152]  5087     7.8 C/MHz    151 mW    8.9 J   33.6 I/mJ    59.0 s\n                806: \n[ 1292.645155] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:154\n[ 1292.645173] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:154, s:2\n[ 1302.882703] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:203\n[ 1302.882721] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:203, s:2\n[ 1313.122775] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:204\n[ 1313.122792] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:204, s:2\n[ 1323.362699] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:215\n[ 1323.362716] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:215, s:2\n[ 1333.602697] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:205\n[ 1333.602714] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:205, s:2\n[ 1343.842745] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:205\n[ 1343.842762] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:205, s:2\n[ 1344.241134]  6274     7.8 C/MHz    176 mW    8.4 J   35.6 I/mJ    47.8 s\n                979: \n[ 1354.082705] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:210\n[ 1354.082722] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:210, s:2\n[ 1364.322703] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:208\n[ 1364.322720] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:208, s:2\n[ 1374.562735] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:212\n[ 1374.562752] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:212, s:2\n[ 1384.802704] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:210\n[ 1384.802720] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:210, s:2\n[ 1391.811860]  7630     7.8 C/MHz    220 mW    8.7 J   34.6 I/mJ    39.3 s\n               1094: \n[ 1395.045185] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:169\n[ 1395.045203] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:169, s:2\n[ 1405.294834] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:231\n[ 1405.294851] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:231, s:2\n[ 1415.522744] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:224\n[ 1415.522762] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:224, s:2\n[ 1425.762704] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:222\n[ 1425.762722] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:222, s:2\n[ 1435.343565]  8525     7.8 C/MHz    253 mW    8.9 J   33.7 I/mJ    35.2 s\n               1209: \n[ 1436.013230] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:158\n[ 1436.013248] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:158, s:2\n[ 1446.242709] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:223\n[ 1446.242728] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:223, s:2\n[ 1456.482699] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:225\n[ 1456.482716] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:225, s:2\n[ 1466.727440] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:224\n[ 1466.727456] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:224, s:2\n[ 1475.596055]  9424     7.8 C/MHz    281 mW    8.9 J   33.6 I/mJ    31.9 s\n               1324: \n[ 1476.965184] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:170\n[ 1476.965203] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:170, s:2\n[ 1487.202701] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:234\n[ 1487.202718] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:234, s:2\n[ 1497.442647] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:234\n[ 1497.442664] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:234, s:2\n[ 1507.682700] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:234\n[ 1507.682716] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:234, s:2\n[ 1513.068811] 10301     7.8 C/MHz    316 mW    9.2 J   32.5 I/mJ    29.1 s\n               1555: \n[ 1517.925200] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:165\n[ 1517.925218] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:165, s:2\n[ 1528.162738] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:256\n[ 1528.162756] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:256, s:2\n[ 1538.402713] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:258\n[ 1538.402731] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:258, s:2\n[ 1546.250550] 12126     7.8 C/MHz    411 mW   10.2 J   29.5 I/mJ    24.8 s\n               1708: \n[ 1548.644192] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:162\n[ 1548.644209] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:162, s:2\n[ 1558.882694] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:284\n[ 1558.882712] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:284, s:2\n[ 1569.122704] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:274\n[ 1569.122721] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:274, s:2\n[ 1577.158686] 13302     7.8 C/MHz    480 mW   10.8 J   27.7 I/mJ    22.6 s\n               1843: \n[ 1579.365167] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:156\n[ 1579.365185] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:156, s:2\n[ 1589.602737] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:292\n[ 1589.602755] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:292, s:2\n[ 1599.842716] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:292\n[ 1599.842733] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:292, s:2\n[ 1606.300955] 14368     7.8 C/MHz    554 mW   11.6 J   25.9 I/mJ    20.9 s\n               1939: \n[ 1610.085111] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:170\n[ 1610.085129] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:170, s:2\n[ 1620.322657] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:310\n[ 1620.322675] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:310, s:2\n[ 1630.574042] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:307\n[ 1630.574060] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:307, s:2\n[ 1634.432016] 15107     7.8 C/MHz    617 mW   12.3 J   24.5 I/mJ    19.9 s\n               2169: \n[ 1640.805161] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:157\n[ 1640.805179] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:157, s:2\n[ 1651.042749] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:354\n[ 1651.042766] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:354, s:2\n[ 1660.545251] 16903     7.8 C/MHz    800 mW   14.2 J   21.1 I/mJ    17.8 s\n               2208: \n[ 1661.290765] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:166\n[ 1661.290782] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:166, s:2\n[ 1671.522727] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:371\n[ 1671.522744] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:371, s:2\n[ 1681.762736] QG-K: qg_battery_soc_smooth_tracking: soc:86, last_soc:86, raw_soc:86, soc_changed:1, update_now:0, charge_status:2, batt_ma:359\n[ 1681.762754] QG-K: soc_monitor_work: soc:86, raw_soc:86, c:359, s:2\n[ 1686.410414] CPU6: shutdown\n[ 1686.443760] 17200     7.8 C/MHz    813 mW   14.2 J   21.1 I/mJ    17.5 s\n               \n               \n               Benchmark finished!\n[ 1686.476909] \n               real\t28m4.629s\n               user\t23m37.197s\n               sys\t0m2.649s\n"
  },
  {
    "path": "results/sm7150/third/post_bench_interrupts.txt",
    "content": "           CPU0       \n  4:       6036   PDC-GIC  19 Level     arch_timer\n  6:     178010   PDC-GIC  38 Level     arch_mem_timer\n  8:          0   PDC-GIC  21 Level     arm-pmu\n  9:          0   PDC-GIC  82 Level     arm_dsu_0\n 26:          0   PDC-GIC 323 Level     ngd_slim_irq\n 28:          0   PDC-GIC  32 Edge      apps_wdog_bark\n 30:          0   PDC-GIC 524 Level     eud_irq\n 31:          0   PDC-GIC  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 32:          0   PDC-GIC  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 33:          0   PDC-GIC 538 Level     tsens-upper-lower\n 34:          0   PDC-GIC 540 Level     tsens-critical\n 35:          0   PDC-GIC 539 Level     tsens-upper-lower\n 36:          0   PDC-GIC 541 Level     tsens-critical\n 37:        946   PDC-GIC  37 Level     apps_rsc\n 38:          0   PDC-GIC 161 Level     display_rsc\n 39:          0   PDC-GIC 620 Edge      qcom,qmp-npu-low\n 40:          0   PDC-GIC 621 Edge      qcom,qmp-npu-high\n 41:          6   PDC-GIC 421 Edge      qcom,qmp-aop\n 42:          0   PDC-GIC 483 Edge      smp2p\n 43:          0   PDC-GIC 204 Edge      smp2p\n 44:          0   PDC-GIC 608 Edge      smp2p\n 47:        390   PDC-GIC 297 Edge      1d84000.ufshc\n 48:          0   PDC-GIC 194 Edge      adsp\n 49:          0   PDC-GIC 304 Level     sps\n 51:          0   PDC-GIC 610 Edge      cdsp\n 52:          0   PDC-GIC 298 Edge      modem\n 69:          0   PDC-GIC 397 Level     arm-smmu-context-fault\n 70:          5   PDC-GIC 635 Level     i2c_geni\n 71:          3   PDC-GIC 637 Level     i2c_geni\n 72:          0   PDC-GIC 636 Level     msm_serial_geni0\n 74:       1884   PDC-GIC 386 Level     i2c_geni\n 75:        208   PDC-GIC 388 Level     i2c_geni\n 76:          0   PDC-GIC 206 Level     msm_vidc\n 77:          0   PDC-GIC 115 Edge      msm_drm\n 78:          0   PDC-GIC 509 Edge      csiphy\n 79:          0   PDC-GIC 510 Edge      csiphy\n 80:          0   PDC-GIC 511 Edge      csiphy\n 81:          0   PDC-GIC 639 Edge      csiphy\n 82:          0   PDC-GIC 492 Edge      cci\n 83:          0   PDC-GIC 493 Edge      cci\n 84:          1   PDC-GIC 500 Edge      cpas-cdm\n 85:          0   PDC-GIC 496 Edge      csid\n 86:          2   PDC-GIC 497 Edge      ife\n 87:          0   PDC-GIC 498 Edge      csid\n 88:          2   PDC-GIC 499 Edge      ife\n 89:          0   PDC-GIC 470 Edge      csid-lite\n 90:          2   PDC-GIC 466 Edge      ife-lite\n 91:          0   PDC-GIC 495 Edge      a5\n 92:          0   PDC-GIC 506 Edge      jpeg\n 93:          0   PDC-GIC 507 Edge      jpegdma\n 94:          2   PDC-GIC 494 Edge      fd\n 95:          1   PDC-GIC 508 Edge      lrme\n 96:          0   PDC-GIC 491 Edge      cpas_camnoc\n 97:          0   PDC-GIC 261 Level     arm-smmu global fault\n 98:          0   PDC-GIC 263 Level     arm-smmu global fault\n 99:          0   PDC-GIC 396 Level     arm-smmu-context-fault\n100:          0   PDC-GIC 398 Level     arm-smmu-context-fault\n101:          0   PDC-GIC 399 Level     arm-smmu-context-fault\n106:          0   PDC-GIC  97 Level     arm-smmu global fault\n108:          0   PDC-GIC 129 Level     arm-smmu-context-fault\n110:          0   PDC-GIC 131 Level     arm-smmu-context-fault\n111:          0   PDC-GIC 132 Level     arm-smmu-context-fault\n112:          0   PDC-GIC 133 Level     arm-smmu-context-fault\n113:          0   PDC-GIC 134 Level     arm-smmu-context-fault\n114:          0   PDC-GIC 135 Level     arm-smmu-context-fault\n115:          0   PDC-GIC 136 Level     arm-smmu-context-fault\n116:          0   PDC-GIC 137 Level     arm-smmu-context-fault\n117:          0   PDC-GIC 138 Level     arm-smmu-context-fault\n118:          0   PDC-GIC 139 Level     arm-smmu-context-fault\n119:          0   PDC-GIC 140 Level     arm-smmu-context-fault\n120:          0   PDC-GIC 141 Level     arm-smmu-context-fault\n121:          0   PDC-GIC 142 Level     arm-smmu-context-fault\n122:          0   PDC-GIC 143 Level     arm-smmu-context-fault\n123:          0   PDC-GIC 144 Level     arm-smmu-context-fault\n124:          0   PDC-GIC 145 Level     arm-smmu-context-fault\n125:          0   PDC-GIC 146 Level     arm-smmu-context-fault\n126:          0   PDC-GIC 147 Level     arm-smmu-context-fault\n127:          0   PDC-GIC 148 Level     arm-smmu-context-fault\n128:          0   PDC-GIC 149 Level     arm-smmu-context-fault\n129:          0   PDC-GIC 150 Level     arm-smmu-context-fault\n130:          0   PDC-GIC 213 Level     arm-smmu-context-fault\n131:          0   PDC-GIC 214 Level     arm-smmu-context-fault\n132:          0   PDC-GIC 215 Level     arm-smmu-context-fault\n133:          0   PDC-GIC 216 Level     arm-smmu-context-fault\n134:          0   PDC-GIC 217 Level     arm-smmu-context-fault\n135:          0   PDC-GIC 218 Level     arm-smmu-context-fault\n136:          0   PDC-GIC 219 Level     arm-smmu-context-fault\n137:          0   PDC-GIC 220 Level     arm-smmu-context-fault\n138:          0   PDC-GIC 221 Level     arm-smmu-context-fault\n139:          0   PDC-GIC 222 Level     arm-smmu-context-fault\n140:          0   PDC-GIC 223 Level     arm-smmu-context-fault\n141:          0   PDC-GIC 224 Level     arm-smmu-context-fault\n142:          0   PDC-GIC 347 Level     arm-smmu-context-fault\n143:          0   PDC-GIC 348 Level     arm-smmu-context-fault\n188:          0  pmic_arb 8388807 Edge      pon_kpdpwr_status\n189:          0  pmic_arb 8454343 Edge      pon_resin_status\n191:          0  pmic_arb 8716487 Edge      pon_kpdpwr_resin_bark\n192:        447  pmic_arb 51380437 Edge      pm-adc5\n193:          0  pmic_arb 55574742 Edge      thr-int-en\n194:          0  pmic_arb 24117455 Edge      sig-tx\n195:          0  pmic_arb 24182991 Edge      sig-rx\n196:          0  pmic_arb 24248527 Edge      msg-tx\n197:          0  pmic_arb 24314063 Edge      msg-rx\n198:          0  pmic_arb 24379599 Edge      msg-tx-failed\n199:          0  pmic_arb 24445135 Edge      msg-tx-discarded\n200:          0  pmic_arb 24510671 Edge      msg-rx-discarded\n202:          0  pmic_arb 30408915 Edge      bcl-lvl0\n203:          0  pmic_arb 30474451 Edge      bcl-lvl1\n204:          0  pmic_arb 30539987 Edge      bcl-lvl2\n205:          0  pmic_arb 37748948 Edge      qcom,temp-alarm\n208:          0  pmic_arb 203423971 Level     i2c_pmic_stat_irq\n212:          0  pmic_arb 1111490794 Edge      qcom,temp-alarm\n213:          0  pmic_arb 1137705197 Edge      bcl-lvl0\n214:          0  pmic_arb 1137770733 Edge      bcl-lvl1\n215:          0  pmic_arb 1137836269 Edge      bcl-lvl2\n216:          5  pmic_arb 1125122283 Edge      pm-adc5\n217:          0  pmic_arb 1129316588 Edge      thr-int-en\n219:          0  pmic_arb 1276117232 Edge      volume_up\n230:          0  pmic_arb 1563427082 Edge      qpnp_flash_led_fault_irq\n231:          0  pmic_arb 1563623690 Edge      qpnp_flash_led_all_ramp_down_done_irq\n232:          0  pmic_arb 1563689226 Edge      qpnp_flash_led_all_ramp_up_done_irq\n244:          6  msmgpio-dc   9 Edge      goodix_ts\n246:          0  msmgpio-dc  10 Edge      TE_GPIO\n268:          2  msmgpio-dc  37 Level     nq-nci\n296:          0  msmgpio-dc  56 Edge      tfa98xx\n346:          0  msmgpio-dc  93 Edge      akm09970_irq\n374:          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n375:          0   PDC-GIC 162 Edge      pwr_event_irq\n376:          0   PDC-GIC 518 Level     ss_phy_irq\n377:          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n378:          0   PDC-GIC 332 Level     kgsl-3d0\n379:          0   PDC-GIC 336 Level     HFI\n380:          0   PDC-GIC 337 Level     GMU\n381:          0   PDC-GIC 615 Edge      error_irq\n382:          0   PDC-GIC 617 Edge      wdg_bite_irq\n383:          0   PDC-GIC 619 Level     ipc_irq\n384:          0   PDC-GIC  64 Level     limits_sensor-00\n385:          0   PDC-GIC  65 Level     limits_sensor-01\n386:          0     smp2p   2 Edge      adsp\n387:          0     smp2p   0 Edge      adsp\n388:          0     smp2p   1 Edge      error_ready_interrupt\n389:          0     smp2p   3 Edge      adsp\n390:          0     smp2p   2 Edge      cdsp\n391:          0     smp2p   0 Edge      cdsp\n392:          0     smp2p   1 Edge      error_ready_interrupt\n393:          0     smp2p   3 Edge      cdsp\n394:          0     smp2p   2 Edge      modem\n395:          0     smp2p   0 Edge      modem\n396:          0     smp2p   1 Edge      error_ready_interrupt\n397:          0     smp2p   3 Edge      modem\n398:          0     smp2p   7 Edge      modem\n399:          0     smp2p   0 Edge      smp2p_sleepstate\n400:          0   PDC-GIC 165 Edge      dwc3\n402:          0  pmic_arb 101777626 Edge      qpnp_rtc_alarm\n403:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n405:          0  pmic_arb 75563224 Edge      qg-vbat-low\n406:          0  pmic_arb 75628760 Edge      qg-vbat-empty\n407:         26  pmic_arb 75694296 Edge      qg-fifo-done\n408:          0  pmic_arb 75759832 Edge      qg-good-ocv\n409:          0  pmic_arb 16777416 Edge      chgr-error\n410:          0  pmic_arb 16842952 Edge      chg-state-change\n417:          0  pmic_arb 17825993 Edge      otg-fail\n421:          0  pmic_arb 18088137 Edge      high-duty-cycle\n422:          0  pmic_arb 18153673 Edge      input-current-limiting\n424:          0  pmic_arb 18284745 Edge      switcher-power-ok\n425:          0  pmic_arb 18874570 Edge      bat-temp\n426:          0  pmic_arb 19005642 Edge      bat-ov\n427:          0  pmic_arb 19071178 Edge      bat-low\n428:          0  pmic_arb 19136714 Edge      bat-therm-or-id-missing\n429:          0  pmic_arb 19202250 Edge      bat-terminal-missing\n432:          0  pmic_arb 19923147 Edge      usbin-collapse\n433:          0  pmic_arb 19988683 Edge      usbin-vashdn\n434:          0  pmic_arb 20054219 Edge      usbin-uv\n435:          0  pmic_arb 20119755 Edge      usbin-ov\n436:          0  pmic_arb 20185291 Edge      usbin-plugin\n438:          0  pmic_arb 20316363 Edge      usbin-src-change\n439:          0  pmic_arb 20381899 Edge      usbin-icl-change\n441:          0  pmic_arb 21102796 Edge      dcin-uv\n442:          0  pmic_arb 21168332 Edge      dcin-ov\n443:          0  pmic_arb 21233868 Edge      dcin-plugin\n445:          0  pmic_arb 21364940 Edge      dcin-pon\n446:          0  pmic_arb 21430476 Edge      dcin-en\n447:          0  pmic_arb 22020301 Edge      typec-or-rid-detect-change\n449:          0  pmic_arb 22151373 Edge      typec-cc-state-change\n450:          0  pmic_arb 22216909 Edge      typec-vconn-oc\n452:          0  pmic_arb 22347981 Edge      typec-attach-detach\n453:          0  pmic_arb 22413517 Edge      typec-legacy-cable-detect\n455:          0  pmic_arb 23068878 Edge      wdog-snarl\n456:          0  pmic_arb 23134414 Edge      wdog-bark\n458:          0  pmic_arb 23265486 Edge      aicl-done\n459:          0  pmic_arb 23331022 Edge      smb-en\n461:          0  pmic_arb 23462094 Edge      temp-change\n463:          0  pmic_arb 185663708 Edge      sdam-sts\n464:          0  i2c_pmic_irq_chip 4097 Edge      switcher-off-window\n465:          0  i2c_pmic_irq_chip 4098 Edge      switcher-off-fault\n466:          0  i2c_pmic_irq_chip 4100 Edge      tsd-fault\n467:          0  i2c_pmic_irq_chip 4104 Edge      irev-fault\n468:          0  i2c_pmic_irq_chip 4112 Edge      vph-ov-hard\n469:          0  i2c_pmic_irq_chip 4128 Edge      vph-ov-soft\n470:          0  i2c_pmic_irq_chip 4160 Edge      ilim\n471:          0  i2c_pmic_irq_chip 4224 Edge      temp-alarm\n472:          0       sde  12 Edge      dp_display_isr\n473:          0       sde   4 Edge      dsi_ctrl\nIPI0:       179       Rescheduling interrupts\nIPI1:         9       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:         0       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm7150/third/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  4:        526          1          1          1          1          1          5          1   PDC-GIC  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   PDC-GIC  38 Level     arch_mem_timer\n  8:          0          0          0          0          0          0          0          0   PDC-GIC  21 Level     arm-pmu\n  9:          0          0          0          0          0          0          0          0   PDC-GIC  82 Level     arm_dsu_0\n 26:          0          0          0          0          0          0          0          0   PDC-GIC 323 Level     ngd_slim_irq\n 28:          0          0          0          0          0          0          0          0   PDC-GIC  32 Edge      apps_wdog_bark\n 30:          0          0          0          0          0          0          0          0   PDC-GIC 524 Level     eud_irq\n 31:          0          0          0          0          0          0          0          0   PDC-GIC  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 32:          0          0          0          0          0          0          0          0   PDC-GIC  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 33:          0          0          0          0          0          0          0          0   PDC-GIC 538 Level     tsens-upper-lower\n 34:          0          0          0          0          0          0          0          0   PDC-GIC 540 Level     tsens-critical\n 35:          0          0          0          0          0          0          0          0   PDC-GIC 539 Level     tsens-upper-lower\n 36:          0          0          0          0          0          0          0          0   PDC-GIC 541 Level     tsens-critical\n 37:        213          0          0          0          0          0          0          0   PDC-GIC  37 Level     apps_rsc\n 38:          0          0          0          0          0          0          0          0   PDC-GIC 161 Level     display_rsc\n 39:          0          0          0          0          0          0          0          0   PDC-GIC 620 Edge      qcom,qmp-npu-low\n 40:          0          0          0          0          0          0          0          0   PDC-GIC 621 Edge      qcom,qmp-npu-high\n 41:          6          0          0          0          0          0          0          0   PDC-GIC 421 Edge      qcom,qmp-aop\n 42:          0          0          0          0          0          0          0          0   PDC-GIC 483 Edge      smp2p\n 43:          0          0          0          0          0          0          0          0   PDC-GIC 204 Edge      smp2p\n 44:          0          0          0          0          0          0          0          0   PDC-GIC 608 Edge      smp2p\n 47:        381          0          0          0          0          0          0          0   PDC-GIC 297 Edge      1d84000.ufshc\n 48:          0          0          0          0          0          0          0          0   PDC-GIC 194 Edge      adsp\n 49:          0          0          0          0          0          0          0          0   PDC-GIC 304 Level     sps\n 51:          0          0          0          0          0          0          0          0   PDC-GIC 610 Edge      cdsp\n 52:          0          0          0          0          0          0          0          0   PDC-GIC 298 Edge      modem\n 69:          0          0          0          0          0          0          0          0   PDC-GIC 397 Level     arm-smmu-context-fault\n 70:          5          0          0          0          0          0          0          0   PDC-GIC 635 Level     i2c_geni\n 71:          3          0          0          0          0          0          0          0   PDC-GIC 637 Level     i2c_geni\n 72:          0          0          0          0          0          0          0          0   PDC-GIC 636 Level     msm_serial_geni0\n 74:        214          0          0          0          0          0          0          0   PDC-GIC 386 Level     i2c_geni\n 75:        136          0          0          0          0          0          0          0   PDC-GIC 388 Level     i2c_geni\n 76:          0          0          0          0          0          0          0          0   PDC-GIC 206 Level     msm_vidc\n 77:          0          0          0          0          0          0          0          0   PDC-GIC 115 Edge      msm_drm\n 78:          0          0          0          0          0          0          0          0   PDC-GIC 509 Edge      csiphy\n 79:          0          0          0          0          0          0          0          0   PDC-GIC 510 Edge      csiphy\n 80:          0          0          0          0          0          0          0          0   PDC-GIC 511 Edge      csiphy\n 81:          0          0          0          0          0          0          0          0   PDC-GIC 639 Edge      csiphy\n 82:          0          0          0          0          0          0          0          0   PDC-GIC 492 Edge      cci\n 83:          0          0          0          0          0          0          0          0   PDC-GIC 493 Edge      cci\n 84:          1          0          0          0          0          0          0          0   PDC-GIC 500 Edge      cpas-cdm\n 85:          0          0          0          0          0          0          0          0   PDC-GIC 496 Edge      csid\n 86:          2          0          0          0          0          0          0          0   PDC-GIC 497 Edge      ife\n 87:          0          0          0          0          0          0          0          0   PDC-GIC 498 Edge      csid\n 88:          2          0          0          0          0          0          0          0   PDC-GIC 499 Edge      ife\n 89:          0          0          0          0          0          0          0          0   PDC-GIC 470 Edge      csid-lite\n 90:          2          0          0          0          0          0          0          0   PDC-GIC 466 Edge      ife-lite\n 91:          0          0          0          0          0          0          0          0   PDC-GIC 495 Edge      a5\n 92:          0          0          0          0          0          0          0          0   PDC-GIC 506 Edge      jpeg\n 93:          0          0          0          0          0          0          0          0   PDC-GIC 507 Edge      jpegdma\n 94:          2          0          0          0          0          0          0          0   PDC-GIC 494 Edge      fd\n 95:          1          0          0          0          0          0          0          0   PDC-GIC 508 Edge      lrme\n 96:          0          0          0          0          0          0          0          0   PDC-GIC 491 Edge      cpas_camnoc\n 97:          0          0          0          0          0          0          0          0   PDC-GIC 261 Level     arm-smmu global fault\n 98:          0          0          0          0          0          0          0          0   PDC-GIC 263 Level     arm-smmu global fault\n 99:          0          0          0          0          0          0          0          0   PDC-GIC 396 Level     arm-smmu-context-fault\n100:          0          0          0          0          0          0          0          0   PDC-GIC 398 Level     arm-smmu-context-fault\n101:          0          0          0          0          0          0          0          0   PDC-GIC 399 Level     arm-smmu-context-fault\n106:          0          0          0          0          0          0          0          0   PDC-GIC  97 Level     arm-smmu global fault\n108:          0          0          0          0          0          0          0          0   PDC-GIC 129 Level     arm-smmu-context-fault\n110:          0          0          0          0          0          0          0          0   PDC-GIC 131 Level     arm-smmu-context-fault\n111:          0          0          0          0          0          0          0          0   PDC-GIC 132 Level     arm-smmu-context-fault\n112:          0          0          0          0          0          0          0          0   PDC-GIC 133 Level     arm-smmu-context-fault\n113:          0          0          0          0          0          0          0          0   PDC-GIC 134 Level     arm-smmu-context-fault\n114:          0          0          0          0          0          0          0          0   PDC-GIC 135 Level     arm-smmu-context-fault\n115:          0          0          0          0          0          0          0          0   PDC-GIC 136 Level     arm-smmu-context-fault\n116:          0          0          0          0          0          0          0          0   PDC-GIC 137 Level     arm-smmu-context-fault\n117:          0          0          0          0          0          0          0          0   PDC-GIC 138 Level     arm-smmu-context-fault\n118:          0          0          0          0          0          0          0          0   PDC-GIC 139 Level     arm-smmu-context-fault\n119:          0          0          0          0          0          0          0          0   PDC-GIC 140 Level     arm-smmu-context-fault\n120:          0          0          0          0          0          0          0          0   PDC-GIC 141 Level     arm-smmu-context-fault\n121:          0          0          0          0          0          0          0          0   PDC-GIC 142 Level     arm-smmu-context-fault\n122:          0          0          0          0          0          0          0          0   PDC-GIC 143 Level     arm-smmu-context-fault\n123:          0          0          0          0          0          0          0          0   PDC-GIC 144 Level     arm-smmu-context-fault\n124:          0          0          0          0          0          0          0          0   PDC-GIC 145 Level     arm-smmu-context-fault\n125:          0          0          0          0          0          0          0          0   PDC-GIC 146 Level     arm-smmu-context-fault\n126:          0          0          0          0          0          0          0          0   PDC-GIC 147 Level     arm-smmu-context-fault\n127:          0          0          0          0          0          0          0          0   PDC-GIC 148 Level     arm-smmu-context-fault\n128:          0          0          0          0          0          0          0          0   PDC-GIC 149 Level     arm-smmu-context-fault\n129:          0          0          0          0          0          0          0          0   PDC-GIC 150 Level     arm-smmu-context-fault\n130:          0          0          0          0          0          0          0          0   PDC-GIC 213 Level     arm-smmu-context-fault\n131:          0          0          0          0          0          0          0          0   PDC-GIC 214 Level     arm-smmu-context-fault\n132:          0          0          0          0          0          0          0          0   PDC-GIC 215 Level     arm-smmu-context-fault\n133:          0          0          0          0          0          0          0          0   PDC-GIC 216 Level     arm-smmu-context-fault\n134:          0          0          0          0          0          0          0          0   PDC-GIC 217 Level     arm-smmu-context-fault\n135:          0          0          0          0          0          0          0          0   PDC-GIC 218 Level     arm-smmu-context-fault\n136:          0          0          0          0          0          0          0          0   PDC-GIC 219 Level     arm-smmu-context-fault\n137:          0          0          0          0          0          0          0          0   PDC-GIC 220 Level     arm-smmu-context-fault\n138:          0          0          0          0          0          0          0          0   PDC-GIC 221 Level     arm-smmu-context-fault\n139:          0          0          0          0          0          0          0          0   PDC-GIC 222 Level     arm-smmu-context-fault\n140:          0          0          0          0          0          0          0          0   PDC-GIC 223 Level     arm-smmu-context-fault\n141:          0          0          0          0          0          0          0          0   PDC-GIC 224 Level     arm-smmu-context-fault\n142:          0          0          0          0          0          0          0          0   PDC-GIC 347 Level     arm-smmu-context-fault\n143:          0          0          0          0          0          0          0          0   PDC-GIC 348 Level     arm-smmu-context-fault\n188:          0          0          0          0          0          0          0          0  pmic_arb 8388807 Edge      pon_kpdpwr_status\n189:          0          0          0          0          0          0          0          0  pmic_arb 8454343 Edge      pon_resin_status\n191:          0          0          0          0          0          0          0          0  pmic_arb 8716487 Edge      pon_kpdpwr_resin_bark\n192:         48          0          0          0          0          0          0          0  pmic_arb 51380437 Edge      pm-adc5\n193:          0          0          0          0          0          0          0          0  pmic_arb 55574742 Edge      thr-int-en\n194:          0          0          0          0          0          0          0          0  pmic_arb 24117455 Edge      sig-tx\n195:          0          0          0          0          0          0          0          0  pmic_arb 24182991 Edge      sig-rx\n196:          0          0          0          0          0          0          0          0  pmic_arb 24248527 Edge      msg-tx\n197:          0          0          0          0          0          0          0          0  pmic_arb 24314063 Edge      msg-rx\n198:          0          0          0          0          0          0          0          0  pmic_arb 24379599 Edge      msg-tx-failed\n199:          0          0          0          0          0          0          0          0  pmic_arb 24445135 Edge      msg-tx-discarded\n200:          0          0          0          0          0          0          0          0  pmic_arb 24510671 Edge      msg-rx-discarded\n202:          0          0          0          0          0          0          0          0  pmic_arb 30408915 Edge      bcl-lvl0\n203:          0          0          0          0          0          0          0          0  pmic_arb 30474451 Edge      bcl-lvl1\n204:          0          0          0          0          0          0          0          0  pmic_arb 30539987 Edge      bcl-lvl2\n205:          0          0          0          0          0          0          0          0  pmic_arb 37748948 Edge      qcom,temp-alarm\n208:          0          0          0          0          0          0          0          0  pmic_arb 203423971 Level     i2c_pmic_stat_irq\n212:          0          0          0          0          0          0          0          0  pmic_arb 1111490794 Edge      qcom,temp-alarm\n213:          0          0          0          0          0          0          0          0  pmic_arb 1137705197 Edge      bcl-lvl0\n214:          0          0          0          0          0          0          0          0  pmic_arb 1137770733 Edge      bcl-lvl1\n215:          0          0          0          0          0          0          0          0  pmic_arb 1137836269 Edge      bcl-lvl2\n216:          4          0          0          0          0          0          0          0  pmic_arb 1125122283 Edge      pm-adc5\n217:          0          0          0          0          0          0          0          0  pmic_arb 1129316588 Edge      thr-int-en\n219:          0          0          0          0          0          0          0          0  pmic_arb 1276117232 Edge      volume_up\n230:          0          0          0          0          0          0          0          0  pmic_arb 1563427082 Edge      qpnp_flash_led_fault_irq\n231:          0          0          0          0          0          0          0          0  pmic_arb 1563623690 Edge      qpnp_flash_led_all_ramp_down_done_irq\n232:          0          0          0          0          0          0          0          0  pmic_arb 1563689226 Edge      qpnp_flash_led_all_ramp_up_done_irq\n244:          6          0          0          0          0          0          0          0  msmgpio-dc   9 Edge      goodix_ts\n246:          0          0          0          0          0          0          0          0  msmgpio-dc  10 Edge      TE_GPIO\n268:          2          0          0          0          0          0          0          0  msmgpio-dc  37 Level     nq-nci\n296:          0          0          0          0          0          0          0          0  msmgpio-dc  56 Edge      tfa98xx\n346:          0          0          0          0          0          0          0          0  msmgpio-dc  93 Edge      akm09970_irq\n374:          0          0          0          0          0          0          0          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n375:          0          0          0          0          0          0          0          0   PDC-GIC 162 Edge      pwr_event_irq\n376:          0          0          0          0          0          0          0          0   PDC-GIC 518 Level     ss_phy_irq\n377:          0          0          0          0          0          0          0          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n378:          0          0          0          0          0          0          0          0   PDC-GIC 332 Level     kgsl-3d0\n379:          0          0          0          0          0          0          0          0   PDC-GIC 336 Level     HFI\n380:          0          0          0          0          0          0          0          0   PDC-GIC 337 Level     GMU\n381:          0          0          0          0          0          0          0          0   PDC-GIC 615 Edge      error_irq\n382:          0          0          0          0          0          0          0          0   PDC-GIC 617 Edge      wdg_bite_irq\n383:          0          0          0          0          0          0          0          0   PDC-GIC 619 Level     ipc_irq\n384:          0          0          0          0          0          0          0          0   PDC-GIC  64 Level     limits_sensor-00\n385:          0          0          0          0          0          0          0          0   PDC-GIC  65 Level     limits_sensor-01\n386:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n387:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n388:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n389:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n390:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n391:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n392:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n393:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n394:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n395:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n396:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n397:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n398:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n399:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n400:          0          0          0          0          0          0          0          0   PDC-GIC 165 Edge      dwc3\n402:          0          0          0          0          0          0          0          0  pmic_arb 101777626 Edge      qpnp_rtc_alarm\n403:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n405:          0          0          0          0          0          0          0          0  pmic_arb 75563224 Edge      qg-vbat-low\n406:          0          0          0          0          0          0          0          0  pmic_arb 75628760 Edge      qg-vbat-empty\n407:          0          0          0          0          0          0          0          0  pmic_arb 75694296 Edge      qg-fifo-done\n408:          0          0          0          0          0          0          0          0  pmic_arb 75759832 Edge      qg-good-ocv\n409:          0          0          0          0          0          0          0          0  pmic_arb 16777416 Edge      chgr-error\n410:          0          0          0          0          0          0          0          0  pmic_arb 16842952 Edge      chg-state-change\n417:          0          0          0          0          0          0          0          0  pmic_arb 17825993 Edge      otg-fail\n421:          0          0          0          0          0          0          0          0  pmic_arb 18088137 Edge      high-duty-cycle\n422:          0          0          0          0          0          0          0          0  pmic_arb 18153673 Edge      input-current-limiting\n424:          0          0          0          0          0          0          0          0  pmic_arb 18284745 Edge      switcher-power-ok\n425:          0          0          0          0          0          0          0          0  pmic_arb 18874570 Edge      bat-temp\n426:          0          0          0          0          0          0          0          0  pmic_arb 19005642 Edge      bat-ov\n427:          0          0          0          0          0          0          0          0  pmic_arb 19071178 Edge      bat-low\n428:          0          0          0          0          0          0          0          0  pmic_arb 19136714 Edge      bat-therm-or-id-missing\n429:          0          0          0          0          0          0          0          0  pmic_arb 19202250 Edge      bat-terminal-missing\n432:          0          0          0          0          0          0          0          0  pmic_arb 19923147 Edge      usbin-collapse\n433:          0          0          0          0          0          0          0          0  pmic_arb 19988683 Edge      usbin-vashdn\n434:          0          0          0          0          0          0          0          0  pmic_arb 20054219 Edge      usbin-uv\n435:          0          0          0          0          0          0          0          0  pmic_arb 20119755 Edge      usbin-ov\n436:          0          0          0          0          0          0          0          0  pmic_arb 20185291 Edge      usbin-plugin\n438:          0          0          0          0          0          0          0          0  pmic_arb 20316363 Edge      usbin-src-change\n439:          0          0          0          0          0          0          0          0  pmic_arb 20381899 Edge      usbin-icl-change\n441:          0          0          0          0          0          0          0          0  pmic_arb 21102796 Edge      dcin-uv\n442:          0          0          0          0          0          0          0          0  pmic_arb 21168332 Edge      dcin-ov\n443:          0          0          0          0          0          0          0          0  pmic_arb 21233868 Edge      dcin-plugin\n445:          0          0          0          0          0          0          0          0  pmic_arb 21364940 Edge      dcin-pon\n446:          0          0          0          0          0          0          0          0  pmic_arb 21430476 Edge      dcin-en\n447:          0          0          0          0          0          0          0          0  pmic_arb 22020301 Edge      typec-or-rid-detect-change\n449:          0          0          0          0          0          0          0          0  pmic_arb 22151373 Edge      typec-cc-state-change\n450:          0          0          0          0          0          0          0          0  pmic_arb 22216909 Edge      typec-vconn-oc\n452:          0          0          0          0          0          0          0          0  pmic_arb 22347981 Edge      typec-attach-detach\n453:          0          0          0          0          0          0          0          0  pmic_arb 22413517 Edge      typec-legacy-cable-detect\n455:          0          0          0          0          0          0          0          0  pmic_arb 23068878 Edge      wdog-snarl\n456:          0          0          0          0          0          0          0          0  pmic_arb 23134414 Edge      wdog-bark\n458:          0          0          0          0          0          0          0          0  pmic_arb 23265486 Edge      aicl-done\n459:          0          0          0          0          0          0          0          0  pmic_arb 23331022 Edge      smb-en\n461:          0          0          0          0          0          0          0          0  pmic_arb 23462094 Edge      temp-change\n463:          0          0          0          0          0          0          0          0  pmic_arb 185663708 Edge      sdam-sts\n464:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4097 Edge      switcher-off-window\n465:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4098 Edge      switcher-off-fault\n466:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4100 Edge      tsd-fault\n467:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4104 Edge      irev-fault\n468:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4112 Edge      vph-ov-hard\n469:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4128 Edge      vph-ov-soft\n470:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4160 Edge      ilim\n471:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 4224 Edge      temp-alarm\n472:          0          0          0          0          0          0          0          0       sde  12 Edge      dp_display_isr\n473:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\nIPI0:        90         18         18         18         18         18         17         14       Rescheduling interrupts\nIPI1:         0       8011       8011       8011       8011       8011       8011       8011       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         0          1          1          1          1          1          3          1       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm7150/third/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    5 root      0:00 [kworker/0:0H]\n    6 root      0:00 [kworker/u16:0]\n    7 root      0:00 [mm_percpu_wq]\n    8 root      0:00 [ksoftirqd/0]\n    9 root      0:00 [rcu_preempt]\n   10 root      0:00 [rcu_sched]\n   11 root      0:00 [rcu_bh]\n   12 root      0:00 [rcuop/0]\n   13 root      0:00 [rcuos/0]\n   14 root      0:00 [rcuob/0]\n   15 root      0:00 [migration/0]\n   16 root      0:00 [cpuhp/0]\n   17 root      0:00 [cpuhp/1]\n   18 root      0:00 [migration/1]\n   19 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0]\n   21 root      0:00 [kworker/1:0H]\n   22 root      0:00 [rcuop/1]\n   23 root      0:00 [rcuos/1]\n   24 root      0:00 [rcuob/1]\n   25 root      0:00 [cpuhp/2]\n   26 root      0:00 [migration/2]\n   27 root      0:00 [ksoftirqd/2]\n   28 root      0:00 [kworker/2:0]\n   29 root      0:00 [kworker/2:0H]\n   30 root      0:00 [rcuop/2]\n   31 root      0:00 [rcuos/2]\n   32 root      0:00 [rcuob/2]\n   33 root      0:00 [cpuhp/3]\n   34 root      0:00 [migration/3]\n   35 root      0:00 [ksoftirqd/3]\n   36 root      0:00 [kworker/3:0]\n   37 root      0:00 [kworker/3:0H]\n   38 root      0:00 [rcuop/3]\n   39 root      0:00 [rcuos/3]\n   40 root      0:00 [rcuob/3]\n   41 root      0:00 [cpuhp/4]\n   42 root      0:00 [migration/4]\n   43 root      0:00 [ksoftirqd/4]\n   44 root      0:00 [kworker/4:0]\n   45 root      0:00 [kworker/4:0H]\n   46 root      0:00 [rcuop/4]\n   47 root      0:00 [rcuos/4]\n   48 root      0:00 [rcuob/4]\n   49 root      0:00 [cpuhp/5]\n   50 root      0:00 [migration/5]\n   51 root      0:00 [ksoftirqd/5]\n   52 root      0:00 [kworker/5:0]\n   53 root      0:00 [kworker/5:0H]\n   54 root      0:00 [rcuop/5]\n   55 root      0:00 [rcuos/5]\n   56 root      0:00 [rcuob/5]\n   57 root      0:00 [cpuhp/6]\n   58 root      0:00 [migration/6]\n   59 root      0:00 [ksoftirqd/6]\n   60 root      0:00 [kworker/6:0]\n   61 root      0:00 [kworker/6:0H]\n   62 root      0:00 [rcuop/6]\n   63 root      0:00 [rcuos/6]\n   64 root      0:00 [rcuob/6]\n   65 root      0:00 [cpuhp/7]\n   66 root      0:00 [migration/7]\n   67 root      0:00 [ksoftirqd/7]\n   68 root      0:00 [kworker/7:0]\n   69 root      0:00 [kworker/7:0H]\n   70 root      0:00 [rcuop/7]\n   71 root      0:00 [rcuos/7]\n   72 root      0:00 [rcuob/7]\n   73 root      0:00 [netns]\n   75 root      0:00 [kworker/u16:1]\n   76 root      0:00 [kworker/u17:0]\n   77 root      0:00 [ipa_usb_wq]\n   78 root      0:00 [msm_watchdog]\n   79 root      0:00 [spi_wdsp]\n   80 root      0:00 [qmp_npu_qmp_low]\n   81 root      0:00 [qmp_npu_qmp_hig]\n   82 root      0:00 [qmp_aop]\n   83 root      0:00 [oom_reaper]\n   84 root      0:00 [writeback]\n   85 root      0:00 [kcompactd0]\n   86 root      0:00 [crypto]\n   87 root      0:00 [kblockd]\n   88 root      0:00 [blk_crypto_wq]\n   89 root      0:00 [irq/97-arm-smmu]\n   90 root      0:00 [irq/98-arm-smmu]\n   91 root      0:00 [irq/106-arm-smm]\n   92 root      0:00 [irq/33-tsens-up]\n   93 root      0:00 [irq/34-tsens-cr]\n   94 root      0:00 [irq/35-tsens-up]\n   95 root      0:00 [irq/36-tsens-cr]\n   96 root      0:00 [edac-poller]\n   97 root      0:00 [system]\n   98 root      0:00 [ipa_power_mgmt]\n   99 root      0:00 [transport_power]\n  100 root      0:00 [ipa_pm_activate]\n  101 root      0:00 [devfreq_wq]\n  102 root      0:00 [cfg80211]\n  139 root      0:00 [kauditd]\n  140 root      0:00 [kswapd0]\n  141 root      0:00 [ecryptfs-kthrea]\n  180 root      0:00 [irq/111-arm-smm]\n  181 root      0:00 [irq/112-arm-smm]\n  182 root      0:00 [irq/42-smp2p]\n  183 root      0:00 [irq/43-smp2p]\n  184 root      0:00 [irq/44-smp2p]\n  185 root      0:00 [cdsprm-wq]\n  186 root      0:00 [mem_share_svc]\n  187 root      0:00 [irq/113-arm-smm]\n  188 root      0:00 [cdsprm-wq-delay]\n  190 root      0:00 [irq/114-arm-smm]\n  191 root      0:00 [hwrng]\n  193 root      0:00 [diag_real_time_]\n  194 root      0:00 [diag_wq]\n  196 root      0:00 [DIAG_USB_diag]\n  197 root      0:00 [diag_cntl_wq]\n  198 root      0:00 [diag_dci_wq]\n  199 root      0:00 [MODEM_CNTL]\n  200 root      0:00 [MODEM_DATA]\n  201 root      0:00 [MODEM_CMD]\n  202 root      0:00 [MODEM_DCI]\n  203 root      0:00 [MODEM_DCI_CMD]\n  204 root      0:00 [LPASS_CNTL]\n  205 root      0:00 [LPASS_DATA]\n  206 root      0:00 [LPASS_CMD]\n  207 root      0:00 [LPASS_DCI]\n  208 root      0:00 [LPASS_DCI_CMD]\n  209 root      0:00 [WCNSS_CNTL]\n  210 root      0:00 [WCNSS_DATA]\n  211 root      0:00 [WCNSS_CMD]\n  212 root      0:00 [WCNSS_DCI]\n  213 root      0:00 [WCNSS_DCI_CMD]\n  214 root      0:00 [SENSORS_CNTL]\n  215 root      0:00 [SENSORS_DATA]\n  216 root      0:00 [SENSORS_CMD]\n  217 root      0:00 [SENSORS_DCI]\n  218 root      0:00 [SENSORS_DCI_CMD]\n  219 root      0:00 [DIAG_CTRL]\n  220 root      0:00 [DIAG_DATA]\n  221 root      0:00 [DIAG_CMD]\n  222 root      0:00 [DIAG_DCI_DATA]\n  223 root      0:00 [DIAG_DCI_CMD]\n  224 root      0:00 [CDSP_CNTL]\n  225 root      0:00 [CDSP_DATA]\n  226 root      0:00 [CDSP_CMD]\n  227 root      0:00 [CDSP_DCI]\n  228 root      0:00 [CDSP_DCI_CMD]\n  229 root      0:00 [NPU_CNTL]\n  230 root      0:00 [NPU_DATA]\n  231 root      0:00 [NPU_CMD]\n  232 root      0:00 [NPU_DCI]\n  233 root      0:00 [NPU_DCI_CMD]\n  234 root      0:00 [DIAG_RPMSG_APPS]\n  235 root      0:00 [DIAG_RPMSG_APPS]\n  236 root      0:00 [DIAG_RPMSG_DIAG]\n  237 root      0:00 [DIAG_RPMSG_DIAG]\n  238 root      0:00 [DIAG_RPMSG_DIAG]\n  239 root      0:00 [DIAG_RPMSG_DIAG]\n  240 root      0:00 [DIAG_RPMSG_DIAG]\n  241 root      0:00 [DIAG_RPMSG_DIAG]\n  242 root      0:00 [DIAG_RPMSG_DIAG]\n  243 root      0:00 [DIAG_RPMSG_DIAG]\n  244 root      0:00 [kworker/u16:2]\n  245 root      0:00 [kgsl-workqueue]\n  246 root      0:00 [kgsl-mementry]\n  247 root      0:00 [kworker/u16:3]\n  248 root      0:00 [kgsl_worker_thr]\n  249 root      0:00 [kworker/u16:4]\n  250 root      0:00 [qseecom-unreg-l]\n  251 root      0:00 [kworker/u16:5]\n  252 root      0:00 [qseecom-unload-]\n  253 root      0:00 [kworker/u16:6]\n  254 root      0:00 [irq/115-arm-smm]\n  255 root      0:00 [qcrypto_seq_res]\n  256 root      0:00 [kworker/u16:7]\n  257 root      0:00 [irq/116-arm-smm]\n  277 root      0:00 [kworker/u16:9]\n  280 root      0:00 [bond0]\n  281 root      0:00 [irq/99-arm-smmu]\n  282 root      0:00 [irq/69-arm-smmu]\n  283 root      0:00 [irq/100-arm-smm]\n  284 root      0:00 [irq/101-arm-smm]\n  285 root      0:00 [kgsl-events]\n  286 root      0:00 [kgsl_devfreq_wq]\n  287 root      0:00 [scsi_eh_0]\n  288 root      0:00 [scsi_tmf_0]\n  289 root      0:00 [ufs_pm_qos_0]\n  290 root      0:00 [ufs_clk_gating_]\n  291 root      0:00 [ufs_clkscaling_]\n  297 root      0:00 [uether]\n  298 root      0:00 [k_ipa_usb]\n  302 root      0:00 [irq/108-arm-smm]\n  303 root      0:00 [msm_vidc_worker]\n  304 root      0:00 [pm_workerq_venu]\n  305 root      0:00 [irq/117-arm-smm]\n  306 root      0:00 [irq/118-arm-smm]\n  307 root      0:00 [irq/119-arm-smm]\n  308 root      0:00 [irq/120-arm-smm]\n  311 root      0:00 [irq/121-arm-smm]\n  315 root      0:00 [kworker/u16:14]\n  317 root      0:00 [cam-cpas]\n  318 root      0:00 [akm09970_poll_w]\n  319 root      0:00 [irq/208-i2c_pmi]\n  320 root      0:00 [qcom,cam_virtua]\n  321 root      0:00 [irq/122-arm-smm]\n  322 root      0:00 [qcom,cam170-cpa]\n  323 root      0:00 [irq/123-arm-smm]\n  324 root      0:00 [cam_cci_wq]\n  325 root      0:00 [cam_cci_wq]\n  326 root      0:00 [cam_cci_wq]\n  327 root      0:00 [cam_cci_wq]\n  328 root      0:00 [irq/124-arm-smm]\n  329 root      0:00 [irq/125-arm-smm]\n  330 root      0:00 [irq/126-arm-smm]\n  331 root      0:00 [irq/127-arm-smm]\n  332 root      0:00 [irq/205-qcom,te]\n  333 root      0:00 [irq/212-qcom,te]\n  334 root      0:00 [irq/384-limits_]\n  335 root      0:00 [kworker/0:1H]\n  336 root      0:00 [irq/385-limits_]\n  337 root      0:00 [kworker/6:1H]\n  338 root      0:00 [irq/202-bcl-lvl]\n  339 root      0:00 [irq/203-bcl-lvl]\n  340 root      0:00 [irq/204-bcl-lvl]\n  341 root      0:00 [irq/213-bcl-lvl]\n  342 root      0:00 [irq/214-bcl-lvl]\n  343 root      0:00 [irq/215-bcl-lvl]\n  344 root      0:00 [dm_bufio_cache]\n  345 root      0:00 [irq/32-KRYO L3-]\n  346 root      0:00 [irq/128-arm-smm]\n  347 root      0:00 [uaudio_svc]\n  348 root      0:00 [apr_driver]\n  349 root      0:00 [irq/244-goodix_]\n  351 root      0:00 [irq/296-tfa98xx]\n  352 root      0:00 [ipv6_addrconf]\n  361 root      0:00 [irq/405-qg-vbat]\n  362 root      0:00 [irq/406-qg-vbat]\n  363 root      0:00 [irq/407-qg-fifo]\n  364 root      0:00 [irq/408-qg-good]\n  365 root      0:00 [irq/409-chgr-er]\n  366 root      0:00 [kworker/u17:1]\n  368 root      0:00 [irq/410-chg-sta]\n  369 root      0:00 [irq/417-otg-fai]\n  370 root      0:00 [irq/421-high-du]\n  371 root      0:00 [irq/422-input-c]\n  373 root      0:00 [irq/424-switche]\n  374 root      0:00 [irq/425-bat-tem]\n  375 root      0:00 [irq/426-bat-ov]\n  376 root      0:00 [irq/427-bat-low]\n  377 root      0:00 [irq/428-bat-the]\n  378 root      0:00 [irq/429-bat-ter]\n  379 root      0:00 [irq/432-usbin-c]\n  381 root      0:00 [irq/433-usbin-v]\n  382 root      0:00 [irq/434-usbin-u]\n  383 root      0:00 [irq/435-usbin-o]\n  384 root      0:00 [irq/436-usbin-p]\n  385 root      0:00 [irq/438-usbin-s]\n  386 root      0:00 [irq/439-usbin-i]\n  388 root      0:00 [irq/441-dcin-uv]\n  389 root      0:00 [irq/442-dcin-ov]\n  390 root      0:00 [irq/443-dcin-pl]\n  391 root      0:00 [irq/445-dcin-po]\n  392 root      0:00 [irq/446-dcin-en]\n  393 root      0:00 [irq/447-typec-o]\n  394 root      0:00 [irq/449-typec-c]\n  395 root      0:00 [irq/450-typec-v]\n  396 root      0:00 [irq/452-typec-a]\n  397 root      0:00 [irq/453-typec-l]\n  398 root      0:00 [irq/455-wdog-sn]\n  399 root      0:00 [irq/456-wdog-ba]\n  400 root      0:00 [irq/458-aicl-do]\n  401 root      0:00 [irq/459-smb-en]\n  402 root      0:00 [irq/461-temp-ch]\n  403 root      0:00 [irq/463-sdam-st]\n  404 root      0:00 [irq/193-thr-int]\n  405 root      0:00 [irq/217-thr-int]\n  412 root      0:00 [irq/194-sig-tx]\n  413 root      0:00 [irq/195-sig-rx]\n  414 root      0:00 [irq/375-pwr_eve]\n  415 root      0:00 [irq/374-dp_hs_p]\n  416 root      0:00 [irq/377-dm_hs_p]\n  417 root      0:00 [irq/376-ss_phy_]\n  418 root      0:00 [irq/129-arm-smm]\n  419 root      0:00 [usb_bam_wq]\n  420 root      0:00 [rq_stats]\n  421 root      0:00 [irq/130-arm-smm]\n  422 root      0:00 [irq/131-arm-smm]\n  423 root      0:00 [irq/132-arm-smm]\n  424 root      0:00 [irq/133-arm-smm]\n  425 root      0:00 [irq/134-arm-smm]\n  426 root      0:00 [irq/135-arm-smm]\n  427 root      0:00 [irq/136-arm-smm]\n  428 root      0:00 [irq/137-arm-smm]\n  429 root      0:00 [irq/138-arm-smm]\n  430 root      0:00 [irq/139-arm-smm]\n  431 root      0:00 [irq/140-arm-smm]\n  432 root      0:00 [irq/141-arm-smm]\n  433 root      0:00 [irq/142-arm-smm]\n  434 root      0:00 [drm_dp]\n  435 root      0:00 [irq/110-arm-smm]\n  436 root      0:00 [irq/143-arm-smm]\n  437 root      0:00 [crtc_commit:111]\n  438 root      0:00 [crtc_event:111]\n  439 root      0:00 [crtc_commit:162]\n  440 root      0:00 [crtc_event:162]\n  441 root      0:00 [crtc_commit:170]\n  442 root      0:00 [crtc_event:170]\n  443 root      0:00 [crtc_commit:178]\n  444 root      0:00 [crtc_event:178]\n  445 root      0:00 [pp_event]\n  446 root      0:00 [rot_commitq_0_0]\n  447 root      0:00 [rot_commitq_0_1]\n  448 root      0:00 [rot_doneq_0_0]\n  449 root      0:00 [rot_doneq_0_1]\n  450 root      0:00 [rot_fenceq_0_0]\n  451 root      0:00 [rot_fenceq_0_1]\n  452 root      0:00 [rot_fenceq_0_2]\n  453 root      0:00 [rot_fenceq_0_3]\n  454 root      0:00 [rot_fenceq_0_4]\n  455 root      0:00 [rot_fenceq_0_5]\n  456 root      0:00 [rot_fenceq_0_6]\n  457 root      0:00 [rot_fenceq_0_7]\n  458 root      0:00 [rot_fenceq_0_8]\n  459 root      0:00 [rot_fenceq_0_9]\n  460 root      0:00 [rot_fenceq_0_10]\n  461 root      0:00 [rot_fenceq_0_11]\n  462 root      0:00 [rot_fenceq_0_12]\n  463 root      0:00 [rot_fenceq_0_13]\n  464 root      0:00 [rot_fenceq_0_14]\n  465 root      0:00 [rot_fenceq_0_15]\n  466 root      0:00 [sb-3]\n  467 root      0:00 [ngd_rx_thread3]\n  468 root      0:00 [ngd_notify_sl3]\n  469 root      0:00 [irq/232-qpnp_fl]\n  470 root      0:00 [irq/231-qpnp_fl]\n  471 root      0:00 [irq/230-qpnp_fl]\n  483 root      0:00 [kworker/1:1]\n  484 root      0:00 [kworker/2:1]\n  485 root      0:00 [kworker/3:1]\n  486 root      0:00 [kworker/4:1]\n  487 root      0:00 [kworker/5:1]\n  488 root      0:00 [kworker/6:1]\n  489 root      0:00 [kworker/7:1]\n  518 root      0:01 [kworker/0:1]\n  531 root      0:00 [kworker/0:2]\n  550 root      0:00 [kworker/0:0]\n  609 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm7150/third/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1113.804869,3.7126828966666667,43.082843865824756,11.60505841444638,25.85079620336504,269.36611823\r\n1,576000,2138.625719,3.712891873263889,59.34836393652964,8.325783125511247,36.03264647631311,140.286649425\r\n1,768000,2851.602601,3.7130242200520835,70.95251589504787,7.465090899450241,40.187052514269205,105.212490428\r\n1,1017600,3778.194779,3.71284864288522,86.07893245038926,6.835417676395402,43.8890517306621,79.408718043\r\n1,1248000,4633.705574,3.7129051073717947,101.25655365789152,6.556174548620755,45.758391234887426,64.748150236\r\n1,1324800,4918.839154,3.7128918734903387,106.91005293451441,6.521009992053751,46.0051434310894,60.995292894\r\n1,1497600,5560.189046,3.712733070245727,117.19796820803724,6.323961355061447,47.43862006049293,53.959650084\r\n1,1612800,5988.382538,3.7130348077876985,125.13353697160807,6.2694349532149305,47.851202259648886,50.101955918\r\n1,1708800,6344.640893,3.712921870903558,135.90725095733512,6.426884181146415,46.678918048665786,47.288751232\r\n1,1804800,6701.364845,3.713078925642731,155.19738569334834,6.9484750077189865,43.17494121612774,44.771856025\r\n6,300000,2338.397263,7.794657543333333,92.35509516171457,11.850232029686767,25.315959995420425,128.31162167\r\n6,652800,5087.332542,7.7930951930147065,151.14440286311591,8.91548655854636,33.649313251717125,58.986547895\r\n6,806400,6274.444189,7.780808766121032,176.1633853107249,8.42589246822007,35.604536983056654,47.829987221\r\n6,979200,7630.093087,7.792170227736928,220.33430226805808,8.666858038945385,34.61462027552779,39.335037485\r\n6,1094400,8525.391458,7.790014124634502,252.82461679512232,8.900846736786727,33.704658542216656,35.205617434\r\n6,1209600,9423.886411,7.790911384755291,280.6000390646667,8.93716242088656,33.56770145509342,31.850182383\r\n6,1324800,10301.490282,7.775883365036233,316.4146313081739,9.219951999322534,32.538130352744076,29.13882952\r\n6,1555200,12125.621438,7.796824484310699,411.15067601867344,10.179352290639539,29.471423272762266,24.758203949\r\n6,1708800,13301.999734,7.784409956694757,480.19967218434834,10.83784116170815,27.680789515530886,22.569447231\r\n6,1843200,14367.816092,7.7950391124131935,553.7145092549634,11.570328172009011,25.928391618637175,20.895837076\r\n6,1939200,15107.261557,7.790460786406765,616.7520573476667,12.256894448254082,24.476020517801974,19.873293169\r\n6,2169600,16903.313049,7.790981309457965,799.8091598771715,14.207625204931457,21.115421871902292,17.763769056\r\n6,2208000,17199.862401,7.789792754076086,813.1841332995073,14.19767422705959,21.130221415295253,17.459359628\r\n"
  },
  {
    "path": "results/sm7150/third/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1683.743683218956, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [698.662529136, 648.27891261, 639.4339459380001, 704.9470233920001, 661.650771816, 674.5600792350001, 670.33099776, 742.322314602, 663.3493290060001, 669.0016550079998, 650.65178412, 696.067622389, 656.01501375, 657.5821756360001, 670.70937984, 646.173768888, 637.926875985, 697.2032617770001, 648.0351564750001, 637.89682395, 713.1182485840001, 641.8088979119999, 649.2976567000001, 688.3909955999999, 648.00462825, 659.308766061, 667.545383936, 657.489321972, 663.9559120599998, 673.867369984, 637.776769923, 681.982848945, 638.466733824, 634.9536467749999, 674.2111754519999, 651.1413530949999, 652.6552205, 700.726515888, 634.07962809, 640.3956734199999, 692.694746139, 645.44519852, 646.59015625, 690.724921697, 633.7815047820001, 683.8955875649999, 662.179920624, 634.7445756889999, 666.604534188, 658.5415575, 628.878090414, 700.7924015960001, 657.953590292, 645.0506601999999, 701.459819253, 632.7577714380001, 645.2328027919999, 690.7574732420001, 641.4769808230001, 655.2751927439999, 660.947909272, 642.07386567, 652.7779694500001, 659.7117975909999, 636.424742896, 685.6082225800001, 639.4038342330001, 638.892861762, 701.1956321639999, 660.5441035619999, 653.8902004249999, 699.4646686680001, 640.1247516959999, 646.4684375, 694.3804126140001, 648.7786069600002, 633.7815047820001, 711.4883103, 658.7505753569999, 655.213422204, 663.442895734, 640.601997147, 666.416332012, 663.2245199629999, 633.7815047820001, 684.12103458, 666.604534188, 642.678580932, 693.726988136, 638.166829926, 636.18526384, 699.332965475, 638.8026810660001, 629.8141391620002, 705.412802359, 649.36711741, 653.828706916, 698.0384472599999, 647.5474876499999, 642.467016024, 669.572996362, 647.51711598, 679.916103945, 664.518381148, 634.9237136899999, 680.332425604, 646.9246875, 641.1752943890001, 701.7240063419999, 639.251334716, 648.47320054, 697.874241834, 637.476866025, 633.572695908, 701.6580019889999, 645.0202511199999, 648.0763447400001, 694.217098456, 659.674245412], \"power_mean\": 662.0184565880672, \"energy_millijoules\": 3310.092282940336, \"energy_joules\": 3.310092282940336}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 269.36611823, \"elapsed_ns\": 269366118230, \"power_samples\": [15.794569875999969, 22.991889113999946, 87.00929384999995, 25.262183004999997, 25.550903844999993, 89.35949524300008, 26.426661749999994, 21.92192775600006, 88.12999111599993, 25.101837469999964, 31.46953785000005, 89.39466524800002, 24.285336499000096, 21.22019787800002, 89.25416558699999, 32.63724742199997, 23.805193107999912, 68.43023171599998, 23.837103974, 30.015079319999927, 77.091451861, 18.635841717000062, 22.672387049999998, 81.89259914699994, 48.003940041999954, 22.544651897999984, 88.16492139800005, 50.29309020599999, 26.23399004999999, 43.44965491800008, 48.96601772600002, 25.679279149999957, 53.38152108999998, 38.87437458200009, 19.99167254800011, 51.02487544199994, 79.19816619599999, 23.869179328999962, 45.97334935799995, 89.18400593600006, 27.62303823000002, 12.739401289000057, 82.948515369, 27.526441710000086, 20.59656920000009, 67.98704908600007, 27.59094965999998, 21.92192775600006, 91.77477281699998, 23.741042398000104, 21.57106281699987, 82.91364293400011, 28.851490869999907, 27.59094965999998, 94.47205641400001, 26.169601049999983, 22.544651897999984, 79.12877856600016, 18.731190813000012, 32.507445768000025, 64.37066494500004, 27.49435313999993, 33.60532552000018, 70.74783934900006, 22.480620138000063, 31.34014088999993, 80.66651436000006, 50.193285773999946, 19.99167254800011, 29.75659396499998, 56.43198820200007, 22.544651897999984, 33.188446229999954, 62.77126109999995, 19.800618116000123, 35.87443439399988, 46.478319890999956, 17.498354135999875, 49.56377559800001, 84.24375089399996, 19.959775618000094, 18.381631884000058, 76.64286515099991, 24.973626959999933, 33.86523708699997, 84.31343557599996, 14.945612880999988, 31.210577610000087, 74.049391034, 21.156448947000058, 23.773117753000065, 76.53931786300006, 22.44876844199996, 23.517008380000107, 92.92921241600004, 27.49435313999993, 32.37764411399996, 76.64286515099991, 50.060156232000054, 31.145879130000026, 36.09266872500007, 51.35366631199997, 24.877386679999972, 51.953390420999995, 52.61385128200004, 31.210577610000087, 39.49619697999992, 53.94500365200008, 21.060743610999907, 48.368526650000035, 90.3737319459998, 33.897788632000015, 41.333703216, 79.05956885299997, 19.864248402000158, 29.141649080000093, 76.57389272800003, 19.864248402000158, 25.390558310000074, 96.64284855000005, 26.23399004999999, 11.792645809999954, 80.35444763800012, 31.145879130000026, 16.11110234399996, 74.08367005800005, 31.145879130000026, 27.46209916500004, 75.31370775800008, 21.124492542000098, 24.909356910000042, 53.811160545999996, 21.188405352000018, 20.965038274999984, 55.77484903800007, 21.028787205999947, 22.352884985999935, 59.52504598799999, 28.528853500000196, 22.416752562000056, 63.14368804999992, 58.88516625600005, 26.04115324999998, 32.37764411399996, 67.68014949399992, 26.20179554999993, 26.90875374999996, 47.53990524200003, 18.635841717000062, 29.46428645000003, 73.94620057000009, 20.90128934400002, 19.27144793399998, 82.84407689700004, 28.65794158999995, 24.909356910000042, 75.38256153600003, 29.918126559999905, 23.613069956000004, 86.51948055000003, 28.528853500000196, 22.257001530000025, 67.40740824699992, 22.320869106000032, 26.169601049999983, 78.00689417399997, 24.813116629999854, 26.04115324999998, 68.055190605, 60.93636618000005, 26.10537714999998, 71.80318699600002, 46.18050967500005, 26.008958750000033, 35.64649172600002, 55.171744062000016, 29.72422104000009, 28.106020830000034, 52.61385128200004, 22.352884985999935, 25.61500909999984, 83.75559984400013, 28.56116695000003, 34.417611766000164, 91.66908692100003, 24.84525165499997, 22.352884985999935, 94.08329577500012, 24.58866584000009, 22.416752562000056, 87.67427697300002, 18.476980980000008, 18.540492621000112, 77.69571795000002, 21.028787205999947, 31.243010010000035, 85.36432788700006, 33.47528627099996, 31.178311529999974, 83.96483302800004, 32.183191572000055, 29.75659396499998, 82.73963842500007, 23.54891924599997, 28.49670575999994, 55.64076833699994, 29.659641204999957, 57.38978386300005, 69.45260543400002, 22.2888532259999, 21.060743610999907, 57.994853550000016, 63.279195099999924, 18.540492621000112, 69.28186728599997, 70.13190272500015, 24.78114640000001, 33.05881120200013, 50.09348134200002, 20.05530283400003, 30.56425693999995, 51.15370120800003, 15.98439176199986, 44.447620562, 94.01266154400014, 23.54891924599997, 48.235872298000004, 83.99958580000009, 26.169601049999983, 32.831699963999995, 81.30185330400002, 22.38473668200004, 31.53440265000006, 73.73981964200004, 22.257001530000025, 16.491071432000012, 80.18103763199997, 29.885753635000015, 25.294318029999886, 72.6175776209999, 24.78114640000001, 23.38887144900002, 81.47556007499998, 24.652771094999935, 14.661170425000137, 91.38731818800011, 28.464392310000107, 19.705090900000187, 70.33721493300015, 22.2888532259999, 35.701460490000045, 87.60423635600011, 19.705090900000187, 26.008958750000033, 93.80057727199994, 36.15784217399994, 28.49670575999994, 86.44955857800005, 27.33324866999999, 23.38887144900002, 48.07018207400006, 23.420946804000096, 31.923754890000055, 78.075985242, 22.129102193999984, 25.976929349999978, 69.35012744999995, 47.34100885800001, 20.93324574899998, 26.78608892999989, 53.64398552399996, 29.75659396499998, 34.125148653999986, 47.44045705000019, 22.161118074000115, 36.712235342999975, 38.57994218100009, 28.49670575999994, 35.41871629399998, 97.54753763500003, 23.38887144900002, 21.809600130000035, 92.71748438399993, 24.74901137500001, 11.195648085999892, 78.88645561200008, 27.172309604999896, 15.135241185000154, 83.54636665999999, 34.80027756599998, 17.75208752700007, 87.5341957390001, 17.05427996100002, 24.55653081499986, 92.54110478200005, 26.008958750000033, 23.38887144900002, 79.8687926880001, 14.629673943000057, 22.22498565000012, 78.60943884300013, 25.976929349999978, 30.91935129000001, 75.14148481200004, 24.71704114499994, 32.24800908600014, 75.072454032, 32.05338991799999, 27.107967060000078, 86.2045620539999, 33.44290165700011, 24.652771094999935, 52.24665265400017, 29.72422104000009, 25.816121950000024, 53.08121058200015, 34.63738970199995, 23.324885228000085, 61.74746197500008, 69.78983289900009, 17.11767256799999, 60.381552807999924, 59.841601822999905, 29.594895354999835, 29.17396253000004, 58.58201068799997, 19.609563684000022, 35.19077362600001, 54.870363692999945, 20.74183507700002, 31.663799609999955, 87.67427697300002, 25.94473485000003, 32.96150161800017, 81.40611307200004, 29.659641204999957, 30.88691889000006, 72.65179747500008, 33.28031086300007, 24.941491935000045, 83.86021643599997, 27.140221034999968, 16.20609461599986, 82.60050635100004, 24.62080086499998, 20.182726980000098, 88.93817661899993, 27.07571308499996, 18.286282788000108, 85.15473846299994, 24.68490612000005, 32.183191572000055, 83.82528452600013, 29.72422104000009, 33.50783781600012, 66.41595211000003, 21.969351161999953, 15.50959305999993, 77.73035229000004, 23.38887144900002, 25.848316450000084, 79.93812104599999, 45.684329297999966, 24.58866584000009, 85.08493513600013, 38.41616310699999, 36.96069569000019, 48.103388234000136, 40.939475184, 24.877386679999972, 51.78680990199996, 33.410350112000174, 28.367617670000072, 56.801147986000046, 62.33116759999996, 24.4924255599999, 65.56365825, 60.97022695500016, 13.275149706000093, 29.077187890000005, 63.69246448500007, 29.304203089999874, 35.25582842999995, 49.92719758800001, 26.91477401999998, 29.10950134000018, 88.6925276610001, 18.318120243000067, 20.422762663999947, 81.30185330400002, 29.53031551999993, 23.164837431000137, 86.2045620539999, 30.88691889000006, 22.320869106000032, 82.60050635100004, 25.75189804999991, 12.330191498999966, 76.09073115300009, 30.78978800999994, 38.121730705999994, 83.58129857000006, 27.01137054000003, 18.19093369199993, 88.72751730700008, 28.270843030000037, 20.709878671999945, 65.83749868999996, 21.937335281999935, 19.514036467999972, 73.98047959400003, 24.39618527999994, 29.465735685000027, 78.78255208400014, 24.39618527999994, 21.90548358600006, 78.67864855599987, 53.409974856000076, 27.07571308499996, 39.38491584199983, 38.41616310699999, 31.923754890000055, 47.90449185, 35.79913689300008, 29.659641204999957, 46.57758996300004, 68.291305266, 25.65547964999996, 56.599929178000025, 71.04918674400017, 34.37700325000003, 25.527031849999958, 67.37342507300013, 25.68767415000002, 31.599101129999895, 59.875402928000085, 19.45040618200005, 31.53440265000006, 79.62587610200012, 26.850431474999937, 33.832685542000036, 81.16278077099992, 24.460290535000013, 30.78978800999994, 86.27466377400003, 18.254445333000035, 24.428320305000057, 76.09073115300009, 26.818177500000047, 28.335304220000012, 88.62236801000017, 20.74183507700002, 26.23399004999999, 86.13464008200003, 23.22882365199996, 19.259351750000064, 76.0561562879999, 34.279337425999984, 23.196748297, 83.61605134199999, 24.428320305000057, 29.56268844500005, 57.79310607800005, 33.215374704000055, 15.604585331999942, 63.862014600000066, 28.206381840000063, 28.206381840000063, 67.475724937, 57.52416702500011, 19.323145610000097, 81.26704053899994, 53.409974856000076, 20.74183507700002, 44.05213694200006, 44.61915722100002, 17.650676571000076, 51.68682734999993, 30.59552624999992, 20.677922266999985, 54.179014319999965, 81.47556007499998, 24.428320305000057, 49.1652703499999, 71.04918674400017, 30.56326016999992, 27.49435313999993, 66.00764233500013, 22.22498565000012, 21.379652145000023, 49.59445918199992, 18.127422051000167, 23.805193107999912, 82.2523185, 30.498395370000026, 32.572263281999994, 80.98907399999996, 14.313572652000062, 19.45040618200005, 148.75703446599994, 22.876652703000104, 23.100851210000087, 88.65735765600004, 29.36878292499989, 23.260899007000035, 73.70536392199995, 23.036700499999938, 16.01611007200006, 74.83137730800013, 16.73699099999999, 26.850431474999937, 83.44175006800003, 56.91909733800003, 78.26303444400003, 91.14083841000001, 41.96879706499999, 19.291248679999967, 46.61056666500008, 37.05854990800003, 17.90488640400008, 50.259765096000024, 26.91477401999998, 26.882685450000054, 51.653442765000136, 73.46470396999996, 15.731133255999907, 21.71371667400001, 73.5678944340001, 18.09558459599998, 27.558695684999975, 63.35319000000004, 28.141920650000202, 18.826539908999962, 68.42800106999994, 29.36878292499989, 32.734390380000036, 78.4708415, 21.873467706000042, 24.139599464999947, 84.77055100000007, 23.100851210000087, 30.75735560999999, 94.81232375399986, 29.465735685000027, 28.109607200000028, 80.71110746099998, 23.068775855000013, 29.33641, 73.67108489800012, 29.271830164999983, 15.287890206000043, 70.87785506599994, 26.850431474999937, 20.709878671999945, 69.858211708, 53.343139210000004, 24.29994499999998, 39.31921761199999, 65.76930134000008, 25.62345025000002, 40.10624871599998, 46.943386378000014, 17.90488640400008, 50.259765096000024, 34.40961427000002, 24.364215050000098, 56.667002113999956, 91.03515251399995, 18.127422051000167, 24.20370472000002, 78.4708415, 24.428320305000057, 27.33324866999999, 64.51036321000004, 14.250417334999952, 28.65794158999995, 87.07848159600007, 20.646129741000095, 40.204627603999825, 90.89417766300005, 25.719703550000077, 35.73396344399998, 80.815367229, 25.559061250000013, 18.03207295499999, 79.72995775000004, 35.701460490000045, 23.164837431000137, 75.84906171199998, 20.55042440499983, 22.161118074000115, 74.83137730800013, 26.818177500000047, 20.55042440499983, 81.09333376799998, 30.433696889999965, 14.187262017999956, 88.37653869300004, 21.873467706000042, 30.692657130000043, 60.24652172700007, 22.972714279, 36.993257814, 62.56808750000005, 19.163824534000128, 23.004789633999962, 71.1520209680001, 58.245286523999994, 30.59552624999992, 67.33926672799998, 44.454061499999966, 22.972714279, 22.512636017999966, 49.39485031800007, 19.163824534000128, 34.89777615399987, 50.72055761799993, 26.818177500000047, 55.037835480000126, 78.54022913000006, 24.332080024999982, 43.887337986000034, 83.19776411199996, 31.696643652000034, 34.702611742000045, 83.54636665999999, 31.534516553999993, 18.604004262000103, 65.83749868999996, 23.004789633999962, 36.48404450099986, 83.19776411199996, 21.745732553999915, 23.709131532000015, 80.88481423199994, 18.00023550000003, 19.259351750000064, 84.73573905800004, 25.816121950000024, 26.78608892999989, 75.98718386500002, 28.109607200000028, 31.826445305999982, 77.17726852199985, 29.271830164999983, 15.82612552799992, 87.11359193100009, 25.59125574999996, 30.530827769999973, 78.40163178700004, 31.858770750000076, 30.401264490000017, 87.11359193100009, 35.570946050999964, 26.689492409999957, 51.38687969400007, 15.256334553999977, 22.81266648199994, 51.38687969400007, 25.527031849999958, 26.689492409999957, 62.43275440000002, 63.35319000000004, 29.304203089999874, 21.681700793999994, 58.245286523999994, 28.109607200000028, 28.69008933000009, 46.943386378000014, 27.690360900000087, 43.78842473800012, 48.20244345799995, 22.972714279, 47.573111401999995, 83.19776411199996, 15.41460078800003, 21.29833115400004, 93.48245086400004, 28.012832560000106, 29.56268844500005, 70.775020842, 20.486675473999867, 19.673357544000055, 72.06811965600002, 20.454719068999907, 17.30801335199999, 83.30220156600012, 19.100194248000093, 28.884019124999895, 78.29772825900011, 20.390970137999943, 22.972714279, 80.85017999399997, 21.681700793999994, 15.41460078800003, 70.53501562400015, 27.948371370000018, 19.163824534000128, 64.64634545000001, 19.132091177999996, 14.123944348000009, 68.49626123400003, 22.81266648199994, 29.17487740499996, 85.81972158600001, 44.322052794, 17.968561314, 42.76643409000019, 39.286536953999985, 34.149227817999986, 50.15996066399998, 41.83709387200008, 22.876652703000104, 45.147701075999976, 75.43504986699998, 24.139599464999947, 53.74432490000004, 80.815367229, 26.592895890000023, 19.514036467999972, 82.008747954, 19.259351750000064, 10.629969333999952, 73.22386732200005, 26.689492409999957, 29.53031551999993, 76.86609229800001, 25.398418950000064, 21.124492542000098, 83.51143475000003, 15.319608515999903, 20.390970137999943, 80.91962699699991, 12.644296842000017, 34.18167160200005, 74.34904685800007, 31.696643652000034, 27.980519110000046, 66.79378423399999, 25.366224450000004, 22.908728058000065, 69.65289949999999, 20.29526480200002, 32.82559081900001, 75.95260900000005, 49.162087241999984, 14.123944348000009, 82.008747954, 60.5309051050001, 21.64984909799989, 33.63771013400003, 40.54541591399993, 15.35132682599999, 50.15996066399998, 40.47959873400009, 22.876652703000104, 42.62697489600009, 72.34276044299997, 10.158731812000042, 63.89582007000001, 69.13979476100008, 22.908728058000065, 23.484933025000146, 66.75962588900006, 25.14135824999994, 16.11110234399996, 61.89090015000011, 29.110297569999943, 23.580994601000043, 79.48721938599999, 26.624984460000178, 31.178311529999974, 80.74592022599995, 32.69555157000002, 33.98650719, 85.78485047399988, 18.318120243000067, 26.689492409999957, 84.49115824900014, 27.91605792000007, 28.109607200000028, 80.74592022599995, 26.592895890000023, 20.709878671999945, 81.93918191699993, 17.87321221800005, 20.29526480200002, 92.08248156200011, 19.132091177999996, 34.18167160200005, 84.49115824900014, 32.72810311499995, 29.110297569999943, 56.19714671400004, 22.84457734800003, 21.55396564199998, 62.26332709999997, 22.780591127000093, 34.05156199400005, 61.00391408500002, 60.5309051050001, 39.220838724000146, 84.70074767300002, 45.55191254099998, 29.14250448000007, 29.821173799999883, 56.751032021000015, 34.01895097400006, 28.625628140000117, 55.525900082000135, 31.696643652000034, 38.808963843000015, 93.27054817100009, 32.95546313700004, 25.205582150000055, 87.14870226599987, 21.55396564199998, 17.936723858999926, 80.74592022599995, 21.521949762000077, 15.667859293999868, 78.15930883299995, 32.76048772900015, 22.097250497999994, 89.494801586, 26.464045395000085, 26.174421240000015, 83.30220156600012, 25.17355275, 20.26330839700006, 84.4563463070001, 18.941036746000123, 24.139599464999947, 77.81290443399996, 24.075494209999988, 29.14250448000007, 80.78055446400003, 31.567008623999982, 25.398418950000064, 78.19382473100006, 24.011388954999916, 24.171734489999835, 86.97351069700005, 35.440431612, 29.23945723999998, 50.28724282500002, 32.76048772900015, 19.132091177999996, 55.07122656599995, 31.599334068000076, 21.617833217999987, 61.173044315000084, 61.586313700000005, 16.38808721700002, 68.56452139800001, 70.603689164, 25.33419504999995, 26.206509810000057, 54.200304426, 27.78713554000001, 22.129102193999984, 49.19541235199995, 32.79303927400008, 39.909490939999955, 96.76609404499993, 20.327057328000024, 39.87664182499998, 81.79987101000006, 17.90488640400008, 25.59125574999996, 90.82378072200004, 24.171734489999835, 20.677922266999985, 70.70634730200015, 24.075494209999988, 14.53485979100003, 80.64166045799993, 29.07792464499994, 22.352884985999935, 84.4563463070001, 32.890526978000025, 16.32469461000005, 84.59595296100008, 23.78677336999999, 29.07792464499994, 85.57490481000002, 24.075494209999988, 27.883744470000124, 75.81466415399996, 14.092447866000043, 34.311948445999974, 79.38313773800007, 28.884019124999895, 21.521949762000077, 84.4563463070001, 37.09127987800002, 30.304299929999956, 79.52179445400009, 26.528553344999978, 17.619002385000044, 48.70040442499999, 41.60682461800002, 40.381210487999965, 63.45495491999998, 29.07792464499994, 25.23777665, 67.30510838299995, 52.94178170600003, 25.205582150000055, 73.46470396999996, 50.220644858000014, 13.9659748790001, 36.09266872500007, 51.67913268200016, 17.87321221800005, 47.34100885800001, 56.71734986600006, 20.231515870999942, 37.320053976000054, 90.68280587100014, 18.813612600000056, 25.527031849999958, 90.64769788499996, 35.21224077000011, 24.26797476999991, 85.74979961399993, 23.722668115000033, 23.068775855000013, 73.08639783399997, 33.98650719, 27.140221034999968, 83.162832202, 23.979253929999913, 26.10991329000001, 76.8314579580001, 22.748680261000004, 35.342755209000075, 84.49115824900014, 18.972933676000025, 13.902819562000104, 89.494801586, 25.17355275, 21.490098065999973, 80.74592022599995, 17.714351480999994, 30.012907290000044, 70.50085494000007, 20.10385413000006, 24.011388954999916, 82.91866710800002, 37.89254089300016, 18.941036746000123, 49.95408178699995, 27.851596730000097, 23.85087862499995, 60.01043400900005, 25.10916374999988, 25.366224450000004, 67.27112520900005, 26.39970285000004, 17.714351480999994, 63.55671984000003, 61.72164680000003, 23.979253929999913, 22.49240639900006, 64.1706694500001, 24.011388954999916, 38.35075236800003, 51.51225539800009, 20.199559465999982, 33.50783781600012, 82.70961306200013, 17.650676571000076, 40.972383774000036, 88.02556007900012, 26.560641915000133, 27.49681162000013, 81.90430948200003, 16.292916824999907, 25.43061345000001, 90.542011989, 27.75482209000006, 34.34455946599985, 85.36495914599993, 15.287890206000043, 32.183191572000055, 86.93840036200004, 23.915148674999955, 25.17355275, 84.28156882500002, 27.33557579000012, 28.948764975000017, 67.94982897000011, 20.26330839700006, 26.30310632999999, 68.90020525800003, 26.496299370000088, 23.85087862499995, 81.90430948200003, 56.65015828500009, 33.98650719, 78.1246150180001, 45.022585478999986, 22.524481754000135, 81.5909940659999, 41.60682461800002, 24.94852144999993, 51.08710324100002, 37.92533033799998, 21.426066306000052, 47.40742117800016, 37.79434070900004, 26.528553344999978, 111.22850525000001, 68.49626123400003, 20.07189772499987, 62.09407374999989, 52.97528543599992, 28.916392050000013, 30.984049769999956, 47.87029888699999, 13.839664245000108, 49.694263613999965, 49.062282810000056, 23.915148674999955, 33.50783781600012, 80.57221345499988, 23.754638344999876, 34.76766654599999, 88.02556007900012, 25.10916374999988, 28.851812214999995, 84.42135492199998, 36.76465156200004, 24.20370472000002, 79.31380938000007, 18.845509530000072, 14.282076170000096, 89.14304877799987, 30.04517336999993, 31.89126281999995, 85.57490481000002, 30.110038170000053, 18.877406459999975, 86.86835974500002, 23.883013650000066, 20.10385413000006, 79.41789102799999, 23.947118905000025, 25.17355275, 68.56452139800001, 26.367448874999923, 18.495297596000114, 73.43024824999998, 25.23777665, 27.690360900000087, 75.711116866, 45.287249010000096, 27.56127281000022, 28.657906694999838, 51.57897201000014, 32.53312770700006, 30.82222041, 52.7411029540001, 24.82007365000004, 27.204563580000013, 55.391754210000045], \"power_mean\": 43.082843865824756, \"energy_millijoules\": 11605.058414446381, \"energy_joules\": 11.60505841444638, \"coremark_score\": 1113.804869, \"coremarks_per_mhz\": 3.7126828966666667, \"ulpmark_cm_score\": 25.85079620336504}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [690.724921697, 671.4345350379999, 650.8417765199999, 650.7130784699999, 672.537640834, 636.0356086559999, 644.3040600260001, 670.1417256960001, 646.22515625, 655.4909144760001, 690.945400924, 665.820465876, 643.071575952, 694.0537842980001, 638.5322933970001, 636.8169541589999, 704.184644016, 648.7480192600001, 658.5336073950001], \"power_mean\": 661.5345348915789, \"energy_millijoules\": 3307.6726744578946, \"energy_joules\": 3.3076726744578946}}, \"576000\": {\"active\": {\"elapsed_sec\": 140.286649425, \"elapsed_ns\": 140286649425, \"power_samples\": [44.02477869000006, 41.771326809000016, 96.90825765000011, 46.280455193999956, 32.56551232100003, 106.87113754600011, 45.154832252999995, 37.63072978600019, 96.69510348999995, 51.34537811400014, 42.60163513400016, 99.06862452000007, 41.310619234, 37.69614052500003, 112.94830746599996, 41.08034998000005, 36.33983333600008, 100.54041505999999, 48.89599905600005, 45.08870886600005, 63.45495491999998, 45.022585478999986, 40.775269758000036, 73.60217345800004, 36.24197911800013, 43.82659595399991, 74.86571569600005, 77.81290443399996, 37.49990830800016, 46.31366135400003, 90.33064019699998, 33.82361932599997, 45.71730600000001, 79.17497444200012, 43.760591600999874, 40.775269758000036, 95.43711512999994, 42.502721885999904, 45.816576071999975, 92.88178753200009, 37.597940341000026, 38.82749162899995, 104.10375257400005, 36.66662949800002, 50.220644858000014, 99.24678568500008, 48.69639019199985, 36.33983333600008, 74.59012358200005, 42.568607594000014, 44.95646209200015, 78.15930883299995, 45.022585478999986, 33.69350971799986, 88.306379042, 81.48655559399992, 42.568607594000014, 41.21188410600007, 75.15898286799995, 37.565319047000116, 48.30206977, 69.071240171, 36.209249148000026, 45.816576071999975, 112.91213383800005, 38.79464251399986, 42.10033119100001, 91.65902549799989, 46.34669722599995, 33.82361932599997, 102.98916984199991, 48.72971530200016, 42.66752084200016, 101.65559179499996, 41.310619234, 36.30727121200016, 91.51799432600001, 29.91577640999992, 43.59549587999993, 99.10414688999992, 38.69626362600002, 41.34358729900009, 101.51247781000006, 55.19036297800017, 38.761961856000084, 66.31644325899993, 46.280455193999956, 33.75856452200003, 68.35974090599996, 43.760591600999874, 37.49990830800016, 68.35974090599996, 89.63535817800005, 33.69350971799986, 80.64166045799993, 79.00156443599997, 42.46969434599998, 47.10907660200007, 70.15801549800005, 36.176519178000035, 48.40152548899994, 80.12036161799995, 41.21188410600007, 48.23553849999996, 95.18897234999986, 51.378650666, 43.727504585999895, 96.65969946000007, 44.989438793999966, 43.760591600999874, 105.25367913999992, 43.69458724800006, 38.82749162899995, 98.1666022500001, 52.440084825999975, 42.436836178000135, 96.8726711249999, 39.986982455999964, 49.95408178699995, 91.72954108399995, 66.41874312300001, 46.24724903399999, 101.7628813550001, 69.00286136199998, 39.986982455999964, 55.86160961000007, 70.19235226799992, 35.01655288199993, 60.83495750000009, 100.07638775999999, 37.467118862999996, 59.672942975999945, 91.4826458959999, 37.3689186790001, 40.24974488999999, 95.33071616999996, 41.179085108000095, 48.796194623999895, 91.55316148199995, 44.989438793999966, 36.405293276000066, 92.59888745000012, 45.05573216400012, 48.069551510999986, 97.7752274500001, 52.607431661999954, 46.04835265000008, 91.55316148199995, 53.86536085199998, 43.760591600999874, 75.15898286799995, 36.11122708400001, 42.40380863799999, 91.97661754599994, 31.275079872000106, 39.85551685799999, 78.19382473100006, 78.61999113400009, 39.954073866000044, 88.06054972499999, 78.89748278799993, 36.14395705400011, 48.20244345799995, 60.09140961000003, 33.15043854500004, 57.08716265500004, 66.31644325899993, 42.46969434599998, 57.08716265500004, 91.41213030999995, 39.954073866000044, 48.53010643799996, 98.99721356999999, 47.538324908999925, 51.61241607000011, 95.36624321999989, 34.85353548900002, 36.69919162200017, 102.81011740899987, 48.72971530200016, 35.6036165459999, 94.06878196199989, 41.04738191499996, 38.69626362600002, 109.13888062800004, 36.96069569000019, 38.761961856000084, 94.06878196199989, 39.78986844000008, 31.145278218000044, 86.69298812299996, 36.14395705400011, 42.40380863799999, 86.65805784100007, 39.85551685799999, 39.88842544800002, 98.92598572500003, 66.282284914, 33.53078908999987, 67.642395018, 58.76204653100001, 43.62841321799999, 58.17797629799986, 63.72903265000002, 36.14395705400011, 69.55024339600004, 95.68544009999994, 46.24724903399999, 68.35974090599996, 96.48194933000002, 48.663065082, 37.63072978600019, 95.29537131000006, 36.04593498999998, 40.381210487999965, 87.463922153, 38.49950584999999, 42.83231979800007, 99.03291904499997, 41.014413850000096, 39.756959850000044, 95.2243172100001, 47.37233791999995, 43.79367861600008, 96.5531223800001, 47.471964232000005, 51.11161271000003, 71.9651073120001, 47.272711607999895, 47.272711607999895, 80.64166045799993, 39.88842544800002, 43.66150023299997, 96.69510348999995, 67.50587468999993, 44.82404533499994, 96.58852640999999, 64.98660559999996, 39.756959850000044, 55.66021837799997, 67.53991703400004, 43.727504585999895, 56.986288919, 59.82104434500013, 33.43312326599994, 54.40133941800002, 93.89180882999995, 39.85551685799999, 37.467118862999996, 97.7752274500001, 46.11476497000001, 31.24258780199989, 91.41213030999995, 57.40330307999989, 33.75856452200003, 99.03291904499997, 51.17832932200008, 43.82659595399991, 102.73853323999981, 28.496374099999798, 34.78836204000004, 106.54712967400008, 59.990000930000065, 42.40380863799999, 67.43743904999997, 52.373249180000016, 36.0132050200001, 66.99838396199993, 39.82277703, 46.181007002000115, 61.924820400000044, 103.99610618999986, 42.40380863799999, 69.58452069099997, 91.37678187999995, 39.85551685799999, 45.45264246900001, 90.26024325600008, 51.11161271000003, 40.24974488999999, 86.37771531999988, 41.04738191499996, 46.71128383400003, 96.41095877500004, 52.373249180000016, 44.79089865000003, 90.1545573599999, 45.98211061800009, 47.272711607999895, 105.14585463599997, 40.98161485200001, 37.40170812400015, 82.43069519599999, 34.820864993999976, 38.59788473799995, 96.73069001500016, 37.23792905000005, 37.3689186790001, 92.66970325999989, 72.32978556199998, 41.179085108000095, 95.11791825, 67.50587468999993, 41.179085108000095, 59.335625282000024, 57.36956144999999, 38.729112740999994, 64.51036321000004, 58.59338768400005, 42.30489539000007, 65.70127885500006, 96.37537225000005, 33.59584389399993, 45.882662426000024, 90.04887146399994, 37.336129234000055, 48.00319083399995, 86.27256436799996, 46.04835265000008, 34.40961427000002, 100.07638775999999, 42.20598214200004, 41.80429487399999, 98.89028025000005, 36.04593498999998, 34.75569154499999, 103.85251623600004, 36.470585370000094, 48.59658576000004, 101.40518825000004, 38.46682519199999, 46.41293925800005, 105.217676095, 38.43397607700001, 43.56240886499995, 111.255820631, 33.368068462, 44.72477526299997, 100.04080621999992, 39.756959850000044, 34.75569154499999, 74.88291586899993, 43.529321849999974, 36.0132050200001, 97.73958145000017, 44.69179856099993, 45.98211061800009, 92.63429535500006, 60.19281828999999, 49.854099235000035, 101.333723115, 58.45835660299997, 42.337922930000104, 69.37920848300007, 59.854905120000126, 39.46145758800003, 74.48675441400019, 40.98161485200001, 36.04593498999998, 82.008747954, 91.27091786400001, 38.46682519199999, 41.83709387200008, 80.08572737999987, 42.30489539000007, 41.771326809000016, 72.46725505000006, 37.172518310999976, 41.80429487399999, 97.45496185000013, 37.205307756000025, 54.33421300800012, 96.30438169500007, 48.496781328, 40.98161485200001, 98.89028025000005, 34.72302105000006, 33.66089869799998, 103.8884598059999, 32.11079227699997, 37.3689186790001, 95.15344529999993, 48.33049757399999, 44.69179856099993, 104.96620867299998, 39.560014595999974, 80.01610185000004, 91.30626629400001, 44.69179856099993, 43.46331749700005, 76.8314579580001, 40.98161485200001, 43.26513476100001, 74.31453146800004, 40.88287972400008, 49.72090330099991, 73.08639783399997, 79.91202060899991, 35.94791292600007, 43.46331749700005, 83.8275780350001, 32.11079227699997, 46.57879977000016, 71.03817260700009, 39.691311432000134, 36.53587746400012, 97.27709745000004, 42.239009682000074, 56.41472865800006, 89.94318556799999, 35.84989086200005, 42.40380863799999, 97.45496185000013, 43.56240886499995, 40.98161485200001, 101.29808240499995, 37.205307756000025, 42.502721885999904, 100.11215271000003, 44.72477526299997, 43.59549587999993, 100.07638775999999, 36.0132050200001, 41.04738191499996, 105.03803013200002, 35.94791292600007, 36.04593498999998, 86.20252375099994, 45.882662426000024, 35.91518295600008, 90.33064019699998, 43.46331749700005, 43.496404512000026, 88.96726270599993, 67.23265855799991, 41.014413850000096, 93.85634145000006, 62.40350024999998, 35.91518295600008, 49.12876213200013, 63.66095425000003, 39.954073866000044, 70.603689164, 59.71963566500017, 44.65865187600002, 61.82323359999998, 100.07638775999999, 47.173085295999954, 36.87791775900007, 90.04887146399994, 37.172518310999976, 55.2574359140001, 82.53513265000015, 40.849911658999986, 45.48578915400003, 100.04080621999992, 42.17312397400008, 41.73835874400015, 96.33996821999995, 35.84989086200005, 43.39731314400001, 91.23575070799996, 34.98404992799999, 40.91584778899994, 92.59888745000012, 39.46145758800003, 47.33907228499993, 104.85838416900003, 35.91518295600008, 43.36422612900003, 100.04080621999992, 35.84989086200005, 43.36422612900003, 98.81905240499998, 49.72090330099991, 34.72302105000006, 74.84834100399996, 31.980753028000095, 52.23957788799987, 84.21176549800009, 39.72422002199994, 35.88262083200004, 87.674401106, 74.03893935399992, 39.65857160400003, 83.79258665000009, 68.48975662299995, 40.94864678700003, 49.22856656400006, 69.81535214200005, 37.008907388000125, 59.16696643500006, 57.26868262799985, 40.91584778899994, 59.20059420100017, 102.59518088099992, 42.10706889400012, 37.63072978600019, 99.96927632000006, 43.39731314400001, 40.315393308000125, 87.393582143, 37.13989701699995, 42.83231979800007, 82.39576328600003, 45.849626554, 54.066223724999986, 92.38698475700005, 33.368068462, 37.008907388000125, 95.01170147999994, 40.849911658999986, 37.205307756000025, 99.89792982999995, 38.20453764299998, 45.98211061800009, 103.8884598059999, 44.59252848899996, 42.17312397400008, 94.97617443000001, 42.07421072600005, 44.52623511900015, 89.97847452299993, 47.20635093099986, 52.20607415799998, 69.27655237900001, 45.91586858599999, 44.85719202000007, 72.98320737000006, 37.07431812700008, 42.20598214200004, 82.91866710800002, 76.14019205399995, 45.849626554, 44.46011173200009, 71.00395275299991, 35.81716089200006, 45.41966576699997, 71.10696509699994, 43.26513476100001, 51.71257674200001, 100.14773424999998, 37.041696832999946, 59.20059420100017, 101.22643355500009, 37.07431812700008, 44.79089865000003, 101.083503285, 38.17168852800012, 45.98211061800009, 98.67659671499996, 34.36431576899997, 47.803938209999956, 107.55246355200006, 31.94820148300016, 44.625505191000116, 89.94318556799999], \"power_mean\": 59.34836393652964, \"energy_millijoules\": 8325.783125511247, \"energy_joules\": 8.325783125511247, \"coremark_score\": 2138.625719, \"coremarks_per_mhz\": 3.712891873263889, \"ulpmark_cm_score\": 36.03264647631311}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [684.18908214, 658.804387262, 627.88761958, 662.0083127160001, 653.826277616, 632.3501758680001, 655.672174014, 692.746935342, 644.79578125, 659.4878244360001, 682.5756556650001, 634.8680521279999, 646.8162192450001, 673.9517376089999, 637.209849081, 639.3416935319999, 677.792598, 646.17637896, 639.4320523479998], \"power_mean\": 655.2596214101053, \"energy_millijoules\": 3276.2981070505266, \"energy_joules\": 3.2762981070505264}}, \"768000\": {\"active\": {\"elapsed_sec\": 105.212490428, \"elapsed_ns\": 105212490428, \"power_samples\": [54.619811962000085, 49.55415157900006, 103.85251623600004, 76.00183230599998, 57.16763077200005, 57.100147512000035, 86.13230308100003, 49.687518716, 52.80793859999994, 77.22417708100011, 48.29717246400014, 55.45882714600009, 109.8539438580001, 43.23221742299995, 62.946304575, 116.28833452399988, 62.13218521500016, 50.87801881400003, 117.43582571700006, 47.471964232000005, 57.234940997999956, 104.96620867299998, 45.783214234000184, 58.45835660299997, 108.3803644919999, 54.58618928200008, 52.10573478200001, 112.33130470799983, 46.80784568299998, 54.58618928200008, 112.33130470799983, 77.15496736800014, 50.71097002199997, 66.58918450600004, 55.80965897100009, 58.28969775600001, 70.4321814000001, 65.87326062900001, 48.29717246400014, 84.10697078599992, 91.02402267599996, 52.00539540600005, 54.41842073000009, 80.96454206700002, 53.262255876000154, 48.962478378000014, 89.73181377599997, 52.00539540600005, 62.81055993000007, 110.92967356700012, 45.75017836200004, 69.13979476100008, 118.61943034199987, 51.97189167599993, 62.13218521500016, 119.76645651800004, 38.860172286999955, 55.84316839700011, 117.47223621900002, 48.13088871000002, 55.977724288000104, 104.85838416900003, 64.33995483000012, 56.89821683399998, 111.03838925500008, 44.393988345000025, 56.96552706, 111.11080432800009, 58.32349886099996, 55.74229466099996, 87.88506041800008, 63.15141361000008, 53.262255876000154, 91.41213030999995, 61.96263510000017, 59.34786171999997, 97.56171705000008, 84.63032907000002, 49.35435767800004, 56.79716497800007, 89.52044198399994, 45.81642039400003, 61.484726900000055, 70.86654416400006, 51.83822038400001, 67.84735098600015, 112.18623727199997, 43.06712170200001, 94.03349646600009, 121.02307969800006, 56.931785430000104, 52.27290980400005, 98.46273007500008, 52.10573478200001, 53.731280150999964, 89.69652482099991, 54.35134779400016, 50.220644858000014, 124.72315885399996, 59.34786171999997, 44.03005474200006, 112.40402488799998, 53.06122088400002, 52.07223105200001, 103.49381784000002, 48.03108427799998, 62.030420294999885, 114.77213569000014, 54.41842073000009, 50.74441408200005, 108.3803644919999, 53.228692670999976, 53.09478408899997, 109.70935100199995, 82.047160738, 46.80784568299998, 71.9514794260001, 67.0277025900001, 51.97189167599993, 75.40047500200001, 58.08723780399998, 51.90505603000008, 85.33008803399991, 102.23707601499996, 54.58618928200008, 92.77574539600016, 80.82523116000016, 45.683766042, 58.99813424899992, 82.08191351000016, 49.687518716, 57.740027243999975, 84.63032907000002, 51.90505603000008, 72.7768264419999, 113.47922054200001, 49.32097309300002, 50.47737612599997, 108.52490560500007, 55.67510308000021, 49.787501267999914, 103.42211502600003, 46.77458004799996, 58.627015450000044, 113.51545334000002, 59.38172249500019, 51.21177338199993, 102.20119192000004, 66.92522460600003, 56.86447520400009, 100.9762137250001, 55.641593654000076, 44.26157158800004, 94.58610564000003, 59.48313117500004, 55.708785235000164, 94.94064738000009, 60.77361929999995, 48.13088871000002, 117.253210158, 74.29620700600003, 49.42095564500005, 107.08380382200016, 74.53769914000009, 54.35134779400016, 77.84759824900004, 58.255896650999944, 48.06440938800006, 89.0375410019999, 72.93657089800001, 53.16173838000009, 85.2251152020001, 105.93536138599995, 46.841111318, 49.42095564500005, 85.85196056000007, 53.09478408899997, 50.15404689100012, 90.70643062799991, 50.57753679800021, 61.28155329999993, 103.2068222580001, 46.87420636000002, 52.674267308000026, 104.67873820600005, 55.641593654000076, 56.999095655999895, 119.61977627099998, 54.4520434100001, 41.942269938000095, 108.199827261, 61.99661482500005, 49.65413413100009, 109.63686872200003, 60.63828620000004, 53.16173838000009, 112.07734346399991, 56.86447520400009, 51.80471665399989, 113.51545334000002, 59.41558327000007, 58.22226888500006, 94.03349646600009, 45.51807581799994, 54.4520434100001, 104.89420258300015, 49.35435767800004, 54.384970474000056, 98.53395792000003, 73.177647622, 51.83822038400001, 54.35134779400016, 78.13433618399995, 53.09478408899997, 72.673635978, 78.34249948000001, 46.80784568299998, 70.22668903800013, 106.43912705000002, 54.31772511399993, 82.91866710800002, 108.48872394000011, 54.35134779400016, 59.78735721500004, 97.02812385000016, 60.70595275000005, 46.04835265000008, 96.02023698000016, 110.78465726399997, 48.86267394599997, 119.61977627099998, 46.77458004799996, 49.287588508, 118.54630301000009, 50.61098085800006, 46.87420636000002, 116.10582835199989, 41.546616946000086, 60.63828620000004, 113.47922054200001, 41.74444344200003, 46.74148500599995, 143.314609734, 54.35134779400016, 59.449270400000046, 105.82735876200002, 68.14751101599995, 53.02782979799997, 83.12900643600005, 60.53669939999986, 47.04019334899999, 84.03716745899999, 60.43511259999991, 46.80784568299998, 85.36495914599993, 96.62411293499997, 59.31417459000011, 88.89698440999985, 94.44417963000001, 57.98600782799997, 45.154832252999995, 86.97244387800004, 56.83073357399985, 46.31366135400003, 78.09958289400004, 56.86447520400009, 53.83179764699992, 110.74854280600016, 63.117374410000025, 58.12103890900005, 112.040983374, 58.12103890900005, 48.164213819999986, 112.11370355399993, 58.0536100380001, 55.80965897100009, 115.92350955799986, 54.250652177999996, 48.98781205500006, 111.00208864000012, 60.53669939999986, 43.100039039999956, 112.07734346399991, 58.12103890900005, 53.02782979799997, 91.96281621299988, 39.231434981999996, 59.178905135000036, 97.41949865000004, 54.21702949799999, 55.57422934400006, 109.74540629000012, 74.84834100399996, 44.19544820099998, 109.45603472599998, 75.62156501399988, 52.960703387999956, 75.29692771399993, 71.77955421800004, 49.054410021999956, 75.22795529099994, 64.30585615500001, 40.55387534200008, 87.63941146000002, 102.09372365599995, 47.9646049559999, 52.640763577999905, 92.03345044399998, 56.62862986199991, 60.09140961000003, 79.46016877199997, 51.77138473800005, 63.66095425000003, 115.96004826800004, 54.284274858, 47.86480052399986, 117.10700510099991, 60.469032850000076, 53.09478408899997, 118.36339068599989, 58.08723780399998, 55.50703776299997, 115.81408080599999, 53.06122088400002, 52.10573478200001, 117.10700510099991, 50.443932066, 50.54409273800002, 108.199827261, 50.54409273800002, 56.69611312200004, 109.45603472599998, 60.53669939999986, 59.280313815, 89.94318556799999, 50.37721545399995, 60.53669939999986, 97.45496185000013, 49.22099054099999, 55.47335560800002, 94.76337651000006, 88.08815168199999, 44.16230151599996, 58.82947540199996, 85.641658656, 51.77138473800005, 64.78236328000003, 81.90761223599998, 56.460267780000095, 78.7586478500001, 99.6123604600001, 46.64185869400001, 51.704377277999924, 101.98625539199986, 50.54409273800002, 54.485493666000025, 96.99247785, 55.23809871000003, 56.246663341000044, 109.67310986200005, 48.98781205500006, 60.09140961000003, 112.040983374, 52.759840515000064, 52.99426659300002, 110.67594157600001, 55.30529029100012, 44.19544820099998, 108.27200504399991, 44.26157158800004, 57.98600782799997, 114.59011463399997, 54.35134779400016, 51.537202256, 107.04768182700002, 58.0536100380001, 55.406164027000045, 107.04768182700002, 59.280313815, 57.98600782799997, 77.63979119299995, 56.79716497800007, 50.57753679800021, 87.674401106, 60.63828620000004, 45.41862762599999, 83.72278332300016, 97.02812385000016, 53.02782979799997, 50.443932066, 75.58693067399997, 57.98600782799997, 51.14505677, 81.83792755400009, 58.01980893299992, 57.57166516199993, 111.8233822200001, 49.1543925740001, 67.608352674, 107.01155983199999, 46.67495373599991, 55.57422934400006, 108.23600892600007, 51.50387034000005, 49.58753616399997, 98.10622463999994, 47.9646049559999, 58.5595865790001, 109.52833115399994, 54.049260946000004, 50.410659514000145, 115.81408080599999, 64.16963632000011, 54.08288362600001, 116.92438954199997, 50.410659514000145, 52.960703387999956, 93.360889434], \"power_mean\": 70.95251589504787, \"energy_millijoules\": 7465.0908994502415, \"energy_joules\": 7.465090899450241, \"coremark_score\": 2851.602601, \"coremarks_per_mhz\": 3.7130242200520835, \"ulpmark_cm_score\": 40.187052514269205}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [651.6441855769999, 688.3206145040001, 643.1080657919999, 639.485478289, 690.4446705089999, 633.101326074, 635.6771344110001, 701.930882336, 644.3396875, 641.638275234, 704.877687696, 650.0449783199999, 639.304559446, 702.1960207520001, 638.0768248319999, 640.653025572, 697.490135175, 629.2384271120001, 637.5648431159999], \"power_mean\": 658.3756222235263, \"energy_millijoules\": 3291.8781111176313, \"energy_joules\": 3.291878111117631}}, \"1017600\": {\"active\": {\"elapsed_sec\": 79.408718043, \"elapsed_ns\": 79408718043, \"power_samples\": [111.8233822200001, 67.300918722, 77.39746823899998, 101.84308705399997, 65.39591965399995, 78.7586478500001, 114.33532257000013, 70.24864649099993, 66.65200847400001, 131.8195133449999, 70.31726259000004, 65.32777813500013, 126.97721842599992, 72.86771712000007, 62.845584489999965, 118.36339068599989, 75.06848124600003, 68.59241272700001, 118.2902633540001, 66.48127032599996, 70.31726259000004, 131.968379755, 87.84208731399997, 56.460267780000095, 97.99947442500013, 88.95690451799999, 64.13571251000008, 100.21926414999984, 85.46646708699996, 64.20373499499999, 86.23745403299995, 122.46350549700003, 56.62862986199991, 102.52359671199997, 112.97028046699995, 71.71064277800008, 68.69489305000013, 101.66403462099993, 59.178905135000036, 78.6893194920001, 105.57529099399994, 67.77116389500009, 68.52385813700005, 124.2067332040001, 60.2997795, 67.83971848500016, 120.54573816000016, 69.09568866000018, 66.44705250599998, 119.39985004700009, 71.43552710600011, 70.35165883500008, 124.169967488, 66.65200847400001, 58.90853987000003, 115.66830072199991, 72.86771712000007, 66.61779065399992, 132.00569202999998, 85.32638585299992, 64.03359135000005, 100.00504126999999, 71.64190803400004, 71.71064277800008, 107.37222405900013, 56.561319635999894, 66.58374831000015, 120.94952647800005, 106.50677810700006, 61.58955514499996, 68.92418089600005, 99.25544460000015, 71.64190803400004, 77.32808060900015, 103.02747306000003, 67.90809729399996, 67.23265855799991, 121.80158938500006, 66.54953048999994, 77.50119385000005, 118.07069336999996, 69.09568866000018, 71.67636375400002, 125.68411490100004, 110.5674120450002, 68.04485491200012, 124.24368843400009, 75.31038879000005, 60.60436594999999, 126.94014424599993, 72.83320173000004, 65.22547827099993, 120.47237353800006, 77.57935287600003, 64.06769002500005, 133.2244091, 69.0270151200001, 69.0270151200001, 148.83722269800012, 75.31038879000005, 74.60667156299985, 112.18623727199997, 71.53871757000002, 75.37965746999998, 109.60081343400009, 91.57405557400011, 62.77768064999998, 77.78751617199998, 90.42418700999997, 72.7643479520001, 83.652979996, 84.10546491000002, 68.99285443600002, 86.06226246400001, 129.3821251500001, 72.52309422600013, 101.04767886000002, 123.02485160899994, 79.07794246499998, 68.31854592899992, 116.88779135699997, 68.95851766600015, 70.93516026300006, 125.57326060499997, 70.35165883500008, 74.60667156299985, 134.29366622999999, 71.40124808200005, 64.03359135000005, 123.09845390999999, 66.04370201199993, 64.06769002500005, 131.6331433150001, 60.33352579999996, 65.29361978999998, 109.63686872200003, 73.95099027700007, 61.42000502999997, 110.74854280600016, 77.71800959200016, 63.93147019000003, 126.86618600999998, 99.00545677000002, 66.65200847400001, 89.87278862699998, 97.85683562999998, 68.95851766600015, 93.679368318, 86.51595524900006, 55.17090712900006, 98.53395792000003, 131.8195133449999, 56.35921592400007, 75.27593206200004, 121.72810611799991, 69.06135188999997, 69.47268878600005, 99.14833315999999, 66.48127032599996, 70.79792806500006, 127.12513489799994, 68.89002021200008, 58.492157708000036, 121.69127003300002, 71.53871757000002, 76.53172411699995, 121.54430349899997, 70.31726259000004, 72.7643479520001, 132.8140864500001, 61.42000502999997, 70.282866345, 119.25335809299997, 66.51531267000007, 58.97608777500011, 130.41490112999998, 78.97368269700007, 62.57379457000013, 134.18156451000016, 80.23347276300001, 71.36679236200007, 101.26225798000007, 66.34457452200002, 63.89737151500003, 109.63686872200003, 61.487790225000026, 71.43552710600011, 110.82095787899993, 104.10361264100004, 65.191319926, 77.39746823899998, 95.3809569949999, 72.7643479520001, 80.92966963200013, 95.27437991500005, 63.999492675000056, 78.55066277600008, 135.39962827, 63.93147019000003, 67.66850779100014, 128.010886174, 71.43552710600011, 71.57317329, 120.43559692800011, 68.8556834420001, 63.185452810000015, 125.0560038299999, 72.59194800400019, 59.38172249500019, 125.31472712699997, 68.92418089600005, 76.42782058899991, 124.2067332040001, 78.799975926, 70.17985400099997, 126.79222777400003, 70.214250246, 57.68249123899989, 102.99152948999995, 68.8556834420001, 66.378792342, 115.59541067999999, 98.93411027999991, 66.41283468600011, 121.80158938500006, 92.65281502199991, 61.453984754999965, 84.63032907000002, 86.51595524900006, 70.17985400099997, 94.86977547000004, 80.19877916099995, 70.24864649099993, 92.28094262100001, 119.10667784600014, 76.4970303020001, 77.51002451800002, 109.05812559399999, 58.87467909500015, 68.21606560600003, 104.13961568600007, 56.39295755400008, 67.23265855799991, 128.010886174, 66.378792342, 71.03817260700009, 130.56372129, 63.999492675000056, 60.062685649999935, 132.96338179999998, 67.60012898200011, 70.07684165700005, 110.38609512700009, 67.66850779100014, 70.11123790199997, 115.412904508, 74.0201400069999, 67.73706238099999, 116.778184485, 93.28995467399989, 58.90853987000003, 131.78220107000004, 85.04604333199995, 53.91511507400003, 94.86977547000004, 76.39312677400005, 72.66097878400001, 96.12681406000002, 75.17220665399998, 63.82934903000012, 94.79890355999999, 106.6149588510001, 68.89002021200008, 68.21606560600003, 107.98310836500002, 66.31035670200004, 64.714340795, 111.49670079600003, 67.53175017300009, 65.87326062900001, 122.91435355299996, 68.92418089600005, 67.42909406900003, 125.38856671799999, 75.06848124600003, 58.97608777500011, 127.97375251900007, 66.378792342, 57.716119004999996, 123.09845390999999, 75.13757231400007, 70.14563414700001, 120.21550306200004, 70.04262180299997, 68.95851766600015, 130.26627200999997, 76.42782058899991, 71.43552710600011, 85.15101423100009, 71.19486715400001, 75.10293797400004, 97.1703422500002, 70.04262180299997, 79.00849546199993, 113.37014861399996, 90.24780740799997, 70.214250246, 113.11558519300002, 97.64296898999999, 78.62626915500005, 67.19844073800004, 97.78560778499991, 60.062685649999935, 73.48775512600014, 95.16780283500009, 71.43552710600011], \"power_mean\": 86.07893245038926, \"energy_millijoules\": 6835.417676395403, \"energy_joules\": 6.835417676395402, \"coremark_score\": 3778.194779, \"coremarks_per_mhz\": 3.71284864288522, \"ulpmark_cm_score\": 43.8890517306621}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [640.9112854650001, 690.672861351, 647.74580327, 628.941338276, 695.673585354, 651.6441855769999, 651.674853291, 662.744586258, 636.608695914, 651.274908361, 673.729365231, 649.06409769, 645.2011978650002, 669.949492147, 674.7013657780001, 639.032948638, 674.89242021, 667.9654210560001, 643.73140625], \"power_mean\": 657.6926219990527, \"energy_millijoules\": 3288.4631099952635, \"energy_joules\": 3.2884631099952637}}, \"1248000\": {\"active\": {\"elapsed_sec\": 64.748150236, \"elapsed_ns\": 64748150236, \"power_samples\": [84.10546491000002, 142.86121315800006, 78.73052892300007, 80.05946825399997, 146.44171635500015, 87.49033450600007, 76.25470734800001, 106.14629912100008, 86.23513628600006, 88.85121862200003, 117.03399641400006, 85.15101423100009, 81.34977650400003, 126.94014424599993, 119.61977627099998, 81.28009182200003, 140.38818927299997, 121.43398414700005, 78.799975926, 102.16549184600001, 103.8161421740001, 72.48875583800009, 107.11974057600003, 147.84894397800008, 83.75567530199999, 115.96004826800004, 145.33830963800006, 82.46542622200013, 81.55900968800006, 128.8623722750001, 85.67676899100002, 78.13433618399995, 129.0479574300001, 84.97582266200016, 70.72931196599995, 135.28754069000001, 77.54459958600012, 73.70949814300002, 137.83970779800018, 90.07142780600009, 76.15080381999996, 138.9822693540001, 87.42005620999998, 81.28009182200003, 134.0694627900001, 82.39562289500009, 79.63387554299993, 145.4518209040001, 82.60521231900009, 78.69571615799998, 133.99479229500014, 106.18242111600011, 83.58078049800008, 110.16884990800008, 88.71042474000001, 90.00073094600009, 117.216611973, 73.67492327800005, 83.79072616199994, 124.6124826780001, 120.06858522000016, 82.50041760700003, 124.31740938000007, 110.02383360500016, 81.31484459400008, 84.59527821000006, 108.87729159800006, 79.88546374500004, 90.88281023000013, 141.37949476999995, 85.01093299700005, 90.84764307400008, 140.08693935600002, 81.21022800200012, 77.68343452399995, 138.94479320999994, 87.38482672999987, 87.80685783399997, 142.5968612160001, 87.42005620999998, 84.10546491000002, 138.8319784260001, 97.64296898999999, 80.02477465200002, 142.74786401400013, 77.37118958000008, 91.25592916600021, 136.47187291400007, 74.93012149800006, 76.11611000500011, 120.509150148, 84.94089238000004, 78.97368269700007, 134.33109745499996, 84.94089238000004, 87.49033450600007, 124.2067332040001, 113.82555137000008, 85.01093299700005, 96.1386190500001, 108.8049951700001, 88.71042474000001, 94.51523373000009, 100.04643211000007, 87.56079346599995, 103.31446864200007, 141.34190028600005, 79.78102527299995, 86.48096560300007, 149.18035616100008, 84.90578204500002, 75.24129772200001, 137.68965416000015, 91.14988703000006, 84.14051576999987, 137.7646809790001, 81.14054332000012, 83.12900643600005, 132.62761100000012, 87.45528568999998, 91.32674497599999, 137.65204431500013, 79.85059131000003, 92.44037451000008, 131.29809822000016, 86.34046594200015, 81.24515991200008, 136.69679000199994, 77.23235464200002, 81.14054332000012, 141.49266579400012, 111.13365928199994, 74.86103043000014, 147.58273372199994, 98.61277595999991, 83.5457296379999, 120.87616185600007, 92.36962163400005, 78.556822152, 108.41654615700008, 89.85969977400009, 84.94089238000004, 108.199827261, 130.19176641000013, 88.63984683000001, 85.25616518300012, 128.78817636000008, 87.38482672999987, 87.666120578, 136.39696474000016, 82.29082818300003, 86.44579559800013, 132.62761100000012, 77.33643629000005, 84.10546491000002, 140.12447466999993, 91.18529493500012, 83.51067877800006, 150.0163229740001, 97.50051329999997, 83.58078049800008, 96.1386190500001, 96.24537425000005, 77.4059428700001, 109.70935100199995, 92.546594766, 84.94089238000004, 122.0222280889999, 138.7943091059999, 72.31635588999995, 115.887158226, 135.10027945000002, 86.23513628600006, 82.91959645500015, 127.52910080400011, 73.60595085500006, 95.52293810499998, 136.47187291400007, 84.80063109299988, 89.41475608799999, 135.10027945000002, 87.56079346599995, 79.92033618000005, 141.266323746, 85.43153680500006, 81.14054332000012, 146.32783226699996, 86.20014664000007, 78.59145638999985, 114.40809357799992, 91.14988703000006, 88.74553272600008, 116.74177398299992, 117.08281642999998, 94.7770810400001, 127.97375251900007, 111.27891318000013, 79.74615283800006, 88.33439671399992, 113.71630132200005, 81.69837905200006, 90.45953544000008, 111.17001937199996, 72.38538667000012, 86.90210386800004, 147.65871009, 72.38538667000012, 82.43061427999999, 143.96946462000005, 83.5457296379999, 95.92510864999997, 138.90712388999998, 87.34977791400001, 84.90578204500002, 135.10027945000002, 82.32581956800004, 79.46016877199997, 136.35941436999997, 83.68575333000001, 85.95431732300005, 131.29809822000016, 108.69645760200001, 77.1282729940001, 98.25586009999995, 105.03546281000001, 81.10561140999994, 106.97562307800013, 98.68412245000002, 74.72267068199994, 101.84308705399997, 136.80924854600005, 82.2210248560001, 107.08380382200016, 131.37253142500015, 77.1282729940001, 79.14756799500003, 132.55305915000008, 89.75383575800004, 84.35046143399995, 137.68965416000015, 70.95403050599998, 79.35590900399995, 136.24695582599998, 73.60595085500006, 88.53416093399994, 131.18635274000007, 77.89159782000013, 78.62626915500005, 134.98799960999997, 77.30186122200007, 86.12980662999996, 145.07293081199987, 82.36063151000008, 83.65070247000006, 141.266323746, 79.81589770800008, 82.32581956800004, 128.750983035], \"power_mean\": 101.25655365789152, \"energy_millijoules\": 6556.174548620756, \"energy_joules\": 6.556174548620755, \"coremark_score\": 4633.705574, \"coremarks_per_mhz\": 3.7129051073717947, \"ulpmark_cm_score\": 45.758391234887426}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [682.7054805100001, 644.713685595, 626.896158357, 675.321432666, 634.8071665260001, 629.416497308, 733.7330233420001, 640.0784451059999, 669.0961647790001, 694.121172505, 643.54890625, 635.0471204669999, 696.5688890920001, 636.2180158440001, 632.503738895, 694.153853163, 638.701031549, 672.5216644379999, 689.1225285239999], \"power_mean\": 661.5407881534737, \"energy_millijoules\": 3307.7039407673687, \"energy_joules\": 3.307703940767369}}, \"1324800\": {\"active\": {\"elapsed_sec\": 60.995292894, \"elapsed_ns\": 60995292894, \"power_samples\": [148.83763517699992, 78.48719662199994, 90.00073094600009, 147.62081956200007, 88.63984683000001, 91.50342134300001, 150.0925366319999, 89.96556379000003, 90.42418700999997, 145.07293081199987, 83.47580766600004, 88.53416093399994, 143.78012194199994, 88.56944988899988, 87.38482672999987, 118.48361630900001, 86.05964697900004, 83.65070247000006, 143.0500637010001, 82.2210248560001, 92.40490712999986, 136.47187291400007, 115.92350955799986, 87.34977791400001, 137.91473461700014, 112.24319653599991, 86.0244769740001, 99.43390253000007, 111.20637946200009, 86.0244769740001, 88.0178733859999, 122.36186327299993, 86.09481698400009, 104.31926164900005, 148.9518755050001, 87.3145484339999, 81.14054332000012, 148.76154016400005, 92.61734764200003, 82.60521231900009, 146.138090456, 83.51067877800006, 88.85121862200003, 146.17592181400005, 87.3145484339999, 79.711459236, 151.35155251799995, 93.55764308999994, 86.09481698400009, 157.3222712459999, 97.17971333999992, 93.59317013999987, 113.22465712099995, 92.29868687399994, 89.71848732799992, 113.22465712099995, 112.13412460799998, 84.73059047600009, 116.59556892599994, 133.84525935, 91.00861856800009, 85.8841576719999, 128.750983035, 92.22793399799991, 90.42418700999997, 146.10006409100004, 97.28664666000009, 82.74481897300006, 137.46438083200007, 90.90257643199993, 99.21967964999999, 144.88348576599992, 86.0244769740001, 89.82435134399987, 151.0077610620001, 93.41589926999995, 85.8841576719999, 123.69030755400001, 91.00861856800009, 92.26340137800003, 109.31144187000018, 93.38037221999991, 86.09481698400009, 132.77690635, 130.74960320999992, 87.20904065799982, 141.49266579400012, 118.63029655600008, 84.69548014099996, 103.02747306000003, 110.80716431999997, 82.18603347099997, 116.88779135699997, 151.1606226739999, 87.24427013800005, 111.89591593799992, 139.93621765700004, 92.19246661800003, 91.39737920700009, 148.6472998359999, 93.11298154199994, 91.39737920700009, 142.52116572600005, 87.13876236199985, 85.221234901, 146.0622327330001, 88.32297011100002, 87.17381117800005, 143.55326064300004, 88.46376399299993, 90.8671685270001, 144.921257954, 90.8671685270001, 75.90830294900002, 128.93656819000023, 84.69548014099996, 86.69162491500015, 143.74240892400007, 79.57214832900002, 83.37083483399988, 142.5968612160001, 112.13412460799998, 82.04642681700011, 93.41589926999995, 122.177762916, 97.14400786500005, 112.89744133700003, 105.96605962799993, 82.11623014399993, 109.34749715800012, 139.89848886200002, 93.27397326000005, 109.34749715800012, 141.19094099200004, 92.19246661800003, 96.10297304999995, 138.719163642, 91.00861856800009, 92.58206214599988, 146.138090456, 94.63491743500003, 86.41062559300019, 142.48351207200017, 98.29144164000002, 98.3629715400001, 143.59097366100002, 93.94771188000016, 84.59032918900004, 138.60634885799982, 88.4990529480001, 89.68313889800004, 130.41490112999998, 82.15104208600007, 90.61985792899998, 125.27771242200004, 119.51787906000015, 88.35807809699998, 131.67045559000007, 118.55686228600007, 88.42847503799999, 92.93600841, 123.46914471600007, 85.39642647000005, 96.67221225000003, 126.01500086199997, 80.89637822600002, 96.70785824999996, 151.04602552200004, 88.42847503799999, 90.8671685270001, 143.66659409399995, 86.05964697900004, 95.92510864999997, 141.11555823799995, 87.10353288199997, 94.56392687999994, 135.25004998999998, 93.41589926999995, 95.52293810499998, 123.69030755400001, 89.54210772599993, 87.03325458599988, 136.09713947799992, 111.91598075200011, 91.94474060999994, 85.8841576719999, 119.59143228000005, 83.33578397399992, 86.65645490999998, 120.84574020499986, 89.64797174199987, 91.7155056150001, 154.69417371999998, 87.03325458599988, 96.74350425000023, 143.47744581300003, 91.98020798999983, 83.40570594600001, 138.56867953799997, 76.98961627799997, 85.98948732800011, 137.239107504, 97.07278001999987, 89.64797174199987, 133.73315763000005, 102.13054274400008, 94.70590799000001, 138.75663978599994, 115.412904508, 93.41589926999995, 131.2234736700001, 122.28826097199988, 90.76112639100006, 95.45194755, 119.62802029200009, 84.52028857199991, 97.96376894999992, 144.73181290800005, 86.96297628999992, 110.60352650300001, 150.96969282999999, 93.27397326000005, 90.796534296, 144.84551887600003, 91.53864766900017, 84.48517823700013, 149.67306763, 86.92774681000003, 92.22793399799991, 153.51649525200003, 84.66036980599995, 87.03325458599988, 149.82569086800015, 85.708668365, 99.61745758500012, 147.2786329380001, 99.65309829499995, 85.919147318, 111.71448841199992, 100.9476408679999, 85.36131613500004, 111.75066204000007, 107.04424054499987], \"power_mean\": 106.91005293451441, \"energy_millijoules\": 6521.009992053751, \"energy_joules\": 6.521009992053751, \"coremark_score\": 4918.839154, \"coremarks_per_mhz\": 3.7128918734903387, \"ulpmark_cm_score\": 46.0051434310894}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [626.068035684, 691.472816356, 640.9414794310001, 649.5229134250001, 686.511783576, 674.9386113219999, 629.7522008440001, 695.2793573220001, 666.141456874, 636.0376544520001, 663.90734564, 657.3754257909999, 647.195254275, 655.53971302, 646.0919088800001, 634.6273166550001, 661.737658542, 687.5734313480001, 641.0323726070001], \"power_mean\": 657.4603545286316, \"energy_millijoules\": 3287.301772643158, \"energy_joules\": 3.287301772643158}}, \"1497600\": {\"active\": {\"elapsed_sec\": 53.959650084, \"elapsed_ns\": 53959650084, \"power_samples\": [98.29144164000002, 100.04643211000007, 154.80930523200004, 95.71159825000007, 95.85399945000017, 160.89224601900003, 103.3850287890001, 98.29144164000002, 133.397044425, 98.14874866000002, 100.804288509, 129.19653999500008, 94.45734979999997, 100.87605669900006, 144.00717763800003, 138.455864754, 104.60345231400004, 130.26627200999997, 128.41681531500012, 99.47434360000011, 97.82113015499999, 140.8514279200001, 94.386359245, 102.70453390800003, 170.96841170000016, 90.72590006500002, 101.6281505259999, 155.87161489799996, 100.73270434000005, 93.27397326000005, 158.46103136, 95.81835345000002, 95.64048905000004, 150.8550956780001, 103.16937978099998, 103.31302269900004, 152.3387760270001, 99.43851917500012, 95.67595225000014, 159.56075425400013, 120.882387387, 95.71159825000007, 150.77856675800012, 116.93637377800007, 104.4954496900001, 131.59602238499997, 100.661120171, 100.69682024500003, 130.34058657000003, 103.24120124000001, 95.71159825000007, 131.52158917999998, 143.40182538, 97.037074545, 102.74029315200016, 142.06796324100003, 99.40287846500007, 97.60744662000002, 133.24751148000007, 93.20310135, 100.18954609500008, 155.83311253800002, 93.23862840000004, 108.26230733, 155.87161489799996, 108.29854847000001, 105.71357614500016, 162.18497677999994, 95.64048905000004, 99.72456342999999, 155.98692453, 99.36705403999997, 97.14400786500005, 153.24840189600002, 95.60484305000011, 99.25976448000006, 165.75716282999997, 111.91598075200011, 94.386359245, 125.83001021000007, 114.42823311799998, 98.07721876000016, 139.09508413799995, 105.53333665200012, 99.36705403999997, 142.55901347099996, 142.407816582, 95.71159825000007, 147.468671514, 133.28494270500005, 96.85891337999999, 106.43471935800017, 134.50158181000006, 94.35077272000012, 99.04122171999995, 137.05144402099995, 98.00587227000017, 103.99578813700009, 155.83311253800002, 92.99030343000004, 91.767767478, 164.61982826000008, 100.661120171, 101.91524997600004, 162.18497677999994, 105.71357614500016, 97.00155217499992, 137.31413432300008, 99.3312296150001, 106.79133998400005, 136.02223130400012, 95.60484305000011, 101.8433628360001, 151.0077610620001, 126.86183758800007, 99.36705403999997, 103.78032375999999, 128.08283832999996, 99.36705403999997, 112.75213661099997, 123.13711618800005, 99.51016802499998, 116.44955155199989, 163.36164622400008, 84.30998666800008, 119.40773782800011, 153.36335528799987, 100.62523607599996, 95.85399945000017, 150.77856675800012, 94.35077272000012, 100.76858843499986, 159.32926346600004, 100.58935198099994, 108.29854847000001, 158.345364904, 94.386359245, 101.87930640599996, 160.8535055640001, 116.89971611800001, 104.4954496900001, 124.46490746400002, 115.71890163299997, 93.09670239000002, 117.77799605400003, 130.62762534000012, 101.73590077799997, 117.8144657260001, 157.82258886600016, 106.79133998400005, 122.76695974200004, 150.62590137400002, 95.49808785000005, 98.29144164000002, 154.57904220800003, 103.09737369100014, 98.39855308000006, 161.95277412199994, 110.73444413999994, 96.06732705000002, 151.99445021099996, 95.74724425, 99.43851917500012, 164.5032706200002, 97.74990230999992, 101.77166002199999, 150.81683121800006, 104.20750433800004, 99.40287846500007, 131.33521914999994, 103.13337673600006, 89.18934852199993, 136.28450619599994, 110.48048289600001, 106.68298053599995, 134.68865079, 129.48530049, 99.22412377, 95.1322163100001, 126.82489436200001, 96.28083745000015, 108.73251288999995, 135.6099474980001, 102.02289636, 111.46034070600001, 160.73748286800014, 94.31518619500014, 103.02555223200011, 149.52044439200006, 92.95495856999992, 99.3312296150001, 160.54417793100015, 94.35077272000012, 89.68313889800004, 146.8985557860001, 101.95100922000006, 96.96584669999993, 154.425664954, 101.66401363799991, 103.02555223200011, 161.99137507800003, 99.3312296150001, 103.27720428499993, 143.25039011700005, 93.02583048000008, 105.53333665200012, 144.88348576599992, 99.04518536, 93.13222943999995, 153.32497187800004, 118.080480996, 103.06155527700002, 156.97580623800002, 121.88316450299999, 97.97029072999999], \"power_mean\": 117.19796820803724, \"energy_millijoules\": 6323.961355061447, \"energy_joules\": 6.323961355061447, \"coremark_score\": 5560.189046, \"coremarks_per_mhz\": 3.712733070245727, \"ulpmark_cm_score\": 47.43862006049293}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [682.60870587, 658.382650272, 629.633097197, 635.2872285209999, 673.364148328, 640.850586255, 644.12671875, 683.2835409099998, 635.707043373, 641.6988188050001, 697.42985928, 637.053016124, 642.16725564, 694.9509464700001, 640.850586255, 644.713685595, 694.720923864, 630.82953252, 633.550840416], \"power_mean\": 654.8004833918421, \"energy_millijoules\": 3274.0024169592107, \"energy_joules\": 3.2740024169592106}}, \"1612800\": {\"active\": {\"elapsed_sec\": 50.101955918, \"elapsed_ns\": 50101955918, \"power_samples\": [108.2260661900001, 159.599435234, 106.89969943200003, 108.04523219400005, 155.67949799400003, 101.77166002199999, 111.84332838900002, 161.87517426199986, 126.71368382600008, 100.44618364300004, 167.05009306499994, 132.9860687700001, 113.09728007400008, 125.27771242200004, 119.22423197399996, 100.37459947399998, 128.71378971000013, 123.02644001200008, 110.55301661400006, 125.27771242200004, 163.28412669300008, 101.80760359200008, 110.69827051199991, 168.0698607500001, 110.51684298599992, 109.73398715600001, 150.66416583400007, 105.42515590799997, 106.21835786999998, 156.93744196199998, 108.04523219400005, 107.90063933800002, 170.4596034, 104.31550696200009, 111.73425646099997, 168.10895825000011, 100.48206773799996, 100.48206773799996, 150.66416583400007, 101.73590077799997, 104.0995017140001, 172.10908582600018, 106.82752164900012, 113.02450906600006, 160.6602006270001, 131.73241385000006, 99.04518536, 111.73425646099997, 129.29941857000006, 114.13648557199997, 128.60240047000002, 111.73425646099997, 106.61080275300014, 132.8140864500001, 152.37690342899998, 105.46127790300011, 126.34809811000014, 159.36774608199994, 118.15372697300018, 104.56738979400006, 165.64042706999987, 111.77067602600005, 109.66157208300012, 173.32396280700004, 134.08995314999993, 106.03811837700005, 166.8941411599999, 99.18829934500002, 116.75346145399999, 164.42563205500016, 101.41321399799995, 114.39169440800003, 159.52227163800012, 107.93669462599996, 111.6978368959999, 147.468671514, 100.33871537899995, 112.91525901800003, 193.92223183800002, 105.49739989800003, 104.0995017140001, 147.12648489000014, 135.57239712800015, 107.93669462599996, 121.21334544299987, 136.75114387400015, 109.69768654100005, 109.98753299000009, 134.27702212999986, 106.79133998400005, 121.17650935799998, 164.34799349000014, 104.24356685800012, 105.53333665200012, 164.38671297999997, 106.79133998400005, 109.26300994600001, 168.22605025000007, 106.53862497000011, 105.49739989800003, 165.75716282999997, 107.86439819800012, 107.3331372240001, 159.36774608199994, 104.0995017140001, 100.48206773799996, 151.87967493899998, 132.9486375450001, 101.73590077799997, 110.37158908800006, 126.82489436200001, 100.30283128399992, 115.01172820999989, 129.2621657699999, 109.26300994600001, 132.66498275000004, 171.91310805799992, 110.26269527999989, 109.22670933100005, 163.01250941599994, 110.19016156199996, 107.04424054499987, 166.77722727999992, 107.90063933800002, 99.43851917500012, 173.20615774300006, 111.51611260499999, 110.77080422999995, 168.14785525000002, 107.86439819800012, 100.44618364300004, 164.38671297999997, 116.75346145399999, 96.71645768999997, 161.565371744, 110.48048289600001, 109.22670933100005, 137.57701749600005, 116.60701880199997, 101.62825439400001, 137.57701749600005, 161.836573306, 119.26100858400014, 140.08693935600002, 164.42563205500016, 104.17144181799995, 110.95223175599995, 155.44887873000005, 102.88190931400004, 108.515437754, 165.64042706999987, 106.57462108799996, 103.67249925600015, 163.12888835199988, 102.77408481000009, 102.91772772799993, 171.67785417000005, 106.64698441799999, 111.73425646099997, 167.95276875000002, 107.79210177000016, 105.35309715900019, 141.11555823799995, 109.04557857000009, 100.26713121, 153.59326207200013, 108.90056226700005, 104.06343919400001, 150.93142837000005, 137.70402376200002, 100.30283128399992, 104.96333777000007, 130.32970117499985, 96.43118009999989, 113.67982228199992, 130.2923889, 97.8987608299999, 104.85533514600002, 160.27359075300012, 111.73425646099997, 106.68298053599995, 159.29058248600006, 104.06343919400001, 100.48206773799996, 175.3592209609999, 111.55253217000006, 102.84590626900012, 163.16774775700014, 111.44346024200013, 115.35348283199994, 159.40642706200015, 100.26713121, 109.15429425800005, 165.56266986000014, 135.38503041, 104.02756161000002, 122.84204289000013, 126.82489436200001, 107.61126777400011], \"power_mean\": 125.13353697160807, \"energy_millijoules\": 6269.434953214931, \"energy_joules\": 6.2694349532149305, \"coremark_score\": 5988.382538, \"coremarks_per_mhz\": 3.7130348077876985, \"ulpmark_cm_score\": 47.851202259648886}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [660.394249924, 640.6082563320001, 668.8118846760001, 684.66825504, 623.083637359, 626.6724092200001, 674.619702788, 649.2157255, 633.8503045919999, 685.5711798059999, 625.653898359, 642.6224561759999, 694.622366856, 628.169242996, 654.951745812, 698.520674259, 660.4566929819999, 644.591885805, 695.74620907], \"power_mean\": 657.5174093448421, \"energy_millijoules\": 3287.5870467242107, \"energy_joules\": 3.2875870467242105}}, \"1708800\": {\"active\": {\"elapsed_sec\": 47.288751232, \"elapsed_ns\": 47288751232, \"power_samples\": [112.80600897, 140.47432036400005, 134.12744384999996, 114.2093756139999, 147.50675735400023, 129.11353665000013, 119.04072611999993, 139.74796064399993, 179.71652879700002, 111.40704067700005, 147.54464788200005, 175.24105965699994, 111.58876496799996, 120.66174868300004, 179.20211064, 117.71406281800012, 115.68230344800008, 181.51047347899998, 119.04072611999993, 118.33712435500001, 175.47738226499985, 118.89399687600019, 115.207465458, 177.94875278999996, 123.764218014, 121.33067422299996, 184.255413105, 130.32970117499985, 119.04072611999993, 146.213948179, 117.677345683, 118.85722026600001, 149.86369973599994, 119.00394950999998, 121.44117227899994, 153.708018626, 164.19251677499994, 116.53389146999996, 109.48025516500013, 172.89207814600013, 112.35226846400008, 123.28455808000012, 164.11487821000014, 123.9846653940001, 119.44451443800006, 177.86980835200006, 115.24387595999997, 115.28047414499997, 174.027393642, 113.91762806799989, 116.38763680600005, 177.86980835200006, 121.4780680340001, 125.38588054599995, 147.468671514, 115.28047414499997, 118.5203334439999, 153.74640203599995, 127.78567320000002, 117.56738257100005, 154.92443674399988, 165.1347053699999, 117.677345683, 120.29414344499992, 152.94192513000007, 120.25730735999991, 126.89897124300012, 152.71201834599992, 136.37562403700008, 121.06619000600006, 179.043984474, 112.76952992999986, 124.0585049849999, 177.67234578599994, 115.207465458, 113.99051810999993, 181.5899777090001, 120.14717691099997, 120.220660178, 163.88176293000004, 122.73136671400016, 115.24387595999997, 158.11403199199992, 107.61126777400011, 107.71961949000001, 166.85530332999997, 155.29506673799995, 118.74707903399997, 120.25730735999991, 142.645037859, 115.09785858599992, 121.06619000600006, 155.25676182600012, 121.22017616699998, 124.94514953399994, 182.8431577440001, 112.58750887400004, 122.324967518, 171.44280169800015, 118.96736149800017, 124.02149027999997, 164.0372396450001, 118.78385564400014, 119.0775027300001, 175.39867550600002, 120.11034082599997, 112.51473786600013, 170.73371633, 121.33067422299996, 115.06126040100003, 166.8941411599999, 159.0975743140001, 116.424106478, 158.191275002, 146.40422111400005, 125.12693165799988, 124.649601351, 141.42571612199993, 125.08985747799989, 122.28826097199988, 148.91034328399996, 107.64732306200005, 127.19546919599998, 175.24105965699994, 121.4780680340001, 111.44346024200013, 176.49412074199995, 106.46626163999997, 120.11034082599997, 179.08361763900007, 111.44346024200013, 121.40446573300017, 173.16682214799994, 120.14717691099997, 113.8081993159999, 160.505437476, 117.494136594, 125.05297342200015, 155.52568600200004, 152.7504017560001, 112.51473786600013, 121.02954282399992, 154.08027041800017, 112.62398791400017, 119.70157351200021, 142.645037859, 117.494136594, 127.08425866000005, 177.75129022400006, 110.044907664, 112.40548781799998, 176.49412074199995, 118.85722026600001, 125.23796407400005, 175.28051420199995, 113.8081993159999, 113.84473802599996, 181.62952596699995, 117.60409970600006, 117.494136594, 175.28051420199995, 118.74707903399997, 115.13445677100003, 175.31996874700008, 145.189186394, 110.15380147199994, 136.48826070100006, 146.25226837799994, 123.94765068899994, 131.07460725999988, 146.55636916200024, 108.90056226700005, 141.15315272200007, 184.93199440800004, 111.33438831399997, 143.36391796500004, 176.49412074199995, 113.84473802599996, 118.930584888, 186.4870410840001, 115.13445677100003, 121.73577069199996, 181.312120618, 120.03685755900005, 124.16935928100008, 170.22470692000013, 112.66027988200005, 126.41718587300011], \"power_mean\": 135.90725095733512, \"energy_millijoules\": 6426.884181146414, \"energy_joules\": 6.426884181146415, \"coremark_score\": 6344.640893, \"coremarks_per_mhz\": 3.712921870903558, \"ulpmark_cm_score\": 46.678918048665786}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [681.47988935, 654.2709249400001, 644.8965418349999, 688.243703344, 644.34812967, 626.820579606, 698.1903131399998, 632.8024106879999, 631.906151716, 715.4344322999999, 631.756793297, 643.1839062500001, 700.6382261279999, 634.297360722, 629.4545181730001, 694.4910700199999, 643.98241719, 645.6338776800002, 706.6493334359999], \"power_mean\": 660.4463462886841, \"energy_millijoules\": 3302.231731443421, \"energy_joules\": 3.302231731443421}}, \"1804800\": {\"active\": {\"elapsed_sec\": 44.771856025, \"elapsed_ns\": 44771856025, \"power_samples\": [132.14273649999996, 181.43117310599996, 199.75072956999986, 132.50023066500012, 197.76816652200012, 132.5376618900001, 136.37562403700008, 202.74351861000002, 137.55353965799998, 124.94194100599998, 164.61982826000008, 143.74662078799997, 140.21038383200005, 180.89127332200007, 176.29695591400002, 132.50023066500012, 236.84729341000013, 172.61713242300004, 137.55353965799998, 143.28829753200012, 161.2943691559999, 136.2629873730001, 133.397044425, 157.45865476100005, 129.95734380499994, 139.55970363099993, 198.90372872, 128.66726720999998, 123.79997150700012, 187.53999995700008, 133.71581518999994, 138.76875330300004, 181.312120618, 139.98404178399994, 134.8976458640002, 180.45546848999993, 146.1001203300001, 142.45588957799998, 179.12304755700006, 133.56604464999998, 144.8475341300001, 190.08557828200003, 153.81156450899994, 127.37730956500013, 150.8931639100001, 156.09065933399995, 134.8976458640002, 163.32278681900004, 158.86588516200004, 133.67832449000002, 163.400505629, 191.21786457000007, 133.75311363000003, 137.5158703379999, 184.79562017600006, 131.17279585000006, 143.09914925099997, 173.79142727400006, 127.45169621500008, 133.28494270500005, 195.14114971599986, 127.26611105999996, 137.05144402099995, 196.23231621000002, 134.8976458640002, 128.77883456999984, 196.192057524, 123.61508780100007, 134.9727466039999, 193.72714381000003, 137.3655794099999, 138.80648209799995, 186.44705087399996, 136.22557039900005, 126.12049749100004, 184.05646671400007, 164.30907441500005, 132.35088967500008, 192.55492656600018, 170.8939430979999, 136.15035070900012, 145.56867001599994, 171.2858986340001, 138.76875330300004, 140.81383343599998, 194.8991237639999, 136.15035070900012, 142.10561689500003, 196.23231621000002, 126.08355426499998, 123.65210250599989, 192.47455761000003, 133.60353535000002, 134.93519623399993, 201.20627229000002, 134.82273769000005, 136.18796055400003, 196.11112511400006, 130.98632040000007, 136.22557039900005, 191.41859252400002, 161.21676929600005, 141.16117008900005, 184.9549335700001, 161.21676929600005, 138.5429609759999, 154.3487791839999, 158.63419600999998, 137.25276462600004, 149.406221866, 158.82720418200006, 133.64083379, 146.93644631400014, 188.71269216999997, 157.265943354, 143.63291482, 196.1515913190001, 139.79548800600003, 136.18796055400003, 193.807631411, 134.8976458640002, 127.48869880500013, 203.4259823000001, 131.0608722500001, 148.719711178, 187.4601059700001, 133.49125550999997, 133.49125550999997, 261.2733015780001, 144.999444583, 132.2762191800001, 169.55799643500006, 151.15289590500004, 147.42880154299996, 165.79614138, 148.719711178, 144.8475341300001, 159.29058248600006, 190.00544700500006, 142.26674129700007, 142.26674129700007, 178.7275288950001, 139.79548800600003, 136.5258705460002, 183.4197564760001, 134.8976458640002, 137.81664536999995, 196.5151646070001, 138.3545104819999, 130.2552679700001, 197.36353319400007, 133.49125550999997, 129.77116511999998, 196.27278241499994, 149.74738861800017, 133.64083379, 164.86245519, 144.80970277199992, 133.52874621, 159.36774608199994, 139.79548800600003, 137.17761916199993, 167.0889308950001, 193.19849802600004, 137.2904339459999, 164.5032706200002, 191.29811449200008, 142.3423617300001, 131.73241385000006, 181.15351987199995, 129.77116511999998, 136.63850721000017, 191.13761464800007, 137.21509530600008, 136.78856084799997, 201.28747214999999, 144.88556049500005, 137.47839419399986], \"power_mean\": 155.19738569334834, \"energy_millijoules\": 6948.4750077189865, \"energy_joules\": 6.9484750077189865, \"coremark_score\": 6701.364845, \"coremarks_per_mhz\": 3.713078925642731, \"ulpmark_cm_score\": 43.17494121612774}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [631.517789126, 634.0873047029999, 675.034316658, 640.3053828380001, 630.4419415799999, 662.2751322450001, 646.61390094, 645.3590589600001, 677.386921081, 668.0533714599999, 641.6208278639999, 642.78859375, 676.7146545380001, 638.8994600460001, 627.2650907640001, 671.727197484, 639.17144988, 637.3541090279999, 693.071853852], \"power_mean\": 651.5625450945789, \"energy_millijoules\": 3257.8127254728947, \"energy_joules\": 3.2578127254728946}}}}, \"6\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 128.31162167, \"elapsed_ns\": 128311621670, \"power_samples\": [95.21346825, 78.73681938599998, 98.61277595999991, 135.0852051480001, 73.92767937000008, 74.97334911399992, 127.67447469500019, 72.57065528200008, 72.95026956899994, 124.02149027999997, 81.20806912100011, 73.08821441500004, 133.9776733099999, 73.82395396200002, 71.90305621999994, 131.4711949, 68.84086991999993, 78.49307000700003, 129.03903104999995, 70.05994874600015, 70.16313921000005, 137.74149990599994, 81.45264993000012, 66.43681032400002, 106.03300939500002, 68.87526616499986, 81.38266715999998, 108.33460375800007, 72.50168285899997, 68.87526616499986, 102.16630198799999, 86.22442185799991, 81.48746187200004, 116.97303143800002, 104.02756161000002, 76.39987967999991, 73.5818688060001, 108.93686288200013, 78.80638542299994, 81.0009948180001, 107.4302479260001, 73.78931962199988, 82.25583679800013, 127.600088045, 67.65618561000008, 93.41589926999995, 129.03903104999995, 73.82395396200002, 74.90413940100007, 142.7585657069999, 77.54903723699988, 76.46920803800003, 125.23796407400005, 73.85841069000003, 77.61848423999993, 127.2289177350001, 67.45051716199998, 85.11186043400005, 133.9776733099999, 68.80665006599997, 76.36512639, 125.27484813000001, 94.7864474500002, 72.50168285899997, 116.75346145399999, 102.66626030600003, 71.31735660200013, 85.04170078300012, 103.77549384200006, 66.30005270600009, 80.89637822600002, 101.34125881199998, 78.80638542299994, 93.48677118, 132.724434105, 77.54903723699988, 74.58448854599987, 137.62868512199998, 68.73803396699998, 78.70194695099997, 130.2552679700001, 67.58751207, 73.85841069000003, 126.52820598000005, 71.4207257700001, 68.84086991999993, 123.61508780100007, 74.97334911399992, 76.26122296400013, 126.56533963499987, 79.98993994599994, 68.70363772199994, 126.67655017100014, 98.651851545, 77.37533046599992, 129.03903104999995, 111.29796874899989, 67.34768293800005, 72.05291884200005, 101.377018056, 66.09474049799996, 80.79194077200009, 102.45061129800001, 68.73803396699998, 95.74724425, 136.07532389000005, 69.85356781799987, 93.45124413000008, 131.4340148000001, 77.58385000200008, 77.410143231, 130.1808347650001, 78.91082389500002, 82.63602500999991, 127.74867061000009, 72.32898584099996, 73.7548628940001, 123.65210250599989, 73.65113748600004, 67.75901983400013, 130.217955695, 67.38201970800014, 79.92025526400005, 136.413233882, 90.84725255400008, 72.46710799399989, 137.62868512199998, 92.3874367200001, 62.56997130000002, 112.02505268000004, 83.67926100900002, 77.54903723699988, 107.1164183279999, 73.68559421399993, 73.72022855399996, 106.97187721500006, 109.86348013799989, 70.05994874600015, 119.37114981600007, 115.13445677100003, 76.19171638400007, 67.01846965300012, 108.68313089100013, 58.43747080000003, 86.92774681000003, 91.16591332199994, 71.17947204400002, 78.13978307999992, 123.35846853999999, 67.48485393200019, 82.01143543199998, 127.600088045, 82.18126256999994, 68.53200927899991, 127.6372813700001, 75.8101430820002, 73.72022855399996, 128.7045200099999, 76.22646967399999, 71.21398743399993, 126.41718587300011, 83.57411005699987, 68.87526616499986, 128.77883456999984, 67.41618039200011, 70.16313921000005, 137.5158703379999, 76.78145298200002, 83.53899972200009, 128.81608737, 81.17325717900007, 78.70194695099997, 98.32720659000006, 78.73681938599998, 59.82592029, 100.91175677299998, 81.20806912100011, 82.11134059800008, 104.53151221000007, 122.98948478199998, 78.70194695099997, 112.06147224499989, 108.82814719400005, 82.60115389800012, 74.3770377300001, 113.73530927399997, 87.93551548200003, 66.77905593100002, 108.82814719400005, 70.02549302599994, 65.763924438, 125.12693165799988, 70.05994874600015, 88.35807809699998, 128.92765472999997, 72.46710799399989, 72.53608041699988, 140.17259556199997, 72.15646613000001, 83.95960352999998, 140.02163626800007, 71.17947204400002, 81.20806912100011, 131.35927130000005, 68.70363772199994, 83.02086547800013, 137.47839419399986, 69.75037735400008, 67.51901461600005, 138.76875330300004, 88.660028442, 68.63502162300006, 141.2745192330001, 87.30140010599996, 71.07610287600005, 94.52834035500007, 106.03300939500002, 74.8694455860001, 95.81835345000002, 84.90120112200009, 76.19171638400007, 94.45734979999997, 131.28471945, 72.43253312899992, 95.67595225000014, 139.9462535140001, 74.83475177100001, 67.69034629399994, 128.85314913000002, 79.53672080599995, 75.28505969800005, 126.34291856300001, 69.88802353800008, 79.05013480200012, 137.2904339459999, 87.54806085300004, 77.27107069800002, 123.76295680199985, 82.35615737399996, 74.8694455860001, 128.85314913000002, 85.9783574899999, 73.6165031459999, 141.46356386700006, 76.1571413160001, 72.43253312899992, 106.97187721500006, 69.92230256199991, 73.27087019400005, 111.95240031699996, 71.1451336560001, 81.17325717900007, 113.1700510820001, 105.10079891700013, 59.927685209999936, 73.5818688060001, 100.123778851, 83.7141912909999, 74.4116720699999, 96.253018935, 67.00501958200005, 78.27885561300002, 106.14136884300001, 83.67926100900002, 84.38002728499998, 146.2901589060001, 77.44477746899986, 60.80707281000002, 123.87381109799992, 78.70194695099997, 65.1492320100001, 131.21016759999998, 75.008042929, 77.6532970049999, 131.28471945, 78.70194695099997, 69.18430319699996, 136.33820706300014, 76.1571413160001, 69.40652693800007, 141.12351643500006, 67.31334616800007, 71.1451336560001, 126.30597533700018, 81.10327440900016, 69.85356781799987, 118.26992609400008, 69.75037735400008, 68.66924147700001, 131.21016759999998, 73.68559421399993, 74.83475177100001, 128.89040192999983, 67.38201970800014, 72.36356070599993, 123.79997150700012, 96.18179108999993, 77.37533046599992, 97.25627559999998, 96.11056324499987, 71.17947204400002, 92.95495856999992, 86.29488081800002, 68.53200927899991, 92.01549348599997, 96.07485777, 68.46321678900006, 102.02289636, 128.7045200099999, 69.92230256199991, 62.16166152500011, 132.5376618900001, 74.76554205800005, 75.28505969800005, 122.473059132, 72.46710799399989, 82.84597067399989, 129.43592868000007, 68.56622913299998, 73.85841069000003, 139.9462535140001, 64.841798058, 71.07610287600005, 133.71581518999994, 78.52794244199993, 73.68559421399993, 128.59295264999992, 76.05305966800006, 79.81563867199998, 122.17798583400008, 79.88532335400009, 81.17325717900007, 113.99051810999993, 66.12901779300012, 71.07610287600005, 133.79060432999995, 88.27192080800012, 74.66163853, 132.50023066500012, 88.62468001200011, 68.53200927899991, 92.17482098999994, 91.27213357799997, 74.76554205800005, 109.37153947700017, 91.20138070200005, 73.40905233000001, 105.785820135, 119.77938276999998, 72.225438553, 98.22009515000002, 128.77883456999984, 74.83475177100001, 86.7167312580001, 108.68313089100013, 77.30588346299987, 74.30794666199995, 109.75458633000005, 102.199143876, 83.230811142, 132.2762191800001, 67.34768293800005, 81.87164933500014, 126.12049749100004, 78.66725334900002, 79.92025526400005, 128.66726720999998, 69.54399642600004, 66.19739660199991, 137.5158703379999, 66.06046320300004, 72.70860012799994, 134.82273769000005, 77.37533046599992, 87.583168839, 127.41450289000011, 67.27918548399998, 73.54741207799998, 132.42556017000004, 77.47959023399994, 73.54741207799998, 134.785379886, 71.0072490980001, 74.62712263200001, 120.44129888199996, 72.36356070599993, 80.92867637000006, 113.91762806799989, 76.05305966800006, 71.07610287600005, 148.7579159679999, 106.50244330499993, 80.96366775499996, 127.67447469500019, 101.16172528800007, 65.99208439400002, 86.82223903400006, 99.90884232300004, 78.87595146000001, 85.53299869900013, 92.31656480999993, 74.62712263200001, 101.87930640599996, 129.92003152999996, 75.98355308800012, 103.24120124000001, 126.1947648009999, 67.27918548399998, 69.04689460799989, 122.39933818600002, 69.54399642600004, 83.02086547800013, 117.310927505, 62.16166152500011, 80.547775678, 134.86028806000002, 76.01830637800003, 82.74099784199996, 124.97882506200006, 72.36356070599993, 71.0072490980001, 117.310927505, 74.45383147399991, 74.76554205800005, 127.45169621500008, 67.38201970800014, 71.11061826599996, 131.21016759999998, 63.452397409000014, 74.21150852000005, 152.32897159799995, 75.94897802000003, 73.5818688060001, 133.67832449000002, 90.95347281, 64.70510225400005, 129.92003152999996, 82.18126256999994, 74.69633234499997, 104.42350958600002, 83.43384876999994, 74.24620233500013, 104.35138454600008, 75.98355308800012, 69.75037735400008, 109.26300994600001, 117.23768152799994, 80.89386442800003, 74.14229880700009, 111.15266402299994, 73.51277773799995, 84.38002728499998, 106.06900551299998, 68.39460069000006, 86.92774681000003, 108.50200013000017, 80.92867637000006, 69.42454773899999, 136.18796055400003, 77.410143231, 73.33996126199997, 133.64083379, 77.13217669199992, 74.90413940100007, 128.81608737, 80.96366775499996, 60.94288049000011, 143.48124196200013, 82.25118454200003, 76.08763473600004, 156.99618699600012, 75.98355308800012, 69.30333647400005, 136.11293373500007, 73.33996126199997, 71.0072490980001, 123.57826291499987, 68.53200927899991, 84.72571181499995, 110.71637631099998, 81.17325717900007, 81.03347108200012, 101.91524997600004, 79.71102208000002, 71.04176448800001, 107.97293576599998, 93.14302080999994, 72.19104099499998, 110.58937670399996, 106.03300939500002, 74.69633234499997, 78.28437189599993, 107.35795149800003, 70.90387993000013, 78.03552331200001, 105.852472164, 80.9984796970001, 80.61746036000011, 137.17761916199993, 68.56622913299998, 74.34240339000007, 133.56604464999998, 68.46321678900006, 79.46685698599993, 140.934665892, 65.95780709900009, 79.81563867199998, 128.66726720999998], \"power_mean\": 92.35509516171457, \"energy_millijoules\": 11850.232029686767, \"energy_joules\": 11.850232029686767, \"coremark_score\": 2338.397263, \"coremarks_per_mhz\": 7.794657543333333, \"ulpmark_cm_score\": 25.315959995420425}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [638.869169916, 674.6516591929999, 637.705280282, 635.7881474239999, 682.0603714800001, 636.3001291399999, 642.6365625, 674.555953857, 671.5366625610001, 641.408432136, 686.7935297160001, 671.5366625610001, 653.5901040680001, 648.35926197, 666.6090792960001, 647.1639072, 630.82953252, 671.3459643690001, 649.0314443], \"power_mean\": 655.8300976046842, \"energy_millijoules\": 3279.1504880234206, \"energy_joules\": 3.279150488023421}}, \"652800\": {\"active\": {\"elapsed_sec\": 58.986547895, \"elapsed_ns\": 58986547895, \"power_samples\": [148.3002421760001, 129.62210736500003, 157.88269907999995, 150.65566741499993, 131.97715329000005, 162.54719295099994, 188.23241068999994, 136.951989594, 157.88269907999995, 183.22081008500004, 127.00613925500011, 183.77777819300013, 175.7842868340001, 126.08355426499998, 147.46694685799991, 182.0483550780001, 143.14031876, 138.58049628999993, 180.59800954700006, 138.1662534689999, 133.56604464999998, 190.615680708, 133.11711755, 139.19184461600003, 187.10027495399993, 133.07962685000007, 125.82399953799995, 198.21502655000018, 128.14668320999988, 132.01458451500014, 184.47678861500003, 128.14668320999988, 121.80919159000007, 189.6043786339999, 125.63871212100003, 126.89475001500011, 190.69593063000013, 156.726232579, 131.82781230000012, 187.14032463900014, 145.64406681000003, 143.17809094799986, 152.71201834599992, 133.04213615000003, 131.6410400850002, 159.0204107180001, 142.0017781859999, 131.90248279499997, 152.55868154400002, 175.70546143, 132.96734701000003, 136.53839977799987, 171.753363101, 135.54975041499995, 127.86005985000008, 161.88777874000004, 133.11711755, 137.77916922600002, 164.4732693599999, 126.9319433400002, 156.360000282, 194.49588532000007, 129.36149547500008, 128.98894675999998, 186.86059299300007, 133.26669583, 127.00613925500011, 191.83119275399997, 134.44800425400013, 144.46805050800015, 179.3858027299999, 134.33554571000013, 137.21509530600008, 187.95205794599997, 131.90248279499997, 131.49150714000007, 189.3238161679999, 127.9980540900001, 141.699102057, 190.65570251999998, 131.71571058000006, 126.783360775, 161.61616146300003, 138.12871815500012, 134.48536205799996, 168.698149425, 132.96734701000003, 141.85053732000006, 171.24662251400014, 135.474723596, 136.80150548999995, 167.40640625000003, 165.53041281999992, 129.13800451500015, 144.24028233199988, 166.78204925, 133.07962685000007, 141.57671892000008, 169.20709032000013, 129.21243772000003, 130.2923889, 190.21401850200004, 126.74635818500008, 130.06908928500002, 193.08282918399982, 130.42670240000007, 118.86018077200004, 190.53522448799993, 140.254571028, 136.83917481000003, 185.60889708800005, 140.44342157100004, 134.29799533999994, 163.92856911, 136.80150548999995, 131.6782793550001, 172.38172401600002, 135.21203329399998, 127.92354849000003, 177.35636509200003, 142.87493993399994, 132.85506716999998, 181.15351987199995, 169.32453856000006, 142.6475279980001, 140.44342157100004, 176.4873674480001, 130.50144590000014, 138.84421089300008, 151.83077461999994, 131.75314180500004, 136.37562403700008, 191.46922254600008, 137.9027323470001, 130.1435224899999, 184.23761375100014, 129.13800451500015, 141.85053732000006, 188.96291643200004, 126.74635818500008, 134.18553679600006, 192.96199432799995, 144.08837187900008, 133.15441598999996, 191.54979810600003, 130.57599775000017, 142.15321344899996, 191.83119275399997, 127.81198113000005, 131.6410400850002, 190.37472464400003, 140.254571028, 141.77491688700002, 191.54979810600003, 136.65121456200006, 141.73700947199984, 166.66495725000004, 141.699102057, 135.5873602600002, 165.17368392000003, 136.80150548999995, 134.1481789920001, 168.698149425, 181.41259460999993, 127.84923392999997, 158.75004058600007, 182.98199262900016, 129.28687092500002, 134.9727466039999, 180.51850531700006, 136.613545242, 129.8827192550001, 186.540811662, 132.89255787000013, 133.79060432999995, 190.33449653399998, 130.46407415, 138.73121798900002, 190.57545259799997, 130.42670240000007, 115.4362295379999, 195.38418605699997, 137.9027323470001, 126.74635818500008, 195.50537715300015, 139.15425013200013, 134.1481789920001, 181.33297143000004, 130.3147788, 129.06337996500008, 178.41107331600017, 131.79038107500003, 139.15425013200013, 169.98981044000004, 168.93297739000013, 139.11646186200005, 174.76861677199997, 175.310929138, 140.216917374, 136.0002970710001, 165.45253696500004, 132.78027802999986, 135.01010440800007, 174.02039673399986, 145.377856554, 126.30597533700018, 196.67584357800013, 126.59777562, 138.693489194, 192.7606718709999, 127.84923392999997, 129.10069223999994, 199.18274419500005, 130.2775987, 133.04213615000003, 189.20351625599994, 124.20178827399991, 137.86500355199996, 193.0424819289999, 130.2775987, 128.87720128000012, 191.83119275399997, 135.362086932, 126.6349689450002, 185.6886724300001, 167.83830241500004, 140.44342157100004, 191.71053601800008, 151.524297854, 146.43897952299994, 140.17259556199997, 164.20101918, 138.92790808400002], \"power_mean\": 151.14440286311591, \"energy_millijoules\": 8915.486558546361, \"energy_joules\": 8.91548655854636, \"coremark_score\": 5087.332542, \"coremarks_per_mhz\": 7.7930951930147065, \"ulpmark_cm_score\": 33.649313251717125}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [647.3171255100001, 695.022264176, 661.837443968, 645.0538094, 701.0630220449999, 634.6850984310001, 633.667346778, 686.3386427410002, 621.0343115640001, 644.8095783800001, 701.2955403039999, 688.1292538890001, 641.226289544, 702.516048234, 649.8596091679999, 638.6574496740001, 662.905756128, 681.0283296, 638.687739804], \"power_mean\": 661.8491925967369, \"energy_millijoules\": 3309.2459629836844, \"energy_joules\": 3.3092459629836846}}, \"806400\": {\"active\": {\"elapsed_sec\": 47.829987221, \"elapsed_ns\": 47829987221, \"power_samples\": [174.13835570699996, 212.70917600999996, 166.50896824999995, 157.82348234199992, 220.3026345369999, 176.4873674480001, 152.77557804399999, 216.75201164399994, 181.57143264599995, 153.87324368999998, 177.51425396800016, 172.80836875800003, 160.5971642599999, 173.6734440900001, 180.35990457100002, 156.53352117200006, 180.95496315399998, 217.83774661799987, 160.24876078599993, 173.59485597600008, 216.54504773299993, 173.74461958100005, 155.28224098199996, 207.74175340400006, 153.565817154, 167.76018926999996, 212.83286253799997, 170.30580837799994, 163.96754766000004, 215.21126180999988, 165.02391947, 156.99618699600012, 215.33530457799998, 161.30588406000004, 155.32080301199983, 226.5205903760001, 186.46071229200015, 155.08982633999995, 216.54504773299993, 187.431667306, 152.58375790500008, 183.53916520400003, 174.95591086599995, 149.814113109, 179.98017457000003, 167.68187532000002, 150.08179105499994, 178.56919948200016, 219.9700235260001, 148.94540478200008, 159.22938648900003, 217.63027293000005, 167.68187532000002, 156.726232579, 218.92689528000017, 159.78395752200004, 151.71582122799998, 211.37155179, 166.31368125000006, 150.50256820799984, 218.80231756800015, 154.89741169800004, 158.5334489820001, 225.18181240500007, 166.35277874999997, 156.30218825999998, 219.00987598200004, 170.18818143400006, 146.400834208, 228.72893075799993, 163.73407613999996, 160.05496011000002, 187.2202186259999, 155.05126431000008, 154.70499705600002, 186.04796908600008, 169.95292754599996, 160.17116092600008, 189.44411608000007, 206.32706438599996, 157.5531122100001, 163.34509020000007, 196.39278729000011, 159.97755922400006, 162.12053661200002, 206.20426904199996, 163.96754766000004, 161.81025920900015, 203.86190670000008, 162.52218991000007, 164.59000512, 211.41279155999996, 152.50706927800002, 153.41200516200013, 229.853436042, 150.08179105499994, 154.97433800399995, 217.63027293000005, 157.63047416999996, 143.82277234499998, 213.91885999500005, 156.186521804, 167.4864920550001, 191.790904974, 166.27478424999993, 161.07332546700002, 198.29598911999983, 160.01635915400004, 158.84277661500005, 204.55565509500002, 186.18098064600008, 157.63047416999996, 166.00150275, 196.35226161000014, 157.5531122100001, 156.0135352740001, 191.42914137000002, 163.57856171999993, 157.22751990799998, 195.10133766000013, 166.15769225000008, 155.85968266199995, 223.88899407000008, 162.48327083499998, 152.084986115, 218.84391457800007, 159.93875929399996, 146.21049886700007, 214.96317627400003, 159.78395752200004, 150.00533971799996, 194.77823057700004, 162.4443517599999, 161.07332546700002, 203.01858720000018, 149.89056444599998, 154.85884966800006, 204.14766646499993, 155.08982633999995, 168.69808090999993, 196.716369258, 178.79163444200003, 156.14809835799997, 165.80641624999998, 191.14754011800017, 150.00533971799996, 164.78449809000006, 188.8026538779999, 161.15084499800003, 171.832034291, 188.72231660799991, 163.50060462, 163.37681288, 218.63635616400006, 156.186521804, 155.83972049500005, 213.712489614, 150.04346711999995, 161.22836452900003, 217.38168792600004, 162.4443517599999, 153.75793405800005, 203.57635659000005, 157.51462959399998, 158.80403616000012, 205.36216648800007, 166.31368125000006, 158.22412134899992, 209.15712787799998, 161.189505124, 161.22836452900003, 201.52290485499987, 193.64879448800002, 157.398785018, 162.0170402750001, 191.26819685400017, 161.11198559299999, 163.2213361649999, 189.85279070399997, 156.10947685300005, 158.40250685799992, 193.6085949720001, 157.398785018, 160.868365822, 217.42301225400013, 151.1028676960001, 164.82912973500004, 221.26221221799995, 165.88441075000003], \"power_mean\": 176.1633853107249, \"energy_millijoules\": 8425.89246822007, \"energy_joules\": 8.42589246822007, \"coremark_score\": 6274.444189, \"coremarks_per_mhz\": 7.780808766121032, \"ulpmark_cm_score\": 35.604536983056654}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [678.2643153, 645.9104304, 674.9486027519999, 692.2849912049999, 635.87850624, 645.29804042, 699.875846752, 645.787998865, 649.736464069, 710.62295256, 641.42, 643.2206205599999, 703.6364546619999, 642.1195312499999, 642.3628125, 681.66788293, 628.29390741, 639.820722992, 721.8703405260001], \"power_mean\": 664.3694958627894, \"energy_millijoules\": 3321.847479313947, \"energy_joules\": 3.321847479313947}}, \"979200\": {\"active\": {\"elapsed_sec\": 39.335037485, \"elapsed_ns\": 39335037485, \"power_samples\": [199.6622225100001, 208.069612451, 235.94057615999998, 205.87688488000003, 209.52658263, 266.775470607, 199.6622225100001, 218.00346995400002, 261.049632716, 198.41195156499998, 208.45933919400022, 257.16426104000004, 207.2909208929999, 201.19742179000002, 248.40867956, 200.87193872500006, 200.06863929000008, 259.7080218619999, 203.3723622750001, 192.39816730300004, 246.9868252619999, 214.59104796999986, 212.25572933800004, 265.6571429679999, 202.882608195, 197.1213034, 269.2348858900001, 209.66848931899995, 199.45911848999992, 232.81835215600006, 204.58573071, 200.70909267000002, 228.06535624800017, 193.36656902000016, 207.16794742900004, 235.07098853500008, 238.05904984999995, 205.75408953599992, 240.50352343200007, 238.35623824999993, 197.2428513200001, 204.10678374000008, 243.23280444599993, 195.62425413799997, 201.4008225749999, 238.31368925000004, 192.11635724500002, 201.685541865, 257.84984974200006, 200.6277741649999, 202.93694070000004, 263.24468615399996, 207.08603530999994, 215.6757142240001, 255.74074279800004, 207.88470209399998, 194.495589699, 253.40952665999998, 205.59029232199998, 195.70509767400006, 249.7448397180001, 189.41110668600004, 200.87193872500006, 246.28943123599993, 199.62172695000015, 204.54478831500012, 243.7025848070001, 237.23333663000005, 203.00504671500005, 243.7025848070001, 223.26275764799993, 188.20115431800002, 211.74207526199996, 234.47888690999991, 205.181114686, 200.47484733, 238.27135844999987, 193.20514931399998, 205.44384131700008, 263.68140604199994, 186.8711675059999, 220.26097805200004, 260.57070386199985, 200.50569188499992, 201.83680644999993, 258.240691158, 205.38570350400005, 200.79041117499992, 260.78835812399984, 203.16836796000007, 215.592758494, 247.287144593, 208.13100526199992, 209.4220410920002, 258.5012521020001, 196.79724498999985, 200.66853793999996, 249.70175505300006, 228.9809372699999, 216.80123022599992, 244.61109860999989, 226.93314547800014, 195.66477981800006, 221.51208012200004, 223.220922738, 205.344701634, 214.16658929100004, 223.13746745599997, 201.7961925499999, 216.710533779, 266.994608694, 206.88114972699998, 217.796209278, 263.1136926180001, 193.16494979800007, 208.45933919400022, 256.687293342, 206.4088578599999, 204.87190755300014, 251.9005363089999, 194.33393239800012, 205.03525721100016, 258.284192343, 198.1280630949999, 220.09477935799998, 264.31991453199987, 200.6277741649999, 203.24992375499994, 256.81739569399986, 199.41862293000008, 200.58701039000005, 270.61656667, 200.46492811000007, 198.1687079200001, 243.61723003800012, 205.672296062, 205.99968022399992, 244.61109860999989, 208.0489744979999, 203.24992375499994, 247.15846778500008, 239.270275568, 200.6277741649999, 255.65420080100012, 223.17930236600012, 202.882608195, 215.37651056599998, 238.05904984999995, 199.01220615, 222.88829426400014, 215.592758494, 195.50288492200002, 226.646237392, 263.2011711780001, 205.46749697799999], \"power_mean\": 220.33430226805808, \"energy_millijoules\": 8666.858038945385, \"energy_joules\": 8.666858038945385, \"coremark_score\": 7630.093087, \"coremarks_per_mhz\": 7.792170227736928, \"ulpmark_cm_score\": 34.61462027552779}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [697.0675604310001, 640.588790472, 635.7881474239999, 685.2015087689999, 641.87625, 659.144425632, 687.462543988, 648.9364161279999, 642.519723825, 692.31784032, 638.1436048020001, 641.9675, 697.3646648579999, 670.8375447030002, 651.440519808, 695.781530976, 685.4290357220001, 646.8267639299999, 664.005633222], \"power_mean\": 664.3526318426316, \"energy_millijoules\": 3321.763159213158, \"energy_joules\": 3.321763159213158}}, \"1094400\": {\"active\": {\"elapsed_sec\": 35.205617434, \"elapsed_ns\": 35205617434, \"power_samples\": [225.641276413, 260.1351716439999, 232.97548009000002, 240.43483550400003, 267.3452746769999, 236.72433391000015, 230.34578760600016, 273.60161983499995, 232.84876377, 245.39016453900012, 289.69026246500005, 270.3524409900001, 231.59522742600006, 241.04457555400018, 274.05671275, 234.18294474000004, 233.90458845000012, 278.83622399699993, 240.26438173500014, 238.61109584999997, 289.7712921420001, 242.80581117999998, 223.68024859600018, 296.56194976999996, 239.01506056000005, 231.38440362400013, 303.83428312500007, 227.80505072000005, 225.30628941999998, 296.5166036900001, 231.38440362400013, 236.51232207500004, 275.177413826, 232.7643585500001, 239.01506056000005, 294.28476294899997, 225.18064240399997, 230.30381202, 280.752521226, 232.84876377, 239.10005939400003, 265.83212605999995, 272.719128295, 237.80419224999991, 241.00206705000016, 270.26447447500004, 226.5974681460001, 241.37178420600003, 266.380886919, 236.51232207500004, 242.409449118, 293.4270747149999, 242.76302408499998, 237.44534846500005, 284.05995061, 232.80666965, 227.84690796600012, 295.172845798, 237.76164325000002, 228.97038247399996, 294.104087142, 230.093284983, 234.18294474000004, 286.2004430960001, 226.42984493400013, 241.17253929800006, 292.9449822419999, 229.138480266, 237.63421444999994, 296.4714901540001, 238.71745538800008, 228.97038247399996, 292.53916998599993, 250.176980242, 237.46445485000004, 255.17788610800017, 260.0917750079999, 235.17835838999997, 257.2509216820001, 250.090913214, 230.13526056900002, 264.75700364600016, 295.92826737000007, 236.30031023999993, 258.7183118610001, 300.08293611299996, 232.67995333, 230.472147102, 297.62994104899997, 232.7643585500001, 241.51370291000012, 293.96887020299994, 235.13592834000008, 234.30983917999993, 288.43287661500005, 236.38507139500007, 230.59850659799997, 290.26590168000007, 235.05128582999998, 242.42138558800002, 287.494047819, 239.881024863, 230.17745252400005, 287.8080925600001, 238.759845552, 236.3427997650001, 265.91984252, 241.51370291000012, 233.80226141999992, 254.62051472999997, 240.094146777, 233.67536698000004, 267.3015821910001, 288.747107721, 230.05109302799997, 268.336410375, 295.03721880600006, 232.72226442999988, 243.06209490799995, 280.0407355619999, 242.42138558800002, 237.88907204999998, 288.747107721, 242.42138558800002, 225.599322358, 290.88486767999996, 228.88611751400003, 233.14450750999993, 296.290338378, 238.759845552, 235.09371588, 286.3794624520001, 237.25214625, 233.844631995, 292.4940025259999, 240.00881048700012, 237.63421444999994, 268.59982357499996, 256.166883934], \"power_mean\": 252.82461679512232, \"energy_millijoules\": 8900.846736786727, \"energy_joules\": 8.900846736786727, \"coremark_score\": 8525.391458, \"coremarks_per_mhz\": 7.790014124634502, \"ulpmark_cm_score\": 33.704658542216656}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [685.4939718810001, 643.068292545, 642.1803125, 688.1292538890001, 653.094990524, 643.3120486800001, 681.829415525, 655.0454828049999, 637.3733631929999, 699.4118119520001, 630.262902101, 640.3459856640001, 708.15140284, 630.41226052, 642.794008185, 698.1591071070001, 667.883832796, 645.5739401349999, 700.6977824319999], \"power_mean\": 662.8010613302106, \"energy_millijoules\": 3314.0053066510527, \"energy_joules\": 3.314005306651053}}, \"1209600\": {\"active\": {\"elapsed_sec\": 31.850182383, \"elapsed_ns\": 31850182383, \"power_samples\": [266.33719443300004, 265.3069518699999, 311.102817148, 263.620257497, 267.54639629999997, 319.9413726160001, 269.560290085, 263.882600809, 329.60852628, 325.7697474780001, 259.87389705199985, 305.76839793, 261.166363672, 270.1324116349999, 298.30986012899984, 260.04815467799995, 262.458949242, 311.4247659260001, 283.79190395399996, 267.3269604750001, 302.763209565, 297.267395156, 266.16174883200006, 280.974925674, 290.92997566500014, 265.548027057, 286.9169807239999, 287.2698618080001, 261.079228061, 265.83212605999995, 311.102817148, 263.48931045000006, 263.57668335100004, 331.87472342800004, 261.079228061, 272.23366725000017, 319.7557041980001, 259.9175173819999, 261.210043477, 318.36802242, 263.40171294000004, 258.969054358, 323.315566762, 263.48931045000006, 269.64825659999985, 309.8540303330001, 268.66353599, 249.74642385000004, 319.7557041980001, 279.68484273, 264.781552766, 317.11953237, 258.53411792200006, 268.5316512700001, 300.7644029339999, 254.8314956470001, 268.18003396000006, 285.5777341559999, 268.39976655, 258.4472199900001, 295.53444036400003, 302.262067836, 262.0659686340001, 248.06763104100003, 303.37795500000004, 269.51619375999996, 261.9512561680001, 300.87688148999996, 270.98505825000007, 259.360206746, 300.92246547000013, 265.85500055399996, 281.56118931000003, 325.9098303899999, 263.40171294000004, 262.789653415, 314.6646974550001, 253.23685242600015, 255.99356265000006, 317.11953237, 263.44551169500005, 264.60656967399996, 306.8029601699999, 253.40969913000004, 262.19696217, 310.12956270100005, 254.65818918000002, 262.15322289000005, 298.74292216800006, 259.83050041599995, 276.9659327620001, 304.9918418100001, 293.4270747149999, 262.28421642600006, 272.0128176200001, 292.08842189799986, 262.2407014500001, 270.74862951, 290.74977504800006, 268.3119186800001, 264.49466033400006, 283.25581064200003, 259.6998631199999, 274.49855205000006, 327.11154618, 257.11189117799995, 264.3438701219999, 325.8165217379999, 273.43800150000004, 265.89869304, 312.075595626, 268.22407081000017, 264.6502029899999, 306.71143236, 253.32327577800004, 260.94841264499996, 315.77459019599996, 260.77391742400005, 268.39976655, 318.2754260270001, 306.84860643, 260.77391742400005, 318.36802242, 292.1785251900001, 257.15516928, 268.18003396000006], \"power_mean\": 280.6000390646667, \"energy_millijoules\": 8937.16242088656, \"energy_joules\": 8.93716242088656, \"coremark_score\": 9423.886411, \"coremarks_per_mhz\": 7.790911384755291, \"ulpmark_cm_score\": 33.56770145509342}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [682.31401331, 644.1073161600002, 637.5993144659999, 667.1370511280002, 689.1533524820001, 660.959274568, 674.9486027519999, 700.2329165069999, 641.5721875, 634.4747797530001, 679.227527655, 669.9794028389999, 643.3120486800001, 690.405641917, 659.896018434, 639.669130606, 694.891481116, 640.4068038239999, 635.908522696], \"power_mean\": 662.4313361259474, \"energy_millijoules\": 3312.156680629737, \"energy_joules\": 3.312156680629737}}, \"1324800\": {\"active\": {\"elapsed_sec\": 29.13882952, \"elapsed_ns\": 29138829520, \"power_samples\": [343.3027404899999, 296.995427524, 325.50047005399995, 361.9444833179999, 296.8594437080001, 297.9019086809999, 340.61616886, 306.28662882000003, 294.149314077, 334.37110999799995, 291.81788039399987, 295.44409978199997, 349.2620502179999, 301.897622403, 309.2890865349999, 358.050738334, 301.66987326599997, 289.27668260400003, 356.8026045240001, 297.1314113399999, 293.38184778000004, 361.5089780999999, 303.149908125, 298.198507578, 350.5578432320001, 298.016880612, 296.01872698600016, 356.561789943, 309.073669825, 305.37183221500004, 361.46047809000004, 305.64629469500017, 287.000746432, 360.50290607399995, 298.06234564199997, 298.06234564199997, 333.7344151830001, 304.07846725, 315.26626113, 345.85117716, 302.92186125, 298.1530425479999, 335.8080619939999, 326.64416952199997, 301.53317697, 350.36647779400005, 336.5370563, 296.76886544699994, 310.35909437400016, 318.04381602600006, 300.0124222180001, 315.2186121110001, 305.4176542900001, 292.9305061619999, 321.190278381, 350.12714801100003, 297.699324864, 294.8871678820002, 344.12290372999996, 297.9261837060001, 287.673534872, 330.2981669249999, 291.5925063499999, 294.013865205, 322.98945947100003, 300.5129109420001, 297.72075215899997, 357.954343356, 307.91344733000005, 296.4517251089999, 357.85794837800006, 304.26104828999996, 307.63827237, 361.55722939199995, 294.0880620999999, 295.837807754, 354.73675957800015, 295.2041253540001, 298.334669514, 354.0182197749999, 301.487533515, 286.2385600760001, 357.71323200999996, 296.360913999, 295.38504458599994, 372.55126988999996, 318.6424087160001, 296.6328816309999, 331.0759506820001, 299.0377401700001, 299.2648957770001, 345.6607608820001, 293.95243510800003, 295.33993105000013, 359.061555302, 296.315741293, 307.867506305, 362.80506643700005, 320.075319597, 289.186816602, 321.043943418, 308.6603712730001, 296.6328816309999, 329.65547896499993, 295.24923889000013, 302.92186125, 322.34599286599996, 332.18198250600005, 308.9359036410001, 333.49924205600007, 346.19345012200006, 306.48225990000003, 294.9468782240001, 332.74659137000015, 294.13311627199994], \"power_mean\": 316.4146313081739, \"energy_millijoules\": 9219.951999322535, \"energy_joules\": 9.219951999322534, \"coremark_score\": 10301.490282, \"coremarks_per_mhz\": 7.775883365036233, \"ulpmark_cm_score\": 32.538130352744076}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [657.2059683580001, 680.7056922300001, 643.8326543000001, 642.67205184, 674.27741856, 663.2766648579999, 643.9546913800001, 686.551107788, 659.019539516, 666.031102492, 643.31360456, 681.47397741, 637.7504544479999, 657.1999411200001, 661.461039616, 646.4589140100001, 667.073895811, 688.4019059400001, 657.268452988], \"power_mean\": 660.9436356434211, \"energy_millijoules\": 3304.7181782171056, \"energy_joules\": 3.3047181782171053}}, \"1555200\": {\"active\": {\"elapsed_sec\": 24.758203949, \"elapsed_ns\": 24758203949, \"power_samples\": [381.9425580100001, 454.35241318, 398.2600657999999, 389.22864938399994, 463.9624343140001, 386.3382356249999, 395.365613809, 457.67284640599996, 392.9725080960002, 389.27851809899994, 458.9724600610002, 396.7122796259998, 387.435178962, 458.866057531, 381.6955074719999, 384.2878307819999, 460.27191953400006, 400.6572388899999, 386.785218129, 456.63440368199986, 387.83288658599986, 385.385665303, 442.3979702039999, 386.63622396100004, 387.53454201, 428.82237619500006, 396.812473578, 390.425311704, 442.1890351919999, 427.8933911039999, 391.622111421, 407.3824341650002, 424.20515456399994, 397.95887013599986, 402.65973056999997, 423.99927888599996, 392.7227847270001, 399.0630823219999, 406.689090888, 400.25477930199986, 405.00367835399993, 450.19028546799996, 392.622690057, 386.3382356249999, 450.1375007229999, 380.2516748589999, 386.88446253200004, 456.21029115400006, 396.26102048999996, 389.5769631779999, 449.8741183799998, 393.81901500000004, 403.25194115, 465.10190850899994, 386.28848586000004, 385.841503356, 453.71794156399983, 401.19886666499997, 395.16520593199994, 449.92690312499985, 388.9299485680001, 401.148661599, 436.9364824920001, 401.3499994409999, 400.15422902599994, 441.61406107799985, 390.2757831759998, 399.15511593600013, 450.90933964199985, 391.322698125, 398.6527015480001, 448.67670187499994, 410.02668937499993, 390.126254648, 414.60707617799994, 402.54591000000005, 394.01892832400017, 430.959754234, 401.400463296, 393.76890819000005, 428.61605292900026, 435.84708375800005, 386.28848586000004, 435.95281761699994, 427.42876595999996, 391.3724294429999, 408.1930550750001, 423.79340320799975, 395.06513062499994, 398.410663632, 422.54722841299986, 378.90659567399985, 401.3616077899999, 448.202987355, 391.322698125, 406.3018609139999, 444.7809845200002, 399.95286998999995], \"power_mean\": 411.15067601867344, \"energy_millijoules\": 10179.35229063954, \"energy_joules\": 10.179352290639539, \"coremark_score\": 12125.621438, \"coremarks_per_mhz\": 7.796824484310699, \"ulpmark_cm_score\": 29.471423272762266}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [648.751935601, 655.9548662880001, 667.010578141, 700.0005688410001, 639.9514473439999, 668.168646954, 677.5573571, 652.445014876, 644.47374112, 686.3233323559999, 650.9773007790001, 643.2206205599999, 674.985710659, 641.42, 635.6376009720001, 694.462969956, 646.3056957, 645.7268616799998, 702.636800345], \"power_mean\": 661.8953183827368, \"energy_millijoules\": 3309.4765919136844, \"energy_joules\": 3.3094765919136844}}, \"1708800\": {\"active\": {\"elapsed_sec\": 22.569447231, \"elapsed_ns\": 22569447231, \"power_samples\": [458.866057531, 522.7578916740003, 459.36812574600003, 460.18790612700013, 517.7166637500002, 464.194074432, 459.10236831, 511.7643867270001, 466.73837955700014, 467.82302618999984, 499.943733846, 466.6314189500001, 467.930105442, 503.704221167, 465.3325761399999, 463.713682329, 516.1193923600001, 466.4708405580002, 461.59281836000014, 508.41585924000015, 494.04400955000006, 452.87216048000005, 451.0460800139999, 497.72475760999987, 452.9778152140002, 478.8741168299998, 502.543993623, 460.1348593490002, 480.22867705499993, 477.4686265199998, 461.59281836000014, 485.1102653779999, 520.2113156500002, 457.69781231699994, 469.941811747, 517.6606061250002, 473.83788828800016, 463.05560948200014, 528.6500040440001, 456.55904899200004, 462.0724143440002, 518.2338648499999, 461.2730877040001, 460.9330219520002, 518.7377676299998, 471.24020105800014, 467.6622696779998, 511.2634040790001, 462.62891674599996, 457.91034455, 526.1600285740001, 470.2102420140002, 458.88987161399996, 499.778343294, 476.111766042, 461.5397124120002, 494.92115172800027, 463.7669068110001, 465.1188922160002, 501.9612214059998, 457.27302067799997, 462.308828682, 505.64712133800003, 508.10704370400003, 457.5916826140001, 463.33973919000005, 489.92139590700003, 462.522038026, 478.76608764, 484.996431262, 461.06011642800013, 482.50496887500003, 522.8220882570001, 462.5754773860001, 467.4876537320001, 521.119759462, 471.24020105800014, 469.99533227300003, 527.2357047810001, 450.170875542, 463.87390448099995, 509.9629422380001, 463.713682329, 457.69781231699994, 519.5945235240001, 470.049128678, 456.66506004999997, 523.4971945929999, 465.011775596], \"power_mean\": 480.19967218434834, \"energy_millijoules\": 10837.84116170815, \"energy_joules\": 10.83784116170815, \"coremark_score\": 13301.999734, \"coremarks_per_mhz\": 7.784409956694757, \"ulpmark_cm_score\": 27.680789515530886}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [692.355893196, 643.4356416400001, 632.8574829629999, 676.1772858899999, 632.257521054, 640.528128256, 703.654961524, 644.7480380599999, 660.1464260729999, 700.98599844, 648.5672969929999, 641.1159375, 704.977239588, 628.0862159339999, 648.721109806, 695.97772506, 634.764183992, 664.5274106879999, 692.8832284920001], \"power_mean\": 662.4614592183684, \"energy_millijoules\": 3312.307296091842, \"energy_joules\": 3.3123072960918423}}, \"1843200\": {\"active\": {\"elapsed_sec\": 20.895837076, \"elapsed_ns\": 20895837076, \"power_samples\": [529.7253240109999, 529.7816862489999, 576.7037779500001, 537.8732577980002, 536.294571333, 582.5754617999999, 534.1406104580001, 542.9243377170001, 604.6806511119999, 529.0466529389998, 530.290750074, 596.0893962109999, 534.0271204860001, 533.856739654, 588.6218036979999, 536.458304946, 537.3608048850001, 586.1892774199998, 525.3708358740002, 535.271217621, 576.8213041859999, 531.421594916, 539.5665971039998, 580.49623068, 539.0035090260003, 542.6255585619999, 595.139818846, 558.8632192619998, 542.3396094300001, 545.7304058499999, 562.366970328, 565.515190266, 553.9078158, 570.0093998140001, 538.7755799220001, 558.7775281799998, 558.6314911840002, 541.2101299360002, 562.0525806260002, 605.924451482, 534.9300997170001, 534.8734414350001, 601.0052762329999, 526.3891471409997, 533.1234287750001, 624.1656736960001, 534.8734414350001, 549.0220490700001, 584.64925395, 536.173840612, 539.5736247540001, 593.23960923, 539.909141136, 537.8629846020001, 589.628058495, 533.51597799, 540.7530274329999, 593.4782917140003, 541.2101299360002, 536.1171231600001, 572.919712359, 532.3292465999998, 536.173840612, 586.2483630300001, 526.0505240849998, 542.1106737940001, 592.1748035989999, 538.6613224020002, 533.51597799, 592.2344913440002, 560.716366252, 536.00310354, 559.4689049259998, 553.4252141549998, 532.3860779850002, 554.6953880969997, 544.6549883840003, 517.3374301499998, 563.530070259, 548.3895762600002, 531.0247751850002, 569.583719749], \"power_mean\": 553.7145092549634, \"energy_millijoules\": 11570.32817200901, \"energy_joules\": 11.570328172009011, \"coremark_score\": 14367.816092, \"coremarks_per_mhz\": 7.7950391124131935, \"ulpmark_cm_score\": 25.928391618637175}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [695.944638045, 657.143643945, 647.2810884500001, 695.9115510299999, 650.884625235, 630.916416992, 666.568166216, 657.1124016300001, 635.683547093, 661.74334288, 689.292818599, 647.127573375, 669.0726261359999, 690.2193714709999, 644.8091752449999, 664.189704093, 689.816608964, 644.5031749899998, 634.914730444], \"power_mean\": 661.7439581491053, \"energy_millijoules\": 3308.7197907455266, \"energy_joules\": 3.3087197907455264}}, \"1939200\": {\"active\": {\"elapsed_sec\": 19.873293169, \"elapsed_ns\": 19873293169, \"power_samples\": [656.94881289, 605.2015809539998, 591.2285924820001, 655.07907189, 586.60248516, 596.4958900260001, 661.1104444739999, 596.3164198180002, 601.1078762100001, 661.1104444739999, 598.562676042, 595.01395069, 650.039683812, 596.4958900260001, 596.5558158659999, 650.3514660940002, 592.5241745700002, 601.693460232, 649.9150349859999, 591.1025668260002, 604.9004880499999, 658.4360055700001, 615.9114357450001, 601.2282036900001, 620.2719821750002, 607.4465316100002, 597.2600182470001, 641.8291663499999, 617.33654875, 595.778316506, 629.9982576660002, 614.543423778, 585.12208166, 632.3679002490001, 641.8945947059999, 591.4003933690001, 590.804740283, 646.9930574340001, 608.2061470189999, 591.1692699979999, 630.7696638290001, 660.5442313619999, 594.9607054620001, 639.7190131749999, 599.565239689, 592.3535607430001, 650.596128978, 601.8738216240001, 597.8433702500001, 653.0225281999999, 597.200340549, 598.6824577, 661.8498054919999, 585.83116406, 599.6854482189999, 642.6405493100001, 609.3920156420002, 594.5955001489999, 647.4289775460002, 598.5026312520001, 599.565239689, 652.0924701000001, 600.987857262, 604.659737506, 652.155073875, 634.065565098, 605.8418895060001, 598.3828495940002, 633.193060434, 604.599395146, 612.268500252, 622.00246369, 598.2630679360002, 617.12681088, 625.7953745420002, 595.8379350340001, 610.9037309960001, 655.5073979699998], \"power_mean\": 616.7520573476667, \"energy_millijoules\": 12256.894448254081, \"energy_joules\": 12.256894448254082, \"coremark_score\": 15107.261557, \"coremarks_per_mhz\": 7.790460786406765, \"ulpmark_cm_score\": 24.476020517801974}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [634.402903452, 643.8936728400001, 670.5943497860001, 638.76767644, 647.618884725, 669.470983173, 645.6621158099999, 637.5388895400001, 696.2403390029999, 650.8536804900001, 675.8565948199998, 703.2210462840001, 643.09980438, 628.2950248080001, 694.4958281240001, 653.107496733, 638.487830596, 699.4028109689999, 642.09311145], \"power_mean\": 658.5843707064737, \"energy_millijoules\": 3292.9218535323685, \"energy_joules\": 3.2929218535323685}}, \"2169600\": {\"active\": {\"elapsed_sec\": 17.763769056, \"elapsed_ns\": 17763769056, \"power_samples\": [781.0722130020001, 782.797678524, 800.5400703240002, 792.6620747700001, 785.9717528340002, 822.3442645380001, 791.21361314, 780.1100482020004, 805.2291715960002, 830.044132815, 780.0411960420001, 806.4050421220002, 831.533018248, 785.9717528340002, 790.7343269999999, 824.3684861640002, 790.1749307749999, 766.3717400380001, 820.9308497099998, 778.5946949000001, 776.1709392660002, 847.3722615419999, 783.2845373380001, 778.7265940039999, 839.2628339070002, 782.1090285179998, 778.2514370410001, 842.696559966, 779.6248212600001, 777.1485499979999, 837.7327273229998, 778.2514370410001, 783.2155065580002, 830.7156662500001, 774.3218781810001, 787.1386116419999, 826.1093813699999, 775.7031135090001, 784.4555075430001, 821.9590034340001, 803.4128495500001, 781.7648803639997, 834.3695219460001, 817.5324047910001, 784.0416746310002, 779.6936139450002, 811.6113535740003, 775.3493298210001, 792.25265134, 811.540954089, 786.6593825310001, 806.4572484290002, 838.9050258060001, 775.3600970070001, 792.0448436999998, 842.337492918, 784.1107648860002, 775.3600970070001, 842.4093800579999, 782.3198764380002, 799.6772132220001, 846.1325573219999, 782.388907218, 786.9355095129999, 844.7451455800001, 781.2831436879999, 785.902603104, 838.2607505820001, 786.3136914249999, 786.106773648], \"power_mean\": 799.8091598771715, \"energy_millijoules\": 14207.625204931457, \"energy_joules\": 14.207625204931457, \"coremark_score\": 16903.313049, \"coremarks_per_mhz\": 7.790981309457965, \"ulpmark_cm_score\": 21.115421871902292}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [649.078815652, 700.52030139, 657.5510842599999, 636.783034296, 698.052913712, 648.105700473, 643.09980438, 706.0371397520001, 636.5714693880001, 646.8511515749999, 709.376934726, 639.16221476, 644.258469085, 704.27503577, 668.9307260520001, 653.2005285170001, 714.3146344949998, 660.3634084319999, 634.432919908], \"power_mean\": 665.8403308748947, \"energy_millijoules\": 3329.2016543744735, \"energy_joules\": 3.3292016543744736}}, \"2208000\": {\"active\": {\"elapsed_sec\": 17.459359628, \"elapsed_ns\": 17459359628, \"power_samples\": [798.3996122149999, 805.6875653520001, 782.522147782, 796.1155265, 849.5630637249999, 793.0009229100001, 802.117789334, 845.9887953699999, 791.48360751, 793.1395800150001, 852.479498592, 800.0258157700002, 787.142782209, 849.7075520950002, 796.5159362939999, 799.552705581, 849.2748279509999, 802.2952785460002, 797.142032766, 839.858203428, 793.6853455, 796.2375520749999, 858.4610034210002, 789.2052803999998, 785.0742247999999, 854.6699586100001, 798.5077882319999, 796.2375520749999, 833.34315059, 801.1954185750001, 785.1433745299998, 842.983371222, 792.37643127, 792.16826739, 841.3129628209999, 833.2992952260001, 803.608732402, 844.6011334, 817.2503416689999, 786.3136914249999, 811.4244070760001, 808.426161954, 800.7070312530002, 806.5974522590002, 814.6266692459999, 789.48212003, 813.624839162, 852.9965790030001, 792.37643127, 830.8582502500003, 850.6582938180002, 792.237774165, 800.653515322, 843.0746182290002, 802.2952785460002, 796.933333942, 841.332916218, 800.776954548, 794.7962650000002, 846.3643576169998, 790.8600063700001, 796.17551662, 857.518277351, 796.6418685900001, 795.7508263930001, 855.1130729160002, 801.4747531740002, 791.96010351, 856.2794042560001], \"power_mean\": 813.1841332995073, \"energy_millijoules\": 14197.67422705959, \"energy_joules\": 14.19767422705959, \"coremark_score\": 17199.862401, \"coremarks_per_mhz\": 7.789792754076086, \"ulpmark_cm_score\": 21.130221415295253}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [660.1752062560001, 642.64193004, 682.003717146, 647.613436239, 643.952625995, 694.067316964, 641.42274294, 651.3619341240001, 670.785240644, 644.044410355, 639.071299408, 679.7059638000001, 680.2783373799999, 654.1446608969999, 668.3587947450001, 667.8039591809999, 640.3860937499999, 641.1464062500002, 667.8991295729999], \"power_mean\": 658.7822739835264, \"energy_millijoules\": 3293.911369917632, \"energy_joules\": 3.2939113699176317}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm7150/third/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 250 ms\nBaseline power usage: 656 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 768 1017 1248 1324 1497 1612 1708 1804\n\n 300:  1114     3.7 C/MHz     43 mW   11.6 J   25.9 I/mJ   269.4 s\n 576:  2139     3.7 C/MHz     59 mW    8.3 J   36.0 I/mJ   140.3 s\n 768:  2852     3.7 C/MHz     71 mW    7.5 J   40.2 I/mJ   105.2 s\n1017:  3778     3.7 C/MHz     86 mW    6.8 J   43.9 I/mJ    79.4 s\n1248:  4634     3.7 C/MHz    101 mW    6.6 J   45.8 I/mJ    64.7 s\n1324:  4919     3.7 C/MHz    107 mW    6.5 J   46.0 I/mJ    61.0 s\n1497:  5560     3.7 C/MHz    117 mW    6.3 J   47.4 I/mJ    54.0 s\n1612:  5988     3.7 C/MHz    125 mW    6.3 J   47.9 I/mJ    50.1 s\n1708:  6345     3.7 C/MHz    136 mW    6.4 J   46.7 I/mJ    47.3 s\n1804:  6701     3.7 C/MHz    155 mW    6.9 J   43.2 I/mJ    44.8 s\n\n\n===== CPU 6 =====\nFrequencies: 300 652 806 979 1094 1209 1324 1555 1708 1843 1939 2169 2208\n\n 300:  2338     7.8 C/MHz     92 mW   11.9 J   25.3 I/mJ   128.3 s\n 652:  5087     7.8 C/MHz    151 mW    8.9 J   33.6 I/mJ    59.0 s\n 806:  6274     7.8 C/MHz    176 mW    8.4 J   35.6 I/mJ    47.8 s\n 979:  7630     7.8 C/MHz    220 mW    8.7 J   34.6 I/mJ    39.3 s\n1094:  8525     7.8 C/MHz    253 mW    8.9 J   33.7 I/mJ    35.2 s\n1209:  9424     7.8 C/MHz    281 mW    8.9 J   33.6 I/mJ    31.9 s\n1324: 10301     7.8 C/MHz    316 mW    9.2 J   32.5 I/mJ    29.1 s\n1555: 12126     7.8 C/MHz    411 mW   10.2 J   29.5 I/mJ    24.8 s\n1708: 13302     7.8 C/MHz    480 mW   10.8 J   27.7 I/mJ    22.6 s\n1843: 14368     7.8 C/MHz    554 mW   11.6 J   25.9 I/mJ    20.9 s\n1939: 15107     7.8 C/MHz    617 mW   12.3 J   24.5 I/mJ    19.9 s\n2169: 16903     7.8 C/MHz    800 mW   14.2 J   21.1 I/mJ    17.8 s\n2208: 17200     7.8 C/MHz    813 mW   14.2 J   21.1 I/mJ    17.5 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm7150/third/uptime.txt",
    "content": " 21:10:40 up 28 min,  load average: 0.73, 0.79, 0.72\n"
  },
  {
    "path": "results/sm7150/third/versions.txt",
    "content": "Kernel: Linux version 4.14.314-perf-g01c713be9531-dirty (Orokin@shadowfax-B550M-AORUS-ELITE) (Proton clang version 13.0.0 (https://github.com/llvm/llvm-project b4fd512c36ca344a3ff69350219e8b0a67e9472a), LLD 13.0.0 (https://github.com/llvm/llvm-project b4fd512c36ca344a3ff69350219e8b0a67e9472a)) #2 SMP PREEMPT Tue Jun 20 19:07:25 +08 2023\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm7150ab/main/cmdline.txt",
    "content": "rcupdate.rcu_expedited=1 rcu_nocbs=0-7 console=null androidboot.hardware=qcom androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 swiotlb=1 androidboot.usbcontroller=a600000.dwc3 loop.max_part=7 cgroup.memory=nokmem,nosocket printk.devkmsg=on androidboot.hab.csv=6 androidboot.hab.product=liber androidboot.hab.cid=50 firmware_class.path=/vendor/firmware_mnt/image buildvariant=user rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 quiet androidboot.keymaster=1 androidboot.bootdevice=1d84000.ufshc androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED androidboot.device=liber androidboot.revision=pvt androidboot.hwrev=0xC000 androidboot.radio=INDIA androidboot.powerup_reason=0x00004000 androidboot.bootreason=reboot msm_poweroff.download_mode=0 androidboot.wifimacaddr=REDACTED androidboot.btmacaddr=REDACTED androidboot.bootloader=MBM-3.0-liber_retail-17ff6fa6ec-200813 androidboot.carrier=retin androidboot.hardware.sku=XT2067-3 androidboot.mode=normal androidboot.baseband=msm msm_drm.dsi_display0=dsi_ft8756_focal_1080P_vid_display: androidboot.slot_suffix=_a rootwait ro init=/init androidboot.dtbo_idx=1 androidboot.dtb_idx=0 androidboot.sku_variant=730g androidboot.dualsim=true androidboot.secure_hardware=1 androidboot.cid=0x0032 androidboot.write_protect=0 androidboot.bl_state=2 androidboot.ssm_data=00000000000FFFF0\n"
  },
  {
    "path": "results/sm7150ab/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 14 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nHardware\t: Qualcomm Technologies, Inc SDMMAGPIE\n"
  },
  {
    "path": "results/sm7150ab/main/device.txt",
    "content": "Model: liber;\nCompatible: qcom,sdmmagpie;\n"
  },
  {
    "path": "results/sm7150ab/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Linux version 4.14.117-Kensur (KenHV@Kensur) (gcc version 11.0.0 20210206 (experimental) (Eva GCC)) #1 SMP PREEMPT Tue Mar 2 15:29:34 IST 2021\n[    0.000000] Boot CPU: AArch64 Processor [51df805e]\n[    0.000000] Machine: liber\n[    0.000000] OF: reserved mem: OVERLAP DETECTED!\n               disp_rdump_region@9c000000 (0x000000009c000000--0x000000009d800000) overlaps with cont_splash_region@9c000000 (0x000000009c000000--0x000000009d800000)\n[    0.000000] OF: reserved mem: OVERLAP DETECTED!\n               cont_splash_region@9c000000 (0x000000009c000000--0x000000009d800000) overlaps with dfps_data_region@9e300000 (0x000000009d700000--0x000000009d800000)\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff800000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000001fa800000, size 36 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fec00000, size 12 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fdc00000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fd400000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fb400000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f5800000, size 92 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085700000, size 6 MiB\n[    0.000000] OF: reserved mem: initialized node hyp_region@85700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085e00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node xbl_aop_mem@85e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085fff000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node sec_apps_region@85fff000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086000000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node smem@86000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086200000, size 65 MiB\n[    0.000000] OF: reserved mem: initialized node removed_region@86200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ab00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node camera_region@8ab00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b000000, size 132 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@8b000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093400000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region@93400000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093900000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_regions@93900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000095700000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region@95700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097500000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_msa_region@97500000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097680000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node npu_region@97680000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097700000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ips_fw_region@97700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097710000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_gsi_region@97710000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097715000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@97715000, compatible id removed-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x000000009e400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@9e400000, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000009f800000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_sec_regions@0x9f800000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 1475018\n[    0.000000]   DMA zone: 6872 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 439754 pages, LIFO batch:31\n[    0.000000]   Normal zone: 16176 pages used for memmap\n[    0.000000]   Normal zone: 1035264 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.1\n[    0.000000] random: fast init done\n[    0.000000] random: get_random_bytes called from start_kernel+0xa4/0x50c with crng_init=1\n[    0.000000] percpu: Embedded 21 pages/cpu s54040 r0 d31976 u86016\n[    0.000000] pcpu-alloc: s54040 r0 d31976 u86016 alloc=21*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1451970\n"
  },
  {
    "path": "results/sm7150ab/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  4:       6596   PDC-GIC  19 Level     arch_timer\n  6:     152250   PDC-GIC  38 Level     arch_mem_timer\n  8:          0   PDC-GIC  21 Level     arm-pmu\n  9:          0   PDC-GIC  82 Level     arm_dsu_0\n 18:          5   PDC-GIC 311 Level     gpi_dmaa00000_gpii0\n 26:          0   PDC-GIC 323 Level     ngd_slim_irq\n 28:          0   PDC-GIC  32 Edge      apps_wdog_bark\n 30:          0   PDC-GIC 524 Level     eud_irq\n 31:          0   PDC-GIC  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 32:          0   PDC-GIC  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 33:          0   PDC-GIC 538 Level     tsens-upper-lower\n 34:          0   PDC-GIC 540 Level     tsens-critical\n 35:          0   PDC-GIC 539 Level     tsens-upper-lower\n 36:          0   PDC-GIC 541 Level     tsens-critical\n 37:        247   PDC-GIC  37 Level     apps_rsc\n 38:          0   PDC-GIC 161 Level     display_rsc\n 39:          0   PDC-GIC 620 Edge      qcom,qmp-npu-low\n 40:          0   PDC-GIC 621 Edge      qcom,qmp-npu-high\n 41:          7   PDC-GIC 421 Edge      qcom,qmp-aop\n 42:          0   PDC-GIC 483 Edge      smp2p\n 43:          0   PDC-GIC 204 Edge      smp2p\n 44:          0   PDC-GIC 608 Edge      smp2p\n 47:         13   PDC-GIC 236 Edge      mmc0\n 48:          2   PDC-GIC 254 Edge      8804000.sdhci\n 49:        333   PDC-GIC 297 Edge      1d84000.ufshc\n 50:          0   PDC-GIC 194 Edge      adsp\n 51:          0   PDC-GIC 304 Level     sps\n 53:          0   PDC-GIC 610 Edge      cdsp\n 54:          0   PDC-GIC 298 Edge      modem\n 71:          0   PDC-GIC 397 Level     arm-smmu-context-fault\n 74:        563   PDC-GIC 388 Level     i2c_geni\n 75:          4   PDC-GIC 385 Level     spi_geni\n 76:          0   PDC-GIC 206 Level     msm_vidc\n 77:          0   PDC-GIC 115 Edge      msm_drm\n 78:          0   PDC-GIC 509 Edge      csiphy\n 79:          0   PDC-GIC 510 Edge      csiphy\n 80:          0   PDC-GIC 511 Edge      csiphy\n 81:          0   PDC-GIC 639 Edge      csiphy\n 82:          0   PDC-GIC 492 Edge      cci\n 83:          0   PDC-GIC 493 Edge      cci\n 84:          1   PDC-GIC 500 Edge      cpas-cdm\n 85:          0   PDC-GIC 496 Edge      csid\n 86:          2   PDC-GIC 497 Edge      ife\n 87:          0   PDC-GIC 498 Edge      csid\n 88:          2   PDC-GIC 499 Edge      ife\n 89:          0   PDC-GIC 470 Edge      csid-lite\n 90:          2   PDC-GIC 466 Edge      ife-lite\n 91:          0   PDC-GIC 495 Edge      a5\n 92:          0   PDC-GIC 506 Edge      jpeg\n 93:          0   PDC-GIC 507 Edge      jpegdma\n 94:          2   PDC-GIC 494 Edge      fd\n 95:          1   PDC-GIC 508 Edge      lrme\n 96:          0   PDC-GIC 491 Edge      cpas_camnoc\n 97:          0   PDC-GIC 261 Level     arm-smmu global fault\n 98:          0   PDC-GIC 263 Level     arm-smmu global fault\n 99:          0   PDC-GIC 396 Level     arm-smmu-context-fault\n100:          0   PDC-GIC 398 Level     arm-smmu-context-fault\n106:          0   PDC-GIC  97 Level     arm-smmu global fault\n108:          0   PDC-GIC 129 Level     arm-smmu-context-fault\n110:          0   PDC-GIC 131 Level     arm-smmu-context-fault\n111:          0   PDC-GIC 132 Level     arm-smmu-context-fault\n112:          0   PDC-GIC 133 Level     arm-smmu-context-fault\n113:          0   PDC-GIC 134 Level     arm-smmu-context-fault\n114:          0   PDC-GIC 135 Level     arm-smmu-context-fault\n115:          0   PDC-GIC 136 Level     arm-smmu-context-fault\n116:          0   PDC-GIC 137 Level     arm-smmu-context-fault\n117:          0   PDC-GIC 138 Level     arm-smmu-context-fault\n118:          0   PDC-GIC 139 Level     arm-smmu-context-fault\n119:          0   PDC-GIC 140 Level     arm-smmu-context-fault\n120:          0   PDC-GIC 141 Level     arm-smmu-context-fault\n121:          0   PDC-GIC 142 Level     arm-smmu-context-fault\n122:          0   PDC-GIC 143 Level     arm-smmu-context-fault\n123:          0   PDC-GIC 144 Level     arm-smmu-context-fault\n124:          0   PDC-GIC 145 Level     arm-smmu-context-fault\n125:          0   PDC-GIC 146 Level     arm-smmu-context-fault\n126:          0   PDC-GIC 147 Level     arm-smmu-context-fault\n127:          0   PDC-GIC 148 Level     arm-smmu-context-fault\n128:          0   PDC-GIC 149 Level     arm-smmu-context-fault\n129:          0   PDC-GIC 150 Level     arm-smmu-context-fault\n130:          0   PDC-GIC 213 Level     arm-smmu-context-fault\n131:          0   PDC-GIC 214 Level     arm-smmu-context-fault\n132:          0   PDC-GIC 215 Level     arm-smmu-context-fault\n133:          0   PDC-GIC 216 Level     arm-smmu-context-fault\n134:          0   PDC-GIC 217 Level     arm-smmu-context-fault\n135:          0   PDC-GIC 218 Level     arm-smmu-context-fault\n136:          0   PDC-GIC 219 Level     arm-smmu-context-fault\n137:          0   PDC-GIC 220 Level     arm-smmu-context-fault\n138:          0   PDC-GIC 221 Level     arm-smmu-context-fault\n139:          0   PDC-GIC 222 Level     arm-smmu-context-fault\n140:          0   PDC-GIC 223 Level     arm-smmu-context-fault\n141:          0   PDC-GIC 224 Level     arm-smmu-context-fault\n142:          0   PDC-GIC 347 Level     arm-smmu-context-fault\n143:          0   PDC-GIC 348 Level     arm-smmu-context-fault\n199:          0  msmgpio-dc   9 Edge      fts_ts\n253:          0  msmgpio-dc  57 Edge      motor_irq\n255:          0  msmgpio-dc  58 Edge      assist_key\n271:          0  msmgpio-dc  69 Edge      8804000.sdhci cd\n283:          1  msmgpio-dc  84 Edge      abov_sar\n295:          0  msmgpio-dc  90 Edge      gf\n297:          0  msmgpio-dc  91 Level     cs35l41\n328:          0  pmic_arb 8388808 Edge      pon_kpdpwr_status\n329:          0  pmic_arb 8454344 Edge      pon_resin_status\n330:        123  pmic_arb 51380438 Edge      pm-adc5\n331:          0  pmic_arb 55574743 Edge      thr-int-en\n332:          0  pmic_arb 24117456 Edge      sig-tx\n333:          0  pmic_arb 24182992 Edge      sig-rx\n334:          0  pmic_arb 24248528 Edge      msg-tx\n335:          0  pmic_arb 24314064 Edge      msg-rx\n336:          0  pmic_arb 24379600 Edge      msg-tx-failed\n337:          0  pmic_arb 24445136 Edge      msg-tx-discarded\n338:          0  pmic_arb 24510672 Edge      msg-rx-discarded\n340:          0  pmic_arb 30408916 Edge      bcl-lvl0\n341:          0  pmic_arb 30474452 Edge      bcl-lvl1\n342:          0  pmic_arb 30539988 Edge      bcl-lvl2\n343:          0  pmic_arb 37748949 Edge      qcom,temp-alarm\n350:          0  pmic_arb 1111490795 Edge      qcom,temp-alarm\n351:          0  pmic_arb 1137705198 Edge      bcl-lvl0\n352:          0  pmic_arb 1137770734 Edge      bcl-lvl1\n353:          0  pmic_arb 1137836270 Edge      bcl-lvl2\n354:          5  pmic_arb 1125122284 Edge      pm-adc5\n355:          0  pmic_arb 1129316589 Edge      thr-int-en\n357:          0  pmic_arb 1276117233 Edge      volume_up\n368:          0  pmic_arb 1589707025 Edge      qpnp_lcdb_sc_irq\n369:          0  pmic_arb 1563427083 Edge      qpnp_flash_led_fault_irq\n370:          0  pmic_arb 1563623691 Edge      qpnp_flash_led_all_ramp_down_done_irq\n371:          0  pmic_arb 1563689227 Edge      qpnp_flash_led_all_ramp_up_done_irq\n372:          0  pmic_arb 1568735500 Edge      wled_ovp_irq\n373:          0  pmic_arb 1568932108 Edge      wled_pre_flash_irq\n374:          0  pmic_arb 1568997644 Edge      wled_flash_irq\n376:          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n377:          1   PDC-GIC 162 Edge      pwr_event_irq\n378:          0   PDC-GIC 518 Level     ss_phy_irq\n379:          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n380:          0   PDC-GIC 332 Level     kgsl-3d0\n381:          0   PDC-GIC 336 Level     HFI\n382:          0   PDC-GIC 337 Level     GMU\n383:          0   PDC-GIC 615 Edge      error_irq\n384:          0   PDC-GIC 617 Edge      wdg_bite_irq\n385:          0   PDC-GIC 619 Level     ipc_irq\n386:          0   PDC-GIC  64 Level     limits_sensor-00\n387:          0   PDC-GIC  65 Level     limits_sensor-01\n388:          0     smp2p   2 Edge      adsp\n389:          0     smp2p   0 Edge      adsp\n390:          0     smp2p   1 Edge      error_ready_interrupt\n391:          0     smp2p   3 Edge      adsp\n392:          0     smp2p   2 Edge      cdsp\n393:          0     smp2p   0 Edge      cdsp\n394:          0     smp2p   1 Edge      error_ready_interrupt\n395:          0     smp2p   3 Edge      cdsp\n396:          0     smp2p   2 Edge      modem\n397:          0     smp2p   0 Edge      modem\n398:          0     smp2p   1 Edge      error_ready_interrupt\n399:          0     smp2p   3 Edge      modem\n400:          0     smp2p   7 Edge      modem\n401:          0     smp2p   0 Edge      smp2p_sleepstate\n404:          0       sde   4 Edge      dsi_ctrl\n405:          0   PDC-GIC 165 Edge      dwc3\n407:          0  pmic_arb 101777627 Edge      qpnp_rtc_alarm\n408:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n410:          0  pmic_arb 75563225 Edge      qg-vbat-low\n411:          0  pmic_arb 75628761 Edge      qg-vbat-empty\n412:         23  pmic_arb 75694297 Edge      qg-fifo-done\n413:          0  pmic_arb 75759833 Edge      qg-good-ocv\n414:          0  pmic_arb 16777417 Edge      chgr-error\n415:          0  pmic_arb 16842953 Edge      chg-state-change\n422:          0  pmic_arb 17825994 Edge      otg-fail\n426:          0  pmic_arb 18088138 Edge      high-duty-cycle\n427:          0  pmic_arb 18153674 Edge      input-current-limiting\n429:          0  pmic_arb 18284746 Edge      switcher-power-ok\n430:          0  pmic_arb 18874571 Edge      bat-temp\n431:          0  pmic_arb 19005643 Edge      bat-ov\n432:          0  pmic_arb 19071179 Edge      bat-low\n433:          0  pmic_arb 19136715 Edge      bat-therm-or-id-missing\n434:          0  pmic_arb 19202251 Edge      bat-terminal-missing\n437:          0  pmic_arb 19923148 Edge      usbin-collapse\n438:          0  pmic_arb 19988684 Edge      usbin-vashdn\n439:          0  pmic_arb 20054220 Edge      usbin-uv\n440:          0  pmic_arb 20119756 Edge      usbin-ov\n441:          0  pmic_arb 20185292 Edge      usbin-plugin\n443:          0  pmic_arb 20316364 Edge      usbin-src-change\n444:          0  pmic_arb 20381900 Edge      usbin-icl-change\n446:          0  pmic_arb 21102797 Edge      dcin-uv\n447:          0  pmic_arb 21168333 Edge      dcin-ov\n448:          0  pmic_arb 21233869 Edge      dcin-plugin\n450:          0  pmic_arb 21364941 Edge      dcin-pon\n451:          0  pmic_arb 21430477 Edge      dcin-en\n452:          0  pmic_arb 22020302 Edge      typec-or-rid-detect-change\n454:          0  pmic_arb 22151374 Edge      typec-cc-state-change\n455:          0  pmic_arb 22216910 Edge      typec-vconn-oc\n457:          0  pmic_arb 22347982 Edge      typec-attach-detach\n458:          0  pmic_arb 22413518 Edge      typec-legacy-cable-detect\n460:          0  pmic_arb 23068879 Edge      wdog-snarl\n461:          0  pmic_arb 23134415 Edge      wdog-bark\n463:          0  pmic_arb 23265487 Edge      aicl-done\n464:          0  pmic_arb 23331023 Edge      smb-en\n466:          0  pmic_arb 23462095 Edge      temp-change\n468:          0  pmic_arb 185663709 Edge      sdam-sts\nIPI0:       165       Rescheduling interrupts\nIPI1:        10       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:     71994       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm7150ab/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  4:        586          1          2          1          1          1          5          1   PDC-GIC  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   PDC-GIC  38 Level     arch_mem_timer\n  8:          0          0          0          0          0          0          0          0   PDC-GIC  21 Level     arm-pmu\n  9:          0          0          0          0          0          0          0          0   PDC-GIC  82 Level     arm_dsu_0\n 18:          5          0          0          0          0          0          0          0   PDC-GIC 311 Level     gpi_dmaa00000_gpii0\n 26:          0          0          0          0          0          0          0          0   PDC-GIC 323 Level     ngd_slim_irq\n 28:          0          0          0          0          0          0          0          0   PDC-GIC  32 Edge      apps_wdog_bark\n 30:          0          0          0          0          0          0          0          0   PDC-GIC 524 Level     eud_irq\n 31:          0          0          0          0          0          0          0          0   PDC-GIC  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 32:          0          0          0          0          0          0          0          0   PDC-GIC  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 33:          0          0          0          0          0          0          0          0   PDC-GIC 538 Level     tsens-upper-lower\n 34:          0          0          0          0          0          0          0          0   PDC-GIC 540 Level     tsens-critical\n 35:          0          0          0          0          0          0          0          0   PDC-GIC 539 Level     tsens-upper-lower\n 36:          0          0          0          0          0          0          0          0   PDC-GIC 541 Level     tsens-critical\n 37:        236          0          0          0          0          0          0          0   PDC-GIC  37 Level     apps_rsc\n 38:          0          0          0          0          0          0          0          0   PDC-GIC 161 Level     display_rsc\n 39:          0          0          0          0          0          0          0          0   PDC-GIC 620 Edge      qcom,qmp-npu-low\n 40:          0          0          0          0          0          0          0          0   PDC-GIC 621 Edge      qcom,qmp-npu-high\n 41:          7          0          0          0          0          0          0          0   PDC-GIC 421 Edge      qcom,qmp-aop\n 42:          0          0          0          0          0          0          0          0   PDC-GIC 483 Edge      smp2p\n 43:          0          0          0          0          0          0          0          0   PDC-GIC 204 Edge      smp2p\n 44:          0          0          0          0          0          0          0          0   PDC-GIC 608 Edge      smp2p\n 47:         13          0          0          0          0          0          0          0   PDC-GIC 236 Edge      mmc0\n 48:          2          0          0          0          0          0          0          0   PDC-GIC 254 Edge      8804000.sdhci\n 49:        325          0          0          0          0          0          0          0   PDC-GIC 297 Edge      1d84000.ufshc\n 50:          0          0          0          0          0          0          0          0   PDC-GIC 194 Edge      adsp\n 51:          0          0          0          0          0          0          0          0   PDC-GIC 304 Level     sps\n 53:          0          0          0          0          0          0          0          0   PDC-GIC 610 Edge      cdsp\n 54:          0          0          0          0          0          0          0          0   PDC-GIC 298 Edge      modem\n 71:          0          0          0          0          0          0          0          0   PDC-GIC 397 Level     arm-smmu-context-fault\n 74:        554          0          0          0          0          0          0          0   PDC-GIC 388 Level     i2c_geni\n 75:          4          0          0          0          0          0          0          0   PDC-GIC 385 Level     spi_geni\n 76:          0          0          0          0          0          0          0          0   PDC-GIC 206 Level     msm_vidc\n 77:          0          0          0          0          0          0          0          0   PDC-GIC 115 Edge      msm_drm\n 78:          0          0          0          0          0          0          0          0   PDC-GIC 509 Edge      csiphy\n 79:          0          0          0          0          0          0          0          0   PDC-GIC 510 Edge      csiphy\n 80:          0          0          0          0          0          0          0          0   PDC-GIC 511 Edge      csiphy\n 81:          0          0          0          0          0          0          0          0   PDC-GIC 639 Edge      csiphy\n 82:          0          0          0          0          0          0          0          0   PDC-GIC 492 Edge      cci\n 83:          0          0          0          0          0          0          0          0   PDC-GIC 493 Edge      cci\n 84:          1          0          0          0          0          0          0          0   PDC-GIC 500 Edge      cpas-cdm\n 85:          0          0          0          0          0          0          0          0   PDC-GIC 496 Edge      csid\n 86:          2          0          0          0          0          0          0          0   PDC-GIC 497 Edge      ife\n 87:          0          0          0          0          0          0          0          0   PDC-GIC 498 Edge      csid\n 88:          2          0          0          0          0          0          0          0   PDC-GIC 499 Edge      ife\n 89:          0          0          0          0          0          0          0          0   PDC-GIC 470 Edge      csid-lite\n 90:          2          0          0          0          0          0          0          0   PDC-GIC 466 Edge      ife-lite\n 91:          0          0          0          0          0          0          0          0   PDC-GIC 495 Edge      a5\n 92:          0          0          0          0          0          0          0          0   PDC-GIC 506 Edge      jpeg\n 93:          0          0          0          0          0          0          0          0   PDC-GIC 507 Edge      jpegdma\n 94:          2          0          0          0          0          0          0          0   PDC-GIC 494 Edge      fd\n 95:          1          0          0          0          0          0          0          0   PDC-GIC 508 Edge      lrme\n 96:          0          0          0          0          0          0          0          0   PDC-GIC 491 Edge      cpas_camnoc\n 97:          0          0          0          0          0          0          0          0   PDC-GIC 261 Level     arm-smmu global fault\n 98:          0          0          0          0          0          0          0          0   PDC-GIC 263 Level     arm-smmu global fault\n 99:          0          0          0          0          0          0          0          0   PDC-GIC 396 Level     arm-smmu-context-fault\n100:          0          0          0          0          0          0          0          0   PDC-GIC 398 Level     arm-smmu-context-fault\n106:          0          0          0          0          0          0          0          0   PDC-GIC  97 Level     arm-smmu global fault\n108:          0          0          0          0          0          0          0          0   PDC-GIC 129 Level     arm-smmu-context-fault\n110:          0          0          0          0          0          0          0          0   PDC-GIC 131 Level     arm-smmu-context-fault\n111:          0          0          0          0          0          0          0          0   PDC-GIC 132 Level     arm-smmu-context-fault\n112:          0          0          0          0          0          0          0          0   PDC-GIC 133 Level     arm-smmu-context-fault\n113:          0          0          0          0          0          0          0          0   PDC-GIC 134 Level     arm-smmu-context-fault\n114:          0          0          0          0          0          0          0          0   PDC-GIC 135 Level     arm-smmu-context-fault\n115:          0          0          0          0          0          0          0          0   PDC-GIC 136 Level     arm-smmu-context-fault\n116:          0          0          0          0          0          0          0          0   PDC-GIC 137 Level     arm-smmu-context-fault\n117:          0          0          0          0          0          0          0          0   PDC-GIC 138 Level     arm-smmu-context-fault\n118:          0          0          0          0          0          0          0          0   PDC-GIC 139 Level     arm-smmu-context-fault\n119:          0          0          0          0          0          0          0          0   PDC-GIC 140 Level     arm-smmu-context-fault\n120:          0          0          0          0          0          0          0          0   PDC-GIC 141 Level     arm-smmu-context-fault\n121:          0          0          0          0          0          0          0          0   PDC-GIC 142 Level     arm-smmu-context-fault\n122:          0          0          0          0          0          0          0          0   PDC-GIC 143 Level     arm-smmu-context-fault\n123:          0          0          0          0          0          0          0          0   PDC-GIC 144 Level     arm-smmu-context-fault\n124:          0          0          0          0          0          0          0          0   PDC-GIC 145 Level     arm-smmu-context-fault\n125:          0          0          0          0          0          0          0          0   PDC-GIC 146 Level     arm-smmu-context-fault\n126:          0          0          0          0          0          0          0          0   PDC-GIC 147 Level     arm-smmu-context-fault\n127:          0          0          0          0          0          0          0          0   PDC-GIC 148 Level     arm-smmu-context-fault\n128:          0          0          0          0          0          0          0          0   PDC-GIC 149 Level     arm-smmu-context-fault\n129:          0          0          0          0          0          0          0          0   PDC-GIC 150 Level     arm-smmu-context-fault\n130:          0          0          0          0          0          0          0          0   PDC-GIC 213 Level     arm-smmu-context-fault\n131:          0          0          0          0          0          0          0          0   PDC-GIC 214 Level     arm-smmu-context-fault\n132:          0          0          0          0          0          0          0          0   PDC-GIC 215 Level     arm-smmu-context-fault\n133:          0          0          0          0          0          0          0          0   PDC-GIC 216 Level     arm-smmu-context-fault\n134:          0          0          0          0          0          0          0          0   PDC-GIC 217 Level     arm-smmu-context-fault\n135:          0          0          0          0          0          0          0          0   PDC-GIC 218 Level     arm-smmu-context-fault\n136:          0          0          0          0          0          0          0          0   PDC-GIC 219 Level     arm-smmu-context-fault\n137:          0          0          0          0          0          0          0          0   PDC-GIC 220 Level     arm-smmu-context-fault\n138:          0          0          0          0          0          0          0          0   PDC-GIC 221 Level     arm-smmu-context-fault\n139:          0          0          0          0          0          0          0          0   PDC-GIC 222 Level     arm-smmu-context-fault\n140:          0          0          0          0          0          0          0          0   PDC-GIC 223 Level     arm-smmu-context-fault\n141:          0          0          0          0          0          0          0          0   PDC-GIC 224 Level     arm-smmu-context-fault\n142:          0          0          0          0          0          0          0          0   PDC-GIC 347 Level     arm-smmu-context-fault\n143:          0          0          0          0          0          0          0          0   PDC-GIC 348 Level     arm-smmu-context-fault\n199:          0          0          0          0          0          0          0          0  msmgpio-dc   9 Edge      fts_ts\n253:          0          0          0          0          0          0          0          0  msmgpio-dc  57 Edge      motor_irq\n255:          0          0          0          0          0          0          0          0  msmgpio-dc  58 Edge      assist_key\n271:          0          0          0          0          0          0          0          0  msmgpio-dc  69 Edge      8804000.sdhci cd\n283:          0          0          0          0          0          0          0          0  msmgpio-dc  84 Edge      abov_sar\n295:          0          0          0          0          0          0          0          0  msmgpio-dc  90 Edge      gf\n297:          0          0          0          0          0          0          0          0  msmgpio-dc  91 Level     cs35l41\n328:          0          0          0          0          0          0          0          0  pmic_arb 8388808 Edge      pon_kpdpwr_status\n329:          0          0          0          0          0          0          0          0  pmic_arb 8454344 Edge      pon_resin_status\n330:         31          0          0          0          0          0          0          0  pmic_arb 51380438 Edge      pm-adc5\n331:          0          0          0          0          0          0          0          0  pmic_arb 55574743 Edge      thr-int-en\n332:          0          0          0          0          0          0          0          0  pmic_arb 24117456 Edge      sig-tx\n333:          0          0          0          0          0          0          0          0  pmic_arb 24182992 Edge      sig-rx\n334:          0          0          0          0          0          0          0          0  pmic_arb 24248528 Edge      msg-tx\n335:          0          0          0          0          0          0          0          0  pmic_arb 24314064 Edge      msg-rx\n336:          0          0          0          0          0          0          0          0  pmic_arb 24379600 Edge      msg-tx-failed\n337:          0          0          0          0          0          0          0          0  pmic_arb 24445136 Edge      msg-tx-discarded\n338:          0          0          0          0          0          0          0          0  pmic_arb 24510672 Edge      msg-rx-discarded\n340:          0          0          0          0          0          0          0          0  pmic_arb 30408916 Edge      bcl-lvl0\n341:          0          0          0          0          0          0          0          0  pmic_arb 30474452 Edge      bcl-lvl1\n342:          0          0          0          0          0          0          0          0  pmic_arb 30539988 Edge      bcl-lvl2\n343:          0          0          0          0          0          0          0          0  pmic_arb 37748949 Edge      qcom,temp-alarm\n350:          0          0          0          0          0          0          0          0  pmic_arb 1111490795 Edge      qcom,temp-alarm\n351:          0          0          0          0          0          0          0          0  pmic_arb 1137705198 Edge      bcl-lvl0\n352:          0          0          0          0          0          0          0          0  pmic_arb 1137770734 Edge      bcl-lvl1\n353:          0          0          0          0          0          0          0          0  pmic_arb 1137836270 Edge      bcl-lvl2\n354:          5          0          0          0          0          0          0          0  pmic_arb 1125122284 Edge      pm-adc5\n355:          0          0          0          0          0          0          0          0  pmic_arb 1129316589 Edge      thr-int-en\n357:          0          0          0          0          0          0          0          0  pmic_arb 1276117233 Edge      volume_up\n368:          0          0          0          0          0          0          0          0  pmic_arb 1589707025 Edge      qpnp_lcdb_sc_irq\n369:          0          0          0          0          0          0          0          0  pmic_arb 1563427083 Edge      qpnp_flash_led_fault_irq\n370:          0          0          0          0          0          0          0          0  pmic_arb 1563623691 Edge      qpnp_flash_led_all_ramp_down_done_irq\n371:          0          0          0          0          0          0          0          0  pmic_arb 1563689227 Edge      qpnp_flash_led_all_ramp_up_done_irq\n372:          0          0          0          0          0          0          0          0  pmic_arb 1568735500 Edge      wled_ovp_irq\n373:          0          0          0          0          0          0          0          0  pmic_arb 1568932108 Edge      wled_pre_flash_irq\n374:          0          0          0          0          0          0          0          0  pmic_arb 1568997644 Edge      wled_flash_irq\n376:          0          0          0          0          0          0          0          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n377:          1          0          0          0          0          0          0          0   PDC-GIC 162 Edge      pwr_event_irq\n378:          0          0          0          0          0          0          0          0   PDC-GIC 518 Level     ss_phy_irq\n379:          0          0          0          0          0          0          0          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n380:          0          0          0          0          0          0          0          0   PDC-GIC 332 Level     kgsl-3d0\n381:          0          0          0          0          0          0          0          0   PDC-GIC 336 Level     HFI\n382:          0          0          0          0          0          0          0          0   PDC-GIC 337 Level     GMU\n383:          0          0          0          0          0          0          0          0   PDC-GIC 615 Edge      error_irq\n384:          0          0          0          0          0          0          0          0   PDC-GIC 617 Edge      wdg_bite_irq\n385:          0          0          0          0          0          0          0          0   PDC-GIC 619 Level     ipc_irq\n386:          0          0          0          0          0          0          0          0   PDC-GIC  64 Level     limits_sensor-00\n387:          0          0          0          0          0          0          0          0   PDC-GIC  65 Level     limits_sensor-01\n388:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n389:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n390:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n391:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n392:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n393:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n394:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n395:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n396:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n397:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n398:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n399:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n400:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n401:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n404:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n405:          0          0          0          0          0          0          0          0   PDC-GIC 165 Edge      dwc3\n407:          0          0          0          0          0          0          0          0  pmic_arb 101777627 Edge      qpnp_rtc_alarm\n408:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n410:          0          0          0          0          0          0          0          0  pmic_arb 75563225 Edge      qg-vbat-low\n411:          0          0          0          0          0          0          0          0  pmic_arb 75628761 Edge      qg-vbat-empty\n412:          0          0          0          0          0          0          0          0  pmic_arb 75694297 Edge      qg-fifo-done\n413:          0          0          0          0          0          0          0          0  pmic_arb 75759833 Edge      qg-good-ocv\n414:          0          0          0          0          0          0          0          0  pmic_arb 16777417 Edge      chgr-error\n415:          0          0          0          0          0          0          0          0  pmic_arb 16842953 Edge      chg-state-change\n422:          0          0          0          0          0          0          0          0  pmic_arb 17825994 Edge      otg-fail\n426:          0          0          0          0          0          0          0          0  pmic_arb 18088138 Edge      high-duty-cycle\n427:          0          0          0          0          0          0          0          0  pmic_arb 18153674 Edge      input-current-limiting\n429:          0          0          0          0          0          0          0          0  pmic_arb 18284746 Edge      switcher-power-ok\n430:          0          0          0          0          0          0          0          0  pmic_arb 18874571 Edge      bat-temp\n431:          0          0          0          0          0          0          0          0  pmic_arb 19005643 Edge      bat-ov\n432:          0          0          0          0          0          0          0          0  pmic_arb 19071179 Edge      bat-low\n433:          0          0          0          0          0          0          0          0  pmic_arb 19136715 Edge      bat-therm-or-id-missing\n434:          0          0          0          0          0          0          0          0  pmic_arb 19202251 Edge      bat-terminal-missing\n437:          0          0          0          0          0          0          0          0  pmic_arb 19923148 Edge      usbin-collapse\n438:          0          0          0          0          0          0          0          0  pmic_arb 19988684 Edge      usbin-vashdn\n439:          0          0          0          0          0          0          0          0  pmic_arb 20054220 Edge      usbin-uv\n440:          0          0          0          0          0          0          0          0  pmic_arb 20119756 Edge      usbin-ov\n441:          0          0          0          0          0          0          0          0  pmic_arb 20185292 Edge      usbin-plugin\n443:          0          0          0          0          0          0          0          0  pmic_arb 20316364 Edge      usbin-src-change\n444:          0          0          0          0          0          0          0          0  pmic_arb 20381900 Edge      usbin-icl-change\n446:          0          0          0          0          0          0          0          0  pmic_arb 21102797 Edge      dcin-uv\n447:          0          0          0          0          0          0          0          0  pmic_arb 21168333 Edge      dcin-ov\n448:          0          0          0          0          0          0          0          0  pmic_arb 21233869 Edge      dcin-plugin\n450:          0          0          0          0          0          0          0          0  pmic_arb 21364941 Edge      dcin-pon\n451:          0          0          0          0          0          0          0          0  pmic_arb 21430477 Edge      dcin-en\n452:          0          0          0          0          0          0          0          0  pmic_arb 22020302 Edge      typec-or-rid-detect-change\n454:          0          0          0          0          0          0          0          0  pmic_arb 22151374 Edge      typec-cc-state-change\n455:          0          0          0          0          0          0          0          0  pmic_arb 22216910 Edge      typec-vconn-oc\n457:          0          0          0          0          0          0          0          0  pmic_arb 22347982 Edge      typec-attach-detach\n458:          0          0          0          0          0          0          0          0  pmic_arb 22413518 Edge      typec-legacy-cable-detect\n460:          0          0          0          0          0          0          0          0  pmic_arb 23068879 Edge      wdog-snarl\n461:          0          0          0          0          0          0          0          0  pmic_arb 23134415 Edge      wdog-bark\n463:          0          0          0          0          0          0          0          0  pmic_arb 23265487 Edge      aicl-done\n464:          0          0          0          0          0          0          0          0  pmic_arb 23331023 Edge      smb-en\n466:          0          0          0          0          0          0          0          0  pmic_arb 23462095 Edge      temp-change\n468:          0          0          0          0          0          0          0          0  pmic_arb 185663709 Edge      sdam-sts\nIPI0:        83         59         59         59         59         59         56         52       Rescheduling interrupts\nIPI1:         0          5          5          5          5          5          6          6       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:       120          3          3          3          3          3          5          3       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm7150ab/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    5 root      0:00 [kworker/0:0H]\n    6 root      0:00 [kworker/u16:0]\n    7 root      0:00 [mm_percpu_wq]\n    8 root      0:00 [ksoftirqd/0]\n    9 root      0:00 [rcu_preempt]\n   10 root      0:00 [rcu_sched]\n   11 root      0:00 [rcu_bh]\n   12 root      0:00 [rcuop/0]\n   13 root      0:00 [rcuos/0]\n   14 root      0:00 [rcuob/0]\n   15 root      0:00 [migration/0]\n   16 root      0:00 [cpuhp/0]\n   17 root      0:00 [cpuhp/1]\n   18 root      0:00 [migration/1]\n   19 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0]\n   21 root      0:00 [kworker/1:0H]\n   22 root      0:00 [rcuop/1]\n   23 root      0:00 [rcuos/1]\n   24 root      0:00 [rcuob/1]\n   25 root      0:00 [cpuhp/2]\n   26 root      0:00 [migration/2]\n   27 root      0:00 [ksoftirqd/2]\n   28 root      0:00 [kworker/2:0]\n   29 root      0:00 [kworker/2:0H]\n   30 root      0:00 [rcuop/2]\n   31 root      0:00 [rcuos/2]\n   32 root      0:00 [rcuob/2]\n   33 root      0:00 [cpuhp/3]\n   34 root      0:00 [migration/3]\n   35 root      0:00 [ksoftirqd/3]\n   36 root      0:00 [kworker/3:0]\n   37 root      0:00 [kworker/3:0H]\n   38 root      0:00 [rcuop/3]\n   39 root      0:00 [rcuos/3]\n   40 root      0:00 [rcuob/3]\n   41 root      0:00 [cpuhp/4]\n   42 root      0:00 [migration/4]\n   43 root      0:00 [ksoftirqd/4]\n   44 root      0:00 [kworker/4:0]\n   45 root      0:00 [kworker/4:0H]\n   46 root      0:00 [rcuop/4]\n   47 root      0:00 [rcuos/4]\n   48 root      0:00 [rcuob/4]\n   49 root      0:00 [cpuhp/5]\n   50 root      0:00 [migration/5]\n   51 root      0:00 [ksoftirqd/5]\n   52 root      0:00 [kworker/5:0]\n   53 root      0:00 [kworker/5:0H]\n   54 root      0:00 [rcuop/5]\n   55 root      0:00 [rcuos/5]\n   56 root      0:00 [rcuob/5]\n   57 root      0:00 [cpuhp/6]\n   58 root      0:00 [migration/6]\n   59 root      0:00 [ksoftirqd/6]\n   60 root      0:00 [kworker/6:0]\n   61 root      0:00 [kworker/6:0H]\n   62 root      0:00 [rcuop/6]\n   63 root      0:00 [rcuos/6]\n   64 root      0:00 [rcuob/6]\n   65 root      0:00 [cpuhp/7]\n   66 root      0:00 [migration/7]\n   67 root      0:00 [ksoftirqd/7]\n   68 root      0:00 [kworker/7:0]\n   69 root      0:00 [kworker/7:0H]\n   70 root      0:00 [rcuop/7]\n   71 root      0:00 [rcuos/7]\n   72 root      0:00 [rcuob/7]\n   73 root      0:00 [netns]\n   75 root      0:00 [kworker/u17:0]\n   76 root      0:00 [ipa_usb_wq]\n   77 root      0:00 [kworker/u16:1]\n   78 root      0:00 [msm_watchdog]\n   79 root      0:00 [spi_wdsp]\n   80 root      0:00 [qmp_npu_qmp_low]\n   81 root      0:00 [qmp_npu_qmp_hig]\n   82 root      0:00 [qmp_aop]\n   83 root      0:00 [oom_reaper]\n   84 root      0:00 [writeback]\n   85 root      0:00 [kcompactd0]\n   86 root      0:00 [crypto]\n   87 root      0:00 [kblockd]\n   88 root      0:00 [irq/97-arm-smmu]\n   89 root      0:00 [irq/98-arm-smmu]\n   90 root      0:00 [irq/106-arm-smm]\n   91 root      0:00 [irq/33-tsens-up]\n   92 root      0:00 [irq/34-tsens-cr]\n   93 root      0:00 [irq/35-tsens-up]\n   94 root      0:00 [irq/36-tsens-cr]\n   95 root      0:00 [edac-poller]\n   96 root      0:00 [system]\n   97 root      0:00 [ipa_power_mgmt]\n   98 root      0:00 [transport_power]\n   99 root      0:00 [ipa_pm_activate]\n  100 root      0:00 [devfreq_wq]\n  101 root      0:00 [cfg80211]\n  102 root      0:00 [irq/368-qpnp_lc]\n  139 root      0:00 [kauditd]\n  140 root      0:00 [kswapd0]\n  141 root      0:00 [ecryptfs-kthrea]\n  179 root      0:00 [irq/372-wled_ov]\n  180 root      0:00 [irq/374-wled_fl]\n  181 root      0:00 [irq/373-wled_pr]\n  182 root      0:00 [irq/111-arm-smm]\n  183 root      0:00 [irq/112-arm-smm]\n  184 root      0:00 [irq/42-smp2p]\n  185 root      0:00 [irq/43-smp2p]\n  186 root      0:00 [irq/44-smp2p]\n  187 root      0:00 [irq/113-arm-smm]\n  188 root      0:00 [cdsprm-wq]\n  190 root      0:00 [cdsprm-wq-delay]\n  191 root      0:00 [mem_share_svc]\n  192 root      0:00 [irq/114-arm-smm]\n  193 root      0:00 [hwrng]\n  195 root      0:00 [diag_real_time_]\n  196 root      0:00 [diag_wq]\n  198 root      0:00 [DIAG_USB_diag]\n  199 root      0:00 [diag_cntl_wq]\n  200 root      0:00 [diag_dci_wq]\n  201 root      0:00 [MODEM_CNTL]\n  202 root      0:00 [MODEM_DATA]\n  203 root      0:00 [MODEM_CMD]\n  204 root      0:00 [MODEM_DCI]\n  205 root      0:00 [MODEM_DCI_CMD]\n  206 root      0:00 [LPASS_CNTL]\n  207 root      0:00 [LPASS_DATA]\n  208 root      0:00 [LPASS_CMD]\n  209 root      0:00 [LPASS_DCI]\n  210 root      0:00 [LPASS_DCI_CMD]\n  211 root      0:00 [WCNSS_CNTL]\n  212 root      0:00 [WCNSS_DATA]\n  213 root      0:00 [WCNSS_CMD]\n  214 root      0:00 [WCNSS_DCI]\n  215 root      0:00 [WCNSS_DCI_CMD]\n  216 root      0:00 [SENSORS_CNTL]\n  217 root      0:00 [SENSORS_DATA]\n  218 root      0:00 [SENSORS_CMD]\n  219 root      0:00 [SENSORS_DCI]\n  220 root      0:00 [SENSORS_DCI_CMD]\n  221 root      0:00 [DIAG_CTRL]\n  222 root      0:00 [DIAG_DATA]\n  223 root      0:00 [DIAG_CMD]\n  224 root      0:00 [DIAG_DCI_DATA]\n  225 root      0:00 [DIAG_DCI_CMD]\n  226 root      0:00 [CDSP_CNTL]\n  227 root      0:00 [CDSP_DATA]\n  228 root      0:00 [CDSP_CMD]\n  229 root      0:00 [CDSP_DCI]\n  230 root      0:00 [CDSP_DCI_CMD]\n  231 root      0:00 [NPU_CNTL]\n  232 root      0:00 [NPU_DATA]\n  233 root      0:00 [NPU_CMD]\n  234 root      0:00 [NPU_DCI]\n  235 root      0:00 [NPU_DCI_CMD]\n  236 root      0:00 [DIAG_RPMSG_DIAG]\n  237 root      0:00 [DIAG_RPMSG_DIAG]\n  238 root      0:00 [DIAG_RPMSG_DIAG]\n  239 root      0:00 [DIAG_RPMSG_DIAG]\n  240 root      0:00 [DIAG_RPMSG_DIAG]\n  241 root      0:00 [kworker/u16:2]\n  242 root      0:00 [irq/110-arm-smm]\n  243 root      0:00 [kworker/u16:3]\n  244 root      0:00 [irq/115-arm-smm]\n  245 root      0:00 [crtc_commit:110]\n  246 root      0:00 [kworker/u16:4]\n  247 root      0:00 [crtc_event:110]\n  248 root      0:00 [crtc_commit:161]\n  249 root      0:00 [crtc_event:161]\n  250 root      0:00 [pp_event]\n  251 root      0:00 [kworker/u16:5]\n  252 root      0:00 [kworker/u16:6]\n  254 root      0:00 [kgsl-workqueue]\n  255 root      0:00 [kgsl-mementry]\n  256 root      0:00 [kgsl_worker_thr]\n  257 root      0:00 [irq/99-arm-smmu]\n  258 root      0:00 [irq/71-arm-smmu]\n  259 root      0:00 [irq/100-arm-smm]\n  260 root      0:00 [kgsl-events]\n  261 root      0:00 [kgsl_devfreq_wq]\n  262 root      0:00 [qseecom-unreg-l]\n  263 root      0:00 [memory_wq]\n  264 root      0:00 [irq/116-arm-smm]\n  265 root      0:00 [qcrypto_seq_res]\n  266 root      0:00 [irq/117-arm-smm]\n  287 root      0:00 [scsi_eh_0]\n  288 root      0:00 [scsi_tmf_0]\n  289 root      0:00 [ufs_pm_qos_0]\n  290 root      0:00 [ufs_clk_gating_]\n  291 root      0:00 [ice-set-key]\n  292 root      0:00 [ufs_clkscaling_]\n  293 root      0:00 [irq/118-arm-smm]\n  294 root      0:00 [kworker/u16:8]\n  295 root      0:00 [spi2]\n  296 root      0:00 [bond0]\n  302 root      0:00 [k_ipa_usb]\n  305 root      0:00 [fts_wq]\n  306 root      0:00 [irq/199-fts_ts]\n  307 root      0:00 [irq/295-gf]\n  311 root      0:00 [kworker/u16:12]\n  313 root      0:00 [kworker/u16:14]\n  314 root      0:00 [irq/283-abov_sa]\n  315 root      0:00 [kworker/0:3]\n  316 root      0:00 [rot_commitq_0_0]\n  317 root      0:00 [rot_commitq_0_1]\n  318 root      0:00 [rot_doneq_0_0]\n  319 root      0:00 [rot_doneq_0_1]\n  320 root      0:00 [rot_fenceq_0_0]\n  321 root      0:00 [rot_fenceq_0_1]\n  322 root      0:00 [rot_fenceq_0_2]\n  323 root      0:00 [rot_fenceq_0_3]\n  324 root      0:00 [rot_fenceq_0_4]\n  325 root      0:00 [rot_fenceq_0_5]\n  326 root      0:00 [rot_fenceq_0_6]\n  327 root      0:00 [rot_fenceq_0_7]\n  328 root      0:00 [rot_fenceq_0_8]\n  329 root      0:00 [rot_fenceq_0_9]\n  330 root      0:00 [rot_fenceq_0_10]\n  331 root      0:00 [rot_fenceq_0_11]\n  332 root      0:00 [rot_fenceq_0_12]\n  333 root      0:00 [rot_fenceq_0_13]\n  334 root      0:00 [rot_fenceq_0_14]\n  335 root      0:00 [rot_fenceq_0_15]\n  336 root      0:00 [irq/108-arm-smm]\n  337 root      0:00 [npu_wq]\n  338 root      0:00 [msm_vidc_worker]\n  339 root      0:00 [pm_workerq_venu]\n  340 root      0:00 [irq/119-arm-smm]\n  341 root      0:00 [irq/120-arm-smm]\n  342 root      0:00 [irq/121-arm-smm]\n  343 root      0:00 [irq/122-arm-smm]\n  344 root      0:00 [cam-cpas]\n  345 root      0:00 [qcom,cam_virtua]\n  346 root      0:00 [irq/123-arm-smm]\n  347 root      0:00 [qcom,cam170-cpa]\n  348 root      0:00 [irq/124-arm-smm]\n  349 root      0:00 [cam_cci_wq]\n  350 root      0:00 [cam_cci_wq]\n  351 root      0:00 [cam_cci_wq]\n  352 root      0:00 [cam_cci_wq]\n  353 root      0:00 [irq/125-arm-smm]\n  354 root      0:00 [irq/126-arm-smm]\n  355 root      0:00 [irq/127-arm-smm]\n  356 root      0:00 [irq/128-arm-smm]\n  357 root      0:00 [irq/343-qcom,te]\n  358 root      0:00 [irq/350-qcom,te]\n  359 root      0:00 [irq/386-limits_]\n  360 root      0:00 [kworker/0:1H]\n  361 root      0:00 [irq/387-limits_]\n  362 root      0:00 [kworker/6:1H]\n  363 root      0:00 [irq/340-bcl-lvl]\n  364 root      0:00 [irq/341-bcl-lvl]\n  365 root      0:00 [irq/342-bcl-lvl]\n  366 root      0:00 [irq/351-bcl-lvl]\n  367 root      0:00 [irq/352-bcl-lvl]\n  368 root      0:00 [irq/353-bcl-lvl]\n  369 root      0:00 [dm_bufio_cache]\n  370 root      0:00 [irq/32-KRYO L3-]\n  371 root      0:00 [mmc_clk_gate/mm]\n  372 root      0:00 [mmc_clk_gate/mm]\n  373 root      0:00 [irq/48-8804000.]\n  374 root      0:00 [irq/47-mmc0]\n  375 root      0:00 [irq/271-8804000]\n  377 root      0:00 [motor_task]\n  378 root      0:00 [irq/253-motor_i]\n  379 root      0:00 [akm09970_task]\n  380 root      0:00 [irq/129-arm-smm]\n  381 root      0:00 [uaudio_svc]\n  382 root      0:00 [irq/297-cs35l41]\n  383 root      0:00 [cs35l41]\n  384 root      0:00 [apr_driver]\n  385 root      0:00 [ipv6_addrconf]\n  395 root      0:00 [irq/410-qg-vbat]\n  396 root      0:00 [irq/411-qg-vbat]\n  397 root      0:00 [irq/412-qg-fifo]\n  398 root      0:00 [irq/413-qg-good]\n  399 root      0:00 [irq/414-chgr-er]\n  401 root      0:00 [irq/415-chg-sta]\n  402 root      0:00 [irq/422-otg-fai]\n  403 root      0:00 [irq/426-high-du]\n  404 root      0:00 [irq/427-input-c]\n  405 root      0:00 [irq/429-switche]\n  406 root      0:00 [irq/430-bat-tem]\n  407 root      0:00 [irq/431-bat-ov]\n  409 root      0:00 [irq/432-bat-low]\n  410 root      0:00 [irq/433-bat-the]\n  411 root      0:00 [irq/434-bat-ter]\n  412 root      0:00 [irq/437-usbin-c]\n  413 root      0:00 [irq/438-usbin-v]\n  414 root      0:00 [irq/439-usbin-u]\n  416 root      0:00 [irq/440-usbin-o]\n  417 root      0:00 [irq/441-usbin-p]\n  418 root      0:00 [irq/443-usbin-s]\n  419 root      0:00 [irq/444-usbin-i]\n  420 root      0:00 [irq/446-dcin-uv]\n  421 root      0:00 [irq/447-dcin-ov]\n  422 root      0:00 [irq/448-dcin-pl]\n  423 root      0:00 [irq/450-dcin-po]\n  424 root      0:00 [irq/451-dcin-en]\n  425 root      0:00 [irq/452-typec-o]\n  426 root      0:00 [irq/454-typec-c]\n  427 root      0:00 [irq/455-typec-v]\n  429 root      0:00 [irq/457-typec-a]\n  430 root      0:00 [irq/458-typec-l]\n  431 root      0:00 [irq/460-wdog-sn]\n  432 root      0:00 [irq/461-wdog-ba]\n  433 root      0:00 [irq/463-aicl-do]\n  434 root      0:00 [irq/464-smb-en]\n  435 root      0:00 [irq/466-temp-ch]\n  437 root      0:00 [irq/468-sdam-st]\n  441 root      0:00 [irq/331-thr-int]\n  442 root      0:00 [irq/355-thr-int]\n  449 root      0:00 [irq/332-sig-tx]\n  450 root      0:00 [irq/333-sig-rx]\n  451 root      0:00 [irq/377-pwr_eve]\n  452 root      0:00 [irq/376-dp_hs_p]\n  453 root      0:00 [irq/379-dm_hs_p]\n  454 root      0:00 [irq/378-ss_phy_]\n  455 root      0:00 [irq/130-arm-smm]\n  456 root      0:00 [usb_bam_wq]\n  457 root      0:00 [core_ctl/0]\n  458 root      0:00 [core_ctl/6]\n  459 root      0:00 [rq_stats]\n  460 root      0:00 [msm_perf:events]\n  461 root      0:00 [irq/131-arm-smm]\n  462 root      0:00 [irq/132-arm-smm]\n  463 root      0:00 [irq/133-arm-smm]\n  464 root      0:00 [irq/134-arm-smm]\n  465 root      0:00 [irq/135-arm-smm]\n  466 root      0:00 [irq/136-arm-smm]\n  467 root      0:00 [irq/137-arm-smm]\n  468 root      0:00 [irq/138-arm-smm]\n  469 root      0:00 [irq/139-arm-smm]\n  470 root      0:00 [irq/140-arm-smm]\n  471 root      0:00 [irq/141-arm-smm]\n  472 root      0:00 [irq/142-arm-smm]\n  473 root      0:00 [irq/143-arm-smm]\n  474 root      0:00 [config_lo]\n  475 root      0:00 [config_st]\n  476 root      0:00 [hw_load]\n  477 root      0:00 [hw_store]\n  478 root      0:00 [sb-3]\n  479 root      0:00 [ngd_rx_thread3]\n  480 root      0:00 [ngd_notify_sl3]\n  481 root      0:00 [irq/371-qpnp_fl]\n  482 root      0:00 [irq/370-qpnp_fl]\n  483 root      0:00 [irq/369-qpnp_fl]\n  494 root      0:00 [kworker/1:1]\n  495 root      0:00 [kworker/2:1]\n  496 root      0:00 [kworker/3:1]\n  497 root      0:00 [kworker/4:1]\n  498 root      0:00 [kworker/5:1]\n  499 root      0:00 [kworker/6:1]\n  500 root      0:00 [kworker/7:1]\n  515 root      0:00 [kworker/0:0]\n  533 root      0:00 [kworker/0:1]\n  549 root      0:00 [kworker/0:2]\n  617 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm7150ab/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1113.68,3.712266666666667,60.47441289290544,13.576503900241914,18.414166256420796,224.499970331\r\n1,576000,2138.415349,3.7125266475694443,74.52577437683614,8.713459079316864,28.691246234623968,116.918732508\r\n1,768000,2851.439977,3.7128124700520835,86.49577597586811,7.5842496669326716,32.963049870312155,87.683468717\r\n1,1017600,3778.0901,3.712745774371069,102.40863198877179,6.777202290739263,36.88837801722601,66.178037526\r\n1,1248000,4633.576751,3.712801883814102,118.66889627265111,6.403263680119557,39.04259023038267,53.959073365\r\n1,1324800,4918.548831,3.7126727287137684,124.0672862064653,6.306695175297506,39.6404127758096,50.832861491\r\n1,1497600,5560.250879,3.7127743583066244,136.42664608998317,6.134588476335467,40.75252985010968,44.966204566\r\n1,1612800,5987.88053,3.712723542906746,144.3889161102951,6.02913508113181,41.46531743539393,41.756218161\r\n1,1708800,6344.211541,3.712670611540262,148.33495338405726,5.846027462667286,42.76408237841838,39.410990662\r\n1,1804800,6700.616457,3.7126642603058513,166.43886829406074,6.210666220597895,40.25333049953097,37.3149991\r\n6,300000,2338.109311,7.793697703333334,106.01218060771151,11.337181619746273,22.05133589503129,106.942254699\r\n6,652800,5086.159543,7.791298319546569,162.90564111788655,8.010048166306579,31.210798588153136,49.169863679\r\n6,806400,6283.617353,7.79218421750992,188.51587395980886,7.5035391651568935,33.31761112954392,39.803221912\r\n6,979200,7621.95122,7.7838554125816986,230.6123177557984,7.5676815235818555,33.0352168257832,32.815599779\r\n6,1094400,8522.824123,7.7876682410453215,263.83049100084475,7.743607225922821,32.284695324304366,29.350691031\r\n6,1209600,9421.873822,7.789247538029101,292.27607121555224,7.7603961727354065,32.21485017457289,26.551596032\r\n6,1324800,10321.621733,7.7910792066727055,329.942231666421,7.997378878693279,31.260242110831243,24.238724574\r\n6,1555200,12118.861797,7.792478007330247,434.60479517964194,8.972455899722977,27.863051409115165,20.645091815\r\n6,1708800,13312.742958,7.790696955758428,513.6783349617161,9.654778536630113,25.893913470050403,18.795378118\r\n6,1843200,14361.213235,7.791456833224826,590.0511584285882,10.281749361875537,24.31492844272139,17.42518291\r\n6,1939200,15112.13202,7.792972370049505,655.6781172936306,10.858201938525816,23.024069861233553,16.560262806\r\n6,2169600,16910.17316,7.794143233775811,835.0923665671723,12.360330117178297,20.22599701059374,14.801153276\r\n6,2208000,17205.781142,7.792473343297101,867.8005311026141,12.624046728211198,19.803475492634245,14.547175619\r\n"
  },
  {
    "path": "results/sm7150ab/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1448.2907004877925, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1187.172644112, 1158.343371235, 1147.472196606, 1147.3616747039998, 1169.322640988, 1152.403470063, 1142.6001269760002, 1143.391048065, 1189.7532504, 1164.224661706, 1145.9791565159999, 1165.849140288, 1155.14531581, 1136.162972308, 1163.385760208, 1144.7880100119999, 1162.0380854199998, 1185.5415746639999, 1162.4300417799998, 1142.434914544, 1165.9614430320003, 1146.737628297, 1142.5449618660002, 1162.20614894, 1154.988830375, 1149.939852693, 1149.9953748479998, 1163.6101792020002, 1153.579863812, 1153.746679908, 1145.450001192, 1148.831687425, 1163.8878210179998, 1163.161341214, 1152.348114297, 1148.6528657519998, 1154.867087433, 1135.150071039, 1159.51894448, 1164.785870592, 1155.49006288, 1170.046448766, 1172.068222106, 1152.403470063, 1149.9953748479998, 1172.124525174, 1152.459111168, 1141.364219904, 1152.459111168, 1165.1747464320001, 1161.70195838, 1168.5337379, 1153.579863812, 1153.635278748, 1154.811613327, 1147.472196606, 1147.140346782, 1174.19202936, 1186.8293255490003, 1143.556438617, 1167.2496069119998, 1164.8980546910002, 1146.129984664, 1149.7183335309999, 1141.254291616, 1154.9330106500001, 1149.8846152669998, 1145.5605693119999, 1153.690979328, 1165.9614430320003, 1151.893082432, 1142.710174298, 1162.432483634, 1175.921502475, 1146.074641129, 1143.6666045839997, 1168.594015106, 1147.4170777140002, 1145.063863296, 1151.181648465, 1156.047401365, 1160.1349724250001, 1187.4018173430002, 1163.5540024319998, 1149.8846152669998, 1158.566552205, 1178.439404007, 1153.468462652, 1154.867087433, 1142.3248672220002, 1170.9949811499998, 1161.75807548, 1153.746679908, 1142.3248672220002, 1167.193251717, 1157.3906227199998, 1154.644619111, 1155.9357619149998, 1148.043913968, 1165.786972851, 1154.700093217, 1147.472196606, 1151.060783152, 1161.0862272000002, 1147.4170777140002, 1139.9124501709998, 1155.10018357, 1136.874843468, 1141.199186176, 1158.399023045, 1154.811613327, 1153.690979328, 1149.829093112, 1148.609883534, 1165.062443688, 1168.312520368, 1141.8042156479999, 1152.070194111, 1157.11179984], \"power_mean\": 1155.98380355642, \"energy_millijoules\": 5779.9190177821, \"energy_joules\": 5.7799190177821}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 224.499970331, \"elapsed_ns\": 224499970331, \"power_samples\": [60.815258360999906, 65.33794694099993, 63.45466009699999, 53.71219416500003, 55.29153736099988, 57.582279051000114, 52.909698015000004, 62.743201928999724, 57.29484512099998, 58.52600080099978, 58.64132965099975, 68.3792828170001, 56.00643907100016, 56.71997726100017, 48.44455161299993, 67.2062080820001, 67.43793615999994, 59.75715648099981, 63.39705451300006, 69.6726751629999, 59.642004700999905, 49.903874464999944, 77.8271869329999, 54.890019761000076, 58.64132965099975, 71.3201342729999, 61.161365960999774, 56.06368944100018, 67.09034404299996, 65.74320459299997, 58.46863209099979, 76.53788952799982, 59.00822588099982, 64.68581577699979, 62.16595800299979, 62.22350441699996, 59.58428080099975, 62.99233074499966, 52.309113158999935, 58.583665225999994, 72.84181212399994, 57.2375355810002, 51.07801664900012, 68.321440553, 55.259528316000115, 59.642004700999905, 62.28134746199976, 63.16574136899999, 47.49465528900009, 70.5549304619999, 54.71785656099996, 62.339190506999785, 70.84563075300002, 68.2633001329998, 70.78766995499996, 67.14812713700007, 61.93488245399999, 51.07801664900012, 65.80122606299983, 59.58428080099975, 66.26450518499996, 75.48240172500005, 58.29593453099983, 67.14812713700007, 67.09034404299996, 57.007411191000074, 52.137306782999985, 83.16526070500004, 69.1497697389998, 59.9877560609998, 58.18060568099986, 53.59734150500003, 53.99873682700013, 74.48095948500008, 63.51256261699996, 52.07993992800016, 72.07678643299982, 59.75715648099981, 60.27578352099977, 61.81949299499979, 46.26344013400012, 66.20648371499988, 57.2375355810002, 65.85924753299992, 59.75715648099981, 70.67115082499981, 59.18110156099988, 57.77784185099972, 56.89249670100003, 61.04609553599994, 73.36632062800004, 63.28124947299989, 67.03226309799993, 69.55657344499991, 67.79907124099987, 66.85831811399999, 68.2633001329998, 65.85924753299992, 60.69998793599984, 69.7990499519999, 53.36822517299993, 52.25174630400011, 62.10811495799999, 61.99272549899979, 67.85721166099984, 62.22350441699996, 57.835506275999705, 54.775342561000116, 68.321440553, 55.891348120999965, 53.48278333899998, 71.72747033699989, 57.06501614099989, 49.73242432899997, 71.96044742499998, 48.44455161299993, 49.903874464999944, 68.08917702899998, 54.603179361, 63.45466009699999, 63.45466009699999, 67.03226309799993, 51.13503014499997, 64.57018902799973, 45.921609750000016, 51.73632717600003, 75.48240172500005, 60.757771310999715, 66.91639905900001, 63.28124947299989, 58.46863209099979, 52.022573072999876, 80.40583738500004, 60.757771310999715, 75.48240172500005, 78.11966878699991, 47.152468665000015, 56.94980624100003, 60.815258360999906, 49.6754700030001, 59.469129020999844, 69.3240715469999, 55.834097750999945, 66.14875979099975, 54.48820736099992, 54.660370561000036, 56.350826606000055, 58.410967665999806, 65.62745919899999, 66.27870006800003, 71.61113132900005, 54.660370561000036, 57.69748895099997, 58.29593453099983, 53.65476783500003, 61.276636385999836, 66.10475508399986, 60.815258360999906, 67.97319434499991, 70.26423017099978, 47.095339904999946, 52.595359056000234, 60.642204560999744, 56.83489175099999, 67.03226309799993, 61.877039408999735, 64.33863828899985, 74.36408350500005, 71.3201342729999, 59.469129020999844, 74.30594519700003, 58.29593453099983, 62.05027191299996, 66.97418215300013, 59.52685292099977, 66.45264505199998, 62.05027191299996, 57.12232568100012, 54.603179361, 65.5694377289999, 56.43254333100003, 60.815258360999906, 71.61113132900005, 57.06501614099989, 64.33863828899985, 71.96044742499998, 63.16574136899999, 62.58790391299999, 70.84563075300002, 56.71997726100017, 51.13503014499997, 66.80023716899996, 50.79177363300005, 68.3792828170001, 57.06501614099989, 59.52685292099977, 51.965500407000036, 58.35330324099982, 73.78090233299986, 52.62286085899996, 66.91639905900001, 59.52685292099977, 58.18060568099986, 65.68548066899984, 66.80023716899996, 48.273279597000055, 58.77762630099983, 63.93379604699976, 57.46736456099984, 74.36408350500005, 51.07801664900012, 52.852271685000005, 66.91639905900001, 42.28592386499986, 59.06594978099997, 75.48240172500005, 68.91756630299983, 60.045183941000005, 67.85721166099984, 45.978679034999686, 62.22350441699996, 68.03103660899978, 54.71785656099996, 67.97319434499991, 69.3240715469999, 52.022573072999876, 51.4782866569999, 58.12323697099964, 46.03545565700006, 70.67115082499981, 73.83934032299999, 65.62745919899999, 59.58428080099975, 58.35330324099982, 49.44677196199973, 55.119374160999996, 54.37353016099996, 51.67925451000019, 74.36408350500005, 59.35397724099994, 59.41140512099969, 69.20796982899992, 57.43244673100003, 47.03850411299982, 74.1309309090002, 64.33863828899985, 68.80116612300003, 69.44017326499988, 56.94980624100003, 56.31733343099995, 62.93472516099973, 54.43101616099989, 64.33863828899985, 75.19051340100009, 55.776552276000075, 60.353880335999975, 77.8855029450001, 58.12323697099964, 60.52693413599968, 61.81949299499979, 63.10783884900002, 59.41140512099969, 65.51171380499977, 48.33017475299994, 48.273279597000055, 71.43647328099996, 58.18060568099986, 61.81949299499979, 78.47206906199995, 58.06557254599966, 46.92453956099985, 73.83934032299999, 44.349276690999886, 53.024256181000055, 77.8855029450001, 58.18060568099986, 68.03103660899978, 61.93488245399999, 50.84908101300016, 56.89249670100003, 68.97546793099991, 56.71997726100017, 58.583665225999994, 70.43871009899999, 56.83489175099999, 61.93488245399999, 66.91639905900001, 58.12323697099964, 55.71900680099998, 73.0166482919999, 58.18060568099986, 57.52496951099988, 66.220619123, 60.52693413599968, 62.16595800299979, 71.61113132900005, 58.12323697099964, 64.22301153999979, 61.81949299499979, 59.66196146099992, 46.43435532599983, 66.39456410699995, 59.41140512099969, 69.3240715469999, 71.55311136099999, 57.06501614099989, 67.91505392499994, 61.761649949999764, 50.73476013699997, 53.65476783500003, 68.85936621299993, 57.60514429099976, 69.20796982899992, 61.81949299499979, 59.238825460999806, 61.81949299499979, 52.022573072999876, 58.95050198099989, 72.43406065000022, 65.33794694099993, 54.37353016099996, 72.7837329859999, 53.196240677000105, 42.60738921300003, 73.78090233299986, 57.835506275999705, 70.03149067799995, 64.04942279599982, 62.76131453699986, 52.022573072999876, 67.16071924500011, 46.867410801000005, 69.1497697389998, 70.26423017099978, 56.60506277099989, 70.03149067799995, 63.10783884900002, 56.60506277099989, 47.152468665000015, 63.93379604699976, 57.720177425999964, 64.10738479099973, 65.98889104499995, 59.18110156099988, 51.90813355199998, 66.56850909100012, 57.835506275999705, 56.83489175099999, 77.8855029450001, 67.21885966500008, 64.10738479099973, 69.1497697389998, 50.620439261, 55.317073790999984, 65.106158607, 64.16534678599987, 69.20796982899992, 71.55311136099999, 58.00820383599989, 54.08668976099989, 61.64626049099979, 51.106468526999834, 61.64626049099979, 62.81892012100002, 59.18110156099988, 66.80023716899996, 64.10738479099973, 45.57977936599991, 64.39660028399999, 72.72535447099995, 64.16534678599987, 75.19051340100009, 67.68308855700002, 58.66247452099992, 61.81949299499979, 53.024256181000055, 49.27532182599998, 65.33794694099993, 78.94087593599988, 65.16418007699986, 70.14800980799987, 61.357638527999825, 54.08668976099989, 60.69998793599984, 67.74093082099989, 44.78227269100012, 66.5104281460001, 50.56313188099989, 62.70341201699989, 54.08668976099989, 62.76131453699986, 55.37461926600008, 64.64287948499987, 67.79907124099987, 54.201366961000076, 63.875834051999846, 47.87354713499985, 51.67925451000019, 73.78090233299986, 61.473027986999796, 63.93379604699976, 57.95053941099991, 59.18110156099988, 45.523002743999996, 59.06594978099997, 62.70341201699989, 66.56850909100012, 66.5104281460001, 67.56680771699985, 61.53087103199982, 64.10738479099973, 62.183180144999824, 46.81028204099994, 78.41369387999998, 52.79484535500001, 65.45369233499969, 72.60889681799995, 51.793694031000086, 54.14417576100004, 64.04942279599982, 64.99041321300001, 55.20227794599987, 85.85698093899987, 57.662808715999745, 54.08668976099989, 61.41518494199977, 52.852271685000005, 60.296393285999784, 59.18110156099988, 66.27870006800003, 56.83489175099999, 65.106158607, 51.67925451000019, 51.793694031000086, 57.835506275999705, 52.16433370100003, 62.70341201699989, 71.3201342729999, 58.77762630099983, 58.410967665999806, 65.33794694099993, 55.37461926600008, 57.317413595999824, 67.79907124099987, 65.22220154699994, 69.03366802100004, 56.48985287100004, 78.53074514700006, 51.192337525000084, 60.18082653600004, 55.317073790999984, 62.64550949699992, 68.85936621299993, 55.431869635999874, 55.317073790999984, 60.23860991099991, 53.97201256099993, 57.12232568100012, 60.12333948599985, 57.77784185099972, 69.03366802100004, 73.19772116099989, 50.56313188099989, 60.296393285999784, 56.60506277099989, 59.12337766099972, 59.71944851099988, 52.909698015000004, 64.81664634899994, 71.43647328099996, 56.48985287100004, 49.218367499999886, 70.20597060599994, 59.89250231099982, 62.76131453699986, 64.10738479099973, 62.58790391299999, 57.60514429099976, 65.33794694099993, 55.20227794599987, 62.70341201699989, 71.43647328099996, 65.16418007699986, 65.16418007699986, 57.77784185099972, 52.73771351899995, 57.43244673100003, 72.4921397879998, 61.357638527999825, 62.70341201699989, 66.39456410699995, 62.70341201699989, 55.259528316000115, 58.835350200999756, 56.54745782099985, 57.37507802099981, 72.43406065000022, 65.04843468299987, 55.317073790999984, 66.45264505199998, 50.219875368999965, 61.357638527999825, 74.54823909299989, 47.87354713499985, 58.201571380999894, 68.80116612300003, 52.852271685000005, 31.98005570700002, 68.68506440499982, 52.62286085899996, 66.33648316200015, 62.58790391299999, 62.53000139299979, 60.69998793599984, 66.45264505199998, 44.17853961899982, 57.14471603599986, 67.56680771699985, 60.18082653600004, 66.68437313000004, 65.16418007699986, 45.523002743999996, 48.50144676900004, 67.21885966500008, 61.2997954829998, 82.10798874800003, 65.04843468299987, 63.760207303000016, 60.353880335999975, 56.48985287100004, 63.875834051999846, 61.93488245399999, 69.56631045899985, 58.77762630099983, 72.14276682900004, 62.06767204099992, 56.43254333100003, 61.241952437999544, 56.43254333100003, 53.914526561, 60.411663711000074, 65.814946061, 69.39183053099987, 63.875834051999846, 56.43254333100003, 44.12182216700012, 69.91527031499982, 58.72019842099985, 66.220619123, 63.760207303000016, 70.9127982089999, 51.56452080000008, 55.317073790999984, 58.835350200999756, 42.209320973999866, 76.01177619199984, 57.720177425999964, 63.64458055399996, 66.33648316200015, 62.298985184999765, 50.33419624499993, 71.02913721699997, 64.99041321300001, 63.81816929799993, 72.31730361999985, 52.73771351899995, 57.43244673100003, 66.04667413900006, 55.0871869959999, 55.20227794599987, 62.76131453699986, 54.857595305999894, 61.53087103199982, 73.48931174699987, 50.33419624499993, 51.335641758000065, 72.43406065000022, 62.47209887299982, 65.46705609299988, 63.81816929799993, 50.105554493, 50.277182749000076, 67.3926846129998, 51.335641758000065, 63.81816929799993, 69.33386973300003, 62.47209887299982, 56.71997726100017, 67.27670192899996, 58.48959884099986, 54.02920376099996, 73.6058880449998, 50.105554493, 64.99041321300001, 61.241952437999544, 61.2997954829998, 61.64626049099979, 60.664708511999834, 59.71944851099988, 72.3756821349998, 71.14547622499981, 47.70227511899998, 64.22301153999979, 58.835350200999756, 53.225873761, 62.58790391299999, 60.06555611099975, 58.605046640999944, 60.12333948599985, 78.41369387999998, 43.83735783299994, 72.20084596700008, 58.77762630099983, 55.144732471, 70.79616012899987, 57.490111155999784, 58.143847480999966, 56.37493838099999, 52.50830269300013, 52.73771351899995, 77.18360661499992, 58.72019842099985, 62.47209887299982, 57.720177425999964, 56.48985287100004, 51.392714423999905, 65.98889104499995, 56.087504451000086, 53.45552296100004, 73.48931174699987, 58.835350200999756, 59.95028568599969, 64.8746678189998, 62.53000139299979, 51.163835382000116, 69.50834966099978, 62.47209887299982, 54.91514078099999, 69.97352988000011, 52.62286085899996, 55.0871869959999, 62.298985184999765, 61.2997954829998, 49.93392623699992, 76.9494407730001, 63.52895380500013, 48.87546722799971, 64.17960036299974, 51.392714423999905, 73.5474500549999, 63.64458055399996, 57.43244673100003, 58.77762630099983, 75.89496221500008, 57.25974917099984, 53.914526561, 69.7990499519999, 46.41125962499996, 69.91527031499982, 72.14276682900004, 61.069016564999856, 53.13881434700011, 67.10257882499991, 50.048247113000116, 60.06555611099975, 77.2419226269999, 55.6848606210001, 67.79907124099987, 57.547479865999776, 62.125574560999894, 55.48941511099997, 66.87061345699976, 53.68517216100008, 73.25585946899992, 66.10475508399986, 60.00777273599988, 65.39596841099979, 53.799849360999815, 59.48890766099976, 56.60506277099989, 62.35659076899992, 51.27827490300001, 66.04667413900006, 65.93081009999992, 42.72099782999976, 44.7254960690002, 52.5657290229999, 61.069016564999856, 67.56680771699985, 58.72019842099985, 59.02752963599983, 52.39374452700008, 64.58515556099997, 45.124103074999994, 65.98889104499995, 54.800049831000024, 59.89250231099982, 64.4113886969999, 56.202418940999905, 56.087504451000086, 59.77723188599998, 57.20238046099985, 52.39374452700008, 79.64378114499982, 52.5657290229999, 51.392714423999905, 67.27670192899996, 56.26002389100017, 59.431124285999886, 63.94810957499999, 58.72019842099985, 53.799849360999815, 77.066673993, 54.91514078099999, 59.95028568599969, 71.96793066099985, 53.340845760999855, 70.56348211299996, 63.52895380500013, 52.45117085700008, 47.70227511899998, 65.98889104499995, 56.202418940999905, 61.0111735199996, 70.97081817699996, 59.95028568599969, 75.71959110299986, 64.75892242500004, 62.87682264099999, 48.64676918699979, 75.71959110299986, 54.800049831000024, 67.3926846129998, 65.98889104499995, 57.317413595999824, 48.10200758099995, 68.62686431499992, 52.39374452700008, 46.29729507299999, 79.52661123300027, 57.20238046099985, 51.67925451000019, 72.20084596700008, 62.35659076899992, 56.60506277099989, 54.800049831000024, 53.85704056099985, 52.99651936100008, 67.450825033, 52.27918636100003, 55.37461926600008, 57.43244673100003, 48.70401709199996, 63.875834051999846, 52.10720186500021, 56.26002389100017, 67.04473656099981, 73.37273544899995, 42.72099782999976, 46.903103468999916, 53.45552296100004, 62.298985184999765, 59.89250231099982, 59.54639471099995, 62.298985184999765, 69.45009009599994, 58.143847480999966, 50.048247113000116, 69.682829589, 58.547322741000016, 61.12656297900003, 75.36884887899987, 64.35336722700004, 44.839341976000014, 58.374447060999955, 53.45552296100004, 54.91514078099999, 61.069016564999856, 61.662948272999756, 53.799849360999815, 68.33646078899983, 60.664708511999834, 51.049395860999994, 62.183180144999824, 58.547322741000016, 56.31733343099995, 63.47099180999976, 48.87546722799971, 49.991233617000034, 62.06767204099992, 60.12333948599985, 63.47099180999976, 63.3553650609997, 54.800049831000024, 40.14745197299976, 58.547322741000016, 48.818219322999994, 44.32659639999997, 69.39183053099987, 62.183180144999824, 64.70090095499995, 56.029899501000045, 59.258070485999724, 55.02993662599988, 72.96426888299993, 46.01194424100004, 63.64458055399996, 75.66133426099987, 52.50830269300013, 59.373340911000014, 59.83501526100008, 56.8569853409997, 42.55043887800002, 74.43154376099983, 49.762297981000074, 58.95050198099989, 47.474107946999766, 44.839341976000014, 46.46809541699986, 56.087504451000086, 58.201571380999894, 45.55579306499976, 68.45286096900008, 44.95318788299983, 52.909698015000004, 53.570200161, 46.29729507299999, 62.47209887299982, 61.836358896999855, 60.60686546699981, 59.71944851099988, 64.70090095499995, 41.434019704999855, 49.36173408899981, 59.60417808600005, 56.029899501000045, 59.66196146099992, 49.70499060099996, 65.75686511599997, 54.742799461000004, 56.56925464599976, 36.39686066399986, 79.46787567299998, 54.62770851100004, 54.742799461000004, 77.94518790899997, 49.762297981000074, 51.106468526999834, 54.742799461000004, 54.57045814100002, 48.53256695599998, 70.73814016100005, 58.02869570099983, 44.89641126099991, 57.08705161099965, 44.7254960690002, 57.14471603599986, 60.72255155699986, 53.62768616099993, 52.16433370100003, 57.20238046099985, 53.62768616099993, 46.126201761000175, 58.25929528100005, 54.45536719100005, 55.914985011000226, 58.374447060999955, 59.71944851099988, 49.533362345000114, 62.183180144999824, 48.41836472499995, 49.47634884900003, 65.814946061, 53.28335976099993, 65.75686511599997, 65.58292013200003, 53.45552296100004, 55.914985011000226, 70.62150208100002, 55.857380061000185, 56.202418940999905, 64.4691126209998, 57.14471603599986, 56.74165649099973, 56.9720184759999, 47.30283593100012, 53.45552296100004, 70.67982112100003, 54.742799461000004], \"power_mean\": 60.47441289290544, \"energy_millijoules\": 13576.503900241914, \"energy_joules\": 13.576503900241914, \"coremark_score\": 1113.68, \"coremarks_per_mhz\": 3.712266666666667, \"ulpmark_cm_score\": 18.414166256420796}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1157.16739248, 1160.2468002000003, 1152.2368320869998, 1149.3302479039999, 1154.9228474880001, 1148.541940392, 1158.62249088, 1159.6306536099999, 1152.125835216, 1158.566552205, 1171.0512842179999, 1148.609883534, 1149.2194883229997, 1167.1371855229997, 1149.773570957, 1137.942687145, 1165.955749435, 1140.187397709, 1147.914568332], \"power_mean\": 1154.167547770421, \"energy_millijoules\": 5770.837738852105, \"energy_joules\": 5.770837738852105}}, \"576000\": {\"active\": {\"elapsed_sec\": 116.918732508, \"elapsed_ns\": 116918732508, \"power_samples\": [79.05732916900001, 64.29534575699995, 78.41369387999998, 81.57920186000001, 80.1695340419999, 78.76425378499994, 82.74984058500013, 66.81247303700002, 67.21885966500008, 68.22035907100008, 66.63834993299997, 77.00805738299982, 81.57920186000001, 76.481409687, 80.34561763399984, 77.94518790899997, 65.69878417099994, 75.77814823800009, 69.21735060300011, 63.94810957499999, 85.44465723100006, 79.11606472900007, 83.80271547899974, 76.481409687, 72.84769258499978, 66.5223672489999, 65.524839187, 76.65695891899986, 73.02270687300006, 91.4196564209999, 75.19347776699988, 78.82298934500022, 77.88651182399985, 72.84769258499978, 69.15938980499982, 86.3204387039998, 74.02266011699976, 64.35336722700004, 77.769460557, 70.50516307299995, 71.55987980999998, 80.34561763399984, 81.57920186000001, 66.87061345699976, 85.26786057499976, 65.69878417099994, 65.64100107700006, 89.8943553009999, 60.43363296299981, 76.54002629699994, 83.92066278899983, 70.44684403300016, 65.58292013200003, 82.57340016900002, 78.99889481700006, 64.23762183299982, 82.63231434900013, 72.67267829699995, 85.208827445, 91.18263788099989, 69.21735060300011, 80.34561763399984, 71.61825832499972, 72.55610199900002, 62.950225577999845, 86.3204387039998, 64.23762183299982, 69.21735060300011, 84.03830766999977, 66.63834993299997, 67.58135192899977, 83.92066278899983, 78.82298934500022, 67.87175545499986, 83.74404425299986, 75.13522092500011, 72.7892545950001, 82.74984058500013, 69.10113023999975, 73.90596478499992, 76.59834230899992, 70.3305050250001, 81.40293956400001, 85.03203078899969, 72.55610199900002, 74.08115777700004, 92.05652583599999, 57.91354392099993, 77.652108387, 87.49066140900004, 72.67267829699995, 77.59373320500004, 81.40293956400001, 66.580209513, 67.98785717300007, 88.36964771099997, 63.94810957499999, 73.02270687300006, 89.48006463599995, 76.3058604549999, 74.72343208500001, 82.63231434900013, 71.73471597799994, 59.20028711099985, 88.54697931099986, 69.33386973300003, 74.54823909299989, 69.15938980499982, 70.27218598499985, 70.62150208100002, 76.36447706500007, 67.75565373699988, 67.52315183899987, 84.67874021099988, 65.35089420300005, 69.7990499519999, 69.0428706749999, 58.08641960099999, 71.90955214600012, 83.92066278899983, 83.44978083599995, 76.36447706500007, 82.45587393300002, 61.72085079299973, 67.21885966500008, 66.4642268289997, 57.51006866099988, 86.37953130899973, 70.3305050250001, 91.00525430099992, 78.88142369700017, 84.97330039299982, 62.950225577999845, 72.55610199900002, 66.40638456500005, 78.940159257, 89.83508407599993, 66.81247303700002, 72.38108771100019, 80.2283290769999, 72.38108771100019, 70.27218598499985, 72.73081660499997, 73.78926945299986, 75.19347776699988, 78.82298934500022, 75.2520349020001, 73.84746712499987, 80.2283290769999, 71.32696450399999, 73.78926945299986, 86.3204387039998, 73.73077179300003, 62.77663683399987, 75.83782936900002, 68.86868951399993, 73.90596478499992, 89.77611680599966, 76.54002629699994, 76.36447706500007, 81.46179426899994, 70.3305050250001, 54.225775501000044, 81.22667726799978, 67.6395520189999, 79.05732916900001, 87.31381185699979, 75.2520349020001, 75.95476199099994, 83.92066278899983, 60.31824350399961, 61.778753312999925, 81.28553197299993, 61.605342688999826, 72.84769258499978, 77.41800585300007, 62.83459882899979, 72.61424030700005, 77.71078447200011, 75.07666378999988, 60.376086548999865, 78.940159257, 70.27218598499985, 71.55987980999998, 76.24754444299992, 67.81355536499996, 76.07199521100006, 79.93495692799979, 74.02266011699976, 78.70581943299999, 78.940159257, 65.29311110899994, 62.8922635829997, 80.99186208599986, 66.580209513, 88.4285558109998, 87.25465977699992, 74.02266011699976, 59.60417808600005, 78.82298934500022, 61.605342688999826, 64.06385496899998, 88.25122421099991, 72.49766400899989, 87.60896556899979, 79.4651996739999, 66.580209513, 62.125574560999894, 71.44342215699999, 66.4642268289997, 66.4642268289997, 94.69669674499983, 76.42279307700005, 75.60277712600009, 67.69745364699975, 68.86868951399993, 65.75686511599997, 82.33834769700002, 75.07666378999988, 71.32696450399999, 92.05652583599999, 61.547440168999856, 68.45286096900008, 76.3058604549999, 66.5223672489999, 80.34561763399984, 78.64708387299993, 72.61424030700005, 77.53505711999992, 88.31043596099971, 63.94810957499999, 70.73814016100005, 69.98118892899993, 67.232748313, 78.99889481700006, 82.39726187700012, 72.49766400899989, 80.11073900699989, 80.93300738099992, 62.66101008500004, 67.46525021100001, 76.24754444299992, 73.84746712499987, 80.11073900699989, 70.15584697699978, 77.35932976799995, 78.76425378499994, 79.81736685800001, 65.11916612499999, 86.14346392799985, 70.03950796899994, 68.92665031199999, 78.940159257, 71.44342215699999, 66.17412104099981, 78.52991396100015, 74.95984981300012, 71.32696450399999, 78.76425378499994, 72.61424030700005, 67.75565373699988, 78.76425378499994, 71.3850436419998, 71.21020747400007, 82.45587393300002, 72.43922601899999, 79.87616189299979, 73.90596478499992, 73.96416245699993, 61.547440168999856, 83.50845206199983, 65.06108517999996, 78.70581943299999, 84.85553686699973, 72.43922601899999, 75.01840694799989, 79.93495692799979, 74.7844787009999, 64.00583349899989, 82.27943351699992, 72.32264972099983, 73.84746712499987, 89.5393358609997, 70.09782700899996, 80.81559979000008, 76.42279307700005, 67.69745364699975, 68.81042994900008, 91.06428074099995, 66.5223672489999, 71.44342215699999, 78.64708387299993, 62.77663683399987, 85.84860698099988, 84.73747060699998, 71.21020747400007, 73.49708114099985, 81.10926967700016, 61.43193206499973, 63.94810957499999, 82.27943351699992, 63.890088104999904, 79.75887333599985, 79.87616189299979, 72.38108771100019, 63.18177631699996, 77.652108387, 62.545383335999986, 64.00583349899989, 85.78951437599994, 62.487421340999845, 83.44978083599995, 85.90769958599981, 78.64708387299993, 69.33386973300003, 70.09782700899996, 65.11916612499999, 68.69420958599994, 94.399455321, 62.8922635829997, 84.79650373699974, 65.11916612499999, 76.24754444299992, 68.10425735299987, 77.41800585300007, 72.49766400899989, 86.02558175700005, 95.44989484200005, 60.31824350399961, 80.34561763399984, 66.40638456500005, 74.95984981300012, 73.84746712499987, 78.23653736899996, 79.81736685800001, 73.73077179300003, 90.47219078099988, 68.75217038399978, 64.52713409100011, 60.08746458599967, 67.58135192899977, 84.97330039299982, 72.43922601899999, 76.18892783299998, 78.70581943299999, 79.70007830099962, 65.1772470699998, 61.08511081699976, 68.69420958599994, 81.10926967700016, 84.91426726299983, 71.32696450399999, 55.28251220099992, 73.73077179300003, 84.61970708099989, 63.890088104999904, 84.73747060699998, 78.52991396100015, 66.23226146100001, 79.64128326600007, 69.80653088100007, 63.890088104999904, 73.55557880099968, 78.41244284100026, 71.21020747400007, 79.75887333599985, 70.03950796899994, 62.6030480899999, 84.85553686699973, 71.21020747400007, 78.47117840100009, 82.27943351699992, 72.43922601899999, 76.18892783299998, 74.95984981300012, 69.39919481700008, 63.890088104999904, 82.16190728099991, 68.51972965799996, 79.87616189299979, 86.08467436199976, 71.09374982100007, 77.30095458599999, 72.32264972099983, 79.28941759500003, 62.487421340999845, 88.31043596099971, 75.95476199099994, 74.7844787009999, 78.00219754500017, 74.7844787009999, 69.80653088100007, 77.35932976799995, 78.17810301700001, 71.21020747400007, 88.19231611099985, 71.03537130600012, 62.545383335999986, 80.93300738099992, 66.34824414499985, 91.70079391599984, 89.5986070859999, 68.46147009299989, 69.34087577699984, 84.73747060699998, 61.31642396099983, 60.14501099999961, 81.86794062900003, 69.63187283299976, 74.5505504539999, 90.708905061, 69.98118892899993, 60.72255155699986, 82.04438104500014, 61.43193206499973, 67.6395520189999, 89.65757435599994, 71.73946854899987, 89.5393358609997, 70.03950796899994, 76.07199521100006, 70.44684403300016, 74.8430358359999, 77.18360241599999, 66.17412104099981, 88.25122421099991, 73.78926945299986, 82.27943351699992, 63.658299770999974, 76.07199521100006, 64.29534575699995, 72.38108771100019, 71.09374982100007, 77.30095458599999, 89.5393358609997, 69.98118892899993, 76.54002629699994, 65.06108517999996, 63.77434271099992, 76.42279307700005, 69.86484992099986, 74.7259215659999, 68.51972965799996, 85.67163220499992, 67.46525021100001, 74.02266011699976, 69.92316896099987, 76.18892783299998, 83.56742571699988, 68.57769045600003, 79.70007830099962, 83.39080718099967, 80.63933749399985, 70.91891365300012, 92.05652583599999, 79.70007830099962, 76.07199521100006, 82.22082146100001, 69.92316896099987, 82.16190728099991, 77.30095458599999, 67.232748313, 58.68142203599973, 88.48776756099983], \"power_mean\": 74.52577437683614, \"energy_millijoules\": 8713.459079316865, \"energy_joules\": 8.713459079316864, \"coremark_score\": 2138.415349, \"coremarks_per_mhz\": 3.7125266475694443, \"ulpmark_cm_score\": 28.691246234623968}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1132.329608553, 1158.0658642800001, 1156.8915474700002, 1158.28928254, 1155.77299152, 1147.1579332079998, 1138.3192223429999, 1138.593887594, 1158.12157526, 1127.300518044, 1147.324036824, 1160.58163084, 1154.6544845350002, 1149.848829996, 1143.574028756, 1152.362746091, 1137.5283591720001, 1159.4076606750002, 1144.638547349], \"power_mean\": 1148.4611976342105, \"energy_millijoules\": 5742.305988171052, \"energy_joules\": 5.7423059881710525}}, \"768000\": {\"active\": {\"elapsed_sec\": 87.683468717, \"elapsed_ns\": 87683468717, \"power_samples\": [79.4651996739999, 96.85713617100009, 94.28074185699984, 78.35400848900008, 89.42109736599991, 84.5606739509999, 82.86095157299974, 74.08115777700004, 84.32514689899972, 80.75674508500015, 95.56903243199986, 80.69789037999999, 83.15521498999988, 93.04799148099983, 79.40670615199974, 89.18431642099972, 87.19550769700004, 76.94949988200005, 88.54697931099986, 91.93774548599981, 81.86794062900003, 75.83782936900002, 95.39063152799986, 69.690191873, 103.93489636500021, 100.12593068399997, 86.78235316899986, 75.83782936900002, 90.59054792099982, 75.60396412499995, 74.49229361199991, 97.84783779799977, 80.69789037999999, 101.23895759899983, 85.67163220499992, 89.06607792599993, 84.32514689899972, 85.55375003399968, 87.77844116099959, 81.86794062900003, 95.33106273299995, 73.26369047699995, 87.95577276099993, 92.92939705100002, 86.8412019049997, 86.8412019049997, 97.66908065400003, 89.36182614099971, 77.0665511489999, 91.46353778099979, 83.21418864499992, 82.97889888299983, 98.89750566900011, 80.63933749399985, 90.53121722099968, 94.22123253699965, 86.90035398500004, 83.15521498999988, 89.12534915099991, 80.81559979000008, 70.80245599999989, 97.84783779799977, 86.8412019049997, 88.07389261099979, 90.47219078099988, 84.38387729499982, 79.4651996739999, 98.83775844900015, 79.40670615199974, 71.73946854899987, 97.72876839899982, 83.03757010899994, 81.80902644899993, 89.24358764599992, 81.86794062900003, 84.14835024299987, 95.09339851499999, 84.20738337299986, 79.87616189299979, 99.07644093299996, 76.77377252999986, 69.690191873, 89.12534915099991, 75.66228013700015, 85.49465742899997, 94.10251907299994, 85.49465742899997, 82.51478811300012, 85.43586786299988, 72.0891974430001, 80.75674508500015, 88.07389261099979, 80.75674508500015, 97.84783779799977, 91.81926970099994, 91.81926970099994, 70.27218598499985, 89.24358764599992, 86.8412019049997, 68.170769802, 94.10251907299994, 80.63933749399985, 101.65710113299997, 92.98854183100002, 90.47219078099988, 75.19347776699988, 87.83765291099985, 84.26611376899996, 97.78815005299998, 101.47780904499996, 81.63258603299982, 83.56742571699988, 77.0665511489999, 79.34791111699974, 86.14346392799985, 100.00662399499993, 84.08931711299965, 95.39063152799986, 100.30504406800014, 79.11333400299986, 76.77377252999986, 87.77844116099959, 86.48719945699986, 84.5606739509999, 95.03382972000009, 82.91992522800001, 84.14835024299987, 96.44065563899994, 70.62761983199994, 95.09339851499999, 84.03058671699978, 100.00662399499993, 92.92939705100002, 81.63258603299982, 84.26611376899996, 91.58231813099997, 81.10356690899994, 81.63258603299982, 100.24523737300001, 92.810802621, 87.77844116099959, 97.78815005299998, 79.1718275249998, 72.971802153, 94.04331492899996, 86.60520027300004, 86.36889529699988, 92.810802621, 86.66435235300014, 85.199800482, 100.00662399499993, 77.76755651300005, 78.00219754500017, 94.04331492899996, 84.03058671699978, 90.35383364099994, 84.08931711299965, 89.24358764599992, 87.48298971099985, 93.92429628900004, 81.51505979700005, 86.72320108899976, 96.3810273690001, 93.92429628900004, 86.5460481929997, 89.99845796099999, 79.05453896799986, 80.28681290200007, 96.5596063930002, 82.91992522800001, 85.49465742899997, 96.5596063930002, 89.06607792599993, 96.91676444099971, 96.08349759099974, 86.60520027300004, 78.93725041099992, 88.77032971099993, 75.48673090499983, 86.72320108899976, 91.58231813099997, 74.25836536499992, 77.8262920730001, 100.93993278099992, 79.1718275249998, 85.08191831099975, 92.75135297099996, 83.03757010899994, 75.42841489299985, 87.71953306099977, 84.03058671699978, 88.94783943099992, 99.82751061099998, 84.08931711299965, 80.345667607, 95.03382972000009, 76.59804517800012, 69.34087577699984, 93.92429628900004, 72.91330449299994, 97.72876839899982, 97.31156636599985, 91.58231813099997, 73.67227413299975, 89.00680670099973, 86.48719945699986, 77.8262920730001, 96.202448345, 78.87845537599992, 95.21223062399986, 113.04328822699995, 81.57397397699992, 77.2422785010001, 95.15266182899995, 76.42231782599993, 76.71509644499997, 97.49032351000005, 78.93725041099992, 84.44291042499981, 76.71509644499997, 82.80228034699985, 78.29527292900002, 81.39753356100005, 82.86095157299974, 83.97155358699979, 96.32170488499992, 81.51505979700005, 81.050414972, 81.45614561699995, 78.060933105, 80.69789037999999, 90.05748440100001, 87.6011095609997, 87.6011095609997, 96.44065563899994, 68.9915596809999, 69.98118892899993, 92.33581516100003, 71.1559876949998, 90.35383364099994, 91.10780586099986, 87.77844116099959, 90.11681510099993, 90.05748440100001, 75.42841489299985, 75.89644597899996, 92.33581516100003, 86.2508944809997, 91.58231813099997, 85.02282570600005, 79.05453896799986, 91.34506199599991, 86.36889529699988, 81.51505979700005, 85.08191831099975, 88.82929698099997, 82.56668815599983, 91.34506199599991, 77.7091221610001, 73.02999982499978, 97.3712541110001, 85.9557407689997, 83.9125204569998, 98.71857040500004, 86.31004656100004, 72.62141616899976, 93.983805609, 77.65038660100004, 72.62141616899976, 101.11922486899994, 91.34506199599991, 96.202448345, 89.93912726100007, 83.97155358699979, 81.22109314499994, 92.6919033209997, 77.5916510410002, 91.10780586099986, 94.97426092499973, 86.19174240099983, 88.94783943099992, 88.82929698099997, 77.7091221610001, 79.99314301499999, 97.43063576500003, 84.9049435349998, 86.48719945699986, 97.55001125500007, 80.22795819699991, 83.79475693099994, 85.02282570600005, 79.75802601399982, 89.64308228100003, 91.28567182100005, 91.46353778099979, 79.05453896799986, 89.99845796099999, 83.9125204569998, 78.76116681899975, 98.241511833, 93.80558282499987, 89.76143942099998, 91.404452171, 98.71857040500004, 75.25286566100021, 86.5460481929997, 75.1356324410001, 86.31004656100004, 100.82050705799998, 82.80228034699985, 96.26207661499984, 97.31156636599985, 78.64387826199982, 81.39753356100005, 96.14312586100004, 86.13289366499976, 97.55001125500007, 102.04839771299999, 78.93725041099992, 82.74330669200003, 86.42804737699998, 80.28681290200007, 79.05453896799986, 94.91499761099999, 74.02473741100016, 95.39063152799986, 108.25210026900004, 72.7966091610001, 80.28681290200007, 89.99845796099999, 85.02282570600005, 79.99314301499999, 89.99845796099999, 86.07374158499988, 89.30255491599974, 102.04839771299999, 72.73811150099982, 87.89686466099988, 89.99845796099999, 86.42804737699998, 93.50864657699981, 101.11922486899994, 89.87979656099992, 75.77921275900007, 83.79475693099994, 73.84936629899994, 91.16719603599972, 94.73659670699999, 90.05748440100001], \"power_mean\": 86.49577597586811, \"energy_millijoules\": 7584.249666932672, \"energy_joules\": 7.5842496669326716, \"coremark_score\": 2851.439977, \"coremarks_per_mhz\": 3.7128124700520835, \"ulpmark_cm_score\": 32.963049870312155}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1132.110895734, 1147.667715273, 1125.6354997360002, 1144.9284881520002, 1148.952671688, 1152.640974468, 1153.985792855, 1141.572035196, 1142.8014694559997, 1131.0448323680002, 1143.036422964, 1136.595280734, 1155.21534576, 1161.198899382, 1145.48138178, 1150.459740795, 1139.219064032, 1139.5165387760003, 1142.068206852], \"power_mean\": 1143.9016450526842, \"energy_millijoules\": 5719.508225263421, \"energy_joules\": 5.7195082252634215}}, \"1017600\": {\"active\": {\"elapsed_sec\": 66.178037526, \"elapsed_ns\": 66178037526, \"power_samples\": [119.12571244900005, 105.79217394299963, 107.02012407299958, 103.21661067000014, 95.72633954299977, 94.79586002099995, 115.4423964189998, 98.30125905299997, 112.1168464110001, 106.83994138499975, 103.33627368299994, 95.15266182899995, 102.16794208099986, 101.92885334499988, 87.36486986099976, 122.9346164609999, 93.50864657699981, 98.71857040500004, 93.44913725699985, 92.217220731, 107.26016196899968, 108.13196228700008, 95.66701705900005, 99.5885905319999, 111.9359506589999, 103.09664004000001, 93.92429628900004, 98.241511833, 89.82077012099967, 112.98282691699978, 117.95863984399989, 97.25187862100006, 101.98877918500011, 106.77977764499974, 87.36486986099976, 96.5596063930002, 100.70108133500003, 94.6177645979999, 122.75211646100001, 118.07972737499972, 103.33627368299994, 113.04328822699995, 104.44444215500016, 87.2467500109999, 96.3810273690001, 99.46928384299986, 94.4393636939999, 114.08986772000003, 100.64121496999974, 93.33042379299991, 105.6121693749999, 99.40947714799995, 96.77529493399993, 95.03382972000009, 103.21661067000014, 96.32170488499992, 114.02934693499992, 98.30125905299997, 93.44913725699985, 104.08478925899999, 89.70241298099995, 101.98877918500011, 96.9540520779999, 110.4669405369998, 84.72796875899985, 109.17925425999988, 93.21171032899997, 88.47458149599993, 106.77977764499974, 97.82389408500012, 100.58165561199985, 112.92236560699985, 110.04547236100007, 100.64121496999974, 99.46928384299986, 98.12232378900012, 93.44913725699985, 116.60952849899968, 100.76094769999986, 104.20457091699996, 109.35979377199988, 110.2862229049997, 94.4393636939999, 105.67227363999973, 100.52178924699979, 98.00282934899997, 114.27111971199997, 96.83498267900018, 92.217220731, 106.77977764499974, 101.62983876900012, 105.67227363999973, 105.67227363999973, 99.34997715400004, 103.09664004000001, 109.23922800199966, 93.21171032899997, 87.2467500109999, 112.98282691699978, 101.56991292899988, 107.95160089499996, 106.77977764499974, 101.749383137, 94.67702791199986, 105.55206510999983, 96.83498267900018, 90.87085429099989, 118.82254121699998, 95.42880976499987, 109.17925425999988, 101.8689275050001, 95.60738878899997, 95.72633954299977, 109.41976751399989, 102.9769770270002, 93.09269168899982, 115.50297687399984, 103.03696234199992, 99.29017045900014, 105.6121693749999, 93.27091447299972, 94.4393636939999, 108.01151546699998, 107.77123950299983, 103.51592201100016, 117.89794043899997, 89.46539444099994, 99.52909053799999, 104.20457091699996, 90.75237850600001, 95.48843803499994, 111.51375731999974, 106.65975869699992, 93.74607350499991, 106.65975869699992, 90.75237850600001, 89.46539444099994, 104.32435257499992, 89.82077012099967, 105.55206510999983, 111.57415915499996, 101.92885334499988, 92.6919033209997, 112.86221435499988, 98.12232378900012, 89.16934946099991, 110.4069076249998, 105.37206054199964, 98.30125905299997, 107.95160089499996, 107.83115407499986, 98.83775844900015, 99.29017045900014, 96.71591328, 119.98919810699999, 119.18647132900014, 97.94338852500005, 103.39595138100003, 108.01151546699998, 99.29017045900014, 103.57559970900002, 104.0247444690001, 98.12232378900012, 113.96882614999981, 114.08986772000003, 98.241511833, 98.53963514099996, 100.22307143600005, 92.736551297, 99.64839722700003, 100.76094769999986, 101.62983876900012, 107.65079268299996, 114.08986772000003, 92.0391766509997, 89.00680670099973, 102.91699171200003, 108.13196228700008, 114.15007814199998, 94.14182519999986, 104.08478925899999, 109.98513000099979, 104.08478925899999, 99.17086376999987, 94.14182519999986, 105.31226450399981, 100.64121496999974, 116.54919954299999, 103.96469967899998, 100.40236352399984, 106.47957600899963, 99.34997715400004, 99.34997715400004, 114.08986772000003, 98.06257656899993, 95.48843803499994, 115.07953502699979, 96.59653778999996, 91.86113257099987, 107.83115407499986, 101.68945729699976, 99.23036376400023, 105.55206510999983, 104.0247444690001, 89.347037301, 106.65975869699992, 99.05125038000006, 90.63359815600006, 104.0247444690001, 104.20457091699996, 100.52178924699979, 111.63456098999995, 98.12232378900012, 88.35603904599975, 97.7644532610002, 100.163205071, 107.89137748500002, 109.0586884899999, 104.26461570700008, 107.95160089499996, 113.96882614999981, 99.34997715400004, 85.54228289699995, 117.71615350299999, 98.93194369100001, 101.809308977, 122.81305396099992, 98.06257656899993, 93.21171032899997, 101.56991292899988, 94.37979489899976, 92.55832851299988, 108.01151546699998, 108.75789235099978, 93.03348754499984, 112.56021786299993, 89.05099232099997, 91.68308849100003, 110.22618999299993, 101.50998708899988, 111.27276948599979, 111.45366523799999, 100.04377934800004, 94.32022610399986, 97.70470604100001, 99.05125038000006, 111.57415915499996, 124.8418290510001, 110.16584763299966, 113.66684295100004, 100.342497159, 99.17086376999987, 88.35603904599975, 121.22063819099981, 90.57451254599982, 115.32154617799983, 110.22618999299993, 102.79732869899999, 116.0650130250001, 101.56991292899988, 95.5477605189999, 101.809308977, 118.88298851299987], \"power_mean\": 102.40863198877179, \"energy_millijoules\": 6777.202290739263, \"energy_joules\": 6.777202290739263, \"coremark_score\": 3778.0901, \"coremarks_per_mhz\": 3.712745774371069, \"ulpmark_cm_score\": 36.88837801722601}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1132.305391932, 1153.93241664, 1150.688575244, 1148.342413894, 1140.965697573, 1153.261567705, 1154.37859056, 1132.360199997, 1150.7442758240002, 1133.4792461719999, 1137.165233087, 1149.404557173, 1144.652041338, 1140.855248403, 1144.652041338, 1150.410643632, 1133.69843496, 1151.972997604, 1133.4792461719999], \"power_mean\": 1144.0394115393683, \"energy_millijoules\": 5720.1970576968415, \"energy_joules\": 5.720197057696842}}, \"1248000\": {\"active\": {\"elapsed_sec\": 53.959073365, \"elapsed_ns\": 53959073365, \"power_samples\": [112.50006661099997, 131.16638206900006, 119.80705493099981, 118.88298851299987, 128.52792205499986, 105.01235963299996, 112.50006661099997, 113.60663252900008, 108.93843186299978, 118.5798172809998, 131.1053426850001, 114.83783454500008, 111.332861568, 112.50006661099997, 113.7875741580001, 105.49226907199977, 117.41327903599995, 123.61447275599994, 128.3448448969998, 121.22063819099981, 119.86787328600008, 102.73734338400004, 117.41327903599995, 106.2993933209998, 122.32649146099993, 129.57202337700005, 120.11052292799991, 121.22063819099981, 121.03831631100002, 118.51936998499991, 101.33082419300013, 128.16145371300013, 111.03147189900005, 121.40296007100005, 132.08747889099982, 111.09187373399982, 108.63763572399967, 123.61447275599994, 117.17079269500005, 116.00437309499989, 135.52747882500012, 116.00437309499989, 117.89794043899997, 125.82534847599982, 108.8781489779999, 113.42538053699991, 124.8418290510001, 126.9304304010002, 114.83783454500008, 135.65034719799996, 108.69791860899977, 112.98282691699978, 119.98919810699999, 108.4570962119999, 128.58915712499993, 125.94726691100004, 125.88646440100001, 124.59822947099997, 122.02242896099983, 114.77725409000004, 109.48005039899977, 127.11364288100026, 99.86448726000003, 122.20492896099995, 129.63300359100003, 126.80807960100014, 124.9028855009999, 111.27276948599979, 116.0650130250001, 107.95160089499996, 114.71667363499978, 109.86475472899997, 124.53717302100017, 123.49279161100003, 119.5644052890002, 126.252219706, 112.43960530100003, 117.29219150499989, 114.02934693499992, 122.26555396100002, 114.65640384899984, 124.59822947099997, 129.51072883200004, 111.89638368500005, 117.04970516399999, 108.69791860899977, 118.70102345700002, 110.22618999299993, 123.43210744099997, 113.60663252900008, 128.038983573, 124.65928592099999, 105.87917273699986, 125.82534847599982, 106.11921063299997, 120.91687245599996, 119.6857301099999, 118.33740492900006, 119.62491175500008, 129.32715952800004, 114.47497315299984, 113.48559095899986, 126.9304304010002, 121.83992896099994, 120.97775048099993, 131.90355334699984, 114.65640384899984, 112.92236560699985, 126.68604252099999, 113.48559095899986, 109.80441236899992, 129.57202337700005, 114.77725409000004, 112.3189927389999, 140.37365024999986, 117.17079269500005, 118.45861110499982, 134.29645551299996, 112.3189927389999, 117.23149209999997, 128.16145371300013, 116.12534198099979, 114.77725409000004, 116.00437309499989, 106.11921063299997, 119.6857301099999, 125.33736132100012, 114.71667363499978, 124.65928592099999, 122.14399146100004, 118.45861110499982, 101.21097251300012, 121.96149146099992, 111.95684499499998, 120.855994431, 132.88535148899973, 109.68403709699987, 115.94373316499991, 117.17079269500005, 112.07745755699989, 110.91097798200008, 122.0830539609999, 121.77899146100003, 109.80441236899992, 142.83155477699984, 113.42538053699991, 104.89215110299983, 123.37111046599989, 112.19838017699999, 113.3648597519998, 125.76423255100008, 124.11071720100017, 104.9522553679999, 120.79542860099991, 112.13791886699983, 118.39785222499995, 125.64231411599985, 122.14399146100004, 120.855994431, 132.02638033699986, 128.16145371300013, 103.66509157300015, 120.73455057599995, 105.87917273699986, 122.20492896099995, 130.67649381700016, 125.88646440100001, 119.5644052890002, 124.4153732310001, 104.59224623199975, 109.44297710499973, 130.55410041300001, 114.59582339399981, 125.82534847599982, 139.1467093650001, 109.62369473699982, 119.5644052890002, 119.6857301099999, 108.4570962119999, 106.05935542499992, 120.855994431, 108.57735283899979, 117.47366716199986, 134.54195419100006, 107.23015532699992, 115.26096572300003, 123.37111046599989, 110.91097798200008, 113.3648597519998, 130.55410041300001, 113.60663252900008, 112.741291735, 130.67649381700016, 111.09187373399982, 118.76178233699989, 127.05246748100012, 125.64231411599985, 117.04970516399999, 127.05246748100012, 116.92861763299993, 110.4669405369998, 112.01730630499992, 108.39681332699979, 124.65928592099999, 129.2658649829998, 120.73455057599995, 126.7472179209999, 123.06675120099976, 113.18360775999986, 111.63456098999995, 114.59582339399981, 112.13791886699983, 132.9465092129999, 129.08229567900003, 117.17079269500005], \"power_mean\": 118.66889627265111, \"energy_millijoules\": 6403.263680119557, \"energy_joules\": 6.403263680119557, \"coremark_score\": 4633.576751, \"coremarks_per_mhz\": 3.712801883814102, \"ulpmark_cm_score\": 39.04259023038267}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1146.559265276, 1155.71824953, 1136.8358041579997, 1150.9713182570001, 1137.8990767999999, 1137.5894376, 1152.7042292200001, 1142.81561645, 1150.355228696, 1148.009494182, 1160.575938774, 1130.5807482840003, 1152.4257031050001, 1145.16497424, 1147.787452696, 1149.1269223259999, 1139.296444132, 1145.5526441519999, 1146.670309586], \"power_mean\": 1146.1388872349473, \"energy_millijoules\": 5730.694436174736, \"energy_joules\": 5.730694436174736}}, \"1324800\": {\"active\": {\"elapsed_sec\": 50.832861491, \"elapsed_ns\": 50832861491, \"power_samples\": [135.46588670999995, 121.90055396100001, 128.96002092000003, 126.80807960100014, 119.38226211300002, 117.17079269500005, 142.6460249849997, 119.32144375799999, 123.49279161100003, 134.050641284, 121.90055396100001, 126.06918534600004, 135.28142622199994, 126.80807960100014, 120.6131067209999, 137.67324068699986, 123.06675120099976, 112.86221435499988, 137.55013502399993, 114.65640384899984, 127.11364288100026, 126.62486712100008, 120.67367255099975, 123.1884323459999, 135.03568947600024, 116.68613129200003, 120.29266610399986, 120.55222869599993, 113.18360775999986, 127.978062529, 126.68604252099999, 130.18660556500004, 126.99129208099998, 140.18847728199967, 108.21627381500002, 112.56021786299993, 115.58051553299993, 114.47497315299984, 125.45927975600011, 134.1733906229997, 122.82307610599992, 121.53586646099984, 130.247959585, 118.27664604899974, 115.07953502699979, 110.66968039499989, 120.6131067209999, 131.59711575399956, 133.25355881699988, 124.11071720100017, 130.247959585, 119.13930058200003, 123.00575422599991, 118.33740492900006, 119.4427685789999, 123.2494293210002, 135.15855784899986, 130.9842405679999, 125.15432696099992, 127.73343627500003, 111.71561987099972, 129.1435902239998, 137.98147954499996, 126.50283004099992, 124.11071720100017, 126.44196836100014, 117.85226864099991, 112.51912057699997, 130.12556618100007, 117.97347481700012, 122.94475725100006, 131.4131902099998, 121.7180539609999, 116.86791822800001, 122.884073081, 124.04966075100015, 131.22926466599984, 136.50818898699958, 124.11071720100017, 119.01797576099989, 132.45567119099996, 115.520186577, 115.33857776099967, 123.92786096099985, 122.82307610599992, 120.06614108100007, 130.12556618100007, 124.4153732310001, 114.353812243, 121.47492896099993, 113.06287655300002, 126.62486712100008, 133.74361016099988, 126.380792961, 129.81911071700006, 132.57861713099987, 119.13930058200003, 99.38647736099983, 133.62086082199994, 121.7180539609999, 131.47460370499994, 131.10675261699998, 124.11071720100017, 135.09696573400015, 127.67251523100003, 120.12701910600003, 113.00235576799992, 140.18847728199967, 127.73343627500003, 125.09321103600018, 144.78984656099988, 116.62574316599989, 110.6095883129999, 124.04966075100015, 116.62574316599989, 109.44297710499973, 130.247959585, 122.76239193599986, 121.53586646099984, 124.17146054100022, 118.09468099299988, 122.76239193599986, 125.15432696099992, 127.79467134499987, 128.89904070600005, 119.07879411599993, 119.26062540299995, 110.42869256099993, 127.73343627500003, 115.4595466469998, 129.02131546500004, 128.53190209800005, 121.53586646099984, 122.64039798599993, 126.62486712100008, 110.18739497399974, 112.94214534599996, 142.27496540099992, 117.67030358500006, 126.50283004099992, 121.47492896099993, 123.92786096099985, 134.050641284, 130.247959585, 125.39816383099992, 115.4595466469998, 142.46049519300004, 122.64039798599993, 122.26555396100002, 132.70124782499988, 115.4595466469998, 119.62491175500008, 135.03568947600024, 129.880464737, 116.50434435600005, 137.61184608899998, 122.76239193599986, 118.51936998499991, 112.70037256899991, 119.07879411599993, 130.4317070090001, 133.86635949999982, 114.11211176099982, 131.35209165599986, 132.6397748549998, 117.97347481700012, 117.29219150499989, 120.06614108100007, 108.15630007299978, 131.71962780299964, 130.00285814100016, 116.62574316599989, 130.00285814100016, 122.76239193599986, 113.87010060999978, 117.23149209999997, 125.03240852600015, 114.05153130600002, 140.0651343290001, 139.8799613609999, 130.18660556500004, 127.5500450909999, 117.91271593700003, 129.574323909, 120.855994431, 121.7180539609999, 120.24846296099986, 131.35209165599986, 139.8799613609999, 115.39921769099988, 121.35336646099995, 121.47492896099993, 124.91017667599999, 118.15543987299998, 121.41399146100002, 127.9168274589997, 129.880464737, 114.11211176099982, 110.6095883129999, 132.70124782499988, 106.62915657900021, 129.880464737], \"power_mean\": 124.0672862064653, \"energy_millijoules\": 6306.695175297506, \"energy_joules\": 6.306695175297506, \"coremark_score\": 4918.548831, \"coremarks_per_mhz\": 3.7126727287137684, \"ulpmark_cm_score\": 39.6404127758096}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1137.624114784, 1135.0037743260002, 1153.6535937600001, 1141.256350856, 1139.973354261, 1158.50932706, 1148.6270083979998, 1131.64881942, 1141.544985649, 1136.4510469769998, 1162.309149936, 1159.797072906, 1141.4219195279998, 1146.282223959, 1138.9108541580001, 1147.232776532, 1131.594292422, 1167.4359887639998, 1138.9108541580001], \"power_mean\": 1145.167763571263, \"energy_millijoules\": 5725.8388178563155, \"energy_joules\": 5.7258388178563155}}, \"1497600\": {\"active\": {\"elapsed_sec\": 44.966204566, \"elapsed_ns\": 44966204566, \"power_samples\": [143.31566401399982, 143.6253891959998, 137.242212633, 145.70631184199988, 130.0642121609999, 131.47460370499994, 127.4891240469999, 127.30573286299978, 141.2958002329999, 140.98698657399996, 133.43657903799976, 148.2245980549999, 144.54189241899985, 136.1389117709998, 121.83992896099994, 134.7280447579999, 127.30573286299978, 144.66602863899993, 150.8017862249999, 125.21544288600012, 132.2715675269999, 140.73974521699984, 126.19758048099993, 126.7472179209999, 139.509615425, 133.62086082199994, 137.42702936099977, 146.68405174500003, 127.4891240469999, 145.83024840899998, 144.35600638699998, 133.43657903799976, 148.78386098299984, 127.36665390699977, 134.85122898800023, 138.40672997299976, 147.24277856100002, 119.88381920100005, 144.41807449700013, 134.54358426999988, 134.91250524600014, 147.30496562099984, 132.3945134669998, 144.35600638699998, 139.57144543999993, 129.3905764850001, 124.84937416599996, 145.70631184199988, 141.9039058169999, 132.21040980299972, 139.69478839299995, 137.05739590500002, 124.84937416599996, 136.93429024199986, 130.9842405679999, 134.54358426999988, 153.129511675, 140.3690418729998, 136.0159247529998, 144.48014260700006, 122.51871684099979, 136.07757634299992, 138.34527620499966, 134.78963687300006, 141.9039058169999, 143.3776726489998, 131.16816611199988, 127.36665390699977, 144.54189241899985, 124.97129260099996, 142.0894356089998, 138.2217351249999, 138.53027105299998, 144.35600638699998, 133.4977959319997, 130.0642121609999, 126.380792961, 139.57144543999993, 124.666339806, 140.73974521699984, 143.19196473700003, 128.53190209800005, 139.632958378, 142.0894356089998, 127.30573286299978, 129.6967173129999, 148.16267053899992, 129.574323909, 139.57144543999993, 144.54189241899985, 137.30392369799983, 124.91017667599999, 143.43968128400002, 131.9648331689998, 133.43657903799976, 153.19199630499998, 136.0159247529998, 123.74500472099999, 150.4282317929999, 133.55932837699993, 132.14893683299988, 138.46850051299998, 135.89293773499958, 129.81911071700006, 143.19196473700003, 134.7280447579999, 123.74500472099999, 143.0682654599998, 128.59288231200003, 146.74623880500008, 148.16267053899992, 127.1832627230001, 129.574323909, 146.80810695700006, 131.78072950499995, 117.48833852899975, 147.976249563, 127.06110660899981, 141.0485588759998, 151.90328326999997, 132.21040980299972, 144.41807449700013, 144.35600638699998, 129.6967173129999, 130.922827073, 144.35600638699998, 118.53236458799984, 140.00330431399993, 148.10042380899995, 128.53190209800005, 128.8377461609998, 139.57144543999993, 128.4093130079998, 130.922827073, 153.129511675, 130.9842405679999, 125.21544288600012, 149.32653356900005, 121.04899146100001, 136.1389117709998, 132.14893683299988, 135.89293773499958, 138.28350566500012, 143.19196473700003, 138.03705704899994, 124.04966075100015, 135.4006735009998, 123.3792922409998, 132.2715675269999, 145.644184257, 136.0159247529998, 144.48014260700006, 143.2539733719998, 139.26292951899995, 120.43078484099988, 139.077756551, 124.84937416599996, 153.0673474790001, 151.65422290800007, 131.04533912199963, 140.3690418729998, 140.73974521699984, 133.31351414799997, 124.04966075100015, 146.62218359300005, 129.3905764850001, 144.48014260700006, 148.10042380899995, 122.33603872100002, 145.5202476899999, 130.80031502399993, 134.48230801199998, 136.1389117709998, 137.91351596899972, 135.89293773499958, 142.02780413699998, 140.8016349019997, 123.44034869099983, 143.0682654599998], \"power_mean\": 136.42664608998317, \"energy_millijoules\": 6134.588476335467, \"energy_joules\": 6.134588476335467, \"coremark_score\": 5560.250879, \"coremarks_per_mhz\": 3.7127743583066244, \"ulpmark_cm_score\": 40.75252985010968}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1146.95543845, 1142.318376074, 1149.799079828, 1142.0972857470001, 1139.918412879, 1175.68699941, 1144.722126072, 1144.888229688, 1147.232776532, 1133.721193946, 1137.5894376, 1154.6023647700001, 1138.470381972, 1143.4354480620002, 1175.459252528, 1142.0972857470001, 1132.822242552, 1154.21165464, 1124.960759874], \"power_mean\": 1145.8415129668947, \"energy_millijoules\": 5729.2075648344735, \"energy_joules\": 5.729207564834473}}, \"1612800\": {\"active\": {\"elapsed_sec\": 41.756218161, \"elapsed_ns\": 41756218161, \"power_samples\": [133.31351414799997, 129.63536329299995, 152.69308056700015, 144.54189241899985, 150.3658661129998, 149.32653356900005, 141.96585497699994, 145.70631184199988, 141.9039058169999, 130.67780297499985, 157.9133219209998, 150.3658661129998, 140.67785553199974, 151.77875308900002, 147.7898285870001, 140.49282124299975, 142.15138476899983, 138.03705704899994, 139.3244424569998, 157.66307433099973, 157.53762888099982, 140.5543935449998, 152.02813358000003, 145.5820566719999, 129.880464737, 140.86320720399976, 140.43093155799988, 141.71869371299977, 151.716327934, 147.85207531699984, 139.509615425, 133.12954791499988, 140.3690418729998, 143.12995610199982, 141.84227434499985, 139.201099504, 141.78032518500004, 144.29425657499996, 151.52969272699988, 134.3594396389999, 140.43093155799988, 150.0546773609999, 151.716327934, 150.3658661129998, 134.3594396389999, 138.1602813569998, 140.5543935449998, 146.8702940170001, 132.8837336859999, 163.98487045799993, 154.96123533599985, 135.6466475369998, 156.43720186099995, 135.70829912699992, 139.38627247199997, 144.17043865300002, 144.04630243299994, 141.84227434499985, 160.05197759599992, 147.60340761099997, 135.58531210899991, 149.07794778699986, 135.70829912699992, 134.11338703599995, 144.1083705430001, 141.53316392099987, 147.7275818569999, 149.2642273639999, 149.99231168100005, 138.09851081700003, 147.9140028329998, 136.68776244899982, 152.81772939300004, 156.49954376100004, 140.43093155799988, 147.9140028329998, 151.65422290800007, 144.7141820999998, 130.7389015289998, 150.241454577, 136.68776244899982, 148.89134869099985, 157.41250508599978, 145.27205595300006, 145.21024697100006, 136.81118457899993, 149.13993447300004, 139.13926948899984, 158.82616460100007, 133.00648302499985, 134.2978475240002, 153.918893562, 139.13926948899984, 151.21788708100007, 146.43594132099997, 139.26292951899995, 141.65674455299995, 150.3658661129998, 136.50294572100006, 140.30746957099996, 152.69308056700015, 140.3690418729998, 135.58531210899991, 151.46726757200008, 150.117043041, 145.14811938599996, 144.1083705430001, 142.8205489129998, 139.26292951899995, 143.98455262099992, 131.84220247500002, 149.01564158200017, 152.50594711100007, 147.9140028329998, 151.2803122360001, 144.2321884649998, 146.49780947299996, 137.97528650899994, 149.01564158200017, 130.55497598499983, 144.17043865300002, 156.18687021100004, 145.33418353800016, 147.541160881, 149.01564158200017, 136.68776244899982, 129.45193050500006, 161.15632953099998, 147.66565434099994, 140.67785553199974, 152.69308056700015, 135.4620089289997, 142.758858271, 144.04630243299994, 134.051794921, 127.98119418599981, 158.76338240099972, 143.92248451099977, 142.02780413699998, 150.117043041, 130.67780297499985, 139.201099504, 139.13926948899984, 140.06022821399984, 141.65674455299995, 151.40484241700005, 143.79866658899982, 132.5171441609998, 147.66565434099994, 136.50294572100006, 163.9221733439997, 158.5128975209998, 147.66565434099994, 153.918893562, 142.57315035899978, 145.02418281899986, 137.36531829599994, 149.01564158200017, 134.17497915100012, 162.13050347699982, 160.05197759599992, 147.60340761099997, 150.30382025699987, 142.63484100100004, 140.18369020099976, 133.55932837699993], \"power_mean\": 144.3889161102951, \"energy_millijoules\": 6029.13508113181, \"energy_joules\": 6.02913508113181, \"coremark_score\": 5987.88053, \"coremarks_per_mhz\": 3.712723542906746, \"ulpmark_cm_score\": 41.46531743539393}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1162.187176395, 1155.38283497, 1139.4222412229997, 1143.048195228, 1149.2989171840002, 1136.963979872, 1139.4222412229997, 1148.353721188, 1134.5647283520002, 1166.209107354, 1161.578749056, 1139.5876317749999, 1143.1590012479999, 1143.26952315, 1132.295626649, 1140.539075616, 1156.21812555, 1132.055503852, 1151.47848531], \"power_mean\": 1146.0544665892105, \"energy_millijoules\": 5730.272332946052, \"energy_joules\": 5.730272332946052}}, \"1708800\": {\"active\": {\"elapsed_sec\": 39.410990662, \"elapsed_ns\": 39410990662, \"power_samples\": [142.63484100100004, 135.27737032100003, 148.64244338999993, 146.31156720100012, 144.54189241899985, 169.74020865099988, 147.41698663500006, 142.6968496359998, 148.76673628100002, 136.50294572100006, 147.7275818569999, 162.13050347699982, 144.8999276489999, 147.1805915010002, 158.57535776099985, 137.72852112099986, 147.7275818569999, 145.21024697100006, 141.40926560100002, 147.60340761099997, 154.89863156100023, 151.21788708100007, 138.40672997299976, 153.7315819859998, 144.7759910819998, 140.3690418729998, 159.9266165109998, 146.1875119890001, 151.34273739100013, 154.71114128099975, 148.76673628100002, 138.40672997299976, 153.7315819859998, 149.80553446499994, 137.605296813, 163.54469793599992, 146.31156720100012, 147.9140028329998, 138.95409652099988, 146.2496990489999, 152.75556519700012, 155.99920181099992, 148.33155140300005, 159.55021099099986, 175.68217899899992, 132.8222012409999, 140.8016349019997, 146.1875119890001, 148.64244338999993, 154.96123533599985, 154.52397204599993, 152.1941648290001, 147.41698663500006, 155.02383911100014, 137.667067353, 150.49027764900006, 145.02418281899986, 140.24557988599986, 165.74373449699988, 140.1221178989997, 148.76673628100002, 157.1619358409996, 147.35473990499986, 143.61278055699995, 144.48014260700006, 147.16863814299995, 136.50294572100006, 164.51833721699995, 147.41698663500006, 151.09335690000012, 154.83634883100012, 146.06345677700006, 141.34763412899997, 141.34763412899997, 143.67453036899974, 147.541160881, 163.1672225279999, 139.9367662269999, 140.1221178989997, 157.0368120459998, 147.41698663500006, 146.06345677700006, 143.7365984789999, 151.03093174499986, 142.57315035899978, 154.58625477600003, 138.83075356799986, 144.962055234, 154.77374505600005, 142.51114172400003, 151.09335690000012, 152.4434624810001, 154.46136827100008, 131.47399514699987, 157.0368120459998, 141.2237358089999, 143.488962635, 154.58625477600003, 137.54352627299977, 152.50594711100007, 151.21788708100007, 154.52397204599993, 144.8381186669999, 147.044144683, 144.7759910819998, 141.03852370499976, 168.1356127649999, 146.1875119890001, 149.86790014500002, 149.80553446499994, 150.84429653799998, 143.55071244700002, 155.87419666099981, 154.3364817659999, 143.7365984789999, 154.52397204599993, 136.3798400579999, 144.962055234, 153.35695883399967, 148.39385760799973, 147.16863814299995, 155.81153341100003, 150.9064015639999, 142.26374317, 147.16863814299995, 131.2898914829998, 131.35136445299986, 165.6177797979999, 147.23056565899992, 142.26374317, 152.13168019900013, 153.4195029389998, 138.76892355299992, 148.76673628100002, 141.1001551769998, 144.58992693000005, 165.93282844100008, 147.35473990499986, 153.54427040999985, 146.001269717, 141.1001551769998, 142.387442447, 155.74919151099994, 146.06345677700006, 144.8381186669999, 169.2976330099998, 143.488962635, 148.51815049900006, 154.71114128099975, 142.26374317, 143.42689452499985, 152.13168019900013, 155.9365385609999, 142.94456618299978, 156.97441097599972, 143.67453036899974, 149.74348860899977], \"power_mean\": 148.33495338405726, \"energy_millijoules\": 5846.027462667286, \"energy_joules\": 5.846027462667286, \"coremark_score\": 6344.211541, \"coremarks_per_mhz\": 3.712670611540262, \"ulpmark_cm_score\": 42.76408237841838}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1147.738462752, 1154.82400215, 1141.600329184, 1120.895001, 1151.42295184, 1140.2629388239998, 1133.063196474, 1155.04742041, 1126.5432012, 1155.2711258400002, 1146.566937108, 1149.076400508, 1129.324062048, 1146.566937108, 1143.9470706719999, 1137.3141778460001, 1153.820657645, 1159.3972847569999, 1146.456058882], \"power_mean\": 1144.1651692762105, \"energy_millijoules\": 5720.8258463810525, \"energy_joules\": 5.720825846381053}}, \"1804800\": {\"active\": {\"elapsed_sec\": 37.3149991, \"elapsed_ns\": 37314999100, \"power_samples\": [147.2928123889999, 154.398764496, 167.8829036069999, 154.211274216, 163.2302428229998, 175.11061878299984, 163.95191323099993, 170.5229116449998, 168.1356127649999, 145.75315929299995, 153.0448797869999, 177.49684813800013, 155.49885986100003, 165.49182509899993, 178.59450996099986, 172.72013499900004, 154.398764496, 166.65378636899982, 161.81634512899973, 158.26209068099956, 175.2375234199999, 164.07774928499998, 163.0415051189998, 186.3315956829997, 169.23463985199987, 154.46136827100008, 170.270052309, 167.8829036069999, 153.0448797869999, 184.78663589099983, 171.43165683899974, 152.069516003, 174.983714146, 167.69345283899997, 159.1738054709997, 173.8816205789999, 162.9157877099999, 165.4286858539997, 175.3011388550001, 161.75338430899978, 162.9784848239999, 176.1449024609999, 159.29916655599982, 170.0802453010001, 172.40297917099997, 163.0415051189998, 163.88883346099988, 172.65663870899994, 160.08894209200002, 159.23664714599977, 182.14532006500008, 157.94882360099973, 176.462623935, 172.59314241899983, 172.78330566699992, 159.86377483599972, 163.95191323099993, 163.88883346099988, 161.81634512899973, 179.8831670459997, 166.33844096100006, 173.1636321630001, 178.72177053300015, 152.98233568199976, 168.32506353299982, 170.20667496899978, 172.46647546100007, 162.7270500059999, 173.69127921100016, 159.29916655599982, 158.63813996099975, 157.6355565209999, 155.49885986100003, 168.19854675299985, 166.401639681, 165.05049796599997, 167.5672604609997, 172.65663870899994, 160.15152086600006, 153.4817263049997, 155.31119146100013, 147.044144683, 163.10452541399968, 169.04501096399986, 169.890438293, 179.94669292799995, 164.1408290549998, 150.28343053000003, 156.24953346100006, 163.76299740699983, 168.9816930989998, 179.8831670459997, 179.81931371099995, 177.49684813800013, 176.08122755099998, 161.56482472499988, 161.62778554499982, 157.1619358409996, 166.14916889699998, 157.82358116099977, 179.94669292799995, 183.56177266600002, 166.14916889699998, 165.23959190999994, 156.59871793599996, 168.85538207599984, 160.84214537700018, 167.6305188509998, 168.918375234, 180.793136709, 156.47327248599981, 158.797399951, 173.56449360800002, 165.17677645599997, 174.79319407399998, 170.270052309, 166.33844096100006, 159.837659283, 178.46724938900002, 158.86024162599983, 153.0448797869999, 173.56449360800002, 165.05049796599997, 165.23959190999994, 181.11204621600018, 166.46451430499997, 160.4657050200001, 172.40297917099997, 152.92011231599986, 161.56482472499988, 187.10794158099998, 165.30273115499995, 165.23959190999994, 166.2752422409999, 162.7270500059999, 166.2752422409999, 175.7001577049998, 165.17677645599997, 162.60100941599967, 181.11204621600018, 164.1408290549998, 160.27732355600006, 174.85648327600006, 166.401639681, 163.82575369099982, 180.66531069899997, 177.49684813800013, 167.6305188509998], \"power_mean\": 166.43886829406074, \"energy_millijoules\": 6210.6662205978955, \"energy_joules\": 6.210666220597895, \"coremark_score\": 6700.616457, \"coremarks_per_mhz\": 3.7126642603058513, \"ulpmark_cm_score\": 40.25333049953097}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1135.242294043, 1157.33288242, 1151.64566784, 1156.106297775, 1174.89032386, 1146.3451806560001, 1124.2535211440002, 1143.8918924159998, 1150.977252805, 1138.5952884629996, 1153.653128485, 1167.3624713219997, 1135.242294043, 1150.865613355, 1141.324179135, 1131.50795394, 1148.4648367040002, 1147.4051868000001, 1141.2688355999999], \"power_mean\": 1147.1776368845262, \"energy_millijoules\": 5735.888184422631, \"energy_joules\": 5.735888184422631}}}}, \"6\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 106.942254699, \"elapsed_ns\": 106942254699, \"power_samples\": [111.431918988, 106.95280637399992, 111.431918988, 108.11792076899974, 107.99754549699969, 97.89258129899986, 94.51144589799992, 116.63927212899989, 100.64185638000004, 116.03261808100001, 122.03855522100002, 111.61317097999995, 95.67728370899977, 101.986916673, 101.986916673, 93.4647462869998, 116.5180659529999, 105.06612746100018, 113.76473834700005, 112.78182710299984, 96.96200316799991, 92.00162531399974, 105.78757302899976, 104.19767333699997, 101.24078667899994, 123.87339985599988, 99.35695921699971, 108.92143446299997, 111.61317097999995, 92.51252868300003, 109.22282413199991, 114.18859590900001, 109.1627320499997, 95.16678672900002, 112.90267734399981, 99.23710753699993, 108.86103262799998, 114.06762702299989, 112.7212466479998, 116.45730707299981, 110.20687764299987, 108.6200447939998, 94.86896018599987, 109.04192837999994, 95.91565979699999, 117.98593505999997, 120.07586646100003, 99.41657774499981, 107.57607732099996, 105.4268502450002, 95.85591257700003, 87.8071774409998, 109.10233021499994, 102.79250877899972, 118.85076594599991, 100.58217868199995, 99.41657774499981, 121.17928583100002, 112.96325779899985, 90.77640584899973, 97.53399712300006, 114.0069870929999, 106.71229311999991, 111.49212940999973, 105.24648885299985, 88.20316945600007, 119.77180396099993, 101.02804756499995, 105.4268502450002, 104.3176922849998, 98.0120070219998, 93.22684477899998, 112.35838525599979, 96.78288978400019, 109.1627320499997, 127.24691697000003, 103.03261761199974, 114.12795597899981, 100.64185638000004, 99.98324838300005, 98.13173975199993, 112.90267734399981, 105.18626544299991, 105.66712620899989, 119.89336646099991, 105.30671226300001, 83.35790275299996, 104.19767333699997, 108.92143446299997, 90.77640584899973, 117.74328541799991, 116.03261808100001, 100.58217868199995, 110.26702889500007, 105.4870736549999, 94.33268875399995, 105.54698822699993, 105.36662683500003, 102.73240451399988, 114.0069870929999, 98.0718733870001, 98.0718733870001, 104.13750959699996, 93.67734792299984, 104.19767333699997, 115.05036014699976, 100.58217868199995, 101.12081604900004, 112.60039640699983, 103.03261761199974, 92.6911077069999, 119.89336646099991, 111.0694150039999, 111.73390218700001, 108.92143446299997, 97.95244766399992, 98.6097496509999, 101.56752690899998, 93.1672165089999, 110.50856407699985, 117.378999066, 112.35838525599979, 111.12962542600008, 101.62757169899987, 98.13173975199993, 97.26042324100013, 107.8771702250001, 99.17748900899983, 109.1627320499997, 106.59172734999993, 98.81854859300006, 108.86103262799998, 105.36662683500003, 99.29703337700016, 102.13259477199995, 100.522193367, 91.88248772399993, 108.92143446299997, 98.13173975199993, 106.17067458399993, 113.8253782769998, 103.89747170099986, 102.91240908199984, 115.17144767800005, 107.75679495299983, 96.8426964790001, 110.0258037709998, 100.2228820260002, 112.66097686199987, 113.58312953099971, 106.53175360799969, 100.58217868199995, 107.696452593, 109.9048811509997, 95.49834844499992, 123.50733113600018, 96.54427640600011, 112.78182710299984, 121.24028280599987, 95.61753648900003, 105.12635087099989, 113.8253782769998, 101.44774525100024, 100.34254503900002, 119.77180396099993, 102.49260390799986, 101.62757169899987, 115.17144767800005, 104.19767333699997, 109.9048811509997, 109.10233021499994, 104.07765438899969, 102.4324996429998, 105.4870736549999, 92.9886374849998, 97.89258129899986, 112.47954616599986, 94.90179543299996, 118.36467833100005, 114.98966074200007, 99.29703337700016, 88.61829155099986, 110.14641633299993, 95.55778926900007, 96.06674294900017, 125.59429116299998, 107.8771702250001, 122.52606749100005, 115.11105955199992, 107.75679495299983, 93.40511801699995, 102.61250421099999, 96.60377640000002, 111.3713982029999, 125.71644727700004, 107.8771702250001, 102.13259477199995, 100.34254503900002, 97.77315557599991, 97.32022993600003, 105.24648885299985, 102.61250421099999, 114.0069870929999, 127.73716430500008, 103.89747170099986, 112.47954616599986, 101.56752690899998, 105.24648885299985, 105.86987844499959, 102.91240908199984, 100.522193367, 112.66097686199987, 97.83271493400002, 92.75043019100008, 118.85076594599991, 99.98324838300005, 111.49212940999973, 110.085955023, 106.4111878379997, 95.31941318100007, 115.11105955199992, 96.54427640600011, 115.11105955199992, 117.31818071099997, 123.32429677599998, 117.43950553199988, 100.34254503900002, 98.19129910999982, 95.378854005, 122.40426770099998, 108.74053871099977, 96.54427640600011, 120.9966077109998, 105.8095955599997, 101.02804756499995, 111.3713982029999, 107.696452593, 102.9725133469999, 117.50032388699992, 98.93809296099994, 103.83730796099985, 107.696452593, 104.82585149700003, 101.327655671, 113.58312953099971, 101.68730856700017, 102.25249507499984, 116.27534201699973, 94.15393160999997, 103.65712527300002, 112.47954616599986, 95.378854005, 106.29093121099982, 111.31087741800002, 102.67260847599982, 101.001153036, 110.0258037709998, 99.05763732900004, 104.28476732099989, 112.53981595200003, 111.19014621099996, 111.3713982029999, 107.696452593, 105.06612746100018, 100.76151939300007, 111.69324292700003, 91.70408681999993, 116.15413584099997, 117.378999066, 111.3713982029999, 109.72411733700005, 106.4111878379997, 107.15429969699971, 103.15251791499963, 113.7044093909999, 108.80094054599999, 112.66097686199987, 122.95822805600005, 95.43860122499996, 120.69224844600012, 101.44774525100024, 108.49955087700005, 106.65201023500003, 104.94598947899999, 89.2502258909999, 105.12635087099989, 100.34254503900002, 90.30094164099978, 126.69652338900005, 97.29514567699994, 108.86103262799998, 112.60039640699983, 103.9573269089999, 99.05763732900004, 116.21458313699986, 100.16289671100003, 114.92927261599993, 131.40979496499995, 97.71328921099985, 106.29093121099982, 106.47147072299981, 99.92357068500019, 92.869686731, 111.12962542600008, 99.98324838300005, 103.77714422099984, 115.79020572900004, 98.93809296099994, 98.69900422499995, 108.43914904199983, 106.4111878379997, 96.42466301600007, 110.085955023, 104.94598947899999, 98.87816712099993, 107.51573496099991, 96.60377640000002, 102.61250421099999, 114.68678627500003, 105.06612746100018, 112.91733419699995, 107.51573496099991, 84.46895981099988, 102.61250421099999, 115.91141190500002, 107.51573496099991, 106.35121409599992, 113.40183168899989, 107.45539260099986, 93.40511801699995, 106.29093121099982, 95.31941318100007, 92.393577929, 117.01471271399987, 106.23064832599971, 106.59172734999993, 119.34617896099985, 100.10291139600008, 97.02180986300004, 111.63297314099987, 103.77714422099984, 115.05036014699976, 115.97217078499989, 102.19269903699978, 99.56427402899999, 114.44461121299969, 105.00590405100002, 99.41657774499981, 96.42466301600007, 103.83730796099985, 114.92927261599993, 115.54748179299986, 110.76743180499989, 111.12962542600008, 105.86987844499959, 111.25066699600006, 111.431918988, 102.49260390799986, 102.61250421099999, 106.23064832599971, 102.5523999459997, 105.86987844499959, 109.78426858900002, 103.17674094899985, 114.86857321099978, 103.89747170099986, 95.140477917, 100.043233698, 103.77714422099984, 101.02804756499995, 101.7725856359998, 121.05760468599988, 107.45539260099986, 103.77714422099984, 109.96534246099986, 106.8532067929998, 96.42466301600007, 120.93561073599994, 106.11039169899982, 106.23064832599971, 107.33501732900004, 101.327655671, 94.84235460900004, 113.7044093909999, 108.31865512499985, 102.4324996429998, 115.85096460900013, 108.6200447939998, 96.42466301600007, 112.23753501500005, 91.46642260199997, 107.09426678499972, 118.48612218599965, 108.5596429589998, 104.58526669499997, 120.87492656599989, 87.66987614100003, 96.36516302199993, 114.6263981489999, 91.46642260199997, 122.95822805600005, 117.69626883599994, 104.64549010500014, 97.02180986300004, 102.49260390799986, 96.36516302199993, 95.76801617499996, 119.40680396099992, 104.88576606900006, 118.36467833100005, 109.60319471699972, 106.35121409599992, 93.40511801699995, 112.7360363549999, 103.7172890129998, 114.80787380600009, 121.91675543099996, 98.81854859300006, 102.73240451399988, 102.49260390799986, 96.18604963799999, 96.72338978999983, 106.11039169899982], \"power_mean\": 106.01218060771151, \"energy_millijoules\": 11337.181619746274, \"energy_joules\": 11.337181619746273, \"coremark_score\": 2338.109311, \"coremarks_per_mhz\": 7.793697703333334, \"ulpmark_cm_score\": 22.05133589503129}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1161.680846643, 1164.2495075840002, 1149.6911245840001, 1148.29969675, 1148.409136124, 1134.8578191489999, 1148.409136124, 1145.9566793139998, 1154.539559025, 1163.244747166, 1150.865613355, 1140.937342016, 1155.714756825, 1145.734922862, 1151.98036992, 1152.14772096, 1148.186905092, 1134.967628792, 1160.679461016], \"power_mean\": 1150.555419647421, \"energy_millijoules\": 5752.777098237106, \"energy_joules\": 5.752777098237106}}, \"652800\": {\"active\": {\"elapsed_sec\": 49.169863679, \"elapsed_ns\": 49169863679, \"power_samples\": [176.86081166000008, 161.40588607799987, 154.5605178610001, 171.83281504900015, 166.49381424299986, 163.1331701649999, 168.412806435, 168.096866524, 158.1702722609998, 157.32228944099984, 157.19672504100004, 149.53560918599987, 176.606200963, 158.64479172500023, 175.5094595129999, 160.68498762499985, 164.23130673599985, 158.23279167099986, 168.096866524, 159.2728374620001, 159.2728374620001, 172.866683901, 163.00733411099986, 160.5593888609999, 158.358475021, 154.97082198099974, 153.39903036600003, 176.66993534799985, 163.25932970500003, 159.58669904500016, 168.03354865899996, 163.25932970500003, 161.1544512600001, 163.1331701649999, 169.97521263, 160.62234968099983, 170.4186197009999, 156.8209977209999, 151.00919989700014, 172.92991373900009, 154.49817596100002, 173.65007364199982, 175.38210969300007, 167.78092661300002, 158.77027184400004, 171.64265180099983, 148.37400224099974, 142.18776041099977, 171.51598484300007, 153.211540086, 182.34746410399998, 173.39626436799995, 160.68498762499985, 158.92276103599966, 169.2576399290001, 156.8209977209999, 151.92133106999972, 176.47905903599985, 167.9705555009998, 176.47905903599985, 155.78460913100002, 151.7962428599999, 156.2857476209997, 165.86252795099972, 159.46089635500016, 166.62033102299984, 180.47389944300016, 147.08766393600013, 171.70582246899994, 163.1331701649999, 158.23279167099986, 158.4838361059999, 160.4967509170001, 158.23279167099986, 164.29444598099985, 167.085728926, 153.08665358099984, 171.3889922630001, 156.63297308099982, 166.80945738899982, 169.32101726899987, 158.23279167099986, 149.22412366900016, 161.7833614860001, 161.657644077, 148.124859345, 175.19173803900003, 157.480302896, 169.19458760099997, 168.75159624499997, 157.98206950099984, 144.75976087300023, 159.20993611699987, 168.87835092499995, 149.03716833299995, 169.19458760099997, 163.8531188479999, 151.92133106999972, 171.072162057, 151.98355443599985, 158.95865330799984, 169.32101726899987, 161.657644077, 151.7962428599999, 172.80312813600017, 159.02155465300007, 153.62249721099988, 178.22592741299968, 160.37082927699976, 157.98206950099984, 166.74652340099988, 155.53436154099973, 150.5102841590001, 165.39240473699988, 153.93517076099988, 168.87835092499995, 179.70858217799992, 166.36762186499982, 167.02241106100018, 155.72220806099995, 147.1499701409998, 163.07041388099992, 175.06438821899974, 159.80547340099974, 176.606200963, 173.39626436799995, 160.4967509170001, 152.6080332690001, 162.818418287, 155.53436154099973, 156.88345796099975, 177.51197722899997, 156.5074086809998, 162.035119485, 163.07041388099992, 149.28654882399996, 152.358177588, 164.382845697, 165.13993395300008, 178.73577173399963, 172.67634253300002, 156.8209977209999, 155.9724556509998, 162.62950246299988, 169.84866431699993, 163.19624993499997, 171.00866576700014, 160.37082927699976, 171.45248855299997, 170.88199880899992, 149.5980343409999, 173.7136890769998, 154.18550241100002, 180.86816691299987, 167.9705555009998, 165.01386060899995, 163.9793973379999, 162.88149805699982, 160.18226969299985, 156.5074086809998, 173.777304512, 160.71395555699996, 173.52316900499977, 159.1470347720001, 156.57019088099992, 149.22412366900016, 165.45527936100007, 162.818418287, 156.31938404099992, 176.35191710899994, 164.23130673599985, 158.58221295099997, 159.1470347720001, 161.53192666799964, 166.49381424299986, 175.12806312899988, 160.24523051300002, 161.40588607799987, 166.241429487, 156.75821552099978, 153.8725075110001, 168.68854391700006, 167.591297725, 160.37082927699976, 163.79030339400015, 161.59462378199987, 140.71638923199976, 174.30192198900022, 148.00044780899998, 171.45248855299997, 173.65007364199982, 159.20993611699987, 167.46498670200003, 168.81497358499996], \"power_mean\": 162.90564111788655, \"energy_millijoules\": 8010.048166306579, \"energy_joules\": 8.010048166306579, \"coremark_score\": 5086.159543, \"coremarks_per_mhz\": 7.791298319546569, \"ulpmark_cm_score\": 31.210798588153136}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1156.3806184, 1134.143350752, 1136.81854055, 1159.949060136, 1141.278708324, 1159.116680314, 1156.9375312700001, 1137.9889508400001, 1150.75426016, 1149.078907775, 1129.2417616320001, 1137.8902603719998, 1163.685922632, 1161.555489432, 1151.9244907200002, 1148.29969675, 1135.441958882, 1133.466972426, 1148.800679398], \"power_mean\": 1146.9870442507895, \"energy_millijoules\": 5734.935221253947, \"energy_joules\": 5.734935221253947}}, \"806400\": {\"active\": {\"elapsed_sec\": 39.803221912, \"elapsed_ns\": 39803221912, \"power_samples\": [179.70858217799992, 194.33466498899998, 177.00260779300015, 189.69388836099984, 218.48824334099982, 185.63406639699997, 181.19685912799991, 190.8531752209999, 188.21316482099974, 182.09166465299995, 195.55816272900006, 186.86145657099996, 186.08255120499985, 186.79718652099973, 183.3151623929998, 171.64265180099983, 192.01234313099985, 194.20574221999982, 194.84793736300003, 200.5210898219998, 179.32575966600007, 182.85873463700023, 178.48101329999986, 179.45325791699997, 183.69905362500003, 197.616989761, 195.493476159, 194.39929208399985, 195.62284929899988, 178.35330662999968, 171.978532826, 186.86145657099996, 192.7204134609999, 201.74464703699982, 191.36858687099993, 183.37925382299977, 193.17172320600002, 188.66531536099978, 172.23210403200005, 205.4153186819999, 180.61293312099997, 196.2646882019999, 203.5417321530001, 186.6689760109998, 180.67657753699996, 191.6904650009999, 180.80419443300025, 173.39626436799995, 196.71691442400015, 184.86485897299985, 192.7204134609999, 185.37755416100003, 187.7638478309998, 187.89217698599987, 201.55002786900013, 192.97835204600005, 181.9639291120002, 194.012192356, 188.02050614099994, 194.97697877699989, 197.8110739849999, 176.74808664900024, 182.09166465299995, 191.75497295100013, 190.4030274109998, 181.12372876899985, 190.53159385599997, 186.6689760109998, 195.17070676100002, 200.3266487740002, 188.02050614099994, 190.53159385599997, 194.14111512499994, 193.68971972300005, 185.63406639699997, 196.5233403509999, 176.68429278899998, 190.53159385599997, 203.86691374099996, 183.3151623929998, 195.81246197999985, 190.4671453809999, 181.77216161600018, 178.22592741299968, 205.09017419099996, 175.65214624600003, 194.5928419479999, 195.04166534699993, 181.89989715700017, 191.883658041, 191.5617799109998, 184.21856356599983, 177.46132465799997, 197.68179528099995, 174.61964346299987, 183.69905362500003, 175.65214624600003, 170.62866489300018, 201.6146787570001, 188.98693016099992, 188.02050614099994, 188.21316482099974, 188.02050614099994, 180.5489606409999, 171.72463569299998, 184.09059073499975, 193.88326958699986, 212.3682279709999, 185.63406639699997, 185.44176454099988, 186.79718652099973, 191.88269251099996, 183.12321677699993, 200.3266487740002, 192.20486740599995, 188.02050614099994, 202.51356606100012, 185.6979474929999, 174.30192198900022, 184.09059073499975, 184.28271447099974, 187.69951830599985, 197.616989761, 194.58985453499986, 175.71588063100012, 196.5233403509999, 180.5489606409999, 186.6689760109998, 196.45859430600012, 190.4030274109998, 184.28271447099974, 196.5233403509999, 187.82784746099992, 172.04208859100004, 193.88326958699986, 181.70812966100016, 195.23539333099984, 194.91262393300008, 187.89217698599987, 173.0788396590001, 185.63406639699997, 184.28271447099974, 173.85685069500005, 202.38381238800002, 200.96617036500015, 200.26172410899994, 187.82784746099992, 187.57118915099977, 180.5489606409999, 199.9377666779999, 181.77216161600018, 195.36443474499993, 191.5617799109998, 188.6012565609999, 187.18587179099973, 187.89217698599987, 190.01699757099982], \"power_mean\": 188.51587395980886, \"energy_millijoules\": 7503.539165156893, \"energy_joules\": 7.5035391651568935, \"coremark_score\": 6283.617353, \"coremarks_per_mhz\": 7.79218421750992, \"ulpmark_cm_score\": 33.31761112954392}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1152.31318207, 1147.241709096, 1149.69568917, 1160.780897529, 1143.626811398, 1143.7330452219999, 1160.499410555, 1136.268021042, 1147.074893, 1150.13979504, 1152.1456529099999, 1136.268021042, 1149.86286209, 1164.7247348399999, 1141.057380402, 1161.668029466, 1158.218342349, 1152.369120745, 1147.297409676], \"power_mean\": 1150.2623688232632, \"energy_millijoules\": 5751.311844116316, \"energy_joules\": 5.751311844116316}}, \"979200\": {\"active\": {\"elapsed_sec\": 32.815599779, \"elapsed_ns\": 32815599779, \"power_samples\": [245.14654536900002, 232.70963951299996, 225.89763391100018, 241.344102582, 221.766558841, 228.97527115899993, 230.3304813130003, 233.86617551899985, 219.3168600439999, 238.82757494499992, 224.7085339910002, 226.02964300600001, 225.56710214099985, 215.58262760899993, 238.62777384900005, 239.91692659199975, 229.24000199700004, 237.60478968500001, 237.73832841499984, 218.09401530899981, 227.18678840100006, 225.10490063099996, 212.41302323399987, 244.27562322900008, 229.1076365780002, 235.02626013200006, 233.93242477299987, 232.77617078299977, 217.69978727700004, 222.13237872600007, 223.750462211, 235.02626013200006, 250.7270174370001, 221.766558841, 228.90891831399995, 232.70963951299996, 233.79958477399987, 226.591704081, 232.70963951299996, 236.0491391789999, 222.65980469099986, 239.11598189699998, 229.99910086499995, 222.72585996599992, 237.4715933619998, 230.0655131850001, 236.11584906899975, 237.67155905000004, 215.38620674699996, 227.8184984730001, 236.2489267469998, 220.21470875099976, 228.8429057400001, 229.33633996900016, 232.51072807499986, 216.60881419199973, 235.1592191650002, 222.59374941600004, 215.58262760899993, 240.8095486709999, 227.02467786299985, 228.90891831399995, 237.0052350279998, 231.22164883499954, 219.25098338899988, 228.90891831399995, 223.81623791099992, 239.02771875299982, 246.10145429500017, 226.32744860100001, 236.2489267469998, 235.78298382299977, 223.22256136099986, 225.10490063099996, 246.10145429500017, 233.66674477499987, 232.97542340699988, 242.2996047329998, 236.87169629799996, 218.22531214499986, 228.44546921200003, 223.750462211, 235.98277139099991, 238.56094500899985, 230.82349982699975, 231.75240055199993, 228.71020005000014, 228.37911636700005, 236.44871431499996, 234.62704123599997, 228.7765528949999, 234.0948633070002, 237.4715933619998, 226.3936823009999, 220.8727194610001, 227.48771155500003, 224.57652489600014, 236.2489267469998, 234.89330109899993, 229.93268854500002, 233.73333551999986, 236.11584906899975, 219.95130158599977, 218.067568402, 231.15517703999967, 228.90891831399995, 236.11584906899975, 234.89330109899993, 223.94846741100014, 233.4673140309999, 234.69369165099988, 226.12908716100014, 248.21508057100004, 231.02257433099976, 227.48771155500003, 234.1615137220001, 227.42175815100018, 239.38284912299991, 246.0342684100001, 224.84054308600003, 216.0834269899999, 234.82665068400001, 224.64235976600003, 225.03872640600002, 233.53390477599987, 213.83574213599968, 245.22976050499983, 240.14144211300004, 233.66674477499987], \"power_mean\": 230.6123177557984, \"energy_millijoules\": 7567.681523581856, \"energy_joules\": 7.5676815235818555, \"coremark_score\": 7621.95122, \"coremarks_per_mhz\": 7.7838554125816986, \"ulpmark_cm_score\": 33.0352168257832}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1150.47449712, 1150.75332, 1167.1160868, 1143.012680852, 1142.790876961, 1154.3159034750001, 1148.0772284280001, 1153.0912183700002, 1155.6477702480001, 1142.009574384, 1139.5563079580002, 1165.609431404, 1136.996890731, 1144.350632805, 1161.6116147960001, 1142.12021532, 1148.1884625890002, 1151.8105945900002, 1137.052115316], \"power_mean\": 1149.1887064287896, \"energy_millijoules\": 5745.943532143948, \"energy_joules\": 5.745943532143948}}, \"1094400\": {\"active\": {\"elapsed_sec\": 29.350691031, \"elapsed_ns\": 29350691031, \"power_samples\": [261.5978516609998, 254.25962479099985, 247.81194069899993, 272.6071958509999, 263.77463387199987, 261.6658111109998, 266.69160356099997, 261.52989221099983, 252.90251545499996, 264.9967661269998, 264.7930507689998, 250.12158467299992, 278.44823491399984, 264.7930507689998, 262.6205207369999, 274.64095489500005, 260.1721300909999, 260.1721300909999, 265.26623113799974, 259.90122660099996, 266.7637792799999, 277.22610265900016, 256.5732764510001, 263.9785205359999, 270.76995809699997, 254.13518980599974, 268.4629204969997, 272.19692767499987, 256.235363281, 257.18138124100005, 272.333566648, 260.91965120099985, 271.52134632900015, 276.81476083300004, 260.1721300909999, 269.82127661999994, 274.983321486, 274.43546456700005, 264.45437245900007, 258.74676476099967, 254.6081303609999, 273.82956570099986, 274.5726926970001, 263.57109632899983, 264.7930507689998, 259.76542665099987, 249.1010328299999, 257.18138124100005, 264.8608394129999, 258.9523679759998, 272.19692767499987, 260.1721300909999, 258.81460526099977, 264.65677462899976, 256.30273754099994, 254.8780846909999, 259.1557196959998, 263.50301773399997, 251.27605565800013, 272.333566648, 262.34914188899984, 250.12158467299992, 270.76995809699997, 262.07741422499976, 257.3217556710001, 272.1287838169999, 248.96664927899997, 258.8820978609999, 273.5452410569999, 260.0366783459999, 277.8305118809999, 275.798653545, 259.49452316099996, 263.50301773399997, 269.7529004549999, 253.85470371899987, 255.08072393099997, 273.1454260490002, 256.09992018100024, 280.204796646, 274.9759774170002, 260.987262141, 261.32636237099996, 269.6848749369999, 257.1187601910001, 253.65224318299988, 273.41894128499985, 263.16332300099975, 275.1816464489998, 263.7069043979998, 264.8608394129999, 259.8333266259999, 267.84912131299984, 265.87861011899986, 255.48600241099984, 274.3672023690001, 254.7431075259999, 260.71612136099975, 262.213103649, 264.18085641699986, 262.1454333449997, 267.2369596489998, 269.7529004549999, 250.59251524099977, 268.25832076899997, 255.08072393099997, 268.326287117, 271.92364972899986, 266.2188983819999, 273.1454260490002, 261.19079198099985, 261.8737056809998, 259.2209524609998, 257.3217556710001, 249.85223451699994, 286.8691041989998], \"power_mean\": 263.83049100084475, \"energy_millijoules\": 7743.60722592282, \"energy_joules\": 7.743607225922821, \"coremark_score\": 8522.824123, \"coremarks_per_mhz\": 7.7876682410453215, \"ulpmark_cm_score\": 32.284695324304366}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1141.8434707679999, 1142.68011738, 1136.0476435, 1174.008259284, 1154.084134, 1163.50070274, 1137.834976312, 1143.123440433, 1157.6571334630003, 1143.012680852, 1142.7353548059998, 1152.9235110900001, 1171.3907048519998, 1131.875184036, 1155.03639802, 1133.264309034, 1132.16564803, 1157.4324768740003, 1141.8434707679999], \"power_mean\": 1148.0241903285264, \"energy_millijoules\": 5740.120951642632, \"energy_joules\": 5.7401209516426315}}, \"1209600\": {\"active\": {\"elapsed_sec\": 26.551596032, \"elapsed_ns\": 26551596032, \"power_samples\": [282.789586697, 290.53915163099964, 285.232901437, 283.59776546399985, 290.81634709599984, 289.9157287109997, 285.9711591289997, 301.122458115, 308.1057268929999, 290.2623120009998, 301.22654448100025, 287.5380340409997, 291.2761025609998, 284.83890989099996, 293.7192989609998, 300.6340707930001, 303.43005260099994, 281.4953064809997, 283.94250812099995, 292.428193986, 276.677294413, 288.763577811, 289.15388597599986, 286.7310407079999, 278.9144057609999, 291.41464102099985, 285.02580686099986, 282.9276482570001, 303.43005260099994, 304.2316988299999, 292.35868721099996, 292.2895368809998, 287.4687653609999, 280.61755966999976, 293.16383921099987, 291.2761025609998, 300.773558802, 319.176797265, 292.0118662259997, 293.85807471099974, 296.3751994249999, 288.5559482909998, 287.2616697689998, 304.51174699299986, 288.763577811, 291.8037023459999, 302.66102252899987, 296.096815206, 294.8712714359999, 294.8712714359999, 286.3164953159999, 291.06811680099986, 315.5788075109999, 286.57004864099986, 284.54282259299976, 295.95780177699976, 281.28874684899984, 292.2895368809998, 298.4700883109999, 290.72159258099987, 283.2030633689999, 297.31835393100005, 291.06811680099986, 290.72159258099987, 294.6627513159997, 288.6252766409998, 296.0271298109999, 297.1792218569999, 291.06811680099986, 288.16038648899985, 290.72159258099987, 287.4687653609999, 310.7632899959999, 304.651591326, 287.60730272099977, 287.74548485699984, 297.04008978299976, 283.5286752090001, 286.8002499129998, 289.56950125599974, 284.81906689899984, 307.02444791100015, 303.5000950409999, 288.6252766409998, 291.4568813609999, 290.86013104099993, 288.34831877099987, 287.74548485699984, 289.7773088959998, 293.23304871100004, 298.33083759199985, 287.2616697689998, 275.11297271399985, 306.3939005540001, 295.81878834799977, 294.73237704099984, 287.6564573909998, 286.10922261999985, 288.6252766409998, 292.1508797759998, 289.500469266, 289.7082769059998, 312.57278642999995, 288.4869754709998, 299.48269265299996], \"power_mean\": 292.27607121555224, \"energy_millijoules\": 7760.396172735406, \"energy_joules\": 7.7603961727354065, \"coremark_score\": 9421.873822, \"coremarks_per_mhz\": 7.789247538029101, \"ulpmark_cm_score\": 32.21485017457289}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1150.13979504, 1158.8119337159999, 1128.0930408030001, 1147.465011619, 1158.60056112, 1152.4763873999998, 1153.812247275, 1154.8683345, 1156.590663545, 1141.5667262159998, 1152.42038925, 1139.0040078599998, 1146.463329196, 1153.7480069599999, 1151.2523552999999, 1149.8609721599998, 1150.19567424, 1162.428589674, 1137.8437803159998], \"power_mean\": 1149.770621378421, \"energy_millijoules\": 5748.853106892106, \"energy_joules\": 5.748853106892105}}, \"1324800\": {\"active\": {\"elapsed_sec\": 24.238724574, \"elapsed_ns\": 24238724574, \"power_samples\": [323.7119405010001, 318.96471240899996, 329.678857419, 322.4868135029999, 320.11507888899996, 338.22989126699986, 342.82662289099994, 335.9271773339999, 329.750209089, 318.61135870199996, 313.6529969129997, 319.4077779449999, 324.43599816100004, 335.4263688809999, 336.937545924, 339.16432166599975, 324.7200877759999, 331.9068208049998, 322.2031998570001, 318.3992738459999, 345.4160401529998, 325.798686871, 328.1694129609998, 342.970265809, 324.3648845859998, 332.1208661490002, 337.94355459099984, 329.678857419, 336.8658372090001, 339.2357809839998, 324.0100460809999, 325.44355160099985, 338.0149547389997, 329.39418255099986, 335.8555282889997, 348.2125365449999, 335.4980179259999, 322.911687861, 333.05648377600005, 316.3104998729998, 323.073546741, 340.5284943689999, 317.9751041339998, 337.080595617, 320.769873041, 320.9823141369998, 315.5788075109999, 333.2707072400001, 330.54353848100004, 335.64094858499993, 346.5647411629998, 320.9823141369998, 328.809944161, 327.090745641, 325.017243281, 326.43814935099977, 326.8774133610002, 327.090745641, 333.199177145, 340.60038150900004, 314.7329701059998, 311.30598603099975, 324.3648845859998, 332.9134235859999, 338.4448277949998, 334.27725085099974, 338.66226470499987, 333.05648377600005, 326.80618083600007, 316.02807420199974, 344.62414205999994, 328.09812096099995, 334.6344644489998, 335.2117891769999, 329.39418255099986, 317.319656977, 331.9068208049998, 325.37274354099986, 316.0987712569997, 355.900507459, 323.21529056099985, 340.31320160099995, 334.42006286499964, 331.8357167009999, 324.3648845859998, 337.0838084789998, 331.265051289, 330.614949626, 347.3532137469999, 324.294135696, 328.24033936099977, 331.76424608100024, 325.017243281, 326.80618083600007, 342.82662289099994], \"power_mean\": 329.942231666421, \"energy_millijoules\": 7997.378878693279, \"energy_joules\": 7.997378878693279, \"coremark_score\": 10321.621733, \"coremarks_per_mhz\": 7.7910792066727055, \"ulpmark_cm_score\": 31.260242110831243}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1153.2528209250002, 1141.1238780479998, 1139.9515931459998, 1169.542752764, 1155.8160124720002, 1155.759835702, 1137.559123028, 1138.111113104, 1151.028887465, 1142.683633892, 1161.7692704160002, 1152.1409728400001, 1160.034897096, 1152.36467827, 1160.034897096, 1135.1115340180002, 1154.5322074599999, 1143.682107994, 1147.242257348], \"power_mean\": 1150.0917091096842, \"energy_millijoules\": 5750.458545548421, \"energy_joules\": 5.750458545548421}}, \"1555200\": {\"active\": {\"elapsed_sec\": 20.645091815, \"elapsed_ns\": 20645091815, \"power_samples\": [419.86846739099997, 437.1842877749998, 429.327097956, 415.0605386309999, 442.98156835299983, 432.07123173599985, 435.734860756, 433.447654545, 435.887644785, 433.9039302890001, 428.71794506100014, 426.96360083599984, 447.71046990399986, 442.82767747299977, 429.47928837099994, 440.5419337430001, 437.1076399049998, 436.03692812099985, 426.6596945859999, 443.9707658100001, 430.16537718100017, 439.55163012899993, 447.17137259799983, 433.37157725099996, 427.7241477109999, 434.591513201, 433.1425610670001, 436.1898307949998, 447.94162469599974, 430.9277055609998, 437.33719044899976, 431.91880403100004, 423.5280968159998, 428.71613678099993, 430.62269590100004, 432.9900143279999, 439.0922090700001, 442.67418118499995, 430.77539650099993, 431.30867398099986, 434.1331245929998, 419.72533006899994, 437.1842877749998, 442.75112662499987, 432.1476415110001, 436.49563614299996, 443.8937608949998, 420.86111004999975, 421.019682505, 436.57228401299994, 437.9448850419999, 444.2779956759998, 437.71515637799985, 439.3146798130001, 436.7251866869999, 430.16537718100017, 423.0729167039999, 454.568210853, 429.174516306, 433.06609162199993, 441.90630515299995, 430.546737141, 430.546737141, 448.544745445, 437.6388424039999, 426.6596945859999, 455.4779486460002, 422.92131990300004, 426.735475836, 435.3527043029999, 425.5159556010001, 438.93867504000013, 438.01943924500006, 437.6388424039999, 427.03977271099984, 447.01740134099987, 425.5159556010001, 428.259530541, 434.05659567299995, 455.6327508070001, 432.9900143279999], \"power_mean\": 434.60479517964194, \"energy_millijoules\": 8972.455899722978, \"energy_joules\": 8.972455899722977, \"coremark_score\": 12118.861797, \"coremarks_per_mhz\": 7.792478007330247, \"ulpmark_cm_score\": 27.863051409115165}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1149.47039088, 1156.927504233, 1137.172985132, 1194.99881254, 1154.30831462, 1143.515648138, 1167.2634347990002, 1139.6748622139999, 1165.474630992, 1149.52627008, 1148.1914191449998, 1133.4988367679998, 1159.261908273, 1154.4141859960002, 1138.6171707409999, 1148.13559942, 1131.1067830860002, 1149.4147982400002, 1159.261908273], \"power_mean\": 1151.5913401878947, \"energy_millijoules\": 5757.956700939474, \"energy_joules\": 5.7579567009394745}}, \"1708800\": {\"active\": {\"elapsed_sec\": 18.795378118, \"elapsed_ns\": 18795378118, \"power_samples\": [512.5670734129999, 499.3897047359999, 512.8882488809998, 514.6872718669999, 505.56926582100004, 523.2220913389999, 512.3262948849997, 515.169542571, 517.446776714, 519.8038761389998, 505.00980747799986, 512.6616732929999, 520.4622873569999, 521.10755331, 529.481992941, 512.3262948849997, 512.5670734129999, 512.4066918249998, 502.09360433999973, 512.085516357, 517.446776714, 514.5266526, 519.2293235349998, 518.997992781, 506.2285560629998, 509.39078163399995, 518.5047282169999, 518.5047282169999, 519.1590866279998, 518.2630585049999, 512.5670734129999, 512.0699479320001, 511.18788376500015, 502.81166329200005, 516.4691634810001, 516.0671120970001, 513.2240430039999, 510.94728335700006, 515.8257986250001, 507.2112344970001, 504.50965220499984, 492.57640297800003, 501.61489837199997, 524.6833413449999, 513.464587055, 512.085516357, 511.2678092430001, 513.2240430039999, 504.69046882, 495.441509236, 519.562028307, 519.3205945979998, 520.7847131189999, 511.02720883500024, 515.101858209, 515.8257986250001, 509.7286534169998, 513.464587055, 535.9842203810001, 515.7452230650001, 507.2112344970001, 532.0007841209999, 509.648375427, 509.56850911900005, 524.1176428169999, 512.2458979449998, 515.8257986250001, 532.569391881, 502.33295732400006, 501.0349349349999, 518.1020833029997, 510.78702041400015, 516.96379353, 517.7797190809999], \"power_mean\": 513.6783349617161, \"energy_millijoules\": 9654.778536630112, \"energy_joules\": 9.654778536630113, \"coremark_score\": 13312.742958, \"coremarks_per_mhz\": 7.790696955758428, \"ulpmark_cm_score\": 25.893913470050403}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1171.475874778, 1141.737949119, 1147.689900385, 1141.8487087, 1134.5163156539998, 1146.7412747, 1145.7960648120002, 1175.546010996, 1137.00741646, 1160.190885016, 1144.239635934, 1144.5172707810002, 1146.9082689160002, 1157.8701602400001, 1151.58214002, 1137.00741646, 1151.58214002, 1140.514926264, 1149.3033264], \"power_mean\": 1148.7408255607895, \"energy_millijoules\": 5743.704127803948, \"energy_joules\": 5.743704127803948}}, \"1843200\": {\"active\": {\"elapsed_sec\": 17.42518291, \"elapsed_ns\": 17425182910, \"power_samples\": [588.6473975829997, 590.6677154850001, 585.372065925, 581.082111576, 590.5834503300002, 573.186092209, 596.6776244160001, 598.2686169359997, 588.3116765789998, 573.5189641769998, 592.8511870689997, 586.253949813, 579.3628085570001, 601.7193700859998, 591.801486435, 592.8511870689997, 600.3317327310001, 585.4560929849999, 574.4873824189999, 587.2195045209999, 606.7096083810002, 587.2612633810002, 594.1535481089998, 584.2382346950001, 577.0938842849998, 593.9006504129998, 585.414809315, 586.757606597, 596.4248035509997, 591.044294501, 588.731543593, 595.4555947499998, 575.7092336869998, 596.7621871409999, 592.6828515979996, 590.1629888130001, 597.473417441, 598.7758384559997, 594.865373412, 586.210612893, 581.7985251370001, 575.4590089589997, 597.8114722809999, 601.2962367109999, 585.2880388650001, 588.777269937, 586.673951275, 584.1542671099999, 589.7018051210002, 584.0702995250001, 583.5673552210001, 604.8688253139999, 595.033946173, 590.247253968, 597.135796561, 593.816206833, 590.079155787, 586.5476309949997, 597.2199848009998, 589.9106254769999, 596.2556781009998, 589.9948906320001, 578.9445904889999, 591.2125113270001, 591.044294501, 593.647752717, 605.577264001, 594.865373412], \"power_mean\": 590.0511584285882, \"energy_millijoules\": 10281.749361875538, \"energy_joules\": 10.281749361875537, \"coremark_score\": 14361.213235, \"coremarks_per_mhz\": 7.791456833224826, \"ulpmark_cm_score\": 24.31492844272139}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1151.1824259750001, 1155.636377726, 1147.6340806599999, 1149.35891904, 1147.57854719, 1143.905958464, 1163.1430249399998, 1146.518806378, 1162.7477425759998, 1156.366006956, 1157.0834636400002, 1147.57854719, 1153.9160704799997, 1147.689900385, 1134.395802078, 1154.862735898, 1145.295902168, 1160.190885016, 1152.5812793250002], \"power_mean\": 1151.4561303202631, \"energy_millijoules\": 5757.280651601315, \"energy_joules\": 5.757280651601315}}, \"1939200\": {\"active\": {\"elapsed_sec\": 16.560262806, \"elapsed_ns\": 16560262806, \"power_samples\": [655.5203508809998, 649.2552314929999, 634.5528949809998, 662.302885194, 648.9941356049997, 652.7369232869999, 656.3010011069998, 650.3025127169997, 650.3893059889997, 664.816206496, 651.1709651549997, 656.3885391420001, 670.9187227529999, 649.0813165949999, 646.6469060249999, 657.6097352639999, 656.6479573849999, 643.0777371969998, 671.7830742639997, 654.8218682249999, 661.261351119, 672.3827431469999, 653.6049005350001, 652.387932845, 652.387932845, 663.7753502610001, 656.0388359149999, 670.7426706890001, 657.3394656329997, 655.9512978799999, 658.564418533, 650.2152720569998, 641.4272435189998, 650.8222123079997, 668.905209261, 644.6463191810001, 666.9995252410001, 646.3861663770001, 640.3833598230001, 660.560042347, 648.9088990969999, 656.997449767, 658.4767613529998, 671.4307328459997, 646.1243827589997, 652.4752924549998, 647.6898682800002, 671.7830742639997, 663.9512597610001, 653.4305106679999, 664.126718211, 662.0398288179999, 656.1232695929998, 642.4673498549996, 654.647359713, 642.210685221, 677.7834502439996, 666.5600600610001, 648.2980289310001, 666.9848883059999, 650.8222123079997, 649.5186889409997, 657.9592276459998, 656.8227035759999, 643.3444021409998], \"power_mean\": 655.6781172936306, \"energy_millijoules\": 10858.201938525817, \"energy_joules\": 10.858201938525816, \"coremark_score\": 15112.13202, \"coremarks_per_mhz\": 7.792972370049505, \"ulpmark_cm_score\": 23.024069861233553}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1151.0790181799998, 1143.628725135, 1166.7533627750001, 1163.4254109459998, 1156.6339639680002, 1143.016553604, 1161.130631265, 1144.960384328, 1146.4630463230003, 1144.962269976, 1154.974801352, 1156.085402513, 1162.40876328, 1157.9119846019998, 1151.0790181799998, 1139.463126312, 1145.017970556, 1149.13597536, 1157.252062104], \"power_mean\": 1152.3885510925788, \"energy_millijoules\": 5761.942755462895, \"energy_joules\": 5.761942755462894}}, \"2169600\": {\"active\": {\"elapsed_sec\": 14.801153276, \"elapsed_ns\": 14801153276, \"power_samples\": [836.669922951, 815.7997996229999, 819.4246648339999, 822.71514136, 825.3372370169998, 835.4542017959998, 831.418640009, 831.5148664639999, 833.5610649930002, 832.4420454829999, 825.1458711899998, 837.210965921, 833.080326126, 833.5610649930002, 837.269745861, 830.0113156529999, 822.6193314250002, 831.2266805679999, 835.899690621, 824.9545053630002, 846.6468914249997, 829.915148673, 836.9218888409998, 850.3934360489998, 828.5081210819999, 825.0499423050001, 840.434193545, 831.865317451, 837.210965921, 846.5503888409999, 839.2559961110001, 825.9777749129998, 834.7803550410001, 829.3056057509998, 826.9092347209998, 858.4167530090001, 836.3437346809999, 835.7067615209999, 845.7758809889999, 833.2725228569998, 836.4402587059999, 841.593354121, 845.4853783649999, 841.4003260969998, 854.772082919, 833.144435076, 823.2604036809998, 840.185436067, 829.4353001009999, 841.496592001, 844.851115097, 859.241525292, 830.299323429, 837.6550892610001, 829.243459305, 829.4353001009999, 849.8113609129998, 833.0485243859998], \"power_mean\": 835.0923665671723, \"energy_millijoules\": 12360.330117178297, \"energy_joules\": 12.360330117178297, \"coremark_score\": 16910.17316, \"coremarks_per_mhz\": 7.794143233775811, \"ulpmark_cm_score\": 20.22599701059374}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1157.462010045, 1139.8505117999998, 1151.9097377250002, 1139.6844081839997, 1153.4121676999998, 1155.748561825, 1153.52411412, 1153.4121676999998, 1150.79960177, 1144.7397533, 1136.4004258319999, 1166.7533627750001, 1143.4612107560001, 1147.355554545, 1173.122094456, 1149.633002375, 1138.900924782, 1139.8536125970002, 1148.18774832], \"power_mean\": 1149.6953142424736, \"energy_millijoules\": 5748.476571212368, \"energy_joules\": 5.748476571212368}}, \"2208000\": {\"active\": {\"elapsed_sec\": 14.547175619, \"elapsed_ns\": 14547175619, \"power_samples\": [868.339479511, 867.4140196170001, 851.9965779899999, 859.631643039, 859.4363337690002, 851.317407156, 874.021552441, 855.208662903, 868.241408161, 865.6121242300001, 857.006791609, 862.2604525010001, 869.0648405309998, 864.2020102289998, 862.6943002630001, 875.1423827430001, 860.8465330690001, 864.8857532970001, 861.6748126290001, 858.461790591, 870.475429501, 867.9476970410001, 873.8253194460001, 878.4912036889998, 876.455077457, 860.1635364949998, 862.303468952, 864.1041174989998, 875.9636482389997, 883.2544760119999, 868.7709512910001, 879.5089108699997, 870.1813621410001, 862.6943002630001, 856.8122204219999, 877.2766698989999, 865.6528251210002, 880.8215454989997, 890.669938447, 862.4991354619997, 866.0443692170002, 877.1781225539999, 867.3607777309999, 866.1423808970001, 883.4521658419999, 874.6858312589998, 868.6728204659998, 872.0218198109999, 868.5751928759998, 858.559445226, 874.5873433889999, 874.2580414710001, 860.0663234829999, 883.5505038599999, 856.423078048, 856.423078048, 871.2982686460002], \"power_mean\": 867.8005311026141, \"energy_millijoules\": 12624.046728211199, \"energy_joules\": 12.624046728211198, \"coremark_score\": 17205.781142, \"coremarks_per_mhz\": 7.792473343297101, \"ulpmark_cm_score\": 19.803475492634245}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1146.9048192, 1163.2910259439998, 1160.303833696, 1145.628361192, 1139.4076636319999, 1152.900294066, 1154.1338783180001, 1139.6292299279999, 1176.446746516, 1145.5168410820002, 1141.5184149, 1151.79790995, 1149.35388273, 1160.4726774920002, 1149.29823092, 1159.1339982119998, 1148.2433409599998, 1175.054351185, 1141.9069162419999], \"power_mean\": 1152.681179798158, \"energy_millijoules\": 5763.40589899079, \"energy_joules\": 5.76340589899079}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm7150ab/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 250 ms\nBaseline power usage: 1135 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 768 1017 1248 1324 1497 1612 1708 1804\n\n 300:  1114     3.7 C/MHz     60 mW   13.6 J   18.4 I/mJ   224.5 s\n 576:  2138     3.7 C/MHz     75 mW    8.7 J   28.7 I/mJ   116.9 s\n 768:  2851     3.7 C/MHz     86 mW    7.6 J   33.0 I/mJ    87.7 s\n1017:  3778     3.7 C/MHz    102 mW    6.8 J   36.9 I/mJ    66.2 s\n1248:  4634     3.7 C/MHz    119 mW    6.4 J   39.0 I/mJ    54.0 s\n1324:  4919     3.7 C/MHz    124 mW    6.3 J   39.6 I/mJ    50.8 s\n1497:  5560     3.7 C/MHz    136 mW    6.1 J   40.8 I/mJ    45.0 s\n1612:  5988     3.7 C/MHz    144 mW    6.0 J   41.5 I/mJ    41.8 s\n1708:  6344     3.7 C/MHz    148 mW    5.8 J   42.8 I/mJ    39.4 s\n1804:  6701     3.7 C/MHz    166 mW    6.2 J   40.3 I/mJ    37.3 s\n\n\n===== CPU 6 =====\nFrequencies: 300 652 806 979 1094 1209 1324 1555 1708 1843 1939 2169 2208\n\n 300:  2338     7.8 C/MHz    106 mW   11.3 J   22.1 I/mJ   106.9 s\n 652:  5086     7.8 C/MHz    163 mW    8.0 J   31.2 I/mJ    49.2 s\n 806:  6284     7.8 C/MHz    189 mW    7.5 J   33.3 I/mJ    39.8 s\n 979:  7622     7.8 C/MHz    231 mW    7.6 J   33.0 I/mJ    32.8 s\n1094:  8523     7.8 C/MHz    264 mW    7.7 J   32.3 I/mJ    29.4 s\n1209:  9422     7.8 C/MHz    292 mW    7.8 J   32.2 I/mJ    26.6 s\n1324: 10322     7.8 C/MHz    330 mW    8.0 J   31.3 I/mJ    24.2 s\n1555: 12119     7.8 C/MHz    435 mW    9.0 J   27.9 I/mJ    20.6 s\n1708: 13313     7.8 C/MHz    514 mW    9.7 J   25.9 I/mJ    18.8 s\n1843: 14361     7.8 C/MHz    590 mW   10.3 J   24.3 I/mJ    17.4 s\n1939: 15112     7.8 C/MHz    656 mW   10.9 J   23.0 I/mJ    16.6 s\n2169: 16910     7.8 C/MHz    835 mW   12.4 J   20.2 I/mJ    14.8 s\n2208: 17206     7.8 C/MHz    868 mW   12.6 J   19.8 I/mJ    14.5 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm7150ab/main/uptime.txt",
    "content": " 21:26:05 up 24 min,  load average: 0.72, 0.79, 0.69\n"
  },
  {
    "path": "results/sm7150ab/main/versions.txt",
    "content": "Kernel: Linux version 4.14.117-Kensur (KenHV@Kensur) (gcc version 11.0.0 20210206 (experimental) (Eva GCC)) #1 SMP PREEMPT Tue Mar 2 15:29:34 IST 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm7150ab/sunfish/cmdline.txt",
    "content": "rcupdate.rcu_expedited=1 rcu_nocbs=0-7 rootwait ro init=/init androidboot.bootdevice=1d84000.ufshc androidboot.baseband=msm androidboot.keymaster=1 msm_drm.dsi_display0=dsi_sofef01_sdc_1080p_cmd_display: androidboot.force_normal_boot=1 androidboot.serialno=REDACTED androidboot.slot_suffix=_a androidboot.slot_retry_count=2 androidboot.slot_successful=no androidboot.hardware.platform=sm7150 androidboot.hardware=sunfish androidboot.revision=MP1.0 androidboot.bootloader=s5-0.4-7266296 androidboot.hardware.sku=G025J androidboot.hardware.radio.subtype=0 androidboot.hardware.dsds=0 androidboot.secure_boot=PRODUCTION androidboot.cdt_hwid=0x050E2800 androidboot.hardware.majorid=0x0E androidboot.dtb_idx=0 androidboot.dtbo_idx=5 androidboot.bootreason=reboot,bootloader androidboot.hardware.ddr=6GB,Micron,LPDDR4X androidboot.ddr_info=Micron androidboot.ddr_size=6GB androidboot.hardware.ufs=128GB,Micron androidboot.cid=00000000 androidboot.boottime=0BLE:91,1BLL:31,1BLE:556,2BLL:98,2BLE:26562,SW:1335,KL:40,KD:91,ODT:183,AVB:508,AFTL:0 androidboot.ramdump=enabled androidboot.blockchain=enabled androidboot.init_fatal_panic=true usbcfg.suzyq=disabled androidboot.dp_info_a=enabled(not-in-list) androidboot.dp_info_b=enabled(not-in-list) androidboot.hardware.color=BLK androidboot.theme=1 androidboot.hardware.coo=VN androidboot.hardware.pcbcfg=G650-04856-05 androidboot.hardware.devcfg=G950-05037-01 androidboot.vbmeta.device=PARTUUID=fa323976-e072-4a01-9dfa-ba23da319bf8 androidboot.vbmeta.avb_version=1.1 androidboot.vbmeta.device_state=unlocked androidboot.vbmeta.hash_alg=sha256 androidboot.vbmeta.size=8000 androidboot.vbmeta.digest=e5649e493b939fffd0c0376105de086e8d3f68766904398a6db969b225cbc3a7 androidboot.veritymode=enforcing androidboot.verifiedbootstate=orange androidboot.aftlstate=8 printk.devkmsg=on msm_rtb.filter=0x237 ehci-hcd.park=3 service_locator.enable=1 androidboot.memcg=1 cgroup.memory=nokmem lpm_levels.sleep_disabled=1 usbcore.autosuspend=7 loop.max_part=7 androidboot.usbcontroller=a600000.dwc3 swiotlb=1 androidboot.boot_devices=soc/1d84000.ufshc buildvariant=user console=null\n"
  },
  {
    "path": "results/sm7150ab/sunfish/cpufreq_stats/0/time_in_state",
    "content": "300000 96443\n576000 14901\n768000 11368\n1017600 8773\n1248000 7315\n1324800 6938\n1497600 6547\n1612800 5832\n1708800 5555\n1804800 5340\n"
  },
  {
    "path": "results/sm7150ab/sunfish/cpufreq_stats/0/total_trans",
    "content": "12\n"
  },
  {
    "path": "results/sm7150ab/sunfish/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    576000    768000   1017600   1248000   1324800   1497600   1612800   1708800   1804800 \n   300000:         0         1         0         0         0         0         0         0         0         1 \n   576000:         0         0         1         0         0         0         0         0         0         0 \n   768000:         0         0         0         1         0         0         0         0         0         0 \n  1017600:         0         0         0         0         1         0         0         0         0         0 \n  1248000:         0         0         0         0         0         1         0         0         0         0 \n  1324800:         0         0         0         0         0         0         1         0         0         0 \n  1497600:         1         0         0         0         0         0         0         1         0         0 \n  1612800:         0         0         0         0         0         0         0         0         1         0 \n  1708800:         0         0         0         0         0         0         0         0         0         1 \n  1804800:         1         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm7150ab/sunfish/cpufreq_stats/6/time_in_state",
    "content": "300000 122430\n652800 6729\n806400 5618\n979200 4760\n1094400 4355\n1209600 4028\n1324800 3749\n1555200 3320\n1708800 3093\n1843200 2916\n1939200 2814\n2169600 2613\n2208000 2588\n"
  },
  {
    "path": "results/sm7150ab/sunfish/cpufreq_stats/6/total_trans",
    "content": "13\n"
  },
  {
    "path": "results/sm7150ab/sunfish/cpufreq_stats/6/trans_table",
    "content": "   From  :    To\n         :    300000    652800    806400    979200   1094400   1209600   1324800   1555200   1708800   1843200   1939200   2169600   2208000 \n   300000:         0         1         0         0         0         0         0         0         0         0         0         0         0 \n   652800:         0         0         1         0         0         0         0         0         0         0         0         0         0 \n   806400:         0         0         0         1         0         0         0         0         0         0         0         0         0 \n   979200:         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1094400:         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1209600:         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1324800:         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1555200:         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1708800:         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  1843200:         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  1939200:         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2169600:         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2208000:         1         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm7150ab/sunfish/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 14 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nHardware\t: Qualcomm Technologies, Inc SDMMAGPIE\n"
  },
  {
    "path": "results/sm7150ab/sunfish/device.txt",
    "content": "Model: Google Inc. MSM sm7150 Sunfish MP1.0;\nCompatible: qcom,sdmmagpie-idp;qcom,sdmmagpie;qcom,idp;\n"
  },
  {
    "path": "results/sm7150ab/sunfish/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Linux version 4.14.228-iremia (prince@builds.statixos.com) (gcc version 12.0.0 20210701 (experimental) (Eva GCC)) #0 SMP PREEMPT Fri Jul 9 19:26:07 EDT 2021\n[    0.000000] Boot CPU: AArch64 Processor [51df805e]\n[    0.000000] Machine: Qualcomm Technologies, Inc. SDMMAGPIE PM6150 Google Inc. MSM sm7150 Sunfish MP1.0\n[    0.000000] OF: reserved mem: OVERLAP DETECTED!\n               cont_splash_region@9c000000 (0x000000009c000000--0x000000009d700000) overlaps with disp_rdump_region@9c000000 (0x000000009c000000--0x000000009d800000)\n[    0.000000] OF: reserved mem: OVERLAP DETECTED!\n               disp_rdump_region@9c000000 (0x000000009c000000--0x000000009d800000) overlaps with dfps_data_region@9d700000 (0x000000009d700000--0x000000009d800000)\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fa000000, size 92 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f9400000, size 12 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f9000000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f8000000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f7800000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f5800000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000001fa800000, size 36 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085700000, size 6 MiB\n[    0.000000] OF: reserved mem: initialized node hyp_region@85700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085e00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node xbl_aop_mem@85e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085fff000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node sec_apps_region@85fff000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086000000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node smem@86000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086200000, size 45 MiB\n[    0.000000] OF: reserved mem: initialized node removed_region@86200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ab00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node camera_region@8ab00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b000000, size 152 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@8b000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094800000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region@93400000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000094d00000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_regions@93900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000096b00000, size 34 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region@95700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000098d00000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_msa_region@97500000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000098f00000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node npu_region@97680000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000098f80000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ips_fw_region@97700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000098f90000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_gsi_region@97710000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000098f95000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@97715000, compatible id removed-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x000000009e400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@9e400000, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000009f800000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_sec_regions@0x9f800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000a47df000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node debug_info@A47DF000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000a481f000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node ramoops_region@A481F000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000a4c1f000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node alt_ramoops_region@A4C1F000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000a501f000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ramoops_meta_region@0xA501F000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000a5020000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ramdumplog_region@0xA5020000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 1559552\n[    0.000000]   DMA zone: 8192 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 524288 pages, LIFO batch:31\n[    0.000000]   Normal zone: 16176 pages used for memmap\n[    0.000000]   Normal zone: 1035264 pages, LIFO batch:31\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.1\n[    0.000000] random: fast init done\n[    0.000000] random: get_random_bytes called from start_kernel+0x9c/0x4a4 with crng_init=1\n[    0.000000] percpu: Embedded 22 pages/cpu @        (ptrval) s49176 r8192 d32744 u90112\n[    0.000000] pcpu-alloc: s49176 r8192 d32744 u90112 alloc=22*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] CPU features: detected: Hardware dirty bit management\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1535184\n[    0.000000] Kernel command line: rcupdate.rcu_expedited=1 rcu_nocbs=0-7 rootwait ro init=/init androidboot.bootdevice=1d84000.ufshc androidboot.baseband=msm androidboot.keymaster=1 msm_drm.dsi_display0=dsi_sofef01_sdc_1080p_cmd_display: androidboot.force_normal_boot=1 androidboot.serialno=REDACTED androidboot.slot_suffix=_a androidboot.slot_retry_count=2 androidboot.slot_successful=no androidboot.hardware.platform=sm7150 androidboot.hardware=sunfish androidboot.revision=MP1.0 androidboot.bootloader=s5-0.4-7266296 androidboot.hardware.sku=G025J androidboot.hardware.radio.subtype=0 androidboot.hardware.dsds=0 androidboot.secure_boot=PRODUCTION androidboot.cdt_hwid=0x050E2800 androidboot.hardware.majorid=0x0E androidboot.dtb_idx=0 androidboot.dtbo_idx=5 androidboot.bootreason=reboot,bootloader androidboot.hardware.ddr=6GB,Micron,LPDDR4X androidboot.ddr_info=Micron androidboot.ddr_size=6GB androidboot.hardware.ufs=128GB,Micron androidboot.cid=00000000 androidboot.boottime=0BLE:91,1BLL\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 131072 bytes\n[    0.000000] log_buf_len: 1048576 bytes\n[    0.000000] early log buf free: 121452(92%)\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off\n[    0.000000] software IO TLB: mapped [mem 0xfffbf000-0xfffff000] (0MB)\n[    0.000000] Memory: 5481328K/6238208K available (23038K kernel code, 4380K rwdata, 10796K rodata, 7680K init, 7587K bss, 552080K reserved, 204800K cma-reserved)\n[    0.000000] Virtual kernel memory layout:\n[    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)\n[    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)\n[    0.000000]       .text : 0x        (ptrval) - 0x        (ptrval)   ( 23040 KB)\n[    0.000000]     .rodata : 0x        (ptrval) - 0x        (ptrval)   ( 10816 KB)\n[    0.000000]       .init : 0x        (ptrval) - 0x        (ptrval)   (  7680 KB)\n[    0.000000]       .data : 0x        (ptrval) - 0x        (ptrval)   (  4381 KB)\n[    0.000000]        .bss : 0x        (ptrval) - 0x        (ptrval)   (  7588 KB)\n[    0.000000]     fixed   : 0xffffffbefe7fd000 - 0xffffffbefec00000   (  4108 KB)\n[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)\n[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)\n[    0.000000]               0xffffffbf2a000000 - 0xffffffbf2ff30000   (    95 MB actual)\n[    0.000000]     memory  : 0xffffffca80000000 - 0xffffffcbfcc00000   (  6092 MB)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000017a60000\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000015] clocksource: Switched to clocksource arch_sys_counter\n[    0.002082] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.002101] pid_max: default: 32768 minimum: 301\n[    0.002182] Security Framework initialized\n[    0.002193] SELinux:  Initializing.\n[    0.002241] SELinux:  Starting in permissive mode\n[    0.002276] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.002294] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.014141] ASID allocator initialised with 65536 entries\n[    0.016217] Hierarchical SRCU implementation.\n[    0.024971] MSM Memory Dump base table set up\n[    0.024998] MSM Memory Dump apps data table set up\n[    0.029589] smp: Bringing up secondary CPUs ...\n[    0.041000] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000\n[    0.041048] CPU1: Booted secondary processor [51df805e]\n[    0.052377] GICv3: CPU2: found redistributor 200 region 0:0x0000000017aa0000\n[    0.052409] CPU2: Booted secondary processor [51df805e]\n[    0.063781] GICv3: CPU3: found redistributor 300 region 0:0x0000000017ac0000\n[    0.063809] CPU3: Booted secondary processor [51df805e]\n[    0.075269] GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000\n[    0.075297] CPU4: Booted secondary processor [51df805e]\n[    0.086855] GICv3: CPU5: found redistributor 500 region 0:0x0000000017b00000\n[    0.086884] CPU5: Booted secondary processor [51df805e]\n[    0.099221] CPU features: Unsupported CPU feature variation detected.\n[    0.099253] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000\n[    0.099306] CPU6: Booted secondary processor [51df804e]\n[    0.111534] GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000\n[    0.111591] CPU7: Booted secondary processor [51df804e]\n[    0.111806] smp: Brought up 1 node, 8 CPUs\n[    0.111856] SMP: Total of 8 processors activated.\n[    0.111862] CPU features: detected: GIC system register CPU interface\n[    0.111866] CPU features: detected: Privileged Access Never\n[    0.111871] CPU features: detected: LSE atomic instructions\n[    0.111875] CPU features: detected: User Access Override\n[    0.111879] CPU features: detected: 32-bit EL0 Support\n[    0.112423] CPU: All CPU(s) started at EL1\n[    0.112467] alternatives: patching kernel code\n[    0.118006] scm_enable_mem_protection: SCM call failed\n[    0.118143] CPU7: update max cpu_capacity 1024\n[    0.172371] CPU0: update max cpu_capacity 602\n[    0.173594] Registered cp15_barrier emulation handler\n[    0.173616] Registered setend emulation handler\n[    0.173846] PM: Init ksuspend_mon thread\n[    0.173886] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.173902] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.177781] pinctrl core: initialized pinctrl subsystem\n[    0.178288] NET: Registered protocol family 16\n[    0.180122] schedtune: configured to support 8 boost groups\n[    0.180673] CPU7: update max cpu_capacity 1024\n[    0.180740] cpuidle: using governor menu\n[    0.180767] cpuidle: using governor qcom\n[    0.180845] NET: Registered protocol family 42\n[    0.185296] vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.185307] vdso32: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.185321] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.186097] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.187044] exit: IPA_USB init success!\n[    0.188907] sps:sps is ready.\n[    0.189326] set_restart_msg: set restart msg = `Unknown'\r\n[    0.190721] unable to find DT imem DLOAD mode node\n[    0.191942] unable to find DT imem EDLOAD mode node\n[    0.193474] msm_watchdog 17c10000.qcom,wdt: wdog absent resource not present\n[    0.194380] msm_watchdog 17c10000.qcom,wdt: MSM Watchdog Initialized\n[    0.194894] platform soc:mem_dump: assigned reserved memory node mem_dump_region\n[    0.209942] msm-dcc 10a2000.dcc_v2: DCC list passed 3\n[    0.212451] msm-dcc 10a2000.dcc_v2: All values written to enable\n[    0.217969] platform soc:qcom,smem: assigned reserved memory node smem@86000000\n[    0.218496] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.225566] platform 86d00000.qseecom: assigned reserved memory node qseecom_region@9e400000\n[    0.226356] platform 62400000.qcom,lpass: assigned reserved memory node pil_adsp_region@95700000\n[    0.227459] spmi spmi-0: PMIC arbiter version v5 (0x50000000)\n[    0.230381] platform 8300000.qcom,turing: assigned reserved memory node cdsp_regions@93900000\n[    0.230791] platform 4080000.qcom,mss: assigned reserved memory node modem_region@8b000000\n[    0.231042] platform aae0000.qcom,venus: assigned reserved memory node pil_video_region@93400000\n[    0.231289] platform 9800000.qcom,npu: assigned reserved memory node npu_region@97680000\n[    0.235701] oledb: Bringing 0uV into 4925000-4925000uV\n[    0.235993] ab: Bringing 0uV into 4600000-4600000uV\n[    0.236239] ibb: Bringing 0uV into 800000-800000uV\n[    0.236604] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.237062] platform soc:qcom,ipa_fws: assigned reserved memory node ips_fw_region@97700000\n[    0.253113] sdmmagpie-pinctrl 3400000.pinctrl: invalid resource\n[    0.259864] rpmh_regulator_probe: smpf1: could not find RPMh address for resource\n[    0.260114] rpmh_regulator_probe: smpf2: could not find RPMh address for resource\n[    0.267061] pm6150_l17: supplied by pm6150_l11\n[    0.273969] rpmh_regulator_probe: ldof1: could not find RPMh address for resource\n[    0.274178] rpmh_regulator_probe: ldof2: could not find RPMh address for resource\n[    0.274380] rpmh_regulator_probe: ldof4: could not find RPMh address for resource\n[    0.274571] rpmh_regulator_probe: ldof5: could not find RPMh address for resource\n[    0.274767] rpmh_regulator_probe: ldof6: could not find RPMh address for resource\n[    0.274957] rpmh_regulator_probe: ldof7: could not find RPMh address for resource\n[    0.282950] OF: amba_device_add() failed (-16) for /soc/cti@6867000\n[    0.293333] platform a47df000.bootloader_log: assigned reserved memory node debug_info@A47DF000\n[    0.293458] platform soc:ramoops: assigned reserved memory node ramoops_region@A481F000\n[    0.293949] pstore: using zlib compression\n[    0.295493] console [pstore-1] enabled\n[    0.295591] pstore: Registered ramoops as persistent store backend\n[    0.295656] ramoops: attached 0x400000@0xa481f000, ecc: 0/0\n[    0.297180] platform soc:access_ramoops@0: assigned reserved memory node ramoops_meta_region@0xA501F000\n[    0.297319] platform soc:access_ramoops@1: assigned reserved memory node alt_ramoops_region@A4C1F000\n[    0.318615] gpu_cx_gdsc: supplied by pm6150l_s2_level\n[    0.320379] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu0\n[    0.320696] clk: add_opp: Set OPP pair (1804800000 Hz, 820000 uv) on cpu0\n[    0.320758] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu1\n[    0.321057] clk: add_opp: Set OPP pair (1804800000 Hz, 820000 uv) on cpu1\n[    0.321124] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu2\n[    0.321417] clk: add_opp: Set OPP pair (1804800000 Hz, 820000 uv) on cpu2\n[    0.321473] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu3\n[    0.321784] clk: add_opp: Set OPP pair (1804800000 Hz, 820000 uv) on cpu3\n[    0.321853] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu4\n[    0.322163] clk: add_opp: Set OPP pair (1804800000 Hz, 820000 uv) on cpu4\n[    0.322224] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu5\n[    0.322530] clk: add_opp: Set OPP pair (1804800000 Hz, 820000 uv) on cpu5\n[    0.322601] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu6\n[    0.323008] clk: add_opp: Set OPP pair (2208000000 Hz, 884000 uv) on cpu6\n[    0.323071] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu7\n[    0.323484] clk: add_opp: Set OPP pair (2208000000 Hz, 884000 uv) on cpu7\n[    0.323778] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.323793] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on soc:qcom,cpu6-cpu-l3-lat\n[    0.323807] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.324816] clk: add_opp: Set OPP pair (1459200000 Hz, 764000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.324831] clk: add_opp: Set OPP pair (1459200000 Hz, 764000 uv) on soc:qcom,cpu6-cpu-l3-lat\n[    0.324844] clk: add_opp: Set OPP pair (1459200000 Hz, 764000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.325596] sched-energy: Sched-energy-costs installed from DT\n[    0.326969] cpufreq: driver osm-cpufreq up and running\n[    0.326986] clk: clk_cpu_osm_driver_probe: OSM CPUFreq driver inited\n[    0.330040] CPU6: update max cpu_capacity 1024\n[    0.344111] cam_cc-sdmmagpie ad00000.qcom,camcc: Registered Camera CC clocks\n[    0.345575] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.347767] clk-rpmh soc:qcom,rpmh: Registered RPMh clocks\n[    0.353151] disp_cc-sdmmagpie af00000.qcom,dispcc: Registered Display CC clocks\n[    0.383880] gcc-sdmmagpie 100000.qcom,gcc: Registered GCC clocks\n[    0.387485] gpu_cc_gmu_clk_src: set OPP pair(19200000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.387573] gpu_cc_gmu_clk_src: set OPP pair(200000000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.388321] gpu_cc_gx_gfx3d_clk_src: set OPP pair(180000000 Hz: 49 uV) on 5000000.qcom,kgsl-3d0\n[    0.388605] gpu_cc_gx_gfx3d_clk_src: set OPP pair(700000000 Hz: 385 uV) on 5000000.qcom,kgsl-3d0\n[    0.388722] gpu_cc_gx_gfx3d_clk_src: set OPP pair(825000000 Hz: 417 uV) on 5000000.qcom,kgsl-3d0\n[    0.389001] gpu_cc-sdmmagpie 5090000.qcom,gpucc: Registered GPU CC clocks\n[    0.394971] video_cc-sdmmagpie ab00000.qcom,videocc: Registered Video CC clocks\n[    0.404550] KPI: Bootloader start count = 1319893503\n[    0.404567] KPI: Bootloader end count = 3934186495\n[    0.404580] KPI: Bootloader load kernel count = 3724244980\n[    0.404592] KPI: Kernel MPM timestamp = 990375\n[    0.404604] KPI: Kernel MPM Clock frequency = 32768\n[    0.404653] socinfo_print: v0.15, id=365, ver=1.0, raw_id=230, raw_ver=0, hw_plat=34, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65576, pmic_die_revision=131072 foundry_id=3 serial_number=1052117717 num_pmics=2 chip_family=0x60 raw_device_family=0x6 raw_device_number=0xc nproduct_id=0x40f num_clusters=0x1 ncluster_array_offset=0xbc num_defective_parts=0xc ndefective_parts_array_offset=0xc0 nmodem_supported=0xff g_hw_plat=5 g_hw_plat_ver=917544 g_hw_plat_subtype=0\n[    0.404777] msm_bus_fabric_rpmh_init_driver\n[    0.405040] msm_bus: Probe started\n[    0.405964] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.406118] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.406155] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.406264] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.410097] msm_bus: DT Parsing complete\n[    0.414288] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.414612] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.414686] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.414945] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.437141] reg-fixed-voltage 0.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/camera_rear_vcm_en/camera_rear_vcm_en_default, deferring probe\n[    0.438021] reg-fixed-voltage-tps soc:ext_5v_boost: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150@0/pinctrl@c000/ext_5v_vbus/ext_5v_vbus_default, deferring probe\n[    0.439805] arm-smmu 5040000.arm,smmu-kgsl: \tnon-coherent table walk\n[    0.439832] arm-smmu 5040000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by FW configuration)\n[    0.439851] arm-smmu 5040000.arm,smmu-kgsl: \tstream matching with 5 register groups\n[    0.443000] register_client_adhoc:find path.src 161 dest 627\n[    0.443357] register_client_adhoc:Client handle 1 apps_smmu\n[    0.443561] arm-smmu 15000000.apps-smmu: \tnon-coherent table walk\n[    0.443593] arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.443610] arm-smmu 15000000.apps-smmu: \tstream matching with 79 register groups\n[    0.445748] register_client_adhoc:find path.src 161 dest 627\n[    0.446089] register_client_adhoc:Client handle 2 apps_smmu\n[    0.446538] register_client_adhoc:find path.src 161 dest 627\n[    0.446857] register_client_adhoc:Client handle 3 apps_smmu\n[    0.447269] register_client_adhoc:find path.src 22 dest 773\n[    0.447456] register_client_adhoc:Client handle 4 mnoc_hf_0_tbu\n[    0.447860] register_client_adhoc:find path.src 22 dest 773\n[    0.448034] register_client_adhoc:Client handle 5 mnoc_hf_1_tbu\n[    0.448408] register_client_adhoc:find path.src 137 dest 772\n[    0.448587] register_client_adhoc:Client handle 6 mnoc_sf_0_tbu\n[    0.448936] register_client_adhoc:find path.src 154 dest 10076\n[    0.449061] register_client_adhoc:Client handle 7 apps_smmu\n[    0.449461] register_client_adhoc:find path.src 161 dest 627\n[    0.449829] register_client_adhoc:Client handle 8 apps_smmu\n[    0.450340] register_client_adhoc:find path.src 161 dest 627\n[    0.450736] register_client_adhoc:Client handle 9 apps_smmu\n[    0.452251] SCSI subsystem initialized\n[    0.452435] usbcore: registered new interface driver usbfs\n[    0.452484] usbcore: registered new interface driver hub\n[    0.452534] usbcore: registered new device driver usb\n[    0.453042] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.453573] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.453611] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.453885] input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800/input/input0\n[    0.454344] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150l@4:qcom,power-on@800: PMIC@SID4 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'cold' boot\n[    0.454381] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150l@4:qcom,power-on@800: PMIC@SID4: Power-off reason: Triggered from SOFT (Software)\n[    0.454889] media: Linux media interface: v0.10\n[    0.454925] Linux video capture interface: v2.00\n[    0.454979] pps_core: LinuxPPS API ver. 1 registered\n[    0.454992] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>\n[    0.455012] PTP clock support registered\n[    0.470922] EDAC MC: Ver: 3.0.0\n[    0.472569] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@9e400000\n[    0.472886] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.473139] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.473461] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.474114] iommu: Adding device 8c0000.qcom,qupv3_0_geni_se:qcom,iommu_qupv3_0_geni_se_cb to group 0\n[    0.474156] ION heap system created\n[    0.474343] ION heap qsecom created at 0x000000009e400000 with size 1400000\n[    0.474361] ION heap qsecom_ta created at 0x00000000f8000000 with size 1000000\n[    0.474375] ION heap spss created at 0x00000000f7800000 with size 800000\n[    0.474389] ION heap secure_display created at 0x00000000fa000000 with size 5c00000\n[    0.474819] iommu: Adding device ac0000.qcom,qupv3_1_geni_se:qcom,iommu_qupv3_1_geni_se_cb to group 1\n[    0.475646] PMIC@SID0: PM6150 v2.0 options: 0, 0, 0, 0\n[    0.475810] PMIC@SID4: PM8150A v2.0 options: 0, 0, 0, 0\n[    0.475929] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.475942] read failed rc=-5\n[    0.475953] Invalid REVID peripheral type: 00\n[    0.475983] qcom,qpnp-revid: probe of c440000.qcom,spmi:qcom,pm8009@a:qcom,revid@100 failed with error -22\n[    0.477704] register_client_adhoc:find path.src 90 dest 512\n[    0.478454] register_client_adhoc:find path.src 90 dest 585\n[    0.478809] register_client_adhoc:find path.src 1 dest 676\n[    0.479362] register_client_adhoc:find path.src 143 dest 777\n[    0.479527] register_client_adhoc:Client handle 10 ipa\n[    0.486589] ipa ipa3_smp2p_probe:8363 fail to get smp2p clk resp bit -517\n[    0.488839] iommu: Adding device soc:ipa_smmu_ap to group 2\n[    0.489403] iommu: Adding device soc:ipa_smmu_wlan to group 3\n[    0.489774] iommu: Adding device soc:ipa_smmu_uc to group 4\n[    0.491463] ipa ipa3_smp2p_probe:8363 fail to get smp2p clk resp bit -517\n[    0.499146] Advanced Linux Sound Architecture Driver Initialized.\n[    0.499976] codec_detect codec_detect: created codec_detect\n[    0.501368] Bluetooth: Core ver 2.22\n[    0.501527] NET: Registered protocol family 31\n[    0.501544] Bluetooth: HCI device and connection manager initialized\n[    0.501578] Bluetooth: HCI socket layer initialized\n[    0.501613] Bluetooth: L2CAP socket layer initialized\n[    0.501671] Bluetooth: SCO socket layer initialized\n[    0.502970] NetLabel: Initializing\n[    0.502989] NetLabel:  domain hash size = 128\n[    0.503004] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\n[    0.503142] NetLabel:  unlabeled traffic allowed by default\n[    0.503281] pcie:pcie_init.\n[    0.523240] register_client_adhoc:find path.src 22 dest 512\n[    0.523848] register_client_adhoc:Client handle 11 bus-proxy-client\n[    0.524938] sched-energy energy-costs: cpu=0 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.524972] sched-energy energy-costs: cpu=1 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.524993] sched-energy energy-costs: cpu=2 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.525013] sched-energy energy-costs: cpu=3 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.525033] sched-energy energy-costs: cpu=4 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.525052] sched-energy energy-costs: cpu=5 eff=1024 [freq=300000 cap=83 power_d0=10] -> [freq=1804800 cap=494 power_d0=119]\n[    0.525072] sched-energy energy-costs: cpu=6 eff=1740 [freq=300000 cap=140 power_d0=166] -> [freq=2400000 cap=1024 power_d0=2568]\n[    0.525091] sched-energy energy-costs: cpu=7 eff=1740 [freq=300000 cap=140 power_d0=166] -> [freq=2400000 cap=1024 power_d0=2568]\n[    0.525106] sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.528095] gpu_gx_gdsc: supplied by pm6150_s2_level\n[    0.533911] npu_cc-sdmmagpie 9910000.qcom,npucc: Registered NPU CC clocks\n[    0.534060] reg-fixed-voltage 0.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/camera_rear_vcm_en/camera_rear_vcm_en_default, deferring probe\n[    0.534198] reg-fixed-voltage-tps soc:ext_5v_boost: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150@0/pinctrl@c000/ext_5v_vbus/ext_5v_vbus_default, deferring probe\n[    0.534387] ipa ipa3_smp2p_probe:8363 fail to get smp2p clk resp bit -517\n[    0.557161] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x9f800000, size 0x1e00000\n[    0.557188] ION heap secure_carveout created\n[    0.557207] ION heap secure_heap created\n[    0.560549] clocksource: Switched to clocksource arch_sys_counter\n[    0.651319] VFS: Disk quotas dquot_6.6.0\n[    0.651413] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.652564] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.652749] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.652770] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.652790] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.652808] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.652825] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.652843] mdss_pll ae94a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.655592] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=0, clocks successfully\n[    0.656253] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.656411] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.656431] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.656449] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.656471] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.656490] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.656509] mdss_pll ae96a00.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.661616] dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.667863] dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.668890] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=1, clocks successfully\n[    0.668962] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.671860] NET: Registered protocol family 2\n[    0.672587] TCP established hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.673125] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)\n[    0.673846] TCP: Hash tables configured (established 65536 bind 65536)\n[    0.673991] UDP hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.674110] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.674394] NET: Registered protocol family 1\n[    0.674434] PCI: CLS 0 bytes, default 128\n[    0.674624] reg-fixed-voltage 0.gpio-regulator: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150l@4/pinctrl@c000/camera_rear_vcm_en/camera_rear_vcm_en_default, deferring probe\n[    0.674782] reg-fixed-voltage-tps soc:ext_5v_boost: could not find pctldev for node /soc/qcom,spmi@c440000/qcom,pm6150@0/pinctrl@c000/ext_5v_vbus/ext_5v_vbus_default, deferring probe\n[    0.675003] ipa ipa3_smp2p_probe:8363 fail to get smp2p clk resp bit -517\n[    0.675521] Trying to unpack rootfs image as initramfs...\n[    1.500382] Freeing initrd memory: 7488K\n[    1.504366] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    1.511865] audit: initializing netlink subsys (disabled)\n[    1.512111] audit: type=2000 audit(1.509:1): state=initialized audit_enabled=0 res=1\n[    1.512450] Initialise system trusted keyrings\n[    1.512646] workingset: timestamp_bits=61 max_order=21 bucket_order=0\n[    1.519380] Registering sdcardfs 0.1\n[    1.519655] fuse init (API version 7.26)\n[    1.520633] SELinux:  Registering netfilter hooks\n[    1.521402] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    1.521420] pfk_f2fs [pfk_f2fs_init]: PFK F2FS inited successfully\n[    1.521434] pfk [pfk_init]: Driver initialized successfully\n[    1.529659] Key type asymmetric registered\n[    1.529678] Asymmetric key parser 'x509' registered\n[    1.529704] io scheduler noop registered\n[    1.529880] io scheduler cfq registered (default)\n[    1.529894] io scheduler mq-deadline registered\n[    1.529906] io scheduler kyber registered\n[    1.537657] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    1.537684] qcom-spmi-gpio c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000: read 0x4 failed\n[    1.537702] qcom-spmi-gpio c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000: failed to populate gpio 0, ret=-5\n[    1.537733] qcom-spmi-gpio: probe of c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000 failed with error -5\n[    1.544610] iommu: Adding device 800000.qcom,gpi-dma to group 5\n[    1.547049] iommu: Adding device a00000.qcom,gpi-dma to group 6\n[    1.556215] iommu: Adding device 18800000.qcom,icnss to group 7\n[    1.556307] icnss: Recursive recovery allowed for WLAN\n[    1.557041] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    1.557377] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    1.557421] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    1.557593] icnss: Platform driver probed successfully\n[    1.557827] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    1.558900] register_client_adhoc:find path.src 125 dest 512\n[    1.559635] register_client_adhoc:Client handle 12 scm_pas\n[    1.562187] register_client_adhoc:find path.src 63 dest 512\n[    1.562740] register_client_adhoc:Client handle 13 pil-venus\n[    1.562778] subsys-pil-tz aae0000.qcom,venus: for venus segments only will be dumped.\n[    1.563076] subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    1.563399] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    1.563906] subsys-pil-tz soc:qcom,kgsl-hyp: for a615_zap segments only will be dumped.\n[    1.572584] smp2p_sleepstate soc:qcom,smp2p_sleepstate: got smp2p-sleepstate-in irq 398\n[    1.574928] modemsmem soc:modemsmem: Get modem_flag node failed\n[    1.577379] msm_geni_serial 88c000.qcom,qup_uart: Wakeup byte 0xfd\n[    1.577599] msm_geni_serial 88c000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    1.578314] 88c000.qcom,qup_uart: ttyHS0 at MMIO 0x88c000 (irq = 115, base_baud = 0) is a MSM\n[    1.580313] msm_geni_serial a88000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console1\n[    1.580874] a88000.qcom,qup_uart: ttyMSM0 at MMIO 0xa88000 (irq = 118, base_baud = 0) is a MSM\n[    1.581548] msm_geni_serial_init: Driver initialized\n[    1.581985] register_client_adhoc:find path.src 1 dest 618\n[    1.582564] register_client_adhoc:Client handle 14 msm-rng-noc\n[    1.584519] random: crng init done\n[    1.586370] diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    1.586391] diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    1.601261] register_client_adhoc:find path.src 20003 dest 20515\n[    1.601522] register_client_adhoc:find path.src 20004 dest 20515\n[    1.601730] register_client_adhoc:Client handle 15 disp_rsc_mnoc\n[    1.601796] register_client_adhoc:find path.src 20001 dest 20513\n[    1.601988] register_client_adhoc:Client handle 16 disp_rsc_llcc\n[    1.602054] register_client_adhoc:find path.src 20000 dest 20512\n[    1.602249] register_client_adhoc:Client handle 17 disp_rsc_ebi\n[    1.602611] [sde_rsc_hw:rsc_hw_init:714]: sde rsc init successfully done\n[    1.602676] [sde_rsc:sde_rsc_probe:1878]: sde rsc index:0 probed successfully\n[    1.603832] dsi_phy ae94400.qcom,mdss_dsi_phy0: ae94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    1.603948] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-0\n[    1.604073] dsi_phy ae96400.qcom,mdss_dsi_phy1: ae96400.qcom,mdss_dsi_phy1 supply gdsc not found, using dummy regulator\n[    1.604157] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-1\n[    1.605637] AXI: get_pdata(): Error: Client name not found\n[    1.605654] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    1.605668] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-0\n[    1.605934] AXI: get_pdata(): Error: Client name not found\n[    1.605949] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    1.605963] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-1\n[    1.607290] OF: graph: no port node found in /soc/qcom,dsi-display\n[    1.607423] msm-dsi-panel:[dsi_panel_parse_qsync_caps:1476] [sofef01 cmd mode dsi sdc panel] qsync min fps not defined rc:-22\n[    1.607439] msm-dsi-panel:[dsi_panel_get:3403] failed to parse qsync features, rc=-22\n[    1.607507] msm-dsi-panel:[dsi_panel_parse_reset_sequence:2156] RESET SEQ LENGTH = 16\n[    1.608866] msm-dsi-panel:[dsi_panel_parse_misc_features:2207] dsi_panel_parse_misc_features: ulps feature disabled\n[    1.608888] msm-dsi-panel:[dsi_panel_parse_misc_features:2213] dsi_panel_parse_misc_features: ulps during suspend feature disabled\n[    1.611385] iommu: Adding device ae00000.qcom,mdss_mdp to group 8\n[    1.612084] register_client_adhoc:find path.src 1 dest 590\n[    1.612475] register_client_adhoc:Client handle 18 mdss_reg\n[    1.612522] register_client_adhoc:find path.src 22 dest 512\n[    1.612846] register_client_adhoc:find path.src 23 dest 512\n[    1.613119] register_client_adhoc:Client handle 19 mdss_sde\n[    1.613191] [drm:sde_dbg_init:5187] evtlog_status: enable:0, panic:1, dump:2\n[    1.613238] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops sde_rsc_comp_ops)\n[    1.613252] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops sde_wb_comp_ops)\n[    1.613708] dsi_backlight_register:784: LAB regulator found\n[    1.613883] msm-dsi-display:[dsi_display_bind] Successfully bind display panel 'dsi_sofef01_sdc_1080p_cmd_display'\n[    1.614110] genirq: irq_chip msmgpio-dc did not update eff. affinity mask of irq 245\n[    1.614160] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display (ops dsi_display_comp_ops)\n[    1.614192] [drm] mapped mdp address space @ffffff8012500000\n[    1.614250] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: vbif_nrt_phys\n[    1.614267] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: sid_phys\n[    1.614299] [drm:_sde_kms_get_splash_data:3527] splash mem num_regions:1\n[    1.614322] [drm:_sde_kms_get_splash_data:3560] splash mem for disp:1 add:9c000000 size:1700000\n[    1.614994] [drm:sde_kms_hw_init:3708] sde hardware revision:0x50020000\n[    1.616510] [drm] Created domain mdp_ns [80000000,80000000] secure=0\n[    1.616876] iommu: Adding device 506a000.qcom,gmu:gmu_user to group 9\n[    1.617560] iommu: Adding device 506a000.qcom,gmu:gmu_kernel to group 10\n[    1.619301] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 11\n[    1.619432] [drm] probing device qcom,smmu_sde_sec\n[    1.619447] [drm] Created domain mdp_s [80000000,80000000] secure=1\n[    1.623487] brd: module loaded\n[    1.623516] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.623835] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.624743] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.624791] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.625540] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    1.625549] [drm] No driver support for vblank timestamp query.\n[    1.626493] [drm] Initialized msm_drm 1.2.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    1.626580] msm-dsi-panel:[dsi_panel_parse_topology:2863] default topology: lm: 1 comp_enc:0 intf: 1\n[    1.626645] msm-dsi-panel:[dsi_panel_parse_partial_update_caps:2956] partial update disabled as the property is not set\n[    1.626843] dsi-ctrl:[_dsi_ctrl_setup_isr] [DSI_0] IRQ 401 registered\n[    1.632346] register_client_adhoc:find path.src 26 dest 512\n[    1.632709] register_client_adhoc:Client handle 20 grp3d\n[    1.632776] register_client_adhoc:find path.src 26 dest 10036\n[    1.633128] register_client_adhoc:Client handle 21 cnoc\n[    1.633145] query_client_usecase_all: query_start\n[    1.633247] query_client_usecase_all: query_start\n[    1.635424] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 12\n[    1.635864] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 13\n[    1.641581] loop: module loaded\n[    1.641953] zram: Added device: zram0\n[    1.643365] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1400000\n[    1.643405] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    1.643416] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    1.643432] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    1.643552] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    1.645079] misc access-metadata: registered 'metadata' 10:61, (1000@0x00000000a501f000)\n[    1.645222] misc access-ramoops: registered 'ramoops' 10:60, (400000@0x00000000a4c1f000)\n[    1.645350] st21nfc_dev_init: Loading st21nfc driver (version 2.0.15)\n[    1.645887] iommu: Adding device 1de0000.qcedev to group 14\n[    1.646246] register_client_adhoc:find path.src 125 dest 512\n[    1.646998] register_client_adhoc:Client handle 22 qcedev-noc\n[    1.647265] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.648770] qce 1de0000.qcedev: QTI Crypto 5.4.1 device found @0x1de0000\n[    1.649060] sps:BAM 0x0000000001dc4000 is registered.\n[    1.649368] sps:BAM 0x0000000001dc4000 (va:0xffffff8013040000) enabled: ver:0x27, number of pipes:16\n[    1.649684] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 49\n[    1.656017] iommu: Adding device 1de0000.qcrypto to group 15\n[    1.656158] register_client_adhoc:find path.src 125 dest 512\n[    1.656906] register_client_adhoc:Client handle 23 qcrypto-noc\n[    1.657181] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.658498] qcrypto 1de0000.qcrypto: QTI Crypto 5.4.1 device found @0x1de0000\n[    1.659124] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 49\n[    1.663351] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    1.663558] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    1.663711] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    1.663856] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    1.663984] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    1.664127] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    1.664275] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    1.664418] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    1.664560] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    1.664705] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    1.664853] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    1.665003] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    1.665149] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    1.665302] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    1.665451] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    1.665597] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    1.665743] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    1.665888] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    1.666030] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    1.666179] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    1.667018] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    1.668461] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    1.669507] qcom_ice_get_pdevice: found ice device ffffffcbee623400\n[    1.669518] qcom_ice_get_pdevice: matching platform device ffffffcbf224b400\n[    1.669720] register_client_adhoc:find path.src 123 dest 512\n[    1.670296] register_client_adhoc:find path.src 1 dest 757\n[    1.670609] register_client_adhoc:Client handle 24 ufshc_mem\n[    1.670895] ufshcd-qcom 1d84000.ufshc: ufs_qcom_parse_reg_info: Unable to find qcom,vccq-parent-supply regulator, assuming enabled\n[    1.671750] scsi host0: ufshcd\n[    1.671763] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    1.673799] libphy: Fixed MDIO Bus: probed\n[    1.674036] tun: Universal TUN/TAP device driver, 1.6\n[    1.674113] PPP generic driver version 2.4.2\n[    1.674197] PPP BSD Compression module registered\n[    1.674211] PPP Deflate Compression module registered\n[    1.674252] PPP MPPE Compression module registered\n[    1.674267] NET: Registered protocol family 24\n[    1.674295] PPTP driver version 0.8.5\n[    1.674813] CLD80211: Initializing\n[    1.674985] usbcore: registered new interface driver rtl8150\n[    1.675034] usbcore: registered new interface driver r8152\n[    1.675074] usbcore: registered new interface driver asix\n[    1.675113] usbcore: registered new interface driver ax88179_178a\n[    1.675151] usbcore: registered new interface driver cdc_ether\n[    1.675188] usbcore: registered new interface driver net1080\n[    1.675228] usbcore: registered new interface driver cdc_subset\n[    1.675265] usbcore: registered new interface driver zaurus\n[    1.675569] usbcore: registered new interface driver cdc_ncm\n[    1.676243] qcom_ice 1d90000.ufsice: QC ICE 3.1.75 device found @0xffffff8013460000\n[    1.682022] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.684374] msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    1.689255] iommu: Adding device a600000.ssusb to group 16\n[    1.693185] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.700880] msm-dwc3 a600000.ssusb: unable to get ssphy device\n[    1.705024] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    1.705068] ehci-pci: EHCI PCI platform driver\n[    1.705120] ehci-platform: EHCI generic platform driver\n[    1.706001] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    1.706023] ohci-pci: OHCI PCI platform driver\n[    1.706085] ohci-platform: OHCI generic platform driver\n[    1.708513] usbcore: registered new interface driver usb-storage\n[    1.708562] usbcore: registered new interface driver usb_ehset_test\n[    1.708601] usbcore: registered new interface driver lvs\n[    1.710654] logbuffer:  id:usbpd registered\n[    1.710877]  usbpd0: Can't find vbus-supply\n[    1.711139] logbuffer:  id:usbpd unregistered\n[    1.711164] qpnp-pdphy c440000.qcom,spmi:qcom,pm6150@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.712061] usbcore: registered new interface driver xpad\n[    1.713387] fpc1020 soc:fp_fpc1020: found pin control fpc1020_reset_reset\n[    1.713406] fpc1020 soc:fp_fpc1020: found pin control fpc1020_reset_active\n[    1.713421] fpc1020 soc:fp_fpc1020: found pin control fpc1020_irq_active\n[    1.722763] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.724619] fpc1020 soc:fp_fpc1020: IRQ after reset 1\n[    1.724642] fpc1020 soc:fp_fpc1020: fpc1020_probe: ok\n[    1.724804] fpc1020_init OK\n[    1.725630] keydebug_parse_dt: DT:key_down_delay=7000 dbg_fn_delay=2500 keys_down num_keys=1\n[    1.725644] keydebug_parse_dt: DT:keys_down=116\n[    1.727864] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm6150@0:qcom,pm6150_rtc: rtc core: registered qpnp_rtc as rtc0\n[    1.728467] i2c /dev entries driver\n[    1.728642] IR NEC protocol handler initialized\n[    1.728657] IR RC5(x/sz) protocol handler initialized\n[    1.728668] IR RC6 protocol handler initialized\n[    1.728680] IR JVC protocol handler initialized\n[    1.728690] IR Sony protocol handler initialized\n[    1.728701] IR SANYO protocol handler initialized\n[    1.728712] IR Sharp protocol handler initialized\n[    1.728723] IR MCE Keyboard/mouse protocol handler initialized\n[    1.728734] IR XMP protocol handler initialized\n[    1.730010] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-qos-lut : doesn't exist in device tree\n[    1.730071] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-danger-lut : doesn't exist in device tree\n[    1.730086] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-safe-lut : doesn't exist in device tree\n[    1.730157] register_client_adhoc:find path.src 1 dest 590\n[    1.730706] register_client_adhoc:Client handle 25 sde_reg\n[    1.731848] register_client_adhoc:find path.src 25 dest 512\n[    1.731991] [slg51000] probe start\n[    1.732003] [slg51000] try to enable cam buck pin\n[    1.732402] register_client_adhoc:Client handle 26 mdss_rotator\n[    1.732446] register_client_adhoc:find path.src 1 dest 590\n[    1.732977] register_client_adhoc:Client handle 27 mdss_rot_reg\n[    1.733385] No change in context(0==0), skip\n[    1.734819] sde_rotator_evtlog_create_debugfs: evtlog_status: enable:0, panic:1, dump:2\n[    1.736262] sde_rotator ae00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    1.737921] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 17\n[    1.738011] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    1.738127] [slg51000] try to enable cs pin\n[    1.738171] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 18\n[    1.738258] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    1.738877] iommu: Adding device 9800000.qcom,msm_npu to group 19\n[    1.740510] msm_npu 9800000.qcom,msm_npu: Unable to startup the chan (-11)\n[    1.740533] msm_npu: aop mailbox is not available\n[    1.741590] i2c_geni a8c000.i2c: i2c error :-107\n[    1.741603] slg51000_regmap_bulk_read: i2c read error=-107, retry count: 1\n[    1.743115] msm_vidc:  err: Failed to get platform resources\n[    1.743137] msm_vidc:  err: Failed to init core\n[    1.743167] msm_vidc_v4l2: probe of aa00000.qcom,vidc0 failed with error -22\n[    1.746054] iommu: Adding device aa00000.qcom,vidc1:non_secure_cb to group 20\n[    1.747164] iommu: Adding device aa00000.qcom,vidc1:secure_non_pixel_cb to group 21\n[    1.749556] iommu: Adding device aa00000.qcom,vidc1:secure_bitstream_cb to group 22\n[    1.750789] ldo3: supplied by regulator-dummy\n[    1.751850] iommu: Adding device aa00000.qcom,vidc1:secure_pixel_cb to group 23\n[    1.751863] ldo4: supplied by regulator-dummy\n[    1.753133] ldo5: supplied by regulator-dummy\n[    1.753713] platform aa00000.qcom,vidc1:qcom,msm-vidc,mem_cdsp: assigned reserved memory node cdsp_region\n[    1.754379] ldo6: supplied by regulator-dummy\n[    1.755469] ldo7: supplied by regulator-dummy\n[    1.756360] slg51000-regulator 2-0075: No IRQ configured\n[    1.756630] [slg51000] probe end\n[    1.756898] drv2624 2-005a: drv2624_i2c_probe enter\n[    1.757003] drv2624 2-005a: Looking up ti,irq-gpio property in node /soc/i2c@0xa8c000/drv2624@5a failed -2\n[    1.758311] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 24\n[    1.758845] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 25\n[    1.759025] platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node camera_region@8ab00000\n[    1.759804] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 26\n[    1.760573] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 27\n[    1.761079] drv2624 2-005a: drv2624_i2c_probe, ID status (0x3)\n[    1.761422] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_fd to group 28\n[    1.761937] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 29\n[    1.761953] drv2624 2-005a: dev_init_platform_data, LRA = 172, drive_time=0x18\n[    1.763353] drv2624 2-005a: drv2624 probe succeeded\n[    1.764130] at24 2-0050: 1024 byte m24c08 EEPROM, writable, 1 bytes/write\n[    1.764235] register_client_adhoc:find path.src 1 dest 589\n[    1.764799] register_client_adhoc:Client handle 28 cam_ahb\n[    1.765083] register_client_adhoc:find path.src 136 dest 512\n[    1.765626] register_client_adhoc:Client handle 29 cam_hf_0_mnoc\n[    1.765833] register_client_adhoc:find path.src 146 dest 778\n[    1.765965] register_client_adhoc:Client handle 30 cam_hf_0_camnoc\n[    1.766126] register_client_adhoc:find path.src 172 dest 512\n[    1.766648] register_client_adhoc:Client handle 31 cam_hf_1_mnoc\n[    1.766841] register_client_adhoc:find path.src 178 dest 778\n[    1.766961] register_client_adhoc:Client handle 32 cam_hf_1_camnoc\n[    1.767115] register_client_adhoc:find path.src 137 dest 512\n[    1.767669] register_client_adhoc:Client handle 33 cam_sf_0_mnoc\n[    1.767845] register_client_adhoc:find path.src 148 dest 778\n[    1.767975] register_client_adhoc:Client handle 34 cam_sf_0_camnoc\n[    1.768126] register_client_adhoc:find path.src 171 dest 512\n[    1.768658] register_client_adhoc:Client handle 35 cam_sf_1_mnoc\n[    1.768838] register_client_adhoc:find path.src 179 dest 778\n[    1.768962] register_client_adhoc:Client handle 36 cam_sf_1_camnoc\n[    1.775874] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1017 AXI client=[18][cpas-cdm][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    1.781973] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1017 AXI client=[9][iferdi][0] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.782921] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1017 AXI client=[10][ifenrdi][0] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.785039] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1017 AXI client=[11][iferdi][1] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.785933] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1017 AXI client=[12][ifenrdi][1] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.787502] CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 524 No clk named ife_dsp_clk found. Dev vfe2\n[    1.787523] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 109 Option clk get failed with rc -14\n[    1.787903] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1019 Invalid mux type: 0\n[    1.787917] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 1019 Invalid mux type: 0\n[    1.788156] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1017 AXI client=[13][iferdi][2] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.789048] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1017 AXI client=[14][ifenrdi][2] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.792612] CAM_INFO: CAM-ISP: cam_isp_dev_probe: 198 Camera ISP probe complete\n[    1.795400] CAM_INFO: CAM: cam_res_mgr_probe: 689 Disable shared gpio support.\n[    1.797840] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 428 Device Type :0\n[    1.801051] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    1.801079] CAM_INFO: CAM-SENSOR: cam_actuator_driver_platform_probe: 424 [LTC] pdev->name=ac4a000.qcom,cci:qcom,actuator@0\n[    1.805165] CAM_INFO: CAM-OIS: cam_ois_get_dt_data: 52 No GPIO found\n[    1.816121] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[1, 1], pwr[FAST MODE, FAST MODE], rate = 2\n[    1.816617] CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 170 Camera JPEG probe complete\n[    1.818142] ufshcd_get_max_icc_level: Couldn't find valid icc_level = 0\n[    1.818145] ufshcd_get_max_icc_level: Couldn't find valid icc_level = 0\n[    1.818274] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1017 AXI client=[23][fd][0] comp[7200000], comp_ab[7200000], uncomp[7200000]\n[    1.823728] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1017 AXI client=[24][lrmecpas][0] comp[7200000], comp_ab[7200000], uncomp[7200000]\n[    1.824038] scsi 0:0:0:49488: Well-known LUN    MICRON   MT128GASAO4U21   0302 PQ: 0 ANSI: 6\n[    1.824476] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1017 AXI client=[17][cam-cdm-intf][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    1.826958] dvbdev: DVB: registering new adapter (Qualcomm Technologies, Inc. DVB adapter)\n[    1.827586] scsi 0:0:0:49456: Well-known LUN    MICRON   MT128GASAO4U21   0302 PQ: 0 ANSI: 6\n[    1.828589] scsi 0:0:0:49476: Well-known LUN    MICRON   MT128GASAO4U21   0302 PQ: 0 ANSI: 6\n[    1.829570] scsi 0:0:0:0: Direct-Access     MICRON   MT128GASAO4U21   0302 PQ: 0 ANSI: 6\n[    1.830344] scsi 0:0:0:1: Direct-Access     MICRON   MT128GASAO4U21   0302 PQ: 0 ANSI: 6\n[    1.831034] scsi 0:0:0:2: Direct-Access     MICRON   MT128GASAO4U21   0302 PQ: 0 ANSI: 6\n[    1.831721] scsi 0:0:0:3: Direct-Access     MICRON   MT128GASAO4U21   0302 PQ: 0 ANSI: 6\n[    1.832410] scsi 0:0:0:4: Direct-Access     MICRON   MT128GASAO4U21   0302 PQ: 0 ANSI: 6\n[    1.833089] scsi 0:0:0:5: Direct-Access     MICRON   MT128GASAO4U21   0302 PQ: 0 ANSI: 6\n[    1.833769] sd 0:0:0:0: [sda] physical block alignment offset: 131072\n[    1.834176] sd 0:0:0:1: [sdb] physical block alignment offset: 131072\n[    1.834210] sd 0:0:0:0: [sda] 67108864-byte physical blocks\n[    1.834384] sd 0:0:0:0: [sda] Write Protect is off\n[    1.834393] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.834590] sd 0:0:0:0: [sda] Optimal transfer size 131072 bytes not a multiple of physical block size (67108864 bytes)\n[    1.834677] sd 0:0:0:1: [sdb] Write Protect is off\n[    1.834687] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.834917] sd 0:0:0:1: [sdb] Optimal transfer size 131072 bytes\n[    1.836011] sd 0:0:0:2: [sdc] Write Protect is off\n[    1.836022] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.836276] sd 0:0:0:2: [sdc] Optimal transfer size 131072 bytes\n[    1.836749]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15\n[    1.836827]  sdb: sdb1 sdb2\n[    1.836965] sd 0:0:0:3: [sdd] Write Protect is off\n[    1.836976] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.837142] sd 0:0:0:3: [sdd] Optimal transfer size 131072 bytes\n[    1.837669] sd 0:0:0:4: [sde] physical block alignment offset: 131072\n[    1.838105]  sdc: sdc1 sdc2\n[    1.838231] sd 0:0:0:4: [sde] Write Protect is off\n[    1.838241] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    1.838504] sd 0:0:0:4: [sde] Optimal transfer size 131072 bytes\n[    1.839407]  sdd: sdd1 sdd2 sdd3 sdd4\n[    1.840032] sd 0:0:0:5: [sdf] Write Protect is off\n[    1.840042] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    1.840172] usbcore: registered new interface driver uvcvideo\n[    1.840189] USB Video Class driver (1.1.1)\n[    1.840201] gspca_main: v2.14.0 registered\n[    1.840311] sd 0:0:0:5: [sdf] Optimal transfer size 131072 bytes\n[    1.840626]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39\n[    1.841701] QG-K: qpnp_qg_probe: Failed to get battery type, rc=-517\n[    1.842062]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5\n[    1.842505] Couldn't parse device tree rc=-517\n[    1.843013] gbms_storage: initialize gbms_storage\n[    1.843759] gbms_storage: ref registered batt_eeprom at 0, dupes=0, refs=0\n[    1.843771] gbms_storage: init done\n[    1.844460] google_charger: google,wlc-power-supply not defined\n[    1.844494] google_charger: renegotiate on full\n[    1.844514] google_charger: charging profile in the battery\n[    1.844658] google_charger: MSC_BD: trig volt=4270000,4250000 temp=320,time=21600 drainto=80,79 resume=280,50 290,14400\n[    1.845019] logbuffer:  id:pps registered\n[    1.846161] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    1.846420] logbuffer:  id:ssoc registered\n[    1.846659] google_battery: battery tz register failed. err:-19\n[    1.859344] bcl_pmic5:bcl_parse_devicetree_virtual_data No BCL Virtual sensor defined\n[    1.859392] bcl_pmic5: probe of c440000.qcom,spmi:qcom,pm6150@0:bcl@1d00 failed with error -22\n[    1.859939] bcl_pmic5:bcl_parse_devicetree_virtual_data No BCL Virtual sensor defined\n[    1.859962] bcl_pmic5: probe of c440000.qcom,spmi:qcom,pm6150l@4:bcl@3d00 failed with error -22\n[    1.860060] gbms_storage: storage registered batt_eeprom at 0, dupes=0, refs=0\n[    1.860078] at24 2-0050: gbms_storage_register done:0\n[    1.860960] bcl_soc:bcl_soc_probe soc TZ register failed. err:-19\n[    1.863469] softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)\n[    1.863658] device-mapper: uevent: version 1.0.3\n[    1.863832] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com\n[    1.864488] bt_dt_parse_vreg_info: qca,bt-vdd-vl: is not provided in device tree\n[    1.864506] bt_dt_parse_vreg_info: qca,bt-vdd-vm: is not provided in device tree\n[    1.864520] bt_dt_parse_vreg_info: qca,bt-vdd-5c: is not provided in device tree\n[    1.864534] bt_dt_parse_vreg_info: qca,bt-vdd-5a: is not provided in device tree\n[    1.864548] bt_dt_parse_vreg_info: qca,bt-vdd-vh: is not provided in device tree\n[    1.864594] bt_dt_parse_vreg_info: qca,bt-vdd-ldo: is not provided in device tree\n[    1.864609] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    1.864624] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in device tree\n[    1.864637] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.864649] bt_power_populate_dt_pinfo: clock not provided in device tree\n[    1.866292] EDAC DEVICE0: Giving out device to module soc:kryo-erp controller cache: DEV soc:kryo-erp (INTERRUPT)\n[    1.867456] qcom_llcc_erp 9200000.qcom,llcc:qcom,llcc-erp: No ECC IRQ; defaulting to polling mode\n[    1.867508] EDAC DEVICE1: Giving out device to module 9200000.qcom,llcc:qcom,llcc-erp controller llcc: DEV 9200000.qcom,llcc:qcom,llcc-erp (POLLED)\n[    1.869324] usbcore: registered new interface driver usbhid\n[    1.869339] usbhid: USB HID core driver\n[    1.869530] ashmem: initialized\n[    1.869544] wlan: Loading driver v5.2.03.9H ( +PANIC_ON_BUG)\n[    1.870458] qdf_print_ctrl_register: Allocated print control object 0\n[    1.870560] [swappe][608489263][00:00:01.870541] wlan: [1:I:tdls] ucfg_tdls_init: 40: tdls module dispatcher init\n[    1.870583] [swappe][608489718][00:00:01.870565] wlan: [1:I:tdls] ucfg_tdls_init: 72: tdls module dispatcher init done\n[    1.870621] [swappe][608490447][00:00:01.870603] wlan: [1:I:POLICY_MGR] policy_mgr_init: 214: Callbacks registered with obj mgr\n[    1.870858] [swappe][608495001][00:00:01.870840] wlan: [1:I:IPA] ipa_init: 125: ipa module dispatcher init\n[    1.870876] ipa ipa3_uc_reg_rdyCB:3107 bad parm. inout=0000000000000000 \n[    1.871016] wlan_hdd_state wlan major(496) initialized\n[    1.871078] wlan: driver loaded\n[    1.871187] ipa_ut ipa_ut_module_init:1043 Loading IPA test module...\n[    1.872780] bimc-bwmon 90b6300.qcom,cpu-cpu-llcc-bwmon: BW HWmon governor registered.\n[    1.872899] bimc-bwmon 90cd000.qcom,cpu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    1.873053] bimc-bwmon 9960300.qcom,npu-npu-ddr-bwmon: BW HWmon governor registered.\n[    1.874224] arm-memlat-mon soc:qcom,cpu0-cpu-l3-latmon: Memory Latency governor registered.\n[    1.874303] arm-memlat-mon soc:qcom,cpu6-cpu-l3-latmon: Memory Latency governor registered.\n[    1.874389] arm-memlat-mon soc:qcom,cpu0-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.874460] arm-memlat-mon soc:qcom,cpu6-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.874536] arm-memlat-mon soc:qcom,cpu0-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.874600] arm-memlat-mon soc:qcom,cpu6-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.874682] arm-memlat-mon soc:qcom,cpu0-computemon: Compute governor registered.\n[    1.874754] arm-memlat-mon soc:qcom,cpu6-computemon: Compute governor registered.\n[    1.877378] register_client_adhoc:find path.src 1 dest 770\n[    1.877552] register_client_adhoc:Client handle 37 soc:qcom,cpu-cpu-llcc-bw\n[    1.878510] register_client_adhoc:find path.src 129 dest 512\n[    1.878678] register_client_adhoc:Client handle 38 soc:qcom,cpu-llcc-ddr-bw\n[    1.879567] register_client_adhoc:find path.src 1 dest 770\n[    1.879741] register_client_adhoc:Client handle 39 soc:qcom,cpu0-cpu-llcc-lat\n[    1.880287] register_client_adhoc:find path.src 1 dest 770\n[    1.880459] register_client_adhoc:Client handle 40 soc:qcom,cpu6-cpu-llcc-lat\n[    1.881119] register_client_adhoc:find path.src 129 dest 512\n[    1.881291] register_client_adhoc:Client handle 41 soc:qcom,cpu0-llcc-ddr-lat\n[    1.881978] register_client_adhoc:find path.src 129 dest 512\n[    1.882141] register_client_adhoc:Client handle 42 soc:qcom,cpu6-llcc-ddr-lat\n[    1.882825] register_client_adhoc:find path.src 129 dest 512\n[    1.882991] register_client_adhoc:Client handle 43 soc:qcom,cpu0-cpu-ddr-latfloor\n[    1.883662] register_client_adhoc:find path.src 129 dest 512\n[    1.883844] register_client_adhoc:Client handle 44 soc:qcom,cpu6-cpu-ddr-latfloor\n[    1.884544] register_client_adhoc:find path.src 154 dest 512\n[    1.885053] register_client_adhoc:Client handle 45 soc:qcom,npu-npu-ddr-bw\n[    1.885471] register_client_adhoc:find path.src 1 dest 627\n[    1.885956] register_client_adhoc:Client handle 46 soc:qcom,snoc_cnoc_keepalive\n[    1.886999] register_client_adhoc:find path.src 26 dest 512\n[    1.887334] register_client_adhoc:Client handle 47 soc:qcom,gpubw\n[    1.920248] i2c_geni a8c000.i2c: i2c error :-107\n[    1.920281] pac193x: failed reading data from register 0xFD\n[    1.920293] pac193x: cannot read revision\n[    1.920329] pac193x: probe of 2-0010 failed with error -22\n[    1.921868] qcom-llcc-pmu 90cc000.llcc-pmu: Registered llcc_pmu, type: 8\n[    1.922443] iommu: Adding device 6048000.tmc to group 30\n[    1.923594] coresight-tmc: probe of 6048000.tmc failed with error -13\n[    1.931337] coresight-etm4x 7040000.etm: CPU0: ETM v4.2 initialized\n[    1.931361] coresight-etm4x 7040000.etm: CPU0: (null) initialized\n[    1.931898] coresight-etm4x 7140000.etm: CPU1: ETM v4.2 initialized\n[    1.931916] coresight-etm4x 7140000.etm: CPU1: (null) initialized\n[    1.932456] coresight-etm4x 7240000.etm: CPU2: ETM v4.2 initialized\n[    1.932474] coresight-etm4x 7240000.etm: CPU2: (null) initialized\n[    1.933007] coresight-etm4x 7340000.etm: CPU3: ETM v4.2 initialized\n[    1.933024] coresight-etm4x 7340000.etm: CPU3: (null) initialized\n[    1.933542] coresight-etm4x 7440000.etm: CPU4: ETM v4.2 initialized\n[    1.933559] coresight-etm4x 7440000.etm: CPU4: (null) initialized\n[    1.934060] coresight-etm4x 7540000.etm: CPU5: ETM v4.2 initialized\n[    1.934076] coresight-etm4x 7540000.etm: CPU5: (null) initialized\n[    1.934577] coresight-etm4x 7640000.etm: CPU6: ETM v4.2 initialized\n[    1.934594] coresight-etm4x 7640000.etm: CPU6: (null) initialized\n[    1.935099] coresight-etm4x 7740000.etm: CPU7: ETM v4.2 initialized\n[    1.935117] coresight-etm4x 7740000.etm: CPU7: (null) initialized\n[    1.937096] OF: graph: no port node found in /soc/csr@6001000\n[    1.937188] coresight-csr 6001000.csr: CSR initialized\n[    1.937252] OF: graph: no port node found in /soc/csr@6b0e000\n[    1.937329] coresight-csr 6b0e000.csr: CSR initialized\n[    1.939567] usbcore: registered new interface driver snd-usb-audio\n[    1.940094] iommu: Adding device soc:usb_audio_qmi_dev to group 31\n[    1.951340] rt5514 0-0057: Register rt5514 success\n[    1.951856] rt5514 spi0.0: handshake gpio 57 property /soc/spi@0x880000/mnh-spi@0\n[    1.952285] rt5514 spi0.0:  rt5514-spi register component success.\n[    1.952788] cs35l41 2-0040: 2-0040 supply VA not found, using dummy regulator\n[    1.952836] cs35l41 2-0040: 2-0040 supply VP not found, using dummy regulator\n[    1.964983] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.965029] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.965060] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.965090] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.965119] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.971494] msm-dai-q6-hdmi soc:qcom,msm-dai-q6-hdmi_ms: invalid device ID 24578\n[    1.972520] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: msm_auxpcm_dev_probe: invalid DT intf name senary\n[    2.000959] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: group id not supported 0x9150\n[    2.000993] msm-dai-tdm: probe of soc:qcom,msm-dai-tdm-sen-rx failed with error -22\n[    2.001036] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: group id not supported 0x9151\n[    2.001055] msm-dai-tdm: probe of soc:qcom,msm-dai-tdm-sen-tx failed with error -22\n[    2.021233] cs35l41 2-0040: Cirrus Logic CS35L41 (35a40), Revision: B2\n[    2.021889] cs35l41 2-0041: 2-0041 supply VA not found, using dummy regulator\n[    2.021937] cs35l41 2-0041: 2-0041 supply VP not found, using dummy regulator\n[    2.023616] GACT probability NOT on\n[    2.023646] Mirror/redirect action on\n[    2.023667] u32 classifier\n[    2.023678]     Actions configured\n[    2.023702] Netfilter messages via NETLINK v0.30.\n[    2.024497] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)\n[    2.024639] ctnetlink v0.93: registering with nfnetlink.\n[    2.025225] xt_time: kernel timezone is -0000\n[    2.025451] gre: GRE over IPv4 demultiplexor driver\n[    2.025463] IPv4 over IPsec tunneling driver\n[    2.026064] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    2.026969] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    2.027139] Initializing XFRM netlink socket\n[    2.027173] IPsec XFRM device driver\n[    2.027615] NET: Registered protocol family 10\n[    2.028966] Segment Routing with IPv6\n[    2.029079] mip6: Mobile IPv6\n[    2.029107] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    2.030274] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    2.031213] NET: Registered protocol family 17\n[    2.031244] NET: Registered protocol family 15\n[    2.031305] Bridge firewalling registered\n[    2.031319] Ebtables v2.0 registered\n[    2.031518] l2tp_core: L2TP core driver, V2.0\n[    2.031537] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    2.031549] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    2.031575] l2tp_netlink: L2TP netlink interface\n[    2.031621] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    2.031633] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    2.031777] sctp: Hash tables configured (bind 256/256)\n[    2.032112] Key type dns_resolver registered\n[    2.034500] msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    2.038366] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.045958] msm-dwc3 a600000.ssusb: unable to get ssphy device\n[    2.046576] sps:BAM 0x000000000a704000 is registered.\n[    2.050833] logbuffer:  id:usbpd registered\n[    2.051052]  usbpd0: Can't find vbus-supply\n[    2.051292] logbuffer:  id:usbpd unregistered\n[    2.051315] qpnp-pdphy c440000.qcom,spmi:qcom,pm6150@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    2.052723] QG-K: qg_get_batt_type: eeprom ID=8230020501, len=10, defer_cnt=1\n[    2.066862] of_batterydata_get_best_profile: 8230020501 found\n[    2.067318] QG-K: qg_batterydata_init: QG Battery-profile loaded\n[    2.069699] QG-K: qg_determine_pon_soc: using SHUTDOWN_SOC @ PON ocv_uv=4396100uV soc=100\n[    2.070256] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    2.071560] gbms_storage: storage registered qg at 1, dupes=0, refs=0\n[    2.071582] QG-K: qpnp_qg_probe: QG initialized! battery_profile=8230020501 SOC=100 QG_subtype=4 charger_mode=0\n[    2.072455] logbuffer:  id:smblib registered\n[    2.075019] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    2.075754] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    2.076073] qcom,qpnp-smb5 c440000.qcom,spmi:qcom,pm6150@0:qcom,qpnp-smb5: typec_attach_detach_irq_handler lpd_stage=0 lpd_reason=0\n[    2.077241] power_supply main: driver failed to report `flash_trigger' property: -1\n[    2.077370] Couldn't get temp USB port thermal zone rc=-22\n[    2.077750] batt power supply prop 4 not supported\n[    2.079175] QCOM-STEPCHG: handle_battery_insertion: Get battery present status failed, rc=-11\n[    2.079936] battery type=8230020501\n[    2.079959] of_batterydata_get_best_profile: 8230020501 found\n[    2.080971] QCOM-BATT: pl_disable_vote_callback: Couldn't read FCC step update status, rc=-11\n[    2.081006] QCOM-BATT: pl_fv_vote_callback: Couldn't get battery status rc=-11\n[    2.081039] QCOM-BATT: handle_main_charge_type: Couldn't get batt charge type rc=-11\n[    2.081068] QCOM-BATT: handle_settled_icl_change: Couldn't get aicl settled value rc=-11\n[    2.082563] batt power supply prop 4 not supported\n[    2.086483] SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    2.086597] QPNP SMB5 probed successfully\n[    2.088631] sm7150_bms: batt_id = 10947\n[    2.088658] sm7150_bms: node qpnp,qg PMIC subtype 40 Digital major 2\n[    2.088684] sm7150_bms: QG_TYPE 13\n[    2.088707] sm7150_bms: QG_TYPE 13\n[    2.089047] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    2.090086] sm7150_bms: CHGR_ENG_CHARGING_CFG_REG = 0x04\n[    2.090525] google_battery: Profile constant charge limits:\n[    2.090544] google_battery: |T \\ V  4200  4300  4420  4430  4440  4450\n[    2.090603] google_battery: | 0:10   920   310     0     0     0     0\n[    2.090673] google_battery: |10:20  1540   920   920   920   740   520\n[    2.090690] google_battery: |20:42  3080  2160  1540  1080   740   520\n[    2.090706] google_battery: |42:46  2460  1540  1540  1080   740   520\n[    2.090721] google_battery: |46:48  1540  1540     0     0     0     0\n[    2.090761] google_battery: |48:55   920     0     0     0     0     0\n[    2.090776] sm7150_bms: BMS driver probed successfully\n[    2.091023] google_charger: failed to get \"tcpm-source-psy-usbpd0\" power supply, retrying...\n[    2.092066] logbuffer:  id:ttf registered\n[    2.092085] google_battery: RES: req:0, sample:0[0], filt_cnt:0, res_avg:0\n[    2.094894] google_battery: init_work done\n[    2.098170] cs35l41 2-0041: Cirrus Logic CS35L41 (35a40), Revision: B2\n[    2.099021] sm7150_bms: BATTERY_CHARGER_STATUS_2 = 0x08\n[    2.099046] sm7150_bms: BATTERY_CHARGER_STATUS_7 = 0x00\n[    2.100626] power_supply main: driver failed to report `flash_trigger' property: -1\n[    2.100652] batt power supply prop 4 not supported\n[    2.102526] google,overheat_mitigation soc:google,overheat_mitigation: Update USB port temp:257\n[    2.108972] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    2.109371] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    2.109738] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    2.110231] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    2.110642] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    2.112121] msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    2.113013] sm7150_bms: BATTERY_CHARGER_STATUS_2 = 0x08\n[    2.113039] sm7150_bms: BATTERY_CHARGER_STATUS_7 = 0x00\n[    2.113151] sm7150_bms: MSC_PCS chg_state=112b01030001 [0x1:1:3:4395:0] chg= \n[    2.113275] sm7150_bms: CHGR_ENG_CHARGING_CFG_REG = 0x04\n[    2.116743] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.124444] msm-dwc3 a600000.ssusb: unable to get ssphy device\n[    2.125048] sps:BAM 0x000000000a704000 is registered.\n[    2.129325] logbuffer:  id:usbpd registered\n[    2.131424] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    2.131822] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    2.132185] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    2.132571] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    2.132970] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    2.134390] msm-usb-ssphy-qmp 88e8000.ssphy: No separate ID extcon device\n[    2.136434] google,overheat_mitigation soc:google,overheat_mitigation: Update USB port temp:257\n[    2.139274] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.147112] register_client_adhoc:find path.src 61 dest 512\n[    2.147625] sps:BAM 0x000000000a704000 is registered.\n[    2.147894] register_client_adhoc:find path.src 61 dest 676\n[    2.148408] register_client_adhoc:find path.src 1 dest 583\n[    2.148962] register_client_adhoc:Client handle 48 usb0\n[    2.149755] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    2.150202] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    2.150571] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    2.150922] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    2.151288] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    2.153073] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode\n[    2.153527] registered taskstats version 1\n[    2.153534] Loading compiled-in X.509 certificates\n[    2.153565] Key type ._fscrypt registered\n[    2.153571] Key type .fscrypt registered\n[    2.153577] Key type fscrypt-provisioning registered\n[    2.153823] msm-dwc3 a600000.ssusb: DWC3 in low power mode\n[    2.156074] niap_test_hash: hmac(sha512) passed\n[    2.156096] niap_test_hash: sha256 passed\n[    2.158505] niap_test_cipher: cbc(aes) encryption passed\n[    2.158528] niap_test_cipher: cbc(aes) decryption passed\n[    2.160762] Please check if `measure` clk is registered.\n[    2.174839] ADSPRPC: Secure VMID = 22\n[    2.174842] ADSPRPC: Secure VMID = 37\n[    2.175589] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 32\n[    2.176436] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 33\n[    2.177084] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 34\n[    2.177677] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 35\n[    2.178262] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 36\n[    2.178828] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 37\n[    2.179398] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 38\n[    2.180852] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 39\n[    2.181397] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 40\n[    2.181943] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 41\n[    2.182505] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13 to group 42\n[    2.183067] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14 to group 43\n[    2.183619] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb15 to group 44\n[    2.186204] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    2.186419] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    2.186622] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    2.186823] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    2.187029] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    2.187630] [K] Success to create power_pm_monitor_wq (0x00000000d76d1f69).\n[    2.188332] iommu: Adding device 62e40000.slim:qcom,iommu_slim_ctrl_cb to group 45\n[    2.188543] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    2.188750] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    2.188956] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    2.189158] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    2.189364] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    2.190775] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    2.190991] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    2.191197] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    2.191399] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    2.191605] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    2.193789] [KEY] gpio_keys_setup_key, error=-524, debounce(15, 15)\n[    2.193880] [KEY] keycode = 115, gpio = 0, irq = 98\n[    2.193966] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input1\n[    2.194271] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    2.194481] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    2.194685] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    2.194888] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    2.195094] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    2.196316] [ FTS ] fts_probe: driver probe begin!\n[    2.196323] [ FTS ] driver ver. 5.2.16.14\n[    2.196329] [ FTS ] SET Bus Functionality :\n[    2.196334] [ FTS ] I2C interface...\n[    2.196341] [ FTS ] i2c address: 49\n[    2.196346] [ FTS ] SET Device driver INFO:\n[    2.196403] fts 1-0049: bus negotiator initialized: 000000000f974b35\n[    2.196418] [ FTS ] switch_gpio = 72\n[    2.196425] [ FTS ] irq_gpio = 9\n[    2.196433] [ FTS ] reset_gpio = 8\n[    2.196467] msm-dsi-panel:[dsi_panel_parse_topology:2863] default topology: lm: 1 comp_enc:0 intf: 1\n[    2.196527] msm-dsi-panel:[dsi_panel_parse_partial_update_caps:2956] partial update disabled as the property is not set\n[    2.196539] [ FTS ] SET Regulators:\n[    2.196546] [ FTS ] SET GPIOS:\n[    2.206583] [ FTS ] SET Event Handler:\n[    2.206596] [ FTS ] SET Input Device Property:\n[    2.206698] input: fts as /devices/platform/soc/a84000.i2c/i2c-1/1-0049/input/input2\n[    2.206758] [ FTS ] Init Core Lib:\n[    2.206765] [ FTS ] initCore: Initialization of the Core...\n[    2.206772] [ FTS ] openChannel: SAD: 49\n[    2.206779] [ FTS ] setResetGpio: reset_gpio = 8\n[    2.206785] [ FTS ] initCore: Initialization Finished!\n[    2.206792] [ FTS ] Device Initialization:\n[    2.206798] [ FTS ] System resetting...\n[    2.240217] [ FTS ] READ EVENT = 03 00 00 00 00 00 00 00 \n[    2.240228] [ FTS ] FOUND EVENT = 03 00 00 00 00 00 00 00 \n[    2.240236] [ FTS ] readSysInfo: Reading System Info...\n[    2.242210] [ FTS ] readSysInfo: Parsing System Info...\n[    2.242217] [ FTS ] FW VER = 0096\n[    2.242223] [ FTS ] SVN REV = 3133\n[    2.242229] [ FTS ] CONFIG VER = 0325\n[    2.242235] [ FTS ] CONFIG PROJECT ID = 0055\n[    2.242240] [ FTS ] CX VER = 0002\n[    2.242246] [ FTS ] CX PROJECT ID = 0055\n[    2.242252] [ FTS ] AFE VER: CFG = 03 - CX = 03 - PANEL = 03\n[    2.242258] [ FTS ] Protocol = 00\n[    2.242268] [ FTS ] Die Info =  36 37 00 4D 50 50 35 42 0A 00 00 00 19 D9 00 00 \n[    2.242276] [ FTS ] Release Info =  03 25 00 00 00 00 00 00 \n[    2.242282] [ FTS ] MP FLAG = 5A\n[    2.242287] [ FTS ] SS Detect Scan Select = 0\n[    2.242292] [ FTS ] Screen Resolution = 2339 x 1079\n[    2.242298] [ FTS ] TX Len = 14\n[    2.242304] [ FTS ] RX Len = 30\n[    2.242309] [ FTS ] Key Len = 0\n[    2.242314] [ FTS ] Force Len = 0\n[    2.242319] [ FTS ] Production Timestamp = 5F4E7DA0\n[    2.242325] [ FTS ] Parsed 216 bytes!\n[    2.242330] [ FTS ] System Info Read DONE!\n[    2.242397] [ FTS ] SET Auto Fw Update:\n[    2.242407] [ FTS ] SET Device File Nodes:\n[    2.242449] [ FTS ] fts_proc_init: proc entry CREATED!\n[    2.242459] [ FTS ] Probe Finished!\n[    2.242690] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    2.242911] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    2.243120] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    2.243324] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    2.243530] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    2.244101] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm6150@0:qcom,pm6150_rtc: setting system clock to 1970-02-04 08:45:21 UTC (2969121)\n[    2.244710] CAM_ERR: CAM-CCI: cam_cci_assign_fops: 499 Invalid dev node:0000000000000000 offset: 0\n[    2.245643] lpm_levels: register_cluster_lpm_stats()\n[    2.245754] lpm_levels: register_cluster_lpm_stats()\n[    2.246868] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    2.247087] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    2.247297] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    2.247501] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    2.247710] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    2.250341] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    2.250561] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    2.250771] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    2.250976] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    2.251183] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    2.253723] rmnet_ipa3 started initialization\n[    2.254022] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    2.254270] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    2.254488] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    2.254700] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    2.254914] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    2.256232] RNDIS_IPA module is loaded.\n[    2.260688] msm_bus_late_init: Remove handoff bw requests\n[    2.261591] dbu1: disabling\n[    2.263096] camera_ldo: disabling\n[    2.263132] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    2.263218] ALSA device list:\n[    2.263225]   No soundcards found.\n[    2.263273] Warning: unable to open an initial console.\n[    2.265544] Freeing unused kernel memory: 7680K\n[    2.340930] sm7150_bms: CHARGE_DISABLE : disable=0 -> val=1 (0)\n[    2.341000] google,charger soc:google,charger: No cooling device for google,wlc-thermal-mitigation rc = 0\n[    2.341028] google_charger: dead battery cleared uptime=2\n[    2.341050] google_charger: google_charger_init_work done\n[    2.341080] google_charger: MSC_CHG battery present\n[    2.341107] google_charger: MSC_CHG no power source, disabling charging\n[    2.341146] sm7150_bms: CHARGE_DISABLE : disable=1 -> val=0 (0)\n[    2.341163] sm7150_bms: setting unsupported property: 143\n[    2.341181] google_battery: MSC_DIN chg_state=0 f=0x0 chg_s=Unknown chg_t=Unknown vchg=0 icl=0\n[    2.341233] google_battery: MSC_STAT disconnect: elap=0 ssoc=65535->100 v=65535->4394 c=0->3076 hdl=0 hrs=0 hti=-1\n[    2.341303] google_battery: RES: req:0, sample:0[0], filt_cnt:0, res_avg:0\n[    2.341353] google_battery: MSC_VOTE fv_uv=-1 cc_max=0 update_interval=-1\n[    2.341475] sm7150_bms: BATTERY_CHARGER_STATUS_2 = 0x08\n[    2.341498] sm7150_bms: BATTERY_CHARGER_STATUS_7 = 0x00\n[    3.121144] power_supply main: driver failed to report `flash_trigger' property: -1\n[    3.439800] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    3.439982] cpu1 \n[    3.440144] cpu6 \n[    3.440197] \n               Offline CPUs: \n[    3.443787] cpu1 \n[    3.446485] IRQ 6: no longer affine to CPU1\n[    3.446780] CPU1: shutdown\n[    3.448261] cpu2 \n[    3.449437] CPU2: shutdown\n[    3.449950] cpu3 \n[    3.450041] CPU4: update max cpu_capacity 492\n[    3.451973] CPU3: shutdown\n[    3.452943] cpu4 \n[    3.455196] CPU4: shutdown\n[    3.456174] cpu5 \n[    3.457879] CPU5: shutdown\n[    3.458645] cpu6 \n[    3.459735] IRQ 6: no longer affine to CPU6\n[    3.460079] CPU7: update max cpu_capacity 1024\n[    3.460104] CPU6: shutdown\n[    3.460805] cpu7 \n[    3.461788] CPU7: shutdown\n\n[    3.470198] CPU0: update max cpu_capacity 492\n[    4.071128] QCOM-STEPCHG: get_step_chg_jeita_setting_from_profile: battery type=8230020501\n[    4.071201] of_batterydata_get_best_profile: 8230020501 found\n[    4.071252] QCOM-STEPCHG: read_range_data_from_node: Count qcom,step-chg-ranges failed, rc=-22\n[    4.071286] QCOM-STEPCHG: read_range_data_from_node: Count qcom,jeita-fcc-ranges failed, rc=-22\n[    4.071317] QCOM-STEPCHG: read_range_data_from_node: Count qcom,jeita-fv-ranges failed, rc=-22\n[    7.201303] [K][PM] power PM Statistic start (02-04 08:45:26)\n[    7.201374] [K] wakeup_source: 'usbpd0'\n[    7.201567] rpmh_master_stat: APSS(21,sleep:3s) \n[    7.201622] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[    7.201658] [K][PM] power PM Statistic done\n[    8.475768] Sampling power every 250 ms\n               Baseline power usage: \n[   12.241342] [K][PM] power PM Statistic start (02-04 08:45:31)\n[   12.241439] [K] wakeup_source: 'usbpd0'\n[   12.241613] rpmh_master_stat: APSS(48,sleep:8s) \n[   12.241666] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[   12.241701] [K][PM] power PM Statistic done\n[   13.681381] [ FTS ] fts_read_panel_extinfo: Timed out after waiting 10 seconds.\n[   13.681434] [ FTS ] fts_fw_update: Failed or timed out during read of extinfo. ret=-16\n[   13.941364] [ FTS ] fts_read_panel_extinfo: Timed out after waiting 0 seconds.\n[   13.941416] [ FTS ] fts_identify_panel: fts_read_panel_extinfo failed with ret=-16.\n[   13.941451] [ FTS ] firmware name = ftm5_fw.ftb\n[   13.941479] [ FTS ] limits name = stm_fts_production_limits.csv\n[   13.941507] [ FTS ] Sensor inverted = 0\n[   13.941533] [ FTS ] fts_fw_update: Encountered error while identifying display panel. ret=-16\n[   13.942424] [ FTS ] fts_mode_handler: Sense ON!\n[   13.943591] [ FTS ] heatmap_enable\n[   13.944126] [ FTS ] fts_status_event_handler: Sense on Force cal = 01 00 00 00 00 01\n[   13.944355] [ FTS ] Fw Update Finished! error = 00000000\n[   17.281413] [K][PM] power PM Statistic start (02-04 08:45:36)\n[   17.281478] [K] wakeup_source: \n[   17.281652] rpmh_master_stat: APSS(65,sleep:13s) \n[   17.281705] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[   17.281735] [K][PM] power PM Statistic done\n[   22.321420] [K][PM] power PM Statistic start (02-04 08:45:41)\n[   22.321494] [K] wakeup_source: \n[   22.321685] rpmh_master_stat: APSS(72,sleep:18s) \n[   22.321741] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[   22.321771] [K][PM] power PM Statistic done\n[   27.361400] [K][PM] power PM Statistic start (02-04 08:45:46)\n[   27.361464] [K] wakeup_source: \n[   27.361636] rpmh_master_stat: APSS(85,sleep:23s) \n[   27.361689] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[   27.361719] [K][PM] power PM Statistic done\n[   32.401402] [K][PM] power PM Statistic start (02-04 08:45:51)\n[   32.401468] [K] wakeup_source: \n[   32.401640] rpmh_master_stat: APSS(104,sleep:28s) \n[   32.401693] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[   32.401723] [K][PM] power PM Statistic done\n[   32.489964] sm7150_bms: BATTERY_CHARGER_STATUS_2 = 0x08\n[   32.490095] sm7150_bms: BATTERY_CHARGER_STATUS_7 = 0x00\n[   37.441391] [K][PM] power PM Statistic start (02-04 08:45:56)\n[   37.441456] [K] wakeup_source: \n[   37.441629] rpmh_master_stat: APSS(122,sleep:32s) \n[   37.441682] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[   37.441713] [K][PM] power PM Statistic done\n[   42.481404] [K][PM] power PM Statistic start (02-04 08:46:01)\n[   42.481470] [K] wakeup_source: \n[   42.481643] rpmh_master_stat: APSS(142,sleep:37s) \n[   42.481696] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[   42.481727] [K][PM] power PM Statistic done\n[   47.521391] [K][PM] power PM Statistic start (02-04 08:46:06)\n[   47.521457] [K] wakeup_source: \n[   47.521630] rpmh_master_stat: APSS(157,sleep:42s) \n[   47.521683] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[   47.521714] [K][PM] power PM Statistic done\n[   52.561405] [K][PM] power PM Statistic start (02-04 08:46:11)\n[   52.561470] [K] wakeup_source: \n[   52.561643] rpmh_master_stat: APSS(176,sleep:47s) \n[   52.561697] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[   52.561728] [K][PM] power PM Statistic done\n[   57.601398] [K][PM] power PM Statistic start (02-04 08:46:16)\n[   57.601464] [K] wakeup_source: \n[   57.601638] rpmh_master_stat: APSS(193,sleep:52s) \n[   57.601691] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[   57.601721] [K][PM] power PM Statistic done\n[   62.641398] [K][PM] power PM Statistic start (02-04 08:46:21)\n[   62.641464] [K] wakeup_source: \n[   62.641638] rpmh_master_stat: APSS(211,sleep:56s) \n[   62.641691] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[   62.641722] [K][PM] power PM Statistic done\n[   64.481370] firmware drv2624.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   64.481639] drv2624 2-005a: drv2624_firmware_load, ERROR!! firmware not found\n[   67.681489] [K][PM] power PM Statistic start (02-04 08:46:26)\n[   67.681555] [K] wakeup_source: \n[   67.681728] rpmh_master_stat: APSS(228,sleep:61s) \n[   67.681780] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[   67.681811] [K][PM] power PM Statistic done\n[   72.721390] [K][PM] power PM Statistic start (02-04 08:46:31)\n[   72.721456] [K] wakeup_source: \n[   72.721628] rpmh_master_stat: APSS(243,sleep:66s) \n[   72.721681] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[   72.721711] [K][PM] power PM Statistic done\n[   77.761439] [K][PM] power PM Statistic start (02-04 08:46:37)\n[   77.761505] [K] wakeup_source: \n[   77.761678] rpmh_master_stat: APSS(260,sleep:71s) \n[   77.761731] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[   77.761761] [K][PM] power PM Statistic done\n[   82.801398] [K][PM] power PM Statistic start (02-04 08:46:42)\n[   82.801464] [K] wakeup_source: \n[   82.801636] rpmh_master_stat: APSS(277,sleep:76s) \n[   82.801690] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[   82.801720] [K][PM] power PM Statistic done\n[   83.981459] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000\n[   83.981646] CPU1: Booted secondary processor [51df805e]\n[   83.990166] CPU0: update max cpu_capacity 492\n[   84.991734] 628 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 576 768 1017 1248 1324 1497 1612 1708 1804\n               \n                300: \n[   87.841422] [K][PM] power PM Statistic start (02-04 08:46:47)\n[   87.841574] [K] wakeup_source: \n[   87.841747] rpmh_master_stat: APSS(288,sleep:81s) \n[   87.841799] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[   87.841830] [K][PM] power PM Statistic done\n[   92.881451] [K][PM] power PM Statistic start (02-04 08:46:52)\n[   92.881525] [K] wakeup_source: \n[   92.881714] rpmh_master_stat: APSS(318,sleep:85s) \n[   92.881767] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[   92.881800] [K][PM] power PM Statistic done\n[   97.920330] [K][PM] power PM Statistic start (02-04 08:46:57)\n[   97.920394] [K] wakeup_source: \n[   97.920568] rpmh_master_stat: APSS(322,sleep:85s) \n[   97.920621] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[   97.920650] [K][PM] power PM Statistic done\n[  102.960323] [K][PM] power PM Statistic start (02-04 08:47:02)\n[  102.960376] [K] wakeup_source: \n[  102.960543] rpmh_master_stat: APSS(322,sleep:85s) \n[  102.960594] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  102.960624] [K][PM] power PM Statistic done\n[  108.000329] [K][PM] power PM Statistic start (02-04 08:47:07)\n[  108.000383] [K] wakeup_source: \n[  108.000564] rpmh_master_stat: APSS(322,sleep:85s) \n[  108.000617] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  108.000647] [K][PM] power PM Statistic done\n[  113.040314] [K][PM] power PM Statistic start (02-04 08:47:12)\n[  113.040364] [K] wakeup_source: \n[  113.040530] rpmh_master_stat: APSS(322,sleep:85s) \n[  113.040581] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  113.040611] [K][PM] power PM Statistic done\n[  118.080323] [K][PM] power PM Statistic start (02-04 08:47:17)\n[  118.080373] [K] wakeup_source: \n[  118.080540] rpmh_master_stat: APSS(322,sleep:85s) \n[  118.080591] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  118.080621] [K][PM] power PM Statistic done\n[  123.120330] [K][PM] power PM Statistic start (02-04 08:47:22)\n[  123.120382] [K] wakeup_source: \n[  123.120563] rpmh_master_stat: APSS(322,sleep:85s) \n[  123.120616] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  123.120647] [K][PM] power PM Statistic done\n[  128.160323] [K][PM] power PM Statistic start (02-04 08:47:27)\n[  128.160373] [K] wakeup_source: \n[  128.160539] rpmh_master_stat: APSS(322,sleep:85s) \n[  128.160590] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  128.160620] [K][PM] power PM Statistic done\n[  133.200320] [K][PM] power PM Statistic start (02-04 08:47:32)\n[  133.200369] [K] wakeup_source: \n[  133.200535] rpmh_master_stat: APSS(322,sleep:85s) \n[  133.200586] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  133.200615] [K][PM] power PM Statistic done\n[  138.240314] [K][PM] power PM Statistic start (02-04 08:47:37)\n[  138.240363] [K] wakeup_source: \n[  138.240529] rpmh_master_stat: APSS(322,sleep:85s) \n[  138.240580] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  138.240609] [K][PM] power PM Statistic done\n[  143.280323] [K][PM] power PM Statistic start (02-04 08:47:42)\n[  143.280375] [K] wakeup_source: \n[  143.280541] rpmh_master_stat: APSS(322,sleep:85s) \n[  143.280593] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  143.280622] [K][PM] power PM Statistic done\n[  148.320322] [K][PM] power PM Statistic start (02-04 08:47:47)\n[  148.320373] [K] wakeup_source: \n[  148.320539] rpmh_master_stat: APSS(322,sleep:85s) \n[  148.320590] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  148.320620] [K][PM] power PM Statistic done\n[  153.360322] [K][PM] power PM Statistic start (02-04 08:47:52)\n[  153.360369] [K] wakeup_source: \n[  153.360536] rpmh_master_stat: APSS(322,sleep:85s) \n[  153.360587] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  153.360617] [K][PM] power PM Statistic done\n[  158.400319] [K][PM] power PM Statistic start (02-04 08:47:57)\n[  158.400367] [K] wakeup_source: \n[  158.400532] rpmh_master_stat: APSS(322,sleep:85s) \n[  158.400583] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  158.400613] [K][PM] power PM Statistic done\n[  163.440314] [K][PM] power PM Statistic start (02-04 08:48:02)\n[  163.440363] [K] wakeup_source: \n[  163.440529] rpmh_master_stat: APSS(322,sleep:85s) \n[  163.440579] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  163.440609] [K][PM] power PM Statistic done\n[  168.480324] [K][PM] power PM Statistic start (02-04 08:48:07)\n[  168.480372] [K] wakeup_source: \n[  168.480538] rpmh_master_stat: APSS(322,sleep:85s) \n[  168.480590] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  168.480620] [K][PM] power PM Statistic done\n[  173.520325] [K][PM] power PM Statistic start (02-04 08:48:12)\n[  173.520375] [K] wakeup_source: \n[  173.520540] rpmh_master_stat: APSS(322,sleep:85s) \n[  173.520591] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  173.520621] [K][PM] power PM Statistic done\n[  178.560325] [K][PM] power PM Statistic start (02-04 08:48:17)\n[  178.560376] [K] wakeup_source: \n[  178.560556] rpmh_master_stat: APSS(322,sleep:85s) \n[  178.560608] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  178.560639] [K][PM] power PM Statistic done\n[  183.600319] [K][PM] power PM Statistic start (02-04 08:48:22)\n[  183.600367] [K] wakeup_source: \n[  183.600532] rpmh_master_stat: APSS(322,sleep:85s) \n[  183.600583] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  183.600613] [K][PM] power PM Statistic done\n[  188.640312] [K][PM] power PM Statistic start (02-04 08:48:27)\n[  188.640360] [K] wakeup_source: \n[  188.640525] rpmh_master_stat: APSS(322,sleep:85s) \n[  188.640576] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  188.640605] [K][PM] power PM Statistic done\n[  193.680375] [K][PM] power PM Statistic start (02-04 08:48:32)\n[  193.680426] [K] wakeup_source: \n[  193.680606] rpmh_master_stat: APSS(322,sleep:85s) \n[  193.680658] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  193.680688] [K][PM] power PM Statistic done\n[  198.720345] [K][PM] power PM Statistic start (02-04 08:48:37)\n[  198.720392] [K] wakeup_source: \n[  198.720556] rpmh_master_stat: APSS(322,sleep:85s) \n[  198.720607] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  198.720636] [K][PM] power PM Statistic done\n[  203.760359] [K][PM] power PM Statistic start (02-04 08:48:43)\n[  203.760408] [K] wakeup_source: \n[  203.760572] rpmh_master_stat: APSS(322,sleep:85s) \n[  203.760623] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  203.760652] [K][PM] power PM Statistic done\n[  208.800367] [K][PM] power PM Statistic start (02-04 08:48:48)\n[  208.800420] [K] wakeup_source: \n[  208.800597] rpmh_master_stat: APSS(322,sleep:85s) \n[  208.800649] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  208.800678] [K][PM] power PM Statistic done\n[  213.840358] [K][PM] power PM Statistic start (02-04 08:48:53)\n[  213.840406] [K] wakeup_source: \n[  213.840571] rpmh_master_stat: APSS(322,sleep:85s) \n[  213.840621] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  213.840650] [K][PM] power PM Statistic done\n[  218.880387] [K][PM] power PM Statistic start (02-04 08:48:58)\n[  218.880435] [K] wakeup_source: \n[  218.880599] rpmh_master_stat: APSS(322,sleep:85s) \n[  218.880650] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  218.880679] [K][PM] power PM Statistic done\n[  223.920155] [K][PM] power PM Statistic start (02-04 08:49:03)\n[  223.920205] [K] wakeup_source: \n[  223.920384] rpmh_master_stat: APSS(322,sleep:85s) \n[  223.920437] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  223.920467] [K][PM] power PM Statistic done\n[  228.960321] [K][PM] power PM Statistic start (02-04 08:49:08)\n[  228.960371] [K] wakeup_source: \n[  228.960536] rpmh_master_stat: APSS(322,sleep:85s) \n[  228.960587] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  228.960616] [K][PM] power PM Statistic done\n[  234.000319] [K][PM] power PM Statistic start (02-04 08:49:13)\n[  234.000368] [K] wakeup_source: \n[  234.000534] rpmh_master_stat: APSS(322,sleep:85s) \n[  234.000584] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  234.000613] [K][PM] power PM Statistic done\n[  239.040314] [K][PM] power PM Statistic start (02-04 08:49:18)\n[  239.040362] [K] wakeup_source: \n[  239.040527] rpmh_master_stat: APSS(322,sleep:85s) \n[  239.040578] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  239.040608] [K][PM] power PM Statistic done\n[  244.080324] [K][PM] power PM Statistic start (02-04 08:49:23)\n[  244.080374] [K] wakeup_source: \n[  244.080540] rpmh_master_stat: APSS(322,sleep:85s) \n[  244.080591] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  244.080621] [K][PM] power PM Statistic done\n[  249.120324] [K][PM] power PM Statistic start (02-04 08:49:28)\n[  249.120372] [K] wakeup_source: \n[  249.120537] rpmh_master_stat: APSS(322,sleep:85s) \n[  249.120589] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  249.120619] [K][PM] power PM Statistic done\n[  254.160323] [K][PM] power PM Statistic start (02-04 08:49:33)\n[  254.160371] [K] wakeup_source: \n[  254.160539] rpmh_master_stat: APSS(322,sleep:85s) \n[  254.160590] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  254.160619] [K][PM] power PM Statistic done\n[  259.200320] [K][PM] power PM Statistic start (02-04 08:49:38)\n[  259.200367] [K] wakeup_source: \n[  259.200532] rpmh_master_stat: APSS(322,sleep:85s) \n[  259.200584] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  259.200613] [K][PM] power PM Statistic done\n[  264.240313] [K][PM] power PM Statistic start (02-04 08:49:43)\n[  264.240362] [K] wakeup_source: \n[  264.240528] rpmh_master_stat: APSS(322,sleep:85s) \n[  264.240579] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  264.240609] [K][PM] power PM Statistic done\n[  269.280388] [K][PM] power PM Statistic start (02-04 08:49:48)\n[  269.280437] [K] wakeup_source: \n[  269.280603] rpmh_master_stat: APSS(322,sleep:85s) \n[  269.280654] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  269.280683] [K][PM] power PM Statistic done\n[  274.320322] [K][PM] power PM Statistic start (02-04 08:49:53)\n[  274.320370] [K] wakeup_source: \n[  274.320537] rpmh_master_stat: APSS(322,sleep:85s) \n[  274.320588] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  274.320618] [K][PM] power PM Statistic done\n[  279.360327] [K][PM] power PM Statistic start (02-04 08:49:58)\n[  279.360375] [K] wakeup_source: \n[  279.360542] rpmh_master_stat: APSS(322,sleep:85s) \n[  279.360593] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  279.360623] [K][PM] power PM Statistic done\n[  284.400320] [K][PM] power PM Statistic start (02-04 08:50:03)\n[  284.400368] [K] wakeup_source: \n[  284.400535] rpmh_master_stat: APSS(322,sleep:85s) \n[  284.400585] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  284.400615] [K][PM] power PM Statistic done\n[  289.440332] [K][PM] power PM Statistic start (02-04 08:50:08)\n[  289.440380] [K] wakeup_source: \n[  289.440546] rpmh_master_stat: APSS(322,sleep:85s) \n[  289.440596] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  289.440625] [K][PM] power PM Statistic done\n[  294.480324] [K][PM] power PM Statistic start (02-04 08:50:13)\n[  294.480373] [K] wakeup_source: \n[  294.480540] rpmh_master_stat: APSS(322,sleep:85s) \n[  294.480591] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  294.480621] [K][PM] power PM Statistic done\n[  299.520344] [K][PM] power PM Statistic start (02-04 08:50:18)\n[  299.520393] [K] wakeup_source: \n[  299.520559] rpmh_master_stat: APSS(322,sleep:85s) \n[  299.520610] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  299.520639] [K][PM] power PM Statistic done\n[  304.560323] [K][PM] power PM Statistic start (02-04 08:50:23)\n[  304.560371] [K] wakeup_source: \n[  304.560538] rpmh_master_stat: APSS(322,sleep:85s) \n[  304.560590] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  304.560620] [K][PM] power PM Statistic done\n[  305.120345] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120407] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121503] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121552] audio_notifer_reg_service: service SSR_ADSP is in use\n[  305.121633] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121662] ADSPRPC: Audio PD restart notifier locator down\n[  305.121733] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121761] ADSPRPC: Audio PD restart notifier locator down\n[  305.121809] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  309.600346] [K][PM] power PM Statistic start (02-04 08:50:28)\n[  309.600400] [K] wakeup_source: \n[  309.600584] rpmh_master_stat: APSS(322,sleep:85s) \n[  309.600636] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  309.600665] [K][PM] power PM Statistic done\n[  314.640313] [K][PM] power PM Statistic start (02-04 08:50:33)\n[  314.640361] [K] wakeup_source: \n[  314.640527] rpmh_master_stat: APSS(322,sleep:85s) \n[  314.640579] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  314.640608] [K][PM] power PM Statistic done\n[  319.680323] [K][PM] power PM Statistic start (02-04 08:50:38)\n[  319.680372] [K] wakeup_source: \n[  319.680540] rpmh_master_stat: APSS(322,sleep:85s) \n[  319.680591] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  319.680621] [K][PM] power PM Statistic done\n[  324.720331] [K][PM] power PM Statistic start (02-04 08:50:43)\n[  324.720383] [K] wakeup_source: \n[  324.720562] rpmh_master_stat: APSS(322,sleep:85s) \n[  324.720615] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  324.720645] [K][PM] power PM Statistic done\n[  329.760323] [K][PM] power PM Statistic start (02-04 08:50:49)\n[  329.760371] [K] wakeup_source: \n[  329.760538] rpmh_master_stat: APSS(322,sleep:85s) \n[  329.760589] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  329.760619] [K][PM] power PM Statistic done\n[  334.800320] [K][PM] power PM Statistic start (02-04 08:50:54)\n[  334.800370] [K] wakeup_source: \n[  334.800538] rpmh_master_stat: APSS(322,sleep:85s) \n[  334.800589] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  334.800618] [K][PM] power PM Statistic done\n[  339.840321] [K][PM] power PM Statistic start (02-04 08:50:59)\n[  339.840373] [K] wakeup_source: \n[  339.840553] rpmh_master_stat: APSS(322,sleep:85s) \n[  339.840605] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  339.840635] [K][PM] power PM Statistic done\n[  344.880396] [K][PM] power PM Statistic start (02-04 08:51:04)\n[  344.880445] [K] wakeup_source: \n[  344.880610] rpmh_master_stat: APSS(322,sleep:85s) \n[  344.880661] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  344.880689] [K][PM] power PM Statistic done\n[  349.920351] [K][PM] power PM Statistic start (02-04 08:51:09)\n[  349.920399] [K] wakeup_source: \n[  349.920563] rpmh_master_stat: APSS(322,sleep:85s) \n[  349.920614] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  349.920644] [K][PM] power PM Statistic done\n[  354.960325] [K][PM] power PM Statistic start (02-04 08:51:14)\n[  354.960379] [K] wakeup_source: \n[  354.960559] rpmh_master_stat: APSS(322,sleep:85s) \n[  354.960613] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  354.960643] [K][PM] power PM Statistic done\n[  360.000318] [K][PM] power PM Statistic start (02-04 08:51:19)\n[  360.000367] [K] wakeup_source: \n[  360.000533] rpmh_master_stat: APSS(322,sleep:85s) \n[  360.000584] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  360.000613] [K][PM] power PM Statistic done\n[  364.067671]  1108     3.7 C/MHz     91 mW   24.6 J   12.2 I/mJ   270.7 s\n                576: \n[  365.041235] [K][PM] power PM Statistic start (02-04 08:51:24)\n[  365.041293] [K] wakeup_source: \n[  365.041409] rpmh_master_stat: APSS(326,sleep:86s) \n[  365.041441] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  365.041459] [K][PM] power PM Statistic done\n[  370.081245] [K][PM] power PM Statistic start (02-04 08:51:29)\n[  370.081294] [K] wakeup_source: \n[  370.081424] rpmh_master_stat: APSS(349,sleep:91s) \n[  370.081459] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  370.081477] [K][PM] power PM Statistic done\n[  375.120235] [K][PM] power PM Statistic start (02-04 08:51:34)\n[  375.120278] [K] wakeup_source: \n[  375.120398] rpmh_master_stat: APSS(362,sleep:93s) \n[  375.120430] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  375.120446] [K][PM] power PM Statistic done\n[  380.160228] [K][PM] power PM Statistic start (02-04 08:51:39)\n[  380.160259] [K] wakeup_source: \n[  380.160373] rpmh_master_stat: APSS(362,sleep:93s) \n[  380.160404] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  380.160421] [K][PM] power PM Statistic done\n[  385.200226] [K][PM] power PM Statistic start (02-04 08:51:44)\n[  385.200257] [K] wakeup_source: \n[  385.200368] rpmh_master_stat: APSS(362,sleep:93s) \n[  385.200399] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  385.200415] [K][PM] power PM Statistic done\n[  390.240223] [K][PM] power PM Statistic start (02-04 08:51:49)\n[  390.240253] [K] wakeup_source: \n[  390.240365] rpmh_master_stat: APSS(362,sleep:93s) \n[  390.240397] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  390.240413] [K][PM] power PM Statistic done\n[  395.280227] [K][PM] power PM Statistic start (02-04 08:51:54)\n[  395.280257] [K] wakeup_source: \n[  395.280370] rpmh_master_stat: APSS(362,sleep:93s) \n[  395.280401] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  395.280417] [K][PM] power PM Statistic done\n[  400.320234] [K][PM] power PM Statistic start (02-04 08:51:59)\n[  400.320267] [K] wakeup_source: \n[  400.320390] rpmh_master_stat: APSS(362,sleep:93s) \n[  400.320422] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  400.320439] [K][PM] power PM Statistic done\n[  405.360227] [K][PM] power PM Statistic start (02-04 08:52:04)\n[  405.360257] [K] wakeup_source: \n[  405.360370] rpmh_master_stat: APSS(362,sleep:93s) \n[  405.360401] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  405.360417] [K][PM] power PM Statistic done\n[  410.400227] [K][PM] power PM Statistic start (02-04 08:52:09)\n[  410.400256] [K] wakeup_source: \n[  410.400367] rpmh_master_stat: APSS(362,sleep:93s) \n[  410.400399] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  410.400415] [K][PM] power PM Statistic done\n[  415.440230] [K][PM] power PM Statistic start (02-04 08:52:14)\n[  415.440264] [K] wakeup_source: \n[  415.440386] rpmh_master_stat: APSS(362,sleep:93s) \n[  415.440419] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  415.440436] [K][PM] power PM Statistic done\n[  420.480228] [K][PM] power PM Statistic start (02-04 08:52:19)\n[  420.480257] [K] wakeup_source: \n[  420.480370] rpmh_master_stat: APSS(362,sleep:93s) \n[  420.480400] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  420.480417] [K][PM] power PM Statistic done\n[  425.520227] [K][PM] power PM Statistic start (02-04 08:52:24)\n[  425.520256] [K] wakeup_source: \n[  425.520370] rpmh_master_stat: APSS(362,sleep:93s) \n[  425.520401] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  425.520417] [K][PM] power PM Statistic done\n[  430.560229] [K][PM] power PM Statistic start (02-04 08:52:29)\n[  430.560258] [K] wakeup_source: \n[  430.560371] rpmh_master_stat: APSS(362,sleep:93s) \n[  430.560401] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  430.560418] [K][PM] power PM Statistic done\n[  435.600226] [K][PM] power PM Statistic start (02-04 08:52:34)\n[  435.600256] [K] wakeup_source: \n[  435.600367] rpmh_master_stat: APSS(362,sleep:93s) \n[  435.600398] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  435.600414] [K][PM] power PM Statistic done\n[  440.640250] [K][PM] power PM Statistic start (02-04 08:52:39)\n[  440.640280] [K] wakeup_source: \n[  440.640392] rpmh_master_stat: APSS(362,sleep:93s) \n[  440.640423] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  440.640438] [K][PM] power PM Statistic done\n[  445.680256] [K][PM] power PM Statistic start (02-04 08:52:44)\n[  445.680285] [K] wakeup_source: \n[  445.680397] rpmh_master_stat: APSS(362,sleep:93s) \n[  445.680427] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  445.680443] [K][PM] power PM Statistic done\n[  450.720241] [K][PM] power PM Statistic start (02-04 08:52:49)\n[  450.720270] [K] wakeup_source: \n[  450.720381] rpmh_master_stat: APSS(362,sleep:93s) \n[  450.720412] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  450.720428] [K][PM] power PM Statistic done\n[  455.760222] [K][PM] power PM Statistic start (02-04 08:52:55)\n[  455.760252] [K] wakeup_source: \n[  455.760365] rpmh_master_stat: APSS(362,sleep:93s) \n[  455.760396] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  455.760412] [K][PM] power PM Statistic done\n[  460.800225] [K][PM] power PM Statistic start (02-04 08:53:00)\n[  460.800254] [K] wakeup_source: \n[  460.800366] rpmh_master_stat: APSS(362,sleep:93s) \n[  460.800397] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  460.800414] [K][PM] power PM Statistic done\n[  465.840228] [K][PM] power PM Statistic start (02-04 08:53:05)\n[  465.840262] [K] wakeup_source: \n[  465.840385] rpmh_master_stat: APSS(362,sleep:93s) \n[  465.840417] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  465.840434] [K][PM] power PM Statistic done\n[  470.880317] [K][PM] power PM Statistic start (02-04 08:53:10)\n[  470.880345] [K] wakeup_source: \n[  470.880455] rpmh_master_stat: APSS(362,sleep:93s) \n[  470.880486] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  470.880501] [K][PM] power PM Statistic done\n[  475.920228] [K][PM] power PM Statistic start (02-04 08:53:15)\n[  475.920257] [K] wakeup_source: \n[  475.920369] rpmh_master_stat: APSS(362,sleep:93s) \n[  475.920400] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  475.920416] [K][PM] power PM Statistic done\n[  480.960234] [K][PM] power PM Statistic start (02-04 08:53:20)\n[  480.960266] [K] wakeup_source: \n[  480.960389] rpmh_master_stat: APSS(362,sleep:93s) \n[  480.960422] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  480.960439] [K][PM] power PM Statistic done\n[  486.000227] [K][PM] power PM Statistic start (02-04 08:53:25)\n[  486.000255] [K] wakeup_source: \n[  486.000368] rpmh_master_stat: APSS(362,sleep:93s) \n[  486.000398] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  486.000414] [K][PM] power PM Statistic done\n[  491.040224] [K][PM] power PM Statistic start (02-04 08:53:30)\n[  491.040254] [K] wakeup_source: \n[  491.040366] rpmh_master_stat: APSS(362,sleep:93s) \n[  491.040396] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  491.040413] [K][PM] power PM Statistic done\n[  496.080228] [K][PM] power PM Statistic start (02-04 08:53:35)\n[  496.080257] [K] wakeup_source: \n[  496.080368] rpmh_master_stat: APSS(362,sleep:93s) \n[  496.080399] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  496.080415] [K][PM] power PM Statistic done\n[  501.120228] [K][PM] power PM Statistic start (02-04 08:53:40)\n[  501.120257] [K] wakeup_source: \n[  501.120369] rpmh_master_stat: APSS(362,sleep:93s) \n[  501.120400] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  501.120416] [K][PM] power PM Statistic done\n[  506.160229] [K][PM] power PM Statistic start (02-04 08:53:45)\n[  506.160258] [K] wakeup_source: \n[  506.160369] rpmh_master_stat: APSS(362,sleep:93s) \n[  506.160399] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  506.160415] [K][PM] power PM Statistic done\n[  511.200227] [K][PM] power PM Statistic start (02-04 08:53:50)\n[  511.200256] [K] wakeup_source: \n[  511.200367] rpmh_master_stat: APSS(362,sleep:93s) \n[  511.200397] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  511.200414] [K][PM] power PM Statistic done\n[  513.071142]  2133     3.7 C/MHz    109 mW   15.3 J   19.6 I/mJ   140.7 s\n                768: \n[  516.241197] [K][PM] power PM Statistic start (02-04 08:53:55)\n[  516.241252] [K] wakeup_source: \n[  516.241367] rpmh_master_stat: APSS(372,sleep:96s) \n[  516.241398] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  516.241413] [K][PM] power PM Statistic done\n[  521.280266] [K][PM] power PM Statistic start (02-04 08:54:00)\n[  521.280304] [K] wakeup_source: \n[  521.280410] rpmh_master_stat: APSS(401,sleep:101s) \n[  521.280437] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  521.280449] [K][PM] power PM Statistic done\n[  526.320219] [K][PM] power PM Statistic start (02-04 08:54:05)\n[  526.320249] [K] wakeup_source: \n[  526.320352] rpmh_master_stat: APSS(401,sleep:101s) \n[  526.320379] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  526.320391] [K][PM] power PM Statistic done\n[  531.360203] [K][PM] power PM Statistic start (02-04 08:54:10)\n[  531.360228] [K] wakeup_source: \n[  531.360328] rpmh_master_stat: APSS(401,sleep:101s) \n[  531.360353] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  531.360366] [K][PM] power PM Statistic done\n[  536.400202] [K][PM] power PM Statistic start (02-04 08:54:15)\n[  536.400228] [K] wakeup_source: \n[  536.400330] rpmh_master_stat: APSS(401,sleep:101s) \n[  536.400356] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  536.400368] [K][PM] power PM Statistic done\n[  541.440199] [K][PM] power PM Statistic start (02-04 08:54:20)\n[  541.440224] [K] wakeup_source: \n[  541.440324] rpmh_master_stat: APSS(401,sleep:101s) \n[  541.440349] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  541.440362] [K][PM] power PM Statistic done\n[  546.480203] [K][PM] power PM Statistic start (02-04 08:54:25)\n[  546.480227] [K] wakeup_source: \n[  546.480328] rpmh_master_stat: APSS(401,sleep:101s) \n[  546.480353] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  546.480365] [K][PM] power PM Statistic done\n[  551.520203] [K][PM] power PM Statistic start (02-04 08:54:30)\n[  551.520228] [K] wakeup_source: \n[  551.520328] rpmh_master_stat: APSS(401,sleep:101s) \n[  551.520352] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  551.520365] [K][PM] power PM Statistic done\n[  556.560202] [K][PM] power PM Statistic start (02-04 08:54:35)\n[  556.560227] [K] wakeup_source: \n[  556.560327] rpmh_master_stat: APSS(401,sleep:101s) \n[  556.560352] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  556.560365] [K][PM] power PM Statistic done\n[  561.600202] [K][PM] power PM Statistic start (02-04 08:54:40)\n[  561.600225] [K] wakeup_source: \n[  561.600324] rpmh_master_stat: APSS(401,sleep:101s) \n[  561.600349] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  561.600362] [K][PM] power PM Statistic done\n[  566.640200] [K][PM] power PM Statistic start (02-04 08:54:45)\n[  566.640225] [K] wakeup_source: \n[  566.640325] rpmh_master_stat: APSS(401,sleep:101s) \n[  566.640350] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  566.640363] [K][PM] power PM Statistic done\n[  571.680208] [K][PM] power PM Statistic start (02-04 08:54:50)\n[  571.680232] [K] wakeup_source: \n[  571.680331] rpmh_master_stat: APSS(401,sleep:101s) \n[  571.680356] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  571.680369] [K][PM] power PM Statistic done\n[  576.720203] [K][PM] power PM Statistic start (02-04 08:54:55)\n[  576.720227] [K] wakeup_source: \n[  576.720329] rpmh_master_stat: APSS(401,sleep:101s) \n[  576.720354] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  576.720366] [K][PM] power PM Statistic done\n[  581.760203] [K][PM] power PM Statistic start (02-04 08:55:01)\n[  581.760226] [K] wakeup_source: \n[  581.760326] rpmh_master_stat: APSS(401,sleep:101s) \n[  581.760351] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  581.760363] [K][PM] power PM Statistic done\n[  586.800228] [K][PM] power PM Statistic start (02-04 08:55:06)\n[  586.800255] [K] wakeup_source: \n[  586.800363] rpmh_master_stat: APSS(401,sleep:101s) \n[  586.800389] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  586.800401] [K][PM] power PM Statistic done\n[  591.840204] [K][PM] power PM Statistic start (02-04 08:55:11)\n[  591.840228] [K] wakeup_source: \n[  591.840329] rpmh_master_stat: APSS(401,sleep:101s) \n[  591.840354] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  591.840367] [K][PM] power PM Statistic done\n[  596.880228] [K][PM] power PM Statistic start (02-04 08:55:16)\n[  596.880252] [K] wakeup_source: \n[  596.880350] rpmh_master_stat: APSS(401,sleep:101s) \n[  596.880375] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  596.880387] [K][PM] power PM Statistic done\n[  601.920207] [K][PM] power PM Statistic start (02-04 08:55:21)\n[  601.920233] [K] wakeup_source: \n[  601.920343] rpmh_master_stat: APSS(401,sleep:101s) \n[  601.920370] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  601.920384] [K][PM] power PM Statistic done\n[  606.960201] [K][PM] power PM Statistic start (02-04 08:55:26)\n[  606.960226] [K] wakeup_source: \n[  606.960326] rpmh_master_stat: APSS(401,sleep:101s) \n[  606.960352] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  606.960364] [K][PM] power PM Statistic done\n[  612.000202] [K][PM] power PM Statistic start (02-04 08:55:31)\n[  612.000227] [K] wakeup_source: \n[  612.000328] rpmh_master_stat: APSS(401,sleep:101s) \n[  612.000353] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  612.000366] [K][PM] power PM Statistic done\n[  617.040205] [K][PM] power PM Statistic start (02-04 08:55:36)\n[  617.040232] [K] wakeup_source: \n[  617.040341] rpmh_master_stat: APSS(401,sleep:101s) \n[  617.040368] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  617.040381] [K][PM] power PM Statistic done\n[  622.080202] [K][PM] power PM Statistic start (02-04 08:55:41)\n[  622.080226] [K] wakeup_source: \n[  622.080325] rpmh_master_stat: APSS(401,sleep:101s) \n[  622.080350] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  622.080363] [K][PM] power PM Statistic done\n[  626.750413]  2846     3.7 C/MHz    120 mW   12.7 J   23.7 I/mJ   105.4 s\n               1017: \n[  627.121152] [K][PM] power PM Statistic start (02-04 08:55:46)\n[  627.121196] [K] wakeup_source: \n[  627.121294] rpmh_master_stat: APSS(404,sleep:101s) \n[  627.121318] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  627.121329] [K][PM] power PM Statistic done\n[  632.161118] [K][PM] power PM Statistic start (02-04 08:55:51)\n[  632.161156] [K] wakeup_source: \n[  632.161262] rpmh_master_stat: APSS(424,sleep:106s) \n[  632.161286] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  632.161298] [K][PM] power PM Statistic done\n[  637.200194] [K][PM] power PM Statistic start (02-04 08:55:56)\n[  637.200227] [K] wakeup_source: \n[  637.200326] rpmh_master_stat: APSS(439,sleep:109s) \n[  637.200348] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  637.200357] [K][PM] power PM Statistic done\n[  642.240195] [K][PM] power PM Statistic start (02-04 08:56:01)\n[  642.240217] [K] wakeup_source: \n[  642.240308] rpmh_master_stat: APSS(439,sleep:109s) \n[  642.240330] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  642.240339] [K][PM] power PM Statistic done\n[  647.280190] [K][PM] power PM Statistic start (02-04 08:56:06)\n[  647.280211] [K] wakeup_source: \n[  647.280302] rpmh_master_stat: APSS(439,sleep:109s) \n[  647.280323] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  647.280332] [K][PM] power PM Statistic done\n[  652.320182] [K][PM] power PM Statistic start (02-04 08:56:11)\n[  652.320203] [K] wakeup_source: \n[  652.320295] rpmh_master_stat: APSS(439,sleep:109s) \n[  652.320316] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  652.320326] [K][PM] power PM Statistic done\n[  657.360186] [K][PM] power PM Statistic start (02-04 08:56:16)\n[  657.360206] [K] wakeup_source: \n[  657.360298] rpmh_master_stat: APSS(439,sleep:109s) \n[  657.360319] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  657.360329] [K][PM] power PM Statistic done\n[  662.400185] [K][PM] power PM Statistic start (02-04 08:56:21)\n[  662.400204] [K] wakeup_source: \n[  662.400296] rpmh_master_stat: APSS(439,sleep:109s) \n[  662.400317] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  662.400327] [K][PM] power PM Statistic done\n[  667.440186] [K][PM] power PM Statistic start (02-04 08:56:26)\n[  667.440209] [K] wakeup_source: \n[  667.440303] rpmh_master_stat: APSS(439,sleep:109s) \n[  667.440324] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  667.440334] [K][PM] power PM Statistic done\n[  672.480228] [K][PM] power PM Statistic start (02-04 08:56:31)\n[  672.480249] [K] wakeup_source: \n[  672.480350] rpmh_master_stat: APSS(439,sleep:109s) \n[  672.480371] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  672.480382] [K][PM] power PM Statistic done\n[  677.520182] [K][PM] power PM Statistic start (02-04 08:56:36)\n[  677.520202] [K] wakeup_source: \n[  677.520293] rpmh_master_stat: APSS(439,sleep:109s) \n[  677.520314] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  677.520324] [K][PM] power PM Statistic done\n[  682.560185] [K][PM] power PM Statistic start (02-04 08:56:41)\n[  682.560205] [K] wakeup_source: \n[  682.560299] rpmh_master_stat: APSS(439,sleep:109s) \n[  682.560320] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  682.560330] [K][PM] power PM Statistic done\n[  687.600192] [K][PM] power PM Statistic start (02-04 08:56:46)\n[  687.600214] [K] wakeup_source: \n[  687.600313] rpmh_master_stat: APSS(439,sleep:109s) \n[  687.600336] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  687.600347] [K][PM] power PM Statistic done\n[  692.640048] [K][PM] power PM Statistic start (02-04 08:56:51)\n[  692.640068] [K] wakeup_source: \n[  692.640160] rpmh_master_stat: APSS(439,sleep:109s) \n[  692.640181] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  692.640191] [K][PM] power PM Statistic done\n[  697.680205] [K][PM] power PM Statistic start (02-04 08:56:56)\n[  697.680225] [K] wakeup_source: \n[  697.680317] rpmh_master_stat: APSS(439,sleep:109s) \n[  697.680338] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  697.680347] [K][PM] power PM Statistic done\n[  702.720195] [K][PM] power PM Statistic start (02-04 08:57:01)\n[  702.720215] [K] wakeup_source: \n[  702.720306] rpmh_master_stat: APSS(439,sleep:109s) \n[  702.720326] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  702.720336] [K][PM] power PM Statistic done\n[  707.760212] [K][PM] power PM Statistic start (02-04 08:57:07)\n[  707.760231] [K] wakeup_source: \n[  707.760322] rpmh_master_stat: APSS(439,sleep:109s) \n[  707.760343] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  707.760352] [K][PM] power PM Statistic done\n[  712.800185] [K][PM] power PM Statistic start (02-04 08:57:12)\n[  712.800205] [K] wakeup_source: \n[  712.800296] rpmh_master_stat: APSS(439,sleep:109s) \n[  712.800317] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  712.800327] [K][PM] power PM Statistic done\n[  714.488539]  3772     3.7 C/MHz    137 mW   10.9 J   27.5 I/mJ    79.5 s\n               1248: \n[  717.841116] [K][PM] power PM Statistic start (02-04 08:57:17)\n[  717.841156] [K] wakeup_source: \n[  717.841250] rpmh_master_stat: APSS(449,sleep:112s) \n[  717.841271] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  717.841281] [K][PM] power PM Statistic done\n[  722.880181] [K][PM] power PM Statistic start (02-04 08:57:22)\n[  722.880213] [K] wakeup_source: \n[  722.880308] rpmh_master_stat: APSS(474,sleep:116s) \n[  722.880328] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  722.880336] [K][PM] power PM Statistic done\n[  727.920194] [K][PM] power PM Statistic start (02-04 08:57:27)\n[  727.920219] [K] wakeup_source: \n[  727.920308] rpmh_master_stat: APSS(474,sleep:116s) \n[  727.920327] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  727.920336] [K][PM] power PM Statistic done\n[  732.960172] [K][PM] power PM Statistic start (02-04 08:57:32)\n[  732.960191] [K] wakeup_source: \n[  732.960278] rpmh_master_stat: APSS(474,sleep:116s) \n[  732.960297] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  732.960305] [K][PM] power PM Statistic done\n[  738.000172] [K][PM] power PM Statistic start (02-04 08:57:37)\n[  738.000191] [K] wakeup_source: \n[  738.000277] rpmh_master_stat: APSS(474,sleep:116s) \n[  738.000296] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  738.000305] [K][PM] power PM Statistic done\n[  743.040210] [K][PM] power PM Statistic start (02-04 08:57:42)\n[  743.040230] [K] wakeup_source: \n[  743.040324] rpmh_master_stat: APSS(474,sleep:116s) \n[  743.040343] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  743.040351] [K][PM] power PM Statistic done\n[  748.080174] [K][PM] power PM Statistic start (02-04 08:57:47)\n[  748.080193] [K] wakeup_source: \n[  748.080279] rpmh_master_stat: APSS(474,sleep:116s) \n[  748.080298] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  748.080306] [K][PM] power PM Statistic done\n[  753.120174] [K][PM] power PM Statistic start (02-04 08:57:52)\n[  753.120192] [K] wakeup_source: \n[  753.120278] rpmh_master_stat: APSS(474,sleep:116s) \n[  753.120297] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  753.120306] [K][PM] power PM Statistic done\n[  758.160180] [K][PM] power PM Statistic start (02-04 08:57:57)\n[  758.160200] [K] wakeup_source: \n[  758.160296] rpmh_master_stat: APSS(474,sleep:116s) \n[  758.160317] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  758.160326] [K][PM] power PM Statistic done\n[  763.200172] [K][PM] power PM Statistic start (02-04 08:58:02)\n[  763.200190] [K] wakeup_source: \n[  763.200275] rpmh_master_stat: APSS(474,sleep:116s) \n[  763.200295] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  763.200303] [K][PM] power PM Statistic done\n[  768.240174] [K][PM] power PM Statistic start (02-04 08:58:07)\n[  768.240193] [K] wakeup_source: \n[  768.240279] rpmh_master_stat: APSS(474,sleep:116s) \n[  768.240298] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  768.240306] [K][PM] power PM Statistic done\n[  773.280180] [K][PM] power PM Statistic start (02-04 08:58:12)\n[  773.280199] [K] wakeup_source: \n[  773.280294] rpmh_master_stat: APSS(474,sleep:116s) \n[  773.280313] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  773.280323] [K][PM] power PM Statistic done\n[  778.320174] [K][PM] power PM Statistic start (02-04 08:58:17)\n[  778.320192] [K] wakeup_source: \n[  778.320277] rpmh_master_stat: APSS(474,sleep:116s) \n[  778.320296] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  778.320305] [K][PM] power PM Statistic done\n[  783.360172] [K][PM] power PM Statistic start (02-04 08:58:22)\n[  783.360190] [K] wakeup_source: \n[  783.360276] rpmh_master_stat: APSS(474,sleep:116s) \n[  783.360295] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  783.360304] [K][PM] power PM Statistic done\n[  787.634738]  4628     3.7 C/MHz    150 mW    9.7 J   30.8 I/mJ    64.8 s\n               1324: \n[  788.401121] [K][PM] power PM Statistic start (02-04 08:58:27)\n[  788.401160] [K] wakeup_source: \n[  788.401258] rpmh_master_stat: APSS(481,sleep:117s) \n[  788.401280] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  788.401291] [K][PM] power PM Statistic done\n[  793.441092] [K][PM] power PM Statistic start (02-04 08:58:32)\n[  793.441124] [K] wakeup_source: \n[  793.441215] rpmh_master_stat: APSS(500,sleep:122s) \n[  793.441236] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  793.441245] [K][PM] power PM Statistic done\n[  798.480177] [K][PM] power PM Statistic start (02-04 08:58:37)\n[  798.480208] [K] wakeup_source: \n[  798.480300] rpmh_master_stat: APSS(512,sleep:124s) \n[  798.480320] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  798.480328] [K][PM] power PM Statistic done\n[  803.520181] [K][PM] power PM Statistic start (02-04 08:58:42)\n[  803.520201] [K] wakeup_source: \n[  803.520293] rpmh_master_stat: APSS(512,sleep:124s) \n[  803.520313] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  803.520322] [K][PM] power PM Statistic done\n[  808.560171] [K][PM] power PM Statistic start (02-04 08:58:47)\n[  808.560190] [K] wakeup_source: \n[  808.560275] rpmh_master_stat: APSS(512,sleep:124s) \n[  808.560293] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  808.560301] [K][PM] power PM Statistic done\n[  813.600056] [K][PM] power PM Statistic start (02-04 08:58:52)\n[  813.600073] [K] wakeup_source: \n[  813.600158] rpmh_master_stat: APSS(512,sleep:124s) \n[  813.600177] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  813.600184] [K][PM] power PM Statistic done\n[  818.640202] [K][PM] power PM Statistic start (02-04 08:58:57)\n[  818.640221] [K] wakeup_source: \n[  818.640314] rpmh_master_stat: APSS(512,sleep:124s) \n[  818.640335] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  818.640343] [K][PM] power PM Statistic done\n[  823.680179] [K][PM] power PM Statistic start (02-04 08:59:02)\n[  823.680196] [K] wakeup_source: \n[  823.680280] rpmh_master_stat: APSS(512,sleep:124s) \n[  823.680298] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  823.680306] [K][PM] power PM Statistic done\n[  828.720172] [K][PM] power PM Statistic start (02-04 08:59:07)\n[  828.720189] [K] wakeup_source: \n[  828.720273] rpmh_master_stat: APSS(512,sleep:124s) \n[  828.720291] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  828.720299] [K][PM] power PM Statistic done\n[  833.760175] [K][PM] power PM Statistic start (02-04 08:59:13)\n[  833.760193] [K] wakeup_source: \n[  833.760284] rpmh_master_stat: APSS(512,sleep:124s) \n[  833.760303] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  833.760312] [K][PM] power PM Statistic done\n[  838.800169] [K][PM] power PM Statistic start (02-04 08:59:18)\n[  838.800186] [K] wakeup_source: \n[  838.800271] rpmh_master_stat: APSS(512,sleep:124s) \n[  838.800290] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  838.800298] [K][PM] power PM Statistic done\n[  843.840171] [K][PM] power PM Statistic start (02-04 08:59:23)\n[  843.840189] [K] wakeup_source: \n[  843.840275] rpmh_master_stat: APSS(512,sleep:124s) \n[  843.840293] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  843.840301] [K][PM] power PM Statistic done\n[  848.880173] [K][PM] power PM Statistic start (02-04 08:59:28)\n[  848.880191] [K] wakeup_source: \n[  848.880279] rpmh_master_stat: APSS(512,sleep:124s) \n[  848.880299] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  848.880308] [K][PM] power PM Statistic done\n[  853.920171] [K][PM] power PM Statistic start (02-04 08:59:33)\n[  853.920189] [K] wakeup_source: \n[  853.920273] rpmh_master_stat: APSS(512,sleep:124s) \n[  853.920291] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  853.920299] [K][PM] power PM Statistic done\n[  857.010148]  4913     3.7 C/MHz    155 mW    9.5 J   31.6 I/mJ    61.1 s\n               1497: \n[  858.961100] [K][PM] power PM Statistic start (02-04 08:59:38)\n[  858.961136] [K] wakeup_source: \n[  858.961222] rpmh_master_stat: APSS(517,sleep:126s) \n[  858.961242] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  858.961252] [K][PM] power PM Statistic done\n[  864.001102] [K][PM] power PM Statistic start (02-04 08:59:43)\n[  864.001137] [K] wakeup_source: \n[  864.001233] rpmh_master_stat: APSS(542,sleep:131s) \n[  864.001254] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  864.001263] [K][PM] power PM Statistic done\n[  869.040173] [K][PM] power PM Statistic start (02-04 08:59:48)\n[  869.040203] [K] wakeup_source: \n[  869.040292] rpmh_master_stat: APSS(552,sleep:132s) \n[  869.040311] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  869.040318] [K][PM] power PM Statistic done\n[  874.080188] [K][PM] power PM Statistic start (02-04 08:59:53)\n[  874.080206] [K] wakeup_source: \n[  874.080290] rpmh_master_stat: APSS(552,sleep:132s) \n[  874.080307] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  874.080314] [K][PM] power PM Statistic done\n[  879.120167] [K][PM] power PM Statistic start (02-04 08:59:58)\n[  879.120185] [K] wakeup_source: \n[  879.120268] rpmh_master_stat: APSS(552,sleep:132s) \n[  879.120285] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  879.120292] [K][PM] power PM Statistic done\n[  884.160167] [K][PM] power PM Statistic start (02-04 09:00:03)\n[  884.160185] [K] wakeup_source: \n[  884.160267] rpmh_master_stat: APSS(552,sleep:132s) \n[  884.160284] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  884.160292] [K][PM] power PM Statistic done\n[  889.200168] [K][PM] power PM Statistic start (02-04 09:00:08)\n[  889.200185] [K] wakeup_source: \n[  889.200268] rpmh_master_stat: APSS(552,sleep:132s) \n[  889.200285] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  889.200292] [K][PM] power PM Statistic done\n[  894.240171] [K][PM] power PM Statistic start (02-04 09:00:13)\n[  894.240187] [K] wakeup_source: \n[  894.240270] rpmh_master_stat: APSS(552,sleep:132s) \n[  894.240287] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  894.240294] [K][PM] power PM Statistic done\n[  899.280182] [K][PM] power PM Statistic start (02-04 09:00:18)\n[  899.280199] [K] wakeup_source: \n[  899.280281] rpmh_master_stat: APSS(552,sleep:132s) \n[  899.280298] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  899.280305] [K][PM] power PM Statistic done\n[  904.320170] [K][PM] power PM Statistic start (02-04 09:00:23)\n[  904.320186] [K] wakeup_source: \n[  904.320270] rpmh_master_stat: APSS(552,sleep:132s) \n[  904.320287] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  904.320294] [K][PM] power PM Statistic done\n[  909.360189] [K][PM] power PM Statistic start (02-04 09:00:28)\n[  909.360205] [K] wakeup_source: \n[  909.360287] rpmh_master_stat: APSS(552,sleep:132s) \n[  909.360304] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  909.360311] [K][PM] power PM Statistic done\n[  914.400167] [K][PM] power PM Statistic start (02-04 09:00:33)\n[  914.400184] [K] wakeup_source: \n[  914.400268] rpmh_master_stat: APSS(552,sleep:132s) \n[  914.400285] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  914.400292] [K][PM] power PM Statistic done\n[  919.347882]  5555     3.7 C/MHz    167 mW    9.0 J   33.2 I/mJ    54.0 s\n               1612: \n[  919.441092] [K][PM] power PM Statistic start (02-04 09:00:38)\n[  919.441128] [K] wakeup_source: \n[  919.441215] rpmh_master_stat: APSS(554,sleep:132s) \n[  919.441234] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  919.441243] [K][PM] power PM Statistic done\n[  924.480965] [K][PM] power PM Statistic start (02-04 09:00:43)\n[  924.480995] [K] wakeup_source: \n[  924.481083] rpmh_master_stat: APSS(572,sleep:137s) \n[  924.481101] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  924.481108] [K][PM] power PM Statistic done\n[  929.520175] [K][PM] power PM Statistic start (02-04 09:00:48)\n[  929.520204] [K] wakeup_source: \n[  929.520292] rpmh_master_stat: APSS(588,sleep:140s) \n[  929.520310] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  929.520317] [K][PM] power PM Statistic done\n[  934.560181] [K][PM] power PM Statistic start (02-04 09:00:53)\n[  934.560198] [K] wakeup_source: \n[  934.560278] rpmh_master_stat: APSS(588,sleep:140s) \n[  934.560294] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  934.560301] [K][PM] power PM Statistic done\n[  939.600175] [K][PM] power PM Statistic start (02-04 09:00:58)\n[  939.600193] [K] wakeup_source: \n[  939.600274] rpmh_master_stat: APSS(588,sleep:140s) \n[  939.600290] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  939.600297] [K][PM] power PM Statistic done\n[  944.640165] [K][PM] power PM Statistic start (02-04 09:01:03)\n[  944.640181] [K] wakeup_source: \n[  944.640263] rpmh_master_stat: APSS(588,sleep:140s) \n[  944.640279] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  944.640286] [K][PM] power PM Statistic done\n[  949.680170] [K][PM] power PM Statistic start (02-04 09:01:08)\n[  949.680187] [K] wakeup_source: \n[  949.680271] rpmh_master_stat: APSS(588,sleep:140s) \n[  949.680289] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  949.680297] [K][PM] power PM Statistic done\n[  954.720164] [K][PM] power PM Statistic start (02-04 09:01:13)\n[  954.720180] [K] wakeup_source: \n[  954.720264] rpmh_master_stat: APSS(588,sleep:140s) \n[  954.720281] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  954.720288] [K][PM] power PM Statistic done\n[  959.760165] [K][PM] power PM Statistic start (02-04 09:01:19)\n[  959.760180] [K] wakeup_source: \n[  959.760260] rpmh_master_stat: APSS(588,sleep:140s) \n[  959.760277] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  959.760284] [K][PM] power PM Statistic done\n[  964.800175] [K][PM] power PM Statistic start (02-04 09:01:24)\n[  964.800192] [K] wakeup_source: \n[  964.800277] rpmh_master_stat: APSS(588,sleep:140s) \n[  964.800294] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  964.800302] [K][PM] power PM Statistic done\n[  969.840169] [K][PM] power PM Statistic start (02-04 09:01:29)\n[  969.840185] [K] wakeup_source: \n[  969.840269] rpmh_master_stat: APSS(588,sleep:140s) \n[  969.840285] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  969.840292] [K][PM] power PM Statistic done\n[  974.880172] [K][PM] power PM Statistic start (02-04 09:01:34)\n[  974.880188] [K] wakeup_source: \n[  974.880268] rpmh_master_stat: APSS(588,sleep:140s) \n[  974.880285] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  974.880292] [K][PM] power PM Statistic done\n[  977.664943]  5982     3.7 C/MHz    175 mW    8.8 J   34.2 I/mJ    50.2 s\n               1708: \n[  979.921092] [K][PM] power PM Statistic start (02-04 09:01:39)\n[  979.921129] [K] wakeup_source: \n[  979.921216] rpmh_master_stat: APSS(594,sleep:142s) \n[  979.921235] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  979.921243] [K][PM] power PM Statistic done\n[  984.961090] [K][PM] power PM Statistic start (02-04 09:01:44)\n[  984.961118] [K] wakeup_source: \n[  984.961205] rpmh_master_stat: APSS(620,sleep:147s) \n[  984.961223] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  984.961231] [K][PM] power PM Statistic done\n[  990.000171] [K][PM] power PM Statistic start (02-04 09:01:49)\n[  990.000199] [K] wakeup_source: \n[  990.000286] rpmh_master_stat: APSS(626,sleep:148s) \n[  990.000304] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  990.000310] [K][PM] power PM Statistic done\n[  995.041407] [K][PM] power PM Statistic start (02-04 09:01:54)\n[  995.041424] [K] wakeup_source: 'battery'\n[  995.041504] rpmh_master_stat: APSS(626,sleep:148s) \n[  995.041520] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[  995.041526] [K][PM] power PM Statistic done\n[ 1000.080165] [K][PM] power PM Statistic start (02-04 09:01:59)\n[ 1000.080182] [K] wakeup_source: \n[ 1000.080262] rpmh_master_stat: APSS(626,sleep:148s) \n[ 1000.080278] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1000.080285] [K][PM] power PM Statistic done\n[ 1005.120161] [K][PM] power PM Statistic start (02-04 09:02:04)\n[ 1005.120177] [K] wakeup_source: \n[ 1005.120258] rpmh_master_stat: APSS(626,sleep:148s) \n[ 1005.120274] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1005.120281] [K][PM] power PM Statistic done\n[ 1010.160183] [K][PM] power PM Statistic start (02-04 09:02:09)\n[ 1010.160197] [K] wakeup_source: \n[ 1010.160276] rpmh_master_stat: APSS(626,sleep:148s) \n[ 1010.160292] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1010.160298] [K][PM] power PM Statistic done\n[ 1015.200169] [K][PM] power PM Statistic start (02-04 09:02:14)\n[ 1015.200185] [K] wakeup_source: \n[ 1015.200264] rpmh_master_stat: APSS(626,sleep:148s) \n[ 1015.200280] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1015.200286] [K][PM] power PM Statistic done\n[ 1020.240163] [K][PM] power PM Statistic start (02-04 09:02:19)\n[ 1020.240178] [K] wakeup_source: \n[ 1020.240257] rpmh_master_stat: APSS(626,sleep:148s) \n[ 1020.240273] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1020.240280] [K][PM] power PM Statistic done\n[ 1025.280162] [K][PM] power PM Statistic start (02-04 09:02:24)\n[ 1025.280177] [K] wakeup_source: \n[ 1025.280258] rpmh_master_stat: APSS(626,sleep:148s) \n[ 1025.280275] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1025.280281] [K][PM] power PM Statistic done\n[ 1030.320161] [K][PM] power PM Statistic start (02-04 09:02:29)\n[ 1030.320176] [K] wakeup_source: \n[ 1030.320256] rpmh_master_stat: APSS(626,sleep:148s) \n[ 1030.320272] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1030.320278] [K][PM] power PM Statistic done\n[ 1033.219127]  6339     3.7 C/MHz    188 mW    8.9 J   33.7 I/mJ    47.3 s\n               1804: \n[ 1035.361104] [K][PM] power PM Statistic start (02-04 09:02:34)\n[ 1035.361138] [K] wakeup_source: \n[ 1035.361223] rpmh_master_stat: APSS(631,sleep:150s) \n[ 1035.361241] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1035.361249] [K][PM] power PM Statistic done\n[ 1040.401066] [K][PM] power PM Statistic start (02-04 09:02:39)\n[ 1040.401095] [K] wakeup_source: \n[ 1040.401181] rpmh_master_stat: APSS(658,sleep:154s) \n[ 1040.401198] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1040.401205] [K][PM] power PM Statistic done\n[ 1045.440168] [K][PM] power PM Statistic start (02-04 09:02:44)\n[ 1045.440196] [K] wakeup_source: \n[ 1045.440281] rpmh_master_stat: APSS(665,sleep:155s) \n[ 1045.440298] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1045.440305] [K][PM] power PM Statistic done\n[ 1050.480160] [K][PM] power PM Statistic start (02-04 09:02:49)\n[ 1050.480176] [K] wakeup_source: \n[ 1050.480254] rpmh_master_stat: APSS(665,sleep:155s) \n[ 1050.480270] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1050.480276] [K][PM] power PM Statistic done\n[ 1055.520163] [K][PM] power PM Statistic start (02-04 09:02:54)\n[ 1055.520179] [K] wakeup_source: \n[ 1055.520259] rpmh_master_stat: APSS(665,sleep:155s) \n[ 1055.520275] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1055.520281] [K][PM] power PM Statistic done\n[ 1060.560163] [K][PM] power PM Statistic start (02-04 09:02:59)\n[ 1060.560178] [K] wakeup_source: \n[ 1060.560256] rpmh_master_stat: APSS(665,sleep:155s) \n[ 1060.560271] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1060.560278] [K][PM] power PM Statistic done\n[ 1065.600161] [K][PM] power PM Statistic start (02-04 09:03:04)\n[ 1065.600176] [K] wakeup_source: \n[ 1065.600253] rpmh_master_stat: APSS(665,sleep:155s) \n[ 1065.600268] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1065.600275] [K][PM] power PM Statistic done\n[ 1070.640162] [K][PM] power PM Statistic start (02-04 09:03:09)\n[ 1070.640178] [K] wakeup_source: \n[ 1070.640256] rpmh_master_stat: APSS(665,sleep:155s) \n[ 1070.640271] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1070.640278] [K][PM] power PM Statistic done\n[ 1075.680185] [K][PM] power PM Statistic start (02-04 09:03:14)\n[ 1075.680200] [K] wakeup_source: \n[ 1075.680277] rpmh_master_stat: APSS(665,sleep:155s) \n[ 1075.680293] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1075.680299] [K][PM] power PM Statistic done\n[ 1080.720164] [K][PM] power PM Statistic start (02-04 09:03:19)\n[ 1080.720180] [K] wakeup_source: \n[ 1080.720258] rpmh_master_stat: APSS(665,sleep:155s) \n[ 1080.720273] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1080.720279] [K][PM] power PM Statistic done\n[ 1085.760181] [K][PM] power PM Statistic start (02-04 09:03:25)\n[ 1085.760196] [K] wakeup_source: \n[ 1085.760273] rpmh_master_stat: APSS(665,sleep:155s) \n[ 1085.760288] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1085.760294] [K][PM] power PM Statistic done\n[ 1086.265209] IRQ 6: no longer affine to CPU1\n[ 1086.265876] CPU1: shutdown\n[ 1086.269729] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000\n[ 1086.269872] CPU6: Booted secondary processor [51df804e]\n[ 1086.270223] CPU0: update max cpu_capacity 492\n[ 1086.280581] CPU0: update max cpu_capacity 492\n[ 1087.280822]  6695     3.7 C/MHz    206 mW    9.2 J   32.5 I/mJ    44.8 s\n               \n               \n               ===== CPU 6 =====\n               Frequencies: 300 652 806 979 1094 1209 1324 1555 1708 1843 1939 2169 2208\n               \n                300: \n[ 1090.272102] CPU6: update max cpu_capacity 1024\n[ 1090.801435] [K][PM] power PM Statistic start (02-04 09:03:30)\n[ 1090.801500] [K] wakeup_source: \n[ 1090.801674] rpmh_master_stat: APSS(678,sleep:160s) \n[ 1090.801727] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1090.801757] [K][PM] power PM Statistic done\n[ 1095.840390] [K][PM] power PM Statistic start (02-04 09:03:35)\n[ 1095.840456] [K] wakeup_source: \n[ 1095.840635] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1095.840686] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1095.840716] [K][PM] power PM Statistic done\n[ 1100.880387] [K][PM] power PM Statistic start (02-04 09:03:40)\n[ 1100.880444] [K] wakeup_source: \n[ 1100.880629] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1100.880679] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1100.880708] [K][PM] power PM Statistic done\n[ 1105.920387] [K][PM] power PM Statistic start (02-04 09:03:45)\n[ 1105.920438] [K] wakeup_source: \n[ 1105.920607] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1105.920658] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1105.920687] [K][PM] power PM Statistic done\n[ 1110.960384] [K][PM] power PM Statistic start (02-04 09:03:50)\n[ 1110.960433] [K] wakeup_source: \n[ 1110.960602] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1110.960652] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1110.960682] [K][PM] power PM Statistic done\n[ 1116.000390] [K][PM] power PM Statistic start (02-04 09:03:55)\n[ 1116.000443] [K] wakeup_source: \n[ 1116.000631] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1116.000682] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1116.000712] [K][PM] power PM Statistic done\n[ 1121.040379] [K][PM] power PM Statistic start (02-04 09:04:00)\n[ 1121.040428] [K] wakeup_source: \n[ 1121.040597] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1121.040648] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1121.040677] [K][PM] power PM Statistic done\n[ 1126.080373] [K][PM] power PM Statistic start (02-04 09:04:05)\n[ 1126.080423] [K] wakeup_source: \n[ 1126.080590] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1126.080641] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1126.080671] [K][PM] power PM Statistic done\n[ 1131.120450] [K][PM] power PM Statistic start (02-04 09:04:10)\n[ 1131.120502] [K] wakeup_source: \n[ 1131.120682] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1131.120736] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1131.120765] [K][PM] power PM Statistic done\n[ 1136.160405] [K][PM] power PM Statistic start (02-04 09:04:15)\n[ 1136.160454] [K] wakeup_source: \n[ 1136.160625] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1136.160675] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1136.160704] [K][PM] power PM Statistic done\n[ 1141.200407] [K][PM] power PM Statistic start (02-04 09:04:20)\n[ 1141.200456] [K] wakeup_source: \n[ 1141.200624] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1141.200675] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1141.200703] [K][PM] power PM Statistic done\n[ 1146.240431] [K][PM] power PM Statistic start (02-04 09:04:25)\n[ 1146.240480] [K] wakeup_source: \n[ 1146.240647] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1146.240697] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1146.240725] [K][PM] power PM Statistic done\n[ 1151.280408] [K][PM] power PM Statistic start (02-04 09:04:30)\n[ 1151.280457] [K] wakeup_source: \n[ 1151.280625] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1151.280676] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1151.280705] [K][PM] power PM Statistic done\n[ 1156.320467] [K][PM] power PM Statistic start (02-04 09:04:35)\n[ 1156.320516] [K] wakeup_source: \n[ 1156.320682] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1156.320733] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1156.320761] [K][PM] power PM Statistic done\n[ 1161.360168] [K][PM] power PM Statistic start (02-04 09:04:40)\n[ 1161.360217] [K] wakeup_source: \n[ 1161.360395] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1161.360446] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1161.360476] [K][PM] power PM Statistic done\n[ 1166.400397] [K][PM] power PM Statistic start (02-04 09:04:45)\n[ 1166.400447] [K] wakeup_source: \n[ 1166.400617] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1166.400668] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1166.400698] [K][PM] power PM Statistic done\n[ 1171.440394] [K][PM] power PM Statistic start (02-04 09:04:50)\n[ 1171.440443] [K] wakeup_source: \n[ 1171.440613] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1171.440664] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1171.440693] [K][PM] power PM Statistic done\n[ 1176.480394] [K][PM] power PM Statistic start (02-04 09:04:55)\n[ 1176.480443] [K] wakeup_source: \n[ 1176.480617] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1176.480667] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1176.480697] [K][PM] power PM Statistic done\n[ 1181.520396] [K][PM] power PM Statistic start (02-04 09:05:00)\n[ 1181.520445] [K] wakeup_source: \n[ 1181.520613] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1181.520664] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1181.520693] [K][PM] power PM Statistic done\n[ 1186.560395] [K][PM] power PM Statistic start (02-04 09:05:05)\n[ 1186.560445] [K] wakeup_source: \n[ 1186.560615] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1186.560665] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1186.560695] [K][PM] power PM Statistic done\n[ 1191.600402] [K][PM] power PM Statistic start (02-04 09:05:10)\n[ 1191.600454] [K] wakeup_source: \n[ 1191.600624] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1191.600675] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1191.600704] [K][PM] power PM Statistic done\n[ 1196.640394] [K][PM] power PM Statistic start (02-04 09:05:15)\n[ 1196.640442] [K] wakeup_source: \n[ 1196.640611] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1196.640663] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1196.640692] [K][PM] power PM Statistic done\n[ 1201.680390] [K][PM] power PM Statistic start (02-04 09:05:20)\n[ 1201.680440] [K] wakeup_source: \n[ 1201.680609] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1201.680660] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1201.680689] [K][PM] power PM Statistic done\n[ 1206.720402] [K][PM] power PM Statistic start (02-04 09:05:25)\n[ 1206.720454] [K] wakeup_source: \n[ 1206.720636] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1206.720688] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1206.720719] [K][PM] power PM Statistic done\n[ 1211.760396] [K][PM] power PM Statistic start (02-04 09:05:31)\n[ 1211.760444] [K] wakeup_source: \n[ 1211.760613] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1211.760663] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1211.760693] [K][PM] power PM Statistic done\n[ 1216.800399] [K][PM] power PM Statistic start (02-04 09:05:36)\n[ 1216.800448] [K] wakeup_source: \n[ 1216.800618] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1216.800672] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1216.800703] [K][PM] power PM Statistic done\n[ 1221.840400] [K][PM] power PM Statistic start (02-04 09:05:41)\n[ 1221.840451] [K] wakeup_source: \n[ 1221.840636] rpmh_master_stat: APSS(706,sleep:164s) \n[ 1221.840688] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1221.840719] [K][PM] power PM Statistic done\n[ 1224.255755]  2332     7.8 C/MHz    141 mW   18.2 J   16.5 I/mJ   128.7 s\n                652: \n[ 1226.881447] [K][PM] power PM Statistic start (02-04 09:05:46)\n[ 1226.881542] [K] wakeup_source: \n[ 1226.881716] rpmh_master_stat: APSS(711,sleep:167s) \n[ 1226.881769] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1226.881800] [K][PM] power PM Statistic done\n[ 1231.921443] [K][PM] power PM Statistic start (02-04 09:05:51)\n[ 1231.921509] [K] wakeup_source: \n[ 1231.921683] rpmh_master_stat: APSS(738,sleep:171s) \n[ 1231.921736] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1231.921767] [K][PM] power PM Statistic done\n[ 1236.960386] [K][PM] power PM Statistic start (02-04 09:05:56)\n[ 1236.960449] [K] wakeup_source: \n[ 1236.960627] rpmh_master_stat: APSS(744,sleep:172s) \n[ 1236.960680] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1236.960710] [K][PM] power PM Statistic done\n[ 1242.000384] [K][PM] power PM Statistic start (02-04 09:06:01)\n[ 1242.000437] [K] wakeup_source: \n[ 1242.000608] rpmh_master_stat: APSS(744,sleep:172s) \n[ 1242.000660] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1242.000690] [K][PM] power PM Statistic done\n[ 1247.040383] [K][PM] power PM Statistic start (02-04 09:06:06)\n[ 1247.040434] [K] wakeup_source: \n[ 1247.040602] rpmh_master_stat: APSS(744,sleep:172s) \n[ 1247.040653] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1247.040682] [K][PM] power PM Statistic done\n[ 1252.080382] [K][PM] power PM Statistic start (02-04 09:06:11)\n[ 1252.080432] [K] wakeup_source: \n[ 1252.080602] rpmh_master_stat: APSS(744,sleep:172s) \n[ 1252.080653] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1252.080683] [K][PM] power PM Statistic done\n[ 1257.120379] [K][PM] power PM Statistic start (02-04 09:06:16)\n[ 1257.120429] [K] wakeup_source: \n[ 1257.120598] rpmh_master_stat: APSS(744,sleep:172s) \n[ 1257.120650] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1257.120680] [K][PM] power PM Statistic done\n[ 1262.160375] [K][PM] power PM Statistic start (02-04 09:06:21)\n[ 1262.160424] [K] wakeup_source: \n[ 1262.160592] rpmh_master_stat: APSS(744,sleep:172s) \n[ 1262.160643] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1262.160672] [K][PM] power PM Statistic done\n[ 1267.200383] [K][PM] power PM Statistic start (02-04 09:06:26)\n[ 1267.200431] [K] wakeup_source: \n[ 1267.200598] rpmh_master_stat: APSS(744,sleep:172s) \n[ 1267.200649] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1267.200678] [K][PM] power PM Statistic done\n[ 1272.240382] [K][PM] power PM Statistic start (02-04 09:06:31)\n[ 1272.240429] [K] wakeup_source: \n[ 1272.240598] rpmh_master_stat: APSS(744,sleep:172s) \n[ 1272.240650] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1272.240680] [K][PM] power PM Statistic done\n[ 1277.280461] [K][PM] power PM Statistic start (02-04 09:06:36)\n[ 1277.280509] [K] wakeup_source: \n[ 1277.280679] rpmh_master_stat: APSS(744,sleep:172s) \n[ 1277.280730] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1277.280759] [K][PM] power PM Statistic done\n[ 1282.320380] [K][PM] power PM Statistic start (02-04 09:06:41)\n[ 1282.320428] [K] wakeup_source: \n[ 1282.320596] rpmh_master_stat: APSS(744,sleep:172s) \n[ 1282.320645] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1282.320675] [K][PM] power PM Statistic done\n[ 1287.360375] [K][PM] power PM Statistic start (02-04 09:06:46)\n[ 1287.360424] [K] wakeup_source: \n[ 1287.360593] rpmh_master_stat: APSS(744,sleep:172s) \n[ 1287.360644] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1287.360674] [K][PM] power PM Statistic done\n[ 1291.545380]  5082     7.8 C/MHz    198 mW   11.7 J   25.7 I/mJ    59.0 s\n                806: \n[ 1292.401451] [K][PM] power PM Statistic start (02-04 09:06:51)\n[ 1292.401547] [K] wakeup_source: \n[ 1292.401720] rpmh_master_stat: APSS(750,sleep:173s) \n[ 1292.401773] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1292.401804] [K][PM] power PM Statistic done\n[ 1297.441435] [K][PM] power PM Statistic start (02-04 09:06:56)\n[ 1297.441499] [K] wakeup_source: \n[ 1297.441674] rpmh_master_stat: APSS(771,sleep:177s) \n[ 1297.441728] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1297.441758] [K][PM] power PM Statistic done\n[ 1302.480407] [K][PM] power PM Statistic start (02-04 09:07:01)\n[ 1302.480474] [K] wakeup_source: \n[ 1302.480649] rpmh_master_stat: APSS(783,sleep:179s) \n[ 1302.480702] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1302.480731] [K][PM] power PM Statistic done\n[ 1307.520382] [K][PM] power PM Statistic start (02-04 09:07:06)\n[ 1307.520436] [K] wakeup_source: \n[ 1307.520607] rpmh_master_stat: APSS(783,sleep:179s) \n[ 1307.520658] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1307.520687] [K][PM] power PM Statistic done\n[ 1312.560409] [K][PM] power PM Statistic start (02-04 09:07:11)\n[ 1312.560461] [K] wakeup_source: \n[ 1312.560633] rpmh_master_stat: APSS(783,sleep:179s) \n[ 1312.560684] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1312.560712] [K][PM] power PM Statistic done\n[ 1317.600380] [K][PM] power PM Statistic start (02-04 09:07:16)\n[ 1317.600433] [K] wakeup_source: \n[ 1317.600603] rpmh_master_stat: APSS(783,sleep:179s) \n[ 1317.600654] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1317.600684] [K][PM] power PM Statistic done\n[ 1322.640393] [K][PM] power PM Statistic start (02-04 09:07:21)\n[ 1322.640442] [K] wakeup_source: \n[ 1322.640612] rpmh_master_stat: APSS(783,sleep:179s) \n[ 1322.640664] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1322.640692] [K][PM] power PM Statistic done\n[ 1327.680384] [K][PM] power PM Statistic start (02-04 09:07:26)\n[ 1327.680437] [K] wakeup_source: \n[ 1327.680607] rpmh_master_stat: APSS(783,sleep:179s) \n[ 1327.680659] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1327.680688] [K][PM] power PM Statistic done\n[ 1332.720385] [K][PM] power PM Statistic start (02-04 09:07:31)\n[ 1332.720437] [K] wakeup_source: \n[ 1332.720608] rpmh_master_stat: APSS(783,sleep:179s) \n[ 1332.720658] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1332.720688] [K][PM] power PM Statistic done\n[ 1337.760382] [K][PM] power PM Statistic start (02-04 09:07:37)\n[ 1337.760432] [K] wakeup_source: \n[ 1337.760601] rpmh_master_stat: APSS(783,sleep:179s) \n[ 1337.760651] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1337.760680] [K][PM] power PM Statistic done\n[ 1342.800381] [K][PM] power PM Statistic start (02-04 09:07:42)\n[ 1342.800431] [K] wakeup_source: \n[ 1342.800600] rpmh_master_stat: APSS(783,sleep:179s) \n[ 1342.800651] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1342.800681] [K][PM] power PM Statistic done\n[ 1347.726292]  6274     7.8 C/MHz    224 mW   10.7 J   28.0 I/mJ    47.8 s\n                979: \n[ 1347.841223] [K][PM] power PM Statistic start (02-04 09:07:47)\n[ 1347.841327] [K] wakeup_source: \n[ 1347.841518] rpmh_master_stat: APSS(785,sleep:180s) \n[ 1347.841574] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1347.841607] [K][PM] power PM Statistic done\n[ 1352.881236] [K][PM] power PM Statistic start (02-04 09:07:52)\n[ 1352.881301] [K] wakeup_source: \n[ 1352.881474] rpmh_master_stat: APSS(804,sleep:184s) \n[ 1352.881527] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1352.881556] [K][PM] power PM Statistic done\n[ 1357.920390] [K][PM] power PM Statistic start (02-04 09:07:57)\n[ 1357.920454] [K] wakeup_source: \n[ 1357.920634] rpmh_master_stat: APSS(823,sleep:187s) \n[ 1357.920686] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1357.920716] [K][PM] power PM Statistic done\n[ 1362.960385] [K][PM] power PM Statistic start (02-04 09:08:02)\n[ 1362.960438] [K] wakeup_source: \n[ 1362.960619] rpmh_master_stat: APSS(823,sleep:187s) \n[ 1362.960671] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1362.960701] [K][PM] power PM Statistic done\n[ 1368.000382] [K][PM] power PM Statistic start (02-04 09:08:07)\n[ 1368.000434] [K] wakeup_source: \n[ 1368.000603] rpmh_master_stat: APSS(823,sleep:187s) \n[ 1368.000656] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1368.000685] [K][PM] power PM Statistic done\n[ 1373.040381] [K][PM] power PM Statistic start (02-04 09:08:12)\n[ 1373.040430] [K] wakeup_source: \n[ 1373.040599] rpmh_master_stat: APSS(823,sleep:187s) \n[ 1373.040652] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1373.040681] [K][PM] power PM Statistic done\n[ 1378.080373] [K][PM] power PM Statistic start (02-04 09:08:17)\n[ 1378.080423] [K] wakeup_source: \n[ 1378.080592] rpmh_master_stat: APSS(823,sleep:187s) \n[ 1378.080643] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1378.080673] [K][PM] power PM Statistic done\n[ 1383.120381] [K][PM] power PM Statistic start (02-04 09:08:22)\n[ 1383.120432] [K] wakeup_source: \n[ 1383.120603] rpmh_master_stat: APSS(823,sleep:187s) \n[ 1383.120655] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1383.120685] [K][PM] power PM Statistic done\n[ 1388.160381] [K][PM] power PM Statistic start (02-04 09:08:27)\n[ 1388.160431] [K] wakeup_source: \n[ 1388.160598] rpmh_master_stat: APSS(823,sleep:187s) \n[ 1388.160649] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1388.160679] [K][PM] power PM Statistic done\n[ 1393.200384] [K][PM] power PM Statistic start (02-04 09:08:32)\n[ 1393.200434] [K] wakeup_source: \n[ 1393.200605] rpmh_master_stat: APSS(823,sleep:187s) \n[ 1393.200657] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1393.200688] [K][PM] power PM Statistic done\n[ 1395.319946]  7623     7.8 C/MHz    267 mW   10.5 J   28.6 I/mJ    39.4 s\n               1094: \n[ 1398.241465] [K][PM] power PM Statistic start (02-04 09:08:37)\n[ 1398.241560] [K] wakeup_source: \n[ 1398.241733] rpmh_master_stat: APSS(828,sleep:190s) \n[ 1398.241786] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1398.241817] [K][PM] power PM Statistic done\n[ 1403.281196] [K][PM] power PM Statistic start (02-04 09:08:42)\n[ 1403.281262] [K] wakeup_source: \n[ 1403.281435] rpmh_master_stat: APSS(857,sleep:195s) \n[ 1403.281489] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1403.281518] [K][PM] power PM Statistic done\n[ 1408.320444] [K][PM] power PM Statistic start (02-04 09:08:47)\n[ 1408.320509] [K] wakeup_source: \n[ 1408.320682] rpmh_master_stat: APSS(859,sleep:195s) \n[ 1408.320734] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1408.320763] [K][PM] power PM Statistic done\n[ 1413.360383] [K][PM] power PM Statistic start (02-04 09:08:52)\n[ 1413.360440] [K] wakeup_source: \n[ 1413.360611] rpmh_master_stat: APSS(859,sleep:195s) \n[ 1413.360662] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1413.360692] [K][PM] power PM Statistic done\n[ 1418.400384] [K][PM] power PM Statistic start (02-04 09:08:57)\n[ 1418.400440] [K] wakeup_source: \n[ 1418.400614] rpmh_master_stat: APSS(859,sleep:195s) \n[ 1418.400665] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1418.400696] [K][PM] power PM Statistic done\n[ 1423.440382] [K][PM] power PM Statistic start (02-04 09:09:02)\n[ 1423.440435] [K] wakeup_source: \n[ 1423.440606] rpmh_master_stat: APSS(859,sleep:195s) \n[ 1423.440658] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1423.440688] [K][PM] power PM Statistic done\n[ 1428.480382] [K][PM] power PM Statistic start (02-04 09:09:07)\n[ 1428.480435] [K] wakeup_source: \n[ 1428.480606] rpmh_master_stat: APSS(859,sleep:195s) \n[ 1428.480657] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1428.480687] [K][PM] power PM Statistic done\n[ 1433.520376] [K][PM] power PM Statistic start (02-04 09:09:12)\n[ 1433.520428] [K] wakeup_source: \n[ 1433.520600] rpmh_master_stat: APSS(859,sleep:195s) \n[ 1433.520654] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1433.520683] [K][PM] power PM Statistic done\n[ 1438.560387] [K][PM] power PM Statistic start (02-04 09:09:17)\n[ 1438.560440] [K] wakeup_source: \n[ 1438.560626] rpmh_master_stat: APSS(859,sleep:195s) \n[ 1438.560680] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1438.560710] [K][PM] power PM Statistic done\n[ 1438.877644]  8520     7.8 C/MHz    298 mW   10.5 J   28.5 I/mJ    35.2 s\n               1209: \n[ 1443.601416] [K][PM] power PM Statistic start (02-04 09:09:22)\n[ 1443.601513] [K] wakeup_source: \n[ 1443.601686] rpmh_master_stat: APSS(879,sleep:200s) \n[ 1443.601739] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1443.601768] [K][PM] power PM Statistic done\n[ 1448.640383] [K][PM] power PM Statistic start (02-04 09:09:27)\n[ 1448.640447] [K] wakeup_source: \n[ 1448.640624] rpmh_master_stat: APSS(898,sleep:203s) \n[ 1448.640675] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1448.640705] [K][PM] power PM Statistic done\n[ 1453.680383] [K][PM] power PM Statistic start (02-04 09:09:32)\n[ 1453.680444] [K] wakeup_source: \n[ 1453.680631] rpmh_master_stat: APSS(898,sleep:203s) \n[ 1453.680683] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1453.680714] [K][PM] power PM Statistic done\n[ 1458.720447] [K][PM] power PM Statistic start (02-04 09:09:37)\n[ 1458.720500] [K] wakeup_source: \n[ 1458.720669] rpmh_master_stat: APSS(898,sleep:203s) \n[ 1458.720720] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1458.720749] [K][PM] power PM Statistic done\n[ 1463.760435] [K][PM] power PM Statistic start (02-04 09:09:43)\n[ 1463.760489] [K] wakeup_source: \n[ 1463.760658] rpmh_master_stat: APSS(898,sleep:203s) \n[ 1463.760708] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1463.760737] [K][PM] power PM Statistic done\n[ 1468.800459] [K][PM] power PM Statistic start (02-04 09:09:48)\n[ 1468.800514] [K] wakeup_source: \n[ 1468.800700] rpmh_master_stat: APSS(898,sleep:203s) \n[ 1468.800752] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1468.800782] [K][PM] power PM Statistic done\n[ 1473.840433] [K][PM] power PM Statistic start (02-04 09:09:53)\n[ 1473.840487] [K] wakeup_source: \n[ 1473.840655] rpmh_master_stat: APSS(898,sleep:203s) \n[ 1473.840705] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1473.840734] [K][PM] power PM Statistic done\n[ 1478.880201] [K][PM] power PM Statistic start (02-04 09:09:58)\n[ 1478.880250] [K] wakeup_source: \n[ 1478.880417] rpmh_master_stat: APSS(898,sleep:203s) \n[ 1478.880468] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1478.880496] [K][PM] power PM Statistic done\n[ 1479.150761]  9416     7.8 C/MHz    326 mW   10.4 J   28.9 I/mJ    31.9 s\n               1324: \n[ 1483.921433] [K][PM] power PM Statistic start (02-04 09:10:03)\n[ 1483.921528] [K] wakeup_source: \n[ 1483.921700] rpmh_master_stat: APSS(915,sleep:207s) \n[ 1483.921754] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1483.921784] [K][PM] power PM Statistic done\n[ 1488.960388] [K][PM] power PM Statistic start (02-04 09:10:08)\n[ 1488.960454] [K] wakeup_source: \n[ 1488.960632] rpmh_master_stat: APSS(933,sleep:211s) \n[ 1488.960684] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1488.960713] [K][PM] power PM Statistic done\n[ 1494.000376] [K][PM] power PM Statistic start (02-04 09:10:13)\n[ 1494.000433] [K] wakeup_source: \n[ 1494.000603] rpmh_master_stat: APSS(933,sleep:211s) \n[ 1494.000654] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1494.000684] [K][PM] power PM Statistic done\n[ 1499.040384] [K][PM] power PM Statistic start (02-04 09:10:18)\n[ 1499.040438] [K] wakeup_source: \n[ 1499.040611] rpmh_master_stat: APSS(933,sleep:211s) \n[ 1499.040663] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1499.040693] [K][PM] power PM Statistic done\n[ 1504.080387] [K][PM] power PM Statistic start (02-04 09:10:23)\n[ 1504.080442] [K] wakeup_source: \n[ 1504.080611] rpmh_master_stat: APSS(933,sleep:211s) \n[ 1504.080663] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1504.080693] [K][PM] power PM Statistic done\n[ 1509.120381] [K][PM] power PM Statistic start (02-04 09:10:28)\n[ 1509.120435] [K] wakeup_source: \n[ 1509.120609] rpmh_master_stat: APSS(933,sleep:211s) \n[ 1509.120662] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1509.120692] [K][PM] power PM Statistic done\n[ 1514.160379] [K][PM] power PM Statistic start (02-04 09:10:33)\n[ 1514.160432] [K] wakeup_source: \n[ 1514.160600] rpmh_master_stat: APSS(933,sleep:211s) \n[ 1514.160651] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1514.160680] [K][PM] power PM Statistic done\n[ 1516.642679] 10316     7.8 C/MHz    360 mW   10.5 J   28.7 I/mJ    29.1 s\n               1555: \n[ 1519.201518] [K][PM] power PM Statistic start (02-04 09:10:38)\n[ 1519.201623] [K] wakeup_source: \n[ 1519.201811] rpmh_master_stat: APSS(940,sleep:213s) \n[ 1519.201867] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1519.201899] [K][PM] power PM Statistic done\n[ 1524.241432] [K][PM] power PM Statistic start (02-04 09:10:43)\n[ 1524.241498] [K] wakeup_source: \n[ 1524.241670] rpmh_master_stat: APSS(966,sleep:218s) \n[ 1524.241722] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1524.241753] [K][PM] power PM Statistic done\n[ 1529.280389] [K][PM] power PM Statistic start (02-04 09:10:48)\n[ 1529.280454] [K] wakeup_source: \n[ 1529.280631] rpmh_master_stat: APSS(971,sleep:218s) \n[ 1529.280683] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1529.280712] [K][PM] power PM Statistic done\n[ 1534.320390] [K][PM] power PM Statistic start (02-04 09:10:53)\n[ 1534.320445] [K] wakeup_source: \n[ 1534.320633] rpmh_master_stat: APSS(971,sleep:218s) \n[ 1534.320685] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1534.320715] [K][PM] power PM Statistic done\n[ 1539.360384] [K][PM] power PM Statistic start (02-04 09:10:58)\n[ 1539.360435] [K] wakeup_source: \n[ 1539.360605] rpmh_master_stat: APSS(971,sleep:218s) \n[ 1539.360657] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1539.360687] [K][PM] power PM Statistic done\n[ 1544.400381] [K][PM] power PM Statistic start (02-04 09:11:03)\n[ 1544.400430] [K] wakeup_source: \n[ 1544.400600] rpmh_master_stat: APSS(971,sleep:218s) \n[ 1544.400650] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1544.400680] [K][PM] power PM Statistic done\n[ 1549.440382] [K][PM] power PM Statistic start (02-04 09:11:08)\n[ 1549.440434] [K] wakeup_source: \n[ 1549.440617] rpmh_master_stat: APSS(971,sleep:218s) \n[ 1549.440669] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1549.440700] [K][PM] power PM Statistic done\n[ 1549.842627] 12110     7.8 C/MHz    460 mW   11.4 J   26.3 I/mJ    24.8 s\n               1708: \n[ 1554.480491] [K][PM] power PM Statistic start (02-04 09:11:13)\n[ 1554.480586] [K] wakeup_source: \n[ 1554.480757] rpmh_master_stat: APSS(990,sleep:223s) \n[ 1554.480809] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1554.480838] [K][PM] power PM Statistic done\n[ 1559.520391] [K][PM] power PM Statistic start (02-04 09:11:18)\n[ 1559.520454] [K] wakeup_source: \n[ 1559.520636] rpmh_master_stat: APSS(1010,sleep:226s) \n[ 1559.520688] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1559.520718] [K][PM] power PM Statistic done\n[ 1564.560396] [K][PM] power PM Statistic start (02-04 09:11:23)\n[ 1564.560455] [K] wakeup_source: \n[ 1564.560646] rpmh_master_stat: APSS(1010,sleep:226s) \n[ 1564.560700] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1564.560730] [K][PM] power PM Statistic done\n[ 1569.600384] [K][PM] power PM Statistic start (02-04 09:11:28)\n[ 1569.600438] [K] wakeup_source: \n[ 1569.600608] rpmh_master_stat: APSS(1010,sleep:226s) \n[ 1569.600659] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1569.600689] [K][PM] power PM Statistic done\n[ 1574.640377] [K][PM] power PM Statistic start (02-04 09:11:33)\n[ 1574.640431] [K] wakeup_source: \n[ 1574.640601] rpmh_master_stat: APSS(1010,sleep:226s) \n[ 1574.640652] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1574.640682] [K][PM] power PM Statistic done\n[ 1579.680391] [K][PM] power PM Statistic start (02-04 09:11:38)\n[ 1579.680448] [K] wakeup_source: \n[ 1579.680638] rpmh_master_stat: APSS(1010,sleep:226s) \n[ 1579.680690] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1579.680720] [K][PM] power PM Statistic done\n[ 1580.769813] 13299     7.8 C/MHz    534 mW   12.1 J   24.9 I/mJ    22.6 s\n               1843: \n[ 1584.721411] [K][PM] power PM Statistic start (02-04 09:11:43)\n[ 1584.721507] [K] wakeup_source: \n[ 1584.721680] rpmh_master_stat: APSS(1024,sleep:230s) \n[ 1584.721733] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1584.721764] [K][PM] power PM Statistic done\n[ 1589.760383] [K][PM] power PM Statistic start (02-04 09:11:49)\n[ 1589.760447] [K] wakeup_source: \n[ 1589.760624] rpmh_master_stat: APSS(1048,sleep:234s) \n[ 1589.760676] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1589.760706] [K][PM] power PM Statistic done\n[ 1594.800434] [K][PM] power PM Statistic start (02-04 09:11:54)\n[ 1594.800489] [K] wakeup_source: \n[ 1594.800674] rpmh_master_stat: APSS(1048,sleep:234s) \n[ 1594.800727] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1594.800757] [K][PM] power PM Statistic done\n[ 1599.840446] [K][PM] power PM Statistic start (02-04 09:11:59)\n[ 1599.840498] [K] wakeup_source: \n[ 1599.840668] rpmh_master_stat: APSS(1048,sleep:234s) \n[ 1599.840720] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1599.840748] [K][PM] power PM Statistic done\n[ 1604.880427] [K][PM] power PM Statistic start (02-04 09:12:04)\n[ 1604.880479] [K] wakeup_source: \n[ 1604.880651] rpmh_master_stat: APSS(1048,sleep:234s) \n[ 1604.880703] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1604.880732] [K][PM] power PM Statistic done\n[ 1609.929564] 14354     7.8 C/MHz    605 mW   12.6 J   23.7 I/mJ    20.9 s\n               1939: \n[ 1609.929753] [K][PM] power PM Statistic start (02-04 09:12:09)\n[ 1609.929845] [K] wakeup_source: \n[ 1609.930017] rpmh_master_stat: APSS(1049,sleep:234s) \n[ 1609.930124] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1609.930154] [K][PM] power PM Statistic done\n[ 1614.961428] [K][PM] power PM Statistic start (02-04 09:12:14)\n[ 1614.961492] [K] wakeup_source: \n[ 1614.961665] rpmh_master_stat: APSS(1066,sleep:239s) \n[ 1614.961719] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1614.961749] [K][PM] power PM Statistic done\n[ 1620.000389] [K][PM] power PM Statistic start (02-04 09:12:19)\n[ 1620.000454] [K] wakeup_source: \n[ 1620.000634] rpmh_master_stat: APSS(1086,sleep:242s) \n[ 1620.000686] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1620.000716] [K][PM] power PM Statistic done\n[ 1625.040387] [K][PM] power PM Statistic start (02-04 09:12:24)\n[ 1625.040444] [K] wakeup_source: \n[ 1625.040621] rpmh_master_stat: APSS(1086,sleep:242s) \n[ 1625.040671] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1625.040701] [K][PM] power PM Statistic done\n[ 1630.080386] [K][PM] power PM Statistic start (02-04 09:12:29)\n[ 1630.080441] [K] wakeup_source: \n[ 1630.080613] rpmh_master_stat: APSS(1086,sleep:242s) \n[ 1630.080665] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1630.080695] [K][PM] power PM Statistic done\n[ 1635.120385] [K][PM] power PM Statistic start (02-04 09:12:34)\n[ 1635.120437] [K] wakeup_source: \n[ 1635.120608] rpmh_master_stat: APSS(1086,sleep:242s) \n[ 1635.120658] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1635.120688] [K][PM] power PM Statistic done\n[ 1638.078582] 15101     7.8 C/MHz    667 mW   13.3 J   22.6 I/mJ    19.9 s\n               2169: \n[ 1640.161482] [K][PM] power PM Statistic start (02-04 09:12:39)\n[ 1640.161577] [K] wakeup_source: \n[ 1640.161749] rpmh_master_stat: APSS(1093,sleep:244s) \n[ 1640.161802] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1640.161833] [K][PM] power PM Statistic done\n[ 1645.201442] [K][PM] power PM Statistic start (02-04 09:12:44)\n[ 1645.201507] [K] wakeup_source: \n[ 1645.201680] rpmh_master_stat: APSS(1117,sleep:249s) \n[ 1645.201732] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1645.201763] [K][PM] power PM Statistic done\n[ 1650.240422] [K][PM] power PM Statistic start (02-04 09:12:49)\n[ 1650.240488] [K] wakeup_source: \n[ 1650.240665] rpmh_master_stat: APSS(1124,sleep:250s) \n[ 1650.240717] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1650.240747] [K][PM] power PM Statistic done\n[ 1655.280404] [K][PM] power PM Statistic start (02-04 09:12:54)\n[ 1655.280461] [K] wakeup_source: \n[ 1655.280645] rpmh_master_stat: APSS(1124,sleep:250s) \n[ 1655.280699] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1655.280730] [K][PM] power PM Statistic done\n[ 1660.320416] [K][PM] power PM Statistic start (02-04 09:12:59)\n[ 1660.320467] [K] wakeup_source: \n[ 1660.320640] rpmh_master_stat: APSS(1124,sleep:250s) \n[ 1660.320691] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1660.320720] [K][PM] power PM Statistic done\n[ 1664.207011] 16893     7.8 C/MHz    880 mW   15.6 J   19.2 I/mJ    17.8 s\n               2208: \n[ 1665.361447] [K][PM] power PM Statistic start (02-04 09:13:04)\n[ 1665.361544] [K] wakeup_source: \n[ 1665.361716] rpmh_master_stat: APSS(1129,sleep:251s) \n[ 1665.361769] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1665.361800] [K][PM] power PM Statistic done\n[ 1670.401417] [K][PM] power PM Statistic start (02-04 09:13:09)\n[ 1670.401480] [K] wakeup_source: \n[ 1670.401655] rpmh_master_stat: APSS(1152,sleep:256s) \n[ 1670.401709] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1670.401739] [K][PM] power PM Statistic done\n[ 1675.440387] [K][PM] power PM Statistic start (02-04 09:13:14)\n[ 1675.440451] [K] wakeup_source: \n[ 1675.440624] rpmh_master_stat: APSS(1164,sleep:257s) \n[ 1675.440677] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1675.440706] [K][PM] power PM Statistic done\n[ 1680.480454] [K][PM] power PM Statistic start (02-04 09:13:19)\n[ 1680.480510] [K] wakeup_source: \n[ 1680.480679] rpmh_master_stat: APSS(1164,sleep:257s) \n[ 1680.480730] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1680.480758] [K][PM] power PM Statistic done\n[ 1685.520400] [K][PM] power PM Statistic start (02-04 09:13:24)\n[ 1685.520460] [K] wakeup_source: \n[ 1685.520646] rpmh_master_stat: APSS(1164,sleep:257s) \n[ 1685.520698] msm_rpmstats_stats_dump: (aosd,0,sleep:0s) (cxsd,0,sleep:0s) (ddr ,0,sleep:0s) \n[ 1685.520730] [K][PM] power PM Statistic done\n[ 1690.088703] IRQ 6: no longer affine to CPU6\n[ 1690.089046] CPU6: shutdown\n[ 1690.122742] 17198     7.8 C/MHz    897 mW   15.7 J   19.1 I/mJ    17.5 s\n               \n               \n               Benchmark finished!\n[ 1690.154484] \n               real\t28m7.663s\n               user\t23m37.638s\n               sys\t0m2.590s\n"
  },
  {
    "path": "results/sm7150ab/sunfish/post_bench_interrupts.txt",
    "content": "           CPU0       \n  4:      56924   PDC-GIC  19 Level     arch_timer\n  6:      29426   PDC-GIC  38 Level     arch_mem_timer\n  8:          0   PDC-GIC  21 Level     arm-pmu\n  9:          0   PDC-GIC  82 Level     arm_dsu_0\n 26:          0   PDC-GIC 323 Level     ngd_slim_irq\n 28:          0   PDC-GIC  32 Edge      apps_wdog_bark\n 30:          0   PDC-GIC 524 Level     eud_irq\n 31:          0   PDC-GIC  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 32:          0   PDC-GIC  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 33:          0   PDC-GIC 538 Level     tsens-upper-lower\n 34:          0   PDC-GIC 540 Level     tsens-critical\n 35:          0   PDC-GIC 539 Level     tsens-upper-lower\n 36:          0   PDC-GIC 541 Level     tsens-critical\n 37:        238   PDC-GIC  37 Level     apps_rsc\n 38:          0   PDC-GIC 161 Level     display_rsc\n 39:          0   PDC-GIC 620 Edge      qcom,qmp-npu-low\n 40:          0   PDC-GIC 621 Edge      qcom,qmp-npu-high\n 41:          5   PDC-GIC 421 Edge      qcom,qmp-aop\n 42:          0   PDC-GIC 483 Edge      smp2p\n 43:          0   PDC-GIC 204 Edge      smp2p\n 44:          0   PDC-GIC 608 Edge      smp2p\n 47:        335   PDC-GIC 297 Edge      1d84000.ufshc\n 48:          0   PDC-GIC 194 Edge      adsp\n 49:          0   PDC-GIC 304 Level     sps\n 51:          0  pmic_arb 8388807 Edge      pon_kpdpwr_status\n 52:          0  pmic_arb 8454343 Edge      pon_resin_status\n 53:        281  pmic_arb 51380437 Edge      pm-adc5\n 54:          0  pmic_arb 55574742 Edge      thr-int-en\n 55:          0  pmic_arb 24117455 Edge      sig-tx\n 56:          0  pmic_arb 24182991 Edge      sig-rx\n 57:          0  pmic_arb 24248527 Edge      msg-tx\n 58:          0  pmic_arb 24314063 Edge      msg-rx\n 59:          0  pmic_arb 24379599 Edge      msg-tx-failed\n 60:          0  pmic_arb 24445135 Edge      msg-tx-discarded\n 61:          0  pmic_arb 24510671 Edge      msg-rx-discarded\n 63:          0   PDC-GIC 610 Edge      cdsp\n 67:          0   PDC-GIC 298 Edge      modem\n 68:          0  pmic_arb 37748948 Edge      qcom,temp-alarm\n 88:          0  pmic_arb 1111490794 Edge      qcom,temp-alarm\n 94:         11  pmic_arb 1125122283 Edge      pm-adc5\n 95:          0  pmic_arb 1129316588 Edge      thr-int-en\n 98:          0  pmic_arb 1276117232 Edge      volume_up\n110:          0  pmic_arb 1563427082 Edge      qpnp_flash_led_fault_irq\n111:          0  pmic_arb 1563623690 Edge      qpnp_flash_led_all_ramp_down_done_irq\n112:          0  pmic_arb 1563689226 Edge      qpnp_flash_led_all_ramp_up_done_irq\n113:          0   PDC-GIC 397 Level     arm-smmu-context-fault\n114:         66   PDC-GIC 635 Level     i2c_geni\n116:          0   PDC-GIC 633 Level     spi_geni\n117:          0   PDC-GIC 634 Level     spi_geni\n119:         21   PDC-GIC 386 Level     i2c_geni\n120:       1160   PDC-GIC 388 Level     i2c_geni\n121:          0   PDC-GIC 206 Level     msm_vidc\n122:          0   PDC-GIC 115 Edge      msm_drm\n123:          0   PDC-GIC 509 Edge      csiphy\n124:          0   PDC-GIC 510 Edge      csiphy\n125:          0   PDC-GIC 511 Edge      csiphy\n126:          0   PDC-GIC 639 Edge      csiphy\n127:          0   PDC-GIC 492 Edge      cci\n128:          1   PDC-GIC 500 Edge      cpas-cdm\n129:          0   PDC-GIC 496 Edge      csid\n130:          2   PDC-GIC 497 Edge      ife\n131:          0   PDC-GIC 498 Edge      csid\n132:          2   PDC-GIC 499 Edge      ife\n133:          0   PDC-GIC 470 Edge      csid-lite\n134:          2   PDC-GIC 466 Edge      ife-lite\n135:          0   PDC-GIC 495 Edge      a5\n136:          0   PDC-GIC 506 Edge      jpeg\n137:          0   PDC-GIC 507 Edge      jpegdma\n138:          2   PDC-GIC 494 Edge      fd\n139:          1   PDC-GIC 508 Edge      lrme\n140:          0   PDC-GIC 491 Edge      cpas_camnoc\n141:          0   PDC-GIC 261 Level     arm-smmu global fault\n142:          0   PDC-GIC 263 Level     arm-smmu global fault\n143:          0   PDC-GIC 396 Level     arm-smmu-context-fault\n144:          0   PDC-GIC 398 Level     arm-smmu-context-fault\n145:          0   PDC-GIC 399 Level     arm-smmu-context-fault\n150:          0   PDC-GIC  97 Level     arm-smmu global fault\n152:          0   PDC-GIC 129 Level     arm-smmu-context-fault\n154:          0   PDC-GIC 131 Level     arm-smmu-context-fault\n155:          0   PDC-GIC 132 Level     arm-smmu-context-fault\n156:          0   PDC-GIC 133 Level     arm-smmu-context-fault\n157:          0   PDC-GIC 134 Level     arm-smmu-context-fault\n158:          0   PDC-GIC 135 Level     arm-smmu-context-fault\n159:          0   PDC-GIC 136 Level     arm-smmu-context-fault\n160:          0   PDC-GIC 137 Level     arm-smmu-context-fault\n161:          0   PDC-GIC 138 Level     arm-smmu-context-fault\n162:          0   PDC-GIC 139 Level     arm-smmu-context-fault\n163:          0   PDC-GIC 140 Level     arm-smmu-context-fault\n164:          0   PDC-GIC 141 Level     arm-smmu-context-fault\n165:          0   PDC-GIC 142 Level     arm-smmu-context-fault\n166:          0   PDC-GIC 143 Level     arm-smmu-context-fault\n167:          0   PDC-GIC 144 Level     arm-smmu-context-fault\n168:          0   PDC-GIC 145 Level     arm-smmu-context-fault\n169:          0   PDC-GIC 146 Level     arm-smmu-context-fault\n170:          0   PDC-GIC 147 Level     arm-smmu-context-fault\n171:          0   PDC-GIC 148 Level     arm-smmu-context-fault\n172:          0   PDC-GIC 149 Level     arm-smmu-context-fault\n173:          0   PDC-GIC 150 Level     arm-smmu-context-fault\n174:          0   PDC-GIC 213 Level     arm-smmu-context-fault\n175:          0   PDC-GIC 214 Level     arm-smmu-context-fault\n176:          0   PDC-GIC 215 Level     arm-smmu-context-fault\n177:          0   PDC-GIC 216 Level     arm-smmu-context-fault\n178:          0   PDC-GIC 217 Level     arm-smmu-context-fault\n179:          0   PDC-GIC 218 Level     arm-smmu-context-fault\n180:          0   PDC-GIC 219 Level     arm-smmu-context-fault\n181:          0   PDC-GIC 220 Level     arm-smmu-context-fault\n182:          0   PDC-GIC 221 Level     arm-smmu-context-fault\n183:          0   PDC-GIC 222 Level     arm-smmu-context-fault\n184:          0   PDC-GIC 223 Level     arm-smmu-context-fault\n185:          0   PDC-GIC 224 Level     arm-smmu-context-fault\n186:          0   PDC-GIC 347 Level     arm-smmu-context-fault\n187:          0   PDC-GIC 348 Level     arm-smmu-context-fault\n237:          0  msmgpio-dc   4 Edge      spi2.0\n243:          1  msmgpio-dc   9 Level     fts\n245:          0  msmgpio-dc  10 Edge      TE_GPIO\n255:          1  msmgpio-dc  30 Level     rt5514-switch-ack\n305:          0  msmgpio-dc  64 Level     cs35l41\n307:          0  msmgpio-dc  65 Level     cs35l41\n339:          2  msmgpio-dc  90 Edge      soc:fp_fpc1020\n347:          0  msmgpio-dc  94 Edge      st21nfc_pw_stats_idle_handle\n373:          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n374:          1   PDC-GIC 162 Edge      pwr_event_irq\n375:          0   PDC-GIC 518 Level     ss_phy_irq\n376:          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n377:          0   PDC-GIC 332 Level     kgsl-3d0\n378:          0   PDC-GIC 336 Level     HFI\n379:          0   PDC-GIC 337 Level     GMU\n380:          0   PDC-GIC 615 Edge      error_irq\n381:          0   PDC-GIC 617 Edge      wdg_bite_irq\n382:          0   PDC-GIC 619 Level     ipc_irq\n383:          0   PDC-GIC  64 Level     limits_sensor-00\n384:          0   PDC-GIC  65 Level     limits_sensor-01\n385:          0     smp2p   2 Edge      adsp\n386:          0     smp2p   0 Edge      adsp\n387:          0     smp2p   1 Edge      error_ready_interrupt\n388:          0     smp2p   3 Edge      adsp\n389:          0     smp2p   2 Edge      cdsp\n390:          0     smp2p   0 Edge      cdsp\n391:          0     smp2p   1 Edge      error_ready_interrupt\n392:          0     smp2p   3 Edge      cdsp\n393:          0     smp2p   2 Edge      modem\n394:          0     smp2p   0 Edge      modem\n395:          0     smp2p   1 Edge      error_ready_interrupt\n396:          0     smp2p   3 Edge      modem\n397:          0     smp2p   7 Edge      modem\n398:          0     smp2p   0 Edge      smp2p_sleepstate\n401:          0       sde   4 Edge      dsi_ctrl\n402:          0   PDC-GIC 165 Edge      dwc3\n404:          0  pmic_arb 101777626 Edge      qpnp_rtc_alarm\n405:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n407:          0  pmic_arb 75563224 Edge      qg-vbat-low\n408:          0  pmic_arb 75628760 Edge      qg-vbat-empty\n409:        134  pmic_arb 75694296 Edge      qg-fifo-done\n410:          0  pmic_arb 75759832 Edge      qg-good-ocv\n411:          0  pmic_arb 17825993 Edge      otg-fail\n415:          0  pmic_arb 18088137 Edge      high-duty-cycle\n416:          0  pmic_arb 18153673 Edge      input-current-limiting\n418:          0  pmic_arb 18284745 Edge      switcher-power-ok\n419:          0  pmic_arb 19923147 Edge      usbin-collapse\n420:          0  pmic_arb 19988683 Edge      usbin-vashdn\n421:          0  pmic_arb 20054219 Edge      usbin-uv\n422:          0  pmic_arb 20119755 Edge      usbin-ov\n423:          0  pmic_arb 20185291 Edge      usbin-plugin\n425:          0  pmic_arb 20316363 Edge      usbin-src-change\n426:          0  pmic_arb 20381899 Edge      usbin-icl-change\n428:          0  pmic_arb 21102796 Edge      dcin-uv\n429:          0  pmic_arb 21168332 Edge      dcin-ov\n430:          0  pmic_arb 21233868 Edge      dcin-plugin\n432:          0  pmic_arb 21364940 Edge      dcin-pon\n433:          0  pmic_arb 21430476 Edge      dcin-en\n434:          0  pmic_arb 22020301 Edge      typec-or-rid-detect-change\n436:          0  pmic_arb 22151373 Edge      typec-cc-state-change\n437:          0  pmic_arb 22216909 Edge      typec-vconn-oc\n439:          0  pmic_arb 22347981 Edge      typec-attach-detach\n440:          0  pmic_arb 22413517 Edge      typec-legacy-cable-detect\n442:          0  pmic_arb 23068878 Edge      wdog-snarl\n443:          0  pmic_arb 23134414 Edge      wdog-bark\n445:          0  pmic_arb 23265486 Edge      aicl-done\n446:          0  pmic_arb 23331022 Edge      smb-en\n448:          0  pmic_arb 23462094 Edge      temp-change\n450:          0  pmic_arb 185663708 Edge      sdam-sts\n451:          0  pmic_arb 16777416 Edge      chgr-error\n452:          0  pmic_arb 16842952 Edge      chg-state-change\n453:          0  pmic_arb 18874570 Edge      bat-temp\n454:          0  pmic_arb 19005642 Edge      bat-ov\n455:          0  pmic_arb 19071178 Edge      bat-low\n456:          0  pmic_arb 19136714 Edge      bat-therm-or-id-missing\n457:          0  pmic_arb 19202250 Edge      bat-terminal-missing\nIPI0:     37807       Rescheduling interrupts\nIPI1:        60       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         4       Timer broadcast interrupts\nIPI5:         0       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm7150ab/sunfish/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  4:        222        134         21         25         39         18         94        208   PDC-GIC  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   PDC-GIC  38 Level     arch_mem_timer\n  8:          0          0          0          0          0          0          0          0   PDC-GIC  21 Level     arm-pmu\n  9:          0          0          0          0          0          0          0          0   PDC-GIC  82 Level     arm_dsu_0\n 26:          0          0          0          0          0          0          0          0   PDC-GIC 323 Level     ngd_slim_irq\n 28:          0          0          0          0          0          0          0          0   PDC-GIC  32 Edge      apps_wdog_bark\n 30:          0          0          0          0          0          0          0          0   PDC-GIC 524 Level     eud_irq\n 31:          0          0          0          0          0          0          0          0   PDC-GIC  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 32:          0          0          0          0          0          0          0          0   PDC-GIC  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 33:          0          0          0          0          0          0          0          0   PDC-GIC 538 Level     tsens-upper-lower\n 34:          0          0          0          0          0          0          0          0   PDC-GIC 540 Level     tsens-critical\n 35:          0          0          0          0          0          0          0          0   PDC-GIC 539 Level     tsens-upper-lower\n 36:          0          0          0          0          0          0          0          0   PDC-GIC 541 Level     tsens-critical\n 37:        224          0          0          0          0          0          0          0   PDC-GIC  37 Level     apps_rsc\n 38:          0          0          0          0          0          0          0          0   PDC-GIC 161 Level     display_rsc\n 39:          0          0          0          0          0          0          0          0   PDC-GIC 620 Edge      qcom,qmp-npu-low\n 40:          0          0          0          0          0          0          0          0   PDC-GIC 621 Edge      qcom,qmp-npu-high\n 41:          5          0          0          0          0          0          0          0   PDC-GIC 421 Edge      qcom,qmp-aop\n 42:          0          0          0          0          0          0          0          0   PDC-GIC 483 Edge      smp2p\n 43:          0          0          0          0          0          0          0          0   PDC-GIC 204 Edge      smp2p\n 44:          0          0          0          0          0          0          0          0   PDC-GIC 608 Edge      smp2p\n 47:        326          0          0          0          0          0          0          0   PDC-GIC 297 Edge      1d84000.ufshc\n 48:          0          0          0          0          0          0          0          0   PDC-GIC 194 Edge      adsp\n 49:          0          0          0          0          0          0          0          0   PDC-GIC 304 Level     sps\n 51:          0          0          0          0          0          0          0          0  pmic_arb 8388807 Edge      pon_kpdpwr_status\n 52:          0          0          0          0          0          0          0          0  pmic_arb 8454343 Edge      pon_resin_status\n 53:         33          0          0          0          0          0          0          0  pmic_arb 51380437 Edge      pm-adc5\n 54:          0          0          0          0          0          0          0          0  pmic_arb 55574742 Edge      thr-int-en\n 55:          0          0          0          0          0          0          0          0  pmic_arb 24117455 Edge      sig-tx\n 56:          0          0          0          0          0          0          0          0  pmic_arb 24182991 Edge      sig-rx\n 57:          0          0          0          0          0          0          0          0  pmic_arb 24248527 Edge      msg-tx\n 58:          0          0          0          0          0          0          0          0  pmic_arb 24314063 Edge      msg-rx\n 59:          0          0          0          0          0          0          0          0  pmic_arb 24379599 Edge      msg-tx-failed\n 60:          0          0          0          0          0          0          0          0  pmic_arb 24445135 Edge      msg-tx-discarded\n 61:          0          0          0          0          0          0          0          0  pmic_arb 24510671 Edge      msg-rx-discarded\n 63:          0          0          0          0          0          0          0          0   PDC-GIC 610 Edge      cdsp\n 67:          0          0          0          0          0          0          0          0   PDC-GIC 298 Edge      modem\n 68:          0          0          0          0          0          0          0          0  pmic_arb 37748948 Edge      qcom,temp-alarm\n 88:          0          0          0          0          0          0          0          0  pmic_arb 1111490794 Edge      qcom,temp-alarm\n 94:         11          0          0          0          0          0          0          0  pmic_arb 1125122283 Edge      pm-adc5\n 95:          0          0          0          0          0          0          0          0  pmic_arb 1129316588 Edge      thr-int-en\n 98:          0          0          0          0          0          0          0          0  pmic_arb 1276117232 Edge      volume_up\n110:          0          0          0          0          0          0          0          0  pmic_arb 1563427082 Edge      qpnp_flash_led_fault_irq\n111:          0          0          0          0          0          0          0          0  pmic_arb 1563623690 Edge      qpnp_flash_led_all_ramp_down_done_irq\n112:          0          0          0          0          0          0          0          0  pmic_arb 1563689226 Edge      qpnp_flash_led_all_ramp_up_done_irq\n113:          0          0          0          0          0          0          0          0   PDC-GIC 397 Level     arm-smmu-context-fault\n114:         66          0          0          0          0          0          0          0   PDC-GIC 635 Level     i2c_geni\n116:          0          0          0          0          0          0          0          0   PDC-GIC 633 Level     spi_geni\n117:          0          0          0          0          0          0          0          0   PDC-GIC 634 Level     spi_geni\n119:          9          0          0          0          0          0          0          0   PDC-GIC 386 Level     i2c_geni\n120:       1160          0          0          0          0          0          0          0   PDC-GIC 388 Level     i2c_geni\n121:          0          0          0          0          0          0          0          0   PDC-GIC 206 Level     msm_vidc\n122:          0          0          0          0          0          0          0          0   PDC-GIC 115 Edge      msm_drm\n123:          0          0          0          0          0          0          0          0   PDC-GIC 509 Edge      csiphy\n124:          0          0          0          0          0          0          0          0   PDC-GIC 510 Edge      csiphy\n125:          0          0          0          0          0          0          0          0   PDC-GIC 511 Edge      csiphy\n126:          0          0          0          0          0          0          0          0   PDC-GIC 639 Edge      csiphy\n127:          0          0          0          0          0          0          0          0   PDC-GIC 492 Edge      cci\n128:          1          0          0          0          0          0          0          0   PDC-GIC 500 Edge      cpas-cdm\n129:          0          0          0          0          0          0          0          0   PDC-GIC 496 Edge      csid\n130:          2          0          0          0          0          0          0          0   PDC-GIC 497 Edge      ife\n131:          0          0          0          0          0          0          0          0   PDC-GIC 498 Edge      csid\n132:          2          0          0          0          0          0          0          0   PDC-GIC 499 Edge      ife\n133:          0          0          0          0          0          0          0          0   PDC-GIC 470 Edge      csid-lite\n134:          2          0          0          0          0          0          0          0   PDC-GIC 466 Edge      ife-lite\n135:          0          0          0          0          0          0          0          0   PDC-GIC 495 Edge      a5\n136:          0          0          0          0          0          0          0          0   PDC-GIC 506 Edge      jpeg\n137:          0          0          0          0          0          0          0          0   PDC-GIC 507 Edge      jpegdma\n138:          2          0          0          0          0          0          0          0   PDC-GIC 494 Edge      fd\n139:          1          0          0          0          0          0          0          0   PDC-GIC 508 Edge      lrme\n140:          0          0          0          0          0          0          0          0   PDC-GIC 491 Edge      cpas_camnoc\n141:          0          0          0          0          0          0          0          0   PDC-GIC 261 Level     arm-smmu global fault\n142:          0          0          0          0          0          0          0          0   PDC-GIC 263 Level     arm-smmu global fault\n143:          0          0          0          0          0          0          0          0   PDC-GIC 396 Level     arm-smmu-context-fault\n144:          0          0          0          0          0          0          0          0   PDC-GIC 398 Level     arm-smmu-context-fault\n145:          0          0          0          0          0          0          0          0   PDC-GIC 399 Level     arm-smmu-context-fault\n150:          0          0          0          0          0          0          0          0   PDC-GIC  97 Level     arm-smmu global fault\n152:          0          0          0          0          0          0          0          0   PDC-GIC 129 Level     arm-smmu-context-fault\n154:          0          0          0          0          0          0          0          0   PDC-GIC 131 Level     arm-smmu-context-fault\n155:          0          0          0          0          0          0          0          0   PDC-GIC 132 Level     arm-smmu-context-fault\n156:          0          0          0          0          0          0          0          0   PDC-GIC 133 Level     arm-smmu-context-fault\n157:          0          0          0          0          0          0          0          0   PDC-GIC 134 Level     arm-smmu-context-fault\n158:          0          0          0          0          0          0          0          0   PDC-GIC 135 Level     arm-smmu-context-fault\n159:          0          0          0          0          0          0          0          0   PDC-GIC 136 Level     arm-smmu-context-fault\n160:          0          0          0          0          0          0          0          0   PDC-GIC 137 Level     arm-smmu-context-fault\n161:          0          0          0          0          0          0          0          0   PDC-GIC 138 Level     arm-smmu-context-fault\n162:          0          0          0          0          0          0          0          0   PDC-GIC 139 Level     arm-smmu-context-fault\n163:          0          0          0          0          0          0          0          0   PDC-GIC 140 Level     arm-smmu-context-fault\n164:          0          0          0          0          0          0          0          0   PDC-GIC 141 Level     arm-smmu-context-fault\n165:          0          0          0          0          0          0          0          0   PDC-GIC 142 Level     arm-smmu-context-fault\n166:          0          0          0          0          0          0          0          0   PDC-GIC 143 Level     arm-smmu-context-fault\n167:          0          0          0          0          0          0          0          0   PDC-GIC 144 Level     arm-smmu-context-fault\n168:          0          0          0          0          0          0          0          0   PDC-GIC 145 Level     arm-smmu-context-fault\n169:          0          0          0          0          0          0          0          0   PDC-GIC 146 Level     arm-smmu-context-fault\n170:          0          0          0          0          0          0          0          0   PDC-GIC 147 Level     arm-smmu-context-fault\n171:          0          0          0          0          0          0          0          0   PDC-GIC 148 Level     arm-smmu-context-fault\n172:          0          0          0          0          0          0          0          0   PDC-GIC 149 Level     arm-smmu-context-fault\n173:          0          0          0          0          0          0          0          0   PDC-GIC 150 Level     arm-smmu-context-fault\n174:          0          0          0          0          0          0          0          0   PDC-GIC 213 Level     arm-smmu-context-fault\n175:          0          0          0          0          0          0          0          0   PDC-GIC 214 Level     arm-smmu-context-fault\n176:          0          0          0          0          0          0          0          0   PDC-GIC 215 Level     arm-smmu-context-fault\n177:          0          0          0          0          0          0          0          0   PDC-GIC 216 Level     arm-smmu-context-fault\n178:          0          0          0          0          0          0          0          0   PDC-GIC 217 Level     arm-smmu-context-fault\n179:          0          0          0          0          0          0          0          0   PDC-GIC 218 Level     arm-smmu-context-fault\n180:          0          0          0          0          0          0          0          0   PDC-GIC 219 Level     arm-smmu-context-fault\n181:          0          0          0          0          0          0          0          0   PDC-GIC 220 Level     arm-smmu-context-fault\n182:          0          0          0          0          0          0          0          0   PDC-GIC 221 Level     arm-smmu-context-fault\n183:          0          0          0          0          0          0          0          0   PDC-GIC 222 Level     arm-smmu-context-fault\n184:          0          0          0          0          0          0          0          0   PDC-GIC 223 Level     arm-smmu-context-fault\n185:          0          0          0          0          0          0          0          0   PDC-GIC 224 Level     arm-smmu-context-fault\n186:          0          0          0          0          0          0          0          0   PDC-GIC 347 Level     arm-smmu-context-fault\n187:          0          0          0          0          0          0          0          0   PDC-GIC 348 Level     arm-smmu-context-fault\n237:          0          0          0          0          0          0          0          0  msmgpio-dc   4 Edge      spi2.0\n245:          0          0          0          0          0          0          0          0  msmgpio-dc  10 Edge      TE_GPIO\n255:          1          0          0          0          0          0          0          0  msmgpio-dc  30 Level     rt5514-switch-ack\n305:          0          0          0          0          0          0          0          0  msmgpio-dc  64 Level     cs35l41\n307:          0          0          0          0          0          0          0          0  msmgpio-dc  65 Level     cs35l41\n339:          2          0          0          0          0          0          0          0  msmgpio-dc  90 Edge      soc:fp_fpc1020\n347:          0          0          0          0          0          0          0          0  msmgpio-dc  94 Edge      st21nfc_pw_stats_idle_handle\n373:          0          0          0          0          0          0          0          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n374:          1          0          0          0          0          0          0          0   PDC-GIC 162 Edge      pwr_event_irq\n375:          0          0          0          0          0          0          0          0   PDC-GIC 518 Level     ss_phy_irq\n376:          0          0          0          0          0          0          0          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n377:          0          0          0          0          0          0          0          0   PDC-GIC 332 Level     kgsl-3d0\n378:          0          0          0          0          0          0          0          0   PDC-GIC 336 Level     HFI\n379:          0          0          0          0          0          0          0          0   PDC-GIC 337 Level     GMU\n380:          0          0          0          0          0          0          0          0   PDC-GIC 615 Edge      error_irq\n381:          0          0          0          0          0          0          0          0   PDC-GIC 617 Edge      wdg_bite_irq\n382:          0          0          0          0          0          0          0          0   PDC-GIC 619 Level     ipc_irq\n383:          0          0          0          0          0          0          0          0   PDC-GIC  64 Level     limits_sensor-00\n384:          0          0          0          0          0          0          0          0   PDC-GIC  65 Level     limits_sensor-01\n385:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n386:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n387:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n388:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n389:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n390:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n391:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n392:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n393:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n394:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n395:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n396:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n397:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n398:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n401:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n402:          0          0          0          0          0          0          0          0   PDC-GIC 165 Edge      dwc3\n404:          0          0          0          0          0          0          0          0  pmic_arb 101777626 Edge      qpnp_rtc_alarm\n405:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n407:          0          0          0          0          0          0          0          0  pmic_arb 75563224 Edge      qg-vbat-low\n408:          0          0          0          0          0          0          0          0  pmic_arb 75628760 Edge      qg-vbat-empty\n409:          0          0          0          0          0          0          0          0  pmic_arb 75694296 Edge      qg-fifo-done\n410:          0          0          0          0          0          0          0          0  pmic_arb 75759832 Edge      qg-good-ocv\n411:          0          0          0          0          0          0          0          0  pmic_arb 17825993 Edge      otg-fail\n415:          0          0          0          0          0          0          0          0  pmic_arb 18088137 Edge      high-duty-cycle\n416:          0          0          0          0          0          0          0          0  pmic_arb 18153673 Edge      input-current-limiting\n418:          0          0          0          0          0          0          0          0  pmic_arb 18284745 Edge      switcher-power-ok\n419:          0          0          0          0          0          0          0          0  pmic_arb 19923147 Edge      usbin-collapse\n420:          0          0          0          0          0          0          0          0  pmic_arb 19988683 Edge      usbin-vashdn\n421:          0          0          0          0          0          0          0          0  pmic_arb 20054219 Edge      usbin-uv\n422:          0          0          0          0          0          0          0          0  pmic_arb 20119755 Edge      usbin-ov\n423:          0          0          0          0          0          0          0          0  pmic_arb 20185291 Edge      usbin-plugin\n425:          0          0          0          0          0          0          0          0  pmic_arb 20316363 Edge      usbin-src-change\n426:          0          0          0          0          0          0          0          0  pmic_arb 20381899 Edge      usbin-icl-change\n428:          0          0          0          0          0          0          0          0  pmic_arb 21102796 Edge      dcin-uv\n429:          0          0          0          0          0          0          0          0  pmic_arb 21168332 Edge      dcin-ov\n430:          0          0          0          0          0          0          0          0  pmic_arb 21233868 Edge      dcin-plugin\n432:          0          0          0          0          0          0          0          0  pmic_arb 21364940 Edge      dcin-pon\n433:          0          0          0          0          0          0          0          0  pmic_arb 21430476 Edge      dcin-en\n434:          0          0          0          0          0          0          0          0  pmic_arb 22020301 Edge      typec-or-rid-detect-change\n436:          0          0          0          0          0          0          0          0  pmic_arb 22151373 Edge      typec-cc-state-change\n437:          0          0          0          0          0          0          0          0  pmic_arb 22216909 Edge      typec-vconn-oc\n439:          0          0          0          0          0          0          0          0  pmic_arb 22347981 Edge      typec-attach-detach\n440:          0          0          0          0          0          0          0          0  pmic_arb 22413517 Edge      typec-legacy-cable-detect\n442:          0          0          0          0          0          0          0          0  pmic_arb 23068878 Edge      wdog-snarl\n443:          0          0          0          0          0          0          0          0  pmic_arb 23134414 Edge      wdog-bark\n445:          0          0          0          0          0          0          0          0  pmic_arb 23265486 Edge      aicl-done\n446:          0          0          0          0          0          0          0          0  pmic_arb 23331022 Edge      smb-en\n448:          0          0          0          0          0          0          0          0  pmic_arb 23462094 Edge      temp-change\n450:          0          0          0          0          0          0          0          0  pmic_arb 185663708 Edge      sdam-sts\n451:          0          0          0          0          0          0          0          0  pmic_arb 16777416 Edge      chgr-error\n452:          0          0          0          0          0          0          0          0  pmic_arb 16842952 Edge      chg-state-change\n453:          0          0          0          0          0          0          0          0  pmic_arb 18874570 Edge      bat-temp\n454:          0          0          0          0          0          0          0          0  pmic_arb 19005642 Edge      bat-ov\n455:          0          0          0          0          0          0          0          0  pmic_arb 19071178 Edge      bat-low\n456:          0          0          0          0          0          0          0          0  pmic_arb 19136714 Edge      bat-therm-or-id-missing\n457:          0          0          0          0          0          0          0          0  pmic_arb 19202250 Edge      bat-terminal-missing\nIPI0:       214        352        333        356        596        190        385        886       Rescheduling interrupts\nIPI1:        38         83         85         85         86         85         74         63       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         0          0          0          0          0          0          0          0       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm7150ab/sunfish/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    5 root      0:00 [kworker/0:0H]\n    6 root      0:00 [kworker/u16:0]\n    7 root      0:00 [mm_percpu_wq]\n    8 root      0:00 [ksoftirqd/0]\n    9 root      0:00 [rcu_preempt]\n   10 root      0:00 [rcu_sched]\n   11 root      0:00 [rcu_bh]\n   12 root      0:00 [rcuop/0]\n   13 root      0:00 [rcuos/0]\n   14 root      0:00 [rcuob/0]\n   15 root      0:00 [migration/0]\n   16 root      0:00 [watchdog/0]\n   17 root      0:00 [cpuhp/0]\n   18 root      0:00 [cpuhp/1]\n   19 root      0:00 [watchdog/1]\n   20 root      0:00 [migration/1]\n   21 root      0:00 [ksoftirqd/1]\n   23 root      0:00 [kworker/1:0H]\n   24 root      0:00 [rcuop/1]\n   25 root      0:00 [rcuos/1]\n   26 root      0:00 [rcuob/1]\n   27 root      0:00 [cpuhp/2]\n   28 root      0:00 [watchdog/2]\n   29 root      0:00 [migration/2]\n   30 root      0:00 [ksoftirqd/2]\n   31 root      0:00 [kworker/2:0]\n   32 root      0:00 [kworker/2:0H]\n   33 root      0:00 [rcuop/2]\n   34 root      0:00 [rcuos/2]\n   35 root      0:00 [rcuob/2]\n   36 root      0:00 [cpuhp/3]\n   37 root      0:00 [watchdog/3]\n   38 root      0:00 [migration/3]\n   39 root      0:00 [ksoftirqd/3]\n   40 root      0:00 [kworker/3:0]\n   41 root      0:00 [kworker/3:0H]\n   42 root      0:00 [rcuop/3]\n   43 root      0:00 [rcuos/3]\n   44 root      0:00 [rcuob/3]\n   45 root      0:00 [cpuhp/4]\n   46 root      0:00 [watchdog/4]\n   47 root      0:00 [migration/4]\n   48 root      0:00 [ksoftirqd/4]\n   49 root      0:00 [kworker/4:0]\n   50 root      0:00 [kworker/4:0H]\n   51 root      0:00 [rcuop/4]\n   52 root      0:00 [rcuos/4]\n   53 root      0:00 [rcuob/4]\n   54 root      0:00 [cpuhp/5]\n   55 root      0:00 [watchdog/5]\n   56 root      0:00 [migration/5]\n   57 root      0:00 [ksoftirqd/5]\n   58 root      0:00 [kworker/5:0]\n   59 root      0:00 [kworker/5:0H]\n   60 root      0:00 [rcuop/5]\n   61 root      0:00 [rcuos/5]\n   62 root      0:00 [rcuob/5]\n   63 root      0:00 [cpuhp/6]\n   64 root      0:00 [watchdog/6]\n   65 root      0:00 [migration/6]\n   66 root      0:00 [ksoftirqd/6]\n   68 root      0:00 [kworker/6:0H]\n   69 root      0:00 [rcuop/6]\n   70 root      0:00 [rcuos/6]\n   71 root      0:00 [rcuob/6]\n   72 root      0:00 [cpuhp/7]\n   73 root      0:00 [watchdog/7]\n   74 root      0:00 [migration/7]\n   75 root      0:00 [ksoftirqd/7]\n   77 root      0:00 [kworker/7:0H]\n   78 root      0:00 [rcuop/7]\n   79 root      0:00 [rcuos/7]\n   80 root      0:00 [rcuob/7]\n   81 root      0:00 [netns]\n   82 root      0:00 [ksuspend_mon]\n   83 root      0:00 [kworker/0:1]\n   84 root      0:00 [kworker/u16:1]\n   85 root      0:00 [kworker/u17:0]\n   86 root      0:00 [ipa_usb_wq]\n   87 root      0:00 [msm_watchdog]\n   88 root      0:00 [kworker/1:1]\n   89 root      0:00 [kworker/6:1]\n   90 root      0:00 [kworker/7:1]\n   91 root      0:00 [kworker/2:1]\n   92 root      0:00 [kworker/3:1]\n   93 root      0:00 [kworker/4:1]\n   94 root      0:00 [kworker/5:1]\n   95 root      0:00 [spi_wdsp]\n   96 root      0:00 [qmp_npu_qmp_low]\n   97 root      0:00 [qmp_npu_qmp_hig]\n   98 root      0:00 [qmp_aop]\n   99 root      0:00 [khungtaskd]\n  100 root      0:00 [oom_reaper]\n  101 root      0:00 [writeback]\n  102 root      0:00 [kcompactd0]\n  103 root      0:00 [crypto]\n  104 root      0:00 [kblockd]\n  105 root      0:00 [irq/141-arm-smm]\n  106 root      0:00 [irq/142-arm-smm]\n  107 root      0:00 [irq/150-arm-smm]\n  108 root      0:00 [irq/33-tsens-up]\n  109 root      0:00 [irq/34-tsens-cr]\n  110 root      0:00 [irq/35-tsens-up]\n  111 root      0:00 [irq/36-tsens-cr]\n  112 root      0:00 [edac-poller]\n  113 root      0:00 [system]\n  114 root      0:00 [ipa_power_mgmt]\n  115 root      0:00 [transport_power]\n  116 root      0:00 [ipa_pm_activate]\n  117 root      0:00 [devfreq_wq]\n  118 root      0:00 [cfg80211]\n  119 root      0:00 [watchdogd]\n  156 root      0:00 [kauditd]\n  157 root      0:00 [kswapd0]\n  158 root      0:00 [ecryptfs-kthrea]\n  218 root      0:00 [irq/155-arm-smm]\n  219 root      0:00 [irq/156-arm-smm]\n  220 root      0:00 [irq/42-smp2p]\n  221 root      0:00 [irq/43-smp2p]\n  222 root      0:00 [irq/44-smp2p]\n  223 root      0:00 [mem_share_svc]\n  224 root      0:00 [irq/157-arm-smm]\n  225 root      0:00 [cdsprm-wq]\n  226 root      0:00 [cdsprm-wq-delay]\n  227 root      0:00 [irq/158-arm-smm]\n  228 root      0:00 [irq/159-arm-smm]\n  229 root      0:00 [hwrng]\n  231 root      0:00 [diag_real_time_]\n  232 root      0:00 [diag_wq]\n  234 root      0:00 [DIAG_USB_diag]\n  235 root      0:00 [diag_cntl_wq]\n  236 root      0:00 [diag_dci_wq]\n  237 root      0:00 [MODEM_CNTL]\n  238 root      0:00 [MODEM_DATA]\n  239 root      0:00 [MODEM_CMD]\n  240 root      0:00 [MODEM_DCI]\n  241 root      0:00 [MODEM_DCI_CMD]\n  242 root      0:00 [LPASS_CNTL]\n  243 root      0:00 [LPASS_DATA]\n  244 root      0:00 [LPASS_CMD]\n  245 root      0:00 [LPASS_DCI]\n  246 root      0:00 [LPASS_DCI_CMD]\n  247 root      0:00 [WCNSS_CNTL]\n  248 root      0:00 [WCNSS_DATA]\n  249 root      0:00 [WCNSS_CMD]\n  250 root      0:00 [WCNSS_DCI]\n  251 root      0:00 [WCNSS_DCI_CMD]\n  252 root      0:00 [SENSORS_CNTL]\n  253 root      0:00 [SENSORS_DATA]\n  254 root      0:00 [SENSORS_CMD]\n  255 root      0:00 [SENSORS_DCI]\n  256 root      0:00 [SENSORS_DCI_CMD]\n  257 root      0:00 [DIAG_CTRL]\n  258 root      0:00 [DIAG_DATA]\n  259 root      0:00 [DIAG_CMD]\n  260 root      0:00 [DIAG_DCI_DATA]\n  261 root      0:00 [DIAG_DCI_CMD]\n  262 root      0:00 [CDSP_CNTL]\n  263 root      0:00 [CDSP_DATA]\n  264 root      0:00 [CDSP_CMD]\n  265 root      0:00 [CDSP_DCI]\n  266 root      0:00 [CDSP_DCI_CMD]\n  267 root      0:00 [NPU_CNTL]\n  268 root      0:00 [NPU_DATA]\n  269 root      0:00 [NPU_CMD]\n  270 root      0:00 [NPU_DCI]\n  271 root      0:00 [NPU_DCI_CMD]\n  272 root      0:00 [DIAG_RPMSG_DIAG]\n  273 root      0:00 [DIAG_RPMSG_DIAG]\n  274 root      0:00 [DIAG_RPMSG_DIAG]\n  275 root      0:00 [DIAG_RPMSG_DIAG]\n  276 root      0:00 [DIAG_RPMSG_DIAG]\n  277 root      0:00 [kworker/u16:2]\n  278 root      0:00 [kworker/u16:3]\n  279 root      0:00 [kworker/u16:4]\n  280 root      0:00 [kworker/u16:5]\n  281 root      0:00 [kworker/u16:6]\n  283 root      0:00 [dsi_dimming_wor]\n  285 root      0:00 [kgsl-workqueue]\n  286 root      0:00 [kgsl-mementry]\n  287 root      0:00 [kgsl_worker_thr]\n  288 root      0:00 [panel]\n  289 root      0:00 [kworker/u16:9]\n  290 root      0:00 [irq/154-arm-smm]\n  291 root      0:00 [irq/143-arm-smm]\n  292 root      0:00 [irq/113-arm-smm]\n  293 root      0:00 [irq/160-arm-smm]\n  294 root      0:00 [crtc_commit:105]\n  295 root      0:00 [crtc_event:105]\n  296 root      0:00 [crtc_commit:156]\n  297 root      0:00 [crtc_event:156]\n  298 root      0:00 [pp_event]\n  299 root      0:00 [irq/144-arm-smm]\n  300 root      0:00 [irq/145-arm-smm]\n  301 root      0:00 [qseecom-unreg-l]\n  302 root      0:00 [qseecom-unload-]\n  303 root      0:00 [irq/161-arm-smm]\n  304 root      0:00 [qcrypto_seq_res]\n  305 root      0:00 [kgsl-events]\n  306 root      0:00 [irq/162-arm-smm]\n  307 root      0:00 [kgsl_devfreq_wq]\n  310 root      0:00 [kworker/1:2]\n  329 root      0:00 [scsi_eh_0]\n  330 root      0:00 [scsi_tmf_0]\n  331 root      0:00 [spi0]\n  332 root      0:00 [ufs_pm_qos_0]\n  333 root      0:00 [spi2]\n  334 root      0:00 [ufs_clk_gating_]\n  335 root      0:00 [ufs_mgc_hibern8]\n  336 root      0:00 [bond0]\n  337 root      0:00 [ice-set-key]\n  343 root      0:00 [uether]\n  344 root      0:00 [k_ipa_usb]\n  347 root      0:00 [irq/339-soc:fp_]\n  348 root      0:00 [kdbgd]\n  350 root      0:00 [st_pstate_work]\n  351 root      0:00 [rot_commitq_0_0]\n  352 root      0:00 [rot_commitq_0_1]\n  353 root      0:00 [rot_doneq_0_0]\n  354 root      0:00 [rot_doneq_0_1]\n  355 root      0:00 [rot_fenceq_0_0]\n  356 root      0:00 [rot_fenceq_0_1]\n  357 root      0:00 [rot_fenceq_0_2]\n  358 root      0:00 [rot_fenceq_0_3]\n  359 root      0:00 [rot_fenceq_0_4]\n  360 root      0:00 [rot_fenceq_0_5]\n  361 root      0:00 [rot_fenceq_0_6]\n  362 root      0:00 [rot_fenceq_0_7]\n  363 root      0:00 [rot_fenceq_0_8]\n  364 root      0:00 [rot_fenceq_0_9]\n  365 root      0:00 [rot_fenceq_0_10]\n  366 root      0:00 [rot_fenceq_0_11]\n  367 root      0:00 [rot_fenceq_0_12]\n  368 root      0:00 [rot_fenceq_0_13]\n  369 root      0:00 [rot_fenceq_0_14]\n  370 root      0:00 [rot_fenceq_0_15]\n  371 root      0:00 [irq/152-arm-smm]\n  372 root      0:00 [msm_vidc_worker]\n  373 root      0:00 [pm_workerq_venu]\n  374 root      0:00 [irq/163-arm-smm]\n  375 root      0:00 [irq/164-arm-smm]\n  376 root      0:00 [irq/165-arm-smm]\n  377 root      0:00 [irq/166-arm-smm]\n  378 root      0:00 [cam-cpas]\n  380 root      0:00 [qcom,cam_virtua]\n  381 root      0:00 [irq/167-arm-smm]\n  382 root      0:00 [qcom,cam170-cpa]\n  383 root      0:00 [irq/168-arm-smm]\n  384 root      0:00 [cam_cci_wq]\n  385 root      0:00 [cam_cci_wq]\n  386 root      0:00 [cam_vsync_clien]\n  387 root      0:00 [irq/169-arm-smm]\n  388 root      0:00 [irq/170-arm-smm]\n  389 root      0:00 [irq/171-arm-smm]\n  390 root      0:00 [irq/172-arm-smm]\n  391 root      0:00 [kworker/u16:11]\n  392 root      0:00 [kworker/u16:12]\n  394 root      0:00 [irq/68-qcom,tem]\n  395 root      0:00 [irq/88-qcom,tem]\n  396 root      0:00 [irq/383-limits_]\n  397 root      0:00 [kworker/0:1H]\n  398 root      0:00 [irq/384-limits_]\n  399 root      0:00 [kworker/6:1H]\n  400 root      0:00 [dm_bufio_cache]\n  401 root      0:00 [irq/32-KRYO L3-]\n  402 root      0:00 [cds_recovery_wo]\n  403 root      0:00 [wlan_logging_th]\n  405 root      0:00 [irq/173-arm-smm]\n  406 root      0:00 [uaudio_svc]\n  407 root      0:00 [irq/255-rt5514-]\n  408 root      0:00 [apr_driver]\n  409 root      0:00 [cs35l41_ramp]\n  410 root      0:00 [irq/305-cs35l41]\n  411 root      0:00 [cs35l41]\n  413 root      0:00 [ipv6_addrconf]\n  414 root      0:00 [cs35l41_ramp]\n  415 root      0:00 [irq/307-cs35l41]\n  425 root      0:00 [irq/407-qg-vbat]\n  426 root      0:00 [irq/408-qg-vbat]\n  427 root      0:00 [irq/409-qg-fifo]\n  428 root      0:00 [irq/410-qg-good]\n  429 root      0:00 [c440000.qcom,sp]\n  430 root      0:00 [irq/411-otg-fai]\n  431 root      0:00 [irq/415-high-du]\n  433 root      0:00 [irq/416-input-c]\n  434 root      0:00 [irq/418-switche]\n  435 root      0:00 [irq/419-usbin-c]\n  436 root      0:00 [irq/420-usbin-v]\n  438 root      0:00 [irq/421-usbin-u]\n  440 root      0:00 [irq/422-usbin-o]\n  441 root      0:00 [irq/423-usbin-p]\n  442 root      0:00 [irq/425-usbin-s]\n  443 root      0:00 [irq/426-usbin-i]\n  444 root      0:00 [irq/428-dcin-uv]\n  445 root      0:00 [kworker/6:6]\n  446 root      0:00 [irq/429-dcin-ov]\n  448 root      0:00 [irq/430-dcin-pl]\n  450 root      0:00 [irq/432-dcin-po]\n  451 root      0:00 [irq/433-dcin-en]\n  452 root      0:00 [irq/434-typec-o]\n  453 root      0:00 [irq/436-typec-c]\n  454 root      0:00 [irq/437-typec-v]\n  455 root      0:00 [irq/439-typec-a]\n  456 root      0:00 [irq/440-typec-l]\n  457 root      0:00 [irq/442-wdog-sn]\n  458 root      0:00 [irq/443-wdog-ba]\n  459 root      0:00 [irq/445-aicl-do]\n  460 root      0:00 [irq/446-smb-en]\n  461 root      0:00 [irq/448-temp-ch]\n  462 root      0:00 [irq/450-sdam-st]\n  463 root      0:00 [irq/451-chgr-er]\n  464 root      0:00 [irq/452-chg-sta]\n  465 root      0:00 [irq/453-bat-tem]\n  466 root      0:00 [irq/454-bat-ov]\n  467 root      0:00 [irq/455-bat-low]\n  468 root      0:00 [irq/456-bat-the]\n  469 root      0:00 [irq/457-bat-ter]\n  470 root      0:00 [kworker/7:3]\n  471 root      0:00 [irq/54-thr-int-]\n  472 root      0:00 [cs35l41]\n  474 root      0:00 [irq/95-thr-int-]\n  481 root      0:00 [irq/55-sig-tx]\n  482 root      0:00 [irq/56-sig-rx]\n  483 root      0:00 [usbpd0]\n  484 root      0:00 [usbpd0]\n  485 root      0:00 [irq/374-pwr_eve]\n  486 root      0:00 [irq/373-dp_hs_p]\n  487 root      0:00 [irq/376-dm_hs_p]\n  488 root      0:00 [irq/375-ss_phy_]\n  489 root      0:00 [irq/174-arm-smm]\n  490 root      0:00 [usb_bam_wq]\n  499 root      0:00 [rq_stats]\n  501 root      0:00 [irq/175-arm-smm]\n  502 root      0:00 [irq/176-arm-smm]\n  503 root      0:00 [irq/177-arm-smm]\n  504 root      0:00 [irq/178-arm-smm]\n  505 root      0:00 [irq/179-arm-smm]\n  506 root      0:00 [irq/180-arm-smm]\n  507 root      0:00 [irq/181-arm-smm]\n  508 root      0:00 [irq/182-arm-smm]\n  509 root      0:00 [irq/183-arm-smm]\n  510 root      0:00 [irq/184-arm-smm]\n  511 root      0:00 [irq/185-arm-smm]\n  512 root      0:00 [irq/186-arm-smm]\n  513 root      0:00 [irq/187-arm-smm]\n  514 root      0:00 [power_pm_monito]\n  515 root      0:00 [sb-3]\n  516 root      0:00 [ngd_rx_thread3]\n  517 root      0:00 [ngd_notify_sl3]\n  518 root      0:00 [irq/112-qpnp_fl]\n  519 root      0:00 [irq/111-qpnp_fl]\n  520 root      0:00 [irq/110-qpnp_fl]\n  533 root      0:00 [kworker/u17:1]\n  537 root      0:00 [irq/243-fts]\n  581 root      0:00 [kworker/0:2]\n  606 root      0:00 [kworker/0:0]\n  656 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm7150ab/sunfish/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1108.147842,3.69382614,90.7000327203245,24.555879025668347,12.217033635261394,270.737267553\r\n1,576000,2132.802502,3.7027821215277776,108.68270704924494,15.288225779852855,19.622944108749774,140.668430102\r\n1,768000,2845.59786,3.705205546875,120.19341114148912,12.672437887862197,23.67342437616864,105.433715272\r\n1,1017600,3772.303746,3.7070594988207546,137.1316009248701,10.90651797400298,27.50648747061956,79.533221376\r\n1,1248000,4627.558654,3.7079796907051286,150.07388417194173,9.729817604410355,30.83305486261277,64.833516225\r\n1,1324800,4912.717388,3.708270975241546,155.3130126673826,9.485109150420307,31.628523746266676,61.070923727\r\n1,1497600,5554.526939,3.7089522829861115,167.35630395858126,9.039706614583116,33.18691776080778,54.014736229\r\n1,1612800,5982.292414,3.709258689236111,175.0163296870652,8.777591454509482,34.17794067481635,50.152985554\r\n1,1708800,6338.876329,3.709548413506554,188.1971616380105,8.907668831925939,33.6788452355538,47.331579044\r\n1,1804800,6695.232994,3.709681401817376,205.80487909706167,9.222524476074044,32.529054357978524,44.811981701\r\n6,300000,2331.835777,7.772785923333332,141.37015916784074,18.18994607625742,16.49262723167594,128.668922659\r\n6,652800,5082.161613,7.78517403952206,197.72319210902992,11.674543207531912,25.696936887984872,59.044885342\r\n6,806400,6274.312963,7.780646035466271,223.87926490449723,10.707777118169492,28.017019469983644,47.828355711\r\n6,979200,7622.725887,7.78464653492647,266.5422027005418,10.493949528196705,28.587901932815225,39.3706866\r\n6,1094400,8519.580837,7.7847047121710515,298.3565756399208,10.510628328379086,28.54253719446904,35.228411862\r\n6,1209600,9416.195857,7.784553453207673,325.5352442446189,10.376203691032886,28.912308290483924,31.874286654\r\n6,1324800,10316.013892,7.786846234903383,359.7408570589825,10.466899572083038,28.661782597030918,29.095665301\r\n6,1555200,12110.447279,7.7870674376286,460.024746380908,11.402513849733147,26.309987775811464,24.786740147\r\n6,1708800,13299.051334,7.7826845353464424,533.8759230254157,12.050943547577434,24.89431626789988,22.572554835\r\n6,1843200,14354.066986,7.7875797450086806,604.6702355565486,12.64605698819401,23.722809432226285,20.913973013\r\n6,1939200,15101.177892,7.787323582920791,666.6533047419485,13.253301230255854,22.635869719397338,19.880350305\r\n6,2169600,16892.843065,7.786155542496314,879.5127824180855,15.63156441444821,19.191937034959267,17.772981504\r\n6,2208000,17197.890392,7.788899634057971,897.3526993526375,15.665881812668083,19.14989552374942,17.457886764\r\n"
  },
  {
    "path": "results/sm7150ab/sunfish/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1686.6542392000556, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [647.5517691059999, 667.5283410320001, 661.426011974, 636.665009878, 703.91823192, 641.75515812, 640.6922231680002, 705.1672477420001, 645.094442304, 642.039028924, 710.541266788, 652.40742874, 640.74884912, 701.073665037, 639.321492453, 639.349818738, 693.1687677, 676.929156848, 668.397429609, 705.104923329, 641.982283938, 666.038715986, 658.5641703360001, 635.2944575880001, 698.327203977, 663.8490710519999, 637.8381033640001, 699.6075213680001, 647.4373299739999, 636.5523251909999, 705.0113566010001, 636.158290419, 643.153832651, 691.4590477099999, 636.5523251909999, 644.467197816, 681.0811228399999, 628.411658408, 645.923416517, 680.9907640239999, 637.7534478919999, 677.9715979050001, 646.266168832, 644.5243265760001, 704.418874135, 646.209067911, 637.6687924199999, 700.82563338, 643.0684641150001, 640.40894784, 696.7077032560001, 637.69705923, 632.35368306, 710.1013482379999, 632.2417119369999, 651.0080720599999, 670.390896318, 627.8833598300001, 641.6699677040001, 670.213030942, 636.3271004699999, 685.965843424, 647.4373299739999, 641.6415222739998, 700.267442676, 647.5232328699999, 640.295550368, 695.366070476, 641.69826726, 633.503562731, 697.493282772, 644.2391222279999, 637.4996264340001, 705.9473436060001, 638.925650778, 657.720039616, 660.812215126, 634.5359088480001, 660.198568424, 656.785180261, 638.869143471, 707.1947566529999, 641.75515812, 637.0763490740001, 699.205261488, 639.208477839, 632.0179134279999, 697.894929693, 642.840863412, 629.474979159, 676.0012331840001, 641.471141442, 636.073813067, 681.97102071, 644.1821399519999, 685.7230386159998, 642.471030542, 642.6986312449999, 666.81988112, 643.267559913, 637.358437342, 703.1712829679999, 634.844957916, 638.360287182, 745.9781434199999, 637.556015096, 629.2242206550001, 703.04671152, 637.33031549, 645.437691716, 695.058286769, 642.6986312449999, 645.294866019, 693.9278983000002, 642.6986312449999, 677.641641972, 635.59515629, 641.35765147, 670.84703848], \"power_mean\": 659.6200895705966, \"energy_millijoules\": 3298.100447852983, \"energy_joules\": 3.298100447852983}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 270.737267553, \"elapsed_ns\": 270737267553, \"power_samples\": [140.46120961999998, 61.317912269999965, 70.7957838939999, 107.36302472999978, 65.36894591999987, 62.78043297999989, 110.01213535999989, 78.74785901499979, 66.77498200899981, 111.32037489099991, 109.42417082199984, 74.69656856199992, 109.91428114199982, 109.58748497999977, 67.99202499599983, 73.97772900099994, 113.6121462399999, 76.03659856699994, 75.28792313799977, 104.25962034999998, 58.60742141999992, 77.9389371379998, 132.38218215999984, 66.80580780399987, 69.85700482899995, 147.13195055499978, 69.30111025599979, 76.16124739300005, 129.6685535539999, 69.73354323099989, 65.30757144500001, 154.96871604399996, 73.41862567999988, 66.71348849999981, 136.3730971199999, 75.97411393699986, 70.7957838939999, 124.23727082299979, 69.33205500099984, 69.39378579999993, 139.05315712999993, 91.00850349200005, 63.96754143999988, 146.9947183569999, 91.93433503699976, 73.29429182699982, 98.00438066999982, 88.06948436799973, 72.22908297299989, 97.81154386999992, 83.95493674599982, 71.88801953199982, 115.37997492499994, 137.57738247999976, 69.30111025599979, 103.33586736999985, 133.58741359299984, 68.02275187999987, 88.29143997399979, 130.97490140399987, 63.90612813999985, 84.36491818599995, 116.16055317399992, 77.09539402799976, 69.57913688799988, 137.44163783499994, 71.94998762099976, 65.55322711999986, 128.0269710609998, 74.60317995399987, 77.22028014399984, 126.78781479199972, 66.34421128399981, 73.32541519199981, 129.56785793799997, 105.33985743299979, 73.26332806899984, 117.59949642699985, 79.96258749399999, 75.81822279599987, 118.97689667499981, 74.5408142739999, 70.54822712199996, 117.59949642699985, 99.94445654999981, 67.86864230199978, 117.69841811799972, 111.97692040099992, 74.38521989799983, 69.70259848599994, 101.34865067499982, 70.33151557399992, 79.09218962199998, 103.93519952799988, 67.83775703199979, 87.04604630599977, 130.73947177699995, 71.79498774799981, 56.92896582599997, 145.51769547799995, 71.82605144299976, 69.11575916799995, 124.1706728559999, 94.45347028100002, 75.88054720899993, 141.46469426299984, 78.40352840799983, 79.96258749399999, 129.3999169619999, 70.51722290199996, 67.4370404519999, 130.73947177699995, 63.72220317999995, 70.51722290199996, 140.08682365499988, 85.04194553499985, 67.71453272399981, 98.25071015499998, 66.37503707899975, 65.2154308449999, 109.6855070439999, 66.40570479299981, 58.120702670000014, 112.27205706499979, 66.31338548899987, 74.47860850599989, 122.76440112399985, 94.51762099099983, 67.59115002999988, 79.58618314199998, 89.12780095599999, 75.75589838299993, 95.02983973699986, 99.78322071999992, 70.23882090599989, 87.04604630599977, 103.80556449999983, 67.65276218399993, 88.41838815099982, 122.59794647199999, 75.69341375299996, 84.82065839599989, 137.30606744499994, 70.20781668599989, 69.14670391299978, 136.00049621999995, 68.96135282499995, 62.535727074999954, 133.11506481799995, 75.56876492699996, 82.70960224799978, 136.1020830199999, 68.89962202599986, 66.43653058799975, 131.87709591399982, 68.99213887899998, 67.71453272399981, 126.5536323099999, 78.34096670499991, 78.30960543999993, 107.59515869199981, 68.99213887899998, 67.59115002999988, 105.50228129599986, 60.92105646999994, 70.26966613000002, 120.18450178599994, 123.70414468099989, 72.79727562899984, 113.44794081399982, 111.78033108199975, 60.890468769999984, 67.56042314599983, 106.48419954999986, 59.58173894499987, 61.44010620999995, 113.18517837999991, 80.96119357799978, 82.89851807199989, 134.28934557999992, 78.15312076899988, 92.18949463999991, 134.55988448999994, 64.93900904499992, 66.22122426599981, 133.11506481799995, 72.70406514099989, 70.3006703499999, 118.44756961299981, 64.84686844499981, 65.0003835199999, 138.2716520099999, 63.5384356899998, 81.14959172399995, 131.80961265399992, 71.48498800199991, 64.81610231999991, 137.10253760499995, 76.7517164259998, 60.79886252999995, 129.13145279399998, 75.47519819899992, 70.14596724199987, 113.44794081399982, 76.84546127399983, 66.19039847099987, 104.06500118199983, 76.8141594839999, 71.48498800199991, 105.46972975099993, 115.53404614599992, 78.2470437369999, 121.39146172399978, 123.67076009599975, 63.507729039999845, 74.69656856199992, 117.13712660199985, 66.06725337199975, 69.33205500099984, 109.03208256599987, 82.23731268799986, 80.11936892999995, 136.89900776499985, 68.83773253599998, 70.67208500599997, 131.7760440579998, 62.04615809999973, 67.46792572199979, 136.89900776499985, 81.82810289799977, 78.27840500199989, 130.302467407, 75.41287378599986, 74.16741975399987, 130.36965898799986, 74.13623691399994, 63.38505990999977, 135.69590976999984, 71.3919562179999, 80.86691378599983, 131.67499220199988, 90.46723712599999, 70.11496302199998, 124.97638935399993, 87.37167680199991, 72.73518850599999, 85.38954330799982, 102.17046312999992, 82.04839686399987, 108.08437841199986, 80.77263399399988, 69.92925569399983, 98.79803529999981, 126.2861179119999, 66.09807916699981, 101.34865067499982, 133.01383484199994, 63.3545107299999, 69.02308362399992, 114.22829052099996, 71.73301965899986, 71.82605144299976, 131.70856079799978, 69.99110513799985, 73.23220470399986, 130.20159367099984, 75.35038915599989, 70.64108078599986, 135.69590976999984, 72.67294177599979, 62.01566808999985, 128.963684242, 69.83640202999982, 72.64197801799992, 138.2716520099999, 67.31365775799975, 66.00575986299987, 123.63754671399988, 69.99110513799985, 71.63998787499986, 123.70414468099989, 71.32982882799979, 72.73518850599999, 135.62806926999986, 100.73472720499967, 64.75472784499993, 120.95986143399978, 94.03731311099989, 61.98502091499995, 90.65829155799986, 94.1333746869999, 69.80555680600003, 94.70974414299997, 91.39205942599983, 74.042848306, 93.3378763779998, 128.89661130599995, 67.34454302799986, 67.25204560399982, 131.50663011999984, 77.99663609799995, 75.53752261199998, 123.50417957699983, 68.25089321799987, 67.65276218399993, 128.8295383699999, 73.91843676999986, 71.67089226899986, 134.22179767499983, 69.99110513799985, 79.11567770199986, 126.2861179119999, 61.89323655499982, 63.323804079999945, 122.16557453199982, 71.32982882799979, 69.89841046999993, 130.067210509, 72.57989089499995, 77.93407439499981, 126.38645728799986, 67.22131871999977, 71.11286086599978, 126.21928226599994, 63.29309742999976, 77.96527483299974, 131.54019871599985, 96.68688266999993, 71.23695634499984, 83.19801053799995, 95.38030702499975, 67.25204560399982, 83.79726404199994, 96.55826976999981, 65.85194704999981, 86.47625533199982, 93.94125153499988, 71.14392456099995, 91.9023786319998, 128.7622930099999, 67.19043344999977, 62.95595415999992, 132.74394601899985, 63.17058576999989, 72.8904861169998, 134.18811054499986, 71.01982908199977, 76.9703473899998, 131.3045264079998, 67.22131871999977, 67.59115002999988, 128.6281471379998, 61.70966783499978, 80.33271544399986, 131.40557826399981, 59.12459834499987, 76.50178367199987, 131.43914685999982, 68.52891984999974, 76.65797157799989, 112.49527932399997, 71.23695634499984, 64.47830604499984, 124.90950123399989, 67.22131871999977, 63.01736745999983, 123.33759905799991, 65.82112125499987, 80.55259399999977, 123.30421447299989, 100.60556753499986, 75.28806474299995, 96.55826976999981, 99.23488632999988, 69.83640202999982, 94.38948405999986, 81.73364498599983, 57.786171419999846, 95.73313311999982, 142.01881850199982, 71.17482895499973, 105.04739432099996, 128.7959156899998, 67.15954817999989, 67.4370404519999, 131.3718366339998, 69.7127031419999, 74.19844268199995, 119.38891624999985, 79.17851918199995, 79.55476240199994, 139.16790807999985, 72.4555570419999, 70.20781668599989, 135.32348281999975, 73.82504816200003, 67.06705075599984, 124.54230260599991, 72.08271508999997, 77.7462284589999, 124.60919072599984, 68.4979751049998, 64.38616544499985, 119.12377783399995, 65.66730844199981, 67.12882129599984, 122.13242031999982, 69.74354836599991, 72.36234655399994, 121.9992907779997, 104.39753193799993, 69.7127031419999, 135.39114936999977, 103.18938155199976, 73.79386532199987, 76.84546127399983, 108.50941012199985, 80.39551482599984, 94.35757319399988, 96.52607526999986, 67.06705075599984, 94.45347028100002, 136.72945764999986, 71.11286086599978, 91.64721902899987, 140.7146120409999, 103.05957989799992, 68.4979751049998, 132.67634380899983, 68.15821767399996, 73.94945969799983, 135.42506961999993, 64.32479096999998, 75.256982645, 137.9658228899999, 74.97628246099987, 76.65797157799989, 125.95176786799982, 71.01982908199977, 68.40529956099988, 131.23704314799988, 73.60708810599999, 73.82504816200003, 135.28956256999982, 84.37824647100001, 62.95595415999992, 102.26759400999981, 75.0698491889998, 69.43414214999996, 104.94990661700001, 71.08179717099972, 67.0054386019998, 103.70825491599987, 120.86023512199984, 100.44386892499983, 112.98806436399991, 119.19001986600006, 69.61984947799988, 68.62159539399988, 119.1569839939998, 78.02783653599988, 78.15312076899988, 123.27100109099979, 66.97455333199991, 70.17681246599989, 132.54148606699982, 76.3767370339998, 70.23882090599989, 124.54230260599991, 77.62094422599978, 81.70210510099992, 133.85002372999998, 66.91294117799987, 73.79386532199987, 135.28956256999982, 73.66929387399989, 67.22131871999977, 128.5945244579999, 74.91395804799981, 69.89841046999993, 128.66159739399984, 72.33122318899984, 86.99099523399991, 133.85002372999998, 100.44386892499983, 60.34098818999985, 129.83178088199998, 101.87907048999978, 77.68350592899992, 86.1912785159999, 95.0274809299998, 70.70982933599987, 88.87359112299998, 88.36517145699975, 80.33271544399986, 95.6049226099999, 124.47558599399997, 72.26913606599987, 64.50907216999974, 128.46037858599982, 60.18836340999985, 71.23695634499984, 129.6973977199998, 63.956228569999894, 79.20977878999986, 129.89897246299995, 65.5443214239998, 68.6523814479998, 141.91634051799974, 65.51349562899986, 65.3596828159998, 131.13616432599974, 69.46514636999996, 68.1891624189999, 133.7824758249999, 70.89589290399977, 70.92679729799977, 127.02196821999985, 66.85132902399982, 69.58884525799988, 119.35588037799994, 66.91294117799987, 81.48181113499982, 128.52745152199986, 70.86482920899982, 61.556746289999865, 135.1542294699998, 103.02725445399983, 69.58884525799988, 85.52649526999983, 100.18538356999989, 69.58884525799988, 90.0851282619999, 93.55716971999982, 77.49582081999984, 92.76257564199977, 85.55805092199978, 73.6382709459998, 99.26719977999994, 127.22283109299985, 69.52699581399986, 80.04987606799978, 129.6973977199998, 64.0791352949999, 72.54876752999985, 125.65074973999981, 74.72682459199996, 71.14392456099995, 131.06868106599984, 72.08271508999997, 79.27262026999995, 129.63003341, 65.48266983399992, 67.97286658599978, 129.73090714599994, 60.09675716999993, 70.83376551399977, 127.1224857159998, 81.60780893199978, 76.22054912799979, 113.47137756199982, 65.4211763249998, 73.48267656999985, 111.19005775399978, 62.74148001999981, 64.14050977, 115.10553498599995, 73.54488233799987, 78.73943448199987, 124.40886938199992, 101.65254264999976, 64.20204201999991, 86.61047662899989, 103.02725445399983, 62.864149149999776, 88.71473038599993, 96.2369851699998, 70.64770194599976, 86.03301228199985, 144.21536342199988, 64.1712758949999, 100.83167996499981, 132.30522500999984, 68.1891624189999, 75.0698491889998, 136.42416288999982, 74.75790668999991, 71.08179717099972, 123.03765140199994, 72.14496181999982, 73.79386532199987, 128.22536467399993, 70.86482920899982, 71.14392456099995, 145.65573427599975, 76.1581060699998, 66.82044375399983, 131.03511246999983, 70.70982933599987, 69.46514636999996, 128.19174199399993, 64.1099014199998, 74.85147341799996, 117.98436593799988, 68.12743161999992, 69.34128848599994, 116.50949137899988, 65.29803122599981, 69.27943904199992, 120.56135618599978, 102.50121415099989, 66.63544890599985, 123.03765140199994, 101.45828088999986, 74.72682459199996, 72.57989089499995, 101.52297936999992, 65.45200211999975, 75.28806474299995, 108.2480738999999, 70.64770194599976, 85.90630169999974, 129.39477651200002, 62.61881088999985, 85.9697383199998, 134.88321536999968, 77.46445955499996, 66.7279463299999, 136.42416288999982, 78.70801374199993, 76.03305943199985, 130.9003189839999, 78.70801374199993, 65.45200211999975, 128.29243760999998, 69.27943904199992, 69.49599159399997, 130.8665773539998, 86.7054840579998, 74.75790668999991, 128.19174199399993, 85.81130942799984, 66.57383675199992, 133.54579768999986, 78.64533339399986, 68.00381133099995, 104.62505889099998, 84.12546284999996, 70.61679755199987, 101.9762013699999, 74.63325786400003, 70.61679755199987, 104.559955801, 122.70449036399998, 76.03305943199985, 113.89928613899986, 124.24199209799986, 79.92427730399982, 69.89841046999993, 116.17929993699988, 61.464961929999845, 71.14392456099995, 113.37281150099989, 65.2365377169998, 69.80555680600003, 144.11252919799995, 75.84556973599979, 77.84015142699991, 136.1528478549999, 72.05175133199987, 70.49270207299969, 137.38820384999974, 73.10912213799986, 65.3596828159998, 145.48410583299983, 69.124735934, 61.250903199999925, 126.9884050149999, 76.0017576419998, 68.28183796299993, 122.8044729159999, 65.26736351199975, 67.91113578699992, 132.1029383969999, 106.64955728799987, 70.52376576799986, 129.52915967399986, 102.60552404799978, 69.27943904199992, 83.19801053799995, 105.37743170199997, 69.124735934, 99.20257287999993, 103.97519650799995, 63.956228569999894, 81.79656301299985, 130.83300875799978, 65.29803122599981, 71.92741747899993, 137.4222430499999, 66.63544890599985, 75.93931458399993, 130.76569853199976, 64.95957980499986, 72.14496181999982, 135.91551254499996, 70.61679755199987, 70.89589290399977, 126.75397893699983, 69.2175895979999, 79.73571771999991, 137.45628224999984, 66.57383675199992, 71.89645372099983, 125.38323534199992, 69.18658537800002, 66.48133932799976, 140.10098802799985, 85.17824449199986, 77.1826906509998, 111.02614909299984, 61.12847166499978, 72.92234492199987, 105.67042917399976, 69.2175895979999, 74.47736672299993, 107.00826256899984, 125.18255658999976, 71.89645372099983, 62.31237426999985, 109.22571788399989, 65.26736351199975, 69.7127031419999, 114.57811057799984, 74.47736672299993, 68.37451350699973, 117.25649873199984, 69.1555811579999, 71.08179717099972, 136.08506265999995, 65.17504420799992, 71.71003274499992, 128.12466905799988, 69.1555811579999, 74.53969113599999, 140.13514637299988, 61.06733447999977, 67.84940498799995, 127.82258220999984, 71.80324323299988, 65.1135506989998, 130.79926712799988, 71.7409965029999, 66.48133932799976, 132.13656616299988, 67.7567294439998, 69.09373171399989, 125.38323534199992, 98.58977729999981, 62.40433674999974, 76.99484471499989, 105.24732209399986, 77.2140519159999, 91.1368998229998, 97.18831383999975, 71.83420699099986, 83.00873847399987, 103.78022109999995, 73.10912213799986, 91.10494341799983, 125.28289596599973, 74.47736672299993, 75.72068361999982, 130.59716341599983, 71.7409965029999, 70.5548294629998, 128.158291738, 71.89645372099983, 72.11383845499995, 130.56359481999982, 69.06272749399989, 82.78786704999993, 130.56359481999982, 78.45713121799986, 70.5548294629998, 121.23418043199979, 65.02123139499986, 67.81846024299978, 126.61989823599981, 78.4885519579999, 75.7831266779998, 107.49662735799996, 73.07793929799993, 70.3996702889998, 117.48801557799982, 69.06272749399989, 59.730332209999915, 118.79239738599995, 115.68401277399994, 73.04691636999996, 118.626707162, 102.47588901999995, 77.08876768299979, 72.2070489429999, 99.89469130499981, 73.0157335299998, 73.57606517799991, 103.812772645, 74.383799995, 86.99099523399991, 131.73181959800002, 63.80271349499992, 85.6530431939999, 134.6462954699997, 73.1403049779999, 71.95854084399991, 141.1989946299999, 76.99484471499989, 74.69558227699997, 122.4711406749999, 66.29634447999979, 74.72682459199996, 127.82258220999984, 58.39332993999983, 73.42031088999988, 137.21835696999983, 67.72578469899986, 61.03668730499987, 135.9493180149998, 79.64143792799973, 71.71003274499992, 127.88982756999997, 72.98455068999988, 75.68938182999977, 108.2153439299999, 78.36303012999986, 66.3581150199999, 118.75919122599998, 72.9535277619998, 65.02123139499986, 125.48357471799989, 114.2485126659999, 66.29634447999979, 117.28964541699986, 109.22571788399989, 62.281667619999894, 70.77179742499982, 101.0374912899997, 71.49248840399991, 78.83353556999987, 99.76536561999978, 71.61682225699985, 84.2519358369999, 129.12583745899985, 67.72578469899986, 77.58974378799985, 126.51938073999975, 69.00087804999987, 63.77210514499984, 122.4045427079999, 68.0347560759999, 70.18270232699979, 133.174023745, 70.27573411099979, 71.80324323299988, 130.4961115599998, 67.57137835599985, 65.02123139499986, 127.7891319539998, 107.66010936199996, 71.77211986799978, 138.4871586349998, 87.63421614399988, 66.32722974999979, 135.8137476249998, 78.3944508699999, 71.77211986799978, 108.2153439299999, 87.72956523999983, 78.70801374199993, 101.52297936999992, 71.55473513399988, 71.64778601499995, 97.4781033999999, 130.4625429639998, 62.220411789999844, 112.03557163599987, 129.058645878, 64.9904055999998, 73.3892879619998, 114.41331162199992, 62.00593764999985, 64.0791352949999, 113.07660611699987, 64.9904055999998, 78.77069409, 127.7555092739999, 102.31376192199991, 63.67996454499996, 134.40937556999984, 67.54059230199994, 75.65808003999985, 125.01538156799984, 68.87717916200006, 67.6023231009998, 138.58927979499992, 70.15163863199984, 70.3996702889998, 125.01538156799984, 74.22790885400002, 64.65195417899986, 134.40937556999984, 68.93902860599985, 76.93228301199986, 141.23321244999988, 96.93077825499984, 74.29023326699985, 88.90723188799984, 86.26157284599992, 60.914412934999746, 89.57575882599997, 94.25772348499981, 71.52361176899979, 93.55716971999982, 87.53886704799993, 82.2202129059998, 98.78332658, 130.4625429639998, 70.12073423799973, 71.39927791599996, 130.4961115599998, 71.61682225699985, 83.90433806399994, 127.7555092739999, 64.92891209099969, 62.55755505999991, 113.01083905399992, 79.70423730999971, 67.84940498799995, 129.02496372299981, 63.46491721999985, 75.47075086599978, 127.7555092739999, 63.649198419999834, 68.84617494199995, 135.7797678999998, 71.58569889199987, 66.29634447999979, 112.84616779600003, 80.97814343299979, 72.82895631399992, 122.57112322699982, 68.96987382999987, 63.55705781999984, 121.13437599999986, 75.43944907599985, 68.87717916200006, 126.31834574799996, 114.28137083399986, 75.43944907599985, 78.08072686599996, 98.2673056399999, 68.81517072199995, 74.72682459199996, 99.66841285999976, 95.53002696999977, 85.46305864999988, 128.9240899869999, 83.58839912600001, 89.48023160999992, 130.395232738, 76.90108257399993, 71.58569889199987, 143.63269484799991, 68.81517072199995, 72.98455068999988, 143.59835807799993, 72.82895631399992, 64.89808629599975, 139.58948870799986, 67.4479167579999, 66.51222459799988, 128.95777214199984, 59.42508264999981, 70.21376602199985, 142.29634558299995, 78.17482795399997, 60.82262857499984, 128.8568984059999, 78.08072686599996, 75.50189213399983, 100.6167016899999, 68.69147183399991, 74.13434212599986, 123.90806602199984, 64.80576699199992, 62.159155959999794, 107.75796357999991, 108.70209566999995, 71.52361176899979, 122.4379272929998, 114.21548512599998, 70.18270232699979, 66.57383675199992, 104.8240477779998, 68.75332127799982, 75.97061637399986, 100.8432295299998, 66.11150801799977, 68.00381133099995, 134.10461516999987, 82.0939775139999, 93.49301901000001, 130.22669762199985, 74.10309981099988, 71.55473513399988, 134.34153506999985, 65.95724005399984, 67.4479167579999, 140.8575183339999, 80.72630958199989, 78.08072686599996, 120.93493803399986, 66.04973747799988, 68.87717916200006, 126.21782825199989, 63.37277661999997, 72.82895631399992, 128.789534096, 99.44230042999982, 78.08072686599996, 131.6305896219999, 88.84360160199992, 68.78432549799982, 92.02768805799985, 83.39877082199985, 76.68187537299991, 93.30106034699986, 95.49783246999982, 71.36831415799986, 93.36504656799991, 128.89040783200005, 59.36390725000001, 98.65440419999993, 123.40743416999987, 67.35524121399988, 74.32131536499992, 130.19312902599972, 72.48658472199975, 73.1403049779999, 119.53199802399979, 56.661015169999814, 69.09373171399989, 135.5762380599998, 71.46152464599982, 67.84940498799995, 140.8917361539999, 77.98662577799996, 66.08062274799977, 136.91252784999995, 66.32722974999979, 59.302888709999934, 140.8917361539999, 62.0671934799999, 71.39927791599996, 115.78293446499993, 68.72231705799993, 70.24467041599974, 124.94854592199977, 64.7442734829998, 72.73556770599987, 124.8147028159998], \"power_mean\": 90.7000327203245, \"energy_millijoules\": 24555.879025668346, \"energy_joules\": 24.555879025668347, \"coremark_score\": 1108.147842, \"coremarks_per_mhz\": 3.69382614, \"ulpmark_cm_score\": 12.217033635261394}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [641.244015624, 637.443092814, 708.285032024, 631.430460309, 644.096593296, 700.205474587, 637.1610045460001, 638.6712952649999, 706.881626484, 641.102080222, 636.045605732, 705.6036660039999, 637.217393208, 637.245660018, 693.4671953000002, 635.735903659, 637.217393208, 724.2259048599999, 645.2662421639999], \"power_mean\": 659.9234547012632, \"energy_millijoules\": 3299.6172735063155, \"energy_joules\": 3.2996172735063154}}, \"576000\": {\"active\": {\"elapsed_sec\": 140.668430102, \"elapsed_ns\": 140668430102, \"power_samples\": [140.75504034999983, 81.93630480999991, 92.37251994199971, 147.47390116999998, 83.17748368299976, 85.14652618199977, 124.7811990859999, 84.64000916999987, 93.07686183999988, 146.16774719399984, 88.68428052600007, 86.51530623699989, 147.40504739199991, 89.89289433399995, 94.12934817999985, 150.21509723799988, 81.04106145999981, 79.3271181419999, 148.77537880499983, 83.2722978349999, 83.3354531519999, 152.74878281199983, 91.2607845939998, 103.35788566999997, 146.09901244999992, 83.2722978349999, 77.89268582199986, 150.0422807619999, 107.26802110599988, 89.92485073899991, 119.29965035799978, 119.20002404599995, 87.28465721499992, 103.7476695549999, 109.94414978199984, 87.22114557399993, 118.59350100199981, 145.0034403579997, 87.31649466999988, 125.24939223599972, 153.91083136899977, 77.86126508199993, 87.41184376599983, 146.09901244999992, 92.46858151799995, 94.19361822999974, 140.72099800599983, 84.51329858799977, 95.46563796999988, 148.7409812469998, 92.46858151799995, 107.16999904199997, 149.93855535399996, 89.86093792899976, 81.96790416999988, 152.74878281199983, 91.19675283399977, 93.90489738999986, 134.0030283699998, 89.86093792899976, 87.15763393299983, 124.98187783799983, 89.7971889979998, 89.95664326499991, 126.25139145699984, 138.4530599599999, 89.76523259299972, 126.21782825199989, 133.90144156999986, 89.95664326499991, 91.58028665799986, 129.88997345799987, 83.20914251799991, 94.25772348499981, 124.74786716999984, 80.47447573099976, 91.61230253799988, 145.99582198599978, 87.18930811899975, 106.02999066999985, 151.3089454289999, 96.48004962999994, 91.19675283399977, 155.35528576299976, 81.77863210599992, 87.22114557399993, 142.2620682879999, 83.17748368299976, 89.7971889979998, 140.75504034999983, 85.75394310099978, 87.06228483699988, 146.27093765799987, 124.5806921479998, 99.11906922499975, 134.10461516999987, 117.93056981799975, 92.46858151799995, 94.32182873999977, 132.5996060849999, 77.67306290599981, 93.01287561899983, 131.29309858899978, 88.46149273799995, 82.34628624999982, 139.18046442299988, 88.42959580799993, 115.15546891899976, 156.58648407599992, 89.82914540299976, 92.53256773899977, 155.2857197259999, 89.7971889979998, 76.43146773399985, 132.76856266999994, 85.75394310099978, 79.0129597939997, 131.42812966999986, 85.75394310099978, 85.81749867099984, 131.46175743599986, 115.22164294899983, 87.03044738199992, 81.81023146599989, 113.81983213399985, 88.49338966799985, 98.33176682999999, 113.81983213399985, 89.6695272569998, 91.58028665799986, 151.1356542709999, 80.34847793399979, 87.60254195799996, 145.96154296199984, 77.73574325399977, 119.13366336899992, 144.55699473699985, 88.39786245200003, 89.7971889979998, 144.55699473699985, 88.39786245200003, 89.70148366199976, 139.38506415099982, 85.59538010199981, 83.52508145599995, 145.92708724199986, 99.02211646499984, 92.50065687299991, 146.03027770599988, 125.7823671819998, 87.03044738199992, 93.48796603999995, 113.68806071799997, 92.46858151799995, 91.64415423399987, 117.89753394599984, 81.6523967139999, 99.63620594999998, 144.5227748829999, 87.0939590229998, 87.69772778499998, 148.5338866709999, 85.69055049399981, 103.00048639900001, 168.61159427799976, 93.74455185499983, 83.05117304899989, 156.5167993939998, 84.35503235399972, 87.0939590229998, 145.96154296199984, 96.38345310999989, 80.28555990699988, 159.1527848139998, 95.08012946999986, 84.45002462599984, 148.4993118059998, 111.05000155599987, 91.03700180199985, 105.54077094999991, 111.05000155599987, 92.43650616299988, 108.96390677699992, 109.68186223299995, 91.00498592199983, 111.6742521939999, 155.07684278199986, 94.88729266999985, 116.9257118139999, 148.43033938299993, 85.62715788699984, 115.18855593399985, 159.08286284199983, 87.34816885599992, 88.557019954, 148.43033938299993, 88.42959580799993, 88.46149273799995, 149.80019560599987, 84.26004008199982, 90.94111834599983, 156.5167993939998, 92.24454749999995, 91.03700180199985, 156.41218280199985, 98.95753662999971, 77.73574325399977, 113.68806071799997, 107.10470694799994, 89.57398579999983, 122.20457760399995, 103.0654225579998, 86.96693574099993, 112.84616779600003, 150.0422807619999, 88.30233523599998, 125.01538156799984, 151.06644455799983, 96.44779565499982, 107.16999904199997, 150.99723484499987, 92.14848592399994, 83.17748368299976, 141.8173423579998, 75.00202662599975, 85.91266906299984, 145.82389677799972, 91.10086937799974, 88.23870495000006, 153.7719373629999, 80.31693804899987, 76.30618350099985, 148.29221722999978, 94.88729266999985, 83.05117304899989, 135.03360798999972, 96.31911056499996, 93.64831157499987, 111.41132099799995, 90.94111834599983, 92.27645836599982, 120.93493803399986, 149.80019560599987, 84.22848442999987, 128.99128156799998, 149.6620134699997, 97.68665779999992, 111.24711557199976, 145.7551620339999, 80.31693804899987, 87.31649466999988, 148.4993118059998, 88.23870495000006, 98.04144290999989, 153.7371245979998, 85.59538010199981, 88.27043830599996, 148.39576451799974, 90.81338319399993, 82.92470006199994, 144.5227748829999, 93.68028180499971, 87.03044738199992, 115.58492140599981, 97.59004886999992, 85.56376527999987, 115.38673866999989, 91.00498592199983, 92.30853372099989, 123.40743416999987, 144.35114643999987, 94.98371106999991, 127.52066778599988, 138.87356483099973, 90.94111834599983, 112.78040073299996, 140.2086080859998, 88.17491108999991, 88.74807438599987, 148.11969751899971, 90.97313422599984, 91.42053562599983, 145.65197156999977, 85.59538010199981, 86.96693574099993, 144.38536629399982, 86.93509828599986, 87.03044738199992, 149.73110453799984, 94.8550981699999, 88.27043830599996, 136.64073792999977, 84.22848442999987, 83.17748368299976, 136.47089104999986, 92.24454749999995, 89.63773473099991, 148.4993118059998, 128.386211881, 88.20680801999981, 86.74440009399984, 120.33611144199983, 93.51993626999979, 111.31293275199994, 116.29711467999994, 89.57398579999983, 87.41184376599983, 163.05821224999977, 85.53198749499973, 90.02039219599988, 142.9471920499999, 92.30853372099989, 94.88729266999985, 148.29221722999978, 88.04765051799984, 97.59004886999992, 152.36720950999995, 90.78136731399991, 84.10177384799988, 141.8173423579998, 89.44632405899983, 80.22264187999986, 144.38536629399982, 80.25402002199985, 80.19110199499971, 143.01586558999998, 116.2308213099999, 84.19676611999978, 96.19026006999991, 112.2209580299999, 85.59538010199981, 105.96481722099986, 117.5659832099999, 85.62715788699984, 100.68140016999985, 157.57292478299985, 84.22848442999987, 103.32533412500004, 145.58323682599985, 93.5842063199998, 84.19676611999978, 144.1451217519998, 84.67156482199982, 98.89295679499969, 150.96254102999978, 84.07005553799979, 93.39172575999976, 142.91303136600004, 77.45360112200001, 85.34164671099984, 146.9915707199998, 96.15817149999987, 97.49327422999988, 138.83940648599992, 118.86805006799989, 88.23870495000006, 98.79600403499978, 121.47148635799988, 92.18039678999992, 107.30075107599987, 125.58133218999978, 96.12591752499986, 102.02183316999981, 149.59292240199989, 88.11128080399999, 105.96481722099986, 150.85863750199997, 78.69880144599972, 89.44632405899983, 145.54878110599975, 88.42959580799993, 118.9344107449997, 145.51432538599977, 82.76673059299992, 82.79838942799995, 142.87869459599983, 81.4947240099998, 81.30545194599995, 152.2977029299999, 92.11641056899987, 90.81338319399993, 146.9570553299999, 120.26963211999976, 92.11641056899987, 95.96497845999988, 112.18815903199993, 85.50020970999981, 99.37755457999981, 124.14583091399993, 80.12818396799992, 96.64098869499992, 155.45972423499995, 81.43168733799985, 103.26039796600003, 154.90283827299982, 84.13349215799985, 97.46096077999994, 156.1681968459999, 90.65346797799987, 110.8857961299999, 149.52365372199995, 76.02457542399975, 84.26004008199982, 146.92271694199997, 93.42369598999983, 85.24647631899984, 145.58323682599985, 92.05242434799982, 96.19026006999991, 138.83940648599992, 109.55063422999979, 89.47828046399991, 95.30499566999993, 120.0700232559999, 84.03849988599984, 105.89947623099977, 120.10334836599986, 84.13349215799985, 95.33719016999976, 149.52365372199995, 82.76673059299992, 102.11914275399988, 148.2232448069998, 86.87158664499987, 86.71272590799981, 149.48919699399983, 87.98385665800004, 84.00678157599975, 145.51432538599977, 89.38257512799976, 88.23870495000006, 153.59823059199994, 94.75867976999984, 93.39172575999976, 144.2823539499999, 85.34164671099984, 81.40008797799987, 146.9570553299999, 118.86805006799989, 106.7779107859999, 103.35788566999997, 129.41845580799975, 84.07005553799979, 97.94483397999988, 110.75449929399986, 85.27825410399976, 104.66132714999992, 138.63498192899988, 90.68548385799988, 85.62715788699984, 161.47710208299986, 89.41436765399988, 86.74440009399984, 154.76352736599995, 81.33705130599981, 86.74440009399984, 146.75031699399995, 85.50020970999981, 88.04765051799984, 152.12429292399986, 89.28686979199972, 96.15817149999987, 150.7202180759998, 114.5610903879998, 93.2954854799998, 148.18866994199982, 113.35829343399996, 116.03228116599985, 109.97699889699982, 114.75927312399983, 81.62095940199993, 103.13035871699981, 118.70189248599979, 81.17937860199993, 100.51957080999989, 149.28174617799982, 90.58960040199986, 95.93272448499988, 152.08953963399995, 79.93926814399981, 89.51007298999991, 150.75473397399992, 82.6719164409999, 88.01575358799994, 152.02021127599994, 86.77623754899992, 94.63023196999984, 144.11072550699987, 89.28686979199972, 92.0843352139999, 152.12429292399986, 118.73515812099981, 86.6490509979999, 141.3726164279999, 115.99930446399992, 118.63553180899976, 96.60890012499988, 117.33405095399996, 80.28555990699988, 97.78343243999984, 124.11249899799975, 78.69880144599972, 110.04252866999991, 148.18866994199982, 93.42369598999983, 81.33705130599981, 146.7159786059999, 89.1911644559998, 81.33705130599981, 153.35489829099993, 86.6490509979999, 78.60452165399977, 154.69396132899988, 87.88849301599987, 89.3506187229998, 140.07191228199986, 82.6719164409999, 87.9521233019999, 145.34240017799993, 116.36323806699988, 90.78136731399991, 154.79839980099985, 117.36708682599999, 120.03669814599994, 107.26802110599988, 119.97021882399986, 86.45851607499992, 95.30499566999993, 118.66879744399978, 83.94350761399983, 101.85970607199988, 148.01615023099987, 87.85659608599997, 79.90772825899978, 154.72883376399977, 89.31866231799984, 85.30986892599992, 154.65926772699981, 90.58960040199986, 86.71272590799981, 155.88927897999986, 82.5456058069999, 101.40565022199985, 141.33833913299998, 89.15920805099984, 85.24647631899984, 154.65926772699981, 109.68186223299995, 93.19924519999984, 142.70736291799994, 106.58203450399981, 102.48066326499998, 113.786973966, 103.91277881399981, 87.76106886999992, 116.42936145399983, 111.82618658499985, 98.53751867999983, 108.60389548599994], \"power_mean\": 108.68270704924494, \"energy_millijoules\": 15288.225779852855, \"energy_joules\": 15.288225779852855, \"coremark_score\": 2132.802502, \"coremarks_per_mhz\": 3.7027821215277776, \"ulpmark_cm_score\": 19.622944108749774}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [640.763806001, 699.469058722, 636.550745991, 661.9917516240001, 704.878204545, 641.844255312, 636.6072532979999, 707.55611673, 647.22292671, 637.802261664, 669.6286828529999, 643.2948658939999, 640.6215738340001, 681.105727188, 644.488389462, 645.9152018000001, 674.384557296, 641.872673208, 643.2377649729999], \"power_mean\": 657.8545166897368, \"energy_millijoules\": 3289.2725834486837, \"energy_joules\": 3.2892725834486836}}, \"768000\": {\"active\": {\"elapsed_sec\": 105.433715272, \"elapsed_ns\": 105433715272, \"power_samples\": [149.31638051799985, 103.78250196999977, 101.17853898399994, 157.50312145599992, 99.87208704999978, 98.40819299499981, 156.06358025399982, 133.05500086999984, 106.58203450399981, 162.67141062599978, 135.85940736999987, 101.24352312399992, 105.63861489399983, 127.78096946499977, 95.96497845999988, 104.53121754199981, 133.19050791999985, 101.21103105399982, 119.1667584109997, 161.2664427709999, 99.87208704999978, 105.24740665899981, 158.76794434599992, 97.23526375999984, 93.32745570999987, 151.8468012699999, 107.94928364299994, 106.67988872199987, 159.9626687719998, 98.44056591999981, 104.0754994419998, 154.51995681999995, 98.44056591999981, 95.93272448499988, 155.95896366199986, 118.4695448199999, 91.82822584099995, 130.3484010389999, 99.74252376999982, 97.23526375999984, 125.74880397699985, 103.84755677399994, 105.05171877099986, 135.13537290999977, 153.1117445169998, 107.88387290399999, 133.66452166999989, 142.57019192400003, 94.43739516999983, 95.01574046999986, 151.8468012699999, 97.75128469999993, 98.98990955499983, 161.3367827809999, 106.51657456399994, 93.71241682999971, 153.1117445169998, 101.21103105399982, 102.35062401599998, 155.88927897999986, 95.86838193999984, 101.048903956, 163.9354605609999, 99.80738856999983, 93.10300491999976, 147.80905565499972, 102.41556017499988, 107.88387290399999, 144.00771316299995, 106.4185524999998, 102.38317556099992, 166.56925202499986, 141.09892541099987, 93.16711017499983, 154.55482925499985, 126.48026136999988, 98.40819299499981, 110.82014771199977, 122.50615962999984, 99.77495616999988, 117.5659832099999, 162.46039507399985, 94.40520066999977, 116.2308213099999, 165.16410543999984, 93.10300491999976, 102.48066326499998, 166.35716775299989, 101.2758485679999, 106.58203450399981, 167.76201411399984, 91.70025339899985, 101.37315815199986, 159.75236686799997, 103.68483614599995, 93.00676463999991, 159.75236686799997, 101.08122939999976, 98.47293884499982, 171.76902497000003, 101.048903956, 98.40819299499981, 130.4496310149998, 94.27675286999988, 105.0842217249998, 130.88835202400003, 98.3436131599999, 104.95387482699994, 145.34240017799993, 134.7962726799998, 90.23808245799978, 148.08512265399986, 157.01413928099998, 109.05890824699975, 98.8605838699998, 149.0396610219999, 95.64293492499974, 98.73142419999976, 147.63653594399977, 95.67518889999985, 98.92532971999992, 155.85434707000002, 90.39783348999981, 110.39317985199989, 158.45320559799984, 99.54842832999987, 102.38317556099992, 161.02079381299995, 103.71744716599983, 99.74252376999982, 159.78747720299987, 100.91910230199971, 94.34097676999988, 166.3923940789998, 104.98637778099987, 102.22075169799996, 162.35488729799988, 122.30583828599993, 98.27903332499977, 127.78096946499977, 122.37255489799998, 101.11372146999997, 130.98958199999993, 118.27029219599967, 99.74252376999982, 133.76593451999986, 161.3367827809999, 99.77495616999988, 121.50487094299979, 150.44320130699987, 99.71025768999982, 114.5610903879998, 158.48807670999975, 94.27675286999988, 102.90299869499995, 149.17802076999988, 94.21252896999988, 104.10794322599975, 158.38310387799982, 98.3436131599999, 103.68483614599995, 163.6185838419998, 101.0164118859999, 102.25313631199981, 167.6912612379998, 96.97708757999987, 99.61312680999993, 151.8468012699999, 99.61312680999993, 101.5352852499999, 158.48807670999975, 92.91052435999973, 105.0842217249998, 141.09892541099987, 135.51953904999982, 102.25313631199981, 106.12465415399993, 126.27887013799989, 103.6197813419999, 128.218146564, 139.66217582199988, 92.91052435999973, 118.86805006799989, 167.72654673399984, 90.30195003399979, 128.218146564, 151.67339126399997, 103.65222512599973, 106.4185524999998, 155.64511388599988, 102.38317556099992, 99.93678552999984, 162.2846090019998, 88.90404844799968, 94.5338135699999, 171.5555145699998, 92.91052435999973, 103.55472653799984, 163.65369182799975, 100.85428478799997, 102.25313631199981, 157.0489512229999, 100.82179271799987, 99.6453928899997, 118.76842375599972, 107.55665105799994, 107.75288327499982, 145.51432538599977, 94.30878226999982, 95.61084635499992, 137.39792454999997, 135.6555212899999, 102.18820015300003, 100.82179271799987, 143.69867613099973, 102.18820015300003, 88.07938387399986, 143.63006003199985, 92.91052435999973, 104.10794322599975, 158.41815473799988, 94.27675286999988, 92.14848592399994, 183.4606047279998, 95.51424983499999, 100.95159437199993, 162.35488729799988, 103.65222512599973, 96.97708757999987, 143.5958401779999, 99.48356352999974, 94.30878226999982, 158.41815473799988, 102.15564860799986, 95.44990728999994, 163.5480059319998, 91.54020560200001, 95.51424983499999, 162.31965781799977, 122.27239422599973, 99.6453928899997, 120.03669814599994, 127.44483883099986, 94.18033446999993, 118.73515812099981, 128.87962793199995, 96.81585174999987, 113.39132097399988, 162.2846090019998, 103.58717032199979, 103.6197813419999, 190.05622256999982, 106.25523834199976, 107.72026198099991, 160.8802941519998, 96.84816520000004, 102.54559942399999, 162.2141500419997, 98.27903332499977, 105.11689221999984, 166.14508348099992, 102.28568785699997, 88.77655058599987, 151.63863797399983, 115.50295410399985, 98.24666039999977, 155.5404972939998, 106.25523834199976, 110.16315724599986, 138.77126496699987, 95.54650380999988, 103.55472653799984, 130.71951983799988, 95.54650380999988, 103.55472653799984, 141.26996032399995, 150.13149072299984, 100.88677685799996, 93.48796603999995, 179.5630232079999, 96.88047864999987, 101.43797566599983, 147.60213838599975, 92.87855412999977, 102.83806253600005, 175.48561710499985, 98.18208056499986, 100.0663488099998, 158.27831079399994, 96.84816520000004, 96.91262638999979, 172.78243713999973, 100.82179271799987, 106.15721627799985, 172.74691476999988, 106.12465415399993, 96.88047864999987, 162.2141500419997, 95.51424983499999, 102.22075169799996, 160.9856238079999, 116.7373618019999, 98.14970763999975, 166.14508348099992, 131.51797137999984, 98.18208056499986, 122.73975352599996, 150.09679690799987, 96.78370400999995, 118.76842375599972, 120.90514683399988, 96.91262638999979, 141.3726164279999, 168.8878027899998, 99.48356352999974, 94.05172156999981, 148.8668445459998, 103.52211551799996, 94.56600806999984, 156.8743531839998, 91.44414402599989, 107.91666234899981, 167.47882072599975, 99.48356352999974, 105.31258010799979, 156.8743531839998, 100.78946727399989, 94.21252896999988, 163.47760899099978, 90.11034730599988, 98.08512780499973, 149.88916776899976, 100.88677685799996, 104.7908574339998, 147.67111080899986, 120.80516428199985, 91.44414402599989, 163.65369182799975, 134.0839182399999, 102.12326399400001, 162.10864226599972, 128.7785760759997, 100.78946727399989, 110.75449929399986, 128.8458863019997, 95.51424983499999, 125.34690611199983, 124.74380113599977, 99.48356352999974, 126.58095698599993, 155.40112792999992, 92.7180437999998, 108.63254357999995, 152.83377797799983, 94.18033446999993, 95.7717854199999, 160.81013450099988, 103.39183867399981, 104.92120433199989, 155.50574452199987, 102.12326399400001, 103.81511298999976, 164.81134623599985, 115.4368307169998, 100.78946727399989, 162.2141500419997, 104.7908574339998, 95.44990728999994, 156.80454985699987, 103.45706071399991, 92.81428407999977, 138.49852371999987, 98.11750072999985, 102.09071244899985, 153.18119151999986, 146.09576359799985, 107.39287198399995, 146.405871102, 138.19162412799983, 100.91910230199971, 104.0428884219998, 135.4856744099999, 97.23526375999984, 109.22281690799991, 136.8194711299999, 94.08391606999976, 117.26780892199986, 152.76415244799978, 103.52211551799996, 96.62230246999991, 156.90934456900004, 136.7512737799999, 108.79662069799986, 164.74083065000002, 92.75017882499981, 98.27903332499977, 158.10323624199987, 94.05172156999981, 106.25523834199976, 154.2066414039998, 96.68692937000003, 102.02577629000007, 166.2865335219999, 114.0987205629998, 99.35416656999996, 160.77496449599994, 102.12326399400001, 98.05275487999972, 133.25817446999986, 106.05919421399983, 106.09192418399982, 142.63886546399988, 104.59516954599985, 96.62230246999991, 130.55086099099992, 148.72866240999997, 100.7569752039999, 99.80738856999983, 151.36114631999988], \"power_mean\": 120.19341114148912, \"energy_millijoules\": 12672.437887862197, \"energy_joules\": 12.672437887862197, \"coremark_score\": 2845.59786, \"coremarks_per_mhz\": 3.705205546875, \"ulpmark_cm_score\": 23.67342437616864}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [627.94099304, 643.600824266, 690.73421675, 638.63199578, 646.9929500250001, 688.0636550500001, 634.62177526, 644.288047434, 702.447964006, 671.941883158, 644.402486566, 693.4398833039999, 643.887216284, 637.2923369600001, 692.07387557, 639.8819080940001, 631.95121356, 705.305540212, 638.433169518], \"power_mean\": 658.7332597282632, \"energy_millijoules\": 3293.6662986413157, \"energy_joules\": 3.2936662986413157}}, \"1017600\": {\"active\": {\"elapsed_sec\": 79.533221376, \"elapsed_ns\": 79533221376, \"power_samples\": [107.32746124499988, 119.37156313000003, 181.97843674599994, 121.97191220999991, 118.00467889499976, 157.15374593499985, 127.34396509499993, 116.67111976999979, 159.78747720299987, 113.9665421799998, 108.66539269499981, 159.57717529899992, 164.5644510479998, 115.33756064499983, 119.2384335879999, 160.66963483999996, 112.60018436199994, 121.10494073499979, 139.3205240499999, 115.33756064499983, 119.9037395019999, 179.45519870399983, 116.63791360999994, 122.40599895799994, 177.97811530599984, 119.27175869799987, 120.63841255999989, 183.35224527999992, 115.23829057299997, 111.33251094499985, 182.01437349999992, 113.93362484199986, 119.43804245199976, 174.0090034699998, 124.44242076699982, 114.03271620999999, 171.19978576999995, 113.8676204889997, 115.30441395999992, 178.01387454999985, 131.28146688999993, 112.6330425299999, 153.18119151999986, 127.20958193299987, 123.74464522399978, 139.69621816599977, 123.27645207399974, 115.27143725799988, 139.76465380599984, 173.97342192999974, 111.33251094499985, 136.61522880999985, 167.19562733799978, 119.17195426599983, 114.46199901999978, 151.39589961000001, 119.17195426599983, 110.52447668799982, 172.60427597499984, 113.83453347399973, 121.23830787199984, 173.90207543999975, 120.57181459299989, 113.9665421799998, 172.4973426549999, 111.20097681899983, 122.03880032999996, 176.53720656199982, 123.10927705199981, 112.5671568219999, 177.87046892199987, 112.5012711139999, 116.50542954599996, 172.56875360499976, 145.7858330959998, 116.50542954599996, 177.87046892199987, 147.1189768109997, 121.80503492599985, 158.38310387799982, 133.84658292999984, 115.10604379899985, 138.43038220099982, 132.5133205699998, 115.27143725799988, 149.0396610219999, 173.86631048999982, 115.10604379899985, 115.60222417599982, 173.86631048999982, 123.17611269799977, 115.73464093299981, 159.26172244299994, 111.16800875399986, 118.40318414299975, 185.69328367299988, 113.83453347399973, 111.26674388199979, 181.79819725299978, 115.20531387099982, 116.50542954599996, 165.82695707300002, 109.70328079599983, 117.87195754099969, 181.79819725299978, 119.13862915599987, 121.83847898599993, 195.24833944099987, 121.83847898599993, 115.10604379899985, 177.8345253519999, 140.55154337699992, 115.20531387099982, 176.46562239299976, 148.52121159399985, 112.53429865399983, 146.405871102, 129.90985336899985, 115.23829057299997, 143.66445627699989, 176.53720656199982, 121.80503492599985, 157.01413928099998, 213.74040048799998, 113.9665421799998, 120.73839511199992, 168.56878809999978, 115.5692474739999, 114.26381628399974, 164.5644510479998, 121.87192304599978, 118.36991850799996, 177.8345253519999, 112.40235786599999, 120.40523407399985, 176.53720656199982, 117.83869190599978, 117.73906559399984, 179.1677282369999, 143.18379080199986, 117.83869190599978, 169.90210993499977, 121.83847898599993, 115.17216718599991, 180.50093112199988, 120.40523407399985, 120.47183204099986, 173.7591990499999, 155.08727815399993, 111.13504068899988, 128.40811028199983, 141.85052844199993, 117.77233122899975, 130.28097216799983, 141.74769421799988, 121.63815764200001, 135.6555212899999, 177.6911197239998, 117.60617364699976, 143.5270476879997, 185.76569874599988, 117.77233122899975, 120.77177969699983, 177.79876610799977, 113.73544210599982, 111.3982780079998, 176.39385420299993, 143.08077845799994, 128.67752421999978, 179.09590677799986, 111.16800875399986, 116.57167157799995, 173.90207543999975, 112.5012711139999, 108.46863491899978, 184.46885564599984, 123.00893767599973, 117.77233122899975, 168.71053191999977, 115.03975042899992, 116.472223386, 171.3065409699998, 115.17216718599991, 116.50542954599996, 169.7955328549998, 156.52515710599982, 119.00567051199982, 125.74194180199993, 140.3462311689999, 111.1022416909999, 128.94693815799974, 155.01759347199982, 113.90053782699988, 134.21966288499993, 179.02408531899994, 133.67703281499985, 139.5939156579999, 175.163748425, 113.7685291209998, 122.07207288199982, 177.6911197239998, 108.40310514599992, 128.7448344459998, 187.06242289599993, 120.30525152199993, 110.16315724599986, 181.79819725299978, 108.43595426099978, 112.43538540599991, 181.79819725299978, 112.73195577799993, 127.04134388699993, 181.6177725189998, 120.33863610699984, 116.43918751399985, 156.69975514499993, 115.07289711399994, 113.66943775299978, 167.23109471799978, 115.00677372699988, 125.77556448199982, 176.46562239299976, 147.01542952299974, 137.68029997899987, 126.27887013799989, 141.78203098799986, 121.53799696999988, 119.57117199399977, 140.41460997799993, 119.0721498339999, 141.0303708209998, 172.35488696499976, 121.67160170199986, 116.40598135399989, 177.61923258399975, 107.03286069299998, 112.69909760999997, 172.4618202849997, 124.34190327099986, 141.85052844199993, 182.91899303499986, 113.73544210599982, 119.47136756199995, 175.0208181549998, 113.60326372299983, 112.36933032599995, 183.09953026599987, 121.60471358199982, 121.60471358199982, 179.05990373299983, 125.54055056999994, 106.9674499539999, 164.59961820399985, 109.60472378799977, 107.00023939899995, 167.33713308999984, 161.5460545699999, 123.00893767599973, 164.77599780599985, 152.41673890599975, 116.3397393219999, 123.64430584799982, 152.3819261409999, 114.26381628399974, 118.17066588399973, 153.54531696999993, 121.60471358199982, 154.31107987599978, 168.24959121999996, 113.5372593699999, 121.53799696999988, 174.87770417000002, 109.76909797599978, 112.40235786599999, 187.0262492679999, 109.60472378799977, 120.33863610699984, 170.95062936999977, 113.6363507379998, 120.40523407399985, 178.84443935599984, 113.60326372299983, 108.37025603099994, 181.54571377000002, 126.97415230599995, 108.37025603099994, 138.87656976999995, 123.04226959199991, 112.23755890999996, 146.23364815600007, 121.47128035799994, 113.73544210599982, 159.64721591599982, 172.39040933499996, 109.70328079599983, 160.81013450099988, 161.68679182599976, 118.97234540199986, 115.63537086099984, 166.9124339499998, 120.2052689699999, 115.60222417599982, 166.84168107399978, 117.53981296999996, 106.15721627799985, 177.65517615399983, 113.70235509099996, 118.97234540199986, 180.2490482899999, 117.60617364699976, 119.00567051199982, 196.10431973799984, 121.60471358199982, 108.33757537299982, 177.6911197239998, 119.00567051199982], \"power_mean\": 137.1316009248701, \"energy_millijoules\": 10906.51797400298, \"energy_joules\": 10.90651797400298, \"coremark_score\": 3772.303746, \"coremarks_per_mhz\": 3.7070594988207546, \"ulpmark_cm_score\": 27.50648747061956}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [639.938771725, 666.21166911, 636.8388926399999, 657.3054051499998, 704.7723544239999, 640.7322952680001, 642.123489674, 710.239337333, 643.400482238, 647.52228855, 702.229333042, 640.760713164, 640.8748242, 696.360744952, 642.0948658189999, 651.670333825, 700.926143535, 647.49357461, 638.1208532840001], \"power_mean\": 660.5061248706842, \"energy_millijoules\": 3302.530624353421, \"energy_joules\": 3.302530624353421}}, \"1248000\": {\"active\": {\"elapsed_sec\": 64.833516225, \"elapsed_ns\": 64833516225, \"power_samples\": [132.81808096999987, 129.9436544739998, 174.87770417000002, 125.64124618599988, 130.11231332099976, 191.0295164319998, 121.60471358199982, 126.83976914399989, 194.84520412799986, 130.90969294499996, 126.90696072499998, 194.91845010499992, 136.20674416999987, 132.10697336999976, 181.69001650899997, 126.80608698899994, 127.4111566759999, 193.5856626299999, 121.57144102999996, 133.54128816999992, 186.95352908799975, 160.00266725799986, 128.17243797399988, 141.54202577, 156.0711663159999, 125.57417324999994, 142.09035757399988, 158.87622896999994, 120.17205558799981, 144.62024362599982, 183.56896417599978, 129.50510680399987, 146.09576359799985, 190.92008767999982, 133.37173805499992, 137.64614163399983, 193.51253529799976, 122.87509456999987, 127.04134388699993, 189.54645137, 129.50510680399987, 133.81260320499985, 189.54645137, 122.7747551939998, 126.83976914399989, 193.43921997799976, 149.6813607129999, 125.57417324999994, 188.1774905719999, 136.24084284499997, 122.94193021599983, 157.9633922979998, 129.4713056989999, 134.67013008999982, 175.23539727499985, 138.74004944199987, 137.44154190599977, 167.12487446199975, 173.36651824, 132.20856016999994, 124.74380113599977, 165.4381964339999, 150.63275300599992, 140.7909570989998, 160.10799691399984, 134.70416928999998, 132.64865366999982, 185.40343722399996, 122.7747551939998, 129.40387682799985, 190.81065892799984, 133.43952324999987, 129.6061634409998, 189.51015940199989, 126.80608698899994, 133.50748269999985, 194.88173296999992, 122.7747551939998, 128.10495471399975, 190.7377688859999, 126.83976914399989, 138.80830960599997, 181.473655021, 149.43885984199983, 122.80825892399992, 154.8083602879999, 140.10664166599986, 122.84176265399981, 164.63496663399974, 136.13872168499995, 165.33215429799986, 162.14387174599972, 182.7744519219998, 132.0053865699998, 160.49414553299994, 177.4398833859998, 125.40640469799985, 135.17984528999978, 182.6660924739998, 122.7747551939998, 127.34396509499993, 185.40343722399996, 128.17243797399988, 136.61522880999985, 186.69956784399994, 126.80608698899994, 126.77240483399987, 186.6632077539998, 132.14089361999982, 125.5071003139999, 189.36443031399995, 132.03930681999987, 130.87583217000008, 183.02735248299985, 121.4045637459999, 128.03764448799996, 189.47368036199998, 130.60546690499984, 157.47357899799988, 181.54571377000002, 166.73546081799986, 128.03764448799996, 137.50985859599984, 154.77342837799983, 136.13872168499995, 153.9281984229999, 156.0711663159999, 125.37278201799995, 156.62995181799988, 197.36338635099992, 125.37278201799995, 125.40640469799985, 194.62527790399997, 130.70687558500003, 137.61198328899968, 189.29165930599993, 128.07138611799985, 121.67160170199986, 184.03470537399994, 128.03764448799996, 130.97724084999993, 186.59067403599977, 141.3363573219999, 126.77240483399987, 186.59067403599977, 141.30219663799994, 158.66592706599977, 189.36443031399995, 130.60546690499984, 134.70416928999998, 161.82734841799993, 133.33775832999982, 138.6716138019998, 173.7591990499999, 174.69894947499995, 126.70521325300001, 178.95207922899976, 171.85592583999983, 128.03764448799996, 140.6540236999998, 175.9641651679999, 131.18005820999986, 137.8848997069997, 170.87952016999998, 133.43952324999987, 123.27645207399974, 189.36443031399995, 133.43952324999987, 124.10730507399978, 195.957590494, 130.74073635999991, 133.40571777999992, 191.96065272399983, 132.0053865699998, 129.40387682799985, 187.9593467159999, 126.5706573619999, 135.07790224999985, 201.36504868299983, 141.370694092, 132.0053865699998, 198.6632904579999, 154.59912710399976, 130.63932767999995, 147.86440241799983, 157.29868419399997, 128.00390285799972, 155.2615794279999, 154.59912710399976, 138.77409178599976, 153.9630708579998, 197.73099158899993, 127.97033426199994, 161.75707012199973, 188.06841864399996, 123.93983328699983, 133.64305308999985, 185.25842092099992, 122.54074452599991, 136.24084284499997, 183.88992666599984, 138.60335363799982, 133.77879773499978, 193.18318032199988, 137.3052588679999, 125.2720864019999, 206.62482768999996, 128.10495471399975, 129.26884574699977, 186.59067403599977, 121.23751495399983, 134.73820848999992, 174.87770417000002, 133.20218793999993, 138.60335363799982, 177.54752976999987, 130.67301480999993, 133.30395285999987, 172.21224816999984, 167.96592138999983, 123.97339649199989, 127.04134388699993, 165.29692797199993, 137.44154190599977, 132.47940031999985, 161.22953124199978, 131.97164026999985, 132.5133205699998, 187.9593467159999, 134.67013008999982, 126.537147936, 201.1433400909998, 123.87287899600005, 142.63450922799996, 191.85104585199997, 133.33775832999982, 130.70687558500003, 189.10963824999988, 138.6375714579999, 123.90627008199988, 194.5153147919999, 127.8355407759999, 131.8023869199999, 189.29165930599993, 159.79218830499997, 118.60645278399977, 163.85875136599998, 147.89885914599984, 122.64108390199999, 163.0901543619999, 150.49391806799986, 138.60335363799982, 159.0865308739999, 188.0319990789999, 127.76823054999977, 157.718395774, 185.22212030599997, 129.33627461799983], \"power_mean\": 150.07388417194173, \"energy_millijoules\": 9729.817604410355, \"energy_joules\": 9.729817604410355, \"coremark_score\": 4627.558654, \"coremarks_per_mhz\": 3.7079796907051286, \"ulpmark_cm_score\": 30.83305486261277}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [699.1872354, 652.108877645, 632.4417208899999, 704.458791552, 645.728004405, 644.4519620000001, 678.2596264499999, 639.2274647109999, 641.6950125829999, 670.368251142, 644.5955296, 633.859876012, 674.1921306930001, 695.2131899200001, 633.9445314839999, 682.171725904, 689.90495135, 639.085232544, 635.6177217420001], \"power_mean\": 659.8164124224737, \"energy_millijoules\": 3299.0820621123685, \"energy_joules\": 3.2990820621123684}}, \"1324800\": {\"active\": {\"elapsed_sec\": 61.070923727, \"elapsed_ns\": 61070923727, \"power_samples\": [126.63802167200004, 193.14652266199982, 161.1592529459998, 132.0053865699998, 155.75678217999985, 157.22858247399972, 134.5681870499999, 163.16055130299992, 158.42069487999981, 130.63932767999995, 163.05486540699985, 191.88745635399982, 141.1650256439999, 153.82375995099994, 194.5153147919999, 134.67013008999982, 128.10495471399975, 191.9970632259998, 134.5681870499999, 144.10429130599982, 205.21812844999988, 138.50087565399986, 142.63450922799996, 193.11005298999999, 134.46641856999997, 133.13440274499987, 203.80749008099986, 145.0967643099998, 143.7948966099999, 206.43894576999992, 149.3004404159999, 133.20218793999993, 156.38537100899998, 134.53432240999996, 131.97164026999985, 172.24795364499982, 129.13398800499988, 130.47037109500002, 178.80843631099992, 183.81763023799988, 130.30124086499995, 132.3101469699999, 187.7776224249999, 137.13481748499987, 136.3088653299999, 179.8889778979999, 133.06644329499989, 133.7108382849999, 207.8825157299998, 133.10042301999988, 138.39839766999978, 191.6318321079998, 133.13440274499987, 137.20295900399992, 194.40535167999985, 126.46995635500002, 138.46683330999997, 182.55773302599982, 130.40264954499992, 126.60433951699986, 176.14321760099983, 139.79884913499995, 134.46641856999997, 189.2551802659998, 183.81763023799988, 143.7604408899998, 186.55431394599975, 166.38133266999978, 135.83235820499988, 137.71428315299988, 166.41680004999978, 135.79843439499996, 147.04982708099988, 191.74143897999977, 135.79843439499996, 152.41673890599975, 199.66382320399987, 134.46641856999997, 133.23599340999988, 193.0002679979998, 135.76433571999985, 141.13086495999994, 193.0733953299998, 142.39408829499985, 137.13481748499987, 199.5899127439999, 130.33510163999983, 133.13440274499987, 194.44206881499997, 148.9540360169999, 137.03251762099978, 197.03242829499982, 159.7570182999998, 139.79884913499995, 169.72435980499995, 139.73029454499988, 135.79843439499996, 162.98446846599984, 146.32517337199988, 135.73023704499997, 169.61778272499976, 195.70053141999995, 141.13086495999994, 135.69631323499982, 190.40948262999973, 126.46995635500002, 141.57636254, 182.3050180119999, 126.46995635500002, 129.57253567499993, 202.36438266999983, 131.8023869199999, 134.94192000999988, 191.70484079499977, 131.76846666999973, 138.43261548999988, 206.21581104999973, 134.4323793699998, 131.8023869199999, 186.37288641999987, 131.76846666999973, 134.39834016999987, 190.4460213399998, 127.73448891999988, 137.0665007949998, 195.7373080299999, 170.5592545699999, 131.76846666999973, 202.43853102999992, 169.01408926499982, 134.46641856999997, 149.54276336999988, 160.98346687399976, 134.39834016999987, 145.57909475999998, 203.62220266399981, 129.1001868999998, 158.80618835299992, 199.62686797399988, 132.99865809999983, 143.7604408899998, 186.37288641999987, 138.7058316219999, 142.46288078499992, 195.6639434079999, 126.36908261899987, 137.3052588679999, 200.95864620399982, 129.06638579499986, 134.36447552999982, 188.96390916199994, 138.36435532599978, 143.72598516999983, 195.7373080299999, 145.0967643099998, 139.69619303099978, 176.14321760099983, 135.62811588499994, 136.20674416999987, 179.96110293799995, 141.06219141999986, 134.36447552999982, 174.66312504999985, 180.93275130099994, 135.69631323499982, 141.0280307359999, 175.7133445449998, 134.29639712999995, 140.10664166599986, 175.53429211199978, 132.99865809999983, 142.9091500149999, 188.89113815399992, 146.32517337199988, 138.80830960599997, 208.7672066199999, 134.2625324899999, 131.63295961999984, 198.44248355499997, 131.56529306999983, 135.73023704499997, 194.25867143300002, 138.22765952199984, 142.35986844099978, 189.07315920999974, 134.29639712999995, 131.7345464199999, 199.70058891999997, 169.4758016149999, 138.26187734199982, 204.95834737999985, 170.20352576999994, 145.02791053199985, 145.57909475999998, 158.21039297599987, 134.2625324899999, 168.1787193099998, 167.64672450999979, 136.8960594119999, 160.21332656999994, 199.5899127439999, 138.19344170199997, 131.76846666999973, 192.96361033799985, 134.53432240999996, 131.8700534699999, 192.9269526779999, 138.39839766999978, 133.16820821499982, 199.62686797399988, 139.49088082299977, 138.22765952199984, 190.2271638359997, 134.29639712999995, 135.66221455999982, 195.59039018800001, 147.51859185399996, 139.59353692699983, 169.40481105999993, 142.25685609699974, 135.56009339999991, 168.14319225999986, 140.92519651199984, 131.56529306999983, 170.70165577, 174.12686096499988, 127.63343706399985, 139.45660352799996, 183.60055510199993, 135.56009339999991, 137.50985859599984, 186.22781898399978, 130.30124086499995, 129.43750459399973, 195.957590494, 127.70092032399975, 128.17243797399988, 195.59039018800001, 124.93654929799993, 132.99865809999983, 194.14870832099996, 143.55405996199988, 135.62811588499994], \"power_mean\": 155.3130126673826, \"energy_millijoules\": 9485.109150420307, \"energy_joules\": 9.485109150420307, \"coremark_score\": 4912.717388, \"coremarks_per_mhz\": 3.708270975241546, \"ulpmark_cm_score\": 31.628523746266676}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [685.4764745399999, 637.5246662459999, 641.9806639770001, 700.3961456989999, 641.5520400969999, 643.199993116, 696.174681384, 646.744496, 636.187330272, 701.573119106, 639.198959806, 644.3085418000001, 724.2476518300001, 642.8565286259999, 636.3005821760001, 689.5671550750002, 641.580663952, 638.857631841, 697.605168176], \"power_mean\": 662.3859207220527, \"energy_millijoules\": 3311.9296036102633, \"energy_joules\": 3.3119296036102632}}, \"1497600\": {\"active\": {\"elapsed_sec\": 54.014736229, \"elapsed_ns\": 54014736229, \"power_samples\": [150.07759147599984, 206.10424368999986, 144.92454136399988, 154.45975774, 206.1785582499998, 151.51321375899988, 145.16561808799986, 218.01636584799974, 139.59353692699983, 150.49391806799986, 235.4526622479999, 140.8223622879999, 144.92454136399988, 210.06125685999996, 147.38040971799978, 143.5196042419999, 178.08966782799985, 156.73876917399969, 151.5828392889997, 195.84744926199994, 156.73876917399969, 144.8211721959998, 183.96240894599987, 190.70123017599985, 138.3301375059998, 194.55184363399985, 218.24270789599996, 156.8787928659998, 150.6673280739999, 188.70893002599985, 148.81561659099987, 137.4757002509998, 204.66137298499996, 147.4148664459998, 150.84091630199987, 211.3926788499998, 151.5828392889997, 151.54802652399985, 200.84779190799986, 146.56666550599982, 146.15265366099982, 208.69246311999984, 166.20435953799984, 146.2216260839998, 207.4728460849999, 150.18167312399987, 143.41641377799976, 210.17335858, 148.81561659099987, 146.11807879599985, 203.32570471099996, 168.7297620549998, 148.9195201189998, 165.40297010799998, 172.72384959999977, 142.56571673799976, 173.36651824, 160.63189472999977, 159.3007100299999, 170.66600976999985, 211.46746798999982, 142.22245985199982, 155.37259471699997, 211.3926788499998, 143.38213475399982, 147.7953113499999, 199.29483944599997, 142.08505126299974, 137.16880065899977, 210.13592735500004, 144.75214141599986, 143.82917563399985, 207.4357251549999, 148.67701924799997, 148.7809227759999, 211.35518814999978, 144.75214141599986, 140.75368874799983, 184.7148424809999, 143.41641377799976, 156.7038980619999, 183.7090926699999, 151.37431975299978, 131.46370626999976, 196.9589450279998, 178.520965844, 140.75368874799983, 190.3365925879997, 180.71638981299986, 148.67701924799997, 156.0711663159999, 178.01784636899993, 150.1470980559999, 149.3004404159999, 216.76046092299987, 149.97368804999996, 152.03451259899987, 210.13592735500004, 146.08350393099977, 146.04910637299974, 203.39978159199984, 146.77376008199974, 151.51321375899988, 212.72846615799995, 151.51321375899988, 148.67701924799997, 216.64746801899992, 150.00826311799995, 158.17528264099997, 196.73830632399984, 148.67701924799997, 143.45086949799986, 205.95542352999985, 171.42819255999984, 144.71780302799993, 168.0367933, 183.27512824999985, 145.13127969999994, 175.92828107299977, 164.66067515600002, 146.01453150799978, 179.96110293799995, 213.98486132899995, 139.45660352799996, 147.31131864999986, 215.46645560199988, 151.37431975299978, 147.55322619399988, 210.02382563499987, 147.31131864999986, 145.0967643099998, 213.94725148399993, 151.37431975299978, 142.6001129829997, 212.5786498099999, 152.67511559199988, 147.38040971799978, 204.62417965999998, 147.38040971799978, 148.67701924799997, 176.65059945399992, 147.34577537799998, 139.38822471899994, 204.921154055, 147.2420499699998, 156.73876917399969, 191.55882342099972, 186.08256508599982, 147.38040971799978, 203.39978159199984, 173.9481062699998, 153.93667477999998, 149.26574660099982, 188.56338800999993, 132.6933633399999, 154.66881178599988, 203.25162782999985, 143.2789442899998, 162.5617248819998, 207.24954646999993, 144.61443385999996, 151.44376675599983, 207.17492191999986, 142.22245985199982, 151.27005998499988, 204.54998374499996, 145.98013394999975, 147.48413512599984, 216.609739224, 140.513859616, 142.01643516399986, 212.50354906999974, 139.353947424, 144.75214141599986, 203.14041729399992, 160.63189472999977, 143.2789442899998, 177.18883137399985, 155.2328086199999, 151.20061298199983, 185.0409895449999, 156.52900325799988, 143.38213475399982, 179.70903516999988, 199.25807372999986, 145.98013394999975, 140.71952806399986, 197.8163909739999, 150.04301640799986, 151.8608058279999, 185.93749764999973, 150.00826311799995, 149.36965012899987, 211.35518814999978, 143.31340000999978, 153.97160668999993, 213.7971978459999, 155.33760333200007, 150.04301640799986, 213.98486132899995, 136.69145968399994, 144.61443385999996, 203.2144941749999, 149.97368804999996, 136.72561802899986, 199.44247085199993, 151.20061298199983, 151.30487274999984, 205.95542352999985, 177.87401881999983, 140.71952806399986, 205.73228880999977, 178.0536647829997, 140.58235706999983, 161.19448242599992], \"power_mean\": 167.35630395858126, \"energy_millijoules\": 9039.706614583116, \"energy_joules\": 9.039706614583116, \"coremark_score\": 5554.526939, \"coremarks_per_mhz\": 3.7089522829861115, \"ulpmark_cm_score\": 33.18691776080778}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [667.962302046, 634.684697493, 698.6892694320002, 637.183904582, 639.962521848, 704.0197068520001, 667.991963288, 638.6583898639999, 645.3255082799999, 678.596306418, 643.9929584, 664.4928365249999, 671.959774176, 640.0764864, 681.655707208, 657.2057753380001, 646.60048227, 672.408739728, 704.0511275920001], \"power_mean\": 662.9220240915789, \"energy_millijoules\": 3314.6101204578945, \"energy_joules\": 3.3146101204578944}}, \"1612800\": {\"active\": {\"elapsed_sec\": 50.152985554, \"elapsed_ns\": 50152985554, \"power_samples\": [209.94915514000002, 155.2328086199999, 155.2328086199999, 198.22148744299977, 153.93667477999998, 153.93667477999998, 188.89113815399992, 161.89250151999977, 148.67701924799997, 207.3984128799999, 188.4541379619999, 156.6339760899998, 152.60554955499993, 182.0161213329999, 153.86699009799986, 165.1202516049999, 183.13034954199998, 151.0963532139998, 165.15547793099995, 220.98632652699973, 160.5263869539998, 169.01408926499982, 211.0558393299998, 144.47654930199997, 152.60554955499993, 224.33555223400003, 156.42403042599983, 160.56143576999966, 216.34621810199997, 160.56143576999966, 157.89494011999977, 227.11162760199988, 151.2352472199998, 144.5455800819999, 213.68456118199992, 173.04518391999977, 150.99209344599979, 228.37046921799993, 161.7164186829998, 163.11770325399993, 182.34119967699974, 161.82210457899987, 149.80009982199988, 183.67303738199985, 160.4911574739998, 160.5263869539998, 188.96390916199994, 209.65028120499983, 145.8765866619999, 151.68709905699973, 203.02920675799987, 155.75678217999985, 146.42872065999973, 201.73526235399981, 155.12801390799996, 158.35065426299968, 224.2974663939998, 148.434696294, 157.82489950299987, 215.09053510599983, 163.15305168399993, 160.4911574739998, 212.31618235199983, 160.42087917799984, 152.53598351799985, 211.0558393299998, 161.75170763799986, 155.6869788529998, 220.418687287, 157.82489950299987, 159.2303700199999, 211.01854088999994, 189.71655878599984, 153.76237350600002, 171.1073925999998, 172.33116878999988, 155.2678000049999, 174.30561565999983, 173.76916785999992, 156.45890153799985, 179.81703779399982, 212.31618235199983, 152.5706771199998, 189.00038820199984, 212.42864089599993, 161.75170763799986, 156.84374200599984, 213.68456118199992, 156.45890153799985, 159.54635898799995, 221.59796153399986, 155.12801390799996, 164.83735152300005, 221.67389531399988, 152.50111108299996, 154.98840725399975, 216.30848930699983, 156.21408476199974, 159.1250403639998, 211.0558393299998, 156.3539287059998, 149.83485311200002, 198.18459168799984, 153.8320581879999, 153.86699009799986, 194.22214259099974, 205.58365968999976, 155.16300529299997, 199.36856039199984, 204.36439858999995, 152.46623864799983, 158.3855845449998, 193.78229014299995, 153.76237350600002, 149.0926333599998, 193.59908105399984, 149.73077146399987, 153.0233034429998, 220.418687287, 160.38564969799972, 148.434696294, 212.27863198199987, 157.71974855099973, 151.13098745199977, 216.30848930699983, 155.0582105809999, 160.4559279939998, 201.77233653399992, 157.68463821599994, 145.84201179699994, 207.21223419499984, 153.8320581879999, 156.42403042599983, 212.42864089599993, 181.61886520599978, 159.05488071299976, 172.43828022999992, 188.30840887399995, 145.80743693199986, 166.27511241399986, 184.35258095899985, 151.13098745199977, 166.41680004999978, 215.09053510599983, 157.71974855099973, 163.04718766799988, 220.22953900599975, 155.19799667799987, 164.23668819099998, 209.57561070999986, 155.0232191959999, 151.16580021699986, 217.5638755379997, 159.01971070799993, 155.09320196599992, 218.85667813299983, 151.13098745199977, 160.35042021799984, 212.42864089599993, 179.09708194599978, 154.98840725399975, 216.30848930699983, 174.96125071799975, 155.12801390799996, 179.4571523379999, 174.99695079199978, 148.29609895099986, 170.27463496999997, 222.96669740899983, 160.4559279939998, 179.6370950659998, 220.26725202399973, 157.82489950299987, 151.20061298199983, 216.19549640299977, 147.0001424259998, 149.86960640199993, 220.3051594389998, 149.73077146399987, 151.27005998499988, 226.8065770479999, 156.42403042599983, 161.575624801, 224.18340418599985, 161.7164186829998, 160.31537140199964, 225.70433039199975, 164.48399878899988, 151.0963532139998, 187.48663943899987, 160.35042021799984, 162.94132365199994, 191.55882342099972, 161.54033584599983, 156.3539287059998, 179.493029922, 206.87699775499982, 147.06923349399972, 167.46945363999976], \"power_mean\": 175.0163296870652, \"energy_millijoules\": 8777.591454509482, \"energy_joules\": 8.777591454509482, \"coremark_score\": 5982.292414, \"coremarks_per_mhz\": 3.709258689236111, \"ulpmark_cm_score\": 34.17794067481635}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [660.7650897059999, 660.1687354080001, 701.04211233, 638.487652792, 639.4492419120002, 703.737403588, 634.4585230020001, 642.6275032679999, 697.108151978, 634.37368941, 640.0764864, 703.517941804, 647.87521897, 641.352113479, 702.374128155, 642.4270141459999, 663.7829519580001, 694.3156575, 639.7914285360001], \"power_mean\": 662.5121602285263, \"energy_millijoules\": 3312.5608011426316, \"energy_joules\": 3.3125608011426317}}, \"1708800\": {\"active\": {\"elapsed_sec\": 47.331579044, \"elapsed_ns\": 47331579044, \"power_samples\": [222.81498196300004, 190.19062512599987, 167.07938484999988, 229.3572275649998, 185.57445613599987, 166.90211397999985, 187.5957113669998, 192.15864572199973, 172.25982229999988, 175.4268238479999, 225.36180502499974, 170.89370906499994, 194.14870832099996, 222.77695559799986, 161.6460217419998, 167.04385779999984, 226.95900436399972, 192.81716768599995, 171.00045927999975, 230.87910451399978, 171.07187022999983, 167.22112866999987, 228.1795393739999, 168.12606859499977, 160.1395853299997, 222.77695559799986, 161.61073278699985, 164.3425487479999, 232.09462334199975, 178.8451991139998, 173.51894802999982, 202.14231783799983, 168.16147262499987, 184.82355816899997, 196.62798697199992, 164.20128028599981, 166.79571501999976, 199.36856039199984, 217.48849278399996, 172.18847580999977, 171.03616475499973, 228.25587206599982, 160.31537140199964, 164.69608306099997, 217.48849278399996, 168.19705914999986, 170.06112456999983, 244.03861917999973, 169.49188536999986, 170.16787977, 220.11601115799976, 158.9495510569999, 173.59041316499986, 228.25587206599982, 169.45642216999988, 173.51894802999982, 225.5139950509997, 172.11712931999978, 156.24913562199993, 219.0455286759999, 161.5050468909999, 168.23264567499996, 220.3051594389998, 194.8563667719999, 176.18425467399982, 226.8065770479999, 189.4611625719998, 160.1746341459999, 175.4268238479999, 192.15864572199973, 172.15271085999984, 171.46389803499983, 229.39535496699978, 173.59041316499986, 182.16047689899995, 228.02687398999979, 165.46099962999972, 194.89295478399993, 228.10320668199984, 171.97425292999992, 162.97667208199982, 229.3189036299998, 173.48312360499995, 176.18425467399982, 229.39535496699978, 160.10435584999982, 162.87080806599988, 224.069341978, 189.4611625719998, 165.39006486999983, 231.94104894499992, 184.20775081299996, 168.19705914999986, 217.940983094, 187.98084580199986, 158.77406174999987, 200.62608331599995, 176.18425467399982, 165.46099962999972, 198.1109893869998, 230.76415112199982, 172.11712931999978, 171.03616475499973, 228.10320668199984, 162.72959561999983, 165.85041327399972, 221.48445026799993, 166.7246609199999, 167.07938484999988, 234.72136795599988, 163.9537881089999, 157.40429569499997, 224.069341978, 174.71043009499977, 157.5094466469999, 233.30978592999986, 164.16587238099987, 165.49628512599975, 212.1288156339998, 176.00490547599975, 166.7246609199999, 231.18558127999984, 160.03407755399985, 168.0548955449999, 213.60934149199988, 210.6069122299997, 158.8442214009999, 165.46099962999972, 209.38883849499985, 161.39936099499982, 168.7297620549998, 206.76525227499985, 160.06912636999982, 168.69435802499993, 222.7389292329999, 154.67402311799992, 176.7223022679998, 234.52895331399986, 169.27837496999996, 162.76494404999994, 229.20412835799982, 166.93745883999986, 160.10435584999982, 232.0179347149998, 170.7510702699998, 170.78677574499977, 231.94104894499992, 161.43464994999988, 166.8665869299998, 259.9331144099998, 193.4891179419999, 168.0194915149998, 226.8065770479999, 189.4611625719998, 178.7011339699999, 180.60839431, 193.41587196499984, 169.45642216999988, 174.09103654, 186.68690314499986, 165.46099962999972, 185.97367127799987, 230.64919772999986, 165.39006486999983, 177.29907788599985, 218.6678275899999, 172.04559941999992, 169.45642216999988, 225.28551439499995, 170.9292314349998, 169.56317737000006, 227.98860952999985, 173.30436890999988, 166.76018796999983, 227.98860952999985, 167.98390498999993, 169.38513017000002, 246.4263636699999, 186.7959750729999, 161.39936099499982, 191.2666009899998, 193.3059088529999, 169.3140209699999, 192.70738269399976, 183.95401882199997, 166.7246609199999, 179.2772096099999, 237.22786625399988], \"power_mean\": 188.1971616380105, \"energy_millijoules\": 8907.66883192594, \"energy_joules\": 8.907668831925939, \"coremark_score\": 6338.876329, \"coremarks_per_mhz\": 3.709548413506554, \"ulpmark_cm_score\": 33.6788452355538}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [644.9230121550002, 638.686894769, 704.414048936, 646.16829307, 645.4117680000002, 694.222803836, 636.928333334, 635.5922482880001, 702.2174826570001, 632.9006889259999, 644.9518146300001, 699.5540451470001, 635.5356223360001, 639.70588188, 698.2223263920001, 640.8663886779999, 639.7344462600001, 702.154920954, 639.477806292], \"power_mean\": 659.0352013968421, \"energy_millijoules\": 3295.1760069842107, \"energy_joules\": 3.2951760069842106}}, \"1804800\": {\"active\": {\"elapsed_sec\": 44.811981701, \"elapsed_ns\": 44811981701, \"power_samples\": [185.39302860999976, 177.29907788599985, 227.1878412599998, 245.25211804499986, 182.58766170199988, 219.12122416599993, 243.80514765999988, 187.94436676199985, 176.54295306999973, 238.4032785579999, 182.51536527399992, 191.08379774799982, 231.7492288059999, 185.2477747119999, 184.6424274079999, 251.78984753099996, 180.031368595, 186.61425078199989, 233.11766902599993, 178.7011339699999, 193.232474583, 247.71720402999995, 183.88160374899996, 190.60895975799986, 242.70820643499985, 177.1554349679999, 186.57783121699993, 234.79849201599995, 192.01220306999994, 187.90788772199994, 246.58235266999986, 218.55447844599985, 177.33508093099977, 189.78944882799988, 213.15898770699994, 177.1554349679999, 188.59986704999983, 213.15898770699994, 189.20595373599986, 208.39406406999979, 254.33200156799978, 187.83511671399992, 190.49935288599988, 243.76636899999983, 181.18542741399983, 185.39302860999976, 252.96272780799984, 189.20595373599986, 180.031368595, 245.0573283099999, 177.29907788599985, 184.0990351249999, 267.6793532859999, 179.88725109699988, 191.82929074599986, 254.37125378199994, 205.06307568999978, 187.94436676199985, 213.08396088799998, 190.49935288599988, 183.95401882199997, 228.33240098599993, 189.24230506799984, 181.25760519699998, 224.1074278179998, 235.7049793919998, 186.50517885399995, 230.76415112199982, 226.38710804599987, 187.7623457059999, 185.71971003399983, 221.105365474, 178.4492511379999, 195.03987262599992, 260.98575527599985, 189.1694150259998, 191.15699411799983, 241.02449415199976, 181.14943129599988, 185.2477747119999, 275.5827346519999, 187.01411892899978, 185.21160108399977, 243.68861178999975, 185.06634718599992, 182.55160641399993, 246.4263636699999, 182.47930998599986, 183.73658744600004, 248.92969365, 187.7623457059999, 185.17524099399986, 254.44996054099988, 210.30756340999983, 178.48531365799977, 205.65797424999982, 205.17464304999976, 185.71971003399983, 209.762382925, 201.03218380199996, 186.50517885399995, 220.34306685399997, 247.52182076499992, 181.14943129599988, 194.37902523399998, 243.68861178999975, 178.41318861799994, 192.23177305399986, 270.21892909400003, 190.53595107099977, 185.53828250799984, 248.89067831, 183.7004729879999, 176.43530668599976, 255.58285221799997, 182.334531278, 197.07980033699994, 250.185462434, 193.15922860599994, 179.77907035299995, 226.4633217039999, 181.29378686199982, 182.44306884599985, 226.76837225799977, 182.40682770599994, 175.68196632399986, 225.28551439499995, 238.24871407599983, 178.34124851399997, 231.94104894499992, 222.321419246, 183.80918867599985, 188.34488791399986, 215.74371826799972, 186.43252649099998, 191.12039593299983, 256.71950926, 191.75616341399996, 188.30840887399995, 251.6722441879998, 179.85112910199996, 191.82929074599986, 236.99617710199993, 181.0410718479999, 190.35333551199983, 244.8625385749998, 183.7004729879999, 181.00489018299982, 250.1461863139998, 180.89653073499994, 175.78961270799982, 244.9794524549999, 216.9604259339999, 181.14943129599988, 250.3814402019999, 211.6416236539999, 185.10270727599982, 216.19549640299977, 203.69606315, 185.06634718599992, 213.60934149199988, 196.96930228099995, 187.7258666659999, 234.95234462799976, 247.44370761999994, 191.7195057539999, 184.06273450999993, 236.88033252599996, 179.74294835800004, 182.80473683799983, 238.32599631699998, 182.44306884599985, 188.23563786599993, 250.30308937799987, 178.37731103399983, 187.7623457059999, 239.61701560199992, 181.00489018299982], \"power_mean\": 205.80487909706167, \"energy_millijoules\": 9222.524476074044, \"energy_joules\": 9.222524476074044, \"coremark_score\": 6695.232994, \"coremarks_per_mhz\": 3.709681401817376, \"ulpmark_cm_score\": 32.529054357978524}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [645.03807435, 700.698274206, 681.92890625, 678.32416125, 698.004526248, 639.4492419120002, 646.3988926500001, 700.698274206, 641.96896343, 639.3636952560001, 701.998436283, 640.637838205, 636.7012075160001, 696.580012415, 648.80254206, 631.4845519889999, 673.9978595460001, 643.3617916000001, 639.477806292], \"power_mean\": 662.3639502981052, \"energy_millijoules\": 3311.819751490526, \"energy_joules\": 3.311819751490526}}}}, \"6\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 128.668922659, \"elapsed_ns\": 128668922659, \"power_samples\": [147.31131864999986, 142.69425722599988, 123.92976556199983, 157.9300504549999, 182.47930998599986, 121.47051511999985, 118.60589054399986, 179.92318785099997, 120.10264651799991, 121.80503697799986, 181.32996852699978, 118.73908647799988, 124.50014415399983, 169.34966696999982, 117.47544981999988, 124.56738951399984, 176.04066471999988, 113.35249917099998, 118.50590799199983, 189.27884377799978, 129.21977980499992, 125.49490114999992, 179.92318785099997, 114.6824965059999, 110.78705710199995, 158.59857244299985, 117.50877492999984, 129.42259716499984, 164.23668819099998, 129.35487561499997, 112.08414554199976, 161.6460217419998, 114.71553237799992, 117.54210003999981, 168.26804970499984, 165.28384461399992, 123.99683849799987, 129.2873277099999, 153.239290546, 120.0024858459999, 123.3369004299999, 148.01908218199992, 117.34249117599984, 120.7034390419999, 151.83978664899985, 121.33684382799981, 129.8619190149999, 178.52119124199987, 118.70570189299985, 114.38415193000003, 178.52119124199987, 117.30916606599988, 120.03575839799998, 186.50517885399995, 129.21977980499992, 125.49490114999992, 182.47930998599986, 114.74873853799988, 124.03028875399991, 175.93301833599992, 117.34249117599984, 118.8390690299999, 181.29378686199982, 128.02045826899985, 131.94720342999983, 177.26307484099993, 138.63553047699986, 118.73908647799988, 135.60049469599983, 145.2898777989999, 130.7188523699998, 147.27668430999984, 130.68493211999987, 134.67510163499992, 151.20061298199983, 133.24327664999987, 114.74873853799988, 148.46921219199987, 183.95401882199997, 120.03575839799998, 121.27000818199986, 185.21160108399977, 127.9530293979999, 119.07224751599995, 169.34966696999982, 108.09379760199988, 120.57000581799991, 183.55545668499997, 121.37017574399988, 129.79437111000004, 189.1330636939997, 129.21977980499992, 114.74873853799988, 177.29907788599985, 117.30916606599988, 119.96904178599993, 181.2216090789998, 117.34249117599984, 126.69040176399994, 166.22819316999983, 125.3268358329999, 118.73908647799988, 168.12606859499977, 117.34249117599984, 120.0024858459999, 164.23668819099998, 153.1696058639999, 121.37017574399988, 180.031368595, 167.77075083, 115.9792282059999, 121.16966880599989, 153.27422245599985, 116.04558888299994, 131.19286611999985, 154.604219791, 121.33684382799981, 144.511064692, 183.55545668499997, 117.34249117599984, 133.88879952999991, 177.1554349679999, 119.83560856199995, 124.03028875399991, 191.75616341399996, 134.57315533999986, 127.98683050299985, 178.4492511379999, 119.902325174, 116.14521519499988, 175.86131552199993, 123.89614288199994, 128.0542593739999, 181.0410718479999, 126.5895229419998, 130.61726556999986, 178.59313134599995, 123.82906994599989, 117.30916606599988, 185.17524099399986, 129.32118848499988, 120.03575839799998, 141.1925128029999, 143.89102668599992, 131.91339795999977, 147.1729589019999, 126.5557813119998, 117.34249117599984, 149.62668981599995, 176.93978595999988, 118.67248851099987, 155.2328086199999, 183.80918867599985, 117.20936163399995, 123.0353479419997, 182.51536527399992, 117.40897049799992, 123.00178473699987, 174.6029618309999, 119.93576923399985, 159.05488071299976, 197.0429045819999, 134.43693550499995, 119.17223006799986, 186.46894605599982, 111.88596280599984, 117.44229560799988, 185.17524099399986, 117.04307787999994, 121.30334009799981, 186.43252649099998, 123.86252020200004, 119.93576923399985, 162.37683641599983, 111.95213683599991, 117.34249117599984, 165.39006486999983, 125.3268358329999, 127.85179942199989, 172.08136436999985, 168.88700016999985, 115.9792282059999, 160.1746341459999, 157.123953174, 117.30916606599988, 127.06086755799981, 158.42308313599995, 114.58304831399994, 135.18570743499993, 158.45807278200004, 129.2536405799998, 124.50014415399983, 184.92127974999983, 121.30334009799981, 116.57698607799989, 194.34243722199994, 121.27000818199986, 125.19227994200003, 188.98709623199989, 119.63528721800003, 121.23650445199985, 181.18542741399983, 113.18710571199983, 118.60589054399986, 203.47328466999988, 134.47103417999995, 125.29315367799995, 181.1132496309998, 118.67248851099987, 113.31935248599984, 193.01273665199994, 134.2667918599999, 121.20300072199984, 182.47930998599986, 137.1347949939999, 123.82906994599989, 148.50390600699996, 131.84543851, 110.721002022, 145.77303937399984, 126.48847108599978, 117.20936163399995, 154.98840725399975, 190.2801391419997, 126.5220396819999, 144.37318013399988, 186.3598741279999, 113.15395902699993, 121.57085449599981, 174.38820932399983, 122.49936937599989, 129.42259716499984, 191.75616341399996, 122.43224296599988, 117.64190447199996, 182.40682770599994, 126.48847108599978, 120.3362404139998, 181.0410718479999, 125.19227994200003, 123.79544726599988, 197.15340263799987, 127.71694167999988, 113.22008241399988, 181.07706796599985, 125.12508836100005, 119.93576923399985, 169.49188536999986, 126.48847108599978, 121.20300072199984, 173.4116584699999, 121.13616507599988, 122.53276046199994, 166.83105987999988, 158.2825834749999, 122.56632366699989, 171.97425292999992, 153.13467395399994, 125.29315367799995, 129.69296242999985, 158.42308313599995, 127.81817165599978, 123.10230223299982, 147.81127512599994, 119.96904178599993, 127.09460918799982, 181.4021463099998, 130.4480122199999, 131.1589458699998, 184.95745337799974, 114.45039396199991, 111.85304546799989, 184.99381346799987, 123.72837432999995, 113.2532290989999, 178.41318861799994, 133.17519825, 123.92976556199983, 183.59175729999993, 126.5220396819999, 129.2536405799998, 180.96870851799986, 114.48360012199998, 121.20300072199984, 178.34124851399997, 160.03407755399985, 115.84650685199983, 181.25760519699998, 146.37778997799978, 121.30334009799981, 145.77303937399984, 134.47103417999995, 126.38741922999986, 147.0001424259998, 143.82199590599998, 127.81817165599978, 147.03459915399992, 182.6601439819998, 119.83560856199995, 150.95728068099982, 179.67088960900003, 129.18591902999992, 122.76735865899991, 190.35333551199983, 124.16460704999986, 126.75788502399985, 171.68868355999984, 117.10955720199979, 126.85893687999976, 183.55545668499997, 119.83560856199995, 121.70469760199978, 186.3598741279999, 125.02421462500001, 125.22596209699998, 179.77907035299995, 125.36034525900004, 126.48847108599978, 186.3961069259999, 109.16067626299991, 134.47103417999995, 166.68931605999978, 120.96899005399985, 112.01814118899983, 166.61826195999993, 115.87960189399996, 119.86888111399992, 169.27837496999996, 162.34148798599983, 122.43224296599988, 181.1132496309998, 155.72427146199993, 123.76182458599976, 120.30296786199995, 143.64977295999995, 113.35249917099998, 126.9935573319998, 150.36653483799978, 114.41735809, 139.01187759799984, 191.57325108999987, 122.46580617099994, 127.06086755799981, 183.66417237299993, 118.4059254399998, 117.27601185399976, 183.59175729999993, 123.99683849799987, 138.4644955639999, 185.10270727599982, 115.68034926999985, 118.50590799199983, 191.49993576999987, 117.0764029899999, 112.08414554199976, 190.20713045499997, 130.5156787699998, 127.61571170399998, 186.25080219999984, 140.9520918699999, 121.0023219699998, 183.73658744600004, 145.08278322299986, 138.32756216500002, 152.25754053699984, 139.75985936400002, 125.36034525900004, 148.29609895099986, 125.05789677999996, 117.10955720199979, 146.93105135799988, 182.18975256999988, 119.80216450199998, 148.33079276599972, 183.66417237299993, 119.66855976999989, 123.99683849799987, 167.6641737499998, 123.69475164999994, 133.3450451299999, 167.59318319500005, 114.35094576999984, 124.13098436999996, 194.23229599, 126.38741922999986, 115.94613316399989, 180.86034906999987, 117.00975276999986, 117.0764029899999, 175.5743199399999, 115.77997558199968, 113.15395902699993, 194.26888400199982, 122.39885187999994, 113.22008241399988, 174.45979349299978, 121.10266134599976, 110.3583765699999, 167.77075083, 119.76872044199979, 125.02421462500001, 188.95055752199983, 162.2709723999999, 121.0023219699998, 165.07158598599983, 146.37778997799978, 118.4059254399998, 156.14416278999965, 146.3433332499999, 122.29833438399987, 140.3081911679999, 139.5885276859999, 118.47252340699993, 144.20095718799996, 184.92127974999983, 119.76872044199979, 120.93548632399973, 179.5988308599999, 123.72837432999995, 125.09140620599987, 182.2259937099999, 121.10266134599976, 117.14288231199987, 184.8485595699998, 118.4391388219999, 119.93576923399985, 180.9327123999999, 126.28636737399984, 124.92334088899986, 183.59175729999993, 123.76182458599976, 113.08783563999987, 176.7959584109998, 125.05789677999996, 123.76182458599976, 192.64613018099988, 138.22490606099984, 133.00535136999997, 145.46239750999973, 119.63528721800003, 118.07259319899981, 158.63356208899995, 119.63528721800003, 118.30594288799989, 151.94422512099982, 166.22819316999983, 125.09140620599987, 123.66112896999994, 159.61204644999987, 122.39885187999994, 124.2653026659998, 159.57681696999975, 121.06932942999993, 120.20280718999982, 163.4943932389998, 128.98310166999988, 136.18013553499975, 178.19718336999983, 111.62177571699976, 124.85614930799989, 187.47107460199993, 135.60049469599983, 123.72837432999995, 187.47107460199993, 122.39885187999994, 117.0764029899999, 178.16130578599996, 118.33915626999988, 117.0764029899999, 180.86034906999987, 119.70200382999997, 114.11901351399979, 194.12215475799997, 122.16425368299986, 116.91011923599979, 187.50736656999982, 135.5323531769999, 119.63528721800003, 155.3744818539999, 128.98310166999988, 123.56060577799997, 158.8442214009999, 132.80146528999978, 117.0764029899999, 156.1091119299998, 122.36528867499987, 127.68314057499992, 142.83190340999977, 180.8243529519999, 119.83560856199995, 124.72159341700001, 181.9728632859999, 122.33172546999981, 121.37017574399988, 168.95829216999994, 120.80181503199992, 120.10264651799991, 174.02992043699987, 124.95702304400004, 126.69040176399994, 191.4634660979999, 110.3583765699999, 127.37945064699989, 182.11745614199992, 119.56857060599998, 123.62767871400001, 180.75217516899988, 124.95702304400004, 125.02421462500001], \"power_mean\": 141.37015916784074, \"energy_millijoules\": 18189.94607625742, \"energy_joules\": 18.18994607625742, \"coremark_score\": 2331.835777, \"coremarks_per_mhz\": 7.772785923333332, \"ulpmark_cm_score\": 16.49262723167594}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [640.5234895739999, 641.8543772039999, 693.8823934, 648.39755256, 637.918724124, 703.016015624, 644.5205160300001, 632.6184556999999, 701.841951612, 660.529411287, 641.825840968, 700.417200184, 664.6111852900001, 637.861714314, 659.639565222, 659.169007092, 637.5487450749999, 667.724247645, 655.230537576], \"power_mean\": 659.4279437095263, \"energy_millijoules\": 3297.1397185476317, \"energy_joules\": 3.2971397185476317}}, \"652800\": {\"active\": {\"elapsed_sec\": 59.044885342, \"elapsed_ns\": 59044885342, \"power_samples\": [182.51536527399992, 213.96258044199976, 169.71762564999983, 181.1132496309998, 223.19512546600004, 179.2742886279999, 183.772888061, 231.0586368769998, 171.2602377999998, 166.3345921299998, 228.3242501169998, 176.68813390699984, 184.59459832599975, 248.46010180000007, 183.1931951629998, 173.9583362679998, 233.79765902199972, 189.87830983899983, 174.02992043699987, 227.18662569399999, 177.76535780999995, 181.7918434379999, 243.14391153999986, 177.90923801799988, 181.8280845779999, 235.08802560699985, 204.35660976999986, 179.16610788399987, 233.75909699199985, 201.73181398099996, 187.21609546599984, 197.0429045819999, 204.3936715299999, 174.96438520599986, 195.8191043259999, 197.85623867200002, 176.65231549299995, 193.1226997639999, 248.3816688999999, 175.07203158999982, 177.72929528999987, 246.85735702, 171.29600274999984, 178.0533031619999, 240.2098415999999, 175.1079751599998, 178.0533031619999, 237.74588283699995, 185.74186212499978, 188.62245864399983, 236.37847160599983, 171.15312635999987, 179.05792713999995, 233.75909699199985, 176.4006634399999, 175.21562154399976, 242.94921867999994, 205.6853010949999, 184.4493444279999, 244.2391313449998, 180.4270968249998, 165.9091784799998, 216.88484939399984, 185.88716685099985, 177.513290042, 207.61079052000002, 189.69569427999988, 189.76870296699997, 210.38235254999984, 236.37847160599983, 180.49927460799984, 176.07718992799983, 228.3242501169998, 181.7918434379999, 180.8243529519999, 229.5382440579998, 184.41317079999976, 174.35232522899992, 227.03376408199983, 175.21562154399976, 184.99381346799987, 241.5428296199999, 179.09404913499998, 168.38905296999985, 256.16649230999997, 172.3747710099999, 175.14373440399982, 244.1612554899997, 173.85086800399972, 180.46309294299988, 234.85689075399978, 172.55352570499974, 185.85093405299983, 227.45388822999996, 183.08447947499985, 177.80123539399995, 225.96763904399995, 177.80123539399995, 169.78885349499978, 217.87457767299998, 214.99049673499974, 168.56691736999983, 184.0501292859998, 225.39554680399988, 172.41041171999996, 173.01832465500001, 224.3717873879998, 180.31873737699993, 169.02940136999996, 217.57237798599988, 180.4270968249998, 179.67088960900003, 241.4262719799999, 181.8280845779999, 177.44134993799992, 233.60524437999982, 178.98586839099994, 177.8733604339999, 242.91044001999978, 185.70544255999982, 185.81451448799976, 230.86681673799978, 184.4493444279999, 177.72929528999987, 232.27219668999987, 175.00032877599983, 170.93908688999988, 228.17134744299983, 187.0340744099998, 183.08447947499985, 233.64360865599986, 209.67137506999984, 179.09404913499998, 190.73162881399992, 207.12591601999986, 172.48187685499988, 205.06307568999978, 213.5866599459997, 185.74186212499978, 198.298943376, 202.80513996499997, 173.6718155709998, 204.9515083299999, 234.81826924899985, 171.08177986999976, 174.96438520599986, 248.18598886999996, 176.36484502599978, 172.660815265, 244.04434160999983, 179.2022298789998, 176.72413695199987, 241.50411012999984, 172.41041171999996, 187.47107460199993, 246.7792438749999, 184.2679169019998, 177.62129266599993, 242.7547257099999, 183.120593933, 173.74339973999986, 236.30110964599987, 170.90332193999984, 173.85086800399972, 229.15500047199998, 188.22128234599984, 173.6718155709998, 219.32151061899992, 173.60023140199974, 182.93946317199993, 220.53703033599993, 176.2210174769998, 177.72929528999987, 233.87458532799985, 234.77964774399993, 166.9539032099999, 172.08854303999988, 210.81705604199976, 177.72929528999987, 171.61733706999985, 217.45902884199995, 177.6573551859998, 183.62787175799986, 225.4337515939999, 177.62129266599993, 182.2622348499999, 246.74008689999994, 172.2316570249999, 173.5284632119999, 249.40134994599987, 177.62129266599993, 187.10684541799992, 240.1711814739998, 174.92862596199984, 174.92862596199984, 230.48297931699994, 181.71954700999993, 177.76535780999995, 236.10810147400002, 181.71954700999993, 189.5860874079999, 241.50411012999984, 192.20646602599982, 177.6573551859998, 237.4365552039999, 200.10704041799988, 176.25702052199983, 201.28716226599988, 205.46181013499984, 193.57144859799996, 202.1766561249999, 201.50958333799986, 179.02199038599986, 210.23258200999976, 186.88853239399987, 180.28255571199998, 204.83994096999993, 237.51403611399985, 182.9033487139999, 177.22534468999993, 233.4128297379998, 185.63279019699985, 176.7601399969999, 233.45119401399984, 176.25702052199983, 171.2602377999998, 251.66511480999998, 189.44007003399986, 173.9583362679998, 242.6379899499999, 178.91380964199982, 178.91380964199982, 245.3336386699998], \"power_mean\": 197.72319210902992, \"energy_millijoules\": 11674.543207531911, \"energy_joules\": 11.674543207531912, \"coremark_score\": 5082.161613, \"coremarks_per_mhz\": 7.78517403952206, \"ulpmark_cm_score\": 25.696936887984872}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [669.3126837739999, 640.123489549, 754.169727204, 636.1050204779999, 642.8167064, 681.6856249999998, 644.0605626600001, 634.4590014080002, 680.3808650079999, 644.1180199050001, 636.1902108939998, 684.3163379800001, 678.535301686, 642.874045, 684.1637132, 672.1522910250001, 636.1902108939998, 677.810161044, 674.7569340639999], \"power_mean\": 663.9063635354211, \"energy_millijoules\": 3319.531817677105, \"energy_joules\": 3.319531817677105}}, \"806400\": {\"active\": {\"elapsed_sec\": 47.828355711, \"elapsed_ns\": 47828355711, \"power_samples\": [231.84946052199996, 201.58366021899997, 216.7716783699998, 225.35734201399987, 204.2822952099997, 216.7340838859999, 218.7159639639999, 211.99520409299998, 233.99007366399974, 266.560015936, 196.0855070419999, 219.32151061899992, 254.55751405799992, 201.361239147, 206.90206881999984, 270.5850708759999, 215.14102495299983, 207.16309611999986, 261.20295106599986, 204.09622224999998, 203.17631027499988, 263.7838772839998, 205.46181013499984, 205.6853010949999, 262.45142537599986, 202.7679466400001, 201.43531602799987, 265.1919551939999, 204.1707278499997, 197.487444428, 267.80827891399986, 198.70492521699987, 201.50958333799986, 243.0659544399998, 209.4843060899998, 211.26669765199983, 246.85735702, 201.361239147, 198.70492521699987, 252.0976524759999, 241.27099484999985, 196.0117155319998, 257.37642791199994, 235.9537742819998, 208.006378585, 205.9832252599998, 229.3849072559998, 198.7787648079999, 212.7084410509999, 233.2973414019998, 205.2383191749999, 219.20798277099982, 269.05630460199984, 210.62949675799985, 221.82805153599986, 261.12332788599986, 202.73094404999983, 202.80513996499997, 266.480121949, 205.1638859699999, 208.04380980999997, 279.60823839499983, 205.20119824499977, 196.12221358800002, 266.36017827700005, 200.03308218199993, 208.34268374499993, 263.8238080189999, 199.95912394599986, 202.47097224499987, 267.7681697539997, 219.9305336059998, 202.65655739999988, 268.9761733249999, 219.85479452799984, 199.99600800199983, 219.32151061899992, 217.26998420799987, 209.03518672999985, 229.8063374139998, 213.21054627399997, 193.42471935399988, 229.84472082399986, 258.54651818599973, 199.922049766, 236.49431618199992, 266.4002279619999, 214.46326100999988, 206.93944056999987, 273.0044265309999, 201.02760753899986, 206.86469706999992, 259.7556821379999, 203.98465488999977, 192.31642913799988, 268.8558734129998, 210.62949675799985, 206.8275169699998, 270.30409299999985, 201.25002861099995, 199.8851657099998, 270.34411481199993, 203.79877296999973, 205.2383191749999, 267.48802269799967, 211.882567429, 213.21054627399997, 227.03376408199983, 213.21054627399997, 197.19237112999997, 237.70734105099984, 217.04348001099993, 202.61955480999995, 232.3875063219998, 258.46713290599973, 209.2222557099999, 233.68217068599972, 251.70450987999982, 210.47968041000001, 205.79704657499974, 258.42764381799986, 202.17399784999986, 201.80608129099983, 257.059972333, 213.17307012999981, 201.80608129099983, 258.38795117799987, 198.55724603499982, 199.77413329399985, 266.4400722639998, 199.8851657099998, 207.9689473599998, 275.4584682339997, 201.1388180749998, 197.26609207600006, 268.8558734129998, 205.1265736949997, 201.21308538499989, 249.283723002, 197.22932635999996, 206.37982256999976, 254.7151648659999, 193.31457812199994, 199.81101734999982, 252.01906436199988, 246.38847734499984, 197.33981302199982, 248.10775707999994, 248.8917674659998, 214.5009898049999, 209.85844404999978, 243.65456194499984, 201.17595172999995, 200.47721184599982, 252.9929750099999, 199.922049766, 195.12054103199978, 258.2690768099998, 201.17595172999995, 229.42329066599984, 264.9524240899999, 188.00242484199987, 213.21054627399997, 266.36017827700005, 203.72445840999978, 209.1849572699998, 267.48802269799967, 215.64016191599978, 215.79112120999991, 249.2446482979998, 209.1474665699999, 210.3672218659998, 250.61199861199998, 197.118650184, 194.4954610049998, 250.533529143, 244.9434656699999, 209.1474665699999, 263.7838772839998, 231.77265324999996, 206.52911791999998, 207.16309611999986, 238.33900559999972, 190.43893149799976, 209.78365490999977, 244.98236266999982, 206.37982256999976, 211.1917894779998, 271.4754219939998], \"power_mean\": 223.87926490449723, \"energy_millijoules\": 10707.777118169492, \"energy_joules\": 10.707777118169492, \"coremark_score\": 6274.312963, \"coremarks_per_mhz\": 7.780646035466271, \"ulpmark_cm_score\": 28.017019469983644}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [646.6338224200001, 697.164188688, 645.1600489499999, 646.5472064599999, 695.772241388, 639.86646201, 635.991384632, 681.38140625, 638.5083751800001, 642.5298660000001, 689.212293308, 641.19598446, 638.708032872, 695.8654518760001, 662.0967671430001, 634.600639072, 703.848370184, 671.7924371700001, 638.5653574559999], \"power_mean\": 660.2863334483684, \"energy_millijoules\": 3301.4316672418418, \"energy_joules\": 3.301431667241842}}, \"979200\": {\"active\": {\"elapsed_sec\": 39.3706866, \"elapsed_ns\": 39370686600, \"power_samples\": [260.40814839999996, 244.82637366999995, 311.3697226789999, 264.87264874799985, 239.62814619899996, 260.60679802599986, 260.885070832, 238.22280478399978, 277.2716271779999, 264.7128929859998, 251.3505603279998, 277.2716271779999, 301.73856753199993, 239.55042738899976, 275.9027664129999, 297.91790187399977, 243.53764806499976, 242.71594704999984, 306.09602357999984, 244.86527066999986, 238.64880811799992, 292.6858016159998, 243.49881023499995, 238.84260879399972, 301.4890558679997, 240.88240285499978, 253.34745892199976, 321.9109103699998, 240.88240285499978, 240.84368336500006, 304.5597741459999, 238.1454038979997, 244.82637366999995, 312.5291503779998, 239.51176726300002, 256.70388358899993, 289.6613125299998, 242.17124679999995, 252.83535916099981, 290.400011158, 242.0932896999998, 246.11478012999976, 288.9899420739998, 290.86507137599995, 248.69578969799977, 296.8384834499999, 291.317209897, 250.0231750129998, 247.95109238999999, 287.1707223779997, 248.8917674659998, 248.0295252899998, 272.6017816169997, 244.70928166999977, 261.2425584939999, 312.40296900199974, 244.82637366999995, 256.04797418199996, 308.42099148199986, 245.91939686499984, 240.84368336500006, 307.25667645099986, 247.20738760999996, 255.2974946659998, 305.8454431959999, 242.1322682499998, 244.9434656699999, 313.39340830899994, 244.7481786699999, 247.44228408999993, 305.72036754199996, 252.75665240199976, 253.92650555399996, 303.14905219399986, 260.4875674179999, 240.7658452149999, 304.5597741459999, 256.585390588, 250.25878514099986, 282.5487970349999, 261.894457268, 244.67018416999986, 279.97320807999995, 255.4160127939998, 239.39538832699975, 271.9580489379998, 301.6138116999998, 252.6384910979998, 279.85148203999995, 305.8038228239999, 247.28582051, 245.09945467, 292.43899745399995, 247.20738760999996, 245.1385521699999, 288.5799603369999, 251.193182074, 254.55751405799992, 316.4316095099997, 243.1480685949998, 251.9010811779999, 309.7903308519998, 248.53888663399982, 244.7481786699999, 296.42514915799984, 243.26498247499978, 263.22607563199995, 314.9733344959998, 244.5921896699998, 243.38189635499987, 292.72704138599977, 236.74061769699983, 247.3640522999998, 299.3698048419998, 243.26498247499978, 253.88699153399978, 299.4113421819999, 286.9661335599998, 241.9767538299999, 293.9766894339999, 277.8750896099999, 252.55978433899975, 250.533529143, 272.52129401599996, 248.61743887399996, 263.8637387539999, 277.6725791199998, 255.1396057899998, 253.2292976179998, 307.4657186899999, 238.02920308199987, 257.09960549799996, 314.9310830659998, 276.5434118819999, 249.8660343539999, 310.9917129109997, 239.16263045499977, 244.7872761699998, 308.29534446599996, 240.61056808499984, 248.65651357799982, 305.8038228239999, 247.40306764000002, 245.84128371999975, 314.9310830659998, 241.86001806999968, 240.72712572499972, 305.5950773499999, 262.1729413219998, 243.1480685949998, 307.1312081389997, 265.68056592999994, 255.1396057899998, 273.1252613869999, 255.0604584099999], \"power_mean\": 266.5422027005418, \"energy_millijoules\": 10493.949528196705, \"energy_joules\": 10.493949528196705, \"coremark_score\": 7622.725887, \"coremarks_per_mhz\": 7.78464653492647, \"ulpmark_cm_score\": 28.587901932815225}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [631.6592686140001, 706.1295075840001, 635.764258814, 637.122048574, 710.243435493, 639.2950124329999, 638.5653574559999, 702.232108444, 642.3864458, 643.7443262549999, 700.4332679190001, 639.780737234, 638.4513929040002, 691.624730901, 643.7443262549999, 685.90483407, 702.200687704, 638.3944106280001, 633.101330793], \"power_mean\": 661.0935519934211, \"energy_millijoules\": 3305.4677599671054, \"energy_joules\": 3.3054677599671054}}, \"1094400\": {\"active\": {\"elapsed_sec\": 35.228411862, \"elapsed_ns\": 35228411862, \"power_samples\": [283.0621325699999, 293.0150853179998, 337.4626069899997, 276.4220426659999, 267.0877538499997, 336.04911120999986, 268.3746737649998, 273.76774722599987, 351.98144785, 277.7131644699998, 278.9185269799998, 337.2465134019999, 272.3601119049998, 289.6613125299998, 341.49144268199984, 276.260355594, 277.5916165499998, 337.5056482179999, 309.32904383799985, 270.9124260939999, 337.37608080999996, 305.6366977219999, 272.27962430399975, 298.12486578499977, 289.5790708899999, 278.87788215499995, 311.4115799249997, 290.7417416719999, 275.0141700549998, 306.09602357999984, 338.36148555399984, 268.3345051299999, 306.13785849, 349.24013574899993, 268.21420521799996, 281.89783090499975, 342.55802945799996, 281.4908202899999, 275.377743343, 326.62783142599994, 282.77699786999983, 275.377743343, 328.98173216400005, 273.4451150279999, 283.3066533699998, 343.88482093799996, 272.3197646499999, 280.20473311, 337.2034721739998, 268.0941112989998, 281.4502655599998, 342.6015306429998, 270.83205713799987, 286.63874939799996, 322.562458152, 284.2668417699999, 272.40045915999985, 316.3892984099998, 277.4700686299998, 270.83205713799987, 317.7166242499999, 319.90476273499996, 282.93987216999994, 329.53841059399986, 311.89845956199986, 273.5661280039999, 279.48651235499995, 317.2937876399999, 297.3797531639998, 282.1419954649999, 303.97598922099996, 282.6547374699999, 284.63415732999977, 338.31838496199987, 277.5916165499998, 271.6363665099999, 338.491231666, 280.04233338999984, 270.95271387399987, 349.10896409300005, 285.43481243199994, 278.87788215499995, 338.4481310739999, 274.89297895899995, 280.2454374099999, 335.40238632699993, 270.87213831400004, 277.4294832799999, 341.3181213979998, 284.14440325, 281.53158406499983, 338.491231666, 298.58208646599985, 276.219829914, 334.636074582, 300.078951418, 293.275869706, 304.72666165299984, 294.478559248, 261.496360019, 298.04212276199985, 287.96530358799987, 270.9124260939999, 302.1542778899999, 338.36148555399984, 277.51044585, 301.90476622599977, 338.4481310739999, 291.94496615799994, 278.95896337, 335.96292553699993, 271.83663213499995, 277.7535416899998, 334.506863414, 272.11844219299996, 272.4405995059999, 343.6674644139998, 276.179304234, 277.7535416899998, 333.1373268609999, 268.0941112989998, 273.4049155119998, 343.6674644139998, 290.45390196899984, 285.2305203789999, 354.37619415999995, 282.6547374699999, 268.0941112989998, 312.6974642339999, 288.04721570699996, 273.4855217579999, 304.5179987109999, 290.5772316729999, 284.0628474549999, 312.4451014819998, 332.79309143499995, 294.68492962899995, 309.7903308519998, 330.44113381599993], \"power_mean\": 298.3565756399208, \"energy_millijoules\": 10510.628328379085, \"energy_joules\": 10.510628328379086, \"coremark_score\": 8519.580837, \"coremarks_per_mhz\": 7.7847047121710515, \"ulpmark_cm_score\": 28.54253719446904}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [678.3535153340001, 648.8295894500001, 632.959989894, 681.0165625, 679.0151074559999, 646.1719695099999, 679.7131127999999, 683.3394139000001, 629.0011734840001, 639.123562881, 678.171728982, 644.87202149, 642.6732862000001, 674.214935892, 632.903482587, 636.1050204779999, 674.1545935319999, 636.8944478709999, 640.037911562], \"power_mean\": 655.6606013580526, \"energy_millijoules\": 3278.303006790263, \"energy_joules\": 3.278303006790263}}, \"1209600\": {\"active\": {\"elapsed_sec\": 31.874286654, \"elapsed_ns\": 31874286654, \"power_samples\": [301.2812006889998, 313.098713731, 358.04698171999974, 309.1194070959999, 318.4934473899999, 359.7266965199999, 302.56609839399994, 303.97598922099996, 359.7709712699999, 299.74681529199995, 302.60781435399986, 364.72683250499995, 338.23173944199993, 309.1612051719999, 308.867756824, 335.6611649029999, 290.45390196899984, 317.9280425549998, 331.63883307799995, 301.1147883719999, 317.88588926499995, 344.6500167339998, 301.0731318869998, 319.1710226499998, 360.9249431979997, 303.80931594699985, 310.0678328729998, 364.9934530329998, 310.36169663099975, 305.34449696599995, 379.4144642419999, 314.3406464159998, 305.13575149199994, 358.04698171999974, 304.9686263899998, 303.80931594699985, 368.75441544299986, 299.66383458999985, 294.56106498099973, 379.50456753399976, 301.1564448569999, 306.4621870369998, 362.02992375999975, 329.0673242229998, 310.4037696359999, 322.0522466419999, 327.4841895399999, 310.36169663099975, 333.6532381059999, 322.34985181399986, 293.06979608999995, 324.35760533799987, 323.591110405, 301.0731318869998, 333.5672897229998, 363.44480048399987, 304.9686263899998, 320.67938956999967, 370.0807320379997, 328.85323405999975, 309.1612051719999, 364.8601427689998, 297.0898335229997, 311.8563270819999, 376.4918830779998, 314.21410879999985, 314.382897846, 367.3390637499998, 303.6424284399998, 307.6673245349998, 366.142005994, 308.9095548999999, 302.3994484819998, 375.2556106049998, 331.5530033399999, 318.1968722199998, 334.03316288199983, 313.05652177599995, 305.0104613, 340.20767719699984, 316.7862098799998, 307.75101749600003, 340.20767719699984, 324.789404086, 305.0939165819999, 329.62422268399996, 368.75441544299986, 330.2267459149998, 317.94294469, 362.20727167899986, 301.1978877189997, 307.96035747299993, 371.31765759999973, 314.0032849979999, 305.4697871579999, 364.68231965999973, 310.2777663799998, 298.8308844819999, 368.576107957, 308.95156842999984, 300.9900325399998, 379.1890901979999, 311.3937340579997, 311.6880132259997, 368.53141649199983, 310.23569337499976, 305.0520816719999, 337.8427232739999, 310.1517631239998, 308.9095548999999, 340.164294962, 315.41809592999994, 307.5834164249999, 333.48134133999974, 303.5173163679998, 327.5270361099998, 329.58131663899985, 367.3390637499998, 310.2777663799998, 311.3516015779999, 371.18345615199985, 308.95156842999984, 301.32264355099994, 369.90218726199987, 300.9483760549998, 297.3797531639998], \"power_mean\": 325.5352442446189, \"energy_millijoules\": 10376.203691032886, \"energy_joules\": 10.376203691032886, \"coremark_score\": 9416.195857, \"coremarks_per_mhz\": 7.784553453207673, \"ulpmark_cm_score\": 28.912308290483924}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [633.2709979770001, 680.68203125, 640.652030848, 642.47238, 674.0342182599999, 639.3236362879999, 634.54401312, 706.7633596030001, 643.3706326050001, 642.6732862000001, 700.527190887, 647.4139854, 638.952113329, 699.229979472, 638.0236596240001, 636.723710799, 701.793023744, 632.733815403, 639.4664619849999], \"power_mean\": 656.4552908838947, \"energy_millijoules\": 3282.2764544194733, \"energy_joules\": 3.282276454419473}}, \"1324800\": {\"active\": {\"elapsed_sec\": 29.095665301, \"elapsed_ns\": 29095665301, \"power_samples\": [375.92929256499986, 336.5556351339998, 338.1019933299999, 370.438051082, 392.4128162499999, 333.90395171399996, 327.0994493139998, 385.82383452399995, 336.72846563199994, 351.76230976299996, 385.6876725879998, 334.8418471169997, 337.1602090839999, 393.784658155, 336.59889822399975, 342.6015306429998, 405.5428742739999, 341.7330685239998, 350.9733676059998, 400.28128005699966, 336.59889822399975, 340.71105134799996, 400.2351604119998, 333.86102882600005, 338.0155699779998, 397.72124317600003, 339.298430046, 345.97603656399974, 392.5041067699999, 333.9470958539998, 341.4292294779999, 384.67891174099975, 339.2550478109998, 341.8633489959999, 383.3525951459999, 374.986368534, 350.9733676059998, 342.8849362499999, 373.5216814779999, 368.35310900600007, 346.5427540339999, 376.26710256399974, 335.27299703899973, 338.491231666, 385.46081374599976, 345.88890095299973, 350.6544782499999, 400.14315763299976, 345.88890095299973, 342.8849362499999, 401.51505981799994, 333.77474054599986, 343.1022927739998, 412.032356736, 345.5835903159999, 336.5556351339998, 397.4917115029999, 336.33976340799984, 337.8858238659999, 398.9093187019997, 344.38874214199984, 338.735350883, 406.96155041400004, 349.6039049559997, 339.168505814, 388.24854076199995, 366.9826944759999, 350.8418397099998, 349.6039049559997, 370.91505325599985, 339.1251235789998, 355.52664865999986, 369.6788915459998, 343.9970539479998, 346.5427540339999, 369.5893896659999, 334.97101484799987, 343.9719422579999, 414.4546387899999, 347.08380860199986, 342.8849362499999, 415.9202666469997, 342.97183418199984, 340.45084664399974, 407.91617423800005, 344.30172517599976, 341.82007089399997, 402.65612509899995, 341.6462892369999, 344.3453455059997, 410.56714517800003, 336.33976340799984, 348.01601669900003, 392.18447260999994, 332.27718018999985, 348.2345612559999, 400.0511548539997, 365.43022032999977, 349.6039049559997, 357.29668251499993, 369.50011727799983, 337.7994005139998, 363.44480048399987, 369.5893896659999, 341.3424501909999, 362.2958318079999, 372.24071684599994, 356.41237248999994, 358.35603515499986, 404.0279681139997, 335.10040413599984, 341.5160087649999, 402.74836516799985, 332.40621323799974, 339.298430046], \"power_mean\": 359.7408570589825, \"energy_millijoules\": 10466.899572083039, \"energy_joules\": 10.466899572083038, \"coremark_score\": 10316.013892, \"coremarks_per_mhz\": 7.786846234903383, \"ulpmark_cm_score\": 28.661782597030918}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [639.2379115119999, 639.4664619849999, 699.0736310440001, 639.2950124329999, 624.255794664, 695.0888042140001, 632.733815403, 632.677308096, 683.15620142, 657.8753121240002, 631.2359912539999, 704.422628371, 636.5814786320001, 627.335641471, 670.2832669759999, 687.0798322, 629.9360416239999, 668.924167681, 640.623347518], \"power_mean\": 654.6990867695789, \"energy_millijoules\": 3273.4954338478947, \"energy_joules\": 3.2734954338478945}}, \"1555200\": {\"active\": {\"elapsed_sec\": 24.786740147, \"elapsed_ns\": 24786740147, \"power_samples\": [470.740735855, 432.68594658999984, 430.36773161999974, 473.0519998179999, 436.80825764199983, 443.39016651400004, 474.0817110409997, 479.0853107329998, 438.03769638699976, 482.13726528999985, 477.8593660419998, 429.9410670599999, 441.4059528769998, 479.03562063799984, 435.00659790999987, 434.8197665099998, 465.8802958599998, 441.8732466709997, 436.1500745819998, 497.44582862599975, 433.91556445499975, 435.6735443849999, 500.19628112199973, 447.0763001979998, 437.9422509579998, 498.87144865699986, 435.00659790999987, 436.6651449379998, 494.74625508999964, 442.9581548499999, 449.73007116199994, 508.1496196249999, 437.7989601339997, 435.6260626909999, 492.2429426189998, 437.7989601339997, 435.29246707799996, 497.496351956, 470.9341789299998, 433.8204753499998, 509.3769396539998, 460.4295886069998, 456.499425934, 465.14270751499964, 466.8619802950001, 434.81618163200017, 467.6469418449998, 456.3536402619999, 440.3527050549998, 462.53583128200023, 511.668909032, 440.40066939999986, 447.6544531899998, 497.34504105999997, 435.10205080000003, 438.08554178199995, 506.62155022000013, 439.12367395399986, 452.47625010399963, 500.09525626599986, 431.2658995249998, 444.811275617, 505.2969550450001, 445.6554286900001, 440.40066939999986, 497.34504105999997, 448.15990267199993, 448.4010140179997, 497.24425349399996, 454.88331888999994, 467.009192095, 499.84256427399976, 452.2342474899998, 438.9325458059999, 472.8055428099998, 460.18580442999985, 450.47474062699973, 461.0637281259998, 450.716446476, 440.20905799099967, 464.94681628, 498.7705424459999, 443.0543218299998, 435.4354016619999, 502.54650215999993, 445.55927100199995, 439.5540807859999, 489.1428101759999, 442.7182305639998, 440.83136462100003, 498.3666582029997, 435.10205080000003, 434.2964097649998, 511.924273855, 456.11074735299997, 453.41335375799997, 495.81884925399993, 437.56022388099984], \"power_mean\": 460.024746380908, \"energy_millijoules\": 11402.513849733146, \"energy_joules\": 11.402513849733147, \"coremark_score\": 12110.447279, \"coremarks_per_mhz\": 7.7870674376286, \"ulpmark_cm_score\": 26.309987775811464}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [632.4793146270001, 639.3807372089999, 714.414495936, 636.4107415600001, 624.897939728, 702.84293432, 631.0666803099999, 635.026136374, 696.19927968, 678.863373944, 631.151335782, 697.6207066080001, 634.770565126, 633.8072934720002, 694.9646299679999, 635.1963713319999, 680.3170312500001, 669.295358192, 639.06646196], \"power_mean\": 658.3037572304211, \"energy_millijoules\": 3291.5187861521053, \"energy_joules\": 3.291518786152105}}, \"1708800\": {\"active\": {\"elapsed_sec\": 22.572554835, \"elapsed_ns\": 22572554835, \"power_samples\": [506.16387526000005, 526.9692022659998, 535.206347706, 494.6454463299998, 525.7473533979997, 535.2585967859999, 519.2075543799998, 550.9401040459999, 561.649114922, 518.0891049609999, 533.5470644979999, 576.2702589459997, 507.487936075, 516.9190285939998, 582.78580682, 523.282186588, 519.619041454, 575.1618997979998, 499.43820514599986, 511.7198245259998, 572.3523477909997, 504.7891949949998, 518.1917920139998, 577.5443884599998, 512.5840963499996, 507.3351996350001, 572.3523477909997, 511.4135442089997, 504.7891949949998, 570.920634386, 516.6110596979998, 507.5896731900001, 555.449677602, 509.83421236000015, 514.1638782279998, 558.470671678, 509.88533083000004, 511.20909487999995, 557.0397686799998, 554.9724915799997, 511.20909487999995, 555.6088304499998, 564.2968803120001, 512.4816215099999, 511.9754518000001, 548.24334511, 503.2113494700001, 502.95181261499977, 556.2431138399999, 507.2844618449998, 538.3768381299996, 582.78580682, 507.02972675499984, 505.04307501999995, 577.38220582, 504.63681479499985, 512.4816215099999, 570.7057632340001, 521.700504502, 521.7518935500001, 591.9516361749999, 511.055823496, 510.9537300569999, 560.2677856799997, 514.8727755419999, 514.8727755419999, 574.8385252649997, 520.1707458239999, 520.4797834399998, 575.8921572939997, 556.0837828719999, 508.6634229289999, 576.1082550099999, 548.1907718859999, 513.8053260849998, 527.7762097899998, 541.6204822199999, 531.8299782160001, 555.5028193919997, 541.6730288700002, 504.63681479499985, 527.983511817, 575.9462510739999, 504.63681479499985, 515.1803870299997, 586.543617766, 517.5754057189998, 526.9994259429999, 575.838340918], \"power_mean\": 533.8759230254157, \"energy_millijoules\": 12050.943547577433, \"energy_joules\": 12.050943547577434, \"coremark_score\": 13299.051334, \"coremarks_per_mhz\": 7.7826845353464424, \"ulpmark_cm_score\": 24.89431626789988}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [698.6988121740001, 632.2814664210001, 637.73860176, 684.92411091, 627.055333793, 632.309647443, 683.0035766400001, 637.624490724, 638.809287632, 693.6631418179999, 640.279735934, 638.895012408, 689.52473977, 675.7240254240002, 639.06646196, 698.6988121740001, 661.564391712, 632.224813851, 654.423785897], \"power_mean\": 657.7110657076316, \"energy_millijoules\": 3288.5553285381584, \"energy_joules\": 3.2885553285381586}}, \"1843200\": {\"active\": {\"elapsed_sec\": 20.913973013, \"elapsed_ns\": 20913973013, \"power_samples\": [590.569123951, 574.9463167759999, 621.5903474299997, 592.672923298, 578.2191061299999, 612.2606325379999, 631.2325978459995, 580.9738322949999, 620.2661084949999, 629.7965904429999, 583.624749278, 599.9533687499999, 636.3031124099999, 582.0257225700001, 588.6306151709997, 628.5861384659999, 567.5175919719999, 582.8943105899999, 649.6519322560001, 576.8417821599998, 588.412377542, 653.7405179499998, 582.1886176899999, 579.3797377699999, 651.0940585699997, 580.43134942, 592.672923298, 641.6518586319997, 582.0257225700001, 587.5399873279997, 643.0320389620002, 580.9195004199997, 579.2711929699998, 637.796485642, 579.4337318499996, 582.1886176899999, 645.5683968900001, 608.4473396599996, 589.9132662549999, 667.8978008019998, 613.7434088449999, 579.4880042499998, 600.1185811819997, 617.9359130499998, 572.2215201719997, 594.763544693, 620.4700198899997, 590.131979074, 609.3349355359998, 650.8072181699998, 580.5400131699997, 581.2449344199998, 645.7398470259999, 588.4265470259999, 580.6483982949998, 644.18821606, 591.9061845980001, 587.4856380339999, 649.307963264, 576.5715703299996, 578.1106802799999, 645.5111489849997, 584.5670240599999, 584.2407997129998, 645.3396988489998, 587.158421666, 585.6176073519997, 664.8995889379997, 601.7730534899996, 580.5940664199999, 647.927841604, 596.4224587219995, 580.5400131699997, 611.9272859899999, 601.7730534899996, 585.6176073519997, 611.9827009259999, 598.962094158, 581.7540447499999, 614.634806915, 644.18821606, 592.180240926], \"power_mean\": 604.6702355565486, \"energy_millijoules\": 12646.05698819401, \"energy_joules\": 12.64605698819401, \"coremark_score\": 14354.066986, \"coremarks_per_mhz\": 7.7875797450086806, \"ulpmark_cm_score\": 23.722809432226285}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [633.580644096, 706.1313193740001, 633.410620672, 634.940945958, 697.2153575980001, 625.41549807, 639.678562756, 695.825725248, 634.742119696, 632.05529193, 702.6543747359999, 655.721212068, 637.5389440680001, 689.12402319, 653.4769824419999, 634.855755542, 668.876231392, 645.4791901449998, 633.524018144], \"power_mean\": 655.4866745855263, \"energy_millijoules\": 3277.4333729276314, \"energy_joules\": 3.2774333729276313}}, \"1939200\": {\"active\": {\"elapsed_sec\": 19.880350305, \"elapsed_ns\": 19880350305, \"power_samples\": [642.6327235780001, 698.101670332, 633.1432522659999, 633.2563859139999, 688.0438429059999, 645.2824509440001, 638.0963024499998, 695.7534532099997, 646.3765045219999, 649.0788469319999, 692.984893235, 682.0456370619999, 645.0540464819998, 682.4574320739997, 687.5715362979998, 643.6744000119999, 647.2346458019998, 690.1618739049999, 651.2684444949997, 648.557994442, 679.2204206069999, 637.0580714539998, 643.1460035139997, 708.3867152579998, 647.4697893310002, 649.8892109699999, 721.6788845509997, 644.768394115, 647.412716665, 709.7691589179996, 640.7405060500001, 638.3238117369998, 707.0043905480003, 646.0905553899998, 646.3765045219999, 712.4781469889998, 642.2908299219997, 657.8829906849998, 713.4391102899996, 642.0626078500001, 644.8253484409998, 705.6224924049999, 672.4926230499999, 655.2922953699998, 717.5262788349997, 668.52198289, 642.1197366099999, 676.1315054319999, 668.52198289, 652.3030528899998, 664.3306939279997, 669.7857061749997, 647.3553498100001, 676.01457281, 718.6713443689999, 643.3890444099999, 643.1608772379999, 709.2286108539998, 644.8253484409998, 643.8456720279997, 704.30033113, 659.1474274259998, 660.9901768129997, 717.5262788349997, 644.5969439789998, 650.6350549699997, 717.043043644, 642.0054790899998, 646.9546643919999, 705.6224924049999, 656.61439717, 661.8491176599999, 705.2631957489999, 651.0388528050001, 639.3046769879999, 705.2631957489999, 645.8616197539999, 644.71114621], \"power_mean\": 666.6533047419485, \"energy_millijoules\": 13253.301230255855, \"energy_joules\": 13.253301230255854, \"coremark_score\": 15101.177892, \"coremarks_per_mhz\": 7.787323582920791, \"ulpmark_cm_score\": 22.635869719397338}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [691.6542234560001, 633.2123570560001, 637.481961792, 693.043142326, 637.225321824, 637.5675084479999, 691.6852276760001, 635.898530344, 634.9976909439999, 698.323832782, 634.6001842940001, 671.89405509, 701.04021504, 637.225321824, 642.5081831100001, 701.008955432, 643.54673995, 639.9648076799999, 694.4364904050001], \"power_mean\": 660.9113026038422, \"energy_millijoules\": 3304.556513019211, \"energy_joules\": 3.304556513019211}}, \"2169600\": {\"active\": {\"elapsed_sec\": 17.772981504, \"elapsed_ns\": 17772981504, \"power_samples\": [881.4338459949996, 918.6828769749999, 857.477323981, 853.2489596799998, 907.902710508, 852.1943787209999, 846.3148870739998, 911.4548811699998, 861.5779970789998, 860.9928493619999, 924.734360584, 861.4438632089999, 854.3809751979999, 924.734360584, 852.061419688, 845.056564916, 924.6647958699999, 854.7026550279999, 851.99511107, 929.7412352019998, 860.975426463, 854.5694587049996, 921.605568742, 864.0184944969998, 855.9567865699997, 908.1789548139997, 859.7887768499999, 857.8671787269999, 914.30362779, 860.8416365259999, 854.5026893399998, 899.698427857, 902.1334006349997, 854.4362623819999, 856.7429245839998, 901.8581074879997, 862.6306909419999, 867.4701134659998, 904.2962207379998, 860.9083595279996, 879.16412407, 887.258667322, 861.1092163999998, 860.8588344419996, 928.49059724, 865.0705350500001, 871.0030183059997, 928.0707047439997, 865.9921640379997, 859.454426806, 922.8559071820001, 860.7075026559997, 862.295747368, 922.4374408139998, 868.699754638, 870.1545182639999, 920.2853664819999, 868.699754638, 860.306132845, 922.7165378180001, 858.0673360359998, 857.9337833889996, 926.6108957459998, 888.5148814239998, 865.9921640379997, 873.4443984699998, 885.6660246129999, 856.542945673, 880.2819838549996, 889.6302463609999], \"power_mean\": 879.5127824180855, \"energy_millijoules\": 15631.56441444821, \"energy_joules\": 15.63156441444821, \"coremark_score\": 16892.843065, \"coremarks_per_mhz\": 7.786155542496314, \"ulpmark_cm_score\": 19.191937034959267}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [637.1113572720001, 638.437911462, 700.820753256, 641.1241122, 649.117094557, 700.8834336040001, 671.6835819930001, 633.1839712960001, 732.2207552809999, 662.2400022680001, 638.4092876069999, 657.5225823540001, 663.6300838439998, 636.7407527520002, 656.161268832, 659.7054026159999, 645.19042084, 658.99742588, 696.560390502], \"power_mean\": 662.0916099166316, \"energy_millijoules\": 3310.458049583158, \"energy_joules\": 3.3104580495831577}}, \"2208000\": {\"active\": {\"elapsed_sec\": 17.457886764, \"elapsed_ns\": 17457886764, \"power_samples\": [867.917491516, 864.7349979460001, 934.7458489210002, 863.616068273, 869.0361830100002, 941.209859622, 880.5853680399999, 872.390466731, 926.4011276179998, 872.5925805879998, 870.1545182639999, 938.7062772760002, 888.3785983859999, 874.76406637, 943.708639051, 872.3228643259996, 876.55715866, 936.0659917060001, 900.2631435940001, 872.5253248619998, 897.2114010099998, 899.0115593559998, 871.2053007220001, 907.7647656619998, 894.8418428230001, 879.0618735349996, 903.9356363359997, 898.8058868670001, 880.3818381999998, 912.9828914749997, 944.9576690659995, 877.7419088699997, 877.4712426699999, 933.0747275219998, 875.1697010900001, 882.2492371299999, 925.077013904, 878.7909700449999, 882.3852753699997, 956.2033363019999, 880.0427379699998, 889.060363918, 943.5670070409998, 884.1419951639997, 882.3467058169996, 940.7157053349996, 887.8331158919997, 884.0742065199998, 939.3917703249998, 873.6470377099996, 879.8392081299997, 934.8703573539998, 868.3633262659997, 881.5024220739998, 938.3541116019995, 887.8331158919997, 887.8331158919997, 943.0723844829998, 878.6551700949998, 877.2002285699997, 935.4329450499998, 909.1620075699999, 884.9854480869996, 900.7576416859998, 906.3154582439996, 874.69634482, 904.641020634, 900.8265533209996, 873.1740971549999], \"power_mean\": 897.3526993526375, \"energy_millijoules\": 15665.881812668084, \"energy_joules\": 15.665881812668083, \"coremark_score\": 17197.890392, \"coremarks_per_mhz\": 7.788899634057971, \"ulpmark_cm_score\": 19.14989552374942}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [677.020622938, 681.5686213600001, 642.2206014750001, 683.68912444, 680.6699855550002, 636.883281684, 645.79417602, 683.26100698, 634.2594226299999, 637.4535438960002, 678.0741413599999, 676.3843707060001, 636.097772321, 674.035241229, 639.6213431900001, 633.524018144, 703.3208350550001, 638.2664619099999, 645.3059582249999], \"power_mean\": 659.3395015325264, \"energy_millijoules\": 3296.697507662632, \"energy_joules\": 3.296697507662632}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm7150ab/sunfish/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 250 ms\nBaseline power usage: 628 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 768 1017 1248 1324 1497 1612 1708 1804\n\n 300:  1108     3.7 C/MHz     91 mW   24.6 J   12.2 I/mJ   270.7 s\n 576:  2133     3.7 C/MHz    109 mW   15.3 J   19.6 I/mJ   140.7 s\n 768:  2846     3.7 C/MHz    120 mW   12.7 J   23.7 I/mJ   105.4 s\n1017:  3772     3.7 C/MHz    137 mW   10.9 J   27.5 I/mJ    79.5 s\n1248:  4628     3.7 C/MHz    150 mW    9.7 J   30.8 I/mJ    64.8 s\n1324:  4913     3.7 C/MHz    155 mW    9.5 J   31.6 I/mJ    61.1 s\n1497:  5555     3.7 C/MHz    167 mW    9.0 J   33.2 I/mJ    54.0 s\n1612:  5982     3.7 C/MHz    175 mW    8.8 J   34.2 I/mJ    50.2 s\n1708:  6339     3.7 C/MHz    188 mW    8.9 J   33.7 I/mJ    47.3 s\n1804:  6695     3.7 C/MHz    206 mW    9.2 J   32.5 I/mJ    44.8 s\n\n\n===== CPU 6 =====\nFrequencies: 300 652 806 979 1094 1209 1324 1555 1708 1843 1939 2169 2208\n\n 300:  2332     7.8 C/MHz    141 mW   18.2 J   16.5 I/mJ   128.7 s\n 652:  5082     7.8 C/MHz    198 mW   11.7 J   25.7 I/mJ    59.0 s\n 806:  6274     7.8 C/MHz    224 mW   10.7 J   28.0 I/mJ    47.8 s\n 979:  7623     7.8 C/MHz    267 mW   10.5 J   28.6 I/mJ    39.4 s\n1094:  8520     7.8 C/MHz    298 mW   10.5 J   28.5 I/mJ    35.2 s\n1209:  9416     7.8 C/MHz    326 mW   10.4 J   28.9 I/mJ    31.9 s\n1324: 10316     7.8 C/MHz    360 mW   10.5 J   28.7 I/mJ    29.1 s\n1555: 12110     7.8 C/MHz    460 mW   11.4 J   26.3 I/mJ    24.8 s\n1708: 13299     7.8 C/MHz    534 mW   12.1 J   24.9 I/mJ    22.6 s\n1843: 14354     7.8 C/MHz    605 mW   12.6 J   23.7 I/mJ    20.9 s\n1939: 15101     7.8 C/MHz    667 mW   13.3 J   22.6 I/mJ    19.9 s\n2169: 16893     7.8 C/MHz    880 mW   15.6 J   19.2 I/mJ    17.8 s\n2208: 17198     7.8 C/MHz    897 mW   15.7 J   19.1 I/mJ    17.5 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm7150ab/sunfish/uptime.txt",
    "content": " 09:13:29 up 28 min,  load average: 0.88, 0.91, 0.83\n"
  },
  {
    "path": "results/sm7150ab/sunfish/versions.txt",
    "content": "Kernel: Linux version 4.14.228-iremia (prince@builds.statixos.com) (gcc version 12.0.0 20210701 (experimental) (Eva GCC)) #0 SMP PREEMPT Fri Jul 9 19:26:07 EDT 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm7150ac/main/cmdline.txt",
    "content": "rcupdate.rcu_expedited=1 rcu_nocbs=0-7 console=ttyMSM0,115200n8 androidboot.console=ttyMSM0 printk.devkmsg=on msm_rtb.filter=0x237 ehci-hcd.park=3 service_locator.enable=1 androidboot.memcg=1 cgroup.memory=nokmem lpm_levels.sleep_disabled=1 usbcore.autosuspend=7 androidboot.usbcontroller=a600000.dwc3 swiotlb=2048 androidboot.boot_devices=soc/1d84000.ufshc loop.max_part=7 snd_soc_cs35l41_i2c.async_probe=1 i2c_qcom_geni.async_probe=1 st21nfc.async_probe=1 spmi_pmic_arb.async_probe=1 ufs_qcom.async_probe=1 buildvariant=user androidboot.verifiedbootstate=green androidboot.keymaster=1  androidboot.bootdevice=1d84000.ufshc androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED androidboot.product.hardware.sku=surya androidboot.cpuid=REDACTED androidboot.multisim_config=dsds androidboot.dp=0x0 androidboot.baseband=msm msm_drm.dsi_display0=dsi_nt36672c_huaxing_fhd_video_display: androidboot.fpsensor=gdx androidboot.lcmtype=dsi_nt36672c_huaxing_fhd_video_display androidboot.dtbo_idx=2 androidboot.dtb_idx=9 androidboot.secureboot=1 androidboot.hwc=INT androidboot.hwversion=4.90.0 androidboot.hwlevel=MP androidboot.hwname=surya androidboot.AdcVol1=941 androidboot.AdcVol2=1308\n"
  },
  {
    "path": "results/sm7150ac/main/cpufreq_stats/0/time_in_state",
    "content": "300000 85156\n576000 12545\n768000 9623\n1017600 7460\n1248000 6229\n1324800 5902\n1497600 5325\n1612800 4998\n1708800 4772\n1804800 4818\n"
  },
  {
    "path": "results/sm7150ac/main/cpufreq_stats/0/total_trans",
    "content": "13\n"
  },
  {
    "path": "results/sm7150ac/main/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    576000    768000   1017600   1248000   1324800   1497600   1612800   1708800   1804800 \n   300000:         0         1         0         0         0         0         0         0         0         1 \n   576000:         0         0         1         0         0         0         0         0         0         0 \n   768000:         0         0         0         1         0         0         0         0         0         0 \n  1017600:         0         0         0         0         1         0         0         0         0         0 \n  1248000:         0         0         0         0         0         1         0         0         0         0 \n  1324800:         0         0         0         0         0         0         1         0         0         0 \n  1497600:         0         0         0         0         0         0         0         1         0         1 \n  1612800:         0         0         0         0         0         0         0         0         1         0 \n  1708800:         0         0         0         0         0         0         0         0         0         1 \n  1804800:         2         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm7150ac/main/cpufreq_stats/6/time_in_state",
    "content": "300000 11698\n652800 5756\n806400 4824\n979200 4118\n1094400 3765\n1209600 3488\n1324800 3261\n1555200 2883\n1708800 2706\n1843200 2581\n1939200 2480\n2169600 2303\n2208000 2278\n2304000 94688\n"
  },
  {
    "path": "results/sm7150ac/main/cpufreq_stats/6/total_trans",
    "content": "16\n"
  },
  {
    "path": "results/sm7150ac/main/cpufreq_stats/6/trans_table",
    "content": "   From  :    To\n         :    300000    652800    806400    979200   1094400   1209600   1324800   1555200   1708800   1843200   1939200   2169600   2208000   2304000 \n   300000:         0         1         0         0         0         0         0         0         0         0         0         0         0         1 \n   652800:         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n   806400:         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n   979200:         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1094400:         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1209600:         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1324800:         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1555200:         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1708800:         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1843200:         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  1939200:         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2169600:         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2208000:         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2304000:         2         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm7150ac/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 14 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nHardware\t: Qualcomm Technologies, Inc SDMMAGPIE\n"
  },
  {
    "path": "results/sm7150ac/main/device.txt",
    "content": "Model: IDP\nCompatible: qcom,sdmmagpie-idp,qcom,sdmmagpie,qcom,idp,\n"
  },
  {
    "path": "results/sm7150ac/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0\n[    0.000000] Linux version 4.14.207-F1xy-Q-surya/1951224cf6 (yaro@yaro-pc) (GCC-10.2.0) #262 SMP PREEMPT Sat Dec 12 20:55:55 +03 2020\n[    0.000000] Boot CPU: AArch64 Processor [51df805e]\n[    0.000000] Powerup reason=0x40101\n[    0.000000] Machine: Qualcomm Technologies, Inc. SDMMAGPIE PM6150 IDP\n[    0.000000] OF: reserved mem: OVERLAP DETECTED!\n               disp_rdump_region@9c000000 (0x000000009c000000--0x000000009d800000) overlaps with cont_splash_region@9c000000 (0x000000009c000000--0x000000009d800000)\n[    0.000000] OF: reserved mem: OVERLAP DETECTED!\n               cont_splash_region@9c000000 (0x000000009c000000--0x000000009d800000) overlaps with dfps_data_region@9e300000 (0x000000009d700000--0x000000009d800000)\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff800000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000001fa800000, size 36 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fd800000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fcc00000, size 12 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fc400000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fb400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f5800000, size 92 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085700000, size 6 MiB\n[    0.000000] OF: reserved mem: initialized node hyp_region@85700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085e00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node xbl_aop_mem@85e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000085fff000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node sec_apps_region@85fff000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086000000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node smem@86000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086200000, size 45 MiB\n[    0.000000] OF: reserved mem: initialized node removed_region@86200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ab00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node camera_region@8ab00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b000000, size 132 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@8b000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093400000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region@93400000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000093900000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_regions@93900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000095700000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region@95700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097500000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_msa_region@97500000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097680000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node npu_region@97680000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097700000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ips_fw_region@97700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097710000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_gsi_region@97710000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097715000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@97715000, compatible id removed-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x000000009e400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region@9e400000, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000009f800000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_sec_regions@0x9f800000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 1480425\n[    0.000000]   DMA zone: 6956 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 445161 pages, LIFO batch:63\n[    0.000000]   Normal zone: 16176 pages used for memmap\n[    0.000000]   Normal zone: 1035264 pages, LIFO batch:63\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.1\n[    0.000000] random: fast init done\n[    0.000000] random: get_random_bytes called from start_kernel+0xa8/0x550 with crng_init=1\n[    0.000000] percpu: Embedded 18 pages/cpu s42904 r0 d30824 u73728\n[    0.000000] pcpu-alloc: s42904 r0 d30824 u73728 alloc=18*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1457293\n[    0.000000] Kernel command line pt1: rcupdate.rcu_expedited=1 rcu_nocbs=0-7 console=ttyMSM0,115200n8 androidboot.console=ttyMSM0 printk.devkmsg=on msm_rtb.filter=0x237 ehci-hcd.park=3 service_locator.enable=1 androidboot.memcg=1 cgroup.memory=nokmem lpm_levels.sleep_disabled=1 usbcore.autosuspend=7 androidboot.usbcontroller=a600000.dwc3 swiotlb=2048 androidboot.boot_devices=soc/1d84000.ufshc loop.max_part=7 snd_soc_cs35l41_i2c.async_probe=1 i2c_qcom_geni.async_probe=1 st21nfc.async_probe=1 spmi_pmic_arb.async_probe=1 ufs_qcom.async_probe=1 buildvariant=user androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.bootdevice=1d84000.ufshc androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED androidboot.product.hardware.sku=surya androidboot.cpuid=REDACTED androidboot.multisim_config=dsds androidboot.dp=0x0 androidboot.baseband=msm\n[    0.000000] pt2: msm_drm.dsi_display0=dsi_nt36672c_huaxing_fhd_video_display: androidboot.fpsensor=gdx androidboot.lcmtype=dsi_nt36672c_huaxing_fhd_video_display androidboot.dtbo_idx=2 androidboot.dtb_idx=9 androidboot.secureboot=1 androidboot.hwc=INT androidboot.hwversion=4.90.0 androidboot.hwlevel=MP androidboot.hwname=surya androidboot.AdcVol1=941 androidboot.AdcVol2=1308\n[    0.000000] I am goodix fingerprint  --syhg\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] software IO TLB: mapped [mem 0xf5400000-0xf5800000] (4MB)\n[    0.000000] Memory: 5499164K/5921700K available (28606K kernel code, 2032K rwdata, 5564K rodata, 3392K init, 8291K bss, 217736K reserved, 204800K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000012] clocksource: Switched to clocksource arch_sys_counter\n[    0.001850] Console: colour dummy device 80x25\n[    0.001866] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001873] pid_max: default: 32768 minimum: 301\n[    0.001957] Security Framework initialized\n[    0.001963] SELinux:  Initializing.\n[    0.002035] SELinux:  Starting in permissive mode\n[    0.002069] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.002084] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.014150] ASID allocator initialised with 65536 entries\n[    0.016218] Hierarchical SRCU implementation.\n[    0.023223] smp: Bringing up secondary CPUs ...\n[    0.080377] spectrev2 mitigation disabled by kernel configuration\n[    0.080424] CPU features: Unsupported CPU feature variation detected.\n[    0.090750] smp: Brought up 1 node, 8 CPUs\n[    0.090755] SMP: Total of 8 processors activated.\n[    0.090758] CPU features: detected: GIC system register CPU interface\n[    0.090761] CPU features: detected: Privileged Access Never\n[    0.090762] CPU features: detected: LSE atomic instructions\n[    0.090764] CPU features: detected: User Access Override\n[    0.090766] CPU features: detected: 32-bit EL0 Support\n[    0.090768] CPU features: detected: CRC32 instructions\n[    0.091168] CPU: All CPU(s) started at EL1\n[    0.091202] alternatives: patching kernel code\n[    0.115589] scm_enable_mem_protection: SCM call failed\n[    0.116704] devtmpfs: initialized\n[    0.162131] Registered cp15_barrier emulation handler\n[    0.162145] Registered setend emulation handler\n[    0.162312] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.162323] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.165720] pinctrl core: initialized pinctrl subsystem\n[    0.166132] NET: Registered protocol family 16\n[    0.166918] schedtune: configured to support 6 boost groups\n[    0.167426] cpuidle: using governor qcom\n[    0.167495] NET: Registered protocol family 42\n[    0.170550] vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.170557] vdso32: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.170569] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.171218] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.171650] Failed to create IPC log0\n[    0.171653] Failed to create IPC log1\n[    0.171654] Failed to create IPC log2\n[    0.171655] Failed to create IPC log3\n[    0.171656] Failed to create IPC log4\n[    0.171753] exit: IPA_USB init success!\n[    0.171932] ramoops: dump_mem_sz=1048576,cxt->record_size=524288,cxt->size=4194304,cxt->console_size=1048576,cxt->ftrace_size=0,cxt->pmsg_size=2097152\n[    0.172631] pstore: using zlib compression\n[    0.172661] console [pstore-1] enabled\n[    0.172834] pstore: Registered ramoops as persistent store backend\n[    0.172837] ramoops: attached 0x400000@0x9d800000, ecc: 0/0\n[    0.174441] sps:sps is ready.\n[    0.175999] unable to find DT imem DLOAD mode node\n[    0.177106] unable to find DT imem EDLOAD mode node\n[    0.178544] msm_watchdog 17c10000.qcom,wdt: wdog absent resource not present\n[    0.178807] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 304\n[    0.178920] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 305\n[    0.178995] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 306\n[    0.179068] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 307\n[    0.179137] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 308\n[    0.179207] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 309\n[    0.179291] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 310\n[    0.179380] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 311\n[    0.179395] cpu 0 reg dump setup failed\n[    0.179396] cpu 1 reg dump setup failed\n[    0.179398] cpu 2 reg dump setup failed\n[    0.179400] cpu 3 reg dump setup failed\n[    0.179401] cpu 4 reg dump setup failed\n[    0.179403] cpu 5 reg dump setup failed\n[    0.179404] cpu 6 reg dump setup failed\n[    0.179406] cpu 7 reg dump setup failed\n[    0.179427] msm_watchdog 17c10000.qcom,wdt: MSM Watchdog Initialized\n[    0.179873] platform soc:mem_dump: assigned reserved memory node mem_dump_region\n[    0.183528] platform soc:qcom,smem: assigned reserved memory node smem@86000000\n[    0.183810] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.187897] platform 86d00000.qseecom: assigned reserved memory node qseecom_region@9e400000\n[    0.188317] platform 62400000.qcom,lpass: assigned reserved memory node pil_adsp_region@95700000\n[    0.188861] platform 8300000.qcom,turing: assigned reserved memory node cdsp_regions@93900000\n[    0.188884] spmi spmi-0: PMIC arbiter version v5 (0x50000000)\n[    0.188975] platform 4080000.qcom,mss: assigned reserved memory node modem_region@8b000000\n[    0.189041] platform aae0000.qcom,venus: assigned reserved memory node pil_video_region@93400000\n[    0.189101] platform 9800000.qcom,npu: assigned reserved memory node npu_region@97680000\n[    0.189536] (NULL device *): msm_gsi_probe:4540 failed to create IPC log, continue...\n[    0.191611] platform soc:qcom,ipa_fws: assigned reserved memory node ips_fw_region@97700000\n[    0.193198] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.193754] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.200573] sdmmagpie-pinctrl 3400000.pinctrl: invalid resource\n[    0.203772] rpmh_regulator_probe: smpf1: could not find RPMh address for resource\n[    0.203883] rpmh_regulator_probe: smpf2: could not find RPMh address for resource\n[    0.207094] pm6150_l17: supplied by pm6150_l11\n[    0.207258] pm6150_l18: Bringing 1uV into 1696000-1696000uV\n[    0.211190] rpmh_regulator_probe: ldof1: could not find RPMh address for resource\n[    0.211377] rpmh_regulator_probe: ldof2: could not find RPMh address for resource\n[    0.211549] rpmh_regulator_probe: ldof4: could not find RPMh address for resource\n[    0.211716] rpmh_regulator_probe: ldof5: could not find RPMh address for resource\n[    0.211883] rpmh_regulator_probe: ldof6: could not find RPMh address for resource\n[    0.212044] rpmh_regulator_probe: ldof7: could not find RPMh address for resource\n[    0.219144] OF: amba_device_add() failed (-16) for /soc/cti@6867000\n[    0.241552] gpu_cx_gdsc: supplied by pm6150l_s2_level\n[    0.242378] clk: clk_osm_read_lut: index=0 freq=300000000 virtual_corner=0 open_loop_voltage=568\n[    0.242387] clk: clk_osm_read_lut: index=1 freq=556800000 virtual_corner=1 open_loop_voltage=568\n[    0.242395] clk: clk_osm_read_lut: index=2 freq=652800000 virtual_corner=2 open_loop_voltage=580\n[    0.242401] clk: clk_osm_read_lut: index=3 freq=768000000 virtual_corner=3 open_loop_voltage=608\n[    0.242408] clk: clk_osm_read_lut: index=4 freq=844800000 virtual_corner=4 open_loop_voltage=616\n[    0.242415] clk: clk_osm_read_lut: index=5 freq=940800000 virtual_corner=5 open_loop_voltage=644\n[    0.242421] clk: clk_osm_read_lut: index=6 freq=1132800000 virtual_corner=6 open_loop_voltage=668\n[    0.242428] clk: clk_osm_read_lut: index=7 freq=1190400000 virtual_corner=7 open_loop_voltage=680\n[    0.242434] clk: clk_osm_read_lut: index=8 freq=1305600000 virtual_corner=8 open_loop_voltage=712\n[    0.242440] clk: clk_osm_read_lut: index=9 freq=1382400000 virtual_corner=9 open_loop_voltage=736\n[    0.242447] clk: clk_osm_read_lut: index=10 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242453] clk: clk_osm_read_lut: index=11 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242460] clk: clk_osm_read_lut: index=12 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242467] clk: clk_osm_read_lut: index=13 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242473] clk: clk_osm_read_lut: index=14 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242479] clk: clk_osm_read_lut: index=15 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242486] clk: clk_osm_read_lut: index=16 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242492] clk: clk_osm_read_lut: index=17 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242499] clk: clk_osm_read_lut: index=18 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242505] clk: clk_osm_read_lut: index=19 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242511] clk: clk_osm_read_lut: index=20 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242518] clk: clk_osm_read_lut: index=21 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242524] clk: clk_osm_read_lut: index=22 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242530] clk: clk_osm_read_lut: index=23 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242537] clk: clk_osm_read_lut: index=24 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242543] clk: clk_osm_read_lut: index=25 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242550] clk: clk_osm_read_lut: index=26 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242556] clk: clk_osm_read_lut: index=27 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242563] clk: clk_osm_read_lut: index=28 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242569] clk: clk_osm_read_lut: index=29 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242575] clk: clk_osm_read_lut: index=30 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242582] clk: clk_osm_read_lut: index=31 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242588] clk: clk_osm_read_lut: index=32 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242595] clk: clk_osm_read_lut: index=33 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242601] clk: clk_osm_read_lut: index=34 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242607] clk: clk_osm_read_lut: index=35 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242614] clk: clk_osm_read_lut: index=36 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242620] clk: clk_osm_read_lut: index=37 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242627] clk: clk_osm_read_lut: index=38 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242633] clk: clk_osm_read_lut: index=39 freq=1459200000 virtual_corner=10 open_loop_voltage=756\n[    0.242640] clk: clk_osm_read_lut: index=0 freq=300000000 virtual_corner=0 open_loop_voltage=568\n[    0.242647] clk: clk_osm_read_lut: index=1 freq=576000000 virtual_corner=1 open_loop_voltage=568\n[    0.242653] clk: clk_osm_read_lut: index=2 freq=768000000 virtual_corner=2 open_loop_voltage=568\n[    0.242659] clk: clk_osm_read_lut: index=3 freq=1017600000 virtual_corner=3 open_loop_voltage=624\n[    0.242666] clk: clk_osm_read_lut: index=4 freq=1248000000 virtual_corner=4 open_loop_voltage=668\n[    0.242672] clk: clk_osm_read_lut: index=5 freq=1324800000 virtual_corner=5 open_loop_voltage=680\n[    0.242678] clk: clk_osm_read_lut: index=6 freq=1497600000 virtual_corner=6 open_loop_voltage=716\n[    0.242685] clk: clk_osm_read_lut: index=7 freq=1612800000 virtual_corner=7 open_loop_voltage=740\n[    0.242691] clk: clk_osm_read_lut: index=8 freq=1708800000 virtual_corner=8 open_loop_voltage=760\n[    0.242697] clk: clk_osm_read_lut: index=9 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242703] clk: clk_osm_read_lut: index=10 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242710] clk: clk_osm_read_lut: index=11 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242716] clk: clk_osm_read_lut: index=12 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242722] clk: clk_osm_read_lut: index=13 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242729] clk: clk_osm_read_lut: index=14 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242735] clk: clk_osm_read_lut: index=15 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242741] clk: clk_osm_read_lut: index=16 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242747] clk: clk_osm_read_lut: index=17 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242754] clk: clk_osm_read_lut: index=18 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242760] clk: clk_osm_read_lut: index=19 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242766] clk: clk_osm_read_lut: index=20 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242773] clk: clk_osm_read_lut: index=21 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242779] clk: clk_osm_read_lut: index=22 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242785] clk: clk_osm_read_lut: index=23 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242792] clk: clk_osm_read_lut: index=24 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242798] clk: clk_osm_read_lut: index=25 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242804] clk: clk_osm_read_lut: index=26 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242811] clk: clk_osm_read_lut: index=27 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242817] clk: clk_osm_read_lut: index=28 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242823] clk: clk_osm_read_lut: index=29 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242830] clk: clk_osm_read_lut: index=30 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242836] clk: clk_osm_read_lut: index=31 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242842] clk: clk_osm_read_lut: index=32 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242849] clk: clk_osm_read_lut: index=33 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242855] clk: clk_osm_read_lut: index=34 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242861] clk: clk_osm_read_lut: index=35 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242867] clk: clk_osm_read_lut: index=36 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242874] clk: clk_osm_read_lut: index=37 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242880] clk: clk_osm_read_lut: index=38 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242886] clk: clk_osm_read_lut: index=39 freq=1804800000 virtual_corner=9 open_loop_voltage=788\n[    0.242895] clk: clk_osm_read_lut: index=0 freq=300000000 virtual_corner=0 open_loop_voltage=568\n[    0.242901] clk: clk_osm_read_lut: index=1 freq=652800000 virtual_corner=1 open_loop_voltage=568\n[    0.242908] clk: clk_osm_read_lut: index=2 freq=806400000 virtual_corner=2 open_loop_voltage=568\n[    0.242914] clk: clk_osm_read_lut: index=3 freq=979200000 virtual_corner=3 open_loop_voltage=600\n[    0.242921] clk: clk_osm_read_lut: index=4 freq=1094400000 virtual_corner=4 open_loop_voltage=624\n[    0.242927] clk: clk_osm_read_lut: index=5 freq=1209600000 virtual_corner=5 open_loop_voltage=636\n[    0.242933] clk: clk_osm_read_lut: index=6 freq=1324800000 virtual_corner=6 open_loop_voltage=660\n[    0.242939] clk: clk_osm_read_lut: index=7 freq=1555200000 virtual_corner=7 open_loop_voltage=716\n[    0.242945] clk: clk_osm_read_lut: index=8 freq=1708800000 virtual_corner=8 open_loop_voltage=752\n[    0.242952] clk: clk_osm_read_lut: index=9 freq=1843200000 virtual_corner=9 open_loop_voltage=780\n[    0.242958] clk: clk_osm_read_lut: index=10 freq=1939200000 virtual_corner=10 open_loop_voltage=804\n[    0.242965] clk: clk_osm_read_lut: index=11 freq=2169600000 virtual_corner=11 open_loop_voltage=872\n[    0.242971] clk: clk_osm_read_lut: index=12 freq=2208000000 virtual_corner=12 open_loop_voltage=884\n[    0.242978] clk: clk_osm_read_lut: index=13 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.242984] clk: clk_osm_read_lut: index=14 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.242991] clk: clk_osm_read_lut: index=15 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.242997] clk: clk_osm_read_lut: index=16 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243003] clk: clk_osm_read_lut: index=17 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243010] clk: clk_osm_read_lut: index=18 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243016] clk: clk_osm_read_lut: index=19 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243022] clk: clk_osm_read_lut: index=20 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243029] clk: clk_osm_read_lut: index=21 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243035] clk: clk_osm_read_lut: index=22 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243042] clk: clk_osm_read_lut: index=23 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243048] clk: clk_osm_read_lut: index=24 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243054] clk: clk_osm_read_lut: index=25 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243061] clk: clk_osm_read_lut: index=26 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243067] clk: clk_osm_read_lut: index=27 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243074] clk: clk_osm_read_lut: index=28 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243080] clk: clk_osm_read_lut: index=29 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243086] clk: clk_osm_read_lut: index=30 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243093] clk: clk_osm_read_lut: index=31 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243099] clk: clk_osm_read_lut: index=32 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243105] clk: clk_osm_read_lut: index=33 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243112] clk: clk_osm_read_lut: index=34 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243118] clk: clk_osm_read_lut: index=35 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243125] clk: clk_osm_read_lut: index=36 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243131] clk: clk_osm_read_lut: index=37 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243137] clk: clk_osm_read_lut: index=38 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243144] clk: clk_osm_read_lut: index=39 freq=2304000000 virtual_corner=13 open_loop_voltage=912\n[    0.243301] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu0\n[    0.243319] clk: add_opp: Set OPP pair (1804800000 Hz, 788000 uv) on cpu0\n[    0.243335] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu1\n[    0.243348] clk: add_opp: Set OPP pair (1804800000 Hz, 788000 uv) on cpu1\n[    0.243365] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu2\n[    0.243378] clk: add_opp: Set OPP pair (1804800000 Hz, 788000 uv) on cpu2\n[    0.243392] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu3\n[    0.243407] clk: add_opp: Set OPP pair (1804800000 Hz, 788000 uv) on cpu3\n[    0.243421] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu4\n[    0.243433] clk: add_opp: Set OPP pair (1804800000 Hz, 788000 uv) on cpu4\n[    0.243448] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu5\n[    0.243461] clk: add_opp: Set OPP pair (1804800000 Hz, 788000 uv) on cpu5\n[    0.243476] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu6\n[    0.243496] clk: add_opp: Set OPP pair (2304000000 Hz, 912000 uv) on cpu6\n[    0.243512] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on cpu7\n[    0.243529] clk: add_opp: Set OPP pair (2304000000 Hz, 912000 uv) on cpu7\n[    0.243641] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.243646] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on soc:qcom,cpu6-cpu-l3-lat\n[    0.243651] clk: add_opp: Set OPP pair (300000000 Hz, 568000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.243688] clk: add_opp: Set OPP pair (1459200000 Hz, 756000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.243692] clk: add_opp: Set OPP pair (1459200000 Hz, 756000 uv) on soc:qcom,cpu6-cpu-l3-lat\n[    0.243696] clk: add_opp: Set OPP pair (1459200000 Hz, 756000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.244370] sched-energy: Sched-energy-costs installed from DT\n[    0.244436] cpufreq: driver osm-cpufreq up and running\n[    0.244441] clk: clk_cpu_osm_driver_probe: OSM CPUFreq driver inited\n[    0.247482] cam_cc-sdmmagpie ad00000.qcom,camcc: Registered Camera CC clocks\n[    0.247947] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.249075] clk-rpmh soc:qcom,rpmh: Registered RPMh clocks\n[    0.249746] disp_cc-sdmmagpie af00000.qcom,dispcc: Registered Display CC clocks\n[    0.253476] gcc-sdmmagpie 100000.qcom,gcc: Registered GCC clocks\n[    0.254067] gpu_cc_gmu_clk_src: set OPP pair(19200000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.254073] gpu_cc_gmu_clk_src: set OPP pair(200000000 Hz: 49 uV) on 506a000.qcom,gmu\n[    0.254166] gpu_cc_gx_gfx3d_clk_src: set OPP pair(180000000 Hz: 49 uV) on 5000000.qcom,kgsl-3d0\n[    0.254170] gpu_cc_gx_gfx3d_clk_src: set OPP pair(700000000 Hz: 385 uV) on 5000000.qcom,kgsl-3d0\n[    0.254172] gpu_cc_gx_gfx3d_clk_src: set OPP pair(825000000 Hz: 417 uV) on 5000000.qcom,kgsl-3d0\n[    0.254209] gpu_cc-sdmmagpie 5090000.qcom,gpucc: Registered GPU CC clocks\n[    0.254770] video_cc-sdmmagpie ab00000.qcom,videocc: Registered Video CC clocks\n[    0.254982] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 96\n[    0.255016] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 97\n[    0.255038] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 98\n[    0.255060] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 99\n[    0.255080] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 100\n[    0.255101] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 101\n[    0.255129] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 102\n[    0.255157] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 103\n[    0.255179] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 128\n[    0.255199] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 129\n[    0.255219] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 130\n[    0.255239] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 131\n[    0.255259] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 132\n[    0.255279] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 133\n[    0.255307] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 134\n[    0.255335] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 135\n[    0.255351] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 38\n[    0.255365] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 39\n[    0.255379] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 70\n[    0.255392] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 71\n[    0.255479] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 198\n[    0.255570] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 199\n[    0.255595] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 288\n[    0.255613] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 289\n[    0.255630] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 290\n[    0.255647] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 291\n[    0.255664] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 292\n[    0.255680] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 293\n[    0.255699] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 294\n[    0.255718] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 295\n[    0.255825] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 320\n[    0.255933] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 321\n[    0.256094] KPI: Bootloader start count = 55022\n[    0.256095] KPI: Bootloader end count = 258459\n[    0.256096] KPI: Bootloader display count = 215257184\n[    0.256096] KPI: Bootloader load kernel count = 952108176\n[    0.256098] KPI: Kernel MPM timestamp = 272802\n[    0.256099] KPI: Kernel MPM Clock frequency = 32768\n[    0.256105] socinfo_print: v0.15, id=365, ver=1.0, raw_id=230, raw_ver=0, hw_plat=34, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65576, pmic_die_revision=131072 foundry_id=3 serial_number=3574031218 num_pmics=2 chip_family=0x60 raw_device_family=0x6 raw_device_number=0xc nproduct_id=0x40f num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xc ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.256119] Minidump: Enabled with max number of regions 200\n[    0.256142] Failed to setup PIL ipc logging\n[    0.256143] msm_bus_fabric_rpmh_init_driver\n[    0.256211] msm_bus: Probe started\n[    0.256436] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.256458] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.256462] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.256478] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.257047] msm_bus: DT Parsing complete\n[    0.259047] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.259097] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.259108] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.259149] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.262206] uw_ldo_ois_drv_regulator: supplied by pm6150l_bob\n[    0.262626] arm-smmu 5040000.arm,smmu-kgsl: \tnon-coherent table walk\n[    0.262628] arm-smmu 5040000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by FW configuration)\n[    0.262630] arm-smmu 5040000.arm,smmu-kgsl: \tstream matching with 5 register groups\n[    0.263826] register_client_adhoc:find path.src 161 dest 627\n[    0.263886] register_client_adhoc:Client handle 1 apps_smmu\n[    0.263968] arm-smmu 15000000.apps-smmu: \tnon-coherent table walk\n[    0.263970] arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.263971] arm-smmu 15000000.apps-smmu: \tstream matching with 79 register groups\n[    0.264572] register_client_adhoc:find path.src 161 dest 627\n[    0.264612] register_client_adhoc:Client handle 2 apps_smmu\n[    0.264670] register_client_adhoc:find path.src 161 dest 627\n[    0.264708] register_client_adhoc:Client handle 3 apps_smmu\n[    0.264753] register_client_adhoc:find path.src 22 dest 773\n[    0.264772] register_client_adhoc:Client handle 4 mnoc_hf_0_tbu\n[    0.264817] register_client_adhoc:find path.src 22 dest 773\n[    0.264834] register_client_adhoc:Client handle 5 mnoc_hf_1_tbu\n[    0.264878] register_client_adhoc:find path.src 137 dest 772\n[    0.264897] register_client_adhoc:Client handle 6 mnoc_sf_0_tbu\n[    0.264937] register_client_adhoc:find path.src 154 dest 10076\n[    0.264949] register_client_adhoc:Client handle 7 apps_smmu\n[    0.264991] register_client_adhoc:find path.src 161 dest 627\n[    0.265027] register_client_adhoc:Client handle 8 apps_smmu\n[    0.265080] register_client_adhoc:find path.src 161 dest 627\n[    0.265115] register_client_adhoc:Client handle 9 apps_smmu\n[    0.265487] vgaarb: loaded\n[    0.265611] qcom,qpnp-misc c440000.qcom,spmi:qcom,pm6150@0:qcom,misc@900: probe successful\n[    0.265848] SCSI subsystem initialized\n[    0.265866] usbcore: registered new interface driver usbfs\n[    0.265870] usbcore: registered new interface driver hub\n[    0.265906] usbcore: registered new device driver usb\n[    0.266072] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.266275] xiaomi_touch_probe enter\n[    0.266276] xiaomi_touch_parse_dt touch,name:xiaomi-touch\n[    0.266331] xiaomi_touch_probe over\n[    0.266434] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'warm' boot\n[    0.266455] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.266539] input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pm6150@0:qcom,power-on@800/input/input0\n[    0.267284] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150l@4:qcom,power-on@800: PMIC@SID4 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'warm' boot\n[    0.267304] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150l@4:qcom,power-on@800: PMIC@SID4: Power-off reason: Triggered from SOFT (Software)\n[    0.267426] media: Linux media interface: v0.10\n[    0.267432] Linux video capture interface: v2.00\n[    0.267437] pps_core: LinuxPPS API ver. 1 registered\n[    0.267437] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>\n[    0.267439] PTP clock support registered\n[    0.268537] thermal_sys: VIRTUAL-SENSOR board sensor: \n[    0.268538] board sensor: VIRTUAL-SENSOR\n[    0.269414] tsens_tm_probe : unable to create IPC Logging 0 for tsens 0x000000000c263000\n[    0.269416] tsens_tm_probe : unable to create IPC Logging 1 for tsens 0x000000000c263000\n[    0.269417] tsens_tm_probe : unable to create IPC Logging 2 for tsens 0x000000000c263000\n[    0.269950] tsens_tm_probe : unable to create IPC Logging 0 for tsens 0x000000000c265000\n[    0.269951] tsens_tm_probe : unable to create IPC Logging 1 for tsens 0x000000000c265000\n[    0.269951] tsens_tm_probe : unable to create IPC Logging 2 for tsens 0x000000000c265000\n[    0.270373] EDAC MC: Ver: 3.0.0\n[    0.271039] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region@9e400000\n[    0.271079] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.271115] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.271150] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.271275] qupv3_geni_se 8c0000.qcom,qupv3_0_geni_se: geni_se_probe Failed to allocate log context\n[    0.271287] ION heap system created\n[    0.271347] ION heap qsecom created at 0x000000009e400000 with size 1400000\n[    0.271348] ION heap qsecom_ta created at 0x00000000fb400000 with size 1000000\n[    0.271349] ION heap spss created at 0x00000000fc400000 with size 800000\n[    0.271350] ION heap secure_display created at 0x00000000f5800000 with size 5c00000\n[    0.271403] iommu: Adding device 8c0000.qcom,qupv3_0_geni_se:qcom,iommu_qupv3_0_geni_se_cb to group 0\n[    0.271457] qupv3_geni_se ac0000.qcom,qupv3_1_geni_se: geni_se_probe Failed to allocate log context\n[    0.271561] iommu: Adding device ac0000.qcom,qupv3_1_geni_se:qcom,iommu_qupv3_1_geni_se_cb to group 1\n[    0.271917] PMIC@SID0: PM6150 v2.0 options: 0, 0, 0, 0\n[    0.272020] PMIC@SID4: PM8150L v3.0 options: 0, 0, 0, 0\n[    0.272061] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.272062] read failed rc=-5\n[    0.272063] Invalid REVID peripheral type: 00\n[    0.272070] qcom,qpnp-revid: probe of c440000.qcom,spmi:qcom,pm8009@a:qcom,revid@100 failed with error -22\n[    0.272696] register_client_adhoc:find path.src 90 dest 512\n[    0.272839] register_client_adhoc:find path.src 90 dest 585\n[    0.272875] register_client_adhoc:find path.src 1 dest 676\n[    0.272937] register_client_adhoc:find path.src 143 dest 777\n[    0.272954] register_client_adhoc:Client handle 10 ipa\n[    0.280663] ipa ipa3_smp2p_probe:7991 fail to get smp2p clk resp bit -517\n[    0.289331] iommu: Adding device soc:ipa_smmu_ap to group 2\n[    0.289565] iommu: Adding device soc:ipa_smmu_wlan to group 3\n[    0.289710] iommu: Adding device soc:ipa_smmu_uc to group 4\n[    0.291003] ipa ipa3_smp2p_probe:7991 fail to get smp2p clk resp bit -517\n[    0.292950] Advanced Linux Sound Architecture Driver Initialized.\n[    0.293728] Bluetooth: Core ver 2.22\n[    0.293762] NET: Registered protocol family 31\n[    0.293764] Bluetooth: HCI device and connection manager initialized\n[    0.293777] Bluetooth: HCI socket layer initialized\n[    0.293783] Bluetooth: L2CAP socket layer initialized\n[    0.293789] Bluetooth: SCO socket layer initialized\n[    0.294624] NetLabel: Initializing\n[    0.294630] NetLabel:  domain hash size = 128\n[    0.294631] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\n[    0.294724] NetLabel:  unlabeled traffic allowed by default\n[    0.295104] pcie:pcie_init.\n[    0.295142] pcie_init: unable to create IPC log context for pcie0-short\n[    0.295143] pcie_init: unable to create IPC log context for pcie0-long\n[    0.295144] pcie_init: unable to create IPC log context for pcie0-dump\n[    0.295145] pcie_init: unable to create IPC log context for pcie1-short\n[    0.295147] pcie_init: unable to create IPC log context for pcie1-long\n[    0.295147] pcie_init: unable to create IPC log context for pcie1-dump\n[    0.295150] pcie_init: unable to create IPC log context for pcie2-short\n[    0.295152] pcie_init: unable to create IPC log context for pcie2-long\n[    0.295153] pcie_init: unable to create IPC log context for pcie2-dump\n[    0.304154] register_client_adhoc:find path.src 22 dest 512\n[    0.306423] register_client_adhoc:Client handle 11 bus-proxy-client\n[    0.307664] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=5700mV ncp_voltage=5700mV bst_voltage=5850mV\n[    0.307719] sched-energy sched-energy.0: cpu=0 [freq=300000 cap=79 power_d0=10] -> [freq=1804800 cap=471 power_d0=119]\n[    0.307722] sched-energy sched-energy.0: cpu=1 [freq=300000 cap=79 power_d0=10] -> [freq=1804800 cap=471 power_d0=119]\n[    0.307724] sched-energy sched-energy.0: cpu=2 [freq=300000 cap=79 power_d0=10] -> [freq=1804800 cap=471 power_d0=119]\n[    0.307725] sched-energy sched-energy.0: cpu=3 [freq=300000 cap=79 power_d0=10] -> [freq=1804800 cap=471 power_d0=119]\n[    0.307727] sched-energy sched-energy.0: cpu=4 [freq=300000 cap=79 power_d0=10] -> [freq=1804800 cap=471 power_d0=119]\n[    0.307729] sched-energy sched-energy.0: cpu=5 [freq=300000 cap=79 power_d0=10] -> [freq=1804800 cap=471 power_d0=119]\n[    0.307731] sched-energy sched-energy.0: cpu=6 [freq=300000 cap=134 power_d0=166] -> [freq=2400000 cap=1024 power_d0=2568]\n[    0.307733] sched-energy sched-energy.0: cpu=7 [freq=300000 cap=134 power_d0=166] -> [freq=2400000 cap=1024 power_d0=2568]\n[    0.307734] sched-energy sched-energy.0: Sched-energy-costs capacity updated\n[    0.308112] gpu_gx_gdsc: supplied by pm6150_s2_level\n[    0.308933] npu_cc-sdmmagpie 9910000.qcom,npucc: Registered NPU CC clocks\n[    0.309038] ipa ipa3_smp2p_probe:7991 fail to get smp2p clk resp bit -517\n[    0.309147] clocksource: Switched to clocksource arch_sys_counter\n[    0.309197] VFS: Disk quotas dquot_6.6.0\n[    0.309216] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.309420] debugcc-sdmmagpie soc:qcom,cc-debug: Registered debug mux successfully\n[    0.309982] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.310406] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=0, clocks successfully\n[    0.310495] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.313040] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x9f800000, size 0x1e00000\n[    0.313044] ION heap secure_carveout created\n[    0.313047] ION heap secure_heap created\n[    0.315618] dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.320869] dsi_pll_10nm_lock_status: DSI PLL(1) lock failed, status=0x00000000\n[    0.321000] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=1, clocks successfully\n[    0.321013] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.323504] NET: Registered protocol family 2\n[    0.323652] TCP established hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.323714] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)\n[    0.323973] TCP: Hash tables configured (established 65536 bind 65536)\n[    0.324032] UDP hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.324047] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.324117] NET: Registered protocol family 1\n[    0.324128] PCI: CLS 0 bytes, default 128\n[    0.324280] ipa ipa3_smp2p_probe:7991 fail to get smp2p clk resp bit -517\n[    0.324363] Trying to unpack rootfs image as initramfs...\n[    0.668917] Freeing initrd memory: 22064K\n[    0.669536] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.671778] workingset: timestamp_bits=61 max_order=21 bucket_order=0\n[    0.672544] exFAT: Version 1.2.9\n[    0.672682] Registering sdcardfs 0.1\n[    0.672740] fuse init (API version 7.26)\n[    0.672872] SELinux:  Registering netfilter hooks\n[    0.673202] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    0.673204] pfk_f2fs [pfk_f2fs_init]: PFK F2FS inited successfully\n[    0.673205] pfk [pfk_init]: Driver initialized successfully\n[    0.674887] io scheduler noop registered\n[    0.674933] io scheduler cfq registered (default)\n[    0.678702] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.678705] qcom-spmi-gpio c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000: read 0x4 failed\n[    0.678707] qcom-spmi-gpio c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000: failed to populate gpio 0, ret=-5\n[    0.678716] qcom-spmi-gpio: probe of c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000 failed with error -5\n[    0.681483] iommu: Adding device 800000.qcom,gpi-dma to group 5\n[    0.682031] iommu: Adding device a00000.qcom,gpi-dma to group 6\n[    0.684166] icnss: Unable to create log context\n[    0.684168] icnss: Unable to create log long context\n[    0.684343] iommu: Adding device 18800000.qcom,icnss to group 7\n[    0.684365] icnss: Recursive recovery allowed for WLAN\n[    0.684501] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.684594] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.684656] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.684724] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.684766] icnss: Unable to create debugfs -19\n[    0.684779] icnss: Platform driver probed successfully\n[    0.685061] register_client_adhoc:find path.src 125 dest 512\n[    0.685179] register_client_adhoc:Client handle 12 scm_pas\n[    0.685183] minidump-id not found for adsp\n[    0.685450] minidump-id not found for cdsp\n[    0.685890] register_client_adhoc:find path.src 63 dest 512\n[    0.685956] register_client_adhoc:Client handle 13 pil-venus\n[    0.685959] minidump-id not found for venus\n[    0.685964] subsys-pil-tz aae0000.qcom,venus: for venus segments only will be dumped.\n[    0.685997] subsys-pil-tz aae0000.qcom,venus: for md_venus segments only will be dumped.\n[    0.686078] minidump-id not found for npu\n[    0.686080] subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    0.686109] subsys-pil-tz 9800000.qcom,npu: for md_npu segments only will be dumped.\n[    0.686218] minidump-id not found for ipa_fws\n[    0.686220] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    0.686262] subsys-pil-tz soc:qcom,ipa_fws: for md_ipa_fws segments only will be dumped.\n[    0.686478] minidump-id not found for a615_zap\n[    0.686480] subsys-pil-tz soc:qcom,kgsl-hyp: for a615_zap segments only will be dumped.\n[    0.686510] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a615_zap segments only will be dumped.\n[    0.687855] smp2p_sleepstate soc:qcom,smp2p_sleepstate: got smp2p-sleepstate-in irq 404\n[    0.688968] msm_geni_serial 88c000.qcom,qup_uart: Wakeup byte 0xfd\n[    0.688999] msm_geni_serial 88c000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    0.689003] msm_geni_serial 88c000.qcom,qup_uart: Failed to create dbg dir\n[    0.689005] msm_geni_serial 88c000.qcom,qup_uart: Err in Rx IPC Log\n[    0.689006] msm_geni_serial 88c000.qcom,qup_uart: Err in Tx IPC Log\n[    0.689007] msm_geni_serial 88c000.qcom,qup_uart: Err in Pwr IPC Log\n[    0.689008] msm_geni_serial 88c000.qcom,qup_uart: Err in Misc IPC Log\n[    0.689254] 88c000.qcom,qup_uart: ttyHS0 at MMIO 0x88c000 (irq = 121, base_baud = 0) is a MSM\n[    0.689454] msm_geni_serial_init: Driver initialized\n[    0.689593] register_client_adhoc:find path.src 1 dest 618\n[    0.689676] register_client_adhoc:Client handle 14 msm-rng-noc\n[    0.691344] random: crng init done\n[    0.692837] diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    0.692838] diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    0.705784] register_client_adhoc:find path.src 20003 dest 20515\n[    0.705837] register_client_adhoc:find path.src 20004 dest 20515\n[    0.705856] register_client_adhoc:Client handle 15 disp_rsc_mnoc\n[    0.705863] register_client_adhoc:find path.src 20001 dest 20513\n[    0.705882] register_client_adhoc:Client handle 16 disp_rsc_llcc\n[    0.705892] register_client_adhoc:find path.src 20000 dest 20512\n[    0.705911] register_client_adhoc:Client handle 17 disp_rsc_ebi\n[    0.706016] [sde_rsc_hw:rsc_hw_init:714]: sde rsc init successfully done\n[    0.706050] [sde_rsc:sde_rsc_probe:1883]: sde rsc index:0 probed successfully\n[    0.706384] dsi_phy ae94400.qcom,mdss_dsi_phy0: ae94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    0.706397] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-0\n[    0.706421] dsi_phy ae96400.qcom,mdss_dsi_phy1: ae96400.qcom,mdss_dsi_phy1 supply gdsc not found, using dummy regulator\n[    0.706426] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-1\n[    0.706737] AXI: get_pdata(): Error: Client name not found\n[    0.706739] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.706740] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-0\n[    0.706783] AXI: get_pdata(): Error: Client name not found\n[    0.706784] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.706785] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-1\n[    0.707092] OF: graph: no port node found in /soc/qcom,dsi-display\n[    0.707121] msm-dsi-panel:[msm_panel_info_create_sysfs:3450] msm_panel_info_create_sysfs failed\n[    0.707125] msm-dsi-panel:[dsi_panel_get:3528] [LCD]dsi_panel_get:3528 Dispparam enabled.\n[    0.707126] msm-dsi-panel:[dsi_panel_get:3539] 0x3 0x3 enabled:1\n[    0.707132] msm-dsi-panel:[dsi_panel_parse_triggers:1157] [nt36672c huaxing fhd video mode dsi panel] fallback to default te-pin-select\n[    0.707140] msm-dsi-panel:[dsi_panel_parse_panel_mode:1671] dsi_panel_parse_panel_mode: panel operating mode switch feature disabled\n[    0.707162] msm-dsi-panel:[dsi_panel_parse_reset_sequence:2141] RESET SEQ LENGTH = 24\n[    0.707176] msm-dsi-panel:[dsi_panel_parse_misc_features:2190] dsi_panel_parse_misc_features: ulps feature disabled\n[    0.707178] msm-dsi-panel:[dsi_panel_parse_misc_features:2196] dsi_panel_parse_misc_features: ulps during suspend feature disabled\n[    0.707187] msm-dsi-panel:[dsi_panel_parse_esd_config:3328] esd irq gpio is valid\n[    0.707195] msm-dsi-panel:[dsi_panel_parse_esd_config:3335] dsi_panel_parse_esd_config: Succeed to get esd irq GPIO4 (rc = 0)\n[    0.708082] iommu: Adding device ae00000.qcom,mdss_mdp to group 8\n[    0.709920] brd: module loaded\n[    0.710639] iommu: Adding device 506a000.qcom,gmu:gmu_user to group 9\n[    0.711323] loop: module loaded\n[    0.711396] zram: Added device: zram0\n[    0.711397] aw8624 driver version v1.0.9\n[    0.711548] iommu: Adding device 506a000.qcom,gmu:gmu_kernel to group 10\n[    0.712129] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1400000\n[    0.712134] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.712137] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    0.712138] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    0.712177] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    0.713037] register_client_adhoc:find path.src 26 dest 512\n[    0.713258] register_client_adhoc:Client handle 18 grp3d\n[    0.713275] register_client_adhoc:find path.src 26 dest 10036\n[    0.713401] register_client_adhoc:Client handle 19 cnoc\n[    0.713406] query_client_usecase_all: query_start\n[    0.713458] query_client_usecase_all: query_start\n[    0.713750] qcedev debugfs_create_dir fail, error -19\n[    0.714079] iommu: Adding device 1de0000.qcedev to group 11\n[    0.714270] register_client_adhoc:find path.src 125 dest 512\n[    0.714382] register_client_adhoc:Client handle 20 qcedev-noc\n[    0.714511] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    0.714949] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_user to group 12\n[    0.714996] qce 1de0000.qcedev: QTI Crypto 5.4.1 device found @0x1de0000\n[    0.715004] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000001dc4000\n[    0.715005] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000001dc4000\n[    0.715006] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000001dc4000\n[    0.715007] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000001dc4000\n[    0.715007] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000001dc4000\n[    0.715008] sps:BAM 0x0000000001dc4000 is registered.\n[    0.715064] sps:BAM 0x0000000001dc4000 (va:0xffffff8019140000) enabled: ver:0x27, number of pipes:16\n[    0.715134] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 51\n[    0.715225] iommu: Adding device 5040000.qcom,kgsl-iommu:gfx3d_secure to group 13\n[    0.717192] kgsl_pool_config: Pool order:1 not supprted.!!\n[    0.717195] kgsl_pool_config: Pool order:4 not supprted.!!\n[    0.717197] kgsl_pool_config: Pool order:8 not supprted.!!\n[    0.718308] iommu: Adding device 1de0000.qcrypto to group 14\n[    0.718359] register_client_adhoc:find path.src 125 dest 512\n[    0.718486] register_client_adhoc:Client handle 21 qcrypto-noc\n[    0.718602] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    0.719067] qcrypto 1de0000.qcrypto: QTI Crypto 5.4.1 device found @0x1de0000\n[    0.719182] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 51\n[    0.722465] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    0.722534] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    0.722583] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    0.722626] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    0.722667] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    0.722705] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    0.722742] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    0.722780] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    0.722843] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    0.722896] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    0.722948] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    0.723004] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    0.723059] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    0.723118] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    0.723174] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    0.723225] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    0.723262] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    0.723311] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    0.723350] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    0.723388] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    0.723898] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed\n[    0.724513] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    0.725826] qcom_ice_get_pdevice: found ice device ffffffe6ec52cc00\n[    0.725827] qcom_ice_get_pdevice: matching platform device ffffffe6f21a7400\n[    0.726928] register_client_adhoc:find path.src 123 dest 512\n[    0.727052] register_client_adhoc:find path.src 1 dest 757\n[    0.727110] register_client_adhoc:Client handle 22 ufshc_mem\n[    0.728548] scsi host0: ufshcd\n[    0.732912] qcom_ice 1d90000.ufsice: QC ICE 3.1.75 device found @0xffffff8019640000\n[    0.751401] SCSI Media Changer driver v0.25 \n[    0.752591] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    0.754013] libphy: Fixed MDIO Bus: probed\n[    0.754044] tun: Universal TUN/TAP device driver, 1.6\n[    0.754091] PPP generic driver version 2.4.2\n[    0.754124] PPP BSD Compression module registered\n[    0.754125] PPP Deflate Compression module registered\n[    0.754139] PPP MPPE Compression module registered\n[    0.754140] NET: Registered protocol family 24\n[    0.754145] PPTP driver version 0.8.5\n[    0.754302] wcnss_pre_alloc_init: Failed to create debugfs dir\n[    0.754303] cnss_utils: Unable to create debugfs -19\n[    0.754304] CLD80211: Initializing\n[    0.754333] usbcore: registered new interface driver r8152\n[    0.754337] usbcore: registered new interface driver asix\n[    0.754340] usbcore: registered new interface driver ax88179_178a\n[    0.754344] usbcore: registered new interface driver cdc_ether\n[    0.754347] usbcore: registered new interface driver net1080\n[    0.754351] usbcore: registered new interface driver cdc_subset\n[    0.754356] usbcore: registered new interface driver zaurus\n[    0.754360] usbcore: registered new interface driver cdc_ncm\n[    0.756930] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    0.757621] msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    0.758040] msm-qusb-phy-v2 88e2000.qusb: can't create debugfs root for 88e2000.qusb\n[    0.758619] iommu: Adding device a600000.ssusb to group 15\n[    0.759554] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    0.760167] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    0.760168] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    0.760357] msm-dwc3 a600000.ssusb: unable to get ssphy device\n[    0.761498] usbcore: registered new interface driver uas\n[    0.761505] usbcore: registered new interface driver usb-storage\n[    0.761511] usbcore: registered new interface driver usb_ehset_test\n[    0.761515] usbcore: registered new interface driver lvs\n[    0.761628] fgsi_init: Err allocating ipc_log_ctxt\n[    0.762130] qpnp-pdphy c440000.qcom,spmi:qcom,pm6150@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    0.762406] [LCT_TP_INFO] tp_info_init (line 255): init\n[    0.762412] [LCT_TP_SELFTEST] tp_selftest_init (line 218): create /proc/tp_selftest success\n[    0.762413] [LCT_TP_GESTURE] tp_gesture_init (line 219): init\n[    0.762682] Macle fpc1020_probeing failed as fpsensor=2(1=fp)\n[    0.762686] fpc1020: probe of soc:fpc1020 failed with error -12\n[    0.762708] fpc1020_init OK\n[    0.762854] gf_spi: Macle11 gf probe\n[    0.762919] input: uinput-goodix as /devices/virtual/input/input1\n[    0.762953] gf_spi: gf3258 Create proc entry success!\n[    0.762954] gf_spi: version V1.2.10\n[    0.763003] gf_spi: status = 0x0\n[    0.763261] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm6150@0:qcom,pm6150_rtc: rtc core: registered qpnp_rtc as rtc0\n[    0.763452] i2c /dev entries driver\n[    0.763886] i2c_geni 884000.i2c: Bus frequency not specified, default to 400KHz.\n[    0.764043] iommu: Adding device 9800000.qcom,msm_npu to group 16\n[    0.764587] msm_npu 9800000.qcom,msm_npu: Unable to startup the chan (-11)\n[    0.764589] msm_npu: aop mailbox is not available\n[    0.764594] aw8624_haptic 3-005a: aw8624_parse_dt: reset gpio provided ok\n[    0.764598] aw8624_haptic 3-005a: aw8624_parse_dt: irq gpio provided ok.\n[    0.764695] msm_npu: debugfs_create_dir for npu failed, error -19\n[    0.764697] msm_npu 9800000.qcom,msm_npu: Not attached\n[    0.765024] msm_vidc_v4l2: probe of aa00000.qcom,vidc0 failed with error -22\n[    0.765810] iommu: Adding device aa00000.qcom,vidc1:non_secure_cb to group 17\n[    0.766098] iommu: Adding device aa00000.qcom,vidc1:secure_non_pixel_cb to group 18\n[    0.766956] iommu: Adding device aa00000.qcom,vidc1:secure_bitstream_cb to group 19\n[    0.767615] iommu: Adding device aa00000.qcom,vidc1:secure_pixel_cb to group 20\n[    0.768188] platform aa00000.qcom,vidc1:qcom,msm-vidc,mem_cdsp: assigned reserved memory node cdsp_region\n[    0.769592] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    0.769622] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 21\n[    0.769706] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 22\n[    0.769737] platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node camera_region@8ab00000\n[    0.769830] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 23\n[    0.769908] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 24\n[    0.770030] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_fd to group 25\n[    0.770099] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 26\n[    0.770755] register_client_adhoc:find path.src 1 dest 589\n[    0.770850] register_client_adhoc:Client handle 23 cam_ahb\n[    0.770940] register_client_adhoc:find path.src 136 dest 512\n[    0.770994] register_client_adhoc:Client handle 24 cam_hf_0_mnoc\n[    0.771075] register_client_adhoc:find path.src 146 dest 778\n[    0.771087] register_client_adhoc:Client handle 25 cam_hf_0_camnoc\n[    0.771143] register_client_adhoc:find path.src 172 dest 512\n[    0.771193] register_client_adhoc:Client handle 26 cam_hf_1_mnoc\n[    0.771272] register_client_adhoc:find path.src 178 dest 778\n[    0.771284] register_client_adhoc:Client handle 27 cam_hf_1_camnoc\n[    0.771339] register_client_adhoc:find path.src 137 dest 512\n[    0.771395] register_client_adhoc:Client handle 28 cam_sf_0_mnoc\n[    0.771465] register_client_adhoc:find path.src 148 dest 778\n[    0.771477] register_client_adhoc:Client handle 29 cam_sf_0_camnoc\n[    0.771532] register_client_adhoc:find path.src 171 dest 512\n[    0.771585] register_client_adhoc:Client handle 30 cam_sf_1_mnoc\n[    0.771654] register_client_adhoc:find path.src 179 dest 778\n[    0.771667] register_client_adhoc:Client handle 31 cam_sf_1_camnoc\n[    0.780563] CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 524 No clk named ife_dsp_clk found. Dev vfe2\n[    0.799232] uvcvideo: Unable to create debugfs directory\n[    0.799246] usbcore: registered new interface driver uvcvideo\n[    0.799246] USB Video Class driver (1.1.1)\n[    0.799247] gspca_main: v2.14.0 registered\n[    0.799885] Couldn't parse device tree rc=-517\n[    0.800163] i2c_geni 884000.i2c: i2c error :-107\n[    0.800171] aw8624_i2c_read: i2c_read cnt=0 error=-107\n[    0.808739] device-mapper: uevent: version 1.0.3\n[    0.808836] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com\n[    0.809017] bt_dt_parse_vreg_info: qca,bt-vdd-vl: is not provided in device tree\n[    0.809019] bt_dt_parse_vreg_info: qca,bt-vdd-vm: is not provided in device tree\n[    0.809020] bt_dt_parse_vreg_info: qca,bt-vdd-5c: is not provided in device tree\n[    0.809020] bt_dt_parse_vreg_info: qca,bt-vdd-5a: is not provided in device tree\n[    0.809022] bt_dt_parse_vreg_info: qca,bt-vdd-vh: is not provided in device tree\n[    0.809029] bt_dt_parse_vreg_info: qca,bt-vdd-ldo: is not provided in device tree\n[    0.809031] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    0.809033] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in device tree\n[    0.809034] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    0.809034] bt_power_populate_dt_pinfo: clock not provided in device tree\n[    0.809486] EDAC DEVICE0: Giving out device to module soc:kryo-erp controller cache: DEV soc:kryo-erp (INTERRUPT)\n[    0.810209] sdhci: Secure Digital Host Controller Interface driver\n[    0.810210] sdhci: Copyright(c) Pierre Ossman\n[    0.810211] sdhci-pltfm: SDHCI platform and OF driver helper\n[    0.810582] qcom_ice_get_pdevice: found ice device ffffffe6ec52d800\n[    0.810583] qcom_ice_get_pdevice: matching platform device ffffffe6f21a0800\n[    0.810893] sdhci_msm 8804000.sdhci: sdhci_msm_probe: ICE device is not enabled\n[    0.811081] register_client_adhoc:find path.src 81 dest 512\n[    0.811211] register_client_adhoc:find path.src 1 dest 608\n[    0.811270] register_client_adhoc:Client handle 32 sdhc2\n[    0.811357] qcom,tri-led c440000.qcom,spmi:qcom,pm6150l@5:qcom,leds@d000: enter qpnp_tri_led_hw_init\n[    0.811381] qcom,tri-led c440000.qcom,spmi:qcom,pm6150l@5:qcom,leds@d000: enter qpnp_tri_led_register\n[    0.811482] qcom,tri-led c440000.qcom,spmi:qcom,pm6150l@5:qcom,leds@d000: enter qpnp_tri_white_led_register\n[    0.811895] usbcore: registered new interface driver usbhid\n[    0.811896] usbhid: USB HID core driver\n[    0.812001] ashmem: initialized\n[    0.812016] wlan: Loading driver v5.2.03.30K ()\n[    0.812021] qdf_print_ctrl_register: Allocated print control object 0\n[    0.812254] ipa ipa3_uc_reg_rdyCB:2920 bad parm. inout=0000000000000000 \n[    0.812295] wlan_hdd_state wlan major(498) initialized\n[    0.812302] wlan: driver loaded\n[    0.812302] hdd_module_init_work: init passed\n[    0.812541] bimc-bwmon 90b6300.qcom,cpu-cpu-llcc-bwmon: BW HWmon governor registered.\n[    0.812567] bimc-bwmon 90cd000.qcom,cpu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    0.812600] bimc-bwmon 9960300.qcom,npu-npu-ddr-bwmon: BW HWmon governor registered.\n[    0.812994] arm-memlat-mon soc:qcom,cpu0-cpu-l3-latmon: Memory Latency governor registered.\n[    0.813008] arm-memlat-mon soc:qcom,cpu6-cpu-l3-latmon: Memory Latency governor registered.\n[    0.813020] arm-memlat-mon soc:qcom,cpu0-cpu-llcc-latmon: Memory Latency governor registered.\n[    0.813029] arm-memlat-mon soc:qcom,cpu6-cpu-llcc-latmon: Memory Latency governor registered.\n[    0.813038] arm-memlat-mon soc:qcom,cpu0-llcc-ddr-latmon: Memory Latency governor registered.\n[    0.813048] arm-memlat-mon soc:qcom,cpu6-llcc-ddr-latmon: Memory Latency governor registered.\n[    0.813061] arm-memlat-mon soc:qcom,cpu0-computemon: Compute governor registered.\n[    0.813072] arm-memlat-mon soc:qcom,cpu6-computemon: Compute governor registered.\n[    0.813653] register_client_adhoc:find path.src 1 dest 770\n[    0.813710] register_client_adhoc:Client handle 33 soc:qcom,cpu-cpu-llcc-bw\n[    0.814000] register_client_adhoc:find path.src 129 dest 512\n[    0.814027] register_client_adhoc:Client handle 34 soc:qcom,cpu-llcc-ddr-bw\n[    0.814481] register_client_adhoc:find path.src 1 dest 770\n[    0.814500] register_client_adhoc:Client handle 35 soc:qcom,cpu0-cpu-llcc-lat\n[    0.814590] register_client_adhoc:find path.src 1 dest 770\n[    0.814606] register_client_adhoc:Client handle 36 soc:qcom,cpu6-cpu-llcc-lat\n[    0.814690] register_client_adhoc:find path.src 129 dest 512\n[    0.814707] register_client_adhoc:Client handle 37 soc:qcom,cpu0-llcc-ddr-lat\n[    0.814800] register_client_adhoc:find path.src 129 dest 512\n[    0.814817] register_client_adhoc:Client handle 38 soc:qcom,cpu6-llcc-ddr-lat\n[    0.814903] register_client_adhoc:find path.src 129 dest 512\n[    0.814922] register_client_adhoc:Client handle 39 soc:qcom,cpu0-cpu-ddr-latfloor\n[    0.815008] register_client_adhoc:find path.src 129 dest 512\n[    0.815024] register_client_adhoc:Client handle 40 soc:qcom,cpu6-cpu-ddr-latfloor\n[    0.815117] register_client_adhoc:find path.src 154 dest 512\n[    0.815166] register_client_adhoc:Client handle 41 soc:qcom,npu-npu-ddr-bw\n[    0.815268] register_client_adhoc:find path.src 1 dest 627\n[    0.815327] register_client_adhoc:Client handle 42 soc:qcom,snoc_cnoc_keepalive\n[    0.815526] register_client_adhoc:find path.src 26 dest 512\n[    0.815564] register_client_adhoc:Client handle 43 soc:qcom,gpubw\n[    0.817278] qcom-llcc-pmu 90cc000.llcc-pmu: Registered llcc_pmu, type: 8\n[    0.817689] usbcore: registered new interface driver snd-usb-audio\n[    0.817818] iommu: Adding device soc:usb_audio_qmi_dev to group 27\n[    0.820218] aw8624_read_chipid  reg 24 \n[    0.820222] aw8624_read_chipid aw8624 detected\n[    0.822726] apr_probe: Unable to create ipc log context\n[    0.822755] mmc0: SDHCI controller on 8804000.sdhci [8804000.sdhci] using 64-bit ADMA in legacy mode\n[    0.823978] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    0.823985] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    0.824141] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    0.824145] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    0.824149] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    0.825012] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[1, 1], pwr[FAST MODE, FAST MODE], rate = 2\n[    0.825366] scsi 0:0:0:49488: Well-known LUN    SKhynix  H9HQ53AECMMDAR   0005 PQ: 0 ANSI: 6\n[    0.825586] msm-dai-q6-hdmi soc:qcom,msm-dai-q6-hdmi_ms: invalid device ID 24578\n[    0.825792] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: msm_auxpcm_dev_probe: invalid DT intf name senary\n[    0.825998] scsi 0:0:0:49456: Well-known LUN    SKhynix  H9HQ53AECMMDAR   0005 PQ: 0 ANSI: 6\n[    0.826535] scsi 0:0:0:49476: Well-known LUN    SKhynix  H9HQ53AECMMDAR   0005 PQ: 0 ANSI: 6\n[    0.827070] scsi 0:0:0:0: Direct-Access     SKhynix  H9HQ53AECMMDAR   0005 PQ: 0 ANSI: 6\n[    0.827492] scsi 0:0:0:1: Direct-Access     SKhynix  H9HQ53AECMMDAR   0005 PQ: 0 ANSI: 6\n[    0.827831] scsi 0:0:0:2: Direct-Access     SKhynix  H9HQ53AECMMDAR   0005 PQ: 0 ANSI: 6\n[    0.828190] scsi 0:0:0:3: Direct-Access     SKhynix  H9HQ53AECMMDAR   0005 PQ: 0 ANSI: 6\n[    0.828534] scsi 0:0:0:4: Direct-Access     SKhynix  H9HQ53AECMMDAR   0005 PQ: 0 ANSI: 6\n[    0.828875] scsi 0:0:0:5: Direct-Access     SKhynix  H9HQ53AECMMDAR   0005 PQ: 0 ANSI: 6\n[    0.830111] sd 0:0:0:1: [sdb] Write Protect is off\n[    0.830116] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    0.830338] sd 0:0:0:0: [sda] Write Protect is off\n[    0.830340] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    0.830348] sd 0:0:0:1: [sdb] Optimal transfer size 524288 bytes\n[    0.830461] sd 0:0:0:3: [sdd] Write Protect is off\n[    0.830464] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    0.830528] sd 0:0:0:4: [sde] Write Protect is off\n[    0.830530] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    0.830601] sd 0:0:0:5: [sdf] Write Protect is off\n[    0.830605] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    0.830622] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: group id not supported 0x9150\n[    0.830627] msm-dai-tdm: probe of soc:qcom,msm-dai-tdm-sen-rx failed with error -22\n[    0.830634] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: group id not supported 0x9151\n[    0.830635] msm-dai-tdm: probe of soc:qcom,msm-dai-tdm-sen-tx failed with error -22\n[    0.830644] sd 0:0:0:0: [sda] Optimal transfer size 524288 bytes\n[    0.830735] sd 0:0:0:3: [sdd] Optimal transfer size 524288 bytes\n[    0.830795] sd 0:0:0:4: [sde] Optimal transfer size 524288 bytes\n[    0.830829] sd 0:0:0:5: [sdf] Optimal transfer size 524288 bytes\n[    0.831070] sd 0:0:0:2: [sdc] Write Protect is off\n[    0.831142] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    0.831486] sd 0:0:0:2: [sdc] Optimal transfer size 524288 bytes\n[    0.832567]  sdb: sdb1 sdb2\n[    0.832618]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16\n[    0.832713]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5\n[    0.832764]  sdd: sdd1 sdd2 sdd3\n[    0.832937]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47\n[    0.834258]  sdc: sdc1 sdc2\n[    0.836212] GACT probability NOT on\n[    0.836219] Mirror/redirect action on\n[    0.836222] u32 classifier\n[    0.836222]     Actions configured\n[    0.836226] Netfilter messages via NETLINK v0.30.\n[    0.836381] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)\n[    0.836415] ctnetlink v0.93: registering with nfnetlink.\n[    0.836550] xt_time: kernel timezone is -0000\n[    0.836567] wireguard: WireGuard 1.0.20201112 loaded. See www.wireguard.com for information.\n[    0.836567] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    0.836603] gre: GRE over IPv4 demultiplexor driver\n[    0.836603] IPv4 over IPsec tunneling driver\n[    0.836718] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    0.836839] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    0.836890] Initializing XFRM netlink socket\n[    0.836894] IPsec XFRM device driver\n[    0.836953] NET: Registered protocol family 10\n[    0.837208] Segment Routing with IPv6\n[    0.837225] mip6: Mobile IPv6\n[    0.837228] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    0.837420] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    0.837546] NET: Registered protocol family 17\n[    0.837550] NET: Registered protocol family 15\n[    0.837560] Bridge firewalling registered\n[    0.837561] Ebtables v2.0 registered\n[    0.837577] l2tp_core: L2TP core driver, V2.0\n[    0.837580] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    0.837580] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    0.837584] l2tp_netlink: L2TP netlink interface\n[    0.837591] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    0.837591] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    0.837601] sctp: Hash tables configured (bind 256/256)\n[    0.837848] wide_ldo_avdd2_regulator: supplied by pm6150l_bob\n[    0.837956] camera_vdig: supplied by pm6150l_bob\n[    0.838055] camera_mipi_switch_en: supplied by pm6150l_bob\n[    0.838225] msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    0.838940] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    0.839491] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    0.839492] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    0.839623] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    0.839625] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    0.839626] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    0.839626] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    0.839627] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    0.839628] sps:BAM 0x000000000a704000 is registered.\n[    0.839743] msm-dwc3 a600000.ssusb: unable to get ssphy device\n[    0.840147] aw8624_haptic 3-005a: aw8624_i2c_probe: aw8624_read_chipid ret=0\n[    0.840327] aw8624_interrupt_setup: reg SYSINT=0x0\n[    0.840446] qpnp-pdphy c440000.qcom,spmi:qcom,pm6150@0:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    0.840662] QG-K: qg_parse_dt: size=96 dt.dec_rate_len=24 [0]=0 [end]=5\n[    0.841914] genirq: irq_chip msmgpio-dc did not update eff. affinity mask of irq 259\n[    0.854468] [ds28e16] verify_get_property: reading data, propnum: 234,\n[    0.870343] card slot init device name enter\n[    0.935665] [ds28e16] verify_get_property: reading data, propnum: 231,\n[    0.988162] mmc0: new ultra high speed SDR104 SDHC card at address 5048\n[    0.988407] mmcblk0: mmc0:5048 SD32G 28.9 GiB \n[    0.989211]  mmcblk0: p1\n[    1.006583] aw8624_haptic_get_f0 t_f0_trace_ms:136 \n[    1.007965] aw8624->f0_calib_data=0\n[    1.008242] aw8624_haptic_f0_calibration final trim_lra=0x00\n[    1.010814] input: aw8624_haptic as /devices/platform/soc/884000.i2c/i2c-3/3-005a/input/input2\n[    1.010891] aw8624_i2c_probe probe completed successfully!\n[    1.011376] i2c_geni a8c000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.011812] nq-nci 0-0028: nqx_probe: probing NFCC NQxxx exited successfully\n[    1.011999] tas256x 2-004c: Driver Tag: 202003201710\n[    1.012012] tas256x 2-004c: tas256x_i2c_probe enter\n[    1.070018] tas256x 2-004c: reset gpio up !!\n[    1.070019] tas256x 2-004c: Before SW reset\n[    1.100016] tas256x 2-004c: After SW reset\n[    1.100458] tas256x 2-004c: irq = 305\n[    1.100697] tas256x 2-004c: irq = 261\n[    1.100780] tas256x 2-004c: tas256x_register_codec, enter\n[    1.114003] [bq2597x] bq2597x_charger_probe: lct client->irq=283\n[    1.116271] wl2866d_probe,enrty\n[    1.116495] wl2866d_init: en_gpio is 1262\n[    1.130202] wl2866d_get_id:wl2866d id is 85\n[    1.150193] wl2866d_print_reg:wl2866d info is reg 3, value 85\n[    1.150365] wl2866d_print_reg:wl2866d info is reg 4, value 85\n[    1.150536] wl2866d_print_reg:wl2866d info is reg 5, value 128\n[    1.150708] wl2866d_print_reg:wl2866d info is reg 6, value 136\n[    1.150879] wl2866d_print_reg:wl2866d info is reg 14, value 15\n[    1.151051] wl2866d_print_reg:wl2866d info is reg 14, value 15\n[    1.151059] wl2866d_probe,successfully\n[    1.227271] QG-K: qg_load_battery_profile: qg_load_battery_profile : get page0 error.\n[    1.227274] of_batterydata_get_best_profile: m703-pm7150b-atl-5160mah found\n[    1.227412] QG-K: qg_batterydata_init: QG Battery-profile loaded\n[    1.228606] [ds28e16] verify_get_property: returning saved data, propnum: 234\n[    1.228608] [ds28e16] verify_get_property: value: 1\n[    1.228609] [ds28e16] verify_get_property: reading data, propnum: 231,\n[    1.230773] QG-K: qg_determine_pon_soc: using S7_PON_SOC @ PON ocv_uv=4326975uV soc=92\n[    1.230860] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    1.231426] QG-K: qpnp_qg_probe: QG initialized! battery_profile=Unknown Battery SOC=92 QG_subtype=4\n[    1.231596] lct six-pin-step-chg-cfg: 4250000uV, 6000000uA,six-pin-step-chg-cfg_2: 4250000uV, 6000000uA\n[    1.231597] lct six-pin-step-chg-cfg: 4450000uV, 5400000uA,six-pin-step-chg-cfg_2: 4450000uV, 5400000uA\n[    1.231598] lct six-pin-step-chg-cfg: 4480000uV, 4000000uA,six-pin-step-chg-cfg_2: 4480000uV, 4680000uA\n[    1.232357] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    1.232373] enter sysfs create file thermal\n[    1.233209] power_supply main: driver failed to report `flash_trigger' property: -1\n[    1.234134] pm6150_charger: jeita_update_work: longcheer get battery type: Unknown Battery\n[    1.234139] of_batterydata_get_best_profile: m703-pm7150b-atl-5160mah found\n[    1.236662] QG-K: qg_load_battery_profile: qg_load_battery_profile : get page0 error.\n[    1.236664] QG-K: profile_load_work: profile_load_work is failed.\n[    1.236664] QG-K: profile_load_work: profile_load_work begin to restart.\n[    1.249940] SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    1.249951] QPNP SMB5 probed successfully\n[    1.260199] [ds28e16] verify_get_property: reading data, propnum: 221,\n[    1.260203] [ds28e16] verify_get_property: reading data, propnum: 222,\n[    1.260206] [ds28e16] verify_get_property: reading data, propnum: 224,\n[    1.260212] power_supply main: driver failed to report `flash_trigger' property: -1\n[    1.266003] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.266070] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.266115] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.266158] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.266201] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.266378] msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    1.267172] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.267735] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.267736] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.268016] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    1.268018] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    1.268019] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    1.268020] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    1.268020] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    1.268021] sps:BAM 0x000000000a704000 is registered.\n[    1.268136] msm-dwc3 a600000.ssusb: unable to get ssphy device\n[    1.268991] usbpd_create successfully:pd=eaef8000,g_pd=eaef8000\n[    1.269409] i2c_geni a8c000.i2c: i2c error :-107\n[    1.269501] i2c_geni a8c000.i2c: i2c error :-107\n[    1.269588] i2c_geni a8c000.i2c: i2c error :-107\n[    1.269678] i2c_geni a8c000.i2c: i2c error :-107\n[    1.269766] i2c_geni a8c000.i2c: i2c error :-107\n[    1.269855] i2c_geni a8c000.i2c: i2c error :-107\n[    1.269944] i2c_geni a8c000.i2c: i2c error :-107\n[    1.270110] i2c_geni a8c000.i2c: i2c error :-107\n[    1.270197] i2c_geni a8c000.i2c: i2c error :-107\n[    1.270286] i2c_geni a8c000.i2c: i2c error :-107\n[    1.270350] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.270398] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.270440] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.270481] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.270524] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.270688] msm-usb-ssphy-qmp 88e8000.ssphy: No separate ID extcon device\n[    1.271416] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.271982] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.271984] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.272257] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    1.272259] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    1.272260] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    1.272260] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    1.272261] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    1.272262] sps:BAM 0x000000000a704000 is registered.\n[    1.272400] register_client_adhoc:find path.src 61 dest 512\n[    1.272504] register_client_adhoc:find path.src 61 dest 676\n[    1.272552] register_client_adhoc:find path.src 1 dest 583\n[    1.272608] register_client_adhoc:Client handle 44 usb0\n[    1.272847] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.272892] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.272935] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.272977] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.273021] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.273373] registered taskstats version 1\n[    1.276224] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode\n[    1.276984] msm-dwc3 a600000.ssusb: DWC3 in low power mode\n[    1.286224] [ds28e16] verify_get_property: returning saved data, propnum: 221\n[    1.286225] [ds28e16] verify_get_property: data: 9f, 9f, 0a, 30, 11, f0, 04, 57, \n[    1.286230] [ds28e16] verify_get_property: returning saved data, propnum: 222\n[    1.286231] [ds28e16] verify_get_property: data: 02, 00, 08, 03, 02, 00, ff, 01, \n[    1.286235] [ds28e16] verify_get_property: reading data, propnum: 231,\n[    1.287746] Unable to find log_buf by kallsyms!\n[    1.288188] ADSPRPC: Secure VMID = 22\n[    1.288189] ADSPRPC: Secure VMID = 37\n[    1.288394] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 28\n[    1.288717] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 29\n[    1.288992] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 30\n[    1.289263] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 31\n[    1.289534] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 32\n[    1.289806] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 33\n[    1.290072] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 34\n[    1.290832] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 35\n[    1.291083] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 36\n[    1.291335] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 37\n[    1.291581] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13 to group 38\n[    1.291814] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14 to group 39\n[    1.292051] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb15 to group 40\n[    1.293065] i2c_geni a8c000.i2c: i2c error :-107\n[    1.293160] i2c_geni a8c000.i2c: i2c error :-107\n[    1.293315] i2c_geni a8c000.i2c: i2c error :-107\n[    1.293408] i2c_geni a8c000.i2c: i2c error :-107\n[    1.293500] i2c_geni a8c000.i2c: i2c error :-107\n[    1.293652] i2c_geni a8c000.i2c: i2c error :-107\n[    1.294848] register_client_adhoc:find path.src 1 dest 590\n[    1.294925] register_client_adhoc:Client handle 45 mdss_reg\n[    1.294936] register_client_adhoc:find path.src 22 dest 512\n[    1.294993] register_client_adhoc:find path.src 23 dest 512\n[    1.295046] register_client_adhoc:Client handle 46 mdss_sde\n[    1.295064] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops 0xffffff8c8be7b7a0)\n[    1.295066] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops 0xffffff8c8be95920)\n[    1.295068] msm-dsi-display:[dsi_display_debugfs_init] [dsi_nt36672c_huaxing_fhd_video_display] debugfs create dir failed, rc = -19\n[    1.295070] dsi-ctrl:[dsi_ctrl_debugfs_init] [DSI_0] debugfs create dir failed, rc=-19\n[    1.295141] msm-dsi-display:[dsi_display_bind] Successfully bind display panel 'dsi_nt36672c_huaxing_fhd_video_display'\n[    1.295290] msm-dsi-display:[dsi_display_whitepoint_create_sysfs] dsi_display_whitepoint_create_sysfs success\n[    1.295293] msm-dsi-display:[dsi_display_feature_create_sysfs] xinj:dsi_display_feature_create_sysfs success\n[    1.295296] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display (ops 0xffffff8c8be85c68)\n[    1.295298] msm_drm ae00000.qcom,mdss_mdp: bound ae90000.qcom,dp_display (ops 0xffffff8c8be62c20)\n[    1.295311] [drm] mapped mdp address space @ffffff801aa00000\n[    1.295315] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: vbif_nrt_phys\n[    1.295319] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: sid_phys\n[    1.295330] [drm:_sde_kms_get_splash_data:3308] splash mem num_regions:1\n[    1.295336] [drm:_sde_kms_get_splash_data:3341] splash mem for disp:1 add:9c000000 size:1800000\n[    1.295663] [drm:sde_kms_hw_init:3489] sde hardware revision:0x50020000\n[    1.296130] [drm] Created domain mdp_ns [80000000,80000000] secure=0\n[    1.296746] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 41\n[    1.296762] [drm] probing device qcom,smmu_sde_sec\n[    1.296764] [drm] Created domain mdp_s [80000000,80000000] secure=1\n[    1.298240] [drm:sde_connector_init:2344] sde_connector_init: Request esd irq succeed!\n[    1.298375] [drm-dp] dp_parser_get_vreg: no supply entry present: ???\n[    1.298376] [drm-dp] dp_parser_get_vreg: no supply entry present: ???\n[    1.298377] [drm-dp] dp_parser_get_vreg: no supply entry present: ???\n[    1.298682] i2c i2c-4: of_i2c: modalias failure on /soc/qcom,dp_display@0/qcom,ctrl-supply-entries\n[    1.298684] i2c i2c-4: Failed to create I2C device for /soc/qcom,dp_display@0/qcom,ctrl-supply-entries\n[    1.298685] i2c i2c-4: of_i2c: modalias failure on /soc/qcom,dp_display@0/qcom,phy-supply-entries\n[    1.298686] i2c i2c-4: Failed to create I2C device for /soc/qcom,dp_display@0/qcom,phy-supply-entries\n[    1.298687] i2c i2c-4: of_i2c: modalias failure on /soc/qcom,dp_display@0/qcom,core-supply-entries\n[    1.298688] i2c i2c-4: Failed to create I2C device for /soc/qcom,dp_display@0/qcom,core-supply-entries\n[    1.298896] [drm-dp-mst]: dp_mst_drm_bridge_init: mst not initialized. cache encoder information\n[    1.298898] [drm-dp-mst]: dp_mst_drm_bridge_init: mst not initialized. cache encoder information\n[    1.298911] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.299046] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.299335] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.299350] [drm:reg_dmav1_init_sspp_op_v4] *ERROR* invalid feature map 12 for feature 31\n[    1.299787] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    1.299788] [drm] No driver support for vblank timestamp query.\n[    1.299978] [drm] Initialized msm_drm 1.2.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    1.300036] msm-dsi-panel:[dsi_panel_parse_topology:2965] default topology: lm: 1 comp_enc:1 intf: 1\n[    1.300139] msm-dsi-panel:[dsi_panel_parse_partial_update_caps:3058] partial update disabled as the property is not set\n[    1.330485] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-qos-lut : doesn't exist in device tree\n[    1.330487] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-danger-lut : doesn't exist in device tree\n[    1.330488] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-safe-lut : doesn't exist in device tree\n[    1.330512] register_client_adhoc:find path.src 1 dest 590\n[    1.330596] register_client_adhoc:Client handle 47 sde_reg\n[    1.330686] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 42\n[    1.330707] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    1.330768] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 43\n[    1.330779] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    1.330818] register_client_adhoc:find path.src 25 dest 512\n[    1.330876] register_client_adhoc:Client handle 48 mdss_rotator\n[    1.330879] register_client_adhoc:find path.src 1 dest 590\n[    1.330933] register_client_adhoc:Client handle 49 mdss_rot_reg\n[    1.331119] No change in context(0==0), skip\n[    1.332278] sde_rotator ae00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    1.332399] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.332467] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.332510] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.332554] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.332598] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.332797] ngd_msm_ctrl 62e40000.slim: error creating ipc_logging context\n[    1.332799] ngd_msm_ctrl 62e40000.slim: error creating ipc_error_logging context\n[    1.332916] iommu: Adding device 62e40000.slim:qcom,iommu_slim_ctrl_cb to group 44\n[    1.333070] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.333117] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.333159] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.333202] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.333245] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.335298] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    1.335442] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.335503] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.335546] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.335588] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.335631] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.336054] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.336105] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.336146] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.336188] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.336230] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.336353] spi_geni 880000.spi: proto 1\n[    1.336511] spi_geni 880000.spi: tx_fifo 16 rx_fifo 16 tx_width 32\n[    1.355428] input: NVTCapacitiveTouchScreen as /devices/virtual/input/input4\n[    1.355928] [LCT_TP_INFO] init_lct_tp_info (line 83): init /proc/tp_info and /proc/tp_lockdown_info ...\n[    1.355933] [LCT_TP_INFO] init_lct_tp_info (line 113): done\n[    1.355936] [LCT_TP_GESTURE] init_lct_tp_gesture (line 81): Initialization tp_gesture node!\n[    1.355940] [LCT_TP_GESTURE] lct_creat_proc_tp_entry (line 139): /proc/tp_gesture is okay!\n[    1.355943] [LCT_TP_GRIP_AREA] init_lct_tp_grip_area (line 83): Initialization /proc/tp_grip_area node!\n[    1.355947] [LCT_TP_GRIP_AREA] init_lct_tp_grip_area (line 101): /proc/tp_grip_area is okay!\n[    1.355950] [LCT_TP_WORK] init_lct_tp_work (line 81): Initialization tp_work node!\n[    1.355953] [LCT_TP_WORK] lct_creat_proc_tp_entry (line 139): /proc/tp_work is okay!\n[    1.355955] [LCT_TP_PALM] init_lct_tp_palm (line 81): Initialization tp_palm node!\n[    1.355958] [LCT_TP_PALM] lct_creat_proc_tp_entry (line 139): /proc/tp_palm is okay!\n[    1.356047] xiaomitouch_register_modedata\n[    1.356294] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.356453] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.356588] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.356719] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.356853] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.357239] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm6150@0:qcom,pm6150_rtc: setting system clock to 1970-04-15 15:07:49 UTC (9040069)\n[    1.359639] [USBPD-PM]: usbpd_check_cp_sec_psy: cp_sec_psy not found\n[    1.359794] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.359937] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.360089] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.360222] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.360356] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.361582] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.361718] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.361850] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.361979] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.362111] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.362993] lpm_levels: register_cluster_lpm_stats()\n[    1.363062] lpm_levels: register_cluster_lpm_stats()\n[    1.363770] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.363911] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.364044] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.364174] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.364306] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.366263] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.366403] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.366537] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.366667] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.366799] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.368735] rmnet_ipa3 started initialization\n[    1.368909] msm-cdc-pinctrl soc:cdc_dmic01_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic01_clk_active, deferring probe\n[    1.369054] msm-cdc-pinctrl soc:cdc_dmic23_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/dmic23_clk_active, deferring probe\n[    1.369188] msm-cdc-pinctrl soc:rx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/rx_swr_clk_active, deferring probe\n[    1.369320] msm-cdc-pinctrl soc:tx_swr_clk_data_pinctrl: could not find pctldev for node /soc/lpi_pinctrl@62b40000/tx_swr_clk_active, deferring probe\n[    1.369453] msm-cdc-pinctrl soc:msm_cdc_pinctrl@24: could not find pctldev for node /soc/lpi_pinctrl@62b40000/lpi_wcd937x_reset_active, deferring probe\n[    1.370419] RNDIS_IPA module is loaded.\n[    1.371129] [ds28e16] verify_get_property: returning saved data, propnum: 234\n[    1.371130] [ds28e16] verify_get_property: value: 1\n[    1.373958] msm_bus_late_init: Remove handoff bw requests\n[    1.374720] uw_ldo_ois_drv_regulator: disabling\n[    1.374724] dbu1: disabling\n[    1.374763] wide_ldo_avdd2_regulator: disabling\n[    1.374766] camera_vdig: disabling\n[    1.374768] camera_mipi_switch_en: disabling\n[    1.374798] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    1.374819] ALSA device list:\n[    1.374821]   No soundcards found.\n[    1.374873] Warning: unable to open an initial console.\n[    1.375705] Freeing unused kernel memory: 3392K\n[    1.523819] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    1.523929] cpu1 \n[    1.523957] cpu6 \n[    1.523978] \n               Offline CPUs: \n[    1.524988] cpu1 \n[    1.527850] cpu2 \n[    1.530260] cpu3 \n[    1.532421] cpu4 \n[    1.533376] cpu5 \n[    1.534302] cpu6 \n[    1.536103] cpu7 \n\n[    1.538455] Sampling power every 250 ms\n               Baseline power usage: \n[    2.240686] power_supply main: driver failed to report `flash_trigger' property: -1\n[    2.242522] [ds28e16] verify_get_property: returning saved data, propnum: 234\n[    2.242534] [ds28e16] verify_get_property: value: 1\n[    2.242544] [ds28e16] verify_get_property: returning saved data, propnum: 231\n[    2.242552] [ds28e16] verify_get_property: data: 4e, 42, 4e, 35, 37, 30, 38, 4b, 00, 1b, 7d, 41, 4d, 44, 31, 31, \n[    2.242656] of_batterydata_get_best_profile: m703-pm7150b-atl-5160mah found\n[    2.245284] QG-K: qg_determine_pon_soc: using SHUTDOWN_SOC @ PON ocv_uv=4326975uV soc=92\n[    2.245377] QG-K: profile_load_work: profile_load_work: QG initialized! battery_profile=m703-pm7150b-atl-5160mah SOC=92 QG_subtype=4\n[    3.280617] QCOM-STEPCHG: get_step_chg_jeita_setting_from_profile: longcheer get battery type: m703-pm7150b-atl-5160mah\n[    3.280638] of_batterydata_get_best_profile: m703-pm7150b-atl-5160mah found\n[    3.280675] QCOM-STEPCHG: read_range_data_from_node: Count qcom,step-chg-ranges failed, rc=-22\n[    3.280701] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.280711] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.280721] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.280731] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.280740] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.280749] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.280758] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.280767] QCOM-STEPCHG: get_config_work: step-chg-cfg: 0uV(SoC) ~ 0uV(SoC), 0uA\n[    3.280778] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: -100decidegree ~ 0decidegre, 450000uA\n[    3.280788] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 1decidegree ~ 50decidegre, 950000uA\n[    3.280798] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 51decidegree ~ 100decidegre, 2500000uA\n[    3.280808] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 101decidegree ~ 150decidegre, 4000000uA\n[    3.280818] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 151decidegree ~ 480decidegre, 6000000uA\n[    3.280829] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 481decidegree ~ 580decidegre, 2500000uA\n[    3.280838] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 0decidegree ~ 0decidegre, 0uA\n[    3.280847] QCOM-STEPCHG: get_config_work: jeita-fcc-cfg: 0decidegree ~ 0decidegre, 0uA\n[    3.280857] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: -100decidegree ~ 0decidegre, 4450000uV\n[    3.280867] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 1decidegree ~ 50decidegre, 4450000uV\n[    3.280878] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 51decidegree ~ 100decidegre, 4450000uV\n[    3.280888] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 101decidegree ~ 150decidegre, 4450000uV\n[    3.280898] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 151decidegree ~ 480decidegre, 4480000uV\n[    3.280908] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 481decidegree ~ 580decidegre, 4100000uV\n[    3.280918] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 0decidegree ~ 0decidegre, 0uV\n[    3.280928] QCOM-STEPCHG: get_config_work: jeita-fv-cfg: 0decidegree ~ 0decidegre, 0uV\n[   69.600135] firmware novatek_ts_huaxing_fw.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   69.600698] firmware aw8624_haptic.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   69.600845] aw8624_ram_loaded: failed to read aw8624_haptic.bin\n[   76.833664] 1154 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 576 768 1017 1248 1324 1497 1612 1708 1804\n               \n                300: \n[  131.040106] firmware novatek_ts_huaxing_fw.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  192.480178] firmware novatek_ts_huaxing_fw.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  305.120335] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120380] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121666] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121686] audio_notifer_reg_service: service SSR_ADSP is in use\n[  305.121732] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121740] ADSPRPC: Audio PD restart notifier locator down\n[  305.121769] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121775] ADSPRPC: Audio PD restart notifier locator down\n[  310.820172]  1108     3.7 C/MHz    146 mW   32.8 J    7.6 I/mJ   225.6 s\n                576: \n[  436.275545]  2133     3.7 C/MHz    164 mW   19.2 J   13.0 I/mJ   117.2 s\n                768: \n[  532.507886]  2846     3.7 C/MHz    176 mW   15.4 J   16.2 I/mJ    87.8 s\n               1017: \n[  607.108330]  3773     3.7 C/MHz    191 mW   12.7 J   19.7 I/mJ    66.3 s\n               1248: \n[  669.395584]  4628     3.7 C/MHz    209 mW   11.3 J   22.2 I/mJ    54.0 s\n               1324: \n[  728.417446]  4913     3.7 C/MHz    213 mW   10.8 J   23.1 I/mJ    50.9 s\n               1497: \n[  781.663737]  5555     3.7 C/MHz    224 mW   10.1 J   24.8 I/mJ    45.0 s\n               1612: \n[  831.646080]  5983     3.7 C/MHz    230 mW    9.6 J   26.0 I/mJ    41.8 s\n               1708: \n[  879.369234]  6339     3.7 C/MHz    235 mW    9.3 J   27.0 I/mJ    39.4 s\n               1804: \n[  924.848013]  6695     3.7 C/MHz    251 mW    9.4 J   26.7 I/mJ    37.3 s\n               \n               \n               ===== CPU 6 =====\n               Frequencies: 300 652 806 979 1094 1209 1324 1555 1708 1843 1939 2169 2208 2304\n               \n                300: \n[ 1040.380001]  2332     7.8 C/MHz    208 mW   22.3 J   11.2 I/mJ   107.2 s\n                652: \n[ 1097.942766]  5079     7.8 C/MHz    266 mW   13.1 J   19.1 I/mJ    49.2 s\n                806: \n[ 1146.180838]  6278     7.8 C/MHz    291 mW   11.6 J   21.6 I/mJ    39.8 s\n                979: \n[ 1187.359967]  7623     7.8 C/MHz    334 mW   11.0 J   22.8 I/mJ    32.8 s\n               1094: \n[ 1225.011971]  8523     7.8 C/MHz    370 mW   10.9 J   23.0 I/mJ    29.3 s\n               1209: \n[ 1259.891846]  9420     7.8 C/MHz    395 mW   10.5 J   23.8 I/mJ    26.6 s\n               1324: \n[ 1292.502920] 10309     7.8 C/MHz    432 mW   10.5 J   23.9 I/mJ    24.3 s\n               1555: \n[ 1321.332377] 12114     7.8 C/MHz    542 mW   11.2 J   22.3 I/mJ    20.6 s\n               1708: \n[ 1348.397217] 13308     7.8 C/MHz    622 mW   11.7 J   21.4 I/mJ    18.8 s\n               1843: \n[ 1374.204708] 14348     7.8 C/MHz    701 mW   12.2 J   20.4 I/mJ    17.4 s\n               1939: \n[ 1399.002872] 15106     7.8 C/MHz    775 mW   12.8 J   19.5 I/mJ    16.6 s\n               2169: \n[ 1422.036846] 16895     7.8 C/MHz    998 mW   14.8 J   16.9 I/mJ    14.8 s\n               2208: \n[ 1444.817481] 17196     7.8 C/MHz   1016 mW   14.8 J   16.9 I/mJ    14.6 s\n               2304: \n[ 1467.127346] 17947     7.8 C/MHz   1101 mW   15.3 J   16.3 I/mJ    13.9 s\n               \n               \n               Benchmark finished!\n[ 1467.154664] \n               real\t24m25.770s\n               user\t19m53.957s\n               sys\t0m2.324s\n"
  },
  {
    "path": "results/sm7150ac/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  4:      76155   PDC-GIC  19 Level     arch_timer\n  6:          0   PDC-GIC  38 Level     arch_mem_timer\n  8:          0   PDC-GIC  21 Level     arm-pmu\n  9:          0   PDC-GIC  82 Level     arm_dsu_0\n 10:          5   PDC-GIC 276 Level     gpi_dma800000_gpii0\n 26:          0   PDC-GIC 323 Level     ngd_slim_irq\n 28:          0   PDC-GIC  32 Edge      apps_wdog_bark\n 30:          0   PDC-GIC 524 Level     eud_irq\n 31:          0   PDC-GIC  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 32:          0   PDC-GIC  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 33:          0   PDC-GIC 538 Level     tsens-upper-lower\n 34:          0   PDC-GIC 540 Level     tsens-critical\n 35:          0   PDC-GIC 539 Level     tsens-upper-lower\n 36:          0   PDC-GIC 541 Level     tsens-critical\n 37:        219   PDC-GIC  37 Level     apps_rsc\n 38:          0   PDC-GIC 161 Level     display_rsc\n 39:          0   PDC-GIC 620 Edge      qcom,qmp-npu-low\n 40:          0   PDC-GIC 621 Edge      qcom,qmp-npu-high\n 41:          7   PDC-GIC 421 Edge      qcom,qmp-aop\n 42:          0   PDC-GIC 483 Edge      smp2p\n 43:          0   PDC-GIC 204 Edge      smp2p\n 44:          0   PDC-GIC 608 Edge      smp2p\n 47:         82   PDC-GIC 236 Edge      mmc0\n 48:          3   PDC-GIC 254 Edge      8804000.sdhci\n 49:         11   PDC-GIC 297 Edge      1d84000.ufshc\n 50:          0   PDC-GIC 194 Edge      adsp\n 51:          0   PDC-GIC 304 Level     sps\n 53:          0   PDC-GIC 610 Edge      cdsp\n 54:          0   PDC-GIC 298 Edge      modem\n 70:          0  pmic_arb 8388808 Edge      pon_kpdpwr_status\n 71:          0  pmic_arb 8454344 Edge      pon_resin_status\n 73:         67  pmic_arb 51380438 Edge      pm-adc5\n 74:          0  pmic_arb 55574743 Edge      thr-int-en\n 75:          0  pmic_arb 24117456 Edge      sig-tx\n 76:          0  pmic_arb 24182992 Edge      sig-rx\n 77:          0  pmic_arb 24248528 Edge      msg-tx\n 78:          0  pmic_arb 24314064 Edge      msg-rx\n 79:          0  pmic_arb 24379600 Edge      msg-tx-failed\n 80:          0  pmic_arb 24445136 Edge      msg-tx-discarded\n 81:          0  pmic_arb 24510672 Edge      msg-rx-discarded\n 83:          0  pmic_arb 30408916 Edge      bcl-lvl0\n 84:          0  pmic_arb 30474452 Edge      bcl-lvl1\n 85:          0  pmic_arb 30539988 Edge      bcl-lvl2\n 86:          0  pmic_arb 37748949 Edge      qcom,temp-alarm\n 87:          0   PDC-GIC 397 Level     arm-smmu-context-fault\n 94:          0  pmic_arb 1111490795 Edge      qcom,temp-alarm\n 95:          0  pmic_arb 1137705198 Edge      bcl-lvl0\n 96:          0  pmic_arb 1137770734 Edge      bcl-lvl1\n 97:          0  pmic_arb 1137836270 Edge      bcl-lvl2\n 98:          4  pmic_arb 1125122284 Edge      pm-adc5\n 99:          0  pmic_arb 1129316589 Edge      thr-int-en\n101:          0  pmic_arb 1276117233 Edge      volume_up\n112:          0  pmic_arb 1589707025 Edge      qpnp_lcdb_sc_irq\n113:          0  pmic_arb 1563427083 Edge      qpnp_flash_led_fault_irq\n114:          0  pmic_arb 1563623691 Edge      qpnp_flash_led_all_ramp_down_done_irq\n115:          0  pmic_arb 1563689227 Edge      qpnp_flash_led_all_ramp_up_done_irq\n116:          0  pmic_arb 1568735500 Edge      wled_ovp_irq\n117:          0  pmic_arb 1568932108 Edge      wled_pre_flash_irq\n118:          0  pmic_arb 1568997644 Edge      wled_flash_irq\n119:        366   PDC-GIC 634 Level     i2c_geni\n120:          0   PDC-GIC 635 Level     i2c_geni\n122:         16   PDC-GIC 633 Level     spi_geni\n124:        522   PDC-GIC 388 Level     i2c_geni\n125:          0   PDC-GIC 390 Level     spi_geni\n126:          0   PDC-GIC 206 Level     msm_vidc\n127:          0   PDC-GIC 115 Edge      msm_drm\n128:          0   PDC-GIC 509 Edge      csiphy\n129:          0   PDC-GIC 510 Edge      csiphy\n130:          0   PDC-GIC 511 Edge      csiphy\n131:          0   PDC-GIC 639 Edge      csiphy\n132:          0   PDC-GIC 492 Edge      cci\n133:          0   PDC-GIC 493 Edge      cci\n134:          1   PDC-GIC 500 Edge      cpas-cdm\n135:          0   PDC-GIC 496 Edge      csid\n136:          2   PDC-GIC 497 Edge      ife\n137:          0   PDC-GIC 498 Edge      csid\n138:          2   PDC-GIC 499 Edge      ife\n139:          0   PDC-GIC 470 Edge      csid-lite\n140:          2   PDC-GIC 466 Edge      ife-lite\n141:          0   PDC-GIC 495 Edge      a5\n142:          0   PDC-GIC 506 Edge      jpeg\n143:          0   PDC-GIC 507 Edge      jpegdma\n144:          2   PDC-GIC 494 Edge      fd\n145:          1   PDC-GIC 508 Edge      lrme\n146:          0   PDC-GIC 491 Edge      cpas_camnoc\n147:          0   PDC-GIC 261 Level     arm-smmu global fault\n148:          0   PDC-GIC 263 Level     arm-smmu global fault\n149:          0   PDC-GIC 396 Level     arm-smmu-context-fault\n150:          0   PDC-GIC 398 Level     arm-smmu-context-fault\n151:          0   PDC-GIC 399 Level     arm-smmu-context-fault\n156:          0   PDC-GIC  97 Level     arm-smmu global fault\n158:          0   PDC-GIC 129 Level     arm-smmu-context-fault\n160:          0   PDC-GIC 131 Level     arm-smmu-context-fault\n161:          0   PDC-GIC 132 Level     arm-smmu-context-fault\n162:          0   PDC-GIC 133 Level     arm-smmu-context-fault\n163:          0   PDC-GIC 134 Level     arm-smmu-context-fault\n164:          0   PDC-GIC 135 Level     arm-smmu-context-fault\n165:          0   PDC-GIC 136 Level     arm-smmu-context-fault\n166:          0   PDC-GIC 137 Level     arm-smmu-context-fault\n167:          0   PDC-GIC 138 Level     arm-smmu-context-fault\n168:          0   PDC-GIC 139 Level     arm-smmu-context-fault\n169:          0   PDC-GIC 140 Level     arm-smmu-context-fault\n170:          0   PDC-GIC 141 Level     arm-smmu-context-fault\n171:          0   PDC-GIC 142 Level     arm-smmu-context-fault\n172:          0   PDC-GIC 143 Level     arm-smmu-context-fault\n173:          0   PDC-GIC 144 Level     arm-smmu-context-fault\n174:          0   PDC-GIC 145 Level     arm-smmu-context-fault\n175:          0   PDC-GIC 146 Level     arm-smmu-context-fault\n176:          0   PDC-GIC 147 Level     arm-smmu-context-fault\n177:          0   PDC-GIC 148 Level     arm-smmu-context-fault\n178:          0   PDC-GIC 149 Level     arm-smmu-context-fault\n179:          0   PDC-GIC 150 Level     arm-smmu-context-fault\n180:          0   PDC-GIC 213 Level     arm-smmu-context-fault\n181:          0   PDC-GIC 214 Level     arm-smmu-context-fault\n182:          0   PDC-GIC 215 Level     arm-smmu-context-fault\n183:          0   PDC-GIC 216 Level     arm-smmu-context-fault\n184:          0   PDC-GIC 217 Level     arm-smmu-context-fault\n185:          0   PDC-GIC 218 Level     arm-smmu-context-fault\n186:          0   PDC-GIC 219 Level     arm-smmu-context-fault\n187:          0   PDC-GIC 220 Level     arm-smmu-context-fault\n188:          0   PDC-GIC 221 Level     arm-smmu-context-fault\n189:          0   PDC-GIC 222 Level     arm-smmu-context-fault\n190:          0   PDC-GIC 223 Level     arm-smmu-context-fault\n191:          0   PDC-GIC 224 Level     arm-smmu-context-fault\n192:          0   PDC-GIC 347 Level     arm-smmu-context-fault\n243:          0  msmgpio-dc   4 Edge      esd_err_irq\n249:          0  msmgpio-dc   9 Edge      NVT-ts\n251:          0  msmgpio-dc  10 Edge      TE_GPIO\n259:          0  msmgpio-dc  26 Edge      aw8624\n261:          0  msmgpio-dc  30 Edge      tas256x\n273:          0  msmgpio-dc  37 Level     nq-nci\n283:          1  msmgpio-dc  43 Edge      bq2597x charger irq\n305:          0  msmgpio-dc  58 Edge      tas256x\n321:          0  msmgpio-dc  69 Edge      8804000.sdhci cd\n379:          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n380:          1   PDC-GIC 162 Edge      pwr_event_irq\n381:          0   PDC-GIC 518 Level     ss_phy_irq\n382:          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n383:          0   PDC-GIC 332 Level     kgsl-3d0\n384:          0   PDC-GIC 336 Level     HFI\n385:          0   PDC-GIC 337 Level     GMU\n389:          0   PDC-GIC  64 Level     limits_sensor-00\n390:          0   PDC-GIC  65 Level     limits_sensor-01\n391:          0     smp2p   2 Edge      adsp\n392:          0     smp2p   0 Edge      adsp\n393:          0     smp2p   1 Edge      error_ready_interrupt\n394:          0     smp2p   3 Edge      adsp\n395:          0     smp2p   2 Edge      cdsp\n396:          0     smp2p   0 Edge      cdsp\n397:          0     smp2p   1 Edge      error_ready_interrupt\n398:          0     smp2p   3 Edge      cdsp\n399:          0     smp2p   2 Edge      modem\n400:          0     smp2p   0 Edge      modem\n401:          0     smp2p   1 Edge      error_ready_interrupt\n402:          0     smp2p   3 Edge      modem\n403:          0     smp2p   7 Edge      modem\n404:          0     smp2p   0 Edge      smp2p_sleepstate\n405:          0   PDC-GIC 165 Edge      dwc3\n407:          0  pmic_arb 101777627 Edge      qpnp_rtc_alarm\n408:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n410:          0  pmic_arb 75563225 Edge      qg-vbat-low\n411:          0  pmic_arb 75628761 Edge      qg-vbat-empty\n412:         23  pmic_arb 75694297 Edge      qg-fifo-done\n413:          0  pmic_arb 75759833 Edge      qg-good-ocv\n414:          0  pmic_arb 16777417 Edge      chgr-error\n415:          0  pmic_arb 16842953 Edge      chg-state-change\n422:          0  pmic_arb 17825994 Edge      otg-fail\n426:          0  pmic_arb 18088138 Edge      high-duty-cycle\n427:          0  pmic_arb 18153674 Edge      input-current-limiting\n429:          0  pmic_arb 18284746 Edge      switcher-power-ok\n430:          0  pmic_arb 18874571 Edge      bat-temp\n431:          0  pmic_arb 19005643 Edge      bat-ov\n432:          0  pmic_arb 19071179 Edge      bat-low\n433:          0  pmic_arb 19136715 Edge      bat-therm-or-id-missing\n434:          0  pmic_arb 19202251 Edge      bat-terminal-missing\n437:          0  pmic_arb 19923148 Edge      usbin-collapse\n438:          0  pmic_arb 19988684 Edge      usbin-vashdn\n439:          0  pmic_arb 20054220 Edge      usbin-uv\n440:          0  pmic_arb 20119756 Edge      usbin-ov\n441:          0  pmic_arb 20185292 Edge      usbin-plugin\n443:          0  pmic_arb 20316364 Edge      usbin-src-change\n444:          0  pmic_arb 20381900 Edge      usbin-icl-change\n446:          0  pmic_arb 21102797 Edge      dcin-uv\n447:          0  pmic_arb 21168333 Edge      dcin-ov\n448:          0  pmic_arb 21233869 Edge      dcin-plugin\n450:          0  pmic_arb 21364941 Edge      dcin-pon\n451:          0  pmic_arb 21430477 Edge      dcin-en\n452:          0  pmic_arb 22020302 Edge      typec-or-rid-detect-change\n454:          0  pmic_arb 22151374 Edge      typec-cc-state-change\n455:          0  pmic_arb 22216910 Edge      typec-vconn-oc\n457:          0  pmic_arb 22347982 Edge      typec-attach-detach\n458:          0  pmic_arb 22413518 Edge      typec-legacy-cable-detect\n460:          0  pmic_arb 23068879 Edge      wdog-snarl\n461:          0  pmic_arb 23134415 Edge      wdog-bark\n463:          0  pmic_arb 23265487 Edge      aicl-done\n464:          0  pmic_arb 23331023 Edge      smb-en\n466:          0  pmic_arb 23462095 Edge      temp-change\n468:          0  pmic_arb 185663709 Edge      sdam-sts\n469:          0       sde  12 Edge      dp_display_isr\n470:          0       sde   4 Edge      dsi_ctrl\nIPI0:     26259       Rescheduling interrupts\nIPI1:        82       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:         0       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm7150ac/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  4:        104         10         11         19         26        158       2207       2491   PDC-GIC  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   PDC-GIC  38 Level     arch_mem_timer\n  8:          0          0          0          0          0          0          0          0   PDC-GIC  21 Level     arm-pmu\n  9:          0          0          0          0          0          0          0          0   PDC-GIC  82 Level     arm_dsu_0\n 10:          5          0          0          0          0          0          0          0   PDC-GIC 276 Level     gpi_dma800000_gpii0\n 26:          0          0          0          0          0          0          0          0   PDC-GIC 323 Level     ngd_slim_irq\n 28:          0          0          0          0          0          0          0          0   PDC-GIC  32 Edge      apps_wdog_bark\n 30:          0          0          0          0          0          0          0          0   PDC-GIC 524 Level     eud_irq\n 31:          0          0          0          0          0          0          0          0   PDC-GIC  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 32:          0          0          0          0          0          0          0          0   PDC-GIC  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 33:          0          0          0          0          0          0          0          0   PDC-GIC 538 Level     tsens-upper-lower\n 34:          0          0          0          0          0          0          0          0   PDC-GIC 540 Level     tsens-critical\n 35:          0          0          0          0          0          0          0          0   PDC-GIC 539 Level     tsens-upper-lower\n 36:          0          0          0          0          0          0          0          0   PDC-GIC 541 Level     tsens-critical\n 37:        201          0          0          0          0          0          0          0   PDC-GIC  37 Level     apps_rsc\n 38:          0          0          0          0          0          0          0          0   PDC-GIC 161 Level     display_rsc\n 39:          0          0          0          0          0          0          0          0   PDC-GIC 620 Edge      qcom,qmp-npu-low\n 40:          0          0          0          0          0          0          0          0   PDC-GIC 621 Edge      qcom,qmp-npu-high\n 41:          7          0          0          0          0          0          0          0   PDC-GIC 421 Edge      qcom,qmp-aop\n 42:          0          0          0          0          0          0          0          0   PDC-GIC 483 Edge      smp2p\n 43:          0          0          0          0          0          0          0          0   PDC-GIC 204 Edge      smp2p\n 44:          0          0          0          0          0          0          0          0   PDC-GIC 608 Edge      smp2p\n 47:         81          0          0          0          0          0          0          0   PDC-GIC 236 Edge      mmc0\n 48:          2          0          0          0          0          0          0          0   PDC-GIC 254 Edge      8804000.sdhci\n 49:          0        323          0          0          0          0          0          0   PDC-GIC 297 Edge      1d84000.ufshc\n 50:          0          0          0          0          0          0          0          0   PDC-GIC 194 Edge      adsp\n 51:          0          0          0          0          0          0          0          0   PDC-GIC 304 Level     sps\n 53:          0          0          0          0          0          0          0          0   PDC-GIC 610 Edge      cdsp\n 54:          0          0          0          0          0          0          0          0   PDC-GIC 298 Edge      modem\n 70:          0          0          0          0          0          0          0          0  pmic_arb 8388808 Edge      pon_kpdpwr_status\n 71:          0          0          0          0          0          0          0          0  pmic_arb 8454344 Edge      pon_resin_status\n 73:         41          0          0          0          0          0          0          0  pmic_arb 51380438 Edge      pm-adc5\n 74:          0          0          0          0          0          0          0          0  pmic_arb 55574743 Edge      thr-int-en\n 75:          0          0          0          0          0          0          0          0  pmic_arb 24117456 Edge      sig-tx\n 76:          0          0          0          0          0          0          0          0  pmic_arb 24182992 Edge      sig-rx\n 77:          0          0          0          0          0          0          0          0  pmic_arb 24248528 Edge      msg-tx\n 78:          0          0          0          0          0          0          0          0  pmic_arb 24314064 Edge      msg-rx\n 79:          0          0          0          0          0          0          0          0  pmic_arb 24379600 Edge      msg-tx-failed\n 80:          0          0          0          0          0          0          0          0  pmic_arb 24445136 Edge      msg-tx-discarded\n 81:          0          0          0          0          0          0          0          0  pmic_arb 24510672 Edge      msg-rx-discarded\n 83:          0          0          0          0          0          0          0          0  pmic_arb 30408916 Edge      bcl-lvl0\n 84:          0          0          0          0          0          0          0          0  pmic_arb 30474452 Edge      bcl-lvl1\n 85:          0          0          0          0          0          0          0          0  pmic_arb 30539988 Edge      bcl-lvl2\n 86:          0          0          0          0          0          0          0          0  pmic_arb 37748949 Edge      qcom,temp-alarm\n 87:          0          0          0          0          0          0          0          0   PDC-GIC 397 Level     arm-smmu-context-fault\n 94:          0          0          0          0          0          0          0          0  pmic_arb 1111490795 Edge      qcom,temp-alarm\n 95:          0          0          0          0          0          0          0          0  pmic_arb 1137705198 Edge      bcl-lvl0\n 96:          0          0          0          0          0          0          0          0  pmic_arb 1137770734 Edge      bcl-lvl1\n 97:          0          0          0          0          0          0          0          0  pmic_arb 1137836270 Edge      bcl-lvl2\n 98:          4          0          0          0          0          0          0          0  pmic_arb 1125122284 Edge      pm-adc5\n 99:          0          0          0          0          0          0          0          0  pmic_arb 1129316589 Edge      thr-int-en\n101:          0          0          0          0          0          0          0          0  pmic_arb 1276117233 Edge      volume_up\n112:          0          0          0          0          0          0          0          0  pmic_arb 1589707025 Edge      qpnp_lcdb_sc_irq\n113:          0          0          0          0          0          0          0          0  pmic_arb 1563427083 Edge      qpnp_flash_led_fault_irq\n114:          0          0          0          0          0          0          0          0  pmic_arb 1563623691 Edge      qpnp_flash_led_all_ramp_down_done_irq\n115:          0          0          0          0          0          0          0          0  pmic_arb 1563689227 Edge      qpnp_flash_led_all_ramp_up_done_irq\n116:          0          0          0          0          0          0          0          0  pmic_arb 1568735500 Edge      wled_ovp_irq\n117:          0          0          0          0          0          0          0          0  pmic_arb 1568932108 Edge      wled_pre_flash_irq\n118:          0          0          0          0          0          0          0          0  pmic_arb 1568997644 Edge      wled_flash_irq\n119:        366          0          0          0          0          0          0          0   PDC-GIC 634 Level     i2c_geni\n120:          0          0          0          0          0          0          0          0   PDC-GIC 635 Level     i2c_geni\n122:         16          0          0          0          0          0          0          0   PDC-GIC 633 Level     spi_geni\n124:        522          0          0          0          0          0          0          0   PDC-GIC 388 Level     i2c_geni\n125:          0          0          0          0          0          0          0          0   PDC-GIC 390 Level     spi_geni\n126:          0          0          0          0          0          0          0          0   PDC-GIC 206 Level     msm_vidc\n127:          0          0          0          0          0          0          0          0   PDC-GIC 115 Edge      msm_drm\n128:          0          0          0          0          0          0          0          0   PDC-GIC 509 Edge      csiphy\n129:          0          0          0          0          0          0          0          0   PDC-GIC 510 Edge      csiphy\n130:          0          0          0          0          0          0          0          0   PDC-GIC 511 Edge      csiphy\n131:          0          0          0          0          0          0          0          0   PDC-GIC 639 Edge      csiphy\n132:          0          0          0          0          0          0          0          0   PDC-GIC 492 Edge      cci\n133:          0          0          0          0          0          0          0          0   PDC-GIC 493 Edge      cci\n134:          1          0          0          0          0          0          0          0   PDC-GIC 500 Edge      cpas-cdm\n135:          0          0          0          0          0          0          0          0   PDC-GIC 496 Edge      csid\n136:          2          0          0          0          0          0          0          0   PDC-GIC 497 Edge      ife\n137:          0          0          0          0          0          0          0          0   PDC-GIC 498 Edge      csid\n138:          2          0          0          0          0          0          0          0   PDC-GIC 499 Edge      ife\n139:          0          0          0          0          0          0          0          0   PDC-GIC 470 Edge      csid-lite\n140:          2          0          0          0          0          0          0          0   PDC-GIC 466 Edge      ife-lite\n141:          0          0          0          0          0          0          0          0   PDC-GIC 495 Edge      a5\n142:          0          0          0          0          0          0          0          0   PDC-GIC 506 Edge      jpeg\n143:          0          0          0          0          0          0          0          0   PDC-GIC 507 Edge      jpegdma\n144:          2          0          0          0          0          0          0          0   PDC-GIC 494 Edge      fd\n145:          1          0          0          0          0          0          0          0   PDC-GIC 508 Edge      lrme\n146:          0          0          0          0          0          0          0          0   PDC-GIC 491 Edge      cpas_camnoc\n147:          0          0          0          0          0          0          0          0   PDC-GIC 261 Level     arm-smmu global fault\n148:          0          0          0          0          0          0          0          0   PDC-GIC 263 Level     arm-smmu global fault\n149:          0          0          0          0          0          0          0          0   PDC-GIC 396 Level     arm-smmu-context-fault\n150:          0          0          0          0          0          0          0          0   PDC-GIC 398 Level     arm-smmu-context-fault\n151:          0          0          0          0          0          0          0          0   PDC-GIC 399 Level     arm-smmu-context-fault\n156:          0          0          0          0          0          0          0          0   PDC-GIC  97 Level     arm-smmu global fault\n158:          0          0          0          0          0          0          0          0   PDC-GIC 129 Level     arm-smmu-context-fault\n160:          0          0          0          0          0          0          0          0   PDC-GIC 131 Level     arm-smmu-context-fault\n161:          0          0          0          0          0          0          0          0   PDC-GIC 132 Level     arm-smmu-context-fault\n162:          0          0          0          0          0          0          0          0   PDC-GIC 133 Level     arm-smmu-context-fault\n163:          0          0          0          0          0          0          0          0   PDC-GIC 134 Level     arm-smmu-context-fault\n164:          0          0          0          0          0          0          0          0   PDC-GIC 135 Level     arm-smmu-context-fault\n165:          0          0          0          0          0          0          0          0   PDC-GIC 136 Level     arm-smmu-context-fault\n166:          0          0          0          0          0          0          0          0   PDC-GIC 137 Level     arm-smmu-context-fault\n167:          0          0          0          0          0          0          0          0   PDC-GIC 138 Level     arm-smmu-context-fault\n168:          0          0          0          0          0          0          0          0   PDC-GIC 139 Level     arm-smmu-context-fault\n169:          0          0          0          0          0          0          0          0   PDC-GIC 140 Level     arm-smmu-context-fault\n170:          0          0          0          0          0          0          0          0   PDC-GIC 141 Level     arm-smmu-context-fault\n171:          0          0          0          0          0          0          0          0   PDC-GIC 142 Level     arm-smmu-context-fault\n172:          0          0          0          0          0          0          0          0   PDC-GIC 143 Level     arm-smmu-context-fault\n173:          0          0          0          0          0          0          0          0   PDC-GIC 144 Level     arm-smmu-context-fault\n174:          0          0          0          0          0          0          0          0   PDC-GIC 145 Level     arm-smmu-context-fault\n175:          0          0          0          0          0          0          0          0   PDC-GIC 146 Level     arm-smmu-context-fault\n176:          0          0          0          0          0          0          0          0   PDC-GIC 147 Level     arm-smmu-context-fault\n177:          0          0          0          0          0          0          0          0   PDC-GIC 148 Level     arm-smmu-context-fault\n178:          0          0          0          0          0          0          0          0   PDC-GIC 149 Level     arm-smmu-context-fault\n179:          0          0          0          0          0          0          0          0   PDC-GIC 150 Level     arm-smmu-context-fault\n180:          0          0          0          0          0          0          0          0   PDC-GIC 213 Level     arm-smmu-context-fault\n181:          0          0          0          0          0          0          0          0   PDC-GIC 214 Level     arm-smmu-context-fault\n182:          0          0          0          0          0          0          0          0   PDC-GIC 215 Level     arm-smmu-context-fault\n183:          0          0          0          0          0          0          0          0   PDC-GIC 216 Level     arm-smmu-context-fault\n184:          0          0          0          0          0          0          0          0   PDC-GIC 217 Level     arm-smmu-context-fault\n185:          0          0          0          0          0          0          0          0   PDC-GIC 218 Level     arm-smmu-context-fault\n186:          0          0          0          0          0          0          0          0   PDC-GIC 219 Level     arm-smmu-context-fault\n187:          0          0          0          0          0          0          0          0   PDC-GIC 220 Level     arm-smmu-context-fault\n188:          0          0          0          0          0          0          0          0   PDC-GIC 221 Level     arm-smmu-context-fault\n189:          0          0          0          0          0          0          0          0   PDC-GIC 222 Level     arm-smmu-context-fault\n190:          0          0          0          0          0          0          0          0   PDC-GIC 223 Level     arm-smmu-context-fault\n191:          0          0          0          0          0          0          0          0   PDC-GIC 224 Level     arm-smmu-context-fault\n192:          0          0          0          0          0          0          0          0   PDC-GIC 347 Level     arm-smmu-context-fault\n243:          0          0          0          0          0          0          0          0  msmgpio-dc   4 Edge      esd_err_irq\n249:          0          0          0          0          0          0          0          0  msmgpio-dc   9 Edge      NVT-ts\n251:          0          0          0          0          0          0          0          0  msmgpio-dc  10 Edge      TE_GPIO\n259:          0          0          0          0          0          0          0          0  msmgpio-dc  26 Edge      aw8624\n261:          0          0          0          0          0          0          0          0  msmgpio-dc  30 Edge      tas256x\n273:          0          0          0          0          0          0          0          0  msmgpio-dc  37 Level     nq-nci\n283:          1          0          0          0          0          0          0          0  msmgpio-dc  43 Edge      bq2597x charger irq\n305:          0          0          0          0          0          0          0          0  msmgpio-dc  58 Edge      tas256x\n321:          0          0          0          0          0          0          0          0  msmgpio-dc  69 Edge      8804000.sdhci cd\n379:          0          0          0          0          0          0          0          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n380:          1          0          0          0          0          0          0          0   PDC-GIC 162 Edge      pwr_event_irq\n381:          0          0          0          0          0          0          0          0   PDC-GIC 518 Level     ss_phy_irq\n382:          0          0          0          0          0          0          0          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n383:          0          0          0          0          0          0          0          0   PDC-GIC 332 Level     kgsl-3d0\n384:          0          0          0          0          0          0          0          0   PDC-GIC 336 Level     HFI\n385:          0          0          0          0          0          0          0          0   PDC-GIC 337 Level     GMU\n389:          0          0          0          0          0          0          0          0   PDC-GIC  64 Level     limits_sensor-00\n390:          0          0          0          0          0          0          0          0   PDC-GIC  65 Level     limits_sensor-01\n391:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n392:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n393:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n394:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n395:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n396:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n397:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n398:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n399:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n400:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n401:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n402:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n403:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n404:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n405:          0          0          0          0          0          0          0          0   PDC-GIC 165 Edge      dwc3\n407:          0          0          0          0          0          0          0          0  pmic_arb 101777627 Edge      qpnp_rtc_alarm\n408:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n410:          0          0          0          0          0          0          0          0  pmic_arb 75563225 Edge      qg-vbat-low\n411:          0          0          0          0          0          0          0          0  pmic_arb 75628761 Edge      qg-vbat-empty\n412:          0          0          0          0          0          0          0          0  pmic_arb 75694297 Edge      qg-fifo-done\n413:          0          0          0          0          0          0          0          0  pmic_arb 75759833 Edge      qg-good-ocv\n414:          0          0          0          0          0          0          0          0  pmic_arb 16777417 Edge      chgr-error\n415:          0          0          0          0          0          0          0          0  pmic_arb 16842953 Edge      chg-state-change\n422:          0          0          0          0          0          0          0          0  pmic_arb 17825994 Edge      otg-fail\n426:          0          0          0          0          0          0          0          0  pmic_arb 18088138 Edge      high-duty-cycle\n427:          0          0          0          0          0          0          0          0  pmic_arb 18153674 Edge      input-current-limiting\n429:          0          0          0          0          0          0          0          0  pmic_arb 18284746 Edge      switcher-power-ok\n430:          0          0          0          0          0          0          0          0  pmic_arb 18874571 Edge      bat-temp\n431:          0          0          0          0          0          0          0          0  pmic_arb 19005643 Edge      bat-ov\n432:          0          0          0          0          0          0          0          0  pmic_arb 19071179 Edge      bat-low\n433:          0          0          0          0          0          0          0          0  pmic_arb 19136715 Edge      bat-therm-or-id-missing\n434:          0          0          0          0          0          0          0          0  pmic_arb 19202251 Edge      bat-terminal-missing\n437:          0          0          0          0          0          0          0          0  pmic_arb 19923148 Edge      usbin-collapse\n438:          0          0          0          0          0          0          0          0  pmic_arb 19988684 Edge      usbin-vashdn\n439:          0          0          0          0          0          0          0          0  pmic_arb 20054220 Edge      usbin-uv\n440:          0          0          0          0          0          0          0          0  pmic_arb 20119756 Edge      usbin-ov\n441:          0          0          0          0          0          0          0          0  pmic_arb 20185292 Edge      usbin-plugin\n443:          0          0          0          0          0          0          0          0  pmic_arb 20316364 Edge      usbin-src-change\n444:          0          0          0          0          0          0          0          0  pmic_arb 20381900 Edge      usbin-icl-change\n446:          0          0          0          0          0          0          0          0  pmic_arb 21102797 Edge      dcin-uv\n447:          0          0          0          0          0          0          0          0  pmic_arb 21168333 Edge      dcin-ov\n448:          0          0          0          0          0          0          0          0  pmic_arb 21233869 Edge      dcin-plugin\n450:          0          0          0          0          0          0          0          0  pmic_arb 21364941 Edge      dcin-pon\n451:          0          0          0          0          0          0          0          0  pmic_arb 21430477 Edge      dcin-en\n452:          0          0          0          0          0          0          0          0  pmic_arb 22020302 Edge      typec-or-rid-detect-change\n454:          0          0          0          0          0          0          0          0  pmic_arb 22151374 Edge      typec-cc-state-change\n455:          0          0          0          0          0          0          0          0  pmic_arb 22216910 Edge      typec-vconn-oc\n457:          0          0          0          0          0          0          0          0  pmic_arb 22347982 Edge      typec-attach-detach\n458:          0          0          0          0          0          0          0          0  pmic_arb 22413518 Edge      typec-legacy-cable-detect\n460:          0          0          0          0          0          0          0          0  pmic_arb 23068879 Edge      wdog-snarl\n461:          0          0          0          0          0          0          0          0  pmic_arb 23134415 Edge      wdog-bark\n463:          0          0          0          0          0          0          0          0  pmic_arb 23265487 Edge      aicl-done\n464:          0          0          0          0          0          0          0          0  pmic_arb 23331023 Edge      smb-en\n466:          0          0          0          0          0          0          0          0  pmic_arb 23462095 Edge      temp-change\n468:          0          0          0          0          0          0          0          0  pmic_arb 185663709 Edge      sdam-sts\n469:          0          0          0          0          0          0          0          0       sde  12 Edge      dp_display_isr\n470:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\nIPI0:       521        269        398        456        391        548       1283        599       Rescheduling interrupts\nIPI1:        50         89         89         89         88         89         69         72       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         0          0          0          0          0          0          0          0       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm7150ac/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    5 root      0:00 [kworker/0:0H]\n    6 root      0:00 [kworker/u16:0]\n    7 root      0:00 [mm_percpu_wq]\n    8 root      0:00 [ksoftirqd/0]\n    9 root      0:00 [rcu_preempt]\n   10 root      0:00 [rcu_sched]\n   11 root      0:00 [rcu_bh]\n   12 root      0:00 [rcuop/0]\n   13 root      0:00 [rcuos/0]\n   14 root      0:00 [rcuob/0]\n   15 root      0:00 [migration/0]\n   16 root      0:00 [cpuhp/0]\n   17 root      0:00 [cpuhp/1]\n   18 root      0:00 [migration/1]\n   19 root      0:00 [ksoftirqd/1]\n   21 root      0:00 [kworker/1:0H]\n   22 root      0:00 [rcuop/1]\n   23 root      0:00 [rcuos/1]\n   24 root      0:00 [rcuob/1]\n   25 root      0:00 [cpuhp/2]\n   26 root      0:00 [migration/2]\n   27 root      0:00 [ksoftirqd/2]\n   28 root      0:00 [kworker/2:0]\n   29 root      0:00 [kworker/2:0H]\n   30 root      0:00 [rcuop/2]\n   31 root      0:00 [rcuos/2]\n   32 root      0:00 [rcuob/2]\n   33 root      0:00 [cpuhp/3]\n   34 root      0:00 [migration/3]\n   35 root      0:00 [ksoftirqd/3]\n   36 root      0:00 [kworker/3:0]\n   37 root      0:00 [kworker/3:0H]\n   38 root      0:00 [rcuop/3]\n   39 root      0:00 [rcuos/3]\n   40 root      0:00 [rcuob/3]\n   41 root      0:00 [cpuhp/4]\n   42 root      0:00 [migration/4]\n   43 root      0:00 [ksoftirqd/4]\n   44 root      0:00 [kworker/4:0]\n   45 root      0:00 [kworker/4:0H]\n   46 root      0:00 [rcuop/4]\n   47 root      0:00 [rcuos/4]\n   48 root      0:00 [rcuob/4]\n   49 root      0:00 [cpuhp/5]\n   50 root      0:00 [migration/5]\n   51 root      0:00 [ksoftirqd/5]\n   52 root      0:00 [kworker/5:0]\n   53 root      0:00 [kworker/5:0H]\n   54 root      0:00 [rcuop/5]\n   55 root      0:00 [rcuos/5]\n   56 root      0:00 [rcuob/5]\n   57 root      0:00 [cpuhp/6]\n   58 root      0:00 [migration/6]\n   59 root      0:00 [ksoftirqd/6]\n   61 root      0:00 [kworker/6:0H]\n   62 root      0:00 [rcuop/6]\n   63 root      0:00 [rcuos/6]\n   64 root      0:00 [rcuob/6]\n   65 root      0:00 [cpuhp/7]\n   66 root      0:00 [migration/7]\n   67 root      0:00 [ksoftirqd/7]\n   69 root      0:00 [kworker/7:0H]\n   70 root      0:00 [rcuop/7]\n   71 root      0:00 [rcuos/7]\n   72 root      0:00 [rcuob/7]\n   73 root      0:00 [kdevtmpfs]\n   74 root      0:00 [netns]\n   76 root      0:00 [kworker/u17:0]\n   77 root      0:00 [kworker/u16:1]\n   78 root      0:00 [ipa_usb_wq]\n   79 root      0:00 [msm_watchdog]\n   80 root      0:00 [spi_wdsp]\n   81 root      0:00 [qmp_npu_qmp_low]\n   82 root      0:00 [qmp_npu_qmp_hig]\n   83 root      0:00 [qmp_aop]\n   84 root      0:00 [kworker/6:1]\n   85 root      0:00 [oom_reaper]\n   86 root      0:00 [writeback]\n   87 root      0:00 [kcompactd0]\n   88 root      0:00 [crypto]\n   89 root      0:00 [kblockd]\n   90 root      0:00 [kworker/7:1]\n   91 root      0:00 [irq/147-arm-smm]\n   92 root      0:00 [irq/148-arm-smm]\n   93 root      0:00 [irq/156-arm-smm]\n   94 root      0:00 [irq/33-tsens-up]\n   95 root      0:00 [irq/34-tsens-cr]\n   96 root      0:00 [irq/35-tsens-up]\n   97 root      0:00 [irq/36-tsens-cr]\n   98 root      0:00 [edac-poller]\n   99 root      0:00 [system]\n  100 root      0:00 [ipa_power_mgmt]\n  101 root      0:00 [transport_power]\n  102 root      0:00 [ipa_pm_activate]\n  103 root      0:00 [devfreq_wq]\n  104 root      0:00 [cfg80211]\n  105 root      0:00 [irq/112-qpnp_lc]\n  142 root      0:00 [kswapd0]\n  143 root      0:00 [ecryptfs-kthrea]\n  147 root      0:00 [kworker/1:1]\n  178 root      0:00 [kworker/3:1]\n  185 root      0:00 [irq/116-wled_ov]\n  186 root      0:00 [irq/118-wled_fl]\n  187 root      0:00 [irq/117-wled_pr]\n  188 root      0:00 [irq/161-arm-smm]\n  189 root      0:00 [irq/162-arm-smm]\n  190 root      0:00 [irq/42-smp2p]\n  191 root      0:00 [irq/43-smp2p]\n  192 root      0:00 [irq/44-smp2p]\n  193 root      0:00 [mem_share_svc]\n  194 root      0:00 [irq/163-arm-smm]\n  195 root      0:00 [cdsprm-wq]\n  196 root      0:00 [cdsprm-wq-delay]\n  197 root      0:00 [irq/164-arm-smm]\n  198 root      0:00 [hwrng]\n  199 root      0:00 [kworker/4:1]\n  201 root      0:00 [diag_real_time_]\n  202 root      0:00 [diag_wq]\n  204 root      0:00 [DIAG_USB_diag]\n  205 root      0:00 [diag_cntl_wq]\n  206 root      0:00 [diag_dci_wq]\n  207 root      0:00 [MODEM_CNTL]\n  208 root      0:00 [MODEM_DATA]\n  209 root      0:00 [MODEM_CMD]\n  210 root      0:00 [MODEM_DCI]\n  211 root      0:00 [MODEM_DCI_CMD]\n  212 root      0:00 [LPASS_CNTL]\n  213 root      0:00 [LPASS_DATA]\n  214 root      0:00 [LPASS_CMD]\n  215 root      0:00 [LPASS_DCI]\n  216 root      0:00 [LPASS_DCI_CMD]\n  217 root      0:00 [WCNSS_CNTL]\n  218 root      0:00 [WCNSS_DATA]\n  219 root      0:00 [WCNSS_CMD]\n  220 root      0:00 [WCNSS_DCI]\n  221 root      0:00 [WCNSS_DCI_CMD]\n  222 root      0:00 [SENSORS_CNTL]\n  223 root      0:00 [SENSORS_DATA]\n  224 root      0:00 [SENSORS_CMD]\n  225 root      0:00 [SENSORS_DCI]\n  226 root      0:00 [SENSORS_DCI_CMD]\n  227 root      0:00 [DIAG_CTRL]\n  228 root      0:00 [DIAG_DATA]\n  229 root      0:00 [DIAG_CMD]\n  230 root      0:00 [DIAG_DCI_DATA]\n  231 root      0:00 [DIAG_DCI_CMD]\n  232 root      0:00 [CDSP_CNTL]\n  233 root      0:00 [CDSP_DATA]\n  234 root      0:00 [CDSP_CMD]\n  235 root      0:00 [CDSP_DCI]\n  236 root      0:00 [CDSP_DCI_CMD]\n  237 root      0:00 [NPU_CNTL]\n  238 root      0:00 [NPU_DATA]\n  239 root      0:00 [NPU_CMD]\n  240 root      0:00 [NPU_DCI]\n  241 root      0:00 [NPU_DCI_CMD]\n  242 root      0:00 [DIAG_RPMSG_DIAG]\n  243 root      0:00 [DIAG_RPMSG_DIAG]\n  244 root      0:00 [DIAG_RPMSG_DIAG]\n  245 root      0:00 [DIAG_RPMSG_DIAG]\n  246 root      0:00 [DIAG_RPMSG_DIAG]\n  247 root      0:00 [kworker/u16:2]\n  248 root      0:00 [kworker/u16:3]\n  249 root      0:00 [kworker/u16:4]\n  250 root      0:00 [kworker/u16:5]\n  251 root      0:00 [kworker/u16:6]\n  253 root      0:00 [kworker/u16:8]\n  254 root      0:00 [kgsl-workqueue]\n  255 root      0:00 [kgsl-mementry]\n  256 root      0:00 [kgsl_worker_thr]\n  257 root      0:00 [kgsl_low_prio_w]\n  259 root      0:00 [kworker/u16:9]\n  260 root      0:00 [irq/149-arm-smm]\n  261 root      0:00 [irq/87-arm-smmu]\n  262 root      0:00 [kworker/7:2]\n  263 root      0:00 [qseecom-unreg-l]\n  264 root      0:00 [memory_wq]\n  265 root      0:00 [irq/165-arm-smm]\n  266 root      0:00 [irq/150-arm-smm]\n  267 root      0:00 [irq/151-arm-smm]\n  268 root      0:00 [kgsl-events]\n  269 root      0:00 [qcrypto_seq_res]\n  270 root      0:00 [irq/166-arm-smm]\n  291 root      0:00 [scsi_eh_0]\n  292 root      0:00 [scsi_tmf_0]\n  293 root      0:00 [ufs_pm_qos_0]\n  294 root      0:00 [ufs_clk_gating_]\n  295 root      0:00 [kgsl_devfreq_wq]\n  296 root      0:00 [ice-set-key]\n  297 root      0:00 [ufs_clkscaling_]\n  298 root      0:00 [spi2]\n  299 root      0:00 [irq/167-arm-smm]\n  300 root      0:00 [spi0]\n  301 root      0:00 [bond0]\n  307 root      0:00 [kworker/5:1]\n  308 root      0:00 [kworker/2:1]\n  309 root      0:00 [uas]\n  310 root      0:00 [k_ipa_usb]\n  313 root      0:00 [msm_vidc_worker]\n  314 root      0:00 [pm_workerq_venu]\n  315 root      0:00 [irq/158-arm-smm]\n  316 root      0:00 [irq/168-arm-smm]\n  317 root      0:00 [irq/169-arm-smm]\n  318 root      0:00 [irq/170-arm-smm]\n  319 root      0:00 [cam-cpas]\n  320 root      0:00 [qcom,cam_virtua]\n  321 root      0:00 [irq/171-arm-smm]\n  322 root      0:00 [qcom,cam170-cpa]\n  323 root      0:00 [kworker/u16:10]\n  324 root      0:00 [irq/172-arm-smm]\n  325 root      0:00 [cam_cci_wq]\n  326 root      0:00 [cam_cci_wq]\n  327 root      0:00 [cam_cci_wq]\n  328 root      0:00 [cam_cci_wq]\n  329 root      0:00 [irq/173-arm-smm]\n  330 root      0:00 [irq/174-arm-smm]\n  331 root      0:00 [irq/175-arm-smm]\n  332 root      0:00 [irq/176-arm-smm]\n  333 root      0:00 [irq/86-qcom,tem]\n  334 root      0:00 [irq/94-qcom,tem]\n  335 root      0:00 [irq/389-limits_]\n  336 root      0:00 [kworker/0:1H]\n  337 root      0:00 [irq/390-limits_]\n  338 root      0:00 [kworker/6:1H]\n  339 root      0:00 [irq/83-bcl-lvl0]\n  340 root      0:00 [irq/84-bcl-lvl1]\n  341 root      0:00 [irq/85-bcl-lvl2]\n  342 root      0:00 [irq/95-bcl-lvl0]\n  343 root      0:00 [irq/96-bcl-lvl1]\n  344 root      0:00 [irq/97-bcl-lvl2]\n  345 root      0:00 [kworker/6:2]\n  346 root      0:00 [dm_bufio_cache]\n  347 root      0:00 [irq/32-KRYO L3-]\n  348 root      0:00 [mmc_clk_gate/mm]\n  349 root      0:00 [mmc_clk_gate/mm]\n  350 root      0:00 [irq/48-8804000.]\n  353 root      0:00 [cds_recovery_wo]\n  355 root      0:00 [irq/177-arm-smm]\n  356 root      0:00 [uaudio_svc]\n  358 root      0:00 [apr_driver]\n  359 root      0:00 [irq/47-mmc0]\n  365 root      0:00 [ipv6_addrconf]\n  375 root      0:00 [irq/259-aw8624]\n  376 root      0:00 [irq/321-8804000]\n  377 root      0:00 [kworker/u17:1]\n  378 root      0:00 [mmcqd/0]\n  379 root      0:00 [irq/283-bq2597x]\n  381 root      0:00 [irq/410-qg-vbat]\n  382 root      0:00 [irq/411-qg-vbat]\n  383 root      0:00 [irq/412-qg-fifo]\n  384 root      0:00 [irq/413-qg-good]\n  385 root      0:00 [irq/414-chgr-er]\n  387 root      0:00 [irq/415-chg-sta]\n  388 root      0:00 [irq/422-otg-fai]\n  390 root      0:00 [irq/426-high-du]\n  391 root      0:00 [irq/427-input-c]\n  392 root      0:00 [irq/429-switche]\n  394 root      0:00 [irq/430-bat-tem]\n  395 root      0:00 [irq/431-bat-ov]\n  396 root      0:00 [irq/432-bat-low]\n  398 root      0:00 [irq/433-bat-the]\n  399 root      0:00 [irq/434-bat-ter]\n  400 root      0:00 [irq/437-usbin-c]\n  401 root      0:00 [irq/438-usbin-v]\n  402 root      0:00 [irq/439-usbin-u]\n  403 root      0:00 [irq/440-usbin-o]\n  404 root      0:00 [irq/441-usbin-p]\n  405 root      0:00 [irq/443-usbin-s]\n  406 root      0:00 [irq/444-usbin-i]\n  407 root      0:00 [irq/446-dcin-uv]\n  408 root      0:00 [irq/447-dcin-ov]\n  409 root      0:00 [irq/448-dcin-pl]\n  410 root      0:00 [irq/450-dcin-po]\n  411 root      0:00 [irq/451-dcin-en]\n  412 root      0:00 [irq/452-typec-o]\n  413 root      0:00 [irq/454-typec-c]\n  414 root      0:00 [irq/455-typec-v]\n  415 root      0:00 [irq/457-typec-a]\n  416 root      0:00 [irq/458-typec-l]\n  417 root      0:00 [irq/460-wdog-sn]\n  418 root      0:00 [irq/461-wdog-ba]\n  419 root      0:00 [irq/463-aicl-do]\n  420 root      0:00 [irq/464-smb-en]\n  421 root      0:00 [irq/466-temp-ch]\n  422 root      0:00 [irq/468-sdam-st]\n  430 root      0:00 [irq/74-thr-int-]\n  431 root      0:00 [irq/99-thr-int-]\n  438 root      0:00 [irq/75-sig-tx]\n  439 root      0:00 [irq/76-sig-rx]\n  440 root      0:00 [irq/380-pwr_eve]\n  441 root      0:00 [irq/379-dp_hs_p]\n  442 root      0:00 [irq/382-dm_hs_p]\n  443 root      0:00 [irq/381-ss_phy_]\n  444 root      0:00 [irq/178-arm-smm]\n  445 root      0:00 [usb_bam_wq]\n  446 root      0:00 [rq_stats]\n  447 root      0:00 [irq/179-arm-smm]\n  448 root      0:00 [irq/180-arm-smm]\n  449 root      0:00 [irq/181-arm-smm]\n  450 root      0:00 [irq/182-arm-smm]\n  451 root      0:00 [irq/183-arm-smm]\n  452 root      0:00 [irq/184-arm-smm]\n  453 root      0:00 [irq/185-arm-smm]\n  454 root      0:00 [irq/186-arm-smm]\n  455 root      0:00 [irq/187-arm-smm]\n  456 root      0:00 [irq/188-arm-smm]\n  457 root      0:00 [irq/189-arm-smm]\n  458 root      0:00 [irq/190-arm-smm]\n  459 root      0:00 [irq/191-arm-smm]\n  460 root      0:00 [drm_dp]\n  461 root      0:00 [irq/160-arm-smm]\n  462 root      0:00 [irq/192-arm-smm]\n  463 root      0:00 [irq/243-esd_err]\n  464 root      0:00 [sdm_dp_audio_no]\n  465 root      0:00 [hdcp_1x_1]\n  466 root      0:00 [hdcp_tz_lib]\n  467 root      0:00 [dp_hdcp2p2]\n  468 root      0:00 [crtc_commit:115]\n  469 root      0:00 [crtc_event:115]\n  470 root      0:00 [crtc_commit:166]\n  471 root      0:00 [crtc_event:166]\n  472 root      0:00 [crtc_commit:174]\n  473 root      0:00 [crtc_event:174]\n  474 root      0:00 [crtc_commit:182]\n  475 root      0:00 [crtc_event:182]\n  476 root      0:00 [pp_event]\n  478 root      0:00 [rot_commitq_0_0]\n  479 root      0:00 [rot_commitq_0_1]\n  480 root      0:00 [rot_doneq_0_0]\n  481 root      0:00 [rot_doneq_0_1]\n  482 root      0:00 [rot_fenceq_0_0]\n  483 root      0:00 [rot_fenceq_0_1]\n  484 root      0:00 [rot_fenceq_0_2]\n  485 root      0:00 [rot_fenceq_0_3]\n  486 root      0:00 [rot_fenceq_0_4]\n  487 root      0:00 [rot_fenceq_0_5]\n  488 root      0:00 [rot_fenceq_0_6]\n  489 root      0:00 [rot_fenceq_0_7]\n  490 root      0:00 [rot_fenceq_0_8]\n  491 root      0:00 [rot_fenceq_0_9]\n  492 root      0:00 [rot_fenceq_0_10]\n  493 root      0:00 [rot_fenceq_0_11]\n  494 root      0:00 [rot_fenceq_0_12]\n  495 root      0:00 [rot_fenceq_0_13]\n  496 root      0:00 [rot_fenceq_0_14]\n  497 root      0:00 [rot_fenceq_0_15]\n  498 root      0:00 [sb-3]\n  499 root      0:00 [ngd_rx_thread3]\n  500 root      0:00 [ngd_notify_sl3]\n  501 root      0:00 [irq/249-NVT-ts]\n  502 root      0:00 [nvt_fwu_wq]\n  503 root      0:00 [nvt_ts_workqueu]\n  504 root      0:00 [irq/115-qpnp_fl]\n  505 root      0:00 [irq/114-qpnp_fl]\n  506 root      0:00 [irq/113-qpnp_fl]\n  514 root      0:00 [kworker/1:2]\n  515 root      0:00 [kworker/0:3]\n  516 root      0:00 [kworker/0:4]\n  599 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm7150ac/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1108.382028,3.69460676,145.57320908544054,32.83675833292939,7.613419006385132,225.568691789\r\n1,576000,2133.160405,3.703403480902778,163.64570712373637,19.180194860224123,13.034278422189017,117.20560959\r\n1,768000,2846.083789,3.705838266927083,175.69394531996892,15.43396597946715,16.19804011053231,87.845747623\r\n1,1017600,3772.673769,3.7074231220518867,191.04119887393972,12.660499663719566,19.746456035728986,66.271043829\r\n1,1248000,4628.343979,3.7086089575320513,208.7292796541538,11.275632325212081,22.17170556732372,54.020367166\r\n1,1324800,4913.232317,3.708659659571256,212.611083286832,10.819117733919127,23.107244615355505,50.886894355\r\n1,1497600,5555.061772,3.7093094097222226,224.0938052879445,10.0860329624223,24.786752227702323,45.00808467\r\n1,1612800,5982.578731,3.7094362171378967,229.92125758857864,9.608771069738115,26.01789533599677,41.791573213\r\n1,1708800,6338.903116,3.709564089419476,234.7725949473443,9.260010699420922,26.997808978302135,39.442468579\r\n1,1804800,6695.412303,3.7097807529920215,251.0554614280206,9.375095365908175,26.666395406398326,37.342726235\r\n6,300000,2332.437677,7.774792256666666,208.22672880847566,22.32137101223567,11.200028880975106,107.19743397\r\n6,652800,5079.44248,7.781008700980392,265.91260298239524,13.091173475485451,19.09683654167064,49.231113263\r\n6,806400,6278.094473,7.7853354079861115,291.0228478007535,11.592383331610478,21.565884499203204,39.833241339\r\n6,979200,7622.880839,7.784804778390523,334.1400489311157,10.962520775158078,22.80497388579818,32.808161758\r\n6,1094400,8523.405271,7.788199260782163,370.1301256259745,10.861031200731293,23.01807216824559,29.343818427\r\n6,1209600,9419.743783,7.787486593088625,395.0124651912956,10.48877954228719,23.83499424237921,26.553034313\r\n6,1324800,10308.853243,7.781441155646135,431.96804852056283,10.480944339417027,23.852812485588064,24.263239782\r\n6,1555200,12113.576897,7.789079794881688,541.8874178409386,11.189742839849883,22.341889673253107,20.649571242\r\n6,1708800,13307.782391,7.787794002223784,621.564055569149,11.683694097598506,21.397342134401278,18.797248639\r\n6,1843200,14348.025712,7.784302144097222,701.456797242667,12.230020256313226,20.441503346729796,17.435172493\r\n6,1939200,15105.740181,7.789676248452969,774.5895037161541,12.828725173225003,19.48751700767417,16.561966192\r\n6,2169600,16895.316618,7.787295638827434,997.9595897728279,14.778334061991464,16.916656434433794,14.808549578\r\n6,2208000,17196.31311,7.788185285326087,1015.9318718706845,14.782123616690624,16.9123196695313,14.550309943\r\n6,2304000,17946.877243,7.789443247829861,1100.9673875372912,15.349804174824394,16.286852728064858,13.942106141\r\n"
  },
  {
    "path": "results/sm7150ac/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1465.5767472013831, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1390.250855444, 1170.6218027979999, 1293.651237373, 1395.5370173229999, 1217.828072892, 1235.087389644, 1382.229947493, 1194.3336989279999, 1253.23458687, 1378.500461305, 1259.479570452, 1185.4718463959998, 1370.418672972, 1238.769571304, 1212.8603810369998, 1378.2494168699998, 1224.57770713, 1240.017916716, 1383.5155550059999, 1279.349565632, 1176.3437593319998, 1375.20250038, 1251.8768110310002, 1199.927311479, 1387.515365496, 1322.3103379059996, 1175.0939751720002, 1369.2337080400002, 1278.103117242, 1172.380329015, 1391.972833064, 1274.1845370260003, 1191.9371317500002, 1338.36458553, 1334.298880569, 1171.130151552, 1353.462538012, 1300.178758835, 1171.183590912, 1386.080160768, 1364.0167143840001, 1171.503678976, 1314.5258833350001, 1341.82687056, 1157.98216776, 1338.05961639, 1318.3324965959998, 1169.3708304680001, 1270.244254209, 1389.997671096, 1167.90696936, 1293.60054604, 1352.2716659760001, 1172.5937756490002, 1331.264953482, 1370.4811576020004, 1186.659690324, 1270.3601781989998, 1392.5433228080003, 1170.8350478160003, 1277.894580352, 1379.558104818, 1173.448385244, 1223.35196322, 1382.3556649019997, 1199.6609168720001, 1258.333399804, 1370.5436422320001, 1165.563785466, 1279.0005486080001, 1371.4110051149999, 1233.603172967, 1212.9710681069998, 1388.693259906, 1221.741663312, 1217.96738404, 1375.57819342, 1281.842405244, 1169.7159905200003, 1382.589839038, 1254.3763025520002, 1204.9809914100003, 1376.88254544, 1228.21259301, 1215.3803762579998, 1355.0742185880001, 1302.55080027, 1159.28545106, 1375.8796400399997, 1262.09266959, 1165.965471588, 1375.6405944899998, 1347.0492682679999, 1169.7159905200003, 1343.032948101, 1317.147748114, 1163.1953009600002, 1384.8187791359999, 1279.175206656, 1173.074442105, 1314.705531663, 1345.499636684, 1154.1731059199997, 1340.5443832000003, 1328.777292012, 1167.16268466, 1357.184932642, 1388.693259906, 1162.950567183, 1293.482782514, 1366.4434527160001, 1170.1422068140002, 1326.078989573, 1354.8807262560001, 1161.540441784, 1257.08724834, 1371.848172372, 1176.1644061310003, 1267.5799039049998], \"power_mean\": 1278.768396498689, \"energy_millijoules\": 6393.841982493445, \"energy_joules\": 6.393841982493445}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 225.568691789, \"elapsed_ns\": 225568691789, \"power_samples\": [191.40475799600017, 33.30929988000025, 203.13560609200022, 170.48210643600032, 28.195882521000158, 210.71732707000024, 150.80873413200038, 28.745911416000354, 265.64922347400034, 201.83814438800005, 43.746967060000316, 241.04648669400035, 159.99348075900048, 47.71829173800029, 226.50085050400025, 141.79800508800054, 29.617929693000406, 259.25267890000055, 114.71014076000029, 30.696676100000104, 258.0123856800001, 154.83700975200054, 61.041629544000216, 238.34217933200034, 129.89076948400043, 95.8868451100002, 254.03099425600044, 88.28650046400048, 29.338527370000065, 243.59190153200052, 155.43325636800046, 70.12607509500049, 254.9546617200001, 120.94072436400029, 93.56248706400038, 242.35089788400046, 89.6462587140004, 123.58105146600042, 249.92617070000028, 63.68339989400033, 80.67842011200037, 244.57761140000048, 106.71346953500051, 111.71764546000009, 251.25380325300057, 81.87983573600013, 156.08925020400034, 252.72664223600032, 44.06842313600032, 77.97052019600028, 254.6979111100004, 29.833789814000284, 114.38834996400033, 260.4435485100005, 71.56259917000034, 143.27407699200035, 259.3978726800003, 42.71096866200037, 184.8007916700003, 253.00527459600016, 41.46221277600034, 115.57689694400028, 255.03870579000045, 64.68187399600038, 157.33373605400038, 208.22961507600053, 38.80183063200025, 181.8881440800003, 258.3520527750004, 33.639309220000314, 225.32242012400047, 239.5226523510005, 32.336204039999984, 154.60620051500018, 202.95571977600025, 31.137013944000273, 192.6308233090001, 167.75532969600022, 32.3903574900005, 225.00823597000067, 243.43161195600055, 23.42059419500015, 161.23642250400053, 197.8014507090004, 30.642641795000145, 192.44689776500013, 170.48210643600032, 32.3903574900005, 227.93112416400027, 218.79638346000047, 37.874415000000454, 249.92617070000028, 188.7985476360002, 41.19285021400037, 217.42521077100014, 161.23642250400053, 25.641093836000437, 236.93899123800043, 120.82432418400003, 42.00707293800019, 258.99521550500026, 176.88009100800014, 30.750433306000332, 243.52816714700043, 156.08024906700052, 77.6768683600003, 245.94551968500036, 120.88252427400062, 34.34296518500014, 235.4449511600003, 86.92686116400023, 32.162853936000374, 251.0383989840002, 148.13946334000025, 80.39751890400044, 254.8903916700001, 115.49271730300029, 105.13448003600024, 239.29388617200038, 89.36269127600053, 48.96793864000006, 267.14754076800045, 140.48822005600027, 84.20201384000029, 242.76466189900043, 103.8163248920007, 107.86231330000055, 239.54745737800044, 83.01807998400022, 55.493084120000276, 242.09685132000027, 33.47694846000013, 97.07711362800046, 252.94139350000023, 90.89674562100026, 128.68627765200017, 232.81381870100017, 55.80491470800007, 155.79112689600038, 251.0383989840002, 26.904402402000414, 108.93654093000055, 256.85569508000026, 31.028826384000013, 142.9786199360001, 236.7857402360005, 53.08450358400046, 159.88685984000017, 234.01458518700042, 42.601709772000504, 199.15656240299995, 250.01490814800036, 23.098724931000334, 150.75336656000013, 214.7488198380006, 44.94176312000036, 170.32452702, 196.37547715600022, 34.77987552000036, 201.6418045400003, 255.03870579000045, 29.56389538800022, 146.42186250000032, 217.23417849000043, 39.182150064000325, 176.84967250000022, 193.7654696780005, 26.958041268000215, 209.53299207200052, 148.13946334000025, 37.38572964000036, 235.57170584000028, 214.49920175200032, 32.71472277000021, 186.31041560000062, 192.33965584800035, 45.1055494240004, 198.9717456750002, 146.65872949000004, 36.19146633000037, 245.81814046800014, 205.1251777610005, 52.49570315900041, 240.6654465500003, 174.21390793200044, 44.94176312000036, 215.93378477000033, 149.68402985600028, 35.59256992000019, 262.91183456500016, 110.39236392000021, 23.956859253000403, 238.05306106000057, 166.3924288940002, 52.88046034000013, 224.80413712400014, 125.9778941160007, 95.8868451100002, 256.5153158100002, 106.4835827400002, 25.426184095000508, 248.49405184000034, 64.9309234440002, 59.350262285000326, 253.58218016400042, 135.16506562800032, 94.52578035000056, 247.06249863900052, 81.59834099800014, 135.03165678500022, 241.96950150000043, 68.67733854000016, 64.73745562600038, 240.53854191300024, 119.0839230920003, 93.10823542800017, 251.1896523480002, 86.81384616100036, 144.1097975800003, 249.79810679000047, 54.281714884000394, 86.30189269600032, 249.35086821200048, 28.260968328000217, 97.24802882000017, 260.5077848200003, 90.83991423600014, 137.64416142000027, 250.93370668600028, 41.298782712000275, 171.4476270480004, 241.2703836420003, 55.52935818900005, 120.50372343600043, 245.7865328520004, 33.368800625000176, 140.07559361400013, 215.92703890200028, 37.33161722000045, 185.86093393000033, 249.67037124900048, 34.77987552000036, 215.80913594400022, 237.96149659600042, 28.36891798800025, 153.36171436000018, 215.86449479700013, 29.123181638000233, 182.00970658000028, 176.75888483200015, 34.72588144000042, 212.08374770000023, 226.16978771400022, 38.80183063200025, 158.3315538080003, 205.43775597400008, 33.09296379000034, 204.31605979200026, 170.30103256400025, 36.13713445500048, 231.52851072000044, 224.92973588800032, 34.88842032000048, 256.2586575, 207.9811857440004, 30.588607490000413, 205.68230149700003, 155.84132898800044, 51.46631346000049, 243.27355645000034, 129.71522025200034, 37.928806350000286, 253.7102716400002, 184.43507919000035, 40.9753673160003, 258.9307670300004, 153.2358311080004, 64.5154141400003, 232.90009965000036, 115.5506792980002, 47.598782488000325, 255.01860218000024, 98.5476649020004, 50.27211254000031, 254.8903916700001, 137.535629986, 74.89635918000022, 259.01148660000035, 120.7664225560004, 97.07711362800046, 249.8621387450005, 85.45444445600015, 40.9753673160003, 248.3664349440005, 143.81656900500025, 80.06032197600052, 241.58843165400026, 97.29771374400048, 112.67583040500017, 245.75428713300016, 93.3891100740002, 159.82693400000016, 263.7641381780004, 41.135352648000435, 89.07901766400028, 246.55217787600031, 96.56436805200042, 128.3358916680004, 253.6072978000002, 83.01807998400022, 142.91977120000024, 254.63397065000004, 38.47568298400006, 95.71008475500048, 242.31950173300038, 38.584305788000165, 125.89858002500046, 242.9222425200005, 60.74486335200004, 155.79112689600038, 240.25354431000028, 35.920085580000205, 188.41239837600028, 255.29536410000014, 34.77987552000036, 138.94827584500013, 227.66139330800047, 43.850228368000444, 171.32701448600028, 205.43775597400008, 39.7783727540002, 194.8096279370002, 257.7085595400001, 33.3145877000004, 232.7739072720001, 218.41171988000042, 41.734502934000375, 177.9111224640003, 198.73444754800016, 26.63537860500037, 211.89714860400022, 164.84897620200059, 28.153295462000187, 244.4503508280004, 226.10676741900033, 45.426276711000355, 181.48735261000024, 187.0677390440003, 46.19135043600022, 215.62200248800036, 148.08001369000021, 47.81768990400019, 245.62690791600016, 203.88754900500044, 41.734502934000375, 249.35086821200048, 179.1864512850002, 44.61447096800043, 213.01436716800026, 151.99271043800013, 40.866625867000266, 239.16710056900024, 122.01103088100035, 36.73367058000031, 240.2211172040004, 176.81964371200047, 49.99804081900038, 254.76218116000018, 153.17644945400025, 72.1767771350003, 258.9307670300004, 115.37709055400023, 27.77630203400031, 244.2592963960003, 77.57773165400044, 57.88057918800018, 262.3958120680004, 142.69144843000026, 87.77520000400023, 248.1365596500002, 93.2752094040004, 117.83812690200011, 243.0192725960003, 65.9003964320002, 59.129455771000266, 255.93766966500016, 126.85266587400042, 107.51763066000035, 251.51007789400023, 89.36269127600053, 136.04637710800034, 254.76218116000018, 54.06133734200034, 162.1955995340004, 239.96698169700016, 21.47422537200032, 100.93612845900043, 256.2127956800002, 90.66971152400015, 144.9998658200002, 228.64921255500053, 37.11433075000036, 162.0157730860003, 236.30592435600033, 47.653368656000566, 112.71386796900015, 258.68960847000017, 51.50685179800007, 157.03531598100062, 214.24990410000032, 44.98913183400032, 175.2429208980002, 244.60721927400027, 55.41919222200022, 205.24919503100023, 248.1365596500002, 38.36706018000041, 141.32074035300025, 200.16042079600015, 40.866625867000266, 178.0323286400003, 190.91439485900014, 25.6015345120004, 214.38060998300034, 248.2642951910002, 35.811700455000164, 254.63397065000004, 208.04337280400046, 49.72368742100048, 196.3635168250005, 184.51889090000032, 22.830592402000093, 214.31818482800054, 147.90196961000038, 32.01183876000027, 245.75428713300016, 206.61662782200005, 43.41975069200021, 203.82554037000023, 170.05949738200025, 43.47438013700025, 230.03568561700013, 132.32059979200017, 24.405983553000624, 252.15027102800036, 194.50228126300044, 22.49216643600039, 245.49952869900017, 153.0573800550003, 61.741485048000186, 244.32309025600057, 133.44720597000014, 34.39690009500032, 251.95814729200038, 98.31949773000042, 42.06136306200051, 246.80750213700026, 158.2120094400002, 76.08840854000005, 251.7660235560004, 119.05289634000042, 90.26958303100014, 252.08612012300023, 88.0599423360004, 38.308709010000484, 248.04722867200053, 56.5563133200003, 87.77520000400023, 249.09506876100022, 116.62175885400029, 99.80346417000032, 246.9989133930003, 93.10494250500051, 135.87011481200057, 255.93766966500016, 46.24128465300032, 83.97640609200062, 248.96733322000046, 112.56055998000033, 108.5915020500006, 251.85179274400025, 87.89038728000037, 142.62461748800024, 254.56970060000026, 37.005826980000165, 98.03892278400053, 248.83959767900046, 34.50907016000019, 118.96805905300016, 253.28660673000013, 64.48665062100031, 159.4679935840004, 218.16170958000043, 26.742932826000242, 182.7657866450004, 248.45606268700044, 25.440243056000327, 137.3501947680004, 234.05324977600026, 32.174021400000356, 150.45643031200007, 208.85343652400024, 24.030236355000397, 197.36000562400022, 250.71859918200016, 42.274773555000365, 206.36718613400012, 233.73701310000047, 22.93779029899997, 162.25533640200047, 208.91568325400021, 36.62528545500027, 205.18718639600024, 171.1808756850005, 43.52265576000036, 227.17617334800048, 220.5159260400003, 42.601709772000504, 180.30658158000028, 204.88009787800024, 39.56274873200027, 209.1608264360002, 155.3637955310005, 40.863062490000175, 243.0192725960003, 121.66207102500039, 33.585374310000134, 245.43567536400042, 182.91148593000025, 51.35662246200059, 214.19365464700013, 153.0573800550003, 64.2936576880004, 245.56305458100042, 124.20889623700032, 28.58426372000031, 246.93500038800016, 176.30431169200028, 32.82275196000046, 262.71828470100036, 156.96936415500045, 78.53201747300045, 253.26178683200033, 112.4830890510002, 41.680212810000285, 243.0192725960003, 82.51096937200032, 42.00707293800019, 257.3054274800004, 145.11902118000035, 91.46389369900044, 259.7988676050004, 109.98918468000033, 111.08386664000022, 248.11120115200038, 76.16297643000053, 55.10749414600036, 258.4161707450003, 34.455076080000254, 99.34683655200024, 245.8504458570003, 95.59594618500023, 125.49082855100028, 252.02229819700005, 65.62246482000046, 147.6665350750004, 250.46256213600032, 31.795780380000224, 99.23275296600036, 248.32832714600022, 96.79235252900025, 146.24417466000045, 224.74149918000035, 55.1436357030002, 155.43325636800046, 242.51037804500038, 47.489328780000506, 99.5075730450003, 262.2790008760003, 35.75764720500047, 150.21869820800043, 224.61557754000023, 58.94000869800038, 167.23484356900008, 239.80879955400042, 40.645342302000245, 214.13122949200033, 260.91204025100046, 40.97220243000038, 147.6665350750004, 211.33369204800033, 40.05036614700043, 177.5471923520006, 186.70095667600026, 39.72386225900027, 216.73850857200023, 250.4853083090004, 37.11433075000036, 242.8283962840003, 205.00423409800032, 39.995855652000046, 184.3743358500003, 172.54817865000018, 39.560610315000304, 212.76522427200052, 145.17835188000026, 35.86603233000028, 248.11120115200038, 197.1856059270001, 36.46256845500034, 191.54208346800033, 169.63719838600036, 47.06200029300021, 205.00147848400047, 150.2738369010001, 21.688659144000212, 245.3718220290002, 194.2118989410003, 44.341306824000185, 241.52475674400057, 168.33498350100012, 49.8335414510002, 227.05045593900036, 138.6024899700003, 91.46389369900044, 262.20226220400036, 95.59594618500023, 40.54012197900033, 240.2211172040004, 154.1810159160002, 66.90129300800027, 247.72802240000055, 132.02752440800032, 88.85245953600042, 259.6555736700004, 92.99104183500026, 40.42734226800053, 247.72802240000055, 59.10593361000019, 75.80811082000037, 253.00527459600016, 125.4528512520003, 107.2877438650005, 238.4431473540003, 91.34782799600043, 122.99965088400018, 258.4161707450003, 35.648983455000234, 74.50453075500059, 241.08001198800025, 112.42524600600018, 118.90997810800036, 252.1083049800004, 94.00902967600041, 138.47739389200024, 258.3520527750004, 46.022614527000314, 173.51560191600038, 239.58626778600046, 36.73442809000039, 112.32972280500053, 250.3573354780001, 80.75385678400016, 151.46276895300048, 217.84903603000043, 46.131949590000204, 183.8865104700003, 243.17676366400065, 40.699632426000335, 121.42963029900011, 262.08527289200015, 34.455076080000254, 150.15918888800047, 207.42277783600048, 38.258158140000205, 199.59765124800037, 252.9659156600003, 25.06380426400051, 220.59097869500033, 229.63611417600032, 17.29938901800051, 163.3194721010002, 202.27554976800025, 40.37687003500014, 202.33230971900025, 165.9110932430001, 43.35886945600055, 224.56889426800035, 223.0621651270003, 33.20643986500022, 258.48061922000034, 208.91568325400021, 31.40692803600018, 203.63588978400048, 155.4236022260004, 41.7293195580005, 234.9389074760004, 138.19016626200028, 55.474133604000144, 258.22315582500005, 178.70036367000034, 36.40823658000045, 205.9963077810005, 153.88258621200043, 66.62336139600029, 242.5737855870002, 125.27783696400024, 28.260968328000217, 241.20703527000046, 179.67253890000006, 48.201199940000606, 243.74992696000072, 157.67359881600055, 70.48231872000042, 255.616351935, 111.00337210500015, 42.87457684600031, 249.15910071600047, 84.83307915400019, 46.95238416300026, 262.20226220400036, 143.58009201500022, 88.7393258880004, 250.0786709040001, 110.94558873000028, 108.30406812000047, 238.53252070000053, 71.63616136000041, 49.655143074000534, 254.18473948000042, 53.400770512000236, 94.01439554700028, 247.21722675200044, 105.73696709000046, 120.03949454400049, 249.3749798700003, 65.34453320800026, 156.55778252400046, 251.70187265100003, 40.59077233200037, 99.23275296600036, 253.47908729000028, 94.97644229800062, 119.92351186000019, 247.8807601990004, 65.40023378800038, 159.10905316800017, 237.29273369000043, 34.12999832000037, 100.42177805100027, 242.60392751600034, 31.63359774000014, 140.67193385400037, 224.67853836000018, 46.941497496000466, 160.4124551130003, 206.18237193300047, 33.8591929600002, 198.17108416500014, 254.2037415450004, 33.96745944000031, 145.82878986500032, 219.0258054650003, 27.883974900000112, 174.81906333600045, 202.21391829600043, 36.57153297000036, 208.66396777200043, 253.00527459600016, 45.803663334000476, 229.46840378500042, 217.84903603000043, 45.09834786300053, 183.94756692000055, 183.84786938500065, 41.734502934000375, 214.00669931100038, 165.5500142190001, 32.88171834500031, 258.09458938000034, 200.9117034110002, 41.298782712000275, 188.7985476360002, 177.2117957220005, 48.36552118800023, 214.99843792400043, 147.24924294000039, 31.63359774000014, 261.8797895710004, 124.98624637800049, 36.29985145500041, 237.35590435800032, 172.2458977130002, 33.909817815, 221.6440738800004, 144.88230690000023, 82.27415981400031, 242.5737855870002, 100.40975521200039, 37.65740746000051, 234.55961847200024, 165.20969898600038, 58.63221539500046, 247.6004055040005, 135.70361896800046, 99.00429252000049, 252.8771831200006, 87.55069550400026, 40.15910759600024, 251.5738998200004, 71.80358147000038, 65.31984050100027, 255.616351935, 126.52576407600031, 93.84383659500031, 246.1316629760006, 97.80568168200034, 129.23082890700016, 248.90362963400048, 68.06446658500045, 76.94772269400028, 243.49540581600058, 37.877838708000354, 95.20389682200016, 250.54945921400008, 84.66387972800021, 139.1919130680003, 251.31795415800025, 54.8677959810002, 157.44737405400042, 247.2808711680002, 37.877838708000354, 100.3648237250004, 249.05518006800025, 81.99266507600032, 149.80304849600043, 230.564080848, 44.333274138000434, 171.96640443800038, 246.89802048000047, 43.24977207200027, 118.4726847640004, 250.10138981600016, 35.323549455000375, 142.0931588000003, 211.14691483200022, 27.39903181200043, 182.4614273800005, 242.15802479200056, 38.04091253200022, 208.4158573480006, 242.41287308400047, 39.5063793610002, 162.95946296500028, 198.24123354400035, 41.35335268200038, 192.9534398100002, 181.2436775150004, 36.68003674000056, 217.5465552750004, 222.75921389500036, 30.326994264000177, 252.74909164400037, 209.9068647530005, 31.028826384000013, 200.7159397000005, 156.43148789100042, 33.20643986500022, 222.8220555700002, 136.71151096100016, 40.863062490000175, 252.81330202400022, 205.8723712140004, 40.26812858600033, 200.72635173900017, 156.2521958030004, 62.54651697500026, 244.98968437800022, 126.46756640400031, 37.22283452000033, 254.12079902000005, 183.84786938500065, 46.8430491000006, 249.09506876100022, 158.85591309300048, 78.13894054000048, 250.3347079500004, 122.38252908800041, 104.27485205000039, 243.62266638800043, 84.83307915400019, 37.65740746000051, 258.09458938000034, 149.56531639200034, 75.47227156000008], \"power_mean\": 145.57320908544054, \"energy_millijoules\": 32836.75833292939, \"energy_joules\": 32.83675833292939, \"coremark_score\": 1108.382028, \"coremarks_per_mhz\": 3.69460676, \"ulpmark_cm_score\": 7.613419006385132}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1172.113383546, 1298.5786586, 1363.834153864, 1182.81134447, 1305.104695264, 1383.2633218170001, 1173.5232715180002, 1348.169694744, 1393.949893778, 1176.23668008, 1288.369629136, 1345.7006909059999, 1169.264190038, 1324.859424444, 1329.932056804, 1176.3437593319998, 1354.8189557160001, 1375.7543976, 1178.84751974], \"power_mean\": 1281.130301126158, \"energy_millijoules\": 6405.65150563079, \"energy_joules\": 6.405651505630789}}, \"576000\": {\"active\": {\"elapsed_sec\": 117.20560959, \"elapsed_ns\": 117205609590, \"power_samples\": [128.77915808000034, 119.57526565200055, 268.20544446900044, 114.56710882900029, 58.30072181100036, 267.02758319600025, 175.69856275800043, 88.22978822400046, 265.2718363840004, 147.07119886000055, 119.86537144000044, 265.78928353600054, 106.69408362000058, 63.73898152400034, 273.3522280440002, 58.608442992000164, 96.39345286000048, 271.4647086220002, 114.45148208000023, 137.7709197480001, 271.9845317560005, 98.87902040600034, 76.38710733800008, 265.4011150880003, 50.79266568800017, 114.53673013600041, 268.60031930400055, 106.52156418000027, 138.0654855940004, 261.69781692400056, 80.58490208000035, 170.6631803080004, 270.6816638660007, 49.435761078000496, 111.81085773000041, 276.4828623110004, 110.39236392000021, 161.41624895200016, 248.54343465000034, 74.18388050000021, 174.51648563400045, 253.47908729000028, 63.5981049750003, 118.12443855600031, 268.1464300800003, 45.53018514300038, 162.59945382900037, 246.0040460800003, 68.86497408000037, 193.94975146200022, 261.68623970700037, 57.19583780200037, 226.79869794000047, 275.7654496080006, 49.32607008000059, 170.42164512600039, 229.19469542400043, 52.03947836800012, 209.6610479440003, 207.2365355640004, 56.05960730400034, 227.85030913200035, 256.55080052500034, 42.81310208000036, 170.60271899800046, 231.67637008000042, 47.70823619600014, 217.48395150000033, 195.26764550800021, 61.21654781600023, 232.87713656600044, 248.6075260800003, 54.59223946200041, 174.3049666750003, 227.7668820800002, 42.438101588000336, 225.24421711200011, 184.60064160000047, 61.10550350600056, 240.88931379600035, 235.60942065900053, 46.88691132800045, 277.3306223010004, 223.79870126000037, 55.63952415600011, 220.0901618600003, 173.06392608000033, 57.25118133700016, 248.58379822800043, 150.9808645640005, 61.38254482300022, 272.0493009840004, 214.67840197500027, 55.69474874100024, 229.09021589700046, 178.09283220000043, 87.04016669400016, 251.25380325300057, 147.13064851000036, 60.5235814800003, 266.8981858470006, 208.16999935000058, 66.06721252800025, 231.9923099910004, 167.61140049300002, 98.89020893400038, 265.3363095680004, 132.6255830450002, 46.24128465300032, 265.4011150880003, 188.85984218100043, 64.70892970200043, 278.63360883600035, 153.4652748600006, 102.57052966800029, 266.57452615400007, 128.60360884800048, 48.62740053700031, 257.64444157000025, 89.70561808000025, 63.46135840800025, 273.1570745160004, 158.55660175200046, 107.72920026000065, 269.31381183600024, 113.20734766400028, 143.04611163000027, 269.31381183600024, 87.04115784000032, 80.2955325830003, 274.6551551040002, 148.1990434400002, 123.66315539200036, 273.7437189040004, 113.03393704000018, 140.25889169700008, 271.9845317560005, 68.86497408000037, 95.93777656900033, 258.7541164200002, 141.50933898000017, 111.75307435500054, 272.18164104300035, 102.44044892400052, 159.87381774600044, 279.7405506590003, 73.90387056000031, 94.63496815400026, 257.25841173000026, 48.07897541800048, 128.5293444590004, 275.89579689500056, 106.46425464000049, 154.4791392240004, 278.43369781000024, 62.29642445000036, 191.15973389800047, 267.4926049420003, 49.16139259200031, 140.31798430200047, 271.8564965520004, 108.74433745500028, 167.63495442400017, 240.66534931000024, 54.48207349500012, 199.04266670400034, 271.00965471600057, 53.18039297000041, 141.7458823300003, 260.1381722160004, 55.783754020000515, 178.18301806800037, 223.79870126000037, 43.8961292610004, 202.64660935200027, 263.38742830200044, 51.87444464000055, 232.81381870100017, 259.08995039000047, 46.777176248000615, 178.18301806800037, 228.94222464000018, 55.72846996000021, 210.71556734200044, 266.3908833190003, 57.08543454500045, 235.41943553100032, 243.33244474500043, 52.03947836800012, 180.55001908000008, 206.6778087480002, 62.04767176700011, 210.65326113700007, 178.03195417500024, 64.73296940400019, 244.41598672200007, 240.47447299800024, 61.271785242000306, 196.44633901500038, 197.6862490000001, 55.52935818900005, 240.44424250200018, 173.88100467700042, 54.42684890999999, 254.97437626500027, 228.39697936600032, 65.5113493040003, 265.4659206080005, 200.10840703800022, 65.95609701200033, 222.3828083750002, 172.88231726400022, 54.37190752800029, 279.80601079400026, 141.50933898000017, 57.69307817800018, 256.08434788000045, 189.74974304099987, 66.06721252800025, 231.70046105400047, 170.21440530300015, 48.95611759600047, 271.9845317560005, 128.66192486000023, 56.72188199199991, 264.09830667300025, 187.14673823100043, 55.58458277400041, 244.19198531700044, 149.3818323810001, 100.02192345300045, 270.6816638660007, 118.29856166000036, 59.32726153200019, 263.96914661400024, 175.51677582200045, 81.59834099800014, 269.05454178000036, 149.26300027200023, 115.49271730300029, 255.03870579000045, 111.55908348600019, 54.26145835800003, 258.68960847000017, 81.55264326400061, 94.52124089200015, 263.77524051000023, 136.24062900800027, 123.13918124800011, 263.58133440600045, 115.23192148800013, 154.3599511800005, 266.4451288050004, 71.18875050000042, 99.73627108600022, 255.82745228000022, 127.06811872100025, 119.45928296800048, 273.0276143520002, 86.70146606400021, 164.96911418400032, 268.9895576400004, 61.908208142000376, 102.28428377100045, 264.56030500800034, 121.77859015500053, 130.9592339370006, 275.4394138490004, 94.79843951000021, 162.17964865500016, 274.0694946320002, 55.783754020000515, 112.02123458400001, 259.4766927100004, 51.709410912000294, 144.17158844500022, 267.69220760400026, 80.13445263800031, 170.11995869200018, 259.99223876500014, 50.51771815000029, 208.04337280400046, 269.6429673680002, 58.000146354000435, 145.41506616000015, 244.44698181900026, 77.7565278960003, 178.0008748920004, 216.97335728000053, 59.5824224640005, 220.82951508000042, 277.06701148800016, 64.62185388800049, 160.99685918800037, 243.07735885800003, 53.07034564800051, 184.27505403000032, 217.0356991800004, 47.5857589910006, 235.16633890500043, 279.53909602800013, 60.82846218900022, 163.42205604000037, 243.07735885800003, 55.783754020000515, 176.69812595200028, 216.9106940300003, 55.562901288000376, 236.46891003000042, 266.5203997020003, 65.97871175400041, 269.1841768080001, 232.4720663960004, 59.91462969600025, 201.34397905700007, 193.53564910400064, 57.80348143500032, 241.81060718200024, 173.82030527200027, 55.562901288000376, 267.68704599000034, 232.5984960640003, 62.851100614000416, 219.76414944000044, 202.71129289800024, 56.611597380000376, 249.63101691600014, 171.33874423300017, 45.14709082200034, 270.4218229630003, 212.94029034200048, 44.71595138100042, 262.40804229000037, 183.1768478700003, 72.19499418000032, 250.80573385500043, 152.92846906800037, 50.51771815000029, 275.44110471000045, 219.45088236000015, 52.534579552000196, 261.17021721000015, 184.2953920400007, 80.07068980500048, 255.8915110800001, 147.84290304800038, 65.67816540000035, 267.7519706550004, 113.8727538530004, 56.72188199199991, 263.51658836100046, 165.88842991200022, 83.92614009000022, 263.71949492800036, 149.02503057300032, 115.14553981500035, 264.7543892320002, 112.45609958399996, 60.68940067200015, 270.16231561700033, 184.09201967000035, 99.56482095000024, 249.11927149800022, 127.12667585600047, 114.07440078400009, 255.8915110800001, 111.44369402700022, 68.25144912000042, 273.9390505520005, 67.0617153200003, 102.39872329200057, 266.05660411700023, 117.8343327680002, 126.99314538000044, 258.36773034000043, 95.98609600800023, 164.9091996120003, 275.44110471000045, 61.96350473800021, 107.38416138000025, 270.7499100800003, 114.04634259700015, 146.4808635300003, 264.89103005300035, 82.85402702400029, 172.54817865000018, 260.97666734600034, 60.772940034000385, 112.65632155500043, 267.8868267720002, 103.35779773400031, 150.21426810600042, 250.82640236800034, 76.2306572930006, 189.42801714000052, 266.12113647100045, 58.000146354000435, 124.40306520600052, 279.53909602800013, 69.72006527500048, 167.33386152000003, 244.0641593070004, 67.0617153200003, 185.3331778000006, 262.53741543000046, 52.68475567400037, 228.5229340650003, 268.86377821600036, 56.64353770400021, 163.3020370920001, 244.00057406100063, 53.985901839000235, 193.33537366500013, 211.51417491700045, 48.94172861400057, 225.7923123060002, 279.2121699740003, 60.49589871700027, 172.60875910500022, 240.0930472170005, 51.397042155000236, 208.97761077000018, 189.44330544800027, 50.07819729100015, 229.69931289600027, 275.1783841920005, 58.22119015800013, 172.51909963200023, 225.89839460800022, 43.24977207200027, 210.2800629450005, 201.34821849600053, 50.298098864000394, 238.9510921350004, 238.82418749800036, 58.16578714800039, 273.02708355300024, 223.3589441480001, 56.33546058800039, 222.0692445300001, 190.92861475200039, 46.17475879600033, 238.8878029330001, 147.7833937280002, 55.783754020000515, 280.5857297980001, 214.1164672470004, 60.41265612000029, 220.5787082400002, 178.9684565800003, 80.0143346100001, 265.01294664000034, 138.78430392300015, 67.61876755000026, 266.3802638100003, 202.34019506700042, 52.424368672000355, 225.8553326010001, 169.7916908970003, 87.83367504000012, 271.4647086220002, 147.54566162400033, 54.70268863199999, 255.6986742800002, 197.25480553600005, 56.446028708000085], \"power_mean\": 163.64570712373637, \"energy_millijoules\": 19180.194860224125, \"energy_joules\": 19.180194860224123, \"coremark_score\": 2133.160405, \"coremarks_per_mhz\": 3.703403480902778, \"ulpmark_cm_score\": 13.034278422189017}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1186.61761686, 1363.958647324, 1282.059523066, 1179.45205752, 1394.01318298, 1331.4171270400002, 1185.310119864, 1396.556342038, 1296.0963198499999, 1197.1566615049999, 1377.1830419849998, 1270.1578187880002, 1177.4515720000002, 1382.27508716, 1236.2893341360002, 1177.754634747, 1386.126276132, 1297.5164169900002, 1214.05326108], \"power_mean\": 1280.6023705823684, \"energy_millijoules\": 6403.011852911842, \"energy_joules\": 6.403011852911842}}, \"768000\": {\"active\": {\"elapsed_sec\": 87.845747623, \"elapsed_ns\": 87845747623, \"power_samples\": [262.5473898720004, 61.908208142000376, 273.8741629840001, 234.88443337800072, 57.36158459400053, 225.72929201100033, 199.5526694050002, 61.271785242000306, 254.46072975000038, 178.9684565800003, 65.81200348700031, 293.35408018000044, 223.10742374400002, 61.32730739700037, 223.18764524600033, 197.1315812280004, 74.63195396000015, 273.9390505520005, 167.1291150720001, 72.60230868000053, 289.57914846500034, 219.20007552000015, 70.50148553500048, 245.17371609600036, 184.05100416000028, 99.39337081400026, 279.1524165230003, 156.59708488000024, 71.41245593000053, 272.44162296900026, 222.99926378200053, 69.42261984000038, 282.9982062930003, 183.92896708000035, 98.03384885400033, 275.0500840060006, 146.24042811000027, 64.28822169600016, 280.3895069660002, 125.41640845200027, 66.64668861800055, 282.8669287830003, 183.9898287600006, 110.94558873000028, 280.3895069660002, 135.88739193600009, 66.75792277900041, 278.9563718110005, 106.0043012700005, 88.90939096700026, 285.5368783580002, 171.2178939920002, 118.70465013200055, 282.8577554300002, 120.09205044000032, 132.97775022900032, 277.4587446720002, 109.79199550500039, 86.24848061900025, 280.3239873560003, 160.09772694800063, 122.73184518400035, 283.38233052800047, 117.42794614000036, 160.51742463400046, 271.07475780600043, 94.28598659700037, 100.46676870800047, 267.03913112800024, 72.09865248000028, 118.7627905520003, 285.85380121200023, 123.99459864000028, 168.33498350100012, 288.00977369700036, 86.36177428800033, 113.323152704, 273.4834996880004, 62.76491509500033, 146.00665582500028, 287.0233130170004, 122.69374924000044, 166.97242625600006, 283.1947859490001, 74.70497318400044, 195.82156133200033, 291.3927270000006, 85.06080624300012, 143.7576017350002, 299.778101355, 115.0001331540002, 183.84786938500065, 246.28291664500057, 66.78318920500033, 213.7509883620005, 274.26837737600044, 66.83872267500033, 163.24187335200008, 277.5189343850004, 92.93438355300032, 191.66471416200034, 251.55461128000024, 56.20164086300019, 216.5468211450002, 281.9500058670003, 60.3296169810003, 173.57781893100037, 270.8159005140003, 68.25144912000042, 187.75842635700042, 233.51990956800023, 64.12140560000034, 238.50676278900028, 281.9500058670003, 62.87619730500023, 253.09412617000044, 259.2993456650004, 60.274379554999996, 208.7292622780003, 229.49063463000016, 67.86086784000031, 242.34907922400066, 288.13125439500027, 74.36848873600047, 262.0205863220003, 250.37758827600032, 70.96533224000018, 204.94216598800017, 217.71120148000023, 60.08044888800032, 242.5401336560003, 187.7746049600005, 68.0282188800004, 263.32268225700045, 237.17312228500032, 68.53027200000042, 214.36632292800027, 216.4103520800004, 74.4077733400004, 247.68899270300062, 179.96524348000025, 60.274379554999996, 281.6261427660004, 237.17312228500032, 72.60230868000053, 221.2539140800004, 208.41439150400038, 79.78920283100024, 247.43352162100064, 178.4818940800003, 64.06570502000022, 282.53940822600043, 234.27985008000041, 75.4338307640005, 272.37679457100035, 187.8969983640004, 77.07247062200031, 248.86323445200014, 162.92553313800022, 64.12140560000034, 285.3399424620004, 140.91843608000022, 63.93138092700019, 272.44162296900026, 185.2341412300002, 101.94067101900055, 272.44162296900026, 161.74055664000025, 134.2252012620006, 284.1690247180004, 130.44437516000062, 69.03232512000022, 284.1690247180004, 179.7825653600005, 110.88780535500041, 280.1205142350004, 147.1895212320003, 130.3150006140006, 269.9024747140004, 117.37010387600026, 67.84176019500023, 286.8390337680005, 198.24123354400035, 109.58570942000028, 269.3180828500001, 132.99166700900037, 130.49072796600035, 272.18164104300035, 113.4099496160004, 75.77031521200047, 286.5764400960004, 79.8526685940003, 117.34477110300031, 275.5697611360006, 143.40177774000017, 138.1311331320003, 265.9268741270005, 112.28268896000031, 80.75385678400016, 286.6419197520004, 65.25526078400048, 115.92698894400019, 272.76739513600023, 127.84279531000061, 152.52110862300037, 272.1814001920004, 100.62388105500031, 179.88095658000043, 283.90690562600025, 60.10809781900002, 126.40906874400048, 272.70217309600025, 119.08160456600035, 165.48973133400023, 269.64516072200036, 92.8141625300002, 191.60355643800017, 274.7896267220003, 64.12140560000034, 134.5188711490007, 288.13125439500027, 127.59423205700045, 168.39507558300033, 254.09192108000025, 87.54949004000036, 200.6644620540003, 273.0276143520002, 60.163335245000326, 138.1945900290002, 284.02714889500044, 65.25526078400048, 182.48503011000025, 242.50398865500006, 77.08213404000048, 209.7205851760002, 274.98513707400025, 65.53348916100049, 248.9910886380003, 277.3883498080004, 71.87470945500058, 175.7886122560003, 244.98212672000045, 73.17549938000025, 222.74830354400046, 216.0976785300004, 60.163335245000326, 251.27488717600045, 277.3883498080004, 56.1462973280004, 196.6928668080002, 229.1749914840002, 73.1056774050005, 221.6928390100004, 205.87097150800037, 66.50466309000035, 247.49755357600043, 250.31370718000016, 55.12147933200026, 188.95294231100024, 231.6494610240004, 68.80909488000043, 239.7451246440005, 190.1922000960003, 66.61601628500034, 265.6680794290005, 249.8010119920002, 69.32906828000023, 288.9870740800002, 232.7599690560005, 64.84408492000011, 231.8026811030004, 192.9822676400006, 70.29450312000063, 282.4741060800002, 248.69270173800032, 73.62386062000019, 287.7466049060006, 222.41614622800034, 68.86497408000037, 230.43756406800048, 184.74520274800034, 81.10171738000031, 276.02614418200073, 147.01129844800016, 57.944743344000244, 278.7606627920004, 207.05179270800022, 83.2488939780003, 243.141212193, 183.62371752000035, 101.6544251220007, 283.90690562600025, 139.43616870400047, 67.34024143500005, 275.9611380800004, 201.9687792430002, 78.26232328800052, 260.40673933200014, 174.4544095680003, 101.6544251220007, 282.4741060800002, 127.84279531000061, 68.69762304000028, 276.02614418200073, 183.5429165900007, 83.30542779300026, 302.2079947040004, 152.33222245200045, 126.29237341200042, 278.8912473690002, 119.80135014900043, 75.44479181800057, 268.1464300800003, 95.1309224160002, 98.82206608000024, 270.87978239800054, 160.13980236900034, 127.47741808000023, 289.0526722700006, 124.89112946400041, 61.161025661000394, 283.90690562600025, 81.83815785600041, 106.75168857000062, 266.6502490320004, 149.6714889120003, 126.35087107200025, 260.0836382080006, 121.10190278400023, 166.85205098400024, 291.45844353000007, 89.9284739760003, 117.17082611900037, 274.26837737600044, 147.13064851000036, 139.4922030270002, 285.06534514800023, 117.19598077200044, 173.2455348960002, 290.09116512000037, 70.46221040000023, 117.22890706400017, 288.13125439500027, 84.83477623700014, 152.3423514790004, 279.79329141600033, 108.14557212000022, 181.06131220000043, 288.8552014300003, 59.831056502000365], \"power_mean\": 175.69394531996892, \"energy_millijoules\": 15433.96597946715, \"energy_joules\": 15.43396597946715, \"coremark_score\": 2846.083789, \"coremarks_per_mhz\": 3.705838266927083, \"ulpmark_cm_score\": 16.19804011053231}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1183.366350036, 1355.2701610029999, 1396.995706344, 1178.3232935120002, 1288.9859487750002, 1357.8761377939998, 1179.9472212899998, 1317.7151809079999, 1326.692205552, 1178.3232935120002, 1352.72255862, 1394.1386843670002, 1174.6293902279997, 1295.2688735999998, 1348.7638485859998, 1175.0045805119998, 1327.9028273339998, 1324.0855280239998, 1175.7699580009998], \"power_mean\": 1280.6200919998946, \"energy_millijoules\": 6403.100459999473, \"energy_joules\": 6.403100459999473}}, \"1017600\": {\"active\": {\"elapsed_sec\": 66.271043829, \"elapsed_ns\": 66271043829, \"power_samples\": [299.27243744000043, 139.14101499200046, 81.66530233200024, 299.2063656960006, 201.65732892000028, 115.5794552160005, 297.5073672880003, 176.93833509000024, 146.9526044300003, 288.8552014300003, 133.93951693200052, 87.03941801600058, 300.3749839860002, 101.46626277200039, 118.06629813600034, 304.15062076900017, 159.95979780100015, 153.52502208000033, 295.4957740800005, 144.34677657500038, 85.79613008000047, 288.72366691499997, 100.05109507200063, 139.13825347500028, 290.6674739550001, 157.35904877100052, 154.76695538500053, 281.3602668990002, 131.393299414, 196.44633901500038, 306.82003870400035, 81.83815785600041, 136.59386608000023, 298.6760888640006, 141.8642660400003, 171.7016056250004, 290.00793744000066, 107.91497254000024, 197.7480195400003, 287.4178972890004, 83.02557653800045, 154.70714869000017, 291.70426288000044, 139.02037130400026, 171.58075538400044, 287.6047782000003, 107.97269644000016, 211.82566043400038, 283.64444962000016, 89.58771231200012, 155.99874841600058, 305.9537489940001, 83.1384728960004, 180.75664013000028, 274.39563030400063, 94.90270034400032, 211.8880855890004, 280.3169151870004, 83.08216982800036, 163.82703126000047, 302.8866554630006, 84.32577293300028, 192.41428029600024, 268.93036218000043, 107.79982076000033, 228.75295257600033, 286.31350890000044, 88.34399638400032, 256.0362042400004, 304.38663942600033, 87.15296144600029, 205.31417875800025, 265.1596453130005, 91.11518541600026, 235.3279305420001, 227.55444556800057, 81.83815785600041, 263.9132468160003, 285.9713135110005, 76.80123283200055, 205.37630634300035, 258.7833231680006, 78.94560891200035, 245.81245670400062, 234.0602840960005, 85.90894886400042, 266.5853243670001, 278.2965754240006, 78.04565979800009, 197.69197635100045, 248.24430336100045, 76.39878924600043, 250.82640236800034, 209.21709681600032, 80.42518374800056, 285.0118283750003, 268.99513140800013, 76.80123283200055, 220.81466688500018, 248.1801524560001, 74.81703863800021, 254.9917160800003, 209.0303196000002, 80.53784281600042, 288.65773059000026, 266.5203997020003, 82.34609244000012, 299.13995337600045, 242.7885212790004, 89.47858398300014, 252.13205296000024, 188.3397521840002, 80.48165808800036, 290.09116512000037, 168.94595172200025, 92.92788979200031, 284.617956583, 216.95981540000002, 98.76481817500053, 263.9132468160003, 202.89773793400036, 76.28660514700027, 305.5850227320002, 165.04518411200024, 75.09734631600031, 283.64444962000016, 218.44797696000046, 92.08158879300004, 275.9572125960003, 178.05626908000022, 138.96127869900033, 308.05459362400006, 161.019825888, 81.66530233200024, 291.1948999200006, 197.69197635100045, 112.91842893600005, 284.5398202800004, 185.7394783440002, 138.78430392300015, 297.5737201330003, 137.6045730960002, 80.35953270600021, 288.65773059000026, 197.50125415200023, 105.10514728500038, 301.6764269160003, 172.7295836560004, 153.04796350800052, 293.66565834500034, 136.4812328320004, 97.34905406400026, 292.43016893000026, 94.67447827200044, 123.21825774400031, 281.62214870100047, 180.4128681300001, 151.74669839300032, 295.09905120000053, 137.54578353000034, 91.79742122400035, 292.23216373000014, 101.23685194600057, 128.31112699400046, 284.02714889500044, 166.28503814700048, 154.28942192800037, 287.2206051530004, 133.5866361000003, 191.98418428300033, 305.31886737600007, 84.43878793600038, 127.18493269800024, 294.30560544000036, 139.0230141760003, 171.45959447400037, 283.2397425300003, 111.64694898400012, 201.40984996800012, 292.23216373000014, 79.17713908400015, 147.96161651200032, 290.20576452000046, 142.87005313500003, 184.41742912000063, 277.96964937000007, 105.14170407000051, 206.42969832400058, 289.6298714000004, 82.85608688999992, 146.5373714900004, 303.0196144960007, 63.50984179600027, 186.77959962300042, 293.7105211200003, 94.56051372000024, 211.6390252270005, 290.6014186800003, 89.36044062000019, 150.56438403200036, 288.5759692400004, 89.47393059200022, 196.13841662400046, 260.9964730710003, 95.92198278000023, 227.26273949300048, 283.3166322980003, 80.36870940800054, 242.82260042400026, 305.35385193000025, 84.2691201680002, 205.12843320900038, 251.8281676500003, 89.70120228400015, 225.96147437800028, 281.6772087740003, 85.45612344000006, 261.1813195420002, 284.40852344400037, 80.42518374800056, 201.28626933600026, 257.3499410650004, 74.92939217800063, 237.61777786400012, 232.38032411700033, 81.49982471700014, 266.45580798400033, 277.90446575800047, 80.53784281600042, 205.31224469200038, 253.12806728000032, 77.4193309680004, 249.332894872, 224.63906361000022, 72.39158666000003, 266.32629160100055, 279.33524673000034, 80.65079149600024, 210.45486805600035, 249.4802893760002, 82.5154039680001, 251.9395724000001, 206.36835553400033, 84.2691201680002, 277.9110238090002, 275.4394138490004, 84.38242569800036, 298.6760888640006, 236.34775279500013, 77.58792943200046, 259.7510724880003, 199.8023486880004, 84.21275793000041, 284.42102068700024, 160.83995173200015, 82.17678091200037, 299.97717585900045, 228.48044680200042, 90.60970555600011, 254.34914688000026, 193.4215755900002, 83.81643148800026, 296.0739148740006, 165.86315456100033], \"power_mean\": 191.04119887393972, \"energy_millijoules\": 12660.499663719565, \"energy_joules\": 12.660499663719566, \"coremark_score\": 3772.673769, \"coremarks_per_mhz\": 3.7074231220518867, \"ulpmark_cm_score\": 19.746456035728986}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1290.949201668, 1184.0681821560001, 1408.120189155, 1250.494527888, 1174.79014674, 1392.4257332020002, 1305.442914535, 1195.7388172940002, 1361.409641484, 1272.732103524, 1222.014866115, 1392.3624439999999, 1237.5942550439997, 1187.9237540800002, 1392.3624439999999, 1301.303117832, 1203.4991760000003, 1383.158646636, 1271.3109462720001], \"power_mean\": 1285.6684793486843, \"energy_millijoules\": 6428.342396743421, \"energy_joules\": 6.428342396743421}}, \"1248000\": {\"active\": {\"elapsed_sec\": 54.020367166, \"elapsed_ns\": 54020367166, \"power_samples\": [255.77874084500013, 317.26464671600047, 81.55606861500019, 279.0159471420004, 290.9125811300005, 96.26452681200021, 224.4714715590003, 263.53152628600037, 94.56051372000024, 260.9875915580001, 316.5639565600004, 106.26920290500016, 289.43222244000026, 288.18067132000033, 90.83101784700057, 225.83531483800016, 262.23162665600057, 102.19698488000017, 258.18766201500057, 210.26823284900024, 110.17352008500006, 309.48935152200033, 280.2464277180002, 114.36308716800045, 246.73048359200038, 245.13264003800032, 90.49621558400031, 275.1783841920005, 210.0812775130005, 110.11597367100035, 307.5878198800001, 273.5478703140002, 89.87158311600047, 251.29819026000018, 242.53319701800024, 103.28715528000043, 286.9577741910007, 199.8642978480002, 97.3362627610004, 312.92951059200027, 260.7378209220003, 100.39470782400053, 260.8669809810003, 221.91342829600035, 96.8352380160004, 284.2240847910002, 205.99551358200029, 102.31195688000025, 319.10278224900026, 262.4182298130006, 94.11507140500044, 308.7549521250005, 219.3722087450003, 119.19800474600038, 293.4013008000004, 206.1819345580002, 98.80808741200053, 319.30453030500007, 262.23162665600057, 91.5132536550002, 303.75140187300053, 207.4817155430003, 125.41640845200027, 311.29413302800026, 186.8561824760004, 99.47860327800026, 312.99657752700045, 155.34079342400037, 102.15390626200042, 315.33035252000036, 210.01885235800023, 144.93946006500028, 315.53156563200014, 176.20904757000017, 99.49460043600038, 302.24673761500026, 146.23889799200037, 107.19005941500018, 318.00362143000007, 208.84354238400033, 141.0365559300003, 323.3610049940005, 163.08305307900036, 163.40639390400042, 319.37154935100034, 150.43601673100034, 112.39819706400021, 318.00362143000007, 207.6683146390003, 150.1475977140003, 305.55381761800027, 168.4021957460002, 176.30139173100065, 303.5517924250005, 137.309716149, 122.7521277550004, 306.15337227500027, 193.10513601300045, 159.19890263000025, 322.06110536400047, 156.5207924460003, 194.40610405800044, 312.7957206550002, 120.28693158400029, 133.2264821910005, 304.6531368840001, 91.50527576400032, 160.61971180800015, 319.5958083000003, 151.1991700440003, 196.82304530000056, 303.4854838070005, 116.38350567200018, 145.82519517000037, 313.82846812800017, 94.27545585600046, 164.4068034049999, 318.02702292300046, 149.95912695300035, 212.69067225600043, 312.7957206550002, 106.0391366350002, 235.9951790050004, 310.5584254800003, 111.12671711200028, 181.57074891000048, 324.3275501850005, 135.8330793380003, 216.4730153300004, 316.72724193800036, 100.54891396200037, 243.93666105600028, 296.1166797110004, 99.36416375700037, 187.7746049600005, 302.4874365670005, 131.74516508500028, 221.42963329600047, 286.6177621350005, 90.43324166100047, 256.7580088800005, 313.15858098000035, 99.47860327800026, 204.69417732000034, 299.81730440200045, 125.35821078000026, 224.40845126400018, 271.2050764240005, 100.95030928400047, 254.41353588000038, 316.72724193800036, 92.8618884390005, 200.7308324940002, 286.5518258100001, 87.83367969100027, 225.58364273000007, 257.9448280380002, 92.91866506100041, 267.17333424000026, 312.4215674220002, 97.94994613200038, 303.41883339200035, 286.6177621350005, 101.12229378000052, 234.44061059200044, 243.44973977600057, 95.46535516200038, 273.68184632000043, 304.9860021300001, 94.16149130400049, 303.8847027030006, 269.6449793460001, 89.58771231200012, 255.32859303500027, 247.4119864910001, 107.22346982000022, 273.5516176780004, 207.10851735100027, 93.03280363100066, 315.2631666350005, 273.67821760100037, 105.37182846000042, 254.22069908000026, 240.97412823900027, 97.73641093800006, 281.42556904500043, 211.00679158600042, 94.3325846160003, 308.8218404400002, 265.61671414800026, 93.83031030600046, 271.85595893600043, 221.47334830800037, 112.28268896000031, 302.11389761600026, 207.17050403700023, 88.00388240300026, 318.9683986980003, 253.91337062499997, 101.86736360000032, 260.4147547590003, 214.90932623000026, 126.54200538500027, 309.85984962600014, 187.5429514540001, 107.68437296000025, 316.36291017600024, 244.98212672000045, 106.90232872000024, 309.85984962600014, 207.04621114600036, 126.42519140800027, 321.7042437590003, 181.10298081500014, 98.69376653600034], \"power_mean\": 208.7292796541538, \"energy_millijoules\": 11275.632325212082, \"energy_joules\": 11.275632325212081, \"coremark_score\": 4628.343979, \"coremarks_per_mhz\": 3.7086089575320513, \"ulpmark_cm_score\": 22.17170556732372}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1377.6378686639998, 1191.6662309990002, 1330.717147293, 1393.820666128, 1182.556330356, 1265.9054219099999, 1402.3532583759998, 1214.7800489469998, 1303.4953695059999, 1342.574271599, 1169.4433801500002, 1321.6640124960002, 1392.1385984640003, 1175.7869181140002, 1269.662563144, 1389.343363688, 1174.804625782, 1306.0388737120002, 1356.947025932], \"power_mean\": 1292.7018934347368, \"energy_millijoules\": 6463.509467173684, \"energy_joules\": 6.463509467173684}}, \"1324800\": {\"active\": {\"elapsed_sec\": 50.886894355, \"elapsed_ns\": 50886894355, \"power_samples\": [246.1125617460002, 98.06456089200037, 290.53536340500045, 297.2177424320005, 96.87916025800041, 230.60191461700015, 278.6804647890003, 98.75078003200065, 278.88524392000045, 246.17632450200017, 108.35007805500027, 278.68902108800035, 295.45417207400055, 109.94274116700035, 228.10154526600036, 252.6780046800004, 106.90232872000024, 284.02714889500044, 226.67128396800035, 98.06456089200037, 296.9112124960004, 284.9193140050004, 95.80789919400036, 316.49705604800033, 256.19004522000023, 111.99377023200032, 270.75073794900027, 216.1460282500002, 109.6538225730003, 309.6593489940003, 287.07830200500007, 112.9471453790004, 311.16046173600034, 251.3785207650003, 106.84496001000025, 281.16368724300014, 210.81965813000033, 99.02055100500024, 320.53801520000025, 186.0598387600005, 101.23685194600057, 304.78621456200017, 235.5859987400006, 109.56145465500003, 279.8588705010004, 219.92290415500042, 102.77096048000021, 326.91143147000025, 178.50413132500034, 106.6145980250003, 309.85984962600014, 226.54521062400045, 119.85960971400004, 295.61054121600023, 201.7206719300002, 162.8653097280005, 328.0769477700003, 168.10021254700018, 96.43579882800032, 311.22712556800025, 227.97502848600016, 132.8742594180003, 309.4213604280003, 193.85922129000028, 157.53869709900027, 329.2418788800003, 157.76029104600048, 105.65926239000032, 318.9683986980003, 207.05179270800022, 144.5246425350001, 308.28776297100035, 193.73611562700012, 175.75496220300033, 313.5606509640004, 156.34114411800033, 104.30098616000032, 321.5696229180003, 207.9792066260004, 140.68219638000028, 319.7977344760004, 170.64268251600038, 177.12065697000025, 315.12913940800036, 151.31835808800042, 116.03525946400055, 330.5423720400004, 118.58028942000033, 160.25970267200023, 310.3577467280004, 175.84440381000036, 177.24210082500008, 310.9597829840002, 146.1201845280002, 122.51891307200026, 326.37070094000046, 105.63607709000007, 157.53869709900027, 318.02702292300046, 157.64050938800028, 196.57659668400038, 314.05623250600024, 136.54302747900033, 223.8422381520004, 314.5926859570004, 99.13499052600037, 166.64682965100042, 303.3213337980003, 158.93987465800024, 196.51482614400038, 322.61876525499997, 133.05731485200045, 225.3947269060002, 313.15858098000035, 102.8650052300004, 180.8396370600003, 321.5218010460003, 161.38019126400036, 205.6847292360003, 290.12056033000044, 112.07949890000032, 238.15619073600055, 306.7204158080003, 110.66438776000018, 174.27244451200045, 323.71963246500036, 108.17732058000047, 213.49230915300018, 290.12056033000044, 109.30765419600016, 252.47014332000026, 327.0619703700004, 109.53843311400033, 190.0189326550003, 319.9527885500006, 101.6807900800004, 221.11577171300064, 282.32082075500034, 113.43652892400041, 248.50057800200034, 315.22180814400053, 97.83562525600041, 278.49279825600047, 307.08617442000036, 110.72229028000015, 219.87397535000036, 272.96080489800033, 93.76217592000035, 272.05129058400007, 321.45425811600035, 102.8650052300004, 282.4642398780004, 290.18667508000044, 93.99039799200023, 230.34896786400031, 261.2612055360005, 101.62330408000025, 274.4609714890005, 229.0218903550001, 109.36520061000033, 299.3134805520003, 283.5542502000005, 94.04723378400058, 242.05767021600036, 261.2612055360005, 110.46214204800026, 279.5316476820003, 227.65938534000043, 97.72130438000045, 312.1260831040006, 278.4188210550003, 113.9578295160004, 252.8708414800003, 248.4548990000003, 106.72963116000028, 283.5020989120005, 210.69500930400045, 100.43435579600032, 317.53317652800047, 283.5542502000005, 111.53144088000022, 244.4296020090003, 247.02773901900036, 105.19930902000033, 282.20178387200053, 208.2211648800003, 107.05059414000038, 327.9413857200004, 266.7840959040004, 99.93665555100051, 306.9873884560004, 232.66597069200043, 115.60561911400032, 293.9751162600003, 201.59685400800026, 99.36416375700037, 325.07044507000046, 258.7925606160002, 102.65598848000036, 310.69209677200024, 230.06795263200047, 133.93951693200052], \"power_mean\": 212.611083286832, \"energy_millijoules\": 10819.117733919127, \"energy_joules\": 10.819117733919127, \"coremark_score\": 4913.232317, \"coremarks_per_mhz\": 3.708659659571256, \"ulpmark_cm_score\": 23.107244615355505}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1198.869254856, 1320.121568744, 1392.8377163220002, 1187.273227875, 1348.579209978, 1404.4446233299998, 1188.5187774900003, 1300.35438925, 1367.9078939100002, 1189.985715172, 1328.9914456, 1400.669558898, 1190.0398869559997, 1355.212213992, 1389.0262367169998, 1178.279163153, 1302.9604722749998, 1355.0896463259999, 1166.6257170820002], \"power_mean\": 1292.9361430487368, \"energy_millijoules\": 6464.680715243684, \"energy_joules\": 6.464680715243684}}, \"1497600\": {\"active\": {\"elapsed_sec\": 45.00808467, \"elapsed_ns\": 45008084670, \"power_samples\": [294.92437012700043, 122.05278308300058, 261.57785935200036, 275.62428309300026, 113.14701666600035, 304.3199295360005, 335.41550825100035, 119.87959552000052, 239.29286260800018, 296.4885692160003, 117.51318675600032, 259.88991022400023, 265.2274758120004, 97.49236874400049, 282.20178387200053, 321.04969328400057, 108.11953720500037, 241.93029099900036, 274.39061524800013, 111.47353836000025, 271.66062728800034, 254.89091724000014, 111.90591015600035, 303.0196144960007, 313.5606509640004, 106.99316626000018, 334.10842069900036, 268.9295277990004, 112.7735566350002, 279.46606859700046, 240.59199058800004, 121.0040654520003, 308.22087465600043, 302.8550487720004, 134.41577242200015, 333.01193284800024, 268.9295277990004, 115.48945722400026, 279.33524673000034, 236.56725682800038, 124.30705282800022, 321.16541432600025, 201.34889986600047, 121.58665309400021, 328.76803908000034, 266.2667034140004, 110.34675258900029, 287.40730736000046, 227.28048380400037, 119.45239029300046, 318.36315453000043, 203.88449357600052, 116.49948835600048, 321.0979308710007, 250.54388641500032, 126.07444918400051, 293.6917731120002, 229.87814562400035, 161.14015336800026, 336.7088134890005, 206.42442717200038, 123.17796519000012, 326.16788358000053, 242.8749716480006, 119.5106498580003, 310.5584254800003, 222.33265970100024, 162.2040875700004, 332.94391372800055, 185.81505195200043, 112.83151863000035, 314.5926859570004, 239.26580758400064, 137.8406404770003, 321.03044741600047, 208.09675334400026, 167.70584710400044, 332.6045157599999, 166.1369536240004, 114.13159638000025, 319.7977344760004, 141.6252036000003, 146.7735663440003, 332.6045157599999, 202.52385368400041, 166.22463631200003, 321.16541432600025, 175.23687234000045, 128.9789982400007, 336.7088134890005, 129.80854708600032, 154.63887401800025, 315.5573452480005, 199.9263102040004, 182.0178392000007, 317.13003665600036, 167.49593578600047, 214.35954156000048, 335.2726903800003, 129.69125852900038, 172.7902830610003, 327.9553446800003, 172.75627676800036, 189.7628350440002, 328.7125547650003, 158.09995608300005, 214.17237232500042, 335.20455231000005, 120.65439311600039, 174.09047945600037, 325.22151833000044, 179.43784359000028, 197.32163041500007, 333.8442368920005, 147.8266819740004, 222.16462582400004, 326.1001620300003, 118.23132956400036, 183.19611716000054, 342.12024410500044, 177.9953315800003, 209.0303196000002, 323.51699322500053, 135.12619544800032, 241.8664376640004, 327.12975139500054, 102.69266391000042, 177.75220658000035, 331.38261331200033, 109.01873560200033, 220.86448890400038, 305.3197518640004, 123.3728901960003, 257.2211373300004, 324.4625273500003, 121.77815056800046, 188.1673750380005, 333.7764482480002, 114.27214018700033, 216.83469160500022, 298.75451001200054, 129.63276500700022, 236.34775279500013, 328.0906777800003, 123.43138785600013, 294.8826740100003, 329.87587476000044, 114.27214018700033, 232.3168873020004, 299.9205009230004, 105.0606157000002, 269.0602344980007, 325.28923988000065, 120.65439311600039, 291.1102472800003, 314.41624321600034, 110.25996092800005, 229.71708804200034, 286.73147124000025, 115.62917099200035, 272.7046293380006, 256.9774101390003, 114.09819520300039, 300.0165570260003, 314.1479514720004, 107.7156462300004, 245.32440753400056, 280.43130080200035, 112.71589188100029, 278.10035259200004, 245.34477928200022, 108.90334614300036, 303.9206965020003, 305.25292302400044, 114.5041661160003, 240.1205470480004, 271.4662855160004, 112.599967891, 292.4103842000004], \"power_mean\": 224.0938052879445, \"energy_millijoules\": 10086.0329624223, \"energy_joules\": 10.0860329624223, \"coremark_score\": 5555.061772, \"coremarks_per_mhz\": 3.7093094097222226, \"ulpmark_cm_score\": 24.786752227702323}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1167.34308224, 1280.422926216, 1375.5838162839998, 1192.04041698, 1310.4711762240001, 1381.83249126, 1180.33921337, 1346.9709130720003, 1406.7870517999997, 1179.14797588, 1285.7424889259996, 1375.646454228, 1194.8572665039999, 1314.252804024, 1340.35565272, 1187.1105108749998, 1361.162651898, 1385.7300527099999, 1185.6487664], \"power_mean\": 1286.9181953479474, \"energy_millijoules\": 6434.590976739737, \"energy_joules\": 6.434590976739737}}, \"1612800\": {\"active\": {\"elapsed_sec\": 41.791573213, \"elapsed_ns\": 41791573213, \"power_samples\": [160.82172868200018, 240.05675318800036, 338.90426976200024, 124.43815262700014, 268.73538677200054, 326.2499884500007, 129.69125852900038, 201.2259475950002, 343.7598997800005, 155.68253612100034, 236.15723272300033, 333.43645675000016, 124.43815262700014, 268.6055144540005, 328.5771030200003, 119.18096332800042, 224.38739150200036, 308.81932417200005, 145.34808924800018, 242.66069526900037, 298.42253603400013, 108.90334614300036, 274.0695945450004, 337.7449880840004, 123.08100187200034, 225.81312718600043, 317.91332067600024, 139.97286998000027, 249.03180456800033, 288.2938877400002, 115.39690746800056, 297.3502264960007, 333.36831868000036, 112.79948293800044, 229.84339906500009, 302.05624060200034, 120.82922928400012, 263.2723989470003, 284.1301454610002, 121.89472686600038, 298.65012612600026, 340.0011736080003, 115.51289015200041, 234.69701381500022, 296.02436412800034, 128.9789982400007, 263.46666129100026, 264.6436183080002, 114.09819520300039, 290.71457593000036, 330.8395068000002, 114.04041210900027, 233.49011997400044, 306.21799839300024, 120.05395449600019, 279.00802391100024, 258.08233525000037, 116.64197617800028, 299.61805177800034, 319.39388212400036, 115.51289015200041, 337.3957468120002, 299.6548209250002, 108.40786143000014, 280.44300737400044, 250.4798867850002, 123.1976972040004, 310.29073926800015, 311.4163924620002, 125.85373834400025, 346.70757246300036, 291.79348008000056, 127.91379467400043, 296.05032686600043, 241.0658199750003, 135.30299210399994, 325.82997041000044, 200.85330988000032, 128.86152712000057, 340.1360843990003, 261.9777601750004, 120.34525062400053, 299.7507731320002, 243.72656398000072, 124.24885515600045, 332.19709867200004, 208.64805998000043, 123.72327618000031, 341.4358653840004, 270.9450361700003, 120.17059257600044, 294.52693359900013, 235.93181388000062, 162.08394958800068, 328.3616918800001, 204.8150602100004, 119.87959552000052, 324.39486527500026, 238.4013843080004, 122.88637460400037, 315.2492925100005, 228.3266926680003, 171.00590014800014, 344.0354273540004, 178.76747508000062, 114.90983917800031, 333.49676070700025, 245.13264003800032, 129.44797909600038, 339.9313065510005, 212.4226770750006, 174.84424632300033, 343.9668727640003, 180.1878090150003, 117.62928847400008, 332.2651177920002, 230.98731672300028, 155.34079342400037, 337.3278398280006, 207.2872788000002, 178.86948756500033, 331.0290943500004, 176.17064408000033, 125.61957250200044, 337.53226085200026, 139.67548608500033, 159.23977952900032, 322.8212257910002, 206.9760900480003, 200.9785490410004, 320.5591014380002, 165.5937320080002, 124.24885515600045, 346.43358186900036, 137.25178856000025, 158.17998873200054, 329.3901616950004, 200.97712780200027, 198.25520770100024, 320.78021431200045, 161.81927649500017, 230.89055800400024, 338.5633869960002, 125.3270906480002, 177.5087690800001, 326.31776947500043, 190.33886040700054, 212.49352790700027, 328.03494783500037, 171.15451191600027, 237.33004959600044, 342.39352205100045, 126.56665194300035, 182.64647972000057, 338.83939179300023, 175.9658476650004, 220.23676573800026, 325.5057875550003, 139.79372458000057, 233.29995672600057, 314.9531715520004, 118.94798624000032, 181.28601517500056, 337.4724220080004, 167.97948134000058, 222.96156992700026], \"power_mean\": 229.92125758857864, \"energy_millijoules\": 9608.771069738115, \"energy_joules\": 9.608771069738115, \"coremark_score\": 5982.578731, \"coremarks_per_mhz\": 3.7094362171378967, \"ulpmark_cm_score\": 26.01789533599677}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1248.961841712, 1380.5922432, 1230.699776462, 1276.167510488, 1391.947900272, 1203.407293504, 1217.738648296, 1394.357446828, 1258.0146135950001, 1243.7608182319998, 1400.15781348, 1241.155772051, 1287.701129964, 1403.5895142000002, 1195.883510796, 1228.1021146420003, 1395.4023200459997, 1185.43195512, 1251.6235709120003], \"power_mean\": 1286.0366207263157, \"energy_millijoules\": 6430.183103631579, \"energy_joules\": 6.430183103631579}}, \"1708800\": {\"active\": {\"elapsed_sec\": 39.442468579, \"elapsed_ns\": 39442468579, \"power_samples\": [246.0671203390002, 166.98186167400036, 347.66445152400024, 199.2454871910004, 116.15124214800039, 333.3609526380001, 181.2422690000003, 126.73118390600052, 355.3968824070005, 247.49371900400047, 172.1238347220003, 349.10122750100027, 192.93545411700052, 200.7928411290004, 326.7237604350005, 179.76093778500058, 139.44087518000038, 337.05516178400035, 223.92251153700045, 183.5839346000007, 350.1873227450001, 181.2422690000003, 211.1314404120003, 339.6581525380002, 156.74168507000036, 153.9815720310005, 342.32537819300023, 204.5041457740001, 190.3259637780002, 329.80791531000045, 179.82174029500038, 221.47334830800037, 336.0960847770002, 146.17122707100043, 162.96248730900038, 334.3205045300001, 209.76947186700022, 191.62976796600037, 345.1312461150003, 174.68990670000017, 235.90342344900046, 355.46597266200024, 132.88548168200032, 168.16042296900036, 336.6463197360006, 125.3270906480002, 198.25520770100024, 342.25617207200025, 186.25578758700044, 238.43889479400036, 348.9639949140003, 146.17122707100043, 175.80564408000032, 329.67234492000034, 127.92356540800029, 216.08362718000035, 334.3942937310003, 157.86015547700026, 237.1393514040003, 338.08622119200004, 129.2218027880001, 283.81718139600025, 336.3057347080005, 121.48655998200047, 196.7661115110002, 327.9670478600001, 155.02392812400035, 243.70530163200056, 334.46249127600026, 131.88144824400047, 277.25027765200025, 345.19956767700023, 129.1045142310004, 226.7344826880003, 314.8461526380006, 135.71724620400005, 257.9448280380002, 298.0905620560002, 124.0874104030006, 299.48498923800025, 350.1873227450001, 118.77332819200046, 228.03828687600003, 308.21763154400037, 135.6562826820002, 269.6449793460001, 285.0379954150003, 125.2101580260005, 300.85106389800035, 336.9269395140002, 133.17974509900023, 240.59199058800004, 311.97726004400033, 117.8823697080004, 272.11809828200035, 274.44835051400037, 134.30124529800037, 296.88602140800026, 336.85862282400035, 116.35127419000014, 251.13564048000012, 299.05652869300025, 132.35185531200045, 271.98786964000055, 263.0211267320003, 133.06179778900037, 295.5865374930004, 327.9670478600001, 116.17697238200026, 234.40921822300038, 300.35872485100026, 127.50396478800053, 278.7460438740004, 261.65376784100044, 130.40688909300047, 318.58652318400027, 313.7878335090004, 128.33411191200025, 347.3902236400006, 286.20452016000013, 119.93761548800035, 303.3213337980003, 247.30141714800038, 129.16300775300033, 330.6220346700002, 299.25595943700046, 131.9989744800007, 339.79455422100045, 279.7099679280002, 128.9789982400007, 296.8199496640002, 239.5084486110004, 124.43815262700014, 341.02595344800034, 205.74033699300048, 129.92613715600032, 334.524569314, 270.48906853400035, 132.93978861600021, 309.62203918000023, 239.44459527599997, 128.9789982400007, 348.55194437000046, 199.12178791400038, 127.50396478800053, 335.68794870000033, 258.86383795800043, 134.23915388600017, 310.8804138960004, 236.91221114100063, 169.22246700500023, 340.95751780800015, 191.32953163600018, 122.12817914400034, 343.48804532000054, 245.93914750800013, 131.52301575500042], \"power_mean\": 234.7725949473443, \"energy_millijoules\": 9260.010699420922, \"energy_joules\": 9.260010699420922, \"coremark_score\": 6338.903116, \"coremarks_per_mhz\": 3.709564089419476, \"ulpmark_cm_score\": 26.997808978302135}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1183.5364244099997, 1388.8994511140002, 1304.597094084, 1198.0073327849998, 1381.349331456, 1272.1716959910002, 1202.163508559, 1392.8666114110001, 1326.721213919, 1183.5364244099997, 1391.757528618, 1295.50226454, 1217.51613162, 1389.28013385, 1262.9610626039998, 1175.357374511, 1385.1900935920003, 1243.412434917, 1181.1483424500002], \"power_mean\": 1282.946023939, \"energy_millijoules\": 6414.730119695, \"energy_joules\": 6.414730119695}}, \"1804800\": {\"active\": {\"elapsed_sec\": 37.342726235, \"elapsed_ns\": 37342726235, \"power_samples\": [323.80214410000053, 144.9321343600002, 274.58648184000026, 297.82511934800027, 131.5874815920006, 317.4217787550001, 369.04862661400057, 148.46999423800048, 340.8209974800002, 324.9645821400004, 152.90581950300043, 286.48588948500037, 300.49168388400017, 134.1244486420003, 317.2200306990003, 254.7722107900006, 139.49797636500034, 352.51847693000013, 316.1442713730005, 130.75941368500025, 278.35324197000045, 284.9723972250006, 139.26354358000026, 316.324102066, 263.9951099160003, 138.3179774800003, 357.85778674600033, 312.17847315600034, 142.80537311000035, 299.21954653000034, 280.9426067020004, 143.22049520500036, 314.8190256800003, 253.53856596000037, 146.05208948100017, 364.01205232500047, 309.3147747620005, 129.98463067800026, 312.0444459290002, 266.52588805600044, 158.8800786200004, 342.0517489900003, 240.5554992120003, 148.7081330360004, 360.2531479800002, 298.98993794800026, 136.83788442600007, 361.41391531500017, 260.22631123200017, 161.42272743000035, 352.31191729800025, 222.37239720800017, 143.74842073000036, 351.01284879300033, 293.89031325600035, 143.10201942000003, 358.88078774400014, 257.1783819000002, 178.2604562300005, 349.5764290560003, 222.43547697800022, 141.32915862000027, 339.38534917200013, 283.4727302270003, 158.63996978700038, 365.17234508000024, 250.94280368000022, 191.07638650200056, 351.01284879300033, 215.75349372000028, 136.54317697600027, 341.7099759290006, 196.21665669200024, 148.30279077600017, 360.11484681, 249.64492254000038, 192.5600341400002, 364.0815591000003, 203.94520206000016, 144.46029218000035, 352.31191729800025, 176.92102522000027, 170.34010481400037, 360.04551846000027, 232.44257470500042, 202.95779097000036, 358.67333692800025, 198.8740713670004, 231.43039847700038, 353.7529526000005, 165.23158426400028, 172.75627676800036, 357.3051778630004, 236.3395822050004, 207.97202198400055, 354.62577517600016, 203.82070860000044, 236.63093173800053, 356.21338205400025, 158.5577405280003, 189.77311842600034, 354.7764873480003, 214.53398943000047, 214.65899458000058, 357.49790071200005, 195.03835893800056, 227.53319296200016, 368.0525305100002, 146.93378685400035, 184.5161020920002, 346.4297210900004, 206.7976253640004, 209.2710310140003, 365.08127982500014, 183.35370605400044, 241.6400537430004, 362.57444536, 147.17199414800052, 195.03835893800056, 350.1873227450001, 135.24541448100013, 223.44281238200028, 349.49961996700017, 163.81320920700023, 261.2612055360005, 355.73039778600014, 127.51332011200066, 200.48153781600035, 352.44384580800033, 136.4840248960004, 249.56586522000043, 339.0448294080004, 162.57578907200036, 278.02601915100036, 349.5075768960005, 144.21954840000035, 305.1864368960005, 361.0494538800003, 137.84519443000022, 248.19871604800028, 332.4842709000002, 152.06922542800044, 255.9966740600005, 339.0448294080004, 144.1600390800004, 309.28768913600015, 364.87275970500036, 140.50005012000042], \"power_mean\": 251.0554614280206, \"energy_millijoules\": 9375.095365908175, \"energy_joules\": 9.375095365908175, \"coremark_score\": 6695.412303, \"coremarks_per_mhz\": 3.7097807529920215, \"ulpmark_cm_score\": 26.666395406398326}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1186.0801556249999, 1270.6147520120003, 1388.8065043000001, 1187.54140677, 1306.791007398, 1348.3450863519997, 1179.6381529, 1343.445102942, 1394.318778069, 1186.2428726249998, 1293.9668305000002, 1386.078749242, 1183.91631293, 1314.6526922760002, 1357.747302012, 1176.9874065449999, 1343.260999278, 1400.6244737309999, 1180.99066218], \"power_mean\": 1285.7920656677368, \"energy_millijoules\": 6428.960328338684, \"energy_joules\": 6.428960328338684}}}}, \"6\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 107.19743397, \"elapsed_ns\": 107197433970, \"power_samples\": [316.4804029800007, 112.99674220500037, 232.7294669820003, 300.6246429170003, 102.72672732000046, 179.31604380000044, 314.57727767200026, 137.54694227200025, 219.6716213460004, 270.1633295400004, 93.75292827600038, 245.7286705140002, 307.18673674799993, 101.48656977500036, 197.51411839600019, 306.6521828370003, 96.23395745600055, 226.1037918720001, 280.67991310100024, 97.5316604760003, 259.9621965060005, 240.3640879560005, 101.42902430000049, 274.32521458800034, 296.5271192580003, 95.10770457200033, 224.86765746600054, 265.2930505310003, 97.37804786800052, 249.5019247600003, 222.1834813840003, 97.47458781000023, 285.89381510000044, 289.5926594800005, 102.95685171000036, 315.7193922580004, 261.1358458040004, 101.22149168000055, 284.39331425200044, 222.3096409240004, 92.12115838600062, 292.5206921400004, 197.39077908000036, 94.09517903400047, 323.71963246500036, 244.0652514000003, 102.46307222000041, 261.1358458040004, 210.4334213100003, 129.92613715600032, 312.01949743800037, 187.06306830000017, 100.76248808000037, 306.61864224900046, 154.72461678300033, 105.17564883500017, 316.9509181380006, 214.45573122500014, 135.00812918800034, 316.8838990920003, 178.15816302000053, 163.72012777600025, 296.5546409600006, 154.6049537700003, 105.29068197000038, 325.0187009700005, 204.75281348000044, 152.0805613260004, 312.78211249200035, 170.12448970500031, 170.15849599800026, 309.15367421600035, 145.5171922500001, 122.84731122000039, 319.6160634130006, 102.7843322700005, 148.06458348200044, 314.9131125140002, 158.61790426800007, 180.67579617000047, 314.1071779240003, 131.52856741200026, 213.17231715000048, 326.0469929700005, 102.72672732000046, 164.8982739660005, 317.24046393200024, 100.18880728000045, 198.75111909600037, 304.94952152700034, 129.87810220500046, 214.28365778000057, 303.88766515600014, 105.2647054800002, 251.90698768000038, 313.0737499520005, 97.4172209550004, 203.94668063600056, 298.72425795000004, 120.71247225400043, 233.9017498840003, 265.0332096280006, 101.2566829800005, 271.7923592880004, 323.1936920200003, 98.77223166000044, 201.22140462000038, 279.11969460000046, 99.00134799200055, 233.8381941190005, 259.7736696000002, 100.1313212800003, 263.86348264200046, 322.09886553000047, 97.4172209550004, 297.45567910200043, 275.2883853300002, 96.63452134800059, 253.20575942000028, 247.7695997200001, 112.8575044080003, 276.53090593400043, 228.4233919120004, 92.4508511520005, 310.45250512600046, 275.1670692270004, 100.6478108800004, 298.75451001200054, 242.70402291400046, 106.53226312000015, 280.4969990320001, 211.54782945000034, 100.18880728000045, 329.80791531000045, 177.8531938800004, 106.24423566000041, 313.05016694600045, 233.5538933830003, 107.77342960500027, 280.4829772050002, 201.28353220500048, 155.86218444900032, 311.75133603600057, 162.2143538080004, 94.43772306600022, 311.75133603600057, 231.0814940400005, 107.60037580500034, 324.61306625000043, 188.1764303660002, 155.7425214360003, 316.8838990920003, 166.16696142000046, 179.01138777000028, 306.61864224900046, 123.3859259550004, 140.0305055250003, 307.72129065900026, 190.64618926800063, 164.8982739660005, 317.24046393200024, 150.58815426000047, 198.50395783200042, 314.34899785600055, 116.8354901400005, 140.2630315800002, 303.48773378000055, 112.93866126000057, 160.82172868200018, 322.23384269500025, 149.23118853600022, 201.2250819440003, 319.1619549840002, 107.8064047050002, 228.51632155600032, 302.1893182800004, 109.04608656000028, 170.0978560680005, 318.2016794100002, 134.71449015300027, 212.7976576350004, 281.5834475640004, 105.09182980000037, 245.40887071200018, 313.6106782880004, 102.49689834000037, 268.8643652340004, 299.9595059550004, 101.31422845500038, 227.02809904800029, 276.3895687530005, 101.48656977500036, 253.14131094500044, 247.83386977000032, 88.44348457200044, 279.06728639100015, 294.6324300160004, 96.17694396000047, 224.14819660800026, 278.79187727800036, 95.62205498000048, 247.81411233600033, 229.7839691400004, 89.39971344800028, 276.40020271200046, 293.26861144100053, 93.75292827600038, 308.8863316320003, 258.4760257500004, 99.6318596460003, 271.33605687400063, 217.9765107410003, 108.84579972900019, 284.3274375970004, 194.91469890800045, 93.80982343200026, 315.2492925100005, 253.02349479000054, 94.72307866800043, 297.256945479, 221.9945655600004, 122.06974115400044, 297.3895481880004, 201.22140462000038, 93.18192379800053, 304.91946424799994, 155.72277117200042, 103.76184396000053, 306.2848867080004, 227.06260831700047, 133.3563636350002, 306.1842335880001, 175.01501908000023, 161.99981600699994, 315.3162523860001, 149.23118853600022, 101.1068144800006, 311.4163924620002, 205.86462988400035, 147.88600445800057, 304.91946424799994, 172.53751527900044, 167.49593578600047, 305.1196080560003, 144.10052976000043, 210.13360893600043, 301.15716264300045, 107.57532915599995, 156.92151151800044, 308.21763154400037, 172.6588401000006, 176.35314408000022, 314.1741378000004, 137.37241138000036, 206.36212096700046, 318.1152468520006, 115.4218635220002, 154.18567179900037, 309.3814977640004, 101.2566829800005, 179.13318756000035, 312.60406697600047, 127.0440380480004, 211.55697002700026, 314.1741378000004, 97.4172209550004, 252.94829602500022, 323.5316051900004, 94.5363998380003, 203.63638315200046, 297.0281088520003, 125.50263988000052, 219.35775976300056, 273.7947562430004, 90.58321432100047, 255.54536431500014, 306.3847342200004, 99.95915808000063, 292.0580752200003, 286.7773263750005, 92.33659363200036, 228.57931471400047, 269.7723088360003, 100.68240865000053, 267.3708927780003, 214.08003818500038, 110.11235796200026, 298.4890673040004, 286.7773263750005, 96.34857221600055, 225.51281730600022, 255.42901122700027, 95.90770734700027, 263.4749334930002, 229.7839691400004, 103.56400208500031, 310.05113531500047, 275.6153113840003, 101.83125241500056, 312.6480852650004, 234.66060144600056, 102.29073090000043, 281.53307717100006, 211.4226219000002, 86.6422607070001, 311.48351887200033, 188.05336547600018, 116.06087066400005, 308.81932417200005, 239.98126544400043, 99.74671230600029, 315.3162523860001, 216.4866479350003, 140.1487440200001, 316.6821510360005, 167.52932095500023, 96.78736230600043, 311.2153574700003, 141.20488403500053, 108.61472418000017, 324.27515308000056, 198.5026555430004, 142.3311654050001, 315.06851204700024, 165.92549900600034, 171.09381251100012, 303.42096441500007, 133.41726201800043, 116.46767437000017, 304.6528343120003, 189.4048704090003, 161.87955938000027, 307.81627404000005, 155.48289993400044, 182.78913479400012, 316.54776748500035, 127.98951915700013, 128.0407353200003, 313.81206952000025, 90.46936841400043, 163.17797488000042, 311.5748338200003, 159.25869956400038, 200.91537799000025, 288.97577224500014, 115.36366343200007, 227.15429142600033, 307.32028939500015, 93.29600738400018, 164.5677500860004, 315.20289559800017, 101.0270912900005, 211.36965845100008, 282.8149771640001, 111.40964557200027, 237.35737130700045, 312.78211249200035, 99.67231768000033, 260.5496741600002, 316.4327592280006, 104.80380234000017, 206.05122898000036, 278.4640599560005, 99.34531698400019, 241.19364598500033, 242.25645596700042, 103.67903522000006, 277.3715735130004, 321.69358705000036, 98.42826266800034, 207.1005015840003, 274.76523644400027, 97.7608337070003, 254.1826530300002, 238.2975274170003, 103.6216665100003, 278.6741270790003, 212.53262163000045, 93.3531958140004, 312.7149266070003, 264.38410770600035, 108.21071275800023, 259.1914169280003, 244.97885780700017, 108.4993347210002, 280.1691817100002, 202.1467638840004, 92.16550032000055, 319.0097505250003, 257.43646472800015, 96.57721396800025, 295.56049961600047, 230.76466383400066, 115.10680168000044, 295.7593960000006, 187.7463343530003, 96.63452134800059, 319.0097505250003, 154.1259941010003, 88.89821109300033, 303.48773378000055, 213.8297905950003, 121.6615742700003, 301.9228208220002, 187.68511745900037, 152.84626014500031, 321.53920684900027, 157.89717351600007, 95.67930288500042, 315.3162523860001, 130.8817199280004, 134.59580548000054, 308.4179666680004, 181.32231934800052, 165.95587975200033, 308.4179666680004, 155.2433366180005, 199.36918646800018, 313.7451690080004, 112.53298819800034, 142.3905555800004, 296.32804475400053, 172.14993430400045, 156.5618586220005, 313.8383029580002], \"power_mean\": 208.22672880847566, \"energy_millijoules\": 22321.371012235668, \"energy_joules\": 22.32137101223567, \"coremark_score\": 2332.437677, \"coremarks_per_mhz\": 7.774792256666666, \"ulpmark_cm_score\": 11.200028880975106}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1267.401874054, 1207.6944660999998, 1431.1619771279998, 1225.962360698, 1242.511553296, 1420.764693852, 1285.5841470960002, 1272.520655847, 1416.863050476, 1263.392603104, 1302.4758966959998, 1423.4277782099998, 1206.535768904, 1249.181833464, 1407.121401945, 1277.3126054519998, 1270.0342422800002, 1420.6342247480002, 1252.0483791479999], \"power_mean\": 1307.5068164472632, \"energy_millijoules\": 6537.534082236316, \"energy_joules\": 6.537534082236316}}, \"652800\": {\"active\": {\"elapsed_sec\": 49.231113263, \"elapsed_ns\": 49231113263, \"power_samples\": [172.59833363400048, 373.4308952560002, 169.39734196100017, 197.94736845600028, 356.9448169440002, 226.4307284950005, 229.1822949320001, 376.87582063000036, 193.98915114500028, 265.55255787700025, 378.34793804600054, 167.9188612500002, 197.88384116500038, 360.5640350600004, 164.3866762140001, 238.14653601600025, 360.00952508000023, 183.73279090400047, 278.47754742300026, 373.01171640800044, 161.5518256400003, 301.7897431440001, 368.2822107030004, 144.86315742900024, 257.5658378680005, 352.3625801310002, 175.62314408000043, 275.55012777200045, 324.90808858000037, 154.94342059000041, 316.00988782200034, 383.64555063700027, 149.87200742500045, 264.18972908400065, 349.83355541200035, 150.05112080900062, 291.3308631600005, 318.3531716940006, 157.59697188000018, 330.22838116799994, 279.7609913260003, 162.90873044700015, 353.3280721560004, 337.88352924000037, 169.82161523800028, 300.4579400580003, 314.53028692500015, 151.0061877230005, 336.5860567480006, 280.7949915000004, 153.6467268150002, 373.1516819480005, 339.2497853760003, 153.06791387200042, 370.2765847640003, 306.4115227760003, 153.60632449600007, 331.5944003780003, 277.0361876850004, 167.95276280200028, 366.59199610300016, 235.32179310300057, 166.28800299000022, 358.93839804000027, 289.6780776000005, 170.42736417200035, 341.5034778300003, 273.0760375300001, 202.95360112400044, 377.18990093400066, 234.2792050620003, 154.7846020980005, 362.6244119400003, 201.8983345520005, 175.62314408000043, 376.76965219800036, 260.2942640740007, 213.40830038000058, 379.5756577960003, 228.8343688170005, 232.88681320600062, 363.85308358000043, 199.18065389000049, 181.0590565200007, 371.6442705540005, 252.17656685000043, 213.34563713000034, 368.0033512940006, 214.7509102800002, 244.38537987600034, 375.68183595100027, 190.0987129700004, 173.96061918000055, 367.9596815880004, 156.3603228950003, 206.85167851200026, 380.84073151500047, 214.50010343999998, 248.53952196000023, 374.00262546400063, 175.52091004000044, 279.4478488360005, 367.3330507560004, 156.1202140620003, 231.65198378400032, 364.9920909060004, 166.50131723400023, 267.75894079800037, 355.9075628640003, 161.1903903760001, 290.1648721650006, 365.08127982500014, 165.20049103800034, 327.3569927000003, 371.4053426720004, 153.52706380200016, 274.44835051400037, 332.28436660800025, 167.710751651, 292.50053224800035, 314.46326787900057, 149.8122007300003, 336.5860567480006, 376.45521565400054, 160.0141905180003, 277.29806948700025, 333.85303245600016, 156.96013263700024, 311.8432328170004, 303.94825490400035, 153.76669744500032, 335.14746558400043, 281.6974388320002, 160.3149866570002, 387.1560071170002, 330.0313856610005, 158.3177026320002, 324.9645821400004, 290.9788444320004, 178.34101926000062, 348.2707096320005, 269.0555491380005, 159.25869956400038, 372.80212698400055, 323.5993267400006, 145.5171922500001, 375.68183595100027, 283.26109599000006, 158.79808695600013, 352.03036913600044, 251.9933524500002, 149.4101238000003, 381.8245191900003, 218.26848113200003, 150.64796095500037, 375.3320453700003, 262.50314071200023, 184.77392142800045, 358.22812455999997, 258.3506068480001, 222.1207251000003, 388.31699301000026, 215.67131748500015, 155.96233448800058, 376.6296892200005, 179.6545320800003, 189.7854789430005, 358.45416618000013, 237.85120897800016, 218.41617501400037, 366.4529826740004, 203.99895844300022, 268.991540728, 376.6994908080005, 176.69531310000048, 206.66490129600038, 360.5640350600004, 236.27584782000054, 220.7600609550002, 375.3689430120005, 206.4673412320003, 269.12165033600013, 388.52872162600033, 173.04932197500057, 201.8983345520005, 365.54850198300005, 154.82363893200045, 236.5304585170004, 383.01196962100016, 206.77882674900047, 270.1633295400004, 373.65247538600033, 155.9402094940001, 297.4266141000003, 360.4254966000003], \"power_mean\": 265.91260298239524, \"energy_millijoules\": 13091.173475485451, \"energy_joules\": 13.091173475485451, \"coremark_score\": 5079.44248, \"coremarks_per_mhz\": 7.781008700980392, \"ulpmark_cm_score\": 19.09683654167064}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1417.6480394129999, 1352.4295848000002, 1199.401228421, 1414.9168643039998, 1313.6121668760002, 1239.5693467080002, 1409.7830376600002, 1294.0807618200001, 1197.6644199520001, 1416.150866095, 1256.55479436, 1217.480482116, 1409.5896665, 1310.9532339890002, 1238.440598976, 1424.7274561640002, 1277.208289651, 1270.5825802, 1412.12606803], \"power_mean\": 1319.6273413702631, \"energy_millijoules\": 6598.1367068513155, \"energy_joules\": 6.5981367068513155}}, \"806400\": {\"active\": {\"elapsed_sec\": 39.833241339, \"elapsed_ns\": 39833241339, \"power_samples\": [267.4334621400003, 391.8789745970005, 215.79667857000027, 298.5910764600005, 404.9808268560005, 175.21623797000052, 242.59410657600029, 401.8161797540006, 184.53935913700025, 289.3059646600002, 383.01196962100016, 200.04321072600055, 307.6155952880001, 381.61368175800044, 177.68675731500048, 341.7087900380004, 396.05614940000055, 189.66778416400007, 282.94673047400033, 371.0557877080005, 199.9859478300002, 305.0829551400002, 348.9386994720003, 177.86979167500022, 360.7720208200003, 397.13951120000024, 172.62380019000034, 281.5834475640004, 364.6443786530001, 188.55584764200034, 311.6420197050004, 339.9295347560005, 192.32234872400022, 363.4363995800004, 300.8217528780003, 186.9479903230001, 386.94445720500016, 361.9780055800004, 192.5687973400004, 330.16719373, 320.3427744450005, 193.3087767320003, 354.41868060000047, 292.07664212800023, 180.6499896820003, 389.47312380000017, 359.8208420200001, 187.86939924300032, 394.3799738280004, 320.4104365200003, 189.4781500820004, 367.4721828300003, 292.01028928300025, 175.38001908000024, 403.4694939020005, 268.33878944000026, 180.26503120000052, 391.92678610400026, 314.12713627200014, 197.45272824000017, 368.2822107030004, 293.1076712640004, 218.22779355000034, 394.3799738280004, 245.2503071120002, 190.7139642220004, 391.8559106240002, 225.92515969600026, 216.80021178000038, 399.50214514500044, 277.48027107600046, 248.02635033000024, 399.43127791500024, 242.65786933200025, 269.90253747800057, 394.52159861400037, 212.89055799500034, 216.92589513000007, 397.0495513400001, 268.4707678240004, 245.3627763000004, 400.0166236800003, 240.0017871360003, 273.7947562430004, 399.57337767000035, 202.45383425200043, 228.0437778960004, 396.8369399850003, 177.80867575000048, 257.04900876000033, 393.0336281760003, 230.66627255500043, 286.7773263750005, 401.6161000310003, 189.36015853800018, 320.3920460380002, 392.3038567890005, 186.70217609400038, 245.04267973300034, 400.6763825640005, 194.3634573550005, 290.47118370000044, 372.0067626800005, 191.89058848800028, 323.0582489200003, 393.0826862180004, 180.40536342800056, 358.0389071400002, 398.0091844800004, 185.5290812640003, 306.2511815730004, 355.07811482400007, 181.38355441800036, 335.8359745260002, 331.6716378960002, 173.7375190800003, 365.9658996310004, 386.48213252100027, 185.6517119580003, 304.98157311900013, 350.2391088960005, 191.51863135800022, 341.16140800400035, 324.29891568000016, 176.5735133100004, 371.0856013560003, 287.78701168000043, 177.86979167500022, 411.3288731120001, 348.86972836200016, 172.11272246100043, 354.07364117800034, 308.80328180400033, 189.4781500820004, 376.2792420720002, 278.97324774200047, 186.01991928600046, 396.90768887500053, 333.3734289420004, 186.38812661400038, 385.15391327400016, 301.85116371200024, 207.33969275700042, 394.4506041840002, 264.51136474800046, 190.2216999880004, 387.963870284, 240.0017871360003, 187.99214858200048, 407.432579176, 300.9552916080004, 225.63900968400026, 395.27535881500035, 268.40373637200037, 250.23584548000053, 387.89353577800034, 238.38671790900025, 191.76515915100026], \"power_mean\": 291.0228478007535, \"energy_millijoules\": 11592.383331610477, \"energy_joules\": 11.592383331610478, \"coremark_score\": 6278.094473, \"coremarks_per_mhz\": 7.7853354079861115, \"ulpmark_cm_score\": 21.565884499203204}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1424.8576848060002, 1279.3929160350003, 1203.6093438599999, 1405.3731354000001, 1255.9799265000001, 1218.28181466, 1426.090462356, 1314.3075530649999, 1243.071317013, 1422.7087613119998, 1271.6077878400001, 1280.798433948, 1402.84083839, 1247.069674116, 1220.7663426949998, 1422.1920286439997, 1209.2712995999998, 1258.31286511, 1416.222027412], \"power_mean\": 1311.7239059348422, \"energy_millijoules\": 6558.619529674211, \"energy_joules\": 6.5586195296742105}}, \"979200\": {\"active\": {\"elapsed_sec\": 32.808161758, \"elapsed_ns\": 32808161758, \"power_samples\": [336.79066471200053, 255.42901122700027, 435.6274764000002, 300.55536023200034, 226.4307284950005, 426.47176309600036, 279.61264492800046, 240.89576153600046, 447.1629394380004, 334.1991767020004, 277.3637082420005, 445.9393830580002, 291.41413449100037, 290.27282226000034, 443.3411489390003, 266.9084491120002, 233.23646867400043, 449.7568021780005, 330.43915898900013, 282.61802285700037, 425.67594483200037, 284.7333390450001, 311.03838036900015, 440.81992908300003, 253.55847110300033, 254.91298873000028, 437.85723658000006, 214.91850644500028, 291.5081714940004, 434.4633386400003, 274.4914746210004, 325.31443577999994, 434.81285203500033, 239.68258086400033, 349.69596689000036, 437.7842188300003, 222.63434419200053, 286.4477274900005, 444.3281435340002, 225.35627303200044, 332.96494313400035, 408.09906839700056, 249.66770339500022, 347.17084051200027, 426.32679853600007, 221.4646140560003, 391.3608726560003, 436.3995027300002, 219.85405869800024, 347.2396926720005, 406.8707250960001, 233.89813521600058, 356.5299153120004, 379.36486949100026, 232.81762097400042, 396.55285037000044, 455.84573427600026, 234.43114592800043, 347.3672466050002, 404.0648946720005, 225.6088950780004, 379.40323877000037, 382.96997938200025, 220.10573080600034, 400.2301340800004, 436.2538416800005, 237.086606223, 444.27193916000033, 396.2157215100001, 221.11306621000017, 375.92915472600043, 356.9812787200001, 243.42565179600047, 402.8993033750005, 329.89956677800023, 224.0604695520003, 440.45499472999995, 397.56545453000035, 233.96148358800042, 428.8483134100004, 356.17059699000015, 234.2792050620003, 412.1245312780004, 324.7816685200005, 231.6179793950007, 444.0527451520004, 303.08007887700046, 219.94241302500018, 432.6702235800003, 345.6589176960001, 252.37973853000062, 432.58564440000055, 326.1450752100002, 277.1014898310002, 450.90688527000043, 286.1611344300004, 227.6007865400004, 443.19463724900015, 253.62276677700015, 253.80535499000052, 430.1451261350005, 306.83776929600026, 290.20692822000046, 430.21741422100035, 276.9556959780002, 332.7607002300001, 448.2397658800003, 253.62276677700015, 265.2261632900004, 444.19899981600065, 313.3682032100005, 296.56307233400025, 451.8119506640005, 274.29507366900043, 332.8967455890004, 453.7255805570005, 227.63134655100043, 275.66013009300013, 448.8024937680002, 229.1170165140004, 293.90325680000046, 440.29044814200006, 266.51778581600024, 335.4947414180001, 444.3281435340002, 237.9399823920005, 367.5852411660003, 430.6477582800003, 221.33865935700032, 319.9195225610001], \"power_mean\": 334.1400489311157, \"energy_millijoules\": 10962.520775158078, \"energy_joules\": 10.962520775158078, \"coremark_score\": 7622.880839, \"coremarks_per_mhz\": 7.784804778390523, \"ulpmark_cm_score\": 22.80497388579818}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1203.4990136400002, 1379.078390784, 1324.4429423679999, 1212.772927632, 1407.4543016999999, 1388.922270087, 1203.0585414539999, 1359.042753638, 1365.8923907, 1209.99089232, 1372.463478244, 1325.800217208, 1202.618069268, 1408.8807492849999, 1291.9552563099999, 1205.873494216, 1419.0115182600002, 1348.907266619, 1201.174657198], \"power_mean\": 1306.886270049, \"energy_millijoules\": 6534.4313502449995, \"energy_joules\": 6.534431350245}}, \"1094400\": {\"active\": {\"elapsed_sec\": 29.343818427, \"elapsed_ns\": 29343818427, \"power_samples\": [288.6862704000007, 368.88181629600035, 478.00723458500033, 254.91833266200024, 318.21843220800065, 474.1458873270003, 321.9877785600004, 349.62699578, 448.9963476480002, 281.9447364350001, 369.09104948000004, 463.439029138, 242.99379852100037, 411.8375889650001, 466.36753017000046, 249.7318213650001, 363.89978483000004, 458.36321627400025, 280.33528381200017, 387.0466213140003, 423.22269910700015, 251.93654193000043, 429.8548559340004, 481.5491259160003, 257.18610150400013, 368.92228218300056, 445.03748241000017, 262.7610193440005, 393.6004913940005, 420.62767640400034, 287.0604526250004, 436.41494092500034, 488.02606474100025, 262.4364683830006, 464.88363977400013, 434.6673096300003, 257.83315969600017, 402.8278922300003, 408.7503708600002, 263.6049185540005, 427.40641717500034, 379.0135941120002, 259.8458111930004, 458.2489525210003, 432.22219484500056, 258.02691158400035, 462.43840637500034, 395.7186051300007, 272.8148683760005, 434.7545600000001, 371.09800692000044, 266.3224541680004, 472.4438506600004, 341.15556511800037, 261.0770491990004, 463.439029138, 380.0978476800003, 257.37733517100037, 437.1158212800001, 367.55691164800055, 303.94825490400035, 476.41209534200016, 328.46837094400007, 253.35437636000051, 474.9665347680002, 387.9434558850005, 280.6636946640001, 472.59309976000054, 351.8651051860004, 322.1122309600005, 488.0844543840001, 322.19077404000063, 338.9754401840005, 476.63612124600036, 286.8622693050006, 293.6379480960004, 477.4094851580005, 348.86972836200016, 322.17960522000044, 481.84914374400023, 310.1877170400005, 358.22812455999997, 476.3372921720004, 285.63323358000025, 302.4125677950003, 457.73192164200054, 259.6513701450003, 329.7594204020004, 481.32459396000036, 308.69135345300015, 353.10731802800024, 481.0245761320002, 277.5950336890003, 394.40472732000035, 469.1075289600003, 263.4717184800004, 334.94925892400033, 482.39470870200034, 303.48072273300045, 360.95945734500015, 441.0010942800002, 257.12162832000035, 388.13128970800017, 465.3641427800005, 269.8863544080002, 435.97793956500027, 479.8003990360005, 267.16572732800046, 384.16763222400004, 424.1564188800003, 254.14375245200017, 406.2893488120003, 415.0865356800002, 257.12162832000035, 432.01632462000043, 460.29228101900026], \"power_mean\": 370.1301256259745, \"energy_millijoules\": 10861.031200731293, \"energy_joules\": 10.861031200731293, \"coremark_score\": 8523.405271, \"coremarks_per_mhz\": 7.788199260782163, \"ulpmark_cm_score\": 23.01807216824559}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1202.287644404, 1408.42943954, 1257.88193028, 1217.668942705, 1430.6934965400003, 1314.006756926, 1248.823707989, 1423.6121884880001, 1274.5683152279998, 1278.622450408, 1422.643873744, 1251.4549034460001, 1217.55758951, 1426.409524044, 1317.594261522, 1254.0750728, 1410.253806486, 1250.1014363460004, 1286.5287319939998], \"power_mean\": 1310.1691617052631, \"energy_millijoules\": 6550.8458085263155, \"energy_joules\": 6.550845808526316}}, \"1209600\": {\"active\": {\"elapsed_sec\": 26.553034313, \"elapsed_ns\": 26553034313, \"power_samples\": [399.7321868800002, 461.5872533740003, 271.24651068000026, 437.12855688000013, 493.0609784320002, 277.6607913940004, 376.1384085520003, 483.53930115200023, 276.56251734000034, 415.15272935600024, 453.7393224480004, 297.03235644700044, 455.3610143340004, 508.0028760400003, 289.4568166500005, 473.3675935350004, 476.9110311120003, 289.8538969380004, 412.4168859480003, 448.48218992400007, 295.6333404840004, 457.80589157700047, 416.16562084800034, 285.2372231800002, 485.1910483960005, 461.5872533740003, 298.7932717260003, 507.0112161000004, 451.0024107310003, 291.9439364380005, 460.55013979200044, 398.8962498740002, 286.4659026650004, 496.71439598100005, 376.1384085520003, 294.90286125800026, 498.0863110560001, 440.5623105520003, 287.9190207750005, 466.4739858800003, 403.20800081600055, 328.3273339680002, 499.4579559820004, 368.01471367200065, 281.03968576900047, 495.3383505420004, 426.5377761600005, 299.5924219980004, 500.45121856000037, 400.6181750560004, 337.26901228800034, 504.72319384000025, 359.0863388700002, 278.84206955100035, 490.15418746200044, 333.0398950240003, 304.71412450200023, 504.1915780000004, 382.2652860960004, 330.71582591400033, 487.80064371000026, 348.79194054400045, 366.8886296000003, 486.11164355500046, 312.3114037680002, 303.1774107540002, 506.8591443300004, 281.2207894000005, 360.4044724800003, 502.1321090560002, 347.14863389400034, 382.5895822770003, 492.91009389000055, 317.69280334400014, 398.2225167600004, 489.8531302480005, 276.2343631040003, 348.7321398400002, 509.6791330800004, 338.2233989470003, 383.67431073000034, 479.27588119800043, 311.01666900800046, 407.15658641400046, 483.2947040970005, 280.9577203700003, 352.6243337600001, 504.19486283000015, 287.76069690000054, 397.93795195500047, 462.5855365680004, 309.7849345760005, 417.4616558400003, 437.82694230300035, 291.5168407680005, 458.8066334580003, 501.3731418120003, 294.1061919480003, 401.41389314400044, 468.7659598700002, 290.4868960160004, 434.17249112000013, 435.3791264800004, 282.5815199600004, 464.06822065500046], \"power_mean\": 395.0124651912956, \"energy_millijoules\": 10488.77954228719, \"energy_joules\": 10.48877954228719, \"coremark_score\": 9419.743783, \"coremarks_per_mhz\": 7.787486593088625, \"ulpmark_cm_score\": 23.83499424237921}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1408.3652032300001, 1263.961125792, 1214.6251286960003, 1426.148256792, 1222.47562656, 1269.1302641080001, 1419.0744214840001, 1269.3806146769998, 1288.9466886779999, 1427.368895706, 1248.4051255680001, 1320.098604926, 1410.511889314, 1204.4386602280001, 1252.4684128000001, 1417.518517128, 1213.457701668, 1296.49717401, 1409.349853136], \"power_mean\": 1314.8537981316317, \"energy_millijoules\": 6574.268990658158, \"energy_joules\": 6.574268990658158}}, \"1324800\": {\"active\": {\"elapsed_sec\": 24.263239782, \"elapsed_ns\": 24263239782, \"power_samples\": [321.3787921200005, 443.1011498960004, 499.85087616600026, 325.12742601000036, 461.62429326600045, 542.8554169050005, 321.44657314500046, 497.5563848340005, 532.3890990570003, 325.1953854600001, 443.1744652160005, 495.89156892600045, 315.9788782230005, 479.32862666700044, 467.54596800000013, 331.4003302040003, 511.66551883200054, 510.2153444340004, 315.9261290760005, 458.7754213680005, 473.94819400400024, 324.7816685200005, 497.5563848340005, 453.2235017220005, 323.76525812499995, 522.1882659520004, 435.23346543000025, 329.5595752800002, 538.9641142530004, 477.68210774500017, 330.2399077020002, 494.8096452960003, 453.3708249690003, 349.7566014440006, 527.5298573830003, 413.0686146280002, 326.9693932800001, 536.1403423670006, 467.2913661550001, 326.4162159900004, 535.1542026840004, 446.3797574370003, 353.4365607630002, 536.2951445280005, 415.4458479900002, 322.19077404000063, 529.7354672910001, 385.80067846600014, 332.76302035200047, 548.1201394160007, 434.8691255800004, 368.0452418360003, 533.1421240440002, 393.4296880300003, 393.7666979400001, 528.5171444160003, 379.1836878400004, 331.5355925370002, 551.6949180730003, 340.2642152550004, 379.29483102900053, 534.2257039440005, 396.08955925500027, 400.2493702620004, 533.5493289370004, 378.0298064370004, 435.1039368449999, 542.5442258800006, 328.81145421400015, 372.9528942240006, 537.5675635170003, 397.15585536000026, 405.3605200320003, 533.3743481400002, 353.2803261600002, 441.73252571700027, 546.4305676000006, 331.33242322000024, 401.4853637640001, 545.4175809000003, 328.81145421400015, 426.0307278930004, 521.5624411550004, 351.98600681000016, 440.07123439800034, 535.7305254540004, 322.13184658000046, 481.7740430040003, 547.6210029450001, 327.3131295550004, 428.6218596630001, 512.2690061310002, 321.24357766500066, 455.84573427600026, 482.5633738920005, 328.6755275000005], \"power_mean\": 431.96804852056283, \"energy_millijoules\": 10480.944339417027, \"energy_joules\": 10.480944339417027, \"coremark_score\": 10308.853243, \"coremarks_per_mhz\": 7.781441155646135, \"ulpmark_cm_score\": 23.852812485588064}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1271.7241268480002, 1417.969672126, 1263.613592064, 1315.7849644719997, 1436.067836888, 1222.2514459399997, 1248.0809531190002, 1413.625788264, 1215.66315392, 1290.9543107499999, 1428.533422371, 1248.061869056, 1314.127322696, 1432.309348554, 1208.1640369679997, 1353.22962359, 1409.6079359640003, 1200.272217856, 1292.3102757499998], \"power_mean\": 1314.8606261682105, \"energy_millijoules\": 6574.303130841053, \"energy_joules\": 6.574303130841053}}, \"1555200\": {\"active\": {\"elapsed_sec\": 20.649571242, \"elapsed_ns\": 20649571242, \"power_samples\": [635.0330200040005, 479.6503168960005, 552.7557058440002, 606.5501640920002, 433.0652207400003, 567.9921976800001, 638.3603854970004, 420.2662945980005, 594.3115690660002, 629.6075712480003, 428.03467280500035, 544.7458376550005, 603.8815425570003, 427.59909640500064, 573.2561336850003, 584.4611492430006, 424.0036508520004, 604.4374846500004, 646.5168431620002, 426.8086956090003, 549.3499114440003, 606.4692314870006, 433.9388493150004, 587.4313012800003, 571.434894562, 420.2662945980005, 608.0849783140004, 630.0167488840002, 425.6598163140004, 642.9895283490002, 601.4505867160003, 425.1620868780001, 596.4211998320004, 558.5672914910006, 433.08087832, 626.0603846560002, 537.7795171500004, 432.13506312000027, 648.2521950740004, 600.9672472920001, 440.8549582610001, 640.4777580880004, 564.8831047320007, 455.18205624800044, 636.6744826800002, 533.9715203170003, 434.35912468000015, 639.1827262580005, 486.1449784360002, 446.4058094080001, 640.3953378280003, 546.450080025, 475.9897822800003, 636.0804420720006, 513.0277319940003, 497.9435826740005, 648.1694177690003, 492.2406502020001, 431.85874529000057, 653.6851888800006, 542.3612866800001, 474.6202717160004, 638.8537054810004, 514.3981056840005, 494.05424117800044, 635.3793916800003, 493.6900091160003, 441.7841059680002, 653.4365684000006, 439.4657269030006, 485.0596654800004, 633.3426348380001, 505.33778322000035, 516.1588342800001, 649.9885112550003, 475.49020034400064, 536.6604485440005, 649.3815533440002, 425.00752218600064, 481.8875539080004, 635.6896894250001], \"power_mean\": 541.8874178409386, \"energy_millijoules\": 11189.742839849883, \"energy_joules\": 11.189742839849883, \"coremark_score\": 12113.576897, \"coremarks_per_mhz\": 7.789079794881688, \"ulpmark_cm_score\": 22.341889673253107}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1304.9082144, 1277.6863882359999, 1426.84574682, 1260.7341350959998, 1307.460843696, 1426.9879742960002, 1233.692400165, 1246.613046498, 1416.2223574079999, 1299.618938098, 1284.114011712, 1432.227431887, 1265.024725223, 1323.44936035, 1430.619554637, 1218.4212213200003, 1341.3053780269997, 1419.9805114380001, 1210.3113707999998], \"power_mean\": 1322.432821584579, \"energy_millijoules\": 6612.164107922895, \"energy_joules\": 6.6121641079228946}}, \"1708800\": {\"active\": {\"elapsed_sec\": 18.797248639, \"elapsed_ns\": 18797248639, \"power_samples\": [587.0322194920004, 717.4537787460001, 537.5465799900003, 529.7956221840004, 714.8605395520003, 516.6828870700003, 566.2237478160005, 725.4843886500003, 564.4097458680003, 605.0108615820002, 728.9358912050004, 525.5102126780002, 643.9545287680003, 717.4537787460001, 510.1346760800004, 572.6227476420001, 724.1046985200005, 560.4156982550005, 604.8496487010002, 697.9581789200006, 529.0038298840004, 638.6894062740002, 717.1962470100004, 504.7286303250005, 573.4675734840002, 726.2602590800004, 515.0063511240003, 621.6057906640003, 700.2088455170003, 526.6493142360002, 643.7075792960002, 720.9145282800002, 507.3911501250004, 683.6071691400002, 732.2987111220004, 522.7697398560001, 625.5710487190001, 688.2224783900001, 515.8492135810006, 655.2797019000004, 674.0738535810005, 509.9820106960003, 683.860066836, 718.4045159800005, 504.5001490850002, 729.0219738550006, 687.1830163350003, 514.7808556670002, 673.1639270900005, 654.5024328480004, 508.6113554550004, 691.6316529550002, 615.8489960400004, 513.8619410110002, 728.8493648300005, 684.5119517400001, 503.206190955, 671.1525804770004, 657.0884595280002, 525.6806190470004, 700.6168231280003, 617.3050641750006, 502.36986283000033, 739.4729684980002, 673.2347130830005, 510.9749243760002, 721.1653743900004, 639.0560343390002, 537.2574846150003, 718.4905663600005, 610.5145429600004, 565.7507942250004, 734.0308859000004, 576.7161607550001], \"power_mean\": 621.564055569149, \"energy_millijoules\": 11683.694097598505, \"energy_joules\": 11.683694097598506, \"coremark_score\": 13307.782391, \"coremarks_per_mhz\": 7.787794002223784, \"ulpmark_cm_score\": 21.397342134401278}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1433.2778690719997, 1299.604534801, 1211.198966676, 1425.495591744, 1359.082699438, 1216.49901852, 1399.05615642, 1330.7619704900003, 1251.684314272, 1430.422974981, 1280.108417008, 1212.606289656, 1425.364790424, 1348.719624336, 1237.246073448, 1442.42231911, 1330.7008545649999, 1270.909155648, 1438.46747072], \"power_mean\": 1333.8752153331052, \"energy_millijoules\": 6669.376076665526, \"energy_joules\": 6.669376076665526}}, \"1843200\": {\"active\": {\"elapsed_sec\": 17.435172493, \"elapsed_ns\": 17435172493, \"power_samples\": [758.5477894800006, 715.3079749320002, 590.1209013120001, 792.0413374740003, 675.0312645620002, 582.848268444, 808.9638756060003, 740.148864324, 597.8098327380005, 807.3095112620006, 703.2359763600004, 626.2160868270003, 802.2193347200005, 677.5370277960003, 586.8891688440006, 807.3996677570003, 647.7848625200006, 603.0671516430002, 797.1324649800001, 696.9380337040004, 626.2979121420005, 801.3622791560001, 668.1441698720005, 666.1869247340005, 786.6825783060006, 643.8194002260007, 602.9863976580004, 822.9364241710005, 700.9750249010003, 648.3067992240003, 804.2723207790004, 665.8093037180006, 666.3538356870001, 817.6697011460005, 643.5720951240003, 602.5027019940001, 816.1908139810005, 603.4803691640002, 645.5535052980003, 801.0527011200004, 643.5720951240003, 670.0688140640007, 792.4842810150001, 624.0928248070004, 709.1696248080004, 808.6936903420005, 591.9987746850004, 665.5589740120004, 803.1041413490002, 593.2914912600002, 691.9096294200006, 789.8988478650003, 612.3702134000005, 716.6811835380004, 801.7706649600004, 592.9703157920005, 767.940084204, 813.1804614600005, 595.8006467400005, 704.7711030560004, 778.8425142840003, 603.6395160210004, 726.6921501600004, 752.2138916340002, 596.7718280160004, 768.2931160980004, 823.2581683140002, 595.5595113880006, 715.2157982420003], \"power_mean\": 701.456797242667, \"energy_millijoules\": 12230.020256313226, \"energy_joules\": 12.230020256313226, \"coremark_score\": 14348.025712, \"coremarks_per_mhz\": 7.784302144097222, \"ulpmark_cm_score\": 20.441503346729796}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1394.78399358, 1224.116839413, 1379.2764321989998, 1442.92561002, 1217.639514195, 1404.4195235700001, 1413.3706693039999, 1221.7475431599996, 1344.5831533769997, 1391.347443288, 1234.371071237, 1386.330069597, 1342.0564717559998, 1228.057102428, 1404.4195235700001, 1408.187485232, 1221.9156066799999, 1361.1882511680003, 1386.2279341259998], \"power_mean\": 1337.2086441, \"energy_millijoules\": 6686.0432205, \"energy_joules\": 6.686043220499999}}, \"1939200\": {\"active\": {\"elapsed_sec\": 16.561966192, \"elapsed_ns\": 16561966192, \"power_samples\": [665.0574558360004, 794.0040683160005, 861.595985592, 660.0508068470003, 740.1365763440003, 872.2140329000003, 656.4232375060001, 774.6779116960001, 848.6616972660004, 664.0157951140004, 817.1268346020004, 876.8279741740005, 658.8418784320004, 841.9929084380003, 861.5925878820003, 662.7233753040002, 778.3820277630005, 830.7440649950004, 676.6643573280003, 810.5646870600006, 816.5196268160007, 657.6324035160005, 848.1903648180003, 856.4193842640004, 661.5976291570003, 884.0586165920001, 832.0364253300006, 658.8808524360002, 836.2653140800005, 791.7691680420003, 665.8930332080004, 844.3971851190004, 767.291842612, 672.1097978400005, 890.5297050480001, 830.3791463400003, 667.8548910870004, 823.6420823950002, 788.9168161260004, 691.3164790800004, 859.7449465000004, 759.5338004000005, 667.0187201850003, 889.3255780800005, 817.2684081270002, 662.6816506670002, 877.6804785800002, 783.8330724240004, 702.9658193300004, 871.1164396800002, 755.3019819360006, 731.3519544760002, 880.3608846000002, 716.5188934660005, 668.2729765380002, 877.4011481220004, 776.2906372740003, 704.3447033200005, 877.1213385379999, 750.3085924920001, 730.3180771200007, 874.9032379950002, 713.9347663260003, 668.6871237320004, 894.0334843410005], \"power_mean\": 774.5895037161541, \"energy_millijoules\": 12828.725173225002, \"energy_joules\": 12.828725173225003, \"coremark_score\": 15105.740181, \"coremarks_per_mhz\": 7.789676248452969, \"ulpmark_cm_score\": 19.48751700767417}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1327.6065625, 1442.66101488, 1260.09839512, 1259.901017208, 1433.522819652, 1302.6720129680002, 1293.7181107049998, 1441.66954734, 1272.8163853079998, 1327.7284375, 1436.18377868, 1247.2610351560002, 1271.9849652179998, 1419.1350689279998, 1231.66298803, 1301.5555009920001, 1437.71982123, 1278.3445232720003, 1339.0884032219997], \"power_mean\": 1332.912125679421, \"energy_millijoules\": 6664.560628397105, \"energy_joules\": 6.664560628397105}}, \"2169600\": {\"active\": {\"elapsed_sec\": 14.808549578, \"elapsed_ns\": 14808549578, \"power_samples\": [915.4591352090006, 1107.881747632, 949.260990624, 876.0955297720002, 1087.1917047000006, 932.5613428220004, 899.7488322600007, 1106.4851275370002, 985.5363750780007, 941.2356938550001, 1116.4164533080002, 947.8728771090005, 961.7334210220001, 1110.3669807330007, 940.0247843400002, 903.4421686650007, 1107.3618731840002, 982.4277019800002, 944.8245883800005, 1106.4272734320002, 947.6797304400002, 983.3273294650003, 1098.3115301120001, 912.7032772450002, 927.9173028680007, 1103.3816002260005, 883.2731529180003, 955.0763119920007, 1108.5987735660005, 947.6797304400002, 988.7963228360004, 1092.36913924, 916.3903755520005, 1010.5834639680002, 1103.9471693700007, 889.3574568400006, 955.9813104060008, 1114.5392341410006, 881.9819204730004, 997.3542287760001, 1077.952756960001, 907.6298036800004, 1036.3480011760003, 1104.5698792260005, 903.2829570500003, 1072.3508522340007, 1120.4724925440005, 887.1510838020004, 1005.0125353889998, 1080.5347466600006, 902.5915113450005, 1028.3892136260001, 1054.4949189300005, 889.2637959680005, 1075.0374034760002, 1102.3909278720007, 885.5742045600005, 1007.0051598100004], \"power_mean\": 997.9595897728279, \"energy_millijoules\": 14778.334061991463, \"energy_joules\": 14.778334061991464, \"coremark_score\": 16895.316618, \"coremarks_per_mhz\": 7.787295638827434, \"ulpmark_cm_score\": 16.916656434433794}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1408.8977105979998, 1351.859928858, 1241.680432111, 1436.1178423549998, 1418.933241376, 1242.363800216, 1385.2505646, 1377.570096914, 1245.6997912620002, 1406.302687895, 1356.853959648, 1230.1992976769998, 1452.966377646, 1315.421685116, 1232.1148636839998, 1435.9207096500002, 1373.936198271, 1248.119176436, 1421.66490702], \"power_mean\": 1346.414382701737, \"energy_millijoules\": 6732.071913508685, \"energy_joules\": 6.732071913508685}}, \"2208000\": {\"active\": {\"elapsed_sec\": 14.550309943, \"elapsed_ns\": 14550309943, \"power_samples\": [895.8166638600005, 1034.749672986, 1096.8628765120002, 891.0247811370004, 987.4299311360005, 1097.4298698450002, 889.8276923520002, 1023.5161369520006, 1073.0918006220008, 905.8645905100002, 1072.3508522340007, 1120.3676968140003, 889.3574568400006, 1090.5534878999997, 1106.0596848680002, 910.3108726140003, 1037.4391423140005, 1072.1705592490007, 918.8242984020003, 1077.212206922, 1031.4473129700004, 903.5668657300007, 1100.3782759340002, 1094.4338699260002, 905.1419473800001, 1138.8476481700004, 1061.0555906560003, 901.3898908260003, 1093.9182554590002, 1037.4026198310003, 902.08687912, 1106.9466141280004, 1001.3412353760009, 917.0566618660005, 1122.2507954700004, 1052.899460445, 916.9979710680004, 1081.9850808360002, 1029.4534552960008, 946.4488603150007, 1123.6512939600002, 993.4934941590004, 909.5889431320002, 1121.1677859460005, 1055.4850884119996, 906.3731523300003, 1131.1976692700005, 1020.6150811320003, 948.1268612880003, 1124.943298055, 988.4251957920005, 912.2671568720002, 1112.9941866900003, 963.2059410320003, 909.9686012460002, 1137.3453432420001, 1013.9580392000003], \"power_mean\": 1015.9318718706845, \"energy_millijoules\": 14782.123616690624, \"energy_joules\": 14.782123616690624, \"coremark_score\": 17196.31311, \"coremarks_per_mhz\": 7.788185285326087, \"ulpmark_cm_score\": 16.9123196695313}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1362.97150599, 1464.159431728, 1260.8719482379997, 1285.3513472739999, 1453.395475701, 1300.8213791340002, 1316.3270544759998, 1460.296494894, 1284.114073416, 1348.9667855999999, 1460.140724726, 1240.215672454, 1297.059815064, 1449.17511197, 1242.917325936, 1319.041857559, 1458.935583494, 1273.9936530860002, 1348.9667855999999], \"power_mean\": 1348.8274750705264, \"energy_millijoules\": 6744.137375352631, \"energy_joules\": 6.744137375352631}}, \"2304000\": {\"active\": {\"elapsed_sec\": 13.942106141, \"elapsed_ns\": 13942106141, \"power_samples\": [1191.7347061740006, 1052.7982807150001, 970.5198569790005, 1178.8085675220004, 1100.373735361, 991.3964982720008, 1177.7403228730009, 1079.610299206, 1031.3618155920003, 1200.7813091100006, 1038.3906961240004, 994.9754145990005, 1198.0894686000001, 1018.6248448650008, 1024.8990438360001, 1201.3147913100006, 1084.67318428, 1057.1110821960006, 1202.9354546820005, 1044.1396766940006, 1077.4781275060004, 1211.8714321590005, 1025.280876968, 1035.3419814480003, 1196.1493869500005, 1061.9720220320005, 1062.0740803520002, 1208.840880616, 1040.6729886510002, 1096.8628765120002, 1219.843122016, 1003.1329918950009, 1036.7164528500002, 1192.055516331, 992.3084653140008, 1062.2776736160004, 1207.3290028640004, 1043.1529069950006, 1109.6823169240001, 1220.5480907360006, 1004.4232745700006, 1131.859002912, 1197.866825305001, 1001.4414668879999, 1071.0207788310008, 1214.3129256940001, 989.8268315120004, 1108.1830391520002, 1164.191307776, 997.7692268400006, 1141.8787696660006, 1201.093529613, 993.1971100710002, 1181.8290160320003, 1210.4429679640002], \"power_mean\": 1100.9673875372912, \"energy_millijoules\": 15349.804174824394, \"energy_joules\": 15.349804174824394, \"coremark_score\": 17946.877243, \"coremarks_per_mhz\": 7.789443247829861, \"ulpmark_cm_score\": 16.286852728064858}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1445.3258953319998, 1246.231559504, 1452.233937264, 1419.644856568, 1239.37655451, 1400.41483164, 1385.996044708, 1234.364879328, 1411.942292163, 1348.4051154729998, 1230.8721330800001, 1462.663246261, 1420.035877272, 1251.2060792, 1398.74556294, 1380.94499279, 1247.432663412, 1430.1453499319998, 1356.41835936], \"power_mean\": 1355.9158016177369, \"energy_millijoules\": 6779.5790080886845, \"energy_joules\": 6.779579008088684}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm7150ac/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 250 ms\nBaseline power usage: 1154 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 768 1017 1248 1324 1497 1612 1708 1804\n\n 300:  1108     3.7 C/MHz    146 mW   32.8 J    7.6 I/mJ   225.6 s\n 576:  2133     3.7 C/MHz    164 mW   19.2 J   13.0 I/mJ   117.2 s\n 768:  2846     3.7 C/MHz    176 mW   15.4 J   16.2 I/mJ    87.8 s\n1017:  3773     3.7 C/MHz    191 mW   12.7 J   19.7 I/mJ    66.3 s\n1248:  4628     3.7 C/MHz    209 mW   11.3 J   22.2 I/mJ    54.0 s\n1324:  4913     3.7 C/MHz    213 mW   10.8 J   23.1 I/mJ    50.9 s\n1497:  5555     3.7 C/MHz    224 mW   10.1 J   24.8 I/mJ    45.0 s\n1612:  5983     3.7 C/MHz    230 mW    9.6 J   26.0 I/mJ    41.8 s\n1708:  6339     3.7 C/MHz    235 mW    9.3 J   27.0 I/mJ    39.4 s\n1804:  6695     3.7 C/MHz    251 mW    9.4 J   26.7 I/mJ    37.3 s\n\n\n===== CPU 6 =====\nFrequencies: 300 652 806 979 1094 1209 1324 1555 1708 1843 1939 2169 2208 2304\n\n 300:  2332     7.8 C/MHz    208 mW   22.3 J   11.2 I/mJ   107.2 s\n 652:  5079     7.8 C/MHz    266 mW   13.1 J   19.1 I/mJ    49.2 s\n 806:  6278     7.8 C/MHz    291 mW   11.6 J   21.6 I/mJ    39.8 s\n 979:  7623     7.8 C/MHz    334 mW   11.0 J   22.8 I/mJ    32.8 s\n1094:  8523     7.8 C/MHz    370 mW   10.9 J   23.0 I/mJ    29.3 s\n1209:  9420     7.8 C/MHz    395 mW   10.5 J   23.8 I/mJ    26.6 s\n1324: 10309     7.8 C/MHz    432 mW   10.5 J   23.9 I/mJ    24.3 s\n1555: 12114     7.8 C/MHz    542 mW   11.2 J   22.3 I/mJ    20.6 s\n1708: 13308     7.8 C/MHz    622 mW   11.7 J   21.4 I/mJ    18.8 s\n1843: 14348     7.8 C/MHz    701 mW   12.2 J   20.4 I/mJ    17.4 s\n1939: 15106     7.8 C/MHz    775 mW   12.8 J   19.5 I/mJ    16.6 s\n2169: 16895     7.8 C/MHz    998 mW   14.8 J   16.9 I/mJ    14.8 s\n2208: 17196     7.8 C/MHz   1016 mW   14.8 J   16.9 I/mJ    14.6 s\n2304: 17947     7.8 C/MHz   1101 mW   15.3 J   16.3 I/mJ    13.9 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm7150ac/main/uptime.txt",
    "content": " 15:32:15 up 24 min,  load average: 0.68, 0.77, 0.72\n"
  },
  {
    "path": "results/sm7150ac/main/versions.txt",
    "content": "Kernel: Linux version 4.14.207-F1xy-Q-surya/1951224cf6 (yaro@yaro-pc) (GCC-10.2.0) #262 SMP PREEMPT Sat Dec 12 20:55:55 +03 2020\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm7225/cmdline.txt",
    "content": "cgroup_disable=pressure,memory ramoops_memreserve=4M rcupdate.rcu_expedited=1 rcu_nocbs=0-7  kpti=off noirqdebug androidboot.hardware=qcom androidboot.memcg=1 lpm_levels.sleep_disabled=1 msm_rtb.filter=0x237 service_locator.enable=1 androidboot.usbcontroller=a600000.dwc3 swiotlb=2048 cgroup.memory=nokmem,nosocket loop.max_part=7 rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.secureboot=1 androidboot.hwversion=1.29.0 androidboot.hwc=INDIA androidboot.hwlevel=MP androidboot.camera.config=0 androidboot.product.hardware.sku=pro androidboot.baseband=msm msm_drm.dsi_display0=qcom,mdss_dsi_j17_36_02_0a_dsc_video: msm_drm.panel_otp=0x46,0x36,0x32,0x01,0x4a,0x14,0x31,0x00,WpAndMaxlum:0x84,0x7d,0x77 androidboot.dtbo_idx=0 androidboot.dtb_idx=0 androidboot.ramdump=disable block2mtd.block2mtd=/dev/block/sda15,2097152 mtdoops.mtddev=0 mtdoops.record_size=2097152 mtdoops.dump_oops=0 printk.always_kmsg_dump=1\n"
  },
  {
    "path": "results/sm7225/cpufreq_stats/0/time_in_state",
    "content": "300000 85794\n576000 14851\n768000 11343\n1017600 8773\n1248000 7289\n1324800 6936\n1516800 6157\n1612800 5831\n1708800 5554\n1804800 5623\n"
  },
  {
    "path": "results/sm7225/cpufreq_stats/0/total_trans",
    "content": "13\n"
  },
  {
    "path": "results/sm7225/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    576000    768000   1017600   1248000   1324800   1516800   1612800   1708800   1804800 \n   300000:         0         1         0         0         0         0         0         0         0         1 \n   576000:         0         0         1         0         0         0         0         0         0         0 \n   768000:         0         0         0         1         0         0         0         0         0         0 \n  1017600:         0         0         0         0         1         0         0         0         0         0 \n  1248000:         0         0         0         0         0         1         0         0         0         0 \n  1324800:         0         0         0         0         0         0         1         0         0         0 \n  1516800:         0         0         0         0         0         0         0         1         0         1 \n  1612800:         0         0         0         0         0         0         0         0         1         0 \n  1708800:         0         0         0         0         0         0         0         0         0         1 \n  1804800:         2         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm7225/cpufreq_stats/6/time_in_state",
    "content": "300000 12643\n787200 5340\n979200 4431\n1036800 4254\n1248000 3673\n1401600 3370\n1555200 3117\n1766400 2839\n1900800 2688\n2073600 2536\n2131200 2485\n2208000 110776\n"
  },
  {
    "path": "results/sm7225/cpufreq_stats/6/total_trans",
    "content": "14\n"
  },
  {
    "path": "results/sm7225/cpufreq_stats/6/trans_table",
    "content": "   From  :    To\n         :    300000    787200    979200   1036800   1248000   1401600   1555200   1766400   1900800   2073600   2131200   2208000 \n   300000:         0         1         0         0         0         0         0         0         0         0         0         1 \n   787200:         0         0         1         0         0         0         0         0         0         0         0         0 \n   979200:         0         0         0         1         0         0         0         0         0         0         0         0 \n  1036800:         0         0         0         0         1         0         0         0         0         0         0         0 \n  1248000:         0         0         0         0         0         1         0         0         0         0         0         0 \n  1401600:         0         0         0         0         0         0         1         0         0         0         0         0 \n  1555200:         0         0         0         0         0         0         0         1         0         0         0         0 \n  1766400:         0         0         0         0         0         0         0         0         1         0         0         0 \n  1900800:         0         0         0         0         0         0         0         0         0         1         0         0 \n  2073600:         0         0         0         0         0         0         0         0         0         0         1         0 \n  2131200:         0         0         0         0         0         0         0         0         0         0         0         1 \n  2208000:         2         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm7225/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 14 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0xd0d\nCPU revision\t: 0\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0xd0d\nCPU revision\t: 0\n\nHardware\t: Qualcomm Technologies, Inc SM7225\n"
  },
  {
    "path": "results/sm7225/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. Gauguin;\nCompatible: qcom,lagoon-qrd;qcom,lagoon;qcom,qrd;\n"
  },
  {
    "path": "results/sm7225/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x51df805e]\n[    0.000000] Linux version 4.19.297-perf-g619da696 (hridaya@fedora) (Android (11039501, +pgo, +bolt, +lto, +mlgo, based on r498229b) clang version 17.0.4 (https://android.googlesource.com/toolchain/llvm-project e34ed7d63863b45858e74126edaa738e75887800), LLD 17.0.4) #1 SMP PREEMPT Fri Nov 24 14:49:36 +0545 2023\n[    0.000000] random: crng init done\n[    0.000000] Machine model: Qualcomm Technologies, Inc. Gauguin\n[    0.000000] ramoops: msm_reserve_ramoops_memory addr=b0000000,size=400000\n[    0.000000] ramoops: msm_reserve_ramoops_memory record_size=0,ftrace_size=0\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe800000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f5400000, size 140 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f3400000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f2400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000080000000, size 6 MiB\n[    0.000000] OF: reserved mem: initialized node hyp_region@80000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000080600000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node xbl_aop_mem@80700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000808ff000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node sec_apps_region@808ff000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000080900000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node smem@80900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000080b00000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_sec_regions@80b00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086000000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node camera_region@86000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086500000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_npu_region@86500000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086a00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region@86a00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086f00000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_regions@86f00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000088d00000, size 40 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region@88d00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b500000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_fw_region@8b500000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b700000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_fw_region@8b700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b710000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_gsi_region@8b710000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b715400, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@8b715400, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b800000, size 248 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@8b800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000c0000000, size 123 MiB\n[    0.000000] OF: reserved mem: initialized node removed_region@c0000000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 1951847\n[    0.000000]   Normal zone: 30498 pages used for memmap\n[    0.000000]   Normal zone: 0 pages reserved\n[    0.000000]   Normal zone: 1951847 pages, LIFO batch:63\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.1\n[    0.000000] percpu: Embedded 24 pages/cpu s58968 r8192 d31144 u98304\n[    0.000000] pcpu-alloc: s58968 r8192 d31144 u98304 alloc=24*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] CPU features: detected: Hardware dirty bit management\n[    0.000000] CPU features: detected: Speculative Store Bypassing Safe (SSBS)\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1921349\n[    0.000000] Kernel command line: cgroup_disable=pressure,memory ramoops_memreserve=4M rcupdate.rcu_expedited=1 rcu_nocbs=0-7  kpti=off noirqdebug androidboot.hardware=qcom androidboot.memcg=1 lpm_levels.sleep_disabled=1 msm_rtb.filter=0x237 service_locator.enable=1 androidboot.usbcontroller=a600000.dwc3 swiotlb=2048 cgroup.memory=nokmem,nosocket loop.max_part=7 rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED androidboot.cpuid=REDACTED androidboot.secureboot=1 androidboot.hwversion=1.29.0 androidboot.hwc=INDIA androidboot.hwlevel=MP androidboot.camera.config=0 androidboot.product.hardware.sku=pro androidboot.baseband=msm msm_drm.dsi_display0=qcom,mdss_dsi_j17_36_02_0a_dsc_video: msm_drm.panel_otp=0x46,0x36,0x32,0x01,0x4a,0x14,0x31,0x00,WpAndMaxlum:0x84,0x7d,0x77 \n[    0.000000] cgroup: Disabling pressure control group feature\n[    0.000000] cgroup: Disabling pressure control group feature\n[    0.000000] IRQ lockup detection disabled\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] mem auto-init: stack:all(zero), heap alloc:on, heap free:off\n[    0.000000] Memory: 7339904K/7807388K available (24062K kernel code, 3080K rwdata, 10036K rodata, 2048K init, 10486K bss, 246300K reserved, 221184K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n\n[    0.000000] **********************************************************\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **                                                      **\n[    0.000000] ** trace_printk() being used. Allocating extra memory.  **\n[    0.000000] **                                                      **\n[    0.000000] ** This means that this is a DEBUG kernel and it is     **\n[    0.000000] ** unsafe for production use.                           **\n[    0.000000] **                                                      **\n[    0.000000] ** If you see this message and you are not debugging    **\n[    0.000000] ** the kernel, report this immediately to your vendor!  **\n[    0.000000] **                                                      **\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **********************************************************\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: Distributor has no Range Selector support\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000004] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000015] clocksource: Switched to clocksource arch_sys_counter\n[    0.001687] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001700] pid_max: default: 32768 minimum: 301\n[    0.001801] Security Framework initialized\n[    0.001809] SELinux:  Initializing.\n[    0.001902] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.001919] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.003273] ASID allocator initialised with 65536 entries\n[    0.003360] rcu: Hierarchical SRCU implementation.\n[    0.007798] shmbridge is enabled\n[    0.008332] smp: Bringing up secondary CPUs ...\n[    0.010328] Detected VIPT I-cache on CPU1\n[    0.010401] CPU1: Booted secondary processor 0x0000000100 [0x51df805e]\n[    0.012489] Detected VIPT I-cache on CPU2\n[    0.012549] CPU2: Booted secondary processor 0x0000000200 [0x51df805e]\n[    0.022143] Detected VIPT I-cache on CPU3\n[    0.022206] CPU3: Booted secondary processor 0x0000000300 [0x51df805e]\n[    0.024367] Detected VIPT I-cache on CPU4\n[    0.024425] CPU4: Booted secondary processor 0x0000000400 [0x51df805e]\n[    0.026721] Detected VIPT I-cache on CPU5\n[    0.026776] CPU5: Booted secondary processor 0x0000000500 [0x51df805e]\n[    0.030138] CPU features: enabling workaround for Mismatched cache type\n[    0.030146] CPU features: enabling workaround for Spectre-BHB\n[    0.030150] CPU features: enabling workaround for ARM erratum 1542418\n[    0.030158] Detected PIPT I-cache on CPU6\n[    0.030182] CPU features: Unsupported CPU feature variation detected.\n[    0.030259] CPU6: Booted secondary processor 0x0000000600 [0x411fd0d0]\n[    0.033098] Detected PIPT I-cache on CPU7\n[    0.033201] CPU7: Booted secondary processor 0x0000000700 [0x411fd0d0]\n[    0.040201] smp: Brought up 1 node, 8 CPUs\n[    0.040206] SMP: Total of 8 processors activated.\n[    0.040210] CPU features: detected: GIC system register CPU interface\n[    0.040212] CPU features: detected: Privileged Access Never\n[    0.040214] CPU features: detected: LSE atomic instructions\n[    0.040217] CPU features: detected: User Access Override\n[    0.040219] CPU features: detected: 32-bit EL0 Support\n[    0.040221] CPU features: detected: RAS Extension Support\n[    0.051509] CPU: All CPU(s) started at EL1\n[    0.051559] alternatives: patching kernel code\n[    0.103069] Registered cp15_barrier emulation handler\n[    0.103084] Registered setend emulation handler\n[    0.103333] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.103355] futex hash table entries: 2048 (order: 5, 131072 bytes)\n[    0.106986] ramoops: msm_register_ramoops_device\n[    0.107088] xor: measuring software checksum speed\n[    0.200052]    8regs     :  2827.200 MB/sec\n[    0.300017]    8regs_prefetch:  2680.000 MB/sec\n[    0.400016]    32regs    :  3718.400 MB/sec\n[    0.500017]    32regs_prefetch:  3578.000 MB/sec\n[    0.500020] xor: using function: 32regs (3718.400 MB/sec)\n[    0.500036] pinctrl core: initialized pinctrl subsystem\n[    0.500151] regulator: Failed to create debugfs directory\n[    0.500702] NET: Registered protocol family 16\n[    0.501711] schedtune: configured to support 8 boost groups\n[    0.501800] audit: initializing netlink subsys (disabled)\n[    0.519496] persistent_ram: found existing invalid buffer, size 6291444, start 271296\n[    0.519509] console [pstore0] enabled\n[    0.519571] pstore: Registered ramoops as persistent store backend\n[    0.519575] ramoops: attached 0x400000@0xb0000000, ecc: 0/0\n[    0.519927] audit: type=2000 audit(0.499:1): state=initialized audit_enabled=0 res=1\n[    0.519941] cpuidle: using governor qcom\n[    0.520034] NET: Registered protocol family 42\n[    0.520522] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.521407] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.521900] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.522166] exit: IPA_USB init success!\n[    0.525816] platform c1700000.qseecom: assigned reserved memory node qseecom_region\n[    0.526926] platform 3000000.qcom,lpass: assigned reserved memory node pil_adsp_region@88d00000\n[    0.527056] platform 8300000.qcom,turing: assigned reserved memory node cdsp_regions@86f00000\n[    0.527181] platform 4080000.qcom,mss: assigned reserved memory node modem_region@8b800000\n[    0.528755] platform soc:qcom,smem: assigned reserved memory node smem@80900000\n[    0.528936] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.529515] platform aab0000.qcom,venus: assigned reserved memory node pil_video_region@86a00000\n[    0.529650] platform 9800000.qcom,npu: assigned reserved memory node pil_npu_region@86500000\n[    0.532216] platform soc:qcom,ipa_fws: assigned reserved memory node ipa_fw_region@8b700000\n[    0.560604] msm-dcc 109f000.dcc_v2: DCC list passed 4\n[    0.560897] msm-dcc 109f000.dcc_v2: All values written to enable.\n[    0.561947] Unable to find DT property: qcom,msm-imem-download_mode\n[    0.562844] Unable to find DT property: qcom,msm-imem-emergency_download_mode\n[    0.563520] msm_watchdog 17c10000.qcom,wdt: wdog absent resource not present\n[    0.563735] msm_watchdog 17c10000.qcom,wdt: MSM Watchdog Initialized\n[    0.563856] sps:sps is ready.\n[    0.564143] spmi spmi-0: PMIC arbiter version v5 (0x50010000)\n[    0.570556] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.571949] gcc-lagoon 100000.qcom,gcc: Linked as a consumer to regulator.27\n[    0.571967] gcc-lagoon 100000.qcom,gcc: Linked as a consumer to regulator.28\n[    0.581748] gcc-lagoon 100000.qcom,gcc: Registered GCC clocks\n[    0.581886] lagoon-gpucc 3d90000.qcom,gpucc: Linked as a consumer to regulator.27\n[    0.581902] lagoon-gpucc 3d90000.qcom,gpucc: Linked as a consumer to regulator.3\n[    0.581919] lagoon-gpucc 3d90000.qcom,gpucc: Linked as a consumer to regulator.4\n[    0.585955] lagoon-gpucc 3d90000.qcom,gpucc: Registered GPU CC clocks\n[    0.586023] lagoon-npucc 9980000.qcom,npucc: Linked as a consumer to regulator.27\n[    0.592634] lagoon-npucc 9980000.qcom,npucc: Registered NPU CC clocks\n[    0.592722] video_cc-lagoon aaf0000.qcom,videocc: Linked as a consumer to regulator.27\n[    0.597217] video_cc-lagoon aaf0000.qcom,videocc: Registered VIDEO CC clocks\n[    0.613710] cryptd: max_cpu_qlen set to 1000\n[    0.615741] gdsc 3d9106c.qcom,gdsc: Linked as a consumer to regulator.27\n[    0.615818] gpu_cx_gdsc: supplied by pm6150a_s1_level\n[    0.615974] gpu_gx_gdsc: supplied by pm6350_s3_level\n[    0.618567] qmp-aop-clk soc:qcom,aopcc: Registered clocks with AOP\n[    0.620527] lagoon-camcc ad00000.qcom,camcc: Linked as a consumer to regulator.27\n[    0.620542] lagoon-camcc ad00000.qcom,camcc: Linked as a consumer to regulator.4\n[    0.627537] lagoon-camcc ad00000.qcom,camcc: Registered CAM CC clocks\n[    0.627936] disp_cc-lagoon af00000.qcom,dispcc: Linked as a consumer to regulator.27\n[    0.630942] disp_cc-lagoon af00000.qcom,dispcc: Registered DISP CC clocks\n[    0.633091] KPI: Bootloader start count = 64337\n[    0.633095] KPI: Bootloader end count = 95569\n[    0.633098] KPI: Bootloader display count = 4279729397\n[    0.633100] KPI: Bootloader load kernel count = 4294962522\n[    0.633104] KPI: Kernel MPM timestamp = 124587\n[    0.633105] KPI: Kernel MPM Clock frequency = 32768\n[    0.633123] socinfo_print: v0.15, id=459, ver=1.0, raw_id=355, raw_ver=0, hw_plat=35, hw_plat_ver=2686976\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65590, pmic_die_revision=65536 foundry_id=3 serial_number=3028156350 num_pmics=4 chip_family=0x6c raw_device_family=0x6 raw_device_number=0x12 nproduct_id=0x41b num_clusters=0x0 ncluster_array_offset=0xb0 num_subset_parts=0xd nsubset_parts_array_offset=0xb0 nmodem_supported=0xff\n[    0.633126] msm_bus_fabric_rpmh_init_driver\n[    0.633305] msm_bus: Probe started\n[    0.633830] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.636150] msm_bus: DT Parsing complete\n[    0.638684] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.651642] wide_ldo_avdd2_regulator: supplied by pm6350_s2\n[    0.651801] wide_ldo_dvdd_regulator: supplied by pm6150a_bob\n[    0.651938] depth_ldo_avdd_regulator: supplied by pm6150a_bob\n[    0.652788] arm-smmu 3d40000.arm,smmu-kgsl: Linked as a consumer to regulator.56\n[    0.652857] arm-smmu 3d40000.arm,smmu-kgsl: \tnon-coherent table walk\n[    0.652861] arm-smmu 3d40000.arm,smmu-kgsl: \t(IDR0.CTTW overridden by FW configuration)\n[    0.652867] arm-smmu 3d40000.arm,smmu-kgsl: \tstream matching with 5 register groups\n[    0.654511] register_client_adhoc:find path.src 161 dest 627\n[    0.654705] register_client_adhoc:Client handle 1 apps_smmu\n[    0.654798] arm-smmu 15000000.apps-smmu: \tnon-coherent table walk\n[    0.654801] arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.654806] arm-smmu 15000000.apps-smmu: \tstream matching with 71 register groups\n[    0.655650] register_client_adhoc:find path.src 161 dest 627\n[    0.655803] register_client_adhoc:Client handle 2 apps_smmu\n[    0.656111] register_client_adhoc:find path.src 161 dest 627\n[    0.656259] register_client_adhoc:Client handle 3 apps_smmu\n[    0.656564] qsmmuv500-tbu 1518d000.mnoc_hf_0_tbu: Linked as a consumer to regulator.47\n[    0.656594] register_client_adhoc:find path.src 22 dest 773\n[    0.656669] register_client_adhoc:Client handle 4 mnoc_hf_0_tbu\n[    0.656963] qsmmuv500-tbu 15191000.mnoc_sf_0_tbu: Linked as a consumer to regulator.48\n[    0.656989] register_client_adhoc:find path.src 137 dest 772\n[    0.657071] register_client_adhoc:Client handle 5 mnoc_sf_0_tbu\n[    0.657377] register_client_adhoc:find path.src 161 dest 627\n[    0.657536] register_client_adhoc:Client handle 6 apps_smmu\n[    0.657825] register_client_adhoc:find path.src 154 dest 821\n[    0.657880] register_client_adhoc:Client handle 7 apps_smmu\n[    0.658178] register_client_adhoc:find path.src 161 dest 627\n[    0.658326] register_client_adhoc:Client handle 8 apps_smmu\n[    0.658982] Error: Driver 'arm-smmu' is already registered, aborting...\n[    0.659193] SCSI subsystem initialized\n[    0.659303] usbcore: registered new interface driver usbfs\n[    0.659327] usbcore: registered new interface driver hub\n[    0.659353] usbcore: registered new device driver usb\n[    0.659671] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.659684] usb_phy_generic soc:usb_nop_phy: Linked as a consumer to regulator.0\n[    0.660498] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6350@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.660523] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6350@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.660792] input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pm6350@0:qcom,power-on@800/input/input0\n[    0.661731] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm7250b@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from CBL (External Power Supply) and 'cold' boot\n[    0.661756] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm7250b@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from SOFT (Software)\n[    0.661916] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150l@4:qcom,power-on@800: PMIC@SID4 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'cold' boot\n[    0.661939] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm6150l@4:qcom,power-on@800: PMIC@SID4: Power-off reason: Triggered from SOFT (Software)\n[    0.662081] media: Linux media interface: v0.10\n[    0.662100] videodev: Linux video capture interface: v2.00\n[    0.662149] pps_core: LinuxPPS API ver. 1 registered\n[    0.662152] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>\n[    0.662160] PTP clock support registered\n[    0.674755] EDAC MC: Ver: 3.0.0\n[    0.675136] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=0 freq=300000 volt=596000, core_count 6\n[    0.675170] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=1 freq=576000 volt=596000, core_count 6\n[    0.675180] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=2 freq=768000 volt=596000, core_count 6\n[    0.675188] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=3 freq=1017600 volt=652000, core_count 6\n[    0.675197] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=4 freq=1248000 volt=704000, core_count 6\n[    0.675206] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=5 freq=1324800 volt=720000, core_count 6\n[    0.675216] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=6 freq=1516800 volt=780000, core_count 6\n[    0.675225] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=7 freq=1612800 volt=856000, core_count 6\n[    0.675233] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=8 freq=1708800 volt=856000, core_count 6\n[    0.675242] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=9 freq=1804800 volt=868000, core_count 6\n[    0.675250] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=10 freq=1804800 volt=868000, core_count 6\n[    0.675279] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=0 freq=300000 volt=604000, core_count 2\n[    0.675292] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=1 freq=787200 volt=604000, core_count 2\n[    0.675299] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=2 freq=979200 volt=644000, core_count 2\n[    0.675306] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=3 freq=1036800 volt=648000, core_count 2\n[    0.675312] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=4 freq=1248000 volt=692000, core_count 2\n[    0.675319] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=5 freq=1401600 volt=724000, core_count 2\n[    0.675325] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=6 freq=1555200 volt=756000, core_count 2\n[    0.675331] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=7 freq=1766400 volt=800000, core_count 2\n[    0.675338] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=8 freq=1900800 volt=844000, core_count 2\n[    0.675344] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=9 freq=2073600 volt=904000, core_count 2\n[    0.675351] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=10 freq=2131200 volt=920000, core_count 2\n[    0.675358] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=11 freq=2208000 volt=940000, core_count 2\n[    0.675364] qcom-cpufreq-hw 18323000.qcom,cpufreq-hw: index=12 freq=2208000 volt=940000, core_count 2\n[    0.675413] energy_model: pd0: EM: OPP:1612800 is inefficient\n[    0.675417] energy_model: Created perf domain 0-5\n[    0.675674] energy_model: Created perf domain 6-7\n[    0.675799] cpufreq: driver qcom-cpufreq-hw up and running\n[    0.677750] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.677829] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.677972] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.678091] ION heap system created\n[    0.678348] ION heap secure_heap created\n[    0.678354] ION heap qsecom created at 0x00000000fe800000 with size 1400000\n[    0.678356] ION heap qsecom_ta created at 0x00000000f2400000 with size 1000000\n[    0.705199] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x80b00000, size 0x1e00000\n[    0.705202] ION heap secure_carveout created\n[    0.705206] ION heap secure_display created at 0x00000000f5400000 with size 8c00000\n[    0.706306] PMIC@SID0: PM6350 v1.0.0.16 options: 0, 0, 0, 0\n[    0.706412] PMIC@SID2: PM7250B v1.0 options: 0, 0, 0, 0\n[    0.706524] PMIC@SID4: PM8150L v3.0 options: 0, 0, 0, 0\n[    0.706632] PMIC@SID6: PMK8350 v2.0.0.32 options: 0, 0, 0, 0\n[    0.707381] register_client_adhoc:find path.src 90 dest 770\n[    0.707683] register_client_adhoc:find path.src 129 dest 512\n[    0.707752] register_client_adhoc:find path.src 90 dest 585\n[    0.707877] register_client_adhoc:find path.src 1 dest 676\n[    0.708091] register_client_adhoc:find path.src 143 dest 777\n[    0.708134] register_client_adhoc:Client handle 9 ipa\n[    0.709167] ipa ipa3_smp2p_probe:8292 fail to get smp2p clk resp bit -517\n[    0.709448] ipa soc:ipa_smmu_ap: Linked as a consumer to 15000000.apps-smmu\n[    0.715205] iommu: Adding device soc:ipa_smmu_ap to group 0\n[    0.715644] ipa soc:ipa_smmu_wlan: Linked as a consumer to 15000000.apps-smmu\n[    0.715943] iommu: Adding device soc:ipa_smmu_wlan to group 1\n[    0.716176] ipa soc:ipa_smmu_uc: Linked as a consumer to 15000000.apps-smmu\n[    0.716389] iommu: Adding device soc:ipa_smmu_uc to group 2\n[    0.717729] ipa ipa3_smp2p_probe:8292 fail to get smp2p clk resp bit -517\n[    0.718712] devfreq-qcom-fw 18321000.qcom,devfreq-l3:qcom,cpu0-cpu-l3-lat: Devfreq QCOM Firmware dev registered.\n[    0.718978] devfreq-qcom-fw 18321000.qcom,devfreq-l3:qcom,cpu6-cpu-l3-lat: Devfreq QCOM Firmware dev registered.\n[    0.719174] devfreq-qcom-fw 18321000.qcom,devfreq-l3:qcom,cdsp-cdsp-l3-lat: Devfreq QCOM Firmware dev registered.\n[    0.719190] devfreq-qcom-fw 18321000.qcom,devfreq-l3: Devfreq QCOM Firmware parent dev inited.\n[    0.720701] Advanced Linux Sound Architecture Driver Initialized.\n[    0.721554] Bluetooth: Core ver 2.22\n[    0.721567] NET: Registered protocol family 31\n[    0.721569] Bluetooth: HCI device and connection manager initialized\n[    0.721577] Bluetooth: HCI socket layer initialized\n[    0.721581] Bluetooth: L2CAP socket layer initialized\n[    0.721588] Bluetooth: SCO socket layer initialized\n[    0.721596] NetLabel: Initializing\n[    0.721599] NetLabel:  domain hash size = 128\n[    0.721600] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\n[    0.721643] NetLabel:  unlabeled traffic allowed by default\n[    0.721956] register_client_adhoc:find path.src 22 dest 512\n[    0.722276] register_client_adhoc:Client handle 10 bus-proxy-client\n[    0.722986] qupv3_geni_se 8c0000.qcom,qupv3_0_geni_se: Linked as a consumer to 15000000.apps-smmu\n[    0.726714] iommu: Adding device 8c0000.qcom,qupv3_0_geni_se to group 3\n[    0.727124] qupv3_geni_se 9c0000.qcom,qupv3_1_geni_se: Linked as a consumer to 15000000.apps-smmu\n[    0.730915] iommu: Adding device 9c0000.qcom,qupv3_1_geni_se to group 4\n[    0.731838] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=5500mV ncp_voltage=5500mV bst_voltage=5650mV\n[    0.731984] ipa ipa3_smp2p_probe:8292 fail to get smp2p clk resp bit -517\n[    0.732382] clocksource: Switched to clocksource arch_sys_counter\n[    0.772839] VFS: Disk quotas dquot_6.6.0\n[    0.772887] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.775425] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.775430] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.776932] dsi_pll_clock_register_10nm: Registered DSI PLL ndx=0, clocks successfully\n[    0.777477] NET: Registered protocol family 2\n[    0.777646] IP idents hash table entries: 131072 (order: 8, 1048576 bytes)\n[    0.779595] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes)\n[    0.779709] TCP established hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.780093] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)\n[    0.780746] TCP: Hash tables configured (established 65536 bind 65536)\n[    0.780838] UDP hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.780917] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.781074] NET: Registered protocol family 1\n[    0.781419] PCI: CLS 0 bytes, default 64\n[    0.781591] ipa ipa3_smp2p_probe:8292 fail to get smp2p clk resp bit -517\n[    0.781921] Trying to unpack rootfs image as initramfs...\n[    0.980979] Freeing initrd memory: 7468K\n[    0.982093] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.986820] Initialise system trusted keyrings\n[    0.986898] workingset: timestamp_bits=61 max_order=21 bucket_order=0\n[    0.989633] fuse init (API version 7.27)\n[    0.994469] Key type asymmetric registered\n[    0.994473] Asymmetric key parser 'x509' registered\n[    0.994482] io scheduler noop registered\n[    0.994545] io scheduler cfq registered (default)\n[    0.994548] io scheduler mq-deadline registered\n[    0.994551] io scheduler kyber registered\n[    1.005859] gpi_dma 800000.qcom,gpi-dma: Linked as a consumer to 15000000.apps-smmu\n[    1.006090] iommu: Adding device 800000.qcom,gpi-dma to group 5\n[    1.006708] gpi_dma 900000.qcom,gpi-dma: Linked as a consumer to 15000000.apps-smmu\n[    1.006911] iommu: Adding device 900000.qcom,gpi-dma to group 6\n[    1.010113] subsys-pil-tz 3000000.qcom,lpass: Linked as a consumer to regulator.6\n[    1.010136] subsys-pil-tz 3000000.qcom,lpass: Linked as a consumer to regulator.21\n[    1.010186] register_client_adhoc:find path.src 125 dest 512\n[    1.010545] register_client_adhoc:Client handle 11 scm_pas\n[    1.011073] subsys-pil-tz 8300000.qcom,turing: Linked as a consumer to regulator.27\n[    1.011088] subsys-pil-tz 8300000.qcom,turing: Linked as a consumer to regulator.4\n[    1.011118] register_client_adhoc:find path.src 154 dest 821\n[    1.011165] register_client_adhoc:Client handle 12 pil-cdsp\n[    1.011569] subsys-pil-tz 4080000.qcom,mss: Linked as a consumer to regulator.27\n[    1.011588] subsys-pil-tz 4080000.qcom,mss: Linked as a consumer to regulator.29\n[    1.011613] register_client_adhoc:find path.src 129 dest 512\n[    1.011680] register_client_adhoc:Client handle 13 pil-modem\n[    1.012157] subsys-pil-tz aab0000.qcom,venus: Linked as a consumer to regulator.60\n[    1.012180] register_client_adhoc:find path.src 63 dest 512\n[    1.012377] register_client_adhoc:Client handle 14 pil-venus\n[    1.012383] minidump-id not found for venus\n[    1.012581] minidump-id not found for npu\n[    1.012620] subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    1.012655] subsys-pil-tz 9800000.qcom,npu: for md_npu segments only will be dumped.\n[    1.012748] subsys-restart: __get_smem_state(): Could not get smem-states qcom,force-stop\n[    1.013366] minidump-id not found for lagoon_ipa_fws\n[    1.013398] subsys-pil-tz soc:qcom,ipa_fws: for lagoon_ipa_fws segments only will be dumped.\n[    1.013431] subsys-pil-tz soc:qcom,ipa_fws: for md_lagoon_ipa_fws segments only will be dumped.\n[    1.013574] minidump-id not found for a615_zap\n[    1.013609] subsys-pil-tz soc:qcom,kgsl-hyp: for a615_zap segments only will be dumped.\n[    1.013641] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a615_zap segments only will be dumped.\n[    1.015079] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    1.015141] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    1.015203] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    1.018358] icnss 18800000.qcom,icnss: Linked as a consumer to 15000000.apps-smmu\n[    1.022241] iommu: Adding device 18800000.qcom,icnss to group 7\n[    1.022390] icnss: Recursive recovery allowed for WLAN\n[    1.022425] icnss 18800000.qcom,icnss: Linked as a consumer to regulator.9\n[    1.022447] icnss 18800000.qcom,icnss: Linked as a consumer to regulator.12\n[    1.022478] icnss 18800000.qcom,icnss: Linked as a consumer to regulator.32\n[    1.022503] icnss 18800000.qcom,icnss: Linked as a consumer to regulator.41\n[    1.022526] icnss 18800000.qcom,icnss: Linked as a consumer to regulator.40\n[    1.022628] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    1.022706] icnss: Unable to create debugfs -19\n[    1.022774] icnss: Platform driver probed successfully\n[    1.024851] ignore console register\n[    1.025345] register_client_adhoc:find path.src 176 dest 823\n[    1.025427] register_client_adhoc:find path.src 151 dest 512\n[    1.025748] register_client_adhoc:Client handle 15 8c0000.qcom,qupv3_0_geni_se\n[    1.025755] msm_geni_serial 884000.qcom,qup_uart: Wakeup byte 0xfd\n[    1.025918] msm_geni_serial 884000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    1.025927] msm_geni_serial 884000.qcom,qup_uart: Failed to create dbg dir\n[    1.026487] 884000.qcom,qup_uart: ttyHS0 at MMIO 0x884000 (irq = 196, base_baud = 0) is a MSM\n[    1.026832] msm_geni_serial_init: Driver initialized\n[    1.027018] register_client_adhoc:find path.src 1 dest 618\n[    1.027263] register_client_adhoc:Client handle 16 msm-rng-noc\n[    1.038874] brd: module loaded\n[    1.042165] loop: module loaded\n[    1.042333] zram: Added device: zram0\n[    1.043563] QSEECOM: qseecom_init_control: qseecom.qsee_version = 0x1402000\n[    1.043611] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    1.045657] QSEECOM: qseecom_register_heap_shmbridge: Could not get heap 26 info: No shmbridge created\n[    1.046509] fpc1020 soc:fingerprint_fpc: fpc fpc1020_probe --->: enter! \n[    1.046561] fpc1020 soc:fingerprint_fpc: found pin control fpc1020_reset_reset\n[    1.046564] fpc1020 soc:fingerprint_fpc: found pin control fpc1020_reset_active\n[    1.046676] fpc1020 soc:fingerprint_fpc: fpc reset_gpio_res --->: enter!\n[    1.046679] fpc1020 soc:fingerprint_fpc: fpc reset_gpio_res <---: exit!\n[    1.046685] fpc1020 soc:fingerprint_fpc: fpc1020_probe: GPIO 17 wake set success!\n[    1.046688] fpc1020 soc:fingerprint_fpc: fpc1020_probe: ok\n[    1.046691] fpc1020 soc:fingerprint_fpc: fpc fpc1020_probe <---: exit! \n[    1.046784] fpc1020_platform_tee: fpc1020_init OK\n[    1.047002] qce 1de0000.qcedev: Linked as a consumer to 15000000.apps-smmu\n[    1.047303] iommu: Adding device 1de0000.qcedev to group 8\n[    1.047510] register_client_adhoc:find path.src 125 dest 512\n[    1.047891] register_client_adhoc:Client handle 17 qcedev-noc\n[    1.048032] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.048272] qce 1de0000.qcedev: QTI Crypto 5.5.1 device found @0x1de0000\n[    1.048353] sps:BAM 0x0000000001dc4000 is registered.\n[    1.048444] sps:BAM 0x0000000001dc4000 (va:0x000000004445f7f5) enabled: ver:0x27, number of pipes:16\n[    1.048569] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 16\n[    1.049079] qce 1de0000.qcedev:qcom_cedev_ns_cb: Linked as a consumer to 15000000.apps-smmu\n[    1.049330] iommu: Adding device 1de0000.qcedev:qcom_cedev_ns_cb to group 9\n[    1.049653] qce 1de0000.qcedev:qcom_cedev_s_cb: Linked as a consumer to 15000000.apps-smmu\n[    1.050381] iommu: Adding device 1de0000.qcedev:qcom_cedev_s_cb to group 10\n[    1.051511] qcrypto 1de0000.qcrypto: Linked as a consumer to 15000000.apps-smmu\n[    1.051696] iommu: Adding device 1de0000.qcrypto to group 11\n[    1.051836] register_client_adhoc:find path.src 125 dest 512\n[    1.052179] register_client_adhoc:Client handle 18 qcrypto-noc\n[    1.052291] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.052505] qcrypto 1de0000.qcrypto: QTI Crypto 5.5.1 device found @0x1de0000\n[    1.052659] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 16\n[    1.052918] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    1.053028] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    1.053106] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    1.053183] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    1.053254] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    1.053322] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    1.053392] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    1.053477] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    1.053548] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    1.053617] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    1.053689] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    1.053763] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    1.053833] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    1.053903] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    1.053976] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    1.054052] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    1.054121] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    1.054190] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    1.054261] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    1.054340] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    1.055669] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    1.055771] ufshcd-qcom 1d84000.ufshc: Linked as a consumer to regulator.45\n[    1.055952] ufshcd-qcom 1d84000.ufshc: Linked as a consumer to regulator.37\n[    1.055966] ufshcd-qcom 1d84000.ufshc: Linked as a consumer to regulator.16\n[    1.056684] register_client_adhoc:find path.src 123 dest 512\n[    1.057009] register_client_adhoc:find path.src 1 dest 757\n[    1.057206] register_client_adhoc:Client handle 19 ufshc_mem\n[    1.057237] ufshcd-qcom 1d84000.ufshc: Linked as a consumer to regulator.26\n[    1.057273] ufs_qcom_phy_qmp_v3 1d87000.ufsphy_mem: Linked as a consumer to regulator.26\n[    1.057294] ufs_qcom_phy_qmp_v3 1d87000.ufsphy_mem: Linked as a consumer to regulator.22\n[    1.057413] ufshcd-qcom 1d84000.ufshc: ufs_qcom_parse_reg_info: Unable to find qcom,vccq-parent-supply regulator, assuming enabled\n[    1.058178] scsi host0: ufshcd\n[    1.082126] spi_geni 880000.spi: spi_geni_probe: completed\n[    1.082305] register_client_adhoc:find path.src 177 dest 824\n[    1.082381] register_client_adhoc:find path.src 152 dest 512\n[    1.082700] register_client_adhoc:Client handle 20 9c0000.qcom,qupv3_1_geni_se\n[    1.082943] spi_geni 98c000.spi: spi_geni_probe: completed\n[    1.083184] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    1.084158] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.\n[    1.084160] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    1.084337] tun: Universal TUN/TAP device driver, 1.6\n[    1.084446] PPP generic driver version 2.4.2\n[    1.084489] PPP BSD Compression module registered\n[    1.084492] PPP Deflate Compression module registered\n[    1.084525] PPP MPPE Compression module registered\n[    1.084529] NET: Registered protocol family 24\n[    1.084539] PPTP driver version 0.8.5\n[    1.084680] cnss_utils: Unable to create debugfs -19\n[    1.084867] wcnss_pre_alloc_init: Failed to create debugfs dir\n[    1.084869] CLD80211: Initializing\n[    1.084947] usbcore: registered new interface driver r8152\n[    1.084968] usbcore: registered new interface driver asix\n[    1.085013] usbcore: registered new interface driver ax_usb_nic\n[    1.085029] usbcore: registered new interface driver cdc_ether\n[    1.085053] usbcore: registered new interface driver net1080\n[    1.085071] usbcore: registered new interface driver cdc_subset\n[    1.085086] usbcore: registered new interface driver zaurus\n[    1.085110] usbcore: registered new interface driver cdc_ncm\n[    1.088731] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.090227] msm-qusb-phy-v2 88e3000.qusb: Linked as a consumer to regulator.22\n[    1.090241] msm-qusb-phy-v2 88e3000.qusb: Linked as a consumer to regulator.8\n[    1.090253] msm-qusb-phy-v2 88e3000.qusb: Linked as a consumer to regulator.7\n[    1.090271] msm-qusb-phy-v2 88e3000.qusb: Linked as a consumer to regulator.26\n[    1.090379] msm-qusb-phy-v2 88e3000.qusb: can't create debugfs root for 88e3000.qusb\n[    1.092413] msm-dwc3 a600000.ssusb: Linked as a consumer to 15000000.apps-smmu\n[    1.092690] iommu: Adding device a600000.ssusb to group 12\n[    1.092839] msm-dwc3 a600000.ssusb: Linked as a consumer to regulator.46\n[    1.093710] dwc3 a600000.dwc3: Failed to get clk 'ref': -2\n[    1.093810] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.094581] register_client_adhoc:find path.src 61 dest 512\n[    1.094957] register_client_adhoc:find path.src 61 dest 676\n[    1.095139] register_client_adhoc:find path.src 1 dest 583\n[    1.095348] register_client_adhoc:Client handle 21 usb0\n[    1.096344] msm-dwc3 a600000.ssusb: Dropping the link to regulator.46\n[    1.097262] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    1.097267] ehci-pci: EHCI PCI platform driver\n[    1.097288] ehci-platform: EHCI generic platform driver\n[    1.097649] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    1.097651] ohci-pci: OHCI PCI platform driver\n[    1.097673] ohci-platform: OHCI generic platform driver\n[    1.098607] usbcore: registered new interface driver usb-storage\n[    1.098627] usbcore: registered new interface driver usb_ehset_test\n[    1.098645] usbcore: registered new interface driver lvs\n[    1.098814] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.099262] qpnp-pdphy c440000.qcom,spmi:qcom,pm7250b@2:qcom,usb-pdphy@1700: Linked as a consumer to regulator.8\n[    1.100191] qpnp-pdphy c440000.qcom,spmi:qcom,pm7250b@2:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.100266] qpnp-pdphy c440000.qcom,spmi:qcom,pm7250b@2:qcom,usb-pdphy@1700: Dropping the link to regulator.8\n[    1.100458] usbcore: registered new interface driver xpad\n[    1.100476] usbcore: registered new interface driver usb_acecad\n[    1.100494] usbcore: registered new interface driver aiptek\n[    1.100510] usbcore: registered new interface driver gtco\n[    1.100526] usbcore: registered new interface driver hanwang\n[    1.100544] usbcore: registered new interface driver kbtab\n[    1.100547] [TP_SPI]: Start register spi for tp\n[    1.100579] [TP_SPI]: Start probe\n[    1.100582] [TP_SPI]: init ts_xsfer device successful\n[    1.100936] input: uinput-goodix as /devices/virtual/input/input1\n[    1.101084] aw8624_i2c_init: aw8624 driver version v1.0.0\n[    1.101867] rtc-pm8xxx c440000.qcom,spmi:qcom,pmk8350@6:rtc@6100: rtc core: registered pm8xxx_rtc as rtc0\n[    1.101913] rtc-pm8xxx c440000.qcom,spmi:qcom,pmk8350@6:rtc@6100: setting system clock to 1970-08-02 03:42:45 UTC (18416565)\n[    1.102057] i2c /dev entries driver\n[    1.102380] i2c_geni 984000.i2c: Bus frequency is set to 400000Hz\n[    1.102954] i2c_geni 988000.i2c: Bus frequency is set to 400000Hz\n[    1.103296] i2c_geni 990000.i2c: Multi-EE usecase\n[    1.103300] i2c_geni 990000.i2c: Bus frequency is set to 400000Hz\n[    1.104048] nq-nci 1-0028: nqx_probe:NFC HWC INDIA : Do not probe nqx\n[    1.107989] PMIC@SID0: PM8008 v1.0 options: 0, 0, 0, 0\n[    1.112400] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    1.115179] qcom,pm8008-regulator 990000.i2c:qcom,pm8008@9:qcom,pm8008-regulator: Linked as a consumer to regulator.30\n[    1.115205] qcom,pm8008-regulator 990000.i2c:qcom,pm8008@9:qcom,pm8008-regulator: Linked as a consumer to regulator.67\n[    1.118182] qcom,pm8008-regulator 990000.i2c:qcom,pm8008@9:qcom,pm8008-regulator: Linked as a consumer to regulator.42\n[    1.122621] qcom,pm8008-regulator 990000.i2c:qcom,pm8008@9:qcom,pm8008-regulator: Linked as a consumer to regulator.2\n[    1.122906] pm8008_l6: Bringing 2800000uV into 1800000-1800000uV\n[    1.126381] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    1.163957] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[2, 2], pwr[FAST MODE, FAST MODE], rate = 2\n[    1.164030] ufshcd-qcom 1d84000.ufshc: ufshcd_wb_config: Write Booster Configured\n[    1.164324] scsi 0:0:0:49488: Well-known LUN    SKhynix  H9HQ15AFAMADAR   A251 PQ: 0 ANSI: 6\n[    1.164907] scsi 0:0:0:49476: Well-known LUN    SKhynix  H9HQ15AFAMADAR   A251 PQ: 0 ANSI: 6\n[    1.165370] scsi 0:0:0:49456: Well-known LUN    SKhynix  H9HQ15AFAMADAR   A251 PQ: 0 ANSI: 6\n[    1.165869] scsi 0:0:0:0: Direct-Access     SKhynix  H9HQ15AFAMADAR   A251 PQ: 0 ANSI: 6\n[    1.166243] scsi 0:0:0:1: Direct-Access     SKhynix  H9HQ15AFAMADAR   A251 PQ: 0 ANSI: 6\n[    1.166556] scsi 0:0:0:2: Direct-Access     SKhynix  H9HQ15AFAMADAR   A251 PQ: 0 ANSI: 6\n[    1.166875] scsi 0:0:0:3: Direct-Access     SKhynix  H9HQ15AFAMADAR   A251 PQ: 0 ANSI: 6\n[    1.167204] scsi 0:0:0:4: Direct-Access     SKhynix  H9HQ15AFAMADAR   A251 PQ: 0 ANSI: 6\n[    1.167527] scsi 0:0:0:5: Direct-Access     SKhynix  H9HQ15AFAMADAR   A251 PQ: 0 ANSI: 6\n[    1.169296] sd 0:0:0:0: Power-on or device reset occurred\n[    1.169311] sd 0:0:0:5: Power-on or device reset occurred\n[    1.169318] sd 0:0:0:1: Power-on or device reset occurred\n[    1.169326] sd 0:0:0:2: Power-on or device reset occurred\n[    1.169334] sd 0:0:0:3: Power-on or device reset occurred\n[    1.169341] sd 0:0:0:4: Power-on or device reset occurred\n[    1.170998] sd 0:0:0:5: [sdf] Write Protect is off\n[    1.171020] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    1.171040] sd 0:0:0:2: [sdc] Write Protect is off\n[    1.171044] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.171079] sd 0:0:0:3: [sdd] Write Protect is off\n[    1.171098] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.171118] sd 0:0:0:4: [sde] Write Protect is off\n[    1.171137] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    1.171157] sd 0:0:0:1: [sdb] Write Protect is off\n[    1.171176] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.171196] sd 0:0:0:0: [sda] Write Protect is off\n[    1.171199] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.171577] sd 0:0:0:2: [sdc] Optimal transfer size 524288 bytes\n[    1.171728] sd 0:0:0:3: [sdd] Optimal transfer size 524288 bytes\n[    1.171839] sd 0:0:0:4: [sde] Optimal transfer size 524288 bytes\n[    1.171941] sd 0:0:0:5: [sdf] Optimal transfer size 524288 bytes\n[    1.172048] sd 0:0:0:1: [sdb] Optimal transfer size 524288 bytes\n[    1.172152] sd 0:0:0:0: [sda] Optimal transfer size 524288 bytes\n[    1.175536]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5\n[    1.175988]  sdb: sdb1 sdb2\n[    1.176433]  sdd: sdd1 sdd2 sdd3\n[    1.176696]  sdc: sdc1 sdc2\n[    1.176980]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51 sde52 sde53 sde54 sde55 sde56 sde57 sde58 sde59 sde60 sde61 sde62\n[    1.180247]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21 sda22 sda23 sda24 sda25 sda26 sda27 sda28 sda29 sda30 sda31 sda32 sda33 sda34 sda35\n[    1.189585] PMIC@SID0: (null) v2.0 options: 0, 0, 0, 0\n[    1.190063] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    1.190343] aw8624_haptic 2-005a: aw8624_parse_dt: reset gpio provided ok\n[    1.190350] aw8624_haptic 2-005a: aw8624_parse_dt: irq gpio provided ok.\n[    1.190353] aw8624_parse_dt: vib_mode not found\n[    1.190377] aw8624_parse_dt: Read  qcom,wf-repeat-count failed !\n[    1.190380] aw8624_parse_dt: Read  qcom,wf-s-repeat-count failed !\n[    1.190384] aw8624_parse_dt: Read  qcom,wf-repeat-count failed !\n[    1.190386] aw8624_parse_dt: Read  qcom,wf-s-repeat-count failed !\n[    1.190389] aw8624_parse_dt: Read  qcom,wf-repeat-count failed !\n[    1.190391] aw8624_parse_dt: Read  qcom,wf-s-repeat-count failed !\n[    1.190394] aw8624_parse_dt: Read  qcom,wf-repeat-count failed !\n[    1.190396] aw8624_parse_dt: Read  qcom,wf-s-repeat-count failed !\n[    1.190399] aw8624_parse_dt: Read  qcom,wf-repeat-count failed !\n[    1.190401] aw8624_parse_dt: Read  qcom,wf-s-repeat-count failed !\n[    1.190404] aw8624_parse_dt: Read  qcom,wf-repeat-count failed !\n[    1.190405] aw8624_parse_dt: Read  qcom,wf-s-repeat-count failed !\n[    1.190409] aw8624_parse_dt: Read  qcom,wf-repeat-count failed !\n[    1.190410] aw8624_parse_dt: Read  qcom,wf-s-repeat-count failed !\n[    1.190414] aw8624_parse_dt: Read  qcom,wf-repeat-count failed !\n[    1.190415] aw8624_parse_dt: Read  qcom,wf-s-repeat-count failed !\n[    1.190419] aw8624_parse_dt: Read  qcom,wf-repeat-count failed !\n[    1.190420] aw8624_parse_dt: Read  qcom,wf-s-repeat-count failed !\n[    1.190424] aw8624_parse_dt: Read  qcom,wf-repeat-count failed !\n[    1.190425] aw8624_parse_dt: Read  qcom,wf-s-repeat-count failed !\n[    1.190498] aw8624_i2c_probe: found pin control aw8624_reset_reset\n[    1.190500] aw8624_i2c_probe: found pin control aw8624_reset_active\n[    1.190501] aw8624_i2c_probe: found pin control aw8624_interrupt_active\n[    1.230148] i2c_geni 990000.i2c: i2c error :-107\n[    1.230153] aw8624_i2c_read: i2c_read cnt=0 error=-107\n[    1.271424] aw8624_i2c_probe: aw8624_irq success.\n[    1.452921] aw8624_haptic_stop_delay: do not enter standby automatically\n[    1.454854] input: aw8624_haptic as /devices/platform/soc/990000.i2c/i2c-2/2-005a/input/input2\n[    1.454938] aw8624_i2c_probe: probe completed successfully!\n[    1.456089] msm_npu 9900000.qcom,msm_npu: Linked as a consumer to 15000000.apps-smmu\n[    1.456369] iommu: Adding device 9900000.qcom,msm_npu to group 13\n[    1.456545] msm_npu 9900000.qcom,msm_npu: Linked as a consumer to regulator.58\n[    1.456565] msm_npu 9900000.qcom,msm_npu: Linked as a consumer to regulator.27\n[    1.456695] register_client_adhoc:find path.src 154 dest 512\n[    1.456949] register_client_adhoc:find path.src 154 dest 620\n[    1.457215] register_client_adhoc:Client handle 21 9900000.qcom,msm_npu\n[    1.457218] NPU_INFO: npu_parse_dt_bw: 1832 NPU BW client sets up successfully\n[    1.458906] NPU_ERR: npu_debugfs_init: 360 debugfs_create_dir for npu failed, error -19\n[    1.461207] Couldn't parse device tree rc=-517\n[    1.462851] qcom,smb1398-charger 990000.i2c:qcom,smb1396@34:qcom,div2_cp: Couldn't parse devicetree, rc=-517\n[    1.463053] i2c_geni 990000.i2c: i2c error :-107\n[    1.463059] [bq2597x-STANDALONE]:__bq2597x_read_byte:i2c read fail: can't read from reg 0x13\n[    1.463062] [bq2597x-STANDALONE]:bq2597x_charger_probe:No bq2597x device found!\n[    1.463086] [Onewire] onewire_gpio_init: onewire gpio init entry.\n[    1.463325] [Onewire] onewire_gpio_probe: onewire probe entry\n[    1.463414] [Onewire] onewire_gpio_probe: onewire_gpio_level_addr is f10b004; onewire_gpio_cfg_addr is f10b000\n[    1.463417] [Onewire] onewire_gpio_probe: onewire_data->gpio_cfg66_reg is 85fe000; onewire_data->gpio_in_out_reg is 85ed004\n[    1.463534] [ds28e16] ds28e16_init: ds28e16_init entry.\n[    1.463703] [ds28e16] ds28e16_probe: ds28e16_probe entry.\n[    1.463833] [ds28e16] verify_psy_register: batt_verify power supply register successfully\n[    1.734784] [ds28e16] ds28el16_get_page_data_retry: flag_mi_page0_data is 1\n[    1.734785] [ds28e16] ds28el16_get_page_data_retry: mi_page0_data data:\n[    1.734790] [ds28e16] ds28el16_get_page_data_retry: 43 42 4d 34 57 30 42 46 0b 52 07 47 4e 44 31 31\n[    1.834549] device-mapper: uevent: version 1.0.3\n[    1.834643] device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel@redhat.com\n[    1.840174] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in devicetree\n[    1.840179] bt_power_populate_dt_pinfo: wl-reset-gpio not provided in devicetree\n[    1.840212] bt_dt_parse_vreg_info: qca,bt-vdd-ldo: is not provided in device tree\n[    1.840214] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    1.840217] bt_dt_parse_vreg_info: qca,bt-vdd-aon: is not provided in device tree\n[    1.840219] bt_dt_parse_vreg_info: qca,bt-vdd-dig: is not provided in device tree\n[    1.840221] bt_dt_parse_vreg_info: qca,bt-vdd-rfa1: is not provided in device tree\n[    1.840224] bt_dt_parse_vreg_info: qca,bt-vdd-rfa2: is not provided in device tree\n[    1.840226] bt_dt_parse_vreg_info: qca,bt-vdd-asd: is not provided in device tree\n[    1.840228] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.841051] EDAC DEVICE0: Giving out device to module soc:kryo-erp controller cache: DEV soc:kryo-erp (INTERRUPT)\n[    1.860949] sdhci: Secure Digital Host Controller Interface driver\n[    1.860952] sdhci: Copyright(c) Pierre Ossman\n[    1.860954] sdhci-pltfm: SDHCI platform and OF driver helper\n[    1.861464] hidraw: raw HID events driver (C) Jiri Kosina\n[    1.862850] usbcore: registered new interface driver usbhid\n[    1.862852] usbhid: USB HID core driver\n[    1.862937] ashmem: initialized\n[    1.862979] wlan_hdd_state wlan major(498) initialized\n[    1.863403] bimc-bwmon 90b6300.qcom,cpu-cpu-llcc-bwmon: BW HWmon governor registered.\n[    1.863452] bimc-bwmon 90cd000.qcom,cpu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    1.863820] bimc-bwmon 60400.qcom,npu-npu-llcc-bwmon: BW HWmon governor registered.\n[    1.863866] bimc-bwmon 90ce000.qcom,npu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    1.864124] bimc-bwmon 70300.qcom,npudsp-npu-ddr-bwmon: BW HWmon governor registered.\n[    1.866149] sdhci_msm 8804000.sdhci: core_reset unavailable,err = -2\n[    1.866153] sdhci_msm 8804000.sdhci: Reset data parsing error\n[    1.866305] register_client_adhoc:find path.src 81 dest 10073\n[    1.866472] register_client_adhoc:find path.src 135 dest 512\n[    1.866612] register_client_adhoc:find path.src 1 dest 608\n[    1.866829] register_client_adhoc:Client handle 22 sdhc2\n[    1.867007] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-cpu-l3-latmon: Memory Latency governor registered.\n[    1.867330] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.867506] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.867672] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-computemon: Compute governor registered.\n[    1.867880] arm-memlat-mon soc:qcom,cpu6-cpugrp:qcom,cpu6-cpu-l3-latmon: Memory Latency governor registered.\n[    1.868045] arm-memlat-mon soc:qcom,cpu6-cpugrp:qcom,cpu6-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.868211] arm-memlat-mon soc:qcom,cpu6-cpugrp:qcom,cpu6-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.868373] arm-memlat-mon soc:qcom,cpu6-cpugrp:qcom,cpu6-computemon: Compute governor registered.\n[    1.869456] sdhci_msm 8804000.sdhci: Linked as a consumer to regulator.39\n[    1.869473] sdhci_msm 8804000.sdhci: Linked as a consumer to regulator.36\n[    1.869603] register_client_adhoc:find path.src 1 dest 770\n[    1.869678] register_client_adhoc:Client handle 23 soc:qcom,cpu-cpu-llcc-bw\n[    1.869877] register_client_adhoc:find path.src 129 dest 512\n[    1.869938] register_client_adhoc:Client handle 24 soc:qcom,cpu-llcc-ddr-bw\n[    1.870375] register_client_adhoc:find path.src 154 dest 770\n[    1.870490] register_client_adhoc:Client handle 25 soc:qcom,npu-npu-llcc-bw\n[    1.870675] register_client_adhoc:find path.src 770 dest 512\n[    1.870776] register_client_adhoc:Client handle 26 soc:qcom,npu-llcc-ddr-bw\n[    1.870941] register_client_adhoc:find path.src 154 dest 512\n[    1.871114] register_client_adhoc:Client handle 27 soc:qcom,npudsp-npu-ddr-bw\n[    1.871293] register_client_adhoc:find path.src 1 dest 770\n[    1.871351] register_client_adhoc:Client handle 28 soc:qcom,cpu0-cpu-llcc-lat\n[    1.871502] register_client_adhoc:find path.src 129 dest 512\n[    1.871561] register_client_adhoc:Client handle 29 soc:qcom,cpu0-llcc-ddr-lat\n[    1.871713] register_client_adhoc:find path.src 129 dest 512\n[    1.871776] register_client_adhoc:Client handle 30 soc:qcom,cpu0-cpu-ddr-latfloor\n[    1.871924] register_client_adhoc:find path.src 1 dest 770\n[    1.871988] register_client_adhoc:Client handle 31 soc:qcom,cpu6-cpu-llcc-lat\n[    1.872139] register_client_adhoc:find path.src 129 dest 512\n[    1.872198] register_client_adhoc:Client handle 32 soc:qcom,cpu6-llcc-ddr-lat\n[    1.872355] register_client_adhoc:find path.src 129 dest 512\n[    1.872413] register_client_adhoc:Client handle 33 soc:qcom,cpu6-cpu-ddr-latfloor\n[    1.872576] register_client_adhoc:find path.src 1 dest 627\n[    1.872779] register_client_adhoc:Client handle 34 soc:qcom,snoc_cnoc_keepalive\n[    1.872991] register_client_adhoc:find path.src 26 dest 512\n[    1.873120] register_client_adhoc:Client handle 35 soc:qcom,gpubw\n[    1.875744] qcom-llcc-pmu 90cc000.llcc-pmu: Registered llcc_pmu, type: 8\n[    1.876761] usbcore: registered new interface driver snd-usb-audio\n[    1.876940] uaudio-qmi soc:usb_audio_qmi_dev: Linked as a consumer to 15000000.apps-smmu\n[    1.877000] iommu: Adding device soc:usb_audio_qmi_dev to group 14\n[    1.923152] [CSPL] Initializing misc device\n[    1.926052] cs35l41 0-0040: cs35l41 i2c probe start\n[    1.926160] cs35l41 0-0040: 0-0040 supply VA not found, using dummy regulator\n[    1.926173] cs35l41 0-0040: Linked as a consumer to regulator.0\n[    1.926189] cs35l41 0-0040: 0-0040 supply VP not found, using dummy regulator\n[    1.978525] [ds28e16] ds28el16_get_page_data_retry: flag_mi_page0_data is 1\n[    1.978527] [ds28e16] ds28el16_get_page_data_retry: mi_page0_data data:\n[    1.978532] [ds28e16] ds28el16_get_page_data_retry: 43 42 4d 34 57 30 42 46 0b 52 07 47 4e 44 31 31\n[    1.978560] [ds28e16] authentic_work: battery authentic work begin to restart.\n[    1.978583] [ds28e16] verify_get_property: unsupported property 4\n[    1.978594] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start 0...\n[    2.022093] cs35l41 0-0040: Cirrus Logic CS35L41 (35a41), Revision: B2\n[    2.031202] [ds28e16] Read_RomID: Ready to write 0x33 to maxim IC!\n[    2.032207] [ds28e16] Read_RomID: RomID = 9f,58,5a,d6,11,f0,04,98\n[    2.032209] [ds28e16] Read_RomID: crc_low_first = 98\n[    2.032216] [ds28e16] ds28el16_get_page_status_retry: read page status communication start... 0\n[    2.032223] [ds28e16] ds28el16_get_page_data_retry: flag_mi_page0_data is 1\n[    2.032224] [ds28e16] ds28el16_get_page_data_retry: mi_page0_data data:\n[    2.032228] [ds28e16] ds28el16_get_page_data_retry: 43 42 4d 34 57 30 42 46 0b 52 07 47 4e 44 31 31\n[    2.040161] cs35l41 0-0041: cs35l41 i2c probe start\n[    2.040223] cs35l41 0-0041: 0-0041 supply VA not found, using dummy regulator\n[    2.040232] cs35l41 0-0041: Linked as a consumer to regulator.0\n[    2.040247] cs35l41 0-0041: 0-0041 supply VP not found, using dummy regulator\n[    2.040276] cs35l41 0-0041: Reset line busy, assuming shared reset\n[    2.129855] cs35l41 0-0041: Cirrus Logic CS35L41 (35a41), Revision: B2\n[    2.190036] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_lrme: Linked as a consumer to 15000000.apps-smmu\n[    2.190295] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 15\n[    2.190753] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_ife: Linked as a consumer to 15000000.apps-smmu\n[    2.210110] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 16\n[    2.210519] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_jpeg: Linked as a consumer to 15000000.apps-smmu\n[    2.230081] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 17\n[    2.230260] platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node camera_region@86000000\n[    2.230682] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_icp: Linked as a consumer to 15000000.apps-smmu\n[    2.250100] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 18\n[    2.250251] CAM_INFO: CAM-SMMU: cam_smmu_get_memory_regions_info: 3730 [icp] : Discard region specified [0xdff00000 0xe0200000] in [0x10c00000 0xfef00000]\n[    2.250502] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm: Linked as a consumer to 15000000.apps-smmu\n[    2.270082] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 19\n[    2.276396] [ds28e16] ds28el16_get_page_data_retry: flag_mi_page0_data is 1\n[    2.276398] [ds28e16] ds28el16_get_page_data_retry: mi_page0_data data:\n[    2.276404] [ds28e16] ds28el16_get_page_data_retry: 43 42 4d 34 57 30 42 46 0b 52 07 47 4e 44 31 31\n[    2.276435] [ds28e16] verify_get_property: unsupported property 232\n[    2.276437] [ds28e16] verify_get_property: unsupported property 233\n[    2.276439] [ds28e16] ds28el16_get_page_data_retry: flag_mi_page0_data is 1\n[    2.276440] [ds28e16] ds28el16_get_page_data_retry: mi_page0_data data:\n[    2.276444] [ds28e16] ds28el16_get_page_data_retry: 43 42 4d 34 57 30 42 46 0b 52 07 47 4e 44 31 31\n[    2.290135] cam-cpas ac40000.qcom,cam-cpas: Linked as a consumer to regulator.54\n[    2.294590] register_client_adhoc:find path.src 1 dest 589\n[    2.294854] register_client_adhoc:Client handle 36 cam_ahb\n[    2.294949] register_client_adhoc:find path.src 170 dest 512\n[    2.295147] register_client_adhoc:Client handle 37 cam_hf_0_mnoc\n[    2.295248] register_client_adhoc:find path.src 137 dest 512\n[    2.295441] register_client_adhoc:Client handle 38 cam_sf_0_mnoc\n[    2.295523] register_client_adhoc:find path.src 171 dest 512\n[    2.295718] register_client_adhoc:Client handle 39 cam_sf_icp_mnoc\n[    2.295793] register_client_adhoc:find path.src 146 dest 778\n[    2.295835] register_client_adhoc:Client handle 40 cam_hf_0_camnoc\n[    2.295892] register_client_adhoc:find path.src 148 dest 778\n[    2.295933] register_client_adhoc:Client handle 41 cam_sf_0_camnoc\n[    2.295990] register_client_adhoc:find path.src 182 dest 778\n[    2.296031] register_client_adhoc:Client handle 42 cam_sf_icp_camnoc\n[    2.330104] msm_cam_cdm ac48000.qcom,cpas-cdm0: Linked as a consumer to regulator.54\n[    2.331801] csid_17x acb3000.qcom,csid0: Linked as a consumer to regulator.54\n[    2.331819] csid_17x acb3000.qcom,csid0: Linked as a consumer to regulator.50\n[    2.331996] csid_17x acba000.qcom,csid1: Linked as a consumer to regulator.54\n[    2.332017] csid_17x acba000.qcom,csid1: Linked as a consumer to regulator.51\n[    2.332169] csid_17x acc1000.qcom,csid2: Linked as a consumer to regulator.54\n[    2.332187] csid_17x acc1000.qcom,csid2: Linked as a consumer to regulator.52\n[    2.332911] csid_lite acc8000.qcom,csid-lite: Linked as a consumer to regulator.54\n[    2.333584] cam_vfe acaf000.qcom,vfe0: Linked as a consumer to regulator.54\n[    2.333600] cam_vfe acaf000.qcom,vfe0: Linked as a consumer to regulator.50\n[    2.333712] CAM_ERR: CAM-ISP: cam_vfe_bus_init: 49 Unsupported Bus RD Version 0x0\n[    2.333715] CAM_WARN: CAM-ISP: cam_vfe_core_init: 723 Error, RD cam_vfe_bus_init failed\n[    2.335564] cam_vfe acb6000.qcom,vfe1: Linked as a consumer to regulator.54\n[    2.335581] cam_vfe acb6000.qcom,vfe1: Linked as a consumer to regulator.51\n[    2.335683] CAM_ERR: CAM-ISP: cam_vfe_bus_init: 49 Unsupported Bus RD Version 0x0\n[    2.335686] CAM_WARN: CAM-ISP: cam_vfe_core_init: 723 Error, RD cam_vfe_bus_init failed\n[    2.338613] cam_vfe acbd000.qcom,vfe2: Linked as a consumer to regulator.54\n[    2.338630] cam_vfe acbd000.qcom,vfe2: Linked as a consumer to regulator.52\n[    2.338732] CAM_ERR: CAM-ISP: cam_vfe_bus_init: 49 Unsupported Bus RD Version 0x0\n[    2.338734] CAM_WARN: CAM-ISP: cam_vfe_core_init: 723 Error, RD cam_vfe_bus_init failed\n[    2.341364] [ds28e16] ds28el16_get_page_data_retry: flag_mi_page0_data is 1\n[    2.341440] CAM_INFO: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 560 No clk data for ife_dsp_clk\n[    2.341444] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 154 Option clk get failed with rc -22\n[    2.341467] cam_vfe acc4000.qcom,vfe-lite: Linked as a consumer to regulator.54\n[    2.341599] [ds28e16] ds28el16_get_page_data_retry: mi_page0_data data:\n[    2.341604] [ds28e16] ds28el16_get_page_data_retry: 43 42 4d 34 57 30 42 46 0b 52 07 47 4e 44 31 31\n[    2.341672] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start 0...\n[    2.341677] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start 0...\n[    2.345157] CAM_INFO: CAM-ISP: cam_isp_dev_probe: 167 Camera ISP probe complete\n[    2.346092] CAM_INFO: CAM: cam_res_mgr_probe: 682 Disable shared gpio support.\n[    2.346616] cam-cci-driver ac4a000.qcom,cci0: Linked as a consumer to regulator.54\n[    2.370104] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 454 Device Type :0\n[    2.370277] cam-cci-driver ac4b000.qcom,cci1: Linked as a consumer to regulator.54\n[    2.390031] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 454 Device Type :1\n[    2.390657] cam-csiphy-driver ac65000.qcom,csiphy0: Linked as a consumer to regulator.54\n[    2.390676] cam-csiphy-driver ac65000.qcom,csiphy0: Linked as a consumer to regulator.44\n[    2.390691] cam-csiphy-driver ac65000.qcom,csiphy0: Linked as a consumer to regulator.22\n[    2.390705] cam-csiphy-driver ac65000.qcom,csiphy0: Linked as a consumer to regulator.26\n[    2.390836] cam-csiphy-driver ac66000.qcom,csiphy1: Linked as a consumer to regulator.54\n[    2.390851] cam-csiphy-driver ac66000.qcom,csiphy1: Linked as a consumer to regulator.44\n[    2.390861] cam-csiphy-driver ac66000.qcom,csiphy1: Linked as a consumer to regulator.22\n[    2.390872] cam-csiphy-driver ac66000.qcom,csiphy1: Linked as a consumer to regulator.26\n[    2.390995] cam-csiphy-driver ac67000.qcom,csiphy2: Linked as a consumer to regulator.54\n[    2.391008] cam-csiphy-driver ac67000.qcom,csiphy2: Linked as a consumer to regulator.44\n[    2.391021] cam-csiphy-driver ac67000.qcom,csiphy2: Linked as a consumer to regulator.22\n[    2.391032] cam-csiphy-driver ac67000.qcom,csiphy2: Linked as a consumer to regulator.26\n[    2.391156] cam-csiphy-driver ac68000.qcom,csiphy3: Linked as a consumer to regulator.54\n[    2.391170] cam-csiphy-driver ac68000.qcom,csiphy3: Linked as a consumer to regulator.44\n[    2.391181] cam-csiphy-driver ac68000.qcom,csiphy3: Linked as a consumer to regulator.22\n[    2.391191] cam-csiphy-driver ac68000.qcom,csiphy3: Linked as a consumer to regulator.26\n[    2.391913] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 60 No GPIO found\n[    2.395181] CAM_WARN: CAM-ICP: cam_a5_get_dt_properties: 46 QoS need not be set\n[    2.395224] cam-a5 ac00000.qcom,a5: Linked as a consumer to regulator.54\n[    2.395655] cam-ipe ac87000.qcom,ipe0: Linked as a consumer to regulator.53\n[    2.396044] cam-bps ac6f000.qcom,bps: Linked as a consumer to regulator.49\n[    2.397524] cam-jpeg-enc ac4e000.qcom,jpegenc: Linked as a consumer to regulator.54\n[    2.397962] cam-jpeg-dma ac52000.qcom,jpegdma: Linked as a consumer to regulator.54\n[    2.398632] CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 164 Camera JPEG probe complete\n[    2.399821] cam_lrme_hw ac6b000.qcom,lrme: Linked as a consumer to regulator.54\n[    2.403377] rmnet_perf_init(): initializing rmnet_perf\n[    2.403382] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = lo\n[    2.403385] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = bond0\n[    2.403387] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = dummy0\n[    2.403394] rmnet_shs_module_init(): Starting rmnet SHS module\n[    2.403941] register_client_adhoc:find path.src 1 dest 590\n[    2.404213] register_client_adhoc:Client handle 43 disp_rsc_reg\n[    2.404235] register_client_adhoc:find path.src 20003 dest 20513\n[    2.404394] register_client_adhoc:Client handle 44 disp_rsc_mnoc_llcc\n[    2.404418] register_client_adhoc:find path.src 20000 dest 20512\n[    2.404487] register_client_adhoc:Client handle 45 disp_rsc_ebi\n[    2.404537] sde_rsc af20000.qcom,sde_rscc: Linked as a consumer to regulator.55\n[    2.404685] [sde_rsc_hw:rsc_hw_init_v3:537]: sde rsc init successfully done\n[    2.404786] [sde_rsc:sde_rsc_probe:1594]: sde rsc index:0 probed successfully\n[    2.405423] dsi_phy ae94400.qcom,mdss_dsi_phy0: ae94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    2.405434] dsi_phy ae94400.qcom,mdss_dsi_phy0: Linked as a consumer to regulator.0\n[    2.405446] dsi_phy ae94400.qcom,mdss_dsi_phy0: Linked as a consumer to regulator.4\n[    2.405463] [drm:dsi_phy_driver_probe] [msm-dsi-info]: DSI_0: Probe successful\n[    2.406200] drm_dsi_ctrl ae94000.qcom,mdss_dsi0_ctrl: Linked as a consumer to regulator.44\n[    2.406215] drm_dsi_ctrl ae94000.qcom,mdss_dsi0_ctrl: Linked as a consumer to regulator.26\n[    2.406220] AXI: get_pdata(): Error: Client name not found\n[    2.406223] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    2.406238] [drm:dsi_ctrl_dev_probe] [msm-dsi-info]: dsi-ctrl-0: Probe successful\n[    2.415851] [ds28e16] ds28el16_get_page_data_retry: flag_mi_page0_data is 1\n[    2.415853] [ds28e16] ds28el16_get_page_data_retry: mi_page0_data data:\n[    2.415858] [ds28e16] ds28el16_get_page_data_retry: 43 42 4d 34 57 30 42 46 0b 52 07 47 4e 44 31 31\n[    2.416302] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.416324] [drm] [msm-dsi-warn]: [xiaomi 36 02 0a video mode dsc dsi panel] fallback to default te-pin-select\n[    2.417772] register_client_adhoc:find path.src 1 dest 590\n[    2.418004] register_client_adhoc:Client handle 46 mdss_reg\n[    2.418025] register_client_adhoc:find path.src 22 dest 512\n[    2.418221] register_client_adhoc:Client handle 47 mdss_sde\n[    2.418427] [drm:sde_dbg_init:4764] evtlog_status: enable:11, panic:1, dump:2\n[    2.418449] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops sde_wb_comp_ops)\n[    2.418494] msm-dsi-display soc:qcom,dsi-display-primary: Linked as a consumer to regulator.31\n[    2.418525] msm-dsi-display soc:qcom,dsi-display-primary: Linked as a consumer to regulator.64\n[    2.418548] msm-dsi-display soc:qcom,dsi-display-primary: Linked as a consumer to regulator.65\n[    2.418681] [drm:dsi_display_bind] [msm-dsi-info]: Successfully bind display panel 'qcom,mdss_dsi_j17_36_02_0a_dsc_video'\n[    2.418804] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-primary (ops dsi_display_comp_ops)\n[    2.418812] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops sde_rsc_comp_ops)\n[    2.418832] [drm] mapped mdp address space @00000000b18b3371\n[    2.419572] mmc0: SDHCI controller on 8804000.sdhci [8804000.sdhci] using 64-bit ADMA in legacy mode\n[    2.419732] [drm:_sde_kms_hw_init_blocks:3623] sde hardware revision:0x60040000\n[    2.421536] msmdrm_smmu ae00000.qcom,mdss_mdp:qcom,smmu_sde_unsec_cb: Linked as a consumer to 15000000.apps-smmu\n[    2.421747] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_unsec_cb to group 20\n[    2.421893] [drm] probing device qcom,smmu_sde_unsec\n[    2.421896] [drm] Created domain mdp_ns, secure=0\n[    2.422651] msmdrm_smmu ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb: Linked as a consumer to 15000000.apps-smmu\n[    2.423205] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 21\n[    2.423351] [drm] probing device qcom,smmu_sde_sec\n[    2.423355] [drm] Created domain mdp_s, secure=1\n[    2.424101] backlight: bd_cdev_get_max_brightness: Skip thermal statistics for big max_brightness(4095) to avoid panic\n[    2.424309] [drm:dsi_panel_get_mode] [msm-dsi-info]: default topology: lm: 1 comp_enc:1 intf: 1\n[    2.426143] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    2.426145] [drm] No driver support for vblank timestamp query.\n[    2.426384] [drm] Initialized msm_drm 1.3.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    2.426401] [drm] cont_splash enabled in 1 of 1 display(s)\n[    2.426595] [drm:dsi_ctrl_isr_configure] [msm-dsi-info]: dsi-ctrl-0: IRQ 333 registered\n[    2.438775] msm_vidc:   err : ffffffff: .....: Failed to create debugfs for msm_vidc\n[    2.439432] msm_vidc:   err : ffffffff: .....: Failed to get platform resources\n[    2.439435] msm_vidc:   err : ffffffff: .....: Failed to init core\n[    2.439454] msm_vidc_v4l2: probe of aa00000.qcom,vidc0 failed with error -22\n[    2.439780] msm_vidc:   err : ffffffff: .....: no device Registered\n[    2.440001] msm_vidc:   err : ffffffff: .....: Failed to create debugfs for msm_vidc\n[    2.441249] msm_vidc_v4l2 aa00000.qcom,vidc1:non_secure_cb: Linked as a consumer to 15000000.apps-smmu\n[    2.441466] iommu: Adding device aa00000.qcom,vidc1:non_secure_cb to group 22\n[    2.441891] msm_vidc_v4l2 aa00000.qcom,vidc1:secure_non_pixel_cb: Linked as a consumer to 15000000.apps-smmu\n[    2.442429] iommu: Adding device aa00000.qcom,vidc1:secure_non_pixel_cb to group 23\n[    2.442865] msm_vidc_v4l2 aa00000.qcom,vidc1:secure_bitstream_cb: Linked as a consumer to 15000000.apps-smmu\n[    2.443269] iommu: Adding device aa00000.qcom,vidc1:secure_bitstream_cb to group 24\n[    2.443703] msm_vidc_v4l2 aa00000.qcom,vidc1:secure_pixel_cb: Linked as a consumer to 15000000.apps-smmu\n[    2.444076] iommu: Adding device aa00000.qcom,vidc1:secure_pixel_cb to group 25\n[    2.444903] GACT probability NOT on\n[    2.444911] Mirror/redirect action on\n[    2.444933] netem: version 1.3\n[    2.444937] u32 classifier\n[    2.444938]     Actions configured\n[    2.445517] xt_time: kernel timezone is -0000\n[    2.445593] gre: GRE over IPv4 demultiplexor driver\n[    2.445595] IPv4 over IPsec tunneling driver\n[    2.445768] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip_vti0\n[    2.446033] Initializing XFRM netlink socket\n[    2.446042] IPsec XFRM device driver\n[    2.446254] NET: Registered protocol family 10\n[    2.446907] Segment Routing with IPv6\n[    2.446956] mip6: Mobile IPv6\n[    2.447177] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6_vti0\n[    2.447284] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    2.447408] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = sit0\n[    2.447630] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6tnl0\n[    2.447724] NET: Registered protocol family 17\n[    2.447735] NET: Registered protocol family 15\n[    2.447775] l2tp_core: L2TP core driver, V2.0\n[    2.447783] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    2.447784] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    2.447793] l2tp_netlink: L2TP netlink interface\n[    2.447809] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    2.447811] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    2.447837] sctp: Hash tables configured (bind 256/256)\n[    2.447968] Key type dns_resolver registered\n[    2.448790] minidump-id not found for npu\n[    2.448829] subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    2.448876] subsys-pil-tz 9800000.qcom,npu: for md_npu segments only will be dumped.\n[    2.450099] platform 3d6a000.qcom,gmu: Linked as a consumer to regulator.56\n[    2.450118] platform 3d6a000.qcom,gmu: Linked as a consumer to regulator.57\n[    2.450923] platform 3d6a000.qcom,gmu:gmu_user: Linked as a consumer to 3d40000.arm,smmu-kgsl\n[    2.450983] iommu: Adding device 3d6a000.qcom,gmu:gmu_user to group 26\n[    2.451468] NPU_WARN: npu_bridge_mbox_work: 1216 NPU fw is not loaded\n[    2.452869] platform 3d6a000.qcom,gmu:gmu_kernel: Linked as a consumer to 3d40000.arm,smmu-kgsl\n[    2.452911] iommu: Adding device 3d6a000.qcom,gmu:gmu_kernel to group 27\n[    2.454762] register_client_adhoc:find path.src 26 dest 512\n[    2.454936] register_client_adhoc:Client handle 48 grp3d\n[    2.454960] register_client_adhoc:find path.src 26 dest 10036\n[    2.455100] register_client_adhoc:Client handle 49 cnoc\n[    2.455104] query_client_usecase_all: query_start\n[    2.455162] query_client_usecase_all: query_start\n[    2.456004] kgsl-3d 3d00000.qcom,kgsl-3d0: Linked as a consumer to regulator.56\n[    2.456026] kgsl-3d 3d00000.qcom,kgsl-3d0: Linked as a consumer to regulator.57\n[    2.456069] register_client_adhoc:find path.src 1 dest 598\n[    2.456312] register_client_adhoc:Client handle 51 gpu_cfg\n[    2.457413] platform 3d40000.qcom,kgsl-iommu:gfx3d_user: Linked as a consumer to 3d40000.arm,smmu-kgsl\n[    2.457476] iommu: Adding device 3d40000.qcom,kgsl-iommu:gfx3d_user to group 28\n[    2.457809] platform 3d40000.qcom,kgsl-iommu:gfx3d_secure: Linked as a consumer to 3d40000.arm,smmu-kgsl\n[    2.457850] iommu: Adding device 3d40000.qcom,kgsl-iommu:gfx3d_secure to group 29\n[    2.482768] msm-dwc3 a600000.ssusb: Linked as a consumer to regulator.46\n[    2.482954] irq: type mismatch, failed to map hwirq-14 for interrupt-controller@b220000!\n[    2.483028] irq: type mismatch, failed to map hwirq-15 for interrupt-controller@b220000!\n[    2.483449] dwc3 a600000.dwc3: Failed to get clk 'ref': -2\n[    2.483537] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.484198] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    2.484271] sps:BAM 0x000000000a704000 is registered.\n[    2.484594] register_client_adhoc:find path.src 61 dest 512\n[    2.484943] register_client_adhoc:find path.src 61 dest 676\n[    2.485130] register_client_adhoc:find path.src 1 dest 583\n[    2.485329] register_client_adhoc:Client handle 50 usb0\n[    2.486081] ipa_rm ipa_rm_delete_resource:139 IPA RM was not initialized\n[    2.486086] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    2.486090] ipa_rm ipa_rm_delete_resource:139 IPA RM was not initialized\n[    2.486093] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    2.486353] msm-dwc3 a600000.ssusb: Dropping the link to regulator.46\n[    2.486691] qpnp-pdphy c440000.qcom,spmi:qcom,pm7250b@2:qcom,usb-pdphy@1700: Linked as a consumer to regulator.8\n[    2.487438] qpnp-pdphy c440000.qcom,spmi:qcom,pm7250b@2:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    2.487499] qpnp-pdphy c440000.qcom,spmi:qcom,pm7250b@2:qcom,usb-pdphy@1700: Dropping the link to regulator.8\n[    2.487992] six-pin-step-chg-cfg: 4200000uV, 6000000uA\n[    2.487994] six-pin-step-chg-cfg: 4400000uV, 5400000uA\n[    2.487996] six-pin-step-chg-cfg: 4470000uV, 3776000uA\n[    2.488465] QCOM-BATT: qcom_batt_create_debugfs: Couldn't create battery debugfs rc=-19\n[    2.488909] pm7250b_charger: smblib_set_charge_param: usb otg current limit = 3000000 (0x05)\n[    2.488938] pm7250b_charger: smblib_set_charge_param: DC input current limit = 100000 (0x02)\n[    2.490135] pm7250b_charger: smblib_set_charge_param: switching frequency = 1050 (0x08)\n[    2.490138] PD2.0 UV_WA 0\n[    2.490183] qcom,qpnp-smb5 c440000.qcom,spmi:qcom,pm7250b@2:qcom,qpnp-smb5: Linked as a consumer to regulator.66\n[    2.490211] pm7250b_charger: smblib_update_usb_type: usb_online=0 QC3P5=0\n[    2.490214] pm7250b_charger: smblib_update_usb_type: APSD=UNKNOWN PD=0 QC3P5=0\n[    2.490221] pm7250b_charger: smblib_usb_plugin_locked: IRQ: usbin-plugin detached\n[    2.490992] pm7250b_charger: smblib_set_charge_param: fast charge current: -22 is out of range [0, 8000000]\n[    2.491005] pm7250b_charger: smblib_set_charge_param: fast charge current = 0 (0x00)\n[    2.491011] pm7250b_charger: dc_plugin_irq_handler: dcin_present= 0, usbin_present= 0, cp_reason = 0\n[    2.491162] pm7250b_charger: smblib_run_aicl: re-running AICL\n[    2.491236] pm7250b_charger: typec_state_change_irq_handler: IRQ: cc-state-change; Type-C NONE detected\n[    2.491249] pm7250b_charger: usb_source_change_irq_handler: APSD_STATUS = 0x00\n[    2.491262] pm7250b_charger: usb_source_change_irq_handler: APSD_STATUS = 0x00\n[    2.491276] pm7250b_charger: smblib_eval_chg_termination: Couldn't read SOC value, rc=-22\n[    2.491859] Couldn't get vbat rc=-22\n[    2.492358] pm7250b_charger: smblib_set_charge_param: float voltage = 4450000 (0x55)\n[    2.492438] Couldn't get vbat rc=-22\n[    2.492441] bcl_soc:bcl_read_soc battery percentage read error:-61\n[    2.492479] pm7250b_charger: smblib_set_charge_param: fast charge current = 1500000 (0x1e)\n[    2.499304] pm7250b_charger: smblib_run_aicl: re-running AICL\n[    2.499331] pm7250b_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 1!\n[    2.499333] pm7250b_charger: smblib_set_prop_typec_power_role: power role already in 1, ignore!\n[    2.499390] SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    2.499441] QPNP SMB5 probed successfully\n[    2.499716] QG-K: qg_parse_dt: PMIC subtype 46 Digital major 1\n[    2.499747] QG-K: qg_parse_s2_dt: DT: S2 FIFO length=5 low_vbat_length=2 acc_length=128 acc_interval=100\n[    2.499765] QG-K: qg_parse_cl_dt: DT: cl_min_start_soc=10 cl_max_start_soc=15 cl_min_temp=150 cl_max_temp=500 chip->cl->dt.cl_wt_enable=0\n[    2.499769] QG-K: qg_parse_dt: DT: OCV timer_expiry =-22min ocv_tol_threshold=-22uV\n[    2.499804] QG-K: qg_parse_dt: DT: vbatt_empty_mv=3100mV vbatt_low_mv=3300mV delta_soc=1 ext-sns=1, batterysecret_support = 1\n[    2.499837] QG-K: qg_set_wa_flags: wa_flags = 0\n[    2.499868] QG-K: qg_master_hold: Master hold = 1\n[    2.500081] QG-K: qg_master_hold: Master hold = 0\n[    2.500406] thermal thermal_zone96: binding zone quiet-therm-step with cdev battery failed:-22\n[    2.500607] Couldn't get vbat rc=-22\n[    2.500739] Couldn't get vbat rc=-22\n[    2.500741] bcl_soc:bcl_read_soc battery percentage read error:-61\n[    2.500807] pm7250b_charger: smblib_set_charge_param: float voltage = 4450000 (0x55)\n[    2.510480] pm7250b_charger: smblib_set_charge_param: float voltage = 4450000 (0x55)\n[    2.512417] QG-K: qg_vbat_thresholds_config: VBAT EMPTY threshold updated to 3100mV temp=256\n[    2.512441] QG-K: qg_vbat_thresholds_config: VBAT LOW threshold updated to 3300mV temp=256\n[    2.513424] QG-K: get_batt_id_ohm: batt_id_mv=938, batt_id_ohm=100200\n[    2.514055] QG-K: qg_get_maxim_authentic: get maxim_authentic = 1\n[    2.514058] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start 0...\n[    2.514062] QG-K: qg_get_maxim_romid: get maxim RomID = 9f,58,5a,d6,11,f0,04,98\n[    2.514065] [ds28e16] ds28el16_get_page_data_retry: flag_mi_page0_data is 1\n[    2.514067] [ds28e16] ds28el16_get_page_data_retry: mi_page0_data data:\n[    2.514072] [ds28e16] ds28el16_get_page_data_retry: 43 42 4d 34 57 30 42 46 0b 52 07 47 4e 44 31 31\n[    2.514075] QG-K: qg_get_maxim_page0: get maxim ds_page0 = C B M 4 W 0 B F \u000b R \\x07 G N D 1 1\n[    2.514082] of_batterydata_get_best_profile: J17_cosmx_4820mah found\n[    2.516957] QG-K: qg_batterydata_init: QG Battery-profile loaded\n[    2.516966] QG-K: qg_load_battery_profile: profile=J17_cosmx_4820mah FV=4470000uV FCC=6000ma\n[    2.516968] QG-K: qg_setup_battery: battery_missing=0 batt_id_ohm=100200 Ohm profile_loaded=1 profile=J17_cosmx_4820mah\n[    2.517025] QG-K: qg_sanitize_sdam: SDAM valid\n[    2.517127] QG-K: qg_determine_pon_soc: S7_PON_OCV OCV=3960862\n[    2.517139] QG-K: qg_determine_pon_soc: S3_GOOD_OCV OCV=6377865\n[    2.517150] QG-K: qg_determine_pon_soc: S3_LAST_OCV OCV=6377865\n[    2.517161] QG-K: qg_determine_pon_soc: SDAM_PON_OCV OCV=0\n[    2.520237] QG-K: qg_determine_pon_soc: Shutdown: Valid=1 SOC=60 OCV=3985700uV time=18416554secs temp=255, time_now=18416567secs temp_now=256 S7_soc=59\n[    2.520243] QG-K: qg_determine_pon_soc: Using SHUTDOWN_SOC @ PON\n[    2.520247] QG-K: qg_determine_pon_soc: v_float=4470000 v_cutoff=3400000 FULL_SOC=99 CUTOFF_SOC=2                                         calculate_soc=59 pon_soc=59 shutdown[SDAM_SOC]=60                                         final soc = 59 ibat = 0\n[    2.521633] QG-K: qg_store_soc_params: SDAM write param 0 value=1\n[    2.521645] QG-K: qg_store_soc_params: SDAM write param 1 value=59\n[    2.521658] QG-K: qg_store_soc_params: SDAM write param 2 value=256\n[    2.521670] QG-K: qg_store_soc_params: SDAM write param 3 value=0\n[    2.521682] QG-K: qg_store_soc_params: SDAM write param 4 value=3985700\n[    2.521694] QG-K: qg_store_soc_params: SDAM write param 5 value=0\n[    2.521706] QG-K: qg_store_soc_params: SDAM write param 6 value=18416567\n[    2.521718] QG-K: qg_determine_pon_soc: using SHUTDOWN_SOC @ PON ocv_uv=3985700uV soc=59\n[    2.522187] QG-K: qg_request_interrupt: IRQ qg-vbat-low registered wakeable=1\n[    2.522345] QG-K: qg_request_interrupt: IRQ qg-vbat-empty registered wakeable=1\n[    2.522497] QG-K: qg_request_interrupt: IRQ qg-fifo-done registered wakeable=1\n[    2.522651] QG-K: qg_request_interrupt: IRQ qg-good-ocv registered wakeable=1\n[    2.522714] QG-K: qpnp_qg_probe: QG initialized! battery_profile=J17_cosmx_4820mah SOC=59 QG_subtype=4 QG_version=QG_PMIC5 QG_mode=QG_V_I\n[    2.526166] Couldn't get vbat rc=-22\n[    2.526172] qcom,smb1398-charger 990000.i2c:qcom,smb1396@34:qcom,div2_cp: Couldn't get battery soc, rc=-61\n[    2.527626] Couldn't get batt temp rc=-22\n[    2.527629] Couldn't get batt temp rc=-22\n[    2.530134] QG-K: qg_get_prop_soc_decimal: debug soc_dec=0 dec_rate=28 last_val=0 last_soc_dec=0 last_hal_soc=0\n[    2.530139] QG-K: qg_get_prop_soc_decimal: debug val=50 soc_dec=0 sys_soc=0 dec_rate=28 soc=59 hal_soc=59 last_val=50 last_soc_dec=0 last_hal_soc=59\n[    2.530336] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    2.531230] pm7250b_charger: smblib_set_charge_param: float voltage = 4450000 (0x55)\n[    2.531470] pm7250b_charger: smblib_run_aicl: re-running AICL\n[    2.533831] QG-K: qg_psy_get_property: get battery temp = 256\n[    2.534077] QG-K: qg_get_maxim_authentic: get maxim_authentic = 1\n[    2.534081] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start 0...\n[    2.534084] QG-K: qg_get_maxim_chipok: get maxim_chip_ok = 1\n[    2.536450] QG-K: qg_charge_full_update: msoc=59 health=1 charge_full=0 charge_done=0\n[    2.536540] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    2.538777] QG-K: qg_charge_full_update: msoc=59 health=1 charge_full=0 charge_done=0\n[    2.539028] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    2.539708] pm7250b_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:256, thermal_levels:16chg->system_temp_level:0, charger_type:0\n[    2.540659] pm7250b_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:256, thermal_levels:16chg->system_temp_level:0, charger_type:0\n[    2.541605] pm7250b_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:256, thermal_levels:16chg->system_temp_level:0, charger_type:0\n[    2.542574] QG-K: qg_charge_full_update: msoc=59 health=1 charge_full=0 charge_done=0\n[    2.543521] pm7250b_charger: smblib_set_prop_system_temp_level: thermal level:0, batt temp:256, thermal_levels:16chg->system_temp_level:0, charger_type:0\n[    2.549350] msm-dwc3 a600000.ssusb: Linked as a consumer to regulator.46\n[    2.549486] irq: type mismatch, failed to map hwirq-14 for interrupt-controller@b220000!\n[    2.549555] irq: type mismatch, failed to map hwirq-15 for interrupt-controller@b220000!\n[    2.549944] dwc3 a600000.dwc3: Failed to get clk 'ref': -2\n[    2.550051] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.550666] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    2.550737] sps:BAM 0x000000000a704000 is registered.\n[    2.551069] register_client_adhoc:find path.src 61 dest 512\n[    2.551416] register_client_adhoc:find path.src 61 dest 676\n[    2.551600] register_client_adhoc:find path.src 1 dest 583\n[    2.551796] register_client_adhoc:Client handle 50 usb0\n[    2.552524] ipa_rm ipa_rm_delete_resource:139 IPA RM was not initialized\n[    2.552530] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    2.552533] ipa_rm ipa_rm_delete_resource:139 IPA RM was not initialized\n[    2.552536] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    2.552822] msm-dwc3 a600000.ssusb: Dropping the link to regulator.46\n[    2.553102] qpnp-pdphy c440000.qcom,spmi:qcom,pm7250b@2:qcom,usb-pdphy@1700: Linked as a consumer to regulator.8\n[    2.554343] msm-dwc3 a600000.ssusb: Linked as a consumer to regulator.46\n[    2.554455] irq: type mismatch, failed to map hwirq-14 for interrupt-controller@b220000!\n[    2.554527] irq: type mismatch, failed to map hwirq-15 for interrupt-controller@b220000!\n[    2.554875] dwc3 a600000.dwc3: Failed to get clk 'ref': -2\n[    2.554950] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.555519] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    2.555586] sps:BAM 0x000000000a704000 is registered.\n[    2.555886] register_client_adhoc:find path.src 61 dest 512\n[    2.556209] register_client_adhoc:find path.src 61 dest 676\n[    2.556391] register_client_adhoc:find path.src 1 dest 583\n[    2.556586] register_client_adhoc:Client handle 50 usb0\n[    2.556730] msm-dwc3 a600000.ssusb: Linked as a consumer to regulator.66\n[    2.557685] registered taskstats version 1\n[    2.557688] Loading compiled-in X.509 certificates\n[    2.559302] Loaded X.509 cert 'Build time autogenerated kernel key: 4985a202b89a7602c236bb266cdc9034b2f880d9'\n[    2.559375] Key type ._fscrypt registered\n[    2.559377] Key type .fscrypt registered\n[    2.559379] Key type fscrypt-provisioning registered\n[    2.561832] Error: swapper/0: fastrpc_device_init: failed to create debugfs root dir\n[    2.562354] fastrpc soc:qcom,msm-adsprpc-mem: for adsp_rh segments only will be dumped.\n[    2.562456] adsprpc: init_secure_vmid_list: secure VMID = 22\n[    2.562458] adsprpc: init_secure_vmid_list: secure VMID = 37\n[    2.562479] adsprpc: fastrpc_probe: service location enabled for avs/audio (audio_pdr_adsprpc)\n[    2.562482] adsprpc: fastrpc_probe: service location enabled for tms/servreg (sensors_pdr_adsprpc)\n[    2.563086] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1: Linked as a consumer to 15000000.apps-smmu\n[    2.563273] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode\n[    2.563403] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 30\n[    2.564517] msm-dwc3 a600000.ssusb: DWC3 in low power mode\n[    2.564609] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2: Linked as a consumer to 15000000.apps-smmu\n[    2.564783] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 31\n[    2.565234] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3: Linked as a consumer to 15000000.apps-smmu\n[    2.565404] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 32\n[    2.565835] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4: Linked as a consumer to 15000000.apps-smmu\n[    2.565992] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 33\n[    2.566419] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5: Linked as a consumer to 15000000.apps-smmu\n[    2.566576] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 34\n[    2.566987] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6: Linked as a consumer to 15000000.apps-smmu\n[    2.567138] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 35\n[    2.567548] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7: Linked as a consumer to 15000000.apps-smmu\n[    2.567697] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7 to group 36\n[    2.568110] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8: Linked as a consumer to 15000000.apps-smmu\n[    2.568261] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8 to group 37\n[    2.568675] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9: Linked as a consumer to 15000000.apps-smmu\n[    2.569213] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 38\n[    2.569642] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10: Linked as a consumer to 15000000.apps-smmu\n[    2.569793] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 39\n[    2.570358] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11: Linked as a consumer to 15000000.apps-smmu\n[    2.570510] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 40\n[    2.570937] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12: Linked as a consumer to 15000000.apps-smmu\n[    2.571089] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 41\n[    2.572463] adsprpc: fastrpc_device_init: SSR notifier registered for adsp\n[    2.572466] adsprpc: fastrpc_device_init: SSR notifier registered for modem\n[    2.572470] adsprpc: fastrpc_device_init: SSR notifier registered for slpi\n[    2.572473] adsprpc: fastrpc_device_init: SSR notifier registered for cdsp\n[    2.576371] mtdoops: mtdoops_inc_counter nextpage: 7,oops_pages:8\n[    2.576374] mtdoops: ready 7, 6320 (no erase)\n[    2.576376] mtdoops: Attached to MTD device 0\n[    2.576653] block2mtd: mtd0: [/dev/block/sda15] erase_size = 2048KiB [2097152]\n[    2.576792] ngd_msm_ctrl 3ac0000.slim: Linked as a consumer to 15000000.apps-smmu\n[    2.580273] iommu: Adding device 3ac0000.slim to group 42\n[    2.582969] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    2.583245] [NVT-ts-spi] nvt_driver_init 2683: start\n[    2.583598] [NVT-ts-spi] nvt_ts_probe 1932: start\n[    2.583618] [NVT-ts-spi] nvt_parse_dt 1030: novatek,reset-gpio=1145\n[    2.583625] [NVT-ts-spi] nvt_parse_dt 1033: novatek,irq-gpio=1146\n[    2.583628] [NVT-ts-spi] nvt_parse_dt 1040: SWRST_N8_ADDR=0x03F0FE\n[    2.583630] [NVT-ts-spi] nvt_parse_dt 1049: SPI_RD_FAST_ADDR=0x03F310\n[    2.583633] [NVT-ts-spi] nvt_parse_dt 1057: config-array-size: 2\n[    2.583635] [NVT-ts-spi] nvt_parse_dt 1065: spi-max-frequency: 10000000\n[    2.583639] [NVT-ts-spi] nvt_parse_dt 1087: tp vendor: 70\n[    2.583641] [NVT-ts-spi] nvt_parse_dt 1095: tp hw version: 54\n[    2.583644] [NVT-ts-spi] nvt_parse_dt 1112: fw_name: novatek_nt36672c_j17_fw01.bin\n[    2.583647] [NVT-ts-spi] nvt_parse_dt 1120: mp_name: novatek_nt36672c_j17_mp01.bin\n[    2.583649] [NVT-ts-spi] nvt_parse_dt 1087: tp vendor: 83\n[    2.583651] [NVT-ts-spi] nvt_parse_dt 1095: tp hw version: 66\n[    2.583653] [NVT-ts-spi] nvt_parse_dt 1112: fw_name: novatek_nt36672c_j17_fw02.bin\n[    2.583655] [NVT-ts-spi] nvt_parse_dt 1120: mp_name: novatek_nt36672c_j17_mp02.bin\n[    2.583657] [NVT-ts-spi] nvt_parse_dt 1078: parse 2 config down\n[    2.583661] [NVT-ts-spi] nvt_ts_probe 2001: mode=0, max_speed_hz=10000000\n[    2.583756] [NVT-ts-spi] nvt_pinctrl_init 1683: nvt_pinctrl_init Enter\n[    2.583774] [NVT-ts-spi] nvt_ts_probe 2015: Request GPIO\n[    2.583787] [NVT-ts-spi] nvt_gpio_config 1279: nvt_gpio_config Exit\n[    2.583790] [NVT-ts-spi] nvt_eng_reset 416: nvt_eng_reset \n[    2.583792] [NVT-ts-spi] nvt_write_addr 309: nvt_write_addr enter\n[    2.584535] spi_geni 880000.spi: tx_fifo 16 rx_fifo 16 tx_width 32\n[    2.584902] [NVT-ts-spi] nvt_eng_reset 418: nvt_eng_reset leave\n[    2.585907] [NVT-ts-spi] nvt_ts_probe 2032: gpio set complete\n[    2.600023] [NVT-ts-spi] nvt_ts_probe 2037: start check chip\n[    2.600025] [NVT-ts-spi] nvt_write_addr 309: nvt_write_addr enter\n[    2.605189] [NVT-ts-spi] nvt_write_addr 309: nvt_write_addr enter\n[    2.605516] [NVT-ts-spi] nvt_ts_check_chip_ver_trim 1641: buf[1]=0x0C, buf[2]=0x00, buf[3]=0x00, buf[4]=0x72, buf[5]=0x66, buf[6]=0x03\n[    2.605519] [NVT-ts-spi] nvt_ts_check_chip_ver_trim 1659: This is NVT touch IC\n[    2.605522] [NVT-ts-spi] nvt_ts_probe 2044: finish check chip\n[    2.605596] input: NVTCapacitiveTouchScreen as /devices/virtual/input/input4\n[    2.605691] [NVT-ts-spi] nvt_ts_probe 2107: int_trigger_type=1\n[    2.605836] [NVT-ts-spi] nvt_irq_enable 183: enable=0, desc->depth=1\n[    2.605838] [NVT-ts-spi] nvt_ts_probe 2116: request irq 395 succeed\n[    2.606013] [NVT-ts-spi] nvt_ts_probe 2153: NVT_TOUCH_ESD_PROTECT is 1\n[    2.606119] [NVT-ts-spi] nvt_flash_proc_init 878: Succeeded!\n[    2.606122] [NVT-ts-spi] nvt_flash_proc_init 881: ============================================================\n[    2.606124] [NVT-ts-spi] nvt_flash_proc_init 882: Create /proc/NVTSPI\n[    2.606126] [NVT-ts-spi] nvt_flash_proc_init 883: ============================================================\n[    2.606134] [NVT-ts-spi] nvt_extra_proc_init 631: create proc/nvt_fw_version Succeeded!\n[    2.606137] [NVT-ts-spi] nvt_extra_proc_init 639: create proc/nvt_baseline Succeeded!\n[    2.606142] [NVT-ts-spi] nvt_extra_proc_init 647: create proc/nvt_raw Succeeded!\n[    2.606145] [NVT-ts-spi] nvt_extra_proc_init 655: create proc/nvt_diff Succeeded!\n[    2.606148] [NVT-ts-spi] nvt_extra_proc_init 663: create proc/nvt_xiaomi_config_info Succeeded!\n[    2.606152] [NVT-ts-spi] nvt_extra_proc_init 671: create proc/tp_lockdown_info Succeeded!\n[    2.606183] [NVT-ts-spi] nvt_cmds_panel_info 1147: nvt_cmds_panel_info: display_node is qcom,mdss_dsi_j17_36_02_0a_dsc_video\n[    2.606186] [NVT-ts-spi] nvt_ts_probe 2218: end\n[    2.606197] [NVT-ts-spi] nvt_irq_enable 183: enable=1, desc->depth=0\n[    2.606534] [NVT-ts-spi] nvt_driver_init 2696: finished\n[    2.608015] lpm_levels: Cluster (L3) stats not registered\n[    2.612239] rmnet_ipa3 started initialization\n[    2.612814] RNDIS_IPA module is loaded.\n[    2.613530] CAM_ERR: CAM-CCI: cam_cci_assign_fops: 528 Invalid dev node:00000000c270f254 offset: 0\n[    2.613877] msm notifier probed successfully\n[    2.614200] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    2.615501] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    2.616427] msm_bus_late_init: Remove handoff bw requests\n[    2.617098] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    2.617111] ALSA device list:\n[    2.617113]   No soundcards found.\n[    2.617156] Warning: unable to open an initial console.\n[    2.617653] Freeing unused kernel memory: 2048K\n[    2.617772] Run /init as init process\n[    3.112598] mmc0: new high speed SDHC card at address 0001\n[    3.130165] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0x3f) latency=-1\n[    3.130170] sdhci_msm_pm_qos_cpu_init (): voted for group #1 (mask=0xc0) latency=-1\n[    3.130184] mmcblk0: mmc0:0001 uSD 7.44 GiB \n[    3.131284]  mmcblk0: p1\n[    3.131544] mmc_host mmc0: _opp_is_duplicate: duplicate OPPs detected. Existing: freq: 50000000, volt: 0, enabled: 1. New: freq: 50000000, volt: 0, enabled: 1\n[    3.520123] pm7250b_charger: smblib_icl_change_work: icl_settled=0\n[    3.520397] pm7250b_charger: smblib_set_charge_param: float voltage = 4450000 (0x55)\n[    3.520568] pm7250b_charger: smblib_run_aicl: re-running AICL\n[    3.520880] QG-K: qg_status_change_work: charge_status=2 charge_done=0\n[    3.522990] QG-K: qg_charge_full_update: msoc=59 health=1 charge_full=0 charge_done=0\n[    3.600100] [NVT-ts-spi] get_lockdown_info 1898: lkdown_readed = 0\n[    3.600120] [NVT-ts-spi] nvt_cmds_panel_info 1147: nvt_cmds_panel_info: display_node is qcom,mdss_dsi_j17_36_02_0a_dsc_video\n[    3.600125] [NVT-ts-spi] dsi_panel_lockdown_info_read 1160: dsi_panel_lockdown_info_read: lockdown panel is tianma\n[    3.600129] [NVT-ts-spi] get_lockdown_info 1906: Lockdown:0x46,0x36,0x32,0x01,0x4a,0x14,0x31,0x00\n[    3.600132] [NVT-ts-spi] get_lockdown_info 1909: READ LOCKDOWN!!!\n[    3.602295] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    3.602482] cpu1 \n[    3.602548] cpu6 \n[    3.602601] \n               Offline CPUs: \n[    3.605894] cpu1 \n[    3.608063] CPU1: shutdown\n[    3.609210] psci: CPU1 killed (polled 0 ms)\n[    3.609713] cpu2 \n[    3.611718] IRQ 5: no longer affine to CPU2\n[    3.611818] CPU2: shutdown\n[    3.611885] psci: CPU2 killed (polled 0 ms)\n[    3.612241] cpu3 \n[    3.614137] CPU3: shutdown\n[    3.614185] psci: CPU3 killed (polled 0 ms)\n[    3.614711] cpu4 \n[    3.616367] CPU4: shutdown\n[    3.616412] psci: CPU4 killed (polled 0 ms)\n[    3.616946] cpu5 \n[    3.617507] CPU5: shutdown\n[    3.617552] psci: CPU5 killed (polled 0 ms)\n[    3.618046] cpu6 \n[    3.618973] CPU6: shutdown\n[    3.619016] psci: CPU6 killed (polled 0 ms)\n[    3.619529] cpu7 \n[    3.619991] CPU7: shutdown\n[    3.620077] psci: CPU7 killed (polled 10 ms)\n\n[    4.481104] of_batterydata_get_best_profile: J17_cosmx_4820mah found\n[    4.481146] QCOM-STEPCHG: read_range_data_from_node: Count qcom,step-chg-ranges failed, rc=-22\n[    6.481475] aw8624_haptic 2-005a: Falling back to syfs fallback for: aw8624_haptic.bin\n[    7.041089] [ds28e16] authentic_work: authentic result is 1\n[    8.632942] Sampling power every 250 ms\n               Baseline power usage: \n[   12.641077] [NVT-ts-spi] nvt_match_fw 1230: start match fw name\n[   12.641096] [NVT-ts-spi] nvt_get_panel_type 1210: match panle type, fw is [novatek_nt36672c_j17_fw01.bin], mp is [novatek_nt36672c_j17_mp01.bin]\n[   12.641113] [NVT-ts-spi] update_firmware_request 346: filename is novatek_nt36672c_j17_fw01.bin\n[   12.641139] [NVT-ts-spi] nvt_get_fw_need_write_size 73: fw_need_write_size = 131072(0x20000), NVT end flag\n[   12.641158] [NVT-ts-spi] nvt_bin_header_parser 180: ovly_info = 0, ilm_dlm_num = 2, ovly_sec_num = 0, info_sec_num = 13, partition = 15\n[   12.641233] [NVT-ts-spi] nvt_write_addr 309: nvt_write_addr enter\n[   12.647610] [NVT-ts-spi] nvt_write_addr 309: nvt_write_addr enter\n[   12.733405] [NVT-ts-spi] nvt_write_addr 309: nvt_write_addr enter\n[   12.750478] [NVT-ts-spi] nvt_update_firmware 1119: Update firmware success! <109237 us>\n[   12.750904] [NVT-ts-spi] nvt_get_fw_info 694: FW type is 0x01, fw_ver=16\n[   12.751497] [NVT-ts-spi] nvt_read_pid 620: PID=5937\n[   12.751917] [NVT-ts-spi] nvt_get_fw_info 694: FW type is 0x01, fw_ver=16\n[   12.752498] [NVT-ts-spi] nvt_read_pid 620: PID=5937\n[   33.121437] wide_ldo_avdd2_regulator: disabling\n[   33.121453] wide_ldo_dvdd_regulator: disabling\n[   33.121464] depth_ldo_avdd_regulator: disabling\n[   33.124432] platform soc:qcom,msm-pcm-voice: deferred probe pending\n[   33.124448] platform soc:qcom,msm-voip-dsp: deferred probe pending\n[   33.125048] pm8008-chip-en: disabling\n[   69.601303] aw8624_ram_loaded: failed to read aw8624_haptic.bin\n[   84.043508] Detected VIPT I-cache on CPU1\n[   84.043657] CPU1: Booted secondary processor 0x0000000100 [0x51df805e]\n[   85.054713] 571 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 576 768 1017 1248 1324 1516 1612 1708 1804\n               \n                300: \n[  100.606021] boot log copy done\n[  125.921401] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 1e 04 02 03 07 60 fd 30 00 a3 02 0a 0a 00 00 55 \n[  125.922221] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a1 00 00 00 7f 00 00 00 00 00 00 0a d4 00 00 00 00 \n[  125.923297] smb:01:1500 00 00 00 04 c6 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  248.801342] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 1e 04 02 03 07 60 fd 30 00 a3 02 0a 0a 00 00 55 \n[  248.802157] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a1 00 00 00 7f 00 00 00 00 00 00 0a d4 00 00 00 00 \n[  248.803232] smb:01:1500 00 00 00 04 c5 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  305.120492] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120524] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121656] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121677] audio_notifer_reg_service: service SSR_ADSP is in use\n[  305.121732] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121746] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for audio_pdr_adsprpc\n[  305.121794] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121805] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for sensors_pdr_adsprpc\n[  305.121835] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  362.698252]  1114     3.7 C/MHz     29 mW    7.8 J   38.3 I/mJ   269.3 s\n                576: \n[  371.681057] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 1e 04 02 03 07 60 fd 30 00 a3 02 0a 0a 00 00 55 \n[  371.681750] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a1 00 00 00 7f 00 00 00 00 00 00 0a d4 00 00 00 00 \n[  371.682683] smb:01:1500 00 00 00 01 c2 00 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  494.561061] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 1e 04 02 03 07 60 fd 30 00 a3 02 0a 0a 00 00 55 \n[  494.561754] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a1 00 00 00 7f 00 00 00 00 00 00 0a d4 00 00 00 00 \n[  494.562687] smb:01:1500 00 00 00 04 c5 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  511.208623]  2139     3.7 C/MHz     47 mW    6.5 J   45.9 I/mJ   140.3 s\n                768: \n[  617.440919] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 1e 04 02 03 07 60 fd 30 00 a3 02 0a 0a 00 00 55 \n[  617.441580] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a1 00 00 00 7f 00 00 00 00 00 00 0a d4 00 00 00 00 \n[  617.442467] smb:01:1500 00 00 00 04 c5 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  624.635147]  2851     3.7 C/MHz     59 mW    6.2 J   48.7 I/mJ   105.2 s\n               1017: \n[  712.367916]  3778     3.7 C/MHz     74 mW    5.9 J   51.1 I/mJ    79.4 s\n               1248: \n[  740.320921] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 1e 04 02 03 07 60 fd 30 00 a3 02 0a 0a 00 00 55 \n[  740.321539] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a1 00 00 00 7f 00 00 00 00 00 00 0a d4 00 00 00 00 \n[  740.322371] smb:01:1500 00 00 00 04 c5 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  785.251561]  4634     3.7 C/MHz     89 mW    5.8 J   52.0 I/mJ    64.7 s\n               1324: \n[  854.616868]  4919     3.7 C/MHz     93 mW    5.7 J   52.7 I/mJ    61.0 s\n               1516: \n[  863.200865] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 1e 04 02 03 07 60 fd 30 00 a3 02 0a 0a 00 00 55 \n[  863.201468] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a1 00 00 00 7f 00 00 00 00 00 00 0a d4 00 00 00 00 \n[  863.202284] smb:01:1500 00 00 00 01 c2 00 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[  916.185893]  5632     3.7 C/MHz    107 mW    5.7 J   52.8 I/mJ    53.3 s\n               1612: \n[  974.493525]  5989     3.7 C/MHz    125 mW    6.3 J   47.9 I/mJ    50.1 s\n               1708: \n[  986.080864] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 1e 04 02 03 07 60 fd 30 00 a3 02 0a 0a 00 00 55 \n[  986.081461] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a1 00 00 00 7f 00 00 00 00 00 00 0a d4 00 00 00 00 \n[  986.082265] smb:01:1500 00 00 00 01 c2 00 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 1030.035851]  6345     3.7 C/MHz    132 mW    6.2 J   48.2 I/mJ    47.3 s\n               1804: \n[ 1083.069130] CPU1: shutdown\n[ 1083.069210] psci: CPU1 killed (polled 0 ms)\n[ 1083.074610] Detected PIPT I-cache on CPU6\n[ 1083.074662] CPU6: Booted secondary processor 0x0000000600 [0x411fd0d0]\n[ 1084.084547]  6702     3.7 C/MHz    143 mW    6.4 J   47.0 I/mJ    44.8 s\n               \n               \n               ===== CPU 6 =====\n               Frequencies: 300 787 979 1036 1248 1401 1555 1766 1900 2073 2131 2208\n               \n                300: \n[ 1108.961486] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 1e 04 02 03 07 60 fd 30 00 a3 02 0a 0a 00 00 55 \n[ 1108.962301] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a1 00 00 00 7f 00 00 00 00 00 00 0a d4 00 00 00 00 \n[ 1108.963377] smb:01:1500 00 00 00 04 c6 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 1210.231524]  2544     8.5 C/MHz     82 mW    9.6 J   31.2 I/mJ   117.9 s\n                787: \n[ 1231.841556] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 1e 04 02 03 07 60 fd 30 00 a3 02 0a 0a 00 00 55 \n[ 1231.842375] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a1 00 00 00 7f 00 00 00 00 00 00 0a d4 00 00 00 00 \n[ 1231.843449] smb:01:1500 00 00 00 01 c3 00 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 1263.634283]  6674     8.5 C/MHz    165 mW    7.4 J   40.4 I/mJ    45.0 s\n                979: \n[ 1307.941537]  8311     8.5 C/MHz    212 mW    7.7 J   39.1 I/mJ    36.1 s\n               1036: \n[ 1350.482192]  8787     8.5 C/MHz    229 mW    7.8 J   38.3 I/mJ    34.2 s\n               1248: \n[ 1354.722256] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 1e 04 02 03 07 60 fd 30 00 a3 02 0a 0a 00 00 55 \n[ 1354.723046] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a1 00 00 00 7f 00 00 00 00 00 00 0a d4 00 00 00 00 \n[ 1354.724128] smb:01:1500 00 00 00 04 c5 40 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 1387.212165] 10572     8.5 C/MHz    296 mW    8.4 J   35.7 I/mJ    28.4 s\n               1401: \n[ 1420.911144] 11873     8.5 C/MHz    354 mW    9.0 J   33.5 I/mJ    25.3 s\n               1555: \n[ 1452.083268] 13197     8.5 C/MHz    428 mW    9.7 J   30.8 I/mJ    22.7 s\n               1766: \n[ 1477.601559] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 01 1e 04 02 03 07 60 fd 30 00 a3 02 0a 0a 00 00 55 \n[ 1477.602379] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 01 00 40 00 00 48 00 00 00 00 07 00 18 38 11 a1 00 00 00 7f 00 00 00 00 00 00 0a d4 00 00 00 00 \n[ 1477.603456] smb:01:1500 00 00 00 01 c2 00 00 04 ff 00 00 ff ff 02 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 1480.477830] 14986     8.5 C/MHz    541 mW   10.8 J   27.7 I/mJ    20.0 s\n               1900: \n[ 1507.353307] 16123     8.5 C/MHz    629 mW   11.7 J   25.6 I/mJ    18.6 s\n               2073: \n[ 1532.712805] 17576     8.5 C/MHz    796 mW   13.6 J   22.1 I/mJ    17.1 s\n               2131: \n[ 1557.567169] 18094     8.5 C/MHz    845 mW   14.0 J   21.4 I/mJ    16.6 s\n               2208: \n[ 1581.925725] CPU6: shutdown\n[ 1581.925844] psci: CPU6 killed (polled 0 ms)\n[ 1581.957897] 18704     8.5 C/MHz    924 mW   14.8 J   20.2 I/mJ    16.1 s\n               \n               \n               Benchmark finished!\n[ 1581.988636] \n               real\t26m19.215s\n               user\t22m0.002s\n               sys\t0m2.640s\n"
  },
  {
    "path": "results/sm7225/m23xq/cmdline.txt",
    "content": "rcupdate.rcu_expedited=1 rcu_nocbs=0-7 kpti=off cgroup_disable=pressure console=null androidboot.hardware=qcom androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 androidboot.usbcontroller=a600000.dwc3 swiotlb=2048 cgroup.memory=nokmem,nosocket firmware_class.path=/vendor/firmware_mnt/image loop.max_part=7 rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.ulcnt=8 androidboot.vbmeta.device=PARTUUID=4b7a15d6-322c-42ac-8110-88b7da0c5d77 androidboot.vbmeta.avb_version=1.0 androidboot.vbmeta.device_state=unlocked androidboot.vbmeta.hash_alg=sha256 androidboot.vbmeta.size=17472 androidboot.vbmeta.digest=3acad589f8009ee0692bb4b679a6f72574eed651ffab787181d91d374f7c4b5f androidboot.vbmeta.invalidate_on_error=yes androidboot.veritymode=enforcing androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED androidboot.baseband=msm msm_drm.dsi_display0=ss_dsi_panel_NT36672C_TL066FVMC02_FHD: lcd_id=0x4B7240 androidboot.dtbo_idx=3 androidboot.dtb_idx=0 androidboot.sec_atd.tty=/dev/ttyHS8 androidboot.revision=5 androidboot.subpcb=0 androidboot.ap_serial=REDACTED ccic_info=1 fg_reset=0 sec_log=0x200000@0xB1200000 sec_dbg=0x1FF000@0xB1000000 sec_dbg_ex_info=0x1000@0xB11FF000 androidboot.debug_level=0x4f4c sec_debug.enable=0 sec_debug.enable_user=0 msm_rtb.enable=0 androidboot.cp_debug_level=0x55FF sec_debug.enable_cp_debug=0 softdog.soft_margin=100 softdog.soft_panic=1 androidboot.cp_reserved_mem=off androidboot.reserve_mem_region=0x0 androidboot.force_upload=0x0 androidboot.upload_offset=9438196 sec_debug.dump_sink=0x0 sec_debug.reboot_multicmd=0x1 signoff=0x7277 androidboot.boot_recovery=0 androidboot.carrierid.param.offset=9437644 androidboot.carrierid=INS androidboot.sales.param.offset=9437648 androidboot.sales_code=INS androidboot.prototype.param.offset=9437660 androidboot.im.param.offset=9437232 androidboot.me.param.offset=9437312 androidboot.sn.param.offset=9437392 androidboot.pr.param.offset=9437472 androidboot.sku.param.offset=9437552 androidboot.kg=0x1 androidboot.kg.bit=00 androidboot.kg.ap=AAAA000000000000000000002C5DF187 androidboot.fastbootd=false androidboot.warranty_bit=1 androidboot.wb.hs=E02 androidboot.wb.snapQB=83893456R androidboot.ucs_mode=0 androidboot.swp_config=0 androidboot.rp=7 androidboot.svb.ver=SVB1.0 androidboot.em.did=REDACTED androidboot.em.model=SM-E236B androidboot.em.status=0x0 androidboot.sb.debug0=0x0 androidboot.em.rdx_dump=false androidboot.bootloader=E236BXXS7EXH1 androidboot.edtbo=0 afc_disable=0x30 uart_sel=0x02 sapa=0 androidboot.hdm_status=NONE androidboot.ddr_start_type=1 androidboot.dram_info=01,08,10,6G androidboot.usrf=9438192 factory_mode=0 wireless_ic=0x0\n"
  },
  {
    "path": "results/sm7225/m23xq/cpufreq_stats/0/time_in_state",
    "content": "300000 86078\n576000 14879\n768000 11356\n1017600 8844\n1248000 7335\n1324800 6934\n1516800 6230\n1612800 5830\n1708800 5629\n1804800 5585\n"
  },
  {
    "path": "results/sm7225/m23xq/cpufreq_stats/0/total_trans",
    "content": "13\n"
  },
  {
    "path": "results/sm7225/m23xq/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    576000    768000   1017600   1248000   1324800   1516800   1612800   1708800   1804800 \n   300000:         0         1         0         0         0         0         0         0         0         1 \n   576000:         0         0         1         0         0         0         0         0         0         0 \n   768000:         0         0         0         1         0         0         0         0         0         0 \n  1017600:         0         0         0         0         1         0         0         0         0         0 \n  1248000:         0         0         0         0         0         1         0         0         0         0 \n  1324800:         0         0         0         0         0         0         1         0         0         0 \n  1516800:         0         0         0         0         0         0         0         1         0         1 \n  1612800:         0         0         0         0         0         0         0         0         1         0 \n  1708800:         0         0         0         0         0         0         0         0         0         1 \n  1804800:         2         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm7225/m23xq/cpufreq_stats/6/time_in_state",
    "content": "300000 12710\n787200 5345\n979200 4440\n1036800 4239\n1248000 3735\n1401600 3433\n1555200 3131\n1766400 2829\n1900800 2728\n2073600 2527\n2131200 2527\n2208000 111057\n"
  },
  {
    "path": "results/sm7225/m23xq/cpufreq_stats/6/total_trans",
    "content": "14\n"
  },
  {
    "path": "results/sm7225/m23xq/cpufreq_stats/6/trans_table",
    "content": "   From  :    To\n         :    300000    787200    979200   1036800   1248000   1401600   1555200   1766400   1900800   2073600   2131200   2208000 \n   300000:         0         1         0         0         0         0         0         0         0         0         0         1 \n   787200:         0         0         1         0         0         0         0         0         0         0         0         0 \n   979200:         0         0         0         1         0         0         0         0         0         0         0         0 \n  1036800:         0         0         0         0         1         0         0         0         0         0         0         0 \n  1248000:         0         0         0         0         0         1         0         0         0         0         0         0 \n  1401600:         0         0         0         0         0         0         1         0         0         0         0         0 \n  1555200:         0         0         0         0         0         0         0         1         0         0         0         0 \n  1766400:         0         0         0         0         0         0         0         0         1         0         0         0 \n  1900800:         0         0         0         0         0         0         0         0         0         1         0         0 \n  2073600:         0         0         0         0         0         0         0         0         0         0         1         0 \n  2131200:         0         0         0         0         0         0         0         0         0         0         0         1 \n  2208000:         2         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm7225/m23xq/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 14 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0xd0d\nCPU revision\t: 0\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0xd0d\nCPU revision\t: 0\n\nHardware\t: Qualcomm Technologies, Inc LAGOON\n"
  },
  {
    "path": "results/sm7225/m23xq/device.txt",
    "content": "Model: Samsung M23XQ PROJECT (board-id,04);\nCompatible: qcom,lagoon-mtp;qcom,lagoon;qcom,mtp;\n"
  },
  {
    "path": "results/sm7225/m23xq/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x51df805e]\n[    0.000000] Linux version 4.19.152-perf-100000-abITEJO443 (tejo@tejo-Thin-GF63-12VF) (Android (10087095, +pgo, +bolt, +lto, -mlgo, based on r487747c) clang version 17.0.2 (https://android.googlesource.com/toolchain/llvm-project d9f89f4d16663d5012e5c09495f3b30ece3d2362), LLD 17.0.2) #1 SMP PREEMPT Sun Dec 1 14:15:47 IST 2024\n[    0.000000] Machine model: Samsung M23XQ PROJECT (board-id,04)\n[    0.000000] sec_hw_param:sec_hw_rev_setup() androidboot.revision 5\n[    0.000000] androidboot.revision 5\n[    0.000000] androidboot.revision 5\n[    0.000000] Malformed early option 'androidboot.reserve_mem_region'\n[    0.000000] muic_param: set_afc_disable: afc_mode is 0x30\n[    0.000000] muic_param: set_uart_sel: uart_sel is 0x02\n[    0.000000] sapa: read_sapa_param param_time:0\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe000000, size 28 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fd000000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fb000000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f9000000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6800000, size 40 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f0000000, size 104 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000080000000, size 6 MiB\n[    0.000000] OF: reserved mem: initialized node hyp_region@80000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000080700000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node xbl_aop_mem@80700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000808ff000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node sec_apps_region@808ff000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000080900000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node smem@80900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000084800000, size 64 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region@88d00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000088800000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node camera_region@86000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000088d00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_npu_region@86500000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000089200000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region@86a00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000089700000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_regions@86f00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b500000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node wlan_fw_region@8b500000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b700000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_fw_region@8b700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b710000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ipa_gsi_region@8b710000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b715400, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node gpu_region@8b715400, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b800000, size 248 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region@8b800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000009fb00000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node hdm_region@9FB00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000b0200000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node fastuh_region@B0200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000b0c00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node tima_region@B0C00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000b0fff000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node kaslr_region@B0FFF000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000b1000000, size 9 MiB\n[    0.000000] OF: reserved mem: initialized node sec_debug_region@B1000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000c0000000, size 94 MiB\n[    0.000000] OF: reserved mem: initialized node removed_region@c0000000, compatible id removed-dma-pool\n[    0.000000] modem_removed_dma_setup: memory add to memblock: paddr=0x00000000d0000000, t_size=96 MiB\n[    0.000000] OF: reserved mem: initialized node modem_shared_mem_region@d0000000, compatible id modem-removed-dma-pool\n[    0.000000] On node 0 totalpages: 1438053\n[    0.000000]   Normal zone: 22470 pages used for memmap\n[    0.000000]   Normal zone: 0 pages reserved\n[    0.000000]   Normal zone: 1438053 pages, LIFO batch:63\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.1\n[    0.000000] random: fast init done\n[    0.000000] percpu: Embedded 24 pages/cpu s60440 r8192 d29672 u98304\n[    0.000000] pcpu-alloc: s60440 r8192 d29672 u98304 alloc=24*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] CPU features: detected: Speculative Store Bypassing Safe (SSBS)\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1415583\n"
  },
  {
    "path": "results/sm7225/m23xq/post_bench_interrupts.txt",
    "content": "           CPU0       \n  3:       7208     GICv3  19 Level     arch_timer\n  5:     159009     GICv3  38 Level     arch_mem_timer\n  7:          0     GICv3 195 Level     ngd_slim_irq\n  9:        475     GICv3 297 Level     1d84000.ufshc\n 10:          6     GICv3 260 Level     ipcc_1\n 13:       3287     GICv3  37 Level     apps_rsc\n 14:          0     GICv3 161 Level     disp_rsc\n 15:          0     GICv3  21 Level     arm-pmu\n 16:          0     GICv3 304 Level     sps\n 17:          0     GICv3  32 Edge      apps_wdog_bark\n 19:          0     GICv3  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 20:          0     GICv3  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 21:          0       PDC   6 Edge      adsp\n 22:          0     GICv3 610 Edge      cdsp\n 23:          0     GICv3 168 Edge      modem\n 24:          0       PDC  26 Level     tsens-upper-lower\n 25:          0       PDC  28 Level     tsens-critical\n 26:          0       PDC  20 Edge      tsens-0C\n 27:          0       PDC  27 Level     tsens-upper-lower\n 28:          0       PDC  29 Level     tsens-critical\n 29:          0       PDC  21 Edge      tsens-0C\n 31:          0       PDC  11 Level     eud_irq\n 38:         14     GICv3 236 Level     mmc0\n 39:          4     GICv3 254 Level     8804000.sdhci\n 54:          0       PDC  14 Edge      dp_hs_phy_irq\n 55:          1     GICv3 162 Level     pwr_event_irq\n 56:          0       PDC  17 Level     ss_phy_irq\n 57:          0       PDC  15 Edge      dm_hs_phy_irq\n 58:          0     GICv3 332 Level     kgsl_3d0_irq\n 59:          0     GICv3 336 Level     kgsl_hfi_irq\n 60:          0     GICv3 337 Level     kgsl_gmu_irq\n 61:          0     GICv3 615 Level     error_irq\n 62:          0     GICv3 617 Edge      wdg_bite_irq\n 63:          0     GICv3 619 Edge      ipc_irq\n 64:          0     GICv3 616 Level     general_irq\n 65:          0     GICv3 509 Edge      csiphy\n 66:          0     GICv3 510 Edge      csiphy\n 67:          0     GICv3 511 Edge      csiphy\n 68:          0     GICv3 493 Edge      csiphy\n 69:          0     GICv3 500 Edge      cci\n 70:          0     GICv3 494 Edge      cci\n 71:          1     GICv3 501 Edge      cpas-cdm\n 72:          0     GICv3 496 Edge      csid0\n 73:          2     GICv3 497 Edge      ife0\n 74:          0     GICv3 498 Edge      csid1\n 75:          2     GICv3 499 Edge      ife1\n 76:          0     GICv3 749 Edge      csid\n 77:          2     GICv3 750 Edge      ife\n 78:          0     GICv3 505 Edge      csid-lite\n 79:          2     GICv3 504 Edge      ife-lite\n 80:          0     GICv3 495 Edge      a5\n 81:          0     GICv3 506 Edge      jpeg\n 82:          0     GICv3 507 Edge      jpegdma\n 83:          1     GICv3 508 Edge      lrme\n 84:          0     GICv3 491 Edge      cpas_camnoc\n 85:          0     GICv3 261 Level     arm-smmu global fault\n 86:          0     GICv3 263 Level     arm-smmu global fault\n 87:          0     GICv3 396 Level     arm-smmu-context-fault\n 88:          0     GICv3 397 Level     arm-smmu-context-fault\n 89:          0     GICv3 398 Level     arm-smmu-context-fault\n 90:          0     GICv3 399 Level     arm-smmu-context-fault\n 95:          0     GICv3  97 Level     arm-smmu global fault\n 98:          0     GICv3 129 Level     arm-smmu-context-fault\n 99:          0     GICv3 130 Level     arm-smmu-context-fault\n100:          0     GICv3 131 Level     arm-smmu-context-fault\n101:          0     GICv3 132 Level     arm-smmu-context-fault\n102:          0     GICv3 133 Level     arm-smmu-context-fault\n103:          0     GICv3 134 Level     arm-smmu-context-fault\n104:          0     GICv3 135 Level     arm-smmu-context-fault\n105:          0     GICv3 136 Level     arm-smmu-context-fault\n106:          0     GICv3 137 Level     arm-smmu-context-fault\n107:          0     GICv3 138 Level     arm-smmu-context-fault\n108:          0     GICv3 139 Level     arm-smmu-context-fault\n109:          0     GICv3 140 Level     arm-smmu-context-fault\n110:          0     GICv3 141 Level     arm-smmu-context-fault\n111:          0     GICv3 142 Level     arm-smmu-context-fault\n112:          0     GICv3 143 Level     arm-smmu-context-fault\n113:          0     GICv3 144 Level     arm-smmu-context-fault\n114:          0     GICv3 145 Level     arm-smmu-context-fault\n115:          0     GICv3 146 Level     arm-smmu-context-fault\n116:          0     GICv3 147 Level     arm-smmu-context-fault\n117:          0     GICv3 148 Level     arm-smmu-context-fault\n118:          0     GICv3 149 Level     arm-smmu-context-fault\n119:          0     GICv3 150 Level     arm-smmu-context-fault\n120:          0     GICv3 213 Level     arm-smmu-context-fault\n121:          0     GICv3 214 Level     arm-smmu-context-fault\n122:          0     GICv3 215 Level     arm-smmu-context-fault\n123:          0     GICv3 216 Level     arm-smmu-context-fault\n124:          0     GICv3 217 Level     arm-smmu-context-fault\n125:          0     GICv3 218 Level     arm-smmu-context-fault\n126:          0     GICv3 219 Level     arm-smmu-context-fault\n127:          0     GICv3 220 Level     arm-smmu-context-fault\n128:          0     GICv3 221 Level     arm-smmu-context-fault\n129:          0     GICv3 222 Level     arm-smmu-context-fault\n130:          0     GICv3 223 Level     arm-smmu-context-fault\n131:          0     GICv3 224 Level     arm-smmu-context-fault\n132:          0     GICv3 347 Level     arm-smmu-context-fault\n133:          0     GICv3 348 Level     arm-smmu-context-fault\n134:          0     GICv3 349 Level     arm-smmu-context-fault\n135:          0     GICv3 350 Level     arm-smmu-context-fault\n136:          0     GICv3 351 Level     arm-smmu-context-fault\n137:          0     GICv3 352 Level     arm-smmu-context-fault\n185:          0     GICv3 302 Edge      tmc-etr\n186:        755     GICv3 276 Level     gpi_dma800000_gpii0\n196:          3     GICv3 633 Level     i2c_geni\n197:          0     GICv3 634 Level     msm_serial_geni0\n198:          0     GICv3 635 Level     spi_geni\n209:      44020     GICv3 386 Level     i2c_geni\n210:          0     GICv3 387 Level     i2c_geni\n211:          0     GICv3 388 Level     msm_serial_geni8\n212:          3     GICv3 389 Level     i2c_geni\n213:          0     GICv3 206 Level     msm_vidc\n214:          0     GICv3 115 Level     msm_drm\n215:          0  pmic_arb 8388916 Edge      pon_kpdpwr_status\n216:          0  pmic_arb 8454452 Edge      pon_resin_status\n218:          0  pmic_arb 8716596 Edge      pon_kpdpwr_resin_bark\n219:          0  pmic_arb 37749045 Edge      qcom,temp-alarm\n221:          0  pmic_arb 202375484 Edge      volume_up\n229:          0  pmic_arb 1111490921 Edge      qcom,temp-alarm\n230:          0  pmic_arb 1137705324 Edge      bcl-lvl0\n231:          0  pmic_arb 1137770860 Edge      bcl-lvl1\n232:          0  pmic_arb 1137836396 Edge      bcl-lvl2\n233:        554  pmic_arb 1125122410 Edge      pm-adc5\n234:          3  pmic_arb 1129316715 Edge      thr-int-en\n247:          0  pmic_arb 1563427201 Edge      qpnp_flash_led_fault_irq\n248:          0  pmic_arb 1563623809 Edge      qpnp_flash_led_all_ramp_down_done_irq\n249:          0  pmic_arb 1563689345 Edge      qpnp_flash_led_all_ramp_up_done_irq\n250:          1  pmic_arb 1661993354 Edge      pm-adc5\n251:          0  pmic_arb 1665139083 Edge      thr-int-en\n252:          0  pmic_arb 1713439117 Edge      pm8xxx_rtc_alarm\n257:          6      ipcc   0 Edge      qcom,qmp-aop\n258:          0     GICv3 430 Level     capture bus\n259:          0     GICv3 431 Level     capture bus\n260:          0     GICv3 432 Level     capture bus\n261:          0     GICv3 623 Level     capture bus\n262:          0     GICv3 624 Level     capture bus\n263:          0     GICv3 625 Level     capture bus\n264:          0     GICv3 626 Level     capture bus\n265:          0     GICv3  64 Level     limits_sensor-00\n266:          0     GICv3  65 Level     limits_sensor-01\n267:          0      ipcc 131074 Edge      smp2p-mpss\n268:          0      ipcc 196610 Edge      smp2p-adsp\n269:          0      ipcc 393218 Edge      smp2p-cdsp\n270:          0      ipcc 458754 Edge      smp2p-npu\n271:          0     smp2p   2 Edge      adsp\n272:          0     smp2p   0 Edge      adsp\n273:          0     smp2p   1 Edge      error_ready_interrupt\n274:          0     smp2p   3 Edge      adsp\n275:          0     smp2p   2 Edge      cdsp\n276:          0     smp2p   0 Edge      cdsp\n277:          0     smp2p   1 Edge      error_ready_interrupt\n278:          0     smp2p   3 Edge      cdsp\n279:          0     smp2p   2 Edge      modem\n280:          0     smp2p   0 Edge      modem\n281:          0     smp2p   1 Edge      error_ready_interrupt\n282:          0     smp2p   3 Edge      modem\n283:          0     smp2p   7 Edge      modem\n284:          0     smp2p   0 Edge      smp2p_sleepstate\n288:          0     GICv3 165 Level     dwc3\n290:          0   msmgpio   9 Level     pn547\n291:          0   msmgpio   7 Edge      pn547_clk_req\n292:          0    sm5714     Edge      muic-dpdm_ovp\n293:          0    sm5714     Edge      muic-vbus_rid_detach\n294:          0    sm5714     Edge      muic-rid_detect\n295:          0    sm5714     Edge      muic-chgtype_attach\n296:          0    sm5714     Edge      muic-dectimeout\n297:          0    sm5714     Edge      muic-afc_error\n298:          0    sm5714     Edge      muic-afc_sta_chg\n299:          0    sm5714     Edge      muic-multi_byte\n301:          0    sm5714     Edge      muic-afc_accepted\n302:          0    sm5714     Edge      muic-afc_ta_attached\n305:          0    sm5714     Edge      vbusuvlo-irq\n306:          0    sm5714     Edge      vbuspok-irq\n308:          0    sm5714     Edge      done-irq\n314:          0    sm5714     Edge      aicl-irq\n315:          0    sm5714     Edge      vsysovp-irq\n320:          0    sm5714     Edge      otgfail-irq\n329:          0    sm5714     Edge      fuelgauge-irq\n330:          0   msmgpio  84 Level     sm5714-irq\n331:          0   msmgpio  94 Edge      8804000.sdhci cd\n332:          0   msmgpio  97 Edge      ISG6320\n333:          5   msmgpio  22 Edge      NVT-ts\n335:          0   msmgpio  12 Edge      UB_CON_DET\n336:          0   msmgpio  23 Edge      TE_GPIO\n337:          0       sde   4 Edge      dsi_ctrl\n338:          0   msmgpio  54 Edge      tfa98xx\n339:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n340:          0   msmgpio 124 Level     sm5714-usbpd\nIPI0:       146       Rescheduling interrupts\nIPI1:         9       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:     79364       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm7225/m23xq/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  3:        398          3          1          1          1          1          1          1     GICv3  19 Level     arch_timer\n  5:          0          0          0          0          0          0          0          0     GICv3  38 Level     arch_mem_timer\n  7:          0          0          0          0          0          0          0          0     GICv3 195 Level     ngd_slim_irq\n  9:        469          0          0          0          0          0          0          0     GICv3 297 Level     1d84000.ufshc\n 10:          6          0          0          0          0          0          0          0     GICv3 260 Level     ipcc_1\n 13:        350          0          0          0          0          0          0          0     GICv3  37 Level     apps_rsc\n 14:          0          0          0          0          0          0          0          0     GICv3 161 Level     disp_rsc\n 15:          0          0          0          0          0          0          0          0     GICv3  21 Level     arm-pmu\n 16:          0          0          0          0          0          0          0          0     GICv3 304 Level     sps\n 17:          0          0          0          0          0          0          0          0     GICv3  32 Edge      apps_wdog_bark\n 19:          0          0          0          0          0          0          0          0     GICv3  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 20:          0          0          0          0          0          0          0          0     GICv3  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 21:          0          0          0          0          0          0          0          0       PDC   6 Edge      adsp\n 22:          0          0          0          0          0          0          0          0     GICv3 610 Edge      cdsp\n 23:          0          0          0          0          0          0          0          0     GICv3 168 Edge      modem\n 24:          0          0          0          0          0          0          0          0       PDC  26 Level     tsens-upper-lower\n 25:          0          0          0          0          0          0          0          0       PDC  28 Level     tsens-critical\n 26:          0          0          0          0          0          0          0          0       PDC  20 Edge      tsens-0C\n 27:          0          0          0          0          0          0          0          0       PDC  27 Level     tsens-upper-lower\n 28:          0          0          0          0          0          0          0          0       PDC  29 Level     tsens-critical\n 29:          0          0          0          0          0          0          0          0       PDC  21 Edge      tsens-0C\n 31:          0          0          0          0          0          0          0          0       PDC  11 Level     eud_irq\n 38:         14          0          0          0          0          0          0          0     GICv3 236 Level     mmc0\n 39:          4          0          0          0          0          0          0          0     GICv3 254 Level     8804000.sdhci\n 54:          0          0          0          0          0          0          0          0       PDC  14 Edge      dp_hs_phy_irq\n 55:          1          0          0          0          0          0          0          0     GICv3 162 Level     pwr_event_irq\n 56:          0          0          0          0          0          0          0          0       PDC  17 Level     ss_phy_irq\n 57:          0          0          0          0          0          0          0          0       PDC  15 Edge      dm_hs_phy_irq\n 58:          0          0          0          0          0          0          0          0     GICv3 332 Level     kgsl_3d0_irq\n 59:          0          0          0          0          0          0          0          0     GICv3 336 Level     kgsl_hfi_irq\n 60:          0          0          0          0          0          0          0          0     GICv3 337 Level     kgsl_gmu_irq\n 61:          0          0          0          0          0          0          0          0     GICv3 615 Level     error_irq\n 62:          0          0          0          0          0          0          0          0     GICv3 617 Edge      wdg_bite_irq\n 63:          0          0          0          0          0          0          0          0     GICv3 619 Edge      ipc_irq\n 64:          0          0          0          0          0          0          0          0     GICv3 616 Level     general_irq\n 65:          0          0          0          0          0          0          0          0     GICv3 509 Edge      csiphy\n 66:          0          0          0          0          0          0          0          0     GICv3 510 Edge      csiphy\n 67:          0          0          0          0          0          0          0          0     GICv3 511 Edge      csiphy\n 68:          0          0          0          0          0          0          0          0     GICv3 493 Edge      csiphy\n 69:          0          0          0          0          0          0          0          0     GICv3 500 Edge      cci\n 70:          0          0          0          0          0          0          0          0     GICv3 494 Edge      cci\n 71:          1          0          0          0          0          0          0          0     GICv3 501 Edge      cpas-cdm\n 72:          0          0          0          0          0          0          0          0     GICv3 496 Edge      csid0\n 73:          2          0          0          0          0          0          0          0     GICv3 497 Edge      ife0\n 74:          0          0          0          0          0          0          0          0     GICv3 498 Edge      csid1\n 75:          2          0          0          0          0          0          0          0     GICv3 499 Edge      ife1\n 76:          0          0          0          0          0          0          0          0     GICv3 749 Edge      csid\n 77:          2          0          0          0          0          0          0          0     GICv3 750 Edge      ife\n 78:          0          0          0          0          0          0          0          0     GICv3 505 Edge      csid-lite\n 79:          2          0          0          0          0          0          0          0     GICv3 504 Edge      ife-lite\n 80:          0          0          0          0          0          0          0          0     GICv3 495 Edge      a5\n 81:          0          0          0          0          0          0          0          0     GICv3 506 Edge      jpeg\n 82:          0          0          0          0          0          0          0          0     GICv3 507 Edge      jpegdma\n 83:          1          0          0          0          0          0          0          0     GICv3 508 Edge      lrme\n 84:          0          0          0          0          0          0          0          0     GICv3 491 Edge      cpas_camnoc\n 85:          0          0          0          0          0          0          0          0     GICv3 261 Level     arm-smmu global fault\n 86:          0          0          0          0          0          0          0          0     GICv3 263 Level     arm-smmu global fault\n 87:          0          0          0          0          0          0          0          0     GICv3 396 Level     arm-smmu-context-fault\n 88:          0          0          0          0          0          0          0          0     GICv3 397 Level     arm-smmu-context-fault\n 89:          0          0          0          0          0          0          0          0     GICv3 398 Level     arm-smmu-context-fault\n 90:          0          0          0          0          0          0          0          0     GICv3 399 Level     arm-smmu-context-fault\n 95:          0          0          0          0          0          0          0          0     GICv3  97 Level     arm-smmu global fault\n 98:          0          0          0          0          0          0          0          0     GICv3 129 Level     arm-smmu-context-fault\n 99:          0          0          0          0          0          0          0          0     GICv3 130 Level     arm-smmu-context-fault\n100:          0          0          0          0          0          0          0          0     GICv3 131 Level     arm-smmu-context-fault\n101:          0          0          0          0          0          0          0          0     GICv3 132 Level     arm-smmu-context-fault\n102:          0          0          0          0          0          0          0          0     GICv3 133 Level     arm-smmu-context-fault\n103:          0          0          0          0          0          0          0          0     GICv3 134 Level     arm-smmu-context-fault\n104:          0          0          0          0          0          0          0          0     GICv3 135 Level     arm-smmu-context-fault\n105:          0          0          0          0          0          0          0          0     GICv3 136 Level     arm-smmu-context-fault\n106:          0          0          0          0          0          0          0          0     GICv3 137 Level     arm-smmu-context-fault\n107:          0          0          0          0          0          0          0          0     GICv3 138 Level     arm-smmu-context-fault\n108:          0          0          0          0          0          0          0          0     GICv3 139 Level     arm-smmu-context-fault\n109:          0          0          0          0          0          0          0          0     GICv3 140 Level     arm-smmu-context-fault\n110:          0          0          0          0          0          0          0          0     GICv3 141 Level     arm-smmu-context-fault\n111:          0          0          0          0          0          0          0          0     GICv3 142 Level     arm-smmu-context-fault\n112:          0          0          0          0          0          0          0          0     GICv3 143 Level     arm-smmu-context-fault\n113:          0          0          0          0          0          0          0          0     GICv3 144 Level     arm-smmu-context-fault\n114:          0          0          0          0          0          0          0          0     GICv3 145 Level     arm-smmu-context-fault\n115:          0          0          0          0          0          0          0          0     GICv3 146 Level     arm-smmu-context-fault\n116:          0          0          0          0          0          0          0          0     GICv3 147 Level     arm-smmu-context-fault\n117:          0          0          0          0          0          0          0          0     GICv3 148 Level     arm-smmu-context-fault\n118:          0          0          0          0          0          0          0          0     GICv3 149 Level     arm-smmu-context-fault\n119:          0          0          0          0          0          0          0          0     GICv3 150 Level     arm-smmu-context-fault\n120:          0          0          0          0          0          0          0          0     GICv3 213 Level     arm-smmu-context-fault\n121:          0          0          0          0          0          0          0          0     GICv3 214 Level     arm-smmu-context-fault\n122:          0          0          0          0          0          0          0          0     GICv3 215 Level     arm-smmu-context-fault\n123:          0          0          0          0          0          0          0          0     GICv3 216 Level     arm-smmu-context-fault\n124:          0          0          0          0          0          0          0          0     GICv3 217 Level     arm-smmu-context-fault\n125:          0          0          0          0          0          0          0          0     GICv3 218 Level     arm-smmu-context-fault\n126:          0          0          0          0          0          0          0          0     GICv3 219 Level     arm-smmu-context-fault\n127:          0          0          0          0          0          0          0          0     GICv3 220 Level     arm-smmu-context-fault\n128:          0          0          0          0          0          0          0          0     GICv3 221 Level     arm-smmu-context-fault\n129:          0          0          0          0          0          0          0          0     GICv3 222 Level     arm-smmu-context-fault\n130:          0          0          0          0          0          0          0          0     GICv3 223 Level     arm-smmu-context-fault\n131:          0          0          0          0          0          0          0          0     GICv3 224 Level     arm-smmu-context-fault\n132:          0          0          0          0          0          0          0          0     GICv3 347 Level     arm-smmu-context-fault\n133:          0          0          0          0          0          0          0          0     GICv3 348 Level     arm-smmu-context-fault\n134:          0          0          0          0          0          0          0          0     GICv3 349 Level     arm-smmu-context-fault\n135:          0          0          0          0          0          0          0          0     GICv3 350 Level     arm-smmu-context-fault\n136:          0          0          0          0          0          0          0          0     GICv3 351 Level     arm-smmu-context-fault\n137:          0          0          0          0          0          0          0          0     GICv3 352 Level     arm-smmu-context-fault\n185:          0          0          0          0          0          0          0          0     GICv3 302 Edge      tmc-etr\n186:        140          0          0          0          0          0          0          0     GICv3 276 Level     gpi_dma800000_gpii0\n196:          3          0          0          0          0          0          0          0     GICv3 633 Level     i2c_geni\n197:          0          0          0          0          0          0          0          0     GICv3 634 Level     msm_serial_geni0\n198:          0          0          0          0          0          0          0          0     GICv3 635 Level     spi_geni\n209:       2615          0          0          0          0          0          0          0     GICv3 386 Level     i2c_geni\n210:          0          0          0          0          0          0          0          0     GICv3 387 Level     i2c_geni\n211:          0          0          0          0          0          0          0          0     GICv3 388 Level     msm_serial_geni8\n212:          3          0          0          0          0          0          0          0     GICv3 389 Level     i2c_geni\n213:          0          0          0          0          0          0          0          0     GICv3 206 Level     msm_vidc\n214:          0          0          0          0          0          0          0          0     GICv3 115 Level     msm_drm\n215:          0          0          0          0          0          0          0          0  pmic_arb 8388916 Edge      pon_kpdpwr_status\n216:          0          0          0          0          0          0          0          0  pmic_arb 8454452 Edge      pon_resin_status\n218:          0          0          0          0          0          0          0          0  pmic_arb 8716596 Edge      pon_kpdpwr_resin_bark\n219:          0          0          0          0          0          0          0          0  pmic_arb 37749045 Edge      qcom,temp-alarm\n221:          0          0          0          0          0          0          0          0  pmic_arb 202375484 Edge      volume_up\n229:          0          0          0          0          0          0          0          0  pmic_arb 1111490921 Edge      qcom,temp-alarm\n230:          0          0          0          0          0          0          0          0  pmic_arb 1137705324 Edge      bcl-lvl0\n231:          0          0          0          0          0          0          0          0  pmic_arb 1137770860 Edge      bcl-lvl1\n232:          0          0          0          0          0          0          0          0  pmic_arb 1137836396 Edge      bcl-lvl2\n233:         26          0          0          0          0          0          0          0  pmic_arb 1125122410 Edge      pm-adc5\n234:          0          0          0          0          0          0          0          0  pmic_arb 1129316715 Edge      thr-int-en\n247:          0          0          0          0          0          0          0          0  pmic_arb 1563427201 Edge      qpnp_flash_led_fault_irq\n248:          0          0          0          0          0          0          0          0  pmic_arb 1563623809 Edge      qpnp_flash_led_all_ramp_down_done_irq\n249:          0          0          0          0          0          0          0          0  pmic_arb 1563689345 Edge      qpnp_flash_led_all_ramp_up_done_irq\n250:          1          0          0          0          0          0          0          0  pmic_arb 1661993354 Edge      pm-adc5\n251:          0          0          0          0          0          0          0          0  pmic_arb 1665139083 Edge      thr-int-en\n252:          0          0          0          0          0          0          0          0  pmic_arb 1713439117 Edge      pm8xxx_rtc_alarm\n257:          6          0          0          0          0          0          0          0      ipcc   0 Edge      qcom,qmp-aop\n258:          0          0          0          0          0          0          0          0     GICv3 430 Level     capture bus\n259:          0          0          0          0          0          0          0          0     GICv3 431 Level     capture bus\n260:          0          0          0          0          0          0          0          0     GICv3 432 Level     capture bus\n261:          0          0          0          0          0          0          0          0     GICv3 623 Level     capture bus\n262:          0          0          0          0          0          0          0          0     GICv3 624 Level     capture bus\n263:          0          0          0          0          0          0          0          0     GICv3 625 Level     capture bus\n264:          0          0          0          0          0          0          0          0     GICv3 626 Level     capture bus\n265:          0          0          0          0          0          0          0          0     GICv3  64 Level     limits_sensor-00\n266:          0          0          0          0          0          0          0          0     GICv3  65 Level     limits_sensor-01\n267:          0          0          0          0          0          0          0          0      ipcc 131074 Edge      smp2p-mpss\n268:          0          0          0          0          0          0          0          0      ipcc 196610 Edge      smp2p-adsp\n269:          0          0          0          0          0          0          0          0      ipcc 393218 Edge      smp2p-cdsp\n270:          0          0          0          0          0          0          0          0      ipcc 458754 Edge      smp2p-npu\n271:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n272:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n273:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n274:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n275:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n276:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n277:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n278:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n279:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n280:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n281:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n282:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n283:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n284:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n288:          0          0          0          0          0          0          0          0     GICv3 165 Level     dwc3\n290:          0          0          0          0          0          0          0          0   msmgpio   9 Level     pn547\n291:          0          0          0          0          0          0          0          0   msmgpio   7 Edge      pn547_clk_req\n292:          0          0          0          0          0          0          0          0    sm5714     Edge      muic-dpdm_ovp\n293:          0          0          0          0          0          0          0          0    sm5714     Edge      muic-vbus_rid_detach\n294:          0          0          0          0          0          0          0          0    sm5714     Edge      muic-rid_detect\n295:          0          0          0          0          0          0          0          0    sm5714     Edge      muic-chgtype_attach\n296:          0          0          0          0          0          0          0          0    sm5714     Edge      muic-dectimeout\n297:          0          0          0          0          0          0          0          0    sm5714     Edge      muic-afc_error\n298:          0          0          0          0          0          0          0          0    sm5714     Edge      muic-afc_sta_chg\n299:          0          0          0          0          0          0          0          0    sm5714     Edge      muic-multi_byte\n301:          0          0          0          0          0          0          0          0    sm5714     Edge      muic-afc_accepted\n302:          0          0          0          0          0          0          0          0    sm5714     Edge      muic-afc_ta_attached\n305:          0          0          0          0          0          0          0          0    sm5714     Edge      vbusuvlo-irq\n306:          0          0          0          0          0          0          0          0    sm5714     Edge      vbuspok-irq\n308:          0          0          0          0          0          0          0          0    sm5714     Edge      done-irq\n314:          0          0          0          0          0          0          0          0    sm5714     Edge      aicl-irq\n315:          0          0          0          0          0          0          0          0    sm5714     Edge      vsysovp-irq\n320:          0          0          0          0          0          0          0          0    sm5714     Edge      otgfail-irq\n329:          0          0          0          0          0          0          0          0    sm5714     Edge      fuelgauge-irq\n330:          0          0          0          0          0          0          0          0   msmgpio  84 Level     sm5714-irq\n331:          0          0          0          0          0          0          0          0   msmgpio  94 Edge      8804000.sdhci cd\n332:          0          0          0          0          0          0          0          0   msmgpio  97 Edge      ISG6320\n333:          2          0          0          0          0          0          0          0   msmgpio  22 Edge      NVT-ts\n335:          0          0          0          0          0          0          0          0   msmgpio  12 Edge      UB_CON_DET\n336:          0          0          0          0          0          0          0          0   msmgpio  23 Edge      TE_GPIO\n337:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n338:          0          0          0          0          0          0          0          0   msmgpio  54 Edge      tfa98xx\n339:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n340:          0          0          0          0          0          0          0          0   msmgpio 124 Level     sm5714-usbpd\nIPI0:        74         47         47         47         47         47         41         41       Rescheduling interrupts\nIPI1:         0          6          6          6          6          6          6          6       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:        98          8          7          7          7          8          7          7       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm7225/m23xq/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    6 root      0:00 [kworker/0:0H-ev]\n    7 root      0:00 [kworker/u16:0+M]\n    8 root      0:00 [mm_percpu_wq]\n    9 root      0:00 [ksoftirqd/0]\n   10 root      0:00 [rcu_preempt]\n   11 root      0:00 [rcu_sched]\n   12 root      0:00 [rcu_bh]\n   13 root      0:00 [rcuop/0]\n   14 root      0:00 [rcuos/0]\n   15 root      0:00 [rcuob/0]\n   16 root      0:00 [migration/0]\n   17 root      0:00 [cpuhp/0]\n   18 root      0:00 [cpuhp/1]\n   19 root      0:00 [migration/1]\n   20 root      0:00 [ksoftirqd/1]\n   21 root      0:00 [kworker/1:0-mm_]\n   22 root      0:00 [kworker/1:0H-ev]\n   23 root      0:00 [rcuop/1]\n   24 root      0:00 [rcuos/1]\n   25 root      0:00 [rcuob/1]\n   27 root      0:00 [cpuhp/2]\n   28 root      0:00 [migration/2]\n   29 root      0:00 [ksoftirqd/2]\n   31 root      0:00 [kworker/2:0H-ev]\n   32 root      0:00 [rcuop/2]\n   33 root      0:00 [rcuos/2]\n   34 root      0:00 [rcuob/2]\n   35 root      0:00 [cpuhp/3]\n   36 root      0:00 [migration/3]\n   37 root      0:00 [ksoftirqd/3]\n   38 root      0:00 [kworker/3:0-eve]\n   39 root      0:00 [kworker/3:0H-ev]\n   40 root      0:00 [rcuop/3]\n   41 root      0:00 [rcuos/3]\n   42 root      0:00 [rcuob/3]\n   43 root      0:00 [cpuhp/4]\n   44 root      0:00 [migration/4]\n   45 root      0:00 [ksoftirqd/4]\n   46 root      0:00 [kworker/4:0-eve]\n   47 root      0:00 [kworker/4:0H-ev]\n   48 root      0:00 [rcuop/4]\n   49 root      0:00 [rcuos/4]\n   50 root      0:00 [rcuob/4]\n   51 root      0:00 [cpuhp/5]\n   52 root      0:00 [migration/5]\n   53 root      0:00 [ksoftirqd/5]\n   54 root      0:00 [kworker/5:0-eve]\n   55 root      0:00 [kworker/5:0H-ev]\n   56 root      0:00 [rcuop/5]\n   57 root      0:00 [rcuos/5]\n   58 root      0:00 [rcuob/5]\n   59 root      0:00 [cpuhp/6]\n   60 root      0:00 [migration/6]\n   61 root      0:00 [ksoftirqd/6]\n   63 root      0:00 [kworker/6:0H-ev]\n   64 root      0:00 [rcuop/6]\n   65 root      0:00 [rcuos/6]\n   66 root      0:00 [rcuob/6]\n   67 root      0:00 [cpuhp/7]\n   68 root      0:00 [migration/7]\n   69 root      0:00 [ksoftirqd/7]\n   71 root      0:00 [kworker/7:0H-ev]\n   72 root      0:00 [rcuop/7]\n   73 root      0:00 [rcuos/7]\n   74 root      0:00 [rcuob/7]\n   75 root      0:00 [netns]\n   76 root      0:00 [rcu_tasks_kthre]\n   77 root      0:00 [kauditd]\n   78 root      0:00 [kworker/u16:1+L]\n   79 root      0:00 [kworker/u17:0]\n   80 root      0:00 [ipa_usb_wq]\n   81 root      0:00 [msm_watchdog]\n   82 root      0:00 [qmp_aop]\n   83 root      0:00 [oom_reaper]\n   84 root      0:00 [writeback]\n   85 root      0:00 [kcompactd0]\n   86 root      0:00 [crypto]\n   87 root      0:00 [kblockd]\n   88 root      0:00 [blk_crypto_wq]\n   89 root      0:00 [irq/85-arm-smmu]\n   90 root      0:00 [irq/86-arm-smmu]\n   91 root      0:00 [irq/95-arm-smmu]\n   92 root      0:00 [irq/258-capture]\n   93 root      0:00 [irq/259-capture]\n   94 root      0:00 [irq/260-capture]\n   95 root      0:00 [irq/261-capture]\n   96 root      0:00 [irq/262-capture]\n   97 root      0:00 [irq/263-capture]\n   98 root      0:00 [irq/264-capture]\n   99 root      0:00 [irq/24-tsens-up]\n  100 root      0:00 [irq/25-tsens-cr]\n  101 root      0:00 [irq/26-tsens-0C]\n  102 root      0:00 [irq/27-tsens-up]\n  103 root      0:00 [irq/28-tsens-cr]\n  104 root      0:00 [irq/29-tsens-0C]\n  105 root      0:00 [edac-poller]\n  106 root      0:00 [ion-pool-uncach]\n  107 root      0:00 [ion-pool-cached]\n  108 root      0:00 [system]\n  109 root      0:00 [ipa_power_mgmt]\n  110 root      0:00 [transport_power]\n  111 root      0:00 [ipa_pm_activate]\n  112 root      0:00 [irq/99-arm-smmu]\n  113 root      0:00 [irq/100-arm-smm]\n  114 root      0:00 [irq/101-arm-smm]\n  115 root      0:00 [devfreq_wq]\n  116 root      0:00 [governor_msm_ad]\n  117 root      0:00 [irq/102-arm-smm]\n  118 root      0:00 [irq/103-arm-smm]\n  120 root      0:00 [watchdogd]\n  121 root      0:00 [cfg80211]\n  158 root      0:00 [kworker/1:1-eve]\n  159 root      0:00 [kworker/2:1-eve]\n  162 root      0:00 [kworker/6:1-eve]\n  164 root      0:00 [kworker/7:1-eve]\n  165 root      0:00 [kswapd0:0]\n  166 root      0:00 [ecryptfs-kthrea]\n  211 root      0:00 [irq/104-arm-smm]\n  212 root      0:00 [irq/105-arm-smm]\n  213 root      0:00 [irq/267-smp2p-m]\n  214 root      0:00 [irq/268-smp2p-a]\n  215 root      0:00 [irq/269-smp2p-c]\n  216 root      0:00 [mem_share_svc]\n  217 root      0:00 [irq/106-arm-smm]\n  218 root      0:00 [dbg_part_wq]\n  219 root      0:00 [hwrng]\n  221 root      0:00 [diag_real_time_]\n  222 root      0:00 [diag_wq]\n  223 root      0:00 [DIAG_USB_diag]\n  224 root      0:00 [diag_cntl_wq]\n  225 root      0:00 [diag_dci_wq]\n  226 root      0:00 [MODEM_CNTL]\n  227 root      0:00 [MODEM_DATA]\n  228 root      0:00 [MODEM_CMD]\n  229 root      0:00 [MODEM_DCI]\n  230 root      0:00 [MODEM_DCI_CMD]\n  231 root      0:00 [LPASS_CNTL]\n  232 root      0:00 [LPASS_DATA]\n  233 root      0:00 [LPASS_CMD]\n  234 root      0:00 [LPASS_DCI]\n  235 root      0:00 [LPASS_DCI_CMD]\n  236 root      0:00 [WCNSS_CNTL]\n  237 root      0:00 [WCNSS_DATA]\n  238 root      0:00 [WCNSS_CMD]\n  239 root      0:00 [WCNSS_DCI]\n  240 root      0:00 [WCNSS_DCI_CMD]\n  241 root      0:00 [SENSORS_CNTL]\n  242 root      0:00 [SENSORS_DATA]\n  243 root      0:00 [SENSORS_CMD]\n  244 root      0:00 [SENSORS_DCI]\n  245 root      0:00 [SENSORS_DCI_CMD]\n  246 root      0:00 [DIAG_CTRL]\n  247 root      0:00 [DIAG_DATA]\n  248 root      0:00 [DIAG_CMD]\n  249 root      0:00 [DIAG_DCI_DATA]\n  250 root      0:00 [DIAG_DCI_CMD]\n  251 root      0:00 [CDSP_CNTL]\n  252 root      0:00 [CDSP_DATA]\n  253 root      0:00 [CDSP_CMD]\n  254 root      0:00 [CDSP_DCI]\n  255 root      0:00 [CDSP_DCI_CMD]\n  256 root      0:00 [NPU_CNTL]\n  257 root      0:00 [NPU_DATA]\n  258 root      0:00 [NPU_CMD]\n  259 root      0:00 [NPU_DCI]\n  260 root      0:00 [NPU_DCI_CMD]\n  261 root      0:00 [DIAG_RPMSG_DIAG]\n  262 root      0:00 [DIAG_RPMSG_DIAG]\n  263 root      0:00 [DIAG_RPMSG_DIAG]\n  264 root      0:00 [DIAG_RPMSG_DIAG]\n  265 root      0:00 [DIAG_RPMSG_DIAG]\n  266 root      0:00 [diag_mhi_MDM]\n  267 root      0:00 [kworker/u16:2+W]\n  268 root      0:00 [DIAG_USB_diag_m]\n  269 root      0:00 [kworker/u16:3+S]\n  270 root      0:00 [kworker/u16:4+D]\n  271 root      0:00 [diag_mhi_MDM_DC]\n  272 root      0:00 [kworker/u16:5+C]\n  273 root      0:00 [diag_dci_MDM_DC]\n  274 root      0:00 [kworker/u16:6+N]\n  275 root      0:00 [diag_mhi_MDM_2]\n  277 root      0:00 [DIAG_USB_diag_m]\n  278 root      0:00 [diag_mhi_MDM_DC]\n  279 root      0:00 [diag_dci_MDM_DC]\n  280 root      0:00 [kgsl-workqueue]\n  281 root      0:00 [kgsl-mementry]\n  282 root      0:00 [kgsl_worker_thr]\n  283 root      0:00 [qseecom-unreg-l]\n  284 root      0:00 [qseecom-unload-]\n  285 root      0:00 [irq/107-arm-smm]\n  286 root      0:00 [irq/108-arm-smm]\n  287 root      0:00 [irq/109-arm-smm]\n  288 root      0:00 [qcrypto_seq_res]\n  289 root      0:00 [irq/110-arm-smm]\n  310 root      0:00 [scsi_eh_0]\n  311 root      0:00 [scsi_tmf_0]\n  312 root      0:00 [ufs_pm_qos_0]\n  313 root      0:00 [ufs_recovery_wq]\n  314 root      0:00 [ufs_clk_gating_]\n  315 root      0:00 [ufs_clkscaling_]\n  316 root      0:00 [spi0]\n  318 root      0:00 [bond0]\n  319 root      0:00 [irq/111-arm-smm]\n  320 root      0:00 [irq/55-pwr_even]\n  321 root      0:00 [irq/54-dp_hs_ph]\n  322 root      0:00 [irq/57-dm_hs_ph]\n  323 root      0:00 [irq/56-ss_phy_i]\n  324 root      0:00 [k_ipa_usb]\n  325 root      0:00 [kworker/u16:9-r]\n  326 root      0:00 [irq/291-pn547_c]\n  327 root      0:00 [irq/330-sm5714-]\n  328 root      0:00 [irq/112-arm-smm]\n  329 root      0:00 [npu_general_wq]\n  330 root      0:00 [irq/219-qcom,te]\n  331 root      0:00 [irq/229-qcom,te]\n  332 root      0:00 [irq/230-bcl-lvl]\n  333 root      0:00 [irq/231-bcl-lvl]\n  334 root      0:00 [irq/232-bcl-lvl]\n  335 root      0:00 [irq/265-limits_]\n  336 root      0:00 [irq/266-limits_]\n  337 root      0:00 [kworker/0:1H-kb]\n  338 root      0:00 [kworker/1:1H]\n  339 root      0:00 [kworker/2:1H]\n  340 root      0:00 [kworker/3:1H]\n  341 root      0:00 [kworker/4:1H]\n  342 root      0:00 [kworker/5:1H]\n  343 root      0:00 [kworker/6:1H]\n  344 root      0:00 [kworker/7:1H]\n  345 root      0:00 [dm_bufio_cache]\n  346 root      0:00 [irq/20-KRYO L3-]\n  347 root      0:00 [irq/39-8804000.]\n  348 root      0:00 [usb_bam_wq]\n  349 root      0:00 [memlat_wq]\n  350 root      0:00 [irq/38-mmc0]\n  351 root      0:00 [kworker/u16:10-]\n  352 root      0:00 [irq/113-arm-smm]\n  353 root      0:00 [kworker/u16:11-]\n  354 root      0:00 [irq/331-8804000]\n  356 root      0:00 [irq/332-ISG6320]\n  357 root      0:00 [typec_manager_e]\n  358 root      0:00 [typec_manager_m]\n  359 root      0:00 [sdump_wq]\n  360 root      0:00 [ssc_charge_wq]\n  361 root      0:00 [accel_wq]\n  362 root      0:00 [flip_cover_dete]\n  363 root      0:00 [sec_abc_wq]\n  364 root      0:00 [bootc_wq]\n  365 root      0:00 [fingerprint_deb]\n  366 root      0:00 [sm5451-PD-DC]\n  367 root      0:00 [sec_vibrator]\n  368 root      0:00 [irq/333-NVT-ts]\n  369 root      0:00 [sm5714-charger]\n  370 root      0:00 [irq/114-arm-smm]\n  371 root      0:00 [uaudio_svc]\n  372 root      0:00 [dsi_dma_cmd_wor]\n  373 root      0:00 [irq/335-UB_CON_]\n  374 root      0:00 [panel_notify_wq]\n  375 root      0:00 [irq/98-arm-smmu]\n  376 root      0:00 [irq/115-arm-smm]\n  377 root      0:00 [crtc_commit:103]\n  378 root      0:00 [crtc_event:103]\n  379 root      0:00 [crtc_commit:154]\n  380 root      0:00 [crtc_event:154]\n  381 root      0:00 [pp_event]\n  382 root      0:00 [msm_vidc_worker]\n  383 root      0:00 [pm_workerq_venu]\n  384 root      0:00 [vidc_core_workq]\n  385 root      0:00 [irq/116-arm-smm]\n  386 root      0:00 [irq/117-arm-smm]\n  387 root      0:00 [irq/118-arm-smm]\n  388 root      0:00 [irq/119-arm-smm]\n  389 root      0:00 [irq/120-arm-smm]\n  390 root      0:00 [irq/121-arm-smm]\n  391 root      0:00 [irq/122-arm-smm]\n  392 root      0:00 [irq/123-arm-smm]\n  393 root      0:00 [irq/124-arm-smm]\n  394 root      0:00 [cam-cpas]\n  395 root      0:00 [qcom,cam_virtua]\n  396 root      0:00 [qcom,cam170-cpa]\n  397 root      0:00 [cam_cci_wq]\n  398 root      0:00 [cam_cci_wq]\n  399 root      0:00 [cam_cci_wq]\n  400 root      0:00 [cam_cci_wq]\n  402 root      0:00 [apr_driver]\n  403 root      0:00 [irq/338-tfa98xx]\n  404 root      0:00 [ipv6_addrconf]\n  405 root      0:00 [irq/270-smp2p-n]\n  406 root      0:00 [kworker/0:5-eve]\n  407 root      0:00 [irq/87-arm-smmu]\n  408 root      0:00 [irq/88-arm-smmu]\n  409 root      0:00 [irq/89-arm-smmu]\n  410 root      0:00 [irq/90-arm-smmu]\n  411 root      0:00 [kgsl-events]\n  412 root      0:00 [kgsl_devfreq_wq]\n  413 root      0:00 [irq/234-thr-int]\n  414 root      0:00 [irq/251-thr-int]\n  415 root      0:00 [byte-cntr]\n  416 root      0:00 [core_ctl/0]\n  417 root      0:00 [core_ctl/6]\n  418 root      0:00 [rq_stats]\n  419 root      0:00 [msm_perf:events]\n  420 root      0:00 [cdsprm-wq]\n  421 root      0:00 [cdsprm-wq-delay]\n  422 root      0:00 [irq/125-arm-smm]\n  423 root      0:00 [irq/126-arm-smm]\n  424 root      0:00 [irq/127-arm-smm]\n  425 root      0:00 [irq/128-arm-smm]\n  426 root      0:00 [irq/129-arm-smm]\n  427 root      0:00 [irq/130-arm-smm]\n  428 root      0:00 [irq/131-arm-smm]\n  429 root      0:01 [kworker/0:6-eve]\n  430 root      0:00 [irq/132-arm-smm]\n  431 root      0:00 [irq/133-arm-smm]\n  432 root      0:00 [irq/134-arm-smm]\n  433 root      0:00 [irq/135-arm-smm]\n  434 root      0:00 [irq/136-arm-smm]\n  435 root      0:00 [irq/137-arm-smm]\n  436 root      0:00 [sb-1]\n  437 root      0:00 [ngd_rx_thread1]\n  438 root      0:00 [ngd_notify_sl1]\n  439 root      0:00 [usb_notify]\n  441 root      0:00 [irq/249-qpnp_fl]\n  442 root      0:00 [irq/248-qpnp_fl]\n  443 root      0:00 [irq/247-qpnp_fl]\n  444 root      0:00 [mst_cluster_fre]\n  445 root      0:00 [pdic_irq_event]\n  446 root      0:00 [irq/340-sm5714-]\n  448 root      0:00 [samsung_mobile_]\n  467 root      0:00 [kworker/2:2]\n  468 root      0:00 [kworker/3:2]\n  469 root      0:00 [kworker/4:2]\n  470 root      0:00 [kworker/5:2]\n  471 root      0:00 [kworker/6:2-eve]\n  472 root      0:00 [kworker/7:2]\n  513 root      0:00 [kworker/0:0-eve]\n  541 root      0:00 [kworker/0:1-eve]\n  588 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm7225/m23xq/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1113.829681,3.712765603333333,4.571715355805215,1.231430182324447,243.61917086823402,269.358454428\r\n1,576000,2138.610473,3.7128654045138894,30.20405755395679,4.237236404934967,70.80086436777522,140.286992811\r\n1,768000,2851.494183,3.7128830507812496,37.81350961538458,3.978575667929422,75.40386938427379,105.215720741\r\n1,1017600,3778.242362,3.712895402908805,53.559949367088585,4.253107599793076,70.53665889256969,79.408357365\r\n1,1248000,4633.634005,3.7128477604166665,68.34537499999998,4.425242161497476,67.79290015136297,64.748231486\r\n1,1324800,4919.000459,3.713013631491546,79.21219999999997,4.831339606863371,62.09457922887927,60.992367424\r\n1,1516800,5631.899076,3.713013631329114,96.23147169811317,5.126588713932391,58.518445059713514,53.273514615\r\n1,1612800,5988.502076,3.71310892609127,116.48334693877548,5.8359309796450525,51.40567992431026,50.100989824\r\n1,1708800,6344.640893,3.712921870903558,142.93676595744677,6.759136961082765,44.38436470918059,47.287602429\r\n1,1804800,6701.215154,3.7129959851507097,117.07649999999997,5.241832954785746,57.2318886518699,44.772716598\r\n6,300000,2545.760037,8.48586679,61.55516239316236,7.254800684696448,41.3519286109171,117.858525632\r\n6,787200,6674.230795,8.47844359120935,148.8220909090909,6.691457077062961,44.83328467103866,44.962794409\r\n6,979200,8316.238842,8.492890974264705,206.78239999999997,7.4626825008931,40.20002190420098,36.089543892\r\n6,1036800,8789.920891,8.477932958140432,210.20963636363635,7.177720580716511,41.79599869155852,34.145535404\r\n6,1248000,10599.9576,8.493555769230769,287.08514285714284,8.12946748518792,36.90278613532891,28.317269937\r\n6,1401600,11894.84953,8.486622096175799,298.37143999999995,7.529375592966195,39.8439414126524,25.234907178\r\n6,1555200,13182.177696,8.47619450617284,431.0056363636363,9.814822769305257,30.56601296339409,22.771912804\r\n6,1766400,14977.533699,8.479129132133151,576.4428947368422,11.55493634710982,25.962929694116188,20.045240305\r\n6,1900800,16109.112388,8.474911820286195,689.0183333333333,12.841576275708523,23.36161804119703,18.637495774\r\n6,2073600,17577.781684,8.476939469521605,881.6265,15.060417006677488,19.919767152993572,17.08253666\r\n6,2131200,18051.627655,8.470170633915165,945.15075,15.720746125380163,19.0830637176736,16.633056817\r\n6,2208000,18720.74883,8.478600013586957,996.2498666666667,15.980697884633319,18.77264698736801,16.040853223\r\n"
  },
  {
    "path": "results/sm7225/m23xq/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1584.4560689926147, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1026.558, 938.925, 1072.461, 905.541, 931.694, 998.542, 981.83, 1057.034, 944.228, 1090.458, 864.846, 1031.966, 894.092, 1082.102, 956.762, 1040.322, 998.542, 973.474, 1077.924, 889.914, 889.914, 981.83, 1044.5, 998.542, 864.846, 902.448, 1027.788, 1036.144, 1006.898], \"power_mean\": 983.1077586206897, \"energy_millijoules\": 4915.538793103448, \"energy_joules\": 4.915538793103448}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 269.358454428, \"elapsed_ns\": 269358454428, \"power_samples\": [-108.41500000000008, -58.26700000000005, -33.192999999999984, -74.98300000000006, -108.41500000000008, -70.80399999999997, -37.37200000000007, -66.625, -87.51999999999998, -95.87800000000004, -62.446000000000026, -24.835000000000036, -70.80399999999997, -83.34100000000001, -24.835000000000036, -70.80399999999997, -95.87800000000004, -66.625, -16.476999999999975, -108.41500000000008, -83.34100000000001, -58.26700000000005, -33.192999999999984, -20.656000000000063, -104.23599999999999, -66.625, -24.835000000000036, 12.775999999999954, -49.90899999999999, -21.124000000000024, 45.70799999999997, 91.65499999999986, -21.124000000000024, 54.06200000000001, 100.0089999999999, 112.54000000000008, 20.645999999999958, 108.36299999999994, 37.35399999999993, -4.416000000000054, -87.95600000000002, -25.301000000000045, -67.07100000000003, -117.19500000000005, -71.24800000000005, -25.301000000000045, -71.24800000000005, -100.48700000000008, -62.894000000000005, -50.363000000000056, -92.13300000000004, 3.937999999999988, 108.36299999999994, 33.17700000000002, 83.30100000000004, -46.186000000000035, -79.60199999999998, 28.999999999999886, 100.0089999999999, 70.00200000000007, 103.39399999999989, -0.9560000000000173, -101.13200000000006, -51.04399999999998, -71.91399999999999, 32.436000000000035, 107.56799999999987, 82.524, 124.26400000000001, 28.262000000000057, -51.04399999999998, -67.74000000000001, -84.43600000000004, 3.217999999999961, 95.04599999999994, 95.04599999999994, 19.913999999999987, 49.13199999999995, -59.39200000000005, -96.95800000000008, 11.565999999999917, -55.218000000000075, 36.610000000000014, 115.91600000000005, 36.610000000000014, -46.870000000000005, -30.173999999999978, -80.26200000000006, 15.740000000000009, 111.476, 111.476, 32.188999999999965, -59.617000000000075, -72.13600000000008, 28.015999999999963, -9.541000000000054, 69.74599999999998, 94.78399999999999, 2.977999999999952, 32.188999999999965, -22.06000000000006, -84.65500000000009, -63.79000000000008, -93.00099999999998, -63.79000000000008, 2.977999999999952, 82.26499999999999, 86.43799999999999, 111.476, 32.188999999999965, -76.30900000000008, -47.09800000000007, -63.79000000000008, 53.053999999999974, 86.43799999999999, -59.617000000000075, -59.617000000000075, -84.65500000000009, 23.84299999999996, 127.89800000000002, 19.42599999999993, 31.941999999999894, -84.87400000000002, -18.12200000000007, 115.38199999999995, 31.941999999999894, 52.80200000000002, -80.702, -51.49800000000005, 77.83399999999995, 44.45799999999997, 82.00599999999997, -43.153999999999996, -64.01400000000001, 36.11399999999992, -26.466000000000008, 44.45799999999997, 98.69400000000007, 77.83399999999995, 90.35000000000002, 123.726, 69.4899999999999, 31.941999999999894, -1.4340000000000828, 115.38199999999995, 86.178, 27.769999999999868, -22.293999999999983, 169.61800000000005, 48.629999999999995, 19.42599999999993, -26.466000000000008, 94.52200000000005, 44.45799999999997, -30.638000000000034, -101.56200000000001, -80.702, -68.18600000000004, -93.21800000000007, -51.49800000000005, -1.4340000000000828, -101.56200000000001, -64.01400000000001, -9.77800000000002, 44.45799999999997, 98.69400000000007, 36.11399999999992, 86.178, 115.38199999999995, 61.14600000000007, 111.20999999999992, 119.55399999999997, 82.00599999999997, 40.285999999999945, 107.0379999999999, 115.38199999999995, 52.80200000000002, 15.254000000000019, -27.165000000000077, 114.58100000000002, 77.06000000000006, 22.862999999999943, -18.826999999999998, 114.58100000000002, 77.06000000000006, 14.524999999999977, -68.85500000000002, 14.524999999999977, -56.34800000000007, -89.70000000000005, 6.187000000000012, 81.22899999999993, 31.200999999999908, 122.91899999999998, 43.70799999999997, -22.99599999999998, 31.200999999999908, -77.19299999999998, -56.34800000000007, 39.538999999999874, 127.08800000000008, 110.41199999999992, 52.045999999999935, -22.99599999999998, -102.207, -43.84100000000001, -89.70000000000005, 2.0179999999999154, 110.94400000000007, 31.69500000000005, 44.20799999999997, -60.06700000000001, -55.89600000000007, 31.69500000000005, 15.010999999999967, 106.77300000000002, 60.89199999999994, -47.553999999999974, -93.43500000000006, -80.92200000000003, -51.72500000000002, 44.20799999999997, 106.77300000000002, 106.77300000000002, 40.03699999999992, -51.72500000000002, -89.26400000000001, 2.4979999999999336, -47.553999999999974, 48.37900000000002, 119.28599999999994, 31.69500000000005, 73.40499999999986, -22.52800000000002, -72.58000000000004, -68.40899999999999, -110.11900000000003, -30.870000000000005, 56.46799999999996, 102.33800000000008, 56.46799999999996, 119.01799999999992, 23.107999999999947, -39.44200000000001, -110.332, -56.12200000000007, -93.65200000000004, -14.422000000000025, 68.97799999999995, 123.18799999999999, 102.33800000000008, 39.7879999999999, -47.78200000000004, -85.31200000000001, -97.822, -31.101999999999975, 39.7879999999999, 119.01799999999992, 68.97799999999995, 85.65800000000002, 89.82799999999986, 31.44799999999998, -26.932000000000016, 14.767999999999915, -56.12200000000007, -85.31200000000001, -22.762000000000057], \"power_mean\": 4.571715355805215, \"energy_millijoules\": 1231.4301823244468, \"energy_joules\": 1.231430182324447, \"coremark_score\": 1113.829681, \"coremarks_per_mhz\": 3.712765603333333, \"ulpmark_cm_score\": 243.61917086823402}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [902.448, 860.668, 877.38, 931.694], \"power_mean\": 893.0475, \"energy_millijoules\": 4465.2375, \"energy_joules\": 4.4652375}}, \"576000\": {\"active\": {\"elapsed_sec\": 140.286992811, \"elapsed_ns\": 140286992811, \"power_samples\": [80.96999999999991, 18.449999999999932, -52.40600000000006, 10.113999999999919, -48.238000000000056, -77.41399999999999, -2.3899999999999864, 55.961999999999875, -2.3899999999999864, 85.13800000000003, 143.4899999999999, 51.79399999999998, 110.14600000000007, 18.449999999999932, -56.57400000000007, -39.902000000000044, 43.45799999999997, -10.725999999999999, 60.129999999999995, 135.15399999999988, 30.954000000000065, 114.31399999999996, 5.946000000000026, -69.07799999999997, -56.57400000000007, 26.785999999999945, -35.73400000000004, 35.12199999999996, 101.81000000000006, 97.64199999999994, 139.322, 64.29799999999989, -31.56600000000003, -85.75, -14.894000000000005, -60.742000000000075, 39.29000000000008, 118.48199999999986, 85.13800000000003, 135.15399999999988, 39.29000000000008, -35.73400000000004, -39.902000000000044, 39.29000000000008, 35.12199999999996, 135.15399999999988, 51.79399999999998, -35.73400000000004, -56.57400000000007, -64.91000000000008, -39.902000000000044, 64.29799999999989, 134.61, 126.2779999999999, 88.78399999999999, 1.2980000000000018, -73.69000000000005, 1.2980000000000018, -15.365999999999985, 84.61800000000005, 105.44799999999998, -15.365999999999985, -2.868000000000052, -69.524, 42.95799999999997, 117.94600000000003, 80.45199999999988, 113.77999999999986, 38.79200000000003, -69.524, -40.36200000000008, 59.62199999999996, 109.61399999999992, 97.11599999999987, 113.77999999999986, 17.96199999999999, 63.7879999999999, -2.868000000000052, -77.856, -48.694000000000074, 22.12799999999993, 1.2980000000000018, 59.62199999999996, 142.9419999999999, 51.29000000000008, 109.61399999999992, 22.12799999999993, -52.860000000000014, -57.02600000000007, 47.12399999999991, -23.69799999999998, 59.62199999999996, 138.77599999999995, 34.62599999999986, 80.45199999999988, -15.365999999999985, -86.18799999999999, -15.365999999999985, 63.7879999999999, 13.795999999999935, 101.28200000000004, 80.45199999999988, -11.200000000000045, 5.463999999999942, -82.02200000000005, 9.629999999999995, 101.28200000000004, 109.61399999999992, 138.77599999999995, 30.459999999999923, -48.694000000000074, -32.26200000000006, 55.20299999999986, 17.71799999999996, 130.1729999999999, 80.19299999999987, -44.75700000000006, -36.42700000000002, -78.077, -3.1070000000000846, 80.19299999999987, 130.1729999999999, 142.668, 55.20299999999986, -44.75700000000006, -65.582, -82.24200000000008, -32.26200000000006, 76.0279999999999, 130.1729999999999, 34.37800000000004, 80.19299999999987, -23.932000000000016, -57.252000000000066, 26.047999999999888, 130.1729999999999, 101.01799999999992, 117.678, 42.70799999999997], \"power_mean\": 30.20405755395679, \"energy_millijoules\": 4237.236404934966, \"energy_joules\": 4.237236404934967, \"coremark_score\": 2138.610473, \"coremarks_per_mhz\": 3.7128654045138894, \"ulpmark_cm_score\": 70.80086436777522}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [979.48, 1029.496, 1087.848, 1021.16], \"power_mean\": 1029.496, \"energy_millijoules\": 5147.4800000000005, \"energy_joules\": 5.147480000000001}}, \"768000\": {\"active\": {\"elapsed_sec\": 105.215720741, \"elapsed_ns\": 105215720741, \"power_samples\": [26.293999999999983, -73.69000000000005, 1.2980000000000018, 92.94999999999993, 76.28599999999994, 155.43999999999994, 76.28599999999994, -23.69799999999998, -36.196000000000026, -61.19200000000001, 51.29000000000008, 138.77599999999995, 76.28599999999994, -27.864000000000033, -15.365999999999985, -52.860000000000014, 38.79200000000003, 147.10800000000006, 97.11599999999987, 151.274, 63.7879999999999, -52.860000000000014, -15.365999999999985, -48.922000000000025, 63.533000000000015, 150.99799999999993, 71.86299999999994, -28.09699999999998, 21.882999999999925, -40.591999999999985, -44.75700000000006, 26.047999999999888, -3.1070000000000846, 88.52300000000002, 159.32799999999986, 55.20299999999986, -48.922000000000025, 1.0579999999999927, -69.74700000000007, 1.0579999999999927, 63.533000000000015, 51.0379999999999, 130.1729999999999, 109.34800000000007, 30.21300000000008, -73.91200000000003, -48.922000000000025, -19.767000000000053, 105.18299999999988, 134.33800000000008, 42.70799999999997, 76.0279999999999, -11.437000000000012, -61.64200000000005, 50.785999999999945, 21.63799999999992, 113.24599999999998, 117.40999999999997, 38.29399999999998, -53.31400000000008, -15.83800000000008, -40.822, 67.4419999999999, 154.88600000000008, 125.73799999999994, 117.40999999999997, 42.45799999999997, -32.49400000000003, -53.31400000000008, -40.822, -36.658000000000015, 25.80200000000002, 63.277999999999906, 159.05000000000007, 88.26200000000006, 129.90199999999993, 113.24599999999998, 54.94999999999993, 129.90199999999993, 29.966000000000008, -32.49400000000003, -49.14999999999998, 4.981999999999971, -74.57799999999997, -32.958000000000084, 50.28200000000004, 112.71199999999988, 50.28200000000004, 121.03599999999994, 112.71199999999988, 41.95799999999997, -28.79600000000005, 29.471999999999866, -41.28200000000004, -24.634000000000015, 71.09199999999998, 29.471999999999866, 112.71199999999988, 154.332, 100.226, 21.148000000000025, 104.38800000000003, 41.95799999999997, -28.79600000000005], \"power_mean\": 37.81350961538458, \"energy_millijoules\": 3978.5756679294223, \"energy_joules\": 3.978575667929422, \"coremark_score\": 2851.494183, \"coremarks_per_mhz\": 3.7128830507812496, \"ulpmark_cm_score\": 75.40386938427379}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [845.698, 941.516, 1004.006, 1062.33], \"power_mean\": 963.3874999999999, \"energy_millijoules\": 4816.9375, \"energy_joules\": 4.8169375}}, \"1017600\": {\"active\": {\"elapsed_sec\": 79.408357365, \"elapsed_ns\": 79408357365, \"power_samples\": [25.555999999999926, -53.541000000000054, -16.07400000000007, 58.860000000000014, 146.28300000000002, 88.00099999999986, 162.93500000000006, 104.6529999999999, 33.88199999999995, 71.34900000000005, -7.748000000000047, -16.07400000000007, 63.023000000000025, 162.93500000000006, 133.79399999999998, 129.63099999999997, 17.230000000000018, -53.541000000000054, 33.88199999999995, -20.23700000000008, 79.67500000000007, 162.93500000000006, 88.00099999999986, 129.63099999999997, 50.53399999999999, 0.5779999999999745, -36.88900000000001, -53.541000000000054, 92.16399999999987, 88.00099999999986, 71.09199999999998, 79.41600000000005, 125.19799999999998, 162.65600000000006, 187.62800000000004, 137.68400000000008, 91.90199999999993, 133.52200000000005, 154.332, 158.49400000000003, 146.00799999999992, 100.226, 104.38800000000003, 125.19799999999998, 137.68400000000008, 154.332, 0.33799999999996544, 41.95799999999997, 66.92999999999995, 116.87399999999991, -37.120000000000005, -24.634000000000015, 0.33799999999996544, 29.471999999999866, 50.28200000000004, -57.930000000000064, -62.091999999999985, -37.120000000000005, -3.824000000000069, -12.148000000000025, -50.74599999999998, -50.74599999999998, -34.11800000000005, 3.294999999999959, -9.176000000000045, -29.961000000000013, -38.27499999999998, -9.176000000000045, -50.74599999999998, -21.647000000000048, 36.551000000000045, 107.21999999999991, 182.04599999999994, 115.53399999999999, 169.57499999999993, 78.12099999999998, 7.451999999999998, 65.64999999999998, -46.589000000000055], \"power_mean\": 53.559949367088585, \"energy_millijoules\": 4253.107599793076, \"energy_joules\": 4.253107599793076, \"coremark_score\": 3778.242362, \"coremarks_per_mhz\": 3.712895402908805, \"ulpmark_cm_score\": 70.53665889256969}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1065.472, 1032.176, 1065.472, 973.908], \"power_mean\": 1034.257, \"energy_millijoules\": 5171.285, \"energy_joules\": 5.171285}}, \"1248000\": {\"active\": {\"elapsed_sec\": 64.748231486, \"elapsed_ns\": 64748231486, \"power_samples\": [7.451999999999998, 99.16999999999996, 28.484000000000037, 107.48599999999999, 169.85599999999988, 115.80200000000002, 186.48799999999994, 99.16999999999996, 24.326000000000022, -42.202, 20.168000000000006, -8.937999999999988, 70.06399999999996, 136.59199999999998, 178.1719999999999, 165.69799999999998, 111.64399999999989, 20.168000000000006, -29.728000000000065, 49.274, -13.096000000000004, 65.90600000000006, 132.43400000000008, 194.80399999999997, 149.06599999999992, 174.014, 144.90800000000002, 40.95799999999997, -8.937999999999988, 16.00999999999999, -50.51800000000003, 24.326000000000022, 124.11800000000005, 190.64600000000007, 90.85399999999993, 103.32799999999986, 128.27599999999995, 144.90800000000002, -0.6220000000000709, 28.484000000000037, 32.64199999999994, 49.274, 82.5379999999999, -13.096000000000004, -17.25400000000002, -33.88600000000008, -46.360000000000014, 111.64399999999989, 107.48599999999999, 90.85399999999993, 65.90600000000006, 32.64199999999994, 82.5379999999999, 7.69399999999996, -42.202, 24.326000000000022, -33.88600000000008, -25.57000000000005, 28.484000000000037, 99.16999999999996, 165.69799999999998, 119.42199999999991, 181.76200000000006, 115.26599999999996], \"power_mean\": 68.34537499999998, \"energy_millijoules\": 4425.2421614974755, \"energy_joules\": 4.425242161497476, \"coremark_score\": 4633.634005, \"coremarks_per_mhz\": 3.7128477604166665, \"ulpmark_cm_score\": 67.79290015136297}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1068.349, 1030.936, 1097.448, 968.581], \"power_mean\": 1041.3285, \"energy_millijoules\": 5206.6425, \"energy_joules\": 5.2066425}}, \"1324800\": {\"active\": {\"elapsed_sec\": 60.992367424, \"elapsed_ns\": 60992367424, \"power_samples\": [190.07399999999996, 119.42199999999991, 11.365999999999985, -1.1019999999999754, 106.95400000000006, 69.55000000000007, 144.35800000000006, 181.76200000000006, 106.95400000000006, 27.989999999999895, 111.11000000000001, 40.45799999999997, -17.726, -17.726, 40.45799999999997, -34.35000000000002, 15.521999999999935, 77.86199999999997, 131.89, 73.70600000000002, 115.26599999999996, 173.44999999999993, 177.60599999999988, 152.66999999999996, 165.13800000000003, 98.64199999999994, 11.365999999999985, 7.209999999999923, -5.258000000000038, 77.86199999999997, 194.2299999999999, 111.11000000000001, 15.521999999999935, 48.76999999999987, -34.35000000000002, 40.45799999999997, 144.35800000000006, 119.42199999999991, 190.07399999999996, 127.73400000000004, 48.76999999999987, -26.03800000000001, 23.833999999999946, -42.662000000000035, 19.677999999999997, 98.64199999999994, 173.44999999999993, 119.42199999999991, 197.81000000000006, 106.42199999999991, 23.341999999999985, 114.7299999999999, 39.95799999999997, -38.968000000000075, 27.49599999999998, 102.26799999999992, 39.95799999999997, 106.42199999999991, 197.81000000000006, 110.57599999999991], \"power_mean\": 79.21219999999997, \"energy_millijoules\": 4831.339606863371, \"energy_joules\": 4.831339606863371, \"coremark_score\": 4919.000459, \"coremarks_per_mhz\": 3.713013631491546, \"ulpmark_cm_score\": 62.09457922887927}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [906.008, 864.448, 964.192, 1063.936], \"power_mean\": 949.646, \"energy_millijoules\": 4748.23, \"energy_joules\": 4.7482299999999995}}, \"1516800\": {\"active\": {\"elapsed_sec\": 53.273514615, \"elapsed_ns\": 53273514615, \"power_samples\": [123.0379999999999, 39.95799999999997, -5.73599999999999, 69.03599999999994, 19.187999999999988, 98.11399999999992, 177.04000000000008, 197.81000000000006, 118.8839999999999, 185.63299999999992, 94.22300000000007, 11.122999999999934, 23.587999999999965, -17.96199999999999, 85.9129999999999, 156.5479999999999, 198.09800000000007, 152.39299999999992, 193.94299999999987, 135.77300000000002, 60.98300000000006, -17.96199999999999, 40.20799999999997, -22.117000000000075, 48.517999999999915, 106.68799999999999, 173.168, 114.99799999999993, 164.85800000000006, 223.0279999999999, 144.08299999999997, 56.82799999999986, 123.30799999999988, 52.67299999999989, -13.807000000000016, 31.898000000000025, -17.96199999999999, 23.587999999999965, 102.53300000000002, 180.90999999999997, 172.60399999999993, 205.82799999999986, 114.46199999999988, 39.70799999999997, -22.58699999999999, 60.47300000000007, -10.128000000000043, 68.77899999999988, 131.07399999999996, 197.52200000000005, 143.53300000000002, 193.36900000000003, 172.60399999999993], \"power_mean\": 96.23147169811317, \"energy_millijoules\": 5126.588713932391, \"energy_joules\": 5.126588713932391, \"coremark_score\": 5631.899076, \"coremarks_per_mhz\": 3.713013631329114, \"ulpmark_cm_score\": 58.518445059713514}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [913.88, 1005.268, 1071.732, 1013.576], \"power_mean\": 1001.114, \"energy_millijoules\": 5005.57, \"energy_joules\": 5.00557}}, \"1612800\": {\"active\": {\"elapsed_sec\": 50.100989824, \"elapsed_ns\": 50100989824, \"power_samples\": [139.38, 226.59299999999996, 147.68600000000004, 72.9319999999999, -1.8220000000000027, 39.70799999999997, 10.636999999999944, 105.88999999999999, 188.92999999999995, 188.92999999999995, 217.99400000000003, 159.86599999999987, 68.52200000000005, 2.089999999999918, 43.610000000000014, 14.545999999999935, 101.73799999999994, 168.16999999999996, 213.84199999999998, 188.92999999999995, 168.16999999999996, 80.97799999999995, 22.850000000000023, 14.545999999999935, 14.545999999999935, 39.45799999999997, 118.34599999999989, 222.14600000000007, 197.23400000000004, 164.01799999999992, 64.37, 10.394000000000005, 110.04200000000003, 72.67399999999986, 180.62599999999986, 197.23400000000004, 126.64999999999998, 69.03599999999994, 127.1919999999999, 60.72799999999995, 15.033999999999992, 102.26799999999992, 69.03599999999994, 164.57799999999986, 210.27200000000005, 222.73400000000004, 147.96199999999988, 193.65600000000006, 222.73400000000004], \"power_mean\": 116.48334693877548, \"energy_millijoules\": 5835.9309796450525, \"energy_joules\": 5.8359309796450525, \"coremark_score\": 5988.502076, \"coremarks_per_mhz\": 3.71310892609127, \"ulpmark_cm_score\": 51.40567992431026}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [884.589, 867.977, 930.272, 992.567], \"power_mean\": 918.85125, \"energy_millijoules\": 4594.25625, \"energy_joules\": 4.59425625}}, \"1708800\": {\"active\": {\"elapsed_sec\": 47.287602429, \"elapsed_ns\": 47287602429, \"power_samples\": [85.65199999999993, 164.57799999999986, 114.7299999999999, 73.18999999999994, 27.49599999999998, 6.725999999999999, 77.34399999999994, 39.95799999999997, 38.70799999999997, 30.409999999999968, 159.02899999999988, 129.986, 121.68799999999999, 100.94299999999987, 55.303999999999974, 159.02899999999988, 134.13499999999988, 105.09199999999998, 88.49599999999998, 233.7109999999999, 204.668, 167.32699999999988, 146.582, 109.24099999999987, 237.86, 212.966, 150.73099999999988, 134.13499999999988, 233.7109999999999, 229.562, 188.072, 159.02899999999988, 134.13499999999988, 208.8169999999999, 233.7109999999999, 179.774, 109.24099999999987, 229.562, 184.49300000000005, 130.52999999999986, 105.62399999999991, 84.86900000000003, 230.15399999999988, 221.85199999999998, 209.399, 196.94600000000003, 138.832], \"power_mean\": 142.93676595744677, \"energy_millijoules\": 6759.136961082765, \"energy_joules\": 6.759136961082765, \"coremark_score\": 6344.640893, \"coremarks_per_mhz\": 3.712921870903558, \"ulpmark_cm_score\": 44.38436470918059}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1038.5, 1009.422, 1055.116, 1059.27], \"power_mean\": 1040.577, \"energy_millijoules\": 5202.885, \"energy_joules\": 5.202885}}, \"1804800\": {\"active\": {\"elapsed_sec\": 44.772716598, \"elapsed_ns\": 44772716598, \"power_samples\": [97.322, 151.28499999999997, 72.41600000000005, 138.832, 201.09699999999987, 226.00300000000004, 159.58699999999988, 226.00300000000004, 138.832, 47.50999999999988, 51.660999999999945, 118.07699999999988, 56.06599999999992, 130.80200000000002, 197.23400000000004, 222.14600000000007, 193.082, 222.14600000000007, 184.7779999999999, 114.19400000000007, 64.37, 143.25799999999992, 76.82599999999991, 39.45799999999997, 22.850000000000023, 110.04200000000003, 85.13, 72.67399999999986, 39.45799999999997, 22.850000000000023, 76.82599999999991, 18.69799999999998, 39.45799999999997, 64.37, 126.64999999999998, 31.153999999999883, 85.13, 130.80200000000002, 180.62599999999986, 97.5859999999999, 151.562, 234.60199999999998, 191.64700000000005, 96.26599999999996], \"power_mean\": 117.07649999999997, \"energy_millijoules\": 5241.832954785746, \"energy_joules\": 5.241832954785746, \"coremark_score\": 6701.215154, \"coremarks_per_mhz\": 3.7129959851507097, \"ulpmark_cm_score\": 57.2318886518699}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1021.146, 946.428, 871.71, 933.975], \"power_mean\": 943.31475, \"energy_millijoules\": 4716.57375, \"energy_joules\": 4.716573749999999}}}}, \"6\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 117.858525632, \"elapsed_ns\": 117858525632, \"power_samples\": [154.32399999999996, 87.97199999999987, 154.32399999999996, 179.20600000000002, 87.97199999999987, 29.913999999999874, 121.14800000000002, 63.09000000000003, -23.99700000000007, -15.702999999999975, -19.850000000000023, -36.43799999999999, 38.20799999999997, 92.11900000000003, 25.76699999999994, 108.707, 170.91199999999992, 133.58900000000006, 76.04899999999986, 146.582, 84.34699999999987, 1.3669999999999618, -44.27200000000005, 51.15499999999986, 9.664999999999964, -40.12300000000005, -23.527000000000044, 17.962999999999965, -48.42100000000005, 9.664999999999964, 109.24099999999987, 138.284, 121.68799999999999, 17.962999999999965, -48.42100000000005, 47.00599999999997, -2.782000000000039, 109.24099999999987, 163.178, 22.111999999999966, -15.229000000000042, -31.825000000000045, 88.49599999999998, 167.32699999999988, 47.00599999999997, 76.04899999999986, -15.229000000000042, 1.3669999999999618, 108.43999999999994, 141.60800000000006, 158.1919999999999, 33.81200000000001, -36.67000000000007, 83.56399999999996, 50.39600000000007, 154.04599999999994, 112.5859999999999, -20.086000000000013, 29.666000000000054, 13.081999999999994, 133.31599999999992, 120.87800000000004, 8.935999999999922, 21.374000000000024, -7.648000000000025, 112.5859999999999, 178.9219999999999, 96.00200000000007, 112.5859999999999, 29.666000000000054, -49.10800000000006, 37.95799999999997, 25.519999999999868, 112.5859999999999, 162.33800000000008, 50.39600000000007, -44.96199999999999, -48.64999999999998, 55.05000000000007, 171.19400000000007, 108.97400000000005, 113.12199999999996, -7.170000000000073, 13.569999999999936, 138.00999999999988, 84.0859999999999, 71.64199999999994, -36.20600000000002, 79.93799999999999, 133.86199999999997, 142.15800000000002, 26.01400000000001, -36.20600000000002, 104.82599999999991, 138.00999999999988, 133.86199999999997, 34.31000000000006, -7.170000000000073, 113.12199999999996, 133.86199999999997, 108.97400000000005, 17.71799999999996, -7.170000000000073, 88.23400000000004, 71.64199999999994, 183.63800000000003, 55.05000000000007, -40.585000000000036, 67.23699999999997, 71.3839999999999, 187.4999999999999, 38.20799999999997, -15.702999999999975, 13.326000000000022, 154.32399999999996, 75.53100000000006, -44.732000000000085], \"power_mean\": 61.55516239316236, \"energy_millijoules\": 7254.800684696448, \"energy_joules\": 7.254800684696448, \"coremark_score\": 2545.760037, \"coremarks_per_mhz\": 8.48586679, \"ulpmark_cm_score\": 41.3519286109171}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [891.605, 908.193, 883.311, 937.222], \"power_mean\": 905.08275, \"energy_millijoules\": 4525.41375, \"energy_joules\": 4.525413749999999}}, \"787200\": {\"active\": {\"elapsed_sec\": 44.962794409, \"elapsed_ns\": 44962794409, \"power_samples\": [233.11700000000008, 191.64700000000005, 125.29499999999996, 154.32399999999996, 50.649, 108.707, 175.05900000000008, 241.41099999999994, 170.91199999999992, 262.1460000000001, 158.4709999999999, 87.70999999999992, 112.5859999999999, 54.54200000000003, 137.46199999999988, 236.966, 187.21400000000006, 212.09000000000003, 145.75400000000002, 62.833999999999946, 79.418, 58.68799999999999, 166.48400000000004, 265.98799999999994, 178.9219999999999, 91.85599999999988, 129.16999999999996, 46.249999999999886, 133.31599999999992, 207.94400000000007, 174.77599999999995, 257.696, 178.9219999999999, 83.56399999999996, 66.9799999999999, 46.249999999999886, 129.16999999999996, 199.65199999999993, 265.98799999999994, 253.55000000000007, 203.7979999999999, 116.46300000000008, 54.2879999999999, 50.142999999999915], \"power_mean\": 148.8220909090909, \"energy_millijoules\": 6691.457077062961, \"energy_joules\": 6.691457077062961, \"coremark_score\": 6674.230795, \"coremarks_per_mhz\": 8.47844359120935, \"ulpmark_cm_score\": 44.83328467103866}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [995.28, 887.458, 920.634, 1020.162], \"power_mean\": 955.8835, \"energy_millijoules\": 4779.4175000000005, \"energy_joules\": 4.7794175}}, \"979200\": {\"active\": {\"elapsed_sec\": 36.089543892, \"elapsed_ns\": 36089543892, \"power_samples\": [307.1329999999999, 236.668, 286.408, 191.07299999999998, 87.44799999999998, 186.928, 261.5379999999999, 215.94299999999987, 319.56799999999987, 244.95799999999997, 162.05799999999988, 191.07299999999998, 120.60800000000006, 149.62299999999993, 236.668, 294.698, 311.2779999999999, 220.08800000000008, 124.2109999999999, 140.78300000000002, 115.92500000000007, 198.78499999999997, 323.07499999999993, 223.64299999999992, 128.35399999999993, 169.784, 103.49599999999998, 190.4989999999999, 277.50200000000007, 219.4999999999999, 302.36, 240.21500000000003, 165.64099999999996, 190.4989999999999, 99.35299999999995], \"power_mean\": 206.78239999999997, \"energy_millijoules\": 7462.6825008931, \"energy_joules\": 7.4626825008931, \"coremark_score\": 8316.238842, \"coremarks_per_mhz\": 8.492890974264705, \"ulpmark_cm_score\": 40.20002190420098}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [998.945, 874.595, 911.9, 903.61], \"power_mean\": 922.2625, \"energy_millijoules\": 4611.3125, \"energy_joules\": 4.6113125}}, \"1036800\": {\"active\": {\"elapsed_sec\": 34.145535404, \"elapsed_ns\": 34145535404, \"power_samples\": [219.4999999999999, 194.64199999999994, 289.9309999999999, 269.216, 194.64199999999994, 107.63900000000001, 153.21199999999988, 124.2109999999999, 202.928, 294.07399999999996, 269.216, 302.36, 190.4989999999999, 111.78200000000004, 211.21400000000006, 194.64199999999994, 302.36, 236.072, 99.35299999999995, 103.49599999999998, 211.21400000000006, 327.21799999999996, 252.6439999999999, 149.06900000000007, 165.64099999999996, 149.06900000000007, 252.6439999999999, 314.7889999999999, 318.9319999999999, 256.7869999999999, 182.21300000000008, 115.92500000000007, 169.784], \"power_mean\": 210.20963636363635, \"energy_millijoules\": 7177.720580716511, \"energy_joules\": 7.177720580716511, \"coremark_score\": 8789.920891, \"coremarks_per_mhz\": 8.477932958140432, \"ulpmark_cm_score\": 41.79599869155852}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1006.749, 911.46, 986.034, 915.603], \"power_mean\": 954.9615, \"energy_millijoules\": 4774.8075, \"energy_joules\": 4.7748075}}, \"1248000\": {\"active\": {\"elapsed_sec\": 28.317269937, \"elapsed_ns\": 28317269937, \"power_samples\": [227.19400000000007, 301.73199999999986, 276.8860000000001, 347.283, 367.98799999999994, 260.322, 189.92500000000007, 227.19400000000007, 210.63, 289.3090000000001, 380.41099999999994, 351.42399999999986, 372.129, 276.8860000000001, 177.50200000000007, 252.04000000000008, 202.34800000000007, 293.44999999999993, 376.26999999999987, 363.84699999999987, 396.975, 342.494, 263.85299999999995, 201.76799999999992, 305.24300000000005, 276.26999999999987, 263.85299999999995, 243.15800000000002], \"power_mean\": 287.08514285714284, \"energy_millijoules\": 8129.467485187921, \"energy_joules\": 8.12946748518792, \"coremark_score\": 10599.9576, \"coremarks_per_mhz\": 8.493555769230769, \"ulpmark_cm_score\": 36.90278613532891}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1022.827, 1084.942, 960.712, 993.84], \"power_mean\": 1015.58025, \"energy_millijoules\": 5077.90125, \"energy_joules\": 5.07790125}}, \"1401600\": {\"active\": {\"elapsed_sec\": 25.234907178, \"elapsed_ns\": 25234907178, \"power_samples\": [296.96500000000003, 321.79899999999986, 321.79899999999986, 309.38199999999995, 309.38199999999995, 288.687, 255.57499999999993, 354.91099999999994, 338.3549999999999, 284.5479999999999, 251.43600000000004, 276.26999999999987, 301.1039999999999, 239.0189999999999, 320.842, 366.3380000000001, 267.07399999999996, 316.706, 333.2499999999999, 349.794, 267.07399999999996, 250.52999999999986, 262.938, 279.48199999999986, 296.02599999999995], \"power_mean\": 298.37143999999995, \"energy_millijoules\": 7529.375592966195, \"energy_joules\": 7.529375592966195, \"coremark_score\": 11894.84953, \"coremarks_per_mhz\": 8.486622096175799, \"ulpmark_cm_score\": 39.8439414126524}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [980.943, 1005.777, 1026.472, 1034.75], \"power_mean\": 1011.9855, \"energy_millijoules\": 5059.9275, \"energy_joules\": 5.0599275}}, \"1555200\": {\"active\": {\"elapsed_sec\": 22.771912804, \"elapsed_ns\": 22771912804, \"power_samples\": [387.0179999999999, 329.1139999999999, 407.698, 362.2019999999999, 345.658, 403.562, 449.0579999999999, 362.2019999999999, 432.514, 486.28200000000004, 523.138, 436.303, 481.7879999999999, 531.408, 539.678, 531.408, 519.003, 436.303, 374.2779999999999, 353.60299999999995, 353.60299999999995, 436.303], \"power_mean\": 431.0056363636363, \"energy_millijoules\": 9814.822769305258, \"energy_joules\": 9.814822769305257, \"coremark_score\": 13182.177696, \"coremarks_per_mhz\": 8.47619450617284, \"ulpmark_cm_score\": 30.56601296339409}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [938.872, 901.648, 905.784, 996.776], \"power_mean\": 935.77, \"energy_millijoules\": 4678.85, \"energy_joules\": 4.678850000000001}}, \"1766400\": {\"active\": {\"elapsed_sec\": 20.045240305, \"elapsed_ns\": 20045240305, \"power_samples\": [552.083, 523.138, 630.648, 614.1080000000001, 498.32799999999986, 502.4630000000001, 519.003, 622.378, 691.446, 555.09, 538.562, 509.63800000000003, 633.5980000000001, 604.6739999999999, 645.994, 534.43, 493.11, 612.938, 670.786], \"power_mean\": 576.4428947368422, \"energy_millijoules\": 11554.93634710982, \"energy_joules\": 11.55493634710982, \"coremark_score\": 14977.533699, \"coremarks_per_mhz\": 8.479129132133151, \"ulpmark_cm_score\": 25.962929694116188}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [901.43, 946.915, 1070.965, 988.265], \"power_mean\": 976.89375, \"energy_millijoules\": 4884.46875, \"energy_joules\": 4.88446875}}, \"1900800\": {\"active\": {\"elapsed_sec\": 18.637495774, \"elapsed_ns\": 18637495774, \"power_samples\": [654.2579999999999, 782.35, 691.446, 691.446, 567.486, 683.1819999999999, 798.878, 769.9540000000001, 712.1059999999999, 596.41, 612.158, 723.668, 723.668, 781.4879999999999, 645.198, 603.898, 628.678, 736.0579999999999], \"power_mean\": 689.0183333333333, \"energy_millijoules\": 12841.576275708523, \"energy_joules\": 12.841576275708523, \"coremark_score\": 16109.112388, \"coremarks_per_mhz\": 8.474911820286195, \"ulpmark_cm_score\": 23.36161804119703}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [962.756, 1070.188, 999.944, 995.812], \"power_mean\": 1007.175, \"energy_millijoules\": 5035.875, \"energy_joules\": 5.035875}}, \"2073600\": {\"active\": {\"elapsed_sec\": 17.08253666, \"elapsed_ns\": 17082536660, \"power_samples\": [888.868, 950.8179999999999, 950.8179999999999, 880.6080000000001, 810.398, 756.708, 802.138, 756.708, 847.5679999999999, 913.648, 839.3079999999999, 905.388, 967.3380000000001, 923.2420000000001, 985.102, 927.3659999999999], \"power_mean\": 881.6265, \"energy_millijoules\": 15060.417006677488, \"energy_joules\": 15.060417006677488, \"coremark_score\": 17577.781684, \"coremarks_per_mhz\": 8.476939469521605, \"ulpmark_cm_score\": 19.919767152993572}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [970.55, 1061.41, 978.81, 1032.5], \"power_mean\": 1010.8175, \"energy_millijoules\": 5054.0875, \"energy_joules\": 5.0540875}}, \"2131200\": {\"active\": {\"elapsed_sec\": 16.633056817, \"elapsed_ns\": 16633056817, \"power_samples\": [1042.8380000000002, 980.978, 1030.466, 1018.0939999999999, 968.6059999999999, 1051.0860000000002, 972.7299999999999, 914.994, 861.382, 836.638, 836.638, 910.87, 1018.0939999999999, 931.4899999999999, 906.746, 840.7620000000001], \"power_mean\": 945.15075, \"energy_millijoules\": 15720.746125380163, \"energy_joules\": 15.720746125380163, \"coremark_score\": 18051.627655, \"coremarks_per_mhz\": 8.470170633915165, \"ulpmark_cm_score\": 19.0830637176736}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [894.908, 882.536, 866.04, 948.52], \"power_mean\": 898.001, \"energy_millijoules\": 4490.005, \"energy_joules\": 4.490005}}, \"2208000\": {\"active\": {\"elapsed_sec\": 16.040853223, \"elapsed_ns\": 16040853223, \"power_samples\": [929.766, 954.5939999999999, 1041.4920000000002, 1107.7000000000003, 979.4219999999999, 942.18, 950.456, 1074.596, 1049.768, 933.9039999999999, 942.18, 950.456, 1074.596, 1070.458, 942.18], \"power_mean\": 996.2498666666667, \"energy_millijoules\": 15980.697884633319, \"energy_joules\": 15.980697884633319, \"coremark_score\": 18720.74883, \"coremarks_per_mhz\": 8.478600013586957, \"ulpmark_cm_score\": 18.77264698736801}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [873.118, 980.706, 988.982, 1084.156], \"power_mean\": 981.7405, \"energy_millijoules\": 4908.7025, \"energy_joules\": 4.9087025}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm7225/m23xq/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 999 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 768 1017 1248 1324 1516 1612 1708 1804\n\n 300:  1114     3.7 C/MHz      5 mW    1.2 J   243.6 I/mJ   269.4 s\n 576:  2139     3.7 C/MHz     30 mW    4.2 J   70.8 I/mJ   140.3 s\n 768:  2851     3.7 C/MHz     38 mW    4.0 J   75.4 I/mJ   105.2 s\n1017:  3778     3.7 C/MHz     54 mW    4.3 J   70.5 I/mJ    79.4 s\n1248:  4634     3.7 C/MHz     68 mW    4.4 J   67.8 I/mJ    64.7 s\n1324:  4919     3.7 C/MHz     79 mW    4.8 J   62.1 I/mJ    61.0 s\n1516:  5632     3.7 C/MHz     96 mW    5.1 J   58.5 I/mJ    53.3 s\n1612:  5989     3.7 C/MHz    116 mW    5.8 J   51.4 I/mJ    50.1 s\n1708:  6345     3.7 C/MHz    143 mW    6.8 J   44.4 I/mJ    47.3 s\n1804:  6701     3.7 C/MHz    117 mW    5.2 J   57.2 I/mJ    44.8 s\n\n\n===== CPU 6 =====\nFrequencies: 300 787 979 1036 1248 1401 1555 1766 1900 2073 2131 2208\n\n 300:  2546     8.5 C/MHz     62 mW    7.3 J   41.4 I/mJ   117.9 s\n 787:  6674     8.5 C/MHz    149 mW    6.7 J   44.8 I/mJ    45.0 s\n 979:  8316     8.5 C/MHz    207 mW    7.5 J   40.2 I/mJ    36.1 s\n1036:  8790     8.5 C/MHz    210 mW    7.2 J   41.8 I/mJ    34.1 s\n1248: 10600     8.5 C/MHz    287 mW    8.1 J   36.9 I/mJ    28.3 s\n1401: 11895     8.5 C/MHz    298 mW    7.5 J   39.8 I/mJ    25.2 s\n1555: 13182     8.5 C/MHz    431 mW    9.8 J   30.6 I/mJ    22.8 s\n1766: 14978     8.5 C/MHz    576 mW   11.6 J   26.0 I/mJ    20.0 s\n1900: 16109     8.5 C/MHz    689 mW   12.8 J   23.4 I/mJ    18.6 s\n2073: 17578     8.5 C/MHz    882 mW   15.1 J   19.9 I/mJ    17.1 s\n2131: 18052     8.5 C/MHz    945 mW   15.7 J   19.1 I/mJ    16.6 s\n2208: 18721     8.5 C/MHz    996 mW   16.0 J   18.8 I/mJ    16.0 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm7225/m23xq/uptime.txt",
    "content": " 19:29:39 up 26 min,  load average: 0.70, 0.78, 0.71\n"
  },
  {
    "path": "results/sm7225/m23xq/versions.txt",
    "content": "Kernel: Linux version 4.19.152-perf-100000-abITEJO443 (tejo@tejo-Thin-GF63-12VF) (Android (10087095, +pgo, +bolt, +lto, -mlgo, based on r487747c) clang version 17.0.2 (https://android.googlesource.com/toolchain/llvm-project d9f89f4d16663d5012e5c09495f3b30ece3d2362), LLD 17.0.2) #1 SMP PREEMPT Sun Dec 1 14:15:47 IST 2024\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm7225/post_bench_interrupts.txt",
    "content": "           CPU0       \n  3:       3941     GICv3  19 Level     arch_timer\n  5:     166339     GICv3  38 Level     arch_mem_timer\n  7:          0     GICv3 195 Level     ngd_slim_irq\n  9:        367     GICv3 297 Level     1d84000.ufshc\n 10:          6     GICv3 260 Level     ipcc_1\n 13:        444     GICv3  37 Level     apps_rsc\n 14:          0     GICv3 161 Level     disp_rsc\n 15:          0     GICv3  21 Level     arm-pmu\n 16:          0     GICv3 304 Level     sps\n 17:          0     GICv3  32 Edge      apps_wdog_bark\n 19:          0     GICv3  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 20:          0     GICv3  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 21:          0       PDC   6 Edge      adsp\n 22:          0     GICv3 610 Edge      cdsp\n 23:          0     GICv3 168 Edge      modem\n 24:          0       PDC  26 Level     tsens-upper-lower\n 25:          0       PDC  28 Level     tsens-critical\n 26:          0       PDC  20 Edge      tsens-0C\n 27:          0       PDC  27 Level     tsens-upper-lower\n 28:          0       PDC  29 Level     tsens-critical\n 29:          0       PDC  21 Edge      tsens-0C\n 31:          0       PDC  11 Level     eud_irq\n 38:        129     GICv3 236 Level     mmc0\n 39:          2     GICv3 254 Level     8804000.sdhci\n 54:          0       PDC  14 Edge      dp_hs_phy_irq\n 55:          0     GICv3 162 Level     pwr_event_irq\n 56:          0       PDC  17 Level     ss_phy_irq\n 57:          0       PDC  15 Edge      dm_hs_phy_irq\n 58:          0     GICv3 332 Level     kgsl_3d0_irq\n 59:          0     GICv3 336 Level     kgsl_hfi_irq\n 60:          0     GICv3 337 Level     kgsl_gmu_irq\n 61:          0     GICv3 615 Level     error_irq\n 62:          0     GICv3 617 Edge      wdg_bite_irq\n 63:          0     GICv3 619 Edge      ipc_irq\n 64:          0     GICv3 616 Level     general_irq\n 65:          0     GICv3 509 Edge      csiphy\n 66:          0     GICv3 510 Edge      csiphy\n 67:          0     GICv3 511 Edge      csiphy\n 68:          0     GICv3 493 Edge      csiphy\n 69:          0     GICv3 500 Edge      cci\n 70:          0     GICv3 494 Edge      cci\n 71:          1     GICv3 501 Edge      cpas-cdm\n 72:          0     GICv3 496 Edge      csid0\n 73:          2     GICv3 497 Edge      ife0\n 74:          0     GICv3 498 Edge      csid1\n 75:          2     GICv3 499 Edge      ife1\n 76:          0     GICv3 749 Edge      csid\n 77:          2     GICv3 750 Edge      ife\n 78:          0     GICv3 505 Edge      csid-lite\n 79:          2     GICv3 504 Edge      ife-lite\n 80:          0     GICv3 495 Edge      a5\n 81:          0     GICv3 506 Edge      jpeg\n 82:          0     GICv3 507 Edge      jpegdma\n 83:          1     GICv3 508 Edge      lrme\n 84:          0     GICv3 491 Edge      cpas_camnoc\n 85:          0     GICv3 261 Level     arm-smmu global fault\n 86:          0     GICv3 263 Level     arm-smmu global fault\n 87:          0     GICv3 396 Level     arm-smmu-context-fault\n 88:          0     GICv3 397 Level     arm-smmu-context-fault\n 89:          0     GICv3 398 Level     arm-smmu-context-fault\n 90:          0     GICv3 399 Level     arm-smmu-context-fault\n 95:          0     GICv3  97 Level     arm-smmu global fault\n 98:          0     GICv3 129 Level     arm-smmu-context-fault\n 99:          0     GICv3 130 Level     arm-smmu-context-fault\n100:          0     GICv3 131 Level     arm-smmu-context-fault\n101:          0     GICv3 132 Level     arm-smmu-context-fault\n102:          0     GICv3 133 Level     arm-smmu-context-fault\n103:          0     GICv3 134 Level     arm-smmu-context-fault\n104:          0     GICv3 135 Level     arm-smmu-context-fault\n105:          0     GICv3 136 Level     arm-smmu-context-fault\n106:          0     GICv3 137 Level     arm-smmu-context-fault\n107:          0     GICv3 138 Level     arm-smmu-context-fault\n108:          0     GICv3 139 Level     arm-smmu-context-fault\n109:          0     GICv3 140 Level     arm-smmu-context-fault\n110:          0     GICv3 141 Level     arm-smmu-context-fault\n111:          0     GICv3 142 Level     arm-smmu-context-fault\n112:          0     GICv3 143 Level     arm-smmu-context-fault\n113:          0     GICv3 144 Level     arm-smmu-context-fault\n114:          0     GICv3 145 Level     arm-smmu-context-fault\n115:          0     GICv3 146 Level     arm-smmu-context-fault\n116:          0     GICv3 147 Level     arm-smmu-context-fault\n117:          0     GICv3 148 Level     arm-smmu-context-fault\n118:          0     GICv3 149 Level     arm-smmu-context-fault\n119:          0     GICv3 150 Level     arm-smmu-context-fault\n120:          0     GICv3 213 Level     arm-smmu-context-fault\n121:          0     GICv3 214 Level     arm-smmu-context-fault\n122:          0     GICv3 215 Level     arm-smmu-context-fault\n123:          0     GICv3 216 Level     arm-smmu-context-fault\n124:          0     GICv3 217 Level     arm-smmu-context-fault\n125:          0     GICv3 218 Level     arm-smmu-context-fault\n126:          0     GICv3 219 Level     arm-smmu-context-fault\n127:          0     GICv3 220 Level     arm-smmu-context-fault\n128:          0     GICv3 221 Level     arm-smmu-context-fault\n129:          0     GICv3 222 Level     arm-smmu-context-fault\n130:          0     GICv3 223 Level     arm-smmu-context-fault\n131:          0     GICv3 224 Level     arm-smmu-context-fault\n132:          0     GICv3 347 Level     arm-smmu-context-fault\n133:          0     GICv3 348 Level     arm-smmu-context-fault\n134:          0     GICv3 349 Level     arm-smmu-context-fault\n135:          0     GICv3 350 Level     arm-smmu-context-fault\n136:          0     GICv3 351 Level     arm-smmu-context-fault\n195:        102     GICv3 633 Level     spi_geni\n196:          0     GICv3 634 Level     msm_serial_geni0\n207:       1482     GICv3 386 Level     i2c_geni\n208:          0     GICv3 387 Level     i2c_geni\n209:          0     GICv3 388 Level     spi_geni\n210:       1537     GICv3 389 Level     i2c_geni\n211:          0     GICv3 206 Level     msm_vidc\n212:          0     GICv3 115 Level     msm_drm\n213:          0  pmic_arb 8388916 Edge      pon_kpdpwr_status\n214:          0  pmic_arb 8454452 Edge      pon_resin_status\n215:          0  pmic_arb 8585524 Edge      pon_kpdpwr_bark\n217:          0  pmic_arb 8716596 Edge      pon_kpdpwr_resin_bark\n218:          0  pmic_arb 37749045 Edge      qcom,temp-alarm\n220:          0  pmic_arb 202375484 Edge      volume_up\n228:          0  pmic_arb 560988493 Edge      sig-tx\n229:          0  pmic_arb 561054029 Edge      sig-rx\n230:          0  pmic_arb 561119565 Edge      msg-tx\n231:          0  pmic_arb 561185101 Edge      msg-rx\n232:          0  pmic_arb 561250637 Edge      msg-tx-failed\n233:          0  pmic_arb 561316173 Edge      msg-tx-discarded\n234:          0  pmic_arb 561381709 Edge      msg-rx-discarded\n236:          0  pmic_arb 574619986 Edge      qcom,temp-alarm\n242:          0  pmic_arb 743440735 Level     i2c_pmic_stat_irq\n249:         78  pmic_arb 588251475 Edge      pm-adc5\n250:          0  pmic_arb 592445780 Edge      thr-int-en\n251:          0  pmic_arb 567279953 Edge      bcl-lvl0\n252:          0  pmic_arb 567345489 Edge      bcl-lvl1\n253:          0  pmic_arb 567411025 Edge      bcl-lvl2\n254:          0  pmic_arb 1111490921 Edge      qcom,temp-alarm\n255:          0  pmic_arb 1137705324 Edge      bcl-lvl0\n256:          0  pmic_arb 1137770860 Edge      bcl-lvl1\n257:          0  pmic_arb 1137836396 Edge      bcl-lvl2\n258:          8  pmic_arb 1125122410 Edge      pm-adc5\n259:          0  pmic_arb 1129316715 Edge      thr-int-en\n272:          0  pmic_arb 1589707143 Edge      qpnp_lcdb_sc_irq\n273:          0  pmic_arb 1563427201 Edge      qpnp_flash_led_fault_irq\n274:          0  pmic_arb 1563623809 Edge      qpnp_flash_led_all_ramp_down_done_irq\n275:          0  pmic_arb 1563689345 Edge      qpnp_flash_led_all_ramp_up_done_irq\n276:          0  pmic_arb 1568735618 Edge      wled_ovp_irq\n277:          0  pmic_arb 1568932226 Edge      wled_pre_flash_irq\n278:          0  pmic_arb 1568997762 Edge      wled_flash_irq\n279:          1  pmic_arb 1661993354 Edge      pm-adc5\n280:          0  pmic_arb 1665139083 Edge      thr-int-en\n281:          0  pmic_arb 1713439117 Edge      pm8xxx_rtc_alarm\n286:          6      ipcc   0 Edge      qcom,qmp-aop\n287:          0     GICv3 430 Level     capture bus\n288:          0     GICv3 431 Level     capture bus\n289:          0     GICv3 432 Level     capture bus\n290:          0     GICv3 623 Level     capture bus\n291:          0     GICv3 624 Level     capture bus\n292:          0     GICv3 625 Level     capture bus\n293:          0     GICv3 626 Level     capture bus\n294:          0     GICv3  64 Level     limits_sensor-00\n295:          0     GICv3  65 Level     limits_sensor-01\n296:          0      ipcc 131074 Edge      smp2p\n297:          0      ipcc 196610 Edge      smp2p\n298:          0      ipcc 393218 Edge      smp2p\n299:          0      ipcc 458754 Edge      smp2p\n300:          0     smp2p   2 Edge      adsp\n301:          0     smp2p   0 Edge      adsp\n302:          0     smp2p   1 Edge      error_ready_interrupt\n303:          0     smp2p   3 Edge      adsp\n304:          0     smp2p   2 Edge      cdsp\n305:          0     smp2p   0 Edge      cdsp\n306:          0     smp2p   1 Edge      error_ready_interrupt\n307:          0     smp2p   3 Edge      cdsp\n308:          0     smp2p   2 Edge      modem\n309:          0     smp2p   0 Edge      modem\n310:          0     smp2p   1 Edge      error_ready_interrupt\n311:          0     smp2p   3 Edge      modem\n312:          0     smp2p   7 Edge      modem\n313:          0     smp2p   0 Edge      smp2p_sleepstate\n315:          0     GICv3 165 Level     dwc3\n317:          0   msmgpio  59 Edge      i2c_pmic_stat_irq\n319:          0  i2c_pmic_irq_chip 2320 Edge      ocp\n323:          0  i2c_pmic_irq_chip 9736 Edge      div2-irev\n324:          0  i2c_pmic_irq_chip 9760 Edge      usbin-uv\n325:          0  i2c_pmic_irq_chip 9856 Edge      usbin-ov\n326:          0  i2c_pmic_irq_chip 10016 Edge      div2-ilim\n327:          0  i2c_pmic_irq_chip 10048 Edge      div2-win-uv\n328:          0  i2c_pmic_irq_chip 10112 Edge      div2-win-ov\n329:          0   msmgpio  53 Edge      aw8624\n330:          0   msmgpio  12 Level     cs35l41\n331:          0   msmgpio  48 Level     cs35l41\n332:          0   msmgpio  23 Edge      TE_GPIO\n333:          0       sde   4 Edge      dsi_ctrl\n334:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n335:          0   msmgpio  94 Edge      8804000.sdhci cd\n336:          0  pmic_arb 553648454 Edge      chgr-error\n337:          0  pmic_arb 553713990 Edge      chg-state-change\n344:          0  pmic_arb 554697031 Edge      otg-fail\n348:          0  pmic_arb 554959175 Edge      high-duty-cycle\n349:          0  pmic_arb 555024711 Edge      input-current-limiting\n351:          0  pmic_arb 555155783 Edge      switcher-power-ok\n352:          0  pmic_arb 555745608 Edge      bat-temp\n353:          0  pmic_arb 555876680 Edge      bat-ov\n354:          0  pmic_arb 555942216 Edge      bat-low\n355:          0  pmic_arb 556007752 Edge      bat-therm-or-id-missing\n356:          0  pmic_arb 556073288 Edge      bat-terminal-missing\n359:          0  pmic_arb 556794185 Edge      usbin-collapse\n360:          0  pmic_arb 556859721 Edge      usbin-vashdn\n361:          0  pmic_arb 556925257 Edge      usbin-uv\n362:          0  pmic_arb 556990793 Edge      usbin-ov\n363:          0  pmic_arb 557056329 Edge      usbin-plugin\n365:          0  pmic_arb 557187401 Edge      usbin-src-change\n366:          0  pmic_arb 557252937 Edge      usbin-icl-change\n368:          0  pmic_arb 557973834 Edge      dcin-uv\n369:          0  pmic_arb 558039370 Edge      dcin-ov\n370:          0  pmic_arb 558104906 Edge      dcin-plugin\n372:          0  pmic_arb 558235978 Edge      dcin-pon\n373:          0  pmic_arb 558301514 Edge      dcin-en\n374:          0  pmic_arb 558891339 Edge      typec-or-rid-detect-change\n376:          0  pmic_arb 559022411 Edge      typec-cc-state-change\n377:          0  pmic_arb 559087947 Edge      typec-vconn-oc\n379:          0  pmic_arb 559219019 Edge      typec-attach-detach\n380:          0  pmic_arb 559284555 Edge      typec-legacy-cable-detect\n382:          0  pmic_arb 559939916 Edge      wdog-snarl\n383:          0  pmic_arb 560005452 Edge      wdog-bark\n385:          0  pmic_arb 560136524 Edge      aicl-done\n386:          0  pmic_arb 560202060 Edge      smb-en\n388:          0  pmic_arb 560333132 Edge      temp-change\n391:          0  pmic_arb 612434261 Edge      qg-vbat-low\n392:          0  pmic_arb 612499797 Edge      qg-vbat-empty\n393:         24  pmic_arb 612565333 Edge      qg-fifo-done\n394:          0  pmic_arb 612630869 Edge      qg-good-ocv\n395:          0   msmgpio  22 Edge      NVT-ts-spi\nIPI0:       140       Rescheduling interrupts\nIPI1:        11       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:         0       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm7225/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  3:        445          3          1          1          1          1          1          1     GICv3  19 Level     arch_timer\n  5:          0          0          0          0          0          0          0          0     GICv3  38 Level     arch_mem_timer\n  7:          0          0          0          0          0          0          0          0     GICv3 195 Level     ngd_slim_irq\n  9:        355          0          0          0          0          0          0          0     GICv3 297 Level     1d84000.ufshc\n 10:          6          0          0          0          0          0          0          0     GICv3 260 Level     ipcc_1\n 13:        349          0          0          0          0          0          0          0     GICv3  37 Level     apps_rsc\n 14:          0          0          0          0          0          0          0          0     GICv3 161 Level     disp_rsc\n 15:          0          0          0          0          0          0          0          0     GICv3  21 Level     arm-pmu\n 16:          0          0          0          0          0          0          0          0     GICv3 304 Level     sps\n 17:          0          0          0          0          0          0          0          0     GICv3  32 Edge      apps_wdog_bark\n 19:          0          0          0          0          0          0          0          0     GICv3  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 20:          0          0          0          0          0          0          0          0     GICv3  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 21:          0          0          0          0          0          0          0          0       PDC   6 Edge      adsp\n 22:          0          0          0          0          0          0          0          0     GICv3 610 Edge      cdsp\n 23:          0          0          0          0          0          0          0          0     GICv3 168 Edge      modem\n 24:          0          0          0          0          0          0          0          0       PDC  26 Level     tsens-upper-lower\n 25:          0          0          0          0          0          0          0          0       PDC  28 Level     tsens-critical\n 26:          0          0          0          0          0          0          0          0       PDC  20 Edge      tsens-0C\n 27:          0          0          0          0          0          0          0          0       PDC  27 Level     tsens-upper-lower\n 28:          0          0          0          0          0          0          0          0       PDC  29 Level     tsens-critical\n 29:          0          0          0          0          0          0          0          0       PDC  21 Edge      tsens-0C\n 31:          0          0          0          0          0          0          0          0       PDC  11 Level     eud_irq\n 38:         58          0          0          0          0          0          0          0     GICv3 236 Level     mmc0\n 39:          1          0          0          0          0          0          0          0     GICv3 254 Level     8804000.sdhci\n 54:          0          0          0          0          0          0          0          0       PDC  14 Edge      dp_hs_phy_irq\n 55:          0          0          0          0          0          0          0          0     GICv3 162 Level     pwr_event_irq\n 56:          0          0          0          0          0          0          0          0       PDC  17 Level     ss_phy_irq\n 57:          0          0          0          0          0          0          0          0       PDC  15 Edge      dm_hs_phy_irq\n 58:          0          0          0          0          0          0          0          0     GICv3 332 Level     kgsl_3d0_irq\n 59:          0          0          0          0          0          0          0          0     GICv3 336 Level     kgsl_hfi_irq\n 60:          0          0          0          0          0          0          0          0     GICv3 337 Level     kgsl_gmu_irq\n 61:          0          0          0          0          0          0          0          0     GICv3 615 Level     error_irq\n 62:          0          0          0          0          0          0          0          0     GICv3 617 Edge      wdg_bite_irq\n 63:          0          0          0          0          0          0          0          0     GICv3 619 Edge      ipc_irq\n 64:          0          0          0          0          0          0          0          0     GICv3 616 Level     general_irq\n 65:          0          0          0          0          0          0          0          0     GICv3 509 Edge      csiphy\n 66:          0          0          0          0          0          0          0          0     GICv3 510 Edge      csiphy\n 67:          0          0          0          0          0          0          0          0     GICv3 511 Edge      csiphy\n 68:          0          0          0          0          0          0          0          0     GICv3 493 Edge      csiphy\n 69:          0          0          0          0          0          0          0          0     GICv3 500 Edge      cci\n 70:          0          0          0          0          0          0          0          0     GICv3 494 Edge      cci\n 71:          1          0          0          0          0          0          0          0     GICv3 501 Edge      cpas-cdm\n 72:          0          0          0          0          0          0          0          0     GICv3 496 Edge      csid0\n 73:          2          0          0          0          0          0          0          0     GICv3 497 Edge      ife0\n 74:          0          0          0          0          0          0          0          0     GICv3 498 Edge      csid1\n 75:          2          0          0          0          0          0          0          0     GICv3 499 Edge      ife1\n 76:          0          0          0          0          0          0          0          0     GICv3 749 Edge      csid\n 77:          2          0          0          0          0          0          0          0     GICv3 750 Edge      ife\n 78:          0          0          0          0          0          0          0          0     GICv3 505 Edge      csid-lite\n 79:          2          0          0          0          0          0          0          0     GICv3 504 Edge      ife-lite\n 80:          0          0          0          0          0          0          0          0     GICv3 495 Edge      a5\n 81:          0          0          0          0          0          0          0          0     GICv3 506 Edge      jpeg\n 82:          0          0          0          0          0          0          0          0     GICv3 507 Edge      jpegdma\n 83:          1          0          0          0          0          0          0          0     GICv3 508 Edge      lrme\n 84:          0          0          0          0          0          0          0          0     GICv3 491 Edge      cpas_camnoc\n 85:          0          0          0          0          0          0          0          0     GICv3 261 Level     arm-smmu global fault\n 86:          0          0          0          0          0          0          0          0     GICv3 263 Level     arm-smmu global fault\n 87:          0          0          0          0          0          0          0          0     GICv3 396 Level     arm-smmu-context-fault\n 88:          0          0          0          0          0          0          0          0     GICv3 397 Level     arm-smmu-context-fault\n 89:          0          0          0          0          0          0          0          0     GICv3 398 Level     arm-smmu-context-fault\n 90:          0          0          0          0          0          0          0          0     GICv3 399 Level     arm-smmu-context-fault\n 95:          0          0          0          0          0          0          0          0     GICv3  97 Level     arm-smmu global fault\n 98:          0          0          0          0          0          0          0          0     GICv3 129 Level     arm-smmu-context-fault\n 99:          0          0          0          0          0          0          0          0     GICv3 130 Level     arm-smmu-context-fault\n100:          0          0          0          0          0          0          0          0     GICv3 131 Level     arm-smmu-context-fault\n101:          0          0          0          0          0          0          0          0     GICv3 132 Level     arm-smmu-context-fault\n102:          0          0          0          0          0          0          0          0     GICv3 133 Level     arm-smmu-context-fault\n103:          0          0          0          0          0          0          0          0     GICv3 134 Level     arm-smmu-context-fault\n104:          0          0          0          0          0          0          0          0     GICv3 135 Level     arm-smmu-context-fault\n105:          0          0          0          0          0          0          0          0     GICv3 136 Level     arm-smmu-context-fault\n106:          0          0          0          0          0          0          0          0     GICv3 137 Level     arm-smmu-context-fault\n107:          0          0          0          0          0          0          0          0     GICv3 138 Level     arm-smmu-context-fault\n108:          0          0          0          0          0          0          0          0     GICv3 139 Level     arm-smmu-context-fault\n109:          0          0          0          0          0          0          0          0     GICv3 140 Level     arm-smmu-context-fault\n110:          0          0          0          0          0          0          0          0     GICv3 141 Level     arm-smmu-context-fault\n111:          0          0          0          0          0          0          0          0     GICv3 142 Level     arm-smmu-context-fault\n112:          0          0          0          0          0          0          0          0     GICv3 143 Level     arm-smmu-context-fault\n113:          0          0          0          0          0          0          0          0     GICv3 144 Level     arm-smmu-context-fault\n114:          0          0          0          0          0          0          0          0     GICv3 145 Level     arm-smmu-context-fault\n115:          0          0          0          0          0          0          0          0     GICv3 146 Level     arm-smmu-context-fault\n116:          0          0          0          0          0          0          0          0     GICv3 147 Level     arm-smmu-context-fault\n117:          0          0          0          0          0          0          0          0     GICv3 148 Level     arm-smmu-context-fault\n118:          0          0          0          0          0          0          0          0     GICv3 149 Level     arm-smmu-context-fault\n119:          0          0          0          0          0          0          0          0     GICv3 150 Level     arm-smmu-context-fault\n120:          0          0          0          0          0          0          0          0     GICv3 213 Level     arm-smmu-context-fault\n121:          0          0          0          0          0          0          0          0     GICv3 214 Level     arm-smmu-context-fault\n122:          0          0          0          0          0          0          0          0     GICv3 215 Level     arm-smmu-context-fault\n123:          0          0          0          0          0          0          0          0     GICv3 216 Level     arm-smmu-context-fault\n124:          0          0          0          0          0          0          0          0     GICv3 217 Level     arm-smmu-context-fault\n125:          0          0          0          0          0          0          0          0     GICv3 218 Level     arm-smmu-context-fault\n126:          0          0          0          0          0          0          0          0     GICv3 219 Level     arm-smmu-context-fault\n127:          0          0          0          0          0          0          0          0     GICv3 220 Level     arm-smmu-context-fault\n128:          0          0          0          0          0          0          0          0     GICv3 221 Level     arm-smmu-context-fault\n129:          0          0          0          0          0          0          0          0     GICv3 222 Level     arm-smmu-context-fault\n130:          0          0          0          0          0          0          0          0     GICv3 223 Level     arm-smmu-context-fault\n131:          0          0          0          0          0          0          0          0     GICv3 224 Level     arm-smmu-context-fault\n132:          0          0          0          0          0          0          0          0     GICv3 347 Level     arm-smmu-context-fault\n133:          0          0          0          0          0          0          0          0     GICv3 348 Level     arm-smmu-context-fault\n134:          0          0          0          0          0          0          0          0     GICv3 349 Level     arm-smmu-context-fault\n135:          0          0          0          0          0          0          0          0     GICv3 350 Level     arm-smmu-context-fault\n136:          0          0          0          0          0          0          0          0     GICv3 351 Level     arm-smmu-context-fault\n195:         24          0          0          0          0          0          0          0     GICv3 633 Level     spi_geni\n196:          0          0          0          0          0          0          0          0     GICv3 634 Level     msm_serial_geni0\n207:       1482          0          0          0          0          0          0          0     GICv3 386 Level     i2c_geni\n208:          0          0          0          0          0          0          0          0     GICv3 387 Level     i2c_geni\n209:          0          0          0          0          0          0          0          0     GICv3 388 Level     spi_geni\n210:       1427          0          0          0          0          0          0          0     GICv3 389 Level     i2c_geni\n211:          0          0          0          0          0          0          0          0     GICv3 206 Level     msm_vidc\n212:          0          0          0          0          0          0          0          0     GICv3 115 Level     msm_drm\n213:          0          0          0          0          0          0          0          0  pmic_arb 8388916 Edge      pon_kpdpwr_status\n214:          0          0          0          0          0          0          0          0  pmic_arb 8454452 Edge      pon_resin_status\n215:          0          0          0          0          0          0          0          0  pmic_arb 8585524 Edge      pon_kpdpwr_bark\n217:          0          0          0          0          0          0          0          0  pmic_arb 8716596 Edge      pon_kpdpwr_resin_bark\n218:          0          0          0          0          0          0          0          0  pmic_arb 37749045 Edge      qcom,temp-alarm\n220:          0          0          0          0          0          0          0          0  pmic_arb 202375484 Edge      volume_up\n228:          0          0          0          0          0          0          0          0  pmic_arb 560988493 Edge      sig-tx\n229:          0          0          0          0          0          0          0          0  pmic_arb 561054029 Edge      sig-rx\n230:          0          0          0          0          0          0          0          0  pmic_arb 561119565 Edge      msg-tx\n231:          0          0          0          0          0          0          0          0  pmic_arb 561185101 Edge      msg-rx\n232:          0          0          0          0          0          0          0          0  pmic_arb 561250637 Edge      msg-tx-failed\n233:          0          0          0          0          0          0          0          0  pmic_arb 561316173 Edge      msg-tx-discarded\n234:          0          0          0          0          0          0          0          0  pmic_arb 561381709 Edge      msg-rx-discarded\n236:          0          0          0          0          0          0          0          0  pmic_arb 574619986 Edge      qcom,temp-alarm\n242:          0          0          0          0          0          0          0          0  pmic_arb 743440735 Level     i2c_pmic_stat_irq\n249:         29          0          0          0          0          0          0          0  pmic_arb 588251475 Edge      pm-adc5\n250:          0          0          0          0          0          0          0          0  pmic_arb 592445780 Edge      thr-int-en\n251:          0          0          0          0          0          0          0          0  pmic_arb 567279953 Edge      bcl-lvl0\n252:          0          0          0          0          0          0          0          0  pmic_arb 567345489 Edge      bcl-lvl1\n253:          0          0          0          0          0          0          0          0  pmic_arb 567411025 Edge      bcl-lvl2\n254:          0          0          0          0          0          0          0          0  pmic_arb 1111490921 Edge      qcom,temp-alarm\n255:          0          0          0          0          0          0          0          0  pmic_arb 1137705324 Edge      bcl-lvl0\n256:          0          0          0          0          0          0          0          0  pmic_arb 1137770860 Edge      bcl-lvl1\n257:          0          0          0          0          0          0          0          0  pmic_arb 1137836396 Edge      bcl-lvl2\n258:          8          0          0          0          0          0          0          0  pmic_arb 1125122410 Edge      pm-adc5\n259:          0          0          0          0          0          0          0          0  pmic_arb 1129316715 Edge      thr-int-en\n272:          0          0          0          0          0          0          0          0  pmic_arb 1589707143 Edge      qpnp_lcdb_sc_irq\n273:          0          0          0          0          0          0          0          0  pmic_arb 1563427201 Edge      qpnp_flash_led_fault_irq\n274:          0          0          0          0          0          0          0          0  pmic_arb 1563623809 Edge      qpnp_flash_led_all_ramp_down_done_irq\n275:          0          0          0          0          0          0          0          0  pmic_arb 1563689345 Edge      qpnp_flash_led_all_ramp_up_done_irq\n276:          0          0          0          0          0          0          0          0  pmic_arb 1568735618 Edge      wled_ovp_irq\n277:          0          0          0          0          0          0          0          0  pmic_arb 1568932226 Edge      wled_pre_flash_irq\n278:          0          0          0          0          0          0          0          0  pmic_arb 1568997762 Edge      wled_flash_irq\n279:          1          0          0          0          0          0          0          0  pmic_arb 1661993354 Edge      pm-adc5\n280:          0          0          0          0          0          0          0          0  pmic_arb 1665139083 Edge      thr-int-en\n281:          0          0          0          0          0          0          0          0  pmic_arb 1713439117 Edge      pm8xxx_rtc_alarm\n286:          6          0          0          0          0          0          0          0      ipcc   0 Edge      qcom,qmp-aop\n287:          0          0          0          0          0          0          0          0     GICv3 430 Level     capture bus\n288:          0          0          0          0          0          0          0          0     GICv3 431 Level     capture bus\n289:          0          0          0          0          0          0          0          0     GICv3 432 Level     capture bus\n290:          0          0          0          0          0          0          0          0     GICv3 623 Level     capture bus\n291:          0          0          0          0          0          0          0          0     GICv3 624 Level     capture bus\n292:          0          0          0          0          0          0          0          0     GICv3 625 Level     capture bus\n293:          0          0          0          0          0          0          0          0     GICv3 626 Level     capture bus\n294:          0          0          0          0          0          0          0          0     GICv3  64 Level     limits_sensor-00\n295:          0          0          0          0          0          0          0          0     GICv3  65 Level     limits_sensor-01\n296:          0          0          0          0          0          0          0          0      ipcc 131074 Edge      smp2p\n297:          0          0          0          0          0          0          0          0      ipcc 196610 Edge      smp2p\n298:          0          0          0          0          0          0          0          0      ipcc 393218 Edge      smp2p\n299:          0          0          0          0          0          0          0          0      ipcc 458754 Edge      smp2p\n300:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n301:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n302:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n303:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n304:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n305:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n306:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n307:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n308:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n309:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n310:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n311:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n312:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n313:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n315:          0          0          0          0          0          0          0          0     GICv3 165 Level     dwc3\n317:          0          0          0          0          0          0          0          0   msmgpio  59 Edge      i2c_pmic_stat_irq\n319:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 2320 Edge      ocp\n323:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 9736 Edge      div2-irev\n324:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 9760 Edge      usbin-uv\n325:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 9856 Edge      usbin-ov\n326:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 10016 Edge      div2-ilim\n327:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 10048 Edge      div2-win-uv\n328:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 10112 Edge      div2-win-ov\n329:          0          0          0          0          0          0          0          0   msmgpio  53 Edge      aw8624\n330:          0          0          0          0          0          0          0          0   msmgpio  12 Level     cs35l41\n331:          0          0          0          0          0          0          0          0   msmgpio  48 Level     cs35l41\n332:          0          0          0          0          0          0          0          0   msmgpio  23 Edge      TE_GPIO\n333:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n334:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n335:          0          0          0          0          0          0          0          0   msmgpio  94 Edge      8804000.sdhci cd\n336:          0          0          0          0          0          0          0          0  pmic_arb 553648454 Edge      chgr-error\n337:          0          0          0          0          0          0          0          0  pmic_arb 553713990 Edge      chg-state-change\n344:          0          0          0          0          0          0          0          0  pmic_arb 554697031 Edge      otg-fail\n348:          0          0          0          0          0          0          0          0  pmic_arb 554959175 Edge      high-duty-cycle\n349:          0          0          0          0          0          0          0          0  pmic_arb 555024711 Edge      input-current-limiting\n351:          0          0          0          0          0          0          0          0  pmic_arb 555155783 Edge      switcher-power-ok\n352:          0          0          0          0          0          0          0          0  pmic_arb 555745608 Edge      bat-temp\n353:          0          0          0          0          0          0          0          0  pmic_arb 555876680 Edge      bat-ov\n354:          0          0          0          0          0          0          0          0  pmic_arb 555942216 Edge      bat-low\n355:          0          0          0          0          0          0          0          0  pmic_arb 556007752 Edge      bat-therm-or-id-missing\n356:          0          0          0          0          0          0          0          0  pmic_arb 556073288 Edge      bat-terminal-missing\n359:          0          0          0          0          0          0          0          0  pmic_arb 556794185 Edge      usbin-collapse\n360:          0          0          0          0          0          0          0          0  pmic_arb 556859721 Edge      usbin-vashdn\n361:          0          0          0          0          0          0          0          0  pmic_arb 556925257 Edge      usbin-uv\n362:          0          0          0          0          0          0          0          0  pmic_arb 556990793 Edge      usbin-ov\n363:          0          0          0          0          0          0          0          0  pmic_arb 557056329 Edge      usbin-plugin\n365:          0          0          0          0          0          0          0          0  pmic_arb 557187401 Edge      usbin-src-change\n366:          0          0          0          0          0          0          0          0  pmic_arb 557252937 Edge      usbin-icl-change\n368:          0          0          0          0          0          0          0          0  pmic_arb 557973834 Edge      dcin-uv\n369:          0          0          0          0          0          0          0          0  pmic_arb 558039370 Edge      dcin-ov\n370:          0          0          0          0          0          0          0          0  pmic_arb 558104906 Edge      dcin-plugin\n372:          0          0          0          0          0          0          0          0  pmic_arb 558235978 Edge      dcin-pon\n373:          0          0          0          0          0          0          0          0  pmic_arb 558301514 Edge      dcin-en\n374:          0          0          0          0          0          0          0          0  pmic_arb 558891339 Edge      typec-or-rid-detect-change\n376:          0          0          0          0          0          0          0          0  pmic_arb 559022411 Edge      typec-cc-state-change\n377:          0          0          0          0          0          0          0          0  pmic_arb 559087947 Edge      typec-vconn-oc\n379:          0          0          0          0          0          0          0          0  pmic_arb 559219019 Edge      typec-attach-detach\n380:          0          0          0          0          0          0          0          0  pmic_arb 559284555 Edge      typec-legacy-cable-detect\n382:          0          0          0          0          0          0          0          0  pmic_arb 559939916 Edge      wdog-snarl\n383:          0          0          0          0          0          0          0          0  pmic_arb 560005452 Edge      wdog-bark\n385:          0          0          0          0          0          0          0          0  pmic_arb 560136524 Edge      aicl-done\n386:          0          0          0          0          0          0          0          0  pmic_arb 560202060 Edge      smb-en\n388:          0          0          0          0          0          0          0          0  pmic_arb 560333132 Edge      temp-change\n391:          0          0          0          0          0          0          0          0  pmic_arb 612434261 Edge      qg-vbat-low\n392:          0          0          0          0          0          0          0          0  pmic_arb 612499797 Edge      qg-vbat-empty\n393:          0          0          0          0          0          0          0          0  pmic_arb 612565333 Edge      qg-fifo-done\n394:          0          0          0          0          0          0          0          0  pmic_arb 612630869 Edge      qg-good-ocv\n395:          0          0          0          0          0          0          0          0   msmgpio  22 Edge      NVT-ts-spi\nIPI0:        72         26         27         26         26         26         22         23       Rescheduling interrupts\nIPI1:         0          7          6          7          7          7          7          6       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         0          4          4          4          4          4          4          4       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm7225/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    6 root      0:00 [kworker/0:0H-ev]\n    7 root      0:00 [kworker/u16:0+L]\n    8 root      0:00 [mm_percpu_wq]\n    9 root      0:00 [ksoftirqd/0]\n   10 root      0:00 [rcu_preempt]\n   11 root      0:00 [rcu_sched]\n   12 root      0:00 [rcu_bh]\n   13 root      0:00 [rcuop/0]\n   14 root      0:00 [rcuos/0]\n   15 root      0:00 [rcuob/0]\n   16 root      0:00 [migration/0]\n   17 root      0:00 [cpuhp/0]\n   18 root      0:00 [cpuhp/1]\n   19 root      0:00 [migration/1]\n   20 root      0:00 [ksoftirqd/1]\n   21 root      0:00 [kworker/1:0-mm_]\n   22 root      0:00 [kworker/1:0H-ev]\n   23 root      0:00 [rcuop/1]\n   24 root      0:00 [rcuos/1]\n   25 root      0:00 [rcuob/1]\n   27 root      0:00 [cpuhp/2]\n   28 root      0:00 [migration/2]\n   29 root      0:00 [ksoftirqd/2]\n   31 root      0:00 [kworker/2:0H-ev]\n   32 root      0:00 [rcuop/2]\n   33 root      0:00 [rcuos/2]\n   34 root      0:00 [rcuob/2]\n   35 root      0:00 [cpuhp/3]\n   36 root      0:00 [migration/3]\n   37 root      0:00 [ksoftirqd/3]\n   39 root      0:00 [kworker/3:0H-ev]\n   40 root      0:00 [rcuop/3]\n   41 root      0:00 [rcuos/3]\n   42 root      0:00 [rcuob/3]\n   43 root      0:00 [cpuhp/4]\n   44 root      0:00 [migration/4]\n   45 root      0:00 [ksoftirqd/4]\n   47 root      0:00 [kworker/4:0H-ev]\n   48 root      0:00 [rcuop/4]\n   49 root      0:00 [rcuos/4]\n   50 root      0:00 [rcuob/4]\n   51 root      0:00 [cpuhp/5]\n   52 root      0:00 [migration/5]\n   53 root      0:00 [ksoftirqd/5]\n   55 root      0:00 [kworker/5:0H-ev]\n   56 root      0:00 [rcuop/5]\n   57 root      0:00 [rcuos/5]\n   58 root      0:00 [rcuob/5]\n   59 root      0:00 [cpuhp/6]\n   60 root      0:00 [migration/6]\n   61 root      0:00 [ksoftirqd/6]\n   63 root      0:00 [kworker/6:0H-ev]\n   64 root      0:00 [rcuop/6]\n   65 root      0:00 [rcuos/6]\n   66 root      0:00 [rcuob/6]\n   67 root      0:00 [cpuhp/7]\n   68 root      0:00 [migration/7]\n   69 root      0:00 [ksoftirqd/7]\n   71 root      0:00 [kworker/7:0H-ev]\n   72 root      0:00 [rcuop/7]\n   73 root      0:00 [rcuos/7]\n   74 root      0:00 [rcuob/7]\n   75 root      0:00 [netns]\n   76 root      0:00 [rcu_tasks_kthre]\n   77 root      0:00 [kauditd]\n   78 root      0:00 [kworker/u16:1+M]\n   79 root      0:00 [kworker/u17:0]\n   80 root      0:00 [ipa_usb_wq]\n   81 root      0:00 [msm_watchdog]\n   82 root      0:00 [qmp_aop]\n   83 root      0:00 [oom_reaper]\n   84 root      0:00 [writeback]\n   85 root      0:00 [kcompactd0]\n   86 root      0:00 [crypto]\n   87 root      0:00 [kblockd]\n   88 root      0:00 [blk_crypto_wq]\n   89 root      0:00 [irq/85-arm-smmu]\n   90 root      0:00 [irq/86-arm-smmu]\n   91 root      0:00 [irq/95-arm-smmu]\n   92 root      0:00 [irq/287-capture]\n   93 root      0:00 [irq/288-capture]\n   94 root      0:00 [irq/289-capture]\n   95 root      0:00 [irq/290-capture]\n   96 root      0:00 [irq/291-capture]\n   97 root      0:00 [irq/292-capture]\n   98 root      0:00 [irq/293-capture]\n   99 root      0:00 [longpress]\n  100 root      0:00 [irq/24-tsens-up]\n  101 root      0:00 [irq/25-tsens-cr]\n  102 root      0:00 [irq/26-tsens-0C]\n  103 root      0:00 [irq/27-tsens-up]\n  104 root      0:00 [irq/28-tsens-cr]\n  105 root      0:00 [irq/29-tsens-0C]\n  106 root      0:00 [edac-poller]\n  107 root      0:00 [system]\n  108 root      0:00 [ipa_power_mgmt]\n  109 root      0:00 [transport_power]\n  110 root      0:00 [ipa_pm_activate]\n  111 root      0:00 [irq/99-arm-smmu]\n  112 root      0:00 [irq/100-arm-smm]\n  113 root      0:00 [irq/101-arm-smm]\n  114 root      0:00 [devfreq_wq]\n  115 root      0:00 [governor_msm_ad]\n  116 root      0:00 [irq/102-arm-smm]\n  117 root      0:00 [irq/103-arm-smm]\n  119 root      0:00 [irq/272-qpnp_lc]\n  120 root      0:00 [cfg80211]\n  161 root      0:00 [kswapd0:0]\n  162 root      0:00 [ecryptfs-kthrea]\n  219 root      0:00 [irq/276-wled_ov]\n  220 root      0:00 [irq/278-wled_fl]\n  221 root      0:00 [irq/277-wled_pr]\n  222 root      0:00 [irq/104-arm-smm]\n  223 root      0:00 [irq/105-arm-smm]\n  224 root      0:00 [irq/296-smp2p]\n  225 root      0:00 [irq/297-smp2p]\n  226 root      0:00 [irq/298-smp2p]\n  227 root      0:00 [mem_share_svc]\n  228 root      0:00 [irq/106-arm-smm]\n  229 root      0:00 [geni_serial_dum]\n  230 root      0:00 [hwrng]\n  232 root      0:00 [diag_real_time_]\n  233 root      0:00 [diag_wq]\n  234 root      0:00 [DIAG_USB_diag]\n  235 root      0:00 [diag_cntl_wq]\n  236 root      0:00 [diag_dci_wq]\n  237 root      0:00 [MODEM_CNTL]\n  238 root      0:00 [MODEM_DATA]\n  239 root      0:00 [MODEM_CMD]\n  240 root      0:00 [MODEM_DCI]\n  241 root      0:00 [MODEM_DCI_CMD]\n  242 root      0:00 [LPASS_CNTL]\n  243 root      0:00 [LPASS_DATA]\n  244 root      0:00 [LPASS_CMD]\n  245 root      0:00 [LPASS_DCI]\n  246 root      0:00 [LPASS_DCI_CMD]\n  247 root      0:00 [WCNSS_CNTL]\n  248 root      0:00 [WCNSS_DATA]\n  249 root      0:00 [WCNSS_CMD]\n  250 root      0:00 [WCNSS_DCI]\n  251 root      0:00 [WCNSS_DCI_CMD]\n  252 root      0:00 [SENSORS_CNTL]\n  253 root      0:00 [SENSORS_DATA]\n  254 root      0:00 [SENSORS_CMD]\n  255 root      0:00 [SENSORS_DCI]\n  256 root      0:00 [SENSORS_DCI_CMD]\n  257 root      0:00 [DIAG_CTRL]\n  258 root      0:00 [DIAG_DATA]\n  259 root      0:00 [DIAG_CMD]\n  260 root      0:00 [DIAG_DCI_DATA]\n  261 root      0:00 [DIAG_DCI_CMD]\n  262 root      0:00 [CDSP_CNTL]\n  263 root      0:00 [CDSP_DATA]\n  264 root      0:00 [CDSP_CMD]\n  265 root      0:00 [CDSP_DCI]\n  266 root      0:00 [CDSP_DCI_CMD]\n  267 root      0:00 [NPU_CNTL]\n  268 root      0:00 [NPU_DATA]\n  269 root      0:00 [NPU_CMD]\n  270 root      0:00 [NPU_DCI]\n  271 root      0:00 [NPU_DCI_CMD]\n  272 root      0:00 [DIAG_RPMSG_DIAG]\n  273 root      0:00 [DIAG_RPMSG_DIAG]\n  274 root      0:00 [DIAG_RPMSG_DIAG]\n  275 root      0:00 [DIAG_RPMSG_DIAG]\n  276 root      0:00 [DIAG_RPMSG_DIAG]\n  277 root      0:00 [DIAG_RPMSG_DIAG]\n  278 root      0:00 [DIAG_RPMSG_DIAG]\n  279 root      0:00 [DIAG_RPMSG_DIAG]\n  280 root      0:00 [DIAG_RPMSG_DIAG]\n  281 root      0:00 [DIAG_RPMSG_DIAG]\n  282 root      0:00 [DIAG_RPMSG_APPS]\n  283 root      0:00 [DIAG_RPMSG_APPS]\n  284 root      0:00 [DIAG_RPMSG_DIAG]\n  285 root      0:00 [DIAG_RPMSG_DIAG]\n  286 root      0:00 [DIAG_RPMSG_DIAG]\n  287 root      0:00 [DIAG_RPMSG_DIAG]\n  288 root      0:00 [DIAG_RPMSG_DIAG]\n  289 root      0:00 [DIAG_RPMSG_DIAG]\n  290 root      0:00 [DIAG_RPMSG_DIAG]\n  291 root      0:00 [DIAG_RPMSG_DIAG]\n  292 root      0:00 [diag_mhi_MDM]\n  293 root      0:00 [kworker/u16:2+W]\n  294 root      0:00 [DIAG_USB_diag_m]\n  295 root      0:00 [kworker/u16:3+S]\n  296 root      0:00 [kworker/u16:4+D]\n  297 root      0:00 [diag_mhi_MDM_DC]\n  298 root      0:00 [kworker/u16:5+C]\n  299 root      0:00 [diag_dci_MDM_DC]\n  300 root      0:00 [kworker/u16:6+N]\n  301 root      0:00 [diag_mhi_MDM_2]\n  303 root      0:00 [DIAG_USB_diag_m]\n  304 root      0:00 [diag_mhi_MDM_DC]\n  305 root      0:00 [diag_dci_MDM_DC]\n  306 root      0:00 [kgsl-workqueue]\n  307 root      0:00 [kgsl-mementry]\n  308 root      0:00 [kgsl_worker_thr]\n  310 root      0:00 [kworker/1:1-eve]\n  311 root      0:00 [kworker/2:1-eve]\n  312 root      0:00 [kworker/3:1-eve]\n  313 root      0:00 [kworker/4:1-eve]\n  314 root      0:00 [kworker/6:1-eve]\n  315 root      0:00 [kworker/5:1-eve]\n  316 root      0:00 [kworker/7:1-eve]\n  317 root      0:00 [qseecom-unreg-l]\n  318 root      0:00 [qseecom-unload-]\n  319 root      0:00 [irq/107-arm-smm]\n  320 root      0:00 [irq/108-arm-smm]\n  321 root      0:00 [irq/109-arm-smm]\n  322 root      0:00 [qcrypto_seq_res]\n  323 root      0:00 [irq/110-arm-smm]\n  344 root      0:00 [scsi_eh_0]\n  345 root      0:00 [scsi_tmf_0]\n  346 root      0:00 [ufs_pm_qos_0]\n  347 root      0:00 [ufs_recovery_wq]\n  348 root      0:00 [ufs_clk_gating_]\n  349 root      0:00 [spi2]\n  350 root      0:00 [spi1]\n  351 root      0:00 [bond0]\n  352 root      0:00 [irq/111-arm-smm]\n  357 root      0:00 [k_ipa_usb]\n  360 root      0:00 [kworker/u16:9-r]\n  361 root      0:00 [irq/317-i2c_pmi]\n  363 root      0:00 [kworker/u16:11-]\n  366 root      0:00 [kworker/u16:14-]\n  367 root      0:00 [irq/242-i2c_pmi]\n  368 root      0:00 [irq/329-aw8624]\n  369 root      0:00 [aw8624_vibrator]\n  371 root      0:00 [irq/112-arm-smm]\n  372 root      0:00 [npu_general_wq]\n  373 root      0:00 [irq/218-qcom,te]\n  374 root      0:00 [irq/254-qcom,te]\n  375 root      0:00 [irq/251-bcl-lvl]\n  376 root      0:00 [irq/252-bcl-lvl]\n  377 root      0:00 [irq/253-bcl-lvl]\n  378 root      0:00 [irq/255-bcl-lvl]\n  379 root      0:00 [irq/256-bcl-lvl]\n  380 root      0:00 [irq/257-bcl-lvl]\n  381 root      0:00 [irq/294-limits_]\n  382 root      0:00 [irq/295-limits_]\n  383 root      0:00 [kworker/0:1H-kb]\n  384 root      0:00 [kworker/1:1H]\n  385 root      0:00 [kworker/2:1H]\n  386 root      0:00 [kworker/3:1H]\n  387 root      0:00 [kworker/4:1H]\n  388 root      0:00 [kworker/5:1H]\n  389 root      0:00 [kworker/6:1H]\n  390 root      0:00 [kworker/7:1H]\n  391 root      0:00 [dm_bufio_cache]\n  392 root      0:00 [irq/20-KRYO L3-]\n  393 root      0:00 [memlat_wq]\n  394 root      0:00 [irq/39-8804000.]\n  395 root      0:00 [irq/113-arm-smm]\n  396 root      0:00 [uaudio_svc]\n  397 root      0:00 [apr_driver]\n  398 root      0:00 [cs35l41_ramp]\n  399 root      0:00 [irq/330-cs35l41]\n  400 root      0:00 [cs35l41]\n  401 root      0:00 [cs35l41_ramp]\n  402 root      0:00 [irq/331-cs35l41]\n  403 root      0:00 [cs35l41]\n  404 root      0:00 [irq/114-arm-smm]\n  405 root      0:00 [irq/115-arm-smm]\n  406 root      0:00 [irq/116-arm-smm]\n  407 root      0:00 [irq/117-arm-smm]\n  408 root      0:00 [irq/118-arm-smm]\n  409 root      0:00 [cam-cpas]\n  410 root      0:00 [qcom,cam_virtua]\n  411 root      0:00 [qcom,cam170-cpa]\n  412 root      0:00 [cam_cci_wq]\n  413 root      0:00 [cam_cci_wq]\n  414 root      0:00 [cam_cci_wq]\n  415 root      0:00 [cam_cci_wq]\n  416 root      0:00 [dsi_dma_cmd_wor]\n  417 root      0:00 [irq/38-mmc0]\n  418 root      0:00 [irq/98-arm-smmu]\n  419 root      0:00 [irq/119-arm-smm]\n  420 root      0:00 [crtc_commit:103]\n  421 root      0:00 [crtc_event:103]\n  422 root      0:00 [crtc_commit:156]\n  423 root      0:00 [crtc_event:156]\n  424 root      0:00 [pp_event]\n  425 root      0:00 [msm_vidc_worker]\n  426 root      0:00 [pm_workerq_venu]\n  427 root      0:00 [vidc_core_workq]\n  428 root      0:00 [irq/120-arm-smm]\n  429 root      0:00 [irq/121-arm-smm]\n  430 root      0:00 [irq/122-arm-smm]\n  431 root      0:00 [irq/123-arm-smm]\n  432 root      0:00 [ipv6_addrconf]\n  433 root      0:00 [irq/299-smp2p]\n  435 root      0:00 [irq/87-arm-smmu]\n  436 root      0:00 [irq/335-8804000]\n  437 root      0:00 [irq/88-arm-smmu]\n  438 root      0:00 [kworker/0:5-eve]\n  439 root      0:00 [irq/89-arm-smmu]\n  440 root      0:00 [irq/90-arm-smmu]\n  441 root      0:00 [kgsl-events]\n  442 root      0:00 [kgsl_devfreq_wq]\n  450 root      0:00 [kworker/0:6-eve]\n  455 root      0:00 [irq/336-chgr-er]\n  456 root      0:00 [irq/337-chg-sta]\n  457 root      0:00 [irq/344-otg-fai]\n  458 root      0:00 [irq/348-high-du]\n  459 root      0:00 [irq/349-input-c]\n  460 root      0:00 [irq/351-switche]\n  461 root      0:00 [irq/352-bat-tem]\n  462 root      0:00 [irq/353-bat-ov]\n  463 root      0:00 [irq/354-bat-low]\n  464 root      0:00 [irq/355-bat-the]\n  465 root      0:00 [irq/356-bat-ter]\n  466 root      0:00 [irq/359-usbin-c]\n  467 root      0:00 [irq/360-usbin-v]\n  468 root      0:00 [irq/361-usbin-u]\n  469 root      0:00 [irq/362-usbin-o]\n  470 root      0:00 [irq/363-usbin-p]\n  471 root      0:00 [irq/365-usbin-s]\n  472 root      0:00 [irq/366-usbin-i]\n  473 root      0:00 [irq/368-dcin-uv]\n  474 root      0:00 [irq/369-dcin-ov]\n  475 root      0:00 [irq/370-dcin-pl]\n  476 root      0:00 [irq/372-dcin-po]\n  477 root      0:00 [irq/373-dcin-en]\n  478 root      0:00 [irq/374-typec-o]\n  479 root      0:00 [irq/376-typec-c]\n  480 root      0:00 [irq/377-typec-v]\n  481 root      0:00 [irq/379-typec-a]\n  482 root      0:00 [irq/380-typec-l]\n  483 root      0:00 [irq/382-wdog-sn]\n  484 root      0:00 [irq/383-wdog-ba]\n  485 root      0:00 [irq/385-aicl-do]\n  486 root      0:00 [irq/386-smb-en]\n  487 root      0:00 [irq/388-temp-ch]\n  488 root      0:00 [irq/391-qg-vbat]\n  489 root      0:00 [irq/392-qg-vbat]\n  490 root      0:00 [irq/393-qg-fifo]\n  491 root      0:00 [irq/394-qg-good]\n  492 root      0:00 [irq/236-qcom,te]\n  493 root      0:00 [irq/250-thr-int]\n  494 root      0:00 [irq/259-thr-int]\n  495 root      0:00 [irq/280-thr-int]\n  501 root      0:00 [irq/228-sig-tx]\n  502 root      0:00 [irq/229-sig-rx]\n  503 root      0:00 [irq/55-pwr_even]\n  504 root      0:00 [irq/54-dp_hs_ph]\n  505 root      0:00 [irq/57-dm_hs_ph]\n  506 root      0:00 [irq/56-ss_phy_i]\n  507 root      0:00 [usb_bam_wq]\n  510 root      0:00 [rq_stats]\n  511 root      0:00 [cdsprm-wq]\n  512 root      0:00 [cdsprm-wq-delay]\n  513 root      0:00 [irq/124-arm-smm]\n  514 root      0:00 [irq/125-arm-smm]\n  515 root      0:00 [irq/126-arm-smm]\n  516 root      0:00 [irq/127-arm-smm]\n  517 root      0:00 [irq/128-arm-smm]\n  518 root      0:00 [irq/129-arm-smm]\n  519 root      0:00 [irq/130-arm-smm]\n  520 root      0:00 [irq/131-arm-smm]\n  521 root      0:00 [irq/132-arm-smm]\n  522 root      0:00 [irq/133-arm-smm]\n  523 root      0:00 [irq/134-arm-smm]\n  524 root      0:00 [irq/135-arm-smm]\n  525 root      0:00 [irq/136-arm-smm]\n  526 root      0:00 [sb-1]\n  527 root      0:00 [ngd_rx_thread1]\n  528 root      0:00 [ngd_notify_sl1]\n  529 root      0:00 [irq/395-NVT-ts-]\n  530 root      0:00 [nvt_lockdown_wq]\n  531 root      0:00 [nvt_fwu_wq]\n  532 root      0:00 [nvt_esd_check_w]\n  533 root      0:00 [irq/275-qpnp_fl]\n  534 root      0:00 [irq/274-qpnp_fl]\n  535 root      0:00 [irq/273-qpnp_fl]\n  548 root      0:00 [mmc_complete]\n  549 root      0:00 [sdhci_msm_pm_qo]\n  550 root      0:00 [kworker/2:2]\n  551 root      0:00 [kworker/3:2]\n  552 root      0:00 [kworker/4:2]\n  553 root      0:00 [kworker/5:2]\n  554 root      0:00 [kworker/6:2-eve]\n  555 root      0:00 [kworker/7:2]\n  667 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm7225/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1113.928939,3.713096463333333,29.095415147513116,7.836360054747707,38.28308014232235,269.333158335\r\n1,576000,2138.579983,3.7128124704861114,46.614525066346474,6.539520630601817,45.87492217642743,140.28933302\r\n1,768000,2851.412875,3.7127771809895833,58.537117827600454,6.159160269161863,48.70793856462252,105.218030845\r\n1,1017600,3778.480295,3.7131292207154085,73.99807703732908,5.875655357029658,51.05813424558313,79.402811428\r\n1,1248000,4633.991875,3.713134515224359,89.10070845411282,5.7686980918853346,52.00480164181266,64.743571538\r\n1,1324800,4919.000459,3.713013631491546,93.37529041060081,5.695198020160424,52.6759559435915,60.992560185\r\n1,1516800,5631.899076,3.713013631329114,106.65512243574527,5.6817794306154745,52.80036010963254,53.272447688\r\n1,1612800,5988.502076,3.71310892609127,124.91703690649747,6.258441463361147,47.935257005484964,50.100783835\r\n1,1708800,6344.775078,3.713000396769663,131.60838397652657,6.2234403041371795,48.20484898048558,47.287567221\r\n1,1804800,6701.813958,3.7133277692819147,142.59719662016852,6.383763786444172,46.99422003004647,44.767807066\r\n6,300000,2544.442937,8.481476456666666,81.59534657066307,9.621576060795078,31.179922925767478,117.918195892\r\n6,787200,6674.082314,8.478254972052845,165.35235451181458,7.43484299799742,40.3505494441248,44.963635504\r\n6,979200,8311.170213,8.487714678308823,212.27941409040844,7.665468503216029,39.13655112849733,36.110277278\r\n6,1036800,8786.574115,8.47470497202932,229.35616696453332,7.834143916845822,38.29390973465622,34.157110404\r\n6,1248000,10571.942066,8.471107424679486,295.7737660951696,8.39753850207086,35.72475433438252,28.391762437\r\n6,1401600,11873.194285,8.47117172160388,354.42710178993997,8.959957501078868,33.48230166983236,25.280113896\r\n6,1555200,13196.674438,8.485515970936214,428.46357169836665,9.74604187640586,30.781726962026337,22.746488897\r\n6,1766400,14985.763525,8.483788227468297,540.7967924165696,10.834449148806579,27.689455724017602,20.034233377\r\n6,1900800,16122.964476,8.48219932449495,629.1690717560684,11.715707176886538,25.606648874927355,18.620920358\r\n6,2073600,17575.722069,8.475946213831019,795.5233715573283,13.589570416707373,22.075753007701564,17.082553326\r\n6,2131200,18094.089264,8.490094436936937,844.8379192253384,14.020091380257162,21.397863385002935,16.595007233\r\n6,2208000,18704.408005,8.471199277626813,923.659541423,14.828546259162477,20.231248212523305,16.054125567\r\n"
  },
  {
    "path": "results/sm7225/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1578.3287256471813, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [585.93029521, 475.875661772, 537.077642687, 666.218628853, 668.081673402, 553.2833187900001, 473.20135419599995, 568.483140951, 669.322051372, 589.7555097000001, 465.20957400000003, 568.874824276, 646.177558212, 680.6006951549999, 545.847244996, 475.945881348, 575.5831504, 719.8157517359999, 588.5187031800001, 461.541283047, 534.8717361120001, 657.89655624, 659.917774098, 530.3317792440001, 474.38850274199996, 584.349191655, 672.0011772209999, 584.953009695, 460.35631096000003, 531.016389618, 664.030834586, 657.4979250949999, 531.8004330209999, 477.03588329599995, 583.1712964, 709.227226318, 602.107949772, 471.437082026, 518.020983, 631.5289874250001, 667.234929934, 546.223128771, 467.33002790999996, 577.133851364, 658.7383017599999, 589.9583455500001, 461.76814188899993, 566.209982619, 655.77395989, 667.3990070519999, 420.79225722499996, 463.819466341, 568.790881868, 665.8592952390001, 614.22954887, 472.714889043, 495.201345256, 642.457446892, 664.978325256, 548.827503348, 473.3410797, 544.6136089799999, 662.1058871959999, 628.7077166759999, 499.509586326, 481.91518522, 636.262329957, 660.144885336, 568.2818869600001, 464.0019265, 544.98866163, 673.0476885, 672.5183614379999, 516.11464708, 461.677444983, 586.8201627, 671.8360815, 561.192799998, 480.70807207999997, 551.831625375, 669.355019437, 626.32166443, 486.25285316, 475.945881348, 633.91137786, 666.317506714, 578.1559904819999, 483.38365022999994, 529.098363444, 671.670985779, 651.742428025, 517.449739215, 475.945881348, 591.9422934720001, 672.33153834, 570.842841129, 468.88253671200005, 535.0822300560001, 682.444363832, 659.06196048, 511.605266622, 459.054542082, 614.8031179620001, 669.947261138, 581.696770301, 471.39078402399997, 542.386483968, 668.0160249840001, 654.195542, 506.716461212, 480.82625266, 593.1787133610001, 669.8814940750001, 568.505210584, 478.713342948, 526.7057685120001, 672.9484184280001, 650.693700432, 529.800783529], \"power_mean\": 573.9794142044874, \"energy_millijoules\": 2869.897071022437, \"energy_joules\": 2.869897071022437}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 269.333158335, \"elapsed_ns\": 269333158335, \"power_samples\": [12.557957071000033, 106.73548971499997, 122.81487489000006, 136.52130144599994, 88.42625795099991, -13.358527924999976, -70.27204686900001, -84.02738010900003, -61.14822269700005, 41.51576042299985, 106.86885685200002, 123.08761613699994, 118.42011787099989, 72.49942961300007, -12.149930654999935, -78.66240664499998, -71.995579238, -28.482939816999988, 54.925065557999915, 115.22304054800009, 127.98937274699983, 126.95234444500011, 32.591944018999925, -21.772738482000022, -58.58286422499998, -68.37010344999999, -9.13178033700001, 53.71375629600004, 161.05136541500008, 129.36965793499996, 88.18685327100002, 30.292901967000034, -55.66181989300003, -63.61626602199999, -55.03259820900007, 3.4851036109999995, 84.89880531100005, 125.88984152100011, 123.22407434599995, 89.23706006700002, 12.005366350999907, -67.70296543500001, -70.64083916700002, -41.66641615699996, 22.219295934000115, 95.9658925949999, 126.47251009499996, 144.88306849499997, 91.75120795099997, -8.468937410999956, -68.86247475300001, -65.90613621300002, -58.73399641699996, 36.80292895199989, 88.62087711899994, 117.042449541, 118.42011787099989, 73.67647123099994, 1.2368637750000744, -55.66181989300003, -64.74858560500002, -29.614423451000107, 41.63629041899992, 105.52837657499992, 128.22961728899986, 134.1735539089999, 76.41456965099997, -20.560059564000085, -85.98941987900002, -75.61709708300003, -14.01567223099994, 42.722873562999894, 124.95671616300001, 140.220502873, 95.47466558500003, 39.907440210000004, -39.989508889000035, -67.97477180800007, -75.54402583500001, -11.51881013700006, 87.50693711099984, 128.57858994299988, 123.08761613699994, 96.75275524200003, 7.313149352999858, -37.54632378100007, -76.755335097, -64.67391069300004, 23.455747018999887, 78.98807238300003, 115.72901708899997, 125.60675430100014, 79.850859303, 21.62327695099998, -67.82649070400004, -68.09829707700004, -34.417640961000075, 30.174749478999956, 103.18056261499999, 129.61761658900002, 130.71998504500004, 82.015787466, -16.961027199, -64.37533891300001, -69.503313633, -8.058903020999992, 47.55528387100003, 137.07241786199995, 137.69886986100005, 96.75275524200003, 39.96754427999997, -38.67650328299999, -78.85579538700006, -73.129324365, -21.154636674000017, 89.99041412200006, 138.21008391500004, 128.16100118999998, 87.01052208099998, 21.73976549500003, -39.85915413300006, -74.36113336500006, -69.503313633, 25.958101946999932, 85.02789340100003, 120.63330799099992, 123.6469469189999, 67.66107791900004, 6.4045002069999555, -68.961006897, -75.05692588900001, -18.82112495900003, 37.74080807099995, 108.076207587, 123.22407434599995, 111.23188114200002, 31.442465802000015, -19.351343649, -77.84153662900007, -62.33028243199993, -4.242980562000071, 57.30882228299993, 128.75051515099995, 129.36965793499996, 84.52898499599996, 35.132204820000084, -56.89576794300001, -66.79146473300005, -64.72365134500001, -5.478097935000051, 95.86751370699994, 137.14198389900002, 122.147678466, 97.8630829110001, 8.521984218000057, -49.61457335900002, -82.84004897100004, -53.41857183900004, 19.86300156300001, 83.2240879709999, 120.56522959100005, 122.473992124, 82.07989272099996, -2.532984929000122, -74.886509725, -80.40154799700008, -52.61801568900012, 41.606119238999895, 99.587766375, 116.032707017, 130.5134237110001, 45.95498278800005, -12.122437409999975, -76.39099719299998, -70.76376993300005, -16.379486229000122, 27.051944337000123, 127.37129868299996, 125.81206650899992, 112.47398814299993, 51.94138818099998, -27.78959837700006, -77.52652379900002, -67.06392411100006, -22.392883805999986, 59.537341234999985, 122.43983377899985, 128.22961728899986, 107.94260285500002, 32.56240131100003, -27.008465493000017, -81.51255797300001, -69.03496932900003, 2.864393454999913, 58.42325987900006, 138.24483668699997, 125.67530889099999, 96.65454481099994, 3.654414554999903, -60.496446873000025, -64.69884495300005, -63.466559958000005, 30.703097696999976, 97.20609244499997, 120.66717263099997, 113.61551247700004, 83.38473027099997, 24.12780051499999, -64.17612056900003, -61.073012841000036, -49.01775976099998, -1.8001320370000258, 82.61354817100005, 132.48096393899993, 136.5561142109999, 88.25155175100008, -8.441265741000052, -60.44634989700006, -70.61632881900005, -61.880220494999946, 35.53598419499997, 98.61091343600003, 127.95497650199991, 118.91630153100004, 61.64921493399993, 0.9559625670000287, -83.50075833900001, -69.40478148900002, -29.720790055000066, 52.475698910999995, 117.60742347099995, 136.59074844899988, 126.88384699100004, 37.370583045999865, -25.398886227000162, -72.90904190100002, -82.792088772, -9.214653440999996, 54.83274625399997, 134.723086223, 137.87287436999998, 87.075101916, 36.28129246499998, -43.567326824999896, -72.88464989300002, -63.41670066099999, -27.249065900999994, 77.78089976799993, 127.40569492799989, 112.440537887, 98.21597292400008, 23.035929384000042, -42.56631315700008, -80.353350508, -87.15023172900004, 22.131788789999973, 60.779356784000015, 128.85370561500008, 129.33520221499998, 83.51334317099997, -2.421394833000136, -60.496446873000025, -70.81304331300004, -46.62912255100002, 45.258342623999965, 88.81549628700009, 123.08761613699994, 142.63769741299996, 62.85787167900003, -0.08397706899995683, -79.82280642600006, -84.05123919900001, -36.91531264499997, 38.04011843899991, 149.04366348299993, 117.042449541, 120.87105871099993, 66.42128021099995, -9.760206709000045, -81.15178124900001, -67.11342747300006, -40.11999761699997, 50.03068555100003, 100.79505763499992, 130.44439293100004, 126.19834419300003, 32.651181716999986, -24.270588749000012, -70.49327171100003, -77.96268583200003, -14.070399084999963, 71.77273758500007, 131.03170565999994, 124.50081313500004, 89.65879047299995, 29.02503397199996, -30.18451182000001, -81.51255797300001, -70.76376993300005, 1.7417576670000017, 57.33976702799998, 123.92016305099992, 138.837604329, 96.81845347199999, 20.53110874999993, -62.91772317199997, -75.49535337699996, -52.66894356900002, -6.713239485000145, 86.26743894099991, 121.67134620599995, 137.83818076800003, 84.89880531100005, 4.7783563529999356, -72.76231265700005, -79.14594060299999, -31.525779768999996, 40.398827978999975, 93.514789619, 134.1735539089999, 102.80029781999997, 55.57114260499998, -44.750229875999935, -66.84096809500005, -65.95575821999995, -10.366542191000008, 65.85774240300009, 133.480923028, 124.46677079100004, 94.46211244300002, 8.436615682000024, -50.79777245399998, -62.23032576999998, -62.280304100999956, 28.347515279999925, 89.86054180400004, 119.4929113259999, 128.2640135339999, 73.67647123099994, -5.991960948000042, -76.269426409, -77.96268583200003, -29.614423451000107, 39.03762643799996, 122.54213364299994, 124.88833735399999, 115.96527814599995, 63.19334577400002, -32.65514472000007, -78.78325908300002, -62.305229026999996, 7.725308668000025, 65.70125773200004, 127.61171961599996, 123.22407434599995, 82.20826802599993, 32.62163900900009, -53.26601351900001, -68.24657818099996, -58.70876458700002, -5.6170637409999244, 66.971110695, 117.81059707099996, 124.46677079100004, 82.14416277099997, 4.8066826380000975, -49.61457335900002, -74.36113336500006, -58.65843032099997, 31.79170210899997, 75.33471708299999, 123.08761613699994, 112.406915207, 66.51504235199991, 16.92994881599998, -71.33325480300005, -80.01572028300006, -54.931086719000064, 88.21911935100002, 100.82814465000001, 173.05650490300002, 137.80330833300002, 39.907440210000004, -10.91378066499999, -79.89504070900006, -79.21835270100001, -15.254176889000064, 19.80495070400002, 111.70221831900005, 132.792140163, 125.74368770000001, 62.95126028700008, -20.614074158999983, -71.504917197, -77.93853069800008, -29.720790055000066, 52.445149731000015, 107.90933030299993, 122.04573217100005, 129.40393695900002, 36.191978031000076, -18.115432059, -77.84153662900007, -76.70678167299997, -6.824117710999985, 60.841443906999984, 123.85190288700005, 134.51492292700004, 94.29879828500009, 30.821335803000125, -59.26274686199997, -62.94271690700003, -73.17823411300003, 25.840813778999973, 85.02789340100003, 124.19337918300005, 127.98937274699983, 73.708026883, 14.512516986000037, -73.79959668599997, -80.30502911800005, -32.08218927300004, 5.335391255000104, 97.10753543700002, 131.4802923699998, 125.74368770000001, 80.96357311700001, -4.86653413099998, -64.15131417700002, -80.353350508, -61.073012841000036, 43.92998670299994, 103.11415029499994, 125.53837549200011, 128.12660494499994, 53.18069210100009, -1.2964775890001192, -64.25079548100007, -66.69233075100004, -21.26266586400004, 34.566806506000034, 100.79505763499992, 127.19967023999993, 129.40393695900002, 35.013101172999995, -29.00233696500004, -71.823916844, -71.94655084500005, -4.27074719999996, 64.55652817499993, 139.52193127400005, 133.96574685299993, 88.15442087099996, 24.186207308999997, -59.26274686199997, -82.62416643, -68.34534761500004, 0.4501671750000469, 89.92547796300005, 121.53512637100005, 128.22961728899986, 87.075101916, 3.5133704209999905, -71.382283196, -69.503313633, -57.451139060999935, 27.110707454999897, 81.43851058099995, 126.84951022099995, 135.65258906399993, 61.618091568999944, -6.824117710999985, -66.54369340699998, -70.22277348900002, -22.473796421999964, 35.29730171099993, 110.4613043789999, 132.89586557099994, 115.99907925100001, 29.05455053699984, -18.115432059, -69.28142633700003, -65.85651420600004, -5.533655693000014, 51.26840765099985, 143.04297041300003, 134.10434419599994, 83.32050637099985, 33.863860634999924, -52.057416249000084, -79.02496395899999, -67.212434197, 7.696803762999934, 89.86054180400004, 132.37723853099988, 124.56907329900002, 103.87652967099996, -7.2838476210000636, -49.717035228999976, -73.129324365, -57.37539484499996, 24.633641163999982, 94.10275415700005, 124.39833515099997, 124.751403955, 65.2127421109999, -9.815431098999966, -65.45915546100008, -73.17823411300003, -23.654011457000024, 58.54711776299996, 117.64134372099988, 132.89586557099994, 113.58200305100002, 24.157078985, -38.75492105100011, -67.039108801, -69.503313633, -5.533655693000014, 60.71726966099993, 125.12775107599998, 136.5561142109999, 90.57534034599996, 25.27787234599998, -54.42392019900001, -80.28099232400007, -63.566406725000036, -9.214653440999996, 88.750678773, 124.92261464900002, 134.1390380109999, 99.00568488099998, 10.911030093000022, -46.706471015000034, -69.503313633, -69.10893176100001, 22.30680307800003, 77.685194432, 115.69538932299997, 124.50081313500004, 64.09761052200008, -35.102766800999916, -66.64282738899999, -68.34534761500004, -40.58930153299991, 46.46569335899994, 106.83547226699989, 124.43255297100006, 120.76911567100001, 36.191978031000076, -26.66102312299995, -77.93853069800008, -74.434382733, 6.432945636999989, 63.286912502000064, 125.093649562, 126.98650512900008, 74.91662415300004, 21.73976549500003, -71.33325480300005, -70.64083916700002, -40.53718642500007, 6.5748810389999335, 92.24221653899997, 124.2618148229999, 135.45147953699995, 74.06025358799991, -24.216930477999995, -72.68888516899995, -82.84004897100004, -36.99408665300007, 42.722873562999894, 133.41171331500004, 124.46677079100004, 97.79726573100004, 37.460228798, -58.12946764900005, -76.53665746500002, -68.37010344999999, 1.6572803149998663, 89.82799025899999, 126.12984673899996, 131.61841452299996, 85.70515017100013, 8.408110777000047, -59.33800574899999, -67.18774614500006, -47.91346551000004, 29.49586560700004, 70.53390613499994, 134.10434419599994, 130.5134237110001, 47.072783351, -10.94133338500012, -76.31810464900002, -71.97100202299998, -17.613892869000097, 26.36891204699998, 133.273293889, 141.656408563, 99.07162101100005, 50.702360071000044, -33.91656935699996, -72.02015645299997, -69.57727606499998, 16.121780380999894, 74.12364619499999, 124.15933683900005, 112.30621959100006, 85.73746362099996, 18.196626530999993, -76.269426409, -65.88126142800002, -50.22894998899994, 18.564779771000076, 91.10032543900002, 125.43571938800005, 130.547762099, 79.78699172699999, -12.204776154000001, -72.71327717700001, -75.69016833100005, -41.796474148000016, 34.20964845799995, 99.55490820700004, 135.27806953100003, 128.09238509099998, 30.145325111000034, -22.554709038000055, -69.30612269700003, -80.01572028300006, -15.33615880900004, 48.610068995999995, 130.859185949, 131.44571750499995, 96.62169569599996, 13.189123870999993, -49.61457335900002, -68.34534761500004, -62.40531416799996, 25.840813778999973, 82.61354817100005, 127.74895181399995, 141.28925619899985, 57.98833714500006, 1.1245610309999847, -67.80173486899997, -75.59269829300001, -29.80063336700016, 25.811416358999963, 112.67413942700011, 124.29585716700001, 119.62865597100006, 57.926606346000085, -17.178649089000032, -72.71327717700001, -76.85256676099999, -26.202531152999995, 47.55528387100003, 121.16074040599995, 124.36429280699997, 119.74985983099987, 39.84749025299993, -29.241866901000094, -74.28788399699994, -74.50763210099996, 6.432945636999989, 94.72202170900005, 132.13533098699997, 130.44439293100004, 95.37646540100002, 13.189123870999993, -60.57165672900004, -76.87678106499999, -47.939233005000006, 30.643826666999985, 84.99557995099997, 135.06990623500008, 130.3755391530001, 65.18144032099985, 18.023038370999984, -78.71072277900004, -71.995579238, -24.941799922999962, 29.407289159000015, 107.7422815110001, 109.72220626899991, 129.30092319099992, 69.95639901899995, -24.35114512500013, -69.03496932900003, -79.17003656700001, -36.46897156200009, 52.41444308100006, 89.63301485099998, 134.03513448299998, 124.09107667499995, 28.936787010999865, -46.11351027300009, -74.092594158, -59.941109557000004, -21.316680459000054, 72.91653305499995, 122.337533915, 122.04573217100005, 95.50745502999996, 20.443957845999876, -30.264177012000005, -78.01112061100008, -67.18774614500006, 24.633641163999982, 88.491242091, 125.29896177, 117.14385822100007, 77.40141159300015, 27.698791820999986, -71.43131158900002, -79.26679304099997, -41.71841261999998, 22.131788789999973, 94.55824263500006, 121.63724753099996, 134.0696503810001, 77.685194432, -12.177282908999928, -72.83574014499999, -74.38546620300002, -32.21462235699994, 52.38373643099999, 116.43417110600001, 120.80315487100006, 78.51458605099992, 48.346065120999924, -56.971512158999985, -68.32071873299998, -57.47630066699992, -4.437919535999981, 86.2026930909999, 132.30814746299995, 121.97753482099995, 88.12198847100001, -1.240563896000026, -56.971512158999985, -75.71456712099996, -59.966152823000016, 36.65357053299999, 77.74894336299997, 125.36734057900003, 111.13136364599995, 74.85323154599996, 14.397602496000104, -83.47677626400002, -70.78840662300001, -28.456357161000028, 21.53594792699994, 100.72905328199988, 116.36662320100004, 131.68738694599995, 72.30980130900002, -14.598321529000032, -74.21463462899999, -78.01112061100008, -32.10859422499993, 41.5761027829999, 128.44112045500003, 144.98857627099994, 100.2801591110001, 53.08872962099997, -38.93780632500011, -81.39229906500003, -76.85256676099999, -16.46129002900011, 76.4463030070001, 138.1751520050001, 118.42011787099989, 100.18124586299996, 18.023038370999984, -43.670977448999906, -73.202751853, -57.55204488300001, 22.190076938999937, 80.19524499800002, 119.28938148599991, 123.12177448199998, 67.59839757099996, 13.303801070999953, -79.96739889300005, -57.123000590999936, -23.76170353300006, 46.7084981669999, 101.70849701099996, 138.14022009500002, 111.19831793699996, 26.51574839099999, -27.922922729000106, -77.93853069800008, -80.52210367000004, 10.053929121999886, 60.779356784000015, 122.57629198799998, 117.042449541, 89.33436965100009, 49.43276552100008, -55.66181989300003, -65.90613621300002, -61.22343255300001, 6.432945636999989, 95.80198393399996, 120.29343967099987, 124.36429280699997, 79.65909239100006, -9.787818904000005, -75.05692588900001, -67.23724950700006, -53.97786526899995, 35.32717532100003, 96.94333001099994, 131.65281208099998, 127.23406648499997, 43.41693839599998, -17.586777488999928, -63.26699459700001, -75.32481209100007, -12.863345115000016, 58.23755255099991, 123.78364272299996, 119.4929113259999, 90.51040418699995, -23.089008229, -67.85124653899999, -73.10493235700005, -49.12046000499993, 96.94333001099994, 110.36078688299995, 132.792140163, 135.24349446300005, 34.95362579599998, -39.989508889000035, -75.51975216700004, -74.40992446799999, 1.6854876499999136, 76.54183022300003, 122.78089171599993, 118.31853107099982, 62.70227730300007, 20.443957845999876, -77.50224415400004, -68.34534761500004, -27.302486881999926, 31.88063479699997, 118.78073114099993, 129.23201175099996, 107.46858096099993, 49.78629767100006, -37.65102857700015, -71.52949441200002, -69.74989728900005, -15.527356369000017, 89.82799025899999, 130.272169985, 118.35227737100001, 55.44815558699986, -5.0054999370000814, -77.67195264700007, -79.26679304099997, -22.50081347699995, 48.610068995999995, 124.88833735399999, 137.66417625899987, 91.75120795099997, 30.086173031000044, -67.900631256, -78.01112061100008, -51.51281747899998, 18.47780757099997, 107.80916963099992, 122.8831915799999, 133.827327427, 68.87363780299995, -29.188546881000093, -67.95001597300006, -76.80388852099998, -29.827293376999933, 69.2322756079999, 132.86123123099992, 130.34102376299995, 90.70966214299995, 19.115504421000082, -32.94589894300009, -69.60197242500004, -72.26542445499996, 14.914726410999947, 95.83483304899994, 120.59926879099999, 117.17771899600007, 50.73279091100005, -19.432473929000025, -74.06813589299998, -69.72520092899998, -17.804399379000074, 64.27529363099995, 131.92788017099997, 124.29585716700001, 103.84332351100011, 16.814559745999873, -32.760799453999994, -74.434382733, -73.202751853, 13.621412720999956, 78.892188927, 120.42942191099996, 123.1559328269999, 71.25939503099994, 7.171213950999913, -76.39099719299998, -70.83755366100002, -16.57026837900014, 27.434131196999942, 112.74150373700013, 119.64791679099994, 114.65574766499992, 51.60489791599991, -34.048408911000024, -85.35403900900002, -82.888132461, 8.818370247000075, 71.58310928100002, 105.86111498100001, 114.5884374389999, 66.452480649, -1.3245063040001241, -75.17879471700007, -70.83755366100002, -27.32926603699991, 50.993054571000016, 128.37220901499995, 131.44571750499995, 102.56878097399999, 33.745147170999985, -37.598676178999995, -74.14138526100004, -70.76376993300005, -8.003582553000001, 80.003121846, 133.273293889, 126.78101276699988, 89.33436965100009, -0.11206545400000323, -47.29623489900007, -73.202751853, -63.14228226800003, 33.032408622999924, 69.20073572299998, 131.44571750499995, 119.08585164600004, 46.951302974999976, -25.53280410900004, -83.69224598400007, -74.48317383599999, -24.941799922999962, 63.162103459000036, 129.61761658900002, 113.38025557900005, 87.992591511, 16.612406401000044, -48.478946028999985, -78.01112061100008, -69.65123849700001, 24.54577777999998, 73.96508319600002, 115.6615882179999, 118.31853107099982, 60.25053181199985, 2.361161812999967, -82.45612079700004, -67.28675286900011, -8.058903020999992, 42.54179969099994, 123.47620877099996, 124.22759700299991, 107.50196554599995, 40.87968874499995, -31.552320828999996, -80.16031275000006, -70.886827041, -33.36878948499998, 78.66857031899997, 129.307509085, 136.41704167799992, 72.34146014400005, 14.36880002099997, -89.63824056900006, -66.07987701900004, -34.52305840500014, 26.875503921000018, 101.74164369599998, 124.09107667499995, 136.24333490699996, 60.25053181199985, -31.605266841000002, -75.203068385, -75.69016833100005, -31.060692518999986, 62.01753411900006, 113.94855770699996, 115.96527814599995, 97.60015171499992, 11.890780124999992, -34.10111763300006, -85.35403900900002, -80.52210367000004, 29.348137079000026, 72.66327454899988, 121.63724753099996, 117.53975692099993, 79.59522481500005, 7.440844333999962, -72.78670466500006, -71.52949441200002, -29.880476679000026, 20.633797239000046, 99.35708171099998, 126.74667599700001, 108.57683943900008, 44.47427703899996, -10.996297529000003, -64.59923578100006, -55.18480028900001, -5.700471789000062, 52.35318725100001, 135.54832929600002, 131.4802923699998, 96.523316808, 34.89415041899997, -56.99667376500008, -63.441694396, -53.97786526899995, 1.5728029629999583, 87.24797687099999, 127.33707882899989, 114.5884374389999, 89.26955213700012, 5.7036782950000315, -60.646866585, -70.83755366100002, -58.859896778999996, 35.35704893100001, 77.05119965900008, 114.52095417899989, 122.13310935799996, 65.02525241499995, -7.671375321000028, -75.154395927, -58.83466494900006, -27.302486881999926, 51.023701745999915, 116.26521452099996, 121.94361101099992, 109.95638875099996, 37.251004208999916, -19.459610128999998, -67.162930835, -70.886827041, 6.432945636999989, 69.16935758099987, 117.8445173209999], \"power_mean\": 29.095415147513116, \"energy_millijoules\": 7836.360054747707, \"energy_joules\": 7.836360054747707, \"coremark_score\": 1113.928939, \"coremarks_per_mhz\": 3.713096463333333, \"ulpmark_cm_score\": 38.28308014232235}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [477.153172608, 469.9979441429999, 548.449957323, 613.716557909, 663.574277388, 657.0455342199999, 622.9066608449999, 565.753933144, 476.60118389800004, 479.544251252, 422.64792267, 579.832304688, 640.326950588, 652.9548688749999, 651.934551177, 608.332849509, 553.93618446, 469.297438344, 477.364365696], \"power_mean\": 559.5458373019474, \"energy_millijoules\": 2797.729186509737, \"energy_joules\": 2.797729186509737}}, \"576000\": {\"active\": {\"elapsed_sec\": 140.28933302, \"elapsed_ns\": 140289333020, \"power_samples\": [158.35026189299992, 144.7775607189999, 121.84148985099989, 52.874098011, -28.056247081000038, -58.48206629899994, -53.97786526899995, 6.4045002069999555, 101.6423736239999, 140.3096295989999, 143.49927868300006, 119.25557601599996, 35.98316915699991, -30.450107931000048, -53.952395344000024, -61.24841664900009, 42.51172406499995, 92.89445365200004, 145.66862541599994, 131.92788017099997, 107.235402475, 44.834226349000005, -53.41857183900004, -58.305831670999964, -33.500925804000076, 30.43683399300005, 118.57720130100006, 136.585097937, 153.23837847099992, 98.64371243400001, 2.220414443999971, -56.09200312899998, -60.06671315400001, 5.080356119000044, 52.108006460999945, 142.79714109600002, 156.826921201, 135.20874117300002, 80.67538838899998, -5.061200516999975, -62.055208892999985, -35.94487776899996, -0.9251881889999822, 88.36144043699994, 134.09877455700007, 139.83631541, 130.3755391530001, 44.47427703899996, -14.680303449000121, -51.56399522900006, -54.05414442899996, 25.547442602999922, 70.28159739900002, 133.273293889, 143.60460833899992, 109.72220626899991, 52.78229300099997, -48.58164627300005, -52.71987144900004, -39.61738222200006, 18.361943921000034, 116.19749297099997, 147.730448732, 139.871306795, 97.63306030499996, -0.25221929300005286, -43.800440937000076, -53.97786526899995, -34.78687301100001, 50.9014273759999, 102.88221803900001, 145.844889222, 150.7157347409999, 67.37877465500003, 8.209014979000017, -60.77217341700003, -46.886862467000014, -6.990577567000059, 50.96256456099991, 135.47888229299997, 133.68873008399999, 133.861843325, 85.67300243099987, -12.34196039699998, -48.65863849699997, -51.51281747899998, -13.028022602999954, 61.79957406299991, 127.06226165099997, 148.29588573799992, 152.0302560859999, 49.2499092810001, -15.970467229000064, -57.501591971999915, -54.02867450399992, 13.506350526000006, 61.276372981999884, 153.769378566, 135.4440695279999, 108.47667876700007, 45.94967466299988, -34.12753974300017, -56.01608079300013, -44.44789143300011, 8.209014979000017, 98.08426973099995, 132.92688949, 139.76651208299995, 110.79642007199993, 14.28254030100004, -47.47621094100009, -42.004593666999995, -5.867287884999996, 50.93191738600001, 130.75563866099992, 139.73152069800005, 138.62837114500007, 80.67538838899998, 8.152005169000063, -53.57099954399996, -64.94767608100005, -10.642239338000081, 70.1869613670001, 114.75069177299997, 145.91528616300002, 154.30404516599992, 56.471520718999955, 2.220414443999971, -53.749027789000024, -57.65308040399998, -3.3984536170000865, 47.220752620999974, 148.79575559099987, 155.51193026099997, 130.272169985, 62.546523014999934, -6.3803197729999965, -62.08026229799992, -48.01640334900003, 1.3475782419999405, 67.83672152899987, 125.78700729699995, 150.75126179099993, 138.69805582699996, 60.1885637229999, -6.3803197729999965, -58.73399641699996, -60.217489106000016, 9.854002503999936, 72.63171889699993, 145.24606280099988, 141.079310535, 120.56522959100005, 50.42754135100006, -30.52977312300004, -56.29441935700004, -48.067806198000085, 21.95677450200003, 105.29561349900007, 148.831222971, 156.68399093099993, 108.37668960300005, 16.52593875599996, -34.18024846499998, -48.04203870300012, -50.51055571899997, 66.594867475, 108.91966307500002, 144.70728242299992, 144.70728242299992, 61.36958346999995, 14.08136609099995, -49.998640959, -58.88512860900005, -3.3426585690000366, 50.9014273759999, 147.4831381339999, 150.64486283099995, 118.08143722099987, 59.41340505699998, -25.693560621000074, -42.773956234000025, -31.220022902999972, 6.858897716999877, 104.05565013399996, 149.97112421099996, 150.78660665100006, 105.72798543900001, 8.209014979000017, -61.905145420999986, -66.20399581800001, -31.19342236800003, 56.87638930800006, 123.10051465499998, 150.64486283099995, 107.168804508, 55.29418469299992, -37.808220353000024, -57.47630066699992, -43.26712521200011, 13.563807771000029, 102.81597600700002, 136.82866848300011, 151.88827497600005, 102.3372641279999, 11.804877228999885, -47.45057558700012, -57.70353331499996, -43.21524778300011, 53.253053296000076, 118.644986496, 154.26833969099982, 155.65462324099997, 77.05119965900008, 6.915642703000003, -54.905806579, -58.859896778999996, -11.903841736999993, 62.91264559000001, 148.76047009499996, 156.75545606599997, 111.97068248699998, 62.63991162299999, -28.109686441000008, -52.5670878090001, -56.54740714100012, 13.420090805999962, 101.57625023699995, 159.70048389600004, 135.06990623500008, 103.51194306299999, 18.97060039600001, -41.45829663799998, -58.96056531099998, -27.569729115999962, 52.138555640999925, 100.46486619299992, 151.74611137099998, 148.29588573799992, 86.65508396599989, 11.776193898999963, -70.56705543900006, -64.97261034100012, -3.3984536170000865, 60.46876156199994, 148.61878245899993, 142.25220393999996, 125.26468447499997, 60.03356384999995, -15.943292679000137, -67.039108801, -54.155762899000024, 11.060581588999867, 102.74956368699998, 140.44947354299995, 135.00057787700007, 101.1583360919999, 20.18250513399994, -47.52761379000003, -58.98579714099998, -45.73205627200002, 54.43280132399991, 107.3020004419999, 147.01742588699994, 147.4831381339999, 79.53135723899993, 0.25356519900003605, -54.829705538999974, -70.54254509099997, 2.525916524999957, 65.26300415699995, 141.34113576000004, 142.65682179400005, 137.489992917, 58.732825090999995, -8.772758156999998, -62.00523056199995, -57.75398622600005, 41.21466751899993, 87.02144903099997, 134.68833293299997, 142.14705298800004, 87.86302823100004, 35.86398111300002, -57.097709286000054, -48.067806198000085, -19.092663314000106, 49.63367289099995, 120.990596761, 143.32378937600004, 131.37674508199996, 69.70456516799993, -8.80028792099995, -47.656319124000106, -54.130292973999985, -4.6328585100000055, 83.49884265599997, 140.13473479499999, 148.260659412, 130.16880081700003, 35.89370152499998, -20.88428598900009, -57.728824619999955, -39.69579999000007, 42.42118712900003, 97.91976753999995, 146.8762134409999, 140.86936487100002, 73.32822045299997, 18.99964077100003, -59.86572158100006, -63.840825118, 1.4320555939999622, 49.57265435099998, 165.44867609699998, 148.1898436020001, 110.79642007199993, 60.00250015499989, -23.384988633000034, -62.305229026999996, -39.64343196000016, 10.945995362999838, 96.71330740500002, 136.72423001100003, 150.680389881, 115.560358242, 15.404343490999963, -47.52761379000003, -67.50970888500007, -33.633062122999945, 62.881563492000055, 112.33800879300009, 136.03481537099992, 144.56654516699996, 66.10815004199992, 2.079667074999975, -41.82253921300003, -54.155762899000024, -9.490802516999906, 65.29436542199994, 163.18053422999992, 165.11044929900004, 112.00430516699998, 45.56121611800006, -34.153961853000055, -63.566406725000036, -50.51055571899997, 16.41040137099992, 99.02731442700008, 151.42638013099997, 136.0696281359999, 108.618644947, 16.64132782599995, -35.60270681700001, -51.691677154000104, -46.31972869499998, 55.7316997129999, 106.43571326199992, 145.703914371, 160.97924037500013, 76.95583601700002, 6.858897716999877, -53.67274862900001, -60.217489106000016, -1.1213747550000335, 73.83829798199997, 124.37505683400002, 148.260659412, 134.89649622900004, 46.61742687099991, -4.103574863999938, -54.07948373900001, -61.47404621700008, 29.141559814999937, 92.9593872050001, 141.79666984999994, 132.51559827899996, 85.35036506100005, 18.941708946000062, -63.21713530000005, -57.779277530999934, -16.842994404000024, 56.845603254000025, 134.02926797700002, 144.496266871, 134.93124951899995, 75.77962510799989, -2.784277793000115, -60.89748024900001, -53.05122996900002, -4.74435444300002, 67.71112276499991, 142.48115212800008, 144.531496351, 134.89649622900004, 50.48855989100002, -7.671375321000028, -56.52218636500015, -40.928250692999995, 19.369196183999975, 85.91200082599994, 135.58314206099988, 142.18216332299994, 110.62877616599997, 46.678089086999876, -58.40650020299995, -57.65308040399998, -30.06668659500008, 32.79482910699994, 107.54213167499995, 153.769378566, 156.75545606599997, 97.53450329700001, 5.731918487000144, -59.58934203200005, -54.18123282399995, -11.958805881000103, 66.500766387, 126.85641335399987, 146.98207745699995, 150.53846387099986, 49.12810949100003, -2.8121036010001035, -70.96061076900003, -54.07948373900001, 21.869267358000002, 87.02144903099997, 134.44559456900004, 134.89649622900004, 103.445701031, 44.71298356800003, -60.74718932100001, -68.34534761500004, -19.146915198999977, 47.88981512099997, 114.75069177299997, 147.44773022900006, 150.64486283099995, 88.13449582500004, -2.7563085530000535, -59.765161250000006, -58.96056531099998, -16.842994404000024, 66.46934564699995, 143.68743414300002, 144.56654516699996, 132.61932368700002, 43.02471502599997, -53.64727870399997, -55.36228250900001, -20.32629860899999, 38.76762046199997, 119.58001295099996, 134.86192116100005, 137.31598840800007, 78.09980830199993, -4.047898461000045, -56.09200312899998, -58.96056531099998, -8.308058445000029, 83.36999216099991, 147.44773022900006, 139.76651208299995, 121.60314885600008, 44.202131871000006, -35.47116500100003, -57.804568836000044, -51.76831255400009, 26.640300387000025, 99.126227675, 134.723086223, 151.74611137099998, 87.70119887099986, 11.633071437000012, -60.797286297000085, -63.840825118, -13.165206846000046, 56.81465850899997, 141.41117637699995, 138.34945327900004, 133.68873008399999, 76.8920421570001, -11.271259545000134, -59.81550596000005, -57.804568836000044, -15.636712389000081, 82.13145617099997, 148.51256220300002, 145.73920332599994, 115.52673047600001, 43.054790652000065, -19.784687888999997, -54.206572134, -60.26770472700002, 33.85249040999997, 94.23102078900001, 140.4845244029999, 128.75051515099995, 87.83076215099993, 35.86398111300002, -57.22390641300001, -56.64868025700014, -19.25555843399991, 41.09413752299997, 130.41042193199996, 129.65213197899993, 155.51193026099997, 88.97762338500002, -5.200166323000076, -49.998640959, -56.598108701000115, -17.99476611900002, 73.67957202000002, 125.58133884900008, 154.1257008959999, 146.38224179099996, 53.959411970999895, 6.120629402999953, -54.02867450399992, -52.46510112900012, 15.833011075999934, 67.67964235499994, 143.792941919, 142.23550317000002, 94.91825392600003, 55.04805257599992, -39.068457846, -53.621939393999924, -54.206572134, 20.517308694999997, 97.88696854199998, 145.56293952, 151.78169789600008, 64.8377627189999, 8.095141538000007, -65.85651420600004, -71.20647230100002, -7.15703742300002, 49.51163581100002, 138.89334244500003, 157.8241924659999, 131.1352529479999, 61.08995200599986, -10.090986645000044, -63.441694396, -61.3487393850001, -9.601347291000025, 83.20905309599993, 154.54792730100007, 145.703914371, 119.18761656599997, 36.98222045600005, -15.008231129000023, -59.01102897100003, -66.25374538799997, 35.08864603500001, 94.23102078900001], \"power_mean\": 46.614525066346474, \"energy_millijoules\": 6539.520630601817, \"energy_joules\": 6.539520630601817, \"coremark_score\": 2138.579983, \"coremarks_per_mhz\": 3.7128124704861114, \"ulpmark_cm_score\": 45.87492217642743}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [516.9667249450001, 561.628187688, 638.8681222419999, 663.574277388, 656.5479913000001, 590.074358125, 516.3429502, 470.252108676, 472.11099534, 513.3159578520001, 575.027507601, 642.457446892, 663.7372947810001, 652.858628595, 576.829794752, 521.20261942, 473.69039346, 467.399000062, 533.796283433], \"power_mean\": 563.5095075132632, \"energy_millijoules\": 2817.547537566316, \"energy_joules\": 2.8175475375663157}}, \"768000\": {\"active\": {\"elapsed_sec\": 105.218030845, \"elapsed_ns\": 105218030845, \"power_samples\": [84.54402020100008, 141.16576413799987, 154.09017852599993, 142.041902036, 72.08867652299989, 1.8825050359999977, -46.886862467000014, -36.15537171299991, 21.665183916000046, 78.50865510300002, 153.66244524599995, 150.39653786099996, 115.560358242, 53.77513077100002, -37.939168638999945, -46.964210931000025, -12.041322745000116, 51.954630681000026, 143.58192636699994, 151.63953429100002, 140.83431401099995, 88.88031380099994, -0.4764942440000368, -47.68195447800008, -35.07697422900003, 1.2350382079999918, 95.37578772400002, 154.512345761, 154.01876757599985, 126.36967587100003, 36.92235428599997, -9.048907233000023, -38.59404465099999, -30.12000661500008, 49.450460410999995, 125.44434394099994, 150.39653786099996, 163.64996813999994, 75.55725272999996, 17.56023569099989, -50.28024668900002, -44.57735492100005, 15.631006045999925, 78.47680340699992, 160.54741481500002, 157.680840107, 123.78364272299996, 75.55725272999996, -24.619712358000015, -40.79789593700002, -25.371479908000083, 24.135798804999922, 112.06906974000003, 157.1793828819999, 157.680840107, 111.83636419099992, 21.18678136699998, -30.76863228600007, -53.10215784900004, -18.130902098999968, 72.41001604299993, 126.58177256699992, 160.09577886700004, 166.24580037099997, 68.276640079, 13.908846650999976, -34.681320069000094, -44.603300840999964, 25.253920670999946, 83.3056496160001, 151.000254306, 160.023957408, 109.4211881409999, 63.47404595800003, -37.991655619000085, -40.98049977300002, -9.711750158999962, 43.38585170099998, 125.3758464870001, 153.59121740099988, 175.837575249, 102.20484737100003, 23.5725606069999, -31.923215129000027, -41.03261488099997, 2.3566055809999398, 79.71493711800008, 145.95896700100002, 156.36212225099996, 146.77034942499995, 56.25564060099998, -5.4225401769999735, -44.52559613699998, -53.076628449000054, 40.943591071000014, 104.79659133899997, 151.319803051, 143.14811971000006, 106.96883940400005, 51.42132919599999, -31.976161141000034, -30.14652990700006, -6.0062536909999835, 44.65243999699999, 126.61599242099999, 148.08380146599995, 160.13178191199995, 91.85100830399995, 4.241173778999951, -47.88769801500007, -33.791680026999984, 10.339580515999842, 100.06850072099996, 151.99314487100003, 160.0597758219999, 124.27240072999996, 62.173128495000014, -10.339071597000043, -45.835336549999965, -47.70772197300005, 47.00794012099993, 115.79203189599991, 148.9019758469999, 158.24261550899996, 106.83547226699989, 48.70149711599993, -48.915191352999955, -42.773956234000025, 3.6474838980000186, 57.95915055499995, 136.2717825210001, 148.65424983899993, 144.46103739099988, 82.74199597099994, -0.6728248530000656, -42.05659013000002, -43.34500803600008, 32.61660632299993, 94.06740986599993, 159.59265939199997, 153.9475397309999, 110.66233937100003, 58.60896720700009, -40.30246748100001, -42.212713185999974, -24.27292984500002, 39.70764853500009, 128.99757858300006, 150.00646907099997, 161.44731339100008, 99.71970716300007, 4.354333655999994, -36.81023567200009, -36.207961401000034, 15.688700581000035, 91.65532041599988, 139.9247891309999, 149.14988373899985, 145.56293952, 60.903690636999954, 0.7030648710000378, -51.8704056040001, -45.86122299500005, 37.35167383099997, 98.82965730299998, 156.00461286099994, 157.53767176899999, 105.66150611699993, 50.152722631000074, -42.85183905800011, -34.99784339700011, 2.3847274329999664, 60.40651483199997, 137.51269968099996, 151.39097610099998, 146.84104628499995, 86.36422568599994, 13.880044175999956, -40.61542607299998, -42.29077471400001, 9.454002478999996, 102.41818323900009, 156.85697808999987, 141.90182080199997, 117.74293052099995, 30.791700288000015, -24.72702890000005, -47.09321333500009, -26.631123429000127, 68.63414999400004, 113.30867797499991, 161.33931076700003, 162.47459563200005, 68.24515966899992, 10.253855739999949, -45.525362964999886, -50.79216144899999, 26.49331706099997, 80.70072336599992, 154.44081586099992, 163.75832758799993, 118.95028125599993, 68.30812048899998, -39.30371115000003, -42.2387782510001, -7.295706463999977, 51.80141237099997, 132.68456653599992, 147.801082963, 155.11924945099997, 94.82005374200003, 6.745261871000025, -54.981907619000026, -49.530997308999986, -3.7333673370000042, 96.54910197899994, 165.339960409, 145.49254257899997, 121.330884051, 32.05850017299997, -17.505151808999926, -48.32495258400013, -38.6726405390001, 66.43792490699991, 124.10136581699999, 162.40253688299993, 163.64996813999994, 58.57796298700009, 11.461265644999912, -40.771905369000024, -37.44042773599995, 37.29184251899994, 95.17902994799988, 153.44857860599996, 145.4574345929999, 109.32084876499994, 47.707315120999965, -44.1112597529999, -43.52677907900011, 4.881946935000087, 59.0723416159999, 140.8854216169999, 148.9019758469999, 152.77589447100002, 104.5537816939999, -2.9796321770000986, -36.967783688000054, -50.740996279, 3.5626503059999095, 89.14574326200011, 138.61394969399998, 160.023957408, 152.77589447100002, 63.349236915000006, 4.212847494000016, -36.15537171299991, -42.36883624200004, 34.8202431389999, 103.7236761559999, 143.93367917499984, 151.60394776600003, 93.61264383699995, 40.428939684000056, -39.30371115000003, -45.602889549, 2.2436832989999402, 57.40149782700007, 143.51164807099997, 154.29812288099993, 137.002851825, 89.21067942100012, 1.7699650019999353, -49.14616802499995, -49.55670532900001, 22.335872232000042, 99.93649201499989, 161.57339816700005, 149.14988373899985, 122.96399432700002, 64.61897123300002, -10.421766581000043, -35.02426550700011, -34.49677179300011, 55.361710017000064, 122.96399432700002, 162.11411664599996, 160.619354919, 73.04324363699993, 11.43272940899999, -62.455292498999995, -44.1112597529999, 21.577676772000018, 75.841406355, 160.51135229500005, 152.63349327100002, 113.98212630299997, 74.15542398000002, -34.417640961000075, -45.96450327299999, -33.870988979, 52.85388254600002, 126.54737632199999, 167.05423272899998, 158.88830948700001, 63.44280364300005, 21.099452343000053, -44.42194551299997, -31.512083135999887, 27.669845220999946, 74.63559922499996, 159.37701038399996, 152.63349327100002, 108.10948013900008, 56.13241629299989, -50.152267998999946, -39.82645151100007, -14.508635975000061, 50.59542712099994, 139.81981629899997, 195.96254729099996, 145.4574345929999, 92.30755752899995, -3.091365705000044, -49.14616802499995, -45.96450327299999, 4.62705736700002, 115.5892145360001, 155.57545462100006, 156.32648154100002, 124.85406005899995, 34.358413346999896, -15.199428689000001, -49.55670532900001, -31.512083135999887, 54.18666920700002, 112.10275189499998, 162.33047813400003, 157.60925593799993, 66.84574999900008, 12.644038670999976, -38.541692253000065, -42.34277117699992, 19.16594356199994, 87.90738458699991, 155.89732330100003, 145.49254257899997, 99.68667962300003, 47.646533870999974, -51.33408902899998, -36.313140776999944, 8.333801175000076, 62.600863308000044, 152.985322956, 169.57747176700013, 127.30268258399997, 68.24515966899992, -16.35217160400009, -42.030658732000006, -30.19984992700006, 28.75782965499991, 107.24164965900002, 160.58329239900002, 115.18923944300002, 116.43417110600001, 17.589067971000077, -44.137072616999944, -44.70681840899999, -20.59724312900005, 69.84001659900002, 124.13564311200003, 175.39701032100004, 147.94253300399998, 65.79518069999995, 6.660071454999979, -56.67403103700008, -39.930919017000065, 35.96633760199995, 95.1461808329999, 148.51256220300002, 153.87631188600005, 104.42088974699993, 54.77125274499997, -45.42194993600003, -43.57865650800011, 5.80831316900003, 63.838031702999956, 150.644936541, 159.88012985900002, 133.307809787, 64.65027302299995, -13.96094537700003, -37.282879720000096, -47.118907859000046, 22.72513658299988, 130.20350466299988, 145.99413415699996, 152.63349327100002, 106.86885685200002, 12.615295671000013, -38.14871281300009, -46.01627616300004, -20.624240168999904, 81.8423660709999, 134.99239621799995, 157.39431940999998, 158.67301671899997, 64.52538690699987, 1.7980276839998623, -44.68100554500006, -46.01627616300004, 51.64819406100003, 115.5892145360001, 152.31341047099988, 154.976373061, 93.514789619, 35.53598419499997, -37.02025473100002, -39.98328704700009], \"power_mean\": 58.537117827600454, \"energy_millijoules\": 6159.160269161864, \"energy_joules\": 6.159160269161863, \"coremark_score\": 2851.412875, \"coremarks_per_mhz\": 3.7127771809895833, \"ulpmark_cm_score\": 48.70793856462252}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [476.9654856, 487.69074263699997, 536.003259396, 614.5309727939999, 661.7802787039999, 661.158269908, 626.5436555719999, 546.330583252, 469.859287359, 467.238025673, 474.76197721799997, 570.983959236, 654.2450872649999, 656.128745, 671.40679869, 600.692860856, 540.206938692, 468.99774769600003, 482.88475014], \"power_mean\": 561.4952329309474, \"energy_millijoules\": 2807.4761646547367, \"energy_joules\": 2.807476164654737}}, \"1017600\": {\"active\": {\"elapsed_sec\": 79.402811428, \"elapsed_ns\": 79402811428, \"power_samples\": [-15.827909949000059, 54.063524108000024, 133.64769467500003, 163.07217478199993, 179.0214162210001, 134.51492292700004, 30.67346218199998, -26.122152897000092, -32.77089575299999, 4.598671607000142, 97.45905996500005, 163.77212904700002, 168.26122722399998, 164.74878130700006, 82.51712977099999, 16.150553490999982, -24.245972264999978, -26.711501685000144, 76.98346455399997, 121.58745169299993, 169.35897167100006, 171.88616806799996, 101.97333052499994, 57.12347119499998, -34.60218923700006, -29.14969860100007, 21.577676772000018, 81.77797707100001, 177.041302663, 173.09316256299996, 155.01213801099993, 83.72412426599988, 10.053929121999886, -20.27216536900005, -24.380621921000056, 35.96633760199995, 137.26853458699998, 173.53060356699996, 159.84431144500002, 141.621478281, 47.646533870999974, -0.8129786920000015, -20.678512569000077, -15.964499689000036, 76.98346455399997, 149.226331491, 174.1534768109999, 186.26627124599997, 89.89309334899997, 25.840813778999973, -25.264025427000092, -23.094080295000026, 28.816830062999998, 84.31832318099998, 184.42730351099988, 169.39545071099997, 136.93310695499997, 72.88497740299988, 1.601010297999892, -31.485482600999944, -21.938334294000015, 44.28886729300007, 131.13271124699997, 173.82377576800013, 170.75206361499988, 112.60694784600003, 20.982963799000004, -23.78866111299999, -26.765041311000118, 15.371158165999987, 88.95076785399999, 158.8380724949999, 175.61729278500013, 164.531706171, 76.478199937, 31.79170210899997, -31.512083135999887, -37.519066856999984, 62.44497216700006, 122.69060271899991, 178.68938769300007, 168.29764678899994, 124.7173024409999, 54.67893344099991, -31.034228396999993, -36.444817785000055, 27.434166801999936, 80.50824280599988, 172.178412955, 174.1534768109999, 154.83349667099992, 77.65323802700004, -4.410009770999977, -32.45308357299996, -19.581209208999894, 38.407766606999985, 137.23378181500004, 174.69957491700006, 171.81315938099988, 134.37626621099992, 34.20964845799995, -18.984020078999947, -31.59174832799988, -2.6953260730000466, 79.2347937269999, 144.36546764699995, 179.05837145100008, 181.58315556699995, 74.09203137299994, 16.179474916000004, -33.870988979, -28.02415077699993, 54.00203059900002, 107.00788425500002, 171.374731893, 170.6062835309998, 112.64063000099998, 55.97830671500003, -24.99559613300005, -24.27292984500002, 23.90154659799998, 82.88700956100001, 163.59129505099997, 163.14435256499996, 162.18617539500008, 87.31267535099994, -0.8129786920000015, -26.389988661000075, -31.671413519999987, 31.02100290699991, 119.13837615099999, 188.98867391099998, 159.59265939199997, 139.13774381100006, 49.87790391100009, -9.242183204999947, -34.003125297999986, -8.695586144999993, 79.20271837199994, 135.95846710499995, 168.11573573099986, 175.39701032100004, 93.44932967900002, 33.09176535500001, -22.770429831, -31.538683671000058, 18.991641753999943, 87.6804399749999, 180.5838638229999, 180.19121789099995, 139.13774381100006, 83.62752774600006, 4.043325573000061, -31.379353286999958, -24.407441257000073, 41.81765923199998, 137.23378181500004, 174.77293953899994, 168.22480765900002, 128.3034742709999, 43.89985190699997, -5.6449140310000985, -17.19738415400002, -6.451001399000006, 86.37396527099997, 133.68244796500005, 166.80027148499994, 175.39701032100004, 105.428572143, 41.42540160699991, -38.436852875, -34.05595266500006, 26.169893318999925, 85.29791134099992, 175.79494405000003, 176.5303434289999, 163.43324924399997, 93.31874549099996, 6.347755220999943, -29.9868432830001, -30.386059842999998, 27.49304856499998, 133.543613027, 187.93262318100005, 175.32364569900005, 144.00395747099992, 41.45557278699994, -15.308784709000065, -32.90346494500011, 2.0462505029998965, 79.2347937269999, 153.94120702099997, 176.5303434289999, 174.08023083399996, 23.338783284999977, 18.47780757099997, -30.19984992700006, -36.444817785000055, 36.99237834300004, 112.97178077699994, 174.84649275900006, 159.664480851, 122.2352340509999, 63.131021360999966, -24.968698028000063, -20.813915249000047, 9.368277702999876, 79.20271837199994, 168.55792936699993, 169.2497216229999, 158.529611091, 90.93743757499988, 2.8362716029998865, -33.71237107500008, -31.61834886300005, 38.28771257999995, 122.7248205389999, 175.83178013499992, 169.2497216229999, 133.03079301799994, 46.192479470999956, -27.489666308999972, -30.33287654100002, -8.750906613000097, 85.2333315059999, 144.4005756329999, 185.02220207099992, 159.80830839999987, 79.97104649100004, 17.18407847100002, -36.418455344999984, -29.229720616999998, 47.90917226099998, 114.21091412699991, 169.03122152699996, 168.22480765900002, 105.22913417699999, 46.25314168700004, -26.3364490350001, -44.888173736999875, 18.933590894999952, 87.61562246100004, 170.8998939029999, 173.05650490300002, 131.85878910300005, 72.69499285899997, -26.148853893000137, -37.59784086499997, -8.778637953000043, 65.38828838999996, 152.84268416099985, 174.1534768109999, 174.04370199200002, 110.72888483899999, 29.348137079000026, -24.434398837000117, -34.003125297999986, 15.948548460999973, 102.21928685499995, 168.04308336799988, 175.36023371099998, 158.90989395400004, 81.1817599709999, 21.315155339999933, -29.20313796100004, -35.94487776899996, 56.28954999000007, 118.644986496, 168.92197147900004, 168.70365845499998, 114.98677949099988, 51.40301327099996, -29.880476679000026, -17.940395588999877, 17.753138520999983, 90.83977175099994, 166.07437491899987, 172.178412955, 157.25096705099986, 96.12213411899995, 1.4883256109998229, -22.71653427000001, -22.12745480400008, 39.007574403000035, 128.58410191100006, 179.41542763799987, 180.228232596, 132.26895242400008, 35.35704893100001, -29.880476679000026, -31.724478177000037, -5.756172368999955, 90.09122341499994, 150.50295543100003, 181.250058319, 178.02552015100002, 88.42625795099991, 26.728520595000077, -32.66500372899998, -21.451925229000153, 31.050697897000077, 107.07477237499995, 167.53414329299994, 173.237431366, 125.88984152100011, 65.48205053099991, -23.92317252500004, -21.42484850400001, -2.7513835030000564, 61.14601371899994, 137.05948054100008, 167.27976663899994, 170.38742602699995, 121.02452057100004, 18.332903545999898, -29.93365998100012], \"power_mean\": 73.99807703732908, \"energy_millijoules\": 5875.655357029658, \"energy_joules\": 5.875655357029658, \"coremark_score\": 3778.480295, \"coremarks_per_mhz\": 3.7131292207154085, \"ulpmark_cm_score\": 51.05813424558313}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [587.6220787200001, 494.28184454399997, 463.86505208399996, 485.01120887999997, 527.4978330929999, 614.3495426820001, 715.454788554, 645.283776285, 624.5258312999999, 536.451622278, 468.74423616800004, 475.571457102, 524.90409155, 582.7696314000001, 686.36450776, 666.874263497, 625.860225991, 582.3900096699999, 478.5251810550001], \"power_mean\": 567.7024832954211, \"energy_millijoules\": 2838.5124164771055, \"energy_joules\": 2.8385124164771054}}, \"1248000\": {\"active\": {\"elapsed_sec\": 64.743571538, \"elapsed_ns\": 64743571538, \"power_samples\": [-12.371390201000054, 17.78217889600012, 105.63585284599992, 169.65796347299988, 176.56699061099994, 179.0214162210001, 93.25328555099998, 40.158397595999986, -13.57690056599995, -16.155837629000075, 88.82089553600008, 137.05948054100008, 183.59285742600002, 194.60494974199992, 110.05940651399999, 44.925119525000014, -20.570106929000076, -19.608404884000038, 56.19687444600004, 115.31884927100009, 188.91388477099997, 191.02258534700002, 149.90025230100002, 78.73243789499986, -5.8117301270000326, -1.5138919299999998, 9.225452005999955, 79.10665679600004, 166.00184120099993, 181.065067667, 192.116646413, 136.6199703719999, 36.53399169599993, -14.289447187000064, -11.165879836000045, 42.96256655100001, 122.55408239099995, 187.67118047100007, 194.45442152399994, 158.31431832300007, 78.66857031899997, 24.31152557300004, -17.279187954000008, -8.944599357000016, 92.40398479099997, 151.49501487099997, 182.34536739299995, 195.73620524299997, 104.122010811, 44.86457595400009, -16.924798204000012, -6.478851688999953, 41.757352950999916, 104.397544509, 143.089797631, 187.286612171, 155.93314772600002, 100.46486619299992, -8.169686169000101, -3.8451008649999494, 3.166808630999981, 70.76144074799993, 170.68068015900008, 180.91696107100006, 176.420024077, 132.96158330499998, 35.20798727700003, -14.207427249000034, -12.453907064999953, 30.783899833000078, 118.90045087099998, 181.64116095099996, 187.17468857099993, 179.96969911799988, 82.45290587099998, 18.274971721000043, -6.478851688999953, -11.303657609000084, 88.78834399100003, 144.25978175099988, 188.38103006099993, 188.53056300600008, 102.71652781499995, 47.281690121, -20.570106929000076, -13.659239309999975, 50.228446846, 104.43069872099989, 127.27174632699996, 196.86722345400005, 157.07191461799994, 93.12270136300003, -15.527356369000017, -20.813915249000047, 9.139727229999835, 64.63690464599995, 146.52875890999996, 186.80173767099996, 195.62303421899992, 137.75668563699992, 39.94807891800008, -16.62489762900009, -18.538890728999945, 26.052216020999936, 128.54958652099992, 171.81258830699994, 189.62486225099997, 169.2134296549999, 83.43433470599996, 18.332903545999898, -13.768930307999995, -7.711856104000049, 105.63585284599992, 146.59957471999996, 180.9909193069999, 199.359719875, 119.64791679099994, 52.199811470999975, -7.240267351000057, -24.622687165000116, 38.13776063099999, 98.43400431100008, 186.57789047099993, 186.0800925609999, 147.30628018799996, 85.91200082599994, 6.120629402999953, -22.07344020900007, 11.553868271000056, 64.6057042079999, 145.39447976500003, 179.52628193400005, 195.73620524299997, 136.6199703719999, 37.59115288699991, -17.967650738999964, -14.919298409000021, 49.023173771000074, 120.03758251099998, 175.50082207900005, 189.69965139099997, 160.763420063, 91.85100830399995, 20.691966742999966, -6.451001399000006, -16.210445449000076, 93.51099820700006, 147.8046696749999, 190.722760085, 188.41846128600002, 118.4414566559999, 52.04659316100003, -3.5938080010000704, -12.563835353000059, 53.725072686999965, 109.32239295599993, 201.08838584700004, 186.04278028599992, 154.5836922509999, 85.87962790099994, 2.5540383769999835, -13.522055066999883, 6.729537319999963, 70.63513011399994, 152.48636183099984, 183.18449379100002, 190.79766825900003, 146.20586218899996, 46.10140817499996, -10.78001711100012, -24.568910249000055, 17.637274871000045, 105.56925487900003, 170.75368884599993, 197.96405198399998, 189.62486225099997, 102.74956368699998, 36.444345943999906, -7.462166320000051, -14.946732179000037, 62.10194756999999, 105.56925487900003, 192.60880117499983, 184.72475279100001, 147.412322324, 83.33773818599991, -4.688678040000013, -9.932697800999904, -4.207983825000042, 60.95923650300006, 152.52206730599994, 191.4408264289999, 196.86722345400005, 144.96429406799996, 58.082849442999986, -4.6328585100000055, -12.563835353000059, 12.672703506000062, 93.380008578, 166.9525508549999, 182.382501048, 199.208047017, 111.06459436700004, 45.91926558299997, -13.384729832999938, -27.05971570500003, 47.695944351000094, 110.35972505500001, 194.83103083699996, 195.58524594900007, 154.65503874099988, 109.95888901800004, 9.825378648999845, -8.806227081000088, 0.7001114139999345, 65.68527733499991, 163.44651634299998, 169.80393093500004, 203.995166209, 137.75668563699992, 44.86457595400009, -3.3984536170000865, -12.481318489000046, 6.729537319999963, 112.769677065, 162.16930308000008, 193.13520577499992, 183.48146818600003, 95.50684726999998, 38.76762046199997, -12.316426057000058, -5.440810424999995, 63.338005672999884, 112.87072892099991, 188.91388477099997, 196.791527964, 147.27105386200003, 94.23102078900001, 4.9669586470000695, -11.193492031000005, 6.672527510000009, 46.39965887099993, 162.27766252799984, 181.826448368, 207.65597614499995, 140.09968393499992, 50.68721148099996, -11.848877592999997, -13.768930307999995, 33.16814134200001, 105.60263946399994, 174.22242197699995, 193.13520577499992, 194.22843571599992, 93.12270136300003, 29.082559406999962, -13.631746065000016], \"power_mean\": 89.10070845411282, \"energy_millijoules\": 5768.698091885334, \"energy_joules\": 5.7686980918853346, \"coremark_score\": 4633.991875, \"coremarks_per_mhz\": 3.713134515224359, \"ulpmark_cm_score\": 52.00480164181266}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [677.4117503250001, 546.062016019, 516.83963655, 474.20176550400004, 506.702732056, 557.3757725520001, 649.095861744, 652.0246010999999, 654.5669653949999, 607.2871870729999, 514.523070992, 463.728177668, 456.078518316, 530.833504344, 604.308512249, 668.4665723520001, 660.7033829330001, 555.6160383399999, 529.072432046], \"power_mean\": 569.7314998714737, \"energy_millijoules\": 2848.6574993573686, \"energy_joules\": 2.8486574993573686}}, \"1324800\": {\"active\": {\"elapsed_sec\": 60.992560185, \"elapsed_ns\": 60992560185, \"power_samples\": [-11.27604541400001, -11.38635259299997, 64.4804199749999, 129.651193358, 190.310476279, 184.76200559099993, 147.34168809300002, 82.19584517099997, -14.31688095700008, -12.481318489000046, 40.40159289899998, 93.34738728400009, 171.81258830699994, 179.78481541199983, 176.19938537299993, 119.58001295099996, 39.97803620400009, -14.508635975000061, -13.768930307999995, 48.87039213100002, 140.4999281439999, 205.53168848699988, 181.0279934869999, 150.85809070100004, 62.881563492000055, 1.3757855769998741, -8.944599357000016, 6.615663878999953, 107.816101753, 164.61525120800002, 203.995166209, 207.77092953699992, 108.71898432299986, 54.43280132399991, -5.106465752999952, -6.562259736999977, 69.39843579900003, 126.06671084699997, 196.14947493600005, 195.58524594900007, 155.86149887599993, 97.82103241200002, -5.978546222999967, -8.861547549000079, 9.02537859899985, 80.12328168600004, 160.99637245200006, 187.783282191, 203.995166209, 146.24121061900007, 55.63920228899997, -4.772264208000024, -0.5612792609999815, 41.60650973400004, 125.96369850299993, 188.764114231, 187.06276497099998, 176.383187992, 99.060341967, 20.691966742999966, -2.947153297, -6.562259736999977, 92.14264856900002, 152.52206730599994, 196.60267742100007, 186.0800925609999, 123.20299263899994, -59.11169750299996, -3.677572289000068, -18.64777155899992, 57.27832968300004, 109.08779475899996, 188.764114231, 194.41669272899992, 161.64545691600006, 98.92840117899993, 2.441261053000062, -5.385134021999988, 25.90523269500011, 86.21213591100002, 169.40275463699993, 184.50180911099994, 179.96969911799988, 121.99665114899994, 18.21703989599996, -2.611383665000062, -2.919124581999995, 52.423945670999956, 148.87178975099994, 189.898192473, 196.75387431000001, 165.3762610240001, 60.437638196999956, -2.4156138710001187, -10.181317112999977, 27.22800494799992, 100.64984288699998, 159.71945634299993, 189.58737155099982, 190.83521862899988, 106.23574815799998, 35.08864603500001, -14.837137784999982, -12.673904937000088, 87.55063832099995, 139.26008102699996, 196.41382687800012, 182.308233738, 131.61670394700002, 74.82629741699998, -2.3597001780000255, -4.29174811300004, 43.955644194000115, 96.93258532700008, 188.689325091, 202.78894336400003, 171.374731893, 108.55180930099993, 24.253000133999876, -13.604393811000023, -1.822287992999918, 57.24732546300004, 139.15510819500003, 189.93555027699995, 197.96405198399998, 153.27041744099995, 73.67957202000002, 13.333831086000032, -9.083113844999957, 19.818826038999987, 95.76081467699998, 156.0690001679999, 199.05656886099996, 190.722760085, 96.48345356100003, 47.068721370999924, 4.4004079910000655, -83.752032498, 81.32807957099999, 146.316856217, 192.75909210299994, 185.96834708099993, 138.71874440600004, 62.81907886200008, -13.275038834999918, -18.756512618999977, 36.75289928699988, 104.23108985699992, 207.788025953, 202.63655772100003, 166.58248386899993, 103.82330246800007, 23.046599168999933, -23.336679593999975, 21.081852903000026, 62.008380842000065, 165.7476934949999, 192.75909210299994, 207.541022753, 141.09572352100008, 34.93958438099992, -14.590655912999978, -5.524396593000006, 58.42111912799987, 133.058136299, 189.785733929, 190.68520971500004, 155.75420931600001, 61.58177391899994, -6.03410398099993, -7.822734330000117, 4.116987095000013, 107.816101753, 157.23803880899993, 203.995166209, 199.17027482900005, 96.51619338899991, 41.064121066999974, -8.972330697000075, -13.87876229699998, 88.56081703799998, 152.415133986, 180.805928655, 181.0279934869999, 131.51297853899996, 59.19627779399991, -15.773302129000058, -18.756512618999977, 54.80672547300003, 104.23108985699992, 140.4649978619999, 200.14872949800008, 160.51135229500005, 96.51619338899991, -9.628877054999975, -6.617817495000054, 24.725822403000052, 87.25887619500008, 183.60927023099998, 190.38538445300003, 72.37829773299995, 115.859579801, 36.23527485799991, -8.640123464999988, -3.0870093980000775, 61.977138526999966, 144.08369891400002, 194.75545429700003, 194.22843571599992, 155.68274418099998, 43.38585170099998, -9.684220395000011, -6.6456677850000005, 25.817012487000056, 119.83334019100005, 177.61977067700002, 193.05986713499988, 173.750341498, 102.55066730300007, 27.758243548999985, -9.00006203700002, -5.468720189999999, 74.06366791800008, 137.9851814220001, 189.138252191, 187.02539322100006, 127.92516813499992, 69.99768930300002, -6.089661739000121, -5.496486828000002, 41.51597279800001, 101.78845821499999, 221.085642871, 200.26261358599993, 164.06150061099993, 109.92532581299986, 31.465666347000024, -4.012629441000058, 8.968277677999936, 72.85497923999992, 155.92583182999988, 191.32838263600013, 205.09074673099997], \"power_mean\": 93.37529041060081, \"energy_millijoules\": 5695.198020160424, \"energy_joules\": 5.695198020160424, \"coremark_score\": 4919.000459, \"coremarks_per_mhz\": 3.713013631491546, \"ulpmark_cm_score\": 52.6759559435915}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [630.3492779699999, 566.460597996, 492.73472644899994, 473.03842086000003, 469.18915247399997, 546.489176788, 633.225328666, 657.60532992, 659.398900734, 619.452910125, 536.029681506, 468.582964472, 458.422527382, 488.58450489200004, 593.392607184, 633.225328666, 673.7580950400001, 660.605895229, 563.9909326029999], \"power_mean\": 569.7124399450527, \"energy_millijoules\": 2848.5621997252633, \"energy_joules\": 2.8485621997252633}}, \"1516800\": {\"active\": {\"elapsed_sec\": 53.272447688, \"elapsed_ns\": 53272447688, \"power_samples\": [155.68274418099998, 95.24455972099997, -4.827940611000031, 9.02537859899985, 56.01152335799998, 116.21930247099988, 212.726102019, 217.03876929, 182.08600309500002, 130.27247708599998, 50.62607429599984, 8.162707863000037, 6.615663878999953, 71.58696656299992, 159.575576135, 206.65997586499998, 208.74712664799995, 161.68139367000003, 78.28503649499999, 7.241602357000033, 4.173613047000117, 19.73149701500006, 119.663196546, 180.06596604699996, 218.28750863100015, 217.15514822599994, 114.58203292600001, 47.00794012099993, 3.0819750389999854, 12.557641310999998, 70.35068765799997, 128.17062523899995, 207.82627169499995, 206.22034011899996, 165.23124472100005, 109.69089973500002, 31.287800971000024, 10.344822184999998, 17.31842644599999, 67.91002658299999, 169.14735842300001, 199.57930905800004, 219.45445616099983, 159.233367466, 59.10324600999991, 4.740309271000001, -1.8783207199999197, 36.54341279099992, 120.93966933500008, 166.84347892699998, 215.79410275499993, 226.772078921, 120.61621079600002, 63.90047476099994, 10.37335842099992, 10.144333062999976, 74.031830463, 124.51901201099997, 205.53168848699988, 212.21530286999996, 172.54423760299994, 109.79124511199996, 20.429979670999955, 1.7358954250000806, 26.90392820099987, 73.90480718099991, 169.07446838099986, 206.8131158289999, 214.70431832099996, 148.22936881499982, 78.34890407099999, -7.378936392000014, -3.142923091000057, 28.108370150999917, 116.01612887099998, 164.18057461299998, 214.588295625, 216.961249759, 132.5114532949999, 71.045883204, 3.3364758150000853, -0.7297333769998886, 59.412482436000005, 112.50026312700004, 212.571774827, 214.47227292900004, 173.603849544, 112.03538758500008, 28.90540651099991, 1.9333282210000107, 13.733606610999914, 76.313691081, 161.88040640099996, 210.35506827899997, 201.278619735, 160.36747208700012, 78.317052375, 16.808069871000043, 0.36220200599996133, 22.22830346899991, 122.14417045500011, 167.86613711099994, 219.41547761099991, 214.588295625, 116.86256957099988, 54.18666920700002, 3.2233159380000416, 1.6512399529999584, 61.91481411400002, 117.25443159600002, 216.22431601699998, 204.8615524270001, 184.35298895099993, 109.72429082100007, 32.408628878999934, 16.403080370999874, 16.171679031000053, 71.55524825299995, 172.65089867099994, 201.722830714, 198.867123815, 170.059139771, 75.80967299899999, 20.459139190999963, 10.144333062999976, 26.90392820099987, 110.09126088700009, 160.78019620500004, 209.64580400700004, 220.58244691100003, 121.75806824699998, 78.3809199509999, 2.1590278269999317, 10.029893930999947, 66.61124567099989, 109.99056527099992, 217.199770381, 215.639300983, 167.60698242299998, 116.93041007099987, 40.913574615000016, 10.459261316999914, 5.212126130999877, 59.474569558999974, 155.9617159249999, 212.53309384700003, 195.208138393, 167.53414329299994, 95.21187906299997, 32.46813819900001, 6.388063175999946, 7.734974582999939, 117.22045187099991, 166.66175463599996, 197.47203317699996, 207.38788278899995, 139.85486715899992, 83.080202601, 13.075199631000032, 5.212126130999877, 64.32393530399997, 115.94846232099985, 211.09725981500003, 224.00380965099998, 196.3759791330001, 119.30822303100001, 49.4200295710001, -1.625957384000003, -0.8421804689999135, 66.64272608099998, 166.625335071, 201.79892572699987, 195.24592666299998, 160.15146683900002, 86.69762399099989, 31.198868283000024, -2.018474559000083, 10.087113497000018, 105.16932467099991, 159.50345109500006, 196.338325479, 196.52717602200005, 131.40943074300003, 72.25174980899999, 4.5702858470000365, 1.5948512909999408, 49.7695250459999, 120.97382767999989, 189.59836721099998, 203.57569720700008, 192.8719068869999, 128.89420941499998, 49.359011031000136, 0.9253361349999523, 2.7992932409999867, 59.412482436000005, 147.27356839499987, 209.97023899499993, 197.54784800699997, 192.94724552699995, 102.41818323900009, 42.05903938499989, -0.7297333769998886, 12.471381591000068, 89.5052284709999, 156.951043227, 198.3365608649999, 212.09963641399997, 157.77608640300002, 109.65733653000007, -2.639412380000067, -0.6174306329999126], \"power_mean\": 106.65512243574527, \"energy_millijoules\": 5681.779430615475, \"energy_joules\": 5.6817794306154745, \"coremark_score\": 5631.899076, \"coremarks_per_mhz\": 3.713013631329114, \"ulpmark_cm_score\": 52.80036010963254}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [592.09970832, 649.98157328, 658.02611952, 638.7423620399999, 555.39746668, 490.200181786, 465.523024473, 479.80975391999993, 571.5147452079999, 625.86544672, 664.030834586, 666.5135970599999, 590.4154391659999, 520.43461575, 467.054139302, 471.553637607, 530.6504847929999, 603.0138904920001, 679.0601285719999], \"power_mean\": 574.730902593421, \"energy_millijoules\": 2873.654512967105, \"energy_joules\": 2.873654512967105}}, \"1612800\": {\"active\": {\"elapsed_sec\": 50.100783835, \"elapsed_ns\": 50100783835, \"power_samples\": [16.72127579100004, 18.55603646499992, 54.65261589499994, 146.21081408099997, 190.727589471, 221.632005371, 227.78149287300005, 130.09995737499992, 80.50824280599988, 27.257370145999857, 13.618306821000033, 88.33345701600001, 134.1584966009999, 231.7378962360001, 220.34861915099987, 195.283521147, 130.09995737499992, 54.18666920700002, 15.14023171100007, 35.279104670999914, 82.24325330099987, 185.9063488710001, 219.64713587099993, 221.59290787099997, 185.52136516099995, 114.51460405500006, 45.646207638999954, 24.432300470999962, 13.589444870999955, 123.14335936700002, 182.21918395599994, 217.93783571099993, 225.25248895899995, 162.49419587699992, 87.87505914299993, 21.431881479000026, 13.618306821000033, 78.69049962600002, 126.89344019099997, 220.695469871, 230.11404443900005, 213.189480323, 151.74398847100008, 67.36548400699996, 17.724247070999922, 19.52767944699997, 66.57992669899988, 155.5318428689999, 227.88447740799995, 227.70290475900003, 196.338325479, 115.45394508100003, 44.440459679000014, 31.606778938999923, 21.906840882999973, 117.11868695099997, 179.73286879900002, 214.27896799200005, 236.14584632699996, 156.57045739299997, -25.532454721000022, 14.165647800999977, 31.636533599000018, 79.73848536100002, 141.147216964, 213.54429002999996, 216.68963248199998, 201.278619735, 144.4711535429999, 64.85611184699997, 26.052216020999936, 19.615008470999896, 77.35821781499999, 182.29337987099996, 229.16732904699995, 228.79031329499992, 182.99871790099996, 118.00059150599998, 55.26921259299991, 13.589444870999955, 28.019793703000005, 120.87152781600003, 186.99857015100008, 217.70472043100006, 219.10424888099988, 165.96548111100003, 102.11983866300011, 27.37528503899989, 18.381734656999924, 74.9499280550001, 123.10925785300003, 230.414995633, 226.3401942600001, 201.2024480550001, 139.67979260699985, 54.094349902999966, 21.198579042000006, 34.07478167099998, 77.390233695, 177.3614630950001, 225.67269947099987, 222.91562888099998, 186.540518721, 99.83740064699998, 34.671181485000034, 35.24932508899985, 29.16478650299996, 138.8401896989999, 196.60191220499996, 228.86902005399986, 232.4104405590001, 151.70852527099998, 84.12477390099991, 25.993452903000048, 19.52767944699997, 89.44017366699995, 150.81902047100004, 238.96813988099996, 221.59290787099997, 184.09279247099994, 121.51931017399988, 29.874823047000064, 18.410685470999965, 45.943408870999974, 105.03612873700001, 199.085941348, 221.16363737100005, 219.1432274309999, 164.94139827200001, 92.50200685499999, 34.581713853, 25.52304583500006, 65.30887298300001, 144.86515968499987, 220.61727487099995, 226.41866372899995, 208.32504348499992, 132.33816213699993, 66.06168168700003, 24.46169789099997, 30.42832136300001, 105.00274415199999, 173.59835119500008, 218.715262941, 239.76650853499996, 175.79494405000003, 120.30984731599995, 20.197152119000066, 23.22797747100003, 48.442948631000036, 119.49305290100006, 196.45047694200002, 221.16363737100005, 226.49733491899997, 178.24687250299996, 76.88775921799993, 14.22322369099993, 26.756496742999957, 66.45416649699996, 141.18238696900005, 200.2901457029999, 221.55401087099995, 213.15079934300002, 130.9945291109999, 70.85625489999995, 22.169896674999904, 25.611266043, 101.45690747900005, 152.0231061809999, 217.316328021, 221.70999987100004, 184.3157361509999, 125.06734381499996, 23.813683213999866, 19.585998486999983, 47.208432080999955, 118.32283183100003, 197.7300641349999, 223.61244959099997, 230.15335582299997, 175.86842731699994, 79.26670459299999, 12.988939910999989, 29.16478650299996, 65.30887298300001, 147.09659526299993, 196.56400479, 228.79031329499992, 219.33772040099996, 119.13837615099999, 62.382487536999975, 5.1836807009999575, 31.636533599000018, 100.2527625990001, 155.56754294299992, 224.66455565499996, 229.83785157099987, 176.8939088520001, 127.478127255], \"power_mean\": 124.91703690649747, \"energy_millijoules\": 6258.441463361147, \"energy_joules\": 6.258441463361147, \"coremark_score\": 5988.502076, \"coremarks_per_mhz\": 3.71310892609127, \"ulpmark_cm_score\": 47.935257005484964}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [626.482043418, 566.126396451, 492.516583177, 476.378918496, 473.82817109399997, 560.550979242, 630.410621176, 670.680241776, 661.422226428, 631.311602691, 554.054475975, 473.22468165600003, 473.89821255, 487.114850376, 555.841382096, 630.534955029, 659.8910966870001, 707.079930048, 627.5648240940001], \"power_mean\": 576.7848522347368, \"energy_millijoules\": 2883.924261173684, \"energy_joules\": 2.883924261173684}}, \"1708800\": {\"active\": {\"elapsed_sec\": 47.287567221, \"elapsed_ns\": 47287567221, \"power_samples\": [122.75903835899999, 43.20442158900005, 12.327664626, 62.86944195499996, 112.16353896299984, 210.90454840799998, 226.02611466299993, 239.64674298299997, 177.041302663, 76.95150814899989, 26.169893318999925, 33.98531403900006, 77.29435023899998, 157.90365500400003, 226.60186305900004, 233.73470664699994, 198.60174498899994, 117.79706166599999, 55.11510301499993, 32.84079742899996, 44.79631283899994, 136.22254780499998, 179.62183638299996, 228.63269744599984, 227.50633346100005, 155.25358594099998, 87.712765419, 30.75435712500007, 23.110926593000045, 83.350742491, 143.44958353799996, 231.42144065699995, 232.21268122800006, 197.54784800699997, 133.509037959, 56.28954999000007, 23.374516744999937, 37.50774668700001, 114.57530138100003, 191.59366129499995, 234.14666118600007, 239.68652811499987, 178.099241097, 88.91821630899994, 21.315155339999933, 31.577024278999943, 67.56373481999992, 157.93965804900006, 209.77762659899986, 217.89891663600008, 228.7508587499999, 134.818689447, 69.58770786299988, 28.019793703000005, 31.547422207000068, 114.57530138100003, 172.394443605, 227.15238390900004, 222.72024561600006, 182.99871790099996, 121.3830271359999, 39.37703745600004, 30.309693684999957, 78.46630111900004, 135.05357212499996, 225.51576053300005, 216.49573401499993, 220.34861915099987, 147.91088993100004, 70.82459606499992, 27.198488382999926, 23.169452031999867, 92.82376507000004, 195.356030928, 238.72860877699998, 232.4104405590001, 192.53365571100005, 106.97461170299994, 43.022991477000005, 25.552351863000013, 49.46368195599996, 150.67661927100005, 192.8349855539999, 250.49922056700007, 237.11259871100003, 138.29956555800004, 76.85580281299985, 33.07885182999996, 26.727131544999907, 94.09703063699988, 156.77150970299988, 229.285668471, 226.18325532199992, 200.89834727099992, 137.05948054100008, 39.46706373300003, 26.727131544999907, 59.22606145999987, 106.07333716300002, 204.88136079000003, 219.80308777599998, 244.38805994100005, 163.51881277100006, 88.88583169499998, 32.05233589900001, 27.93121725499998, 76.09032400399997, 168.70983079300004, 212.108396523, 231.04695702100003, 223.80812962099992, 131.13271124699997, 73.23549784499994, 41.395205207000004, 30.309693684999957, 113.40107431899992, 171.117408683, 230.57308745099988, 223.8865625210001, 196.22497633499995, 135.95846710499995, 24.98979615899998, 32.751507917000026, 55.54830432899996, 109.722101103, 197.69229194699994, 216.18545661199994, 244.1871256889999, 181.56708406999996, 91.36178858400001, 36.962539590999995, 38.715660878999984, 49.55530915099996, 148.30445009100004, 195.20502813000007, 233.45726527099987, 228.67215199099996, 151.45936887099992, 100.81523634599989, 16.345267190999948, 14.678378801000008, 77.29435023899998, 149.40178060100004, 248.203316502, 223.84734607100006, 215.48430023699996, 156.39140496000005, 69.49307183099995, 28.43309990299997, 21.848283942999956, 91.55451618500001, 160.31135123400009, 221.74312848600005, 233.53665055099998, 211.63697058999992, 134.61016991099984, 80.41200252599992, 25.640572071000065, 26.668098414999918, 112.06248710699992, 179.58476220299997, 236.55542613600005, 226.2617247909999, 184.12985423099997, 125.03300704499998, 28.610101127000007, 24.2269707989999, 82.11440280600004, 129.09905935999984, 207.28905701999997, 226.02611466299993, 220.231705271, 161.10455319599998, 79.10665679600004, 30.872832520999964, 36.33377248699992, 75.99461866799993, 166.33453885199992, 234.91393281900002, 227.50633346100005, 194.86862532099997, 115.251301366, 67.08264463099988, 40.94267555599993, 37.477848764999976, 123.00660174899997, 188.0531367509999, 240.492303687], \"power_mean\": 131.60838397652657, \"energy_millijoules\": 6223.44030413718, \"energy_joules\": 6.2234403041371795, \"coremark_score\": 6344.775078, \"coremarks_per_mhz\": 3.713000396769663, \"ulpmark_cm_score\": 48.20484898048558}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [660.6736780919999, 671.010433218, 634.7120141, 535.897706454, 467.146141539, 471.321435049, 485.714376315, 582.1384646, 635.2918998389999, 664.8774615500001, 668.5981064780001, 586.589236245, 520.22982354, 466.80128077899997, 472.572709056, 521.977696137, 591.8664058830001, 690.64225751, 659.9885843910001], \"power_mean\": 578.3184058302631, \"energy_millijoules\": 2891.5920291513157, \"energy_joules\": 2.8915920291513157}}, \"1804800\": {\"active\": {\"elapsed_sec\": 44.767807066, \"elapsed_ns\": 44767807066, \"power_samples\": [239.44720208899992, 232.173048063, 145.60602652299985, 87.58313039100005, 47.08647573600001, 42.297426363, 143.4848724929999, 200.02413075900006, 229.759026167, 247.96742415099993, 158.80206944999998, 100.88152971600005, 40.34125053899993, 39.85944000300003, 112.12979733299994, 169.84042336799985, 250.7361810309999, 247.88681790500004, 202.1416467109999, 153.97678856099992, 52.700367470999936, 43.56187752400001, 56.69036247500003, 128.96111451399997, 222.82952836100003, 235.271624643, 244.38805994100005, 176.67291274000002, 98.40097677100005, 41.666816014999995, 35.15967933699994, 84.32854975599992, 162.72299450700007, 244.51137410700005, 237.07272764599998, 211.7526370459999, 132.09583918299995, 64.69962717599992, 45.88262762099998, 42.17642117699995, 137.28678926599991, 200.02413075900006, 241.77717367899993, 223.72989783100013, 167.06162278300008, 114.07588304599994, 39.22663335000004, 42.17642117699995, 97.70875340700002, 140.83122799600005, 240.85651419099997, 176.59931043899996, 200.89834727099992, 144.22449279599994, 62.226596396000105, 42.41827621499999, 55.455628785000044, 118.08508111099991, 206.04702233299997, 247.28175302499994, 257.531528676, 194.90641359099993, 104.397544509, 30.783899833000078, 39.82942354699992, 87.91112158600004, 168.74618212500002, 231.34237757400012, 247.92701742099996, 219.06547022099994, 133.37020302099995, 74.31787775100008, 45.91309637099994, 41.093518772999914, 128.926539649, 195.20502813000007, 239.08790543299995, 229.68020076300002, 174.332563209, 130.85616936300005, 34.462525808999885, 37.38784677299998, 91.55451618500001, 145.71601130600004, 242.06012501599992, 244.1871256889999, 217.74363950600002, 156.2123525269999, 79.04267057499999, 36.57325154300008, 45.91309637099994, 101.25818138300008, 198.70645772599994, 244.63203084300005, 245.47662799500006, 198.412299943, 114.07588304599994, 47.81790069600004, 33.80653197300012, 53.04816984499996, 156.59216050499992, 202.27908541099998, 245.47662799500006, 252.83287489600002, 197.2072644629999, 106.90789509100011, 35.60775459399986, 34.95045474799997, 121.70021617500004, 167.319886871, 221.62585836599987, 252.58942281600002, 240.69214134599997, 156.28393669599984, 89.92850278699996, 56.84506558299995, 40.40159289899998, 103.565954841, 173.41484534100005, 235.15239403500004, 237.32533841299994, 208.01809183399996, 133.47428466899999, 52.423945670999956, 44.137430545999905, 62.619509200999914, 123.97050412099998, 216.73353982100002, 238.40930233100005, 241.77717367899993, 171.81258830699994, 85.00721907599996, 48.83996129100001, 49.40238760599982, 99.17684808599995, 172.211234516, 229.98049681100008, 243.946375923, 209.62377398699994, 138.08997613400004, 68.06740252199995, 41.063288117999946, 41.57627907899996, 146.84868737099987, 209.62377398699994, 242.70158721799987, 240.85651419099997, 168.15740821500003, 109.02084046799996, 47.60451623100005, 40.34125053899993, 94.9723586130001, 151.35261367100009, 237.16582024599995, 256.59290324099993, 228.51453614199988, 157.72400904099993, 83.802302241, 32.05233589900001, 38.445273210000096, 101.88790640700006, 191.59366129499995, 253.0224191310001, 230.889068145, 210.55754904000003, 135.68002412399994, 73.42806170100005, 46.96467594599994, 45.251513374999945, 121.56352037099998, 186.42859512100006, 240.01252899899998, 243.38421387300002, 199.6173354230001, 136.11793121300002, 41.69704666999996, 31.874113115, 62.619509200999914], \"power_mean\": 142.59719662016852, \"energy_millijoules\": 6383.763786444172, \"energy_joules\": 6.383763786444172, \"coremark_score\": 6701.813958, \"coremarks_per_mhz\": 3.7133277692819147, \"ulpmark_cm_score\": 46.99422003004647}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [514.64357749, 591.7496797440001, 677.383537592, 669.5735851840001, 639.382533211, 584.090412495, 481.512264835, 459.40590363200005, 479.66788864, 526.64125539, 638.847325624, 669.1779321920001, 674.53325165, 626.2045511460001, 550.08305912, 481.346420905, 461.67957536600005, 496.53880268800003, 581.015857522], \"power_mean\": 568.6040744434737, \"energy_millijoules\": 2843.0203722173683, \"energy_joules\": 2.843020372217368}}}}, \"6\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 117.918195892, \"elapsed_ns\": 117918195892, \"power_samples\": [162.34984031099998, 110.59473896700001, 17.666315245999954, -28.29153034000001, -16.64758876899998, 38.745772584000065, 115.71154242099999, 190.27723568600004, 173.237431366, 160.007401695, 81.71375317100001, 24.931152075, -27.461606985000003, -26.445335023000098, 63.94824343200003, 122.93822294000006, 170.31544904099997, 174.7287755179999, 126.10110709199989, 66.29708732299991, -20.89518468899996, -22.31671416900008, 26.609216651999873, 86.642526621, 157.90365500400003, 175.64797751599997, 166.00184120099993, 75.68224885300003, 15.31346363099999, -20.341293458999985, -27.51514661100009, 71.04873124099993, 133.74145752899994, 176.59931043899996, 165.96548111100003, 117.72927647099993, 50.19779967099987, -26.979337449000013, -25.134051721000105, 42.237001437, 101.25818138300008, 184.366980776, 173.1639970959999, 149.12011472100005, 105.66923743100006, 10.48794464699995, -22.397805489000007, -11.854910302000121, 37.447796729999936, 140.97172765699997, 182.70174350600007, 183.94397231099992, 153.04873396100004, 58.669310085999996, 1.8205508969999755, -19.191756398999928, 32.60274302800008, 88.04099390400006, 173.56157458500013, 184.12985423099997, 149.084587671, 99.57321355800002, 3.1384823459999325, -17.606263078999973, -14.372653769999943, 45.88262762099998, 143.4848724929999, 181.0481650449999, 176.82030655100004, 137.09423331300002, 40.55213935099994, -17.25187332900009, -22.749108639000042, -2.2428935530000444, 78.33832867699994, 151.844945016, 181.60402729600003, 184.01828687099987, 94.8838932839999, 35.787046097999905, -27.16693259100009, -18.620516408999947, 41.063288117999946, 97.51092691100007, 173.48820996300003, 188.20271503100003, 168.33942927099986, 73.17210523799997, 18.87554003599996, -21.43693456899996, -25.187828637000052, 89.17978721499992, 133.6720105259999, 166.87989849199994, 177.80416779899997, 102.08680279100008, 56.19687444600004, -12.591388073000076, -31.290859567000098, 30.22076099700007, 91.587246155, 180.7145334369999, 182.7761301559999, 155.07483124599992, 77.99738612700003, 27.198488382999926, -4.431307449000201, -20.341293458999985, 31.309842690999858, 127.688294789, 172.211234516, 168.23017922300005, 132.46839970099995, 63.494354100999885, -0.6455784930000164, -19.164641018999873, -8.516222052000103, 69.87661689799995, 155.4243746049999, 175.353666642, 174.332563209, 118.90045087099998, 29.786068478999937, -20.922181729000044, -21.572337249000043, 27.783640398999978, 120.59878656899991, 186.6996962159999, 177.87788874500006, 173.09075111900006, 86.43866375100004, 35.81697918299983, -14.262962771999923, -19.137385869000013, 62.71325404900006, 107.21406549699998, 173.8552216710001, 176.74670425, 145.32378290499992, 80.251656991, -17.38816630400015, -33.56576647300005, -7.03485773500006, 68.161860434, 151.73801169599994, 172.174517381, 187.63374924599998, 124.86167536700009, 45.433655966999936, -18.974134508999896, -10.81663027500008, 48.198717611000006, 104.86954821799998, 173.74508043900005, 180.25095669899997, 141.70885489, 80.47610778099988, -19.771300004000068, -16.702336969000157, 4.8429190370000015, 66.10852773900001, 154.180874056, 189.56081684100002, 185.2234409959999, 129.75474064599996, 36.842723159, -31.830743903999974, -23.98398052199991, 13.301417410999875, 92.75818618000005, 156.5564012609999, 186.20474792100003, 192.53373563699984, 87.45332873699999, 21.848283942999956, -25.053317225, -1.7941996079999853, 42.085706121000044, 119.08456826100007, 176.26781627100002, 191.21574597200004, 135.68002412399994, 52.485320145999935, -20.94931792900013, -17.933478279000155, 15.708876350999958, 101.15873319100001, 160.2754144800001, 187.63374924599998, 177.87788874500006, 93.54378765199999, 34.462525808999885, -17.715381503999993, -10.788958605000062, 51.871259846000044, 97.6757258670001, 182.10779471600006, 170.68068015900008, 143.0193386709999, 85.201124596, -6.451001399000006, -21.43693456899996, -16.702336969000157, 57.80111963599995, 151.70230622099996, 184.21792302100005, 179.19371904599984, 134.0194240679998, 32.05233589900001, -27.05971570500003, -24.037876083000015, 25.405368537000072, 96.37314262400002, 180.67739978199995, 205.72291509599984, 156.14076835799995, 83.99585152100008, 12.787617995999994, -18.892508829000008, -15.631310255000017, 42.237001437, 121.63195601099994, 188.01564605099986, 173.09075111900006, 146.56416681500002, 52.57746074599993, -4.068424489000108, -18.069771254000102, -10.73375717099998, 80.71753977100002, 136.11793121300002, 174.14886875700006, 181.52995041500003, 109.22187545999998, 49.157681701, -18.620516408999947, -22.397805489000007, 36.124285990999965, 95.16947262899987, 168.60040204099994, 174.07550413499996, 169.40275463699993, 67.05116422099991, 17.666315245999954, -33.64511743699995, -24.064893138000002, 72.28395688799992, 131.2647888759999, 187.07343260100004, 181.41873987899987, 126.10110709199989, 59.78532438800005, -19.798356214000023, -16.78417850900007, 30.07259061100001, 91.55451618500001, 168.60040204099994, 171.77593064699988, 171.849057979, 112.73610846899987, 25.993452903000048, -26.042553143000077, -28.932994098999984, 32.453825246000065, 128.82299236099993, 175.353666642, 177.91484397500005, 152.762981181, 58.545214606999934, -16.265053268999964, -1.179377397000053, -3.7024912320000567, 86.77232827500006, 166.18923412599986, 182.55335167600015, 174.36915122100004, 99.54012654299993, 22.46208079099995, -21.165990049000015, -30.00322109700005, 33.77665836299991, 133.6720105259999, 184.29235622599992, 173.09075111900006, 150.18322419100002, 50.136662485999864, 4.31539627899997, -31.317382859000077, -4.8221596490001275, 97.44504120300007, 137.32160120800006, 171.77593064699988, 189.86064210300003, 105.60263946399994, 51.34175744100003, -21.165990049000015, -30.944826309000064, 46.995047615999965, 95.92502010300007, 181.81082032100016, 186.47549277600012, 152.593295151, 95.79355450500009, 17.40539864599998, -19.24626669899999, -2.3549590070000477, 80.62112137099996, 134.94913365299988, 178.93518556799995, 198.4502668329999, 110.29265211899997, 45.403402830999994, -28.42515145699997, -28.79937298199991, 43.289197995999984, 91.52195406099997, 191.48084651099987, 185.03726231099995, 140.67529976599997, 97.19582264600001, 3.11030132399992, -10.56801096300012, -5.970094070999949, 39.73906473099987, 127.61944101100005, 192.72199264999995, 182.73893683100005, 140.761068345, 58.545214606999934, -18.810883149000006, -14.454992513999969, 1.7640172770001072, 74.63161305100004, 135.839013347, 181.270586117, 165.63879968699996, 117.457961436, 22.286710262999918, -34.505324792000124, -19.24626669899999, 37.32789681599991, 125.27700833999984, 195.09167898599992, 170.71727834399996, 148.90731680099998, 51.31105079099996, -10.126115679000009, -20.58563613900003, -16.86616042900016, 83.06041857100001, 144.54756763699993, 170.49806460000002, 176.59931043899996, 106.87445103100004, 41.69704666999996, -18.78376776899995, -28.852793963000067, 38.445273210000096, 106.57396901499999, 193.850279891, 189.0360744909999, 152.45065635599997, 80.15541671099993, 9.139727229999835, -23.019459323999968, -12.047770864000086, 89.14717619499993, 138.42029837099994, 177.58281544700003, 186.20474792100003, 105.535870294, 50.04487812599996, -22.451820084000133, -13.251381689000027, 38.50534220099996, 96.30737556099996, 187.75378793099992, 181.41873987899987, 144.04840995899986, 86.21213591100002, -9.027651165000066, -15.412262152999915, -8.432992124000066, 55.393897985999956, 140.8663980010001, 176.04682015899994, 188.72662353099997, 132.02662947, 38.017706603999954, -17.057498368999973, -18.097085879000133, 2.9123078549999946, 93.93312197599994, 160.09498974600012, 180.176808339, 176.48881238299998, 79.04267057499999, -5.385134021999988, -23.903067906000047, -7.229381299000124, 42.11599625100007, 135.97856184900002, 185.75724517100002, 178.97201045400004, 139.3999249709999, 32.02258123900003, -16.23781954900005, -19.219011549000015, 3.4936649190000253, 96.27440749599998, 158.85562028699997, 194.60468878899997, 192.15754203899985, 85.07179891099997, 44.1677801510001, -17.769870679000064, -24.064893138000002, 37.32789681599991, 137.21680649600012, 182.10779471600006, 190.42728932400007, 148.97818871099992, 19.062024342999962, -5.440810424999995, -73.02593171300003, -4.878098129000136, 52.83270544200002, 137.28678926599991, 181.45587353399992, 181.41873987899987, 98.2031502750001, 39.28685676000009, -24.89184823300002, -25.29538246900006, 32.33487449200004, 91.42393199700007, 194.978329842, 193.47521418299993, 159.791396447, 85.07179891099997, 1.9615950310000017, -15.439555236999922, -9.664334289000067, 42.085706121000044, 146.88415475099987, 193.925662645, 189.785733929, 138.08997613400004, 45.28192245499997, -11.38635259299997, -30.08324311299998, 0.4748866929999167, 92.6927754410001, 154.28816361600002, 189.74818355899993, 171.37344833899988, 96.93258532700008, 45.16044207899995, -15.466989006999938, -7.285081879000018, 64.90120902299998, 145.57456126499994, 170.16924398399988, 177.84112302900007, 115.14989268600004, 21.111071897999977], \"power_mean\": 81.59534657066307, \"energy_millijoules\": 9621.576060795078, \"energy_joules\": 9.621576060795078, \"coremark_score\": 2544.442937, \"coremarks_per_mhz\": 8.481476456666666, \"ulpmark_cm_score\": 31.179922925767478}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [565.123505562, 659.1113619860001, 665.956341304, 657.5404651199999, 585.09492677, 518.6403050499999, 482.21946864, 461.52026520000004, 525.3849216, 612.117433774, 672.4986449920001, 650.1416210770001, 632.1444492240001, 545.2565901979999, 488.608606112, 483.23378812500005, 482.31456116999993, 592.6619967479999, 631.2417459840001], \"power_mean\": 574.2532104545263, \"energy_millijoules\": 2871.2660522726314, \"energy_joules\": 2.8712660522726314}}, \"787200\": {\"active\": {\"elapsed_sec\": 44.963635504, \"elapsed_ns\": 44963635504, \"power_samples\": [87.91112158600004, 66.01424794699994, 103.266541545, 158.67567755900006, 246.59608189900007, 256.83778028100005, 251.01986222099993, 196.791060486, 104.03165189099991, 73.61875989299995, 55.11587135399998, 111.65827968299993, 205.54882535500008, 268.058464674, 261.9043741109999, 233.02146043899995, 148.58811992100004, 86.05030655099995, 67.15452502999995, 73.17385186800004, 162.03571381099994, 223.68446539900003, 265.315363543, 276.4071958630001, 194.37834674099997, 124.83073910999997, 60.430087695, 62.86944195499996, 115.13594187099989, 184.89922812099996, 260.91916143900005, 264.10727064699995, 232.94227871099997, 136.53639758100007, 83.60875296100005, 71.9034382829999, 75.48429946199997, 177.86365731299998, 233.23399339700006, 262.944306062, 266.51950842300005, 201.60859038599995, 126.92789591099995, 56.72120769900005, 64.80710793499998, 120.12144559399997, 175.38402103199996, 264.449769639, 270.29787941099994, 231.65883315300005, 172.614369829, 98.005493151, 55.51735958400002, 68.29456482299997, 118.9144246159999, 201.89782119899996, 267.516986157, 251.01986222099993, 233.11494090899987, 170.35185954300005, 79.73848536100002, 69.59233679500005, 99.723435537, 158.63961503899998, 253.6565604509999, 250.574255891, 270.29787941099994, 217.16085130599993, 118.458814071, 64.23001233600007, 61.13519819199996, 109.21879544700005, 184.936599871, 245.15121707699984, 274.99424603399996, 264.10727064699995, 162.97631078300003, 117.2884113209999, 66.07704732900004, 51.44132297099986, 145.32725066700004, 197.04802302899998, 257.67796214099997, 176.15731821500003, 219.72521192099987, 147.48878546100002, 72.60124584899995, 53.10966335399996, 99.62416546500003, 163.23843403599994, 253.6565604509999, 259.921030032, 254.6330096459999, 165.45737216099997, 107.61542300099995, 65.95144856499985, 65.8571687729999, 147.70158338099998, 220.03201537099994, 253.06291469100006, 252.22424469600003, 195.58272921599996, 137.67097672900002, 59.350395313000035, 65.88864918299987, 106.74587234699993, 180.12153753100006, 267.851500763, 272.58583732399984, 246.19838352600004, 177.43537355499996, 90.70955147100005, 74.72714026699998, 58.66695813899992, 133.185524451, 221.11782171599998, 267.02102748699997, 264.10727064699995, 233.07539265100002, 125.65466147099994, 65.15209154700005, 55.054140555000004, 89.82912351599987, 172.93750380300003, 275.321633583, 267.80649008299997, 221.97766872599993, 171.5198909909999, 77.32636611899989, 62.30697286700001, 148.833491171, 143.98308040099994, 232.99588842100002, 258.88151349099996, 270.25634207099995, 221.93851175099996, 134.08887107099997, 60.52347630299994, 62.27583159899996, 89.95963795499995, 177.67896342599988, 240.25590523099982, 283.343457189, 270.215017743, 179.9178594509999, 120.80338629699997, 65.02673085100002, 56.25709837499994, 131.9132381710001, 186.84922916100004, 275.196343391, 271.46324845899994, 223.22108953100008, 166.44361077999997, 72.56946806399992, 59.86991595899997, 65.70008959899997, 163.27473465100002, 222.085823581, 255.42999702099996, 276.114995107, 199.04791498300006, 137.49619924699994, 59.194938094999884, 54.992251065000005, 111.5236592309999, 173.99337613900002, 261.87551902100006, 271.2154582469999, 244.83305653500008, 172.577652694, 105.1027267039999, 51.90186819600001, 63.35350518600001, 115.13594187099989, 210.21074773099997, 271.54634780599986, 266.602226253], \"power_mean\": 165.35235451181458, \"energy_millijoules\": 7434.842997997421, \"energy_joules\": 7.43484299799742, \"coremark_score\": 6674.082314, \"coremarks_per_mhz\": 8.478254972052845, \"ulpmark_cm_score\": 40.3505494441248}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [653.665508145, 654.48390754, 570.534459564, 463.135211448, 472.33991296799996, 508.39119556799994, 556.552385112, 651.6889937999999, 678.558603506, 670.416054687, 606.6598203119999, 512.609098302, 453.465750114, 468.61149501599994, 522.847405642, 601.122839824, 663.6992274930001, 660.86900974, 644.014946367], \"power_mean\": 579.6666223762105, \"energy_millijoules\": 2898.3331118810524, \"energy_joules\": 2.8983331118810525}}, \"979200\": {\"active\": {\"elapsed_sec\": 36.110277278, \"elapsed_ns\": 36110277278, \"power_samples\": [306.27997755900003, 257.923196589, 161.66368750499998, 126.65260354299994, 112.557780084, 167.9438295289999, 256.901526363, 301.5440597830001, 304.85601293699995, 300.255305143, 203.71577713500005, 153.22719189099996, 113.83175349100009, 105.37221245900002, 202.722667227, 265.28107404, 315.2614509440001, 307.1377319779999, 249.40710544700005, 197.719527299, 120.63276974299993, 111.96143525100001, 171.55145584399997, 219.64184237100005, 308.54655245999993, 305.41529970299996, 295.0931391099999, 203.60117998299995, 150.71226527099998, 112.6926378259999, 120.94882794299997, 207.455315895, 250.682659436, 305.6314691670001, 312.1306160429999, 251.85906657600003, 183.20025359099986, 110.75788390100001, 115.03435507099994, 160.68863801999998, 216.03439356599995, 307.30080593499997, 315.74233881299995, 299.997815929, 238.72860877699998, 145.89268767299995, 110.69069232000004, 103.03360757099995, 177.4942695389999, 252.00669029100015, 322.7933348309999, 304.76970861899997, 284.446319111, 195.356030928, 133.74145752899994, 110.11913205899998, 128.2018859399999, 212.423002194, 290.54648643300004, 327.47900724600004, 319.270279596, 236.15753335400007, 17.115441670999985, 114.37248402099999, 104.13645697200002, 171.4049638900001, 253.41239589099996, 313.4907072389999, 296.29680910499997, 277.06814419299997, 218.0538269309999, 143.5552694339999, 111.35529714899997, 125.86171224700001, 217.19789795099996, 273.785114982, 305.717892519, 313.3345236329999, 255.38917377099995, 142.3160137189999, 98.78048261399988, 64.80710793499998, 154.49304432399992, 222.71208012099999, 295.3133155290001, 308.28599151599997, 307.2244964480001, 234.87412122900002, 154.25252290600008, 124.6247144219999, 101.73149110199995, 193.05827650900005, 265.0747036590001, 309.154453635, 311.9999787469999, 261.329737011, 191.55599197499998, 112.09622873699993, 118.57413732600003, 160.61627469000007, 209.979414819, 288.095544656, 306.877883514, 323.820597216, 249.285736231, 155.4243746049999, 115.67762217099994, 120.8463499589999, 161.78258338700005, 239.815527223, 312.24454449899986, 308.384843683, 291.49327917000005, 206.08520890499994, 149.188626441, 117.40551903100004, 125.242788486, 215.99547449099998, 271.21373679499993, 308.21129962099997, 302.233038511, 246.95912082699988, 144.58291606699993, 111.82664176499998, 111.18676203299992, 172.57049209500008, 271.29683614199996, 320.75341760599986, 310.74874196299993, 274.660685253, 187.82857707099993, 118.15298495100001, 112.52397897899993, 119.71224613799995, 218.24436950599988, 297.50725890399997, 328.63827371700006, 314.538431223, 226.48387987500007, 157.79583049999997, 105.57253380300006, 107.64733084800002], \"power_mean\": 212.27941409040844, \"energy_millijoules\": 7665.468503216029, \"energy_joules\": 7.665468503216029, \"coremark_score\": 8311.170213, \"coremarks_per_mhz\": 8.487714678308823, \"ulpmark_cm_score\": 39.13655112849733}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [550.392904435, 633.4623503299999, 662.78944557, 666.734952642, 627.966467704, 519.7434256, 470.27879885, 475.745459776, 516.6959416799999, 586.52273658, 655.1391839749999, 653.50456908, 643.856383368, 563.1033367269999, 514.8464701600001, 474.47151073000003, 459.247424896, 550.3658482249999, 621.2344245900001], \"power_mean\": 570.8474544693685, \"energy_millijoules\": 2854.2372723468425, \"energy_joules\": 2.8542372723468423}}, \"1036800\": {\"active\": {\"elapsed_sec\": 34.157110404, \"elapsed_ns\": 34157110404, \"power_samples\": [183.435896006, 278.38913709299993, 336.12559135699996, 333.5897954259999, 297.4577930859999, 191.5183226549999, 133.810904532, 124.52170207799998, 156.8974160539999, 244.74857216299995, 318.172874946, 334.7039043709999, 332.20788552299996, 238.329526989, 168.60040204099994, 117.303575991, 126.89603383700012, 211.0659937029999, 277.27085933800004, 331.98518333699997, 320.1662622509999, 254.18544430099996, 205.97025551299987, 128.75401993799994, 137.07719984200003, 177.30957565199992, 230.59056692100012, 334.7892040439999, 321.912030351, 295.1787133, 213.11893970100004, 160.16723373599996, 125.58659657499993, 131.531664869, 235.0431882040001, 273.57645203999994, 329.9305038409999, 327.47900724600004, 246.83810785100002, 184.18061074599996, 135.73439675500003, 117.26971135100007, 195.31539285899999, 265.03334474400003, 321.955959711, 327.47900724600004, 292.60068164100005, 222.79051302100004, 132.329564763, 130.53746418000003, 149.71600527099997, 225.42223324500003, 310.78084644699993, 316.37721398299993, 327.3018869880001, 257.94015260899994, 174.58162008099998, 121.32452205899995, 117.20163295099997, 173.44177937899997, 286.723737231, 332.96526085100004, 318.831182421, 257.63701974599996, 202.12646217300005, 127.37836428700007, 122.01431800399996, 189.41375221900012, 243.385382307, 326.37120882, 328.682499121, 288.7740696860001, 239.61285368100005, 151.631078376, 117.5415012709999, 144.761632082, 190.5031827749999, 289.170420671, 329.13087052799983, 331.089482871, 295.00778434099993, 196.29923607599994, 127.65395640099996, 130.46825446699995, 148.442769376, 231.39711547899992, 300.81450573000006, 346.520449559, 331.18318080899996, 243.30375765300005, 179.140822663, 123.59350399499999, 126.72363388899998, 189.41375221900012, 286.68130718099997, 329.041844838, 333.36656728800006, 306.748181755, 192.64672854100002, 123.97050412099998, 119.6441046189999, 145.96363982699995, 246.95114685600004, 281.78516765100005, 329.75268073199993, 334.65938292299995, 245.71504410199987, 176.91894790499998, 123.42217231699999, 124.45308597899987, 194.03388303600002, 257.858359135, 328.9975602640001, 320.078414381, 281.676778455, 220.305096371, 132.329564763, 124.52170207799998, 171.18503766599997, 222.55561654100018, 311.8957780559999, 322.4082026110001, 323.77638194099995, 265.776532632, 172.10127140400004, 122.15125140300006, 130.36435093900002, 204.78273185900002, 258.9374528909999, 344.68046099700007, 321.325539156, 280.51520299599986, 226.28730857699998, 122.76701224600004, 126.79266466900003], \"power_mean\": 229.35616696453332, \"energy_millijoules\": 7834.143916845822, \"energy_joules\": 7.834143916845822, \"coremark_score\": 8786.574115, \"coremarks_per_mhz\": 8.47470497202932, \"ulpmark_cm_score\": 38.29390973465622}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [525.6180357119999, 482.07689088, 467.200195848, 508.140581904, 600.826499052, 651.3997386, 654.6128299200001, 643.729435191, 558.196488912, 503.968374183, 462.4736908329999, 474.42473775900004, 581.4212162, 609.34818333, 648.36097416, 649.789450128, 593.1002729219999, 529.314797792, 470.047189822], \"power_mean\": 558.6341885867369, \"energy_millijoules\": 2793.1709429336843, \"energy_joules\": 2.7931709429336844}}, \"1248000\": {\"active\": {\"elapsed_sec\": 28.391762437, \"elapsed_ns\": 28391762437, \"power_samples\": [186.70597093100002, 240.77699461899988, 326.0611345379999, 373.97662189799996, 402.81381492899993, 387.330371571, 301.84540500699995, 115.03435507099994, 184.376981871, 201.13509685300005, 268.3077082950001, 370.683236783, 396.2227589099999, 401.803063437, 350.03921933799995, 251.12891877099992, 194.71378380900012, 191.441728873, 243.10398765900004, 326.0611345379999, 377.61656519999997, 393.421305931, 379.99505755199993, 280.13740898699996, 229.70408980700006, 184.26505827099993, 195.01271672999997, 286.342519551, 341.6445467269999, 392.61243742599993, 386.151235853, 331.85151624900004, 277.81518630799997, 194.60043466499997, 196.896350171, 235.8505632670001, 291.876636042, 371.69862603499996, 383.72183353900004, 393.32597238100004, 301.80248211899993, 247.71855211800005, 205.01244180499987, 180.54853609100007, 270.798026437, 307.8083708129999, 400.747199313, 391.9803776309999, 365.45608691099994, 311.3904125969999, 207.91655442299998, 192.75655170699997, 203.38947878700003, 257.40817962899996, 368.0477891070001, 391.267732971, 395.59283797499995, 367.958186244, 251.2910812010001, 215.0218665309999, 190.24007706299994, 209.40108253899996, 312.74848530299994, 351.2153396729999, 406.32593656099993, 397.81309426099995, 318.6994758210001, 250.8043854760001, 195.54244855499996, 185.31742826100003, 256.2067654140001, 347.565453573, 401.66060575200004, 389.622188241, 375.03943733099993, 288.39231764600004, 223.52756233499997, 193.88268614699996, 190.08959295900002, 287.45929125600003, 355.93341059099987, 401.179210977, 387.12189567099995, 343.839216693, 275.07105319899995, 186.17661884100005, 208.27667373899988, 243.10398765900004, 299.4382268669999, 376.5086969270001, 379.6666943339999, 394.48545199499995, 332.96526085100004, 239.09323469100002, 189.75166221100005, 184.11595457099997, 242.540867649, 320.04923321599995, 379.788456331, 401.371051773, 397.663918623, 301.71619383899997, 206.67515371799993, 193.9583816369999, 211.68812556299997, 256.2067654140001, 344.00255827499984, 411.518454679, 393.230883276, 360.6907920749999, 264.53215672700003, 200.73281307700006], \"power_mean\": 295.7737660951696, \"energy_millijoules\": 8397.53850207086, \"energy_joules\": 8.39753850207086, \"coremark_score\": 10571.942066, \"coremarks_per_mhz\": 8.471107424679486, \"ulpmark_cm_score\": 35.72475433438252}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [613.4124126600001, 525.5403310080001, 462.838728338, 492.265442064, 502.268110042, 577.9220068440001, 654.6544201749998, 659.241234304, 655.4622491649999, 568.880399297, 482.12449818, 474.58850327700003, 485.187754545, 548.8912928799999, 646.19947885, 657.6151694040001, 673.8360380590001, 624.2909559039999, 537.674510016], \"power_mean\": 570.6786071058948, \"energy_millijoules\": 2853.393035529474, \"energy_joules\": 2.853393035529474}}, \"1401600\": {\"active\": {\"elapsed_sec\": 25.280113896, \"elapsed_ns\": 25280113896, \"power_samples\": [254.61499747100004, 253.79999792099989, 294.4579222110001, 351.76189078799985, 441.08088909100013, 443.3327042789998, 441.1286451390001, 376.88312117300006, 242.66134568099994, 247.15306284299993, 264.4555925159999, 340.03796729400005, 401.468527666, 465.626969067, 453.1079616149999, 388.1826319710001, 335.10241735499994, 250.92611151599988, 260.84812345600005, 302.82641936100003, 350.8052507849999, 457.8534697209999, 465.9855212099998, 437.268065342, 361.61762260800003, 278.64078736500005, 253.8408211709999, 269.264238501, 336.47573213600003, 415.93913384199993, 446.186910795, 455.263702091, 407.291191047, 301.4579927550001, 270.1776661770001, 250.03359284599992, 288.095544656, 371.279687028, 427.564514993, 472.20594477, 446.7396698929999, 368.74350940500005, 273.785114982, 250.23640010099996, 260.76576286600005, 331.62703795799996, 425.356134861, 448.543333578, 457.87145334600007, 403.53561816700005, 323.11451328600003, 260.467675923, 247.6273007110001, 278.7515889299999, 366.47569180799997, 437.2741419329999, 470.90077508699994, 462.5322343890001, 360.32301933299993, 149.7871144710001, 248.9943410609999, 253.67773752099993, 346.00149346499984, 398.9223480479999, 448.7951352749999, 462.58309071300016, 415.5659551429999, 341.103695347, 265.28107404, 261.4645607950001, 291.9704511870001, 361.5294583430001, 434.97200070299994, 451.703607088, 454.260061974, 354.353019831, 295.398788943, 258.404708261, 255.87985613699993, 330.292372065, 402.33278189500004, 453.5515374490002, 455.31446351600005, 402.33337282700006, 351.94423053899993, 253.29031361099987, 254.756535096, 299.0942123880001, 367.491022195, 428.913557307, 447.84492922699997, 456.41512653100006, 391.505281191, 312.24454449899986, 238.65350968799999, 241.41654354899993, 309.8666090689999, 377.24166606899985, 445.436972728, 470.7464343989999], \"power_mean\": 354.42710178993997, \"energy_millijoules\": 8959.957501078869, \"energy_joules\": 8.959957501078868, \"coremark_score\": 11873.194285, \"coremarks_per_mhz\": 8.47117172160388, \"ulpmark_cm_score\": 33.48230166983236}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [664.0266174899999, 637.2655272159999, 562.6593962720001, 465.17917503, 462.336816417, 495.951508516, 563.1964195899999, 639.2004426240001, 648.636875705, 661.813253937, 577.230904305, 523.00210257, 476.690451537, 457.384283784, 538.029787212, 597.010217508, 673.039027563, 662.724153476, 624.2602881899999], \"power_mean\": 575.2440657337895, \"energy_millijoules\": 2876.2203286689473, \"energy_joules\": 2.876220328668947}}, \"1555200\": {\"active\": {\"elapsed_sec\": 22.746488897, \"elapsed_ns\": 22746488897, \"power_samples\": [524.925201856, 486.3288821120001, 409.4540353529999, 340.93827640999996, 316.943763696, 337.3664968999999, 444.33276054199985, 487.4809935510001, 537.9372895110001, 540.1763902230001, 435.86677899899996, 382.70882179500006, 335.498563407, 314.49468380299993, 396.3250389230001, 462.25300330900006, 531.0524629469998, 524.6546932609998, 483.71664348000024, 433.224774991, 334.69981301099995, 320.2253923809999, 356.4930045509999, 404.3484766009999, 480.11761373699994, 521.9230851029998, 538.0467432190002, 430.906109691, 381.601072251, 335.409053729, 319.25708231099986, 398.44284672899994, 446.48659580699984, 528.324436639, 525.747978391, 489.9913335309999, 432.1079987909999, 338.309420931, 315.826794789, 344.43848312700004, 412.7096135009999, 484.71053589500013, 532.253402277, 542.6900230629998, 481.41697685099996, 392.374592441, 325.125094011, 322.81437932100005, 373.3586822550001, 439.1803922160001, 504.1053606429999, 533.0168137520001, 529.2530263359998, 446.2873420369999, 369.3420964799999, 323.21217092100005, 339.45248878100006, 400.69947466099995, 476.51246307300005, 525.756617121, 519.627810589, 490.8786597909999, 393.580362797, 335.90170211099996, 326.197897687, 339.677797383, 432.020493631, 490.92519422099974, 529.357051367, 544.9871741789999, 446.4884626989999, 382.7560125749999, 330.38140716300006, 324.01877971500005, 389.8895626709999, 458.3418448210001, 527.282812331, 526.9496893710001, 476.39868120699987, 420.134202846, 328.553116627, 325.086290136, 355.338126891, 426.9554532389999, 504.03127205099975, 531.3263826180001, 527.988505231, 466.3675261809998, 368.27969587300015, 319.3450488259999], \"power_mean\": 428.46357169836665, \"energy_millijoules\": 9746.04187640586, \"energy_joules\": 9.74604187640586, \"coremark_score\": 13196.674438, \"coremarks_per_mhz\": 8.485515970936214, \"ulpmark_cm_score\": 30.781726962026337}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [516.2371979999999, 615.0320639759999, 665.650994316, 650.58132649, 626.545551801, 553.0456558249999, 500.057723088, 471.75780312, 480.161403925, 585.9443075400001, 618.61411524, 666.209427774, 672.366160928, 583.2567654750001, 524.1805986, 466.157619429, 475.792351392, 519.926115624, 593.133809772], \"power_mean\": 567.6132101218421, \"energy_millijoules\": 2838.066050609211, \"energy_joules\": 2.838066050609211}}, \"1766400\": {\"active\": {\"elapsed_sec\": 20.034233377, \"elapsed_ns\": 20034233377, \"power_samples\": [423.71243193600003, 440.0805515970002, 510.9693863670001, 598.446182599, 627.7909902709999, 647.6105155589997, 602.0631225159999, 502.47933290899994, 378.54032652599994, 440.0307017450001, 479.6500459580001, 566.031604679, 628.3386094010001, 636.913493266, 620.9595444359999, 545.692462651, 497.353570482, 437.7764762129998, 422.413791671, 521.5608251009998, 617.596052883, 633.9754119749999, 645.2688603090002, 572.0209215609999, 492.6514449509999, 442.2318402559998, 441.08033106799985, 487.7386916460001, 565.8064728999999, 629.244994191, 639.3794729510001, 633.3103193410001, 548.1499353929997, 481.9946410609999, 432.82754225199994, 431.42523177500004, 517.7959878969999, 583.9263754719999, 626.353625931, 642.802820733, 590.106090871, 529.960265066, 452.94415642499996, 441.1302400899998, 481.8934866120002, 534.4365681180001, 617.3610004110002, 636.2064495399999, 648.8718567239999, 601.6574494540001, 495.26797785999986, 442.93167090299994, 433.828431639, 496.2447632950001, 563.4635614550001, 649.7636279759998, 636.794186577, 607.897514118, 544.380836556, 450.7443495859999, 460.644258897, 452.93310189600004, 516.4888598309998, 586.0392209759999, 647.485092543, 641.6018814030002, 592.3358063310001, 502.161027213, 540.2243942339998, 437.4273315989999, 524.997363996, 540.379833463, 600.4398345660001, 648.690960972, 649.951932909, 559.779047761, 503.3932356989998, 429.71869011, 438.37530280499993], \"power_mean\": 540.7967924165696, \"energy_millijoules\": 10834.44914880658, \"energy_joules\": 10.834449148806579, \"coremark_score\": 14985.763525, \"coremarks_per_mhz\": 8.483788227468297, \"ulpmark_cm_score\": 27.689455724017602}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [621.72478617, 580.729465504, 469.908176798, 464.628827446, 508.89168675300004, 547.4180640599999, 641.2900630859999, 668.090055836, 673.404267176, 625.217964752, 532.562337157, 468.65779308599997, 469.35224372, 500.891284158, 586.00212072, 653.16137603, 672.1340583840001, 630.1000259540001, 579.439595848], \"power_mean\": 573.3475890862105, \"energy_millijoules\": 2866.7379454310526, \"energy_joules\": 2.8667379454310526}}, \"1900800\": {\"active\": {\"elapsed_sec\": 18.620920358, \"elapsed_ns\": 18620920358, \"power_samples\": [521.1284306309998, 560.6684052310001, 633.7444537830003, 717.477493617, 729.6864017510001, 709.461731391, 658.0016349509998, 570.368462817, 536.5135471910002, 584.611183499, 585.8103419339999, 647.0028071219998, 715.266894015, 708.2613855909998, 708.4511925989999, 616.7488255099998, 554.6378394720001, 523.310451831, 572.3739312229999, 615.6915535529998, 674.167417559, 731.506623631, 703.016162775, 676.9708869759999, 589.417438071, 521.113065423, 529.2004421190001, 594.0931122209998, 633.3865832549999, 709.267763787, 722.4173692649998, 690.0572584550001, 655.4751332069999, 579.8633366129999, 527.7810433830001, 550.8484510080001, 583.126372697, 647.779356503, 736.4080143860002, 745.3613391109999, 703.3297883409999, 656.5542133559999, 575.0575428839999, 516.865714338, 531.6529727190001, 593.9200584209999, 676.7541849749999, 733.134911559, 727.3500660209999, 653.5953469350001, 625.1535177259999, 565.1126944470001, 543.7609226469998, 574.6167475429999, 617.9130145969999, 698.2209539949998, 714.4492800060001, 740.430796683, 681.713899531, 591.6457285710002, 526.740014551, 509.9525731929999, 593.8044916709999, 635.6685732759998, 689.6967101609999, 739.4251295259998, 731.015254521, 639.6226710630002, 594.046182271, 530.1264525329999, 529.0915820249999, 575.702000291, 642.7441096590002], \"power_mean\": 629.1690717560684, \"energy_millijoules\": 11715.707176886537, \"energy_joules\": 11.715707176886538, \"coremark_score\": 16122.964476, \"coremarks_per_mhz\": 8.48219932449495, \"ulpmark_cm_score\": 25.606648874927355}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [566.1322715759999, 526.4076069179999, 482.56684437499996, 462.017599029, 516.0588849599999, 577.6083846, 677.354702808, 678.1239140859999, 631.1485172880001, 578.1786468120001, 496.245218468, 459.816759486, 477.657762318, 543.6457385560001, 630.432591264, 661.8093927760001, 660.0876831479999, 630.432591264, 548.20176168], \"power_mean\": 568.6277300743158, \"energy_millijoules\": 2843.138650371579, \"energy_joules\": 2.843138650371579}}, \"2073600\": {\"active\": {\"elapsed_sec\": 17.082553326, \"elapsed_ns\": 17082553326, \"power_samples\": [752.610267853, 805.2896742689999, 891.8846694290002, 878.2652929309999, 824.7185423349998, 757.7828740860001, 702.3846424120001, 686.5515217170001, 763.331109411, 801.6235165950001, 850.697608911, 901.296849271, 908.7924296529999, 822.6647308320001, 755.1211511349999, 699.545473599, 711.6612769110001, 742.9528062389999, 801.4194518110002, 901.041329351, 899.0444489509999, 832.9785195559999, 811.655387961, 721.7136782309998, 693.2339681959999, 685.415916327, 734.1744960069999, 844.2831606149997, 915.2765442909998, 885.772944032, 865.997205577, 770.5203646630001, 709.0141042489998, 689.9618724210001, 541.0735919219998, 791.5632266910001, 874.313084323, 883.0147407329999, 843.708647415, 828.2512736409998, 749.0557092370001, 703.268633559, 720.9922250499998, 752.4138469909998, 804.880474813, 871.7709973980001, 913.369314705, 847.2398964749999, 812.6496452250002, 750.1894075369997, 698.0953552309999, 716.329026081, 746.1590926589998, 805.9417474349999, 904.1962813229999, 908.0598085989999, 820.776265203, 809.772446114, 745.327492087, 677.5429820749999, 740.036922015, 738.8091924510001, 831.379984321, 888.330647503, 887.886110343, 870.875202455, 804.114792903], \"power_mean\": 795.5233715573283, \"energy_millijoules\": 13589.570416707373, \"energy_joules\": 13.589570416707373, \"coremark_score\": 17575.722069, \"coremarks_per_mhz\": 8.475946213831019, \"ulpmark_cm_score\": 22.075753007701564}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [506.18696031800005, 455.97868789200004, 458.591185728, 549.632820185, 609.618130064, 659.5342992239999, 675.645620177, 610.611922316, 522.64118722, 476.76102735300003, 457.113387208, 490.795965668, 572.595950244, 636.3858515539999, 653.80648506, 658.8188988740001, 562.3820581900001, 522.718535684, 452.550077034], \"power_mean\": 554.3352131575264, \"energy_millijoules\": 2771.676065787632, \"energy_joules\": 2.771676065787632}}, \"2131200\": {\"active\": {\"elapsed_sec\": 16.595007233, \"elapsed_ns\": 16595007233, \"power_samples\": [841.2407662469999, 802.9156939430001, 748.946886933, 744.7657298820001, 819.0536817390001, 866.9810126579999, 946.5855470309999, 942.9932004789999, 905.5855126810001, 842.229859789, 751.126585935, 745.026759539, 775.6494683339998, 833.222611449, 943.513903247, 926.802734339, 948.9121107139998, 881.979948351, 799.0433248109999, 748.0754856769998, 804.675875085, 797.075985861, 877.8343511549998, 953.3988557690001, 936.696132361, 884.1414176929999, 871.0182626450002, 771.453783625, 737.6418106950001, 824.975760531, 812.7193135030001, 919.476619725, 951.3811222109997, 911.509307126, 898.0982599109999, 790.512276567, 742.535055639, 781.639688248, 785.3697739229998, 866.624689355, 916.8606312430001, 949.813786194, 965.5550611710001, 857.8229228870001, 804.7688858109999, 758.6706403910001, 766.266027543, 811.522114083, 860.7139907310001, 963.8048675609999, 945.2317696229999, 703.9032523229997, 866.7092586530001, 780.7178915640001, 751.6268158869999, 803.2021246749999, 857.740210065, 909.5271368909999, 955.949641695, 917.1378599370001, 894.2851338459999, 854.0146092609999, 747.2034908909999, 762.4717696110002, 775.515691704], \"power_mean\": 844.8379192253384, \"energy_millijoules\": 14020.091380257161, \"energy_joules\": 14.020091380257162, \"coremark_score\": 18094.089264, \"coremarks_per_mhz\": 8.490094436936937, \"ulpmark_cm_score\": 21.397863385002935}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [681.5580855119999, 670.533299964, 647.8495409999999, 573.1048065330001, 516.4920992399999, 461.857873148, 465.422073945, 544.76707128, 609.73866006, 667.7604579240001, 656.05140216, 641.321618738, 563.418793444, 459.952921422, 474.09708648400004, 501.549738632, 562.640413544, 648.124656959, 657.06380397], \"power_mean\": 579.1212844188948, \"energy_millijoules\": 2895.606422094474, \"energy_joules\": 2.895606422094474}}, \"2208000\": {\"active\": {\"elapsed_sec\": 16.054125567, \"elapsed_ns\": 16054125567, \"power_samples\": [803.270031659, 868.9475581, 936.999403311, 1014.7706292340002, 1030.5695352809998, 996.274609701, 937.7476291290001, 860.7850448309999, 806.351303131, 819.6304285560001, 876.9005209879998, 978.6859941279998, 1029.934723026, 1023.6939647229998, 975.7381182520002, 925.455812544, 825.8756069609998, 820.8965401109998, 861.4768311610002, 905.5699506049999, 995.2974605110002, 1027.4564191589998, 988.8449206850001, 991.167606843, 893.155597969, 835.465204834, 830.0595949309999, 854.0085900989999, 943.7345818769999, 989.233068783, 1030.4109341459998, 1029.447081192, 944.489830507, 886.8748791930001, 814.6030286409999, 824.975760531, 870.6268172639999, 934.378652667, 1024.9922103629997, 1026.0303338469998, 978.8718607910001, 945.0869045180001, 884.2587800109999, 823.4980335269998, 818.158051619, 892.1076247709999, 932.811718179, 1038.480924043, 1022.097200111, 963.368096371, 949.806011279, 868.891748979, 824.975760531, 874.2203796120001, 886.121267163, 969.0316641430001, 1029.782081031, 1008.912314051, 963.0637994959999, 929.6579140709999, 864.0245947259999, 803.789509825, 884.7080613269999], \"power_mean\": 923.659541423, \"energy_millijoules\": 14828.546259162478, \"energy_joules\": 14.828546259162477, \"coremark_score\": 18704.408005, \"coremarks_per_mhz\": 8.471199277626813, \"ulpmark_cm_score\": 20.231248212523305}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [559.7500617779999, 492.31399548800005, 476.078834748, 471.268763856, 536.1909328160001, 615.5090625, 655.5010492800001, 673.01170482, 616.360625, 563.1964195899999, 477.940656908, 456.842490632, 487.020891896, 611.74956219, 639.5186952390001, 666.788244243, 662.070728998, 598.360752184, 538.1094524040001], \"power_mean\": 568.2938381352632, \"energy_millijoules\": 2841.469190676316, \"energy_joules\": 2.841469190676316}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm7225/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 250 ms\nBaseline power usage: 571 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 768 1017 1248 1324 1516 1612 1708 1804\n\n 300:  1114     3.7 C/MHz     29 mW    7.8 J   38.3 I/mJ   269.3 s\n 576:  2139     3.7 C/MHz     47 mW    6.5 J   45.9 I/mJ   140.3 s\n 768:  2851     3.7 C/MHz     59 mW    6.2 J   48.7 I/mJ   105.2 s\n1017:  3778     3.7 C/MHz     74 mW    5.9 J   51.1 I/mJ    79.4 s\n1248:  4634     3.7 C/MHz     89 mW    5.8 J   52.0 I/mJ    64.7 s\n1324:  4919     3.7 C/MHz     93 mW    5.7 J   52.7 I/mJ    61.0 s\n1516:  5632     3.7 C/MHz    107 mW    5.7 J   52.8 I/mJ    53.3 s\n1612:  5989     3.7 C/MHz    125 mW    6.3 J   47.9 I/mJ    50.1 s\n1708:  6345     3.7 C/MHz    132 mW    6.2 J   48.2 I/mJ    47.3 s\n1804:  6702     3.7 C/MHz    143 mW    6.4 J   47.0 I/mJ    44.8 s\n\n\n===== CPU 6 =====\nFrequencies: 300 787 979 1036 1248 1401 1555 1766 1900 2073 2131 2208\n\n 300:  2544     8.5 C/MHz     82 mW    9.6 J   31.2 I/mJ   117.9 s\n 787:  6674     8.5 C/MHz    165 mW    7.4 J   40.4 I/mJ    45.0 s\n 979:  8311     8.5 C/MHz    212 mW    7.7 J   39.1 I/mJ    36.1 s\n1036:  8787     8.5 C/MHz    229 mW    7.8 J   38.3 I/mJ    34.2 s\n1248: 10572     8.5 C/MHz    296 mW    8.4 J   35.7 I/mJ    28.4 s\n1401: 11873     8.5 C/MHz    354 mW    9.0 J   33.5 I/mJ    25.3 s\n1555: 13197     8.5 C/MHz    428 mW    9.7 J   30.8 I/mJ    22.7 s\n1766: 14986     8.5 C/MHz    541 mW   10.8 J   27.7 I/mJ    20.0 s\n1900: 16123     8.5 C/MHz    629 mW   11.7 J   25.6 I/mJ    18.6 s\n2073: 17576     8.5 C/MHz    796 mW   13.6 J   22.1 I/mJ    17.1 s\n2131: 18094     8.5 C/MHz    845 mW   14.0 J   21.4 I/mJ    16.6 s\n2208: 18704     8.5 C/MHz    924 mW   14.8 J   20.2 I/mJ    16.1 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm7225/uptime.txt",
    "content": " 04:09:06 up 26 min,  load average: 1.69, 1.78, 1.52\n"
  },
  {
    "path": "results/sm7225/versions.txt",
    "content": "Kernel: Linux version 4.19.297-perf-g619da696 (hridaya@fedora) (Android (11039501, +pgo, +bolt, +lto, +mlgo, based on r498229b) clang version 17.0.4 (https://android.googlesource.com/toolchain/llvm-project e34ed7d63863b45858e74126edaa738e75887800), LLD 17.0.4) #1 SMP PREEMPT Fri Nov 24 14:49:36 +0545 2023\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm7250ab/250kiter-headless/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (mJ),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1109.242653,3.69747551,87.98500459865504,19831.24151841446,12.606371606531063,225.39342481\r\n1,576000,2133.961572,3.704794395833334,75.85969392000855,8887.789982290256,28.12847743906507,117.16089959\r\n1,614400,2276.473106,3.7051971126302083,118.2244561867293,12984.167216626245,19.254219067656077,109.826406781\r\n1,864000,3203.157032,3.707357675925926,70.60259028315157,5510.812597816518,45.36536047316406,78.053971897\r\n1,1075200,3345.779634,3.111774213169643,88.72648967386866,6630.205623916764,37.70622122158462,74.726337628\r\n1,1363200,5056.532028,3.7093104665492955,158.45291498550756,7834.71264763009,31.90927494649368,49.445052168\r\n1,1516800,5626.702077,3.7095873397943038,128.759434036548,5721.286308561694,43.6964672832199,44.433919358\r\n1,1651200,6125.649319,3.7098166902858525,122.39268197467896,4995.43761532718,50.04566551545776,40.814839047\r\n1,1804800,6695.950289,3.7100788392065605,151.914070530054,5672.431197584896,44.072813101098596,37.339735403\r\n6,652800,2539.824447,3.89066244944853,31.632826671408672,3114.0742766749413,80.28067983880526,98.444388452\r\n6,940800,7321.072976,7.781752738095239,141.82577081753328,4844.889398285158,51.600765146153215,34.160853633\r\n6,1152000,8599.931201,7.465218056423611,169.07392273346082,4917.1949538120025,50.8419947446237,29.083106811\r\n6,1478400,11511.188876,7.7862478869047616,255.86270031086042,5560.03833289744,44.963718778845234,21.730554419\r\n6,1728000,13464.024128,7.791680629629629,442.187512573589,8216.337272971936,30.427183268436153,18.581115566\r\n6,1900800,14802.534194,7.787528511153199,531.3248501194545,8979.619567894937,27.84082311168631,16.900432129\r\n6,2092800,16299.387143,7.7883157219992345,600.2466926293833,9213.901682103906,27.132913788908034,15.350191505\r\n6,2208000,17198.679141,7.789256857336957,689.9199162209122,10036.689174371224,24.908612357785998,14.547614786\r\n7,806400,6280.933598,7.788856148313492,216.72123416112098,8628.734341637326,28.972962905306204,39.814900349\r\n7,1094400,8521.662065,7.786606419042397,241.58732365463788,7090.632048855269,35.25778777935046,29.350182541\r\n7,1401600,10913.694504,7.7865971061643835,311.54753982413325,7140.6251820398375,35.01094002648426,22.919857387\r\n7,1766400,13754.401408,7.786685579710144,491.3511996282638,8937.101363884385,27.97327565403611,18.188825774\r\n7,1996800,15558.874782,7.791904438100962,611.8238945923016,9838.67440145856,25.409927170975198,16.080892702\r\n7,2188800,17038.097185,7.784218377649853,647.4818140160172,9507.82373982676,26.294134897851528,14.684310098\r\n7,2304000,17946.877243,7.789443247829861,671.0304034160546,9355.15607158012,26.723231348269113,13.941478693\r\n7,2400000,18676.228896,7.78176204,784.446376355151,10510.321544618406,23.786141930929542,13.398393901\r\n"
  },
  {
    "path": "results/sm7250ab/250kiter-headless/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1475.4843755829934, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [690.304279875, 687.39067452, 692.761674452, 706.173561698, 687.5740860749999, 680.9889505210001, 688.9698301499999, 687.51294889, 682.2932062799999, 698.1333077390001, 703.469681679, 700.832576807, 692.8232866059999, 692.854171876, 693.008281454, 702.135588194, 702.198031252, 704.6469937280001, 696.9187763549999, 706.205042108, 695.5536003560001, 703.4383204139999, 732.6415467689999, 695.460746692, 708.873466368, 691.519959746, 694.095708462, 698.102184374, 716.6917029419999, 704.835034772, 702.1667294619999, 694.126653207, 694.095708462, 692.8232866059999, 684.75309651, 698.0400972510001, 690.0892325499999, 690.212139275, 699.405195456, 699.467401224, 691.4584662369999, 688.7246493600001, 700.614361253, 701.916796708, 694.003032918, 692.9157840299998, 707.350338414, 680.746620598, 692.7309475679999, 704.678253336, 699.3740126160002, 711.4468983559998, 706.1422427260001, 723.3976096650001, 710.2708338150001, 727.43178816, 720.826019215, 712.812710151, 720.7938841899999, 714.0558286170001, 733.84453198, 727.3669233599999, 729.876584575, 722.979135015, 752.560206675, 730.1364961419999, 732.6742172639999, 731.4054753480001, 747.2549229600002, 755.395390242, 739.446309096, 779.140424502, 767.477275488, 746.186917661, 751.4941619479998, 758.198133103, 752.9287134540001, 750.2559147280001, 787.6006163629999, 743.717270835, 734.3346423, 729.0618988140001, 739.018400519, 740.2857176960001, 775.4163484859998, 738.506393526, 746.5188916389999, 751.928851368, 749.221650254, 773.122569544, 761.1754545499999, 747.853578654, 747.9200579760001, 733.3589573309999, 773.122569544, 746.6517835859999, 725.31200716, 786.476409372, 865.2605640060001, 734.563248552, 734.628708492, 775.865112503, 733.2611133869999, 729.5841214630001, 731.0148120519999, 773.1914809839999, 718.632711264, 717.2339785529999, 713.0982213269999, 703.814012286, 705.211439124, 711.8901414059999, 749.221650254, 705.180018384, 699.871978584, 706.5192004559999, 701.206843719, 699.778589976, 703.9079352539999], \"power_mean\": 720.4826850770925, \"energy_millijoules\": 3602.4134253854622, \"energy_joules\": 3.6024134253854623}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 225.39342481, \"elapsed_ns\": 225393424810, \"power_samples\": [101.65669605200003, 56.57725759399989, 57.49701049400005, 93.02594149599986, 64.10620357800008, 64.27189380200002, 68.10848403300008, 64.23868764199983, 73.65062328199997, 64.23868764199983, 57.56265891199985, 89.50126270800001, 65.47339210499979, 57.43136207600003, 93.57712572399998, 68.208466585, 64.13923944999999, 53.52272960799996, 53.52272960799996, 54.8896225069999, 59.30841243400005, 54.82421176800017, 57.26715664999995, 56.16279836399997, 66.84086987, 98.81013049600006, 64.27189380200002, 76.05010879399993, 65.60628405199998, 73.41560936999997, 58.929957752000064, 56.19564747899983, 66.94067430199993, 64.20565176999992, 65.53992337499983, 70.81437699599985, 98.70604884800014, 56.70872319199998, 61.466559868999866, 93.198164442, 68.17508199999997, 56.16279836399997, 64.072997418, 70.81437699599985, 60.09954904600011, 67.97511689599992, 64.10620357800008, 102.88646971000003, 61.532733898999936, 52.155787508, 97.5452467240001, 62.805086794999966, 64.13923944999999, 60.1654347540001, 44.41403804699985, 76.08367738999982, 65.17468376199997, 60.198462294000024, 92.27275848199986, 57.52991908399997, 58.83122262400002, 106.88910610000005, 65.34067075100006, 74.68245179900009, 60.198462294000024, 62.705986705999976, 57.49701049400005, 60.033663338, 69.54273819000002, 62.772110092999924, 64.13923944999999, 67.50858872099991, 89.39860457000009, 50.62624372999983, 53.39197757399984, 61.40055551599983, 70.84788072599997, 54.791422323000006, 61.40055551599983, 72.08157535999987, 57.43136207600003, 69.47585006999998, 64.072997418, 100.14422398099998, 57.49701049400005, 65.440297063, 96.10730918599984, 48.055841533999796, 72.57659418599985, 65.50665774000004, 62.47429987699991, 56.0644194759999, 54.82421176800017, 62.838233479999985, 81.35640211700002, 74.74964337999995, 64.03996154600009, 98.671295558, 58.63375236799993, 57.49701049400005, 52.05794356399997, 54.791422323000006, 60.000635798000076, 50.69146576999992, 53.45726966799987, 47.21271397400005, 46.68516756199995, 38.420670971999925, 97.5105529089999, 45.38339963199985, 44.017217881999954, 38.676944834000096, 34.64312338400009, 45.31881979699995, 42.747585587, 26.761093754999933, 41.22065530199984, 47.95853194999995, 32.0026969459999, 66.64126100599992, 38.51673254800005, 47.86122236599999, 74.64876964399991, 53.359415449999915, 47.50447610000003, 50.62624372999983, 43.88812979199986, 39.98315833699996, 57.365713658000004, 43.98490443200012, 93.37038738800015, 51.89492617099984, 34.515699238000025, 86.66221924999991, 49.29238783999995, 51.89492617099984, 45.28644687199983, 45.22186703699981, 57.03713404399991, 49.194900136, 38.5488079029999, 49.975361217999875, 35.94508234399984, 46.52317188199993, 75.88157367799988, 30.605285485999843, 39.919053082000005, 41.2528498019999, 42.61873509199995, 35.94508234399984, 34.48396588200012, 38.676944834000096, 30.573729834000005, 39.95102331199985, 49.29238783999995, 67.80853637699988, 42.5221385719999, 30.573729834000005, 71.378125007, 45.15728720200002, 46.36134252199997, 46.620302761999824, 41.2528498019999, 39.95102331199985, 31.9075265539999, 39.88691805699989, 81.28861692200007, 38.61279412399995, 33.1503472820001, 83.85408920200007, 41.2528498019999, 45.18949411199981, 38.61279412399995, 43.82366860200011, 37.11918720199992, 52.54267681399995, 39.82281280199993, 28.860676506000004, 41.22065530199984, 45.22186703699981, 78.68857138700014, 45.18949411199981, 43.98490443200012, 47.82889692200001, 45.22186703699981, 38.61279412399995, 38.452746326999886, 27.969173066000053, 34.57949309800006, 54.59519010600002, 58.53501723999989, 89.29577034600004, 48.220190026999944, 51.89492617099984, 81.0173018869998, 41.15643140199995, 43.855816342000026, 53.26139338600001, 55.83498104199998, 34.54759616799993, 50.658854750000046, 54.562400660999856, 85.22606349599982, 66.60810679400004, 43.855816342000026, 87.85931752199997, 49.194900136, 50.46352310199984, 59.86869501000001, 58.81384619399989, 55.80213192699989, 68.90850160599996, 62.50744656200004, 99.86625744199989, 61.202372779999905, 66.50830236200011, 103.94128908899995, 62.54042326399997, 53.130641351999884, 63.94051335400002, 61.30146414799981, 58.56798530499998, 74.58157806299994, 57.20133946999999, 63.87410103399998, 59.73692359400002, 58.81384619399989, 107.84154407699998, 63.47647855399998, 74.27895685500005, 66.4749772519998, 62.60671663400001, 59.83583684200005, 66.60810679400004, 67.875134344, 66.4749772519998, 61.16945544200007, 70.61387005799997, 109.2806109779998, 69.17553956200004, 65.24104443899978, 97.12963261199991, 55.80213192699989, 65.77651712599993, 49.06502781799986, 58.07430966499987, 58.40348311399987, 51.79708222699992, 54.46420047699996, 91.79126188199996, 53.130641351999884, 59.76978176199998, 106.46850229199993, 63.87410103399998, 71.88054036799986, 58.502218242000026, 57.135691051999856, 74.51438648200008, 63.74161696999988, 54.43141103200003, 55.047949937999874, 59.83583684200005, 52.73855309599992, 117.03884916699985, 55.76928281200003, 61.23545979499988, 61.16945544200007, 58.502218242000026, 57.135691051999856, 59.8028093019999, 70.41319130599982, 70.446523222, 58.337716050999916, 67.875134344, 97.06042289899995, 58.43628211199996, 71.74663178599997, 117.55377540199993, 78.51961480200009, 76.54061605999993, 79.71772635199989, 82.52047060200005, 75.74695322599996, 86.55974126599995, 71.7800228719999, 115.634473232, 79.7853929019999, 81.15287227699991, 114.29689918999986, 77.08039370599988, 86.45726328199999, 86.55974126599995, 85.19208032200004, 82.45239220199994, 81.84090852200006, 89.09010189799994, 81.77300468199996, 82.38448836199996, 70.48002695199989, 114.40311944599989, 95.65795082599993, 87.75666141799991, 74.44702217199995, 94.46263331199987, 86.45726328199999, 87.72238412299987, 95.83076730199991, 94.39366088899988, 90.49215847699998, 98.289722256, 131.60559487799992, 85.67183270600003, 87.72238412299987, 142.83727065200003, 103.76669104999996, 98.42855719399995, 100.99537161799992, 89.09010189799994, 86.25248278999993, 99.62292514099988, 90.45776223199994, 119.70549283699984, 91.68824811399986, 97.12963261199991, 134.30805593599996, 82.45239220199994, 79.75164660199982, 82.38448836199996, 82.7989537919999, 86.389003118, 80.13539733199991, 87.72238412299987, 136.90169069799992, 93.16364905199998, 90.35492627899987, 121.0030497219999, 95.72704189399997, 80.98332216199992, 92.92257232799989, 102.36356588799993, 87.55134921000001, 90.25191393499995, 100.99537161799992, 85.02163893899979, 78.38434534700002, 77.08039370599988, 115.634473232, 81.29732868199994, 79.61613955199994, 95.55422541799999, 90.32053003399994, 86.35496077399989, 94.29011360099992, 96.88730965799994, 108.99931712999978, 96.95651937100001, 96.95651937100001, 139.64523863299985, 110.297290535, 103.59209301099997, 150.13024221799992, 112.9636963050001, 103.76669104999996, 119.63408188699998, 110.924975012, 117.03884916699985, 116.79010848200005, 111.66584184999988, 151.61149252899986, 107.59589511899992, 106.22327010599997, 150.1673163979999, 113.06973844099991, 115.59912837199988, 112.9636963050001, 99.62292514099988, 100.99537161799992, 110.297290535, 115.634473232, 119.52714856700004, 114.29689918999986, 94.68996542599996, 135.45953453000004, 108.5772860259998, 114.29689918999986, 114.1553934379998, 114.26161369399983, 111.454113818, 110.297290535, 102.22401738600001, 122.26484694700002, 118.40763420199994, 107.56072511399998, 159.31537696199985, 111.70119027999988, 122.33631208199995, 159.5024459419999, 110.22689359399999, 114.71259183199993, 118.19412380200004, 107.24473614599992, 123.49489336099987, 118.2654158019999, 122.33631208199995, 163.355229002, 121.0030497219999, 128.86269249500003, 160.727323372, 124.72021257199992, 126.08881846099985, 112.82242784300001, 106.29331072299988, 100.85606071099994, 103.62690495300001, 110.26218254899982, 112.15094870099995, 96.88730965799994, 101.98003142999994, 135.45953453000004, 113.03451211499987, 102.2937020679999, 114.22614631399983, 114.22614631399983, 94.18656631299996, 102.25894929599986, 115.70552733199986, 115.45720236199998, 118.2654158019999, 103.52211024100006, 155.42892460699977, 115.52807427199991, 120.89593828199997, 146.6529310300001, 119.56285404199991, 100.40361322099989, 114.22614631399983, 116.93227208699989, 120.89593828199997, 110.08591874299987, 112.82242784300001, 144.72076428699995, 107.56072511399998, 106.18815977099996, 148.79733609799985, 110.15649665299986, 111.52462940399994, 118.05190540199999, 120.89593828199997, 120.86017333200004, 102.614128661, 126.08881846099985, 105.41717282499997, 118.12301460200013, 114.26161369399983, 151.35193780200007, 110.19160463899993, 114.08445867799992, 106.25838044099999, 118.15866060200005, 114.19067893399995, 120.86017333200004, 115.42167531199982, 120.93170323199979, 110.15649665299986, 108.89380935399981, 154.05901620199995, 106.78842787600001, 112.85765416900006, 151.94650404700008, 116.79010848200005, 114.26161369399983, 110.08591874299987, 120.93170323199979, 111.52462940399994, 104.85513500600007, 112.92846997899994, 154.1333307619999, 110.08591874299987, 111.55997783399994, 146.02102580200005, 120.93170323199979, 116.82569500699992, 114.08445867799992, 121.335065332, 110.12120769799992, 107.83891225799994, 115.52807427199991, 151.3890714569999, 106.18815977099996, 110.08591874299987, 162.022501002, 110.12120769799992, 108.75307209799985, 108.75307209799985, 123.42312517099981, 110.15649665299986, 114.19067893399995, 107.52555510900004, 110.12120769799992, 109.94512486099995, 112.00949865999996, 140.57595920999984, 101.21278337599983, 103.45230691400002, 84.74872252099976, 96.81809994499997, 102.22401738600001, 94.08301902499977, 82.21464148199993, 92.85354154800007, 92.71583399200006, 95.69258516599996, 139.31660569999997, 88.81593599600001, 79.41296595199981, 131.24374103399987, 87.41441581099991, 90.69079919399996, 91.41295574599985, 88.98154595300002, 90.21751769000002, 94.08301902499977, 107.455395458, 147.24307762599983, 87.48297040099999, 92.68131860200003, 136.57394055399993, 98.08155895999994, 104.78521303399998, 104.71529106199989, 108.68279380199999, 114.19067893399995, 97.97765553399995, 100.78649467399998, 119.45592072199986, 99.27551159899997, 111.5501037900001, 139.28000751499985, 112.7516120329999, 112.71638570699997, 106.04807853699992, 110.05081075699991, 112.71638570699997, 110.12120769799992, 118.08736860199986, 102.0147842020001, 98.04698389199996, 107.35006580200002, 152.65203281200002, 104.71529106199989, 104.7501621739998, 146.02102580200005, 87.41441581099991, 103.77071532199989, 103.417315529, 115.13800548199993, 96.85261584299997, 99.37977136699988, 95.45050000999993, 129.9835544839999, 88.85009667999998, 86.04752682200001, 127.24172237799985, 84.74872252099976, 78.04643217700004, 83.44560456199997, 88.71310177200007, 78.01257140200016, 79.41296595199981, 106.08300881899982, 86.86703377699996, 91.34422100200004, 92.30235731999994, 129.83901337100008, 87.346037002, 86.15000480599986, 96.71419641700004, 98.04698389199996, 84.68058100199994, 87.48297040099999, 103.52211024100006, 102.04971611200006, 92.71583399200006, 106.08300881899982, 125.98117858799992, 95.45050000999993, 84.68058100199994, 134.33258245199988, 96.57559907399991, 97.56132894199993, 96.50638936099995, 89.9084806579998, 88.67876500200009, 79.2776328519999, 80.678027402, 116.64812737199998, 83.41150588699998, 95.34677460199998, 115.31545854199987, 84.71473934699998, 86.04752682200001, 83.44560456199997, 95.27768353400006, 90.01149300199995, 85.26192076999996, 79.34529940200002, 76.27072723699996, 79.41296595199981, 93.97964904399987, 128.4660915139999, 82.04479460200002, 88.61026754800002, 83.34348340199995, 70.01183380199996, 72.64383954599998, 72.74436273799995, 88.644604318, 92.646980214, 83.27546091700003, 83.30955959199991, 121.90715384199996, 78.431192152, 84.74872252099976, 112.08013289099995, 84.61243948299989, 80.678027402, 73.94282622100002, 89.87426080399996, 73.87563464000004, 68.70818026200004, 80.678027402, 120.43191098199998, 79.37921965199996, 81.94285156199999, 117.98079620199996, 85.94504883800005, 91.34422100200004, 87.24338089799994, 77.40429296700006, 71.31117071599999, 92.13013437400002, 79.2776328519999, 121.90715384199996, 75.30917720599996, 97.838820596, 113.97842030599986, 83.27546091700003, 69.944998156, 79.209966302, 80.542457012, 95.31231787399986, 95.24304919399981, 79.34529940200002, 79.17604605199995, 80.74581259699983, 95.8829681929999, 123.20837266399985, 67.87362233400006, 80.57626248199995, 84.57828113799985, 80.61024220699994, 87.31193548800002, 92.44024187800005, 85.91083101799984, 91.20675151399996, 81.90881236199982, 93.84152689099994, 131.279982174, 93.91049931399982, 89.94287690299984, 129.8028317059999, 85.97926665799991, 91.75117309200004, 100.54292412799998, 75.62954627599993, 80.508477287, 85.91083101799984, 93.80695202599986, 124.61256618799996, 88.57593077800004, 96.50638936099995, 136.50116954600003, 87.27765819299998, 96.50638936099995, 91.30994197799998, 88.61026754800002, 93.80695202599986, 87.38031429700004, 80.508477287, 95.70985495199989, 93.84152689099994, 91.40672720000009, 135.0596663829998, 88.54177009399996, 84.64659782799993, 81.84090852200006, 88.54177009399996, 71.27760751099993, 96.610292889, 85.94504883800005, 87.20927938399996, 89.80546831399988, 91.20675151399996, 133.76377335799998, 73.94282622100002, 81.8068693219999, 121.79986428199993, 81.874947722, 71.67050606600003, 95.38140894200001, 89.73685221499977, 68.57457552999983, 96.57559907399991, 84.51013961900003, 135.0596663829998, 92.54361104600002, 87.10662328000001, 133.65487955000003, 95.10486705799997, 95.27768353400006, 95.173958126, 89.77124846000004, 96.50638936099995, 85.84257085399997, 87.140724794, 87.44493039999998, 104.61031822999996, 91.06910532999984, 139.0973919559999, 87.10662328000001, 92.47458026599998, 88.57593077800004, 96.57559907399991, 89.9084806579998, 88.40459909999993, 79.1421258019999, 77.91116272199986, 85.80835303399988, 88.43893587000002, 127.06177964999983, 85.84257085399997, 87.24338089799994, 130.01395835000005, 91.17229579399998, 80.13539733199991, 96.50638936099995, 89.94287690299984, 85.80835303399988, 87.17500208900003, 81.8068693219999, 124.43321698999989, 93.84152689099994, 101.56156506199989, 134.98701401999995, 96.50638936099995, 81.874947722, 103.10311083600004, 85.70587505000003, 96.610292889, 86.52496395100002, 99.10180482800001, 85.3986165739999, 89.83986455899992, 88.50743332400009, 124.3972734199998, 100.43848565600001, 88.43893587000002, 88.43893587000002, 92.47458026599998, 93.6344323149998, 89.70245596999985, 91.06910532999984, 85.87678867399995, 97.769492238, 96.54108317600003, 119.13512076199981, 83.52129932399987, 88.473096554, 130.737294334, 95.13932378599986, 101.80555101799996, 84.47598127399988, 93.73797960299987, 88.57593077800004, 95.13932378599986, 97.9081489539999, 127.13371975399991, 93.80695202599986, 75.10707349400002, 124.43321698999989, 91.13784007399988, 96.43717964799998, 87.24338089799994, 90.31249305800009, 77.80975404200001, 85.3986165739999, 82.96909743699996, 129.76683558799994, 81.67106164200004, 84.61243948299989, 126.9537770259999, 92.33687271000008, 89.73685221499977, 88.54177009399996, 87.140724794, 83.1053172720001, 95.07023271799994, 92.44024187800005, 88.473096554, 84.40783975499983, 75.7645773569999, 115.03160652199983, 81.39927172199998, 95.10486705799997, 97.80406730599998, 84.40783975499983, 89.73685221499977, 81.73896548199991, 81.73896548199991, 87.07234598499986, 99.03217929799996, 87.00396717600006, 132.395160153, 88.301764876, 95.00114164999991, 132.14161431899993, 83.1053172720001, 84.81796648999989, 83.1053172720001, 91.75117309200004, 91.10356104999994, 91.06910532999984, 87.140724794, 128.32197401600013, 92.509095656, 85.56935472199996, 129.622294475, 85.70587505000003, 81.77300468199996, 87.03806868999993, 76.3717838739999, 96.43717964799998, 107.03407683400007, 87.03806868999993, 90.20930259399984, 97.80406730599998, 89.0501620519999, 140.2101345619999, 89.70245596999985, 92.47458026599998, 88.40459909999993, 85.70587505000003, 89.70245596999985, 88.33610164600009, 85.7400928699999, 89.73685221499977, 108.331221658, 100.47317925799996, 125.51387752699998, 98.89328529199986, 104.26052862199992, 138.03792142099985, 91.13784007399988, 88.94714970799987, 87.07234598499986, 91.00037058600003, 93.77255446799995, 96.43717964799998, 83.07121859699998, 136.31914848999998, 92.371211098, 84.339698236, 126.80989681799986, 77.77606691200003, 81.70492628199997, 80.40671236699995, 107.10441684400007, 93.6344323149998, 103.66574248999996, 83.03711992199999, 85.94330462199991, 111.06600618399989, 80.40671236699995, 133.582345832, 83.07121859699998, 88.40459909999993, 83.00319611200007, 84.3736814099999, 91.03464960999997, 93.73797960299987, 83.00319611200007, 81.77300468199996, 89.80546831399988], \"power_mean\": 87.98500459865504, \"energy_millijoules\": 19831.24151841446, \"energy_joules\": 19.83124151841446, \"coremark_score\": 1109.242653, \"coremarks_per_mhz\": 3.69747551, \"ulpmark_cm_score\": 12.606371606531063}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [681.140387268, 707.192962475, 681.2010864780001, 678.440700322, 670.457565576, 681.170736873, 682.5056020079999, 675.771207342, 677.1661414679999, 721.114740055, 667.787954256, 689.15359764, 720.120367025, 687.7883019699999, 674.4320846339999, 683.7840625, 691.827585372, 683.814375, 685.088280765], \"power_mean\": 686.3135652119473, \"energy_millijoules\": 3431.5678260597365, \"energy_joules\": 3.4315678260597364}}, \"576000\": {\"active\": {\"elapsed_sec\": 117.16089959, \"elapsed_ns\": 117160899590, \"power_samples\": [103.42074596599991, 153.4641176419998, 97.9551259069998, 105.52232377699988, 154.8703885519999, 105.59254444700002, 118.88573175199986, 108.19048440199992, 110.96014216799995, 114.88986270199996, 124.18198065199988, 112.39825929899985, 152.09508661199993, 110.854278152, 98.85847252699989, 144.2060036119999, 109.62806717299986, 98.85847252699989, 110.96014216799995, 100.29917474899992, 109.62806717299986, 112.22158293199993, 90.82844537799986, 96.05625935099988, 89.4278151829999, 88.87853360899987, 124.07433426799992, 87.410769716, 70.97605502299996, 122.88596787199981, 82.93517362700004, 89.46221142799982, 76.2369261319999, 78.93912615199997, 78.93912615199997, 78.87128565199998, 82.90107495199993, 116.2574055770001, 86.96968988099991, 90.93163584199999, 118.95695959699992, 89.49660767299986, 81.60315780200006, 85.60357254200005, 86.93558836700004, 84.16925685299987, 76.2369261319999, 77.539388777, 82.7989537919999, 74.83765955599983, 72.79970569900001, 120.32479954200005, 70.07156967799995, 70.80858323599989, 118.77879843199992, 74.83765955599983, 69.64398002799987, 57.54783502700002, 78.93912615199997, 73.70739659399999, 76.16949726099983, 81.63702244199999, 101.49188038, 64.14532559999986, 81.53507940199995, 117.518129402, 66.87548002699987, 73.57301343199993, 70.97605502299996, 61.48176913999998, 72.17398414599995, 65.47710382999992, 70.90910073199996, 60.11253740899997, 61.51491582499989, 68.27426502200001, 102.78872669999998, 52.795133651000015, 52.215880651999896, 101.52663315199993, 56.18319832399982, 53.4495773430001, 52.15058855799987, 45.454898521999894, 61.51491582499989, 54.818511503999844, 50.851480822999974, 101.49188038, 49.454421077999996, 64.07896492299983, 94.62087435799992, 70.77502003099994, 61.41564575299992, 57.51503602899993, 61.48176913999998, 53.38416660400003, 60.07962007099991, 70.70806573999994, 57.38333283600002, 50.851480822999974, 72.20743440199999, 104.08545406999997, 54.06432951499994, 56.01882413599992, 91.99224981600003, 62.81354737000004, 60.01344604099995, 68.00705555800005, 61.44862245500008, 60.24471579199985, 60.04653305599993, 54.687283501000024, 101.52663315199993, 60.17871143899981, 48.02521461900005, 97.14500235000003, 66.60891695600003, 42.69468637199998, 58.78081865399997, 50.78613983299999, 64.14532559999986, 66.80888205999997, 53.4495773430001, 54.720132616, 65.47710382999992, 56.1502897339999, 101.42201655999997, 56.65938794199997, 62.81354737000004, 110.43100336199996, 56.1502897339999, 70.84214644099984, 58.681905406000055, 64.14532559999986, 63.94607297599998, 54.687283501000024, 62.64785714599998, 97.4224940040001, 53.4495773430001, 58.714932945999976, 95.98687172100006, 64.01243365300002, 50.78613983299999, 60.21162877699999, 53.416956048999964, 58.74796048600001, 53.48236678799992, 54.75298173099986, 57.38333283600002, 56.051732725999955, 51.98727439999993, 94.72459976599987, 60.555361790000006, 54.65460284299991, 86.73027615899991, 55.95317571800001, 56.051732725999955, 46.69367398400004, 49.324311469999884, 34.7649896649998, 41.491996231999906, 36.096649249999814, 83.93049878, 29.43398522799987, 41.36314573699997, 77.2690235120001, 48.02521461900005, 41.39539971199997, 38.63595921199999, 50.557948990999876, 31.9744839440001, 33.274009003999936, 35.90488233799999, 45.260636761999876, 47.96027846000004, 39.93518670199978, 83.82819891600002, 50.00355582199984, 46.56403895599999, 75.8658073329999, 42.56576399200003, 43.60620905699989, 38.60382418699976, 47.96027846000004, 37.36415812500002, 42.66253863199995, 35.80899888199997, 81.263289482, 42.59791173199994, 48.02521461900005, 90.48441826599992, 42.59791173199994, 49.324311469999884, 47.927726914999994, 45.22837068199988, 47.96027846000004, 50.52527849599994, 55.887527299999874, 45.22837068199988, 58.48424828200007, 43.89706733699984, 94.51714894999986, 61.91868393000004, 43.99402009699986, 83.82819891600002, 49.259089429999904, 42.24312662199998, 51.7585003019999, 42.59791173199994, 38.732199491999836, 46.56403895599999, 43.89706733699984, 85.125400442, 39.967381201999956, 43.92927424699985, 77.23516273699988, 37.23618568300003, 35.90488233799999, 48.02521461900005, 29.402266917999896, 39.967381201999956, 42.66253863199995, 42.56576399200003, 39.87096280200001, 42.59791173199994, 38.539718931999914, 77.16761483200003, 39.16400460199998, 42.59791173199994, 80.95746036199989, 47.862790756000095, 47.96027846000004, 50.49277554199989, 37.17219946199998, 42.53345054200008, 39.87096280200001, 43.832487501999935, 87.753433072, 39.806738902000006, 41.17011810199995, 71.70412874599992, 39.83893340199995, 42.21097888199995, 50.36226110300004, 37.04406253100012, 49.161590841999896, 45.09880740199992, 53.02415531300005, 42.436675901999934, 45.0016765219998, 51.69320820799999, 85.0911826219999, 45.81805435399997, 53.02415531300005, 94.30969813399997, 39.64609660200006, 47.96027846000004, 38.44347865199984, 38.57185395699992, 42.50130280199994, 42.404528161999906, 37.17219946199998, 78.431192152, 46.46672937200003, 28.00751149100006, 75.89943509899979, 37.26809654899989, 46.59636439999997, 33.33780286400008, 39.967381201999956, 53.25317697499986, 38.732199491999836, 38.60382418699976, 37.30017190399997, 47.862790756000095, 53.22055568099995, 82.56061279699998, 56.52768474900006, 64.01243365300002, 91.88888064799994, 65.21101564399999, 62.38271873000008, 61.150982221999925, 63.813351621999914, 63.91280734099985, 65.17769053400002, 54.58890461299984, 107.9091905539999, 71.93897023399995, 66.67551492299992, 90.65634347399998, 61.21710560899999, 72.00604317, 63.87971229899995, 54.457845066999994, 55.821878881999965, 54.62175372799993, 62.58144482599994, 62.548408954000024, 57.350364771000045, 58.649047238000094, 105.31202187300005, 64.44590529799996, 70.741628945, 108.88844686999994, 65.31082007599991, 77.2690235120001, 69.2426225239999, 66.64230154099994, 73.33758380500001, 81.29732868199994, 69.40996935999988, 105.31202187300005, 77.33657141700007, 79.99965268699998, 118.49370394699997, 82.56061279699998, 77.16761483200003, 87.92476475000001, 79.93186749199992, 77.23516273699988, 86.62762005499985, 81.29732868199994, 81.263289482, 79.89788776699982, 71.90534755399995, 123.89498506999996, 81.811840867, 78.60044550199984, 126.26988369800006, 81.29732868199994, 90.55315300999985, 86.4906866560001, 87.89042797999991, 83.89634043499984, 74.601814214, 83.79421574199989, 121.22777577200009, 78.60044550199984, 89.22179049499982, 110.57203453399995, 86.559065465, 81.22925028199984, 85.26192076999996, 73.27039222400003, 89.25618673999998, 74.6355558439999, 79.93186749199992, 91.78568848199996, 83.96465712499992, 75.89943509899979, 125.22640705999993, 81.60777341200003, 89.2905829849999, 119.46790802199996, 90.58760872999994, 70.64111144899994, 81.22925028199984, 83.89634043499984, 74.66912444000002, 82.56061279699998, 78.73595255199996, 111.86804861899998, 84.06695698899989, 79.93186749199992, 115.90208781199999, 81.29732868199994, 95.8484522949999, 81.263289482, 87.82193052600007, 89.32480283899997, 95.95235582299995, 94.41342354199992, 97.17975563999994, 81.19538564200002, 87.92476475000001, 121.19195134699987, 89.69352697, 81.29732868199994, 112.91621774599992, 90.58760872999994, 81.19538564200002, 83.79421574199989, 86.42230784700007, 75.89943509899979, 82.49259031200006, 78.56652525199979, 126.55782905000001, 81.29732868199994, 82.59471147200009, 122.4560948159999, 77.10006692700006, 79.99965268699998, 86.4906866560001, 86.4906866560001, 81.16134644200008, 87.85626729599994, 89.15317439599994, 91.85454226000002, 85.125400442, 95.12112759900003, 134.40542158199992, 96.20844574000012, 87.89042797999991, 130.37562634200003, 85.26192076999996, 83.89634043499984, 89.18757064099987, 86.559065465, 93.15127073999986, 106.57776856399994, 86.456585142, 131.85158171299997, 89.22179049499982, 91.78568848199996, 129.04450111699998, 95.67533905399989, 95.74454876700008, 98.4762462199999, 91.85454226000002, 91.75117309200004, 90.58760872999994, 93.25481802799993, 99.88142086099992, 87.85626729599994, 83.21457490299986, 129.15286056499997, 88.32925203499997, 89.08455829699994, 131.45301957599997, 90.5188739859999, 83.96465712499992, 90.5188739859999, 83.86235726099994, 98.4762462199999, 86.66172156899995, 94.51714894999986, 146.35785773200007, 112.9871525059998, 99.84672725899986, 139.734524922, 101.14309869400006, 107.76863396199985, 101.14309869400006, 99.81185482399997, 99.84672725899986, 99.81185482399997, 98.4762462199999, 111.62073802099997, 105.136830304, 108.60667813699979, 137.0721555219999, 97.5728995999998, 101.03848210199988, 147.46727436499975, 97.11042728200005, 106.33211960599999, 105.06678968699998, 110.39565493200007, 115.68893365199983, 107.59266722599989, 111.86804861899998, 146.21022632599988, 105.10190002199988, 114.35786790199995], \"power_mean\": 75.85969392000855, \"energy_millijoules\": 8887.789982290256, \"energy_joules\": 8.887789982290256, \"coremark_score\": 2133.961572, \"coremarks_per_mhz\": 3.704794395833334, \"ulpmark_cm_score\": 28.12847743906507}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [705.230925216, 721.3245415999999, 705.230925216, 702.655736232, 705.293886036, 701.5915439730001, 698.7514752000001, 704.0369297679999, 705.262405626, 704.0197068520001, 734.4580090480001, 706.689294773, 702.624535794, 701.354488142, 706.563296976, 710.592130566, 709.4176688000001, 701.3231863519999, 714.6893201140001], \"power_mean\": 707.426842436, \"energy_millijoules\": 3537.13421218, \"energy_joules\": 3.53713421218}}, \"614400\": {\"active\": {\"elapsed_sec\": 109.826406781, \"elapsed_ns\": 109826406781, \"power_samples\": [155.75465050200012, 118.49370394699997, 117.05564540199998, 142.28675309000005, 117.05564540199998, 98.40679921699996, 106.47243890800007, 102.47434256400015, 106.40227925700003, 97.607533838, 108.994132766, 112.49151860599989, 107.62789670599989, 106.15644994000002, 154.19991567199986, 118.27983730699998, 118.49370394699997, 127.70901154700016, 115.76010670200003, 117.05564540199998, 119.78924234199997, 122.27704238299998, 135.59087719399997, 130.23084763399993, 117.09129140199991, 163.4452285389999, 123.71563587200001, 119.68213090199981, 163.48295733400005, 119.82500729200001, 119.71789585199997, 122.4560948159999, 119.71789585199997, 108.9235548559999, 108.95884381099995, 120.97755594199998, 107.2410950819999, 109.09981866199996, 104.22576212399997, 154.16279474199996, 112.88093224999989, 118.27983730699998, 122.38451064699984, 110.39565493200007, 113.02243800199983, 103.70061360199986, 120.905907092, 111.72678015700001, 105.03167935199986, 120.905907092, 147.61514336599987, 118.24413183199988, 114.21612408199996, 146.1365053799999, 116.91324420199999, 113.02243800199983, 124.938936593, 123.57204591799984, 119.575019462, 123.50034310399985, 119.53943792200005, 100.55033105200005, 119.61078441200004, 106.88952293799991, 147.5042890699999, 113.93245425199984, 115.72452017700004, 108.95884381099995, 113.05790538199994, 111.62073802099997, 114.28699599200002, 107.66312618599989, 102.439530622, 112.95168512599992, 106.40227925700003, 142.32334110199997, 110.46617051800001, 122.34862655199981, 150.24002287100006, 104.96163873499995, 103.66574248999996, 101.14309869400006, 98.3373522139999, 95.70985495199989, 98.26772668399985, 100.8991127380001, 94.30969813399997, 105.03167935199986, 89.41823460199998, 130.1947923460001, 99.22009642699993, 110.36030650199996, 107.59266722599989, 97.04092070199988, 94.44805788199994, 94.44805788199994, 102.404539237, 99.67272274999993, 106.33211960599999, 98.12883267799987, 135.59087719399997, 96.9715923440001, 99.70741635199988, 143.39712096599987, 109.02924075199985, 91.54443475599987, 107.62789670599989, 97.07567399200002, 106.36710925199998, 109.09981866199996, 105.03167935199986, 96.9715923440001, 115.61794309700008, 105.45449271200005, 152.75746068199987, 101.53136959900007, 108.9235548559999, 156.93655338200006, 106.22678995000012, 112.95168512599992, 112.84546486999989, 104.89159811800005, 111.58533011600002, 107.62789670599989, 108.994132766, 144.80573639499983, 109.06452970700002, 107.66312618599989, 146.2471815560001, 94.34433247399988, 102.33473590999995, 119.71789585199997, 106.36710925199998, 112.9871525059998, 124.938936593, 111.69137225199984, 103.52571879799984, 114.393394952, 112.24361071399994, 144.80573639499983, 119.07522721199996, 111.72678015700001, 147.39343477399984, 114.32252304199994, 118.27983730699998, 127.63695279800004, 114.393394952, 130.37562634200003, 122.20545821399992, 118.17290398699981, 147.31959518299993, 116.98453620200007, 119.575019462, 144.65853179300007, 99.53341184299995, 112.9871525059998, 108.81786895999994, 108.88844686999994, 102.33473590999995, 110.25444248600002, 106.22678995000012, 110.28979091600002, 106.26177959599988, 96.9715923440001, 156.71234994199995, 114.72992242700013, 115.61794309700008, 165.31351659200004, 127.528772054, 132.92898298399996, 115.65352962200006, 132.89262289399983, 128.86396388599996, 128.86396388599996, 136.8896493499998, 176.6851934059997, 130.23084763399993, 131.56173526399994, 167.44189867099988, 142.21319986999993, 135.48162714599994, 135.51810618599995, 134.15085816099986, 127.42059130999985, 132.82008917599978, 135.51810618599995, 126.23382117799986, 132.8564492659999, 142.36011771200015, 172.68887959799986, 124.22016811000003, 135.55439815399984, 169.0786748559998, 139.51495493800007, 127.27628857100001, 147.39343477399984, 147.46727436499975, 130.23084763399993, 128.86396388599996, 138.14752829299994, 168.5832226099999, 154.0881701919999, 144.65853179300007, 169.91369482999994, 138.14752829299994, 135.40885613799992, 140.84578339799998, 130.1947923460001, 140.80906626299998, 128.75560443799986, 135.51810618599995, 131.598035879, 120.83444195699985, 130.1947923460001, 171.2822528900001, 140.22272186099997, 134.18727772600005, 173.25680559199998, 122.20545821399992, 145.325006432, 149.90639126299993, 139.40516994599977, 138.14752829299994, 140.77234912799997, 150.2028892159999, 180.48502752199988, 127.56470880799998, 147.46727436499975, 176.60874206899996, 148.79804334999994, 132.8564492659999, 130.0862547779999, 140.88231223999992, 136.74386926599982, 136.85329801799992, 144.65853179300007, 139.44163961799995, 147.31959518299993, 140.55261119699992, 155.3071477520001, 143.32363769900007, 142.13983524799994, 167.86321461399996, 135.40885613799992, 134.78983489000007, 140.80906626299998, 143.433768148, 123.35693747599998, 147.43025965999993, 120.76297682199981, 172.6507342829998, 135.44514810600003, 139.4782972779999, 179.23136257399983, 131.525620806, 135.37237709800002, 138.14752829299994, 142.176611858, 118.10167614199986, 127.42059130999985, 127.42059130999985, 134.18727772600005, 123.35693747599998, 124.72328758499987, 183.18851993299995, 132.71119536799995, 134.04178623299993, 165.57786853400012, 132.74755545799974, 138.78311765399997, 139.4782972779999, 133.8600619419999, 139.4782972779999, 139.40516994599977, 139.40516994599977, 176.60874206899996, 136.7802205979998, 132.67502173999992, 152.57157876199994, 138.18412647799994, 135.48162714599994, 136.670979224, 128.7194227729999, 136.7802205979998, 140.88231223999992, 138.07451960599985, 134.1144385959999, 126.12581855399992, 128.64724498999988, 168.5832226099999, 132.74755545799974, 128.75560443799986, 169.95172119500012, 137.8919040469998, 121.41748029199994, 126.12581855399992, 119.97630919200003, 122.0621058549998, 108.78276097399987, 110.21927533000007, 151.35255525699995, 99.49853940799994, 110.1134113139999, 156.48814650199995, 108.67707507799992, 106.22678995000012, 110.1134113139999, 112.80999748999989, 115.40478893699992, 108.74747201899993, 114.10972512199987, 115.40478893699992, 116.77102580199994, 118.03044829700002, 155.3071477520001, 104.89159811800005, 126.01800086600008, 161.92649930599976, 119.4323264819999, 115.98827620200007, 115.47577949200002, 122.67511560199989, 110.07806288400002, 127.27628857100001, 118.10167614199986, 135.37237709800002, 112.73924461399986, 108.71236403300009, 152.46001140199996, 104.61125559699985, 118.03044829700002, 99.53341184299995, 107.5223889299998, 108.67707507799992, 123.35693747599998, 104.75133683099989, 99.39427976899992, 108.81786895999994, 102.12514648599984, 144.7321340939999, 87.44493039999998, 99.46384580599988, 134.00555343500002, 91.40672720000009, 92.87520374099984, 90.0718331060001, 89.2807651139999, 87.51342785399993, 71.30134628199994, 79.52480781199984, 124.65146612599983, 75.42725966299997, 84.68127068599995, 129.97771720999992, 82.01608318699994, 88.77552126499984, 83.48731614999986, 78.19409830199993, 90.03737738599989, 76.86338879200002, 90.20930259399984, 90.03737738599989, 78.02484495199997, 80.82165268199992, 131.23577435699997, 82.05018186199993, 88.569496577, 126.05387844999996, 74.13029656399988, 82.2544241820001, 82.2544241820001, 85.56695750099993, 76.82970166199993, 85.84064851799997, 87.30793549199996, 82.05018186199993, 79.42321714699995, 83.41917463100003, 119.25386855199986, 92.94417616399994, 95.2944187569999, 82.11820434699996, 89.96864264199985, 83.41917463100003, 90.10611212999981, 82.18622683199999, 75.46088742899997, 99.3245348989999, 86.14861682999992, 116.73537980200001, 88.80991750999976, 83.41917463100003, 130.050013638, 88.74130141099988, 80.85551732199997, 87.44493039999998, 81.19928877199993, 90.00292166600002, 88.90245897799991, 102.05534315900013, 84.54475035799987, 104.716406549, 98.05938567499993, 132.52976784199984, 88.77552126499984, 87.44493039999998, 86.04596072599998, 99.35940733399991, 95.4675319979998, 90.00292166600002, 95.39832228499995, 86.114339535, 82.05018186199993, 99.42897337099987, 124.68746917099998, 90.0718331060001, 98.02457290999985, 128.5388855419999, 97.98976014499988, 87.23926195199999, 104.54103492700006, 82.01608318699994, 83.41917463100003, 78.50733286699995, 78.0587652019999, 89.76226171400003, 83.45315780499993, 95.25972494199993, 119.36097999200001, 80.68567044199995, 84.74970632600002, 79.38923742199984, 90.0718331060001, 80.75374884199994, 85.97758191699995, 81.9821593769999], \"power_mean\": 118.2244561867293, \"energy_millijoules\": 12984.167216626245, \"energy_joules\": 12.984167216626245, \"coremark_score\": 2276.473106, \"coremarks_per_mhz\": 3.7051971126302083, \"ulpmark_cm_score\": 19.254219067656077}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [704.822487076, 694.1299501720001, 702.2174826570001, 700.885763902, 694.0991049480001, 699.4917207340001, 706.248545098, 702.2802051869999, 710.148887516, 742.162266351, 708.848946241, 700.9170656919999, 739.769322636, 704.791006666, 708.5961626200001, 708.848946241, 704.885286458, 712.752941997, 715.447697453], \"power_mean\": 708.4917784023685, \"energy_millijoules\": 3542.458892011842, \"energy_joules\": 3.542458892011842}}, \"864000\": {\"active\": {\"elapsed_sec\": 78.053971897, \"elapsed_ns\": 78053971897, \"power_samples\": [75.32602968699996, 73.92819285199994, 72.42989291000004, 83.24855807699987, 81.9821593769999, 73.89462425599993, 125.80199561799986, 83.24855807699987, 91.26884264199998, 128.4305260939999, 77.99109865199978, 85.90902732699999, 68.54041870599997, 77.82167135199995, 81.88003821699988, 55.26344542399988, 69.93748897699993, 64.51238462000003, 75.25842747700005, 67.3395464219999, 115.15623074699988, 55.968411113000116, 65.94242367699997, 112.45605122599989, 44.64558540199994, 68.64075808199993, 67.20594168999992, 50.00355582199984, 49.840538428999935, 59.154880420999916, 61.85227161, 105.80547132599997, 56.461917686000106, 56.42911868800002, 101.63616431100002, 74.98853865399997, 77.75400480199994, 64.34610086600003, 77.68633825199993, 58.92361066999979, 65.64264722399992, 77.58475145199998, 64.21314222199999, 57.561170882000056, 61.58713319399999, 114.8364995070001, 73.49041683199994, 69.66949969400002, 103.0010343859999, 74.95491088799986, 67.63753613599988, 73.62521031799986, 77.75400480199994, 78.94837227199992, 67.23938575, 58.98978469999997, 69.56898219799996, 80.20999444199992, 70.93218649799996, 102.86101069400002, 81.40353109199998, 65.60926263900001, 68.10572928599993, 81.53957606199992, 77.48316465200003, 89.59033650599997, 76.25511035700004, 73.59146868799996, 81.53957606199992, 69.53559111200002, 114.65893187200004, 70.93218649799996, 81.47155357700012, 109.51357564799991, 78.91439254699992, 85.60123479599997, 76.22124958199993, 74.98853865399997, 76.28897113199992, 76.25511035700004, 65.47589550199996, 86.31393002200002, 80.27807284200003, 73.89462425599993, 92.15055003199996, 65.67586060600001, 70.93218649799996, 73.62521031799986, 65.54266467199989, 69.70306289899997, 66.97234779400003, 76.39037981199988, 70.93218649799996, 71.03288211400002, 65.67586060600001, 96.24319903000003, 54.934865809999906, 68.30640803799997, 109.30184761599992, 70.93218649799996, 78.98217774200009, 65.67586060600001, 65.57587805399999, 69.66949969400002, 73.62521031799986, 69.56898219799996, 66.93890373400006, 68.27290430799997, 70.93218649799996, 106.74878568199995, 67.83821488799992, 68.206068662, 100.27141318600002, 66.87218712200001, 66.93890373400006, 66.83874306200005, 69.66949969400002, 69.56898219799996, 73.52415846199995, 81.60777341200003, 101.46156627200003, 74.95491088799986, 74.98853865399997, 105.38415270199994, 72.26182759300013, 69.60254540300002, 64.27962154399995, 64.31294665399992, 62.94998044900001, 80.14209060200005, 69.60254540300002, 73.49041683199994, 69.63610860799997, 76.11984090199996, 98.73277650199987, 61.554097322000075, 65.54266467199989, 97.32956729899979, 80.14209060200005, 70.83149088200003, 66.83874306200005, 70.42870841799993, 70.93218649799996, 69.66949969400002, 73.59146868799996, 61.752993705999984, 61.52089116200011, 62.91671481399976, 97.607533838, 50.97449163600004, 53.76936130799993, 74.88730867799984, 64.379425976, 60.38996833099998, 68.33973995399992, 72.3963834839999, 65.57587805399999, 63.01634112600004, 67.03906440600008, 107.06530900999996, 61.71978754600002, 83.07811669399996, 105.59481201400013, 77.65241800199988, 62.883619771999975, 65.77584315800004, 76.22124958199993, 78.94837227199992, 66.87218712200001, 77.4154981019999, 70.29456254599995, 53.60528418999991, 79.11792238699991, 101.49637821399995, 63.04960676099995, 68.23940057799985, 63.01634112600004, 65.54266467199989, 65.60926263900001, 64.24629643399987, 73.49041683199994, 64.21314222199999, 64.11333778999995, 76.0861537720001, 102.65106502999993, 69.43507361599995, 60.15828150199991, 100.06218000199988, 69.401510411, 72.09376227600012, 66.67186577799998, 73.3557963799999, 71.99288853999997, 72.02657069500003, 79.93820452199986, 65.40929753499984, 65.37608415299997, 69.36811932499995, 113.2231885819998, 76.15370167700007, 72.02657069500003, 98.3847674839999, 60.09215811499996, 72.32901917400011, 66.73858238999992, 56.42911868800002, 44.160097321999956, 53.539754416999926, 61.388407098000016, 79.93820452199986, 53.441375528999856, 51.94412144, 90.71765841399997, 42.76617315699991, 45.36399850399994, 49.351318708999884, 46.69310523900003, 49.416659698999865, 48.119877797999834, 54.73792055599995, 50.81117747799999, 49.5143361019999, 45.493800158, 77.347831552, 50.71315541399986, 48.0222119739999, 74.65122095999993, 46.75820832900001, 42.7014273069999, 46.823144488000025, 42.44294195199984, 41.43694747200004, 47.147992214000055, 48.15248881799994, 48.510541093999905, 58.758514948999846, 48.087434013999996, 87.95159890399987, 38.71410710199984, 41.46909521199996, 46.69310523900003, 56.132913304, 58.758514948999846, 71.89201480400004, 56.03417817599984, 55.93544304799991, 55.93544304799991, 56.00121011099998, 90.64880463600002, 53.3429966409999, 53.310315982999896, 77.31391130199972, 55.93544304799991, 48.119877797999834, 50.71315541399986, 54.73792055599995, 53.441375528999856, 50.61513334999995, 51.97691088500005, 37.35303013700002, 53.24461775299994, 64.04685846799987, 71.95920638500002, 55.00068298999997, 56.03417817599984, 78.98217774200009, 41.43694747200004, 57.33031684599996, 57.29745867800011, 62.68436714799975, 71.99288853999997, 63.91372892599986, 61.25575274599987, 94.56709406099992, 49.2861452599999, 66.57170510599985, 93.30725600599999, 65.2093324309999, 66.67186577799998, 77.24624475199994, 69.267601829, 74.71864983099988, 68.03889363999997, 63.980208247999826, 74.65122095999993, 79.97224372199992, 60.09215811499996, 102.61619391799991, 71.99288853999997, 69.267601829, 108.73736037999993, 65.37608415299997, 68.37324368399993, 65.47589550199996, 67.07250846599993, 64.08001267999987, 75.98474509199991, 76.18756245200007, 113.40045945200006, 62.7507278249999, 66.70530983800006, 99.95774254800006, 76.0861537720001, 74.685022065, 66.73858238999992, 61.35520093799994, 62.7507278249999, 66.67186577799998, 69.33455611999989, 72.09376227600012], \"power_mean\": 70.60259028315157, \"energy_millijoules\": 5510.812597816518, \"energy_joules\": 5.510812597816518, \"coremark_score\": 3203.157032, \"coremarks_per_mhz\": 3.707357675925926, \"ulpmark_cm_score\": 45.36536047316406}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [660.529411287, 701.779229082, 661.94893484, 655.201259106, 700.3858983939999, 660.529411287, 647.15351818, 655.2596659, 647.15351818, 648.4553657399999, 659.110243974, 655.0842953719999, 651.2375178359999, 653.8120238520002, 649.75709435, 685.6469288449999, 643.485547095, 655.171980636, 697.0084344], \"power_mean\": 662.5636988608421, \"energy_millijoules\": 3312.8184943042106, \"energy_joules\": 3.3128184943042105}}, \"1075200\": {\"active\": {\"elapsed_sec\": 74.726337628, \"elapsed_ns\": 74726337628, \"power_samples\": [76.11984090199996, 72.02657069500003, 69.33455611999989, 74.85368091199996, 69.50202790699996, 101.32178017499996, 72.1609538570001, 78.74484243199993, 113.40045945200006, 76.18756245200007, 62.81708850199993, 62.850354136999954, 72.1609538570001, 69.53559111200002, 65.60926263900001, 56.297415494999996, 72.19463601200005, 66.87218712200001, 66.90545967399987, 106.8190639779998, 48.960110473999976, 76.15370167700007, 109.54892407799991, 69.46846470199989, 57.46225763400014, 66.83874306200005, 64.08001267999987, 76.18756245200007, 62.81708850199993, 65.54266467199989, 98.62851686299996, 69.46846470199989, 61.45464913000001, 106.67850738599998, 70.73079526599997, 82.80537544699996, 61.42144296999993, 70.79786820200002, 65.50928008700009, 62.78399346000003, 79.87030068199999, 77.44924440199986, 73.3557963799999, 81.43745490200001, 105.34916305600007, 80.17612980199999, 68.07222555599981, 93.34171273399988, 58.626506242999994, 70.86511356200003, 73.45667520199993, 69.267601829, 58.7255976109999, 80.3459766819999, 58.79160196399994, 62.81708850199993, 64.14649200199995, 72.02657069500003, 106.67850738599998, 81.47155357700012, 69.53559111200002, 73.55772705799984, 68.07222555599981, 77.44924440199986, 65.47589550199996, 66.80529900199997, 70.79786820200002, 74.75245093600006, 86.75942760200007, 115.95263020200002, 66.73858238999992, 76.11984090199996, 110.77258251199999, 81.43745490200001, 78.77864790199999, 75.98474509199991, 79.83626148199994, 74.75245093600006, 74.685022065, 65.40929753499984, 75.30874510700005, 65.27610160100005, 68.07222555599981, 111.92513182999994, 80.31193748200008, 65.34269956799983, 75.91719718700006, 70.596649394, 65.34269956799983, 67.938554264, 52.00953217899996, 77.38157785199985, 73.22100289399987, 75.95088431700003, 113.11678962199994, 71.75745891300005, 69.23403862399994, 111.67722393799988, 69.13352112799998, 81.19928877199993, 55.90247498300005, 66.60514916600005, 85.15633308500003, 71.89201480400004, 67.87154680399988, 65.27610160100005, 90.47640468799989, 81.19928877199993, 114.51676826699997, 72.02657069500003, 81.23338744700004, 117.96871468199993, 78.57529231699993, 80.24403364199998, 74.71864983099988, 67.938554264, 61.35520093799994, 70.63009964999992, 78.54131259199983, 103.73511769899994, 68.00538990999985, 71.95920638500002, 122.42406358999983, 59.959911341000065, 77.17840425199984, 71.791141068, 74.48256211299997, 74.38133213699984, 75.78192773199999, 63.78059938399997, 71.72394948699991, 67.80471115799992, 77.11073770199994, 113.08126257200001, 74.48256211299997, 73.22100289399987, 106.32675457799985, 55.770940856999914, 78.47352739699988, 70.52940403399998, 75.78192773199999, 69.267601829, 62.15314054599992, 69.16708433299982, 75.88333641199995, 63.8472496039999, 74.58379208899999, 103.84026865099997, 79.83626148199994, 82.39617599099995, 71.85833264900009, 74.54999098399992, 71.89201480400004, 73.28831311999988, 74.61741985499998, 68.03889363999997, 89.315220834, 83.96410027399997, 106.50272131399993, 70.49595377799994, 83.72492648600007, 110.59590614499996, 86.690930148, 71.791141068, 79.87030068199999, 70.56302671399988, 77.11073770199994, 66.70530983800006, 74.685022065, 68.00538990999985, 70.83149088200003, 69.95902544199998, 102.68611589, 54.63936354800012, 61.52089116200011, 109.30184761599992, 62.94998044900001, 62.68436714799975, 62.81708850199993, 78.98217774200009, 72.19463601200005, 61.52089116200011, 64.21314222199999, 114.765508952, 76.01860586700002, 77.44924440199986, 95.96570737599995, 65.54266467199989, 64.17981711200002, 66.73858238999992, 62.81708850199993, 76.15370167700007, 73.52415846199995, 62.78399346000003, 73.42310660599992, 74.78607870199994, 78.88041282199981, 107.97256276099984, 66.80529900199997, 76.25511035700004, 109.33719604599992, 61.388407098000016, 75.4777016920001, 64.11333778999995, 78.33778275199995, 80.24403364199998, 74.61741985499998, 76.01860586700002, 119.90484405699999, 68.172564932, 74.75245093600006, 105.41932270699999, 89.41823460199998, 83.99831809399996, 78.67705723699999, 77.2799910519999, 90.64880463600002, 93.30725600599999, 89.41823460199998, 90.54543546800005, 88.12322734700001, 76.01860586700002, 125.29804501800004, 73.38936497599991, 77.4154981019999, 122.71105917199998, 88.08883110199997, 77.44924440199986, 78.88041282199981, 88.1918434459999, 89.48714604199995, 99.99249531999999, 104.12061117200005, 81.98715170599996, 100.16679659399995, 99.53927618, 134.6441058019999, 122.6034127879999, 105.45449271200005, 118.53985342199985, 110.73717460700004, 109.44306006199997, 113.36493240199991, 122.67511560199989, 110.70176670199987, 116.02373940199993, 109.44306006199997, 144.03243921199999, 107.93745477499999, 111.99588470599997, 153.2317099720001, 116.09503140200002, 109.33719604599992, 114.4813642370001, 114.44577771199988, 104.05039050199991, 108.07824865700002, 108.007851716, 115.95263020200002, 118.68254640199984, 109.47822721799992, 162.54147878800006, 119.54715095200004, 117.28191505699988, 168.3953703279999, 121.34571210199988, 129.07336137799996, 127.99708830199995, 127.961092184, 130.58348022899997, 121.31001202799996, 133.35112186699996, 166.30681458799995, 138.63667500199995, 133.35112186699996, 177.01964662799992, 138.63667500199995, 146.65446940699997, 142.7352048539999, 133.278469504, 129.43502936999982, 131.91276508399983, 133.35112186699996, 137.23426281499985, 135.97786800199992, 127.961092184, 173.10437827600003, 142.55140223499984, 134.71706388200005, 170.44592690600007, 140.00279563700008, 142.4779189679998, 130.65589530199998, 116.64049824199992, 146.50679022499992, 141.6322002369999, 142.55140223499984], \"power_mean\": 88.72648967386866, \"energy_millijoules\": 6630.205623916764, \"energy_joules\": 6.630205623916764, \"coremark_score\": 3345.779634, \"coremarks_per_mhz\": 3.111774213169643, \"ulpmark_cm_score\": 37.70622122158462}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [694.3763323950001, 652.044550272, 645.4193624699999, 679.9560735519999, 645.30406268, 650.7437124569999, 632.0824010160001, 647.9635821600001, 646.7781329150001, 653.2579118340001, 637.349649277, 637.378154182, 642.6732862000001, 640.0663886279999, 682.6810910849999, 634.3173637440001, 641.367790252, 680.16846928, 657.422945796], \"power_mean\": 652.702697905, \"energy_millijoules\": 3263.5134895250003, \"energy_joules\": 3.263513489525}}, \"1363200\": {\"active\": {\"elapsed_sec\": 49.445052168, \"elapsed_ns\": 49445052168, \"power_samples\": [187.57933870399984, 189.02924177199998, 192.97764290199996, 196.89097000999993, 194.26779346700005, 188.990322697, 235.41240943999992, 194.26779346700005, 201.15350910199993, 231.42126645199994, 191.57066031199997, 176.48326307800005, 183.6695380299999, 185.66934653399983, 175.76718776300004, 175.19331140299983, 163.68226934000006, 214.01653649900004, 170.29377885799988, 169.00281713300012, 211.398966244, 157.06997242199986, 163.6066927999999, 163.71986382399996, 161.06165035399988, 167.6358026779999, 165.01131690500006, 167.597835788, 163.68226934000006, 163.68226934000006, 171.660912263, 214.0966358689999, 172.87554137999996, 169.00281713300012, 208.81640856800004, 163.68226934000006, 165.01131690500006, 179.71636245799994, 167.673769568, 177.13460001999988, 175.76718776300004, 171.62276694799993, 179.601052826, 165.08681830399996, 178.31050762100006, 210.10567058499987, 168.243654882, 166.1553793249999, 205.40581604199986, 173.0279686959999, 166.04204587399988, 162.2777641849999, 163.64448106999998, 169.00281713300012, 156.95769258199994, 167.787475536, 192.78255640199995, 158.36607907999996, 158.44098725399988, 198.1021530359999, 167.74950864599987, 160.98650488999988, 159.58248998099987, 151.67923092199987, 171.58462163299998, 163.68226934000006, 154.29983535199995, 163.71986382399996, 158.40343688399992, 164.97346915999992, 195.518408132, 152.97090673699995, 153.04553128700002, 197.0085969539998, 150.27604691699992, 162.31549297999982, 174.32336492600007, 153.1199644919999, 141.11197614799994, 154.4117589519999, 154.29983535199995, 164.48241893, 160.94883556999991, 150.97276500199996, 194.30674963699994, 151.23296148200006, 159.732543619, 191.49278445699986, 148.9428205229999, 138.3439776859999, 149.12810793999984, 150.35024283199994, 143.8114430999999, 146.35892122399991, 154.33720710199998, 198.1414886309999, 151.5676635619999, 153.04553128700002, 184.84408028299993, 153.04553128700002, 146.24806692799996, 157.10746312199979, 155.44199175200004, 149.05403105900007, 150.27604691699992, 142.3675996159999, 143.59044698799994, 150.27604691699992, 144.95621218799988, 186.17294972799982, 142.3675996159999, 149.05403105900007, 194.15052334699988, 146.32190651899987, 155.66619519199992, 130.29363377999994, 137.795240714, 130.402349468, 140.37795273200004, 139.59966032400007, 143.18535051900005, 148.97976374899997, 151.64197812199995, 186.25035061399979, 137.0516472559999, 152.93378580699982, 159.58248998099987, 138.3439776859999, 148.90568686799998, 146.28508163299978, 156.92039414199985, 159.58248998099987, 146.2110522229999, 148.97976374899997, 195.44017634199997, 146.32190651899987, 145.02993313399986, 178.118490339, 152.85916125699998, 148.83160998699998, 147.50291866199996, 140.9284702939999, 146.35892122399991, 142.29411634899986, 156.92039414199985, 143.62734274299987, 147.65083513399986, 145.10365407999996, 171.4324316069999, 138.41729300600002, 129.07336137799996, 172.18903069199985, 139.672906301, 141.41156153299994, 155.59152469699984, 151.34452884200005, 138.3439776859999, 139.672906301, 146.2110522229999, 179.48574319399995, 146.24806692799996, 138.3439776859999, 179.447240834, 143.70094504399992, 138.38063534599996, 140.96524690399986, 140.9284702939999, 138.3439776859999, 132.98767328499991, 136.79602300999989, 130.22121870699993, 125.01009966599997, 135.61323041399987, 163.53131004599993, 138.19772302199988, 138.30750801399984, 163.49352177599997, 119.72590564699999, 139.7096234359999, 119.40422068199985, 125.01009966599997, 111.57100368199997, 112.97486361199992, 118.28986559199996, 111.57100368199997, 125.01009966599997, 128.34983954199993, 164.8979677609999, 117.54026892199988, 120.951723141, 158.14116199199987, 126.30284711599995, 122.24471439199988, 114.30361410700004, 118.21851910199985, 123.64522717599993, 122.2804736359999], \"power_mean\": 158.45291498550756, \"energy_millijoules\": 7834.71264763009, \"energy_joules\": 7.83471264763009, \"coremark_score\": 5056.532028, \"coremarks_per_mhz\": 3.7093104665492955, \"ulpmark_cm_score\": 31.90927494649368}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [730.5544885319999, 762.45651517, 733.050753329, 738.505617976, 766.347855394, 723.835858945, 726.629492466, 742.598892208, 728.248059668, 738.4395628960001, 728.9315531999999, 725.23037664, 772.9315681879999, 735.7800434160001, 734.581511679, 767.608882424, 727.862228198, 729.159495868, 739.901501019], \"power_mean\": 739.6133819587368, \"energy_millijoules\": 3698.066909793684, \"energy_joules\": 3.698066909793684}}, \"1516800\": {\"active\": {\"elapsed_sec\": 44.433919358, \"elapsed_ns\": 44433919358, \"power_samples\": [124.83015693799996, 138.16106536199993, 127.49165827399986, 124.86603452199995, 139.45316836999996, 119.51151024199999, 127.49165827399986, 173.97957347, 135.3943729099999, 122.17301157799989, 154.95634560200006, 134.35283469799992, 124.182141194, 119.54715095200004, 119.61861608699996, 142.14696091199983, 134.17081364199987, 107.58510813199996, 176.52164648799987, 122.10112443799994, 122.2087708219999, 168.69919123399984, 112.797592742, 111.53571818599983, 126.0864856280001, 116.96111509699995, 120.8444388979998, 119.475685817, 104.89285478599993, 122.2087708219999, 114.23262355199995, 119.40422068199985, 160.68572985799995, 112.93951875199991, 115.56125540200003, 168.6611648689999, 104.82251477600005, 123.39375975399992, 108.80787596599998, 104.96301443699997, 115.56125540200003, 100.93759271199997, 108.87857282599987, 104.89285478599993, 116.78295393199994, 111.53571818599983, 156.58355462199995, 113.48676648699984, 110.06569546499998, 154.001436302, 108.91373998199992, 104.99800408300007, 111.57100368199997, 114.26821007699994, 107.55000014599989, 120.77267070799996, 106.08069020999983, 148.72039945100005, 106.11591968999983, 106.15096850599991, 156.69583446199988, 116.78295393199994, 122.06536519399992, 120.8444388979998, 115.41903700199998, 111.50025080599994, 103.52481579499988, 114.19721952199995, 119.51151024199999, 111.50025080599994, 110.20714550599985, 156.62104532199987, 114.26821007699994, 106.2214274659998, 156.62104532199987, 110.13632969600008, 118.18293756199989, 114.16163299699997, 111.57100368199997, 112.86864684199986, 111.42949792999991, 116.676020612, 117.11182316199995, 118.07582612199997, 103.20936293900002, 154.001436302, 128.67545224599996, 130.04008794599997, 169.76155365800003, 130.04008794599997, 114.26821007699994, 118.04006117199992, 135.43091161999985, 120.66520244399999, 124.86603452199995, 126.01442687899998, 161.90125015900003, 127.41929494400006, 116.81865940699993, 149.97907252200002, 123.32175366400008, 111.46478342599983, 134.13452167399987, 119.33257183199999, 132.80594899399978, 119.475685817, 126.0505488739999, 127.34711716100003, 115.24098980199994, 128.78398981399994, 160.57291507399987, 124.83015693799996, 128.78398981399994, 168.54728078100004, 134.06156359400006, 126.15872961799994, 124.65002927400008, 151.92826783199996, 139.41645123499995, 130.78765337599998, 139.306488123, 131.36848250599985, 133.95231354600003, 132.73310986399997, 167.29468477400007, 123.35775670899989, 130.003787331, 127.38329882599987, 128.63921110600006, 127.41929494400006, 128.67545224599996, 132.69687706599984, 127.38329882599987, 122.06536519399992, 126.0505488739999, 175.19331140299983, 125.97830488400007, 128.71169338599998, 176.44507650599996, 132.73310986399997, 112.69119378200003, 129.96748671600005, 130.07620240400001, 132.55138557300006, 135.35802157799992, 123.39375975399992, 132.73310986399997, 132.62403793600004, 133.91602157800003, 167.1809788060001, 117.96871468199993, 127.34711716100003, 167.1809788060001, 124.65002927400008, 132.0062127, 136.72282664, 124.43420896199996, 127.34711716100003, 138.16106536199993, 128.63921110600006, 189.65799342199978, 134.02527162599995, 132.73310986399997, 169.91370170599998, 135.24859282599994, 123.39375975399992, 132.5878051379999, 136.61321976800002, 128.74774867400004, 135.3943729099999, 130.003787331, 135.21205411599988, 136.57680926599994, 123.39375975399992, 161.90125015900003, 131.40465613399988, 120.66520244399999], \"power_mean\": 128.759434036548, \"energy_millijoules\": 5721.286308561694, \"energy_joules\": 5.721286308561694, \"coremark_score\": 5626.702077, \"coremarks_per_mhz\": 3.7095873397943038, \"ulpmark_cm_score\": 43.6964672832199}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [662.48142093, 659.8517412279999, 706.476452352, 655.917312974, 657.2176161240001, 694.4073960899999, 659.940139556, 656.3959959240001, 654.5290554639998, 658.1694298379999, 654.49992714, 654.558333934, 658.46339649, 694.3452686999999, 657.188218704, 658.5221596079999, 691.717406445, 657.1295746200001, 654.4413701999999], \"power_mean\": 665.5922219116316, \"energy_millijoules\": 3327.9611095581577, \"energy_joules\": 3.327961109558158}}, \"1651200\": {\"active\": {\"elapsed_sec\": 40.814839047, \"elapsed_ns\": 40814839047, \"power_samples\": [132.47873320999997, 124.61415168999997, 124.75803189800001, 169.87561586599998, 128.82023095399984, 136.6864161379999, 124.72215431400002, 123.42957816800003, 131.40465613399988, 123.32175366400008, 128.6031558179999, 123.28593524999997, 125.90624613500006, 116.64049824199992, 167.0672728379999, 125.97830488400007, 117.86160324199989, 164.40672343999995, 133.7702924900001, 123.07028624200007, 128.49461825000003, 132.55138557300006, 124.36208392200001, 129.82265657000005, 123.07028624200007, 144.43978653800002, 122.99846478300003, 126.986042699, 170.67089462599984, 130.860373556, 137.61232839000002, 173.36851947800005, 129.6052251939999, 142.743358295, 131.041801082, 130.60622584999987, 128.31378425399998, 132.62403793600004, 129.46020889099998, 135.13916407399995, 131.96979313499992, 137.2829734139999, 149.45931964700014, 120.05646097600004, 110.89839664999988, 116.21276496199994, 124.32620633800002, 112.26578013200003, 106.81019887399998, 121.56307684399997, 122.67499127099995, 110.86292926999988, 109.57089268999994, 153.36726645199997, 104.15554719399995, 116.21276496199994, 142.853856351, 109.50025845899984, 100.09941445899995, 118.86777288199994, 106.84548782899981, 112.15938117199994, 114.7073966019999, 105.65865910599985, 113.55775704199993, 112.26578013200003, 105.58838080999988, 144.18147895599998, 110.86292926999988, 98.84189194600003, 142.7066517489999, 113.59334356700003, 121.52713327399988, 116.14153711699976, 109.92424542399988, 112.15938117199994, 115.31228180199992, 114.88526100199988, 141.301431084, 108.17287314399994, 118.83194845699995, 142.78025404999994, 98.94650853799988, 113.41577593200009, 108.24338872999999, 108.13752471399994, 104.19071719899989, 110.93386403, 113.52217051699995, 106.88059581499999, 110.93386403, 120.1637452189999, 149.34793040699992, 114.84961500199995, 109.64152692099992, 136.10178359299982, 124.21820371399997, 116.17705948699995, 116.07030927199992, 112.19472603199995, 122.7828157749999, 109.50025845899984, 111.07536978199983, 116.24847043700004, 117.46892243199989, 113.48676648699984, 141.3380782659999, 104.15554719399995, 105.44782421800005, 129.49650950599994, 112.19472603199995, 112.65584892200002, 100.20420917099989, 120.7010865389999, 116.24847043700004, 122.92645869299997, 110.79217639399997, 136.10178359299982, 118.7963077469999, 113.38018940699988, 134.66509773399991, 109.606300595, 113.41577593200009, 121.34778407599993, 130.60622584999987, 117.46892243199989, 117.50450397199995, 110.82764377399985, 118.72484261199997, 124.03826098600007, 110.75689089799994, 139.86402318199998, 125.32940566100001, 126.6971460200001, 134.81087781799988, 108.24338872999999, 115.99889832199995, 110.82764377399985, 121.45543045999989, 114.81415180199997, 110.89839664999988, 113.52217051699995, 120.09216104999985, 124.03826098600007, 106.81019887399998, 146.68880769399982, 116.46233707699992, 124.03826098600007, 127.16657993000001, 117.46892243199989, 113.80649772699996, 118.68901818699987, 124.03826098600007, 126.7693238029999, 108.13752471399994, 113.52217051699995, 145.43526196999983, 114.74304260200006, 114.7073966019999, 142.55925793799997, 116.17705948699995, 113.38018940699988], \"power_mean\": 122.39268197467896, \"energy_millijoules\": 4995.43761532718, \"energy_joules\": 4.995437615327179, \"coremark_score\": 6125.649319, \"coremarks_per_mhz\": 3.7098166902858525, \"ulpmark_cm_score\": 50.04566551545776}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [649.1193975000001, 684.8210267699999, 650.366158027, 653.0246093970001, 666.206478834, 651.608054688, 655.653722822, 654.3829634059999, 654.3245566119999, 696.8840228639999, 649.00353385, 655.653722822, 690.2029486219999, 651.637064672, 653.0246093970001, 663.6627729940001, 652.966171407, 649.0325742250001, 654.3829634059999], \"power_mean\": 659.7872290692105, \"energy_millijoules\": 3298.9361453460524, \"energy_joules\": 3.2989361453460524}}, \"1804800\": {\"active\": {\"elapsed_sec\": 37.339735403, \"elapsed_ns\": 37339735403, \"power_samples\": [171.80776647999994, 155.79778800199983, 139.86402318199998, 176.81399510799997, 157.2790440099999, 157.09167729199999, 144.0340370639999, 150.78688308200003, 159.74573544199995, 169.57151508200002, 155.83508644199992, 169.5334292419999, 166.49893769999983, 161.07276451699988, 179.7411506179999, 146.3186362660001, 158.60636984999996, 169.07737572199994, 158.4187063669999, 161.1104933119999, 166.38523173199997, 161.22348621599997, 158.381096522, 155.910067842, 161.22348621599997, 186.29936968699985, 159.708066122, 145.10269908199996, 186.3382290919999, 151.81652235199988, 157.16658546600002, 147.79377193699997, 169.07737572199994, 150.4894338019999, 161.18575742099983, 145.17672849199982, 159.7834047619998, 146.42966868199994, 158.26845985800014, 174.3517570969999, 155.6855081619998, 164.98258222399988, 188.91880020199994, 155.79778800199983, 156.02215542199997, 163.76467041199987, 160.15932525799974, 151.81652235199988, 152.03982196699997, 154.395837002, 163.76467041199987, 153.06886740200002, 157.05412692200002, 168.963313514, 155.61052676200006, 157.09167729199999, 146.46674286199993, 172.757465486, 154.35859773200002, 155.57322832199998, 155.53573762200006, 152.95694380200007, 158.30606970299993, 157.05412692200002, 182.2796014820001, 154.35859773200002, 144.9918447859999, 183.490548386, 155.722806602, 143.665053306, 138.500217497, 143.81268471200008, 137.06340343, 150.3778664419999, 138.39025438500005, 150.30336084199996, 151.74189780200004, 146.355710446, 160.92204281800002, 131.788068844, 144.9918447859999, 170.29022394399988, 155.6855081619998, 141.52188088499986, 137.17318842199995, 140.19425827999999, 135.8827575319998, 133.078500234, 137.06340343, 164.94467480899993, 151.59303139199994, 130.38843823399998, 150.41492820199994, 141.00712021000004, 127.69879998600004, 137.06340343, 134.55566898199982, 141.00712021000004, 134.51913027199998, 137.02674577000005, 154.28373528200007, 130.42479832399988, 144.9550198999999, 170.17598361599994, 135.73655247499994, 139.7171053400001, 168.84925130600004, 149.05095601199992, 151.59303139199994, 137.2098460819999, 145.02885949099993, 142.3015552799999, 141.04395629499993, 147.68256140099993, 144.9918447859999, 139.75388195000005, 145.02885949099993, 158.34367954799995, 144.8811803089999, 158.381096522, 152.15156744699993, 143.73896376599998, 154.88167510699998, 143.665053306, 149.31073708199995, 150.26629908199993, 145.06587419599987, 137.02674577000005, 161.03503572199998, 142.26465952499996, 159.67058997799984, 164.90676739399998, 134.37316280999994, 147.6454277460001, 139.64374071800012, 143.59133236000002, 133.00572922599997, 132.96925018599995, 139.82724657200004, 131.71522971399997, 134.44624022999983, 133.00572922599997, 152.88239195200003, 134.33681147799985, 147.60848452000005, 156.94166837800003, 143.702008536, 141.04395629499993], \"power_mean\": 151.914070530054, \"energy_millijoules\": 5672.431197584896, \"energy_joules\": 5.672431197584896, \"coremark_score\": 6695.950289, \"coremarks_per_mhz\": 3.7100788392065605, \"ulpmark_cm_score\": 44.072813101098596}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [641.8126176, 621.8789801280001, 628.607825184, 633.863919424, 635.45194258, 628.607825184, 625.723238987, 633.948931136, 633.8923051840001, 656.484037428, 633.948931136, 635.253262192, 623.3462810190001, 631.207724444, 624.618821056, 627.279608744, 632.592474504, 629.992311641, 632.592474504], \"power_mean\": 632.1633427407895, \"energy_millijoules\": 3160.8167137039477, \"energy_joules\": 3.1608167137039476}}}}, \"6\": {\"freqs\": {\"652800\": {\"active\": {\"elapsed_sec\": 98.444388452, \"elapsed_ns\": 98444388452, \"power_samples\": [27.217769977999865, 15.23469902599993, 27.18605166799989, 21.844954755999765, 24.562762057999976, 28.291540546999954, 36.23028180199992, 29.813618728999927, 55.14573109100013, 25.827110700999924, 16.562143511000045, 15.172493257999918, 17.92088978599986, 20.544476966000047, 12.513489689999915, 22.002033929999925, 17.889587995999932, 16.49981909799999, 24.62579872999993, 47.07833198999981, 19.18583204299989, 17.796003670000005, 48.568734697999844, 24.562762057999976, 34.211160193999945, 29.813618728999927, 13.845167417999846, 33.763758793999955, 15.265881865999972, 13.969501271000013, 53.68670205800004, 20.481796617999976, 31.141004043999942, 40.404739881999944, 33.731907097999965, 24.436688713999956, 24.562762057999976, 25.76395538400004, 33.891658129999996, 27.40775452199989, 21.876273728, 33.476108425999996, 40.404739881999944, 21.876273728, 60.32768314600003, 37.7500882019998, 33.763758793999955, 35.18714620999992, 44.326251775999935, 48.470890753999925, 41.7320657219999, 33.82762636999996, 43.027125481999974, 28.513496152999892, 33.891658129999996, 53.75235047599995, 31.26826461600001, 37.84650660199998, 68.19547257800002, 23.07788215899984, 33.63602364199994, 24.436688713999956, 47.07833198999981, 21.813474345999794, 31.045476828000005, 23.20371821299989, 61.754635297999926, 47.01327718599998, 37.878701102000036, 69.69038884999998, 43.15652244199987, 39.109668016999876, 33.69989121799995, 39.17401056199992, 40.46920107200003, 42.83286372199984, 39.238353106999966, 55.01402789799988, 44.293759705999946, 35.12315998899987, 60.360889305999876, 44.488378873999864, 32.46838935899984, 51.02769848999992, 37.78228270199986, 31.204634329999976, 44.423561359999894, 29.813618728999927, 27.28104393999979, 47.04572096999982, 44.68299804200012, 60.360889305999876, 44.326251775999935, 39.14175658699992, 40.43705333199989, 42.9946930819998, 37.84650660199998, 41.76443864699979, 37.81431210199992, 27.217769977999865, 36.454897386999846, 40.37259214200003, 73.63909453899987, 31.26826461600001, 33.92350982599987, 51.06048793499997, 27.12277770599985, 41.86139140699993, 25.795451865999894, 36.42276236199996, 25.732296548999898, 9.920568808999974, 21.844954755999765, 45.653458970999964, 21.71919455399984, 15.203676097999846, 37.78228270199986, 16.468737000000033, 20.513217357999906, 15.172493257999918, 17.827144937999833, 20.387695529999974, 10.969611297999904, 23.07788215899984, 16.49981909799999, 24.40508935399987, 11.279017513999861, 36.39079213199989, 16.562143511000045, 12.451521600999854, 19.18583204299989, 13.90725454099993, 32.53213828999992, 28.64044432999981, 19.060547810000003, 16.562143511000045, 16.468737000000033, 23.172340070999894, 48.34054385600007, 19.123270339999976, 27.059503743999812, 55.17853008899999, 21.844954755999765, 27.12277770599985, 29.90896782499999, 33.82762636999996, 21.7821553739999, 20.387695529999974, 24.499725385999795, 45.653458970999964, 24.310453321999944, 28.354933153999923, 40.34027869199997, 13.78308029499999, 15.141470329999947, 16.49981909799999, 21.813474345999794, 19.123270339999976, 28.196370154999954, 21.844954755999765, 35.09108463399991, 24.594361418000062, 21.844954755999765, 44.39106929000002, 24.37348999400001, 23.109422043999984, 25.795451865999894, 17.827144937999833, 15.172493257999918, 21.750674963999813, 29.718269632999977, 21.71919455399984, 23.140800185999865, 17.73340008999992, 43.027125481999974, 36.42276236199996, 21.750674963999813, 24.40508935399987, 28.291540546999954, 33.763758793999955, 27.15449601599994, 13.876290782999945, 40.37259214200003, 27.091222054000013, 28.354933153999923, 32.40464042799999, 20.450537010000062, 28.38671093899984, 41.63511296199988, 28.418488723999985, 27.376036211999804, 40.37259214200003, 32.181273350999845, 28.450103545999923, 29.686432177999905, 28.38671093899984, 41.63511296199988, 31.013579898000103, 28.418488723999985, 41.667485886999884, 31.013579898000103, 23.140800185999865, 28.38671093899984, 17.73340008999992, 36.42276236199996, 28.418488723999985, 29.75010708800005, 29.75010708800005, 28.32331833199987, 32.181273350999845, 47.04572096999982, 33.859642249999865, 28.48188133099984, 31.045476828000005, 37.68586430199991, 34.995023058000015, 28.38671093899984, 39.04532547200006, 25.637482396999985, 33.731907097999965, 24.468126025999936, 37.71805880199997, 42.73573284199995, 39.01307149699994, 41.95834416699984, 49.635080555999934, 28.22814793999987, 34.995023058000015, 27.027785433999952, 36.358657106999885, 42.92999460199985, 26.964511471999913, 41.570533126999976, 41.667485886999884, 40.275817501999995, 52.29384644499987, 32.40464042799999, 36.29455185199981, 34.963112191999926, 33.54014018599992, 38.85213243199996, 35.18714620999992, 33.69989121799995, 65.36994855, 21.71919455399984, 50.86408756700007, 45.68601051600001, 31.013579898000103, 40.37259214200003, 36.358657106999885, 47.04572096999982, 11.12431440599994, 29.781781273999854, 17.796003670000005, 25.70063771399998, 21.813474345999794, 24.40508935399987, 37.58944590199985, 16.437494685000047, 27.091222054000013, 25.795451865999894, 16.437494685000047, 20.544476966000047, 7.17351861599991, 20.356435921999946, 20.387695529999974, 27.059503743999812, 16.40625237000006, 38.98081752200005, 18.966624841999987, 19.029347371999847, 40.30796524200002, 21.750674963999813, 26.901237509999874, 12.42045790599991, 15.265881865999972, 4.391964451999911, 18.997986106999974, 25.70063771399998, 40.30796524200002, 17.796003670000005, 19.060547810000003, 33.57199188199991, 21.62491476199989, 16.40625237000006, 29.718269632999977, 21.71919455399984, 16.37517027199999, 15.110287490000019, 34.963112191999926, 34.898961482000004, 28.22814793999987, 18.90406313899996, 37.653669801999854, 24.40508935399987, 15.141470329999947, 8.500785285999996, 20.450537010000062, 8.469900015999883, 24.436688713999956, 13.78308029499999, 15.048081721999893, 5.872508601999925, 11.12431440599994, 28.354933153999923, 12.482585295999911, 17.702258821999862, 46.75272349800002, 28.38671093899984, 33.891658129999996, 34.995023058000015, 36.39079213199989, 21.750674963999813, 30.949949611999955, 30.98184654199997, 46.948055146, 31.045476828000005, 25.637482396999985, 53.52249663199996, 21.62491476199989, 23.07788215899984, 25.6691412319999, 16.40625237000006, 24.310453321999944, 20.575897705999978, 37.653669801999854, 20.13681300600001, 18.90406313899996, 25.542668245000073, 33.63602364199994, 13.78308029499999, 24.342052681999917, 21.71919455399984, 22.983424247000016, 34.963112191999926, 25.70063771399998, 28.291540546999954, 32.308935091999956, 36.262416826999925, 28.354933153999923, 41.505953291999845, 31.07737375800002, 27.059503743999812, 62.51663777599981, 33.63602364199994, 44.326251775999935, 46.98066616599988, 40.275817501999995, 36.23028180199992, 33.5081243059999, 44.22894219199998, 52.260997329999896, 38.9487289519999, 49.569788461999906, 56.11066907399993, 40.37259214200003, 32.34072761799996, 40.30796524200002, 41.95834416699984, 37.68586430199991, 39.04532547200006, 33.63602364199994, 66.93533231799995, 36.32652208199988, 26.996229781999773, 60.16199292199997, 35.027098412999976, 21.7821553739999, 33.63602364199994, 28.354933153999923, 21.65639517199986, 33.63602364199994, 33.69989121799995, 44.35874384600004, 30.949949611999955, 32.43643295399988, 74.80187535199991, 56.11066907399993, 53.65396223000005, 36.42276236199996, 46.98066616599988, 57.73468393099995, 42.962260681999965, 41.699858812, 53.6210536399999, 50.995077196000125, 56.20958232199985, 88.21458144999986, 45.653458970999964], \"power_mean\": 31.632826671408672, \"energy_millijoules\": 3114.0742766749413, \"energy_joules\": 3.114074276674941, \"coremark_score\": 2539.824447, \"coremarks_per_mhz\": 3.89066244944853, \"ulpmark_cm_score\": 80.28067983880526}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [631.151335782, 625.275498232, 620.4399210649999, 617.641891632, 608.48100765, 619.1121203399999, 651.084080544, 620.5231509930001, 620.46771188, 617.8628392740002, 603.300259482, 611.10937538, 623.095522515, 624.42332324, 616.314387672, 616.507389835, 612.5509238940001, 621.7400143220001, 620.5231509930001], \"power_mean\": 620.0844160381579, \"energy_millijoules\": 3100.4220801907895, \"energy_joules\": 3.1004220801907896}}, \"940800\": {\"active\": {\"elapsed_sec\": 34.160853633, \"elapsed_ns\": 34160853633, \"power_samples\": [139.97416441400003, 180.99125338699992, 145.10269908199996, 138.64689774400006, 152.00270103699984, 144.32690882899976, 142.55925793799997, 138.57346347399994, 153.18079100199998, 186.4157486229999, 153.25553450200005, 157.20413583599998, 187.786226392, 143.92336088799993, 153.06886740200002, 143.7757294820001, 141.26459499899988, 137.2829734139999, 137.2829734139999, 153.29271460199993, 143.92336088799993, 151.81652235199988, 148.2342287419999, 194.38334329199995, 142.26465952499996, 134.66509773399991, 139.90061119400002, 153.218162752, 153.218162752, 137.24631575399997, 145.25056808299985, 150.45218100199997, 154.43326822699999, 142.5961536929999, 185.049741498, 151.7792100769999, 143.84963994199984, 182.39544605799995, 133.36977133799996, 135.15210761299977, 153.18079100199998, 149.05095601199992, 139.90061119400002, 147.79377193699997, 133.22422932199993, 171.54072479399997, 147.68256140099993, 122.67499127099995, 170.25207862899993, 129.17036244200006, 137.2829734139999, 131.86072120699987, 122.71099431599998, 118.61755305199995, 143.92336088799993, 130.4611584139999, 124.64438444300004, 115.92767047699988, 126.55260490699993, 166.271525764, 142.52255139199985, 131.93337356999984, 133.18775028200002, 131.89714077199994, 139.75388195000005, 150.45218100199997, 138.500217497, 151.74189780200004, 134.51913027199998, 133.00572922599997, 171.42650226799992, 135.73655247499994, 135.77315065999994, 186.02795168900002, 154.35859773200002, 128.66308461699998, 141.11743956199996, 151.51859818699984, 135.69995428999994, 143.702008536, 135.62694560299997, 189.8171523069999, 132.93295821799995, 143.62828759, 163.500124379, 141.00712021000004, 142.15416146899986, 145.10269908199996, 135.590535101, 135.55393691599988, 138.097082184, 136.95361843800003, 132.7144581220001, 134.26392143599992, 143.51761141400004, 177.9101081540001, 146.05968737799992, 136.77070611400006, 135.37132135699994, 131.46085305999998, 136.8073637739999, 129.95304946399995, 127.51796599, 124.78850194099994, 111.556514462, 122.171871796, 147.46014032899996, 120.84549572599997, 106.21137245299985, 149.59689492199993, 126.11916711499987, 134.11795397399987, 123.35418272200002, 115.535642672, 128.66308461699998, 116.96913018199996, 116.86201874199992, 154.02229257199997, 130.0619432719999, 126.08317099700002, 151.29510722700002, 142.04366341299988, 130.20701070799976, 128.80810092000013, 126.4804271239999, 130.0981168999998, 141.82285651000007, 132.7144581220001, 153.947622077, 134.11795397399987, 119.30418312799986, 151.2577949519998, 128.80810092000013, 118.08110525199993, 123.39024524199988], \"power_mean\": 141.82577081753328, \"energy_millijoules\": 4844.889398285158, \"energy_joules\": 4.844889398285158, \"coremark_score\": 7321.072976, \"coremarks_per_mhz\": 7.781752738095239, \"ulpmark_cm_score\": 51.600765146153215}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [632.7054891180001, 644.8441053150001, 645.88334852, 641.4109526, 640.566127952, 639.209287657, 643.22691564, 677.838505883, 645.88334852, 639.266388578, 691.037891583, 648.5686728500001, 653.857001968, 651.258738592, 649.117094557, 639.2379115119999, 647.21156496, 640.623347518, 680.40828125], \"power_mean\": 650.1134197143684, \"energy_millijoules\": 3250.567098571842, \"energy_joules\": 3.250567098571842}}, \"1152000\": {\"active\": {\"elapsed_sec\": 29.083106811, \"elapsed_ns\": 29083106811, \"power_samples\": [167.2567244549998, 165.6652237359998, 177.64118397800007, 164.41494298399994, 182.8333513340001, 180.25883120499986, 168.31702610599996, 184.31393564599978, 168.35511194600008, 163.04692189399998, 189.5444867169998, 160.47026468299998, 163.122423293, 168.46897884199996, 153.83552035700018, 166.99112492099994, 174.87430926600007, 170.930623686, 194.8524386739998, 161.72096123400001, 168.35511194600008, 196.29614492300004, 168.43108831400014, 172.29907687799994, 177.52587434600014, 169.68107260599993, 164.41494298399994, 164.37722996599996, 167.06698264399995, 174.87430926600007, 180.25883120499986, 165.85466878199986, 205.4639953709999, 170.96882847599989, 169.71902230399985, 165.70319062600004, 174.95087924799986, 169.64292729099986, 171.0070332659999, 168.31702610599996, 169.6047819759999, 161.64538469399997, 160.35727177899992, 192.19628908699997, 160.28200766999998, 179.00985632599986, 193.05239731200015, 167.06698264399995, 148.82817753200004, 176.27678043299989, 159.14418537799997, 154.9745306819999, 156.3420178539999, 164.30141513599983, 188.1018497719998, 169.5286869629998, 158.99370127399982, 206.78989655599992, 159.03137059399978, 147.12669914999992, 156.49202676800007, 153.68598741200003, 160.39500057400005, 154.82476014199983, 168.27894026599995, 159.25700016199994, 164.30141513599983, 155.08681052199995, 193.56140672200002, 156.26710967999998, 152.32296560200007, 178.85600371399994, 155.08681052199995, 164.41494298399994, 170.85441002799985, 158.95622513, 174.98926265799992, 160.28200766999998, 177.64118397800007, 198.94830353300006, 169.566832278, 169.64292729099986, 205.30519076799987, 165.6272568459999, 159.03137059399978, 164.3393225509999, 172.222744186, 157.705469409, 163.04692189399998, 169.6047819759999, 186.73720763200004, 162.85787726, 169.45259194999983, 190.67530140199983, 148.45700722200002, 158.91855580999993, 156.30466005000005, 168.50706468199996, 147.015488614, 153.723418637, 162.97122640399994, 189.46661086200004, 164.26370211799997, 163.00907414899996, 210.69217198600006, 160.39500057400005, 161.57000194, 157.66785956399997, 169.6047819759999, 165.58948465800006, 174.79754244599997, 166.99112492099994, 157.51780592599994, 164.30141513599983, 156.6418431159999], \"power_mean\": 169.07392273346082, \"energy_millijoules\": 4917.1949538120025, \"energy_joules\": 4.917194953812002, \"coremark_score\": 8599.931201, \"coremarks_per_mhz\": 7.465218056423611, \"ulpmark_cm_score\": 50.8419947446237}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [621.6009056940001, 628.1863290240001, 618.863107128, 638.809287632, 621.5731982259999, 653.4769824419999, 612.277148938, 625.555354171, 657.316684848, 622.872673776, 622.9841697090001, 628.1583255120001, 629.5136548639999, 620.245812911, 630.8128588520001, 626.943124296, 656.073227328, 637.4535438960002, 629.485592182], \"power_mean\": 630.6422095488948, \"energy_millijoules\": 3153.211047744474, \"energy_joules\": 3.153211047744474}}, \"1478400\": {\"active\": {\"elapsed_sec\": 21.730554419, \"elapsed_ns\": 21730554419, \"power_samples\": [250.02870947299994, 235.48450515800005, 234.20037779799998, 260.92920042800006, 231.54988143799994, 246.13630157, 244.68230930599998, 243.72990190999985, 243.35723924599995, 240.830963774, 250.02870947299994, 264.571393682, 240.74845804100005, 260.6340904399999, 258.06788026599986, 239.4644161540001, 255.4593974359999, 255.33357230000001, 242.1562119539999, 243.43998226899998, 247.41989326499993, 250.07027067499996, 249.98693403800007, 246.09470456000008, 252.76254246999997, 253.92453465499977, 247.04583939199995, 242.11479356400002, 263.373218062, 257.98383136999985, 246.09470456000008, 250.07027067499996, 244.80670831400005, 256.70055908100005, 258.025747786, 251.27016918799984, 265.98122489700006, 257.94169889, 252.5951797729998, 264.486751172, 252.6370741579999, 251.43729428999995, 253.92453465499977, 251.27016918799984, 244.64077196599976, 251.27016918799984, 255.24954523999986, 268.5935570239999, 252.67896854299988, 239.38202906599997, 255.16573363400005, 251.3538390079999, 256.5326985789999, 267.17898480199983, 257.8995664099998, 252.5951797729998, 261.92125356199995, 264.4018910719999, 265.89646374200004, 275.0048945049999, 257.26887559399984, 277.701928338, 259.26676895, 253.840841694, 259.182601409, 264.35967861200004, 265.726723537, 265.76921306200006, 276.16264849699996, 264.35967861200004, 253.71519467799988, 260.212226162, 269.918686559, 257.731468618, 264.27503610199994, 264.783108752, 261.71013202200004, 262.90801087700004, 251.14487899599987, 253.840841694, 272.39801666999995, 273.5945886259998, 265.726723537, 279.069904943, 269.79090093499997, 271.11585235000007], \"power_mean\": 255.86270031086042, \"energy_millijoules\": 5560.03833289744, \"energy_joules\": 5.560038332897441, \"coremark_score\": 11511.188876, \"coremarks_per_mhz\": 7.7862478869047616, \"ulpmark_cm_score\": 44.963718778845234}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [606.69171724, 633.2973687680001, 609.39992945, 611.9759402120001, 606.718912915, 634.1459326579999, 624.0884095199999, 606.800360475, 610.7814477000001, 632.05529193, 613.4947022640001, 601.434116344, 637.3679972399999, 612.0853939200001, 609.427104, 613.4123635200001, 614.4643711040001, 604.09228773, 618.78005532], \"power_mean\": 615.8165106478948, \"energy_millijoules\": 3079.082553239474, \"energy_joules\": 3.079082553239474}}, \"1728000\": {\"active\": {\"elapsed_sec\": 18.581115566, \"elapsed_ns\": 18581115566, \"power_samples\": [402.95591524100007, 404.4302816149999, 421.70358297400014, 408.256499684, 424.2035424499999, 416.0576377169999, 418.70974370600004, 418.7591364259998, 409.62953650399993, 420.23118157999977, 405.70572297, 416.20520575700004, 405.4136882219999, 420.0336264009999, 409.08657557000004, 409.62953650399993, 407.91483653600005, 405.65717563400005, 409.5318356529998, 408.110000948, 413.50818157699985, 408.15891747800003, 409.3851587969997, 419.98442780699986, 431.9031799369999, 424.00527448599985, 425.32915718100014, 428.03107240999964, 435.92889993899996, 437.45342810599993, 433.28113454900006, 440.45330712199996, 443.8262724719999, 453.04643770200016, 442.4015212370001, 450.34808870200015, 460.9420653169999, 445.099513192, 446.220967826, 454.42120107699986, 450.34808870200015, 457.0220700620001, 458.29465616699997, 450.24670752199984, 441.12822104199984, 446.62558665799986, 448.97388301700005, 447.7977430469999, 441.5306806299999, 453.04643770200016, 454.2174653120002, 456.97095159200023, 468.837243734, 470.2123373569999, 474.18779109700006, 475.511495672, 470.160889139, 472.81251976999977, 472.91591908199996, 473.0193183939999, 469.04332970999997, 471.85048945100004, 464.00435178600026, 482.39533601799997, 490.5009657019997, 479.4350866159999, 474.4986110809999, 469.799425628, 470.6769625009998, 469.2496805779998, 470.72867591600004, 474.96484105699994, 462.7271871239999], \"power_mean\": 442.187512573589, \"energy_millijoules\": 8216.337272971936, \"energy_joules\": 8.216337272971936, \"coremark_score\": 13464.024128, \"coremarks_per_mhz\": 7.791680629629629, \"ulpmark_cm_score\": 30.427183268436153}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [641.1527078000001, 637.196903928, 653.0387062679999, 651.682933083, 647.81511235, 658.3197558209998, 667.6694341589999, 671.5634440110001, 666.16388523, 665.016206829, 663.1846794719999, 663.570727112, 675.633465702, 664.8971031820001, 676.8993801569999, 664.9863926940001, 676.9297297620001, 672.919896012, 674.246390727], \"power_mean\": 662.7835186473158, \"energy_millijoules\": 3313.917593236579, \"energy_joules\": 3.313917593236579}}, \"1900800\": {\"active\": {\"elapsed_sec\": 16.900432129, \"elapsed_ns\": 16900432129, \"power_samples\": [546.5871723619999, 522.6763249670001, 535.9999562500001, 529.1409267769999, 518.3048846359999, 525.2757048019997, 528.033321002, 543.937863062, 539.854282982, 533.390513686, 704.5227533660001, 697.776903458, 703.318883022, 625.7040950029999, 536.0399413260001, 535.8763331419999, 535.8219838480001, 533.227261742, 534.5517974419998, 540.2477587339998, 541.178818682, 520.9502752960001, 530.5197351820001, 524.0009201419999, 523.893009986, 521.1361072660001, 517.2168309309999, 518.4873921060001, 527.979048602, 522.622290662, 519.7581108200001, 521.08240923, 532.955268349, 522.5144991509998, 533.0640097979998, 526.2215840719999, 518.574184922, 531.7941032379998, 514.708067939, 531.6854804339999, 523.7848224259998, 525.0054929719998, 526.4378797420001, 506.5064427960002, 519.7581108200001, 523.893009986, 512.918080631, 518.003793922, 502.53354756600004, 497.1791082689998, 511.7008617780001, 505.23513199399997, 505.12888364599996, 510.7387348040003, 510.3234578359999, 505.76132697100013, 513.0786590229999, 493.3072294619998, 509.26598624999986, 509.1593815780001, 495.854869334, 506.6128097889997, 517.0019211900002, 520.0271346169999, 510.53690446999997, 517.0557175949999], \"power_mean\": 531.3248501194545, \"energy_millijoules\": 8979.619567894937, \"energy_joules\": 8.979619567894938, \"coremark_score\": 14802.534194, \"coremarks_per_mhz\": 7.787528511153199, \"ulpmark_cm_score\": 27.84082311168631}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [745.3487278320001, 752.82248448, 751.428323299, 735.596146305, 746.21672982, 740.842371488, 750.1685452800001, 750.1685452800001, 739.5815844450001, 740.94181968, 746.283446432, 734.8392333460001, 734.3020258199999, 751.8121389539999, 744.989683297, 746.25017388, 736.9562029199999, 742.368534542, 735.7606484959999], \"power_mean\": 743.5093350313684, \"energy_millijoules\": 3717.546675156842, \"energy_joules\": 3.717546675156842}}, \"2092800\": {\"active\": {\"elapsed_sec\": 15.350191505, \"elapsed_ns\": 15350191505, \"power_samples\": [600.071051452, 600.1858472970001, 608.0758784819997, 598.804773402, 588.262221844, 598.8619646020001, 596.1527859469999, 605.308324277, 600.0135059770001, 617.288664522, 603.9271918219998, 604.1000675019999, 601.3948155019999, 612.105132151, 614.2783607569999, 599.9562556070001, 608.3002075479998, 603.8694679219999, 604.9625130019998, 594.199756778, 603.8117440219997, 597.2471986460001, 596.095419092, 604.9625130019998, 611.9311871670001, 601.0497766220002, 590.5678006100001, 597.3046249759999, 598.7472874020001, 611.5835950499999, 593.333688761, 590.811139244, 602.6035464169996, 588.5038367649998, 597.3617568120002, 603.754316142, 612.732820586, 599.898710132, 603.6965922419998, 598.5751242020002, 607.7290572339999, 586.65417158, 605.1930538519999, 601.164691112, 593.333688761, 599.726368812, 598.460447002, 597.2471986460001, 607.3745990739998, 589.187497533, 591.4390388779999, 586.5405629630001, 594.4857059099999, 598.3457698020001, 601.164691112, 597.1897723159999, 595.809173195, 598.3457698020001, 600.992467082, 599.726368812], \"power_mean\": 600.2466926293833, \"energy_millijoules\": 9213.901682103906, \"energy_joules\": 9.213901682103906, \"coremark_score\": 16299.387143, \"coremarks_per_mhz\": 7.7883157219992345, \"ulpmark_cm_score\": 27.132913788908034}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [681.0355414800001, 694.4364904050001, 686.5269886000001, 683.8422031499999, 695.825725248, 693.043142326, 686.4963802499999, 693.167078504, 694.8919990800001, 707.6478581079999, 700.318988208, 689.15490846, 697.12179087, 685.19984088, 682.4845269000001, 685.1692916999999, 681.18802605, 686.465614125, 681.09659793], \"power_mean\": 689.7427890670526, \"energy_millijoules\": 3448.713945335263, \"energy_joules\": 3.448713945335263}}, \"2208000\": {\"active\": {\"elapsed_sec\": 14.547614786, \"elapsed_ns\": 14547614786, \"power_samples\": [682.108669025, 684.2274113060001, 669.5424602479999, 682.9042407860001, 674.9608794019999, 676.284049922, 673.6377088820001, 677.6072204420001, 690.9089375979999, 672.3102000979999, 693.308948362, 693.1854072819998, 686.3214413539998, 694.3231077639999, 674.8999419020003, 661.6569040129999, 672.1280569220002, 668.8760119090001, 666.956937563, 686.7508064059999, 674.656504402, 689.3399711620001, 678.747356602, 693.3704021299999, 680.1923860820003, 690.7859505799998, 694.755283715, 698.4195477299996, 691.677717104, 685.1827307379998, 699.6182257900001, 682.598082392, 687.126761163, 693.2471778219998, 691.4315057779999, 697.1583649219998, 705.0999429119998, 687.8283592979998, 697.0347842899997, 690.4166733639998, 697.0967334499998, 703.652895216, 697.0347842899997, 693.1239535139997, 695.7739191699997, 693.1239535139997, 700.8791121379999, 714.3019932819999, 707.6835847859999, 714.0581502019999, 695.7739191699997, 719.3460670939997, 692.753963818, 702.3879905699999, 697.0347842899997, 699.6182257900001, 710.2041251359998], \"power_mean\": 689.9199162209122, \"energy_millijoules\": 10036.689174371224, \"energy_joules\": 10.036689174371224, \"coremark_score\": 17198.679141, \"coremarks_per_mhz\": 7.789256857336957, \"ulpmark_cm_score\": 24.908612357785998}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [669.1755417600001, 680.944269915, 677.172059685, 674.397233944, 665.19463296, 671.743650984, 679.83046875, 674.3671583180001, 680.9746415850001, 661.32113268, 669.20553432, 688.815804034, 679.6784375, 677.111516114, 679.8, 679.7696875, 675.7543155540001, 674.5180015349999, 667.84857216], \"power_mean\": 675.1380346998948, \"energy_millijoules\": 3375.690173499474, \"energy_joules\": 3.375690173499474}}}}, \"7\": {\"freqs\": {\"806400\": {\"active\": {\"elapsed_sec\": 39.814900349, \"elapsed_ns\": 39814900349, \"power_samples\": [229.098737552, 231.75417349100007, 225.16274754199992, 220.858480955, 215.95507403599993, 220.01014328300005, 224.95994028699988, 207.79744262199995, 221.14112183299994, 227.85451111199995, 205.14659002199983, 217.04383026200003, 221.060396942, 226.48835196200002, 230.30184397699998, 219.77517015800004, 221.14112183299994, 222.50719245799996, 223.8775203419999, 214.46888242400007, 212.34285925799998, 226.447647662, 221.45539519400006, 231.75417349100007, 230.30184397699998, 218.44968468799993, 226.447647662, 223.8775203419999, 222.38582324200001, 242.32146071, 237.01517297600003, 232.99792496199984, 221.18158803799986, 231.71323109600007, 233.03871656599995, 227.8139563819999, 229.098737552, 229.68986103199995, 235.85395990999996, 245.34745160599994, 240.78960485900006, 219.77517015800004, 225.12210271699985, 218.49003194299985, 215.834596004, 222.42614109800002, 218.61086679899995, 217.32543151400012, 231.75417349100007, 225.24382875699985, 219.896183134, 227.936038662, 214.46888242400007, 226.447647662, 211.29829249399984, 230.42428249699992, 226.00073532200008, 210.57240643399984, 230.30184397699998, 219.85598361799987, 229.18017470199993, 210.69217198600006, 226.48835196200002, 221.221846724, 218.44968468799993, 222.466666778, 210.69217198600006, 222.66887953000003, 214.58918233600002, 221.30277913400005, 223.79655777199991, 196.40319934399997, 206.5912469299999, 224.75692459699985, 209.2865279759999, 202.65386358800004, 218.44968468799993, 203.9795271779999, 218.61086679899995, 202.61443366999993, 218.61086679899995, 212.01795452600004, 202.65386358800004, 213.34373706600002, 213.22361527399983, 205.34494288299982, 212.05779882799993, 206.78989655599992, 220.61609876300008, 226.5288475220001, 212.01795452600004, 218.49003194299985, 217.36551268999995, 224.03965361199994, 213.1835061139999, 225.24382875699985, 213.22361527399983, 222.50719245799996, 218.57051954399992, 221.060396942, 209.20687127899987, 214.669519606, 219.93658986399998, 232.1793594239998, 209.4061154079999, 216.07878297799994, 209.32645871099987, 217.2047747779999, 197.34686279000005, 217.28514373400003, 211.97790484099994, 220.01719611, 213.30362790599986, 214.58918233600002, 215.99530214600009, 211.85796116899996, 210.61219156599998, 210.69217198600006, 214.58918233600002, 210.61219156599998, 203.3456662499999, 209.24680201399985, 198.7756869819999, 221.221846724, 219.93658986399998, 227.8139563819999, 215.95507403599993, 214.58918233600002, 215.75434608199987, 217.04383026200003, 217.2047747779999, 217.32543151400012, 213.30362790599986, 195.982065326, 210.61219156599998, 210.6521817759999, 215.914845926, 209.77403777999984, 206.71047753800008, 209.49472154399996, 206.5912469299999, 213.3836405379999, 222.50719245799996, 206.71047753800008, 198.75143546999993, 207.996389013, 197.42565293000007, 201.24925555999994, 194.77408785, 201.36777368799994, 198.75143546999993, 199.9193645659999, 197.54363611400004, 190.63620390199992, 191.101901837, 196.13900426399994, 192.54358901199998], \"power_mean\": 216.72123416112098, \"energy_millijoules\": 8628.734341637326, \"energy_joules\": 8.628734341637326, \"coremark_score\": 6280.933598, \"coremarks_per_mhz\": 7.788856148313492, \"ulpmark_cm_score\": 28.972962905306204}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [739.250797527, 726.392743484, 736.5935774680001, 736.5605499280001, 732.679800606, 720.82888882, 708.689257362, 727.2389576439999, 726.0101287529999, 736.5935774680001, 733.940706378, 737.952930351, 734.3457267730001, 744.5897530889999, 754.3317654350001, 741.9367636589999, 752.4520186859999, 747.11342039, 739.250797527], \"power_mean\": 735.6185348077895, \"energy_millijoules\": 3678.0926740389477, \"energy_joules\": 3.6780926740389477}}, \"1094400\": {\"active\": {\"elapsed_sec\": 29.350182541, \"elapsed_ns\": 29350182541, \"power_samples\": [244.9311073219999, 244.84824565399992, 262.3434966419999, 244.9311073219999, 241.07869306999987, 240.2116405339999, 266.27821578199996, 252.55350023099993, 246.343859984, 250.23715818199992, 239.7117892099999, 259.561463528, 255.62702064799998, 254.13408978099994, 259.561463528, 258.19406164199995, 251.56258448199992, 259.393128446, 254.30147570299994, 243.43998226899998, 262.216780322, 246.26087928200002, 240.87457828599997, 246.26087928200002, 245.721184742, 244.9311073219999, 239.629402122, 250.27871938400006, 242.28025472199988, 252.9715847089999, 244.9311073219999, 258.2359780579999, 246.4684376959999, 233.0797184359999, 242.2388363319999, 251.60420485400005, 242.2388363319999, 242.32146071, 247.5863055819999, 247.66260628999987, 243.64694617999987, 252.67896854299988, 263.5846363669999, 252.9715847089999, 247.5863055819999, 256.8265623369999, 249.94515860299987, 255.24954523999986, 232.9569230919999, 256.8265623369999, 255.41738390600005, 256.910492588, 243.56420315699995, 246.30226297399997, 229.28166274699993, 242.32146071, 235.658757413, 243.68842404499992, 239.7117892099999, 251.56258448199992, 255.54320904199994, 251.56258448199992, 232.9569230919999, 247.62774844399996, 242.2388363319999, 232.9569230919999, 229.01730040199993, 246.2192822720001, 237.01517297600003, 235.60765674200002, 244.889569982, 237.47631516399986, 239.54701503399986, 230.936795318, 256.8265623369999, 231.59082383299994, 224.91929546199992, 230.30184397699998, 236.80969386300012, 242.2388363319999, 234.32335126199985, 245.97012684799995, 235.56674679799994, 234.20037779799998, 248.82851388999995, 232.9161314879999, 234.24143914299987, 227.65111032699986, 230.44653638300008, 251.43729428999995, 237.84683863599992, 230.17940545700003, 238.21736210799986, 235.40247439400002, 231.46820660899994, 234.077404334, 240.78960485900006, 236.93302356699996, 229.01730040199993, 239.67048977000002, 232.8341277479999, 224.91929546199992, 243.43998226899998, 223.5130847119999, 230.34272670199994, 221.25318244200002, 222.34529756200004, 239.01096948199995, 221.01993073699998, 229.01730040199993, 216.963461306, 224.91929546199992, 219.6543643959999, 215.71411797199994, 217.00374908599997, 212.9833716899999], \"power_mean\": 241.58732365463788, \"energy_millijoules\": 7090.632048855269, \"energy_joules\": 7.090632048855269, \"coremark_score\": 8521.662065, \"coremarks_per_mhz\": 7.786606419042397, \"ulpmark_cm_score\": 35.25778777935046}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [700.914854344, 701.303300114, 699.588122034, 718.761638325, 716.88066212, 692.950110542, 699.556760769, 703.509750879, 708.9112129680001, 711.569146064, 706.2576300080001, 708.816205539, 716.88066212, 708.816205539, 710.5504071920001, 708.942990753, 706.3209476779999, 708.847820361, 712.8641450179999], \"power_mean\": 707.4864511772105, \"energy_millijoules\": 3537.432255886052, \"energy_joules\": 3.5374322558860523}}, \"1401600\": {\"active\": {\"elapsed_sec\": 22.919857387, \"elapsed_ns\": 22919857387, \"power_samples\": [293.6965736899998, 296.0841202219999, 310.7082922059998, 325.10862428999985, 318.6609184499998, 305.40509360199985, 306.7784851659999, 316.10076319799987, 306.86692665, 311.98866228199995, 318.75042812799995, 300.2381230420001, 317.3362046299999, 310.84160247, 309.419930682, 309.38357838599984, 315.4756269899999, 313.40669516, 309.2948996120001, 320.07526059299994, 306.5129333579998, 331.59918755, 302.4030988819999, 301.47504846699997, 315.966969362, 302.79982176199997, 305.2724964019999, 309.4280317560001, 302.711736602, 326.61354469399987, 310.619494787, 298.831653802, 306.7784851659999, 314.463778039, 294.8904126189999, 305.53769080200004, 323.96411705399987, 306.690043682, 294.93421137400003, 302.84375112199984, 297.408774872, 295.9964037619999, 310.530697368, 292.06647646700003, 309.4722571599999, 300.01839045200006, 304.03639125199993, 306.557267778, 294.6392726859999, 293.34733236199986, 300.94679710699984, 301.51891865699986, 303.94796070199993, 305.3167711520001, 301.4309521419998, 316.10076319799987, 310.6640076319999, 319.94093331199997, 313.18399297400003, 308.01469833199997, 311.89951764199986, 315.832946034, 324.00922503899994, 303.90397217200007, 318.6609184499998, 320.10229259899995, 314.552931782, 315.3416036619999, 315.832946034, 322.59458574199994, 322.68445174400006, 326.5233227570001, 305.2724964019999, 327.75757735, 319.94093331199997, 329.17685604200005, 314.463778039, 314.64231471200003, 321.13519469999994, 309.25044624199995, 310.6640076319999, 326.4780958219999, 305.18540167399976, 321.17995302199984, 332.83243695, 327.75757735, 329.1315099619999, 325.10862428999985, 315.7881950939998, 326.4780958219999], \"power_mean\": 311.54753982413325, \"energy_millijoules\": 7140.6251820398375, \"energy_joules\": 7.140625182039837, \"coremark_score\": 10913.694504, \"coremarks_per_mhz\": 7.7865971061643835, \"ulpmark_cm_score\": 35.01094002648426}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [675.633465702, 683.47506571, 663.6598385039999, 672.919896012, 678.165212656, 671.6235130020001, 667.7291468259999, 672.950067192, 675.9906040359999, 662.2400022680001, 666.982201228, 670.2026074620001, 676.9297297620001, 683.627987255, 674.276621382, 669.0857178880001, 684.80144178, 675.572885442, 668.906223952], \"power_mean\": 673.4090646346842, \"energy_millijoules\": 3367.045323173421, \"energy_joules\": 3.367045323173421}}, \"1766400\": {\"active\": {\"elapsed_sec\": 18.188825774, \"elapsed_ns\": 18188825774, \"power_samples\": [479.71681339400004, 473.071150954, 464.50650686799975, 476.93922221700007, 473.071150954, 466.3442936119999, 466.39556431999983, 479.4869494120002, 480.91503319699984, 471.7989818689997, 479.6952025979998, 482.0823774260001, 488.8623147520001, 494.00386571299975, 487.38129886700005, 493.9510809679999, 491.5099618019998, 489.2408466769999, 478.0072999009998, 473.5145252069998, 484.78176771200003, 478.21531549199983, 475.511495672, 500.6749026419999, 478.163244837, 492.57043033699995, 488.80976810200025, 489.92337742699976, 494.00386571299975, 488.49502714200014, 484.5728326999998, 484.67730020600004, 483.24936541500017, 483.3014057209999, 487.55107373199996, 505.6016397630002, 505.76132697100013, 487.32881169200016, 494.00386571299975, 496.5982528279998, 488.70494427200003, 495.22182267799974, 494.00386571299975, 479.3829564859999, 499.404220712, 491.1418427619998, 491.29956948200004, 491.29956948200004, 504.54410803400003, 484.74938070200017, 497.8688755879997, 489.7752379619998, 489.76609860199994, 496.54534913299983, 495.1164052339999, 503.1143924009999, 504.490847294, 497.60460294999996, 504.3845989460002, 501.5257612099998, 518.9507629399999, 510.8455767659999, 500.3041444500001, 518.8971240739999, 515.0299372029998, 497.49894821600003, 505.7527656839999, 499.0338779299999, 518.8196182800001, 510.8455767659999, 501.5257612099998, 505.54831954799977], \"power_mean\": 491.3511996282638, \"energy_millijoules\": 8937.101363884385, \"energy_joules\": 8.937101363884386, \"coremark_score\": 13754.401408, \"coremarks_per_mhz\": 7.786685579710144, \"ulpmark_cm_score\": 27.97327565403611}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [735.868326564, 692.6710151899998, 704.64709248, 700.695231428, 707.2996073300001, 696.7787662730001, 704.678529792, 705.9416910699999, 692.7329832789999, 699.400276098, 708.625864755, 693.162826545, 704.710129152, 696.65395723, 703.4782109939999, 700.789332516, 690.01861929, 699.4941990660001, 695.32775928], \"power_mean\": 701.7354957016842, \"energy_millijoules\": 3508.677478508421, \"energy_joules\": 3.508677478508421}}, \"1996800\": {\"active\": {\"elapsed_sec\": 16.080892702, \"elapsed_ns\": 16080892702, \"power_samples\": [601.6250254819998, 585.6311099209998, 589.655498258, 596.215586164, 607.548187818, 601.164597227, 613.8131805379998, 609.101899832, 622.5660477360001, 615.7170411620001, 614.2783607569999, 623.6543437670001, 631.4735801119997, 615.426044106, 618.186349424, 618.1279114340001, 622.0397006380002, 620.6007218579999, 623.2442129780001, 617.952897146, 611.3979761740001, 600.7615376819998, 621.688602174, 617.6613065599998, 603.3475417519998, 629.6806558339998, 621.8641514060001, 628.4180025740003, 632.3828833189999, 620.4839078809999, 629.7396294889999, 621.688602174, 609.7282811709998, 621.8641514060001, 626.9789680680002, 633.586509418, 627.683715433, 620.2499796339999, 617.6613065599998, 620.3085367689999, 617.7197445500002, 621.6299855639999, 626.802705772, 611.1657126499998, 618.7536973100001, 613.5224802469999, 601.622380102, 599.0374437019999, 595.1836791879999, 604.4424859909997, 602.886163727, 588.5721025940001, 612.143307944, 608.754366104, 591.1051305719997, 595.2411055180002, 592.254832466, 603.0014341519999, 602.7705969769999, 587.022961985, 594.897136526, 598.9798387520001, 592.1975250860002], \"power_mean\": 611.8238945923016, \"energy_millijoules\": 9838.67440145856, \"energy_joules\": 9.83867440145856, \"coremark_score\": 15558.874782, \"coremarks_per_mhz\": 7.791904438100962, \"ulpmark_cm_score\": 25.409927170975198}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [732.122376393, 736.099011228, 731.237134858, 740.01375008, 736.263810184, 732.1552255079998, 730.825274844, 734.8392333460001, 732.187906166, 734.70769922, 725.5877933229999, 729.466940454, 737.4576431879999, 727.456655442, 721.57390457, 718.7938922999999, 726.8484615839999, 732.187906166, 731.0216752120001], \"power_mean\": 731.0971733718948, \"energy_millijoules\": 3655.485866859474, \"energy_joules\": 3.6554858668594736}}, \"2188800\": {\"active\": {\"elapsed_sec\": 14.684310098, \"elapsed_ns\": 14684310098, \"power_samples\": [641.2864925619998, 638.1654114719998, 653.1822606719999, 650.240704746, 662.1338009979999, 659.431510818, 658.0506226409997, 650.0612345380001, 653.9037216049998, 646.2734519539998, 648.740438748, 647.5346191689999, 652.7628709080001, 643.3339743560001, 668.68224273, 659.2507931860001, 663.1527917089999, 677.7102663669999, 662.013188436, 649.3433537059999, 651.3220450130003, 661.8321145639999, 661.952727126, 662.013188436, 657.9903397559998, 664.598649184, 660.6923331709996, 659.431510818, 665.798476088, 671.328402467, 652.5229996700003, 653.723717037, 655.1043798019997, 657.9903397559998, 662.1942623079998, 656.729767376, 650.0013086980001, 644.8334086449998, 635.523819892, 643.3932968400001, 659.1907602739997, 636.8446156819999, 642.1916981149997, 640.8708428499998, 638.2248016469999, 635.7013296119998, 630.2953393839997, 636.8446156819999, 637.140660662, 633.5273573379999, 623.803902298, 617.93623001, 626.273918884, 610.7014837579999, 617.1362636960001, 614.5527538659998, 619.957794545, 618.5200066579999], \"power_mean\": 647.4818140160172, \"energy_millijoules\": 9507.82373982676, \"energy_joules\": 9.50782373982676, \"coremark_score\": 17038.097185, \"coremarks_per_mhz\": 7.784218377649853, \"ulpmark_cm_score\": 26.294134897851528}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [720.378430555, 712.9445565839999, 718.246567155, 707.6425460129999, 701.051941148, 701.0204607379999, 702.281959766, 705.025370738, 715.5977330449999, 699.723122072, 690.47828904, 692.945282204, 691.709792956, 685.2065696250002, 691.80282474, 697.10531028, 691.80282474, 682.5267320999999, 681.2021964], \"power_mean\": 699.4048689420526, \"energy_millijoules\": 3497.024344710263, \"energy_joules\": 3.497024344710263}}, \"2304000\": {\"active\": {\"elapsed_sec\": 13.941478693, \"elapsed_ns\": 13941478693, \"power_samples\": [664.6592296389998, 649.0391565589999, 663.3340437009998, 657.208207966, 660.3909435019997, 668.561036554, 663.2735229160002, 668.5002776739999, 669.8210139890001, 650.1211603779999, 656.4891825740002, 648.740438748, 664.296368247, 656.7896819480001, 647.3555057850002, 679.1360638300001, 665.798476088, 673.6658720720001, 650.0612345380001, 671.024636732, 674.316121232, 656.5494059839999, 660.4510355839999, 661.7115020019997, 667.1795413590002, 668.1971064420001, 654.9840523219999, 673.6658720720001, 662.9715397169999, 669.6996891680002, 699.8431047299999, 680.2123101019998, 686.7578401870002, 696.3349819199999, 688.016687622, 687.126761163, 695.88196359, 668.1971064420001, 681.4715145820002, 685.371479212, 677.322475522, 701.2297417420001, 676.0021546170002, 688.1399908019997, 694.6232146819999, 666.816278766, 667.0584538279999, 670.7817490219999, 698.52272435, 673.239831662, 670.4776710919999, 669.5175459920002, 673.422509782, 661.5304281299999, 670.7817490219999], \"power_mean\": 671.0304034160546, \"energy_millijoules\": 9355.15607158012, \"energy_joules\": 9.35515607158012, \"coremark_score\": 17946.877243, \"coremarks_per_mhz\": 7.789443247829861, \"ulpmark_cm_score\": 26.723231348269113}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [629.4585162579999, 659.552976117, 632.16397632, 633.691681022, 644.209020485, 627.0344319840001, 639.048706248, 628.218576555, 634.9312639010001, 623.0274430159999, 627.006284124, 618.997506508, 625.260990142, 615.074104513, 636.2844550919999, 619.025297323, 615.046633919, 620.4056283760001, 616.3989369779999], \"power_mean\": 628.6756015200526, \"energy_millijoules\": 3143.378007600263, \"energy_joules\": 3.1433780076002633}}, \"2400000\": {\"active\": {\"elapsed_sec\": 13.398393901, \"elapsed_ns\": 13398393901, \"power_samples\": [792.3920224120001, 749.1128260020001, 755.78552443, 788.4263744520002, 753.0750349470001, 749.0827883820001, 770.1925917890002, 759.2299897630002, 758.3623104899999, 755.72083786, 753.139602372, 795.0993733069998, 755.5274416020001, 762.0695796619999, 810.8199933899999, 763.7796732630001, 771.4478682739999, 776.9968872589997, 774.1546232239999, 780.696521858, 778.1863460640001, 771.5132689339997, 771.1350038060001, 774.023920002, 777.3996518739999, 833.4836901019997, 779.507082379, 780.7623390379998, 785.9833224320001, 793.8452866019999, 797.8069621019998, 789.879281402, 796.2206197079998, 793.9113583459999, 780.696521858, 792.3920224120001, 826.9441196719998, 795.0993733069998, 780.696521858, 829.9589478509998, 792.6570935210001, 785.7854953520001, 785.8515506270002, 793.7124619620002, 793.7788742820002, 793.5799778980003, 795.8886457299999, 834.531570558, 789.945175442, 791.0056294579998, 825.3528358019997, 793.8452866019999, 795.1658451019997], \"power_mean\": 784.446376355151, \"energy_millijoules\": 10510.321544618406, \"energy_joules\": 10.510321544618407, \"coremark_score\": 18676.228896, \"coremarks_per_mhz\": 7.78176204, \"ulpmark_cm_score\": 23.786141930929542}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [645.4469997, 675.9300604650001, 640.2059575999999, 635.942414952, 634.87440027, 652.1035969799999, 640.2347006000001, 649.5997862080001, 634.988127532, 669.542695596, 634.9027589959999, 639.048706248, 685.482991425, 648.274834793, 635.7427572600001, 643.1146987599999, 634.9596226269999, 637.723636188, 639.077389578], \"power_mean\": 646.1682176725263, \"energy_millijoules\": 3230.8410883626316, \"energy_joules\": 3.2308410883626317}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm7250ab/250kiter-headless/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 cpu7 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nBaseline power usage: 681 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 614 864 1075 1363 1516 1651 1804\n\n 300:  1109     3.7 C/MHz     88 mW   19.8 J   12.6 I/mJ   225.4 s\n 576:  2134     3.7 C/MHz     76 mW    8.9 J   28.1 I/mJ   117.2 s\n 614:  2276     3.7 C/MHz    118 mW   13.0 J   19.3 I/mJ   109.8 s\n 864:  3203     3.7 C/MHz     71 mW    5.5 J   45.4 I/mJ    78.1 s\n1075:  3346     3.1 C/MHz     89 mW    6.6 J   37.7 I/mJ    74.7 s\n1363:  5057     3.7 C/MHz    158 mW    7.8 J   31.9 I/mJ    49.4 s\n1517:  5627     3.7 C/MHz    129 mW    5.7 J   43.7 I/mJ    44.4 s\n1651:  6126     3.7 C/MHz    122 mW    5.0 J   50.0 I/mJ    40.8 s\n1805:  6696     3.7 C/MHz    152 mW    5.7 J   44.1 I/mJ    37.3 s\n\n\n===== CPU 6 =====\nFrequencies: 652 940 1152 1478 1728 1900 2092 2208\n\n 653:  2540     3.9 C/MHz     32 mW    3.1 J   80.3 I/mJ    98.4 s\n 941:  7321     7.8 C/MHz    142 mW    4.8 J   51.6 I/mJ    34.2 s\n1152:  8600     7.5 C/MHz    169 mW    4.9 J   50.8 I/mJ    29.1 s\n1478: 11511     7.8 C/MHz    256 mW    5.6 J   45.0 I/mJ    21.7 s\n1728: 13464     7.8 C/MHz    442 mW    8.2 J   30.4 I/mJ    18.6 s\n1901: 14803     7.8 C/MHz    531 mW    9.0 J   27.8 I/mJ    16.9 s\n2093: 16299     7.8 C/MHz    600 mW    9.2 J   27.1 I/mJ    15.4 s\n2208: 17199     7.8 C/MHz    690 mW   10.0 J   24.9 I/mJ    14.5 s\n\n\n===== CPU 7 =====\nFrequencies: 806 1094 1401 1766 1996 2188 2304 2400\n\n 806:  6281     7.8 C/MHz    217 mW    8.6 J   29.0 I/mJ    39.8 s\n1094:  8522     7.8 C/MHz    242 mW    7.1 J   35.3 I/mJ    29.4 s\n1402: 10914     7.8 C/MHz    312 mW    7.1 J   35.0 I/mJ    22.9 s\n1766: 13754     7.8 C/MHz    491 mW    8.9 J   28.0 I/mJ    18.2 s\n1997: 15559     7.8 C/MHz    612 mW    9.8 J   25.4 I/mJ    16.1 s\n2189: 17038     7.8 C/MHz    647 mW    9.5 J   26.3 I/mJ    14.7 s\n2304: 17947     7.8 C/MHz    671 mW    9.4 J   26.7 I/mJ    13.9 s\n2400: 18676     7.8 C/MHz    784 mW   10.5 J   23.8 I/mJ    13.4 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm7250ab/dyniter-headless/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (mJ),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1103.752759,3.679175863333333,148.4668882718288,4186.665244866011,4.777071685997689,28.199319684\r\n1,576000,2128.414331,3.6951637690972223,184.29666975151312,3561.207570901591,8.424108789706098,19.323233435\r\n1,614400,2270.663034,3.6957406152343752,187.8199329752361,3401.466133304561,8.81972620755,18.110251023\r\n1,864000,3197.186476,3.700447310185185,190.82509646099996,3051.2582838300177,13.109345810539176,15.989816541\r\n1,1075200,3339.827442,3.1062383203124995,181.279432216619,3860.3283699889826,15.542719232501778,21.294905455\r\n1,1363200,5050.736948,3.705059380868544,229.52733811170523,5504.647107334097,19.983115693909223,23.982533639\r\n1,1516800,5620.848237,3.705728004351266,263.8039310818353,5684.876176131173,19.349585917429813,21.54962647\r\n1,1651200,6119.61057,3.7061595021802325,260.31284256985896,5152.411436407931,21.349226737352303,19.793151139\r\n1,1804800,6689.776805,3.7066582474512413,260.2552241673194,4712.347294526274,23.34293147870761,18.106638626\r\n6,652800,2534.693619,3.882802725183824,143.91670242202528,2903.9243614339525,13.774463457528926,20.177813364\r\n6,940800,7316.262055,7.77663908907313,265.6253187300307,4400.5406771554,24.996928348156132,16.566721494\r\n6,1152000,8591.736312,7.458104437500001,343.8142131448545,4850.245427414695,22.679264718905745,14.107169634\r\n6,1478400,11438.375751,7.736996584821428,404.7463353518598,11013.615352342913,18.159341288186013,27.211155211\r\n6,1728000,13458.950202,7.788744329861111,509.3965657484176,11779.787815653322,16.978234508964093,23.124984752\r\n6,1900800,14800.562421,7.7864911726641415,590.6673874115903,12424.002619501884,16.097871686380778,21.033838814\r\n6,2092800,16303.904785,7.790474381211773,720.40123921028,13755.964540386429,14.539147684832695,19.094865183\r\n6,2208000,17165.417406,7.77419266576087,776.616956201851,18599.183984356918,16.129739898928836,23.948980042\r\n7,806400,6275.673209,7.7823328484623016,272.9172164732236,5270.233535744644,20.871940352157058,19.310740465\r\n7,1094400,8515.250039,7.7807474771564324,345.05054420005354,4911.113511144638,22.398179099379476,14.233026418\r\n7,1401600,10918.222513,7.7898277061929235,403.45160400975,11501.540510074388,17.388974965989703,28.507856694\r\n7,1766400,13754.212227,7.786578479959239,557.7892515508089,12623.62372387807,15.84331126898945,22.631529182\r\n7,1996800,15538.808173,7.781855054587339,670.9749543672151,13438.367508280518,14.882760117757089,20.028120902\r\n7,2188800,17053.206003,7.791121163651315,759.8958568660842,18329.552929401314,16.36701130439403,24.121138132\r\n7,2304000,17927.572607,7.7810644995659715,832.2763431077777,19096.485149780598,15.709697237318395,22.944885203\r\n7,2400000,18684.603886,7.785251619166667,886.5622148484712,19518.61620168947,15.369942054295475,22.016070474\r\n"
  },
  {
    "path": "results/sm7250ab/dyniter-headless/results.json",
    "content": "{\"version\": 1, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [686.0953125, 669.08675327, 655.5653660670001, 642.2149249339999, 659.672606986, 647.5218618000001, 636.822382658, 631.5144027169999, 622.129799141, 635.59515629, 632.830737878, 656.963387456, 652.9390825199999, 658.419934284, 673.14128814, 658.5366604230001, 665.272798966, 659.9647911019999, 658.854311286], \"power_mean\": 652.7969241272632, \"energy_millijoules\": 3263.984620636316, \"energy_joules\": 3.263984620636316}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 28.199319684, \"elapsed_ns\": 28199319684, \"power_samples\": [202.49956686399992, 203.7665287069998, 190.213971571, 212.8546926949998, 212.78054433499995, 203.2909190669999, 206.0059048390001, 204.55668367700014, 211.21964886699993, 193.69506095500003, 196.3727462349999, 178.9234260940001, 192.17568108400008, 193.73111624299986, 177.69104188899996, 181.743631219, 164.292648965, 175.0087292820001, 154.88101454299988, 150.96275349500002, 145.4999221889999, 154.95004532300004, 140.24572362900017, 148.21633347099998, 133.68001425399996, 130.83011071499993, 121.58434657900011, 121.88108632299998, 116.321123553, 102.69750405899993, 106.94067876899987, 116.15751263000004, 94.78601254900002, 94.78601254900002, 93.56931166599998, 102.79392245899987, 90.82700270600014, 76.054231039, 85.559205615, 89.48762601099997, 73.34471071899998, 73.31398383499993, 70.63119525899992, 76.11608048300002, 84.09452739400001, 88.0539531469999, 88.11687117399993, 86.74607323899988, 89.48762601099997, 82.66146502099991, 93.44236348899994, 82.81765292699993, 94.84952419000001, 105.53678140900001, 98.86765427499995, 113.60958071800007, 102.92237025899999, 100.23910632500008, 103.11520705899989, 97.71968825199986, 93.75965245000009, 106.32675529899984, 107.23153704899983, 117.63210220199994, 104.61593853399995, 116.68113484399998, 122.01302711100004, 124.66433397699996, 137.933639137, 127.27791435999995, 131.29747001500004, 143.53447300899995, 138.10217425299993, 144.84058245899996, 135.354868883, 144.874621659, 152.85129138999991, 151.44258784499993, 155.39786038299997, 164.81573192500002, 163.6998813230001, 176.9140773429998, 172.506889549, 163.58031851199996, 168.76506690999997, 168.9053281969998, 190.25003409099997, 188.87423863599997, 186.26654095599997, 202.28035311999997, 197.02592262099984, 193.0061894559999, 214.49068629299984, 208.94670381599985, 211.69989093699985, 211.84775993799997, 214.41660941200007, 203.07134908299997, 198.11145702199985, 206.79375503200004, 209.9173938230001, 209.76995193099992, 211.03476516099988, 212.29953061499998, 192.17568108400008, 181.351603414, 190.83274653400008, 188.15565478400003, 189.49420065900006, 177.40737205899984, 176.06449717899977], \"power_mean\": 148.4668882718288, \"energy_millijoules\": 4186.665244866011, \"energy_joules\": 4.186665244866011, \"coremark_score\": 1103.752759, \"coremarks_per_mhz\": 3.679175863333333, \"ulpmark_cm_score\": 4.777071685997689}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [727.0998697800001, 725.6949037, 722.9452749220001, 728.31168958, 731.5591226760001, 741.9224739300001, 739.761901343, 747.0919433340001, 739.0401237980001, 756.613781244, 767.3102499199999, 748.432448224, 763.18679221, 764.49337685, 767.20830688, 768.6168342550001, 769.8253950679999, 762.2741140899999, 767.1742676800001], \"power_mean\": 749.3980457623159, \"energy_millijoules\": 3746.990228811579, \"energy_joules\": 3.7469902288115793}}, \"576000\": {\"active\": {\"elapsed_sec\": 19.323233435, \"elapsed_ns\": 19323233435, \"power_samples\": [96.12527059900003, 110.67091576099995, 106.5528677289999, 98.6120197869999, 109.29968850699993, 113.31621642699997, 109.33201395099991, 113.414060371, 117.435512883, 111.94476276700004, 125.40761535499996, 133.579496758, 133.579496758, 117.6978004319999, 125.70595993100005, 121.71628736699995, 125.83861428299997, 127.14502241299988, 140.51608889400006, 124.59821059000001, 133.84748604100002, 131.13042122299998, 133.84748604100002, 144.88737009399995, 149.96591917199987, 154.70879159699996, 163.40613516999997, 163.301696698, 155.294491215, 164.606498741, 164.71111533299995, 178.04558362900002, 165.98080632799997, 182.06424807400003, 188.83842022199985, 349.0454560150001, 349.0454560150001, 361.10328340599995, 354.448360363, 196.7719613769998, 198.14768981999998, 203.47383139099998, 200.79484010099986, 229.12597779099997, 215.64946501399993, 211.51519704999987, 226.14561793899986, 226.22076340299998, 228.40935716299998, 239.50931113900003, 230.90192698600003, 236.82640402899995, 228.78646471900004, 232.84659676899992, 222.0109943189999, 214.00890092299994, 232.65715172299997, 227.25894965600003, 241.76639708099992, 231.0154548339999, 230.82611215600002, 226.91997094399994, 222.67977308100012, 221.262526139, 218.661173909, 218.73591740899985, 206.60976351, 204.1535483639999, 201.22107026799983, 186.67351895499985, 175.81658928699983, 181.24467009399984, 174.51392650699995, 164.64125151299993, 170.60504380299983, 177.3718450089999], \"power_mean\": 184.29666975151312, \"energy_millijoules\": 3561.207570901591, \"energy_joules\": 3.5612075709015913, \"coremark_score\": 2128.414331, \"coremarks_per_mhz\": 3.6951637690972223, \"ulpmark_cm_score\": 8.424108789706098}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [667.3916458230001, 676.651774173, 671.443981442, 670.01543388, 663.432429918, 666.081845168, 658.011617559, 646.8046134, 640.590937726, 635.229039547, 645.862688704, 649.9133901, 644.609067811, 647.3209555999999, 637.879611915, 641.87345079, 627.16068051, 637.85128563, 636.596683052], \"power_mean\": 650.774796460421, \"energy_millijoules\": 3253.873982302105, \"energy_joules\": 3.253873982302105}}, \"614400\": {\"active\": {\"elapsed_sec\": 18.110251023, \"elapsed_ns\": 18110251023, \"power_samples\": [111.716987335, 129.19114229899992, 118.93873906900001, 134.583099059, 132.27386108299993, 126.77978279999991, 129.5576879219999, 133.512542467, 124.167983617, 125.6065117390001, 126.9790354239999, 128.38483227100005, 137.73153542499995, 144.43281029900004, 140.3809930839999, 131.03026055100008, 145.80628566899998, 148.4212894389999, 151.20275871299998, 151.09992448899993, 151.168421943, 156.56513308199987, 164.5366349210001, 175.22081355399996, 173.8814960289999, 175.397489921, 168.55476500600003, 159.50822846900007, 176.56013107899992, 180.22656325899993, 181.8860869089999, 195.28744942900005, 195.35986450200005, 204.77660990100003, 199.414473627, 204.70336392399997, 202.06113937600003, 204.77660990100003, 207.27167962199997, 219.407267359, 216.80306581900004, 212.706586099, 222.0109943189999, 230.05022137000003, 226.22076340299998, 212.66970204299992, 223.54189106299998, 216.69168949899984, 230.20122416800007, 236.90249904200004, 242.0728738470001, 226.07047247499986, 237.593765761, 234.11005657099986, 237.51735618099997, 224.61863693100008, 219.07149655900002, 224.54341724099993, 237.7081842089999, 234.95492077900008, 230.90192698600003, 233.237010232, 226.6564498219999, 221.262526139, 227.956673067, 210.48068349999994, 219.96200532399996, 213.2304271710001, 215.91071797899997, 213.2304271710001, 203.93362214, 191.85060273999989], \"power_mean\": 187.8199329752361, \"energy_millijoules\": 3401.466133304561, \"energy_joules\": 3.401466133304561, \"coremark_score\": 2270.663034, \"coremarks_per_mhz\": 3.6957406152343752, \"ulpmark_cm_score\": 8.81972620755}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [645.776785808, 635.0320221610001, 636.3709834460001, 641.702713718, 636.399250256, 640.477447754, 645.862688704, 628.667170371, 632.298066864, 637.7947783230001, 629.727582032, 633.6930608760001, 649.85581421, 645.776785808, 644.5519668899999, 643.070179908, 643.1271621840001, 636.4273721080001, 648.5166748050001], \"power_mean\": 639.7436055908421, \"energy_millijoules\": 3198.7180279542104, \"energy_joules\": 3.1987180279542105}}, \"864000\": {\"active\": {\"elapsed_sec\": 15.989816541, \"elapsed_ns\": 15989816541, \"power_samples\": [130.42946802699998, 139.8402625540001, 125.07623490699996, 127.81933078899988, 139.80640177899988, 134.48240344300007, 141.31396340899983, 139.80640177899988, 145.12553622400003, 149.178947635, 137.05808709699988, 146.53648941999995, 148.01137750299995, 144.05907733899994, 156.6945581709998, 149.55529475600008, 142.51699806400006, 138.90225327300004, 148.31881145499995, 152.26761357099997, 165.56180692300006, 168.4497941069999, 153.53772289099982, 160.16729342500003, 161.61033635799993, 167.21538831099997, 170.99184542699993, 172.40120365300004, 175.0087292820001, 168.34464315499997, 184.493137874, 195.1787337410001, 187.03221735099976, 187.03221735099976, 185.765083731, 185.80078380500004, 204.44672056499996, 197.820660803, 204.55668367700014, 216.54286933899994, 216.468554779, 220.5223219689999, 221.89871447899998, 221.89871447899998, 216.43130197899995, 233.50260976599998, 233.8442620300001, 223.90539997299993, 233.8442620300001, 236.6360686879999, 245.940651451, 239.20378414300012, 255.3946967889999, 256.6557822189999, 262.1331693709999, 257.99462485899994, 256.6946200489999, 265.87445449799986, 259.3724236689999, 248.46381117499993, 236.369638334, 259.0989272589999, 271.074900091], \"power_mean\": 190.82509646099996, \"energy_millijoules\": 3051.2582838300177, \"energy_joules\": 3.0512582838300175, \"coremark_score\": 3197.186476, \"coremarks_per_mhz\": 3.700447310185185, \"ulpmark_cm_score\": 13.109345810539176}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [671.205927041, 672.425547084, 663.1677692940001, 669.718497632, 673.435620851, 653.6992880250001, 646.890695, 640.335512352, 637.6816184459999, 645.748102478, 631.0107482689999, 626.9938644140001, 626.79934085, 633.6930608760001, 634.975752144, 644.123489799, 639.0205202559999, 651.07941623, 649.68293853], \"power_mean\": 647.9835636616316, \"energy_millijoules\": 3239.917818308158, \"energy_joules\": 3.2399178183081583}}, \"1075200\": {\"active\": {\"elapsed_sec\": 21.294905455, \"elapsed_ns\": 21294905455, \"power_samples\": [150.34592423699996, 149.042014236, 139.70499309899992, 134.314462467, 135.65253315200005, 127.65304703499987, 124.94358055500015, 136.88972501499984, 127.68637214499995, 126.1489298859999, 118.24884001300006, 125.00999287499997, 119.61987876299997, 135.65253315200005, 127.65304703499987, 128.95779260999996, 130.295863295, 138.39627673199993, 134.348085147, 138.39627673199993, 140.9754567089999, 146.3658728659999, 144.6490290989999, 141.00920300899998, 138.86862550700005, 149.0079127219999, 138.63236444999984, 149.14467033999995, 154.43319948299995, 155.8748769309999, 151.95857653899986, 141.31396340899983, 146.77507232200003, 154.639937819, 140.110627819, 154.88101454299988, 149.52101746099993, 145.534020864, 157.55881816299996, 156.2199163529998, 165.52681553800005, 158.863204075, 157.55881816299996, 169.54755448600008, 170.88633765099996, 188.01182723499994, 172.29551775699997, 185.6576154669999, 182.9040106389998, 177.54911587899994, 182.86842909900008, 186.960514537, 185.478563034, 191.70606162699994, 207.1245241849998, 201.18447208299995, 209.62232052499996, 211.07177986600004, 213.82342307699992, 223.01714871299987, 216.468554779, 212.44763721099991, 224.506000267, 240.542567308, 228.48473991700007, 235.14495935499997, 235.10706882700003, 237.78439786700005, 231.12878828499993, 245.90208942100003, 236.67421400299997, 251.17982119499993, 257.83843535899985, 260.515645449, 260.476630109, 267.2130595429999, 263.19724440799985, 253.7449816589999, 253.78390073399999, 246.97111622800003, 250.7538178609998, 252.05296997099992, 262.9225004059999, 254.53876780899998], \"power_mean\": 181.279432216619, \"energy_millijoules\": 3860.3283699889826, \"energy_joules\": 3.8603283699889825, \"coremark_score\": 3339.827442, \"coremarks_per_mhz\": 3.1062383203124995, \"ulpmark_cm_score\": 15.542719232501778}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [740.6743101779999, 741.782645969, 728.327228755, 724.3774056999999, 716.375554569, 698.9651570009999, 715.0646958479999, 712.451234605, 698.9962206959999, 699.0272843910001, 688.3769728, 689.776596385, 680.462278482, 677.6646931199999, 675.102994464, 680.432202856, 675.073155712, 665.5505381520001, 672.365953062], \"power_mean\": 698.9919538286841, \"energy_millijoules\": 3494.9597691434205, \"energy_joules\": 3.4949597691434207}}, \"1363200\": {\"active\": {\"elapsed_sec\": 23.982533639, \"elapsed_ns\": 23982533639, \"power_samples\": [151.40929496499984, 151.58092340799988, 152.85002205900003, 152.81556633900004, 164.96803003600007, 176.910904309, 164.8982267089999, 160.95014351199984, 182.22576045899996, 179.58621485900005, 179.58621485900005, 180.99509797899998, 195.719383387, 182.43998333900004, 189.17019278700002, 184.6905851119999, 187.9400057759998, 181.42283125899985, 184.06397963400002, 200.0653775469998, 194.81647221899993, 197.49344501899986, 190.65232179999998, 213.564058779, 208.28371547999984, 221.56187495899997, 216.31973461899986, 224.355753758, 229.71017393800003, 217.69565193899996, 232.31603381899993, 248.30948398300006, 238.93652160700003, 238.93652160700003, 247.00953967399983, 252.24686843799998, 240.23656542699985, 246.97111622800003, 263.0009698749999, 269.69689917100004, 264.45726133899996, 278.9895510399999, 276.43275920199994, 275.05013229099995, 280.4077533069999, 273.6324049929999, 285.8862091789998, 285.805721578, 293.27149969900006, 292.33957757899987, 295.7020521590001, 296.435405209, 279.4868881309999, 285.60419221200004, 282.7229357709999, 281.46549912099977, 293.27149969900006, 289.1734530829999, 285.1612000429998, 286.25679898500005, 292.783883059, 293.0276913790001, 278.18999502099996, 276.69323698899996, 280.904168196, 276.89298296100003, 264.88991185199984, 266.1086933429999, 262.1765361480001, 262.01939548899986, 256.7848078589999, 239.3950111209998, 245.96873962899997, 236.79283662499984, 240.84696678300008, 232.81950024499997, 239.31855978400006, 217.95245220899994, 227.31543519299998, 215.42738677900002, 214.05301306399997, 222.75487382099982, 204.72117526300008, 197.34795352599986, 203.45724085000006, 199.51823378699987, 186.099527791, 179.40835045900008, 196.76636108799994, 187.40088325600004, 192.89924269099993, 192.86300155100002, 184.8337534499999, 176.66276152900002, 182.04730252900004], \"power_mean\": 229.52733811170523, \"energy_millijoules\": 5504.647107334097, \"energy_joules\": 5.5046471073340975, \"coremark_score\": 5050.736948, \"coremarks_per_mhz\": 3.705059380868544, \"ulpmark_cm_score\": 19.983115693909223}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [710.9235356160001, 708.184594864, 718.892597912, 696.2578733369999, 697.596062972, 685.60875, 685.66953125, 690.87002064, 664.3594504880001, 669.6293862399999, 668.5236144340001, 664.2710521599998, 658.6789407579998, 649.56778675, 645.461857554, 641.475113015, 640.1651315199999, 642.756557664, 641.4467542890001], \"power_mean\": 672.6494006033158, \"energy_millijoules\": 3363.247003016579, \"energy_joules\": 3.3632470030165793}}, \"1516800\": {\"active\": {\"elapsed_sec\": 21.54962647, \"elapsed_ns\": 21549626470, \"power_samples\": [199.7736300009999, 202.48595445099988, 191.92278052299991, 197.23888159799992, 198.6499103629999, 205.80088086399996, 212.07746578299998, 212.48908707400005, 208.09961512300004, 205.308469435, 198.79545237899993, 214.68415517899996, 210.77623168299988, 216.20816725899988, 222.792231625, 237.6317746289999, 236.17910737599993, 242.91318198699992, 237.47934731299983, 224.09306345599998, 240.19824149199997, 244.2514902669999, 249.57037082800002, 249.53182904200003, 248.11627744700002, 260.280748969, 249.45434813200006, 254.92775374899986, 269.5385697580001, 248.00063123500001, 268.27964645299994, 266.85804127099993, 276.19358433799994, 278.9895510399999, 277.6513614049999, 277.49160564299996, 277.571380985, 284.2661215270001, 290.9204848489999, 288.240074896, 294.52750877899973, 289.6184042670001, 306.3258765869999, 297.651215494, 289.94830961900004, 301.71087601099987, 302.4743690710002, 305.72526649099996, 303.007885351, 308.282049475, 305.72526649099996, 305.684026721, 310.9166883969998, 300.2909523769998, 294.893755619, 300.004359819, 298.6667640190001, 302.515489891, 305.14896714099996, 309.04120606499976, 306.36696423499995, 300.768149644, 310.2541060919999, 300.768149644, 299.43138496899985, 297.9312706359999, 303.359529585, 287.472669634, 291.3253328689999, 277.7903197029999, 283.2609930670001, 283.38144319900005, 277.950107677, 272.599141111, 264.53563027099995, 258.825230044, 259.302147709, 257.331170359, 236.44977720300005, 244.63191547899987, 252.61832433400002, 247.18971920299998, 237.98167615900013, 227.27784070899997, 236.640409309], \"power_mean\": 263.8039310818353, \"energy_millijoules\": 5684.876176131173, \"energy_joules\": 5.684876176131174, \"coremark_score\": 5620.848237, \"coremarks_per_mhz\": 3.705728004351266, \"ulpmark_cm_score\": 19.349585917429813}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [640.051495674, 640.023196118, 638.595607264, 645.318587998, 645.375954658, 657.457505541, 651.07941623, 650.733100705, 652.0712903399999, 662.8148884620001, 652.1001226200001, 656.0319277120001, 652.1291035200001, 649.3949110699999, 670.848768993, 653.438371425, 665.4913860720001, 661.5602934599999, 662.96202285], \"power_mean\": 653.0251553006316, \"energy_millijoules\": 3265.125776503158, \"energy_joules\": 3.2651257765031576}}, \"1651200\": {\"active\": {\"elapsed_sec\": 19.793151139, \"elapsed_ns\": 19793151139, \"power_samples\": [197.84886805899998, 192.718408695, 195.42906205299994, 189.9673005819999, 199.29956366099998, 196.69370872500008, 198.06736815500005, 203.49395798499995, 196.5846367969998, 222.08012255699987, 218.28822300900003, 204.39075156700005, 195.46542214299996, 219.84990360400002, 209.032173929, 202.5590817829999, 207.80501671000002, 209.069129159, 214.46137669900008, 211.89247513099997, 214.57276593900008, 215.91071797899997, 219.99924459400006, 222.67977308100012, 226.618721027, 229.294625107, 231.974915915, 233.312867955, 240.08346621999988, 252.01430984499996, 243.98256609099997, 247.92326927500005, 253.35658924899997, 250.63761704499996, 249.33852410499992, 268.04261019699993, 250.7538178609998, 262.80469534199995, 251.97545043999992, 262.6084208089999, 263.90674048899996, 256.0323749889999, 273.31452475899994, 274.89085249799996, 273.354132187, 282.7229357709999, 280.12760625099986, 276.15365360299995, 278.23004470600006, 281.385161851, 275.077571488, 283.98472687900005, 284.8793899849999, 301.587902547, 300.16815703299994, 294.81243711399986, 302.720672239, 304.14047692300005, 314.80999770899984, 312.295905595, 317.485427209, 322.7986586290001, 316.10599649899996, 314.726684739, 317.52698841099993, 313.3890889390001, 313.347705247, 310.62676875599993, 307.78680298000006, 310.46128271, 318.32198119099996, 322.295358085, 319.491620764, 308.7104961509999, 321.95989620700004, 319.4080468369999, 312.6834329950001, 309.798700405], \"power_mean\": 260.31284256985896, \"energy_millijoules\": 5152.411436407931, \"energy_joules\": 5.152411436407932, \"coremark_score\": 6119.61057, \"coremarks_per_mhz\": 3.7061595021802325, \"ulpmark_cm_score\": 21.349226737352303}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [661.354963788, 653.2934674, 649.2796112799999, 642.585464352, 649.3084732299999, 645.290051762, 655.9737582079999, 654.693857027, 640.307066922, 633.159261972, 646.2881238000001, 631.8495169619999, 637.229269464, 634.553365384, 630.535122536, 641.247512312, 634.5253027019999, 637.201088442, 642.585464352], \"power_mean\": 643.224249573421, \"energy_millijoules\": 3216.121247867105, \"energy_joules\": 3.216121247867105}}, \"1804800\": {\"active\": {\"elapsed_sec\": 18.106638626, \"elapsed_ns\": 18106638626, \"power_samples\": [233.89047037900002, 239.31855978400006, 220.47675951899987, 224.604073459, 232.51587434599992, 235.15114004099985, 228.5390288440001, 228.576876589, 215.1669992589999, 225.79023538499985, 223.22957998899994, 217.840528609, 213.68184275399994, 227.01371039100002, 223.004306661, 220.36447967899983, 227.1646696849998, 225.82796417999987, 239.08900923999988, 239.16546057699998, 235.22723505399995, 243.13709375500002, 232.40199025799996, 237.7907463150001, 243.17539866699997, 235.11319034299993, 228.42587379100007, 241.80050689500013, 232.09836435900002, 249.90181119299984, 247.691580123, 258.0826531539999, 258.356350369, 247.46008933500002, 246.43140545300002, 254.14978186899998, 251.66517303700005, 250.40521541299995, 259.7327242189999, 261.035452171, 255.87642308399995, 269.10341793099997, 273.07606354300003, 258.4344635140001, 258.356350369, 255.79854722899984, 269.14305109600014, 270.5202208909999, 271.77825329099994, 287.876501608, 281.06443075000004, 283.783701187, 295.8649264589999, 299.92256634499995, 290.51525573899994, 290.47487851899996, 291.85267341899987, 291.731155814, 289.13313522700014, 287.7957767170001, 299.75897939699996, 305.31371473499996, 305.354743019, 305.2724749649999, 302.31030754300014, 315.27317479500005, 315.98106254699996, 304.449159967, 311.88138424300007, 317.1934276300001, 311.83984690299997, 317.15186642800006], \"power_mean\": 260.2552241673194, \"energy_millijoules\": 4712.347294526274, \"energy_joules\": 4.712347294526274, \"coremark_score\": 6689.776805, \"coremarks_per_mhz\": 3.7066582474512413, \"ulpmark_cm_score\": 23.34293147870761}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [697.162798872, 698.407125598, 701.1792591840001, 697.2864977600001, 689.1954002150001, 687.8885107600001, 701.3970593280001, 689.287184575, 688.04113554, 678.641744256, 682.685415621, 659.958426834, 677.3039703360001, 671.948488512, 670.7000041040001, 661.2375248640001, 657.2826410939999, 654.955309739, 667.9307806080001], \"power_mean\": 680.6573304105264, \"energy_millijoules\": 3403.286652052632, \"energy_joules\": 3.403286652052632}}}}, \"6\": {\"freqs\": {\"652800\": {\"active\": {\"elapsed_sec\": 20.177813364, \"elapsed_ns\": 20177813364, \"power_samples\": [225.82796417999987, 222.96688968699993, 206.9948237719999, 220.36447967899983, 213.75603866900008, 215.0183701389999, 201.71745950699994, 200.49042034899992, 193.62078580800005, 187.07740974399997, 174.931723627, 169.6907032989999, 182.95562703899998, 177.71567418400002, 183.13438173400004, 168.42427863400007, 163.246662183, 149.76325566299988, 148.22094118500002, 144.41086296899994, 133.84477949099994, 143.175803739, 135.11465504600005, 135.08114562000003, 133.744083875, 125.7173295959999, 124.44650988300009, 128.39145308600007, 119.02763706199994, 120.43058451500008, 113.70756839699993, 108.32675929300001, 119.12637218999998, 105.68045890399992, 120.39755697499993, 109.501230244, 100.42821552399994, 100.26786998899979, 96.25247956499982, 107.01757981899982, 112.30527403299982, 108.42406887699997, 112.40311797699997, 113.6422763029999, 123.07618280799988, 124.3802678510001, 124.47971604299994, 123.04320610599996, 120.49647022300019, 125.81695590799984, 120.03493152299995, 129.79523144300003, 116.45189245999995, 127.05439134099993, 129.86194805500008, 125.61770328400007, 133.744083875, 125.85005094999997, 141.87260307399993, 136.62013804299988, 131.27046732299982, 133.97892536300003, 127.25382930699993, 142.00817346400004, 129.99555278699995, 147.56742322299988, 138.19381678000002, 149.31775808299994, 138.26124565099997, 146.12728996399994, 144.95539257899998, 151.58092340799988, 157.07482546300002, 143.61744053899997, 148.83687780899993, 160.95014351199984, 151.6153196529998, 155.59880993199988, 166.23594145899983], \"power_mean\": 143.91670242202528, \"energy_millijoules\": 2903.9243614339525, \"energy_joules\": 2.9039243614339525, \"coremark_score\": 2534.693619, \"coremarks_per_mhz\": 3.882802725183824, \"ulpmark_cm_score\": 13.774463457528926}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [784.5961668959999, 763.3084294500001, 776.7008831820001, 772.6127182860001, 775.220481152, 779.4467097599999, 780.646598817, 765.95112576, 773.9509670909999, 769.936220676, 763.6971074549999, 759.053092752, 774.9798212000001, 769.6972223639999, 775.048555944, 764.10399288, 776.0463297860001, 768.052489377, 779.988661751], \"power_mean\": 772.2651355041579, \"energy_millijoules\": 3861.3256775207897, \"energy_joules\": 3.8613256775207896}}, \"940800\": {\"active\": {\"elapsed_sec\": 16.566721494, \"elapsed_ns\": 16566721494, \"power_samples\": [340.03783047699994, 331.870273729, 330.65971101899993, 327.68538069499994, 337.1809494370001, 309.20666722299995, 326.4747379209999, 322.1277348729999, 332.86803318400007, 322.0439232670001, 331.23491092899997, 333.82272965899995, 339.17203322299986, 327.09494404500003, 329.602619494, 332.825761554, 317.52861966700004, 325.59043781799994, 316.1509698519999, 309.5504713359999, 312.14352513699987, 313.56265301199994, 308.1317007009998, 298.8586203849999, 297.481744135, 296.386366879, 302.7840613599999, 276.25416499100004, 278.84637569899996, 277.5103826740001, 269.49004421899997, 268.2727474420001, 264.6143370299998, 265.596024263, 258.75432406899995, 242.90647449099993, 249.70820949099982, 248.33306029599999, 233.62445543499996, 236.37336762299992, 230.98972379499992, 240.34896664299993, 232.363963893, 225.677242481, 229.61540763999983, 217.6168730589999, 214.94405557899995, 232.44001662300002, 209.5940389509998, 209.55702424599986, 216.39220979900006, 198.03088911500004, 206.88432571599992, 200.27120660499997, 202.87089644799994, 200.27120660499997, 193.54837073500005, 190.8755532549999, 197.6303679629999, 198.93473869499996, 190.8755532549999, 188.27029421099996, 202.87089644799994, 200.23479610299978, 192.175720855], \"power_mean\": 265.6253187300307, \"energy_millijoules\": 4400.5406771554, \"energy_joules\": 4.4005406771554, \"coremark_score\": 7316.262055, \"coremarks_per_mhz\": 7.77663908907313, \"ulpmark_cm_score\": 24.996928348156132}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [732.4758671760001, 731.1375588960001, 737.7309001120001, 741.782645969, 733.7491206519999, 743.3186621000001, 728.585880125, 745.96699584, 748.511076693, 748.685168322, 753.9019633439999, 757.9168881840001, 771.308746776, 765.95112576, 767.18731288, 765.8832219199999, 757.7823322930001, 774.0197595810001, 769.9704384959999], \"power_mean\": 751.3613507957368, \"energy_millijoules\": 3756.8067539786844, \"energy_joules\": 3.7568067539786845}}, \"1152000\": {\"active\": {\"elapsed_sec\": 14.107169634, \"elapsed_ns\": 14107169634, \"power_samples\": [288.8903967949999, 286.3778119609999, 296.957676754, 299.5951821829998, 298.29912230800005, 299.5951821829998, 302.3512174869999, 315.6479766509998, 310.3370618219999, 319.826346158, 323.800377141, 333.1225345439999, 317.1100909930001, 327.80213145899995, 331.74320116900003, 328.5622123989999, 334.50220445900004, 334.37477565899974, 333.08026291400006, 335.67355287299995, 344.95070611899985, 345.0365358569999, 345.07956104699986, 343.57091625399994, 353.062576046, 354.31285819899983, 359.57740221799986, 355.64968234899993, 354.3995188409999, 361.00136197899997, 367.118515859, 366.2653123839999, 367.92631699899994, 378.34432914399997, 370.36351405899995, 368.8066605539999, 376.87466029100017, 372.94883990899996, 383.5172259029998, 352.543101591, 371.2148771640001, 376.5194892630001, 371.082458084, 375.094817464, 361.3764103909998, 362.66807030099994, 365.387343559, 358.19707638299985, 353.22882045099993, 352.2398708919999, 346.7630203829999, 351.89348043099994, 341.33050204699987, 343.87706214699983, 339.9095104930001], \"power_mean\": 343.8142131448545, \"energy_millijoules\": 4850.245427414695, \"energy_joules\": 4.850245427414695, \"coremark_score\": 8591.736312, \"coremarks_per_mhz\": 7.458104437500001, \"ulpmark_cm_score\": 22.679264718905745}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [675.93191235, 685.18296875, 670.610714592, 673.2862624320001, 667.990170588, 667.990170588, 662.6679051360001, 674.204909552, 676.2017642129999, 668.2272736620001, 670.789293616, 680.160592048, 674.863515408, 678.942991884, 676.141814256, 686.94705828, 681.559147134, 681.559147134, 678.882649524], \"power_mean\": 675.3758032182632, \"energy_millijoules\": 3376.879016091316, \"energy_joules\": 3.376879016091316}}, \"1478400\": {\"active\": {\"elapsed_sec\": 27.211155211, \"elapsed_ns\": 27211155211, \"power_samples\": [325.337718826, 333.3130144589999, 329.264089464, 333.2281346589999, 326.75758262700003, 337.409183751, 337.409183751, 339.9949839069999, 342.67039893499987, 349.34798963499986, 350.7312092830001, 345.2554868320001, 357.41347630099995, 353.22882045099993, 350.687886523, 348.0556751099999, 344.00591707499984, 351.89348043099994, 351.8069384339999, 345.2124021669998, 361.42020914600005, 365.6067793839999, 362.66807030099994, 361.3764103909998, 366.8547464190001, 350.9040559869999, 380.39876676099993, 360.3466186029999, 361.7261266040001, 357.84878482499994, 361.7261266040001, 353.835890501, 366.00189918399997, 373.93593476299986, 367.29421159900005, 374.02437624699996, 373.93593476299986, 377.94462662299986, 378.70233138699996, 367.29421159900005, 364.2665847579999, 380.44316986900003, 391.315694991, 389.88936735100003, 381.91300810200005, 376.60839600299994, 395.143473449, 392.471487399, 411.18853066400004, 396.71011209100004, 400.5826414050001, 404.595357109, 407.22199335900007, 409.89409835899994, 407.35922459899996, 413.8137411150002, 416.6709814280001, 416.11706677199993, 431.2840798589999, 420.59127935899994, 423.0774783459998, 423.2633843589998, 427.322397581, 432.7137969459999, 425.8888342440001, 425.9354893589999, 440.4991412830001, 441.9812608589999, 425.8424183860001, 444.6058775089999, 454.10567793300004, 450.049438053, 456.58285956099996, 441.93389145900017, 457.49471979700013, 455.346166359, 458.0226518589999, 468.57002292699997, 468.71545235899987, 459.022197378, 480.50371364900013, 463.31854046900014, 471.1930932519998, 468.3760340099999, 484.60927531899995, 465.70476043999986, 461.8380091959999, 457.8305644809999, 465.75320097500014, 454.2449541919999, 470.755985869, 467.30971752399967, 465.0762755499999, 461.0673035379999, 451.4801347329998, 470.027057509, 455.4401914619999, 463.64489640299996, 432.646630309, 448.90620613199997, 440.8465815389999, 434.1690664849999, 430.16080712099995, 427.49155143099995, 431.35481769399996, 412.8018934779999, 405.38349097900016], \"power_mean\": 404.7463353518598, \"energy_millijoules\": 11013.615352342913, \"energy_joules\": 11.013615352342914, \"coremark_score\": 11438.375751, \"coremarks_per_mhz\": 7.736996584821428, \"ulpmark_cm_score\": 18.159341288186013}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [681.867532676, 680.954587206, 676.9733592570001, 666.2381403930001, 679.647601087, 667.545507148, 678.400838988, 670.283370679, 664.989655096, 667.7233725240001, 664.9010786480001, 674.14507824, 648.84757009, 659.2263322679999, 656.903393523, 654.2582517380001, 643.437691591, 648.90514598, 651.5505258599999], \"power_mean\": 665.0946859469474, \"energy_millijoules\": 3325.473429734737, \"energy_joules\": 3.325473429734737}}, \"1728000\": {\"active\": {\"elapsed_sec\": 23.124984752, \"elapsed_ns\": 23124984752, \"power_samples\": [444.89776906400004, 438.07844951000004, 439.60195471099985, 450.2886790670001, 452.67123415899994, 444.850465074, 443.4208605289999, 444.94531688899986, 450.1933522830001, 452.95817204699995, 471.754977832, 461.11556545299993, 455.58401722999986, 459.780640843, 474.47356515700005, 463.74141041500013, 462.6432800189999, 473.38212795899983, 474.8636699499999, 469.3720860589998, 458.73408024900016, 466.89514591299996, 477.3877920839999, 480.20964628900003, 472.09564468899987, 477.4367680889999, 481.1612327189997, 488.2756202119998, 483.6748461889998, 494.758803284, 490.60030215999984, 505.59537177100003, 497.3793773189999, 501.43928793399994, 506.830458669, 517.5214614089999, 512.0749133790001, 498.814395599, 509.4549939589998, 517.217413489, 530.8272915089998, 508.0650500989999, 526.7195339450003, 513.4815175149998, 536.1209603189999, 524.6700833650001, 522.7605861590001, 534.7345277109999, 540.1308235989999, 545.21194972, 550.8164963790001, 550.7645152430001, 565.4064963499999, 564.124297315, 558.7269028839997, 543.9290360949998, 561.1863594790001, 566.7415396049997, 562.73640984, 556.1615215590001, 569.4780962990002, 566.5829217009999, 561.0505462919997, 551.7863031410001, 547.6259406149999, 566.318649063, 568.828811659, 557.9391598839997, 573.6386393070003, 570.971045867, 557.7818810589998, 568.1401051790002, 552.0232008789998, 549.617179035, 546.7934625390002, 550.8986672, 541.5062415409999, 535.091187715, 528.2120153079996, 519.747543969, 514.7647535390003, 510.7638977390001, 508.1468064349998, 504.34204588299997, 493.51735530200006, 496.2843114849999, 493.46760553700017, 490.9941452470001, 471.12263216200006, 481.89792993899994, 476.2633532409999], \"power_mean\": 509.3965657484176, \"energy_millijoules\": 11779.787815653322, \"energy_joules\": 11.779787815653323, \"coremark_score\": 13458.950202, \"coremarks_per_mhz\": 7.788744329861111, \"ulpmark_cm_score\": 16.978234508964093}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [671.44155633, 679.466527215, 660.7974681000001, 668.6195588559999, 659.3141956520001, 649.5783201149999, 640.678437465, 654.0548498850001, 655.39161456, 647.4817058699999, 647.3379889050001, 640.678437465, 642.04376652, 663.3872202469998, 640.678437465, 642.01520214, 651.17451726, 640.7354472750001, 647.2805316600001], \"power_mean\": 652.7450412097369, \"energy_millijoules\": 3263.7252060486844, \"energy_joules\": 3.2637252060486843}}, \"1900800\": {\"active\": {\"elapsed_sec\": 21.033838814, \"elapsed_ns\": 21033838814, \"power_samples\": [539.5108740939999, 546.3434428999998, 538.37837239, 532.9369372769999, 541.052122443, 539.7692085129999, 549.168732127, 535.7089983599998, 553.1210496309999, 551.7339945860002, 555.5852392940002, 558.3068632089997, 561.0811797140001, 562.4891074509998, 567.706240078, 574.0110605010001, 573.049127287, 575.7714889250002, 582.3958980309998, 582.2351415189997, 587.684869885, 593.1355481889999, 603.5994628540001, 607.7165223370001, 601.0393048529999, 603.4358546699999, 598.311401129, 623.5738123089999, 611.610536449, 620.9006567589998, 623.7985651970001, 631.584528859, 619.5735415809999, 633.1423869439999, 634.2533093590001, 638.4290973829999, 634.309307509, 643.5420014889997, 647.5493686689998, 655.5597281739998, 643.429461455, 656.9510687590001, 644.937181459, 627.3544663829999, 635.363756584, 631.082475739, 642.9225973429999, 649.4822252589998, 641.4201429889998, 643.6405885350001, 649.0861120749997, 635.6898158989999, 639.468545203, 635.633698799, 626.075923839, 626.1870393549999, 622.4101248859998, 615.4641956259997, 619.5735415809999, 603.678311067, 609.0150187950002, 588.843817075, 586.2855590559999, 594.3423506189998, 576.6304198669999, 591.5681529489997, 585.436408659, 566.3300985069999, 562.436263231, 558.4849490189998, 545.3038990029999, 548.1270811390001, 545.407773284, 541.350831549, 542.6326461069999, 537.2945122509999, 532.011961869, 541.2992056269999, 529.2381410649999, 539.9657651469998, 531.909274816, 523.2336937700001, 525.2891759949999], \"power_mean\": 590.6673874115903, \"energy_millijoules\": 12424.002619501884, \"energy_joules\": 12.424002619501884, \"coremark_score\": 14800.562421, \"coremarks_per_mhz\": 7.7864911726641415, \"ulpmark_cm_score\": 16.097871686380778}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [639.086247416, 656.553514788, 644.4311698959999, 656.582583942, 651.20349816, 651.23233044, 656.670091086, 657.8606450579999, 652.5687983500001, 649.89586253, 659.3141956520001, 656.582583942, 662.0798207700001, 667.367641772, 675.301898406, 663.2988219189999, 663.328338484, 675.421952433, 671.44155633], \"power_mean\": 658.4327132302105, \"energy_millijoules\": 3292.1635661510527, \"energy_joules\": 3.2921635661510527}}, \"2092800\": {\"active\": {\"elapsed_sec\": 19.094865183, \"elapsed_ns\": 19094865183, \"power_samples\": [655.2755606049997, 656.3821400910002, 655.0483433710002, 645.5943255969997, 660.4447985109999, 669.7288534990001, 663.0554967950001, 669.7288534990001, 678.6063674289998, 683.075566907, 691.8312527450001, 692.240967819, 687.0185785519999, 691.0241631959999, 692.357900441, 687.0185785519999, 694.966639371, 704.306756475, 684.2928444969999, 700.2470519389998, 697.5798147390002, 692.357900441, 704.1887556589999, 708.3714931989999, 718.8068439890002, 709.9115584289999, 716.1995324339999, 714.8291630269999, 713.710815088, 718.747343995, 721.4782154190001, 713.3540132799998, 728.210309209, 718.5084239160002, 721.418596891, 712.0801415949999, 730.8170850990001, 725.3588140659998, 744.100200859, 745.4943255090001, 732.0300908319999, 745.4943255090001, 746.7584792690003, 750.5271489410001, 742.3361383590001, 748.1005222990001, 740.0347486030001, 745.250963219, 753.254908731, 753.254908731, 754.6495845859998, 762.715340911, 751.9829409159998, 756.0440641449999, 744.0392633590001, 747.8563720140002, 751.9216463710001, 750.404992827, 748.9455007390001, 747.307582349, 752.8260598629998, 757.116961476, 753.7299568660002, 750.8815250919998, 750.6979557880001, 751.846283359, 754.5715500789996, 750.5756810289998, 733.2471472689998, 741.3084975340001, 722.6471741890001, 733.3076680539999, 738.640098619, 730.7037284859999, 717.314743624], \"power_mean\": 720.40123921028, \"energy_millijoules\": 13755.964540386429, \"energy_joules\": 13.75596454038643, \"coremark_score\": 16303.904785, \"coremarks_per_mhz\": 7.790474381211773, \"ulpmark_cm_score\": 14.539147684832695}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [655.129777024, 645.7430386000001, 657.7729597939999, 656.553514788, 653.7063955, 656.4367886490002, 661.815311208, 650.9720968199999, 677.798498456, 663.0631435, 669.926365524, 670.045316278, 670.045316278, 662.050514742, 675.511954425, 682.5056020079999, 672.8978998419999, 670.934777346, 671.4714299399999], \"power_mean\": 664.4410895116841, \"energy_millijoules\": 3322.205447558421, \"energy_joules\": 3.322205447558421}}, \"2208000\": {\"active\": {\"elapsed_sec\": 23.948980042, \"elapsed_ns\": 23948980042, \"power_samples\": [704.3445776589998, 722.886737505, 714.9485385170002, 710.7733779629999, 710.8920914269999, 713.4969693869999, 717.613163697, 713.437646903, 712.1055124330002, 719.0094038829999, 700.1075668949999, 716.1613566670002, 721.4944990749999, 743.1877008589996, 749.6105070470002, 727.4289490690002, 725.611407475, 733.9116344519999, 727.308811087, 724.9390088919998, 735.3694632590001, 738.216706195, 735.6717441960001, 752.8874138830002, 750.2216016430001, 744.9466039539999, 747.7344535789999, 742.0374728590001, 752.8260598629998, 744.885606979, 753.9577661169998, 762.2838974469997, 780.708432859, 775.4975627949999, 767.372413659, 771.4946528709999, 771.4327847190001, 768.5192556269998, 776.7683044140002, 775.435516939, 783.4366115839997, 779.3713352590001, 784.8946414989999, 786.1647059439998, 785.913983774, 780.6461501289999, 788.8977300429998, 789.989459407, 795.440438449, 800.2010986049999, 808.5175971069997, 798.1060133990001, 798.0426360590001, 816.5172654029997, 803.377917659, 805.9799661169999, 816.581475783, 814.108202689, 823.3133997189999, 824.646068549, 830.9897897709999, 827.1220476309999, 828.4545383409999, 828.4545383409999, 838.8916095589999, 851.1199868769999, 841.2928091949999, 837.6560170029999, 833.7888700030002, 825.5960070569998, 835.803822109, 834.4072151759998, 836.745411928, 829.953945697, 836.3554390389999, 829.695150999, 812.3810208189999, 814.979179839, 831.0952919570001, 820.3724935589997, 812.4447835750001, 802.0446033879999, 793.8618983169998, 807.1792966959998, 775.0236013640002, 781.6835918339999, 765.701360444, 777.8106192849999, 772.672242901, 756.5635800120002, 757.9562187849998, 752.8103291459998, 743.7898510639999, 735.6128493369998], \"power_mean\": 776.616956201851, \"energy_millijoules\": 18599.183984356918, \"energy_joules\": 18.59918398435692, \"coremark_score\": 17165.417406, \"coremarks_per_mhz\": 7.77419266576087, \"ulpmark_cm_score\": 16.129739898928836}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [682.960958488, 684.30109375, 678.9837669089999, 676.312137099, 687.06421146, 677.6479520039999, 674.821990524, 667.9959316999999, 650.9720968199999, 655.0132884800001, 649.664936075, 646.9354927800001, 652.2789903, 664.01546584, 642.923489724, 641.5590509639999, 645.5996184, 644.259364104, 645.255292], \"power_mean\": 661.503427759, \"energy_millijoules\": 3307.5171387950004, \"energy_joules\": 3.307517138795}}}}, \"7\": {\"freqs\": {\"806400\": {\"active\": {\"elapsed_sec\": 19.310740465, \"elapsed_ns\": 19310740465, \"power_samples\": [225.27874433299996, 214.53503893899995, 239.19962956099994, 246.4561691309999, 241.07127493799987, 245.12065099099982, 242.44523596299996, 259.82010802699983, 263.7085011429998, 243.70820654499994, 258.323747559, 264.9650157589998, 271.844150035, 273.17966817499996, 278.48601032299985, 282.53705265099995, 277.230651028, 286.86785362700004, 281.11690584100006, 290.06763607900007, 294.52027140899986, 310.4716708269999, 315.859184506, 314.565287043, 309.2605516949999, 297.23650968699997, 302.4142834290001, 305.0479236589998, 310.4716708269999, 327.88653667899996, 325.1691673749999, 323.9178762509998, 301.0378817589999, 309.1363308069999, 306.80886104500007, 303.4613088609999, 305.309722117, 324.748113301, 317.944536321, 304.4294910189998, 313.857613219, 312.5646063559999, 317.69359969699997, 312.3150946919998, 317.61002577, 309.5595534429998, 293.74609510899984, 300.1760315470001, 293.5017836589999, 292.3304458289999, 290.95552939899994, 274.9769392070001, 260.2918568450001, 264.0185030030001, 272.26426941599993, 268.34119673099997, 260.25252125, 258.91836859499983, 257.619058119, 272.34401154600005, 256.4021161090001, 245.72261905900007, 245.8771446149999, 237.86500171599994, 218.97982315899992, 229.77692503699996, 229.81489192699996, 227.36807784099994, 210.22736913899996, 221.953159711, 228.13974001299982, 211.26596160700012, 209.82031365499995, 216.57238055899995, 201.7714536210001, 211.15494149999995], \"power_mean\": 272.9172164732236, \"energy_millijoules\": 5270.233535744644, \"energy_joules\": 5.2702335357446435, \"coremark_score\": 6275.673209, \"coremarks_per_mhz\": 7.7823328484623016, \"ulpmark_cm_score\": 20.871940352157058}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [649.34739366, 656.0867600729999, 654.7513014079999, 662.709550188, 653.2997410249999, 645.3987122, 661.4036672580002, 661.4329732860001, 658.728489909, 661.943633168, 672.1210211589998, 672.03152891, 675.0019945079999, 669.717972365, 660.445302084, 671.1434330220001, 681.8977266420002, 679.285608372, 675.151946457], \"power_mean\": 664.310460826, \"energy_millijoules\": 3321.5523041300003, \"energy_joules\": 3.3215523041300004}}, \"1094400\": {\"active\": {\"elapsed_sec\": 14.233026418, \"elapsed_ns\": 14233026418, \"power_samples\": [291.7276586590001, 285.046876439, 277.0848636669999, 290.47345902400014, 296.541748738, 298.44923248299995, 303.7495642790001, 298.57202782699994, 310.43034649899994, 309.1363308069999, 310.43034649899994, 305.25399727499985, 309.0535877839999, 315.859184506, 318.446409569, 318.529983496, 325.08499983399986, 333.355563459, 339.82403707900005, 349.2609014589999, 351.850320669, 349.9527326110001, 361.11406707899994, 337.06802013900005, 368.90908993899995, 361.02669417799996, 354.520882369, 363.82830858399984, 370.5087932339999, 365.03620113399995, 365.16790773399987, 377.1892778839998, 382.4005178309999, 370.5087932339999, 381.0207831110001, 378.30209481099996, 375.9452009339998, 368.90908993899995, 368.9199910189999, 373.1392793389999, 362.1428961109998, 364.59732948399994, 382.04319878699994, 381.86442451899984, 376.3006188809999, 384.53308606899986, 381.5518564150001, 368.1597999789999, 366.693881249, 357.3537641449999, 357.4845795609999, 352.18822441300006, 361.3547974549998, 346.8913930749999, 336.1724930470001, 331.8689668589999], \"power_mean\": 345.05054420005354, \"energy_millijoules\": 4911.113511144638, \"energy_joules\": 4.911113511144638, \"coremark_score\": 8515.250039, \"coremarks_per_mhz\": 7.7807474771564324, \"ulpmark_cm_score\": 22.398179099379476}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [659.741120808, 658.874878732, 657.480775678, 661.462430376, 661.5506505840001, 670.875030126, 657.5684609419999, 697.6630306269999, 658.757677403, 664.1334666559999, 680.228866758, 711.8901414059999, 685.728277605, 690.9491063000002, 671.2030270440001, 679.134610126, 675.3319504409999, 680.682442038, 680.6220171119999], \"power_mean\": 673.8883137243158, \"energy_millijoules\": 3369.441568621579, \"energy_joules\": 3.369441568621579}}, \"1401600\": {\"active\": {\"elapsed_sec\": 28.507856694, \"elapsed_ns\": 28507856694, \"power_samples\": [330.7052074139999, 330.8324580940001, 333.46205364699983, 338.79747720699993, 357.4845795609999, 341.5125280000001, 357.44112375500004, 357.52825936600004, 353.6956983519998, 342.889468555, 356.1073270349999, 352.23166612299997, 364.2022096840001, 365.580161899, 357.57193917100005, 372.21007536700006, 371.0043837090001, 361.7049885529999, 360.327261752, 360.3708358979999, 372.6968445629999, 372.7411789829998, 371.402175309, 379.463097145, 376.74480652299985, 376.83385993699983, 380.619476674, 370.155751269, 380.7533218819999, 383.4225775719999, 400.82684143100005, 396.86818594099987, 406.2157875889999, 412.75577383300003, 402.07047560499984, 402.02483214999995, 410.1784025820001, 419.6181841030001, 405.9413251090001, 424.7712647970001, 420.767559687, 416.84914128699995, 421.96275820900007, 429.87992881699995, 436.74394061500004, 423.4366964269999, 426.1102088009999, 431.26091232399983, 442.2283950340001, 442.0863516339999, 444.66051760900007, 460.7302126239998, 454.005624409, 456.77470035700014, 459.2993580189999, 460.7302126239998, 452.71913902899985, 455.4882154769999, 471.7260131669999, 474.180923925, 469.1525931100001, 468.6440482989998, 483.37971010900003, 463.30672519899997, 456.6787799589998, 464.6894965089999, 461.8716245909999, 464.39935012499984, 460.34485979500016, 466.9219887129999, 473.35185728399995, 466.58281938699986, 469.1039146749998, 466.1950905760001, 460.95525279499986, 462.4376028749999, 438.2797084109999, 448.85779708300004, 451.57138747700003, 453.00034093199986, 437.08813262699994, 444.9495003789999, 428.850202021, 426.18427083099994, 422.4135039629999, 414.2248411920001, 406.31408512899986, 400.9314958509999, 395.50858062999987, 404.9809414140001, 392.97390605299984, 389.064459555, 375.01103824100005, 379.8610968909999, 374.52296303499986, 359.88994802900004, 377.18984399499993, 371.90018913899996, 362.5132548429998, 365.228318759, 358.64392693900004, 374.6560951790001, 364.1144804590001, 358.60018765899997, 346.63261449900006, 349.0880547549999, 351.92801970899984, 344.05132568199986, 341.25517438399993, 348.182104825, 339.874336889, 336.823131418], \"power_mean\": 403.45160400975, \"energy_millijoules\": 11501.540510074388, \"energy_joules\": 11.501540510074388, \"coremark_score\": 10918.222513, \"coremarks_per_mhz\": 7.7898277061929235, \"ulpmark_cm_score\": 17.388974965989703}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [682.7484068159999, 673.4864723839999, 680.138151702, 679.745156682, 680.077726776, 677.5275767319999, 680.198731962, 670.875030126, 669.4799179639999, 676.071706716, 661.4036672580002, 649.376315085, 673.4864723839999, 650.76952776, 665.202721092, 656.115979068, 655.6493741940001, 646.734170865, 648.0984914799999], \"power_mean\": 667.2202945813684, \"energy_millijoules\": 3336.101472906842, \"energy_joules\": 3.336101472906842}}, \"1766400\": {\"active\": {\"elapsed_sec\": 22.631529182, \"elapsed_ns\": 22631529182, \"power_samples\": [512.3499115660001, 513.6838269310002, 517.4869235389998, 526.9804901469996, 520.3068373990001, 521.5899554990002, 529.3919468089999, 526.6760021289998, 529.494396183, 530.267924915, 541.5581335759999, 545.5637182199999, 565.631485883, 552.1279369389998, 541.5062415409999, 545.6675925009998, 542.839919311, 548.1270811390001, 558.8004024589999, 557.361571609, 557.5191202089999, 562.8056307789999, 574.7591910089999, 577.323958267, 559.627794396, 577.4306815839999, 564.679778459, 566.7534639339998, 562.5419516709998, 588.0495520790001, 574.5993256810001, 583.995532603, 589.3292945229997, 586.6084982079998, 591.7842113289997, 597.334309339, 593.171627139, 589.3830517289999, 591.9463939689998, 595.9465369839999, 606.4581853780002, 607.1889708109999, 606.6223285060001, 618.7993200310001, 616.0705332489998, 598.5090479309998, 599.7877997959998, 597.0629104489998, 590.3387271309999, 598.345974107, 607.462745767, 616.4109043749999, 605.8018939330001, 602.859379547, 608.3023759850001, 594.590747734, 593.4756621390001, 596.0855397290001, 587.1876155629999, 578.7064870540001, 586.1640313510001, 570.603503359, 566.7096100990001, 574.8170442510001, 565.377594274, 558.7656025739999, 553.4897897690001, 538.827575291, 548.104635155, 554.8742014190001, 541.4398927209999, 530.9845633849999, 529.6522507950002, 530.8304008170002, 527.136885001, 515.1400997889999, 516.421769599, 509.0492136470001, 503.1889139469996, 508.422813562, 513.752538502, 500.373750715, 500.373750715, 495.13963267299994, 505.65315122300024, 485.80782888099986, 489.70603977099984, 492.325657085, 487.04129625099984], \"power_mean\": 557.7892515508089, \"energy_millijoules\": 12623.62372387807, \"energy_joules\": 12.62362372387807, \"coremark_score\": 13754.212227, \"coremarks_per_mhz\": 7.786578479959239, \"ulpmark_cm_score\": 15.84331126898945}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [657.4222187379999, 670.7558420820001, 670.785562494, 661.168463724, 658.5527631409999, 670.6067804280001, 670.725968472, 680.138151702, 670.7558420820001, 686.7893927400002, 670.9644977579999, 678.9536912829999, 670.815436104, 670.9943713680001, 677.9579400160001, 684.453125, 671.9716627399999, 687.1252300000001, 689.8278841800001], \"power_mean\": 673.7244644237895, \"energy_millijoules\": 3368.6223221189475, \"energy_joules\": 3.3686223221189477}}, \"1996800\": {\"active\": {\"elapsed_sec\": 20.028120902, \"elapsed_ns\": 20028120902, \"power_samples\": [623.521227115, 615.5194202109998, 623.4656454849998, 619.241691757, 618.1852324509999, 628.6345153889998, 630.0786560589999, 633.965190709, 638.079750704, 650.0792077740001, 651.3029937169998, 648.6332866509998, 651.3029937169998, 645.830260674, 655.3010002069999, 665.856117659, 661.9114063830001, 669.911431724, 678.0852239289999, 689.913679682, 683.246263696, 684.637192091, 672.6344338089999, 685.9698609209998, 700.6379568629999, 699.246314378, 699.246314378, 699.246314378, 715.2463650599999, 701.911533088, 713.399411966, 711.1890276749997, 708.4604732890001, 717.9115837700002, 720.401701483, 724.4590994529998, 713.8541274349999, 726.9480883030002, 723.126608743, 704.4037894089998, 712.1647757469999, 702.830684571, 710.654664499, 712.045943638, 714.4122670849998, 708.962193249, 715.4459220070001, 715.0880514790002, 712.5447517830002, 705.7064798589998, 712.485429299, 707.096935784, 697.7157212089998, 694.0703269930001, 685.7274011589999, 683.0072496909999, 685.7274011589999, 683.2399277070002, 669.8613316589998, 673.916855883, 673.916855883, 672.5280655989999, 666.3845064140002, 653.992113441, 657.819116389, 662.098737961, 640.7264754969996, 643.5066332799998, 627.5756581439999, 620.8583518359998, 620.9135892620001, 624.8527962310001, 626.2397518020001, 608.9209921330001, 604.7077001020001, 604.8718432300001, 594.1569286090001, 596.932760711, 598.318811841], \"power_mean\": 670.9749543672151, \"energy_millijoules\": 13438.367508280518, \"energy_joules\": 13.438367508280518, \"coremark_score\": 15538.808173, \"coremarks_per_mhz\": 7.781855054587339, \"ulpmark_cm_score\": 14.882760117757089}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [654.518473856, 658.494237702, 659.94645048, 662.5622700969999, 667.787954256, 654.489463872, 665.173237554, 658.201309605, 665.143602039, 662.5033883339999, 661.139006634, 669.152574051, 682.6270823840001, 680.04759198, 675.9214570290001, 678.802693037, 669.4204425870001, 684.20984375, 677.746635489], \"power_mean\": 667.7835639334737, \"energy_millijoules\": 3338.9178196673683, \"energy_joules\": 3.3389178196673686}}, \"2188800\": {\"active\": {\"elapsed_sec\": 24.121138132, \"elapsed_ns\": 24121138132, \"power_samples\": [706.654249759, 724.0389860519998, 713.4969693869999, 715.922980579, 717.4340503130001, 720.042761067, 727.8590389839998, 723.8589814839999, 733.3076680539999, 723.7390811809997, 733.2471472689998, 737.2473833889998, 746.258802659, 753.1781802339998, 748.6323160569999, 754.510077109, 751.7238899550001, 754.387446415, 761.1124745909998, 742.397075859, 766.382183457, 770.501573359, 771.7759095929999, 759.6572147559999, 773.0454410929998, 782.5601017089999, 778.2477865419997, 776.9782911530002, 780.7901453090002, 784.3629841770002, 778.2477865419997, 788.2805620089997, 799.5674381929999, 790.304211285, 784.972969974, 800.771986248, 801.089439146, 809.9738852110003, 814.2882477479999, 803.5667830449999, 810.1015021070001, 814.2244258219997, 811.4330427420001, 837.8816209149999, 816.8921110889997, 816.5710904289996, 803.2442902070001, 820.5010600040001, 817.0678185939997, 815.1714816950001, 816.122188849, 816.122188849, 823.4026628789999, 822.3901820539999, 816.8111602839998, 815.4165366589997, 818.0127358589999, 806.1596080539997, 795.3856629590001, 798.109628499, 794.1187461989999, 791.3277230350001, 780.6819581639996, 780.9949284789997, 763.5045354189998, 769.849772317, 752.9149323489997, 760.8395855989999, 767.557545304, 755.7028696870001, 754.306502818, 742.2677419339999, 736.881206939, 739.9108005189997, 717.2766563749998, 715.9416432469999, 718.5473808749999, 725.264921203, 711.8900639569998, 705.4104348789998, 712.663702537, 709.3475956909998, 709.2883915469998, 712.187593735, 697.3038129109997, 698.6344632509998, 697.4214577919996, 693.2487040679997, 697.18616803, 685.2026579770001, 683.8721262820003, 691.976848763, 691.8009432910002, 709.2288822269999, 720.1176053830001], \"power_mean\": 759.8958568660842, \"energy_millijoules\": 18329.552929401314, \"energy_joules\": 18.329552929401313, \"coremark_score\": 17053.206003, \"coremarks_per_mhz\": 7.791121163651315, \"ulpmark_cm_score\": 16.36701130439403}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [677.0457661959999, 670.368251142, 669.1227599160001, 659.711723388, 663.6907360879999, 661.021480398, 661.9141166029999, 658.377036373, 651.6122530750001, 666.359991778, 671.7028789869998, 670.397971554, 671.792371236, 673.1871620159999, 673.2469933279999, 678.591543539, 678.682080475, 671.9716627399999, 679.9870117199999], \"power_mean\": 668.8833573974737, \"energy_millijoules\": 3344.416786987368, \"energy_joules\": 3.344416786987368}}, \"2304000\": {\"active\": {\"elapsed_sec\": 22.944885203, \"elapsed_ns\": 22944885203, \"power_samples\": [847.14458662, 844.4776150009999, 849.6760151189998, 849.8071933099999, 852.4698, 852.4039233450002, 852.4698, 856.5337914939997, 860.197389859, 867.0563353830001, 868.3213299989999, 873.650433339, 888.6026394919996, 878.9795366789998, 876.116666647, 877.581344519, 886.9710094190001, 878.8454028089999, 885.572460214, 897.3535998639999, 906.7472738109999, 894.7594866790001, 893.428480099, 895.8194791589998, 886.4323091069999, 883.9724600229998, 883.7708900869999, 887.5612603900003, 901.865492909, 893.8122903039999, 902.8554392709999, 896.133837749, 888.0151194910003, 883.8914567200001, 874.4460569289998, 869.3233956069997, 870.386361124, 866.6596347929998, 870.6530961769998, 866.5264533029998, 848.0351074649999, 839.9217430509997, 841.4473693830001, 841.3167848060001, 837.9143925770001, 830.7402807070001, 822.6284634229997, 816.233184244, 805.522057063, 804.4471456150001, 800.3302489729998, 804.5744061869999, 805.8406688319998, 788.3526202469999, 781.6988665389998, 783.216625724, 784.4255629510002, 777.834116974, 768.5772824870002, 776.6245264629998, 756.602413101, 756.5410776729999, 760.5310696779999, 761.086588582, 760.3458967099999, 775.045112831, 780.4313889189999, 779.2264562090003, 768.3913591229999, 773.7773391669999, 773.652808986, 801.660127663, 788.3526202469999, 788.4153765310001, 779.2891194590001, 796.7158975840001, 788.7932081789999, 800.7745783189999, 784.4359065989998, 797.1593046549998, 797.729302003, 791.8323405069997, 804.0077954550001, 809.0799108110001, 802.676966995, 798.6166219529999, 815.8654382389999, 826.5154773009998, 835.8348068529998, 830.511968813], \"power_mean\": 832.2763431077777, \"energy_millijoules\": 19096.485149780598, \"energy_joules\": 19.096485149780598, \"coremark_score\": 17927.572607, \"coremarks_per_mhz\": 7.7810644995659715, \"ulpmark_cm_score\": 15.709697237318395}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [674.4320846339999, 670.4874391860001, 686.6061802600001, 689.3375226, 685.30166523, 698.661447302, 687.2682429849999, 690.611310025, 691.981556266, 696.01770968, 704.0644199249999, 708.011543798, 714.7231090199999, 713.3835695399999, 713.2567843259999, 717.329683889, 721.4354311249999, 720.409087865, 728.04683952], \"power_mean\": 700.598190904, \"energy_millijoules\": 3502.9909545200003, \"energy_joules\": 3.5029909545200004}}, \"2400000\": {\"active\": {\"elapsed_sec\": 22.016070474, \"elapsed_ns\": 22016070474, \"power_samples\": [936.4809860409999, 956.708489817, 945.8592523029998, 946.0693766710002, 947.1884185130001, 937.9497014660002, 949.7107895530002, 943.200919883, 934.0269349639997, 925.9086853869998, 927.0345799989999, 925.7705032510002, 920.6610513270001, 911.1422649700002, 900.709591701, 903.9809561070002, 899.2442088259999, 904.7695932209996, 897.9831212109997, 896.5816376289998, 899.4480954899997, 884.817245463, 886.0119094769999, 871.6489952589997, 866.393613304, 867.5944761410002, 863.6682155589996, 851.7651616840002, 862.4052243790003, 866.6596347929998, 867.660784759, 855.7535506090002, 850.8918007409999, 843.779666044, 852.4231723940001, 847.6412356730001, 843.6488441769999, 845.0478491589998, 834.403903759, 835.6684196909999, 835.798529299, 842.2539802369998, 843.6488441769999, 842.188796625, 848.839283167, 854.2262605539999, 851.6336271690001, 849.036059659, 845.0478491589998, 847.2473638809998, 844.9169082579996, 846.4429508889999, 864.8648977049999, 851.4361563289998, 867.5278257259998, 859.614051655, 868.9901882589996, 875.976258131, 858.478710259, 864.1328363619999, 868.1933044849999, 870.9194888229998, 874.9806108399997, 868.3925721360002, 861.5395507769998, 880.3006001800001, 878.3556549450001, 876.444279467, 875.7755793790001, 884.361971878, 882.9649554969998, 892.3466717490002, 899.9916768869999, 904.3215411350001, 898.729936267, 909.577984138, 902.9914846300002, 917.6308278670002, 929.541026104, 925.3394007559999, 929.333218464, 945.2997691699999, 938.9248144700001, 926.3427186189996, 936.0563599969997, 935.0128658769999, 946.6295883850001], \"power_mean\": 886.5622148484712, \"energy_millijoules\": 19518.61620168947, \"energy_joules\": 19.518616201689472, \"coremark_score\": 18684.603886, \"coremarks_per_mhz\": 7.785251619166667, \"ulpmark_cm_score\": 15.369942054295475}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [767.887011948, 761.1415343, 775.9340849259999, 778.5688840910001, 767.921229768, 771.8568531389999, 763.91261408, 766.552324933, 777.303288144, 781.7768646509999, 778.534368193, 787.775987985, 794.629288222, 779.868996038, 775.7615652149999, 780.9951043469999, 767.648013636, 774.185861764, 783.4587890340001], \"power_mean\": 775.5638244428421, \"energy_millijoules\": 3877.8191222142104, \"energy_joules\": 3.8778191222142104}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm7250ab/dyniter-headless/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 cpu7 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nBaseline power usage: 622 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 614 864 1075 1363 1516 1651 1804\n\n 300:  1104     3.7 C/MHz    148 mW    4.2 J    4.8 I/mJ   28.2 s\n 576:  2128     3.7 C/MHz    184 mW    3.6 J    8.4 I/mJ   19.3 s\n 614:  2271     3.7 C/MHz    188 mW    3.4 J    8.8 I/mJ   18.1 s\n 864:  3197     3.7 C/MHz    191 mW    3.1 J   13.1 I/mJ   16.0 s\n1075:  3340     3.1 C/MHz    181 mW    3.9 J   15.5 I/mJ   21.3 s\n1363:  5051     3.7 C/MHz    230 mW    5.5 J   20.0 I/mJ   24.0 s\n1517:  5621     3.7 C/MHz    264 mW    5.7 J   19.3 I/mJ   21.5 s\n1651:  6120     3.7 C/MHz    260 mW    5.2 J   21.3 I/mJ   19.8 s\n1805:  6690     3.7 C/MHz    260 mW    4.7 J   23.3 I/mJ   18.1 s\n\n\n===== CPU 6 =====\nFrequencies: 652 940 1152 1478 1728 1900 2092 2208\n\n 653:  2535     3.9 C/MHz    144 mW    2.9 J   13.8 I/mJ   20.2 s\n 941:  7316     7.8 C/MHz    266 mW    4.4 J   25.0 I/mJ   16.6 s\n1152:  8592     7.5 C/MHz    344 mW    4.9 J   22.7 I/mJ   14.1 s\n1478: 11438     7.7 C/MHz    405 mW   11.0 J   18.2 I/mJ   27.2 s\n1728: 13459     7.8 C/MHz    509 mW   11.8 J   17.0 I/mJ   23.1 s\n1901: 14801     7.8 C/MHz    591 mW   12.4 J   16.1 I/mJ   21.0 s\n2093: 16304     7.8 C/MHz    720 mW   13.8 J   14.5 I/mJ   19.1 s\n2208: 17165     7.8 C/MHz    777 mW   18.6 J   16.1 I/mJ   23.9 s\n\n\n===== CPU 7 =====\nFrequencies: 806 1094 1401 1766 1996 2188 2304 2400\n\n 806:  6276     7.8 C/MHz    273 mW    5.3 J   20.9 I/mJ   19.3 s\n1094:  8515     7.8 C/MHz    345 mW    4.9 J   22.4 I/mJ   14.2 s\n1402: 10918     7.8 C/MHz    403 mW   11.5 J   17.4 I/mJ   28.5 s\n1766: 13754     7.8 C/MHz    558 mW   12.6 J   15.8 I/mJ   22.6 s\n1997: 15539     7.8 C/MHz    671 mW   13.4 J   14.9 I/mJ   20.0 s\n2189: 17053     7.8 C/MHz    760 mW   18.3 J   16.4 I/mJ   24.1 s\n2304: 17928     7.8 C/MHz    832 mW   19.1 J   15.7 I/mJ   22.9 s\n2400: 18685     7.8 C/MHz    887 mW   19.5 J   15.4 I/mJ   22.0 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm7250ab/efficient_voltages.txt",
    "content": "1.1516800=860000 1.1804800=968000 6.1478400=752000 6.1728000=820000 6.2208000=948000 7.1766400=776000 7.2188800=888000 7.2304000=916000 7.2400000=940000\n"
  },
  {
    "path": "results/sm7250ab/main/clusters_coremarks.csv",
    "content": "Frequency (kHz),CPU 1 coremark_score,CPU 6 coremark_score,CPU 7 coremark_score\r\n940800,,7321.501786,\r\n864000,3203.239115,,\r\n806400,,,6275.730495\r\n652800,,2540.185738,\r\n614400,2276.431648,,\r\n576000,2133.888713,,\r\n300000,1109.23281,,\r\n2400000,,,18686.000448\r\n2304000,,,17941.725276\r\n2208000,,17178.588607,\r\n2188800,,,16911.317053\r\n2092800,,16299.387143,\r\n1996800,,,15547.263682\r\n1900800,,14808.671958,\r\n1804800,6696.129637,,\r\n1766400,,,13749.106308\r\n1728000,,13456.052532,\r\n1651200,6125.649319,,\r\n1516800,5626.702077,,\r\n1478400,,11513.839635,\r\n1401600,,,10911.789097\r\n1363200,5056.532028,,\r\n1152000,,8599.635375,\r\n1094400,,,8520.790729\r\n1075200,3345.779634,,\r\n"
  },
  {
    "path": "results/sm7250ab/main/clusters_power.csv",
    "content": "Frequency (kHz),CPU 1 power_mean,CPU 6 power_mean,CPU 7 power_mean\r\n940800,,227.68677103437787,\r\n864000,189.70901481530652,,\r\n806400,,,261.0440011600128\r\n652800,,160.7183613215245,\r\n614400,147.75295487497254,,\r\n576000,140.42820435812695,,\r\n300000,128.33112629579963,,\r\n2400000,,,894.9207082666793\r\n2304000,,,812.7808850525455\r\n2208000,,701.0665816045264,\r\n2188800,,,721.5071017659138\r\n2092800,,724.1683968072667,\r\n1996800,,,674.2172847176508\r\n1900800,,614.1760996292728,\r\n1804800,253.84510160281087,,\r\n1766400,,,482.3960337834584\r\n1728000,,480.55826432554807,\r\n1651200,252.45693997393218,,\r\n1516800,203.6147087695481,,\r\n1478400,,344.85488666787217,\r\n1401600,,,423.9346605571667\r\n1363200,254.59188925370563,,\r\n1152000,,311.87832312641746,\r\n1094400,,,316.65455266510355\r\n1075200,182.14642535163645,,\r\n"
  },
  {
    "path": "results/sm7250ab/main/idle.csv",
    "content": "CPU,Frequency (kHz),Power (mW),Energy (J)\r\n1,300000,692.9196540581579,3.4645982702907894\r\n1,576000,746.7801453462106,3.733900726731053\r\n1,614400,707.253188480421,3.5362659424021055\r\n1,864000,646.827594106,3.23413797053\r\n1,1075200,619.1466364239474,3.0957331821197367\r\n1,1363200,664.5784463702631,3.3228922318513154\r\n1,1516800,748.4723076576316,3.742361538288158\r\n1,1651200,728.301554499842,3.64150777249921\r\n1,1804800,625.1925677443159,3.125962838721579\r\n6,652800,717.2527528978948,3.586263764489474\r\n6,940800,642.5344767780526,3.212672383890263\r\n6,1152000,722.562920110421,3.612814600552105\r\n6,1478400,628.500335161421,3.142501675807105\r\n6,1728000,669.347606457,3.3467380322849998\r\n6,1900800,718.5222743414737,3.5926113717073687\r\n6,2092800,755.9889270883158,3.779944635441579\r\n6,2208000,663.5640087145789,3.3178200435728944\r\n7,806400,663.945576143158,3.31972788071579\r\n7,1094400,755.4961987249474,3.7774809936247364\r\n7,1401600,658.6855504609473,3.2934277523047366\r\n7,1766400,715.2311923661052,3.5761559618305263\r\n7,1996800,693.2952088471052,3.466476044235526\r\n7,2188800,740.7627204918421,3.7038136024592103\r\n7,2304000,659.6453021872632,3.2982265109363156\r\n7,2400000,767.1433393695789,3.8357166968478946\r\n"
  },
  {
    "path": "results/sm7250ab/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (mJ),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1109.23281,3.6974427,128.33112629579963,28925.08411642517,8.643017216258915,225.394142102\r\n1,576000,2133.888713,3.7046679045138884,140.42820435812695,16453.27705940739,15.194541433741858,117.165046257\r\n1,614400,2276.431648,3.705129635416667,147.75295487497254,16227.29495861024,15.406141358597134,109.827211052\r\n1,864000,3203.239115,3.707452679398148,189.70901481530652,14807.202749271502,16.883675075787,78.052183043\r\n1,1075200,3345.779634,3.111774213169643,182.14642535163645,13611.251766845236,18.367157134581756,74.726977159\r\n1,1363200,5056.532028,3.7093104665492955,254.59188925370563,12588.226954471973,19.859826241152046,49.44472894\r\n1,1516800,5626.702077,3.7095873397943038,203.6147087695481,9047.380163819562,27.63230852172533,44.43382415\r\n1,1651200,6125.649319,3.7098166902858525,252.45693997393218,10303.882405833629,24.262699257753603,40.814415349\r\n1,1804800,6696.129637,3.7101782119902484,253.84510160281087,9478.278337860145,26.37609817823107,37.338827017\r\n6,652800,2540.185738,3.891215897671569,160.7183613215245,15819.622048958485,15.803158838201146,98.430707723\r\n6,940800,7321.501786,7.782208531037415,227.68677103437787,7777.620952084311,32.14350526210755,34.159301029\r\n6,1152000,8599.635375,7.464961263020833,311.87832312641746,9070.399290228317,27.56218243548869,29.083134728\r\n6,1478400,11513.839635,7.788040878652597,344.85488666787217,7492.202043796893,33.36802698840529,21.725665877\r\n6,1728000,13456.052532,7.7870674375,480.55826432554807,8934.487837334122,27.98145842846602,18.591893014\r\n6,1900800,14808.671958,7.790757553661617,614.1760996292728,10375.99233057116,24.09408103198149,16.894164942\r\n6,2092800,16299.387143,7.7883157219992345,724.1683968072667,11116.725424869952,22.488636756351713,15.351022599\r\n6,2208000,17178.588607,7.7801578836050735,701.0665816045264,10210.582094296316,24.484402328017254,14.564354317\r\n7,806400,6275.730495,7.782403887648809,261.0440011600128,10401.997928822462,24.033844431682247,39.847680401\r\n7,1094400,8520.790729,7.785810242141812,316.65455266510355,9294.600658949386,26.897336332495936,29.352493374\r\n7,1401600,10911.789097,7.78523765482306,423.9346605571667,9717.931985862784,25.725637961213238,22.923183429\r\n7,1766400,13749.106308,7.7836879008152176,482.3960337834584,8777.74460697087,28.48112028703385,18.196137597\r\n7,1996800,15547.263682,7.7860895843349365,674.2172847176508,10850.35500335938,23.040720780342898,16.0932614\r\n7,2188800,16911.317053,7.726296168220028,721.5071017659138,10674.21021061713,23.420936543983075,14.794324525\r\n7,2304000,17941.725276,7.787207151041667,812.7808850525455,11335.068718786872,22.055446349932325,13.946032599\r\n7,2400000,18686.000448,7.78583352,894.9207082666793,11984.42625839345,20.86040621468293,13.391606818\r\n"
  },
  {
    "path": "results/sm7250ab/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1455.5423194409996, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [648.3037856069999, 680.45660109, 639.420854068, 636.7977350279999, 628.9505207349999, 627.68067798, 621.01719218, 615.680439995, 623.6695880799999, 623.5858237919999, 634.344613046, 635.670929641, 636.9688283400001, 629.063205422, 640.951949, 639.649879426, 655.6624172279999, 653.126391532, 654.811550364, 659.2035199679999, 703.0690012040001, 665.0458680710001, 661.150254387, 667.8785052449999, 685.04662257, 687.6738490160001, 691.6852276760001, 681.157497825, 697.12179087, 696.996981827, 711.6010429940001, 716.9769024, 719.663095575, 711.6010429940001, 711.6010429940001, 707.6478581079999, 738.118026072, 735.5303792420001, 739.781647536, 738.68832378, 740.742923296, 734.1376516320001, 744.6897356410001, 744.6897356410001, 777.739173177, 733.973446206, 728.5979447340001, 753.7447075150001, 745.549049176, 742.764407112, 756.0628901, 736.0659836880001, 736.197924476, 716.2392799799999, 728.141395509, 726.815850564, 726.71818474, 710.900619126, 694.705221864, 710.6459344080001, 689.61713106, 688.353316914, 675.2403153480001, 677.8313365519999, 663.3925043279999, 656.7287515440001, 656.669837364, 659.292096416, 649.948952768, 652.8049289459999, 630.0792264139999, 631.4614567860001, 631.489783071, 632.8156842559999, 626.2702994430001, 614.2993373759999, 632.92893616, 615.404884449, 629.7688713360001, 631.489783071, 664.748338293, 632.8156842559999, 628.8942507179999, 643.5180260100001, 648.826691031, 651.4496306460001, 654.277397074, 682.1486896400002, 641.0380306000001], \"power_mean\": 677.9300864422809, \"energy_millijoules\": 3389.650432211404, \"energy_joules\": 3.389650432211404}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 225.394142102, \"elapsed_ns\": 225394142102, \"power_samples\": [166.02272412100012, 159.49069609499998, 157.95675056400012, 162.10905128700006, 156.69976181900006, 154.18036807199996, 168.64042702900008, 174.14500694800017, 159.4561801970001, 167.38409157600006, 175.31128886500005, 185.96640287800017, 180.69219582400012, 175.27606253900012, 175.38210467500016, 176.60231996400012, 180.5141486240001, 188.58315197299999, 180.62090382400015, 173.98497226999996, 175.27606253900012, 184.6356780340002, 181.1631648089999, 177.8973987239999, 194.2408284920001, 187.11342975000014, 188.33168455099997, 200.31002836000005, 187.07748617999994, 204.3244391820001, 208.30684627799997, 185.75146635, 197.7264119910002, 196.36397259600005, 204.28791034000017, 192.38591310599998, 203.07154668400005, 198.97972028800018, 217.59333269400008, 204.06798411600005, 190.983486921, 195.31158106800012, 192.2775536580001, 200.23695093999993, 182.98796764400004, 197.689992426, 193.63963650800008, 194.74810631700007, 188.1878570020001, 192.13319809200004, 197.435615772, 198.761220192, 207.93864556400013, 199.83577464200005, 202.59593704400015, 199.8723133520001, 196.00111754399995, 202.48615205200008, 190.37052445200027, 198.21496995200005, 193.02465224000014, 183.70589641900006, 182.488175394, 178.47773960900008, 171.77806052100004, 173.24410543200008, 170.6642436080001, 169.19873560100007, 166.5793597799999, 174.6398097230001, 167.79921941300006, 167.79921941300006, 169.0934059450002, 174.81648609000013, 189.0456325120001, 181.2700981290002, 175.85877817199992, 166.50943780800014, 146.79781227500007, 153.32056533600007, 158.55574226000022, 149.31143206700017, 153.38947677600004, 141.35737947400003, 143.93920390400012, 140.06611518900002, 130.81579656000008, 129.39074394800014, 135.98586540100007, 134.7282782960001, 124.35583971900007, 126.70769443300003, 131.97803609000005, 130.6821918280001, 146.69551241099998, 139.99856728400016, 129.39074394800014, 141.39112577399987, 126.8405863800001, 137.31069786599994, 141.35737947400003, 141.35737947400003, 142.75011608400007, 125.41606812800023, 136.15410344700013, 126.8405863800001, 137.37818112600007, 133.60436187300002, 118.95146994600009, 121.33813515200006, 126.77422570300007, 114.87353688600001, 121.53596164800013, 106.98387492899997, 120.24385965300007, 111.0285443800002, 117.65913035599999, 101.68335678899996, 108.47083382400001, 93.81906059699998, 87.16104191199997, 91.19994176900013, 96.3784939620001, 80.62384454400012, 85.92554974400002, 104.46230094900011, 95.96448816800012, 108.30900446400005, 104.36570442900017, 108.30900446400005, 106.91912907899996, 100.38579343300023, 100.35388256700003, 108.30900446400005, 104.46230094900011, 100.44994414300004, 111.0285443800002, 100.38579343300023, 116.39494783900011, 104.33361585900013, 105.62643194400016, 97.9587831, 104.43021237899995, 97.32080215300005, 98.93286957600014, 101.61908673899995, 102.97629182399999, 96.44212424800014, 97.70362349700008, 80.46825016800005, 89.81153827200012, 95.08503861300017, 84.4122775080001, 84.44363877300009, 84.47483921100013, 84.34971580500007, 81.8244618010001, 91.10512761700011, 69.98103617400011, 77.84455080500004, 66.99446526400004, 79.17408439100006, 63.198123072000044, 79.1119972680001, 77.90667819500004, 72.51312827099991, 76.61221576400021, 75.3177936840001, 80.43706732800013, 76.55036632000008, 83.21225408600003, 71.39854359900005, 89.81153827200012, 69.85852451400001, 71.27579464899998, 90.06384700800015, 69.91978034400006, 80.34367872000018, 64.6187876240001, 67.20826544400006, 64.6795688740001, 63.28919436800004, 56.75313416400013, 81.8557041160002, 65.94403580400012, 58.048389283999995, 74.05397953800002, 52.65293076700004, 56.81320315500011, 63.34985658400001, 54.06794334400013, 58.13874810000004, 55.60336618800011, 56.78309145000014, 91.07363113500014, 64.58831887400004, 79.20520775600005, 92.39876067, 91.16844528700017, 85.8000279160002, 72.75926038800003, 79.23633112100003, 75.256062885, 80.53045593600007, 68.65566934900005, 76.55036632000008, 84.4122775080001, 79.3293820020001, 110.99599283500015, 78.092582462, 91.10512761700011, 75.07071179700006, 85.86286939600006, 83.1809522960001, 81.88694643100007, 84.60012344400002, 73.93075522999993, 72.60544757499997, 88.45475020700019, 107.08082768899999, 72.54379598500009, 72.63611528900003, 110.96360822100019, 88.48629009199999, 75.19417339500012, 85.89412900400009, 75.53393082600007, 83.1809522960001, 79.17408439100006, 80.43706732800013, 114.9389968260001, 95.11687606800012, 84.47483921100013, 113.71171123500005, 88.45475020700019, 88.45475020700019, 100.44994414300004, 85.95680935200005, 99.06060472800004, 89.81153827200012, 91.23160060400016, 104.59115144400005, 92.52530859400008, 99.348255096, 120.44116084200016, 101.8115672990001, 84.72524685000008, 99.22035576000019, 103.297576424, 92.55702690399994, 88.76966382800015, 84.78796938000016, 92.68357482800002, 91.4212289080001, 92.68357482800002, 116.59134820700012, 95.4029233560002, 91.48438422499999, 120.60583210000016, 96.7923361820001, 88.64366603100007, 80.90401036800006, 84.81916981799998, 90.25311907200012, 87.56948005200002, 80.87282752800013, 139.27671129200007, 82.32337753900015, 94.13618659499991, 139.17548131600017, 96.7604392520002, 99.41212267200001, 96.7923361820001, 100.80211509200024, 95.49827245200015, 107.40389287899995, 91.48438422499999, 117.59360058300012, 114.03774602100009, 96.7923361820001, 147.24117007600012, 100.64190280600008, 110.02755039600015, 110.12485998, 107.37151995399995, 103.39399482400006, 114.10291947000007, 108.76222646400004, 99.41212267200001, 108.79449254400004, 106.0456782440001, 145.87676332900003, 101.20215538900004, 110.15735205000021, 153.35502105600006, 115.3963771760001, 130.02385264200007, 133.93930544700004, 128.59802837999996, 140.60701936400017, 139.20910908200005, 132.64690799200002, 165.74333137000008, 140.60701936400017, 127.30545230500002, 172.55296977900002, 128.66467860000012, 139.41156903399997, 144.58490134400006, 130.51531454400003, 137.984319228, 129.59070905200008, 132.61340426200002, 180.2651750240001, 135.09743808000007, 137.78221551600006, 173.66756149600008, 137.88326737199998, 144.51682294400007, 132.64690799200002, 140.57315858900006, 160.50512408800012, 157.78393408800002, 157.71484302, 147.20701173099997, 152.6136288150002, 149.27715477200013, 201.45318577800003, 161.13607913700014, 151.15037851600005, 155.06339689000004, 163.09164795000015, 159.109775798, 160.50512408800012, 159.21367932600003, 152.476220226, 144.48295830400014, 153.97398714400015, 213.42563818100007, 181.69783140899995, 169.72520352200013, 204.1412300930001, 171.05104523199998, 172.85599779799998, 180.4075762240002, 174.10978062200024, 190.9473649260001, 186.96983979599997, 185.67988218099993, 217.29540852900004, 181.6266035640001, 173.73807708200002, 213.35156130000007, 176.24819181600003, 188.29568150600005, 189.58564563200014, 170.9807669359999, 186.93408055200018, 182.91662115400004, 189.62152321600013, 184.74855190000005, 186.79049059800013, 184.676967731, 231.84712813200008, 189.58564563200014, 197.39919620700005, 204.03126698100004, 202.63259470399998, 197.47184857000013, 194.85682200500003, 192.06083476200013, 201.41677527599995, 200.09117085599996, 201.41677527599995, 242.22529186500003, 201.38017709099995, 185.3933614839999, 223.36448885400011, 184.17087908400003, 183.16963233400008, 174.74585185900014, 208.9689985660001, 190.5507639450002, 189.29770028000007, 205.17330607200017, 231.27879299400013, 198.46994908800013, 210.29394998099997, 244.61035691999984, 211.729933812, 211.47079480000002, 204.84288237600003, 206.16759619599998, 190.22640695400025, 207.23895068200022, 194.13211280400014, 198.96053200400002, 184.85602016399991, 189.97392347100015, 214.92869558400002, 170.20716368799992, 174.21582275800017, 174.21582275800017, 174.180414853, 171.46118380200005, 167.624027844, 163.6853526540001, 171.60197768399996, 175.61105216400006, 171.53158074299995, 209.776693206, 165.11474254100017, 176.83359131400005, 184.78443599499997, 167.58909756200012, 162.221446572, 168.98807628900022, 154.40884349400028, 154.4433588840002, 155.62989138099988, 163.58073606200003, 174.07437271700007, 155.73343866900018, 143.769357024, 163.51105138000014, 142.44482132400003, 141.018698824, 129.09079629200005, 133.77183365999997, 129.19077884400008, 124.8857912960001, 130.51531454400003, 160.89274683600001, 127.83308893200012, 130.41515387200013, 156.85058302800007, 123.82651265700008, 133.16872868400003, 121.17333619600004, 133.23585509400004, 130.44859793199998, 133.2022918890002, 139.72820201900004, 133.10177439300003, 141.0865393240001, 128.33194019400014, 142.34305640399998, 140.78177892399992, 121.33813515200006, 129.19077884400008, 129.25754801400012, 135.85148223900023, 129.2241634290001, 137.20981904400014, 127.89956825400009, 133.30280938500016, 130.51531454400003, 141.018698824, 130.44859793199998, 122.56375760399999, 150.3622175800001, 118.68870751199995, 133.63775295900018, 133.30280938500016, 118.62305909400015, 125.18413587200018, 120.04638939700021, 134.59396000000004, 137.17607741400013, 138.56810145999998, 131.97803609000005, 127.89956825400009, 120.01342133200001, 112.1258498919999, 110.8335689720002, 108.14700878400004, 105.69089313400025, 101.49087622900004, 112.19107193200011, 101.84370232399999, 93.50177163599994, 97.512212825, 109.54116910200014, 106.82217631899994, 102.81564952400004, 108.05004422400009, 107.95291334400008, 102.65500722400009, 88.17153821400007, 90.88400283100009, 98.90085369600013, 88.20291635599995, 89.49619286400002, 88.20291635599995, 84.22443157199996, 82.8997177519999, 96.53765146400008, 92.17705781599989, 77.25545570700012, 68.2886890740001, 64.40581887400003, 81.51267951900024, 73.65326295800014, 77.65848723700003, 76.20995588400012, 70.90723224900023, 79.080873903, 82.93101954200006, 75.03976705200012, 67.08607150400019, 68.44161061900002, 73.71487511200007, 74.91630545400005, 69.67459955400011, 77.59651914799986, 89.21228476800002, 69.70514873399998, 69.70514873399998, 84.28699327499999, 84.22443157199996, 64.34503762399993, 55.18340826300005, 59.102145301000064, 61.69126666, 64.37550637400011, 65.73065133900002, 72.38998317200014, 61.842703407000045, 56.482592076000174, 77.56561475400008, 67.11665920400014, 60.39684297000008, 93.37498642200012, 77.59651914799986, 88.26583438299997, 78.98766341500004, 80.31249588000003, 87.03528170999994, 84.22443157199996, 78.95669965700006, 78.95669965700006, 72.35915737699997, 85.61182574000009, 92.20877612600009, 71.02998119900008, 80.28147295200017, 81.63732834500013, 93.56516424300003, 88.36029229500002, 89.68530288000011, 105.59411849399999, 100.28973185699999, 104.30136188400013, 108.21187358400005, 100.28973185699999, 99.15648818400007, 96.47402117800016, 97.83112135900012, 96.50575453400018, 91.26309708600013, 95.21222516400007, 99.18850406400009, 99.58538995900017, 95.27573680500007, 110.93105667600025, 104.39795840400006, 119.08293554400007, 109.73578827000006, 104.33361585900013, 113.58119679600009, 115.06958101400005, 119.11567537200017, 113.84205813300002, 104.43021237899995, 97.86307776399997, 111.32100749200015, 112.4839021680001, 113.87472862799996, 139.07425134000005, 132.66631332300005, 133.70470725000007, 126.77422570300007, 127.10619968100002, 133.83878795099997, 124.45510979100015, 145.6725210090001, 125.78065473600009, 132.47956115600005, 133.67131616400002, 125.84689676800019, 131.1495511280001, 125.78065473600009, 132.41272550999997, 132.51306488599994, 133.73827045500002, 152.30459178299998, 136.73830139400002, 144.38101526399998, 145.23011255900008, 149.6192245980002, 156.14762782100001, 144.48295830400014, 153.52694626400012, 149.6192245980002, 154.96002772200006, 157.542026544, 161.5529396820001, 165.6037247160001, 153.63013672800014, 157.542026544, 158.867452844, 166.82435630399993, 158.83275902900016, 162.32588504400007, 156.32014753199996, 178.15800836899996, 169.44438455900013, 169.58488422000005, 187.792562031, 178.8328748790001, 178.86846140400007, 177.36558611400005, 181.412736924, 182.77374476400018, 189.36964038400015, 177.4718028840001, 177.40093097400006, 186.61114140000007, 198.54272009600004, 191.91647919600007, 192.55444668000007, 181.34150907899993, 197.77815683199992, 195.78332992800006, 209.11644045800017, 194.60327617100006, 206.49855425200008, 187.82856507600013, 198.46994908800013, 205.13652946200023, 179.83815422400005, 183.81318597900008, 190.5148271910001, 183.77754526900003, 189.0816950320002, 190.40664644700018, 185.17842495600007, 189.8657427270001, 199.65345584800014, 198.96053200400002, 202.12032740400014, 200.57651848499995, 204.659376522, 203.48163971400015, 198.14219894400014, 203.3716766020001, 196.81760376900013, 199.2522795499999, 184.71285182600013, 199.43459834400005, 197.9601778880001, 187.3614486460002, 197.88721980800005, 187.3614486460002, 190.08210421500007, 179.26891502400008, 173.6856120780002, 175.32785877599997, 176.72719235400007, 183.24109746900012, 174.0037384860001, 179.37567022400003, 166.0196245080001, 175.363144272, 171.425894847, 166.08954648000008, 166.08954648000008, 152.87352445600004, 158.1748219630001, 146.1500299170001, 133.00125689700008, 143.53160630399998, 136.90666347600006, 132.80022190500017, 126.4089860900001, 139.52538465900022, 122.33265752999989, 132.96769369200013, 139.5592454340001, 131.7438536080001, 134.2918731520001, 121.14030865600012, 129.09079629200005, 131.71052169200004, 119.8818872060001, 111.93068548000008, 110.60620895000022, 109.314057864, 110.8335689720002, 102.59061822400008, 104.01157232399999, 102.68703662400003, 97.38455108400001, 84.19323113400003, 92.11378385400008, 92.20877612600009, 94.60845640200012, 114.48161647600011, 86.75260377200004, 99.93756090800002, 99.93756090800002, 88.01400053200007, 95.99638509800002, 93.4383790290002, 92.05050989200004, 89.43299414400008, 85.39236395600005, 89.33835811200015, 82.77483163600004, 81.57500393200007, 74.76174042000014, 89.4015568320001, 86.81540315400014, 77.50348736400008, 60.24570298800006, 78.8634891690001, 78.80140204600013, 73.5916508040001, 72.20534456400003, 78.89461253400009, 81.35678837800026, 69.55193042400003, 61.751810231000036, 78.55289394700003, 48.261562352000055, 66.87242818400011, 65.54795165400014, 57.656937564000145, 58.98153273900016, 54.97335224400001, 56.30223068400005, 57.62676638400001, 80.15690150400007, 74.85441596400005, 74.85441596400005, 85.48646504400017, 80.25029011200002, 87.66770876900011, 88.10845844400012, 81.63732834500013, 74.79268516499997, 88.04554041699998, 85.48646504400017, 77.50348736400008, 89.36995747200001, 73.49915338000017, 74.91630545400005, 80.12587857600022, 76.24096010400012, 85.45504430400001, 60.24570298800006, 82.8059729040001, 70.8764661240001, 77.53455105900002, 71.65158682100002, 81.32554606300005, 70.96860672399998, 74.88536070900011, 73.5607655340001, 65.57832332400005, 84.03658563600004, 68.31917908399998, 80.18808434400023, 69.61334372400017, 82.83727469400014, 86.87820253599989, 77.50348736400008, 82.83727469400014, 84.22443157199996, 93.4383790290002, 90.78918867900018, 95.51874901800011, 98.80497023999999, 97.44846389400004, 86.94100191799998, 97.44846389400004, 94.86266623500012, 89.55922953600009, 96.18743953000012, 98.90085369600013, 90.9471581480002, 90.97881698300012, 85.67466722000017, 86.97248232800007, 90.97881698300012, 92.33532404999994, 89.65386556800013, 87.09824253, 83.59833206100006, 75.13244259600015, 82.99346260000004, 83.05590565800003, 96.41022731800012, 88.45475020700019, 92.52530859400008, 108.40613534400006, 96.3465970320002, 96.41022731800012, 100.28973185699999, 112.28873775599993, 112.25612673600006, 107.0160818390001, 103.00848632400005, 132.17871484199998, 105.59411849399999, 118.22883106200004, 117.59360058300012, 109.6384786860001, 109.60598661600011, 116.13313673200014, 113.450682357, 112.25612673600006, 102.97629182399999, 106.98387492899997, 107.04845476399998, 106.91912907899996, 104.36570442900017, 118.88582152800018, 113.71171123500005, 108.37370294400012, 107.145407524, 126.94021269200005, 111.63768800799994, 120.177923523, 127.76643871199997, 116.26412636100008, 119.08293554400007, 121.66790243600019, 126.87385201500001, 122.96012307600006, 130.94940129200006, 133.53723546300012, 133.57079866800007, 137.580284838, 128.29878598200003, 128.29878598200003, 129.690691604, 130.88251317200013, 120.30962671600014, 126.17646783100008, 156.18202537900004, 131.64351423200003, 129.624093637, 128.16565644000013, 136.2884866090002, 128.33194019400014, 134.89604684800008, 126.97347832700007, 141.49271257400005, 145.50237736400015, 138.77056141200012, 142.885860729, 144.0751861440001, 138.90559249300009, 153.4237558000001, 153.4237558000001, 145.94543018900004, 145.43435487900013, 149.95088068400014, 154.75328938600023, 164.10381902200004, 141.39112577399987, 156.2166002439999, 157.40366679600004, 167.974591035, 149.44818968500022, 154.75328938600023, 144.21116838400008, 154.82232016600005, 152.09856709500013, 165.32433196500006, 154.78780477600014, 163.92933861000006, 170.10165591199996, 175.92971293200003, 159.04815923800015, 181.234575759, 181.34150907899993, 175.82349267600011, 197.1083999880001, 190.37052445200027, 179.94490942400012, 185.28589322000005], \"power_mean\": 128.33112629579963, \"energy_millijoules\": 28925.08411642517, \"energy_joules\": 28.925084116425168, \"coremark_score\": 1109.23281, \"coremarks_per_mhz\": 3.6974427, \"ulpmark_cm_score\": 8.643017216258915}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [684.9546600900001, 667.6992137409999, 672.950067192, 711.6838884599999, 739.085234085, 747.1467523059998, 673.0704424639999, 670.50251136, 684.9546600900001, 685.0159159200001, 686.21995845, 678.4686796799999, 678.377608384, 693.012078631, 681.4159965800001, 702.245936596, 701.4918596979999, 712.9278939489999, 694.2500694290001], \"power_mean\": 692.9196540581579, \"energy_millijoules\": 3464.5982702907895, \"energy_joules\": 3.4645982702907894}}, \"576000\": {\"active\": {\"elapsed_sec\": 117.165046257, \"elapsed_ns\": 117165046257, \"power_samples\": [209.48114502300007, 216.1037118690001, 200.28429605400004, 192.26507511600016, 197.5959487040002, 191.62758251700006, 195.02125973399995, 205.72650769099994, 187.03797513400002, 196.0905198380002, 192.3011304040001, 169.75008376799997, 188.39780170400002, 189.7936839780001, 180.37910919900014, 197.52317769600018, 183.06234277400006, 168.4614280090002, 172.39737457800004, 163.1622696940001, 144.61738559900016, 161.80387151700006, 154.02988221200008, 159.22156924400008, 159.2563225340001, 164.45116232700013, 155.35382438199997, 151.20602863499994, 144.75360543400006, 149.88238323000007, 145.40025620400013, 140.71411237400002, 130.2150040360001, 131.64351423200003, 115.67492525700015, 118.36029666000013, 114.31830231799995, 111.80040863599993, 107.75865158399995, 117.03617637000002, 110.37868199700006, 120.90962399200009, 119.5527137570001, 116.839418594, 112.92895968300013, 123.56184912600008, 107.69395310399989, 119.61864988700006, 116.77388882100013, 109.02229573800003, 114.28557234800007, 107.69395310399989, 115.54410377900012, 106.72538957400002, 89.08604937600012, 110.54110586000013, 87.85662459299999, 94.32240911400015, 93.184645638, 91.92379931000005, 97.19314041200005, 103.78629071400007, 90.5047462230001, 98.42160059999992, 110.37868199700006, 102.49419982400013, 95.86896095200018, 83.91146222999998, 98.42160059999992, 91.79725138599997, 97.12939148100008, 89.21228476800002, 94.4177582100001, 80.06351289600013, 82.61848320800004, 97.12939148100008, 82.55604014999994, 82.58734193999999, 98.54933575200005, 98.38958472000002, 88.29737426800011, 78.55289394700003, 81.26322164999999, 98.38958472000002, 101.13805013399997, 97.12939148100008, 120.94265153200001, 102.39794652399996, 107.66152070399994, 126.27609414300002, 107.75865158399995, 86.53256377800005, 109.15193076600008, 103.6253516490001, 95.80533066600015, 101.10591510899997, 97.19314041200005, 107.75865158399995, 103.88288723400012, 103.81837928400012, 136.87292184599994, 115.80591488600021, 117.00332725500004, 138.26441153200017, 110.28119429300011, 105.27164683400008, 94.48126985100009, 111.96312926399992, 102.52639432400008, 102.42997592400002, 99.80958846600004, 126.20973346599999, 106.43453129399995, 115.64230396300002, 142.037935899, 110.28119429300011, 119.68441695000001, 122.26665317699997, 121.07442294800012, 94.7354796840001, 104.01157232399999, 108.05004422400009, 100.09777319400007, 113.2876649640001, 108.08231030399998, 151.82392630799995, 101.55498148400011, 118.68870751199995, 169.644575992, 128.03252689800001, 122.43174889800002, 129.25754801400012, 134.52688706400022, 120.04638939700021, 118.62305909400015, 125.18413587200018, 153.11436110400007, 116.00231525400011, 129.25754801400012, 178.26458544900015, 129.290761396, 114.67766060400004, 142.58056596900008, 130.71563588800018, 139.9310193790002, 133.26924617999998, 147.8840026680001, 159.84588091, 153.21737487200005, 159.88063420000015, 178.406566559, 143.05593030400007, 145.2640363690001, 191.93946241200013, 158.59043607500007, 147.64482887999998, 165.04493921400012, 167.72917879600004, 165.11474254100017, 165.11474254100017, 178.47773960900008, 207.45994679400007, 189.0456325120001, 184.82032009, 212.72143173900008, 182.4168289040001, 186.35990506200005, 182.345482414, 177.04638923400012, 175.752557916, 179.553534624, 171.77806052100004, 166.47438694800007, 174.3924991250002, 183.67025570900012, 240.55530215400017, 195.02125973399995, 192.95235581200006, 231.73034183000004, 192.95235581200006, 204.54923529000007, 199.50767576400006, 203.5548856910001, 191.66357863500002, 202.19345473600004, 212.75856539400013, 255.09549692399992, 203.5548856910001, 211.39683656400007, 243.08918287200004, 203.48163971400015, 208.71069098400005, 210.14608097999997, 204.80629436400022, 212.68429808400015, 226.05133346800005, 216.43875696400016, 225.86307645499994, 215.3006504640001, 225.97606935900012, 254.93974521400003, 227.90751119100003, 216.587814719, 255.21021562400017, 216.55050244400002, 215.33771222400003, 214.08756317400025, 223.25185219000025, 219.19921760400007, 203.40820544400003, 205.91031031000023, 248.19788850600003, 209.99840179800003, 201.93741508000016, 227.07432248600014, 208.6000148080002, 205.98379357700003, 200.57651848499995, 208.5632490920002, 201.79097242800003, 211.2858041479999, 216.47606923900003, 205.873474225, 211.100813496, 205.873474225, 251.7859987590001, 216.06639959400013, 220.2617170640001, 251.4752449140001, 218.75100267900007, 216.06639959400013, 212.05416852300004, 205.54251616900012, 210.6937580120001, 217.31543367400013, 213.38203440900008, 233.0535715200001, 200.1016804950001, 186.966153675, 226.28231910400007, 200.0650823100002, 182.70483338400004, 189.46914174600022, 199.99207362300012, 196.05428704000008, 207.89919203600004, 194.76711202800016, 194.6945783100001, 185.46315907200005, 184.64108363600008, 209.0377278389999, 197.92369884799996, 184.10392633700008, 184.31886286500003, 162.91828373800013, 164.24157290300013, 169.53906821600003, 162.95321564800008, 161.62986700800013, 162.98796842000013, 160.33681375800006, 179.95155902400006, 171.00315126299995, 149.74521223600016, 177.48314185900017, 172.2561621320002, 166.95819185000016, 168.28593870200018, 160.33681375800006, 155.07775738300006, 162.95321564800008, 164.3463676150002, 151.10301629100002, 160.44107352600008, 143.80339622400015, 166.92326156800004, 164.62576036600012, 140.54468507399997, 152.35774883200008, 144.68558294900004, 144.61738559900016, 156.43568139599995, 135.31360413300013, 151.0686200460001, 143.05593030400007, 136.6372495380001, 145.80914715100005, 136.6035079080001, 131.34266791799996, 137.96089494299997, 122.00229641099997, 115.44590359500012, 115.47852488900014, 112.8311157390001, 96.87423187800005, 111.54002218400012, 114.15482031400006, 110.15132197500009, 118.097534226, 113.32033545900015, 129.9812386320001, 115.74033599600023, 108.76269243000002, 116.74103970600015, 116.70819059099995, 108.82767657000011, 98.2298336880001, 107.40256046400009, 96.87423187800005, 103.49650115400016, 102.20510972400007, 102.17291522400012, 103.46424717900004, 102.20510972400007, 98.2298336880001, 95.58254287800014, 90.25196260200016, 99.58538995900017, 95.58254287800014, 98.32571714400012, 99.64954066900009, 82.33740918599995, 79.81452991200013, 107.56438982400005, 81.29430374800017, 102.23713912400001, 98.80497023999999, 98.35756884, 114.12225819000003, 99.64954066900009, 87.66770876900011, 92.93091224700004, 74.48387247900007, 93.05769746099998, 83.66105459100004, 94.25889747300005, 97.00189361899993, 91.70225911399996, 86.31268522199991, 90.28362143700008, 73.16004895399999, 85.07880108400002, 82.524898882, 81.16965492200006, 81.16965492200006, 81.07608819400014, 75.80769600400015, 78.3974367290001, 70.50806149900006, 74.57654802299999, 90.25196260200016, 78.77027868099992, 91.63882249400001, 98.2616853840002, 78.33534960600014, 103.68969419400003, 97.00189361899993, 106.17604593899989, 95.64617316400017, 115.64230396300002, 120.81071074400018, 115.51131433400008, 97.09759895499997, 99.61746531400013, 110.24880967900003, 103.5608436990002, 102.33355752400007, 95.67807009400008, 105.04594981399998, 95.61427623400016, 94.38592075500014, 98.2616853840002, 103.43215860900011, 85.07880108400002, 108.73036698600004, 128.72425066900018, 115.70771470200009, 110.18370658900017, 127.13445790799994, 115.54410377900012, 106.27299869899991, 116.77388882100013, 111.70274281200011, 115.6095145180002, 116.93779748200006, 126.17646783100008, 115.6095145180002, 119.61864988700006, 114.31830231799995, 122.29957051500003, 115.64230396300002, 111.76779761600005, 111.89807445999998, 115.80591488600021, 111.76779761600005, 115.77312544100005, 121.14030865600012, 105.30396028400014, 106.56369096399999, 104.49761542400017, 103.94722977900005, 109.11943869600009, 110.67114510900024, 109.314057864, 109.28173242000014, 117.26561480399994, 109.314057864, 103.97948375400017, 98.61320332800005, 111.83301965600015, 103.91497580400005, 118.45885366800019, 123.82651265700008, 114.64493063400016, 130.38188132000028, 121.17333619600004, 125.25037790400017, 113.15731806600013, 117.23293414600005, 121.0413954080002, 130.41515387200013, 121.30527698400022, 129.09079629200005, 125.08468768000023, 121.7711963370001, 133.03482010200014, 114.41615653600013, 126.442081132, 124.91899745600006, 122.43174889800002, 123.82651265700008, 130.31499320000012, 133.00125689700008, 136.97397370199997, 130.54875860400023, 125.2171717440001, 135.6160526120001, 126.47534676700002, 118.45885366800019, 122.36557486800007, 130.44859793199998, 137.07502555799988, 131.7773573379999, 134.39256876800005, 133.10177439300003, 126.37572045500008, 130.54875860400023, 139.76206279400014, 138.5344736940001, 135.1455388160001, 151.75531020900007, 140.883365724, 154.37432810400003, 154.30547432600008, 152.94225920000008, 149.00346375499998, 154.37432810400003, 166.29949214399994, 162.221446572, 158.10561224999992, 163.47611947000007, 155.66446624600007, 158.27872549100005, 147.71326452000017, 151.7897064540001], \"power_mean\": 140.42820435812695, \"energy_millijoules\": 16453.27705940739, \"energy_joules\": 16.45327705940739, \"coremark_score\": 2133.888713, \"coremarks_per_mhz\": 3.7046679045138884, \"ulpmark_cm_score\": 15.194541433741858}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [749.128311288, 755.79204995, 747.836572839, 743.9900289799999, 745.1485779960001, 750.5878239850001, 751.8796222139999, 743.8566618430001, 757.1512183799999, 737.193456099, 728.584909724, 729.205604232, 739.7154055040002, 743.6900813240001, 750.218011196, 755.4874635, 752.76620886, 748.691906144, 757.89884752], \"power_mean\": 746.7801453462106, \"energy_millijoules\": 3733.900726731053, \"energy_joules\": 3.733900726731053}}, \"614400\": {\"active\": {\"elapsed_sec\": 109.827211052, \"elapsed_ns\": 109827211052, \"power_samples\": [188.8656897840001, 170.277441984, 178.26458544900015, 188.90175230400018, 187.5770976540001, 188.75768716000005, 175.57558478400006, 178.22899892400005, 169.36328214399998, 188.90175230400018, 174.86769225599994, 175.57558478400006, 174.180414853, 180.87807032399996, 178.0870178140002, 184.78443599499997, 195.275220978, 195.275220978, 188.75768716000005, 190.15416296400008, 196.78118420400006, 192.6990395360001, 197.9964698560001, 205.98379357700003, 208.5632490920002, 199.39824701200007, 195.34775469600004, 204.7327411440001, 203.2982423320001, 204.69615313200018, 201.93741508000016, 211.39683656400007, 209.85053279700003, 210.50876735999998, 198.032948896, 221.140165852, 217.8376799240001, 210.4716931800001, 213.86478469400026, 209.96138709299998, 205.79999095800008, 211.32287832800012, 212.53614432200015, 202.01054241199995, 212.4990106670001, 216.55050244400002, 225.67481944199994, 213.79039804400009, 219.19921760400007, 223.214242345, 229.68923470800007, 233.39575814400018, 229.61361427500003, 225.71235475600008, 219.01244538900005, 226.9611514620001, 215.040262944, 229.61361427500003, 228.20971087800012, 219.04987661400003, 223.82429455200008, 232.33759362800004, 221.2526243960001, 224.27555368799995, 212.38780013100006, 220.22422636400006, 205.68967160600005, 201.644717764, 204.36572943600004, 202.9685412890001, 205.72650769099994, 210.878748664, 216.14083279900012, 210.80479042800005, 221.3650829400001, 213.34503181900016, 217.31543367400013, 214.66849910400003, 231.99613637100003, 223.97458547999997, 226.65942666000012, 222.68866887000013, 219.92487754400008, 221.21526659200015, 225.10985492199995, 216.28989055399995, 223.56099566399996, 230.10396112600006, 214.4826171840001, 218.34002702400016, 222.31334190400014, 222.42597856800012, 226.35770185800027, 224.9593267040001, 222.46339554200006, 211.68359368899996, 222.20070524000005, 205.138074846, 214.25948246399992, 203.74165865400016, 217.05421472400008, 201.13245046400004, 211.75767057000007, 203.77843526400022, 193.15385776900007, 199.77285987899995, 201.0957928040001, 195.8361431840001, 198.52281699599996, 201.13245046400004, 191.23032639000007, 199.80945806400007, 185.24786630400013, 193.19015838400014, 186.786507712, 203.77843526400022, 199.73626169400006, 194.44043060399997, 202.49197170599996, 199.88246675100015, 207.7147949140001, 190.54417358400008, 200.87622282000007, 204.99110831199994, 199.6632530070001, 208.96388824799988, 205.10142766400008, 201.168920136, 198.4864656640001, 210.4716931800001, 203.8517998860002, 195.8361431840001, 194.513150784, 193.15385776900007, 210.39773494400015, 211.68359368899996, 210.32358658400005, 204.51245868000012, 203.88857649600016, 213.27083590400014, 198.34049820200005, 198.2676081599999, 193.1175571540001, 198.37703691199988, 197.04988553600003, 187.8577885840001, 193.1175571540001, 183.81740563999995, 186.53485565899996, 177.30557422400022, 183.96057397799996, 179.91585354899996, 175.87618286399993, 167.96994973400012, 183.81740563999995, 181.20302152400006, 166.7129596640002, 174.51356410799997, 170.61569663400007, 157.4476751840001, 157.4476751840001, 156.02095737599996, 160.545333294, 157.30907784099998, 159.11748759600016, 149.40254888000015, 156.40122466800005, 162.709050554, 153.58206715200015, 164.10178680600018, 149.60821732800025, 165.42483837600003, 148.25076951300014, 152.15136790400004, 153.54755176200013, 156.19377385200005, 156.12468278400013, 140.34168542400005, 145.57038907800006, 148.28504680800017, 140.2400986240001, 147.06435427200006, 133.78856749600016, 141.80042633400012, 138.9846541290002, 144.41331814400007, 146.99591863199998, 140.61252557400007, 133.78856749600016, 128.69103728700009, 121.87028770500012, 141.86821152899995, 120.54699854000012, 123.16476883799999, 121.9033747200001, 112.6029248970001, 128.3910896310001, 117.93332880000014, 111.21458092800003, 112.66809834600019, 127.03465347600002, 117.83477179200008, 118.99327105400005, 116.51160127200012, 117.80186320200016, 124.48799852800005, 119.32244450300004, 133.82219017600005, 128.457687598, 119.19074131000002, 123.13179213600006, 131.07515352000007, 132.39832404000003, 120.51397100000008, 135.31360413300013, 116.281994381, 123.26403891000018, 125.811228218, 141.49513157400008, 131.00814606000006, 127.10130369600006, 135.0446650800002, 130.9078066840001, 129.81436134800026, 117.83477179200008, 124.42175649600017, 128.457687598, 123.09864545100015, 129.71420067600013, 124.52120468800013, 128.32449166400022, 121.60610061599994, 119.15794231200016, 123.09864545100015, 125.74486754100008, 123.19791552300012, 116.60998015999996, 122.99937537900007, 121.7711963370001, 126.4089860900001, 123.13179213600006, 112.92895968300013, 119.09200618200009, 123.13179213600006, 129.614040004, 127.00149926400002, 128.3910896310001, 120.41505775200017, 117.76895461200002, 127.03465347600002, 124.52120468800013, 121.87028770500012, 112.50508095300006, 123.03252206400009, 141.59689649400002, 115.18409248800015, 115.21671378200006, 115.11851359800016, 117.76895461200002, 104.62653780400001, 117.73621478400014, 129.6474840640002, 112.40723700900003, 105.91756058400006, 111.14935888799994, 119.12497424700018, 113.05947412199998, 121.7711963370001, 120.54699854000012, 123.06549876600002, 109.85885886300014, 125.67850686400004, 108.56823988800011, 116.47875215700014, 116.54428193000001, 117.80186320200016, 127.0679785860001, 119.15794231200016, 119.12497424700018, 120.4480852920002, 113.69743996400007, 107.24073110400013, 107.20829870400019, 111.24702471199998, 111.14935888799994, 114.95490267500008, 117.9004202100001, 120.58002608000015, 117.76895461200002, 117.70330619399999, 111.14935888799994, 111.67029902799993, 115.08589230400014, 117.86751161999996, 126.96817415399994, 113.893484092, 107.17586630400001, 119.12497424700018, 113.69743996400007, 111.18196990800004, 121.70519198400007, 120.48111283200024, 105.85281473399994, 116.54428193000001, 124.3885503360001, 113.73016993400006, 120.38219958400009, 122.96622869400016, 118.96047205599996, 131.04164979000018, 113.79546202799997, 125.71160190600006, 112.43990750400008, 116.41322238400005, 117.73621478400014, 103.23896556900024, 123.29718559500009, 117.70330619399999, 118.393036488, 125.611975594, 117.93332880000014, 113.50156368199998, 120.28328633600006, 109.79392270400024, 107.078735424, 116.281994381, 108.37362071999996, 124.35551446400018, 104.49761542400017, 100.46436817400001, 112.40723700900003, 105.75586197399991, 124.256066272, 111.01924927999994, 113.69743996400007, 92.58200846400007, 112.40723700900003, 92.58200846400007, 97.87831574400013, 103.04577252900003, 95.23233094400018, 105.82060782400004, 100.62487850399998, 103.72194816900003, 95.29596123000022, 102.30152812400001, 96.58711586999993, 91.2590160640001, 107.11116782399995, 99.16923278900003, 91.29057171599993, 88.70766729600018, 88.64446857600001, 103.20671159400013, 105.91756058400006, 93.9728501850002, 97.97419920000016, 93.9728501850002, 93.87750108900002, 99.20130814400011, 112.47241045800001, 89.99917898100023, 92.67717885600007, 113.76289990400016, 102.01227292400017, 103.30330811399995, 92.61362328600012, 107.2729971839999, 99.39343129600013, 96.61907227500012, 99.74560224499999, 96.61907227500012, 101.88366002400005, 93.87750108900002, 90.03083781600014, 92.708793678, 89.96752014600008, 91.32229002600013, 79.34774678400015, 94.03636182599996, 86.02984584600006, 78.1800519950001, 85.99836543599997, 82.11861770000007, 74.11317030300006, 79.40995255200016, 84.79649782000013, 92.64540107100015, 87.35295689100008, 97.91016744000012, 108.66554947200007, 105.85281473399994, 104.65885125400018, 108.276311136, 101.91585452400011, 115.31491396600018, 109.85885886300014, 115.54410377900012, 112.47241045800001, 111.31224675200008, 125.74486754100008, 103.1746230240002, 108.60056533199997, 111.05169306400012, 103.30330811399995, 104.5943900640001, 92.64540107100015, 116.38037326899996, 116.51160127200012, 100.56060845399998, 95.16853708400015, 97.91016744000012, 90.09399313300014, 107.20829870400019, 108.56823988800011, 103.23896556900024, 87.29003886400005, 104.52976316400009, 100.59274347900009, 92.61362328600012, 102.20510972400007, 100.62487850399998, 91.543830222, 112.57025440199993, 99.23321901000008, 104.56207661400026, 96.61907227500012, 90.12565196800006, 113.893484092, 103.23896556900024, 102.01227292400017, 99.26529436500016, 95.35959151600002, 101.91585452400011, 94.00468764000016, 102.01227292400017], \"power_mean\": 147.75295487497254, \"energy_millijoules\": 16227.29495861024, \"energy_joules\": 16.22729495861024, \"coremark_score\": 2276.431648, \"coremarks_per_mhz\": 3.705129635416667, \"ulpmark_cm_score\": 15.406141358597134}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [690.6950005880001, 698.6176919160001, 701.3975799059999, 709.257352707, 702.596711644, 699.9740045960001, 705.341309676, 707.991449796, 701.3346190859999, 717.2756291999999, 700.0366849440001, 702.6600599039999, 712.034753399, 739.4170609280001, 706.729653698, 710.6459344080001, 703.984640256, 719.8289946800002, 707.991449796], \"power_mean\": 707.253188480421, \"energy_millijoules\": 3536.2659424021053, \"energy_joules\": 3.5362659424021055}}, \"864000\": {\"active\": {\"elapsed_sec\": 78.052183043, \"elapsed_ns\": 78052183043, \"power_samples\": [145.97958853400007, 149.88238323000007, 155.11215494099986, 151.24024848900012, 149.81370969, 145.8772886700001, 157.8285954810001, 151.20602863499994, 156.4703157360001, 159.18681595400017, 148.52446053000017, 153.7886284860001, 157.79390166600012, 157.8285954810001, 145.26366465699994, 141.96997644900011, 150.96560770199994, 145.8772886700001, 148.66139392900004, 141.96997644900011, 152.59840878400007, 153.9265130440001, 158.0017087220001, 164.41617094200024, 169.82036206400005, 160.649593062, 167.0984531370001, 176.40799547400013, 163.26688628600016, 165.774807732, 167.203604089, 161.90830998900003, 168.56675766500018, 173.82706211900006, 179.0910506240001, 185.7859138980001, 177.7317000490002, 179.05540462400018, 168.53176801900008, 169.644575992, 177.7317000490002, 169.75008376799997, 172.53840575000015, 171.76219048200005, 188.36173918400016, 180.73899422400007, 181.6314672840001, 188.36173918400016, 175.044665388, 180.414814674, 168.4614280090002, 177.6962960190001, 176.33712356400008, 186.966153675, 181.73857872400015, 184.31886286500003, 183.1338079090002, 196.30866369400007, 188.28979908000008, 197.48669865600004, 197.52317769600018, 196.19959176600014, 189.64938123900026, 188.32567666400007, 201.4982751120001, 196.16317220099995, 200.28429605400004, 193.55241990600007, 197.48669865600004, 197.6324277440001, 196.27224412900011, 204.21881159400016, 192.86401132000015, 192.26507511600016, 191.57779442000003, 198.99707071399996, 203.59474081200017, 196.19959176600014, 205.21174701600012, 194.912365926, 201.644717764, 202.82186104200014, 210.6566838320001, 196.30866369400007, 206.8705607590001, 202.82186104200014, 203.00507013100014, 213.38203440900008, 201.5714024440001, 204.18222358200012, 201.4982751120001, 190.9052480460001, 194.912365926, 182.99087763900002, 197.6324277440001, 204.07208235000007, 196.30866369400007, 196.0905198380002, 197.5959487040002, 205.43219681699998, 190.86906638099993, 198.85110325200003, 194.80347211800006, 196.72213539200004, 185.60656470000004, 198.0122119460001, 190.9052480460001, 195.98144790999993, 192.33737154400012, 197.52317769600018, 194.8760058360001, 197.52317769600018, 212.0913021780001, 208.083589158, 196.236011331, 196.30866369400007, 204.18222358200012, 200.21128736699995, 208.1942653340002, 205.4690329020001, 209.3702907270001, 213.45642105900015, 210.6937580120001, 206.79695845800018, 220.07464808400005, 220.07464808400005, 219.99966668399986, 213.30783849400018, 213.53061697400005, 216.1037118690001, 215.99196638900003, 228.02086033500007, 210.13859593200004, 226.62163838999993, 222.013041757, 225.26057662100004, 221.8627952480001, 237.2950578120001, 234.4910415380001, 223.97458547999997, 221.40263331000006, 224.0499241199999, 231.95811000600008, 219.96236824400012, 238.5039279450001, 227.98301259000016, 222.68866887000013, 229.27303073099995, 231.99613637100003, 219.99966668399986, 230.67249096600005, 226.62163838999993, 231.95811000600008, 233.20571956800018, 231.65448410700014, 234.30070619700007, 230.48304592, 221.32753257000002, 229.15969728000005, 217.2408818240001, 221.32753257000002, 223.86196387199993, 215.95465411400016, 220.76543241600007, 231.84422591800023, 225.67867571399995, 239.903965212, 224.808605005, 223.786625232, 239.8273952300001, 244.93289220000008, 235.73823569000012, 247.61777502600012, 240.99728811800003, 242.20520817600004, 239.67405842799997, 251.59180255399997, 238.31270133600003, 241.1124196300001, 238.27437740100004, 250.22557428000005, 236.95126635600013, 227.60531150400016, 243.60972168, 230.25563398400016, 247.57923324000012, 247.5404927850002, 230.33137306200013, 236.91300189600008, 225.03459081300002, 233.01568099200017, 230.21766709400003, 242.51263471200002, 227.56746375900002, 224.7708762100001, 231.46474229599994, 228.4785301920001, 240.6136478400001, 240.65189358200018, 245.83136539600002, 241.82097436800018, 249.72119913100005, 236.56940666800006, 251.009213939, 239.02272148600002, 246.9991197600001, 237.66237363899995, 237.62404970400007, 232.40728411200018, 220.50296495800023, 212.52830454900004, 213.77596022399996, 213.85046582400003, 216.4574166240002, 221.78776842900015, 227.03856578400018, 223.07226038400006, 215.13531482400003, 217.8541889190002, 219.10162022400004, 223.07226038400006, 203.88857649600016, 220.50296495800023, 206.46546429, 205.87626746400008, 227.37861321600008, 220.3155982400002, 195.254363979, 207.19836926400023, 197.902783194, 212.5653071390002, 196.576406304, 191.32447814400018, 198.12164069800008, 199.33443239100006, 184.74557795400005, 182.13256115900015, 170.22824200500008, 191.36071928400008, 172.87268289500014, 175.48611407400006, 170.19313401900013, 182.025271599, 183.3159484150001, 172.87268289500014, 170.19313401900013, 183.459116753, 187.49790312800008, 183.42341667899996, 176.84367937900015, 182.0969204490001, 161.07280221300005, 165.52981120799996, 171.62115930999994, 159.74606791500014, 158.42366935000018, 153.06522131200018, 138.61288018400012, 153.13407509000012, 135.92988654600015, 158.4584226400001, 143.9707348290002, 139.90141797400008, 139.93533822400002, 131.9292997650001, 130.707299746, 145.3657893500001, 138.78183676900017, 149.09404620800012, 146.55196435200003, 145.16136479299996, 150.58795457100007, 142.614293504, 139.867671674, 153.16859048000015, 145.29764783100006, 137.319887321, 137.1510551350001, 139.867671674, 147.7717662880001, 147.7717662880001, 133.6542492000001, 143.93681101900006, 137.65720501500016, 135.92988654600015, 143.90271234400007, 129.38044610800011, 135.89631795000003, 130.6402922860001, 137.18485624000004, 134.57397855500017, 114.75850230700019, 126.80189040000005, 133.35233477600013, 113.46883371199999, 112.24421961600001, 121.47392223300005, 110.7588628279999, 114.82408119700005, 117.5061921780001, 117.47345235, 114.85670249100019, 109.6313319100002, 112.11370517700016, 118.89453592600023, 110.9215834559999, 110.9215834559999, 129.38044610800011, 110.82391763200008, 121.50700924799992], \"power_mean\": 189.70901481530652, \"energy_millijoules\": 14807.202749271502, \"energy_joules\": 14.807202749271502, \"coremark_score\": 3203.239115, \"coremarks_per_mhz\": 3.707452679398148, \"ulpmark_cm_score\": 16.883675075787}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [653.018272655, 649.104971584, 651.782134394, 651.752855924, 642.56735778, 655.8465494640001, 651.869669512, 635.8854326759999, 645.24443064, 649.250470112, 633.4361097739999, 643.0254667849999, 646.6266908500002, 640.668221925, 638.676558428, 649.221310592, 644.0068671399999, 646.597650475, 661.1432673040001], \"power_mean\": 646.827594106, \"energy_millijoules\": 3234.13797053, \"energy_joules\": 3.23413797053}}, \"1075200\": {\"active\": {\"elapsed_sec\": 74.726977159, \"elapsed_ns\": 74726977159, \"power_samples\": [140.03692502399997, 124.28910214400014, 128.05792859300004, 149.26537788600012, 118.82876886300005, 122.80083523500014, 137.35351508700012, 134.6748522910001, 122.80083523500014, 138.41006282400008, 133.28508941600012, 135.01098292500023, 136.03093840200006, 113.59941790000005, 158.63183264600002, 130.807467308, 142.75010118400007, 118.7630018000001, 125.54561491700008, 128.02454400800002, 116.24914526600003, 124.15661808000016, 121.53992658600009, 132.063208347, 134.6748522910001, 177.05683353900008, 145.229506312, 155.8825976280001, 190.25527690499996, 154.56002094300004, 140.07067132400005, 158.5970793560001, 149.33387534000008, 148.045457305, 145.331806176, 153.37532881599998, 146.89344064800002, 137.55597503900003, 148.14811340900008, 174.6905372399999, 142.27442518400017, 141.52911129899996, 184.032342168, 146.9618762880001, 132.39832404000003, 131.10848543600002, 135.11185666100016, 129.8478054080001, 140.40935197400006, 141.59689649400002, 198.55935570600013, 149.71105155200007, 142.9199480640001, 182.63318453400007, 153.5130363720001, 156.12468278400013, 162.84859905600013, 164.1367781910002, 154.93963523000002, 155.00878496000007, 153.6509209300001, 166.88815123300003, 156.29749926, 158.87474923200023, 207.78851586000008, 162.98796842000013, 169.46878992000006, 203.92516450800008, 176.124325644, 168.80051378399992, 174.79675749600005, 167.37332216200014, 182.7762985190002, 186.3910281100002, 170.7566714850002, 224.996862018, 184.17551050600014, 174.72600462000014, 205.21174701600012, 181.488774304, 185.3555126880001, 185.31956911800012, 190.65253303200006, 197.34115664000012, 197.2683856320001, 213.15944666400014, 207.82547109000018, 205.21174701600012, 218.45212874400022, 238.31270133600003, 199.955475438, 205.1749109310001, 247.57923324000012, 210.54565141599994, 199.955475438, 193.22627284200007, 202.63865195300025, 197.2319065920001, 193.2988740720001, 213.08506001400008, 217.89162014400017, 223.86196387199993, 222.62100124800008, 255.32730762400013, 211.64646003400003, 213.15944666400014, 221.17771622200019, 221.21526659200015, 231.6925104720001, 232.8635329440001, 233.12974320000012, 227.6808129030003, 231.65448410700014, 234.33885151200002, 273.980135226, 239.59748844600017, 231.65448410700014, 284.488279414, 244.77860423899995, 239.59748844600017, 234.33885151200002, 227.6808129030003, 232.9016187840001, 239.52091846400003, 240.88215660599997, 223.67381044799993, 231.54060001900007, 244.701559288, 284.32685970800003, 245.71552082000005, 231.54060001900007, 281.4000744000001, 248.74740301400004, 255.8686480140001, 254.043472199, 250.07033593899996, 250.03147653400015, 253.88752029400007, 242.0130912720001, 261.7494408660001, 234.11037085599992, 248.67000212799996, 282.843189176, 238.0065029220001, 253.80964443900007, 240.6136478400001, 244.66293778300007, 236.83666920400003, 232.78755657600004, 240.72877935199995, 235.24255303000007, 228.66767847300002, 237.89192418300001, 272.17531533700003, 245.71552082000005, 226.09357154000008, 270.85297594200006, 230.0282220480001, 236.531142208, 237.81527631300014, 243.07084203, 253.420064969, 244.12322700800007, 250.85373722400016, 254.42986962400016, 244.35455992000016, 245.4838316680001, 283.4799760899999, 241.47504547200026, 242.76293905199998, 242.64745071599998, 233.46307420300013, 237.35637175800002, 236.18735075200016, 236.2256152120002, 238.71624471999996, 224.13084106200006, 226.84971524100013, 256.9944532640001, 230.85749049800017, 216.38286477400015, 258.3201750080001, 226.7363660970002, 221.44985843700022, 214.8747029340002, 218.72748226400006, 216.1216458240001, 236.14928252000004, 217.6301774340002, 209.18559684000013, 232.14126916800012, 231.04723230900004, 241.24442620800005, 217.70484792900015, 212.23133015400015, 224.09311226700015, 214.9491361390002, 213.47851094399994, 209.58362397600013, 213.59007830399992, 205.69216710700005, 191.17988528800004, 203.08099986000013, 209.47259156000007, 191.03510658000027, 193.8597879360001, 197.53814560599994, 187.24583536000023, 177.8458170240002, 188.3513975520001, 191.10740300800012, 185.7442657170002, 190.9628101520001, 200.2908281880001, 175.30884320400003, 196.35809328000016, 185.85209022100014, 189.67729800000006, 168.80051378399992, 170.12255610900002, 178.52181142400002, 162.1162829120002, 164.90015396399997, 167.51364146400022, 152.7207754200001, 159.64180814700012, 156.92815754400021, 151.73860604800018, 164.79518113200004, 146.312790564, 143.76649250900016, 143.73256869900013, 138.41006282400008, 143.6304475390001, 139.69824437399996, 152.78962919800017, 133.0166252480002, 143.73256869900013, 148.9912119840002, 139.63057782400017, 135.72778283399987, 135.66047260800008, 150.31331378400012, 130.3727778880001, 126.46915199400007, 129.14668070400012, 130.4062816180001, 122.47004831700008, 136.98239628800013, 128.22450911199996, 123.79203147200019, 122.99937537900007, 115.85579817100006, 111.88551433500004, 113.37081164800009, 129.1801247640002, 135.66047260800008, 126.50247710400015, 122.60229509100009, 114.69309156800011, 122.503025019, 118.5984996090001, 115.98685771700013, 117.34198675200014, 117.17778132600006, 115.95417705900002, 108.11418403800008, 114.5948913840001, 100.0474368240001, 108.11418403800008, 117.276338334, 105.36821694900004, 104.0782034140002, 119.92066088400009, 116.019706832, 122.60229509100009, 129.14668070400012, 125.18037530400011, 136.84753854600012, 135.82883469000012, 141.35956118399997, 147.7717662880001, 145.331806176, 138.51147150400016, 133.21801648000007, 137.1510551350001, 131.96269085100016, 125.37962792799999, 121.40791788000001, 113.43610374200011, 116.05255594699997, 139.83375142399996, 125.28000161600005, 129.1801247640002, 127.9245614560001, 139.732164624, 127.79119431899994], \"power_mean\": 182.14642535163645, \"energy_millijoules\": 13611.251766845236, \"energy_joules\": 13.611251766845237, \"coremark_score\": 3345.779634, \"coremarks_per_mhz\": 3.111774213169643, \"ulpmark_cm_score\": 18.367157134581756}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [613.006761568, 619.571690718, 615.4874747399999, 614.274908469, 612.979350144, 614.274908469, 618.276370488, 618.220788858, 614.274908469, 639.4026276, 613.089278432, 615.570347844, 636.4951590469999, 612.951797424, 611.601193134, 618.276370488, 623.5410238530001, 623.5969375459999, 628.8941947639998], \"power_mean\": 619.1466364239474, \"energy_millijoules\": 3095.7331821197367, \"energy_joules\": 3.0957331821197367}}, \"1363200\": {\"active\": {\"elapsed_sec\": 49.44472894, \"elapsed_ns\": 49444728940, \"power_samples\": [216.86773927399997, 220.84034058999998, 211.57238315300003, 218.19049407900002, 214.33379702399998, 220.7278820460001, 212.93666818400004, 215.54498446900004, 222.35075887800008, 203.74165865400016, 206.35496623400013, 215.58229674400002, 212.89947485900018, 216.83036752400005, 211.64646003400003, 232.8254471040001, 223.67381044799993, 219.625528724, 228.85682675400005, 228.85682675400005, 237.96837552, 228.85682675400005, 230.10396112600006, 228.81911373599996, 219.55073958399998, 242.6088886860001, 235.394980346, 225.301568158, 235.50939879400005, 239.99974453800007, 239.48253505399998, 236.6457393600001, 243.263256672, 244.73998273400002, 244.585892832, 230.06599423600005, 237.96837552, 243.3787450079999, 240.76702509400013, 240.72877935199995, 239.29101168, 247.38572963400009, 241.89778164000018, 235.31876668799998, 239.36758166200002, 253.92655831900004, 248.51500138200004, 243.22469464200003, 234.03408022600001, 239.32919825200008, 237.96837552, 236.56940666800006, 232.71138489600014, 239.29101168, 232.9016187840001, 235.2805618980001, 231.3508582080001, 231.426715931, 237.930051585, 240.6136478400001, 240.07643316500014, 240.6136478400001, 247.97279723200006, 236.56940666800006, 230.553669592, 251.2421296340001, 241.85947672800012, 241.97458891200017, 257.81659094400004, 251.20341014400003, 243.22469464200003, 254.00443417400004, 252.603803514, 253.9655963439999, 257.81659094400004, 255.093324124, 245.90852899200002, 266.9650208400001, 257.85560628400015, 264.315768832, 257.81659094400004, 271.05162556799996, 253.92655831900004, 256.41584163900006, 261.7494408660001, 259.02593667200006, 261.5922646380001, 269.49088443200003, 253.84868246400003, 268.3666606080001, 255.13222112400013, 260.42686418100016, 264.43410825599994, 264.51293366000004, 259.2219144400001, 267.7724923200001, 264.3945942360001, 259.7987049870002, 261.78883593600005, 271.498734034, 268.28747888, 264.079089984, 268.28747888, 261.63145768200025, 270.97220655, 269.530636547, 260.3483947120001, 266.9650208400001, 268.208297152, 261.63145768200025, 271.09123299600014, 259.14356361599994, 268.3666606080001, 270.8925833700001, 257.738359154, 262.953856247, 264.35528285199996, 248.47640042599994, 267.00465400500013, 259.02593667200006, 245.75400343600018, 264.27625481200005, 269.64968903500005, 268.32717152, 266.8463245920002, 260.3090591170002, 258.947585848, 259.02593667200006, 261.6708527520001, 259.14356361599994, 277.06853391999994, 274.8641147980002, 267.7327996800001, 260.269925243, 266.1343503510002, 260.3483947120001, 266.64856526100016, 251.08685250400003, 267.00465400500013, 260.3483947120001, 265.68213649000006, 262.993310792, 278.9116477629999, 264.3945942360001, 257.738359154, 265.68213649000006, 262.953856247, 264.43410825599994, 256.376684664, 260.46619977600005, 268.28747888, 268.1686045120001, 262.993310792, 264.35528285199996, 264.43410825599994, 258.9866605520001, 269.4511323170002, 255.13222112400013, 261.71024782200004, 264.315768832, 260.269925243, 273.5816469680001, 264.35528285199996, 265.56361836200006, 270.85297594200006, 255.8686480140001, 266.9650208400001, 269.01467448000005, 272.17531533700003, 270.05817327600005, 270.81316435200006, 275.6668943730002, 272.09557320700026, 272.1354442720002, 273.62157770300007, 265.56361836200006, 293.345752274, 268.2477862400001, 285.2052568590001, 286.56782486400016, 290.61966488400014, 277.469008456, 277.3887901360001, 276.10661937600014, 274.7443492460002, 287.85367607399996, 287.9752239940001, 289.2974444390002, 274.7443492460002, 283.96402799400005, 278.671047939, 278.671047939, 287.85367607399996, 285.28618926900003, 279.9127529939999, 287.85367607399996, 280.0734591360001], \"power_mean\": 254.59188925370563, \"energy_millijoules\": 12588.226954471973, \"energy_joules\": 12.588226954471972, \"coremark_score\": 5056.532028, \"coremarks_per_mhz\": 3.7093104665492955, \"ulpmark_cm_score\": 19.859826241152046}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [651.5482069259998, 652.8717333809999, 652.754682503, 656.905685307, 659.405102496, 664.7921503379999, 660.669061156, 654.136615752, 668.702779746, 663.4091485060001, 660.9061642300001, 664.7624299260001, 659.582459655, 674.061174954, 668.792781738, 672.767879154, 679.7368102800001, 686.043243501, 675.142371486], \"power_mean\": 664.5784463702631, \"energy_millijoules\": 3322.8922318513155, \"energy_joules\": 3.3228922318513154}}, \"1516800\": {\"active\": {\"elapsed_sec\": 44.43382415, \"elapsed_ns\": 44433824150, \"power_samples\": [268.6179687580001, 260.8451724900002, 271.45886296900005, 268.6972691310001, 272.6251522849999, 271.2599165780001, 262.12692945000003, 266.094717186, 266.0550840210002, 268.6972691310001, 258.2027494800001, 256.83798968400015, 260.80577742, 260.7663823500002, 275.42700702900004, 251.47562435399993, 258.085122536, 244.9819707480002, 248.8678864530001, 243.622137738, 250.11567189400012, 238.37158138200004, 230.36392778100014, 239.53921849000005, 242.99371797000003, 225.22618540399992, 230.78143776800005, 225.07522611000013, 226.69851835200018, 225.11301437999998, 225.037631626, 229.04283522599997, 234.365410236, 235.72915837200014, 227.835270519, 229.15654119400006, 234.51783755200006, 222.50837964000016, 221.22458510900003, 222.58352510399993, 209.3984432000001, 204.18222566600014, 213.404196384, 205.50806675000024, 197.501606896, 192.248017807, 190.99886544000003, 202.67721154200012, 193.6783604100001, 172.4486959300001, 190.78197615600016, 194.854495832, 186.88594990399997, 197.3923655220001, 208.00321428899997, 192.1031876610001, 198.71357702700016, 181.59629707399995, 189.49676076900005, 202.01559041600012, 178.98915914400004, 189.930198561, 189.38840132100006, 193.53310651200002, 181.631937784, 168.37866334399996, 164.48026263600002, 172.41328802500016, 168.41371215999993, 169.69999349400007, 165.83682176600007, 176.23998591900022, 171.16235481600006, 149.90126440799997, 173.77020420000008, 176.41755355400016, 168.44894163999993, 169.8407873760001, 156.61644696000008, 156.5472372470001, 167.09232284000007, 154.0078869450001, 157.83393275200012, 149.86704455400002, 155.19115411200005, 164.62028632800013, 155.36414820000005, 156.65114077500016, 155.2604227920001, 152.582890862, 172.48392225600003, 175.13139014400008, 181.59629707399995, 193.42439916600006, 164.72525915999995, 177.8458170240002, 178.13043662400014, 173.62851656400005, 171.515295294, 172.48392225600003, 180.31054846400002, 167.16266285000017, 179.0248646189999, 171.12718766000012, 171.12718766000012, 164.58523546800018, 167.12749284500012, 165.80171143099994, 181.667762209, 183.06512779199988, 181.59629707399995, 175.024991184, 180.41765990399995, 189.56893855200008, 189.67729800000006, 201.53920912600017, 189.71347966500014, 177.91692622400012, 181.77505176900024, 193.82361430800006, 196.46734332800008, 189.85802077800008, 187.1019551520002, 187.20995777600012, 193.75089412800003, 189.85802077800008, 188.53182228600008, 180.63188278400014, 187.2818978800002, 187.70249832900015, 199.2614237040001, 185.7802687620001, 174.15961784399997, 181.88234132900016, 187.35383798400017, 188.53182228600008, 201.94234443900007, 193.8597879360001, 197.93932190400005, 201.83238132700012, 211.09059778300002, 209.76861462800002, 200.54686784399996, 205.80266516300003, 201.90562730400018, 196.576406304, 207.12464831800014, 213.77596022399996, 207.05092737200016, 211.01652090200014, 221.7125487390001, 209.80549868399999, 201.83238132700012, 215.13531482400003, 199.188415017, 209.80549868399999, 216.56934022400014, 214.9491361390002, 224.35663338899997, 221.67513176500017, 220.39050641400001, 224.3943621840001, 229.76284322200013, 225.67867571399995, 219.75349808600004, 228.28938191100008, 226.0941189780001, 220.4280567840001, 225.6032929600002, 234.9755113440001, 229.72507103400005, 227.03856578400018, 228.36500234400012, 225.754252254, 248.43760049599996, 245.44515068800024, 240.1915646770001], \"power_mean\": 203.6147087695481, \"energy_millijoules\": 9047.380163819562, \"energy_joules\": 9.047380163819561, \"coremark_score\": 5626.702077, \"coremarks_per_mhz\": 3.7095873397943038, \"ulpmark_cm_score\": 27.63230852172533}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [755.624918835, 739.7122309389999, 743.679783484, 751.5854235919999, 743.6128953640001, 747.584426792, 756.9136308799999, 751.4167647449999, 755.45536872, 764.7500597489999, 755.45536872, 750.161913696, 739.4464470449999, 749.993551614, 748.7387600400001, 740.934944022, 744.80595837, 748.3352650960001, 732.7661337920001], \"power_mean\": 748.4723076576316, \"energy_millijoules\": 3742.361538288158, \"energy_joules\": 3.742361538288158}}, \"1651200\": {\"active\": {\"elapsed_sec\": 40.814415349, \"elapsed_ns\": 40814415349, \"power_samples\": [294.30077610900014, 306.247107388, 299.55120921599996, 300.95531536600015, 290.4165608640002, 290.3760653040001, 290.3353610040001, 307.5689718980001, 303.1499316960002, 307.6102370560001, 305.709517926, 314.05751635800004, 312.0694442480001, 311.37248709300013, 307.4032731450002, 306.12306462000004, 294.0967817940002, 312.777332, 305.99902185200017, 295.5042977070002, 291.61640226400004, 295.5452401020002, 294.055899069, 295.4226228780002, 296.7031292779999, 301.98892445799993, 299.26399610399994, 308.4761020440001, 304.4297842860001, 309.8017047540002, 304.26456072300016, 308.18597969999996, 313.43195599800003, 302.77887211200004, 312.15287616800003, 300.2153371420002, 305.46143239, 304.09954925700004, 294.85047915300015, 294.80953675800026, 297.45077209800013, 296.2529497720001, 298.7713897680002, 295.7495321550001, 293.6070277140001, 288.60794145900024, 290.884117629, 277.9492484670001, 282.9557246700001, 290.802799124, 282.99592418600014, 276.348008856, 290.84335385400004, 273.5468988040002, 278.94913503600014, 282.8751184240001, 285.516235424, 282.8751184240001, 292.1639715240001, 286.8411236239999, 281.67518787100016, 286.88150084400013, 285.6373968160002, 285.47570974400014, 282.99592418600014, 271.0210991220001, 271.06097018700007, 281.67518787100016, 272.34604668600014, 272.3859774210001, 277.54838608900013, 272.34604668600014, 267.0989387520001, 252.48495412399996, 265.6595653590002, 263.13257722800006, 260.3732397540002, 257.77151782400006, 269.7004814520002, 243.1980934190001, 245.36798709200013, 252.56282997899996, 251.553381564, 253.9615016240001, 255.36041055900023, 249.84383712400006, 239.2322668390001, 234.06035968200013, 241.91615642400006, 249.96019517900027, 252.56282997899996, 245.91637371000013, 243.31375987500007, 245.87783192400013, 236.74417146300004, 243.3521833210002, 241.99308272999997, 223.52814774700005, 219.64103954200004, 231.4949817600002, 230.09832824700004, 238.141674598, 249.99911425400012, 235.53803230000017, 244.71160061600006, 236.82081933299992, 223.60360533699998, 229.005063038, 228.9291292580001, 225.037631626, 230.212212335, 226.32081726600006, 210.53454510300014, 224.92446060200007, 216.9575671140002, 215.02356934400018, 211.71157727900004, 213.73889846400004, 225.037631626, 214.53946649400007, 207.633826515, 209.21345254800008, 198.56737197000007, 205.13967682700002, 202.45692907800014, 203.88810369499993, 201.35600003700017, 199.85168822000014, 198.64038065700004, 193.2791452680001, 199.85168822000014, 198.49436328299998, 203.777784343, 205.250174883, 207.818520402, 216.9575671140002, 211.71157727900004, 206.4238255460001, 207.70766610600003, 202.38337585800025, 190.5649010200001, 209.02846189600007, 203.81443152500015, 202.49351709000018, 195.88461404800012, 193.20661155000005, 179.95363260400018, 191.88575628500007, 193.17025146000003, 181.34589352900002, 181.34589352900002, 170.739080026, 185.85209022100014, 183.99205326600008, 177.95257222400005, 189.13568630700013, 185.420792205, 189.244045755, 191.99447197300003, 193.24278517800008, 178.77547560899995, 199.81521854800008], \"power_mean\": 252.45693997393218, \"energy_millijoules\": 10303.882405833629, \"energy_joules\": 10.303882405833628, \"coremark_score\": 6125.649319, \"coremarks_per_mhz\": 3.7098166902858525, \"ulpmark_cm_score\": 24.262699257753603}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [706.912960662, 709.49977139, 701.4949183279999, 710.8546607200001, 721.31337432, 722.218902246, 735.9714423449999, 736.504722162, 732.0026435699999, 747.9872092560001, 733.2598094319999, 725.41625248, 737.2325893679999, 735.9054379919999, 737.199442683, 736.00452936, 741.2341864199999, 735.9714423449999, 730.7452404179999], \"power_mean\": 728.301554499842, \"energy_millijoules\": 3641.50777249921, \"energy_joules\": 3.64150777249921}}, \"1804800\": {\"active\": {\"elapsed_sec\": 37.338827017, \"elapsed_ns\": 37338827017, \"power_samples\": [224.99984335600016, 230.17418597000005, 251.47562435399993, 243.42942633100006, 230.212212335, 252.56282997899996, 230.1361596050001, 228.81542329000013, 235.46169960800012, 235.49996406800005, 235.46169960800012, 232.3969615530001, 239.38564409300022, 231.57095812800014, 236.89727067, 227.98670578200006, 257.849868648, 221.2996119280001, 228.89135707000003, 230.25004369300018, 227.49468697500015, 227.5325943900001, 222.24508075200004, 220.92428496200023, 230.17418597000005, 220.9993117810002, 232.85392286499996, 255.16502729400008, 231.4568959200002, 230.1361596050001, 260.4912229380001, 234.17477812999994, 231.60904396800004, 243.31375987500007, 223.56587654200007, 239.4240869780001, 231.4949817600002, 236.89727067, 232.73968253700002, 223.60360533699998, 228.73968421200004, 257.8889433520002, 231.41900539200014, 227.45697395700006, 255.12607112400008, 232.891872563, 220.77423132400008, 215.4876676240001, 228.73968421200004, 218.2035737640001, 219.3785720840002, 226.20746812200002, 222.433041, 232.73968253700002, 226.69851835200018, 260.4912229380001, 223.56587654200007, 227.57050180499994, 234.02215489200012, 228.77765110200005, 220.81164829800014, 236.74417146300004, 242.031447006, 240.59126822400003, 240.5527658640002, 238.02672120600005, 277.74881727800005, 244.6729196360002, 239.4240869780001, 288.364489379, 240.8601924000002, 242.185497372, 239.615907117, 236.973722007, 251.47562435399993, 246.071136861, 246.22570134300008, 243.54509278699993, 250.2711486090002, 242.3395477380002, 280.7967907200001, 246.34172403900004, 231.8750589120001, 271.45886296900005, 238.44815136400007, 233.6408906800001, 237.16494861599995, 232.47305656599997, 242.377912014, 243.46784977700008, 248.82922632700001, 252.95240944900002, 246.38046449400008, 250.348787174, 293.811022029, 255.51683765400003, 248.98426538900003, 250.2711486090002, 258.16347336, 248.8678864530001, 250.2711486090002, 247.58559382800001, 264.852509594, 259.52396098500026, 262.16638399500016, 295.3000056540001, 262.28434296800003, 258.35945112800005, 292.53075272399997, 260.96295364800005, 263.4875955000001, 260.8451724900002, 268.73702124600004, 261.0023487180001, 274.18551169600005, 267.613925312, 274.18551169600005, 278.109717014, 282.1181800400001, 327.11378203900006, 273.06357127800015, 280.67634058800024, 321.06678204799994, 272.94398384600015, 295.761768396, 290.01035282400005, 289.5227361840001, 286.1633993600002, 284.72069999400003, 280.75670954400005, 320.46013244000005, 279.3908190540001, 278.109717014, 328.26594581400013, 278.069548379, 279.511297086, 280.75670954400005, 288.770103889, 288.81074871400017, 289.96964852400004, 297.94266595399995, 298.02457807300004, 299.34602686799997, 295.2590632590001, 341.4867245460001, 292.69362702399997, 305.75093631599987, 340.16551304100005], \"power_mean\": 253.84510160281087, \"energy_millijoules\": 9478.278337860145, \"energy_joules\": 9.478278337860145, \"coremark_score\": 6696.129637, \"coremarks_per_mhz\": 3.7101782119902484, \"ulpmark_cm_score\": 26.37609817823107}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [641.5878276, 621.659532032, 620.3376083520001, 613.723655776, 620.3376083520001, 611.0798084160001, 625.34873604, 617.666112694, 611.464008891, 616.3165168439999, 625.404887412, 641.38623798, 637.187820054, 617.7492001049999, 628.35814008, 632.272035254, 630.8890917760001, 630.97395792, 634.916001564], \"power_mean\": 625.1925677443159, \"energy_millijoules\": 3125.9628387215794, \"energy_joules\": 3.125962838721579}}}}, \"6\": {\"freqs\": {\"652800\": {\"active\": {\"elapsed_sec\": 98.430707723, \"elapsed_ns\": 98430707723, \"power_samples\": [195.29078354400008, 178.13043662400014, 184.74557795400005, 182.16838558400013, 180.66764773400007, 182.2771498699999, 204.21887284800005, 238.6780581480001, 188.53182228600008, 185.99573313899998, 222.9594456000001, 180.81034071400018, 179.34566457900007, 175.34418806400015, 187.35383798400017, 197.902783194, 179.34566457900007, 187.31777546400008, 176.6307077140001, 193.8597879360001, 199.22482551899986, 225.49012193600004, 186.2739966800002, 195.254363979, 184.60198800000012, 189.78565744800005, 183.3159484150001, 193.82361430800006, 186.03173618400012, 187.24583536000023, 176.73710229899996, 180.63188278400014, 237.43282309500012, 192.61027932900004, 203.11758787200017, 230.97117957900002, 185.88809326600017, 190.49241874000018, 190.00237634400003, 203.22618758300007, 184.70963438400008, 212.15694350400008, 197.902783194, 220.12823152200008, 201.79566419200012, 197.866431862, 244.0075605520001, 204.47634763700012, 189.85802077800008, 205.7657694080001, 197.82989315200007, 188.63981778900006, 204.54983090400003, 199.15181683200012, 190.27552945600007, 195.18171161600014, 206.34991508600024, 262.71753363899995, 214.8747029340002, 216.00972222400014, 201.75913535000007, 199.11540633000004, 230.9333482210002, 217.74208719900003, 217.6301774340002, 217.70484792900015, 217.66741670400017, 218.95204194400003, 254.5858586239999, 229.57339817600018, 208.52047106400005, 256.44662962400014, 220.27824043600015, 208.00321428899997, 224.24383396600012, 207.05092737200016, 226.92521664000014, 209.58362397600013, 209.69465639199996, 255.75137789400014, 216.34549302400012, 228.10023363000016, 269.01467448000005, 226.84971524100013, 232.06529280000018, 231.95123059200012, 234.55604234200007, 239.99974453800007, 225.94311618000006, 225.301568158, 281.83636998200006, 234.59424713200008, 221.41224859200008, 270.09798486600016, 233.38697919000003, 239.80772725600013, 224.09311226700015, 222.65867056799993, 222.77148535200013, 221.37483161800014, 212.11994091400027, 210.71983252000007, 228.0623262150001, 222.47071031999997, 251.4366458039999, 218.1287846240001, 219.90331443399998, 221.26219495400005, 218.652500864, 234.25099178800008, 221.22458510900003, 217.21920177900017, 219.82840626000007, 233.12035321899998, 223.7918623500001, 265.8176915250002, 222.50837964000016, 235.61456122000004, 263.13257722800006, 225.037631626, 221.0369216260001, 227.49468697500015, 237.95015122400002, 228.81542329000013, 223.45288363800012, 240.59126822400003, 258.85646619600004, 227.22991826100008, 228.73968421200004, 247.04338967800004, 218.09129392400007, 211.4516054740002, 208.84347124400006, 214.16710912400004, 212.77204502400002, 207.52297221900005, 210.201103924, 213.0324325439999, 207.48595751400012, 208.7324388280001, 235.04157546000022, 217.941523384, 210.01562607800008, 211.34021623399997, 206.16551796400017, 206.31314937000013, 210.3492576860001, 207.559986924, 196.9181118040001, 214.16710912400004, 208.91742948000012, 233.71710433800013, 215.45029587400018, 206.20247319400016, 231.22896681600014, 202.4201524680002, 213.9436181640001, 191.7046255240001, 198.27514953900004, 185.2051431970001, 193.02518402400005, 189.06350852399999, 194.01852674000008, 190.4201223120001, 187.73862032400007, 203.48366237200003, 182.3846181340001, 178.5259034940001, 177.20528582400027, 170.84494404199995, 183.70505768400005, 166.56585491900012, 169.17156401400007, 187.63043958000014, 175.9556587090002, 170.49200356400013, 187.5943175850001, 176.95631222400016, 157.34845602400003, 157.38303109200012, 174.49317857400013, 162.63501972400013, 162.70482305100006, 165.31106700600003, 161.31446122400007, 166.63601457000016, 157.79935768400003, 176.95631222400016, 160.06346876100008, 175.8846681540001, 175.84926412400011, 154.77643009200006, 162.809617763, 154.81088682000006, 169.27724991000014, 158.73846152700003, 156.06241342200008, 161.34921399600012, 179.84652116400014, 161.41889867800012, 146.91641594200007, 163.9904493360001, 146.9847947510001, 152.61740625200025, 137.70037570900013, 142.88167560900013, 137.63265415900025, 124.44989607800005, 133.69979708600022, 140.34208623900008, 149.454995178, 133.80067082200014, 137.7679236140001, 127.15808562500013, 135.15538636199994, 136.34138866600006, 131.1587230020001, 127.29145276199995, 139.12281777399994, 124.48316171299996, 148.68270931200004, 136.34138866600006, 133.59892335000018, 149.454995178, 133.73347924100005, 131.1587230020001, 119.19540998000014, 141.49309462400015, 128.27885022400017, 128.3455668360001, 119.22826814800021, 137.70037570900013, 129.83774909200008, 115.13446529700002, 124.44989607800005, 113.90765824700009, 104.689547629, 124.54952238999999, 121.80830449800021, 133.5317317690002, 116.48788227000011, 107.20607233800013, 109.91248143200005, 108.5591340970002, 95.37506678600005, 113.8420793570001, 109.91248143200005, 107.46550902000013, 102.04771875900019, 105.94576358400002, 107.30338192200009, 112.55407301200012, 100.63038592400017, 98.14479529700009, 99.40588988900004, 106.01046206400008, 111.29845067100018, 104.689547629, 112.68482504600001, 107.2708898520001, 108.65662180100014, 98.17670616300006, 109.9775362360001, 108.65662180100014, 107.36819943600005, 111.20060672700015, 115.2655248430001, 95.40702319100001, 109.91248143200005, 106.2047238240001, 113.90765824700009, 103.17524962400012, 90.18254542, 112.586802982, 104.689547629, 88.86157151000009, 92.76531266100005, 100.63038592400017, 116.35658543400007, 98.11271994200013, 100.598356524, 109.94509245199993, 100.63038592400017, 94.11790128200016, 99.30964960900008, 99.37391965899997, 104.98040590899996, 108.78666105000013, 101.56490156400014, 88.82991267500006, 104.81887331399992, 91.53529711499993, 106.01046206400008, 97.95267214500007, 90.15082711000002, 107.17358026800014, 113.71125787900007, 107.36819943600005, 98.04873372100008, 111.29845067100018, 94.18169514200008, 100.72680432400011, 105.94576358400002, 106.14002534400004, 109.91248143200005, 101.95112223900014, 104.56038795900008, 96.69586257600008, 103.4009466440001, 98.08064458700005, 103.36863319400015, 99.40588988900004, 95.37506678600005, 107.17358026800014, 99.37391965899997, 92.7969868470002, 100.69477492399994, 96.72787845599998, 94.245325428, 99.37391965899997, 103.49772128400002, 95.40702319100001, 108.49419793800018, 100.598356524, 103.4009466440001, 102.07997273400008, 106.04289446400003, 107.30338192200009, 107.2383977820001, 104.62496779399999, 94.05427099600013, 109.81481560800012, 113.94027954100011, 111.26594771700002, 116.52079086000003, 106.88165151600003, 105.88106510399996, 103.49772128400002, 102.04771875900019, 121.87442788500005, 100.63038592400017, 117.80861858500009, 108.62423718700006, 115.16714595500014, 111.26594771700002, 109.87987041200006, 116.55369945000007, 111.26594771700002, 120.4171738770001, 127.15808562500013, 112.65209507600002, 113.90765824700009, 113.4494467720001, 120.4171738770001, 109.81481560800012, 107.17358026800014, 111.26594771700002, 112.52134304200013, 108.72172489100001, 112.55407301200012, 108.62423718700006, 128.51244412000005, 115.23284418499998, 108.62423718700006, 127.05810307300021, 112.586802982, 111.20060672700015, 123.02965209600006, 109.87987041200006, 108.5591340970002, 116.52079086000003, 116.75081346600007, 113.90765824700009, 109.84742662800011, 121.84145118300012, 124.51625675500009, 111.29845067100018, 109.94509245199993, 124.35026976600011, 116.55369945000007, 112.65209507600002, 119.26129568800013, 113.8420793570001, 124.41663044300003, 124.41663044300003, 121.80830449800021, 124.44989607800005, 123.19534232000012, 120.35116952399994], \"power_mean\": 160.7183613215245, \"energy_millijoules\": 15819.622048958485, \"energy_joules\": 15.819622048958484, \"coremark_score\": 2540.185738, \"coremarks_per_mhz\": 3.891215897671569, \"ulpmark_cm_score\": 15.803158838201146}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [713.180385437, 708.2263478, 710.5995011169999, 710.567544712, 709.276983602, 760.783041564, 711.953870328, 701.4318385580001, 751.6192246969999, 711.890002752, 705.3683688959999, 711.953870328, 714.5713897849998, 714.603360015, 707.064650037, 711.953870328, 752.9460783349999, 717.1519168650001, 702.6600599039999], \"power_mean\": 717.2527528978948, \"energy_millijoules\": 3586.263764489474, \"energy_joules\": 3.586263764489474}}, \"940800\": {\"active\": {\"elapsed_sec\": 34.159301029, \"elapsed_ns\": 34159301029, \"power_samples\": [204.69787381200013, 207.44913262800003, 202.16328199200018, 206.20247319400016, 206.12875224800007, 203.40999020200002, 216.58402268400016, 199.4858635720002, 204.77147611300018, 192.98882393400004, 218.09129392400007, 216.65869317900012, 208.62140641200017, 213.75743947900014, 213.86899361400003, 195.52057193600012, 197.100430598, 183.59741129999998, 202.19987000400022, 200.69622136500016, 195.52057193600012, 208.695364648, 200.69622136500016, 196.77233172, 212.69773046400007, 221.8691602560001, 211.26602031900018, 220.6239848150002, 214.12979684900017, 226.0564653240001, 224.58494753000014, 214.7787542740001, 212.623415904, 215.37574402400014, 216.77079489900018, 214.12979684900017, 229.9844441590002, 218.1287846240001, 212.84655062399997, 214.31597553400002, 220.92428496200023, 206.4238255460001, 209.06553607600006, 227.57050180499994, 213.06949430400005, 197.20985935, 206.3868703160001, 198.45776509799998, 207.04273014900002, 205.250174883, 215.22644867400015, 217.03223760900016, 214.4277210140001, 209.21345254800008, 205.02917877100026, 203.96158696199996, 211.71157727900004, 211.7485798690002, 210.31212403100017, 211.71157727900004, 197.13696930800006, 222.24508075200004, 209.10242013200013, 202.49351709000018, 223.56587654200007, 211.19182440400016, 218.35315204400013, 209.8674723160001, 218.31585360400004, 228.89135707000003, 214.390408739, 228.85339018000002, 224.8866723320001, 227.57050180499994, 230.212212335, 224.84888406200014, 228.81542329000013, 230.17418597000005, 216.99499833900018, 227.49468697500015, 236.78249539800004, 238.141674598, 241.91615642400006, 230.17418597000005, 232.93001787800006, 240.82169004000014, 227.64612223799998, 223.75413355500007, 227.5325943900001, 255.321454389, 230.28807005800013, 232.891872563, 250.11567189400012, 242.30098570799998, 243.42942633100006, 240.82169004000014, 249.88255661400024, 263.8649938220001, 243.46784977700008, 257.4969878160001, 239.50077560500006, 239.50077560500006, 251.3976672540001, 252.71858168900008, 252.71858168900008, 248.7903669220001, 260.727189306, 250.0380333290001, 252.64070583400007, 259.24901526200017, 251.4366458039999, 261.96931360100007, 258.00657029600006, 255.28229741400014, 263.7464756940001, 252.83549556900016, 254.8523739090001, 238.1798611700001, 243.506471282, 250.11567189400012, 255.28229741400014, 247.391992126, 258.045846416, 255.39956753400008, 250.07675281900015, 261.96931360100007, 259.32748473100014, 260.8451724900002, 265.97602093800015, 262.087474905, 272.66487824700005, 260.82735743700005, 273.94618567, 268.2212630360001, 265.8176915250002], \"power_mean\": 227.68677103437787, \"energy_millijoules\": 7777.620952084311, \"energy_joules\": 7.777620952084312, \"coremark_score\": 7321.501786, \"coremarks_per_mhz\": 7.782208531037415, \"ulpmark_cm_score\": 32.14350526210755}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [630.6056708799999, 645.2643249500001, 649.116456435, 651.78833573, 646.50301513, 651.7004723459999, 641.24207624, 647.8243452799999, 639.89203215, 653.0510217960001, 642.3614605299999, 649.1747445840001, 645.235284575, 633.366417706, 642.4769979150001, 638.6280406, 635.9237094699998, 634.687925976, 629.3127264899999], \"power_mean\": 642.5344767780526, \"energy_millijoules\": 3212.672383890263, \"energy_joules\": 3.212672383890263}}, \"1152000\": {\"active\": {\"elapsed_sec\": 29.083134728, \"elapsed_ns\": 29083134728, \"power_samples\": [343.65544702400007, 338.41156933800016, 351.5396265390001, 345.018987582, 345.2600247600002, 342.42083690699997, 346.03742920800005, 343.6123028840001, 343.5262358560001, 341.01433002399995, 343.6123028840001, 333.0013130340002, 355.4617733140002, 347.44838335200006, 361.84886454900027, 355.5054531190001, 364.6212129590001, 365.9415338640001, 361.936593774, 362.77335317400014, 363.2568552040001, 353.22709638599997, 353.923679502, 360.65592132300003, 345.9941661180002, 336.74883828600014, 340.58474004999994, 345.86459871, 344.67402333300015, 364.44505379400005, 356.3457172799999, 356.3457172799999, 362.817390024, 376.022722584, 364.092961599, 374.654155584, 357.27204833200017, 365.23639970400006, 354.5462894010001, 362.6414684540001, 355.8654824160001, 355.90922169600003, 355.9527366720001, 343.98409483499995, 346.5403827360001, 338.7502884899999, 352.92220146399984, 339.81183112400015, 332.1070324770001, 322.906282356, 328.187617734, 344.02729845, 345.34655093999993, 332.1070324770001, 325.4643716040001, 328.0178775290001, 317.62927239600003, 321.5870298660001, 324.27195438399997, 313.6253545980002, 321.629005452, 315.02812154000003, 313.7088098800001, 308.3485825380002, 293.86975132200007, 295.229795416, 292.546173414, 289.907668434, 293.86975132200007, 295.189003812, 291.22692092399996, 300.50704205600005, 292.137975129, 300.58931011000004, 299.10558098700005, 300.58931011000004, 297.909539556, 284.707176592, 288.66961580400005, 282.14904056800003, 283.3070805660001, 287.35024466899995, 295.107000072, 284.707176592, 279.4697732280001, 264.8683247880002, 259.8227189040001, 267.943405945, 258.424581535, 264.9870210360001, 254.42245040400007, 259.7441307900001, 250.61969537400012, 257.02648004000014, 258.38524594, 250.58071682399998, 250.58071682399998, 250.54173827399995, 258.4637154090001, 254.22706713900016, 253.1809551240001, 256.98740533599994, 266.3856925440001, 256.909054512, 247.82067530799998, 245.104413507, 263.58858681800007, 258.22830700200007, 248.98921415400002, 242.54271618799999, 259.626147606, 242.46567123700004, 234.6214513120001, 250.5029596139999, 234.54511862000004], \"power_mean\": 311.87832312641746, \"energy_millijoules\": 9070.399290228317, \"energy_joules\": 9.070399290228318, \"coremark_score\": 8599.635375, \"coremarks_per_mhz\": 7.464961263020833, \"ulpmark_cm_score\": 27.56218243548869}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [717.1198018900001, 710.2486361779999, 704.291898252, 714.25053392, 710.2486361779999, 719.4412758799998, 711.538484808, 710.2804287040001, 723.443397697, 715.5724576000001, 720.7630214399999, 714.3146391749999, 727.4415427719999, 725.043562419, 730.155135547, 724.797813752, 734.0221717640001, 772.376186714, 743.3458574080001], \"power_mean\": 722.562920110421, \"energy_millijoules\": 3612.8146005521053, \"energy_joules\": 3.612814600552105}}, \"1478400\": {\"active\": {\"elapsed_sec\": 21.725665877, \"elapsed_ns\": 21725665877, \"power_samples\": [345.2600247600002, 345.087416124, 347.72953287400014, 333.51146161600013, 330.830448132, 355.8217431360001, 334.66006373799996, 338.57864596700006, 328.0178775290001, 337.42671058200006, 339.9834906000001, 332.14970062199995, 339.81183112400015, 325.422218314, 331.08544463400005, 326.82593519400007, 337.2553064330001, 332.14970062199995, 322.77974474000007, 333.2982617480002, 343.897909162, 338.49293487399996, 325.4643716040001, 327.9331163740002, 329.209463624, 325.422218314, 333.3409893680001, 348.96154570400006, 335.9362915380001, 335.8079715540001, 337.2982124780001, 342.66490182000007, 337.2553064330001, 347.81607487100007, 338.49293487399996, 351.68622162400004, 338.49293487399996, 325.37984773900007, 355.64723462400013, 334.5744895480001, 345.04415303400015, 345.30328785000006, 350.49760584599994, 357.1408766760002, 353.09645909000005, 362.3338879940002, 355.8654824160001, 357.1846754310002, 352.87880482800006, 363.78496572899996, 347.81607487100007, 361.190557074, 367.7425447740002, 354.6334250120001, 351.947138808, 354.5462894010001, 342.57883479200007, 355.8654824160001, 346.7132294400001, 358.5477266759999, 351.9904760800001, 346.7565522, 352.0773740120002, 345.2600247600002, 348.1624653320001, 354.6334250120001, 350.80144489200006, 337.51230264100013, 342.7509688480002, 348.0325411000001, 342.8370358760002, 350.6711644200001, 344.19966979599997, 342.79411298800017, 348.2058475670001, 357.35942123300015, 345.69199007400016, 359.9982818430001, 344.3965378560001, 350.8882241790001, 351.947138808, 362.6855053040001, 353.53176761399993, 358.678851538, 356.17098446400007, 353.31411335200005], \"power_mean\": 344.85488666787217, \"energy_millijoules\": 7492.202043796893, \"energy_joules\": 7.492202043796893, \"coremark_score\": 11513.839635, \"coremarks_per_mhz\": 7.788040878652597, \"ulpmark_cm_score\": 33.36802698840529}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [631.6474027859999, 631.7041477719999, 632.9964386570001, 621.1291204959999, 625.1801375760001, 615.8459373359999, 617.111294013, 621.1291204959999, 623.494734876, 621.2408540239999, 626.4166341339999, 627.793818586, 621.1291204959999, 629.086551999, 633.081807193, 629.0582257140001, 639.6907102350001, 650.1746713179999, 643.5956403600001], \"power_mean\": 628.500335161421, \"energy_millijoules\": 3142.501675807105, \"energy_joules\": 3.142501675807105}}, \"1728000\": {\"active\": {\"elapsed_sec\": 18.591893014, \"elapsed_ns\": 18591893014, \"power_samples\": [466.88853839699993, 474.7599958640002, 470.1630746520003, 473.3428643190001, 466.59660964500006, 470.89531747800027, 472.06832208599974, 478.5703628040002, 471.9216452300001, 467.9156245400003, 471.8726692250001, 473.3428643190001, 483.801964228, 481.2129549120001, 482.482889858, 473.2938286440002, 469.2346394350003, 477.48836563400016, 467.96442212, 478.078637794, 474.6620573340002, 471.677016364, 480.917105184, 491.4220344659999, 459.9972105310002, 481.16381548799984, 470.6025708600001, 482.482889858, 477.25122926400024, 477.1038393440002, 469.1857823800002, 462.58668083600026, 477.20226754399994, 482.3347868740001, 470.40615182399995, 495.7320739080002, 471.18826095, 467.76948204400026, 483.801964228, 473.14697308400025, 479.7417501840001, 483.801964228, 466.59660964500006, 486.1428382800001, 482.3347868740001, 488.73484844100005, 479.84041628400007, 474.31889482400004, 488.98308701200006, 495.58218855600023, 482.3839854680001, 477.4393447440001, 498.1701903740001, 505.331337644, 491.6209978520002, 486.2914756239999, 486.4894890720001, 497.05120744800035, 498.22009939600014, 490.401660912, 484.97257937400025, 491.52151615900004, 494.308896357, 495.53239787400014, 484.8734370840001, 483.60417145400027, 494.209177374, 491.57138487400005, 494.0835916890002, 484.77454900500004, 488.6356040380002, 479.5940040240001, 481.06503004800004], \"power_mean\": 480.55826432554807, \"energy_millijoules\": 8934.487837334122, \"energy_joules\": 8.934487837334121, \"coremark_score\": 13456.052532, \"coremarks_per_mhz\": 7.7870674375, \"ulpmark_cm_score\": 27.98145842846602}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [664.2932891769999, 671.6212846699999, 674.082158618, 679.40097302, 655.6093783189999, 663.65909793, 667.532907963, 676.8196875, 660.927445188, 657.07798856, 671.651360296, 668.0769718290001, 668.9485126650001, 679.6452040400001, 661.0165565799999, 676.94125, 667.712911947, 669.008581656, 683.578962725], \"power_mean\": 669.347606457, \"energy_millijoules\": 3346.738032285, \"energy_joules\": 3.3467380322849998}}, \"1900800\": {\"active\": {\"elapsed_sec\": 16.894164942, \"elapsed_ns\": 16894164942, \"power_samples\": [596.8164080060002, 590.3821018740001, 580.8777275010001, 581.0109169579999, 587.5280919289997, 589.8548612640001, 591.3206384140002, 579.3441588000002, 599.2895236020003, 599.3987396310002, 604.402616172, 609.7898391329999, 599.2895236020003, 597.971161712, 609.734897751, 611.2187096679999, 604.6222801500002, 607.2040174399998, 610.997856936, 604.5672936600002, 619.1731537280001, 621.6034090650002, 609.72859162, 605.8306095849999, 632.0455267530002, 616.3856735110002, 613.634224476, 618.9112814700001, 620.396281336, 624.3556895039998, 599.1803075730003, 632.2139470970002, 621.714643226, 613.9106712899999, 634.625709149, 629.4049564439998, 630.3350293260002, 631.9028492880001, 626.992413284, 619.284269244, 622.8143349690002, 619.188916317, 620.396281336, 617.5930976999999, 622.870154694, 616.108632194, 617.5375160700002, 617.5930976999999, 624.2442176640001, 608.3063242860004, 613.6896274860002, 617.5375160700002, 617.4822194739999, 617.4822194739999, 610.8799469260001, 620.0072342080003, 616.8719616800003, 617.5375160700002, 637.2661609240002, 617.3713412480002, 626.4892914440001, 623.9653947840003, 639.5633118779998, 631.9333426540003, 630.5032715500002, 633.1390455600002], \"power_mean\": 614.1760996292728, \"energy_millijoules\": 10375.99233057116, \"energy_joules\": 10.37599233057116, \"coremark_score\": 14808.671958, \"coremarks_per_mhz\": 7.790757553661617, \"ulpmark_cm_score\": 24.09408103198149}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [705.898027098, 715.38125634, 733.626518772, 708.4491355880001, 728.337817101, 713.769497315, 709.833858429, 709.802065903, 713.8657375949999, 724.3420956519999, 725.7283024859998, 716.4759066299999, 709.8658148339999, 721.732354326, 714.5442148000001, 756.13212576, 713.9298428499999, 712.476043539, 717.73259747], \"power_mean\": 718.5222743414737, \"energy_millijoules\": 3592.6113717073686, \"energy_joules\": 3.5926113717073687}}, \"2092800\": {\"active\": {\"elapsed_sec\": 15.351022599, \"elapsed_ns\": 15351022599, \"power_samples\": [728.85614271, 735.386600124, 728.7351738240001, 739.2162486990002, 728.795813754, 729.6888339519998, 745.3774902870001, 728.492925078, 725.9756558170001, 732.5047326480004, 723.2810232720002, 720.7071943969999, 727.2365091280002, 726.4505165579998, 720.466372, 738.1183559540003, 742.8049522710002, 749.2092165020002, 732.140446296, 745.3160767919998, 750.525856972, 746.6942494020001, 746.0193077159998, 751.2880472579999, 742.376833449, 735.6078248790001, 747.6424449489999, 743.5708429200002, 735.7295060240002, 740.6936482060001, 738.606343109, 734.170037624, 726.9193966380002, 726.389936103, 718.5484954920001, 719.5639835829999, 711.8429069760001, 707.8900958400003, 717.1677318359999, 714.2957190100002, 706.395479507, 723.6927097920003, 722.3765445120001, 719.6239573250001, 732.793053489, 711.783288448, 722.1355566780002, 713.2190575710002, 709.2660678150002, 714.5352823260004, 702.74445336, 705.2577652800002, 692.0874818880001, 695.7448415740001, 699.929703254, 703.8227678909999, 703.6443669870001, 694.601811632, 693.4036471680002, 678.74248389], \"power_mean\": 724.1683968072667, \"energy_millijoules\": 11116.725424869952, \"energy_joules\": 11.116725424869951, \"coremark_score\": 16299.387143, \"coremarks_per_mhz\": 7.7883157219992345, \"ulpmark_cm_score\": 22.488636756351713}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [751.8307565, 753.0834745, 741.19085993, 758.4378786999998, 772.9683518999999, 761.0789957, 757.14691431, 752.4741276499999, 754.573464165, 762.7587817499999, 758.4378786999998, 749.15156817, 759.7584371999999, 745.290588591, 750.5058683, 754.40391405, 754.4718735, 782.2559696159999, 743.969911446], \"power_mean\": 755.9889270883158, \"energy_millijoules\": 3779.944635441579, \"energy_joules\": 3.779944635441579}}, \"2208000\": {\"active\": {\"elapsed_sec\": 14.564354317, \"elapsed_ns\": 14564354317, \"power_samples\": [710.467182338, 710.7060337840002, 695.922173174, 694.6609637120001, 714.3554558780003, 706.3357917620002, 701.0677652840001, 691.9109879659999, 691.9109879659999, 698.495240004, 697.238219809, 692.1465150180001, 692.3823448040001, 702.3284984720002, 697.843819344, 711.783288448, 709.0274544370001, 706.514548906, 688.0215784570001, 694.719812448, 694.601811632, 697.238219809, 684.0107484630001, 687.9041708660003, 698.495240004, 678.6840459000001, 697.119981314, 694.4838108159998, 689.3376250920002, 718.2479961180001, 673.4785340299999, 682.81169362, 680.2961767320002, 682.6947609980001, 693.108790221, 687.9041708660003, 701.008315634, 739.1900741840003, 708.9676477420002, 703.5851036730002, 725.966804925, 714.2356742200001, 711.6637440800001, 715.5516022099999, 688.8672180240002, 716.747511252, 707.5325317080002, 701.0677652840001, 735.2424686390003, 695.863265074, 698.613597144, 733.8659751240001, 710.467182338, 696.942471594, 699.6924471190001, 702.3284984720002, 705.1388145259999], \"power_mean\": 701.0665816045264, \"energy_millijoules\": 10210.582094296316, \"energy_joules\": 10.210582094296317, \"coremark_score\": 17178.588607, \"coremarks_per_mhz\": 7.7801578836050735, \"ulpmark_cm_score\": 24.484402328017254}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [685.3013770799998, 681.30733995, 681.3993024299999, 673.506605596, 665.4933782399999, 669.4868799000001, 673.264275673, 669.637426352, 651.8478381599999, 662.943510072, 660.3038180319999, 647.184032128, 658.979644648, 661.593849917, 658.89071196, 649.707116674, 658.9204069500001, 652.28804568, 645.660606135], \"power_mean\": 663.5640087145789, \"energy_millijoules\": 3317.8200435728945, \"energy_joules\": 3.3178200435728944}}}}, \"7\": {\"freqs\": {\"806400\": {\"active\": {\"elapsed_sec\": 39.847680401, \"elapsed_ns\": 39847680401, \"power_samples\": [210.33790380899995, 216.13561580400017, 261.06368004499984, 203.00554887900012, 212.10283190400003, 267.348347362, 212.214399264, 224.05688068000006, 217.38031644399996, 217.5298947240001, 221.45557043999986, 206.93187585299995, 233.45025857400015, 233.45025857400015, 228.28505504200007, 241.50191614300002, 278.3469511740001, 242.04162691800013, 240.05322242400007, 238.61836353700005, 239.9762177040002, 241.1846643780001, 242.46567123700004, 246.69478722999997, 229.5289078070001, 234.73604846400008, 246.617386344, 276.987055164, 248.01457377500003, 240.13002969600007, 275.587374632, 241.22322640800007, 243.20581949200005, 238.69505216400012, 247.39401896900017, 245.37500068500003, 237.375384264, 249.37760656399996, 275.667387264, 241.33871474399996, 242.73542759500003, 275.667387264, 245.2977184440001, 242.69700414900012, 248.01457377500003, 229.49107644900016, 243.9780505440001, 229.41502371900015, 243.900886948, 242.58811399600006, 239.93791279200002, 235.940941092, 280.9100383890001, 233.6026858900001, 237.29881428199997, 248.05343318000007, 249.0279336440002, 242.65838264399997, 232.13053119900007, 237.52872106600012, 232.01629087100002, 233.37384899400013, 250.61969537400012, 278.2664949540001, 246.617386344, 242.65838264399997, 273.0285443550001, 237.375384264, 242.23433832500007, 246.617386344, 230.84869435200005, 243.93936956400012, 253.29804712400005, 245.33645889900015, 292.8726062490001, 236.13216770099996, 241.37727677400017, 302.078052384, 242.61976113900005, 246.617386344, 240.05322242400007, 243.93936956400012, 247.8981948390001, 248.05675303400017, 247.93705424400002, 250.30846664399996, 250.65847403400005, 247.93705424400002, 298.0736010840001, 258.4637154090001, 257.22265922400015, 266.18763644800003, 255.89860487400017, 263.7860493840001, 259.8227189040001, 267.62600059600004, 269.1839515920001, 262.58039412799997, 274.746522088, 302.1604394720001, 262.719589174, 271.708383564, 271.58879613199997, 273.028051464, 286.233384024, 272.9880612540002, 287.553051924, 276.90692388699995, 280.7892035330001, 276.786623975, 303.2738556360001, 260.98477095500004, 270.30485122100004, 307.02506430000005, 270.38438888400015, 260.433621311, 269.02490939400013, 268.269918318, 267.7848051990002, 279.5100610080001, 266.26681817600013, 320.22564489600006, 272.94827612200004, 261.06368004499984, 321.71317299300006, 271.668452829, 276.8265866170001, 276.90692388699995, 274.3877690490002, 275.54726547199994, 283.3473392520001, 275.54726547199994, 282.70112508600005, 284.7880201280002, 289.5006578189999, 329.676629824, 291.4712323740001, 295.43438423400005, 291.4712323740001, 288.79151996400003, 294.0740433750001, 286.152421454, 287.47197070899995, 295.27079728599995, 297.99157032000005, 297.99157032000005, 332.2772674350001, 291.512055624, 297.99157032000005, 318.10857509899995, 300.58931011000004, 288.4665117840001, 299.3110601000001, 300.712817934, 296.795054004, 300.63054988, 292.75016772899994], \"power_mean\": 261.0440011600128, \"energy_millijoules\": 10401.997928822462, \"energy_joules\": 10.401997928822462, \"coremark_score\": 6275.730495, \"coremarks_per_mhz\": 7.782403887648809, \"ulpmark_cm_score\": 24.033844431682247}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [696.0195317309999, 653.788480776, 653.817786804, 693.5044114440001, 647.300371136, 652.69885578, 655.3736998999999, 644.771532125, 651.319831316, 656.8906430310001, 636.8155251400001, 658.653608886, 660.571152208, 654.02368431, 702.8764664300002, 653.9942272200001, 704.2603425999998, 669.818143984, 668.4676518990001], \"power_mean\": 663.945576143158, \"energy_millijoules\": 3319.72788071579, \"energy_joules\": 3.31972788071579}}, \"1094400\": {\"active\": {\"elapsed_sec\": 29.352493374, \"elapsed_ns\": 29352493374, \"power_samples\": [363.60557882399996, 368.88895268800013, 359.6915335650001, 403.1990913840001, 366.3791364840001, 378.1259650720001, 375.53268622200017, 362.2898511440003, 376.80700965200026, 368.80051120400003, 368.8448456240001, 362.24604012400016, 354.32833837400005, 355.69074960000023, 391.0527893120001, 361.4547318040002, 364.707435864, 405.91901955800006, 352.8351844979999, 371.39373138400003, 375.17631694800025, 375.08728185000007, 368.40218349200006, 380.2265877420002, 364.5312655440001, 395.7355305680002, 360.48804669900005, 357.8034862500001, 391.78204797800015, 373.5419047680001, 360.312588249, 356.35407134900004, 356.13552679200006, 356.26669844800017, 361.0593034740001, 349.54236444000003, 378.50574015300003, 345.54573660000017, 342.90599847299995, 375.78116864000015, 340.39961375099995, 342.992184146, 337.8068054560001, 333.76307069000006, 362.7286891439999, 344.3532747659999, 340.48556213400013, 335.1665913600002, 333.89121255400005, 332.44524316000013, 369.14450357700014, 342.992184146, 327.33935249900003, 336.44163179500003, 328.74229742399996, 319.3845077440001, 335.038271376, 322.062770474, 323.3007519040001, 316.70669836800016, 318.06650209399993, 316.4130345660002, 300.8000994560001, 306.195808584, 322.4844180780001, 296.92453776000013, 307.4351548620001, 311.4721525140001, 308.836141214, 298.2424842400002, 292.9706983200002, 295.77041551799994, 302.24179163400015, 297.0474784680001, 293.17499037300024, 302.28315054899997, 293.21572280700013, 286.53880721400003, 283.85759208000013, 293.17499037300024, 279.9839137050002, 272.22968281, 270.71195814600003, 261.0026702320001, 262.91705174000003, 264.1563505470002, 274.7066186160001, 253.67987351400006, 262.83810730200014, 270.67202741100004, 286.335999959, 269.5487322550001, 282.57993399, 265.4745937920002, 274.58649682400005, 264.0770842170001, 257.4036715540001, 266.7530849220001, 259.1150218260002, 257.52147661800007, 254.68510713400008, 261.5155419480002, 240.53049414600014, 241.81029400600005, 240.45337008600006, 258.76107227399996, 260.0004306400001, 239.16924772799996, 240.41500581000014, 241.887338957, 218.0292621220001, 237.73575432600012, 251.08218775900002, 228.54217238700016, 237.77419721100011, 233.9340646280001], \"power_mean\": 316.65455266510355, \"energy_millijoules\": 9294.600658949386, \"energy_joules\": 9.294600658949387, \"coremark_score\": 8520.790729, \"coremarks_per_mhz\": 7.785810242141812, \"ulpmark_cm_score\": 26.897336332495936}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [746.4769474400001, 788.5797180300001, 739.9370706, 743.769232694, 737.328989472, 741.324227067, 758.403720355, 746.376251824, 759.72421938, 745.5708593200001, 745.089553599, 751.7630349500001, 796.3974348129999, 750.404638324, 759.6900015600002, 755.6224105599999, 755.69048896, 770.119427844, 762.159548982], \"power_mean\": 755.4961987249474, \"energy_millijoules\": 3777.4809936247366, \"energy_joules\": 3.7774809936247364}}, \"1401600\": {\"active\": {\"elapsed_sec\": 22.923183429, \"elapsed_ns\": 22923183429, \"power_samples\": [358.19731066399993, 366.0703097940001, 367.34475317400006, 362.07011855400003, 366.0703097940001, 360.7514971840001, 370.03078785000014, 368.31374200799996, 379.2661384260001, 383.4061111960001, 397.782248964, 385.72896011000023, 384.41042010000024, 393.68998828200006, 392.4165615029999, 389.865261304, 387.137603412, 388.4562620669999, 395.053878813, 381.948273644, 406.8385695160001, 392.3259832420001, 391.011550637, 393.46289628600005, 404.01363790899995, 400.2873089840001, 408.2491123049999, 423.9882358100002, 414.75413265800023, 414.8467290509999, 416.2118643960001, 429.4545234640001, 414.800549873, 410.84042814099996, 431.9037989520001, 416.16538770599993, 421.30444100500006, 426.91583582400006, 417.3446765130001, 430.63206793200004, 416.16538770599993, 427.9011665669999, 417.391212678, 427.9011665669999, 433.1280807610002, 437.087667549, 438.548310434, 431.9037989520001, 447.639361162, 441.0902948040001, 452.9173693150002, 456.9207069979999, 443.63637062199984, 455.3131499670002, 448.79449116700005, 455.4576882150001, 421.64258102400015, 439.6769624540001, 432.9865723050001, 439.62941462900005, 433.08083050599987, 452.9173693150002, 448.90981818199987, 435.62738090400023, 462.0052121310001, 450.1844785549998, 450.0886768019999, 459.2718445710001, 459.416917763, 460.58996886600005, 442.170930354, 452.84039184000005, 451.406860572, 446.8264523680001, 458.002101336, 453.8027102960001, 442.26601945899995, 446.034358149, 448.6704883990002, 441.9807521440001, 449.89707329600026, 440.7101688240001, 455.1688592160002, 458.88506553000013, 447.01758051600007, 456.24544654800013, 456.19737296000005, 453.36962991200005, 467.52789964700025, 463.9127702610002], \"power_mean\": 423.9346605571667, \"energy_millijoules\": 9717.931985862784, \"energy_joules\": 9.717931985862784, \"coremark_score\": 10911.789097, \"coremarks_per_mhz\": 7.78523765482306, \"ulpmark_cm_score\": 25.725637961213238}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [635.1237094199998, 644.307779675, 644.307779675, 654.7255464059999, 669.4567087199998, 652.3174431, 665.613194672, 667.022948046, 663.0626981160001, 655.108504916, 663.152165748, 647.358690176, 649.999450936, 664.4724271779999, 663.815127332, 669.6674428079999, 664.56207293, 665.8825124800001, 675.0692564240001], \"power_mean\": 658.6855504609473, \"energy_millijoules\": 3293.4277523047367, \"energy_joules\": 3.2934277523047366}}, \"1766400\": {\"active\": {\"elapsed_sec\": 18.196137597, \"elapsed_ns\": 18196137597, \"power_samples\": [517.3466713080003, 517.3466713080003, 505.48827337, 509.59427527900004, 500.46860183, 488.61184888800005, 502.60293194400003, 491.1957951679998, 491.2457233580002, 504.22189713599994, 480.50835247199996, 496.2173069409997, 480.360249488, 489.7794357150002, 493.63419228600026, 489.58021659200006, 486.9969233170001, 471.23835373400004, 484.5080820120003, 479.2410455520002, 473.969691849, 463.42698444300015, 473.920537224, 460.5511668340001, 460.74490672800005, 467.43018553700006, 474.0677490239999, 464.84528707200013, 462.1102253280002, 455.66682887800005, 466.06481991600015, 460.9388956450001, 479.388970416, 475.18827514399993, 472.5549942040001, 477.9690492540002, 466.1133672520001, 492.462685263, 475.4828026040001, 475.237236864, 490.9466663019999, 471.28713794399994, 485.874276401, 480.55780466700014, 483.1913228970003, 488.363313552, 488.16433202400015, 492.2132596319999, 459.6219584100003, 473.82248004899986, 479.388970416, 469.96612125600006, 463.621198917, 472.60383758399996, 492.3132349619999, 476.7507781190001, 493.8338683200001, 496.167140656, 476.5049156140002, 481.8745637820001, 497.8347273600001, 509.59427527900004, 480.7059076510001, 482.12161432000005, 479.43810984000004, 478.1661284640003, 472.94700009400015, 478.36320767400014, 480.952661424, 493.98375367200026, 484.8328229740001, 498.1855349760002], \"power_mean\": 482.3960337834584, \"energy_millijoules\": 8777.74460697087, \"energy_joules\": 8.77774460697087, \"coremark_score\": 13749.106308, \"coremarks_per_mhz\": 7.7836879008152176, \"ulpmark_cm_score\": 28.48112028703385}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [737.587153938, 737.653514615, 734.817300921, 728.515712023, 733.7257672499999, 736.4009198720001, 721.688952887, 716.6036152400001, 712.678884005, 711.29155825, 716.6036152400001, 711.163421319, 691.46828316, 696.869152088, 696.837731348, 701.7705177939999, 691.561671768, 703.405412152, 708.749471086], \"power_mean\": 715.2311923661052, \"energy_millijoules\": 3576.1559618305264, \"energy_joules\": 3.5761559618305263}}, \"1996800\": {\"active\": {\"elapsed_sec\": 16.0932614, \"elapsed_ns\": 16093261400, \"power_samples\": [632.2400462160002, 633.5006282559999, 631.147477179, 645.4746533319998, 642.7798619230001, 657.2173808320002, 637.3990453530001, 634.761091346, 643.7145376479999, 638.7724569279998, 655.2132775680003, 641.2930788000002, 653.2094996470001, 655.7860635510002, 645.1907825279999, 666.2133814980001, 653.2094996470001, 658.366413024, 653.0952974160001, 660.884897814, 662.4892095039999, 655.7860635510002, 667.5300219680001, 649.254727355, 663.6332115839999, 655.2112877040003, 675.3759220769999, 665.3472189780001, 658.366413024, 666.0976954079998, 662.3165119439999, 667.356611344, 670.1052814379999, 668.7887004429998, 672.9125665320001, 686.0300566080001, 692.55914146, 692.55914146, 691.1245536799998, 700.226044999, 694.896965344, 677.9507055520002, 682.7806569990001, 691.2425009900002, 691.1835273349999, 701.3644037940002, 705.674551598, 702.74445336, 713.3987058990002, 723.5720972300002, 713.1590722560003, 713.2190575710002, 702.74445336, 708.0690311040001, 705.198442796, 698.7319542839999, 696.1587165239997, 704.1269686520001, 706.5739305600001, 689.2999995229999, 689.2200988560002, 700.949170854, 700.8897212040002], \"power_mean\": 674.2172847176508, \"energy_millijoules\": 10850.35500335938, \"energy_joules\": 10.85035500335938, \"coremark_score\": 15547.263682, \"coremarks_per_mhz\": 7.7860895843349365, \"ulpmark_cm_score\": 23.040720780342898}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [680.1713002449999, 682.7498550999999, 686.7446652689999, 684.0740284839999, 686.826627908, 706.6197420120001, 700.0152933640001, 682.811229575, 682.87260405, 697.276816048, 694.730868856, 694.605822218, 699.952375337, 705.231997317, 697.4021767439999, 704.3754637889999, 698.726588196, 695.299670079, 692.121843504], \"power_mean\": 693.2952088471052, \"energy_millijoules\": 3466.476044235526, \"energy_joules\": 3.466476044235526}}, \"2188800\": {\"active\": {\"elapsed_sec\": 14.794324525, \"elapsed_ns\": 14794324525, \"power_samples\": [794.5982694990001, 743.293210749, 761.6505838579998, 761.8989323500001, 745.7737310819999, 753.943218986, 748.1258712299999, 756.5112468839999, 736.9593472840003, 745.738410215, 760.1453497000001, 756.5729375260001, 749.809829901, 748.7411224819999, 755.1964467839999, 743.2321121949998, 746.0454413380002, 735.4004563740001, 730.319326425, 731.9423221140001, 727.6287895300001, 720.7487924970002, 725.2410821409998, 717.3461891580001, 700.1184001040002, 709.39142981, 718.4807465109999, 710.5869228320001, 719.7956652559998, 722.4859640560002, 715.7864340719999, 721.1105840010001, 711.7221932490003, 730.1980016040001, 709.1525783639999, 714.3516744989998, 714.7717879, 709.0331526409999, 714.951792468, 702.5742670440001, 714.6515793699999, 702.6930991529999, 706.637855388, 718.2402332569999, 690.9092411600001, 694.858487224, 694.799275474, 705.3826243880002, 694.6811556239999, 687.9264038880002, 702.5742670440001, 692.047244604, 680.3851039960001, 684.6231140400004, 710.5869228320001, 679.3620141000002, 685.468933284, 680.2097328840001], \"power_mean\": 721.5071017659138, \"energy_millijoules\": 10674.21021061713, \"energy_joules\": 10.67421021061713, \"coremark_score\": 16911.317053, \"coremarks_per_mhz\": 7.726296168220028, \"ulpmark_cm_score\": 23.420936543983075}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [754.60315472, 759.744642129, 756.8012560469999, 751.7630200499999, 754.60315472, 732.044245548, 750.6140259850001, 733.395406131, 737.4211669489999, 730.8247374310001, 736.0695394239999, 741.3764310440001, 738.7062632039999, 737.221914325, 734.784324219, 738.7062632039999, 725.5139993079999, 729.4734074759999, 730.8247374310001], \"power_mean\": 740.7627204918421, \"energy_millijoules\": 3703.8136024592104, \"energy_joules\": 3.7038136024592103}}, \"2304000\": {\"active\": {\"elapsed_sec\": 13.946032599, \"elapsed_ns\": 13946032599, \"power_samples\": [756.0621465839998, 750.610491411, 763.835635069, 754.561163687, 780.6942488460003, 766.7843404180002, 786.0229790279999, 827.614137232, 772.7982865590001, 791.4743323090003, 825.3743695080001, 783.3247988160002, 772.7982865590001, 780.5684127920002, 774.2388039839999, 792.4134438280001, 779.3159535659998, 780.6942488460003, 793.8556234500003, 776.6229437720002, 788.2575131760001, 830.8352322019999, 803.5498188370001, 788.5902111330003, 789.7788191600001, 812.2780979940002, 813.722176714, 804.2541628760001, 824.0591539979999, 820.1740602810004, 817.4143502520002, 826.8199101480001, 857.0898530159999, 822.6792876000001, 817.349604207, 868.4677076209999, 824.0591539979999, 822.3713555780001, 831.7588926479999, 828.5426215900001, 823.8643567100002, 838.3383911959999, 837.8138160980001, 890.630373249, 846.1011553289999, 840.968465976, 882.8727146840002, 850.3105067040002, 842.152087885, 838.14163342, 839.7191862909998, 839.7191862909998, 835.5076038660001, 850.178039304, 844.9145315940001], \"power_mean\": 812.7808850525455, \"energy_millijoules\": 11335.068718786872, \"energy_joules\": 11.335068718786872, \"coremark_score\": 17941.725276, \"coremarks_per_mhz\": 7.787207151041667, \"ulpmark_cm_score\": 22.055446349932325}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [649.093469972, 646.0780638719999, 637.2796253999999, 631.516960998, 645.166949987, 682.0434964250001, 654.371953094, 654.4308348569999, 697.9725112979999, 659.680190876, 655.7200691439999, 670.414228876, 654.54874975, 655.8970703680001, 670.082311787, 654.637148078, 694.1997015579999, 653.4943630620002, 666.633042156], \"power_mean\": 659.6453021872632, \"energy_millijoules\": 3298.2265109363157, \"energy_joules\": 3.2982265109363156}}, \"2400000\": {\"active\": {\"elapsed_sec\": 13.391606818, \"elapsed_ns\": 13391606818, \"power_samples\": [926.3508919500003, 930.2922645150003, 975.366556646, 928.560007292, 926.2117598760002, 963.687653544, 940.600368945, 926.629156098, 921.9189616240002, 928.6298711119999, 934.0279983429999, 928.699376656, 933.7479501800002, 930.9772870980001, 929.5944658890002, 919.5696444039999, 926.9680712389999, 919.2922113440001, 912.445139804, 899.5104627720001, 913.8963411449998, 906.0813485760001, 896.95191552, 883.8095518239999, 875.6212505760001, 883.8095518239999, 885.5296304039999, 908.432449774, 881.1154272840002, 898.3337857749999, 886.436302104, 876.1945825869999, 867.973655676, 870.667188128, 879.9370884790002, 886.6398319439999, 877.5757382520004, 870.9358247200001, 878.6869499259998, 877.3059129060001, 867.0620534500002, 881.3856189040001, 856.2780400370001, 847.9305090839999, 845.8981472240001, 834.0675544200002, 855.163858046, 845.8981472240001, 849.7108669620001, 856.4774707809999, 848.3268923040001, 862.849519455, 870.7344334880003], \"power_mean\": 894.9207082666793, \"energy_millijoules\": 11984.42625839345, \"energy_joules\": 11.98442625839345, \"coremark_score\": 18686.000448, \"coremarks_per_mhz\": 7.78583352, \"ulpmark_cm_score\": 20.86040621468293}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [791.57792961, 762.793001604, 762.68998926, 832.5535165859999, 753.52218375, 760.3773825760001, 757.449038405, 758.7678751800001, 749.5947985160001, 758.836135344, 758.699615016, 787.62230958, 753.42041883, 752.0677804499999, 790.1882804, 754.67123312, 769.9479119640001, 758.562919212, 762.381128619], \"power_mean\": 767.1433393695789, \"energy_millijoules\": 3835.7166968478946, \"energy_joules\": 3.8357166968478946}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}\n"
  },
  {
    "path": "results/sm7250ab/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 cpu7 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nBaseline power usage: 614 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 614 864 1075 1363 1516 1651 1804\n\n 300:  1109     3.7 C/MHz    128 mW   28.9 J    8.6 I/mJ   225.4 s\n 576:  2134     3.7 C/MHz    140 mW   16.5 J   15.2 I/mJ   117.2 s\n 614:  2276     3.7 C/MHz    148 mW   16.2 J   15.4 I/mJ   109.8 s\n 864:  3203     3.7 C/MHz    190 mW   14.8 J   16.9 I/mJ    78.1 s\n1075:  3346     3.1 C/MHz    182 mW   13.6 J   18.4 I/mJ    74.7 s\n1363:  5057     3.7 C/MHz    255 mW   12.6 J   19.9 I/mJ    49.4 s\n1517:  5627     3.7 C/MHz    204 mW    9.0 J   27.6 I/mJ    44.4 s\n1651:  6126     3.7 C/MHz    252 mW   10.3 J   24.3 I/mJ    40.8 s\n1805:  6696     3.7 C/MHz    254 mW    9.5 J   26.4 I/mJ    37.3 s\n\n\n===== CPU 6 =====\nFrequencies: 652 940 1152 1478 1728 1900 2092 2208\n\n 653:  2540     3.9 C/MHz    161 mW   15.8 J   15.8 I/mJ    98.4 s\n 941:  7322     7.8 C/MHz    228 mW    7.8 J   32.1 I/mJ    34.2 s\n1152:  8600     7.5 C/MHz    312 mW    9.1 J   27.6 I/mJ    29.1 s\n1478: 11514     7.8 C/MHz    345 mW    7.5 J   33.4 I/mJ    21.7 s\n1728: 13456     7.8 C/MHz    481 mW    8.9 J   28.0 I/mJ    18.6 s\n1901: 14809     7.8 C/MHz    614 mW   10.4 J   24.1 I/mJ    16.9 s\n2093: 16299     7.8 C/MHz    724 mW   11.1 J   22.5 I/mJ    15.4 s\n2208: 17179     7.8 C/MHz    701 mW   10.2 J   24.5 I/mJ    14.6 s\n\n\n===== CPU 7 =====\nFrequencies: 806 1094 1401 1766 1996 2188 2304 2400\n\n 806:  6276     7.8 C/MHz    261 mW   10.4 J   24.0 I/mJ    39.8 s\n1094:  8521     7.8 C/MHz    317 mW    9.3 J   26.9 I/mJ    29.4 s\n1402: 10912     7.8 C/MHz    424 mW    9.7 J   25.7 I/mJ    22.9 s\n1766: 13749     7.8 C/MHz    482 mW    8.8 J   28.5 I/mJ    18.2 s\n1997: 15547     7.8 C/MHz    674 mW   10.9 J   23.0 I/mJ    16.1 s\n2189: 16911     7.7 C/MHz    722 mW   10.7 J   23.4 I/mJ    14.8 s\n2304: 17942     7.8 C/MHz    813 mW   11.3 J   22.1 I/mJ    13.9 s\n2400: 18686     7.8 C/MHz    895 mW   12.0 J   20.9 I/mJ    13.4 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm7250ab/new/cmdline.txt",
    "content": "printk.devkmsg=on console=tty0 isolcpus=1-7 quiet nohz_full=1-7 rcu_nocbs=0-7 rootwait ro init=/init androidboot.bootdevice=1d84000.ufshc androidboot.baseband=msm androidboot.keymaster=1 msm_drm.dsi_display0=qcom,mdss_dsi_s6e3hc2_dvt_dsc_1080p_cmd: androidboot.force_normal_boot=1 androidboot.serialno=REDACTED androidboot.slot_suffix=_a androidboot.slot_retry_count=0 androidboot.slot_successful=yes androidboot.hardware.platform=sm7250 androidboot.hardware=redfin androidboot.revision=MP1.0 androidboot.bootloader=r3-0.3-6776358 androidboot.hardware.sku=GD1YQ androidboot.hardware.radio.subtype=0 androidboot.hardware.dsds=0 androidboot.secure_boot=PRODUCTION androidboot.cdt_hwid=0x050B2800 androidboot.hardware.majorid=0x0B androidboot.dtb_idx=2 androidboot.dtbo_idx=0 androidboot.bootreason=reboot,bootloader androidboot.hardware.ddr=8GB,Micron,LPDDR4X androidboot.ddr_info=Micron androidboot.ddr_size=8GB androidboot.hardware.ufs=128GB,Micron androidboot.cid=00000000 androidboot.boottime=0BLE:78,1BLL:32,1BLE:1007,2BLL:190,2BLE:19199,SW:791,KL:0,KD:1240,ODT:5,AVB:60,AFTL:0 androidboot.ramdump=disabled androidboot.blockchain=disabled usbcfg.suzyq=enabled androidboot.dp_info_a=enabled(not-in-list) androidboot.dp_info_b=enabled(not-in-list) androidboot.hardware.color=BLK androidboot.theme=1 androidboot.hardware.coo=CN root=PARTUUID=00000000-0000-0000-0000-000000000000 androidboot.verifiedbootstate=orange androidboot.aftlstate=8 printk.devkmsg=on msm_rtb.filter=0x237 ehci-hcd.park=3 service_locator.enable=1 androidboot.memcg=1 cgroup.memory=nokmem lpm_levels.sleep_disabled=1 usbcore.autosuspend=7 androidboot.usbcontroller=a600000.dwc3 swiotlb=2048 androidboot.boot_devices=soc/1d84000.ufshc loop.max_part=7 snd_soc_cs35l41_i2c.async_probe=1 i2c_qcom_geni.async_probe=1 st21nfc.async_probe=1 spmi_pmic_arb.async_probe=1 ufs_qcom.async_probe=1 buildvariant=user console=null\n"
  },
  {
    "path": "results/sm7250ab/new/cpufreq_stats/0/time_in_state",
    "content": "300000 80854\n576000 12499\n614400 11792\n864000 8614\n1075200 8287\n1363200 5746\n1516800 5244\n1651200 4891\n1804800 4926\n"
  },
  {
    "path": "results/sm7250ab/new/cpufreq_stats/0/total_trans",
    "content": "12\n"
  },
  {
    "path": "results/sm7250ab/new/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    576000    614400    864000   1075200   1363200   1516800   1651200   1804800 \n   300000:         0         1         0         0         0         0         0         0         1 \n   576000:         0         0         1         0         0         0         0         0         0 \n   614400:         0         0         0         1         0         0         0         0         0 \n   864000:         0         0         0         0         1         0         0         0         0 \n  1075200:         0         0         0         0         0         1         0         0         0 \n  1363200:         0         0         0         0         0         0         1         0         0 \n  1516800:         0         0         0         0         0         0         0         1         1 \n  1651200:         0         0         0         0         0         0         0         0         1 \n  1804800:         2         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm7250ab/new/cpufreq_stats/6/time_in_state",
    "content": "652800 29424\n940800 4242\n1152000 3738\n1478400 3005\n1728000 2677\n1900800 2500\n2092800 2348\n2208000 94920\n"
  },
  {
    "path": "results/sm7250ab/new/cpufreq_stats/6/total_trans",
    "content": "10\n"
  },
  {
    "path": "results/sm7250ab/new/cpufreq_stats/6/trans_table",
    "content": "   From  :    To\n         :    652800    940800   1152000   1478400   1728000   1900800   2092800   2208000 \n   652800:         0         1         0         0         0         0         0         1 \n   940800:         0         0         1         0         0         0         0         0 \n  1152000:         0         0         0         1         0         0         0         0 \n  1478400:         0         0         0         0         1         0         0         0 \n  1728000:         0         0         0         0         0         1         0         0 \n  1900800:         0         0         0         0         0         0         1         0 \n  2092800:         0         0         0         0         0         0         0         1 \n  2208000:         2         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm7250ab/new/cpufreq_stats/7/time_in_state",
    "content": "806400 4975\n1094400 3762\n1401600 3106\n1766400 2652\n1996800 2424\n2188800 2298\n2304000 2223\n2400000 121414\n"
  },
  {
    "path": "results/sm7250ab/new/cpufreq_stats/7/total_trans",
    "content": "10\n"
  },
  {
    "path": "results/sm7250ab/new/cpufreq_stats/7/trans_table",
    "content": "   From  :    To\n         :    806400   1094400   1401600   1766400   1996800   2188800   2304000   2400000 \n   806400:         0         1         0         0         0         0         0         1 \n  1094400:         0         0         1         0         0         0         0         0 \n  1401600:         0         0         0         1         0         0         0         0 \n  1766400:         0         0         0         0         1         0         0         0 \n  1996800:         0         0         0         0         0         1         0         0 \n  2188800:         0         0         0         0         0         0         1         0 \n  2304000:         0         0         0         0         0         0         0         1 \n  2400000:         2         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm7250ab/new/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x51df805e]\n[    0.000000] Linux version 4.19.110-proton-37691-gd8f6ea99d2c5 (kdrag0n@pinwheel) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project dcc06597b1d61d35c7246d3ab2d7a807134aaa45)) #190 SMP PREEMPT Sat Dec 5 17:02:54 PST 2020\n[    0.000000] Machine model: Google Inc. MSM sm7250 v2 Redfin PVT\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fec00000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe800000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node sdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fc800000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fc400000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fb800000, size 12 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fa400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f0400000, size 160 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000808ff000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node sec_apps_region@808ff000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086000000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_camera_region@86000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086500000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_npu_region@86500000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086a00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region@86a00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086f00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_cvp_region@86f00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000087400000, size 30 MiB\n[    0.000000] OF: reserved mem: initialized node pil_cdsp_region@87400000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000089200000, size 40 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region@89200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008ba00000, size 2 MiB\n[    0.000000] OF: reserved mem: initialized node pil_wlan_fw_region@8ba00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008bc00000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node pil_ipa_fw_region@8bc00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008bc10000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node pil_ipa_gsi_region@8bc10000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008bc15400, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node pil_gpu_region@8bc15400, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008bc17400, size 3 MiB\n[    0.000000] OF: reserved mem: initialized node reserved_pil_mem_region@8bc17400, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008c000000, size 280 MiB\n[    0.000000] OF: reserved mem: initialized node modem_wlan_region@8c000000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000009f400000, size 12 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_sec_regions@9f400000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000a0000000, size 35 MiB\n[    0.000000] OF: reserved mem: initialized node cont_splash_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000b7e01000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node debug_info@B7E01000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000b7e41000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node ramoops_region@B7E41000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000b8241000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node alt_ramoops_region@B8241000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000b8641000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node ramoops_meta_region@0xB8641000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000c8000000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node kregistry_mem@C8000000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 1952046\n[    0.000000]   Normal zone: 30501 pages used for memmap\n[    0.000000]   Normal zone: 0 pages reserved\n[    0.000000]   Normal zone: 1952046 pages, LIFO batch:63\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.1\n[    0.000000] random: fast init done\n[    0.000000] percpu: Embedded 22 pages/cpu s60120 r0 d29992 u90112\n[    0.000000] pcpu-alloc: s60120 r0 d29992 u90112 alloc=22*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1921545\n[    0.000000] Kernel command line: printk.devkmsg=on console=tty0 isolcpus=1-7 quiet nohz_full=1-7 rcu_nocbs=0-7 rootwait ro init=/init androidboot.bootdevice=1d84000.ufshc androidboot.baseband=msm androidboot.keymaster=1 msm_drm.dsi_display0=qcom,mdss_dsi_s6e3hc2_dvt_dsc_1080p_cmd: androidboot.force_normal_boot=1 androidboot.serialno=REDACTED androidboot.slot_suffix=_a androidboot.slot_retry_count=0 androidboot.slot_successful=yes androidboot.hardware.platform=sm7250 androidboot.hardware=redfin androidboot.revision=MP1.0 androidboot.bootloader=r3-0.3-6776358 androidboot.hardware.sku=GD1YQ androidboot.hardware.radio.subtype=0 androidboot.hardware.dsds=0 androidboot.secure_boot=PRODUCTION androidboot.cdt_hwid=0x050B2800 androidboot.hardware.majorid=0x0B androidboot.dtb_idx=2 androidboot.dtbo_idx=0 androidboot.bootreason=reboot,bootloader androidboot.hardware.ddr=8GB,Micron,LPDDR4X androidboot.ddr_info=Micron androidboot.ddr_size=8GB androidboot.hardware.ufs=128GB,Micron androidboot.c\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 131072 bytes\n[    0.000000] log_buf_len: 1048576 bytes\n[    0.000000] early log buf free: 122596(93%)\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] mem auto-init: stack:all, heap alloc:on, heap free:off\n[    0.000000] Memory: 7332572K/7808184K available (22910K kernel code, 3048K rwdata, 10816K rodata, 1280K init, 9300K bss, 221660K reserved, 253952K cma-reserved)\n[    0.000000] random: random: get_random_u64 called from __kmem_cache_create+0x78/0x5ac with crng_init=1\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n\n[    0.000000] **********************************************************\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **                                                      **\n[    0.000000] ** trace_printk() being used. Allocating extra memory.  **\n[    0.000000] **                                                      **\n[    0.000000] ** This means that this is a DEBUG kernel and it is     **\n[    0.000000] ** unsafe for production use.                           **\n[    0.000000] **                                                      **\n[    0.000000] ** If you see this message and you are not debugging    **\n[    0.000000] ** the kernel, report this immediately to your vendor!  **\n[    0.000000] **                                                      **\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **********************************************************\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] rcu: \tRCU restricting CPUs from NR_CPUS=32 to nr_cpu_ids=8.\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: Distributor has no Range Selector support\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000013] clocksource: Switched to clocksource arch_sys_counter\n[    0.001302] Console: colour dummy device 80x25\n[    0.001315] console [tty0] enabled\n[    0.001336] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001342] pid_max: default: 32768 minimum: 301\n[    0.001449] Security Framework initialized\n[    0.001456] SELinux:  Initializing.\n[    0.001567] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.001581] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.015256] ASID allocator initialised with 65536 entries\n[    0.017338] rcu: Hierarchical SRCU implementation.\n[    0.023216] shmbridge is enabled\n[    0.025671] smp: Bringing up secondary CPUs ...\n[    0.088312] CPU features: enabling workaround for Mismatched cache type\n[    0.088325] CPU features: enabling workaround for ARM erratum 1188873\n[    0.088329] CPU features: detected: Hardware dirty bit management\n[    0.088333] CPU features: detected: Speculative Store Bypassing Safe (SSBS)\n[    0.088349] CPU features: Unsupported CPU feature variation detected.\n[    0.088397] arch_timer: Enabling local workaround for ARM erratum 1188873\n[    0.088418] arch_timer: CPU6: Trapping CNTVCT access\n[    0.099483] arch_timer: Enabling local workaround for ARM erratum 1188873\n[    0.099497] arch_timer: CPU7: Trapping CNTVCT access\n[    0.099584] smp: Brought up 1 node, 8 CPUs\n[    0.099589] SMP: Total of 8 processors activated.\n[    0.099592] CPU features: detected: GIC system register CPU interface\n[    0.099595] CPU features: detected: Privileged Access Never\n[    0.099597] CPU features: detected: LSE atomic instructions\n[    0.099599] CPU features: detected: User Access Override\n[    0.099601] CPU features: detected: 32-bit EL0 Support\n[    0.099603] CPU features: detected: RAS Extension Support\n[    0.109467] CPU: All CPU(s) started at EL1\n[    0.109498] alternatives: patching kernel code\n[    0.112775] scm_enable_mem_protection: SCM call failed\n[    0.113174] devtmpfs: initialized\n[    0.166181] Registered cp15_barrier emulation handler\n[    0.166193] Registered setend emulation handler\n[    0.166523] PM: Init ksuspend_mon thread\n[    0.166558] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.166576] futex hash table entries: 2048 (order: 5, 131072 bytes)\n[    0.171944] pinctrl core: initialized pinctrl subsystem\n[    0.172503] NET: Registered protocol family 16\n[    0.173480] schedtune: configured to support 8 boost groups\n[    0.173566] audit: initializing netlink subsys (disabled)\n[    0.174086] cpuidle: using governor menu\n[    0.174101] cpuidle: using governor qcom\n[    0.174173] NET: Registered protocol family 42\n[    0.174554] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.174653] audit: type=2000 audit(0.169:1): state=initialized audit_enabled=0 res=1\n[    0.175407] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.176861] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.178241] exit: IPA_USB init success!\n[    0.180241] platform soc:ramoops: assigned reserved memory node ramoops_region@B7E41000\n[    0.180475] console [pstore-1] enabled\n[    0.180594] pstore: Registered ramoops as persistent store backend\n[    0.180637] ramoops: attached 0x400000@0xb7e41000, ecc: 0/0\n[    0.183086] platform 82200000.qseecom: assigned reserved memory node qseecom_region\n[    0.186820] platform 4080000.qcom,mss: assigned reserved memory node modem_wlan_region@8c000000\n[    0.186949] platform 3000000.qcom,lpass: assigned reserved memory node pil_adsp_region@89200000\n[    0.187076] platform 8300000.qcom,turing: assigned reserved memory node pil_cdsp_region@87400000\n[    0.187268] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.187403] platform aae0000.qcom,venus: assigned reserved memory node pil_video_region@86a00000\n[    0.189803] platform soc:qcom,ipa_fws: assigned reserved memory node pil_ipa_fw_region@8bc00000\n[    0.190661] platform 9800000.qcom,npu: assigned reserved memory node pil_npu_region@86500000\n[    0.206344] platform b7e01000.bootloader_log: assigned reserved memory node debug_info@B7E01000\n[    0.206412] platform soc:access_ramoops@0: assigned reserved memory node ramoops_meta_region@0xB8641000\n[    0.206477] platform soc:access_ramoops@1: assigned reserved memory node alt_ramoops_region@B8241000\n[    0.206546] platform soc:access_kregistry@2: assigned reserved memory node kregistry_mem@C8000000\n[    0.252088] msm-dcc 1022000.dcc_v2: DCC list passed 6\n[    0.252343] msm-dcc 1022000.dcc_v2: All values written to enable.\n[    0.252912] set_restart_msg: set restart msg = `Unknown'\n[    0.253704] Unable to find DT property: qcom,msm-imem-download_mode\n[    0.254349] Unable to find DT property: qcom,msm-imem-emergency_download_mode\n[    0.254937] msm_watchdog 17c10000.qcom,wdt: wdog absent resource not present\n[    0.255129] msm_watchdog 17c10000.qcom,wdt: MSM Watchdog Initialized\n[    0.255351] sps:sps is ready.\n[    0.272951] spmi spmi-0: PMIC arbiter version v5 (0x50010000)\n[    0.319020] spmi spmi-0: failed to xlate sid = 0x0, periph = 0xca, irq = 0 rc = -19\n[    0.596034] oledb: Bringing 0uV into 4925000-4925000uV\n[    0.596187] ab: Bringing 0uV into 4600000-4600000uV\n[    0.596340] ibb: Bringing 0uV into 800000-800000uV\n[    0.649917] cryptd: max_cpu_qlen set to 1000\n[    0.654263] gpu_cx_gdsc: supplied by pm8150_s1_level\n[    0.654847] gpu_gx_gdsc: supplied by pm8150a_s6_level\n[    0.656046] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.661080] gcc-lito 100000.qcom,gcc: Registered GCC clocks\n[    0.661899] gpu_cc-lito 3d90000.qcom,gpucc: Registered GPU CC clocks\n[    0.662818] Minidump: Enabled with max number of regions 200\n[    0.663230] KPI: Bootloader start count = 3900102897\n[    0.663232] KPI: Bootloader end count = 2953714507\n[    0.663235] KPI: Bootloader display count = 320669167\n[    0.663237] KPI: Bootloader load kernel count = 4289126327\n[    0.663241] KPI: Kernel MPM timestamp = 774740\n[    0.663243] KPI: Kernel MPM Clock frequency = 32768\n[    0.663259] socinfo_print: v0.15, id=400, ver=2.0, raw_id=286, raw_ver=1, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65566, pmic_die_revision=196608 foundry_id=3 serial_number=959790545 num_pmics=4 chip_family=0x65 raw_device_family=0x6 raw_device_number=0xd nproduct_id=0x413 num_clusters=0x1 ncluster_array_offset=0xbc num_defective_parts=0xd ndefective_parts_array_offset=0xc0 nmodem_supported=0xff g_hw_plat=5 g_hw_plat_ver=720936 g_hw_plat_subtype=0\n[    0.663357] msm_bus_fabric_rpmh_init_driver\n[    0.663478] msm_bus: Probe started\n[    0.664033] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.664049] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.664094] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.664137] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.666235] msm_bus: DT Parsing complete\n[    0.668597] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.668642] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.668763] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.668886] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.682908] arm-smmu 3da0000.kgsl-smmu: \tnon-coherent table walk\n[    0.682911] arm-smmu 3da0000.kgsl-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.682916] arm-smmu 3da0000.kgsl-smmu: \tstream matching with 5 register groups\n[    0.689913] register_client_adhoc:find path.src 161 dest 627\n[    0.690124] register_client_adhoc:Client handle 1 apps_smmu\n[    0.690216] arm-smmu 15000000.apps-smmu: \tnon-coherent table walk\n[    0.690219] arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.690224] arm-smmu 15000000.apps-smmu: \tstream matching with 81 register groups\n[    0.693559] register_client_adhoc:find path.src 161 dest 627\n[    0.693731] register_client_adhoc:Client handle 2 apps_smmu\n[    0.696579] register_client_adhoc:find path.src 161 dest 627\n[    0.696749] register_client_adhoc:Client handle 3 apps_smmu\n[    0.699627] register_client_adhoc:find path.src 22 dest 773\n[    0.699719] register_client_adhoc:Client handle 4 mnoc_hf_0_tbu\n[    0.702588] register_client_adhoc:find path.src 22 dest 773\n[    0.702668] register_client_adhoc:Client handle 5 mnoc_hf_1_tbu\n[    0.705532] register_client_adhoc:find path.src 137 dest 772\n[    0.705618] register_client_adhoc:Client handle 6 mnoc_sf_0_tbu\n[    0.708421] register_client_adhoc:find path.src 161 dest 627\n[    0.708595] register_client_adhoc:Client handle 7 apps_smmu\n[    0.711393] register_client_adhoc:find path.src 154 dest 821\n[    0.711454] register_client_adhoc:Client handle 8 apps_smmu\n[    0.714221] register_client_adhoc:find path.src 154 dest 821\n[    0.714295] register_client_adhoc:Client handle 9 apps_smmu\n[    0.715141] SCSI subsystem initialized\n[    0.715231] usbcore: registered new interface driver usbfs\n[    0.715251] usbcore: registered new interface driver hub\n[    0.715336] usbcore: registered new device driver usb\n[    0.715573] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.716180] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.716205] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.716362] input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800/input/input0\n[    0.716710] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm7250b@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from CBL (External Power Supply) and 'cold' boot\n[    0.716734] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm7250b@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from SOFT (Software)\n[    0.716912] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150l@4:qcom,power-on@800: PMIC@SID4 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'cold' boot\n[    0.716936] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150l@4:qcom,power-on@800: PMIC@SID4: Power-off reason: Triggered from SOFT (Software)\n[    0.717085] media: Linux media interface: v0.10\n[    0.717106] videodev: Linux video capture interface: v2.00\n[    0.717130] pps_core: LinuxPPS API ver. 1 registered\n[    0.717133] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>\n[    0.717141] PTP clock support registered\n[    0.722175] missing polling-delay-passive property\n[    0.722179] failed to build thermal zone bcl-virtual-sensor: -22\n[    0.730122] EDAC MC: Ver: 3.0.0\n[    0.734625] energy_model: pd0: hertz/watts ratio non-monotonically decreasing: em_cap_state 2 >= em_cap_state1\n[    0.734764] energy_model: Created perf domain 0-5\n[    0.735208] energy_model: Created perf domain 6\n[    0.735601] energy_model: Created perf domain 7\n[    0.736030] cpufreq: driver qcom-cpufreq-hw up and running\n[    0.750778] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node sdsp_region\n[    0.752928] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.755078] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.757231] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.761672] ION heap system created\n[    0.761753] ION heap secure_heap created\n[    0.761766] ION heap adsp created at 0x00000000fe800000 with size 400000\n[    0.761769] ION heap qsecom created at 0x00000000fa400000 with size 1400000\n[    0.761772] ION heap qsecom_ta created at 0x00000000fec00000 with size 1000000\n[    0.761775] ION heap secure_display created at 0x00000000f0400000 with size a000000\n[    0.769837] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x9f400000, size 0xc00000\n[    0.769840] ION heap secure_carveout created\n[    0.772973] PMIC@SID2: PM7250B v1.0 options: 0, 0, 0, 0\n[    0.773094] PMIC@SID4: (null) v2.0 options: 0, 0, 0, 0\n[    0.773722] register_client_adhoc:find path.src 90 dest 770\n[    0.774054] register_client_adhoc:find path.src 129 dest 512\n[    0.774131] register_client_adhoc:find path.src 90 dest 585\n[    0.774277] register_client_adhoc:find path.src 1 dest 676\n[    0.774515] register_client_adhoc:find path.src 143 dest 777\n[    0.774584] register_client_adhoc:Client handle 10 ipa\n[    0.781007] ipa ipa3_smp2p_probe:8124 fail to get smp2p clk resp bit -517\n[    0.788952] iommu: Adding device soc:ipa_smmu_ap to group 0\n[    0.794532] iommu: Adding device soc:ipa_smmu_wlan to group 1\n[    0.800501] iommu: Adding device soc:ipa_smmu_uc to group 2\n[    0.801705] ipa ipa3_smp2p_probe:8124 fail to get smp2p clk resp bit -517\n[    0.803924] msm_adreno_tz: MSM Adreno TZ governor registered.\n[    0.803928] devfreq_vbif_init: VBIF GPUBW governor registered.\n[    0.807963] devfreq-qcom-fw 18321000.qcom,devfreq-l3:qcom,cpu0-cpu-l3-lat: Devfreq QCOM Firmware dev registered.\n[    0.811003] devfreq-qcom-fw 18321000.qcom,devfreq-l3:qcom,cpu6-cpu-l3-lat: Devfreq QCOM Firmware dev registered.\n[    0.813907] devfreq-qcom-fw 18321000.qcom,devfreq-l3:qcom,cpu7-cpu-l3-lat: Devfreq QCOM Firmware dev registered.\n[    0.816741] devfreq-qcom-fw 18321000.qcom,devfreq-l3:qcom,cdsp-cdsp-l3-lat: Devfreq QCOM Firmware dev registered.\n[    0.816759] devfreq-qcom-fw 18321000.qcom,devfreq-l3: Devfreq QCOM Firmware parent dev inited.\n[    0.818326] SDAM base=0xb100 size=128 registered successfully\n[    0.818536] Advanced Linux Sound Architecture Driver Initialized.\n[    0.818911] codec_detect codec_detect: : create codec_success\n[    0.819839] Bluetooth: Core ver 2.22\n[    0.819865] NET: Registered protocol family 31\n[    0.819867] Bluetooth: HCI device and connection manager initialized\n[    0.819876] Bluetooth: HCI socket layer initialized\n[    0.819882] Bluetooth: L2CAP socket layer initialized\n[    0.819927] Bluetooth: SCO socket layer initialized\n[    0.819941] NetLabel: Initializing\n[    0.819943] NetLabel:  domain hash size = 128\n[    0.819945] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\n[    0.820004] NetLabel:  unlabeled traffic allowed by default\n[    0.820655] iommu: Adding device 8c0000.qcom,qupv3_0_geni_se to group 3\n[    0.821296] iommu: Adding device 9c0000.qcom,qupv3_1_geni_se to group 4\n[    0.835158] lito-camcc ad00000.qcom,camcc: Registered CAM CC clocks\n[    0.841262] lito-dispcc af00000.qcom,dispcc: Registered Display CC clocks\n[    0.841520] ipa ipa3_smp2p_probe:8124 fail to get smp2p clk resp bit -517\n[    0.842086] clocksource: Switched to clocksource arch_sys_counter\n[    0.887514] VFS: Disk quotas dquot_6.6.0\n[    0.887582] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.891894] simple-framebuffer a0000000.framebuffer: framebuffer at 0xa0000000, 0x2300000 bytes, mapped to 0x(____ptrval____)\n[    0.891899] simple-framebuffer a0000000.framebuffer: format=a8r8g8b8, mode=1080x2340x32, linelength=4320\n[    0.908800] Console: switching to colour frame buffer device 67x73\n[    0.925266] simple-framebuffer a0000000.framebuffer: fb0: simplefb registered!\n[    0.934238] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.934243] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.934470] mdss_pll ae94900.qcom,mdss_dsi0_pll: Failed to create ae94900.qcom,mdss_dsi0_pll debugfs directory\n[    0.934477] mdss_pll ae94900.qcom,mdss_dsi0_pll: Failed to create ae94900.qcom,mdss_dsi0_pll debugfs directory\n[    0.934483] mdss_pll ae94900.qcom,mdss_dsi0_pll: Failed to create ae94900.qcom,mdss_dsi0_pll debugfs directory\n[    0.934490] mdss_pll ae94900.qcom,mdss_dsi0_pll: Failed to create ae94900.qcom,mdss_dsi0_pll debugfs directory\n[    0.934496] mdss_pll ae94900.qcom,mdss_dsi0_pll: Failed to create ae94900.qcom,mdss_dsi0_pll debugfs directory\n[    0.934503] mdss_pll ae94900.qcom,mdss_dsi0_pll: Failed to create ae94900.qcom,mdss_dsi0_pll debugfs directory\n[    0.937095] dsi_pll_clock_register_7nm: Registered DSI PLL ndx=0, clocks successfully\n[    0.937140] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.937144] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.937217] mdss_pll ae96900.qcom,mdss_dsi1_pll: Failed to create ae96900.qcom,mdss_dsi1_pll debugfs directory\n[    0.937223] mdss_pll ae96900.qcom,mdss_dsi1_pll: Failed to create ae96900.qcom,mdss_dsi1_pll debugfs directory\n[    0.937229] mdss_pll ae96900.qcom,mdss_dsi1_pll: Failed to create ae96900.qcom,mdss_dsi1_pll debugfs directory\n[    0.937235] mdss_pll ae96900.qcom,mdss_dsi1_pll: Failed to create ae96900.qcom,mdss_dsi1_pll debugfs directory\n[    0.937241] mdss_pll ae96900.qcom,mdss_dsi1_pll: Failed to create ae96900.qcom,mdss_dsi1_pll debugfs directory\n[    0.937256] mdss_pll ae96900.qcom,mdss_dsi1_pll: Failed to create ae96900.qcom,mdss_dsi1_pll debugfs directory\n[    0.949671] dsi_pll_clock_register_7nm: Registered DSI PLL ndx=1, clocks successfully\n[    0.949711] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.950848] NET: Registered protocol family 2\n[    0.951340] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes)\n[    0.951533] TCP established hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.952091] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)\n[    0.953280] TCP: Hash tables configured (established 65536 bind 65536)\n[    0.953447] UDP hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.953548] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.953829] NET: Registered protocol family 1\n[    0.955333] PCI: CLS 0 bytes, default 64\n[    0.955649] ipa ipa3_smp2p_probe:8124 fail to get smp2p clk resp bit -517\n[    0.955890] Trying to unpack rootfs image as initramfs...\n[    1.605884] Freeing initrd memory: 23664K\n[    1.607437] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    1.613641] Initialise system trusted keyrings\n[    1.613757] workingset: timestamp_bits=61 max_order=21 bucket_order=0\n[    1.617948] fuse init (API version 7.27)\n[    1.622914] Key type asymmetric registered\n[    1.622919] Asymmetric key parser 'x509' registered\n[    1.622933] io scheduler noop registered\n[    1.623025] io scheduler cfq registered (default)\n[    1.623028] io scheduler mq-deadline registered\n[    1.623032] io scheduler kyber registered\n[    1.627076] ufs_qcom_phy_qmp_v4_lito 1d87000.ufsphy_mem: Registered phy\n[    1.628880] spmi spmi-0: failed to xlate sid = 0x0, periph = 0xca, irq = 0 rc = -19\n[    1.638590] iommu: Adding device 800000.qcom,gpi-dma to group 5\n[    1.639749] iommu: Adding device 900000.qcom,gpi-dma to group 6\n[    1.642514] lito-llcc 9200000.cache-controller: Failed to create 9200000.cache-controller debugfs directory\n[    1.643159] llcc_perfmon: Revision 1, has 1 memory controllers connected with LLCC\n[    1.644303] register_client_adhoc:find path.src 129 dest 512\n[    1.644583] register_client_adhoc:Client handle 11 pil-modem\n[    1.644600] register_client_adhoc:find path.src 125 dest 512\n[    1.644965] register_client_adhoc:Client handle 12 scm_pas\n[    1.646510] register_client_adhoc:find path.src 154 dest 821\n[    1.646573] register_client_adhoc:Client handle 13 pil-cdsp\n[    1.647140] minidump-id not found for ipa_fws\n[    1.647180] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    1.647241] subsys-pil-tz soc:qcom,ipa_fws: for md_ipa_fws segments only will be dumped.\n[    1.647478] minidump-id not found for npu\n[    1.647517] subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    1.647573] subsys-pil-tz 9800000.qcom,npu: for md_npu segments only will be dumped.\n[    1.647744] subsys-restart: __get_smem_state(): Could not get smem-states qcom,force-stop\n[    1.648144] minidump-id not found for a620_zap\n[    1.648182] subsys-pil-tz soc:qcom,kgsl-hyp: for a620_zap segments only will be dumped.\n[    1.648237] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a620_zap segments only will be dumped.\n[    1.656364] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    1.656456] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    1.656541] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    1.667099] iommu: Adding device 18800000.qcom,icnss to group 7\n[    1.667266] icnss: Recursive recovery allowed for WLAN\n[    1.667743] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    1.667958] icnss: Platform driver probed successfully\n[    1.668525] modemsmem soc:modemsmem: Get modem_flag node failed\n[    1.669159] register_client_adhoc:find path.src 176 dest 823\n[    1.669325] register_client_adhoc:find path.src 151 dest 512\n[    1.669697] register_client_adhoc:Client handle 14 8c0000.qcom,qupv3_0_geni_se\n[    1.669788] msm_geni_serial 888000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console1\n[    1.669864] 888000.qcom,qup_uart: ttyMSM0 at MMIO 0x888000 (irq = 173, base_baud = 0) is a MSM\n[    1.670385] msm_geni_serial 894000.qcom,qup_uart: Wakeup byte 0xfd\n[    1.670509] msm_geni_serial 894000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    1.670923] 894000.qcom,qup_uart: ttyHS0 at MMIO 0x894000 (irq = 174, base_baud = 0) is a MSM\n[    1.671438] msm_geni_serial_init: Driver initialized\n[    1.671675] register_client_adhoc:find path.src 1 dest 618\n[    1.671927] register_client_adhoc:Client handle 15 msm-rng-noc\n[    1.672650] random: crng init done\n[    1.730398] brd: module loaded\n[    1.738400] loop: module loaded\n[    1.739907] QSEECOM: qseecom_init_control: qseecom.qsee_version = 0x1402000\n[    1.739962] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    1.742244] QSEECOM: qseecom_register_heap_shmbridge: Could not get heap 26 info: No shmbridge created\n[    1.743060] misc access-metadata: registered 'metadata' 10:61, (1000@0x00000000b8641000)\n[    1.743160] misc access-ramoops: registered 'ramoops' 10:60, (400000@0x00000000b8241000)\n[    1.743258] misc access-kregistry: registered 'kregistry' 10:59, (10000@0x00000000c8000000)\n[    1.743394] st21nfc_dev_init: Loading st21nfc driver (version 2.0.15)\n[    1.743966] iommu: Adding device 1de0000.qcedev to group 8\n[    1.744353] register_client_adhoc:find path.src 125 dest 512\n[    1.744860] register_client_adhoc:Client handle 16 qcedev-noc\n[    1.745034] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.745455] qce 1de0000.qcedev: QTI Crypto 5.5.1 device found @0x1de0000\n[    1.745651] sps:BAM 0x0000000001dc4000 is registered.\n[    1.745807] sps:BAM 0x0000000001dc4000 (va:0x000000003ee5eb97) enabled: ver:0x27, number of pipes:16\n[    1.746032] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 9\n[    1.749265] iommu: Adding device 1de0000.qcedev:qcom_cedev_ns_cb to group 9\n[    1.752751] iommu: Adding device 1de0000.qcedev:qcom_cedev_s_cb to group 10\n[    1.755029] iommu: Adding device 1de0000.qcrypto to group 11\n[    1.755191] register_client_adhoc:find path.src 125 dest 512\n[    1.755562] register_client_adhoc:Client handle 17 qcrypto-noc\n[    1.755684] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.755968] qcrypto 1de0000.qcrypto: QTI Crypto 5.5.1 device found @0x1de0000\n[    1.756258] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 9\n[    1.756540] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    1.756666] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    1.756733] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    1.756799] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    1.756869] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    1.756941] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    1.757015] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    1.757082] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    1.757149] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    1.757217] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    1.757287] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    1.757355] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    1.757422] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    1.757504] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    1.757577] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    1.757643] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    1.757713] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    1.757782] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    1.757851] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    1.757928] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    1.759914] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    1.759925] ufshcd-qcom 1d84000.ufshc: no vccq2-voltage-level property.\n[    1.762065] register_client_adhoc:find path.src 123 dest 512\n[    1.762405] register_client_adhoc:find path.src 1 dest 757\n[    1.762649] register_client_adhoc:Client handle 18 ufshc_mem\n[    1.762874] ufshcd-qcom 1d84000.ufshc: ufs_qcom_parse_reg_info: Unable to find qcom,vccq-parent-supply regulator, assuming enabled\n[    1.762912] ufshcd-qcom 1d84000.ufshc: QC ICE 3.1.81 device found @0x000000004b8103b7\n[    1.767065] scsi host0: ufshcd\n[    1.792634] register_client_adhoc:find path.src 177 dest 824\n[    1.792730] register_client_adhoc:find path.src 152 dest 512\n[    1.793031] register_client_adhoc:Client handle 19 9c0000.qcom,qupv3_1_geni_se\n[    1.794053] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    1.796255] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.\n[    1.796258] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    1.796453] libphy: Fixed MDIO Bus: probed\n[    1.796456] tun: Universal TUN/TAP device driver, 1.6\n[    1.796596] PPP generic driver version 2.4.2\n[    1.796671] PPP BSD Compression module registered\n[    1.796675] PPP Deflate Compression module registered\n[    1.796700] PPP MPPE Compression module registered\n[    1.796706] NET: Registered protocol family 24\n[    1.796720] PPTP driver version 0.8.5\n[    1.797108] CLD80211: Initializing\n[    1.797187] usbcore: registered new interface driver rtl8150\n[    1.797200] usbcore: registered new interface driver r8152\n[    1.797214] usbcore: registered new interface driver asix\n[    1.797231] usbcore: registered new interface driver ax88179_178a\n[    1.797246] usbcore: registered new interface driver cdc_ether\n[    1.797259] usbcore: registered new interface driver net1080\n[    1.797272] usbcore: registered new interface driver cdc_subset\n[    1.797286] usbcore: registered new interface driver zaurus\n[    1.797301] usbcore: registered new interface driver cdc_ncm\n[    1.802782] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.806634] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    1.806638] ehci-pci: EHCI PCI platform driver\n[    1.806655] ehci-platform: EHCI generic platform driver\n[    1.807001] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    1.807022] ohci-pci: OHCI PCI platform driver\n[    1.807041] ohci-platform: OHCI generic platform driver\n[    1.808031] usbcore: registered new interface driver usb-storage\n[    1.808047] usbcore: registered new interface driver usb_ehset_test\n[    1.808061] usbcore: registered new interface driver lvs\n[    1.810152] usbcore: registered new interface driver xpad\n[    1.810169] usbcore: registered new interface driver usb_acecad\n[    1.810183] usbcore: registered new interface driver aiptek\n[    1.810196] usbcore: registered new interface driver gtco\n[    1.810210] usbcore: registered new interface driver hanwang\n[    1.810225] usbcore: registered new interface driver kbtab\n[    1.810367] [sec_input] sec_ts_init\n[    1.810646] sec_ts spi0.0: [sec_input] sec_ts_probe\n[    1.810649] sec_ts spi0.0: [sec_input] sec_ts_probe: SPI interface\n[    1.810678] sec_ts spi0.0: [sec_input] sec_ts_probe: Failed to parse dt\n[    1.810686] sec_ts spi0.0: [sec_input] sec_ts_probe: failed(-517)\n[    1.811247] fpc1020 soc:fp_fpc1020: found pin control fpc1020_reset_reset\n[    1.811251] fpc1020 soc:fp_fpc1020: found pin control fpc1020_reset_active\n[    1.811254] fpc1020 soc:fp_fpc1020: found pin control fpc1020_irq_active\n[    1.830041] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.830107] fpc1020 soc:fp_fpc1020: IRQ after reset 1\n[    1.830110] fpc1020 soc:fp_fpc1020: fpc1020_probe: ok\n[    1.830199] fpc1020_init OK\n[    1.830472] keydebug_parse_dt: DT:key_down_delay=7000 dbg_fn_delay=2500 keys_down num_keys=1\n[    1.830475] keydebug_parse_dt: DT:keys_down=116\n[    1.851546] rtc-pm8xxx c440000.qcom,spmi:qcom,pm8150@0:qcom,pm8150_rtc: rtc core: registered pm8xxx_rtc as rtc0\n[    1.851600] rtc-pm8xxx c440000.qcom,spmi:qcom,pm8150@0:qcom,pm8150_rtc: setting system clock to 1970-01-18 02:42:21 UTC (1478541)\n[    1.851826] i2c /dev entries driver\n[    1.852105] i2c_geni 984000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.857299] i2c_geni 98c000.i2c: Multi-EE usecase\n[    1.862156] lito-pinctrl f000000.pinctrl: pin GPIO_44 already requested by 880000.spi; cannot claim for 1-0008\n[    1.862160] lito-pinctrl f000000.pinctrl: pin-44 (1-0008) status -22\n[    1.862165] lito-pinctrl f000000.pinctrl: could not request pin 44 (GPIO_44) from group gpio44  on device f000000.pinctrl\n[    1.862169] i2c_pmic 1-0008: Error applying setting, reverse things back\n[    1.862180] i2c_pmic: probe of 1-0008 failed with error -22\n[    1.871453] drv2624 1-005a: drv2624_i2c_probe enter\n[    1.871561] drv2624 1-005a: Looking up ti,irq-gpio property in node drv2624@5a failed -2\n[    1.875752] drv2624 1-005a: drv2624_i2c_probe, ID status (0x3)\n[    1.876784] drv2624 1-005a: dev_init_platform_data, LRA = 172, drive_time=0x18\n[    1.878826] drv2624 1-005a: drv2624 probe succeeded\n[    1.883607] drv2624 1-005a: Falling back to syfs fallback for: drv2624.bin\n[    1.883857] at24 1-0050: 1024 byte m24c08 EEPROM, writable, 1 bytes/write\n[    1.900330] ldo3: supplied by regulator-dummy\n[    1.901534] ldo4: supplied by regulator-dummy\n[    1.903002] ldo5: supplied by regulator-dummy\n[    1.904482] ldo6: supplied by regulator-dummy\n[    1.905715] ldo7: supplied by regulator-dummy\n[    1.908442] slg51000-regulator 1-0075: No IRQ configured\n[    1.921795] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[2, 2], pwr[FAST MODE, FAST MODE], rate = 2\n[    1.922512] scsi 0:0:0:49488: Well-known LUN    MICRON   MT128GASAO4U21   0302 PQ: 0 ANSI: 6\n[    1.923437] scsi 0:0:0:49476: Well-known LUN    MICRON   MT128GASAO4U21   0302 PQ: 0 ANSI: 6\n[    1.924231] scsi 0:0:0:49456: Well-known LUN    MICRON   MT128GASAO4U21   0302 PQ: 0 ANSI: 6\n[    1.925073] scsi 0:0:0:0: Direct-Access     MICRON   MT128GASAO4U21   0302 PQ: 0 ANSI: 6\n[    1.925760] scsi 0:0:0:1: Direct-Access     MICRON   MT128GASAO4U21   0302 PQ: 0 ANSI: 6\n[    1.926384] scsi 0:0:0:2: Direct-Access     MICRON   MT128GASAO4U21   0302 PQ: 0 ANSI: 6\n[    1.927019] scsi 0:0:0:3: Direct-Access     MICRON   MT128GASAO4U21   0302 PQ: 0 ANSI: 6\n[    1.927572] vd6281 2-0020: probe success, device id 0x70 rc = 0\n[    1.927701] scsi 0:0:0:4: Direct-Access     MICRON   MT128GASAO4U21   0302 PQ: 0 ANSI: 6\n[    1.928319] scsi 0:0:0:5: Direct-Access     MICRON   MT128GASAO4U21   0302 PQ: 0 ANSI: 6\n[    1.928722] sd 0:0:0:0: Power-on or device reset occurred\n[    1.929025] sd 0:0:0:1: Power-on or device reset occurred\n[    1.929174] sd 0:0:0:1: [sdb] physical block alignment offset: 131072\n[    1.929197] sd 0:0:0:0: [sda] physical block alignment offset: 131072\n[    1.930243] sd 0:0:0:0: [sda] 67108864-byte physical blocks\n[    1.930271] sd 0:0:0:1: [sdb] 67108864-byte physical blocks\n[    1.930534] sd 0:0:0:0: [sda] Write Protect is off\n[    1.930540] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.930563] sd 0:0:0:1: [sdb] Write Protect is off\n[    1.930566] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.930710] sd 0:0:0:2: Power-on or device reset occurred\n[    1.930822] sd 0:0:0:0: [sda] Optimal transfer size 131072 bytes not a multiple of physical block size (67108864 bytes)\n[    1.930970] sd 0:0:0:1: [sdb] Optimal transfer size 131072 bytes not a multiple of physical block size (67108864 bytes)\n[    1.932310] sd 0:0:0:2: [sdc] Write Protect is off\n[    1.932314] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.932590] sd 0:0:0:2: [sdc] Optimal transfer size 131072 bytes\n[    1.933036]  sdb: sdb1 sdb2\n[    1.933469]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21\n[    1.934983] sd 0:0:0:3: Power-on or device reset occurred\n[    1.935896] sd 0:0:0:3: [sdd] Write Protect is off\n[    1.935900] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.936137] sd 0:0:0:3: [sdd] Optimal transfer size 131072 bytes\n[    1.936795] sd 0:0:0:4: Power-on or device reset occurred\n[    1.937542] sd 0:0:0:4: [sde] Write Protect is off\n[    1.937546] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    1.937692]  sdc: sdc1 sdc2\n[    1.937920] sd 0:0:0:4: [sde] Optimal transfer size 131072 bytes\n[    1.938056]  sdd: sdd1 sdd2 sdd3\n[    1.939417] sd 0:0:0:5: Power-on or device reset occurred\n[    1.939628] sd 0:0:0:5: [sdf] physical block alignment offset: 131072\n[    1.940314] sd 0:0:0:5: [sdf] Write Protect is off\n[    1.940318] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    1.940750] sd 0:0:0:5: [sdf] Optimal transfer size 131072 bytes\n[    1.940972]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42\n[    1.942913]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5\n[    1.946107] vim2m vim2m.0: Device registered as /dev/video0\n[    1.946541] vicodec vicodec.0: Device registered as /dev/video1\n[    1.946594] vicodec vicodec.0: Device registered as /dev/video2\n[    1.948351] QG-K: qpnp_qg_probe: Failed to get battery type, rc=-517\n[    1.949842] google_bms: ref registered batt_eeprom at 0, dupes=0, refs=0\n[    1.949844] google_bms: init done\n[    1.950458] google_charger: renegotiate on full\n[    1.950465] google_charger: charging profile in the battery\n[    1.950827] logbuffer:  id:pps registered\n[    1.951534] logbuffer:  id:ssoc registered\n[    1.951749] google_battery: battery tz register failed. err:-19\n[    1.952331] lito-pinctrl f000000.pinctrl: pin_config_group_set op failed for group 99\n[    1.952335] p9221 1-003b: Error applying setting, reverse things back\n[    1.952458] p9221 1-003b: enable gpio:1233\n[    1.952465] p9221 1-003b: unable to read idt,gpio_slct from dt: -2\n[    1.952477] p9221 1-003b: ben gpio:1131\n[    1.952485] p9221 1-003b: switch gpio:1224\n[    1.952496] p9221 1-003b: gpio:1234, gpio_irq:302\n[    1.952556] p9221 1-003b: det gpio:1232, det gpio_irq:303\n[    1.952561] p9221 1-003b: No dt fod provided (-22)\n[    1.952565] p9221 1-003b: No dt fod epp provided (-22)\n[    1.952570] p9221 1-003b: dt epp_rp_value: 24\n[    1.952574] p9221 1-003b: dt needs_dcin_reset: 2\n[    1.952577] p9221 1-003b: dt google,alignment_frequencies size = -22\n[    1.952582] p9221 1-003b: google,alignment_hysteresis set to: 5000\n[    1.952587] p9221 1-003b: google,alignment_scalar_low_current set to: 200\n[    1.952590] p9221 1-003b: google,alignment_scalar_high_current set to: 118\n[    1.952594] p9221 1-003b: google,alignment_offset_low_current set to: 125000\n[    1.952597] p9221 1-003b: google,alignment_offset_high_current set to: 139000\n[    1.952831] p9221 1-003b: Could not find DC_ICL votable\n[    1.952835] p9221 1-003b: Could not find DC_SUSPEND votable\n[    1.952973] i2c_geni 98c000.i2c: i2c error :-107\n[    1.952978] p9221 1-003b: i2c read error, reg:0, ret:-107 (-19)\n[    1.953153] p9221 1-003b: Charger rTX address :3b\n[    1.953156] p9221 1-003b: Could not vote DC_ICL - no votable\n[    1.953708] logbuffer:  id:wireless registered\n[    1.953829] logbuffer:  id:rtx registered\n[    1.953832] p9221 1-003b: p9221 Charger Driver Loaded\n[    1.962178] softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)\n[    1.962297] device-mapper: uevent: version 1.0.3\n[    1.963300] device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel@redhat.com\n[    1.964466] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in devicetree\n[    1.964493] bt_dt_parse_vreg_info: qca,bt-vdd-ldo: is not provided in device tree\n[    1.964496] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    1.964499] bt_dt_parse_vreg_info: qca,bt-vdd-aon: is not provided in device tree\n[    1.964502] bt_dt_parse_vreg_info: qca,bt-vdd-dig: is not provided in device tree\n[    1.964504] bt_dt_parse_vreg_info: qca,bt-vdd-rfa1: is not provided in device tree\n[    1.964507] bt_dt_parse_vreg_info: qca,bt-vdd-rfa2: is not provided in device tree\n[    1.964509] bt_dt_parse_vreg_info: qca,bt-vdd-asd: is not provided in device tree\n[    1.964512] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.965292] EDAC DEVICE0: Giving out device to module soc:kryo-erp controller cache: DEV soc:kryo-erp (INTERRUPT)\n[    1.965771] qcom_llcc_edac qcom_llcc_edac: No ECC IRQ; defaulting to polling mode\n[    1.965787] EDAC DEVICE1: Giving out device to module qcom_llcc_edac controller llcc: DEV qcom_llcc_edac (POLLED)\n[    1.967005] usbcore: registered new interface driver usbhid\n[    1.967007] usbhid: USB HID core driver\n[    1.967120] ashmem: initialized\n[    1.967278] bimc-bwmon 90b6300.qcom,cpu-cpu-llcc-bwmon: BW HWmon governor registered.\n[    1.967324] bimc-bwmon 90cd000.qcom,cpu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    1.967766] bimc-bwmon 60400.qcom,npu-npu-llcc-bwmon: BW HWmon governor registered.\n[    1.967820] bimc-bwmon 90ce000.qcom,npu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    1.968085] bimc-bwmon 70300.qcom,npudsp-npu-ddr-bwmon: BW HWmon governor registered.\n[    1.971817] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-cpu-l3-latmon: Memory Latency governor registered.\n[    1.973603] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.975362] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.977138] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-computemon: Compute governor registered.\n[    1.978941] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu6-cpu-l3-latmon: Memory Latency governor registered.\n[    1.980036] google_bms: storage registered batt_eeprom at 0, dupes=0, refs=0\n[    1.980042] at24 1-0050: gbms_storage_register done:0\n[    1.980742] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu7-cpu-l3-latmon: Memory Latency governor registered.\n[    1.982498] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu6-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.984257] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu6-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.986011] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu6-computemon: Compute governor registered.\n[    1.987774] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu7-computemon: Compute governor registered.\n[    1.988480] register_client_adhoc:find path.src 1 dest 627\n[    1.988745] register_client_adhoc:Client handle 20 soc:qcom,snoc_cnoc_keepalive\n[    1.989251] register_client_adhoc:find path.src 1 dest 770\n[    1.989320] register_client_adhoc:Client handle 21 soc:qcom,cpu-cpu-llcc-bw\n[    1.990040] register_client_adhoc:find path.src 129 dest 512\n[    1.990106] register_client_adhoc:Client handle 22 soc:qcom,cpu-llcc-ddr-bw\n[    1.990747] register_client_adhoc:find path.src 154 dest 770\n[    1.990865] register_client_adhoc:Client handle 23 soc:qcom,npu-npu-llcc-bw\n[    1.991438] register_client_adhoc:find path.src 770 dest 512\n[    1.991539] register_client_adhoc:Client handle 24 soc:qcom,npu-llcc-ddr-bw\n[    1.992001] register_client_adhoc:find path.src 154 dest 512\n[    1.992197] register_client_adhoc:Client handle 25 soc:qcom,npudsp-npu-ddr-bw\n[    1.992565] register_client_adhoc:find path.src 1 dest 770\n[    1.992629] register_client_adhoc:Client handle 26 soc:qcom,cpu0-cpu-llcc-lat\n[    1.993055] register_client_adhoc:find path.src 129 dest 512\n[    1.993120] register_client_adhoc:Client handle 27 soc:qcom,cpu0-llcc-ddr-lat\n[    1.993554] register_client_adhoc:find path.src 129 dest 512\n[    1.993619] register_client_adhoc:Client handle 28 soc:qcom,cpu0-cpu-ddr-latfloor\n[    1.993945] register_client_adhoc:find path.src 1 dest 770\n[    1.994010] register_client_adhoc:Client handle 29 soc:qcom,cpu6-cpu-llcc-lat\n[    1.994433] register_client_adhoc:find path.src 129 dest 512\n[    1.994502] register_client_adhoc:Client handle 30 soc:qcom,cpu6-llcc-ddr-lat\n[    1.994926] register_client_adhoc:find path.src 129 dest 512\n[    1.994991] register_client_adhoc:Client handle 31 soc:qcom,cpu6-cpu-ddr-latfloor\n[    1.995421] register_client_adhoc:find path.src 129 dest 512\n[    1.995487] register_client_adhoc:Client handle 32 soc:qcom,cpu7-cpu-ddr-latfloor\n[    1.995996] register_client_adhoc:find path.src 26 dest 512\n[    1.996377] register_client_adhoc:Client handle 33 soc:qcom,gpubw\n[    1.999026] i2c_geni 98c000.i2c: i2c error :-107\n[    1.999032] pac193x: failed reading data from register 0xFD\n[    1.999033] pac193x: cannot read revision\n[    1.999047] pac193x: probe of 1-0010 failed with error -22\n[    1.999178] i2c_geni 98c000.i2c: i2c error :-107\n[    1.999182] pac193x: failed reading data from register 0xFD\n[    1.999184] pac193x: cannot read revision\n[    1.999191] pac193x: probe of 1-0018 failed with error -22\n[    1.999317] i2c_geni 98c000.i2c: i2c error :-107\n[    1.999321] pac193x: failed reading data from register 0xFD\n[    1.999322] pac193x: cannot read revision\n[    1.999329] pac193x: probe of 1-001f failed with error -22\n[    1.999510] qcom-llcc-pmu 90cc000.llcc-pmu: Registered llcc_pmu, type: 8\n[    2.000330] usbcore: registered new interface driver snd-usb-audio\n[    2.000555] iommu: Adding device soc:usb_audio_qmi_dev to group 12\n[    2.011667] rt5514 0-0057: rt5514_qmi initialized\n[    2.011671] rt5514 0-0057: Register rt5514 success\n[    2.011936] rt5514 spi1.0: handshake gpio 1200 property mnh-spi@0\n[    2.012139] rt5514 spi1.0:  rt5514-spi register component success.\n[    2.012650] register_client_adhoc:find path.src 1 dest 590\n[    2.012890] register_client_adhoc:Client handle 34 disp_rsc_reg\n[    2.012914] register_client_adhoc:find path.src 20003 dest 20513\n[    2.013102] register_client_adhoc:find path.src 20004 dest 20513\n[    2.013271] register_client_adhoc:Client handle 35 disp_rsc_mnoc_llcc\n[    2.013298] register_client_adhoc:find path.src 20000 dest 20512\n[    2.013374] register_client_adhoc:Client handle 36 disp_rsc_ebi\n[    2.013977] cs35l41 1-0040: 1-0040 supply VA not found, using dummy regulator\n[    2.014031] cs35l41 1-0040: 1-0040 supply VP not found, using dummy regulator\n[    2.014222] [sde_rsc_hw:rsc_hw_init_v3:537]: sde rsc init successfully done\n[    2.014303] [sde_rsc:sde_rsc_probe:1594]: sde rsc index:0 probed successfully\n[    2.014855] dsi_phy ae94400.qcom,mdss_dsi_phy0: ae94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    2.014920] [drm:dsi_phy_driver_probe] [msm-dsi-info]: DSI_0: Probe successful\n[    2.014982] dsi_phy ae96400.qcom,mdss_dsi_phy1: ae96400.qcom,mdss_dsi_phy1 supply gdsc not found, using dummy regulator\n[    2.015042] [drm:dsi_phy_driver_probe] [msm-dsi-info]: DSI_1: Probe successful\n[    2.017097] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.017103] [drm:dsi_ctrl_get] *ERROR* [msm-dsi-error]: inv: Device with of node not found\n[    2.017109] [drm:dsi_display_init] *ERROR* [msm-dsi-error]: failed to get dsi controller, rc=-517\n[    2.017112] [drm:dsi_display_init] *ERROR* [msm-dsi-error]: [(null)] failed to initialize resources, rc=-517\n[    2.017115] [drm:dsi_display_init] *ERROR* [msm-dsi-error]: device init failed, rc=-517\n[    2.022197] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 13\n[    2.024424] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 14\n[    2.024612] platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node pil_camera_region@86000000\n[    2.028542] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 15\n[    2.030802] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 16\n[    2.034732] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_fd to group 17\n[    2.036922] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 18\n[    2.039114] CAM_INFO: CAM-CPAS: cam_cpas_get_hw_features: 425 feature_bit 0x0 addr 0x780210, bit 29\n[    2.039129] CAM_INFO: CAM-CPAS: cam_cpas_get_hw_features: 436 fuse 00000000e87d74ba, fuse_val 7fef0298, feature_mask ffffffff\n[    2.039132] CAM_INFO: CAM-CPAS: cam_cpas_get_hw_features: 425 feature_bit 0x1 addr 0x780210, bit 18\n[    2.039137] CAM_INFO: CAM-CPAS: cam_cpas_get_hw_features: 436 fuse 00000000cdaa2a88, fuse_val 7fef0298, feature_mask ffffffff\n[    2.041157] register_client_adhoc:find path.src 1 dest 589\n[    2.041433] register_client_adhoc:Client handle 37 cam_ahb\n[    2.041528] register_client_adhoc:find path.src 145 dest 512\n[    2.041750] register_client_adhoc:Client handle 38 cam_hf_3_mnoc\n[    2.041845] register_client_adhoc:find path.src 136 dest 512\n[    2.042052] register_client_adhoc:Client handle 39 cam_hf_1_mnoc\n[    2.042149] register_client_adhoc:find path.src 137 dest 512\n[    2.042370] register_client_adhoc:Client handle 40 cam_sf_0_mnoc\n[    2.042576] register_client_adhoc:find path.src 171 dest 512\n[    2.042797] register_client_adhoc:Client handle 41 cam_hf_4_mnoc\n[    2.053909] CAM_INFO: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 564 No clk data for ife_dsp_clk\n[    2.053913] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 154 Option clk get failed with rc -22\n[    2.056467] CAM_ERR: CAM-ISP: cam_isp_context_debug_register: 5214 failed to create dentry\n[    2.056490] CAM_ERR: CAM-ISP: cam_isp_context_debug_register: 5214 failed to create dentry\n[    2.056512] CAM_ERR: CAM-ISP: cam_isp_context_debug_register: 5214 failed to create dentry\n[    2.056535] CAM_ERR: CAM-ISP: cam_isp_context_debug_register: 5214 failed to create dentry\n[    2.056557] CAM_ERR: CAM-ISP: cam_isp_context_debug_register: 5214 failed to create dentry\n[    2.056580] CAM_ERR: CAM-ISP: cam_isp_context_debug_register: 5214 failed to create dentry\n[    2.056602] CAM_ERR: CAM-ISP: cam_isp_context_debug_register: 5214 failed to create dentry\n[    2.056607] CAM_INFO: CAM-ISP: cam_isp_dev_probe: 189 Camera ISP probe complete\n[    2.057014] CAM_INFO: CAM: cam_res_mgr_probe: 682 Disable shared gpio support.\n[    2.071024] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 457 Device Type :0\n[    2.077149] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 457 Device Type :1\n[    2.086140] CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 162 Camera JPEG probe complete\n[    2.132666] GACT probability NOT on\n[    2.132706] Mirror/redirect action on\n[    2.132715] netem: version 1.3\n[    2.132718] u32 classifier\n[    2.132719]     Actions configured\n[    2.133493] xt_time: kernel timezone is -0000\n[    2.133563] gre: GRE over IPv4 demultiplexor driver\n[    2.133565] IPv4 over IPsec tunneling driver\n[    2.134164] Initializing XFRM netlink socket\n[    2.134173] IPsec XFRM device driver\n[    2.134545] NET: Registered protocol family 10\n[    2.136267] Segment Routing with IPv6\n[    2.136344] mip6: Mobile IPv6\n[    2.136806] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    2.137341] NET: Registered protocol family 17\n[    2.137402] NET: Registered protocol family 15\n[    2.137489] l2tp_core: L2TP core driver, V2.0\n[    2.137495] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    2.137497] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    2.137508] l2tp_netlink: L2TP netlink interface\n[    2.137556] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    2.137558] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    2.137588] sctp: Hash tables configured (bind 256/256)\n[    2.137780] tipc: Activated (version 2.0.0)\n[    2.137809] NET: Registered protocol family 30\n[    2.137889] tipc: Started in single node mode\n[    2.137905] Key type dns_resolver registered\n[    2.146452] lito_npucc 9980000.qcom,npucc: Registered NPU_CC clocks\n[    2.148837] lito-videocc ab00000.qcom,videocc: Registered Video CC clocks\n[    2.151146] register_client_adhoc:find path.src 63 dest 512\n[    2.151458] register_client_adhoc:Client handle 42 pil-venus\n[    2.151465] minidump-id not found for venus\n[    2.151548] subsys-pil-tz aae0000.qcom,venus: for venus segments only will be dumped.\n[    2.151641] subsys-pil-tz aae0000.qcom,venus: for md_venus segments only will be dumped.\n[    2.152014] minidump-id not found for npu\n[    2.152056] subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    2.152137] subsys-pil-tz 9800000.qcom,npu: for md_npu segments only will be dumped.\n[    2.152351] subsys-restart: __get_smem_state(): Could not get smem-states qcom,force-stop\n[    2.156147] iommu: Adding device 3d6a000.qcom,gmu:gmu_user to group 19\n[    2.156657] iommu: Adding device 3d6a000.qcom,gmu:gmu_kernel to group 20\n[    2.157651] register_client_adhoc:find path.src 26 dest 512\n[    2.157835] register_client_adhoc:Client handle 43 grp3d\n[    2.157853] register_client_adhoc:find path.src 26 dest 10036\n[    2.158013] register_client_adhoc:Client handle 44 cnoc\n[    2.158017] query_client_usecase_all: query_start\n[    2.158075] query_client_usecase_all: query_start\n[    2.158716] register_client_adhoc:find path.src 1 dest 598\n[    2.158946] register_client_adhoc:Client handle 45 gpu_cfg\n[    2.159832] iommu: Adding device 3da0000.qcom,kgsl-iommu:gfx3d_user to group 21\n[    2.160111] iommu: Adding device 3da0000.qcom,kgsl-iommu:gfx3d_secure to group 22\n[    2.176897] cs35l41 1-0040: No override bin and fw name used, ret: -22\n[    2.178001] cs35l41 1-0040: Cirrus Logic CS35L41 (35a40), Revision: B2\n[    2.186954] cs35l41 1-0041: 1-0041 supply VA not found, using dummy regulator\n[    2.187004] cs35l41 1-0041: 1-0041 supply VP not found, using dummy regulator\n[    2.187065] cs35l41 1-0041: Reset line busy, assuming shared reset\n[    2.194669] sec_ts spi0.0: [sec_input] sec_ts_probe\n[    2.194672] sec_ts spi0.0: [sec_input] sec_ts_probe: SPI interface\n[    2.194686] sec_ts spi0.0: [sec_input] sec_ts_probe: Failed to parse dt\n[    2.194692] sec_ts spi0.0: [sec_input] sec_ts_probe: failed(-517)\n[    2.195393] iommu: Adding device 9900000.qcom,msm_npu to group 23\n[    2.195919] register_client_adhoc:find path.src 154 dest 512\n[    2.196178] register_client_adhoc:find path.src 154 dest 620\n[    2.196460] register_client_adhoc:Client handle 46 9900000.qcom,msm_npu\n[    2.196463] NPU_INFO: npu_parse_dt_bw: 1875 NPU BW client sets up successfully\n[    2.197607] NPU_INFO: npu_adjust_max_power_level: 1971 Adjust max_pwrlevel to 4[49]\n[    2.201123] logbuffer:  id:smblib registered\n[    2.201584] google_battery: failed to get \"bms\" power supply, retrying...\n[    2.201589] google_charger: failed to get \"sm7250_bms\" power supply, retrying...\n[    2.204311] Requested disable of battery power supply\n[    2.204725] Couldn't get temp USB port thermal zone rc=-22\n[    2.215708] qcom,qpnp-smb5 c440000.qcom,spmi:qcom,pm7250b@2:qcom,qpnp-smb5: typec_attach_detach_irq_handler lpd_stage=0 lpd_reason=0\n[    2.215845] qcom,qpnp-smb5 c440000.qcom,spmi:qcom,pm7250b@2:qcom,qpnp-smb5: smblib_lpd_launch_ra_open_work lpd_stage=1 lpd_reason=0\n[    2.216027] qcom,qpnp-smb5 c440000.qcom,spmi:qcom,pm7250b@2:qcom,qpnp-smb5: Couldn't get POWER_SUPPLY_PROP_VOLTAGE_REGULATION, rc=-22\n[    2.216046] qcom,qpnp-smb5 c440000.qcom,spmi:qcom,pm7250b@2:qcom,qpnp-smb5: Couldn't get VOLTAGE_MAX, rc=-19\n[    2.216050] qcom,qpnp-smb5 c440000.qcom,spmi:qcom,pm7250b@2:qcom,qpnp-smb5: Couldn't get POWER_SUPPLY_PROP_VOLTAGE_REGULATION, rc=-22\n[    2.216217] Couldn't get temp USB port thermal zone rc=-22\n[    2.218390] QCOM-BATT: handle_main_charge_type: Couldn't get batt charge type rc=-11\n[    2.218406] QCOM-BATT: handle_settled_icl_change: Couldn't get aicl settled value rc=-11\n[    2.223111] SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    2.223158] QPNP SMB5 probed successfully\n[    2.224399] QG-K: qg_get_batt_type: eeprom ID=82300172012, len=10, defer_cnt=1\n[    2.230102] qcom,qpnp-smb5 c440000.qcom,spmi:qcom,pm7250b@2:qcom,qpnp-smb5: Couldn't get POWER_SUPPLY_PROP_VOLTAGE_REGULATION, rc=-22\n[    2.230121] qcom,qpnp-smb5 c440000.qcom,spmi:qcom,pm7250b@2:qcom,qpnp-smb5: Couldn't get VOLTAGE_MAX, rc=-19\n[    2.230125] qcom,qpnp-smb5 c440000.qcom,spmi:qcom,pm7250b@2:qcom,qpnp-smb5: Couldn't get POWER_SUPPLY_PROP_VOLTAGE_REGULATION, rc=-22\n[    2.230255] Couldn't get temp USB port thermal zone rc=-22\n[    2.230708] QCOM-BATT: handle_main_charge_type: Couldn't get batt charge type rc=-11\n[    2.230724] QCOM-BATT: handle_settled_icl_change: Couldn't get aicl settled value rc=-11\n[    2.238318] of_batterydata_get_best_profile: 82300172012 found\n[    2.238784] QG-K: qg_batterydata_init: QG Battery-profile loaded\n[    2.242471] QG-K: qg_determine_pon_soc: using SHUTDOWN_SOC @ PON ocv_uv=4119700uV soc=76\n[    2.243692] google_bms: storage registered qg at 1, dupes=0, refs=0\n[    2.243711] QG-K: qpnp_qg_probe: QG initialized! battery_profile=82300172012 SOC=76 QG_subtype=4 QG_version=QG_PMIC5 QG_mode=QG_V_I\n[    2.244848] sm7250_bms: batt_id = 9971\n[    2.244854] sm7250_bms: node qpnp,qg PMIC subtype 46 Digital major 1\n[    2.244866] sm7250_bms: QG_TYPE 13\n[    2.244877] sm7250_bms: QG_TYPE 13\n[    2.246571] sm7250_bms: BMS driver probed successfully\n[    2.246747] google,overheat_mitigation soc:google,overheat_mitigation: found usbc virtual sensor usbc-virt\n[    2.246755] google,overheat_mitigation soc:google,overheat_mitigation: found usbc virtual sensor usbc-virt-monitor\n[    2.248815] spmi-temp-alarm c440000.qcom,spmi:qcom,pm7250b@2:qcom,temp-alarm@2400: failed to register sensor\n[    2.249572] spmi-temp-alarm c440000.qcom,spmi:qcom,pm8150l@4:qcom,temp-alarm@2400: failed to register sensor\n[    2.250703] battery type=82300172012\n[    2.250709] of_batterydata_get_best_profile: 82300172012 found\n[    2.268737] AXI: get_pdata(): Error: Client name not found\n[    2.268739] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    2.268750] [drm:dsi_ctrl_dev_probe] [msm-dsi-info]: dsi-ctrl-0: Probe successful\n[    2.268987] AXI: get_pdata(): Error: Client name not found\n[    2.268989] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    2.268992] [drm:dsi_ctrl_dev_probe] [msm-dsi-info]: dsi-ctrl-1: Probe successful\n[    2.270418] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.272351] register_client_adhoc:find path.src 1 dest 590\n[    2.272650] register_client_adhoc:Client handle 47 mdss_reg\n[    2.272672] register_client_adhoc:find path.src 22 dest 512\n[    2.272897] register_client_adhoc:find path.src 23 dest 512\n[    2.273124] register_client_adhoc:Client handle 48 mdss_sde\n[    2.273211] [drm:sde_dbg_init:4676] evtlog_status: enable:11, panic:1, dump:2\n[    2.273229] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops 0xffffff9620795500)\n[    2.273601] dsi_backlight_register:863: LAB regulator found\n[    2.273904] [drm:dsi_display_bind] [msm-dsi-info]: Successfully bind display panel 'qcom,mdss_dsi_s6e3hc2_dvt_dsc_1080p_cmd'\n[    2.274020] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-primary (ops 0xffffff9620796c20)\n[    2.274027] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops 0xffffff96207956a8)\n[    2.274048] [drm] mapped mdp address space @00000000c8585a06\n[    2.274919] [drm:_sde_kms_hw_init_blocks:3732] sde hardware revision:0x60010000\n[    2.276158] [drm:_sde_kms_update_tcsr_glitch_mask:3714] tcsr glitch programmed read_val:4 write_val:4\n[    2.276821] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_unsec_cb to group 24\n[    2.276988] [drm] probing device qcom,smmu_sde_unsec\n[    2.276992] [drm] Created domain mdp_ns, secure=0\n[    2.278369] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 25\n[    2.278544] [drm] probing device qcom,smmu_sde_sec\n[    2.278547] [drm] Created domain mdp_s, secure=1\n[    2.279707] [drm:dsi_panel_get_mode] [msm-dsi-info]: default topology: lm: 2 comp_enc:2 intf: 1\n[    2.279779] [drm:dsi_panel_get_mode] [msm-dsi-info]: roi alignment: [540, 540, 65, 65, 540, 65]\n[    2.279807] [drm:dsi_panel_get_mode] [msm-dsi-info]: default topology: lm: 2 comp_enc:2 intf: 1\n[    2.279865] [drm:dsi_panel_get_mode] [msm-dsi-info]: roi alignment: [540, 540, 65, 65, 540, 65]\n[    2.281869] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    2.281871] [drm] No driver support for vblank timestamp query.\n[    2.282713] [drm] Initialized msm_drm 1.3.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    2.282732] [drm] cont_splash enabled in 1 of 1 display(s)\n[    2.282892] [drm:dsi_ctrl_isr_configure] [msm-dsi-info]: dsi-ctrl-0: IRQ 361 registered\n[    2.284169] msm_vidc:   err : ffffffff: .....: no device Registered\n[    2.288978] iommu: Adding device aa00000.qcom,vidc0:non_secure_cb to group 26\n[    2.290106] iommu: Adding device aa00000.qcom,vidc0:secure_non_pixel_cb to group 27\n[    2.291137] iommu: Adding device aa00000.qcom,vidc0:secure_bitstream_cb to group 28\n[    2.291985] iommu: Adding device aa00000.qcom,vidc0:secure_pixel_cb to group 29\n[    2.292170] platform aa00000.qcom,vidc0:qcom,msm-vidc,mem_cdsp: assigned reserved memory node cdsp_region\n[    2.292814] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 60 No GPIO found\n[    2.293200] CAM_INFO: CAM-SENSOR: cam_sensor_driver_get_dt_data: 210 custom-gyro-support param defined\n[    2.293651] CAM_INFO: CAM-OIS: cam_ois_get_dt_data: 45 No GPIO found\n[    2.294441] NPU_WARN: npu_bridge_mbox_work: 1159 NPU fw is not loaded\n[    2.294577] minidump-id not found for npu\n[    2.294615] subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    2.294755] subsys-pil-tz 9800000.qcom,npu: for md_npu segments only will be dumped.\n[    2.296118] logbuffer:  id:usbpd registered\n[    2.297371] cs35l41 1-0041: No override bin and fw name used, ret: -22\n[    2.298558] cs35l41 1-0041: Cirrus Logic CS35L41 (35a40), Revision: B2\n[    2.299430] sec_ts spi0.0: [sec_input] sec_ts_probe\n[    2.299433] sec_ts spi0.0: [sec_input] sec_ts_probe: SPI interface\n[    2.299454] sec_ts spi0.0: [sec_input] sec_ts_parse_dt: Failed to get tsp-icid gpio\n[    2.299477] sec_ts spi0.0: [sec_input] sec_ts_parse_dt: Failed to get irq_type property\n[    2.299486] sec_ts spi0.0: [sec_input] sec_ts_parse_dt: Failed to get tsp-id gpio\n[    2.320934] sec_ts spi0.0: [sec_input] sec_ts_parse_dt: skipped to get project_name property\n[    2.320938] sec_ts spi0.0: [sec_input] sec_ts_parse_dt: skipped to get model_name property\n[    2.320942] sec_ts spi0.0: [sec_input] sec_ts_parse_dt: lcdtype 0x00000000\n[    2.320947] sec_ts spi0.0: [sec_input] sec_ts_parse_dt: Failed to get regulator_dvdd name property\n[    2.320960] sec_ts spi0.0: [sec_input] sec_ts_parse_dt: buffer limit: 1024, lcd_id:000000, bringup:0, FW:s6sy79x.bin(1), id:-2,-2, dex:0, gesture:0\n[    2.320993] sec_ts spi0.0: [sec_input] sec_ts_probe: fw update on probe disabled!\n[    2.321052] sec_ts spi0.0: tbn_init: gpios(lpi2ap: 0 ap2lpi: 0), mode 0\n[    2.321057] sec_ts spi0.0: bus negotiator initialized: 00000000734a3fab\n[    2.321064] sec_ts spi0.0: [sec_input] sec_ts_pinctrl_configure: ACTIVE\n[    2.321145] sec_ts spi0.0: [sec_input] sec_ts_power: on: avdd:on\n[    2.321510] p9221 1-003b: Notifier work: on:0 ben:0 dc:1 np:0 det:0\n[    2.321572] QCOM-STEPCHG: handle_battery_insertion: Get battery present status failed, rc=-11\n[    2.321760] i2c_geni 98c000.i2c: i2c error :-107\n[    2.321768] p9221 1-003b: p9221_reg_write_n: i2c write error, reg: 0x8d, n: 1 ret: -107 (-19)\n[    2.321771] p9221 1-003b: cannot write to EPP_NEG_POWER=24 (-19)\n[    2.321900] i2c_geni 98c000.i2c: i2c error :-107\n[    2.321906] p9221 1-003b: i2c read error, reg:40, ret:-107 (-19)\n[    2.321928] p9221 1-003b: dc status is 0\n[    2.322047] i2c_geni 98c000.i2c: i2c error :-107\n[    2.322052] p9221 1-003b: i2c read error, reg:42, ret:-107 (-19)\n[    2.322058] p9221 1-003b: trigger wc changed on:0 in:0\n[    2.400455] spi_geni 880000.spi: tx_fifo 16 rx_fifo 16 tx_width 32\n[    2.400968] sec_ts spi0.0: [sec_input] sec_ts_probe: power enable\n[    2.401214] sec_ts spi0.0: [sec_input] sec_ts_fw_init: TOUCH DEVICE ID : 53, 45, 37, 91, 00\n[    2.420024] p9221 1-003b: Notifier work: on:0 ben:0 dc:0 np:0 det:0\n[    2.420122] i2c_geni 98c000.i2c: i2c error :-107\n[    2.420128] p9221 1-003b: p9221_reg_write_n: i2c write error, reg: 0x8d, n: 1 ret: -107 (-19)\n[    2.420131] p9221 1-003b: cannot write to EPP_NEG_POWER=24 (-19)\n[    2.420224] i2c_geni 98c000.i2c: i2c error :-107\n[    2.420230] p9221 1-003b: i2c read error, reg:40, ret:-107 (-19)\n[    2.421841] sec_ts spi0.0: [sec_input] sec_ts_fw_init: TOUCH STATUS : 20 || 00, 03, 01, 00\n[    2.422091] sec_ts spi0.0: [sec_input] sec_ts_read_information: AC, 37, 91\n[    2.422343] sec_ts spi0.0: [sec_input] sec_ts_read_information: nTX:10, nRX:22, rY:2340, rX:1080\n[    2.422586] sec_ts spi0.0: [sec_input] sec_ts_read_information: STATUS : 20\n[    2.422830] sec_ts spi0.0: [sec_input] sec_ts_read_information: TOUCH STATUS : 00, 03, 01, 00\n[    2.423074] sec_ts spi0.0: [sec_input] sec_ts_read_information: Functions : 61\n[    2.423292] input: sec_touchscreen as /devices/platform/soc/880000.spi/spi_master/spi0/spi0.0/input/input1\n[    2.423301] sec_ts spi0.0: [sec_input] sec_ts_input_open\n[    2.423307] sec_ts spi0.0: [sec_input] sec_ts_start_device\n[    2.423310] sec_ts spi0.0: [sec_input] sec_ts_pinctrl_configure: ACTIVE\n[    2.423314] sec_ts spi0.0: [sec_input] sec_ts_start_device: already power on\n[    2.423464] sec_ts spi0.0: [sec_input] sec_ts_probe: request_irq = 298\n[    2.423914] sec_ts spi0.0: [sec_input] sec_ts_probe: done\n[    2.424098] i2c_geni 98c000.i2c: i2c error :-107\n[    2.424194] i2c_geni 98c000.i2c: i2c error :-107\n[    2.424290] i2c_geni 98c000.i2c: i2c error :-107\n[    2.424386] i2c_geni 98c000.i2c: i2c error :-107\n[    2.424481] i2c_geni 98c000.i2c: i2c error :-107\n[    2.424577] i2c_geni 98c000.i2c: i2c error :-107\n[    2.424673] i2c_geni 98c000.i2c: i2c error :-107\n[    2.424768] i2c_geni 98c000.i2c: i2c error :-107\n[    2.424863] i2c_geni 98c000.i2c: i2c error :-107\n[    2.424958] i2c_geni 98c000.i2c: i2c error :-107\n[    2.425594] msm-usb-ssphy-qmp 88e8000.ssphy: No separate ID extcon device\n[    2.426153] iommu: Adding device a600000.ssusb to group 30\n[    2.427124] dwc3 a600000.dwc3: Failed to get clk 'ref': -2\n[    2.427205] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.428728] register_client_adhoc:find path.src 61 dest 512\n[    2.429101] register_client_adhoc:find path.src 61 dest 676\n[    2.429303] register_client_adhoc:find path.src 1 dest 583\n[    2.429526] register_client_adhoc:Client handle 49 usb0\n[    2.430752] registered taskstats version 1\n[    2.430754] Loading compiled-in X.509 certificates\n[    2.430869] Key type ._fscrypt registered\n[    2.430871] Key type .fscrypt registered\n[    2.430873] Key type fscrypt-provisioning registered\n[    2.431105] pstore: Using compression: deflate\n[    2.431341] niap_test_hash: hmac(sha512) passed\n[    2.431352] niap_test_hash: sha256 passed\n[    2.431527] niap_test_cipher: cbc(aes) encryption passed\n[    2.431539] niap_test_cipher: cbc(aes) decryption passed\n[    2.442663] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode\n[    2.443121] msm-dwc3 a600000.ssusb: DWC3 in low power mode\n[    2.451504] google_battery: Profile constant charge limits:\n[    2.451508] google_battery: |T \\ V  4200  4300  4390  4410  4430  4450\n[    2.451512] google_battery: | 0:10  1200   400     0     0     0     0\n[    2.451517] google_battery: |10:20  2000  1200  1200  1200   600   120\n[    2.451520] google_battery: |20:42  4000  2800  2040  1200   600   120\n[    2.451525] google_battery: |42:46  3200  2000  2000  1200   600   120\n[    2.451528] google_battery: |46:48  2000  2000     0     0     0     0\n[    2.451532] google_battery: |48:55  1200     0     0     0     0     0\n[    2.452898] logbuffer:  id:ttf registered\n[    2.452961] google_charger: failed to get POWER_SUPPLY_PROP_PRESENT from 'battery', ret=-11\n[    2.454224] google_charger: failed to get POWER_SUPPLY_PROP_PRESENT from 'battery', ret=-11\n[    2.455229] google_charger: WLC overrides FCC\n[    2.455659] google_battery: init_work done\n[    2.456615] google_charger: MSC_THERM_PD state=0\n[    2.457913] google_charger: MSC_THERM_PD state=0\n[    2.457921] google_charger: dead battery cleared uptime=2\n[    2.457927] google_charger: google_charger_init_work done\n[    2.461471] adsprpc: init_secure_vmid_list: secure VMID = 22\n[    2.461473] adsprpc: init_secure_vmid_list: secure VMID = 37\n[    2.461484] adsprpc: fastrpc_probe: service location enabled for avs/audio (audio_pdr_adsprpc)\n[    2.461487] adsprpc: fastrpc_probe: service location enabled for tms/servreg (sensors_pdr_adsprpc)\n[    2.462654] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 31\n[    2.463517] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 32\n[    2.463675] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    2.464197] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 33\n[    2.464356] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    2.464867] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 34\n[    2.465027] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    2.465556] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 35\n[    2.465697] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    2.466212] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 36\n[    2.466354] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    2.466861] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7 to group 37\n[    2.467006] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    2.467521] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8 to group 38\n[    2.467667] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    2.468574] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 39\n[    2.468728] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    2.469247] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 40\n[    2.469399] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    2.469897] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 41\n[    2.470094] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    2.470633] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 42\n[    2.470793] Error: swapper/0: fastrpc_cb_probe: failed to create debugfs global file\n[    2.471954] adsprpc: fastrpc_device_init: SSR notifier registered for adsp\n[    2.471957] adsprpc: fastrpc_device_init: SSR notifier registered for modem\n[    2.471961] adsprpc: fastrpc_device_init: SSR notifier registered for slpi\n[    2.471963] adsprpc: fastrpc_device_init: SSR notifier registered for cdsp\n[    2.473146] iommu: Adding device 3ac0000.slim to group 43\n[    2.476128] [KEY] gpio_keys_setup_key, error=-524, debounce(15, 15)\n[    2.476219] [KEY] keycode = 115, gpio = 0, irq = 248\n[    2.476298] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input2\n[    2.476318] [KEY] gpio_keys_gpio_report_event: key 1-73, (0) changed to 0\n[    2.481654] RNDIS_IPA module is loaded.\n[    2.481762] rmnet_ipa3 started initialization\n[    2.482514] msm notifier probed successfully\n[    2.483362] wlan: Loading driver v5.2.05.22K +PANIC_ON_BUG\n[    2.483369] qdf_print_ctrl_register: Allocated print control object 0\n[    2.484827] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    2.485508] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    2.487982] msm_bus_late_init: Remove handoff bw requests\n[    2.489244] ALSA device list:\n[    2.489246]   No soundcards found.\n[    2.489610] Freeing unused kernel memory: 1280K\n[    2.489720] Run /init as init process\n[    2.494284] ipa ipa3_uc_reg_rdyCB:2944 bad parm. inout=00000000e69021cb \n[    2.494481] wlan_hdd_state wlan major(493) initialized\n[    2.510124] qcom,qpnp-smb5 c440000.qcom,spmi:qcom,pm7250b@2:qcom,qpnp-smb5: smblib_lpd_ra_open_work lpd_stage=0 lpd_reason=0\n[    3.442614] sec_ts spi0.0: [sec_input] sec_ts_fw_update_work: Beginning firmware update after probe.\n[    3.443754] sec_ts spi0.0: [sec_input] sec_ts_read_calibration_report: count:6, pass count:6, fail count:0, status:A2, param version:25 88 1 4\n[    3.443778] sec_ts spi0.0: [sec_input] sec_ts_firmware_update_on_probe: initial firmware update s6sy79x.bin, cal:A2\n[    3.443990] sec_ts spi0.0: Falling back to syfs fallback for: s6sy79x.bin\n[    4.241691] QCOM-STEPCHG: get_step_chg_jeita_setting_from_profile: battery type=82300172012\n[    4.241721] of_batterydata_get_best_profile: 82300172012 found\n[    4.241755] QCOM-STEPCHG: read_range_data_from_node: Count qcom,step-chg-ranges failed, rc=-22\n[    4.241768] QCOM-STEPCHG: read_range_data_from_node: Count qcom,jeita-fcc-ranges failed, rc=-22\n[    4.241780] QCOM-STEPCHG: read_range_data_from_node: Count qcom,jeita-fv-ranges failed, rc=-22\n[   12.641163] google_charger: MSC_CHG battery present\n[   12.641185] google_charger: MSC_CHG no power source, disabling charging\n[   32.488003] vdd_supply: disabling\n[   32.488018] camera_ldo: disabling\n[   64.481432] sec_ts spi0.0: [sec_input] sec_ts_firmware_update_on_probe: firmware is not available\n[   64.482438] sec_ts spi0.0: [sec_input] sec_ts_fw_update_work: firmware update was unsuccessful.\n[   64.483098] drv2624 1-005a: drv2624_firmware_load, ERROR!! firmware not found\n[   64.731694] sec_ts spi0.0: [sec_input] get_tsp_nvm_data: offset:0  data:00\n[   64.981682] sec_ts spi0.0: [sec_input] get_tsp_nvm_data: offset:1  data:00\n[   65.231688] sec_ts spi0.0: [sec_input] get_tsp_nvm_data: offset:54  data:00\n[   65.481701] sec_ts spi0.0: [sec_input] get_tsp_nvm_data: offset:55  data:00\n[   65.482175] sec_ts spi0.0: [sec_input] sec_ts_read_init_info: fac_nv:00, cal_count:00\n[   65.482530] sec_ts spi0.0: [sec_input] execute_selftest: Self test start!\n[   67.101675] sec_ts spi0.0: [sec_input] execute_selftest: Self test done!\n[   67.108053] [sec_input] sec_ts : SIG 46, 4C, 45, 53  [sec_input] sec_ts : VER  0,  0,  2, 20  \n[   67.108095] [sec_input] sec_ts : SIZ  0,  0,  8, 50  [sec_input] sec_ts : CRC 31, 33, 17, 5A  \n[   67.108131] [sec_input] sec_ts : RES  0,  0,  0,  0  [sec_input] sec_ts : COU  0,  0,  0, 3D  \n[   67.108164] [sec_input] sec_ts : PAS  0,  0,  0, 3D  [sec_input] sec_ts : FAI  0,  0,  0,  0  \n[   67.108197] [sec_input] sec_ts : CHA  0,  0, 10, 22  [sec_input] sec_ts : AMB  1, C0,  1,  5  \n[   67.108231] [sec_input] sec_ts : RXS  0,  0,  0,  0  [sec_input] sec_ts : TXS  0,  0,  0,  0  \n[   67.108263] [sec_input] sec_ts : RXO  0,  0,  0,  0  [sec_input] sec_ts : TXO  0,  0,  0,  0  \n[   67.108296] [sec_input] sec_ts : RXG  0,  0,  0,  0  [sec_input] sec_ts : TXG  0,  0,  0,  0  \n[   67.108328] [sec_input] sec_ts : RXR  0,  0,  0,  0  [sec_input] sec_ts : TXT  0,  0,  0,  0  \n[   67.108361] [sec_input] sec_ts : RXT  0,  0,  0,  0  [sec_input] sec_ts : TXR  0,  0,  0,  0  \n[   67.108745] sec_ts spi0.0: [sec_input] sec_ts_read_init_info: 00 00 00 00\n[   67.461163] sec_ts spi0.0: [sec_input] sec_ts_read_raw_data: 3, ALL\n[   67.521164] sec_ts spi0.0: [sec_input] sec_ts_read_frame\n[   67.586683] sec_ts spi0.0: [sec_input] sec_ts_release_tmode\n[  305.120366] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120398] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120882] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120904] audio_notifer_reg_service: service SSR_ADSP is in use\n[  305.120954] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120969] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for audio_pdr_adsprpc\n[  305.121014] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121026] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for sensors_pdr_adsprpc\n[  305.121057] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  927.196889] arch_timer: CPU6: Trapping CNTVCT access\n[ 1193.400784] arch_timer: CPU7: Trapping CNTVCT access\n"
  },
  {
    "path": "results/sm7250ab/new/post_bench_interrupts.txt",
    "content": "           CPU0       \n  3:       4502     GICv3  19 Level     arch_timer\n  5:     149804     GICv3  38 Level     arch_mem_timer\n  7:          0     GICv3 195 Level     ngd_slim_irq\n  9:          0     GICv3 304 Level     sps\n 10:          0     GICv3  32 Edge      apps_wdog_bark\n 12:          0       PDC  26 Level     tsens-upper-lower\n 13:          0       PDC  28 Level     tsens-critical\n 14:          0       PDC  20 Edge      tsens-0C\n 15:          0       PDC  27 Level     tsens-upper-lower\n 16:          0       PDC  29 Level     tsens-critical\n 17:          0       PDC  21 Edge      tsens-0C\n 19:        361     GICv3 297 Level     1d84000.ufshc\n 22:        305     GICv3  37 Level     apps_rsc\n 23:          0     GICv3 161 Level     disp_rsc\n 24:          6     GICv3 261 Level     ipcc_1\n 25:          0     GICv3  21 Level     arm-pmu\n 26:          0     GICv3  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 27:          0     GICv3  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 28:          0     GICv3 298 Edge      modem\n 29:          0       PDC  16 Edge      adsp\n 30:          0     GICv3 610 Edge      cdsp\n 31:          5     GICv3 276 Level     gpi_dma800000_gpii0\n 51:          0       PDC  11 Level     eud_irq\n 71:          0     GICv3 705 Level     arm-smmu global fault\n 72:          0     GICv3 710 Level     arm-smmu-context-fault\n 73:          0     GICv3 711 Level     arm-smmu-context-fault\n 74:          0     GICv3 712 Level     arm-smmu-context-fault\n 80:          0     GICv3  97 Level     arm-smmu global fault\n 83:          0     GICv3 131 Level     arm-smmu-context-fault\n 84:          0     GICv3 132 Level     arm-smmu-context-fault\n 85:          0     GICv3 133 Level     arm-smmu-context-fault\n 86:          0     GICv3 134 Level     arm-smmu-context-fault\n 87:          0     GICv3 135 Level     arm-smmu-context-fault\n 88:          0     GICv3 136 Level     arm-smmu-context-fault\n 89:          0     GICv3 137 Level     arm-smmu-context-fault\n 90:          0     GICv3 138 Level     arm-smmu-context-fault\n 91:          0     GICv3 139 Level     arm-smmu-context-fault\n 92:          0     GICv3 140 Level     arm-smmu-context-fault\n 93:          0     GICv3 141 Level     arm-smmu-context-fault\n 94:          0     GICv3 142 Level     arm-smmu-context-fault\n 95:          0     GICv3 143 Level     arm-smmu-context-fault\n 96:          0     GICv3 144 Level     arm-smmu-context-fault\n 97:          0     GICv3 145 Level     arm-smmu-context-fault\n 98:          0     GICv3 146 Level     arm-smmu-context-fault\n 99:          0     GICv3 147 Level     arm-smmu-context-fault\n100:          0     GICv3 148 Level     arm-smmu-context-fault\n101:          0     GICv3 149 Level     arm-smmu-context-fault\n102:          0     GICv3 150 Level     arm-smmu-context-fault\n103:          0     GICv3 213 Level     arm-smmu-context-fault\n104:          0     GICv3 214 Level     arm-smmu-context-fault\n105:          0     GICv3 215 Level     arm-smmu-context-fault\n106:          0     GICv3 216 Level     arm-smmu-context-fault\n107:          0     GICv3 211 Level     arm-smmu-context-fault\n108:          0     GICv3 218 Level     arm-smmu-context-fault\n109:          0     GICv3 219 Level     arm-smmu-context-fault\n110:          0     GICv3 220 Level     arm-smmu-context-fault\n111:          0     GICv3 221 Level     arm-smmu-context-fault\n112:          0     GICv3 222 Level     arm-smmu-context-fault\n113:          0     GICv3 223 Level     arm-smmu-context-fault\n114:          0     GICv3 224 Level     arm-smmu-context-fault\n115:          0     GICv3 347 Level     arm-smmu-context-fault\n116:          0     GICv3 348 Level     arm-smmu-context-fault\n117:          0     GICv3 349 Level     arm-smmu-context-fault\n118:          0     GICv3 350 Level     arm-smmu-context-fault\n119:          0     GICv3 351 Level     arm-smmu-context-fault\n120:          0     GICv3 352 Level     arm-smmu-context-fault\n121:          0     GICv3 353 Level     arm-smmu-context-fault\n122:          0     GICv3 354 Level     arm-smmu-context-fault\n161:          0       PDC  14 Edge      dp_hs_phy_irq\n162:          1     GICv3 176 Level     pwr_event_irq\n163:          0       PDC   9 Level     ss_phy_irq\n164:          0       PDC  15 Edge      dm_hs_phy_irq\n165:          0     GICv3 206 Level     msm_vidc\n166:          0     GICv3 332 Level     kgsl_3d0_irq\n167:          0     GICv3 336 Level     kgsl_hfi_irq\n168:          0     GICv3 337 Level     kgsl_gmu_irq\n169:          0     GICv3 396 Level     error_irq\n170:          0     GICv3 398 Edge      wdg_bite_irq\n171:          0     GICv3 400 Edge      ipc_irq\n172:          0     GICv3 397 Level     general_irq\n175:        208     GICv3 633 Level     spi_geni\n176:          0     GICv3 637 Level     spi_geni\n177:         97     GICv3 386 Level     i2c_geni\n178:       1840     GICv3 388 Level     i2c_geni\n179:          4     GICv3 390 Level     i2c_geni\n180:          0     GICv3 385 Level     spi_geni\n181:          0     GICv3 509 Edge      csiphy\n182:          0     GICv3 510 Edge      csiphy\n183:          0     GICv3 511 Edge      csiphy\n184:          0     GICv3 480 Edge      csiphy\n185:          0     GICv3 492 Edge      cci\n186:          0     GICv3 303 Edge      cci\n187:          1     GICv3 493 Edge      cpas-cdm\n188:          0     GICv3 496 Edge      csid\n189:          2     GICv3 497 Edge      ife\n190:          0     GICv3 498 Edge      csid\n191:          2     GICv3 499 Edge      ife\n192:          0     GICv3 500 Edge      csid-lite\n193:          2     GICv3 501 Edge      ife-lite\n194:          0     GICv3 495 Edge      a5\n195:          0     GICv3 506 Edge      jpeg\n196:          0     GICv3 507 Edge      jpegdma\n197:          2     GICv3 494 Edge      fd\n198:          1     GICv3 508 Edge      lrme\n199:          0     GICv3 491 Edge      cpas_camnoc\n200:          0     GICv3 115 Level     msm_drm\n201:          0  pmic_arb 8388818 Edge      pon_kpdpwr_status\n202:          0  pmic_arb 8454354 Edge      pon_resin_status\n203:          0  pmic_arb 37748947 Edge      qcom,temp-alarm\n214:          0  pmic_arb 101777624 Edge      pm8xxx_rtc_alarm\n215:          4  pmic_arb 51380436 Edge      pm-adc5\n216:          0  pmic_arb 55574741 Edge      thr-int-en\n217:          0  pmic_arb 560988393 Edge      sig-tx\n218:          0  pmic_arb 561053929 Edge      sig-rx\n219:          0  pmic_arb 561119465 Edge      msg-tx\n220:          0  pmic_arb 561185001 Edge      msg-rx\n221:          0  pmic_arb 561250537 Edge      msg-tx-failed\n222:          0  pmic_arb 561316073 Edge      msg-tx-discarded\n223:          0  pmic_arb 561381609 Edge      msg-rx-discarded\n230:          0  pmic_arb 742392059 Level     cs35l41\n233:          0  pmic_arb 745537790 Level     cs35l41\n238:        242  pmic_arb 588251375 Edge      pm-adc5\n239:          0  pmic_arb 592445680 Edge      thr-int-en\n240:          0  pmic_arb 567279853 Edge      bcl-lvl0\n241:          0  pmic_arb 567345389 Edge      bcl-lvl1\n242:          0  pmic_arb 567410925 Edge      bcl-lvl2\n248:          0  pmic_arb 1279262991 Edge      volume_up\n256:         18  pmic_arb 1125122311 Edge      pm-adc5\n257:          0  pmic_arb 1137705225 Edge      bcl-lvl0\n258:          0  pmic_arb 1137770761 Edge      bcl-lvl1\n259:          0  pmic_arb 1137836297 Edge      bcl-lvl2\n260:          0  pmic_arb 1129316616 Edge      thr-int-en\n261:          0  pmic_arb 1563427102 Edge      qpnp_flash_led_fault_irq\n262:          0  pmic_arb 1563623710 Edge      qpnp_flash_led_all_ramp_down_done_irq\n263:          0  pmic_arb 1563689246 Edge      qpnp_flash_led_all_ramp_up_done_irq\n264:          6      ipcc   0 Edge      qcom,qmp-aop\n265:          0     GICv3 719 Level     capture bus\n266:          0     GICv3 720 Level     capture bus\n267:          0     GICv3 455 Level     capture bus\n268:          0     GICv3 456 Level     capture bus\n269:          0     GICv3 457 Level     capture bus\n270:          0     GICv3 721 Level     capture bus\n271:          0     GICv3 722 Level     capture bus\n272:          0     GICv3 723 Level     capture bus\n273:          0     GICv3 724 Level     capture bus\n274:          0     GICv3 725 Level     capture bus\n275:          0     GICv3  64 Level     limits_sensor-00\n276:          0     GICv3  65 Level     limits_sensor-01, limits_sensor-01\n277:          0      ipcc 131074 Edge      smp2p\n278:          0      ipcc 196610 Edge      smp2p\n279:          0      ipcc 393218 Edge      smp2p\n280:          0     smp2p   2 Edge      modem\n281:          0     smp2p   0 Edge      modem\n282:          0     smp2p   1 Edge      error_ready_interrupt\n283:          0     smp2p   3 Edge      modem\n284:          0     smp2p   7 Edge      modem\n285:          0     smp2p   2 Edge      adsp\n286:          0     smp2p   0 Edge      adsp\n287:          0     smp2p   1 Edge      error_ready_interrupt\n288:          0     smp2p   3 Edge      adsp\n289:          0     smp2p   2 Edge      cdsp\n290:          0     smp2p   0 Edge      cdsp\n291:          0     smp2p   1 Edge      error_ready_interrupt\n292:          0     smp2p   3 Edge      cdsp\n293:          0     smp2p   0 Edge      smp2p_sleepstate\n297:          0   msmgpio  26 Edge      spi2.0\n298:         16   msmgpio   9 Level     sec_ts\n299:          1   msmgpio 112 Edge      soc:fp_fpc1020\n301:          0   msmgpio  69 Edge      st21nfc_pw_stats_idle_handle\n302:          0   msmgpio 100 Level     p9221-irq\n303:          0   msmgpio  98 Edge      p9221-irq-det\n305:          1   msmgpio  11 Level     rt5514-switch-ack\n308:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n309:          0  pmic_arb 554696931 Edge      otg-fail\n313:          0  pmic_arb 554959075 Edge      high-duty-cycle\n314:          0  pmic_arb 555024611 Edge      input-current-limiting\n316:          0  pmic_arb 555155683 Edge      switcher-power-ok\n317:          0  pmic_arb 556794085 Edge      usbin-collapse\n318:          0  pmic_arb 556859621 Edge      usbin-vashdn\n319:          0  pmic_arb 556925157 Edge      usbin-uv\n320:          0  pmic_arb 556990693 Edge      usbin-ov\n321:          0  pmic_arb 557056229 Edge      usbin-plugin\n323:          0  pmic_arb 557187301 Edge      usbin-src-change\n324:          0  pmic_arb 557252837 Edge      usbin-icl-change\n326:          0  pmic_arb 557973734 Edge      dcin-uv\n327:          0  pmic_arb 558039270 Edge      dcin-ov\n328:          0  pmic_arb 558104806 Edge      dcin-plugin\n330:          0  pmic_arb 558235878 Edge      dcin-pon\n331:          0  pmic_arb 558301414 Edge      dcin-en\n332:          0  pmic_arb 558891239 Edge      typec-or-rid-detect-change\n334:          0  pmic_arb 559022311 Edge      typec-cc-state-change\n335:          0  pmic_arb 559087847 Edge      typec-vconn-oc\n337:          0  pmic_arb 559218919 Edge      typec-attach-detach\n338:          0  pmic_arb 559284455 Edge      typec-legacy-cable-detect\n340:          0  pmic_arb 559939816 Edge      wdog-snarl\n341:          0  pmic_arb 560005352 Edge      wdog-bark\n343:          0  pmic_arb 560136424 Edge      aicl-done\n344:          0  pmic_arb 560201960 Edge      smb-en\n346:          0  pmic_arb 560333032 Edge      temp-change\n349:          0  pmic_arb 612434161 Edge      qg-vbat-low\n350:          0  pmic_arb 612499697 Edge      qg-vbat-empty\n351:        111  pmic_arb 612565233 Edge      qg-fifo-done\n352:          0  pmic_arb 612630769 Edge      qg-good-ocv\n353:          0  pmic_arb 553648354 Edge      chgr-error\n354:          0  pmic_arb 553713890 Edge      chg-state-change\n355:          0  pmic_arb 555745508 Edge      bat-temp\n356:          0  pmic_arb 555876580 Edge      bat-ov\n357:          0  pmic_arb 555942116 Edge      bat-low\n358:          0  pmic_arb 556007652 Edge      bat-therm-or-id-missing\n359:          0  pmic_arb 556073188 Edge      bat-terminal-missing\n360:          0   msmgpio  10 Edge      TE_GPIO\n361:          0       sde   4 Edge      dsi_ctrl\n362:          0      ipcc 458754 Edge      smp2p\n363:          0     GICv3 272 Level     dwc3\nIPI0:       176       Rescheduling interrupts\nIPI1:        10       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:         0       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm7250ab/new/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  3:        840          3          3          2          2          2          2          2     GICv3  19 Level     arch_timer\n  5:          0          0          0          0          0          0          0          0     GICv3  38 Level     arch_mem_timer\n  7:          0          0          0          0          0          0          0          0     GICv3 195 Level     ngd_slim_irq\n  9:          0          0          0          0          0          0          0          0     GICv3 304 Level     sps\n 10:          0          0          0          0          0          0          0          0     GICv3  32 Edge      apps_wdog_bark\n 12:          0          0          0          0          0          0          0          0       PDC  26 Level     tsens-upper-lower\n 13:          0          0          0          0          0          0          0          0       PDC  28 Level     tsens-critical\n 14:          0          0          0          0          0          0          0          0       PDC  20 Edge      tsens-0C\n 15:          0          0          0          0          0          0          0          0       PDC  27 Level     tsens-upper-lower\n 16:          0          0          0          0          0          0          0          0       PDC  29 Level     tsens-critical\n 17:          0          0          0          0          0          0          0          0       PDC  21 Edge      tsens-0C\n 19:        354          0          0          0          0          0          0          0     GICv3 297 Level     1d84000.ufshc\n 22:        280          0          0          0          0          0          0          0     GICv3  37 Level     apps_rsc\n 23:          0          0          0          0          0          0          0          0     GICv3 161 Level     disp_rsc\n 24:          6          0          0          0          0          0          0          0     GICv3 261 Level     ipcc_1\n 25:          0          0          0          0          0          0          0          0     GICv3  21 Level     arm-pmu\n 26:          0          0          0          0          0          0          0          0     GICv3  22 Level     KRYO L1-L2 ECC FAULTIRQ\n 27:          0          0          0          0          0          0          0          0     GICv3  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 28:          0          0          0          0          0          0          0          0     GICv3 298 Edge      modem\n 29:          0          0          0          0          0          0          0          0       PDC  16 Edge      adsp\n 30:          0          0          0          0          0          0          0          0     GICv3 610 Edge      cdsp\n 31:          5          0          0          0          0          0          0          0     GICv3 276 Level     gpi_dma800000_gpii0\n 51:          0          0          0          0          0          0          0          0       PDC  11 Level     eud_irq\n 71:          0          0          0          0          0          0          0          0     GICv3 705 Level     arm-smmu global fault\n 72:          0          0          0          0          0          0          0          0     GICv3 710 Level     arm-smmu-context-fault\n 73:          0          0          0          0          0          0          0          0     GICv3 711 Level     arm-smmu-context-fault\n 74:          0          0          0          0          0          0          0          0     GICv3 712 Level     arm-smmu-context-fault\n 80:          0          0          0          0          0          0          0          0     GICv3  97 Level     arm-smmu global fault\n 83:          0          0          0          0          0          0          0          0     GICv3 131 Level     arm-smmu-context-fault\n 84:          0          0          0          0          0          0          0          0     GICv3 132 Level     arm-smmu-context-fault\n 85:          0          0          0          0          0          0          0          0     GICv3 133 Level     arm-smmu-context-fault\n 86:          0          0          0          0          0          0          0          0     GICv3 134 Level     arm-smmu-context-fault\n 87:          0          0          0          0          0          0          0          0     GICv3 135 Level     arm-smmu-context-fault\n 88:          0          0          0          0          0          0          0          0     GICv3 136 Level     arm-smmu-context-fault\n 89:          0          0          0          0          0          0          0          0     GICv3 137 Level     arm-smmu-context-fault\n 90:          0          0          0          0          0          0          0          0     GICv3 138 Level     arm-smmu-context-fault\n 91:          0          0          0          0          0          0          0          0     GICv3 139 Level     arm-smmu-context-fault\n 92:          0          0          0          0          0          0          0          0     GICv3 140 Level     arm-smmu-context-fault\n 93:          0          0          0          0          0          0          0          0     GICv3 141 Level     arm-smmu-context-fault\n 94:          0          0          0          0          0          0          0          0     GICv3 142 Level     arm-smmu-context-fault\n 95:          0          0          0          0          0          0          0          0     GICv3 143 Level     arm-smmu-context-fault\n 96:          0          0          0          0          0          0          0          0     GICv3 144 Level     arm-smmu-context-fault\n 97:          0          0          0          0          0          0          0          0     GICv3 145 Level     arm-smmu-context-fault\n 98:          0          0          0          0          0          0          0          0     GICv3 146 Level     arm-smmu-context-fault\n 99:          0          0          0          0          0          0          0          0     GICv3 147 Level     arm-smmu-context-fault\n100:          0          0          0          0          0          0          0          0     GICv3 148 Level     arm-smmu-context-fault\n101:          0          0          0          0          0          0          0          0     GICv3 149 Level     arm-smmu-context-fault\n102:          0          0          0          0          0          0          0          0     GICv3 150 Level     arm-smmu-context-fault\n103:          0          0          0          0          0          0          0          0     GICv3 213 Level     arm-smmu-context-fault\n104:          0          0          0          0          0          0          0          0     GICv3 214 Level     arm-smmu-context-fault\n105:          0          0          0          0          0          0          0          0     GICv3 215 Level     arm-smmu-context-fault\n106:          0          0          0          0          0          0          0          0     GICv3 216 Level     arm-smmu-context-fault\n107:          0          0          0          0          0          0          0          0     GICv3 211 Level     arm-smmu-context-fault\n108:          0          0          0          0          0          0          0          0     GICv3 218 Level     arm-smmu-context-fault\n109:          0          0          0          0          0          0          0          0     GICv3 219 Level     arm-smmu-context-fault\n110:          0          0          0          0          0          0          0          0     GICv3 220 Level     arm-smmu-context-fault\n111:          0          0          0          0          0          0          0          0     GICv3 221 Level     arm-smmu-context-fault\n112:          0          0          0          0          0          0          0          0     GICv3 222 Level     arm-smmu-context-fault\n113:          0          0          0          0          0          0          0          0     GICv3 223 Level     arm-smmu-context-fault\n114:          0          0          0          0          0          0          0          0     GICv3 224 Level     arm-smmu-context-fault\n115:          0          0          0          0          0          0          0          0     GICv3 347 Level     arm-smmu-context-fault\n116:          0          0          0          0          0          0          0          0     GICv3 348 Level     arm-smmu-context-fault\n117:          0          0          0          0          0          0          0          0     GICv3 349 Level     arm-smmu-context-fault\n118:          0          0          0          0          0          0          0          0     GICv3 350 Level     arm-smmu-context-fault\n119:          0          0          0          0          0          0          0          0     GICv3 351 Level     arm-smmu-context-fault\n120:          0          0          0          0          0          0          0          0     GICv3 352 Level     arm-smmu-context-fault\n121:          0          0          0          0          0          0          0          0     GICv3 353 Level     arm-smmu-context-fault\n122:          0          0          0          0          0          0          0          0     GICv3 354 Level     arm-smmu-context-fault\n161:          0          0          0          0          0          0          0          0       PDC  14 Edge      dp_hs_phy_irq\n162:          1          0          0          0          0          0          0          0     GICv3 176 Level     pwr_event_irq\n163:          0          0          0          0          0          0          0          0       PDC   9 Level     ss_phy_irq\n164:          0          0          0          0          0          0          0          0       PDC  15 Edge      dm_hs_phy_irq\n165:          0          0          0          0          0          0          0          0     GICv3 206 Level     msm_vidc\n166:          0          0          0          0          0          0          0          0     GICv3 332 Level     kgsl_3d0_irq\n167:          0          0          0          0          0          0          0          0     GICv3 336 Level     kgsl_hfi_irq\n168:          0          0          0          0          0          0          0          0     GICv3 337 Level     kgsl_gmu_irq\n169:          0          0          0          0          0          0          0          0     GICv3 396 Level     error_irq\n170:          0          0          0          0          0          0          0          0     GICv3 398 Edge      wdg_bite_irq\n171:          0          0          0          0          0          0          0          0     GICv3 400 Edge      ipc_irq\n172:          0          0          0          0          0          0          0          0     GICv3 397 Level     general_irq\n175:         53          0          0          0          0          0          0          0     GICv3 633 Level     spi_geni\n176:          0          0          0          0          0          0          0          0     GICv3 637 Level     spi_geni\n177:         97          0          0          0          0          0          0          0     GICv3 386 Level     i2c_geni\n178:       1818          0          0          0          0          0          0          0     GICv3 388 Level     i2c_geni\n179:          4          0          0          0          0          0          0          0     GICv3 390 Level     i2c_geni\n180:          0          0          0          0          0          0          0          0     GICv3 385 Level     spi_geni\n181:          0          0          0          0          0          0          0          0     GICv3 509 Edge      csiphy\n182:          0          0          0          0          0          0          0          0     GICv3 510 Edge      csiphy\n183:          0          0          0          0          0          0          0          0     GICv3 511 Edge      csiphy\n184:          0          0          0          0          0          0          0          0     GICv3 480 Edge      csiphy\n185:          0          0          0          0          0          0          0          0     GICv3 492 Edge      cci\n186:          0          0          0          0          0          0          0          0     GICv3 303 Edge      cci\n187:          1          0          0          0          0          0          0          0     GICv3 493 Edge      cpas-cdm\n188:          0          0          0          0          0          0          0          0     GICv3 496 Edge      csid\n189:          2          0          0          0          0          0          0          0     GICv3 497 Edge      ife\n190:          0          0          0          0          0          0          0          0     GICv3 498 Edge      csid\n191:          2          0          0          0          0          0          0          0     GICv3 499 Edge      ife\n192:          0          0          0          0          0          0          0          0     GICv3 500 Edge      csid-lite\n193:          2          0          0          0          0          0          0          0     GICv3 501 Edge      ife-lite\n194:          0          0          0          0          0          0          0          0     GICv3 495 Edge      a5\n195:          0          0          0          0          0          0          0          0     GICv3 506 Edge      jpeg\n196:          0          0          0          0          0          0          0          0     GICv3 507 Edge      jpegdma\n197:          2          0          0          0          0          0          0          0     GICv3 494 Edge      fd\n198:          1          0          0          0          0          0          0          0     GICv3 508 Edge      lrme\n199:          0          0          0          0          0          0          0          0     GICv3 491 Edge      cpas_camnoc\n200:          0          0          0          0          0          0          0          0     GICv3 115 Level     msm_drm\n201:          0          0          0          0          0          0          0          0  pmic_arb 8388818 Edge      pon_kpdpwr_status\n202:          0          0          0          0          0          0          0          0  pmic_arb 8454354 Edge      pon_resin_status\n203:          0          0          0          0          0          0          0          0  pmic_arb 37748947 Edge      qcom,temp-alarm\n214:          0          0          0          0          0          0          0          0  pmic_arb 101777624 Edge      pm8xxx_rtc_alarm\n215:          4          0          0          0          0          0          0          0  pmic_arb 51380436 Edge      pm-adc5\n216:          0          0          0          0          0          0          0          0  pmic_arb 55574741 Edge      thr-int-en\n217:          0          0          0          0          0          0          0          0  pmic_arb 560988393 Edge      sig-tx\n218:          0          0          0          0          0          0          0          0  pmic_arb 561053929 Edge      sig-rx\n219:          0          0          0          0          0          0          0          0  pmic_arb 561119465 Edge      msg-tx\n220:          0          0          0          0          0          0          0          0  pmic_arb 561185001 Edge      msg-rx\n221:          0          0          0          0          0          0          0          0  pmic_arb 561250537 Edge      msg-tx-failed\n222:          0          0          0          0          0          0          0          0  pmic_arb 561316073 Edge      msg-tx-discarded\n223:          0          0          0          0          0          0          0          0  pmic_arb 561381609 Edge      msg-rx-discarded\n230:          0          0          0          0          0          0          0          0  pmic_arb 742392059 Level     cs35l41\n233:          0          0          0          0          0          0          0          0  pmic_arb 745537790 Level     cs35l41\n238:         29          0          0          0          0          0          0          0  pmic_arb 588251375 Edge      pm-adc5\n239:          0          0          0          0          0          0          0          0  pmic_arb 592445680 Edge      thr-int-en\n240:          0          0          0          0          0          0          0          0  pmic_arb 567279853 Edge      bcl-lvl0\n241:          0          0          0          0          0          0          0          0  pmic_arb 567345389 Edge      bcl-lvl1\n242:          0          0          0          0          0          0          0          0  pmic_arb 567410925 Edge      bcl-lvl2\n248:          0          0          0          0          0          0          0          0  pmic_arb 1279262991 Edge      volume_up\n256:         10          0          0          0          0          0          0          0  pmic_arb 1125122311 Edge      pm-adc5\n257:          0          0          0          0          0          0          0          0  pmic_arb 1137705225 Edge      bcl-lvl0\n258:          0          0          0          0          0          0          0          0  pmic_arb 1137770761 Edge      bcl-lvl1\n259:          0          0          0          0          0          0          0          0  pmic_arb 1137836297 Edge      bcl-lvl2\n260:          0          0          0          0          0          0          0          0  pmic_arb 1129316616 Edge      thr-int-en\n261:          0          0          0          0          0          0          0          0  pmic_arb 1563427102 Edge      qpnp_flash_led_fault_irq\n262:          0          0          0          0          0          0          0          0  pmic_arb 1563623710 Edge      qpnp_flash_led_all_ramp_down_done_irq\n263:          0          0          0          0          0          0          0          0  pmic_arb 1563689246 Edge      qpnp_flash_led_all_ramp_up_done_irq\n264:          6          0          0          0          0          0          0          0      ipcc   0 Edge      qcom,qmp-aop\n265:          0          0          0          0          0          0          0          0     GICv3 719 Level     capture bus\n266:          0          0          0          0          0          0          0          0     GICv3 720 Level     capture bus\n267:          0          0          0          0          0          0          0          0     GICv3 455 Level     capture bus\n268:          0          0          0          0          0          0          0          0     GICv3 456 Level     capture bus\n269:          0          0          0          0          0          0          0          0     GICv3 457 Level     capture bus\n270:          0          0          0          0          0          0          0          0     GICv3 721 Level     capture bus\n271:          0          0          0          0          0          0          0          0     GICv3 722 Level     capture bus\n272:          0          0          0          0          0          0          0          0     GICv3 723 Level     capture bus\n273:          0          0          0          0          0          0          0          0     GICv3 724 Level     capture bus\n274:          0          0          0          0          0          0          0          0     GICv3 725 Level     capture bus\n275:          0          0          0          0          0          0          0          0     GICv3  64 Level     limits_sensor-00\n276:          0          0          0          0          0          0          0          0     GICv3  65 Level     limits_sensor-01, limits_sensor-01\n277:          0          0          0          0          0          0          0          0      ipcc 131074 Edge      smp2p\n278:          0          0          0          0          0          0          0          0      ipcc 196610 Edge      smp2p\n279:          0          0          0          0          0          0          0          0      ipcc 393218 Edge      smp2p\n280:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n281:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n282:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n283:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n284:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n285:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n286:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n287:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n288:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n289:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n290:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n291:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n292:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n293:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n297:          0          0          0          0          0          0          0          0   msmgpio  26 Edge      spi2.0\n298:          2          0          0          0          0          0          0          0   msmgpio   9 Level     sec_ts\n299:          1          0          0          0          0          0          0          0   msmgpio 112 Edge      soc:fp_fpc1020\n301:          0          0          0          0          0          0          0          0   msmgpio  69 Edge      st21nfc_pw_stats_idle_handle\n302:          0          0          0          0          0          0          0          0   msmgpio 100 Level     p9221-irq\n303:          0          0          0          0          0          0          0          0   msmgpio  98 Edge      p9221-irq-det\n305:          1          0          0          0          0          0          0          0   msmgpio  11 Level     rt5514-switch-ack\n308:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n309:          0          0          0          0          0          0          0          0  pmic_arb 554696931 Edge      otg-fail\n313:          0          0          0          0          0          0          0          0  pmic_arb 554959075 Edge      high-duty-cycle\n314:          0          0          0          0          0          0          0          0  pmic_arb 555024611 Edge      input-current-limiting\n316:          0          0          0          0          0          0          0          0  pmic_arb 555155683 Edge      switcher-power-ok\n317:          0          0          0          0          0          0          0          0  pmic_arb 556794085 Edge      usbin-collapse\n318:          0          0          0          0          0          0          0          0  pmic_arb 556859621 Edge      usbin-vashdn\n319:          0          0          0          0          0          0          0          0  pmic_arb 556925157 Edge      usbin-uv\n320:          0          0          0          0          0          0          0          0  pmic_arb 556990693 Edge      usbin-ov\n321:          0          0          0          0          0          0          0          0  pmic_arb 557056229 Edge      usbin-plugin\n323:          0          0          0          0          0          0          0          0  pmic_arb 557187301 Edge      usbin-src-change\n324:          0          0          0          0          0          0          0          0  pmic_arb 557252837 Edge      usbin-icl-change\n326:          0          0          0          0          0          0          0          0  pmic_arb 557973734 Edge      dcin-uv\n327:          0          0          0          0          0          0          0          0  pmic_arb 558039270 Edge      dcin-ov\n328:          0          0          0          0          0          0          0          0  pmic_arb 558104806 Edge      dcin-plugin\n330:          0          0          0          0          0          0          0          0  pmic_arb 558235878 Edge      dcin-pon\n331:          0          0          0          0          0          0          0          0  pmic_arb 558301414 Edge      dcin-en\n332:          0          0          0          0          0          0          0          0  pmic_arb 558891239 Edge      typec-or-rid-detect-change\n334:          0          0          0          0          0          0          0          0  pmic_arb 559022311 Edge      typec-cc-state-change\n335:          0          0          0          0          0          0          0          0  pmic_arb 559087847 Edge      typec-vconn-oc\n337:          0          0          0          0          0          0          0          0  pmic_arb 559218919 Edge      typec-attach-detach\n338:          0          0          0          0          0          0          0          0  pmic_arb 559284455 Edge      typec-legacy-cable-detect\n340:          0          0          0          0          0          0          0          0  pmic_arb 559939816 Edge      wdog-snarl\n341:          0          0          0          0          0          0          0          0  pmic_arb 560005352 Edge      wdog-bark\n343:          0          0          0          0          0          0          0          0  pmic_arb 560136424 Edge      aicl-done\n344:          0          0          0          0          0          0          0          0  pmic_arb 560201960 Edge      smb-en\n346:          0          0          0          0          0          0          0          0  pmic_arb 560333032 Edge      temp-change\n349:          0          0          0          0          0          0          0          0  pmic_arb 612434161 Edge      qg-vbat-low\n350:          0          0          0          0          0          0          0          0  pmic_arb 612499697 Edge      qg-vbat-empty\n351:          0          0          0          0          0          0          0          0  pmic_arb 612565233 Edge      qg-fifo-done\n352:          0          0          0          0          0          0          0          0  pmic_arb 612630769 Edge      qg-good-ocv\n353:          0          0          0          0          0          0          0          0  pmic_arb 553648354 Edge      chgr-error\n354:          0          0          0          0          0          0          0          0  pmic_arb 553713890 Edge      chg-state-change\n355:          0          0          0          0          0          0          0          0  pmic_arb 555745508 Edge      bat-temp\n356:          0          0          0          0          0          0          0          0  pmic_arb 555876580 Edge      bat-ov\n357:          0          0          0          0          0          0          0          0  pmic_arb 555942116 Edge      bat-low\n358:          0          0          0          0          0          0          0          0  pmic_arb 556007652 Edge      bat-therm-or-id-missing\n359:          0          0          0          0          0          0          0          0  pmic_arb 556073188 Edge      bat-terminal-missing\n360:          0          0          0          0          0          0          0          0   msmgpio  10 Edge      TE_GPIO\n361:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n362:          0          0          0          0          0          0          0          0      ipcc 458754 Edge      smp2p\n363:          0          0          0          0          0          0          0          0     GICv3 272 Level     dwc3\nIPI0:        75         44         44         44         44         44         39         39       Rescheduling interrupts\nIPI1:         0          6          6          6          6          6          6          5       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         0          2          2          2          2          2          2          2       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm7250ab/new/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    6 root      0:00 [kworker/0:0H-ev]\n    8 root      0:00 [kworker/u16:0+M]\n    9 root      0:00 [mm_percpu_wq]\n   10 root      0:00 [ksoftirqd/0]\n   11 root      0:00 [rcu_preempt]\n   12 root      0:00 [rcu_sched]\n   13 root      0:00 [rcu_bh]\n   14 root      0:00 [rcuop/0]\n   15 root      0:00 [rcuos/0]\n   16 root      0:00 [rcuob/0]\n   17 root      0:00 [migration/0]\n   18 root      0:00 [cpuhp/0]\n   19 root      0:00 [cpuhp/1]\n   20 root      0:00 [migration/1]\n   21 root      0:00 [ksoftirqd/1]\n   22 root      0:00 [kworker/1:0-mm_]\n   23 root      0:00 [kworker/1:0H]\n   24 root      0:00 [rcuop/1]\n   25 root      0:00 [rcuos/1]\n   26 root      0:00 [rcuob/1]\n   27 root      0:00 [cpuhp/2]\n   28 root      0:00 [migration/2]\n   29 root      0:00 [ksoftirqd/2]\n   30 root      0:00 [kworker/2:0-mm_]\n   31 root      0:00 [kworker/2:0H]\n   32 root      0:00 [rcuop/2]\n   33 root      0:00 [rcuos/2]\n   34 root      0:00 [rcuob/2]\n   35 root      0:00 [cpuhp/3]\n   36 root      0:00 [migration/3]\n   37 root      0:00 [ksoftirqd/3]\n   38 root      0:00 [kworker/3:0-mm_]\n   39 root      0:00 [kworker/3:0H]\n   40 root      0:00 [rcuop/3]\n   41 root      0:00 [rcuos/3]\n   42 root      0:00 [rcuob/3]\n   43 root      0:00 [cpuhp/4]\n   44 root      0:00 [migration/4]\n   45 root      0:00 [ksoftirqd/4]\n   46 root      0:00 [kworker/4:0-mm_]\n   47 root      0:00 [kworker/4:0H]\n   48 root      0:00 [rcuop/4]\n   49 root      0:00 [rcuos/4]\n   50 root      0:00 [rcuob/4]\n   51 root      0:00 [cpuhp/5]\n   52 root      0:00 [migration/5]\n   53 root      0:00 [ksoftirqd/5]\n   54 root      0:00 [kworker/5:0-mm_]\n   55 root      0:00 [kworker/5:0H]\n   56 root      0:00 [rcuop/5]\n   57 root      0:00 [rcuos/5]\n   58 root      0:00 [rcuob/5]\n   59 root      0:00 [cpuhp/6]\n   60 root      0:00 [migration/6]\n   61 root      0:00 [ksoftirqd/6]\n   62 root      0:00 [kworker/6:0-mm_]\n   63 root      0:00 [kworker/6:0H]\n   64 root      0:00 [rcuop/6]\n   65 root      0:00 [rcuos/6]\n   66 root      0:00 [rcuob/6]\n   67 root      0:00 [cpuhp/7]\n   68 root      0:00 [migration/7]\n   69 root      0:00 [ksoftirqd/7]\n   70 root      0:00 [kworker/7:0-mm_]\n   71 root      0:00 [kworker/7:0H]\n   72 root      0:00 [rcuop/7]\n   73 root      0:00 [rcuos/7]\n   74 root      0:00 [rcuob/7]\n   75 root      0:00 [kdevtmpfs]\n   76 root      0:00 [netns]\n   77 root      0:00 [ksuspend_mon]\n   78 root      0:00 [rcu_tasks_kthre]\n   79 root      0:00 [kauditd]\n   80 root      0:00 [kworker/u16:1+L]\n   81 root      0:00 [kworker/u17:0-s]\n   82 root      0:00 [ipa_usb_wq]\n   83 root      0:00 [msm_watchdog]\n   85 root      0:00 [qmp_aop]\n   86 root      0:00 [oom_reaper]\n   87 root      0:00 [writeback]\n   88 root      0:00 [kcompactd0]\n   89 root      0:00 [crypto]\n   90 root      0:00 [kblockd]\n   91 root      0:00 [blk_crypto_wq]\n   92 root      0:00 [irq/71-arm-smmu]\n   93 root      0:00 [irq/265-capture]\n   94 root      0:00 [irq/266-capture]\n   95 root      0:00 [irq/80-arm-smmu]\n   96 root      0:00 [irq/267-capture]\n   97 root      0:00 [irq/268-capture]\n   98 root      0:00 [irq/269-capture]\n   99 root      0:00 [irq/270-capture]\n  100 root      0:00 [irq/271-capture]\n  101 root      0:00 [irq/272-capture]\n  102 root      0:00 [irq/273-capture]\n  103 root      0:00 [irq/274-capture]\n  104 root      0:00 [irq/12-tsens-up]\n  105 root      0:00 [irq/13-tsens-cr]\n  106 root      0:00 [irq/14-tsens-0C]\n  107 root      0:00 [irq/15-tsens-up]\n  108 root      0:00 [irq/16-tsens-cr]\n  109 root      0:00 [irq/17-tsens-0C]\n  110 root      0:00 [edac-poller]\n  111 root      0:00 [system]\n  112 root      0:00 [ipa_power_mgmt]\n  113 root      0:00 [transport_power]\n  114 root      0:00 [ipa_pm_activate]\n  115 root      0:00 [irq/84-arm-smmu]\n  116 root      0:00 [irq/85-arm-smmu]\n  117 root      0:00 [irq/86-arm-smmu]\n  118 root      0:00 [devfreq_wq]\n  119 root      0:00 [governor_msm_ad]\n  120 root      0:00 [irq/87-arm-smmu]\n  121 root      0:00 [irq/88-arm-smmu]\n  122 root      0:00 [watchdogd]\n  123 root      0:00 [cfg80211]\n  164 root      0:00 [kswapd0]\n  165 root      0:00 [ecryptfs-kthrea]\n  218 root      0:00 [irq/89-arm-smmu]\n  219 root      0:00 [irq/90-arm-smmu]\n  220 root      0:00 [irq/277-smp2p]\n  221 root      0:00 [irq/278-smp2p]\n  222 root      0:00 [irq/279-smp2p]\n  223 root      0:00 [mem_share_svc]\n  224 root      0:00 [rq_stats]\n  225 root      0:00 [irq/91-arm-smmu]\n  226 root      0:00 [hwrng]\n  228 root      0:00 [diag_real_time_]\n  229 root      0:00 [diag_wq]\n  230 root      0:00 [DIAG_USB_diag]\n  231 root      0:00 [diag_cntl_wq]\n  232 root      0:00 [diag_dci_wq]\n  233 root      0:00 [MODEM_CNTL]\n  234 root      0:00 [MODEM_DATA]\n  235 root      0:00 [MODEM_CMD]\n  236 root      0:00 [MODEM_DCI]\n  237 root      0:00 [MODEM_DCI_CMD]\n  238 root      0:00 [LPASS_CNTL]\n  239 root      0:00 [LPASS_DATA]\n  240 root      0:00 [LPASS_CMD]\n  241 root      0:00 [LPASS_DCI]\n  242 root      0:00 [LPASS_DCI_CMD]\n  243 root      0:00 [WCNSS_CNTL]\n  244 root      0:00 [WCNSS_DATA]\n  245 root      0:00 [WCNSS_CMD]\n  246 root      0:00 [WCNSS_DCI]\n  247 root      0:00 [WCNSS_DCI_CMD]\n  248 root      0:00 [SENSORS_CNTL]\n  249 root      0:00 [SENSORS_DATA]\n  250 root      0:00 [SENSORS_CMD]\n  251 root      0:00 [SENSORS_DCI]\n  252 root      0:00 [SENSORS_DCI_CMD]\n  253 root      0:00 [DIAG_CTRL]\n  254 root      0:00 [DIAG_DATA]\n  255 root      0:00 [DIAG_CMD]\n  256 root      0:00 [DIAG_DCI_DATA]\n  257 root      0:00 [DIAG_DCI_CMD]\n  258 root      0:00 [CDSP_CNTL]\n  259 root      0:00 [CDSP_DATA]\n  260 root      0:00 [CDSP_CMD]\n  261 root      0:00 [CDSP_DCI]\n  262 root      0:00 [CDSP_DCI_CMD]\n  263 root      0:00 [NPU_CNTL]\n  264 root      0:00 [NPU_DATA]\n  265 root      0:00 [NPU_CMD]\n  266 root      0:00 [NPU_DCI]\n  267 root      0:00 [NPU_DCI_CMD]\n  268 root      0:00 [DIAG_RPMSG_DIAG]\n  269 root      0:00 [DIAG_RPMSG_DIAG]\n  270 root      0:00 [DIAG_RPMSG_DIAG]\n  271 root      0:00 [DIAG_RPMSG_DIAG]\n  272 root      0:00 [DIAG_RPMSG_DIAG]\n  273 root      0:00 [kworker/u16:2+W]\n  274 root      0:00 [kgsl-workqueue]\n  275 root      0:00 [kgsl-mementry]\n  276 root      0:00 [kworker/u16:3+S]\n  277 root      0:00 [kworker/u16:4+D]\n  278 root      0:00 [kgsl_worker_thr]\n  279 root      0:00 [kworker/u16:5+C]\n  280 root      0:00 [kworker/u16:6+N]\n  281 root      0:00 [qseecom-unreg-l]\n  282 root      0:00 [qseecom-unload-]\n  283 root      0:00 [kworker/u16:7-r]\n  284 root      0:00 [irq/92-arm-smmu]\n  285 root      0:00 [irq/93-arm-smmu]\n  287 root      0:00 [irq/94-arm-smmu]\n  288 root      0:00 [qcrypto_seq_res]\n  289 root      0:00 [irq/95-arm-smmu]\n  310 root      0:00 [scsi_eh_0]\n  311 root      0:00 [scsi_tmf_0]\n  312 root      0:00 [ufs_pm_qos_0]\n  313 root      0:00 [kworker/1:1-mm_]\n  314 root      0:00 [kworker/2:1-mm_]\n  315 root      0:00 [kworker/3:1-mm_]\n  316 root      0:00 [kworker/4:1-mm_]\n  317 root      0:00 [kworker/6:1-mm_]\n  318 root      0:00 [kworker/5:1-mm_]\n  319 root      0:00 [kworker/7:1-mm_]\n  320 root      0:00 [ufs_recovery_wq]\n  321 root      0:00 [ufs_clk_gating_]\n  322 root      0:00 [ufs_mgc_hibern8]\n  323 root      0:00 [spi0]\n  324 root      0:00 [spi1]\n  325 root      0:00 [spi2]\n  326 root      0:00 [bond0]\n  327 root      0:00 [k_ipa_usb]\n  328 root      0:00 [kworker/u16:9-r]\n  329 root      0:00 [irq/299-soc:fp_]\n  330 root      0:00 [kdbgd]\n  331 root      0:00 [st_pstate_work]\n  334 root      0:00 [kworker/u16:11-]\n  335 root      0:00 [irq/302-p9221-i]\n  336 root      0:00 [irq/303-p9221-i]\n  337 root      0:00 [irq/240-bcl-lvl]\n  339 root      0:00 [irq/241-bcl-lvl]\n  340 root      0:00 [irq/242-bcl-lvl]\n  341 root      0:00 [irq/257-bcl-lvl]\n  342 root      0:00 [irq/258-bcl-lvl]\n  343 root      0:00 [irq/259-bcl-lvl]\n  344 root      0:00 [irq/275-limits_]\n  345 root      0:00 [irq/276-limits_]\n  346 root      0:00 [irq/276-limits_]\n  347 root      0:00 [kworker/0:1H-kb]\n  348 root      0:00 [dm_bufio_cache]\n  349 root      0:00 [irq/27-KRYO L3-]\n  350 root      0:00 [memlat_wq]\n  351 root      0:00 [irq/96-arm-smmu]\n  352 root      0:00 [uaudio_svc]\n  353 root      0:00 [irq/305-rt5514-]\n  354 root      0:00 [dsi_dma_cmd_wor]\n  355 root      0:00 [irq/97-arm-smmu]\n  356 root      0:00 [irq/98-arm-smmu]\n  357 root      0:00 [irq/99-arm-smmu]\n  358 root      0:00 [irq/100-arm-smm]\n  359 root      0:00 [irq/101-arm-smm]\n  360 root      0:00 [irq/102-arm-smm]\n  361 root      0:00 [cam-cpas]\n  362 root      0:00 [cs35l41_ramp]\n  363 root      0:00 [irq/230-cs35l41]\n  364 root      0:00 [qcom,cam_virtua]\n  365 root      0:00 [qcom,cam170-cpa]\n  366 root      0:00 [crm_workq-cam_i]\n  367 root      0:00 [cam_cci_wq]\n  368 root      0:00 [cam_cci_wq]\n  369 root      0:00 [cam_cci_wq]\n  370 root      0:00 [cam_cci_wq]\n  371 root      0:00 [cam_vsync_clien]\n  372 root      0:00 [crm_workq-icp_c]\n  373 root      0:00 [crm_workq-icp_m]\n  374 root      0:00 [crm_workq-icp_t]\n  375 root      0:00 [crm_workq-jpeg_]\n  376 root      0:00 [crm_workq-jpeg_]\n  377 root      0:00 [crm_workq-cam_f]\n  378 root      0:00 [crm_workq-cam_l]\n  379 root      0:00 [crm_workq-cam_l]\n  381 root      0:00 [apr_driver]\n  382 root      0:00 [ipv6_addrconf]\n  384 root      0:00 [irq/72-arm-smmu]\n  385 root      0:00 [irq/73-arm-smmu]\n  386 root      0:00 [irq/74-arm-smmu]\n  387 root      0:00 [cs35l41]\n  388 root      0:00 [kgsl-events]\n  389 root      0:00 [kgsl_devfreq_wq]\n  390 root      0:00 [cs35l41_ramp]\n  391 root      0:00 [irq/233-cs35l41]\n  392 root      0:00 [irq/103-arm-smm]\n  393 root      0:00 [npu_general_wq]\n  394 root      0:00 [c440000.qcom,sp]\n  399 root      0:00 [irq/309-otg-fai]\n  401 root      0:00 [irq/313-high-du]\n  402 root      0:00 [irq/314-input-c]\n  403 root      0:00 [irq/316-switche]\n  404 root      0:00 [irq/317-usbin-c]\n  405 root      0:00 [irq/318-usbin-v]\n  406 root      0:00 [irq/319-usbin-u]\n  407 root      0:00 [irq/320-usbin-o]\n  408 root      0:00 [irq/321-usbin-p]\n  409 root      0:00 [irq/323-usbin-s]\n  410 root      0:00 [irq/324-usbin-i]\n  411 root      0:00 [irq/326-dcin-uv]\n  412 root      0:00 [irq/327-dcin-ov]\n  413 root      0:00 [irq/328-dcin-pl]\n  414 root      0:00 [irq/330-dcin-po]\n  415 root      0:00 [irq/331-dcin-en]\n  416 root      0:00 [irq/332-typec-o]\n  417 root      0:00 [irq/334-typec-c]\n  418 root      0:00 [irq/335-typec-v]\n  419 root      0:00 [irq/337-typec-a]\n  420 root      0:00 [irq/338-typec-l]\n  421 root      0:00 [irq/340-wdog-sn]\n  422 root      0:00 [irq/341-wdog-ba]\n  423 root      0:00 [irq/343-aicl-do]\n  424 root      0:00 [irq/344-smb-en]\n  425 root      0:00 [irq/346-temp-ch]\n  426 root      0:00 [irq/349-qg-vbat]\n  427 root      0:00 [irq/350-qg-vbat]\n  428 root      0:00 [irq/351-qg-fifo]\n  429 root      0:00 [irq/352-qg-good]\n  430 root      0:00 [irq/353-chgr-er]\n  431 root      0:00 [irq/354-chg-sta]\n  432 root      0:00 [irq/355-bat-tem]\n  433 root      0:00 [irq/356-bat-ov]\n  434 root      0:00 [irq/357-bat-low]\n  435 root      0:00 [irq/358-bat-the]\n  436 root      0:00 [irq/359-bat-ter]\n  437 root      0:00 [irq/203-qcom,te]\n  440 root      0:00 [irq/216-thr-int]\n  441 root      0:00 [irq/239-thr-int]\n  442 root      0:00 [irq/260-thr-int]\n  443 root      0:00 [dsi_dma_cmd_wor]\n  444 root      0:00 [dsi_dimming_wor]\n  445 root      0:00 [panel]\n  446 root      0:00 [irq/83-arm-smmu]\n  447 root      0:00 [irq/104-arm-smm]\n  448 root      0:00 [crtc_commit:105]\n  449 root      0:00 [crtc_event:105]\n  450 root      0:00 [crtc_commit:157]\n  451 root      0:00 [crtc_event:157]\n  452 root      0:00 [pp_event]\n  453 root      0:00 [msm_vidc_worker]\n  454 root      0:00 [pm_workerq_venu]\n  455 root      0:00 [vidc_core_workq]\n  456 root      0:00 [irq/105-arm-smm]\n  457 root      0:00 [irq/106-arm-smm]\n  458 root      0:00 [irq/107-arm-smm]\n  459 root      0:00 [irq/108-arm-smm]\n  460 root      0:00 [ois_worker]\n  461 root      0:00 [irq/362-smp2p]\n  462 root      0:00 [irq/217-sig-tx]\n  463 root      0:00 [irq/218-sig-rx]\n  464 root      0:00 [usbpd0]\n  465 root      0:00 [usbpd0]\n  466 root      0:00 [cs35l41]\n  467 root      0:00 [irq/298-sec_ts]\n  468 root      0:00 [irq/109-arm-smm]\n  469 root      0:00 [irq/162-pwr_eve]\n  470 root      0:00 [irq/161-dp_hs_p]\n  471 root      0:00 [irq/164-dm_hs_p]\n  472 root      0:00 [irq/163-ss_phy_]\n  477 root      0:00 [cdsprm-wq]\n  478 root      0:00 [cdsprm-wq-delay]\n  479 root      0:00 [irq/110-arm-smm]\n  480 root      0:00 [irq/111-arm-smm]\n  481 root      0:00 [irq/112-arm-smm]\n  482 root      0:00 [irq/113-arm-smm]\n  483 root      0:00 [irq/114-arm-smm]\n  484 root      0:00 [irq/115-arm-smm]\n  485 root      0:00 [irq/116-arm-smm]\n  486 root      0:00 [irq/117-arm-smm]\n  487 root      0:00 [irq/118-arm-smm]\n  488 root      0:00 [irq/119-arm-smm]\n  489 root      0:00 [irq/120-arm-smm]\n  490 root      0:00 [irq/121-arm-smm]\n  491 root      0:00 [irq/122-arm-smm]\n  492 root      0:00 [sb-1]\n  493 root      0:00 [ngd_rx_thread1]\n  494 root      0:00 [ngd_notify_sl1]\n  495 root      0:00 [irq/263-qpnp_fl]\n  496 root      0:00 [irq/262-qpnp_fl]\n  497 root      0:00 [irq/261-qpnp_fl]\n  498 root      0:00 [cds_recovery_wo]\n  501 root      0:00 [wlan_logging_th]\n  509 root      0:00 [kworker/u17:1]\n  524 root      0:00 [kworker/0:1-eve]\n  525 root      0:00 [kworker/0:2-eve]\n  569 root      0:00 [kworker/0:0-eve]\n  570 root      0:00 [kworker/0:3-eve]\n  595 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm7250ab/new/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1113.962856,3.7132095200000004,108.93705519651303,24.449669451946253,10.225087111764587,224.438501737\r\n1,576000,2138.799535,3.713193637152778,134.307117355485,15.699846223392036,15.923722846884429,116.895117195\r\n1,614400,2280.980274,3.7125329980468753,137.53961398733037,15.075545158857134,16.583148228846692,109.608749958\r\n1,864000,3208.254196,3.7132571712962963,154.13634503731623,12.011763800420805,20.81293007037333,77.929470804\r\n1,1075200,3350.263331,3.115944318266369,164.46967487212805,12.273701925557303,20.368752762312862,74.625926847\r\n1,1363200,5061.650908,3.7130655134976522,199.0511201464797,9.831963764661488,25.42727027723209,49.394164461\r\n1,1516800,5631.899076,3.713013631329114,211.88054823688645,9.406353529444313,26.57778056262031,44.394606337\r\n1,1651200,6130.155461,3.7125457007025195,223.82673692282108,9.12875984598797,27.385976213392595,40.784939152\r\n1,1804800,6700.616457,3.7126642603058513,277.60618486580415,10.358492887937416,24.1347851183185,37.313624309\r\n6,652800,4992.112462,7.647231099877452,194.64336363700514,9.750093372117773,25.640780088826844,50.092092481\r\n6,940800,7330.303475,7.791564067814626,227.3065584769038,7.755351152662849,32.23580661646261,34.118466289\r\n6,1152000,8596.382642,7.462137710069445,246.4133988461914,7.169531361733478,34.86978261010829,29.095541863\r\n6,1478400,11508.009575,7.784097385687229,346.5871688817908,7.534058478120671,33.1826466075375,21.737845929\r\n6,1728000,13465.474523,7.792519978587963,520.4937210037535,9.67034587713791,25.85222940071213,18.579178743\r\n6,1900800,14817.449028,7.795375119949496,506.08880987342434,8.544852884969092,29.257379075509302,16.884097649\r\n6,2092800,16310.020877,7.793396825783639,666.9257704674334,10.230433074066303,24.436893158877016,15.339687754\r\n6,2208000,17217.630854,7.797840060688405,756.8350143684387,10.999087792717246,22.729157609372923,14.533005984\r\n7,806400,6280.144695,7.787877845982143,213.972281178274,8.520854004312927,29.33978212435745,39.822232849\r\n7,1094400,8532.132009,7.796173253837719,288.04175974431047,8.443649300984463,29.608051103076008,29.313976239\r\n7,1401600,10932.785236,7.800217776826484,382.857211953289,8.759432263509757,28.540662508625786,22.879109992\r\n7,1766400,13758.186121,7.788828193500906,539.9743996073473,9.819027531612091,25.460769836435617,18.184246399\r\n7,1996800,15558.874782,7.791904438100962,647.8228669420159,10.417631590055729,23.997777022431894,16.080987754\r\n7,2188800,17063.68166,7.79590719115497,728.3285552734138,10.679909722597156,23.408437570500794,14.663587807\r\n7,2304000,17961.060421,7.795599141059027,789.3466116065455,10.996620786916642,22.734256717976525,13.931295359\r\n7,2400000,18711.174313,7.796322630416666,830.4280865887116,11.104908103947572,22.512568105910756,13.372510255\r\n"
  },
  {
    "path": "results/sm7250ab/new/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 1424.8948347689584, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [897.71803875, 896.392212066, 896.1784186680001, 911.766387356, 772.0809413459999, 777.25638122, 795.327685892, 789.583139352, 779.642854685, 772.1177774309999, 773.221120982, 776.849325736, 777.9102725890001, 796.080196212, 773.877386776, 750.3045526200001, 757.750383531, 755.3270772320001, 729.0467823059998, 722.784834968, 710.38970835, 751.1959885409999, 720.4614546869999, 706.716190908, 686.6091286390001, 692.939319021, 680.641549596, 672.00829527, 685.26570343, 657.078811875, 650.8130844299999, 648.413647674, 642.0559587749999, 644.609484375, 658.29350676, 664.622865212, 702.7446651, 665.805706875, 659.5751287499999, 670.794255, 688.317660398, 687.165540298, 674.7615537, 677.4158516, 710.4912951499999, 698.604798492, 683.068250852, 680.4469304280001, 697.2779045609999, 703.61558724, 718.688352864, 717.33886896, 741.8637018750001, 719.9011981, 733.5907976650001, 736.014531598, 731.06215068, 749.7727436, 744.82095945, 758.255999106, 775.381382874, 763.532444885, 770.944492068, 767.277194865, 769.661006303, 777.071390568, 772.0809413459999, 777.391353564, 795.928285759, 759.697967621, 776.7753674999999, 769.1846250130001, 783.9198417150001, 767.609332532, 762.7327085909999, 795.9663121240001, 757.7142018659999, 753.937734404, 720.3240460979999, 710.3557880999999, 729.0467823059998, 704.258413768, 691.825678544, 709.0427184050001, 698.092011708, 690.546891619, 681.822491467, 679.26218976, 652.06322601, 654.2435560280001, 668.110969318, 659.0409304079999, 656.984888907, 653.30928216, 690.678425745, 664.52787294, 670.73022324, 732.8224227390001, 758.4895180960001, 665.742151305, 667.087582311, 669.835255383, 658.575810024, 691.040567259, 682.342314601, 688.5472672889999, 725.4485766839999, 703.548632949, 693.69896295, 708.6366995449999, 709.9215357500001, 708.7723531400001, 715.9727883, 725.2411258679999, 751.661745692, 737.230217989, 728.5644071199999, 718.483216437, 739.758925254], \"power_mean\": 724.2623524908992, \"energy_millijoules\": 3621.3117624544957, \"energy_joules\": 3.6213117624544955}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 224.438501737, \"elapsed_ns\": 224438501737, \"power_samples\": [170.528587527, 184.35631049200003, 158.0264023410001, 181.6685171890001, 178.74293195500013, 179.0168437750001, 171.42503198400004, 173.72471494500007, 183.64734266800008, 160.06262504400001, 145.22938364200013, 151.30696898100007, 158.89414812100006, 153.91035334900016, 153.94837971400023, 139.00036304000014, 135.2241842530001, 142.84760608500005, 120.31330123400005, 134.60837630900016, 124.08875686800002, 119.28591465300008, 110.3133738570001, 123.86954312399996, 116.43355932100019, 107.89090074000012, 125.40711909300012, 114.1924613760001, 113.01923562500008, 115.4055280770001, 94.29663232000019, 105.54344572500008, 88.10129692500004, 88.1359905270001, 86.99082353099993, 83.21980143300004, 74.63399993700011, 59.47675374100015, 75.36659510800018, 74.39500162500008, 90.48707121300015, 80.5566532470001, 79.34168390499997, 72.07049337000012, 65.7034720910001, 58.12733781300017, 58.260771037000154, 55.70348542500017, 49.505838193000045, 52.03375531200004, 54.491295967000156, 53.27915845700022, 53.27915845700022, 51.048455966999995, 60.755660616000114, 44.585959309000145, 53.11346823300005, 48.22769552500017, 35.86363748500003, 37.14136618500004, 42.09503406900012, 48.3264306530001, 52.13302538400012, 47.04805944300017, 49.57189327300023, 67.02062040500005, 50.751181863000056, 68.26608302499994, 86.95618929300008, 66.98675963000017, 57.148735029000136, 52.03375531200004, 50.94936459900009, 73.11555878000001, 40.75190562500006, 57.115350444000114, 99.45420878700008, 67.05430753500002, 77.05690230300013, 109.3908503890001, 78.26808732300003, 75.91397714200014, 82.18143338900006, 78.4741120110001, 72.34275817500009, 74.80473808500017, 69.91843107000011, 83.01235061700004, 66.0745908900002, 89.45119801700014, 125.88272873300014, 83.63452545300004, 81.10783747500011, 88.58861685, 81.00446830700014, 87.33841559999996, 91.11566004200017, 92.29191286499997, 78.78314904299998, 96.10444504100008, 83.66915979300018, 137.32711484000015, 102.30405997500009, 96.0693962250001, 145.1541639520001, 112.27707060000012, 117.37415629300017, 106.11363469500009, 114.87748259400007, 112.42071351800007, 107.39563391500008, 104.90304642500007, 149.75635022900008, 112.45671656299999, 121.14927032599996, 163.51154211200014, 121.18568989100004, 129.84117995200006, 131.09155990600004, 137.64380794500005, 142.31228982000016, 123.54091019100008, 143.29653318500016, 178.24069923000013, 127.27515819200016, 136.07673488600005, 186.9704318470002, 136.07673488600005, 143.4836021650001, 144.69650497500004, 143.521092865, 174.61962247500003, 148.54784475400004, 162.18848154700004, 163.47309922700003, 167.13884310000014, 161.46057462300007, 207.87994336500003, 173.45246476500006, 163.28127908800013, 174.54166537499998, 175.7876620500001, 183.26772733500025, 174.54166537499998, 186.9704318470002, 170.76098915900002, 156.97141150900006, 165.700312833, 195.4965385290002, 163.05101606400012, 166.75322222700004, 210.0459787650002, 181.47224265600016, 193.61302989400008, 180.14852456100004, 183.37176784600013, 175.0085031100001, 175.04734094000003, 170.02518330700002, 181.04035799500014, 157.60693333899997, 150.02028994800014, 179.71729290500002, 150.02028994800014, 147.530908618, 131.45244424300006, 143.83438699300007, 125.07776411700013, 137.45792602500012, 112.69522775300015, 113.79586039500009, 112.76716785700012, 115.04445361500007, 131.41567852700007, 97.78541220700015, 91.73217759300007, 96.68139647400005, 85.53731666700014, 74.3607838050001, 66.85166382000023, 71.86625105000007, 75.53763002100004, 78.06223902600004, 79.10102395299998, 86.71285699200007, 65.73727319600016, 66.75025514000015, 71.86625105000007, 63.04471943400017, 49.4070943170002, 45.73712652500012, 58.22732697700019, 61.86691788900009, 58.12733781300017, 53.21291642500012, 60.588188829000046, 44.52038041900005, 37.01196922500003, 45.70427741000003, 51.835215168000104, 45.70427741000003, 39.53900573900023, 44.48775912500014, 51.967631925000205, 69.37580100000002, 53.245952297000144, 63.112083744000074, 66.8853509500002, 64.45812842099997, 56.88217195800007, 53.245952297000144, 55.70348542500017, 60.68870632500011, 70.68892986500009, 78.06223902600004, 94.29663232000019, 65.804702067, 79.58252055300011, 65.93973314799996, 70.48521834500013, 80.96995291700011, 72.0024708850001, 74.90721606900013, 69.78286068000011, 89.7648686550001, 88.41461234100007, 89.6254992910001, 83.49634331700008, 87.23415583200017, 87.19934306700009, 88.41461234100007, 105.72160689000009, 77.33106820500007, 92.29191286499997, 104.76064522500019, 103.5501756000001, 107.60485648500003, 99.7723351950001, 115.58606530800012, 98.52627904500002, 119.68512979500008, 107.28852247500004, 104.68953602500017, 111.03095497499999, 108.46298925000019, 112.24106755500009, 106.04240685000002, 130.68646343700004, 135.89125704000014, 130.98106185000006, 137.17853227500018, 124.78280860200005, 130.87056379400008, 133.49824227300007, 131.0546641510001, 138.12713914500011, 143.4088130250001, 137.1413389500002, 148.43485184999997, 155.83945954500018, 159.6197992650001, 160.86585541500006, 172.00692666400005, 179.36918849500012, 174.50288671500005, 155.76348317700013, 165.81560341500006, 164.6425262250001, 164.4887142330001, 168.11458859300012, 169.52158011300003, 179.3299720450002, 191.87476284900004, 171.96806725900012, 175.5540344850001, 178.12342911000007, 166.90751018800006, 171.73530938700003, 154.32786333600018, 169.1282431110002, 181.51137653, 176.68258322500014, 172.82963772500023, 167.76725322900006, 178.82116374500015, 170.528587527, 181.15796133800006, 161.345621231, 169.90898249099996, 162.43711276200008, 152.513752231, 152.513752231, 149.98263629400014, 148.73800479900012, 153.83449562600003, 167.38103852100016, 161.0775278750001, 137.64380794500005, 155.04121940100026, 146.24874180900008, 146.211072489, 135.0758400620001, 130.42857157000003, 132.51261914099996, 118.7416320750001, 118.777992165, 120.09515737800018, 105.18694029000005, 116.39731818100006, 107.67632162000007, 113.75973840000017, 105.2938736100001, 132.43877955000016, 122.55196241700003, 102.69755896000004, 111.41447456800006, 95.36607127299999, 105.22264576500004, 108.92509323799993, 99.52502459700008, 92.83702268600007, 94.90899135300003, 87.82285394400003, 79.23849344100017, 87.96198601800006, 74.25830582100002, 75.53763002100004, 70.51908298500018, 64.28976633900015, 82.83953414100006, 86.57396298600008, 66.81780304500012, 82.90862520900009, 72.91095905199995, 86.67822275399999, 79.13530297700004, 70.99475898500009, 79.10102395299998, 64.02035240099997, 79.23849344100017, 64.22245611300013, 66.78394227000013, 79.20421441700012, 50.55316880400005, 55.503876561000084, 49.2421259890001, 53.04722620100017, 65.39995550200013, 45.57321786400007, 53.11346823300005, 46.94950243500011, 64.32350796900005, 44.3567694960002, 44.52038041900005, 51.76909178100004, 35.37887368500003, 53.080262073000085, 36.91483834500002, 41.9320166760001, 38.131534971000065, 43.07916046700018, 40.62162878100003, 36.94727074500008, 45.50751963400012, 58.02717714100015, 38.066717457000095, 59.27624680300016, 66.81780304500012, 58.02717714100015, 66.85166382000023, 64.62666353700013, 69.24023061000014, 56.81540278800014, 71.76412989000016, 58.09389375300009, 57.92701646900002, 55.53720167100016, 49.374066777000166, 64.35724959900006, 48.06319333400006, 64.12140425700011, 61.76622227300004, 69.34199553000008, 79.23849344100017, 75.57190731600008, 80.59099163500014, 73.14971712500017, 85.53731666700014, 75.67438763900009, 67.79206927500002, 69.51154564500007, 72.03639469500001, 78.37109966700007, 60.85617811200018, 67.2234377650002, 74.70243557700007, 77.09123907300022, 88.20573539700001, 79.58252055300011, 94.64779129300018, 77.1253997570002, 78.40549591199999, 90.87125867600014, 85.8148083210001, 82.94325954900012, 92.08196720100011, 96.96316520699997, 99.63106673300013, 89.73011588300017, 97.174536999, 98.34989944300014, 102.16213396500007, 103.26603088500019, 110.70801582299998, 123.24488626100015, 113.34324349700012, 117.15708115700022, 105.97099590000005, 104.68953602500017, 119.61259607700003, 114.5890623570001, 103.65763002500012, 103.40801199500015, 120.67674981599998, 112.0614215920001, 112.09742463700013, 119.50370226900009, 129.65718843000013, 124.41757748400005, 123.24488626100015, 140.58092992500008, 141.82645171500008, 123.31796368100004, 136.9557537950002, 138.27595930500001, 124.52718435600013, 139.76028462500017, 128.2276859010002, 145.83515199299995, 154.51760514700004, 148.0581443430001, 160.71295274099998, 159.42886942100006, 155.68750680900007, 166.9461316930001, 163.12770469100008, 155.61153044100013, 172.90727629000025, 155.57344460100012, 161.92038819100003, 163.12770469100008, 155.68750680900007, 173.14039157000013, 167.34255590500015, 163.08945894900012, 174.69679949500005, 170.41238671100007, 176.64348572500023, 169.24426580700015, 175.28116870000008, 164.21979005700018, 172.98491485500017, 167.88289944100006, 177.73266258000012, 180.187800681, 156.51445019699997, 152.89283702500006, 165.27692151899998, 155.26934381700005, 166.36779941300006, 179.67821820100005, 169.98638337700004, 184.34005286900003, 188.432130185, 179.7565690250001, 177.0681988350002, 158.39769128100022, 157.14945546900003, 148.51166275100002, 155.90529885900014, 162.05327534100013, 153.56870108500016, 165.94375509400004, 152.2106012170001, 152.36227407500007, 147.22965870100006, 154.73711861700008, 142.735326245, 135.99063469500015, 133.831149397, 113.75973840000017, 121.0120387290001, 118.7416320750001, 114.899912502, 102.51999132500009, 109.95467546100008, 124.78506680100008, 111.23482860500008, 108.8535090690001, 112.73129027300001, 108.8535090690001, 86.53915022100011, 88.99779973900013, 80.52213785700019, 72.97927574200014, 66.54743778000022, 81.35305508500005, 85.29440008100005, 72.80865918800009, 74.0533498530001, 78.96337776900009, 63.919300545000056, 90.2076784620001, 51.669821709000075, 57.860128349000206, 61.698976913000024, 50.55316880400005, 51.669821709000075, 50.486994774000095, 51.76909178100004, 46.653831411000056, 56.84878737300005, 36.655878105000056, 43.93134746600015, 33.01858014000004, 35.63735904000009, 65.50118547800014, 49.143212741000184, 61.5982812970002, 58.02717714100015, 75.46925121200024, 53.014020041000094, 54.19258762400011, 56.748804821000135, 55.53720167100016, 60.45410812800014, 46.785297009000146, 96.61099953300004, 62.034686441000076, 71.59398624500022, 75.40069662200017, 80.34991491100004, 82.94325954900012, 90.27748178900015, 80.59099163500014, 69.40978072500013, 81.87079152500007, 60.68870632500011, 115.65824309100003, 63.38102279700013, 68.46925662500007, 114.44475961800015, 64.49187005100009, 77.44416496200006, 85.78005503100007, 80.62550702500005, 86.921376528, 85.74530174100005, 94.2616426740002, 135.37252844400007, 73.25201698900003, 85.74530174100005, 129.28958319200012, 104.47602562500015, 87.12989606400004, 104.61842682500014, 93.39788778100001, 108.24859384500019, 114.5890623570001, 109.42655046300001, 105.86049221500002, 110.74395939300018, 112.80323037700009, 148.13360193300002, 108.10547986000017, 119.24974102500005, 102.05573500500009, 113.23524087300018, 107.03853464500014, 114.51681836700016, 109.60578691700005, 118.22188790100017, 131.89514894700017, 131.89514894700017, 161.76705138900002, 133.25158450799995, 134.42338565700015, 166.99502217700012, 128.19109788900028, 140.13342717500007, 121.84956007300002, 145.45446409900012, 135.5578158610001, 146.77514640900006, 149.34145440300006, 189.0659911130001, 153.04431518100012, 151.87460822100013, 188.98680938500002, 151.83670080600007, 149.34145440300006, 165.54626246700013, 159.31427226900007, 151.76108037300003, 158.28309412900012, 180.46212927300007, 152.40024096500008, 173.99716501500006, 177.77161875000002, 203.89747557900012, 170.45118664100005, 172.90727629000025, 182.87458473900028, 173.99716501500006, 173.02383393000014, 181.5898459990002, 171.502750794, 189.02650202500013, 177.77161875000002, 156.59054521000007, 201.28648713300015, 164.96882078700003, 161.498958033, 203.37301694500013, 193.49364723500003, 172.44104573000016, 176.09712322500002, 174.77467535000005, 184.61604310100006, 172.1692109600001, 164.6994798390001, 185.66693538100003, 150.92867241900012, 163.37431772100024, 171.9360956800001, 149.64258886200014, 150.92867241900012, 153.5308697270002, 148.3984917270002, 134.77934210900014, 153.1133597400002, 150.81514457100002, 148.28532070300014, 133.53512632900015, 121.12128877700013, 125.84601432200009, 109.88278832100013, 112.37121988100012, 124.85819413299998, 109.88278832100013, 117.35216239700014, 102.4845872950001, 115.00827195000011, 106.21759148500018, 105.00877912500005, 105.47221788000002, 108.67445663599995, 92.5217498830001, 87.78798150900013, 81.45660237300001, 75.1955601950001, 82.73580873300011, 80.14317657500021, 73.88261170500004, 82.66671766500008, 72.63821780500007, 71.45794127500017, 71.45794127500017, 71.45794127500017, 66.41216832500015, 64.18871448300001, 60.25324525500014, 47.96445820600013, 66.37848119500018, 54.059695677000036, 56.64882226900011, 56.54883971700008, 51.57055163700011, 65.23129665500016, 51.63667502400017, 59.042064321, 60.32019954600014, 42.85038636900015, 42.85038636900015, 35.47582644500005, 42.94840843300017, 30.36861537499999, 49.143212741000184, 57.793411737000156, 67.62281592500005, 68.96891557499998, 50.28898171500009, 78.96337776900009, 66.64884646000007, 72.87697587800005, 70.34923610500016, 49.077327033000074, 67.89365607499997, 50.35498606800002, 57.860128349000206, 56.682206854000015, 55.304267697000114, 52.98081388100013, 57.82685579700012, 66.10811593000017, 50.420990421000056, 71.59398624500022, 78.86018730500007, 75.1955601950001, 77.75320199400005, 70.34923610500016, 79.13530297700004, 70.51908298500018, 69.24023061000014, 89.20703292300004, 73.01325891600004, 71.76412989000016, 74.29252364100012, 68.19824252500007, 78.09645888000011, 74.46326178900017, 70.87931299000013, 70.6210260250001, 87.99685845299996, 81.767244237, 94.19130266400009, 96.78708237000001, 93.01239430800001, 96.75197438400005, 80.69436080300022, 86.85192952500006, 91.87202153700002, 88.1359905270001, 80.69436080300022, 89.38133419700023, 104.33362442500015, 99.41898246100016, 110.6363130090001, 101.8097207850002, 110.42102024100006, 108.99686142799999, 114.22839813000019, 118.07687159800025, 108.03401472500013, 110.6363130090001, 105.61467357000015, 101.87846413500017, 114.40863762300012, 114.37270086900014, 119.35863483300011, 109.42655046300001, 108.06965543500007, 124.38097929900005, 119.3222747430001, 141.67711072500015, 134.37163362000013, 144.05930408100005, 148.8133875530002, 133.02987591600004, 135.48354855100013, 132.9928612110001, 140.46900632500012, 134.31235324099998, 136.77016864000018, 153.00654299300004, 154.2898369710001, 154.2139792480001, 152.85487013500006, 161.65209799700017, 155.45938239300017, 159.16141065700015, 166.6761772760001, 158.35942682100006, 165.1614331830001, 177.41980839000007, 152.96857610300015, 167.96026140100014, 159.0470097330001, 150.5115342690001, 159.16141065700015, 160.40675432700004, 160.36862692500006, 157.87397502500005, 180.26615150500015, 166.52208737400008, 171.502750794, 177.69350560500015, 173.91920791500013, 180.14852456100004, 180.45133267500012, 188.82844592900005, 196.0225172370001, 175.1642548200001, 166.48346586900004, 176.4093017250001, 160.139076381, 153.8723269840001, 165.12287115300012, 173.68573639500005, 177.41980839000007, 174.73563732500008, 166.05942155000014, 181.9309212930001, 169.560380043, 178.19490720500005, 173.33572900500008, 172.09157239500018, 169.3667783410001, 170.61057871100013, 162.01502959900006, 148.24772621900013, 161.9383409720001, 160.732667699, 150.77723715600007, 159.41229734700005, 149.60474111700012, 148.20993794900005, 151.94541709300006, 143.27228683900012, 143.27228683900012, 135.80504954000003, 132.47579425499998, 119.44072581000012, 120.75724666500014, 122.22367616099996, 115.96335376100012, 109.73938269300004, 113.57949890700024, 109.77514193700006, 99.88561779300016, 99.95637066899997, 77.5471773060001, 82.528357917, 60.219682050000074, 73.88261170500004, 61.363439809000056, 80.00529201700022, 73.78013372100008, 74.22426347700014, 79.93643823900015, 79.90192284900013, 70.11148538500015, 66.34462042000007, 63.919300545000056, 56.348874613000135, 54.02660063500002, 43.86593672700019, 48.91252807700005, 60.28663634099996, 59.042064321, 57.69325106500014, 40.32879854500004, 41.670987798000056, 41.57331139500002, 42.719802181000205, 55.404072129000156, 40.26357650500006, 41.768831741999975, 34.134301665000066, 40.231132720999994, 61.46413542500011, 50.28898171500009, 75.22966170900008, 63.885731949000046, 65.1974955500001, 58.94172494500003, 57.760139185000185, 46.48962598500009, 51.57055163700011, 61.397062489000064, 47.734019885000066, 71.32172144000015, 65.13006667900004, 71.42384260000017, 70.3832753050001, 77.82181809300016, 72.70653449500003, 79.06656823300011, 76.5770679530001, 66.75025514000015, 74.25830582100002, 70.51908298500018, 67.99524287500003, 71.83232724000015, 75.6402861250001, 91.69712673300012, 84.11885965400006, 82.80489980100003, 99.03022182200016], \"power_mean\": 108.93705519651303, \"energy_millijoules\": 24449.669451946254, \"energy_joules\": 24.449669451946253, \"coremark_score\": 1113.962856, \"coremarks_per_mhz\": 3.7132095200000004, \"ulpmark_cm_score\": 10.225087111764587}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [745.8902790899999, 758.3643585539999, 764.5608320640001, 762.1404901739999, 764.5608320640001, 774.578209548, 769.4045512370001, 770.7975742260002, 781.875661105, 799.027370284, 807.640783272, 791.322030424, 781.987406585, 790.0011102139999, 764.5973111039999, 760.603807583, 761.958876186, 761.8499823779999, 763.132576738], \"power_mean\": 772.3312654121053, \"energy_millijoules\": 3861.6563270605266, \"energy_joules\": 3.8616563270605266}}, \"576000\": {\"active\": {\"elapsed_sec\": 116.895117195, \"elapsed_ns\": 116895117195, \"power_samples\": [154.06226380200007, 157.759556577, 155.82900822900012, 163.9123635210002, 170.72695764700006, 169.05096087000015, 178.89939553500017, 175.35904455500008, 177.77161875000002, 186.5753037730002, 178.86038019500018, 176.4093017250001, 178.82116374500015, 185.16822620100004, 189.91462906100014, 186.18037864100017, 180.03089761700005, 173.88042925499997, 178.78194729500012, 183.84441306200006, 183.8836652760001, 202.53147486800003, 197.54744200100004, 199.91693943899998, 196.26240458100017, 182.2060807050001, 192.2847206130001, 195.42300426000008, 203.53443665100008, 195.26301090300012, 187.2273694500002, 193.49364723500003, 185.98291607500016, 187.3460656980002, 191.04014859300003, 199.55550534300005, 191.80729016800012, 191.92649442900006, 199.39479920100007, 197.99049898700014, 185.50884356300014, 189.27981836300012, 185.35095468700013, 171.7418994750002, 171.8584571150002, 169.3667783410001, 161.6696350630001, 181.57697174100008, 179.2860612490001, 182.97803172, 177.41980839000007, 168.04569573000003, 179.4036881930001, 170.45534037000016, 165.28837786300005, 159.37397341200005, 165.51971077500014, 158.09216428500008, 161.86145520200012, 154.3949319930001, 150.58808887500004, 146.928408784, 123.24868776000005, 138.10639920000017, 138.10639920000017, 120.75724666500014, 141.91206892500009, 135.76785621500017, 129.47117403000016, 135.9162480450002, 135.76785621500017, 140.78048892000004, 127.05309755700011, 132.1432313670001, 115.96335376100012, 125.48024642500002, 124.67528180900013, 122.33310491300006, 97.1150609550001, 107.17588196000008, 119.69528923100006, 116.03565018900008, 97.29144055699999, 98.6060532780001, 89.9980890380001, 101.06279950500004, 108.49540420300002, 104.79491248500005, 97.22092497100004, 89.89329432600016, 87.33553401900008, 93.524335082, 101.09832655500009, 93.45417543100007, 77.30693276400007, 77.27253651900014, 71.04945663500007, 77.27253651900014, 78.48188116900008, 72.36547655799995, 71.59398624500022, 76.13157037300016, 78.5850716330001, 73.67765573700012, 64.99503559800007, 61.26274419300023, 61.363439809000056, 52.51677908100021, 57.559817841000154, 59.985083853000106, 67.45338862500012, 68.73140601000011, 72.33149338400005, 84.84349842100016, 109.81108550700003, 84.9475800690002, 74.9902479870002, 108.60287246700011, 78.68826209700012, 83.66872964400011, 66.34462042000007, 87.47466609300011, 69.97550314500018, 72.05857696600003, 84.91282677900017, 96.22354490400005, 94.87376187300015, 97.46782015899998, 123.54091019100008, 111.09118568700012, 101.2402525650001, 97.53833574500004, 95.08477742499997, 95.19028520100005, 86.46970321800006, 96.54060259200003, 94.05098336200012, 102.73314548500014, 90.31247317400005, 142.548065005, 94.01581335700018, 106.50316085500003, 153.91035334900016, 103.94224962500004, 117.75072453400003, 102.73314548500014, 106.21759148500018, 105.18694029000005, 103.55087482500005, 111.59430516200018, 91.06746948900013, 115.15262751600005, 112.83929289700018, 152.70339197900012, 120.24046210400013, 120.24046210400013, 128.848305784, 131.41567852700007, 128.848305784, 133.94218181300005, 135.2241842530001, 122.69792987899996, 140.0586836750001, 135.1501073720001, 174.96946508500002, 132.69731302799994, 145.11674697800004, 188.70957156099996, 146.39903273699997, 151.382589414, 150.20933458200022, 155.23125797700015, 150.05813769300016, 164.43013889099996, 148.77559928300013, 149.03818948800017, 155.04121940100026, 164.9304565110001, 212.04724032500008, 177.41980839000007, 156.36206455399997, 181.2366325280001, 186.18037864100017, 171.26999292200003, 182.4814421430001, 187.42512878100024, 178.74293195500013, 178.78194729500012, 181.2366325280001, 225.82582495000008, 203.45383040500008, 195.94262325000022, 230.80771862500012, 194.65817966500015, 199.51527723300023, 199.6759833750001, 183.4899291500002, 182.00950940700022, 190.6030377510001, 197.99049898700014, 187.83796189700013, 192.696465946, 185.27180730700013, 216.0859326640001, 171.58642276000012, 176.44289206500014, 172.829807415, 180.33352761100014, 170.3389614340001, 166.608807469, 165.24995441700014, 159.182746803, 150.55018145999998, 130.4935034030001, 157.67204013700007, 135.54507773500006, 130.60417957900017, 141.7248076850001, 120.6842885850001, 128.26006184200003, 107.06859240000017, 104.97325675499997, 82.21718169300004, 88.37027932500007, 94.59246802500002, 105.53934130500022, 101.98728842000014, 85.80951037200009, 98.46478481600002, 78.51633688900006, 82.32090710099999, 76.06307291900009, 81.00801566300015, 68.59583562000012, 72.39963490299999, 67.38572207499999, 77.37554886300006, 61.162048577000064, 49.95862059600006, 69.80565626500015, 58.640878630999964, 70.91323680000016, 84.77417006300004, 86.0180299079999, 86.12211114900003, 81.07698808600003, 83.87653670000009, 77.27253651900014, 68.83317093000005, 73.60939557300003, 87.265967982, 77.44416496200006, 89.92828571100017, 98.6060532780001, 89.85830294100015, 98.67668750900009, 99.81468303300005, 92.45152921300019, 85.05166171700012, 85.19031843300002, 92.5566801650001, 86.50433745600003, 98.92417968600012, 100.098058305, 108.81780899500006, 110.13402465900003, 112.51528502500014, 101.31112447500016, 102.59116437500006, 104.58122895000008, 107.74797047000015, 123.32169644700002, 131.15737094500014, 138.8513052850002, 130.02347510100003, 128.8851418690001, 121.4125598810001, 131.3787232970002, 131.45244424300006, 130.17086891200017, 123.86954312399996, 143.7968366230001, 148.8133875530002, 156.2859695410001, 162.3986698770001, 156.2859695410001, 151.34487639600013, 161.23066783900003, 153.64475381500006, 153.682585173, 159.98597717400003, 163.72004916900016, 163.75855152900021, 172.44104573000016, 175.62895572500008, 182.36345895900013, 173.995316215, 182.40265200300018, 189.7560283150001, 184.85272194900006, 169.87018256099998, 166.17508800600012, 194.77794521700014, 183.45047460500007, 205.70011767300025, 209.51786656500008, 198.3513987230001, 194.5784043230001, 190.9607295750002, 187.1086732020001, 179.6389420810001, 179.48203901700003, 177.02904186000012, 185.78545350900015, 198.0706302640001, 196.78680777700004, 195.42300426000008, 200.32123324500014, 203.97119667900006, 211.76189627500003, 203.68855580100012, 198.91309337100006, 187.63990580100017, 185.19286286900012, 170.30030130800003, 172.7132715450001, 173.95647838500008, 174.1122300950001, 174.03435424000008, 161.36268341200014, 185.19286286900012, 165.24995441700014, 165.2113329120001, 161.55450355100004, 161.47781492400009, 160.34962095100002, 151.60429918900013, 155.25800220600013, 140.4814230300001, 144.14062684700014, 130.4935034030001, 141.687509245, 138.739559805, 126.79603848300019, 133.202219205, 123.21208957500005, 119.14992959100005, 118.19716303500002, 120.6842885850001, 103.3375472250001, 109.56003349499997, 100.92105568500006, 92.10114607500009, 103.30190122500005, 105.82491067500007, 100.92105568500006, 102.0938655000001, 99.46073676899994, 97.00919693900005, 98.32333477500003, 98.2172926390001, 80.83549595200009, 83.42640669000014, 82.1134562850001, 73.43865742499997, 67.21646872499991, 67.21646872499991, 66.37848119500018, 69.66967402500006, 62.742270955000095, 99.53148964499997, 78.48188116900008, 69.83969546500009, 69.77161706499999, 75.99439937900013, 66.10811593000017, 65.90529857000013, 66.10811593000017, 52.35108885700015, 69.73775242500017, 73.60939557300003, 73.60939557300003, 86.0180299079999, 83.63403582900014, 84.67008841500012, 85.94840437799996, 77.23814027399999, 63.51526615499995, 76.06307291900009, 77.37554886300006, 76.09723360300006, 88.5098278270001, 93.10319681700025, 90.96249665700009, 95.04954794500009, 102.20044258000007, 82.42463250900005, 92.41659893100018, 93.84032405000016, 102.55557785000019, 86.36544345000004, 88.82349846500006, 109.95467546100008, 99.95637066899997, 102.59116437500006, 105.04448460000015, 102.55557785000019, 114.93609416700008, 98.7475033190002, 98.81813755000019, 112.51528502500014, 101.34665152500008, 113.86791914400021, 113.75973840000017, 117.49717870000018, 122.58850112699997, 137.64380794500005, 122.95646532900003, 147.38038040000004, 133.68323292500008, 128.81165860199997, 121.37608084100009, 112.55134754500011, 136.28760909000016, 123.76012393500002, 139.98413182500008, 150.02028994800014, 164.9304565110001, 145.00411031400006, 148.66262204500015, 159.94784977200004, 147.41810919500006, 166.09804305500006, 151.23134854800003, 151.11782070000004, 154.81309498500013, 151.19344113299996, 145.00411031400006, 154.88926666500015, 176.0191287250001, 167.8521921240001, 186.02248976500016, 171.3922265550001, 184.69486850500004, 186.47576204400013, 187.26700261500014, 183.45047460500007, 182.16688766100015, 174.77467535000005, 166.13646650099997, 181.00102240000012, 193.21454163600004, 201.967647843, 193.33412906800004, 197.06695483299995, 198.23109881100015, 192.04590315700023, 209.59906642500016, 193.29419833300005, 192.1256452870001, 184.45818965700005, 184.37936425300006, 188.15489236100007, 185.50884356300014], \"power_mean\": 134.307117355485, \"energy_millijoules\": 15699.846223392036, \"energy_joules\": 15.699846223392036, \"coremark_score\": 2138.799535, \"coremarks_per_mhz\": 3.713193637152778, \"ulpmark_cm_score\": 15.923722846884429}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [746.0338544000001, 718.735860952, 715.4442588019999, 705.5037416700001, 701.733391268, 710.71957959, 714.05842966, 730.87945724, 717.867279813, 734.0680040039999, 727.836013806, 731.576841474, 733.9279803119999, 735.243544652, 745.25081661, 731.297923608, 747.242899065, 768.561563476, 732.7176280270002], \"power_mean\": 728.8788983383685, \"energy_millijoules\": 3644.394491691842, \"energy_joules\": 3.644394491691842}}, \"614400\": {\"active\": {\"elapsed_sec\": 109.608749958, \"elapsed_ns\": 109608749958, \"power_samples\": [111.93939432100012, 110.76771217500004, 111.93939432100012, 103.15950002500017, 101.95170189500016, 93.31367577000015, 100.06259092500011, 100.67273071499994, 102.30683716500005, 90.68262902100003, 85.6704378390001, 86.91778013100009, 75.85740447100011, 86.9526525660001, 67.18254847500009, 70.98143415000015, 85.84414460999994, 72.22919351999997, 68.46009097500007, 69.77161706499999, 82.00973087700004, 64.69134567000015, 69.70371322500012, 58.50703552499999, 89.50910686300017, 70.91323680000016, 79.69536151500017, 100.74378481500003, 84.60058183500007, 85.98321714300005, 84.67008841500012, 82.9760987630001, 87.12665707500003, 86.295996447, 79.69536151500017, 81.14596050900002, 103.12403682500008, 82.25181603300007, 136.97440378500005, 91.10234060100004, 98.57064537300016, 88.5795125090001, 93.66483474300014, 89.9630976530002, 83.91123051500006, 98.81813755000019, 108.746040805, 102.37801021500013, 98.71209541400015, 160.96257448300003, 106.11048004500014, 123.50431200600008, 156.95882336300008, 116.28896646500016, 111.34265310900014, 126.28567847700015, 125.40616187400019, 134.89055264500007, 131.47810559100014, 134.85360941900012, 133.46116809300008, 121.15776781700004, 134.89055264500007, 184.61604310100006, 142.3236975850001, 147.38038040000004, 154.69903277700018, 165.8667101430002, 170.88199670900008, 168.47104605900006, 160.96257448300003, 163.48962735300017, 162.16840685300008, 161.03914446500005, 208.11122044500007, 157.26387391700007, 164.6994798390001, 213.16913653500012, 184.61604310100006, 197.107063993, 195.90257356500013, 182.85987041600004, 188.31325581700014, 200.2811520690002, 191.92649442900006, 181.45898855700023, 188.432130185, 193.21454163600004, 235.2870242360001, 210.64005954000004, 199.47525542100016, 198.15076154100007, 199.39479920100007, 204.33476996700017, 199.3547773890001, 201.76632538600006, 190.6030377510001, 185.58799094300014, 186.8318507880001, 223.71328460100005, 196.62657682500003, 182.85987041600004, 232.4198085690001, 200.32123324500014, 190.28515751700013, 210.15173041999992, 199.4350273110001, 205.13379727300014, 197.5494679740001, 199.8788940810001, 189.37112424300005, 203.60762339100017, 199.83881290500017, 218.20188204200008, 186.1987363830002, 193.6204849850002, 167.46558225000012, 184.7979377370001, 174.926403725, 172.47980002500003, 192.3776343850002, 172.440821475, 172.59653578500001, 184.9954003030001, 192.13845952100007, 181.14443407500016, 176.09108170500008, 183.47236551700007, 158.83842098700006, 177.52943421500015, 160.00476077500002, 156.99683223099998, 152.69584975300006, 149.56708746300012, 154.95342653700004, 144.06560002800006, 136.4910725850001, 148.8114912000001, 157.40458137300004, 137.80847503500001, 131.404266, 140.25741154500008, 129.10278410700005, 137.80847503500001, 132.64705712500006, 122.91986714400002, 131.5889598870001, 121.64018106899994, 122.81026027200016, 114.14158191299998, 112.89447768900015, 111.7953291770001, 113.00265843300008, 95.6600074380001, 100.60185880500012, 104.29613446500002, 111.86726928100006, 96.86798449300011, 108.49540420300002, 98.07602417700025, 99.38998389300002, 91.96088478800004, 98.07602417700025, 96.903332923, 78.13803075300007, 88.19597805100011, 79.31640023300008, 84.32309018100011, 85.56617807100008, 70.74309315500011, 75.75457024700017, 75.85740447100011, 75.78873093100015, 78.17248647300005, 79.41976940100017, 72.02459379200002, 68.22275566500014, 70.7771918300001, 55.74915050400011, 71.9904354470001, 67.08096167500003, 60.85996172900013, 75.68607279300022, 97.39730457300016, 90.54260532900003, 75.89156515500008, 91.99599512300006, 83.14938992100019, 88.19597805100011, 70.81111564000014, 74.54534627600003, 94.45173076900005, 87.05709103800007, 84.53125347700006, 93.2435161190001, 109.30879715700007, 94.41668195300008, 100.67273071499994, 90.892574685, 114.35811526200007, 103.3375472250001, 101.02745464500003, 103.55087482500005, 88.61426528100014, 89.7884996140001, 102.27143313500005, 94.7332052810001, 110.91153972400002, 95.37823870500006, 120.93926772100008, 112.155399569, 117.24344670900007, 118.41495065100003, 120.86649671300006, 107.35463665500015, 110.94735813800003, 115.89105733300005, 122.15078611900003, 137.3091058650001, 122.29675358100008, 128.591019898, 137.3091058650001, 134.70526522800014, 136.06483061000006, 143.4970113610002, 145.8726281370001, 138.4416356400002, 134.5940546920001, 137.1602857050001, 145.83515199299995, 152.2106012170001, 147.19212338700015, 164.3915768610001, 169.91230509500008, 164.545429473, 161.59294643600015, 158.47402397300016, 168.3550233630002, 153.4548169970002, 164.545429473, 154.58497056900012, 160.732667699, 169.48297915700005, 166.99502217700012, 182.04890447700018, 181.89152622300003, 184.45818965700005, 183.21415199700004, 175.70695022500013, 198.0706302640001, 188.15489236100007, 180.76541227200016, 183.174899783, 179.56059125700017, 188.19438144900005, 186.9899769540001, 185.66693538100003, 186.8712807060001, 183.55119092100006, 194.3388732190001, 194.8633355850002, 201.72597813100015, 196.70658945700006, 202.92937177099998, 205.33601002500018, 207.74625076000007, 209.07095422500004, 184.261024829, 190.40438812500008, 176.79450162000012, 184.2217134450001, 190.48380714300015, 182.89912263000008, 194.09934211500013, 197.70973052800014, 202.6471463030001, 188.92266089900022, 201.20249836100004, 200.96082864900006, 203.44617360900008, 207.25934660000007, 188.4862030620002, 194.58339855600013, 200.48217776100012, 182.30851844099993, 180.09791748300017, 172.36306426499993, 177.3727695250002, 177.29453773500018, 184.7979377370001, 163.54479423300006, 173.6445745750001, 174.80931172500004, 157.4809140650002, 162.25972376100015, 158.609066976, 152.46808157700002, 130.01403298300022, 145.00797236099993, 140.07044737500019, 142.5599852050002, 141.4254588650001, 132.68413130500005, 131.552135001, 121.56729102700012, 122.77366208700005, 123.94344452500013, 117.83430798300014, 114.7193752710001, 104.22472351500005, 111.83139169700007, 100.53098689500018, 99.17754338100008, 90.68262902100003, 104.26042899000004, 101.66755718000013, 99.21301076100008, 89.22971411200024, 94.17043692100003, 97.93457413600015, 96.69160489100011, 88.02167677700015, 97.86393990500017, 85.56617807100008, 81.80245767300005, 63.279420813000115, 83.01079257800018, 75.68607279300022, 75.75457024700017, 84.49650018700004, 81.87154874100008, 83.01079257800018, 59.41571420100013, 68.56185589500012, 50.7434143590001, 64.92760672700012, 76.96349948700004, 80.5248540880001, 93.20834611400016, 89.33450882400018, 83.11469610600011, 76.82626728900004, 84.32309018100011, 79.41976940100017, 75.61739925300003, 79.41976940100017, 65.7024812100002, 78.03484028900016, 71.92229392800004, 79.35073862100012, 96.79746890700005, 101.73854773500011, 108.13711531599995, 97.0443640950001, 88.33534741500011, 91.99599512300006, 104.58122895000008, 90.99754751700004, 95.2725528090001, 92.31144797900004, 96.01217311200003, 104.72368463999999, 110.83953363400008, 118.12462931700009, 110.83953363400008, 113.39925941400008, 110.91153972400002, 103.51541162500007, 105.89625716500007, 128.4807005460001, 118.52384445900009, 134.55711146600004, 132.25408566300007, 117.27974732400014, 138.32989016, 130.9729738230002, 140.78048892000004, 140.78048892000004, 146.77788056600002, 141.9868580650001, 138.32989016, 152.0968952490001, 155.7910585310001, 152.12642931300013, 160.65609771700008, 152.43005521200007, 164.353014831, 165.7510436870001, 156.99683223099998, 160.732667699, 166.91785858100002, 155.67681820300004, 173.18001469499995, 186.8318507880001, 189.24006624800006, 190.52361873300015, 173.2189932450001, 178.0382425150001, 189.35911873600003, 173.1022574850001, 185.54841725300014, 184.261024829, 195.3429048900001, 194.13933232500017, 206.50274715500018, 204.05192157000022, 197.91036771000006, 200.36152102500012, 190.0466963010001, 182.780961326, 193.22119811900006, 193.8998012210002, 197.5494679740001, 190.08650789100022, 207.3404278150001, 199.67786838900008, 193.50071943299997, 198.55165927500002, 199.47684269700017, 193.50071943299997, 172.24632850500006, 184.5609014810002, 174.8873062250001, 164.74866708800005, 182.19035713699998, 164.6716221370001, 184.63984591899998, 187.08522660099993, 167.34955955400017, 163.66028256899995, 156.08168056900013, 156.11988535900014, 156.11988535900014, 151.90745020300005, 149.94482920200005, 144.89515757699996], \"power_mean\": 137.53961398733037, \"energy_millijoules\": 15075.545158857134, \"energy_joules\": 15.075545158857134, \"coremark_score\": 2280.980274, \"coremarks_per_mhz\": 3.7125329980468753, \"ulpmark_cm_score\": 16.583148228846692}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [752.859673995, 746.7084155699999, 744.1142377499999, 742.8350884500001, 739.1356712999999, 730.321621508, 764.9392277339999, 754.60730632, 719.0880743609999, 733.123428264, 715.52883402, 714.216835605, 704.29386105, 703.0502388000001, 717.9818607000001, 706.814906655, 711.7256328, 698.07167235, 705.638535156], \"power_mean\": 726.5818485467369, \"energy_millijoules\": 3632.9092427336846, \"energy_joules\": 3.6329092427336844}}, \"864000\": {\"active\": {\"elapsed_sec\": 77.929470804, \"elapsed_ns\": 77929470804, \"power_samples\": [102.9816356250002, 96.69160489100011, 86.74377562200016, 89.15991078500008, 112.78629694500012, 91.61050165000006, 94.10015862500006, 91.54046103300004, 92.06603574000007, 104.08226782500003, 82.14809062500001, 81.76782333300014, 79.28188484300017, 81.69873226499999, 81.76782333300014, 114.06921858300007, 112.7501749500002, 101.70314370500012, 90.4376324970001, 106.63943416000006, 90.4376324970001, 106.49632017500016, 92.85736750000012, 110.30059574500012, 102.83941722500015, 88.02167677700015, 135.17390742500015, 102.87488042500013, 104.1534956700001, 151.41485414300018, 117.87066807300005, 115.34836949300018, 112.78629694500012, 117.83430798300014, 107.99394697800005, 99.24829625699999, 115.60149991700007, 107.34913739400008, 121.7861485310001, 108.17299941099998, 164.1606001890001, 119.47714537499996, 123.13908088800008, 128.07625922300008, 129.4342782750001, 139.27541012500012, 118.23352312500003, 131.736828888, 118.19716303500002, 136.86283642500007, 138.14371147500003, 176.71638847500003, 140.6683872000001, 159.22107073799998, 195.3829545750001, 152.99947565200011, 165.32699936799997, 155.52443256000004, 150.6259962900001, 152.99947565200011, 148.05897865500015, 156.76799533500014, 146.8908734700001, 161.78476657500005, 160.387807523, 210.2738127, 174.80931172500004, 159.29752207500007, 210.74319917499997, 171.7418994750002, 181.61636681100015, 175.4727662250001, 187.75857661700013, 185.19286286900012, 179.2860612490001, 180.4119970800001, 232.3779736590002, 192.85577934000003, 191.64801037500013, 244.98688411500007, 204.05192157000022, 198.91309337100006, 206.50274715500018, 197.70973052800014, 203.97119667900006, 203.97119667900006, 212.6793824550001, 206.46216180500005, 206.34061388500015, 198.83284344900017, 244.8175990950001, 211.43593832500005, 207.66496111000004, 254.76685390800014, 209.98909341, 214.638374601, 219.897108453, 213.1095252780001, 222.4700777610002, 217.95522263400017, 218.73638115300025, 248.4235095790001, 208.66474618500013, 202.44552708100002, 238.219242249, 223.258531919, 226.9902673710002, 221.02058551300001, 215.88104708100013, 233.20303654600013, 216.9594471570001, 223.13448915100003, 229.22550713700014, 214.26998856900013, 205.4899865750001, 241.35988490500017, 184.48195704300008, 199.35618596100005, 227.6506985310001, 196.947968414, 200.63867133600002, 196.62723731300002, 183.07783322500006, 179.54822775800005, 177.76433069500013, 162.10610921700015, 167.2335368580001, 150.88429119300008, 152.35419748900006, 171.77938546500013, 154.6868005660001, 155.9672621210001, 144.857488257, 146.09992314200008, 152.27833976600004, 134.9139356200002, 137.47342994000007, 126.28229753100015, 122.40843096900016, 121.38497223299998, 134.9139356200002, 118.82290057400007, 118.786481009, 121.34843352300004, 110.04894369200008, 113.81650356900013, 118.85913337200009, 116.30149228900007, 114.91421922100017, 103.86840118500004, 103.72576239000011, 114.98670150100008, 87.84719636500017, 99.35451651300002, 105.07513059500002, 100.81465672500008, 96.37401284300006, 111.25550099300006, 100.17644515500012, 82.69908199400004, 92.75203784400014, 97.65185563300008, 76.58584635600005, 93.92437255300001, 87.77751168300017, 96.44470970300006, 86.60446471500018, 89.05511607300002, 102.62590682500013, 101.4189989900002, 100.17644515500012, 106.42485504000012, 113.88868135200016, 100.0345191450001, 106.38921433000019, 101.48998954500007, 106.42485504000012, 96.515225289, 99.03585574500016, 100.14091810500008, 98.96510286900013, 87.84719636500017, 116.01164584000014, 108.98585800500007, 120.35672551300013, 127.67181790000006, 116.80877011400014, 117.79794789300001, 101.66755718000013, 119.040857663, 112.8222336990001, 125.47940785100013, 124.30926917300008, 117.90684170100008, 118.12462931700009, 127.96593987100005, 133.05411260900007, 135.35949258000016, 130.4565481730001, 120.53874656900007, 131.69981418300006, 139.27541012500012, 131.88450807000004, 144.2156536660001, 144.2156536660001, 144.1032098730002, 166.53164387300012, 154.28086978500016, 156.72998646700012, 157.9775671330002, 156.72998646700012, 153.48262964100024, 154.24297925700023, 155.43337467100014, 157.93930267300004, 152.77170747600007, 174.03435424000008, 174.1122300950001, 175.2776797250001, 172.79102875500007, 182.780961326, 185.1534921210001, 180.1765886730002, 186.3966989610002, 182.780961326, 186.3966989610002, 171.58642276000012, 189.04171338700007, 187.67939488900015, 187.63990580100017, 191.4490639840002, 195.3429048900001, 211.43593832500005, 202.72775254900012, 213.84522862200015, 197.62959925100017, 203.76928069200005, 206.34061388500015, 203.76928069200005, 213.72261139800014, 219.27978081900005, 215.0067606330001, 223.17569513900003, 221.22687092100023, 220.6084382810002, 218.61305144900018, 217.41093267300005, 231.05148965700005, 219.77360062900004, 218.65402056300013, 208.46143342500022, 209.74492885000006, 207.25934660000007, 200.96082864900006, 217.00056797700006, 212.1080725800001, 234.11446218600008, 227.98330954200014, 209.3381272800001, 225.3289052250002, 210.45806447500001, 220.40236466500016, 216.6722340450001, 218.95049711700005, 207.9333212250001, 195.46567375300003, 205.3278533050002, 196.74753722499997, 194.1436735530001, 195.46567375300003, 200.356654369, 185.88228080400017, 183.11734724500013, 184.63984591899998, 187.970444852, 179.5090938840001, 181.79662101100007, 152.01254522500017, 156.94638899300014, 160.7487801100001, 143.3897800440002, 157.09905437700013, 149.56653264, 168.20496915500007, 150.8085521150001, 162.0676068570001, 137.32437218500013, 149.60424565800008, 147.15380424900013, 126.06201506700006, 139.65947172000017, 138.6040601750001, 119.9197253210001, 119.9197253210001, 111.25550099300006, 121.12957601900007, 126.13537968900016, 118.6409895160001, 112.31745197400016, 107.385021489, 106.78254814500019, 112.46175471300023, 105.3606999650001, 91.29504879400008, 90.12289374900013, 91.400199746, 102.41239642500011, 99.92812018500001, 100.14091810500008, 95.1315779580001], \"power_mean\": 154.13634503731623, \"energy_millijoules\": 12011.763800420806, \"energy_joules\": 12.011763800420805, \"coremark_score\": 3208.254196, \"coremarks_per_mhz\": 3.7132571712962963, \"ulpmark_cm_score\": 20.81293007037333}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [696.595287024, 685.4308945820001, 681.766151356, 665.593997499, 664.4734843499999, 678.51757512, 655.545004776, 674.2374242100001, 677.8053928800001, 703.6887913630001, 693.943012832, 681.733707572, 673.0263527, 655.607566479, 660.490308864, 649.355798882, 663.1031515179999, 649.510798755, 646.930997661], \"power_mean\": 671.4397736012105, \"energy_millijoules\": 3357.1988680060526, \"energy_joules\": 3.3571988680060527}}, \"1075200\": {\"active\": {\"elapsed_sec\": 74.625926847, \"elapsed_ns\": 74625926847, \"power_samples\": [119.18634915600012, 110.44423866300008, 116.73635504100025, 104.26042899000004, 109.30879715700007, 120.42949652100015, 126.53916800700017, 131.62597459200003, 132.795163721, 124.52664527100012, 121.71325848900005, 144.02799018300016, 130.4565481730001, 143.72769003600013, 147.71965936900006, 131.69981418300006, 139.16348652500017, 140.40675253500012, 137.88309958500008, 156.50114957100004, 140.40675253500012, 139.2008582750001, 154.12891704900005, 154.12891704900005, 142.89736083700006, 157.8629699810001, 160.23466755900017, 152.8475651990001, 151.52856011100016, 141.65001854500008, 170.06754343600016, 173.8395645050001, 167.7363680970002, 181.3804004430002, 175.31657672500012, 172.75205020500005, 183.9062091930001, 195.02312355900017, 174.41913872500015, 185.19286286900012, 183.92894009300016, 185.11391843100012, 190.08650789100022, 178.8548295930001, 188.72430803800012, 193.86001608900017, 196.1861988170001, 203.6480895960002, 203.72881448700002, 212.47538814000006, 217.28778108900008, 217.53408425700013, 210.07041191500014, 212.39383234500008, 196.1861988170001, 205.0124280570002, 208.66474618500013, 212.35294962000012, 223.423780675, 222.13963063500023, 223.54782344300008, 227.1978257850002, 233.286610473, 223.299737907, 224.583828777, 220.85581133699998, 213.51831934500012, 215.4302145700001, 205.85463033500014, 221.72688987300012, 213.35475972600022, 226.4919565230001, 225.5777032410001, 225.2875808970001, 209.25659973000006, 229.0588572250001, 222.92760960300006, 232.70116329799998, 215.22532898700013, 231.2921968410002, 222.7209424570001, 218.9092573470001, 206.52919879500018, 220.11369216900005, 206.52919879500018, 211.57764543000008, 209.09396272000004, 200.31651402300008, 196.54710603600006, 204.08200000900024, 201.51783000300009, 205.2874760850001, 201.63884297900006, 201.43722375700008, 202.75949323800012, 198.91384679700025, 203.6480895960002, 182.99900782100008, 202.12289488300007, 175.50473110500013, 177.79638851300012, 163.15996494900014, 168.01136745300005, 163.12140291900005, 161.87548995300017, 156.9081245330001, 141.9229768770001, 166.80818652900018, 159.39180724300002, 163.15996494900014, 155.47157946100003, 164.28619932300012, 166.76964474300019, 161.83698759300023, 166.8469269840001, 156.86986007300015, 164.51733417600008, 153.25450522500012, 150.69484614700002, 150.8085521150001, 144.51923708100003, 145.83640202000004, 137.06376029500007, 134.65415455000016, 133.44500610600005, 128.47669152600008, 123.46783488500023, 120.42949652100015, 119.55568320900022, 129.6820044550002, 127.1204100430001, 120.02897536900014, 117.25366531500003, 119.77399623300016, 111.0034332250001, 111.18337595300011, 99.89259313500008, 104.78956122500006, 105.99588051500018, 102.44804242500015, 98.68190948099993, 84.94079799000008, 103.72576239000011, 98.75266235699996, 101.0282771950001, 96.16228481100018, 94.99078407600007, 97.5104055920001, 82.56066256800011, 102.44804242500015, 81.318464973, 80.04169251300004, 113.56360300800009, 92.43604887600009, 98.71737686100005, 108.66310317900002, 103.97533450499998, 112.31745197400016, 111.72338907300013, 114.80568165300008, 110.19277124100006, 111.03949574500007, 102.30564122500016, 122.37183278400005, 97.47517926600005, 103.72576239000011, 107.45660565800006, 114.87816393300011, 124.81981747200007, 118.71382864600002, 122.51803784100002, 116.33779290400014, 117.61652036700002, 115.20359078500019, 160.08133075700005, 125.29619876200013, 130.01403298300022, 173.52786089000006, 130.23519582100016, 127.63498181500006, 127.67181790000006, 122.66405521500008, 131.51512029600008, 141.46294956500003, 137.80847503500001, 150.50540110100007, 153.8248162650002, 164.32462276900014, 184.9558266130001, 152.5059129350002, 161.47781492400009, 157.4809140650002, 163.66028256899995, 160.00476077500002, 152.69584975300006, 160.196284149, 166.1841101450002, 166.33863570100016, 162.52884538500018, 216.0859326640001, 175.12149022500012, 176.2864649700001, 219.69133257500005, 187.52103143300008, 180.0587836090001, 181.22302218900018, 197.42916806200014, 186.23836954800015, 204.64832040900023, 188.6450076650001, 177.49021776500012, 177.52943421500015, 187.52103143300008, 234.65900430500005, 195.58558985700006, 198.63190919700014, 246.07215482499998, 208.62404188500022, 209.17528122500005, 199.8788940810001, 206.13810339500014, 209.66361034499994, 217.32890190900014, 206.01655547500013, 244.26709639500007, 215.83998573600002, 205.97597012500012, 250.56828445700012, 199.79852512500008, 213.47737695000012, 207.13762056000007, 224.583828777, 213.35475972600022, 224.54235091200007, 218.20188204200008, 226.90707335100012, 226.9902673710002, 219.5678247510001, 245.4669825850001, 218.2842426320002, 199.63778721300014, 256.355460677, 213.02785044900008, 213.0687928440002, 218.03758322400006, 223.96272433700005, 223.96272433700005, 233.82142924800007, 228.72577132900017, 218.20945017300005, 210.00984612500008, 210.05046002500012, 237.21000730499998, 195.14521184900002, 198.99421575300016, 213.86081093300004, 206.32618310500015, 211.21032987, 196.30650621200004, 179.11634309700003, 176.55083295500015, 165.37339647700014, 169.2917502890001, 176.35515292500008, 162.96735255300007, 158.07351455100013, 171.54591394500005, 153.0644666490001, 155.6622115670001, 149.37738435900008, 135.78460666499996, 140.7144813850001, 128.36638267900003, 141.9229768770001, 124.92978058400013, 127.0467378730001, 127.26737657700005, 122.22581541000011, 134.6911571400002, 113.31088799400004, 115.90293015200007, 102.23453202500014, 100.99269067000012, 104.68244978500013, 89.84302611300006, 89.91294808500004, 98.64644210100005, 91.04981660800001, 110.9675556410001, 98.50493634899999, 105.96005609000008, 102.23453202500014, 99.89259313500008, 87.42890913500014, 88.70574055200018, 97.29850289900014, 83.62945015700018], \"power_mean\": 164.46967487212805, \"energy_millijoules\": 12273.701925557303, \"energy_joules\": 12.273701925557303, \"coremark_score\": 3350.263331, \"coremarks_per_mhz\": 3.115944318266369, \"ulpmark_cm_score\": 20.368752762312862}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [665.1174152880001, 667.7618582749999, 664.1879731739999, 652.87145764, 669.703146424, 657.941214752, 660.4272721919999, 652.965024368, 660.7426176, 669.0685169760001, 676.4978437999999, 684.089606508, 677.8053928800001, 675.44854248, 671.5905466549999, 688.671262321, 691.387113825, 665.562323313, 665.7530215050001], \"power_mean\": 669.3469552618948, \"energy_millijoules\": 3346.734776309474, \"energy_joules\": 3.346734776309474}}, \"1363200\": {\"active\": {\"elapsed_sec\": 49.394164461, \"elapsed_ns\": 49394164461, \"power_samples\": [179.78383788600013, 188.5655034350001, 189.72881606700003, 189.8480466750001, 198.3509313210002, 184.7189932990001, 197.22873687300012, 208.29903370500006, 207.09718417000022, 205.85463033500014, 207.17826538500003, 215.88104708100013, 209.7041650750001, 213.47737695000012, 212.14895530500007, 210.82484567500012, 234.53335728900015, 222.05712490200006, 239.46185525400006, 240.7467196890001, 249.4535757210001, 241.951155405, 252.92495319300008, 246.75184782500003, 246.8792766250001, 245.55174374000012, 248.04068706700002, 248.04068706700002, 257.98423970400006, 262.35264500100004, 261.538935723, 259.82238459100006, 255.41365884100014, 259.4774203420001, 251.51170799400006, 245.2549707500001, 246.58187002499994, 247.65808306100018, 258.6237628890002, 263.5077067640002, 249.97119335700017, 270.7861793850001, 254.77027480100003, 259.64979168800005, 258.3655618050001, 260.76153127500015, 247.19026171500002, 244.5339561950001, 222.34902655500002, 234.76964413500014, 232.19929005000006, 228.47590342500007, 233.44448820000002, 233.48644225500004, 224.91438387300013, 230.9165408030001, 232.11571612300008, 224.74844752500007, 228.517619385, 211.12877407500002, 222.34902655500002, 211.12877407500002, 206.9754581300001, 202.31519505900008, 193.30117853900003, 197.5478132070001, 194.1038292510002, 197.4675632850001, 202.59783593700013, 193.82389222200004, 183.96831084100006, 192.62257543700014, 192.50280988500003, 193.70394855000018, 181.36343034000004, 181.52084385800003, 179.11634309700003, 170.30448830500018, 151.70891932600023, 150.54317328900015, 154.30612988400014, 156.71719468900005, 146.77669669300008, 159.1619004590001, 151.67089296100016, 150.42946732100006, 160.40338557400014, 149.22594909600014, 151.51917751500002, 152.87442807300022, 139.1365863000001, 136.80295706000004, 130.5914610420001, 140.60220154499996, 128.03488851100008, 143.20211656100014, 128.2189888680001, 134.9139356200002, 123.10182224900007, 122.55463602600003, 115.7217993910001, 133.63048395200008, 123.21160724100014, 113.23871021100013, 130.5914610420001, 125.69481476100009, 128.18209311300006, 153.0644666490001, 143.0520629230001, 154.3442751990001, 139.43546023500016, 135.59872474500003, 133.11156492700013, 139.39802901000007, 144.36875297699999, 136.9520148150002, 134.35718015500015, 143.12708974200018, 149.41509737700005, 151.82280341400008, 162.96735255300007, 158.07351455100013, 153.17852885700006, 152.01254522500017, 153.33048159300017, 157.09905437700013, 164.6716221370001, 149.75568092100013, 146.06238782800006, 154.72494588100005, 157.652737398, 158.45596776900004, 180.23996367300015, 152.27833976600004, 168.32116997100013, 165.79809380100005, 148.28259322500014, 176.90317767500017, 155.92905733100008, 172.051835535, 172.168571295, 170.80963794000013, 170.96491507000007, 172.12959274500008, 177.25552239500018, 183.35402609300002, 187.12471568900003, 194.66349792600022, 199.55721165300008, 202.00188190699998, 199.51713047700002, 189.53016644100012, 188.367150574, 191.89928465700007, 194.38356089700005, 180.71189640900013, 190.93176247400015, 199.47684269700017, 209.50076429, 213.2321425020001, 202.00188190699998, 214.47457738699995, 223.17569513900003, 214.39278391300002, 218.20188204200008, 212.49664911900015, 224.16968824800017, 209.6430649250001, 225.5777032410001, 231.62623250700017, 236.64069248099997, 232.952099922, 244.26709639500007, 239.20913626200013, 228.14950823599997, 243.0247206800001, 235.48236596700008, 249.11288699400006, 245.55174374000012, 249.1553363280001, 258.88218522500017, 251.55449508900006, 252.66831322500013, 252.75378663900005, 263.98402145700004, 249.02755070400008, 272.2895459130001, 264.9659548730001, 250.1418847210001, 232.659268913, 237.67260032900003, 253.73908910700015, 267.2321621090002, 265.90389770700006, 259.60680963000004, 250.82843100000002], \"power_mean\": 199.0511201464797, \"energy_millijoules\": 9831.963764661488, \"energy_joules\": 9.831963764661488, \"coremark_score\": 5061.650908, \"coremarks_per_mhz\": 3.7130655134976522, \"ulpmark_cm_score\": 25.42727027723209}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [665.212764384, 677.61113112, 667.6981093439999, 688.835764512, 682.71617172, 666.6464912960001, 681.538375924, 654.3017979360001, 679.084929504, 663.008321904, 698.6810580160001, 701.3375922749999, 669.2602838880001, 677.9672222400001, 672.9299343, 675.51300367, 671.8471324699999, 701.639144763, 697.238598552], \"power_mean\": 678.582517253579, \"energy_millijoules\": 3392.9125862678948, \"energy_joules\": 3.3929125862678946}}, \"1516800\": {\"active\": {\"elapsed_sec\": 44.394606337, \"elapsed_ns\": 44394606337, \"power_samples\": [164.5559556810001, 156.56433307700013, 180.082787445, 170.18813025000009, 177.63968686500004, 162.65944957500005, 173.91187372500008, 172.59254985000007, 170.14921117500012, 164.016244906, 160.28825406200008, 151.51917751500002, 154.00155421500006, 147.94254579300014, 135.52421914500007, 154.03969953, 154.00155421500006, 141.58560124500002, 145.27143750000005, 136.65409065000006, 162.73657363500013, 131.64795550500003, 142.78917975000013, 164.016244906, 131.79587197700005, 136.76564478500006, 137.96989032500005, 147.7915429950001, 142.9018164140001, 157.84396400700007, 166.49885889600012, 154.74705990500001, 152.87442807300022, 143.46499973400012, 170.3823264550001, 156.043475779, 150.58114017900016, 188.12904559800006, 164.05486641100003, 178.99853803300016, 174.06786272500017, 181.4421370990001, 171.74060680500008, 176.7074976450001, 180.43673699700025, 209.09396272000004, 165.56640464900022, 163.23689125500005, 206.61028001, 158.22641722499998, 169.52450816099997, 173.13808122500006, 165.75941282100018, 178.10999322500004, 180.5547201810001, 185.3680658940002, 175.66115820000016, 189.2917052250001, 191.66010979300006, 221.5618784070001, 176.86396122500014, 186.6889108570001, 230.38415386200018, 184.36343891500007, 193.10143256700007, 198.1099752570001, 207.2426005650001, 204.2033692250002, 207.08020084500015, 205.4494012250001, 206.4885539700001, 211.53676270500011, 211.57764543000008, 244.0129512750002, 206.7724424400002, 206.7724424400002, 210.49867837500005, 208.01452108500018, 216.71314398900017, 217.8730732250001, 220.48475175300007, 229.22550713700014, 229.10057318500014, 231.58461213500027, 263.8974794600002, 224.04568006700003, 234.1564162410001, 288.527681097, 228.97563923300004, 229.1837911770001, 229.10057318500014, 229.1837911770001, 234.03076922500009, 231.58461213500027, 247.74308189500016, 240.28282065500025, 231.58461213500027, 249.07021884900007, 288.57202484100014, 250.18439322500012, 267.66687515700016, 287.9048114970001, 272.5083150790001, 257.977928301, 257.5111921770001, 263.83869819300014, 252.71115979500019, 248.89998389100003, 255.284982033, 307.12027038300005, 260.0811631670001, 272.4207175690001, 306.9386434170001, 266.20773675300006, 271.00442717700014, 264.9659548730001, 273.575007903, 267.44951863300014, 279.7873951050001, 284.7581190720001, 277.26003178500014, 275.9306988000002, 282.22644682500015, 302.0593244790001, 271.00442717700014, 262.35264500100004, 298.1547276870001, 263.6810132310002, 251.0847147280001, 264.57587059499997, 269.588387366, 268.34708037100006, 266.8407863330001, 275.57955637500004, 281.56368787500014, 265.4262770040001, 268.6953719290001, 276.1611430050001, 260.9343617730001, 252.79691636500013, 277.0843360450002, 246.67983169900015, 262.6850016100001, 249.28886613300017, 244.19469368000023, 256.60818178800014, 244.27945483500014, 245.47777802500002, 263.925358835, 235.590809187, 236.74741428100003, 242.7846557250001, 229.42524695400016, 215.6872322490001, 215.64611142900014, 209.39854412500006, 204.59877391500004, 214.40557608400013, 209.52080452500013, 210.72078544500005, 203.39431039300018, 200.95317185300007, 208.32091431000003, 199.63185214200007, 182.6046781650001, 192.1835034390001, 178.6844584360001, 179.76823296300006, 167.66276500499998, 160.13487680800006, 166.30555395900012, 172.86541563499998, 184.73515473600014, 181.48138931300002, 164.9873801330001, 162.39010862700002], \"power_mean\": 211.88054823688645, \"energy_millijoules\": 9406.353529444314, \"energy_joules\": 9.406353529444313, \"coremark_score\": 5631.899076, \"coremarks_per_mhz\": 3.713013631329114, \"ulpmark_cm_score\": 26.57778056262031}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [747.9445497300001, 723.097881864, 730.517297961, 725.5465739940001, 725.5118207040001, 706.8796226400001, 719.334186792, 724.270216944, 706.8796226400001, 741.31034034, 725.373163988, 734.351688349, 733.140885718, 707.04875287, 700.8351769139999, 693.5121841920001, 698.347303448, 677.31973848, 678.598381584], \"power_mean\": 715.7799678501053, \"energy_millijoules\": 3578.8998392505264, \"energy_joules\": 3.5788998392505262}}, \"1651200\": {\"active\": {\"elapsed_sec\": 40.784939152, \"elapsed_ns\": 40784939152, \"power_samples\": [162.62108529900001, 166.4215766550002, 155.12832411700003, 171.27366376500004, 154.03969953, 153.92545920200007, 172.51467399499995, 171.31264231500006, 176.19848823500013, 173.67768972500005, 173.71658672500007, 188.61613316700004, 178.76312962600014, 189.89695498700019, 188.7353637750001, 175.19207772000004, 185.20973648100016, 188.85459438300006, 180.27935874300022, 188.93401340100013, 178.99853803300016, 184.00788453100017, 182.76232897300008, 180.39734192700018, 175.50473110500013, 179.31281935100014, 174.64488409500018, 184.12640265900018, 177.75711239300006, 179.11634309700003, 206.69136122500015, 197.50779139500014, 200.27616676800005, 187.89114447900022, 194.02372988100012, 184.16597634900018, 202.75949323800012, 192.94188188300006, 200.4774892250001, 199.11487248900016, 201.63884297900006, 189.25209779700015, 206.61028001, 202.96140922500012, 199.15516026900013, 216.54908246100013, 207.89282566500015, 210.2543669250001, 221.31414911100012, 215.18426764200012, 216.63111322500015, 214.22898669900007, 219.11503322500005, 233.9470762640001, 220.27867813700016, 216.59020328100007, 220.23737869700017, 221.39665484400018, 226.4919565230001, 212.82355839600007, 217.74974352100014, 217.05094559200018, 225.16318188900016, 218.04491406500006, 213.98360627700004, 238.19847666300006, 235.10510601300018, 228.80898932100013, 236.47283197900003, 232.74305768300007, 236.51468922499998, 237.63046784900007, 241.40219600500006, 246.41211042500004, 237.63046784900007, 243.75880615500012, 247.61547439100002, 243.80123620500012, 247.5728657210002, 233.9890303190001, 238.95663363900007, 242.55951349500015, 249.8859572330001, 258.4516288330001, 252.41167325700007, 252.41167325700007, 273.66249944900005, 261.2365378170001, 271.2226749690001, 264.74919187900014, 274.8605888430002, 274.8605888430002, 269.80633839300003, 271.0916814330001, 267.31906004100006, 273.575007903, 261.15023349900014, 277.26003178500014, 285.3785749570002, 277.0843360450002, 280.3669629400001, 279.5229131850001, 284.8904997510001, 282.0498019250002, 283.07402106100005, 280.76422018000005, 272.11480011100014, 275.8429695750001, 279.5229131850001, 274.5099228600001, 265.81711842000016, 274.5099228600001, 275.5355790000001, 268.260063405, 269.2833007280001, 271.808658044, 290.2568179560002, 287.5932624090001, 275.2284139500001, 280.19055533000017, 280.1463400550001, 280.0581362500002, 273.8083656750001, 276.29302772500023, 261.3582210330002, 250.27329587000008, 258.95986318999996, 263.795256483, 257.71950596500005, 255.066911397, 258.91665957500004, 258.91665957500004, 246.38200802100016, 256.097750821, 240.26196610500017, 239.8609563770001, 214.28260262000003, 214.73343513100008, 226.69430836000004, 225.70310655900016, 214.36451473900001, 218.04491406500006, 206.95829668500028, 206.99900098500007, 206.83639252500006, 208.23959580500002, 205.7584061650001, 195.865475199, 180.93023966900012, 199.43052968500012, 184.6955215710002, 174.8402673600001, 176.0810399950002, 183.45486758100014, 185.97586820100003, 187.057777063, 174.64488409500018, 169.56642297500014, 174.72319804500012, 163.746488548, 171.00141358500002, 172.3198842600001], \"power_mean\": 223.82673692282108, \"energy_millijoules\": 9128.75984598797, \"energy_joules\": 9.12875984598797, \"coremark_score\": 6130.155461, \"coremarks_per_mhz\": 3.7125457007025195, \"ulpmark_cm_score\": 27.385976213392595}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [649.8576168769999, 651.130641072, 643.6443384909999, 648.704735695, 635.03437708, 654.856343562, 648.704735695, 635.003968, 661.0699195180001, 645.009404154, 667.283495474, 662.185109766, 672.2229761, 660.785477062, 662.1533914559999, 688.704061319, 668.237745936, 662.2801020379999, 661.0699195180001], \"power_mean\": 656.7335978322632, \"energy_millijoules\": 3283.6679891613157, \"energy_joules\": 3.283667989161316}}, \"1804800\": {\"active\": {\"elapsed_sec\": 37.313624309, \"elapsed_ns\": 37313624309, \"power_samples\": [198.27048194100018, 188.41748354100014, 199.47067003100005, 195.70521264500007, 201.50732359200015, 208.19883203000006, 202.11327907200007, 215.64611142900014, 219.94891799300012, 214.4874882030001, 221.19028446300013, 212.21047227600013, 234.30835712100009, 218.45646582100005, 224.49964950900005, 223.46605349200013, 219.78393202500013, 219.8665309050001, 204.96341767500007, 209.92840897500002, 209.887585725, 212.45570672400004, 227.2347745500001, 230.9581611750002, 234.76964413500014, 239.56584638900006, 233.40274929400016, 228.55933534500002, 239.7346354350001, 247.14765304500008, 233.36079523900003, 234.64381899900013, 234.72763060500006, 240.97995292500002, 232.24118443500004, 244.7459680300002, 234.64381899900013, 254.68456370800004, 234.8114422110001, 253.1821906460001, 261.96362883300014, 240.26196610500017, 257.1243139800001, 254.76639699299994, 263.3346227700001, 253.65536958100006, 265.81711842000016, 265.8603965220001, 259.563606015, 270.87343364100013, 258.4084846930001, 263.42116476700016, 266.9712449250002, 253.43918685400013, 263.3346227700001, 263.3346227700001, 274.3783949640001, 275.5355790000001, 278.193639675, 289.4171057550001, 276.9524513250001, 285.60038587500014, 290.6136621150001, 285.8221967930001, 288.2607043290001, 288.21613200900015, 280.76422018000005, 280.89663926000014, 283.2067969650001, 281.96147947500015, 287.01933785899996, 299.3511580200002, 291.94412285299995, 312.83020770500013, 310.38976181400017, 311.77177560000007, 308.0439624600001, 305.42548299400016, 308.73913758100014, 311.63490060000004, 308.3295830530002, 311.5891974750001, 306.86242646100004, 309.2396263050001, 308.5570354250002, 310.25306551799997, 320.234218326, 326.44304079200003, 327.49856147100013, 331.174046751, 333.56611379700007, 326.39686161400004, 333.7061967090001, 329.9799884010001, 327.5912765090002, 321.42922677700005, 329.9799884010001, 316.3697098900001, 308.8756557570001, 315.0832909950001, 307.5894177870001, 308.6935536010002, 313.7053462900002, 309.79733317500006, 316.0488295, 308.5570354250002, 336.67853884199997, 322.02396363700007, 325.74821078900004, 325.8872243970002, 326.8955562110001, 318.07395381900005, 321.7470063090001, 316.971956308, 318.119777783, 307.998437955, 304.473596282, 308.6482033850001, 299.42013653699996, 304.74556391400006, 299.42013653699996, 306.90795096600016, 306.95324201200015, 313.01919009000017, 312.97360300000014, 306.95324201200015, 306.90795096600016, 294.3226973650002, 305.5772572110001, 310.67677560000004, 291.88845558000014, 309.43288774199993, 293.2624207230001, 298.18043231700005, 309.3874783560001, 299.42013653699996, 302.0351719690001, 297.03059409900015, 288.25873395300005, 289.5431296380001, 283.2072923400001, 281.967706765, 280.76810467500013, 282.056148249, 270.93447981600013, 284.5800100590002, 278.3771267850001, 273.41400720600006], \"power_mean\": 277.60618486580415, \"energy_millijoules\": 10358.492887937417, \"energy_joules\": 10.358492887937416, \"coremark_score\": 6700.616457, \"coremarks_per_mhz\": 3.7126642603058513, \"ulpmark_cm_score\": 24.1347851183185}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [647.246004672, 635.82421875, 649.795529754, 642.24491045, 644.762797152, 633.459134506, 667.9500955679999, 681.705229326, 653.489396094, 669.671235558, 648.549735822, 675.88392033, 667.155833733, 672.1265577, 669.799208, 654.824982297, 673.33596696, 647.277008892, 667.155833733], \"power_mean\": 658.0135578577368, \"energy_millijoules\": 3290.0677892886843, \"energy_joules\": 3.2900677892886843}}}}, \"6\": {\"freqs\": {\"652800\": {\"active\": {\"elapsed_sec\": 50.092092481, \"elapsed_ns\": 50092092481, \"power_samples\": [134.96657338500006, 130.00036467600012, 127.62979204200019, 123.79362062200016, 133.80023395500007, 132.59264590200007, 121.67778105000002, 127.62979204200019, 120.94731881400003, 134.92932058500003, 125.25443843100015, 117.73218129400004, 116.45523503100003, 117.80502042400008, 118.86389095300012, 112.73309463600003, 113.90151167300007, 102.69231777000016, 136.28154193500006, 120.07201458700001, 120.181443339, 153.54459290300008, 123.94011257600005, 132.85201020000022, 131.38881649300004, 144.81965936500012, 139.81643492499995, 135.11520250500007, 140.11578374500004, 159.90461378400005, 143.767202913, 141.28577598300012, 159.98130241100012, 147.48934330800012, 132.59264590200007, 133.83742728000016, 139.8539256250001, 127.55618974100014, 125.53929193300007, 128.7598293310001, 128.7967845610001, 137.59674777500004, 133.6888447150002, 188.25864550500023, 136.2071087300002, 148.58268942300003, 152.49415560900013, 142.52648944800012, 159.90461378400005, 146.21084157300015, 157.46131425600004, 162.39010862700002, 141.28577598300012, 153.77307355900007, 190.98251593600003, 148.16648544600002, 161.14532724900016, 184.6955215710002, 145.30916629500007, 142.78917975000013, 164.9873801330001, 157.652737398, 137.8579667250001, 137.93251857500013, 146.62573739900017, 196.34667484700003, 149.1503286630001, 147.90489213900014, 188.7751753650001, 150.3916951330001, 164.016244906, 162.81349994100003, 152.93544156500002, 172.6706259, 158.778853711, 161.45275378500014, 191.30155227, 168.67119548300002, 172.63158787500004, 197.66829123900015, 170.14921117500012, 165.29623288100004, 171.507135285, 170.22684974000015, 169.09785182200017, 186.41167303300017, 191.42093492900017, 198.8334778410001, 186.53054740100004, 187.90095368100003, 216.26165847300013, 174.76215421500012, 186.49085476100004, 201.07418482900005, 208.40223281500005, 206.2857467150002, 195.225430169, 208.80903438500002, 215.02023283300002, 207.68951290500002, 210.05046002500012, 251.98408646100006, 212.57832394800016, 206.36682793000023, 248.64904741300018, 196.4669747590001, 216.26999825400014, 218.662241699, 229.8839198070001, 216.22074852900016, 229.63369566300014, 240.97995292500002, 274.42208745000005, 232.324758362, 233.61208927100017, 278.3257025150001, 229.842144372, 237.33618868100007, 234.89525381700014, 247.31765071300015, 234.89525381700014, 228.79968659400015, 239.692384005, 243.21917776500004, 239.692384005, 243.50466103500003, 287.815666857, 248.04815266800017, 261.8769833130001, 244.66120687500006, 256.9952809320001, 248.3037239160002, 235.84281569900008, 243.25051591500005, 245.774966425, 255.66816084699997, 247.02004554100017, 277.7974511550001, 246.29700918700019, 259.3480310540001, 277.09326676499995, 231.99024781100002, 238.114309122, 238.03014158100007, 260.2434835050001, 249.11817476900023, 232.9001612300001, 252.9254144690001, 277.31329612000013, 254.04140000500013, 251.47080652500017, 280.85665417500024, 250.2305087750002, 256.3070310270001, 251.6419730790002, 250.0597992370001, 245.1803714250001, 254.50868713700004, 248.7770111570003, 271.955177275, 237.56689555200012, 234.961008666, 289.1862854790003, 256.0061012130001, 232.64886719800018, 247.45189269300022, 235.12886916800005, 228.92479866600013, 231.23765278200005, 230.16479965100018, 215.35868744100003, 215.1946259130001, 227.89294962500014, 258.4423060380001, 233.67923144100007, 236.3688701530001, 225.08021799900018, 225.16341201900013, 237.65106309300018, 221.39810280100005, 222.55524211800014, 218.83595103300001, 236.41100263300007, 221.43952119100004, 233.59541983500014, 225.16341201900013, 201.54778979700018, 238.072117167, 205.393228045, 197.82814277700015, 190.544096943, 185.42118900100002, 181.69747679300008, 190.544096943, 182.9414243210001, 206.4706800450001, 178.01716536800006, 203.9910343150001], \"power_mean\": 194.64336363700514, \"energy_millijoules\": 9750.093372117773, \"energy_joules\": 9.750093372117773, \"coremark_score\": 4992.112462, \"coremarks_per_mhz\": 7.647231099877452, \"ulpmark_cm_score\": 25.640780088826844}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [716.1311968400001, 701.70791796, 700.500061221, 681.705229326, 693.0813555520001, 684.4162714480001, 673.175027895, 670.788654185, 681.737899821, 686.7389875499999, 692.716768944, 707.444213, 701.271512816, 681.737899821, 676.8666827999999, 690.099095718, 688.1775866810001, 668.14186248, 690.5945525579999], \"power_mean\": 688.7911987692631, \"energy_millijoules\": 3443.955993846316, \"energy_joules\": 3.443955993846316}}, \"940800\": {\"active\": {\"elapsed_sec\": 34.118466289, \"elapsed_ns\": 34118466289, \"power_samples\": [197.86843055700012, 172.3198842600001, 170.8067207250001, 179.0211408150002, 168.3220586750001, 163.39948918000005, 162.082205649, 169.44986533500014, 157.11718497300012, 171.96914262000007, 169.41114584500008, 177.01227602500012, 183.13888688700013, 185.69842682500018, 195.54474409800002, 177.05155214499996, 183.70652166900004, 202.82819781700016, 188.21883391500012, 194.3045649930001, 190.66368437500012, 188.05979171700017, 195.38448154399998, 174.3322307100002, 180.73316927500002, 176.894649081, 176.93392520100008, 181.9734670250001, 183.21783132500025, 174.44950083000003, 177.05155214499996, 195.74517528700005, 190.7036151100001, 196.22276115300008, 207.75126668500013, 200.54993340900012, 197.9888806890002, 193.14427987500017, 201.70923957900004, 207.91390369500004, 201.87089688000003, 198.2301941610001, 203.15177978500014, 194.42468678500006, 203.07072842500008, 196.98565115700012, 199.551364541, 190.78327180700012, 194.58491773699996, 200.83215887699998, 213.33987625300006, 198.2301941610001, 204.63915113500013, 182.2889712770001, 202.19400396300023, 200.87256560700007, 195.78534392200004, 206.04229463500008, 204.59877391500004, 198.47150763300021, 203.2731490010001, 212.00618022300011, 210.84301431000006, 210.80234124000015, 217.0099764780001, 218.3329579970001, 209.56162777500015, 212.2236798570001, 216.84546647900004, 224.49964950900005, 207.20210500500002, 219.6191578490001, 207.2426005650001, 206.00164981, 210.96545283, 217.17427529600013, 223.38309776199992, 229.59192022800005, 227.110018718, 229.50858359100005, 237.04169344900004, 235.758885448, 238.19847666300006, 233.36079523900003, 229.53856322900015, 234.4339668030001, 246.6372230290001, 248.00548452300006, 249.33137463700018, 248.13327014700008, 260.5456595490001, 264.315665891, 261.8769833130001, 260.459355231, 258.02085118900015, 264.185563539, 266.75388840100015, 254.38446471400005, 264.27222418100007, 259.5956464650001, 270.349459497, 264.1236953670001, 265.339497717, 284.0491827180001, 280.41117821500006, 284.09334895200004, 279.12619030500014, 285.24544281300007, 277.9295139950001, 271.67748638800015, 284.0491827180001, 279.12619030500014, 291.54205286900003, 282.8969107370001, 281.4753654250002, 275.4038724000002, 281.79059644100016, 286.486096803, 284.931114751, 279.08226094500003, 302.30642595300014, 293.7550691050002, 293.7997088930001, 298.81078749200014, 298.8558954770001, 292.648853853, 287.5932624090001, 293.7997088930001, 301.20163624500015, 302.5323935270002, 297.4803861450001, 287.50434634500004, 288.7487703150001, 286.97039280900015, 292.55923302300016], \"power_mean\": 227.3065584769038, \"energy_millijoules\": 7755.351152662849, \"energy_joules\": 7.755351152662849, \"coremark_score\": 7330.303475, \"coremarks_per_mhz\": 7.791564067814626, \"ulpmark_cm_score\": 32.23580661646261}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [676.57529016, 708.48109986, 719.7874831, 682.815487522, 699.024743558, 666.773012389, 669.158852323, 672.949746285, 664.1322501420001, 668.045979024, 665.2456435600001, 679.2881450250001, 653.177020282, 656.747057866, 659.44947456, 654.418089987, 659.3548385280001, 655.7218400400001, 696.2723288200001], \"power_mean\": 674.0746517384737, \"energy_millijoules\": 3370.3732586923684, \"energy_joules\": 3.3703732586923683}}, \"1152000\": {\"active\": {\"elapsed_sec\": 29.095541863, \"elapsed_ns\": 29095541863, \"power_samples\": [287.90236467900013, 263.05808408099995, 272.97550581300004, 288.9630573410001, 281.7464893770001, 281.657820537, 293.03830137500006, 273.0633412230002, 278.156574225, 266.82327684300003, 286.83690442499994, 260.752813233, 268.01882637300014, 265.7537803250001, 266.95391413900006, 260.6663898810002, 252.06883378600003, 257.2026612930001, 257.1165942650001, 244.62832542499996, 250.74395291700012, 247.11120396600006, 242.36122558500006, 234.83500541, 242.19172297500006, 230.94482177300006, 236.11650740100004, 233.67923144100007, 243.47367912500022, 236.89290611700005, 238.5115107050001, 239.755100825, 230.86124784600008, 226.15384217000008, 229.8307639850001, 219.8279854320001, 223.58753212500005, 235.8643607130001, 235.78009575300007, 213.708796645, 221.27406003299996, 229.8307639850001, 214.9072019250001, 216.26999825400014, 216.2290291400002, 212.42826867500003, 211.27068684000017, 211.22974444500016, 198.8667026600001, 202.62577724100015, 195.1037130850001, 207.54786590000003, 211.31141927400017, 202.62577724100015, 221.1500172650001, 226.1121856850001, 221.19143565500008, 232.31388020500015, 221.10859887499998, 229.66385342100023, 226.1121856850001, 226.19528503200013, 218.75335215300015, 217.46861471500006, 226.236941517, 217.4273749450001, 224.87265958500018, 231.1121844700001, 238.63804832100016, 234.792932405, 242.19172297500006, 250.95774631500012, 242.36122558500006, 236.32695373700005, 220.2407261940001, 230.2066345610001, 232.0625861730001, 224.16798982500006, 238.80683736700007, 230.4153800350001, 238.97540973900016, 239.05969592500014, 241.54435797500014, 241.4598341100001, 240.09293868500015, 251.47080652500017, 256.3932003570002, 251.25701312700016, 258.74428822899995, 256.2641673090001, 252.66841826100006, 240.17734390500004, 258.74428822899995, 254.2940024710001, 252.71110427500025, 268.4984082320001, 253.9127231970001, 266.4929712170001, 275.0967073500001, 266.40607328500005, 275.18443657500006, 267.60687692500005, 280.19055533000017, 272.65578438500006, 287.4154302810001, 288.43703303100006, 271.2841960290001, 277.4894552850001, 276.3370645750001, 282.41014154100003, 286.25860714500004, 291.274235705, 302.3967665350001, 302.3967665350001, 299.91605208500005], \"power_mean\": 246.4133988461914, \"energy_millijoules\": 7169.531361733478, \"energy_joules\": 7.169531361733478, \"coremark_score\": 8596.382642, \"coremarks_per_mhz\": 7.462137710069445, \"ulpmark_cm_score\": 34.86978261010829}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [783.15436804, 755.81269174, 784.432201714, 761.7996871060001, 778.79488115, 774.129685652, 755.81269174, 774.537394141, 755.8849881680001, 767.053338132, 754.644512298, 744.7482765450001, 752.159493424, 755.8849881680001, 752.015613216, 747.26517166, 731.094253092, 731.4790935599999, 728.578250492], \"power_mean\": 757.3306094756842, \"energy_millijoules\": 3786.6530473784214, \"energy_joules\": 3.7866530473784215}}, \"1478400\": {\"active\": {\"elapsed_sec\": 21.737845929, \"elapsed_ns\": 21737845929, \"power_samples\": [421.40864431499995, 430.083986955, 418.62195728500024, 421.10281402700025, 419.80935617, 417.3326787000001, 415.99295878500016, 416.3481838450002, 400.0378634910003, 402.5146599110001, 404.9914563310001, 395.080210329, 396.2191268460001, 388.9336706270001, 398.79540495900005, 398.84539262399994, 390.1225571670002, 395.080210329, 381.3516522000001, 380.26040631500007, 376.5409727430001, 364.00355849100004, 384.71336688500014, 381.20444040000007, 361.478796921, 384.07407383500004, 361.76751717700006, 367.964459733, 348.13505573500015, 365.63220214500006, 348.0875079100001, 343.31837608500007, 346.9912125750002, 333.264017963, 337.124603835, 328.5381520330001, 337.1713751010001, 341.9853634340001, 340.4640669570001, 343.4127529310001, 329.54422806700006, 335.5536006660001, 329.63729904000013, 337.0308202140001, 333.264017963, 344.5611920250001, 335.741170623, 319.769857065, 317.2462879950001, 316.05359371500015, 318.531102615, 314.7191313200001, 301.08601526300004, 303.657926235, 314.810777775, 323.258868669, 322.1087091810001, 311.09451442500006, 300.90510186100005, 313.709432685, 309.81005685000014, 302.419171785, 302.46428532100015, 308.56730058000005, 296.22133804500004, 304.8966806850001, 291.21744834000003, 298.60874365300003, 297.32499986300013, 299.98259639700007, 323.39770415700013, 305.4992593600001, 333.3574452600001, 336.0691170690001, 322.2473659650001, 317.384232299, 320.9623729200001, 314.7648367500001, 324.6825191400002, 329.63729904000013, 307.32860560500023, 338.363358285, 305.0328426210001, 322.2934266090001, 351.854845631, 331.0199601019999], \"power_mean\": 346.5871688817908, \"energy_millijoules\": 7534.058478120671, \"energy_joules\": 7.534058478120671, \"coremark_score\": 11508.009575, \"coremarks_per_mhz\": 7.784097385687229, \"ulpmark_cm_score\": 33.1826466075375}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [776.4501415200001, 765.336480972, 780.0630292, 763.952953569, 770.238051888, 767.5306796700002, 783.716468194, 787.2898609609999, 801.806998162, 813.94722554, 783.416642932, 781.15511385, 761.211120832, 767.383761828, 776.5392009599999, 776.0047752950001, 811.544743185, 775.9675819700001, 779.5409745999999], \"power_mean\": 780.162937112, \"energy_millijoules\": 3900.81468556, \"energy_joules\": 3.90081468556}}, \"1728000\": {\"active\": {\"elapsed_sec\": 18.579178743, \"elapsed_ns\": 18579178743, \"power_samples\": [458.85526437299995, 486.93682281500014, 481.116458277, 476.263783569, 488.6630157850002, 484.8875272770001, 488.60874338500025, 491.19534958500003, 492.4385822969998, 536.847281653, 498.41599953900027, 499.7683292460001, 524.2821245250002, 499.71352118100026, 490.00097132500014, 499.5493780530003, 492.26327469700004, 491.8951890410001, 515.4959036590001, 505.7985515930002, 548.902187469, 508.33558424700004, 511.8310540350001, 551.3793401290002, 523.043370075, 516.8455363350001, 520.6213946450002, 521.7487364250001, 519.2672851800003, 525.520878975, 521.7487364250001, 516.6943470809999, 518.0842907849999, 514.4971445230001, 571.748688265, 526.311559965, 519.1560510190002, 523.043370075, 530.3113598010002, 525.4090512000002, 537.8035314520002, 532.5631430869998, 536.338812709, 535.043880684, 537.577210919, 565.8448227030001, 542.4779732210002, 528.8481268820001, 547.3038441690003, 523.890711815, 527.1053495610004, 534.592479915, 526.2554428649998, 511.49920421100023, 518.5438342100001, 533.4672751329999, 565.1500527930002, 525.919315825, 529.5809589210003, 567.5086688330002, 537.9099582810002, 533.1292979290001, 520.5775657050003, 539.4874547370002, 526.7688651130002, 525.4151252649999, 524.0101978500002, 551.9649578270003, 517.931617401, 506.8470692789999, 543.7027737350002, 512.927013966, 510.5590577490002], \"power_mean\": 520.4937210037535, \"energy_millijoules\": 9670.34587713791, \"energy_joules\": 9.67034587713791, \"coremark_score\": 13465.474523, \"coremarks_per_mhz\": 7.792519978587963, \"ulpmark_cm_score\": 25.85222940071213}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [691.6745956230001, 686.706247722, 701.573599664, 696.472122721, 732.0193355810001, 722.441072688, 683.401816465, 737.794968796, 688.562049476, 695.5307633819999, 706.6769789250001, 710.4007224, 712.989412408, 724.166313416, 729.1360862240001, 722.924887776, 724.131797518, 722.890431048, 771.332213756], \"power_mean\": 713.7276534520527, \"energy_millijoules\": 3568.638267260263, \"energy_joules\": 3.5686382672602632}}, \"1900800\": {\"active\": {\"elapsed_sec\": 16.884097649, \"elapsed_ns\": 16884097649, \"power_samples\": [504.5884926490003, 509.37707179400013, 502.0036674810003, 510.5590577490002, 497.596177419, 491.8822603140002, 491.447014977, 491.9910017630002, 496.8858520890003, 485.85451042, 499.25499564500024, 500.4372203050002, 494.35668200400005, 494.6292689270001, 482.13828651200015, 491.9910017630002, 488.2749564750002, 477.188730652, 483.26776532100007, 474.70989570899997, 472.07471750700006, 483.4835856330001, 482.13828651200015, 474.6028164569998, 495.757679153, 490.699500489, 489.34966977500017, 511.5791621850001, 505.6097397890003, 496.8311036940004, 499.30958181300025, 494.5202901880002, 505.6097397890003, 498.1817060310002, 494.24770326500015, 496.8858520890003, 507.201554857, 488.1125181, 508.52610423300007, 515.5124325270001, 525.583188785, 517.9870915070003, 531.4371641350001, 525.359295945, 515.6790705030003, 512.0774730330002, 510.89090757300005, 500.9307184090003, 504.91856010499987, 497.596177419, 508.85695806900003, 507.45340690199987, 522.2057242750002, 521.2564879900001, 530.8748297949999, 524.1220256250001, 543.2049271530002, 530.6499870169998, 524.4017388000002, 534.479702202, 521.0793322650002, 537.181222618, 535.8869370549999, 544.783913619, 543.3751940520001, 550.9217627410003], \"power_mean\": 506.08880987342434, \"energy_millijoules\": 8544.852884969092, \"energy_joules\": 8.544852884969092, \"coremark_score\": 14817.449028, \"coremarks_per_mhz\": 7.795375119949496, \"ulpmark_cm_score\": 29.257379075509302}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [719.3051526500001, 705.7306136750001, 728.125031352, 713.240451504, 728.2296479440001, 724.2977724400001, 719.33966804, 709.6192172799999, 697.312424176, 705.7981615799999, 694.765823934, 700.9023530320001, 692.186492112, 704.2507028279999, 692.08704392, 687.322107661, 696.005765749, 687.3549066590001, 694.732498824], \"power_mean\": 705.2950439663158, \"energy_millijoules\": 3526.475219831579, \"energy_joules\": 3.526475219831579}}, \"2092800\": {\"active\": {\"elapsed_sec\": 15.339687754, \"elapsed_ns\": 15339687754, \"power_samples\": [712.1016677050002, 706.5758299550002, 715.4259796410001, 726.494840973, 715.1655223570001, 713.859747553, 728.4457724250001, 718.548053385, 724.6019363140001, 723.3001551290001, 717.1813858529999, 712.233001302, 700.910652112, 697.1988854600002, 697.3274519050001, 700.8463564379999, 694.53441711, 702.275598361, 704.1009194650001, 697.1988854600002, 688.5434994680002, 684.7043535989999, 696.7487376500001, 688.2239964310002, 680.0150181130002, 682.4236575310003, 671.1658007130002, 669.866815803, 655.0917031620002, 655.2162333430001, 659.976474525, 655.2162333430001, 661.212260715, 657.313538811, 665.0491511620003, 651.508340413, 650.3923789730002, 647.7963951410002, 657.5008503869999, 656.2650641970001, 647.7963951410002, 641.8589698649998, 647.982281173, 639.3865666649999, 627.0775008750002, 615.761792578, 630.729102345, 618.2986511490001, 622.614014433, 624.422478725, 627.4597060750002, 638.089088807, 618.056402403, 621.8249352630003, 601.9815352539999, 622.9435080599999, 622.8826300349999, 608.2212231690003, 599.7443559210001, 595.8575277269999], \"power_mean\": 666.9257704674334, \"energy_millijoules\": 10230.433074066303, \"energy_joules\": 10.230433074066303, \"coremark_score\": 16310.020877, \"coremarks_per_mhz\": 7.793396825783639, \"ulpmark_cm_score\": 24.436893158877016}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [754.7890534109999, 767.126891352, 772.241017338, 771.0001852280001, 779.6155264500001, 757.198065268, 772.1301630419999, 769.612148516, 778.45911035, 817.1193821700001, 801.4233578840001, 775.7078009, 789.3186037950001, 788.0782465699999, 780.5946052500001, 781.834903, 774.3890499500001, 768.146847468, 775.7078009], \"power_mean\": 777.6048820443158, \"energy_millijoules\": 3888.024410221579, \"energy_joules\": 3.8880244102215786}}, \"2208000\": {\"active\": {\"elapsed_sec\": 14.533005984, \"elapsed_ns\": 14533005984, \"power_samples\": [690.610949523, 692.103900649, 704.9478247270004, 707.8070679610003, 707.2237448170001, 702.7924274690001, 702.985823727, 703.9641800940001, 725.3896798980002, 720.045997427, 732.3523824250003, 730.9842309000001, 715.4259796410001, 726.494840973, 722.784811518, 731.313829785, 735.1556310450003, 738.8697151770002, 743.8204757940002, 733.8160202670003, 743.6875167610003, 737.0372241710002, 736.0655752890002, 742.314064634, 747.3971902810001, 746.1606324410002, 750.9102393370001, 775.3779041309999, 746.094205483, 763.3456926459999, 758.534319417, 775.718192394, 764.5861857400002, 766.9912831050001, 755.9230035770001, 757.1634966710001, 777.042956514, 780.4630471050002, 791.593450095, 785.2751494229999, 787.9534595550003, 805.2700542750003, 802.3810854150001, 804.8530140350001, 792.9714720410002, 791.593450095, 787.9534595550003, 801.4221980250002, 805.1308028250003, 806.3017295110001, 786.5112918530003, 801.271115685, 812.4124588910001, 793.580734911, 799.909156795, 801.0756738050002, 788.4338186970001], \"power_mean\": 756.8350143684387, \"energy_millijoules\": 10999.087792717246, \"energy_joules\": 10.999087792717246, \"coremark_score\": 17217.630854, \"coremarks_per_mhz\": 7.797840060688405, \"ulpmark_cm_score\": 22.729157609372923}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [673.5455288400001, 674.8176059849999, 682.1947930140001, 673.4487542, 674.752860135, 666.039489985, 666.0712825109999, 673.4487542, 658.6609489919999, 680.9878187639999, 674.849812895, 683.303616281, 693.326629495, 705.3925268600001, 705.4939355399999, 684.8093749159999, 684.9732835770001, 672.62770275, 682.5541513000001], \"power_mean\": 679.5420458021052, \"energy_millijoules\": 3397.7102290105263, \"energy_joules\": 3.397710229010526}}}}, \"7\": {\"freqs\": {\"806400\": {\"active\": {\"elapsed_sec\": 39.822232849, \"elapsed_ns\": 39822232849, \"power_samples\": [183.15267359400013, 174.3979504050002, 168.2844885200002, 162.08873471800007, 174.67206333500008, 174.67206333500008, 168.51760380000007, 178.23465359700026, 157.32303986300008, 164.41084770600014, 163.4429180290001, 151.04962805700018, 153.52666176700006, 166.9257107220002, 148.534822159, 182.03285298700007, 170.95615592000013, 170.87807987000008, 190.82629723500008, 174.71107867500018, 185.74840355200013, 174.59363043500014, 175.83620800100005, 172.15569422500005, 167.15846859400006, 168.47888431000013, 167.08094906300005, 165.99755159900008, 172.11659672500002, 206.611971435, 177.0747248560001, 183.23193992400013, 185.74840355200013, 184.74763543300014, 190.98605299700012, 189.78684638900006, 193.5439307690001, 175.02420694500017, 190.02602125300007, 173.98042035000003, 223.58753212500005, 179.7486266290001, 204.86588749500015, 198.625032948, 208.37984702500012, 198.54454534700005, 192.46487291100016, 199.9852752590001, 196.3030110750001, 203.70756125499997, 202.54493370500018, 253.31230487200003, 217.4273749450001, 227.309995825, 268.19332159400005, 229.78892907500017, 226.14430215300013, 218.5885779770001, 223.1730107730001, 222.22405731900005, 258.0543597310001, 244.62832542499996, 280.5471850250002, 244.54344562500012, 255.79111978200012, 286.57015623300003, 252.1544258450001, 248.35061142100017, 245.82918784100002, 250.7865797610002, 266.8668971730001, 265.66688239300015, 273.1070337090001, 274.7987106150001, 272.97550581300004, 289.9787533650001, 324.8679499630002, 275.5459820850002, 267.975370567, 282.9413842920002, 289.14159401400013, 272.8878956220001, 294.1434407190002, 289.14159401400013, 286.48101159300006, 287.7240656010001, 281.56937905300015, 315.9158275310002, 271.56135286100005, 276.47704889, 315.36476279500016, 296.9648299520002, 287.1449941410001, 287.323293219, 290.9044648260001, 282.2324479380002, 277.1430287850002, 278.29269968000017, 287.9372163290001, 260.9962090670001, 259.8445904490002, 291.7844755770001, 272.1426459510001, 265.90881577100004, 252.45453293100002, 265.3626279370002, 239.9796886900001, 261.97404633299993, 247.41235670900028, 249.63191963100007, 233.91112537200013, 225.15579551400003, 249.67476620100012, 226.47738804900007, 226.39395612900012, 216.604059947, 223.91763489900018, 200.61872723400006, 210.3306914430001, 200.53800234300013, 201.65503133700008, 201.81692623300012, 182.07242667700018, 202.89731116500002, 191.78526056400017, 196.78251993300012, 184.50988669700007, 196.86309549300017, 185.51029857600008, 174.55461509500003, 175.75785717700012, 169.484048595, 174.51539864500023, 167.04208965800012, 173.3161574100002, 163.4044354130001, 158.48478989800003, 167.23618740400013, 172.0386022250001, 173.66776696500017, 160.965884319, 162.28164418400013, 164.75891579400013, 164.68143488400017, 156.12253146, 167.19732799899998, 157.399609845, 139.89891565100004, 165.9587516690001, 144.89077134100012, 152.440530555, 170.91711789500005, 179.59121311100012, 182.19094480500019, 171.03403177500002, 188.10602853400007, 166.8870505960001], \"power_mean\": 213.972281178274, \"energy_millijoules\": 8520.854004312927, \"energy_joules\": 8.520854004312927, \"coremark_score\": 6280.144695, \"coremarks_per_mhz\": 7.787877845982143, \"ulpmark_cm_score\": 29.33978212435745}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [753.561103365, 772.1496505800001, 752.029926858, 766.67604871, 726.4675732439999, 735.1094697059999, 730.149677352, 720.1306074299998, 728.945556724, 710.280471335, 722.712019858, 695.572450956, 689.405625819, 694.3999313160001, 680.792130876, 685.6879378140001, 706.46226525, 716.3072702459999, 700.533193248], \"power_mean\": 720.3880479308947, \"energy_millijoules\": 3601.9402396544733, \"energy_joules\": 3.6019402396544735}}, \"1094400\": {\"active\": {\"elapsed_sec\": 29.313976239, \"elapsed_ns\": 29313976239, \"power_samples\": [281.6137134730001, 284.0919348530001, 282.8969903970001, 278.0684890650001, 281.6137134730001, 278.02455970500023, 290.38082334900014, 295.252056379, 301.3570370090001, 292.70823551600006, 316.3291260830001, 309.94693185000006, 312.33326887500016, 318.7612278180002, 303.839082757, 301.3570370090001, 301.5379504110001, 314.9940706850001, 306.45340629300006, 328.7706523290001, 329.9167512160001, 325.00696357100003, 336.11606975400014, 341.07633707700006, 324.0338683150002, 332.445690369, 345.75895077500013, 328.81724796900005, 322.15500725100003, 339.5549814300002, 328.6311043610001, 332.3989161090001, 328.67770000100006, 339.6021127350001, 347.08594574500023, 344.60831850500017, 345.75251760000003, 351.9025720760002, 348.3247593650002, 339.5080918240002, 348.1826035600001, 339.8987456130001, 330.8335800880001, 328.65945568100017, 341.655096267, 347.75540464000017, 345.23177287500005, 358.85835285300004, 332.7029738350001, 339.85155483300014, 347.4230575350001, 351.23562560100015, 332.56271280300007, 334.850755089, 335.08503694800004, 320.1317380570001, 318.9862329210001, 317.5642456470001, 325.41092389300013, 319.99325939300024, 319.94702079800004, 321.230707833, 305.2721037530001, 312.79344871500007, 308.8976349750001, 294.0844178860002, 281.7006318420001, 273.0775820250001, 275.464642495, 276.7904617050001, 284.39787369500016, 274.4470933050002, 280.64017508100017, 268.60325285700014, 279.3983120250001, 271.7919799680001, 280.5515062410001, 269.4042186990001, 257.234820388, 267.19047807100014, 243.7363238250001, 249.84571302900008, 235.06513997700006, 252.36882183800014, 243.69399302500017, 252.15443393700002, 238.614870925, 255.86784797700022, 242.28615137500014, 233.57518860900007, 234.20498913000006, 220.03384475500002, 235.62952752600006, 235.96641405900004, 225.03103968200003, 225.15579551400003, 218.91978607800013, 220.157887523, 226.22752014499997, 226.39395612900012, 220.19909351100011, 228.78682207700012, 225.15579551400003, 215.16024209900013, 211.446116189, 213.84016936500018, 213.9222001290002, 212.72521950400005, 217.59908575300005, 224.9479403350001, 211.446116189, 225.03103968200003, 225.197451999, 237.33063740500018, 241.17536008500008, 242.45589158000018], \"power_mean\": 288.04175974431047, \"energy_millijoules\": 8443.649300984463, \"energy_joules\": 8.443649300984463, \"coremark_score\": 8532.132009, \"coremarks_per_mhz\": 7.796173253837719, \"ulpmark_cm_score\": 29.608051103076008}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [721.403818608, 695.0059402290001, 684.743845143, 680.563940034, 687.5523769150001, 683.7290383110001, 683.7618277560001, 692.4516305280001, 696.1723462680001, 702.3439233690001, 701.20443988, 708.4133146649999, 707.3426261999999, 709.7550249599999, 708.51490533, 711.864289075, 738.5783595239999, 715.925528392, 714.8907801400001], \"power_mean\": 702.3272608066842, \"energy_millijoules\": 3511.636304033421, \"energy_joules\": 3.511636304033421}}, \"1401600\": {\"active\": {\"elapsed_sec\": 22.879109992, \"elapsed_ns\": 22879109992, \"power_samples\": [351.854845631, 343.12937977900015, 361.76751717700006, 362.942470327, 366.62925074600014, 388.68636618300025, 370.4416123930001, 370.2960048410001, 379.9663389550002, 381.10613115, 361.6713594890001, 391.410585997, 377.77943042799996, 391.509592721, 392.599353587, 392.599353587, 391.459962101, 395.22938261700006, 406.21452992900004, 395.03040108899995, 398.0468717189999, 393.94105652200005, 423.4263390630001, 409.69701103100033, 430.705378653, 430.705378653, 412.37526363300003, 427.1409993330001, 418.5203388150003, 420.94989888300006, 423.3751611180003, 427.1409993330001, 420.8480427340003, 424.562347069, 440.66578455200033, 443.70675392700014, 434.41950456300015, 434.9381100119999, 434.26462951500025, 413.006481353, 422.8644314720002, 442.7816705490002, 435.299990601, 435.14493684900003, 446.1293726010001, 440.97227572999986, 423.590675381, 426.013266121, 421.06560980100016, 424.87868276999984, 403.10141108100015, 412.55094558500014, 422.3025238810003, 417.401751955, 407.55211293, 407.55211293, 413.53880733000005, 390.12248052100017, 382.59864612, 380.32116959999996, 380.22311242500007, 376.5083147290002, 367.991290145, 357.99457610700006, 363.2316552610001, 363.18358167300005, 365.7103710590002, 355.1880726590001, 344.71102815000006, 333.19198919300015, 334.80380240399995, 349.32764992, 350.52095268100015, 347.2333539050002, 333.37932155500016, 328.47307447800006, 336.1390320030001, 326.0451889530001, 311.3726501950001, 310.0438520650001, 311.3270631050002, 308.85216622500013, 322.37949800100023, 313.7100779350001, 316.3727982070001, 302.7968506330001, 321.045752979, 330.90501820500015, 304.99942364100013, 298.94446428900005], \"power_mean\": 382.857211953289, \"energy_millijoules\": 8759.432263509756, \"energy_joules\": 8.759432263509757, \"coremark_score\": 10932.785236, \"coremarks_per_mhz\": 7.800217776826484, \"ulpmark_cm_score\": 28.540662508625786}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [699.4950583799999, 688.430108688, 703.415740392, 687.3549066590001, 693.5922427959999, 683.7290383110001, 693.625337838, 692.2527341440001, 698.523046678, 707.10553235, 702.237032784, 739.9982079600001, 723.985527496, 702.209540207, 702.243049633, 707.20711915, 707.2410393999999, 703.5503608439999, 711.09726575], \"power_mean\": 702.4890994452632, \"energy_millijoules\": 3512.4454972263156, \"energy_joules\": 3.5124454972263157}}, \"1766400\": {\"active\": {\"elapsed_sec\": 18.184246399, \"elapsed_ns\": 18184246399, \"power_samples\": [525.6954229849998, 503.3509255639999, 496.9950681180003, 510.946310583, 505.6097397890003, 509.5981621210001, 505.68961861800017, 508.0293982169999, 502.30702823799993, 515.6790705030003, 521.6474849850001, 583.3121560050001, 536.3898270700001, 535.435061401, 549.1120629830002, 531.774784237, 540.3889123690001, 532.7345567730001, 529.0751635290001, 536.559204311, 536.502842073, 536.3898270700001, 588.3785910650001, 557.3454443849998, 567.566809253, 559.9653646500001, 554.9017254250002, 569.5222044120001, 564.744497595, 558.843305585, 563.8546423579999, 564.6867736710001, 568.5178517050001, 613.9528078409999, 577.0646205230003, 573.4077825150002, 605.111952921, 578.3015940780001, 568.475623611, 562.154924041, 565.477630161, 544.5979760760001, 576.3038069850002, 584.902540909, 600.8013849670003, 577.4229573180003, 576.0113251310001, 597.6741155160003, 551.1624616770002, 558.6965009999999, 538.8573794040001, 551.2198880070002, 548.7481966770001, 535.145790456, 538.8573794040001, 548.404940165, 536.2682116410001, 527.1085663770002, 549.5256958800003, 517.89138071, 515.304403377, 512.832830997, 506.7601329009999, 504.45353566300037, 504.2883232310003, 494.77524178500016, 491.01176964, 460.0319535450001, 471.1658741850001, 483.644303325, 486.496016265, 472.2951151780003], \"power_mean\": 539.9743996073473, \"energy_millijoules\": 9819.027531612091, \"energy_joules\": 9.819027531612091, \"coremark_score\": 13758.186121, \"coremarks_per_mhz\": 7.788828193500906, \"ulpmark_cm_score\": 25.460769836435617}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [679.032009992, 680.6617839779999, 686.861400086, 694.300126884, 693.2270031829999, 680.922645315, 735.426346425, 688.36422298, 689.603808555, 724.367100798, 699.595575876, 684.7765258009999, 699.629139081, 699.8619466160001, 717.8209622480001, 743.71464882, 715.58268895, 746.8360134200001, 688.5949076440002], \"power_mean\": 702.588360876421, \"energy_millijoules\": 3512.941804382105, \"energy_joules\": 3.512941804382105}}, \"1996800\": {\"active\": {\"elapsed_sec\": 16.080987754, \"elapsed_ns\": 16080987754, \"power_samples\": [575.4769047440002, 570.5263810010001, 582.9006631170002, 586.551422457, 586.374447681, 596.0951919450001, 587.7879802970001, 595.0372131290001, 590.0876405450001, 607.5850686009999, 612.595696609, 613.7719120890001, 626.1632196750002, 632.0878930350002, 629.427985945, 614.8273960570002, 623.611917555, 628.3137619500003, 633.5079610090002, 643.2188314950001, 652.005356611, 647.0555459320001, 657.1382468470003, 648.1681672050001, 650.7648635170001, 649.4044877550002, 664.436644135, 661.633488105, 666.4106547610002, 680.1708538890002, 655.5901440150003, 676.619753895, 666.7251359850002, 664.3109607850001, 674.1471127950003, 666.5992143450001, 677.7290818650001, 678.7117122590003, 689.7794043029999, 684.8955861509999, 691.2074328740002, 691.0794600430002, 686.0081045520001, 657.5008503869999, 674.3710209650003, 683.3413068370003, 665.279620133, 678.3310295230001, 681.5330103560002, 686.541565193, 686.2220308570004, 676.2715977930002, 667.4347783850001, 657.8032369350003, 653.907545991, 657.8658407100002, 670.0933670490001, 665.0910605490001, 644.1496562969999, 660.7114438799999, 650.203393581, 644.1496562969999, 635.4977040690001], \"power_mean\": 647.8228669420159, \"energy_millijoules\": 10417.63159005573, \"energy_joules\": 10.417631590055729, \"coremark_score\": 15558.874782, \"coremarks_per_mhz\": 7.791904438100962, \"ulpmark_cm_score\": 23.997777022431894}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [663.083573355, 701.0664196850001, 698.724481617, 682.845404806, 687.8037710320001, 683.041805174, 698.523618744, 679.2923964439999, 692.86176357, 678.020971804, 694.200322452, 689.273447436, 701.5034240550001, 702.7758606599999, 699.227069097, 706.7670256499999, 697.82084286, 723.499872546, 693.094111236], \"power_mean\": 693.338220117, \"energy_millijoules\": 3466.6911005849997, \"energy_joules\": 3.466691100585}}, \"2188800\": {\"active\": {\"elapsed_sec\": 14.663587807, \"elapsed_ns\": 14663587807, \"power_samples\": [656.8141481880002, 672.883028444, 671.5846368690002, 667.812610033, 660.3984735649999, 655.4543661770001, 680.1708538890002, 675.036761373, 689.926717627, 684.8596370160003, 693.571453605, 675.73326507, 683.213719117, 670.9765286490003, 693.2347499350001, 679.6975934040001, 695.577307025, 699.3485202350003, 694.406087955, 701.7591009790001, 699.541891395, 698.1774201150001, 706.705346338, 718.0908395189999, 724.0111286259998, 733.9904376370002, 719.0648832669999, 733.3707177450003, 712.948311353, 709.1764435280002, 716.4633201450001, 728.8257208250002, 740.0151722349999, 743.7256912949999, 748.6716997799999, 762.1309294300002, 751.00854476, 753.5464715950002, 751.0756116949999, 764.4032507050001, 772.849584353, 749.8401817449999, 774.513030263, 768.1088286849999, 786.7173079230001, 760.7608194690004, 771.8861859509998, 768.3797321750001, 797.842674405, 787.6090051290003, 796.395921753, 792.6907006230003, 780.1952257060002, 775.1830993930002, 783.218811276, 790.6290275730003, 780.8142441470002, 788.0184341460001], \"power_mean\": 728.3285552734138, \"energy_millijoules\": 10679.909722597156, \"energy_joules\": 10.679909722597156, \"coremark_score\": 17063.68166, \"coremarks_per_mhz\": 7.79590719115497, \"ulpmark_cm_score\": 23.408437570500794}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [698.758044822, 692.6957765809999, 688.8772516409999, 693.867584046, 692.197645021, 696.377705576, 687.6389720760001, 698.824999113, 686.2689893180001, 669.0566587349999, 656.7915792729999, 659.363427135, 668.0383532550001, 675.15092568, 698.523618744, 680.139893763, 675.37745352, 660.443855876, 670.4555806], \"power_mean\": 681.518332356579, \"energy_millijoules\": 3407.591661782895, \"energy_joules\": 3.4075916617828947}}, \"2304000\": {\"active\": {\"elapsed_sec\": 13.931295359, \"elapsed_ns\": 13931295359, \"power_samples\": [726.47140216, 721.4643107429999, 714.119100548, 722.8298504690001, 730.042773825, 742.3938882090001, 743.628190269, 747.468695988, 776.838178666, 737.3861612819999, 743.561420904, 765.804407995, 749.870814396, 759.9520361790001, 762.1548618449999, 764.7586804200002, 751.4401195050002, 748.9037954449998, 747.8696972519999, 792.345957966, 755.5512823370002, 756.7189323720002, 800.8547879250002, 786.9218958810002, 777.179358197, 765.4354478850003, 773.880355989, 766.2641152249998, 776.9794975530001, 793.5115851809999, 793.986421072, 801.20160891, 797.1508130249999, 830.5733505510002, 806.0063461289999, 797.2891141949999, 802.158655725, 816.9833618729999, 836.5380191700001, 822.9499876230002, 819.5976440370002, 823.0907815050002, 825.916906342, 822.5627653670001, 858.6272686530001, 829.9658535810001, 841.6228001850002, 836.6088864000001, 848.8915110620001, 836.6088864000001, 840.4591868190003, 847.5852032170001, 842.6432350210002, 869.2363948900002, 863.2070339970003], \"power_mean\": 789.3466116065455, \"energy_millijoules\": 10996.620786916643, \"energy_joules\": 10.996620786916642, \"coremark_score\": 17961.060421, \"coremarks_per_mhz\": 7.795599141059027, \"ulpmark_cm_score\": 22.734256717976525}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [738.082725624, 720.747009432, 739.46639535, 725.841121245, 724.5991391549999, 704.682839745, 703.609695206, 694.472814087, 699.8955692960001, 671.436621345, 691.258422512, 686.203222255, 706.853035395, 702.135980928, 673.8804513099999, 676.457903988, 665.4334654429999, 681.508806412, 678.999398972], \"power_mean\": 699.2402430368421, \"energy_millijoules\": 3496.2012151842105, \"energy_joules\": 3.4962012151842106}}, \"2400000\": {\"active\": {\"elapsed_sec\": 13.372510255, \"elapsed_ns\": 13372510255, \"power_samples\": [840.4814693610001, 825.527364049, 822.033922545, 832.8621971950001, 834.8313609300001, 830.3200975830002, 824.1527429080002, 837.5866740929998, 828.945120507, 824.1527429080002, 811.7398433090002, 819.0742584089999, 824.0117113470001, 813.0434161590001, 832.6492211549999, 808.1754115470001, 795.974364255, 810.646516729, 798.233676605, 783.9727452970001, 814.3471079590001, 808.1754115470001, 821.752334781, 821.8931286630002, 830.5327167990004, 823.9410142920001, 828.661744456, 822.7743152790001, 814.1368054710001, 824.0117113470001, 826.6905007830003, 837.8713489610002, 834.0957276050001, 844.1109459060001, 844.8477819180002, 840.6240440850002, 822.4218528400002, 828.560456657, 818.8246937940003, 843.0916984349999, 834.6640170350001, 840.4099987410002, 856.3832817730001, 847.0121618229998, 849.5516909009998, 831.028585587, 854.4919948739998, 850.8577019810002, 863.1344922420001, 863.7171690320004, 872.8653930250002, 868.3638171300001], \"power_mean\": 830.4280865887116, \"energy_millijoules\": 11104.908103947573, \"energy_joules\": 11.104908103947572, \"coremark_score\": 18711.174313, \"coremarks_per_mhz\": 7.796322630416666, \"ulpmark_cm_score\": 22.512568105910756}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [773.591596075, 803.33522636, 765.2179023960001, 767.6233727169999, 754.184814072, 749.086370248, 747.884681052, 728.1073784710002, 745.3699677200001, 738.0474401279998, 726.800126704, 710.466424495, 751.525145133, 719.3713788559999, 748.942542699, 747.66957261, 726.800126704, 725.80624881, 709.7359417250001], \"power_mean\": 744.1876977355263, \"energy_millijoules\": 3720.9384886776315, \"energy_joules\": 3.7209384886776316}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 250, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm7250ab/new/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu6 cpu7 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nBaseline power usage: 642 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 576 614 864 1075 1363 1516 1651 1804\n\n 300:  1114     3.7 C/MHz    109 mW   24.4 J   10.2 I/mJ   224.4 s\n 576:  2139     3.7 C/MHz    134 mW   15.7 J   15.9 I/mJ   116.9 s\n 614:  2281     3.7 C/MHz    138 mW   15.1 J   16.6 I/mJ   109.6 s\n 864:  3208     3.7 C/MHz    154 mW   12.0 J   20.8 I/mJ    77.9 s\n1075:  3350     3.1 C/MHz    164 mW   12.3 J   20.4 I/mJ    74.6 s\n1363:  5062     3.7 C/MHz    199 mW    9.8 J   25.4 I/mJ    49.4 s\n1516:  5632     3.7 C/MHz    212 mW    9.4 J   26.6 I/mJ    44.4 s\n1651:  6130     3.7 C/MHz    224 mW    9.1 J   27.4 I/mJ    40.8 s\n1804:  6701     3.7 C/MHz    278 mW   10.4 J   24.1 I/mJ    37.3 s\n\n\n===== CPU 6 =====\nFrequencies: 652 940 1152 1478 1728 1900 2092 2208\n\n 652:  4992     7.6 C/MHz    195 mW    9.8 J   25.6 I/mJ    50.1 s\n 940:  7330     7.8 C/MHz    227 mW    7.8 J   32.2 I/mJ    34.1 s\n1152:  8596     7.5 C/MHz    246 mW    7.2 J   34.9 I/mJ    29.1 s\n1478: 11508     7.8 C/MHz    347 mW    7.5 J   33.2 I/mJ    21.7 s\n1728: 13465     7.8 C/MHz    520 mW    9.7 J   25.9 I/mJ    18.6 s\n1900: 14817     7.8 C/MHz    506 mW    8.5 J   29.3 I/mJ    16.9 s\n2092: 16310     7.8 C/MHz    667 mW   10.2 J   24.4 I/mJ    15.3 s\n2208: 17218     7.8 C/MHz    757 mW   11.0 J   22.7 I/mJ    14.5 s\n\n\n===== CPU 7 =====\nFrequencies: 806 1094 1401 1766 1996 2188 2304 2400\n\n 806:  6280     7.8 C/MHz    214 mW    8.5 J   29.3 I/mJ    39.8 s\n1094:  8532     7.8 C/MHz    288 mW    8.4 J   29.6 I/mJ    29.3 s\n1401: 10933     7.8 C/MHz    383 mW    8.8 J   28.5 I/mJ    22.9 s\n1766: 13758     7.8 C/MHz    540 mW    9.8 J   25.5 I/mJ    18.2 s\n1996: 15559     7.8 C/MHz    648 mW   10.4 J   24.0 I/mJ    16.1 s\n2188: 17064     7.8 C/MHz    728 mW   10.7 J   23.4 I/mJ    14.7 s\n2304: 17961     7.8 C/MHz    789 mW   11.0 J   22.7 I/mJ    13.9 s\n2400: 18711     7.8 C/MHz    830 mW   11.1 J   22.5 I/mJ    13.4 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm7250ab/new/versions.txt",
    "content": "Kernel: Linux version 4.19.110-proton-37691-gd8f6ea99d2c5 (kdrag0n@pinwheel) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project dcc06597b1d61d35c7246d3ab2d7a807134aaa45)) #190 SMP PREEMPT Sat Dec 5 17:02:54 PST 2020\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm7250ab/voltages.txt",
    "content": "1.300000=580000 1.576000=580000 1.614400=580000 1.864000=644000 1.1075200=708000 1.1363200=788000 1.1516800=860000 1.1651200=888000 1.1804800=968000 6.652800=624000 6.940800=672000 6.1152000=704000 6.1478400=752000 6.1728000=820000 6.1900800=864000 6.2092800=916000 6.2208000=948000 7.806400=564000 7.1094400=624000 7.1401600=696000 7.1766400=776000 7.1996800=836000 7.2188800=888000 7.2304000=916000 7.2400000=940000\n"
  },
  {
    "path": "results/sm8150/eff_freqs.txt",
    "content": "4.1401600 4.1708800 4.1804800 4.1920000 4.2016000 4.2323200 4.2419200 7.1804800 7.2016000 7.2227200 7.2323200 7.2534400 7.2841600 7.2956800\n"
  },
  {
    "path": "results/sm8150/main/cmdline.txt",
    "content": "console=tty0 loglevel=2 isolcpus=1-7 rcu_nocbs=0-7 cgroup.memory=nokmem,nosocket noirqdebug printk.devkmsg=on console=ttyMSM0,115200n8 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 swiotlb=2048 firmware_class.path=/vendor/firmware_mnt/image loop.max_part=7 androidboot.usbcontroller=a600000.dwc3 buildvariant=userdebug androidboot.keymaster=1 root=PARTUUID=60f582f5-5bb8-318f-9c80-a49c80023e8c androidboot.bootdevice=1d84000.ufshc androidboot.serialno=REDACTED androidboot.baseband=msm msm_drm.dsi_display0=dsi_boe_2k_vid_display: androidboot.id.stage=7 androidboot.id.prj=7 androidboot.id.rf=7 androidboot.id.sku=7 androidboot.id.lcm=1 androidboot.id.nfc=1 androidboot.id.fp=1 androidboot.id.headsetid=0 androidboot.id.pcb=E7777 COUNTRY=TW androidboot.bootreason=hard androidboot.pre-ftm=0 reset_logcat_asdf UNLOCKED=N SB=Y LCD=REDACTED androidboot.slot_suffix=_b skip_initramfs rootwait ro init=/init androidboot.dtbo_idx=3 androidboot.dtb_idx=0\n"
  },
  {
    "path": "results/sm8150/main/cpufreq_stats/0/time_in_state",
    "content": "300000 141684\n403200 17545\n499200 14332\n576000 12526\n672000 10921\n768000 17126\n844800 8816\n940800 8013\n1036800 7313\n1113600 6911\n1209600 6410\n1305600 6009\n1382400 5708\n1478400 5408\n1555200 5208\n1632000 5007\n1708800 4807\n1785600 4976\n"
  },
  {
    "path": "results/sm8150/main/cpufreq_stats/0/total_trans",
    "content": "22\n"
  },
  {
    "path": "results/sm8150/main/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    403200    499200    576000    672000    768000    844800    940800   1036800   1113600   1209600   1305600   1382400   1478400   1555200   1632000   1708800   1785600 \n   300000:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   403200:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   499200:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   576000:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   672000:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n   768000:         1         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n   844800:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n   940800:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1036800:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1113600:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1209600:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1305600:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1382400:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1478400:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  1555200:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  1632000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         1 \n  1708800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  1785600:         1         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8150/main/cpufreq_stats/4/time_in_state",
    "content": "710400 70414\n825600 4715\n940800 4314\n1056000 3912\n1171200 3612\n1286400 3311\n1401600 3110\n1497600 3010\n1612800 2809\n1708800 2709\n1804800 2609\n1920000 2509\n2016000 2408\n2131200 2408\n2227200 2307\n2323200 2208\n2419200 172355\n"
  },
  {
    "path": "results/sm8150/main/cpufreq_stats/4/total_trans",
    "content": "19\n"
  },
  {
    "path": "results/sm8150/main/cpufreq_stats/4/trans_table",
    "content": "   From  :    To\n         :    710400    825600    940800   1056000   1171200   1286400   1401600   1497600   1612800   1708800   1804800   1920000   2016000   2131200   2227200   2323200   2419200 \n   710400:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   825600:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   940800:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1056000:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1171200:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1286400:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1401600:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1497600:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1612800:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1708800:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1804800:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1920000:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  2016000:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2131200:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2227200:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2323200:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2419200:         2         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8150/main/cpufreq_stats/7/time_in_state",
    "content": "825600 8791\n940800 4315\n1056000 3914\n1171200 3613\n1286400 3312\n1401600 3111\n1497600 3011\n1612800 2810\n1708800 2710\n1804800 2610\n1920000 2510\n2016000 2409\n2131200 2409\n2227200 2309\n2323200 2208\n2419200 2208\n2534400 2108\n2649600 2108\n2745600 2008\n2841600 230246\n"
  },
  {
    "path": "results/sm8150/main/cpufreq_stats/7/total_trans",
    "content": "22\n"
  },
  {
    "path": "results/sm8150/main/cpufreq_stats/7/trans_table",
    "content": ""
  },
  {
    "path": "results/sm8150/main/eff_results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 2883.74125988991, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1763.807823312, 1412.6604743999999, 1404.3998214750002, 1414.7245802, 1757.829253344, 1406.463927275, 1404.3188059109998, 1404.3998214750002, 1402.169693454, 1400.26738015, 1400.26738015, 1400.105825798, 1408.5280330750002, 1406.382792639, 1410.5921388750003, 1410.5921388750003, 1404.3188059109998, 1404.1567747830002, 1406.220523367, 1406.301658003, 1400.105825798, 1400.186602974, 1406.301658003, 1410.26631426, 1408.365525659, 1408.2842719510002, 1404.1567747830002, 1406.382792639, 1757.523956645], \"power_mean\": 1442.416599144276, \"energy_millijoules\": 7212.08299572138, \"energy_joules\": 7.21208299572138}, \"cpus\": {\"1\": {\"freqs\": {\"1708800\": {\"active\": {\"elapsed_sec\": 39.401813839, \"elapsed_ns\": 39401813839, \"power_samples\": [136.6061056389999, 136.42678982799998, 134.37779474199965, 136.6061056389999, 136.51626438399967, 128.1501920520002, 140.42668695200018, 134.46714998199968, 146.65500456199993, 136.51626438399967, 132.2437536619998, 140.60611235199985, 136.51626438399967, 136.33731527200007, 134.28843950200007, 136.33731527200007, 140.51639965200002, 134.10972902199978, 142.29170924799996, 134.37779474199965, 144.520248562, 130.28818491799984, 140.51639965200002, 136.51626438399967, 138.47159474, 140.42668695200018, 126.10550621199991, 136.24784071599993, 132.15451749399972, 140.3369742519999, 136.24784071599993, 132.06528132599988, 140.24726155200005, 136.24784071599993, 142.29170924799996, 140.24726155200005, 138.02362659999994, 138.11322022800005, 140.157548852], \"power_mean\": 137.015358972923, \"energy_millijoules\": 5398.65366733487, \"energy_joules\": 5.39865366733487, \"coremark_score\": 6345.338714, \"coremarks_per_mhz\": 3.713330239934457, \"ulpmark_cm_score\": 46.30784180742167}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1423.03361054, 1412.793454724, 1423.03361054, 1414.844001896], \"power_mean\": 1418.426169425, \"energy_millijoules\": 7092.1308471249995, \"energy_joules\": 7.0921308471249995}}, \"1785600\": {\"active\": {\"elapsed_sec\": 37.708859673, \"elapsed_ns\": 37708859673, \"power_samples\": [140.24726155200005, 148.1583044539998, 144.07012446999988, 139.97775577699986, 150.20239444599997, 142.1120457039999, 140.0678361519997, 150.38338117000012, 146.02414430199997, 146.2046537619999, 145.93407414199964, 144.1604442099997, 146.2046537619999, 154.20421644700014, 142.0218457689998, 154.29476313899977, 143.98017338199998, 143.98017338199998, 146.11421446199984, 146.02414430199997, 139.88804307700002, 148.06811522199996, 146.02414430199997, 139.79833037699973, 154.20421644700014, 141.932013997, 143.98017338199998, 143.98017338199998, 145.7539338219999, 139.79833037699973, 146.02414430199997, 151.9793902869999, 145.7539338219999, 141.84218222499976, 147.79754752600002, 150.0217778379997, 145.93407414199964], \"power_mean\": 145.5985710625134, \"energy_millijoules\": 5490.356084785636, \"energy_joules\": 5.4903560847856365, \"coremark_score\": 6630.244523, \"coremarks_per_mhz\": 3.7131745760528676, \"ulpmark_cm_score\": 45.53438723087137}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1424.7482775960002, 1418.606452616, 1422.7024000600002, 1422.7024000600002], \"power_mean\": 1422.189882583, \"energy_millijoules\": 7110.949412915001, \"energy_joules\": 7.110949412915001}}}}, \"4\": {\"freqs\": {\"1401600\": {\"active\": {\"elapsed_sec\": 22.908251242, \"elapsed_ns\": 22908251242, \"power_samples\": [306.4937912720002, 300.27692507799975, 310.46938404399975, 306.19462945999953, 310.2694665479996, 310.2694665479996, 298.0407802459997, 320.36435474799987, 318.3228804820001, 314.3484786739998, 312.31106012999976, 308.2320480039996, 310.06913938499974, 312.31106012999976, 310.1695077999998, 314.2482815379999, 314.1476737580001, 316.38589721799985, 314.1476737580001, 303.7542225239997, 303.9534251, 322.09922061899965], \"power_mean\": 310.76724395745435, \"energy_millijoules\": 7119.13410236127, \"energy_joules\": 7.11913410236127, \"coremark_score\": 10918.460934, \"coremarks_per_mhz\": 7.789997812500001, \"ulpmark_cm_score\": 35.1166302538226}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1429.431203928, 1429.514602152, 1429.514602152, 1419.30545651], \"power_mean\": 1426.9414661855, \"energy_millijoules\": 7134.7073309275, \"energy_joules\": 7.1347073309275}}, \"1708800\": {\"active\": {\"elapsed_sec\": 18.77998593, \"elapsed_ns\": 18779985930, \"power_samples\": [61.14652088599996, 426.15828419800005, 414.04731403999995, 407.726367448, 422.0845195390002, 418.22353947199986, 413.83457067799986, 411.79989274199966, 417.9039265499996, 419.94277390799994, 411.6938576619998, 413.7284165259998, 421.7641904760003, 415.9759573839999, 423.9053800239999, 423.7986302680001, 417.79753425399963, 417.79753425399963], \"power_mean\": 397.74051168383323, \"energy_millijoules\": 7469.561213213388, \"energy_joules\": 7.469561213213388, \"coremark_score\": 13319.8359, \"coremarks_per_mhz\": 7.7948477879213485, \"ulpmark_cm_score\": 33.46916811629563}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1434.4684963840002, 1432.5964449360001, 1430.469185392, 1420.350709176], \"power_mean\": 1429.471208972, \"energy_millijoules\": 7147.35604486, \"energy_joules\": 7.14735604486}}, \"1804800\": {\"active\": {\"elapsed_sec\": 17.781258952, \"elapsed_ns\": 17781258952, \"power_samples\": [444.0475937819997, 451.9722098720001, 454.1148292599996, 447.79586512399965, 455.82678565799984, 455.82678565799984, 459.78557927399993, 457.96985060199995, 459.78557927399993, 459.78557927399993, 455.82678565799984, 453.46316356499983, 463.7480638269999, 453.68023718899985, 457.534304002, 459.6766850020001, 453.57170037699984], \"power_mean\": 455.5536233763528, \"energy_millijoules\": 8100.31694377681, \"energy_joules\": 8.10031694377681, \"coremark_score\": 14068.655037, \"coremarks_per_mhz\": 7.795132445146277, \"ulpmark_cm_score\": 30.862989897212138}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1424.26769408, 1424.26769408, 1420.1019440999999, 1430.385668096], \"power_mean\": 1424.755750089, \"energy_millijoules\": 7123.778750445, \"energy_joules\": 7.123778750445}}, \"1920000\": {\"active\": {\"elapsed_sec\": 16.778723015, \"elapsed_ns\": 16778723015, \"power_samples\": [502.0732214079999, 508.0653799449999, 501.8499723699997, 509.986178182, 501.73857612200004, 507.8414145219999, 511.7993699459996, 503.66411719799976, 505.69688900599976, 511.6873778499996, 499.59440806599946, 511.91136204200006, 505.5852543699998, 503.32957050599975, 511.46339365799963, 511.5753857540001], \"power_mean\": 506.7413669340623, \"energy_millijoules\": 8502.47303602911, \"energy_joules\": 8.50247303602911, \"coremark_score\": 14909.351145, \"coremarks_per_mhz\": 7.765287054687501, \"ulpmark_cm_score\": 29.403209976747764}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1431.9270092670004, 1429.8842220360002, 1430.051256628, 1428.0124087319998], \"power_mean\": 1429.96872416575, \"energy_millijoules\": 7149.84362082875, \"energy_joules\": 7.14984362082875}}, \"2016000\": {\"active\": {\"elapsed_sec\": 15.92900515, \"elapsed_ns\": 15929005150, \"power_samples\": [551.9032911570002, 553.8251373400001, 552.018134662, 553.5961491959999, 561.727587735, 557.5450544680002, 563.7594064789998, 557.659786684, 559.6916054279998, 553.367161052, 565.4455989789999, 557.315590036, 553.25266698, 567.3658952740002, 555.3987416519999], \"power_mean\": 557.5914538081333, \"energy_millijoules\": 8881.877139305743, \"energy_joules\": 8.881877139305743, \"coremark_score\": 15706.477351, \"coremarks_per_mhz\": 7.790911384424603, \"ulpmark_cm_score\": 28.14720312822762}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1427.5954176120001, 1433.7981076510002, 1433.7981076510002, 1431.8433726550002], \"power_mean\": 1431.7587513922501, \"energy_millijoules\": 7158.79375696125, \"energy_joules\": 7.15879375696125}}, \"2323200\": {\"active\": {\"elapsed_sec\": 13.832826609, \"elapsed_ns\": 13832826609, \"power_samples\": [150.44223424200004, 761.5980766509995, 761.2174227429998, 761.0905381069999, 762.9916599589999, 760.8362488159999, 768.6972296979995, 765.0196664470002, 770.852358722, 766.6695809140003, 768.5698685300001, 768.5698685300001, 760.4555949080002], \"power_mean\": 717.4623344820769, \"energy_millijoules\": 9924.532071378932, \"energy_joules\": 9.924532071378932, \"coremark_score\": 18088.416178, \"coremarks_per_mhz\": 7.785991812155648, \"ulpmark_cm_score\": 25.190104500842686}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1436.870410518, 1437.038398662, 1436.870410518, 1438.9073522859999], \"power_mean\": 1437.421642996, \"energy_millijoules\": 7187.1082149799995, \"energy_joules\": 7.187108214979999}}, \"2419200\": {\"active\": {\"elapsed_sec\": 13.284822495, \"elapsed_ns\": 13284822495, \"power_samples\": [833.0946912759998, 832.8318063429995, 840.6803949519992, 846.6326275170002, 846.5006198569997, 852.7165102819997, 848.6592041650003, 840.1532546019996, 842.179473546, 845.9720482020005, 850.2885014099995, 852.1865073219999, 856.1061038020005], \"power_mean\": 845.230903328923, \"energy_millijoules\": 11228.742518013247, \"energy_joules\": 11.228742518013247, \"coremark_score\": 18835.229413, \"coremarks_per_mhz\": 7.785726443865742, \"ulpmark_cm_score\": 22.264291802839704}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1436.45009592, 1432.541085869, 1442.64383067, 1428.4637434359997], \"power_mean\": 1435.02468897375, \"energy_millijoules\": 7175.12344486875, \"energy_joules\": 7.17512344486875}}}}, \"7\": {\"freqs\": {\"1804800\": {\"active\": {\"elapsed_sec\": 17.789023379, \"elapsed_ns\": 17789023379, \"power_samples\": [442.1669792599996, 437.7834646619997, 441.7342608759998, 441.8424404719997, 445.89726175199985, 445.6804262720002, 449.7389253060003, 443.65325377599993, 453.90216456999997, 437.4591986559999, 447.2730066969996, 447.5986171329996, 447.4900803209998, 447.4900803209998, 449.3038554819998, 451.3305512019997, 451.54810160199986], \"power_mean\": 445.9936863741175, \"energy_millijoules\": 7933.79211379557, \"energy_joules\": 7.93379211379557, \"coremark_score\": 14062.324221, \"coremarks_per_mhz\": 7.79162467918883, \"ulpmark_cm_score\": 31.51078279014783}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1435.6252160400002, 1433.59292052, 1439.68980708, 1429.607920624], \"power_mean\": 1434.628966066, \"energy_millijoules\": 7173.14483033, \"energy_joules\": 7.17314483033}}, \"2016000\": {\"active\": {\"elapsed_sec\": 15.922868119, \"elapsed_ns\": 15922868119, \"power_samples\": [115.87862668000002, 537.50275313, 543.355263382, 541.2152735570003, 545.1514305609999, 539.0718402459997, 537.0466934379997, 535.0215466299996, 549.2058740679997, 542.897772385, 538.8438056539999, 540.8728637210002, 546.9517391160002, 540.7587271089997, 536.81889699], \"power_mean\": 512.7062071111333, \"energy_millijoules\": 8163.753319623275, \"energy_joules\": 8.163753319623275, \"coremark_score\": 15711.41277, \"coremarks_per_mhz\": 7.793359508928572, \"ulpmark_cm_score\": 30.6231692962933}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1443.081498573, 1432.7522913239998, 1433.004617778, 1445.2822585249996], \"power_mean\": 1438.5301665499999, \"energy_millijoules\": 7192.65083275, \"energy_joules\": 7.192650832749999}}, \"2227200\": {\"active\": {\"elapsed_sec\": 14.418448432, \"elapsed_ns\": 14418448432, \"power_samples\": [616.7924265639999, 620.4870529939997, 612.5074168689998, 628.4657360550002, 620.4870529939997, 620.368150818, 632.277367596, 630.2501002470001, 626.442376303, 617.8696586499998, 624.0615948590003, 620.0114442899999, 623.9424542949998, 613.8197464689997], \"power_mean\": 621.9844699287856, \"energy_millijoules\": 8968.05100517305, \"energy_joules\": 8.96805100517305, \"coremark_score\": 17352.675783, \"coremarks_per_mhz\": 7.791251698545259, \"ulpmark_cm_score\": 27.876737080976927}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1442.404087807, 1438.6769002199999, 1438.592548932, 1432.332320964], \"power_mean\": 1438.00146448075, \"energy_millijoules\": 7190.00732240375, \"energy_joules\": 7.1900073224037495}}, \"2323200\": {\"active\": {\"elapsed_sec\": 13.827455412, \"elapsed_ns\": 13827455412, \"power_samples\": [690.4882672179999, 698.0887966379994, 702.0093469139995, 701.8850527789998, 706.0575894020001, 705.9330559020002, 709.732531849, 705.809030702, 707.8308415419999, 701.5136923429998, 705.6850055019997, 709.4840046730003, 705.4369551020002], \"power_mean\": 703.8426285050768, \"energy_millijoules\": 9732.35256271883, \"energy_joules\": 9.73235256271883, \"coremark_score\": 18094.962362, \"coremarks_per_mhz\": 7.788809556646005, \"ulpmark_cm_score\": 25.687519886780592}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1444.180350467, 1440.1202870909997, 1436.056063814, 1438.1704467900001], \"power_mean\": 1439.6317870405, \"energy_millijoules\": 7198.1589352025, \"energy_joules\": 7.198158935202501}}, \"2534400\": {\"active\": {\"elapsed_sec\": 12.66351786, \"elapsed_ns\": 12663517860, \"power_samples\": [814.1352159840001, 819.1552220779997, 821.0443105819998, 822.8062452510001, 824.8259118190001, 824.8259118190001, 828.6024213309995, 824.4318532179998, 830.3623866099999, 828.3390591340001, 822.2814897580004, 832.3815764019998], \"power_mean\": 824.4326336654999, \"energy_millijoules\": 10440.217380789896, \"energy_joules\": 10.440217380789896, \"coremark_score\": 19761.283693, \"coremarks_per_mhz\": 7.797223679371844, \"ulpmark_cm_score\": 23.945861554569017}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1427.345144112, 1447.5646485120003, 1437.495290784, 1443.502333316], \"power_mean\": 1438.9768541810001, \"energy_millijoules\": 7194.884270905, \"energy_joules\": 7.194884270905001}}, \"2841600\": {\"active\": {\"elapsed_sec\": 11.300311819, \"elapsed_ns\": 11300311819, \"power_samples\": [1066.7002818179997, 1080.379892062, 1082.1020650459993, 1085.8423091519996, 1095.9215374510002, 1091.7442401270002, 1101.8228728220004, 1095.4790500390002, 1103.5459573170003, 1109.2932855729998, 1095.1840584309996], \"power_mean\": 1091.637777258, \"energy_millijoules\": 12335.847276415465, \"energy_joules\": 12.335847276415464, \"coremark_score\": 22147.413182, \"coremarks_per_mhz\": 7.793993940737613, \"ulpmark_cm_score\": 20.26613935776973}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1432.510961356, 1442.739607417, 1436.6514322020003, 1440.711600929], \"power_mean\": 1438.1534004760001, \"energy_millijoules\": 7190.76700238, \"energy_joules\": 7.19076700238}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm8150/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x51df805e]\n[    0.000000] Linux version 4.14.191-Proton-g1e49aa4d (kdrag0n@pinwheel) (clang version 12.0.0 (https://github.com/llvm/llvm-project dcc06597b1d61d35c7246d3ab2d7a807134aaa45), LLD 12.0.0 (https://github.com/llvm/llvm-project dcc06597b1d61d35c7246d3ab2d7a807134aaa45)) #2089 SMP PREEMPT Sat Dec 5 01:44:51 PST 2020\n[    0.000000] Using embedded DTB instead of bootloader DTB\n[    0.000000] Machine: Qualcomm Technologies, Inc. SM8150 V2 PM8150 KIRIN MP\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f5c00000, size 160 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f3400000, size 40 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f2c00000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f2800000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f1800000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node user_contig_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f0800000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ef800000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b700000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node camera_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008bc00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node pil_wlan_fw_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008bd80000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node pil_npu_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008be00000, size 26 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008d800000, size 150 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000096e00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097300000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node pil_slpi_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000098700000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node pil_ipa_fw_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000098710000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node pil_ipa_gsi_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000098715000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node pil_gpu_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000098800000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node pil_spss_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000098900000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_regions, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000099e00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node ramoops, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000009c000000, size 36 MiB\n[    0.000000] OF: reserved mem: initialized node cont_splash_region, compatible id removed-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x000000009e400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000a4c00000, size 60 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_sec_regions, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 1967017\n[    0.000000]   DMA zone: 6159 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 394153 pages, LIFO batch:63\n[    0.000000]   Normal zone: 24576 pages used for memmap\n[    0.000000]   Normal zone: 1572864 pages, LIFO batch:63\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.1\n[    0.000000] random: fast init done\n[    0.000000] random: get_random_bytes called from start_kernel+0x98/0x51c with crng_init=1\n[    0.000000] percpu: Embedded 18 pages/cpu s42392 r0 d31336 u73728\n[    0.000000] pcpu-alloc: s42392 r0 d31336 u73728 alloc=18*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1936282\n[    0.000000] Kernel command line: console=tty0 loglevel=2 isolcpus=1-7 rcu_nocbs=0-7 cgroup.memory=nokmem,nosocket noirqdebug printk.devkmsg=on console=ttyMSM0,115200n8 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 swiotlb=2048 firmware_class.path=/vendor/firmware_mnt/image loop.max_part=7 androidboot.usbcontroller=a600000.dwc3 buildvariant=userdebug androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=60f582f5-5bb8-318f-9c80-a49c80023e8c androidboot.bootdevice=1d84000.ufshc androidboot.serialno=REDACTED androidboot.baseband=msm msm_drm.dsi_display0=dsi_boe_2k_vid_display: androidboot.id.stage=7 androidboot.id.prj=7 androidboot.id.rf=7 androidboot.id.sku=7 androidboot.id.lcm=1 androidboot.id.nfc=1 androidboot.id.fp=1 androidboot.id.headsetid=0 androidboot.id.pcb=E7777 COUNTRY=TW androidboot.bootreason=reboot androidboo\n[    0.000000] IRQ lockup detection disabled\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 131072 bytes\n[    0.000000] log_buf_len: 1048576 bytes\n[    0.000000] early log buf free: 123776(94%)\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] software IO TLB: mapped [mem 0xef400000-0xef800000] (4MB)\n[    0.000000] Memory: 7386900K/7868068K available (17918K kernel code, 2014K rwdata, 5148K rodata, 4096K init, 4876K bss, 214928K reserved, 266240K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] PDC SM8150 initialized\n[    0.000000] NO_HZ: Clearing 0 from nohz_full range for timekeeping\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000015] clocksource: Switched to clocksource arch_sys_counter\n[    0.002356] Console: colour dummy device 80x25\n[    0.002374] console [tty0] enabled\n[    0.002389] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.002396] pid_max: default: 32768 minimum: 301\n[    0.002487] Security Framework initialized\n[    0.002495] SELinux:  Initializing.\n[    0.002565] SELinux:  Starting in permissive mode\n[    0.002595] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.002607] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.014032] ASID allocator initialised with 65536 entries\n[    0.016103] Hierarchical SRCU implementation.\n[    0.020670] smp: Bringing up secondary CPUs ...\n[    0.058274] spectrev2 mitigation disabled by kernel configuration\n[    0.058300] CPU features: Unsupported CPU feature variation detected.\n[    0.087785] smp: Brought up 1 node, 8 CPUs\n[    0.087789] SMP: Total of 8 processors activated.\n[    0.087792] CPU features: detected: GIC system register CPU interface\n[    0.087794] CPU features: detected: Privileged Access Never\n[    0.087796] CPU features: detected: LSE atomic instructions\n[    0.087799] CPU features: detected: User Access Override\n[    0.087801] CPU features: detected: 32-bit EL0 Support\n[    0.088150] CPU: All CPU(s) started at EL1\n[    0.088180] alternatives: patching kernel code\n[    0.097753] scm_enable_mem_protection: SCM call failed\n[    0.099036] devtmpfs: initialized\n[    0.162815] Registered cp15_barrier emulation handler\n[    0.162825] Registered setend emulation handler\n[    0.163001] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.163011] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.168254] pinctrl core: initialized pinctrl subsystem\n[    0.168792] NET: Registered protocol family 16\n[    0.169616] schedtune: configured to support 6 boost groups\n[    0.171141] cpuidle: using governor qcom\n[    0.171200] NET: Registered protocol family 42\n[    0.175753] vdso32: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.175758] vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.175762] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.176444] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.177818] Failed to create IPC log0\n[    0.177820] Failed to create IPC log1\n[    0.177822] Failed to create IPC log2\n[    0.177824] Failed to create IPC log3\n[    0.177825] Failed to create IPC log4\n[    0.178965] exit: IPA_USB init success!\n[    0.179216] pstore: using zlib compression\n[    0.179232] console [pstore-1] enabled\n[    0.179346] pstore: Registered ramoops as persistent store backend\n[    0.179349] ramoops: attached 0x100000@0x99e00000, ecc: 0/0\n[    0.188146] unable to find DT imem DLOAD mode node\n[    0.189531] unable to find DT imem EDLOAD mode node\n[    0.191755] spmi spmi-0: PMIC arbiter version v5 (0x50000000)\n[    0.193359] platform 4080000.qcom,mss: assigned reserved memory node modem_region\n[    0.193472] platform 17300000.qcom,lpass: assigned reserved memory node pil_adsp_region\n[    0.193574] platform 5c00000.qcom,ssc: assigned reserved memory node pil_slpi_region\n[    0.193678] platform 188101c.qcom,spss: assigned reserved memory node pil_spss_region\n[    0.193839] msm_watchdog 17c10000.qcom,wdt: wdog absent resource not present\n[    0.194072] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 304\n[    0.194177] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 305\n[    0.194252] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 306\n[    0.194327] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 307\n[    0.194405] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 308\n[    0.194487] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 309\n[    0.194567] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 310\n[    0.194646] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 311\n[    0.194668] msm_watchdog 17c10000.qcom,wdt: MSM Watchdog Initialized\n[    0.194707] platform 9800000.qcom,npu: assigned reserved memory node pil_npu_region\n[    0.194815] platform 8300000.qcom,turing: assigned reserved memory node cdsp_regions\n[    0.194889] platform aae0000.qcom,venus: assigned reserved memory node pil_video_region\n[    0.195789] sps:sps is ready.\n[    0.196385] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.203732] platform 87900000.qseecom: assigned reserved memory node qseecom_region\n[    0.213177] msm-dcc 10a2000.dcc_v2: DCC list passed 3\n[    0.213827] msm-dcc 10a2000.dcc_v2: All values written to enable\n[    0.215502] (NULL device *): msm_gsi_probe:4522 failed to create IPC log, continue...\n[    0.215879] platform soc:qcom,ipa_fws: assigned reserved memory node pil_ipa_fw_region\n[    0.216587] platform 88a7000.msm_tspp: assigned reserved memory node qseecom_region\n[    0.216790] sm8150-pinctrl 3000000.pinctrl: invalid resource\n[    0.227472] pm8150l_s6_level: supplied by pm8150l_s4_level\n[    0.227625] pm8150l_s6_level_ao: supplied by pm8150l_s4_level_ao\n[    0.232684] rpmh_regulator_probe: smpf2: could not find RPMh address for resource\n[    0.232803] rpmh_regulator_probe: ldof2: could not find RPMh address for resource\n[    0.232918] rpmh_regulator_probe: ldof5: could not find RPMh address for resource\n[    0.233030] rpmh_regulator_probe: ldof6: could not find RPMh address for resource\n[    0.265707] gpu_cx_gdsc: supplied by pm8150l_s6_level\n[    0.265972] gpu_gx_gdsc: supplied by pm8150l_s2_level\n[    0.268155] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on cpu0\n[    0.268554] clk: add_opp: Set OPP pair (1785600000 Hz, 820000 uv) on cpu0\n[    0.268594] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on cpu1\n[    0.268972] clk: add_opp: Set OPP pair (1785600000 Hz, 820000 uv) on cpu1\n[    0.269018] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on cpu2\n[    0.269389] clk: add_opp: Set OPP pair (1785600000 Hz, 820000 uv) on cpu2\n[    0.269438] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on cpu3\n[    0.269811] clk: add_opp: Set OPP pair (1785600000 Hz, 820000 uv) on cpu3\n[    0.269858] clk: add_opp: Set OPP pair (710400000 Hz, 756000 uv) on cpu4\n[    0.270356] clk: add_opp: Set OPP pair (2419200000 Hz, 1000000 uv) on cpu4\n[    0.270397] clk: add_opp: Set OPP pair (710400000 Hz, 756000 uv) on cpu5\n[    0.270756] clk: add_opp: Set OPP pair (2419200000 Hz, 1000000 uv) on cpu5\n[    0.270804] clk: add_opp: Set OPP pair (710400000 Hz, 756000 uv) on cpu6\n[    0.271153] clk: add_opp: Set OPP pair (2419200000 Hz, 1000000 uv) on cpu6\n[    0.271196] clk: add_opp: Set OPP pair (825600000 Hz, 756000 uv) on cpu7\n[    0.271617] clk: add_opp: Set OPP pair (2841600000 Hz, 984000 uv) on cpu7\n[    0.271842] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.271845] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on soc:qcom,cpu4-cpu-l3-lat\n[    0.271847] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.271849] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on soc:qcom,cpu7-cpu-l3-lat\n[    0.273085] clk: add_opp: Set OPP pair (1612800000 Hz, 828000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.273087] clk: add_opp: Set OPP pair (1612800000 Hz, 828000 uv) on soc:qcom,cpu4-cpu-l3-lat\n[    0.273090] clk: add_opp: Set OPP pair (1612800000 Hz, 828000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.273092] clk: add_opp: Set OPP pair (1612800000 Hz, 828000 uv) on soc:qcom,cpu7-cpu-l3-lat\n[    0.273571] sched-energy: CPU4 max energy model capacity=872 != cpu_scale=871\n[    0.273580] sched-energy: CPU5 max energy model capacity=872 != cpu_scale=871\n[    0.273594] sched-energy: CPU6 max energy model capacity=872 != cpu_scale=871\n[    0.273609] sched-energy: Sched-energy-costs installed from DT\n[    0.273721] cpufreq: driver osm-cpufreq up and running\n[    0.273724] clk: clk_cpu_osm_driver_probe: OSM CPUFreq driver inited\n[    0.275491] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.277226] clk-rpmh soc:qcom,rpmhclk: Registered RPMh clocks\n[    0.293356] gcc-sm8150 100000.qcom,gcc: Registered GCC clocks\n[    0.294216] gpu_cc_gmu_clk_src: set OPP pair(19200000 Hz: 49 uV) on 2c6a000.qcom,gmu\n[    0.294273] clk_round_rate failed for gpu_cc_gmu_clk_src\n[    0.294374] gpu_cc-sm8150 2c90000.qcom,gpucc: Registered GPU CC clocks\n[    0.295186] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.295191] video_cc-sm8150 ab00000.qcom,videocc: Unable to register for bw voting\n[    0.295452] socinfo_print: v0.15, id=339, ver=2.2, raw_id=165, raw_ver=3, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65566, pmic_die_revision=196608 foundry_id=1 serial_number=132005191 num_pmics=3 chip_family=0x56 raw_device_family=0x6 raw_device_number=0x3 nproduct_id=0x404 num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xc ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.295811] Failed to setup PIL ipc logging\n[    0.295815] msm_bus_fabric_rpmh_init_driver\n[    0.295978] msm_bus: Probe started\n[    0.296514] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.296578] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.296596] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.296651] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.298932] msm_bus: DT Parsing complete\n[    0.302253] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.302423] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.302456] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.302582] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.316041] camera_rear0_vana_ldo: supplied by pm8150l_bob\n[    0.316260] camera_vcm_en_ldo: supplied by pm8150l_bob\n[    0.317755] register_client_adhoc:find path.src 161 dest 627\n[    0.317902] register_client_adhoc:Client handle 1 apps_smmu\n[    0.318016] arm-smmu 15000000.apps-smmu: \tnon-coherent table walk\n[    0.318020] arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.318024] arm-smmu 15000000.apps-smmu: \tstream matching with 94 register groups\n[    0.318946] register_client_adhoc:find path.src 161 dest 627\n[    0.319080] register_client_adhoc:Client handle 2 apps_smmu\n[    0.319293] register_client_adhoc:find path.src 161 dest 627\n[    0.319429] register_client_adhoc:Client handle 3 apps_smmu\n[    0.319625] register_client_adhoc:find path.src 22 dest 773\n[    0.319698] register_client_adhoc:Client handle 4 mnoc_hf_1_tbu\n[    0.319862] register_client_adhoc:find path.src 154 dest 10070\n[    0.319911] register_client_adhoc:Client handle 5 apps_smmu\n[    0.320119] register_client_adhoc:find path.src 22 dest 773\n[    0.320185] register_client_adhoc:Client handle 6 mnoc_hf_0_tbu\n[    0.320336] register_client_adhoc:find path.src 154 dest 10070\n[    0.320383] register_client_adhoc:Client handle 7 apps_smmu\n[    0.320576] register_client_adhoc:find path.src 161 dest 627\n[    0.320714] register_client_adhoc:Client handle 8 apps_smmu\n[    0.320924] register_client_adhoc:find path.src 161 dest 627\n[    0.321055] register_client_adhoc:Client handle 9 apps_smmu\n[    0.321262] register_client_adhoc:find path.src 137 dest 772\n[    0.321330] register_client_adhoc:Client handle 10 mnoc_sf_0_tbu\n[    0.322274] arm-smmu 2ca0000.kgsl-smmu: \tnon-coherent table walk\n[    0.322277] arm-smmu 2ca0000.kgsl-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.322282] arm-smmu 2ca0000.kgsl-smmu: \tstream matching with 6 register groups\n[    0.323359] SCSI subsystem initialized\n[    0.323436] usbcore: registered new interface driver usbfs\n[    0.323452] usbcore: registered new interface driver hub\n[    0.323523] usbcore: registered new device driver usb\n[    0.323814] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.324176] media: Linux media interface: v0.10\n[    0.324197] Linux video capture interface: v2.00\n[    0.331605] virt zone: sensor[gpuss-1-usr] read error:-22\n[    0.331868] tsens_tm_probe : unable to create IPC Logging 0 for tsens 0x000000000c263000\n[    0.331872] tsens_tm_probe : unable to create IPC Logging 1 for tsens 0x000000000c263000\n[    0.331875] tsens_tm_probe : unable to create IPC Logging 2 for tsens 0x000000000c263000\n[    0.333625] tsens_tm_probe : unable to create IPC Logging 0 for tsens 0x000000000c265000\n[    0.333628] tsens_tm_probe : unable to create IPC Logging 1 for tsens 0x000000000c265000\n[    0.333630] tsens_tm_probe : unable to create IPC Logging 2 for tsens 0x000000000c265000\n[    0.338068] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node adsp_region\n[    0.338148] platform soc:qcom,ion:qcom,ion-heap@26: assigned reserved memory node user_contig_region\n[    0.338218] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.338288] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.338350] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.338413] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.338724] ION heap system created\n[    0.338798] ION heap adsp created at 0x00000000ef800000 with size 1000000\n[    0.338805] ION heap user_contig created at 0x00000000f1800000 with size 1000000\n[    0.338808] ION heap qsecom created at 0x000000009e400000 with size 1400000\n[    0.338811] ION heap qsecom_ta created at 0x00000000f0800000 with size 1000000\n[    0.338814] ION heap spss created at 0x00000000f2c00000 with size 800000\n[    0.338817] ION heap secure_display created at 0x00000000f5c00000 with size a000000\n[    0.375001] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0xa4c00000, size 0x3c00000\n[    0.375004] ION heap secure_carveout created\n[    0.375011] ION heap secure_heap created\n[    0.376375] qupv3_geni_se 8c0000.qcom,qupv3_0_geni_se: geni_se_probe Failed to allocate log context\n[    0.376608] iommu: Adding device 8c0000.qcom,qupv3_0_geni_se:qcom,iommu_qupv3_0_geni_se_cb to group 0\n[    0.376690] qupv3_geni_se ac0000.qcom,qupv3_1_geni_se: geni_se_probe Failed to allocate log context\n[    0.376865] iommu: Adding device ac0000.qcom,qupv3_1_geni_se:qcom,iommu_qupv3_1_geni_se_cb to group 1\n[    0.376938] qupv3_geni_se cc0000.qcom,qupv3_2_geni_se: geni_se_probe Failed to allocate log context\n[    0.377106] iommu: Adding device cc0000.qcom,qupv3_2_geni_se:qcom,iommu_qupv3_2_geni_se_cb to group 2\n[    0.377174] qupv3_geni_se 26c0000.qcom,qupv3_3_geni_se: geni_se_probe Failed to allocate log context\n[    0.377341] iommu: Adding device 26c0000.qcom,qupv3_3_geni_se:qcom,iommu_qupv3_3_geni_se_cb to group 3\n[    0.378511] register_client_adhoc:find path.src 90 dest 512\n[    0.378945] register_client_adhoc:find path.src 90 dest 585\n[    0.379077] register_client_adhoc:find path.src 1 dest 676\n[    0.379302] register_client_adhoc:find path.src 143 dest 777\n[    0.379368] register_client_adhoc:Client handle 11 ipa\n[    0.384006] ipa ipa3_smp2p_probe:8041 fail to get smp2p clk resp bit -517\n[    0.384344] iommu: Adding device soc:ipa_smmu_ap to group 4\n[    0.384514] iommu: Adding device soc:ipa_smmu_wlan to group 5\n[    0.384692] iommu: Adding device soc:ipa_smmu_uc to group 6\n[    0.385238] ipa ipa3_smp2p_probe:8041 fail to get smp2p clk resp bit -517\n[    0.387146] Advanced Linux Sound Architecture Driver Initialized.\n[    0.387905] Bluetooth: Core ver 2.22\n[    0.387951] NET: Registered protocol family 31\n[    0.387954] Bluetooth: HCI device and connection manager initialized\n[    0.387969] Bluetooth: HCI socket layer initialized\n[    0.387980] Bluetooth: L2CAP socket layer initialized\n[    0.388023] Bluetooth: SCO socket layer initialized\n[    0.389495] NetLabel: Initializing\n[    0.389498] NetLabel:  domain hash size = 128\n[    0.389501] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\n[    0.389571] NetLabel:  unlabeled traffic allowed by default\n[    0.389991] register_client_adhoc:find path.src 1 dest 590\n[    0.390435] register_client_adhoc:find path.src 1 dest 589\n[    0.390646] register_client_adhoc:find path.src 1 dest 596\n[    0.390878] register_client_adhoc:find path.src 22 dest 512\n[    0.391124] register_client_adhoc:find path.src 23 dest 512\n[    0.391352] register_client_adhoc:Client handle 12 bus-proxy-client\n[    0.392654] register_client_adhoc:find path.src 1 dest 589\n[    0.392912] register_client_adhoc:Client handle 13 bps_gdsc_ahb\n[    0.393172] bps_gdsc: supplied by pm8150l_s5_level\n[    0.393716] register_client_adhoc:find path.src 1 dest 589\n[    0.393941] register_client_adhoc:Client handle 14 ipe_0_gdsc_ahb\n[    0.394148] ipe_0_gdsc: supplied by pm8150l_s5_level\n[    0.394579] register_client_adhoc:find path.src 1 dest 589\n[    0.394796] register_client_adhoc:Client handle 15 ipe_1_gdsc_ahb\n[    0.394990] ipe_1_gdsc: supplied by pm8150l_s5_level\n[    0.395370] register_client_adhoc:find path.src 1 dest 589\n[    0.395588] register_client_adhoc:Client handle 16 ife_0_gdsc_ahb\n[    0.395776] ife_0_gdsc: supplied by pm8150l_s5_level\n[    0.396129] register_client_adhoc:find path.src 1 dest 589\n[    0.396337] register_client_adhoc:Client handle 17 ife_1_gdsc_ahb\n[    0.396525] ife_1_gdsc: supplied by pm8150l_s5_level\n[    0.396893] register_client_adhoc:find path.src 1 dest 589\n[    0.397104] register_client_adhoc:Client handle 18 titan_top_gdsc_ahb\n[    0.397298] titan_top_gdsc: supplied by pm8150l_s5_level\n[    0.397634] register_client_adhoc:find path.src 1 dest 590\n[    0.397848] register_client_adhoc:Client handle 19 mdss_core_gdsc_ahb\n[    0.397963] mdss_core_gdsc: supplied by pm8150l_s5_level\n[    0.398385] register_client_adhoc:find path.src 1 dest 596\n[    0.398603] register_client_adhoc:Client handle 20 mvsc_gdsc_ahb\n[    0.398791] mvsc_gdsc: supplied by pm8150l_s5_level\n[    0.399124] register_client_adhoc:find path.src 1 dest 596\n[    0.399347] register_client_adhoc:Client handle 21 mvs0_gdsc_ahb\n[    0.399535] mvs0_gdsc: supplied by pm8150l_s5_level\n[    0.399880] register_client_adhoc:find path.src 1 dest 596\n[    0.400127] register_client_adhoc:Client handle 22 mvs1_gdsc_ahb\n[    0.400316] mvs1_gdsc: supplied by pm8150l_s5_level\n[    0.401030] register_client_adhoc:find path.src 1 dest 589\n[    0.401234] register_client_adhoc:Client handle 23 clk_camcc_debugfs\n[    0.402175] cam_cc_bps_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac6f000.qcom,bps\n[    0.402193] clk_round_rate failed for cam_cc_bps_clk_src\n[    0.402540] cam_cc_cci_0_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac4a000.qcom,cci\n[    0.402558] clk_round_rate failed for cam_cc_cci_0_clk_src\n[    0.402731] cam_cc_cci_1_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac4b000.qcom,cci\n[    0.402746] clk_round_rate failed for cam_cc_cci_1_clk_src\n[    0.403144] cam_cc_csi0phytimer_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac65000.qcom,csiphy\n[    0.403160] clk_round_rate failed for cam_cc_csi0phytimer_clk_src\n[    0.403364] cam_cc_csi1phytimer_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac66000.qcom,csiphy\n[    0.403379] clk_round_rate failed for cam_cc_csi1phytimer_clk_src\n[    0.403600] cam_cc_csi2phytimer_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac67000.qcom,csiphy\n[    0.403616] clk_round_rate failed for cam_cc_csi2phytimer_clk_src\n[    0.403837] cam_cc_csi3phytimer_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac68000.qcom,csiphy\n[    0.403853] clk_round_rate failed for cam_cc_csi3phytimer_clk_src\n[    0.404751] cam_cc_icp_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac00000.qcom,a5\n[    0.404768] clk_round_rate failed for cam_cc_icp_clk_src\n[    0.405081] cam_cc_ife_0_clk_src: set OPP pair(19200000 Hz: 49 uV) on acaf000.qcom,vfe0\n[    0.405099] clk_round_rate failed for cam_cc_ife_0_clk_src\n[    0.405408] cam_cc_ife_0_csid_clk_src: set OPP pair(19200000 Hz: 49 uV) on acb3000.qcom,csid0\n[    0.405426] clk_round_rate failed for cam_cc_ife_0_csid_clk_src\n[    0.405821] cam_cc_ife_1_clk_src: set OPP pair(19200000 Hz: 49 uV) on acb6000.qcom,vfe1\n[    0.405839] clk_round_rate failed for cam_cc_ife_1_clk_src\n[    0.406166] cam_cc_ife_1_csid_clk_src: set OPP pair(19200000 Hz: 49 uV) on acba000.qcom,csid1\n[    0.406185] clk_round_rate failed for cam_cc_ife_1_csid_clk_src\n[    0.406510] cam_cc_ife_lite_0_clk_src: set OPP pair(19200000 Hz: 49 uV) on acc4000.qcom,vfe-lite0\n[    0.406530] clk_round_rate failed for cam_cc_ife_lite_0_clk_src\n[    0.406856] cam_cc_ife_lite_0_csid_clk_src: set OPP pair(19200000 Hz: 49 uV) on acc8000.qcom,csid-lite0\n[    0.406874] clk_round_rate failed for cam_cc_ife_lite_0_csid_clk_src\n[    0.407140] cam_cc_ife_lite_1_clk_src: set OPP pair(19200000 Hz: 49 uV) on accb000.qcom,vfe-lite1\n[    0.407159] clk_round_rate failed for cam_cc_ife_lite_1_clk_src\n[    0.407492] cam_cc_ife_lite_1_csid_clk_src: set OPP pair(19200000 Hz: 49 uV) on accf000.qcom,csid-lite1\n[    0.407510] clk_round_rate failed for cam_cc_ife_lite_1_csid_clk_src\n[    0.408100] cam_cc_ipe_0_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac87000.qcom,ipe0\n[    0.408121] clk_round_rate failed for cam_cc_ipe_0_clk_src\n[    0.412347] cam_cc-sm8150 ad00000.qcom,camcc: Registered CAM CC clocks\n[    0.412600] register_client_adhoc:find path.src 1 dest 590\n[    0.412815] register_client_adhoc:Client handle 24 clk_dispcc_debugfs\n[    0.412845] PLL is already enabled. Skipping configuration.\n[    0.419410] disp_cc-sm8150 af00000.qcom,dispcc: Registered Display CC clocks\n[    0.423870] npu_cc-sm8150 9910000.qcom,npucc: Registered NPU CC clocks\n[    0.424064] register_client_adhoc:find path.src 1 dest 596\n[    0.424297] register_client_adhoc:Client handle 25 clk_videocc_debugfs\n[    0.425326] video_cc-sm8150 ab00000.qcom,videocc: Registered Video CC clocks\n[    0.425513] ipa ipa3_smp2p_probe:8041 fail to get smp2p clk resp bit -517\n[    0.425918] clocksource: Switched to clocksource arch_sys_counter\n[    0.426048] VFS: Disk quotas dquot_6.6.0\n[    0.426103] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.426966] simple-framebuffer 9c000000.framebuffer: framebuffer at 0x9c000000, 0x2400000 bytes, mapped to 0x        (ptrval)\n[    0.426972] simple-framebuffer 9c000000.framebuffer: format=a8r8g8b8, mode=1080x2340x32, linelength=4320\n[    0.446487] Console: switching to colour frame buffer device 67x73\n[    0.465559] simple-framebuffer 9c000000.framebuffer: fb0: simplefb registered!\n[    0.465896] register_client_adhoc:find path.src 1 dest 589\n[    0.466121] register_client_adhoc:find path.src 1 dest 596\n[    0.466342] register_client_adhoc:find path.src 1 dest 590\n[    0.466550] register_client_adhoc:Client handle 26 clk_measure\n[    0.467189] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.467195] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.467355] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.467363] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.467376] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.467383] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.467389] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.467396] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.469092] dsi_pll_clock_register_7nm: Registered DSI PLL ndx=0, clocks successfully\n[    0.469134] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.469138] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.469265] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.469272] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.469278] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.469285] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.469291] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.469298] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.475665] dsi_pll_clock_register_7nm: Registered DSI PLL ndx=1, clocks successfully\n[    0.475709] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.475724] mdss_pll_util_parse_dt_supply: no supply entry present\n[    0.483086] NET: Registered protocol family 2\n[    0.483553] TCP established hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.483788] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)\n[    0.485284] TCP: Hash tables configured (established 65536 bind 65536)\n[    0.485410] UDP hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.485484] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.485729] NET: Registered protocol family 1\n[    0.485942] ipa ipa3_smp2p_probe:8041 fail to get smp2p clk resp bit -517\n[    0.486233] Unpacking initramfs...\n[    1.108502] Freeing initrd memory: 23664K\n[    1.110486] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    1.116087] Initialise system trusted keyrings\n[    1.116211] workingset: timestamp_bits=61 max_order=21 bucket_order=0\n[    1.119551] [SDFAT] Filesystem version 2.1.8-lineage\n[    1.119989] Registering sdcardfs 0.1\n[    1.120185] fuse init (API version 7.26)\n[    1.120846] SELinux:  Registering netfilter hooks\n[    1.121437] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    1.121440] pfk_f2fs [pfk_f2fs_init]: PFK F2FS inited successfully\n[    1.121447] pfk [pfk_init]: Driver initialized successfully\n[    1.124064] Key type asymmetric registered\n[    1.124068] Asymmetric key parser 'x509' registered\n[    1.124114] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)\n[    1.124119] io scheduler noop registered\n[    1.124122] io scheduler deadline registered\n[    1.124213] io scheduler cfq registered (default)\n[    1.132832] iommu: Adding device 800000.qcom,gpi-dma to group 7\n[    1.134304] iommu: Adding device a00000.qcom,gpi-dma to group 8\n[    1.135652] iommu: Adding device c00000.qcom,gpi-dma to group 9\n[    1.138850] icnss: Unable to create log context\n[    1.138853] icnss: Unable to create log long context\n[    1.139113] iommu: Adding device 18800000.qcom,icnss to group 10\n[    1.139210] icnss: Recursive recovery allowed for WLAN\n[    1.145502] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    1.145694] icnss: Platform driver probed successfully\n[    1.146970] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    1.147165] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    1.154243] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    1.154837] register_client_adhoc:find path.src 125 dest 512\n[    1.155410] register_client_adhoc:Client handle 27 scm_pas\n[    1.156134] minidump-id not found for adsp\n[    1.156735] minidump-id not found for slpi\n[    1.157296] minidump-id not found for spss\n[    1.157633] minidump-id not found for npu\n[    1.157640] subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    1.157711] subsys-pil-tz 9800000.qcom,npu: for md_npu segments only will be dumped.\n[    1.157985] register_client_adhoc:find path.src 154 dest 10070\n[    1.158046] register_client_adhoc:Client handle 28 pil-cdsp\n[    1.158052] minidump-id not found for cdsp\n[    1.158708] register_client_adhoc:find path.src 63 dest 512\n[    1.158955] register_client_adhoc:Client handle 29 pil-venus\n[    1.158960] minidump-id not found for venus\n[    1.159278] minidump-id not found for ipa_fws\n[    1.159286] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    1.159358] subsys-pil-tz soc:qcom,ipa_fws: for md_ipa_fws segments only will be dumped.\n[    1.159646] minidump-id not found for a640_zap\n[    1.159653] subsys-pil-tz soc:qcom,kgsl-hyp: for a640_zap segments only will be dumped.\n[    1.159710] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a640_zap segments only will be dumped.\n[    1.159923] spcom: spcom_init: spcom driver version 2.1 23-April-2018.\n[    1.161598] qiib_driver_data_init: unable to create logging context\n[    1.162906] smp2p_sleepstate soc:qcom,smp2p_sleepstate: got smp2p-sleepstate-in irq 490\n[    1.166786] msm_geni_serial c8c000.qcom,qup_uart: Wakeup byte 0xfd\n[    1.166834] msm_geni_serial c8c000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    1.166854] msm_geni_serial c8c000.qcom,qup_uart: Err in Rx IPC Log\n[    1.166859] msm_geni_serial c8c000.qcom,qup_uart: Err in Tx IPC Log\n[    1.166863] msm_geni_serial c8c000.qcom,qup_uart: Err in Pwr IPC Log\n[    1.166867] msm_geni_serial c8c000.qcom,qup_uart: Err in Misc IPC Log\n[    1.167202] c8c000.qcom,qup_uart: ttyHS0 at MMIO 0xc8c000 (irq = 443, base_baud = 0) is a MSM\n[    1.167404] msm_geni_serial_init: Driver initialized\n[    1.167660] register_client_adhoc:find path.src 1 dest 618\n[    1.167906] register_client_adhoc:Client handle 30 msm-rng-noc\n[    1.168780] random: crng init done\n[    1.172384] diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    1.172388] diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    1.218428] register_client_adhoc:find path.src 20003 dest 20515\n[    1.218553] register_client_adhoc:find path.src 20004 dest 20515\n[    1.218629] register_client_adhoc:Client handle 31 disp_rsc_mnoc\n[    1.218655] register_client_adhoc:find path.src 20001 dest 20513\n[    1.218733] register_client_adhoc:Client handle 32 disp_rsc_llcc\n[    1.218760] register_client_adhoc:find path.src 20000 dest 20512\n[    1.218838] register_client_adhoc:Client handle 33 disp_rsc_ebi\n[    1.219022] [sde_rsc_hw:rsc_hw_init:714]: sde rsc init successfully done\n[    1.219058] [sde_rsc:sde_rsc_probe:1884]: sde rsc index:0 probed successfully\n[    1.219609] dsi_phy ae94400.qcom,mdss_dsi_phy0: ae94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    1.219713] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-0\n[    1.219789] dsi_phy ae96400.qcom,mdss_dsi_phy0: ae96400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    1.219846] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-1\n[    1.220645] AXI: get_pdata(): Error: Client name not found\n[    1.220649] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    1.220653] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-0\n[    1.220842] AXI: get_pdata(): Error: Client name not found\n[    1.220844] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    1.220846] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-1\n[    1.221314] msm-dsi-display:[dsi_display_parse_boot_display_selection] boot_param is dsi_boe_2k_vid_display:, display_name is dsi_boe_2k_vid_display, i=0\n[    1.221318] msm-dsi-display:[dsi_display_parse_boot_display_selection] boot_param is , display_name is , i=1\n[    1.221322] msm-dsi-display:[dsi_display_parse_boot_display_selection] is_kirin_panel is 1\n[    1.221863] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    1.221905] msm-dsi-panel:[dsi_panel_parse_triggers:1266] [BOE 2K video mode dsi panel] fallback to default te-pin-select\n[    1.221934] msm-dsi-panel:[dsi_panel_parse_panel_mode:1781] dsi_panel_parse_panel_mode: panel operating mode switch feature disabled\n[    1.221966] msm-dsi-panel:[dsi_panel_parse_qsync_caps:1464] [BOE 2K video mode dsi panel] qsync min fps not defined rc:-22\n[    1.221970] msm-dsi-panel:[dsi_panel_get:3450] failed to parse qsync features, rc=-22\n[    1.221998] msm-dsi-panel:[dsi_panel_parse_reset_sequence:2140] RESET SEQ LENGTH = 24\n[    1.222048] msm-dsi-panel:[dsi_panel_parse_misc_features:2190] dsi_panel_parse_misc_features: ulps feature enabled\n[    1.222053] msm-dsi-panel:[dsi_panel_parse_misc_features:2196] dsi_panel_parse_misc_features: ulps during suspend feature disabled\n[    1.222120] msm-dsi-panel:[dsi_panel_parse_esd_config:3367] ESD enabled with mode: register_read\n[    1.223198] iommu: Adding device ae00000.qcom,mdss_mdp to group 11\n[    1.224910] register_client_adhoc:find path.src 1 dest 590\n[    1.225150] register_client_adhoc:Client handle 34 mdss_reg\n[    1.225185] register_client_adhoc:find path.src 22 dest 512\n[    1.225430] register_client_adhoc:find path.src 23 dest 512\n[    1.225637] register_client_adhoc:Client handle 35 mdss_sde\n[    1.225713] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops 0xffffff887df32710)\n[    1.225719] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops 0xffffff887df35ec0)\n[    1.225869] msm-dsi-panel:[dsi_panel_vreg_get:263] failed to get lab regulator\n[    1.225931] msm-dsi-panel:[dsi_panel_drv_init:3552] [BOE 2K video mode dsi panel] failed to get panel regulators, rc=-517\n[    1.225996] [drm:msm_drm_bind] *ERROR* component_bind_all failed: -517\n[    1.226001] [drm:sde_power_resource_deinit:823]: cliend:dsi_core_client0-2 still registered with refcount:0\n[    1.231211] iommu: Adding device 2c6a000.qcom,gmu:gmu_user to group 12\n[    1.231836] iommu: Adding device 2c6a000.qcom,gmu:gmu_kernel to group 13\n[    1.233498] register_client_adhoc:find path.src 26 dest 512\n[    1.233649] register_client_adhoc:Client handle 34 grp3d\n[    1.233670] register_client_adhoc:find path.src 26 dest 10036\n[    1.233810] register_client_adhoc:Client handle 35 cnoc\n[    1.233815] query_client_usecase_all: query_start\n[    1.233866] query_client_usecase_all: query_start\n[    1.235072] iommu: Adding device 2ca0000.qcom,kgsl-iommu:gfx3d_user to group 14\n[    1.235226] iommu: Adding device 2ca0000.qcom,kgsl-iommu:gfx3d_secure to group 15\n[    1.284929] loop: module loaded\n[    1.285427] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1400000\n[    1.285443] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    1.285451] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    1.285456] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    1.285512] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    1.286658] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from KPD (Power Key Press) and 'warm' boot\n[    1.286686] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    1.286892] input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800/input/input0\n[    1.289428] SDAM base=0xb100 size=128 registered successfully\n[    1.290121] PMIC@SID2: PM8150B v2.0 options: 0, 0, 0, 0\n[    1.290271] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150b@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from CBL (External Power Supply) and 'warm' boot\n[    1.290296] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150b@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from SOFT (Software)\n[    1.294319] PMIC@SID4: PM8150L v3.0 options: 0, 0, 0, 0\n[    1.294460] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150l@4:qcom,power-on@800: PMIC@SID4 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'warm' boot\n[    1.294486] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150l@4:qcom,power-on@800: PMIC@SID4: Power-off reason: Triggered from SOFT (Software)\n[    1.298078] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=5500mV ncp_voltage=5500mV bst_voltage=5650mV\n[    1.300327] iommu: Adding device 1de0000.qcedev to group 16\n[    1.300489] register_client_adhoc:find path.src 125 dest 512\n[    1.300920] register_client_adhoc:Client handle 36 qcedev-noc\n[    1.301134] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.301786] qce 1de0000.qcedev: QTI Crypto 5.4.2 device found @0x1de0000\n[    1.301806] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000001dc4000\n[    1.301809] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000001dc4000\n[    1.301813] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000001dc4000\n[    1.301816] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000001dc4000\n[    1.301820] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000001dc4000\n[    1.301824] sps:BAM 0x0000000001dc4000 is registered.\n[    1.301944] sps:BAM 0x0000000001dc4000 (va:0xffffff8019f00000) enabled: ver:0x27, number of pipes:16\n[    1.302127] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 59\n[    1.302478] iommu: Adding device 1de0000.qcedev:qcom_cedev_ns_cb to group 17\n[    1.303015] qcedev_setup_context_bank Attached 1de0000.qcedev:qcom_cedev_ns_cb and create mapping\n[    1.303019] qcedev_setup_context_bank Context Bank name:ns_context, is_secure:0, start_addr:0x60000000\n[    1.303177] iommu: Adding device 1de0000.qcedev:qcom_cedev_s_cb to group 18\n[    1.304545] qcedev_setup_context_bank Attached 1de0000.qcedev:qcom_cedev_s_cb and create mapping\n[    1.304549] qcedev_setup_context_bank Context Bank name:secure_context, is_secure:1, start_addr:0xa0000000\n[    1.306506] iommu: Adding device 1de0000.qcrypto to group 19\n[    1.306570] register_client_adhoc:find path.src 125 dest 512\n[    1.306881] register_client_adhoc:Client handle 37 qcrypto-noc\n[    1.307017] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.307638] qcrypto 1de0000.qcrypto: QTI Crypto 5.4.2 device found @0x1de0000\n[    1.307866] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 59\n[    1.308169] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    1.308312] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    1.308374] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    1.308439] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    1.308499] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    1.308556] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    1.308614] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    1.308675] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    1.308742] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    1.308808] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    1.308869] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    1.308929] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    1.308991] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    1.309049] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    1.309112] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    1.309175] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    1.309234] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    1.309304] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    1.309364] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    1.309424] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    1.311923] ufshcd-qcom 1d84000.ufshc: no vccq2-voltage-level property.\n[    1.314362] qcom_ice_get_pdevice: found ice device ffffffe0ab5e0800\n[    1.314364] qcom_ice_get_pdevice: matching platform device ffffffe0b5b8b400\n[    1.315520] register_client_adhoc:find path.src 123 dest 512\n[    1.315868] register_client_adhoc:find path.src 1 dest 757\n[    1.316127] register_client_adhoc:Client handle 38 ufshc_mem\n[    1.317982] scsi host0: ufshcd\n[    1.322564] qcom_ice 1d90000.ufsice: QC ICE 3.1.79 device found @0xffffff801a468000\n[    1.343120] libphy: Fixed MDIO Bus: probed\n[    1.343145] tun: Universal TUN/TAP device driver, 1.6\n[    1.343267] PPP generic driver version 2.4.2\n[    1.343350] PPP BSD Compression module registered\n[    1.343354] PPP Deflate Compression module registered\n[    1.343371] PPP MPPE Compression module registered\n[    1.343376] NET: Registered protocol family 24\n[    1.343378] PPTP driver version 0.8.5\n[    1.343599] CLD80211: Initializing\n[    1.343687] usbcore: registered new interface driver r8152\n[    1.343705] usbcore: registered new interface driver lan78xx\n[    1.343719] usbcore: registered new interface driver asix\n[    1.343737] usbcore: registered new interface driver ax88179_178a\n[    1.343752] usbcore: registered new interface driver cdc_ether\n[    1.343767] usbcore: registered new interface driver net1080\n[    1.343782] usbcore: registered new interface driver cdc_subset\n[    1.343795] usbcore: registered new interface driver zaurus\n[    1.343815] usbcore: registered new interface driver cdc_ncm\n[    1.349260] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.350419] msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    1.353202] iommu: Adding device a600000.ssusb to group 20\n[    1.354704] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.355040] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.355045] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.356611] msm-dwc3 a600000.ssusb: unable to get ssphy device\n[    1.358921] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.359242] iommu: Adding device a800000.ssusb to group 21\n[    1.360704] dwc3 a800000.dwc3: changing max_speed on rev 00000000\n[    1.360967] dwc3 a800000.dwc3: Error getting ipc_log_ctxt\n[    1.360972] dwc3 a800000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.362396] register_client_adhoc:find path.src 101 dest 512\n[    1.362795] register_client_adhoc:find path.src 101 dest 676\n[    1.363022] register_client_adhoc:find path.src 1 dest 751\n[    1.363261] register_client_adhoc:Client handle 39 usb1\n[    1.366931] usbcore: registered new interface driver usb-storage\n[    1.368444] fgsi_init: Err allocating ipc_log_ctxt\n[    1.369537] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.369801] usbcore: registered new interface driver xpad\n[    1.371265] input: qti-haptics as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-03/c440000.qcom,spmi:qcom,pm8150b@3:qcom,haptics@c000/input/input1\n[    1.372051] asustek_lid soc:asustek_lid: ASUSTek: lid_driver_probe\n[    1.372207] input: lid_input as /devices/platform/soc/soc:asustek_lid/input/input2\n[    1.372624] genirq: irq_chip msmgpio-dc did not update eff. affinity mask of irq 239\n[    1.373057] asustek_lid2 soc:asustek_lid2: ASUSTek: lid2_driver_probe\n[    1.373182] input: lid2_input as /devices/platform/soc/soc:asustek_lid2/input/input3\n[    1.373655] gf_spi: gf_init: +++.\n[    1.373889] gf_spi: gf_probe: +++.\n[    1.374009] input: goodixfp as /devices/virtual/input/input4\n[    1.374068] gf_spi: gf_probe: version V1.2.12\n[    1.374071] gf_spi: gf_probe: ---.\n[    1.374275] gf_spi: gf_init: status = 0x0\n[    1.374277] gf_spi: gf_init: ---.\n[    1.374606] asustek_googlekey soc:asustek_googlekey: ASUSTek: googlekey_driver_probe\n[    1.374740] input: googlekey_input as /devices/virtual/input/input5\n[    1.375761] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm8150@0:qcom,pm8150_rtc: rtc core: registered qpnp_rtc as rtc0\n[    1.375906] i2c /dev entries driver\n[    1.376347] i2c_geni 884000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.377092] i2c_geni 890000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.378430] i2c_geni a80000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.379059] i2c_geni a84000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.379644] i2c_geni c80000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.381705] input: fts_ts as /devices/platform/soc/c80000.i2c/i2c-4/4-0038/input/input6\n[    1.385918] iommu: Adding device 9800000.qcom,msm_npu to group 22\n[    1.385967] msm_npu: unable to get qfprom_physical resource\n[    1.394467] iommu: Adding device aa00000.qcom,vidc:non_secure_cb to group 23\n[    1.395087] iommu: Adding device aa00000.qcom,vidc:secure_non_pixel_cb to group 24\n[    1.397221] iommu: Adding device aa00000.qcom,vidc:secure_bitstream_cb to group 25\n[    1.398932] iommu: Adding device aa00000.qcom,vidc:secure_pixel_cb to group 26\n[    1.400435] platform aa00000.qcom,vidc:qcom,msm-vidc,mem_cdsp: assigned reserved memory node cdsp_region\n[    1.402368] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 27\n[    1.402561] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 28\n[    1.402620] platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node camera_region\n[    1.402915] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 29\n[    1.403133] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 30\n[    1.403456] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_fd to group 31\n[    1.403644] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 32\n[    1.405607] register_client_adhoc:find path.src 1 dest 589\n[    1.405945] register_client_adhoc:Client handle 39 cam_ahb\n[    1.406107] register_client_adhoc:find path.src 136 dest 512\n[    1.406354] register_client_adhoc:Client handle 40 cam_hf_1_mnoc\n[    1.406477] register_client_adhoc:find path.src 146 dest 778\n[    1.406528] register_client_adhoc:Client handle 41 cam_hf_1_camnoc\n[    1.406615] register_client_adhoc:find path.src 145 dest 512\n[    1.406826] register_client_adhoc:Client handle 42 cam_hf_2_mnoc\n[    1.406937] register_client_adhoc:find path.src 147 dest 778\n[    1.406986] register_client_adhoc:Client handle 43 cam_hf_2_camnoc\n[    1.407074] register_client_adhoc:find path.src 137 dest 512\n[    1.407293] register_client_adhoc:Client handle 44 cam_sf_1_mnoc\n[    1.407406] register_client_adhoc:find path.src 148 dest 778\n[    1.407455] register_client_adhoc:Client handle 45 cam_sf_1_camnoc\n[    1.413137] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1019 AXI client=[17][cpas-cdm][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    1.416542] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 867 Invalid mux type: 0\n[    1.416592] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1082 Inval_prms soc_info:ffffffe0aa425050 hw_intf:ffffffe0aa4ad200 hw_info0000000000000000\n[    1.416595] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1083 controller: ffffffe0aa4ea700\n[    1.416599] CAM_ERR: CAM-ISP: cam_vfe_core_init: 861 Error! RD cam_vfe_bus_init failed\n[    1.416737] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1019 AXI client=[10][ife][0] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.417349] nq-nci 3-0029: nfcc_hw_check: - NFCC HW not Supported\n[    1.417371] nq-nci 3-0029: nqx_probe: probing NFCC NQxxx exited successfully\n[    1.419037] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 867 Invalid mux type: 0\n[    1.419072] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1082 Inval_prms soc_info:ffffffe0aa4fe050 hw_intf:ffffffe0aa4b0c00 hw_info0000000000000000\n[    1.419075] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1083 controller: ffffffe0aa4ead00\n[    1.419077] CAM_ERR: CAM-ISP: cam_vfe_core_init: 861 Error! RD cam_vfe_bus_init failed\n[    1.419167] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1019 AXI client=[11][ife][1] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.421300] CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 525 No clk named ife_dsp_clk found. Dev vfe2\n[    1.421303] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 109 Option clk get failed with rc -14\n[    1.421403] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 867 Invalid mux type: 0\n[    1.421405] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 867 Invalid mux type: 0\n[    1.421510] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1019 AXI client=[12][ife][2] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.423111] CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 525 No clk named ife_dsp_clk found. Dev vfe3\n[    1.423113] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 109 Option clk get failed with rc -14\n[    1.423213] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 867 Invalid mux type: 0\n[    1.423216] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 867 Invalid mux type: 0\n[    1.423319] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1019 AXI client=[13][ife][3] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.426106] CAM_INFO: CAM-ISP: cam_isp_dev_probe: 171 Camera ISP probe complete\n[    1.427500] CAM_INFO: CAM: cam_res_mgr_probe: 689 Disable shared gpio support.\n[    1.431127] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 429 Device Type :0\n[    1.433803] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 429 Device Type :1\n[    1.435312] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    1.435329] ACTUATOR-ATD create_proc_file(): create(driver/actuator_power) done\n[    1.435333] ACTUATOR-ATD create_proc_file(): create(driver/actuator_i2c_rw) done\n[    1.435341] ACTUATOR-ATD create_proc_file(): create(driver/vcm_enable) done\n[    1.435346] ACTUATOR-ATD create_proc_file(): create(driver/vcm) done\n[    1.435352] CAM_INFO: CAM-ACTUATOR: cam_actuator_driver_platform_probe: 385 Actuator Probe Success.\n[    1.436500] CAM_INFO: CAM-FLASH: cam_flash_platform_probe: 471 Flash probe Enter\n[    1.436574] FLASH-ATD create_proc_file() create(driver/flash_status) done\n[    1.436577] FLASH-ATD create_proc_file() create(driver/asus_flash) done\n[    1.436580] FLASH-ATD create_proc_file() create(driver/asus_flash2) done\n[    1.436584] FLASH-ATD create_proc_file() create(driver/ctrl1_leds) done\n[    1.436586] CAM_INFO: CAM-FLASH: cam_flash_platform_probe: 567 Flash probe succeed\n[    1.436616] CAM_INFO: CAM-FLASH: cam_flash_platform_probe: 471 Flash probe Enter\n[    1.436631] FLASH-ATD asus_flash_init() invalid flash id 1\n[    1.436633] CAM_INFO: CAM-FLASH: cam_flash_platform_probe: 567 Flash probe succeed\n[    1.436660] CAM_INFO: CAM-FLASH: cam_flash_platform_probe: 471 Flash probe Enter\n[    1.436677] FLASH-ATD asus_flash_init() invalid flash id 2\n[    1.436678] CAM_INFO: CAM-FLASH: cam_flash_platform_probe: 567 Flash probe succeed\n[    1.436705] CAM_INFO: CAM-FLASH: cam_flash_platform_probe: 471 Flash probe Enter\n[    1.436723] FLASH-ATD asus_flash_init() invalid flash id 3\n[    1.436724] CAM_INFO: CAM-FLASH: cam_flash_platform_probe: 567 Flash probe succeed\n[    1.437087] CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 422 EEPROM Probe Start\n[    1.437099] CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 226 No GPIO found\n[    1.437106] CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 476 EEPROM Probe done\n[    1.437133] CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 422 EEPROM Probe Start\n[    1.437141] CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 226 No GPIO found\n[    1.437145] CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 476 EEPROM Probe done\n[    1.437174] CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 422 EEPROM Probe Start\n[    1.437183] CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 226 No GPIO found\n[    1.437186] CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 476 EEPROM Probe done\n[    1.437214] CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 422 EEPROM Probe Start\n[    1.437223] CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 226 No GPIO found\n[    1.437226] CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 476 EEPROM Probe done\n[    1.442494] CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 170 Camera JPEG probe complete\n[    1.443135] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1019 AXI client=[22][fd][0] comp[7200000], comp_ab[7200000], uncomp[7200000]\n[    1.446404] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1019 AXI client=[23][lrmecpas][0] comp[7200000], comp_ab[7200000], uncomp[7200000]\n[    1.447144] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1019 AXI client=[16][cam-cdm-intf][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    1.452535] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    1.456569] FG: fg_gen4_probe: battery SOC:95 voltage: 4211415uV temp: 230 id: 51000 ohms\n[    1.461226] of_batterydata_get_best_profile: 3742266_asus_c11p1806_4850mah_averaged_masterslave_dec13th2018 found\n[    1.461233] FG: fg_gen4_get_batt_profile: battery fastchg current unavailable, rc:-22\n[    1.461415] FG: fg_psy_get_property: unsupported property 4\n[    1.461573] FG: is_profile_load_required: is_profile_load_required PROFILE_INTEGRITY_WORD = 9\n[    1.462532] Couldn't parse device tree rc=-517\n[    1.475586] FG: profile_load_work: profile_load_work profile loaded successfully\n[    1.477749] device-mapper: uevent: version 1.0.3\n[    1.478073] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com\n[    1.479812] bt_dt_parse_vreg_info: qca,bt-vdd-vl: is not provided in device tree\n[    1.479816] bt_dt_parse_vreg_info: qca,bt-vdd-vm: is not provided in device tree\n[    1.479820] bt_dt_parse_vreg_info: qca,bt-vdd-5c: is not provided in device tree\n[    1.479823] bt_dt_parse_vreg_info: qca,bt-vdd-5a: is not provided in device tree\n[    1.479826] bt_dt_parse_vreg_info: qca,bt-vdd-vh: is not provided in device tree\n[    1.479829] bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    1.479832] bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    1.479846] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    1.479851] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in device tree\n[    1.479854] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.479856] bt_power_populate_dt_pinfo: clock not provided in device tree\n[    1.480281] sdhci: Secure Digital Host Controller Interface driver\n[    1.480283] sdhci: Copyright(c) Pierre Ossman\n[    1.480286] sdhci-pltfm: SDHCI platform and OF driver helper\n[    1.483043] usbcore: registered new interface driver usbhid\n[    1.483045] usbhid: USB HID core driver\n[    1.483177] ashmem: initialized\n[    1.483248] wlan_hdd_state wlan major(500) initialized\n[    1.484753] sdhci_msm 8804000.sdhci: sdhci_msm_probe: ICE device is not enabled\n[    1.485031] sdhci_msm 8804000.sdhci: Failed to get dll hsr settings from dt\n[    1.485336] register_client_adhoc:find path.src 81 dest 512\n[    1.485896] register_client_adhoc:find path.src 1 dest 608\n[    1.486134] register_client_adhoc:Client handle 46 sdhc2\n[    1.498007] mmc0: SDHCI controller on 8804000.sdhci [8804000.sdhci] using 64-bit ADMA in legacy mode\n[    1.529564] bimc-bwmon 90b6400.qcom,cpu-cpu-llcc-bwmon: BW HWmon governor registered.\n[    1.529617] bimc-bwmon 90cd000.qcom,cpu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    1.529671] bimc-bwmon 9960300.qcom,npu-npu-ddr-bwmon: BW HWmon governor registered.\n[    1.530325] arm-memlat-mon soc:qcom,cpu0-cpu-l3-latmon: Memory Latency governor registered.\n[    1.530370] arm-memlat-mon soc:qcom,cpu4-cpu-l3-latmon: Memory Latency governor registered.\n[    1.530410] arm-memlat-mon soc:qcom,cpu7-cpu-l3-latmon: Memory Latency governor registered.\n[    1.530459] arm-memlat-mon soc:qcom,cpu0-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.530500] arm-memlat-mon soc:qcom,cpu4-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.530541] arm-memlat-mon soc:qcom,cpu0-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.530587] arm-memlat-mon soc:qcom,cpu4-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.530628] arm-memlat-mon soc:qcom,cpu4-computemon: Compute governor registered.\n[    1.532238] register_client_adhoc:find path.src 1 dest 770\n[    1.532330] register_client_adhoc:Client handle 47 soc:qcom,cpu-cpu-llcc-bw\n[    1.536584] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[2, 2], pwr[FAST MODE, FAST MODE], rate = 2\n[    1.536612] register_client_adhoc:find path.src 129 dest 512\n[    1.536692] register_client_adhoc:Client handle 48 soc:qcom,cpu-llcc-ddr-bw\n[    1.537367] scsi 0:0:0:49488: Well-known LUN    SAMSUNG  KLUEG8U1EA-B0C1  0800 PQ: 0 ANSI: 6\n[    1.537815] register_client_adhoc:find path.src 154 dest 512\n[    1.538018] register_client_adhoc:Client handle 49 soc:qcom,npu-npu-ddr-bw\n[    1.538772] scsi 0:0:0:49456: Well-known LUN    SAMSUNG  KLUEG8U1EA-B0C1  0800 PQ: 0 ANSI: 6\n[    1.539005] register_client_adhoc:find path.src 1 dest 770\n[    1.539200] register_client_adhoc:Client handle 51 soc:qcom,cpu0-cpu-llcc-lat\n[    1.539573] register_client_adhoc:find path.src 1 dest 770\n[    1.539637] register_client_adhoc:Client handle 50 soc:qcom,cpu4-cpu-llcc-lat\n[    1.540526] register_client_adhoc:find path.src 129 dest 512\n[    1.540595] register_client_adhoc:Client handle 52 soc:qcom,cpu0-llcc-ddr-lat\n[    1.540715] scsi 0:0:0:49476: Well-known LUN    SAMSUNG  KLUEG8U1EA-B0C1  0800 PQ: 0 ANSI: 6\n[    1.542529] register_client_adhoc:find path.src 129 dest 512\n[    1.542594] register_client_adhoc:Client handle 53 soc:qcom,cpu4-llcc-ddr-lat\n[    1.544835] scsi 0:0:0:0: Direct-Access     SAMSUNG  KLUEG8U1EA-B0C1  0800 PQ: 0 ANSI: 6\n[    1.545135] register_client_adhoc:find path.src 129 dest 512\n[    1.545199] register_client_adhoc:Client handle 54 soc:qcom,cpu4-cpu-ddr-latfloor\n[    1.545416] register_client_adhoc:find path.src 1 dest 627\n[    1.545831] scsi 0:0:0:1: Direct-Access     SAMSUNG  KLUEG8U1EA-B0C1  0800 PQ: 0 ANSI: 6\n[    1.546145] scsi 0:0:0:2: Direct-Access     SAMSUNG  KLUEG8U1EA-B0C1  0800 PQ: 0 ANSI: 6\n[    1.546451] scsi 0:0:0:3: Direct-Access     SAMSUNG  KLUEG8U1EA-B0C1  0800 PQ: 0 ANSI: 6\n[    1.546582] register_client_adhoc:Client handle 55 soc:qcom,snoc_cnoc_keepalive\n[    1.546768] scsi 0:0:0:4: Direct-Access     SAMSUNG  KLUEG8U1EA-B0C1  0800 PQ: 0 ANSI: 6\n[    1.547130] scsi 0:0:0:5: Direct-Access     SAMSUNG  KLUEG8U1EA-B0C1  0800 PQ: 0 ANSI: 6\n[    1.548982] sd 0:0:0:0: [sda] Write Protect is off\n[    1.548987] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.549016] sd 0:0:0:1: [sdb] Write Protect is off\n[    1.549019] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.549401] sd 0:0:0:1: [sdb] Optimal transfer size 8192 bytes\n[    1.549546] sd 0:0:0:0: [sda] Optimal transfer size 8192 bytes\n[    1.550415] sd 0:0:0:2: [sdc] Write Protect is off\n[    1.550419] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.550481] register_client_adhoc:find path.src 154 dest 10070\n[    1.550651] register_client_adhoc:Client handle 56 soc:qcom,cdsp_keepalive\n[    1.551231] register_client_adhoc:find path.src 26 dest 512\n[    1.551372] register_client_adhoc:Client handle 57 soc:qcom,gpubw\n[    1.552136] sd 0:0:0:2: [sdc] Optimal transfer size 8192 bytes\n[    1.552731]  sdb: sdb1 sdb2\n[    1.553389]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20\n[    1.555564]  sdc: sdc1 sdc2\n[    1.556448] sd 0:0:0:3: [sdd] Write Protect is off\n[    1.556465] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.556658] sd 0:0:0:3: [sdd] Optimal transfer size 8192 bytes\n[    1.557330] sd 0:0:0:4: [sde] Write Protect is off\n[    1.557347] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    1.557384] sd 0:0:0:5: [sdf] Write Protect is off\n[    1.557401] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    1.557735] sd 0:0:0:5: [sdf] Optimal transfer size 8192 bytes\n[    1.557880] sd 0:0:0:4: [sde] Optimal transfer size 8192 bytes\n[    1.561004]  sdd: sdd1 sdd2 sdd3\n[    1.561758] qcom-llcc-pmu 90cc000.llcc-pmu: Registered llcc_pmu, type: 7\n[    1.563904]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6\n[    1.564251]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51 sde52 sde53 sde54 sde55 sde56 sde57\n[    1.569386] [ASH_HW][ALSPS_FRGB]vcc_psensor regulator setting init\n[    1.569611] [ASH_HW][ALSPS_FRGB]vcnl36863_ALSPS_FRGB_hw_check_ID Success(ID_REG : 0x0063). \n[    1.569928] [ASH_HW][ALSPS_FRGB]Proximity set CS standby bit (CS_CONF1 : 0x3 -> 0x3)\n[    1.570283] [ASH_HW][ALSPS_FRGB]Proximity set CS start bit (CS_CONF1 : 0x3 -> 0x83)\n[    1.570600] [ASH_HW][ALSPS_FRGB]Disable Proximity interrupt befrore IST create (PS_CONF1: 0x1 -> 0x1)\n[    1.570915] [ASH_HW][ALSPS_FRGB]Proximity set PS start (PS_CONF2 : 0x9c -> 0x9c)\n[    1.571231] [ASH_HW][ALSPS_FRGB]Proximity set Persistence (PS_CONF3 : 0x8 -> 0x8)\n[    1.571546] [ASH_HW][ALSPS_FRGB]Proximity set LED Current (PS_CONF4 : 0x2 -> 0x2)\n[    1.571861] [ASH_HW][ALSPS_FRGB]Proximity set LED Duty Ratio (PS_CONF1 : 0x1 -> 0x1)\n[    1.572176] [ASH_HW][ALSPS_FRGB]Proximity set Persistence (PS_CONF1 : 0x1 -> 0x1)\n[    1.573633] [ASH_HW][ALSPS_FRGB]Proximity set Integration (PS_CONF2 : 0x9c -> 0x9c)\n[    1.573950] [ASH_HW][ALSPS_FRGB]Proximity set PS Multi-Pulse setting (PS_CONF2 : 0x9c -> 0x9c)\n[    1.574266] [ASH_HW][ALSPS_FRGB]Proximity set PS high gain mode (PS_CONF2 : 0x9c -> 0x9c)\n[    1.574581] [ASH_HW][ALSPS_FRGB]Light Sensor set Persistence (CS_CONF2 : 0x2 -> 0x2)\n[    1.574901] [ASH_HW][ALSPS_FRGB]Light Sensor set Persistence (CS_CONF2 : 0x2 -> 0x2)\n[    1.575218] [ASH_HW][ALSPS_FRGB]Light Sensor set Integration (CS_CONF1 : 0x3 -> 0x3)\n[    1.575522] input: ASUS Proximitysensor as /devices/virtual/input/input7\n[    1.575658] input: ASUS Lightsensor as /devices/virtual/input/input8\n[    1.576280] Randy MCU probe\n[    1.576287] create(driver/motor_power) done\n[    1.576290] create(driver/motor_manual) done\n[    1.576294] create(driver/motor_auto) done\n[    1.576296] create(driver/motor_stop) done\n[    1.576299] create(driver/motor_atd_status) done\n[    1.576301] create(driver/motor_probe_status) done\n[    1.576304] create(driver/motor_param) done\n[    1.576311] randy mcu power init, set requlator\n[    1.577657] usbcore: registered new interface driver snd-usb-audio\n[    1.577937] iommu: Adding device soc:usb_audio_qmi_dev to group 33\n[    1.579879] rmnet_perf_init(): initializing rmnet_perf\n[    1.579883] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = lo\n[    1.579886] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = dummy0\n[    1.579889] rmnet_shs_module_init(): Starting rmnet SHS module\n[    1.581729] input: audiowizard as /devices/virtual/input/input9\n[    1.581817] input: audiowizard_channel as /devices/virtual/input/input10\n[    1.585110] apr_probe: Unable to create ipc log context\n[    1.586908] tfa98xx_i2c_init(): TFA98XX driver version v0.0.0-0-g00000-changeme\n[    1.586954] tfa98xx_i2c_probe(): addr=0x34\n[    1.589440] tfa98xx_i2c_probe(): TFA9874 detected\n[    1.589467] tfa98xx 1-0034: Skipping IRQ registration\n[    1.589499] tfa98xx 1-0034: tfa98xx try to registered misc_register(ASUS_rpc_35)\n[    1.589574] tfa98xx_i2c_probe(): tfa98xx_i2c_probe Probe completed successfully!\n[    1.589616] tfa98xx_i2c_probe(): addr=0x35\n[    1.591949] tfa98xx_i2c_probe(): TFA9874 detected\n[    1.592040] tfa98xx 1-0035: Skipping IRQ registration\n[    1.592132] mmc0: new ultra high speed SDR104 SDXC card at address 0001\n[    1.592350] tfa98xx 1-0035: tfa98xx try to registered misc_register(ASUS_rpc_34)\n[    1.592392] tfa98xx_i2c_probe(): tfa98xx_i2c_probe Probe completed successfully!\n[    1.595820] msm-dai-q6-hdmi soc:qcom,msm-dai-q6-hdmi_ms: invalid device ID 24578\n[    1.596283] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: msm_auxpcm_dev_probe: invalid DT intf name senary\n[    1.608028] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: group id not supported 0x9150\n[    1.608034] msm-dai-tdm: probe of soc:qcom,msm-dai-tdm-sen-rx failed with error -22\n[    1.608052] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: group id not supported 0x9151\n[    1.608056] msm-dai-tdm: probe of soc:qcom,msm-dai-tdm-sen-tx failed with error -22\n[    1.610040] mmcblk0: mmc0:0001 GD4QT 119 GiB \n[    1.614074]  mmcblk0: p1\n[    1.619301] GACT probability NOT on\n[    1.619310] Mirror/redirect action on\n[    1.619319] u32 classifier\n[    1.619321]     Actions configured\n[    1.619328] Netfilter messages via NETLINK v0.30.\n[    1.619474] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)\n[    1.619536] ctnetlink v0.93: registering with nfnetlink.\n[    1.620205] xt_time: kernel timezone is -0000\n[    1.620235] wireguard: WireGuard 1.0.20201112 loaded. See www.wireguard.com for information.\n[    1.620237] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    1.620314] gre: GRE over IPv4 demultiplexor driver\n[    1.620316] IPv4 over IPsec tunneling driver\n[    1.620449] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip_vti0\n[    1.620578] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    1.620822] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    1.620930] Initializing XFRM netlink socket\n[    1.620943] IPsec XFRM device driver\n[    1.621092] NET: Registered protocol family 10\n[    1.622590] Segment Routing with IPv6\n[    1.622628] mip6: Mobile IPv6\n[    1.622637] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    1.622935] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6_vti0\n[    1.623032] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    1.623132] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = sit0\n[    1.623326] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6tnl0\n[    1.623411] NET: Registered protocol family 17\n[    1.623421] NET: Registered protocol family 15\n[    1.623434] Ebtables v2.0 registered\n[    1.623461] l2tp_core: L2TP core driver, V2.0\n[    1.623467] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    1.623468] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    1.623475] l2tp_netlink: L2TP netlink interface\n[    1.623490] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    1.623492] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    1.623546] sctp: Hash tables configured (bind 256/256)\n[    1.624207] cam_dvdd_w_f_1p2: supplied by pm8150_s4\n[    1.625976] register_client_adhoc:find path.src 1 dest 590\n[    1.626251] register_client_adhoc:Client handle 58 mdss_reg\n[    1.626279] register_client_adhoc:find path.src 22 dest 512\n[    1.626504] register_client_adhoc:find path.src 23 dest 512\n[    1.626704] register_client_adhoc:Client handle 59 mdss_sde\n[    1.626749] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops 0xffffff887df32710)\n[    1.626754] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops 0xffffff887df35ec0)\n[    1.627041] msm-dsi-display:[dsi_display_bind] Successfully bind display panel 'dsi_boe_2k_vid_display'\n[    1.627198] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-primary (ops 0xffffff887df339c0)\n[    1.627203] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-secondary (ops 0xffffff887df339c0)\n[    1.627223] [drm] mapped mdp address space @ffffff801bd00000\n[    1.627230] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: vbif_nrt_phys\n[    1.627234] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: sid_phys\n[    1.627255] [drm:_sde_kms_get_splash_data:3311] splash mem num_regions:1\n[    1.627264] [drm:_sde_kms_get_splash_data:3346] splash mem for disp:1 add:9c000000 size:2400000\n[    1.627637] [drm:sde_kms_hw_init:3492] sde hardware revision:0x50000001\n[    1.628702] [drm] Created domain mdp_ns [20000,fffe0000] secure=0\n[    1.630109] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 34\n[    1.630126] [drm] probing device qcom,smmu_sde_sec\n[    1.630131] [drm] Created domain mdp_s [20000,fffe0000] secure=1\n[    1.635201] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    1.635204] [drm] No driver support for vblank timestamp query.\n[    1.636101] [drm] Initialized msm_drm 1.2.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    1.636157] msm-dsi-panel:[dsi_panel_parse_topology:2967] default topology: lm: 1 comp_enc:0 intf: 1\n[    1.636209] msm-dsi-panel:[dsi_panel_parse_partial_update_caps:3057] partial update disabled as the property is not set\n[    1.636318] dsi-ctrl:[_dsi_ctrl_setup_isr] [DSI_0] IRQ 578 registered\n[    1.636831] msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    1.638065] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.638266] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.638269] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.640324] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    1.640334] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    1.640336] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    1.640339] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    1.640341] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    1.640344] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    1.640346] sps:BAM 0x000000000a704000 is registered.\n[    1.640637] msm-dwc3 a600000.ssusb: unable to get ssphy device\n[    1.643257] dwc3 a800000.dwc3: changing max_speed on rev 00000000\n[    1.643448] dwc3 a800000.dwc3: Error getting ipc_log_ctxt\n[    1.643451] dwc3 a800000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.644398] register_client_adhoc:find path.src 101 dest 512\n[    1.644778] register_client_adhoc:find path.src 101 dest 676\n[    1.644972] register_client_adhoc:find path.src 1 dest 751\n[    1.645194] register_client_adhoc:Client handle 60 usb1\n[    1.646094] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.646424] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-qos-lut : doesn't exist in device tree\n[    1.646428] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-danger-lut : doesn't exist in device tree\n[    1.646431] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-safe-lut : doesn't exist in device tree\n[    1.646454] register_client_adhoc:find path.src 1 dest 590\n[    1.646677] register_client_adhoc:Client handle 61 sde_reg\n[    1.646825] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 35\n[    1.646847] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    1.647006] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 36\n[    1.647025] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    1.647095] register_client_adhoc:find path.src 25 dest 512\n[    1.647313] register_client_adhoc:Client handle 62 mdss_rotator\n[    1.647326] register_client_adhoc:find path.src 1 dest 590\n[    1.647527] register_client_adhoc:Client handle 63 mdss_rot_reg\n[    1.647997] No change in context(0==0), skip\n[    1.648795] sde_rotator_evtlog_create_debugfs: evtlog_status: enable:0, panic:1, dump:2\n[    1.649312] sde_rotator ae00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    1.651156] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    1.651332] [BAT][CHG][ERR] asus_smblib_relax: ASUS set relax fail, asus_chg_ws not initial\n[    1.655020] of_batterydata_get_best_profile: alium_860_89032_0000_3600mah_sept24th2018 found\n[    1.659947] SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    1.659961] QPNP SMB5 probed successfully\n[    1.663741] spmi-temp-alarm c440000.qcom,spmi:qcom,pm8150b@2:qcom,temp-alarm@2400: failed to register sensor\n[    1.676919] msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    1.677959] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.678156] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.678160] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.680149] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    1.680159] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    1.680162] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    1.680164] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    1.680167] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    1.680169] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    1.680171] sps:BAM 0x000000000a704000 is registered.\n[    1.680452] msm-dwc3 a600000.ssusb: unable to get ssphy device\n[    1.682883] usbpd usbpd0: [PD] waive typec mode:0 present:0 orientation:0\n[    1.683344] msm-usb-ssphy-qmp 88e8000.ssphy: No separate ID extcon device\n[    1.684192] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.684391] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.684394] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.686402] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    1.686410] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    1.686412] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    1.686415] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    1.686417] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    1.686419] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    1.686421] sps:BAM 0x000000000a704000 is registered.\n[    1.686618] register_client_adhoc:find path.src 61 dest 512\n[    1.686948] register_client_adhoc:find path.src 61 dest 676\n[    1.687142] register_client_adhoc:find path.src 1 dest 583\n[    1.687361] register_client_adhoc:Client handle 64 usb0\n[    1.688353] registered taskstats version 1\n[    1.688355] Loading compiled-in X.509 certificates\n[    1.701011] msm-dwc3 a800000.ssusb: DWC3 exited from low power mode\n[    1.701434] msm-dwc3 a800000.ssusb: DWC3 in low power mode\n[    1.750170] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode\n[    1.751212] msm-dwc3 a600000.ssusb: DWC3 in low power mode\n[    1.797044] spss_utils [spss_init]: spss-utils driver Ver 3.0 18-Feb-2018.\n[    1.797299] spss_utils [spss_probe]: Initialization completed ok, firmware_name [spss2p].\n[    1.801295] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 37\n[    1.801856] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 38\n[    1.802337] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 39\n[    1.802816] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 40\n[    1.803274] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7 to group 41\n[    1.803731] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8 to group 42\n[    1.804183] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 43\n[    1.804635] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 44\n[    1.805089] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 45\n[    1.806139] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 46\n[    1.806590] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 47\n[    1.807047] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 48\n[    1.807498] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13 to group 49\n[    1.807919] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14 to group 50\n[    1.808353] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb15 to group 51\n[    1.810445] ngd_msm_ctrl 171c0000.slim: error creating ipc_logging context\n[    1.810449] ngd_msm_ctrl 171c0000.slim: error creating ipc_error_logging context\n[    1.810661] iommu: Adding device 171c0000.slim:qcom,iommu_slim_ctrl_cb to group 52\n[    1.813110] ngd_msm_ctrl 17240000.slim: error creating ipc_logging context\n[    1.813113] ngd_msm_ctrl 17240000.slim: error creating ipc_error_logging context\n[    1.813306] iommu: Adding device 17240000.slim:qcom,iommu_slim_ctrl_cb to group 53\n[    1.816152] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input11\n[    1.816723] stmvl53l1_init_cci: Enter\n[    1.817207] stmvl53l1_platform_probe: Enter\n[    1.817284] stmvl53l1_request_pwren: pwren gpio disable\n[    1.817368] stmvl53l1_platform_probe: Initialization of pinctrl succeed\n[    1.818137] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1019 AXI client=[4][cci][0] comp[1024], comp_ab[0], uncomp[1024]\n[    1.818804] CAM_INFO: CAM-CCI: cam_cci_init: 190 cci init done.\n[    1.820326] stmvl53l1_reset_release_cci: stmvl53l3 probe status, 0 means successful rc = 0\n[    1.820391] input: STM VL53L1 proximity sensor as /devices/virtual/input/input12\n[    1.840990] stmvl53l1_setup: device name VL53L3 cut1.1\n               type VL53L3\n[    1.841171] stmvl53l1_start_intr_cci: irq 231 now handled \n[    1.841174] stmvl53l1_setup: Misc device registration name:stmvl53l1_ranging\n[    1.841236] create_proc_file st_laser_proc_file sucessed!\n[    1.841691] CAM_INFO: CAM-CCI: cam_cci_soc_release: 444 cci release, rw_cnt=(0,0,0,0),(0,103,26,0).\n[    1.841695] stmvl53l1_platform_probe: End = 0\n[    1.860105] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1019 AXI client=[4][cci][0] comp[1024], comp_ab[18446743524222580832], uncomp[1024]\n[    1.860638] CAM_INFO: CAM-CCI: cam_cci_init: 190 cci init done.\n[    1.860703] input: Invensense ICM206xx Accel_Gyro as /devices/virtual/input/input13\n[    1.860899] ICM206XX, WHOAMI=0x20\n[    1.969372] input: ICM206XX-accel as /devices/platform/soc/ac4a000.qcom,cci/ac4a000.qcom,cci:qcom,icm206xx@0/input/input14\n[    1.969517] input: ICM206XX-gyro as /devices/platform/soc/ac4a000.qcom,cci/ac4a000.qcom,cci:qcom,icm206xx@0/input/input15\n[    1.970156] CAM_INFO: CAM-CCI: cam_cci_soc_release: 444 cci release, rw_cnt=(0,0,0,0),(0,11,5,0).\n[    1.970293] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm8150@0:qcom,pm8150_rtc: setting system clock to 1970-01-20 00:53:13 UTC (1644793)\n[    1.972175] lpm_levels: register_cluster_lpm_stats()\n[    1.972291] lpm_levels: register_cluster_lpm_stats()\n[    1.975780] rmnet_ipa3 started initialization\n[    1.976070] RNDIS_IPA module is loaded.\n[    1.977304] msm_bus_late_init: Remove handoff bw requests\n[    1.978107] hlos1_vote_aggre_noc_mmu_audio_tbu_gdsc: disabling\n[    1.978218] hlos1_vote_aggre_noc_mmu_tbu1_gdsc: disabling\n[    1.978327] hlos1_vote_aggre_noc_mmu_tbu2_gdsc: disabling\n[    1.978436] hlos1_vote_aggre_noc_mmu_pcie_tbu_gdsc: disabling\n[    1.978558] display_panel_avdd_eldo: disabling\n[    1.978563] camera_rear0_vana_ldo: disabling\n[    1.978566] camera_vcm_en_ldo: disabling\n[    1.980129] cam_dvdd_w_f_1p2: disabling\n[    1.980152] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    1.980298] ALSA device list:\n[    1.980300]   No soundcards found.\n[    1.981332] Freeing unused kernel memory: 4096K\n[    3.680871] of_batterydata_get_best_profile: 3742266_asus_c11p1806_4850mah_averaged_masterslave_dec13th2018 found\n[    3.680877] QCOM-STEPCHG: get_step_chg_jeita_setting_from_profile: [BAT] LOAD KIRIN BATTERY PROFILE in get_step_chg_jeita_setting_from_profile\n[    3.680889] QCOM-STEPCHG: get_step_chg_jeita_setting_from_profile: max-fastchg-current-ma reading failed, rc=-22\n[  305.120306] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120334] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120673] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120692] audio_notifer_reg_service: service SSR_ADSP is in use\n[  305.120724] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120732] ADSPRPC: Audio PD restart notifier locator down\n"
  },
  {
    "path": "results/sm8150/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  4:      15568   PDC-GIC  19 Level     arch_timer\n  6:     288305   PDC-GIC  38 Level     arch_mem_timer\n  8:          0   PDC-GIC 115 Edge      msm_drm\n  9:          0   PDC-GIC 509 Edge      csiphy\n 10:          0   PDC-GIC 510 Edge      csiphy\n 11:          0   PDC-GIC 511 Edge      csiphy\n 12:          0   PDC-GIC 480 Edge      csiphy\n 13:        147   PDC-GIC 492 Edge      cci\n 14:          0   PDC-GIC 303 Edge      cci\n 15:          0   PDC-GIC 491 Edge      cpas_camnoc\n 16:          1   PDC-GIC 493 Edge      cpas-cdm\n 17:          0   PDC-GIC 496 Edge      csid\n 18:          2   PDC-GIC 497 Edge      ife\n 19:          0   PDC-GIC 498 Edge      csid\n 20:          2   PDC-GIC 499 Edge      ife\n 21:          0   PDC-GIC 500 Edge      csid-lite\n 22:          2   PDC-GIC 501 Edge      ife-lite\n 23:          0   PDC-GIC 391 Edge      csid-lite\n 24:          2   PDC-GIC 392 Edge      ife-lite\n 25:          0   PDC-GIC 495 Edge      a5\n 26:          0   PDC-GIC 506 Edge      jpeg\n 27:          0   PDC-GIC 507 Edge      jpegdma\n 28:          2   PDC-GIC 494 Edge      fd\n 29:          1   PDC-GIC 508 Edge      lrme\n 35:          0   PDC-GIC  21 Level     arm-pmu\n 37:          0   PDC-GIC 524 Level     eud_irq\n 38:          0   PDC-GIC 298 Edge      modem\n 39:          0   PDC-GIC 194 Edge      adsp\n 40:          0   PDC-GIC 526 Edge      slpi\n 41:          0   PDC-GIC 384 Level     spss\n 42:          0   PDC-GIC  32 Edge      apps_wdog_bark\n 44:          0   PDC-GIC 610 Edge      cdsp\n 49:        357   PDC-GIC 297 Edge      1d84000.ufshc\n 50:         93   PDC-GIC 236 Edge      mmc0\n 51:          3   PDC-GIC 254 Edge      8804000.sdhci\n 52:        896   PDC-GIC  37 Level     apps_rsc\n 53:          0   PDC-GIC 161 Level     display_rsc\n 54:          0   PDC-GIC 380 Level     qsee_irq\n 55:          0   PDC-GIC 381 Level     qsee_irq\n 56:         11   PDC-GIC 421 Edge      qcom,qmp-aop\n 57:          0   PDC-GIC 401 Edge      qcom,qmp-npu-low\n 58:          0   PDC-GIC 402 Edge      qcom,qmp-npu-high\n 59:          0   PDC-GIC 304 Level     sps\n 60:          0   PDC-GIC 538 Level     tsens-upper-lower\n 61:          0   PDC-GIC 540 Level     tsens-critical\n 62:          0   PDC-GIC 539 Level     tsens-upper-lower\n 63:          0   PDC-GIC 541 Level     tsens-critical\n 64:          0   PDC-GIC 195 Level     ngd_slim_irq\n 66:          0   PDC-GIC 323 Level     ngd_slim_irq\n 82:         10   PDC-GIC 312 Level     gpi_dmaa00000_gpii1\n131:          0  msmgpio-dc   8 Edge      TE_GPIO\n151:          0  msmgpio-dc  37 Edge      asustek_lid2_isr\n163:          2  msmgpio-dc  47 Level     nq-nci\n207:          0  msmgpio-dc  91 Edge      asustek_googlekey_isr\n213:          0  msmgpio-dc  96 Edge      8804000.sdhci cd\n231:          2  msmgpio-dc 117 Edge      vl53l1_interrupt\n235:          0  msmgpio-dc 119 Level     ALSPS_SENSOR_INT\n239:          0  msmgpio-dc 121 Edge      asustek_lid_isr\n241:          0  msmgpio-dc 122 Edge      fts_ts\n353:          0   PDC-GIC 483 Edge      smp2p\n354:          0   PDC-GIC 190 Edge      smp2p\n355:          0   PDC-GIC 204 Edge      smp2p\n356:          0   PDC-GIC 608 Edge      smp2p\n358:          0   PDC-GIC  97 Level     arm-smmu global fault\n361:          0   PDC-GIC 131 Level     arm-smmu-context-fault\n362:          0   PDC-GIC 132 Level     arm-smmu-context-fault\n363:          0   PDC-GIC 133 Level     arm-smmu-context-fault\n364:          0   PDC-GIC 134 Level     arm-smmu-context-fault\n365:          0   PDC-GIC 135 Level     arm-smmu-context-fault\n366:          0   PDC-GIC 136 Level     arm-smmu-context-fault\n367:          0   PDC-GIC 137 Level     arm-smmu-context-fault\n368:          0   PDC-GIC 138 Level     arm-smmu-context-fault\n369:          0   PDC-GIC 139 Level     arm-smmu-context-fault\n370:          0   PDC-GIC 140 Level     arm-smmu-context-fault\n371:          0   PDC-GIC 141 Level     arm-smmu-context-fault\n372:          0   PDC-GIC 142 Level     arm-smmu-context-fault\n373:          0   PDC-GIC 143 Level     arm-smmu-context-fault\n374:          0   PDC-GIC 144 Level     arm-smmu-context-fault\n375:          0   PDC-GIC 145 Level     arm-smmu-context-fault\n376:          0   PDC-GIC 146 Level     arm-smmu-context-fault\n377:          0   PDC-GIC 147 Level     arm-smmu-context-fault\n378:          0   PDC-GIC 148 Level     arm-smmu-context-fault\n379:          0   PDC-GIC 149 Level     arm-smmu-context-fault\n380:          0   PDC-GIC 150 Level     arm-smmu-context-fault\n381:          0   PDC-GIC 213 Level     arm-smmu-context-fault\n382:          0   PDC-GIC 214 Level     arm-smmu-context-fault\n383:          0   PDC-GIC 215 Level     arm-smmu-context-fault\n384:          0   PDC-GIC 216 Level     arm-smmu-context-fault\n385:          0   PDC-GIC 217 Level     arm-smmu-context-fault\n386:          0   PDC-GIC 218 Level     arm-smmu-context-fault\n387:          0   PDC-GIC 219 Level     arm-smmu-context-fault\n388:          0   PDC-GIC 220 Level     arm-smmu-context-fault\n389:          0   PDC-GIC 221 Level     arm-smmu-context-fault\n390:          0   PDC-GIC 222 Level     arm-smmu-context-fault\n391:          0   PDC-GIC 223 Level     arm-smmu-context-fault\n392:          0   PDC-GIC 224 Level     arm-smmu-context-fault\n393:          0   PDC-GIC 347 Level     arm-smmu-context-fault\n394:          0   PDC-GIC 348 Level     arm-smmu-context-fault\n395:          0   PDC-GIC 349 Level     arm-smmu-context-fault\n396:          0   PDC-GIC 350 Level     arm-smmu-context-fault\n397:          0   PDC-GIC 351 Level     arm-smmu-context-fault\n398:          0   PDC-GIC 352 Level     arm-smmu-context-fault\n399:          0   PDC-GIC 353 Level     arm-smmu-context-fault\n400:          0   PDC-GIC 354 Level     arm-smmu-context-fault\n401:          0   PDC-GIC 355 Level     arm-smmu-context-fault\n402:          0   PDC-GIC 356 Level     arm-smmu-context-fault\n439:         97   PDC-GIC 634 Level     i2c_geni\n440:          0   PDC-GIC 637 Level     i2c_geni\n441:          0   PDC-GIC 636 Level     spi_geni\n444:          6   PDC-GIC 385 Level     i2c_geni\n445:          0   PDC-GIC 386 Level     i2c_geni\n446:         24   PDC-GIC 405 Level     i2c_geni\n447:          0   PDC-GIC 396 Edge      error_irq\n448:          0   PDC-GIC 398 Edge      wdg_bite_irq\n449:          0   PDC-GIC 400 Level     ipc_irq\n450:          0   PDC-GIC 206 Level     msm_vidc\n451:          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n452:          1   PDC-GIC 162 Edge      pwr_event_irq\n453:          0   PDC-GIC 518 Level     ss_phy_irq\n454:          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n455:          0   PDC-GIC 523 Edge      dp_hs_phy_irq\n456:          0   PDC-GIC 167 Edge      pwr_event_irq\n457:          0   PDC-GIC 522 Edge      dm_hs_phy_irq\n458:          0   PDC-GIC 332 Level     kgsl-3d0\n459:          0   PDC-GIC 336 Level     HFI\n460:          0   PDC-GIC 337 Level     GMU\n461:          0   PDC-GIC 706 Level     arm-smmu global fault\n462:          0   PDC-GIC 713 Level     arm-smmu-context-fault\n463:          0   PDC-GIC 714 Level     arm-smmu-context-fault\n464:          0   PDC-GIC 715 Level     arm-smmu-context-fault\n470:          0   PDC-GIC  64 Level     limits_sensor-00\n471:          0   PDC-GIC  65 Level     limits_sensor-01\n472:          0     smp2p   2 Edge      modem\n473:          0     smp2p   0 Edge      modem\n474:          0     smp2p   1 Edge      error_ready_interrupt\n475:          0     smp2p   3 Edge      modem\n476:          0     smp2p   7 Edge      modem\n477:          0     smp2p   2 Edge      adsp\n478:          0     smp2p   0 Edge      adsp\n479:          0     smp2p   1 Edge      error_ready_interrupt\n480:          0     smp2p   3 Edge      adsp\n481:          0     smp2p   2 Edge      slpi\n482:          0     smp2p   0 Edge      slpi\n483:          0     smp2p   1 Edge      error_ready_interrupt\n484:          0     smp2p   3 Edge      slpi\n485:          0     smp2p   2 Edge      cdsp\n486:          0     smp2p   0 Edge      cdsp\n487:          0     smp2p   1 Edge      error_ready_interrupt\n488:          0     smp2p   3 Edge      cdsp\n489:          0      qsee  32 Level     qsee_ipc_irq_spss\n490:          0     smp2p   0 Edge      smp2p_sleepstate\n491:          0  pmic_arb 37748986 Edge      qcom,temp-alarm\n492:          0  pmic_arb 8388857 Edge      pon_kpdpwr_status\n493:          0  pmic_arb 8454393 Edge      pon_resin_status\n497:          0  pmic_arb 206569734 Edge      volume_up\n499:          0  pmic_arb 210764040 Edge      vendor:extcon_usb1\n500:       5551  pmic_arb 51380475 Edge      pm-adc5\n501:          0  pmic_arb 55574780 Edge      thr-int-en\n503:          0  pmic_arb 721486118 Edge      ptrain-done\n513:          5  pmic_arb 588251416 Edge      pm-adc5\n514:          0  pmic_arb 592445721 Edge      thr-int-en\n515:          0  pmic_arb 560988433 Edge      sig-tx\n516:          0  pmic_arb 561053969 Edge      sig-rx\n517:          0  pmic_arb 561119505 Edge      msg-tx\n518:          0  pmic_arb 561185041 Edge      msg-rx\n519:          0  pmic_arb 561250577 Edge      msg-tx-failed\n520:          0  pmic_arb 561316113 Edge      msg-tx-discarded\n521:          0  pmic_arb 561381649 Edge      msg-rx-discarded\n523:          0  pmic_arb 567279894 Edge      bcl-lvl0\n524:          0  pmic_arb 567345430 Edge      bcl-lvl1\n525:          0  pmic_arb 567410966 Edge      bcl-lvl2\n526:          0  pmic_arb 1006633267 Edge      hap_sc_irq\n527:          0  pmic_arb 1006698803 Edge      hap_play_irq\n528:          0  pmic_arb 1111490870 Edge      qcom,temp-alarm\n540:          4  pmic_arb 1125122359 Edge      pm-adc5\n541:          0  pmic_arb 1137705273 Edge      bcl-lvl0\n542:          0  pmic_arb 1137770809 Edge      bcl-lvl1\n543:          0  pmic_arb 1137836345 Edge      bcl-lvl2\n544:          0  pmic_arb 1129316664 Edge      thr-int-en\n545:          0  pmic_arb 1589707088 Edge      qpnp_lcdb_sc_irq\n546:          0  pmic_arb 1563427149 Edge      qpnp_flash_led_fault_irq\n547:          0  pmic_arb 1563623757 Edge      qpnp_flash_led_all_ramp_down_done_irq\n548:          0  pmic_arb 1563689293 Edge      qpnp_flash_led_all_ramp_up_done_irq\n549:          0  pmic_arb 1568735566 Edge      wled_ovp_irq\n550:          0  pmic_arb 1568932174 Edge      wled_pre_flash_irq\n551:          0  pmic_arb 1568997710 Edge      wled_flash_irq\n552:          0   PDC-GIC 165 Edge      dwc3\n554:          0   PDC-GIC 170 Edge      dwc3\n555:          0  pmic_arb 101777663 Edge      qpnp_rtc_alarm\n556:          0  pmic_arb 603980059 Edge      soc-update\n557:          0  pmic_arb 604045595 Edge      soc-ready\n558:          0  pmic_arb 604111131 Edge      bsoc-delta\n559:         14  pmic_arb 604176667 Edge      msoc-delta\n560:          0  pmic_arb 604242203 Edge      msoc-low\n561:          0  pmic_arb 604307739 Edge      msoc-empty\n562:          0  pmic_arb 604373275 Edge      msoc-high\n563:          0  pmic_arb 604438811 Edge      msoc-full\n564:          0  pmic_arb 605028636 Edge      vbatt-low\n565:          0  pmic_arb 605094172 Edge      vbatt-pred-delta\n566:          3  pmic_arb 605225244 Edge      esr-delta\n567:          0  pmic_arb 606077213 Edge      batt-missing\n568:          0  pmic_arb 606142749 Edge      batt-id\n569:          4  pmic_arb 606208285 Edge      batt-temp-delta\n570:          0  pmic_arb 606273821 Edge      batt-temp-hot\n571:          0  pmic_arb 606339357 Edge      batt-temp-cold\n572:          0  pmic_arb 607125790 Edge      ima-rdy\n573:          0  pmic_arb 607191326 Edge      ima-xcp\n574:          0  pmic_arb 607256862 Edge      dma-xcp\n575:        272  pmic_arb 607322398 Edge      dma-grant\n576:          0  pmic_arb 607387934 Edge      mem-attn\n577:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n578:          0       sde   4 Edge      dsi_ctrl\n579:          0  pmic_arb 553648394 Edge      chgr-error\n580:          0  pmic_arb 553713930 Edge      chg-state-change\n586:          0  pmic_arb 554696971 Edge      otg-fail\n589:          0  pmic_arb 554959115 Edge      high-duty-cycle\n590:          0  pmic_arb 555024651 Edge      input-current-limiting\n592:          0  pmic_arb 555155723 Edge      switcher-power-ok\n593:          0  pmic_arb 555745548 Edge      bat-temp\n594:          0  pmic_arb 555876620 Edge      bat-ov\n595:          0  pmic_arb 555942156 Edge      bat-low\n596:          0  pmic_arb 556007692 Edge      bat-therm-or-id-missing\n597:          0  pmic_arb 556073228 Edge      bat-terminal-missing\n600:          0  pmic_arb 556794125 Edge      usbin-collapse\n601:          0  pmic_arb 556859661 Edge      usbin-vashdn\n602:          0  pmic_arb 556925197 Edge      usbin-uv\n603:          0  pmic_arb 556990733 Edge      usbin-ov\n604:          0  pmic_arb 557056269 Edge      usbin-plugin\n606:          0  pmic_arb 557187341 Edge      usbin-src-change\n607:          0  pmic_arb 557252877 Edge      usbin-icl-change\n609:          0  pmic_arb 557973774 Edge      dcin-uv\n610:          0  pmic_arb 558039310 Edge      dcin-ov\n611:          0  pmic_arb 558104846 Edge      dcin-plugin\n613:          0  pmic_arb 558235918 Edge      dcin-pon\n614:          0  pmic_arb 558301454 Edge      dcin-en\n615:          0  pmic_arb 558891279 Edge      typec-or-rid-detect-change\n617:          0  pmic_arb 559022351 Edge      typec-cc-state-change\n618:          0  pmic_arb 559087887 Edge      typec-vconn-oc\n620:          0  pmic_arb 559218959 Edge      typec-attach-detach\n621:          0  pmic_arb 559284495 Edge      typec-legacy-cable-detect\n623:          0  pmic_arb 559939856 Edge      wdog-snarl\n624:          0  pmic_arb 560005392 Edge      wdog-bark\n626:          0  pmic_arb 560136464 Edge      aicl-done\n627:          0  pmic_arb 560202000 Edge      smb-en\n628:          0  pmic_arb 560333072 Edge      temp-change\n662:          0   msmgpio 131 Edge      icm\nIPI0:       233       Rescheduling interrupts\nIPI1:        10       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:         0       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8150/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  4:        848          2          2          2          2          2          2          1   PDC-GIC  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   PDC-GIC  38 Level     arch_mem_timer\n  8:          0          0          0          0          0          0          0          0   PDC-GIC 115 Edge      msm_drm\n  9:          0          0          0          0          0          0          0          0   PDC-GIC 509 Edge      csiphy\n 10:          0          0          0          0          0          0          0          0   PDC-GIC 510 Edge      csiphy\n 11:          0          0          0          0          0          0          0          0   PDC-GIC 511 Edge      csiphy\n 12:          0          0          0          0          0          0          0          0   PDC-GIC 480 Edge      csiphy\n 13:        147          0          0          0          0          0          0          0   PDC-GIC 492 Edge      cci\n 14:          0          0          0          0          0          0          0          0   PDC-GIC 303 Edge      cci\n 15:          0          0          0          0          0          0          0          0   PDC-GIC 491 Edge      cpas_camnoc\n 16:          1          0          0          0          0          0          0          0   PDC-GIC 493 Edge      cpas-cdm\n 17:          0          0          0          0          0          0          0          0   PDC-GIC 496 Edge      csid\n 18:          2          0          0          0          0          0          0          0   PDC-GIC 497 Edge      ife\n 19:          0          0          0          0          0          0          0          0   PDC-GIC 498 Edge      csid\n 20:          2          0          0          0          0          0          0          0   PDC-GIC 499 Edge      ife\n 21:          0          0          0          0          0          0          0          0   PDC-GIC 500 Edge      csid-lite\n 22:          2          0          0          0          0          0          0          0   PDC-GIC 501 Edge      ife-lite\n 23:          0          0          0          0          0          0          0          0   PDC-GIC 391 Edge      csid-lite\n 24:          2          0          0          0          0          0          0          0   PDC-GIC 392 Edge      ife-lite\n 25:          0          0          0          0          0          0          0          0   PDC-GIC 495 Edge      a5\n 26:          0          0          0          0          0          0          0          0   PDC-GIC 506 Edge      jpeg\n 27:          0          0          0          0          0          0          0          0   PDC-GIC 507 Edge      jpegdma\n 28:          2          0          0          0          0          0          0          0   PDC-GIC 494 Edge      fd\n 29:          1          0          0          0          0          0          0          0   PDC-GIC 508 Edge      lrme\n 35:          0          0          0          0          0          0          0          0   PDC-GIC  21 Level     arm-pmu\n 37:          0          0          0          0          0          0          0          0   PDC-GIC 524 Level     eud_irq\n 38:          0          0          0          0          0          0          0          0   PDC-GIC 298 Edge      modem\n 39:          0          0          0          0          0          0          0          0   PDC-GIC 194 Edge      adsp\n 40:          0          0          0          0          0          0          0          0   PDC-GIC 526 Edge      slpi\n 41:          0          0          0          0          0          0          0          0   PDC-GIC 384 Level     spss\n 42:          0          0          0          0          0          0          0          0   PDC-GIC  32 Edge      apps_wdog_bark\n 44:          0          0          0          0          0          0          0          0   PDC-GIC 610 Edge      cdsp\n 49:        348          0          0          0          0          0          0          0   PDC-GIC 297 Edge      1d84000.ufshc\n 50:         92          0          0          0          0          0          0          0   PDC-GIC 236 Edge      mmc0\n 51:          2          0          0          0          0          0          0          0   PDC-GIC 254 Edge      8804000.sdhci\n 52:        873          0          0          0          0          0          0          0   PDC-GIC  37 Level     apps_rsc\n 53:          0          0          0          0          0          0          0          0   PDC-GIC 161 Level     display_rsc\n 54:          0          0          0          0          0          0          0          0   PDC-GIC 380 Level     qsee_irq\n 55:          0          0          0          0          0          0          0          0   PDC-GIC 381 Level     qsee_irq\n 56:         11          0          0          0          0          0          0          0   PDC-GIC 421 Edge      qcom,qmp-aop\n 57:          0          0          0          0          0          0          0          0   PDC-GIC 401 Edge      qcom,qmp-npu-low\n 58:          0          0          0          0          0          0          0          0   PDC-GIC 402 Edge      qcom,qmp-npu-high\n 59:          0          0          0          0          0          0          0          0   PDC-GIC 304 Level     sps\n 60:          0          0          0          0          0          0          0          0   PDC-GIC 538 Level     tsens-upper-lower\n 61:          0          0          0          0          0          0          0          0   PDC-GIC 540 Level     tsens-critical\n 62:          0          0          0          0          0          0          0          0   PDC-GIC 539 Level     tsens-upper-lower\n 63:          0          0          0          0          0          0          0          0   PDC-GIC 541 Level     tsens-critical\n 64:          0          0          0          0          0          0          0          0   PDC-GIC 195 Level     ngd_slim_irq\n 66:          0          0          0          0          0          0          0          0   PDC-GIC 323 Level     ngd_slim_irq\n 82:         10          0          0          0          0          0          0          0   PDC-GIC 312 Level     gpi_dmaa00000_gpii1\n131:          0          0          0          0          0          0          0          0  msmgpio-dc   8 Edge      TE_GPIO\n151:          0          0          0          0          0          0          0          0  msmgpio-dc  37 Edge      asustek_lid2_isr\n163:          2          0          0          0          0          0          0          0  msmgpio-dc  47 Level     nq-nci\n207:          0          0          0          0          0          0          0          0  msmgpio-dc  91 Edge      asustek_googlekey_isr\n213:          0          0          0          0          0          0          0          0  msmgpio-dc  96 Edge      8804000.sdhci cd\n231:          2          0          0          0          0          0          0          0  msmgpio-dc 117 Edge      vl53l1_interrupt\n235:          0          0          0          0          0          0          0          0  msmgpio-dc 119 Level     ALSPS_SENSOR_INT\n239:          0          0          0          0          0          0          0          0  msmgpio-dc 121 Edge      asustek_lid_isr\n241:          0          0          0          0          0          0          0          0  msmgpio-dc 122 Edge      fts_ts\n353:          0          0          0          0          0          0          0          0   PDC-GIC 483 Edge      smp2p\n354:          0          0          0          0          0          0          0          0   PDC-GIC 190 Edge      smp2p\n355:          0          0          0          0          0          0          0          0   PDC-GIC 204 Edge      smp2p\n356:          0          0          0          0          0          0          0          0   PDC-GIC 608 Edge      smp2p\n358:          0          0          0          0          0          0          0          0   PDC-GIC  97 Level     arm-smmu global fault\n361:          0          0          0          0          0          0          0          0   PDC-GIC 131 Level     arm-smmu-context-fault\n362:          0          0          0          0          0          0          0          0   PDC-GIC 132 Level     arm-smmu-context-fault\n363:          0          0          0          0          0          0          0          0   PDC-GIC 133 Level     arm-smmu-context-fault\n364:          0          0          0          0          0          0          0          0   PDC-GIC 134 Level     arm-smmu-context-fault\n365:          0          0          0          0          0          0          0          0   PDC-GIC 135 Level     arm-smmu-context-fault\n366:          0          0          0          0          0          0          0          0   PDC-GIC 136 Level     arm-smmu-context-fault\n367:          0          0          0          0          0          0          0          0   PDC-GIC 137 Level     arm-smmu-context-fault\n368:          0          0          0          0          0          0          0          0   PDC-GIC 138 Level     arm-smmu-context-fault\n369:          0          0          0          0          0          0          0          0   PDC-GIC 139 Level     arm-smmu-context-fault\n370:          0          0          0          0          0          0          0          0   PDC-GIC 140 Level     arm-smmu-context-fault\n371:          0          0          0          0          0          0          0          0   PDC-GIC 141 Level     arm-smmu-context-fault\n372:          0          0          0          0          0          0          0          0   PDC-GIC 142 Level     arm-smmu-context-fault\n373:          0          0          0          0          0          0          0          0   PDC-GIC 143 Level     arm-smmu-context-fault\n374:          0          0          0          0          0          0          0          0   PDC-GIC 144 Level     arm-smmu-context-fault\n375:          0          0          0          0          0          0          0          0   PDC-GIC 145 Level     arm-smmu-context-fault\n376:          0          0          0          0          0          0          0          0   PDC-GIC 146 Level     arm-smmu-context-fault\n377:          0          0          0          0          0          0          0          0   PDC-GIC 147 Level     arm-smmu-context-fault\n378:          0          0          0          0          0          0          0          0   PDC-GIC 148 Level     arm-smmu-context-fault\n379:          0          0          0          0          0          0          0          0   PDC-GIC 149 Level     arm-smmu-context-fault\n380:          0          0          0          0          0          0          0          0   PDC-GIC 150 Level     arm-smmu-context-fault\n381:          0          0          0          0          0          0          0          0   PDC-GIC 213 Level     arm-smmu-context-fault\n382:          0          0          0          0          0          0          0          0   PDC-GIC 214 Level     arm-smmu-context-fault\n383:          0          0          0          0          0          0          0          0   PDC-GIC 215 Level     arm-smmu-context-fault\n384:          0          0          0          0          0          0          0          0   PDC-GIC 216 Level     arm-smmu-context-fault\n385:          0          0          0          0          0          0          0          0   PDC-GIC 217 Level     arm-smmu-context-fault\n386:          0          0          0          0          0          0          0          0   PDC-GIC 218 Level     arm-smmu-context-fault\n387:          0          0          0          0          0          0          0          0   PDC-GIC 219 Level     arm-smmu-context-fault\n388:          0          0          0          0          0          0          0          0   PDC-GIC 220 Level     arm-smmu-context-fault\n389:          0          0          0          0          0          0          0          0   PDC-GIC 221 Level     arm-smmu-context-fault\n390:          0          0          0          0          0          0          0          0   PDC-GIC 222 Level     arm-smmu-context-fault\n391:          0          0          0          0          0          0          0          0   PDC-GIC 223 Level     arm-smmu-context-fault\n392:          0          0          0          0          0          0          0          0   PDC-GIC 224 Level     arm-smmu-context-fault\n393:          0          0          0          0          0          0          0          0   PDC-GIC 347 Level     arm-smmu-context-fault\n394:          0          0          0          0          0          0          0          0   PDC-GIC 348 Level     arm-smmu-context-fault\n395:          0          0          0          0          0          0          0          0   PDC-GIC 349 Level     arm-smmu-context-fault\n396:          0          0          0          0          0          0          0          0   PDC-GIC 350 Level     arm-smmu-context-fault\n397:          0          0          0          0          0          0          0          0   PDC-GIC 351 Level     arm-smmu-context-fault\n398:          0          0          0          0          0          0          0          0   PDC-GIC 352 Level     arm-smmu-context-fault\n399:          0          0          0          0          0          0          0          0   PDC-GIC 353 Level     arm-smmu-context-fault\n400:          0          0          0          0          0          0          0          0   PDC-GIC 354 Level     arm-smmu-context-fault\n401:          0          0          0          0          0          0          0          0   PDC-GIC 355 Level     arm-smmu-context-fault\n402:          0          0          0          0          0          0          0          0   PDC-GIC 356 Level     arm-smmu-context-fault\n439:         97          0          0          0          0          0          0          0   PDC-GIC 634 Level     i2c_geni\n440:          0          0          0          0          0          0          0          0   PDC-GIC 637 Level     i2c_geni\n441:          0          0          0          0          0          0          0          0   PDC-GIC 636 Level     spi_geni\n444:          6          0          0          0          0          0          0          0   PDC-GIC 385 Level     i2c_geni\n445:          0          0          0          0          0          0          0          0   PDC-GIC 386 Level     i2c_geni\n446:         24          0          0          0          0          0          0          0   PDC-GIC 405 Level     i2c_geni\n447:          0          0          0          0          0          0          0          0   PDC-GIC 396 Edge      error_irq\n448:          0          0          0          0          0          0          0          0   PDC-GIC 398 Edge      wdg_bite_irq\n449:          0          0          0          0          0          0          0          0   PDC-GIC 400 Level     ipc_irq\n450:          0          0          0          0          0          0          0          0   PDC-GIC 206 Level     msm_vidc\n451:          0          0          0          0          0          0          0          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n452:          1          0          0          0          0          0          0          0   PDC-GIC 162 Edge      pwr_event_irq\n453:          0          0          0          0          0          0          0          0   PDC-GIC 518 Level     ss_phy_irq\n454:          0          0          0          0          0          0          0          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n455:          0          0          0          0          0          0          0          0   PDC-GIC 523 Edge      dp_hs_phy_irq\n456:          0          0          0          0          0          0          0          0   PDC-GIC 167 Edge      pwr_event_irq\n457:          0          0          0          0          0          0          0          0   PDC-GIC 522 Edge      dm_hs_phy_irq\n458:          0          0          0          0          0          0          0          0   PDC-GIC 332 Level     kgsl-3d0\n459:          0          0          0          0          0          0          0          0   PDC-GIC 336 Level     HFI\n460:          0          0          0          0          0          0          0          0   PDC-GIC 337 Level     GMU\n461:          0          0          0          0          0          0          0          0   PDC-GIC 706 Level     arm-smmu global fault\n462:          0          0          0          0          0          0          0          0   PDC-GIC 713 Level     arm-smmu-context-fault\n463:          0          0          0          0          0          0          0          0   PDC-GIC 714 Level     arm-smmu-context-fault\n464:          0          0          0          0          0          0          0          0   PDC-GIC 715 Level     arm-smmu-context-fault\n470:          0          0          0          0          0          0          0          0   PDC-GIC  64 Level     limits_sensor-00\n471:          0          0          0          0          0          0          0          0   PDC-GIC  65 Level     limits_sensor-01\n472:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n473:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n474:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n475:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n476:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n477:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n478:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n479:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n480:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n481:          0          0          0          0          0          0          0          0     smp2p   2 Edge      slpi\n482:          0          0          0          0          0          0          0          0     smp2p   0 Edge      slpi\n483:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n484:          0          0          0          0          0          0          0          0     smp2p   3 Edge      slpi\n485:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n486:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n487:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n488:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n489:          0          0          0          0          0          0          0          0      qsee  32 Level     qsee_ipc_irq_spss\n490:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n491:          0          0          0          0          0          0          0          0  pmic_arb 37748986 Edge      qcom,temp-alarm\n492:          0          0          0          0          0          0          0          0  pmic_arb 8388857 Edge      pon_kpdpwr_status\n493:          0          0          0          0          0          0          0          0  pmic_arb 8454393 Edge      pon_resin_status\n497:          0          0          0          0          0          0          0          0  pmic_arb 206569734 Edge      volume_up\n499:          0          0          0          0          0          0          0          0  pmic_arb 210764040 Edge      vendor:extcon_usb1\n500:          5          0          0          0          0          0          0          0  pmic_arb 51380475 Edge      pm-adc5\n501:          0          0          0          0          0          0          0          0  pmic_arb 55574780 Edge      thr-int-en\n503:          0          0          0          0          0          0          0          0  pmic_arb 721486118 Edge      ptrain-done\n513:          5          0          0          0          0          0          0          0  pmic_arb 588251416 Edge      pm-adc5\n514:          0          0          0          0          0          0          0          0  pmic_arb 592445721 Edge      thr-int-en\n515:          0          0          0          0          0          0          0          0  pmic_arb 560988433 Edge      sig-tx\n516:          0          0          0          0          0          0          0          0  pmic_arb 561053969 Edge      sig-rx\n517:          0          0          0          0          0          0          0          0  pmic_arb 561119505 Edge      msg-tx\n518:          0          0          0          0          0          0          0          0  pmic_arb 561185041 Edge      msg-rx\n519:          0          0          0          0          0          0          0          0  pmic_arb 561250577 Edge      msg-tx-failed\n520:          0          0          0          0          0          0          0          0  pmic_arb 561316113 Edge      msg-tx-discarded\n521:          0          0          0          0          0          0          0          0  pmic_arb 561381649 Edge      msg-rx-discarded\n523:          0          0          0          0          0          0          0          0  pmic_arb 567279894 Edge      bcl-lvl0\n524:          0          0          0          0          0          0          0          0  pmic_arb 567345430 Edge      bcl-lvl1\n525:          0          0          0          0          0          0          0          0  pmic_arb 567410966 Edge      bcl-lvl2\n526:          0          0          0          0          0          0          0          0  pmic_arb 1006633267 Edge      hap_sc_irq\n527:          0          0          0          0          0          0          0          0  pmic_arb 1006698803 Edge      hap_play_irq\n528:          0          0          0          0          0          0          0          0  pmic_arb 1111490870 Edge      qcom,temp-alarm\n540:          4          0          0          0          0          0          0          0  pmic_arb 1125122359 Edge      pm-adc5\n541:          0          0          0          0          0          0          0          0  pmic_arb 1137705273 Edge      bcl-lvl0\n542:          0          0          0          0          0          0          0          0  pmic_arb 1137770809 Edge      bcl-lvl1\n543:          0          0          0          0          0          0          0          0  pmic_arb 1137836345 Edge      bcl-lvl2\n544:          0          0          0          0          0          0          0          0  pmic_arb 1129316664 Edge      thr-int-en\n545:          0          0          0          0          0          0          0          0  pmic_arb 1589707088 Edge      qpnp_lcdb_sc_irq\n546:          0          0          0          0          0          0          0          0  pmic_arb 1563427149 Edge      qpnp_flash_led_fault_irq\n547:          0          0          0          0          0          0          0          0  pmic_arb 1563623757 Edge      qpnp_flash_led_all_ramp_down_done_irq\n548:          0          0          0          0          0          0          0          0  pmic_arb 1563689293 Edge      qpnp_flash_led_all_ramp_up_done_irq\n549:          0          0          0          0          0          0          0          0  pmic_arb 1568735566 Edge      wled_ovp_irq\n550:          0          0          0          0          0          0          0          0  pmic_arb 1568932174 Edge      wled_pre_flash_irq\n551:          0          0          0          0          0          0          0          0  pmic_arb 1568997710 Edge      wled_flash_irq\n552:          0          0          0          0          0          0          0          0   PDC-GIC 165 Edge      dwc3\n554:          0          0          0          0          0          0          0          0   PDC-GIC 170 Edge      dwc3\n555:          0          0          0          0          0          0          0          0  pmic_arb 101777663 Edge      qpnp_rtc_alarm\n556:          0          0          0          0          0          0          0          0  pmic_arb 603980059 Edge      soc-update\n557:          0          0          0          0          0          0          0          0  pmic_arb 604045595 Edge      soc-ready\n558:          0          0          0          0          0          0          0          0  pmic_arb 604111131 Edge      bsoc-delta\n559:          0          0          0          0          0          0          0          0  pmic_arb 604176667 Edge      msoc-delta\n560:          0          0          0          0          0          0          0          0  pmic_arb 604242203 Edge      msoc-low\n561:          0          0          0          0          0          0          0          0  pmic_arb 604307739 Edge      msoc-empty\n562:          0          0          0          0          0          0          0          0  pmic_arb 604373275 Edge      msoc-high\n563:          0          0          0          0          0          0          0          0  pmic_arb 604438811 Edge      msoc-full\n564:          0          0          0          0          0          0          0          0  pmic_arb 605028636 Edge      vbatt-low\n565:          0          0          0          0          0          0          0          0  pmic_arb 605094172 Edge      vbatt-pred-delta\n566:          0          0          0          0          0          0          0          0  pmic_arb 605225244 Edge      esr-delta\n567:          0          0          0          0          0          0          0          0  pmic_arb 606077213 Edge      batt-missing\n568:          0          0          0          0          0          0          0          0  pmic_arb 606142749 Edge      batt-id\n569:          0          0          0          0          0          0          0          0  pmic_arb 606208285 Edge      batt-temp-delta\n570:          0          0          0          0          0          0          0          0  pmic_arb 606273821 Edge      batt-temp-hot\n571:          0          0          0          0          0          0          0          0  pmic_arb 606339357 Edge      batt-temp-cold\n572:          0          0          0          0          0          0          0          0  pmic_arb 607125790 Edge      ima-rdy\n573:          0          0          0          0          0          0          0          0  pmic_arb 607191326 Edge      ima-xcp\n574:          0          0          0          0          0          0          0          0  pmic_arb 607256862 Edge      dma-xcp\n575:         45          0          0          0          0          0          0          0  pmic_arb 607322398 Edge      dma-grant\n576:          0          0          0          0          0          0          0          0  pmic_arb 607387934 Edge      mem-attn\n577:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n578:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n579:          0          0          0          0          0          0          0          0  pmic_arb 553648394 Edge      chgr-error\n580:          0          0          0          0          0          0          0          0  pmic_arb 553713930 Edge      chg-state-change\n586:          0          0          0          0          0          0          0          0  pmic_arb 554696971 Edge      otg-fail\n589:          0          0          0          0          0          0          0          0  pmic_arb 554959115 Edge      high-duty-cycle\n590:          0          0          0          0          0          0          0          0  pmic_arb 555024651 Edge      input-current-limiting\n592:          0          0          0          0          0          0          0          0  pmic_arb 555155723 Edge      switcher-power-ok\n593:          0          0          0          0          0          0          0          0  pmic_arb 555745548 Edge      bat-temp\n594:          0          0          0          0          0          0          0          0  pmic_arb 555876620 Edge      bat-ov\n595:          0          0          0          0          0          0          0          0  pmic_arb 555942156 Edge      bat-low\n596:          0          0          0          0          0          0          0          0  pmic_arb 556007692 Edge      bat-therm-or-id-missing\n597:          0          0          0          0          0          0          0          0  pmic_arb 556073228 Edge      bat-terminal-missing\n600:          0          0          0          0          0          0          0          0  pmic_arb 556794125 Edge      usbin-collapse\n601:          0          0          0          0          0          0          0          0  pmic_arb 556859661 Edge      usbin-vashdn\n602:          0          0          0          0          0          0          0          0  pmic_arb 556925197 Edge      usbin-uv\n603:          0          0          0          0          0          0          0          0  pmic_arb 556990733 Edge      usbin-ov\n604:          0          0          0          0          0          0          0          0  pmic_arb 557056269 Edge      usbin-plugin\n606:          0          0          0          0          0          0          0          0  pmic_arb 557187341 Edge      usbin-src-change\n607:          0          0          0          0          0          0          0          0  pmic_arb 557252877 Edge      usbin-icl-change\n609:          0          0          0          0          0          0          0          0  pmic_arb 557973774 Edge      dcin-uv\n610:          0          0          0          0          0          0          0          0  pmic_arb 558039310 Edge      dcin-ov\n611:          0          0          0          0          0          0          0          0  pmic_arb 558104846 Edge      dcin-plugin\n613:          0          0          0          0          0          0          0          0  pmic_arb 558235918 Edge      dcin-pon\n614:          0          0          0          0          0          0          0          0  pmic_arb 558301454 Edge      dcin-en\n615:          0          0          0          0          0          0          0          0  pmic_arb 558891279 Edge      typec-or-rid-detect-change\n617:          0          0          0          0          0          0          0          0  pmic_arb 559022351 Edge      typec-cc-state-change\n618:          0          0          0          0          0          0          0          0  pmic_arb 559087887 Edge      typec-vconn-oc\n620:          0          0          0          0          0          0          0          0  pmic_arb 559218959 Edge      typec-attach-detach\n621:          0          0          0          0          0          0          0          0  pmic_arb 559284495 Edge      typec-legacy-cable-detect\n623:          0          0          0          0          0          0          0          0  pmic_arb 559939856 Edge      wdog-snarl\n624:          0          0          0          0          0          0          0          0  pmic_arb 560005392 Edge      wdog-bark\n626:          0          0          0          0          0          0          0          0  pmic_arb 560136464 Edge      aicl-done\n627:          0          0          0          0          0          0          0          0  pmic_arb 560202000 Edge      smb-en\n628:          0          0          0          0          0          0          0          0  pmic_arb 560333072 Edge      temp-change\n662:          0          0          0          0          0          0          0          0   msmgpio 131 Edge      icm\nIPI0:        74         30         30         30         31         30         30         28       Rescheduling interrupts\nIPI1:         0         72         72         72         72         72         72         72       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         0          1          1          1          3          1          1          1       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8150/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    5 root      0:00 [kworker/0:0H]\n    6 root      0:00 [kworker/u16:0]\n    7 root      0:00 [mm_percpu_wq]\n    8 root      0:00 [ksoftirqd/0]\n    9 root      0:00 [rcu_preempt]\n   10 root      0:00 [rcu_sched]\n   11 root      0:00 [rcu_bh]\n   12 root      0:00 [rcuop/0]\n   13 root      0:00 [rcuos/0]\n   14 root      0:00 [rcuob/0]\n   15 root      0:00 [migration/0]\n   16 root      0:00 [cpuhp/0]\n   17 root      0:00 [cpuhp/1]\n   18 root      0:00 [migration/1]\n   19 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0]\n   21 root      0:00 [kworker/1:0H]\n   22 root      0:00 [rcuop/1]\n   23 root      0:00 [rcuos/1]\n   24 root      0:00 [rcuob/1]\n   25 root      0:00 [cpuhp/2]\n   26 root      0:00 [migration/2]\n   27 root      0:00 [ksoftirqd/2]\n   28 root      0:00 [kworker/2:0]\n   29 root      0:00 [kworker/2:0H]\n   30 root      0:00 [rcuop/2]\n   31 root      0:00 [rcuos/2]\n   32 root      0:00 [rcuob/2]\n   33 root      0:00 [cpuhp/3]\n   34 root      0:00 [migration/3]\n   35 root      0:00 [ksoftirqd/3]\n   36 root      0:00 [kworker/3:0]\n   37 root      0:00 [kworker/3:0H]\n   38 root      0:00 [rcuop/3]\n   39 root      0:00 [rcuos/3]\n   40 root      0:00 [rcuob/3]\n   41 root      0:00 [cpuhp/4]\n   42 root      0:00 [migration/4]\n   43 root      0:00 [ksoftirqd/4]\n   44 root      0:00 [kworker/4:0]\n   45 root      0:00 [kworker/4:0H]\n   46 root      0:00 [rcuop/4]\n   47 root      0:00 [rcuos/4]\n   48 root      0:00 [rcuob/4]\n   49 root      0:00 [cpuhp/5]\n   50 root      0:00 [migration/5]\n   51 root      0:00 [ksoftirqd/5]\n   52 root      0:00 [kworker/5:0]\n   53 root      0:00 [kworker/5:0H]\n   54 root      0:00 [rcuop/5]\n   55 root      0:00 [rcuos/5]\n   56 root      0:00 [rcuob/5]\n   57 root      0:00 [cpuhp/6]\n   58 root      0:00 [migration/6]\n   59 root      0:00 [ksoftirqd/6]\n   60 root      0:00 [kworker/6:0]\n   61 root      0:00 [kworker/6:0H]\n   62 root      0:00 [rcuop/6]\n   63 root      0:00 [rcuos/6]\n   64 root      0:00 [rcuob/6]\n   65 root      0:00 [cpuhp/7]\n   66 root      0:00 [migration/7]\n   67 root      0:00 [ksoftirqd/7]\n   68 root      0:00 [kworker/7:0]\n   69 root      0:00 [kworker/7:0H]\n   70 root      0:00 [rcuop/7]\n   71 root      0:00 [rcuos/7]\n   72 root      0:00 [rcuob/7]\n   73 root      0:00 [kdevtmpfs]\n   74 root      0:00 [netns]\n   75 root      0:00 [kworker/0:1]\n   76 root      0:00 [kworker/u17:0]\n   77 root      0:00 [ipa_usb_wq]\n   78 root      0:00 [kworker/u16:1]\n   79 root      0:00 [msm_watchdog]\n   80 root      0:00 [spi_wdsp]\n   81 root      0:00 [qmp_aop]\n   82 root      0:00 [qmp_npu_qmp_low]\n   83 root      0:00 [qmp_npu_qmp_hig]\n   84 root      0:00 [oom_reaper]\n   85 root      0:00 [writeback]\n   86 root      0:00 [kcompactd0]\n   87 root      0:00 [crypto]\n   88 root      0:00 [kblockd]\n   89 root      0:00 [irq/358-arm-smm]\n   90 root      0:00 [irq/461-arm-smm]\n   91 root      0:00 [irq/60-tsens-up]\n   92 root      0:00 [irq/61-tsens-cr]\n   93 root      0:00 [irq/62-tsens-up]\n   94 root      0:00 [irq/63-tsens-cr]\n   95 root      0:00 [system]\n   96 root      0:00 [ipa_power_mgmt]\n   97 root      0:00 [transport_power]\n   98 root      0:00 [ipa_pm_activate]\n   99 root      0:00 [devfreq_wq]\n  100 root      0:00 [cfg80211]\n  138 root      0:00 [kswapd0]\n  139 root      0:00 [ecryptfs-kthrea]\n  178 root      0:00 [irq/362-arm-smm]\n  179 root      0:00 [irq/363-arm-smm]\n  180 root      0:00 [irq/364-arm-smm]\n  181 root      0:00 [irq/353-smp2p]\n  182 root      0:00 [irq/354-smp2p]\n  183 root      0:00 [irq/355-smp2p]\n  184 root      0:00 [irq/356-smp2p]\n  185 root      0:00 [irq/365-arm-smm]\n  186 root      0:00 [mem_share_svc]\n  188 root      0:00 [cdsprm-wq]\n  189 root      0:00 [cdsprm-wq-delay]\n  190 root      0:00 [irq/366-arm-smm]\n  191 root      0:00 [hwrng]\n  193 root      0:00 [diag_real_time_]\n  194 root      0:00 [diag_wq]\n  196 root      0:00 [DIAG_USB_diag]\n  197 root      0:00 [diag_cntl_wq]\n  198 root      0:00 [diag_dci_wq]\n  199 root      0:00 [MODEM_CNTL]\n  200 root      0:00 [MODEM_DATA]\n  201 root      0:00 [MODEM_CMD]\n  202 root      0:00 [MODEM_DCI]\n  203 root      0:00 [MODEM_DCI_CMD]\n  204 root      0:00 [LPASS_CNTL]\n  205 root      0:00 [LPASS_DATA]\n  206 root      0:00 [LPASS_CMD]\n  207 root      0:00 [LPASS_DCI]\n  208 root      0:00 [LPASS_DCI_CMD]\n  209 root      0:00 [WCNSS_CNTL]\n  210 root      0:00 [WCNSS_DATA]\n  211 root      0:00 [WCNSS_CMD]\n  212 root      0:00 [WCNSS_DCI]\n  213 root      0:00 [WCNSS_DCI_CMD]\n  214 root      0:00 [SENSORS_CNTL]\n  215 root      0:00 [SENSORS_DATA]\n  216 root      0:00 [SENSORS_CMD]\n  217 root      0:00 [SENSORS_DCI]\n  218 root      0:00 [SENSORS_DCI_CMD]\n  219 root      0:00 [DIAG_CTRL]\n  220 root      0:00 [DIAG_DATA]\n  221 root      0:00 [DIAG_CMD]\n  222 root      0:00 [DIAG_DCI_DATA]\n  223 root      0:00 [DIAG_DCI_CMD]\n  224 root      0:00 [CDSP_CNTL]\n  225 root      0:00 [CDSP_DATA]\n  226 root      0:00 [CDSP_CMD]\n  227 root      0:00 [CDSP_DCI]\n  228 root      0:00 [CDSP_DCI_CMD]\n  229 root      0:00 [NPU_CNTL]\n  230 root      0:00 [NPU_DATA]\n  231 root      0:00 [NPU_CMD]\n  232 root      0:00 [NPU_DCI]\n  233 root      0:00 [NPU_DCI_CMD]\n  234 root      0:00 [DIAG_RPMSG_DIAG]\n  235 root      0:00 [DIAG_RPMSG_DIAG]\n  236 root      0:00 [DIAG_RPMSG_DIAG]\n  237 root      0:00 [DIAG_RPMSG_DIAG]\n  238 root      0:00 [DIAG_RPMSG_DIAG]\n  239 root      0:00 [kworker/u16:2]\n  240 root      0:00 [dsi_resume_wq]\n  241 root      0:00 [kworker/u16:3]\n  242 root      0:00 [kgsl-workqueue]\n  243 root      0:00 [kgsl-mementry]\n  244 root      0:00 [kworker/u16:4]\n  245 root      0:00 [kworker/u16:5]\n  246 root      0:00 [kgsl_worker_thr]\n  248 root      0:00 [irq/462-arm-smm]\n  249 root      0:00 [irq/463-arm-smm]\n  251 root      0:00 [irq/464-arm-smm]\n  252 root      0:00 [kgsl-events]\n  253 root      0:00 [kgsl_devfreq_wq]\n  254 root      0:00 [qseecom-unreg-l]\n  255 root      0:00 [qseecom-unload-]\n  256 root      0:00 [irq/545-qpnp_lc]\n  257 root      0:00 [irq/549-wled_ov]\n  258 root      0:00 [irq/551-wled_fl]\n  259 root      0:00 [irq/550-wled_pr]\n  260 root      0:00 [irq/367-arm-smm]\n  261 root      0:00 [irq/368-arm-smm]\n  262 root      0:00 [irq/369-arm-smm]\n  263 root      0:00 [qcrypto_seq_res]\n  264 root      0:00 [irq/370-arm-smm]\n  285 root      0:00 [scsi_eh_0]\n  286 root      0:00 [scsi_tmf_0]\n  287 root      0:00 [ufs_pm_qos_0]\n  288 root      0:00 [ufs_clk_gating_]\n  289 root      0:00 [ice-set-key]\n  290 root      0:00 [irq/371-arm-smm]\n  291 root      0:00 [spi0]\n  301 root      0:00 [k_ipa_usb]\n  304 root      0:00 [irq/527-hap_pla]\n  305 root      0:00 [irq/526-hap_sc_]\n  306 root      0:00 [irq/372-arm-smm]\n  308 root      0:00 [fts_wq]\n  310 root      0:00 [irq/241-fts_ts]\n  311 root      0:00 [focal_suspend_r]\n  312 root      0:00 [focal_read_gest]\n  313 root      0:00 [irq/373-arm-smm]\n  314 root      0:00 [npu_wq]\n  315 root      0:00 [msm_vidc_worker]\n  316 root      0:00 [pm_workerq_venu]\n  317 root      0:00 [irq/374-arm-smm]\n  318 root      0:00 [irq/375-arm-smm]\n  319 root      0:00 [irq/376-arm-smm]\n  320 root      0:00 [irq/377-arm-smm]\n  321 root      0:00 [cam-cpas]\n  322 root      0:00 [qcom,cam_virtua]\n  323 root      0:00 [irq/378-arm-smm]\n  324 root      0:00 [qcom,cam170-cpa]\n  325 root      0:00 [irq/379-arm-smm]\n  326 root      0:00 [cam_cci_wq]\n  327 root      0:00 [cam_cci_wq]\n  328 root      0:00 [cam_cci_wq]\n  329 root      0:00 [cam_cci_wq]\n  330 root      0:00 [irq/380-arm-smm]\n  331 root      0:00 [irq/381-arm-smm]\n  332 root      0:00 [irq/382-arm-smm]\n  333 root      0:00 [irq/383-arm-smm]\n  334 root      0:00 [irq/556-soc-upd]\n  335 root      0:00 [irq/557-soc-rea]\n  336 root      0:00 [irq/558-bsoc-de]\n  337 root      0:00 [irq/559-msoc-de]\n  338 root      0:00 [irq/560-msoc-lo]\n  339 root      0:00 [irq/561-msoc-em]\n  340 root      0:00 [irq/562-msoc-hi]\n  341 root      0:00 [irq/563-msoc-fu]\n  342 root      0:00 [irq/564-vbatt-l]\n  343 root      0:00 [irq/565-vbatt-p]\n  344 root      0:00 [irq/566-esr-del]\n  345 root      0:00 [irq/567-batt-mi]\n  346 root      0:00 [irq/568-batt-id]\n  347 root      0:00 [irq/569-batt-te]\n  348 root      0:00 [irq/570-batt-te]\n  349 root      0:00 [irq/571-batt-te]\n  350 root      0:00 [irq/572-ima-rdy]\n  351 root      0:00 [irq/573-ima-xcp]\n  352 root      0:00 [irq/574-dma-xcp]\n  353 root      0:00 [irq/575-dma-gra]\n  354 root      0:00 [irq/576-mem-att]\n  355 root      0:00 [irq/503-ptrain-]\n  357 root      0:00 [irq/470-limits_]\n  358 root      0:00 [kworker/0:1H]\n  359 root      0:00 [irq/471-limits_]\n  360 root      0:00 [kworker/4:1H]\n  361 root      0:00 [irq/523-bcl-lvl]\n  362 root      0:00 [irq/524-bcl-lvl]\n  363 root      0:00 [irq/525-bcl-lvl]\n  364 root      0:00 [irq/541-bcl-lvl]\n  365 root      0:00 [irq/542-bcl-lvl]\n  366 root      0:00 [irq/543-bcl-lvl]\n  367 root      0:00 [dm_bufio_cache]\n  368 root      0:00 [mmc_clk_gate/mm]\n  369 root      0:00 [irq/51-8804000.]\n  370 root      0:00 [irq/50-mmc0]\n  371 root      0:00 [irq/213-8804000]\n  373 root      0:00 [irq/499-vendor:]\n  374 root      0:00 [ALSPS_FRGB_wq]\n  375 root      0:00 [ALSPS_FRGB_dela]\n  376 root      0:00 [irq/235-ALSPS_S]\n  377 root      0:00 [MSP430FR2311_wq]\n  378 root      0:00 [irq/384-arm-smm]\n  379 root      0:00 [uaudio_svc]\n  380 root      0:00 [apr_driver]\n  381 root      0:00 [wdsp_glink_wq]\n  382 root      0:00 [mmcqd/0]\n  383 root      0:00 [ipv6_addrconf]\n  384 root      0:00 [dsi_resume_wq]\n  385 root      0:00 [irq/361-arm-smm]\n  386 root      0:00 [irq/385-arm-smm]\n  387 root      0:00 [crtc_commit:127]\n  388 root      0:00 [crtc_event:127]\n  389 root      0:00 [crtc_commit:181]\n  390 root      0:00 [crtc_event:181]\n  391 root      0:00 [pp_event]\n  398 root      0:00 [irq/456-pwr_eve]\n  399 root      0:00 [irq/455-dp_hs_p]\n  400 root      0:00 [irq/457-dm_hs_p]\n  401 root      0:00 [irq/386-arm-smm]\n  404 root      0:00 [rot_commitq_0_0]\n  405 root      0:00 [rot_commitq_0_1]\n  406 root      0:00 [rot_doneq_0_0]\n  407 root      0:00 [rot_doneq_0_1]\n  408 root      0:00 [rot_fenceq_0_0]\n  409 root      0:00 [rot_fenceq_0_1]\n  410 root      0:00 [rot_fenceq_0_2]\n  411 root      0:00 [rot_fenceq_0_3]\n  412 root      0:00 [rot_fenceq_0_4]\n  413 root      0:00 [rot_fenceq_0_5]\n  414 root      0:00 [rot_fenceq_0_6]\n  415 root      0:00 [rot_fenceq_0_7]\n  416 root      0:00 [rot_fenceq_0_8]\n  417 root      0:00 [rot_fenceq_0_9]\n  418 root      0:00 [rot_fenceq_0_10]\n  419 root      0:00 [rot_fenceq_0_11]\n  420 root      0:00 [rot_fenceq_0_12]\n  421 root      0:00 [rot_fenceq_0_13]\n  422 root      0:00 [rot_fenceq_0_14]\n  423 root      0:00 [rot_fenceq_0_15]\n  424 root      0:00 [irq/579-chgr-er]\n  426 root      0:00 [irq/580-chg-sta]\n  427 root      0:00 [irq/586-otg-fai]\n  428 root      0:00 [irq/589-high-du]\n  429 root      0:00 [irq/590-input-c]\n  430 root      0:00 [irq/592-switche]\n  431 root      0:00 [irq/593-bat-tem]\n  432 root      0:00 [irq/594-bat-ov]\n  433 root      0:00 [irq/595-bat-low]\n  434 root      0:00 [irq/596-bat-the]\n  435 root      0:00 [irq/597-bat-ter]\n  436 root      0:00 [irq/600-usbin-c]\n  437 root      0:00 [irq/601-usbin-v]\n  438 root      0:00 [irq/602-usbin-u]\n  439 root      0:00 [irq/603-usbin-o]\n  440 root      0:00 [irq/604-usbin-p]\n  441 root      0:00 [irq/606-usbin-s]\n  442 root      0:00 [irq/607-usbin-i]\n  443 root      0:00 [irq/609-dcin-uv]\n  444 root      0:00 [irq/610-dcin-ov]\n  445 root      0:00 [irq/611-dcin-pl]\n  446 root      0:00 [irq/613-dcin-po]\n  447 root      0:00 [irq/614-dcin-en]\n  448 root      0:00 [irq/615-typec-o]\n  449 root      0:00 [irq/617-typec-c]\n  450 root      0:00 [irq/618-typec-v]\n  451 root      0:00 [irq/620-typec-a]\n  452 root      0:00 [irq/621-typec-l]\n  453 root      0:00 [irq/623-wdog-sn]\n  454 root      0:00 [irq/624-wdog-ba]\n  455 root      0:00 [irq/626-aicl-do]\n  456 root      0:00 [irq/627-smb-en]\n  457 root      0:00 [irq/628-temp-ch]\n  458 root      0:00 [irq/491-qcom,te]\n  461 root      0:00 [irq/528-qcom,te]\n  462 root      0:00 [irq/501-thr-int]\n  463 root      0:00 [irq/514-thr-int]\n  464 root      0:00 [irq/544-thr-int]\n  471 root      0:00 [irq/515-sig-tx]\n  472 root      0:00 [irq/516-sig-rx]\n  473 root      0:00 [irq/452-pwr_eve]\n  474 root      0:00 [irq/451-dp_hs_p]\n  475 root      0:00 [irq/454-dm_hs_p]\n  476 root      0:00 [irq/453-ss_phy_]\n  477 root      0:00 [irq/387-arm-smm]\n  478 root      0:00 [usb_bam_wq]\n  479 root      0:00 [kworker/u17:1]\n  480 root      0:00 [rq_stats]\n  481 root      0:00 [irq/388-arm-smm]\n  482 root      0:00 [irq/389-arm-smm]\n  483 root      0:00 [irq/390-arm-smm]\n  484 root      0:00 [irq/391-arm-smm]\n  485 root      0:00 [irq/392-arm-smm]\n  486 root      0:00 [irq/393-arm-smm]\n  487 root      0:00 [irq/394-arm-smm]\n  488 root      0:00 [irq/395-arm-smm]\n  489 root      0:00 [irq/396-arm-smm]\n  490 root      0:00 [irq/397-arm-smm]\n  491 root      0:00 [irq/398-arm-smm]\n  492 root      0:00 [irq/399-arm-smm]\n  493 root      0:00 [irq/400-arm-smm]\n  494 root      0:00 [irq/401-arm-smm]\n  495 root      0:00 [irq/402-arm-smm]\n  496 root      0:00 [sb-1]\n  497 root      0:00 [ngd_rx_thread1]\n  498 root      0:00 [ngd_notify_sl1]\n  499 root      0:00 [sb-3]\n  500 root      0:00 [ngd_rx_thread3]\n  501 root      0:00 [ngd_notify_sl3]\n  502 root      0:00 [irq/231-vl53l1_]\n  503 root      0:00 [irq/662-icm]\n  504 root      0:00 [icm_data_work]\n  505 root      0:00 [sns_gyro]\n  506 root      0:00 [sns_accel]\n  507 root      0:00 [irq/548-qpnp_fl]\n  508 root      0:00 [irq/547-qpnp_fl]\n  509 root      0:00 [irq/546-qpnp_fl]\n  510 root      0:00 [devfreq_boostd/]\n  518 root      0:00 [kworker/1:1]\n  519 root      0:00 [kworker/2:1]\n  520 root      0:00 [kworker/4:1]\n  521 root      0:00 [kworker/3:1]\n  522 root      0:00 [kworker/5:1]\n  523 root      0:00 [kworker/6:1]\n  524 root      0:00 [kworker/7:1]\n  579 root      0:00 [kworker/u16:8]\n  595 root      0:00 [kworker/u16:7]\n  652 root      0:00 [kworker/u16:9]\n  659 root      0:00 [kworker/0:2]\n  705 root      0:00 [kworker/0:0]\n  709 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm8150/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1113.938038,3.713126793333333,52.413371369080686,11.76379634865234,21.251642972265493,224.44265731\r\n1,403200,1497.095634,3.7130348065476193,57.16513092909632,9.546491393684606,26.18763163243254,166.998504832\r\n1,499200,1853.568119,3.7130771614583336,72.68790673048503,9.804310997104642,25.498987136763482,134.882285625\r\n1,576000,2138.744642,3.713098336805556,82.76732749024126,9.675318233199063,25.83894337885149,116.897796831\r\n1,672000,2495.184294,3.7130718660714286,64.63367056467989,6.476253600782864,38.60256491033326,100.199378191\r\n1,768000,2851.602601,3.7130242200520835,72.3192504414022,6.340606551894752,39.42840451522622,87.675224967\r\n1,844800,3136.841577,3.713117397017046,77.41369689596198,6.1701190455584625,40.517856811848965,79.703195855\r\n1,940800,3493.376558,3.7131978720238097,83.54822787699995,5.979474832803141,41.80969181917295,71.569140181\r\n1,1036800,3849.588864,3.7129522222222224,90.5206580535,5.878935207859334,42.5247074786237,64.945785131\r\n1,1113600,4134.760101,3.7129670447198277,95.62358254693325,5.782101250287588,43.236876903109504,60.467314613\r\n1,1209600,4491.47518,3.713190459656085,101.58190036265444,5.654486210141144,44.212681879324926,55.664308208\r\n1,1305600,4847.967732,3.713210579044118,110.07136757735293,5.67645832787378,44.04154590061828,51.57070774\r\n1,1382400,5133.154015,3.713219050202546,113.68185042081247,5.536999140402783,45.150810693789275,48.706096179\r\n1,1478400,5489.558859,3.7131756351461034,120.1974876460221,5.474184940803823,45.66889915182338,45.54325592\r\n1,1555200,5774.605594,3.7130951607510285,126.09284012065112,5.459238457220412,45.79393297417682,43.29538816\r\n1,1632000,6060.018422,3.713246582107843,131.4728515359268,5.424232740889531,46.08946775373838,41.25743587\r\n1,1708800,6345.338714,3.713330239934457,137.015358972923,5.39865366733487,46.30784180742167,39.401813839\r\n1,1785600,6630.244523,3.7131745760528676,145.5985710625134,5.4903560847856365,45.53438723087137,37.708859673\r\n4,710400,2764.752721,3.8918253392454956,125.77869952859992,11.375038791841794,21.977947027248874,90.436924809\r\n4,825600,6432.35733,7.791130486918604,206.3723672303683,8.023209522608857,31.159600069712383,38.877344047\r\n4,940800,7330.518414,7.791792531887755,226.996636287647,7.744135900025741,32.28249132342435,34.115641653\r\n4,1056000,8227.202422,7.790911384469697,249.12572344399993,7.572931549349134,33.01231476487947,30.398031342\r\n4,1171200,9126.752336,7.792650560109289,261.25615053714813,7.159573791316594,34.91827967514066,27.404421969\r\n4,1286400,10020.441701,7.789522466573382,289.14459036562505,7.217109045603793,34.63990891924852,24.960207751\r\n4,1401600,10918.460934,7.789997812500001,310.76724395745435,7.11913410236127,35.1166302538226,22.908251242\r\n4,1497600,11662.623624,7.787542483974359,335.6197266198571,7.198453386354797,34.72968241676658,21.448242804\r\n4,1612800,12546.421761,7.779279365699405,374.6512046711052,7.469354134966156,33.470096005982555,19.936821347\r\n4,1708800,13319.8359,7.7948477879213485,397.74051168383323,7.469561213213388,33.46916811629563,18.77998593\r\n4,1804800,14068.655037,7.795132445146277,455.5536233763528,8.10031694377681,30.862989897212138,17.781258952\r\n4,1920000,14909.351145,7.765287054687501,506.7413669340623,8.50247303602911,29.403209976747764,16.778723015\r\n4,2016000,15706.477351,7.790911384424603,557.5914538081333,8.881877139305743,28.14720312822762,15.92900515\r\n4,2131200,16612.399495,7.794857120401653,631.9913479479333,9.518449403000448,26.26478215256299,15.061043848\r\n4,2227200,17349.063151,7.7896296475395115,698.2295058131427,10.068953175108588,24.828797557428697,14.420692754\r\n4,2323200,18088.416178,7.785991812155648,717.4623344820769,9.924532071378932,25.190104500842686,13.832826609\r\n4,2419200,18835.229413,7.785726443865742,845.230903328923,11.228742518013247,22.264291802839704,13.284822495\r\n7,825600,3215.434084,3.8946633769379844,158.07019602024667,12.29203206145532,20.338378451186788,77.763122783\r\n7,940800,7329.658731,7.790878753188776,268.7538375012941,9.16992566854539,27.263034514832338,34.120166446\r\n7,1056000,8226.931684,7.790655003787878,291.123826107,8.849856446713206,28.249045790211525,30.398942488\r\n7,1171200,9125.419769,7.791512780908469,316.0778510345555,8.662649157466353,28.85953193481518,27.406694677\r\n7,1286400,10024.459682,7.792645897077114,338.3353557064165,8.441504990691431,29.61557213739476,24.950111918\r\n7,1401600,10922.277076,7.792720516552512,364.78821929263626,8.353902226258175,29.926134305737303,22.900690824\r\n7,1497600,11673.515129,7.794815123530983,383.2939375269523,8.213290025886387,30.43847218496582,21.42817619\r\n7,1612800,12564.076792,7.790226185515873,405.76475289389464,8.078383522874297,30.94678524386891,19.90903218\r\n7,1708800,13316.997816,7.793186924157303,427.2446778424444,8.025506284407655,31.150682728354745,18.784332961\r\n7,1804800,14062.324221,7.79162467918883,445.9936863741175,7.93379211379557,31.51078279014783,17.789023379\r\n7,1920000,14965.579168,7.794572483333334,497.6813274892499,8.319047412054468,30.051517633827277,16.715610879\r\n7,2016000,15711.41277,7.793359508928572,512.7062071111333,8.163753319623275,30.6231692962933,15.922868119\r\n7,2131200,16599.163402,7.788646491178678,599.2817052162667,9.032983751209533,27.676347803296398,15.073017702\r\n7,2227200,17352.675783,7.791251698545259,621.9844699287856,8.96805100517305,27.876737080976927,14.418448432\r\n7,2323200,18094.962362,7.788809556646005,703.8426285050768,9.73235256271883,25.687519886780592,13.827455412\r\n7,2419200,18849.430747,7.791596704282408,737.9348714893076,9.795964962959745,25.520711940609594,13.274836766\r\n7,2534400,19761.283693,7.797223679371844,824.4326336654999,10.440217380789896,23.945861554569017,12.66351786\r\n7,2649600,20657.742522,7.796551374547102,882.0725251605834,10.685765842232732,23.395609045814904,12.114384631\r\n7,2745600,21400.445129,7.794451168779138,1003.3757724875454,11.733279523487125,21.306915896750077,11.693803902\r\n7,2841600,22147.413182,7.793993940737613,1091.637777258,12.335847276415464,20.26613935776973,11.300311819\r\n"
  },
  {
    "path": "results/sm8150/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 2883.74125988991, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1763.807823312, 1412.6604743999999, 1404.3998214750002, 1414.7245802, 1757.829253344, 1406.463927275, 1404.3188059109998, 1404.3998214750002, 1402.169693454, 1400.26738015, 1400.26738015, 1400.105825798, 1408.5280330750002, 1406.382792639, 1410.5921388750003, 1410.5921388750003, 1404.3188059109998, 1404.1567747830002, 1406.220523367, 1406.301658003, 1400.105825798, 1400.186602974, 1406.301658003, 1410.26631426, 1408.365525659, 1408.2842719510002, 1404.1567747830002, 1406.382792639, 1757.523956645], \"power_mean\": 1442.416599144276, \"energy_millijoules\": 7212.08299572138, \"energy_joules\": 7.21208299572138}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 224.44265731, \"elapsed_ns\": 224442657310, \"power_samples\": [30.561772249999876, 43.116417433999914, 26.435228633999714, 38.81908749799982, 34.77534650200005, 383.9985303789997, 36.75581568999996, 30.47920801800001, 32.54658852600005, 36.83873738200009, 38.736046733999956, 28.58094560199993, 30.47920801800001, 387.7024169519998, 38.569965206000006, 32.54658852600005, 28.41605528199989, 40.72026716200003, 26.35290254599977, 32.38122142999987, 32.54658852600005, 387.806254567, 30.47920801800001, 30.396643785999913, 32.54658852600005, 26.435228633999714, 38.569965206000006, 32.46390497800007, 36.507050614000036, 34.60974126199994, 38.736046733999956, 36.507050614000036, 34.60974126199994, 30.396643785999913, 26.35290254599977, 32.38122142999987, 34.526938642000005, 30.396643785999913, 36.42378907900002, 34.526938642000005, 36.67289399800006, 38.48658411099996, 34.44413602199984, 34.60974126199994, 32.29819901500014, 28.25116496199962, 32.54658852600005, 26.27057645800005, 38.403543347000095, 40.55360618199984, 34.36099404700008, 30.314079553999818, 40.55360618199984, 36.34086738700012, 34.36099404700008, 28.25116496199962, 28.085936751999725, 32.21551546700016, 36.507050614000036, 38.320502583000234, 23.956358036999973, 44.595798022000054, 30.2311769439998, 34.27819142699991, 36.34086738700012, 28.085936751999725, 42.53312206199985, 30.14861271199993, 30.14861271199993, 36.34086738700012, 34.19538880699997, 36.25794569500022, 36.17502400299986, 34.27819142699991, 40.3872860219999, 25.94093470400003, 42.53312206199985, 26.023260791999974, 38.15442105500006, 34.029783567000095, 34.112586186999806, 38.320502583000234, 28.085936751999725, 48.64174012500007, 34.19538880699997, 36.25794569500022, 28.085936751999725, 34.029783567000095, 36.09210231100019, 36.09210231100019, 34.029783567000095, 40.30412594199993, 36.09210231100019, 34.112586186999806, 34.112586186999806, 29.900920015999873, 31.884781275000023, 27.7561561120001, 40.30412594199993, 27.7561561120001, 42.20000545399989, 36.09210231100019, 29.818355784000005, 33.86417832699999, 40.13780578199999, 34.029783567000095, 33.86417832699999, 29.818355784000005, 48.30719367699999, 40.13780578199999, 34.029783567000095, 31.884781275000023, 40.054645702000016, 33.94698094700016, 35.926258926999935, 33.94698094700016, 38.071380291000196, 37.98833952699988, 33.94698094700016, 34.112586186999806, 33.94698094700016, 35.760075700000016, 29.818355784000005, 35.84299739200014, 37.90495843200006, 40.054645702000016, 33.94698094700016, 33.86417832699999, 37.90495843200006, 33.86417832699999, 33.69823373200006, 33.6154311119999, 25.52896686200006, 39.9711448019998, 29.65288894199989, 35.84299739200014, 39.887984722000056, 35.760075700000016, 35.84299739200014, 31.71907531199986, 35.760075700000016, 29.487760477999927, 35.84299739200014, 29.65288894199989, 29.570324710000023, 35.760075700000016, 35.67715400799989, 33.69823373200006, 33.69823373200006, 39.887984722000056, 35.760075700000016, 39.887984722000056, 27.590927901999976, 39.80482464199963, 33.6154311119999, 39.80482464199963, 35.67715400799989, 33.6154311119999, 25.44664077399989, 35.67715400799989, 31.553708215999677, 37.73887690399988, 35.67715400799989, 392.7402441819995, 37.65583614000002, 35.59423231599999, 39.638504482000144, 29.405196245999832, 41.78326838599992, 31.553708215999677, 39.638504482000144, 390.68304846199976, 43.761473986000055, 45.739441441999816, 31.388341120000177, 39.55534440199972, 37.73887690399988, 35.34546724000006, 39.72166456199989, 390.47574411000005, 33.53262849199996, 39.638504482000144, 29.405196245999832, 39.472184321999976, 35.59423231599999, 45.739441441999816, 31.388341120000177, 388.41878653399976, 43.761473986000055, 37.48975461199984, 29.15750355, 33.28422063200014, 39.55534440199972, 39.472184321999976, 31.471024668000155, 388.2112960099996, 39.472184321999976, 49.7826412280001, 41.533430929999895, 35.34546724000006, 33.28422063200014, 25.035010333999935, 43.34414106999975, 33.28422063200014, 388.5223196379998, 39.472184321999976, 35.34546724000006, 35.34546724000006, 33.28422063200014, 31.14029047600002, 39.305523342000015, 28.992036708000114, 388.10776290599983, 37.2402919890003, 43.34414106999975, 29.074939317999906, 35.262545547999935, 39.305523342000015, 29.15750355, 41.36653131799994, 390.1643627779997, 31.14029047600002, 43.34414106999975], \"power_mean\": 52.413371369080686, \"energy_millijoules\": 11763.79634865234, \"energy_joules\": 11.76379634865234, \"coremark_score\": 1113.938038, \"coremarks_per_mhz\": 3.713126793333333, \"ulpmark_cm_score\": 21.251642972265493}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1404.1567747830002, 1406.220523367, 1763.5018707360002, 1400.105825798], \"power_mean\": 1493.496248671, \"energy_millijoules\": 7467.4812433550005, \"energy_joules\": 7.467481243355}}, \"403200\": {\"active\": {\"elapsed_sec\": 166.998504832, \"elapsed_ns\": 166998504832, \"power_samples\": [35.096362321000015, 43.34414106999975, 39.222363262000044, 41.283252165999784, 394.0739957379999, 37.07421046100012, 39.0560431020001, 43.34414106999975, 45.40502997399972, 47.21923217499989, 45.237995382000236, 37.15725122499998, 404.2555320659999, 45.237995382000236, 45.237995382000236, 45.32151267800009, 43.26074284599986, 39.0560431020001, 43.26074284599986, 43.01054817399995, 41.03341470999976, 47.135595562999924, 43.177344621999964, 41.03341470999976, 41.19997301400008, 45.07096079000007, 45.1544780859997, 45.237995382000236, 45.40502997399972, 51.340295551000054, 36.99116969700003, 53.32105556800002, 47.135595562999924, 38.97288302199968, 38.889722941999935, 53.40504963999979, 40.950135558000056, 51.172546038999826, 49.196008179000046, 45.07096079000007, 53.32105556800002, 47.135595562999924, 49.196008179000046, 38.80656286199974, 45.07096079000007, 43.093946397999844, 42.84340992999978, 45.07096079000007, 49.196008179000046, 43.01054817399995, 49.196008179000046, 38.80656286199974, 44.98744349399976, 43.01054817399995, 47.135595562999924, 40.950135558000056, 38.80656286199974, 40.78323594599965, 38.80656286199974, 44.82006661799983, 38.80656286199974, 45.07096079000007, 49.196008179000046, 44.90358391399968, 49.02815354999984, 40.86685640599967, 46.96797956599994, 44.98744349399976, 53.152723186, 34.68175386100006, 46.96797956599994, 44.82006661799983, 38.72306196199975, 46.8843429540002, 38.72306196199975, 42.9271499499996, 44.82006661799983, 42.67661348199999, 53.32105556800002, 50.92057802199997, 38.72306196199975, 44.82006661799983, 34.43264894200024, 38.639901882000004, 44.82006661799983, 52.98473504200001, 42.84340992999978, 48.944397866000145, 44.73654932199997, 46.8843429540002, 44.73654932199997, 46.71706973000005, 44.73654932199997, 42.67661348199999, 42.76001170599989, 44.653032025999664, 42.59321525799987, 44.653032025999664, 36.492584781999994, 44.653032025999664, 42.59321525799987, 42.59321525799987, 38.55674180200003, 44.485997433999955, 44.485997433999955, 48.86064218200022, 32.289910482000096, 46.633433118000085, 48.693130813999915, 42.59321525799987, 50.668953754000086, 42.42641881000009, 40.45011933799992, 40.45011933799992, 42.59321525799987, 42.67661348199999, 48.693130813999915, 46.633433118000085, 42.59321525799987, 44.73654932199997, 54.70821830599971, 44.485997433999955, 48.693130813999915, 44.653032025999664, 36.243462490000184, 42.34302058599974, 46.46615989399993, 46.54979650600012, 42.34302058599974, 50.58507899799997, 38.224101481999924, 48.35776481700009, 46.46615989399993, 48.525619446000064, 42.34302058599974, 48.525619446000064, 44.40248013799987, 40.28356103399983, 48.525619446000064, 46.46615989399993, 46.38218050899991, 395.0898348370001, 48.35776481700009, 46.46615989399993, 48.525619446000064, 42.259280565999916, 48.441520501000014, 48.441520501000014, 42.259280565999916, 398.8870052919999, 38.140600581999706, 50.58507899799997, 42.17588234200002, 48.274009132999936, 48.35776481700009, 42.259280565999916, 48.35776481700009, 396.7280637680001, 50.249236225000004, 46.21490728499998, 44.15158596599986, 48.525619446000064, 44.23510326199994, 42.0924841179999, 44.23510326199994, 394.7773796599997], \"power_mean\": 57.16513092909632, \"energy_millijoules\": 9546.491393684606, \"energy_joules\": 9.546491393684606, \"coremark_score\": 1497.095634, \"coremarks_per_mhz\": 3.7130348065476193, \"ulpmark_cm_score\": 26.18763163243254}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1423.1575724299998, 1759.71034596, 1408.71956445, 1410.703662144], \"power_mean\": 1500.5727862459999, \"energy_millijoules\": 7502.863931229999, \"energy_joules\": 7.502863931229999}}, \"499200\": {\"active\": {\"elapsed_sec\": 134.882285625, \"elapsed_ns\": 134882285625, \"power_samples\": [46.13127067300002, 58.320683979999785, 46.13127067300002, 48.106497765000086, 54.371421003999785, 52.22844415600002, 408.85495985199987, 54.287307860000055, 48.02274208099993, 48.106497765000086, 46.13127067300002, 52.22844415600002, 52.1444500839998, 48.19025344900001, 402.79186927, 52.31243822799979, 54.20319471599964, 56.34617156400009, 43.90103407799984, 52.31243822799979, 52.31243822799979, 45.96399744899986, 404.63723346200004, 56.17770713200002, 45.880360837000126, 54.119081571999914, 52.1444500839998, 48.106497765000086, 56.261939347999714, 54.20319471599964, 400.52856040599977, 58.151635701999794, 54.03462370200009, 54.03462370200009, 48.02274208099993, 52.06045601200003, 49.91339345200004, 47.93898639700001, 400.42376557600005, 51.97611770200001, 48.02274208099993, 47.77113176800026, 52.06045601200003, 51.97611770200001, 58.151635701999794, 47.85488745199996, 412.6481950729999, 41.50835475399981, 51.80812955800002, 54.03462370200009, 43.733657201999904, 54.03462370200009, 47.85488745199996, 51.97611770200001, 402.16452404000006, 51.80812955800002, 58.151635701999794, 60.129889348000006, 51.80812955800002, 57.98293312599981, 49.745643940000036, 58.067284413999914, 400.31939847999956, 51.64014141400003, 47.77113176800026, 51.97611770200001, 54.03462370200009, 47.85488745199996, 53.86639741399995, 51.64014141400003, 49.66176918399992, 57.89858183799993, 57.98293312599981, 47.603620399999954, 53.698171126000034, 55.75620083800004, 49.82951869600015, 55.84043305399996, 51.724135485999795, 53.698171126000034, 53.698171126000034, 53.698171126000034, 51.64014141400003, 43.39958801800003, 57.81423055000005, 47.51986471600003, 53.698171126000034, 47.603620399999954, 57.89858183799993, 43.56662260999997, 55.75620083800004, 43.23255342599987, 59.87647753600004, 43.39958801800003, 57.72987926199971, 51.64014141400003, 53.782284269999764, 53.61405798199962, 47.43610903199988, 57.81423055000005, 47.51986471600003, 53.698171126000034, 63.823119464, 59.70753632799983, 53.52994483799989, 49.49401967199992, 47.35235334800018, 53.52994483799989, 51.556147341999804, 51.556147341999804, 41.17476185799978, 51.64014141400003, 47.35235334800018, 55.671968621999895, 57.72987926199971, 47.43610903199988, 57.56083098399995, 47.43610903199988, 55.587736405999976, 53.44548696800007, 51.30382088799979, 49.24205165500007, 47.184498718999976, 49.325926410999955, 53.52994483799989, 49.325926410999955, 53.44548696800007, 41.09102183799996, 47.184498718999976, 49.325926410999955, 51.387814960000014, 57.56083098399995, 49.24205165500007, 51.30382088799979], \"power_mean\": 72.68790673048503, \"energy_millijoules\": 9804.310997104642, \"energy_joules\": 9.804310997104642, \"coremark_score\": 1853.568119, \"coremarks_per_mhz\": 3.7130771614583336, \"ulpmark_cm_score\": 25.498987136763482}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1417.968577032, 1417.722671148, 1411.621683456, 1764.351257175], \"power_mean\": 1502.91604720275, \"energy_millijoules\": 7514.5802360137495, \"energy_joules\": 7.5145802360137495}}, \"576000\": {\"active\": {\"elapsed_sec\": 116.897796831, \"elapsed_ns\": 116897796831, \"power_samples\": [61.51121218899971, 53.361373823999884, 57.476479695999615, 61.34203283699958, 59.4537783249998, 61.42662251299976, 57.13907454399987, 57.476479695999615, 53.02492124799983, 53.27726067999993, 63.48393730499993, 53.19314753599997, 59.200366512999835, 55.25046232799991, 65.54546790600011, 61.25744316099963, 51.0518386719998, 63.48393730499993, 53.109034391999785, 63.314519808999876, 57.22342583199975, 57.13907454399987, 63.314519808999876, 57.13907454399987, 61.25744316099963, 55.16623011199977, 57.307777119999855, 52.94080810399987, 57.22342583199975, 59.200366512999835, 57.13907454399987, 61.25744316099963, 63.229811060999964, 59.200366512999835, 57.13907454399987, 61.25744316099963, 53.02492124799983, 69.31948402600005, 52.94080810399987, 59.115895908999846, 50.96784459999981, 60.918737777999695, 57.05472325599999, 55.08199789599985, 63.14475514600008, 57.05472325599999, 59.115895908999846, 57.05472325599999, 52.94080810399987, 59.115895908999846, 56.88567497799977, 52.68812394600013, 411.176188939, 63.14475514600008, 56.88567497799977, 56.88567497799977, 50.631524074000026, 65.205807994, 67.09275173799983, 46.59786566999992, 413.1276235619998, 60.918737777999695, 62.9753376499998, 58.862137905999816, 58.862137905999816, 56.80132368999989, 60.918737777999695, 56.88567497799977, 407.071329115, 56.80132368999989, 60.918737777999695, 52.85635023400005, 52.68812394600013, 60.918737777999695, 58.862137905999816, 62.9753376499998, 404.909969092, 60.83414810199997, 54.744723817999784, 64.95132380200016, 62.89062890200012, 64.86649573799991, 60.749558425999794, 60.83414810199997, 408.9138336269998, 60.83414810199997, 62.72121140599984, 50.54753000200003, 62.80592015399975, 50.631524074000026, 62.80592015399975, 54.744723817999784, 404.595796156, 56.54826982600002, 56.71697240200001, 56.54826982600002, 60.58037907399989, 60.58037907399989, 58.60872609399985, 60.664968749999844, 408.70390822700006, 56.463918538000144, 56.463918538000144, 56.6326211139999, 66.7529631939999, 60.58037907399989, 62.72121140599984, 66.7529631939999, 418.7563319459998, 58.52425549000009, 50.29554778600004, 66.7529631939999, 50.29554778600004, 62.551446742999815, 56.54826982600002, 60.58037907399989], \"power_mean\": 82.76732749024126, \"energy_millijoules\": 9675.318233199063, \"energy_joules\": 9.675318233199063, \"coremark_score\": 2138.744642, \"coremarks_per_mhz\": 3.713098336805556, \"ulpmark_cm_score\": 25.83894337885149}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1412.5363687999998, 1412.61809904, 1412.78155952, 1416.65640711], \"power_mean\": 1413.6481086175, \"energy_millijoules\": 7068.2405430875, \"energy_joules\": 7.0682405430875}}, \"672000\": {\"active\": {\"elapsed_sec\": 100.199378191, \"elapsed_ns\": 100199378191, \"power_samples\": [29.97007970200002, 60.41085304299986, 66.7529631939999, 66.58272077800007, 64.61166388999982, 60.495442718999584, 70.52412012199989, 66.49777364199986, 68.55353952199994, 62.297320498999625, 62.382029246999764, 66.66766791399982, 60.32626336699991, 60.32626336699991, 60.24167369099973, 66.32787936999989, 70.52412012199989, 62.297320498999625, 68.46847331399977, 56.04181639600006, 62.297320498999625, 60.24167369099973, 66.41282650599987, 64.35717969799998, 62.297320498999625, 72.58397932099956, 66.41282650599987, 72.58397932099956, 60.41085304299986, 56.12616768399994, 62.297320498999625, 68.38340710599982, 60.24167369099973, 56.12616768399994, 70.43893484199998, 70.35374956200008, 66.41282650599987, 62.21261175099994, 66.24293223400014, 64.27235163399996, 64.35717969799998, 60.15708401499978, 62.1279030029998, 62.297320498999625, 66.07303796199994, 64.18752357000017, 62.21261175099994, 74.46877879299973, 64.10269550599992, 74.29793145699978, 59.987904662999654, 66.15798509799993, 62.04319425499966, 66.07303796199994, 66.15798509799993, 66.07303796199994, 68.21327468999971, 66.07303796199994, 70.35374956200008, 55.788762531999964, 68.12820848199999, 55.788762531999964, 70.18337900199981, 61.95848550699998, 62.04319425499966, 59.987904662999654, 64.0178674419999, 65.98774268200009, 59.81837863199985, 72.07180213599986, 59.7337889559999, 64.0178674419999, 66.07303796199994, 70.01265932199999, 65.9027955460001, 66.07303796199994, 64.0178674419999, 65.98774268200009, 70.01265932199999, 70.01265932199999, 61.873429591999866, 65.9027955460001, 61.873429591999866, 65.9027955460001, 72.07180213599986, 61.788720843999954, 72.07180213599986, 59.81837863199985, 70.01265932199999, 63.84786365800005, 69.84228876199995, 61.873429591999866, 61.788720843999954, 63.76303559400003, 65.73290127399991, 69.92747404199986, 67.95772743400016, 67.78759501800005, 65.64795413800016, 69.84228876199995], \"power_mean\": 64.63367056467989, \"energy_millijoules\": 6476.253600782864, \"energy_joules\": 6.476253600782864, \"coremark_score\": 2495.184294, \"coremarks_per_mhz\": 3.7130718660714286, \"ulpmark_cm_score\": 38.60256491033326}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1411.71839648, 1419.7850733000002, 1411.6366662399998, 1421.928094288], \"power_mean\": 1416.267057577, \"energy_millijoules\": 7081.335287885, \"energy_joules\": 7.081335287885}}, \"768000\": {\"active\": {\"elapsed_sec\": 87.675224967, \"elapsed_ns\": 87675224967, \"power_samples\": [69.84228876199995, 77.98382255800016, 71.81588834800004, 71.64527915599979, 61.6193033479999, 65.56300700199995, 65.73290127399991, 69.67191820199992, 69.84228876199995, 71.81588834800004, 73.87046301999999, 69.58673292200001, 75.92503769200016, 75.75395221199983, 71.73058375199957, 69.67191820199992, 69.58673292200001, 71.73058375199957, 71.73058375199957, 71.73058375199957, 71.81588834800004, 69.58673292200001, 69.67191820199992, 69.58673292200001, 77.72648531599998, 67.53239639399999, 71.64527915599979, 65.39276458600011, 69.58673292200001, 69.58673292200001, 77.55516120399989, 67.4469815540001, 73.69961568400004, 65.56300700199995, 69.58673292200001, 69.5011985220001, 69.5011985220001, 77.72648531599998, 69.5011985220001, 79.86683497400008, 75.66805888699992, 71.55962495099993, 65.13792317799994, 69.5011985220001, 69.41601324199996, 75.49697340699981, 71.47432035499969, 73.52841825099972, 69.33082796199983, 71.38901575899968, 71.38901575899968, 71.30371116299989, 71.38901575899968, 75.4114306670001, 73.52841825099972, 71.38901575899968, 71.30371116299989, 75.49697340699981, 73.52841825099972, 73.357570915, 71.30371116299989, 75.49697340699981, 77.46949914800007, 75.4114306670001, 71.30371116299989, 75.58251614699975, 79.52335889999995, 69.16045740199979, 71.30371116299989, 77.46949914800007, 69.33082796199983, 79.43757777199971, 75.4114306670001, 75.4114306670001, 69.24564268199993, 69.24564268199993, 79.43757777199971, 75.32588792699971, 85.60300829699986, 73.18672357899982, 75.32588792699971, 69.24564268199993, 75.240345187, 79.35179664399993, 71.21840656699965, 71.04779737500007, 75.15480244700007], \"power_mean\": 72.3192504414022, \"energy_millijoules\": 6340.606551894753, \"energy_joules\": 6.340606551894752, \"coremark_score\": 2851.602601, \"coremarks_per_mhz\": 3.7130242200520835, \"ulpmark_cm_score\": 39.42840451522622}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1410.81902888, 1414.8520894829999, 1415.0160267390002, 1418.9626686670001], \"power_mean\": 1414.91245344225, \"energy_millijoules\": 7074.5622672112495, \"energy_joules\": 7.07456226721125}}, \"844800\": {\"active\": {\"elapsed_sec\": 79.703195855, \"elapsed_ns\": 79703195855, \"power_samples\": [79.26601551599992, 71.04779737500007, 77.12649985000007, 75.06890912199992, 79.00832057000002, 79.0941016979998, 79.17988282600004, 76.95517573799998, 70.96214316999999, 83.20062950600004, 74.98336638199976, 74.89782364200005, 78.92253944200002, 72.84467880999978, 80.97556520200033, 74.81228090200011, 79.00832057000002, 74.81228090200011, 78.92253944200002, 68.64899660200012, 76.95517573799998, 72.75925514200003, 78.92253944200002, 76.95517573799998, 76.95517573799998, 76.78385162600011, 70.70622938200017, 74.72673816199995, 78.83675831399978, 72.67383147399983, 68.73418188200003, 78.83675831399978, 76.78385162600011, 78.83675831399978, 72.67383147399983, 80.80376480199993, 84.99968515399974, 74.72673816199995, 82.94257169000002, 76.95517573799998, 78.75097718600023, 78.83675831399978, 72.67383147399983, 70.6209247859997, 76.78385162600011, 84.99968515399974, 78.75097718600023, 78.83675831399978, 78.83675831399978, 78.66519605799999, 80.80376480199993, 76.69818957000007, 70.53562018999992, 84.82740797799988, 70.45031559399968, 78.66519605799999, 78.75097718600023, 78.4932822400001, 74.72673816199995, 78.66519605799999, 74.72673816199995, 84.74091636299977, 86.79346534699994, 88.93274506599982, 72.41721037299976, 86.70720768699994, 74.64119542200001, 76.69818957000007, 80.54571215199985, 74.4697593569997, 76.52651438399971, 78.57906336799965, 78.4932822400001, 80.54571215199985, 78.40750111200009, 78.4932822400001, 78.4932822400001, 78.4932822400001, 74.29867387700006], \"power_mean\": 77.41369689596198, \"energy_millijoules\": 6170.119045558463, \"energy_joules\": 6.1701190455584625, \"coremark_score\": 3136.841577, \"coremarks_per_mhz\": 3.713117397017046, \"ulpmark_cm_score\": 40.517856811848965}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1416.003741525, 1418.1399271209998, 1414.1960045220003, 1414.1960045220003], \"power_mean\": 1415.6339194225002, \"energy_millijoules\": 7078.169597112501, \"energy_joules\": 7.078169597112501}}, \"940800\": {\"active\": {\"elapsed_sec\": 71.569140181, \"elapsed_ns\": 71569140181, \"power_samples\": [80.54571215199985, 88.75963759899992, 80.54571215199985, 88.67326086699995, 82.51212279200013, 78.4932822400001, 82.51212279200013, 82.42610351999974, 78.32171998399986, 78.32171998399986, 88.58688413499976, 84.56863918699992, 94.83439894200023, 80.28801155200017, 88.58688413499976, 78.40750111200009, 88.67326086699995, 84.48250059899988, 80.37391175199991, 82.42610351999974, 82.42610351999974, 84.39636201100006, 90.47028911800021, 78.23593885600008, 82.25406497600011, 84.31022342300002, 84.22408483499976, 86.36217704699993, 80.11621115199978, 88.24102320399993, 88.41413067100007, 78.15015772800007, 80.20211135199997, 84.31022342300002, 80.20211135199997, 82.16804570399995, 88.41413067100007, 78.15015772800007, 80.11621115199978, 86.36217704699993, 88.41413067100007, 82.25406497600011, 86.27591938699993, 84.22408483499976, 73.87060959199971, 80.02995890199986, 82.081673894, 86.36217704699993, 84.13759321999987, 92.34865752199994, 90.21044648200018, 84.05145463200006, 84.13759321999987, 80.11621115199978, 84.05145463200006, 77.89246278200017, 79.85815850199992, 83.96531604399956, 90.12395043399988, 80.02995890199986, 79.85815850199992, 77.80668165399993, 87.98189300799982, 77.89246278200017, 84.05145463200006, 90.12395043399988, 79.85815850199992, 83.96531604399956, 79.94405870200012, 90.12395043399988, 86.01679289199956], \"power_mean\": 83.54822787699995, \"energy_millijoules\": 5979.474832803141, \"energy_joules\": 5.979474832803141, \"coremark_score\": 3493.376558, \"coremarks_per_mhz\": 3.7131978720238097, \"ulpmark_cm_score\": 41.80969181917295}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1413.4576149959998, 1423.5630135600002, 1407.375226944, 1423.5630135600002], \"power_mean\": 1416.989717265, \"energy_millijoules\": 7084.948586325, \"energy_joules\": 7.084948586325}}, \"1036800\": {\"active\": {\"elapsed_sec\": 64.945785131, \"elapsed_ns\": 64945785131, \"power_samples\": [90.12395043399988, 83.70690027999967, 94.0534357460001, 83.79303886799994, 94.0534357460001, 90.12395043399988, 98.16011651200006, 94.1401699380001, 83.87917745599975, 87.89551627600008, 98.16011651200006, 89.77796624199982, 91.915581922, 91.82896680199997, 97.98617135199993, 91.915581922, 89.77796624199982, 97.81186974699995, 83.70690027999967, 104.13917303199992, 81.56555826199997, 93.79287770199994, 91.915581922, 83.53427007699975, 95.84375870200006, 87.72276281199993, 89.77796624199982, 89.69111570200016, 89.77796624199982, 87.54965534500002, 89.51812360600002, 93.70614351000017, 97.89884232700001, 85.49889341700009, 89.69111570200016, 89.60461965400009, 91.56876646199999, 89.60461965400009, 89.60461965400009, 93.70614351000017, 93.70614351000017, 87.63603207699998, 89.69111570200016, 91.48215134199995, 87.54965534500002, 87.54965534500002, 93.61940931799995, 87.54965534500002, 83.3619929009999, 95.7569054380001, 85.49889341700009, 87.54965534500002, 87.54965534500002, 93.53267512599996, 87.54965534500002, 87.37690188099987, 93.53267512599996, 91.48215134199995, 89.43162755800017, 89.43162755800017, 93.61940931799995, 91.56876646199999, 85.32637809699986, 93.44594093400019], \"power_mean\": 90.5206580535, \"energy_millijoules\": 5878.935207859335, \"energy_joules\": 5.878935207859334, \"coremark_score\": 3849.588864, \"coremarks_per_mhz\": 3.7129522222222224, \"ulpmark_cm_score\": 42.5247074786237}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1416.741738171, 1418.880342022, 1414.8538408750003, 1410.8310687510002], \"power_mean\": 1415.3267474547501, \"energy_millijoules\": 7076.633737273751, \"energy_joules\": 7.076633737273751}}, \"1113600\": {\"active\": {\"elapsed_sec\": 60.467314613, \"elapsed_ns\": 60467314613, \"power_samples\": [97.63792458699982, 93.53267512599996, 95.49634564600024, 93.44594093400019, 91.30892110199989, 97.46397942699969, 97.46397942699969, 93.44594093400019, 93.27247254999997, 97.46397942699969, 87.11777168499998, 101.56455070699985, 87.11777168499998, 95.40949238199983, 97.28967782199993, 93.44594093400019, 99.3397248299998, 91.30892110199989, 99.3397248299998, 97.46397942699969, 95.2354298979999, 93.18538289000026, 97.28967782199993, 97.28967782199993, 97.20270524199964, 91.13533588200016, 93.0986486979998, 99.3397248299998, 97.02876008199996, 101.38977183799989, 89.08528887400007, 99.25263317799977, 95.06172336999998, 93.18538289000026, 99.25263317799977, 93.01191450599981, 99.3397248299998, 99.3397248299998, 93.01191450599981, 92.92518031400004, 103.17782945800013, 99.16554152599997, 99.07844987400017, 97.02876008199996, 88.91229677799993, 93.01191450599981, 88.91229677799993, 96.94178750199967, 94.88801684199984, 95.06172336999998, 103.17782945800013, 94.88801684199984, 95.06172336999998, 99.07844987400017, 88.82580073000008, 97.20270524199964, 92.83844612199982, 103.00316986600001, 94.62745704999975, 96.94178750199967], \"power_mean\": 95.62358254693325, \"energy_millijoules\": 5782.101250287588, \"energy_joules\": 5.782101250287588, \"coremark_score\": 4134.760101, \"coremarks_per_mhz\": 3.7129670447198277, \"ulpmark_cm_score\": 43.236876903109504}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1420.4375249399998, 1422.241309092, 1412.227413702, 1422.241309092], \"power_mean\": 1419.2868892064998, \"energy_millijoules\": 7096.434446032499, \"energy_joules\": 7.096434446032499}}, \"1209600\": {\"active\": {\"elapsed_sec\": 55.664308208, \"elapsed_ns\": 55664308208, \"power_samples\": [107.1938410419998, 103.00316986600001, 102.91584007000006, 98.81717491800009, 100.95371821799972, 96.94178750199967, 102.91584007000006, 102.74082256899965, 94.62745704999975, 100.86650749399996, 98.90426656999989, 102.91584007000006, 102.74082256899965, 98.73008326599961, 100.77929676999975, 96.767842342, 106.93113648999974, 92.66497773800006, 98.64263468099989, 102.82851027399965, 98.64263468099989, 98.55554302899986, 102.82851027399965, 106.84320941999977, 102.65349277299993, 94.54024783, 100.691728625, 106.93113648999974, 102.74082256899965, 98.73008326599961, 102.74082256899965, 98.64263468099989, 98.55554302899986, 100.691728625, 102.65349277299993, 106.58050486799993, 104.53176813999994, 100.691728625, 112.81883892699989, 98.64263468099989, 104.70666636400006, 96.41959557700011, 104.53176813999994, 104.70666636400006, 100.60451790100001, 102.5661629770002, 102.74082256899965, 100.51730717700002, 98.46845137700006, 100.34288572899982, 102.4788331809998, 102.65349277299993, 106.66807305200018, 104.53176813999994, 102.4788331809998], \"power_mean\": 101.58190036265444, \"energy_millijoules\": 5654.486210141144, \"energy_joules\": 5.654486210141144, \"coremark_score\": 4491.47518, \"coremarks_per_mhz\": 3.713190459656085, \"ulpmark_cm_score\": 44.212681879324926}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1415.590169537, 1421.7455853220001, 1411.407391485, 1417.7271019859998], \"power_mean\": 1416.6175620825, \"energy_millijoules\": 7083.0878104124995, \"energy_joules\": 7.0830878104125}}, \"1305600\": {\"active\": {\"elapsed_sec\": 51.57070774, \"elapsed_ns\": 51570707740, \"power_samples\": [102.5661629770002, 106.49293668399991, 106.49293668399991, 108.36617982799999, 110.59436998299998, 102.39150338499985, 102.30417358900013, 114.69160529500004, 106.3178003160001, 114.69160529500004, 102.39150338499985, 108.54155434000018, 108.4538670840002, 116.38720647200012, 110.4187568389998, 114.339065592, 112.46713635099991, 108.36617982799999, 112.37885035599993, 108.27813319799998, 112.37885035599993, 104.26942080399999, 108.27813319799998, 114.339065592, 112.55506199499996, 110.24278383199999, 108.19044594200022, 112.37885035599993, 112.37885035599993, 106.22987324600012, 106.22987324600012, 108.19044594200022, 112.2909247120001, 108.19044594200022, 114.42711030799978, 114.42711030799978, 112.46713635099991, 114.339065592, 110.15497725999967, 108.10275868600002, 106.1423050620001, 112.37885035599993, 112.20299906799983, 112.2909247120001, 116.38720647200012, 112.2909247120001, 108.19044594200022, 110.15497725999967, 110.15497725999967, 108.19044594200022, 118.26297815399971], \"power_mean\": 110.07136757735293, \"energy_millijoules\": 5676.45832787378, \"energy_joules\": 5.67645832787378, \"coremark_score\": 4847.967732, \"coremarks_per_mhz\": 3.713210579044118, \"ulpmark_cm_score\": 44.04154590061828}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1423.22106798, 1423.386435076, 1415.178798764, 1415.178798764], \"power_mean\": 1419.2412751460001, \"energy_millijoules\": 7096.20637573, \"energy_joules\": 7.0962063757300005}}, \"1382400\": {\"active\": {\"elapsed_sec\": 48.706096179, \"elapsed_ns\": 48706096179, \"power_samples\": [112.20299906799983, 106.05473687799986, 112.20299906799983, 103.83181684600027, 116.03455131999976, 112.20299906799983, 116.1227151080002, 112.02714777999995, 114.07493144400019, 116.1227151080002, 107.92738417400005, 120.22247871399986, 107.83969691799985, 118.08641194599977, 105.79203232600003, 109.80375097199976, 115.76969862900023, 111.85129649200007, 115.94638753199979, 112.02714777999995, 115.94638753199979, 116.03455131999976, 116.03455131999976, 117.99812884199991, 113.89884201199993, 117.99812884199991, 115.85786241699998, 111.85129649200007, 113.81043645699992, 113.72239174099991, 115.94638753199979, 117.90948392199994, 117.82120081800008, 117.99812884199991, 109.62777796499995, 111.67508485300004, 117.90948392199994, 111.76301049699987, 111.67508485300004, 121.8272933459998, 115.76969862900023, 115.76969862900023, 121.6502508499998, 107.5762757760001, 117.82120081800008, 105.52896888800024, 105.52896888800024, 113.6343470249999], \"power_mean\": 113.68185042081247, \"energy_millijoules\": 5536.999140402783, \"energy_joules\": 5.536999140402783, \"coremark_score\": 5133.154015, \"coremarks_per_mhz\": 3.713219050202546, \"ulpmark_cm_score\": 45.150810693789275}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1416.7385141259997, 1418.7876080699998, 1418.7876080699998, 1416.7385141259997], \"power_mean\": 1417.7630610979998, \"energy_millijoules\": 7088.8153054899985, \"energy_joules\": 7.088815305489999}}, \"1478400\": {\"active\": {\"elapsed_sec\": 45.54325592, \"elapsed_ns\": 45543255920, \"power_samples\": [115.6815348409998, 123.79003565499988, 115.76969862900023, 117.73291771399977, 121.6502508499998, 121.6502508499998, 127.70641572699992, 117.64463460999991, 125.6595851269999, 117.55635150600006, 119.51489900199977, 123.61275452699988, 121.56172960199956, 115.3288796889999, 121.6502508499998, 121.56172960199956, 113.37021287699986, 121.6502508499998, 121.56172960199956, 119.51489900199977, 123.61275452699988, 115.41704347699988, 125.6595851269999, 117.46806840199974, 113.37021287699986, 123.43511011800001, 125.48170208600004, 125.48170208600004, 117.46806840199974, 125.57082549100005, 121.47320835400001, 121.47320835400001, 121.47320835400001, 117.20285727399983, 125.48170208600004, 115.24035457399987, 121.38432431399997, 121.38432431399997, 115.24035457399987, 119.16092799399962, 117.20285727399983, 121.38432431399997, 121.29580306599973, 119.33773234599971, 113.01767317400004], \"power_mean\": 120.1974876460221, \"energy_millijoules\": 5474.184940803822, \"energy_joules\": 5.474184940803823, \"coremark_score\": 5489.558859, \"coremarks_per_mhz\": 3.7131756351461034, \"ulpmark_cm_score\": 45.66889915182338}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1424.442273145, 1420.341316622, 1424.35913117, 1416.161894108], \"power_mean\": 1421.32615376125, \"energy_millijoules\": 7106.63076880625, \"energy_joules\": 7.10663076880625}}, \"1555200\": {\"active\": {\"elapsed_sec\": 43.29538816, \"elapsed_ns\": 43295388160, \"power_samples\": [125.39294244999996, 121.20728181799973, 123.16918842599989, 123.25782899000001, 131.35832053799982, 119.16092799399962, 125.30418281399989, 127.17277922199992, 127.17277922199992, 127.26165793000018, 127.350536638, 137.59069245399996, 125.12666354199973, 127.0839005140001, 129.1298971220001, 127.26165793000018, 125.12666354199973, 122.99190729799989, 135.182724322, 120.85319682599993, 118.89572146599994, 131.00148691999993, 127.0839005140001, 124.94914427000003, 125.03790390599988, 125.03790390599988, 126.99502180600007, 126.90577884100026, 118.8073192899999, 126.90577884100026, 131.00148691999993, 131.09096924999994, 126.99502180600007, 131.09096924999994, 120.76431278599989, 127.0839005140001, 120.76431278599989, 129.0408993420001, 120.85319682599993, 131.00148691999993, 120.76431278599989, 130.91236982399982, 120.85319682599993], \"power_mean\": 126.09284012065112, \"energy_millijoules\": 5459.238457220412, \"energy_joules\": 5.459238457220412, \"coremark_score\": 5774.605594, \"coremarks_per_mhz\": 3.7130951607510285, \"ulpmark_cm_score\": 45.79393297417682}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1415.7502636679997, 1417.7154830999998, 1425.90986097, 1415.832589756], \"power_mean\": 1418.8020493734998, \"energy_millijoules\": 7094.0102468674995, \"energy_joules\": 7.0940102468675}}, \"1632000\": {\"active\": {\"elapsed_sec\": 41.25743587, \"elapsed_ns\": 41257435870, \"power_samples\": [131.09096924999994, 126.81690013299999, 128.77354125700003, 134.9142923920001, 126.81690013299999, 130.82325272799994, 132.8687725599998, 126.72802142500018, 130.82325272799994, 126.72802142500018, 136.87452930700033, 134.82493715200008, 136.96400386300002, 130.73413563200006, 124.68250159299987, 122.63698176100002, 126.63914271699991, 136.78505475099973, 134.82493715200008, 134.82493715200008, 130.73413563200006, 132.6010640559998, 130.55590143999984, 132.69030022399988, 134.73558191199982, 130.55590143999984, 136.6061056389999, 132.6010640559998, 140.69619272699993, 126.55026400899987, 130.55590143999984, 134.646226672, 136.69558019500005, 140.69619272699993, 134.646226672, 126.46138530100006, 134.46714998199968, 122.37106006900012, 130.46678434399973, 126.28326362799976, 128.5955456969998], \"power_mean\": 131.4728515359268, \"energy_millijoules\": 5424.232740889531, \"energy_joules\": 5.424232740889531, \"coremark_score\": 6060.018422, \"coremarks_per_mhz\": 3.713246582107843, \"ulpmark_cm_score\": 46.08946775373838}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1413.122618725, 1433.686905924, 1415.255969738, 1423.365160375], \"power_mean\": 1421.3576636905, \"energy_millijoules\": 7106.7883184525, \"energy_joules\": 7.1067883184525}}, \"1708800\": {\"active\": {\"elapsed_sec\": 39.401813839, \"elapsed_ns\": 39401813839, \"power_samples\": [136.6061056389999, 136.42678982799998, 134.37779474199965, 136.6061056389999, 136.51626438399967, 128.1501920520002, 140.42668695200018, 134.46714998199968, 146.65500456199993, 136.51626438399967, 132.2437536619998, 140.60611235199985, 136.51626438399967, 136.33731527200007, 134.28843950200007, 136.33731527200007, 140.51639965200002, 134.10972902199978, 142.29170924799996, 134.37779474199965, 144.520248562, 130.28818491799984, 140.51639965200002, 136.51626438399967, 138.47159474, 140.42668695200018, 126.10550621199991, 136.24784071599993, 132.15451749399972, 140.3369742519999, 136.24784071599993, 132.06528132599988, 140.24726155200005, 136.24784071599993, 142.29170924799996, 140.24726155200005, 138.02362659999994, 138.11322022800005, 140.157548852], \"power_mean\": 137.015358972923, \"energy_millijoules\": 5398.65366733487, \"energy_joules\": 5.39865366733487, \"coremark_score\": 6345.338714, \"coremarks_per_mhz\": 3.713330239934457, \"ulpmark_cm_score\": 46.30784180742167}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1423.03361054, 1412.793454724, 1423.03361054, 1414.844001896], \"power_mean\": 1418.426169425, \"energy_millijoules\": 7092.1308471249995, \"energy_joules\": 7.0921308471249995}}, \"1785600\": {\"active\": {\"elapsed_sec\": 37.708859673, \"elapsed_ns\": 37708859673, \"power_samples\": [140.24726155200005, 148.1583044539998, 144.07012446999988, 139.97775577699986, 150.20239444599997, 142.1120457039999, 140.0678361519997, 150.38338117000012, 146.02414430199997, 146.2046537619999, 145.93407414199964, 144.1604442099997, 146.2046537619999, 154.20421644700014, 142.0218457689998, 154.29476313899977, 143.98017338199998, 143.98017338199998, 146.11421446199984, 146.02414430199997, 139.88804307700002, 148.06811522199996, 146.02414430199997, 139.79833037699973, 154.20421644700014, 141.932013997, 143.98017338199998, 143.98017338199998, 145.7539338219999, 139.79833037699973, 146.02414430199997, 151.9793902869999, 145.7539338219999, 141.84218222499976, 147.79754752600002, 150.0217778379997, 145.93407414199964], \"power_mean\": 145.5985710625134, \"energy_millijoules\": 5490.356084785636, \"energy_joules\": 5.4903560847856365, \"coremark_score\": 6630.244523, \"coremarks_per_mhz\": 3.7131745760528676, \"ulpmark_cm_score\": 45.53438723087137}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1424.7482775960002, 1418.606452616, 1422.7024000600002, 1422.7024000600002], \"power_mean\": 1422.189882583, \"energy_millijoules\": 7110.949412915001, \"energy_joules\": 7.110949412915001}}}}, \"4\": {\"freqs\": {\"710400\": {\"active\": {\"elapsed_sec\": 90.436924809, \"elapsed_ns\": 90436924809, \"power_samples\": [125.66074841499994, 125.57186970700013, 125.74999137999998, 121.48392786699992, 125.57186970700013, 123.35037951499976, 121.48392786699992, 123.43913915099984, 125.57186970700013, 123.17286024299983, 123.35037951499976, 117.21499320999965, 127.4378450669999, 129.396648724, 119.43576848199973, 127.4378450669999, 123.35037951499976, 131.4402624280001, 131.61873476399956, 123.35037951499976, 123.35037951499976, 127.34884728700013, 123.35037951499976, 129.396648724, 135.53167756900007, 123.17286024299983, 131.35102625999957, 121.21800617500003, 123.26161987900014, 125.30523358300002, 123.17286024299983, 125.21635487499998, 125.30523358300002, 129.30753162799965, 127.25984950699967, 117.12659103400006, 129.21841453199977, 127.1708517269999, 123.17286024299983, 129.21841453199977, 125.21635487499998, 122.9953409709999, 131.26179009199973, 128.95069800999977, 133.12608896200004, 124.94935449400009, 121.0407250469998, 126.99249142200006, 120.86308063800016, 128.95069800999977, 126.99249142200006, 122.9062175659999, 124.94935449400009, 124.94935449400009, 118.81575695400011, 128.95069800999977, 129.1292974359999, 122.9953409709999, 126.90349364199983, 129.1292974359999, 129.03981510599988, 124.94935449400009, 124.86047578599982, 124.86047578599982, 118.81575695400011, 134.99446353400003, 124.94935449400009, 126.81449586200006, 124.86047578599982, 122.81745793000005, 124.86047578599982, 124.94935449400009, 128.95069800999977, 122.72869829399997, 122.72869829399997, 124.86047578599982, 133.03673372199978, 122.81745793000005, 130.99371586599977, 128.95069800999977, 128.772463818, 130.90447969799993, 118.55019320999986, 122.81745793000005, 122.72869829399997, 122.72869829399997, 126.72549808200006, 130.8152435300001, 124.68271836999998, 134.90498897800012], \"power_mean\": 125.77869952859992, \"energy_millijoules\": 11375.038791841795, \"energy_joules\": 11.375038791841794, \"coremark_score\": 2764.752721, \"coremarks_per_mhz\": 3.8918253392454956, \"ulpmark_cm_score\": 21.977947027248874}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1416.06556623, 1420.077398821, 1428.1782627599998, 1418.2758573100002], \"power_mean\": 1420.64927128025, \"energy_millijoules\": 7103.2463564012505, \"energy_joules\": 7.10324635640125}}, \"825600\": {\"active\": {\"elapsed_sec\": 38.877344047, \"elapsed_ns\": 38877344047, \"power_samples\": [199.56493520599997, 203.555063302, 199.65822226199998, 209.49621977199968, 201.4199495979999, 203.46153810199985, 207.54889869299973, 199.37836109399973, 213.6736642049998, 203.46153810199985, 205.5031266059998, 207.54889869299973, 199.2846917139998, 215.53056982199996, 209.49621977199968, 209.30845445199998, 203.46153810199985, 209.30845445199998, 209.59048719699967, 211.4436869839999, 203.36762960199985, 211.4436869839999, 205.2218100020002, 201.04594227400003, 213.29679524799985, 199.004830546, 215.34208958199974, 205.12816572999986, 200.95253614599983, 209.30845445199998, 211.06768005599997, 207.07969647599975, 205.03452145799997, 207.07969647599975, 204.94087718600008, 202.9935288019999, 208.93292381199967, 209.2145717919998], \"power_mean\": 206.3723672303683, \"energy_millijoules\": 8023.209522608857, \"energy_joules\": 8.023209522608857, \"coremark_score\": 6432.35733, \"coremarks_per_mhz\": 7.791130486918604, \"ulpmark_cm_score\": 31.159600069712383}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1423.420510995, 1423.420510995, 1423.503432687, 1425.464481915], \"power_mean\": 1423.9522341480001, \"energy_millijoules\": 7119.761170740001, \"energy_joules\": 7.119761170740001}}, \"940800\": {\"active\": {\"elapsed_sec\": 34.115641653, \"elapsed_ns\": 34115641653, \"power_samples\": [215.059369222, 221.2804122120001, 225.26732365599992, 223.22656914399977, 225.07726353700014, 224.88759208899978, 224.98242781299973, 231.2029925620002, 224.98242781299973, 231.012606194, 235.3836372789999, 222.94203100499976, 222.94203100499976, 224.98242781299973, 229.25755079400005, 237.23317094299978, 224.88759208899978, 233.05288393, 226.9278698249998, 224.88759208899978, 229.06740256999979, 228.8772543460002, 224.79275636499983, 233.05288393, 224.88759208899978, 228.97232845800022, 231.012606194, 228.8772543460002, 226.9278698249998, 218.8570562479997, 228.78218023399995, 228.78218023399995, 224.60308491699993, 230.91741301000025], \"power_mean\": 226.996636287647, \"energy_millijoules\": 7744.135900025741, \"energy_joules\": 7.744135900025741, \"coremark_score\": 7330.518414, \"coremarks_per_mhz\": 7.791792531887755, \"ulpmark_cm_score\": 32.28249132342435}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1426.93017992, 1431.0164537760002, 1424.9662373310002, 1424.9662373310002], \"power_mean\": 1426.9697770895002, \"energy_millijoules\": 7134.848885447501, \"energy_joules\": 7.134848885447501}}, \"1056000\": {\"active\": {\"elapsed_sec\": 30.398031342, \"elapsed_ns\": 30398031342, \"power_samples\": [241.218175771, 249.09885181699997, 251.041992682, 249.0021917219999, 254.92834904200004, 244.91840988199988, 248.80966059399998, 242.878608922, 246.5736258500001, 250.94560804599996, 246.7659183459998, 244.91840988199988, 248.7133950299999, 251.041992682, 248.80966059399998, 248.7133950299999, 248.7133950299999, 246.66977209799984, 248.7133950299999, 254.92834904200004, 256.77860709800007, 258.8179317700001, 256.8753491939999, 244.63032835399986, 244.43827400199962, 254.7351034820001, 244.53430117800008, 244.43827400199962, 248.4245983379999, 252.6957788100001], \"power_mean\": 249.12572344399993, \"energy_millijoules\": 7572.931549349134, \"energy_joules\": 7.572931549349134, \"coremark_score\": 8227.202422, \"coremarks_per_mhz\": 7.790911384469697, \"ulpmark_cm_score\": 33.01231476487947}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1424.4676524160002, 1428.556921088, 1420.38256928, 1432.642004224], \"power_mean\": 1426.5122867520001, \"energy_millijoules\": 7132.561433760001, \"energy_joules\": 7.132561433760001}}, \"1171200\": {\"active\": {\"elapsed_sec\": 27.404421969, \"elapsed_ns\": 27404421969, \"power_samples\": [80.80837621599994, 264.842866102, 258.8179317700001, 268.62850757299975, 268.7259643450002, 281.06669661000024, 262.80366050199996, 274.8470434599999, 262.5119638849999, 266.5896596769999, 268.62850757299975, 268.531050801, 264.3563745250001, 262.5119638849999, 264.45359315299993, 272.6126861719997, 270.573957348, 270.47638126000015, 268.531050801, 268.43359402900023, 272.6126861719997, 264.3563745250001, 268.3361372569998, 272.6126861719997, 264.2591558969998, 274.55360076400007, 268.43359402900023], \"power_mean\": 261.25615053714813, \"energy_millijoules\": 7159.573791316594, \"energy_joules\": 7.159573791316594, \"coremark_score\": 9126.752336, \"coremarks_per_mhz\": 7.792650560109289, \"ulpmark_cm_score\": 34.91827967514066}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1430.0987315159998, 1419.968216825, 1432.307592756, 1420.0510194450003], \"power_mean\": 1425.6063901355, \"energy_millijoules\": 7128.0319506775, \"energy_joules\": 7.1280319506775}}, \"1286400\": {\"active\": {\"elapsed_sec\": 24.960207751, \"elapsed_ns\": 24960207751, \"power_samples\": [284.558184322, 290.47535977000007, 274.35797230000003, 290.47535977000007, 282.51563572300006, 296.69346620500005, 292.41878263600006, 288.43722679400025, 288.43722679400025, 278.34083988700013, 290.37659247399984, 294.35779085600007, 292.5176692480002, 288.63492753800006, 294.35779085600007, 280.28051838800025, 288.23993034599994, 292.31989602399995, 292.31989602399995, 296.3956856880002, 284.1641406819999, 294.2587851720002, 288.23993034599994, 296.2965609320004], \"power_mean\": 289.14459036562505, \"energy_millijoules\": 7217.109045603794, \"energy_joules\": 7.217109045603793, \"coremark_score\": 10020.441701, \"coremarks_per_mhz\": 7.789522466573382, \"ulpmark_cm_score\": 34.63990891924852}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1429.6813986000002, 1431.8061466959998, 1425.68209708, 1423.719604878], \"power_mean\": 1427.7223118135, \"energy_millijoules\": 7138.6115590675, \"energy_joules\": 7.1386115590675}}, \"1401600\": {\"active\": {\"elapsed_sec\": 22.908251242, \"elapsed_ns\": 22908251242, \"power_samples\": [306.4937912720002, 300.27692507799975, 310.46938404399975, 306.19462945999953, 310.2694665479996, 310.2694665479996, 298.0407802459997, 320.36435474799987, 318.3228804820001, 314.3484786739998, 312.31106012999976, 308.2320480039996, 310.06913938499974, 312.31106012999976, 310.1695077999998, 314.2482815379999, 314.1476737580001, 316.38589721799985, 314.1476737580001, 303.7542225239997, 303.9534251, 322.09922061899965], \"power_mean\": 310.76724395745435, \"energy_millijoules\": 7119.13410236127, \"energy_joules\": 7.11913410236127, \"coremark_score\": 10918.460934, \"coremarks_per_mhz\": 7.789997812500001, \"ulpmark_cm_score\": 35.1166302538226}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1429.431203928, 1429.514602152, 1429.514602152, 1419.30545651], \"power_mean\": 1426.9414661855, \"energy_millijoules\": 7134.7073309275, \"energy_joules\": 7.1347073309275}}, \"1497600\": {\"active\": {\"elapsed_sec\": 21.448242804, \"elapsed_ns\": 21448242804, \"power_samples\": [328.2142199839998, 344.41611805799994, 330.2511617519999, 344.41611805799994, 344.1101654820002, 328.01215772800015, 338.19984942099995, 334.126442173, 337.99659595699995, 337.99659595699995, 337.89455272200007, 333.92366499699983, 341.86955228199986, 329.8465609519999, 327.708650282, 331.88302643199995, 335.85820680200004, 331.88302643199995, 331.78134212200007, 333.7204722939996, 343.9057791299999], \"power_mean\": 335.6197266198571, \"energy_millijoules\": 7198.453386354797, \"energy_joules\": 7.198453386354797, \"coremark_score\": 11662.623624, \"coremarks_per_mhz\": 7.787542483974359, \"ulpmark_cm_score\": 34.72968241676658}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1425.0996357, 1427.14015158, 1425.2662966799999, 1431.22118334], \"power_mean\": 1427.181816825, \"energy_millijoules\": 7135.909084125, \"energy_joules\": 7.135909084125}}, \"1612800\": {\"active\": {\"elapsed_sec\": 19.936821347, \"elapsed_ns\": 19936821347, \"power_samples\": [364.487339537, 366.1102028140001, 370.08281922599963, 364.07421410999996, 370.18635232999986, 378.1264599819999, 374.0507872419996, 376.0907094219999, 372.01503668199985, 384.13351618599995, 384.13351618599995, 377.91801444099997, 379.953526369, 371.80730752599993, 379.953526369, 375.8825025130002, 373.7390482059998, 377.70999516899997, 377.91801444099997], \"power_mean\": 374.6512046711052, \"energy_millijoules\": 7469.3541349661555, \"energy_joules\": 7.469354134966156, \"coremark_score\": 12546.421761, \"coremarks_per_mhz\": 7.779279365699405, \"ulpmark_cm_score\": 33.470096005982555}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1430.970631452, 1420.5165525600003, 1428.67993632, 1430.970631452], \"power_mean\": 1427.784437946, \"energy_millijoules\": 7138.92218973, \"energy_joules\": 7.138922189730001}}, \"1708800\": {\"active\": {\"elapsed_sec\": 18.77998593, \"elapsed_ns\": 18779985930, \"power_samples\": [61.14652088599996, 426.15828419800005, 414.04731403999995, 407.726367448, 422.0845195390002, 418.22353947199986, 413.83457067799986, 411.79989274199966, 417.9039265499996, 419.94277390799994, 411.6938576619998, 413.7284165259998, 421.7641904760003, 415.9759573839999, 423.9053800239999, 423.7986302680001, 417.79753425399963, 417.79753425399963], \"power_mean\": 397.74051168383323, \"energy_millijoules\": 7469.561213213388, \"energy_joules\": 7.469561213213388, \"coremark_score\": 13319.8359, \"coremarks_per_mhz\": 7.7948477879213485, \"ulpmark_cm_score\": 33.46916811629563}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1434.4684963840002, 1432.5964449360001, 1430.469185392, 1420.350709176], \"power_mean\": 1429.471208972, \"energy_millijoules\": 7147.35604486, \"energy_joules\": 7.14735604486}}, \"1804800\": {\"active\": {\"elapsed_sec\": 17.781258952, \"elapsed_ns\": 17781258952, \"power_samples\": [444.0475937819997, 451.9722098720001, 454.1148292599996, 447.79586512399965, 455.82678565799984, 455.82678565799984, 459.78557927399993, 457.96985060199995, 459.78557927399993, 459.78557927399993, 455.82678565799984, 453.46316356499983, 463.7480638269999, 453.68023718899985, 457.534304002, 459.6766850020001, 453.57170037699984], \"power_mean\": 455.5536233763528, \"energy_millijoules\": 8100.31694377681, \"energy_joules\": 8.10031694377681, \"coremark_score\": 14068.655037, \"coremarks_per_mhz\": 7.795132445146277, \"ulpmark_cm_score\": 30.862989897212138}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1424.26769408, 1424.26769408, 1420.1019440999999, 1430.385668096], \"power_mean\": 1424.755750089, \"energy_millijoules\": 7123.778750445, \"energy_joules\": 7.123778750445}}, \"1920000\": {\"active\": {\"elapsed_sec\": 16.778723015, \"elapsed_ns\": 16778723015, \"power_samples\": [502.0732214079999, 508.0653799449999, 501.8499723699997, 509.986178182, 501.73857612200004, 507.8414145219999, 511.7993699459996, 503.66411719799976, 505.69688900599976, 511.6873778499996, 499.59440806599946, 511.91136204200006, 505.5852543699998, 503.32957050599975, 511.46339365799963, 511.5753857540001], \"power_mean\": 506.7413669340623, \"energy_millijoules\": 8502.47303602911, \"energy_joules\": 8.50247303602911, \"coremark_score\": 14909.351145, \"coremarks_per_mhz\": 7.765287054687501, \"ulpmark_cm_score\": 29.403209976747764}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1431.9270092670004, 1429.8842220360002, 1430.051256628, 1428.0124087319998], \"power_mean\": 1429.96872416575, \"energy_millijoules\": 7149.84362082875, \"energy_joules\": 7.14984362082875}}, \"2016000\": {\"active\": {\"elapsed_sec\": 15.92900515, \"elapsed_ns\": 15929005150, \"power_samples\": [551.9032911570002, 553.8251373400001, 552.018134662, 553.5961491959999, 561.727587735, 557.5450544680002, 563.7594064789998, 557.659786684, 559.6916054279998, 553.367161052, 565.4455989789999, 557.315590036, 553.25266698, 567.3658952740002, 555.3987416519999], \"power_mean\": 557.5914538081333, \"energy_millijoules\": 8881.877139305743, \"energy_joules\": 8.881877139305743, \"coremark_score\": 15706.477351, \"coremarks_per_mhz\": 7.790911384424603, \"ulpmark_cm_score\": 28.14720312822762}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1427.5954176120001, 1433.7981076510002, 1433.7981076510002, 1431.8433726550002], \"power_mean\": 1431.7587513922501, \"energy_millijoules\": 7158.79375696125, \"energy_joules\": 7.15879375696125}}, \"2131200\": {\"active\": {\"elapsed_sec\": 15.061043848, \"elapsed_ns\": 15061043848, \"power_samples\": [610.0448997850001, 627.7444714659998, 633.8408726559999, 627.5066671139998, 631.4522160749998, 633.4826049789999, 627.3872776339997, 635.3936151750001, 637.4238850070001, 641.3688488920002, 631.3330755110001, 631.4522160749998, 639.338698132, 637.0653916669999, 635.035479051], \"power_mean\": 631.9913479479333, \"energy_millijoules\": 9518.449403000448, \"energy_joules\": 9.518449403000448, \"coremark_score\": 16612.399495, \"coremarks_per_mhz\": 7.794857120401653, \"ulpmark_cm_score\": 26.26478215256299}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1427.178084696, 1431.257573598, 1431.424846822, 1433.5464973379999], \"power_mean\": 1430.8517506135, \"energy_millijoules\": 7154.258753067499, \"energy_joules\": 7.1542587530674995}}, \"2227200\": {\"active\": {\"elapsed_sec\": 14.420692754, \"elapsed_ns\": 14420692754, \"power_samples\": [688.8226369219994, 689.5081076859999, 687.3519175620002, 697.26126985, 693.4443837619999, 694.9820083219995, 697.0151255779999, 692.9530487699997, 707.1640810419997, 707.1640810419997, 704.887517807, 707.0404133019999, 700.825918752, 706.7925709869999], \"power_mean\": 698.2295058131427, \"energy_millijoules\": 10068.953175108587, \"energy_joules\": 10.068953175108588, \"coremark_score\": 17349.063151, \"coremarks_per_mhz\": 7.7896296475395115, \"ulpmark_cm_score\": 24.828797557428697}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1431.173936986, 1435.2490122180002, 1431.090300374, 1429.2157413839998], \"power_mean\": 1431.6822477404999, \"energy_millijoules\": 7158.4112387025, \"energy_joules\": 7.1584112387025}}, \"2323200\": {\"active\": {\"elapsed_sec\": 13.832826609, \"elapsed_ns\": 13832826609, \"power_samples\": [150.44223424200004, 761.5980766509995, 761.2174227429998, 761.0905381069999, 762.9916599589999, 760.8362488159999, 768.6972296979995, 765.0196664470002, 770.852358722, 766.6695809140003, 768.5698685300001, 768.5698685300001, 760.4555949080002], \"power_mean\": 717.4623344820769, \"energy_millijoules\": 9924.532071378932, \"energy_joules\": 9.924532071378932, \"coremark_score\": 18088.416178, \"coremarks_per_mhz\": 7.785991812155648, \"ulpmark_cm_score\": 25.190104500842686}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1436.870410518, 1437.038398662, 1436.870410518, 1438.9073522859999], \"power_mean\": 1437.421642996, \"energy_millijoules\": 7187.1082149799995, \"energy_joules\": 7.187108214979999}}, \"2419200\": {\"active\": {\"elapsed_sec\": 13.284822495, \"elapsed_ns\": 13284822495, \"power_samples\": [833.0946912759998, 832.8318063429995, 840.6803949519992, 846.6326275170002, 846.5006198569997, 852.7165102819997, 848.6592041650003, 840.1532546019996, 842.179473546, 845.9720482020005, 850.2885014099995, 852.1865073219999, 856.1061038020005], \"power_mean\": 845.230903328923, \"energy_millijoules\": 11228.742518013247, \"energy_joules\": 11.228742518013247, \"coremark_score\": 18835.229413, \"coremarks_per_mhz\": 7.785726443865742, \"ulpmark_cm_score\": 22.264291802839704}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1436.45009592, 1432.541085869, 1442.64383067, 1428.4637434359997], \"power_mean\": 1435.02468897375, \"energy_millijoules\": 7175.12344486875, \"energy_joules\": 7.17512344486875}}}}, \"7\": {\"freqs\": {\"825600\": {\"active\": {\"elapsed_sec\": 77.763122783, \"elapsed_ns\": 77763122783, \"power_samples\": [153.33697238800005, 163.42325477999998, 157.22390925399986, 157.22390925399986, 159.26263729599987, 161.388576844, 161.29719615999988, 153.15479152599983, 167.6806323379999, 169.43960079399994, 157.22390925399986, 157.40656738000007, 157.58885197199993, 161.388576844, 165.55409669799997, 163.51512953500014, 157.40656738000007, 163.42325477999998, 155.37176988400006, 159.53679615500005, 155.37176988400006, 161.48033203900013, 159.53679615500005, 155.46279310799991, 167.58889419399998, 153.24569567799972, 153.24569567799972, 157.40656738000007, 153.33697238800005, 153.42787653999994, 157.40656738000007, 163.42325477999998, 157.31505154999968, 161.29719615999988, 153.42787653999994, 153.24569567799972, 159.44553454300012, 161.388576844, 159.44553454300012, 155.37176988400006, 163.42325477999998, 153.24569567799972, 153.42787653999994, 157.31505154999968, 157.31505154999968, 159.26263729599987, 155.28037361399993, 157.22390925399986, 159.3538989079998, 157.31505154999968, 157.31505154999968, 157.31505154999968, 163.606629291, 149.17217038399963, 167.49678007399984, 159.3538989079998, 161.388576844, 161.388576844, 153.42787653999994, 157.22390925399986, 151.1202326619998, 159.26263729599987, 159.17137568399994, 159.26263729599987, 163.42325477999998, 151.1202326619998, 159.26263729599987, 157.13276695800005, 151.30217489200004, 159.26263729599987, 151.30217489200004, 161.29719615999988, 159.26263729599987, 149.08150462000003, 163.3317550239999, 151.1202326619998, 151.1202326619998], \"power_mean\": 158.07019602024667, \"energy_millijoules\": 12292.03206145532, \"energy_joules\": 12.29203206145532, \"coremark_score\": 3215.434084, \"coremarks_per_mhz\": 3.8946633769379844, \"ulpmark_cm_score\": 20.338378451186788}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1434.0740781359998, 1432.038208504, 1438.1499892639997, 1436.282107776], \"power_mean\": 1435.13609592, \"energy_millijoules\": 7175.6804796, \"energy_joules\": 7.1756804795999996}}, \"940800\": {\"active\": {\"elapsed_sec\": 34.120166446, \"elapsed_ns\": 34120166446, \"power_samples\": [262.49908272699986, 270.24736928799985, 255.908481982, 274.2202187170001, 266.083057888, 267.9205157619997, 274.2202187170001, 263.9481860389999, 269.95352571399985, 263.85032985399994, 269.85571148200006, 265.88750581, 271.88860236200003, 269.95352571399985, 267.7251254419998, 269.95352571399985, 271.88860236200003, 269.85571148200006, 267.7251254419998, 273.9256590020002, 269.95352571399985, 263.65541630999996, 269.7578972499998, 261.62264450199996, 277.7948592339999, 265.6923536339998, 265.6923536339998, 271.69273575399984, 269.7578972499998, 277.8931499979999, 263.65541630999996, 273.8276063819999, 263.460502766, 275.66403480600025], \"power_mean\": 268.7538375012941, \"energy_millijoules\": 9169.925668545391, \"energy_joules\": 9.16992566854539, \"coremark_score\": 7329.658731, \"coremarks_per_mhz\": 7.790878753188776, \"ulpmark_cm_score\": 27.263034514832338}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1432.038208504, 1436.1981137040002, 1426.26002064, 1432.2894755559998], \"power_mean\": 1431.696454601, \"energy_millijoules\": 7158.482273005, \"energy_joules\": 7.158482273005}}, \"1056000\": {\"active\": {\"elapsed_sec\": 30.398942488, \"elapsed_ns\": 30398942488, \"power_samples\": [279.53644700199993, 297.9349179779997, 285.63333356199996, 291.7343846619999, 291.83350941799995, 289.602677697, 293.5719498400001, 289.702089142, 299.767721792, 289.702089142, 289.702089142, 287.4716151250002, 291.5357289010001, 289.602677697, 287.5705017370001, 291.5357289010001, 293.5719498400001, 293.37346169600005, 287.66979362200004, 297.4370991840001, 283.2060408499999, 287.27384190099997, 289.305660645, 297.337616968, 289.40466632900007, 293.37346169600005, 293.37346169600005, 295.40528044000007, 299.4689179279999, 287.07606867699997], \"power_mean\": 291.123826107, \"energy_millijoules\": 8849.856446713206, \"energy_joules\": 8.849856446713206, \"coremark_score\": 8226.931684, \"coremarks_per_mhz\": 7.790655003787878, \"ulpmark_cm_score\": 28.249045790211525}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1435.777799106, 1431.7865981910004, 1433.738235363, 1431.7865981910004], \"power_mean\": 1433.2723077127503, \"energy_millijoules\": 7166.361538563751, \"energy_joules\": 7.166361538563751}}, \"1171200\": {\"active\": {\"elapsed_sec\": 27.406694677, \"elapsed_ns\": 27406694677, \"power_samples\": [309.636338774, 309.636338774, 319.4972178369999, 313.49910570199995, 323.5643037240002, 317.46575630899997, 317.3650826410001, 317.46575630899997, 313.3986704220001, 317.3650826410001, 309.1349424499999, 317.06264904, 313.19738824199976, 319.2952192719997, 317.1633227079999, 323.26079627800004, 311.26689268600035, 325.3930503019999, 313.19738824199976, 307.00364149000006, 316.96197537199987, 319.093633792, 317.06264904, 312.9965176819999, 319.093633792, 317.06264904, 316.96197537199987], \"power_mean\": 316.0778510345555, \"energy_millijoules\": 8662.649157466352, \"energy_joules\": 8.662649157466353, \"coremark_score\": 9125.419769, \"coremarks_per_mhz\": 7.791512780908469, \"ulpmark_cm_score\": 28.85953193481518}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1437.5608525299997, 1431.367819771, 1433.3188615830002, 1427.210299428], \"power_mean\": 1432.364458328, \"energy_millijoules\": 7161.82229164, \"energy_joules\": 7.16182229164}}, \"1286400\": {\"active\": {\"elapsed_sec\": 24.950111918, \"elapsed_ns\": 24950111918, \"power_samples\": [335.349835516, 337.2831170019997, 343.277653072, 337.18125188199997, 339.00803010599975, 339.21199849000004, 337.079386762, 343.0732079119998, 337.079386762, 335.14634390799984, 336.97752164199983, 347.13422483999966, 339.00803010599975, 344.8986136389999, 336.87523904199975, 342.868343807, 330.77991169699976, 338.9056279460001, 336.87523904199975, 330.77991169699976, 332.8103006009999, 344.8986136389999, 336.67150880200006, 336.87523904199975], \"power_mean\": 338.3353557064165, \"energy_millijoules\": 8441.504990691432, \"energy_joules\": 8.441504990691431, \"coremark_score\": 10024.459682, \"coremarks_per_mhz\": 7.792645897077114, \"ulpmark_cm_score\": 29.61557213739476}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1431.116209458, 1431.032453774, 1435.105502292, 1437.139942084], \"power_mean\": 1433.598526902, \"energy_millijoules\": 7167.99263451, \"energy_joules\": 7.16799263451}}, \"1401600\": {\"active\": {\"elapsed_sec\": 22.900690824, \"elapsed_ns\": 22900690824, \"power_samples\": [363.69685567199986, 359.0156475970002, 352.9210351720003, 366.9331064299997, 360.8392089250001, 364.9031938139997, 368.9630190459998, 362.8691215409999, 358.60294502099987, 360.8392089250001, 364.79966070999967, 368.8592477979996, 376.66941080200013, 358.60294502099987, 360.5289014379998, 362.6622939649999, 372.81898466300004, 368.6512800099997, 368.547508762, 366.5180729219999, 366.5180729219999, 370.5811032820002], \"power_mean\": 364.78821929263626, \"energy_millijoules\": 8353.902226258175, \"energy_joules\": 8.353902226258175, \"coremark_score\": 10922.277076, \"coremarks_per_mhz\": 7.792720516552512, \"ulpmark_cm_score\": 29.926134305737303}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1434.8535200760002, 1428.8307407580003, 1434.7695260039998, 1440.955767804], \"power_mean\": 1434.8523886605, \"energy_millijoules\": 7174.2619433025, \"energy_joules\": 7.1742619433025006}}, \"1497600\": {\"active\": {\"elapsed_sec\": 21.42817619, \"elapsed_ns\": 21428176190, \"power_samples\": [378.70300532199985, 378.70300532199985, 374.4317175460001, 386.824907362, 386.824907362, 378.49427113, 380.4189826579998, 384.3724155939999, 388.64441780200013, 386.40553284999964, 384.47713990600005, 382.34345604199984, 392.49656920999973, 382.34345604199984, 386.40553284999964, 382.2388508019999, 378.2855369379997, 384.16253777199995, 376.14817190199983, 392.2857358819999, 384.16253777199995], \"power_mean\": 383.2939375269523, \"energy_millijoules\": 8213.290025886387, \"energy_joules\": 8.213290025886387, \"coremark_score\": 11673.515129, \"coremarks_per_mhz\": 7.794815123530983, \"ulpmark_cm_score\": 30.43847218496582}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1434.349211406, 1438.500178934, 1426.3744419, 1440.702368238], \"power_mean\": 1434.9815501194998, \"energy_millijoules\": 7174.907750597499, \"energy_joules\": 7.174907750597499}}, \"1612800\": {\"active\": {\"elapsed_sec\": 19.90903218, \"elapsed_ns\": 19909032180, \"power_samples\": [404.35630285299976, 402.4334976970001, 406.4950967519999, 404.35630285299976, 402.2219043130001, 408.31150936799986, 396.23773848999963, 406.1769915120001, 406.1769915120001, 412.3684749199999, 400.19342153699995, 405.9649213519999, 402.01031092899984, 406.1769915120001, 408.09920106399977, 412.15569032799976, 409.914899248, 405.85888627200006, 410.02117247199976], \"power_mean\": 405.76475289389464, \"energy_millijoules\": 8078.383522874296, \"energy_joules\": 8.078383522874297, \"coremark_score\": 12564.076792, \"coremarks_per_mhz\": 7.790226185515873, \"ulpmark_cm_score\": 30.94678524386891}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1436.214352774, 1434.181223262, 1434.181223262, 1438.1629048559998], \"power_mean\": 1435.6849260385, \"energy_millijoules\": 7178.4246301924995, \"energy_joules\": 7.1784246301925}}, \"1708800\": {\"active\": {\"elapsed_sec\": 18.784332961, \"elapsed_ns\": 18784332961, \"power_samples\": [422.1982378219998, 426.1472626540001, 418.0310809509999, 428.07163934799996, 421.98382305799987, 428.1794248929998, 429.9920615999997, 423.9046027699999, 431.9122457079998, 425.7179180500002, 438.10728828599986, 425.7179180500002, 427.85694814, 425.7179180500002, 427.7496025359999, 433.8363464460001, 431.5894944639999, 423.6903883380003], \"power_mean\": 427.2446778424444, \"energy_millijoules\": 8025.506284407655, \"energy_joules\": 8.025506284407655, \"coremark_score\": 13316.997816, \"coremarks_per_mhz\": 7.793186924157303, \"ulpmark_cm_score\": 31.150682728354745}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1441.8952083479999, 1441.8107377439999, 1433.844902736, 1437.910208208], \"power_mean\": 1438.865264259, \"energy_millijoules\": 7194.3263212950005, \"energy_joules\": 7.194326321295001}}, \"1804800\": {\"active\": {\"elapsed_sec\": 17.789023379, \"elapsed_ns\": 17789023379, \"power_samples\": [442.1669792599996, 437.7834646619997, 441.7342608759998, 441.8424404719997, 445.89726175199985, 445.6804262720002, 449.7389253060003, 443.65325377599993, 453.90216456999997, 437.4591986559999, 447.2730066969996, 447.5986171329996, 447.4900803209998, 447.4900803209998, 449.3038554819998, 451.3305512019997, 451.54810160199986], \"power_mean\": 445.9936863741175, \"energy_millijoules\": 7933.79211379557, \"energy_joules\": 7.93379211379557, \"coremark_score\": 14062.324221, \"coremarks_per_mhz\": 7.79162467918883, \"ulpmark_cm_score\": 31.51078279014783}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1435.6252160400002, 1433.59292052, 1439.68980708, 1429.607920624], \"power_mean\": 1434.628966066, \"energy_millijoules\": 7173.14483033, \"energy_joules\": 7.17314483033}}, \"1920000\": {\"active\": {\"elapsed_sec\": 16.715610879, \"elapsed_ns\": 16715610879, \"power_samples\": [498.4201435040002, 495.83137918399984, 501.5795428179997, 497.5271049299997, 495.4967338979998, 503.38201620200016, 501.3560354020001, 499.441689238, 499.441689238, 497.41558936599995, 495.273941402, 487.0549468859999, 497.30407380199995, 501.2442816939997, 495.16254515399964, 496.96952710999994], \"power_mean\": 497.6813274892499, \"energy_millijoules\": 8319.047412054468, \"energy_joules\": 8.319047412054468, \"coremark_score\": 14965.579168, \"coremarks_per_mhz\": 7.794572483333334, \"ulpmark_cm_score\": 30.051517633827277}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1437.2360052660001, 1443.3352676010002, 1435.204305594, 1427.240616811], \"power_mean\": 1435.7540488180002, \"energy_millijoules\": 7178.770244090001, \"energy_joules\": 7.178770244090001}}, \"2016000\": {\"active\": {\"elapsed_sec\": 15.922868119, \"elapsed_ns\": 15922868119, \"power_samples\": [115.87862668000002, 537.50275313, 543.355263382, 541.2152735570003, 545.1514305609999, 539.0718402459997, 537.0466934379997, 535.0215466299996, 549.2058740679997, 542.897772385, 538.8438056539999, 540.8728637210002, 546.9517391160002, 540.7587271089997, 536.81889699], \"power_mean\": 512.7062071111333, \"energy_millijoules\": 8163.753319623275, \"energy_joules\": 8.163753319623275, \"coremark_score\": 15711.41277, \"coremarks_per_mhz\": 7.793359508928572, \"ulpmark_cm_score\": 30.6231692962933}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1443.081498573, 1432.7522913239998, 1433.004617778, 1445.2822585249996], \"power_mean\": 1438.5301665499999, \"energy_millijoules\": 7192.65083275, \"energy_joules\": 7.192650832749999}}, \"2131200\": {\"active\": {\"elapsed_sec\": 15.073017702, \"elapsed_ns\": 15073017702, \"power_samples\": [601.0642828239997, 592.962883378, 595.1045494580003, 607.1413694539999, 588.6761179560001, 604.8811584140003, 592.6111808019998, 596.663239452, 604.763209302, 590.4701100820002, 604.6452601900003, 596.4282942919999, 608.6929332460002, 604.6452601900003, 600.4757292040001], \"power_mean\": 599.2817052162667, \"energy_millijoules\": 9032.983751209533, \"energy_joules\": 9.032983751209533, \"coremark_score\": 16599.163402, \"coremarks_per_mhz\": 7.788646491178678, \"ulpmark_cm_score\": 27.676347803296398}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1436.6460345399998, 1438.6769002199999, 1428.602165894, 1432.836285396], \"power_mean\": 1434.1903465125, \"energy_millijoules\": 7170.951732562499, \"energy_joules\": 7.170951732562499}}, \"2227200\": {\"active\": {\"elapsed_sec\": 14.418448432, \"elapsed_ns\": 14418448432, \"power_samples\": [616.7924265639999, 620.4870529939997, 612.5074168689998, 628.4657360550002, 620.4870529939997, 620.368150818, 632.277367596, 630.2501002470001, 626.442376303, 617.8696586499998, 624.0615948590003, 620.0114442899999, 623.9424542949998, 613.8197464689997], \"power_mean\": 621.9844699287856, \"energy_millijoules\": 8968.05100517305, \"energy_joules\": 8.96805100517305, \"coremark_score\": 17352.675783, \"coremarks_per_mhz\": 7.791251698545259, \"ulpmark_cm_score\": 27.876737080976927}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1442.404087807, 1438.6769002199999, 1438.592548932, 1432.332320964], \"power_mean\": 1438.00146448075, \"energy_millijoules\": 7190.00732240375, \"energy_joules\": 7.1900073224037495}}, \"2323200\": {\"active\": {\"elapsed_sec\": 13.827455412, \"elapsed_ns\": 13827455412, \"power_samples\": [690.4882672179999, 698.0887966379994, 702.0093469139995, 701.8850527789998, 706.0575894020001, 705.9330559020002, 709.732531849, 705.809030702, 707.8308415419999, 701.5136923429998, 705.6850055019997, 709.4840046730003, 705.4369551020002], \"power_mean\": 703.8426285050768, \"energy_millijoules\": 9732.35256271883, \"energy_joules\": 9.73235256271883, \"coremark_score\": 18094.962362, \"coremarks_per_mhz\": 7.788809556646005, \"ulpmark_cm_score\": 25.687519886780592}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1444.180350467, 1440.1202870909997, 1436.056063814, 1438.1704467900001], \"power_mean\": 1439.6317870405, \"energy_millijoules\": 7198.1589352025, \"energy_joules\": 7.198158935202501}}, \"2419200\": {\"active\": {\"elapsed_sec\": 13.274836766, \"elapsed_ns\": 13274836766, \"power_samples\": [722.1167817960002, 727.6853719350004, 739.4437097919997, 727.3088510919999, 735.2715641059997, 739.3176591479998, 739.3176591479998, 743.1070352680001, 743.1070352680001, 743.1070352680001, 747.1526535340001, 741.21246628, 745.0055067259998], \"power_mean\": 737.9348714893076, \"energy_millijoules\": 9795.964962959746, \"energy_joules\": 9.795964962959745, \"coremark_score\": 18849.430747, \"coremarks_per_mhz\": 7.791596704282408, \"ulpmark_cm_score\": 25.520711940609594}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1433.773692694, 1437.6639933600002, 1439.782058484, 1433.8578058379999], \"power_mean\": 1436.269387594, \"energy_millijoules\": 7181.34693797, \"energy_joules\": 7.18134693797}}, \"2534400\": {\"active\": {\"elapsed_sec\": 12.66351786, \"elapsed_ns\": 12663517860, \"power_samples\": [814.1352159840001, 819.1552220779997, 821.0443105819998, 822.8062452510001, 824.8259118190001, 824.8259118190001, 828.6024213309995, 824.4318532179998, 830.3623866099999, 828.3390591340001, 822.2814897580004, 832.3815764019998], \"power_mean\": 824.4326336654999, \"energy_millijoules\": 10440.217380789896, \"energy_joules\": 10.440217380789896, \"coremark_score\": 19761.283693, \"coremarks_per_mhz\": 7.797223679371844, \"ulpmark_cm_score\": 23.945861554569017}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1427.345144112, 1447.5646485120003, 1437.495290784, 1443.502333316], \"power_mean\": 1438.9768541810001, \"energy_millijoules\": 7194.884270905, \"energy_joules\": 7.194884270905001}}, \"2649600\": {\"active\": {\"elapsed_sec\": 12.114384631, \"elapsed_ns\": 12114384631, \"power_samples\": [524.3215962879999, 898.5097516059998, 902.1432982020003, 912.102797413, 914.125169872, 915.8700982960002, 912.102797413, 921.6542060670001, 917.614550432, 915.459575782, 927.4321867439996, 923.534273812], \"power_mean\": 882.0725251605834, \"energy_millijoules\": 10685.765842232731, \"energy_joules\": 10.685765842232732, \"coremark_score\": 20657.742522, \"coremarks_per_mhz\": 7.796551374547102, \"ulpmark_cm_score\": 23.395609045814904}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1437.326588208, 1437.15753993, 1433.1845559600001, 1437.326588208], \"power_mean\": 1436.2488180765, \"energy_millijoules\": 7181.244090382499, \"energy_joules\": 7.181244090382499}}, \"2745600\": {\"active\": {\"elapsed_sec\": 11.693803902, \"elapsed_ns\": 11693803902, \"power_samples\": [981.376006792, 991.4653676819996, 997.0954410909997, 1007.3292799210001, 1006.9028760130002, 1002.723948352, 1010.7934025769998, 1008.6348182689997, 1010.365700742, 1010.2233279620002, 1010.2233279620002], \"power_mean\": 1003.3757724875454, \"energy_millijoules\": 11733.279523487125, \"energy_joules\": 11.733279523487125, \"coremark_score\": 21400.445129, \"coremarks_per_mhz\": 7.794451168779138, \"ulpmark_cm_score\": 21.306915896750077}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1436.820134778, 1440.9653699570001, 1441.0499596329996, 1445.111081912], \"power_mean\": 1440.98663657, \"energy_millijoules\": 7204.93318285, \"energy_joules\": 7.20493318285}}, \"2841600\": {\"active\": {\"elapsed_sec\": 11.300311819, \"elapsed_ns\": 11300311819, \"power_samples\": [1066.7002818179997, 1080.379892062, 1082.1020650459993, 1085.8423091519996, 1095.9215374510002, 1091.7442401270002, 1101.8228728220004, 1095.4790500390002, 1103.5459573170003, 1109.2932855729998, 1095.1840584309996], \"power_mean\": 1091.637777258, \"energy_millijoules\": 12335.847276415465, \"energy_joules\": 12.335847276415464, \"coremark_score\": 22147.413182, \"coremarks_per_mhz\": 7.793993940737613, \"ulpmark_cm_score\": 20.26613935776973}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1432.510961356, 1442.739607417, 1436.6514322020003, 1440.711600929], \"power_mean\": 1438.1534004760001, \"energy_millijoules\": 7190.76700238, \"energy_joules\": 7.19076700238}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm8150/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 cpu7 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nBaseline power usage: 1400 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 403 499 576 672 768 844 940 1036 1113 1209 1305 1382 1478 1555 1632 1708 1785\n\n 300:  1114     3.7 C/MHz     52 mW   11.8 J   21.3 I/mJ   224.4 s\n 403:  1497     3.7 C/MHz     57 mW    9.5 J   26.2 I/mJ   167.0 s\n 499:  1854     3.7 C/MHz     73 mW    9.8 J   25.5 I/mJ   134.9 s\n 576:  2139     3.7 C/MHz     83 mW    9.7 J   25.8 I/mJ   116.9 s\n 672:  2495     3.7 C/MHz     65 mW    6.5 J   38.6 I/mJ   100.2 s\n 768:  2852     3.7 C/MHz     72 mW    6.3 J   39.4 I/mJ    87.7 s\n 844:  3137     3.7 C/MHz     77 mW    6.2 J   40.5 I/mJ    79.7 s\n 940:  3493     3.7 C/MHz     84 mW    6.0 J   41.8 I/mJ    71.6 s\n1036:  3850     3.7 C/MHz     91 mW    5.9 J   42.5 I/mJ    64.9 s\n1113:  4135     3.7 C/MHz     96 mW    5.8 J   43.2 I/mJ    60.5 s\n1209:  4491     3.7 C/MHz    102 mW    5.7 J   44.2 I/mJ    55.7 s\n1305:  4848     3.7 C/MHz    110 mW    5.7 J   44.0 I/mJ    51.6 s\n1382:  5133     3.7 C/MHz    114 mW    5.5 J   45.2 I/mJ    48.7 s\n1478:  5490     3.7 C/MHz    120 mW    5.5 J   45.7 I/mJ    45.5 s\n1555:  5775     3.7 C/MHz    126 mW    5.5 J   45.8 I/mJ    43.3 s\n1632:  6060     3.7 C/MHz    131 mW    5.4 J   46.1 I/mJ    41.3 s\n1708:  6345     3.7 C/MHz    137 mW    5.4 J   46.3 I/mJ    39.4 s\n1785:  6630     3.7 C/MHz    146 mW    5.5 J   45.5 I/mJ    37.7 s\n\n\n===== CPU 4 =====\nFrequencies: 710 825 940 1056 1171 1286 1401 1497 1612 1708 1804 1920 2016 2131 2227 2323 2419\n\n 710:  2765     3.9 C/MHz    126 mW   11.4 J   22.0 I/mJ    90.4 s\n 825:  6432     7.8 C/MHz    206 mW    8.0 J   31.2 I/mJ    38.9 s\n 940:  7331     7.8 C/MHz    227 mW    7.7 J   32.3 I/mJ    34.1 s\n1056:  8227     7.8 C/MHz    249 mW    7.6 J   33.0 I/mJ    30.4 s\n1171:  9127     7.8 C/MHz    261 mW    7.2 J   34.9 I/mJ    27.4 s\n1286: 10020     7.8 C/MHz    289 mW    7.2 J   34.6 I/mJ    25.0 s\n1401: 10918     7.8 C/MHz    311 mW    7.1 J   35.1 I/mJ    22.9 s\n1497: 11663     7.8 C/MHz    336 mW    7.2 J   34.7 I/mJ    21.4 s\n1612: 12546     7.8 C/MHz    375 mW    7.5 J   33.5 I/mJ    19.9 s\n1708: 13320     7.8 C/MHz    398 mW    7.5 J   33.5 I/mJ    18.8 s\n1804: 14069     7.8 C/MHz    456 mW    8.1 J   30.9 I/mJ    17.8 s\n1920: 14909     7.8 C/MHz    507 mW    8.5 J   29.4 I/mJ    16.8 s\n2016: 15706     7.8 C/MHz    558 mW    8.9 J   28.1 I/mJ    15.9 s\n2131: 16612     7.8 C/MHz    632 mW    9.5 J   26.3 I/mJ    15.1 s\n2227: 17349     7.8 C/MHz    698 mW   10.1 J   24.8 I/mJ    14.4 s\n2323: 18088     7.8 C/MHz    717 mW    9.9 J   25.2 I/mJ    13.8 s\n2419: 18835     7.8 C/MHz    845 mW   11.2 J   22.3 I/mJ    13.3 s\n\n\n===== CPU 7 =====\nFrequencies: 825 940 1056 1171 1286 1401 1497 1612 1708 1804 1920 2016 2131 2227 2323 2419 2534 2649 2745 2841\n\n 825:  3215     3.9 C/MHz    158 mW   12.3 J   20.3 I/mJ    77.8 s\n 940:  7330     7.8 C/MHz    269 mW    9.2 J   27.3 I/mJ    34.1 s\n1056:  8227     7.8 C/MHz    291 mW    8.8 J   28.2 I/mJ    30.4 s\n1171:  9125     7.8 C/MHz    316 mW    8.7 J   28.9 I/mJ    27.4 s\n1286: 10024     7.8 C/MHz    338 mW    8.4 J   29.6 I/mJ    25.0 s\n1401: 10922     7.8 C/MHz    365 mW    8.4 J   29.9 I/mJ    22.9 s\n1497: 11674     7.8 C/MHz    383 mW    8.2 J   30.4 I/mJ    21.4 s\n1612: 12564     7.8 C/MHz    406 mW    8.1 J   30.9 I/mJ    19.9 s\n1708: 13317     7.8 C/MHz    427 mW    8.0 J   31.2 I/mJ    18.8 s\n1804: 14062     7.8 C/MHz    446 mW    7.9 J   31.5 I/mJ    17.8 s\n1920: 14966     7.8 C/MHz    498 mW    8.3 J   30.1 I/mJ    16.7 s\n2016: 15711     7.8 C/MHz    513 mW    8.2 J   30.6 I/mJ    15.9 s\n2131: 16599     7.8 C/MHz    599 mW    9.0 J   27.7 I/mJ    15.1 s\n2227: 17353     7.8 C/MHz    622 mW    9.0 J   27.9 I/mJ    14.4 s\n2323: 18095     7.8 C/MHz    704 mW    9.7 J   25.7 I/mJ    13.8 s\n2419: 18849     7.8 C/MHz    738 mW    9.8 J   25.5 I/mJ    13.3 s\n2534: 19761     7.8 C/MHz    824 mW   10.4 J   23.9 I/mJ    12.7 s\n2649: 20658     7.8 C/MHz    882 mW   10.7 J   23.4 I/mJ    12.1 s\n2745: 21400     7.8 C/MHz   1003 mW   11.7 J   21.3 I/mJ    11.7 s\n2841: 22147     7.8 C/MHz   1092 mW   12.3 J   20.3 I/mJ    11.3 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm8150/main/versions.txt",
    "content": "Kernel: Linux version 4.14.191-Proton-g1e49aa4d (kdrag0n@pinwheel) (clang version 12.0.0 (https://github.com/llvm/llvm-project dcc06597b1d61d35c7246d3ab2d7a807134aaa45), LLD 12.0.0 (https://github.com/llvm/llvm-project dcc06597b1d61d35c7246d3ab2d7a807134aaa45)) #2089 SMP PREEMPT Sat Dec 5 01:44:51 PST 2020\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm8150/new/cmdline.txt",
    "content": "console=tty0 loglevel=2 isolcpus=1-7 rcu_nocbs=0-7 cgroup.memory=nokmem,nosocket noirqdebug printk.devkmsg=on console=ttyMSM0,115200n8 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 swiotlb=2048 firmware_class.path=/vendor/firmware_mnt/image loop.max_part=7 androidboot.usbcontroller=a600000.dwc3 buildvariant=userdebug androidboot.keymaster=1 root=PARTUUID=60f582f5-5bb8-318f-9c80-a49c80023e8c androidboot.bootdevice=1d84000.ufshc androidboot.serialno=REDACTED androidboot.baseband=msm msm_drm.dsi_display0=dsi_boe_2k_vid_display: androidboot.id.stage=7 androidboot.id.prj=7 androidboot.id.rf=7 androidboot.id.sku=7 androidboot.id.lcm=1 androidboot.id.nfc=1 androidboot.id.fp=1 androidboot.id.headsetid=0 androidboot.id.pcb=E7777 COUNTRY=TW androidboot.bootreason=hard androidboot.pre-ftm=0 reset_logcat_asdf UNLOCKED=N SB=Y LCD=REDACTED androidboot.slot_suffix=_b skip_initramfs rootwait ro init=/init androidboot.dtb_idx=-1347440721\n"
  },
  {
    "path": "results/sm8150/new/cpufreq_stats/0/time_in_state",
    "content": "300000 142284\n403200 17556\n499200 14343\n576000 12536\n672000 10932\n768000 17738\n844800 8826\n940800 8024\n1036800 7323\n1113600 6921\n1209600 6421\n1305600 6019\n1382400 5718\n1478400 5418\n1555200 5218\n1632000 5017\n1708800 4817\n1785600 4865\n"
  },
  {
    "path": "results/sm8150/new/cpufreq_stats/0/total_trans",
    "content": "22\n"
  },
  {
    "path": "results/sm8150/new/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    403200    499200    576000    672000    768000    844800    940800   1036800   1113600   1209600   1305600   1382400   1478400   1555200   1632000   1708800   1785600 \n   300000:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   403200:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   499200:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   576000:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   672000:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n   768000:         1         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n   844800:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n   940800:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1036800:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1113600:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1209600:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1305600:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1382400:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1478400:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  1555200:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  1632000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         1 \n  1708800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  1785600:         1         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8150/new/cpufreq_stats/4/time_in_state",
    "content": "710400 70589\n825600 4726\n940800 4324\n1056000 3923\n1171200 3622\n1286400 3321\n1401600 3121\n1497600 3021\n1612800 2819\n1708800 2720\n1804800 2619\n1920000 2519\n2016000 2418\n2131200 2418\n2227200 2319\n2323200 2218\n2419200 173280\n"
  },
  {
    "path": "results/sm8150/new/cpufreq_stats/4/total_trans",
    "content": "19\n"
  },
  {
    "path": "results/sm8150/new/cpufreq_stats/4/trans_table",
    "content": "   From  :    To\n         :    710400    825600    940800   1056000   1171200   1286400   1401600   1497600   1612800   1708800   1804800   1920000   2016000   2131200   2227200   2323200   2419200 \n   710400:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   825600:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   940800:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1056000:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1171200:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1286400:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1401600:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1497600:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1612800:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1708800:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1804800:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1920000:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  2016000:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2131200:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2227200:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2323200:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2419200:         2         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8150/new/cpufreq_stats/7/time_in_state",
    "content": "825600 8657\n940800 4326\n1056000 3924\n1171200 3623\n1286400 3322\n1401600 3122\n1497600 3021\n1612800 2821\n1708800 2720\n1804800 2620\n1920000 2520\n2016000 2419\n2131200 2420\n2227200 2319\n2323200 2219\n2419200 2219\n2534400 2118\n2649600 2118\n2745600 2018\n2841600 231451\n"
  },
  {
    "path": "results/sm8150/new/cpufreq_stats/7/total_trans",
    "content": "22\n"
  },
  {
    "path": "results/sm8150/new/cpufreq_stats/7/trans_table",
    "content": ""
  },
  {
    "path": "results/sm8150/new/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 14 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nHardware\t: Qualcomm Technologies, Inc SM8150\n"
  },
  {
    "path": "results/sm8150/new/device.txt",
    "content": "Model: KIRIN MP;\nCompatible: qcom,sm8150-cdp;qcom,sm8150;qcom,cdp;\n"
  },
  {
    "path": "results/sm8150/new/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x51df805e]\n[    0.000000] Linux version 4.14.191-Proton-gad6eebdc (kdrag0n@pinwheel) (clang version 12.0.0 (https://github.com/llvm/llvm-project dcc06597b1d61d35c7246d3ab2d7a807134aaa45), LLD 12.0.0 (https://github.com/llvm/llvm-project dcc06597b1d61d35c7246d3ab2d7a807134aaa45)) #2113 SMP PREEMPT Sat Jan 2 17:53:30 PST 2021\n[    0.000000] Using embedded DTB instead of bootloader DTB\n[    0.000000] Machine: Qualcomm Technologies, Inc. SM8150 V2 PM8150 KIRIN MP\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f5c00000, size 160 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f3400000, size 40 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f2c00000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f2800000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f1800000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node user_contig_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f0800000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ef800000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008b700000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node camera_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008bc00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node pil_wlan_fw_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008bd80000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node pil_npu_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008be00000, size 26 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008d800000, size 150 MiB\n[    0.000000] OF: reserved mem: initialized node modem_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000096e00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000097300000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node pil_slpi_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000098700000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node pil_ipa_fw_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000098710000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node pil_ipa_gsi_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000098715000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node pil_gpu_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000098800000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node pil_spss_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000098900000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_regions, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000099e00000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node ramoops, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000009c000000, size 36 MiB\n[    0.000000] OF: reserved mem: initialized node cont_splash_region, compatible id removed-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x000000009e400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000a4c00000, size 60 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_sec_regions, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 1967017\n[    0.000000]   DMA zone: 6159 pages used for memmap\n[    0.000000]   DMA zone: 0 pages reserved\n[    0.000000]   DMA zone: 394153 pages, LIFO batch:63\n[    0.000000]   Normal zone: 24576 pages used for memmap\n[    0.000000]   Normal zone: 1572864 pages, LIFO batch:63\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.1\n[    0.000000] random: fast init done\n[    0.000000] random: get_random_bytes called from start_kernel+0x98/0x51c with crng_init=1\n[    0.000000] percpu: Embedded 18 pages/cpu s42392 r0 d31336 u73728\n[    0.000000] pcpu-alloc: s42392 r0 d31336 u73728 alloc=18*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1936282\n[    0.000000] Kernel command line: console=tty0 loglevel=2 isolcpus=1-7 rcu_nocbs=0-7 cgroup.memory=nokmem,nosocket noirqdebug printk.devkmsg=on console=ttyMSM0,115200n8 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 swiotlb=2048 firmware_class.path=/vendor/firmware_mnt/image loop.max_part=7 androidboot.usbcontroller=a600000.dwc3 buildvariant=userdebug androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=60f582f5-5bb8-318f-9c80-a49c80023e8c androidboot.bootdevice=1d84000.ufshc androidboot.serialno=REDACTED androidboot.baseband=msm msm_drm.dsi_display0=dsi_boe_2k_vid_display: androidboot.id.stage=7 androidboot.id.prj=7 androidboot.id.rf=7 androidboot.id.sku=7 androidboot.id.lcm=1 androidboot.id.nfc=1 androidboot.id.fp=1 androidboot.id.headsetid=0 androidboot.id.pcb=E7777 COUNTRY=TW androidboot.bootreason=reboot androidboo\n[    0.000000] IRQ lockup detection disabled\n[    0.000000] log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] log_buf_len min size: 131072 bytes\n[    0.000000] log_buf_len: 1048576 bytes\n[    0.000000] early log buf free: 123776(94%)\n[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] software IO TLB: mapped [mem 0xef400000-0xef800000] (4MB)\n[    0.000000] Memory: 7399020K/7868068K available (17918K kernel code, 2014K rwdata, 5148K rodata, 4096K init, 4876K bss, 202808K reserved, 266240K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] Preemptible hierarchical RCU implementation.\n[    0.000000] \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] PDC SM8150 initialized\n[    0.000000] NO_HZ: Clearing 0 from nohz_full range for timekeeping\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000014] clocksource: Switched to clocksource arch_sys_counter\n[    0.002443] Console: colour dummy device 80x25\n[    0.002461] console [tty0] enabled\n[    0.002475] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.002482] pid_max: default: 32768 minimum: 301\n[    0.002572] Security Framework initialized\n[    0.002580] SELinux:  Initializing.\n[    0.002650] SELinux:  Starting in permissive mode\n[    0.002681] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.002695] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.014038] ASID allocator initialised with 65536 entries\n[    0.016108] Hierarchical SRCU implementation.\n[    0.020667] smp: Bringing up secondary CPUs ...\n[    0.058255] spectrev2 mitigation disabled by kernel configuration\n[    0.058280] CPU features: Unsupported CPU feature variation detected.\n[    0.087789] smp: Brought up 1 node, 8 CPUs\n[    0.087792] SMP: Total of 8 processors activated.\n[    0.087796] CPU features: detected: GIC system register CPU interface\n[    0.087798] CPU features: detected: Privileged Access Never\n[    0.087800] CPU features: detected: LSE atomic instructions\n[    0.087802] CPU features: detected: User Access Override\n[    0.087804] CPU features: detected: 32-bit EL0 Support\n[    0.088152] CPU: All CPU(s) started at EL1\n[    0.088182] alternatives: patching kernel code\n[    0.097558] scm_enable_mem_protection: SCM call failed\n[    0.098845] devtmpfs: initialized\n[    0.163937] Registered cp15_barrier emulation handler\n[    0.163948] Registered setend emulation handler\n[    0.164119] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.164130] futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.169391] pinctrl core: initialized pinctrl subsystem\n[    0.169906] NET: Registered protocol family 16\n[    0.170766] schedtune: configured to support 6 boost groups\n[    0.172267] cpuidle: using governor qcom\n[    0.172330] NET: Registered protocol family 42\n[    0.176769] vdso32: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.176775] vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.176779] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.177453] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.178832] Failed to create IPC log0\n[    0.178835] Failed to create IPC log1\n[    0.178836] Failed to create IPC log2\n[    0.178838] Failed to create IPC log3\n[    0.178840] Failed to create IPC log4\n[    0.179997] exit: IPA_USB init success!\n[    0.258923] pstore: using zlib compression\n[    0.258942] console [pstore-1] enabled\n[    0.259069] pstore: Registered ramoops as persistent store backend\n[    0.259072] ramoops: attached 0x100000@0x99e00000, ecc: 0/0\n[    0.268106] unable to find DT imem DLOAD mode node\n[    0.269532] unable to find DT imem EDLOAD mode node\n[    0.271691] spmi spmi-0: PMIC arbiter version v5 (0x50000000)\n[    0.273293] platform 4080000.qcom,mss: assigned reserved memory node modem_region\n[    0.273393] platform 17300000.qcom,lpass: assigned reserved memory node pil_adsp_region\n[    0.273495] platform 5c00000.qcom,ssc: assigned reserved memory node pil_slpi_region\n[    0.273601] platform 188101c.qcom,spss: assigned reserved memory node pil_spss_region\n[    0.273761] msm_watchdog 17c10000.qcom,wdt: wdog absent resource not present\n[    0.273998] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 304\n[    0.274093] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 305\n[    0.274168] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 306\n[    0.274241] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 307\n[    0.274318] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 308\n[    0.274399] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 309\n[    0.274480] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 310\n[    0.274559] msm_watchdog 17c10000.qcom,wdt: Dump setup failed, id = 311\n[    0.274593] msm_watchdog 17c10000.qcom,wdt: MSM Watchdog Initialized\n[    0.274631] platform 9800000.qcom,npu: assigned reserved memory node pil_npu_region\n[    0.274735] platform 8300000.qcom,turing: assigned reserved memory node cdsp_regions\n[    0.274799] platform aae0000.qcom,venus: assigned reserved memory node pil_video_region\n[    0.275713] sps:sps is ready.\n[    0.276313] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.283642] platform 87900000.qseecom: assigned reserved memory node qseecom_region\n[    0.293084] msm-dcc 10a2000.dcc_v2: DCC list passed 3\n[    0.293740] msm-dcc 10a2000.dcc_v2: All values written to enable\n[    0.295418] (NULL device *): msm_gsi_probe:4522 failed to create IPC log, continue...\n[    0.295799] platform soc:qcom,ipa_fws: assigned reserved memory node pil_ipa_fw_region\n[    0.296500] platform 88a7000.msm_tspp: assigned reserved memory node qseecom_region\n[    0.296703] sm8150-pinctrl 3000000.pinctrl: invalid resource\n[    0.307417] pm8150l_s6_level: supplied by pm8150l_s4_level\n[    0.307565] pm8150l_s6_level_ao: supplied by pm8150l_s4_level_ao\n[    0.312630] rpmh_regulator_probe: smpf2: could not find RPMh address for resource\n[    0.312750] rpmh_regulator_probe: ldof2: could not find RPMh address for resource\n[    0.312865] rpmh_regulator_probe: ldof5: could not find RPMh address for resource\n[    0.312981] rpmh_regulator_probe: ldof6: could not find RPMh address for resource\n[    0.345701] gpu_cx_gdsc: supplied by pm8150l_s6_level\n[    0.345964] gpu_gx_gdsc: supplied by pm8150l_s2_level\n[    0.348131] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on cpu0\n[    0.348534] clk: add_opp: Set OPP pair (1785600000 Hz, 816000 uv) on cpu0\n[    0.348575] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on cpu1\n[    0.348956] clk: add_opp: Set OPP pair (1785600000 Hz, 816000 uv) on cpu1\n[    0.349001] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on cpu2\n[    0.349374] clk: add_opp: Set OPP pair (1785600000 Hz, 816000 uv) on cpu2\n[    0.349423] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on cpu3\n[    0.349791] clk: add_opp: Set OPP pair (1785600000 Hz, 816000 uv) on cpu3\n[    0.349835] clk: add_opp: Set OPP pair (710400000 Hz, 756000 uv) on cpu4\n[    0.350317] clk: add_opp: Set OPP pair (2419200000 Hz, 1004000 uv) on cpu4\n[    0.350357] clk: add_opp: Set OPP pair (710400000 Hz, 756000 uv) on cpu5\n[    0.350740] clk: add_opp: Set OPP pair (2419200000 Hz, 1004000 uv) on cpu5\n[    0.350789] clk: add_opp: Set OPP pair (710400000 Hz, 756000 uv) on cpu6\n[    0.351151] clk: add_opp: Set OPP pair (2419200000 Hz, 1004000 uv) on cpu6\n[    0.351195] clk: add_opp: Set OPP pair (825600000 Hz, 756000 uv) on cpu7\n[    0.351636] clk: add_opp: Set OPP pair (2841600000 Hz, 988000 uv) on cpu7\n[    0.351863] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.351865] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on soc:qcom,cpu4-cpu-l3-lat\n[    0.351868] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.351870] clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on soc:qcom,cpu7-cpu-l3-lat\n[    0.353099] clk: add_opp: Set OPP pair (1612800000 Hz, 824000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.353102] clk: add_opp: Set OPP pair (1612800000 Hz, 824000 uv) on soc:qcom,cpu4-cpu-l3-lat\n[    0.353104] clk: add_opp: Set OPP pair (1612800000 Hz, 824000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.353106] clk: add_opp: Set OPP pair (1612800000 Hz, 824000 uv) on soc:qcom,cpu7-cpu-l3-lat\n[    0.353587] sched-energy: CPU4 max energy model capacity=872 != cpu_scale=871\n[    0.353597] sched-energy: CPU5 max energy model capacity=872 != cpu_scale=871\n[    0.353610] sched-energy: CPU6 max energy model capacity=872 != cpu_scale=871\n[    0.353624] sched-energy: Sched-energy-costs installed from DT\n[    0.353732] cpufreq: driver osm-cpufreq up and running\n[    0.353734] clk: clk_cpu_osm_driver_probe: OSM CPUFreq driver inited\n[    0.355387] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.357098] clk-rpmh soc:qcom,rpmhclk: Registered RPMh clocks\n[    0.373276] gcc-sm8150 100000.qcom,gcc: Registered GCC clocks\n[    0.374129] gpu_cc_gmu_clk_src: set OPP pair(19200000 Hz: 49 uV) on 2c6a000.qcom,gmu\n[    0.374185] clk_round_rate failed for gpu_cc_gmu_clk_src\n[    0.374285] gpu_cc-sm8150 2c90000.qcom,gpucc: Registered GPU CC clocks\n[    0.375095] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.375100] video_cc-sm8150 ab00000.qcom,videocc: Unable to register for bw voting\n[    0.375359] socinfo_print: v0.15, id=339, ver=2.2, raw_id=165, raw_ver=3, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65566, pmic_die_revision=196608 foundry_id=1 serial_number=132005191 num_pmics=3 chip_family=0x56 raw_device_family=0x6 raw_device_number=0x3 nproduct_id=0x404 num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xc ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.375733] Failed to setup PIL ipc logging\n[    0.375737] msm_bus_fabric_rpmh_init_driver\n[    0.375895] msm_bus: Probe started\n[    0.376427] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.376490] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.376506] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.376560] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.378857] msm_bus: DT Parsing complete\n[    0.382190] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.382354] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.382399] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.382524] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.395794] camera_rear0_vana_ldo: supplied by pm8150l_bob\n[    0.395998] camera_vcm_en_ldo: supplied by pm8150l_bob\n[    0.397272] register_client_adhoc:find path.src 161 dest 627\n[    0.397418] register_client_adhoc:Client handle 1 apps_smmu\n[    0.397526] arm-smmu 15000000.apps-smmu: \tnon-coherent table walk\n[    0.397529] arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.397533] arm-smmu 15000000.apps-smmu: \tstream matching with 94 register groups\n[    0.398425] register_client_adhoc:find path.src 161 dest 627\n[    0.398555] register_client_adhoc:Client handle 2 apps_smmu\n[    0.398748] register_client_adhoc:find path.src 161 dest 627\n[    0.398878] register_client_adhoc:Client handle 3 apps_smmu\n[    0.399069] register_client_adhoc:find path.src 22 dest 773\n[    0.399142] register_client_adhoc:Client handle 4 mnoc_hf_1_tbu\n[    0.399295] register_client_adhoc:find path.src 154 dest 10070\n[    0.399344] register_client_adhoc:Client handle 5 apps_smmu\n[    0.399531] register_client_adhoc:find path.src 22 dest 773\n[    0.399595] register_client_adhoc:Client handle 6 mnoc_hf_0_tbu\n[    0.399743] register_client_adhoc:find path.src 154 dest 10070\n[    0.399788] register_client_adhoc:Client handle 7 apps_smmu\n[    0.399977] register_client_adhoc:find path.src 161 dest 627\n[    0.400132] register_client_adhoc:Client handle 8 apps_smmu\n[    0.400336] register_client_adhoc:find path.src 161 dest 627\n[    0.400466] register_client_adhoc:Client handle 9 apps_smmu\n[    0.400683] register_client_adhoc:find path.src 137 dest 772\n[    0.400750] register_client_adhoc:Client handle 10 mnoc_sf_0_tbu\n[    0.401677] arm-smmu 2ca0000.kgsl-smmu: \tnon-coherent table walk\n[    0.401680] arm-smmu 2ca0000.kgsl-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.401684] arm-smmu 2ca0000.kgsl-smmu: \tstream matching with 6 register groups\n[    0.402697] SCSI subsystem initialized\n[    0.402768] usbcore: registered new interface driver usbfs\n[    0.402786] usbcore: registered new interface driver hub\n[    0.402856] usbcore: registered new device driver usb\n[    0.403097] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.403410] media: Linux media interface: v0.10\n[    0.403430] Linux video capture interface: v2.00\n[    0.410429] virt zone: sensor[gpuss-1-usr] read error:-22\n[    0.410659] tsens_tm_probe : unable to create IPC Logging 0 for tsens 0x000000000c263000\n[    0.410663] tsens_tm_probe : unable to create IPC Logging 1 for tsens 0x000000000c263000\n[    0.410665] tsens_tm_probe : unable to create IPC Logging 2 for tsens 0x000000000c263000\n[    0.412348] tsens_tm_probe : unable to create IPC Logging 0 for tsens 0x000000000c265000\n[    0.412351] tsens_tm_probe : unable to create IPC Logging 1 for tsens 0x000000000c265000\n[    0.412353] tsens_tm_probe : unable to create IPC Logging 2 for tsens 0x000000000c265000\n[    0.416947] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node adsp_region\n[    0.417026] platform soc:qcom,ion:qcom,ion-heap@26: assigned reserved memory node user_contig_region\n[    0.417096] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.417167] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.417241] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.417307] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.417667] ION heap system created\n[    0.417771] ION heap adsp created at 0x00000000ef800000 with size 1000000\n[    0.417781] ION heap user_contig created at 0x00000000f1800000 with size 1000000\n[    0.417784] ION heap qsecom created at 0x000000009e400000 with size 1400000\n[    0.417788] ION heap qsecom_ta created at 0x00000000f0800000 with size 1000000\n[    0.417792] ION heap spss created at 0x00000000f2c00000 with size 800000\n[    0.417796] ION heap secure_display created at 0x00000000f5c00000 with size a000000\n[    0.453902] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0xa4c00000, size 0x3c00000\n[    0.453905] ION heap secure_carveout created\n[    0.453909] ION heap secure_heap created\n[    0.455073] qupv3_geni_se 8c0000.qcom,qupv3_0_geni_se: geni_se_probe Failed to allocate log context\n[    0.455300] iommu: Adding device 8c0000.qcom,qupv3_0_geni_se:qcom,iommu_qupv3_0_geni_se_cb to group 0\n[    0.455373] qupv3_geni_se ac0000.qcom,qupv3_1_geni_se: geni_se_probe Failed to allocate log context\n[    0.455533] iommu: Adding device ac0000.qcom,qupv3_1_geni_se:qcom,iommu_qupv3_1_geni_se_cb to group 1\n[    0.455599] qupv3_geni_se cc0000.qcom,qupv3_2_geni_se: geni_se_probe Failed to allocate log context\n[    0.455757] iommu: Adding device cc0000.qcom,qupv3_2_geni_se:qcom,iommu_qupv3_2_geni_se_cb to group 2\n[    0.455820] qupv3_geni_se 26c0000.qcom,qupv3_3_geni_se: geni_se_probe Failed to allocate log context\n[    0.455984] iommu: Adding device 26c0000.qcom,qupv3_3_geni_se:qcom,iommu_qupv3_3_geni_se_cb to group 3\n[    0.456887] register_client_adhoc:find path.src 90 dest 512\n[    0.457303] register_client_adhoc:find path.src 90 dest 585\n[    0.457434] register_client_adhoc:find path.src 1 dest 676\n[    0.457657] register_client_adhoc:find path.src 143 dest 777\n[    0.457723] register_client_adhoc:Client handle 11 ipa\n[    0.462132] ipa ipa3_smp2p_probe:8041 fail to get smp2p clk resp bit -517\n[    0.462553] iommu: Adding device soc:ipa_smmu_ap to group 4\n[    0.462717] iommu: Adding device soc:ipa_smmu_wlan to group 5\n[    0.462871] iommu: Adding device soc:ipa_smmu_uc to group 6\n[    0.463234] ipa ipa3_smp2p_probe:8041 fail to get smp2p clk resp bit -517\n[    0.464854] Advanced Linux Sound Architecture Driver Initialized.\n[    0.465580] Bluetooth: Core ver 2.22\n[    0.465629] NET: Registered protocol family 31\n[    0.465632] Bluetooth: HCI device and connection manager initialized\n[    0.465644] Bluetooth: HCI socket layer initialized\n[    0.465653] Bluetooth: L2CAP socket layer initialized\n[    0.465696] Bluetooth: SCO socket layer initialized\n[    0.467102] NetLabel: Initializing\n[    0.467106] NetLabel:  domain hash size = 128\n[    0.467109] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\n[    0.467175] NetLabel:  unlabeled traffic allowed by default\n[    0.467478] register_client_adhoc:find path.src 1 dest 590\n[    0.467816] register_client_adhoc:find path.src 1 dest 589\n[    0.468025] register_client_adhoc:find path.src 1 dest 596\n[    0.468253] register_client_adhoc:find path.src 22 dest 512\n[    0.468492] register_client_adhoc:find path.src 23 dest 512\n[    0.468711] register_client_adhoc:Client handle 12 bus-proxy-client\n[    0.469869] register_client_adhoc:find path.src 1 dest 589\n[    0.470105] register_client_adhoc:Client handle 13 bps_gdsc_ahb\n[    0.470371] bps_gdsc: supplied by pm8150l_s5_level\n[    0.470997] register_client_adhoc:find path.src 1 dest 589\n[    0.471198] register_client_adhoc:Client handle 14 ipe_0_gdsc_ahb\n[    0.471385] ipe_0_gdsc: supplied by pm8150l_s5_level\n[    0.471725] register_client_adhoc:find path.src 1 dest 589\n[    0.471928] register_client_adhoc:Client handle 15 ipe_1_gdsc_ahb\n[    0.472113] ipe_1_gdsc: supplied by pm8150l_s5_level\n[    0.472432] register_client_adhoc:find path.src 1 dest 589\n[    0.472638] register_client_adhoc:Client handle 16 ife_0_gdsc_ahb\n[    0.472824] ife_0_gdsc: supplied by pm8150l_s5_level\n[    0.473145] register_client_adhoc:find path.src 1 dest 589\n[    0.473343] register_client_adhoc:Client handle 17 ife_1_gdsc_ahb\n[    0.473527] ife_1_gdsc: supplied by pm8150l_s5_level\n[    0.473859] register_client_adhoc:find path.src 1 dest 589\n[    0.474065] register_client_adhoc:Client handle 18 titan_top_gdsc_ahb\n[    0.474255] titan_top_gdsc: supplied by pm8150l_s5_level\n[    0.474565] register_client_adhoc:find path.src 1 dest 590\n[    0.474770] register_client_adhoc:Client handle 19 mdss_core_gdsc_ahb\n[    0.474884] mdss_core_gdsc: supplied by pm8150l_s5_level\n[    0.475282] register_client_adhoc:find path.src 1 dest 596\n[    0.475491] register_client_adhoc:Client handle 20 mvsc_gdsc_ahb\n[    0.475677] mvsc_gdsc: supplied by pm8150l_s5_level\n[    0.475992] register_client_adhoc:find path.src 1 dest 596\n[    0.476206] register_client_adhoc:Client handle 21 mvs0_gdsc_ahb\n[    0.476390] mvs0_gdsc: supplied by pm8150l_s5_level\n[    0.476724] register_client_adhoc:find path.src 1 dest 596\n[    0.476940] register_client_adhoc:Client handle 22 mvs1_gdsc_ahb\n[    0.477124] mvs1_gdsc: supplied by pm8150l_s5_level\n[    0.477820] register_client_adhoc:find path.src 1 dest 589\n[    0.478019] register_client_adhoc:Client handle 23 clk_camcc_debugfs\n[    0.478905] cam_cc_bps_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac6f000.qcom,bps\n[    0.478920] clk_round_rate failed for cam_cc_bps_clk_src\n[    0.479243] cam_cc_cci_0_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac4a000.qcom,cci\n[    0.479258] clk_round_rate failed for cam_cc_cci_0_clk_src\n[    0.479419] cam_cc_cci_1_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac4b000.qcom,cci\n[    0.479434] clk_round_rate failed for cam_cc_cci_1_clk_src\n[    0.479813] cam_cc_csi0phytimer_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac65000.qcom,csiphy\n[    0.479829] clk_round_rate failed for cam_cc_csi0phytimer_clk_src\n[    0.480034] cam_cc_csi1phytimer_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac66000.qcom,csiphy\n[    0.480051] clk_round_rate failed for cam_cc_csi1phytimer_clk_src\n[    0.480270] cam_cc_csi2phytimer_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac67000.qcom,csiphy\n[    0.480286] clk_round_rate failed for cam_cc_csi2phytimer_clk_src\n[    0.480494] cam_cc_csi3phytimer_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac68000.qcom,csiphy\n[    0.480510] clk_round_rate failed for cam_cc_csi3phytimer_clk_src\n[    0.481378] cam_cc_icp_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac00000.qcom,a5\n[    0.481395] clk_round_rate failed for cam_cc_icp_clk_src\n[    0.481700] cam_cc_ife_0_clk_src: set OPP pair(19200000 Hz: 49 uV) on acaf000.qcom,vfe0\n[    0.481718] clk_round_rate failed for cam_cc_ife_0_clk_src\n[    0.482017] cam_cc_ife_0_csid_clk_src: set OPP pair(19200000 Hz: 49 uV) on acb3000.qcom,csid0\n[    0.482034] clk_round_rate failed for cam_cc_ife_0_csid_clk_src\n[    0.482414] cam_cc_ife_1_clk_src: set OPP pair(19200000 Hz: 49 uV) on acb6000.qcom,vfe1\n[    0.482431] clk_round_rate failed for cam_cc_ife_1_clk_src\n[    0.482748] cam_cc_ife_1_csid_clk_src: set OPP pair(19200000 Hz: 49 uV) on acba000.qcom,csid1\n[    0.482767] clk_round_rate failed for cam_cc_ife_1_csid_clk_src\n[    0.483080] cam_cc_ife_lite_0_clk_src: set OPP pair(19200000 Hz: 49 uV) on acc4000.qcom,vfe-lite0\n[    0.483099] clk_round_rate failed for cam_cc_ife_lite_0_clk_src\n[    0.483418] cam_cc_ife_lite_0_csid_clk_src: set OPP pair(19200000 Hz: 49 uV) on acc8000.qcom,csid-lite0\n[    0.483436] clk_round_rate failed for cam_cc_ife_lite_0_csid_clk_src\n[    0.483699] cam_cc_ife_lite_1_clk_src: set OPP pair(19200000 Hz: 49 uV) on accb000.qcom,vfe-lite1\n[    0.483718] clk_round_rate failed for cam_cc_ife_lite_1_clk_src\n[    0.484042] cam_cc_ife_lite_1_csid_clk_src: set OPP pair(19200000 Hz: 49 uV) on accf000.qcom,csid-lite1\n[    0.484061] clk_round_rate failed for cam_cc_ife_lite_1_csid_clk_src\n[    0.484649] cam_cc_ipe_0_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac87000.qcom,ipe0\n[    0.484670] clk_round_rate failed for cam_cc_ipe_0_clk_src\n[    0.488806] cam_cc-sm8150 ad00000.qcom,camcc: Registered CAM CC clocks\n[    0.488997] register_client_adhoc:find path.src 1 dest 590\n[    0.489206] register_client_adhoc:Client handle 24 clk_dispcc_debugfs\n[    0.489239] PLL is already enabled. Skipping configuration.\n[    0.495766] disp_cc-sm8150 af00000.qcom,dispcc: Registered Display CC clocks\n[    0.500141] npu_cc-sm8150 9910000.qcom,npucc: Registered NPU CC clocks\n[    0.500315] register_client_adhoc:find path.src 1 dest 596\n[    0.500531] register_client_adhoc:Client handle 25 clk_videocc_debugfs\n[    0.501555] video_cc-sm8150 ab00000.qcom,videocc: Registered Video CC clocks\n[    0.501736] ipa ipa3_smp2p_probe:8041 fail to get smp2p clk resp bit -517\n[    0.502141] clocksource: Switched to clocksource arch_sys_counter\n[    0.502264] VFS: Disk quotas dquot_6.6.0\n[    0.502320] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.503402] simple-framebuffer 9c000000.framebuffer: framebuffer at 0x9c000000, 0x2400000 bytes, mapped to 0x        (ptrval)\n[    0.503407] simple-framebuffer 9c000000.framebuffer: format=a8r8g8b8, mode=1080x2340x32, linelength=4320\n[    0.522917] Console: switching to colour frame buffer device 67x73\n[    0.541994] simple-framebuffer 9c000000.framebuffer: fb0: simplefb registered!\n[    0.542318] register_client_adhoc:find path.src 1 dest 589\n[    0.542538] register_client_adhoc:find path.src 1 dest 596\n[    0.542755] register_client_adhoc:find path.src 1 dest 590\n[    0.542960] register_client_adhoc:Client handle 26 clk_measure\n[    0.543517] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.543523] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.543686] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.543694] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.543708] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.543715] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.543721] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.543727] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.545395] dsi_pll_clock_register_7nm: Registered DSI PLL ndx=0, clocks successfully\n[    0.545436] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.545440] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.545540] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.545547] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.545553] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.545559] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.545566] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.545572] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.551919] dsi_pll_clock_register_7nm: Registered DSI PLL ndx=1, clocks successfully\n[    0.551954] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.551967] mdss_pll_util_parse_dt_supply: no supply entry present\n[    0.559232] NET: Registered protocol family 2\n[    0.559692] TCP established hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.559928] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)\n[    0.561391] TCP: Hash tables configured (established 65536 bind 65536)\n[    0.561507] UDP hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.561579] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.561805] NET: Registered protocol family 1\n[    0.562127] ipa ipa3_smp2p_probe:8041 fail to get smp2p clk resp bit -517\n[    0.562426] Unpacking initramfs...\n[    0.845520] Freeing initrd memory: 11528K\n[    0.847410] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.853085] Initialise system trusted keyrings\n[    0.853207] workingset: timestamp_bits=61 max_order=21 bucket_order=0\n[    0.856581] [SDFAT] Filesystem version 2.1.8-lineage\n[    0.857016] Registering sdcardfs 0.1\n[    0.857188] fuse init (API version 7.26)\n[    0.857843] SELinux:  Registering netfilter hooks\n[    0.858421] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    0.858424] pfk_f2fs [pfk_f2fs_init]: PFK F2FS inited successfully\n[    0.858431] pfk [pfk_init]: Driver initialized successfully\n[    0.861140] Key type asymmetric registered\n[    0.861144] Asymmetric key parser 'x509' registered\n[    0.861190] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)\n[    0.861195] io scheduler noop registered\n[    0.861198] io scheduler deadline registered\n[    0.861288] io scheduler cfq registered (default)\n[    0.868674] iommu: Adding device 800000.qcom,gpi-dma to group 7\n[    0.870636] iommu: Adding device a00000.qcom,gpi-dma to group 8\n[    0.871982] iommu: Adding device c00000.qcom,gpi-dma to group 9\n[    0.875147] icnss: Unable to create log context\n[    0.875150] icnss: Unable to create log long context\n[    0.875396] iommu: Adding device 18800000.qcom,icnss to group 10\n[    0.875494] icnss: Recursive recovery allowed for WLAN\n[    0.881535] icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    0.881729] icnss: Platform driver probed successfully\n[    0.883023] memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    0.883215] memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    0.890323] memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    0.890837] register_client_adhoc:find path.src 125 dest 512\n[    0.891402] register_client_adhoc:Client handle 27 scm_pas\n[    0.892122] minidump-id not found for adsp\n[    0.892710] minidump-id not found for slpi\n[    0.893276] minidump-id not found for spss\n[    0.893618] minidump-id not found for npu\n[    0.893625] subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    0.893684] subsys-pil-tz 9800000.qcom,npu: for md_npu segments only will be dumped.\n[    0.893977] register_client_adhoc:find path.src 154 dest 10070\n[    0.894039] register_client_adhoc:Client handle 28 pil-cdsp\n[    0.894045] minidump-id not found for cdsp\n[    0.894675] register_client_adhoc:find path.src 63 dest 512\n[    0.894910] register_client_adhoc:Client handle 29 pil-venus\n[    0.894916] minidump-id not found for venus\n[    0.895235] minidump-id not found for ipa_fws\n[    0.895242] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    0.895322] subsys-pil-tz soc:qcom,ipa_fws: for md_ipa_fws segments only will be dumped.\n[    0.895612] minidump-id not found for a640_zap\n[    0.895619] subsys-pil-tz soc:qcom,kgsl-hyp: for a640_zap segments only will be dumped.\n[    0.895676] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a640_zap segments only will be dumped.\n[    0.895887] spcom: spcom_init: spcom driver version 2.1 23-April-2018.\n[    0.897521] qiib_driver_data_init: unable to create logging context\n[    0.898814] smp2p_sleepstate soc:qcom,smp2p_sleepstate: got smp2p-sleepstate-in irq 490\n[    0.902707] msm_geni_serial c8c000.qcom,qup_uart: Wakeup byte 0xfd\n[    0.902762] msm_geni_serial c8c000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    0.902787] msm_geni_serial c8c000.qcom,qup_uart: Err in Rx IPC Log\n[    0.902792] msm_geni_serial c8c000.qcom,qup_uart: Err in Tx IPC Log\n[    0.902795] msm_geni_serial c8c000.qcom,qup_uart: Err in Pwr IPC Log\n[    0.902800] msm_geni_serial c8c000.qcom,qup_uart: Err in Misc IPC Log\n[    0.903137] c8c000.qcom,qup_uart: ttyHS0 at MMIO 0xc8c000 (irq = 443, base_baud = 0) is a MSM\n[    0.903343] msm_geni_serial_init: Driver initialized\n[    0.903585] register_client_adhoc:find path.src 1 dest 618\n[    0.903824] register_client_adhoc:Client handle 30 msm-rng-noc\n[    0.904714] random: crng init done\n[    0.908264] diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    0.908267] diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    0.954336] register_client_adhoc:find path.src 20003 dest 20515\n[    0.954459] register_client_adhoc:find path.src 20004 dest 20515\n[    0.954534] register_client_adhoc:Client handle 31 disp_rsc_mnoc\n[    0.954562] register_client_adhoc:find path.src 20001 dest 20513\n[    0.954640] register_client_adhoc:Client handle 32 disp_rsc_llcc\n[    0.954668] register_client_adhoc:find path.src 20000 dest 20512\n[    0.954744] register_client_adhoc:Client handle 33 disp_rsc_ebi\n[    0.954947] [sde_rsc_hw:rsc_hw_init:714]: sde rsc init successfully done\n[    0.954983] [sde_rsc:sde_rsc_probe:1884]: sde rsc index:0 probed successfully\n[    0.955509] dsi_phy ae94400.qcom,mdss_dsi_phy0: ae94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    0.955598] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-0\n[    0.955663] dsi_phy ae96400.qcom,mdss_dsi_phy0: ae96400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    0.955718] msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-1\n[    0.956507] AXI: get_pdata(): Error: Client name not found\n[    0.956511] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.956515] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-0\n[    0.956683] AXI: get_pdata(): Error: Client name not found\n[    0.956685] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    0.956687] dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-1\n[    0.957151] msm-dsi-display:[dsi_display_parse_boot_display_selection] boot_param is dsi_boe_2k_vid_display:, display_name is dsi_boe_2k_vid_display, i=0\n[    0.957155] msm-dsi-display:[dsi_display_parse_boot_display_selection] boot_param is , display_name is , i=1\n[    0.957158] msm-dsi-display:[dsi_display_parse_boot_display_selection] is_kirin_panel is 1\n[    0.957685] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    0.957729] msm-dsi-panel:[dsi_panel_parse_triggers:1266] [BOE 2K video mode dsi panel] fallback to default te-pin-select\n[    0.957758] msm-dsi-panel:[dsi_panel_parse_panel_mode:1781] dsi_panel_parse_panel_mode: panel operating mode switch feature disabled\n[    0.957789] msm-dsi-panel:[dsi_panel_parse_qsync_caps:1464] [BOE 2K video mode dsi panel] qsync min fps not defined rc:-22\n[    0.957793] msm-dsi-panel:[dsi_panel_get:3450] failed to parse qsync features, rc=-22\n[    0.957822] msm-dsi-panel:[dsi_panel_parse_reset_sequence:2140] RESET SEQ LENGTH = 24\n[    0.957872] msm-dsi-panel:[dsi_panel_parse_misc_features:2190] dsi_panel_parse_misc_features: ulps feature enabled\n[    0.957877] msm-dsi-panel:[dsi_panel_parse_misc_features:2196] dsi_panel_parse_misc_features: ulps during suspend feature disabled\n[    0.957946] msm-dsi-panel:[dsi_panel_parse_esd_config:3367] ESD enabled with mode: register_read\n[    0.959034] iommu: Adding device ae00000.qcom,mdss_mdp to group 11\n[    0.960698] register_client_adhoc:find path.src 1 dest 590\n[    0.960936] register_client_adhoc:Client handle 34 mdss_reg\n[    0.960969] register_client_adhoc:find path.src 22 dest 512\n[    0.961215] register_client_adhoc:find path.src 23 dest 512\n[    0.961421] register_client_adhoc:Client handle 35 mdss_sde\n[    0.961499] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops 0xffffff9211932710)\n[    0.961505] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops 0xffffff9211935ec0)\n[    0.961639] msm-dsi-panel:[dsi_panel_vreg_get:263] failed to get lab regulator\n[    0.961702] msm-dsi-panel:[dsi_panel_drv_init:3552] [BOE 2K video mode dsi panel] failed to get panel regulators, rc=-517\n[    0.961769] [drm:msm_drm_bind] *ERROR* component_bind_all failed: -517\n[    0.961774] [drm:sde_power_resource_deinit:823]: cliend:dsi_core_client0-2 still registered with refcount:0\n[    0.966912] iommu: Adding device 2c6a000.qcom,gmu:gmu_user to group 12\n[    0.967524] iommu: Adding device 2c6a000.qcom,gmu:gmu_kernel to group 13\n[    0.969202] register_client_adhoc:find path.src 26 dest 512\n[    0.969352] register_client_adhoc:Client handle 34 grp3d\n[    0.969373] register_client_adhoc:find path.src 26 dest 10036\n[    0.969512] register_client_adhoc:Client handle 35 cnoc\n[    0.969518] query_client_usecase_all: query_start\n[    0.969569] query_client_usecase_all: query_start\n[    0.970908] iommu: Adding device 2ca0000.qcom,kgsl-iommu:gfx3d_user to group 14\n[    0.971068] iommu: Adding device 2ca0000.qcom,kgsl-iommu:gfx3d_secure to group 15\n[    1.018117] loop: module loaded\n[    1.018602] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1400000\n[    1.018621] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    1.018628] QSEECOM: qseecom_probe: no-clock-support=0x1\n[    1.018633] QSEECOM: qseecom_probe: qseecom.qsee_reentrancy_support = 2\n[    1.018687] QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    1.019810] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from CBL (External Power Supply) and 'warm' boot\n[    1.019837] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    1.020046] input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800/input/input0\n[    1.022536] SDAM base=0xb100 size=128 registered successfully\n[    1.023228] PMIC@SID2: PM8150B v2.0 options: 0, 0, 0, 0\n[    1.023379] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150b@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from CBL (External Power Supply) and 'warm' boot\n[    1.023405] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150b@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from SOFT (Software)\n[    1.027406] PMIC@SID4: PM8150L v3.0 options: 0, 0, 0, 0\n[    1.027549] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150l@4:qcom,power-on@800: PMIC@SID4 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'warm' boot\n[    1.027574] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150l@4:qcom,power-on@800: PMIC@SID4: Power-off reason: Triggered from SOFT (Software)\n[    1.031205] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=5500mV ncp_voltage=5500mV bst_voltage=5650mV\n[    1.033429] iommu: Adding device 1de0000.qcedev to group 16\n[    1.033601] register_client_adhoc:find path.src 125 dest 512\n[    1.034062] register_client_adhoc:Client handle 36 qcedev-noc\n[    1.034290] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.034969] qce 1de0000.qcedev: QTI Crypto 5.4.2 device found @0x1de0000\n[    1.034987] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000001dc4000\n[    1.034991] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000001dc4000\n[    1.034994] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000001dc4000\n[    1.034998] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000001dc4000\n[    1.035002] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000001dc4000\n[    1.035006] sps:BAM 0x0000000001dc4000 is registered.\n[    1.035125] sps:BAM 0x0000000001dc4000 (va:0xffffff8019ec0000) enabled: ver:0x27, number of pipes:16\n[    1.035309] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 59\n[    1.035658] iommu: Adding device 1de0000.qcedev:qcom_cedev_ns_cb to group 17\n[    1.036193] qcedev_setup_context_bank Attached 1de0000.qcedev:qcom_cedev_ns_cb and create mapping\n[    1.036196] qcedev_setup_context_bank Context Bank name:ns_context, is_secure:0, start_addr:0x60000000\n[    1.036356] iommu: Adding device 1de0000.qcedev:qcom_cedev_s_cb to group 18\n[    1.037742] qcedev_setup_context_bank Attached 1de0000.qcedev:qcom_cedev_s_cb and create mapping\n[    1.037746] qcedev_setup_context_bank Context Bank name:secure_context, is_secure:1, start_addr:0xa0000000\n[    1.039682] iommu: Adding device 1de0000.qcrypto to group 19\n[    1.039737] register_client_adhoc:find path.src 125 dest 512\n[    1.040066] register_client_adhoc:Client handle 37 qcrypto-noc\n[    1.040429] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.041081] qcrypto 1de0000.qcrypto: QTI Crypto 5.4.2 device found @0x1de0000\n[    1.041292] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 59\n[    1.041600] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    1.041758] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    1.041819] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    1.041877] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    1.041938] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    1.041994] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    1.042057] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    1.042120] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    1.042179] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    1.042246] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    1.042305] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    1.042364] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    1.042422] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    1.042484] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    1.042542] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    1.042602] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    1.042662] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    1.042724] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    1.042782] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    1.042840] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    1.045319] ufshcd-qcom 1d84000.ufshc: no vccq2-voltage-level property.\n[    1.047807] qcom_ice_get_pdevice: found ice device fffffff62d505c00\n[    1.047809] qcom_ice_get_pdevice: matching platform device fffffff635404000\n[    1.048965] register_client_adhoc:find path.src 123 dest 512\n[    1.049320] register_client_adhoc:find path.src 1 dest 757\n[    1.049587] register_client_adhoc:Client handle 38 ufshc_mem\n[    1.051586] scsi host0: ufshcd\n[    1.056157] qcom_ice 1d90000.ufsice: QC ICE 3.1.79 device found @0xffffff801a498000\n[    1.073092] libphy: Fixed MDIO Bus: probed\n[    1.073115] tun: Universal TUN/TAP device driver, 1.6\n[    1.073240] PPP generic driver version 2.4.2\n[    1.073320] PPP BSD Compression module registered\n[    1.073324] PPP Deflate Compression module registered\n[    1.073342] PPP MPPE Compression module registered\n[    1.073347] NET: Registered protocol family 24\n[    1.073349] PPTP driver version 0.8.5\n[    1.073570] CLD80211: Initializing\n[    1.073660] usbcore: registered new interface driver r8152\n[    1.073673] usbcore: registered new interface driver lan78xx\n[    1.073690] usbcore: registered new interface driver asix\n[    1.073705] usbcore: registered new interface driver ax88179_178a\n[    1.073724] usbcore: registered new interface driver cdc_ether\n[    1.073738] usbcore: registered new interface driver net1080\n[    1.073752] usbcore: registered new interface driver cdc_subset\n[    1.073767] usbcore: registered new interface driver zaurus\n[    1.073784] usbcore: registered new interface driver cdc_ncm\n[    1.079283] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.080471] msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    1.083249] iommu: Adding device a600000.ssusb to group 20\n[    1.084799] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.085148] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.085153] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.086717] msm-dwc3 a600000.ssusb: unable to get ssphy device\n[    1.088883] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.089270] iommu: Adding device a800000.ssusb to group 21\n[    1.090732] dwc3 a800000.dwc3: changing max_speed on rev 00000000\n[    1.090988] dwc3 a800000.dwc3: Error getting ipc_log_ctxt\n[    1.090992] dwc3 a800000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.092426] register_client_adhoc:find path.src 101 dest 512\n[    1.092837] register_client_adhoc:find path.src 101 dest 676\n[    1.093064] register_client_adhoc:find path.src 1 dest 751\n[    1.093305] register_client_adhoc:Client handle 39 usb1\n[    1.096945] usbcore: registered new interface driver usb-storage\n[    1.098517] fgsi_init: Err allocating ipc_log_ctxt\n[    1.099612] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.099870] usbcore: registered new interface driver xpad\n[    1.101397] input: qti-haptics as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-03/c440000.qcom,spmi:qcom,pm8150b@3:qcom,haptics@c000/input/input1\n[    1.102165] asustek_lid soc:asustek_lid: ASUSTek: lid_driver_probe\n[    1.102313] input: lid_input as /devices/platform/soc/soc:asustek_lid/input/input2\n[    1.102791] genirq: irq_chip msmgpio-dc did not update eff. affinity mask of irq 239\n[    1.103221] asustek_lid2 soc:asustek_lid2: ASUSTek: lid2_driver_probe\n[    1.103341] input: lid2_input as /devices/platform/soc/soc:asustek_lid2/input/input3\n[    1.103832] gf_spi: gf_init: +++.\n[    1.104059] gf_spi: gf_probe: +++.\n[    1.104177] input: goodixfp as /devices/virtual/input/input4\n[    1.104236] gf_spi: gf_probe: version V1.2.12\n[    1.104239] gf_spi: gf_probe: ---.\n[    1.104439] gf_spi: gf_init: status = 0x0\n[    1.104441] gf_spi: gf_init: ---.\n[    1.104773] asustek_googlekey soc:asustek_googlekey: ASUSTek: googlekey_driver_probe\n[    1.104910] input: googlekey_input as /devices/virtual/input/input5\n[    1.105913] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm8150@0:qcom,pm8150_rtc: rtc core: registered qpnp_rtc as rtc0\n[    1.106061] i2c /dev entries driver\n[    1.106492] i2c_geni 884000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.107241] i2c_geni 890000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.108563] i2c_geni a80000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.109202] i2c_geni a84000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.109777] i2c_geni c80000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.112470] input: fts_ts as /devices/platform/soc/c80000.i2c/i2c-4/4-0038/input/input6\n[    1.116704] iommu: Adding device 9800000.qcom,msm_npu to group 22\n[    1.116752] msm_npu: unable to get qfprom_physical resource\n[    1.125287] iommu: Adding device aa00000.qcom,vidc:non_secure_cb to group 23\n[    1.125892] iommu: Adding device aa00000.qcom,vidc:secure_non_pixel_cb to group 24\n[    1.128073] iommu: Adding device aa00000.qcom,vidc:secure_bitstream_cb to group 25\n[    1.129791] iommu: Adding device aa00000.qcom,vidc:secure_pixel_cb to group 26\n[    1.131345] platform aa00000.qcom,vidc:qcom,msm-vidc,mem_cdsp: assigned reserved memory node cdsp_region\n[    1.133330] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 27\n[    1.133533] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 28\n[    1.133592] platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node camera_region\n[    1.133893] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 29\n[    1.134109] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 30\n[    1.134438] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_fd to group 31\n[    1.134635] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 32\n[    1.136598] register_client_adhoc:find path.src 1 dest 589\n[    1.136927] register_client_adhoc:Client handle 39 cam_ahb\n[    1.137089] register_client_adhoc:find path.src 136 dest 512\n[    1.137335] register_client_adhoc:Client handle 40 cam_hf_1_mnoc\n[    1.137461] register_client_adhoc:find path.src 146 dest 778\n[    1.137512] register_client_adhoc:Client handle 41 cam_hf_1_camnoc\n[    1.137603] register_client_adhoc:find path.src 145 dest 512\n[    1.137812] register_client_adhoc:Client handle 42 cam_hf_2_mnoc\n[    1.137927] register_client_adhoc:find path.src 147 dest 778\n[    1.137976] register_client_adhoc:Client handle 43 cam_hf_2_camnoc\n[    1.138064] register_client_adhoc:find path.src 137 dest 512\n[    1.138283] register_client_adhoc:Client handle 44 cam_sf_1_mnoc\n[    1.138394] register_client_adhoc:find path.src 148 dest 778\n[    1.138442] register_client_adhoc:Client handle 45 cam_sf_1_camnoc\n[    1.144480] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1019 AXI client=[17][cpas-cdm][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    1.148040] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 867 Invalid mux type: 0\n[    1.148089] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1082 Inval_prms soc_info:fffffff62cdb3050 hw_intf:fffffff62cd97a80 hw_info0000000000000000\n[    1.148093] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1083 controller: fffffff62ce07a00\n[    1.148097] CAM_ERR: CAM-ISP: cam_vfe_core_init: 861 Error! RD cam_vfe_bus_init failed\n[    1.148215] nq-nci 3-0029: nfcc_hw_check: - NFCC HW not Supported\n[    1.148248] nq-nci 3-0029: nqx_probe: probing NFCC NQxxx exited successfully\n[    1.148294] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1019 AXI client=[10][ife][0] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.150577] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 867 Invalid mux type: 0\n[    1.150613] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1082 Inval_prms soc_info:fffffff62ce50050 hw_intf:fffffff62cd99500 hw_info0000000000000000\n[    1.150615] CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1083 controller: fffffff62ce07500\n[    1.150618] CAM_ERR: CAM-ISP: cam_vfe_core_init: 861 Error! RD cam_vfe_bus_init failed\n[    1.150708] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1019 AXI client=[11][ife][1] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.152819] CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 525 No clk named ife_dsp_clk found. Dev vfe2\n[    1.152822] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 109 Option clk get failed with rc -14\n[    1.152921] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 867 Invalid mux type: 0\n[    1.152924] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 867 Invalid mux type: 0\n[    1.153024] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1019 AXI client=[12][ife][2] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.154637] CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 525 No clk named ife_dsp_clk found. Dev vfe3\n[    1.154640] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 109 Option clk get failed with rc -14\n[    1.154739] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 867 Invalid mux type: 0\n[    1.154741] CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 867 Invalid mux type: 0\n[    1.154845] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1019 AXI client=[13][ife][3] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.157618] CAM_INFO: CAM-ISP: cam_isp_dev_probe: 171 Camera ISP probe complete\n[    1.159012] CAM_INFO: CAM: cam_res_mgr_probe: 689 Disable shared gpio support.\n[    1.162674] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 429 Device Type :0\n[    1.165340] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 429 Device Type :1\n[    1.166828] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    1.166844] ACTUATOR-ATD create_proc_file(): create(driver/actuator_power) done\n[    1.166849] ACTUATOR-ATD create_proc_file(): create(driver/actuator_i2c_rw) done\n[    1.166857] ACTUATOR-ATD create_proc_file(): create(driver/vcm_enable) done\n[    1.166862] ACTUATOR-ATD create_proc_file(): create(driver/vcm) done\n[    1.166868] CAM_INFO: CAM-ACTUATOR: cam_actuator_driver_platform_probe: 385 Actuator Probe Success.\n[    1.168066] CAM_INFO: CAM-FLASH: cam_flash_platform_probe: 471 Flash probe Enter\n[    1.168146] FLASH-ATD create_proc_file() create(driver/flash_status) done\n[    1.168150] FLASH-ATD create_proc_file() create(driver/asus_flash) done\n[    1.168153] FLASH-ATD create_proc_file() create(driver/asus_flash2) done\n[    1.168157] FLASH-ATD create_proc_file() create(driver/ctrl1_leds) done\n[    1.168161] CAM_INFO: CAM-FLASH: cam_flash_platform_probe: 567 Flash probe succeed\n[    1.168192] CAM_INFO: CAM-FLASH: cam_flash_platform_probe: 471 Flash probe Enter\n[    1.168208] FLASH-ATD asus_flash_init() invalid flash id 1\n[    1.168210] CAM_INFO: CAM-FLASH: cam_flash_platform_probe: 567 Flash probe succeed\n[    1.168239] CAM_INFO: CAM-FLASH: cam_flash_platform_probe: 471 Flash probe Enter\n[    1.168256] FLASH-ATD asus_flash_init() invalid flash id 2\n[    1.168258] CAM_INFO: CAM-FLASH: cam_flash_platform_probe: 567 Flash probe succeed\n[    1.168288] CAM_INFO: CAM-FLASH: cam_flash_platform_probe: 471 Flash probe Enter\n[    1.168307] FLASH-ATD asus_flash_init() invalid flash id 3\n[    1.168309] CAM_INFO: CAM-FLASH: cam_flash_platform_probe: 567 Flash probe succeed\n[    1.168665] CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 422 EEPROM Probe Start\n[    1.168677] CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 226 No GPIO found\n[    1.168685] CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 476 EEPROM Probe done\n[    1.168711] CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 422 EEPROM Probe Start\n[    1.168719] CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 226 No GPIO found\n[    1.168723] CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 476 EEPROM Probe done\n[    1.168751] CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 422 EEPROM Probe Start\n[    1.168759] CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 226 No GPIO found\n[    1.168763] CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 476 EEPROM Probe done\n[    1.168787] CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 422 EEPROM Probe Start\n[    1.168796] CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 226 No GPIO found\n[    1.168799] CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 476 EEPROM Probe done\n[    1.174000] CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 170 Camera JPEG probe complete\n[    1.174656] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1019 AXI client=[22][fd][0] comp[7200000], comp_ab[7200000], uncomp[7200000]\n[    1.177906] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1019 AXI client=[23][lrmecpas][0] comp[7200000], comp_ab[7200000], uncomp[7200000]\n[    1.178643] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1019 AXI client=[16][cam-cdm-intf][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    1.184061] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    1.188138] FG: fg_gen4_probe: battery SOC:83 voltage: 4074940uV temp: 202 id: 51000 ohms\n[    1.192728] of_batterydata_get_best_profile: 3742266_asus_c11p1806_4850mah_averaged_masterslave_dec13th2018 found\n[    1.192736] FG: fg_gen4_get_batt_profile: battery fastchg current unavailable, rc:-22\n[    1.192913] FG: fg_psy_get_property: unsupported property 4\n[    1.193072] FG: is_profile_load_required: is_profile_load_required PROFILE_INTEGRITY_WORD = 9\n[    1.194036] Couldn't parse device tree rc=-517\n[    1.206799] FG: profile_load_work: profile_load_work profile loaded successfully\n[    1.209159] device-mapper: uevent: version 1.0.3\n[    1.209490] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com\n[    1.211296] bt_dt_parse_vreg_info: qca,bt-vdd-vl: is not provided in device tree\n[    1.211301] bt_dt_parse_vreg_info: qca,bt-vdd-vm: is not provided in device tree\n[    1.211305] bt_dt_parse_vreg_info: qca,bt-vdd-5c: is not provided in device tree\n[    1.211308] bt_dt_parse_vreg_info: qca,bt-vdd-5a: is not provided in device tree\n[    1.211311] bt_dt_parse_vreg_info: qca,bt-vdd-vh: is not provided in device tree\n[    1.211314] bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    1.211317] bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    1.211332] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    1.211336] bt_power_populate_dt_pinfo: bt-reset-gpio not provided in device tree\n[    1.211339] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.211341] bt_power_populate_dt_pinfo: clock not provided in device tree\n[    1.211675] sdhci: Secure Digital Host Controller Interface driver\n[    1.211678] sdhci: Copyright(c) Pierre Ossman\n[    1.211680] sdhci-pltfm: SDHCI platform and OF driver helper\n[    1.214426] usbcore: registered new interface driver usbhid\n[    1.214428] usbhid: USB HID core driver\n[    1.214724] ashmem: initialized\n[    1.214965] wlan_hdd_state wlan major(500) initialized\n[    1.216616] sdhci_msm 8804000.sdhci: sdhci_msm_probe: ICE device is not enabled\n[    1.216890] sdhci_msm 8804000.sdhci: Failed to get dll hsr settings from dt\n[    1.217194] register_client_adhoc:find path.src 81 dest 512\n[    1.217783] register_client_adhoc:find path.src 1 dest 608\n[    1.218026] register_client_adhoc:Client handle 46 sdhc2\n[    1.229906] mmc0: SDHCI controller on 8804000.sdhci [8804000.sdhci] using 64-bit ADMA in legacy mode\n[    1.260885] bimc-bwmon 90b6400.qcom,cpu-cpu-llcc-bwmon: BW HWmon governor registered.\n[    1.260938] bimc-bwmon 90cd000.qcom,cpu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    1.260990] bimc-bwmon 9960300.qcom,npu-npu-ddr-bwmon: BW HWmon governor registered.\n[    1.261609] arm-memlat-mon soc:qcom,cpu0-cpu-l3-latmon: Memory Latency governor registered.\n[    1.261652] arm-memlat-mon soc:qcom,cpu4-cpu-l3-latmon: Memory Latency governor registered.\n[    1.261689] arm-memlat-mon soc:qcom,cpu7-cpu-l3-latmon: Memory Latency governor registered.\n[    1.261734] arm-memlat-mon soc:qcom,cpu0-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.261774] arm-memlat-mon soc:qcom,cpu4-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.261818] arm-memlat-mon soc:qcom,cpu0-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.261861] arm-memlat-mon soc:qcom,cpu4-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.261905] arm-memlat-mon soc:qcom,cpu4-computemon: Compute governor registered.\n[    1.263466] register_client_adhoc:find path.src 1 dest 770\n[    1.263555] register_client_adhoc:Client handle 47 soc:qcom,cpu-cpu-llcc-bw\n[    1.264469] register_client_adhoc:find path.src 129 dest 512\n[    1.264537] register_client_adhoc:Client handle 48 soc:qcom,cpu-llcc-ddr-bw\n[    1.266051] register_client_adhoc:find path.src 154 dest 512\n[    1.266248] register_client_adhoc:Client handle 49 soc:qcom,npu-npu-ddr-bw\n[    1.268725] register_client_adhoc:find path.src 1 dest 770\n[    1.268793] register_client_adhoc:Client handle 51 soc:qcom,cpu0-cpu-llcc-lat\n[    1.269108] register_client_adhoc:find path.src 1 dest 770\n[    1.269170] register_client_adhoc:Client handle 50 soc:qcom,cpu4-cpu-llcc-lat\n[    1.269675] register_client_adhoc:find path.src 129 dest 512\n[    1.269866] register_client_adhoc:Client handle 52 soc:qcom,cpu0-llcc-ddr-lat\n[    1.270252] register_client_adhoc:find path.src 129 dest 512\n[    1.270440] register_client_adhoc:Client handle 53 soc:qcom,cpu4-llcc-ddr-lat\n[    1.270816] register_client_adhoc:find path.src 129 dest 512\n[    1.271003] register_client_adhoc:Client handle 54 soc:qcom,cpu4-cpu-ddr-latfloor\n[    1.271215] register_client_adhoc:find path.src 1 dest 627\n[    1.271445] register_client_adhoc:Client handle 55 soc:qcom,snoc_cnoc_keepalive\n[    1.271653] register_client_adhoc:find path.src 154 dest 10070\n[    1.271701] register_client_adhoc:Client handle 56 soc:qcom,cdsp_keepalive\n[    1.272210] register_client_adhoc:find path.src 26 dest 512\n[    1.272349] register_client_adhoc:Client handle 57 soc:qcom,gpubw\n[    1.278730] qcom-llcc-pmu 90cc000.llcc-pmu: Registered llcc_pmu, type: 7\n[    1.281855] [ASH_HW][ALSPS_FRGB]vcc_psensor regulator setting init\n[    1.282047] [ASH_HW][ALSPS_FRGB]vcnl36863_ALSPS_FRGB_hw_check_ID Success(ID_REG : 0x0063). \n[    1.282365] [ASH_HW][ALSPS_FRGB]Proximity set CS standby bit (CS_CONF1 : 0x2 -> 0x2)\n[    1.282680] [ASH_HW][ALSPS_FRGB]Proximity set CS start bit (CS_CONF1 : 0x2 -> 0x82)\n[    1.282995] [ASH_HW][ALSPS_FRGB]Disable Proximity interrupt befrore IST create (PS_CONF1: 0x1 -> 0x1)\n[    1.283310] [ASH_HW][ALSPS_FRGB]Proximity set PS start (PS_CONF2 : 0x9c -> 0x9c)\n[    1.283626] [ASH_HW][ALSPS_FRGB]Proximity set Persistence (PS_CONF3 : 0x8 -> 0x8)\n[    1.283941] [ASH_HW][ALSPS_FRGB]Proximity set LED Current (PS_CONF4 : 0x2 -> 0x2)\n[    1.284257] [ASH_HW][ALSPS_FRGB]Proximity set LED Duty Ratio (PS_CONF1 : 0x1 -> 0x1)\n[    1.284574] [ASH_HW][ALSPS_FRGB]Proximity set Persistence (PS_CONF1 : 0x1 -> 0x1)\n[    1.284888] [ASH_HW][ALSPS_FRGB]Proximity set Integration (PS_CONF2 : 0x9c -> 0x9c)\n[    1.285204] [ASH_HW][ALSPS_FRGB]Proximity set PS Multi-Pulse setting (PS_CONF2 : 0x9c -> 0x9c)\n[    1.285519] [ASH_HW][ALSPS_FRGB]Proximity set PS high gain mode (PS_CONF2 : 0x9c -> 0x9c)\n[    1.285834] [ASH_HW][ALSPS_FRGB]Light Sensor set Persistence (CS_CONF2 : 0x2 -> 0x2)\n[    1.286149] [ASH_HW][ALSPS_FRGB]Light Sensor set Persistence (CS_CONF2 : 0x2 -> 0x2)\n[    1.286464] [ASH_HW][ALSPS_FRGB]Light Sensor set Integration (CS_CONF1 : 0x2 -> 0x2)\n[    1.286742] input: ASUS Proximitysensor as /devices/virtual/input/input7\n[    1.286881] input: ASUS Lightsensor as /devices/virtual/input/input8\n[    1.287444] Randy MCU probe\n[    1.287451] create(driver/motor_power) done\n[    1.287454] create(driver/motor_manual) done\n[    1.287457] create(driver/motor_auto) done\n[    1.287460] create(driver/motor_stop) done\n[    1.287463] create(driver/motor_atd_status) done\n[    1.287466] create(driver/motor_probe_status) done\n[    1.287468] create(driver/motor_param) done\n[    1.287475] randy mcu power init, set requlator\n[    1.288804] usbcore: registered new interface driver snd-usb-audio\n[    1.289036] iommu: Adding device soc:usb_audio_qmi_dev to group 33\n[    1.290955] rmnet_perf_init(): initializing rmnet_perf\n[    1.290959] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = lo\n[    1.290961] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = dummy0\n[    1.290964] rmnet_shs_module_init(): Starting rmnet SHS module\n[    1.293736] input: audiowizard as /devices/virtual/input/input9\n[    1.293825] input: audiowizard_channel as /devices/virtual/input/input10\n[    1.296646] apr_probe: Unable to create ipc log context\n[    1.298428] tfa98xx_i2c_init(): TFA98XX driver version v0.0.0-0-g00000-changeme\n[    1.298469] tfa98xx_i2c_probe(): addr=0x34\n[    1.300721] tfa98xx_i2c_probe(): TFA9874 detected\n[    1.300737] tfa98xx 1-0034: Skipping IRQ registration\n[    1.300769] tfa98xx 1-0034: tfa98xx try to registered misc_register(ASUS_rpc_35)\n[    1.300816] tfa98xx_i2c_probe(): tfa98xx_i2c_probe Probe completed successfully!\n[    1.300851] tfa98xx_i2c_probe(): addr=0x35\n[    1.303114] tfa98xx_i2c_probe(): TFA9874 detected\n[    1.303125] tfa98xx 1-0035: Skipping IRQ registration\n[    1.303161] tfa98xx 1-0035: tfa98xx try to registered misc_register(ASUS_rpc_34)\n[    1.303199] tfa98xx_i2c_probe(): tfa98xx_i2c_probe Probe completed successfully!\n[    1.308220] msm-dai-q6-hdmi soc:qcom,msm-dai-q6-hdmi_ms: invalid device ID 24578\n[    1.308771] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: msm_auxpcm_dev_probe: invalid DT intf name senary\n[    1.314480] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[3, 3], lane[2, 2], pwr[FAST MODE, FAST MODE], rate = 2\n[    1.315076] scsi 0:0:0:49488: Well-known LUN    SAMSUNG  KLUEG8U1EA-B0C1  0800 PQ: 0 ANSI: 6\n[    1.315654] scsi 0:0:0:49456: Well-known LUN    SAMSUNG  KLUEG8U1EA-B0C1  0800 PQ: 0 ANSI: 6\n[    1.316241] scsi 0:0:0:49476: Well-known LUN    SAMSUNG  KLUEG8U1EA-B0C1  0800 PQ: 0 ANSI: 6\n[    1.316754] scsi 0:0:0:0: Direct-Access     SAMSUNG  KLUEG8U1EA-B0C1  0800 PQ: 0 ANSI: 6\n[    1.317214] scsi 0:0:0:1: Direct-Access     SAMSUNG  KLUEG8U1EA-B0C1  0800 PQ: 0 ANSI: 6\n[    1.317793] scsi 0:0:0:2: Direct-Access     SAMSUNG  KLUEG8U1EA-B0C1  0800 PQ: 0 ANSI: 6\n[    1.317884] mmc0: new ultra high speed SDR104 SDXC card at address 0001\n[    1.318337] scsi 0:0:0:3: Direct-Access     SAMSUNG  KLUEG8U1EA-B0C1  0800 PQ: 0 ANSI: 6\n[    1.318653] scsi 0:0:0:4: Direct-Access     SAMSUNG  KLUEG8U1EA-B0C1  0800 PQ: 0 ANSI: 6\n[    1.318968] scsi 0:0:0:5: Direct-Access     SAMSUNG  KLUEG8U1EA-B0C1  0800 PQ: 0 ANSI: 6\n[    1.320745] sd 0:0:0:0: [sda] Write Protect is off\n[    1.320751] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.320884] sd 0:0:0:1: [sdb] Write Protect is off\n[    1.320888] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.321198] sd 0:0:0:0: [sda] Optimal transfer size 8192 bytes\n[    1.321357] sd 0:0:0:1: [sdb] Optimal transfer size 8192 bytes\n[    1.322174] sd 0:0:0:2: [sdc] Write Protect is off\n[    1.322191] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.323467] sd 0:0:0:2: [sdc] Optimal transfer size 8192 bytes\n[    1.325916]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20\n[    1.325972]  sdb: sdb1 sdb2\n[    1.328175]  sdc: sdc1 sdc2\n[    1.329319] sd 0:0:0:3: [sdd] Write Protect is off\n[    1.329323] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.329522] sd 0:0:0:3: [sdd] Optimal transfer size 8192 bytes\n[    1.329862] sd 0:0:0:4: [sde] Write Protect is off\n[    1.329890] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    1.329971] sd 0:0:0:5: [sdf] Write Protect is off\n[    1.329988] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    1.330175] sd 0:0:0:4: [sde] Optimal transfer size 8192 bytes\n[    1.330282] sd 0:0:0:5: [sdf] Optimal transfer size 8192 bytes\n[    1.331887]  sdd: sdd1 sdd2 sdd3\n[    1.333149]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6\n[    1.334139] mmcblk0: mmc0:0001 GD4QT 119 GiB \n[    1.334471]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51 sde52 sde53 sde54 sde55 sde56 sde57\n[    1.338170]  mmcblk0: p1\n[    1.342219] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: group id not supported 0x9150\n[    1.342226] msm-dai-tdm: probe of soc:qcom,msm-dai-tdm-sen-rx failed with error -22\n[    1.342244] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: group id not supported 0x9151\n[    1.342249] msm-dai-tdm: probe of soc:qcom,msm-dai-tdm-sen-tx failed with error -22\n[    1.352239] GACT probability NOT on\n[    1.352249] Mirror/redirect action on\n[    1.352257] u32 classifier\n[    1.352259]     Actions configured\n[    1.352266] Netfilter messages via NETLINK v0.30.\n[    1.352413] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)\n[    1.352476] ctnetlink v0.93: registering with nfnetlink.\n[    1.352651] xt_time: kernel timezone is -0000\n[    1.352681] wireguard: WireGuard 1.0.20201221 loaded. See www.wireguard.com for information.\n[    1.352683] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    1.352759] gre: GRE over IPv4 demultiplexor driver\n[    1.352761] IPv4 over IPsec tunneling driver\n[    1.352895] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip_vti0\n[    1.353020] ip_tables: (C) 2000-2006 Netfilter Core Team\n[    1.353273] arp_tables: arp_tables: (C) 2002 David S. Miller\n[    1.353383] Initializing XFRM netlink socket\n[    1.353394] IPsec XFRM device driver\n[    1.353554] NET: Registered protocol family 10\n[    1.355058] Segment Routing with IPv6\n[    1.355095] mip6: Mobile IPv6\n[    1.355103] ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    1.355392] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6_vti0\n[    1.355483] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    1.355582] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = sit0\n[    1.355773] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6tnl0\n[    1.355856] NET: Registered protocol family 17\n[    1.355865] NET: Registered protocol family 15\n[    1.355877] Ebtables v2.0 registered\n[    1.355909] l2tp_core: L2TP core driver, V2.0\n[    1.355914] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    1.355916] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    1.355923] l2tp_netlink: L2TP netlink interface\n[    1.355937] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    1.355938] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    1.355991] sctp: Hash tables configured (bind 256/256)\n[    1.356683] cam_dvdd_w_f_1p2: supplied by pm8150_s4\n[    1.358451] register_client_adhoc:find path.src 1 dest 590\n[    1.358727] register_client_adhoc:Client handle 58 mdss_reg\n[    1.358758] register_client_adhoc:find path.src 22 dest 512\n[    1.358982] register_client_adhoc:find path.src 23 dest 512\n[    1.359183] register_client_adhoc:Client handle 59 mdss_sde\n[    1.359227] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops 0xffffff9211932710)\n[    1.359232] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops 0xffffff9211935ec0)\n[    1.359529] msm-dsi-display:[dsi_display_bind] Successfully bind display panel 'dsi_boe_2k_vid_display'\n[    1.359693] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-primary (ops 0xffffff92119339c0)\n[    1.359698] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-secondary (ops 0xffffff92119339c0)\n[    1.359717] [drm] mapped mdp address space @ffffff801bd00000\n[    1.359723] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: vbif_nrt_phys\n[    1.359728] msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: sid_phys\n[    1.359748] [drm:_sde_kms_get_splash_data:3311] splash mem num_regions:1\n[    1.359757] [drm:_sde_kms_get_splash_data:3346] splash mem for disp:1 add:9c000000 size:2400000\n[    1.360204] [drm:sde_kms_hw_init:3492] sde hardware revision:0x50000001\n[    1.361266] [drm] Created domain mdp_ns [20000,fffe0000] secure=0\n[    1.362830] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 34\n[    1.362847] [drm] probing device qcom,smmu_sde_sec\n[    1.362852] [drm] Created domain mdp_s [20000,fffe0000] secure=1\n[    1.367749] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    1.367752] [drm] No driver support for vblank timestamp query.\n[    1.368656] [drm] Initialized msm_drm 1.2.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    1.368710] msm-dsi-panel:[dsi_panel_parse_topology:2967] default topology: lm: 1 comp_enc:0 intf: 1\n[    1.368762] msm-dsi-panel:[dsi_panel_parse_partial_update_caps:3057] partial update disabled as the property is not set\n[    1.368869] dsi-ctrl:[_dsi_ctrl_setup_isr] [DSI_0] IRQ 578 registered\n[    1.369419] msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    1.370675] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.370877] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.370880] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.372903] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    1.372913] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    1.372916] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    1.372918] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    1.372921] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    1.372923] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    1.372926] sps:BAM 0x000000000a704000 is registered.\n[    1.373221] msm-dwc3 a600000.ssusb: unable to get ssphy device\n[    1.375542] dwc3 a800000.dwc3: changing max_speed on rev 00000000\n[    1.375725] dwc3 a800000.dwc3: Error getting ipc_log_ctxt\n[    1.375728] dwc3 a800000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.376670] register_client_adhoc:find path.src 101 dest 512\n[    1.377045] register_client_adhoc:find path.src 101 dest 676\n[    1.377239] register_client_adhoc:find path.src 1 dest 751\n[    1.377462] register_client_adhoc:Client handle 60 usb1\n[    1.378355] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.378661] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-qos-lut : doesn't exist in device tree\n[    1.378664] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-danger-lut : doesn't exist in device tree\n[    1.378667] sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-safe-lut : doesn't exist in device tree\n[    1.378686] register_client_adhoc:find path.src 1 dest 590\n[    1.378902] register_client_adhoc:Client handle 61 sde_reg\n[    1.379047] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 35\n[    1.379069] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    1.379221] iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 36\n[    1.379239] sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    1.379305] register_client_adhoc:find path.src 25 dest 512\n[    1.379521] register_client_adhoc:Client handle 62 mdss_rotator\n[    1.379534] register_client_adhoc:find path.src 1 dest 590\n[    1.379734] register_client_adhoc:Client handle 63 mdss_rot_reg\n[    1.380266] No change in context(0==0), skip\n[    1.381050] sde_rotator_evtlog_create_debugfs: evtlog_status: enable:0, panic:1, dump:2\n[    1.381570] sde_rotator ae00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    1.383372] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    1.383548] [BAT][CHG][ERR] asus_smblib_relax: ASUS set relax fail, asus_chg_ws not initial\n[    1.387434] of_batterydata_get_best_profile: alium_860_89032_0000_3600mah_sept24th2018 found\n[    1.393037] SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    1.393052] QPNP SMB5 probed successfully\n[    1.395000] spmi-temp-alarm c440000.qcom,spmi:qcom,pm8150b@2:qcom,temp-alarm@2400: failed to register sensor\n[    1.408139] msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    1.409127] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.409323] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.409326] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.412253] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    1.412263] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    1.412266] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    1.412268] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    1.412271] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    1.412273] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    1.412276] sps:BAM 0x000000000a704000 is registered.\n[    1.412525] msm-dwc3 a600000.ssusb: unable to get ssphy device\n[    1.415122] usbpd usbpd0: [PD] waive typec mode:0 present:0 orientation:0\n[    1.415577] msm-usb-ssphy-qmp 88e8000.ssphy: No separate ID extcon device\n[    1.416412] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.416609] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.416612] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.418622] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    1.418630] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    1.418632] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    1.418635] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    1.418637] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    1.418639] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    1.418641] sps:BAM 0x000000000a704000 is registered.\n[    1.418841] register_client_adhoc:find path.src 61 dest 512\n[    1.419160] register_client_adhoc:find path.src 61 dest 676\n[    1.419353] register_client_adhoc:find path.src 1 dest 583\n[    1.419569] register_client_adhoc:Client handle 64 usb0\n[    1.420619] registered taskstats version 1\n[    1.420621] Loading compiled-in X.509 certificates\n[    1.440775] msm-dwc3 a800000.ssusb: DWC3 exited from low power mode\n[    1.441112] msm-dwc3 a800000.ssusb: DWC3 in low power mode\n[    1.480148] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode\n[    1.481066] msm-dwc3 a600000.ssusb: DWC3 in low power mode\n[    1.528865] spss_utils [spss_init]: spss-utils driver Ver 3.0 18-Feb-2018.\n[    1.529138] spss_utils [spss_probe]: Initialization completed ok, firmware_name [spss2p].\n[    1.533289] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 37\n[    1.533803] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 38\n[    1.534232] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 39\n[    1.534650] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 40\n[    1.535070] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7 to group 41\n[    1.535491] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8 to group 42\n[    1.535914] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 43\n[    1.536337] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 44\n[    1.536765] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 45\n[    1.537801] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 46\n[    1.538231] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 47\n[    1.538662] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 48\n[    1.539100] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13 to group 49\n[    1.539514] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14 to group 50\n[    1.539937] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb15 to group 51\n[    1.541966] ngd_msm_ctrl 171c0000.slim: error creating ipc_logging context\n[    1.541970] ngd_msm_ctrl 171c0000.slim: error creating ipc_error_logging context\n[    1.542179] iommu: Adding device 171c0000.slim:qcom,iommu_slim_ctrl_cb to group 52\n[    1.544588] ngd_msm_ctrl 17240000.slim: error creating ipc_logging context\n[    1.544592] ngd_msm_ctrl 17240000.slim: error creating ipc_error_logging context\n[    1.544788] iommu: Adding device 17240000.slim:qcom,iommu_slim_ctrl_cb to group 53\n[    1.547557] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input11\n[    1.548083] stmvl53l1_init_cci: Enter\n[    1.548473] stmvl53l1_platform_probe: Enter\n[    1.548552] stmvl53l1_request_pwren: pwren gpio disable\n[    1.548634] stmvl53l1_platform_probe: Initialization of pinctrl succeed\n[    1.549416] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1019 AXI client=[4][cci][0] comp[1024], comp_ab[0], uncomp[1024]\n[    1.550138] CAM_INFO: CAM-CCI: cam_cci_init: 190 cci init done.\n[    1.551503] stmvl53l1_reset_release_cci: stmvl53l3 probe status, 0 means successful rc = 0\n[    1.551565] input: STM VL53L1 proximity sensor as /devices/virtual/input/input12\n[    1.572123] stmvl53l1_setup: device name VL53L3 cut1.1\n               type VL53L3\n[    1.572311] stmvl53l1_start_intr_cci: irq 231 now handled \n[    1.572314] stmvl53l1_setup: Misc device registration name:stmvl53l1_ranging\n[    1.572370] create_proc_file st_laser_proc_file sucessed!\n[    1.572802] CAM_INFO: CAM-CCI: cam_cci_soc_release: 444 cci release, rw_cnt=(0,0,0,0),(0,103,26,0).\n[    1.572805] stmvl53l1_platform_probe: End = 0\n[    1.590114] CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1019 AXI client=[4][cci][0] comp[1024], comp_ab[18446743524222580832], uncomp[1024]\n[    1.590639] CAM_INFO: CAM-CCI: cam_cci_init: 190 cci init done.\n[    1.590699] input: Invensense ICM206xx Accel_Gyro as /devices/virtual/input/input13\n[    1.590889] ICM206XX, WHOAMI=0x20\n[    1.699919] input: ICM206XX-accel as /devices/platform/soc/ac4a000.qcom,cci/ac4a000.qcom,cci:qcom,icm206xx@0/input/input14\n[    1.700094] input: ICM206XX-gyro as /devices/platform/soc/ac4a000.qcom,cci/ac4a000.qcom,cci:qcom,icm206xx@0/input/input15\n[    1.700705] CAM_INFO: CAM-CCI: cam_cci_soc_release: 444 cci release, rw_cnt=(0,0,0,0),(0,11,5,0).\n[    1.700833] qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm8150@0:qcom,pm8150_rtc: setting system clock to 1970-02-19 19:27:24 UTC (4303644)\n[    1.702698] lpm_levels: register_cluster_lpm_stats()\n[    1.702812] lpm_levels: register_cluster_lpm_stats()\n[    1.706188] rmnet_ipa3 started initialization\n[    1.706436] RNDIS_IPA module is loaded.\n[    1.707657] msm_bus_late_init: Remove handoff bw requests\n[    1.708459] hlos1_vote_aggre_noc_mmu_audio_tbu_gdsc: disabling\n[    1.708570] hlos1_vote_aggre_noc_mmu_tbu1_gdsc: disabling\n[    1.708679] hlos1_vote_aggre_noc_mmu_tbu2_gdsc: disabling\n[    1.708788] hlos1_vote_aggre_noc_mmu_pcie_tbu_gdsc: disabling\n[    1.708910] display_panel_avdd_eldo: disabling\n[    1.708915] camera_rear0_vana_ldo: disabling\n[    1.708917] camera_vcm_en_ldo: disabling\n[    1.710467] cam_dvdd_w_f_1p2: disabling\n[    1.710490] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    1.710636] ALSA device list:\n[    1.710638]   No soundcards found.\n[    1.711660] Freeing unused kernel memory: 4096K\n[    3.440993] of_batterydata_get_best_profile: 3742266_asus_c11p1806_4850mah_averaged_masterslave_dec13th2018 found\n[    3.440999] QCOM-STEPCHG: get_step_chg_jeita_setting_from_profile: [BAT] LOAD KIRIN BATTERY PROFILE in get_step_chg_jeita_setting_from_profile\n[    3.441010] QCOM-STEPCHG: get_step_chg_jeita_setting_from_profile: max-fastchg-current-ma reading failed, rc=-22\n[  305.120325] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120353] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120823] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120843] audio_notifer_reg_service: service SSR_ADSP is in use\n[  305.120874] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120883] ADSPRPC: Audio PD restart notifier locator down\n"
  },
  {
    "path": "results/sm8150/new/post_bench_interrupts.txt",
    "content": "           CPU0       \n  4:      15755   PDC-GIC  19 Level     arch_timer\n  6:     289657   PDC-GIC  38 Level     arch_mem_timer\n  8:          0   PDC-GIC 115 Edge      msm_drm\n  9:          0   PDC-GIC 509 Edge      csiphy\n 10:          0   PDC-GIC 510 Edge      csiphy\n 11:          0   PDC-GIC 511 Edge      csiphy\n 12:          0   PDC-GIC 480 Edge      csiphy\n 13:        147   PDC-GIC 492 Edge      cci\n 14:          0   PDC-GIC 303 Edge      cci\n 15:          0   PDC-GIC 491 Edge      cpas_camnoc\n 16:          1   PDC-GIC 493 Edge      cpas-cdm\n 17:          0   PDC-GIC 496 Edge      csid\n 18:          2   PDC-GIC 497 Edge      ife\n 19:          0   PDC-GIC 498 Edge      csid\n 20:          2   PDC-GIC 499 Edge      ife\n 21:          0   PDC-GIC 500 Edge      csid-lite\n 22:          2   PDC-GIC 501 Edge      ife-lite\n 23:          0   PDC-GIC 391 Edge      csid-lite\n 24:          2   PDC-GIC 392 Edge      ife-lite\n 25:          0   PDC-GIC 495 Edge      a5\n 26:          0   PDC-GIC 506 Edge      jpeg\n 27:          0   PDC-GIC 507 Edge      jpegdma\n 28:          2   PDC-GIC 494 Edge      fd\n 29:          1   PDC-GIC 508 Edge      lrme\n 35:          0   PDC-GIC  21 Level     arm-pmu\n 37:          0   PDC-GIC 524 Level     eud_irq\n 38:          0   PDC-GIC 298 Edge      modem\n 39:          0   PDC-GIC 194 Edge      adsp\n 40:          0   PDC-GIC 526 Edge      slpi\n 41:          0   PDC-GIC 384 Level     spss\n 42:          0   PDC-GIC  32 Edge      apps_wdog_bark\n 44:          0   PDC-GIC 610 Edge      cdsp\n 49:        360   PDC-GIC 297 Edge      1d84000.ufshc\n 50:         91   PDC-GIC 236 Edge      mmc0\n 51:          3   PDC-GIC 254 Edge      8804000.sdhci\n 52:        898   PDC-GIC  37 Level     apps_rsc\n 53:          0   PDC-GIC 161 Level     display_rsc\n 54:          0   PDC-GIC 380 Level     qsee_irq\n 55:          0   PDC-GIC 381 Level     qsee_irq\n 56:         11   PDC-GIC 421 Edge      qcom,qmp-aop\n 57:          0   PDC-GIC 401 Edge      qcom,qmp-npu-low\n 58:          0   PDC-GIC 402 Edge      qcom,qmp-npu-high\n 59:          0   PDC-GIC 304 Level     sps\n 60:          0   PDC-GIC 538 Level     tsens-upper-lower\n 61:          0   PDC-GIC 540 Level     tsens-critical\n 62:          0   PDC-GIC 539 Level     tsens-upper-lower\n 63:          0   PDC-GIC 541 Level     tsens-critical\n 64:          0   PDC-GIC 195 Level     ngd_slim_irq\n 66:          0   PDC-GIC 323 Level     ngd_slim_irq\n 82:         10   PDC-GIC 312 Level     gpi_dmaa00000_gpii1\n131:          0  msmgpio-dc   8 Edge      TE_GPIO\n151:          0  msmgpio-dc  37 Edge      asustek_lid2_isr\n163:          2  msmgpio-dc  47 Level     nq-nci\n207:          0  msmgpio-dc  91 Edge      asustek_googlekey_isr\n213:          0  msmgpio-dc  96 Edge      8804000.sdhci cd\n231:          2  msmgpio-dc 117 Edge      vl53l1_interrupt\n235:          0  msmgpio-dc 119 Level     ALSPS_SENSOR_INT\n239:          0  msmgpio-dc 121 Edge      asustek_lid_isr\n241:        110  msmgpio-dc 122 Edge      fts_ts\n353:          0   PDC-GIC 483 Edge      smp2p\n354:          0   PDC-GIC 190 Edge      smp2p\n355:          0   PDC-GIC 204 Edge      smp2p\n356:          0   PDC-GIC 608 Edge      smp2p\n358:          0   PDC-GIC  97 Level     arm-smmu global fault\n361:          0   PDC-GIC 131 Level     arm-smmu-context-fault\n362:          0   PDC-GIC 132 Level     arm-smmu-context-fault\n363:          0   PDC-GIC 133 Level     arm-smmu-context-fault\n364:          0   PDC-GIC 134 Level     arm-smmu-context-fault\n365:          0   PDC-GIC 135 Level     arm-smmu-context-fault\n366:          0   PDC-GIC 136 Level     arm-smmu-context-fault\n367:          0   PDC-GIC 137 Level     arm-smmu-context-fault\n368:          0   PDC-GIC 138 Level     arm-smmu-context-fault\n369:          0   PDC-GIC 139 Level     arm-smmu-context-fault\n370:          0   PDC-GIC 140 Level     arm-smmu-context-fault\n371:          0   PDC-GIC 141 Level     arm-smmu-context-fault\n372:          0   PDC-GIC 142 Level     arm-smmu-context-fault\n373:          0   PDC-GIC 143 Level     arm-smmu-context-fault\n374:          0   PDC-GIC 144 Level     arm-smmu-context-fault\n375:          0   PDC-GIC 145 Level     arm-smmu-context-fault\n376:          0   PDC-GIC 146 Level     arm-smmu-context-fault\n377:          0   PDC-GIC 147 Level     arm-smmu-context-fault\n378:          0   PDC-GIC 148 Level     arm-smmu-context-fault\n379:          0   PDC-GIC 149 Level     arm-smmu-context-fault\n380:          0   PDC-GIC 150 Level     arm-smmu-context-fault\n381:          0   PDC-GIC 213 Level     arm-smmu-context-fault\n382:          0   PDC-GIC 214 Level     arm-smmu-context-fault\n383:          0   PDC-GIC 215 Level     arm-smmu-context-fault\n384:          0   PDC-GIC 216 Level     arm-smmu-context-fault\n385:          0   PDC-GIC 217 Level     arm-smmu-context-fault\n386:          0   PDC-GIC 218 Level     arm-smmu-context-fault\n387:          0   PDC-GIC 219 Level     arm-smmu-context-fault\n388:          0   PDC-GIC 220 Level     arm-smmu-context-fault\n389:          0   PDC-GIC 221 Level     arm-smmu-context-fault\n390:          0   PDC-GIC 222 Level     arm-smmu-context-fault\n391:          0   PDC-GIC 223 Level     arm-smmu-context-fault\n392:          0   PDC-GIC 224 Level     arm-smmu-context-fault\n393:          0   PDC-GIC 347 Level     arm-smmu-context-fault\n394:          0   PDC-GIC 348 Level     arm-smmu-context-fault\n395:          0   PDC-GIC 349 Level     arm-smmu-context-fault\n396:          0   PDC-GIC 350 Level     arm-smmu-context-fault\n397:          0   PDC-GIC 351 Level     arm-smmu-context-fault\n398:          0   PDC-GIC 352 Level     arm-smmu-context-fault\n399:          0   PDC-GIC 353 Level     arm-smmu-context-fault\n400:          0   PDC-GIC 354 Level     arm-smmu-context-fault\n401:          0   PDC-GIC 355 Level     arm-smmu-context-fault\n402:          0   PDC-GIC 356 Level     arm-smmu-context-fault\n439:         89   PDC-GIC 634 Level     i2c_geni\n440:          0   PDC-GIC 637 Level     i2c_geni\n441:          0   PDC-GIC 636 Level     spi_geni\n444:          6   PDC-GIC 385 Level     i2c_geni\n445:          0   PDC-GIC 386 Level     i2c_geni\n446:        451   PDC-GIC 405 Level     i2c_geni\n447:          0   PDC-GIC 396 Edge      error_irq\n448:          0   PDC-GIC 398 Edge      wdg_bite_irq\n449:          0   PDC-GIC 400 Level     ipc_irq\n450:          0   PDC-GIC 206 Level     msm_vidc\n451:          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n452:          1   PDC-GIC 162 Edge      pwr_event_irq\n453:          0   PDC-GIC 518 Level     ss_phy_irq\n454:          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n455:          0   PDC-GIC 523 Edge      dp_hs_phy_irq\n456:          0   PDC-GIC 167 Edge      pwr_event_irq\n457:          0   PDC-GIC 522 Edge      dm_hs_phy_irq\n458:          0   PDC-GIC 332 Level     kgsl-3d0\n459:          0   PDC-GIC 336 Level     HFI\n460:          0   PDC-GIC 337 Level     GMU\n461:          0   PDC-GIC 706 Level     arm-smmu global fault\n462:          0   PDC-GIC 713 Level     arm-smmu-context-fault\n463:          0   PDC-GIC 714 Level     arm-smmu-context-fault\n464:          0   PDC-GIC 715 Level     arm-smmu-context-fault\n470:          0   PDC-GIC  64 Level     limits_sensor-00\n471:          0   PDC-GIC  65 Level     limits_sensor-01\n472:          0     smp2p   2 Edge      modem\n473:          0     smp2p   0 Edge      modem\n474:          0     smp2p   1 Edge      error_ready_interrupt\n475:          0     smp2p   3 Edge      modem\n476:          0     smp2p   7 Edge      modem\n477:          0     smp2p   2 Edge      adsp\n478:          0     smp2p   0 Edge      adsp\n479:          0     smp2p   1 Edge      error_ready_interrupt\n480:          0     smp2p   3 Edge      adsp\n481:          0     smp2p   2 Edge      slpi\n482:          0     smp2p   0 Edge      slpi\n483:          0     smp2p   1 Edge      error_ready_interrupt\n484:          0     smp2p   3 Edge      slpi\n485:          0     smp2p   2 Edge      cdsp\n486:          0     smp2p   0 Edge      cdsp\n487:          0     smp2p   1 Edge      error_ready_interrupt\n488:          0     smp2p   3 Edge      cdsp\n489:          0      qsee  32 Level     qsee_ipc_irq_spss\n490:          0     smp2p   0 Edge      smp2p_sleepstate\n491:          0  pmic_arb 37748986 Edge      qcom,temp-alarm\n492:          0  pmic_arb 8388857 Edge      pon_kpdpwr_status\n493:          0  pmic_arb 8454393 Edge      pon_resin_status\n497:          0  pmic_arb 206569734 Edge      volume_up\n499:          0  pmic_arb 210764040 Edge      vendor:extcon_usb1\n500:       5579  pmic_arb 51380475 Edge      pm-adc5\n501:          0  pmic_arb 55574780 Edge      thr-int-en\n503:          0  pmic_arb 721486118 Edge      ptrain-done\n513:          5  pmic_arb 588251416 Edge      pm-adc5\n514:          0  pmic_arb 592445721 Edge      thr-int-en\n515:          0  pmic_arb 560988433 Edge      sig-tx\n516:          0  pmic_arb 561053969 Edge      sig-rx\n517:          0  pmic_arb 561119505 Edge      msg-tx\n518:          0  pmic_arb 561185041 Edge      msg-rx\n519:          0  pmic_arb 561250577 Edge      msg-tx-failed\n520:          0  pmic_arb 561316113 Edge      msg-tx-discarded\n521:          0  pmic_arb 561381649 Edge      msg-rx-discarded\n523:          0  pmic_arb 567279894 Edge      bcl-lvl0\n524:          0  pmic_arb 567345430 Edge      bcl-lvl1\n525:          0  pmic_arb 567410966 Edge      bcl-lvl2\n526:          0  pmic_arb 1006633267 Edge      hap_sc_irq\n527:          0  pmic_arb 1006698803 Edge      hap_play_irq\n528:          0  pmic_arb 1111490870 Edge      qcom,temp-alarm\n540:          4  pmic_arb 1125122359 Edge      pm-adc5\n541:          0  pmic_arb 1137705273 Edge      bcl-lvl0\n542:          0  pmic_arb 1137770809 Edge      bcl-lvl1\n543:          0  pmic_arb 1137836345 Edge      bcl-lvl2\n544:          0  pmic_arb 1129316664 Edge      thr-int-en\n545:          0  pmic_arb 1589707088 Edge      qpnp_lcdb_sc_irq\n546:          0  pmic_arb 1563427149 Edge      qpnp_flash_led_fault_irq\n547:          0  pmic_arb 1563623757 Edge      qpnp_flash_led_all_ramp_down_done_irq\n548:          0  pmic_arb 1563689293 Edge      qpnp_flash_led_all_ramp_up_done_irq\n549:          0  pmic_arb 1568735566 Edge      wled_ovp_irq\n550:          0  pmic_arb 1568932174 Edge      wled_pre_flash_irq\n551:          0  pmic_arb 1568997710 Edge      wled_flash_irq\n552:          0   PDC-GIC 165 Edge      dwc3\n554:          0   PDC-GIC 170 Edge      dwc3\n555:          0  pmic_arb 101777663 Edge      qpnp_rtc_alarm\n556:          0  pmic_arb 603980059 Edge      soc-update\n557:          0  pmic_arb 604045595 Edge      soc-ready\n558:          0  pmic_arb 604111131 Edge      bsoc-delta\n559:         14  pmic_arb 604176667 Edge      msoc-delta\n560:          0  pmic_arb 604242203 Edge      msoc-low\n561:          0  pmic_arb 604307739 Edge      msoc-empty\n562:          1  pmic_arb 604373275 Edge      msoc-high\n563:          0  pmic_arb 604438811 Edge      msoc-full\n564:          0  pmic_arb 605028636 Edge      vbatt-low\n565:          0  pmic_arb 605094172 Edge      vbatt-pred-delta\n566:          3  pmic_arb 605225244 Edge      esr-delta\n567:          0  pmic_arb 606077213 Edge      batt-missing\n568:          0  pmic_arb 606142749 Edge      batt-id\n569:          6  pmic_arb 606208285 Edge      batt-temp-delta\n570:          0  pmic_arb 606273821 Edge      batt-temp-hot\n571:          0  pmic_arb 606339357 Edge      batt-temp-cold\n572:          0  pmic_arb 607125790 Edge      ima-rdy\n573:          0  pmic_arb 607191326 Edge      ima-xcp\n574:          0  pmic_arb 607256862 Edge      dma-xcp\n575:        284  pmic_arb 607322398 Edge      dma-grant\n576:          0  pmic_arb 607387934 Edge      mem-attn\n577:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n578:          0       sde   4 Edge      dsi_ctrl\n579:          0  pmic_arb 553648394 Edge      chgr-error\n580:          0  pmic_arb 553713930 Edge      chg-state-change\n586:          0  pmic_arb 554696971 Edge      otg-fail\n589:          0  pmic_arb 554959115 Edge      high-duty-cycle\n590:          0  pmic_arb 555024651 Edge      input-current-limiting\n592:          0  pmic_arb 555155723 Edge      switcher-power-ok\n593:          0  pmic_arb 555745548 Edge      bat-temp\n594:          0  pmic_arb 555876620 Edge      bat-ov\n595:          0  pmic_arb 555942156 Edge      bat-low\n596:          0  pmic_arb 556007692 Edge      bat-therm-or-id-missing\n597:          0  pmic_arb 556073228 Edge      bat-terminal-missing\n600:          0  pmic_arb 556794125 Edge      usbin-collapse\n601:          0  pmic_arb 556859661 Edge      usbin-vashdn\n602:          0  pmic_arb 556925197 Edge      usbin-uv\n603:          0  pmic_arb 556990733 Edge      usbin-ov\n604:          0  pmic_arb 557056269 Edge      usbin-plugin\n606:          0  pmic_arb 557187341 Edge      usbin-src-change\n607:          0  pmic_arb 557252877 Edge      usbin-icl-change\n609:          0  pmic_arb 557973774 Edge      dcin-uv\n610:          0  pmic_arb 558039310 Edge      dcin-ov\n611:          0  pmic_arb 558104846 Edge      dcin-plugin\n613:          0  pmic_arb 558235918 Edge      dcin-pon\n614:          0  pmic_arb 558301454 Edge      dcin-en\n615:          0  pmic_arb 558891279 Edge      typec-or-rid-detect-change\n617:          0  pmic_arb 559022351 Edge      typec-cc-state-change\n618:          0  pmic_arb 559087887 Edge      typec-vconn-oc\n620:          0  pmic_arb 559218959 Edge      typec-attach-detach\n621:          0  pmic_arb 559284495 Edge      typec-legacy-cable-detect\n623:          0  pmic_arb 559939856 Edge      wdog-snarl\n624:          0  pmic_arb 560005392 Edge      wdog-bark\n626:          0  pmic_arb 560136464 Edge      aicl-done\n627:          0  pmic_arb 560202000 Edge      smb-en\n628:          0  pmic_arb 560333072 Edge      temp-change\n662:          0   msmgpio 131 Edge      icm\nIPI0:       232       Rescheduling interrupts\nIPI1:        10       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:         0       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8150/new/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  4:        753          2          2          2          2          2          2          1   PDC-GIC  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   PDC-GIC  38 Level     arch_mem_timer\n  8:          0          0          0          0          0          0          0          0   PDC-GIC 115 Edge      msm_drm\n  9:          0          0          0          0          0          0          0          0   PDC-GIC 509 Edge      csiphy\n 10:          0          0          0          0          0          0          0          0   PDC-GIC 510 Edge      csiphy\n 11:          0          0          0          0          0          0          0          0   PDC-GIC 511 Edge      csiphy\n 12:          0          0          0          0          0          0          0          0   PDC-GIC 480 Edge      csiphy\n 13:        147          0          0          0          0          0          0          0   PDC-GIC 492 Edge      cci\n 14:          0          0          0          0          0          0          0          0   PDC-GIC 303 Edge      cci\n 15:          0          0          0          0          0          0          0          0   PDC-GIC 491 Edge      cpas_camnoc\n 16:          1          0          0          0          0          0          0          0   PDC-GIC 493 Edge      cpas-cdm\n 17:          0          0          0          0          0          0          0          0   PDC-GIC 496 Edge      csid\n 18:          2          0          0          0          0          0          0          0   PDC-GIC 497 Edge      ife\n 19:          0          0          0          0          0          0          0          0   PDC-GIC 498 Edge      csid\n 20:          2          0          0          0          0          0          0          0   PDC-GIC 499 Edge      ife\n 21:          0          0          0          0          0          0          0          0   PDC-GIC 500 Edge      csid-lite\n 22:          2          0          0          0          0          0          0          0   PDC-GIC 501 Edge      ife-lite\n 23:          0          0          0          0          0          0          0          0   PDC-GIC 391 Edge      csid-lite\n 24:          2          0          0          0          0          0          0          0   PDC-GIC 392 Edge      ife-lite\n 25:          0          0          0          0          0          0          0          0   PDC-GIC 495 Edge      a5\n 26:          0          0          0          0          0          0          0          0   PDC-GIC 506 Edge      jpeg\n 27:          0          0          0          0          0          0          0          0   PDC-GIC 507 Edge      jpegdma\n 28:          2          0          0          0          0          0          0          0   PDC-GIC 494 Edge      fd\n 29:          1          0          0          0          0          0          0          0   PDC-GIC 508 Edge      lrme\n 35:          0          0          0          0          0          0          0          0   PDC-GIC  21 Level     arm-pmu\n 37:          0          0          0          0          0          0          0          0   PDC-GIC 524 Level     eud_irq\n 38:          0          0          0          0          0          0          0          0   PDC-GIC 298 Edge      modem\n 39:          0          0          0          0          0          0          0          0   PDC-GIC 194 Edge      adsp\n 40:          0          0          0          0          0          0          0          0   PDC-GIC 526 Edge      slpi\n 41:          0          0          0          0          0          0          0          0   PDC-GIC 384 Level     spss\n 42:          0          0          0          0          0          0          0          0   PDC-GIC  32 Edge      apps_wdog_bark\n 44:          0          0          0          0          0          0          0          0   PDC-GIC 610 Edge      cdsp\n 49:        351          0          0          0          0          0          0          0   PDC-GIC 297 Edge      1d84000.ufshc\n 50:         90          0          0          0          0          0          0          0   PDC-GIC 236 Edge      mmc0\n 51:          2          0          0          0          0          0          0          0   PDC-GIC 254 Edge      8804000.sdhci\n 52:        874          0          0          0          0          0          0          0   PDC-GIC  37 Level     apps_rsc\n 53:          0          0          0          0          0          0          0          0   PDC-GIC 161 Level     display_rsc\n 54:          0          0          0          0          0          0          0          0   PDC-GIC 380 Level     qsee_irq\n 55:          0          0          0          0          0          0          0          0   PDC-GIC 381 Level     qsee_irq\n 56:         11          0          0          0          0          0          0          0   PDC-GIC 421 Edge      qcom,qmp-aop\n 57:          0          0          0          0          0          0          0          0   PDC-GIC 401 Edge      qcom,qmp-npu-low\n 58:          0          0          0          0          0          0          0          0   PDC-GIC 402 Edge      qcom,qmp-npu-high\n 59:          0          0          0          0          0          0          0          0   PDC-GIC 304 Level     sps\n 60:          0          0          0          0          0          0          0          0   PDC-GIC 538 Level     tsens-upper-lower\n 61:          0          0          0          0          0          0          0          0   PDC-GIC 540 Level     tsens-critical\n 62:          0          0          0          0          0          0          0          0   PDC-GIC 539 Level     tsens-upper-lower\n 63:          0          0          0          0          0          0          0          0   PDC-GIC 541 Level     tsens-critical\n 64:          0          0          0          0          0          0          0          0   PDC-GIC 195 Level     ngd_slim_irq\n 66:          0          0          0          0          0          0          0          0   PDC-GIC 323 Level     ngd_slim_irq\n 82:         10          0          0          0          0          0          0          0   PDC-GIC 312 Level     gpi_dmaa00000_gpii1\n131:          0          0          0          0          0          0          0          0  msmgpio-dc   8 Edge      TE_GPIO\n151:          0          0          0          0          0          0          0          0  msmgpio-dc  37 Edge      asustek_lid2_isr\n163:          2          0          0          0          0          0          0          0  msmgpio-dc  47 Level     nq-nci\n207:          0          0          0          0          0          0          0          0  msmgpio-dc  91 Edge      asustek_googlekey_isr\n213:          0          0          0          0          0          0          0          0  msmgpio-dc  96 Edge      8804000.sdhci cd\n231:          2          0          0          0          0          0          0          0  msmgpio-dc 117 Edge      vl53l1_interrupt\n235:          0          0          0          0          0          0          0          0  msmgpio-dc 119 Level     ALSPS_SENSOR_INT\n239:          0          0          0          0          0          0          0          0  msmgpio-dc 121 Edge      asustek_lid_isr\n241:          0          0          0          0          0          0          0          0  msmgpio-dc 122 Edge      fts_ts\n353:          0          0          0          0          0          0          0          0   PDC-GIC 483 Edge      smp2p\n354:          0          0          0          0          0          0          0          0   PDC-GIC 190 Edge      smp2p\n355:          0          0          0          0          0          0          0          0   PDC-GIC 204 Edge      smp2p\n356:          0          0          0          0          0          0          0          0   PDC-GIC 608 Edge      smp2p\n358:          0          0          0          0          0          0          0          0   PDC-GIC  97 Level     arm-smmu global fault\n361:          0          0          0          0          0          0          0          0   PDC-GIC 131 Level     arm-smmu-context-fault\n362:          0          0          0          0          0          0          0          0   PDC-GIC 132 Level     arm-smmu-context-fault\n363:          0          0          0          0          0          0          0          0   PDC-GIC 133 Level     arm-smmu-context-fault\n364:          0          0          0          0          0          0          0          0   PDC-GIC 134 Level     arm-smmu-context-fault\n365:          0          0          0          0          0          0          0          0   PDC-GIC 135 Level     arm-smmu-context-fault\n366:          0          0          0          0          0          0          0          0   PDC-GIC 136 Level     arm-smmu-context-fault\n367:          0          0          0          0          0          0          0          0   PDC-GIC 137 Level     arm-smmu-context-fault\n368:          0          0          0          0          0          0          0          0   PDC-GIC 138 Level     arm-smmu-context-fault\n369:          0          0          0          0          0          0          0          0   PDC-GIC 139 Level     arm-smmu-context-fault\n370:          0          0          0          0          0          0          0          0   PDC-GIC 140 Level     arm-smmu-context-fault\n371:          0          0          0          0          0          0          0          0   PDC-GIC 141 Level     arm-smmu-context-fault\n372:          0          0          0          0          0          0          0          0   PDC-GIC 142 Level     arm-smmu-context-fault\n373:          0          0          0          0          0          0          0          0   PDC-GIC 143 Level     arm-smmu-context-fault\n374:          0          0          0          0          0          0          0          0   PDC-GIC 144 Level     arm-smmu-context-fault\n375:          0          0          0          0          0          0          0          0   PDC-GIC 145 Level     arm-smmu-context-fault\n376:          0          0          0          0          0          0          0          0   PDC-GIC 146 Level     arm-smmu-context-fault\n377:          0          0          0          0          0          0          0          0   PDC-GIC 147 Level     arm-smmu-context-fault\n378:          0          0          0          0          0          0          0          0   PDC-GIC 148 Level     arm-smmu-context-fault\n379:          0          0          0          0          0          0          0          0   PDC-GIC 149 Level     arm-smmu-context-fault\n380:          0          0          0          0          0          0          0          0   PDC-GIC 150 Level     arm-smmu-context-fault\n381:          0          0          0          0          0          0          0          0   PDC-GIC 213 Level     arm-smmu-context-fault\n382:          0          0          0          0          0          0          0          0   PDC-GIC 214 Level     arm-smmu-context-fault\n383:          0          0          0          0          0          0          0          0   PDC-GIC 215 Level     arm-smmu-context-fault\n384:          0          0          0          0          0          0          0          0   PDC-GIC 216 Level     arm-smmu-context-fault\n385:          0          0          0          0          0          0          0          0   PDC-GIC 217 Level     arm-smmu-context-fault\n386:          0          0          0          0          0          0          0          0   PDC-GIC 218 Level     arm-smmu-context-fault\n387:          0          0          0          0          0          0          0          0   PDC-GIC 219 Level     arm-smmu-context-fault\n388:          0          0          0          0          0          0          0          0   PDC-GIC 220 Level     arm-smmu-context-fault\n389:          0          0          0          0          0          0          0          0   PDC-GIC 221 Level     arm-smmu-context-fault\n390:          0          0          0          0          0          0          0          0   PDC-GIC 222 Level     arm-smmu-context-fault\n391:          0          0          0          0          0          0          0          0   PDC-GIC 223 Level     arm-smmu-context-fault\n392:          0          0          0          0          0          0          0          0   PDC-GIC 224 Level     arm-smmu-context-fault\n393:          0          0          0          0          0          0          0          0   PDC-GIC 347 Level     arm-smmu-context-fault\n394:          0          0          0          0          0          0          0          0   PDC-GIC 348 Level     arm-smmu-context-fault\n395:          0          0          0          0          0          0          0          0   PDC-GIC 349 Level     arm-smmu-context-fault\n396:          0          0          0          0          0          0          0          0   PDC-GIC 350 Level     arm-smmu-context-fault\n397:          0          0          0          0          0          0          0          0   PDC-GIC 351 Level     arm-smmu-context-fault\n398:          0          0          0          0          0          0          0          0   PDC-GIC 352 Level     arm-smmu-context-fault\n399:          0          0          0          0          0          0          0          0   PDC-GIC 353 Level     arm-smmu-context-fault\n400:          0          0          0          0          0          0          0          0   PDC-GIC 354 Level     arm-smmu-context-fault\n401:          0          0          0          0          0          0          0          0   PDC-GIC 355 Level     arm-smmu-context-fault\n402:          0          0          0          0          0          0          0          0   PDC-GIC 356 Level     arm-smmu-context-fault\n439:         89          0          0          0          0          0          0          0   PDC-GIC 634 Level     i2c_geni\n440:          0          0          0          0          0          0          0          0   PDC-GIC 637 Level     i2c_geni\n441:          0          0          0          0          0          0          0          0   PDC-GIC 636 Level     spi_geni\n444:          6          0          0          0          0          0          0          0   PDC-GIC 385 Level     i2c_geni\n445:          0          0          0          0          0          0          0          0   PDC-GIC 386 Level     i2c_geni\n446:         24          0          0          0          0          0          0          0   PDC-GIC 405 Level     i2c_geni\n447:          0          0          0          0          0          0          0          0   PDC-GIC 396 Edge      error_irq\n448:          0          0          0          0          0          0          0          0   PDC-GIC 398 Edge      wdg_bite_irq\n449:          0          0          0          0          0          0          0          0   PDC-GIC 400 Level     ipc_irq\n450:          0          0          0          0          0          0          0          0   PDC-GIC 206 Level     msm_vidc\n451:          0          0          0          0          0          0          0          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n452:          1          0          0          0          0          0          0          0   PDC-GIC 162 Edge      pwr_event_irq\n453:          0          0          0          0          0          0          0          0   PDC-GIC 518 Level     ss_phy_irq\n454:          0          0          0          0          0          0          0          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n455:          0          0          0          0          0          0          0          0   PDC-GIC 523 Edge      dp_hs_phy_irq\n456:          0          0          0          0          0          0          0          0   PDC-GIC 167 Edge      pwr_event_irq\n457:          0          0          0          0          0          0          0          0   PDC-GIC 522 Edge      dm_hs_phy_irq\n458:          0          0          0          0          0          0          0          0   PDC-GIC 332 Level     kgsl-3d0\n459:          0          0          0          0          0          0          0          0   PDC-GIC 336 Level     HFI\n460:          0          0          0          0          0          0          0          0   PDC-GIC 337 Level     GMU\n461:          0          0          0          0          0          0          0          0   PDC-GIC 706 Level     arm-smmu global fault\n462:          0          0          0          0          0          0          0          0   PDC-GIC 713 Level     arm-smmu-context-fault\n463:          0          0          0          0          0          0          0          0   PDC-GIC 714 Level     arm-smmu-context-fault\n464:          0          0          0          0          0          0          0          0   PDC-GIC 715 Level     arm-smmu-context-fault\n470:          0          0          0          0          0          0          0          0   PDC-GIC  64 Level     limits_sensor-00\n471:          0          0          0          0          0          0          0          0   PDC-GIC  65 Level     limits_sensor-01\n472:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n473:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n474:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n475:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n476:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n477:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n478:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n479:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n480:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n481:          0          0          0          0          0          0          0          0     smp2p   2 Edge      slpi\n482:          0          0          0          0          0          0          0          0     smp2p   0 Edge      slpi\n483:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n484:          0          0          0          0          0          0          0          0     smp2p   3 Edge      slpi\n485:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n486:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n487:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n488:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n489:          0          0          0          0          0          0          0          0      qsee  32 Level     qsee_ipc_irq_spss\n490:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n491:          0          0          0          0          0          0          0          0  pmic_arb 37748986 Edge      qcom,temp-alarm\n492:          0          0          0          0          0          0          0          0  pmic_arb 8388857 Edge      pon_kpdpwr_status\n493:          0          0          0          0          0          0          0          0  pmic_arb 8454393 Edge      pon_resin_status\n497:          0          0          0          0          0          0          0          0  pmic_arb 206569734 Edge      volume_up\n499:          0          0          0          0          0          0          0          0  pmic_arb 210764040 Edge      vendor:extcon_usb1\n500:          5          0          0          0          0          0          0          0  pmic_arb 51380475 Edge      pm-adc5\n501:          0          0          0          0          0          0          0          0  pmic_arb 55574780 Edge      thr-int-en\n503:          0          0          0          0          0          0          0          0  pmic_arb 721486118 Edge      ptrain-done\n513:          5          0          0          0          0          0          0          0  pmic_arb 588251416 Edge      pm-adc5\n514:          0          0          0          0          0          0          0          0  pmic_arb 592445721 Edge      thr-int-en\n515:          0          0          0          0          0          0          0          0  pmic_arb 560988433 Edge      sig-tx\n516:          0          0          0          0          0          0          0          0  pmic_arb 561053969 Edge      sig-rx\n517:          0          0          0          0          0          0          0          0  pmic_arb 561119505 Edge      msg-tx\n518:          0          0          0          0          0          0          0          0  pmic_arb 561185041 Edge      msg-rx\n519:          0          0          0          0          0          0          0          0  pmic_arb 561250577 Edge      msg-tx-failed\n520:          0          0          0          0          0          0          0          0  pmic_arb 561316113 Edge      msg-tx-discarded\n521:          0          0          0          0          0          0          0          0  pmic_arb 561381649 Edge      msg-rx-discarded\n523:          0          0          0          0          0          0          0          0  pmic_arb 567279894 Edge      bcl-lvl0\n524:          0          0          0          0          0          0          0          0  pmic_arb 567345430 Edge      bcl-lvl1\n525:          0          0          0          0          0          0          0          0  pmic_arb 567410966 Edge      bcl-lvl2\n526:          0          0          0          0          0          0          0          0  pmic_arb 1006633267 Edge      hap_sc_irq\n527:          0          0          0          0          0          0          0          0  pmic_arb 1006698803 Edge      hap_play_irq\n528:          0          0          0          0          0          0          0          0  pmic_arb 1111490870 Edge      qcom,temp-alarm\n540:          4          0          0          0          0          0          0          0  pmic_arb 1125122359 Edge      pm-adc5\n541:          0          0          0          0          0          0          0          0  pmic_arb 1137705273 Edge      bcl-lvl0\n542:          0          0          0          0          0          0          0          0  pmic_arb 1137770809 Edge      bcl-lvl1\n543:          0          0          0          0          0          0          0          0  pmic_arb 1137836345 Edge      bcl-lvl2\n544:          0          0          0          0          0          0          0          0  pmic_arb 1129316664 Edge      thr-int-en\n545:          0          0          0          0          0          0          0          0  pmic_arb 1589707088 Edge      qpnp_lcdb_sc_irq\n546:          0          0          0          0          0          0          0          0  pmic_arb 1563427149 Edge      qpnp_flash_led_fault_irq\n547:          0          0          0          0          0          0          0          0  pmic_arb 1563623757 Edge      qpnp_flash_led_all_ramp_down_done_irq\n548:          0          0          0          0          0          0          0          0  pmic_arb 1563689293 Edge      qpnp_flash_led_all_ramp_up_done_irq\n549:          0          0          0          0          0          0          0          0  pmic_arb 1568735566 Edge      wled_ovp_irq\n550:          0          0          0          0          0          0          0          0  pmic_arb 1568932174 Edge      wled_pre_flash_irq\n551:          0          0          0          0          0          0          0          0  pmic_arb 1568997710 Edge      wled_flash_irq\n552:          0          0          0          0          0          0          0          0   PDC-GIC 165 Edge      dwc3\n554:          0          0          0          0          0          0          0          0   PDC-GIC 170 Edge      dwc3\n555:          0          0          0          0          0          0          0          0  pmic_arb 101777663 Edge      qpnp_rtc_alarm\n556:          0          0          0          0          0          0          0          0  pmic_arb 603980059 Edge      soc-update\n557:          0          0          0          0          0          0          0          0  pmic_arb 604045595 Edge      soc-ready\n558:          0          0          0          0          0          0          0          0  pmic_arb 604111131 Edge      bsoc-delta\n559:          0          0          0          0          0          0          0          0  pmic_arb 604176667 Edge      msoc-delta\n560:          0          0          0          0          0          0          0          0  pmic_arb 604242203 Edge      msoc-low\n561:          0          0          0          0          0          0          0          0  pmic_arb 604307739 Edge      msoc-empty\n562:          0          0          0          0          0          0          0          0  pmic_arb 604373275 Edge      msoc-high\n563:          0          0          0          0          0          0          0          0  pmic_arb 604438811 Edge      msoc-full\n564:          0          0          0          0          0          0          0          0  pmic_arb 605028636 Edge      vbatt-low\n565:          0          0          0          0          0          0          0          0  pmic_arb 605094172 Edge      vbatt-pred-delta\n566:          0          0          0          0          0          0          0          0  pmic_arb 605225244 Edge      esr-delta\n567:          0          0          0          0          0          0          0          0  pmic_arb 606077213 Edge      batt-missing\n568:          0          0          0          0          0          0          0          0  pmic_arb 606142749 Edge      batt-id\n569:          0          0          0          0          0          0          0          0  pmic_arb 606208285 Edge      batt-temp-delta\n570:          0          0          0          0          0          0          0          0  pmic_arb 606273821 Edge      batt-temp-hot\n571:          0          0          0          0          0          0          0          0  pmic_arb 606339357 Edge      batt-temp-cold\n572:          0          0          0          0          0          0          0          0  pmic_arb 607125790 Edge      ima-rdy\n573:          0          0          0          0          0          0          0          0  pmic_arb 607191326 Edge      ima-xcp\n574:          0          0          0          0          0          0          0          0  pmic_arb 607256862 Edge      dma-xcp\n575:         45          0          0          0          0          0          0          0  pmic_arb 607322398 Edge      dma-grant\n576:          0          0          0          0          0          0          0          0  pmic_arb 607387934 Edge      mem-attn\n577:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n578:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n579:          0          0          0          0          0          0          0          0  pmic_arb 553648394 Edge      chgr-error\n580:          0          0          0          0          0          0          0          0  pmic_arb 553713930 Edge      chg-state-change\n586:          0          0          0          0          0          0          0          0  pmic_arb 554696971 Edge      otg-fail\n589:          0          0          0          0          0          0          0          0  pmic_arb 554959115 Edge      high-duty-cycle\n590:          0          0          0          0          0          0          0          0  pmic_arb 555024651 Edge      input-current-limiting\n592:          0          0          0          0          0          0          0          0  pmic_arb 555155723 Edge      switcher-power-ok\n593:          0          0          0          0          0          0          0          0  pmic_arb 555745548 Edge      bat-temp\n594:          0          0          0          0          0          0          0          0  pmic_arb 555876620 Edge      bat-ov\n595:          0          0          0          0          0          0          0          0  pmic_arb 555942156 Edge      bat-low\n596:          0          0          0          0          0          0          0          0  pmic_arb 556007692 Edge      bat-therm-or-id-missing\n597:          0          0          0          0          0          0          0          0  pmic_arb 556073228 Edge      bat-terminal-missing\n600:          0          0          0          0          0          0          0          0  pmic_arb 556794125 Edge      usbin-collapse\n601:          0          0          0          0          0          0          0          0  pmic_arb 556859661 Edge      usbin-vashdn\n602:          0          0          0          0          0          0          0          0  pmic_arb 556925197 Edge      usbin-uv\n603:          0          0          0          0          0          0          0          0  pmic_arb 556990733 Edge      usbin-ov\n604:          0          0          0          0          0          0          0          0  pmic_arb 557056269 Edge      usbin-plugin\n606:          0          0          0          0          0          0          0          0  pmic_arb 557187341 Edge      usbin-src-change\n607:          0          0          0          0          0          0          0          0  pmic_arb 557252877 Edge      usbin-icl-change\n609:          0          0          0          0          0          0          0          0  pmic_arb 557973774 Edge      dcin-uv\n610:          0          0          0          0          0          0          0          0  pmic_arb 558039310 Edge      dcin-ov\n611:          0          0          0          0          0          0          0          0  pmic_arb 558104846 Edge      dcin-plugin\n613:          0          0          0          0          0          0          0          0  pmic_arb 558235918 Edge      dcin-pon\n614:          0          0          0          0          0          0          0          0  pmic_arb 558301454 Edge      dcin-en\n615:          0          0          0          0          0          0          0          0  pmic_arb 558891279 Edge      typec-or-rid-detect-change\n617:          0          0          0          0          0          0          0          0  pmic_arb 559022351 Edge      typec-cc-state-change\n618:          0          0          0          0          0          0          0          0  pmic_arb 559087887 Edge      typec-vconn-oc\n620:          0          0          0          0          0          0          0          0  pmic_arb 559218959 Edge      typec-attach-detach\n621:          0          0          0          0          0          0          0          0  pmic_arb 559284495 Edge      typec-legacy-cable-detect\n623:          0          0          0          0          0          0          0          0  pmic_arb 559939856 Edge      wdog-snarl\n624:          0          0          0          0          0          0          0          0  pmic_arb 560005392 Edge      wdog-bark\n626:          0          0          0          0          0          0          0          0  pmic_arb 560136464 Edge      aicl-done\n627:          0          0          0          0          0          0          0          0  pmic_arb 560202000 Edge      smb-en\n628:          0          0          0          0          0          0          0          0  pmic_arb 560333072 Edge      temp-change\n662:          0          0          0          0          0          0          0          0   msmgpio 131 Edge      icm\nIPI0:        74         32         32         32         33         32         32         30       Rescheduling interrupts\nIPI1:         0         72         72         72         72         72         72         72       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         0          2          2          2          4          2          2          2       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8150/new/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    5 root      0:00 [kworker/0:0H]\n    6 root      0:00 [kworker/u16:0]\n    7 root      0:00 [mm_percpu_wq]\n    8 root      0:00 [ksoftirqd/0]\n    9 root      0:00 [rcu_preempt]\n   10 root      0:00 [rcu_sched]\n   11 root      0:00 [rcu_bh]\n   12 root      0:00 [rcuop/0]\n   13 root      0:00 [rcuos/0]\n   14 root      0:00 [rcuob/0]\n   15 root      0:00 [migration/0]\n   16 root      0:00 [cpuhp/0]\n   17 root      0:00 [cpuhp/1]\n   18 root      0:00 [migration/1]\n   19 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [kworker/1:0]\n   21 root      0:00 [kworker/1:0H]\n   22 root      0:00 [rcuop/1]\n   23 root      0:00 [rcuos/1]\n   24 root      0:00 [rcuob/1]\n   25 root      0:00 [cpuhp/2]\n   26 root      0:00 [migration/2]\n   27 root      0:00 [ksoftirqd/2]\n   28 root      0:00 [kworker/2:0]\n   29 root      0:00 [kworker/2:0H]\n   30 root      0:00 [rcuop/2]\n   31 root      0:00 [rcuos/2]\n   32 root      0:00 [rcuob/2]\n   33 root      0:00 [cpuhp/3]\n   34 root      0:00 [migration/3]\n   35 root      0:00 [ksoftirqd/3]\n   36 root      0:00 [kworker/3:0]\n   37 root      0:00 [kworker/3:0H]\n   38 root      0:00 [rcuop/3]\n   39 root      0:00 [rcuos/3]\n   40 root      0:00 [rcuob/3]\n   41 root      0:00 [cpuhp/4]\n   42 root      0:00 [migration/4]\n   43 root      0:00 [ksoftirqd/4]\n   44 root      0:00 [kworker/4:0]\n   45 root      0:00 [kworker/4:0H]\n   46 root      0:00 [rcuop/4]\n   47 root      0:00 [rcuos/4]\n   48 root      0:00 [rcuob/4]\n   49 root      0:00 [cpuhp/5]\n   50 root      0:00 [migration/5]\n   51 root      0:00 [ksoftirqd/5]\n   52 root      0:00 [kworker/5:0]\n   53 root      0:00 [kworker/5:0H]\n   54 root      0:00 [rcuop/5]\n   55 root      0:00 [rcuos/5]\n   56 root      0:00 [rcuob/5]\n   57 root      0:00 [cpuhp/6]\n   58 root      0:00 [migration/6]\n   59 root      0:00 [ksoftirqd/6]\n   60 root      0:00 [kworker/6:0]\n   61 root      0:00 [kworker/6:0H]\n   62 root      0:00 [rcuop/6]\n   63 root      0:00 [rcuos/6]\n   64 root      0:00 [rcuob/6]\n   65 root      0:00 [cpuhp/7]\n   66 root      0:00 [migration/7]\n   67 root      0:00 [ksoftirqd/7]\n   68 root      0:00 [kworker/7:0]\n   69 root      0:00 [kworker/7:0H]\n   70 root      0:00 [rcuop/7]\n   71 root      0:00 [rcuos/7]\n   72 root      0:00 [rcuob/7]\n   73 root      0:00 [kdevtmpfs]\n   74 root      0:00 [netns]\n   76 root      0:00 [kworker/u17:0]\n   77 root      0:00 [ipa_usb_wq]\n   78 root      0:00 [kworker/u16:1]\n   79 root      0:00 [msm_watchdog]\n   80 root      0:00 [spi_wdsp]\n   81 root      0:00 [qmp_aop]\n   82 root      0:00 [qmp_npu_qmp_low]\n   83 root      0:00 [qmp_npu_qmp_hig]\n   84 root      0:00 [oom_reaper]\n   85 root      0:00 [writeback]\n   86 root      0:00 [kcompactd0]\n   87 root      0:00 [crypto]\n   88 root      0:00 [kblockd]\n   89 root      0:00 [irq/358-arm-smm]\n   90 root      0:00 [irq/461-arm-smm]\n   91 root      0:00 [irq/60-tsens-up]\n   92 root      0:00 [irq/61-tsens-cr]\n   93 root      0:00 [irq/62-tsens-up]\n   94 root      0:00 [irq/63-tsens-cr]\n   95 root      0:00 [system]\n   96 root      0:00 [ipa_power_mgmt]\n   97 root      0:00 [transport_power]\n   98 root      0:00 [ipa_pm_activate]\n   99 root      0:00 [devfreq_wq]\n  100 root      0:00 [cfg80211]\n  138 root      0:00 [kswapd0]\n  139 root      0:00 [ecryptfs-kthrea]\n  178 root      0:00 [irq/362-arm-smm]\n  179 root      0:00 [irq/363-arm-smm]\n  180 root      0:00 [irq/364-arm-smm]\n  181 root      0:00 [irq/353-smp2p]\n  182 root      0:00 [irq/354-smp2p]\n  183 root      0:00 [irq/355-smp2p]\n  184 root      0:00 [irq/356-smp2p]\n  185 root      0:00 [irq/365-arm-smm]\n  186 root      0:00 [mem_share_svc]\n  188 root      0:00 [cdsprm-wq]\n  189 root      0:00 [cdsprm-wq-delay]\n  190 root      0:00 [irq/366-arm-smm]\n  191 root      0:00 [hwrng]\n  193 root      0:00 [diag_real_time_]\n  194 root      0:00 [diag_wq]\n  196 root      0:00 [DIAG_USB_diag]\n  197 root      0:00 [diag_cntl_wq]\n  198 root      0:00 [diag_dci_wq]\n  199 root      0:00 [MODEM_CNTL]\n  200 root      0:00 [MODEM_DATA]\n  201 root      0:00 [MODEM_CMD]\n  202 root      0:00 [MODEM_DCI]\n  203 root      0:00 [MODEM_DCI_CMD]\n  204 root      0:00 [LPASS_CNTL]\n  205 root      0:00 [LPASS_DATA]\n  206 root      0:00 [LPASS_CMD]\n  207 root      0:00 [LPASS_DCI]\n  208 root      0:00 [LPASS_DCI_CMD]\n  209 root      0:00 [WCNSS_CNTL]\n  210 root      0:00 [WCNSS_DATA]\n  211 root      0:00 [WCNSS_CMD]\n  212 root      0:00 [WCNSS_DCI]\n  213 root      0:00 [WCNSS_DCI_CMD]\n  214 root      0:00 [SENSORS_CNTL]\n  215 root      0:00 [SENSORS_DATA]\n  216 root      0:00 [SENSORS_CMD]\n  217 root      0:00 [SENSORS_DCI]\n  218 root      0:00 [SENSORS_DCI_CMD]\n  219 root      0:00 [DIAG_CTRL]\n  220 root      0:00 [DIAG_DATA]\n  221 root      0:00 [DIAG_CMD]\n  222 root      0:00 [DIAG_DCI_DATA]\n  223 root      0:00 [DIAG_DCI_CMD]\n  224 root      0:00 [CDSP_CNTL]\n  225 root      0:00 [CDSP_DATA]\n  226 root      0:00 [CDSP_CMD]\n  227 root      0:00 [CDSP_DCI]\n  228 root      0:00 [CDSP_DCI_CMD]\n  229 root      0:00 [NPU_CNTL]\n  230 root      0:00 [NPU_DATA]\n  231 root      0:00 [NPU_CMD]\n  232 root      0:00 [NPU_DCI]\n  233 root      0:00 [NPU_DCI_CMD]\n  234 root      0:00 [DIAG_RPMSG_DIAG]\n  235 root      0:00 [DIAG_RPMSG_DIAG]\n  236 root      0:00 [DIAG_RPMSG_DIAG]\n  237 root      0:00 [DIAG_RPMSG_DIAG]\n  238 root      0:00 [DIAG_RPMSG_DIAG]\n  239 root      0:00 [kworker/u16:2]\n  240 root      0:00 [dsi_resume_wq]\n  241 root      0:00 [kworker/u16:3]\n  242 root      0:00 [kgsl-workqueue]\n  243 root      0:00 [kgsl-mementry]\n  244 root      0:00 [kworker/u16:4]\n  245 root      0:00 [kgsl_worker_thr]\n  247 root      0:00 [irq/462-arm-smm]\n  248 root      0:00 [irq/463-arm-smm]\n  249 root      0:01 [kworker/u16:6]\n  250 root      0:00 [irq/464-arm-smm]\n  251 root      0:00 [kgsl-events]\n  252 root      0:00 [kgsl_devfreq_wq]\n  253 root      0:00 [qseecom-unreg-l]\n  254 root      0:00 [qseecom-unload-]\n  255 root      0:00 [irq/545-qpnp_lc]\n  256 root      0:00 [irq/549-wled_ov]\n  257 root      0:00 [irq/551-wled_fl]\n  258 root      0:00 [irq/550-wled_pr]\n  259 root      0:00 [irq/367-arm-smm]\n  260 root      0:00 [irq/368-arm-smm]\n  261 root      0:00 [irq/369-arm-smm]\n  262 root      0:00 [qcrypto_seq_res]\n  263 root      0:00 [kworker/1:1]\n  264 root      0:00 [kworker/2:1]\n  265 root      0:00 [kworker/3:1]\n  266 root      0:00 [kworker/4:1]\n  267 root      0:00 [kworker/5:1]\n  268 root      0:00 [kworker/6:1]\n  269 root      0:00 [kworker/7:1]\n  270 root      0:00 [irq/370-arm-smm]\n  291 root      0:00 [scsi_eh_0]\n  292 root      0:00 [scsi_tmf_0]\n  293 root      0:00 [ufs_pm_qos_0]\n  294 root      0:00 [ufs_clk_gating_]\n  295 root      0:00 [ice-set-key]\n  296 root      0:00 [irq/371-arm-smm]\n  297 root      0:00 [spi0]\n  307 root      0:00 [k_ipa_usb]\n  310 root      0:00 [irq/527-hap_pla]\n  312 root      0:00 [irq/526-hap_sc_]\n  313 root      0:00 [irq/372-arm-smm]\n  315 root      0:00 [fts_wq]\n  316 root      0:00 [irq/241-fts_ts]\n  317 root      0:00 [focal_suspend_r]\n  318 root      0:00 [focal_read_gest]\n  319 root      0:00 [irq/373-arm-smm]\n  320 root      0:00 [npu_wq]\n  321 root      0:00 [msm_vidc_worker]\n  322 root      0:00 [pm_workerq_venu]\n  323 root      0:00 [irq/374-arm-smm]\n  324 root      0:00 [irq/375-arm-smm]\n  325 root      0:00 [irq/376-arm-smm]\n  326 root      0:00 [irq/377-arm-smm]\n  327 root      0:00 [cam-cpas]\n  328 root      0:00 [qcom,cam_virtua]\n  329 root      0:00 [irq/378-arm-smm]\n  330 root      0:00 [qcom,cam170-cpa]\n  331 root      0:00 [irq/379-arm-smm]\n  332 root      0:00 [cam_cci_wq]\n  333 root      0:00 [cam_cci_wq]\n  334 root      0:00 [cam_cci_wq]\n  335 root      0:00 [cam_cci_wq]\n  336 root      0:00 [irq/380-arm-smm]\n  337 root      0:00 [irq/381-arm-smm]\n  338 root      0:00 [irq/382-arm-smm]\n  339 root      0:00 [irq/383-arm-smm]\n  340 root      0:00 [irq/556-soc-upd]\n  341 root      0:00 [irq/557-soc-rea]\n  342 root      0:00 [irq/558-bsoc-de]\n  343 root      0:00 [irq/559-msoc-de]\n  344 root      0:00 [irq/560-msoc-lo]\n  345 root      0:00 [irq/561-msoc-em]\n  346 root      0:00 [irq/562-msoc-hi]\n  347 root      0:00 [irq/563-msoc-fu]\n  348 root      0:00 [irq/564-vbatt-l]\n  349 root      0:00 [irq/565-vbatt-p]\n  350 root      0:00 [irq/566-esr-del]\n  351 root      0:00 [irq/567-batt-mi]\n  352 root      0:00 [irq/568-batt-id]\n  353 root      0:00 [irq/569-batt-te]\n  354 root      0:00 [irq/570-batt-te]\n  355 root      0:00 [irq/571-batt-te]\n  356 root      0:00 [irq/572-ima-rdy]\n  357 root      0:00 [irq/573-ima-xcp]\n  358 root      0:00 [irq/574-dma-xcp]\n  359 root      0:00 [irq/575-dma-gra]\n  360 root      0:00 [irq/576-mem-att]\n  361 root      0:00 [irq/503-ptrain-]\n  363 root      0:00 [irq/470-limits_]\n  364 root      0:00 [kworker/0:1H]\n  365 root      0:00 [irq/471-limits_]\n  366 root      0:00 [kworker/4:1H]\n  367 root      0:00 [irq/523-bcl-lvl]\n  368 root      0:00 [irq/524-bcl-lvl]\n  369 root      0:00 [irq/525-bcl-lvl]\n  370 root      0:00 [irq/541-bcl-lvl]\n  371 root      0:00 [irq/542-bcl-lvl]\n  372 root      0:00 [irq/543-bcl-lvl]\n  373 root      0:00 [dm_bufio_cache]\n  374 root      0:00 [mmc_clk_gate/mm]\n  375 root      0:00 [irq/51-8804000.]\n  376 root      0:00 [irq/50-mmc0]\n  377 root      0:00 [irq/213-8804000]\n  378 root      0:00 [irq/499-vendor:]\n  379 root      0:00 [ALSPS_FRGB_wq]\n  380 root      0:00 [ALSPS_FRGB_dela]\n  381 root      0:00 [irq/235-ALSPS_S]\n  382 root      0:00 [MSP430FR2311_wq]\n  383 root      0:00 [irq/384-arm-smm]\n  384 root      0:00 [uaudio_svc]\n  385 root      0:00 [apr_driver]\n  386 root      0:00 [wdsp_glink_wq]\n  387 root      0:00 [mmcqd/0]\n  388 root      0:00 [kworker/u16:9]\n  389 root      0:00 [ipv6_addrconf]\n  390 root      0:00 [dsi_resume_wq]\n  391 root      0:00 [irq/361-arm-smm]\n  392 root      0:00 [irq/385-arm-smm]\n  393 root      0:00 [crtc_commit:127]\n  394 root      0:00 [crtc_event:127]\n  395 root      0:00 [crtc_commit:181]\n  396 root      0:00 [crtc_event:181]\n  397 root      0:00 [pp_event]\n  404 root      0:00 [irq/456-pwr_eve]\n  405 root      0:00 [irq/455-dp_hs_p]\n  406 root      0:00 [irq/457-dm_hs_p]\n  407 root      0:00 [irq/386-arm-smm]\n  410 root      0:00 [rot_commitq_0_0]\n  411 root      0:00 [rot_commitq_0_1]\n  412 root      0:00 [rot_doneq_0_0]\n  413 root      0:00 [rot_doneq_0_1]\n  414 root      0:00 [rot_fenceq_0_0]\n  415 root      0:00 [rot_fenceq_0_1]\n  416 root      0:00 [rot_fenceq_0_2]\n  417 root      0:00 [rot_fenceq_0_3]\n  418 root      0:00 [rot_fenceq_0_4]\n  419 root      0:00 [rot_fenceq_0_5]\n  420 root      0:00 [rot_fenceq_0_6]\n  421 root      0:00 [rot_fenceq_0_7]\n  422 root      0:00 [rot_fenceq_0_8]\n  423 root      0:00 [rot_fenceq_0_9]\n  424 root      0:00 [rot_fenceq_0_10]\n  425 root      0:00 [rot_fenceq_0_11]\n  426 root      0:00 [rot_fenceq_0_12]\n  427 root      0:00 [rot_fenceq_0_13]\n  428 root      0:00 [rot_fenceq_0_14]\n  429 root      0:00 [rot_fenceq_0_15]\n  430 root      0:00 [irq/579-chgr-er]\n  432 root      0:00 [irq/580-chg-sta]\n  433 root      0:00 [irq/586-otg-fai]\n  434 root      0:00 [irq/589-high-du]\n  435 root      0:00 [irq/590-input-c]\n  436 root      0:00 [irq/592-switche]\n  437 root      0:00 [irq/593-bat-tem]\n  438 root      0:00 [irq/594-bat-ov]\n  439 root      0:00 [irq/595-bat-low]\n  440 root      0:00 [irq/596-bat-the]\n  441 root      0:00 [irq/597-bat-ter]\n  442 root      0:00 [irq/600-usbin-c]\n  443 root      0:00 [irq/601-usbin-v]\n  444 root      0:00 [irq/602-usbin-u]\n  445 root      0:00 [irq/603-usbin-o]\n  446 root      0:00 [irq/604-usbin-p]\n  447 root      0:00 [irq/606-usbin-s]\n  448 root      0:00 [irq/607-usbin-i]\n  450 root      0:00 [irq/609-dcin-uv]\n  451 root      0:00 [irq/610-dcin-ov]\n  452 root      0:00 [irq/611-dcin-pl]\n  453 root      0:00 [irq/613-dcin-po]\n  454 root      0:00 [irq/614-dcin-en]\n  455 root      0:00 [irq/615-typec-o]\n  456 root      0:00 [irq/617-typec-c]\n  457 root      0:00 [irq/618-typec-v]\n  458 root      0:00 [kworker/u16:11]\n  459 root      0:00 [irq/620-typec-a]\n  460 root      0:00 [irq/621-typec-l]\n  461 root      0:00 [irq/623-wdog-sn]\n  462 root      0:00 [irq/624-wdog-ba]\n  463 root      0:00 [irq/626-aicl-do]\n  464 root      0:00 [irq/627-smb-en]\n  465 root      0:00 [irq/628-temp-ch]\n  466 root      0:00 [irq/491-qcom,te]\n  468 root      0:00 [irq/528-qcom,te]\n  469 root      0:00 [irq/501-thr-int]\n  470 root      0:00 [irq/514-thr-int]\n  471 root      0:00 [irq/544-thr-int]\n  479 root      0:00 [irq/515-sig-tx]\n  480 root      0:00 [irq/516-sig-rx]\n  481 root      0:00 [irq/452-pwr_eve]\n  482 root      0:00 [irq/451-dp_hs_p]\n  483 root      0:00 [irq/454-dm_hs_p]\n  484 root      0:00 [irq/453-ss_phy_]\n  485 root      0:00 [irq/387-arm-smm]\n  486 root      0:00 [usb_bam_wq]\n  487 root      0:00 [kworker/u17:1]\n  488 root      0:00 [rq_stats]\n  489 root      0:00 [irq/388-arm-smm]\n  490 root      0:00 [irq/389-arm-smm]\n  491 root      0:00 [irq/390-arm-smm]\n  492 root      0:00 [irq/391-arm-smm]\n  493 root      0:00 [irq/392-arm-smm]\n  494 root      0:00 [irq/393-arm-smm]\n  495 root      0:00 [irq/394-arm-smm]\n  496 root      0:00 [irq/395-arm-smm]\n  497 root      0:00 [irq/396-arm-smm]\n  498 root      0:00 [irq/397-arm-smm]\n  499 root      0:00 [irq/398-arm-smm]\n  500 root      0:00 [irq/399-arm-smm]\n  501 root      0:00 [irq/400-arm-smm]\n  502 root      0:00 [irq/401-arm-smm]\n  503 root      0:00 [irq/402-arm-smm]\n  504 root      0:00 [sb-1]\n  505 root      0:00 [ngd_rx_thread1]\n  506 root      0:00 [ngd_notify_sl1]\n  507 root      0:00 [sb-3]\n  508 root      0:00 [ngd_rx_thread3]\n  509 root      0:00 [ngd_notify_sl3]\n  510 root      0:00 [irq/231-vl53l1_]\n  511 root      0:00 [irq/662-icm]\n  512 root      0:00 [icm_data_work]\n  513 root      0:00 [sns_gyro]\n  514 root      0:00 [sns_accel]\n  515 root      0:00 [irq/548-qpnp_fl]\n  516 root      0:00 [irq/547-qpnp_fl]\n  517 root      0:00 [irq/546-qpnp_fl]\n  518 root      0:00 [devfreq_boostd/]\n  587 root      0:00 [kworker/0:1]\n  641 root      0:00 [kworker/0:3]\n  707 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm8150/new/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1113.928112,3.7130937066666667,44.1795810878699,9.915936189723991,25.211941184038487,224.44613429\r\n1,403200,1497.086669,3.713012571924603,61.80604493455422,10.321727839407531,24.220751010845298,167.001914624\r\n1,499200,1853.568119,3.7130771614583336,80.41559357532088,10.84681261667687,23.04824549247098,134.884443855\r\n1,576000,2138.708049,3.7130348072916664,84.712088194,9.902841058914234,25.24528047180538,116.899975789\r\n1,672000,2495.209198,3.7131089255952383,71.48021798673997,7.162198515983167,34.90548320353029,100.198330639\r\n1,768000,2851.407455,3.7127701236979167,75.57871640356323,6.62696411222353,37.72466483391263,87.682940748\r\n1,844800,3136.723504,3.712977632575758,81.19206122296198,6.471561632720256,38.63055228215682,79.706827678\r\n1,940800,3493.327744,3.7131459863945584,89.15868993388727,6.38105343968508,39.17848398591974,71.56961867\r\n1,1036800,3849.588864,3.7129522222222224,95.69964833643743,6.215281834864114,40.223437430889376,64.945712371\r\n1,1113600,4134.760101,3.7129670447198277,100.65855558328334,6.086579045094811,41.07397573378688,60.467577841\r\n1,1209600,4491.313799,3.713057042824074,108.03949431118174,6.014219300681476,41.56815498425079,55.666859041\r\n1,1305600,4847.685715,3.7129945733762253,114.20614904147058,5.890133817105835,42.44385743392831,51.574576908\r\n1,1382400,5133.04862,3.713142809606481,122.60048510691662,5.971549754961625,41.865179100664896,48.707390919\r\n1,1478400,5489.438321,3.713094102408008,129.03427444195555,5.876906915000997,42.53938400178959,45.545316858\r\n1,1555200,5774.605594,3.7130951607510285,133.213870662093,5.767798325213431,43.34409525158788,43.297280505\r\n1,1632000,6060.018422,3.713246582107843,139.58033994202435,5.758711955275214,43.41248562901116,41.25732863\r\n1,1708800,6345.177665,3.7132359930945693,141.1267247091538,5.5609532979067495,44.95632072545994,39.403970505\r\n1,1785600,6630.244523,3.7131745760528676,151.87993184178376,5.727199933205042,43.65134846272,37.708733891\r\n4,710400,2767.017156,3.8950128885135133,133.8064534667222,12.091291980402705,20.676036969845274,90.364041996\r\n4,825600,6431.695395,7.7903287245639525,214.89828357365786,8.355992638164635,29.918647708970653,38.883477798\r\n4,940800,7331.163309,7.792478007015306,236.49155350997057,8.067972532386964,30.986719277542683,34.115267174\r\n4,1056000,8232.349842,7.795785835227273,255.8355293232666,7.772613272569164,32.164214432524425,30.381289468\r\n4,1171200,9122.755802,7.789238218920764,278.79519179777776,7.643966271096858,32.70553416036027,27.417855458\r\n4,1286400,10028.07862,7.795459126243781,299.9928553905833,7.482683258825023,33.41047473914545,24.942871553\r\n4,1401600,10925.61839,7.795104444920091,318.4198547749999,7.2902438499778,34.29240573355599,22.895066814\r\n4,1497600,11670.790346,7.792995690438034,342.1509279724285,7.333831746183879,34.088592246486456,21.434493221\r\n4,1612800,12558.396544,7.7867042063492065,386.9911414339999,7.708807501434991,32.43043751623875,19.919855201\r\n4,1708800,13314.870047,7.791941740987828,425.19071298716665,7.989292480581542,31.291882304677177,18.789903534\r\n4,1804800,14059.951634,7.79031008089539,471.61302075958827,8.391887148030923,29.7906770658445,17.794010722\r\n4,1920000,14968.267273,7.795972538020833,515.0831476535625,8.609835785759973,29.036558445572375,16.715429004\r\n4,2016000,15707.464187,7.79140088640873,568.9134211089333,9.062173049885045,27.58720216705322,15.928914161\r\n4,2131200,16607.985119,7.792785810341592,625.3526651585333,9.42236663196569,26.53261221568971,15.067284681\r\n4,2227200,17363.522711,7.796121906878593,693.5726502910001,9.99628509357935,25.00929071746622,14.412744057\r\n4,2323200,18098.892348,7.790501182851241,771.1439858216921,10.662084313722492,23.44757297391101,13.826321037\r\n4,2419200,18849.430747,7.791596704282408,841.7466104572306,11.17655054917395,22.368261021149976,13.277808797\r\n7,825600,3217.378994,3.8970191303294572,167.75671005183116,13.037532887372274,19.175407046692232,77.716908512\r\n7,940800,7329.658731,7.790878753188776,276.24068654249993,9.426139102881196,26.521993498227175,34.122920924\r\n7,1056000,8233.976681,7.797326402462121,298.7217804681,9.074069635657754,27.5510338842444,30.376324155\r\n7,1171200,9132.086499,7.7972050025614745,324.39347516492586,8.885360977424776,28.13616696442387,27.390689572\r\n7,1286400,10020.843354,7.7898346968283585,350.0318570894583,8.737293106172583,28.612980812488022,24.961422594\r\n7,1401600,10917.507315,7.789317433647262,371.56965031450005,8.513714278907498,29.3643868950792,22.912835512\r\n7,1497600,11673.515129,7.794815123530983,389.65248550628564,8.350475979163939,29.938413166363045,21.430572856\r\n7,1612800,12569.76218,7.793751351686508,414.57698293015784,8.25116942268387,30.298735511684857,19.902623065\r\n7,1708800,13313.451912,7.791111839887641,438.77964834544446,8.245273596729728,30.32040078077651,18.791376555\r\n7,1804800,14055.9991,7.788120068705674,456.76222164817636,8.130104785104578,30.749911176794782,17.799424733\r\n7,1920000,14958.415605,7.7908414609375,501.5874582158749,8.389949748992187,29.797556300027942,16.726793327\r\n7,2016000,15712.400226,7.793849318452381,535.1816546336667,8.522102576965082,29.335483554931674,15.923756921\r\n7,2131200,16593.654586,7.786061648836338,600.6341491289334,9.057958163910978,27.600039156292244,15.080657963\r\n7,2227200,17362.316828,7.795580472341954,629.4780876486428,9.072722360041364,27.555125140946142,14.41308687\r\n7,2323200,18097.582163,7.789937225809229,709.6802478478461,9.812838232961566,25.476828830240354,13.827126037\r\n7,2419200,18853.695324,7.793359508928572,727.4694641350001,9.656215211112372,25.89006091250949,13.273705203\r\n7,2534400,19716.088328,7.779390912247475,831.1958899249166,10.551097416282044,23.694217780058565,12.693875829\r\n7,2649600,20652.622883,7.794619143644324,916.8253161271667,11.111118504278723,22.499985028845547,12.119122704\r\n7,2745600,21396.781924,7.7931169594988345,1005.0693308277274,11.756548900449861,21.264743771059702,11.697251662\r\n7,2841600,22118.021764,7.783650677083334,1077.1777199237274,12.189732316825994,20.5090639812422,11.31636135\r\n"
  },
  {
    "path": "results/sm8150/new/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 2897.518573635258, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1392.3989791600002, 1396.386366648, 1382.587806406, 1392.31581908, 1401.952754898, 1388.158741158, 1396.052773752, 1391.8996778599999, 1385.751052175, 1397.71157974, 1389.6534927710002, 1391.65019762, 1395.385246164, 1395.552042612, 1393.392981772, 1389.4043704790001, 1391.15089632, 1387.163001168, 1393.1428030079999, 1395.0513114720002, 1389.071867092, 1390.98457616, 1386.914236092, 1396.8760644959998, 1390.90141608, 1388.739363705, 1392.642786788, 1392.642786788, 1394.550580332], \"power_mean\": 1392.0719162688276, \"energy_millijoules\": 6960.359581344138, \"energy_joules\": 6.960359581344138}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 224.44613429, \"elapsed_ns\": 224446134290, \"power_samples\": [41.418909114000144, 37.183114010000054, 41.163353273999974, 377.55062288199974, 39.173233642000014, 43.1575510199998, 37.268061146000036, 41.163353273999974, 33.19879663199981, 41.163353273999974, 39.08816743399984, 44.89139964799983, 40.90779743400003, 35.02333825000028, 45.062246983999785, 32.85996163999971, 32.774905724999826, 31.03949764799995, 32.85996163999971, 36.8433254659999, 40.8226121539999, 38.918035017999955, 32.85996163999971, 34.85368212200001, 40.73707775400021, 38.7475539699999, 32.605488229, 36.67308304999983, 32.85996163999971, 32.690196976999914, 36.75803018600004, 40.56670719400017, 32.690196976999914, 40.73707775400021, 34.683678337999936, 42.64537383499987, 32.605488229, 36.58813591400008, 36.503188778000094, 40.48152191400004, 42.474764642999844, 32.35136198499981, 36.503188778000094, 34.34436608200008, 32.35136198499981, 40.39633663399991, 40.39633663399991, 36.24834736999992, 44.20766020699989, 26.464852328000006, 38.407289137999896, 36.33329450600013, 40.140431673999956, 32.18159732199979, 42.21885085500003, 36.24834736999992, 40.140431673999956, 34.174362298000005, 36.163052090000065, 30.192907529999957, 32.09688857399988, 40.140431673999956, 36.163052090000065, 30.27784388500004, 42.133196649999945, 36.163052090000065, 32.09688857399988, 36.07810495400008, 35.90821068200012, 30.192907529999957, 36.07810495400008, 29.939138502000105, 36.07810495400008, 27.95080592599993, 33.91987810599994, 33.91987810599994, 32.09688857399988, 37.98160946600001, 37.811477049999894, 39.79969055400011, 29.939138502000105, 39.79969055400011, 37.811477049999894, 41.79197826599989, 39.79969055400011, 41.70667366999987, 35.823263546000135, 37.72641084199995, 41.70667366999987, 39.714505273999976, 33.83505004200015, 37.811477049999894, 45.68286253399992, 31.758053581999775, 37.72641084199995, 33.580218193999826, 37.555929793999894, 35.56807399399986, 37.555929793999894, 39.62931999399984, 33.580218193999826, 35.56807399399986, 35.65336927399994, 39.45860031400002, 35.483126858000105, 45.42588372899991, 31.50358017099984, 41.45041027299999, 25.451945468000076, 45.34034098899974, 39.45860031400002, 37.47086358600018, 39.20304447400008, 37.38579737800001, 37.300731169999835, 41.194496484999945, 31.50358017099984, 43.26729966499988, 41.27980108099973, 37.38579737800001, 41.27980108099973, 31.24945392699965, 51.22136674399985, 41.365105676999974, 47.07504546400014, 37.21566496199989, 43.09645232899993, 33.24090593799997, 41.10919188899993, 27.274694902999727, 35.22828544999993, 35.14333831399995, 39.11785919399995, 41.10919188899993, 34.97309589799988, 39.11785919399995, 35.058391177999965, 35.14333831399995, 41.10919188899993, 39.11785919399995, 41.10919188899993, 41.10919188899993, 38.94713951400013, 39.03267391400004, 29.092895063000014, 33.071249810000154, 37.045532546000004, 38.94713951400013, 44.998170028999766, 31.080036430999826, 36.87505149799995, 36.87505149799995, 39.03267391400004, 34.97309589799988, 38.861954233999995, 40.85292849199982, 40.85292849199982, 34.8881487619999, 36.78998528999978, 38.861954233999995, 40.85292849199982, 40.85292849199982, 40.85292849199982, 34.8881487619999, 44.74119122399975, 42.839831227999866, 44.826733963999914, 34.80320162599992, 42.839831227999866, 376.36767073400006, 44.74119122399975, 40.597014703999776, 44.65564848399981, 34.63330735400018, 38.861954233999995, 42.668983891999915, 42.49813655599996, 392.12435285800007, 38.436027834000015, 40.51171010799976, 44.48456300399971, 44.48456300399971, 44.39902026399977, 40.597014703999776, 38.52121311399992, 380.43781814700014, 44.39902026399977, 40.51171010799976, 32.561933769999996, 30.5714367759997, 42.49813655599996, 42.41271288799999, 40.426405511999974, 42.41271288799999, 38.35049343399987, 38.436027834000015, 38.18012287400006, 50.362012694000214, 40.426405511999974, 40.51171010799976, 38.436027834000015, 40.25544671099988, 30.486728028000016, 36.36430561799989, 38.52121311399992, 46.13206070000001, 34.46341308199999, 38.265308154000195, 44.142041458999984, 44.142041458999984, 38.265308154000195, 40.17014211499986, 36.279239409999946, 38.265308154000195, 40.17014211499986, 38.09493759399993, 38.18012287400006, 38.09493759399993, 36.194173202, 38.009752314000025, 40.17014211499986, 44.142041458999984, 34.20822352999994], \"power_mean\": 44.1795810878699, \"energy_millijoules\": 9915.936189723992, \"energy_joules\": 9.915936189723991, \"coremark_score\": 1113.928112, \"coremarks_per_mhz\": 3.7130937066666667, \"ulpmark_cm_score\": 25.211941184038487}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1733.0572558620001, 1396.374618436, 1394.383783884, 1396.29110114], \"power_mean\": 1480.0266898305, \"energy_millijoules\": 7400.133449152499, \"energy_joules\": 7.4001334491524995}}, \"403200\": {\"active\": {\"elapsed_sec\": 167.001914624, \"elapsed_ns\": 167001914624, \"power_samples\": [385.43060458399987, 49.76035924400003, 47.77488586000004, 39.914228327000046, 57.87907483699996, 41.81439711499979, 53.73537460499983, 39.828923730999804, 393.14494726700013, 47.688753170000155, 47.77488586000004, 43.713977173999865, 49.76035924400003, 49.76035924400003, 47.688753170000155, 39.828923730999804, 383.2373505600001, 43.713977173999865, 39.74326952599972, 41.72862334999991, 45.78941247600005, 45.78941247600005, 49.674106993999885, 39.828923730999804, 388.970508891, 43.62843443399993, 43.457348954000054, 43.54289169399999, 47.51719091400014, 47.688753170000155, 47.43140978600013, 47.34562865800012, 385.1117849120001, 41.47235234599998, 39.57266033400015, 47.51719091400014, 43.457348954000054, 49.41640639399998, 39.487355737999906, 49.41640639399998, 47.43140978600013, 41.47235234599998, 47.43140978600013, 53.39046722599983, 39.487355737999906, 53.39046722599983, 39.487355737999906, 47.43140978600013, 41.47235234599998, 47.43140978600013, 47.43140978600013, 53.132051461999936, 47.43140978600013, 53.39046722599983, 49.33050619400001, 49.33050619400001, 49.33050619400001, 47.34562865800012, 53.132051461999936, 43.28626347399995, 47.34562865800012, 45.27508906600019, 47.17406640200011, 43.20072073399979, 51.229364457999964, 47.17406640200011, 47.17406640200011, 41.21608134200005, 47.08793371200022, 41.3015050099998, 47.08793371200022, 49.15870579400007, 43.1148274090001, 45.10341388000006, 53.132051461999936, 46.91637145599998, 53.04555984700005, 49.072453544000155, 53.04555984700005, 41.13030757699994, 47.00215258399999, 39.14578774500001, 49.072453544000155, 47.00215258399999, 45.017751824000015, 47.00215258399999, 47.08793371200022, 47.00215258399999, 48.90065314399999, 43.029284668999935, 52.87328267099974, 48.90065314399999, 46.91637145599998, 46.74480919999996, 58.74369783800012, 47.00215258399999, 52.78714408299993, 44.93208976799974, 45.017751824000015, 46.8305903280002, 50.884934832, 46.74480919999996, 50.79891556000007, 38.97517855299975, 48.72885274399982, 48.81475294400002, 40.87403657300001, 48.72885274399982, 48.72885274399982, 42.943741929, 46.74480919999996, 48.72885274399982, 54.68504903899975, 44.67510359999983, 56.582715850999875, 52.70100549499989, 50.54085774400005, 56.582715850999875, 50.71289628799991, 42.68711370899973, 50.62687701599998, 48.55705234400011, 44.7607656560001, 48.642952543999854, 50.54085774400005, 46.573246944000175, 46.573246944000175, 48.55705234400011, 50.62687701599998, 46.74480919999996, 48.55705234400011, 48.55705234400011, 48.47115214400014, 38.46300136799982, 52.35609811600011, 48.55705234400011, 50.36846666200017, 38.548655572999905, 52.35609811600011, 46.401333126000054, 52.35609811600011, 54.426276058999974, 46.401333126000054, 44.58944154400024, 54.167149564000056, 36.47536991400011, 46.401333126000054, 46.401333126000054, 56.15047818799985, 46.401333126000054, 48.38489989400023, 48.29899969400003, 48.38489989400023, 46.401333126000054, 395.39773399, 58.22436705799987, 54.25340722399983, 48.213099493999835, 50.36846666200017, 42.25904942399984, 52.26995952800007, 56.23685492000004, 391.43607617299995, 42.25904942399984, 48.041299094000124, 48.29899969400003], \"power_mean\": 61.80604493455422, \"energy_millijoules\": 10321.727839407531, \"energy_joules\": 10.321727839407531, \"coremark_score\": 1497.086669, \"coremarks_per_mhz\": 3.713012571924603, \"ulpmark_cm_score\": 24.220751010845298}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1399.078023693, 1395.1896274460003, 1397.008080193, 1397.0918358770002], \"power_mean\": 1397.09189180225, \"energy_millijoules\": 6985.45945901125, \"energy_joules\": 6.98545945901125}}, \"499200\": {\"active\": {\"elapsed_sec\": 134.884443855, \"elapsed_ns\": 134884443855, \"power_samples\": [57.96487891400011, 52.01154376399995, 53.99463424400005, 49.93837030200007, 391.1153894060001, 57.96487891400011, 59.94796939400021, 56.06410145599989, 57.87838286600004, 46.05820861400002, 65.72735938400001, 55.97772472399993, 393.3120634700001, 55.80497126, 55.97772472399993, 57.96487891400011, 55.97772472399993, 55.97772472399993, 61.931059874000084, 48.041299094000124, 389.136945662, 61.84432568199986, 57.96487891400011, 55.97772472399993, 55.97772472399993, 53.82211892400005, 57.87838286600004, 57.791886817999966, 398.92599228200015, 47.869498694000185, 61.583767638000154, 47.69734624400007, 51.75277497299976, 57.791886817999966, 55.89134799199974, 51.92540517599991, 388.92368429399994, 51.75277497299976, 57.61854023000001, 51.75277497299976, 57.61854023000001, 51.49435920899987, 51.75277497299976, 49.67995994800026, 400.8010252939998, 51.66663638499995, 51.66663638499995, 45.800513667999894, 55.5454870609999, 57.61854023000001, 55.63186379300009, 55.63186379300009, 394.648378506, 55.37273359699998, 53.649250088999906, 51.66663638499995, 53.562992428999905, 59.514538813999934, 47.69734624400007, 51.408220621000055, 392.456672906, 59.341308574000095, 55.45911032899994, 61.49703344600016, 53.562992428999905, 61.583767638000154, 55.5454870609999, 57.35905208600025, 392.5635419779999, 55.45911032899994, 59.514538813999934, 57.445548133999864, 55.28635686499979, 57.445548133999864, 57.27255603799995, 57.27255603799995, 394.21998745400015, 57.1860599900001, 57.27255603799995, 61.32356506200017, 51.408220621000055, 59.25469345400006, 55.28635686499979, 51.32208203299979, 49.421902132000014, 65.205167459, 53.3042194489999, 57.35905208600025, 57.27255603799995, 61.15009667800018, 55.199980133000054, 61.236830870000176, 55.28635686499979, 55.28635686499979, 57.27255603799995, 55.28635686499979, 53.04509295399998, 61.15009667800018, 58.99449311400008, 65.03086585399979, 57.1860599900001, 61.06300701800001, 47.267845244, 61.06300701800001, 51.14945182999986, 58.99449311400008, 58.907877994000046, 56.9262173540003, 51.14945182999986, 51.06331324200005, 52.95883529399998, 49.07747250599982, 55.02687266599992, 55.02687266599992, 56.9262173540003, 54.940495933999955, 56.9262173540003, 54.85411920199999, 50.97717465399978, 56.9262173540003, 50.97717465399978, 52.95883529399998, 50.97717465399978, 53.04509295399998, 50.97717465399978, 52.95883529399998, 52.95883529399998, 50.97717465399978, 50.97717465399978, 56.839721306, 47.009792594000146, 52.95883529399998, 44.94235082599994, 54.940495933999955], \"power_mean\": 80.41559357532088, \"energy_millijoules\": 10846.812616676869, \"energy_joules\": 10.84681261667687, \"coremark_score\": 1853.568119, \"coremarks_per_mhz\": 3.7130771614583336, \"ulpmark_cm_score\": 23.04824549247098}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1738.90820811, 1411.2099004769998, 1395.416035675, 1395.3322799910002], \"power_mean\": 1485.21660606325, \"energy_millijoules\": 7426.08303031625, \"energy_joules\": 7.42608303031625}}, \"576000\": {\"active\": {\"elapsed_sec\": 116.899975789, \"elapsed_ns\": 116899975789, \"power_samples\": [62.610639482000124, 64.68297553399998, 66.57730637799978, 60.88953863400002, 60.802804442000024, 54.68136573799984, 54.7677424699998, 60.71607025000003, 64.59600295399991, 64.50903037400008, 52.61380465399998, 60.54260186600004, 60.54260186600004, 56.58023316200001, 58.56141751399991, 60.54260186600004, 58.56141751399991, 60.54260186600004, 66.49021472599998, 52.78631997399998, 66.40276614100003, 64.50903037400008, 62.52378621799994, 52.52719347900006, 56.66672920999986, 64.50903037400008, 66.49021472599998, 52.61380465399998, 58.56141751399991, 64.42170134900016, 70.27756592900005, 58.474447414000224, 62.43657699800019, 56.406886574000055, 62.43657699800019, 64.24775618900003, 66.315674489, 56.49338262200013, 64.50903037400008, 64.42170134900016, 62.349723734000236, 58.30121717399993, 66.40276614100003, 64.3347287690001, 62.349723734000236, 64.42170134900016, 64.42170134900016, 66.40276614100003, 56.406886574000055, 58.30121717399993, 58.214602054000125, 397.102266482, 58.30121717399993, 62.1760172060001, 66.22858283699998, 56.32039052599998, 58.30121717399993, 64.24775618900003, 64.16078360899996, 406.8840412940001, 56.32039052599998, 60.19530963000011, 60.19530963000011, 60.19530963000011, 60.28204382199988, 58.12798693400009, 62.1760172060001, 56.23389447800014, 402.8200471959997, 64.0738110289999, 62.08916394200014, 62.08916394200014, 54.249128075000044, 60.108575438000116, 53.98999787899993, 64.0738110289999, 398.97527014399975, 62.08916394200014, 62.1760172060001, 60.108575438000116, 79.75078493899991, 63.98683844899983, 56.14739843000007, 54.07637461099989, 404.5843102959998, 48.04488870399996, 65.88021622899987, 59.9351070539999, 65.88021622899987, 65.9673078809999, 65.88021622899987, 59.9351070539999, 396.8878139059998, 55.97440633400015, 57.9547566939998, 61.915457414, 61.828248194000025, 63.81253684399985, 63.98683844899983, 63.81253684399985, 398.54544778699983, 57.9547566939998, 63.89986586899977, 57.86778659400011, 73.71774869399997, 63.81253684399985, 77.68226814400009, 59.84801739400018, 400.5211514109999, 59.761283202000186, 65.61858433999987, 51.83677868399991, 65.79276764399992, 65.70567599200012, 57.86778659400011, 55.887555794000036], \"power_mean\": 84.712088194, \"energy_millijoules\": 9902.841058914233, \"energy_joules\": 9.902841058914234, \"coremark_score\": 2138.708049, \"coremarks_per_mhz\": 3.7130348072916664, \"ulpmark_cm_score\": 25.24528047180538}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1400.024672568, 1408.0412653269998, 1394.242769577, 1396.224906993], \"power_mean\": 1399.63340361625, \"energy_millijoules\": 6998.16701808125, \"energy_joules\": 6.99816701808125}}, \"672000\": {\"active\": {\"elapsed_sec\": 100.198330639, \"elapsed_ns\": 100198330639, \"power_samples\": [36.15872844899968, 69.57856965199994, 67.51136627200003, 75.5226049820003, 69.49123985599999, 69.49123985599999, 59.761283202000186, 412.16711110899973, 63.55161910399988, 67.51136627200003, 65.53149268799984, 65.44440103599982, 69.49123985599999, 71.38772144599989, 67.51136627200003, 69.40391005999982, 65.35730938400002, 65.44440103599982, 69.40391005999982, 63.55161910399988, 69.49123985599999, 75.25954321400013, 67.42415554799982, 69.31658026399987, 69.31658026399987, 71.38772144599989, 71.38772144599989, 67.33694482400006, 67.51136627200003, 69.31658026399987, 65.27021773199976, 59.24052258200004, 65.35730938400002, 65.35730938400002, 73.45504414200013, 61.480835137999975, 71.30027233400006, 59.5878148180002, 65.27021773199976, 67.33694482400006, 67.24973409999984, 63.290701363999915, 65.35730938400002, 63.290701363999915, 71.12501571200005, 69.31658026399987, 71.12501571200005, 63.290701363999915, 71.212823222, 65.27021773199976, 63.203372339, 75.08380932800014, 75.17185595799992, 75.08380932800014, 67.24973409999984, 65.09567749499979, 73.1044125200001, 69.05423296699996, 69.14156276300014, 65.18276914700004, 74.99612207199993, 71.12501571200005, 76.89164913299987, 63.203372339, 67.16216595500009, 63.203372339, 71.12501571200005, 69.14156276300014, 74.99612207199993, 70.8626683760001, 63.11639975899993, 63.11639975899993, 70.8626683760001, 72.92927615200006, 69.14156276300014, 74.90843481599995, 69.05423296699996, 62.94245459900003, 74.90843481599995, 59.06705419800005, 70.8626683760001, 68.79224357899989, 74.73306030399999, 74.90843481599995, 80.58583231299986, 68.79224357899989, 64.92149419099997, 62.855482018999965, 63.02942717899987, 62.855482018999965, 72.75413978400002, 70.8626683760001, 65.00858584299976, 70.8626683760001, 68.87957337500006, 70.77521926400004, 68.79224357899989, 68.79224357899989, 68.79224357899989, 64.83440253899971], \"power_mean\": 71.48021798673997, \"energy_millijoules\": 7162.198515983167, \"energy_joules\": 7.162198515983167, \"coremark_score\": 2495.209198, \"coremarks_per_mhz\": 3.7131089255952383, \"ulpmark_cm_score\": 34.90548320353029}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1410.9907314480001, 1403.144611554, 1397.202488826, 1403.2289628419999], \"power_mean\": 1403.6416986675, \"energy_millijoules\": 7018.208493337499, \"energy_joules\": 7.018208493337499}}, \"768000\": {\"active\": {\"elapsed_sec\": 87.682940748, \"elapsed_ns\": 87682940748, \"power_samples\": [74.64537304800001, 66.72611233499993, 64.66021923500011, 74.64537304800001, 72.6665716, 72.6665716, 74.64537304800001, 66.63890161099994, 72.75413978400002, 80.32133732600005, 74.55768579200026, 76.54042284499997, 74.55768579200026, 74.64537304800001, 76.54042284499997, 72.491076346, 66.72611233499993, 68.61758398699999, 72.57900341599998, 76.54042284499997, 80.49778759700007, 84.282279002, 68.52989628199998, 66.46412274199997, 76.54042284499997, 78.34289358199999, 82.29978106999988, 82.29978106999988, 78.34289358199999, 74.38195190600027, 74.38195190600027, 76.36444983799993, 78.34289358199999, 76.27664326600006, 80.32133732600005, 74.38195190600027, 76.27664326600006, 68.44256648600003, 78.34289358199999, 68.2679068939999, 82.21161728200013, 78.25496793799994, 82.21161728200013, 78.16704229399988, 80.23329261000003, 74.38195190600027, 80.14524789400002, 72.31593997800019, 78.16704229399988, 74.20657739399985, 74.29426465000006, 74.20657739399985, 74.03120288200012, 74.1188901380001, 76.0132235499998, 80.14524789400002, 74.20657739399985, 78.07911665000006, 81.94712591799998, 74.03120288200012, 80.14524789400002, 78.07911665000006, 74.1188901380001, 74.20657739399985, 82.03528970599996, 74.1188901380001, 82.03528970599996, 78.07911665000006, 74.03120288200012, 77.99119100600001, 74.1188901380001, 81.85896213000001, 75.92541697799993, 71.96566724200011, 74.03120288200012, 77.90326536199996, 72.0532354259999, 79.88111374599998, 77.90326536199996, 74.03120288200012, 75.92541697799993, 68.00591750599983, 72.0532354259999, 77.99119100600001, 71.96566724200011, 74.03120288200012, 81.94712591799998], \"power_mean\": 75.57871640356323, \"energy_millijoules\": 6626.96411222353, \"energy_joules\": 6.62696411222353, \"coremark_score\": 2851.407455, \"coremarks_per_mhz\": 3.7127701236979167, \"ulpmark_cm_score\": 37.72466483391263}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1398.4258333799999, 1408.32806721, 1406.263842094, 1406.263842094], \"power_mean\": 1404.8203961945, \"energy_millijoules\": 7024.1019809725, \"energy_joules\": 7.0241019809725005}}, \"844800\": {\"active\": {\"elapsed_sec\": 79.706827678, \"elapsed_ns\": 79706827678, \"power_samples\": [79.70466347499996, 81.77079834200003, 77.8153397179999, 83.75258037799972, 81.77079834200003, 85.55314303399996, 89.60081719300001, 77.8153397179999, 73.76778173999992, 83.66393545799974, 81.68227322699977, 87.61915496199981, 87.5306337139998, 81.59410943900002, 77.6391280790001, 83.4873692499998, 87.5306337139998, 85.55314303399996, 85.55314303399996, 73.68009448400016, 73.68009448400016, 73.68009448400016, 83.57565235399989, 81.59410943900002, 83.4873692499998, 81.59410943900002, 77.55120243500005, 81.50594565100005, 83.57565235399989, 81.59410943900002, 77.6391280790001, 77.55120243500005, 73.5047199720002, 81.41778186299985, 77.55120243500005, 87.44211246600003, 79.44052932699992, 77.55120243500005, 81.41778186299985, 81.3296180750001, 81.50594565100005, 77.37535114700017, 81.3296180750001, 79.52857404299994, 77.37535114700017, 81.41778186299985, 81.3296180750001, 75.48602425499985, 77.463276791, 73.32934546000001, 77.55120243500005, 85.37633868199964, 79.35248461100014, 87.17654872199978, 77.463276791, 79.2644398949999, 71.43989925200026, 87.17654872199978, 77.37535114700017, 83.222519938, 83.222519938, 89.15761437300011, 83.222519938, 87.17654872199978, 87.17654872199978, 87.17654872199978, 85.19953432999978, 81.2414542869999, 83.222519938, 79.2644398949999, 87.08802747399977, 81.2414542869999, 83.04559191399994, 81.15329049899992, 81.2414542869999, 77.28742550300012, 79.2644398949999, 81.2414542869999, 81.2414542869999], \"power_mean\": 81.19206122296198, \"energy_millijoules\": 6471.561632720256, \"energy_joules\": 6.471561632720256, \"coremark_score\": 3136.723504, \"coremarks_per_mhz\": 3.712977632575758, \"ulpmark_cm_score\": 38.63055228215682}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1405.501841652, 1415.56883424, 1399.646688448, 1411.526174208], \"power_mean\": 1408.060884637, \"energy_millijoules\": 7040.304423185, \"energy_joules\": 7.040304423185}}, \"940800\": {\"active\": {\"elapsed_sec\": 71.56961867, \"elapsed_ns\": 71569618670, \"power_samples\": [87.08802747399977, 89.068973809, 92.844642776, 88.8913293999999, 88.8913293999999, 84.9339654979999, 88.8913293999999, 92.93352148400004, 88.8913293999999, 82.95730880999986, 86.82210093799995, 80.97660159599991, 92.75576406800019, 92.93352148400004, 90.86798608799995, 82.95730880999986, 81.06476538399988, 82.86902570599977, 86.82210093799995, 92.75576406800019, 88.80268883600002, 88.80268883600002, 84.66875896999977, 88.71404827200013, 90.69046681600003, 90.7792264520001, 86.73357968999994, 86.64505844199971, 94.73230168400005, 88.80268883600002, 94.55430612400005, 82.86902570599977, 86.73357968999994, 86.73357968999994, 86.64505844199971, 86.64505844199971, 92.66688536000015, 92.66688536000015, 90.60170717999995, 92.48912794400007, 92.48912794400007, 94.37631056400005, 88.71404827200013, 88.44812658000001, 90.60170717999995, 86.4680159459997, 90.42418790800002, 98.3324825259997, 90.5129475440001, 88.62540770800001, 86.73357968999994, 92.57800665200011, 86.4680159459997, 96.44553829400002, 96.35642119799991, 80.53578265599981, 84.49195461799991, 92.31100627100022, 90.42418790800002, 96.35642119799991, 80.53578265599981, 102.28865448800002, 90.42418790800002, 86.4680159459997, 88.27048217099991, 82.5158932899999, 88.35912273500003, 84.49195461799991, 90.42418790800002, 90.42418790800002, 96.17782177200002], \"power_mean\": 89.15868993388727, \"energy_millijoules\": 6381.05343968508, \"energy_joules\": 6.38105343968508, \"coremark_score\": 3493.327744, \"coremarks_per_mhz\": 3.7131459863945584, \"ulpmark_cm_score\": 39.17848398591974}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1404.824777565, 1406.886976993, 1407.0567416559998, 1410.846248976], \"power_mean\": 1407.4036862975, \"energy_millijoules\": 7037.0184314875, \"energy_joules\": 7.0370184314875}}, \"1036800\": {\"active\": {\"elapsed_sec\": 64.945712371, \"elapsed_ns\": 64945712371, \"power_samples\": [92.31100627100022, 90.15754523099986, 92.40024923599981, 92.31100627100022, 100.12946716399983, 100.21882240399987, 96.17782177200002, 98.06440829999997, 96.0887046759999, 94.10895247899998, 103.99556774500002, 99.950756684, 101.93038956500004, 92.13324885499992, 94.01995469899998, 86.11356816199986, 98.06440829999997, 94.01995469899998, 89.98002595899993, 99.86140144399997, 97.9751721319999, 92.04437014699988, 99.950756684, 94.01995469899998, 103.90597411699991, 95.91047048399992, 94.01995469899998, 97.9751721319999, 95.91047048399992, 99.86140144399997, 97.88593596399983, 93.84195913899998, 101.75144045299999, 91.95549143899984, 97.88593596399983, 93.93095691899998, 93.93095691899998, 92.04437014699988, 95.82135338800003, 97.88593596399983, 95.91047048399992, 99.77204620399993, 99.6826909639999, 91.95549143899984, 91.95549143899984, 92.04437014699988, 91.95549143899984, 97.70746362799991, 92.04437014699988, 91.8666127309998, 95.73223629200015, 99.6826909639999, 99.59296951399983, 95.73223629200015, 95.64275396199992, 97.70746362799991, 97.61786173799965, 91.68849105799995, 95.4645197699997, 93.75296135899998, 97.70746362799991, 93.57460105400014, 93.75296135899998, 91.68849105799995], \"power_mean\": 95.69964833643743, \"energy_millijoules\": 6215.281834864114, \"energy_joules\": 6.215281834864114, \"coremark_score\": 3849.588864, \"coremarks_per_mhz\": 3.7129522222222224, \"ulpmark_cm_score\": 40.223437430889376}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1400.3592905399998, 1402.34011707, 1394.5133015699998, 1412.142980432], \"power_mean\": 1402.338922403, \"energy_millijoules\": 7011.694612015, \"energy_joules\": 7.011694612015}}, \"1113600\": {\"active\": {\"elapsed_sec\": 60.467577841, \"elapsed_ns\": 60467577841, \"power_samples\": [101.57212464200006, 101.66196589700007, 99.59296951399983, 101.39317553000001, 93.66359883399991, 99.414259034, 101.57212464200006, 103.45763879000015, 99.50361427400003, 95.37540267399982, 95.64275396199992, 95.64275396199992, 97.43938940199996, 99.50361427400003, 105.43262749400014, 103.45763879000015, 105.43262749400014, 103.27845153399994, 93.48560327399991, 105.34291479400008, 101.39317553000001, 105.25320209400002, 99.414259034, 105.25320209400002, 99.32490379399974, 101.21422641800018, 103.18885790600007, 103.18885790600007, 95.28628557799993, 95.28628557799993, 99.23554855399993, 97.26091706600005, 99.23554855399993, 101.12475186200004, 101.21422641800018, 103.18885790600007, 95.28628557799993, 99.23554855399993, 101.12475186200004, 105.16348939400018, 104.98406399400005, 108.93689657000004, 101.21422641800018, 99.1461933139999, 99.05683807399987, 106.95845733800002, 100.85596149499997, 105.07377669400012, 99.05683807399987, 100.94543605100012, 105.16348939400018, 99.05683807399987, 102.91970983500005, 107.04828911000004, 99.1461933139999, 101.12475186200004, 91.15521880999995, 94.92945195999982, 99.05683807399987, 100.94543605100012], \"power_mean\": 100.65855558328334, \"energy_millijoules\": 6086.579045094811, \"energy_joules\": 6.086579045094811, \"coremark_score\": 4134.760101, \"coremarks_per_mhz\": 3.7129670447198277, \"ulpmark_cm_score\": 41.07397573378688}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1403.809354774, 1415.673821354, 1413.6937107200001, 1403.724418419], \"power_mean\": 1409.22532631675, \"energy_millijoules\": 7046.126631583749, \"energy_joules\": 7.046126631583749}}, \"1209600\": {\"active\": {\"elapsed_sec\": 55.666859041, \"elapsed_ns\": 55666859041, \"power_samples\": [77.5024630580001, 108.84657682999978, 110.73078045399984, 99.05683807399987, 106.77842563099989, 108.75662574199987, 108.75662574199987, 96.9036066719998, 104.62484551900002, 104.80427091899992, 110.55064013399988, 104.71455821900008, 108.75662574199987, 114.588781574, 110.64071029399997, 110.73078045399984, 112.52455670199993, 106.50893031499982, 110.64071029399997, 110.73078045399984, 114.588781574, 110.55064013399988, 110.37049981399991, 112.52455670199993, 102.74052257900007, 112.43436746999987, 110.64071029399997, 106.41909854299979, 110.46056997399978, 108.48677247799992, 100.67701238300015, 106.50893031499982, 108.48677247799992, 108.39682138999979, 104.44542011900012, 110.46056997399978, 104.44542011900012, 108.48677247799992, 106.329266771, 104.44542011900012, 110.46056997399978, 108.30687030199988, 108.39682138999979, 108.39682138999979, 118.26925793300006, 112.34417823799981, 112.43436746999987, 104.35570741900005, 110.37049981399991, 104.35570741900005, 110.37049981399991, 112.25398900599998, 114.22754835799992, 104.44542011900012, 114.13686993800002], \"power_mean\": 108.03949431118174, \"energy_millijoules\": 6014.219300681476, \"energy_joules\": 6.014219300681476, \"coremark_score\": 4491.313799, \"coremarks_per_mhz\": 3.713057042824074, \"ulpmark_cm_score\": 41.56815498425079}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1409.2315571039999, 1397.4556151900001, 1413.2674352, 1409.3165042399999], \"power_mean\": 1407.3177779334999, \"energy_millijoules\": 7036.5888896675, \"energy_joules\": 7.0365888896675}}, \"1305600\": {\"active\": {\"elapsed_sec\": 51.574576908, \"elapsed_ns\": 51574576908, \"power_samples\": [108.39682138999979, 112.25398900599998, 119.97056748400018, 110.18999035399997, 114.31785666199971, 110.28042965400005, 119.97056748400018, 116.11435366400019, 112.07324091399983, 110.18999035399997, 116.02392604400006, 112.16343014600011, 112.07324091399983, 116.20515188900004, 112.07324091399983, 117.99724676400024, 114.13686993800002, 114.13686993800002, 116.02392604400006, 110.00985003399978, 114.04656163399977, 110.09992019399988, 119.97056748400018, 110.09992019399988, 116.02392604400006, 117.81615338000006, 109.91977987399991, 121.94793189400002, 109.91977987399991, 117.81615338000006, 115.84307080400004, 115.75264318400014, 108.12659947399993, 119.60790442799998, 113.86594502599996, 115.75264318400014, 110.09992019399988, 117.81615338000006, 117.81615338000006, 111.89286244999994, 113.86594502599996, 119.69857019200003, 111.89286244999994, 111.80267321799988, 117.63505999599988, 117.7256066880002, 109.82970971400005, 117.63505999599988, 108.0366483859998, 115.75264318400014, 111.80267321799988], \"power_mean\": 114.20614904147058, \"energy_millijoules\": 5890.133817105835, \"energy_joules\": 5.890133817105835, \"coremark_score\": 4847.685715, \"coremarks_per_mhz\": 3.7129945733762253, \"ulpmark_cm_score\": 42.44385743392831}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1406.662066592, 1412.7559744, 1412.8411596800001, 1404.85292554], \"power_mean\": 1409.278031553, \"energy_millijoules\": 7046.3901577649995, \"energy_joules\": 7.046390157765}}, \"1382400\": {\"active\": {\"elapsed_sec\": 48.707390919, \"elapsed_ns\": 48707390919, \"power_samples\": [111.71248398600005, 129.480212016, 113.86594502599996, 131.4530564480001, 117.63505999599988, 119.60790442799998, 125.43945721399973, 131.4530564480001, 121.58479157399984, 117.63505999599988, 117.45359551900015, 123.46673185399982, 127.41218257399987, 117.45359551900015, 127.22952444800012, 121.49400649399968, 125.43945721399973, 127.13838215199985, 119.42620131900003, 129.38895040399984, 127.13838215199985, 119.42620131900003, 119.51723866399993, 121.31206426400013, 121.22127918399997, 121.31206426400013, 121.40284934399983, 119.42620131900003, 121.49400649399968, 125.16601449599989, 127.13838215199985, 113.50434169399978, 127.22952444800012, 125.16601449599989, 129.0235299330002, 121.22127918399997, 131.08715920100008, 113.32372508599997, 125.34806094399983, 115.30013447900023, 126.86495526399995, 127.13838215199985, 121.31206426400013, 121.03970902399988, 119.33553555499998, 121.22127918399997, 127.13838215199985, 119.24486979100016], \"power_mean\": 122.60048510691662, \"energy_millijoules\": 5971.549754961625, \"energy_joules\": 5.971549754961625, \"coremark_score\": 5133.04862, \"coremarks_per_mhz\": 3.713142809606481, \"ulpmark_cm_score\": 41.865179100664896}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1414.307898991, 1408.3813894559999, 1414.307898991, 1408.3813894559999], \"power_mean\": 1411.3446442235, \"energy_millijoules\": 7056.7232211175, \"energy_joules\": 7.056723221117499}}, \"1478400\": {\"active\": {\"elapsed_sec\": 45.545316858, \"elapsed_ns\": 45545316858, \"power_samples\": [123.10274268799981, 129.11479154500012, 124.98396804799995, 130.99577851699996, 125.07499127200003, 133.05952685700026, 129.0235299330002, 130.90439783300008, 132.96802710099996, 123.10274268799981, 127.04723985600003, 128.8410067090001, 127.04723985600003, 128.74974509699996, 128.8410067090001, 124.8929448240001, 126.7738129679999, 123.01183853599969, 132.78502758900026, 122.92093438400002, 132.69352783299996, 127.04723985600003, 132.69352783299996, 122.8300302319999, 134.85269810599993, 132.69352783299996, 126.7738129679999, 126.7738129679999, 132.69352783299996, 126.7738129679999, 126.7738129679999, 128.74974509699996, 132.69352783299996, 130.72163646500007, 128.65848348500003, 128.74974509699996, 126.59115484199992, 132.51015332199995, 132.6020280769999, 132.51015332199995, 122.6478493699999, 132.6020280769999, 134.48584632999996, 132.69352783299996, 134.48584632999996], \"power_mean\": 129.03427444195555, \"energy_millijoules\": 5876.906915000996, \"energy_joules\": 5.876906915000997, \"coremark_score\": 5489.438321, \"coremarks_per_mhz\": 3.713094102408008, \"ulpmark_cm_score\": 42.53938400178959}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1413.881376011, 1404.0901996409998, 1413.881376011, 1419.891760302], \"power_mean\": 1412.93617799125, \"energy_millijoules\": 7064.680889956249, \"energy_joules\": 7.064680889956249}}, \"1555200\": {\"active\": {\"elapsed_sec\": 43.297280505, \"elapsed_ns\": 43297280505, \"power_samples\": [122.6478493699999, 132.6020280769999, 130.63025578099996, 128.65848348500003, 136.6413513299999, 128.475586238, 132.6020280769999, 132.32715381000025, 132.41865356599988, 134.394227258, 128.475586238, 130.44711990199994, 142.19230633799998, 130.26435853399994, 136.27402277800002, 138.24543737, 138.24543737, 132.23565405399995, 132.32715381000025, 134.21098911399986, 132.32715381000025, 124.43745565799986, 136.36576092199994, 134.21098911399986, 136.09054648999995, 132.32715381000025, 135.9070702019999, 140.21685196199996, 132.32715381000025, 137.87800850600001, 130.26435853399994, 136.09054648999995, 132.14415429799988, 130.08159716600017, 132.14415429799988, 134.21098911399986, 134.1193700419999, 128.1105397900003, 136.1822846340001, 132.14415429799988, 136.09054648999995, 136.09054648999995, 134.1193700419999], \"power_mean\": 133.213870662093, \"energy_millijoules\": 5767.798325213431, \"energy_joules\": 5.767798325213431, \"coremark_score\": 5774.605594, \"coremarks_per_mhz\": 3.7130951607510285, \"ulpmark_cm_score\": 43.34409525158788}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1407.6165170880001, 1401.693226158, 1415.4274669259999, 1413.625112614], \"power_mean\": 1409.5905806965, \"energy_millijoules\": 7047.9529034825, \"energy_joules\": 7.0479529034825}}, \"1632000\": {\"active\": {\"elapsed_sec\": 41.25732863, \"elapsed_ns\": 41257328630, \"power_samples\": [132.32715381000025, 135.99880834600003, 135.99880834600003, 133.93613189799999, 137.96986572200012, 139.75659356999995, 141.82392392199995, 137.87800850600001, 137.87800850600001, 141.82392392199995, 133.93613189799999, 145.5807546169999, 126.04430106599989, 147.740777642, 133.93613189799999, 139.6646172820001, 141.73145087700004, 141.73145087700004, 137.69391760999997, 135.63147979399992, 147.64794567199988, 135.72321793800006, 147.37058647999993, 137.78577482600008, 139.5726409939998, 139.6646172820001, 143.7022696209999, 135.63147979399992, 145.76580052999975, 139.5726409939998, 145.67308836499978, 129.80708060300026, 141.73145087700004, 135.63147979399992, 145.48842086899958, 145.48842086899958, 131.77778027500017, 147.37058647999993, 147.37058647999993, 141.45516406499974, 139.48066470599997], \"power_mean\": 139.58033994202435, \"energy_millijoules\": 5758.711955275215, \"energy_joules\": 5.758711955275214, \"coremark_score\": 6060.018422, \"coremarks_per_mhz\": 3.713246582107843, \"ulpmark_cm_score\": 43.41248562901116}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1413.2838942299998, 1403.327126575, 1413.198240025, 1418.948775538], \"power_mean\": 1412.189509092, \"energy_millijoules\": 7060.94754546, \"energy_joules\": 7.0609475454599995}}, \"1708800\": {\"active\": {\"elapsed_sec\": 39.403970505, \"elapsed_ns\": 39403970505, \"power_samples\": [43.909927141000026, 135.81495608199998, 139.48066470599997, 147.37058647999993, 135.72321793800006, 145.39608712099994, 141.45516406499974, 141.5472596689997, 143.42562559299995, 139.48066470599997, 147.27813341599995, 145.21141962499973, 137.51020317799998, 147.27813341599995, 139.3886884179999, 145.30375337300006, 143.42562559299995, 145.30375337300006, 143.42562559299995, 151.1261271200001, 147.09322728799998, 147.09322728799998, 139.29671213000006, 145.1190858770001, 145.21141962499973, 145.0263737119999, 141.17887725299988, 145.0263737119999, 141.17887725299988, 145.21141962499973, 147.18568035199996, 147.09322728799998, 143.05638895999982, 148.97038006999992, 150.940364822, 135.08067495399996, 145.0263737119999, 135.264527218, 151.0334359120002], \"power_mean\": 141.1267247091538, \"energy_millijoules\": 5560.95329790675, \"energy_joules\": 5.5609532979067495, \"coremark_score\": 6345.177665, \"coremarks_per_mhz\": 3.7132359930945693, \"ulpmark_cm_score\": 44.95632072545994}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1412.686412449, 1410.71048032, 1420.578018682, 1412.771717045], \"power_mean\": 1414.186657124, \"energy_millijoules\": 7070.93328562, \"energy_joules\": 7.07093328562}}, \"1785600\": {\"active\": {\"elapsed_sec\": 37.708733891, \"elapsed_ns\": 37708733891, \"power_samples\": [154.79144158400004, 143.05638895999982, 154.88437118000002, 150.8476736140001, 154.60558239199986, 148.87780793399997, 150.66229119800005, 146.9079422540001, 150.940364822, 152.631918734, 147.00039531800007, 150.8476736140001, 154.79144158400004, 150.75498240599995, 154.51265279599988, 154.69851198799984, 154.79144158400004, 142.9641742839999, 152.7247290140001, 156.48216125999988, 146.72303612600012, 160.42521406600008, 150.56959999000014, 154.69851198799984, 148.60009152599991, 156.38911259199995, 156.57520992799982, 150.75498240599995, 156.48216125999988, 146.72303612600012, 152.53910845400014, 154.51265279599988, 152.53910845400014, 144.65703871999995, 154.51265279599988, 150.66229119800005, 154.4197231999999], \"power_mean\": 151.87993184178376, \"energy_millijoules\": 5727.199933205042, \"energy_joules\": 5.727199933205042, \"coremark_score\": 6630.244523, \"coremarks_per_mhz\": 3.7131745760528676, \"ulpmark_cm_score\": 43.65134846272}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1412.344844456, 1422.2918573999998, 1410.4545753599998, 1412.344844456], \"power_mean\": 1414.3590304179997, \"energy_millijoules\": 7071.795152089999, \"energy_joules\": 7.071795152089999}}}}, \"4\": {\"freqs\": {\"710400\": {\"active\": {\"elapsed_sec\": 90.364041996, \"elapsed_ns\": 90364041996, \"power_samples\": [129.258421988, 137.14239784999995, 125.22327333399994, 135.08067495399996, 127.28843723599994, 133.0191902019999, 133.0191902019999, 123.25340765399983, 136.77496898599998, 131.13690698400023, 134.98893681000004, 136.86682620199986, 129.07566062, 134.98893681000004, 134.8054605220002, 133.0191902019999, 130.95390747199986, 132.83595205799998, 128.9842799359999, 130.86240771600023, 136.77496898599998, 128.89289925200023, 140.71802179199972, 136.77496898599998, 136.68311176999987, 134.71372237800006, 136.86682620199986, 128.710137884, 130.77090796000016, 132.7443329859998, 126.74086756400015, 136.591254554, 134.8054605220002, 132.83595205799998, 140.53383058399982, 140.625926188, 130.86240771600023, 136.68311176999987, 118.9505359740001, 140.53383058399982, 128.710137884, 136.49902087400005, 130.49603369300007, 132.65271391399983, 136.77496898599998, 136.49902087400005, 136.40716365799994, 136.49902087400005, 142.5953155799998, 126.92339078800023, 134.43813196999986, 136.591254554, 130.67940820400008, 134.43813196999986, 136.49902087400005, 136.591254554, 128.710137884, 130.49603369300007, 142.31829362299982, 126.64923192900005, 136.49902087400005, 134.43813196999986, 142.31829362299982, 132.46910028199977, 136.49902087400005, 130.58753344900015, 134.43813196999986, 136.31530644200006, 136.40716365799994, 136.22344922599996, 140.25716633099978, 130.49603369300007, 134.43813196999986, 126.5579703169999, 142.41050829899973, 142.31829362299982, 126.5579703169999, 138.19224277000012, 124.67604602400002, 134.34639382600017, 136.13159200999985, 136.22344922599996, 132.28586213800008, 138.3761953459998, 134.34639382600017, 140.25716633099978, 130.404533937, 126.5579703169999, 132.46910028199977, 136.22344922599996], \"power_mean\": 133.8064534667222, \"energy_millijoules\": 12091.291980402704, \"energy_joules\": 12.091291980402705, \"coremark_score\": 2767.017156, \"coremarks_per_mhz\": 3.8950128885135133, \"ulpmark_cm_score\": 20.676036969845274}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1416.0310454199998, 1412.174235264, 1412.174235264, 1414.145411712], \"power_mean\": 1413.631231915, \"energy_millijoules\": 7068.156159575, \"energy_joules\": 7.0681561595749995}}, \"825600\": {\"active\": {\"elapsed_sec\": 38.883477798, \"elapsed_ns\": 38883477798, \"power_samples\": [212.27835081399985, 214.14956851400007, 212.18184710599985, 220.05676495399985, 214.14956851400007, 217.99218237800005, 210.11774106200005, 214.14956851400007, 208.24640428999987, 214.24619129400003, 216.12132213799987, 204.21090208200008, 212.08534339800008, 212.08534339800008, 212.08534339800008, 215.9274414619997, 217.99218237800005, 211.89194047499996, 213.95592695899995, 225.76888706900013, 211.89194047499996, 219.86240701399993, 211.89194047499996, 210.02096140699996, 223.50974840899994, 213.66605861899984, 209.8281921350001, 213.66605861899984, 213.85930417900022, 217.60434073399983, 215.63721517399995, 221.54262284900005, 213.5694358390001, 213.66605861899984, 221.44552329300018, 217.60434073399983, 219.57146629399972, 217.60434073399983], \"power_mean\": 214.89828357365786, \"energy_millijoules\": 8355.992638164635, \"energy_joules\": 8.355992638164635, \"coremark_score\": 6431.695395, \"coremarks_per_mhz\": 7.7903287245639525, \"ulpmark_cm_score\": 29.918647708970653}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1427.0021841500002, 1415.4318956549998, 1425.291087261, 1415.4318956549998], \"power_mean\": 1420.78926568025, \"energy_millijoules\": 7103.946328401251, \"energy_joules\": 7.103946328401251}}, \"940800\": {\"active\": {\"elapsed_sec\": 34.115267174, \"elapsed_ns\": 34115267174, \"power_samples\": [223.8014042929999, 235.21859946000018, 231.38228164399993, 236.993531459, 233.15377873999978, 238.960299803, 238.960299803, 240.927068147, 231.089196164, 238.960299803, 236.993531459, 234.924398182, 235.022732852, 236.79702436399998, 229.02445182999986, 236.89507698400007, 236.79702436399998, 236.79702436399998, 236.79702436399998, 240.730083788, 236.89507698400007, 236.79702436399998, 240.730083788, 230.99110061400006, 234.8264648779998, 240.63179302400022, 240.828374552, 238.66538238399994, 242.60223319400006, 226.9563162559998, 242.50382311399994, 240.63179302400022, 234.924398182, 242.50382311399994], \"power_mean\": 236.49155350997057, \"energy_millijoules\": 8067.972532386964, \"energy_joules\": 8.067972532386964, \"coremark_score\": 7331.163309, \"coremarks_per_mhz\": 7.792478007015306, \"ulpmark_cm_score\": 30.986719277542683}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1420.8308499, 1418.775560308, 1418.861341436, 1418.861341436], \"power_mean\": 1419.3322732699999, \"energy_millijoules\": 7096.661366349999, \"energy_joules\": 7.096661366349999}}, \"1056000\": {\"active\": {\"elapsed_sec\": 30.381289468, \"elapsed_ns\": 30381289468, \"power_samples\": [252.24030455599996, 246.4364062499999, 256.0774345179998, 256.0774345179998, 250.27413206000006, 269.74778801799994, 252.24030455599996, 265.91173043599974, 252.14129887199988, 255.87894637399995, 254.10735229600004, 258.04348794199973, 249.97747222399994, 257.9441247980001, 255.87894637399995, 253.90910278399997, 253.80957177899995, 251.94328750399995, 252.14129887199988, 257.9441247980001, 257.84476165399997, 249.97747222399994, 259.7106870040002, 252.04229318800003, 263.74623580399975, 255.779295564, 259.810576934, 265.611802229, 253.90910278399997, 253.90910278399997], \"power_mean\": 255.8355293232666, \"energy_millijoules\": 7772.613272569164, \"energy_joules\": 7.772613272569164, \"coremark_score\": 8232.349842, \"coremarks_per_mhz\": 7.795785835227273, \"ulpmark_cm_score\": 32.164214432524425}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1416.548833674, 1420.48689705, 1420.48689705, 1420.40099685], \"power_mean\": 1419.480906156, \"energy_millijoules\": 7097.40453078, \"energy_joules\": 7.0974045307799996}}, \"1171200\": {\"active\": {\"elapsed_sec\": 27.417855458, \"elapsed_ns\": 27417855458, \"power_samples\": [271.512917454, 275.2434383340003, 279.07770739499983, 271.21232604600004, 284.9777502400002, 271.21232604600004, 278.97703372699993, 281.04304589899994, 281.04304589899994, 275.04256777399996, 279.07770739499983, 279.07770739499983, 281.04304589899994, 281.04304589899994, 281.04304589899994, 281.04304589899994, 284.7756879839999, 280.9422531590001, 273.1776645499999, 288.705888704, 272.97703213399996, 288.705888704, 273.07734834200005, 280.9422531590001, 282.7096755680002, 271.1121289099999, 278.6746001260001], \"power_mean\": 278.79519179777776, \"energy_millijoules\": 7643.966271096858, \"energy_joules\": 7.643966271096858, \"coremark_score\": 9122.755802, \"coremarks_per_mhz\": 7.789238218920764, \"ulpmark_cm_score\": 32.70553416036027}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1410.296485325, 1414.2335961249998, 1424.084440975, 1420.14329625], \"power_mean\": 1417.18945466875, \"energy_millijoules\": 7085.94727334375, \"energy_joules\": 7.085947273343749}}, \"1286400\": {\"active\": {\"elapsed_sec\": 24.942871553, \"elapsed_ns\": 24942871553, \"power_samples\": [292.843131589, 296.468571185, 300.30015820200015, 304.02946285400003, 294.29991993, 300.19817401, 300.30015820200015, 304.02946285400003, 294.1982931979999, 290.16765744199984, 302.0608134020001, 307.75378857400005, 297.9278359939999, 305.8917447859999, 293.9950397340001, 301.958710138, 298.23343135400023, 299.892221434, 307.75378857400005, 297.9278359939999, 299.892221434, 296.1629167819997, 305.78940313399994, 307.75378857400005], \"power_mean\": 299.9928553905833, \"energy_millijoules\": 7482.683258825024, \"energy_joules\": 7.482683258825023, \"coremark_score\": 10028.07862, \"coremarks_per_mhz\": 7.795459126243781, \"ulpmark_cm_score\": 33.41047473914545}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1425.70761222, 1415.9488482079998, 1423.739533596, 1427.589314112], \"power_mean\": 1423.246327034, \"energy_millijoules\": 7116.231635169999, \"energy_joules\": 7.116231635169999}}, \"1401600\": {\"active\": {\"elapsed_sec\": 22.895066814, \"elapsed_ns\": 22895066814, \"power_samples\": [325.3418005699998, 319.3418006859997, 313.44533390599986, 313.44533390599986, 319.3418006859997, 323.1662576630001, 309.3074344209997, 323.062843875, 317.17111788299985, 319.13502654700005, 319.13502654700005, 317.06806131099984, 322.9594300870001, 322.9594300870001, 315.203184816, 320.9956404950001, 314.99731030399994, 317.17111788299985, 326.9946856059996, 305.37961709299975, 326.68372907799994, 312.93082159999994], \"power_mean\": 318.4198547749999, \"energy_millijoules\": 7290.2438499778, \"energy_joules\": 7.2902438499778, \"coremark_score\": 10925.61839, \"coremarks_per_mhz\": 7.795104444920091, \"ulpmark_cm_score\": 34.29240573355599}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1425.36258158, 1417.488140264, 1417.488140264, 1421.59538348], \"power_mean\": 1420.4835613970001, \"energy_millijoules\": 7102.417806985, \"energy_joules\": 7.102417806985001}}, \"1497600\": {\"active\": {\"elapsed_sec\": 21.434493221, \"elapsed_ns\": 21434493221, \"power_samples\": [338.47308510799985, 336.50550998899985, 346.2264709430001, 344.25901514, 334.33370112500006, 344.0491373179998, 344.25901514, 342.29558276399985, 352.01559040999996, 336.4012622089999, 344.0491373179998, 336.4012622089999, 345.91151037199984, 342.1909775239999, 343.9444130059999, 334.2291456600001, 341.98133833399993, 340.12274983, 347.769622344, 347.769622344, 341.98133833399993], \"power_mean\": 342.1509279724285, \"energy_millijoules\": 7333.831746183879, \"energy_joules\": 7.333831746183879, \"coremark_score\": 11670.790346, \"coremarks_per_mhz\": 7.792995690438034, \"ulpmark_cm_score\": 34.088592246486456}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1421.07891531, 1421.1649345820001, 1417.402007574, 1419.28359015], \"power_mean\": 1419.732361904, \"energy_millijoules\": 7098.66180952, \"energy_joules\": 7.09866180952}}, \"1612800\": {\"active\": {\"elapsed_sec\": 19.919855201, \"elapsed_ns\": 19919855201, \"power_samples\": [383.015828178, 384.7642121299998, 380.732027218, 382.6945065300001, 384.7642121299998, 396.331521072, 376.8030471200002, 398.1858205440001, 382.58696035, 392.19139543999995, 392.406801568, 380.732027218, 384.22764123799993, 386.30100987499986, 388.15566680699976, 388.15566680699976, 390.11766934299976, 390.225253091, 390.44042058699983], \"power_mean\": 386.9911414339999, \"energy_millijoules\": 7708.807501434991, \"energy_joules\": 7.708807501434991, \"coremark_score\": 12558.396544, \"coremarks_per_mhz\": 7.7867042063492065, \"ulpmark_cm_score\": 32.43043751623875}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1416.9731019340002, 1428.95547954, 1413.1208393349998, 1426.897946253], \"power_mean\": 1421.4868417655, \"energy_millijoules\": 7107.4342088275, \"energy_joules\": 7.1074342088275}}, \"1708800\": {\"active\": {\"elapsed_sec\": 18.789903534, \"elapsed_ns\": 18789903534, \"power_samples\": [419.56378937099976, 423.27259655600005, 427.090297769, 423.1629873640002, 423.052928954, 419.3450477629999, 428.8315591019998, 421.0914031940001, 424.90472644999977, 425.01445471400007, 428.8315591019998, 432.7543724779998, 420.981913074, 432.6441676820002, 426.76030483399995, 424.79499818600016, 426.650457254, 424.6852699220001], \"power_mean\": 425.19071298716665, \"energy_millijoules\": 7989.292480581543, \"energy_joules\": 7.989292480581542, \"coremark_score\": 13314.870047, \"coremarks_per_mhz\": 7.791941740987828, \"ulpmark_cm_score\": 31.291882304677177}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1426.4657085899998, 1426.4657085899998, 1416.62962586, 1418.6819367], \"power_mean\": 1422.060744935, \"energy_millijoules\": 7110.303724675, \"energy_joules\": 7.110303724675}}, \"1804800\": {\"active\": {\"elapsed_sec\": 17.794010722, \"elapsed_ns\": 17794010722, \"power_samples\": [473.404494722, 463.708531194, 473.17861926499995, 471.33063426900026, 471.2180465690001, 471.2180465690001, 463.483849386, 471.2180465690001, 465.3323109139999, 470.9928711690002, 473.17861926499995, 469.145005245, 472.840498949, 472.95320572100013, 468.920067989, 476.8778919040001, 488.4206132139998], \"power_mean\": 471.61302075958827, \"energy_millijoules\": 8391.887148030923, \"energy_joules\": 8.391887148030923, \"coremark_score\": 14059.951634, \"coremarks_per_mhz\": 7.79031008089539, \"ulpmark_cm_score\": 29.7906770658445}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1416.372282476, 1420.390408596, 1418.4242361000001, 1418.4242361000001], \"power_mean\": 1418.402790818, \"energy_millijoules\": 7092.01395409, \"energy_joules\": 7.09201395409}}, \"1920000\": {\"active\": {\"elapsed_sec\": 16.715429004, \"elapsed_ns\": 16715429004, \"power_samples\": [508.25931305200015, 509.9937234749998, 515.7627012260002, 519.5670896899999, 515.5315724420002, 515.4162443779999, 509.64834047199975, 525.2183581519998, 509.5333698679999, 515.300916314, 519.3354836419999, 509.41839926399985, 522.9113247319999, 513.106982888, 521.063732714, 511.26281014799997], \"power_mean\": 515.0831476535625, \"energy_millijoules\": 8609.835785759973, \"energy_joules\": 8.609835785759973, \"coremark_score\": 14968.267273, \"coremarks_per_mhz\": 7.795972538020833, \"ulpmark_cm_score\": 29.036558445572375}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1418.1665355, 1420.13235078, 1416.20072022, 1420.390408596], \"power_mean\": 1418.722503774, \"energy_millijoules\": 7093.61251887, \"energy_joules\": 7.09361251887}}, \"2016000\": {\"active\": {\"elapsed_sec\": 15.928914161, \"elapsed_ns\": 15928914161, \"power_samples\": [570.9075086390001, 554.2755829160001, 569.601234317, 561.6434140640004, 563.6062136090002, 573.1663513619999, 567.286695457, 579.1652669030002, 567.1681507409999, 567.5237848890001, 569.007915377, 563.3696004650001, 572.9285470100001, 580.765797347, 573.2852535379998], \"power_mean\": 568.9134211089333, \"energy_millijoules\": 9062.173049885045, \"energy_joules\": 9.062173049885045, \"coremark_score\": 15707.464187, \"coremarks_per_mhz\": 7.79140088640873, \"ulpmark_cm_score\": 27.58720216705322}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1423.8951408149999, 1421.843425579, 1425.7743407310002, 1425.860717463], \"power_mean\": 1424.343406147, \"energy_millijoules\": 7121.717030735, \"energy_joules\": 7.121717030735}}, \"2131200\": {\"active\": {\"elapsed_sec\": 15.067284681, \"elapsed_ns\": 15067284681, \"power_samples\": [621.670110434, 611.6331742340001, 625.3460261700002, 625.2239070980002, 623.0181823739999, 625.1017880260001, 630.8520950339998, 617.0201027779999, 626.8149061700001, 626.5699289060001, 628.6494037780001, 626.5699289060001, 630.7296187459999, 630.4841642179999, 630.6066405060001], \"power_mean\": 625.3526651585333, \"energy_millijoules\": 9422.366631965691, \"energy_joules\": 9.42236663196569, \"coremark_score\": 16607.985119, \"coremarks_per_mhz\": 7.792785810341592, \"ulpmark_cm_score\": 26.53261221568971}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1429.2758528800002, 1417.56488205, 1419.529863338, 1431.501272652], \"power_mean\": 1424.46796773, \"energy_millijoules\": 7122.33983865, \"energy_joules\": 7.12233983865}}, \"2227200\": {\"active\": {\"elapsed_sec\": 14.412744057, \"elapsed_ns\": 14412744057, \"power_samples\": [681.275733058, 692.3897732880002, 690.433370552, 694.350185046, 694.350185046, 694.2237769420001, 698.0096980220003, 694.0973688380002, 697.883051774, 697.7564055259998, 690.0548614040001, 693.84455263, 693.5917364220002, 697.7564055259998], \"power_mean\": 693.5726502910001, \"energy_millijoules\": 9996.28509357935, \"energy_joules\": 9.99628509357935, \"coremark_score\": 17363.522711, \"coremarks_per_mhz\": 7.796121906878593, \"ulpmark_cm_score\": 25.00929071746622}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1421.240102436, 1431.1539804160002, 1423.29098368, 1419.4434915280003], \"power_mean\": 1423.7821395150002, \"energy_millijoules\": 7118.910697575001, \"energy_joules\": 7.118910697575001}}, \"2323200\": {\"active\": {\"elapsed_sec\": 13.826321037, \"elapsed_ns\": 13826321037, \"power_samples\": [760.2516655279999, 765.5992944939997, 771.469293119, 771.0757721149996, 773.030745499, 774.854307071, 770.8128871819997, 770.8128871819997, 778.7680215439998, 772.6363291939999, 774.4595330619998, 770.5505398459998, 770.5505398459998], \"power_mean\": 771.1439858216921, \"energy_millijoules\": 10662.084313722491, \"energy_joules\": 10.662084313722492, \"coremark_score\": 18098.892348, \"coremarks_per_mhz\": 7.790501182851241, \"ulpmark_cm_score\": 23.44757297391101}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1430.720309456, 1425.082972872, 1421.06782526, 1430.8937778400002], \"power_mean\": 1426.9412213570001, \"energy_millijoules\": 7134.706106785001, \"energy_joules\": 7.134706106785001}}, \"2419200\": {\"active\": {\"elapsed_sec\": 13.277808797, \"elapsed_ns\": 13277808797, \"power_samples\": [801.746549408, 836.7690219379999, 842.364638414, 844.186961786, 838.050012203, 841.9573374350005, 839.8682121189997, 845.7328459139997, 847.2785717620002, 847.2785717620002, 853.1421331769996, 853.1421331769996, 851.1889468489996], \"power_mean\": 841.7466104572306, \"energy_millijoules\": 11176.55054917395, \"energy_joules\": 11.17655054917395, \"coremark_score\": 18849.430747, \"coremarks_per_mhz\": 7.791596704282408, \"ulpmark_cm_score\": 22.368261021149976}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1424.6507352089998, 1430.546485604, 1420.7229178809998, 1424.737111941], \"power_mean\": 1425.1643126587499, \"energy_millijoules\": 7125.821563293749, \"energy_joules\": 7.125821563293749}}}}, \"7\": {\"freqs\": {\"825600\": {\"active\": {\"elapsed_sec\": 77.716908512, \"elapsed_ns\": 77716908512, \"power_samples\": [170.43723014400007, 174.36171150400014, 164.6403697789999, 170.34299002400007, 164.54648711900018, 166.41472606699995, 166.50872779899987, 174.36171150400014, 168.5650892829999, 168.65959582799996, 160.5243405020001, 168.3768476749999, 168.47096847900002, 170.53147026400006, 168.47096847900002, 180.15761880500008, 166.6027295309998, 172.399470824, 174.45618976799983, 164.7346372039999, 162.6780100269998, 172.49383001599995, 170.62609661400006, 164.6403697789999, 174.36171150400014, 168.47096847900002, 164.54648711900018, 160.80565710600013, 170.53147026400006, 170.53147026400006, 168.65959582799996, 166.69711651600005, 172.5885759260002, 164.82851986399987, 166.69711651600005, 170.53147026400006, 166.69711651600005, 164.7346372039999, 168.65959582799996, 168.65959582799996, 168.65959582799996, 166.6027295309998, 168.75371663199985, 170.62609661400006, 174.55105523800012, 170.72033673400006, 164.7346372039999, 162.772157892, 164.7346372039999, 162.959685068, 168.65959582799996, 168.65959582799996, 168.65959582799996, 162.772157892, 172.399470824, 158.749269294, 168.5650892829999, 170.53147026400006, 166.41472606699995, 166.50872779899987, 160.80565710600013, 162.772157892, 160.80565710600013, 166.69711651600005, 170.53147026400006, 160.5243405020001, 168.5650892829999, 182.30965000499987, 158.749269294, 172.49383001599995, 168.5650892829999, 172.399470824, 168.65959582799996, 158.749269294, 160.6179847740002, 164.7346372039999, 170.24874990399985], \"power_mean\": 167.75671005183116, \"energy_millijoules\": 13037.532887372274, \"energy_joules\": 13.037532887372274, \"coremark_score\": 3217.378994, \"coremarks_per_mhz\": 3.8970191303294572, \"ulpmark_cm_score\": 19.175407046692232}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1420.4645021169997, 1426.3591801320001, 1424.5643584769998, 1432.510394268], \"power_mean\": 1425.9746087485, \"energy_millijoules\": 7129.8730437425, \"energy_joules\": 7.1298730437425}}, \"940800\": {\"active\": {\"elapsed_sec\": 34.122920924, \"elapsed_ns\": 34122920924, \"power_samples\": [275.652739698, 261.71600896999985, 287.22572628199987, 287.02294910599994, 271.4248395940001, 277.21085635400004, 271.22355741399997, 273.49034288999997, 273.28923369799986, 265.34148211, 267.502978794, 277.10965052899996, 277.10965052899996, 284.85516613999994, 276.9080650489998, 278.97344805199987, 282.89459344400007, 267.4027816580001, 274.9476114249999, 272.98715780099974, 278.97344805199987, 277.0088577889999, 278.8725359959999, 278.8725359959999, 275.0482850929998, 276.9080650489998, 271.02268685399986, 278.7716239399999, 284.75389686799986, 284.55135832400015, 272.78604860899986, 274.74626408899985, 276.80727230900015, 278.7716239399999], \"power_mean\": 276.24068654249993, \"energy_millijoules\": 9426.139102881196, \"energy_joules\": 9.426139102881196, \"coremark_score\": 7329.658731, \"coremarks_per_mhz\": 7.790878753188776, \"ulpmark_cm_score\": 26.521993498227175}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1426.532172228, 1420.7229178809998, 1424.737111941, 1426.618668276], \"power_mean\": 1424.6527175815, \"energy_millijoules\": 7123.2635879075, \"energy_joules\": 7.123263587907499}}, \"1056000\": {\"active\": {\"elapsed_sec\": 30.376324155, \"elapsed_ns\": 30376324155, \"power_samples\": [296.52465325799994, 296.21870068199996, 298.17879709, 298.17879709, 300.040687509, 301.8983231930001, 296.11671649000004, 292.2944912749999, 296.0147322980001, 304.16556362899996, 300.040687509, 294.054874034, 301.8983231930001, 290.3343948669999, 301.8983231930001, 299.83582340399994, 305.8180397209999, 299.938464929, 303.65284008799995, 296.0147322980001, 305.71503951599993, 291.98883687199987, 307.576094966, 296.0147322980001, 299.938464929, 297.8720688420003, 297.8720688420003, 299.83582340399994, 290.029098168, 301.69322045599984], \"power_mean\": 298.7217804681, \"energy_millijoules\": 9074.069635657754, \"energy_joules\": 9.074069635657754, \"coremark_score\": 8233.976681, \"coremarks_per_mhz\": 7.797326402462121, \"ulpmark_cm_score\": 27.5510338842444}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1426.1861880360002, 1422.341795905, 1424.305228281, 1414.4840429740002], \"power_mean\": 1421.8293137990001, \"energy_millijoules\": 7109.146568995001, \"energy_joules\": 7.109146568995001}}, \"1171200\": {\"active\": {\"elapsed_sec\": 27.390689572, \"elapsed_ns\": 27390689572, \"power_samples\": [321.40499672199985, 315.4185891079999, 323.15743107399976, 319.234414584, 325.013160386, 324.90938913800005, 317.06832459199995, 324.90938913800005, 328.8319288519999, 322.95012672200005, 319.02758700799995, 320.99086430600005, 328.8319288519999, 328.7279192159999, 325.013160386, 318.92417321999983, 334.713730982, 332.33303531900015, 324.70184664199974, 324.597650102, 326.5605689629999, 322.7428223699999, 316.86173515999985, 328.4154640390002, 326.4566783989999, 332.33303531900015, 324.49387885399983], \"power_mean\": 324.39347516492586, \"energy_millijoules\": 8885.360977424776, \"energy_joules\": 8.885360977424776, \"coremark_score\": 9132.086499, \"coremarks_per_mhz\": 7.7972050025614745, \"ulpmark_cm_score\": 28.13616696442387}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1425.9263454, 1427.889301, 1423.9593673499999, 1420.03345615], \"power_mean\": 1424.4521174749998, \"energy_millijoules\": 7122.260587374999, \"energy_joules\": 7.122260587374999}}, \"1286400\": {\"active\": {\"elapsed_sec\": 24.961422594, \"elapsed_ns\": 24961422594, \"power_samples\": [333.0631970239999, 342.13499132900006, 334.29583486399997, 353.8917190740001, 351.7220549699998, 351.7220549699998, 353.680602466, 351.61661573799984, 351.7220549699998, 347.80495997799994, 347.80495997799994, 351.5111765060001, 351.61661573799984, 361.20471404399996, 355.43180813899994, 361.4167842039999, 351.5111765060001, 351.5111765060001, 339.7532945360001, 349.55286715400007, 347.59455780200005, 357.28432079899994, 353.4694858580001, 349.4475469939998], \"power_mean\": 350.0318570894583, \"energy_millijoules\": 8737.293106172583, \"energy_joules\": 8.737293106172583, \"coremark_score\": 10020.843354, \"coremarks_per_mhz\": 7.7898346968283585, \"ulpmark_cm_score\": 28.612980812488022}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1429.5053198320002, 1425.580361208, 1431.467799144, 1419.6889017980002], \"power_mean\": 1426.5605954955001, \"energy_millijoules\": 7132.8029774775005, \"energy_joules\": 7.132802977477501}}, \"1401600\": {\"active\": {\"elapsed_sec\": 22.912835512, \"elapsed_ns\": 22912835512, \"power_samples\": [365.22736782800007, 369.14799946100015, 363.056315114, 374.8127643139999, 376.556858746, 369.0414878490001, 372.95786840899996, 370.6793490660002, 376.4498706019999, 364.90811260999976, 372.6371816420003, 370.6793490660002, 372.6371816420003, 372.4236821300001, 372.5304318860001, 374.3852880260001, 370.5727183820002, 372.4236821300001, 376.4498706019999, 370.46608769800014, 378.19336967399977, 368.29547004200026], \"power_mean\": 371.56965031450005, \"energy_millijoules\": 8513.714278907499, \"energy_joules\": 8.513714278907498, \"coremark_score\": 10917.507315, \"coremarks_per_mhz\": 7.789317433647262, \"ulpmark_cm_score\": 29.3643868950792}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1429.158027596, 1427.1960250600002, 1421.392254615, 1415.58776925], \"power_mean\": 1423.3335191302501, \"energy_millijoules\": 7116.667595651251, \"energy_joules\": 7.116667595651251}}, \"1497600\": {\"active\": {\"elapsed_sec\": 21.430572856, \"elapsed_ns\": 21430572856, \"power_samples\": [382.2196772179998, 387.9887689139998, 388.09647197799995, 389.9462442739998, 385.91969858599987, 393.64463156400006, 385.91969858599987, 391.47151241999995, 391.47151241999995, 389.5145138360001, 393.53657128400005, 389.5145138360001, 397.346518415, 389.5145138360001, 391.3635712119999, 387.66521831600016, 395.4976994269998, 385.70409017299994, 391.3635712119999, 389.4066917, 385.5965064249999], \"power_mean\": 389.65248550628564, \"energy_millijoules\": 8350.475979163939, \"energy_joules\": 8.350475979163939, \"coremark_score\": 11673.515129, \"coremarks_per_mhz\": 7.794815123530983, \"ulpmark_cm_score\": 29.938413166363045}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1428.89782502, 1424.8876838400001, 1427.1094099400002, 1432.912108005], \"power_mean\": 1428.4517567012501, \"energy_millijoules\": 7142.25878350625, \"energy_joules\": 7.14225878350625}}, \"1612800\": {\"active\": {\"elapsed_sec\": 19.902623065, \"elapsed_ns\": 19902623065, \"power_samples\": [411.38137423399985, 407.0266273059999, 414.8581553529998, 410.6169983489999, 420.6230756240002, 412.79202410900007, 410.8352636689999, 412.68277237699976, 418.44709680000005, 420.40361909599983, 418.3370383900001, 418.3370383900001, 414.4202238959999, 412.46382115999995, 416.3806356540001, 414.3108530919999, 414.3108530919999, 416.3806356540001, 412.3545694279999], \"power_mean\": 414.57698293015784, \"energy_millijoules\": 8251.16942268387, \"energy_joules\": 8.25116942268387, \"coremark_score\": 12569.76218, \"coremarks_per_mhz\": 7.793751351686508, \"ulpmark_cm_score\": 30.298735511684857}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1428.550532784, 1430.598554592, 1418.99908704, 1424.8876838400001], \"power_mean\": 1425.758964564, \"energy_millijoules\": 7128.79482282, \"energy_joules\": 7.128794822820001}}, \"1708800\": {\"active\": {\"elapsed_sec\": 18.791376555, \"elapsed_ns\": 18791376555, \"power_samples\": [433.99627832199985, 439.64765611999997, 433.664591554, 447.36492677399997, 433.7751538100001, 433.55402929799993, 435.5139637919999, 437.46989024000004, 439.42581668799994, 443.4528357339998, 441.2707043480002, 441.2707043480002, 443.2305195260001, 437.3590895959999, 433.44346704200007, 441.2707043480002, 439.2039772559999, 443.1193614219999], \"power_mean\": 438.77964834544446, \"energy_millijoules\": 8245.273596729729, \"energy_joules\": 8.245273596729728, \"coremark_score\": 13313.451912, \"coremarks_per_mhz\": 7.791111839887641, \"ulpmark_cm_score\": 30.32040078077651}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1426.416134, 1422.576631632, 1418.654532688, 1424.541699648], \"power_mean\": 1423.047249492, \"energy_millijoules\": 7115.2362474599995, \"energy_joules\": 7.1152362474599995}}, \"1804800\": {\"active\": {\"elapsed_sec\": 17.799424733, \"elapsed_ns\": 17799424733, \"power_samples\": [453.12531791599986, 454.857498804, 458.6603123299999, 456.70474358599995, 456.5927514899997, 460.5036508339999, 452.67784507700003, 452.67784507700003, 456.48075939399973, 458.32397882600003, 456.36876729799997, 458.43608999399976, 458.32397882600003, 452.5660913689999, 458.09975648999966, 454.409549189, 466.14883151900017], \"power_mean\": 456.76222164817636, \"energy_millijoules\": 8130.104785104578, \"energy_joules\": 8.130104785104578, \"coremark_score\": 14055.9991, \"coremarks_per_mhz\": 7.788120068705674, \"ulpmark_cm_score\": 30.749911176794782}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1428.116506356, 1434.002242011, 1422.317147433, 1432.21597092], \"power_mean\": 1429.16296668, \"energy_millijoules\": 7145.8148334, \"energy_joules\": 7.145814833399999}}, \"1920000\": {\"active\": {\"elapsed_sec\": 16.726793327, \"elapsed_ns\": 16726793327, \"power_samples\": [499.1782341119999, 495.0350629899999, 496.7648152019999, 494.9206882340002, 496.7648152019999, 500.6738084179999, 502.62830502600013, 506.4262136819998, 506.5413033579998, 500.5590762019999, 504.1269243339998, 500.5590762019999, 506.4262136819998, 504.3568655419999, 510.1083174979999, 500.32961176999993], \"power_mean\": 501.5874582158749, \"energy_millijoules\": 8389.949748992187, \"energy_joules\": 8.389949748992187, \"coremark_score\": 14958.415605, \"coremarks_per_mhz\": 7.7908414609375, \"ulpmark_cm_score\": 29.797556300027942}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1418.1373481330002, 1430.077079052, 1420.2701980049999, 1432.041669315], \"power_mean\": 1425.13157362625, \"energy_millijoules\": 7125.657868131249, \"energy_joules\": 7.125657868131249}}, \"2016000\": {\"active\": {\"elapsed_sec\": 15.923756921, \"elapsed_ns\": 15923756921, \"power_samples\": [449.43649614800006, 533.4532456939999, 539.3193107939999, 541.0383822619999, 535.290389282, 544.832476709, 532.9857365389998, 544.7150041289999, 537.0098194310001, 538.850370334, 546.6685476729999, 548.5043804929999, 542.640104158, 550.4578049649997, 542.5227508940002], \"power_mean\": 535.1816546336667, \"energy_millijoules\": 8522.102576965082, \"energy_joules\": 8.522102576965082, \"coremark_score\": 15712.400226, \"coremarks_per_mhz\": 7.793849318452381, \"ulpmark_cm_score\": 29.335483554931674}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1427.6828353960002, 1439.4507321060003, 1435.526761087, 1437.4867384230001], \"power_mean\": 1435.0367667530002, \"energy_millijoules\": 7175.183833765001, \"energy_joules\": 7.175183833765001}}, \"2131200\": {\"active\": {\"elapsed_sec\": 15.080657963, \"elapsed_ns\": 15080657963, \"power_samples\": [597.1266342619999, 598.837708866, 592.978865778, 596.5226934739999, 596.7640719379999, 600.5528032640002, 606.0510781339999, 596.5226934739999, 596.2813150099998, 604.094725076, 602.0213260480002, 600.0690927840001, 611.7864928459999, 604.094725076, 605.808010904], \"power_mean\": 600.6341491289334, \"energy_millijoules\": 9057.958163910978, \"energy_joules\": 9.057958163910978, \"coremark_score\": 16593.654586, \"coremarks_per_mhz\": 7.786061648836338, \"ulpmark_cm_score\": 27.600039156292244}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1423.589534136, 1427.33554316, 1425.5492728400002, 1425.3760426000001], \"power_mean\": 1425.4625981840002, \"energy_millijoules\": 7127.312990920001, \"energy_joules\": 7.127312990920001}}, \"2227200\": {\"active\": {\"elapsed_sec\": 14.41308687, \"elapsed_ns\": 14413086870, \"power_samples\": [623.7526078179999, 629.245376051, 621.4329210020001, 628.9999466989998, 628.877232023, 630.9518222589998, 630.828988511, 628.877232023, 632.5348393589998, 630.828988511, 634.613428852, 628.754517347, 630.4604872669997, 632.5348393589998], \"power_mean\": 629.4780876486428, \"energy_millijoules\": 9072.722360041364, \"energy_joules\": 9.072722360041364, \"coremark_score\": 17362.316828, \"coremarks_per_mhz\": 7.795580472341954, \"ulpmark_cm_score\": 27.555125140946142}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1433.130968558, 1427.162074776, 1433.0438769060002, 1433.0438769060002], \"power_mean\": 1431.5951992865, \"energy_millijoules\": 7157.9759964325, \"energy_joules\": 7.1579759964325005}}, \"2323200\": {\"active\": {\"elapsed_sec\": 13.827126037, \"elapsed_ns\": 13827126037, \"power_samples\": [692.941252892, 705.971121674, 703.8929570819998, 707.9219250979997, 711.4434924689997, 711.571854094, 705.7161611940003, 713.2659814169999, 714.9641524599999, 713.1380246450001, 715.0922285480003, 713.1380246450001, 716.7860458039997], \"power_mean\": 709.6802478478461, \"energy_millijoules\": 9812.838232961565, \"energy_joules\": 9.812838232961566, \"coremark_score\": 18097.582163, \"coremarks_per_mhz\": 7.789937225809229, \"ulpmark_cm_score\": 25.476828830240354}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1438.662973302, 1430.8233403049999, 1432.8696936019999, 1432.782245017], \"power_mean\": 1433.7845630564998, \"energy_millijoules\": 7168.922815282499, \"energy_joules\": 7.168922815282499}}, \"2419200\": {\"active\": {\"elapsed_sec\": 13.273705203, \"elapsed_ns\": 13273705203, \"power_samples\": [465.4728438940001, 753.7249854590002, 743.9717380640002, 743.9717380640002, 745.7916062080005, 749.3038686319999, 747.7413374959999, 751.253242216, 753.2026158000001, 745.4011268460001, 755.2825672040001, 748.9132068199999, 753.0721570520002], \"power_mean\": 727.4694641350001, \"energy_millijoules\": 9656.215211112372, \"energy_joules\": 9.656215211112372, \"coremark_score\": 18853.695324, \"coremarks_per_mhz\": 7.793359508928572, \"ulpmark_cm_score\": 25.89006091250949}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1434.305096109, 1434.479517557, 1434.479517557, 1426.7280483480001], \"power_mean\": 1432.49804489275, \"energy_millijoules\": 7162.49022446375, \"energy_joules\": 7.16249022446375}}, \"2534400\": {\"active\": {\"elapsed_sec\": 12.693875829, \"elapsed_ns\": 12693875829, \"power_samples\": [812.997837782, 824.4287568000002, 832.0915644489999, 828.0556255040003, 833.4981341689997, 829.733478328, 839.3459585539997, 831.5501899369999, 833.2266535939996, 835.1743591940001, 835.1743591940001, 839.073761594], \"power_mean\": 831.1958899249166, \"energy_millijoules\": 10551.097416282044, \"energy_joules\": 10.551097416282044, \"coremark_score\": 19716.088328, \"coremarks_per_mhz\": 7.779390912247475, \"ulpmark_cm_score\": 23.694217780058565}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1441.96661256, 1426.38111158, 1436.263405461, 1422.5512270680001], \"power_mean\": 1431.79058916725, \"energy_millijoules\": 7158.9529458362495, \"energy_joules\": 7.1589529458362495}}, \"2649600\": {\"active\": {\"elapsed_sec\": 12.119122704, \"elapsed_ns\": 12119122704, \"power_samples\": [907.0033893540001, 910.3368365039998, 906.4428551440003, 917.8473793669998, 911.8667741790002, 919.5164729260002, 923.5505639660003, 921.18110095, 919.2348247020002, 921.0395801299999, 917.1432787279998, 926.7407375760001], \"power_mean\": 916.8253161271667, \"energy_millijoules\": 11111.118504278724, \"energy_joules\": 11.111118504278723, \"coremark_score\": 20652.622883, \"coremarks_per_mhz\": 7.794619143644324, \"ulpmark_cm_score\": 22.499985028845547}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1425.947085152, 1431.998063216, 1426.0338193440002, 1430.04023064], \"power_mean\": 1428.504799588, \"energy_millijoules\": 7142.523997939999, \"energy_joules\": 7.14252399794}}, \"2745600\": {\"active\": {\"elapsed_sec\": 11.697251662, \"elapsed_ns\": 11697251662, \"power_samples\": [981.8408323010001, 990.850636726, 1002.2422287940001, 1007.7906478520001, 1003.6030457299996, 1009.1497953390001, 1007.2048298590005, 1014.9886773640003, 1013.0397262990002, 1012.7464026750001, 1012.3058161659999], \"power_mean\": 1005.0693308277274, \"energy_millijoules\": 11756.548900449861, \"energy_joules\": 11.756548900449861, \"coremark_score\": 21396.781924, \"coremarks_per_mhz\": 7.7931169594988345, \"ulpmark_cm_score\": 21.264743771059702}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1435.564409184, 1429.6923403199999, 1427.4700573080002, 1429.6923403199999], \"power_mean\": 1430.604786783, \"energy_millijoules\": 7153.023933915, \"energy_joules\": 7.153023933915001}}, \"2841600\": {\"active\": {\"elapsed_sec\": 11.31636135, \"elapsed_ns\": 11316361350, \"power_samples\": [890.8539568490003, 1080.247765154, 1084.140250394, 1093.4104900220002, 1087.271589878, 1096.6940209319998, 1098.6374375000003, 1102.071468211, 1102.223729823, 1111.6378894340003, 1101.7663209640002], \"power_mean\": 1077.1777199237274, \"energy_millijoules\": 12189.732316825994, \"energy_joules\": 12.189732316825994, \"coremark_score\": 22118.021764, \"coremarks_per_mhz\": 7.783650677083334, \"ulpmark_cm_score\": 20.5090639812422}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1439.0449329300002, 1433.257852579, 1437.1756216019999, 1445.007149649], \"power_mean\": 1438.62138919, \"energy_millijoules\": 7193.1069459499995, \"energy_joules\": 7.193106945949999}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm8150/new/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 cpu7 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 1383 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 403 499 576 672 768 844 940 1036 1113 1209 1305 1382 1478 1555 1632 1708 1785\n\n 300:  1114     3.7 C/MHz     44 mW    9.9 J   25.2 I/mJ   224.4 s\n 403:  1497     3.7 C/MHz     62 mW   10.3 J   24.2 I/mJ   167.0 s\n 499:  1854     3.7 C/MHz     80 mW   10.8 J   23.0 I/mJ   134.9 s\n 576:  2139     3.7 C/MHz     85 mW    9.9 J   25.2 I/mJ   116.9 s\n 672:  2495     3.7 C/MHz     71 mW    7.2 J   34.9 I/mJ   100.2 s\n 768:  2851     3.7 C/MHz     76 mW    6.6 J   37.7 I/mJ    87.7 s\n 844:  3137     3.7 C/MHz     81 mW    6.5 J   38.6 I/mJ    79.7 s\n 940:  3493     3.7 C/MHz     89 mW    6.4 J   39.2 I/mJ    71.6 s\n1036:  3850     3.7 C/MHz     96 mW    6.2 J   40.2 I/mJ    64.9 s\n1113:  4135     3.7 C/MHz    101 mW    6.1 J   41.1 I/mJ    60.5 s\n1209:  4491     3.7 C/MHz    108 mW    6.0 J   41.6 I/mJ    55.7 s\n1305:  4848     3.7 C/MHz    114 mW    5.9 J   42.4 I/mJ    51.6 s\n1382:  5133     3.7 C/MHz    123 mW    6.0 J   41.9 I/mJ    48.7 s\n1478:  5489     3.7 C/MHz    129 mW    5.9 J   42.5 I/mJ    45.5 s\n1555:  5775     3.7 C/MHz    133 mW    5.8 J   43.3 I/mJ    43.3 s\n1632:  6060     3.7 C/MHz    140 mW    5.8 J   43.4 I/mJ    41.3 s\n1708:  6345     3.7 C/MHz    141 mW    5.6 J   45.0 I/mJ    39.4 s\n1785:  6630     3.7 C/MHz    152 mW    5.7 J   43.7 I/mJ    37.7 s\n\n\n===== CPU 4 =====\nFrequencies: 710 825 940 1056 1171 1286 1401 1497 1612 1708 1804 1920 2016 2131 2227 2323 2419\n\n 710:  2767     3.9 C/MHz    134 mW   12.1 J   20.7 I/mJ    90.4 s\n 825:  6432     7.8 C/MHz    215 mW    8.4 J   29.9 I/mJ    38.9 s\n 940:  7331     7.8 C/MHz    236 mW    8.1 J   31.0 I/mJ    34.1 s\n1056:  8232     7.8 C/MHz    256 mW    7.8 J   32.2 I/mJ    30.4 s\n1171:  9123     7.8 C/MHz    279 mW    7.6 J   32.7 I/mJ    27.4 s\n1286: 10028     7.8 C/MHz    300 mW    7.5 J   33.4 I/mJ    24.9 s\n1401: 10926     7.8 C/MHz    318 mW    7.3 J   34.3 I/mJ    22.9 s\n1497: 11671     7.8 C/MHz    342 mW    7.3 J   34.1 I/mJ    21.4 s\n1612: 12558     7.8 C/MHz    387 mW    7.7 J   32.4 I/mJ    19.9 s\n1708: 13315     7.8 C/MHz    425 mW    8.0 J   31.3 I/mJ    18.8 s\n1804: 14060     7.8 C/MHz    472 mW    8.4 J   29.8 I/mJ    17.8 s\n1920: 14968     7.8 C/MHz    515 mW    8.6 J   29.0 I/mJ    16.7 s\n2016: 15707     7.8 C/MHz    569 mW    9.1 J   27.6 I/mJ    15.9 s\n2131: 16608     7.8 C/MHz    625 mW    9.4 J   26.5 I/mJ    15.1 s\n2227: 17364     7.8 C/MHz    694 mW   10.0 J   25.0 I/mJ    14.4 s\n2323: 18099     7.8 C/MHz    771 mW   10.7 J   23.4 I/mJ    13.8 s\n2419: 18849     7.8 C/MHz    842 mW   11.2 J   22.4 I/mJ    13.3 s\n\n\n===== CPU 7 =====\nFrequencies: 825 940 1056 1171 1286 1401 1497 1612 1708 1804 1920 2016 2131 2227 2323 2419 2534 2649 2745 2841\n\n 825:  3217     3.9 C/MHz    168 mW   13.0 J   19.2 I/mJ    77.7 s\n 940:  7330     7.8 C/MHz    276 mW    9.4 J   26.5 I/mJ    34.1 s\n1056:  8234     7.8 C/MHz    299 mW    9.1 J   27.6 I/mJ    30.4 s\n1171:  9132     7.8 C/MHz    324 mW    8.9 J   28.1 I/mJ    27.4 s\n1286: 10021     7.8 C/MHz    350 mW    8.7 J   28.6 I/mJ    25.0 s\n1401: 10918     7.8 C/MHz    372 mW    8.5 J   29.4 I/mJ    22.9 s\n1497: 11674     7.8 C/MHz    390 mW    8.4 J   29.9 I/mJ    21.4 s\n1612: 12570     7.8 C/MHz    415 mW    8.3 J   30.3 I/mJ    19.9 s\n1708: 13313     7.8 C/MHz    439 mW    8.2 J   30.3 I/mJ    18.8 s\n1804: 14056     7.8 C/MHz    457 mW    8.1 J   30.7 I/mJ    17.8 s\n1920: 14958     7.8 C/MHz    502 mW    8.4 J   29.8 I/mJ    16.7 s\n2016: 15712     7.8 C/MHz    535 mW    8.5 J   29.3 I/mJ    15.9 s\n2131: 16594     7.8 C/MHz    601 mW    9.1 J   27.6 I/mJ    15.1 s\n2227: 17362     7.8 C/MHz    629 mW    9.1 J   27.6 I/mJ    14.4 s\n2323: 18098     7.8 C/MHz    710 mW    9.8 J   25.5 I/mJ    13.8 s\n2419: 18854     7.8 C/MHz    727 mW    9.7 J   25.9 I/mJ    13.3 s\n2534: 19716     7.8 C/MHz    831 mW   10.6 J   23.7 I/mJ    12.7 s\n2649: 20653     7.8 C/MHz    917 mW   11.1 J   22.5 I/mJ    12.1 s\n2745: 21397     7.8 C/MHz   1005 mW   11.8 J   21.3 I/mJ    11.7 s\n2841: 22118     7.8 C/MHz   1077 mW   12.2 J   20.5 I/mJ    11.3 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm8150/new/uptime.txt",
    "content": " 20:15:42 up 48 min,  load average: 1.60, 1.68, 1.71\n"
  },
  {
    "path": "results/sm8150/new/versions.txt",
    "content": "Kernel: Linux version 4.14.191-Proton-gad6eebdc (kdrag0n@pinwheel) (clang version 12.0.0 (https://github.com/llvm/llvm-project dcc06597b1d61d35c7246d3ab2d7a807134aaa45), LLD 12.0.0 (https://github.com/llvm/llvm-project dcc06597b1d61d35c7246d3ab2d7a807134aaa45)) #2113 SMP PREEMPT Sat Jan 2 17:53:30 PST 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm8150/voltages.txt",
    "content": "1.300000=600000 1.403200=600000 1.499200=600000 1.576000=600000 1.672000=600000 1.768000=620000 1.844800=632000 1.940800=648000 1.1036800=668000 1.1113600=680000 1.1209600=700000 1.1305600=720000 1.1382400=736000 1.1478400=756000 1.1555200=756000 1.1632000=776000 1.1708800=800000 1.1785600=816000 4.710400=756000 4.825600=756000 4.940800=756000 4.1056000=756000 4.1171200=756000 4.1286400=756000 4.1401600=756000 4.1497600=776000 4.1612800=804000 4.1708800=824000 4.1804800=844000 4.1920000=860000 4.2016000=888000 4.2131200=920000 4.2227200=944000 4.2323200=972000 4.2419200=1000000 7.825600=756000 7.940800=756000 7.1056000=756000 7.1171200=756000 7.1286400=756000 7.1401600=756000 7.1497600=756000 7.1612800=756000 7.1708800=756000 7.1804800=772000 7.1920000=792000 7.2016000=808000 7.2131200=828000 7.2227200=840000 7.2323200=860000 7.2419200=884000 7.2534400=912000 7.2649600=936000 7.2745600=960000 7.2841600=984000\n"
  },
  {
    "path": "results/sm8150ac/main/cmdline.txt",
    "content": "console=tty0 loglevel=0 isolcpus=1-7 rcupdate.rcu_expedited=1 rcu_nocbs=0-7 cgroup.memory=nokmem,nosocket printk.devkmsg=on console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0xa90000 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 swiotlb=2048 loop.max_part=7 androidboot.usbcontroller=a600000.dwc3 buildvariant=userdebug androidboot.selinux=permissive androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=63b99bbc-dc54-bb6e-1bd1-79aee0e879ab androidboot.bootdevice=1d84000.ufshc androidboot.serialno=REDACTED androidboot.baseband=msm msm_drm.dsi_display0=dsi_r66451_fhd_dsc_cmd_dim_display: androidboot.slot_suffix=_a skip_initramfs rootwait ro init=/init  androidboot.asus.authorized=0 androidboot.ST.SDP=0 androidboot.id.prj=2 androidboot.id.stage=7 androidboot.id.rf=6 androidboot.id.cpu=0 androidboot.id.sku=7 androidboot.id.feature=6 androidboot.id.jtag=REDACTED androidboot.bootcount=550 SB=Y androidboot.fused=1 androidboot.pre-ftm=0  LCD=REDACTED androidboot.rawdump_en=1 P2=37 androidboot.country_code=EU LS=22\n"
  },
  {
    "path": "results/sm8150ac/main/kernel.log",
    "content": "[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Booting Linux on physical CPU 0x0\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Linux version 4.14.117-proton+ (kdrag0n@pinwheel) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project dcc06597b1d61d35c7246d3ab2d7a807134aaa45)) #42 SMP PREEMPT Sat Dec 5 16:21:57 PST 2020\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Boot CPU: AArch64 Processor [51df805e]\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Using embedded DTB instead of bootloader DTB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Machine: Qualcomm Technologies, Inc. SM8150 V2 PM8150 Qualcomm Technologies, Inc. SM8150 v2 MP\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: OVERLAP DETECTED!\n               disp_rdump_region (0x000000009c000000--0x000000009e400000) overlaps with cont_splash_region (0x000000009c000000--0x000000009e400000)\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Reserved memory: created CMA memory pool at 0x000000037dc00000, size 36 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Reserved memory: created CMA memory pool at 0x00000000fd400000, size 40 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Reserved memory: created CMA memory pool at 0x00000000fc400000, size 16 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Reserved memory: created CMA memory pool at 0x00000000f2400000, size 160 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Reserved memory: created CMA memory pool at 0x00000000f2000000, size 4 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node cdsp_region, compatible id shared-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Reserved memory: created CMA memory pool at 0x00000000f1000000, size 16 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node user_contig_region, compatible id shared-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Reserved memory: created CMA memory pool at 0x00000000f0000000, size 16 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Reserved memory: created CMA memory pool at 0x00000000ef800000, size 8 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x000000008b700000, size 5 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node camera_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x000000008bc00000, size 1 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node pil_wlan_fw_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x000000008bd80000, size 0 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node pil_npu_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x000000008be00000, size 26 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node pil_adsp_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x000000008d800000, size 150 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node modem_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x0000000096e00000, size 5 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node pil_video_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x0000000097300000, size 20 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node pil_slpi_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x0000000098700000, size 0 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node pil_ipa_fw_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x0000000098710000, size 0 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node pil_ipa_gsi_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x0000000098715000, size 0 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node pil_gpu_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x0000000098800000, size 1 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node pil_spss_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x0000000098900000, size 20 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node cdsp_regions, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x0000000099e00000, size 1 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node ramoops, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x000000009c000000, size 36 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node cont_splash_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Reserved memory: created DMA memory pool at 0x000000009e400000, size 20 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x00000000a4c00000, size 60 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node cdsp_sec_regions, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)On node 0 totalpages: 3006121\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)  DMA zone: 6011 pages used for memmap\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)  DMA zone: 0 pages reserved\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)  DMA zone: 384681 pages, LIFO batch:31\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)  Normal zone: 40960 pages used for memmap\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)  Normal zone: 2621440 pages, LIFO batch:31\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)psci: probing for conduit method from DT.\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)psci: PSCIv1.1 detected in firmware.\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)psci: Using standard PSCI v0.2 function IDs\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)psci: SMC Calling Convention v1.1\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)random: fast init done\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)random: get_random_bytes called from start_kernel+0x8c/0x464 with crng_init=1\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)percpu: Embedded 21 pages/cpu s55976 r0 d30040 u86016\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)pcpu-alloc: s55976 r0 d30040 u86016 alloc=21*4096[    0.000000] (CPU:0-pid:0:swapper)\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)pcpu-alloc: [    0.000000] (CPU:0-pid:0:swapper)[0] [    0.000000] (CPU:0-pid:0:swapper)0 [    0.000000] (CPU:0-pid:0:swapper)[0] [    0.000000] (CPU:0-pid:0:swapper)1 [    0.000000] (CPU:0-pid:0:swapper)[0] [    0.000000] (CPU:0-pid:0:swapper)2 [    0.000000] (CPU:0-pid:0:swapper)[0] [    0.000000] (CPU:0-pid:0:swapper)3 [    0.000000] (CPU:0-pid:0:swapper)[0] [    0.000000] (CPU:0-pid:0:swapper)4 [    0.000000] (CPU:0-pid:0:swapper)[0] [    0.000000] (CPU:0-pid:0:swapper)5 [    0.000000] (CPU:0-pid:0:swapper)[0] [    0.000000] (CPU:0-pid:0:swapper)6 [    0.000000] (CPU:0-pid:0:swapper)[0] [    0.000000] (CPU:0-pid:0:swapper)7 [    0.000000] (CPU:0-pid:0:swapper)\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Built 1 zonelists, mobility grouping on.  Total pages: 2959150\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Kernel command line: console=tty0 loglevel=0 isolcpus=1-7 rcupdate.rcu_expedited=1 rcu_nocbs=0-7 cgroup.memory=nokmem,nosocket printk.devkmsg=on console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0xa90000 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 swiotlb=2048 loop.max_part=7 androidboot.usbcontroller=a600000.dwc3 buildvariant=userdebug androidboot.selinux=permissive androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=63b99bbc-dc54-bb6e-1bd1-79aee0e879ab androidboot.bootdevice=1d84000.ufshc androidboot.serialno=REDACTED androidboot.baseband=msm msm_drm.dsi_display0=dsi_r66451_fhd_dsc_cmd_dim_display: androidboot.slot_suffix=_a skip_initramfs rootwait ro init=/init  androidboot.asus.authorized=0 androidboot.ST.SDP=0 androidboot.id.prj=2 androidboot.id.stage=7 androidboot.\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)androidboot.ST.SDP= 0\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Kernel PRJ ID = ZS660KL_PRJ\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)g_Asus_prjID = 3\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)set_hardware_id - g_ASUS_hwID = 3\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Kernel HW ID = ZS660KL_MP\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)g_Asus_hwID = 7\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Kernel SKU ID = 7(SKU8)\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)g_Asus_skuID = 7\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)androidboot.pre-ftm= 0\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)[Display] lcd unique id = 1A0F2C2A\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)[Display] osc p2 = 37\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)androidboot.country_code=EU\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)[Display] lcd stage = 2\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)log_buf_len min size: 131072 bytes\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)log_buf_len: 1048576 bytes\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)early log buf free: 119256(90%)\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)software IO TLB: mapped [mem 0xef400000-0xef800000] (4MB)\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Memory: 11416252K/12024484K available (22014K kernel code, 2574K rwdata, 6996K rodata, 6144K init, 8218K bss, 305128K reserved, 303104K cma-reserved)\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)Preemptible hierarchical RCU implementation.\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)\tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)\tAll grace periods are expedited (rcu_expedited).\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)\tTasks RCU enabled.\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)GICv3: no VLPI support, no direct LPI support\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)GICv3: CPU0: found redistributor 0 region 0:0x0000000017a60000\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)PDC SM8150 initialized\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)NO_HZ: Clearing 0 from nohz_full range for timekeeping\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)\tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] [    0.000003] (CPU:0-pid:0:swapper/0)sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000021] [    0.000021] (CPU:0-pid:0:swapper/0)clocksource: Switched to clocksource arch_sys_counter\n[    0.002603] [    0.002603] (CPU:0-pid:0:swapper/0)Console: colour dummy device 80x25\n[    0.002626] [    0.002626] (CPU:0-pid:0:swapper/0)console [tty0] enabled\n[    0.002650] [    0.002644] (CPU:0-pid:0:swapper/0)Calibrating delay loop (skipped), value calculated using timer frequency.. [    0.002653] (CPU:0-pid:0:swapper/0)38.00 BogoMIPS (lpj=64000)\n[    0.002662] [    0.002662] (CPU:0-pid:0:swapper/0)pid_max: default: 32768 minimum: 301\n[    0.002766] [    0.002766] (CPU:0-pid:0:swapper/0)Security Framework initialized\n[    0.002782] [    0.002782] (CPU:0-pid:0:swapper/0)SELinux:  Initializing.\n[    0.002851] [    0.002851] (CPU:0-pid:0:swapper/0)SELinux:  Starting in permissive mode\n[    0.002923] [    0.002923] (CPU:0-pid:0:swapper/0)Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.002964] [    0.002964] (CPU:0-pid:0:swapper/0)Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.009263] [    0.009263] (CPU:0-pid:1:swapper/0)ASID allocator initialised with 32768 entries\n[    0.011366] [    0.011366] (CPU:0-pid:1:swapper/0)Hierarchical SRCU implementation.\n[    0.017288] [    0.017288] (CPU:0-pid:1:swapper/0)MSM Memory Dump base table set up\n[    0.017309] [    0.017309] (CPU:0-pid:1:swapper/0)MSM Memory Dump apps data table set up\n[    0.019691] [    0.019691] (CPU:0-pid:1:swapper/0)smp: Bringing up secondary CPUs ...\n[    0.029144] [    0.029144] (CPU:1-pid:0:swapper/1)GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000\n[    0.029197] [    0.029197] (CPU:1-pid:0:swapper/1)CPU1: Booted secondary processor [51df805e]\n[    0.038700] [    0.038700] (CPU:2-pid:0:swapper/2)GICv3: CPU2: found redistributor 200 region 0:0x0000000017aa0000\n[    0.038738] [    0.038738] (CPU:2-pid:0:swapper/2)CPU2: Booted secondary processor [51df805e]\n[    0.048272] [    0.048272] (CPU:3-pid:0:swapper/3)GICv3: CPU3: found redistributor 300 region 0:0x0000000017ac0000\n[    0.048306] [    0.048306] (CPU:3-pid:0:swapper/3)CPU3: Booted secondary processor [51df805e]\n[    0.058377] [    0.058377] (CPU:4-pid:0:swapper/4)CPU features: Unsupported CPU feature variation detected.\n[    0.058430] [    0.058430] (CPU:4-pid:0:swapper/4)GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000\n[    0.058485] [    0.058485] (CPU:4-pid:0:swapper/4)CPU4: Booted secondary processor [51df804e]\n[    0.068360] [    0.068360] (CPU:5-pid:0:swapper/5)GICv3: CPU5: found redistributor 500 region 0:0x0000000017b00000\n[    0.068405] [    0.068405] (CPU:5-pid:0:swapper/5)CPU5: Booted secondary processor [51df804e]\n[    0.078291] [    0.078291] (CPU:6-pid:0:swapper/6)GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000\n[    0.078335] [    0.078335] (CPU:6-pid:0:swapper/6)CPU6: Booted secondary processor [51df804e]\n[    0.088699] [    0.088699] (CPU:7-pid:0:swapper/7)GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000\n[    0.088738] [    0.088738] (CPU:7-pid:0:swapper/7)CPU7: Booted secondary processor [51df804e]\n[    0.088896] [    0.088896] (CPU:0-pid:1:swapper/0)smp: Brought up 1 node, 8 CPUs\n[    0.088907] [    0.088907] (CPU:0-pid:1:swapper/0)SMP: Total of 8 processors activated.\n[    0.088916] [    0.088916] (CPU:0-pid:1:swapper/0)CPU features: detected feature: GIC system register CPU interface\n[    0.088923] [    0.088923] (CPU:0-pid:1:swapper/0)CPU features: detected feature: Privileged Access Never\n[    0.088931] [    0.088931] (CPU:0-pid:1:swapper/0)CPU features: detected feature: User Access Override\n[    0.088938] [    0.088938] (CPU:0-pid:1:swapper/0)CPU features: detected feature: 32-bit EL0 Support\n[    0.088945] [    0.088945] (CPU:0-pid:1:swapper/0)CPU features: detected feature: Kernel page table isolation (KPTI)\n[    0.088954] [    0.088954] (CPU:0-pid:1:swapper/0)CPU features: detected: Hardware dirty bit management\n[    0.154998] [    0.154998] (CPU:0-pid:1:swapper/0)CPU: All CPU(s) started at EL1\n[    0.155046] [    0.155046] (CPU:0-pid:15:migration/0)alternatives: patching kernel code\n[    0.156499] [    0.156499] (CPU:0-pid:1:swapper/0)scm_enable_mem_protection: SCM call failed\n[    0.156572] [    0.156572] (CPU:0-pid:1:swapper/0)CPU0: update max cpu_capacity 602, thermal_cap=1024\n[    0.158609] [    0.158609] (CPU:0-pid:1:swapper/0)devtmpfs: initialized\n[    0.228273] [    0.228273] (CPU:0-pid:1:swapper/0)Registered cp15_barrier emulation handler\n[    0.228291] [    0.228291] (CPU:0-pid:1:swapper/0)Registered setend emulation handler\n[    0.228530] [    0.228530] (CPU:0-pid:1:swapper/0)clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns\n[    0.228546] [    0.228546] (CPU:0-pid:1:swapper/0)futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.228745] [    0.228745] (CPU:0-pid:1:swapper/0)zone->watermark[WMARK_MIN]2 = 353\n[    0.228753] [    0.228753] (CPU:0-pid:1:swapper/0)zone->watermark[WMARK_LOW] = 651\n[    0.228760] [    0.228760] (CPU:0-pid:1:swapper/0)zone->watermark[WMARK_HIGH] = 949\n[    0.228768] [    0.228768] (CPU:0-pid:1:swapper/0)zone->watermark[WMARK_MIN]2 = 3024\n[    0.228775] [    0.228775] (CPU:0-pid:1:swapper/0)zone->watermark[WMARK_LOW] = 5579\n[    0.228782] [    0.228782] (CPU:0-pid:1:swapper/0)zone->watermark[WMARK_HIGH] = 8134\n[    0.228788] [    0.228788] (CPU:0-pid:1:swapper/0)zone->watermark[WMARK_MIN]2 = 0\n[    0.228795] [    0.228795] (CPU:0-pid:1:swapper/0)zone->watermark[WMARK_LOW] = 0\n[    0.228801] [    0.228801] (CPU:0-pid:1:swapper/0)zone->watermark[WMARK_HIGH] = 0\n[    0.234836] [    0.234836] (CPU:0-pid:1:swapper/0)pinctrl core: initialized pinctrl subsystem\n[    0.235504] [    0.235504] (CPU:0-pid:1:swapper/0)NET: Registered protocol family 16\n[    0.236976] [    0.236976] (CPU:0-pid:1:swapper/0)schedtune: configured to support 6 boost groups\n[    0.237275] [    0.237275] (CPU:0-pid:1:swapper/0)[PM] wakeup_sources_debugfs_init -- pms_printer ++\n[    0.237284] [    0.237284] (CPU:0-pid:1:swapper/0)[PM] wakeup_sources_debugfs_init -- pms_printer --\n[    0.238631] [    0.238631] (CPU:0-pid:1:swapper/0)cpuidle: using governor menu\n[    0.238658] [    0.238658] (CPU:0-pid:1:swapper/0)cpuidle: using governor qcom\n[    0.238746] [    0.238746] (CPU:0-pid:1:swapper/0)NET: Registered protocol family 42\n[    0.243926] [    0.243926] (CPU:0-pid:1:swapper/0)vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.243941] [    0.243941] (CPU:0-pid:1:swapper/0)hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.244747] [    0.244747] (CPU:0-pid:1:swapper/0)DMA: preallocated 256 KiB pool for atomic allocations\n[    0.246300] [    0.246300] (CPU:0-pid:1:swapper/0)Failed to create IPC log0\n[    0.246308] [    0.246308] (CPU:0-pid:1:swapper/0)Failed to create IPC log1\n[    0.246315] [    0.246315] (CPU:0-pid:1:swapper/0)Failed to create IPC log2\n[    0.246323] [    0.246323] (CPU:0-pid:1:swapper/0)Failed to create IPC log3\n[    0.246330] [    0.246330] (CPU:0-pid:1:swapper/0)Failed to create IPC log4\n[    0.247539] [    0.247539] (CPU:0-pid:1:swapper/0)exit: IPA_USB init success!\n[    0.247823] [    0.247823] (CPU:0-pid:1:swapper/0)persistent_ram: error in header, 5\n[    0.247949] [    0.247949] (CPU:0-pid:1:swapper/0)pstore: using zlib compression\n[    0.247975] [    0.247975] (CPU:0-pid:1:swapper/0)console [pstore-1] enabled\n[    0.248113] [    0.248113] (CPU:0-pid:1:swapper/0)pstore: Registered ramoops as persistent store backend\n[    0.248122] [    0.248122] (CPU:0-pid:1:swapper/0)ramoops: attached 0x100000@0x99e00000, ecc: 16/0\n[    0.258673] [    0.258673] (CPU:0-pid:1:swapper/0)unable to find DT imem DLOAD mode node\n[    0.260276] [    0.260276] (CPU:0-pid:1:swapper/0)unable to find DT imem EDLOAD mode node\n[    0.262611] [    0.262611] (CPU:0-pid:78:wk:async_run_e)spmi spmi-0: PMIC arbiter version v5 (0x50000000)\n[    0.268418] [    0.268418] (CPU:0-pid:78:wk:async_run_e)LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.269237] [    0.269237] (CPU:0-pid:1:swapper/0)platform 4080000.qcom,mss: assigned reserved memory node modem_region\n[    0.269367] [    0.269367] (CPU:0-pid:1:swapper/0)platform 17300000.qcom,lpass: assigned reserved memory node pil_adsp_region\n[    0.269503] [    0.269503] (CPU:0-pid:1:swapper/0)platform 5c00000.qcom,ssc: assigned reserved memory node pil_slpi_region\n[    0.269636] [    0.269636] (CPU:0-pid:1:swapper/0)platform 188101c.qcom,spss: assigned reserved memory node pil_spss_region\n[    0.269823] [    0.269823] (CPU:0-pid:1:swapper/0)msm_watchdog 17c10000.qcom,wdt: wdog absent resource not present\n[    0.270735] [    0.270735] (CPU:0-pid:1:swapper/0)msm_watchdog 17c10000.qcom,wdt: MSM Watchdog Initialized\n[    0.270783] [    0.270783] (CPU:0-pid:1:swapper/0)platform 9800000.qcom,npu: assigned reserved memory node pil_npu_region\n[    0.270913] [    0.270913] (CPU:0-pid:1:swapper/0)platform 8300000.qcom,turing: assigned reserved memory node cdsp_regions\n[    0.270995] [    0.270995] (CPU:0-pid:1:swapper/0)platform aae0000.qcom,venus: assigned reserved memory node pil_video_region\n[    0.272027] [    0.272027] (CPU:0-pid:1:swapper/0)sps:sps is ready.\n[    0.272712] [    0.272712] (CPU:0-pid:1:swapper/0)platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.280500] [    0.280500] (CPU:0-pid:1:swapper/0)platform 87900000.qseecom: assigned reserved memory node qseecom_region\n[    0.280954] [    0.280954] (CPU:0-pid:1:swapper/0)platform soc:mem_dump: assigned reserved memory node mem_dump_region\n[    0.294637] [    0.294637] (CPU:0-pid:1:swapper/0)msm-dcc 10a2000.dcc_v2: DCC list passed 3\n[    0.295303] [    0.295303] (CPU:0-pid:1:swapper/0)msm-dcc 10a2000.dcc_v2: All values written to enable\n[    0.297551] [    0.297551] (CPU:0-pid:1:swapper/0)(NULL device *): msm_gsi_probe:4316 failed to create IPC log, continue...\n[    0.298047] [    0.298047] (CPU:0-pid:1:swapper/0)platform soc:qcom,ipa_fws: assigned reserved memory node pil_ipa_fw_region\n[    0.298875] [    0.298875] (CPU:0-pid:1:swapper/0)platform 88a7000.msm_tspp: assigned reserved memory node qseecom_region\n[    0.299128] [    0.299128] (CPU:0-pid:1:swapper/0)sm8150-pinctrl 3000000.pinctrl: invalid resource\n[    0.307520] [    0.307520] (CPU:0-pid:1:swapper/0)pm8150_l13: Bringing 2704000uV into 2700000-2700000uV\n[    0.308671] [    0.308671] (CPU:0-pid:1:swapper/0)pm8150_l16: Bringing 2704000uV into 2700000-2700000uV\n[    0.311277] [    0.311277] (CPU:0-pid:1:swapper/0)pm8150l_s6_level: supplied by pm8150l_s4_level\n[    0.311461] [    0.311461] (CPU:0-pid:1:swapper/0)pm8150l_s6_level_ao: supplied by pm8150l_s4_level_ao\n[    0.317002] [    0.317002] (CPU:0-pid:1:swapper/0)rpmh_regulator_probe: smpf2: could not find RPMh address for resource\n[    0.317139] [    0.317139] (CPU:0-pid:1:swapper/0)rpmh_regulator_probe: ldof2: could not find RPMh address for resource\n[    0.317272] [    0.317272] (CPU:0-pid:1:swapper/0)rpmh_regulator_probe: ldof5: could not find RPMh address for resource\n[    0.317401] [    0.317401] (CPU:0-pid:1:swapper/0)rpmh_regulator_probe: ldof6: could not find RPMh address for resource\n[    0.350954] [    0.350954] (CPU:0-pid:1:swapper/0)vServices Framework 1.0\n[    0.355897] [    0.355897] (CPU:0-pid:1:swapper/0)gpu_cx_gdsc: supplied by pm8150l_s6_level\n[    0.356215] [    0.356215] (CPU:0-pid:1:swapper/0)gpu_gx_gdsc: supplied by pm8150l_s2_level\n[    0.358812] [    0.358812] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on cpu0\n[    0.359294] [    0.359294] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (1785600000 Hz, 836000 uv) on cpu0\n[    0.359344] [    0.359344] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on cpu1\n[    0.359810] [    0.359810] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (1785600000 Hz, 836000 uv) on cpu1\n[    0.359862] [    0.359862] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on cpu2\n[    0.360370] [    0.360370] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (1785600000 Hz, 836000 uv) on cpu2\n[    0.360429] [    0.360429] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on cpu3\n[    0.360891] [    0.360891] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (1785600000 Hz, 836000 uv) on cpu3\n[    0.360954] [    0.360954] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (710400000 Hz, 600000 uv) on cpu4\n[    0.361387] [    0.361387] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (2419200000 Hz, 1048000 uv) on cpu4\n[    0.361438] [    0.361438] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (710400000 Hz, 600000 uv) on cpu5\n[    0.361900] [    0.361900] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (2419200000 Hz, 1048000 uv) on cpu5\n[    0.361952] [    0.361952] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (710400000 Hz, 600000 uv) on cpu6\n[    0.362425] [    0.362425] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (2419200000 Hz, 1048000 uv) on cpu6\n[    0.362481] [    0.362481] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (825600000 Hz, 604000 uv) on cpu7\n[    0.363072] [    0.363072] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (2956800000 Hz, 1040000 uv) on cpu7\n[    0.363575] [    0.363575] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.363584] [    0.363584] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on soc:qcom,cpu4-cpu-l3-lat\n[    0.363592] [    0.363592] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.363600] [    0.363600] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (300000000 Hz, 604000 uv) on soc:qcom,cpu7-cpu-l3-lat\n[    0.365200] [    0.365200] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (1612800000 Hz, 844000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.365209] [    0.365209] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (1612800000 Hz, 844000 uv) on soc:qcom,cpu4-cpu-l3-lat\n[    0.365217] [    0.365217] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (1612800000 Hz, 844000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.365225] [    0.365225] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (1612800000 Hz, 844000 uv) on soc:qcom,cpu7-cpu-l3-lat\n[    0.365914] [    0.365914] (CPU:0-pid:1:swapper/0)sched-energy: Sched-energy-costs installed from DT\n[    0.366024] [    0.366024] (CPU:0-pid:75:wk:update_topo)CPU0: update max cpu_capacity 363, thermal_cap=1024\n[    0.366171] [    0.366171] (CPU:0-pid:1:swapper/0)cpufreq: driver osm-cpufreq up and running\n[    0.366179] [    0.366179] (CPU:0-pid:1:swapper/0)clk: clk_cpu_osm_driver_probe: OSM CPUFreq driver inited\n[    0.368271] [    0.368271] (CPU:0-pid:1:swapper/0)qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.370286] [    0.370286] (CPU:0-pid:1:swapper/0)clk-rpmh soc:qcom,rpmhclk: Registered RPMh clocks\n[    0.385673] [    0.385673] (CPU:0-pid:1:swapper/0)gcc-sm8150 100000.qcom,gcc: Registered GCC clocks\n[    0.386787] [    0.386787] (CPU:0-pid:1:swapper/0)gpu_cc_gmu_clk_src: set OPP pair(19200000 Hz: 49 uV) on 2c6a000.qcom,gmu\n[    0.386896] [    0.386896] (CPU:0-pid:1:swapper/0)gpu_cc_gmu_clk_src: set OPP pair(500000000 Hz: 129 uV) on 2c6a000.qcom,gmu\n[    0.387008] [    0.387008] (CPU:0-pid:1:swapper/0)gpu_cc-sm8150 2c90000.qcom,gpucc: Registered GPU CC clocks\n[    0.388143] [    0.388137] (CPU:0-pid:1:swapper/0)AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.388148] [    0.388148] (CPU:0-pid:1:swapper/0)video_cc-sm8150 ab00000.qcom,videocc: Unable to register for bw voting\n[    0.393522] [    0.393522] (CPU:0-pid:1:swapper/0)KPI: Bootloader start count = 77842\n[    0.393530] [    0.393530] (CPU:0-pid:1:swapper/0)KPI: Bootloader end count = 3180169\n[    0.393538] [    0.393538] (CPU:0-pid:1:swapper/0)KPI: Bootloader display count = 4223274397\n[    0.393545] [    0.393545] (CPU:0-pid:1:swapper/0)KPI: Bootloader load kernel count = 402390231\n[    0.393554] [    0.393554] (CPU:0-pid:1:swapper/0)KPI: Kernel MPM timestamp = 3206622\n[    0.393561] [    0.393561] (CPU:0-pid:1:swapper/0)KPI: Kernel MPM Clock frequency = 32768\n[    0.393582] [    0.393582] (CPU:0-pid:1:swapper/0)socinfo_print: v0.15, id=339, ver=2.2, raw_id=165, raw_ver=3, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65566, pmic_die_revision=196608 foundry_id=1 serial_number=3008169705 num_pmics=3 chip_family=0x56 raw_device_family=0x6 raw_device_number=0x3 nproduct_id=0x404 num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xc ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.393701] [    0.393701] (CPU:0-pid:1:swapper/0)Minidump: Enabled with max number of regions 200\n[    0.393897] [    0.393897] (CPU:0-pid:1:swapper/0)msm_bus_fabric_rpmh_init_driver\n[    0.394183] [    0.394177] (CPU:0-pid:1:swapper/0)msm_bus: Probe started\n[    0.394954] [    0.394954] (CPU:0-pid:1:swapper/0)msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.395043] [    0.395043] (CPU:0-pid:1:swapper/0)msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.395065] [    0.395065] (CPU:0-pid:1:swapper/0)msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.395132] [    0.395132] (CPU:0-pid:1:swapper/0)msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.398008] [    0.398003] (CPU:0-pid:1:swapper/0)msm_bus: DT Parsing complete\n[    0.398121] [    0.398115] (CPU:0-pid:1:swapper/0)msm_bus_rsc_init: Failed to get mbox:disp_rsc\n[    0.401528] [    0.401522] (CPU:0-pid:1:swapper/0)msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.401693] [    0.401688] (CPU:0-pid:1:swapper/0)msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.401731] [    0.401726] (CPU:0-pid:1:swapper/0)msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.401872] [    0.401867] (CPU:0-pid:1:swapper/0)msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.417926] [    0.417926] (CPU:0-pid:1:swapper/0)actuator_triple_rear_regulator: supplied by pm8150l_bob\n[    0.418152] [    0.418152] (CPU:0-pid:1:swapper/0)actuator_triple_rear_aux_regulator: supplied by pm8150l_bob\n[    0.418371] [    0.418371] (CPU:0-pid:1:swapper/0)camera_rear0_vana_ldo: supplied by pm8150l_bob\n[    0.418611] [    0.418611] (CPU:0-pid:1:swapper/0)cam_dvdd_t_1p05_en: supplied by pm8150l_bob\n[    0.418855] [    0.418855] (CPU:0-pid:1:swapper/0)camera_dvdd_t1_1p1_en: supplied by pm8150l_bob\n[    0.420529] [    0.420523] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 161 dest 627\n[    0.420768] [    0.420763] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 1 apps_smmu\n[    0.420902] [    0.420902] (CPU:0-pid:1:swapper/0)arm-smmu 15000000.apps-smmu: \tnon-coherent table walk\n[    0.420910] [    0.420910] (CPU:0-pid:1:swapper/0)arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.420920] [    0.420920] (CPU:0-pid:1:swapper/0)arm-smmu 15000000.apps-smmu: \tstream matching with 94 register groups\n[    0.421963] [    0.421958] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 161 dest 627\n[    0.422163] [    0.422158] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 2 apps_smmu\n[    0.422422] [    0.422416] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 161 dest 627\n[    0.422611] [    0.422606] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 3 apps_smmu\n[    0.422856] [    0.422851] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 22 dest 773\n[    0.422962] [    0.422957] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 4 mnoc_hf_1_tbu\n[    0.423144] [    0.423139] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 154 dest 10070\n[    0.423218] [    0.423213] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 5 apps_smmu\n[    0.423460] [    0.423455] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 22 dest 773\n[    0.423559] [    0.423554] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 6 mnoc_hf_0_tbu\n[    0.423744] [    0.423739] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 154 dest 10070\n[    0.423811] [    0.423806] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 7 apps_smmu\n[    0.424038] [    0.424033] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 161 dest 627\n[    0.424234] [    0.424229] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 8 apps_smmu\n[    0.424484] [    0.424478] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 161 dest 627\n[    0.424665] [    0.424660] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 9 apps_smmu\n[    0.424889] [    0.424883] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 137 dest 772\n[    0.424987] [    0.424982] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 10 mnoc_sf_0_tbu\n[    0.426121] [    0.426121] (CPU:0-pid:1:swapper/0)arm-smmu 2ca0000.kgsl-smmu: \tnon-coherent table walk\n[    0.426130] [    0.426130] (CPU:0-pid:1:swapper/0)arm-smmu 2ca0000.kgsl-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.426141] [    0.426141] (CPU:0-pid:1:swapper/0)arm-smmu 2ca0000.kgsl-smmu: \tstream matching with 6 register groups\n[    0.427307] [    0.427307] (CPU:0-pid:1:swapper/0)vgaarb: loaded\n[    0.427354] [    0.427354] (CPU:0-pid:1:swapper/0)Init Richtek RegMap 1.1.14_G\n[    0.427614] [    0.427614] (CPU:0-pid:1:swapper/0)SCSI subsystem initialized\n[    0.427708] [    0.427708] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver usbfs\n[    0.427734] [    0.427734] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver hub\n[    0.427873] [    0.427873] (CPU:0-pid:1:swapper/0)usbcore: registered new device driver usb\n[    0.428277] [    0.428277] (CPU:0-pid:1:swapper/0)usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.428401] [    0.428401] (CPU:0-pid:1:swapper/0)rt1711h_init (2.0.1_G): initializing...\n[    0.428426] [    0.428426] (CPU:0-pid:1:swapper/0)tcpc_class_init (2.0.10_G)\n[    0.428436] [    0.428436] (CPU:0-pid:1:swapper/0)SVDM supported mode [0]: name = DisplayPort, svid = 0xff01\n[    0.428444] [    0.428444] (CPU:0-pid:1:swapper/0)SVDM supported mode [1]: name = Direct Charge, svid = 0x29cf\n[    0.428452] [    0.428452] (CPU:0-pid:1:swapper/0)dpm_check_supported_modes : found \"disorder\"...\n[    0.428466] [    0.428466] (CPU:0-pid:1:swapper/0)TCPC class init OK\n[    0.428474] [    0.428474] (CPU:0-pid:1:swapper/0)pd_dbg_info_init\n[    0.428762] [    0.428762] (CPU:0-pid:1:swapper/0)[Keys][qpnp-power-on.c] probe() +++\n[    0.428840] [    0.428840] (CPU:0-pid:1:swapper/0)qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'warm' boot\n[    0.428873] [    0.428873] (CPU:0-pid:1:swapper/0)qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.428893] [    0.428893] (CPU:0-pid:1:swapper/0)[Keys][qpnp-power-on.c] pon-dbc-delay =15625\n[    0.429068] [    0.429068] (CPU:0-pid:1:swapper/0)input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800/input/input0\n[    0.429294] [    0.429294] (CPU:0-pid:1:swapper/0)[Keys][qpnp-power-on.c] probe() ---\n[    0.429338] [    0.429338] (CPU:0-pid:1:swapper/0)[Keys][qpnp-power-on.c] probe() +++\n[    0.429390] [    0.429390] (CPU:0-pid:1:swapper/0)qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150b@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from CBL (External Power Supply) and 'warm' boot\n[    0.429416] [    0.429416] (CPU:0-pid:1:swapper/0)qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150b@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from SOFT (Software)\n[    0.429425] [    0.429425] (CPU:0-pid:1:swapper/0)[Keys][qpnp-power-on.c] pon-dbc-delay =1\n[    0.429465] [    0.429465] (CPU:0-pid:1:swapper/0)[Keys][qpnp-power-on.c] probe() ---\n[    0.429512] [    0.429512] (CPU:0-pid:1:swapper/0)[Keys][qpnp-power-on.c] probe() +++\n[    0.429561] [    0.429561] (CPU:0-pid:1:swapper/0)qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150l@4:qcom,power-on@800: PMIC@SID4 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'warm' boot\n[    0.429586] [    0.429586] (CPU:0-pid:1:swapper/0)qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150l@4:qcom,power-on@800: PMIC@SID4: Power-off reason: Triggered from SOFT (Software)\n[    0.429595] [    0.429595] (CPU:0-pid:1:swapper/0)[Keys][qpnp-power-on.c] pon-dbc-delay =1\n[    0.429641] [    0.429641] (CPU:0-pid:1:swapper/0)[Keys][qpnp-power-on.c] probe() ---\n[    0.429882] [    0.429882] (CPU:0-pid:1:swapper/0)media: Linux media interface: v0.10\n[    0.429903] [    0.429903] (CPU:0-pid:1:swapper/0)Linux video capture interface: v2.00\n[    0.437859] [    0.437859] (CPU:0-pid:1:swapper/0)virt zone: sensor[gpuss-1-usr] read error:-22\n[    0.437871] [    0.437871] (CPU:0-pid:1:swapper/0)thermal thermal_zone32: failed to read out thermal zone (-22)\n[    0.438259] [    0.438254] (CPU:0-pid:1:swapper/0)tsens_tm_probe : unable to create IPC Logging 0 for tsens 0x000000000c263000\n[    0.438267] [    0.438262] (CPU:0-pid:1:swapper/0)tsens_tm_probe : unable to create IPC Logging 1 for tsens 0x000000000c263000\n[    0.438276] [    0.438271] (CPU:0-pid:1:swapper/0)tsens_tm_probe : unable to create IPC Logging 2 for tsens 0x000000000c263000\n[    0.440286] [    0.440281] (CPU:0-pid:1:swapper/0)tsens_tm_probe : unable to create IPC Logging 0 for tsens 0x000000000c265000\n[    0.440294] [    0.440289] (CPU:0-pid:1:swapper/0)tsens_tm_probe : unable to create IPC Logging 1 for tsens 0x000000000c265000\n[    0.440301] [    0.440297] (CPU:0-pid:1:swapper/0)tsens_tm_probe : unable to create IPC Logging 2 for tsens 0x000000000c265000\n[    0.440873] [    0.440873] (CPU:0-pid:1:swapper/0)EDAC MC: Ver: 3.0.0\n[    0.446334] [    0.446334] (CPU:0-pid:1:swapper/0)platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node adsp_region\n[    0.446426] [    0.446426] (CPU:0-pid:1:swapper/0)platform soc:qcom,ion:qcom,ion-heap@26: assigned reserved memory node user_contig_region\n[    0.446512] [    0.446512] (CPU:0-pid:1:swapper/0)platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.446601] [    0.446601] (CPU:0-pid:1:swapper/0)platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.446710] [    0.446710] (CPU:0-pid:1:swapper/0)platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.446802] [    0.446802] (CPU:0-pid:1:swapper/0)platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.447198] [    0.447198] (CPU:0-pid:1:swapper/0)ION heap system created\n[    0.447367] [    0.447367] (CPU:0-pid:1:swapper/0)ION heap adsp created at 0x00000000fc400000 with size 1000000\n[    0.447377] [    0.447377] (CPU:0-pid:1:swapper/0)ION heap user_contig created at 0x00000000f1000000 with size 1000000\n[    0.447386] [    0.447386] (CPU:0-pid:1:swapper/0)ION heap qsecom created at 0x000000009e400000 with size 1400000\n[    0.447395] [    0.447395] (CPU:0-pid:1:swapper/0)ION heap qsecom_ta created at 0x00000000f0000000 with size 1000000\n[    0.447403] [    0.447403] (CPU:0-pid:1:swapper/0)ION heap spss created at 0x00000000ef800000 with size 800000\n[    0.447413] [    0.447413] (CPU:0-pid:1:swapper/0)ION heap secure_display created at 0x00000000f2400000 with size a000000\n[    0.483021] [    0.483021] (CPU:0-pid:1:swapper/0)platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0xa4c00000, size 0x3c00000\n[    0.483030] [    0.483030] (CPU:0-pid:1:swapper/0)ION heap secure_carveout created\n[    0.483040] [    0.483040] (CPU:0-pid:1:swapper/0)ION heap secure_heap created\n[    0.484915] [    0.484915] (CPU:0-pid:1:swapper/0)qupv3_geni_se 8c0000.qcom,qupv3_0_geni_se: geni_se_probe Failed to allocate log context\n[    0.485199] [    0.485199] (CPU:0-pid:1:swapper/0)iommu: Adding device 8c0000.qcom,qupv3_0_geni_se:qcom,iommu_qupv3_0_geni_se_cb to group 0\n[    0.485298] [    0.485298] (CPU:0-pid:1:swapper/0)qupv3_geni_se ac0000.qcom,qupv3_1_geni_se: geni_se_probe Failed to allocate log context\n[    0.485506] [    0.485506] (CPU:0-pid:1:swapper/0)iommu: Adding device ac0000.qcom,qupv3_1_geni_se:qcom,iommu_qupv3_1_geni_se_cb to group 1\n[    0.485598] [    0.485598] (CPU:0-pid:1:swapper/0)qupv3_geni_se cc0000.qcom,qupv3_2_geni_se: geni_se_probe Failed to allocate log context\n[    0.485804] [    0.485804] (CPU:0-pid:1:swapper/0)iommu: Adding device cc0000.qcom,qupv3_2_geni_se:qcom,iommu_qupv3_2_geni_se_cb to group 2\n[    0.485888] [    0.485888] (CPU:0-pid:1:swapper/0)qupv3_geni_se 26c0000.qcom,qupv3_3_geni_se: geni_se_probe Failed to allocate log context\n[    0.486082] [    0.486082] (CPU:0-pid:1:swapper/0)iommu: Adding device 26c0000.qcom,qupv3_3_geni_se:qcom,iommu_qupv3_3_geni_se_cb to group 3\n[    0.486576] [    0.486576] (CPU:0-pid:1:swapper/0)PMIC@SID2: PM8150B v2.0 options: 0, 0, 0, 0\n[    0.486788] [    0.486788] (CPU:0-pid:1:swapper/0)PMIC@SID4: PM8150L v3.0 options: 0, 0, 0, 0\n[    0.487958] [    0.487953] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 90 dest 512\n[    0.488552] [    0.488547] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 90 dest 585\n[    0.488736] [    0.488731] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 676\n[    0.489039] [    0.489035] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 143 dest 777\n[    0.489133] [    0.489128] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 11 ipa\n[    0.494589] [    0.494589] (CPU:0-pid:1:swapper/0)ipa ipa3_smp2p_probe:7802 fail to get smp2p clk resp bit -517\n[    0.494974] [    0.494974] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:ipa_smmu_ap to group 4\n[    0.495202] [    0.495202] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:ipa_smmu_wlan to group 5\n[    0.495407] [    0.495407] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:ipa_smmu_uc to group 6\n[    0.496203] [    0.496203] (CPU:0-pid:1:swapper/0)ipa ipa3_smp2p_probe:7802 fail to get smp2p clk resp bit -517\n[    0.498147] [    0.498147] (CPU:0-pid:1:swapper/0)SDAM base=0xb100 size=128 registered successfully\n[    0.498846] [    0.498846] (CPU:0-pid:1:swapper/0)Advanced Linux Sound Architecture Driver Initialized.\n[    0.499542] [    0.499542] (CPU:0-pid:1:swapper/0)Bluetooth: Core ver 2.22\n[    0.499589] [    0.499589] (CPU:0-pid:1:swapper/0)NET: Registered protocol family 31\n[    0.499597] [    0.499597] (CPU:0-pid:1:swapper/0)Bluetooth: HCI device and connection manager initialized\n[    0.499621] [    0.499621] (CPU:0-pid:1:swapper/0)Bluetooth: HCI socket layer initialized\n[    0.499635] [    0.499635] (CPU:0-pid:1:swapper/0)Bluetooth: L2CAP socket layer initialized\n[    0.499681] [    0.499681] (CPU:0-pid:1:swapper/0)Bluetooth: SCO socket layer initialized\n[    0.501410] [    0.501410] (CPU:0-pid:1:swapper/0)NetLabel: Initializing\n[    0.501419] [    0.501419] (CPU:0-pid:1:swapper/0)NetLabel:  domain hash size = 128\n[    0.501429] [    0.501429] (CPU:0-pid:1:swapper/0)NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\n[    0.501516] [    0.501516] (CPU:0-pid:1:swapper/0)NetLabel:  unlabeled traffic allowed by default\n[    0.501690] [    0.501690] (CPU:0-pid:1:swapper/0)pcie:pcie_init.\n[    0.501702] [    0.501702] (CPU:0-pid:1:swapper/0)pcie_init: unable to create IPC log context for pcie0-short\n[    0.501712] [    0.501712] (CPU:0-pid:1:swapper/0)pcie_init: unable to create IPC log context for pcie0-long\n[    0.501723] [    0.501723] (CPU:0-pid:1:swapper/0)pcie_init: unable to create IPC log context for pcie0-dump\n[    0.501736] [    0.501736] (CPU:0-pid:1:swapper/0)pcie_init: unable to create IPC log context for pcie1-short\n[    0.501744] [    0.501744] (CPU:0-pid:1:swapper/0)pcie_init: unable to create IPC log context for pcie1-long\n[    0.501753] [    0.501753] (CPU:0-pid:1:swapper/0)pcie_init: unable to create IPC log context for pcie1-dump\n[    0.501763] [    0.501763] (CPU:0-pid:1:swapper/0)pcie_init: unable to create IPC log context for pcie2-short\n[    0.501770] [    0.501770] (CPU:0-pid:1:swapper/0)pcie_init: unable to create IPC log context for pcie2-long\n[    0.501776] [    0.501776] (CPU:0-pid:1:swapper/0)pcie_init: unable to create IPC log context for pcie2-dump\n[    0.503180] [    0.503180] (CPU:0-pid:1:swapper/0)pci-msm 1c00000.qcom,pcie: 1c00000.qcom,pcie supply vreg-3.3 not found, using dummy regulator\n[    0.503723] [    0.503723] (CPU:0-pid:1:swapper/0)pci-msm 1c00000.qcom,pcie: 1c00000.qcom,pcie supply gdsc-smmu not found, using dummy regulator\n[    0.504269] [    0.504263] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 45 dest 512\n[    0.504898] [    0.504893] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 12 pcie0\n[    0.505174] [    0.505174] (CPU:0-pid:1:swapper/0)msm_pcie_get_resources: PCIe: RC0 can't get tcsr resource.\n[    0.505204] [    0.505204] (CPU:0-pid:1:swapper/0)msm_pcie_probe: PCIe: RC0 could not get pinctrl sleep state\n[    0.505678] [    0.505678] (CPU:0-pid:1:swapper/0)genirq: irq_chip msmgpio-dc did not update eff. affinity mask of irq 210\n[    0.506353] [    0.506347] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 590\n[    0.506880] [    0.506874] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 589\n[    0.507177] [    0.507173] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 596\n[    0.507494] [    0.507490] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 22 dest 512\n[    0.507829] [    0.507824] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 23 dest 512\n[    0.508148] [    0.508143] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 13 bus-proxy-client\n[    0.510523] [    0.510523] (CPU:0-pid:75:wk:deferred_pr)LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=0 ldo_voltage=5500mV ncp_voltage=5500mV bst_voltage=5650mV\n[    0.510704] [    0.510704] (CPU:0-pid:75:wk:deferred_pr)sched-energy energy-costs: cpu=0 eff=1024 [freq=300000 cap=62 power_d0=24] -> [freq=1785600 cap=365 power_d0=128]\n[    0.510718] [    0.510718] (CPU:0-pid:75:wk:deferred_pr)sched-energy energy-costs: cpu=1 eff=1024 [freq=300000 cap=62 power_d0=24] -> [freq=1785600 cap=365 power_d0=128]\n[    0.510732] [    0.510732] (CPU:0-pid:75:wk:deferred_pr)sched-energy energy-costs: cpu=2 eff=1024 [freq=300000 cap=62 power_d0=24] -> [freq=1785600 cap=365 power_d0=128]\n[    0.510744] [    0.510744] (CPU:0-pid:75:wk:deferred_pr)sched-energy energy-costs: cpu=3 eff=1024 [freq=300000 cap=62 power_d0=24] -> [freq=1785600 cap=365 power_d0=128]\n[    0.510756] [    0.510756] (CPU:0-pid:75:wk:deferred_pr)sched-energy energy-costs: cpu=4 eff=1740 [freq=710400 cap=247 power_d0=165] -> [freq=2419200 cap=838 power_d0=1022]\n[    0.510769] [    0.510769] (CPU:0-pid:75:wk:deferred_pr)sched-energy energy-costs: cpu=5 eff=1740 [freq=710400 cap=247 power_d0=165] -> [freq=2419200 cap=838 power_d0=1022]\n[    0.510782] [    0.510782] (CPU:0-pid:75:wk:deferred_pr)sched-energy energy-costs: cpu=6 eff=1740 [freq=710400 cap=247 power_d0=165] -> [freq=2419200 cap=838 power_d0=1022]\n[    0.510796] [    0.510796] (CPU:0-pid:75:wk:deferred_pr)sched-energy energy-costs: cpu=7 eff=1740 [freq=825600 cap=286 power_d0=227] -> [freq=2956800 cap=1024 power_d0=1670]\n[    0.510804] [    0.510804] (CPU:0-pid:75:wk:deferred_pr)sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.511112] [    0.511107] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 589\n[    0.511449] [    0.511444] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 14 bps_gdsc_ahb\n[    0.511797] [    0.511797] (CPU:0-pid:75:wk:deferred_pr)bps_gdsc: supplied by pm8150l_s5_level\n[    0.512330] [    0.512325] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 589\n[    0.512628] [    0.512623] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 15 ipe_0_gdsc_ahb\n[    0.512892] [    0.512892] (CPU:0-pid:75:wk:deferred_pr)ipe_0_gdsc: supplied by pm8150l_s5_level\n[    0.513352] [    0.513347] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 589\n[    0.513679] [    0.513674] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 16 ipe_1_gdsc_ahb\n[    0.513936] [    0.513936] (CPU:0-pid:75:wk:deferred_pr)ipe_1_gdsc: supplied by pm8150l_s5_level\n[    0.514365] [    0.514360] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 589\n[    0.514662] [    0.514657] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 17 ife_0_gdsc_ahb\n[    0.514891] [    0.514891] (CPU:0-pid:75:wk:deferred_pr)ife_0_gdsc: supplied by pm8150l_s5_level\n[    0.515307] [    0.515302] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 589\n[    0.515590] [    0.515585] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 18 ife_1_gdsc_ahb\n[    0.515827] [    0.515827] (CPU:0-pid:75:wk:deferred_pr)ife_1_gdsc: supplied by pm8150l_s5_level\n[    0.516230] [    0.516225] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 589\n[    0.516521] [    0.516516] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 19 titan_top_gdsc_ahb\n[    0.516737] [    0.516737] (CPU:0-pid:75:wk:deferred_pr)titan_top_gdsc: supplied by pm8150l_s5_level\n[    0.517147] [    0.517142] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 590\n[    0.517444] [    0.517439] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 20 mdss_core_gdsc_ahb\n[    0.517584] [    0.517584] (CPU:0-pid:75:wk:deferred_pr)mdss_core_gdsc: supplied by pm8150l_s5_level\n[    0.518088] [    0.518083] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 596\n[    0.518386] [    0.518381] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 21 mvsc_gdsc_ahb\n[    0.518620] [    0.518620] (CPU:0-pid:75:wk:deferred_pr)mvsc_gdsc: supplied by pm8150l_s5_level\n[    0.519024] [    0.519019] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 596\n[    0.519326] [    0.519320] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 22 mvs0_gdsc_ahb\n[    0.519553] [    0.519553] (CPU:0-pid:75:wk:deferred_pr)mvs0_gdsc: supplied by pm8150l_s5_level\n[    0.519957] [    0.519952] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 596\n[    0.520323] [    0.520318] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 23 mvs1_gdsc_ahb\n[    0.520553] [    0.520553] (CPU:0-pid:75:wk:deferred_pr)mvs1_gdsc: supplied by pm8150l_s5_level\n[    0.521381] [    0.521376] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 589\n[    0.521660] [    0.521655] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 24 clk_camcc_debugfs\n[    0.522597] [    0.522597] (CPU:0-pid:75:wk:deferred_pr)cam_cc_bps_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac6f000.qcom,bps\n[    0.522912] [    0.522912] (CPU:0-pid:75:wk:deferred_pr)cam_cc_bps_clk_src: set OPP pair(600000000 Hz: 257 uV) on ac6f000.qcom,bps\n[    0.523252] [    0.523252] (CPU:0-pid:75:wk:deferred_pr)cam_cc_cci_0_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac4a000.qcom,cci\n[    0.523344] [    0.523344] (CPU:0-pid:75:wk:deferred_pr)cam_cc_cci_0_clk_src: set OPP pair(37500000 Hz: 65 uV) on ac4a000.qcom,cci\n[    0.523566] [    0.523566] (CPU:0-pid:75:wk:deferred_pr)cam_cc_cci_1_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac4b000.qcom,cci\n[    0.523633] [    0.523633] (CPU:0-pid:75:wk:deferred_pr)cam_cc_cci_1_clk_src: set OPP pair(37500000 Hz: 65 uV) on ac4b000.qcom,cci\n[    0.524042] [    0.524042] (CPU:0-pid:75:wk:deferred_pr)cam_cc_csi0phytimer_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac65000.qcom,csiphy\n[    0.524105] [    0.524105] (CPU:0-pid:75:wk:deferred_pr)cam_cc_csi0phytimer_clk_src: set OPP pair(300000000 Hz: 65 uV) on ac65000.qcom,csiphy\n[    0.524333] [    0.524333] (CPU:0-pid:75:wk:deferred_pr)cam_cc_csi1phytimer_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac66000.qcom,csiphy\n[    0.524422] [    0.524422] (CPU:0-pid:75:wk:deferred_pr)cam_cc_csi1phytimer_clk_src: set OPP pair(300000000 Hz: 65 uV) on ac66000.qcom,csiphy\n[    0.524650] [    0.524650] (CPU:0-pid:75:wk:deferred_pr)cam_cc_csi2phytimer_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac67000.qcom,csiphy\n[    0.524725] [    0.524725] (CPU:0-pid:75:wk:deferred_pr)cam_cc_csi2phytimer_clk_src: set OPP pair(300000000 Hz: 65 uV) on ac67000.qcom,csiphy\n[    0.524968] [    0.524968] (CPU:0-pid:75:wk:deferred_pr)cam_cc_csi3phytimer_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac68000.qcom,csiphy\n[    0.525031] [    0.525031] (CPU:0-pid:75:wk:deferred_pr)cam_cc_csi3phytimer_clk_src: set OPP pair(300000000 Hz: 65 uV) on ac68000.qcom,csiphy\n[    0.525915] [    0.525915] (CPU:0-pid:75:wk:deferred_pr)cam_cc_icp_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac00000.qcom,a5\n[    0.526036] [    0.526036] (CPU:0-pid:75:wk:deferred_pr)cam_cc_icp_clk_src: set OPP pair(600000000 Hz: 193 uV) on ac00000.qcom,a5\n[    0.526369] [    0.526369] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_0_clk_src: set OPP pair(19200000 Hz: 49 uV) on acaf000.qcom,vfe0\n[    0.526676] [    0.526676] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_0_clk_src: set OPP pair(950000000 Hz: 385 uV) on acaf000.qcom,vfe0\n[    0.527016] [    0.527016] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_0_csid_clk_src: set OPP pair(19200000 Hz: 49 uV) on acb3000.qcom,csid0\n[    0.527291] [    0.527291] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_0_csid_clk_src: set OPP pair(600000000 Hz: 257 uV) on acb3000.qcom,csid0\n[    0.527688] [    0.527688] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_1_clk_src: set OPP pair(19200000 Hz: 49 uV) on acb6000.qcom,vfe1\n[    0.528022] [    0.528022] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_1_clk_src: set OPP pair(950000000 Hz: 385 uV) on acb6000.qcom,vfe1\n[    0.528350] [    0.528350] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_1_csid_clk_src: set OPP pair(19200000 Hz: 49 uV) on acba000.qcom,csid1\n[    0.528608] [    0.528608] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_1_csid_clk_src: set OPP pair(600000000 Hz: 257 uV) on acba000.qcom,csid1\n[    0.528959] [    0.528959] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_lite_0_clk_src: set OPP pair(19200000 Hz: 49 uV) on acc4000.qcom,vfe-lite0\n[    0.529226] [    0.529226] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_lite_0_clk_src: set OPP pair(600000000 Hz: 257 uV) on acc4000.qcom,vfe-lite0\n[    0.529562] [    0.529562] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_lite_0_csid_clk_src: set OPP pair(19200000 Hz: 49 uV) on acc8000.qcom,csid-lite0\n[    0.529758] [    0.529758] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_lite_0_csid_clk_src: set OPP pair(600000000 Hz: 257 uV) on acc8000.qcom,csid-lite0\n[    0.530065] [    0.530065] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_lite_1_clk_src: set OPP pair(19200000 Hz: 49 uV) on accb000.qcom,vfe-lite1\n[    0.530336] [    0.530336] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_lite_1_clk_src: set OPP pair(600000000 Hz: 257 uV) on accb000.qcom,vfe-lite1\n[    0.530685] [    0.530685] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_lite_1_csid_clk_src: set OPP pair(19200000 Hz: 49 uV) on accf000.qcom,csid-lite1\n[    0.530888] [    0.530888] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_lite_1_csid_clk_src: set OPP pair(600000000 Hz: 257 uV) on accf000.qcom,csid-lite1\n[    0.531484] [    0.531484] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ipe_0_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac87000.qcom,ipe0\n[    0.531757] [    0.531757] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ipe_0_clk_src: set OPP pair(600000000 Hz: 257 uV) on ac87000.qcom,ipe0\n[    0.535775] [    0.535775] (CPU:0-pid:75:wk:deferred_pr)cam_cc-sm8150 ad00000.qcom,camcc: Registered CAM CC clocks\n[    0.536073] [    0.536068] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 590\n[    0.536391] [    0.536386] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 25 clk_dispcc_debugfs\n[    0.536415] [    0.536415] (CPU:0-pid:75:wk:deferred_pr)PLL is already enabled. Skipping configuration.\n[    0.542758] [    0.542758] (CPU:0-pid:75:wk:deferred_pr)disp_cc-sm8150 af00000.qcom,dispcc: Registered Display CC clocks\n[    0.547243] [    0.547243] (CPU:0-pid:75:wk:deferred_pr)npu_cc-sm8150 9910000.qcom,npucc: Registered NPU CC clocks\n[    0.547485] [    0.547480] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 596\n[    0.547794] [    0.547789] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 26 clk_videocc_debugfs\n[    0.548789] [    0.548789] (CPU:0-pid:75:wk:deferred_pr)video_cc-sm8150 ab00000.qcom,videocc: Registered Video CC clocks\n[    0.549104] [    0.549104] (CPU:0-pid:75:wk:deferred_pr)ipa ipa3_smp2p_probe:7802 fail to get smp2p clk resp bit -517\n[    0.550049] [    0.550049] (CPU:0-pid:1:swapper/0)clocksource: Switched to clocksource arch_sys_counter\n[    0.610750] [    0.610750] (CPU:0-pid:1:swapper/0)VFS: Disk quotas dquot_6.6.0\n[    0.610822] [    0.610822] (CPU:0-pid:1:swapper/0)VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.613316] [    0.613316] (CPU:0-pid:1:swapper/0)simple-framebuffer 9c000000.framebuffer: framebuffer at 0x9c000000, 0x2400000 bytes, mapped to 0x        (ptrval)\n[    0.613326] [    0.613326] (CPU:0-pid:1:swapper/0)simple-framebuffer 9c000000.framebuffer: format=a8r8g8b8, mode=1080x2340x32, linelength=4320\n[    0.628967] [    0.628960] (CPU:0-pid:1:swapper/0)Console: switching [    0.628971] (CPU:0-pid:1:swapper/0)to colour frame buffer device 67x73\n[    0.644101] [    0.644101] (CPU:0-pid:1:swapper/0)simple-framebuffer 9c000000.framebuffer: fb0: simplefb registered!\n[    0.644929] [    0.644924] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 589\n[    0.645405] [    0.645400] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 596\n[    0.645712] [    0.645707] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 590\n[    0.646010] [    0.646005] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 27 clk_measure\n[    0.647697] [    0.647697] (CPU:0-pid:1:swapper/0)mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.647708] [    0.647708] (CPU:0-pid:1:swapper/0)mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.647951] [    0.647951] (CPU:0-pid:1:swapper/0)mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.647964] [    0.647964] (CPU:0-pid:1:swapper/0)mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.647976] [    0.647976] (CPU:0-pid:1:swapper/0)mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.647989] [    0.647989] (CPU:0-pid:1:swapper/0)mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.648001] [    0.648001] (CPU:0-pid:1:swapper/0)mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.649379] [    0.649379] (CPU:0-pid:1:swapper/0)dsi_pll_clock_register_7nm: Registered DSI PLL ndx=0, clocks successfully\n[    0.649436] [    0.649436] (CPU:0-pid:1:swapper/0)mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.649446] [    0.649446] (CPU:0-pid:1:swapper/0)mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.649606] [    0.649606] (CPU:0-pid:1:swapper/0)mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.649619] [    0.649619] (CPU:0-pid:1:swapper/0)mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.649631] [    0.649631] (CPU:0-pid:1:swapper/0)mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.649643] [    0.649643] (CPU:0-pid:1:swapper/0)mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.649655] [    0.649655] (CPU:0-pid:1:swapper/0)mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.655628] [    0.655628] (CPU:0-pid:1:swapper/0)dsi_pll_clock_register_7nm: Registered DSI PLL ndx=1, clocks successfully\n[    0.655684] [    0.655684] (CPU:0-pid:1:swapper/0)mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.655697] [    0.655697] (CPU:0-pid:1:swapper/0)mdss_pll_util_parse_dt_supply: no supply entry present\n[    0.665555] [    0.665555] (CPU:0-pid:1:swapper/0)NET: Registered protocol family 2\n[    0.666097] [    0.666097] (CPU:0-pid:1:swapper/0)TCP established hash table entries: 131072 (order: 8, 1048576 bytes)\n[    0.666576] [    0.666576] (CPU:0-pid:1:swapper/0)TCP bind hash table entries: 65536 (order: 9, 2097152 bytes)\n[    0.669508] [    0.669508] (CPU:0-pid:1:swapper/0)TCP: Hash tables configured (established 131072 bind 65536)\n[    0.669688] [    0.669688] (CPU:0-pid:1:swapper/0)UDP hash table entries: 8192 (order: 7, 786432 bytes)\n[    0.670852] [    0.670852] (CPU:0-pid:1:swapper/0)UDP-Lite hash table entries: 8192 (order: 7, 786432 bytes)\n[    0.672188] [    0.672188] (CPU:0-pid:1:swapper/0)NET: Registered protocol family 1\n[    0.672227] [    0.672227] (CPU:0-pid:1:swapper/0)PCI: CLS 0 bytes, default 128\n[    0.672669] [    0.672669] (CPU:0-pid:75:wk:deferred_pr)ipa ipa3_smp2p_probe:7802 fail to get smp2p clk resp bit -517\n[    0.673104] [    0.673104] (CPU:0-pid:1:swapper/0)Trying to unpack rootfs image as initramfs...\n[    1.335632] [    1.335632] (CPU:0-pid:1:swapper/0)Freeing initrd memory: 23664K\n[    1.335667] [    1.335667] (CPU:0-pid:1:swapper/0)[debuginit] initcall populate_rootfs+0x0/0x310 returned 0 after 647317 usecs\n[    1.338422] [    1.338422] (CPU:0-pid:1:swapper/0)hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    1.348893] [    1.348893] (CPU:0-pid:1:swapper/0)audit: initializing netlink subsys (disabled)\n[    1.351302] [    1.351302] (CPU:0-pid:1:swapper/0)Initialise system trusted keyrings\n[    1.351666] [    1.351666] (CPU:0-pid:143:kauditd)audit: type=2000 audit(1.346:1): state=initialized audit_enabled=0 res=1\n[    1.351754] [    1.351754] (CPU:0-pid:1:swapper/0)workingset: timestamp_bits=45 max_order=22 bucket_order=0\n[    1.355904] [    1.355904] (CPU:0-pid:1:swapper/0)Registering sdcardfs 0.1\n[    1.356094] [    1.356094] (CPU:0-pid:1:swapper/0)fuse init (API version 7.26)\n[    1.356732] [    1.356732] (CPU:0-pid:1:swapper/0)SELinux:  Registering netfilter hooks\n[    1.357478] [    1.357478] (CPU:0-pid:1:swapper/0)pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    1.357487] [    1.357487] (CPU:0-pid:1:swapper/0)pfk_f2fs [pfk_f2fs_init]: PFK F2FS inited successfully\n[    1.357501] [    1.357501] (CPU:0-pid:1:swapper/0)pfk [pfk_init]: Driver initialized successfully\n[    1.362729] [    1.362729] (CPU:0-pid:1:swapper/0)Key type asymmetric registered\n[    1.362741] [    1.362741] (CPU:0-pid:1:swapper/0)Asymmetric key parser 'x509' registered\n[    1.362798] [    1.362798] (CPU:0-pid:1:swapper/0)Block layer SCSI generic (bsg) driver version 0.4 loaded (major 241)\n[    1.362811] [    1.362811] (CPU:0-pid:1:swapper/0)io scheduler noop registered\n[    1.362819] [    1.362819] (CPU:0-pid:1:swapper/0)io scheduler deadline registered\n[    1.362875] [    1.362875] (CPU:0-pid:1:swapper/0)io scheduler cfq registered (default)\n[    1.362883] [    1.362883] (CPU:0-pid:1:swapper/0)io scheduler mq-deadline registered\n[    1.362892] [    1.362892] (CPU:0-pid:1:swapper/0)io scheduler kyber registered\n[    1.369718] [    1.369718] (CPU:0-pid:1:swapper/0)Virtual Services transport driver for OKL4 Axons\n[    1.382431] [    1.382431] (CPU:0-pid:1:swapper/0)iommu: Adding device 800000.qcom,gpi-dma to group 7\n[    1.384161] [    1.384161] (CPU:0-pid:1:swapper/0)iommu: Adding device a00000.qcom,gpi-dma to group 8\n[    1.385764] [    1.385764] (CPU:0-pid:1:swapper/0)iommu: Adding device c00000.qcom,gpi-dma to group 9\n[    1.390300] [    1.390300] (CPU:0-pid:1:swapper/0)icnss: Unable to create log context\n[    1.390309] [    1.390309] (CPU:0-pid:1:swapper/0)icnss: Unable to create log long context\n[    1.390813] [    1.390813] (CPU:0-pid:1:swapper/0)iommu: Adding device 18800000.qcom,icnss to group 10\n[    1.391027] [    1.391027] (CPU:0-pid:1:swapper/0)[cnss]: vdd-2.7-wifi-antenna init ok.\n[    1.391037] [    1.391037] (CPU:0-pid:1:swapper/0)icnss: Recursive recovery allowed for WLAN\n[    1.397694] [    1.397694] (CPU:0-pid:1:swapper/0)[cnss]: vdd-2.7-wifi-antenna enabled.\n[    1.397712] [    1.397712] (CPU:0-pid:1:swapper/0)[cnss] gpio_get_value_79 1\n[    1.397722] [    1.397722] (CPU:0-pid:1:swapper/0)[cnss] gpio_get_value_80 1\n[    1.397732] [    1.397732] (CPU:0-pid:1:swapper/0)[cnss] gpio_get_value_64 1\n[    1.397742] [    1.397742] (CPU:0-pid:1:swapper/0)[cnss] gpio_get_value_67 1\n[    1.397783] [    1.397783] (CPU:0-pid:1:swapper/0)[cnss] gpio_get_value_79_end 1\n[    1.397808] [    1.397808] (CPU:0-pid:1:swapper/0)[cnss] gpio_get_value_80_end 0\n[    1.397833] [    1.397833] (CPU:0-pid:1:swapper/0)[cnss] gpio_get_value_64_end 0\n[    1.397857] [    1.397857] (CPU:0-pid:1:swapper/0)[cnss] gpio_get_value_67_end 0\n[    1.398028] [    1.398028] (CPU:0-pid:1:swapper/0)icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    1.398290] [    1.398290] (CPU:0-pid:1:swapper/0)icnss: Platform driver probed successfully\n[    1.400371] [    1.400371] (CPU:0-pid:1:swapper/0)memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    1.400682] [    1.400682] (CPU:0-pid:1:swapper/0)memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    1.408664] [    1.408664] (CPU:0-pid:1:swapper/0)memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    1.409436] [    1.409431] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 125 dest 512\n[    1.410224] [    1.410219] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 28 scm_pas\n[    1.410997] [    1.410997] (CPU:0-pid:1:swapper/0)[subsys-pil]: name:modem\n[    1.411058] [    1.411058] (CPU:0-pid:1:swapper/0)[subsys-pil]: vdd-2.7-antenna init ok.\n[    1.411476] [    1.411476] (CPU:0-pid:1:swapper/0)[subsys-pil]: vdd-2.7-antenna enabled.\n[    1.411593] [    1.411593] (CPU:0-pid:1:swapper/0)minidump-id not found for adsp\n[    1.412364] [    1.412364] (CPU:0-pid:1:swapper/0)minidump-id not found for slpi\n[    1.413043] [    1.413043] (CPU:0-pid:1:swapper/0)minidump-id not found for spss\n[    1.413533] [    1.413533] (CPU:0-pid:1:swapper/0)minidump-id not found for npu\n[    1.413546] [    1.413546] (CPU:0-pid:1:swapper/0)subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    1.413630] [    1.413630] (CPU:0-pid:1:swapper/0)subsys-pil-tz 9800000.qcom,npu: for md_npu segments only will be dumped.\n[    1.414009] [    1.414004] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 154 dest 10070\n[    1.414105] [    1.414100] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 29 pil-cdsp\n[    1.414112] [    1.414112] (CPU:0-pid:1:swapper/0)minidump-id not found for cdsp\n[    1.414870] [    1.414865] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 63 dest 512\n[    1.415204] [    1.415199] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 30 pil-venus\n[    1.415211] [    1.415211] (CPU:0-pid:1:swapper/0)minidump-id not found for venus\n[    1.415651] [    1.415651] (CPU:0-pid:1:swapper/0)minidump-id not found for ipa_fws\n[    1.415665] [    1.415665] (CPU:0-pid:1:swapper/0)subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    1.415745] [    1.415745] (CPU:0-pid:1:swapper/0)subsys-pil-tz soc:qcom,ipa_fws: for md_ipa_fws segments only will be dumped.\n[    1.416153] [    1.416153] (CPU:0-pid:1:swapper/0)minidump-id not found for a640_zap\n[    1.416167] [    1.416167] (CPU:0-pid:1:swapper/0)subsys-pil-tz soc:qcom,kgsl-hyp: for a640_zap segments only will be dumped.\n[    1.416244] [    1.416244] (CPU:0-pid:1:swapper/0)subsys-pil-tz soc:qcom,kgsl-hyp: for md_a640_zap segments only will be dumped.\n[    1.416530] [    1.416530] (CPU:0-pid:1:swapper/0)spcom: spcom_init: spcom driver version 2.1 23-April-2018.\n[    1.418690] [    1.418690] (CPU:0-pid:1:swapper/0)qiib_driver_data_init: unable to create logging context\n[    1.421917] [    1.421917] (CPU:0-pid:1:swapper/0)smp2p_sleepstate soc:qcom,smp2p_sleepstate: got smp2p-sleepstate-in irq 552\n[    1.426813] [    1.426813] (CPU:0-pid:1:swapper/0)msm_geni_serial c8c000.qcom,qup_uart: Wakeup byte 0xfd\n[    1.426881] [    1.426881] (CPU:0-pid:1:swapper/0)msm_geni_serial c8c000.qcom,qup_uart: wakeup_irq 0x220\n[    1.426904] [    1.426904] (CPU:0-pid:1:swapper/0)msm_geni_serial c8c000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    1.426931] [    1.426931] (CPU:0-pid:1:swapper/0)msm_geni_serial c8c000.qcom,qup_uart: Err in Rx IPC Log\n[    1.426940] [    1.426940] (CPU:0-pid:1:swapper/0)msm_geni_serial c8c000.qcom,qup_uart: Err in Tx IPC Log\n[    1.426950] [    1.426950] (CPU:0-pid:1:swapper/0)msm_geni_serial c8c000.qcom,qup_uart: Err in Pwr IPC Log\n[    1.426958] [    1.426958] (CPU:0-pid:1:swapper/0)msm_geni_serial c8c000.qcom,qup_uart: Err in Misc IPC Log\n[    1.427373] [    1.427373] (CPU:0-pid:1:swapper/0)c8c000.qcom,qup_uart: ttyHS0 at MMIO 0xc8c000 (irq = 501, base_baud = 0) is a MSM\n[    1.427626] [    1.427621] (CPU:0-pid:1:swapper/0)msm_geni_serial_init: Driver initialized\n[    1.429441] [    1.429435] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 618\n[    1.429774] [    1.429769] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 31 msm-rng-noc\n[    1.430943] [    1.430943] (CPU:0-pid:211:hwrng)random: crng init done\n[    1.434709] [    1.434709] (CPU:0-pid:1:swapper/0)diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    1.434718] [    1.434718] (CPU:0-pid:1:swapper/0)diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    1.436009] [    1.436009] (CPU:0-pid:217:diag_cntl_wq)CPU0: update max cpu_capacity 363, thermal_cap=1024\n[    1.479535] [    1.479535] (CPU:0-pid:1:swapper/0)diag: Unable to initialize POOL_COPY mempool, itemsize: 0 poolsize: 0\n[    1.479599] [    1.479599] (CPU:0-pid:1:swapper/0)diag: MUX: unable to register pcie operations for proc: 1, err: -22\n[    1.479608] [    1.479608] (CPU:0-pid:1:swapper/0)diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 1, err: -22\n[    1.484047] [    1.484047] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:kgsl_iommu_test_device to group 11\n[    1.484199] [    1.484199] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:kgsl_iommu_coherent_test_device to group 12\n[    1.484318] [    1.484318] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:apps_iommu_test_device to group 13\n[    1.484384] [    1.484384] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:apps_iommu_coherent_test_device to group 14\n[    1.486459] [    1.486459] (CPU:0-pid:1:swapper/0)dsi_phy ae94400.qcom,mdss_dsi_phy0: failed to get memory resource: dyn_refresh_base\n[    1.486674] [    1.486674] (CPU:0-pid:1:swapper/0)msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-0\n[    1.486750] [    1.486750] (CPU:0-pid:1:swapper/0)dsi_phy ae96400.qcom,mdss_dsi_phy0: failed to get memory resource: dyn_refresh_base\n[    1.486853] [    1.486853] (CPU:0-pid:1:swapper/0)msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-1\n[    1.487826] [    1.487826] (CPU:0-pid:1:swapper/0)AXI: get_pdata(): Error: Client name not found\n[    1.487836] [    1.487836] (CPU:0-pid:1:swapper/0)AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    1.487847] [    1.487847] (CPU:0-pid:1:swapper/0)dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-0\n[    1.488068] [    1.488068] (CPU:0-pid:1:swapper/0)AXI: get_pdata(): Error: Client name not found\n[    1.488075] [    1.488075] (CPU:0-pid:1:swapper/0)AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    1.488082] [    1.488082] (CPU:0-pid:1:swapper/0)dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-1\n[    1.489137] [    1.489137] (CPU:0-pid:1:swapper/0)OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    1.489233] [    1.489233] (CPU:0-pid:1:swapper/0)msm-dsi-panel:[dsi_panel_parse_reset_sequence:2067] RESET SEQ LENGTH = 24\n[    1.489281] [    1.489281] (CPU:0-pid:1:swapper/0)msm-dsi-panel:[dsi_panel_parse_misc_features:2117] dsi_panel_parse_misc_features: ulps feature disabled\n[    1.489294] [    1.489289] (CPU:0-pid:1:swapper/0)msm-dsi-panel:[dsi_panel_parse_misc_features:2123] dsi_panel_parse_misc_features: ulps during suspend feature disabled\n[    1.490524] [    1.490524] (CPU:0-pid:1:swapper/0)iommu: Adding device ae00000.qcom,mdss_mdp to group 15\n[    1.495983] [    1.495983] (CPU:0-pid:1:swapper/0)iommu: Adding device 2c6a000.qcom,gmu:gmu_user to group 16\n[    1.496660] [    1.496660] (CPU:0-pid:1:swapper/0)iommu: Adding device 2c6a000.qcom,gmu:gmu_kernel to group 17\n[    1.498473] [    1.498468] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 26 dest 512\n[    1.498800] [    1.498795] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 32 grp3d\n[    1.498827] [    1.498822] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 26 dest 10036\n[    1.499038] [    1.499033] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 33 cnoc\n[    1.499048] [    1.499043] (CPU:0-pid:1:swapper/0)query_client_usecase_all: query_start\n[    1.499105] [    1.499100] (CPU:0-pid:1:swapper/0)query_client_usecase_all: query_start\n[    1.500499] [    1.500499] (CPU:0-pid:1:swapper/0)iommu: Adding device 2ca0000.qcom,kgsl-iommu:gfx3d_user to group 18\n[    1.500694] [    1.500694] (CPU:0-pid:1:swapper/0)iommu: Adding device 2ca0000.qcom,kgsl-iommu:gfx3d_secure to group 19\n[    1.553771] [    1.553771] (CPU:0-pid:1:swapper/0)brd: module loaded\n[    1.564573] [    1.564573] (CPU:0-pid:1:swapper/0)loop: module loaded\n[    1.564845] [    1.564845] (CPU:0-pid:1:swapper/0)zram: Added device: zram0\n[    1.568316] [    1.568316] (CPU:0-pid:1:swapper/0)QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1400000\n[    1.568347] [    1.568342] (CPU:0-pid:1:swapper/0)QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    1.568360] [    1.568355] (CPU:0-pid:1:swapper/0)QSEECOM: qseecom_probe: no-clock-support=0x1\n[    1.568364] [    1.568364] (CPU:0-pid:1:swapper/0)QSEECOM: qseecom_probe: qsee reentrancy support phase is not defined, setting to default 0\n[    1.568441] [    1.568441] (CPU:0-pid:1:swapper/0)QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    1.571714] [    1.571714] (CPU:0-pid:1:swapper/0)iommu: Adding device 1de0000.qcedev to group 20\n[    1.572095] [    1.572090] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 125 dest 512\n[    1.572862] [    1.572857] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 34 qcedev-noc\n[    1.573188] [    1.573188] (CPU:0-pid:1:swapper/0)QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.574148] [    1.574148] (CPU:0-pid:1:swapper/0)qce 1de0000.qcedev: QTI Crypto 5.4.2 device found @0x1de0000\n[    1.574177] [    1.574172] (CPU:0-pid:1:swapper/0)sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000001dc4000\n[    1.574185] [    1.574180] (CPU:0-pid:1:swapper/0)sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000001dc4000\n[    1.574193] [    1.574188] (CPU:0-pid:1:swapper/0)sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000001dc4000\n[    1.574201] [    1.574196] (CPU:0-pid:1:swapper/0)sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000001dc4000\n[    1.574209] [    1.574204] (CPU:0-pid:1:swapper/0)sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000001dc4000\n[    1.574219] [    1.574214] (CPU:0-pid:1:swapper/0)sps:BAM 0x0000000001dc4000 is registered.\n[    1.574353] [    1.574353] (CPU:0-pid:1:swapper/0)sps:BAM 0x0000000001dc4000 (va:0xffffff80164c0000) enabled: ver:0x27, number of pipes:16\n[    1.574554] [    1.574554] (CPU:0-pid:1:swapper/0)QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 118\n[    1.575353] [    1.575353] (CPU:0-pid:1:swapper/0)iommu: Adding device 1de0000.qcedev:qcom_cedev_ns_cb to group 21\n[    1.575948] [    1.575948] (CPU:0-pid:1:swapper/0)qcedev_setup_context_bank Attached 1de0000.qcedev:qcom_cedev_ns_cb and create mapping\n[    1.575957] [    1.575957] (CPU:0-pid:1:swapper/0)qcedev_setup_context_bank Context Bank name:ns_context, is_secure:0, start_addr:0x60000000\n[    1.576174] [    1.576174] (CPU:0-pid:1:swapper/0)iommu: Adding device 1de0000.qcedev:qcom_cedev_s_cb to group 22\n[    1.578018] [    1.578018] (CPU:0-pid:1:swapper/0)qcedev_setup_context_bank Attached 1de0000.qcedev:qcom_cedev_s_cb and create mapping\n[    1.578027] [    1.578027] (CPU:0-pid:1:swapper/0)qcedev_setup_context_bank Context Bank name:secure_context, is_secure:1, start_addr:0xa0000000\n[    1.579885] [    1.579885] (CPU:0-pid:1:swapper/0)iommu: Adding device 1de0000.qcrypto to group 23\n[    1.579973] [    1.579968] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 125 dest 512\n[    1.580489] [    1.580484] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 35 qcrypto-noc\n[    1.580638] [    1.580638] (CPU:0-pid:1:swapper/0)QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.581334] [    1.581334] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: QTI Crypto 5.4.2 device found @0x1de0000\n[    1.581563] [    1.581563] (CPU:0-pid:1:swapper/0)QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 118\n[    1.581920] [    1.581920] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    1.582126] [    1.582126] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    1.582240] [    1.582240] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    1.582354] [    1.582354] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    1.582476] [    1.582476] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    1.582585] [    1.582585] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    1.582694] [    1.582694] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    1.582804] [    1.582804] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    1.582920] [    1.582920] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    1.583036] [    1.583036] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    1.583150] [    1.583150] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    1.583260] [    1.583260] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    1.583464] [    1.583464] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    1.583577] [    1.583577] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    1.583686] [    1.583686] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    1.583797] [    1.583797] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    1.583911] [    1.583911] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    1.584033] [    1.584033] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    1.584148] [    1.584148] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    1.584260] [    1.584260] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    1.586772] [    1.586772] (CPU:0-pid:1:swapper/0)ufshcd-qcom 1d84000.ufshc: no vccq2-voltage-level property.\n[    1.589300] [    1.589300] (CPU:0-pid:1:swapper/0)qcom_ice_get_pdevice: found ice device ffffffece2c85200\n[    1.589308] [    1.589308] (CPU:0-pid:1:swapper/0)qcom_ice_get_pdevice: matching platform device ffffffecee496800\n[    1.590515] [    1.590510] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 123 dest 512\n[    1.590970] [    1.590965] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 757\n[    1.591317] [    1.591311] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 36 ufshc_mem\n[    1.591641] [    1.591641] (CPU:0-pid:1:swapper/0)[UFS] hba->ufs_version : 0x300\n[    1.593308] [    1.593308] (CPU:0-pid:1:swapper/0)scsi host0: ufshcd\n[    1.597974] [    1.597974] (CPU:0-pid:1:swapper/0)qcom_ice 1d90000.ufsice: QC ICE 3.1.79 device found @0xffffff80166d8000\n[    1.604763] [    1.604763] (CPU:0-pid:1:swapper/0)[UFS] ufshcd_add_sysfs_nodes +++\n[    1.604793] [    1.604793] (CPU:0-pid:1:swapper/0)[UFS] ufshcd_add_sysfs_nodes ---\n[    1.605156] [    1.605156] (CPU:0-pid:1:swapper/0)SCSI Media Changer driver v0.25 \n[    1.607647] [    1.607647] (CPU:0-pid:1:swapper/0)spmi_pmic_arb_debug 6b22000.qcom,spmi-debug: SPMI PMIC arbiter debug bus disabled by fuse\n[    1.607884] [    1.607884] (CPU:0-pid:1:swapper/0)Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    1.610335] [    1.610335] (CPU:0-pid:1:swapper/0)libphy: Fixed MDIO Bus: probed\n[    1.610363] [    1.610363] (CPU:0-pid:1:swapper/0)tun: Universal TUN/TAP device driver, 1.6\n[    1.610550] [    1.610550] (CPU:0-pid:1:swapper/0)sky2: driver version 1.30\n[    1.610897] [    1.610897] (CPU:0-pid:1:swapper/0)PPP generic driver version 2.4.2\n[    1.611002] [    1.611002] (CPU:0-pid:1:swapper/0)PPP BSD Compression module registered\n[    1.611011] [    1.611011] (CPU:0-pid:1:swapper/0)PPP Deflate Compression module registered\n[    1.611042] [    1.611042] (CPU:0-pid:1:swapper/0)PPP MPPE Compression module registered\n[    1.611053] [    1.611053] (CPU:0-pid:1:swapper/0)NET: Registered protocol family 24\n[    1.611075] [    1.611075] (CPU:0-pid:1:swapper/0)PPTP driver version 0.8.5\n[    1.611248] [    1.611248] (CPU:0-pid:1:swapper/0)Context not found\n[    1.611343] [    1.611343] (CPU:0-pid:1:swapper/0)CLD80211: Initializing\n[    1.611436] [    1.611436] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver r8152\n[    1.611456] [    1.611456] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver lan78xx\n[    1.611476] [    1.611476] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver asix\n[    1.611496] [    1.611496] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver ax88179_178a\n[    1.611516] [    1.611516] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver cdc_ether\n[    1.611539] [    1.611539] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver net1080\n[    1.611559] [    1.611559] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver cdc_subset\n[    1.611579] [    1.611579] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver zaurus\n[    1.611602] [    1.611602] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver cdc_ncm\n[    1.617229] [    1.617229] (CPU:0-pid:1:swapper/0)msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.618509] [    1.618509] (CPU:0-pid:1:swapper/0)msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    1.618959] [    1.618959] (CPU:0-pid:274:wk:async_run_e)ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.621820] [    1.621820] (CPU:0-pid:1:swapper/0)iommu: Adding device a600000.ssusb to group 24\n[    1.621859] [    1.621859] (CPU:0-pid:1:swapper/0)msm-dwc3 a600000.ssusb: [USB] dwc3_msm_probe, pdev->dev =a600000.ssusb\n[    1.625246] [    1.625246] (CPU:0-pid:1:swapper/0)dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.625638] [    1.625638] (CPU:0-pid:1:swapper/0)dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.627611] [    1.627611] (CPU:0-pid:1:swapper/0)msm-dwc3 a600000.ssusb: unable to get ssphy device\n[    1.630515] [    1.630515] (CPU:0-pid:1:swapper/0)iommu: Adding device a800000.ssusb to group 25\n[    1.630550] [    1.630550] (CPU:0-pid:1:swapper/0)msm-dwc3 a800000.ssusb: [USB] dwc3_msm_probe, pdev->dev =a800000.ssusb\n[    1.633577] [    1.633577] (CPU:0-pid:1:swapper/0)dwc3 a800000.dwc3: changing max_speed on rev 00000000\n[    1.633874] [    1.633874] (CPU:0-pid:1:swapper/0)dwc3 a800000.dwc3: Error getting ipc_log_ctxt\n[    1.635730] [    1.635724] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 101 dest 512\n[    1.636352] [    1.636347] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 101 dest 676\n[    1.636644] [    1.636639] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 751\n[    1.636999] [    1.636994] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 37 usb1\n[    1.637115] [    1.637115] (CPU:0-pid:1:swapper/0)msm-dwc3 a800000.ssusb: get extcon 0 failed\n[    1.641612] [    1.641612] (CPU:0-pid:1:swapper/0)ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    1.641622] [    1.641622] (CPU:0-pid:1:swapper/0)ehci-pci: EHCI PCI platform driver\n[    1.641645] [    1.641645] (CPU:0-pid:1:swapper/0)ehci-platform: EHCI generic platform driver\n[    1.642205] [    1.642205] (CPU:0-pid:1:swapper/0)ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    1.642227] [    1.642227] (CPU:0-pid:1:swapper/0)ohci-pci: OHCI PCI platform driver\n[    1.642251] [    1.642251] (CPU:0-pid:1:swapper/0)ohci-platform: OHCI generic platform driver\n[    1.643729] [    1.643729] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver usb-storage\n[    1.643751] [    1.643751] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver usb_ehset_test\n[    1.643770] [    1.643770] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver lvs\n[    1.645416] [    1.645416] (CPU:0-pid:1:swapper/0)fgsi_init: Err allocating ipc_log_ctxt\n[    1.646606] [    1.646606] (CPU:0-pid:1:swapper/0)qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.647333] [    1.647333] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver xpad\n[    1.647344] [    1.647344] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_i2c_init:2267] GTx5xx HW layer init\n[    1.647367] [    1.647367] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_core_init:3375] Core layer init\n[    1.647376] [    1.647376] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_core_init:3378] initilize goodix module\n[    1.647386] [    1.647386] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_core_init:3385] goodix_debugfs_init\n[    1.647549] [    1.647549] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_fwu_module_init:1619] goodix_fwu_module_init\n[    1.647559] [    1.647559] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_register_ext_module:189] goodix_register_ext_module IN\n[    1.647570] [    1.647570] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_register_ext_module:194] goodix_register_ext_module OUT\n[    1.647580] [    1.647580] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_gsx_gesture_init:1053] gesture module init\n[    1.647589] [    1.647589] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_register_ext_module:189] goodix_register_ext_module IN\n[    1.647597] [    1.647597] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_register_ext_module:194] goodix_register_ext_module OUT\n[    1.647727] [    1.647727] (CPU:0-pid:206:wk:__do_regist)[GTP-INF][__do_register_ext_module:97] __do_register_ext_module IN, goodix_modules.core_exit:1\n[    1.647737] [    1.647737] (CPU:0-pid:206:wk:__do_regist)[GTP-INF][__do_register_ext_module:98] register external module goodix-fwu\n[    1.647780] [    1.647780] (CPU:0-pid:104:wk:__do_regist)[GTP-INF][__do_register_ext_module:97] __do_register_ext_module IN, goodix_modules.core_exit:1\n[    1.647790] [    1.647790] (CPU:0-pid:104:wk:__do_regist)[GTP-INF][__do_register_ext_module:98] register external module Goodix_gsx_gesture\n[    1.648364] [    1.648364] (CPU:0-pid:1:swapper/0)[ASUS_LID] lid_driver_probe : Start !!!\n[    1.648375] [    1.648375] (CPU:0-pid:1:swapper/0)asustek_lid soc:asustek_lid: ASUSTek: lid_driver_probe\n[    1.648388] [    1.648388] (CPU:0-pid:1:swapper/0)[ASUS_LID] lid_driver_probe : set ket capabilities\n[    1.648456] [    1.648456] (CPU:0-pid:1:swapper/0)[ASUS_LID] asustek_lid_pinctrl_configure \n[    1.648567] [    1.648567] (CPU:0-pid:1:swapper/0)input: lid_input as /devices/platform/soc/soc:asustek_lid/input/input1\n[    1.648669] [    1.648669] (CPU:0-pid:1:swapper/0)[ASUS_LID] lid_driver_probe : input register ok\n[    1.648681] [    1.648681] (CPU:0-pid:1:swapper/0)[ASUS_LID] lid_driver_probe : create sysfs ok\n[    1.648688] [    1.648688] (CPU:0-pid:1:swapper/0)[ASUS_LID] asustek_lid_get_devtree \n[    1.648725] [    1.648725] (CPU:0-pid:1:swapper/0)[ASUS_LID] lid_driver_probe : request gpio-irq ok\n[    1.649158] [    1.649158] (CPU:0-pid:1:swapper/0)[ASUS_LID] lid_driver_probe : request irq handler ok\n[    1.649196] [    1.649196] (CPU:0-pid:1:swapper/0)[ASUS_LID] Check status, SW_LID report value = 0\n[    1.649207] [    1.649207] (CPU:0-pid:1:swapper/0)[ASUS_LID] lid_driver_probe : End !!!\n[    1.649616] [    1.649616] (CPU:0-pid:1:swapper/0)[ASUS_LID2] lid2_driver_probe : Start !!!\n[    1.649626] [    1.649626] (CPU:0-pid:1:swapper/0)asustek_lid2 soc:asustek_lid2: ASUSTek: lid2_driver_probe\n[    1.649638] [    1.649638] (CPU:0-pid:1:swapper/0)[ASUS_LID2] lid2_driver_probe : set ket capabilities\n[    1.649698] [    1.649698] (CPU:0-pid:1:swapper/0)[ASUS_LID2] asustek_lid2_pinctrl_configure \n[    1.649780] [    1.649780] (CPU:0-pid:1:swapper/0)input: lid2_input as /devices/platform/soc/soc:asustek_lid2/input/input2\n[    1.649877] [    1.649877] (CPU:0-pid:1:swapper/0)[ASUS_LID2] lid2_driver_probe : input register ok\n[    1.649889] [    1.649889] (CPU:0-pid:1:swapper/0)[ASUS_LID2] lid2_driver_probe : create sysfs ok\n[    1.649897] [    1.649897] (CPU:0-pid:1:swapper/0)[ASUS_LID2] asustek_lid2_get_devtree \n[    1.649916] [    1.649916] (CPU:0-pid:1:swapper/0)[ASUS_LID2] lid2_driver_probe : request gpio-irq ok\n[    1.650190] [    1.650190] (CPU:0-pid:1:swapper/0)[ASUS_LID2] lid2_driver_probe : request irq handler ok\n[    1.650219] [    1.650219] (CPU:0-pid:1:swapper/0)[ASUS_LID2] Check status, SW_CAMERA_LENS_COVER report value = 0\n[    1.650227] [    1.650227] (CPU:0-pid:1:swapper/0)[ASUS_LID2] lid2_driver_probe : End !!!\n[    1.651143] [    1.651143] (CPU:0-pid:1:swapper/0)qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm8150@0:qcom,pm8150_rtc: rtc core: registered qpnp_rtc as rtc0\n[    1.651481] [    1.651481] (CPU:0-pid:1:swapper/0)i2c /dev entries driver\n[    1.652084] [    1.652084] (CPU:0-pid:1:swapper/0)i2c_geni 884000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.653098] [    1.653098] (CPU:0-pid:1:swapper/0)i2c_geni 890000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.654059] [    1.654059] (CPU:0-pid:1:swapper/0)i2c_geni 890000.i2c: i2c error :-107\n[    1.654202] [    1.654202] (CPU:0-pid:1:swapper/0)i2c_geni 890000.i2c: i2c error :-107\n[    1.654375] [    1.654375] (CPU:0-pid:1:swapper/0)i2c_geni 890000.i2c: i2c error :-107\n[    1.654514] [    1.654514] (CPU:0-pid:1:swapper/0)i2c_geni 890000.i2c: i2c error :-107\n[    1.654524] [    1.654524] (CPU:0-pid:1:swapper/0)I2C PMIC: i2c_pmic_read: i2c_pmic_read failed for 3 retries, rc = -107\n[    1.654533] [    1.654533] (CPU:0-pid:1:swapper/0)I2C PMIC: i2c_pmic_determine_initial_status: Couldn't read irq data rc=-107\n[    1.654542] [    1.654542] (CPU:0-pid:1:swapper/0)I2C PMIC: i2c_pmic_probe: Couldn't determine initial status rc=-107\n[    1.654625] [    1.654625] (CPU:0-pid:1:swapper/0)i2c_pmic: probe of 0-0010 failed with error -107\n[    1.654889] [    1.654889] (CPU:0-pid:1:swapper/0)i2c_geni 890000.i2c: i2c error :-107\n[    1.655029] [    1.655029] (CPU:0-pid:1:swapper/0)i2c_geni 890000.i2c: i2c error :-107\n[    1.655167] [    1.655167] (CPU:0-pid:1:swapper/0)i2c_geni 890000.i2c: i2c error :-107\n[    1.655339] [    1.655339] (CPU:0-pid:1:swapper/0)i2c_geni 890000.i2c: i2c error :-107\n[    1.655347] [    1.655347] (CPU:0-pid:1:swapper/0)I2C PMIC: i2c_pmic_read: i2c_pmic_read failed for 3 retries, rc = -107\n[    1.655355] [    1.655355] (CPU:0-pid:1:swapper/0)I2C PMIC: i2c_pmic_determine_initial_status: Couldn't read irq data rc=-107\n[    1.655362] [    1.655362] (CPU:0-pid:1:swapper/0)I2C PMIC: i2c_pmic_probe: Couldn't determine initial status rc=-107\n[    1.655403] [    1.655403] (CPU:0-pid:1:swapper/0)i2c_pmic: probe of 0-000c failed with error -107\n[    1.655778] [    1.655778] (CPU:0-pid:1:swapper/0)i2c_geni 89c000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.656629] [    1.656629] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_i2c_probe:2152] goodix_i2c_probe IN\n[    1.656644] [    1.656644] (CPU:0-pid:1:swapper/0)[GTP-ERR][goodix_parse_dt:159] Invalid reset-gpio in dt: -2\n[    1.656655] [    1.656655] (CPU:0-pid:1:swapper/0)goodix_i2c: probe of 2-005d failed with error -22\n[    1.658044] [    1.658044] (CPU:0-pid:1:swapper/0)i2c_geni a84000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.658894] [    1.658894] (CPU:0-pid:1:swapper/0)i2c_geni a88000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.659336] [    1.659336] (CPU:0-pid:262:wk:async_run_e)nq-nci 2-0028: ese GPIO <OPTIONAL> error getting from OF node\n[    1.659394] [    1.659394] (CPU:0-pid:262:wk:async_run_e)nq-nci 2-0028: nqx_probe: ese gpio not provided\n[    1.661161] [    1.661161] (CPU:0-pid:1:swapper/0)i2c_geni c80000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.661841] [    1.661841] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_i2c_probe:2152] goodix_i2c_probe IN\n[    1.661853] [    1.661853] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_parse_dt:162] Parse reset-gpio[135] from dt\n[    1.661863] [    1.661863] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_parse_dt:171] Parse irq-gpio[122] from dt\n[    1.661887] [    1.661887] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_parse_dt:255] ***key:158, 172, 217, 331, 332\n[    1.661895] [    1.661895] (CPU:0-pid:1:swapper/0)[GTP-DBG][goodix_parse_dt:264] [DT]id:10, x:1080, y:2340, w:512, p:512\n[    1.662077] [    1.662077] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_probe:3222] goodix_ts_probe IN\n[    1.662091] [    1.662091] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_power_init:2226] Power init\n[    1.662151] [    1.662151] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_power_on:2258] Device power on\n[    1.662170] [    1.662170] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_power_on:2265] regulator enable SUCCESS\n[    1.693287] [    1.693287] (CPU:0-pid:262:wk:async_run_e)nq-nci 2-0028: nfcc_hw_check: - NFCC HW not Supported\n[    1.693317] [    1.693317] (CPU:0-pid:262:wk:async_run_e)nq-nci 2-0028: nqx_probe: probing NFCC NQxxx exited successfully\n[    1.725225] [    1.725225] (CPU:0-pid:274:wk:async_run_e)qcom_ice 1d90000.ufsice: QC ICE 3.1.79 device found @0xffffff80166d8000\n[    1.743513] [    1.743513] (CPU:0-pid:274:wk:async_run_e)ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.800757] [    1.800757] (CPU:0-pid:274:wk:async_run_e)ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[4, 4], lane[2, 2], pwr[FAST MODE, FAST MODE], rate = 1\n[    1.801176] [    1.801176] (CPU:0-pid:274:wk:async_run_e)scsi 0:0:0:49488: Well-known LUN    SAMSUNG  KLUFG8RHDA-B2D1  0100 PQ: 0 ANSI: 6\n[    1.801864] [    1.801864] (CPU:0-pid:274:wk:async_run_e)scsi 0:0:0:49456: Well-known LUN    SAMSUNG  KLUFG8RHDA-B2D1  0100 PQ: 0 ANSI: 6\n[    1.802494] [    1.802494] (CPU:0-pid:274:wk:async_run_e)scsi 0:0:0:49476: Well-known LUN    SAMSUNG  KLUFG8RHDA-B2D1  0100 PQ: 0 ANSI: 6\n[    1.806321] [    1.806321] (CPU:0-pid:274:wk:async_run_e)scsi 0:0:0:0: Direct-Access     SAMSUNG  KLUFG8RHDA-B2D1  0100 PQ: 0 ANSI: 6\n[    1.806791] [    1.806791] (CPU:0-pid:274:wk:async_run_e)scsi 0:0:0:1: Direct-Access     SAMSUNG  KLUFG8RHDA-B2D1  0100 PQ: 0 ANSI: 6\n[    1.807176] [    1.807176] (CPU:0-pid:274:wk:async_run_e)scsi 0:0:0:2: Direct-Access     SAMSUNG  KLUFG8RHDA-B2D1  0100 PQ: 0 ANSI: 6\n[    1.807545] [    1.807545] (CPU:0-pid:274:wk:async_run_e)scsi 0:0:0:3: Direct-Access     SAMSUNG  KLUFG8RHDA-B2D1  0100 PQ: 0 ANSI: 6\n[    1.807911] [    1.807911] (CPU:0-pid:274:wk:async_run_e)scsi 0:0:0:4: Direct-Access     SAMSUNG  KLUFG8RHDA-B2D1  0100 PQ: 0 ANSI: 6\n[    1.808291] [    1.808291] (CPU:0-pid:274:wk:async_run_e)scsi 0:0:0:5: Direct-Access     SAMSUNG  KLUFG8RHDA-B2D1  0100 PQ: 0 ANSI: 6\n[    1.808674] [    1.808674] (CPU:0-pid:274:wk:async_run_e)scsi 0:0:0:6: Direct-Access     SAMSUNG  KLUFG8RHDA-B2D1  0100 PQ: 0 ANSI: 6\n[    1.811474] [    1.811474] (CPU:0-pid:274:wk:async_run_e)sd 0:0:0:1: [sdb] Write Protect is off\n[    1.811485] [    1.811485] (CPU:0-pid:274:wk:async_run_e)sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.811612] [    1.811612] (CPU:0-pid:326:wk:async_run_e)sd 0:0:0:0: [sda] Write Protect is off\n[    1.811643] [    1.811643] (CPU:0-pid:326:wk:async_run_e)sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.811672] [    1.811672] (CPU:0-pid:274:wk:async_run_e)sd 0:0:0:1: [sdb] Optimal transfer size 524288 bytes\n[    1.812555] [    1.812555] (CPU:0-pid:262:wk:async_run_e)sd 0:0:0:2: [sdc] Write Protect is off\n[    1.812586] [    1.812586] (CPU:0-pid:262:wk:async_run_e)sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.814929] [    1.814929] (CPU:0-pid:262:wk:async_run_e)sd 0:0:0:2: [sdc] Optimal transfer size 524288 bytes\n[    1.815253] [    1.815253] (CPU:0-pid:326:wk:async_run_e)sd 0:0:0:0: [sda] Optimal transfer size 524288 bytes\n[    1.816147] [    1.816147] (CPU:0-pid:274:wk:async_run_e) sdb: sdb1 sdb2\n[    1.817104] [    1.817104] (CPU:0-pid:328:wk:async_run_e)sd 0:0:0:4: [sde] Write Protect is off\n[    1.817113] [    1.817113] (CPU:0-pid:328:wk:async_run_e)sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    1.817245] [    1.817245] (CPU:0-pid:327:wk:async_run_e)sd 0:0:0:3: [sdd] Write Protect is off\n[    1.817278] [    1.817278] (CPU:0-pid:327:wk:async_run_e)sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.817862] [    1.817862] (CPU:0-pid:328:wk:async_run_e)sd 0:0:0:4: [sde] Optimal transfer size 524288 bytes\n[    1.818187] [    1.818187] (CPU:0-pid:327:wk:async_run_e)sd 0:0:0:3: [sdd] Optimal transfer size 524288 bytes\n[    1.819550] [    1.819550] (CPU:0-pid:326:wk:async_run_e) sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21 sda22 sda23 sda24 sda25 sda26 sda27 sda28\n[    1.820613] [    1.820613] (CPU:0-pid:329:wk:async_run_e)sd 0:0:0:5: [sdf] Write Protect is off\n[    1.820622] [    1.820622] (CPU:0-pid:329:wk:async_run_e)sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    1.820745] [    1.820745] (CPU:0-pid:262:wk:async_run_e) sdc: sdc1 sdc2\n[    1.821284] [    1.821284] (CPU:0-pid:329:wk:async_run_e)sd 0:0:0:5: [sdf] Optimal transfer size 524288 bytes\n[    1.823061] [    1.823061] (CPU:0-pid:327:wk:async_run_e) sdd: sdd1 sdd2 sdd3\n[    1.823319] [    1.823319] (CPU:0-pid:328:wk:async_run_e) sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51 sde52 sde53 sde54 sde55 sde56 sde57 sde58 sde59 sde60 sde61\n[    1.825687] [    1.825687] (CPU:0-pid:329:wk:async_run_e) sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6\n[    1.834790] [    1.834790] (CPU:0-pid:330:wk:async_run_e)sd 0:0:0:6: [sdg] Write Protect is off\n[    1.834821] [    1.834821] (CPU:0-pid:330:wk:async_run_e)sd 0:0:0:6: [sdg] Mode Sense: 00 32 00 10\n[    1.835015] [    1.835015] (CPU:0-pid:330:wk:async_run_e)sd 0:0:0:6: [sdg] Optimal transfer size 524288 bytes\n[    1.836836] [    1.836836] (CPU:0-pid:330:wk:async_run_e) sdg: sdg1 sdg2 sdg3 sdg4 sdg5 sdg6\n[    1.962200] [    1.962200] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_pinctrl_init:2320] goodix_ts_pinctrl_init start\n[    1.962374] [    1.962374] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_pinctrl_init:2348] goodix_ts_pinctrl_init complete\n[    1.962427] [    1.962427] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_gpio_setup:2375] GPIO setup,reset-gpio:135, irq-gpio:122\n[    1.962439] [    1.962439] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_gpio_setup:2376] before setup gpio reset = 0\n[    1.962478] [    1.962478] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_gpio_setup:2399] reset touch ic for init\n[    2.073380] [    2.073380] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_gpio_setup:2405] gpio reset = 1\n[    2.073390] [    2.073390] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_gpio_setup:2406] gpio irq = 0\n[    2.073453] [    2.073453] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_hw_reset:1524] HW reset start\n[    2.073462] [    2.073462] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_hw_reset:1570] reg.esd is NULL, skip dynamic esd init\n[    2.073471] [    2.073471] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_hw_reset:1572] HW reset complete\n[    2.073747] [    2.073747] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_probe:3279] i2c test SUCCESS\n[    2.073821] [    2.073821] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_probe:3289] ***start cfg_bin_proc SUCCESS\n[    2.073908] [    2.073908] (CPU:0-pid:334:goodix-parse_cf)[GTP-INF][goodix_read_cfg_bin:493] cfg_bin_name:goodix_cfg_group.bin\n[    2.076276] [    2.076276] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_probe:3335] goodix_ts_probe OUT, r:0\n[    2.076303] [    2.076303] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_i2c_probe:2218] goodix_i2c_probe OUT\n[    2.076775] [    2.076775] (CPU:0-pid:1:swapper/0)i2c_geni c84000.i2c: Bus frequency not specified, default to 400KHz.\n[    2.077411] [    2.077411] (CPU:0-pid:1:swapper/0)rt1711_i2c_probe\n[    2.077419] [    2.077419] (CPU:0-pid:1:swapper/0)I2C functionality : OK...\n[    2.080382] [    2.080382] (CPU:0-pid:1:swapper/0)0\n[    2.080390] [    2.080390] (CPU:0-pid:1:swapper/0)pr_info : t2-t1 = 7\n[    2.080396] [    2.080396] (CPU:0-pid:1:swapper/0)1\n[    2.080403] [    2.080403] (CPU:0-pid:1:swapper/0)pr_info : t2-t1 = 6\n[    2.080409] [    2.080409] (CPU:0-pid:1:swapper/0)2\n[    2.080415] [    2.080415] (CPU:0-pid:1:swapper/0)pr_info : t2-t1 = 5\n[    2.080421] [    2.080421] (CPU:0-pid:1:swapper/0)3\n[    2.080426] [    2.080426] (CPU:0-pid:1:swapper/0)pr_info : t2-t1 = 5\n[    2.080432] [    2.080432] (CPU:0-pid:1:swapper/0)4\n[    2.080438] [    2.080438] (CPU:0-pid:1:swapper/0)pr_info : t2-t1 = 5\n[    2.080444] [    2.080444] (CPU:0-pid:1:swapper/0)5\n[    2.080450] [    2.080450] (CPU:0-pid:1:swapper/0)pr_info : t2-t1 = 5\n[    2.080455] [    2.080455] (CPU:0-pid:1:swapper/0)6\n[    2.080461] [    2.080461] (CPU:0-pid:1:swapper/0)pr_info : t2-t1 = 5\n[    2.080467] [    2.080467] (CPU:0-pid:1:swapper/0)7\n[    2.080473] [    2.080473] (CPU:0-pid:1:swapper/0)pr_info : t2-t1 = 5\n[    2.080478] [    2.080478] (CPU:0-pid:1:swapper/0)8\n[    2.080484] [    2.080484] (CPU:0-pid:1:swapper/0)pr_info : t2-t1 = 5\n[    2.080490] [    2.080490] (CPU:0-pid:1:swapper/0)9\n[    2.080496] [    2.080496] (CPU:0-pid:1:swapper/0)pr_info : t2-t1 = 5\n[    2.080502] [    2.080502] (CPU:0-pid:1:swapper/0)rt_parse_dt\n[    2.080514] [    2.080514] (CPU:0-pid:1:swapper/0)[Bottom_PD] rt_parse_dt g_ASUS_hwID is 7, g_ASUS_prjID is 3\n[    2.080523] [    2.080523] (CPU:0-pid:1:swapper/0)rt1711h_chipID = 0x2173\n[    2.080532] [    2.080532] (CPU:0-pid:1:swapper/0)regmap_device_register: name = rt1711-4e\n[    2.080568] [    2.080568] (CPU:0-pid:1:swapper/0) rt_regmap_rt1711-4e: rt register cache data init\n[    2.080580] [    2.080580] (CPU:0-pid:1:swapper/0) rt_regmap_rt1711-4e: cache cata init successfully\n[    2.080681] [    2.080681] (CPU:0-pid:1:swapper/0)tcpc_device_register register tcpc device (type_c_port0)\n[    2.080761] [    2.080761] (CPU:0-pid:1:swapper/0)PD Timer number = 59\n[    2.080796] [    2.080796] (CPU:0-pid:91:pd_dbg_info)///PD dbg info 481d\n[    2.080810] [    2.080804] (CPU:0-pid:91:pd_dbg_info)<    2.080>0\n               <    2.080>pd_dbg_info : t2-t1 = 21\n               <    2.080>1\n               <    2.080>pd_dbg_info : t2-t1 = 0\n               <    2.080>2\n               <    2.080>pd_dbg_\n[    2.080817] [    2.080812] (CPU:0-pid:91:pd_dbg_info)info : t2-t1 = 0\n               <    2.080>3\n               <    2.080>pd_dbg_info : t2-t1 = 0\n               <    2.080>4\n               <    2.080>pd_dbg_info : t2-t1 = 0\n               <    2.080>5\n               < \n[    2.080824] [    2.080819] (CPU:0-pid:91:pd_dbg_info)   2.080>pd_dbg_info : t2-t1 = 0\n               <    2.080>6\n               <    2.080>pd_dbg_info : t2-t1 = 0\n               <    2.080>7\n               <    2.080>pd_dbg_info : t2-t1 = 0\n[    2.080826] [    2.080826] (CPU:0-pid:91:pd_dbg_info)\n               <    2.080>8\n               <    2.080>pd_dbg_info : t2-t1 = 0\n               <    2.080>9\n               <    2.080>pd_dbg_info : t2-t1 = 0\n[    2.080909] [    2.080909] (CPU:0-pid:1:swapper/0)tcpci_timer_init : init OK\n[    2.080918] [    2.080918] (CPU:0-pid:1:swapper/0)pd_parse_pdata\n[    2.084360] [    2.084360] (CPU:0-pid:1:swapper/0)pd_parse_pdata src pdo data =\n[    2.084368] [    2.084368] (CPU:0-pid:1:swapper/0)pd_parse_pdata 0: 0x00019032\n[    2.084378] [    2.084378] (CPU:0-pid:1:swapper/0)pd_parse_pdata snk pdo data =\n[    2.084386] [    2.084386] (CPU:0-pid:1:swapper/0)pd_parse_pdata 0: 0x0001912c\n[    2.084394] [    2.084394] (CPU:0-pid:1:swapper/0)pd_parse_pdata 1: 0x0002d0a5\n[    2.084403] [    2.084403] (CPU:0-pid:1:swapper/0)pd_parse_pdata id vdos data =\n[    2.084410] [    2.084410] (CPU:0-pid:1:swapper/0)pd_parse_pdata 0: 0xd00029cf\n[    2.084416] [    2.084416] (CPU:0-pid:1:swapper/0)pd_parse_pdata 1: 0x00000000\n[    2.084422] [    2.084422] (CPU:0-pid:1:swapper/0)pd_parse_pdata 2: 0x00010000\n[    2.084430] [    2.084430] (CPU:0-pid:1:swapper/0)pd_parse_pdata charging_policy = 34\n[    2.084437] [    2.084437] (CPU:0-pid:1:swapper/0)pd_parse_pdata_bats Battery NR = 1\n[    2.084452] [    2.084452] (CPU:0-pid:1:swapper/0)pd_parse_pdata_bats fix_bat_info[0].mfrs_info.vid = 0x29cf, .mfrs_info.pid = 0x1711, .mfrs_string = bat1, .bat_design_cap = 3000\n[    2.084461] [    2.084461] (CPU:0-pid:1:swapper/0)pd_parse_pdata_countries Country NR = 0\n[    2.084471] [    2.084471] (CPU:0-pid:1:swapper/0)pd_parse_log_src_cap_ext vid = 0x29cf, pid = 0x1711, xid = 0x0, fw_ver = 0x2, hw_ver = 0x1\n[    2.084481] [    2.084481] (CPU:0-pid:1:swapper/0)pd_parse_log_src_cap_ext voltage_regulation = 0, hold_time_ms = 0, compliance = 0x0, touch_current = 0x0, peak_current = 0 0 0\n[    2.084489] [    2.084489] (CPU:0-pid:1:swapper/0)pd_parse_log_src_cap_ext touch_temp = 0, source_inputs = 0x0, batteries = 0x0, source_pdp = 0x2\n[    2.084498] [    2.084498] (CPU:0-pid:1:swapper/0)pd_parse_pdata_mfrs VID = 0x29cf, PID = 0x5081\n[    2.084507] [    2.084507] (CPU:0-pid:1:swapper/0)pd_parse_pdata_mfrs PD mfrs_string = RichtekTCPC\n[    2.084785] [    2.084785] (CPU:0-pid:1:swapper/0)dpm_caps: local_dr_power\n[    2.084794] [    2.084794] (CPU:0-pid:1:swapper/0)dpm_caps: local_dr_data\n[    2.084804] [    2.084804] (CPU:0-pid:1:swapper/0)dpm_caps: local_ext_power\n[    2.084811] [    2.084811] (CPU:0-pid:1:swapper/0)dpm_caps: local_usb_comm\n[    2.084819] [    2.084819] (CPU:0-pid:1:swapper/0)dpm_caps: local_usb_suspend\n[    2.084826] [    2.084826] (CPU:0-pid:1:swapper/0)dpm_caps: local_high_cap\n[    2.084833] [    2.084833] (CPU:0-pid:1:swapper/0)dpm_caps: local_give_back\n[    2.084841] [    2.084841] (CPU:0-pid:1:swapper/0)dpm_caps: local_no_suspend\n[    2.084848] [    2.084848] (CPU:0-pid:1:swapper/0)dpm_caps: local_vconn_supply\n[    2.084855] [    2.084855] (CPU:0-pid:1:swapper/0)dpm_caps: attemp_discover_cable_dfp\n[    2.084862] [    2.084862] (CPU:0-pid:1:swapper/0)dpm_caps: attemp_enter_dp_mode\n[    2.084870] [    2.084870] (CPU:0-pid:1:swapper/0)dpm_caps: attemp_discover_cable\n[    2.084877] [    2.084877] (CPU:0-pid:1:swapper/0)dpm_caps: attemp_discover_id\n[    2.084883] [    2.084883] (CPU:0-pid:1:swapper/0)dpm_caps: pr_reject_as_source\n[    2.084889] [    2.084889] (CPU:0-pid:1:swapper/0)dpm_caps: pr_reject_as_sink\n[    2.084895] [    2.084895] (CPU:0-pid:1:swapper/0)dpm_caps: pr_check_gp_source\n[    2.084901] [    2.084901] (CPU:0-pid:1:swapper/0)dpm_caps: pr_check_gp_sink\n[    2.084907] [    2.084907] (CPU:0-pid:1:swapper/0)dpm_caps: dr_reject_as_dfp\n[    2.084913] [    2.084913] (CPU:0-pid:1:swapper/0)dpm_caps: dr_reject_as_ufp\n[    2.084921] [    2.084921] (CPU:0-pid:1:swapper/0)dpm_caps = 0x0010a18b\n[    2.085115] [    2.085115] (CPU:0-pid:1:swapper/0)dp, svid\n[    2.085122] [    2.085122] (CPU:0-pid:1:swapper/0)dp, ufp_np\n[    2.085130] [    2.085130] (CPU:0-pid:1:swapper/0)dp, dfp_np\n[    2.085145] [    2.085145] (CPU:0-pid:1:swapper/0)dp, 1st_connection\n[    2.085154] [    2.085154] (CPU:0-pid:1:swapper/0)dp, 2nd_connection\n[    2.085950] [    2.085950] (CPU:0-pid:1:swapper/0)usb_type_c 7-004e: PD_REV30\n[    2.086298] [    2.086298] (CPU:0-pid:1:swapper/0)rt1711_init_alert name = type_c_port0, gpio = 103\n[    2.086321] [    2.086321] (CPU:0-pid:1:swapper/0)rt1711_init_alert : IRQ number = 276\n[    2.086411] [    2.086411] (CPU:0-pid:1:swapper/0)IRQF_NO_THREAD Test\n[    2.086866] [    2.086866] (CPU:0-pid:1:swapper/0)rt1711_init_alert: Set rt1711 pinctrl state\n[    2.086964] [    2.086964] (CPU:0-pid:1:swapper/0)rt1711_init_alert: Set rt1711 pinctrl state over\n[    2.086989] [    2.086989] (CPU:0-pid:1:swapper/0)rt1711_i2c_probe probe OK!\n[    2.088456] [    2.088456] (CPU:0-pid:1:swapper/0)[debuginit] initcall geni_i2c_driver_init+0x0/0x20 returned 0 after 426701 usecs\n[    2.088627] [    2.088627] (CPU:0-pid:1:swapper/0)IR NEC protocol handler initialized\n[    2.088636] [    2.088636] (CPU:0-pid:1:swapper/0)IR RC5(x/sz) protocol handler initialized\n[    2.088645] [    2.088645] (CPU:0-pid:1:swapper/0)IR RC6 protocol handler initialized\n[    2.088653] [    2.088653] (CPU:0-pid:1:swapper/0)IR JVC protocol handler initialized\n[    2.088661] [    2.088661] (CPU:0-pid:1:swapper/0)IR Sony protocol handler initialized\n[    2.088669] [    2.088669] (CPU:0-pid:1:swapper/0)IR SANYO protocol handler initialized\n[    2.088675] [    2.088675] (CPU:0-pid:1:swapper/0)IR Sharp protocol handler initialized\n[    2.088682] [    2.088682] (CPU:0-pid:1:swapper/0)IR MCE Keyboard/mouse protocol handler initialized\n[    2.088689] [    2.088689] (CPU:0-pid:1:swapper/0)IR XMP protocol handler initialized\n[    2.090824] [    2.090824] (CPU:0-pid:1:swapper/0)iommu: Adding device 9800000.qcom,msm_npu to group 26\n[    2.090917] [    2.090917] (CPU:0-pid:1:swapper/0)msm_npu: unable to get qfprom_physical resource\n[    2.100386] [    2.100386] (CPU:0-pid:1:swapper/0)iommu: Adding device aa00000.qcom,vidc:non_secure_cb to group 27\n[    2.101078] [    2.101078] (CPU:0-pid:1:swapper/0)iommu: Adding device aa00000.qcom,vidc:secure_non_pixel_cb to group 28\n[    2.103578] [    2.103578] (CPU:0-pid:1:swapper/0)iommu: Adding device aa00000.qcom,vidc:secure_bitstream_cb to group 29\n[    2.104606] [    2.104606] (CPU:0-pid:91:pd_dbg_info)///PD dbg info 33d\n[    2.104614] [    2.104614] (CPU:0-pid:91:pd_dbg_info)<    2.085>TCPC-PE:pd_core_init\n[    2.105114] [    2.105114] (CPU:0-pid:1:swapper/0)iommu: Adding device aa00000.qcom,vidc:secure_pixel_cb to group 30\n[    2.106436] [    2.106436] (CPU:0-pid:1:swapper/0)platform aa00000.qcom,vidc:qcom,msm-vidc,mem_cdsp: assigned reserved memory node cdsp_region\n[    2.108970] [    2.108970] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 31\n[    2.109219] [    2.109219] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 32\n[    2.109292] [    2.109292] (CPU:0-pid:1:swapper/0)platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node camera_region\n[    2.109657] [    2.109657] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 33\n[    2.109899] [    2.109899] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 34\n[    2.110318] [    2.110318] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_fd to group 35\n[    2.110549] [    2.110549] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 36\n[    2.112887] [    2.112882] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 589\n[    2.113507] [    2.113501] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 37 cam_ahb\n[    2.113737] [    2.113732] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 136 dest 512\n[    2.114052] [    2.114047] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 38 cam_hf_1_mnoc\n[    2.114210] [    2.114205] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 146 dest 778\n[    2.114286] [    2.114281] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 39 cam_hf_1_camnoc\n[    2.114406] [    2.114401] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 145 dest 512\n[    2.114698] [    2.114693] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 40 cam_hf_2_mnoc\n[    2.114835] [    2.114830] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 147 dest 778\n[    2.114906] [    2.114901] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 41 cam_hf_2_camnoc\n[    2.115028] [    2.115023] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 137 dest 512\n[    2.115346] [    2.115341] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 42 cam_sf_1_mnoc\n[    2.115480] [    2.115475] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 148 dest 778\n[    2.115552] [    2.115548] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 43 cam_sf_1_camnoc\n[    2.122086] [    2.122086] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[17][cpas-cdm][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    2.126292] [    2.126292] (CPU:0-pid:1:swapper/0)CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 887 Invalid mux type: 0\n[    2.126357] [    2.126357] (CPU:0-pid:1:swapper/0)CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1082 Inval_prms soc_info:ffffffece20b70b8 hw_intf:ffffffece27d1700 hw_info0000000000000000\n[    2.126367] [    2.126367] (CPU:0-pid:1:swapper/0)CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1083 controller: ffffffece20a8600\n[    2.126379] [    2.126379] (CPU:0-pid:1:swapper/0)CAM_ERR: CAM-ISP: cam_vfe_core_init: 864 Error! RD cam_vfe_bus_init failed\n[    2.126530] [    2.126530] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[10][ife][0] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    2.129139] [    2.129139] (CPU:0-pid:1:swapper/0)CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 887 Invalid mux type: 0\n[    2.129192] [    2.129192] (CPU:0-pid:1:swapper/0)CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1082 Inval_prms soc_info:ffffffece20b60b8 hw_intf:ffffffece27d4300 hw_info0000000000000000\n[    2.129200] [    2.129200] (CPU:0-pid:1:swapper/0)CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1083 controller: ffffffece20a8d00\n[    2.129208] [    2.129208] (CPU:0-pid:1:swapper/0)CAM_ERR: CAM-ISP: cam_vfe_core_init: 864 Error! RD cam_vfe_bus_init failed\n[    2.129353] [    2.129353] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[11][ife][1] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    2.131717] [    2.131717] (CPU:0-pid:1:swapper/0)CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 525 No clk named ife_dsp_clk found. Dev vfe2\n[    2.131726] [    2.131726] (CPU:0-pid:1:swapper/0)CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 109 Option clk get failed with rc -14\n[    2.131887] [    2.131887] (CPU:0-pid:1:swapper/0)CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 887 Invalid mux type: 0\n[    2.131895] [    2.131895] (CPU:0-pid:1:swapper/0)CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 887 Invalid mux type: 0\n[    2.132052] [    2.132052] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[12][ife][2] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    2.133844] [    2.133844] (CPU:0-pid:1:swapper/0)CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 525 No clk named ife_dsp_clk found. Dev vfe3\n[    2.133852] [    2.133852] (CPU:0-pid:1:swapper/0)CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 109 Option clk get failed with rc -14\n[    2.133965] [    2.133965] (CPU:0-pid:1:swapper/0)CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 887 Invalid mux type: 0\n[    2.133973] [    2.133973] (CPU:0-pid:1:swapper/0)CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 887 Invalid mux type: 0\n[    2.134108] [    2.134108] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[13][ife][3] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    2.137203] [    2.137203] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-ISP: cam_isp_dev_probe: 171 Camera ISP probe complete\n[    2.139894] [    2.139894] (CPU:0-pid:1:swapper/0)OF: /soc/qcom,cci@ac4a000: could not find phandle\n[    2.140901] [    2.140901] (CPU:0-pid:1:swapper/0)CAM_ERR: CAM: cam_res_mgr_parse_dt: 664 gpio 166 vcm_en \tpinctrl_select_state rc =0\n[    2.140910] [    2.140910] (CPU:0-pid:1:swapper/0)CAM_ERR: CAM: cam_res_mgr_parse_dt: 672 Failed to get the active state pinctrl handle\n[    2.140918] [    2.140918] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM: cam_res_mgr_probe: 696 Disable shared gpio support.\n[    2.144396] [    2.144396] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-CCI: cam_cci_platform_probe: 429 Device Type :0\n[    2.145058] [    2.145058] (CPU:0-pid:1:swapper/0)OF: /soc/qcom,cci@ac4b000: could not find phandle\n[    2.147630] [    2.147630] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-CCI: cam_cci_platform_probe: 429 Device Type :1\n[    2.149672] [    2.149672] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    2.149696] [    2.149696] (CPU:0-pid:1:swapper/0)ACTUATOR-ATD create_proc_file(): create(driver/actuator_power) done\n[    2.149710] [    2.149710] (CPU:0-pid:1:swapper/0)ACTUATOR-ATD create_proc_file(): create(driver/actuator_i2c_rw) done\n[    2.149721] [    2.149721] (CPU:0-pid:1:swapper/0)ACTUATOR-ATD create_proc_file(): create(driver/vcm_enable) done\n[    2.149731] [    2.149731] (CPU:0-pid:1:swapper/0)ACTUATOR-ATD create_proc_file(): create(driver/vcm) done\n[    2.149743] [    2.149743] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-ACTUATOR: cam_actuator_driver_platform_probe: 385 Actuator Probe Success.\n[    2.151107] [    2.151107] (CPU:0-pid:1:swapper/0)FLASH-ATD create_proc_file() create(driver/flash_status) done\n[    2.151117] [    2.151117] (CPU:0-pid:1:swapper/0)FLASH-ATD create_proc_file() create(driver/asus_flash) done\n[    2.151125] [    2.151125] (CPU:0-pid:1:swapper/0)FLASH-ATD create_proc_file() create(driver/asus_flash2) done\n[    2.151135] [    2.151135] (CPU:0-pid:1:swapper/0)FLASH-ATD create_proc_file() create(driver/ctrl1_leds) done\n[    2.151143] [    2.151143] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-FLASH: cam_flash_platform_probe: 560 Flash probe succeed\n[    2.151200] [    2.151200] (CPU:0-pid:1:swapper/0)FLASH-ATD asus_flash_init() invalid flash id 2\n[    2.151208] [    2.151208] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-FLASH: cam_flash_platform_probe: 560 Flash probe succeed\n[    2.151604] [    2.151604] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 426 EEPROM Probe Start\n[    2.151623] [    2.151623] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 226 No GPIO found\n[    2.151635] [    2.151635] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 476 EEPROM Probe done\n[    2.151674] [    2.151674] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 426 EEPROM Probe Start\n[    2.151688] [    2.151688] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 226 No GPIO found\n[    2.151696] [    2.151696] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 476 EEPROM Probe done\n[    2.151728] [    2.151728] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 426 EEPROM Probe Start\n[    2.151742] [    2.151742] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 226 No GPIO found\n[    2.151750] [    2.151750] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 476 EEPROM Probe done\n[    2.157663] [    2.157663] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 170 Camera JPEG probe complete\n[    2.158521] [    2.158521] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[22][fd][0] comp[7200000], comp_ab[7200000], uncomp[7200000]\n[    2.162543] [    2.162543] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[23][lrmecpas][0] comp[7200000], comp_ab[7200000], uncomp[7200000]\n[    2.163425] [    2.163425] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[16][cam-cdm-intf][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    2.166031] [    2.166031] (CPU:0-pid:1:swapper/0)iommu: Adding device 88a7000.msm_tspp to group 37\n[    2.166676] [    2.166671] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 82 dest 512\n[    2.167411] [    2.167405] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 44 tsif\n[    2.167543] [    2.167543] (CPU:0-pid:1:swapper/0)msm_tspp_probe: vdd_cx regulator will not be used\n[    2.169019] [    2.169019] (CPU:0-pid:1:swapper/0)dvbdev: DVB: registering new adapter (Qualcomm Technologies, Inc. DVB adapter)\n[    2.178642] [    2.178642] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver uvcvideo\n[    2.178654] [    2.178654] (CPU:0-pid:1:swapper/0)USB Video Class driver (1.1.1)\n[    2.178662] [    2.178662] (CPU:0-pid:1:swapper/0)gspca_main: v2.14.0 registered\n[    2.180286] [    2.180286] (CPU:0-pid:1:swapper/0)fg_gen4_parse_dt dt.sys_term_curr_ma : -500\n[    2.183874] [    2.183874] (CPU:0-pid:1:swapper/0)(NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    2.188912] [    2.188912] (CPU:0-pid:1:swapper/0)FG: fg_gen4_probe: battery SOC:93 voltage: 4206532uV temp: 240 id: 50700 ohms\n[    2.189858] [    2.189858] (CPU:0-pid:1:swapper/0)[BAT][BMS]battery_health_data_reset \n[    2.190172] [    2.190172] (CPU:0-pid:1:swapper/0)[BAT][BMS]create_bat_policy_proc_file: sucessed!\n[    2.194495] [    2.194489] (CPU:0-pid:333:wk:profile_loa)[BAT][BMS]ATD_Is_battID_within_range: batt id(50700) is within 51 k range\n                \n[    2.194512] [    2.194512] (CPU:0-pid:333:wk:profile_loa)of_batterydata_get_best_profile: c11p1901_5800mah_apr29th2019_4p35v found\n[    2.194525] [    2.194525] (CPU:0-pid:333:wk:profile_loa)fg_gen4_get_batt_profile. fg->bp.float_volt_uv : 4360000\n[    2.194533] [    2.194533] (CPU:0-pid:333:wk:profile_loa)FG: fg_gen4_get_batt_profile: battery fastchg current unavailable, rc:-22\n[    2.194542] [    2.194542] (CPU:0-pid:333:wk:profile_loa)fg->bp.vbatt_full_mv : 4380\n[    2.194755] [    2.194755] (CPU:0-pid:4:wk:power_suppl)[PSY] power_supply_changed, psy_name:bms\n[    2.194982] [    2.194982] (CPU:0-pid:4:wk:power_suppl)FG: fg_psy_get_property: unsupported property 4\n[    2.196725] [    2.196725] (CPU:0-pid:1:swapper/0)term_current_thresh_hi_ma : -200\n[    2.196763] [    2.196763] (CPU:0-pid:1:swapper/0)Couldn't parse device tree rc=-517\n[    2.197581] [    2.197581] (CPU:0-pid:1:swapper/0)[BAT][CHG] asp1690e_probe start\n[    2.197597] [    2.197597] (CPU:0-pid:1:swapper/0)[BAT][CHG] asp1690e_mask_write_reg start\n[    2.198257] [    2.198257] (CPU:0-pid:1:swapper/0)[BAT][CHG] asp1690e_write_reg start\n[    2.198570] [    2.198570] (CPU:0-pid:1:swapper/0)[BAT][CHG] asp1690e_write_reg start\n[    2.198791] [    2.198791] (CPU:0-pid:1:swapper/0)[BAT][CHG] asp1690e_write_reg start\n[    2.198993] [    2.198993] (CPU:0-pid:1:swapper/0)[BAT][CHG] asp1690e_write_reg start\n[    2.199305] [    2.199305] (CPU:0-pid:1:swapper/0)[BAT][CHG] asp1690e_probe end\n[    2.199468] [    2.199468] (CPU:0-pid:1:swapper/0)[PCA] pca9468_probe: =========START=========\n[    2.199489] [    2.199489] (CPU:0-pid:1:swapper/0)of_pca9468_dt: irq-gpio: 132 \n[    2.199497] [    2.199497] (CPU:0-pid:1:swapper/0)of_pca9468_dt: pca9468,iin_cfg is 1900000\n[    2.199505] [    2.199505] (CPU:0-pid:1:swapper/0)of_pca9468_dt: pca9468,ichg_cfg is 6000000\n[    2.199513] [    2.199513] (CPU:0-pid:1:swapper/0)of_pca9468_dt: pca9468,v_float is 4380000\n[    2.199520] [    2.199520] (CPU:0-pid:1:swapper/0)of_pca9468_dt: pca9468,iin_topoff is 700000\n[    2.199528] [    2.199528] (CPU:0-pid:1:swapper/0)of_pca9468_dt: pca9468,ichg_topoff is 1000000\n[    2.199536] [    2.199536] (CPU:0-pid:1:swapper/0)of_pca9468_dt: pca9468,snsres is 1\n[    2.199543] [    2.199543] (CPU:0-pid:1:swapper/0)of_pca9468_dt: pca9468,fsw_cfg is 7\n[    2.199585] [    2.199585] (CPU:0-pid:1:swapper/0)get_usbpd phandle failed (-517)\n[    2.199596] [    2.199596] (CPU:0-pid:1:swapper/0)pca9468 7-005e: Error usbpd setup!\n[    2.200732] [    2.200727] (CPU:0-pid:1:swapper/0)lmh_set_trips1 high=100000, low=85000\n[    2.200740] [    2.200735] (CPU:0-pid:1:swapper/0)lmh_set_trips2 high=100000, low=85000\n[    2.200747] [    2.200742] (CPU:0-pid:1:swapper/0)lmh_set_trips3 high=100000, low=85000\n[    2.203540] [    2.203535] (CPU:0-pid:1:swapper/0)lmh_set_trips1 high=100000, low=85000\n[    2.203548] [    2.203543] (CPU:0-pid:1:swapper/0)lmh_set_trips2 high=100000, low=85000\n[    2.203555] [    2.203551] (CPU:0-pid:1:swapper/0)lmh_set_trips3 high=100000, low=85000\n[    2.217977] [    2.217977] (CPU:0-pid:1:swapper/0)device-mapper: uevent: version 1.0.3\n[    2.218547] [    2.218547] (CPU:0-pid:1:swapper/0)device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com\n[    2.220447] [    2.220447] (CPU:0-pid:1:swapper/0)bt_dt_parse_vreg_info: qca,bt-vdd-vl: is not provided in device tree\n[    2.220456] [    2.220456] (CPU:0-pid:1:swapper/0)bt_dt_parse_vreg_info: qca,bt-vdd-vm: is not provided in device tree\n[    2.220464] [    2.220464] (CPU:0-pid:1:swapper/0)bt_dt_parse_vreg_info: qca,bt-vdd-5c: is not provided in device tree\n[    2.220472] [    2.220472] (CPU:0-pid:1:swapper/0)bt_dt_parse_vreg_info: qca,bt-vdd-5a: is not provided in device tree\n[    2.220480] [    2.220480] (CPU:0-pid:1:swapper/0)bt_dt_parse_vreg_info: qca,bt-vdd-vh: is not provided in device tree\n[    2.220489] [    2.220489] (CPU:0-pid:1:swapper/0)bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    2.220496] [    2.220496] (CPU:0-pid:1:swapper/0)bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    2.220515] [    2.220515] (CPU:0-pid:1:swapper/0)bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    2.220524] [    2.220524] (CPU:0-pid:1:swapper/0)bt_power_populate_dt_pinfo: bt-reset-gpio not provided in device tree\n[    2.220534] [    2.220534] (CPU:0-pid:1:swapper/0)bt_dt_parse_clk_info: clocks is not provided in device tree\n[    2.220541] [    2.220541] (CPU:0-pid:1:swapper/0)bt_power_populate_dt_pinfo: clock not provided in device tree\n[    2.221239] [    2.221239] (CPU:0-pid:1:swapper/0)EDAC DEVICE0: Giving out device to module soc:kryo-erp controller cache: DEV soc:kryo-erp (INTERRUPT)\n[    2.222357] [    2.222357] (CPU:0-pid:1:swapper/0)sdhci: Secure Digital Host Controller Interface driver\n[    2.222365] [    2.222365] (CPU:0-pid:1:swapper/0)sdhci: Copyright(c) Pierre Ossman\n[    2.222373] [    2.222373] (CPU:0-pid:1:swapper/0)sdhci-pltfm: SDHCI platform and OF driver helper\n[    2.223616] [    2.223616] (CPU:0-pid:1:swapper/0)hidraw: raw HID events driver (C) Jiri Kosina\n[    2.225885] [    2.225885] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver usbhid\n[    2.225898] [    2.225898] (CPU:0-pid:1:swapper/0)usbhid: USB HID core driver\n[    2.226166] [    2.226166] (CPU:0-pid:1:swapper/0)ashmem: initialized\n[    2.226264] [    2.226259] (CPU:0-pid:1:swapper/0)wlan_hdd_state wlan major(490) initialized\n[    2.226605] [    2.226605] (CPU:0-pid:1:swapper/0)ipa_ut ipa_ut_module_init:1043 Loading IPA test module...\n[    2.226959] [    2.226959] (CPU:0-pid:1:swapper/0)msm_11ad soc:qcom,wil6210: GPIO <qcom,wigig-dc> not found, dc GPIO not used\n[    2.226975] [    2.226975] (CPU:0-pid:1:swapper/0)msm_11ad soc:qcom,wil6210: GPIO <qcom,sleep-clk-en> not found, sleep clock not used\n[    2.227159] [    2.227159] (CPU:0-pid:1:swapper/0)msm_11ad soc:qcom,wil6210: soc:qcom,wil6210 supply vdd not found, using dummy regulator\n[    2.280066] [    2.280066] (CPU:0-pid:1:swapper/0)msm_pcie_enable: PCIe: Assert the reset of endpoint of RC0.\n[    2.284054] [    2.284054] (CPU:0-pid:1:swapper/0)msm_pcie_enable: PCIe: RC0: PCIE20_PARF_INT_ALL_MASK: 0x7f80c202\n[    2.286353] [    2.286353] (CPU:0-pid:1:swapper/0)msm_pcie_enable: PCIe RC0 PHY is ready!\n[    2.296377] [    2.296377] (CPU:0-pid:1:swapper/0)msm_pcie_enable: PCIe: Release the reset of endpoint of RC0.\n[    2.312787] [    2.312787] (CPU:0-pid:1:swapper/0)msm_pcie_enable: PCIe RC0 link initialized\n[    2.313432] [    2.313432] (CPU:0-pid:1:swapper/0)OF: PCI: host bridge /soc/qcom,pcie@1c00000 ranges:\n[    2.313449] [    2.313449] (CPU:0-pid:1:swapper/0)OF: PCI:   No bus range found for /soc/qcom,pcie@1c00000, using [bus 00-ff]\n[    2.313471] [    2.313471] (CPU:0-pid:1:swapper/0)OF: PCI:    IO 0x60200000..0x602fffff -> 0x60200000\n[    2.313487] [    2.313487] (CPU:0-pid:1:swapper/0)OF: PCI:   MEM 0x60300000..0x63ffffff -> 0x60300000\n[    2.313590] [    2.313590] (CPU:0-pid:1:swapper/0)pci-msm 1c00000.qcom,pcie: MSI: qgic controller is present\n[    2.314485] [    2.314485] (CPU:0-pid:1:swapper/0)pci-msm 1c00000.qcom,pcie: PCI host bridge to bus 0000:00\n[    2.314498] [    2.314498] (CPU:0-pid:1:swapper/0)pci_bus 0000:00: root bus resource [bus 00-ff]\n[    2.314509] [    2.314509] (CPU:0-pid:1:swapper/0)pci_bus 0000:00: root bus resource [io  0x0000-0xfffff] (bus address [0x60200000-0x602fffff])\n[    2.314518] [    2.314518] (CPU:0-pid:1:swapper/0)pci_bus 0000:00: root bus resource [mem 0x60300000-0x63ffffff]\n[    2.314569] [    2.314569] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: [17cb:0108] type 01 class 0x060400\n[    2.314631] [    2.314631] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]\n[    2.314736] [    2.314736] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: PME# supported from D0 D3hot D3cold\n[    2.314923] [    2.314923] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring\n[    2.315059] [    2.315059] (CPU:0-pid:1:swapper/0)pci 0000:01:00.0: [1ae9:0310] type 00 class 0x028000\n[    2.315147] [    2.315147] (CPU:0-pid:1:swapper/0)pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x001fffff 64bit]\n[    2.315393] [    2.315393] (CPU:0-pid:1:swapper/0)pci 0000:01:00.0: PME# supported from D0 D3hot D3cold\n[    2.315517] [    2.315517] (CPU:0-pid:1:swapper/0)pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01\n[    2.315561] [    2.315561] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000\n[    2.315576] [    2.315576] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000\n[    2.315588] [    2.315588] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: bridge window [mem 0x00200000-0x003fffff] to [bus 01] add_size 200000 add_align 200000\n[    2.315614] [    2.315614] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: BAR 8: assigned [mem 0x60400000-0x607fffff]\n[    2.315625] [    2.315625] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: BAR 9: assigned [mem 0x60800000-0x609fffff 64bit pref]\n[    2.315634] [    2.315634] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: BAR 0: assigned [mem 0x60300000-0x60300fff 64bit]\n[    2.315661] [    2.315661] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: BAR 7: assigned [io  0x1000-0x1fff]\n[    2.315675] [    2.315675] (CPU:0-pid:1:swapper/0)pci 0000:01:00.0: BAR 0: assigned [mem 0x60400000-0x605fffff 64bit]\n[    2.315716] [    2.315716] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: PCI bridge to [bus 01]\n[    2.315727] [    2.315727] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0:   bridge window [io  0x1000-0x1fff]\n[    2.315743] [    2.315743] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0:   bridge window [mem 0x60400000-0x607fffff]\n[    2.315756] [    2.315756] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0:   bridge window [mem 0x60800000-0x609fffff 64bit pref]\n[    2.315866] [    2.315866] (CPU:0-pid:1:swapper/0)iommu: Adding device 0000:00:00.0 to group 38\n[    2.316106] [    2.316106] (CPU:0-pid:1:swapper/0)msm_pcie_pm_control: PCIe: RC0: requested to resume when link is not disabled:1. Number of active EP(s): 0\n[    2.316528] [    2.316528] (CPU:0-pid:1:swapper/0)msm_11ad soc:qcom,wil6210: for WIGIG segments only will be dumped.\n[    2.316629] [    2.316629] (CPU:0-pid:1:swapper/0)msm_11ad soc:qcom,wil6210: CPU boost: will use cores 4 - 5\n[    2.316642] [    2.316642] (CPU:0-pid:1:swapper/0)msm_11ad soc:qcom,wil6210: msm_11ad discovered. ffffffecdfa67818 {\n                 gpio_en = 131\n                 gpio_dc = -2\n                 sleep_clk_en = -2\n                 rc_index = 0\n                 use_smmu = 1\n                 pcidev = ffffffecdfa2d000\n               }\n[    2.326713] [    2.326713] (CPU:0-pid:1:swapper/0)msm_pcie_disable: PCIe: Assert the reset of endpoint of RC0.\n[    2.328946] [    2.328946] (CPU:0-pid:1:swapper/0)seemp: seemp_logk_init: SCM call failed with ret val = 0 -3 0\n[    2.329238] [    2.329238] (CPU:0-pid:1:swapper/0)bimc-bwmon 90b6400.qcom,cpu-cpu-llcc-bwmon: BW HWmon governor registered.\n[    2.329301] [    2.329301] (CPU:0-pid:1:swapper/0)bimc-bwmon 90cd000.qcom,cpu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    2.329367] [    2.329367] (CPU:0-pid:1:swapper/0)bimc-bwmon 9960300.qcom,npu-npu-ddr-bwmon: BW HWmon governor registered.\n[    2.330193] [    2.330193] (CPU:0-pid:1:swapper/0)arm-memlat-mon soc:qcom,cpu0-cpu-l3-latmon: Memory Latency governor registered.\n[    2.330250] [    2.330250] (CPU:0-pid:1:swapper/0)arm-memlat-mon soc:qcom,cpu4-cpu-l3-latmon: Memory Latency governor registered.\n[    2.330303] [    2.330303] (CPU:0-pid:1:swapper/0)arm-memlat-mon soc:qcom,cpu7-cpu-l3-latmon: Memory Latency governor registered.\n[    2.330362] [    2.330362] (CPU:0-pid:1:swapper/0)arm-memlat-mon soc:qcom,cpu0-cpu-llcc-latmon: Memory Latency governor registered.\n[    2.330420] [    2.330420] (CPU:0-pid:1:swapper/0)arm-memlat-mon soc:qcom,cpu4-cpu-llcc-latmon: Memory Latency governor registered.\n[    2.330479] [    2.330479] (CPU:0-pid:1:swapper/0)arm-memlat-mon soc:qcom,cpu0-llcc-ddr-latmon: Memory Latency governor registered.\n[    2.330535] [    2.330535] (CPU:0-pid:1:swapper/0)arm-memlat-mon soc:qcom,cpu4-llcc-ddr-latmon: Memory Latency governor registered.\n[    2.330591] [    2.330591] (CPU:0-pid:1:swapper/0)arm-memlat-mon soc:qcom,cpu4-computemon: Compute governor registered.\n[    2.332546] [    2.332541] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 770\n[    2.332852] [    2.332847] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 45 soc:qcom,cpu-cpu-llcc-bw\n[    2.333731] [    2.333725] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 129 dest 512\n[    2.333831] [    2.333826] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 46 soc:qcom,cpu-llcc-ddr-bw\n[    2.334789] [    2.334783] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 154 dest 512\n[    2.335070] [    2.335065] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 47 soc:qcom,npu-npu-ddr-bw\n[    2.335487] [    2.335482] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 770\n[    2.335583] [    2.335578] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 48 soc:qcom,cpu0-cpu-llcc-lat\n[    2.335920] [    2.335915] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 770\n[    2.336010] [    2.336005] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 49 soc:qcom,cpu4-cpu-llcc-lat\n[    2.336450] [    2.336444] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 129 dest 512\n[    2.336543] [    2.336538] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 51 soc:qcom,cpu0-llcc-ddr-lat\n[    2.336997] [    2.336992] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 129 dest 512\n[    2.337089] [    2.337084] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 50 soc:qcom,cpu4-llcc-ddr-lat\n[    2.337531] [    2.337526] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 129 dest 512\n[    2.337628] [    2.337623] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 52 soc:qcom,cpu4-cpu-ddr-latfloor\n[    2.337851] [    2.337846] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 627\n[    2.338161] [    2.338156] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 53 soc:qcom,snoc_cnoc_keepalive\n[    2.338399] [    2.338394] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 154 dest 10070\n[    2.338466] [    2.338461] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 54 soc:qcom,cdsp_keepalive\n[    2.339095] [    2.339090] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 26 dest 512\n[    2.339286] [    2.339281] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 55 soc:qcom,gpubw\n[    2.341881] [    2.341881] (CPU:0-pid:1:swapper/0)qcom-llcc-pmu 90cc000.llcc-pmu: Registered llcc_pmu, type: 7\n[    2.343152] [    2.343152] (CPU:0-pid:1:swapper/0)falied to get pwr gpio, try ldo!\n[    2.343160] [    2.343160] (CPU:0-pid:1:swapper/0)[Jacob] fp-fod-panel value 1 \n[    2.343169] [    2.343169] (CPU:0-pid:1:swapper/0)[Jacob] gf_spi Get the pinctrl node \n[    2.343240] [    2.343240] (CPU:0-pid:1:swapper/0)[Jacob] gf_spi Get the active setting \n[    2.343264] [    2.343264] (CPU:0-pid:1:swapper/0)[Jacob] check FOD EXI  gpio num : EXI1 = 167, EXI2 = 168 \n[    2.343272] [    2.343272] (CPU:0-pid:1:swapper/0)[Jacob] check all gpio num : reset = 141, irq = 118 \n[    2.343280] [    2.343280] (CPU:0-pid:1:swapper/0)[FP] Regulator voltage get Max = 2860000, Min = 2850000 \n[    2.343395] [    2.343395] (CPU:0-pid:1:swapper/0)[FP] Regulator voltage get Max = 2860000, Min = 2850000 \n[    2.343544] [    2.343544] (CPU:0-pid:1:swapper/0)[FP][gf_power_on]pwr_gpio = -2  ! \n[    2.343597] [    2.343597] (CPU:0-pid:1:swapper/0)[FP][gf_power_on]Regulator vcc enable ! \n[    2.356852] [    2.356852] (CPU:0-pid:1:swapper/0)input: qwerty as /devices/virtual/input/input3\n[    2.356928] [    2.356928] (CPU:0-pid:1:swapper/0)[FP][gf_power_off]pwr_gpio = -2  ! \n[    2.356968] [    2.356968] (CPU:0-pid:1:swapper/0)[FP][gf_power_off]Regulator vcc disabe ! \n[    2.357003] [    2.357003] (CPU:0-pid:1:swapper/0)gf_spi: version V1.2.12\n[    2.357087] [    2.357087] (CPU:0-pid:1:swapper/0)gf_spi: status = 0x0\n[    2.357387] [    2.357387] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: snt_i2c_probe Enter\n\n[    2.357397] [    2.357397] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Host irq GPIO125: 0\n[    2.357405] [    2.357405] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Tap IRQ GPIO49: 0\n[    2.357413] [    2.357413] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Tap IRQ GPIO142: 0\n[    2.357420] [    2.357420] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Tap IRQ GPIO60: 0\n[    2.357428] [    2.357428] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Rst GPIO12: 0\n[    2.357436] [    2.357436] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Main I2C device discovered\n[    2.358674] [    2.358674] (CPU:0-pid:1:swapper/0)input: snt8100fsr as /devices/virtual/input/input4\n[    2.358738] [    2.358738] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: main_init: done\n[    2.358761] [    2.358761] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_device_init: done\n[    2.358781] [    2.358781] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_open: I2C Address: 0x2C\n[    2.359932] [    2.359932] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: asus_init_probe: Set lock to make sure firmware loading down\n[    2.359945] [    2.359945] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: asus_init_probe: WQ: call set_rst_pin_func\n[    2.359991] [    2.359991] (CPU:0-pid:333:wk:set_1V2_2V8)[EDGE] snt8100fsr: INFO: set_1V2_2V8_pin_func: Set pinctl: SOC GPIO21 pull-up\n[    2.359999] [    2.359999] (CPU:0-pid:333:wk:set_1V2_2V8)[EDGE] snt8100fsr: INFO: set_pinctrl: Set_pinctrl start!\n[    2.360133] [    2.360133] (CPU:0-pid:333:wk:set_1V2_2V8)[EDGE] snt8100fsr: INFO: set_pinctrl: Set_pinctrl done!\n[    2.360480] [    2.360480] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: snt_i2c_probe Enter\n\n[    2.360489] [    2.360489] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Host irq GPIO125: 0\n[    2.360497] [    2.360497] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Tap IRQ GPIO49: 0\n[    2.360505] [    2.360505] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Tap IRQ GPIO142: 0\n[    2.360512] [    2.360512] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Tap IRQ GPIO60: 1\n[    2.360519] [    2.360519] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Rst GPIO12: 0\n[    2.360527] [    2.360527] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Wake I2C device discovered\n[    2.360533] [    2.360533] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: get_GPIO4\n[    2.360539] [    2.360539] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: set_pinctrl: Set_pinctrl start!\n[    2.360684] [    2.360684] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: set_pinctrl: Set_pinctrl done!\n[    2.360756] [    2.360756] (CPU:0-pid:1:swapper/0)[ASH_ALGO][ALSPS_FRGB]Driver INIT +++\n[    2.363230] [    2.363230] (CPU:0-pid:1:swapper/0)[ASH_ALGO][ALSPS_FRGB]Driver PROBE +++\n[    2.363238] [    2.363238] (CPU:0-pid:1:swapper/0)[ASH_ALGO][ALSPS_FRGB]Driver PROBE ---\n[    2.363494] [    2.363494] (CPU:0-pid:1:swapper/0)[ASH_HW][ALSPS_FRGB]cm36656_ALSPS_FRGB_hw_check_ID Success(ID_REG : 0x0257). \n[    2.363545] [    2.363540] (CPU:0-pid:1:swapper/0)[ASH_HW][ALSPS_FRGB]ldoc7 regulator setting init\n[    2.363868] [    2.363868] (CPU:0-pid:1:swapper/0)[ASH_HW][ALSPS_FRGB]Proximity set CS start bit (CS_CONF : 0x0 -> 0x80) \n[    2.364199] [    2.364199] (CPU:0-pid:1:swapper/0)[ASH_HW][ALSPS_FRGB]Proximity set LED Current (PS_CONF4 : 0x2 -> 0x2) \n[    2.364528] [    2.364528] (CPU:0-pid:1:swapper/0)[ASH_HW][ALSPS_FRGB]Proximity set LED Duty Ratio (PS_CONF1 : 0x1 -> 0x1) \n[    2.364857] [    2.364857] (CPU:0-pid:1:swapper/0)[ASH_HW][ALSPS_FRGB]Proximity set Persistence (PS_CONF1 : 0x1 -> 0x1) \n[    2.365186] [    2.365186] (CPU:0-pid:1:swapper/0)[ASH_HW][ALSPS_FRGB]Proximity set Integration (PS_CONF2 : 0x0 -> 0x0) \n[    2.365511] [    2.365511] (CPU:0-pid:1:swapper/0)[ASH_HW][ALSPS_FRGB]Light Sensor set Persistence (CS_CONF : 0x0 -> 0x0) \n[    2.365839] [    2.365839] (CPU:0-pid:1:swapper/0)[ASH_HW][ALSPS_FRGB]Light Sensor set Integration (CS_CONF : 0x0 -> 0x0) \n[    2.365847] [    2.365847] (CPU:0-pid:1:swapper/0)[ASH_HW][ALSPS_FRGB]ALSPS_FRGB_hw_getHardware cm36656 Probe Success. \n[    2.366179] [    2.366179] (CPU:0-pid:1:swapper/0)input: ASUS Proximitysensor as /devices/virtual/input/input5\n[    2.366345] [    2.366345] (CPU:0-pid:1:swapper/0)input: ASUS Lightsensor as /devices/virtual/input/input6\n[    2.366465] [    2.366465] (CPU:0-pid:1:swapper/0)[ASH_GPIO][ALSPS]Qcom GPIO \n[    2.366562] [    2.366562] (CPU:0-pid:1:swapper/0)[ASH_GPIO][ALSPS]gpio_to_irq IRQ 288 successed on GPIO:117\n[    2.366812] [    2.366812] (CPU:0-pid:1:swapper/0)[ASH_ALGO][ALSPS_FRGB]Driver INIT ---\n[    2.367432] [    2.367432] (CPU:0-pid:1:swapper/0)[AURA_SYNC] ene_8k41_probe.\n[    2.367440] [    2.367440] (CPU:0-pid:1:swapper/0)[AURA_SYNC] I2C function test pass\n[    2.367446] [    2.367446] (CPU:0-pid:1:swapper/0)[AURA_SYNC] client->addr : 0x40\n[    2.367453] [    2.367453] (CPU:0-pid:1:swapper/0)[AURA_SYNC] ene_8k41_parse_dt\n[    2.367461] [    2.367461] (CPU:0-pid:1:swapper/0)[AURA_SYNC] aura_3p3_en : 130\n[    2.367467] [    2.367467] (CPU:0-pid:1:swapper/0)[AURA_SYNC] logo_5p0_en : -2\n[    2.367473] [    2.367473] (CPU:0-pid:1:swapper/0)[AURA_SYNC] Get the pinctrl node \n[    2.367518] [    2.367518] (CPU:0-pid:1:swapper/0)[AURA_SYNC] Get the active setting \n[    2.367524] [    2.367524] (CPU:0-pid:1:swapper/0)[AURA_SYNC] Get default_enable \n[    2.367530] [    2.367530] (CPU:0-pid:1:swapper/0)[AURA_SYNC] set the active state\n[    2.367546] [    2.367546] (CPU:0-pid:1:swapper/0)[AURA_SYNC] ENE 8k41 power on.\n[    2.367559] [    2.367559] (CPU:0-pid:1:swapper/0)[AURA_SYNC] aura_3p3_en[130] :0x1\n[    2.367566] [    2.367566] (CPU:0-pid:1:swapper/0)[AURA_SYNC] logo_5p0_en is not defined. -2\n[    2.367620] [    2.367620] (CPU:0-pid:1:swapper/0)[AURA_SYNC] aura_sync_get.\n[    2.367660] [    2.367660] (CPU:0-pid:1:swapper/0)[AURA_SYNC] ene_8k41_probe done.\n[    2.367713] [    2.367713] (CPU:0-pid:1:swapper/0)[AURA_SYNC] ENE 8k41 driver int success.\n[    2.367743] [    2.367743] (CPU:0-pid:1:swapper/0)[Bumper] sky81298_probe.\n[    2.367750] [    2.367750] (CPU:0-pid:1:swapper/0)[Bumper] I2C function test pass\n[    2.367756] [    2.367756] (CPU:0-pid:1:swapper/0)[Bumper] client->addr : 0x63\n[    2.367793] [    2.367793] (CPU:0-pid:1:swapper/0)[Bumper] bumper_led_get.\n[    2.367804] [    2.367804] (CPU:0-pid:1:swapper/0)[Bumper] sky81298_probe done.\n[    2.367846] [    2.367846] (CPU:0-pid:1:swapper/0)[Bumper] sky81298 driver int success.\n[    2.368421] [    2.368421] (CPU:0-pid:1:swapper/0)[EC_HID] ec_hid_probe.\n[    2.368453] [    2.368453] (CPU:0-pid:1:swapper/0)[EC_HID] ec_hid_probe: device_create() status 0\n[    2.368477] [    2.368477] (CPU:0-pid:1:swapper/0)[EC_HID] ec_hid_probe: sysfs_create_group() status 0\n[    2.368507] [    2.368507] (CPU:0-pid:1:swapper/0)[EC_HID] pogo_sleep : 104\n[    2.368517] [    2.368517] (CPU:0-pid:1:swapper/0)[EC_HID] pogo_det : 1254\n[    2.368525] [    2.368525] (CPU:0-pid:1:swapper/0)[EC_HID] pogo_aux_oe : 93\n[    2.368531] [    2.368531] (CPU:0-pid:1:swapper/0)[EC_HID] Get pogo_sleep state\n[    2.368537] [    2.368537] (CPU:0-pid:1:swapper/0)[EC_HID] Request pogo_sleep config.\n[    2.368548] [    2.368548] (CPU:0-pid:1:swapper/0)[EC_HID] pogo_sleep default on.\n[    2.368558] [    2.368558] (CPU:0-pid:1:swapper/0)[EC_HID] Request pogo_det config.\n[    2.368568] [    2.368568] (CPU:0-pid:1:swapper/0)[EC_HID] pogo_det default on.\n[    2.368716] [    2.368716] (CPU:0-pid:1:swapper/0)[EC_HID] Request pogo_aux_oe config.\n[    2.368725] [    2.368725] (CPU:0-pid:1:swapper/0)[EC_HID] pogo_aux_oe default on.\n[    2.369683] [    2.369683] (CPU:0-pid:1:swapper/0)[EC_HID] pogo_id_adc is 1812391.\n[    2.369690] [    2.369690] (CPU:0-pid:1:swapper/0)[EC_HID] gDongleType : 0  type : 0 !\n[    2.369761] [    2.369761] (CPU:0-pid:1:swapper/0)[EC_USB] ec_usb_init\n[    2.369782] [    2.369782] (CPU:0-pid:1:swapper/0)[GAMEPAD_HID] gamepad_usb_init\n[    2.369802] [    2.369802] (CPU:0-pid:1:swapper/0)tspdrv: I  tspdrv: init_module +++.\n[    2.370256] [    2.370256] (CPU:0-pid:1:swapper/0)tspdrv: !  ImmVibeSPI_ForceOut_Initialize:+++\n[    2.370610] [    2.370610] (CPU:0-pid:1:swapper/0)tspdrv: !  dw791x_probe:bus=5, addr=0x59 , gActuatorIndex=1+++\n[    2.370618] [    2.370618] (CPU:0-pid:1:swapper/0)tspdrv: I  parse irq-gpio\n[    2.370627] [    2.370627] (CPU:0-pid:1:swapper/0)dw791x_parse_dt: get dw791x irq pin(cpu: gpio 96)\n[    2.370633] [    2.370633] (CPU:0-pid:1:swapper/0)tspdrv: I  parse irq-gpio\n[    2.370641] [    2.370641] (CPU:0-pid:1:swapper/0)dw791x_parse_dt: get dw791x irq pin(cpu: gpio 119)\n[    2.370647] [    2.370647] (CPU:0-pid:1:swapper/0)tspdrv: I  parse enable-gpio\n[    2.370657] [    2.370657] (CPU:0-pid:1:swapper/0)dw791x_parse_dt: get dw791x enable pin(pm8150b: gpio 1264)\n[    2.370664] [    2.370664] (CPU:0-pid:1:swapper/0)tspdrv: I  dw791x_parse_dt:parse top_trigger3-gpio\n[    2.370672] [    2.370672] (CPU:0-pid:1:swapper/0)dw791x_parse_dt: get dw791x top_trigger3 pin(pm8150: gpio 127)\n[    2.370679] [    2.370679] (CPU:0-pid:1:swapper/0)dw791x_parse_dt: dw791x top_trigger3 pin(127) is valid\n[    2.370686] [    2.370686] (CPU:0-pid:1:swapper/0)tspdrv: I  dw791x_parse_dt:parse bot_trigger3-gpio\n[    2.370694] [    2.370694] (CPU:0-pid:1:swapper/0)dw791x_parse_dt: get dw791x bot_trigger3 pin(pm8150: gpio 128)\n[    2.370700] [    2.370700] (CPU:0-pid:1:swapper/0)dw791x_parse_dt: dw791x bot_trigger3 pin(128) is valid\n[    2.370707] [    2.370707] (CPU:0-pid:1:swapper/0)tspdrv: I  dw791x_parse_dt:parse dw791x_boot_vib_gpio\n[    2.370714] [    2.370714] (CPU:0-pid:1:swapper/0)dw791x_parse_dt: get dw791x boot_vib_gpio pin(126)\n[    2.370720] [    2.370720] (CPU:0-pid:1:swapper/0)dw791x_parse_dt: dw791x boot_vib_gpio pin(126) is valid\n[    2.370806] [    2.370806] (CPU:0-pid:1:swapper/0)tspdrv: I  init_gpio: enable_gpio direction output: 1264\n[    2.370889] [    2.370889] (CPU:0-pid:1:swapper/0)tspdrv: I  init_gpio:top_trigger3_gpio direction output: 127\n[    2.370903] [    2.370903] (CPU:0-pid:1:swapper/0)tspdrv: I  init_gpio:bot_trigger3_gpio direction output: 128\n[    2.370917] [    2.370917] (CPU:0-pid:1:swapper/0)tspdrv: I  init_gpio:boot_vib_gpio direction output: 126\n[    2.370929] [    2.370929] (CPU:0-pid:1:swapper/0)tspdrv: I  TOP_VIB: GPIO direction input: 96\n[    2.370937] [    2.370937] (CPU:0-pid:1:swapper/0)tspdrv: I  TOP_VIB: IRQ Line: 270\n[    2.372148] [    2.372148] (CPU:0-pid:1:swapper/0)tspdrv: I  BOT_VIB:GPIO direction input: 119\n[    2.372156] [    2.372156] (CPU:0-pid:1:swapper/0)tspdrv: I  BOT_VIB: IRQ Line: 292\n[    2.373446] [    2.373446] (CPU:0-pid:1:swapper/0)tspdrv: I  fifo size: 4096byte (0x2ffc)\n[    2.373602] [    2.373602] (CPU:0-pid:1:swapper/0)tspdrv: I  Bus=5, Addr=0x59, DWA DW7914A driver version 7914f002\n[    2.374839] [    2.374834] (CPU:0-pid:1:swapper/0)tspdrv: I  attribute enableVIB file register Done\n[    2.374847] [    2.374842] (CPU:0-pid:1:swapper/0)tspdrv: I  attribute dev_attr_enableVIB_0832 file register Done\n[    2.374857] [    2.374853] (CPU:0-pid:1:swapper/0)tspdrv: I  attribute top_vib_control file register Done\n[    2.374866] [    2.374861] (CPU:0-pid:1:swapper/0)tspdrv: I  attribute bot_vib_control file register Done\n[    2.375143] [    2.375143] (CPU:0-pid:1:swapper/0)tspdrv: !  dw791x_probe:bus=5, addr=0x59 ---\n[    2.375330] [    2.375330] (CPU:0-pid:1:swapper/0)tspdrv: !  dw791x_probe:bus=8, addr=0x59 , gActuatorIndex=0+++\n[    2.375441] [    2.375441] (CPU:0-pid:1:swapper/0)tspdrv: I  fifo size: 4096byte (0x2ffc)\n[    2.375584] [    2.375584] (CPU:0-pid:1:swapper/0)tspdrv: I  Bus=8, Addr=0x59, DWA DW7914A driver version 7914f002\n[    2.377010] [    2.377010] (CPU:0-pid:1:swapper/0)tspdrv: !  dw791x_probe:bus=8, addr=0x59 ---\n[    2.377049] [    2.377049] (CPU:0-pid:1:swapper/0)tspdrv: !  ImmVibeSPI_ForceOut_Initialize:---\n[    2.377057] [    2.377057] (CPU:0-pid:1:swapper/0)tspdrv: I  call VibeOSKernelLinuxInitTimer.\n[    2.377065] [    2.377065] (CPU:0-pid:1:swapper/0)tspdrv: I  call ResetOutputData.\n[    2.377071] [    2.377071] (CPU:0-pid:1:swapper/0)tspdrv: I  call  Get and concatenate device name.\n[    2.377078] [    2.377078] (CPU:0-pid:1:swapper/0)tspdrv: I  call ImmVibeSPI_Device_GetName.\n[    2.377086] [    2.377086] (CPU:0-pid:1:swapper/0)tspdrv: I  call ImmVibeSPI_Device_GetName.\n[    2.377094] [    2.377094] (CPU:0-pid:1:swapper/0)tspdrv: I  tspdrv: init_module ---.\n[    2.377257] [    2.377257] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver snd-usb-audio\n[    2.377560] [    2.377560] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:usb_audio_qmi_dev to group 39\n[    2.379649] [    2.379649] (CPU:0-pid:1:swapper/0)GACT probability NOT on\n[    2.379665] [    2.379665] (CPU:0-pid:1:swapper/0)Mirror/redirect action on\n[    2.379679] [    2.379679] (CPU:0-pid:1:swapper/0)u32 classifier\n[    2.379685] [    2.379685] (CPU:0-pid:1:swapper/0)    Actions configured\n[    2.379702] [    2.379702] (CPU:0-pid:1:swapper/0)Netfilter messages via NETLINK v0.30.\n[    2.379948] [    2.379948] (CPU:0-pid:1:swapper/0)nf_conntrack version 0.5.0 (65536 buckets, 262144 max)\n[    2.380063] [    2.380063] (CPU:0-pid:1:swapper/0)ctnetlink v0.93: registering with nfnetlink.\n[    2.380338] [    2.380338] (CPU:0-pid:1:swapper/0)xt_time: kernel timezone is -0000\n[    2.380404] [    2.380404] (CPU:0-pid:1:swapper/0)gre: GRE over IPv4 demultiplexor driver\n[    2.380411] [    2.380411] (CPU:0-pid:1:swapper/0)IPv4 over IPsec tunneling driver\n[    2.380679] [    2.380679] (CPU:0-pid:1:swapper/0)ip_tables: (C) 2000-2006 Netfilter Core Team\n[    2.381134] [    2.381134] (CPU:0-pid:1:swapper/0)arp_tables: arp_tables: (C) 2002 David S. Miller\n[    2.381224] [    2.381224] (CPU:0-pid:1:swapper/0)Initializing XFRM netlink socket\n[    2.381240] [    2.381240] (CPU:0-pid:1:swapper/0)IPsec XFRM device driver\n[    2.381397] [    2.381397] (CPU:0-pid:1:swapper/0)NET: Registered protocol family 10\n[    2.382987] [    2.382987] (CPU:0-pid:1:swapper/0)Segment Routing with IPv6\n[    2.383032] [    2.383032] (CPU:0-pid:1:swapper/0)mip6: Mobile IPv6\n[    2.383047] [    2.383047] (CPU:0-pid:1:swapper/0)ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    2.383566] [    2.383566] (CPU:0-pid:1:swapper/0)sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    2.383964] [    2.383964] (CPU:0-pid:1:swapper/0)NET: Registered protocol family 17\n[    2.383979] [    2.383979] (CPU:0-pid:1:swapper/0)NET: Registered protocol family 15\n[    2.384009] [    2.384009] (CPU:0-pid:1:swapper/0)Bridge firewalling registered\n[    2.384016] [    2.384016] (CPU:0-pid:1:swapper/0)Ebtables v2.0 registered\n[    2.384126] [    2.384126] (CPU:0-pid:1:swapper/0)l2tp_core: L2TP core driver, V2.0\n[    2.384138] [    2.384138] (CPU:0-pid:1:swapper/0)l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    2.384145] [    2.384145] (CPU:0-pid:1:swapper/0)l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    2.384160] [    2.384160] (CPU:0-pid:1:swapper/0)l2tp_netlink: L2TP netlink interface\n[    2.384179] [    2.384179] (CPU:0-pid:1:swapper/0)l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    2.384186] [    2.384186] (CPU:0-pid:1:swapper/0)l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    2.384247] [    2.384247] (CPU:0-pid:1:swapper/0)sctp: Hash tables configured (bind 128/128)\n[    2.385147] [    2.385147] (CPU:0-pid:4:wk:deferred_pr)cam_dvdd_w_f_1p2: supplied by pm8150_s4\n[    2.385518] [    2.385518] (CPU:0-pid:4:wk:deferred_pr)cam_avdd_2p8: supplied by pm8150l_bob\n[    2.386144] [    2.386144] (CPU:0-pid:4:wk:deferred_pr)msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    2.386446] [    2.386446] (CPU:0-pid:4:wk:deferred_pr)msm-dwc3 a600000.ssusb: [USB] dwc3_msm_probe, pdev->dev =a600000.ssusb\n[    2.388735] [    2.388735] (CPU:0-pid:4:wk:deferred_pr)dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.388955] [    2.388955] (CPU:0-pid:4:wk:deferred_pr)dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    2.391298] [    2.391298] (CPU:0-pid:4:wk:deferred_pr)usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    2.391318] [    2.391313] (CPU:0-pid:4:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    2.391325] [    2.391321] (CPU:0-pid:4:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    2.391333] [    2.391328] (CPU:0-pid:4:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    2.391340] [    2.391335] (CPU:0-pid:4:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    2.391347] [    2.391343] (CPU:0-pid:4:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    2.391354] [    2.391350] (CPU:0-pid:4:wk:deferred_pr)sps:BAM 0x000000000a704000 is registered.\n[    2.391541] [    2.391541] (CPU:0-pid:4:wk:deferred_pr)msm-dwc3 a600000.ssusb: unable to get ssphy device\n[    2.393592] [    2.393592] (CPU:0-pid:4:wk:deferred_pr)msm-dwc3 a800000.ssusb: [USB] dwc3_msm_probe, pdev->dev =a800000.ssusb\n[    2.395798] [    2.395798] (CPU:0-pid:4:wk:deferred_pr)dwc3 a800000.dwc3: changing max_speed on rev 00000000\n[    2.395999] [    2.395999] (CPU:0-pid:4:wk:deferred_pr)dwc3 a800000.dwc3: Error getting ipc_log_ctxt\n[    2.397195] [    2.397190] (CPU:0-pid:4:wk:deferred_pr)register_client_adhoc:find path.src 101 dest 512\n[    2.397680] [    2.397675] (CPU:0-pid:4:wk:deferred_pr)register_client_adhoc:find path.src 101 dest 676\n[    2.397947] [    2.397942] (CPU:0-pid:4:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 751\n[    2.398248] [    2.398243] (CPU:0-pid:4:wk:deferred_pr)register_client_adhoc:Client handle 56 usb1\n[    2.398293] [    2.398293] (CPU:0-pid:4:wk:deferred_pr)msm-dwc3 a800000.ssusb: get extcon 0 failed\n[    2.401135] [    2.401135] (CPU:0-pid:4:wk:deferred_pr)qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    2.401844] [    2.401844] (CPU:0-pid:4:wk:deferred_pr)term_current_thresh_hi_ma : -200\n[    2.402828] [    2.402828] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]asus_probe_gpio_setting: Success to request ADC_MUX_INT_N\n[    2.403070] [    2.403070] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]asus_probe_gpio_setting: Success to request PW_ADC_EN\n[    2.403084] [    2.403084] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]asus_probe_gpio_setting: Success to request USB2_MUX1_EN\n[    2.403096] [    2.403096] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]asus_probe_gpio_setting: Success to request PMI_MUX_EN\n[    2.403107] [    2.403107] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]asus_probe_gpio_setting: Success to request POGO_OTG_EN\n[    2.403117] [    2.403117] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]asus_probe_gpio_setting: Success to request BTM_OTG_EN\n[    2.403128] [    2.403128] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]asus_probe_gpio_setting: Success to request POGO_OVP_ACOK\n[    2.403138] [    2.403138] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]asus_probe_gpio_setting: Success to request BTM_OVP_ACOK\n[    2.403148] [    2.403148] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]asus_probe_gpio_setting: Success to request PCA9468_EN\n[    2.403159] [    2.403159] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]asus_probe_gpio_setting: Success to request POGO_TEMP_INT\n[    2.403864] [    2.403859] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]Skip smblib_hvdcp_detect_enable() for aohai adapter WA\n[    2.404227] [    2.404227] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]create_chargerIC_status_proc_file: sucessed!\n[    2.404927] [    2.404927] (CPU:0-pid:4:wk:deferred_pr)(NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    2.405034] [    2.405034] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG][AUTO]smblib_usb_plugin_locked: start, vbus_rising = 0\n[    2.405042] [    2.405042] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]smblib_usb_plugin_locked: Try to run asus_write_mux_setting_1. \n[    2.405156] [    2.405156] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]smblib_update_usb_type: FAKE = 0, APSD = UNKNOWN PD = 0\n[    2.405182] [    2.405182] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]asus_typec_removal_function triggered\n[    2.405218] [    2.405218] (CPU:0-pid:4:wk:deferred_pr)[BAT][BMS]battery_health_data_reset \n[    2.405228] [    2.405228] (CPU:0-pid:4:wk:deferred_pr)[PSY] power_supply_changed, psy_name:usb\n[    2.405241] [    2.405236] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]Skip smblib_hvdcp_detect_enable() for aohai adapter WA\n[    2.405248] [    2.405248] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]asus_typec_removal_function: Reset ICL to default\n[    2.405270] [    2.405270] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]disable inov\n[    2.405295] [    2.405295] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG] asp1690e_mask_write_reg start\n[    2.405340] [    2.405340] (CPU:0-pid:386:wk:asus_mux_se)[BAT][CHG]asus_mux_setting_1_work: POGO tpye : NO_INSERT\n[    2.405359] [    2.405359] (CPU:0-pid:386:wk:asus_mux_se)[BAT][CHG]TYPE_C_MISC_STATUS_REG = 0x40\n[    2.405366] [    2.405366] (CPU:0-pid:386:wk:asus_mux_se)[USB_MUX]btm_ovp_stats : 1 , pogo_ovp_stats : 1, pogo_dfp_stats : 1, btm_dfp_stats : 0\n[    2.405730] [    2.405730] (CPU:0-pid:4:wk:deferred_pr)prepare to run asus_30W_Dual_chg_work\n[    2.405743] [    2.405743] (CPU:0-pid:4:wk:deferred_pr)rt_chg_get_during_swap: during swap = 0\n[    2.405750] [    2.405750] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]smblib_usb_plugin_locked. send EXTCON_USB = false\n[    2.405758] [    2.405758] (CPU:0-pid:4:wk:deferred_pr)rt_chg_get_curr_state: curr = 0\n[    2.405768] [    2.405768] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG][ERR]smblib_usb_plugin_locked: Set dual_port_once_flag = 0\n[    2.405776] [    2.405776] (CPU:0-pid:4:wk:deferred_pr)[PSY] power_supply_changed, psy_name:usb\n[    2.405811] [    2.405811] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]typec_attach_detach_irq_handler triggered detach\n[    2.405827] [    2.405827] (CPU:0-pid:4:wk:deferred_pr)[PSY] power_supply_changed, psy_name:usb\n[    2.405865] [    2.405865] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]TYPE_C_MISC_STATUS_REG = 0x40\n[    2.405873] [    2.405873] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]typec_state_change_irq_handler: Try to run asus_write_mux_setting_1. \n[    2.405880] [    2.405880] (CPU:0-pid:4:wk:deferred_pr)[PSY] power_supply_changed, psy_name:usb\n[    2.405897] [    2.405897] (CPU:0-pid:4:wk:deferred_pr)[PSY] power_supply_changed, psy_name:main\n[    2.405904] [    2.405904] (CPU:0-pid:4:wk:deferred_pr)[PSY] power_supply_changed, psy_name:usb\n[    2.405946] [    2.405946] (CPU:0-pid:4:wk:deferred_pr)[PSY] power_supply_changed, psy_name:battery\n[    2.405989] [    2.405989] (CPU:0-pid:4:wk:deferred_pr)[PSY] power_supply_changed, psy_name:usb\n[    2.412146] [    2.412146] (CPU:0-pid:433:wk:jeita_updat)of_batterydata_get_best_profile: c11p1901_5800mah_apr29th2019_4p35v found\n[    2.412194] [    2.412194] (CPU:0-pid:433:wk:jeita_updat)pm8150b_charger: jeita_update_work: Couldn't get Soft Jeita hysteresis thresholds rc=-22\n[    2.412300] [    2.412300] (CPU:0-pid:428:wk:status_chan)[BAT][CHG]smb5_usb_main_set_prop: set current_max: 500000\n[    2.412308] [    2.412308] (CPU:0-pid:428:wk:status_chan)[BAT][CHG]smblib_set_icl_current: icl_ua = 500000\n[    2.412425] [    2.412425] (CPU:0-pid:428:wk:status_chan)[BAT][CHG]smblib_set_usb_suspend: suspend = 0\n[    2.412451] [    2.412451] (CPU:0-pid:428:wk:status_chan)[BAT][CHG]smb5_usb_main_set_prop: set constant charge_current: 2750000\n[    2.412469] [    2.412469] (CPU:0-pid:428:wk:status_chan)[BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[    2.412515] [    2.412515] (CPU:0-pid:428:wk:status_chan)[BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[    2.412571] [    2.412571] (CPU:0-pid:428:wk:status_chan)[BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[    2.416252] [    2.416252] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]smb5_usb_main_set_prop: set current_max: 500000\n[    2.416259] [    2.416259] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]smblib_set_icl_current: icl_ua = 500000\n[    2.416385] [    2.416385] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]smblib_set_usb_suspend: suspend = 0\n[    2.416406] [    2.416406] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]smblib_set_prop_typec_power_role. Type : 1 , power_role : 0x10\n[    2.416413] [    2.416413] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]smblib_set_prop_typec_power_role. is_hall_sensor_detect : 0 , ASUS_POGO_ID : 0\n[    2.416492] [    2.416492] (CPU:0-pid:4:wk:deferred_pr)SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    2.416516] [    2.416516] (CPU:0-pid:4:wk:deferred_pr)[BAT][CHG]asus_set_jeita_temp_thr: Set JEITA temp register\n[    2.416593] [    2.416593] (CPU:0-pid:4:wk:deferred_pr)QPNP SMB5 probed successfully\n[    2.416762] [    2.416762] (CPU:0-pid:4:wk:deferred_pr)[PCA] pca9468_probe: =========START=========\n[    2.416772] [    2.416772] (CPU:0-pid:4:wk:deferred_pr)of_pca9468_dt: irq-gpio: 132 \n[    2.416780] [    2.416780] (CPU:0-pid:4:wk:deferred_pr)of_pca9468_dt: pca9468,iin_cfg is 1900000\n[    2.416787] [    2.416787] (CPU:0-pid:4:wk:deferred_pr)of_pca9468_dt: pca9468,ichg_cfg is 6000000\n[    2.416795] [    2.416795] (CPU:0-pid:4:wk:deferred_pr)of_pca9468_dt: pca9468,v_float is 4380000\n[    2.416801] [    2.416801] (CPU:0-pid:4:wk:deferred_pr)of_pca9468_dt: pca9468,iin_topoff is 700000\n[    2.416808] [    2.416808] (CPU:0-pid:4:wk:deferred_pr)of_pca9468_dt: pca9468,ichg_topoff is 1000000\n[    2.416815] [    2.416815] (CPU:0-pid:4:wk:deferred_pr)of_pca9468_dt: pca9468,snsres is 1\n[    2.416822] [    2.416822] (CPU:0-pid:4:wk:deferred_pr)of_pca9468_dt: pca9468,fsw_cfg is 7\n[    2.416897] [    2.416897] (CPU:0-pid:4:wk:deferred_pr)get_usbpd phandle failed (-517)\n[    2.416905] [    2.416905] (CPU:0-pid:4:wk:deferred_pr)pca9468 7-005e: Error usbpd setup!\n[    2.417262] [    2.417262] (CPU:0-pid:386:wk:asus_mux_se)[USB_MUX][Result]. usb2_mux1_en : 0, pmi_mux_en : 0\n[    2.417273] [    2.417273] (CPU:0-pid:386:wk:asus_mux_se)[BAT][CHG]asus_mux_setting_1_work: POGO tpye : NO_INSERT\n[    2.417291] [    2.417291] (CPU:0-pid:386:wk:asus_mux_se)[BAT][CHG]TYPE_C_MISC_STATUS_REG = 0x40\n[    2.417298] [    2.417298] (CPU:0-pid:386:wk:asus_mux_se)[USB_MUX]btm_ovp_stats : 1 , pogo_ovp_stats : 1, pogo_dfp_stats : 1, btm_dfp_stats : 0\n[    2.418525] [    2.418525] (CPU:0-pid:458:wk:power_suppl)[PSY] power_supply_changed, psy_name:dc\n[    2.426716] [    2.426716] (CPU:0-pid:450:wk:power_suppl)[PSY] power_supply_changed, psy_name:usb\n[    2.426730] [    2.426730] (CPU:0-pid:433:wk:power_suppl)[PSY] power_supply_changed, psy_name:main\n[    2.426743] [    2.426743] (CPU:0-pid:428:wk:power_suppl)[PSY] power_supply_changed, psy_name:pc_port\n[    2.427059] [    2.427059] (CPU:0-pid:428:wk:status_chan)[BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[    2.430065] [    2.430065] (CPU:0-pid:386:wk:asus_mux_se)[USB_MUX][Result]. usb2_mux1_en : 0, pmi_mux_en : 0\n[    2.434526] [    2.434526] (CPU:0-pid:441:wk:power_suppl)[PSY] power_supply_changed, psy_name:battery\n[    2.436600] [    2.436600] (CPU:0-pid:386:wk:status_chan)[BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[    2.466894] [    2.466894] (CPU:0-pid:4:wk:deferred_pr)msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    2.467141] [    2.467141] (CPU:0-pid:4:wk:deferred_pr)msm-dwc3 a600000.ssusb: [USB] dwc3_msm_probe, pdev->dev =a600000.ssusb\n[    2.469410] [    2.469410] (CPU:0-pid:4:wk:deferred_pr)dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.469632] [    2.469632] (CPU:0-pid:4:wk:deferred_pr)dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    2.471903] [    2.471903] (CPU:0-pid:4:wk:deferred_pr)usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    2.471922] [    2.471917] (CPU:0-pid:4:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    2.471929] [    2.471924] (CPU:0-pid:4:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    2.471937] [    2.471932] (CPU:0-pid:4:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    2.471944] [    2.471939] (CPU:0-pid:4:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    2.471951] [    2.471946] (CPU:0-pid:4:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    2.471958] [    2.471954] (CPU:0-pid:4:wk:deferred_pr)sps:BAM 0x000000000a704000 is registered.\n[    2.472257] [    2.472257] (CPU:0-pid:4:wk:deferred_pr)msm-dwc3 a600000.ssusb: unable to get ssphy device\n[    2.474356] [    2.474356] (CPU:0-pid:4:wk:deferred_pr)msm-dwc3 a800000.ssusb: [USB] dwc3_msm_probe, pdev->dev =a800000.ssusb\n[    2.476563] [    2.476563] (CPU:0-pid:4:wk:deferred_pr)dwc3 a800000.dwc3: changing max_speed on rev 00000000\n[    2.476781] [    2.476781] (CPU:0-pid:4:wk:deferred_pr)dwc3 a800000.dwc3: Error getting ipc_log_ctxt\n[    2.477902] [    2.477897] (CPU:0-pid:4:wk:deferred_pr)register_client_adhoc:find path.src 101 dest 512\n[    2.478384] [    2.478379] (CPU:0-pid:4:wk:deferred_pr)register_client_adhoc:find path.src 101 dest 676\n[    2.478647] [    2.478642] (CPU:0-pid:4:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 751\n[    2.478938] [    2.478933] (CPU:0-pid:4:wk:deferred_pr)register_client_adhoc:Client handle 56 usb1\n[    2.479235] [    2.479235] (CPU:0-pid:330:wk:dwc3_otg_sm)msm-dwc3 a800000.ssusb: [USB] undefined state\n[    2.479245] [    2.479245] (CPU:0-pid:330:wk:dwc3_otg_sm)msm-dwc3 a800000.ssusb: [USB] dwc3_msm_resume\n[    2.479253] [    2.479253] (CPU:0-pid:330:wk:dwc3_otg_sm)msm-dwc3 a800000.ssusb: [USB] dwc3_msm_resume usb_speed=5 \n[    2.480495] [    2.480495] (CPU:0-pid:4:wk:deferred_pr)[PD] psy_changed: get property: typeC_mode:0\n[    2.480513] [    2.480513] (CPU:0-pid:4:wk:deferred_pr)[PD] psy_changed: get property: vbus present:0\n[    2.480538] [    2.480538] (CPU:0-pid:4:wk:deferred_pr)usbpd usbpd0: waive typec mode:0 present:0 orientation:0\n[    2.480877] [    2.480877] (CPU:0-pid:4:wk:deferred_pr)[PCA] pca9468_probe: =========START=========\n[    2.480888] [    2.480888] (CPU:0-pid:4:wk:deferred_pr)of_pca9468_dt: irq-gpio: 132 \n[    2.480896] [    2.480896] (CPU:0-pid:4:wk:deferred_pr)of_pca9468_dt: pca9468,iin_cfg is 1900000\n[    2.480903] [    2.480903] (CPU:0-pid:4:wk:deferred_pr)of_pca9468_dt: pca9468,ichg_cfg is 6000000\n[    2.480910] [    2.480910] (CPU:0-pid:4:wk:deferred_pr)of_pca9468_dt: pca9468,v_float is 4380000\n[    2.480917] [    2.480917] (CPU:0-pid:4:wk:deferred_pr)of_pca9468_dt: pca9468,iin_topoff is 700000\n[    2.480925] [    2.480925] (CPU:0-pid:4:wk:deferred_pr)of_pca9468_dt: pca9468,ichg_topoff is 1000000\n[    2.480931] [    2.480931] (CPU:0-pid:4:wk:deferred_pr)of_pca9468_dt: pca9468,snsres is 1\n[    2.480938] [    2.480938] (CPU:0-pid:4:wk:deferred_pr)of_pca9468_dt: pca9468,fsw_cfg is 7\n[    2.481043] [    2.481043] (CPU:0-pid:4:wk:deferred_pr)[PCA] pca9468_probe: pinctrl init done\n[    2.481084] [    2.481084] (CPU:0-pid:4:wk:deferred_pr)pca9468_hw_init: =========START=========\n[    2.481706] [    2.481706] (CPU:0-pid:330:wk:dwc3_otg_sm)msm-usb-hsphy 88e3000.hsphy: x0:65656565 x1:8c8c8c8c x2:2e2e2e2e x3:03030303\n[    2.483591] [    2.483591] (CPU:0-pid:4:wk:deferred_pr)[PCA] pca9468_set_input_current: iin=1900000\n[    2.483800] [    2.483800] (CPU:0-pid:4:wk:deferred_pr)pca9468_set_charging_current: ichg=6000000\n[    2.484008] [    2.484008] (CPU:0-pid:4:wk:deferred_pr)pca9468_set_vfloat: vfloat=4380000\n[    2.484136] [    2.484136] (CPU:0-pid:4:wk:deferred_pr)[PCA] --pca9468_hw_init\n[    2.484210] [    2.484210] (CPU:0-pid:4:wk:deferred_pr)[PCA] ++pca9468_irq_init++, gpio=132, irq=308\n[    2.484594] [    2.484594] (CPU:0-pid:4:wk:deferred_pr)[PCA] --pca9468_irq_init: success, client->irq==308\n[    2.484621] [    2.484621] (CPU:0-pid:4:wk:deferred_pr)[PCA] pca9468_probe: =========END=========\n[    2.484875] [    2.484875] (CPU:0-pid:4:wk:deferred_pr)msm-usb-ssphy-qmp 88e8000.ssphy: No separate ID extcon device\n[    2.484998] [    2.484998] (CPU:0-pid:4:wk:deferred_pr)msm-dwc3 a600000.ssusb: [USB] dwc3_msm_probe, pdev->dev =a600000.ssusb\n[    2.487228] [    2.487228] (CPU:0-pid:4:wk:deferred_pr)dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.487446] [    2.487446] (CPU:0-pid:4:wk:deferred_pr)dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    2.489599] [    2.489599] (CPU:0-pid:4:wk:deferred_pr)usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    2.489617] [    2.489612] (CPU:0-pid:4:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    2.489624] [    2.489620] (CPU:0-pid:4:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    2.489632] [    2.489627] (CPU:0-pid:4:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    2.489639] [    2.489634] (CPU:0-pid:4:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    2.489646] [    2.489641] (CPU:0-pid:4:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    2.489653] [    2.489648] (CPU:0-pid:4:wk:deferred_pr)sps:BAM 0x000000000a704000 is registered.\n[    2.489882] [    2.489876] (CPU:0-pid:4:wk:deferred_pr)register_client_adhoc:find path.src 61 dest 512\n[    2.490316] [    2.490311] (CPU:0-pid:4:wk:deferred_pr)register_client_adhoc:find path.src 61 dest 676\n[    2.490574] [    2.490570] (CPU:0-pid:4:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 583\n[    2.490862] [    2.490857] (CPU:0-pid:4:wk:deferred_pr)register_client_adhoc:Client handle 57 usb0\n[    2.491190] [    2.491190] (CPU:0-pid:328:wk:dwc3_otg_sm)msm-dwc3 a600000.ssusb: [USB] undefined state\n[    2.491199] [    2.491199] (CPU:0-pid:328:wk:dwc3_otg_sm)msm-dwc3 a600000.ssusb: [USB] dwc3_msm_resume\n[    2.491207] [    2.491207] (CPU:0-pid:328:wk:dwc3_otg_sm)msm-dwc3 a600000.ssusb: [USB] dwc3_msm_resume usb_speed=6 \n[    2.491314] [    2.491314] (CPU:0-pid:1:swapper/0)[debuginit] initcall deferred_probe_initcall+0x0/0xc0 returned 0 after 103915 usecs\n[    2.492065] [    2.492065] (CPU:0-pid:1:swapper/0)core_ctl: Creating CPU group 0\n[    2.492072] [    2.492072] (CPU:0-pid:1:swapper/0)core_ctl: Init CPU0 state\n[    2.492079] [    2.492079] (CPU:0-pid:1:swapper/0)core_ctl: Init CPU1 state\n[    2.492085] [    2.492085] (CPU:0-pid:1:swapper/0)core_ctl: Init CPU2 state\n[    2.492091] [    2.492091] (CPU:0-pid:1:swapper/0)core_ctl: Init CPU3 state\n[    2.492242] [    2.492242] (CPU:0-pid:1:swapper/0)core_ctl: Creating CPU group 4\n[    2.492249] [    2.492249] (CPU:0-pid:1:swapper/0)core_ctl: Init CPU4 state\n[    2.492255] [    2.492255] (CPU:0-pid:1:swapper/0)core_ctl: Init CPU5 state\n[    2.492261] [    2.492261] (CPU:0-pid:1:swapper/0)core_ctl: Init CPU6 state\n[    2.492344] [    2.492344] (CPU:0-pid:1:swapper/0)core_ctl: Creating CPU group 7\n[    2.492351] [    2.492351] (CPU:0-pid:1:swapper/0)core_ctl: Init CPU7 state\n[    2.492748] [    2.492748] (CPU:0-pid:1:swapper/0)registered taskstats version 1\n[    2.492755] [    2.492755] (CPU:0-pid:1:swapper/0)Loading compiled-in X.509 certificates\n[    2.492771] [    2.492771] (CPU:0-pid:1:swapper/0)page_owner is disabled\n[    2.494353] [    2.494353] (CPU:0-pid:4:wk:power_suppl)[PSY] power_supply_changed, psy_name:pca9468-mains\n[    2.497396] [    2.497396] (CPU:0-pid:328:wk:dwc3_otg_sm)msm-usb-hsphy 88e2000.hsphy: x0:64646464 x1:48484848 x2:2e2e2e2e x3:03030303\n[    2.498533] [    2.498533] (CPU:0-pid:4:wk:power_suppl)pca9468_read_adc: adc_ch=5, convert_val=-24462\n[    2.498725] [    2.498725] (CPU:0-pid:4:wk:power_suppl)pca9468_read_adc: adc_ch=3, convert_val=4240000\n[    2.498734] [    2.498734] (CPU:0-pid:4:wk:power_suppl)[PCA] get_const_charge_current: iin_adc=-24462(uA), vbat_adc=4240000(v), iin_sts=100(mA), ichg_sts=6000(mA)\n[    2.498741] [    2.498741] (CPU:0-pid:4:wk:power_suppl)[PCA] pca9468_mains_get_property: prop_charge_current, ret=6000000\n[    2.498750] [    2.498750] (CPU:0-pid:4:wk:power_suppl)[PCA] pca9468_mains_get_property: prop_charge_voltage, ret=-61\n[    2.498757] [    2.498757] (CPU:0-pid:4:wk:power_suppl)[PCA] pca9468_mains_get_property: prop_pd_port not yet initial\n[    2.503377] [    2.503377] (CPU:0-pid:4:wk:asus_30W_Du)[BAT][CHG]asus_30W_Dual_chg_work start\n[    2.503398] [    2.503398] (CPU:0-pid:4:wk:asus_30W_Du)[BAT][CHG]TYPE_C_MISC_STATUS_REG : 0xe5532e51\n[    2.503406] [    2.503406] (CPU:0-pid:4:wk:asus_30W_Du)[BAT][CHG]pogo_ovp_stats : 1, is_cc_connect : 0\n[    2.503416] [    2.503412] (CPU:0-pid:4:wk:asus_30W_Du)[BAT][CHG]WA to disable TypeC\n[    2.516714] [    2.516709] (CPU:0-pid:4:wk:asus_30W_Du)[BAT][CHG]WA to enable TypeC\n[    2.536957] [    2.536957] (CPU:0-pid:330:wk:dwc3_otg_sm)msm-dwc3 a800000.ssusb: [USB] DWC3 exited from low power mode\n[    2.536976] [    2.536976] (CPU:0-pid:330:wk:dwc3_otg_sm)msm-dwc3 a800000.ssusb: [USB] dwc3_msm_suspend\n[    2.537884] [    2.537884] (CPU:0-pid:330:wk:dwc3_otg_sm)msm-dwc3 a800000.ssusb: [USB] DWC3 in low power mode\n[    2.537909] [    2.537909] (CPU:0-pid:330:wk:dwc3_otg_sm)msm-dwc3 a800000.ssusb: [USB] idle state\n[    2.550292] [    2.550292] (CPU:0-pid:328:wk:dwc3_otg_sm)msm-dwc3 a600000.ssusb: [USB] DWC3 exited from low power mode\n[    2.550308] [    2.550308] (CPU:0-pid:328:wk:dwc3_otg_sm)msm-dwc3 a600000.ssusb: [USB] dwc3_msm_suspend\n[    2.551391] [    2.551391] (CPU:0-pid:328:wk:dwc3_otg_sm)msm-dwc3 a600000.ssusb: [USB] DWC3 in low power mode\n[    2.551411] [    2.551411] (CPU:0-pid:328:wk:dwc3_otg_sm)msm-dwc3 a600000.ssusb: [USB] idle state\n[    2.614366] [    2.614366] (CPU:0-pid:1:swapper/0)[debuginit] initcall clk_debug_init+0x0/0x1a8 returned 0 after 118672 usecs\n[    2.649178] [    2.649178] (CPU:0-pid:1:swapper/0)spss_utils [spss_init]: spss-utils driver Ver 3.0 18-Feb-2018.\n[    2.649626] [    2.649626] (CPU:0-pid:1:swapper/0)spss_utils [spss_probe]: Initialization completed ok, firmware_name [spss2p].\n[    2.654336] [    2.654336] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 40\n[    2.655029] [    2.655029] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 41\n[    2.655600] [    2.655600] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 42\n[    2.656154] [    2.656154] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 43\n[    2.656722] [    2.656722] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7 to group 44\n[    2.657261] [    2.657261] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8 to group 45\n[    2.657798] [    2.657798] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 46\n[    2.658328] [    2.658328] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 47\n[    2.658860] [    2.658860] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 48\n[    2.659980] [    2.659980] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 49\n[    2.660502] [    2.660502] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 50\n[    2.660981] [    2.660981] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 51\n[    2.661466] [    2.661466] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13 to group 52\n[    2.661951] [    2.661951] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14 to group 53\n[    2.662436] [    2.662436] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb15 to group 54\n[    2.665689] [    2.665684] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 590\n[    2.666071] [    2.666066] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 58 mdss_reg\n[    2.666111] [    2.666106] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 22 dest 512\n[    2.666424] [    2.666419] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 23 dest 512\n[    2.666718] [    2.666713] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 59 mdss_sde\n[    2.666791] [    2.666791] (CPU:0-pid:1:swapper/0)[drm:sde_dbg_init:5189] evtlog_status: enable:3, panic:1, dump:2\n[    2.666807] [    2.666807] (CPU:0-pid:1:swapper/0)msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops sde_wb_comp_ops)\n[    2.666817] [    2.666817] (CPU:0-pid:1:swapper/0)msm_drm ae00000.qcom,mdss_mdp: bound ae90000.qcom,dp_display (ops dp_display_comp_ops)\n[    2.667074] [    2.667074] (CPU:0-pid:1:swapper/0)msm-dsi-display:[dsi_display_bind] Successfully bind display panel 'dsi_r66451_fhd_dsc_cmd_dim_display'\n[    2.668450] [    2.668450] (CPU:0-pid:1:swapper/0)msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-primary (ops dsi_display_comp_ops)\n[    2.668462] [    2.668462] (CPU:0-pid:1:swapper/0)msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-secondary (ops dsi_display_comp_ops)\n[    2.668483] [    2.668483] (CPU:0-pid:1:swapper/0)[drm] mapped mdp address space @ffffff8019b00000\n[    2.668519] [    2.668519] (CPU:0-pid:1:swapper/0)msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: vbif_nrt_phys\n[    2.668551] [    2.668551] (CPU:0-pid:1:swapper/0)msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: sid_phys\n[    2.668573] [    2.668573] (CPU:0-pid:1:swapper/0)[drm:_sde_kms_get_splash_data:3213] splash mem num_regions:1\n[    2.668591] [    2.668591] (CPU:0-pid:1:swapper/0)[drm:_sde_kms_get_splash_data:3248] splash mem for disp:1 add:9c000000 size:2400000\n[    2.668600] [    2.668600] (CPU:0-pid:1:swapper/0)[sde_rsc:sde_rsc_client_create:105]: rsc not probed yet or not available\n[    2.669089] [    2.669089] (CPU:0-pid:1:swapper/0)[drm:sde_kms_hw_init:3394] sde hardware revision:0x50000001\n[    2.670222] [    2.670222] (CPU:0-pid:1:swapper/0)[drm] Created domain mdp_ns [20000,fffe0000] secure=0\n[    2.671913] [    2.671913] (CPU:0-pid:1:swapper/0)iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 55\n[    2.671935] [    2.671935] (CPU:0-pid:1:swapper/0)[drm] probing device qcom,smmu_sde_sec\n[    2.671945] [    2.671945] (CPU:0-pid:1:swapper/0)[drm] Created domain mdp_s [20000,fffe0000] secure=1\n[    2.674819] [    2.674819] (CPU:0-pid:1:swapper/0)[sde_rsc:is_sde_rsc_available:262]: rsc idx:0 not probed yet or not available\n[    2.674848] [    2.674848] (CPU:0-pid:1:swapper/0)[sde_rsc:sde_rsc_client_create:105]: rsc not probed yet or not available\n[    2.675101] [    2.675101] (CPU:0-pid:1:swapper/0)[sde_rsc:sde_rsc_client_create:105]: rsc not probed yet or not available\n[    2.675153] [    2.675153] (CPU:0-pid:1:swapper/0)[sde_rsc:sde_rsc_client_create:105]: rsc not probed yet or not available\n[    2.675343] [    2.675343] (CPU:0-pid:1:swapper/0)[drm-dp] dp_parser_get_vreg: no supply entry present: ???\n[    2.675350] [    2.675350] (CPU:0-pid:1:swapper/0)[drm-dp] dp_parser_get_vreg: no supply entry present: ???\n[    2.675357] [    2.675357] (CPU:0-pid:1:swapper/0)[drm-dp] dp_parser_get_vreg: no supply entry present: ???\n[    2.676380] [    2.676380] (CPU:0-pid:1:swapper/0)i2c i2c-9: of_i2c: modalias failure on /soc/qcom,dp_display@0/qcom,ctrl-supply-entries\n[    2.676390] [    2.676390] (CPU:0-pid:1:swapper/0)i2c i2c-9: Failed to create I2C device for /soc/qcom,dp_display@0/qcom,ctrl-supply-entries\n[    2.676398] [    2.676398] (CPU:0-pid:1:swapper/0)i2c i2c-9: of_i2c: modalias failure on /soc/qcom,dp_display@0/qcom,phy-supply-entries\n[    2.676406] [    2.676406] (CPU:0-pid:1:swapper/0)i2c i2c-9: Failed to create I2C device for /soc/qcom,dp_display@0/qcom,phy-supply-entries\n[    2.676414] [    2.676414] (CPU:0-pid:1:swapper/0)i2c i2c-9: of_i2c: modalias failure on /soc/qcom,dp_display@0/qcom,core-supply-entries\n[    2.676422] [    2.676422] (CPU:0-pid:1:swapper/0)i2c i2c-9: Failed to create I2C device for /soc/qcom,dp_display@0/qcom,core-supply-entries\n[    2.678985] [    2.678985] (CPU:0-pid:1:swapper/0)[drm-dp] is_unlocked: verifiedbootstate=orange\n[    2.678993] [    2.678993] (CPU:0-pid:1:swapper/0)[drm-dp] is_unlocked: UNLOCKED=\n[    2.679000] [    2.679000] (CPU:0-pid:1:swapper/0)[drm-dp] dp_init_sub_modules: Disable hdcp for unlocked device\n[    2.679028] [    2.679028] (CPU:0-pid:1:swapper/0)[sde_rsc:sde_rsc_client_create:105]: rsc not probed yet or not available\n[    2.679040] [    2.679040] (CPU:0-pid:1:swapper/0)[sde_rsc:sde_rsc_client_create:105]: rsc not probed yet or not available\n[    2.682191] [    2.682191] (CPU:0-pid:1:swapper/0)[drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    2.682199] [    2.682199] (CPU:0-pid:1:swapper/0)[drm] No driver support for vblank timestamp query.\n[    2.683408] [    2.683408] (CPU:0-pid:1:swapper/0)[drm] Initialized msm_drm 1.2.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    2.683496] [    2.683496] (CPU:0-pid:1:swapper/0)msm-dsi-panel:[dsi_panel_parse_topology:2893] default topology: lm: 1 comp_enc:1 intf: 1\n[    2.683643] [    2.683643] (CPU:0-pid:1:swapper/0)msm-dsi-panel:[dsi_panel_parse_partial_update_caps:2983] partial update disabled as the property is not set\n[    2.683793] [    2.683793] (CPU:0-pid:1:swapper/0)dsi-ctrl:[_dsi_ctrl_setup_isr] [DSI_0] IRQ 631 registered\n[    2.708406] [    2.708406] (CPU:0-pid:324:wk:deferred_pr)sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-qos-lut : doesn't exist in device tree\n[    2.708416] [    2.708416] (CPU:0-pid:324:wk:deferred_pr)sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-danger-lut : doesn't exist in device tree\n[    2.708424] [    2.708424] (CPU:0-pid:324:wk:deferred_pr)sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-safe-lut : doesn't exist in device tree\n[    2.708505] [    2.708500] (CPU:0-pid:324:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 590\n[    2.708888] [    2.708883] (CPU:0-pid:324:wk:deferred_pr)register_client_adhoc:Client handle 60 sde_reg\n[    2.709096] [    2.709096] (CPU:0-pid:324:wk:deferred_pr)iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 56\n[    2.709134] [    2.709134] (CPU:0-pid:324:wk:deferred_pr)sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    2.709317] [    2.709317] (CPU:0-pid:324:wk:deferred_pr)iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 57\n[    2.709341] [    2.709341] (CPU:0-pid:324:wk:deferred_pr)sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    2.709432] [    2.709427] (CPU:0-pid:324:wk:deferred_pr)register_client_adhoc:find path.src 25 dest 512\n[    2.709737] [    2.709732] (CPU:0-pid:324:wk:deferred_pr)register_client_adhoc:Client handle 61 mdss_rotator\n[    2.709758] [    2.709754] (CPU:0-pid:324:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 590\n[    2.710054] [    2.710049] (CPU:0-pid:324:wk:deferred_pr)register_client_adhoc:Client handle 62 mdss_rot_reg\n[    2.710309] [    2.710309] (CPU:0-pid:324:wk:deferred_pr)No change in context(0==0), skip\n[    2.711277] [    2.711277] (CPU:0-pid:324:wk:deferred_pr)sde_rotator_evtlog_create_debugfs: evtlog_status: enable:1, panic:1, dump:2\n[    2.712150] [    2.712150] (CPU:0-pid:324:wk:deferred_pr)sde_rotator ae00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    2.712601] [    2.712601] (CPU:0-pid:1:swapper/0)ngd_msm_ctrl 171c0000.slim: error creating ipc_logging context\n[    2.712610] [    2.712610] (CPU:0-pid:1:swapper/0)ngd_msm_ctrl 171c0000.slim: error creating ipc_error_logging context\n[    2.712921] [    2.712921] (CPU:0-pid:1:swapper/0)iommu: Adding device 171c0000.slim:qcom,iommu_slim_ctrl_cb to group 58\n[    2.714815] [    2.714815] (CPU:0-pid:1:swapper/0)ngd_msm_ctrl 17240000.slim: error creating ipc_logging context\n[    2.714824] [    2.714824] (CPU:0-pid:1:swapper/0)ngd_msm_ctrl 17240000.slim: error creating ipc_error_logging context\n[    2.715081] [    2.715081] (CPU:0-pid:1:swapper/0)iommu: Adding device 17240000.slim:qcom,iommu_slim_ctrl_cb to group 59\n[    2.717545] [    2.717545] (CPU:0-pid:1:swapper/0)[Keys][gpio_keys.c] gpio_keys_probe() +++\n[    2.718027] [    2.718027] (CPU:0-pid:1:swapper/0)input: gpio-keys as /devices/platform/soc/soc:gpio_keys_asus/input/input7\n[    2.718136] [    2.718136] (CPU:0-pid:1:swapper/0)[Keys][gpio_keys.c] gpio_keys_probe() ---\n[    2.718365] [    2.718365] (CPU:0-pid:1:swapper/0)qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm8150@0:qcom,pm8150_rtc: setting system clock to 1970-02-09 21:23:47 UTC (3446627)\n[    2.720195] [    2.720195] (CPU:0-pid:1:swapper/0)rt_charger_probe\n[    2.722497] [    2.722497] (CPU:0-pid:1:swapper/0)rt_charger_probe: OK!\n[    2.723315] [    2.723315] (CPU:0-pid:1:swapper/0)lpm_levels: register_cluster_lpm_stats()\n[    2.723475] [    2.723475] (CPU:0-pid:1:swapper/0)lpm_levels: register_cluster_lpm_stats()\n[    2.726805] [    2.726805] (CPU:0-pid:1:swapper/0)rmnet_ipa3 started initialization\n[    2.727353] [    2.727348] (CPU:0-pid:1:swapper/0)RNDIS_IPA module is loaded.\n[    2.728365] [    2.728365] (CPU:0-pid:1:swapper/0)msm_bus_late_init: Remove handoff bw requests\n[    2.729300] [    2.729300] (CPU:0-pid:1:swapper/0)hlos1_vote_aggre_noc_mmu_audio_tbu_gdsc: disabling\n[    2.729417] [    2.729417] (CPU:0-pid:1:swapper/0)hlos1_vote_aggre_noc_mmu_tbu1_gdsc: disabling\n[    2.729532] [    2.729532] (CPU:0-pid:1:swapper/0)hlos1_vote_aggre_noc_mmu_tbu2_gdsc: disabling\n[    2.729646] [    2.729646] (CPU:0-pid:1:swapper/0)hlos1_vote_aggre_noc_mmu_pcie_tbu_gdsc: disabling\n[    2.729775] [    2.729775] (CPU:0-pid:1:swapper/0)display_panel_avdd_eldo: disabling\n[    2.729783] [    2.729783] (CPU:0-pid:1:swapper/0)actuator_triple_rear_regulator: disabling\n[    2.729790] [    2.729790] (CPU:0-pid:1:swapper/0)actuator_triple_rear_aux_regulator: disabling\n[    2.729797] [    2.729797] (CPU:0-pid:1:swapper/0)camera_rear0_vana_ldo: disabling\n[    2.729805] [    2.729805] (CPU:0-pid:1:swapper/0)cam_dvdd_t_1p05_en: disabling\n[    2.729812] [    2.729812] (CPU:0-pid:1:swapper/0)camera_dvdd_t1_1p1_en: disabling\n[    2.730079] [    2.730079] (CPU:0-pid:324:wk:power_suppl)[PSY] power_supply_changed, psy_name:rt-chg\n[    2.731795] [    2.731795] (CPU:0-pid:1:swapper/0)cam_dvdd_w_f_1p2: disabling\n[    2.731803] [    2.731803] (CPU:0-pid:1:swapper/0)cam_avdd_2p8: disabling\n[    2.731825] [    2.731825] (CPU:0-pid:1:swapper/0)regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    2.731989] [    2.731989] (CPU:0-pid:1:swapper/0)__tcpc_class_complete_work = type_c_port0\n[    2.734583] [    2.734583] (CPU:0-pid:91:pd_dbg_info)///PD dbg info 42d\n[    2.734591] [    2.734591] (CPU:0-pid:91:pd_dbg_info)<    2.734>TCPC-TYPEC:typec_init: TrySNK\n[    2.735452] [    2.735452] (CPU:0-pid:1:swapper/0)chg_tcp_notifer_call TCP_NOTIFY_SINK_VBUS\n[    2.735491] [    2.735491] (CPU:0-pid:1:swapper/0)rt_chg_get_curr_state: curr = 0\n[    2.735498] [    2.735498] (CPU:0-pid:1:swapper/0)asus_request_DPDM_flag. enable = 0\n[    2.735505] [    2.735505] (CPU:0-pid:1:swapper/0)chg_tcp_notifer_call TCP_NOTIFY_SOURCE_VBUS\n[    2.735513] [    2.735513] (CPU:0-pid:1:swapper/0)[BAT][CHG]asus_request_BTM_otg_en. This function is only called by USB2. enable : 0\n[    2.735519] [    2.735519] (CPU:0-pid:1:swapper/0)[BAT][CHG]asus_request_BTM_otg_en: Allow BTM_DFP to control BTM_OTG\n[    2.743375] [    2.743375] (CPU:0-pid:1:swapper/0)[BAT][CHG]asus_request_BTM_otg_en. BTM_OTG_EN level : 0\n[    2.743383] [    2.743383] (CPU:0-pid:1:swapper/0)rt_chg_handle_source_vbus asus_request_BTM_otg_en = 0\n[    2.743392] [    2.743392] (CPU:0-pid:1:swapper/0)chg_tcp_notifer_call TCP_NOTIFY_DEFAULT, event = 11\n[    2.743460] [    2.743460] (CPU:0-pid:1:swapper/0)tcpc_device_irq_enable : tcpc irq enable OK!\n[    2.743472] [    2.743472] (CPU:0-pid:1:swapper/0)ALSA device list:\n[    2.743479] [    2.743479] (CPU:0-pid:1:swapper/0)  No soundcards found.\n[    2.745572] [    2.745572] (CPU:0-pid:1:swapper/0)Freeing unused kernel memory: 6144K\n[    2.750001] [    2.750001] (CPU:0-pid:324:wk:tcpc_event_)tcpc_event_init_work typec attache new = 0\n[    2.757045] [    2.757045] (CPU:0-pid:91:pd_dbg_info)///PD dbg info 41d\n[    2.757052] [    2.757052] (CPU:0-pid:91:pd_dbg_info)<    2.735>TCPC-TYPEC:** Unattached.SNK\n[    2.793437] [    2.793437] (CPU:0-pid:337:tcpc_timer_type)chg_tcp_notifer_call TCP_NOTIFY_DEFAULT, event = 11\n[    2.880225] [    2.880225] (CPU:0-pid:333:wk:set_1V2_2V8)[EDGE] snt8100fsr: INFO: set_1V2_2V8_pin_func: Set pinctl: PM8150B GPIO12 pull-up\n[    2.880264] [    2.880264] (CPU:0-pid:333:wk:set_1V2_2V8)[EDGE] snt8100fsr: INFO: set_pinctrl: Set_pinctrl start!\n[    2.880402] [    2.880402] (CPU:0-pid:333:wk:set_1V2_2V8)[EDGE] snt8100fsr: INFO: set_pinctrl: Set_pinctrl done!\n[    2.880793] [    2.880793] (CPU:0-pid:332:wk:aura_check_)[AURA_SYNC] FW VER : 0x4\n[    2.898081] [    2.898081] (CPU:0-pid:572:python3)CPU1: shutdown\n[    2.912344] [    2.912344] (CPU:0-pid:572:python3)CPU2: shutdown\n[    2.914383] [    2.914383] (CPU:0-pid:572:python3)CPU3: shutdown\n[    2.929291] [    2.929291] (CPU:0-pid:572:python3)CPU4: shutdown\n[    2.931160] [    2.931160] (CPU:0-pid:572:python3)CPU5: shutdown\n[    2.932990] [    2.932990] (CPU:0-pid:572:python3)CPU6: shutdown\n[    2.934683] [    2.934683] (CPU:0-pid:572:python3)CPU7: shutdown\n[    3.200271] [    3.200241] (CPU:0-pid:324:wk:asus_batter)[BAT][BMS]ATD_Is_battID_within_range: batt id(50700) is within 51 k range\n                \n[    3.200327] [    3.200327] (CPU:0-pid:324:wk:asus_batter)[BAT][BMS]asus_battery_version_work: battery version = C11p1901-T-01-0001-16.0620.1906.67, state = 1\n[    3.386816] [    3.386816] (CPU:0-pid:333:wk:set_1V2_2V8)[EDGE] snt8100fsr: INFO: set_1V2_2V8_pin_func: Test====ap lock for load fw====\n[    3.387565] [    3.387565] (CPU:0-pid:333:wk:set_1V2_2V8)[EDGE] snt8100fsr: INFO: set_1V2_2V8_pin_func: REGISTER_CHIP_ID_LSB = 0x4133\n[    3.387960] [    3.387960] (CPU:0-pid:333:wk:set_1V2_2V8)[EDGE] snt8100fsr: INFO: set_1V2_2V8_pin_func: REGISTER_CHIP_ID_MSB = 0x4\n[    3.413954] [    3.413954] (CPU:0-pid:333:wk:smblib_icl_)[PSY] power_supply_changed, psy_name:main\n[    3.414490] [    3.414490] (CPU:0-pid:333:wk:status_chan)[BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[    4.534368] [    4.534368] (CPU:0-pid:333:wk:get_config_)of_batterydata_get_best_profile: alium_860_89032_0000_3600mah_sept24th2018 found\n[    5.036708] [    5.036708] (CPU:0-pid:0:swapper/0)loadavg 0.24  0/440 \n[    5.386896] [    5.386896] (CPU:0-pid:333:wk:upload_wq_f)[EDGE] snt8100fsr: INFO: upload_firmware_internal: Enter upload_firmware_internal\n[    5.386942] [    5.386942] (CPU:0-pid:333:wk:upload_wq_f)[EDGE] snt8100fsr: INFO: open_firmware_file: Opening file: /vendor/asusfw/grip_fw/snt8100fsr.image_default\n[    5.387150] [    5.387150] (CPU:0-pid:333:wk:upload_wq_f)[EDGE] snt8100fsr: !!! ERROR !!!: open_firmware_file: Unable to open firmware file '/vendor/asusfw/grip_fw/snt8100fsr.image_default', error -2\n[    7.308590] [    7.308590] (CPU:0-pid:324:wk:update_gaug)(7)1970-02-09 21:23:52 :[BAT][Ser]report Capacity ==>93, FCC:5749mAh, BMS:93, V:4211mV, Cur:311mA, Temp:24.0C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[    7.308904] [    7.308904] (CPU:0-pid:324:wk:update_gaug)[BAT][BMS]print_battery_status: csoc=5251477, bsoc=233, msoc=238, ocv=4235113, SocSts=42, BatSts=0\n[   10.040041] [   10.040041] (CPU:0-pid:0:swapper/0)loadavg 0.54  0/441 \n[   10.453541] [   10.453541] (CPU:0-pid:333:wk:upload_wq_f)[EDGE] snt8100fsr: !!! ERROR !!!: open_firmware_file: Unable to open firmware file '/vendor/asusfw/grip_fw/snt8100fsr.image_default', error -2\n[   15.043373] [   15.043373] (CPU:0-pid:0:swapper/0)loadavg 0.81  0/441 \n[   15.520306] [   15.520306] (CPU:0-pid:333:wk:upload_wq_f)[EDGE] snt8100fsr: !!! ERROR !!!: open_firmware_file: Unable to open firmware file '/vendor/asusfw/grip_fw/snt8100fsr.image_default', error -2\n[   20.046704] [   20.046704] (CPU:0-pid:0:swapper/0)loadavg 1.07  0/442 \n[   20.586873] [   20.586873] (CPU:0-pid:333:wk:upload_wq_f)[EDGE] snt8100fsr: !!! ERROR !!!: open_firmware_file: Unable to open firmware file '/vendor/asusfw/grip_fw/snt8100fsr.image_default', error -2\n[   25.050038] [   25.050038] (CPU:0-pid:0:swapper/0)loadavg 1.30  0/442 \n[   25.653538] [   25.653538] (CPU:0-pid:333:wk:upload_wq_f)[EDGE] snt8100fsr: !!! ERROR !!!: open_firmware_file: Unable to open firmware file '/vendor/asusfw/grip_fw/snt8100fsr.image_default', error -2\n[   30.053369] [   30.053369] (CPU:0-pid:0:swapper/0)loadavg 1.52  0/442 \n[   30.720297] [   30.720297] (CPU:0-pid:333:wk:upload_wq_f)[EDGE] snt8100fsr: !!! ERROR !!!: open_firmware_file: Unable to open firmware file '/vendor/asusfw/grip_fw/snt8100fsr.image_default', error -2\n[   33.760463] [   33.760463] (CPU:0-pid:324:wk:init_batt_h)FG: file_op: open /batinfo/bat_health err! error code:-2\n[   33.760506] [   33.760506] (CPU:0-pid:324:wk:init_batt_h)FG: resotre_bat_health: Read bat health file failed!\n[   33.760583] [   33.760555] (CPU:0-pid:324:wk:battery_saf)[BAT][BMS][ERR]update_battery_safe +\n[   33.760592] [   33.760592] (CPU:0-pid:324:wk:battery_saf)init_batt_cycle_count_data +++\n[   33.760666] [   33.760666] (CPU:0-pid:324:wk:battery_saf)FG: file_op: open /batinfo/.bs err! error code:-2\n[   33.760704] [   33.760704] (CPU:0-pid:324:wk:battery_saf)FG: init_batt_cycle_count_data: Read cycle count file failed!\n[   33.760769] [   33.760742] (CPU:0-pid:324:wk:battery_saf)FG: update_battery_safe: cyclecount is not initialized\n[   35.056703] [   35.056703] (CPU:0-pid:0:swapper/0)loadavg 1.72  0/442 \n[   35.786910] [   35.786910] (CPU:0-pid:333:wk:upload_wq_f)[EDGE] snt8100fsr: !!! ERROR !!!: open_firmware_file: Unable to open firmware file '/vendor/asusfw/grip_fw/snt8100fsr.image_default', error -2\n[   40.060034] [   40.060034] (CPU:0-pid:0:swapper/0)loadavg 1.90  0/442 \n[   40.853535] [   40.853535] (CPU:0-pid:333:wk:upload_wq_f)[EDGE] snt8100fsr: !!! ERROR !!!: open_firmware_file: Unable to open firmware file '/vendor/asusfw/grip_fw/snt8100fsr.image_default', error -2\n[   45.063367] [   45.063367] (CPU:0-pid:0:swapper/0)loadavg 2.07  0/442 \n[   45.920334] [   45.920334] (CPU:0-pid:333:wk:upload_wq_f)[EDGE] snt8100fsr: !!! ERROR !!!: open_firmware_file: Unable to open firmware file '/vendor/asusfw/grip_fw/snt8100fsr.image_default', error -2\n[   50.066698] [   50.066698] (CPU:0-pid:0:swapper/0)loadavg 2.22  0/442 \n[   50.986866] [   50.986866] (CPU:0-pid:333:wk:upload_wq_f)[EDGE] snt8100fsr: !!! ERROR !!!: open_firmware_file: Unable to open firmware file '/vendor/asusfw/grip_fw/snt8100fsr.image_default', error -2\n[   55.070031] [   55.070031] (CPU:0-pid:0:swapper/0)loadavg 2.36  0/442 \n[   56.053515] [   56.053515] (CPU:0-pid:333:wk:upload_wq_f)[EDGE] snt8100fsr: INFO: open_firmware_file: Opening file: /vendor/asusfw/grip_fw/snt8100fsr.image_default\n[   56.053629] [   56.053629] (CPU:0-pid:333:wk:upload_wq_f)[EDGE] snt8100fsr: INFO: open_firmware_file: Opening file ret = -2\n[   56.053689] [   56.053689] (CPU:0-pid:333:wk:upload_wq_f)[EDGE] snt8100fsr: INFO: firmware_cleanup: Clear wq work and unregister irq\n[   56.053731] [   56.053731] (CPU:0-pid:333:wk:upload_wq_f)[EDGE] snt8100fsr: INFO: upload_firmware_internal: Clay: AP_Lock is locked\n[   56.053769] [   56.053769] (CPU:0-pid:333:wk:upload_wq_f)[EDGE] snt8100fsr: INFO: upload_firmware_internal: FAILED to load fw\n[   56.053849] [   56.053821] (CPU:0-pid:333:wk:upload_wq_f)(56)1970-02-09 21:24:40 :[Grip] Sensor: Load fw fail!!!\n[   60.073365] [   60.073365] (CPU:0-pid:0:swapper/0) [21:24:44.855023942] loadavg 2.42  0/442 \n[   62.773509] [   62.773509] (CPU:0-pid:334:goodix-parse_cf) [21:24:47.555168274] firmware goodix_cfg_group.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   62.773746] [   62.773746] (CPU:0-pid:334:goodix-parse_cf) [21:24:47.555405357] [GTP-ERR][goodix_read_cfg_bin:498] Cfg_bin image [goodix_cfg_group.bin] not available,error:-11, try_times:1\n[   62.773830] [   62.773830] (CPU:0-pid:104:wk:__do_regist) [21:24:47.555489420] [GTP-ERR][__do_register_ext_module:102] Module [Goodix_gsx_gesture] timeout\n[   62.773906] [   62.773906] (CPU:0-pid:206:wk:__do_regist) [21:24:47.555565618] [GTP-ERR][__do_register_ext_module:102] Module [goodix-fwu] timeout\n[   65.076696] [   65.076696] (CPU:0-pid:0:swapper/0) [21:24:49.858355326] loadavg 2.30  0/442 \n[   70.080027] [   70.080027] (CPU:0-pid:0:swapper/0) [21:24:54.861687075] loadavg 2.20  0/442 \n[   75.083360] [   75.083360] (CPU:0-pid:0:swapper/0) [21:24:59.865020646] loadavg 2.10  0/442 \n[   78.051935] [   78.051935] (CPU:1-pid:0:swapper/1) [21:25:02.833597035] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000\n[   78.052101] [   78.052101] (CPU:1-pid:0:swapper/1) [21:25:02.833761410] CPU1: Booted secondary processor [51df805e]\n[   80.086692] [   80.086692] (CPU:0-pid:0:swapper/0) [21:25:04.868353540] loadavg 2.01  0/441 \n[   85.090027] [   85.090027] (CPU:0-pid:0:swapper/0) [21:25:09.871688778] loadavg 1.93  0/442 \n[   90.093359] [   90.093359] (CPU:0-pid:0:swapper/0) [21:25:14.875021516] loadavg 1.93  1/443 \n[   95.096689] [   95.096689] (CPU:0-pid:0:swapper/0) [21:25:19.878351650] loadavg 1.94  1/443 \n[  100.100022] [  100.100022] (CPU:0-pid:0:swapper/0) [21:25:24.881684805] loadavg 1.94  1/443 \n[  105.103355] [  105.103355] (CPU:0-pid:0:swapper/0) [21:25:29.885018220] loadavg 1.95  1/443 \n[  107.183477] [  107.183477] (CPU:0-pid:0:swapper/0) [21:25:31.965140719] [ALARM] alarmtimer_fired: fg_esr_fast_cal_timer\n[  110.106689] [  110.106689] (CPU:0-pid:0:swapper/0) [21:25:34.888352833] loadavg 1.95  1/443 \n[  115.110019] [  115.110019] (CPU:0-pid:0:swapper/0) [21:25:39.891683748] loadavg 1.96  1/443 \n[  120.113351] [  120.113351] (CPU:0-pid:0:swapper/0) [21:25:44.895015861] loadavg 1.96  1/443 \n[  124.213447] [  124.213447] (CPU:0-pid:334:goodix-parse_cf) [21:25:48.995112571] firmware goodix_cfg_group.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  124.213669] [  124.213669] (CPU:0-pid:334:goodix-parse_cf) [21:25:48.995334394] [GTP-ERR][goodix_read_cfg_bin:498] Cfg_bin image [goodix_cfg_group.bin] not available,error:-11, try_times:2\n[  125.116683] [  125.116683] (CPU:0-pid:0:swapper/0) [21:25:49.898348443] loadavg 1.96  1/443 \n[  130.120015] [  130.120015] (CPU:0-pid:0:swapper/0) [21:25:54.901680816] loadavg 1.97  1/443 \n[  135.123350] [  135.123350] (CPU:0-pid:0:swapper/0) [21:25:59.905016679] loadavg 1.97  1/443 \n[  140.126681] [  140.126681] (CPU:0-pid:0:swapper/0) [21:26:04.908347750] loadavg 1.97  1/443 \n[  145.130013] [  145.130013] (CPU:0-pid:0:swapper/0) [21:26:09.911680332] loadavg 1.97  1/443 \n[  150.133344] [  150.133344] (CPU:0-pid:0:swapper/0) [21:26:14.915012237] loadavg 1.97  1/443 \n[  155.136677] [  155.136677] (CPU:0-pid:0:swapper/0) [21:26:19.918345235] loadavg 1.98  1/443 \n[  160.140011] [  160.140011] (CPU:0-pid:0:swapper/0) [21:26:24.921679744] loadavg 1.98  1/443 \n[  165.143343] [  165.143343] (CPU:0-pid:0:swapper/0) [21:26:29.925012534] loadavg 1.98  1/443 \n[  170.146675] [  170.146675] (CPU:0-pid:0:swapper/0) [21:26:34.928344439] loadavg 1.98  1/443 \n[  175.150009] [  175.150009] (CPU:0-pid:0:swapper/0) [21:26:39.931678896] loadavg 1.98  1/443 \n[  180.153339] [  180.153339] (CPU:0-pid:0:swapper/0) [21:26:44.935010123] loadavg 1.98  1/443 \n[  185.156674] [  185.156674] (CPU:0-pid:0:swapper/0) [21:26:49.938345153] loadavg 1.99  1/443 \n[  185.653460] [  185.653460] (CPU:0-pid:334:goodix-parse_cf) [21:26:50.435131765] firmware goodix_cfg_group.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  185.653669] [  185.653669] (CPU:0-pid:334:goodix-parse_cf) [21:26:50.435340827] [GTP-ERR][goodix_read_cfg_bin:498] Cfg_bin image [goodix_cfg_group.bin] not available,error:-11, try_times:3\n[  190.160004] [  190.160004] (CPU:0-pid:0:swapper/0) [21:26:54.941676068] loadavg 1.99  1/443 \n[  190.775163] [  190.775163] (CPU:0-pid:206:wk:update_gaug) [21:26:55.556834671] (190)1970-02-09 21:26:55 :[BAT][Ser]report Capacity ==>93, FCC:5749mAh, BMS:93, V:4203mV, Cur:337mA, Temp:24.2C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[  190.775492] [  190.775492] (CPU:0-pid:206:wk:update_gaug) [21:26:55.557163421] [BAT][BMS]print_battery_status: csoc=5233451, bsoc=233, msoc=238, ocv=4231940, SocSts=42, BatSts=0\n[  195.163337] [  195.163337] (CPU:0-pid:0:swapper/0) [21:26:59.945009327] loadavg 1.99  1/443 \n[  200.166669] [  200.166669] (CPU:0-pid:0:swapper/0) [21:27:04.948341232] loadavg 1.99  1/443 \n[  205.170001] [  205.170001] (CPU:0-pid:0:swapper/0) [21:27:09.951674126] loadavg 1.99  1/443 \n[  210.173335] [  210.173335] (CPU:0-pid:0:swapper/0) [21:27:14.955008322] loadavg 1.99  1/443 \n[  215.176666] [  215.176666] (CPU:0-pid:0:swapper/0) [21:27:19.958340227] loadavg 1.99  1/443 \n[  220.179998] [  220.179998] (CPU:0-pid:0:swapper/0) [21:27:24.961672496] loadavg 1.99  1/443 \n[  225.183331] [  225.183331] (CPU:0-pid:0:swapper/0) [21:27:29.965005911] loadavg 1.99  1/443 \n[  230.186663] [  230.186663] (CPU:0-pid:0:swapper/0) [21:27:34.968338180] loadavg 1.99  1/443 \n[  231.599866] [  231.599866] (CPU:0-pid:367:irq/560-msoc-de) [21:27:36.381541394] [PSY] power_supply_changed, psy_name:battery\n[  231.602926] [  231.602926] (CPU:0-pid:104:wk:status_chan) [21:27:36.384602071] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[  231.603582] [  231.603582] (CPU:0-pid:91:pd_dbg_info) [21:27:36.385257905] ///PD dbg info 66d\n[  231.603629] [  231.603629] (CPU:0-pid:91:pd_dbg_info) [21:27:36.385304988] <  231.603>TCPC-TCPC:bat_update_work_func battery update soc = 93\n[  231.626743] [  231.626743] (CPU:0-pid:91:pd_dbg_info) [21:27:36.408418480] ///PD dbg info 62d\n[  231.626790] [  231.626790] (CPU:0-pid:91:pd_dbg_info) [21:27:36.408465980] <  231.603>TCPC-TCPC:bat_update_work_func Battery Discharging\n[  235.189997] [  235.189997] (CPU:0-pid:0:swapper/0) [21:27:39.971672845] loadavg 1.99  1/443 \n[  240.193328] [  240.193328] (CPU:0-pid:0:swapper/0) [21:27:44.975004386] loadavg 1.99  1/443 \n[  245.196659] [  245.196659] (CPU:0-pid:0:swapper/0) [21:27:49.978336238] loadavg 1.99  1/443 \n[  247.093437] [  247.093437] (CPU:0-pid:334:goodix-parse_cf) [21:27:51.875114604] firmware goodix_cfg_group.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  247.093643] [  247.093643] (CPU:0-pid:334:goodix-parse_cf) [21:27:51.875320073] [GTP-ERR][goodix_read_cfg_bin:498] Cfg_bin image [goodix_cfg_group.bin] not available,error:-11, try_times:4\n[  250.199992] [  250.199992] (CPU:0-pid:0:swapper/0) [21:27:54.981669601] loadavg 1.99  1/443 \n[  255.203325] [  255.203325] (CPU:0-pid:0:swapper/0) [21:27:59.985003433] loadavg 1.99  1/443 \n[  260.206659] [  260.206659] (CPU:0-pid:0:swapper/0) [21:28:04.988337265] loadavg 1.99  1/443 \n[  265.209989] [  265.209989] (CPU:0-pid:0:swapper/0) [21:28:09.991668440] loadavg 2.00  1/443 \n[  270.213321] [  270.213321] (CPU:0-pid:0:swapper/0) [21:28:14.995000605] loadavg 2.00  1/443 \n[  275.216655] [  275.216655] (CPU:0-pid:0:swapper/0) [21:28:19.998335166] loadavg 2.00  1/443 \n[  280.219985] [  280.219985] (CPU:0-pid:0:swapper/0) [21:28:25.001665873] loadavg 2.00  1/443 \n[  285.223321] [  285.223321] (CPU:0-pid:0:swapper/0) [21:28:30.005001580] loadavg 2.00  1/443 \n[  290.226651] [  290.226651] (CPU:0-pid:0:swapper/0) [21:28:35.008332234] loadavg 2.00  1/443 \n[  295.229982] [  295.229982] (CPU:0-pid:0:swapper/0) [21:28:40.011664347] loadavg 2.00  1/443 \n[  300.233315] [  300.233315] (CPU:0-pid:0:swapper/0) [21:28:45.014997294] loadavg 2.00  1/443 \n[  305.236647] [  305.236647] (CPU:0-pid:0:swapper/0) [21:28:50.018330292] loadavg 2.00  1/443 \n[  308.533406] [  308.533406] (CPU:0-pid:334:goodix-parse_cf) [21:28:53.315088902] firmware goodix_cfg_group.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  308.533610] [  308.533610] (CPU:0-pid:334:goodix-parse_cf) [21:28:53.315292704] [GTP-ERR][goodix_read_cfg_bin:498] Cfg_bin image [goodix_cfg_group.bin] not available,error:-11, try_times:5\n[  309.546750] [  309.546750] (CPU:0-pid:334:goodix-parse_cf) [21:28:54.328433222] [GTP-ERR][goodix_read_cfg_bin:506] get cfg_bin FAILED\n[  309.546803] [  309.546803] (CPU:0-pid:334:goodix-parse_cf) [21:28:54.328485774] [GTP-ERR][goodix_cfg_bin_proc:166] read cfg_bin from /vendor/firmware FAILED\n[  310.239982] [  310.239982] (CPU:0-pid:0:swapper/0) [21:28:55.021665530] loadavg 1.91  1/442 \n[  313.653741] [  313.653741] (CPU:0-pid:75:wk:pd_locator_) [21:28:58.435424777] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  313.653804] [  313.653804] (CPU:0-pid:75:wk:pd_locator_) [21:28:58.435487589] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  313.655406] [  313.655406] (CPU:0-pid:4:wk:pd_locator_) [21:28:58.437089881] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  313.655444] [  313.655444] (CPU:0-pid:4:wk:pd_locator_) [21:28:58.437127068] ADSPRPC: Audio PD restart notifier locator down\n[  315.243307] [  315.243307] (CPU:0-pid:0:swapper/0) [21:29:00.024990924] loadavg 1.76  0/423 \n[  320.246640] [  320.246640] (CPU:0-pid:0:swapper/0) [21:29:05.028323767] loadavg 1.70  1/424 \n[  325.249973] [  325.249973] (CPU:0-pid:0:swapper/0) [21:29:10.031657703] loadavg 1.64  1/424 \n[  330.253304] [  330.253304] (CPU:0-pid:0:swapper/0) [21:29:15.034989399] loadavg 1.59  1/424 \n[  335.256637] [  335.256637] (CPU:0-pid:0:swapper/0) [21:29:20.038323126] loadavg 1.54  1/424 \n[  336.599865] [  336.599865] (CPU:0-pid:0:swapper/0) [21:29:21.381550812] [ALARM] alarmtimer_fired: fg_esr_fast_cal_timer\n[  340.259968] [  340.259968] (CPU:0-pid:0:swapper/0) [21:29:25.041654458] loadavg 1.50  1/424 \n[  340.960143] [  340.960115] (CPU:0-pid:75:wk:battery_saf) [21:29:25.741801403] [BAT][BMS][ERR]update_battery_safe +\n[  340.960151] [  340.960151] (CPU:0-pid:75:wk:battery_saf) [21:29:25.741837132] init_batt_cycle_count_data +++\n[  340.960321] [  340.960321] (CPU:0-pid:75:wk:battery_saf) [21:29:25.742007236] FG: file_op: open /batinfo/.bs err! error code:-2\n[  340.960356] [  340.960356] (CPU:0-pid:75:wk:battery_saf) [21:29:25.742042549] FG: init_batt_cycle_count_data: Read cycle count file failed!\n[  340.960414] [  340.960389] (CPU:0-pid:75:wk:battery_saf) [21:29:25.742074997] FG: update_battery_safe: cyclecount is not initialized\n[  345.263301] [  345.263301] (CPU:0-pid:0:swapper/0) [21:29:30.044987457] loadavg 1.46  1/424 \n[  350.266633] [  350.266633] (CPU:0-pid:0:swapper/0) [21:29:35.048320091] loadavg 1.42  1/424 \n[  355.269965] [  355.269965] (CPU:0-pid:0:swapper/0) [21:29:40.051652360] loadavg 1.39  1/424 \n[  360.273299] [  360.273299] (CPU:0-pid:0:swapper/0) [21:29:45.054987129] loadavg 1.36  1/422 \n[  365.276630] [  365.276630] (CPU:0-pid:0:swapper/0) [21:29:50.058318721] loadavg 1.33  1/421 \n[  370.279962] [  370.279962] (CPU:0-pid:0:swapper/0) [21:29:55.061650990] loadavg 1.30  1/421 \n[  375.283295] [  375.283295] (CPU:0-pid:0:swapper/0) [21:30:00.064984978] loadavg 1.27  1/421 \n[  380.286627] [  380.286627] (CPU:0-pid:0:swapper/0) [21:30:05.068317144] loadavg 1.25  1/421 \n[  381.921670] [  381.921670] (CPU:0-pid:75:wk:update_gaug) [21:30:06.703359598] (381)1970-02-09 21:30:06 :[BAT][Ser]report Capacity ==>92, FCC:5749mAh, BMS:92, V:4200mV, Cur:333mA, Temp:24.5C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[  381.921919] [  381.921919] (CPU:0-pid:75:wk:update_gaug) [21:30:06.703609129] [BAT][BMS]print_battery_status: csoc=5214644, bsoc=232, msoc=237, ocv=4228522, SocSts=42, BatSts=0\n[  385.289960] [  385.289960] (CPU:0-pid:0:swapper/0) [21:30:10.071650663] loadavg 1.23  1/421 \n[  390.293292] [  390.293292] (CPU:0-pid:0:swapper/0) [21:30:15.074982776] loadavg 1.21  1/421 \n[  395.296624] [  395.296624] (CPU:0-pid:0:swapper/0) [21:30:20.078315253] loadavg 1.19  1/421 \n[  400.299956] [  400.299956] (CPU:0-pid:0:swapper/0) [21:30:25.081648043] loadavg 1.18  1/421 \n[  405.303289] [  405.303289] (CPU:0-pid:0:swapper/0) [21:30:30.084981615] loadavg 1.16  1/421 \n[  410.306622] [  410.306622] (CPU:0-pid:0:swapper/0) [21:30:35.088315134] loadavg 1.15  1/421 \n[  415.309954] [  415.309954] (CPU:0-pid:0:swapper/0) [21:30:40.091646830] loadavg 1.14  1/421 \n[  420.313286] [  420.313286] (CPU:0-pid:0:swapper/0) [21:30:45.094979360] loadavg 1.13  1/421 \n[  425.316618] [  425.316618] (CPU:0-pid:0:swapper/0) [21:30:50.098312359] loadavg 1.11  1/421 \n[  430.319950] [  430.319950] (CPU:0-pid:0:swapper/0) [21:30:55.101644680] loadavg 1.10  1/421 \n[  435.323285] [  435.323285] (CPU:0-pid:0:swapper/0) [21:31:00.104979866] loadavg 1.10  1/421 \n[  440.326615] [  440.326615] (CPU:0-pid:0:swapper/0) [21:31:05.108311041] loadavg 1.09  1/421 \n[  445.329947] [  445.329947] (CPU:0-pid:0:swapper/0) [21:31:10.111643519] loadavg 1.08  1/421 \n[  450.333279] [  450.333279] (CPU:0-pid:0:swapper/0) [21:31:15.114975892] loadavg 1.07  1/421 \n[  455.336612] [  455.336612] (CPU:0-pid:0:swapper/0) [21:31:20.118309047] loadavg 1.07  1/421 \n[  460.339946] [  460.339946] (CPU:0-pid:0:swapper/0) [21:31:25.121643712] loadavg 1.06  1/421 \n[  465.343277] [  465.343277] (CPU:0-pid:0:swapper/0) [21:31:30.124975565] loadavg 1.06  1/421 \n[  470.346609] [  470.346609] (CPU:0-pid:0:swapper/0) [21:31:35.128308042] loadavg 1.05  1/421 \n[  475.349943] [  475.349943] (CPU:0-pid:0:swapper/0) [21:31:40.131642239] loadavg 1.05  1/421 \n[  480.353274] [  480.353274] (CPU:0-pid:0:swapper/0) [21:31:45.134973831] loadavg 1.04  1/421 \n[  485.356608] [  485.356608] (CPU:0-pid:0:swapper/0) [21:31:50.138307610] loadavg 1.04  1/421 \n[  490.359935] [  490.359935] (CPU:0-pid:0:swapper/0) [21:31:55.141635713] loadavg 0.95  0/420 \n[  495.363270] [  495.363270] (CPU:0-pid:0:swapper/0) [21:32:00.144970899] loadavg 0.96  1/421 \n[  500.366600] [  500.366600] (CPU:0-pid:0:swapper/0) [21:32:05.148301449] loadavg 0.96  1/421 \n[  505.369932] [  505.369932] (CPU:0-pid:0:swapper/0) [21:32:10.151634083] loadavg 0.96  1/421 \n[  510.373266] [  510.373266] (CPU:0-pid:0:swapper/0) [21:32:15.154968280] loadavg 0.97  1/421 \n[  515.376597] [  515.376597] (CPU:0-pid:0:swapper/0) [21:32:20.158300080] loadavg 0.97  1/421 \n[  520.379929] [  520.379929] (CPU:0-pid:0:swapper/0) [21:32:25.161632506] loadavg 0.97  1/421 \n[  525.383262] [  525.383262] (CPU:0-pid:0:swapper/0) [21:32:30.164966025] loadavg 0.97  1/421 \n[  530.386594] [  530.386594] (CPU:0-pid:0:swapper/0) [21:32:35.168298346] loadavg 0.97  1/421 \n[  535.389927] [  535.389927] (CPU:0-pid:0:swapper/0) [21:32:40.171632282] loadavg 0.98  1/421 \n[  540.393259] [  540.393259] (CPU:0-pid:0:swapper/0) [21:32:45.174964187] loadavg 0.98  1/421 \n[  541.307352] [  541.307352] (CPU:0-pid:367:irq/560-msoc-de) [21:32:46.089057507] [PSY] power_supply_changed, psy_name:battery\n[  541.309531] [  541.309531] (CPU:0-pid:4:wk:status_chan) [21:32:46.091236830] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[  541.309911] [  541.309911] (CPU:0-pid:91:pd_dbg_info) [21:32:46.091616778] ///PD dbg info 66d\n[  541.309978] [  541.309978] (CPU:0-pid:91:pd_dbg_info) [21:32:46.091683289] <  541.309>TCPC-TCPC:bat_update_work_func battery update soc = 92\n[  541.333308] [  541.333308] (CPU:0-pid:91:pd_dbg_info) [21:32:46.115013499] ///PD dbg info 62d\n[  541.333337] [  541.333337] (CPU:0-pid:91:pd_dbg_info) [21:32:46.115042353] <  541.310>TCPC-TCPC:bat_update_work_func Battery Discharging\n[  545.396591] [  545.396591] (CPU:0-pid:0:swapper/0) [21:32:50.178296717] loadavg 0.98  1/421 \n[  550.399923] [  550.399923] (CPU:0-pid:0:swapper/0) [21:32:55.181629455] loadavg 0.98  1/421 \n[  555.403256] [  555.403256] (CPU:0-pid:0:swapper/0) [21:33:00.184963078] loadavg 0.98  1/421 \n[  560.406589] [  560.406589] (CPU:0-pid:0:swapper/0) [21:33:05.188296389] loadavg 0.98  1/421 \n[  565.409920] [  565.409920] (CPU:0-pid:0:swapper/0) [21:33:10.191628189] loadavg 0.99  1/421 \n[  570.413253] [  570.413253] (CPU:0-pid:0:swapper/0) [21:33:15.194960823] loadavg 0.99  1/421 \n[  573.067991] [  573.067991] (CPU:0-pid:75:wk:update_gaug) [21:33:17.849699369] (573)1970-02-09 21:33:17 :[BAT][Ser]report Capacity ==>92, FCC:5749mAh, BMS:92, V:4195mV, Cur:339mA, Temp:24.5C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[  573.068198] [  573.068198] (CPU:0-pid:75:wk:update_gaug) [21:33:17.849906713] [BAT][BMS]print_battery_status: csoc=5196841, bsoc=231, msoc=236, ocv=4225104, SocSts=42, BatSts=0\n[  575.416585] [  575.416585] (CPU:0-pid:0:swapper/0) [21:33:20.198293665] loadavg 0.99  1/421 \n[  580.419917] [  580.419917] (CPU:0-pid:0:swapper/0) [21:33:25.201626351] loadavg 0.99  1/421 \n[  585.423251] [  585.423251] (CPU:0-pid:0:swapper/0) [21:33:30.204961069] loadavg 0.99  1/421 \n[  590.426582] [  590.426582] (CPU:0-pid:0:swapper/0) [21:33:35.208292244] loadavg 0.99  1/421 \n[  595.429914] [  595.429914] (CPU:0-pid:0:swapper/0) [21:33:40.211624617] loadavg 0.99  1/421 \n[  600.433247] [  600.433247] (CPU:0-pid:0:swapper/0) [21:33:45.214957668] loadavg 0.99  1/421 \n[  605.436579] [  605.436579] (CPU:0-pid:0:swapper/0) [21:33:50.218290458] loadavg 0.99  1/421 \n[  610.439913] [  610.439913] (CPU:0-pid:0:swapper/0) [21:33:55.221624706] loadavg 0.99  1/421 \n[  615.443244] [  615.443244] (CPU:0-pid:0:swapper/0) [21:34:00.224956976] loadavg 0.99  1/419 \n[  620.446576] [  620.446576] (CPU:0-pid:0:swapper/0) [21:34:05.228289453] loadavg 0.99  1/420 \n[  625.449910] [  625.449910] (CPU:0-pid:0:swapper/0) [21:34:10.231623233] loadavg 0.99  1/420 \n[  630.453239] [  630.453239] (CPU:0-pid:0:swapper/0) [21:34:15.234953106] loadavg 0.91  0/418 \n[  635.456573] [  635.456573] (CPU:0-pid:0:swapper/0) [21:34:20.238287094] loadavg 0.84  0/419 \n[  640.459905] [  640.459905] (CPU:0-pid:0:swapper/0) [21:34:25.241619780] loadavg 0.85  1/420 \n[  641.333306] [  641.333285] (CPU:0-pid:591:wk:battery_saf) [21:34:26.115000388] [BAT][BMS][ERR]update_battery_safe +\n[  641.333311] [  641.333311] (CPU:0-pid:591:wk:battery_saf) [21:34:26.115025909] init_batt_cycle_count_data +++\n[  641.333432] [  641.333432] (CPU:0-pid:591:wk:battery_saf) [21:34:26.115147055] FG: file_op: open /batinfo/.bs err! error code:-2\n[  641.333457] [  641.333457] (CPU:0-pid:591:wk:battery_saf) [21:34:26.115171847] FG: init_batt_cycle_count_data: Read cycle count file failed!\n[  641.333497] [  641.333480] (CPU:0-pid:591:wk:battery_saf) [21:34:26.115194867] FG: update_battery_safe: cyclecount is not initialized\n[  645.463237] [  645.463237] (CPU:0-pid:0:swapper/0) [21:34:30.244952883] loadavg 0.86  1/420 \n[  646.307350] [  646.307350] (CPU:0-pid:0:swapper/0) [21:34:31.089065363] [ALARM] alarmtimer_fired: fg_esr_fast_cal_timer\n[  650.466569] [  650.466569] (CPU:0-pid:0:swapper/0) [21:34:35.248284788] loadavg 0.87  1/420 \n[  655.469901] [  655.469901] (CPU:0-pid:0:swapper/0) [21:34:40.251617369] loadavg 0.88  1/420 \n[  660.473235] [  660.473235] (CPU:0-pid:0:swapper/0) [21:34:45.254951357] loadavg 0.89  1/420 \n[  665.476566] [  665.476566] (CPU:0-pid:0:swapper/0) [21:34:50.258283210] loadavg 0.90  1/420 \n[  670.479899] [  670.479899] (CPU:0-pid:0:swapper/0) [21:34:55.261616625] loadavg 0.91  1/420 \n[  675.483233] [  675.483233] (CPU:0-pid:0:swapper/0) [21:35:00.264951811] loadavg 0.92  1/420 \n[  680.486563] [  680.486563] (CPU:0-pid:0:swapper/0) [21:35:05.268281268] loadavg 0.92  1/420 \n[  685.489896] [  685.489896] (CPU:0-pid:0:swapper/0) [21:35:10.271615204] loadavg 0.93  1/420 \n[  690.493227] [  690.493227] (CPU:0-pid:0:swapper/0) [21:35:15.274946900] loadavg 0.93  1/420 \n[  695.496560] [  695.496560] (CPU:0-pid:0:swapper/0) [21:35:20.278279898] loadavg 0.94  1/420 \n[  700.499892] [  700.499892] (CPU:0-pid:0:swapper/0) [21:35:25.281612376] loadavg 0.94  1/420 \n[  705.503224] [  705.503224] (CPU:0-pid:0:swapper/0) [21:35:30.284945583] loadavg 0.95  1/420 \n[  710.506557] [  710.506557] (CPU:0-pid:0:swapper/0) [21:35:35.288279102] loadavg 0.95  1/420 \n[  715.509889] [  715.509889] (CPU:0-pid:0:swapper/0) [21:35:40.291611371] loadavg 0.96  1/420 \n[  720.513221] [  720.513221] (CPU:0-pid:0:swapper/0) [21:35:45.294943901] loadavg 0.96  1/420 \n[  725.516554] [  725.516554] (CPU:0-pid:0:swapper/0) [21:35:50.298276639] loadavg 0.96  1/420 \n[  730.519886] [  730.519886] (CPU:0-pid:0:swapper/0) [21:35:55.301609325] loadavg 0.97  1/420 \n[  735.523220] [  735.523220] (CPU:0-pid:0:swapper/0) [21:36:00.304943782] loadavg 0.97  1/420 \n[  740.526551] [  740.526551] (CPU:0-pid:0:swapper/0) [21:36:05.308275270] loadavg 0.97  1/420 \n[  745.529883] [  745.529883] (CPU:0-pid:0:swapper/0) [21:36:10.311607851] loadavg 0.97  1/420 \n[  750.533215] [  750.533215] (CPU:0-pid:0:swapper/0) [21:36:15.314940433] loadavg 0.97  1/420 \n[  755.536546] [  755.536546] (CPU:0-pid:0:swapper/0) [21:36:20.318271817] loadavg 0.90  0/418 \n[  760.539879] [  760.539879] (CPU:0-pid:0:swapper/0) [21:36:25.321605388] loadavg 0.82  0/419 \n[  764.214541] [  764.214541] (CPU:0-pid:75:wk:update_gaug) [21:36:28.996267994] (764)1970-02-09 21:36:28 :[BAT][Ser]report Capacity ==>92, FCC:5749mAh, BMS:92, V:4193mV, Cur:329mA, Temp:24.7C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[  764.214581] [  764.214581] (CPU:0-pid:75:wk:update_gaug) [21:36:28.996307629] [BAT][BMS]print_battery_status: csoc=5177995, bsoc=230, msoc=235, ocv=4221686, SocSts=42, BatSts=0\n[  765.543211] [  765.543211] (CPU:0-pid:0:swapper/0) [21:36:30.324938283] loadavg 0.84  1/420 \n[  770.546543] [  770.546543] (CPU:0-pid:0:swapper/0) [21:36:35.328270656] loadavg 0.85  1/420 \n[  775.549876] [  775.549876] (CPU:0-pid:0:swapper/0) [21:36:40.331604175] loadavg 0.86  1/420 \n[  780.553208] [  780.553208] (CPU:0-pid:0:swapper/0) [21:36:45.334936288] loadavg 0.87  1/420 \n[  785.556541] [  785.556541] (CPU:0-pid:0:swapper/0) [21:36:50.338269912] loadavg 0.88  1/420 \n[  790.559872] [  790.559872] (CPU:0-pid:0:swapper/0) [21:36:55.341601816] loadavg 0.89  1/420 \n[  795.563206] [  795.563206] (CPU:0-pid:0:swapper/0) [21:37:00.344935544] loadavg 0.90  1/420 \n[  800.566537] [  800.566537] (CPU:0-pid:0:swapper/0) [21:37:05.348267709] loadavg 0.91  1/420 \n[  805.569869] [  805.569869] (CPU:0-pid:0:swapper/0) [21:37:10.351600187] loadavg 0.92  1/420 \n[  810.573203] [  810.573203] (CPU:0-pid:0:swapper/0) [21:37:15.354933914] loadavg 0.92  1/420 \n[  815.576534] [  815.576534] (CPU:0-pid:0:swapper/0) [21:37:20.358265975] loadavg 0.93  1/420 \n[  820.579866] [  820.579866] (CPU:0-pid:0:swapper/0) [21:37:25.361598505] loadavg 0.93  1/420 \n[  825.583199] [  825.583199] (CPU:0-pid:0:swapper/0) [21:37:30.364931972] loadavg 0.94  1/420 \n[  830.586532] [  830.586532] (CPU:0-pid:0:swapper/0) [21:37:35.368265075] loadavg 0.94  1/420 \n[  835.589864] [  835.589864] (CPU:0-pid:0:swapper/0) [21:37:40.371598229] loadavg 0.95  1/420 \n[  840.593196] [  840.593196] (CPU:0-pid:0:swapper/0) [21:37:45.374930238] loadavg 0.95  1/420 \n[  844.010857] [  844.010857] (CPU:0-pid:367:irq/560-msoc-de) [21:37:48.792591672] [PSY] power_supply_changed, psy_name:battery\n[  844.012529] [  844.012529] (CPU:0-pid:591:wk:status_chan) [21:37:48.794263912] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[  844.013094] [  844.013094] (CPU:0-pid:91:pd_dbg_info) [21:37:48.794828600] ///PD dbg info 66d\n[  844.013116] [  844.013116] (CPU:0-pid:91:pd_dbg_info) [21:37:48.794850214] <  844.013>TCPC-TCPC:bat_update_work_func battery update soc = 92\n[  844.033234] [  844.033234] (CPU:0-pid:91:pd_dbg_info) [21:37:48.814968810] ///PD dbg info 62d\n[  844.033256] [  844.033256] (CPU:0-pid:91:pd_dbg_info) [21:37:48.814990425] <  844.013>TCPC-TCPC:bat_update_work_func Battery Discharging\n[  845.596528] [  845.596528] (CPU:0-pid:0:swapper/0) [21:37:50.378262872] loadavg 0.96  1/420 \n[  850.599860] [  850.599860] (CPU:0-pid:0:swapper/0) [21:37:55.381595350] loadavg 0.96  1/420 \n[  855.603193] [  855.603193] (CPU:0-pid:0:swapper/0) [21:38:00.384929077] loadavg 0.96  1/420 \n[  860.606526] [  860.606526] (CPU:0-pid:0:swapper/0) [21:38:05.388262388] loadavg 0.97  1/420 \n[  865.609856] [  865.609856] (CPU:0-pid:0:swapper/0) [21:38:10.391592991] loadavg 0.89  0/418 \n[  870.613189] [  870.613189] (CPU:0-pid:0:swapper/0) [21:38:15.394925781] loadavg 0.82  0/419 \n[  875.616522] [  875.616522] (CPU:0-pid:0:swapper/0) [21:38:20.398259300] loadavg 0.83  1/420 \n[  880.619854] [  880.619854] (CPU:0-pid:0:swapper/0) [21:38:25.401591621] loadavg 0.84  1/420 \n[  885.623187] [  885.623187] (CPU:0-pid:0:swapper/0) [21:38:30.404925401] loadavg 0.86  1/420 \n[  890.626518] [  890.626518] (CPU:0-pid:0:swapper/0) [21:38:35.408257514] loadavg 0.87  1/420 \n[  895.629850] [  895.629850] (CPU:0-pid:0:swapper/0) [21:38:40.411589783] loadavg 0.88  1/420 \n[  900.633183] [  900.633183] (CPU:0-pid:0:swapper/0) [21:38:45.414922521] loadavg 0.89  1/420 \n[  905.636515] [  905.636515] (CPU:0-pid:0:swapper/0) [21:38:50.418255520] loadavg 0.90  1/420 \n[  910.639848] [  910.639848] (CPU:0-pid:0:swapper/0) [21:38:55.421589352] loadavg 0.90  1/420 \n[  915.643180] [  915.643180] (CPU:0-pid:0:swapper/0) [21:39:00.424921829] loadavg 0.91  1/419 \n[  920.646512] [  920.646512] (CPU:0-pid:0:swapper/0) [21:39:05.428254255] loadavg 0.92  1/420 \n[  925.649845] [  925.649845] (CPU:0-pid:0:swapper/0) [21:39:10.431587722] loadavg 0.92  1/420 \n[  930.653177] [  930.653177] (CPU:0-pid:0:swapper/0) [21:39:15.434919991] loadavg 0.93  1/420 \n[  935.656510] [  935.656510] (CPU:0-pid:0:swapper/0) [21:39:20.438253562] loadavg 0.94  1/420 \n[  940.659842] [  940.659842] (CPU:0-pid:0:swapper/0) [21:39:25.441585519] loadavg 0.94  1/420 \n[  941.706565] [  941.706550] (CPU:0-pid:601:wk:battery_saf) [21:39:26.488293644] [BAT][BMS][ERR]update_battery_safe +\n[  941.706569] [  941.706569] (CPU:0-pid:601:wk:battery_saf) [21:39:26.488312915] init_batt_cycle_count_data +++\n[  941.706662] [  941.706662] (CPU:0-pid:601:wk:battery_saf) [21:39:26.488406301] FG: file_op: open /batinfo/.bs err! error code:-2\n[  941.706681] [  941.706681] (CPU:0-pid:601:wk:battery_saf) [21:39:26.488425103] FG: init_batt_cycle_count_data: Read cycle count file failed!\n[  941.706712] [  941.706699] (CPU:0-pid:601:wk:battery_saf) [21:39:26.488442603] FG: update_battery_safe: cyclecount is not initialized\n[  945.663174] [  945.663174] (CPU:0-pid:0:swapper/0) [21:39:30.444918466] loadavg 0.95  1/420 \n[  949.010854] [  949.010854] (CPU:0-pid:0:swapper/0) [21:39:33.792598174] [ALARM] alarmtimer_fired: fg_esr_fast_cal_timer\n[  950.666506] [  950.666506] (CPU:0-pid:0:swapper/0) [21:39:35.448251204] loadavg 0.95  1/420 \n[  955.361117] [  955.361117] (CPU:0-pid:601:wk:update_gaug) [21:39:40.142862400] (955)1970-02-09 21:39:40 :[BAT][Ser]report Capacity ==>92, FCC:5749mAh, BMS:92, V:4188mV, Cur:332mA, Temp:24.7C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[  955.361257] [  955.361257] (CPU:0-pid:601:wk:update_gaug) [21:39:40.143001880] [BAT][BMS]print_battery_status: csoc=5158729, bsoc=230, msoc=235, ocv=4218268, SocSts=42, BatSts=0\n[  955.669839] [  955.669839] (CPU:0-pid:0:swapper/0) [21:39:40.451583942] loadavg 0.95  1/420 \n[  960.673171] [  960.673171] (CPU:0-pid:0:swapper/0) [21:39:45.454916732] loadavg 0.88  0/418 \n[  965.676503] [  965.676503] (CPU:0-pid:0:swapper/0) [21:39:50.458248793] loadavg 0.81  0/419 \n[  970.679835] [  970.679835] (CPU:0-pid:0:swapper/0) [21:39:55.461582260] loadavg 0.82  1/420 \n[  975.683168] [  975.683168] (CPU:0-pid:0:swapper/0) [21:40:00.464915258] loadavg 0.84  1/420 \n[  980.686500] [  980.686500] (CPU:0-pid:0:swapper/0) [21:40:05.468247319] loadavg 0.85  1/420 \n[  985.689833] [  985.689833] (CPU:0-pid:0:swapper/0) [21:40:10.471580943] loadavg 0.86  1/420 \n[  990.693164] [  990.693164] (CPU:0-pid:0:swapper/0) [21:40:15.474912899] loadavg 0.87  1/420 \n[  995.696496] [  995.696496] (CPU:0-pid:0:swapper/0) [21:40:20.478245585] loadavg 0.88  1/420 \n[ 1000.699829] [ 1000.699829] (CPU:0-pid:0:swapper/0) [21:40:25.481578219] loadavg 0.89  1/420 \n[ 1005.703162] [ 1005.703162] (CPU:0-pid:0:swapper/0) [21:40:30.484911790] loadavg 0.90  1/420 \n[ 1010.706494] [ 1010.706494] (CPU:0-pid:0:swapper/0) [21:40:35.488244893] loadavg 0.91  1/420 \n[ 1015.709827] [ 1015.709827] (CPU:0-pid:0:swapper/0) [21:40:40.491577735] loadavg 0.91  1/420 \n[ 1020.713158] [ 1020.713158] (CPU:0-pid:0:swapper/0) [21:40:45.494909588] loadavg 0.92  1/420 \n[ 1025.716490] [ 1025.716490] (CPU:0-pid:0:swapper/0) [21:40:50.498242430] loadavg 0.93  1/420 \n[ 1030.719823] [ 1030.719823] (CPU:0-pid:0:swapper/0) [21:40:55.501575324] loadavg 0.93  1/420 \n[ 1035.723156] [ 1035.723156] (CPU:0-pid:0:swapper/0) [21:41:00.504909312] loadavg 0.94  1/420 \n[ 1040.726488] [ 1040.726488] (CPU:0-pid:0:swapper/0) [21:41:05.508241269] loadavg 0.94  1/420 \n[ 1045.729820] [ 1045.729820] (CPU:0-pid:0:swapper/0) [21:41:10.511573955] loadavg 0.95  1/420 \n[ 1050.733152] [ 1050.733152] (CPU:0-pid:0:swapper/0) [21:41:15.514905912] loadavg 0.87  0/418 \n[ 1055.736484] [ 1055.736484] (CPU:0-pid:0:swapper/0) [21:41:20.518238545] loadavg 0.80  0/419 \n[ 1060.739817] [ 1060.739817] (CPU:0-pid:0:swapper/0) [21:41:25.521572846] loadavg 0.82  1/420 \n[ 1065.743149] [ 1065.743149] (CPU:0-pid:0:swapper/0) [21:41:30.524905115] loadavg 0.83  1/420 \n[ 1070.746481] [ 1070.746481] (CPU:0-pid:0:swapper/0) [21:41:35.528237749] loadavg 0.84  1/420 \n[ 1075.749814] [ 1075.749814] (CPU:0-pid:0:swapper/0) [21:41:40.531570747] loadavg 0.86  1/420 \n[ 1080.753146] [ 1080.753146] (CPU:0-pid:0:swapper/0) [21:41:45.534903069] loadavg 0.87  1/420 \n[ 1085.756479] [ 1085.756479] (CPU:0-pid:0:swapper/0) [21:41:50.538236380] loadavg 0.88  1/420 \n[ 1090.759811] [ 1090.759811] (CPU:0-pid:0:swapper/0) [21:41:55.541568805] loadavg 0.89  1/420 \n[ 1095.763143] [ 1095.763143] (CPU:0-pid:0:swapper/0) [21:42:00.544902012] loadavg 0.90  1/420 \n[ 1100.766475] [ 1100.766475] (CPU:0-pid:0:swapper/0) [21:42:05.548234281] loadavg 0.91  1/420 \n[ 1105.769807] [ 1105.769807] (CPU:0-pid:0:swapper/0) [21:42:10.551567019] loadavg 0.91  1/420 \n[ 1110.773140] [ 1110.773140] (CPU:0-pid:0:swapper/0) [21:42:15.554900539] loadavg 0.92  1/420 \n[ 1115.776472] [ 1115.776472] (CPU:0-pid:0:swapper/0) [21:42:20.558232912] loadavg 0.93  1/420 \n[ 1120.779804] [ 1120.779804] (CPU:0-pid:0:swapper/0) [21:42:25.561565598] loadavg 0.93  1/420 \n[ 1125.783137] [ 1125.783137] (CPU:0-pid:0:swapper/0) [21:42:30.564898700] loadavg 0.94  1/420 \n[ 1130.786468] [ 1130.786468] (CPU:0-pid:0:swapper/0) [21:42:35.568230345] loadavg 0.86  0/418 \n[ 1135.789801] [ 1135.789801] (CPU:0-pid:0:swapper/0) [21:42:40.571564020] loadavg 0.79  0/419 \n[ 1140.793134] [ 1140.793134] (CPU:0-pid:0:swapper/0) [21:42:45.574897019] loadavg 0.81  1/420 \n[ 1141.715110] [ 1141.715110] (CPU:0-pid:367:irq/560-msoc-de) [21:42:46.496873621] [PSY] power_supply_changed, psy_name:battery\n[ 1141.716546] [ 1141.716546] (CPU:0-pid:591:wk:status_chan) [21:42:46.498309402] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[ 1141.717014] [ 1141.717014] (CPU:0-pid:91:pd_dbg_info) [21:42:46.498776746] ///PD dbg info 66d\n[ 1141.717028] [ 1141.717028] (CPU:0-pid:91:pd_dbg_info) [21:42:46.498790913] < 1141.716>TCPC-TCPC:bat_update_work_func battery update soc = 91\n[ 1141.739866] [ 1141.739866] (CPU:0-pid:91:pd_dbg_info) [21:42:46.521628832] ///PD dbg info 62d\n[ 1141.739880] [ 1141.739880] (CPU:0-pid:91:pd_dbg_info) [21:42:46.521643050] < 1141.717>TCPC-TCPC:bat_update_work_func Battery Discharging\n[ 1145.796466] [ 1145.796466] (CPU:0-pid:0:swapper/0) [21:42:50.578229184] loadavg 0.82  1/420 \n[ 1146.507848] [ 1146.507848] (CPU:0-pid:601:wk:update_gaug) [21:42:51.289611598] (1146)1970-02-09 21:42:51 :[BAT][Ser]report Capacity ==>91, FCC:5749mAh, BMS:91, V:4185mV, Cur:344mA, Temp:24.7C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[ 1146.507956] [ 1146.507956] (CPU:0-pid:601:wk:update_gaug) [21:42:51.289719880] [BAT][BMS]print_battery_status: csoc=5140863, bsoc=229, msoc=234, ocv=4214850, SocSts=42, BatSts=0\n[ 1150.799798] [ 1150.799798] (CPU:0-pid:0:swapper/0) [21:42:55.581561766] loadavg 0.84  1/420 \n[ 1155.803130] [ 1155.803130] (CPU:0-pid:0:swapper/0) [21:43:00.584894816] loadavg 0.85  1/420 \n[ 1160.806463] [ 1160.806463] (CPU:0-pid:0:swapper/0) [21:43:05.588228335] loadavg 0.86  1/420 \n[ 1165.809795] [ 1165.809795] (CPU:0-pid:0:swapper/0) [21:43:10.591560552] loadavg 0.87  1/420 \n[ 1170.813127] [ 1170.813127] (CPU:0-pid:0:swapper/0) [21:43:15.594893134] loadavg 0.88  1/420 \n[ 1175.816460] [ 1175.816460] (CPU:0-pid:0:swapper/0) [21:43:20.598225976] loadavg 0.89  1/420 \n[ 1180.819792] [ 1180.819792] (CPU:0-pid:0:swapper/0) [21:43:25.601558766] loadavg 0.90  1/420 \n[ 1185.823125] [ 1185.823125] (CPU:0-pid:0:swapper/0) [21:43:30.604892754] loadavg 0.91  1/420 \n[ 1190.826457] [ 1190.826457] (CPU:0-pid:0:swapper/0) [21:43:35.608224711] loadavg 0.92  1/420 \n[ 1195.829789] [ 1195.829789] (CPU:0-pid:0:swapper/0) [21:43:40.611557137] loadavg 0.92  1/420 \n[ 1200.833122] [ 1200.833122] (CPU:0-pid:0:swapper/0) [21:43:45.614890864] loadavg 0.93  1/420 \n[ 1205.836453] [ 1205.836453] (CPU:0-pid:0:swapper/0) [21:43:50.618222613] loadavg 0.85  0/419 \n[ 1210.839787] [ 1210.839787] (CPU:0-pid:0:swapper/0) [21:43:55.621556861] loadavg 0.86  1/420 \n[ 1215.843119] [ 1215.843119] (CPU:0-pid:0:swapper/0) [21:44:00.624889026] loadavg 0.88  1/420 \n[ 1220.846450] [ 1220.846450] (CPU:0-pid:0:swapper/0) [21:44:05.628221296] loadavg 0.89  1/419 \n[ 1225.849783] [ 1225.849783] (CPU:0-pid:0:swapper/0) [21:44:10.631554711] loadavg 0.89  1/420 \n[ 1230.853115] [ 1230.853115] (CPU:0-pid:0:swapper/0) [21:44:15.634886928] loadavg 0.90  1/420 \n[ 1235.856448] [ 1235.856448] (CPU:0-pid:0:swapper/0) [21:44:20.638220135] loadavg 0.91  1/420 \n[ 1240.859780] [ 1240.859780] (CPU:0-pid:0:swapper/0) [21:44:25.641552456] loadavg 0.92  1/420 \n[ 1242.079868] [ 1242.079857] (CPU:0-pid:614:wk:battery_saf) [21:44:26.861630234] [BAT][BMS][ERR]update_battery_safe +\n[ 1242.079871] [ 1242.079871] (CPU:0-pid:614:wk:battery_saf) [21:44:26.861643723] init_batt_cycle_count_data +++\n[ 1242.079942] [ 1242.079942] (CPU:0-pid:614:wk:battery_saf) [21:44:26.861714609] FG: file_op: open /batinfo/.bs err! error code:-2\n[ 1242.079955] [ 1242.079955] (CPU:0-pid:614:wk:battery_saf) [21:44:26.861727786] FG: init_batt_cycle_count_data: Read cycle count file failed!\n[ 1242.079976] [ 1242.079967] (CPU:0-pid:614:wk:battery_saf) [21:44:26.861739869] FG: update_battery_safe: cyclecount is not initialized\n[ 1245.863112] [ 1245.863112] (CPU:0-pid:0:swapper/0) [21:44:30.644885454] loadavg 0.92  1/420 \n[ 1250.866444] [ 1250.866444] (CPU:0-pid:0:swapper/0) [21:44:35.648217984] loadavg 0.93  1/420 \n[ 1255.869777] [ 1255.869777] (CPU:0-pid:0:swapper/0) [21:44:40.651550722] loadavg 0.93  1/420 \n[ 1260.873110] [ 1260.873110] (CPU:0-pid:0:swapper/0) [21:44:45.654884293] loadavg 0.94  1/420 \n[ 1265.876442] [ 1265.876442] (CPU:0-pid:0:swapper/0) [21:44:50.658216719] loadavg 0.94  1/420 \n[ 1270.879773] [ 1270.879773] (CPU:0-pid:0:swapper/0) [21:44:55.661548988] loadavg 0.87  0/418 \n[ 1275.883106] [ 1275.883106] (CPU:0-pid:0:swapper/0) [21:45:00.664881882] loadavg 0.80  0/419 \n[ 1280.886438] [ 1280.886438] (CPU:0-pid:0:swapper/0) [21:45:05.668215141] loadavg 0.81  1/420 \n[ 1285.889771] [ 1285.889771] (CPU:0-pid:0:swapper/0) [21:45:10.671548244] loadavg 0.83  1/420 \n[ 1290.893103] [ 1290.893103] (CPU:0-pid:0:swapper/0) [21:45:15.674880565] loadavg 0.84  1/420 \n[ 1295.896435] [ 1295.896435] (CPU:0-pid:0:swapper/0) [21:45:20.678213095] loadavg 0.85  1/420 \n[ 1300.899767] [ 1300.899767] (CPU:0-pid:0:swapper/0) [21:45:25.681545729] loadavg 0.87  1/420 \n[ 1305.903100] [ 1305.903100] (CPU:0-pid:0:swapper/0) [21:45:30.684878831] loadavg 0.88  1/420 \n[ 1310.906433] [ 1310.906433] (CPU:0-pid:0:swapper/0) [21:45:35.688212142] loadavg 0.89  1/420 \n[ 1315.909765] [ 1315.909765] (CPU:0-pid:0:swapper/0) [21:45:40.691544516] loadavg 0.90  1/420 \n[ 1320.913097] [ 1320.913097] (CPU:0-pid:0:swapper/0) [21:45:45.694877045] loadavg 0.90  1/420 \n[ 1325.916429] [ 1325.916429] (CPU:0-pid:0:swapper/0) [21:45:50.698209940] loadavg 0.91  1/420 \n[ 1330.919761] [ 1330.919761] (CPU:0-pid:0:swapper/0) [21:45:55.701542573] loadavg 0.92  1/420 \n[ 1335.923094] [ 1335.923094] (CPU:0-pid:0:swapper/0) [21:46:00.704876145] loadavg 0.84  0/418 \n[ 1337.654167] [ 1337.654167] (CPU:0-pid:104:wk:update_gaug) [21:46:02.435948869] (1337)1970-02-09 21:46:02 :[BAT][Ser]report Capacity ==>91, FCC:5749mAh, BMS:91, V:4183mV, Cur:324mA, Temp:24.7C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[ 1337.654190] [ 1337.654190] (CPU:0-pid:104:wk:update_gaug) [21:46:02.435971578] [BAT][BMS]print_battery_status: csoc=5122700, bsoc=228, msoc=233, ocv=4211676, SocSts=42, BatSts=0\n[ 1340.926426] [ 1340.926426] (CPU:0-pid:0:swapper/0) [21:46:05.708208101] loadavg 0.78  0/419 \n[ 1345.929759] [ 1345.929759] (CPU:0-pid:0:swapper/0) [21:46:10.711541621] loadavg 0.79  1/420 \n[ 1350.933091] [ 1350.933091] (CPU:0-pid:0:swapper/0) [21:46:15.714873994] loadavg 0.81  1/420 \n[ 1355.936423] [ 1355.936423] (CPU:0-pid:0:swapper/0) [21:46:20.718206628] loadavg 0.83  1/420 \n[ 1360.939756] [ 1360.939756] (CPU:0-pid:0:swapper/0) [21:46:25.721539887] loadavg 0.84  1/420 \n[ 1365.943088] [ 1365.943088] (CPU:0-pid:0:swapper/0) [21:46:30.724872677] loadavg 0.85  1/420 \n[ 1370.946420] [ 1370.946420] (CPU:0-pid:0:swapper/0) [21:46:35.728205259] loadavg 0.86  1/420 \n[ 1375.949753] [ 1375.949753] (CPU:0-pid:0:swapper/0) [21:46:40.731538257] loadavg 0.87  1/420 \n[ 1380.953084] [ 1380.953084] (CPU:0-pid:0:swapper/0) [21:46:45.734870683] loadavg 0.88  1/420 \n[ 1385.956417] [ 1385.956417] (CPU:0-pid:0:swapper/0) [21:46:50.738204150] loadavg 0.89  1/420 \n[ 1390.959749] [ 1390.959749] (CPU:0-pid:0:swapper/0) [21:46:55.741536471] loadavg 0.90  1/420 \n[ 1395.963082] [ 1395.963082] (CPU:0-pid:0:swapper/0) [21:47:00.744869313] loadavg 0.83  0/418 \n[ 1400.966414] [ 1400.966414] (CPU:0-pid:0:swapper/0) [21:47:05.748201843] loadavg 0.76  0/419 \n[ 1405.969746] [ 1405.969746] (CPU:0-pid:0:swapper/0) [21:47:10.751534946] loadavg 0.78  1/420 \n[ 1410.973079] [ 1410.973079] (CPU:0-pid:0:swapper/0) [21:47:15.754868257] loadavg 0.80  1/420 \n[ 1415.976411] [ 1415.976411] (CPU:0-pid:0:swapper/0) [21:47:20.758200682] loadavg 0.81  1/420 \n[ 1420.979743] [ 1420.979743] (CPU:0-pid:0:swapper/0) [21:47:25.761533108] loadavg 0.83  1/420 \n[ 1425.983076] [ 1425.983076] (CPU:0-pid:0:swapper/0) [21:47:30.764866158] loadavg 0.84  1/420 \n[ 1430.986408] [ 1430.986408] (CPU:0-pid:0:swapper/0) [21:47:35.768198948] loadavg 0.85  1/420 \n[ 1435.989741] [ 1435.989741] (CPU:0-pid:0:swapper/0) [21:47:40.771532207] loadavg 0.87  1/420 \n[ 1440.993073] [ 1440.993073] (CPU:0-pid:0:swapper/0) [21:47:45.774864580] loadavg 0.88  1/420 \n[ 1445.996405] [ 1445.996405] (CPU:0-pid:0:swapper/0) [21:47:50.778197318] loadavg 0.89  1/420 \n[ 1449.408027] [ 1449.408027] (CPU:0-pid:367:irq/560-msoc-de) [21:47:54.189820106] [PSY] power_supply_changed, psy_name:battery\n[ 1449.409574] [ 1449.409574] (CPU:0-pid:614:wk:status_chan) [21:47:54.191367086] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[ 1449.409722] [ 1449.409722] (CPU:0-pid:91:pd_dbg_info) [21:47:54.191515002] ///PD dbg info 66d\n[ 1449.409749] [ 1449.409749] (CPU:0-pid:91:pd_dbg_info) [21:47:54.191541617] < 1449.409>TCPC-TCPC:bat_update_work_func battery update soc = 91\n[ 1449.433093] [ 1449.433093] (CPU:0-pid:91:pd_dbg_info) [21:47:54.214885473] ///PD dbg info 62d\n[ 1449.433103] [ 1449.433103] (CPU:0-pid:91:pd_dbg_info) [21:47:54.214896098] < 1449.409>TCPC-TCPC:bat_update_work_func Battery Discharging\n[ 1450.999737] [ 1450.999737] (CPU:0-pid:0:swapper/0) [21:47:55.781530004] loadavg 0.90  1/420 \n[ 1456.003070] [ 1456.003070] (CPU:0-pid:0:swapper/0) [21:48:00.784862951] loadavg 0.82  0/419 \n[ 1461.006403] [ 1461.006403] (CPU:0-pid:0:swapper/0) [21:48:05.788196418] loadavg 0.84  1/420 \n[ 1466.009734] [ 1466.009734] (CPU:0-pid:0:swapper/0) [21:48:10.791528635] loadavg 0.85  1/420 \n[ 1471.013066] [ 1471.013066] (CPU:0-pid:0:swapper/0) [21:48:15.794861321] loadavg 0.86  1/420 \n[ 1476.016398] [ 1476.016398] (CPU:0-pid:0:swapper/0) [21:48:20.798193851] loadavg 0.87  1/420 \n[ 1481.019731] [ 1481.019731] (CPU:0-pid:0:swapper/0) [21:48:25.801526589] loadavg 0.88  1/420 \n[ 1486.023064] [ 1486.023064] (CPU:0-pid:0:swapper/0) [21:48:30.804860316] loadavg 0.89  1/420 \n[ 1491.026396] [ 1491.026396] (CPU:0-pid:0:swapper/0) [21:48:35.808192429] loadavg 0.90  1/420 \n[ 1496.029728] [ 1496.029728] (CPU:0-pid:0:swapper/0) [21:48:40.811525219] loadavg 0.91  1/420 \n[ 1501.033060] [ 1501.033060] (CPU:0-pid:0:swapper/0) [21:48:45.814858009] loadavg 0.92  1/420 \n[ 1506.036392] [ 1506.036392] (CPU:0-pid:0:swapper/0) [21:48:50.818190643] loadavg 0.84  0/418 \n[ 1511.039725] [ 1511.039725] (CPU:0-pid:0:swapper/0) [21:48:55.821524058] loadavg 0.77  0/419 \n[ 1516.043058] [ 1516.043058] (CPU:0-pid:0:swapper/0) [21:49:00.824857265] loadavg 0.79  1/420 \n[ 1521.046390] [ 1521.046390] (CPU:0-pid:0:swapper/0) [21:49:05.828189639] loadavg 0.81  1/420 \n[ 1526.049723] [ 1526.049723] (CPU:0-pid:0:swapper/0) [21:49:10.831522793] loadavg 0.82  1/420 \n[ 1528.800839] [ 1528.800839] (CPU:0-pid:614:wk:update_gaug) [21:49:13.582639942] (1528)1970-02-09 21:49:13 :[BAT][Ser]report Capacity ==>90, FCC:5749mAh, BMS:90, V:4176mV, Cur:356mA, Temp:24.7C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[ 1528.800895] [ 1528.800895] (CPU:0-pid:614:wk:update_gaug) [21:49:13.582695203] [BAT][BMS]print_battery_status: csoc=5104416, bsoc=227, msoc=232, ocv=4208258, SocSts=42, BatSts=0\n[ 1531.053054] [ 1531.053054] (CPU:0-pid:0:swapper/0) [21:49:15.834854958] loadavg 0.84  1/420 \n[ 1536.056387] [ 1536.056387] (CPU:0-pid:0:swapper/0) [21:49:20.838188217] loadavg 0.85  1/420 \n[ 1541.059719] [ 1541.059719] (CPU:0-pid:0:swapper/0) [21:49:25.841520486] loadavg 0.86  1/420 \n[ 1542.453096] [ 1542.453088] (CPU:0-pid:591:wk:battery_saf) [21:49:27.234890209] [BAT][BMS][ERR]update_battery_safe +\n[ 1542.453099] [ 1542.453099] (CPU:0-pid:591:wk:battery_saf) [21:49:27.234900261] init_batt_cycle_count_data +++\n[ 1542.453150] [ 1542.453150] (CPU:0-pid:591:wk:battery_saf) [21:49:27.234952240] FG: file_op: open /batinfo/.bs err! error code:-2\n[ 1542.453160] [ 1542.453160] (CPU:0-pid:591:wk:battery_saf) [21:49:27.234961927] FG: init_batt_cycle_count_data: Read cycle count file failed!\n[ 1542.453175] [ 1542.453169] (CPU:0-pid:591:wk:battery_saf) [21:49:27.234970625] FG: update_battery_safe: cyclecount is not initialized\n[ 1546.063052] [ 1546.063052] (CPU:0-pid:0:swapper/0) [21:49:30.844853641] loadavg 0.87  1/420 \n[ 1551.066384] [ 1551.066384] (CPU:0-pid:0:swapper/0) [21:49:35.848186223] loadavg 0.88  1/420 \n[ 1556.069716] [ 1556.069716] (CPU:0-pid:0:swapper/0) [21:49:40.851519013] loadavg 0.89  1/420 \n[ 1561.073049] [ 1561.073049] (CPU:0-pid:0:swapper/0) [21:49:45.854852272] loadavg 0.82  0/419 \n[ 1566.076381] [ 1566.076381] (CPU:0-pid:0:swapper/0) [21:49:50.858184958] loadavg 0.83  1/420 \n[ 1571.079713] [ 1571.079713] (CPU:0-pid:0:swapper/0) [21:49:55.861517748] loadavg 0.85  1/420 \n[ 1576.083046] [ 1576.083046] (CPU:0-pid:0:swapper/0) [21:50:00.864850538] loadavg 0.86  1/420 \n[ 1581.086378] [ 1581.086378] (CPU:0-pid:0:swapper/0) [21:50:05.868183224] loadavg 0.87  1/420 \n[ 1586.089710] [ 1586.089710] (CPU:0-pid:0:swapper/0) [21:50:10.871516326] loadavg 0.88  1/420 \n[ 1591.093042] [ 1591.093042] (CPU:0-pid:0:swapper/0) [21:50:15.874848596] loadavg 0.89  1/420 \n[ 1596.096374] [ 1596.096374] (CPU:0-pid:0:swapper/0) [21:50:20.878181386] loadavg 0.90  1/420 \n[ 1601.099707] [ 1601.099707] (CPU:0-pid:0:swapper/0) [21:50:25.881514072] loadavg 0.91  1/420 \n[ 1606.103039] [ 1606.103039] (CPU:0-pid:0:swapper/0) [21:50:30.884847226] loadavg 0.91  1/420 \n[ 1611.106372] [ 1611.106372] (CPU:0-pid:0:swapper/0) [21:50:35.888180746] loadavg 0.84  0/419 \n[ 1616.109704] [ 1616.109704] (CPU:0-pid:0:swapper/0) [21:50:40.891513327] loadavg 0.85  1/420 \n[ 1621.113036] [ 1621.113036] (CPU:0-pid:0:swapper/0) [21:50:45.894845388] loadavg 0.87  1/420 \n[ 1626.116368] [ 1626.116368] (CPU:0-pid:0:swapper/0) [21:50:50.898178283] loadavg 0.88  1/420 \n[ 1631.119701] [ 1631.119701] (CPU:0-pid:0:swapper/0) [21:50:55.901511021] loadavg 0.89  1/420 \n[ 1636.123034] [ 1636.123034] (CPU:0-pid:0:swapper/0) [21:51:00.904844644] loadavg 0.89  1/420 \n[ 1641.126366] [ 1641.126366] (CPU:0-pid:0:swapper/0) [21:51:05.908176913] loadavg 0.90  1/420 \n[ 1646.129698] [ 1646.129698] (CPU:0-pid:0:swapper/0) [21:51:10.911509339] loadavg 0.91  1/420 \n[ 1651.133030] [ 1651.133030] (CPU:0-pid:0:swapper/0) [21:51:15.914842077] loadavg 0.92  1/420 \n[ 1656.136362] [ 1656.136362] (CPU:0-pid:0:swapper/0) [21:51:20.918175127] loadavg 0.84  0/418 \n[ 1661.139695] [ 1661.139695] (CPU:0-pid:0:swapper/0) [21:51:25.921508334] loadavg 0.77  0/419 \n[ 1666.143028] [ 1666.143028] (CPU:0-pid:0:swapper/0) [21:51:30.924841385] loadavg 0.79  1/420 \n[ 1671.146360] [ 1671.146360] (CPU:0-pid:0:swapper/0) [21:51:35.928173758] loadavg 0.81  1/420 \n[ 1676.149692] [ 1676.149692] (CPU:0-pid:0:swapper/0) [21:51:40.931506808] loadavg 0.82  1/420 \n[ 1681.153024] [ 1681.153024] (CPU:0-pid:0:swapper/0) [21:51:45.934839130] loadavg 0.84  1/420 \n[ 1686.156357] [ 1686.156357] (CPU:0-pid:0:swapper/0) [21:51:50.938172493] loadavg 0.85  1/420 \n[ 1691.159689] [ 1691.159689] (CPU:0-pid:0:swapper/0) [21:51:55.941505022] loadavg 0.86  1/420 \n[ 1696.163021] [ 1696.163021] (CPU:0-pid:0:swapper/0) [21:52:00.944838021] loadavg 0.87  1/420 \n[ 1701.166353] [ 1701.166353] (CPU:0-pid:0:swapper/0) [21:52:05.948170551] loadavg 0.88  1/420 \n[ 1702.058538] [ 1702.058538] (CPU:0-pid:572:python3) [21:52:06.840355900] CPU1: shutdown\n[ 1702.062246] [ 1702.062246] (CPU:4-pid:0:swapper/4) [21:52:06.844064025] GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000\n[ 1702.062282] [ 1702.062282] (CPU:4-pid:0:swapper/4) [21:52:06.844099546] CPU4: Booted secondary processor [51df804e]\n[ 1706.169706] [ 1706.169706] (CPU:0-pid:0:swapper/0) [21:52:10.951524226] loadavg 0.81  0/419 \n[ 1711.173041] [ 1711.173041] (CPU:0-pid:0:swapper/0) [21:52:15.954860141] loadavg 0.83  1/420 \n[ 1716.176371] [ 1716.176371] (CPU:0-pid:0:swapper/0) [21:52:20.958190588] loadavg 0.84  1/420 \n[ 1719.948277] [ 1719.948277] (CPU:0-pid:591:wk:update_gaug) [21:52:24.730096276] (1719)1970-02-09 21:52:24 :[BAT][Ser]report Capacity ==>90, FCC:5749mAh, BMS:90, V:4174mV, Cur:337mA, Temp:24.7C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[ 1719.948616] [ 1719.948616] (CPU:0-pid:591:wk:update_gaug) [21:52:24.730435130] [BAT][BMS]print_battery_status: csoc=5085895, bsoc=227, msoc=231, ocv=4204840, SocSts=42, BatSts=0\n[ 1721.179704] [ 1721.179704] (CPU:0-pid:0:swapper/0) [21:52:25.961523065] loadavg 0.85  1/420 \n[ 1726.183036] [ 1726.183036] (CPU:0-pid:0:swapper/0) [21:52:30.964856480] loadavg 0.87  1/420 \n[ 1731.186368] [ 1731.186368] (CPU:0-pid:0:swapper/0) [21:52:35.968188385] loadavg 0.88  1/420 \n[ 1736.189702] [ 1736.189702] (CPU:0-pid:0:swapper/0) [21:52:40.971523258] loadavg 0.89  1/420 \n[ 1741.193036] [ 1741.193036] (CPU:0-pid:0:swapper/0) [21:52:45.974857142] loadavg 0.89  1/420 \n[ 1746.196365] [ 1746.196365] (CPU:0-pid:0:swapper/0) [21:52:50.978187016] loadavg 0.90  1/420 \n[ 1751.093063] [ 1751.093063] (CPU:0-pid:367:irq/560-msoc-de) [21:52:55.874885524] [PSY] power_supply_changed, psy_name:battery\n[ 1751.096153] [ 1751.096153] (CPU:0-pid:630:wk:status_chan) [21:52:55.877975420] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[ 1751.096554] [ 1751.096554] (CPU:0-pid:91:pd_dbg_info) [21:52:55.878376045] ///PD dbg info 66d\n[ 1751.096600] [ 1751.096600] (CPU:0-pid:91:pd_dbg_info) [21:52:55.878422660] < 1751.096>TCPC-TCPC:bat_update_work_func battery update soc = 90\n[ 1751.119965] [ 1751.119965] (CPU:0-pid:91:pd_dbg_info) [21:52:55.901787298] ///PD dbg info 62d\n[ 1751.120013] [ 1751.120013] (CPU:0-pid:91:pd_dbg_info) [21:52:55.901835423] < 1751.096>TCPC-TCPC:bat_update_work_func Battery Discharging\n[ 1751.199696] [ 1751.199696] (CPU:0-pid:0:swapper/0) [21:52:55.981518712] loadavg 0.91  1/420 \n[ 1756.203031] [ 1756.203031] (CPU:0-pid:0:swapper/0) [21:53:00.984854054] loadavg 0.92  1/420 \n[ 1761.206363] [ 1761.206363] (CPU:0-pid:0:swapper/0) [21:53:05.988186896] loadavg 0.92  1/420 \n[ 1766.209695] [ 1766.209695] (CPU:0-pid:0:swapper/0) [21:53:10.991518801] loadavg 0.93  1/420 \n[ 1771.213026] [ 1771.213026] (CPU:0-pid:0:swapper/0) [21:53:15.994850601] loadavg 0.93  1/420 \n[ 1776.216358] [ 1776.216358] (CPU:0-pid:0:swapper/0) [21:53:20.998183339] loadavg 0.94  1/420 \n[ 1781.219690] [ 1781.219690] (CPU:0-pid:0:swapper/0) [21:53:26.001515609] loadavg 0.94  1/420 \n[ 1786.223026] [ 1786.223026] (CPU:0-pid:0:swapper/0) [21:53:31.004851993] loadavg 0.95  1/421 \n[ 1791.226356] [ 1791.226356] (CPU:0-pid:0:swapper/0) [21:53:36.008182335] loadavg 0.95  1/421 \n[ 1796.229688] [ 1796.229688] (CPU:0-pid:0:swapper/0) [21:53:41.011514969] loadavg 0.96  1/421 \n[ 1801.233020] [ 1801.233020] (CPU:0-pid:0:swapper/0) [21:53:46.014847602] loadavg 0.96  0/420 \n[ 1806.236355] [ 1806.236355] (CPU:0-pid:0:swapper/0) [21:53:51.018182580] loadavg 0.88  0/420 \n[ 1811.239688] [ 1811.239688] (CPU:0-pid:0:swapper/0) [21:53:56.021515995] loadavg 0.89  1/421 \n[ 1816.243019] [ 1816.243019] (CPU:0-pid:0:swapper/0) [21:54:01.024848212] loadavg 0.90  1/421 \n[ 1821.246350] [ 1821.246350] (CPU:0-pid:0:swapper/0) [21:54:06.028179804] loadavg 0.91  1/421 \n[ 1826.249685] [ 1826.249685] (CPU:0-pid:0:swapper/0) [21:54:11.031514261] loadavg 0.91  1/421 \n[ 1831.253015] [ 1831.253015] (CPU:0-pid:0:swapper/0) [21:54:16.034845124] loadavg 0.92  1/421 \n[ 1836.256349] [ 1836.256349] (CPU:0-pid:0:swapper/0) [21:54:21.038179946] loadavg 0.93  1/421 \n[ 1841.259680] [ 1841.259680] (CPU:0-pid:0:swapper/0) [21:54:26.041511225] loadavg 0.93  1/421 \n[ 1842.826514] [ 1842.826476] (CPU:0-pid:591:wk:battery_saf) [21:54:27.608307215] [BAT][BMS][ERR]update_battery_safe +\n[ 1842.826524] [ 1842.826524] (CPU:0-pid:591:wk:battery_saf) [21:54:27.608354871] init_batt_cycle_count_data +++\n[ 1842.826746] [ 1842.826746] (CPU:0-pid:591:wk:battery_saf) [21:54:27.608577006] FG: file_op: open /batinfo/.bs err! error code:-2\n[ 1842.826793] [ 1842.826793] (CPU:0-pid:591:wk:battery_saf) [21:54:27.608624402] FG: init_batt_cycle_count_data: Read cycle count file failed!\n[ 1842.826870] [ 1842.826837] (CPU:0-pid:591:wk:battery_saf) [21:54:27.608668204] FG: update_battery_safe: cyclecount is not initialized\n[ 1846.263013] [ 1846.263013] (CPU:0-pid:0:swapper/0) [21:54:31.044844432] loadavg 0.94  1/421 \n[ 1851.266345] [ 1851.266345] (CPU:0-pid:0:swapper/0) [21:54:36.048177535] loadavg 0.86  0/419 \n[ 1856.269676] [ 1856.269676] (CPU:0-pid:0:swapper/0) [21:54:41.051508814] loadavg 0.79  0/420 \n[ 1861.273012] [ 1861.273012] (CPU:0-pid:0:swapper/0) [21:54:46.054844938] loadavg 0.81  1/421 \n[ 1866.276342] [ 1866.276342] (CPU:0-pid:0:swapper/0) [21:54:51.058175436] loadavg 0.83  1/421 \n[ 1871.279674] [ 1871.279674] (CPU:0-pid:0:swapper/0) [21:54:56.061507705] loadavg 0.84  1/421 \n[ 1876.283007] [ 1876.283007] (CPU:0-pid:0:swapper/0) [21:55:01.064841641] loadavg 0.85  1/421 \n[ 1881.286339] [ 1881.286339] (CPU:0-pid:0:swapper/0) [21:55:06.068173546] loadavg 0.86  1/421 \n[ 1886.289672] [ 1886.289672] (CPU:0-pid:0:swapper/0) [21:55:11.071507951] loadavg 0.87  1/421 \n[ 1891.293003] [ 1891.293003] (CPU:0-pid:0:swapper/0) [21:55:16.074839387] loadavg 0.88  0/420 \n[ 1896.296336] [ 1896.296336] (CPU:0-pid:0:swapper/0) [21:55:21.078172854] loadavg 0.81  0/420 \n[ 1901.299668] [ 1901.299668] (CPU:0-pid:0:swapper/0) [21:55:26.081505175] loadavg 0.83  1/421 \n[ 1906.303001] [ 1906.303001] (CPU:0-pid:0:swapper/0) [21:55:31.084838746] loadavg 0.84  1/421 \n[ 1911.094832] [ 1911.094832] (CPU:0-pid:104:wk:update_gaug) [21:55:35.876670057] (1911)1970-02-09 21:55:35 :[BAT][Ser]report Capacity ==>90, FCC:5749mAh, BMS:90, V:4167mV, Cur:366mA, Temp:25.0C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[ 1911.095165] [ 1911.095165] (CPU:0-pid:104:wk:update_gaug) [21:55:35.877003234] [BAT][BMS]print_battery_status: csoc=5067161, bsoc=226, msoc=231, ocv=4201178, SocSts=42, BatSts=0\n[ 1911.306334] [ 1911.306334] (CPU:0-pid:0:swapper/0) [21:55:36.088171849] loadavg 0.85  1/421 \n[ 1916.309665] [ 1916.309665] (CPU:0-pid:0:swapper/0) [21:55:41.091503181] loadavg 0.87  1/421 \n[ 1921.312997] [ 1921.312997] (CPU:0-pid:0:swapper/0) [21:55:46.094835658] loadavg 0.88  1/421 \n[ 1926.316329] [ 1926.316329] (CPU:0-pid:0:swapper/0) [21:55:51.098168501] loadavg 0.89  1/421 \n[ 1931.319664] [ 1931.319664] (CPU:0-pid:0:swapper/0) [21:55:56.101503999] loadavg 0.81  0/419 \n[ 1936.322996] [ 1936.322996] (CPU:0-pid:0:swapper/0) [21:56:01.104836529] loadavg 0.75  0/420 \n[ 1941.326329] [ 1941.326329] (CPU:0-pid:0:swapper/0) [21:56:06.108169944] loadavg 0.77  1/421 \n[ 1946.329659] [ 1946.329659] (CPU:0-pid:0:swapper/0) [21:56:11.111500598] loadavg 0.79  1/421 \n[ 1951.332991] [ 1951.332991] (CPU:0-pid:0:swapper/0) [21:56:16.114833024] loadavg 0.80  1/421 \n[ 1956.336323] [ 1956.336323] (CPU:0-pid:0:swapper/0) [21:56:21.118165606] loadavg 0.82  1/421 \n[ 1961.339657] [ 1961.339657] (CPU:0-pid:0:swapper/0) [21:56:26.121500219] loadavg 0.83  1/421 \n[ 1966.342990] [ 1966.342990] (CPU:0-pid:0:swapper/0) [21:56:31.124833425] loadavg 0.85  0/420 \n[ 1971.346322] [ 1971.346322] (CPU:0-pid:0:swapper/0) [21:56:36.128165434] loadavg 0.78  0/420 \n[ 1976.349656] [ 1976.349656] (CPU:0-pid:0:swapper/0) [21:56:41.131500047] loadavg 0.80  1/421 \n[ 1981.352986] [ 1981.352986] (CPU:0-pid:0:swapper/0) [21:56:46.134830702] loadavg 0.81  1/421 \n[ 1986.356320] [ 1986.356320] (CPU:0-pid:0:swapper/0) [21:56:51.138164742] loadavg 0.83  1/421 \n[ 1991.359650] [ 1991.359650] (CPU:0-pid:0:swapper/0) [21:56:56.141495970] loadavg 0.84  1/421 \n[ 1996.362983] [ 1996.362983] (CPU:0-pid:0:swapper/0) [21:57:01.144828864] loadavg 0.85  1/421 \n[ 2001.366316] [ 2001.366316] (CPU:0-pid:0:swapper/0) [21:57:06.148162748] loadavg 0.78  0/419 \n[ 2006.369647] [ 2006.369647] (CPU:0-pid:0:swapper/0) [21:57:11.151493715] loadavg 0.72  0/420 \n[ 2011.372982] [ 2011.372982] (CPU:0-pid:0:swapper/0) [21:57:16.154829890] loadavg 0.74  1/421 \n[ 2016.376312] [ 2016.376312] (CPU:0-pid:0:swapper/0) [21:57:21.158160441] loadavg 0.76  1/421 \n[ 2021.379644] [ 2021.379644] (CPU:0-pid:0:swapper/0) [21:57:26.161493023] loadavg 0.78  1/421 \n[ 2026.382977] [ 2026.382977] (CPU:0-pid:0:swapper/0) [21:57:31.164825969] loadavg 0.80  1/421 \n[ 2031.386311] [ 2031.386311] (CPU:0-pid:0:swapper/0) [21:57:36.168160842] loadavg 0.82  0/419 \n[ 2036.389644] [ 2036.389644] (CPU:0-pid:0:swapper/0) [21:57:41.171494153] loadavg 0.75  0/420 \n[ 2039.789934] [ 2039.789934] (CPU:0-pid:367:irq/560-msoc-de) [21:57:44.571784284] [PSY] power_supply_changed, psy_name:battery\n[ 2039.793032] [ 2039.793032] (CPU:0-pid:104:wk:status_chan) [21:57:44.574882044] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[ 2039.793375] [ 2039.793375] (CPU:0-pid:91:pd_dbg_info) [21:57:44.575225638] ///PD dbg info 66d\n[ 2039.793422] [ 2039.793422] (CPU:0-pid:91:pd_dbg_info) [21:57:44.575271680] < 2039.793>TCPC-TCPC:bat_update_work_func battery update soc = 90\n[ 2039.816385] [ 2039.816385] (CPU:0-pid:91:pd_dbg_info) [21:57:44.598234911] ///PD dbg info 62d\n[ 2039.816433] [ 2039.816433] (CPU:0-pid:91:pd_dbg_info) [21:57:44.598283245] < 2039.793>TCPC-TCPC:bat_update_work_func Battery Discharging\n[ 2041.392974] [ 2041.392974] (CPU:0-pid:0:swapper/0) [21:57:46.174824131] loadavg 0.77  1/421 \n[ 2046.396305] [ 2046.396305] (CPU:0-pid:0:swapper/0) [21:57:51.178156504] loadavg 0.79  1/421 \n[ 2051.399637] [ 2051.399637] (CPU:0-pid:0:swapper/0) [21:57:56.181488878] loadavg 0.80  1/421 \n[ 2056.402971] [ 2056.402971] (CPU:0-pid:0:swapper/0) [21:58:01.184823282] loadavg 0.82  1/421 \n[ 2061.406307] [ 2061.406307] (CPU:0-pid:0:swapper/0) [21:58:06.188159458] loadavg 0.75  0/419 \n[ 2066.409636] [ 2066.409636] (CPU:0-pid:0:swapper/0) [21:58:11.191489071] loadavg 0.69  0/420 \n[ 2071.412968] [ 2071.412968] (CPU:0-pid:0:swapper/0) [21:58:16.194821601] loadavg 0.72  1/421 \n[ 2076.416300] [ 2076.416300] (CPU:0-pid:0:swapper/0) [21:58:21.198153662] loadavg 0.74  1/421 \n[ 2081.419631] [ 2081.419631] (CPU:0-pid:0:swapper/0) [21:58:26.201485775] loadavg 0.76  1/421 \n[ 2086.422967] [ 2086.422967] (CPU:0-pid:0:swapper/0) [21:58:31.204821638] loadavg 0.78  1/421 \n[ 2091.426298] [ 2091.426298] (CPU:0-pid:0:swapper/0) [21:58:36.208153594] loadavg 0.72  0/418 \n[ 2096.429629] [ 2096.429629] (CPU:0-pid:0:swapper/0) [21:58:41.211485134] loadavg 0.66  0/419 \n[ 2101.432962] [ 2101.432962] (CPU:0-pid:0:swapper/0) [21:58:46.214818602] loadavg 0.69  1/420 \n[ 2102.241605] [ 2102.241605] (CPU:0-pid:104:wk:update_gaug) [21:58:47.023461651] (2102)1970-02-09 21:58:47 :[BAT][Ser]report Capacity ==>90, FCC:5749mAh, BMS:90, V:4158mV, Cur:419mA, Temp:25.0C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[ 2102.241959] [ 2102.241959] (CPU:0-pid:104:wk:update_gaug) [21:58:47.023814984] [BAT][BMS]print_battery_status: csoc=5047228, bsoc=225, msoc=230, ocv=4197516, SocSts=42, BatSts=0\n[ 2106.436293] [ 2106.436293] (CPU:0-pid:0:swapper/0) [21:58:51.218149881] loadavg 0.71  1/420 \n[ 2111.439628] [ 2111.439628] (CPU:0-pid:0:swapper/0) [21:58:56.221485588] loadavg 0.73  1/420 \n[ 2116.442961] [ 2116.442961] (CPU:0-pid:0:swapper/0) [21:59:01.224818534] loadavg 0.67  0/418 \n[ 2121.446293] [ 2121.446293] (CPU:0-pid:0:swapper/0) [21:59:06.228151533] loadavg 0.62  0/419 \n[ 2126.449627] [ 2126.449627] (CPU:0-pid:0:swapper/0) [21:59:11.231485469] loadavg 0.65  1/420 \n[ 2131.452956] [ 2131.452956] (CPU:0-pid:0:swapper/0) [21:59:16.234815342] loadavg 0.68  1/420 \n[ 2131.692425] [ 2131.692425] (CPU:0-pid:377:irq/570-batt-te) [21:59:16.474284168] [PSY] power_supply_changed, psy_name:battery\n[ 2131.695407] [ 2131.695407] (CPU:0-pid:668:wk:status_chan) [21:59:16.477266200] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[ 2131.695914] [ 2131.695914] (CPU:0-pid:91:pd_dbg_info) [21:59:16.477773283] ///PD dbg info 66d\n[ 2131.695961] [ 2131.695961] (CPU:0-pid:91:pd_dbg_info) [21:59:16.477820106] < 2131.695>TCPC-TCPC:bat_update_work_func battery update soc = 90\n[ 2131.716367] [ 2131.716367] (CPU:0-pid:91:pd_dbg_info) [21:59:16.498225733] ///PD dbg info 62d\n[ 2131.716414] [ 2131.716414] (CPU:0-pid:91:pd_dbg_info) [21:59:16.498273389] < 2131.696>TCPC-TCPC:bat_update_work_func Battery Discharging\n[ 2136.456290] [ 2136.456290] (CPU:0-pid:0:swapper/0) [21:59:21.238149903] loadavg 0.70  1/420 \n[ 2140.682743] [ 2140.682743] (CPU:0-pid:377:irq/570-batt-te) [21:59:25.464603293] [PSY] power_supply_changed, psy_name:battery\n[ 2140.685647] [ 2140.685647] (CPU:0-pid:668:wk:status_chan) [21:59:25.467506939] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[ 2140.686147] [ 2140.686147] (CPU:0-pid:91:pd_dbg_info) [21:59:25.468006887] ///PD dbg info 66d\n[ 2140.686193] [ 2140.686193] (CPU:0-pid:91:pd_dbg_info) [21:59:25.468053085] < 2140.686>TCPC-TCPC:bat_update_work_func battery update soc = 90\n[ 2140.706372] [ 2140.706372] (CPU:0-pid:91:pd_dbg_info) [21:59:25.488232566] ///PD dbg info 62d\n[ 2140.706420] [ 2140.706420] (CPU:0-pid:91:pd_dbg_info) [21:59:25.488280326] < 2140.686>TCPC-TCPC:bat_update_work_func Battery Discharging\n[ 2141.459621] [ 2141.459621] (CPU:0-pid:0:swapper/0) [21:59:26.241481287] loadavg 0.73  1/420 \n[ 2143.199841] [ 2143.199803] (CPU:0-pid:104:wk:battery_saf) [21:59:27.981663023] [BAT][BMS][ERR]update_battery_safe +\n[ 2143.199851] [ 2143.199851] (CPU:0-pid:104:wk:battery_saf) [21:59:27.981711356] init_batt_cycle_count_data +++\n[ 2143.200079] [ 2143.200079] (CPU:0-pid:104:wk:battery_saf) [21:59:27.981939481] FG: file_op: open /batinfo/.bs err! error code:-2\n[ 2143.200127] [ 2143.200127] (CPU:0-pid:104:wk:battery_saf) [21:59:27.981986721] FG: init_batt_cycle_count_data: Read cycle count file failed!\n[ 2143.200204] [ 2143.200171] (CPU:0-pid:104:wk:battery_saf) [21:59:27.982030627] FG: update_battery_safe: cyclecount is not initialized\n[ 2146.462951] [ 2146.462951] (CPU:0-pid:675:python3) [21:59:31.244811994] loadavg 0.67  1/419 \n[ 2151.466286] [ 2151.466286] (CPU:0-pid:0:swapper/0) [21:59:36.248147284] loadavg 0.69  1/420 \n[ 2156.469617] [ 2156.469617] (CPU:0-pid:0:swapper/0) [21:59:41.251478876] loadavg 0.72  1/420 \n[ 2161.472952] [ 2161.472952] (CPU:0-pid:0:swapper/0) [21:59:46.254813906] loadavg 0.74  1/420 \n[ 2166.476283] [ 2166.476283] (CPU:0-pid:0:swapper/0) [21:59:51.258146019] loadavg 0.76  1/420 \n[ 2171.479615] [ 2171.479615] (CPU:0-pid:0:swapper/0) [21:59:56.261478236] loadavg 0.70  0/419 \n[ 2176.482948] [ 2176.482948] (CPU:0-pid:0:swapper/0) [22:00:01.264811807] loadavg 0.72  1/420 \n[ 2181.486280] [ 2181.486280] (CPU:0-pid:0:swapper/0) [22:00:06.268143608] loadavg 0.75  1/420 \n[ 2186.489614] [ 2186.489614] (CPU:0-pid:0:swapper/0) [22:00:11.271478064] loadavg 0.77  1/420 \n[ 2191.492945] [ 2191.492945] (CPU:0-pid:0:swapper/0) [22:00:16.274809552] loadavg 0.78  1/420 \n[ 2196.496277] [ 2196.496277] (CPU:0-pid:0:swapper/0) [22:00:21.278142551] loadavg 0.72  0/419 \n[ 2201.499609] [ 2201.499609] (CPU:0-pid:0:swapper/0) [22:00:26.281475028] loadavg 0.74  1/420 \n[ 2206.502942] [ 2206.502942] (CPU:0-pid:0:swapper/0) [22:00:31.284808808] loadavg 0.76  1/420 \n[ 2211.506275] [ 2211.506275] (CPU:0-pid:0:swapper/0) [22:00:36.288141963] loadavg 0.78  1/420 \n[ 2216.509609] [ 2216.509609] (CPU:0-pid:0:swapper/0) [22:00:41.291476107] loadavg 0.72  0/418 \n[ 2221.512938] [ 2221.512938] (CPU:0-pid:0:swapper/0) [22:00:46.294806397] loadavg 0.66  0/419 \n[ 2226.516271] [ 2226.516271] (CPU:0-pid:0:swapper/0) [22:00:51.298139135] loadavg 0.69  1/420 \n[ 2231.519603] [ 2231.519603] (CPU:0-pid:0:swapper/0) [22:00:56.301471665] loadavg 0.71  1/420 \n[ 2236.522938] [ 2236.522938] (CPU:0-pid:0:swapper/0) [22:01:01.304807267] loadavg 0.74  1/420 \n[ 2241.526269] [ 2241.526269] (CPU:0-pid:0:swapper/0) [22:01:06.308138599] loadavg 0.68  0/418 \n[ 2246.529600] [ 2246.529600] (CPU:0-pid:0:swapper/0) [22:01:11.311469931] loadavg 0.62  0/419 \n[ 2251.532933] [ 2251.532933] (CPU:0-pid:0:swapper/0) [22:01:16.314803502] loadavg 0.65  1/420 \n[ 2256.536264] [ 2256.536264] (CPU:0-pid:0:swapper/0) [22:01:21.318135719] loadavg 0.68  1/420 \n[ 2261.539602] [ 2261.539602] (CPU:0-pid:0:swapper/0) [22:01:26.321474082] loadavg 0.62  0/418 \n[ 2266.542930] [ 2266.542930] (CPU:0-pid:0:swapper/0) [22:01:31.324802758] loadavg 0.57  0/419 \n[ 2271.546263] [ 2271.546263] (CPU:0-pid:0:swapper/0) [22:01:36.328135496] loadavg 0.61  1/420 \n[ 2276.549594] [ 2276.549594] (CPU:0-pid:0:swapper/0) [22:01:41.331467609] loadavg 0.64  1/420 \n[ 2278.553640] [ 2278.553640] (CPU:0-pid:367:irq/560-msoc-de) [22:01:43.335513850] [PSY] power_supply_changed, psy_name:battery\n[ 2278.556689] [ 2278.556689] (CPU:0-pid:104:wk:status_chan) [22:01:43.338562288] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[ 2278.557202] [ 2278.557202] (CPU:0-pid:91:pd_dbg_info) [22:01:43.339074944] ///PD dbg info 66d\n[ 2278.557248] [ 2278.557248] (CPU:0-pid:91:pd_dbg_info) [22:01:43.339121559] < 2278.557>TCPC-TCPC:bat_update_work_func battery update soc = 89\n[ 2278.579773] [ 2278.579773] (CPU:0-pid:91:pd_dbg_info) [22:01:43.361645884] ///PD dbg info 62d\n[ 2278.579821] [ 2278.579821] (CPU:0-pid:91:pd_dbg_info) [22:01:43.361693905] < 2278.557>TCPC-TCPC:bat_update_work_func Battery Discharging\n[ 2281.552926] [ 2281.552926] (CPU:0-pid:0:swapper/0) [22:01:46.334799409] loadavg 0.67  1/420 \n[ 2282.934831] [ 2282.934831] (CPU:0-pid:572:python3) [22:01:47.716704755] CPU4: shutdown\n[ 2282.938866] [ 2282.938866] (CPU:7-pid:0:swapper/7) [22:01:47.720740068] GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000\n[ 2282.938902] [ 2282.938902] (CPU:7-pid:0:swapper/7) [22:01:47.720774912] CPU7: Booted secondary processor [51df804e]\n[ 2286.556263] [ 2286.556263] (CPU:0-pid:0:swapper/0) [22:01:51.338136939] loadavg 0.61  0/419 \n[ 2291.559594] [ 2291.559594] (CPU:0-pid:0:swapper/0) [22:01:56.341469000] loadavg 0.64  1/420 \n[ 2293.388169] [ 2293.388169] (CPU:0-pid:668:wk:update_gaug) [22:01:58.170044078] (2293)1970-02-09 22:01:58 :[BAT][Ser]report Capacity ==>89, FCC:5749mAh, BMS:89, V:4158mV, Cur:362mA, Temp:25.2C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[ 2293.388529] [ 2293.388529] (CPU:0-pid:668:wk:update_gaug) [22:01:58.170404078] [BAT][BMS]print_battery_status: csoc=5024776, bsoc=224, msoc=229, ocv=4193121, SocSts=42, BatSts=0\n[ 2296.562925] [ 2296.562925] (CPU:0-pid:0:swapper/0) [22:02:01.344800019] loadavg 0.67  1/420 \n[ 2301.566256] [ 2301.566256] (CPU:0-pid:0:swapper/0) [22:02:06.348131247] loadavg 0.70  1/420 \n[ 2306.569588] [ 2306.569588] (CPU:0-pid:0:swapper/0) [22:02:11.351463985] loadavg 0.72  1/420 \n[ 2311.572922] [ 2311.572922] (CPU:0-pid:0:swapper/0) [22:02:16.354798963] loadavg 0.74  1/420 \n[ 2316.576253] [ 2316.576253] (CPU:0-pid:0:swapper/0) [22:02:21.358129773] loadavg 0.76  1/420 \n[ 2321.579585] [ 2321.579585] (CPU:0-pid:0:swapper/0) [22:02:26.361462668] loadavg 0.78  1/420 \n[ 2326.582918] [ 2326.582918] (CPU:0-pid:0:swapper/0) [22:02:31.364796135] loadavg 0.80  1/420 \n[ 2331.586250] [ 2331.586250] (CPU:0-pid:0:swapper/0) [22:02:36.368128144] loadavg 0.82  1/420 \n[ 2336.589583] [ 2336.589583] (CPU:0-pid:0:swapper/0) [22:02:41.371462288] loadavg 0.83  1/420 \n[ 2341.592915] [ 2341.592915] (CPU:0-pid:0:swapper/0) [22:02:46.374794193] loadavg 0.84  1/420 \n[ 2346.596246] [ 2346.596246] (CPU:0-pid:0:swapper/0) [22:02:51.378126358] loadavg 0.86  1/420 \n[ 2351.599578] [ 2351.599578] (CPU:0-pid:0:swapper/0) [22:02:56.381458731] loadavg 0.87  1/420 \n[ 2356.602912] [ 2356.602912] (CPU:0-pid:0:swapper/0) [22:03:01.384792980] loadavg 0.88  1/420 \n[ 2361.606245] [ 2361.606245] (CPU:0-pid:0:swapper/0) [22:03:06.388126916] loadavg 0.89  1/420 \n[ 2366.609576] [ 2366.609576] (CPU:0-pid:0:swapper/0) [22:03:11.391458039] loadavg 0.90  1/420 \n[ 2371.612909] [ 2371.612909] (CPU:0-pid:0:swapper/0) [22:03:16.394791558] loadavg 0.82  0/418 \n[ 2376.616240] [ 2376.616240] (CPU:0-pid:0:swapper/0) [22:03:21.398123255] loadavg 0.76  0/419 \n[ 2381.619574] [ 2381.619574] (CPU:0-pid:0:swapper/0) [22:03:26.401457190] loadavg 0.78  1/420 \n[ 2386.622908] [ 2386.622908] (CPU:0-pid:0:swapper/0) [22:03:31.404792324] loadavg 0.79  1/420 \n[ 2391.626238] [ 2391.626238] (CPU:0-pid:0:swapper/0) [22:03:36.408122823] loadavg 0.81  1/419 \n[ 2396.629570] [ 2396.629570] (CPU:0-pid:0:swapper/0) [22:03:41.411454727] loadavg 0.83  1/420 \n[ 2401.632902] [ 2401.632902] (CPU:0-pid:0:swapper/0) [22:03:46.414787622] loadavg 0.84  1/420 \n[ 2406.636234] [ 2406.636234] (CPU:0-pid:0:swapper/0) [22:03:51.418120099] loadavg 0.85  1/420 \n[ 2411.639572] [ 2411.639572] (CPU:0-pid:0:swapper/0) [22:03:56.421458723] loadavg 0.78  0/419 \n[ 2416.642902] [ 2416.642902] (CPU:0-pid:0:swapper/0) [22:04:01.424788804] loadavg 0.72  0/419 \n[ 2421.646233] [ 2421.646233] (CPU:0-pid:0:swapper/0) [22:04:06.428120188] loadavg 0.74  1/420 \n[ 2426.649565] [ 2426.649565] (CPU:0-pid:0:swapper/0) [22:04:11.431452405] loadavg 0.76  1/420 \n[ 2431.652896] [ 2431.652896] (CPU:0-pid:0:swapper/0) [22:04:16.434784102] loadavg 0.78  1/420 \n[ 2436.656230] [ 2436.656230] (CPU:0-pid:0:swapper/0) [22:04:21.438119236] loadavg 0.80  1/420 \n[ 2441.659563] [ 2441.659563] (CPU:0-pid:0:swapper/0) [22:04:26.441452234] loadavg 0.81  1/420 \n[ 2443.573029] [ 2443.572991] (CPU:0-pid:668:wk:battery_saf) [22:04:28.354880133] [BAT][BMS][ERR]update_battery_safe +\n[ 2443.573039] [ 2443.573039] (CPU:0-pid:668:wk:battery_saf) [22:04:28.354928050] init_batt_cycle_count_data +++\n[ 2443.573261] [ 2443.573261] (CPU:0-pid:668:wk:battery_saf) [22:04:28.355149873] FG: file_op: open /batinfo/.bs err! error code:-2\n[ 2443.573308] [ 2443.573308] (CPU:0-pid:668:wk:battery_saf) [22:04:28.355197216] FG: init_batt_cycle_count_data: Read cycle count file failed!\n[ 2443.573385] [ 2443.573352] (CPU:0-pid:668:wk:battery_saf) [22:04:28.355241227] FG: update_battery_safe: cyclecount is not initialized\n[ 2446.662895] [ 2446.662895] (CPU:0-pid:0:swapper/0) [22:04:31.444784972] loadavg 0.83  1/420 \n[ 2451.666228] [ 2451.666228] (CPU:0-pid:0:swapper/0) [22:04:36.448117971] loadavg 0.76  0/418 \n[ 2456.669560] [ 2456.669560] (CPU:0-pid:0:swapper/0) [22:04:41.451450344] loadavg 0.70  0/419 \n[ 2461.672894] [ 2461.672894] (CPU:0-pid:0:swapper/0) [22:04:46.454784905] loadavg 0.72  1/420 \n[ 2466.676223] [ 2466.676223] (CPU:0-pid:0:swapper/0) [22:04:51.458114778] loadavg 0.75  1/420 \n[ 2471.679555] [ 2471.679555] (CPU:0-pid:0:swapper/0) [22:04:56.461447256] loadavg 0.77  1/420 \n[ 2476.682888] [ 2476.682888] (CPU:0-pid:0:swapper/0) [22:05:01.464780983] loadavg 0.79  1/420 \n[ 2481.686220] [ 2481.686220] (CPU:0-pid:0:swapper/0) [22:05:06.468113201] loadavg 0.80  1/420 \n[ 2484.534733] [ 2484.534733] (CPU:0-pid:699:wk:update_gaug) [22:05:09.316626609] (2484)1970-02-09 22:05:09 :[BAT][Ser]report Capacity ==>89, FCC:5749mAh, BMS:89, V:4154mV, Cur:388mA, Temp:25.2C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[ 2484.535067] [ 2484.535067] (CPU:0-pid:699:wk:update_gaug) [22:05:09.316959839] [BAT][BMS]print_battery_status: csoc=5005420, bsoc=223, msoc=228, ocv=4189703, SocSts=42, BatSts=0\n[ 2486.689554] [ 2486.689554] (CPU:0-pid:0:swapper/0) [22:05:11.471447605] loadavg 0.82  1/420 \n[ 2491.692887] [ 2491.692887] (CPU:0-pid:0:swapper/0) [22:05:16.474780656] loadavg 0.75  0/419 \n[ 2496.696217] [ 2496.696217] (CPU:0-pid:0:swapper/0) [22:05:21.478111727] loadavg 0.77  1/420 \n[ 2501.699550] [ 2501.699550] (CPU:0-pid:0:swapper/0) [22:05:26.481444517] loadavg 0.79  1/420 \n[ 2506.702883] [ 2506.702883] (CPU:0-pid:0:swapper/0) [22:05:31.484777984] loadavg 0.81  1/420 \n[ 2511.706216] [ 2511.706216] (CPU:0-pid:0:swapper/0) [22:05:36.488112493] loadavg 0.82  1/420 \n[ 2516.709547] [ 2516.709547] (CPU:0-pid:0:swapper/0) [22:05:41.491443513] loadavg 0.84  1/420 \n[ 2521.712880] [ 2521.712880] (CPU:0-pid:0:swapper/0) [22:05:46.494776667] loadavg 0.77  0/418 \n[ 2526.716212] [ 2526.716212] (CPU:0-pid:0:swapper/0) [22:05:51.498108884] loadavg 0.71  0/419 \n[ 2531.719543] [ 2531.719543] (CPU:0-pid:0:swapper/0) [22:05:56.501441206] loadavg 0.73  1/420 \n[ 2536.722878] [ 2536.722878] (CPU:0-pid:0:swapper/0) [22:06:01.504776652] loadavg 0.75  1/420 \n[ 2541.726209] [ 2541.726209] (CPU:0-pid:0:swapper/0) [22:06:06.508108296] loadavg 0.77  1/420 \n[ 2546.729540] [ 2546.729540] (CPU:0-pid:0:swapper/0) [22:06:11.511439420] loadavg 0.79  1/420 \n[ 2551.732873] [ 2551.732873] (CPU:0-pid:0:swapper/0) [22:06:16.514773043] loadavg 0.81  0/419 \n[ 2556.736207] [ 2556.736207] (CPU:0-pid:0:swapper/0) [22:06:21.518107344] loadavg 0.74  0/419 \n[ 2561.739540] [ 2561.739540] (CPU:0-pid:0:swapper/0) [22:06:26.521440394] loadavg 0.76  1/420 \n[ 2566.742871] [ 2566.742871] (CPU:0-pid:0:swapper/0) [22:06:31.524772559] loadavg 0.78  1/420 \n[ 2569.334953] [ 2569.334953] (CPU:0-pid:367:irq/560-msoc-de) [22:06:34.116854953] [PSY] power_supply_changed, psy_name:battery\n[ 2569.338003] [ 2569.338003] (CPU:0-pid:699:wk:status_chan) [22:06:34.119904224] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[ 2569.338519] [ 2569.338519] (CPU:0-pid:91:pd_dbg_info) [22:06:34.120420891] ///PD dbg info 66d\n[ 2569.338567] [ 2569.338567] (CPU:0-pid:91:pd_dbg_info) [22:06:34.120467870] < 2569.338>TCPC-TCPC:bat_update_work_func battery update soc = 89\n[ 2569.359743] [ 2569.359743] (CPU:0-pid:91:pd_dbg_info) [22:06:34.141644799] ///PD dbg info 62d\n[ 2569.359791] [ 2569.359791] (CPU:0-pid:91:pd_dbg_info) [22:06:34.141692612] < 2569.338>TCPC-TCPC:bat_update_work_func Battery Discharging\n[ 2571.746202] [ 2571.746202] (CPU:0-pid:0:swapper/0) [22:06:36.528103891] loadavg 0.80  1/420 \n[ 2576.749534] [ 2576.749534] (CPU:0-pid:0:swapper/0) [22:06:41.531436629] loadavg 0.81  1/420 \n[ 2581.752868] [ 2581.752868] (CPU:0-pid:0:swapper/0) [22:06:46.534770825] loadavg 0.75  0/419 \n[ 2586.756203] [ 2586.756203] (CPU:0-pid:0:swapper/0) [22:06:51.538106688] loadavg 0.69  0/419 \n[ 2591.759533] [ 2591.759533] (CPU:0-pid:0:swapper/0) [22:06:56.541436406] loadavg 0.71  1/420 \n[ 2596.762867] [ 2596.762867] (CPU:0-pid:0:swapper/0) [22:07:01.544770914] loadavg 0.74  1/420 \n[ 2601.766197] [ 2601.766197] (CPU:0-pid:0:swapper/0) [22:07:06.548102090] loadavg 0.76  1/420 \n[ 2606.769529] [ 2606.769529] (CPU:0-pid:0:swapper/0) [22:07:11.551433890] loadavg 0.78  1/420 \n[ 2611.772866] [ 2611.772866] (CPU:0-pid:0:swapper/0) [22:07:16.554771264] loadavg 0.71  0/418 \n[ 2616.776194] [ 2616.776194] (CPU:0-pid:0:swapper/0) [22:07:21.558100044] loadavg 0.66  0/419 \n[ 2621.779526] [ 2621.779526] (CPU:0-pid:0:swapper/0) [22:07:26.561432677] loadavg 0.68  1/420 \n[ 2626.782859] [ 2626.782859] (CPU:0-pid:0:swapper/0) [22:07:31.564766040] loadavg 0.71  1/420 \n[ 2631.786191] [ 2631.786191] (CPU:0-pid:0:swapper/0) [22:07:36.568098622] loadavg 0.73  1/420 \n[ 2636.789525] [ 2636.789525] (CPU:0-pid:0:swapper/0) [22:07:41.571432818] loadavg 0.75  1/420 \n[ 2641.792858] [ 2641.792858] (CPU:0-pid:0:swapper/0) [22:07:46.574766025] loadavg 0.69  0/419 \n[ 2646.796188] [ 2646.796188] (CPU:0-pid:0:swapper/0) [22:07:51.578096784] loadavg 0.72  1/420 \n[ 2651.799520] [ 2651.799520] (CPU:0-pid:0:swapper/0) [22:07:56.581429626] loadavg 0.74  1/420 \n[ 2656.802853] [ 2656.802853] (CPU:0-pid:0:swapper/0) [22:08:01.584763458] loadavg 0.76  1/420 \n[ 2661.806186] [ 2661.806186] (CPU:0-pid:0:swapper/0) [22:08:06.588096925] loadavg 0.78  1/420 \n[ 2666.809519] [ 2666.809519] (CPU:0-pid:0:swapper/0) [22:08:11.591429819] loadavg 0.72  0/419 \n[ 2671.812849] [ 2671.812849] (CPU:0-pid:0:swapper/0) [22:08:16.594760839] loadavg 0.74  1/420 \n[ 2675.681436] [ 2675.681436] (CPU:0-pid:699:wk:update_gaug) [22:08:20.463347474] (2675)1970-02-09 22:08:20 :[BAT][Ser]report Capacity ==>89, FCC:5749mAh, BMS:89, V:4143mV, Cur:438mA, Temp:25.5C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[ 2675.681789] [ 2675.681789] (CPU:0-pid:699:wk:update_gaug) [22:08:20.463700235] [BAT][BMS]print_battery_status: csoc=4984834, bsoc=223, msoc=227, ocv=4185797, SocSts=42, BatSts=0\n[ 2676.816181] [ 2676.816181] (CPU:0-pid:0:swapper/0) [22:08:21.598093004] loadavg 0.76  1/420 \n[ 2681.819514] [ 2681.819514] (CPU:0-pid:0:swapper/0) [22:08:26.601425898] loadavg 0.78  1/420 \n[ 2686.822849] [ 2686.822849] (CPU:0-pid:0:swapper/0) [22:08:31.604761605] loadavg 0.80  1/420 \n[ 2691.826182] [ 2691.826182] (CPU:0-pid:0:swapper/0) [22:08:36.608094916] loadavg 0.73  0/419 \n[ 2696.829512] [ 2696.829512] (CPU:0-pid:0:swapper/0) [22:08:41.611425570] loadavg 0.75  1/420 \n[ 2701.832843] [ 2701.832843] (CPU:0-pid:0:swapper/0) [22:08:46.614757579] loadavg 0.77  1/420 \n[ 2706.836175] [ 2706.836175] (CPU:0-pid:0:swapper/0) [22:08:51.618090213] loadavg 0.79  1/420 \n[ 2711.839510] [ 2711.839510] (CPU:0-pid:0:swapper/0) [22:08:56.621425191] loadavg 0.81  1/420 \n[ 2716.842843] [ 2716.842843] (CPU:0-pid:0:swapper/0) [22:09:01.624758658] loadavg 0.74  0/419 \n[ 2721.846174] [ 2721.846174] (CPU:0-pid:0:swapper/0) [22:09:06.628090042] loadavg 0.76  1/420 \n[ 2726.849506] [ 2726.849506] (CPU:0-pid:0:swapper/0) [22:09:11.631422519] loadavg 0.78  1/420 \n[ 2731.852837] [ 2731.852837] (CPU:0-pid:0:swapper/0) [22:09:16.634754476] loadavg 0.80  1/420 \n[ 2736.856174] [ 2736.856174] (CPU:0-pid:0:swapper/0) [22:09:21.638092214] loadavg 0.73  0/418 \n[ 2741.859503] [ 2741.859503] (CPU:0-pid:0:swapper/0) [22:09:26.641421619] loadavg 0.67  0/419 \n[ 2743.946295] [ 2743.946257] (CPU:0-pid:668:wk:battery_saf) [22:09:28.728175264] [BAT][BMS][ERR]update_battery_safe +\n[ 2743.946306] [ 2743.946306] (CPU:0-pid:668:wk:battery_saf) [22:09:28.728223650] init_batt_cycle_count_data +++\n[ 2743.946529] [ 2743.946529] (CPU:0-pid:668:wk:battery_saf) [22:09:28.728446931] FG: file_op: open /batinfo/.bs err! error code:-2\n[ 2743.946576] [ 2743.946576] (CPU:0-pid:668:wk:battery_saf) [22:09:28.728494222] FG: init_batt_cycle_count_data: Read cycle count file failed!\n[ 2743.946653] [ 2743.946620] (CPU:0-pid:668:wk:battery_saf) [22:09:28.728538181] FG: update_battery_safe: cyclecount is not initialized\n[ 2746.862836] [ 2746.862836] (CPU:0-pid:0:swapper/0) [22:09:31.644754825] loadavg 0.70  1/420 \n[ 2751.866169] [ 2751.866169] (CPU:0-pid:0:swapper/0) [22:09:36.648088449] loadavg 0.72  1/420 \n[ 2756.869500] [ 2756.869500] (CPU:0-pid:0:swapper/0) [22:09:41.651419260] loadavg 0.75  1/420 \n[ 2761.872836] [ 2761.872836] (CPU:0-pid:0:swapper/0) [22:09:46.654756477] loadavg 0.69  0/418 \n[ 2766.876164] [ 2766.876164] (CPU:0-pid:0:swapper/0) [22:09:51.658084788] loadavg 0.63  0/419 \n[ 2771.879497] [ 2771.879497] (CPU:0-pid:0:swapper/0) [22:09:56.661417838] loadavg 0.66  1/420 \n[ 2776.882830] [ 2776.882830] (CPU:0-pid:0:swapper/0) [22:10:01.664751670] loadavg 0.69  1/420 \n[ 2781.886162] [ 2781.886162] (CPU:0-pid:0:swapper/0) [22:10:06.668084252] loadavg 0.71  0/418 \n[ 2786.889498] [ 2786.889498] (CPU:0-pid:0:swapper/0) [22:10:11.671420167] loadavg 0.65  0/419 \n[ 2791.892827] [ 2791.892827] (CPU:0-pid:0:swapper/0) [22:10:16.674749676] loadavg 0.68  1/420 \n[ 2796.896158] [ 2796.896158] (CPU:0-pid:0:swapper/0) [22:10:21.678081633] loadavg 0.71  1/420 \n[ 2801.899490] [ 2801.899490] (CPU:0-pid:0:swapper/0) [22:10:26.681414214] loadavg 0.73  1/420 \n[ 2806.902825] [ 2806.902825] (CPU:0-pid:0:swapper/0) [22:10:31.684749504] loadavg 0.67  0/419 \n[ 2811.906158] [ 2811.906158] (CPU:0-pid:0:swapper/0) [22:10:36.688082763] loadavg 0.70  1/420 \n[ 2815.124885] [ 2815.124885] (CPU:0-pid:367:irq/560-msoc-de) [22:10:39.906810480] [PSY] power_supply_changed, psy_name:battery\n[ 2815.127574] [ 2815.127574] (CPU:0-pid:668:wk:status_chan) [22:10:39.909499803] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[ 2815.128452] [ 2815.128452] (CPU:0-pid:91:pd_dbg_info) [22:10:39.910376834] ///PD dbg info 66d\n[ 2815.128499] [ 2815.128499] (CPU:0-pid:91:pd_dbg_info) [22:10:39.910423709] < 2815.128>TCPC-TCPC:bat_update_work_func battery update soc = 88\n[ 2815.149569] [ 2815.149569] (CPU:0-pid:91:pd_dbg_info) [22:10:39.931493920] ///PD dbg info 62d\n[ 2815.149617] [ 2815.149617] (CPU:0-pid:91:pd_dbg_info) [22:10:39.931541732] < 2815.128>TCPC-TCPC:bat_update_work_func Battery Discharging\n[ 2816.909488] [ 2816.909488] (CPU:0-pid:0:swapper/0) [22:10:41.691413262] loadavg 0.72  1/420 \n[ 2821.912819] [ 2821.912819] (CPU:0-pid:0:swapper/0) [22:10:46.694745271] loadavg 0.74  1/420 \n[ 2826.916153] [ 2826.916153] (CPU:0-pid:0:swapper/0) [22:10:51.698079571] loadavg 0.68  0/418 \n[ 2831.919484] [ 2831.919484] (CPU:0-pid:0:swapper/0) [22:10:56.701410590] loadavg 0.63  0/419 \n[ 2836.922820] [ 2836.922820] (CPU:0-pid:0:swapper/0) [22:11:01.704747078] loadavg 0.74  1/420 \n[ 2841.926150] [ 2841.926150] (CPU:0-pid:0:swapper/0) [22:11:06.708077785] loadavg 0.76  1/420 \n[ 2846.929482] [ 2846.929482] (CPU:0-pid:0:swapper/0) [22:11:11.711410575] loadavg 0.70  0/418 \n[ 2851.932813] [ 2851.932813] (CPU:0-pid:0:swapper/0) [22:11:16.714741751] loadavg 0.64  0/419 \n[ 2856.936146] [ 2856.936146] (CPU:0-pid:0:swapper/0) [22:11:21.718075322] loadavg 0.67  1/420 \n[ 2861.939481] [ 2861.939481] (CPU:0-pid:0:swapper/0) [22:11:26.721410612] loadavg 0.70  1/420 \n[ 2866.827985] [ 2866.827985] (CPU:0-pid:668:wk:update_gaug) [22:11:31.609914901] (2866)1970-02-09 22:11:31 :[BAT][Ser]report Capacity ==>88, FCC:5749mAh, BMS:88, V:4146mV, Cur:332mA, Temp:25.5C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[ 2866.828321] [ 2866.828321] (CPU:0-pid:668:wk:update_gaug) [22:11:31.610251151] [BAT][BMS]print_battery_status: csoc=4961437, bsoc=222, msoc=226, ocv=4181402, SocSts=42, BatSts=0\n[ 2866.942813] [ 2866.942813] (CPU:0-pid:0:swapper/0) [22:11:31.724743402] loadavg 0.64  0/418 \n[ 2871.946145] [ 2871.946145] (CPU:0-pid:0:swapper/0) [22:11:36.728075880] loadavg 0.59  0/419 \n[ 2876.949478] [ 2876.949478] (CPU:0-pid:0:swapper/0) [22:11:41.731409347] loadavg 0.62  1/420 \n[ 2881.952808] [ 2881.952808] (CPU:0-pid:0:swapper/0) [22:11:46.734739429] loadavg 0.65  1/420 \n[ 2886.956145] [ 2886.956145] (CPU:0-pid:0:swapper/0) [22:11:51.738077375] loadavg 0.60  0/418 \n[ 2891.959474] [ 2891.959474] (CPU:0-pid:0:swapper/0) [22:11:56.741406624] loadavg 0.55  0/419 \n[ 2896.962806] [ 2896.962806] (CPU:0-pid:0:swapper/0) [22:12:01.744739518] loadavg 0.59  1/420 \n[ 2901.966138] [ 2901.966138] (CPU:0-pid:0:swapper/0) [22:12:06.748071266] loadavg 0.62  1/420 \n[ 2905.154412] [ 2905.154412] (CPU:0-pid:572:python3) [22:12:09.936345855] CPU7: shutdown\n"
  },
  {
    "path": "results/sm8150ac/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  4:     875250   PDC-GIC  19 Level     arch_timer\n  6:          0   PDC-GIC  38 Level     arch_mem_timer\n  8:          0   PDC-GIC 115 Edge      msm_drm\n  9:          0   PDC-GIC 509 Edge      csiphy\n 10:          0   PDC-GIC 510 Edge      csiphy\n 11:          0   PDC-GIC 511 Edge      csiphy\n 12:          0   PDC-GIC 480 Edge      csiphy\n 13:          0   PDC-GIC 492 Edge      cci\n 14:          0   PDC-GIC 303 Edge      cci\n 15:          0   PDC-GIC 491 Edge      cpas_camnoc\n 16:          1   PDC-GIC 493 Edge      cpas-cdm\n 17:          0   PDC-GIC 496 Edge      csid\n 18:          2   PDC-GIC 497 Edge      ife\n 19:          0   PDC-GIC 498 Edge      csid\n 20:          2   PDC-GIC 499 Edge      ife\n 21:          0   PDC-GIC 500 Edge      csid-lite\n 22:          2   PDC-GIC 501 Edge      ife-lite\n 23:          0   PDC-GIC 391 Edge      csid-lite\n 24:          2   PDC-GIC 392 Edge      ife-lite\n 25:          0   PDC-GIC 495 Edge      a5\n 26:          0   PDC-GIC 506 Edge      jpeg\n 27:          0   PDC-GIC 507 Edge      jpegdma\n 28:          2   PDC-GIC 494 Edge      fd\n 29:          1   PDC-GIC 508 Edge      lrme\n 35:          0   PDC-GIC  21 Level     arm-pmu\n 43:          0  pmic_arb 574619927 Edge      qcom,temp-alarm\n 44:          0  pmic_arb 721486118 Edge      ptrain-done\n 55:       4032  pmic_arb 588251416 Edge      pm-adc5\n 56:       2291  pmic_arb 592445721 Edge      thr-int-en\n 57:          0  pmic_arb 8388857 Edge      pon_kpdpwr_status\n 58:          0  pmic_arb 37748986 Edge      qcom,temp-alarm\n 59:          0  pmic_arb 8454393 Edge      pon_resin_status\n 60:       2868  pmic_arb 51380475 Edge      pm-adc5\n 61:          0  pmic_arb 55574780 Edge      thr-int-en\n 62:          0  pmic_arb 560988433 Edge      sig-tx\n 63:          0  pmic_arb 561053969 Edge      sig-rx\n 64:          0  pmic_arb 561119505 Edge      msg-tx\n 65:          0  pmic_arb 561185041 Edge      msg-rx\n 66:          0  pmic_arb 561250577 Edge      msg-tx-failed\n 67:          0  pmic_arb 561316113 Edge      msg-tx-discarded\n 68:          0  pmic_arb 561381649 Edge      msg-rx-discarded\n 70:          0  pmic_arb 567279894 Edge      bcl-lvl0\n 71:          0  pmic_arb 567345430 Edge      bcl-lvl1\n 72:          0  pmic_arb 567410966 Edge      bcl-lvl2\n 75:          0  pmic_arb 1111490870 Edge      qcom,temp-alarm\n 87:       5733  pmic_arb 1125122359 Edge      pm-adc5\n 88:          0  pmic_arb 1137705273 Edge      bcl-lvl0\n 89:          0  pmic_arb 1137770809 Edge      bcl-lvl1\n 90:          0  pmic_arb 1137836345 Edge      bcl-lvl2\n 91:          0  pmic_arb 1129316664 Edge      thr-int-en\n 92:          0  pmic_arb 1589707091 Edge      qpnp_lcdb_sc_irq\n 93:          0  pmic_arb 1563427152 Edge      qpnp_flash_led_fault_irq\n 94:          0  pmic_arb 1563623760 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 95:          0  pmic_arb 1563689296 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 96:          0  pmic_arb 1568735569 Edge      wled_ovp_irq\n 97:          0  pmic_arb 1568932177 Edge      wled_pre_flash_irq\n 98:          0  pmic_arb 1568997713 Edge      wled_flash_irq\n 99:          0   PDC-GIC 524 Level     eud_irq\n100:          0   PDC-GIC 298 Edge      modem\n101:          0   PDC-GIC 194 Edge      adsp\n102:          0   PDC-GIC 526 Edge      slpi\n103:          0   PDC-GIC 384 Level     spss\n104:          0   PDC-GIC  32 Edge      apps_wdog_bark\n106:          0   PDC-GIC 610 Edge      cdsp\n107:          0   PDC-GIC  22 Level     KRYO L1-L2 ECC FAULTIRQ\n110:          0   PDC-GIC  67 Level     KRYO L3-SCU ECC FAULTIRQ\n111:        622   PDC-GIC 297 Edge      1d84000.ufshc\n112:        905   PDC-GIC  37 Level     apps_rsc\n113:          0   PDC-GIC 380 Level     qsee_irq\n114:          0   PDC-GIC 381 Level     qsee_irq\n115:         11   PDC-GIC 421 Edge      qcom,qmp-aop\n116:          0   PDC-GIC 401 Edge      qcom,qmp-npu-low\n117:          0   PDC-GIC 402 Edge      qcom,qmp-npu-high\n118:          0   PDC-GIC 304 Level     sps\n119:          0   PDC-GIC 538 Level     tsens-upper-lower\n120:          0   PDC-GIC 540 Level     tsens-critical\n121:          0   PDC-GIC 539 Level     tsens-upper-lower\n122:          0   PDC-GIC 541 Level     tsens-critical\n123:          0   PDC-GIC 195 Level     ngd_slim_irq\n125:          0   PDC-GIC 323 Level     ngd_slim_irq\n190:          0  msmgpio-dc   8 Edge      TE_GPIO\n210:          0  msmgpio-dc  37 Edge      msm_pcie_wake\n222:          2  msmgpio-dc  47 Level     nq-nci\n244:          0  msmgpio-dc  68 Edge      asustek_lid2_isr\n260:          0  msmgpio-dc  88 Edge      accy_therm_alert\n270:          0  msmgpio-dc  96 Edge      top_vib_trig_interrupt\n272:          0  msmgpio-dc  97 Edge      volume_down\n276:          1  msmgpio-dc 103 Edge      type_c_port0-IRQ\n288:          0  msmgpio-dc 117 Level     ALSPS_SENSOR_INT\n292:          0  msmgpio-dc 119 Edge      bot_vib_trig_interrupt\n294:          0  msmgpio-dc 120 Edge      therm_alert\n296:          0  msmgpio-dc 121 Edge      asustek_lid_isr\n308:          0  msmgpio-dc 132 Level     pca9468\n312:          0  msmgpio-dc 134 Edge      volume_up\n335:          0     GICv3 172 Edge      int_global_int\n410:          0   PDC-GIC 483 Edge      smp2p\n411:          0   PDC-GIC 190 Edge      smp2p\n412:          0   PDC-GIC 204 Edge      smp2p\n413:          0   PDC-GIC 608 Edge      smp2p\n415:          0   PDC-GIC  97 Level     arm-smmu global fault\n418:          0   PDC-GIC 131 Level     arm-smmu-context-fault\n419:          0   PDC-GIC 132 Level     arm-smmu-context-fault\n420:          0   PDC-GIC 133 Level     arm-smmu-context-fault\n421:          0   PDC-GIC 134 Level     arm-smmu-context-fault\n422:          0   PDC-GIC 135 Level     arm-smmu-context-fault\n423:          0   PDC-GIC 136 Level     arm-smmu-context-fault\n424:          0   PDC-GIC 137 Level     arm-smmu-context-fault\n425:          0   PDC-GIC 138 Level     arm-smmu-context-fault\n426:          0   PDC-GIC 139 Level     arm-smmu-context-fault\n427:          0   PDC-GIC 140 Level     arm-smmu-context-fault\n428:          0   PDC-GIC 141 Level     arm-smmu-context-fault\n429:          0   PDC-GIC 142 Level     arm-smmu-context-fault\n430:          0   PDC-GIC 143 Level     arm-smmu-context-fault\n431:          0   PDC-GIC 144 Level     arm-smmu-context-fault\n432:          0   PDC-GIC 145 Level     arm-smmu-context-fault\n433:          0   PDC-GIC 146 Level     arm-smmu-context-fault\n434:          0   PDC-GIC 147 Level     arm-smmu-context-fault\n435:          0   PDC-GIC 148 Level     arm-smmu-context-fault\n436:          0   PDC-GIC 149 Level     arm-smmu-context-fault\n437:          0   PDC-GIC 150 Level     arm-smmu-context-fault\n438:          0   PDC-GIC 213 Level     arm-smmu-context-fault\n439:          0   PDC-GIC 214 Level     arm-smmu-context-fault\n440:          0   PDC-GIC 215 Level     arm-smmu-context-fault\n441:          0   PDC-GIC 216 Level     arm-smmu-context-fault\n442:          0   PDC-GIC 217 Level     arm-smmu-context-fault\n443:          0   PDC-GIC 218 Level     arm-smmu-context-fault\n444:          0   PDC-GIC 219 Level     arm-smmu-context-fault\n445:          0   PDC-GIC 220 Level     arm-smmu-context-fault\n446:          0   PDC-GIC 221 Level     arm-smmu-context-fault\n447:          0   PDC-GIC 222 Level     arm-smmu-context-fault\n448:          0   PDC-GIC 223 Level     arm-smmu-context-fault\n449:          0   PDC-GIC 224 Level     arm-smmu-context-fault\n450:          0   PDC-GIC 347 Level     arm-smmu-context-fault\n451:          0   PDC-GIC 348 Level     arm-smmu-context-fault\n452:          0   PDC-GIC 349 Level     arm-smmu-context-fault\n453:          0   PDC-GIC 350 Level     arm-smmu-context-fault\n454:          0   PDC-GIC 351 Level     arm-smmu-context-fault\n455:          0   PDC-GIC 352 Level     arm-smmu-context-fault\n456:          0   PDC-GIC 353 Level     arm-smmu-context-fault\n457:          0   PDC-GIC 354 Level     arm-smmu-context-fault\n458:          0   PDC-GIC 355 Level     arm-smmu-context-fault\n459:          0   PDC-GIC 356 Level     arm-smmu-context-fault\n460:          0   PDC-GIC 357 Level     arm-smmu-context-fault\n461:          0   PDC-GIC 358 Level     arm-smmu-context-fault\n462:          0   PDC-GIC 359 Level     arm-smmu-context-fault\n496:         45   PDC-GIC 634 Level     i2c_geni\n497:         30   PDC-GIC 637 Level     i2c_geni\n498:          4   PDC-GIC 640 Level     i2c_geni\n499:          0   PDC-GIC 636 Level     spi_geni\n502:          0   PDC-GIC 386 Level     i2c_geni\n503:          0   PDC-GIC 387 Level     i2c_geni\n504:         17   PDC-GIC 388 Level     i2c_geni\n505:          3   PDC-GIC 405 Level     i2c_geni\n506:        170   PDC-GIC 615 Level     i2c_geni\n507:         17   PDC-GIC 616 Level     i2c_geni\n508:          0   PDC-GIC 396 Edge      error_irq\n509:          0   PDC-GIC 398 Edge      wdg_bite_irq\n510:          0   PDC-GIC 400 Level     ipc_irq\n511:          0   PDC-GIC 206 Level     msm_vidc\n512:          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n513:          1   PDC-GIC 162 Edge      pwr_event_irq\n514:          0   PDC-GIC 518 Level     ss_phy_irq\n515:          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n516:          0   PDC-GIC 523 Edge      dp_hs_phy_irq\n517:          1   PDC-GIC 167 Edge      pwr_event_irq\n518:          0   PDC-GIC 519 Level     ss_phy_irq\n519:          0   PDC-GIC 522 Edge      dm_hs_phy_irq\n520:          0   PDC-GIC 332 Level     kgsl-3d0\n521:          0   PDC-GIC 336 Level     HFI\n522:          0   PDC-GIC 337 Level     GMU\n523:          0   PDC-GIC 706 Level     arm-smmu global fault\n524:          0   PDC-GIC 713 Level     arm-smmu-context-fault\n525:          0   PDC-GIC 714 Level     arm-smmu-context-fault\n526:          0   PDC-GIC 715 Level     arm-smmu-context-fault\n532:          0   PDC-GIC  64 Level     limits_sensor-00\n533:          0   PDC-GIC  65 Level     limits_sensor-01\n534:          0     smp2p   2 Edge      modem\n535:          0     smp2p   0 Edge      modem\n536:          0     smp2p   1 Edge      error_ready_interrupt\n537:          0     smp2p   3 Edge      modem\n538:          0     smp2p   7 Edge      modem\n539:          0     smp2p   2 Edge      adsp\n540:          0     smp2p   0 Edge      adsp\n541:          0     smp2p   1 Edge      error_ready_interrupt\n542:          0     smp2p   3 Edge      adsp\n543:          0     smp2p   2 Edge      slpi\n544:          0     smp2p   0 Edge      slpi\n545:          0     smp2p   1 Edge      error_ready_interrupt\n546:          0     smp2p   3 Edge      slpi\n547:          0     smp2p   2 Edge      cdsp\n548:          0     smp2p   0 Edge      cdsp\n549:          0     smp2p   1 Edge      error_ready_interrupt\n550:          0     smp2p   3 Edge      cdsp\n551:          0      qsee  32 Level     qsee_ipc_irq_spss\n552:          0     smp2p   0 Edge      smp2p_sleepstate\n553:          0   PDC-GIC 165 Edge      dwc3\n555:          0   PDC-GIC 170 Edge      dwc3\n556:          0  pmic_arb 101777663 Edge      qpnp_rtc_alarm\n557:          0  pmic_arb 603980059 Edge      soc-update\n558:          0  pmic_arb 604045595 Edge      soc-ready\n559:          0  pmic_arb 604111131 Edge      bsoc-delta\n560:         10  pmic_arb 604176667 Edge      msoc-delta\n561:          0  pmic_arb 604242203 Edge      msoc-low\n562:          0  pmic_arb 604307739 Edge      msoc-empty\n563:          0  pmic_arb 604373275 Edge      msoc-high\n564:          0  pmic_arb 604438811 Edge      msoc-full\n565:          0  pmic_arb 605028636 Edge      vbatt-low\n566:          0  pmic_arb 605094172 Edge      vbatt-pred-delta\n567:          3  pmic_arb 605225244 Edge      esr-delta\n568:          0  pmic_arb 606077213 Edge      batt-missing\n569:          0  pmic_arb 606142749 Edge      batt-id\n570:          2  pmic_arb 606208285 Edge      batt-temp-delta\n571:          0  pmic_arb 606273821 Edge      batt-temp-hot\n572:          0  pmic_arb 606339357 Edge      batt-temp-cold\n573:          0  pmic_arb 607125790 Edge      ima-rdy\n574:          0  pmic_arb 607191326 Edge      ima-xcp\n575:          0  pmic_arb 607256862 Edge      dma-xcp\n576:        294  pmic_arb 607322398 Edge      dma-grant\n577:          0  pmic_arb 607387934 Edge      mem-attn\n578:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n579:          0  pmic_arb 553648394 Edge      chgr-error\n580:          0  pmic_arb 553713930 Edge      chg-state-change\n586:          0  pmic_arb 554696971 Edge      otg-fail\n589:          0  pmic_arb 554959115 Edge      high-duty-cycle\n590:          0  pmic_arb 555024651 Edge      input-current-limiting\n592:          0  pmic_arb 555155723 Edge      switcher-power-ok\n593:          0  pmic_arb 555745548 Edge      bat-temp\n594:          0  pmic_arb 555876620 Edge      bat-ov\n595:          0  pmic_arb 555942156 Edge      bat-low\n596:          0  pmic_arb 556007692 Edge      bat-therm-or-id-missing\n597:          0  pmic_arb 556073228 Edge      bat-terminal-missing\n600:          0  pmic_arb 556794125 Edge      usbin-collapse\n601:          0  pmic_arb 556859661 Edge      usbin-vashdn\n602:          0  pmic_arb 556925197 Edge      usbin-uv\n603:          0  pmic_arb 556990733 Edge      usbin-ov\n604:          0  pmic_arb 557056269 Edge      usbin-plugin\n606:          0  pmic_arb 557187341 Edge      usbin-src-change\n607:          0  pmic_arb 557252877 Edge      usbin-icl-change\n609:          0  pmic_arb 557973774 Edge      dcin-uv\n610:          0  pmic_arb 558039310 Edge      dcin-ov\n611:          0  pmic_arb 558104846 Edge      dcin-plugin\n613:          0  pmic_arb 558235918 Edge      dcin-pon\n614:          0  pmic_arb 558301454 Edge      dcin-en\n615:          0  pmic_arb 558891279 Edge      typec-or-rid-detect-change\n617:          0  pmic_arb 559022351 Edge      typec-cc-state-change\n618:          0  pmic_arb 559087887 Edge      typec-vconn-oc\n620:          0  pmic_arb 559218959 Edge      typec-attach-detach\n621:          0  pmic_arb 559284495 Edge      typec-legacy-cable-detect\n623:          0  pmic_arb 559939856 Edge      wdog-snarl\n624:          0  pmic_arb 560005392 Edge      wdog-bark\n626:          0  pmic_arb 560136464 Edge      aicl-done\n627:          0  pmic_arb 560202000 Edge      smb-en\n628:          0  pmic_arb 560333072 Edge      temp-change\n630:          0       sde  12 Edge      dp_display_isr\n631:          0       sde   4 Edge      dsi_ctrl\nIPI0:       272       Rescheduling interrupts\nIPI1:        12       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:    144922       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8150ac/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  4:       1404          2          3          2          5          2          2          1   PDC-GIC  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   PDC-GIC  38 Level     arch_mem_timer\n  8:          0          0          0          0          0          0          0          0   PDC-GIC 115 Edge      msm_drm\n  9:          0          0          0          0          0          0          0          0   PDC-GIC 509 Edge      csiphy\n 10:          0          0          0          0          0          0          0          0   PDC-GIC 510 Edge      csiphy\n 11:          0          0          0          0          0          0          0          0   PDC-GIC 511 Edge      csiphy\n 12:          0          0          0          0          0          0          0          0   PDC-GIC 480 Edge      csiphy\n 13:          0          0          0          0          0          0          0          0   PDC-GIC 492 Edge      cci\n 14:          0          0          0          0          0          0          0          0   PDC-GIC 303 Edge      cci\n 15:          0          0          0          0          0          0          0          0   PDC-GIC 491 Edge      cpas_camnoc\n 16:          1          0          0          0          0          0          0          0   PDC-GIC 493 Edge      cpas-cdm\n 17:          0          0          0          0          0          0          0          0   PDC-GIC 496 Edge      csid\n 18:          2          0          0          0          0          0          0          0   PDC-GIC 497 Edge      ife\n 19:          0          0          0          0          0          0          0          0   PDC-GIC 498 Edge      csid\n 20:          2          0          0          0          0          0          0          0   PDC-GIC 499 Edge      ife\n 21:          0          0          0          0          0          0          0          0   PDC-GIC 500 Edge      csid-lite\n 22:          2          0          0          0          0          0          0          0   PDC-GIC 501 Edge      ife-lite\n 23:          0          0          0          0          0          0          0          0   PDC-GIC 391 Edge      csid-lite\n 24:          2          0          0          0          0          0          0          0   PDC-GIC 392 Edge      ife-lite\n 25:          0          0          0          0          0          0          0          0   PDC-GIC 495 Edge      a5\n 26:          0          0          0          0          0          0          0          0   PDC-GIC 506 Edge      jpeg\n 27:          0          0          0          0          0          0          0          0   PDC-GIC 507 Edge      jpegdma\n 28:          2          0          0          0          0          0          0          0   PDC-GIC 494 Edge      fd\n 29:          1          0          0          0          0          0          0          0   PDC-GIC 508 Edge      lrme\n 35:          0          0          0          0          0          0          0          0   PDC-GIC  21 Level     arm-pmu\n 43:          0          0          0          0          0          0          0          0  pmic_arb 574619927 Edge      qcom,temp-alarm\n 44:          0          0          0          0          0          0          0          0  pmic_arb 721486118 Edge      ptrain-done\n 55:         12          0          0          0          0          0          0          0  pmic_arb 588251416 Edge      pm-adc5\n 56:          0          0          0          0          0          0          0          0  pmic_arb 592445721 Edge      thr-int-en\n 57:          0          0          0          0          0          0          0          0  pmic_arb 8388857 Edge      pon_kpdpwr_status\n 58:          0          0          0          0          0          0          0          0  pmic_arb 37748986 Edge      qcom,temp-alarm\n 59:          0          0          0          0          0          0          0          0  pmic_arb 8454393 Edge      pon_resin_status\n 60:          4          0          0          0          0          0          0          0  pmic_arb 51380475 Edge      pm-adc5\n 61:          0          0          0          0          0          0          0          0  pmic_arb 55574780 Edge      thr-int-en\n 62:          0          0          0          0          0          0          0          0  pmic_arb 560988433 Edge      sig-tx\n 63:          0          0          0          0          0          0          0          0  pmic_arb 561053969 Edge      sig-rx\n 64:          0          0          0          0          0          0          0          0  pmic_arb 561119505 Edge      msg-tx\n 65:          0          0          0          0          0          0          0          0  pmic_arb 561185041 Edge      msg-rx\n 66:          0          0          0          0          0          0          0          0  pmic_arb 561250577 Edge      msg-tx-failed\n 67:          0          0          0          0          0          0          0          0  pmic_arb 561316113 Edge      msg-tx-discarded\n 68:          0          0          0          0          0          0          0          0  pmic_arb 561381649 Edge      msg-rx-discarded\n 70:          0          0          0          0          0          0          0          0  pmic_arb 567279894 Edge      bcl-lvl0\n 71:          0          0          0          0          0          0          0          0  pmic_arb 567345430 Edge      bcl-lvl1\n 72:          0          0          0          0          0          0          0          0  pmic_arb 567410966 Edge      bcl-lvl2\n 75:          0          0          0          0          0          0          0          0  pmic_arb 1111490870 Edge      qcom,temp-alarm\n 87:          5          0          0          0          0          0          0          0  pmic_arb 1125122359 Edge      pm-adc5\n 88:          0          0          0          0          0          0          0          0  pmic_arb 1137705273 Edge      bcl-lvl0\n 89:          0          0          0          0          0          0          0          0  pmic_arb 1137770809 Edge      bcl-lvl1\n 90:          0          0          0          0          0          0          0          0  pmic_arb 1137836345 Edge      bcl-lvl2\n 91:          0          0          0          0          0          0          0          0  pmic_arb 1129316664 Edge      thr-int-en\n 92:          0          0          0          0          0          0          0          0  pmic_arb 1589707091 Edge      qpnp_lcdb_sc_irq\n 93:          0          0          0          0          0          0          0          0  pmic_arb 1563427152 Edge      qpnp_flash_led_fault_irq\n 94:          0          0          0          0          0          0          0          0  pmic_arb 1563623760 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 95:          0          0          0          0          0          0          0          0  pmic_arb 1563689296 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 96:          0          0          0          0          0          0          0          0  pmic_arb 1568735569 Edge      wled_ovp_irq\n 97:          0          0          0          0          0          0          0          0  pmic_arb 1568932177 Edge      wled_pre_flash_irq\n 98:          0          0          0          0          0          0          0          0  pmic_arb 1568997713 Edge      wled_flash_irq\n 99:          0          0          0          0          0          0          0          0   PDC-GIC 524 Level     eud_irq\n100:          0          0          0          0          0          0          0          0   PDC-GIC 298 Edge      modem\n101:          0          0          0          0          0          0          0          0   PDC-GIC 194 Edge      adsp\n102:          0          0          0          0          0          0          0          0   PDC-GIC 526 Edge      slpi\n103:          0          0          0          0          0          0          0          0   PDC-GIC 384 Level     spss\n104:          0          0          0          0          0          0          0          0   PDC-GIC  32 Edge      apps_wdog_bark\n106:          0          0          0          0          0          0          0          0   PDC-GIC 610 Edge      cdsp\n107:          0          0          0          0          0          0          0          0   PDC-GIC  22 Level     KRYO L1-L2 ECC FAULTIRQ\n110:          0          0          0          0          0          0          0          0   PDC-GIC  67 Level     KRYO L3-SCU ECC FAULTIRQ\n111:        611          0          0          0          0          0          0          0   PDC-GIC 297 Edge      1d84000.ufshc\n112:        881          0          0          0          0          0          0          0   PDC-GIC  37 Level     apps_rsc\n113:          0          0          0          0          0          0          0          0   PDC-GIC 380 Level     qsee_irq\n114:          0          0          0          0          0          0          0          0   PDC-GIC 381 Level     qsee_irq\n115:         11          0          0          0          0          0          0          0   PDC-GIC 421 Edge      qcom,qmp-aop\n116:          0          0          0          0          0          0          0          0   PDC-GIC 401 Edge      qcom,qmp-npu-low\n117:          0          0          0          0          0          0          0          0   PDC-GIC 402 Edge      qcom,qmp-npu-high\n118:          0          0          0          0          0          0          0          0   PDC-GIC 304 Level     sps\n119:          0          0          0          0          0          0          0          0   PDC-GIC 538 Level     tsens-upper-lower\n120:          0          0          0          0          0          0          0          0   PDC-GIC 540 Level     tsens-critical\n121:          0          0          0          0          0          0          0          0   PDC-GIC 539 Level     tsens-upper-lower\n122:          0          0          0          0          0          0          0          0   PDC-GIC 541 Level     tsens-critical\n123:          0          0          0          0          0          0          0          0   PDC-GIC 195 Level     ngd_slim_irq\n125:          0          0          0          0          0          0          0          0   PDC-GIC 323 Level     ngd_slim_irq\n190:          0          0          0          0          0          0          0          0  msmgpio-dc   8 Edge      TE_GPIO\n210:          0          0          0          0          0          0          0          0  msmgpio-dc  37 Edge      msm_pcie_wake\n222:          2          0          0          0          0          0          0          0  msmgpio-dc  47 Level     nq-nci\n244:          0          0          0          0          0          0          0          0  msmgpio-dc  68 Edge      asustek_lid2_isr\n260:          0          0          0          0          0          0          0          0  msmgpio-dc  88 Edge      accy_therm_alert\n270:          0          0          0          0          0          0          0          0  msmgpio-dc  96 Edge      top_vib_trig_interrupt\n272:          0          0          0          0          0          0          0          0  msmgpio-dc  97 Edge      volume_down\n276:          1          0          0          0          0          0          0          0  msmgpio-dc 103 Edge      type_c_port0-IRQ\n288:          0          0          0          0          0          0          0          0  msmgpio-dc 117 Level     ALSPS_SENSOR_INT\n292:          0          0          0          0          0          0          0          0  msmgpio-dc 119 Edge      bot_vib_trig_interrupt\n294:          0          0          0          0          0          0          0          0  msmgpio-dc 120 Edge      therm_alert\n296:          0          0          0          0          0          0          0          0  msmgpio-dc 121 Edge      asustek_lid_isr\n308:          0          0          0          0          0          0          0          0  msmgpio-dc 132 Level     pca9468\n312:          0          0          0          0          0          0          0          0  msmgpio-dc 134 Edge      volume_up\n335:          0          0          0          0          0          0          0          0     GICv3 172 Edge      int_global_int\n410:          0          0          0          0          0          0          0          0   PDC-GIC 483 Edge      smp2p\n411:          0          0          0          0          0          0          0          0   PDC-GIC 190 Edge      smp2p\n412:          0          0          0          0          0          0          0          0   PDC-GIC 204 Edge      smp2p\n413:          0          0          0          0          0          0          0          0   PDC-GIC 608 Edge      smp2p\n415:          0          0          0          0          0          0          0          0   PDC-GIC  97 Level     arm-smmu global fault\n418:          0          0          0          0          0          0          0          0   PDC-GIC 131 Level     arm-smmu-context-fault\n419:          0          0          0          0          0          0          0          0   PDC-GIC 132 Level     arm-smmu-context-fault\n420:          0          0          0          0          0          0          0          0   PDC-GIC 133 Level     arm-smmu-context-fault\n421:          0          0          0          0          0          0          0          0   PDC-GIC 134 Level     arm-smmu-context-fault\n422:          0          0          0          0          0          0          0          0   PDC-GIC 135 Level     arm-smmu-context-fault\n423:          0          0          0          0          0          0          0          0   PDC-GIC 136 Level     arm-smmu-context-fault\n424:          0          0          0          0          0          0          0          0   PDC-GIC 137 Level     arm-smmu-context-fault\n425:          0          0          0          0          0          0          0          0   PDC-GIC 138 Level     arm-smmu-context-fault\n426:          0          0          0          0          0          0          0          0   PDC-GIC 139 Level     arm-smmu-context-fault\n427:          0          0          0          0          0          0          0          0   PDC-GIC 140 Level     arm-smmu-context-fault\n428:          0          0          0          0          0          0          0          0   PDC-GIC 141 Level     arm-smmu-context-fault\n429:          0          0          0          0          0          0          0          0   PDC-GIC 142 Level     arm-smmu-context-fault\n430:          0          0          0          0          0          0          0          0   PDC-GIC 143 Level     arm-smmu-context-fault\n431:          0          0          0          0          0          0          0          0   PDC-GIC 144 Level     arm-smmu-context-fault\n432:          0          0          0          0          0          0          0          0   PDC-GIC 145 Level     arm-smmu-context-fault\n433:          0          0          0          0          0          0          0          0   PDC-GIC 146 Level     arm-smmu-context-fault\n434:          0          0          0          0          0          0          0          0   PDC-GIC 147 Level     arm-smmu-context-fault\n435:          0          0          0          0          0          0          0          0   PDC-GIC 148 Level     arm-smmu-context-fault\n436:          0          0          0          0          0          0          0          0   PDC-GIC 149 Level     arm-smmu-context-fault\n437:          0          0          0          0          0          0          0          0   PDC-GIC 150 Level     arm-smmu-context-fault\n438:          0          0          0          0          0          0          0          0   PDC-GIC 213 Level     arm-smmu-context-fault\n439:          0          0          0          0          0          0          0          0   PDC-GIC 214 Level     arm-smmu-context-fault\n440:          0          0          0          0          0          0          0          0   PDC-GIC 215 Level     arm-smmu-context-fault\n441:          0          0          0          0          0          0          0          0   PDC-GIC 216 Level     arm-smmu-context-fault\n442:          0          0          0          0          0          0          0          0   PDC-GIC 217 Level     arm-smmu-context-fault\n443:          0          0          0          0          0          0          0          0   PDC-GIC 218 Level     arm-smmu-context-fault\n444:          0          0          0          0          0          0          0          0   PDC-GIC 219 Level     arm-smmu-context-fault\n445:          0          0          0          0          0          0          0          0   PDC-GIC 220 Level     arm-smmu-context-fault\n446:          0          0          0          0          0          0          0          0   PDC-GIC 221 Level     arm-smmu-context-fault\n447:          0          0          0          0          0          0          0          0   PDC-GIC 222 Level     arm-smmu-context-fault\n448:          0          0          0          0          0          0          0          0   PDC-GIC 223 Level     arm-smmu-context-fault\n449:          0          0          0          0          0          0          0          0   PDC-GIC 224 Level     arm-smmu-context-fault\n450:          0          0          0          0          0          0          0          0   PDC-GIC 347 Level     arm-smmu-context-fault\n451:          0          0          0          0          0          0          0          0   PDC-GIC 348 Level     arm-smmu-context-fault\n452:          0          0          0          0          0          0          0          0   PDC-GIC 349 Level     arm-smmu-context-fault\n453:          0          0          0          0          0          0          0          0   PDC-GIC 350 Level     arm-smmu-context-fault\n454:          0          0          0          0          0          0          0          0   PDC-GIC 351 Level     arm-smmu-context-fault\n455:          0          0          0          0          0          0          0          0   PDC-GIC 352 Level     arm-smmu-context-fault\n456:          0          0          0          0          0          0          0          0   PDC-GIC 353 Level     arm-smmu-context-fault\n457:          0          0          0          0          0          0          0          0   PDC-GIC 354 Level     arm-smmu-context-fault\n458:          0          0          0          0          0          0          0          0   PDC-GIC 355 Level     arm-smmu-context-fault\n459:          0          0          0          0          0          0          0          0   PDC-GIC 356 Level     arm-smmu-context-fault\n460:          0          0          0          0          0          0          0          0   PDC-GIC 357 Level     arm-smmu-context-fault\n461:          0          0          0          0          0          0          0          0   PDC-GIC 358 Level     arm-smmu-context-fault\n462:          0          0          0          0          0          0          0          0   PDC-GIC 359 Level     arm-smmu-context-fault\n496:         38          0          0          0          0          0          0          0   PDC-GIC 634 Level     i2c_geni\n497:         24          0          0          0          0          0          0          0   PDC-GIC 637 Level     i2c_geni\n498:          4          0          0          0          0          0          0          0   PDC-GIC 640 Level     i2c_geni\n499:          0          0          0          0          0          0          0          0   PDC-GIC 636 Level     spi_geni\n502:          0          0          0          0          0          0          0          0   PDC-GIC 386 Level     i2c_geni\n503:          0          0          0          0          0          0          0          0   PDC-GIC 387 Level     i2c_geni\n504:         17          0          0          0          0          0          0          0   PDC-GIC 388 Level     i2c_geni\n505:          3          0          0          0          0          0          0          0   PDC-GIC 405 Level     i2c_geni\n506:        165          0          0          0          0          0          0          0   PDC-GIC 615 Level     i2c_geni\n507:         17          0          0          0          0          0          0          0   PDC-GIC 616 Level     i2c_geni\n508:          0          0          0          0          0          0          0          0   PDC-GIC 396 Edge      error_irq\n509:          0          0          0          0          0          0          0          0   PDC-GIC 398 Edge      wdg_bite_irq\n510:          0          0          0          0          0          0          0          0   PDC-GIC 400 Level     ipc_irq\n511:          0          0          0          0          0          0          0          0   PDC-GIC 206 Level     msm_vidc\n512:          0          0          0          0          0          0          0          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n513:          1          0          0          0          0          0          0          0   PDC-GIC 162 Edge      pwr_event_irq\n514:          0          0          0          0          0          0          0          0   PDC-GIC 518 Level     ss_phy_irq\n515:          0          0          0          0          0          0          0          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n516:          0          0          0          0          0          0          0          0   PDC-GIC 523 Edge      dp_hs_phy_irq\n517:          1          0          0          0          0          0          0          0   PDC-GIC 167 Edge      pwr_event_irq\n518:          0          0          0          0          0          0          0          0   PDC-GIC 519 Level     ss_phy_irq\n519:          0          0          0          0          0          0          0          0   PDC-GIC 522 Edge      dm_hs_phy_irq\n520:          0          0          0          0          0          0          0          0   PDC-GIC 332 Level     kgsl-3d0\n521:          0          0          0          0          0          0          0          0   PDC-GIC 336 Level     HFI\n522:          0          0          0          0          0          0          0          0   PDC-GIC 337 Level     GMU\n523:          0          0          0          0          0          0          0          0   PDC-GIC 706 Level     arm-smmu global fault\n524:          0          0          0          0          0          0          0          0   PDC-GIC 713 Level     arm-smmu-context-fault\n525:          0          0          0          0          0          0          0          0   PDC-GIC 714 Level     arm-smmu-context-fault\n526:          0          0          0          0          0          0          0          0   PDC-GIC 715 Level     arm-smmu-context-fault\n532:          0          0          0          0          0          0          0          0   PDC-GIC  64 Level     limits_sensor-00\n533:          0          0          0          0          0          0          0          0   PDC-GIC  65 Level     limits_sensor-01\n534:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n535:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n536:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n537:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n538:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n539:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n540:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n541:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n542:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n543:          0          0          0          0          0          0          0          0     smp2p   2 Edge      slpi\n544:          0          0          0          0          0          0          0          0     smp2p   0 Edge      slpi\n545:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n546:          0          0          0          0          0          0          0          0     smp2p   3 Edge      slpi\n547:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n548:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n549:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n550:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n551:          0          0          0          0          0          0          0          0      qsee  32 Level     qsee_ipc_irq_spss\n552:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n553:          0          0          0          0          0          0          0          0   PDC-GIC 165 Edge      dwc3\n555:          0          0          0          0          0          0          0          0   PDC-GIC 170 Edge      dwc3\n556:          0          0          0          0          0          0          0          0  pmic_arb 101777663 Edge      qpnp_rtc_alarm\n557:          0          0          0          0          0          0          0          0  pmic_arb 603980059 Edge      soc-update\n558:          0          0          0          0          0          0          0          0  pmic_arb 604045595 Edge      soc-ready\n559:          0          0          0          0          0          0          0          0  pmic_arb 604111131 Edge      bsoc-delta\n560:          0          0          0          0          0          0          0          0  pmic_arb 604176667 Edge      msoc-delta\n561:          0          0          0          0          0          0          0          0  pmic_arb 604242203 Edge      msoc-low\n562:          0          0          0          0          0          0          0          0  pmic_arb 604307739 Edge      msoc-empty\n563:          0          0          0          0          0          0          0          0  pmic_arb 604373275 Edge      msoc-high\n564:          0          0          0          0          0          0          0          0  pmic_arb 604438811 Edge      msoc-full\n565:          0          0          0          0          0          0          0          0  pmic_arb 605028636 Edge      vbatt-low\n566:          0          0          0          0          0          0          0          0  pmic_arb 605094172 Edge      vbatt-pred-delta\n567:          0          0          0          0          0          0          0          0  pmic_arb 605225244 Edge      esr-delta\n568:          0          0          0          0          0          0          0          0  pmic_arb 606077213 Edge      batt-missing\n569:          0          0          0          0          0          0          0          0  pmic_arb 606142749 Edge      batt-id\n570:          0          0          0          0          0          0          0          0  pmic_arb 606208285 Edge      batt-temp-delta\n571:          0          0          0          0          0          0          0          0  pmic_arb 606273821 Edge      batt-temp-hot\n572:          0          0          0          0          0          0          0          0  pmic_arb 606339357 Edge      batt-temp-cold\n573:          0          0          0          0          0          0          0          0  pmic_arb 607125790 Edge      ima-rdy\n574:          0          0          0          0          0          0          0          0  pmic_arb 607191326 Edge      ima-xcp\n575:          0          0          0          0          0          0          0          0  pmic_arb 607256862 Edge      dma-xcp\n576:         47          0          0          0          0          0          0          0  pmic_arb 607322398 Edge      dma-grant\n577:          0          0          0          0          0          0          0          0  pmic_arb 607387934 Edge      mem-attn\n578:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n579:          0          0          0          0          0          0          0          0  pmic_arb 553648394 Edge      chgr-error\n580:          0          0          0          0          0          0          0          0  pmic_arb 553713930 Edge      chg-state-change\n586:          0          0          0          0          0          0          0          0  pmic_arb 554696971 Edge      otg-fail\n589:          0          0          0          0          0          0          0          0  pmic_arb 554959115 Edge      high-duty-cycle\n590:          0          0          0          0          0          0          0          0  pmic_arb 555024651 Edge      input-current-limiting\n592:          0          0          0          0          0          0          0          0  pmic_arb 555155723 Edge      switcher-power-ok\n593:          0          0          0          0          0          0          0          0  pmic_arb 555745548 Edge      bat-temp\n594:          0          0          0          0          0          0          0          0  pmic_arb 555876620 Edge      bat-ov\n595:          0          0          0          0          0          0          0          0  pmic_arb 555942156 Edge      bat-low\n596:          0          0          0          0          0          0          0          0  pmic_arb 556007692 Edge      bat-therm-or-id-missing\n597:          0          0          0          0          0          0          0          0  pmic_arb 556073228 Edge      bat-terminal-missing\n600:          0          0          0          0          0          0          0          0  pmic_arb 556794125 Edge      usbin-collapse\n601:          0          0          0          0          0          0          0          0  pmic_arb 556859661 Edge      usbin-vashdn\n602:          0          0          0          0          0          0          0          0  pmic_arb 556925197 Edge      usbin-uv\n603:          0          0          0          0          0          0          0          0  pmic_arb 556990733 Edge      usbin-ov\n604:          0          0          0          0          0          0          0          0  pmic_arb 557056269 Edge      usbin-plugin\n606:          0          0          0          0          0          0          0          0  pmic_arb 557187341 Edge      usbin-src-change\n607:          0          0          0          0          0          0          0          0  pmic_arb 557252877 Edge      usbin-icl-change\n609:          0          0          0          0          0          0          0          0  pmic_arb 557973774 Edge      dcin-uv\n610:          0          0          0          0          0          0          0          0  pmic_arb 558039310 Edge      dcin-ov\n611:          0          0          0          0          0          0          0          0  pmic_arb 558104846 Edge      dcin-plugin\n613:          0          0          0          0          0          0          0          0  pmic_arb 558235918 Edge      dcin-pon\n614:          0          0          0          0          0          0          0          0  pmic_arb 558301454 Edge      dcin-en\n615:          0          0          0          0          0          0          0          0  pmic_arb 558891279 Edge      typec-or-rid-detect-change\n617:          0          0          0          0          0          0          0          0  pmic_arb 559022351 Edge      typec-cc-state-change\n618:          0          0          0          0          0          0          0          0  pmic_arb 559087887 Edge      typec-vconn-oc\n620:          0          0          0          0          0          0          0          0  pmic_arb 559218959 Edge      typec-attach-detach\n621:          0          0          0          0          0          0          0          0  pmic_arb 559284495 Edge      typec-legacy-cable-detect\n623:          0          0          0          0          0          0          0          0  pmic_arb 559939856 Edge      wdog-snarl\n624:          0          0          0          0          0          0          0          0  pmic_arb 560005392 Edge      wdog-bark\n626:          0          0          0          0          0          0          0          0  pmic_arb 560136464 Edge      aicl-done\n627:          0          0          0          0          0          0          0          0  pmic_arb 560202000 Edge      smb-en\n628:          0          0          0          0          0          0          0          0  pmic_arb 560333072 Edge      temp-change\n630:          0          0          0          0          0          0          0          0       sde  12 Edge      dp_display_isr\n631:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\nIPI0:        67         57         57         57         57         56         56         54       Rescheduling interrupts\nIPI1:         0          5          5          5          6          5          5          5       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:       147          4          5          4          6          4          4          4       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8150ac/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    5 root      0:00 [wk:register_co]\n    6 root      0:00 [wk:socket_read]\n    7 root      0:00 [mm_percpu_wq]\n    8 root      0:00 [ksoftirqd/0]\n    9 root      0:00 [rcu_preempt]\n   10 root      0:00 [rcu_sched]\n   11 root      0:00 [rcu_bh]\n   12 root      0:00 [rcuop/0]\n   13 root      0:00 [rcuos/0]\n   14 root      0:00 [rcuob/0]\n   15 root      0:00 [migration/0]\n   16 root      0:00 [cpuhp/0]\n   17 root      0:00 [cpuhp/1]\n   18 root      0:00 [migration/1]\n   19 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [wk:vmstat_upda]\n   21 root      0:00 [kworker/1:0H]\n   22 root      0:00 [rcuop/1]\n   23 root      0:00 [rcuos/1]\n   24 root      0:00 [rcuob/1]\n   25 root      0:00 [cpuhp/2]\n   26 root      0:00 [migration/2]\n   27 root      0:00 [ksoftirqd/2]\n   29 root      0:00 [kworker/2:0H]\n   30 root      0:00 [rcuop/2]\n   31 root      0:00 [rcuos/2]\n   32 root      0:00 [rcuob/2]\n   33 root      0:00 [cpuhp/3]\n   34 root      0:00 [migration/3]\n   35 root      0:00 [ksoftirqd/3]\n   37 root      0:00 [kworker/3:0H]\n   38 root      0:00 [rcuop/3]\n   39 root      0:00 [rcuos/3]\n   40 root      0:00 [rcuob/3]\n   41 root      0:00 [cpuhp/4]\n   42 root      0:00 [migration/4]\n   43 root      0:00 [ksoftirqd/4]\n   45 root      0:00 [wk:register_co]\n   46 root      0:00 [rcuop/4]\n   47 root      0:00 [rcuos/4]\n   48 root      0:00 [rcuob/4]\n   49 root      0:00 [cpuhp/5]\n   50 root      0:00 [migration/5]\n   51 root      0:00 [ksoftirqd/5]\n   53 root      0:00 [kworker/5:0H]\n   54 root      0:00 [rcuop/5]\n   55 root      0:00 [rcuos/5]\n   56 root      0:00 [rcuob/5]\n   57 root      0:00 [cpuhp/6]\n   58 root      0:00 [migration/6]\n   59 root      0:00 [ksoftirqd/6]\n   61 root      0:00 [kworker/6:0H]\n   62 root      0:00 [rcuop/6]\n   63 root      0:00 [rcuos/6]\n   64 root      0:00 [rcuob/6]\n   65 root      0:00 [cpuhp/7]\n   66 root      0:00 [migration/7]\n   67 root      0:00 [ksoftirqd/7]\n   68 root      0:00 [wk:vmstat_upda]\n   69 root      0:00 [kworker/7:0H]\n   70 root      0:00 [rcuop/7]\n   71 root      0:00 [rcuos/7]\n   72 root      0:00 [rcuob/7]\n   73 root      0:00 [kdevtmpfs]\n   74 root      0:00 [netns]\n   76 root      0:00 [kworker/u17:0]\n   77 root      0:00 [ipa_usb_wq]\n   78 root      0:00 [wk:socket_read]\n   79 root      0:00 [msm_watchdog]\n   80 root      0:00 [spi_wdsp]\n   81 root      0:00 [qmp_aop]\n   82 root      0:00 [qmp_npu_qmp_low]\n   83 root      0:00 [qmp_npu_qmp_hig]\n   84 root      0:00 [oom_reaper]\n   85 root      0:00 [writeback]\n   86 root      0:00 [kcompactd0]\n   87 root      0:00 [crypto]\n   88 root      0:00 [kblockd]\n   89 root      0:00 [irq/415-arm-smm]\n   90 root      0:00 [irq/523-arm-smm]\n   91 root      0:00 [pd_dbg_info]\n   92 root      0:00 [irq/119-tsens-u]\n   93 root      0:00 [irq/120-tsens-c]\n   94 root      0:00 [irq/121-tsens-u]\n   95 root      0:00 [irq/122-tsens-c]\n   96 root      0:00 [edac-poller]\n   97 root      0:00 [system]\n   98 root      0:00 [ipa_power_mgmt]\n   99 root      0:00 [transport_power]\n  100 root      0:00 [ipa_pm_activate]\n  101 root      0:00 [devfreq_wq]\n  102 root      0:00 [cfg80211]\n  103 root      0:00 [irq/92-qpnp_lcd]\n  141 root      0:00 [ASUSEVTLOG_WORK]\n  142 root      0:00 [ASUSERCLOG_WORK]\n  143 root      0:00 [kauditd]\n  144 root      0:00 [kswapd0]\n  145 root      0:00 [ecryptfs-kthrea]\n  171 root      0:00 [wk:cpuset_hotp]\n  172 root      0:00 [wk:wq_barrier_]\n  173 root      0:00 [wk:wq_barrier_]\n  174 root      0:00 [wk:wq_barrier_]\n  175 root      0:00 [wk:wq_barrier_]\n  176 root      0:00 [wk:wq_barrier_]\n  194 root      0:00 [irq/96-wled_ovp]\n  195 root      0:00 [irq/98-wled_fla]\n  196 root      0:00 [irq/97-wled_pre]\n  197 root      0:00 [irq/419-arm-smm]\n  198 root      0:00 [irq/420-arm-smm]\n  199 root      0:00 [irq/421-arm-smm]\n  200 root      0:00 [irq/410-smp2p]\n  201 root      0:00 [irq/411-smp2p]\n  202 root      0:00 [irq/412-smp2p]\n  203 root      0:00 [irq/413-smp2p]\n  204 root      0:00 [irq/422-arm-smm]\n  205 root      0:00 [mem_share_svc]\n  207 root      0:00 [cdsprm-wq]\n  208 root      0:00 [cdsprm-wq-delay]\n  209 root      0:00 [irq/423-arm-smm]\n  210 root      0:00 [okl4vtty]\n  211 root      0:00 [hwrng]\n  213 root      0:00 [diag_real_time_]\n  214 root      0:00 [diag_wq]\n  216 root      0:00 [DIAG_USB_diag]\n  217 root      0:00 [diag_cntl_wq]\n  218 root      0:00 [diag_dci_wq]\n  219 root      0:00 [MODEM_CNTL]\n  220 root      0:00 [MODEM_DATA]\n  221 root      0:00 [MODEM_CMD]\n  222 root      0:00 [MODEM_DCI]\n  223 root      0:00 [MODEM_DCI_CMD]\n  224 root      0:00 [LPASS_CNTL]\n  225 root      0:00 [LPASS_DATA]\n  226 root      0:00 [LPASS_CMD]\n  227 root      0:00 [LPASS_DCI]\n  228 root      0:00 [LPASS_DCI_CMD]\n  229 root      0:00 [WCNSS_CNTL]\n  230 root      0:00 [WCNSS_DATA]\n  231 root      0:00 [WCNSS_CMD]\n  232 root      0:00 [WCNSS_DCI]\n  233 root      0:00 [WCNSS_DCI_CMD]\n  234 root      0:00 [SENSORS_CNTL]\n  235 root      0:00 [SENSORS_DATA]\n  236 root      0:00 [SENSORS_CMD]\n  237 root      0:00 [SENSORS_DCI]\n  238 root      0:00 [SENSORS_DCI_CMD]\n  239 root      0:00 [DIAG_CTRL]\n  240 root      0:00 [DIAG_DATA]\n  241 root      0:00 [DIAG_CMD]\n  242 root      0:00 [DIAG_DCI_DATA]\n  243 root      0:00 [DIAG_DCI_CMD]\n  244 root      0:00 [CDSP_CNTL]\n  245 root      0:00 [CDSP_DATA]\n  246 root      0:00 [CDSP_CMD]\n  247 root      0:00 [CDSP_DCI]\n  248 root      0:00 [CDSP_DCI_CMD]\n  249 root      0:00 [DIAG_RPMSG_DIAG]\n  250 root      0:00 [DIAG_RPMSG_DIAG]\n  251 root      0:00 [DIAG_RPMSG_DIAG]\n  252 root      0:00 [DIAG_RPMSG_DIAG]\n  253 root      0:00 [DIAG_RPMSG_DIAG]\n  254 root      0:00 [wk:socket_read]\n  255 root      0:00 [diag_mhi_MDM]\n  257 root      0:00 [wk:socket_read]\n  258 root      0:00 [wk:socket_read]\n  259 root      0:00 [DIAG_USB_diag_m]\n  260 root      0:00 [wk:socket_read]\n  261 root      0:00 [diag_mhi_MDM_DC]\n  263 root      0:00 [diag_dci_MDM_DC]\n  264 root      0:00 [kgsl-workqueue]\n  265 root      0:00 [kgsl-mementry]\n  266 root      0:00 [kgsl_worker_thr]\n  267 root      0:00 [irq/524-arm-smm]\n  268 root      0:00 [irq/525-arm-smm]\n  269 root      0:00 [irq/526-arm-smm]\n  270 root      0:00 [kgsl-events]\n  271 root      0:00 [kgsl_devfreq_wq]\n  272 root      0:00 [qseecom-unreg-l]\n  273 root      0:00 [memory_wq]\n  275 root      0:00 [irq/424-arm-smm]\n  276 root      0:00 [irq/425-arm-smm]\n  277 root      0:00 [irq/426-arm-smm]\n  278 root      0:00 [qcrypto_seq_res]\n  279 root      0:00 [irq/427-arm-smm]\n  300 root      0:00 [scsi_eh_0]\n  301 root      0:00 [scsi_tmf_0]\n  302 root      0:00 [ufs_pm_qos_0]\n  303 root      0:00 [ufs_clk_gating_]\n  304 root      0:00 [ice-set-key]\n  305 root      0:00 [ufs_clkscaling_]\n  306 root      0:00 [irq/428-arm-smm]\n  307 root      0:00 [spi0]\n  308 root      0:00 [bond0]\n  320 root      0:00 [irq/429-arm-smm]\n  321 root      0:00 [k_ipa_usb]\n  325 root      0:00 [irq/430-arm-smm]\n  328 root      0:00 [wk:dwc3_otg_sm]\n  331 root      0:03 [wk:def_work_fn]\n  332 root      0:00 [wk:ufs_qcom_pm]\n  335 root      0:00 [gts_wq]\n  336 root      0:00 [goodix_suspend_]\n  337 root      0:00 [tcpc_timer_type]\n  338 root      0:00 [pps_request_tas]\n  339 root      0:00 [type_c_port0]\n  340 root      0:00 [irq/431-arm-smm]\n  341 root      0:00 [npu_wq]\n  342 root      0:00 [msm_vidc_worker]\n  343 root      0:00 [pm_workerq_venu]\n  344 root      0:00 [irq/432-arm-smm]\n  345 root      0:00 [irq/433-arm-smm]\n  346 root      0:00 [irq/434-arm-smm]\n  347 root      0:00 [irq/435-arm-smm]\n  348 root      0:00 [cam-cpas]\n  349 root      0:00 [qcom,cam_virtua]\n  350 root      0:00 [irq/436-arm-smm]\n  351 root      0:00 [qcom,cam170-cpa]\n  352 root      0:00 [irq/437-arm-smm]\n  353 root      0:00 [cam_cci_wq]\n  354 root      0:00 [cam_cci_wq]\n  355 root      0:00 [cam_cci_wq]\n  356 root      0:00 [cam_cci_wq]\n  357 root      0:00 [irq/438-arm-smm]\n  358 root      0:00 [irq/439-arm-smm]\n  359 root      0:00 [irq/440-arm-smm]\n  360 root      0:00 [irq/441-arm-smm]\n  361 root      0:00 [irq/442-arm-smm]\n  362 root      0:00 [dmx_tsif0]\n  363 root      0:00 [dmx_tsif1]\n  364 root      0:00 [irq/557-soc-upd]\n  365 root      0:00 [irq/558-soc-rea]\n  366 root      0:00 [irq/559-bsoc-de]\n  367 root      0:00 [irq/560-msoc-de]\n  368 root      0:00 [irq/561-msoc-lo]\n  369 root      0:00 [irq/562-msoc-em]\n  370 root      0:00 [irq/563-msoc-hi]\n  371 root      0:00 [irq/564-msoc-fu]\n  372 root      0:00 [irq/565-vbatt-l]\n  373 root      0:00 [irq/566-vbatt-p]\n  374 root      0:00 [irq/567-esr-del]\n  375 root      0:00 [irq/568-batt-mi]\n  376 root      0:00 [irq/569-batt-id]\n  377 root      0:00 [irq/570-batt-te]\n  378 root      0:00 [irq/571-batt-te]\n  379 root      0:00 [irq/572-batt-te]\n  380 root      0:00 [irq/573-ima-rdy]\n  381 root      0:00 [irq/574-ima-xcp]\n  382 root      0:00 [irq/575-dma-xcp]\n  383 root      0:00 [irq/576-dma-gra]\n  384 root      0:00 [irq/577-mem-att]\n  385 root      0:00 [irq/44-ptrain-d]\n  387 root      0:00 [irq/532-limits_]\n  388 root      0:00 [wk:blk_timeout]\n  389 root      0:00 [irq/533-limits_]\n  390 root      0:00 [kworker/4:1H]\n  391 root      0:00 [irq/70-bcl-lvl0]\n  392 root      0:00 [irq/71-bcl-lvl1]\n  393 root      0:00 [irq/72-bcl-lvl2]\n  394 root      0:00 [irq/88-bcl-lvl0]\n  395 root      0:00 [irq/89-bcl-lvl1]\n  396 root      0:00 [irq/90-bcl-lvl2]\n  397 root      0:00 [dm_bufio_cache]\n  398 root      0:00 [irq/110-KRYO L3]\n  399 root      0:00 [snt8100fsr-queu]\n  400 root      0:00 [snt8100fsr-asus]\n  401 root      0:00 [ALSPS_FRGB_wq]\n  402 root      0:00 [ALSPS_FRGB_dela]\n  403 root      0:00 [irq/288-ALSPS_S]\n  404 root      0:00 [top_vib_rtp_wor]\n  405 root      0:00 [bot_vib_rtp_wor]\n  406 root      0:00 [top_vib_rtp_pla]\n  407 root      0:00 [bot_vib_rtp_pla]\n  408 root      0:00 [irq/443-arm-smm]\n  409 root      0:00 [uaudio_svc]\n  410 root      0:00 [ipv6_addrconf]\n  423 root      0:00 [irq/444-arm-smm]\n  426 root      0:00 [irq/294-therm_a]\n  427 root      0:00 [irq/260-accy_th]\n  429 root      0:00 [irq/579-chgr-er]\n  430 root      0:00 [irq/580-chg-sta]\n  431 root      0:00 [irq/586-otg-fai]\n  432 root      0:00 [irq/589-high-du]\n  434 root      0:00 [irq/590-input-c]\n  435 root      0:00 [irq/592-switche]\n  436 root      0:00 [irq/593-bat-tem]\n  437 root      0:00 [irq/594-bat-ov]\n  438 root      0:00 [irq/595-bat-low]\n  439 root      0:00 [irq/596-bat-the]\n  440 root      0:00 [irq/597-bat-ter]\n  442 root      0:00 [irq/600-usbin-c]\n  443 root      0:00 [irq/601-usbin-v]\n  444 root      0:00 [irq/602-usbin-u]\n  445 root      0:00 [irq/603-usbin-o]\n  446 root      0:00 [irq/604-usbin-p]\n  447 root      0:00 [irq/606-usbin-s]\n  448 root      0:00 [irq/607-usbin-i]\n  449 root      0:00 [irq/609-dcin-uv]\n  451 root      0:00 [irq/610-dcin-ov]\n  452 root      0:00 [irq/611-dcin-pl]\n  453 root      0:00 [irq/613-dcin-po]\n  454 root      0:00 [irq/614-dcin-en]\n  455 root      0:00 [irq/615-typec-o]\n  456 root      0:00 [irq/617-typec-c]\n  457 root      0:00 [irq/618-typec-v]\n  459 root      0:00 [irq/620-typec-a]\n  460 root      0:00 [irq/621-typec-l]\n  461 root      0:00 [irq/623-wdog-sn]\n  462 root      0:00 [irq/624-wdog-ba]\n  463 root      0:00 [irq/626-aicl-do]\n  464 root      0:00 [irq/627-smb-en]\n  465 root      0:00 [irq/628-temp-ch]\n  467 root      0:00 [irq/58-qcom,tem]\n  468 root      0:00 [irq/43-qcom,tem]\n  469 root      0:00 [irq/75-qcom,tem]\n  470 root      0:00 [irq/61-thr-int-]\n  471 root      0:00 [irq/56-thr-int-]\n  472 root      0:00 [irq/91-thr-int-]\n  480 root      0:00 [k_sm_usb]\n  481 root      0:00 [irq/517-pwr_eve]\n  482 root      0:00 [irq/516-dp_hs_p]\n  483 root      0:00 [irq/519-dm_hs_p]\n  484 root      0:00 [irq/518-ss_phy_]\n  485 root      0:00 [irq/445-arm-smm]\n  486 root      0:00 [irq/62-sig-tx]\n  487 root      0:00 [irq/63-sig-rx]\n  488 root      0:00 [irq/308-pca9468]\n  489 root      0:00 [k_sm_usb]\n  490 root      0:00 [irq/513-pwr_eve]\n  491 root      0:00 [irq/512-dp_hs_p]\n  492 root      0:00 [irq/515-dm_hs_p]\n  493 root      0:00 [irq/514-ss_phy_]\n  494 root      0:00 [irq/446-arm-smm]\n  495 root      0:00 [usb_bam_wq]\n  496 root      0:00 [core_ctl/0]\n  497 root      0:00 [core_ctl/4]\n  498 root      0:00 [core_ctl/7]\n  499 root      0:00 [rq_stats]\n  500 root      0:00 [msm_perf:events]\n  501 root      0:00 [irq/447-arm-smm]\n  502 root      0:00 [irq/448-arm-smm]\n  503 root      0:00 [irq/449-arm-smm]\n  504 root      0:00 [irq/450-arm-smm]\n  505 root      0:00 [irq/451-arm-smm]\n  506 root      0:00 [irq/452-arm-smm]\n  507 root      0:00 [irq/453-arm-smm]\n  508 root      0:00 [irq/454-arm-smm]\n  509 root      0:00 [irq/455-arm-smm]\n  510 root      0:00 [irq/456-arm-smm]\n  511 root      0:00 [irq/457-arm-smm]\n  512 root      0:00 [irq/458-arm-smm]\n  513 root      0:00 [irq/459-arm-smm]\n  514 root      0:00 [irq/460-arm-smm]\n  515 root      0:00 [irq/461-arm-smm]\n  516 root      0:00 [drm_dp]\n  517 root      0:00 [display_wq]\n  518 root      0:00 [irq/418-arm-smm]\n  519 root      0:00 [irq/462-arm-smm]\n  520 root      0:00 [sdm_dp_audio_no]\n  521 root      0:00 [hdcp_1x_1]\n  522 root      0:00 [hdcp_tz_lib]\n  523 root      0:00 [dp_hdcp2p2]\n  524 root      0:00 [crtc_commit:137]\n  525 root      0:00 [crtc_event:137]\n  526 root      0:00 [crtc_commit:191]\n  527 root      0:00 [crtc_event:191]\n  528 root      0:00 [crtc_commit:199]\n  529 root      0:00 [crtc_event:199]\n  530 root      0:00 [crtc_commit:207]\n  531 root      0:00 [crtc_event:207]\n  532 root      0:00 [crtc_commit:215]\n  533 root      0:00 [crtc_event:215]\n  534 root      0:00 [pp_event]\n  535 root      0:00 [rot_commitq_0_0]\n  536 root      0:00 [rot_commitq_0_1]\n  537 root      0:00 [rot_doneq_0_0]\n  538 root      0:00 [rot_doneq_0_1]\n  539 root      0:00 [rot_fenceq_0_0]\n  540 root      0:00 [rot_fenceq_0_1]\n  541 root      0:00 [rot_fenceq_0_2]\n  542 root      0:00 [rot_fenceq_0_3]\n  543 root      0:00 [rot_fenceq_0_4]\n  544 root      0:00 [rot_fenceq_0_5]\n  545 root      0:00 [rot_fenceq_0_6]\n  546 root      0:00 [rot_fenceq_0_7]\n  547 root      0:00 [rot_fenceq_0_8]\n  548 root      0:00 [rot_fenceq_0_9]\n  549 root      0:00 [rot_fenceq_0_10]\n  550 root      0:00 [rot_fenceq_0_11]\n  551 root      0:00 [rot_fenceq_0_12]\n  552 root      0:00 [rot_fenceq_0_13]\n  553 root      0:00 [rot_fenceq_0_14]\n  554 root      0:00 [rot_fenceq_0_15]\n  555 root      0:00 [sb-1]\n  556 root      0:00 [ngd_rx_thread1]\n  557 root      0:00 [ngd_notify_sl1]\n  558 root      0:00 [sb-3]\n  559 root      0:00 [ngd_rx_thread3]\n  560 root      0:00 [ngd_notify_sl3]\n  561 root      0:00 [close5v_by_susp]\n  562 root      0:00 [open5v_by_suspe]\n  563 root      0:00 [irq/95-qpnp_fla]\n  564 root      0:00 [irq/94-qpnp_fla]\n  565 root      0:00 [irq/93-qpnp_fla]\n  566 root      0:00 [tcpc_event_type]\n  574 root      0:00 [kworker/2:2]\n  575 root      0:00 [kworker/3:2]\n  576 root      0:00 [wk:cpuset_hotp]\n  577 root      0:00 [kworker/5:2]\n  578 root      0:00 [kworker/6:2]\n  579 root      0:00 [wk:cpuset_hotp]\n  643 root      0:00 [wk:kernfs_noti]\n  668 root      0:01 [wk:thermal_zon]\n  699 root      0:00 [wk:gc_worker]\n  728 root      0:00 [wk:kernfs_noti]\n  761 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm8150ac/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1113.888406,3.7129613533333337,80.01607455114339,17.96009436952511,13.919748685964748,224.456079235\r\n1,403200,1497.131496,3.71312375,82.48856391857821,13.77543988378611,18.148240790063888,166.998178043\r\n1,499200,1853.636835,3.7132148137019234,92.45728166002976,12.47063064767378,20.047101631274277,134.879918853\r\n1,576000,2138.781237,3.713161869791667,100.51613775876716,11.750070395767487,21.27646827461161,116.897352582\r\n1,672000,2495.084683,3.712923635416667,100.83226137592997,10.10388502236642,24.742957728298435,100.20488368\r\n1,768000,2851.797773,3.7132783502604165,135.8493176841838,11.909925238157008,20.990895828552325,87.670114515\r\n1,844800,3136.959659,3.7132571721117427,110.75086904483531,8.82688161504372,28.32257312411703,79.700337263\r\n1,940800,3493.571828,3.713405429421769,118.31168756081681,8.466955369076478,29.52655223778136,71.564826296\r\n1,1036800,3849.529587,3.712895049189815,124.10454004140617,8.06031196057423,31.016169252857253,64.947760637\r\n1,1113600,4134.896876,3.7130898670977013,126.17027133766655,7.628994630810775,32.76971764934001,60.465865294\r\n1,1209600,4491.47518,3.713190459656085,133.08846514870902,7.40856965833917,33.74470532494719,55.666504607\r\n1,1305600,4848.155762,3.7133545971200985,149.61351166125485,7.715705713380746,32.40144314556276,51.570915138\r\n1,1382400,5133.04862,3.713142809606481,149.14431195087496,7.264375320353919,34.41452141101928,48.707022248\r\n1,1478400,5489.679403,3.7132571719426406,153.9759626921777,7.012520348748158,35.65052043586994,45.542955057\r\n1,1555200,5774.872375,3.713266702031893,165.69709596660465,7.17386394951129,34.848723332288856,43.295049365\r\n1,1632000,6059.724646,3.7130665723039216,170.3516308384389,7.028652142540683,35.568697230993024,41.259670412\r\n1,1708800,6344.53355,3.7128590531367043,177.61434445541016,6.999148613617608,35.71863005074613,39.40643778\r\n1,1785600,6630.068688,3.713076102150538,186.91829414967557,7.048722061409657,35.467422012381505,37.710177559\r\n4,710400,2767.078408,3.8950991103603605,139.3593069181888,12.593129225811422,19.852095179615024,90.364465096\r\n4,825600,6436.663234,7.796345971414728,191.66294684663154,7.447165024786279,33.569821424384855,38.855528141\r\n4,940800,7330.518414,7.791792531887755,218.14940131455876,7.443163442040526,33.58786918314171,34.119568503\r\n4,1056000,8230.994633,7.794502493371212,244.67915772346655,7.435531579219986,33.62234392207717,30.38890459\r\n4,1171200,9127.752017,7.7935041128756835,277.8708008034073,7.614999878640551,32.82994142931367,27.404822157\r\n4,1286400,10021.245039,7.790146951958954,312.5524535089583,7.802007627414182,32.04303455453778,24.962234466\r\n4,1401600,10925.61839,7.795104444920091,339.3433342213182,7.769746563871951,32.176081670727726,22.896417228\r\n4,1497600,11669.156087,7.7919044384348295,380.00806771195226,8.146892855491211,30.686545709447216,21.438736563\r\n4,1612800,12569.76218,7.793751351686508,403.9282876122631,8.040155855111461,31.093924608571438,19.904909118\r\n4,1708800,13319.8359,7.7948477879213485,443.25488717627763,8.326249513160127,30.025523449046336,18.784337757\r\n4,1804800,14067.071798,7.794255207225178,511.1422699046469,9.091770056734312,27.49739582501033,17.787161407\r\n4,1920000,14971.852917,7.7978400609375,553.4806102306874,9.250791377585882,27.024714945548894,16.713849061\r\n4,2016000,15683.814304,7.779669793650793,594.6657942295998,9.487712443075123,26.34987110960236,15.954696798\r\n4,2131200,16609.088493,7.793303534628379,697.0413830939999,10.502464861898137,23.8039358652819,15.06720421\r\n4,2227200,17352.675783,7.791251698545259,772.3157411937857,11.138870661781246,22.443927000407584,14.422690187\r\n4,2323200,18100.202722,7.791065221246558,861.6702466182307,11.91365000143784,20.98433309437728,13.826228825\r\n4,2419200,18845.168099,7.789834697007275,965.8433744400768,12.828659855223844,19.48761622970304,13.282339761\r\n7,825600,3216.882198,3.896417390988372,171.48511022794796,13.329630243814348,18.75520891631733,77.730540139\r\n7,940800,7330.733367,7.792021010841837,245.45862573638223,8.37474639920667,29.8516501972743,34.118770013\r\n7,1056000,8213.687288,7.778112962121211,268.7889086143666,8.185467682073217,30.54193232568966,30.453145274\r\n7,1171200,9118.0976,7.785260928961748,292.48770324840734,8.024035617922713,31.15639210793044,27.433753723\r\n7,1286400,10023.655828,7.79202101057214,321.97897134720813,8.035192264702008,31.113132301541945,24.955643007\r\n7,1401600,10920.84571,7.791699279394978,350.54213320713626,8.029762310873558,31.134171887187843,22.906696657\r\n7,1497600,11664.800299,7.788995926148505,389.19335267971417,8.346896597301892,29.951251592215925,21.446657657\r\n7,1612800,12571.026299,7.79453515562996,430.77095712878935,8.57307164449454,29.161076725696695,19.901693702\r\n7,1708800,13315.579228,7.792356757958802,464.0571270962777,8.719364746696641,28.671813516542393,18.789421038\r\n7,1804800,14057.579847,7.788995925864362,490.2984878633528,8.727009457803696,28.64669749801289,17.799380732\r\n7,1920000,14962.892028,7.79317293125,544.3322521404375,9.103633351261173,27.46156291162212,16.724405573\r\n7,2016000,15711.41277,7.793359508928572,576.1603635079333,9.176371746113283,27.243883194454202,15.926766795\r\n7,2131200,16601.367953,7.789680908877629,671.8247544383999,10.127458995487407,24.68536284485526,15.074554679\r\n7,2227200,17356.289919,7.792874424838362,711.3325805642855,10.256661486926596,24.374402949600746,14.418939561\r\n7,2323200,18108.068956,7.794451169077135,741.1412362386152,10.242941198460246,24.40705214998021,13.820498304\r\n7,2419200,18842.327404,7.788660467923281,810.6303061083076,10.76728648096779,23.21847760268095,13.282610334\r\n7,2534400,19742.557056,7.789834696969697,883.1888368210832,11.196160561360307,22.3290831379097,12.67697246\r\n7,2649600,20644.095789,7.791400886548913,978.6901369423333,11.866655334557938,21.06743584874778,12.125038239\r\n7,2745600,21391.289467,7.791116501675408,1041.612833410636,12.188654150369384,20.510878142557157,11.701712728\r\n7,2841600,22147.413182,7.793993940737613,1078.5099550636362,12.189340274524362,20.509723608462902,11.302019251\r\n7,2956800,23039.351212,7.7919883698593075,1285.2924986471999,13.96530158165371,17.901511008428656,10.865465718\r\n"
  },
  {
    "path": "results/sm8150ac/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 2902.2648742240854, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1352.528021328, 1313.702970818, 1348.4193482720002, 1393.3973475419998, 1651.90899825, 1305.253022948, 1341.940615463, 1395.208637622, 1741.3885776, 1391.020736302, 1321.465998972, 1388.882156904, 1725.0809499040001, 1319.3355320040002, 1345.896469584, 1399.076352652, 1698.1175904640002, 1311.1158842670002, 1374.5000605680002, 1345.7400756480001, 1673.703149664, 1337.44056796, 1400.96710914, 1355.8539329599998, 1646.7502746599998, 1361.85959448, 1392.670021904, 1345.427927424, 1642.9374279359997], \"power_mean\": 1435.2272190772414, \"energy_millijoules\": 7176.136095386208, \"energy_joules\": 7.176136095386208}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 224.456079235, \"elapsed_ns\": 224456079235, \"power_samples\": [52.41779964800003, 31.954864171999816, 52.259973430999935, 91.20262482099974, 109.68290562699985, 433.07490137399986, 25.64173797999979, 34.011977635999756, 76.82720383899982, 13.470290427999771, 56.29028732200004, 101.46898017999979, 29.669316477999928, 443.22115651299987, 101.22414667599969, 111.57092199499971, 72.71813821600017, 41.99302246799971, 27.61676749399976, 72.63819503200011, 109.35455482700013, 453.47264076700003, 58.34271723399979, 35.83116947299959, 49.97152646699965, 95.22623093699985, 113.5449929859999, 91.04059369299989, 39.86243642799991, 111.40650845100004, 64.34527946499975, 31.56674490200021, 123.72663984100018, 90.95957812899974, 56.29028732200004, 31.644305181999925, 52.02371823499993, 86.77045049399999, 117.4840099139999, 80.7712242309999, 41.99302246799971, 27.539445357999966, 41.91486633999989, 107.302601203, 107.1383280099999, 49.97152646699965, 33.467902104999894, 51.86621477099993, 98.92726370799983, 105.25064757900009, 70.34641185600003, 121.34313638199978, 103.11275889199965, 70.42623596800013, 101.14253550799981, 107.05635938199998, 70.34641185600003, 29.436992853999982, 35.44217613299975, 76.345785794, 111.07734444999983, 88.66028007999967, 51.86621477099993, 31.334064062000152, 49.73562848699976, 76.345785794, 115.1845019919997, 84.63783876599973, 49.97152646699965, 29.436992853999982, 55.89533672199991, 98.76427951599953, 121.34313638199978, 76.26560422199987, 106.97439075399984, 119.20897598600004, 49.73562848699976, 78.31720014199982, 109.02586760199983, 102.94896345200004, 66.15871406099973, 31.334064062000152, 29.20466922999981, 76.26560422199987, 110.91293090600016, 86.44701073599958, 43.41904905199999, 27.307478949999904, 57.78862867199996, 92.6056451259999, 127.50177077199965, 92.6056451259999, 59.91945285599991, -15.811278068000092, 35.20846128199992, 55.737032752000005, 18.941291890999764, 43.34077385199976, 70.18643648400007, 41.36745313200004, 35.28625994999993, 51.62963682199984, 74.12974195599986, 94.57586826600004, 115.01961167199988, 90.5541682779999, 63.78868721799972, 35.20846128199992, 39.39389426799994, 59.76099632799969, 92.44337585400012, 116.90572191199999, 72.07826510799987, 41.445609259999856, 31.101065352000205, 65.91963071799978, 102.62204249199976, 24.946277591999888, 72.07826510799987, 96.70859882199989, 25.023480655999947, 53.52769473600006, 84.2342176799998, 116.90572191199999, 86.20467920799979, 47.447931393999625, 28.972028223999814, 67.73199317799981, 102.5403122519997, 102.5403122519997, 75.8646963619999, 37.10422172199992, 35.05286394599966, 86.1239020319997, 114.85472135199984, 96.38310770199996, 57.55130109600009, 31.023505071999807, 55.342082151999875, 45.39225069999975, 14.526675379999915, 55.342082151999875, 65.6808735459997, 49.342142921999766, 34.89726660999963, 45.23546215600004, 65.60128782199968, 88.09367480199967, 108.53300497700002, 108.69751680199988, 73.80949293200001, 49.26351026199973, 28.739704599999868, 45.0786736120001, 370.89241863799975, 92.2811065819999, 116.65769083799978, 94.08801301099993, 71.67822155199997, 30.945944791999864, 102.2947865719998, 71.75849237199986, 397.0365061130003, 116.57512660599991, 100.40736605199982, 71.75849237199986, 47.13387704199977, 24.714668399999937, 49.10592267699985, 75.8646963619999, 419.36883536799996, 96.1386558669999, 79.805528461, 38.847315051999885, 51.235878161999835, 81.77575160099991, 116.40999814199995, 49.02729001700004, 85.88123944999984, 126.83614931199986, 89.986727299, 69.46769232800011, 91.95623551899985, 114.35971250199964, 85.80046227399976, 108.36882957699981, 30.635385801999973, 61.18157118699992, 100.08092138000006, 108.28674187700017, 83.74993848999998, 59.20607377400006, 30.713263951999807, 96.05728308700009, 69.38786821600002, 104.26778200900003, 118.54716873500001, 91.95623551899985, 93.925505595, 120.43196820700018, 91.87510088300019, 65.36220447899996, 102.04959585199981, 110.25493981699992, 83.74993848999998, 48.948657356999774, 28.584504802000083, 24.251133609999897, 55.025797942000054, 42.79252665199988, 114.19448429199997, 112.22710077400006, 85.80046227399976, 69.38786821600002, 44.76477523599988, 28.35218117799991, 42.63597625200009, 61.10222360700004, 30.402704962000143, 18.172205968999833, 99.83575340399989, 77.51386460100002, 61.02287602699971], \"power_mean\": 80.01607455114339, \"energy_millijoules\": 17960.094369525108, \"energy_joules\": 17.96009436952511, \"coremark_score\": 1113.888406, \"coremarks_per_mhz\": 3.7129613533333337, \"ulpmark_cm_score\": 13.919748685964748}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1316.823144832, 1327.170040932, 1659.0560988599998, 1398.7518141080002], \"power_mean\": 1425.4502746829999, \"energy_millijoules\": 7127.251373415, \"energy_joules\": 7.127251373415}}, \"403200\": {\"active\": {\"elapsed_sec\": 166.998178043, \"elapsed_ns\": 166998178043, \"power_samples\": [56.918103341999995, 394.4947661650001, 120.2660236119998, 112.1444372840001, 79.32268057600004, 120.2660236119998, 122.31595154799993, 81.3727275839999, 89.50030188399978, 439.3441529319996, 91.63136445600003, 54.86781770199991, 34.27455841899996, 16.117360975999873, 85.4770225159998, 120.2660236119998, 108.04014235199998, 412.7232309159997, 38.613203884000086, 68.98842050799976, 99.6725310679999, 130.353067516, 91.63136445600003, 60.863855672, 30.247584401999802, 75.06222341600005, 44.45087686000011, 19.914990120999846, 115.91427437199991, 87.44617327599985, 60.70516051199979, 36.40264272699983, 48.55517179199978, 89.33827075599993, 105.66222083199978, 109.8435690440001, 71.0383484439999, 44.45087686000011, 42.400829852000015, 73.008214124, 105.66222083199978, 120.10041837200015, 89.33827075599993, 54.709513732000005, 38.30073583600006, 56.68045154799984, 81.21165000799988, 30.014585691999855, 46.50512478399992, 79.00100171199983, 48.47653913199974, 38.30073583600006, 62.675502724000125, 91.2256912759999, 122.067186472, 95.40596735199983, 68.82877228400002, 44.29408831599994, 38.222698779999746, 70.79851889199995, 101.5588794519997, 130.26966929199966, 97.54123010799981, 58.651151219999974, 36.24648791200002, 52.50172462799992, 93.35639663199981, 128.13681941999994, 101.5588794519997, 99.50930873199968, 128.053540268, 101.39541897199979, 66.69517751199965, 107.46552845199994, 115.83171013999981, 95.24322179199999, 62.75496937599996, 38.144661724000116, 50.29021187199987, 80.97003364399984, 109.51474195599985, 115.83171013999981, 80.97003364399984, 44.13729977199978, 42.24427945199977, 79.00100171199983, 105.58025220400009, 125.83754671199972, 99.18252958799962, 68.7489481719997, 40.19447058799983, 101.5588794519997, 60.546465351999814, 27.732334132000005, 117.7199943879998, 76.79082970399986, 48.39790647199993, 41.93117865199997, 76.62989931499988, 111.4031650899999, 103.3671014439999, 68.50947583599987, 40.03815833199974, 68.26967635200003, 105.33401038299985, 109.51474195599985, 70.71857570800012, 37.98858761199995, 68.58929994800019, 109.43219827099983, 107.38310432699973, 64.56602106799983, 33.80744756399986, 84.91158228399968, 39.725213508000024, 41.93117865199997, 76.62989931499988, 37.91055055599986, 42.00945385199998, 76.62989931499988, 103.28491643899974, 119.3548554370002, 68.429324576, 48.004743171999735, 39.80368994799983, 60.30842261199973, 94.99876995699992, 109.349991499, 113.36969480199991, 82.78138010999987, 58.17545692999988, 37.83251350000023, 54.0772690419999, 88.77082977700002, 115.33598636999977, 43.82340139599978, 93.03104879299963, 125.58806647199981, 41.93117865199997, 66.37603166899976, 13.376939211999797, 121.4863947849999, 90.81968557699997, 43.90211695599987, 43.98051122800007, 78.51815382699988, 109.26778472700016, 121.56931647700003, 80.72808720299986, 54.0772690419999, 37.67611956399992, 60.22874983699967, 109.26778472700016, 127.55352404799987, 103.03936777099989, 70.47841851999988, 39.725213508000024, 100.90470257199968, 64.32693772499988, 37.67611956399992, 117.38892132899991, 92.86854137700016, 56.04725379399997, 37.67611956399992, 53.998278922000054, 88.77082977700002], \"power_mean\": 82.48856391857821, \"energy_millijoules\": 13775.43988378611, \"energy_joules\": 13.77543988378611, \"coremark_score\": 1497.131496, \"coremarks_per_mhz\": 3.71312375, \"ulpmark_cm_score\": 18.148240790063888}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1407.3026188, 1380.716482837, 1345.8385944880004, 1319.243133852], \"power_mean\": 1363.27520749425, \"energy_millijoules\": 6816.37603747125, \"energy_joules\": 6.81637603747125}}, \"499200\": {\"active\": {\"elapsed_sec\": 134.879918853, \"elapsed_ns\": 134879918853, \"power_samples\": [45.79818071499972, 51.79156195399992, 78.357314395, 107.05475352699978, 27.42225191800003, 66.05721248499981, 104.84219861499992, 47.84715558699986, 41.53948185199988, 74.26007908299994, 110.82654507200004, 127.38696574399978, 94.59190605699996, 68.18985223999994, 43.509824308000134, 68.11002812800007, 100.65917689199978, 129.26820701200018, 116.97516472200005, 80.40593205100004, 51.79156195399992, 51.712690906000034, 90.65741630499997, 113.1223593220002, 135.3330709779998, 96.56265698799984, 123.11958736199995, 133.36868578200006, 88.44676752099986, 106.72606630200016, 131.31634789199984, 98.69286257999966, 64.00859482899978, 49.659875263, 78.1964749629999, 98.52930577199982, 135.24931529399987, 96.56265698799984, 73.93902418199991, 39.41258899599984, 59.75266435699973, 88.36541992599996, 123.03654659799986, 125.17192525199994, 94.51019978199997, 69.91848859600009, 47.61125760699997, 47.61125760699997, 82.2164428159997, 61.88051052100013, 27.112487085999874, 110.66189289599993, 82.2974314859996, 47.53262494700016, 41.30465625199986, 65.97750768899982, 388.9162127799998, 120.98852478999993, 123.03654659799986, 94.34745422199967, 57.620534375999796, 49.42329731399991, 71.8066240359999, 98.28447226799972, 435.57324298599997, 124.92244501200003, 100.4139861719998, 67.87022864400001, 131.06579600399982, 73.93902418199991, 108.60979363799993, 49.42329731399991, 92.29943241399974, 47.29640470199979, 51.31801242399979, 77.87446651000005, 98.28447226799972, 118.60929250200002, 130.98227870799974, 69.67865904399991, 69.59871586000008, 49.26579384999991, 47.0605067219999, 77.794046794, 116.72711407799989, 130.89876141199989, 94.18470866200005, 118.52615052700003, 124.67262395199987, 83.9415940639999, 108.36317332199997, 122.70438354199996, 83.9415940639999, 53.36603423199995, 55.25583765600004, 85.90848147999964, 30.747524449999673, 114.5925699039999, 83.9415940639999, 57.303621320000275, 43.039137387999745, 65.41924745799975, 94.02196310199997, 124.67262395199987, 63.371582865999926, 79.68075288199975, 134.83019361300035, 112.29723194199983, 77.71362707799972, 112.37967710199973, 128.76747587199998, 90.00800669799992, 124.50630379199993, 47.0605067219999, 71.40598463200013, 106.15111597700002, 122.45492091899996, 122.37188015499987, 83.69893148199981, 53.12906387199973, 118.44334790700009, 79.59988401700002, 110.24992505399996, 124.42314371199996, 89.76427027099999, 63.2919971419999, 138.92900269000006, 108.19842286500011, 77.6332073619999, 114.26197459799982, 132.69925011300006, 114.26197459799982, 87.71696338300012, 65.17980641100007], \"power_mean\": 92.45728166002976, \"energy_millijoules\": 12470.63064767378, \"energy_joules\": 12.47063064767378, \"coremark_score\": 1853.636835, \"coremarks_per_mhz\": 3.7132148137019234, \"ulpmark_cm_score\": 20.047101631274277}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1324.4747001269998, 1365.243730045, 1396.072708525, 1379.8338283189998], \"power_mean\": 1366.406241754, \"energy_millijoules\": 6832.0312087699995, \"energy_joules\": 6.832031208769999}}, \"576000\": {\"active\": {\"elapsed_sec\": 116.897352582, \"elapsed_ns\": 116897352582, \"power_samples\": [97.7944707879999, 438.84870801899956, 69.27861548800024, 107.95180254900015, 140.72397014600006, 56.98638355799994, 83.53737712999964, 118.11213742699988, 134.49517087699996, 465.12093840800003, 69.19867230399996, 46.74565381699995, 63.132499523000206, 97.7944707879999, 124.17366347199982, 116.06530682699986, 73.29724299299983, 54.93907667000008, 85.58456494599977, 124.25682355200001, 132.44834027699994, 93.61476570700029, 61.00572598299982, 114.01428190199977, 83.45659995399978, 59.03788574700002, 138.42469402000006, 109.92062070199995, 83.53737712999964, 50.84446289400012, 63.212085247000005, 107.95180254900015, 134.49517087699996, 124.33998363199998, 83.53737712999964, 56.98638355799994, 60.926259330999756, 99.67807905199993, 136.37390821600002, 113.84881505999988, 79.19719007699996, 52.89176978199998, 75.10352887699992, 107.78738900500002, 136.20615870400002, 103.69396594900013, 132.11345105600003, 113.76625082799978, 103.69396594900013, 113.9317176699999, 101.72910397700002, 58.72049542699983, 60.84679267899992, 93.5333929269998, 119.99278479999998, 124.09016257200005, 89.43973172699998, 68.95884275199978, 56.74869876600019, 83.29504560199962, 119.90986310799985, 126.13675453999986, 93.28894109199996, 66.83218803999989, 54.622639901999946, 75.10352887699992, 109.75563112399982, 34.141750926999975, 75.02322823300005, 109.67330503599987, 56.74869876600019, 56.51068926800008, 89.43973172699998, 107.54043177599988, 134.1598048799999, 99.35082313199973, 72.89600652000013, 54.622639901999946, 68.718685564, 101.40137030400001, 128.01655005999987, 128.01655005999987, 91.24246819599966, 58.64114784699996, 62.5750732839997, 95.33960757999967, 130.06290388399998, 115.73423376799997, 81.1675568979997, 142.18094909199976, 113.60112236400005, 83.05238301999952, 117.61498235199997, 138.08871773199962, 93.28894109199996, 58.48212749199979, 68.718685564, 101.40137030400001, 138.17271180400007, 117.78058759199985, 82.97160584399967, 50.45010765400002, 58.48212749199979, 99.26909289200012, 127.93315183599998, 113.51855813199973, 76.82835102400009, 48.24137582799972, 68.718685564, 107.45822500400027, 138.00472365999985, 99.18736265199959, 137.92072958799986, 113.60112236400005, 93.20756831199992, 123.591202092], \"power_mean\": 100.51613775876716, \"energy_millijoules\": 11750.070395767487, \"energy_joules\": 11.750070395767487, \"coremark_score\": 2138.781237, \"coremarks_per_mhz\": 3.713161869791667, \"ulpmark_cm_score\": 21.27646827461161}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1393.051001895, 1372.56415566, 1352.31352967, 1321.5799895979999], \"power_mean\": 1359.8771692057499, \"energy_millijoules\": 6799.385846028749, \"energy_joules\": 6.799385846028749}}, \"672000\": {\"active\": {\"elapsed_sec\": 100.20488368, \"elapsed_ns\": 100204883680, \"power_samples\": [19.496897167999805, 76.82835102400009, 125.72035877999997, 146.02361530899998, 109.50865285999998, 72.73564337599987, 54.30587891599998, 84.93706341999973, 62.415901835999875, 62.415901835999875, 103.11984961600001, 68.55879919600011, 66.51256444400019, 86.7444445839999, 119.49525464800013, 133.74068319900016, 129.7288347000001, 103.11984961600001, 82.81005149199973, 56.35223273999986, 62.415901835999875, 88.87145675600004, 107.21160468800008, 129.7288347000001, 141.92790723000007, 113.35342966799999, 78.71362727199994, 68.63874237999994, 58.24408475199971, 74.54109526799994, 86.90647571199975, 56.193776211999875, 56.193776211999875, 133.82478214399998, 111.22476908199997, 86.7444445839999, 68.47885601199982, 58.16473717199983, 74.54109526799994, 92.88207719200022, 113.35342966799999, 147.9847836089998, 133.48941614700016, 113.35342966799999, 74.54109526799994, 58.00571681699989, 62.177144664000025, 68.398912828, 84.69437467599982, 107.12906100300006, 129.56145782399972, 103.11984961600001, 88.79032211999993, 113.27052705799997, 133.48941614700016, 56.11454794800011, 60.0514747929999, 92.63762535699993, 111.1423239219996, 135.45094215100016, 127.5158189199999, 109.01435892999984, 72.41491708799981, 58.08538959200018, 56.2730044760001, 82.64849714000002, 102.79163916700008, 121.0425472689999, 149.69158752099997, 129.22738864000007, 113.02283436200014, 78.39114204299995, 64.22302220000006, 56.035319684000115, 117.11782727700006, 86.50106586099992, 60.0514747929999, 143.55190876599977, 115.07242651700017, 98.778376492, 66.11311673599994, 55.95576671400022, 67.99886927200009, 92.55625257700012, 114.82437587300001, 121.12558803299999, 143.382860488, 127.0150877799997, 106.8824406870001, 72.17404375900014, 396.76613559399993, 76.18466370700003, 104.8370399270002, 120.95950650499981, 141.25370428799988, 92.39350701699982, 118.831201426, 143.382860488, 396.76613559399993, 82.24428020599976], \"power_mean\": 100.83226137592997, \"energy_millijoules\": 10103.88502236642, \"energy_joules\": 10.10388502236642, \"coremark_score\": 2495.084683, \"coremarks_per_mhz\": 3.712923635416667, \"ulpmark_cm_score\": 24.742957728298435}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1341.4457988, 1367.748510508, 1402.557492256, 1373.891765328], \"power_mean\": 1371.410891723, \"energy_millijoules\": 6857.054458615001, \"energy_joules\": 6.857054458615001}}, \"768000\": {\"active\": {\"elapsed_sec\": 87.670114515, \"elapsed_ns\": 87670114515, \"power_samples\": [112.85770589799995, 129.06001176399968, 153.61586124399992, 135.19897413399985, 122.92523981199975, 449.27464275399984, 159.58421442199983, 129.06001176399968, 96.40641198799972, 124.97016379599972, 135.11509937799997, 151.40128113200012, 143.382860488, 481.74447752199967, 86.33903473299983, 71.93349904299998, 73.81773126999997, 98.36939033199974, 69.96420777599997, 147.22312984599967, 139.04067308799972, 461.32499502999985, 88.14057999399984, 61.619718424999746, 86.25801916899991, 94.27954236399978, 65.793820288, 67.6787688999998, 112.60967482399997, 432.9354775899999, 75.7822355379999, 77.82704044999991, 122.67575957199983, 134.94734986599974, 151.23162500399985, 112.5271105920001, 94.27954236399978, 412.5094295879999, 75.7822355379999, 100.25480562200005, 122.59259949200009, 147.13854016999971, 136.99610631999985, 102.29949146199988, 69.64363062799998, 390.04203171400013, 87.89717608599972, 142.87675275999982, 130.77457971800004, 98.20592985200005, 75.86265525399995, 69.64363062799998, 98.12419961199976, 126.51469843599966, 467.34491642600005, 98.12419961199976, 61.380635082000026, 71.77280728599999, 114.41061926599991, 147.053950494, 122.59259949200009, 126.59809666000001, 65.55402080400017, 124.55376803600006, 98.12419961199976, 65.39437257999998, 148.84380570699977, 128.55890798799987, 112.36198212799991, 134.69572559800008, 63.26591132999988, 85.77159375399992, 116.37226434200011, 148.84380570699977, 132.65151604599987, 102.05358557799991, 63.34561612599964, 126.51469843599966, 102.05358557799991, 120.37788082599991, 146.79983478699978, 122.42627933199992, 85.60956262599984, 152.93593601199996, 103.85131467700012, 81.67850891999979, 138.61976264199984], \"power_mean\": 135.8493176841838, \"energy_millijoules\": 11909.925238157008, \"energy_joules\": 11.909925238157008, \"coremark_score\": 2851.797773, \"coremarks_per_mhz\": 3.7132783502604165, \"ulpmark_cm_score\": 20.990895828552325}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1373.411778588, 1346.801705304, 1679.539707594, 1324.441585124], \"power_mean\": 1431.0486941525, \"energy_millijoules\": 7155.2434707625, \"energy_joules\": 7.1552434707625}}, \"844800\": {\"active\": {\"elapsed_sec\": 79.700337263, \"elapsed_ns\": 79700337263, \"power_samples\": [81.67850891999979, 77.42434650999985, 105.89528559700011, 132.39990573299974, 146.63065543499965, 138.53564949799988, 109.98741590200007, 91.74219128200002, 77.34347764499967, 101.80734375700013, 75.38013695799987, 65.15490024399992, 124.30358927199995, 95.83479933999979, 69.24331934800011, 85.60956262599984, 105.73087205299998, 136.3238095060001, 140.3268046979997, 115.8751092670002, 87.49117038699978, 69.16292896799996, 87.49117038699978, 126.18076374399993, 156.68313673199964, 130.188780661, 97.71521345199994, 70.89048138099997, 101.64340650099984, 142.37029932999985, 136.3238095060001, 128.14097922399992, 156.68313673199964, 101.72537512899976, 154.55457589199978, 118.00164466299998, 85.20415277500001, 71.1310260969999, 97.38829249199966, 138.19919692199983, 140.3268046979997, 115.8751092670002, 87.4100357509999, 73.01439572899972, 91.33499388700011, 121.92697803199962, 154.63964209999995, 113.66612846699991, 85.12313721099986, 71.1310260969999, 91.25362110699962, 130.188780661, 148.50497071499967, 107.61414062999961, 128.05746192799984, 156.342046492, 75.13854822099984, 101.47946924499979, 130.10514404899982, 156.68313673199964, 130.10514404899982, 107.61414062999961, 87.16663184299978, 77.02132249300007, 95.34479785999952, 127.97394463199976, 150.212992924, 144.16422344800003, 105.48425173700002, 74.97770878899996, 70.81029980899984, 97.38829249199966, 129.8538914400001, 60.902794567, 148.33555321899985, 117.75287958700005, 148.16578855599982, 152.25601078, 109.57519010199985], \"power_mean\": 110.75086904483531, \"energy_millijoules\": 8826.88161504372, \"energy_joules\": 8.82688161504372, \"coremark_score\": 3136.959659, \"coremarks_per_mhz\": 3.7132571721117427, \"ulpmark_cm_score\": 28.32257312411703}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1348.3801327859999, 1380.95483877, 1362.62363393, 1393.069064398], \"power_mean\": 1371.256917471, \"energy_millijoules\": 6856.2845873549995, \"energy_joules\": 6.856284587355}}, \"940800\": {\"active\": {\"elapsed_sec\": 71.564826296, \"elapsed_ns\": 71564826296, \"power_samples\": [127.72305045999997, 103.44087617699984, 74.89728907299968, 101.31553198899996, 135.90349490799986, 160.43226871599973, 137.8623996199999, 117.58669636000013, 88.96603234400004, 146.12277069999982, 117.503774668, 80.78929787599986, 158.30394626399993, 125.68003260399996, 101.233227424, 76.94078370499983, 95.18157552399998, 125.68003260399996, 150.12816485999997, 146.12277069999982, 107.28449887599982, 87.16663184299978, 91.090875547, 131.729517, 158.0480324759999, 141.6951433239999, 115.21234895199973, 80.70852069999978, 82.75153855599979, 119.54679252400001, 135.7355067640001, 84.87975848799988, 117.42085297599988, 147.91166231199963, 78.66550284399977, 105.07288096399998, 58.54095703899975, 158.13333707199968, 139.65260175599997, 109.32751673199982, 95.01801871599992, 82.83243480400006, 97.06103657199992, 135.5675186200001, 149.95850873199993, 145.86900167199974, 113.417738956, 86.67949150800018, 74.57528061999983, 101.15125879599987, 135.5675186200001, 162.04757287199982, 139.65260175599997, 147.7422448159998, 168.17902565200006, 121.34451665199981, 127.30546398000001, 160.00515037600007, 121.26135657199984, 94.69157404399994, 80.54696634799984, 105.07288096399998, 141.52609504599968, 160.09057404399982, 131.4782499480002, 104.99067419199991, 78.58484473999988, 103.03010125200012, 121.1781964920001, 157.96272787999987, 133.35269825499995], \"power_mean\": 118.31168756081681, \"energy_millijoules\": 8466.955369076479, \"energy_joules\": 8.466955369076478, \"coremark_score\": 3493.571828, \"coremarks_per_mhz\": 3.713405429421769, \"ulpmark_cm_score\": 29.52655223778136}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1321.3175712659997, 1341.772233648, 1366.0762317909998, 1392.5007894270002], \"power_mean\": 1355.416706533, \"energy_millijoules\": 6777.083532665, \"energy_joules\": 6.777083532665}}, \"1036800\": {\"active\": {\"elapsed_sec\": 64.947760637, \"elapsed_ns\": 64947760637, \"power_samples\": [127.2216043999997, 163.83684341800017, 145.5302962889998, 121.09469559199965, 86.51722223599995, 88.55976380399989, 125.09590323999987, 149.61884882000004, 163.83684341800017, 135.4835245480001, 104.66151019099993, 86.35462044499991, 110.95771342800003, 147.48777140499988, 163.7511813619999, 139.39955989400005, 110.87481081799979, 173.9650942769997, 135.23119809399986, 100.57714246299975, 161.70505132699964, 139.3153276779999, 110.70968235400005, 88.39692338099985, 96.57032017199981, 127.054569808, 157.45055069499995, 147.48777140499988, 125.01250501599998, 100.74141565600007, 86.35462044499991, 104.5793034190001, 104.66151019099993, 149.36436462799998, 171.75087138100002, 135.23119809399986, 106.62555277000001, 84.31231750899974, 92.32273010799986, 116.84006128900023, 78.34287042799997, 102.53723862700008, 122.97044022399996, 92.40422220399978, 104.5793034190001, 126.80401791999998, 153.27788550799983, 145.191937585, 120.92837543200017, 88.31566967299977, 100.49517383500006, 136.93681030999983, 161.53396584699976, 153.362951716, 120.762055272, 88.23441596499993, 100.41320520699992, 128.93354593499998, 155.31947401199977, 149.27953656399995, 110.54455388999986, 171.66473279299953, 136.93681030999983, 106.37857450599995], \"power_mean\": 124.10454004140617, \"energy_millijoules\": 8060.31196057423, \"energy_joules\": 8.06031196057423, \"coremark_score\": 3849.529587, \"coremarks_per_mhz\": 3.712895049189815, \"ulpmark_cm_score\": 31.016169252857253}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1322.744794917, 1345.233177288, 1377.785285712, 1330.92200787], \"power_mean\": 1344.17131644675, \"energy_millijoules\": 6720.8565822337505, \"energy_joules\": 6.7208565822337505}}, \"1113600\": {\"active\": {\"elapsed_sec\": 60.465865294, \"elapsed_ns\": 60465865294, \"power_samples\": [98.37125948699986, 94.03835022799967, 126.46960645199988, 146.97917174999975, 171.49210258999983, 140.93529032799984, 120.59573511199983, 91.99676172399973, 104.25047633099985, 128.59865671400007, 83.90723968899988, 104.16793264599983, 134.64289535199987, 104.16793264599983, 91.91493564399957, 126.46960645199988, 161.0203588219997, 167.23341935199983, 144.9378218779998, 116.34219129400003, 91.99676172399973, 108.25505387199973, 140.68223646399997, 169.102492536, 150.72626604399989, 124.511773876, 93.95640458799971, 106.21358492799959, 140.68223646399997, 165.10652649600001, 150.89616031599985, 116.34219129400003, 177.3608471560001, 144.7686425259999, 106.21358492799959, 175.40204886999982, 140.68223646399997, 98.125710819, 99.92105750200017, 134.55890127999987, 169.102492536, 140.68223646399997, 103.92131232999986, 104.00351910200015, 136.51589986399995, 171.06140964999986, 134.3909131360001, 97.87982670200017, 104.00351910200015, 142.72753079799963, 171.31982541399998, 130.47249521799995, 95.91614329199979, 110.04883011999982, 97.797977146, 99.75712024599989, 144.51487349799982, 95.75268281199965, 97.87982670200017, 128.43138348999992], \"power_mean\": 126.17027133766655, \"energy_millijoules\": 7628.994630810775, \"energy_joules\": 7.628994630810775, \"coremark_score\": 4134.896876, \"coremarks_per_mhz\": 3.7130898670977013, \"ulpmark_cm_score\": 32.76971764934001}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1340.677407232, 1373.374814464, 1405.8301654109998, 1389.5653404569998], \"power_mean\": 1377.361931891, \"energy_millijoules\": 6886.809659455001, \"energy_joules\": 6.886809659455}}, \"1209600\": {\"active\": {\"elapsed_sec\": 55.666504607, \"elapsed_ns\": 55666504607, \"power_samples\": [57.34830589300009, 120.2627539719997, 154.8080132120001, 181.26936408400002, 154.8080132120001, 110.04883011999982, 103.92131232999986, 128.43138348999992, 87.58405329399989, 124.17818097999998, 136.51589986399995, 95.83441305199995, 120.09643381200021, 156.76776431799976, 173.01555298699986, 144.51487349799982, 99.75712024599989, 112.01144090600019, 144.599463174, 170.97491803499997, 150.55602362800005, 116.17634790999978, 103.75689878599997, 170.88877944699993, 170.80264085899967, 142.38930219099984, 115.92758283400008, 103.92131232999986, 156.6821101129999, 120.01327373199979, 83.25878314599981, 166.6317659020001, 140.34448561, 109.71823481399997, 105.80195448799986, 130.05337353699997, 162.72253454199995, 176.84151637599984, 160.67783727699998, 126.13553726799978, 105.63696490999996, 117.88495625099995, 144.26075779099983, 178.79517899200005, 144.345347467, 119.92977283200003, 93.3031807719999, 105.71962839999992, 148.3457325479999, 174.79705774299987, 128.01285765700004, 150.30118221999987, 176.755020328, 109.63567058199988, 132.09388941700013], \"power_mean\": 133.08846514870902, \"energy_millijoules\": 7408.56965833917, \"energy_joules\": 7.40856965833917, \"coremark_score\": 4491.47518, \"coremarks_per_mhz\": 3.713190459656085, \"ulpmark_cm_score\": 33.74470532494719}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1340.28630628, 1378.9433571030002, 1403.378733767, 1379.1041965349998], \"power_mean\": 1375.42814842125, \"energy_millijoules\": 6877.1407421062495, \"energy_joules\": 6.877140742106249}}, \"1305600\": {\"active\": {\"elapsed_sec\": 51.570915138, \"elapsed_ns\": 51570915138, \"power_samples\": [160.42120905699994, 136.09498941799984, 113.63808110699983, 113.63808110699983, 138.0511540099999, 166.6317659020001, 180.57477961200016, 180.74860346399987, 145.96231960699993, 176.58202823199986, 190.8656520369998, 129.8858621689999, 150.30118221999987, 170.45808650699973, 184.8328630569997, 152.08626133200005, 131.84226514900024, 103.34552801299992, 121.63729117599996, 154.21136713199962, 178.53497865200006, 180.57477961200016, 154.0406474519998, 137.88268957799983, 109.38797788600004, 107.4302643819999, 125.63409120799975, 149.96104553200007, 184.57158887200012, 168.2415947400002, 153.9554621719999, 180.40131122799994, 184.48461629199983, 129.8021064850002, 156.08462833199974, 186.524179108, 164.24801209199995, 133.6342780120001, 109.30541365399972, 131.7583903929999, 170.28545630400004, 178.44836353200003, 158.03900562400008, 113.30687062700008, 109.13994681199983, 143.83746273199995, 170.11317912799996, 182.61458057200002, 149.7062041239999, 113.30687062700008, 113.22372865200009], \"power_mean\": 149.61351166125485, \"energy_millijoules\": 7715.705713380747, \"energy_joules\": 7.715705713380746, \"coremark_score\": 4848.155762, \"coremarks_per_mhz\": 3.7133545971200985, \"ulpmark_cm_score\": 32.40144314556276}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1341.9365552000002, 1337.853855456, 1362.2036698979998, 1384.668446724], \"power_mean\": 1356.6656318195, \"energy_millijoules\": 6783.3281590975, \"energy_joules\": 6.7833281590975005}}, \"1382400\": {\"active\": {\"elapsed_sec\": 48.707022248, \"elapsed_ns\": 48707022248, \"power_samples\": [180.40131122799994, 143.66828337999982, 115.26352961200018, 139.75368089199992, 180.48804542000016, 170.02704053999992, 145.7925549439999, 113.14092603199992, 131.59029713200016, 167.9835369240002, 180.22784284400018, 137.5454155, 113.05812341199976, 133.46628986799988, 119.18099129199982, 119.26415137200001, 165.94421225200017, 119.09783121200007, 137.37695106799993, 174.01931315199977, 174.01931315199977, 135.3376263959999, 117.05420828000001, 145.53842869999994, 190.3413153519998, 163.81910645199991, 133.2143076519999, 112.89251817200011, 139.41627573999995, 173.84620568499986, 188.214899028, 159.65097381199985, 135.3376263959999, 114.93184284400013, 149.62125698800014, 180.0543744600002, 137.37695106799993, 163.64719263400002, 198.2427155729997, 135.169400108, 151.575515452, 186.00127226299992, 175.976201404, 147.41227618799985, 112.80971555199994, 114.7659994600001, 155.40184195499955, 179.96728480000002], \"power_mean\": 149.14431195087496, \"energy_millijoules\": 7264.375320353919, \"energy_joules\": 7.264375320353919, \"coremark_score\": 5133.04862, \"coremarks_per_mhz\": 3.713142809606481, \"ulpmark_cm_score\": 34.41452141101928}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1360.0038630100003, 1325.210779356, 1345.552034733, 1369.9722558600001], \"power_mean\": 1350.1847332397501, \"energy_millijoules\": 6750.923666198751, \"energy_joules\": 6.750923666198751}}, \"1478400\": {\"active\": {\"elapsed_sec\": 45.542955057, \"elapsed_ns\": 45542955057, \"power_samples\": [155.48714655100002, 108.72712565199981, 153.35881609199987, 189.99163825899996, 114.84892115199978, 145.19924654099987, 181.83254523999994, 183.70150662699984, 151.40503440400016, 120.72053788799985, 137.03967698999986, 175.62986272000012, 194.0732736299999, 165.6002594019999, 135.08494223799994, 118.9315110519999, 130.91895533499996, 149.28112029999988, 183.70150662699984, 189.81697866699983, 169.68213316099968, 139.07852488599974, 118.59852991199978, 173.67345222099993, 149.1961731639999, 114.68273792500008, 189.72964887099988, 161.265577442, 132.87798712599988, 124.71471638399998, 149.0262788919997, 163.38984925, 193.81056907800007, 181.57198544800008, 159.1373667869998, 134.83260280600007, 122.67598755999984, 145.02982904499981, 169.4237173969998, 189.72964887099988, 189.72964887099988, 159.30845226700012, 132.79399305399988, 124.54768179199982, 155.06062357099995], \"power_mean\": 153.9759626921777, \"energy_millijoules\": 7012.520348748158, \"energy_joules\": 7.012520348748158, \"coremark_score\": 5489.679403, \"coremarks_per_mhz\": 3.7132571719426406, \"ulpmark_cm_score\": 35.65052043586994}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1371.692522716, 1408.26938696, 1383.9411210859998, 1349.397049441], \"power_mean\": 1378.32502005075, \"energy_millijoules\": 6891.62510025375, \"energy_joules\": 6.8916251002537505}}, \"1555200\": {\"active\": {\"elapsed_sec\": 43.295049365, \"elapsed_ns\": 43295049365, \"power_samples\": [142.99121929300009, 126.59034970700009, 136.70274812599996, 159.1373667869998, 183.44023244200002, 201.79178223000008, 175.37037457600013, 138.741119734, 130.7512058230002, 153.01807497200002, 175.37037457600013, 199.57779796599993, 165.17075840200005, 203.5654238420002, 183.44023244200002, 148.85638461999997, 201.70373751400007, 185.3912737659998, 154.80436017399984, 126.50671309500012, 148.7710893399999, 183.35325986199996, 199.57779796599993, 175.11053193999987, 142.737450265, 122.25865464399999, 152.76217001199984, 179.1863216039999, 199.4898723220001, 158.79484524200006, 132.4576725280001, 132.5420108379999, 164.91270575199997, 193.37236927200024, 187.3420769459999, 185.04290715799993, 199.314021034, 152.67698473199994, 185.21709046200021, 195.41014503200017, 168.99267142999997, 134.327579216, 138.40336888000002], \"power_mean\": 165.69709596660465, \"energy_millijoules\": 7173.86394951129, \"energy_joules\": 7.17386394951129, \"coremark_score\": 5774.872375, \"coremarks_per_mhz\": 3.713266702031893, \"ulpmark_cm_score\": 34.848723332288856}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1338.722222784, 1367.1331717120001, 1399.7790822400002, 1407.8583531], \"power_mean\": 1378.373207459, \"energy_millijoules\": 6891.866037295, \"energy_joules\": 6.891866037295}}, \"1632000\": {\"active\": {\"elapsed_sec\": 41.259670412, \"elapsed_ns\": 41259670412, \"power_samples\": [158.79484524200006, 128.2934743899998, 144.69064688599997, 183.17931470200006, 205.51909226799967, 166.95060058399986, 197.18867684599968, 193.10966471999973, 114.185207773, 199.314021034, 184.95581550599968, 152.59179945200003, 138.31901759200014, 164.56910495199986, 199.40194667799983, 191.15969528799997, 156.67152674199997, 138.40336888000002, 154.5484463859998, 184.95581550599968, 201.26351393399977, 158.70930250200013, 132.0377021679999, 154.46314178999978, 195.14708326399978, 207.37994460399955, 168.73425566599985, 205.1655980359999, 176.80196629199986, 142.22956552999972, 205.25424295599964, 162.61746753600005, 134.0752397839999, 160.49426786399977, 197.10087027399982, 182.8314243819998, 144.26710314599995, 140.2764985179997, 182.91839696199963, 203.12424357500004, 172.7229541659999], \"power_mean\": 170.3516308384389, \"energy_millijoules\": 7028.652142540684, \"energy_joules\": 7.028652142540683, \"coremark_score\": 6059.724646, \"coremarks_per_mhz\": 3.7130665723039216, \"ulpmark_cm_score\": 35.568697230993024}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1352.6122470300002, 1334.4051645, 1362.7316743569997, 1403.369762823], \"power_mean\": 1363.2797121775, \"energy_millijoules\": 6816.3985608875, \"energy_joules\": 6.8163985608875}}, \"1708800\": {\"active\": {\"elapsed_sec\": 39.40643778, \"elapsed_ns\": 39406437780, \"power_samples\": [207.1143757719999, 190.80954044200007, 182.91839696199963, 219.16685523, 182.8314243819998, 146.22398797999972, 144.26710314599995, 174.59120116000008, 213.14097296099976, 170.68553562199986, 164.39695250199998, 144.1823943979996, 158.1101527369999, 202.94791599899986, 202.94791599899986, 172.63657743399995, 138.06596372799982, 148.176459388, 182.74409535699988, 215.08903602100008, 184.60709196499965, 210.92675006500008, 194.70828761000007, 162.35977258999992, 204.7241825159997, 202.8597522109999, 158.19569547700007, 141.8062704709996, 164.13925190200007, 188.6809755009997, 208.88587286799998, 172.549846699, 133.73844248199998, 158.1101527369999, 194.5329130980001, 215.00015731300005, 168.13093252300018, 139.85379930699992, 162.1024292059999], \"power_mean\": 177.61434445541016, \"energy_millijoules\": 6999.148613617608, \"energy_joules\": 6.999148613617608, \"coremark_score\": 6344.53355, \"coremarks_per_mhz\": 3.7128590531367043, \"ulpmark_cm_score\": 35.71863005074613}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1372.6937250549997, 1338.096653448, 1366.494251668, 1403.123856939], \"power_mean\": 1370.1021217775, \"energy_millijoules\": 6850.5106088875, \"energy_joules\": 6.8505106088875}}, \"1785600\": {\"active\": {\"elapsed_sec\": 37.710177559, \"elapsed_ns\": 37710177559, \"power_samples\": [150.29882506799981, 154.03626920099987, 190.45974399399984, 218.89950394199968, 212.7859344169999, 174.15872091999972, 147.75137556400023, 147.5814812919998, 188.3316563169999, 218.89950394199968, 212.7859344169999, 176.281920592, 147.92126983599974, 151.82478281199997, 192.40876036200007, 228.81649865200006, 202.59526084699996, 202.41857194399972, 228.9062113519999, 198.52232988699984, 188.3316563169999, 216.8588653769998, 208.53142508399947, 178.145155832, 147.75137556400023, 161.758953132, 192.40876036200007, 216.59150729199996, 214.73315693200016, 180.18162131199983, 151.82478281199997, 143.41932133199975, 161.84508582199987, 192.40876036200007, 220.75713136399963, 212.6968110119999, 182.04795827199973], \"power_mean\": 186.91829414967557, \"energy_millijoules\": 7048.722061409657, \"energy_joules\": 7.048722061409657, \"coremark_score\": 6630.068688, \"coremarks_per_mhz\": 3.713076102150538, \"ulpmark_cm_score\": 35.467422012381505}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1416.9028231100003, 1376.28785853, 1343.9022840540001, 1404.9155099500001], \"power_mean\": 1385.5021189110003, \"energy_millijoules\": 6927.510594555001, \"energy_joules\": 6.9275105945550015}}}}, \"4\": {\"freqs\": {\"710400\": {\"active\": {\"elapsed_sec\": 90.364465096, \"elapsed_ns\": 90364465096, \"power_samples\": [123.46127237599967, 176.10869035200017, 141.63709111899993, 107.07482587799996, 103.00118048599984, 172.031586307, 153.7803554129996, 129.49239698500014, 103.08350657399978, 117.35044707199972, 153.6950508169998, 171.94485557200005, 143.67379474299992, 107.07482587799996, 155.81693996499962, 123.21072048799965, 86.77545024699975, 151.82478281199997, 117.18412691200001, 92.97217985199995, 119.220830536, 141.4679117669998, 173.985374332, 163.88155130199993, 133.4019899059997, 99.00544897699979, 98.84127357700004, 141.38297541199972, 174.0722248720001, 163.88155130199993, 129.40852222900003, 101.0423907449997, 125.1678417569999, 147.49618601199995, 177.79786359600007, 151.568877852, 153.6950508169998, 177.79786359600007, 169.82225199199956, 118.97065177199988, 141.4679117669998, 167.78602514399972, 165.74562569999966, 149.61794677199987, 121.09073771199974, 94.60416721699994, 110.90423722700007, 137.30611073199998, 177.79786359600007, 161.67317200399975, 145.45984009199992, 121.09073771199974, 98.75918587699971, 110.82109525200008, 131.1970729719999, 157.42546023199998, 175.76187489200015, 147.41123887599974, 171.85847883999986, 161.58739087599974, 131.1970729719999, 161.5016097480002, 171.7721021079999, 126.95269692400007, 102.67153873200004, 116.93430585199985, 143.2499038359997, 183.91000181599998, 143.1651950879998, 112.85744117200011, 100.7135636569999, 116.76798569199991, 153.3534828239999, 175.76187489200015, 157.42546023199998, 132.98107946000005, 100.7135636569999, 116.76798569199991, 139.2621588879997, 187.89464942799987, 127.12020829200014, 163.4516982519997, 177.79786359600007, 116.85114577199965, 157.42546023199998, 173.63939013999993, 159.46562104400005, 131.0290848279999, 106.57910210799992, 110.65549001199997], \"power_mean\": 139.3593069181888, \"energy_millijoules\": 12593.129225811423, \"energy_joules\": 12.593129225811422, \"coremark_score\": 2767.078408, \"coremarks_per_mhz\": 3.8950991103603605, \"ulpmark_cm_score\": 19.852095179615024}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1351.6640418600002, 1378.084017926, 1337.5492402400002, 1341.703186032], \"power_mean\": 1352.2501215145, \"energy_millijoules\": 6761.2506075725005, \"energy_joules\": 6.7612506075725}}, \"825600\": {\"active\": {\"elapsed_sec\": 38.855528141, \"elapsed_ns\": 38855528141, \"power_samples\": [163.19364560200006, 159.20863487600013, 203.66406163600004, 146.90120791599998, 193.47994727800028, 219.68593162599996, 158.95129763399996, 187.3703127430001, 217.65113412999995, 231.9030559360001, 193.39226002200007, 166.92428623699993, 169.21809485699987, 195.4314658169999, 233.93785343199988, 217.65113412999995, 189.32218874199998, 160.81500916200002, 171.2534877129999, 213.66624817899992, 241.899748606, 223.84917084100016, 183.21291166699984, 160.81500916200002, 183.21291166699984, 166.92428623699993, 162.85004480199996, 197.20236417399974, 177.10363459199993, 164.97109971400005, 201.5365727369997, 240.04641558700018, 223.75969628500002, 197.46650145699982, 166.92428623699993, 166.92428623699993, 197.11443852999992, 233.75734397199994], \"power_mean\": 191.66294684663154, \"energy_millijoules\": 7447.165024786279, \"energy_joules\": 7.447165024786279, \"coremark_score\": 6436.663234, \"coremarks_per_mhz\": 7.796345971414728, \"ulpmark_cm_score\": 33.569821424384855}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1334.964885264, 1361.4576504309998, 1397.8982818399998, 1404.0122088249998], \"power_mean\": 1374.5832565899998, \"energy_millijoules\": 6872.916282949999, \"energy_joules\": 6.8729162829499995}}, \"940800\": {\"active\": {\"elapsed_sec\": 34.119568503, \"elapsed_ns\": 34119568503, \"power_samples\": [239.77476212200008, 217.20518341599995, 183.12582001500004, 251.89442751199954, 223.49090591800018, 197.11443852999992, 186.93330585399985, 215.34480888200005, 253.84165531000008, 251.71214292000013, 225.61493933799989, 186.93330585399985, 203.13400119599987, 239.59390688200006, 259.85680962800006, 225.34615845400003, 186.84597605800013, 199.06095267799992, 247.643977768, 257.72705909399997, 217.38341760799995, 182.86418812599982, 231.45293184399975, 192.77808985599995, 182.77709647400002, 233.3970633319998, 194.81645994999985, 184.63711481799987, 213.0437329660001, 241.44701514599979, 263.4653122359998, 237.19393345599997, 202.9574349879997, 186.671316466], \"power_mean\": 218.14940131455876, \"energy_millijoules\": 7443.163442040526, \"energy_joules\": 7.443163442040526, \"coremark_score\": 7330.518414, \"coremarks_per_mhz\": 7.791792531887755, \"ulpmark_cm_score\": 33.58786918314171}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1377.116892316, 1363.175773015, 1397.48929568, 1367.2528770600002], \"power_mean\": 1376.25870951775, \"energy_millijoules\": 6881.29354758875, \"energy_joules\": 6.88129354758875}}, \"1056000\": {\"active\": {\"elapsed_sec\": 30.38890459, \"elapsed_ns\": 30388904590, \"power_samples\": [237.4652284839999, 293.8906368080002, 253.2937116149999, 217.02694922399974, 283.8126804589997, 237.19393345599997, 212.8656112929998, 229.14469827099992, 263.6490266679998, 296.02193478899994, 253.47623483899997, 222.95369188299992, 216.93746689399973, 247.279988602, 289.82390149599996, 267.53645267299953, 230.7329544879999, 220.91579954199983, 251.2560579059998, 291.76374395200014, 265.40682267600005, 233.03641355199989, 206.6713904999997, 257.0861858029998, 222.77474277099986, 202.51565765200007, 267.2601658609997, 243.11794401299971, 214.81045745699998, 210.65424807700015], \"power_mean\": 244.67915772346655, \"energy_millijoules\": 7435.531579219986, \"energy_joules\": 7.435531579219986, \"coremark_score\": 8230.994633, \"coremarks_per_mhz\": 7.794502493371212, \"ulpmark_cm_score\": 33.62234392207717}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1334.2622319359998, 1344.4457519599998, 1380.950710304, 1407.347941662], \"power_mean\": 1366.7516589655, \"energy_millijoules\": 6833.758294827499, \"energy_joules\": 6.8337582948275}}, \"1171200\": {\"active\": {\"elapsed_sec\": 27.404822157, \"elapsed_ns\": 27404822157, \"power_samples\": [217.20518341599995, 265.0385405720001, 232.76620307200005, 259.1234815639998, 299.52451259999975, 313.7622462879997, 275.11875435599995, 303.49998161200006, 317.83195541999976, 264.9465642839998, 301.55728440799953, 309.50750751199985, 263.28159780400006, 230.64300339999977, 260.8810206679998, 303.49998161200006, 311.6347578279997, 265.2228700999997, 236.65171351599975, 250.79997289199991, 281.03537610399985, 321.516250012, 281.2212352959996, 246.55238282799974, 283.06790976799994, 317.45165897200013, 289.16967578799995], \"power_mean\": 277.8708008034073, \"energy_millijoules\": 7614.99987864055, \"energy_joules\": 7.614999878640551, \"coremark_score\": 9127.752017, \"coremarks_per_mhz\": 7.7935041128756835, \"ulpmark_cm_score\": 32.82994142931367}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1364.4973402760002, 1335.7506883600001, 1360.422383677, 1394.80008316], \"power_mean\": 1363.8676238682501, \"energy_millijoules\": 6819.338119341251, \"energy_joules\": 6.819338119341251}}, \"1286400\": {\"active\": {\"elapsed_sec\": 24.962234466, \"elapsed_ns\": 24962234466, \"power_samples\": [329.6495966319999, 341.7547996169999, 297.21009281199963, 270.9567114759998, 282.97486109999977, 303.21726125200007, 351.826908451, 321.3252348760002, 282.97486109999977, 264.7626117080001, 306.99803029400005, 349.59672703199976, 311.16078638499994, 351.53560978300015, 327.3298998749999, 293.0474545719999, 341.4652884930001, 331.30203121, 296.92806006699993, 270.67971023199993, 294.896003179, 339.33708511300006, 339.33708511300006, 300.99217384300005], \"power_mean\": 312.5524535089583, \"energy_millijoules\": 7802.007627414182, \"energy_joules\": 7.802007627414182, \"coremark_score\": 10021.245039, \"coremarks_per_mhz\": 7.790146951958954, \"ulpmark_cm_score\": 32.04303455453778}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1418.900517918, 1390.5630961650002, 1351.8810954060002, 1337.9422744], \"power_mean\": 1374.82174597225, \"energy_millijoules\": 6874.10872986125, \"energy_joules\": 6.87410872986125}}, \"1401600\": {\"active\": {\"elapsed_sec\": 22.896417228, \"elapsed_ns\": 22896417228, \"power_samples\": [351.34141067099995, 310.97135308099973, 371.5660608490002, 335.3656686979998, 284.54105515699985, 363.4365284380001, 322.78886638300014, 300.52156982299994, 326.947221011, 355.30699602699997, 387.7296374479997, 347.17746361600007, 302.7456744220001, 320.7533613400001, 357.0455687540002, 385.496002698, 345.1461211599999, 312.7186646529999, 306.62011723800015, 332.75729334399966, 373.3059323320001, 371.2707857260002], \"power_mean\": 339.3433342213182, \"energy_millijoules\": 7769.746563871951, \"energy_joules\": 7.769746563871951, \"coremark_score\": 10925.61839, \"coremarks_per_mhz\": 7.795104444920091, \"ulpmark_cm_score\": 32.176081670727726}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1375.908150342, 1335.5943761040003, 1351.722552804, 1396.4261326399999], \"power_mean\": 1364.9128029725, \"energy_millijoules\": 6824.5640148625, \"energy_joules\": 6.8245640148625}}, \"1497600\": {\"active\": {\"elapsed_sec\": 21.438736563, \"elapsed_ns\": 21438736563, \"power_samples\": [361.0140049519998, 401.2555657999999, 407.44757941199987, 375.13985877999994, 342.7237290019998, 336.727397526, 369.1416292819997, 389.0649111099997, 419.63895195199984, 383.26700657800006, 352.98359925, 332.46921181599987, 370.77892907499995, 413.4420598569998, 384.9999726689998, 405.01539498399984, 401.15548773599994, 370.97591343399995, 407.3467325119998, 393.0260876299999, 362.55539859400005], \"power_mean\": 380.00806771195226, \"energy_millijoules\": 8146.892855491211, \"energy_joules\": 8.146892855491211, \"coremark_score\": 11669.156087, \"coremarks_per_mhz\": 7.7919044384348295, \"ulpmark_cm_score\": 30.686545709447216}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1335.3595874080002, 1428.4958515370001, 1386.087495474, 1353.5194268760001], \"power_mean\": 1375.86559032375, \"energy_millijoules\": 6879.32795161875, \"energy_joules\": 6.87932795161875}}, \"1612800\": {\"active\": {\"elapsed_sec\": 19.904909118, \"elapsed_ns\": 19904909118, \"power_samples\": [413.3412671169999, 372.8134786119999, 397.0907876829999, 443.4016369689996, 443.50421676500014, 405.11571119200016, 366.6200986470001, 413.0388888969999, 362.65321282599984, 396.79126865499984, 390.69737115, 376.6769599720001, 404.9150787760002, 447.4653834699998, 443.19605696799977, 400.8552535440001, 374.6468092120001, 388.66745853399993, 433.1465256439999], \"power_mean\": 403.9282876122631, \"energy_millijoules\": 8040.155855111461, \"energy_joules\": 8.040155855111461, \"coremark_score\": 12569.76218, \"coremarks_per_mhz\": 7.793751351686508, \"ulpmark_cm_score\": 31.093924608571438}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1365.4128732840002, 1343.2656175299999, 1369.484490497, 1406.112375538], \"power_mean\": 1371.06883921225, \"energy_millijoules\": 6855.34419606125, \"energy_joules\": 6.85534419606125}}, \"1708800\": {\"active\": {\"elapsed_sec\": 18.784337757, \"elapsed_ns\": 18784337757, \"power_samples\": [415.0729611700001, 451.21953789200006, 408.7779544729999, 426.8496730919999, 440.96158060799985, 410.60586901199986, 440.96158060799985, 487.3493720599997, 471.41796587199974, 434.767368604, 408.37532397999985, 430.70897321200005, 473.1383397879997, 501.24186452199956, 471.3137180919998, 430.6071080920001, 414.36616320400003, 460.8526148919998], \"power_mean\": 443.25488717627763, \"energy_millijoules\": 8326.249513160126, \"energy_joules\": 8.326249513160127, \"coremark_score\": 13319.8359, \"coremarks_per_mhz\": 7.7948477879213485, \"ulpmark_cm_score\": 30.025523449046336}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1375.344048749, 1405.700745098, 1425.956513136, 1393.575246696], \"power_mean\": 1400.14413841975, \"energy_millijoules\": 7000.72069209875, \"energy_joules\": 7.00072069209875}}, \"1804800\": {\"active\": {\"elapsed_sec\": 17.787161407, \"elapsed_ns\": 17787161407, \"power_samples\": [505.6183234359996, 531.3640537179997, 543.3206041249998, 496.86311377899983, 468.55519268299986, 496.86311377899983, 533.176415934, 547.3807728520001, 506.9021008819998, 466.6308386149999, 490.7742236439997, 533.176415934, 553.359368142, 504.767702098, 472.61607657399986, 502.84584976199994, 535.2044224220001], \"power_mean\": 511.1422699046469, \"energy_millijoules\": 9091.770056734313, \"energy_joules\": 9.091770056734312, \"coremark_score\": 14067.071798, \"coremarks_per_mhz\": 7.794255207225178, \"ulpmark_cm_score\": 27.49739582501033}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1379.0107338639998, 1338.644202984, 1369.003072452, 1409.60153728], \"power_mean\": 1374.064886645, \"energy_millijoules\": 6870.324433225, \"energy_joules\": 6.870324433225}}, \"1920000\": {\"active\": {\"elapsed_sec\": 16.713849061, \"elapsed_ns\": 16713849061, \"power_samples\": [542.0519661519997, 571.2880471180001, 597.5507987619997, 557.1964003899998, 516.7296377639998, 512.7766965460003, 546.8364510519998, 573.0990833799999, 585.155948286, 546.8364510519998, 512.4564472780003, 520.3562683239998, 556.7589171740001, 591.1297670259996, 542.560401618, 582.9064817689998], \"power_mean\": 553.4806102306874, \"energy_millijoules\": 9250.791377585881, \"energy_joules\": 9.250791377585882, \"coremark_score\": 14971.852917, \"coremarks_per_mhz\": 7.7978400609375, \"ulpmark_cm_score\": 27.024714945548894}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1399.1870112360002, 1429.52416494, 1395.19950912, 1356.6377474279998], \"power_mean\": 1395.137108181, \"energy_millijoules\": 6975.685540905, \"energy_joules\": 6.975685540905}}, \"2016000\": {\"active\": {\"elapsed_sec\": 15.954696798, \"elapsed_ns\": 15954696798, \"power_samples\": [279.7336000419998, 570.8467762749997, 582.6846423369998, 635.0657506239997, 641.1489184689999, 606.9051008599997, 570.626366683, 590.6841820339998, 636.9816370759997, 657.1409547160001, 610.6241824519998, 663.219254332, 626.9562442749998, 580.3255446849996, 667.0437585839998], \"power_mean\": 594.6657942295998, \"energy_millijoules\": 9487.712443075123, \"energy_joules\": 9.487712443075123, \"coremark_score\": 15683.814304, \"coremarks_per_mhz\": 7.779669793650793, \"ulpmark_cm_score\": 26.34987110960236}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1390.8897273599998, 1354.2875852999998, 1352.330353504, 1399.0230739800002], \"power_mean\": 1374.1326850359999, \"energy_millijoules\": 6870.66342518, \"energy_joules\": 6.87066342518}}, \"2131200\": {\"active\": {\"elapsed_sec\": 15.06720421, \"elapsed_ns\": 15067204210, \"power_samples\": [721.2986738320001, 678.9739544880001, 660.8464558359999, 676.827660764, 709.0191494370001, 741.079008741, 706.8755769849997, 678.7406773119999, 738.9338873769998, 700.6780375580001, 662.4089832520001, 736.7890041570001, 710.5702364529998, 664.3225946709997, 668.2568455469998], \"power_mean\": 697.0413830939999, \"energy_millijoules\": 10502.464861898137, \"energy_joules\": 10.502464861898137, \"coremark_score\": 16609.088493, \"coremarks_per_mhz\": 7.793303534628379, \"ulpmark_cm_score\": 23.8039358652819}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1384.626074469, 1354.2875852999998, 1348.1865342, 1382.675033145], \"power_mean\": 1367.4438067785, \"energy_millijoules\": 6837.219033892499, \"energy_joules\": 6.8372190338925}}, \"2227200\": {\"active\": {\"elapsed_sec\": 14.422690187, \"elapsed_ns\": 14422690187, \"power_samples\": [785.2830373069999, 815.047840552, 800.8718564519997, 762.6350999439999, 734.2797957759999, 732.3754572719997, 782.8894811979997, 802.6477616520003, 816.9469369599999, 786.5728002160001, 752.5099832860003, 713.7919962519998, 766.3219933180001, 760.2463365279998], \"power_mean\": 772.3157411937857, \"energy_millijoules\": 11138.870661781246, \"energy_joules\": 11.138870661781246, \"coremark_score\": 17352.675783, \"coremarks_per_mhz\": 7.791251698545259, \"ulpmark_cm_score\": 22.443927000407584}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1352.013115742, 1364.1331270680002, 1394.62706248, 1422.7555862520003], \"power_mean\": 1383.3822228855001, \"energy_millijoules\": 6916.911114427501, \"energy_joules\": 6.916911114427501}}, \"2323200\": {\"active\": {\"elapsed_sec\": 13.826228825, \"elapsed_ns\": 13826228825, \"power_samples\": [896.7783320439996, 852.7611914469996, 890.8356924039997, 886.5313383639998, 850.3572968589999, 826.0661142789997, 827.9670542360002, 866.0367803519996, 902.4608221160004, 902.4608221160004, 858.0703704920004, 823.9173814200001, 817.4700099079998], \"power_mean\": 861.6702466182307, \"energy_millijoules\": 11913.65000143784, \"energy_joules\": 11.91365000143784, \"coremark_score\": 18100.202722, \"coremarks_per_mhz\": 7.791065221246558, \"ulpmark_cm_score\": 20.98433309437728}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1402.4296739310003, 1369.9115442870002, 1353.7318270449998, 1372.0233064590002], \"power_mean\": 1374.5240879305002, \"energy_millijoules\": 6872.620439652501, \"energy_joules\": 6.872620439652501}}, \"2419200\": {\"active\": {\"elapsed_sec\": 13.282339761, \"elapsed_ns\": 13282339761, \"power_samples\": [930.0006521019998, 972.2127317439997, 939.8487621450001, 921.6473948830001, 953.7410625669997, 984.0800039420003, 1007.801269846, 1019.7969721739994, 987.716565472, 963.587524498, 931.0994189279997, 953.0751181779999, 991.3563912419997], \"power_mean\": 965.8433744400768, \"energy_millijoules\": 12828.659855223843, \"energy_joules\": 12.828659855223844, \"coremark_score\": 18845.168099, \"coremarks_per_mhz\": 7.789834697007275, \"ulpmark_cm_score\": 19.48761622970304}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1416.158811382, 1434.278371558, 1412.2631615500002, 1393.89115536], \"power_mean\": 1414.1478749625, \"energy_millijoules\": 7070.7393748125005, \"energy_joules\": 7.070739374812501}}}}, \"7\": {\"freqs\": {\"825600\": {\"active\": {\"elapsed_sec\": 77.730540139, \"elapsed_ns\": 77730540139, \"power_samples\": [189.2684433720001, 201.45337577199984, 213.54919107599972, 181.3213202009997, 156.95274902999995, 136.7281164789997, 144.7663838599999, 183.35099467299983, 197.47850919999996, 203.57133285999976, 169.22561024799984, 157.1243112860002, 136.8127061549999, 179.20419714399986, 165.24812140699987, 130.80304086599995, 213.63830817199982, 189.61955177000004, 165.24812140699987, 138.84261877099993, 128.77300917799994, 146.96642889199984, 175.2281376159999, 203.74873814799957, 213.63830817199982, 189.35613062800007, 159.06832370199982, 136.8127061549999, 145.1066486919999, 161.0981172459999, 187.589639154, 209.75339948500005, 199.5122230359998, 169.31210629600014, 146.96642889199984, 207.54584197200006, 171.1687886719999, 149.00050116499983, 191.30203789200004, 215.84658206999984, 203.6602168999998, 181.14654133199997, 118.53101364000008, 136.89729583099984, 130.71880865000003, 155.09439867000015, 187.41450278599996, 207.72372501299992, 207.63460160800014, 175.2281376159999, 151.03041378099988, 128.68889603399998, 132.66436997799974, 171.25540379199992, 169.31210629600014, 199.68915105999963, 201.45337577199984, 169.05226365999988, 195.36090957199985, 217.6971798520001, 128.6047828899998, 150.77379267999981, 164.98899491199995, 183.17597717199988, 215.7569801799998, 185.2970208040001, 163.04593161499997, 134.95173474700005, 130.71880865000003, 161.01209797399974, 187.2390075320002, 207.54584197200006, 177.2619712569997, 151.03041378099988, 132.74872126599985, 148.8298919729998, 179.11710549200006], \"power_mean\": 171.48511022794796, \"energy_millijoules\": 13329.630243814348, \"energy_joules\": 13.329630243814348, \"coremark_score\": 3216.882198, \"coremarks_per_mhz\": 3.896417390988372, \"ulpmark_cm_score\": 18.75520891631733}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1436.1402960300002, 1391.6152407759998, 1365.3639951280002, 1355.1272296739999], \"power_mean\": 1387.061690402, \"energy_millijoules\": 6935.30845201, \"energy_joules\": 6.93530845201}}, \"940800\": {\"active\": {\"elapsed_sec\": 34.118770013, \"elapsed_ns\": 34118770013, \"power_samples\": [207.3683226999999, 239.3984182029999, 267.8154719589995, 275.841226042, 239.3984182029999, 206.92416075099982, 217.2504036519997, 253.33244581299982, 285.8051411199999, 263.4819814509997, 247.60812486199984, 209.0416413070002, 221.04309400099987, 247.24355567799967, 275.841226042, 223.341082552, 249.4584797729999, 283.87018354399993, 207.19080342799998, 235.25078688699978, 257.5765676039998, 279.6232023169996, 285.8051411199999, 255.5480848279999, 229.16118183199978, 212.92500616999973, 239.21708667500002, 259.42133594799975, 298.07288595499995, 257.5765676039998, 223.07157677700002, 214.95348894599965, 227.04274796799996, 249.0934333250002], \"power_mean\": 245.45862573638223, \"energy_millijoules\": 8374.74639920667, \"energy_joules\": 8.37474639920667, \"coremark_score\": 7330.733367, \"coremarks_per_mhz\": 7.792021010841837, \"ulpmark_cm_score\": 29.8516501972743}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1403.8058954659998, 1403.8058954659998, 1432.1639885820002, 1401.9360963860001], \"power_mean\": 1410.427968975, \"energy_millijoules\": 7052.139844875001, \"energy_joules\": 7.052139844875001}}, \"1056000\": {\"active\": {\"elapsed_sec\": 30.453145274, \"elapsed_ns\": 30453145274, \"power_samples\": [183.17597717199988, 293.7345105669999, 269.3859654580001, 245.30633426999998, 238.9450893830001, 265.2332041259999, 289.5803137800001, 309.7768138539998, 309.68197813000006, 285.43113379600004, 263.2053171979999, 238.85405203799996, 232.7662357480001, 271.22844827999984, 301.4728687840002, 236.91708289500002, 263.02112599, 293.452477822, 232.856914168, 254.997994908, 275.283983992, 299.539579192, 297.5077753899998, 273.1635249279998, 246.9697552560001, 232.67592744399985, 259.14538783600005, 279.2506262979998, 309.5871424060001, 311.5197173219999], \"power_mean\": 268.7889086143666, \"energy_millijoules\": 8185.467682073217, \"energy_joules\": 8.185467682073217, \"coremark_score\": 8213.687288, \"coremarks_per_mhz\": 7.778112962121211, \"ulpmark_cm_score\": 30.54193232568966}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1427.8480214770002, 1448.0746794719998, 1362.9333240360002, 1389.2588834879998], \"power_mean\": 1407.0287271182501, \"energy_millijoules\": 7035.14363559125, \"energy_joules\": 7.03514363559125}}, \"1171200\": {\"active\": {\"elapsed_sec\": 27.433753723, \"elapsed_ns\": 27433753723, \"power_samples\": [287.27185125200003, 273.1635249279998, 258.86981618799996, 266.7994223139999, 283.21679182799994, 313.3611342680001, 333.6453213540001, 329.4904015899997, 303.02761996999993, 287.08480085199994, 266.7070885659998, 252.60007276600004, 276.94418872599977, 303.21696370400014, 325.3363531329999, 335.38294492299997, 317.4154792600002, 295.0097326929997, 272.88545130399984, 266.7070885659998, 305.1533049669997, 268.73841510400007, 258.5942445400001, 337.40975971500006, 307.2754627380002, 299.0679923619998, 272.79276009600017], \"power_mean\": 292.48770324840734, \"energy_millijoules\": 8024.035617922714, \"energy_joules\": 8.024035617922713, \"coremark_score\": 9118.0976, \"coremarks_per_mhz\": 7.785260928961748, \"ulpmark_cm_score\": 31.15639210793044}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1380.891694644, 1399.248430825, 1413.2982872400003, 1360.823468236], \"power_mean\": 1388.5654702362501, \"energy_millijoules\": 6942.82735118125, \"energy_joules\": 6.942827351181251}}, \"1286400\": {\"active\": {\"elapsed_sec\": 24.955643007, \"elapsed_ns\": 24955643007, \"power_samples\": [312.9804481719998, 286.8973671519998, 288.8307758159999, 308.9229036669997, 319.0646883969996, 357.39728208199995, 296.75442321699984, 318.9692568249998, 353.1449013959998, 290.67433605699966, 292.70103177699957, 308.8280679429997, 326.9838081339999, 341.17731632000005, 365.3105192359999, 347.3579411809999, 329.0102657099999, 309.0177393910001, 288.6434872719997, 292.4193837969997, 318.7783936809999, 349.09246350800004, 363.18624767200004, 361.3522639299997], \"power_mean\": 321.97897134720813, \"energy_millijoules\": 8035.192264702007, \"energy_joules\": 8.035192264702008, \"coremark_score\": 10023.655828, \"coremarks_per_mhz\": 7.79202101057214, \"ulpmark_cm_score\": 31.113132301541945}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1408.9913649160003, 1439.359705464, 1431.2397095519998, 1417.11183736], \"power_mean\": 1424.175654323, \"energy_millijoules\": 7120.878271615, \"energy_joules\": 7.120878271615}}, \"1401600\": {\"active\": {\"elapsed_sec\": 22.906696657, \"elapsed_ns\": 22906696657, \"power_samples\": [355.17527242799974, 336.9268456679997, 310.56939104399976, 326.79159885999957, 360.9601293479998, 373.02495420399987, 403.2268279319999, 294.633725765, 346.77494589599996, 330.7478904999998, 322.44799973599993, 348.80080762399984, 364.7214890839998, 396.9497481120002, 370.9006823960001, 338.6631962719998, 306.422236504, 368.973468892, 346.67784633999986, 322.44799973599993, 403.1263926519998, 382.9634815639997], \"power_mean\": 350.54213320713626, \"energy_millijoules\": 8029.762310873557, \"energy_joules\": 8.029762310873558, \"coremark_score\": 10920.84571, \"coremarks_per_mhz\": 7.791699279394978, \"ulpmark_cm_score\": 31.134171887187843}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1402.8176450079998, 1380.4866168239998, 1352.3819426, 1435.044586794], \"power_mean\": 1392.6826978064998, \"energy_millijoules\": 6963.4134890324995, \"energy_joules\": 6.963413489032499}}, \"1497600\": {\"active\": {\"elapsed_sec\": 21.446657657, \"elapsed_ns\": 21446657657, \"power_samples\": [372.72900953199996, 354.68739198799994, 352.6576175360001, 379.0073276000003, 388.7407830339996, 417.10943791, 435.04118389899986, 412.958113166, 392.6953868649998, 416.80563009399975, 433.0163943069997, 354.3942638220001, 356.5176252519998, 372.5313087879997, 402.62380463199975, 436.9635127669999, 412.7560509099999, 384.59112627399986, 362.499477477, 358.34698134999985, 376.38797907100025], \"power_mean\": 389.19335267971417, \"energy_millijoules\": 8346.896597301893, \"energy_joules\": 8.346896597301892, \"coremark_score\": 11664.800299, \"coremarks_per_mhz\": 7.788995926148505, \"ulpmark_cm_score\": 29.951251592215925}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1374.0726174819997, 1402.5703293419997, 1426.8422667470002, 1426.674755379], \"power_mean\": 1407.5399922375, \"energy_millijoules\": 7037.6999611875, \"energy_joules\": 7.0376999611875}}, \"1612800\": {\"active\": {\"elapsed_sec\": 19.901693702, \"elapsed_ns\": 19901693702, \"power_samples\": [447.19821976899993, 471.08976945599966, 420.8593584369996, 452.85850956599984, 456.91128337999976, 428.6562954200001, 388.2427765939999, 388.44197916999974, 420.7578507769997, 442.7327973040001, 466.8285000820001, 436.75817139800006, 408.399531262, 388.1427671040001, 416.40013796799985, 456.70397902800005, 462.9883700099997, 432.5048624620001, 398.1730262599997], \"power_mean\": 430.77095712878935, \"energy_millijoules\": 8573.07164449454, \"energy_joules\": 8.57307164449454, \"coremark_score\": 12571.026299, \"coremarks_per_mhz\": 7.79453515562996, \"ulpmark_cm_score\": 29.161076725696695}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1355.7242165930002, 1378.048686786, 1396.234460943, 1432.426848212], \"power_mean\": 1390.6085531335, \"energy_millijoules\": 6953.0427656675, \"energy_joules\": 6.9530427656675}}, \"1708800\": {\"active\": {\"elapsed_sec\": 18.789421038, \"elapsed_ns\": 18789421038, \"power_samples\": [457.01493555599995, 492.94646821000015, 506.80128925500003, 480.58456042299986, 456.4966746759999, 418.22582179000005, 436.24586777800005, 450.5243126019998, 492.6286445410001, 512.7688840560002, 480.58456042299986, 452.2376030109997, 426.22440305199984, 442.3215245680001, 458.20877216799977, 498.70322748600006, 432.1981947219999, 458.3125434159997], \"power_mean\": 464.0571270962777, \"energy_millijoules\": 8719.364746696641, \"energy_joules\": 8.719364746696641, \"coremark_score\": 13315.579228, \"coremarks_per_mhz\": 7.792356757958802, \"ulpmark_cm_score\": 28.671813516542393}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1391.8465595199998, 1422.196181112, 1365.713984935, 1351.4294464450002], \"power_mean\": 1382.796543003, \"energy_millijoules\": 6913.9827150149995, \"energy_joules\": 6.913982715014999}}, \"1804800\": {\"active\": {\"elapsed_sec\": 17.799380732, \"elapsed_ns\": 17799380732, \"power_samples\": [338.276705152, 544.8325421880002, 522.5670778009999, 480.2693151069998, 472.06760116199985, 516.3866984079998, 552.6001371759999, 522.1363018920001, 471.9629959219999, 466.0983383769999, 512.126516716, 441.8070122619997, 485.92099407599994, 530.3386097319999, 467.81262375399956, 485.81555484399996, 524.0552691079997], \"power_mean\": 490.2984878633528, \"energy_millijoules\": 8727.009457803697, \"energy_joules\": 8.727009457803696, \"coremark_score\": 14057.579847, \"coremarks_per_mhz\": 7.788995925864362, \"ulpmark_cm_score\": 28.64669749801289}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1431.837711478, 1407.6677504140002, 1381.622430342, 1365.553293178], \"power_mean\": 1396.6702963530001, \"energy_millijoules\": 6983.351481765001, \"energy_joules\": 6.983351481765001}}, \"1920000\": {\"active\": {\"elapsed_sec\": 16.724405573, \"elapsed_ns\": 16724405573, \"power_samples\": [582.4047429559996, 542.1564426520001, 507.86358277600016, 511.6985641399997, 542.265217852, 578.3565004679999, 516.0645800920001, 558.013397146, 589.9384536890002, 511.805552284, 547.8996042869999, 576.112395607, 582.0708130779997, 537.8906497639998, 507.43614625300006, 517.3393912029999], \"power_mean\": 544.3322521404375, \"energy_millijoules\": 9103.633351261173, \"energy_joules\": 9.103633351261173, \"coremark_score\": 14962.892028, \"coremarks_per_mhz\": 7.79317293125, \"ulpmark_cm_score\": 27.46156291162212}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1447.89135708, 1395.4141027889998, 1361.253534264, 1381.379026434], \"power_mean\": 1396.48450514175, \"energy_millijoules\": 6982.422525708751, \"energy_joules\": 6.982422525708751}}, \"2016000\": {\"active\": {\"elapsed_sec\": 15.926766795, \"elapsed_ns\": 15926766795, \"power_samples\": [567.9106850799997, 545.550633611, 571.7329441040004, 561.6215336610001, 539.3731168280003, 585.6686116219998, 579.600823347, 551.505980895, 555.5530304660001, 591.6241881820001, 615.8897639919999, 641.95111288, 605.6675551019998, 577.4682335619998, 551.2872392869999], \"power_mean\": 576.1603635079333, \"energy_millijoules\": 9176.371746113282, \"energy_joules\": 9.176371746113283, \"coremark_score\": 15711.41277, \"coremarks_per_mhz\": 7.793359508928572, \"ulpmark_cm_score\": 27.243883194454202}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1360.7735475240002, 1391.1106523999997, 1423.3912760210003, 1443.6683095120002], \"power_mean\": 1404.7359463642501, \"energy_millijoules\": 7023.67973182125, \"energy_joules\": 7.02367973182125}}, \"2131200\": {\"active\": {\"elapsed_sec\": 15.074554679, \"elapsed_ns\": 15074554679, \"power_samples\": [688.2248842819997, 665.9815058739996, 706.1816527660001, 705.9440774949996, 641.492184016, 667.8899849919999, 697.8593664339999, 681.572829192, 663.612282437, 619.368988962, 625.434631012, 659.3401493889999, 693.4614516969998, 701.667178639, 659.3401493889999], \"power_mean\": 671.8247544383999, \"energy_millijoules\": 10127.458995487406, \"energy_joules\": 10.127458995487407, \"coremark_score\": 16601.367953, \"coremarks_per_mhz\": 7.789680908877629, \"ulpmark_cm_score\": 24.68536284485526}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1380.891886099, 1356.6360598349997, 1389.002345512, 1405.223264338], \"power_mean\": 1382.938388946, \"energy_millijoules\": 6914.691944730001, \"energy_joules\": 6.91469194473}}, \"2227200\": {\"active\": {\"elapsed_sec\": 14.418939561, \"elapsed_ns\": 14418939561, \"power_samples\": [653.3913857799996, 705.2328091989998, 713.4336823159999, 681.3385989519998, 685.260816968, 713.1951520279997, 751.2229927719998, 751.3442778519995, 717.1186480480001, 680.8696584919999, 687.0496770369998, 725.1995448999999, 749.078738164, 744.9201453919998], \"power_mean\": 711.3325805642855, \"energy_millijoules\": 10256.661486926596, \"energy_joules\": 10.256661486926596, \"coremark_score\": 17356.289919, \"coremarks_per_mhz\": 7.792874424838362, \"ulpmark_cm_score\": 24.374402949600746}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1443.2438215359998, 1415.1146321599997, 1374.5653407519997, 1360.453774788], \"power_mean\": 1398.3443923089999, \"energy_millijoules\": 6991.721961544999, \"energy_joules\": 6.991721961544999}}, \"2323200\": {\"active\": {\"elapsed_sec\": 13.820498304, \"elapsed_ns\": 13820498304, \"power_samples\": [797.4356534519995, 767.1384040599999, 718.8990804239997, 694.7771981719998, 759.0594133359998, 742.8972951799999, 716.880128776, 716.6416095039999, 740.5160193520001, 774.7260331509995, 694.4233508359998, 732.6793782519999, 778.7625066069998], \"power_mean\": 741.1412362386152, \"energy_millijoules\": 10242.941198460245, \"energy_joules\": 10.242941198460246, \"coremark_score\": 18108.068956, \"coremarks_per_mhz\": 7.794451169077135, \"ulpmark_cm_score\": 24.40705214998021}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1434.70996977, 1434.8790180479998, 1430.996235312, 1408.7006127600002], \"power_mean\": 1427.3214589725, \"energy_millijoules\": 7136.607294862501, \"energy_joules\": 7.1366072948625}}, \"2419200\": {\"active\": {\"elapsed_sec\": 13.282610334, \"elapsed_ns\": 13282610334, \"power_samples\": [790.8801984369995, 854.9910743520002, 808.6825158219997, 768.5448300199998, 776.3757686349998, 820.2915945500001, 862.5538993660005, 824.581920412, 782.3103509619998, 754.0451657820001, 804.393108082, 840.2247314799995, 850.3188215079997], \"power_mean\": 810.6303061083076, \"energy_millijoules\": 10767.28648096779, \"energy_joules\": 10.76728648096779, \"coremark_score\": 18842.327404, \"coremarks_per_mhz\": 7.788660467923281, \"ulpmark_cm_score\": 23.21847760268095}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1394.183901495, 1364.0291860840002, 1398.234433255, 1424.495734551], \"power_mean\": 1395.23581384625, \"energy_millijoules\": 6976.17906923125, \"energy_joules\": 6.976179069231249}}, \"2534400\": {\"active\": {\"elapsed_sec\": 12.67697246, \"elapsed_ns\": 12676972460, \"power_samples\": [834.5479705339997, 876.1674616829998, 850.0643373160003, 851.9533806239999, 906.0443627470002, 940.2120642519997, 890.1637507449998, 853.9701875120002, 859.6412278770001, 905.9137849269998, 945.8657607839998, 883.7217528519998], \"power_mean\": 883.1888368210832, \"energy_millijoules\": 11196.160561360306, \"energy_joules\": 11.196160561360307, \"coremark_score\": 19742.557056, \"coremarks_per_mhz\": 7.789834696969697, \"ulpmark_cm_score\": 22.3290831379097}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1363.627949611, 1397.9878129390002, 1438.510882637, 1428.466183986], \"power_mean\": 1407.14820729325, \"energy_millijoules\": 7035.74103646625, \"energy_joules\": 7.03574103646625}}, \"2649600\": {\"active\": {\"elapsed_sec\": 12.125038239, \"elapsed_ns\": 12125038239, \"power_samples\": [946.7970307730004, 937.6652539159998, 945.4668786119998, 983.3785553959995, 1033.373749527, 1005.1527522020003, 965.0982679839997, 929.0696771320002, 966.9791356399999, 1009.1825537220004, 1039.1454601420003, 982.972328262], \"power_mean\": 978.6901369423333, \"energy_millijoules\": 11866.655334557938, \"energy_joules\": 11.866655334557938, \"coremark_score\": 20644.095789, \"coremarks_per_mhz\": 7.791400886548913, \"ulpmark_cm_score\": 21.06743584874778}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1383.7237807049999, 1420.0237045640001, 1440.1119003939998, 1400.1815231819999], \"power_mean\": 1411.01022721125, \"energy_millijoules\": 7055.05113605625, \"energy_joules\": 7.05505113605625}}, \"2745600\": {\"active\": {\"elapsed_sec\": 11.701712728, \"elapsed_ns\": 11701712728, \"power_samples\": [695.3674271299999, 1085.0871181259997, 1034.8394906380001, 1062.6374008319997, 1122.8052928960003, 1082.7863228839994, 1048.8089913399997, 1038.4520908719994, 1062.3574205920002, 1128.2746288549995, 1096.3249833520001], \"power_mean\": 1041.612833410636, \"energy_millijoules\": 12188.654150369384, \"energy_joules\": 12.188654150369384, \"coremark_score\": 21391.289467, \"coremarks_per_mhz\": 7.791116501675408, \"ulpmark_cm_score\": 20.510878142557157}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1387.532341072, 1423.8253458180002, 1450.071151646, 1405.7646733420002], \"power_mean\": 1416.7983779695, \"energy_millijoules\": 7083.991889847501, \"energy_joules\": 7.083991889847501}}, \"2841600\": {\"active\": {\"elapsed_sec\": 11.302019251, \"elapsed_ns\": 11302019251, \"power_samples\": [142.53435049200016, 1152.156525618, 1132.017138112, 1141.6525648129998, 1233.5411852119998, 1191.4088062839999, 1139.4951717129995, 1147.25902462, 1187.232627532, 1223.1728548120002, 1173.1392564919995], \"power_mean\": 1078.5099550636362, \"energy_millijoules\": 12189.340274524362, \"energy_joules\": 12.189340274524362, \"coremark_score\": 22147.413182, \"coremarks_per_mhz\": 7.793993940737613, \"ulpmark_cm_score\": 20.509723608462902}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1369.138931226, 1399.4402509880001, 1439.773065402, 1439.773065402], \"power_mean\": 1412.0313282545, \"energy_millijoules\": 7060.156641272501, \"energy_joules\": 7.060156641272501}}, \"2956800\": {\"active\": {\"elapsed_sec\": 10.865465718, \"elapsed_ns\": 10865465718, \"power_samples\": [1247.029656472, 1282.4945041589997, 1256.788866567, 1260.3601673659994, 1308.0354504140003, 1339.908379054, 1330.16453974, 1296.117588502, 1248.1342049440002, 1283.891629254], \"power_mean\": 1285.2924986471999, \"energy_millijoules\": 13965.30158165371, \"energy_joules\": 13.96530158165371, \"coremark_score\": 23039.351212, \"coremarks_per_mhz\": 7.7919883698593075, \"ulpmark_cm_score\": 17.901511008428656}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1390.930221377, 1419.1878470360002, 1433.444009046, 1401.2169901800003], \"power_mean\": 1411.1947669097501, \"energy_millijoules\": 7055.97383454875, \"energy_joules\": 7.05597383454875}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm8150ac/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 cpu7 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nBaseline power usage: 1305 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 403 499 576 672 768 844 940 1036 1113 1209 1305 1382 1478 1555 1632 1708 1785\n\n 300:  1114     3.7 C/MHz     80 mW   18.0 J   13.9 I/mJ   224.5 s\n 403:  1497     3.7 C/MHz     82 mW   13.8 J   18.1 I/mJ   167.0 s\n 499:  1854     3.7 C/MHz     92 mW   12.5 J   20.0 I/mJ   134.9 s\n 576:  2139     3.7 C/MHz    101 mW   11.8 J   21.3 I/mJ   116.9 s\n 672:  2495     3.7 C/MHz    101 mW   10.1 J   24.7 I/mJ   100.2 s\n 768:  2852     3.7 C/MHz    136 mW   11.9 J   21.0 I/mJ    87.7 s\n 844:  3137     3.7 C/MHz    111 mW    8.8 J   28.3 I/mJ    79.7 s\n 940:  3494     3.7 C/MHz    118 mW    8.5 J   29.5 I/mJ    71.6 s\n1036:  3850     3.7 C/MHz    124 mW    8.1 J   31.0 I/mJ    64.9 s\n1113:  4135     3.7 C/MHz    126 mW    7.6 J   32.8 I/mJ    60.5 s\n1209:  4491     3.7 C/MHz    133 mW    7.4 J   33.7 I/mJ    55.7 s\n1305:  4848     3.7 C/MHz    150 mW    7.7 J   32.4 I/mJ    51.6 s\n1382:  5133     3.7 C/MHz    149 mW    7.3 J   34.4 I/mJ    48.7 s\n1478:  5490     3.7 C/MHz    154 mW    7.0 J   35.7 I/mJ    45.5 s\n1555:  5775     3.7 C/MHz    166 mW    7.2 J   34.8 I/mJ    43.3 s\n1632:  6060     3.7 C/MHz    170 mW    7.0 J   35.6 I/mJ    41.3 s\n1708:  6345     3.7 C/MHz    178 mW    7.0 J   35.7 I/mJ    39.4 s\n1785:  6630     3.7 C/MHz    187 mW    7.0 J   35.5 I/mJ    37.7 s\n\n\n===== CPU 4 =====\nFrequencies: 710 825 940 1056 1171 1286 1401 1497 1612 1708 1804 1920 2016 2131 2227 2323 2419\n\n 710:  2767     3.9 C/MHz    139 mW   12.6 J   19.9 I/mJ    90.4 s\n 825:  6437     7.8 C/MHz    192 mW    7.4 J   33.6 I/mJ    38.9 s\n 940:  7331     7.8 C/MHz    218 mW    7.4 J   33.6 I/mJ    34.1 s\n1056:  8231     7.8 C/MHz    245 mW    7.4 J   33.6 I/mJ    30.4 s\n1171:  9128     7.8 C/MHz    278 mW    7.6 J   32.8 I/mJ    27.4 s\n1286: 10021     7.8 C/MHz    313 mW    7.8 J   32.0 I/mJ    25.0 s\n1401: 10926     7.8 C/MHz    339 mW    7.8 J   32.2 I/mJ    22.9 s\n1497: 11669     7.8 C/MHz    380 mW    8.1 J   30.7 I/mJ    21.4 s\n1612: 12570     7.8 C/MHz    404 mW    8.0 J   31.1 I/mJ    19.9 s\n1708: 13320     7.8 C/MHz    443 mW    8.3 J   30.0 I/mJ    18.8 s\n1804: 14067     7.8 C/MHz    511 mW    9.1 J   27.5 I/mJ    17.8 s\n1920: 14972     7.8 C/MHz    553 mW    9.3 J   27.0 I/mJ    16.7 s\n2016: 15684     7.8 C/MHz    595 mW    9.5 J   26.3 I/mJ    16.0 s\n2131: 16609     7.8 C/MHz    697 mW   10.5 J   23.8 I/mJ    15.1 s\n2227: 17353     7.8 C/MHz    772 mW   11.1 J   22.4 I/mJ    14.4 s\n2323: 18100     7.8 C/MHz    862 mW   11.9 J   21.0 I/mJ    13.8 s\n2419: 18845     7.8 C/MHz    966 mW   12.8 J   19.5 I/mJ    13.3 s\n\n\n===== CPU 7 =====\nFrequencies: 825 940 1056 1171 1286 1401 1497 1612 1708 1804 1920 2016 2131 2227 2323 2419 2534 2649 2745 2841 2956\n\n 825:  3217     3.9 C/MHz    171 mW   13.3 J   18.8 I/mJ    77.7 s\n 940:  7331     7.8 C/MHz    245 mW    8.4 J   29.9 I/mJ    34.1 s\n1056:  8214     7.8 C/MHz    269 mW    8.2 J   30.5 I/mJ    30.5 s\n1171:  9118     7.8 C/MHz    292 mW    8.0 J   31.2 I/mJ    27.4 s\n1286: 10024     7.8 C/MHz    322 mW    8.0 J   31.1 I/mJ    25.0 s\n1401: 10921     7.8 C/MHz    351 mW    8.0 J   31.1 I/mJ    22.9 s\n1497: 11665     7.8 C/MHz    389 mW    8.3 J   30.0 I/mJ    21.4 s\n1612: 12571     7.8 C/MHz    431 mW    8.6 J   29.2 I/mJ    19.9 s\n1708: 13316     7.8 C/MHz    464 mW    8.7 J   28.7 I/mJ    18.8 s\n1804: 14058     7.8 C/MHz    490 mW    8.7 J   28.6 I/mJ    17.8 s\n1920: 14963     7.8 C/MHz    544 mW    9.1 J   27.5 I/mJ    16.7 s\n2016: 15711     7.8 C/MHz    576 mW    9.2 J   27.2 I/mJ    15.9 s\n2131: 16601     7.8 C/MHz    672 mW   10.1 J   24.7 I/mJ    15.1 s\n2227: 17356     7.8 C/MHz    711 mW   10.3 J   24.4 I/mJ    14.4 s\n2323: 18108     7.8 C/MHz    741 mW   10.2 J   24.4 I/mJ    13.8 s\n2419: 18842     7.8 C/MHz    811 mW   10.8 J   23.2 I/mJ    13.3 s\n2534: 19743     7.8 C/MHz    883 mW   11.2 J   22.3 I/mJ    12.7 s\n2649: 20644     7.8 C/MHz    979 mW   11.9 J   21.1 I/mJ    12.1 s\n2745: 21391     7.8 C/MHz   1042 mW   12.2 J   20.5 I/mJ    11.7 s\n2841: 22147     7.8 C/MHz   1079 mW   12.2 J   20.5 I/mJ    11.3 s\n2956: 23039     7.8 C/MHz   1285 mW   14.0 J   17.9 I/mJ    10.9 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm8150ac/main/versions.txt",
    "content": "Kernel: Linux version 4.14.117-proton+ (kdrag0n@pinwheel) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project dcc06597b1d61d35c7246d3ab2d7a807134aaa45)) #42 SMP PREEMPT Sat Dec 5 16:21:57 PST 2020\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm8150ac/new/cmdline.txt",
    "content": "console=tty0 loglevel=0 isolcpus=1-7 rcupdate.rcu_expedited=1 rcu_nocbs=0-7 cgroup.memory=nokmem,nosocket printk.devkmsg=on console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0xa90000 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 swiotlb=2048 loop.max_part=7 androidboot.usbcontroller=a600000.dwc3 buildvariant=userdebug androidboot.selinux=permissive androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=63b99bbc-dc54-bb6e-1bd1-79aee0e879ab androidboot.bootdevice=1d84000.ufshc androidboot.serialno=REDACTED androidboot.baseband=msm msm_drm.dsi_display0=dsi_r66451_fhd_dsc_cmd_dim_display: androidboot.slot_suffix=_a skip_initramfs rootwait ro init=/init  androidboot.asus.authorized=0 androidboot.ST.SDP=0 androidboot.id.prj=2 androidboot.id.stage=7 androidboot.id.rf=6 androidboot.id.cpu=0 androidboot.id.sku=7 androidboot.id.feature=6 androidboot.id.jtag=REDACTED androidboot.bootcount=591 SB=Y androidboot.fused=1 androidboot.pre-ftm=0  LCD=REDACTED androidboot.rawdump_en=1 P2=37 androidboot.country_code=EU LS=22\n"
  },
  {
    "path": "results/sm8150ac/new/cpufreq_stats/0/time_in_state",
    "content": "300000 152313\n403200 17551\n499200 14340\n576000 12532\n672000 10929\n768000 9626\n844800 8825\n940800 8023\n1036800 7322\n1113600 6920\n1209600 6419\n1305600 6018\n1382400 5717\n1478400 5417\n1555200 5217\n1632000 5016\n1708800 4815\n1785600 4914\n"
  },
  {
    "path": "results/sm8150ac/new/cpufreq_stats/0/total_trans",
    "content": "21\n"
  },
  {
    "path": "results/sm8150ac/new/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    403200    499200    576000    672000    768000    844800    940800   1036800   1113600   1209600   1305600   1382400   1478400   1555200   1632000   1708800   1785600 \n   300000:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   403200:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   499200:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   576000:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   672000:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n   768000:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n   844800:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n   940800:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1036800:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1113600:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1209600:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1305600:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1382400:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1478400:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  1555200:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  1632000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         1 \n  1708800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  1785600:         2         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8150ac/new/cpufreq_stats/4/time_in_state",
    "content": "710400 72510\n825600 4725\n940800 4324\n1056000 3922\n1171200 3621\n1286400 3321\n1401600 3120\n1497600 3019\n1612800 2819\n1708800 2719\n1804800 2619\n1920000 2518\n2016000 2418\n2131200 2418\n2227200 2318\n2323200 2218\n2419200 173306\n"
  },
  {
    "path": "results/sm8150ac/new/cpufreq_stats/4/total_trans",
    "content": "19\n"
  },
  {
    "path": "results/sm8150ac/new/cpufreq_stats/4/trans_table",
    "content": "   From  :    To\n         :    710400    825600    940800   1056000   1171200   1286400   1401600   1497600   1612800   1708800   1804800   1920000   2016000   2131200   2227200   2323200   2419200 \n   710400:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   825600:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   940800:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1056000:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1171200:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1286400:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1401600:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1497600:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1612800:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1708800:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1804800:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1920000:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  2016000:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2131200:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2227200:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2323200:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2419200:         2         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8150ac/new/cpufreq_stats/7/time_in_state",
    "content": "825600 8659\n940800 4325\n1056000 3923\n1171200 3623\n1286400 3322\n1401600 3121\n1497600 3020\n1612800 2821\n1708800 2719\n1804800 2620\n1920000 2519\n2016000 2419\n2131200 2419\n2227200 2319\n2323200 2218\n2419200 2218\n2534400 2118\n2649600 2118\n2745600 2018\n2841600 2018\n2956800 231375\n"
  },
  {
    "path": "results/sm8150ac/new/cpufreq_stats/7/total_trans",
    "content": "23\n"
  },
  {
    "path": "results/sm8150ac/new/cpufreq_stats/7/trans_table",
    "content": "   From  :    To\n         :    825600    940800   1056000   1171200   1286400   1401600   1497600   1612800   1708800   1804800   1920000   2016000   2131200   2227200   2323200   2419200   2534400   2649600   2745600   2841600   2956800 \n   825600:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   940800:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1056000:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1171200:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1286400:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1401600:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1497600:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1612800:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1708800:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1804800:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1920000:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  2016000:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  2131200:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  2227200:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  2323200:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  2419200:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  2534400:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2649600:         0         0         0         0         0         0         0  "
  },
  {
    "path": "results/sm8150ac/new/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 14 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 1\nBogoMIPS\t: 38.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 2\nBogoMIPS\t: 38.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 3\nBogoMIPS\t: 38.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 4\nBogoMIPS\t: 38.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nprocessor\t: 5\nBogoMIPS\t: 38.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nprocessor\t: 6\nBogoMIPS\t: 38.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nprocessor\t: 7\nBogoMIPS\t: 38.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x804\nCPU revision\t: 14\n\nHardware\t: Qualcomm Technologies, Inc SM8150\n"
  },
  {
    "path": "results/sm8150ac/new/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. SM8150 v2 MP;\nCompatible: qcom,sm8150-mtp;qcom,sm8150;qcom,mtp;\n"
  },
  {
    "path": "results/sm8150ac/new/kernel.log",
    "content": "[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Booting Linux on physical CPU 0x0\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Linux version 4.14.117-proton+ (kdrag0n@pinwheel) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project dcc06597b1d61d35c7246d3ab2d7a807134aaa45)) #42 SMP PREEMPT Sat Dec 5 16:21:57 PST 2020\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Boot CPU: AArch64 Processor [51df805e]\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Using embedded DTB instead of bootloader DTB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Machine: Qualcomm Technologies, Inc. SM8150 V2 PM8150 Qualcomm Technologies, Inc. SM8150 v2 MP\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: OVERLAP DETECTED!\n               disp_rdump_region (0x000000009c000000--0x000000009e400000) overlaps with cont_splash_region (0x000000009c000000--0x000000009e400000)\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Reserved memory: created CMA memory pool at 0x000000037dc00000, size 36 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Reserved memory: created CMA memory pool at 0x00000000fd400000, size 40 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Reserved memory: created CMA memory pool at 0x00000000fc400000, size 16 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Reserved memory: created CMA memory pool at 0x00000000f2400000, size 160 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Reserved memory: created CMA memory pool at 0x00000000f2000000, size 4 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node cdsp_region, compatible id shared-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Reserved memory: created CMA memory pool at 0x00000000f1000000, size 16 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node user_contig_region, compatible id shared-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Reserved memory: created CMA memory pool at 0x00000000f0000000, size 16 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Reserved memory: created CMA memory pool at 0x00000000ef800000, size 8 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x000000008b700000, size 5 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node camera_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x000000008bc00000, size 1 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node pil_wlan_fw_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x000000008bd80000, size 0 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node pil_npu_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x000000008be00000, size 26 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node pil_adsp_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x000000008d800000, size 150 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node modem_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x0000000096e00000, size 5 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node pil_video_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x0000000097300000, size 20 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node pil_slpi_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x0000000098700000, size 0 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node pil_ipa_fw_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x0000000098710000, size 0 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node pil_ipa_gsi_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x0000000098715000, size 0 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node pil_gpu_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x0000000098800000, size 1 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node pil_spss_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x0000000098900000, size 20 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node cdsp_regions, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x0000000099e00000, size 1 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node ramoops, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x000000009c000000, size 36 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node cont_splash_region, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Reserved memory: created DMA memory pool at 0x000000009e400000, size 20 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Removed memory: created DMA memory pool at 0x00000000a4c00000, size 60 MiB\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)OF: reserved mem: initialized node cdsp_sec_regions, compatible id removed-dma-pool\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)On node 0 totalpages: 3006121\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)  DMA zone: 6011 pages used for memmap\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)  DMA zone: 0 pages reserved\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)  DMA zone: 384681 pages, LIFO batch:31\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)  Normal zone: 40960 pages used for memmap\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)  Normal zone: 2621440 pages, LIFO batch:31\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)psci: probing for conduit method from DT.\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)psci: PSCIv1.1 detected in firmware.\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)psci: Using standard PSCI v0.2 function IDs\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)psci: SMC Calling Convention v1.1\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)random: fast init done\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)random: get_random_bytes called from start_kernel+0x8c/0x464 with crng_init=1\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)percpu: Embedded 21 pages/cpu s55976 r0 d30040 u86016\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)pcpu-alloc: s55976 r0 d30040 u86016 alloc=21*4096[    0.000000] (CPU:0-pid:0:swapper)\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)pcpu-alloc: [    0.000000] (CPU:0-pid:0:swapper)[0] [    0.000000] (CPU:0-pid:0:swapper)0 [    0.000000] (CPU:0-pid:0:swapper)[0] [    0.000000] (CPU:0-pid:0:swapper)1 [    0.000000] (CPU:0-pid:0:swapper)[0] [    0.000000] (CPU:0-pid:0:swapper)2 [    0.000000] (CPU:0-pid:0:swapper)[0] [    0.000000] (CPU:0-pid:0:swapper)3 [    0.000000] (CPU:0-pid:0:swapper)[0] [    0.000000] (CPU:0-pid:0:swapper)4 [    0.000000] (CPU:0-pid:0:swapper)[0] [    0.000000] (CPU:0-pid:0:swapper)5 [    0.000000] (CPU:0-pid:0:swapper)[0] [    0.000000] (CPU:0-pid:0:swapper)6 [    0.000000] (CPU:0-pid:0:swapper)[0] [    0.000000] (CPU:0-pid:0:swapper)7 [    0.000000] (CPU:0-pid:0:swapper)\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Built 1 zonelists, mobility grouping on.  Total pages: 2959150\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Kernel command line: console=tty0 loglevel=0 isolcpus=1-7 rcupdate.rcu_expedited=1 rcu_nocbs=0-7 cgroup.memory=nokmem,nosocket printk.devkmsg=on console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0xa90000 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 swiotlb=2048 loop.max_part=7 androidboot.usbcontroller=a600000.dwc3 buildvariant=userdebug androidboot.selinux=permissive androidboot.verifiedbootstate=orange androidboot.keymaster=1 root=PARTUUID=63b99bbc-dc54-bb6e-1bd1-79aee0e879ab androidboot.bootdevice=1d84000.ufshc androidboot.serialno=REDACTED androidboot.baseband=msm msm_drm.dsi_display0=dsi_r66451_fhd_dsc_cmd_dim_display: androidboot.slot_suffix=_a skip_initramfs rootwait ro init=/init  androidboot.asus.authorized=0 androidboot.ST.SDP=0 androidboot.id.prj=2 androidboot.id.stage=7 androidboot.\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)androidboot.ST.SDP= 0\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Kernel PRJ ID = ZS660KL_PRJ\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)g_Asus_prjID = 3\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)set_hardware_id - g_ASUS_hwID = 3\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Kernel HW ID = ZS660KL_MP\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)g_Asus_hwID = 7\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Kernel SKU ID = 7(SKU8)\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)g_Asus_skuID = 7\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)androidboot.pre-ftm= 0\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)[Display] lcd unique id = 1A0F2C2A\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)[Display] osc p2 = 37\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)androidboot.country_code=EU\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)[Display] lcd stage = 2\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)log_buf_len individual max cpu contribution: 131072 bytes\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)log_buf_len total cpu_extra contributions: 917504 bytes\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)log_buf_len min size: 131072 bytes\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)log_buf_len: 1048576 bytes\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)early log buf free: 119256(90%)\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)PID hash table entries: 4096 (order: 3, 32768 bytes)\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)software IO TLB: mapped [mem 0xef400000-0xef800000] (4MB)\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)Memory: 11428384K/12024484K available (22014K kernel code, 2574K rwdata, 6996K rodata, 6144K init, 8218K bss, 292996K reserved, 303104K cma-reserved)\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper)SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)Preemptible hierarchical RCU implementation.\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)\tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)\tAll grace periods are expedited (rcu_expedited).\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)\tTasks RCU enabled.\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)GICv3: no VLPI support, no direct LPI support\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)GICv3: CPU0: found redistributor 0 region 0:0x0000000017a60000\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)PDC SM8150 initialized\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)NO_HZ: Clearing 0 from nohz_full range for timekeeping\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)\tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] [    0.000000] (CPU:0-pid:0:swapper/0)clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] [    0.000003] (CPU:0-pid:0:swapper/0)sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000022] [    0.000022] (CPU:0-pid:0:swapper/0)clocksource: Switched to clocksource arch_sys_counter\n[    0.002565] [    0.002565] (CPU:0-pid:0:swapper/0)Console: colour dummy device 80x25\n[    0.002586] [    0.002586] (CPU:0-pid:0:swapper/0)console [tty0] enabled\n[    0.002612] [    0.002606] (CPU:0-pid:0:swapper/0)Calibrating delay loop (skipped), value calculated using timer frequency.. [    0.002616] (CPU:0-pid:0:swapper/0)38.00 BogoMIPS (lpj=64000)\n[    0.002625] [    0.002625] (CPU:0-pid:0:swapper/0)pid_max: default: 32768 minimum: 301\n[    0.002730] [    0.002730] (CPU:0-pid:0:swapper/0)Security Framework initialized\n[    0.002745] [    0.002745] (CPU:0-pid:0:swapper/0)SELinux:  Initializing.\n[    0.002813] [    0.002813] (CPU:0-pid:0:swapper/0)SELinux:  Starting in permissive mode\n[    0.002885] [    0.002885] (CPU:0-pid:0:swapper/0)Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.002925] [    0.002925] (CPU:0-pid:0:swapper/0)Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)\n[    0.009229] [    0.009229] (CPU:0-pid:1:swapper/0)ASID allocator initialised with 32768 entries\n[    0.011331] [    0.011331] (CPU:0-pid:1:swapper/0)Hierarchical SRCU implementation.\n[    0.017264] [    0.017264] (CPU:0-pid:1:swapper/0)MSM Memory Dump base table set up\n[    0.017284] [    0.017284] (CPU:0-pid:1:swapper/0)MSM Memory Dump apps data table set up\n[    0.019664] [    0.019664] (CPU:0-pid:1:swapper/0)smp: Bringing up secondary CPUs ...\n[    0.029103] [    0.029103] (CPU:1-pid:0:swapper/1)GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000\n[    0.029156] [    0.029156] (CPU:1-pid:0:swapper/1)CPU1: Booted secondary processor [51df805e]\n[    0.038677] [    0.038677] (CPU:2-pid:0:swapper/2)GICv3: CPU2: found redistributor 200 region 0:0x0000000017aa0000\n[    0.038715] [    0.038715] (CPU:2-pid:0:swapper/2)CPU2: Booted secondary processor [51df805e]\n[    0.048248] [    0.048248] (CPU:3-pid:0:swapper/3)GICv3: CPU3: found redistributor 300 region 0:0x0000000017ac0000\n[    0.048283] [    0.048283] (CPU:3-pid:0:swapper/3)CPU3: Booted secondary processor [51df805e]\n[    0.058347] [    0.058347] (CPU:4-pid:0:swapper/4)CPU features: Unsupported CPU feature variation detected.\n[    0.058399] [    0.058399] (CPU:4-pid:0:swapper/4)GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000\n[    0.058455] [    0.058455] (CPU:4-pid:0:swapper/4)CPU4: Booted secondary processor [51df804e]\n[    0.068333] [    0.068333] (CPU:5-pid:0:swapper/5)GICv3: CPU5: found redistributor 500 region 0:0x0000000017b00000\n[    0.068377] [    0.068377] (CPU:5-pid:0:swapper/5)CPU5: Booted secondary processor [51df804e]\n[    0.078256] [    0.078256] (CPU:6-pid:0:swapper/6)GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000\n[    0.078300] [    0.078300] (CPU:6-pid:0:swapper/6)CPU6: Booted secondary processor [51df804e]\n[    0.088671] [    0.088671] (CPU:7-pid:0:swapper/7)GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000\n[    0.088711] [    0.088711] (CPU:7-pid:0:swapper/7)CPU7: Booted secondary processor [51df804e]\n[    0.088866] [    0.088866] (CPU:0-pid:1:swapper/0)smp: Brought up 1 node, 8 CPUs\n[    0.088877] [    0.088877] (CPU:0-pid:1:swapper/0)SMP: Total of 8 processors activated.\n[    0.088887] [    0.088887] (CPU:0-pid:1:swapper/0)CPU features: detected feature: GIC system register CPU interface\n[    0.088894] [    0.088894] (CPU:0-pid:1:swapper/0)CPU features: detected feature: Privileged Access Never\n[    0.088901] [    0.088901] (CPU:0-pid:1:swapper/0)CPU features: detected feature: User Access Override\n[    0.088909] [    0.088909] (CPU:0-pid:1:swapper/0)CPU features: detected feature: 32-bit EL0 Support\n[    0.088916] [    0.088916] (CPU:0-pid:1:swapper/0)CPU features: detected feature: Kernel page table isolation (KPTI)\n[    0.088924] [    0.088924] (CPU:0-pid:1:swapper/0)CPU features: detected: Hardware dirty bit management\n[    0.155255] [    0.155255] (CPU:0-pid:1:swapper/0)CPU: All CPU(s) started at EL1\n[    0.155302] [    0.155302] (CPU:0-pid:15:migration/0)alternatives: patching kernel code\n[    0.156776] [    0.156776] (CPU:0-pid:1:swapper/0)scm_enable_mem_protection: SCM call failed\n[    0.156847] [    0.156847] (CPU:0-pid:1:swapper/0)CPU0: update max cpu_capacity 602, thermal_cap=1024\n[    0.158843] [    0.158843] (CPU:0-pid:1:swapper/0)devtmpfs: initialized\n[    0.228890] [    0.228890] (CPU:0-pid:1:swapper/0)Registered cp15_barrier emulation handler\n[    0.228908] [    0.228908] (CPU:0-pid:1:swapper/0)Registered setend emulation handler\n[    0.229149] [    0.229149] (CPU:0-pid:1:swapper/0)clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns\n[    0.229165] [    0.229165] (CPU:0-pid:1:swapper/0)futex hash table entries: 2048 (order: 6, 262144 bytes)\n[    0.229363] [    0.229363] (CPU:0-pid:1:swapper/0)zone->watermark[WMARK_MIN]2 = 356\n[    0.229371] [    0.229371] (CPU:0-pid:1:swapper/0)zone->watermark[WMARK_LOW] = 657\n[    0.229379] [    0.229379] (CPU:0-pid:1:swapper/0)zone->watermark[WMARK_HIGH] = 958\n[    0.229386] [    0.229386] (CPU:0-pid:1:swapper/0)zone->watermark[WMARK_MIN]2 = 3023\n[    0.229393] [    0.229393] (CPU:0-pid:1:swapper/0)zone->watermark[WMARK_LOW] = 5578\n[    0.229400] [    0.229400] (CPU:0-pid:1:swapper/0)zone->watermark[WMARK_HIGH] = 8133\n[    0.229406] [    0.229406] (CPU:0-pid:1:swapper/0)zone->watermark[WMARK_MIN]2 = 0\n[    0.229413] [    0.229413] (CPU:0-pid:1:swapper/0)zone->watermark[WMARK_LOW] = 0\n[    0.229419] [    0.229419] (CPU:0-pid:1:swapper/0)zone->watermark[WMARK_HIGH] = 0\n[    0.235450] [    0.235450] (CPU:0-pid:1:swapper/0)pinctrl core: initialized pinctrl subsystem\n[    0.236121] [    0.236121] (CPU:0-pid:1:swapper/0)NET: Registered protocol family 16\n[    0.237600] [    0.237600] (CPU:0-pid:1:swapper/0)schedtune: configured to support 6 boost groups\n[    0.237893] [    0.237893] (CPU:0-pid:1:swapper/0)[PM] wakeup_sources_debugfs_init -- pms_printer ++\n[    0.237901] [    0.237901] (CPU:0-pid:1:swapper/0)[PM] wakeup_sources_debugfs_init -- pms_printer --\n[    0.239251] [    0.239251] (CPU:0-pid:1:swapper/0)cpuidle: using governor menu\n[    0.239279] [    0.239279] (CPU:0-pid:1:swapper/0)cpuidle: using governor qcom\n[    0.239369] [    0.239369] (CPU:0-pid:1:swapper/0)NET: Registered protocol family 42\n[    0.244432] [    0.244432] (CPU:0-pid:1:swapper/0)vdso: 2 pages (1 code @         (ptrval), 1 data @         (ptrval))\n[    0.244446] [    0.244446] (CPU:0-pid:1:swapper/0)hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.245262] [    0.245262] (CPU:0-pid:1:swapper/0)DMA: preallocated 256 KiB pool for atomic allocations\n[    0.246853] [    0.246853] (CPU:0-pid:1:swapper/0)Failed to create IPC log0\n[    0.246861] [    0.246861] (CPU:0-pid:1:swapper/0)Failed to create IPC log1\n[    0.246868] [    0.246868] (CPU:0-pid:1:swapper/0)Failed to create IPC log2\n[    0.246876] [    0.246876] (CPU:0-pid:1:swapper/0)Failed to create IPC log3\n[    0.246882] [    0.246882] (CPU:0-pid:1:swapper/0)Failed to create IPC log4\n[    0.248098] [    0.248098] (CPU:0-pid:1:swapper/0)exit: IPA_USB init success!\n[    0.248386] [    0.248386] (CPU:0-pid:1:swapper/0)persistent_ram: uncorrectable error in header\n[    0.248436] [    0.248436] (CPU:0-pid:1:swapper/0)persistent_ram: uncorrectable error in header\n[    0.248483] [    0.248483] (CPU:0-pid:1:swapper/0)persistent_ram: uncorrectable error in header\n[    0.248531] [    0.248531] (CPU:0-pid:1:swapper/0)persistent_ram: uncorrectable error in header\n[    0.248577] [    0.248577] (CPU:0-pid:1:swapper/0)persistent_ram: uncorrectable error in header\n[    0.248625] [    0.248625] (CPU:0-pid:1:swapper/0)persistent_ram: uncorrectable error in header\n[    0.248679] [    0.248679] (CPU:0-pid:1:swapper/0)persistent_ram: uncorrectable error in header\n[    0.248718] [    0.248718] (CPU:0-pid:1:swapper/0)pstore: using zlib compression\n[    0.248752] [    0.248752] (CPU:0-pid:1:swapper/0)console [pstore-1] enabled\n[    0.248891] [    0.248891] (CPU:0-pid:1:swapper/0)pstore: Registered ramoops as persistent store backend\n[    0.248900] [    0.248900] (CPU:0-pid:1:swapper/0)ramoops: attached 0x100000@0x99e00000, ecc: 16/0\n[    0.259509] [    0.259509] (CPU:0-pid:1:swapper/0)unable to find DT imem DLOAD mode node\n[    0.261028] [    0.261028] (CPU:0-pid:1:swapper/0)unable to find DT imem EDLOAD mode node\n[    0.263380] [    0.263380] (CPU:0-pid:78:wk:async_run_e)spmi spmi-0: PMIC arbiter version v5 (0x50000000)\n[    0.269162] [    0.269162] (CPU:0-pid:78:wk:async_run_e)LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.269968] [    0.269968] (CPU:0-pid:1:swapper/0)platform 4080000.qcom,mss: assigned reserved memory node modem_region\n[    0.270112] [    0.270112] (CPU:0-pid:1:swapper/0)platform 17300000.qcom,lpass: assigned reserved memory node pil_adsp_region\n[    0.270249] [    0.270249] (CPU:0-pid:1:swapper/0)platform 5c00000.qcom,ssc: assigned reserved memory node pil_slpi_region\n[    0.270382] [    0.270382] (CPU:0-pid:1:swapper/0)platform 188101c.qcom,spss: assigned reserved memory node pil_spss_region\n[    0.270571] [    0.270571] (CPU:0-pid:1:swapper/0)msm_watchdog 17c10000.qcom,wdt: wdog absent resource not present\n[    0.271465] [    0.271465] (CPU:0-pid:1:swapper/0)msm_watchdog 17c10000.qcom,wdt: MSM Watchdog Initialized\n[    0.271513] [    0.271513] (CPU:0-pid:1:swapper/0)platform 9800000.qcom,npu: assigned reserved memory node pil_npu_region\n[    0.271642] [    0.271642] (CPU:0-pid:1:swapper/0)platform 8300000.qcom,turing: assigned reserved memory node cdsp_regions\n[    0.271725] [    0.271725] (CPU:0-pid:1:swapper/0)platform aae0000.qcom,venus: assigned reserved memory node pil_video_region\n[    0.272753] [    0.272753] (CPU:0-pid:1:swapper/0)sps:sps is ready.\n[    0.273462] [    0.273462] (CPU:0-pid:1:swapper/0)platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.280802] [    0.280802] (CPU:0-pid:1:swapper/0)platform 87900000.qseecom: assigned reserved memory node qseecom_region\n[    0.281252] [    0.281252] (CPU:0-pid:1:swapper/0)platform soc:mem_dump: assigned reserved memory node mem_dump_region\n[    0.294919] [    0.294919] (CPU:0-pid:1:swapper/0)msm-dcc 10a2000.dcc_v2: DCC list passed 3\n[    0.295588] [    0.295588] (CPU:0-pid:1:swapper/0)msm-dcc 10a2000.dcc_v2: All values written to enable\n[    0.297815] [    0.297815] (CPU:0-pid:1:swapper/0)(NULL device *): msm_gsi_probe:4316 failed to create IPC log, continue...\n[    0.298315] [    0.298315] (CPU:0-pid:1:swapper/0)platform soc:qcom,ipa_fws: assigned reserved memory node pil_ipa_fw_region\n[    0.299157] [    0.299157] (CPU:0-pid:1:swapper/0)platform 88a7000.msm_tspp: assigned reserved memory node qseecom_region\n[    0.299407] [    0.299407] (CPU:0-pid:1:swapper/0)sm8150-pinctrl 3000000.pinctrl: invalid resource\n[    0.307815] [    0.307815] (CPU:0-pid:1:swapper/0)pm8150_l13: Bringing 2704000uV into 2700000-2700000uV\n[    0.308954] [    0.308954] (CPU:0-pid:1:swapper/0)pm8150_l16: Bringing 2704000uV into 2700000-2700000uV\n[    0.311568] [    0.311568] (CPU:0-pid:1:swapper/0)pm8150l_s6_level: supplied by pm8150l_s4_level\n[    0.311751] [    0.311751] (CPU:0-pid:1:swapper/0)pm8150l_s6_level_ao: supplied by pm8150l_s4_level_ao\n[    0.317341] [    0.317341] (CPU:0-pid:1:swapper/0)rpmh_regulator_probe: smpf2: could not find RPMh address for resource\n[    0.317478] [    0.317478] (CPU:0-pid:1:swapper/0)rpmh_regulator_probe: ldof2: could not find RPMh address for resource\n[    0.317608] [    0.317608] (CPU:0-pid:1:swapper/0)rpmh_regulator_probe: ldof5: could not find RPMh address for resource\n[    0.317737] [    0.317737] (CPU:0-pid:1:swapper/0)rpmh_regulator_probe: ldof6: could not find RPMh address for resource\n[    0.351360] [    0.351360] (CPU:0-pid:1:swapper/0)vServices Framework 1.0\n[    0.356331] [    0.356331] (CPU:0-pid:1:swapper/0)gpu_cx_gdsc: supplied by pm8150l_s6_level\n[    0.356656] [    0.356656] (CPU:0-pid:1:swapper/0)gpu_gx_gdsc: supplied by pm8150l_s2_level\n[    0.359256] [    0.359256] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (300000000 Hz, 600000 uv) on cpu0\n[    0.359734] [    0.359734] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (1785600000 Hz, 832000 uv) on cpu0\n[    0.359782] [    0.359782] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (300000000 Hz, 600000 uv) on cpu1\n[    0.360291] [    0.360291] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (1785600000 Hz, 832000 uv) on cpu1\n[    0.360344] [    0.360344] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (300000000 Hz, 600000 uv) on cpu2\n[    0.360812] [    0.360812] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (1785600000 Hz, 832000 uv) on cpu2\n[    0.360867] [    0.360867] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (300000000 Hz, 600000 uv) on cpu3\n[    0.361323] [    0.361323] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (1785600000 Hz, 832000 uv) on cpu3\n[    0.361384] [    0.361384] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (710400000 Hz, 600000 uv) on cpu4\n[    0.361819] [    0.361819] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (2419200000 Hz, 1048000 uv) on cpu4\n[    0.361868] [    0.361868] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (710400000 Hz, 600000 uv) on cpu5\n[    0.362322] [    0.362322] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (2419200000 Hz, 1048000 uv) on cpu5\n[    0.362374] [    0.362374] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (710400000 Hz, 600000 uv) on cpu6\n[    0.362847] [    0.362847] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (2419200000 Hz, 1048000 uv) on cpu6\n[    0.362901] [    0.362901] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (825600000 Hz, 604000 uv) on cpu7\n[    0.363657] [    0.363657] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (2956800000 Hz, 1040000 uv) on cpu7\n[    0.363931] [    0.363931] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (300000000 Hz, 600000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.363940] [    0.363940] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (300000000 Hz, 600000 uv) on soc:qcom,cpu4-cpu-l3-lat\n[    0.363948] [    0.363948] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (300000000 Hz, 600000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.363956] [    0.363956] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (300000000 Hz, 600000 uv) on soc:qcom,cpu7-cpu-l3-lat\n[    0.365550] [    0.365550] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (1612800000 Hz, 840000 uv) on soc:qcom,cpu0-cpu-l3-lat\n[    0.365559] [    0.365559] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (1612800000 Hz, 840000 uv) on soc:qcom,cpu4-cpu-l3-lat\n[    0.365567] [    0.365567] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (1612800000 Hz, 840000 uv) on soc:qcom,cdsp-cdsp-l3-lat\n[    0.365575] [    0.365575] (CPU:0-pid:1:swapper/0)clk: add_opp: Set OPP pair (1612800000 Hz, 840000 uv) on soc:qcom,cpu7-cpu-l3-lat\n[    0.366278] [    0.366278] (CPU:0-pid:1:swapper/0)sched-energy: Sched-energy-costs installed from DT\n[    0.366387] [    0.366387] (CPU:0-pid:75:wk:update_topo)CPU0: update max cpu_capacity 363, thermal_cap=1024\n[    0.366532] [    0.366532] (CPU:0-pid:1:swapper/0)cpufreq: driver osm-cpufreq up and running\n[    0.366541] [    0.366541] (CPU:0-pid:1:swapper/0)clk: clk_cpu_osm_driver_probe: OSM CPUFreq driver inited\n[    0.368643] [    0.368643] (CPU:0-pid:1:swapper/0)qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.370681] [    0.370681] (CPU:0-pid:1:swapper/0)clk-rpmh soc:qcom,rpmhclk: Registered RPMh clocks\n[    0.386087] [    0.386087] (CPU:0-pid:1:swapper/0)gcc-sm8150 100000.qcom,gcc: Registered GCC clocks\n[    0.387211] [    0.387211] (CPU:0-pid:1:swapper/0)gpu_cc_gmu_clk_src: set OPP pair(19200000 Hz: 49 uV) on 2c6a000.qcom,gmu\n[    0.387312] [    0.387312] (CPU:0-pid:1:swapper/0)gpu_cc_gmu_clk_src: set OPP pair(500000000 Hz: 129 uV) on 2c6a000.qcom,gmu\n[    0.387420] [    0.387420] (CPU:0-pid:1:swapper/0)gpu_cc-sm8150 2c90000.qcom,gpucc: Registered GPU CC clocks\n[    0.388468] [    0.388463] (CPU:0-pid:1:swapper/0)AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.388473] [    0.388473] (CPU:0-pid:1:swapper/0)video_cc-sm8150 ab00000.qcom,videocc: Unable to register for bw voting\n[    0.393716] [    0.393716] (CPU:0-pid:1:swapper/0)KPI: Bootloader start count = 87173\n[    0.393724] [    0.393724] (CPU:0-pid:1:swapper/0)KPI: Bootloader end count = 308572\n[    0.393732] [    0.393732] (CPU:0-pid:1:swapper/0)KPI: Bootloader display count = 1002073405\n[    0.393738] [    0.393738] (CPU:0-pid:1:swapper/0)KPI: Bootloader load kernel count = 2549840087\n[    0.393747] [    0.393747] (CPU:0-pid:1:swapper/0)KPI: Kernel MPM timestamp = 335028\n[    0.393753] [    0.393753] (CPU:0-pid:1:swapper/0)KPI: Kernel MPM Clock frequency = 32768\n[    0.393773] [    0.393773] (CPU:0-pid:1:swapper/0)socinfo_print: v0.15, id=339, ver=2.2, raw_id=165, raw_ver=3, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65566, pmic_die_revision=196608 foundry_id=1 serial_number=3008169705 num_pmics=3 chip_family=0x56 raw_device_family=0x6 raw_device_number=0x3 nproduct_id=0x404 num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xc ndefective_parts_array_offset=0xb4 nmodem_supported=0xff\n[    0.393881] [    0.393881] (CPU:0-pid:1:swapper/0)Minidump: Enabled with max number of regions 200\n[    0.394028] [    0.394028] (CPU:0-pid:1:swapper/0)msm_bus_fabric_rpmh_init_driver\n[    0.394315] [    0.394309] (CPU:0-pid:1:swapper/0)msm_bus: Probe started\n[    0.395021] [    0.395021] (CPU:0-pid:1:swapper/0)msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.395105] [    0.395105] (CPU:0-pid:1:swapper/0)msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.395129] [    0.395129] (CPU:0-pid:1:swapper/0)msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.395197] [    0.395197] (CPU:0-pid:1:swapper/0)msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.397960] [    0.397955] (CPU:0-pid:1:swapper/0)msm_bus: DT Parsing complete\n[    0.398077] [    0.398072] (CPU:0-pid:1:swapper/0)msm_bus_rsc_init: Failed to get mbox:disp_rsc\n[    0.401442] [    0.401436] (CPU:0-pid:1:swapper/0)msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.401601] [    0.401596] (CPU:0-pid:1:swapper/0)msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.401640] [    0.401635] (CPU:0-pid:1:swapper/0)msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.401772] [    0.401767] (CPU:0-pid:1:swapper/0)msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.418257] [    0.418257] (CPU:0-pid:1:swapper/0)actuator_triple_rear_regulator: supplied by pm8150l_bob\n[    0.418498] [    0.418498] (CPU:0-pid:1:swapper/0)actuator_triple_rear_aux_regulator: supplied by pm8150l_bob\n[    0.418732] [    0.418732] (CPU:0-pid:1:swapper/0)camera_rear0_vana_ldo: supplied by pm8150l_bob\n[    0.418991] [    0.418991] (CPU:0-pid:1:swapper/0)cam_dvdd_t_1p05_en: supplied by pm8150l_bob\n[    0.419237] [    0.419237] (CPU:0-pid:1:swapper/0)camera_dvdd_t1_1p1_en: supplied by pm8150l_bob\n[    0.421251] [    0.421246] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 161 dest 627\n[    0.421457] [    0.421452] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 1 apps_smmu\n[    0.421595] [    0.421595] (CPU:0-pid:1:swapper/0)arm-smmu 15000000.apps-smmu: \tnon-coherent table walk\n[    0.421604] [    0.421604] (CPU:0-pid:1:swapper/0)arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.421614] [    0.421614] (CPU:0-pid:1:swapper/0)arm-smmu 15000000.apps-smmu: \tstream matching with 94 register groups\n[    0.422690] [    0.422685] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 161 dest 627\n[    0.422876] [    0.422871] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 2 apps_smmu\n[    0.423145] [    0.423140] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 161 dest 627\n[    0.423327] [    0.423322] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 3 apps_smmu\n[    0.423599] [    0.423594] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 22 dest 773\n[    0.423701] [    0.423696] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 4 mnoc_hf_1_tbu\n[    0.423884] [    0.423879] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 154 dest 10070\n[    0.423955] [    0.423951] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 5 apps_smmu\n[    0.424181] [    0.424175] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 22 dest 773\n[    0.424278] [    0.424273] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 6 mnoc_hf_0_tbu\n[    0.424461] [    0.424455] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 154 dest 10070\n[    0.424527] [    0.424522] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 7 apps_smmu\n[    0.424756] [    0.424751] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 161 dest 627\n[    0.424950] [    0.424945] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 8 apps_smmu\n[    0.425200] [    0.425194] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 161 dest 627\n[    0.425381] [    0.425376] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 9 apps_smmu\n[    0.425606] [    0.425601] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 137 dest 772\n[    0.425702] [    0.425697] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 10 mnoc_sf_0_tbu\n[    0.426929] [    0.426929] (CPU:0-pid:1:swapper/0)arm-smmu 2ca0000.kgsl-smmu: \tnon-coherent table walk\n[    0.426938] [    0.426938] (CPU:0-pid:1:swapper/0)arm-smmu 2ca0000.kgsl-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.426949] [    0.426949] (CPU:0-pid:1:swapper/0)arm-smmu 2ca0000.kgsl-smmu: \tstream matching with 6 register groups\n[    0.428122] [    0.428122] (CPU:0-pid:1:swapper/0)vgaarb: loaded\n[    0.428168] [    0.428168] (CPU:0-pid:1:swapper/0)Init Richtek RegMap 1.1.14_G\n[    0.428426] [    0.428426] (CPU:0-pid:1:swapper/0)SCSI subsystem initialized\n[    0.428518] [    0.428518] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver usbfs\n[    0.428546] [    0.428546] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver hub\n[    0.428690] [    0.428690] (CPU:0-pid:1:swapper/0)usbcore: registered new device driver usb\n[    0.429157] [    0.429157] (CPU:0-pid:1:swapper/0)usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.429287] [    0.429287] (CPU:0-pid:1:swapper/0)rt1711h_init (2.0.1_G): initializing...\n[    0.429312] [    0.429312] (CPU:0-pid:1:swapper/0)tcpc_class_init (2.0.10_G)\n[    0.429321] [    0.429321] (CPU:0-pid:1:swapper/0)SVDM supported mode [0]: name = DisplayPort, svid = 0xff01\n[    0.429329] [    0.429329] (CPU:0-pid:1:swapper/0)SVDM supported mode [1]: name = Direct Charge, svid = 0x29cf\n[    0.429337] [    0.429337] (CPU:0-pid:1:swapper/0)dpm_check_supported_modes : found \"disorder\"...\n[    0.429350] [    0.429350] (CPU:0-pid:1:swapper/0)TCPC class init OK\n[    0.429359] [    0.429359] (CPU:0-pid:1:swapper/0)pd_dbg_info_init\n[    0.429683] [    0.429683] (CPU:0-pid:1:swapper/0)[Keys][qpnp-power-on.c] probe() +++\n[    0.429745] [    0.429745] (CPU:0-pid:1:swapper/0)qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.429776] [    0.429776] (CPU:0-pid:1:swapper/0)qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.429793] [    0.429793] (CPU:0-pid:1:swapper/0)[Keys][qpnp-power-on.c] pon-dbc-delay =15625\n[    0.429944] [    0.429944] (CPU:0-pid:1:swapper/0)input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800/input/input0\n[    0.430187] [    0.430187] (CPU:0-pid:1:swapper/0)[Keys][qpnp-power-on.c] probe() ---\n[    0.430235] [    0.430235] (CPU:0-pid:1:swapper/0)[Keys][qpnp-power-on.c] probe() +++\n[    0.430285] [    0.430285] (CPU:0-pid:1:swapper/0)qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150b@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from CBL (External Power Supply) and 'cold' boot\n[    0.430311] [    0.430311] (CPU:0-pid:1:swapper/0)qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150b@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from SOFT (Software)\n[    0.430321] [    0.430321] (CPU:0-pid:1:swapper/0)[Keys][qpnp-power-on.c] pon-dbc-delay =1\n[    0.430360] [    0.430360] (CPU:0-pid:1:swapper/0)[Keys][qpnp-power-on.c] probe() ---\n[    0.430411] [    0.430411] (CPU:0-pid:1:swapper/0)[Keys][qpnp-power-on.c] probe() +++\n[    0.430459] [    0.430459] (CPU:0-pid:1:swapper/0)qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150l@4:qcom,power-on@800: PMIC@SID4 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'cold' boot\n[    0.430484] [    0.430484] (CPU:0-pid:1:swapper/0)qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150l@4:qcom,power-on@800: PMIC@SID4: Power-off reason: Triggered from SOFT (Software)\n[    0.430493] [    0.430493] (CPU:0-pid:1:swapper/0)[Keys][qpnp-power-on.c] pon-dbc-delay =1\n[    0.430538] [    0.430538] (CPU:0-pid:1:swapper/0)[Keys][qpnp-power-on.c] probe() ---\n[    0.430825] [    0.430825] (CPU:0-pid:1:swapper/0)media: Linux media interface: v0.10\n[    0.430846] [    0.430846] (CPU:0-pid:1:swapper/0)Linux video capture interface: v2.00\n[    0.439053] [    0.439053] (CPU:0-pid:1:swapper/0)virt zone: sensor[gpuss-1-usr] read error:-22\n[    0.439064] [    0.439064] (CPU:0-pid:1:swapper/0)thermal thermal_zone32: failed to read out thermal zone (-22)\n[    0.439460] [    0.439455] (CPU:0-pid:1:swapper/0)tsens_tm_probe : unable to create IPC Logging 0 for tsens 0x000000000c263000\n[    0.439468] [    0.439463] (CPU:0-pid:1:swapper/0)tsens_tm_probe : unable to create IPC Logging 1 for tsens 0x000000000c263000\n[    0.439476] [    0.439472] (CPU:0-pid:1:swapper/0)tsens_tm_probe : unable to create IPC Logging 2 for tsens 0x000000000c263000\n[    0.441491] [    0.441486] (CPU:0-pid:1:swapper/0)tsens_tm_probe : unable to create IPC Logging 0 for tsens 0x000000000c265000\n[    0.441499] [    0.441494] (CPU:0-pid:1:swapper/0)tsens_tm_probe : unable to create IPC Logging 1 for tsens 0x000000000c265000\n[    0.441506] [    0.441502] (CPU:0-pid:1:swapper/0)tsens_tm_probe : unable to create IPC Logging 2 for tsens 0x000000000c265000\n[    0.442082] [    0.442082] (CPU:0-pid:1:swapper/0)EDAC MC: Ver: 3.0.0\n[    0.447475] [    0.447475] (CPU:0-pid:1:swapper/0)platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node adsp_region\n[    0.447574] [    0.447574] (CPU:0-pid:1:swapper/0)platform soc:qcom,ion:qcom,ion-heap@26: assigned reserved memory node user_contig_region\n[    0.447662] [    0.447662] (CPU:0-pid:1:swapper/0)platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.447762] [    0.447762] (CPU:0-pid:1:swapper/0)platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.447851] [    0.447851] (CPU:0-pid:1:swapper/0)platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.447943] [    0.447943] (CPU:0-pid:1:swapper/0)platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.448339] [    0.448339] (CPU:0-pid:1:swapper/0)ION heap system created\n[    0.448496] [    0.448496] (CPU:0-pid:1:swapper/0)ION heap adsp created at 0x00000000fc400000 with size 1000000\n[    0.448506] [    0.448506] (CPU:0-pid:1:swapper/0)ION heap user_contig created at 0x00000000f1000000 with size 1000000\n[    0.448515] [    0.448515] (CPU:0-pid:1:swapper/0)ION heap qsecom created at 0x000000009e400000 with size 1400000\n[    0.448523] [    0.448523] (CPU:0-pid:1:swapper/0)ION heap qsecom_ta created at 0x00000000f0000000 with size 1000000\n[    0.448531] [    0.448531] (CPU:0-pid:1:swapper/0)ION heap spss created at 0x00000000ef800000 with size 800000\n[    0.448540] [    0.448540] (CPU:0-pid:1:swapper/0)ION heap secure_display created at 0x00000000f2400000 with size a000000\n[    0.484177] [    0.484177] (CPU:0-pid:1:swapper/0)platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0xa4c00000, size 0x3c00000\n[    0.484185] [    0.484185] (CPU:0-pid:1:swapper/0)ION heap secure_carveout created\n[    0.484195] [    0.484195] (CPU:0-pid:1:swapper/0)ION heap secure_heap created\n[    0.486043] [    0.486043] (CPU:0-pid:1:swapper/0)qupv3_geni_se 8c0000.qcom,qupv3_0_geni_se: geni_se_probe Failed to allocate log context\n[    0.486334] [    0.486334] (CPU:0-pid:1:swapper/0)iommu: Adding device 8c0000.qcom,qupv3_0_geni_se:qcom,iommu_qupv3_0_geni_se_cb to group 0\n[    0.486434] [    0.486434] (CPU:0-pid:1:swapper/0)qupv3_geni_se ac0000.qcom,qupv3_1_geni_se: geni_se_probe Failed to allocate log context\n[    0.486654] [    0.486654] (CPU:0-pid:1:swapper/0)iommu: Adding device ac0000.qcom,qupv3_1_geni_se:qcom,iommu_qupv3_1_geni_se_cb to group 1\n[    0.486763] [    0.486763] (CPU:0-pid:1:swapper/0)qupv3_geni_se cc0000.qcom,qupv3_2_geni_se: geni_se_probe Failed to allocate log context\n[    0.486976] [    0.486976] (CPU:0-pid:1:swapper/0)iommu: Adding device cc0000.qcom,qupv3_2_geni_se:qcom,iommu_qupv3_2_geni_se_cb to group 2\n[    0.487058] [    0.487058] (CPU:0-pid:1:swapper/0)qupv3_geni_se 26c0000.qcom,qupv3_3_geni_se: geni_se_probe Failed to allocate log context\n[    0.487253] [    0.487253] (CPU:0-pid:1:swapper/0)iommu: Adding device 26c0000.qcom,qupv3_3_geni_se:qcom,iommu_qupv3_3_geni_se_cb to group 3\n[    0.487773] [    0.487773] (CPU:0-pid:1:swapper/0)PMIC@SID2: PM8150B v2.0 options: 0, 0, 0, 0\n[    0.487898] [    0.487898] (CPU:0-pid:1:swapper/0)PMIC@SID4: PM8150L v3.0 options: 0, 0, 0, 0\n[    0.489104] [    0.489099] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 90 dest 512\n[    0.489660] [    0.489655] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 90 dest 585\n[    0.489843] [    0.489838] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 676\n[    0.490255] [    0.490250] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 143 dest 777\n[    0.490351] [    0.490346] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 11 ipa\n[    0.495913] [    0.495913] (CPU:0-pid:1:swapper/0)ipa ipa3_smp2p_probe:7802 fail to get smp2p clk resp bit -517\n[    0.496325] [    0.496325] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:ipa_smmu_ap to group 4\n[    0.496563] [    0.496563] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:ipa_smmu_wlan to group 5\n[    0.496752] [    0.496752] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:ipa_smmu_uc to group 6\n[    0.497785] [    0.497785] (CPU:0-pid:1:swapper/0)ipa ipa3_smp2p_probe:7802 fail to get smp2p clk resp bit -517\n[    0.499818] [    0.499818] (CPU:0-pid:1:swapper/0)SDAM base=0xb100 size=128 registered successfully\n[    0.500809] [    0.500809] (CPU:0-pid:1:swapper/0)Advanced Linux Sound Architecture Driver Initialized.\n[    0.501529] [    0.501529] (CPU:0-pid:1:swapper/0)Bluetooth: Core ver 2.22\n[    0.501576] [    0.501576] (CPU:0-pid:1:swapper/0)NET: Registered protocol family 31\n[    0.501584] [    0.501584] (CPU:0-pid:1:swapper/0)Bluetooth: HCI device and connection manager initialized\n[    0.501609] [    0.501609] (CPU:0-pid:1:swapper/0)Bluetooth: HCI socket layer initialized\n[    0.501626] [    0.501626] (CPU:0-pid:1:swapper/0)Bluetooth: L2CAP socket layer initialized\n[    0.501674] [    0.501674] (CPU:0-pid:1:swapper/0)Bluetooth: SCO socket layer initialized\n[    0.503330] [    0.503330] (CPU:0-pid:1:swapper/0)NetLabel: Initializing\n[    0.503338] [    0.503338] (CPU:0-pid:1:swapper/0)NetLabel:  domain hash size = 128\n[    0.503348] [    0.503348] (CPU:0-pid:1:swapper/0)NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\n[    0.503452] [    0.503452] (CPU:0-pid:1:swapper/0)NetLabel:  unlabeled traffic allowed by default\n[    0.503636] [    0.503636] (CPU:0-pid:1:swapper/0)pcie:pcie_init.\n[    0.503648] [    0.503648] (CPU:0-pid:1:swapper/0)pcie_init: unable to create IPC log context for pcie0-short\n[    0.503658] [    0.503658] (CPU:0-pid:1:swapper/0)pcie_init: unable to create IPC log context for pcie0-long\n[    0.503668] [    0.503668] (CPU:0-pid:1:swapper/0)pcie_init: unable to create IPC log context for pcie0-dump\n[    0.503681] [    0.503681] (CPU:0-pid:1:swapper/0)pcie_init: unable to create IPC log context for pcie1-short\n[    0.503687] [    0.503687] (CPU:0-pid:1:swapper/0)pcie_init: unable to create IPC log context for pcie1-long\n[    0.503694] [    0.503694] (CPU:0-pid:1:swapper/0)pcie_init: unable to create IPC log context for pcie1-dump\n[    0.503705] [    0.503705] (CPU:0-pid:1:swapper/0)pcie_init: unable to create IPC log context for pcie2-short\n[    0.503711] [    0.503711] (CPU:0-pid:1:swapper/0)pcie_init: unable to create IPC log context for pcie2-long\n[    0.503720] [    0.503720] (CPU:0-pid:1:swapper/0)pcie_init: unable to create IPC log context for pcie2-dump\n[    0.505311] [    0.505311] (CPU:0-pid:1:swapper/0)pci-msm 1c00000.qcom,pcie: 1c00000.qcom,pcie supply vreg-3.3 not found, using dummy regulator\n[    0.505902] [    0.505902] (CPU:0-pid:1:swapper/0)pci-msm 1c00000.qcom,pcie: 1c00000.qcom,pcie supply gdsc-smmu not found, using dummy regulator\n[    0.506372] [    0.506367] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 45 dest 512\n[    0.506910] [    0.506905] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 12 pcie0\n[    0.507195] [    0.507195] (CPU:0-pid:1:swapper/0)msm_pcie_get_resources: PCIe: RC0 can't get tcsr resource.\n[    0.507225] [    0.507225] (CPU:0-pid:1:swapper/0)msm_pcie_probe: PCIe: RC0 could not get pinctrl sleep state\n[    0.507711] [    0.507711] (CPU:0-pid:1:swapper/0)genirq: irq_chip msmgpio-dc did not update eff. affinity mask of irq 210\n[    0.508467] [    0.508462] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 590\n[    0.508928] [    0.508923] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 589\n[    0.509219] [    0.509214] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 596\n[    0.509542] [    0.509537] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 22 dest 512\n[    0.509881] [    0.509876] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 23 dest 512\n[    0.510217] [    0.510212] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 13 bus-proxy-client\n[    0.510412] [    0.510412] (CPU:0-pid:102:cfg80211)CPU0: update max cpu_capacity 363, thermal_cap=1024\n[    0.512716] [    0.512716] (CPU:0-pid:75:wk:deferred_pr)LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=0 ldo_voltage=5500mV ncp_voltage=5500mV bst_voltage=5650mV\n[    0.512915] [    0.512915] (CPU:0-pid:75:wk:deferred_pr)sched-energy energy-costs: cpu=0 eff=1024 [freq=300000 cap=62 power_d0=24] -> [freq=1785600 cap=365 power_d0=128]\n[    0.512929] [    0.512929] (CPU:0-pid:75:wk:deferred_pr)sched-energy energy-costs: cpu=1 eff=1024 [freq=300000 cap=62 power_d0=24] -> [freq=1785600 cap=365 power_d0=128]\n[    0.512944] [    0.512944] (CPU:0-pid:75:wk:deferred_pr)sched-energy energy-costs: cpu=2 eff=1024 [freq=300000 cap=62 power_d0=24] -> [freq=1785600 cap=365 power_d0=128]\n[    0.512958] [    0.512958] (CPU:0-pid:75:wk:deferred_pr)sched-energy energy-costs: cpu=3 eff=1024 [freq=300000 cap=62 power_d0=24] -> [freq=1785600 cap=365 power_d0=128]\n[    0.512973] [    0.512973] (CPU:0-pid:75:wk:deferred_pr)sched-energy energy-costs: cpu=4 eff=1740 [freq=710400 cap=247 power_d0=165] -> [freq=2419200 cap=838 power_d0=1022]\n[    0.512988] [    0.512988] (CPU:0-pid:75:wk:deferred_pr)sched-energy energy-costs: cpu=5 eff=1740 [freq=710400 cap=247 power_d0=165] -> [freq=2419200 cap=838 power_d0=1022]\n[    0.513001] [    0.513001] (CPU:0-pid:75:wk:deferred_pr)sched-energy energy-costs: cpu=6 eff=1740 [freq=710400 cap=247 power_d0=165] -> [freq=2419200 cap=838 power_d0=1022]\n[    0.513016] [    0.513016] (CPU:0-pid:75:wk:deferred_pr)sched-energy energy-costs: cpu=7 eff=1740 [freq=825600 cap=286 power_d0=227] -> [freq=2956800 cap=1024 power_d0=1670]\n[    0.513024] [    0.513024] (CPU:0-pid:75:wk:deferred_pr)sched-energy energy-costs: Sched-energy-costs capacity updated\n[    0.513344] [    0.513339] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 589\n[    0.513700] [    0.513695] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 14 bps_gdsc_ahb\n[    0.514046] [    0.514046] (CPU:0-pid:75:wk:deferred_pr)bps_gdsc: supplied by pm8150l_s5_level\n[    0.514587] [    0.514582] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 589\n[    0.514878] [    0.514873] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 15 ipe_0_gdsc_ahb\n[    0.515134] [    0.515134] (CPU:0-pid:75:wk:deferred_pr)ipe_0_gdsc: supplied by pm8150l_s5_level\n[    0.515570] [    0.515565] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 589\n[    0.515870] [    0.515864] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 16 ipe_1_gdsc_ahb\n[    0.516105] [    0.516105] (CPU:0-pid:75:wk:deferred_pr)ipe_1_gdsc: supplied by pm8150l_s5_level\n[    0.516518] [    0.516513] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 589\n[    0.516827] [    0.516822] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 17 ife_0_gdsc_ahb\n[    0.517057] [    0.517057] (CPU:0-pid:75:wk:deferred_pr)ife_0_gdsc: supplied by pm8150l_s5_level\n[    0.517469] [    0.517464] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 589\n[    0.517752] [    0.517747] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 18 ife_1_gdsc_ahb\n[    0.517990] [    0.517990] (CPU:0-pid:75:wk:deferred_pr)ife_1_gdsc: supplied by pm8150l_s5_level\n[    0.518389] [    0.518384] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 589\n[    0.518678] [    0.518673] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 19 titan_top_gdsc_ahb\n[    0.518903] [    0.518903] (CPU:0-pid:75:wk:deferred_pr)titan_top_gdsc: supplied by pm8150l_s5_level\n[    0.519315] [    0.519310] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 590\n[    0.519610] [    0.519605] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 20 mdss_core_gdsc_ahb\n[    0.519746] [    0.519746] (CPU:0-pid:75:wk:deferred_pr)mdss_core_gdsc: supplied by pm8150l_s5_level\n[    0.520302] [    0.520297] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 596\n[    0.520597] [    0.520592] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 21 mvsc_gdsc_ahb\n[    0.520828] [    0.520828] (CPU:0-pid:75:wk:deferred_pr)mvsc_gdsc: supplied by pm8150l_s5_level\n[    0.521232] [    0.521227] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 596\n[    0.521532] [    0.521527] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 22 mvs0_gdsc_ahb\n[    0.521761] [    0.521761] (CPU:0-pid:75:wk:deferred_pr)mvs0_gdsc: supplied by pm8150l_s5_level\n[    0.522160] [    0.522155] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 596\n[    0.522467] [    0.522462] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 23 mvs1_gdsc_ahb\n[    0.522694] [    0.522694] (CPU:0-pid:75:wk:deferred_pr)mvs1_gdsc: supplied by pm8150l_s5_level\n[    0.523560] [    0.523555] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 589\n[    0.523844] [    0.523839] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 24 clk_camcc_debugfs\n[    0.524791] [    0.524791] (CPU:0-pid:75:wk:deferred_pr)cam_cc_bps_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac6f000.qcom,bps\n[    0.525111] [    0.525111] (CPU:0-pid:75:wk:deferred_pr)cam_cc_bps_clk_src: set OPP pair(600000000 Hz: 257 uV) on ac6f000.qcom,bps\n[    0.525450] [    0.525450] (CPU:0-pid:75:wk:deferred_pr)cam_cc_cci_0_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac4a000.qcom,cci\n[    0.525541] [    0.525541] (CPU:0-pid:75:wk:deferred_pr)cam_cc_cci_0_clk_src: set OPP pair(37500000 Hz: 65 uV) on ac4a000.qcom,cci\n[    0.525736] [    0.525736] (CPU:0-pid:75:wk:deferred_pr)cam_cc_cci_1_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac4b000.qcom,cci\n[    0.525802] [    0.525802] (CPU:0-pid:75:wk:deferred_pr)cam_cc_cci_1_clk_src: set OPP pair(37500000 Hz: 65 uV) on ac4b000.qcom,cci\n[    0.526201] [    0.526201] (CPU:0-pid:75:wk:deferred_pr)cam_cc_csi0phytimer_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac65000.qcom,csiphy\n[    0.526264] [    0.526264] (CPU:0-pid:75:wk:deferred_pr)cam_cc_csi0phytimer_clk_src: set OPP pair(300000000 Hz: 65 uV) on ac65000.qcom,csiphy\n[    0.526488] [    0.526488] (CPU:0-pid:75:wk:deferred_pr)cam_cc_csi1phytimer_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac66000.qcom,csiphy\n[    0.526574] [    0.526574] (CPU:0-pid:75:wk:deferred_pr)cam_cc_csi1phytimer_clk_src: set OPP pair(300000000 Hz: 65 uV) on ac66000.qcom,csiphy\n[    0.526818] [    0.526818] (CPU:0-pid:75:wk:deferred_pr)cam_cc_csi2phytimer_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac67000.qcom,csiphy\n[    0.526890] [    0.526890] (CPU:0-pid:75:wk:deferred_pr)cam_cc_csi2phytimer_clk_src: set OPP pair(300000000 Hz: 65 uV) on ac67000.qcom,csiphy\n[    0.527128] [    0.527128] (CPU:0-pid:75:wk:deferred_pr)cam_cc_csi3phytimer_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac68000.qcom,csiphy\n[    0.527192] [    0.527192] (CPU:0-pid:75:wk:deferred_pr)cam_cc_csi3phytimer_clk_src: set OPP pair(300000000 Hz: 65 uV) on ac68000.qcom,csiphy\n[    0.528064] [    0.528064] (CPU:0-pid:75:wk:deferred_pr)cam_cc_icp_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac00000.qcom,a5\n[    0.528183] [    0.528183] (CPU:0-pid:75:wk:deferred_pr)cam_cc_icp_clk_src: set OPP pair(600000000 Hz: 193 uV) on ac00000.qcom,a5\n[    0.528510] [    0.528510] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_0_clk_src: set OPP pair(19200000 Hz: 49 uV) on acaf000.qcom,vfe0\n[    0.528815] [    0.528815] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_0_clk_src: set OPP pair(950000000 Hz: 385 uV) on acaf000.qcom,vfe0\n[    0.529134] [    0.529134] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_0_csid_clk_src: set OPP pair(19200000 Hz: 49 uV) on acb3000.qcom,csid0\n[    0.529402] [    0.529402] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_0_csid_clk_src: set OPP pair(600000000 Hz: 257 uV) on acb3000.qcom,csid0\n[    0.529792] [    0.529792] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_1_clk_src: set OPP pair(19200000 Hz: 49 uV) on acb6000.qcom,vfe1\n[    0.530141] [    0.530141] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_1_clk_src: set OPP pair(950000000 Hz: 385 uV) on acb6000.qcom,vfe1\n[    0.530471] [    0.530471] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_1_csid_clk_src: set OPP pair(19200000 Hz: 49 uV) on acba000.qcom,csid1\n[    0.530735] [    0.530735] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_1_csid_clk_src: set OPP pair(600000000 Hz: 257 uV) on acba000.qcom,csid1\n[    0.531080] [    0.531080] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_lite_0_clk_src: set OPP pair(19200000 Hz: 49 uV) on acc4000.qcom,vfe-lite0\n[    0.531343] [    0.531343] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_lite_0_clk_src: set OPP pair(600000000 Hz: 257 uV) on acc4000.qcom,vfe-lite0\n[    0.531678] [    0.531678] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_lite_0_csid_clk_src: set OPP pair(19200000 Hz: 49 uV) on acc8000.qcom,csid-lite0\n[    0.531882] [    0.531882] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_lite_0_csid_clk_src: set OPP pair(600000000 Hz: 257 uV) on acc8000.qcom,csid-lite0\n[    0.532174] [    0.532174] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_lite_1_clk_src: set OPP pair(19200000 Hz: 49 uV) on accb000.qcom,vfe-lite1\n[    0.532440] [    0.532440] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_lite_1_clk_src: set OPP pair(600000000 Hz: 257 uV) on accb000.qcom,vfe-lite1\n[    0.532789] [    0.532789] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_lite_1_csid_clk_src: set OPP pair(19200000 Hz: 49 uV) on accf000.qcom,csid-lite1\n[    0.532993] [    0.532993] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ife_lite_1_csid_clk_src: set OPP pair(600000000 Hz: 257 uV) on accf000.qcom,csid-lite1\n[    0.533620] [    0.533620] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ipe_0_clk_src: set OPP pair(19200000 Hz: 49 uV) on ac87000.qcom,ipe0\n[    0.533892] [    0.533892] (CPU:0-pid:75:wk:deferred_pr)cam_cc_ipe_0_clk_src: set OPP pair(600000000 Hz: 257 uV) on ac87000.qcom,ipe0\n[    0.537899] [    0.537899] (CPU:0-pid:75:wk:deferred_pr)cam_cc-sm8150 ad00000.qcom,camcc: Registered CAM CC clocks\n[    0.538177] [    0.538172] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 590\n[    0.538486] [    0.538480] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 25 clk_dispcc_debugfs\n[    0.538509] [    0.538509] (CPU:0-pid:75:wk:deferred_pr)PLL is already enabled. Skipping configuration.\n[    0.544841] [    0.544841] (CPU:0-pid:75:wk:deferred_pr)disp_cc-sm8150 af00000.qcom,dispcc: Registered Display CC clocks\n[    0.549315] [    0.549315] (CPU:0-pid:75:wk:deferred_pr)npu_cc-sm8150 9910000.qcom,npucc: Registered NPU CC clocks\n[    0.549541] [    0.549536] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 596\n[    0.549847] [    0.549842] (CPU:0-pid:75:wk:deferred_pr)register_client_adhoc:Client handle 26 clk_videocc_debugfs\n[    0.550855] [    0.550855] (CPU:0-pid:75:wk:deferred_pr)video_cc-sm8150 ab00000.qcom,videocc: Registered Video CC clocks\n[    0.551151] [    0.551151] (CPU:0-pid:75:wk:deferred_pr)ipa ipa3_smp2p_probe:7802 fail to get smp2p clk resp bit -517\n[    0.552069] [    0.552069] (CPU:0-pid:1:swapper/0)clocksource: Switched to clocksource arch_sys_counter\n[    0.612561] [    0.612561] (CPU:0-pid:1:swapper/0)VFS: Disk quotas dquot_6.6.0\n[    0.612625] [    0.612625] (CPU:0-pid:1:swapper/0)VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.614968] [    0.614968] (CPU:0-pid:1:swapper/0)simple-framebuffer 9c000000.framebuffer: framebuffer at 0x9c000000, 0x2400000 bytes, mapped to 0x        (ptrval)\n[    0.614980] [    0.614980] (CPU:0-pid:1:swapper/0)simple-framebuffer 9c000000.framebuffer: format=a8r8g8b8, mode=1080x2340x32, linelength=4320\n[    0.630590] [    0.630585] (CPU:0-pid:1:swapper/0)Console: switching [    0.630596] (CPU:0-pid:1:swapper/0)to colour frame buffer device 67x73\n[    0.645718] [    0.645718] (CPU:0-pid:1:swapper/0)simple-framebuffer 9c000000.framebuffer: fb0: simplefb registered!\n[    0.646525] [    0.646520] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 589\n[    0.647014] [    0.647009] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 596\n[    0.647320] [    0.647315] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 590\n[    0.647616] [    0.647611] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 27 clk_measure\n[    0.649269] [    0.649269] (CPU:0-pid:1:swapper/0)mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.649281] [    0.649281] (CPU:0-pid:1:swapper/0)mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.649522] [    0.649522] (CPU:0-pid:1:swapper/0)mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.649535] [    0.649535] (CPU:0-pid:1:swapper/0)mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.649548] [    0.649548] (CPU:0-pid:1:swapper/0)mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.649560] [    0.649560] (CPU:0-pid:1:swapper/0)mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.649572] [    0.649572] (CPU:0-pid:1:swapper/0)mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.650978] [    0.650978] (CPU:0-pid:1:swapper/0)dsi_pll_clock_register_7nm: Registered DSI PLL ndx=0, clocks successfully\n[    0.651038] [    0.651038] (CPU:0-pid:1:swapper/0)mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.651048] [    0.651048] (CPU:0-pid:1:swapper/0)mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.651226] [    0.651226] (CPU:0-pid:1:swapper/0)mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.651239] [    0.651239] (CPU:0-pid:1:swapper/0)mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.651252] [    0.651252] (CPU:0-pid:1:swapper/0)mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.651265] [    0.651265] (CPU:0-pid:1:swapper/0)mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.651277] [    0.651277] (CPU:0-pid:1:swapper/0)mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create debugfs directory\n[    0.657283] [    0.657283] (CPU:0-pid:1:swapper/0)dsi_pll_clock_register_7nm: Registered DSI PLL ndx=1, clocks successfully\n[    0.657340] [    0.657340] (CPU:0-pid:1:swapper/0)mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.657355] [    0.657355] (CPU:0-pid:1:swapper/0)mdss_pll_util_parse_dt_supply: no supply entry present\n[    0.667310] [    0.667310] (CPU:0-pid:1:swapper/0)NET: Registered protocol family 2\n[    0.667853] [    0.667853] (CPU:0-pid:1:swapper/0)TCP established hash table entries: 131072 (order: 8, 1048576 bytes)\n[    0.668332] [    0.668332] (CPU:0-pid:1:swapper/0)TCP bind hash table entries: 65536 (order: 9, 2097152 bytes)\n[    0.671256] [    0.671256] (CPU:0-pid:1:swapper/0)TCP: Hash tables configured (established 131072 bind 65536)\n[    0.671443] [    0.671443] (CPU:0-pid:1:swapper/0)UDP hash table entries: 8192 (order: 7, 786432 bytes)\n[    0.672574] [    0.672574] (CPU:0-pid:1:swapper/0)UDP-Lite hash table entries: 8192 (order: 7, 786432 bytes)\n[    0.673898] [    0.673898] (CPU:0-pid:1:swapper/0)NET: Registered protocol family 1\n[    0.673939] [    0.673939] (CPU:0-pid:1:swapper/0)PCI: CLS 0 bytes, default 128\n[    0.674351] [    0.674351] (CPU:0-pid:75:wk:deferred_pr)ipa ipa3_smp2p_probe:7802 fail to get smp2p clk resp bit -517\n[    0.674772] [    0.674772] (CPU:0-pid:1:swapper/0)Trying to unpack rootfs image as initramfs...\n[    0.975982] [    0.975982] (CPU:0-pid:1:swapper/0)Freeing initrd memory: 11528K\n[    0.976014] [    0.976014] (CPU:0-pid:1:swapper/0)[debuginit] initcall populate_rootfs+0x0/0x310 returned 0 after 294463 usecs\n[    0.978660] [    0.978660] (CPU:0-pid:1:swapper/0)hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.988930] [    0.988930] (CPU:0-pid:1:swapper/0)audit: initializing netlink subsys (disabled)\n[    0.991160] [    0.991160] (CPU:0-pid:1:swapper/0)Initialise system trusted keyrings\n[    0.991491] [    0.991491] (CPU:0-pid:143:kauditd)audit: type=2000 audit(0.986:1): state=initialized audit_enabled=0 res=1\n[    0.991575] [    0.991575] (CPU:0-pid:1:swapper/0)workingset: timestamp_bits=45 max_order=22 bucket_order=0\n[    0.995956] [    0.995956] (CPU:0-pid:1:swapper/0)Registering sdcardfs 0.1\n[    0.996162] [    0.996162] (CPU:0-pid:1:swapper/0)fuse init (API version 7.26)\n[    0.996794] [    0.996794] (CPU:0-pid:1:swapper/0)SELinux:  Registering netfilter hooks\n[    0.997456] [    0.997456] (CPU:0-pid:1:swapper/0)pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    0.997465] [    0.997465] (CPU:0-pid:1:swapper/0)pfk_f2fs [pfk_f2fs_init]: PFK F2FS inited successfully\n[    0.997477] [    0.997477] (CPU:0-pid:1:swapper/0)pfk [pfk_init]: Driver initialized successfully\n[    1.002055] [    1.002055] (CPU:0-pid:1:swapper/0)Key type asymmetric registered\n[    1.002067] [    1.002067] (CPU:0-pid:1:swapper/0)Asymmetric key parser 'x509' registered\n[    1.002124] [    1.002124] (CPU:0-pid:1:swapper/0)Block layer SCSI generic (bsg) driver version 0.4 loaded (major 241)\n[    1.002136] [    1.002136] (CPU:0-pid:1:swapper/0)io scheduler noop registered\n[    1.002146] [    1.002146] (CPU:0-pid:1:swapper/0)io scheduler deadline registered\n[    1.002206] [    1.002206] (CPU:0-pid:1:swapper/0)io scheduler cfq registered (default)\n[    1.002215] [    1.002215] (CPU:0-pid:1:swapper/0)io scheduler mq-deadline registered\n[    1.002223] [    1.002223] (CPU:0-pid:1:swapper/0)io scheduler kyber registered\n[    1.008230] [    1.008230] (CPU:0-pid:1:swapper/0)Virtual Services transport driver for OKL4 Axons\n[    1.020548] [    1.020548] (CPU:0-pid:1:swapper/0)iommu: Adding device 800000.qcom,gpi-dma to group 7\n[    1.022227] [    1.022227] (CPU:0-pid:1:swapper/0)iommu: Adding device a00000.qcom,gpi-dma to group 8\n[    1.023778] [    1.023778] (CPU:0-pid:1:swapper/0)iommu: Adding device c00000.qcom,gpi-dma to group 9\n[    1.028275] [    1.028275] (CPU:0-pid:1:swapper/0)icnss: Unable to create log context\n[    1.028284] [    1.028284] (CPU:0-pid:1:swapper/0)icnss: Unable to create log long context\n[    1.028776] [    1.028776] (CPU:0-pid:1:swapper/0)iommu: Adding device 18800000.qcom,icnss to group 10\n[    1.028995] [    1.028995] (CPU:0-pid:1:swapper/0)[cnss]: vdd-2.7-wifi-antenna init ok.\n[    1.029004] [    1.029004] (CPU:0-pid:1:swapper/0)icnss: Recursive recovery allowed for WLAN\n[    1.035587] [    1.035587] (CPU:0-pid:1:swapper/0)[cnss]: vdd-2.7-wifi-antenna enabled.\n[    1.035604] [    1.035604] (CPU:0-pid:1:swapper/0)[cnss] gpio_get_value_79 1\n[    1.035614] [    1.035614] (CPU:0-pid:1:swapper/0)[cnss] gpio_get_value_80 1\n[    1.035624] [    1.035624] (CPU:0-pid:1:swapper/0)[cnss] gpio_get_value_64 1\n[    1.035634] [    1.035634] (CPU:0-pid:1:swapper/0)[cnss] gpio_get_value_67 1\n[    1.035676] [    1.035676] (CPU:0-pid:1:swapper/0)[cnss] gpio_get_value_79_end 1\n[    1.035701] [    1.035701] (CPU:0-pid:1:swapper/0)[cnss] gpio_get_value_80_end 0\n[    1.035727] [    1.035727] (CPU:0-pid:1:swapper/0)[cnss] gpio_get_value_64_end 0\n[    1.035751] [    1.035751] (CPU:0-pid:1:swapper/0)[cnss] gpio_get_value_67_end 0\n[    1.035924] [    1.035924] (CPU:0-pid:1:swapper/0)icnss 18800000.qcom,icnss: for wcss_msa0 segments only will be dumped.\n[    1.036217] [    1.036217] (CPU:0-pid:1:swapper/0)icnss: Platform driver probed successfully\n[    1.038185] [    1.038185] (CPU:0-pid:1:swapper/0)memshare_child soc:qcom,memshare:qcom,client_1: for memshare_GPS segments only will be dumped.\n[    1.038478] [    1.038478] (CPU:0-pid:1:swapper/0)memshare_child soc:qcom,memshare:qcom,client_2: for memshare_FTM segments only will be dumped.\n[    1.046461] [    1.046461] (CPU:0-pid:1:swapper/0)memshare_child soc:qcom,memshare:qcom,client_3: for memshare_DIAG segments only will be dumped.\n[    1.047179] [    1.047174] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 125 dest 512\n[    1.047965] [    1.047960] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 28 scm_pas\n[    1.048726] [    1.048726] (CPU:0-pid:1:swapper/0)[subsys-pil]: name:modem\n[    1.048798] [    1.048798] (CPU:0-pid:1:swapper/0)[subsys-pil]: vdd-2.7-antenna init ok.\n[    1.049225] [    1.049225] (CPU:0-pid:1:swapper/0)[subsys-pil]: vdd-2.7-antenna enabled.\n[    1.049350] [    1.049350] (CPU:0-pid:1:swapper/0)minidump-id not found for adsp\n[    1.050115] [    1.050115] (CPU:0-pid:1:swapper/0)minidump-id not found for slpi\n[    1.050775] [    1.050775] (CPU:0-pid:1:swapper/0)minidump-id not found for spss\n[    1.051232] [    1.051232] (CPU:0-pid:1:swapper/0)minidump-id not found for npu\n[    1.051245] [    1.051245] (CPU:0-pid:1:swapper/0)subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    1.051325] [    1.051325] (CPU:0-pid:1:swapper/0)subsys-pil-tz 9800000.qcom,npu: for md_npu segments only will be dumped.\n[    1.051705] [    1.051700] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 154 dest 10070\n[    1.051799] [    1.051794] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 29 pil-cdsp\n[    1.051805] [    1.051805] (CPU:0-pid:1:swapper/0)minidump-id not found for cdsp\n[    1.052603] [    1.052598] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 63 dest 512\n[    1.052941] [    1.052935] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 30 pil-venus\n[    1.052947] [    1.052947] (CPU:0-pid:1:swapper/0)minidump-id not found for venus\n[    1.053319] [    1.053319] (CPU:0-pid:1:swapper/0)minidump-id not found for ipa_fws\n[    1.053332] [    1.053332] (CPU:0-pid:1:swapper/0)subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    1.053428] [    1.053428] (CPU:0-pid:1:swapper/0)subsys-pil-tz soc:qcom,ipa_fws: for md_ipa_fws segments only will be dumped.\n[    1.053799] [    1.053799] (CPU:0-pid:1:swapper/0)minidump-id not found for a640_zap\n[    1.053812] [    1.053812] (CPU:0-pid:1:swapper/0)subsys-pil-tz soc:qcom,kgsl-hyp: for a640_zap segments only will be dumped.\n[    1.053889] [    1.053889] (CPU:0-pid:1:swapper/0)subsys-pil-tz soc:qcom,kgsl-hyp: for md_a640_zap segments only will be dumped.\n[    1.054170] [    1.054170] (CPU:0-pid:1:swapper/0)spcom: spcom_init: spcom driver version 2.1 23-April-2018.\n[    1.056254] [    1.056254] (CPU:0-pid:1:swapper/0)qiib_driver_data_init: unable to create logging context\n[    1.059397] [    1.059397] (CPU:0-pid:1:swapper/0)smp2p_sleepstate soc:qcom,smp2p_sleepstate: got smp2p-sleepstate-in irq 552\n[    1.064318] [    1.064318] (CPU:0-pid:1:swapper/0)msm_geni_serial c8c000.qcom,qup_uart: Wakeup byte 0xfd\n[    1.064383] [    1.064383] (CPU:0-pid:1:swapper/0)msm_geni_serial c8c000.qcom,qup_uart: wakeup_irq 0x220\n[    1.064406] [    1.064406] (CPU:0-pid:1:swapper/0)msm_geni_serial c8c000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    1.064433] [    1.064433] (CPU:0-pid:1:swapper/0)msm_geni_serial c8c000.qcom,qup_uart: Err in Rx IPC Log\n[    1.064442] [    1.064442] (CPU:0-pid:1:swapper/0)msm_geni_serial c8c000.qcom,qup_uart: Err in Tx IPC Log\n[    1.064452] [    1.064452] (CPU:0-pid:1:swapper/0)msm_geni_serial c8c000.qcom,qup_uart: Err in Pwr IPC Log\n[    1.064460] [    1.064460] (CPU:0-pid:1:swapper/0)msm_geni_serial c8c000.qcom,qup_uart: Err in Misc IPC Log\n[    1.064872] [    1.064872] (CPU:0-pid:1:swapper/0)c8c000.qcom,qup_uart: ttyHS0 at MMIO 0xc8c000 (irq = 501, base_baud = 0) is a MSM\n[    1.065125] [    1.065120] (CPU:0-pid:1:swapper/0)msm_geni_serial_init: Driver initialized\n[    1.066949] [    1.066944] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 618\n[    1.067286] [    1.067281] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 31 msm-rng-noc\n[    1.068454] [    1.068454] (CPU:0-pid:204:hwrng)random: crng init done\n[    1.072200] [    1.072200] (CPU:0-pid:1:swapper/0)diag: MUX: unable to register pcie operations for proc: 0, err: -22\n[    1.072210] [    1.072210] (CPU:0-pid:1:swapper/0)diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 0, err: -22\n[    1.117120] [    1.117120] (CPU:0-pid:1:swapper/0)diag: Unable to initialize POOL_COPY mempool, itemsize: 0 poolsize: 0\n[    1.117184] [    1.117184] (CPU:0-pid:1:swapper/0)diag: MUX: unable to register pcie operations for proc: 1, err: -22\n[    1.117193] [    1.117193] (CPU:0-pid:1:swapper/0)diag: MUX: unable to register PCIe operations, continuing with USB registrations for proc: 1, err: -22\n[    1.121617] [    1.121617] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:kgsl_iommu_test_device to group 11\n[    1.121778] [    1.121778] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:kgsl_iommu_coherent_test_device to group 12\n[    1.121891] [    1.121891] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:apps_iommu_test_device to group 13\n[    1.121966] [    1.121966] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:apps_iommu_coherent_test_device to group 14\n[    1.124087] [    1.124087] (CPU:0-pid:1:swapper/0)dsi_phy ae94400.qcom,mdss_dsi_phy0: failed to get memory resource: dyn_refresh_base\n[    1.124300] [    1.124300] (CPU:0-pid:1:swapper/0)msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-0\n[    1.124358] [    1.124358] (CPU:0-pid:1:swapper/0)dsi_phy ae96400.qcom,mdss_dsi_phy0: failed to get memory resource: dyn_refresh_base\n[    1.124461] [    1.124461] (CPU:0-pid:1:swapper/0)msm-dsi-phy:[dsi_phy_driver_probe] Probe successful for dsi-phy-1\n[    1.125422] [    1.125422] (CPU:0-pid:1:swapper/0)AXI: get_pdata(): Error: Client name not found\n[    1.125431] [    1.125431] (CPU:0-pid:1:swapper/0)AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    1.125440] [    1.125440] (CPU:0-pid:1:swapper/0)dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-0\n[    1.125631] [    1.125631] (CPU:0-pid:1:swapper/0)AXI: get_pdata(): Error: Client name not found\n[    1.125639] [    1.125639] (CPU:0-pid:1:swapper/0)AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    1.125646] [    1.125646] (CPU:0-pid:1:swapper/0)dsi-ctrl:[dsi_ctrl_dev_probe] Probe successful for dsi-ctrl-1\n[    1.126725] [    1.126725] (CPU:0-pid:1:swapper/0)OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    1.126823] [    1.126823] (CPU:0-pid:1:swapper/0)msm-dsi-panel:[dsi_panel_parse_reset_sequence:2067] RESET SEQ LENGTH = 24\n[    1.126867] [    1.126867] (CPU:0-pid:1:swapper/0)msm-dsi-panel:[dsi_panel_parse_misc_features:2117] dsi_panel_parse_misc_features: ulps feature disabled\n[    1.126881] [    1.126876] (CPU:0-pid:1:swapper/0)msm-dsi-panel:[dsi_panel_parse_misc_features:2123] dsi_panel_parse_misc_features: ulps during suspend feature disabled\n[    1.128017] [    1.128017] (CPU:0-pid:1:swapper/0)iommu: Adding device ae00000.qcom,mdss_mdp to group 15\n[    1.133613] [    1.133613] (CPU:0-pid:1:swapper/0)iommu: Adding device 2c6a000.qcom,gmu:gmu_user to group 16\n[    1.134319] [    1.134319] (CPU:0-pid:1:swapper/0)iommu: Adding device 2c6a000.qcom,gmu:gmu_kernel to group 17\n[    1.136080] [    1.136075] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 26 dest 512\n[    1.136409] [    1.136404] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 32 grp3d\n[    1.136438] [    1.136433] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 26 dest 10036\n[    1.136650] [    1.136645] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 33 cnoc\n[    1.136661] [    1.136656] (CPU:0-pid:1:swapper/0)query_client_usecase_all: query_start\n[    1.136733] [    1.136728] (CPU:0-pid:1:swapper/0)query_client_usecase_all: query_start\n[    1.138169] [    1.138169] (CPU:0-pid:1:swapper/0)iommu: Adding device 2ca0000.qcom,kgsl-iommu:gfx3d_user to group 18\n[    1.138366] [    1.138366] (CPU:0-pid:1:swapper/0)iommu: Adding device 2ca0000.qcom,kgsl-iommu:gfx3d_secure to group 19\n[    1.194580] [    1.194580] (CPU:0-pid:1:swapper/0)brd: module loaded\n[    1.205516] [    1.205516] (CPU:0-pid:1:swapper/0)loop: module loaded\n[    1.205791] [    1.205791] (CPU:0-pid:1:swapper/0)zram: Added device: zram0\n[    1.208758] [    1.208758] (CPU:0-pid:1:swapper/0)QSEECOM: qseecom_probe: qseecom.qsee_version = 0x1400000\n[    1.208785] [    1.208779] (CPU:0-pid:1:swapper/0)QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    1.208800] [    1.208795] (CPU:0-pid:1:swapper/0)QSEECOM: qseecom_probe: no-clock-support=0x1\n[    1.208805] [    1.208805] (CPU:0-pid:1:swapper/0)QSEECOM: qseecom_probe: qsee reentrancy support phase is not defined, setting to default 0\n[    1.208877] [    1.208877] (CPU:0-pid:1:swapper/0)QSEECOM: qseecom_probe: qseecom.whitelist_support = 1\n[    1.212524] [    1.212524] (CPU:0-pid:1:swapper/0)iommu: Adding device 1de0000.qcedev to group 20\n[    1.212875] [    1.212869] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 125 dest 512\n[    1.213642] [    1.213636] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 34 qcedev-noc\n[    1.213928] [    1.213928] (CPU:0-pid:1:swapper/0)QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.214838] [    1.214838] (CPU:0-pid:1:swapper/0)qce 1de0000.qcedev: QTI Crypto 5.4.2 device found @0x1de0000\n[    1.214867] [    1.214863] (CPU:0-pid:1:swapper/0)sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000001dc4000\n[    1.214875] [    1.214871] (CPU:0-pid:1:swapper/0)sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000001dc4000\n[    1.214883] [    1.214879] (CPU:0-pid:1:swapper/0)sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000001dc4000\n[    1.214891] [    1.214887] (CPU:0-pid:1:swapper/0)sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000001dc4000\n[    1.214899] [    1.214895] (CPU:0-pid:1:swapper/0)sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000001dc4000\n[    1.214909] [    1.214904] (CPU:0-pid:1:swapper/0)sps:BAM 0x0000000001dc4000 is registered.\n[    1.215039] [    1.215039] (CPU:0-pid:1:swapper/0)sps:BAM 0x0000000001dc4000 (va:0xffffff8016480000) enabled: ver:0x27, number of pipes:16\n[    1.215266] [    1.215266] (CPU:0-pid:1:swapper/0)QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 118\n[    1.215995] [    1.215995] (CPU:0-pid:1:swapper/0)iommu: Adding device 1de0000.qcedev:qcom_cedev_ns_cb to group 21\n[    1.216616] [    1.216616] (CPU:0-pid:1:swapper/0)qcedev_setup_context_bank Attached 1de0000.qcedev:qcom_cedev_ns_cb and create mapping\n[    1.216625] [    1.216625] (CPU:0-pid:1:swapper/0)qcedev_setup_context_bank Context Bank name:ns_context, is_secure:0, start_addr:0x60000000\n[    1.216858] [    1.216858] (CPU:0-pid:1:swapper/0)iommu: Adding device 1de0000.qcedev:qcom_cedev_s_cb to group 22\n[    1.218599] [    1.218599] (CPU:0-pid:1:swapper/0)qcedev_setup_context_bank Attached 1de0000.qcedev:qcom_cedev_s_cb and create mapping\n[    1.218608] [    1.218608] (CPU:0-pid:1:swapper/0)qcedev_setup_context_bank Context Bank name:secure_context, is_secure:1, start_addr:0xa0000000\n[    1.220548] [    1.220548] (CPU:0-pid:1:swapper/0)iommu: Adding device 1de0000.qcrypto to group 23\n[    1.220633] [    1.220628] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 125 dest 512\n[    1.221095] [    1.221090] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 35 qcrypto-noc\n[    1.221249] [    1.221249] (CPU:0-pid:1:swapper/0)QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.221950] [    1.221950] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: QTI Crypto 5.4.2 device found @0x1de0000\n[    1.222209] [    1.222209] (CPU:0-pid:1:swapper/0)QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 118\n[    1.222545] [    1.222545] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    1.222737] [    1.222737] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    1.222845] [    1.222845] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    1.222953] [    1.222953] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    1.223062] [    1.223062] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    1.223169] [    1.223169] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    1.223278] [    1.223278] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    1.223467] [    1.223467] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    1.223579] [    1.223579] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    1.223695] [    1.223695] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    1.223806] [    1.223806] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    1.223926] [    1.223926] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    1.224037] [    1.224037] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    1.224146] [    1.224146] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    1.224254] [    1.224254] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    1.224364] [    1.224364] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    1.224473] [    1.224473] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    1.224593] [    1.224593] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    1.224703] [    1.224703] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    1.224811] [    1.224811] (CPU:0-pid:1:swapper/0)qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    1.227337] [    1.227337] (CPU:0-pid:1:swapper/0)ufshcd-qcom 1d84000.ufshc: no vccq2-voltage-level property.\n[    1.229884] [    1.229884] (CPU:0-pid:1:swapper/0)qcom_ice_get_pdevice: found ice device ffffffd225501400\n[    1.229891] [    1.229891] (CPU:0-pid:1:swapper/0)qcom_ice_get_pdevice: matching platform device ffffffd22e496c00\n[    1.231113] [    1.231108] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 123 dest 512\n[    1.231575] [    1.231570] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 757\n[    1.231922] [    1.231917] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 36 ufshc_mem\n[    1.232221] [    1.232221] (CPU:0-pid:1:swapper/0)[UFS] hba->ufs_version : 0x300\n[    1.233869] [    1.233869] (CPU:0-pid:1:swapper/0)scsi host0: ufshcd\n[    1.238496] [    1.238496] (CPU:0-pid:1:swapper/0)qcom_ice 1d90000.ufsice: QC ICE 3.1.79 device found @0xffffff8016690000\n[    1.244733] [    1.244733] (CPU:0-pid:1:swapper/0)[UFS] ufshcd_add_sysfs_nodes +++\n[    1.244760] [    1.244760] (CPU:0-pid:1:swapper/0)[UFS] ufshcd_add_sysfs_nodes ---\n[    1.245118] [    1.245118] (CPU:0-pid:1:swapper/0)SCSI Media Changer driver v0.25 \n[    1.247580] [    1.247580] (CPU:0-pid:1:swapper/0)spmi_pmic_arb_debug 6b22000.qcom,spmi-debug: SPMI PMIC arbiter debug bus disabled by fuse\n[    1.247818] [    1.247818] (CPU:0-pid:1:swapper/0)Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    1.250296] [    1.250296] (CPU:0-pid:1:swapper/0)libphy: Fixed MDIO Bus: probed\n[    1.250326] [    1.250326] (CPU:0-pid:1:swapper/0)tun: Universal TUN/TAP device driver, 1.6\n[    1.250526] [    1.250526] (CPU:0-pid:1:swapper/0)sky2: driver version 1.30\n[    1.250880] [    1.250880] (CPU:0-pid:1:swapper/0)PPP generic driver version 2.4.2\n[    1.250989] [    1.250989] (CPU:0-pid:1:swapper/0)PPP BSD Compression module registered\n[    1.250998] [    1.250998] (CPU:0-pid:1:swapper/0)PPP Deflate Compression module registered\n[    1.251029] [    1.251029] (CPU:0-pid:1:swapper/0)PPP MPPE Compression module registered\n[    1.251042] [    1.251042] (CPU:0-pid:1:swapper/0)NET: Registered protocol family 24\n[    1.251069] [    1.251069] (CPU:0-pid:1:swapper/0)PPTP driver version 0.8.5\n[    1.251247] [    1.251247] (CPU:0-pid:1:swapper/0)Context not found\n[    1.251339] [    1.251339] (CPU:0-pid:1:swapper/0)CLD80211: Initializing\n[    1.251436] [    1.251436] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver r8152\n[    1.251457] [    1.251457] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver lan78xx\n[    1.251480] [    1.251480] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver asix\n[    1.251505] [    1.251505] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver ax88179_178a\n[    1.251527] [    1.251527] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver cdc_ether\n[    1.251554] [    1.251554] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver net1080\n[    1.251576] [    1.251576] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver cdc_subset\n[    1.251600] [    1.251600] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver zaurus\n[    1.251626] [    1.251626] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver cdc_ncm\n[    1.257188] [    1.257188] (CPU:0-pid:1:swapper/0)msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.258469] [    1.258469] (CPU:0-pid:1:swapper/0)msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    1.258896] [    1.258896] (CPU:0-pid:267:wk:async_run_e)ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.261799] [    1.261799] (CPU:0-pid:1:swapper/0)iommu: Adding device a600000.ssusb to group 24\n[    1.261841] [    1.261841] (CPU:0-pid:1:swapper/0)msm-dwc3 a600000.ssusb: [USB] dwc3_msm_probe, pdev->dev =a600000.ssusb\n[    1.265213] [    1.265213] (CPU:0-pid:1:swapper/0)dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.265606] [    1.265606] (CPU:0-pid:1:swapper/0)dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.267531] [    1.267531] (CPU:0-pid:1:swapper/0)msm-dwc3 a600000.ssusb: unable to get ssphy device\n[    1.270442] [    1.270442] (CPU:0-pid:1:swapper/0)iommu: Adding device a800000.ssusb to group 25\n[    1.270475] [    1.270475] (CPU:0-pid:1:swapper/0)msm-dwc3 a800000.ssusb: [USB] dwc3_msm_probe, pdev->dev =a800000.ssusb\n[    1.273623] [    1.273623] (CPU:0-pid:1:swapper/0)dwc3 a800000.dwc3: changing max_speed on rev 00000000\n[    1.273915] [    1.273915] (CPU:0-pid:1:swapper/0)dwc3 a800000.dwc3: Error getting ipc_log_ctxt\n[    1.275757] [    1.275752] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 101 dest 512\n[    1.276392] [    1.276387] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 101 dest 676\n[    1.276686] [    1.276681] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 751\n[    1.277032] [    1.277027] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 37 usb1\n[    1.277146] [    1.277146] (CPU:0-pid:1:swapper/0)msm-dwc3 a800000.ssusb: get extcon 0 failed\n[    1.281638] [    1.281638] (CPU:0-pid:1:swapper/0)ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    1.281648] [    1.281648] (CPU:0-pid:1:swapper/0)ehci-pci: EHCI PCI platform driver\n[    1.281669] [    1.281669] (CPU:0-pid:1:swapper/0)ehci-platform: EHCI generic platform driver\n[    1.282230] [    1.282230] (CPU:0-pid:1:swapper/0)ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    1.282253] [    1.282253] (CPU:0-pid:1:swapper/0)ohci-pci: OHCI PCI platform driver\n[    1.282282] [    1.282282] (CPU:0-pid:1:swapper/0)ohci-platform: OHCI generic platform driver\n[    1.283678] [    1.283678] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver usb-storage\n[    1.283702] [    1.283702] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver usb_ehset_test\n[    1.283724] [    1.283724] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver lvs\n[    1.285412] [    1.285412] (CPU:0-pid:1:swapper/0)fgsi_init: Err allocating ipc_log_ctxt\n[    1.286560] [    1.286560] (CPU:0-pid:1:swapper/0)qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.287301] [    1.287301] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver xpad\n[    1.287311] [    1.287311] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_i2c_init:2267] GTx5xx HW layer init\n[    1.287333] [    1.287333] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_core_init:3375] Core layer init\n[    1.287340] [    1.287340] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_core_init:3378] initilize goodix module\n[    1.287349] [    1.287349] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_core_init:3385] goodix_debugfs_init\n[    1.287526] [    1.287526] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_fwu_module_init:1619] goodix_fwu_module_init\n[    1.287535] [    1.287535] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_register_ext_module:189] goodix_register_ext_module IN\n[    1.287545] [    1.287545] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_register_ext_module:194] goodix_register_ext_module OUT\n[    1.287553] [    1.287553] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_gsx_gesture_init:1053] gesture module init\n[    1.287561] [    1.287561] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_register_ext_module:189] goodix_register_ext_module IN\n[    1.287569] [    1.287569] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_register_ext_module:194] goodix_register_ext_module OUT\n[    1.287709] [    1.287709] (CPU:0-pid:199:wk:__do_regist)[GTP-INF][__do_register_ext_module:97] __do_register_ext_module IN, goodix_modules.core_exit:1\n[    1.287719] [    1.287719] (CPU:0-pid:199:wk:__do_regist)[GTP-INF][__do_register_ext_module:98] register external module goodix-fwu\n[    1.287759] [    1.287759] (CPU:0-pid:104:wk:__do_regist)[GTP-INF][__do_register_ext_module:97] __do_register_ext_module IN, goodix_modules.core_exit:1\n[    1.287768] [    1.287768] (CPU:0-pid:104:wk:__do_regist)[GTP-INF][__do_register_ext_module:98] register external module Goodix_gsx_gesture\n[    1.288295] [    1.288295] (CPU:0-pid:1:swapper/0)[ASUS_LID] lid_driver_probe : Start !!!\n[    1.288305] [    1.288305] (CPU:0-pid:1:swapper/0)asustek_lid soc:asustek_lid: ASUSTek: lid_driver_probe\n[    1.288318] [    1.288318] (CPU:0-pid:1:swapper/0)[ASUS_LID] lid_driver_probe : set ket capabilities\n[    1.288386] [    1.288386] (CPU:0-pid:1:swapper/0)[ASUS_LID] asustek_lid_pinctrl_configure \n[    1.288496] [    1.288496] (CPU:0-pid:1:swapper/0)input: lid_input as /devices/platform/soc/soc:asustek_lid/input/input1\n[    1.288598] [    1.288598] (CPU:0-pid:1:swapper/0)[ASUS_LID] lid_driver_probe : input register ok\n[    1.288610] [    1.288610] (CPU:0-pid:1:swapper/0)[ASUS_LID] lid_driver_probe : create sysfs ok\n[    1.288618] [    1.288618] (CPU:0-pid:1:swapper/0)[ASUS_LID] asustek_lid_get_devtree \n[    1.288656] [    1.288656] (CPU:0-pid:1:swapper/0)[ASUS_LID] lid_driver_probe : request gpio-irq ok\n[    1.289086] [    1.289086] (CPU:0-pid:1:swapper/0)[ASUS_LID] lid_driver_probe : request irq handler ok\n[    1.289120] [    1.289120] (CPU:0-pid:1:swapper/0)[ASUS_LID] Check status, SW_LID report value = 0\n[    1.289130] [    1.289130] (CPU:0-pid:1:swapper/0)[ASUS_LID] lid_driver_probe : End !!!\n[    1.289542] [    1.289542] (CPU:0-pid:1:swapper/0)[ASUS_LID2] lid2_driver_probe : Start !!!\n[    1.289552] [    1.289552] (CPU:0-pid:1:swapper/0)asustek_lid2 soc:asustek_lid2: ASUSTek: lid2_driver_probe\n[    1.289563] [    1.289563] (CPU:0-pid:1:swapper/0)[ASUS_LID2] lid2_driver_probe : set ket capabilities\n[    1.289623] [    1.289623] (CPU:0-pid:1:swapper/0)[ASUS_LID2] asustek_lid2_pinctrl_configure \n[    1.289704] [    1.289704] (CPU:0-pid:1:swapper/0)input: lid2_input as /devices/platform/soc/soc:asustek_lid2/input/input2\n[    1.289801] [    1.289801] (CPU:0-pid:1:swapper/0)[ASUS_LID2] lid2_driver_probe : input register ok\n[    1.289813] [    1.289813] (CPU:0-pid:1:swapper/0)[ASUS_LID2] lid2_driver_probe : create sysfs ok\n[    1.289822] [    1.289822] (CPU:0-pid:1:swapper/0)[ASUS_LID2] asustek_lid2_get_devtree \n[    1.289840] [    1.289840] (CPU:0-pid:1:swapper/0)[ASUS_LID2] lid2_driver_probe : request gpio-irq ok\n[    1.290121] [    1.290121] (CPU:0-pid:1:swapper/0)[ASUS_LID2] lid2_driver_probe : request irq handler ok\n[    1.290148] [    1.290148] (CPU:0-pid:1:swapper/0)[ASUS_LID2] Check status, SW_CAMERA_LENS_COVER report value = 0\n[    1.290155] [    1.290155] (CPU:0-pid:1:swapper/0)[ASUS_LID2] lid2_driver_probe : End !!!\n[    1.291014] [    1.291014] (CPU:0-pid:1:swapper/0)qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm8150@0:qcom,pm8150_rtc: rtc core: registered qpnp_rtc as rtc0\n[    1.291349] [    1.291349] (CPU:0-pid:1:swapper/0)i2c /dev entries driver\n[    1.291942] [    1.291942] (CPU:0-pid:1:swapper/0)i2c_geni 884000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.292978] [    1.292978] (CPU:0-pid:1:swapper/0)i2c_geni 890000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.293921] [    1.293921] (CPU:0-pid:1:swapper/0)i2c_geni 890000.i2c: i2c error :-107\n[    1.294067] [    1.294067] (CPU:0-pid:1:swapper/0)i2c_geni 890000.i2c: i2c error :-107\n[    1.294206] [    1.294206] (CPU:0-pid:1:swapper/0)i2c_geni 890000.i2c: i2c error :-107\n[    1.294362] [    1.294362] (CPU:0-pid:1:swapper/0)i2c_geni 890000.i2c: i2c error :-107\n[    1.294372] [    1.294372] (CPU:0-pid:1:swapper/0)I2C PMIC: i2c_pmic_read: i2c_pmic_read failed for 3 retries, rc = -107\n[    1.294382] [    1.294382] (CPU:0-pid:1:swapper/0)I2C PMIC: i2c_pmic_determine_initial_status: Couldn't read irq data rc=-107\n[    1.294393] [    1.294393] (CPU:0-pid:1:swapper/0)I2C PMIC: i2c_pmic_probe: Couldn't determine initial status rc=-107\n[    1.294480] [    1.294480] (CPU:0-pid:1:swapper/0)i2c_pmic: probe of 0-0010 failed with error -107\n[    1.294738] [    1.294738] (CPU:0-pid:1:swapper/0)i2c_geni 890000.i2c: i2c error :-107\n[    1.294877] [    1.294877] (CPU:0-pid:1:swapper/0)i2c_geni 890000.i2c: i2c error :-107\n[    1.295016] [    1.295016] (CPU:0-pid:1:swapper/0)i2c_geni 890000.i2c: i2c error :-107\n[    1.295190] [    1.295190] (CPU:0-pid:1:swapper/0)i2c_geni 890000.i2c: i2c error :-107\n[    1.295199] [    1.295199] (CPU:0-pid:1:swapper/0)I2C PMIC: i2c_pmic_read: i2c_pmic_read failed for 3 retries, rc = -107\n[    1.295206] [    1.295206] (CPU:0-pid:1:swapper/0)I2C PMIC: i2c_pmic_determine_initial_status: Couldn't read irq data rc=-107\n[    1.295214] [    1.295214] (CPU:0-pid:1:swapper/0)I2C PMIC: i2c_pmic_probe: Couldn't determine initial status rc=-107\n[    1.295256] [    1.295256] (CPU:0-pid:1:swapper/0)i2c_pmic: probe of 0-000c failed with error -107\n[    1.295647] [    1.295647] (CPU:0-pid:1:swapper/0)i2c_geni 89c000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.296487] [    1.296487] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_i2c_probe:2152] goodix_i2c_probe IN\n[    1.296499] [    1.296499] (CPU:0-pid:1:swapper/0)[GTP-ERR][goodix_parse_dt:159] Invalid reset-gpio in dt: -2\n[    1.296510] [    1.296510] (CPU:0-pid:1:swapper/0)goodix_i2c: probe of 2-005d failed with error -22\n[    1.297859] [    1.297859] (CPU:0-pid:1:swapper/0)i2c_geni a84000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.298679] [    1.298679] (CPU:0-pid:1:swapper/0)i2c_geni a88000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.299128] [    1.299128] (CPU:0-pid:255:wk:async_run_e)nq-nci 2-0028: ese GPIO <OPTIONAL> error getting from OF node\n[    1.299186] [    1.299186] (CPU:0-pid:255:wk:async_run_e)nq-nci 2-0028: nqx_probe: ese gpio not provided\n[    1.300936] [    1.300936] (CPU:0-pid:1:swapper/0)i2c_geni c80000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.301614] [    1.301614] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_i2c_probe:2152] goodix_i2c_probe IN\n[    1.301626] [    1.301626] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_parse_dt:162] Parse reset-gpio[135] from dt\n[    1.301636] [    1.301636] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_parse_dt:171] Parse irq-gpio[122] from dt\n[    1.301658] [    1.301658] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_parse_dt:255] ***key:158, 172, 217, 331, 332\n[    1.301666] [    1.301666] (CPU:0-pid:1:swapper/0)[GTP-DBG][goodix_parse_dt:264] [DT]id:10, x:1080, y:2340, w:512, p:512\n[    1.301849] [    1.301849] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_probe:3222] goodix_ts_probe IN\n[    1.301862] [    1.301862] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_power_init:2226] Power init\n[    1.301921] [    1.301921] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_power_on:2258] Device power on\n[    1.301940] [    1.301940] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_power_on:2265] regulator enable SUCCESS\n[    1.333086] [    1.333086] (CPU:0-pid:255:wk:async_run_e)nq-nci 2-0028: nfcc_hw_check: - NFCC HW not Supported\n[    1.333146] [    1.333146] (CPU:0-pid:255:wk:async_run_e)nq-nci 2-0028: nqx_probe: probing NFCC NQxxx exited successfully\n[    1.355005] [    1.355005] (CPU:0-pid:267:wk:async_run_e)qcom_ice 1d90000.ufsice: QC ICE 3.1.79 device found @0xffffff8016690000\n[    1.373550] [    1.373550] (CPU:0-pid:267:wk:async_run_e)ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.422698] [    1.422698] (CPU:0-pid:267:wk:async_run_e)ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[4, 4], lane[2, 2], pwr[FAST MODE, FAST MODE], rate = 1\n[    1.423161] [    1.423161] (CPU:0-pid:267:wk:async_run_e)scsi 0:0:0:49488: Well-known LUN    SAMSUNG  KLUFG8RHDA-B2D1  0100 PQ: 0 ANSI: 6\n[    1.423975] [    1.423975] (CPU:0-pid:267:wk:async_run_e)scsi 0:0:0:49456: Well-known LUN    SAMSUNG  KLUFG8RHDA-B2D1  0100 PQ: 0 ANSI: 6\n[    1.424680] [    1.424680] (CPU:0-pid:267:wk:async_run_e)scsi 0:0:0:49476: Well-known LUN    SAMSUNG  KLUFG8RHDA-B2D1  0100 PQ: 0 ANSI: 6\n[    1.428516] [    1.428516] (CPU:0-pid:267:wk:async_run_e)scsi 0:0:0:0: Direct-Access     SAMSUNG  KLUFG8RHDA-B2D1  0100 PQ: 0 ANSI: 6\n[    1.429005] [    1.429005] (CPU:0-pid:267:wk:async_run_e)scsi 0:0:0:1: Direct-Access     SAMSUNG  KLUFG8RHDA-B2D1  0100 PQ: 0 ANSI: 6\n[    1.429425] [    1.429425] (CPU:0-pid:267:wk:async_run_e)scsi 0:0:0:2: Direct-Access     SAMSUNG  KLUFG8RHDA-B2D1  0100 PQ: 0 ANSI: 6\n[    1.429841] [    1.429841] (CPU:0-pid:267:wk:async_run_e)scsi 0:0:0:3: Direct-Access     SAMSUNG  KLUFG8RHDA-B2D1  0100 PQ: 0 ANSI: 6\n[    1.430309] [    1.430309] (CPU:0-pid:267:wk:async_run_e)scsi 0:0:0:4: Direct-Access     SAMSUNG  KLUFG8RHDA-B2D1  0100 PQ: 0 ANSI: 6\n[    1.430728] [    1.430728] (CPU:0-pid:267:wk:async_run_e)scsi 0:0:0:5: Direct-Access     SAMSUNG  KLUFG8RHDA-B2D1  0100 PQ: 0 ANSI: 6\n[    1.431152] [    1.431152] (CPU:0-pid:267:wk:async_run_e)scsi 0:0:0:6: Direct-Access     SAMSUNG  KLUFG8RHDA-B2D1  0100 PQ: 0 ANSI: 6\n[    1.433265] [    1.433265] (CPU:0-pid:319:wk:async_run_e)sd 0:0:0:0: [sda] Write Protect is off\n[    1.433276] [    1.433276] (CPU:0-pid:319:wk:async_run_e)sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.433933] [    1.433933] (CPU:0-pid:319:wk:async_run_e)sd 0:0:0:0: [sda] Optimal transfer size 524288 bytes\n[    1.434927] [    1.434927] (CPU:0-pid:267:wk:async_run_e)sd 0:0:0:1: [sdb] Write Protect is off\n[    1.434937] [    1.434937] (CPU:0-pid:267:wk:async_run_e)sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.437680] [    1.437680] (CPU:0-pid:267:wk:async_run_e)sd 0:0:0:1: [sdb] Optimal transfer size 524288 bytes\n[    1.438613] [    1.438613] (CPU:0-pid:319:wk:async_run_e) sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21 sda22 sda23 sda24 sda25 sda26 sda27 sda28\n[    1.439080] [    1.439080] (CPU:0-pid:255:wk:async_run_e)sd 0:0:0:2: [sdc] Write Protect is off\n[    1.439113] [    1.439113] (CPU:0-pid:255:wk:async_run_e)sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.439141] [    1.439141] (CPU:0-pid:327:wk:async_run_e)sd 0:0:0:3: [sdd] Write Protect is off\n[    1.439172] [    1.439172] (CPU:0-pid:327:wk:async_run_e)sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.439410] [    1.439410] (CPU:0-pid:255:wk:async_run_e)sd 0:0:0:2: [sdc] Optimal transfer size 524288 bytes\n[    1.439642] [    1.439642] (CPU:0-pid:327:wk:async_run_e)sd 0:0:0:3: [sdd] Optimal transfer size 524288 bytes\n[    1.442239] [    1.442239] (CPU:0-pid:267:wk:async_run_e) sdb: sdb1 sdb2\n[    1.443784] [    1.443784] (CPU:0-pid:255:wk:async_run_e) sdc: sdc1 sdc2\n[    1.443884] [    1.443884] (CPU:0-pid:327:wk:async_run_e) sdd: sdd1 sdd2 sdd3\n[    1.446280] [    1.446280] (CPU:0-pid:267:wk:async_run_e)sd 0:0:0:5: [sdf] Write Protect is off\n[    1.446290] [    1.446290] (CPU:0-pid:267:wk:async_run_e)sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    1.446635] [    1.446635] (CPU:0-pid:255:wk:async_run_e)sd 0:0:0:6: [sdg] Write Protect is off\n[    1.446645] [    1.446645] (CPU:0-pid:255:wk:async_run_e)sd 0:0:0:6: [sdg] Mode Sense: 00 32 00 10\n[    1.446673] [    1.446673] (CPU:0-pid:267:wk:async_run_e)sd 0:0:0:5: [sdf] Optimal transfer size 524288 bytes\n[    1.447125] [    1.447125] (CPU:0-pid:255:wk:async_run_e)sd 0:0:0:6: [sdg] Optimal transfer size 524288 bytes\n[    1.449929] [    1.449929] (CPU:0-pid:267:wk:async_run_e) sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6\n[    1.450303] [    1.450303] (CPU:0-pid:255:wk:async_run_e) sdg: sdg1 sdg2 sdg3 sdg4 sdg5 sdg6\n[    1.452637] [    1.452637] (CPU:0-pid:328:wk:async_run_e)sd 0:0:0:4: [sde] Write Protect is off\n[    1.452646] [    1.452646] (CPU:0-pid:328:wk:async_run_e)sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    1.452877] [    1.452877] (CPU:0-pid:328:wk:async_run_e)sd 0:0:0:4: [sde] Optimal transfer size 524288 bytes\n[    1.455529] [    1.455529] (CPU:0-pid:328:wk:async_run_e) sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51 sde52 sde53 sde54 sde55 sde56 sde57 sde58 sde59 sde60 sde61\n[    1.601970] [    1.601970] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_pinctrl_init:2320] goodix_ts_pinctrl_init start\n[    1.602146] [    1.602146] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_pinctrl_init:2348] goodix_ts_pinctrl_init complete\n[    1.602198] [    1.602198] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_gpio_setup:2375] GPIO setup,reset-gpio:135, irq-gpio:122\n[    1.602211] [    1.602211] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_gpio_setup:2376] before setup gpio reset = 0\n[    1.602249] [    1.602249] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_gpio_setup:2399] reset touch ic for init\n[    1.713380] [    1.713380] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_gpio_setup:2405] gpio reset = 1\n[    1.713390] [    1.713390] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_gpio_setup:2406] gpio irq = 0\n[    1.713440] [    1.713440] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_hw_reset:1524] HW reset start\n[    1.713449] [    1.713449] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_hw_reset:1570] reg.esd is NULL, skip dynamic esd init\n[    1.713457] [    1.713457] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_hw_reset:1572] HW reset complete\n[    1.713729] [    1.713729] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_probe:3279] i2c test SUCCESS\n[    1.713809] [    1.713809] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_probe:3289] ***start cfg_bin_proc SUCCESS\n[    1.713886] [    1.713886] (CPU:0-pid:332:goodix-parse_cf)[GTP-INF][goodix_read_cfg_bin:493] cfg_bin_name:goodix_cfg_group.bin\n[    1.716241] [    1.716241] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_ts_probe:3335] goodix_ts_probe OUT, r:0\n[    1.716266] [    1.716266] (CPU:0-pid:1:swapper/0)[GTP-INF][goodix_i2c_probe:2218] goodix_i2c_probe OUT\n[    1.716728] [    1.716728] (CPU:0-pid:1:swapper/0)i2c_geni c84000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.717375] [    1.717375] (CPU:0-pid:1:swapper/0)rt1711_i2c_probe\n[    1.717384] [    1.717384] (CPU:0-pid:1:swapper/0)I2C functionality : OK...\n[    1.720384] [    1.720384] (CPU:0-pid:1:swapper/0)0\n[    1.720392] [    1.720392] (CPU:0-pid:1:swapper/0)pr_info : t2-t1 = 7\n[    1.720399] [    1.720399] (CPU:0-pid:1:swapper/0)1\n[    1.720405] [    1.720405] (CPU:0-pid:1:swapper/0)pr_info : t2-t1 = 5\n[    1.720412] [    1.720412] (CPU:0-pid:1:swapper/0)2\n[    1.720418] [    1.720418] (CPU:0-pid:1:swapper/0)pr_info : t2-t1 = 5\n[    1.720424] [    1.720424] (CPU:0-pid:1:swapper/0)3\n[    1.720430] [    1.720430] (CPU:0-pid:1:swapper/0)pr_info : t2-t1 = 5\n[    1.720437] [    1.720437] (CPU:0-pid:1:swapper/0)4\n[    1.720443] [    1.720443] (CPU:0-pid:1:swapper/0)pr_info : t2-t1 = 6\n[    1.720450] [    1.720450] (CPU:0-pid:1:swapper/0)5\n[    1.720457] [    1.720457] (CPU:0-pid:1:swapper/0)pr_info : t2-t1 = 6\n[    1.720463] [    1.720463] (CPU:0-pid:1:swapper/0)6\n[    1.720469] [    1.720469] (CPU:0-pid:1:swapper/0)pr_info : t2-t1 = 5\n[    1.720475] [    1.720475] (CPU:0-pid:1:swapper/0)7\n[    1.720480] [    1.720480] (CPU:0-pid:1:swapper/0)pr_info : t2-t1 = 5\n[    1.720486] [    1.720486] (CPU:0-pid:1:swapper/0)8\n[    1.720492] [    1.720492] (CPU:0-pid:1:swapper/0)pr_info : t2-t1 = 5\n[    1.720498] [    1.720498] (CPU:0-pid:1:swapper/0)9\n[    1.720503] [    1.720503] (CPU:0-pid:1:swapper/0)pr_info : t2-t1 = 5\n[    1.720510] [    1.720510] (CPU:0-pid:1:swapper/0)rt_parse_dt\n[    1.720524] [    1.720524] (CPU:0-pid:1:swapper/0)[Bottom_PD] rt_parse_dt g_ASUS_hwID is 7, g_ASUS_prjID is 3\n[    1.720535] [    1.720535] (CPU:0-pid:1:swapper/0)rt1711h_chipID = 0x2173\n[    1.720546] [    1.720546] (CPU:0-pid:1:swapper/0)regmap_device_register: name = rt1711-4e\n[    1.720586] [    1.720586] (CPU:0-pid:1:swapper/0) rt_regmap_rt1711-4e: rt register cache data init\n[    1.720599] [    1.720599] (CPU:0-pid:1:swapper/0) rt_regmap_rt1711-4e: cache cata init successfully\n[    1.720715] [    1.720715] (CPU:0-pid:1:swapper/0)tcpc_device_register register tcpc device (type_c_port0)\n[    1.720799] [    1.720799] (CPU:0-pid:1:swapper/0)PD Timer number = 59\n[    1.720837] [    1.720837] (CPU:0-pid:91:pd_dbg_info)///PD dbg info 481d\n[    1.720852] [    1.720846] (CPU:0-pid:91:pd_dbg_info)<    1.720>0\n               <    1.720>pd_dbg_info : t2-t1 = 22\n               <    1.720>1\n               <    1.720>pd_dbg_info : t2-t1 = 0\n               <    1.720>2\n               <    1.720>pd_dbg_\n[    1.720860] [    1.720855] (CPU:0-pid:91:pd_dbg_info)info : t2-t1 = 0\n               <    1.720>3\n               <    1.720>pd_dbg_info : t2-t1 = 0\n               <    1.720>4\n               <    1.720>pd_dbg_info : t2-t1 = 0\n               <    1.720>5\n               < \n[    1.720868] [    1.720863] (CPU:0-pid:91:pd_dbg_info)   1.720>pd_dbg_info : t2-t1 = 0\n               <    1.720>6\n               <    1.720>pd_dbg_info : t2-t1 = 0\n               <    1.720>7\n               <    1.720>pd_dbg_info : t2-t1 = 0\n[    1.720871] [    1.720871] (CPU:0-pid:91:pd_dbg_info)\n               <    1.720>8\n               <    1.720>pd_dbg_info : t2-t1 = 0\n               <    1.720>9\n               <    1.720>pd_dbg_info : t2-t1 = 0\n[    1.720942] [    1.720942] (CPU:0-pid:1:swapper/0)tcpci_timer_init : init OK\n[    1.720952] [    1.720952] (CPU:0-pid:1:swapper/0)pd_parse_pdata\n[    1.724395] [    1.724395] (CPU:0-pid:1:swapper/0)pd_parse_pdata src pdo data =\n[    1.724403] [    1.724403] (CPU:0-pid:1:swapper/0)pd_parse_pdata 0: 0x00019032\n[    1.724412] [    1.724412] (CPU:0-pid:1:swapper/0)pd_parse_pdata snk pdo data =\n[    1.724420] [    1.724420] (CPU:0-pid:1:swapper/0)pd_parse_pdata 0: 0x0001912c\n[    1.724427] [    1.724427] (CPU:0-pid:1:swapper/0)pd_parse_pdata 1: 0x0002d0a5\n[    1.724435] [    1.724435] (CPU:0-pid:1:swapper/0)pd_parse_pdata id vdos data =\n[    1.724441] [    1.724441] (CPU:0-pid:1:swapper/0)pd_parse_pdata 0: 0xd00029cf\n[    1.724447] [    1.724447] (CPU:0-pid:1:swapper/0)pd_parse_pdata 1: 0x00000000\n[    1.724454] [    1.724454] (CPU:0-pid:1:swapper/0)pd_parse_pdata 2: 0x00010000\n[    1.724460] [    1.724460] (CPU:0-pid:1:swapper/0)pd_parse_pdata charging_policy = 34\n[    1.724466] [    1.724466] (CPU:0-pid:1:swapper/0)pd_parse_pdata_bats Battery NR = 1\n[    1.724480] [    1.724480] (CPU:0-pid:1:swapper/0)pd_parse_pdata_bats fix_bat_info[0].mfrs_info.vid = 0x29cf, .mfrs_info.pid = 0x1711, .mfrs_string = bat1, .bat_design_cap = 3000\n[    1.724487] [    1.724487] (CPU:0-pid:1:swapper/0)pd_parse_pdata_countries Country NR = 0\n[    1.724498] [    1.724498] (CPU:0-pid:1:swapper/0)pd_parse_log_src_cap_ext vid = 0x29cf, pid = 0x1711, xid = 0x0, fw_ver = 0x2, hw_ver = 0x1\n[    1.724506] [    1.724506] (CPU:0-pid:1:swapper/0)pd_parse_log_src_cap_ext voltage_regulation = 0, hold_time_ms = 0, compliance = 0x0, touch_current = 0x0, peak_current = 0 0 0\n[    1.724514] [    1.724514] (CPU:0-pid:1:swapper/0)pd_parse_log_src_cap_ext touch_temp = 0, source_inputs = 0x0, batteries = 0x0, source_pdp = 0x2\n[    1.724521] [    1.724521] (CPU:0-pid:1:swapper/0)pd_parse_pdata_mfrs VID = 0x29cf, PID = 0x5081\n[    1.724530] [    1.724530] (CPU:0-pid:1:swapper/0)pd_parse_pdata_mfrs PD mfrs_string = RichtekTCPC\n[    1.725335] [    1.725335] (CPU:0-pid:1:swapper/0)dpm_caps: local_dr_power\n[    1.725342] [    1.725342] (CPU:0-pid:1:swapper/0)dpm_caps: local_dr_data\n[    1.725350] [    1.725350] (CPU:0-pid:1:swapper/0)dpm_caps: local_ext_power\n[    1.725357] [    1.725357] (CPU:0-pid:1:swapper/0)dpm_caps: local_usb_comm\n[    1.725364] [    1.725364] (CPU:0-pid:1:swapper/0)dpm_caps: local_usb_suspend\n[    1.725371] [    1.725371] (CPU:0-pid:1:swapper/0)dpm_caps: local_high_cap\n[    1.725378] [    1.725378] (CPU:0-pid:1:swapper/0)dpm_caps: local_give_back\n[    1.725384] [    1.725384] (CPU:0-pid:1:swapper/0)dpm_caps: local_no_suspend\n[    1.725390] [    1.725390] (CPU:0-pid:1:swapper/0)dpm_caps: local_vconn_supply\n[    1.725396] [    1.725396] (CPU:0-pid:1:swapper/0)dpm_caps: attemp_discover_cable_dfp\n[    1.725403] [    1.725403] (CPU:0-pid:1:swapper/0)dpm_caps: attemp_enter_dp_mode\n[    1.725409] [    1.725409] (CPU:0-pid:1:swapper/0)dpm_caps: attemp_discover_cable\n[    1.725415] [    1.725415] (CPU:0-pid:1:swapper/0)dpm_caps: attemp_discover_id\n[    1.725421] [    1.725421] (CPU:0-pid:1:swapper/0)dpm_caps: pr_reject_as_source\n[    1.725427] [    1.725427] (CPU:0-pid:1:swapper/0)dpm_caps: pr_reject_as_sink\n[    1.725434] [    1.725434] (CPU:0-pid:1:swapper/0)dpm_caps: pr_check_gp_source\n[    1.725440] [    1.725440] (CPU:0-pid:1:swapper/0)dpm_caps: pr_check_gp_sink\n[    1.725446] [    1.725446] (CPU:0-pid:1:swapper/0)dpm_caps: dr_reject_as_dfp\n[    1.725452] [    1.725452] (CPU:0-pid:1:swapper/0)dpm_caps: dr_reject_as_ufp\n[    1.725459] [    1.725459] (CPU:0-pid:1:swapper/0)dpm_caps = 0x0010a18b\n[    1.726052] [    1.726052] (CPU:0-pid:1:swapper/0)dp, svid\r\n[    1.726059] [    1.726059] (CPU:0-pid:1:swapper/0)dp, ufp_np\n[    1.726067] [    1.726067] (CPU:0-pid:1:swapper/0)dp, dfp_np\n[    1.726081] [    1.726081] (CPU:0-pid:1:swapper/0)dp, 1st_connection\n[    1.726090] [    1.726090] (CPU:0-pid:1:swapper/0)dp, 2nd_connection\n[    1.726990] [    1.726990] (CPU:0-pid:1:swapper/0)usb_type_c 7-004e: PD_REV30\n[    1.727338] [    1.727338] (CPU:0-pid:1:swapper/0)rt1711_init_alert name = type_c_port0, gpio = 103\n[    1.727362] [    1.727362] (CPU:0-pid:1:swapper/0)rt1711_init_alert : IRQ number = 276\n[    1.727449] [    1.727449] (CPU:0-pid:1:swapper/0)IRQF_NO_THREAD Test\r\n[    1.727867] [    1.727867] (CPU:0-pid:1:swapper/0)rt1711_init_alert: Set rt1711 pinctrl state\n[    1.727969] [    1.727969] (CPU:0-pid:1:swapper/0)rt1711_init_alert: Set rt1711 pinctrl state over\n[    1.727995] [    1.727995] (CPU:0-pid:1:swapper/0)rt1711_i2c_probe probe OK!\n[    1.729494] [    1.729494] (CPU:0-pid:1:swapper/0)[debuginit] initcall geni_i2c_driver_init+0x0/0x20 returned 0 after 427844 usecs\n[    1.729677] [    1.729677] (CPU:0-pid:1:swapper/0)IR NEC protocol handler initialized\n[    1.729686] [    1.729686] (CPU:0-pid:1:swapper/0)IR RC5(x/sz) protocol handler initialized\n[    1.729694] [    1.729694] (CPU:0-pid:1:swapper/0)IR RC6 protocol handler initialized\n[    1.729703] [    1.729703] (CPU:0-pid:1:swapper/0)IR JVC protocol handler initialized\n[    1.729711] [    1.729711] (CPU:0-pid:1:swapper/0)IR Sony protocol handler initialized\n[    1.729719] [    1.729719] (CPU:0-pid:1:swapper/0)IR SANYO protocol handler initialized\n[    1.729725] [    1.729725] (CPU:0-pid:1:swapper/0)IR Sharp protocol handler initialized\n[    1.729732] [    1.729732] (CPU:0-pid:1:swapper/0)IR MCE Keyboard/mouse protocol handler initialized\n[    1.729739] [    1.729739] (CPU:0-pid:1:swapper/0)IR XMP protocol handler initialized\n[    1.731945] [    1.731945] (CPU:0-pid:1:swapper/0)iommu: Adding device 9800000.qcom,msm_npu to group 26\n[    1.732050] [    1.732050] (CPU:0-pid:1:swapper/0)msm_npu: unable to get qfprom_physical resource\n[    1.741525] [    1.741525] (CPU:0-pid:1:swapper/0)iommu: Adding device aa00000.qcom,vidc:non_secure_cb to group 27\n[    1.742213] [    1.742213] (CPU:0-pid:1:swapper/0)iommu: Adding device aa00000.qcom,vidc:secure_non_pixel_cb to group 28\n[    1.744353] [    1.744353] (CPU:0-pid:91:pd_dbg_info)///PD dbg info 33d\n[    1.744362] [    1.744362] (CPU:0-pid:91:pd_dbg_info)<    1.726>TCPC-PE:pd_core_init\r\n[    1.744852] [    1.744852] (CPU:0-pid:1:swapper/0)iommu: Adding device aa00000.qcom,vidc:secure_bitstream_cb to group 29\n[    1.746336] [    1.746336] (CPU:0-pid:1:swapper/0)iommu: Adding device aa00000.qcom,vidc:secure_pixel_cb to group 30\n[    1.747652] [    1.747652] (CPU:0-pid:1:swapper/0)platform aa00000.qcom,vidc:qcom,msm-vidc,mem_cdsp: assigned reserved memory node cdsp_region\n[    1.750142] [    1.750142] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 31\n[    1.750380] [    1.750380] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 32\n[    1.750459] [    1.750459] (CPU:0-pid:1:swapper/0)platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node camera_region\n[    1.750820] [    1.750820] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 33\n[    1.751065] [    1.751065] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 34\n[    1.751461] [    1.751461] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_fd to group 35\n[    1.751692] [    1.751692] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_lrme to group 36\n[    1.754068] [    1.754062] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 589\n[    1.754678] [    1.754673] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 37 cam_ahb\n[    1.754917] [    1.754912] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 136 dest 512\n[    1.755237] [    1.755232] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 38 cam_hf_1_mnoc\n[    1.755401] [    1.755395] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 146 dest 778\n[    1.755478] [    1.755473] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 39 cam_hf_1_camnoc\n[    1.755605] [    1.755600] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 145 dest 512\n[    1.755899] [    1.755894] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 40 cam_hf_2_mnoc\n[    1.756038] [    1.756033] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 147 dest 778\n[    1.756107] [    1.756103] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 41 cam_hf_2_camnoc\n[    1.756235] [    1.756229] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 137 dest 512\n[    1.756548] [    1.756543] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 42 cam_sf_1_mnoc\n[    1.756685] [    1.756680] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 148 dest 778\n[    1.756774] [    1.756769] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 43 cam_sf_1_camnoc\n[    1.763179] [    1.763179] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[17][cpas-cdm][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    1.767556] [    1.767556] (CPU:0-pid:1:swapper/0)CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 887 Invalid mux type: 0\n[    1.767617] [    1.767617] (CPU:0-pid:1:swapper/0)CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1082 Inval_prms soc_info:ffffffd2249590b8 hw_intf:ffffffd22487cc80 hw_info0000000000000000\n[    1.767625] [    1.767625] (CPU:0-pid:1:swapper/0)CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1083 controller: ffffffd22490fb00\n[    1.767635] [    1.767635] (CPU:0-pid:1:swapper/0)CAM_ERR: CAM-ISP: cam_vfe_core_init: 864 Error! RD cam_vfe_bus_init failed\n[    1.767783] [    1.767783] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[10][ife][0] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.770420] [    1.770420] (CPU:0-pid:1:swapper/0)CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 887 Invalid mux type: 0\n[    1.770469] [    1.770469] (CPU:0-pid:1:swapper/0)CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1082 Inval_prms soc_info:ffffffd22495c0b8 hw_intf:ffffffd22487ff00 hw_info0000000000000000\n[    1.770477] [    1.770477] (CPU:0-pid:1:swapper/0)CAM_ERR: CAM-ISP: cam_vfe_bus_rd_ver1_init: 1083 controller: ffffffd22490f400\n[    1.770484] [    1.770484] (CPU:0-pid:1:swapper/0)CAM_ERR: CAM-ISP: cam_vfe_core_init: 864 Error! RD cam_vfe_bus_init failed\n[    1.770628] [    1.770628] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[11][ife][1] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.772995] [    1.772995] (CPU:0-pid:1:swapper/0)CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 525 No clk named ife_dsp_clk found. Dev vfe2\n[    1.773003] [    1.773003] (CPU:0-pid:1:swapper/0)CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 109 Option clk get failed with rc -14\n[    1.773140] [    1.773140] (CPU:0-pid:1:swapper/0)CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 887 Invalid mux type: 0\n[    1.773148] [    1.773148] (CPU:0-pid:1:swapper/0)CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 887 Invalid mux type: 0\n[    1.773331] [    1.773331] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[12][ife][2] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.775139] [    1.775139] (CPU:0-pid:1:swapper/0)CAM_ERR: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 525 No clk named ife_dsp_clk found. Dev vfe3\n[    1.775147] [    1.775147] (CPU:0-pid:1:swapper/0)CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 109 Option clk get failed with rc -14\n[    1.775262] [    1.775262] (CPU:0-pid:1:swapper/0)CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 887 Invalid mux type: 0\n[    1.775270] [    1.775270] (CPU:0-pid:1:swapper/0)CAM_WARN: CAM-ISP: cam_vfe_top_ver2_init: 887 Invalid mux type: 0\n[    1.775402] [    1.775402] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[13][ife][3] comp[10640000000], comp_ab[10640000000], uncomp[10640000000]\n[    1.778520] [    1.778520] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-ISP: cam_isp_dev_probe: 171 Camera ISP probe complete\n[    1.781241] [    1.781241] (CPU:0-pid:1:swapper/0)OF: /soc/qcom,cci@ac4a000: could not find phandle\n[    1.782211] [    1.782211] (CPU:0-pid:1:swapper/0)CAM_ERR: CAM: cam_res_mgr_parse_dt: 664 gpio 166 vcm_en \tpinctrl_select_state rc =0\n[    1.782220] [    1.782220] (CPU:0-pid:1:swapper/0)CAM_ERR: CAM: cam_res_mgr_parse_dt: 672 Failed to get the active state pinctrl handle\n[    1.782229] [    1.782229] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM: cam_res_mgr_probe: 696 Disable shared gpio support.\n[    1.785727] [    1.785727] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-CCI: cam_cci_platform_probe: 429 Device Type :0\n[    1.786371] [    1.786371] (CPU:0-pid:1:swapper/0)OF: /soc/qcom,cci@ac4b000: could not find phandle\n[    1.789054] [    1.789054] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-CCI: cam_cci_platform_probe: 429 Device Type :1\n[    1.791092] [    1.791092] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 69 No GPIO found\n[    1.791114] [    1.791114] (CPU:0-pid:1:swapper/0)ACTUATOR-ATD create_proc_file(): create(driver/actuator_power) done\n[    1.791123] [    1.791123] (CPU:0-pid:1:swapper/0)ACTUATOR-ATD create_proc_file(): create(driver/actuator_i2c_rw) done\n[    1.791132] [    1.791132] (CPU:0-pid:1:swapper/0)ACTUATOR-ATD create_proc_file(): create(driver/vcm_enable) done\n[    1.791141] [    1.791141] (CPU:0-pid:1:swapper/0)ACTUATOR-ATD create_proc_file(): create(driver/vcm) done\n[    1.791150] [    1.791150] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-ACTUATOR: cam_actuator_driver_platform_probe: 385 Actuator Probe Success.\n[    1.792459] [    1.792459] (CPU:0-pid:1:swapper/0)FLASH-ATD create_proc_file() create(driver/flash_status) done\n[    1.792469] [    1.792469] (CPU:0-pid:1:swapper/0)FLASH-ATD create_proc_file() create(driver/asus_flash) done\n[    1.792478] [    1.792478] (CPU:0-pid:1:swapper/0)FLASH-ATD create_proc_file() create(driver/asus_flash2) done\n[    1.792487] [    1.792487] (CPU:0-pid:1:swapper/0)FLASH-ATD create_proc_file() create(driver/ctrl1_leds) done\n[    1.792496] [    1.792496] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-FLASH: cam_flash_platform_probe: 560 Flash probe succeed\n[    1.792551] [    1.792551] (CPU:0-pid:1:swapper/0)FLASH-ATD asus_flash_init() invalid flash id 2\n[    1.792558] [    1.792558] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-FLASH: cam_flash_platform_probe: 560 Flash probe succeed\n[    1.792953] [    1.792953] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 426 EEPROM Probe Start\n[    1.792972] [    1.792972] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 226 No GPIO found\n[    1.792985] [    1.792985] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 476 EEPROM Probe done\n[    1.793018] [    1.793018] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 426 EEPROM Probe Start\n[    1.793031] [    1.793031] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 226 No GPIO found\n[    1.793040] [    1.793040] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 476 EEPROM Probe done\n[    1.793070] [    1.793070] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 426 EEPROM Probe Start\n[    1.793084] [    1.793084] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 226 No GPIO found\n[    1.793092] [    1.793092] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-EEPROM: cam_eeprom_platform_driver_probe: 476 EEPROM Probe done\n[    1.799070] [    1.799070] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 170 Camera JPEG probe complete\n[    1.799928] [    1.799928] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[22][fd][0] comp[7200000], comp_ab[7200000], uncomp[7200000]\n[    1.803937] [    1.803937] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[23][lrmecpas][0] comp[7200000], comp_ab[7200000], uncomp[7200000]\n[    1.804812] [    1.804812] (CPU:0-pid:1:swapper/0)CAM_INFO: CAM-CPAS: cam_cpas_hw_start: 1021 AXI client=[16][cam-cdm-intf][0] comp[1024], comp_ab[1024], uncomp[1024]\n[    1.807498] [    1.807498] (CPU:0-pid:1:swapper/0)iommu: Adding device 88a7000.msm_tspp to group 37\n[    1.808147] [    1.808141] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 82 dest 512\n[    1.808883] [    1.808878] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 44 tsif\n[    1.809039] [    1.809039] (CPU:0-pid:1:swapper/0)msm_tspp_probe: vdd_cx regulator will not be used\n[    1.810552] [    1.810552] (CPU:0-pid:1:swapper/0)dvbdev: DVB: registering new adapter (Qualcomm Technologies, Inc. DVB adapter)\n[    1.820278] [    1.820278] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver uvcvideo\n[    1.820288] [    1.820288] (CPU:0-pid:1:swapper/0)USB Video Class driver (1.1.1)\n[    1.820296] [    1.820296] (CPU:0-pid:1:swapper/0)gspca_main: v2.14.0 registered\n[    1.821845] [    1.821845] (CPU:0-pid:1:swapper/0)fg_gen4_parse_dt dt.sys_term_curr_ma : -500\n[    1.825393] [    1.825393] (CPU:0-pid:1:swapper/0)(NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    1.830460] [    1.830460] (CPU:0-pid:1:swapper/0)FG: fg_gen4_probe: battery SOC:70 voltage: 3939687uV temp: 195 id: 50700 ohms\n[    1.831446] [    1.831446] (CPU:0-pid:1:swapper/0)[BAT][BMS]battery_health_data_reset \n[    1.831730] [    1.831730] (CPU:0-pid:1:swapper/0)[BAT][BMS]create_bat_policy_proc_file: sucessed!\n[    1.836015] [    1.836010] (CPU:0-pid:331:wk:profile_loa)[BAT][BMS]ATD_Is_battID_within_range: batt id(50700) is within 51 k range\n                \n[    1.836031] [    1.836031] (CPU:0-pid:331:wk:profile_loa)of_batterydata_get_best_profile: c11p1901_5800mah_apr29th2019_4p35v found\n[    1.836044] [    1.836044] (CPU:0-pid:331:wk:profile_loa)fg_gen4_get_batt_profile. fg->bp.float_volt_uv : 4360000\n[    1.836053] [    1.836053] (CPU:0-pid:331:wk:profile_loa)FG: fg_gen4_get_batt_profile: battery fastchg current unavailable, rc:-22\n[    1.836061] [    1.836061] (CPU:0-pid:331:wk:profile_loa)fg->bp.vbatt_full_mv : 4380\n[    1.836276] [    1.836276] (CPU:0-pid:4:wk:power_suppl)[PSY] power_supply_changed, psy_name:bms\n[    1.836499] [    1.836499] (CPU:0-pid:4:wk:power_suppl)FG: fg_psy_get_property: unsupported property 4\n[    1.838233] [    1.838233] (CPU:0-pid:1:swapper/0)term_current_thresh_hi_ma : -200\n[    1.838276] [    1.838276] (CPU:0-pid:1:swapper/0)Couldn't parse device tree rc=-517\n[    1.839122] [    1.839122] (CPU:0-pid:1:swapper/0)[BAT][CHG] asp1690e_probe start\n[    1.839142] [    1.839142] (CPU:0-pid:1:swapper/0)[BAT][CHG] asp1690e_mask_write_reg start\n[    1.839814] [    1.839814] (CPU:0-pid:1:swapper/0)[BAT][CHG] asp1690e_write_reg start\n[    1.840145] [    1.840145] (CPU:0-pid:1:swapper/0)[BAT][CHG] asp1690e_write_reg start\n[    1.840301] [    1.840301] (CPU:0-pid:1:swapper/0)[BAT][CHG] asp1690e_write_reg start\n[    1.840462] [    1.840462] (CPU:0-pid:1:swapper/0)[BAT][CHG] asp1690e_write_reg start\n[    1.840655] [    1.840655] (CPU:0-pid:1:swapper/0)[BAT][CHG] asp1690e_probe end\n[    1.840831] [    1.840831] (CPU:0-pid:1:swapper/0)[PCA] pca9468_probe: =========START=========\n[    1.840855] [    1.840855] (CPU:0-pid:1:swapper/0)of_pca9468_dt: irq-gpio: 132 \n[    1.840864] [    1.840864] (CPU:0-pid:1:swapper/0)of_pca9468_dt: pca9468,iin_cfg is 1900000\n[    1.840873] [    1.840873] (CPU:0-pid:1:swapper/0)of_pca9468_dt: pca9468,ichg_cfg is 6000000\n[    1.840883] [    1.840883] (CPU:0-pid:1:swapper/0)of_pca9468_dt: pca9468,v_float is 4380000\n[    1.840890] [    1.840890] (CPU:0-pid:1:swapper/0)of_pca9468_dt: pca9468,iin_topoff is 700000\n[    1.840899] [    1.840899] (CPU:0-pid:1:swapper/0)of_pca9468_dt: pca9468,ichg_topoff is 1000000\n[    1.840907] [    1.840907] (CPU:0-pid:1:swapper/0)of_pca9468_dt: pca9468,snsres is 1\n[    1.840914] [    1.840914] (CPU:0-pid:1:swapper/0)of_pca9468_dt: pca9468,fsw_cfg is 7\n[    1.840955] [    1.840955] (CPU:0-pid:1:swapper/0)get_usbpd phandle failed (-517)\n[    1.840967] [    1.840967] (CPU:0-pid:1:swapper/0)pca9468 7-005e: Error usbpd setup!\n[    1.842068] [    1.842063] (CPU:0-pid:1:swapper/0)lmh_set_trips1 high=100000, low=85000\n[    1.842075] [    1.842070] (CPU:0-pid:1:swapper/0)lmh_set_trips2 high=100000, low=85000\n[    1.842082] [    1.842077] (CPU:0-pid:1:swapper/0)lmh_set_trips3 high=100000, low=85000\n[    1.844891] [    1.844886] (CPU:0-pid:1:swapper/0)lmh_set_trips1 high=100000, low=85000\n[    1.844898] [    1.844894] (CPU:0-pid:1:swapper/0)lmh_set_trips2 high=100000, low=85000\n[    1.844905] [    1.844900] (CPU:0-pid:1:swapper/0)lmh_set_trips3 high=100000, low=85000\n[    1.859714] [    1.859714] (CPU:0-pid:1:swapper/0)device-mapper: uevent: version 1.0.3\n[    1.860120] [    1.860120] (CPU:0-pid:1:swapper/0)device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com\n[    1.861995] [    1.861995] (CPU:0-pid:1:swapper/0)bt_dt_parse_vreg_info: qca,bt-vdd-vl: is not provided in device tree\n[    1.862004] [    1.862004] (CPU:0-pid:1:swapper/0)bt_dt_parse_vreg_info: qca,bt-vdd-vm: is not provided in device tree\n[    1.862012] [    1.862012] (CPU:0-pid:1:swapper/0)bt_dt_parse_vreg_info: qca,bt-vdd-5c: is not provided in device tree\n[    1.862021] [    1.862021] (CPU:0-pid:1:swapper/0)bt_dt_parse_vreg_info: qca,bt-vdd-5a: is not provided in device tree\n[    1.862029] [    1.862029] (CPU:0-pid:1:swapper/0)bt_dt_parse_vreg_info: qca,bt-vdd-vh: is not provided in device tree\n[    1.862038] [    1.862038] (CPU:0-pid:1:swapper/0)bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    1.862046] [    1.862046] (CPU:0-pid:1:swapper/0)bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    1.862068] [    1.862068] (CPU:0-pid:1:swapper/0)bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    1.862078] [    1.862078] (CPU:0-pid:1:swapper/0)bt_power_populate_dt_pinfo: bt-reset-gpio not provided in device tree\n[    1.862087] [    1.862087] (CPU:0-pid:1:swapper/0)bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.862095] [    1.862095] (CPU:0-pid:1:swapper/0)bt_power_populate_dt_pinfo: clock not provided in device tree\n[    1.862840] [    1.862840] (CPU:0-pid:1:swapper/0)EDAC DEVICE0: Giving out device to module soc:kryo-erp controller cache: DEV soc:kryo-erp (INTERRUPT)\n[    1.863989] [    1.863989] (CPU:0-pid:1:swapper/0)sdhci: Secure Digital Host Controller Interface driver\n[    1.863996] [    1.863996] (CPU:0-pid:1:swapper/0)sdhci: Copyright(c) Pierre Ossman\n[    1.864004] [    1.864004] (CPU:0-pid:1:swapper/0)sdhci-pltfm: SDHCI platform and OF driver helper\n[    1.865166] [    1.865166] (CPU:0-pid:1:swapper/0)hidraw: raw HID events driver (C) Jiri Kosina\n[    1.867563] [    1.867563] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver usbhid\n[    1.867571] [    1.867571] (CPU:0-pid:1:swapper/0)usbhid: USB HID core driver\n[    1.867839] [    1.867839] (CPU:0-pid:1:swapper/0)ashmem: initialized\n[    1.867931] [    1.867926] (CPU:0-pid:1:swapper/0)wlan_hdd_state wlan major(490) initialized\n[    1.868269] [    1.868269] (CPU:0-pid:1:swapper/0)ipa_ut ipa_ut_module_init:1043 Loading IPA test module...\n[    1.868606] [    1.868606] (CPU:0-pid:1:swapper/0)msm_11ad soc:qcom,wil6210: GPIO <qcom,wigig-dc> not found, dc GPIO not used\n[    1.868622] [    1.868622] (CPU:0-pid:1:swapper/0)msm_11ad soc:qcom,wil6210: GPIO <qcom,sleep-clk-en> not found, sleep clock not used\n[    1.868805] [    1.868805] (CPU:0-pid:1:swapper/0)msm_11ad soc:qcom,wil6210: soc:qcom,wil6210 supply vdd not found, using dummy regulator\n[    1.920067] [    1.920067] (CPU:0-pid:1:swapper/0)msm_pcie_enable: PCIe: Assert the reset of endpoint of RC0.\n[    1.924069] [    1.924069] (CPU:0-pid:1:swapper/0)msm_pcie_enable: PCIe: RC0: PCIE20_PARF_INT_ALL_MASK: 0x7f80c202\n[    1.926375] [    1.926375] (CPU:0-pid:1:swapper/0)msm_pcie_enable: PCIe RC0 PHY is ready!\n[    1.936399] [    1.936399] (CPU:0-pid:1:swapper/0)msm_pcie_enable: PCIe: Release the reset of endpoint of RC0.\n[    1.952811] [    1.952811] (CPU:0-pid:1:swapper/0)msm_pcie_enable: PCIe RC0 link initialized\n[    1.953454] [    1.953454] (CPU:0-pid:1:swapper/0)OF: PCI: host bridge /soc/qcom,pcie@1c00000 ranges:\n[    1.953471] [    1.953471] (CPU:0-pid:1:swapper/0)OF: PCI:   No bus range found for /soc/qcom,pcie@1c00000, using [bus 00-ff]\n[    1.953494] [    1.953494] (CPU:0-pid:1:swapper/0)OF: PCI:    IO 0x60200000..0x602fffff -> 0x60200000\n[    1.953509] [    1.953509] (CPU:0-pid:1:swapper/0)OF: PCI:   MEM 0x60300000..0x63ffffff -> 0x60300000\n[    1.953618] [    1.953618] (CPU:0-pid:1:swapper/0)pci-msm 1c00000.qcom,pcie: MSI: qgic controller is present\n[    1.954529] [    1.954529] (CPU:0-pid:1:swapper/0)pci-msm 1c00000.qcom,pcie: PCI host bridge to bus 0000:00\n[    1.954541] [    1.954541] (CPU:0-pid:1:swapper/0)pci_bus 0000:00: root bus resource [bus 00-ff]\n[    1.954553] [    1.954553] (CPU:0-pid:1:swapper/0)pci_bus 0000:00: root bus resource [io  0x0000-0xfffff] (bus address [0x60200000-0x602fffff])\n[    1.954562] [    1.954562] (CPU:0-pid:1:swapper/0)pci_bus 0000:00: root bus resource [mem 0x60300000-0x63ffffff]\n[    1.954612] [    1.954612] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: [17cb:0108] type 01 class 0x060400\n[    1.954675] [    1.954675] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]\n[    1.954779] [    1.954779] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: PME# supported from D0 D3hot D3cold\n[    1.954966] [    1.954966] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring\n[    1.955098] [    1.955098] (CPU:0-pid:1:swapper/0)pci 0000:01:00.0: [1ae9:0310] type 00 class 0x028000\n[    1.955186] [    1.955186] (CPU:0-pid:1:swapper/0)pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x001fffff 64bit]\n[    1.955430] [    1.955430] (CPU:0-pid:1:swapper/0)pci 0000:01:00.0: PME# supported from D0 D3hot D3cold\n[    1.955554] [    1.955554] (CPU:0-pid:1:swapper/0)pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01\n[    1.955597] [    1.955597] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000\n[    1.955612] [    1.955612] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000\n[    1.955624] [    1.955624] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: bridge window [mem 0x00200000-0x003fffff] to [bus 01] add_size 200000 add_align 200000\n[    1.955652] [    1.955652] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: BAR 8: assigned [mem 0x60400000-0x607fffff]\n[    1.955663] [    1.955663] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: BAR 9: assigned [mem 0x60800000-0x609fffff 64bit pref]\n[    1.955673] [    1.955673] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: BAR 0: assigned [mem 0x60300000-0x60300fff 64bit]\n[    1.955699] [    1.955699] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: BAR 7: assigned [io  0x1000-0x1fff]\n[    1.955714] [    1.955714] (CPU:0-pid:1:swapper/0)pci 0000:01:00.0: BAR 0: assigned [mem 0x60400000-0x605fffff 64bit]\n[    1.955755] [    1.955755] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0: PCI bridge to [bus 01]\n[    1.955765] [    1.955765] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0:   bridge window [io  0x1000-0x1fff]\n[    1.955781] [    1.955781] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0:   bridge window [mem 0x60400000-0x607fffff]\n[    1.955795] [    1.955795] (CPU:0-pid:1:swapper/0)pci 0000:00:00.0:   bridge window [mem 0x60800000-0x609fffff 64bit pref]\n[    1.955918] [    1.955918] (CPU:0-pid:1:swapper/0)iommu: Adding device 0000:00:00.0 to group 38\n[    1.956178] [    1.956178] (CPU:0-pid:1:swapper/0)msm_pcie_pm_control: PCIe: RC0: requested to resume when link is not disabled:1. Number of active EP(s): 0\n[    1.956451] [    1.956451] (CPU:0-pid:1:swapper/0)msm_11ad soc:qcom,wil6210: for WIGIG segments only will be dumped.\n[    1.956548] [    1.956548] (CPU:0-pid:1:swapper/0)msm_11ad soc:qcom,wil6210: CPU boost: will use cores 4 - 5\n[    1.956562] [    1.956562] (CPU:0-pid:1:swapper/0)msm_11ad soc:qcom,wil6210: msm_11ad discovered. ffffffd22230f818 {\n                 gpio_en = 131\n                 gpio_dc = -2\n                 sleep_clk_en = -2\n                 rc_index = 0\n                 use_smmu = 1\n                 pcidev = ffffffd2222b8000\n               }\n[    1.966716] [    1.966716] (CPU:0-pid:1:swapper/0)msm_pcie_disable: PCIe: Assert the reset of endpoint of RC0.\n[    1.968850] [    1.968850] (CPU:0-pid:1:swapper/0)seemp: seemp_logk_init: SCM call failed with ret val = 0 -3 0\n[    1.969165] [    1.969165] (CPU:0-pid:1:swapper/0)bimc-bwmon 90b6400.qcom,cpu-cpu-llcc-bwmon: BW HWmon governor registered.\n[    1.969228] [    1.969228] (CPU:0-pid:1:swapper/0)bimc-bwmon 90cd000.qcom,cpu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    1.969297] [    1.969297] (CPU:0-pid:1:swapper/0)bimc-bwmon 9960300.qcom,npu-npu-ddr-bwmon: BW HWmon governor registered.\n[    1.970096] [    1.970096] (CPU:0-pid:1:swapper/0)arm-memlat-mon soc:qcom,cpu0-cpu-l3-latmon: Memory Latency governor registered.\n[    1.970150] [    1.970150] (CPU:0-pid:1:swapper/0)arm-memlat-mon soc:qcom,cpu4-cpu-l3-latmon: Memory Latency governor registered.\n[    1.970201] [    1.970201] (CPU:0-pid:1:swapper/0)arm-memlat-mon soc:qcom,cpu7-cpu-l3-latmon: Memory Latency governor registered.\n[    1.970263] [    1.970263] (CPU:0-pid:1:swapper/0)arm-memlat-mon soc:qcom,cpu0-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.970316] [    1.970316] (CPU:0-pid:1:swapper/0)arm-memlat-mon soc:qcom,cpu4-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.970371] [    1.970371] (CPU:0-pid:1:swapper/0)arm-memlat-mon soc:qcom,cpu0-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.970432] [    1.970432] (CPU:0-pid:1:swapper/0)arm-memlat-mon soc:qcom,cpu4-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.970483] [    1.970483] (CPU:0-pid:1:swapper/0)arm-memlat-mon soc:qcom,cpu4-computemon: Compute governor registered.\n[    1.972400] [    1.972394] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 770\n[    1.972690] [    1.972685] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 45 soc:qcom,cpu-cpu-llcc-bw\n[    1.973776] [    1.973771] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 129 dest 512\n[    1.973877] [    1.973872] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 46 soc:qcom,cpu-llcc-ddr-bw\n[    1.974830] [    1.974825] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 154 dest 512\n[    1.975111] [    1.975106] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 47 soc:qcom,npu-npu-ddr-bw\n[    1.975525] [    1.975520] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 770\n[    1.975621] [    1.975616] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 48 soc:qcom,cpu0-cpu-llcc-lat\n[    1.975965] [    1.975960] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 770\n[    1.976055] [    1.976050] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 49 soc:qcom,cpu4-cpu-llcc-lat\n[    1.976484] [    1.976479] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 129 dest 512\n[    1.976577] [    1.976572] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 51 soc:qcom,cpu0-llcc-ddr-lat\n[    1.977052] [    1.977047] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 129 dest 512\n[    1.977145] [    1.977140] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 50 soc:qcom,cpu4-llcc-ddr-lat\n[    1.977585] [    1.977579] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 129 dest 512\n[    1.977683] [    1.977678] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 52 soc:qcom,cpu4-cpu-ddr-latfloor\n[    1.977910] [    1.977904] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 627\n[    1.978224] [    1.978219] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 53 soc:qcom,snoc_cnoc_keepalive\n[    1.978453] [    1.978448] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 154 dest 10070\n[    1.978520] [    1.978515] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 54 soc:qcom,cdsp_keepalive\n[    1.979174] [    1.979169] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 26 dest 512\n[    1.979368] [    1.979363] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 55 soc:qcom,gpubw\n[    1.981979] [    1.981979] (CPU:0-pid:1:swapper/0)qcom-llcc-pmu 90cc000.llcc-pmu: Registered llcc_pmu, type: 7\n[    1.983230] [    1.983230] (CPU:0-pid:1:swapper/0)falied to get pwr gpio, try ldo!\n[    1.983238] [    1.983238] (CPU:0-pid:1:swapper/0)[Jacob] fp-fod-panel value 1 \n[    1.983247] [    1.983247] (CPU:0-pid:1:swapper/0)[Jacob] gf_spi Get the pinctrl node \n[    1.983317] [    1.983317] (CPU:0-pid:1:swapper/0)[Jacob] gf_spi Get the active setting \n[    1.983340] [    1.983340] (CPU:0-pid:1:swapper/0)[Jacob] check FOD EXI  gpio num : EXI1 = 167, EXI2 = 168 \n[    1.983347] [    1.983347] (CPU:0-pid:1:swapper/0)[Jacob] check all gpio num : reset = 141, irq = 118 \n[    1.983369] [    1.983369] (CPU:0-pid:1:swapper/0)[FP] Regulator voltage get Max = 2860000, Min = 2850000 \n[    1.983492] [    1.983492] (CPU:0-pid:1:swapper/0)[FP] Regulator voltage get Max = 2860000, Min = 2850000 \n[    1.983641] [    1.983641] (CPU:0-pid:1:swapper/0)[FP][gf_power_on]pwr_gpio = -2  ! \n[    1.983694] [    1.983694] (CPU:0-pid:1:swapper/0)[FP][gf_power_on]Regulator vcc enable ! \n[    1.996849] [    1.996849] (CPU:0-pid:1:swapper/0)input: qwerty as /devices/virtual/input/input3\n[    1.996926] [    1.996926] (CPU:0-pid:1:swapper/0)[FP][gf_power_off]pwr_gpio = -2  ! \n[    1.996965] [    1.996965] (CPU:0-pid:1:swapper/0)[FP][gf_power_off]Regulator vcc disabe ! \n[    1.997001] [    1.997001] (CPU:0-pid:1:swapper/0)gf_spi: version V1.2.12\n[    1.997087] [    1.997087] (CPU:0-pid:1:swapper/0)gf_spi: status = 0x0\n[    1.997390] [    1.997390] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: snt_i2c_probe Enter\n\n[    1.997400] [    1.997400] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Host irq GPIO125: 0\n[    1.997408] [    1.997408] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Tap IRQ GPIO49: 0\n[    1.997415] [    1.997415] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Tap IRQ GPIO142: 0\n[    1.997423] [    1.997423] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Tap IRQ GPIO60: 0\n[    1.997430] [    1.997430] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Rst GPIO12: 0\n[    1.997438] [    1.997438] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Main I2C device discovered\n[    1.998679] [    1.998679] (CPU:0-pid:1:swapper/0)input: snt8100fsr as /devices/virtual/input/input4\n[    1.998744] [    1.998744] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: main_init: done\n[    1.998768] [    1.998768] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_device_init: done\n[    1.998789] [    1.998789] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_open: I2C Address: 0x2C\n[    1.999941] [    1.999941] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: asus_init_probe: Set lock to make sure firmware loading down\n[    1.999954] [    1.999954] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: asus_init_probe: WQ: call set_rst_pin_func\n[    1.999999] [    1.999999] (CPU:0-pid:4:wk:set_1V2_2V8)[EDGE] snt8100fsr: INFO: set_1V2_2V8_pin_func: Set pinctl: SOC GPIO21 pull-up\n[    2.000007] [    2.000007] (CPU:0-pid:4:wk:set_1V2_2V8)[EDGE] snt8100fsr: INFO: set_pinctrl: Set_pinctrl start!\n[    2.000147] [    2.000147] (CPU:0-pid:4:wk:set_1V2_2V8)[EDGE] snt8100fsr: INFO: set_pinctrl: Set_pinctrl done!\n[    2.000613] [    2.000613] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: snt_i2c_probe Enter\n\n[    2.000622] [    2.000622] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Host irq GPIO125: 0\n[    2.000630] [    2.000630] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Tap IRQ GPIO49: 0\n[    2.000638] [    2.000638] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Tap IRQ GPIO142: 0\n[    2.000645] [    2.000645] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Tap IRQ GPIO60: 1\n[    2.000653] [    2.000653] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Rst GPIO12: 0\n[    2.000660] [    2.000660] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: Wake I2C device discovered\n[    2.000666] [    2.000666] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: snt_i2c_probe: get_GPIO4\n[    2.000673] [    2.000673] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: set_pinctrl: Set_pinctrl start!\n[    2.000812] [    2.000812] (CPU:0-pid:1:swapper/0)[EDGE] snt8100fsr: INFO: set_pinctrl: Set_pinctrl done!\n[    2.000886] [    2.000886] (CPU:0-pid:1:swapper/0)[ASH_ALGO][ALSPS_FRGB]Driver INIT +++\n[    2.003388] [    2.003388] (CPU:0-pid:1:swapper/0)[ASH_ALGO][ALSPS_FRGB]Driver PROBE +++\n[    2.003396] [    2.003396] (CPU:0-pid:1:swapper/0)[ASH_ALGO][ALSPS_FRGB]Driver PROBE ---\n[    2.003649] [    2.003649] (CPU:0-pid:1:swapper/0)[ASH_HW][ALSPS_FRGB]cm36656_ALSPS_FRGB_hw_check_ID Success(ID_REG : 0x0257). \n[    2.003698] [    2.003693] (CPU:0-pid:1:swapper/0)[ASH_HW][ALSPS_FRGB]ldoc7 regulator setting init\n[    2.004020] [    2.004020] (CPU:0-pid:1:swapper/0)[ASH_HW][ALSPS_FRGB]Proximity set CS start bit (CS_CONF : 0x1 -> 0x81) \n[    2.004350] [    2.004350] (CPU:0-pid:1:swapper/0)[ASH_HW][ALSPS_FRGB]Proximity set LED Current (PS_CONF4 : 0x0 -> 0x2) \n[    2.004679] [    2.004679] (CPU:0-pid:1:swapper/0)[ASH_HW][ALSPS_FRGB]Proximity set LED Duty Ratio (PS_CONF1 : 0x1 -> 0x1) \n[    2.005007] [    2.005007] (CPU:0-pid:1:swapper/0)[ASH_HW][ALSPS_FRGB]Proximity set Persistence (PS_CONF1 : 0x1 -> 0x1) \n[    2.005331] [    2.005331] (CPU:0-pid:1:swapper/0)[ASH_HW][ALSPS_FRGB]Proximity set Integration (PS_CONF2 : 0x0 -> 0x0) \n[    2.005656] [    2.005656] (CPU:0-pid:1:swapper/0)[ASH_HW][ALSPS_FRGB]Light Sensor set Persistence (CS_CONF : 0x1 -> 0x1) \n[    2.005985] [    2.005985] (CPU:0-pid:1:swapper/0)[ASH_HW][ALSPS_FRGB]Light Sensor set Integration (CS_CONF : 0x1 -> 0x1) \n[    2.005993] [    2.005993] (CPU:0-pid:1:swapper/0)[ASH_HW][ALSPS_FRGB]ALSPS_FRGB_hw_getHardware cm36656 Probe Success. \n[    2.006338] [    2.006338] (CPU:0-pid:1:swapper/0)input: ASUS Proximitysensor as /devices/virtual/input/input5\n[    2.006501] [    2.006501] (CPU:0-pid:1:swapper/0)input: ASUS Lightsensor as /devices/virtual/input/input6\n[    2.006626] [    2.006626] (CPU:0-pid:1:swapper/0)[ASH_GPIO][ALSPS]Qcom GPIO \n[    2.006737] [    2.006737] (CPU:0-pid:1:swapper/0)[ASH_GPIO][ALSPS]gpio_to_irq IRQ 288 successed on GPIO:117\n[    2.006975] [    2.006975] (CPU:0-pid:1:swapper/0)[ASH_ALGO][ALSPS_FRGB]Driver INIT ---\n[    2.007593] [    2.007593] (CPU:0-pid:1:swapper/0)[AURA_SYNC] ene_8k41_probe.\n[    2.007600] [    2.007600] (CPU:0-pid:1:swapper/0)[AURA_SYNC] I2C function test pass\n[    2.007607] [    2.007607] (CPU:0-pid:1:swapper/0)[AURA_SYNC] client->addr : 0x40\n[    2.007613] [    2.007613] (CPU:0-pid:1:swapper/0)[AURA_SYNC] ene_8k41_parse_dt\n[    2.007621] [    2.007621] (CPU:0-pid:1:swapper/0)[AURA_SYNC] aura_3p3_en : 130\n[    2.007628] [    2.007628] (CPU:0-pid:1:swapper/0)[AURA_SYNC] logo_5p0_en : -2\n[    2.007634] [    2.007634] (CPU:0-pid:1:swapper/0)[AURA_SYNC] Get the pinctrl node \n[    2.007678] [    2.007678] (CPU:0-pid:1:swapper/0)[AURA_SYNC] Get the active setting \n[    2.007684] [    2.007684] (CPU:0-pid:1:swapper/0)[AURA_SYNC] Get default_enable \n[    2.007690] [    2.007690] (CPU:0-pid:1:swapper/0)[AURA_SYNC] set the active state\n[    2.007706] [    2.007706] (CPU:0-pid:1:swapper/0)[AURA_SYNC] ENE 8k41 power on.\n[    2.007719] [    2.007719] (CPU:0-pid:1:swapper/0)[AURA_SYNC] aura_3p3_en[130] :0x1\n[    2.007725] [    2.007725] (CPU:0-pid:1:swapper/0)[AURA_SYNC] logo_5p0_en is not defined. -2\n[    2.007780] [    2.007780] (CPU:0-pid:1:swapper/0)[AURA_SYNC] aura_sync_get.\n[    2.007822] [    2.007822] (CPU:0-pid:1:swapper/0)[AURA_SYNC] ene_8k41_probe done.\n[    2.007874] [    2.007874] (CPU:0-pid:1:swapper/0)[AURA_SYNC] ENE 8k41 driver int success.\n[    2.007904] [    2.007904] (CPU:0-pid:1:swapper/0)[Bumper] sky81298_probe.\n[    2.007911] [    2.007911] (CPU:0-pid:1:swapper/0)[Bumper] I2C function test pass\n[    2.007917] [    2.007917] (CPU:0-pid:1:swapper/0)[Bumper] client->addr : 0x63\n[    2.007954] [    2.007954] (CPU:0-pid:1:swapper/0)[Bumper] bumper_led_get.\n[    2.007965] [    2.007965] (CPU:0-pid:1:swapper/0)[Bumper] sky81298_probe done.\n[    2.008007] [    2.008007] (CPU:0-pid:1:swapper/0)[Bumper] sky81298 driver int success.\n[    2.008576] [    2.008576] (CPU:0-pid:1:swapper/0)[EC_HID] ec_hid_probe.\n[    2.008611] [    2.008611] (CPU:0-pid:1:swapper/0)[EC_HID] ec_hid_probe: device_create() status 0\n[    2.008633] [    2.008633] (CPU:0-pid:1:swapper/0)[EC_HID] ec_hid_probe: sysfs_create_group() status 0\n[    2.008663] [    2.008663] (CPU:0-pid:1:swapper/0)[EC_HID] pogo_sleep : 104\n[    2.008673] [    2.008673] (CPU:0-pid:1:swapper/0)[EC_HID] pogo_det : 1254\n[    2.008680] [    2.008680] (CPU:0-pid:1:swapper/0)[EC_HID] pogo_aux_oe : 93\n[    2.008687] [    2.008687] (CPU:0-pid:1:swapper/0)[EC_HID] Get pogo_sleep state\n[    2.008694] [    2.008694] (CPU:0-pid:1:swapper/0)[EC_HID] Request pogo_sleep config.\n[    2.008704] [    2.008704] (CPU:0-pid:1:swapper/0)[EC_HID] pogo_sleep default on.\n[    2.008714] [    2.008714] (CPU:0-pid:1:swapper/0)[EC_HID] Request pogo_det config.\n[    2.008723] [    2.008723] (CPU:0-pid:1:swapper/0)[EC_HID] pogo_det default on.\n[    2.008869] [    2.008869] (CPU:0-pid:1:swapper/0)[EC_HID] Request pogo_aux_oe config.\n[    2.008878] [    2.008878] (CPU:0-pid:1:swapper/0)[EC_HID] pogo_aux_oe default on.\n[    2.009831] [    2.009831] (CPU:0-pid:1:swapper/0)[EC_HID] pogo_id_adc is 1811678.\n[    2.009839] [    2.009839] (CPU:0-pid:1:swapper/0)[EC_HID] gDongleType : 0  type : 0 !\n[    2.009911] [    2.009911] (CPU:0-pid:1:swapper/0)[EC_USB] ec_usb_init\n[    2.009933] [    2.009933] (CPU:0-pid:1:swapper/0)[GAMEPAD_HID] gamepad_usb_init\n[    2.009953] [    2.009953] (CPU:0-pid:1:swapper/0)tspdrv: I  tspdrv: init_module +++.\n[    2.010412] [    2.010412] (CPU:0-pid:1:swapper/0)tspdrv: !  ImmVibeSPI_ForceOut_Initialize:+++\n[    2.010767] [    2.010767] (CPU:0-pid:1:swapper/0)tspdrv: !  dw791x_probe:bus=5, addr=0x59 , gActuatorIndex=1+++\n[    2.010776] [    2.010776] (CPU:0-pid:1:swapper/0)tspdrv: I  parse irq-gpio\n[    2.010785] [    2.010785] (CPU:0-pid:1:swapper/0)dw791x_parse_dt: get dw791x irq pin(cpu: gpio 96)\n[    2.010791] [    2.010791] (CPU:0-pid:1:swapper/0)tspdrv: I  parse irq-gpio\n[    2.010799] [    2.010799] (CPU:0-pid:1:swapper/0)dw791x_parse_dt: get dw791x irq pin(cpu: gpio 119)\n[    2.010805] [    2.010805] (CPU:0-pid:1:swapper/0)tspdrv: I  parse enable-gpio\n[    2.010815] [    2.010815] (CPU:0-pid:1:swapper/0)dw791x_parse_dt: get dw791x enable pin(pm8150b: gpio 1264)\n[    2.010822] [    2.010822] (CPU:0-pid:1:swapper/0)tspdrv: I  dw791x_parse_dt:parse top_trigger3-gpio\n[    2.010831] [    2.010831] (CPU:0-pid:1:swapper/0)dw791x_parse_dt: get dw791x top_trigger3 pin(pm8150: gpio 127)\n[    2.010838] [    2.010838] (CPU:0-pid:1:swapper/0)dw791x_parse_dt: dw791x top_trigger3 pin(127) is valid\n[    2.010845] [    2.010845] (CPU:0-pid:1:swapper/0)tspdrv: I  dw791x_parse_dt:parse bot_trigger3-gpio\n[    2.010854] [    2.010854] (CPU:0-pid:1:swapper/0)dw791x_parse_dt: get dw791x bot_trigger3 pin(pm8150: gpio 128)\n[    2.010860] [    2.010860] (CPU:0-pid:1:swapper/0)dw791x_parse_dt: dw791x bot_trigger3 pin(128) is valid\n[    2.010867] [    2.010867] (CPU:0-pid:1:swapper/0)tspdrv: I  dw791x_parse_dt:parse dw791x_boot_vib_gpio\n[    2.010875] [    2.010875] (CPU:0-pid:1:swapper/0)dw791x_parse_dt: get dw791x boot_vib_gpio pin(126)\n[    2.010881] [    2.010881] (CPU:0-pid:1:swapper/0)dw791x_parse_dt: dw791x boot_vib_gpio pin(126) is valid\n[    2.010966] [    2.010966] (CPU:0-pid:1:swapper/0)tspdrv: I  init_gpio: enable_gpio direction output: 1264\n[    2.011049] [    2.011049] (CPU:0-pid:1:swapper/0)tspdrv: I  init_gpio:top_trigger3_gpio direction output: 127\n[    2.011066] [    2.011066] (CPU:0-pid:1:swapper/0)tspdrv: I  init_gpio:bot_trigger3_gpio direction output: 128\n[    2.011080] [    2.011080] (CPU:0-pid:1:swapper/0)tspdrv: I  init_gpio:boot_vib_gpio direction output: 126\n[    2.011093] [    2.011093] (CPU:0-pid:1:swapper/0)tspdrv: I  TOP_VIB: GPIO direction input: 96\n[    2.011100] [    2.011100] (CPU:0-pid:1:swapper/0)tspdrv: I  TOP_VIB: IRQ Line: 270\n[    2.012312] [    2.012312] (CPU:0-pid:1:swapper/0)tspdrv: I  BOT_VIB:GPIO direction input: 119\n[    2.012320] [    2.012320] (CPU:0-pid:1:swapper/0)tspdrv: I  BOT_VIB: IRQ Line: 292\n[    2.013608] [    2.013608] (CPU:0-pid:1:swapper/0)tspdrv: I  fifo size: 4096byte (0x2ffc)\n[    2.013761] [    2.013761] (CPU:0-pid:1:swapper/0)tspdrv: I  Bus=5, Addr=0x59, DWA DW7914A driver version 7914f002\n[    2.014995] [    2.014990] (CPU:0-pid:1:swapper/0)tspdrv: I  attribute enableVIB file register Done\n[    2.015004] [    2.014999] (CPU:0-pid:1:swapper/0)tspdrv: I  attribute dev_attr_enableVIB_0832 file register Done\n[    2.015014] [    2.015009] (CPU:0-pid:1:swapper/0)tspdrv: I  attribute top_vib_control file register Done\n[    2.015022] [    2.015018] (CPU:0-pid:1:swapper/0)tspdrv: I  attribute bot_vib_control file register Done\n[    2.015300] [    2.015300] (CPU:0-pid:1:swapper/0)tspdrv: !  dw791x_probe:bus=5, addr=0x59 ---\n[    2.015486] [    2.015486] (CPU:0-pid:1:swapper/0)tspdrv: !  dw791x_probe:bus=8, addr=0x59 , gActuatorIndex=0+++\n[    2.015597] [    2.015597] (CPU:0-pid:1:swapper/0)tspdrv: I  fifo size: 4096byte (0x2ffc)\n[    2.015740] [    2.015740] (CPU:0-pid:1:swapper/0)tspdrv: I  Bus=8, Addr=0x59, DWA DW7914A driver version 7914f002\n[    2.017154] [    2.017154] (CPU:0-pid:1:swapper/0)tspdrv: !  dw791x_probe:bus=8, addr=0x59 ---\n[    2.017193] [    2.017193] (CPU:0-pid:1:swapper/0)tspdrv: !  ImmVibeSPI_ForceOut_Initialize:---\n[    2.017201] [    2.017201] (CPU:0-pid:1:swapper/0)tspdrv: I  call VibeOSKernelLinuxInitTimer.\n[    2.017208] [    2.017208] (CPU:0-pid:1:swapper/0)tspdrv: I  call ResetOutputData.\n[    2.017215] [    2.017215] (CPU:0-pid:1:swapper/0)tspdrv: I  call  Get and concatenate device name.\n[    2.017222] [    2.017222] (CPU:0-pid:1:swapper/0)tspdrv: I  call ImmVibeSPI_Device_GetName.\n[    2.017230] [    2.017230] (CPU:0-pid:1:swapper/0)tspdrv: I  call ImmVibeSPI_Device_GetName.\n[    2.017237] [    2.017237] (CPU:0-pid:1:swapper/0)tspdrv: I  tspdrv: init_module ---.\n[    2.017397] [    2.017397] (CPU:0-pid:1:swapper/0)usbcore: registered new interface driver snd-usb-audio\n[    2.017702] [    2.017702] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:usb_audio_qmi_dev to group 39\n[    2.019808] [    2.019808] (CPU:0-pid:1:swapper/0)GACT probability NOT on\n[    2.019824] [    2.019824] (CPU:0-pid:1:swapper/0)Mirror/redirect action on\n[    2.019839] [    2.019839] (CPU:0-pid:1:swapper/0)u32 classifier\n[    2.019845] [    2.019845] (CPU:0-pid:1:swapper/0)    Actions configured\n[    2.019861] [    2.019861] (CPU:0-pid:1:swapper/0)Netfilter messages via NETLINK v0.30.\n[    2.020147] [    2.020147] (CPU:0-pid:1:swapper/0)nf_conntrack version 0.5.0 (65536 buckets, 262144 max)\n[    2.020220] [    2.020220] (CPU:0-pid:1:swapper/0)ctnetlink v0.93: registering with nfnetlink.\n[    2.020504] [    2.020504] (CPU:0-pid:1:swapper/0)xt_time: kernel timezone is -0000\n[    2.020572] [    2.020572] (CPU:0-pid:1:swapper/0)gre: GRE over IPv4 demultiplexor driver\n[    2.020580] [    2.020580] (CPU:0-pid:1:swapper/0)IPv4 over IPsec tunneling driver\n[    2.020853] [    2.020853] (CPU:0-pid:1:swapper/0)ip_tables: (C) 2000-2006 Netfilter Core Team\n[    2.021313] [    2.021313] (CPU:0-pid:1:swapper/0)arp_tables: arp_tables: (C) 2002 David S. Miller\n[    2.021403] [    2.021403] (CPU:0-pid:1:swapper/0)Initializing XFRM netlink socket\n[    2.021418] [    2.021418] (CPU:0-pid:1:swapper/0)IPsec XFRM device driver\n[    2.021578] [    2.021578] (CPU:0-pid:1:swapper/0)NET: Registered protocol family 10\n[    2.023168] [    2.023168] (CPU:0-pid:1:swapper/0)Segment Routing with IPv6\n[    2.023213] [    2.023213] (CPU:0-pid:1:swapper/0)mip6: Mobile IPv6\n[    2.023227] [    2.023227] (CPU:0-pid:1:swapper/0)ip6_tables: (C) 2000-2006 Netfilter Core Team\n[    2.023790] [    2.023790] (CPU:0-pid:1:swapper/0)sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    2.024175] [    2.024175] (CPU:0-pid:1:swapper/0)NET: Registered protocol family 17\n[    2.024190] [    2.024190] (CPU:0-pid:1:swapper/0)NET: Registered protocol family 15\n[    2.024219] [    2.024219] (CPU:0-pid:1:swapper/0)Bridge firewalling registered\n[    2.024227] [    2.024227] (CPU:0-pid:1:swapper/0)Ebtables v2.0 registered\n[    2.024333] [    2.024333] (CPU:0-pid:1:swapper/0)l2tp_core: L2TP core driver, V2.0\n[    2.024345] [    2.024345] (CPU:0-pid:1:swapper/0)l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    2.024351] [    2.024351] (CPU:0-pid:1:swapper/0)l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    2.024365] [    2.024365] (CPU:0-pid:1:swapper/0)l2tp_netlink: L2TP netlink interface\n[    2.024384] [    2.024384] (CPU:0-pid:1:swapper/0)l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    2.024391] [    2.024391] (CPU:0-pid:1:swapper/0)l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    2.024451] [    2.024451] (CPU:0-pid:1:swapper/0)sctp: Hash tables configured (bind 128/128)\n[    2.025299] [    2.025299] (CPU:0-pid:331:wk:deferred_pr)cam_dvdd_w_f_1p2: supplied by pm8150_s4\n[    2.025668] [    2.025668] (CPU:0-pid:331:wk:deferred_pr)cam_avdd_2p8: supplied by pm8150l_bob\n[    2.026282] [    2.026282] (CPU:0-pid:331:wk:deferred_pr)msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    2.026569] [    2.026569] (CPU:0-pid:331:wk:deferred_pr)msm-dwc3 a600000.ssusb: [USB] dwc3_msm_probe, pdev->dev =a600000.ssusb\n[    2.028871] [    2.028871] (CPU:0-pid:331:wk:deferred_pr)dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.029092] [    2.029092] (CPU:0-pid:331:wk:deferred_pr)dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    2.031435] [    2.031435] (CPU:0-pid:331:wk:deferred_pr)usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    2.031454] [    2.031449] (CPU:0-pid:331:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    2.031462] [    2.031457] (CPU:0-pid:331:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    2.031469] [    2.031464] (CPU:0-pid:331:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    2.031477] [    2.031472] (CPU:0-pid:331:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    2.031484] [    2.031479] (CPU:0-pid:331:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    2.031491] [    2.031486] (CPU:0-pid:331:wk:deferred_pr)sps:BAM 0x000000000a704000 is registered.\n[    2.031683] [    2.031683] (CPU:0-pid:331:wk:deferred_pr)msm-dwc3 a600000.ssusb: unable to get ssphy device\n[    2.033778] [    2.033778] (CPU:0-pid:331:wk:deferred_pr)msm-dwc3 a800000.ssusb: [USB] dwc3_msm_probe, pdev->dev =a800000.ssusb\n[    2.035984] [    2.035984] (CPU:0-pid:331:wk:deferred_pr)dwc3 a800000.dwc3: changing max_speed on rev 00000000\n[    2.036184] [    2.036184] (CPU:0-pid:331:wk:deferred_pr)dwc3 a800000.dwc3: Error getting ipc_log_ctxt\n[    2.037343] [    2.037337] (CPU:0-pid:331:wk:deferred_pr)register_client_adhoc:find path.src 101 dest 512\n[    2.037831] [    2.037826] (CPU:0-pid:331:wk:deferred_pr)register_client_adhoc:find path.src 101 dest 676\n[    2.038098] [    2.038093] (CPU:0-pid:331:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 751\n[    2.038399] [    2.038394] (CPU:0-pid:331:wk:deferred_pr)register_client_adhoc:Client handle 56 usb1\n[    2.038444] [    2.038444] (CPU:0-pid:331:wk:deferred_pr)msm-dwc3 a800000.ssusb: get extcon 0 failed\n[    2.041295] [    2.041295] (CPU:0-pid:331:wk:deferred_pr)qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    2.042008] [    2.042008] (CPU:0-pid:331:wk:deferred_pr)term_current_thresh_hi_ma : -200\n[    2.043047] [    2.043047] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]asus_probe_gpio_setting: Success to request ADC_MUX_INT_N\n[    2.043281] [    2.043281] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]asus_probe_gpio_setting: Success to request PW_ADC_EN\n[    2.043295] [    2.043295] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]asus_probe_gpio_setting: Success to request USB2_MUX1_EN\n[    2.043307] [    2.043307] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]asus_probe_gpio_setting: Success to request PMI_MUX_EN\n[    2.043318] [    2.043318] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]asus_probe_gpio_setting: Success to request POGO_OTG_EN\n[    2.043329] [    2.043329] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]asus_probe_gpio_setting: Success to request BTM_OTG_EN\n[    2.043340] [    2.043340] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]asus_probe_gpio_setting: Success to request POGO_OVP_ACOK\n[    2.043371] [    2.043371] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]asus_probe_gpio_setting: Success to request BTM_OVP_ACOK\n[    2.043382] [    2.043382] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]asus_probe_gpio_setting: Success to request PCA9468_EN\n[    2.043394] [    2.043394] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]asus_probe_gpio_setting: Success to request POGO_TEMP_INT\n[    2.044075] [    2.044069] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]Skip smblib_hvdcp_detect_enable() for aohai adapter WA\n[    2.044508] [    2.044508] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]create_chargerIC_status_proc_file: sucessed!\n[    2.045208] [    2.045208] (CPU:0-pid:331:wk:deferred_pr)(NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n[    2.045306] [    2.045306] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG][AUTO]smblib_usb_plugin_locked: start, vbus_rising = 0\n[    2.045314] [    2.045314] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]smblib_usb_plugin_locked: Try to run asus_write_mux_setting_1. \n[    2.045422] [    2.045422] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]smblib_update_usb_type: FAKE = 0, APSD = UNKNOWN PD = 0\n[    2.045446] [    2.045446] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]asus_typec_removal_function triggered\n[    2.045481] [    2.045481] (CPU:0-pid:331:wk:deferred_pr)[BAT][BMS]battery_health_data_reset \n[    2.045491] [    2.045491] (CPU:0-pid:331:wk:deferred_pr)[PSY] power_supply_changed, psy_name:usb\n[    2.045504] [    2.045499] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]Skip smblib_hvdcp_detect_enable() for aohai adapter WA\n[    2.045512] [    2.045512] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]asus_typec_removal_function: Reset ICL to default\n[    2.045535] [    2.045535] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]disable inov\n[    2.045559] [    2.045559] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG] asp1690e_mask_write_reg start\n[    2.045605] [    2.045605] (CPU:0-pid:384:wk:asus_mux_se)[BAT][CHG]asus_mux_setting_1_work: POGO tpye : NO_INSERT\n[    2.045623] [    2.045623] (CPU:0-pid:384:wk:asus_mux_se)[BAT][CHG]TYPE_C_MISC_STATUS_REG = 0x40\n[    2.045630] [    2.045630] (CPU:0-pid:384:wk:asus_mux_se)[USB_MUX]btm_ovp_stats : 1 , pogo_ovp_stats : 1, pogo_dfp_stats : 1, btm_dfp_stats : 0\n[    2.045990] [    2.045990] (CPU:0-pid:331:wk:deferred_pr)prepare to run asus_30W_Dual_chg_work\n[    2.046003] [    2.046003] (CPU:0-pid:331:wk:deferred_pr)rt_chg_get_during_swap: during swap = 0\n[    2.046010] [    2.046010] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]smblib_usb_plugin_locked. send EXTCON_USB = false\n[    2.046018] [    2.046018] (CPU:0-pid:331:wk:deferred_pr)rt_chg_get_curr_state: curr = 0\n[    2.046028] [    2.046028] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG][ERR]smblib_usb_plugin_locked: Set dual_port_once_flag = 0\n[    2.046035] [    2.046035] (CPU:0-pid:331:wk:deferred_pr)[PSY] power_supply_changed, psy_name:usb\n[    2.046069] [    2.046069] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]typec_attach_detach_irq_handler triggered detach\n[    2.046086] [    2.046086] (CPU:0-pid:331:wk:deferred_pr)[PSY] power_supply_changed, psy_name:usb\n[    2.046118] [    2.046118] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]TYPE_C_MISC_STATUS_REG = 0x40\n[    2.046126] [    2.046126] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]typec_state_change_irq_handler: Try to run asus_write_mux_setting_1. \n[    2.046133] [    2.046133] (CPU:0-pid:331:wk:deferred_pr)[PSY] power_supply_changed, psy_name:usb\n[    2.046149] [    2.046149] (CPU:0-pid:331:wk:deferred_pr)[PSY] power_supply_changed, psy_name:main\n[    2.046156] [    2.046156] (CPU:0-pid:331:wk:deferred_pr)[PSY] power_supply_changed, psy_name:usb\n[    2.046193] [    2.046193] (CPU:0-pid:331:wk:deferred_pr)[PSY] power_supply_changed, psy_name:battery\n[    2.046230] [    2.046230] (CPU:0-pid:331:wk:deferred_pr)[PSY] power_supply_changed, psy_name:usb\n[    2.052242] [    2.052242] (CPU:0-pid:426:wk:jeita_updat)of_batterydata_get_best_profile: c11p1901_5800mah_apr29th2019_4p35v found\n[    2.052292] [    2.052292] (CPU:0-pid:426:wk:jeita_updat)pm8150b_charger: jeita_update_work: Couldn't get Soft Jeita hysteresis thresholds rc=-22\n[    2.052316] [    2.052316] (CPU:0-pid:426:wk:status_chan)[BAT][CHG]smb5_usb_main_set_prop: set current_max: 500000\n[    2.052323] [    2.052323] (CPU:0-pid:426:wk:status_chan)[BAT][CHG]smblib_set_icl_current: icl_ua = 500000\n[    2.052443] [    2.052443] (CPU:0-pid:426:wk:status_chan)[BAT][CHG]smblib_set_usb_suspend: suspend = 0\n[    2.052472] [    2.052472] (CPU:0-pid:426:wk:status_chan)[BAT][CHG]smb5_usb_main_set_prop: set constant charge_current: 2750000\n[    2.052491] [    2.052491] (CPU:0-pid:426:wk:status_chan)[BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[    2.052536] [    2.052536] (CPU:0-pid:426:wk:status_chan)[BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[    2.052593] [    2.052593] (CPU:0-pid:426:wk:status_chan)[BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[    2.056476] [    2.056476] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]smb5_usb_main_set_prop: set current_max: 500000\n[    2.056484] [    2.056484] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]smblib_set_icl_current: icl_ua = 500000\n[    2.056610] [    2.056610] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]smblib_set_usb_suspend: suspend = 0\n[    2.056631] [    2.056631] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]smblib_set_prop_typec_power_role. Type : 1 , power_role : 0x10\n[    2.056638] [    2.056638] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]smblib_set_prop_typec_power_role. is_hall_sensor_detect : 0 , ASUS_POGO_ID : 0\n[    2.056740] [    2.056740] (CPU:0-pid:331:wk:deferred_pr)SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    2.056763] [    2.056763] (CPU:0-pid:331:wk:deferred_pr)[BAT][CHG]asus_set_jeita_temp_thr: Set JEITA temp register\n[    2.056840] [    2.056840] (CPU:0-pid:331:wk:deferred_pr)QPNP SMB5 probed successfully\n[    2.056975] [    2.056975] (CPU:0-pid:331:wk:deferred_pr)[PCA] pca9468_probe: =========START=========\n[    2.056986] [    2.056986] (CPU:0-pid:331:wk:deferred_pr)of_pca9468_dt: irq-gpio: 132 \n[    2.056993] [    2.056993] (CPU:0-pid:331:wk:deferred_pr)of_pca9468_dt: pca9468,iin_cfg is 1900000\n[    2.057000] [    2.057000] (CPU:0-pid:331:wk:deferred_pr)of_pca9468_dt: pca9468,ichg_cfg is 6000000\n[    2.057007] [    2.057007] (CPU:0-pid:331:wk:deferred_pr)of_pca9468_dt: pca9468,v_float is 4380000\n[    2.057014] [    2.057014] (CPU:0-pid:331:wk:deferred_pr)of_pca9468_dt: pca9468,iin_topoff is 700000\n[    2.057021] [    2.057021] (CPU:0-pid:331:wk:deferred_pr)of_pca9468_dt: pca9468,ichg_topoff is 1000000\n[    2.057028] [    2.057028] (CPU:0-pid:331:wk:deferred_pr)of_pca9468_dt: pca9468,snsres is 1\n[    2.057035] [    2.057035] (CPU:0-pid:331:wk:deferred_pr)of_pca9468_dt: pca9468,fsw_cfg is 7\n[    2.057109] [    2.057109] (CPU:0-pid:331:wk:deferred_pr)get_usbpd phandle failed (-517)\n[    2.057117] [    2.057117] (CPU:0-pid:331:wk:deferred_pr)pca9468 7-005e: Error usbpd setup!\n[    2.057477] [    2.057477] (CPU:0-pid:384:wk:asus_mux_se)[USB_MUX][Result]. usb2_mux1_en : 0, pmi_mux_en : 0\n[    2.057488] [    2.057488] (CPU:0-pid:384:wk:asus_mux_se)[BAT][CHG]asus_mux_setting_1_work: POGO tpye : NO_INSERT\n[    2.057505] [    2.057505] (CPU:0-pid:384:wk:asus_mux_se)[BAT][CHG]TYPE_C_MISC_STATUS_REG = 0x40\n[    2.057513] [    2.057513] (CPU:0-pid:384:wk:asus_mux_se)[USB_MUX]btm_ovp_stats : 1 , pogo_ovp_stats : 1, pogo_dfp_stats : 1, btm_dfp_stats : 0\n[    2.057674] [    2.057674] (CPU:0-pid:455:wk:power_suppl)[PSY] power_supply_changed, psy_name:dc\n[    2.066718] [    2.066718] (CPU:0-pid:447:wk:power_suppl)[PSY] power_supply_changed, psy_name:usb\n[    2.066732] [    2.066732] (CPU:0-pid:426:wk:power_suppl)[PSY] power_supply_changed, psy_name:main\n[    2.066744] [    2.066744] (CPU:0-pid:431:wk:power_suppl)[PSY] power_supply_changed, psy_name:pc_port\n[    2.067058] [    2.067058] (CPU:0-pid:431:wk:status_chan)[BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[    2.070058] [    2.070058] (CPU:0-pid:384:wk:asus_mux_se)[USB_MUX][Result]. usb2_mux1_en : 0, pmi_mux_en : 0\n[    2.074475] [    2.074475] (CPU:0-pid:439:wk:power_suppl)[PSY] power_supply_changed, psy_name:battery\n[    2.076483] [    2.076483] (CPU:0-pid:439:wk:status_chan)[BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[    2.106878] [    2.106878] (CPU:0-pid:331:wk:deferred_pr)msm-usb-ssphy-qmp 88e8000.ssphy: failed to get phandle for msm_ssphy_qmp\n[    2.107132] [    2.107132] (CPU:0-pid:331:wk:deferred_pr)msm-dwc3 a600000.ssusb: [USB] dwc3_msm_probe, pdev->dev =a600000.ssusb\n[    2.109398] [    2.109398] (CPU:0-pid:331:wk:deferred_pr)dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.109616] [    2.109616] (CPU:0-pid:331:wk:deferred_pr)dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    2.111862] [    2.111862] (CPU:0-pid:331:wk:deferred_pr)usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    2.111880] [    2.111875] (CPU:0-pid:331:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    2.111888] [    2.111883] (CPU:0-pid:331:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    2.111895] [    2.111890] (CPU:0-pid:331:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    2.111902] [    2.111898] (CPU:0-pid:331:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    2.111910] [    2.111905] (CPU:0-pid:331:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    2.111917] [    2.111912] (CPU:0-pid:331:wk:deferred_pr)sps:BAM 0x000000000a704000 is registered.\n[    2.112217] [    2.112217] (CPU:0-pid:331:wk:deferred_pr)msm-dwc3 a600000.ssusb: unable to get ssphy device\n[    2.114331] [    2.114331] (CPU:0-pid:331:wk:deferred_pr)msm-dwc3 a800000.ssusb: [USB] dwc3_msm_probe, pdev->dev =a800000.ssusb\n[    2.116540] [    2.116540] (CPU:0-pid:331:wk:deferred_pr)dwc3 a800000.dwc3: changing max_speed on rev 00000000\n[    2.116762] [    2.116762] (CPU:0-pid:331:wk:deferred_pr)dwc3 a800000.dwc3: Error getting ipc_log_ctxt\n[    2.117894] [    2.117889] (CPU:0-pid:331:wk:deferred_pr)register_client_adhoc:find path.src 101 dest 512\n[    2.118375] [    2.118370] (CPU:0-pid:331:wk:deferred_pr)register_client_adhoc:find path.src 101 dest 676\n[    2.118638] [    2.118633] (CPU:0-pid:331:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 751\n[    2.118930] [    2.118925] (CPU:0-pid:331:wk:deferred_pr)register_client_adhoc:Client handle 56 usb1\n[    2.119235] [    2.119235] (CPU:0-pid:330:wk:dwc3_otg_sm)msm-dwc3 a800000.ssusb: [USB] undefined state\n[    2.119245] [    2.119245] (CPU:0-pid:330:wk:dwc3_otg_sm)msm-dwc3 a800000.ssusb: [USB] dwc3_msm_resume\n[    2.119253] [    2.119253] (CPU:0-pid:330:wk:dwc3_otg_sm)msm-dwc3 a800000.ssusb: [USB] dwc3_msm_resume usb_speed=5 \n[    2.120517] [    2.120517] (CPU:0-pid:331:wk:deferred_pr)[PD] psy_changed: get property: typeC_mode:0\n[    2.120535] [    2.120535] (CPU:0-pid:331:wk:deferred_pr)[PD] psy_changed: get property: vbus present:0\n[    2.120560] [    2.120560] (CPU:0-pid:331:wk:deferred_pr)usbpd usbpd0: waive typec mode:0 present:0 orientation:0\n[    2.120896] [    2.120896] (CPU:0-pid:331:wk:deferred_pr)[PCA] pca9468_probe: =========START=========\n[    2.120908] [    2.120908] (CPU:0-pid:331:wk:deferred_pr)of_pca9468_dt: irq-gpio: 132 \n[    2.120915] [    2.120915] (CPU:0-pid:331:wk:deferred_pr)of_pca9468_dt: pca9468,iin_cfg is 1900000\n[    2.120922] [    2.120922] (CPU:0-pid:331:wk:deferred_pr)of_pca9468_dt: pca9468,ichg_cfg is 6000000\n[    2.120929] [    2.120929] (CPU:0-pid:331:wk:deferred_pr)of_pca9468_dt: pca9468,v_float is 4380000\n[    2.120935] [    2.120935] (CPU:0-pid:331:wk:deferred_pr)of_pca9468_dt: pca9468,iin_topoff is 700000\n[    2.120942] [    2.120942] (CPU:0-pid:331:wk:deferred_pr)of_pca9468_dt: pca9468,ichg_topoff is 1000000\n[    2.120949] [    2.120949] (CPU:0-pid:331:wk:deferred_pr)of_pca9468_dt: pca9468,snsres is 1\n[    2.120956] [    2.120956] (CPU:0-pid:331:wk:deferred_pr)of_pca9468_dt: pca9468,fsw_cfg is 7\n[    2.121059] [    2.121059] (CPU:0-pid:331:wk:deferred_pr)[PCA] pca9468_probe: pinctrl init done\n[    2.121101] [    2.121101] (CPU:0-pid:331:wk:deferred_pr)pca9468_hw_init: =========START=========\n[    2.121747] [    2.121747] (CPU:0-pid:330:wk:dwc3_otg_sm)msm-usb-hsphy 88e3000.hsphy: x0:65656565 x1:8c8c8c8c x2:2e2e2e2e x3:03030303\n[    2.123622] [    2.123622] (CPU:0-pid:331:wk:deferred_pr)[PCA] pca9468_set_input_current: iin=1900000\n[    2.123831] [    2.123831] (CPU:0-pid:331:wk:deferred_pr)pca9468_set_charging_current: ichg=6000000\n[    2.124039] [    2.124039] (CPU:0-pid:331:wk:deferred_pr)pca9468_set_vfloat: vfloat=4380000\n[    2.124166] [    2.124166] (CPU:0-pid:331:wk:deferred_pr)[PCA] --pca9468_hw_init\n[    2.124241] [    2.124241] (CPU:0-pid:331:wk:deferred_pr)[PCA] ++pca9468_irq_init++, gpio=132, irq=308\n[    2.124619] [    2.124619] (CPU:0-pid:331:wk:deferred_pr)[PCA] --pca9468_irq_init: success, client->irq==308\n[    2.124647] [    2.124647] (CPU:0-pid:331:wk:deferred_pr)[PCA] pca9468_probe: =========END=========\n[    2.124902] [    2.124902] (CPU:0-pid:331:wk:deferred_pr)msm-usb-ssphy-qmp 88e8000.ssphy: No separate ID extcon device\n[    2.125025] [    2.125025] (CPU:0-pid:331:wk:deferred_pr)msm-dwc3 a600000.ssusb: [USB] dwc3_msm_probe, pdev->dev =a600000.ssusb\n[    2.127260] [    2.127260] (CPU:0-pid:331:wk:deferred_pr)dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.127481] [    2.127481] (CPU:0-pid:331:wk:deferred_pr)dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    2.129650] [    2.129650] (CPU:0-pid:331:wk:deferred_pr)usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    2.129668] [    2.129663] (CPU:0-pid:331:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    2.129676] [    2.129671] (CPU:0-pid:331:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    2.129683] [    2.129678] (CPU:0-pid:331:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    2.129690] [    2.129685] (CPU:0-pid:331:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    2.129697] [    2.129692] (CPU:0-pid:331:wk:deferred_pr)sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    2.129705] [    2.129700] (CPU:0-pid:331:wk:deferred_pr)sps:BAM 0x000000000a704000 is registered.\n[    2.129939] [    2.129933] (CPU:0-pid:331:wk:deferred_pr)register_client_adhoc:find path.src 61 dest 512\n[    2.130373] [    2.130368] (CPU:0-pid:331:wk:deferred_pr)register_client_adhoc:find path.src 61 dest 676\n[    2.130639] [    2.130634] (CPU:0-pid:331:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 583\n[    2.130926] [    2.130921] (CPU:0-pid:331:wk:deferred_pr)register_client_adhoc:Client handle 57 usb0\n[    2.131248] [    2.131248] (CPU:0-pid:328:wk:dwc3_otg_sm)msm-dwc3 a600000.ssusb: [USB] undefined state\n[    2.131258] [    2.131258] (CPU:0-pid:328:wk:dwc3_otg_sm)msm-dwc3 a600000.ssusb: [USB] dwc3_msm_resume\n[    2.131265] [    2.131265] (CPU:0-pid:328:wk:dwc3_otg_sm)msm-dwc3 a600000.ssusb: [USB] dwc3_msm_resume usb_speed=6 \n[    2.131370] [    2.131370] (CPU:0-pid:1:swapper/0)[debuginit] initcall deferred_probe_initcall+0x0/0xc0 returned 0 after 103785 usecs\n[    2.132114] [    2.132114] (CPU:0-pid:1:swapper/0)core_ctl: Creating CPU group 0\n[    2.132121] [    2.132121] (CPU:0-pid:1:swapper/0)core_ctl: Init CPU0 state\n[    2.132128] [    2.132128] (CPU:0-pid:1:swapper/0)core_ctl: Init CPU1 state\n[    2.132134] [    2.132134] (CPU:0-pid:1:swapper/0)core_ctl: Init CPU2 state\n[    2.132140] [    2.132140] (CPU:0-pid:1:swapper/0)core_ctl: Init CPU3 state\n[    2.132289] [    2.132289] (CPU:0-pid:1:swapper/0)core_ctl: Creating CPU group 4\n[    2.132297] [    2.132297] (CPU:0-pid:1:swapper/0)core_ctl: Init CPU4 state\n[    2.132303] [    2.132303] (CPU:0-pid:1:swapper/0)core_ctl: Init CPU5 state\n[    2.132309] [    2.132309] (CPU:0-pid:1:swapper/0)core_ctl: Init CPU6 state\n[    2.132392] [    2.132392] (CPU:0-pid:1:swapper/0)core_ctl: Creating CPU group 7\n[    2.132400] [    2.132400] (CPU:0-pid:1:swapper/0)core_ctl: Init CPU7 state\n[    2.132782] [    2.132782] (CPU:0-pid:1:swapper/0)registered taskstats version 1\n[    2.132790] [    2.132790] (CPU:0-pid:1:swapper/0)Loading compiled-in X.509 certificates\n[    2.132805] [    2.132805] (CPU:0-pid:1:swapper/0)page_owner is disabled\n[    2.134363] [    2.134363] (CPU:0-pid:331:wk:power_suppl)[PSY] power_supply_changed, psy_name:pca9468-mains\n[    2.137417] [    2.137417] (CPU:0-pid:328:wk:dwc3_otg_sm)msm-usb-hsphy 88e2000.hsphy: x0:64646464 x1:48484848 x2:2e2e2e2e x3:03030303\n[    2.138547] [    2.138547] (CPU:0-pid:331:wk:power_suppl)pca9468_read_adc: adc_ch=5, convert_val=-24462\n[    2.138739] [    2.138739] (CPU:0-pid:331:wk:power_suppl)pca9468_read_adc: adc_ch=3, convert_val=3985000\n[    2.138749] [    2.138749] (CPU:0-pid:331:wk:power_suppl)[PCA] get_const_charge_current: iin_adc=-24462(uA), vbat_adc=3985000(v), iin_sts=100(mA), ichg_sts=6000(mA)\n[    2.138756] [    2.138756] (CPU:0-pid:331:wk:power_suppl)[PCA] pca9468_mains_get_property: prop_charge_current, ret=6000000\n[    2.138765] [    2.138765] (CPU:0-pid:331:wk:power_suppl)[PCA] pca9468_mains_get_property: prop_charge_voltage, ret=-61\n[    2.138771] [    2.138771] (CPU:0-pid:331:wk:power_suppl)[PCA] pca9468_mains_get_property: prop_pd_port not yet initial\n[    2.143378] [    2.143378] (CPU:0-pid:331:wk:asus_30W_Du)[BAT][CHG]asus_30W_Dual_chg_work start\n[    2.143399] [    2.143399] (CPU:0-pid:331:wk:asus_30W_Du)[BAT][CHG]TYPE_C_MISC_STATUS_REG : 0xd8f32e51\n[    2.143405] [    2.143405] (CPU:0-pid:331:wk:asus_30W_Du)[BAT][CHG]pogo_ovp_stats : 1, is_cc_connect : 0\n[    2.143416] [    2.143412] (CPU:0-pid:331:wk:asus_30W_Du)[BAT][CHG]WA to disable TypeC\n[    2.156722] [    2.156716] (CPU:0-pid:331:wk:asus_30W_Du)[BAT][CHG]WA to enable TypeC\n[    2.176865] [    2.176865] (CPU:0-pid:330:wk:dwc3_otg_sm)msm-dwc3 a800000.ssusb: [USB] DWC3 exited from low power mode\n[    2.176883] [    2.176883] (CPU:0-pid:330:wk:dwc3_otg_sm)msm-dwc3 a800000.ssusb: [USB] dwc3_msm_suspend\n[    2.177861] [    2.177861] (CPU:0-pid:330:wk:dwc3_otg_sm)msm-dwc3 a800000.ssusb: [USB] DWC3 in low power mode\n[    2.177886] [    2.177886] (CPU:0-pid:330:wk:dwc3_otg_sm)msm-dwc3 a800000.ssusb: [USB] idle state\n[    2.190275] [    2.190275] (CPU:0-pid:328:wk:dwc3_otg_sm)msm-dwc3 a600000.ssusb: [USB] DWC3 exited from low power mode\n[    2.190291] [    2.190291] (CPU:0-pid:328:wk:dwc3_otg_sm)msm-dwc3 a600000.ssusb: [USB] dwc3_msm_suspend\n[    2.191400] [    2.191400] (CPU:0-pid:328:wk:dwc3_otg_sm)msm-dwc3 a600000.ssusb: [USB] DWC3 in low power mode\n[    2.191423] [    2.191423] (CPU:0-pid:328:wk:dwc3_otg_sm)msm-dwc3 a600000.ssusb: [USB] idle state\n[    2.253871] [    2.253871] (CPU:0-pid:1:swapper/0)[debuginit] initcall clk_debug_init+0x0/0x1a8 returned 0 after 118156 usecs\n[    2.288964] [    2.288964] (CPU:0-pid:1:swapper/0)spss_utils [spss_init]: spss-utils driver Ver 3.0 18-Feb-2018.\n[    2.289394] [    2.289394] (CPU:0-pid:1:swapper/0)spss_utils [spss_probe]: Initialization completed ok, firmware_name [spss2p].\n[    2.294097] [    2.294097] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 40\n[    2.294782] [    2.294782] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 41\n[    2.295352] [    2.295352] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 42\n[    2.295905] [    2.295905] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 43\n[    2.296454] [    2.296454] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7 to group 44\n[    2.297014] [    2.297014] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8 to group 45\n[    2.297547] [    2.297547] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 46\n[    2.298084] [    2.298084] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 47\n[    2.298620] [    2.298620] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 48\n[    2.299764] [    2.299764] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 49\n[    2.300321] [    2.300321] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 50\n[    2.300824] [    2.300824] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 51\n[    2.301334] [    2.301334] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13 to group 52\n[    2.301844] [    2.301844] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14 to group 53\n[    2.302346] [    2.302346] (CPU:0-pid:1:swapper/0)iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb15 to group 54\n[    2.305567] [    2.305561] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 1 dest 590\n[    2.305956] [    2.305951] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 58 mdss_reg\n[    2.305995] [    2.305990] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 22 dest 512\n[    2.306307] [    2.306302] (CPU:0-pid:1:swapper/0)register_client_adhoc:find path.src 23 dest 512\n[    2.306586] [    2.306582] (CPU:0-pid:1:swapper/0)register_client_adhoc:Client handle 59 mdss_sde\n[    2.306658] [    2.306658] (CPU:0-pid:1:swapper/0)[drm:sde_dbg_init:5189] evtlog_status: enable:3, panic:1, dump:2\n[    2.306674] [    2.306674] (CPU:0-pid:1:swapper/0)msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops sde_wb_comp_ops)\n[    2.306685] [    2.306685] (CPU:0-pid:1:swapper/0)msm_drm ae00000.qcom,mdss_mdp: bound ae90000.qcom,dp_display (ops dp_display_comp_ops)\n[    2.306969] [    2.306969] (CPU:0-pid:1:swapper/0)msm-dsi-display:[dsi_display_bind] Successfully bind display panel 'dsi_r66451_fhd_dsc_cmd_dim_display'\n[    2.308349] [    2.308349] (CPU:0-pid:1:swapper/0)msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-primary (ops dsi_display_comp_ops)\n[    2.308360] [    2.308360] (CPU:0-pid:1:swapper/0)msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-secondary (ops dsi_display_comp_ops)\n[    2.308382] [    2.308382] (CPU:0-pid:1:swapper/0)[drm] mapped mdp address space @ffffff8019b00000\n[    2.308431] [    2.308431] (CPU:0-pid:1:swapper/0)msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: vbif_nrt_phys\n[    2.308461] [    2.308461] (CPU:0-pid:1:swapper/0)msm_drm ae00000.qcom,mdss_mdp: failed to get memory resource: sid_phys\n[    2.308483] [    2.308483] (CPU:0-pid:1:swapper/0)[drm:_sde_kms_get_splash_data:3213] splash mem num_regions:1\n[    2.308501] [    2.308501] (CPU:0-pid:1:swapper/0)[drm:_sde_kms_get_splash_data:3248] splash mem for disp:1 add:9c000000 size:2400000\n[    2.308509] [    2.308509] (CPU:0-pid:1:swapper/0)[sde_rsc:sde_rsc_client_create:105]: rsc not probed yet or not available\n[    2.309048] [    2.309048] (CPU:0-pid:1:swapper/0)[drm:sde_kms_hw_init:3394] sde hardware revision:0x50000001\n[    2.310203] [    2.310203] (CPU:0-pid:1:swapper/0)[drm] Created domain mdp_ns [20000,fffe0000] secure=0\n[    2.311897] [    2.311897] (CPU:0-pid:1:swapper/0)iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 55\n[    2.311918] [    2.311918] (CPU:0-pid:1:swapper/0)[drm] probing device qcom,smmu_sde_sec\n[    2.311928] [    2.311928] (CPU:0-pid:1:swapper/0)[drm] Created domain mdp_s [20000,fffe0000] secure=1\n[    2.314844] [    2.314844] (CPU:0-pid:1:swapper/0)[sde_rsc:is_sde_rsc_available:262]: rsc idx:0 not probed yet or not available\n[    2.314872] [    2.314872] (CPU:0-pid:1:swapper/0)[sde_rsc:sde_rsc_client_create:105]: rsc not probed yet or not available\n[    2.315115] [    2.315115] (CPU:0-pid:1:swapper/0)[sde_rsc:sde_rsc_client_create:105]: rsc not probed yet or not available\n[    2.315169] [    2.315169] (CPU:0-pid:1:swapper/0)[sde_rsc:sde_rsc_client_create:105]: rsc not probed yet or not available\n[    2.315359] [    2.315359] (CPU:0-pid:1:swapper/0)[drm-dp] dp_parser_get_vreg: no supply entry present: ???\n[    2.315367] [    2.315367] (CPU:0-pid:1:swapper/0)[drm-dp] dp_parser_get_vreg: no supply entry present: ???\n[    2.315374] [    2.315374] (CPU:0-pid:1:swapper/0)[drm-dp] dp_parser_get_vreg: no supply entry present: ???\n[    2.316397] [    2.316397] (CPU:0-pid:1:swapper/0)i2c i2c-9: of_i2c: modalias failure on /soc/qcom,dp_display@0/qcom,ctrl-supply-entries\n[    2.316406] [    2.316406] (CPU:0-pid:1:swapper/0)i2c i2c-9: Failed to create I2C device for /soc/qcom,dp_display@0/qcom,ctrl-supply-entries\n[    2.316414] [    2.316414] (CPU:0-pid:1:swapper/0)i2c i2c-9: of_i2c: modalias failure on /soc/qcom,dp_display@0/qcom,phy-supply-entries\n[    2.316422] [    2.316422] (CPU:0-pid:1:swapper/0)i2c i2c-9: Failed to create I2C device for /soc/qcom,dp_display@0/qcom,phy-supply-entries\n[    2.316431] [    2.316431] (CPU:0-pid:1:swapper/0)i2c i2c-9: of_i2c: modalias failure on /soc/qcom,dp_display@0/qcom,core-supply-entries\n[    2.316439] [    2.316439] (CPU:0-pid:1:swapper/0)i2c i2c-9: Failed to create I2C device for /soc/qcom,dp_display@0/qcom,core-supply-entries\n[    2.319018] [    2.319018] (CPU:0-pid:1:swapper/0)[drm-dp] is_unlocked: verifiedbootstate=orange\n[    2.319026] [    2.319026] (CPU:0-pid:1:swapper/0)[drm-dp] is_unlocked: UNLOCKED=\n[    2.319033] [    2.319033] (CPU:0-pid:1:swapper/0)[drm-dp] dp_init_sub_modules: Disable hdcp for unlocked device\n[    2.319064] [    2.319064] (CPU:0-pid:1:swapper/0)[sde_rsc:sde_rsc_client_create:105]: rsc not probed yet or not available\n[    2.319076] [    2.319076] (CPU:0-pid:1:swapper/0)[sde_rsc:sde_rsc_client_create:105]: rsc not probed yet or not available\n[    2.322286] [    2.322286] (CPU:0-pid:1:swapper/0)[drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    2.322295] [    2.322295] (CPU:0-pid:1:swapper/0)[drm] No driver support for vblank timestamp query.\n[    2.323525] [    2.323525] (CPU:0-pid:1:swapper/0)[drm] Initialized msm_drm 1.2.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    2.323613] [    2.323613] (CPU:0-pid:1:swapper/0)msm-dsi-panel:[dsi_panel_parse_topology:2893] default topology: lm: 1 comp_enc:1 intf: 1\n[    2.323758] [    2.323758] (CPU:0-pid:1:swapper/0)msm-dsi-panel:[dsi_panel_parse_partial_update_caps:2983] partial update disabled as the property is not set\n[    2.323913] [    2.323913] (CPU:0-pid:1:swapper/0)dsi-ctrl:[_dsi_ctrl_setup_isr] [DSI_0] IRQ 631 registered\n[    2.348412] [    2.348412] (CPU:0-pid:331:wk:deferred_pr)sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-qos-lut : doesn't exist in device tree\n[    2.348421] [    2.348421] (CPU:0-pid:331:wk:deferred_pr)sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-danger-lut : doesn't exist in device tree\n[    2.348430] [    2.348430] (CPU:0-pid:331:wk:deferred_pr)sde_mdp_parse_dt_prop_len: <SDEROT_INFO> prop qcom,mdss-inline-rot-safe-lut : doesn't exist in device tree\n[    2.348510] [    2.348506] (CPU:0-pid:331:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 590\n[    2.348888] [    2.348883] (CPU:0-pid:331:wk:deferred_pr)register_client_adhoc:Client handle 60 sde_reg\n[    2.349101] [    2.349101] (CPU:0-pid:331:wk:deferred_pr)iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_unsec_cb to group 56\n[    2.349137] [    2.349137] (CPU:0-pid:331:wk:deferred_pr)sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[0] mapping and clk register successful!\n[    2.349328] [    2.349328] (CPU:0-pid:331:wk:deferred_pr)iommu: Adding device ae00000.qcom,mdss_rotator:qcom,smmu_rot_sec_cb to group 57\n[    2.349352] [    2.349352] (CPU:0-pid:331:wk:deferred_pr)sde_smmu_probe: <SDEROT_INFO> iommu v2 domain[1] mapping and clk register successful!\n[    2.349451] [    2.349446] (CPU:0-pid:331:wk:deferred_pr)register_client_adhoc:find path.src 25 dest 512\n[    2.349764] [    2.349759] (CPU:0-pid:331:wk:deferred_pr)register_client_adhoc:Client handle 61 mdss_rotator\n[    2.349785] [    2.349781] (CPU:0-pid:331:wk:deferred_pr)register_client_adhoc:find path.src 1 dest 590\n[    2.350086] [    2.350080] (CPU:0-pid:331:wk:deferred_pr)register_client_adhoc:Client handle 62 mdss_rot_reg\n[    2.350344] [    2.350344] (CPU:0-pid:331:wk:deferred_pr)No change in context(0==0), skip\n[    2.351331] [    2.351331] (CPU:0-pid:331:wk:deferred_pr)sde_rotator_evtlog_create_debugfs: evtlog_status: enable:1, panic:1, dump:2\n[    2.352201] [    2.352201] (CPU:0-pid:331:wk:deferred_pr)sde_rotator ae00000.qcom,mdss_rotator: <SDEROT_INFO> SDE v4l2 rotator probe success\n[    2.352666] [    2.352666] (CPU:0-pid:1:swapper/0)ngd_msm_ctrl 171c0000.slim: error creating ipc_logging context\n[    2.352675] [    2.352675] (CPU:0-pid:1:swapper/0)ngd_msm_ctrl 171c0000.slim: error creating ipc_error_logging context\n[    2.352993] [    2.352993] (CPU:0-pid:1:swapper/0)iommu: Adding device 171c0000.slim:qcom,iommu_slim_ctrl_cb to group 58\n[    2.354904] [    2.354904] (CPU:0-pid:1:swapper/0)ngd_msm_ctrl 17240000.slim: error creating ipc_logging context\n[    2.354912] [    2.354912] (CPU:0-pid:1:swapper/0)ngd_msm_ctrl 17240000.slim: error creating ipc_error_logging context\n[    2.355189] [    2.355189] (CPU:0-pid:1:swapper/0)iommu: Adding device 17240000.slim:qcom,iommu_slim_ctrl_cb to group 59\n[    2.357702] [    2.357702] (CPU:0-pid:1:swapper/0)[Keys][gpio_keys.c] gpio_keys_probe() +++\n[    2.358166] [    2.358166] (CPU:0-pid:1:swapper/0)input: gpio-keys as /devices/platform/soc/soc:gpio_keys_asus/input/input7\n[    2.358278] [    2.358278] (CPU:0-pid:1:swapper/0)[Keys][gpio_keys.c] gpio_keys_probe() ---\n[    2.358510] [    2.358510] (CPU:0-pid:1:swapper/0)qcom,qpnp-rtc c440000.qcom,spmi:qcom,pm8150@0:qcom,pm8150_rtc: setting system clock to 1970-03-12 16:04:44 UTC (6105884)\n[    2.360378] [    2.360378] (CPU:0-pid:1:swapper/0)rt_charger_probe\n[    2.362688] [    2.362688] (CPU:0-pid:1:swapper/0)rt_charger_probe: OK!\n[    2.363541] [    2.363541] (CPU:0-pid:1:swapper/0)lpm_levels: register_cluster_lpm_stats()\n[    2.363688] [    2.363688] (CPU:0-pid:1:swapper/0)lpm_levels: register_cluster_lpm_stats()\n[    2.367052] [    2.367052] (CPU:0-pid:1:swapper/0)rmnet_ipa3 started initialization\n[    2.367596] [    2.367591] (CPU:0-pid:1:swapper/0)RNDIS_IPA module is loaded.\n[    2.368581] [    2.368581] (CPU:0-pid:1:swapper/0)msm_bus_late_init: Remove handoff bw requests\n[    2.369502] [    2.369502] (CPU:0-pid:1:swapper/0)hlos1_vote_aggre_noc_mmu_audio_tbu_gdsc: disabling\n[    2.369620] [    2.369620] (CPU:0-pid:1:swapper/0)hlos1_vote_aggre_noc_mmu_tbu1_gdsc: disabling\n[    2.369734] [    2.369734] (CPU:0-pid:1:swapper/0)hlos1_vote_aggre_noc_mmu_tbu2_gdsc: disabling\n[    2.369848] [    2.369848] (CPU:0-pid:1:swapper/0)hlos1_vote_aggre_noc_mmu_pcie_tbu_gdsc: disabling\n[    2.369979] [    2.369979] (CPU:0-pid:1:swapper/0)display_panel_avdd_eldo: disabling\n[    2.369986] [    2.369986] (CPU:0-pid:1:swapper/0)actuator_triple_rear_regulator: disabling\n[    2.369994] [    2.369994] (CPU:0-pid:1:swapper/0)actuator_triple_rear_aux_regulator: disabling\n[    2.370001] [    2.370001] (CPU:0-pid:1:swapper/0)camera_rear0_vana_ldo: disabling\n[    2.370008] [    2.370008] (CPU:0-pid:1:swapper/0)cam_dvdd_t_1p05_en: disabling\n[    2.370015] [    2.370015] (CPU:0-pid:1:swapper/0)camera_dvdd_t1_1p1_en: disabling\n[    2.370054] [    2.370054] (CPU:0-pid:331:wk:power_suppl)[PSY] power_supply_changed, psy_name:rt-chg\n[    2.372002] [    2.372002] (CPU:0-pid:1:swapper/0)cam_dvdd_w_f_1p2: disabling\n[    2.372011] [    2.372011] (CPU:0-pid:1:swapper/0)cam_avdd_2p8: disabling\n[    2.372032] [    2.372032] (CPU:0-pid:1:swapper/0)regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    2.372198] [    2.372198] (CPU:0-pid:1:swapper/0)__tcpc_class_complete_work = type_c_port0\n[    2.374775] [    2.374775] (CPU:0-pid:91:pd_dbg_info)///PD dbg info 42d\n[    2.374782] [    2.374782] (CPU:0-pid:91:pd_dbg_info)<    2.374>TCPC-TYPEC:typec_init: TrySNK\r\n[    2.375676] [    2.375676] (CPU:0-pid:1:swapper/0)chg_tcp_notifer_call TCP_NOTIFY_SINK_VBUS\n[    2.375685] [    2.375685] (CPU:0-pid:1:swapper/0)rt_chg_get_curr_state: curr = 0\n[    2.375692] [    2.375692] (CPU:0-pid:1:swapper/0)asus_request_DPDM_flag. enable = 0\n[    2.375699] [    2.375699] (CPU:0-pid:1:swapper/0)chg_tcp_notifer_call TCP_NOTIFY_SOURCE_VBUS\n[    2.375706] [    2.375706] (CPU:0-pid:1:swapper/0)[BAT][CHG]asus_request_BTM_otg_en. This function is only called by USB2. enable : 0\n[    2.375712] [    2.375712] (CPU:0-pid:1:swapper/0)[BAT][CHG]asus_request_BTM_otg_en: Allow BTM_DFP to control BTM_OTG\n[    2.383412] [    2.383412] (CPU:0-pid:1:swapper/0)[BAT][CHG]asus_request_BTM_otg_en. BTM_OTG_EN level : 0\n[    2.383420] [    2.383420] (CPU:0-pid:1:swapper/0)rt_chg_handle_source_vbus asus_request_BTM_otg_en = 0\n[    2.383429] [    2.383429] (CPU:0-pid:1:swapper/0)chg_tcp_notifer_call TCP_NOTIFY_DEFAULT, event = 11\n[    2.383498] [    2.383498] (CPU:0-pid:1:swapper/0)tcpc_device_irq_enable : tcpc irq enable OK!\n[    2.383509] [    2.383509] (CPU:0-pid:1:swapper/0)ALSA device list:\n[    2.383516] [    2.383516] (CPU:0-pid:1:swapper/0)  No soundcards found.\n[    2.385610] [    2.385610] (CPU:0-pid:1:swapper/0)Freeing unused kernel memory: 6144K\n[    2.390177] [    2.390177] (CPU:0-pid:331:wk:tcpc_event_)tcpc_event_init_work typec attache new = 0\n[    2.397710] [    2.397710] (CPU:0-pid:91:pd_dbg_info)///PD dbg info 41d\n[    2.397718] [    2.397718] (CPU:0-pid:91:pd_dbg_info)<    2.375>TCPC-TYPEC:** Unattached.SNK\r\n[    2.433475] [    2.433475] (CPU:0-pid:335:tcpc_timer_type)chg_tcp_notifer_call TCP_NOTIFY_DEFAULT, event = 11\n[    2.506718] [    2.506718] (CPU:0-pid:4:wk:set_1V2_2V8)[EDGE] snt8100fsr: INFO: set_1V2_2V8_pin_func: Set pinctl: PM8150B GPIO12 pull-up\n[    2.506729] [    2.506729] (CPU:0-pid:4:wk:set_1V2_2V8)[EDGE] snt8100fsr: INFO: set_pinctrl: Set_pinctrl start!\n[    2.506863] [    2.506863] (CPU:0-pid:4:wk:set_1V2_2V8)[EDGE] snt8100fsr: INFO: set_pinctrl: Set_pinctrl done!\n[    2.533940] [    2.533940] (CPU:0-pid:329:wk:aura_check_)[AURA_SYNC] FW VER : 0x4\n[    2.853405] [    2.853399] (CPU:0-pid:331:wk:asus_batter)[BAT][BMS]ATD_Is_battID_within_range: batt id(50700) is within 51 k range\n                \n[    2.853424] [    2.853424] (CPU:0-pid:331:wk:asus_batter)[BAT][BMS]asus_battery_version_work: battery version = C11p1901-T-01-0001-16.0620.1906.67, state = 1\n[    3.013384] [    3.013384] (CPU:0-pid:4:wk:set_1V2_2V8)[EDGE] snt8100fsr: INFO: set_1V2_2V8_pin_func: Test====ap lock for load fw====\n[    3.013848] [    3.013848] (CPU:0-pid:4:wk:set_1V2_2V8)[EDGE] snt8100fsr: INFO: set_1V2_2V8_pin_func: REGISTER_CHIP_ID_LSB = 0x4133\n[    3.014088] [    3.014088] (CPU:0-pid:4:wk:set_1V2_2V8)[EDGE] snt8100fsr: INFO: set_1V2_2V8_pin_func: REGISTER_CHIP_ID_MSB = 0x4\n[    3.066731] [    3.066731] (CPU:0-pid:4:wk:smblib_icl_)[PSY] power_supply_changed, psy_name:main\n[    3.066977] [    3.066977] (CPU:0-pid:4:wk:status_chan)[BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[    3.140141] [    3.140141] (CPU:0-pid:570:python3)CPU1: shutdown\n[    3.142483] [    3.142483] (CPU:0-pid:570:python3)CPU2: shutdown\n[    3.144533] [    3.144533] (CPU:0-pid:570:python3)CPU3: shutdown\n[    3.147281] [    3.147281] (CPU:0-pid:570:python3)CPU4: shutdown\n[    3.149142] [    3.149142] (CPU:0-pid:570:python3)CPU5: shutdown\n[    3.150666] [    3.150666] (CPU:0-pid:570:python3)CPU6: shutdown\n[    3.151626] [    3.151626] (CPU:0-pid:570:python3)CPU7: shutdown\n[    4.107732] [    4.107732] (CPU:0-pid:331:wk:get_config_)of_batterydata_get_best_profile: alium_860_89032_0000_3600mah_sept24th2018 found\n[    5.036708] [    5.036708] (CPU:0-pid:0:swapper/0)loadavg 0.24  0/438 \n[    5.173459] [    5.173459] (CPU:0-pid:4:wk:upload_wq_f)[EDGE] snt8100fsr: INFO: upload_firmware_internal: Enter upload_firmware_internal\n[    5.173504] [    5.173504] (CPU:0-pid:4:wk:upload_wq_f)[EDGE] snt8100fsr: INFO: open_firmware_file: Opening file: /vendor/asusfw/grip_fw/snt8100fsr.image_default\n[    5.173623] [    5.173623] (CPU:0-pid:4:wk:upload_wq_f)[EDGE] snt8100fsr: !!! ERROR !!!: open_firmware_file: Unable to open firmware file '/vendor/asusfw/grip_fw/snt8100fsr.image_default', error -2\n[    6.882020] [    6.882020] (CPU:0-pid:426:wk:update_gaug)(6)1970-03-12 16:04:49 :[BAT][Ser]report Capacity ==>70, FCC:5749mAh, BMS:70, V:3945mV, Cur:339mA, Temp:19.5C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[    6.882333] [    6.882333] (CPU:0-pid:426:wk:update_gaug)[BAT][BMS]print_battery_status: csoc=3912899, bsoc=174, msoc=179, ocv=3980230, SocSts=2, BatSts=0\n[   10.040040] [   10.040040] (CPU:0-pid:0:swapper/0)loadavg 0.54  0/438 \n[   10.240279] [   10.240279] (CPU:0-pid:4:wk:upload_wq_f)[EDGE] snt8100fsr: !!! ERROR !!!: open_firmware_file: Unable to open firmware file '/vendor/asusfw/grip_fw/snt8100fsr.image_default', error -2\n[   15.043373] [   15.043373] (CPU:0-pid:0:swapper/0)loadavg 0.81  0/438 \n[   15.306853] [   15.306853] (CPU:0-pid:4:wk:upload_wq_f)[EDGE] snt8100fsr: !!! ERROR !!!: open_firmware_file: Unable to open firmware file '/vendor/asusfw/grip_fw/snt8100fsr.image_default', error -2\n[   20.046707] [   20.046707] (CPU:0-pid:0:swapper/0)loadavg 1.07  0/438 \n[   20.373515] [   20.373515] (CPU:0-pid:4:wk:upload_wq_f)[EDGE] snt8100fsr: !!! ERROR !!!: open_firmware_file: Unable to open firmware file '/vendor/asusfw/grip_fw/snt8100fsr.image_default', error -2\n[   25.050038] [   25.050038] (CPU:0-pid:0:swapper/0)loadavg 1.30  0/439 \n[   25.440274] [   25.440274] (CPU:0-pid:4:wk:upload_wq_f)[EDGE] snt8100fsr: !!! ERROR !!!: open_firmware_file: Unable to open firmware file '/vendor/asusfw/grip_fw/snt8100fsr.image_default', error -2\n[   30.053371] [   30.053371] (CPU:0-pid:0:swapper/0)loadavg 1.52  0/439 \n[   30.506850] [   30.506850] (CPU:0-pid:4:wk:upload_wq_f)[EDGE] snt8100fsr: !!! ERROR !!!: open_firmware_file: Unable to open firmware file '/vendor/asusfw/grip_fw/snt8100fsr.image_default', error -2\n[   32.053647] [   32.053647] (CPU:0-pid:447:wk:init_batt_h)FG: file_op: open /batinfo/bat_health err! error code:-2\n[   32.053691] [   32.053691] (CPU:0-pid:447:wk:init_batt_h)FG: resotre_bat_health: Read bat health file failed!\n[   32.053770] [   32.053741] (CPU:0-pid:447:wk:battery_saf)[BAT][BMS][ERR]update_battery_safe +\n[   32.053779] [   32.053779] (CPU:0-pid:447:wk:battery_saf)init_batt_cycle_count_data +++\n[   32.053857] [   32.053857] (CPU:0-pid:447:wk:battery_saf)FG: file_op: open /batinfo/.bs err! error code:-2\n[   32.053896] [   32.053896] (CPU:0-pid:447:wk:battery_saf)FG: init_batt_cycle_count_data: Read cycle count file failed!\n[   32.053960] [   32.053933] (CPU:0-pid:447:wk:battery_saf)FG: update_battery_safe: cyclecount is not initialized\n[   35.056702] [   35.056702] (CPU:0-pid:0:swapper/0)loadavg 1.72  0/439 \n[   35.573512] [   35.573512] (CPU:0-pid:4:wk:upload_wq_f)[EDGE] snt8100fsr: !!! ERROR !!!: open_firmware_file: Unable to open firmware file '/vendor/asusfw/grip_fw/snt8100fsr.image_default', error -2\n[   40.060034] [   40.060034] (CPU:0-pid:0:swapper/0)loadavg 1.90  0/439 \n[   40.640271] [   40.640271] (CPU:0-pid:4:wk:upload_wq_f)[EDGE] snt8100fsr: !!! ERROR !!!: open_firmware_file: Unable to open firmware file '/vendor/asusfw/grip_fw/snt8100fsr.image_default', error -2\n[   45.063369] [   45.063369] (CPU:0-pid:0:swapper/0)loadavg 2.07  0/439 \n[   45.706848] [   45.706848] (CPU:0-pid:4:wk:upload_wq_f)[EDGE] snt8100fsr: !!! ERROR !!!: open_firmware_file: Unable to open firmware file '/vendor/asusfw/grip_fw/snt8100fsr.image_default', error -2\n[   50.066699] [   50.066699] (CPU:0-pid:0:swapper/0)loadavg 2.22  0/439 \n[   50.773516] [   50.773516] (CPU:0-pid:4:wk:upload_wq_f)[EDGE] snt8100fsr: !!! ERROR !!!: open_firmware_file: Unable to open firmware file '/vendor/asusfw/grip_fw/snt8100fsr.image_default', error -2\n[   55.070031] [   55.070031] (CPU:0-pid:0:swapper/0)loadavg 2.36  0/439 \n[   55.840202] [   55.840202] (CPU:0-pid:4:wk:upload_wq_f)[EDGE] snt8100fsr: INFO: open_firmware_file: Opening file: /vendor/asusfw/grip_fw/snt8100fsr.image_default\n[   55.840316] [   55.840316] (CPU:0-pid:4:wk:upload_wq_f)[EDGE] snt8100fsr: INFO: open_firmware_file: Opening file ret = -2\n[   55.840376] [   55.840376] (CPU:0-pid:4:wk:upload_wq_f)[EDGE] snt8100fsr: INFO: firmware_cleanup: Clear wq work and unregister irq\n[   55.840417] [   55.840417] (CPU:0-pid:4:wk:upload_wq_f)[EDGE] snt8100fsr: INFO: upload_firmware_internal: Clay: AP_Lock is locked\n[   55.840455] [   55.840455] (CPU:0-pid:4:wk:upload_wq_f)[EDGE] snt8100fsr: INFO: upload_firmware_internal: FAILED to load fw\n[   55.840534] [   55.840507] (CPU:0-pid:4:wk:upload_wq_f)(55)1970-03-12 16:05:37 :[Grip] Sensor: Load fw fail!!!\n[   60.073363] [   60.073363] (CPU:0-pid:0:swapper/0) [16:05:42.214877364] loadavg 2.42  0/439 \n[   62.773517] [   62.773517] (CPU:0-pid:332:goodix-parse_cf) [16:05:44.915031174] firmware goodix_cfg_group.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[   62.773756] [   62.773756] (CPU:0-pid:332:goodix-parse_cf) [16:05:44.915270080] [GTP-ERR][goodix_read_cfg_bin:498] Cfg_bin image [goodix_cfg_group.bin] not available,error:-11, try_times:1\n[   62.773840] [   62.773840] (CPU:0-pid:104:wk:__do_regist) [16:05:44.915354195] [GTP-ERR][__do_register_ext_module:102] Module [Goodix_gsx_gesture] timeout\n[   62.773916] [   62.773916] (CPU:0-pid:199:wk:__do_regist) [16:05:44.915430341] [GTP-ERR][__do_register_ext_module:102] Module [goodix-fwu] timeout\n[   65.076696] [   65.076696] (CPU:0-pid:0:swapper/0) [16:05:47.218210258] loadavg 2.30  0/439 \n[   70.080031] [   70.080031] (CPU:0-pid:0:swapper/0) [16:05:52.221545912] loadavg 2.20  0/439 \n[   75.083361] [   75.083361] (CPU:0-pid:0:swapper/0) [16:05:57.224876932] loadavg 2.10  0/439 \n[   80.086693] [   80.086693] (CPU:0-pid:0:swapper/0) [16:06:02.228209253] loadavg 2.01  0/439 \n[   83.278740] [   83.278740] (CPU:1-pid:0:swapper/1) [16:06:05.420257436] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000\n[   83.278899] [   83.278899] (CPU:1-pid:0:swapper/1) [16:06:05.420415821] CPU1: Booted secondary processor [51df805e]\n[   85.090028] [   85.090028] (CPU:0-pid:0:swapper/0) [16:06:07.231544543] loadavg 1.93  0/438 \n[   90.093358] [   90.093358] (CPU:0-pid:0:swapper/0) [16:06:12.234875354] loadavg 1.85  0/439 \n[   95.096694] [   95.096694] (CPU:0-pid:0:swapper/0) [16:06:17.238211321] loadavg 1.87  1/440 \n[  100.100024] [  100.100024] (CPU:0-pid:0:swapper/0) [16:06:22.241541872] loadavg 1.88  1/440 \n[  105.103356] [  105.103356] (CPU:0-pid:0:swapper/0) [16:06:27.244874974] loadavg 1.89  1/440 \n[  106.824998] [  106.824998] (CPU:0-pid:0:swapper/0) [16:06:28.966516604] [ALARM] alarmtimer_fired: fg_esr_fast_cal_timer\n[  110.106687] [  110.106687] (CPU:0-pid:0:swapper/0) [16:06:32.248206306] loadavg 1.90  1/440 \n[  115.110019] [  115.110019] (CPU:0-pid:0:swapper/0) [16:06:37.251538888] loadavg 1.90  1/440 \n[  120.113354] [  120.113354] (CPU:0-pid:0:swapper/0) [16:06:42.254874022] loadavg 1.91  1/440 \n[  124.213475] [  124.213475] (CPU:0-pid:332:goodix-parse_cf) [16:06:46.354995159] firmware goodix_cfg_group.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  124.213697] [  124.213697] (CPU:0-pid:332:goodix-parse_cf) [16:06:46.355217764] [GTP-ERR][goodix_read_cfg_bin:498] Cfg_bin image [goodix_cfg_group.bin] not available,error:-11, try_times:2\n[  125.116685] [  125.116685] (CPU:0-pid:0:swapper/0) [16:06:47.258205562] loadavg 1.92  1/440 \n[  130.120016] [  130.120016] (CPU:0-pid:0:swapper/0) [16:06:52.261537258] loadavg 1.92  1/440 \n[  135.123350] [  135.123350] (CPU:0-pid:0:swapper/0) [16:06:57.264871819] loadavg 1.93  1/440 \n[  140.126681] [  140.126681] (CPU:0-pid:0:swapper/0) [16:07:02.268203411] loadavg 1.94  1/440 \n[  145.130016] [  145.130016] (CPU:0-pid:0:swapper/0) [16:07:07.271538181] loadavg 1.94  1/440 \n[  150.133347] [  150.133347] (CPU:0-pid:0:swapper/0) [16:07:12.274869512] loadavg 1.94  1/440 \n[  155.136678] [  155.136678] (CPU:0-pid:0:swapper/0) [16:07:17.278201729] loadavg 1.95  1/440 \n[  160.140011] [  160.140011] (CPU:0-pid:0:swapper/0) [16:07:22.281534728] loadavg 1.95  1/440 \n[  165.143344] [  165.143344] (CPU:0-pid:0:swapper/0) [16:07:27.284868716] loadavg 1.96  1/440 \n[  170.146677] [  170.146677] (CPU:0-pid:0:swapper/0) [16:07:32.288202183] loadavg 1.96  1/440 \n[  175.150008] [  175.150008] (CPU:0-pid:0:swapper/0) [16:07:37.291533463] loadavg 1.96  1/440 \n[  180.153340] [  180.153340] (CPU:0-pid:0:swapper/0) [16:07:42.294865992] loadavg 1.97  1/440 \n[  185.156672] [  185.156672] (CPU:0-pid:0:swapper/0) [16:07:47.298198730] loadavg 1.97  1/440 \n[  185.653451] [  185.653451] (CPU:0-pid:332:goodix-parse_cf) [16:07:47.794977790] firmware goodix_cfg_group.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  185.653660] [  185.653660] (CPU:0-pid:332:goodix-parse_cf) [16:07:47.795186072] [GTP-ERR][goodix_read_cfg_bin:498] Cfg_bin image [goodix_cfg_group.bin] not available,error:-11, try_times:3\n[  190.160004] [  190.160004] (CPU:0-pid:0:swapper/0) [16:07:52.301531208] loadavg 1.97  1/440 \n[  190.775154] [  190.775154] (CPU:0-pid:199:wk:update_gaug) [16:07:52.916681061] (190)1970-03-12 16:07:52 :[BAT][Ser]report Capacity ==>70, FCC:5749mAh, BMS:70, V:3932mV, Cur:330mA, Temp:20.2C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[  190.775483] [  190.775483] (CPU:0-pid:199:wk:update_gaug) [16:07:52.917009290] [BAT][BMS]print_battery_status: csoc=3894332, bsoc=173, msoc=178, ocv=3977789, SocSts=2, BatSts=0\n[  191.262434] [  191.262434] (CPU:0-pid:365:irq/560-msoc-de) [16:07:53.403961057] [PSY] power_supply_changed, psy_name:battery\n[  191.265425] [  191.265425] (CPU:0-pid:4:wk:status_chan) [16:07:53.406952464] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[  191.265938] [  191.265938] (CPU:0-pid:91:pd_dbg_info) [16:07:53.407464443] ///PD dbg info 66d\n[  191.265985] [  191.265985] (CPU:0-pid:91:pd_dbg_info) [16:07:53.407512047] <  191.265>TCPC-TCPC:bat_update_work_func battery update soc = 70\n[  191.286774] [  191.286774] (CPU:0-pid:91:pd_dbg_info) [16:07:53.428300799] ///PD dbg info 62d\n[  191.286822] [  191.286822] (CPU:0-pid:91:pd_dbg_info) [16:07:53.428348768] <  191.266>TCPC-TCPC:bat_update_work_func Battery Discharging\n[  195.163340] [  195.163340] (CPU:0-pid:0:swapper/0) [16:07:57.304867071] loadavg 1.97  1/440 \n[  200.166670] [  200.166670] (CPU:0-pid:0:swapper/0) [16:08:02.308197882] loadavg 1.97  1/440 \n[  205.170002] [  205.170002] (CPU:0-pid:0:swapper/0) [16:08:07.311529943] loadavg 1.98  1/440 \n[  210.173334] [  210.173334] (CPU:0-pid:0:swapper/0) [16:08:12.314862629] loadavg 1.98  1/440 \n[  215.176668] [  215.176668] (CPU:0-pid:0:swapper/0) [16:08:17.318197294] loadavg 1.98  1/440 \n[  220.180001] [  220.180001] (CPU:0-pid:0:swapper/0) [16:08:22.321530657] loadavg 1.98  1/440 \n[  225.183333] [  225.183333] (CPU:0-pid:0:swapper/0) [16:08:27.324863187] loadavg 1.98  1/440 \n[  230.186664] [  230.186664] (CPU:0-pid:0:swapper/0) [16:08:32.328194675] loadavg 1.98  1/440 \n[  235.189998] [  235.189998] (CPU:0-pid:0:swapper/0) [16:08:37.331528715] loadavg 1.99  1/440 \n[  240.193329] [  240.193329] (CPU:0-pid:0:swapper/0) [16:08:42.334860984] loadavg 1.99  1/440 \n[  245.196663] [  245.196663] (CPU:0-pid:0:swapper/0) [16:08:47.338195128] loadavg 1.99  1/440 \n[  247.093467] [  247.093467] (CPU:0-pid:332:goodix-parse_cf) [16:08:49.234998963] firmware goodix_cfg_group.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  247.093675] [  247.093675] (CPU:0-pid:332:goodix-parse_cf) [16:08:49.235207713] [GTP-ERR][goodix_read_cfg_bin:498] Cfg_bin image [goodix_cfg_group.bin] not available,error:-11, try_times:4\n[  250.199994] [  250.199994] (CPU:0-pid:0:swapper/0) [16:08:52.341526147] loadavg 1.99  1/440 \n[  255.203326] [  255.203326] (CPU:0-pid:0:swapper/0) [16:08:57.344859250] loadavg 1.99  1/440 \n[  260.206658] [  260.206658] (CPU:0-pid:0:swapper/0) [16:09:02.348191623] loadavg 1.99  1/440 \n[  265.209990] [  265.209990] (CPU:0-pid:0:swapper/0) [16:09:07.351524153] loadavg 1.99  1/440 \n[  270.213324] [  270.213324] (CPU:0-pid:0:swapper/0) [16:09:12.354858714] loadavg 1.99  1/440 \n[  275.216655] [  275.216655] (CPU:0-pid:0:swapper/0) [16:09:17.358190046] loadavg 1.99  1/440 \n[  280.219987] [  280.219987] (CPU:0-pid:0:swapper/0) [16:09:22.361522211] loadavg 1.99  1/440 \n[  285.223321] [  285.223321] (CPU:0-pid:0:swapper/0) [16:09:27.364856616] loadavg 1.99  1/440 \n[  290.226652] [  290.226652] (CPU:0-pid:0:swapper/0) [16:09:32.368188364] loadavg 1.99  1/440 \n[  295.229986] [  295.229986] (CPU:0-pid:0:swapper/0) [16:09:37.371523342] loadavg 1.99  1/440 \n[  296.262442] [  296.262442] (CPU:0-pid:0:swapper/0) [16:09:38.403978601] [ALARM] alarmtimer_fired: fg_esr_fast_cal_timer\n[  300.233317] [  300.233317] (CPU:0-pid:0:swapper/0) [16:09:42.374854465] loadavg 1.99  1/440 \n[  305.236649] [  305.236649] (CPU:0-pid:0:swapper/0) [16:09:47.378186526] loadavg 1.99  1/440 \n[  308.533430] [  308.533430] (CPU:0-pid:332:goodix-parse_cf) [16:09:50.674967948] firmware goodix_cfg_group.bin: _request_firmware_load: firmware state wait timeout: rc = -110\n[  308.533636] [  308.533636] (CPU:0-pid:332:goodix-parse_cf) [16:09:50.675174302] [GTP-ERR][goodix_read_cfg_bin:498] Cfg_bin image [goodix_cfg_group.bin] not available,error:-11, try_times:5\n[  309.546737] [  309.546737] (CPU:0-pid:332:goodix-parse_cf) [16:09:51.688274872] [GTP-ERR][goodix_read_cfg_bin:506] get cfg_bin FAILED\n[  309.546789] [  309.546789] (CPU:0-pid:332:goodix-parse_cf) [16:09:51.688327320] [GTP-ERR][goodix_cfg_bin_proc:166] read cfg_bin from /vendor/firmware FAILED\n[  310.239981] [  310.239981] (CPU:0-pid:0:swapper/0) [16:09:52.381519576] loadavg 1.91  1/439 \n[  313.653855] [  313.653855] (CPU:0-pid:75:wk:pd_locator_) [16:09:55.795393354] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  313.653937] [  313.653937] (CPU:0-pid:75:wk:pd_locator_) [16:09:55.795475489] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  313.655435] [  313.655435] (CPU:0-pid:317:wk:pd_locator_) [16:09:55.796973615] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  313.655485] [  313.655485] (CPU:0-pid:317:wk:pd_locator_) [16:09:55.797023198] ADSPRPC: Audio PD restart notifier locator down\n[  315.243315] [  315.243315] (CPU:0-pid:0:swapper/0) [16:09:57.384853356] loadavg 1.84  1/424 \n[  320.246642] [  320.246642] (CPU:0-pid:0:swapper/0) [16:10:02.388180938] loadavg 1.69  0/423 \n[  325.249976] [  325.249976] (CPU:0-pid:0:swapper/0) [16:10:07.391515655] loadavg 1.56  1/424 \n[  330.253306] [  330.253306] (CPU:0-pid:0:swapper/0) [16:10:12.394845893] loadavg 1.51  1/424 \n[  335.256638] [  335.256638] (CPU:0-pid:0:swapper/0) [16:10:17.398179256] loadavg 1.47  1/424 \n[  340.259969] [  340.259969] (CPU:0-pid:0:swapper/0) [16:10:22.401510379] loadavg 1.43  1/424 \n[  340.960201] [  340.960172] (CPU:0-pid:75:wk:battery_saf) [16:10:23.101713262] [BAT][BMS][ERR]update_battery_safe +\n[  340.960208] [  340.960208] (CPU:0-pid:75:wk:battery_saf) [16:10:23.101749460] init_batt_cycle_count_data +++\n[  340.960378] [  340.960378] (CPU:0-pid:75:wk:battery_saf) [16:10:23.101918783] FG: file_op: open /batinfo/.bs err! error code:-2\n[  340.960413] [  340.960413] (CPU:0-pid:75:wk:battery_saf) [16:10:23.101953887] FG: init_batt_cycle_count_data: Read cycle count file failed!\n[  340.960470] [  340.960445] (CPU:0-pid:75:wk:battery_saf) [16:10:23.101986491] FG: update_battery_safe: cyclecount is not initialized\n[  345.263304] [  345.263304] (CPU:0-pid:0:swapper/0) [16:10:27.404845305] loadavg 1.40  1/424 \n[  350.266634] [  350.266634] (CPU:0-pid:0:swapper/0) [16:10:32.408176116] loadavg 1.36  1/424 \n[  355.269966] [  355.269966] (CPU:0-pid:0:swapper/0) [16:10:37.411508802] loadavg 1.33  1/423 \n[  360.273299] [  360.273299] (CPU:0-pid:0:swapper/0) [16:10:42.414841800] loadavg 1.31  1/423 \n[  365.276631] [  365.276631] (CPU:0-pid:0:swapper/0) [16:10:47.418174642] loadavg 1.28  1/421 \n[  370.279964] [  370.279964] (CPU:0-pid:0:swapper/0) [16:10:52.421508474] loadavg 1.26  1/421 \n[  375.283297] [  375.283297] (CPU:0-pid:0:swapper/0) [16:10:57.424841264] loadavg 1.24  1/421 \n[  380.286628] [  380.286628] (CPU:0-pid:0:swapper/0) [16:11:02.428172909] loadavg 1.22  1/421 \n[  381.921699] [  381.921699] (CPU:0-pid:75:wk:update_gaug) [16:11:04.063244426] (381)1970-03-12 16:11:04 :[BAT][Ser]report Capacity ==>69, FCC:5749mAh, BMS:69, V:3926mV, Cur:332mA, Temp:21.0C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[  381.921950] [  381.921950] (CPU:0-pid:75:wk:update_gaug) [16:11:04.063494999] [BAT][BMS]print_battery_status: csoc=3874811, bsoc=172, msoc=177, ocv=3974859, SocSts=2, BatSts=0\n[  385.289962] [  385.289962] (CPU:0-pid:0:swapper/0) [16:11:07.431507313] loadavg 1.20  1/421 \n[  390.293293] [  390.293293] (CPU:0-pid:0:swapper/0) [16:11:12.434838905] loadavg 1.18  1/421 \n[  395.296626] [  395.296626] (CPU:0-pid:0:swapper/0) [16:11:17.438172581] loadavg 1.17  1/421 \n[  400.299959] [  400.299959] (CPU:0-pid:0:swapper/0) [16:11:22.441505996] loadavg 1.15  1/421 \n[  405.303291] [  405.303291] (CPU:0-pid:0:swapper/0) [16:11:27.444838161] loadavg 1.14  1/421 \n[  410.306622] [  410.306622] (CPU:0-pid:0:swapper/0) [16:11:32.448170222] loadavg 1.13  1/421 \n[  415.309954] [  415.309954] (CPU:0-pid:0:swapper/0) [16:11:37.451502648] loadavg 1.12  1/421 \n[  420.313288] [  420.313288] (CPU:0-pid:0:swapper/0) [16:11:42.454836583] loadavg 1.11  1/421 \n[  425.316620] [  425.316620] (CPU:0-pid:0:swapper/0) [16:11:47.458169009] loadavg 1.10  1/421 \n[  428.195134] [  428.195134] (CPU:0-pid:365:irq/560-msoc-de) [16:11:50.336683462] [PSY] power_supply_changed, psy_name:battery\n[  428.197341] [  428.197341] (CPU:0-pid:75:wk:status_chan) [16:11:50.338890754] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[  428.198066] [  428.198066] (CPU:0-pid:91:pd_dbg_info) [16:11:50.339615181] ///PD dbg info 66d\n[  428.198100] [  428.198100] (CPU:0-pid:91:pd_dbg_info) [16:11:50.339650025] <  428.197>TCPC-TCPC:bat_update_work_func battery update soc = 69\n[  428.220088] [  428.220088] (CPU:0-pid:91:pd_dbg_info) [16:11:50.361637892] ///PD dbg info 62d\n[  428.220124] [  428.220124] (CPU:0-pid:91:pd_dbg_info) [16:11:50.361673725] <  428.198>TCPC-TCPC:bat_update_work_func Battery Discharging\n[  430.319951] [  430.319951] (CPU:0-pid:0:swapper/0) [16:11:52.461501070] loadavg 1.09  1/421 \n[  435.323285] [  435.323285] (CPU:0-pid:0:swapper/0) [16:11:57.464835006] loadavg 1.08  1/421 \n[  440.326616] [  440.326616] (CPU:0-pid:0:swapper/0) [16:12:02.468167067] loadavg 1.08  1/421 \n[  445.329950] [  445.329950] (CPU:0-pid:0:swapper/0) [16:12:07.471501367] loadavg 1.07  1/421 \n[  450.333281] [  450.333281] (CPU:0-pid:0:swapper/0) [16:12:12.474832647] loadavg 1.06  1/421 \n[  455.336613] [  455.336613] (CPU:0-pid:0:swapper/0) [16:12:17.478165489] loadavg 1.06  1/421 \n[  460.339945] [  460.339945] (CPU:0-pid:0:swapper/0) [16:12:22.481498019] loadavg 1.05  1/421 \n[  465.343278] [  465.343278] (CPU:0-pid:0:swapper/0) [16:12:27.484831642] loadavg 1.05  1/421 \n[  470.346612] [  470.346612] (CPU:0-pid:0:swapper/0) [16:12:32.488165474] loadavg 1.04  1/421 \n[  475.349942] [  475.349942] (CPU:0-pid:0:swapper/0) [16:12:37.491496597] loadavg 1.04  1/421 \n[  480.353275] [  480.353275] (CPU:0-pid:0:swapper/0) [16:12:42.494829856] loadavg 1.03  1/421 \n[  485.356607] [  485.356607] (CPU:0-pid:0:swapper/0) [16:12:47.498161917] loadavg 1.03  1/421 \n[  486.184578] [  486.184578] (CPU:0-pid:375:irq/570-batt-te) [16:12:48.326133198] [PSY] power_supply_changed, psy_name:battery\n[  486.187119] [  486.187119] (CPU:0-pid:75:wk:status_chan) [16:12:48.328673875] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[  486.187379] [  486.187379] (CPU:0-pid:91:pd_dbg_info) [16:12:48.328934552] ///PD dbg info 66d\n[  486.187414] [  486.187414] (CPU:0-pid:91:pd_dbg_info) [16:12:48.328968875] <  486.187>TCPC-TCPC:bat_update_work_func battery update soc = 69\n[  486.210071] [  486.210071] (CPU:0-pid:91:pd_dbg_info) [16:12:48.351625804] ///PD dbg info 62d\n[  486.210106] [  486.210106] (CPU:0-pid:91:pd_dbg_info) [16:12:48.351661273] <  486.187>TCPC-TCPC:bat_update_work_func Battery Discharging\n[  486.353925] [  486.353925] (CPU:0-pid:375:irq/570-batt-te) [16:12:48.495480402] [PSY] power_supply_changed, psy_name:battery\n[  486.356395] [  486.356395] (CPU:0-pid:75:wk:status_chan) [16:12:48.497950767] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[  486.356701] [  486.356701] (CPU:0-pid:91:pd_dbg_info) [16:12:48.498256444] ///PD dbg info 66d\n[  486.356736] [  486.356736] (CPU:0-pid:91:pd_dbg_info) [16:12:48.498291079] <  486.356>TCPC-TCPC:bat_update_work_func battery update soc = 69\n[  486.380083] [  486.380083] (CPU:0-pid:91:pd_dbg_info) [16:12:48.521637800] ///PD dbg info 62d\n[  486.380118] [  486.380118] (CPU:0-pid:91:pd_dbg_info) [16:12:48.521673321] <  486.356>TCPC-TCPC:bat_update_work_func Battery Discharging\n[  490.359939] [  490.359939] (CPU:0-pid:0:swapper/0) [16:12:52.501494968] loadavg 1.03  1/421 \n[  495.363271] [  495.363271] (CPU:0-pid:0:swapper/0) [16:12:57.504826560] loadavg 0.94  0/419 \n[  500.366601] [  500.366601] (CPU:0-pid:0:swapper/0) [16:13:02.508157944] loadavg 0.87  0/420 \n[  505.369934] [  505.369934] (CPU:0-pid:0:swapper/0) [16:13:07.511490890] loadavg 0.88  1/421 \n[  510.373266] [  510.373266] (CPU:0-pid:0:swapper/0) [16:13:12.514823263] loadavg 0.89  1/421 \n[  515.376598] [  515.376598] (CPU:0-pid:0:swapper/0) [16:13:17.518156106] loadavg 0.90  1/421 \n[  520.379932] [  520.379932] (CPU:0-pid:0:swapper/0) [16:13:22.521490146] loadavg 0.91  1/421 \n[  525.383264] [  525.383264] (CPU:0-pid:0:swapper/0) [16:13:27.524822884] loadavg 0.91  1/421 \n[  530.386595] [  530.386595] (CPU:0-pid:0:swapper/0) [16:13:32.528154893] loadavg 0.92  1/421 \n[  533.195134] [  533.195134] (CPU:0-pid:0:swapper/0) [16:13:35.336693401] [ALARM] alarmtimer_fired: fg_esr_fast_cal_timer\n[  535.389929] [  535.389929] (CPU:0-pid:0:swapper/0) [16:13:37.531488620] loadavg 0.93  1/421 \n[  540.393260] [  540.393260] (CPU:0-pid:0:swapper/0) [16:13:42.534820421] loadavg 0.93  1/421 \n[  545.396593] [  545.396593] (CPU:0-pid:0:swapper/0) [16:13:47.538154304] loadavg 0.94  1/421 \n[  550.399925] [  550.399925] (CPU:0-pid:0:swapper/0) [16:13:52.541486313] loadavg 0.94  1/421 \n[  555.403257] [  555.403257] (CPU:0-pid:0:swapper/0) [16:13:57.544819260] loadavg 0.95  1/421 \n[  560.406589] [  560.406589] (CPU:0-pid:0:swapper/0) [16:14:02.548151737] loadavg 0.95  1/421 \n[  565.409921] [  565.409921] (CPU:0-pid:0:swapper/0) [16:14:07.551484267] loadavg 0.95  1/421 \n[  570.413255] [  570.413255] (CPU:0-pid:0:swapper/0) [16:14:12.554818255] loadavg 0.96  1/421 \n[  573.067988] [  573.067988] (CPU:0-pid:75:wk:update_gaug) [16:14:15.209551644] (573)1970-03-12 16:14:15 :[BAT][Ser]report Capacity ==>68, FCC:5749mAh, BMS:68, V:3919mV, Cur:356mA, Temp:21.7C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[  573.068193] [  573.068193] (CPU:0-pid:75:wk:update_gaug) [16:14:15.209756384] [BAT][BMS]print_battery_status: csoc=3855221, bsoc=171, msoc=175, ocv=3971929, SocSts=2, BatSts=0\n[  575.416586] [  575.416586] (CPU:0-pid:0:swapper/0) [16:14:17.558150160] loadavg 0.96  1/421 \n[  580.419919] [  580.419919] (CPU:0-pid:0:swapper/0) [16:14:22.561482898] loadavg 0.96  1/421 \n[  585.423252] [  585.423252] (CPU:0-pid:0:swapper/0) [16:14:27.564816938] loadavg 0.97  1/421 \n[  590.426583] [  590.426583] (CPU:0-pid:0:swapper/0) [16:14:32.568148530] loadavg 0.97  1/421 \n[  595.429917] [  595.429917] (CPU:0-pid:0:swapper/0) [16:14:37.571482674] loadavg 0.97  1/421 \n[  600.433248] [  600.433248] (CPU:0-pid:0:swapper/0) [16:14:42.574814475] loadavg 0.97  1/421 \n[  605.436580] [  605.436580] (CPU:0-pid:0:swapper/0) [16:14:47.578146796] loadavg 0.98  1/421 \n[  610.439912] [  610.439912] (CPU:0-pid:0:swapper/0) [16:14:52.581479430] loadavg 0.98  1/421 \n[  615.443245] [  615.443245] (CPU:0-pid:0:swapper/0) [16:14:57.584812949] loadavg 0.98  1/420 \n[  620.446578] [  620.446578] (CPU:0-pid:0:swapper/0) [16:15:02.588146573] loadavg 0.98  1/420 \n[  625.449910] [  625.449910] (CPU:0-pid:0:swapper/0) [16:15:07.591478425] loadavg 0.98  1/420 \n[  630.453242] [  630.453242] (CPU:0-pid:0:swapper/0) [16:15:12.594810903] loadavg 0.98  1/420 \n[  635.456574] [  635.456574] (CPU:0-pid:0:swapper/0) [16:15:17.598144005] loadavg 0.98  1/420 \n[  640.459905] [  640.459905] (CPU:0-pid:0:swapper/0) [16:15:22.601474816] loadavg 0.91  0/419 \n[  641.333306] [  641.333286] (CPU:0-pid:317:wk:battery_saf) [16:15:23.474856309] [BAT][BMS][ERR]update_battery_safe +\n[  641.333312] [  641.333312] (CPU:0-pid:317:wk:battery_saf) [16:15:23.474881778] init_batt_cycle_count_data +++\n[  641.333386] [  641.333386] (CPU:0-pid:317:wk:battery_saf) [16:15:23.474955684] FG: file_op: open /batinfo/.bs err! error code:-2\n[  641.333410] [  641.333410] (CPU:0-pid:317:wk:battery_saf) [16:15:23.474979851] FG: init_batt_cycle_count_data: Read cycle count file failed!\n[  641.333451] [  641.333433] (CPU:0-pid:317:wk:battery_saf) [16:15:23.475003132] FG: update_battery_safe: cyclecount is not initialized\n[  645.463239] [  645.463239] (CPU:0-pid:0:swapper/0) [16:15:27.604809846] loadavg 0.91  1/420 \n[  650.466570] [  650.466570] (CPU:0-pid:0:swapper/0) [16:15:32.608141282] loadavg 0.92  1/420 \n[  655.469902] [  655.469902] (CPU:0-pid:0:swapper/0) [16:15:37.611473603] loadavg 0.93  1/420 \n[  659.113713] [  659.113713] (CPU:0-pid:365:irq/560-msoc-de) [16:15:41.255284591] [PSY] power_supply_changed, psy_name:battery\n[  659.115506] [  659.115506] (CPU:0-pid:317:wk:status_chan) [16:15:41.257077873] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[  659.116110] [  659.116110] (CPU:0-pid:91:pd_dbg_info) [16:15:41.257681571] ///PD dbg info 66d\n[  659.116135] [  659.116135] (CPU:0-pid:91:pd_dbg_info) [16:15:41.257706414] <  659.116>TCPC-TCPC:bat_update_work_func battery update soc = 68\n[  659.136612] [  659.136612] (CPU:0-pid:91:pd_dbg_info) [16:15:41.278183239] ///PD dbg info 62d\n[  659.136637] [  659.136637] (CPU:0-pid:91:pd_dbg_info) [16:15:41.278208604] <  659.116>TCPC-TCPC:bat_update_work_func Battery Discharging\n[  660.473234] [  660.473234] (CPU:0-pid:0:swapper/0) [16:15:42.614806029] loadavg 0.93  1/420 \n[  665.476566] [  665.476566] (CPU:0-pid:0:swapper/0) [16:15:47.618138819] loadavg 0.94  1/420 \n[  670.479900] [  670.479900] (CPU:0-pid:0:swapper/0) [16:15:52.621472807] loadavg 0.94  1/420 \n[  675.483232] [  675.483232] (CPU:0-pid:0:swapper/0) [16:15:57.624805441] loadavg 0.95  1/420 \n[  680.486564] [  680.486564] (CPU:0-pid:0:swapper/0) [16:16:02.628137554] loadavg 0.95  1/420 \n[  685.489897] [  685.489897] (CPU:0-pid:0:swapper/0) [16:16:07.631471125] loadavg 0.95  1/420 \n[  690.493229] [  690.493229] (CPU:0-pid:0:swapper/0) [16:16:12.634803498] loadavg 0.96  1/420 \n[  695.496562] [  695.496562] (CPU:0-pid:0:swapper/0) [16:16:17.638136966] loadavg 0.96  1/420 \n[  700.499894] [  700.499894] (CPU:0-pid:0:swapper/0) [16:16:22.641469287] loadavg 0.96  1/420 \n[  705.503226] [  705.503226] (CPU:0-pid:0:swapper/0) [16:16:27.644802285] loadavg 0.97  1/420 \n[  710.506558] [  710.506558] (CPU:0-pid:0:swapper/0) [16:16:32.648134503] loadavg 0.97  1/420 \n[  715.509890] [  715.509890] (CPU:0-pid:0:swapper/0) [16:16:37.651467345] loadavg 0.97  1/420 \n[  720.513223] [  720.513223] (CPU:0-pid:0:swapper/0) [16:16:42.654801124] loadavg 0.97  1/420 \n[  725.516555] [  725.516555] (CPU:0-pid:0:swapper/0) [16:16:47.658133133] loadavg 0.98  1/420 \n[  730.519887] [  730.519887] (CPU:0-pid:0:swapper/0) [16:16:52.661465871] loadavg 0.98  1/420 \n[  735.523220] [  735.523220] (CPU:0-pid:0:swapper/0) [16:16:57.664799078] loadavg 0.98  1/420 \n[  740.526552] [  740.526552] (CPU:0-pid:0:swapper/0) [16:17:02.668131503] loadavg 0.98  1/420 \n[  745.529885] [  745.529885] (CPU:0-pid:0:swapper/0) [16:17:07.671465283] loadavg 0.98  1/420 \n[  750.533217] [  750.533217] (CPU:0-pid:0:swapper/0) [16:17:12.674797396] loadavg 0.98  1/420 \n[  755.536549] [  755.536549] (CPU:0-pid:0:swapper/0) [16:17:17.678129874] loadavg 0.98  1/420 \n[  760.539881] [  760.539881] (CPU:0-pid:0:swapper/0) [16:17:22.681462560] loadavg 0.99  1/420 \n[  764.113710] [  764.113710] (CPU:0-pid:0:swapper/0) [16:17:26.255291509] [ALARM] alarmtimer_fired: fg_esr_fast_cal_timer\n[  764.214471] [  764.214471] (CPU:0-pid:588:wk:update_gaug) [16:17:26.356052978] (764)1970-03-12 16:17:26 :[BAT][Ser]report Capacity ==>68, FCC:5749mAh, BMS:68, V:3916mV, Cur:328mA, Temp:22.2C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[  764.214630] [  764.214630] (CPU:0-pid:588:wk:update_gaug) [16:17:26.356212092] [BAT][BMS]print_battery_status: csoc=3835418, bsoc=170, msoc=174, ocv=3968756, SocSts=2, BatSts=4\n[  765.543212] [  765.543212] (CPU:0-pid:0:swapper/0) [16:17:27.684794048] loadavg 0.91  0/419 \n[  770.546547] [  770.546547] (CPU:0-pid:0:swapper/0) [16:17:32.688129442] loadavg 0.91  1/420 \n[  775.549877] [  775.549877] (CPU:0-pid:0:swapper/0) [16:17:37.691460253] loadavg 0.92  1/420 \n[  780.553209] [  780.553209] (CPU:0-pid:0:swapper/0) [16:17:42.694792939] loadavg 0.93  1/420 \n[  785.556542] [  785.556542] (CPU:0-pid:0:swapper/0) [16:17:47.698125625] loadavg 0.93  1/420 \n[  790.559874] [  790.559874] (CPU:0-pid:0:swapper/0) [16:17:52.701458154] loadavg 0.94  1/420 \n[  795.563207] [  795.563207] (CPU:0-pid:0:swapper/0) [16:17:57.704792038] loadavg 0.94  1/420 \n[  800.566539] [  800.566539] (CPU:0-pid:0:swapper/0) [16:18:02.708124151] loadavg 0.95  1/420 \n[  805.569871] [  805.569871] (CPU:0-pid:0:swapper/0) [16:18:07.711456525] loadavg 0.95  1/420 \n[  810.573203] [  810.573203] (CPU:0-pid:0:swapper/0) [16:18:12.714789419] loadavg 0.95  1/420 \n[  815.576535] [  815.576535] (CPU:0-pid:0:swapper/0) [16:18:17.718122053] loadavg 0.96  1/420 \n[  820.579869] [  820.579869] (CPU:0-pid:0:swapper/0) [16:18:22.721455989] loadavg 0.96  1/420 \n[  825.583201] [  825.583201] (CPU:0-pid:0:swapper/0) [16:18:27.724788779] loadavg 0.96  1/420 \n[  830.586533] [  830.586533] (CPU:0-pid:0:swapper/0) [16:18:32.728120944] loadavg 0.97  1/420 \n[  835.589866] [  835.589866] (CPU:0-pid:0:swapper/0) [16:18:37.731454828] loadavg 0.97  1/420 \n[  840.593198] [  840.593198] (CPU:0-pid:0:swapper/0) [16:18:42.734787566] loadavg 0.97  1/420 \n[  845.596531] [  845.596531] (CPU:0-pid:0:swapper/0) [16:18:47.738120825] loadavg 0.97  1/420 \n[  850.599862] [  850.599862] (CPU:0-pid:0:swapper/0) [16:18:52.741452260] loadavg 0.98  1/420 \n[  855.603195] [  855.603195] (CPU:0-pid:0:swapper/0) [16:18:57.744785415] loadavg 0.98  1/420 \n[  860.606527] [  860.606527] (CPU:0-pid:0:swapper/0) [16:19:02.748117841] loadavg 0.98  1/420 \n[  865.609859] [  865.609859] (CPU:0-pid:0:swapper/0) [16:19:07.751450318] loadavg 0.98  1/420 \n[  870.613192] [  870.613192] (CPU:0-pid:0:swapper/0) [16:19:12.754784515] loadavg 0.90  0/419 \n[  875.616522] [  875.616522] (CPU:0-pid:0:swapper/0) [16:19:17.758114909] loadavg 0.83  0/419 \n[  880.619855] [  880.619855] (CPU:0-pid:0:swapper/0) [16:19:22.761448064] loadavg 0.84  1/420 \n[  885.623188] [  885.623188] (CPU:0-pid:0:swapper/0) [16:19:27.764781479] loadavg 0.85  1/420 \n[  886.997584] [  886.997584] (CPU:0-pid:365:irq/560-msoc-de) [16:19:29.139177657] [PSY] power_supply_changed, psy_name:battery\n[  886.999178] [  886.999178] (CPU:0-pid:317:wk:status_chan) [16:19:29.140771668] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[  886.999714] [  886.999714] (CPU:0-pid:91:pd_dbg_info) [16:19:29.141307293] ///PD dbg info 66d\n[  886.999732] [  886.999732] (CPU:0-pid:91:pd_dbg_info) [16:19:29.141326095] <  886.999>TCPC-TCPC:bat_update_work_func battery update soc = 68\n[  887.019933] [  887.019933] (CPU:0-pid:91:pd_dbg_info) [16:19:29.161526253] ///PD dbg info 62d\n[  887.019952] [  887.019952] (CPU:0-pid:91:pd_dbg_info) [16:19:29.161545420] <  886.999>TCPC-TCPC:bat_update_work_func Battery Discharging\n[  890.626519] [  890.626519] (CPU:0-pid:0:swapper/0) [16:19:32.768113383] loadavg 0.87  1/420 \n[  895.629852] [  895.629852] (CPU:0-pid:0:swapper/0) [16:19:37.771446903] loadavg 0.88  1/420 \n[  900.633184] [  900.633184] (CPU:0-pid:0:swapper/0) [16:19:42.774779172] loadavg 0.89  1/420 \n[  905.636516] [  905.636516] (CPU:0-pid:0:swapper/0) [16:19:47.778111597] loadavg 0.90  1/420 \n[  910.639848] [  910.639848] (CPU:0-pid:0:swapper/0) [16:19:52.781444387] loadavg 0.90  1/420 \n[  915.643181] [  915.643181] (CPU:0-pid:0:swapper/0) [16:19:57.784777802] loadavg 0.91  1/419 \n[  920.646514] [  920.646514] (CPU:0-pid:0:swapper/0) [16:20:02.788111113] loadavg 0.92  1/420 \n[  925.649846] [  925.649846] (CPU:0-pid:0:swapper/0) [16:20:07.791443226] loadavg 0.92  1/420 \n[  930.653178] [  930.653178] (CPU:0-pid:0:swapper/0) [16:20:12.794775912] loadavg 0.93  1/420 \n[  935.656510] [  935.656510] (CPU:0-pid:0:swapper/0) [16:20:17.798108546] loadavg 0.94  1/420 \n[  940.659842] [  940.659842] (CPU:0-pid:0:swapper/0) [16:20:22.801441336] loadavg 0.94  1/420 \n[  941.706563] [  941.706548] (CPU:0-pid:598:wk:battery_saf) [16:20:23.848147118] [BAT][BMS][ERR]update_battery_safe +\n[  941.706567] [  941.706567] (CPU:0-pid:598:wk:battery_saf) [16:20:23.848166284] init_batt_cycle_count_data +++\n[  941.706663] [  941.706663] (CPU:0-pid:598:wk:battery_saf) [16:20:23.848261545] FG: file_op: open /batinfo/.bs err! error code:-2\n[  941.706681] [  941.706681] (CPU:0-pid:598:wk:battery_saf) [16:20:23.848280347] FG: init_batt_cycle_count_data: Read cycle count file failed!\n[  941.706712] [  941.706699] (CPU:0-pid:598:wk:battery_saf) [16:20:23.848297899] FG: update_battery_safe: cyclecount is not initialized\n[  945.663176] [  945.663176] (CPU:0-pid:0:swapper/0) [16:20:27.804775376] loadavg 0.94  1/420 \n[  950.666508] [  950.666508] (CPU:0-pid:0:swapper/0) [16:20:32.808107594] loadavg 0.95  1/420 \n[  955.361139] [  955.361139] (CPU:0-pid:317:wk:update_gaug) [16:20:37.502738842] (955)1970-03-12 16:20:37 :[BAT][Ser]report Capacity ==>68, FCC:5749mAh, BMS:68, V:3911mV, Cur:350mA, Temp:22.7C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[  955.361173] [  955.361173] (CPU:0-pid:317:wk:update_gaug) [16:20:37.502773478] [BAT][BMS]print_battery_status: csoc=3816823, bsoc=169, msoc=173, ocv=3965826, SocSts=2, BatSts=0\n[  955.669840] [  955.669840] (CPU:0-pid:0:swapper/0) [16:20:37.811440592] loadavg 0.95  1/420 \n[  960.673172] [  960.673172] (CPU:0-pid:0:swapper/0) [16:20:42.814772913] loadavg 0.96  1/420 \n[  965.676504] [  965.676504] (CPU:0-pid:0:swapper/0) [16:20:47.818105547] loadavg 0.96  1/420 \n[  970.679837] [  970.679837] (CPU:0-pid:0:swapper/0) [16:20:52.821438910] loadavg 0.88  0/419 \n[  975.683170] [  975.683170] (CPU:0-pid:0:swapper/0) [16:20:57.824772013] loadavg 0.89  1/420 \n[  980.686501] [  980.686501] (CPU:0-pid:0:swapper/0) [16:21:02.828104178] loadavg 0.90  1/420 \n[  985.689834] [  985.689834] (CPU:0-pid:0:swapper/0) [16:21:07.831437489] loadavg 0.91  1/420 \n[  990.693166] [  990.693166] (CPU:0-pid:0:swapper/0) [16:21:12.834769498] loadavg 0.91  1/420 \n[  995.696498] [  995.696498] (CPU:0-pid:0:swapper/0) [16:21:17.838102704] loadavg 0.92  1/420 \n[ 1000.699830] [ 1000.699830] (CPU:0-pid:0:swapper/0) [16:21:22.841435078] loadavg 0.93  1/420 \n[ 1005.703163] [ 1005.703163] (CPU:0-pid:0:swapper/0) [16:21:27.844768128] loadavg 0.93  1/420 \n[ 1010.706495] [ 1010.706495] (CPU:0-pid:0:swapper/0) [16:21:32.848100710] loadavg 0.94  1/420 \n[ 1015.709827] [ 1015.709827] (CPU:0-pid:0:swapper/0) [16:21:37.851433292] loadavg 0.94  1/420 \n[ 1020.713160] [ 1020.713160] (CPU:0-pid:0:swapper/0) [16:21:42.854766707] loadavg 0.95  1/420 \n[ 1025.716492] [ 1025.716492] (CPU:0-pid:0:swapper/0) [16:21:47.858099028] loadavg 0.95  1/420 \n[ 1030.719824] [ 1030.719824] (CPU:0-pid:0:swapper/0) [16:21:52.861431610] loadavg 0.96  1/420 \n[ 1035.723157] [ 1035.723157] (CPU:0-pid:0:swapper/0) [16:21:57.864764869] loadavg 0.96  1/420 \n[ 1040.726489] [ 1040.726489] (CPU:0-pid:0:swapper/0) [16:22:02.868097451] loadavg 0.96  1/420 \n[ 1045.729822] [ 1045.729822] (CPU:0-pid:0:swapper/0) [16:22:07.871431074] loadavg 0.97  1/420 \n[ 1050.733154] [ 1050.733154] (CPU:0-pid:0:swapper/0) [16:22:12.874763187] loadavg 0.97  1/420 \n[ 1055.736485] [ 1055.736485] (CPU:0-pid:0:swapper/0) [16:22:17.878094988] loadavg 0.89  0/418 \n[ 1060.739817] [ 1060.739817] (CPU:0-pid:0:swapper/0) [16:22:22.881427726] loadavg 0.82  0/419 \n[ 1065.743151] [ 1065.743151] (CPU:0-pid:0:swapper/0) [16:22:27.884761505] loadavg 0.83  1/420 \n[ 1070.746483] [ 1070.746483] (CPU:0-pid:0:swapper/0) [16:22:32.888094920] loadavg 0.85  1/420 \n[ 1075.749815] [ 1075.749815] (CPU:0-pid:0:swapper/0) [16:22:37.891426721] loadavg 0.86  1/420 \n[ 1080.753147] [ 1080.753147] (CPU:0-pid:0:swapper/0) [16:22:42.894759407] loadavg 0.87  1/420 \n[ 1085.756479] [ 1085.756479] (CPU:0-pid:0:swapper/0) [16:22:47.898091989] loadavg 0.88  1/420 \n[ 1090.759811] [ 1090.759811] (CPU:0-pid:0:swapper/0) [16:22:52.901424727] loadavg 0.89  1/420 \n[ 1095.763145] [ 1095.763145] (CPU:0-pid:0:swapper/0) [16:22:57.904758610] loadavg 0.90  1/420 \n[ 1100.766476] [ 1100.766476] (CPU:0-pid:0:swapper/0) [16:23:02.908090723] loadavg 0.91  1/420 \n[ 1105.769809] [ 1105.769809] (CPU:0-pid:0:swapper/0) [16:23:07.911423357] loadavg 0.91  1/420 \n[ 1110.773141] [ 1110.773141] (CPU:0-pid:0:swapper/0) [16:23:12.914755835] loadavg 0.92  1/420 \n[ 1115.776473] [ 1115.776473] (CPU:0-pid:0:swapper/0) [16:23:17.918088729] loadavg 0.93  1/420 \n[ 1120.779806] [ 1120.779806] (CPU:0-pid:0:swapper/0) [16:23:22.921422300] loadavg 0.93  1/420 \n[ 1125.783139] [ 1125.783139] (CPU:0-pid:0:swapper/0) [16:23:27.924755351] loadavg 0.94  1/420 \n[ 1130.786470] [ 1130.786470] (CPU:0-pid:0:swapper/0) [16:23:32.928087464] loadavg 0.94  1/420 \n[ 1135.789803] [ 1135.789803] (CPU:0-pid:0:swapper/0) [16:23:37.931420254] loadavg 0.87  0/418 \n[ 1135.873682] [ 1135.873682] (CPU:0-pid:365:irq/560-msoc-de) [16:23:38.015299533] [PSY] power_supply_changed, psy_name:battery\n[ 1135.875281] [ 1135.875281] (CPU:0-pid:317:wk:status_chan) [16:23:38.016899013] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[ 1135.875556] [ 1135.875556] (CPU:0-pid:91:pd_dbg_info) [16:23:38.017173856] ///PD dbg info 66d\n[ 1135.875570] [ 1135.875570] (CPU:0-pid:91:pd_dbg_info) [16:23:38.017188075] < 1135.875>TCPC-TCPC:bat_update_work_func battery update soc = 68\n[ 1135.896498] [ 1135.896498] (CPU:0-pid:91:pd_dbg_info) [16:23:38.038115733] ///PD dbg info 62d\n[ 1135.896512] [ 1135.896512] (CPU:0-pid:91:pd_dbg_info) [16:23:38.038130004] < 1135.875>TCPC-TCPC:bat_update_work_func Battery Discharging\n[ 1140.793135] [ 1140.793135] (CPU:0-pid:0:swapper/0) [16:23:42.934753305] loadavg 0.80  0/419 \n[ 1145.796468] [ 1145.796468] (CPU:0-pid:0:swapper/0) [16:23:47.938086459] loadavg 0.81  1/420 \n[ 1146.507596] [ 1146.507596] (CPU:0-pid:317:wk:update_gaug) [16:23:48.649214968] (1146)1970-03-12 16:23:48 :[BAT][Ser]report Capacity ==>67, FCC:5749mAh, BMS:67, V:3906mV, Cur:352mA, Temp:23.0C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[ 1146.507624] [ 1146.507624] (CPU:0-pid:317:wk:update_gaug) [16:23:48.649242832] [BAT][BMS]print_battery_status: csoc=3798123, bsoc=168, msoc=172, ocv=3963140, SocSts=2, BatSts=0\n[ 1150.799799] [ 1150.799799] (CPU:0-pid:0:swapper/0) [16:23:52.941418572] loadavg 0.83  1/420 \n[ 1155.803132] [ 1155.803132] (CPU:0-pid:0:swapper/0) [16:23:57.944751414] loadavg 0.84  1/420 \n[ 1160.806464] [ 1160.806464] (CPU:0-pid:0:swapper/0) [16:24:02.948083944] loadavg 0.85  1/420 \n[ 1165.809796] [ 1165.809796] (CPU:0-pid:0:swapper/0) [16:24:07.951416578] loadavg 0.87  1/420 \n[ 1170.813129] [ 1170.813129] (CPU:0-pid:0:swapper/0) [16:24:12.954749889] loadavg 0.88  1/420 \n[ 1175.816461] [ 1175.816461] (CPU:0-pid:0:swapper/0) [16:24:17.958082054] loadavg 0.89  1/420 \n[ 1180.819793] [ 1180.819793] (CPU:0-pid:0:swapper/0) [16:24:22.961415261] loadavg 0.89  1/420 \n[ 1185.823126] [ 1185.823126] (CPU:0-pid:0:swapper/0) [16:24:27.964748103] loadavg 0.90  1/420 \n[ 1190.826458] [ 1190.826458] (CPU:0-pid:0:swapper/0) [16:24:32.968080580] loadavg 0.91  1/420 \n[ 1195.829791] [ 1195.829791] (CPU:0-pid:0:swapper/0) [16:24:37.971414048] loadavg 0.92  1/420 \n[ 1200.833123] [ 1200.833123] (CPU:0-pid:0:swapper/0) [16:24:42.974746577] loadavg 0.92  1/420 \n[ 1205.836455] [ 1205.836455] (CPU:0-pid:0:swapper/0) [16:24:47.978079159] loadavg 0.93  1/420 \n[ 1210.839787] [ 1210.839787] (CPU:0-pid:0:swapper/0) [16:24:52.981411741] loadavg 0.85  0/418 \n[ 1215.843119] [ 1215.843119] (CPU:0-pid:0:swapper/0) [16:24:57.984744687] loadavg 0.79  0/419 \n[ 1220.846453] [ 1220.846453] (CPU:0-pid:0:swapper/0) [16:25:02.988078571] loadavg 0.80  1/419 \n[ 1225.849784] [ 1225.849784] (CPU:0-pid:0:swapper/0) [16:25:07.991410736] loadavg 0.82  1/420 \n[ 1230.853116] [ 1230.853116] (CPU:0-pid:0:swapper/0) [16:25:12.994743162] loadavg 0.83  1/420 \n[ 1235.856448] [ 1235.856448] (CPU:0-pid:0:swapper/0) [16:25:17.998075743] loadavg 0.85  1/420 \n[ 1240.859781] [ 1240.859781] (CPU:0-pid:0:swapper/0) [16:25:23.001408533] loadavg 0.86  1/420 \n[ 1242.079858] [ 1242.079847] (CPU:0-pid:611:wk:battery_saf) [16:25:24.221474905] [BAT][BMS][ERR]update_battery_safe +\n[ 1242.079861] [ 1242.079861] (CPU:0-pid:611:wk:battery_saf) [16:25:24.221488551] init_batt_cycle_count_data +++\n[ 1242.079929] [ 1242.079929] (CPU:0-pid:611:wk:battery_saf) [16:25:24.221557301] FG: file_op: open /batinfo/.bs err! error code:-2\n[ 1242.079943] [ 1242.079943] (CPU:0-pid:611:wk:battery_saf) [16:25:24.221570582] FG: init_batt_cycle_count_data: Read cycle count file failed!\n[ 1242.079964] [ 1242.079955] (CPU:0-pid:611:wk:battery_saf) [16:25:24.221582613] FG: update_battery_safe: cyclecount is not initialized\n[ 1245.863114] [ 1245.863114] (CPU:0-pid:0:swapper/0) [16:25:28.004742157] loadavg 0.87  1/420 \n[ 1250.866446] [ 1250.866446] (CPU:0-pid:0:swapper/0) [16:25:33.008074322] loadavg 0.88  1/420 \n[ 1255.869778] [ 1255.869778] (CPU:0-pid:0:swapper/0) [16:25:38.011407112] loadavg 0.89  1/420 \n[ 1260.873110] [ 1260.873110] (CPU:0-pid:0:swapper/0) [16:25:43.014739798] loadavg 0.90  1/420 \n[ 1265.876442] [ 1265.876442] (CPU:0-pid:0:swapper/0) [16:25:48.018072640] loadavg 0.91  1/420 \n[ 1270.879775] [ 1270.879775] (CPU:0-pid:0:swapper/0) [16:25:53.021406107] loadavg 0.91  1/420 \n[ 1275.883108] [ 1275.883108] (CPU:0-pid:0:swapper/0) [16:25:58.024738897] loadavg 0.92  1/420 \n[ 1280.886439] [ 1280.886439] (CPU:0-pid:0:swapper/0) [16:26:03.028070854] loadavg 0.85  0/418 \n[ 1285.889772] [ 1285.889772] (CPU:0-pid:0:swapper/0) [16:26:08.031403957] loadavg 0.78  0/419 \n[ 1290.893105] [ 1290.893105] (CPU:0-pid:0:swapper/0) [16:26:13.034737216] loadavg 0.79  1/420 \n[ 1295.896437] [ 1295.896437] (CPU:0-pid:0:swapper/0) [16:26:18.038070579] loadavg 0.81  1/420 \n[ 1300.899769] [ 1300.899769] (CPU:0-pid:0:swapper/0) [16:26:23.041402640] loadavg 0.83  1/420 \n[ 1305.903101] [ 1305.903101] (CPU:0-pid:0:swapper/0) [16:26:28.044735534] loadavg 0.84  1/420 \n[ 1310.906433] [ 1310.906433] (CPU:0-pid:0:swapper/0) [16:26:33.048067959] loadavg 0.85  1/420 \n[ 1315.909765] [ 1315.909765] (CPU:0-pid:0:swapper/0) [16:26:38.051400489] loadavg 0.86  1/420 \n[ 1320.913098] [ 1320.913098] (CPU:0-pid:0:swapper/0) [16:26:43.054733956] loadavg 0.87  1/420 \n[ 1325.916431] [ 1325.916431] (CPU:0-pid:0:swapper/0) [16:26:48.058066746] loadavg 0.88  1/420 \n[ 1330.919763] [ 1330.919763] (CPU:0-pid:0:swapper/0) [16:26:53.061399120] loadavg 0.89  1/420 \n[ 1335.923095] [ 1335.923095] (CPU:0-pid:0:swapper/0) [16:26:58.064732378] loadavg 0.90  1/420 \n[ 1337.654208] [ 1337.654208] (CPU:0-pid:611:wk:update_gaug) [16:26:59.795845311] (1337)1970-03-12 16:26:59 :[BAT][Ser]report Capacity ==>67, FCC:5749mAh, BMS:67, V:3902mV, Cur:371mA, Temp:23.5C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[ 1337.654480] [ 1337.654480] (CPU:0-pid:611:wk:update_gaug) [16:26:59.796117082] [BAT][BMS]print_battery_status: csoc=3779237, bsoc=167, msoc=171, ocv=3960211, SocSts=2, BatSts=0\n[ 1340.926427] [ 1340.926427] (CPU:0-pid:0:swapper/0) [16:27:03.068064856] loadavg 0.91  1/420 \n[ 1345.929760] [ 1345.929760] (CPU:0-pid:0:swapper/0) [16:27:08.071398011] loadavg 0.84  0/419 \n[ 1350.933092] [ 1350.933092] (CPU:0-pid:0:swapper/0) [16:27:13.074730697] loadavg 0.85  1/420 \n[ 1355.936424] [ 1355.936424] (CPU:0-pid:0:swapper/0) [16:27:18.078063226] loadavg 0.86  1/420 \n[ 1360.939757] [ 1360.939757] (CPU:0-pid:0:swapper/0) [16:27:23.081396016] loadavg 0.87  1/420 \n[ 1365.943089] [ 1365.943089] (CPU:0-pid:0:swapper/0) [16:27:28.084728859] loadavg 0.88  1/420 \n[ 1370.946422] [ 1370.946422] (CPU:0-pid:0:swapper/0) [16:27:33.088061909] loadavg 0.89  1/420 \n[ 1375.949753] [ 1375.949753] (CPU:0-pid:0:swapper/0) [16:27:38.091394230] loadavg 0.90  1/420 \n[ 1377.738748] [ 1377.738748] (CPU:0-pid:365:irq/560-msoc-de) [16:27:39.880388523] [PSY] power_supply_changed, psy_name:battery\n[ 1377.740113] [ 1377.740113] (CPU:0-pid:611:wk:status_chan) [16:27:39.881754148] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[ 1377.740552] [ 1377.740552] (CPU:0-pid:91:pd_dbg_info) [16:27:39.882192794] ///PD dbg info 66d\n[ 1377.740563] [ 1377.740563] (CPU:0-pid:91:pd_dbg_info) [16:27:39.882204096] < 1377.740>TCPC-TCPC:bat_update_work_func battery update soc = 67\n[ 1377.763112] [ 1377.763112] (CPU:0-pid:91:pd_dbg_info) [16:27:39.904753161] ///PD dbg info 62d\n[ 1377.763124] [ 1377.763124] (CPU:0-pid:91:pd_dbg_info) [16:27:39.904764515] < 1377.740>TCPC-TCPC:bat_update_work_func Battery Discharging\n[ 1380.953086] [ 1380.953086] (CPU:0-pid:0:swapper/0) [16:27:43.094726916] loadavg 0.91  1/420 \n[ 1385.956418] [ 1385.956418] (CPU:0-pid:0:swapper/0) [16:27:48.098059706] loadavg 0.91  1/420 \n[ 1390.959750] [ 1390.959750] (CPU:0-pid:0:swapper/0) [16:27:53.101392549] loadavg 0.92  1/420 \n[ 1395.963083] [ 1395.963083] (CPU:0-pid:0:swapper/0) [16:27:58.104726016] loadavg 0.93  1/420 \n[ 1400.966415] [ 1400.966415] (CPU:0-pid:0:swapper/0) [16:28:03.108058441] loadavg 0.93  1/420 \n[ 1405.969747] [ 1405.969747] (CPU:0-pid:0:swapper/0) [16:28:08.111391075] loadavg 0.86  0/419 \n[ 1410.973080] [ 1410.973080] (CPU:0-pid:0:swapper/0) [16:28:13.114724386] loadavg 0.87  1/420 \n[ 1415.976412] [ 1415.976412] (CPU:0-pid:0:swapper/0) [16:28:18.118056812] loadavg 0.88  1/420 \n[ 1420.979745] [ 1420.979745] (CPU:0-pid:0:swapper/0) [16:28:23.121390123] loadavg 0.89  1/420 \n[ 1425.983077] [ 1425.983077] (CPU:0-pid:0:swapper/0) [16:28:28.124722861] loadavg 0.90  1/420 \n[ 1430.710190] [ 1430.710190] (CPU:0-pid:375:irq/570-batt-te) [16:28:32.851836509] [PSY] power_supply_changed, psy_name:battery\n[ 1430.711470] [ 1430.711470] (CPU:0-pid:611:wk:status_chan) [16:28:32.853115936] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[ 1430.711898] [ 1430.711898] (CPU:0-pid:91:pd_dbg_info) [16:28:32.853543957] ///PD dbg info 66d\n[ 1430.711909] [ 1430.711909] (CPU:0-pid:91:pd_dbg_info) [16:28:32.853554998] < 1430.711>TCPC-TCPC:bat_update_work_func battery update soc = 67\n[ 1430.733098] [ 1430.733098] (CPU:0-pid:91:pd_dbg_info) [16:28:32.874743855] ///PD dbg info 62d\n[ 1430.733109] [ 1430.733109] (CPU:0-pid:91:pd_dbg_info) [16:28:32.874755052] < 1430.711>TCPC-TCPC:bat_update_work_func Battery Discharging\n[ 1430.986409] [ 1430.986409] (CPU:0-pid:0:swapper/0) [16:28:33.128055026] loadavg 0.91  1/420 \n[ 1435.989742] [ 1435.989742] (CPU:0-pid:0:swapper/0) [16:28:38.131388389] loadavg 0.91  1/420 \n[ 1439.710069] [ 1439.710069] (CPU:0-pid:375:irq/570-batt-te) [16:28:41.851715895] [PSY] power_supply_changed, psy_name:battery\n[ 1439.711323] [ 1439.711323] (CPU:0-pid:598:wk:status_chan) [16:28:41.852970374] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[ 1439.711745] [ 1439.711745] (CPU:0-pid:91:pd_dbg_info) [16:28:41.853391624] ///PD dbg info 66d\n[ 1439.711755] [ 1439.711755] (CPU:0-pid:91:pd_dbg_info) [16:28:41.853402249] < 1439.711>TCPC-TCPC:bat_update_work_func battery update soc = 67\n[ 1439.733096] [ 1439.733096] (CPU:0-pid:91:pd_dbg_info) [16:28:41.874743137] ///PD dbg info 62d\n[ 1439.733107] [ 1439.733107] (CPU:0-pid:91:pd_dbg_info) [16:28:41.874754022] < 1439.711>TCPC-TCPC:bat_update_work_func Battery Discharging\n[ 1440.993074] [ 1440.993074] (CPU:0-pid:0:swapper/0) [16:28:43.134720710] loadavg 0.92  1/420 \n[ 1445.996407] [ 1445.996407] (CPU:0-pid:0:swapper/0) [16:28:48.138054073] loadavg 0.93  1/420 \n[ 1450.999738] [ 1450.999738] (CPU:0-pid:0:swapper/0) [16:28:53.141386290] loadavg 0.93  1/420 \n[ 1456.003071] [ 1456.003071] (CPU:0-pid:0:swapper/0) [16:28:58.144719497] loadavg 0.94  1/420 \n[ 1461.006403] [ 1461.006403] (CPU:0-pid:0:swapper/0) [16:29:03.148051766] loadavg 0.86  0/418 \n[ 1466.009735] [ 1466.009735] (CPU:0-pid:0:swapper/0) [16:29:08.151384556] loadavg 0.79  0/419 \n[ 1471.013068] [ 1471.013068] (CPU:0-pid:0:swapper/0) [16:29:13.154718440] loadavg 0.81  1/420 \n[ 1476.016400] [ 1476.016400] (CPU:0-pid:0:swapper/0) [16:29:18.158050709] loadavg 0.82  1/420 \n[ 1481.019732] [ 1481.019732] (CPU:0-pid:0:swapper/0) [16:29:23.161383291] loadavg 0.84  1/420 \n[ 1486.023065] [ 1486.023065] (CPU:0-pid:0:swapper/0) [16:29:28.164716237] loadavg 0.85  1/420 \n[ 1491.026397] [ 1491.026397] (CPU:0-pid:0:swapper/0) [16:29:33.168048611] loadavg 0.86  1/420 \n[ 1496.029730] [ 1496.029730] (CPU:0-pid:0:swapper/0) [16:29:38.171382026] loadavg 0.87  1/420 \n[ 1501.033062] [ 1501.033062] (CPU:0-pid:0:swapper/0) [16:29:43.174714608] loadavg 0.88  1/420 \n[ 1506.036394] [ 1506.036394] (CPU:0-pid:0:swapper/0) [16:29:48.178047085] loadavg 0.89  1/420 \n[ 1511.039726] [ 1511.039726] (CPU:0-pid:0:swapper/0) [16:29:53.181380292] loadavg 0.90  1/420 \n[ 1516.043059] [ 1516.043059] (CPU:0-pid:0:swapper/0) [16:29:58.184712978] loadavg 0.83  0/418 \n[ 1521.046392] [ 1521.046392] (CPU:0-pid:0:swapper/0) [16:30:03.188046445] loadavg 0.76  0/419 \n[ 1526.049724] [ 1526.049724] (CPU:0-pid:0:swapper/0) [16:30:08.191379079] loadavg 0.78  1/420 \n[ 1528.800817] [ 1528.800817] (CPU:0-pid:598:wk:update_gaug) [16:30:10.942472634] (1528)1970-03-12 16:30:10 :[BAT][Ser]report Capacity ==>66, FCC:5749mAh, BMS:66, V:3898mV, Cur:367mA, Temp:23.7C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[ 1528.800876] [ 1528.800876] (CPU:0-pid:598:wk:update_gaug) [16:30:10.942531645] [BAT][BMS]print_battery_status: csoc=3759967, bsoc=166, msoc=170, ocv=3957037, SocSts=2, BatSts=0\n[ 1531.053056] [ 1531.053056] (CPU:0-pid:0:swapper/0) [16:30:13.194711505] loadavg 0.80  1/419 \n[ 1536.056389] [ 1536.056389] (CPU:0-pid:0:swapper/0) [16:30:18.198044868] loadavg 0.81  1/420 \n[ 1541.059720] [ 1541.059720] (CPU:0-pid:0:swapper/0) [16:30:23.201377033] loadavg 0.83  1/420 \n[ 1542.453083] [ 1542.453075] (CPU:0-pid:627:wk:battery_saf) [16:30:24.594732276] [BAT][BMS][ERR]update_battery_safe +\n[ 1542.453086] [ 1542.453086] (CPU:0-pid:627:wk:battery_saf) [16:30:24.594742432] init_batt_cycle_count_data +++\n[ 1542.453142] [ 1542.453142] (CPU:0-pid:627:wk:battery_saf) [16:30:24.594798526] FG: file_op: open /batinfo/.bs err! error code:-2\n[ 1542.453152] [ 1542.453152] (CPU:0-pid:627:wk:battery_saf) [16:30:24.594808526] FG: init_batt_cycle_count_data: Read cycle count file failed!\n[ 1542.453167] [ 1542.453161] (CPU:0-pid:627:wk:battery_saf) [16:30:24.594817328] FG: update_battery_safe: cyclecount is not initialized\n[ 1546.063053] [ 1546.063053] (CPU:0-pid:0:swapper/0) [16:30:28.204710760] loadavg 0.84  1/420 \n[ 1551.066385] [ 1551.066385] (CPU:0-pid:0:swapper/0) [16:30:33.208042769] loadavg 0.85  1/420 \n[ 1556.069717] [ 1556.069717] (CPU:0-pid:0:swapper/0) [16:30:38.211375507] loadavg 0.87  1/420 \n[ 1561.073050] [ 1561.073050] (CPU:0-pid:0:swapper/0) [16:30:43.214708193] loadavg 0.88  1/420 \n[ 1566.076381] [ 1566.076381] (CPU:0-pid:0:swapper/0) [16:30:48.218040566] loadavg 0.81  0/418 \n[ 1571.079714] [ 1571.079714] (CPU:0-pid:0:swapper/0) [16:30:53.221373773] loadavg 0.74  0/419 \n[ 1576.083047] [ 1576.083047] (CPU:0-pid:0:swapper/0) [16:30:58.224707188] loadavg 0.76  1/420 \n[ 1581.086379] [ 1581.086379] (CPU:0-pid:0:swapper/0) [16:31:03.228039614] loadavg 0.78  1/420 \n[ 1586.089712] [ 1586.089712] (CPU:0-pid:0:swapper/0) [16:31:08.231372612] loadavg 0.80  1/420 \n[ 1591.093044] [ 1591.093044] (CPU:0-pid:0:swapper/0) [16:31:13.234705246] loadavg 0.81  1/420 \n[ 1596.096376] [ 1596.096376] (CPU:0-pid:0:swapper/0) [16:31:18.238038140] loadavg 0.83  1/420 \n[ 1601.099708] [ 1601.099708] (CPU:0-pid:0:swapper/0) [16:31:23.241370514] loadavg 0.84  1/420 \n[ 1606.103040] [ 1606.103040] (CPU:0-pid:0:swapper/0) [16:31:28.244703460] loadavg 0.85  1/420 \n[ 1611.106373] [ 1611.106373] (CPU:0-pid:0:swapper/0) [16:31:33.248036146] loadavg 0.87  1/420 \n[ 1616.109705] [ 1616.109705] (CPU:0-pid:0:swapper/0) [16:31:38.251368988] loadavg 0.80  0/418 \n[ 1618.603320] [ 1618.603320] (CPU:0-pid:365:irq/560-msoc-de) [16:31:40.744983924] [PSY] power_supply_changed, psy_name:battery\n[ 1618.604779] [ 1618.604779] (CPU:0-pid:627:wk:status_chan) [16:31:40.746443508] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[ 1618.604916] [ 1618.604916] (CPU:0-pid:91:pd_dbg_info) [16:31:40.746579914] ///PD dbg info 66d\n[ 1618.604925] [ 1618.604925] (CPU:0-pid:91:pd_dbg_info) [16:31:40.746589133] < 1618.604>TCPC-TCPC:bat_update_work_func battery update soc = 66\n[ 1618.626410] [ 1618.626410] (CPU:0-pid:91:pd_dbg_info) [16:31:40.768073874] ///PD dbg info 62d\n[ 1618.626419] [ 1618.626419] (CPU:0-pid:91:pd_dbg_info) [16:31:40.768082676] < 1618.604>TCPC-TCPC:bat_update_work_func Battery Discharging\n[ 1621.113038] [ 1621.113038] (CPU:0-pid:0:swapper/0) [16:31:43.254702143] loadavg 0.73  0/419 \n[ 1626.116370] [ 1626.116370] (CPU:0-pid:0:swapper/0) [16:31:48.258035245] loadavg 0.75  1/420 \n[ 1631.119702] [ 1631.119702] (CPU:0-pid:0:swapper/0) [16:31:53.261367463] loadavg 0.77  1/420 \n[ 1636.123035] [ 1636.123035] (CPU:0-pid:0:swapper/0) [16:31:58.264700565] loadavg 0.79  1/420 \n[ 1641.126367] [ 1641.126367] (CPU:0-pid:0:swapper/0) [16:32:03.268033303] loadavg 0.81  1/420 \n[ 1646.129699] [ 1646.129699] (CPU:0-pid:0:swapper/0) [16:32:08.271366302] loadavg 0.82  1/420 \n[ 1651.133031] [ 1651.133031] (CPU:0-pid:0:swapper/0) [16:32:13.274698675] loadavg 0.84  1/420 \n[ 1656.136364] [ 1656.136364] (CPU:0-pid:0:swapper/0) [16:32:18.278031309] loadavg 0.85  1/420 \n[ 1661.139696] [ 1661.139696] (CPU:0-pid:0:swapper/0) [16:32:23.281364307] loadavg 0.86  1/420 \n[ 1666.143028] [ 1666.143028] (CPU:0-pid:0:swapper/0) [16:32:28.284697097] loadavg 0.79  0/418 \n[ 1671.146361] [ 1671.146361] (CPU:0-pid:0:swapper/0) [16:32:33.288030252] loadavg 0.73  0/419 \n[ 1676.149693] [ 1676.149693] (CPU:0-pid:0:swapper/0) [16:32:38.291363251] loadavg 0.75  1/420 \n[ 1681.153025] [ 1681.153025] (CPU:0-pid:0:swapper/0) [16:32:43.294695728] loadavg 0.77  1/420 \n[ 1686.156358] [ 1686.156358] (CPU:0-pid:0:swapper/0) [16:32:48.298028310] loadavg 0.79  1/420 \n[ 1691.159690] [ 1691.159690] (CPU:0-pid:0:swapper/0) [16:32:53.301361100] loadavg 0.80  1/420 \n[ 1696.163023] [ 1696.163023] (CPU:0-pid:0:swapper/0) [16:32:58.304694775] loadavg 0.82  1/420 \n[ 1701.166355] [ 1701.166355] (CPU:0-pid:0:swapper/0) [16:33:03.308027045] loadavg 0.83  1/420 \n[ 1706.169687] [ 1706.169687] (CPU:0-pid:0:swapper/0) [16:33:08.311359626] loadavg 0.85  1/420 \n[ 1710.231643] [ 1710.231643] (CPU:0-pid:570:python3) [16:33:12.373316073] CPU1: shutdown\n[ 1710.235292] [ 1710.235292] (CPU:4-pid:0:swapper/4) [16:33:12.376965761] GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000\n[ 1710.235328] [ 1710.235328] (CPU:4-pid:0:swapper/4) [16:33:12.377001438] CPU4: Booted secondary processor [51df804e]\n[ 1711.173039] [ 1711.173039] (CPU:0-pid:0:swapper/0) [16:33:13.314712885] loadavg 0.78  0/418 \n[ 1716.176371] [ 1716.176371] (CPU:0-pid:0:swapper/0) [16:33:18.318045259] loadavg 0.72  0/419 \n[ 1719.948273] [ 1719.948273] (CPU:0-pid:611:wk:update_gaug) [16:33:22.089947405] (1719)1970-03-12 16:33:22 :[BAT][Ser]report Capacity ==>66, FCC:5749mAh, BMS:66, V:3895mV, Cur:363mA, Temp:24.2C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[ 1719.948359] [ 1719.948359] (CPU:0-pid:611:wk:update_gaug) [16:33:22.090032926] [BAT][BMS]print_battery_status: csoc=3740663, bsoc=166, msoc=169, ocv=3954351, SocSts=2, BatSts=0\n[ 1721.179706] [ 1721.179706] (CPU:0-pid:0:swapper/0) [16:33:23.321380861] loadavg 0.74  1/420 \n[ 1726.183038] [ 1726.183038] (CPU:0-pid:0:swapper/0) [16:33:28.324712818] loadavg 0.76  1/420 \n[ 1731.186369] [ 1731.186369] (CPU:0-pid:0:swapper/0) [16:33:33.328044358] loadavg 0.78  1/420 \n[ 1736.189703] [ 1736.189703] (CPU:0-pid:0:swapper/0) [16:33:38.331379180] loadavg 0.80  1/420 \n[ 1741.193034] [ 1741.193034] (CPU:0-pid:0:swapper/0) [16:33:43.334710563] loadavg 0.81  1/420 \n[ 1746.196368] [ 1746.196368] (CPU:0-pid:0:swapper/0) [16:33:48.338044968] loadavg 0.83  1/420 \n[ 1751.199699] [ 1751.199699] (CPU:0-pid:0:swapper/0) [16:33:53.341376248] loadavg 0.84  1/420 \n[ 1756.203032] [ 1756.203032] (CPU:0-pid:0:swapper/0) [16:33:58.344709663] loadavg 0.85  1/420 \n[ 1761.206363] [ 1761.206363] (CPU:0-pid:0:swapper/0) [16:34:03.348041151] loadavg 0.87  1/420 \n[ 1766.209695] [ 1766.209695] (CPU:0-pid:0:swapper/0) [16:34:08.351373889] loadavg 0.88  1/420 \n[ 1771.213029] [ 1771.213029] (CPU:0-pid:0:swapper/0) [16:34:13.354708658] loadavg 0.89  1/420 \n[ 1776.216360] [ 1776.216360] (CPU:0-pid:0:swapper/0) [16:34:18.358040302] loadavg 0.89  1/420 \n[ 1781.219692] [ 1781.219692] (CPU:0-pid:0:swapper/0) [16:34:23.361372467] loadavg 0.90  1/420 \n[ 1786.223026] [ 1786.223026] (CPU:0-pid:0:swapper/0) [16:34:28.364706768] loadavg 0.91  1/420 \n[ 1791.226357] [ 1791.226357] (CPU:0-pid:0:swapper/0) [16:34:33.368038673] loadavg 0.92  1/420 \n[ 1796.229691] [ 1796.229691] (CPU:0-pid:0:swapper/0) [16:34:38.371372713] loadavg 0.92  1/420 \n[ 1801.233022] [ 1801.233022] (CPU:0-pid:0:swapper/0) [16:34:43.374704044] loadavg 0.93  1/420 \n[ 1806.236354] [ 1806.236354] (CPU:0-pid:0:swapper/0) [16:34:48.378036939] loadavg 0.93  1/420 \n[ 1811.239687] [ 1811.239687] (CPU:0-pid:0:swapper/0) [16:34:53.381370198] loadavg 0.86  0/418 \n[ 1816.243020] [ 1816.243020] (CPU:0-pid:0:swapper/0) [16:34:58.384703873] loadavg 0.79  0/419 \n[ 1821.246355] [ 1821.246355] (CPU:0-pid:0:swapper/0) [16:35:03.388039111] loadavg 0.81  1/420 \n[ 1826.249684] [ 1826.249684] (CPU:0-pid:0:swapper/0) [16:35:08.391368985] loadavg 0.82  1/420 \n[ 1831.253016] [ 1831.253016] (CPU:0-pid:0:swapper/0) [16:35:13.394701358] loadavg 0.84  1/420 \n[ 1836.256347] [ 1836.256347] (CPU:0-pid:0:swapper/0) [16:35:18.398033263] loadavg 0.85  1/420 \n[ 1841.259680] [ 1841.259680] (CPU:0-pid:0:swapper/0) [16:35:23.401366365] loadavg 0.86  1/420 \n[ 1842.826610] [ 1842.826572] (CPU:0-pid:627:wk:battery_saf) [16:35:24.968258240] [BAT][BMS][ERR]update_battery_safe +\n[ 1842.826620] [ 1842.826620] (CPU:0-pid:627:wk:battery_saf) [16:35:24.968306365] init_batt_cycle_count_data +++\n[ 1842.826843] [ 1842.826843] (CPU:0-pid:627:wk:battery_saf) [16:35:24.968529334] FG: file_op: open /batinfo/.bs err! error code:-2\n[ 1842.826891] [ 1842.826891] (CPU:0-pid:627:wk:battery_saf) [16:35:24.968576782] FG: init_batt_cycle_count_data: Read cycle count file failed!\n[ 1842.826968] [ 1842.826935] (CPU:0-pid:627:wk:battery_saf) [16:35:24.968620792] FG: update_battery_safe: cyclecount is not initialized\n[ 1846.263015] [ 1846.263015] (CPU:0-pid:0:swapper/0) [16:35:28.404701812] loadavg 0.87  1/420 \n[ 1851.266346] [ 1851.266346] (CPU:0-pid:0:swapper/0) [16:35:33.408033508] loadavg 0.88  1/420 \n[ 1855.473676] [ 1855.473676] (CPU:0-pid:365:irq/560-msoc-de) [16:35:37.615363667] [PSY] power_supply_changed, psy_name:battery\n[ 1855.476792] [ 1855.476792] (CPU:0-pid:627:wk:status_chan) [16:35:37.618480177] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[ 1855.477306] [ 1855.477306] (CPU:0-pid:91:pd_dbg_info) [16:35:37.618993459] ///PD dbg info 66d\n[ 1855.477353] [ 1855.477353] (CPU:0-pid:91:pd_dbg_info) [16:35:37.619040282] < 1855.477>TCPC-TCPC:bat_update_work_func battery update soc = 66\n[ 1855.499862] [ 1855.499862] (CPU:0-pid:91:pd_dbg_info) [16:35:37.641549242] ///PD dbg info 62d\n[ 1855.499910] [ 1855.499910] (CPU:0-pid:91:pd_dbg_info) [16:35:37.641597159] < 1855.477>TCPC-TCPC:bat_update_work_func Battery Discharging\n[ 1856.269677] [ 1856.269677] (CPU:0-pid:0:swapper/0) [16:35:38.411364527] loadavg 0.89  1/420 \n[ 1861.273011] [ 1861.273011] (CPU:0-pid:0:swapper/0) [16:35:43.414699036] loadavg 0.82  0/419 \n[ 1866.276343] [ 1866.276343] (CPU:0-pid:0:swapper/0) [16:35:48.418031253] loadavg 0.83  1/420 \n[ 1871.279677] [ 1871.279677] (CPU:0-pid:0:swapper/0) [16:35:53.421365814] loadavg 0.85  1/420 \n[ 1876.283007] [ 1876.283007] (CPU:0-pid:0:swapper/0) [16:35:58.424697042] loadavg 0.86  1/420 \n[ 1881.286341] [ 1881.286341] (CPU:0-pid:0:swapper/0) [16:36:03.428031342] loadavg 0.87  1/420 \n[ 1886.289674] [ 1886.289674] (CPU:0-pid:0:swapper/0) [16:36:08.431364184] loadavg 0.88  1/420 \n[ 1891.293005] [ 1891.293005] (CPU:0-pid:0:swapper/0) [16:36:13.434696089] loadavg 0.89  1/420 \n[ 1896.296338] [ 1896.296338] (CPU:0-pid:0:swapper/0) [16:36:18.438029660] loadavg 0.90  1/420 \n[ 1901.299670] [ 1901.299670] (CPU:0-pid:0:swapper/0) [16:36:23.441362346] loadavg 0.83  0/418 \n[ 1906.303003] [ 1906.303003] (CPU:0-pid:0:swapper/0) [16:36:28.444695084] loadavg 0.84  0/419 \n[ 1911.094904] [ 1911.094904] (CPU:0-pid:627:wk:update_gaug) [16:36:33.236597385] (1911)1970-03-12 16:36:33 :[BAT][Ser]report Capacity ==>66, FCC:5749mAh, BMS:66, V:3890mV, Cur:387mA, Temp:24.5C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[ 1911.094989] [ 1911.094989] (CPU:0-pid:627:wk:update_gaug) [16:36:33.236681916] [BAT][BMS]print_battery_status: csoc=3721256, bsoc=165, msoc=168, ocv=3951422, SocSts=2, BatSts=0\n[ 1911.306337] [ 1911.306337] (CPU:0-pid:0:swapper/0) [16:36:33.448030426] loadavg 0.85  1/420 \n[ 1916.309665] [ 1916.309665] (CPU:0-pid:0:swapper/0) [16:36:38.451358946] loadavg 0.86  1/420 \n[ 1921.313000] [ 1921.313000] (CPU:0-pid:0:swapper/0) [16:36:43.454694132] loadavg 0.87  1/420 \n[ 1926.316331] [ 1926.316331] (CPU:0-pid:0:swapper/0) [16:36:48.458025307] loadavg 0.88  1/420 \n[ 1931.319663] [ 1931.319663] (CPU:0-pid:0:swapper/0) [16:36:53.461357733] loadavg 0.89  1/420 \n[ 1936.322996] [ 1936.322996] (CPU:0-pid:0:swapper/0) [16:36:58.464691617] loadavg 0.90  1/420 \n[ 1941.326330] [ 1941.326330] (CPU:0-pid:0:swapper/0) [16:37:03.468025657] loadavg 0.83  0/418 \n[ 1946.329662] [ 1946.329662] (CPU:0-pid:0:swapper/0) [16:37:08.471358082] loadavg 0.76  0/419 \n[ 1951.332993] [ 1951.332993] (CPU:0-pid:0:swapper/0) [16:37:13.474690195] loadavg 0.78  1/420 \n[ 1956.336324] [ 1956.336324] (CPU:0-pid:0:swapper/0) [16:37:18.478021631] loadavg 0.80  1/420 \n[ 1961.339657] [ 1961.339657] (CPU:0-pid:0:swapper/0) [16:37:23.481354577] loadavg 0.81  1/420 \n[ 1966.342990] [ 1966.342990] (CPU:0-pid:0:swapper/0) [16:37:28.484687992] loadavg 0.83  1/420 \n[ 1971.346323] [ 1971.346323] (CPU:0-pid:0:swapper/0) [16:37:33.488021876] loadavg 0.84  1/420 \n[ 1976.349659] [ 1976.349659] (CPU:0-pid:0:swapper/0) [16:37:38.491358625] loadavg 0.86  0/419 \n[ 1981.352987] [ 1981.352987] (CPU:0-pid:0:swapper/0) [16:37:43.494687248] loadavg 0.79  0/419 \n[ 1986.356320] [ 1986.356320] (CPU:0-pid:0:swapper/0) [16:37:48.498020247] loadavg 0.80  1/420 \n[ 1991.359651] [ 1991.359651] (CPU:0-pid:0:swapper/0) [16:37:53.501351995] loadavg 0.82  1/420 \n[ 1996.362986] [ 1996.362986] (CPU:0-pid:0:swapper/0) [16:37:58.504687546] loadavg 0.83  1/420 \n[ 2001.366317] [ 2001.366317] (CPU:0-pid:0:swapper/0) [16:38:03.508018409] loadavg 0.85  1/420 \n[ 2006.369648] [ 2006.369648] (CPU:0-pid:0:swapper/0) [16:38:08.511350105] loadavg 0.86  1/420 \n[ 2011.372982] [ 2011.372982] (CPU:0-pid:0:swapper/0) [16:38:13.514684301] loadavg 0.79  0/418 \n[ 2016.376313] [ 2016.376313] (CPU:0-pid:0:swapper/0) [16:38:18.518015789] loadavg 0.72  0/419 \n[ 2021.379647] [ 2021.379647] (CPU:0-pid:0:swapper/0) [16:38:23.521351444] loadavg 0.75  1/420 \n[ 2026.382979] [ 2026.382979] (CPU:0-pid:0:swapper/0) [16:38:28.524683765] loadavg 0.77  1/420 \n[ 2031.386310] [ 2031.386310] (CPU:0-pid:0:swapper/0) [16:38:33.528014941] loadavg 0.79  1/420 \n[ 2036.389644] [ 2036.389644] (CPU:0-pid:0:swapper/0) [16:38:38.531349345] loadavg 0.80  1/420 \n[ 2041.392978] [ 2041.392978] (CPU:0-pid:0:swapper/0) [16:38:43.534683386] loadavg 0.82  0/418 \n[ 2046.396310] [ 2046.396310] (CPU:0-pid:0:swapper/0) [16:38:48.538016228] loadavg 0.75  0/419 \n[ 2051.399640] [ 2051.399640] (CPU:0-pid:0:swapper/0) [16:38:53.541346987] loadavg 0.77  1/420 \n[ 2056.402973] [ 2056.402973] (CPU:0-pid:0:swapper/0) [16:38:58.544680245] loadavg 0.79  1/420 \n[ 2061.406305] [ 2061.406305] (CPU:0-pid:0:swapper/0) [16:39:03.548012306] loadavg 0.81  1/420 \n[ 2066.409638] [ 2066.409638] (CPU:0-pid:0:swapper/0) [16:39:08.551345982] loadavg 0.82  1/420 \n[ 2071.412973] [ 2071.412973] (CPU:0-pid:0:swapper/0) [16:39:13.554681220] loadavg 0.75  0/418 \n[ 2076.416302] [ 2076.416302] (CPU:0-pid:0:swapper/0) [16:39:18.558010677] loadavg 0.69  0/419 \n[ 2078.363993] [ 2078.363993] (CPU:0-pid:365:irq/560-msoc-de) [16:39:20.505702589] [PSY] power_supply_changed, psy_name:battery\n[ 2078.367071] [ 2078.367071] (CPU:0-pid:627:wk:status_chan) [16:39:20.508780298] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[ 2078.367408] [ 2078.367408] (CPU:0-pid:91:pd_dbg_info) [16:39:20.509117277] ///PD dbg info 66d\n[ 2078.367455] [ 2078.367455] (CPU:0-pid:91:pd_dbg_info) [16:39:20.509163736] < 2078.367>TCPC-TCPC:bat_update_work_func battery update soc = 65\n[ 2078.389720] [ 2078.389720] (CPU:0-pid:91:pd_dbg_info) [16:39:20.531429207] ///PD dbg info 62d\n[ 2078.389769] [ 2078.389769] (CPU:0-pid:91:pd_dbg_info) [16:39:20.531477644] < 2078.367>TCPC-TCPC:bat_update_work_func Battery Discharging\n[ 2081.419634] [ 2081.419634] (CPU:0-pid:0:swapper/0) [16:39:23.561343675] loadavg 0.72  1/420 \n[ 2086.422967] [ 2086.422967] (CPU:0-pid:0:swapper/0) [16:39:28.564677351] loadavg 0.74  1/420 \n[ 2091.426299] [ 2091.426299] (CPU:0-pid:0:swapper/0) [16:39:33.568009151] loadavg 0.76  1/420 \n[ 2096.429633] [ 2096.429633] (CPU:0-pid:0:swapper/0) [16:39:38.571343556] loadavg 0.78  1/420 \n[ 2101.432964] [ 2101.432964] (CPU:0-pid:0:swapper/0) [16:39:43.574675669] loadavg 0.72  0/418 \n[ 2102.241545] [ 2102.241545] (CPU:0-pid:627:wk:update_gaug) [16:39:44.383256270] (2102)1970-03-12 16:39:44 :[BAT][Ser]report Capacity ==>65, FCC:5749mAh, BMS:65, V:3888mV, Cur:360mA, Temp:24.7C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[ 2102.241881] [ 2102.241881] (CPU:0-pid:627:wk:update_gaug) [16:39:44.383592416] [BAT][BMS]print_battery_status: csoc=3700314, bsoc=164, msoc=167, ocv=3948248, SocSts=2, BatSts=0\n[ 2106.436294] [ 2106.436294] (CPU:0-pid:0:swapper/0) [16:39:48.578006323] loadavg 0.66  0/419 \n[ 2111.439628] [ 2111.439628] (CPU:0-pid:0:swapper/0) [16:39:53.581340572] loadavg 0.69  1/420 \n[ 2116.442961] [ 2116.442961] (CPU:0-pid:0:swapper/0) [16:39:58.584673674] loadavg 0.71  1/420 \n[ 2121.446294] [ 2121.446294] (CPU:0-pid:0:swapper/0) [16:40:03.588007506] loadavg 0.73  1/420 \n[ 2126.449627] [ 2126.449627] (CPU:0-pid:0:swapper/0) [16:40:08.591340505] loadavg 0.67  0/419 \n[ 2131.452959] [ 2131.452959] (CPU:0-pid:0:swapper/0) [16:40:13.594672930] loadavg 0.62  0/419 \n[ 2136.456289] [ 2136.456289] (CPU:0-pid:0:swapper/0) [16:40:18.598004054] loadavg 0.65  1/420 \n[ 2141.459621] [ 2141.459621] (CPU:0-pid:0:swapper/0) [16:40:23.601336635] loadavg 0.68  1/420 \n[ 2143.200013] [ 2143.199976] (CPU:0-pid:627:wk:battery_saf) [16:40:25.341691132] [BAT][BMS][ERR]update_battery_safe +\n[ 2143.200024] [ 2143.200024] (CPU:0-pid:627:wk:battery_saf) [16:40:25.341739309] init_batt_cycle_count_data +++\n[ 2143.200118] [ 2143.200118] (CPU:0-pid:627:wk:battery_saf) [16:40:25.341833788] FG: file_op: open /batinfo/.bs err! error code:-2\n[ 2143.200164] [ 2143.200164] (CPU:0-pid:627:wk:battery_saf) [16:40:25.341879204] FG: init_batt_cycle_count_data: Read cycle count file failed!\n[ 2143.200240] [ 2143.200207] (CPU:0-pid:627:wk:battery_saf) [16:40:25.341922486] FG: update_battery_safe: cyclecount is not initialized\n[ 2146.462956] [ 2146.462956] (CPU:0-pid:0:swapper/0) [16:40:28.604672238] loadavg 0.70  1/420 \n[ 2151.466287] [ 2151.466287] (CPU:0-pid:0:swapper/0) [16:40:33.608002945] loadavg 0.73  1/420 \n[ 2156.469620] [ 2156.469620] (CPU:0-pid:0:swapper/0) [16:40:38.611336203] loadavg 0.67  0/419 \n[ 2161.472951] [ 2161.472951] (CPU:0-pid:0:swapper/0) [16:40:43.614668473] loadavg 0.69  1/420 \n[ 2166.476283] [ 2166.476283] (CPU:0-pid:0:swapper/0) [16:40:48.618000794] loadavg 0.72  1/420 \n[ 2171.479617] [ 2171.479617] (CPU:0-pid:0:swapper/0) [16:40:53.621335667] loadavg 0.74  1/420 \n[ 2176.482950] [ 2176.482950] (CPU:0-pid:0:swapper/0) [16:40:58.624668353] loadavg 0.76  1/420 \n[ 2181.486282] [ 2181.486282] (CPU:0-pid:0:swapper/0) [16:41:03.628000935] loadavg 0.70  0/419 \n[ 2186.489616] [ 2186.489616] (CPU:0-pid:0:swapper/0) [16:41:08.631335861] loadavg 0.72  1/420 \n[ 2191.492946] [ 2191.492946] (CPU:0-pid:0:swapper/0) [16:41:13.634666151] loadavg 0.75  1/420 \n[ 2196.496279] [ 2196.496279] (CPU:0-pid:0:swapper/0) [16:41:18.637999826] loadavg 0.77  1/420 \n[ 2201.499610] [ 2201.499610] (CPU:0-pid:0:swapper/0) [16:41:23.641331210] loadavg 0.78  1/420 \n[ 2206.502945] [ 2206.502945] (CPU:0-pid:0:swapper/0) [16:41:28.644666396] loadavg 0.72  0/419 \n[ 2211.506275] [ 2211.506275] (CPU:0-pid:0:swapper/0) [16:41:33.647997363] loadavg 0.74  1/420 \n[ 2216.509609] [ 2216.509609] (CPU:0-pid:0:swapper/0) [16:41:38.651331351] loadavg 0.76  1/420 \n[ 2221.512941] [ 2221.512941] (CPU:0-pid:0:swapper/0) [16:41:43.654663881] loadavg 0.78  1/420 \n[ 2226.516273] [ 2226.516273] (CPU:0-pid:0:swapper/0) [16:41:48.657996931] loadavg 0.80  0/418 \n[ 2231.519606] [ 2231.519606] (CPU:0-pid:0:swapper/0) [16:41:53.661329930] loadavg 0.73  0/419 \n[ 2236.522936] [ 2236.522936] (CPU:0-pid:682:python3) [16:41:58.664660324] loadavg 0.76  2/420 \n[ 2241.526269] [ 2241.526269] (CPU:0-pid:0:swapper/0) [16:42:03.667994052] loadavg 0.78  1/420 \n[ 2246.529603] [ 2246.529603] (CPU:0-pid:0:swapper/0) [16:42:08.671328352] loadavg 0.79  1/420 \n[ 2251.532935] [ 2251.532935] (CPU:0-pid:0:swapper/0) [16:42:13.674660882] loadavg 0.73  0/418 \n[ 2256.536266] [ 2256.536266] (CPU:0-pid:0:swapper/0) [16:42:18.677991849] loadavg 0.67  0/419 \n[ 2261.539599] [ 2261.539599] (CPU:0-pid:0:swapper/0) [16:42:23.681325629] loadavg 0.70  1/420 \n[ 2266.241914] [ 2266.241914] (CPU:0-pid:365:irq/560-msoc-de) [16:42:28.383641462] [PSY] power_supply_changed, psy_name:battery\n[ 2266.244983] [ 2266.244983] (CPU:0-pid:627:wk:status_chan) [16:42:28.386710785] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[ 2266.245496] [ 2266.245496] (CPU:0-pid:91:pd_dbg_info) [16:42:28.387223650] ///PD dbg info 66d\n[ 2266.245543] [ 2266.245543] (CPU:0-pid:91:pd_dbg_info) [16:42:28.387270368] < 2266.245>TCPC-TCPC:bat_update_work_func battery update soc = 65\n[ 2266.266344] [ 2266.266344] (CPU:0-pid:91:pd_dbg_info) [16:42:28.408071412] ///PD dbg info 62d\n[ 2266.266392] [ 2266.266392] (CPU:0-pid:91:pd_dbg_info) [16:42:28.408119173] < 2266.245>TCPC-TCPC:bat_update_work_func Battery Discharging\n[ 2266.542931] [ 2266.542931] (CPU:0-pid:0:swapper/0) [16:42:28.684657950] loadavg 0.72  1/420 \n[ 2271.546265] [ 2271.546265] (CPU:0-pid:0:swapper/0) [16:42:33.687992823] loadavg 0.74  0/419 \n[ 2276.549596] [ 2276.549596] (CPU:0-pid:0:swapper/0) [16:42:38.691323843] loadavg 0.68  0/419 \n[ 2281.552928] [ 2281.552928] (CPU:0-pid:0:swapper/0) [16:42:43.694657049] loadavg 0.71  1/420 \n[ 2286.556260] [ 2286.556260] (CPU:0-pid:0:swapper/0) [16:42:48.697988954] loadavg 0.73  1/420 \n[ 2291.559592] [ 2291.559592] (CPU:0-pid:0:swapper/0) [16:42:53.701321432] loadavg 0.75  1/420 \n[ 2293.388107] [ 2293.388107] (CPU:0-pid:627:wk:update_gaug) [16:42:55.529837135] (2293)1970-03-12 16:42:55 :[BAT][Ser]report Capacity ==>65, FCC:5749mAh, BMS:65, V:3868mV, Cur:488mA, Temp:25.0C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[ 2293.388446] [ 2293.388446] (CPU:0-pid:627:wk:update_gaug) [16:42:55.530176249] [BAT][BMS]print_battery_status: csoc=3676430, bsoc=162, msoc=166, ocv=3944830, SocSts=2, BatSts=0\n[ 2293.936236] [ 2293.936236] (CPU:0-pid:570:python3) [16:42:56.077965783] CPU4: shutdown\n[ 2293.940251] [ 2293.940251] (CPU:7-pid:0:swapper/7) [16:42:56.081980627] GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000\n[ 2293.940288] [ 2293.940288] (CPU:7-pid:0:swapper/7) [16:42:56.082017711] CPU7: Booted secondary processor [51df804e]\n[ 2296.562928] [ 2296.562928] (CPU:0-pid:0:swapper/0) [16:42:58.704658076] loadavg 0.69  0/418 \n[ 2301.566258] [ 2301.566258] (CPU:0-pid:0:swapper/0) [16:43:03.707988366] loadavg 0.64  0/419 \n[ 2306.569590] [ 2306.569590] (CPU:0-pid:0:swapper/0) [16:43:08.711320896] loadavg 0.66  1/420 \n[ 2311.572922] [ 2311.572922] (CPU:0-pid:0:swapper/0) [16:43:13.714653321] loadavg 0.69  1/420 \n[ 2316.576253] [ 2316.576253] (CPU:0-pid:0:swapper/0) [16:43:18.717985330] loadavg 0.72  1/420 \n[ 2321.579588] [ 2321.579588] (CPU:0-pid:0:swapper/0) [16:43:23.721320672] loadavg 0.74  1/420 \n[ 2326.582920] [ 2326.582920] (CPU:0-pid:0:swapper/0) [16:43:28.724652889] loadavg 0.76  1/420 \n[ 2331.586253] [ 2331.586253] (CPU:0-pid:0:swapper/0) [16:43:33.727986617] loadavg 0.78  1/420 \n[ 2336.589585] [ 2336.589585] (CPU:0-pid:0:swapper/0) [16:43:38.731318834] loadavg 0.80  1/420 \n[ 2341.592916] [ 2341.592916] (CPU:0-pid:0:swapper/0) [16:43:43.734650583] loadavg 0.81  1/420 \n[ 2346.596250] [ 2346.596250] (CPU:0-pid:0:swapper/0) [16:43:48.737985196] loadavg 0.83  1/420 \n[ 2351.599580] [ 2351.599580] (CPU:0-pid:0:swapper/0) [16:43:53.741315746] loadavg 0.84  1/420 \n[ 2356.602914] [ 2356.602914] (CPU:0-pid:0:swapper/0) [16:43:58.744649578] loadavg 0.85  1/420 \n[ 2361.606245] [ 2361.606245] (CPU:0-pid:0:swapper/0) [16:44:03.747981483] loadavg 0.87  1/420 \n[ 2366.609577] [ 2366.609577] (CPU:0-pid:0:swapper/0) [16:44:08.751314012] loadavg 0.88  1/420 \n[ 2371.612911] [ 2371.612911] (CPU:0-pid:0:swapper/0) [16:44:13.754648625] loadavg 0.89  1/420 \n[ 2376.616242] [ 2376.616242] (CPU:0-pid:0:swapper/0) [16:44:18.757979957] loadavg 0.89  1/420 \n[ 2381.619575] [ 2381.619575] (CPU:0-pid:0:swapper/0) [16:44:23.761313476] loadavg 0.82  0/418 \n[ 2386.622909] [ 2386.622909] (CPU:0-pid:0:swapper/0) [16:44:28.764648089] loadavg 0.76  0/419 \n[ 2391.626239] [ 2391.626239] (CPU:0-pid:0:swapper/0) [16:44:33.767978900] loadavg 0.78  1/420 \n[ 2396.629573] [ 2396.629573] (CPU:0-pid:0:swapper/0) [16:44:38.771313513] loadavg 0.79  1/420 \n[ 2401.632904] [ 2401.632904] (CPU:0-pid:0:swapper/0) [16:44:43.774644376] loadavg 0.81  1/420 \n[ 2406.636236] [ 2406.636236] (CPU:0-pid:0:swapper/0) [16:44:48.777976802] loadavg 0.83  1/420 \n[ 2411.639568] [ 2411.639568] (CPU:0-pid:0:swapper/0) [16:44:53.781309175] loadavg 0.84  1/420 \n[ 2416.642902] [ 2416.642902] (CPU:0-pid:0:swapper/0) [16:44:58.784643319] loadavg 0.85  1/420 \n[ 2421.646236] [ 2421.646236] (CPU:0-pid:0:swapper/0) [16:45:03.787977828] loadavg 0.86  1/420 \n[ 2426.649567] [ 2426.649567] (CPU:0-pid:0:swapper/0) [16:45:08.791309420] loadavg 0.79  0/418 \n[ 2431.652898] [ 2431.652898] (CPU:0-pid:0:swapper/0) [16:45:13.794641013] loadavg 0.73  0/419 \n[ 2436.656230] [ 2436.656230] (CPU:0-pid:0:swapper/0) [16:45:18.797974011] loadavg 0.75  1/420 \n[ 2441.659562] [ 2441.659562] (CPU:0-pid:0:swapper/0) [16:45:23.801306593] loadavg 0.77  1/420 \n[ 2443.573030] [ 2443.572991] (CPU:0-pid:671:wk:battery_saf) [16:45:25.714735065] [BAT][BMS][ERR]update_battery_safe +\n[ 2443.573041] [ 2443.573041] (CPU:0-pid:671:wk:battery_saf) [16:45:25.714785013] init_batt_cycle_count_data +++\n[ 2443.573266] [ 2443.573266] (CPU:0-pid:671:wk:battery_saf) [16:45:25.715010221] FG: file_op: open /batinfo/.bs err! error code:-2\n[ 2443.573314] [ 2443.573314] (CPU:0-pid:671:wk:battery_saf) [16:45:25.715057929] FG: init_batt_cycle_count_data: Read cycle count file failed!\n[ 2443.573391] [ 2443.573358] (CPU:0-pid:671:wk:battery_saf) [16:45:25.715102044] FG: update_battery_safe: cyclecount is not initialized\n[ 2446.662897] [ 2446.662897] (CPU:0-pid:0:swapper/0) [16:45:28.804642143] loadavg 0.79  1/419 \n[ 2451.666227] [ 2451.666227] (CPU:0-pid:0:swapper/0) [16:45:33.807972433] loadavg 0.81  1/420 \n[ 2456.669559] [ 2456.669559] (CPU:0-pid:0:swapper/0) [16:45:38.811304599] loadavg 0.82  1/420 \n[ 2461.672892] [ 2461.672892] (CPU:0-pid:0:swapper/0) [16:45:43.814637857] loadavg 0.84  1/420 \n[ 2466.676224] [ 2466.676224] (CPU:0-pid:0:swapper/0) [16:45:48.817971012] loadavg 0.77  0/418 \n[ 2471.679559] [ 2471.679559] (CPU:0-pid:0:swapper/0) [16:45:53.821306406] loadavg 0.71  0/419 \n[ 2476.682890] [ 2476.682890] (CPU:0-pid:0:swapper/0) [16:45:58.824637998] loadavg 0.73  1/420 \n[ 2481.686223] [ 2481.686223] (CPU:0-pid:0:swapper/0) [16:46:03.827971153] loadavg 0.75  1/420 \n[ 2484.534748] [ 2484.534748] (CPU:0-pid:699:wk:update_gaug) [16:46:06.676496749] (2484)1970-03-12 16:46:06 :[BAT][Ser]report Capacity ==>65, FCC:5749mAh, BMS:65, V:3878mV, Cur:398mA, Temp:25.0C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[ 2484.535086] [ 2484.535086] (CPU:0-pid:699:wk:update_gaug) [16:46:06.676833729] [BAT][BMS]print_battery_status: csoc=3656326, bsoc=162, msoc=165, ocv=3941656, SocSts=2, BatSts=0\n[ 2486.689555] [ 2486.689555] (CPU:0-pid:0:swapper/0) [16:46:08.831303683] loadavg 0.77  1/420 \n[ 2491.692886] [ 2491.692886] (CPU:0-pid:0:swapper/0) [16:46:13.834635119] loadavg 0.79  1/420 \n[ 2496.696221] [ 2496.696221] (CPU:0-pid:0:swapper/0) [16:46:18.837970201] loadavg 0.81  1/420 \n[ 2501.699553] [ 2501.699553] (CPU:0-pid:0:swapper/0) [16:46:23.841302991] loadavg 0.74  0/418 \n[ 2506.702884] [ 2506.702884] (CPU:0-pid:0:swapper/0) [16:46:28.844634635] loadavg 0.68  0/419 \n[ 2510.070024] [ 2510.070024] (CPU:0-pid:365:irq/560-msoc-de) [16:46:32.211774918] [PSY] power_supply_changed, psy_name:battery\n[ 2510.072998] [ 2510.072998] (CPU:0-pid:627:wk:status_chan) [16:46:32.214749241] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[ 2510.073516] [ 2510.073516] (CPU:0-pid:91:pd_dbg_info) [16:46:32.215266689] ///PD dbg info 66d\n[ 2510.073564] [ 2510.073564] (CPU:0-pid:91:pd_dbg_info) [16:46:32.215314294] < 2510.073>TCPC-TCPC:bat_update_work_func battery update soc = 65\n[ 2510.096301] [ 2510.096301] (CPU:0-pid:91:pd_dbg_info) [16:46:32.238052369] ///PD dbg info 62d\n[ 2510.096350] [ 2510.096350] (CPU:0-pid:91:pd_dbg_info) [16:46:32.238100858] < 2510.073>TCPC-TCPC:bat_update_work_func Battery Discharging\n[ 2511.706216] [ 2511.706216] (CPU:0-pid:0:swapper/0) [16:46:33.847966644] loadavg 0.71  1/420 \n[ 2516.709548] [ 2516.709548] (CPU:0-pid:0:swapper/0) [16:46:38.851299121] loadavg 0.73  1/420 \n[ 2521.712882] [ 2521.712882] (CPU:0-pid:0:swapper/0) [16:46:43.854634151] loadavg 0.75  1/420 \n[ 2526.716213] [ 2526.716213] (CPU:0-pid:0:swapper/0) [16:46:48.857965379] loadavg 0.77  1/420 \n[ 2531.719544] [ 2531.719544] (CPU:0-pid:0:swapper/0) [16:46:53.861297283] loadavg 0.79  1/420 \n[ 2536.722880] [ 2536.722880] (CPU:0-pid:0:swapper/0) [16:46:58.864633302] loadavg 0.72  0/419 \n[ 2541.726210] [ 2541.726210] (CPU:0-pid:0:swapper/0) [16:47:03.867963957] loadavg 0.75  1/420 \n[ 2546.729544] [ 2546.729544] (CPU:0-pid:0:swapper/0) [16:47:08.871298466] loadavg 0.77  1/420 \n[ 2551.732874] [ 2551.732874] (CPU:0-pid:0:swapper/0) [16:47:13.874629225] loadavg 0.79  1/420 \n[ 2556.736206] [ 2556.736206] (CPU:0-pid:0:swapper/0) [16:47:18.877961755] loadavg 0.80  1/420 \n[ 2561.739539] [ 2561.739539] (CPU:0-pid:0:swapper/0) [16:47:23.881294857] loadavg 0.82  1/420 \n[ 2566.742873] [ 2566.742873] (CPU:0-pid:0:swapper/0) [16:47:28.884628793] loadavg 0.75  0/418 \n[ 2571.746206] [ 2571.746206] (CPU:0-pid:0:swapper/0) [16:47:33.887962833] loadavg 0.69  0/419 \n[ 2576.749536] [ 2576.749536] (CPU:0-pid:0:swapper/0) [16:47:38.891293279] loadavg 0.72  1/420 \n[ 2581.752868] [ 2581.752868] (CPU:0-pid:0:swapper/0) [16:47:43.894625913] loadavg 0.74  1/420 \n[ 2586.756200] [ 2586.756200] (CPU:0-pid:0:swapper/0) [16:47:48.897958495] loadavg 0.76  1/420 \n[ 2591.759532] [ 2591.759532] (CPU:0-pid:0:swapper/0) [16:47:53.901291129] loadavg 0.78  1/420 \n[ 2596.762870] [ 2596.762870] (CPU:0-pid:0:swapper/0) [16:47:58.904628867] loadavg 0.71  0/418 \n[ 2601.766198] [ 2601.766198] (CPU:0-pid:0:swapper/0) [16:48:03.907958063] loadavg 0.66  0/419 \n[ 2606.769530] [ 2606.769530] (CPU:0-pid:0:swapper/0) [16:48:08.911290749] loadavg 0.68  1/420 \n[ 2611.772862] [ 2611.772862] (CPU:0-pid:0:swapper/0) [16:48:13.914622602] loadavg 0.71  1/420 \n[ 2616.776194] [ 2616.776194] (CPU:0-pid:0:swapper/0) [16:48:18.917955027] loadavg 0.73  1/420 \n[ 2621.779529] [ 2621.779529] (CPU:0-pid:0:swapper/0) [16:48:23.921290734] loadavg 0.75  1/420 \n[ 2626.782862] [ 2626.782862] (CPU:0-pid:0:swapper/0) [16:48:28.924623732] loadavg 0.69  0/419 \n[ 2631.786193] [ 2631.786193] (CPU:0-pid:0:swapper/0) [16:48:33.927955481] loadavg 0.72  1/420 \n[ 2636.789524] [ 2636.789524] (CPU:0-pid:0:swapper/0) [16:48:38.931286917] loadavg 0.74  1/420 \n[ 2641.792856] [ 2641.792856] (CPU:0-pid:0:swapper/0) [16:48:43.934620071] loadavg 0.76  1/420 \n[ 2646.796190] [ 2646.796190] (CPU:0-pid:0:swapper/0) [16:48:48.937954268] loadavg 0.78  1/420 \n[ 2651.799523] [ 2651.799523] (CPU:0-pid:0:swapper/0) [16:48:53.941287214] loadavg 0.72  0/418 \n[ 2656.802855] [ 2656.802855] (CPU:0-pid:0:swapper/0) [16:48:58.944619536] loadavg 0.66  0/419 \n[ 2661.806186] [ 2661.806186] (CPU:0-pid:0:swapper/0) [16:49:03.947951909] loadavg 0.69  1/420 \n[ 2666.809521] [ 2666.809521] (CPU:0-pid:0:swapper/0) [16:49:08.951286834] loadavg 0.71  1/420 \n[ 2671.812852] [ 2671.812852] (CPU:0-pid:0:swapper/0) [16:49:13.954618947] loadavg 0.73  1/420 \n[ 2675.681433] [ 2675.681433] (CPU:0-pid:699:wk:update_gaug) [16:49:17.823199854] (2675)1970-03-12 16:49:17 :[BAT][Ser]report Capacity ==>64, FCC:5749mAh, BMS:64, V:3868mV, Cur:466mA, Temp:25.2C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[ 2675.681765] [ 2675.681765] (CPU:0-pid:699:wk:update_gaug) [16:49:17.823532041] [BAT][BMS]print_battery_status: csoc=3634593, bsoc=160, msoc=164, ocv=3937994, SocSts=2, BatSts=0\n[ 2676.816184] [ 2676.816184] (CPU:0-pid:0:swapper/0) [16:49:18.957951165] loadavg 0.67  0/418 \n[ 2681.819516] [ 2681.819516] (CPU:0-pid:0:swapper/0) [16:49:23.961283434] loadavg 0.62  0/419 \n[ 2686.822849] [ 2686.822849] (CPU:0-pid:0:swapper/0) [16:49:28.964616693] loadavg 0.65  1/420 \n[ 2691.826180] [ 2691.826180] (CPU:0-pid:0:swapper/0) [16:49:33.967948910] loadavg 0.68  1/420 \n[ 2696.829514] [ 2696.829514] (CPU:0-pid:0:swapper/0) [16:49:38.971282950] loadavg 0.70  1/420 \n[ 2701.832846] [ 2701.832846] (CPU:0-pid:0:swapper/0) [16:49:43.974615688] loadavg 0.65  0/418 \n[ 2706.836178] [ 2706.836178] (CPU:0-pid:0:swapper/0) [16:49:48.977947489] loadavg 0.59  0/419 \n[ 2711.839510] [ 2711.839510] (CPU:0-pid:0:swapper/0) [16:49:53.981280018] loadavg 0.63  1/420 \n[ 2713.925127] [ 2713.925127] (CPU:0-pid:365:irq/560-msoc-de) [16:49:56.066897830] [PSY] power_supply_changed, psy_name:battery\n[ 2713.928200] [ 2713.928200] (CPU:0-pid:699:wk:status_chan) [16:49:56.069970903] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[ 2713.928711] [ 2713.928711] (CPU:0-pid:91:pd_dbg_info) [16:49:56.070481945] ///PD dbg info 66d\n[ 2713.928758] [ 2713.928758] (CPU:0-pid:91:pd_dbg_info) [16:49:56.070528820] < 2713.928>TCPC-TCPC:bat_update_work_func battery update soc = 64\n[ 2713.949587] [ 2713.949587] (CPU:0-pid:91:pd_dbg_info) [16:49:56.091357833] ///PD dbg info 62d\n[ 2713.949635] [ 2713.949635] (CPU:0-pid:91:pd_dbg_info) [16:49:56.091405593] < 2713.928>TCPC-TCPC:bat_update_work_func Battery Discharging\n[ 2716.842842] [ 2716.842842] (CPU:0-pid:0:swapper/0) [16:49:58.984613225] loadavg 0.66  1/420 \n[ 2721.846176] [ 2721.846176] (CPU:0-pid:0:swapper/0) [16:50:03.987947005] loadavg 0.68  1/420 \n[ 2726.849508] [ 2726.849508] (CPU:0-pid:0:swapper/0) [16:50:08.991279482] loadavg 0.63  0/418 \n[ 2731.852841] [ 2731.852841] (CPU:0-pid:0:swapper/0) [16:50:13.994613679] loadavg 0.58  0/419 \n[ 2736.856171] [ 2736.856171] (CPU:0-pid:0:swapper/0) [16:50:18.997943812] loadavg 0.61  1/420 \n[ 2741.859503] [ 2741.859503] (CPU:0-pid:0:swapper/0) [16:50:24.001276498] loadavg 0.64  1/420 \n[ 2743.946306] [ 2743.946268] (CPU:0-pid:699:wk:battery_saf) [16:50:26.088041498] [BAT][BMS][ERR]update_battery_safe +\n[ 2743.946317] [ 2743.946317] (CPU:0-pid:699:wk:battery_saf) [16:50:26.088089727] init_batt_cycle_count_data +++\n[ 2743.946538] [ 2743.946538] (CPU:0-pid:699:wk:battery_saf) [16:50:26.088311862] FG: file_op: open /batinfo/.bs err! error code:-2\n[ 2743.946586] [ 2743.946586] (CPU:0-pid:699:wk:battery_saf) [16:50:26.088359415] FG: init_batt_cycle_count_data: Read cycle count file failed!\n[ 2743.946664] [ 2743.946630] (CPU:0-pid:699:wk:battery_saf) [16:50:26.088403269] FG: update_battery_safe: cyclecount is not initialized\n[ 2746.862838] [ 2746.862838] (CPU:0-pid:0:swapper/0) [16:50:29.004611736] loadavg 0.67  1/420 \n[ 2751.866169] [ 2751.866169] (CPU:0-pid:0:swapper/0) [16:50:34.007943589] loadavg 0.62  0/417 \n[ 2756.869501] [ 2756.869501] (CPU:0-pid:0:swapper/0) [16:50:39.011275233] loadavg 0.57  0/419 \n[ 2761.872833] [ 2761.872833] (CPU:0-pid:0:swapper/0) [16:50:44.014608284] loadavg 0.60  1/420 \n[ 2766.876165] [ 2766.876165] (CPU:0-pid:0:swapper/0) [16:50:49.017940761] loadavg 0.63  1/420 \n[ 2771.879500] [ 2771.879500] (CPU:0-pid:0:swapper/0) [16:50:54.021275635] loadavg 0.66  1/420 \n[ 2776.882833] [ 2776.882833] (CPU:0-pid:0:swapper/0) [16:50:59.024609779] loadavg 0.61  0/419 \n[ 2781.886163] [ 2781.886163] (CPU:0-pid:0:swapper/0) [16:51:04.027940069] loadavg 0.64  1/420 \n[ 2786.889495] [ 2786.889495] (CPU:0-pid:0:swapper/0) [16:51:09.031272755] loadavg 0.67  1/420 \n[ 2791.892827] [ 2791.892827] (CPU:0-pid:0:swapper/0) [16:51:14.034604920] loadavg 0.69  1/420 \n[ 2796.896162] [ 2796.896162] (CPU:0-pid:0:swapper/0) [16:51:19.037940887] loadavg 0.64  0/418 \n[ 2801.899492] [ 2801.899492] (CPU:0-pid:0:swapper/0) [16:51:24.041271281] loadavg 0.59  0/419 \n[ 2806.902825] [ 2806.902825] (CPU:0-pid:0:swapper/0) [16:51:29.044604697] loadavg 0.62  1/420 \n[ 2811.906157] [ 2811.906157] (CPU:0-pid:0:swapper/0) [16:51:34.047937070] loadavg 0.65  1/420 \n[ 2816.909489] [ 2816.909489] (CPU:0-pid:0:swapper/0) [16:51:39.051269912] loadavg 0.68  0/419 \n[ 2821.912824] [ 2821.912824] (CPU:0-pid:0:swapper/0) [16:51:44.054605046] loadavg 0.62  0/419 \n[ 2826.916154] [ 2826.916154] (CPU:0-pid:0:swapper/0) [16:51:49.057935388] loadavg 0.65  1/420 \n[ 2831.919485] [ 2831.919485] (CPU:0-pid:0:swapper/0) [16:51:54.061267501] loadavg 0.68  1/420 \n[ 2836.922821] [ 2836.922821] (CPU:0-pid:0:swapper/0) [16:51:59.064603312] loadavg 0.71  1/420 \n[ 2841.926152] [ 2841.926152] (CPU:0-pid:0:swapper/0) [16:52:04.067934748] loadavg 0.65  0/419 \n[ 2846.929485] [ 2846.929485] (CPU:0-pid:0:swapper/0) [16:52:09.071268528] loadavg 0.68  1/420 \n[ 2851.932817] [ 2851.932817] (CPU:0-pid:0:swapper/0) [16:52:14.074600849] loadavg 0.70  1/420 \n[ 2856.936147] [ 2856.936147] (CPU:0-pid:0:swapper/0) [16:52:19.077931295] loadavg 0.73  1/420 \n[ 2861.939481] [ 2861.939481] (CPU:0-pid:0:swapper/0) [16:52:24.081265440] loadavg 0.67  0/418 \n[ 2866.828038] [ 2866.828038] (CPU:0-pid:730:wk:update_gaug) [16:52:28.969823479] (2866)1970-03-12 16:52:28 :[BAT][Ser]report Capacity ==>64, FCC:5749mAh, BMS:64, V:3873mV, Cur:348mA, Temp:25.5C, BATID:50700, CHG_Status:2(DISCHARGING), CHG_Mode:NONE, APSD_Result:UNKNOWN, UFP_Mode:NONE, BAT_HEALTH:GOOD\n[ 2866.828370] [ 2866.828370] (CPU:0-pid:730:wk:update_gaug) [16:52:28.970155198] [BAT][BMS]print_battery_status: csoc=3610397, bsoc=159, msoc=163, ocv=3934332, SocSts=2, BatSts=0\n[ 2866.942813] [ 2866.942813] (CPU:0-pid:0:swapper/0) [16:52:29.084598646] loadavg 0.61  0/419 \n[ 2871.946147] [ 2871.946147] (CPU:0-pid:0:swapper/0) [16:52:34.087933103] loadavg 0.64  1/420 \n[ 2876.949477] [ 2876.949477] (CPU:0-pid:0:swapper/0) [16:52:39.091263029] loadavg 0.67  1/420 \n[ 2881.952810] [ 2881.952810] (CPU:0-pid:0:swapper/0) [16:52:44.094596340] loadavg 0.62  0/418 \n[ 2886.956142] [ 2886.956142] (CPU:0-pid:0:swapper/0) [16:52:49.097928921] loadavg 0.57  0/419 \n[ 2891.959474] [ 2891.959474] (CPU:0-pid:0:swapper/0) [16:52:54.101261711] loadavg 0.60  1/420 \n[ 2893.801587] [ 2893.801587] (CPU:0-pid:365:irq/560-msoc-de) [16:52:55.943374603] [PSY] power_supply_changed, psy_name:battery\n[ 2893.804570] [ 2893.804570] (CPU:0-pid:730:wk:status_chan) [16:52:55.946358406] [BAT][CHG]smb5_usb_main_set_prop: set voltage_max: 4360000\n[ 2893.805081] [ 2893.805081] (CPU:0-pid:91:pd_dbg_info) [16:52:55.946868874] ///PD dbg info 66d\n[ 2893.805128] [ 2893.805128] (CPU:0-pid:91:pd_dbg_info) [16:52:55.946915437] < 2893.804>TCPC-TCPC:bat_update_work_func battery update soc = 63\n[ 2893.826250] [ 2893.826250] (CPU:0-pid:91:pd_dbg_info) [16:52:55.968038095] ///PD dbg info 62d\n[ 2893.826298] [ 2893.826298] (CPU:0-pid:91:pd_dbg_info) [16:52:55.968085700] < 2893.805>TCPC-TCPC:bat_update_work_func Battery Discharging\n[ 2896.962809] [ 2896.962809] (CPU:0-pid:0:swapper/0) [16:52:59.104596949] loadavg 0.63  1/420 \n[ 2901.966141] [ 2901.966141] (CPU:0-pid:0:swapper/0) [16:53:04.107929896] loadavg 0.58  0/418 \n[ 2906.969471] [ 2906.969471] (CPU:0-pid:0:swapper/0) [16:53:09.111259925] loadavg 0.54  0/419 \n[ 2911.972803] [ 2911.972803] (CPU:0-pid:0:swapper/0) [16:53:14.114592924] loadavg 0.57  1/420 \n[ 2916.976135] [ 2916.976135] (CPU:0-pid:0:swapper/0) [16:53:19.117925610] loadavg 0.61  1/420 \n[ 2919.415885] [ 2919.415885] (CPU:0-pid:570:python3) [16:53:21.557675124] CPU7: shutdown\n"
  },
  {
    "path": "results/sm8150ac/new/post_bench_interrupts.txt",
    "content": "           CPU0       \n  4:     879819   PDC-GIC  19 Level     arch_timer\n  6:          0   PDC-GIC  38 Level     arch_mem_timer\n  8:          0   PDC-GIC 115 Edge      msm_drm\n  9:          0   PDC-GIC 509 Edge      csiphy\n 10:          0   PDC-GIC 510 Edge      csiphy\n 11:          0   PDC-GIC 511 Edge      csiphy\n 12:          0   PDC-GIC 480 Edge      csiphy\n 13:          0   PDC-GIC 492 Edge      cci\n 14:          0   PDC-GIC 303 Edge      cci\n 15:          0   PDC-GIC 491 Edge      cpas_camnoc\n 16:          1   PDC-GIC 493 Edge      cpas-cdm\n 17:          0   PDC-GIC 496 Edge      csid\n 18:          2   PDC-GIC 497 Edge      ife\n 19:          0   PDC-GIC 498 Edge      csid\n 20:          2   PDC-GIC 499 Edge      ife\n 21:          0   PDC-GIC 500 Edge      csid-lite\n 22:          2   PDC-GIC 501 Edge      ife-lite\n 23:          0   PDC-GIC 391 Edge      csid-lite\n 24:          2   PDC-GIC 392 Edge      ife-lite\n 25:          0   PDC-GIC 495 Edge      a5\n 26:          0   PDC-GIC 506 Edge      jpeg\n 27:          0   PDC-GIC 507 Edge      jpegdma\n 28:          2   PDC-GIC 494 Edge      fd\n 29:          1   PDC-GIC 508 Edge      lrme\n 35:          0   PDC-GIC  21 Level     arm-pmu\n 43:          0  pmic_arb 574619927 Edge      qcom,temp-alarm\n 44:          0  pmic_arb 721486118 Edge      ptrain-done\n 55:       2890  pmic_arb 588251416 Edge      pm-adc5\n 56:          0  pmic_arb 592445721 Edge      thr-int-en\n 57:          0  pmic_arb 8388857 Edge      pon_kpdpwr_status\n 58:          0  pmic_arb 37748986 Edge      qcom,temp-alarm\n 59:          0  pmic_arb 8454393 Edge      pon_resin_status\n 60:       2883  pmic_arb 51380475 Edge      pm-adc5\n 61:          0  pmic_arb 55574780 Edge      thr-int-en\n 62:          0  pmic_arb 560988433 Edge      sig-tx\n 63:          0  pmic_arb 561053969 Edge      sig-rx\n 64:          0  pmic_arb 561119505 Edge      msg-tx\n 65:          0  pmic_arb 561185041 Edge      msg-rx\n 66:          0  pmic_arb 561250577 Edge      msg-tx-failed\n 67:          0  pmic_arb 561316113 Edge      msg-tx-discarded\n 68:          0  pmic_arb 561381649 Edge      msg-rx-discarded\n 70:          0  pmic_arb 567279894 Edge      bcl-lvl0\n 71:          0  pmic_arb 567345430 Edge      bcl-lvl1\n 72:          0  pmic_arb 567410966 Edge      bcl-lvl2\n 75:          0  pmic_arb 1111490870 Edge      qcom,temp-alarm\n 87:       5763  pmic_arb 1125122359 Edge      pm-adc5\n 88:          0  pmic_arb 1137705273 Edge      bcl-lvl0\n 89:          0  pmic_arb 1137770809 Edge      bcl-lvl1\n 90:          0  pmic_arb 1137836345 Edge      bcl-lvl2\n 91:          0  pmic_arb 1129316664 Edge      thr-int-en\n 92:          0  pmic_arb 1589707091 Edge      qpnp_lcdb_sc_irq\n 93:          0  pmic_arb 1563427152 Edge      qpnp_flash_led_fault_irq\n 94:          0  pmic_arb 1563623760 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 95:          0  pmic_arb 1563689296 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 96:          0  pmic_arb 1568735569 Edge      wled_ovp_irq\n 97:          0  pmic_arb 1568932177 Edge      wled_pre_flash_irq\n 98:          0  pmic_arb 1568997713 Edge      wled_flash_irq\n 99:          0   PDC-GIC 524 Level     eud_irq\n100:          0   PDC-GIC 298 Edge      modem\n101:          0   PDC-GIC 194 Edge      adsp\n102:          0   PDC-GIC 526 Edge      slpi\n103:          0   PDC-GIC 384 Level     spss\n104:          0   PDC-GIC  32 Edge      apps_wdog_bark\n106:          0   PDC-GIC 610 Edge      cdsp\n107:          0   PDC-GIC  22 Level     KRYO L1-L2 ECC FAULTIRQ\n110:          0   PDC-GIC  67 Level     KRYO L3-SCU ECC FAULTIRQ\n111:        612   PDC-GIC 297 Edge      1d84000.ufshc\n112:        905   PDC-GIC  37 Level     apps_rsc\n113:          0   PDC-GIC 380 Level     qsee_irq\n114:          0   PDC-GIC 381 Level     qsee_irq\n115:         11   PDC-GIC 421 Edge      qcom,qmp-aop\n116:          0   PDC-GIC 401 Edge      qcom,qmp-npu-low\n117:          0   PDC-GIC 402 Edge      qcom,qmp-npu-high\n118:          0   PDC-GIC 304 Level     sps\n119:          0   PDC-GIC 538 Level     tsens-upper-lower\n120:          0   PDC-GIC 540 Level     tsens-critical\n121:          0   PDC-GIC 539 Level     tsens-upper-lower\n122:          0   PDC-GIC 541 Level     tsens-critical\n123:          0   PDC-GIC 195 Level     ngd_slim_irq\n125:          0   PDC-GIC 323 Level     ngd_slim_irq\n190:          0  msmgpio-dc   8 Edge      TE_GPIO\n210:          0  msmgpio-dc  37 Edge      msm_pcie_wake\n222:          2  msmgpio-dc  47 Level     nq-nci\n244:          0  msmgpio-dc  68 Edge      asustek_lid2_isr\n260:          0  msmgpio-dc  88 Edge      accy_therm_alert\n270:          0  msmgpio-dc  96 Edge      top_vib_trig_interrupt\n272:          0  msmgpio-dc  97 Edge      volume_down\n276:          1  msmgpio-dc 103 Edge      type_c_port0-IRQ\n288:          0  msmgpio-dc 117 Level     ALSPS_SENSOR_INT\n292:          0  msmgpio-dc 119 Edge      bot_vib_trig_interrupt\n294:          0  msmgpio-dc 120 Edge      therm_alert\n296:          0  msmgpio-dc 121 Edge      asustek_lid_isr\n308:          0  msmgpio-dc 132 Level     pca9468\n312:          0  msmgpio-dc 134 Edge      volume_up\n335:          0     GICv3 172 Edge      int_global_int\n410:          0   PDC-GIC 483 Edge      smp2p\n411:          0   PDC-GIC 190 Edge      smp2p\n412:          0   PDC-GIC 204 Edge      smp2p\n413:          0   PDC-GIC 608 Edge      smp2p\n415:          0   PDC-GIC  97 Level     arm-smmu global fault\n418:          0   PDC-GIC 131 Level     arm-smmu-context-fault\n419:          0   PDC-GIC 132 Level     arm-smmu-context-fault\n420:          0   PDC-GIC 133 Level     arm-smmu-context-fault\n421:          0   PDC-GIC 134 Level     arm-smmu-context-fault\n422:          0   PDC-GIC 135 Level     arm-smmu-context-fault\n423:          0   PDC-GIC 136 Level     arm-smmu-context-fault\n424:          0   PDC-GIC 137 Level     arm-smmu-context-fault\n425:          0   PDC-GIC 138 Level     arm-smmu-context-fault\n426:          0   PDC-GIC 139 Level     arm-smmu-context-fault\n427:          0   PDC-GIC 140 Level     arm-smmu-context-fault\n428:          0   PDC-GIC 141 Level     arm-smmu-context-fault\n429:          0   PDC-GIC 142 Level     arm-smmu-context-fault\n430:          0   PDC-GIC 143 Level     arm-smmu-context-fault\n431:          0   PDC-GIC 144 Level     arm-smmu-context-fault\n432:          0   PDC-GIC 145 Level     arm-smmu-context-fault\n433:          0   PDC-GIC 146 Level     arm-smmu-context-fault\n434:          0   PDC-GIC 147 Level     arm-smmu-context-fault\n435:          0   PDC-GIC 148 Level     arm-smmu-context-fault\n436:          0   PDC-GIC 149 Level     arm-smmu-context-fault\n437:          0   PDC-GIC 150 Level     arm-smmu-context-fault\n438:          0   PDC-GIC 213 Level     arm-smmu-context-fault\n439:          0   PDC-GIC 214 Level     arm-smmu-context-fault\n440:          0   PDC-GIC 215 Level     arm-smmu-context-fault\n441:          0   PDC-GIC 216 Level     arm-smmu-context-fault\n442:          0   PDC-GIC 217 Level     arm-smmu-context-fault\n443:          0   PDC-GIC 218 Level     arm-smmu-context-fault\n444:          0   PDC-GIC 219 Level     arm-smmu-context-fault\n445:          0   PDC-GIC 220 Level     arm-smmu-context-fault\n446:          0   PDC-GIC 221 Level     arm-smmu-context-fault\n447:          0   PDC-GIC 222 Level     arm-smmu-context-fault\n448:          0   PDC-GIC 223 Level     arm-smmu-context-fault\n449:          0   PDC-GIC 224 Level     arm-smmu-context-fault\n450:          0   PDC-GIC 347 Level     arm-smmu-context-fault\n451:          0   PDC-GIC 348 Level     arm-smmu-context-fault\n452:          0   PDC-GIC 349 Level     arm-smmu-context-fault\n453:          0   PDC-GIC 350 Level     arm-smmu-context-fault\n454:          0   PDC-GIC 351 Level     arm-smmu-context-fault\n455:          0   PDC-GIC 352 Level     arm-smmu-context-fault\n456:          0   PDC-GIC 353 Level     arm-smmu-context-fault\n457:          0   PDC-GIC 354 Level     arm-smmu-context-fault\n458:          0   PDC-GIC 355 Level     arm-smmu-context-fault\n459:          0   PDC-GIC 356 Level     arm-smmu-context-fault\n460:          0   PDC-GIC 357 Level     arm-smmu-context-fault\n461:          0   PDC-GIC 358 Level     arm-smmu-context-fault\n462:          0   PDC-GIC 359 Level     arm-smmu-context-fault\n496:         45   PDC-GIC 634 Level     i2c_geni\n497:         32   PDC-GIC 637 Level     i2c_geni\n498:          4   PDC-GIC 640 Level     i2c_geni\n499:          0   PDC-GIC 636 Level     spi_geni\n502:          0   PDC-GIC 386 Level     i2c_geni\n503:          0   PDC-GIC 387 Level     i2c_geni\n504:         17   PDC-GIC 388 Level     i2c_geni\n505:          3   PDC-GIC 405 Level     i2c_geni\n506:        172   PDC-GIC 615 Level     i2c_geni\n507:         17   PDC-GIC 616 Level     i2c_geni\n508:          0   PDC-GIC 396 Edge      error_irq\n509:          0   PDC-GIC 398 Edge      wdg_bite_irq\n510:          0   PDC-GIC 400 Level     ipc_irq\n511:          0   PDC-GIC 206 Level     msm_vidc\n512:          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n513:          1   PDC-GIC 162 Edge      pwr_event_irq\n514:          0   PDC-GIC 518 Level     ss_phy_irq\n515:          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n516:          0   PDC-GIC 523 Edge      dp_hs_phy_irq\n517:          1   PDC-GIC 167 Edge      pwr_event_irq\n518:          0   PDC-GIC 519 Level     ss_phy_irq\n519:          0   PDC-GIC 522 Edge      dm_hs_phy_irq\n520:          0   PDC-GIC 332 Level     kgsl-3d0\n521:          0   PDC-GIC 336 Level     HFI\n522:          0   PDC-GIC 337 Level     GMU\n523:          0   PDC-GIC 706 Level     arm-smmu global fault\n524:          0   PDC-GIC 713 Level     arm-smmu-context-fault\n525:          0   PDC-GIC 714 Level     arm-smmu-context-fault\n526:          0   PDC-GIC 715 Level     arm-smmu-context-fault\n532:          0   PDC-GIC  64 Level     limits_sensor-00\n533:          0   PDC-GIC  65 Level     limits_sensor-01\n534:          0     smp2p   2 Edge      modem\n535:          0     smp2p   0 Edge      modem\n536:          0     smp2p   1 Edge      error_ready_interrupt\n537:          0     smp2p   3 Edge      modem\n538:          0     smp2p   7 Edge      modem\n539:          0     smp2p   2 Edge      adsp\n540:          0     smp2p   0 Edge      adsp\n541:          0     smp2p   1 Edge      error_ready_interrupt\n542:          0     smp2p   3 Edge      adsp\n543:          0     smp2p   2 Edge      slpi\n544:          0     smp2p   0 Edge      slpi\n545:          0     smp2p   1 Edge      error_ready_interrupt\n546:          0     smp2p   3 Edge      slpi\n547:          0     smp2p   2 Edge      cdsp\n548:          0     smp2p   0 Edge      cdsp\n549:          0     smp2p   1 Edge      error_ready_interrupt\n550:          0     smp2p   3 Edge      cdsp\n551:          0      qsee  32 Level     qsee_ipc_irq_spss\n552:          0     smp2p   0 Edge      smp2p_sleepstate\n553:          0   PDC-GIC 165 Edge      dwc3\n555:          0   PDC-GIC 170 Edge      dwc3\n556:          0  pmic_arb 101777663 Edge      qpnp_rtc_alarm\n557:          0  pmic_arb 603980059 Edge      soc-update\n558:          0  pmic_arb 604045595 Edge      soc-ready\n559:          0  pmic_arb 604111131 Edge      bsoc-delta\n560:         13  pmic_arb 604176667 Edge      msoc-delta\n561:          0  pmic_arb 604242203 Edge      msoc-low\n562:          0  pmic_arb 604307739 Edge      msoc-empty\n563:          0  pmic_arb 604373275 Edge      msoc-high\n564:          0  pmic_arb 604438811 Edge      msoc-full\n565:          0  pmic_arb 605028636 Edge      vbatt-low\n566:          0  pmic_arb 605094172 Edge      vbatt-pred-delta\n567:          3  pmic_arb 605225244 Edge      esr-delta\n568:          0  pmic_arb 606077213 Edge      batt-missing\n569:          0  pmic_arb 606142749 Edge      batt-id\n570:          4  pmic_arb 606208285 Edge      batt-temp-delta\n571:          0  pmic_arb 606273821 Edge      batt-temp-hot\n572:          0  pmic_arb 606339357 Edge      batt-temp-cold\n573:          0  pmic_arb 607125790 Edge      ima-rdy\n574:          0  pmic_arb 607191326 Edge      ima-xcp\n575:          0  pmic_arb 607256862 Edge      dma-xcp\n576:        330  pmic_arb 607322398 Edge      dma-grant\n577:          0  pmic_arb 607387934 Edge      mem-attn\n578:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n579:          0  pmic_arb 553648394 Edge      chgr-error\n580:          0  pmic_arb 553713930 Edge      chg-state-change\n586:          0  pmic_arb 554696971 Edge      otg-fail\n589:          0  pmic_arb 554959115 Edge      high-duty-cycle\n590:          0  pmic_arb 555024651 Edge      input-current-limiting\n592:          0  pmic_arb 555155723 Edge      switcher-power-ok\n593:          0  pmic_arb 555745548 Edge      bat-temp\n594:          0  pmic_arb 555876620 Edge      bat-ov\n595:          0  pmic_arb 555942156 Edge      bat-low\n596:          0  pmic_arb 556007692 Edge      bat-therm-or-id-missing\n597:          0  pmic_arb 556073228 Edge      bat-terminal-missing\n600:          0  pmic_arb 556794125 Edge      usbin-collapse\n601:          0  pmic_arb 556859661 Edge      usbin-vashdn\n602:          0  pmic_arb 556925197 Edge      usbin-uv\n603:          0  pmic_arb 556990733 Edge      usbin-ov\n604:          0  pmic_arb 557056269 Edge      usbin-plugin\n606:          0  pmic_arb 557187341 Edge      usbin-src-change\n607:          0  pmic_arb 557252877 Edge      usbin-icl-change\n609:          0  pmic_arb 557973774 Edge      dcin-uv\n610:          0  pmic_arb 558039310 Edge      dcin-ov\n611:          0  pmic_arb 558104846 Edge      dcin-plugin\n613:          0  pmic_arb 558235918 Edge      dcin-pon\n614:          0  pmic_arb 558301454 Edge      dcin-en\n615:          0  pmic_arb 558891279 Edge      typec-or-rid-detect-change\n617:          0  pmic_arb 559022351 Edge      typec-cc-state-change\n618:          0  pmic_arb 559087887 Edge      typec-vconn-oc\n620:          0  pmic_arb 559218959 Edge      typec-attach-detach\n621:          0  pmic_arb 559284495 Edge      typec-legacy-cable-detect\n623:          0  pmic_arb 559939856 Edge      wdog-snarl\n624:          0  pmic_arb 560005392 Edge      wdog-bark\n626:          0  pmic_arb 560136464 Edge      aicl-done\n627:          0  pmic_arb 560202000 Edge      smb-en\n628:          0  pmic_arb 560333072 Edge      temp-change\n630:          0       sde  12 Edge      dp_display_isr\n631:          0       sde   4 Edge      dsi_ctrl\nIPI0:       284       Rescheduling interrupts\nIPI1:        12       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:    145813       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8150ac/new/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  4:       1294          2          2          3          4          2          2          1   PDC-GIC  19 Level     arch_timer\n  6:          0          0          0          0          0          0          0          0   PDC-GIC  38 Level     arch_mem_timer\n  8:          0          0          0          0          0          0          0          0   PDC-GIC 115 Edge      msm_drm\n  9:          0          0          0          0          0          0          0          0   PDC-GIC 509 Edge      csiphy\n 10:          0          0          0          0          0          0          0          0   PDC-GIC 510 Edge      csiphy\n 11:          0          0          0          0          0          0          0          0   PDC-GIC 511 Edge      csiphy\n 12:          0          0          0          0          0          0          0          0   PDC-GIC 480 Edge      csiphy\n 13:          0          0          0          0          0          0          0          0   PDC-GIC 492 Edge      cci\n 14:          0          0          0          0          0          0          0          0   PDC-GIC 303 Edge      cci\n 15:          0          0          0          0          0          0          0          0   PDC-GIC 491 Edge      cpas_camnoc\n 16:          1          0          0          0          0          0          0          0   PDC-GIC 493 Edge      cpas-cdm\n 17:          0          0          0          0          0          0          0          0   PDC-GIC 496 Edge      csid\n 18:          2          0          0          0          0          0          0          0   PDC-GIC 497 Edge      ife\n 19:          0          0          0          0          0          0          0          0   PDC-GIC 498 Edge      csid\n 20:          2          0          0          0          0          0          0          0   PDC-GIC 499 Edge      ife\n 21:          0          0          0          0          0          0          0          0   PDC-GIC 500 Edge      csid-lite\n 22:          2          0          0          0          0          0          0          0   PDC-GIC 501 Edge      ife-lite\n 23:          0          0          0          0          0          0          0          0   PDC-GIC 391 Edge      csid-lite\n 24:          2          0          0          0          0          0          0          0   PDC-GIC 392 Edge      ife-lite\n 25:          0          0          0          0          0          0          0          0   PDC-GIC 495 Edge      a5\n 26:          0          0          0          0          0          0          0          0   PDC-GIC 506 Edge      jpeg\n 27:          0          0          0          0          0          0          0          0   PDC-GIC 507 Edge      jpegdma\n 28:          2          0          0          0          0          0          0          0   PDC-GIC 494 Edge      fd\n 29:          1          0          0          0          0          0          0          0   PDC-GIC 508 Edge      lrme\n 35:          0          0          0          0          0          0          0          0   PDC-GIC  21 Level     arm-pmu\n 43:          0          0          0          0          0          0          0          0  pmic_arb 574619927 Edge      qcom,temp-alarm\n 44:          0          0          0          0          0          0          0          0  pmic_arb 721486118 Edge      ptrain-done\n 55:         12          0          0          0          0          0          0          0  pmic_arb 588251416 Edge      pm-adc5\n 56:          0          0          0          0          0          0          0          0  pmic_arb 592445721 Edge      thr-int-en\n 57:          0          0          0          0          0          0          0          0  pmic_arb 8388857 Edge      pon_kpdpwr_status\n 58:          0          0          0          0          0          0          0          0  pmic_arb 37748986 Edge      qcom,temp-alarm\n 59:          0          0          0          0          0          0          0          0  pmic_arb 8454393 Edge      pon_resin_status\n 60:          4          0          0          0          0          0          0          0  pmic_arb 51380475 Edge      pm-adc5\n 61:          0          0          0          0          0          0          0          0  pmic_arb 55574780 Edge      thr-int-en\n 62:          0          0          0          0          0          0          0          0  pmic_arb 560988433 Edge      sig-tx\n 63:          0          0          0          0          0          0          0          0  pmic_arb 561053969 Edge      sig-rx\n 64:          0          0          0          0          0          0          0          0  pmic_arb 561119505 Edge      msg-tx\n 65:          0          0          0          0          0          0          0          0  pmic_arb 561185041 Edge      msg-rx\n 66:          0          0          0          0          0          0          0          0  pmic_arb 561250577 Edge      msg-tx-failed\n 67:          0          0          0          0          0          0          0          0  pmic_arb 561316113 Edge      msg-tx-discarded\n 68:          0          0          0          0          0          0          0          0  pmic_arb 561381649 Edge      msg-rx-discarded\n 70:          0          0          0          0          0          0          0          0  pmic_arb 567279894 Edge      bcl-lvl0\n 71:          0          0          0          0          0          0          0          0  pmic_arb 567345430 Edge      bcl-lvl1\n 72:          0          0          0          0          0          0          0          0  pmic_arb 567410966 Edge      bcl-lvl2\n 75:          0          0          0          0          0          0          0          0  pmic_arb 1111490870 Edge      qcom,temp-alarm\n 87:          5          0          0          0          0          0          0          0  pmic_arb 1125122359 Edge      pm-adc5\n 88:          0          0          0          0          0          0          0          0  pmic_arb 1137705273 Edge      bcl-lvl0\n 89:          0          0          0          0          0          0          0          0  pmic_arb 1137770809 Edge      bcl-lvl1\n 90:          0          0          0          0          0          0          0          0  pmic_arb 1137836345 Edge      bcl-lvl2\n 91:          0          0          0          0          0          0          0          0  pmic_arb 1129316664 Edge      thr-int-en\n 92:          0          0          0          0          0          0          0          0  pmic_arb 1589707091 Edge      qpnp_lcdb_sc_irq\n 93:          0          0          0          0          0          0          0          0  pmic_arb 1563427152 Edge      qpnp_flash_led_fault_irq\n 94:          0          0          0          0          0          0          0          0  pmic_arb 1563623760 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 95:          0          0          0          0          0          0          0          0  pmic_arb 1563689296 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 96:          0          0          0          0          0          0          0          0  pmic_arb 1568735569 Edge      wled_ovp_irq\n 97:          0          0          0          0          0          0          0          0  pmic_arb 1568932177 Edge      wled_pre_flash_irq\n 98:          0          0          0          0          0          0          0          0  pmic_arb 1568997713 Edge      wled_flash_irq\n 99:          0          0          0          0          0          0          0          0   PDC-GIC 524 Level     eud_irq\n100:          0          0          0          0          0          0          0          0   PDC-GIC 298 Edge      modem\n101:          0          0          0          0          0          0          0          0   PDC-GIC 194 Edge      adsp\n102:          0          0          0          0          0          0          0          0   PDC-GIC 526 Edge      slpi\n103:          0          0          0          0          0          0          0          0   PDC-GIC 384 Level     spss\n104:          0          0          0          0          0          0          0          0   PDC-GIC  32 Edge      apps_wdog_bark\n106:          0          0          0          0          0          0          0          0   PDC-GIC 610 Edge      cdsp\n107:          0          0          0          0          0          0          0          0   PDC-GIC  22 Level     KRYO L1-L2 ECC FAULTIRQ\n110:          0          0          0          0          0          0          0          0   PDC-GIC  67 Level     KRYO L3-SCU ECC FAULTIRQ\n111:        601          0          0          0          0          0          0          0   PDC-GIC 297 Edge      1d84000.ufshc\n112:        881          0          0          0          0          0          0          0   PDC-GIC  37 Level     apps_rsc\n113:          0          0          0          0          0          0          0          0   PDC-GIC 380 Level     qsee_irq\n114:          0          0          0          0          0          0          0          0   PDC-GIC 381 Level     qsee_irq\n115:         11          0          0          0          0          0          0          0   PDC-GIC 421 Edge      qcom,qmp-aop\n116:          0          0          0          0          0          0          0          0   PDC-GIC 401 Edge      qcom,qmp-npu-low\n117:          0          0          0          0          0          0          0          0   PDC-GIC 402 Edge      qcom,qmp-npu-high\n118:          0          0          0          0          0          0          0          0   PDC-GIC 304 Level     sps\n119:          0          0          0          0          0          0          0          0   PDC-GIC 538 Level     tsens-upper-lower\n120:          0          0          0          0          0          0          0          0   PDC-GIC 540 Level     tsens-critical\n121:          0          0          0          0          0          0          0          0   PDC-GIC 539 Level     tsens-upper-lower\n122:          0          0          0          0          0          0          0          0   PDC-GIC 541 Level     tsens-critical\n123:          0          0          0          0          0          0          0          0   PDC-GIC 195 Level     ngd_slim_irq\n125:          0          0          0          0          0          0          0          0   PDC-GIC 323 Level     ngd_slim_irq\n190:          0          0          0          0          0          0          0          0  msmgpio-dc   8 Edge      TE_GPIO\n210:          0          0          0          0          0          0          0          0  msmgpio-dc  37 Edge      msm_pcie_wake\n222:          2          0          0          0          0          0          0          0  msmgpio-dc  47 Level     nq-nci\n244:          0          0          0          0          0          0          0          0  msmgpio-dc  68 Edge      asustek_lid2_isr\n260:          0          0          0          0          0          0          0          0  msmgpio-dc  88 Edge      accy_therm_alert\n270:          0          0          0          0          0          0          0          0  msmgpio-dc  96 Edge      top_vib_trig_interrupt\n272:          0          0          0          0          0          0          0          0  msmgpio-dc  97 Edge      volume_down\n276:          1          0          0          0          0          0          0          0  msmgpio-dc 103 Edge      type_c_port0-IRQ\n288:          0          0          0          0          0          0          0          0  msmgpio-dc 117 Level     ALSPS_SENSOR_INT\n292:          0          0          0          0          0          0          0          0  msmgpio-dc 119 Edge      bot_vib_trig_interrupt\n294:          0          0          0          0          0          0          0          0  msmgpio-dc 120 Edge      therm_alert\n296:          0          0          0          0          0          0          0          0  msmgpio-dc 121 Edge      asustek_lid_isr\n308:          0          0          0          0          0          0          0          0  msmgpio-dc 132 Level     pca9468\n312:          0          0          0          0          0          0          0          0  msmgpio-dc 134 Edge      volume_up\n335:          0          0          0          0          0          0          0          0     GICv3 172 Edge      int_global_int\n410:          0          0          0          0          0          0          0          0   PDC-GIC 483 Edge      smp2p\n411:          0          0          0          0          0          0          0          0   PDC-GIC 190 Edge      smp2p\n412:          0          0          0          0          0          0          0          0   PDC-GIC 204 Edge      smp2p\n413:          0          0          0          0          0          0          0          0   PDC-GIC 608 Edge      smp2p\n415:          0          0          0          0          0          0          0          0   PDC-GIC  97 Level     arm-smmu global fault\n418:          0          0          0          0          0          0          0          0   PDC-GIC 131 Level     arm-smmu-context-fault\n419:          0          0          0          0          0          0          0          0   PDC-GIC 132 Level     arm-smmu-context-fault\n420:          0          0          0          0          0          0          0          0   PDC-GIC 133 Level     arm-smmu-context-fault\n421:          0          0          0          0          0          0          0          0   PDC-GIC 134 Level     arm-smmu-context-fault\n422:          0          0          0          0          0          0          0          0   PDC-GIC 135 Level     arm-smmu-context-fault\n423:          0          0          0          0          0          0          0          0   PDC-GIC 136 Level     arm-smmu-context-fault\n424:          0          0          0          0          0          0          0          0   PDC-GIC 137 Level     arm-smmu-context-fault\n425:          0          0          0          0          0          0          0          0   PDC-GIC 138 Level     arm-smmu-context-fault\n426:          0          0          0          0          0          0          0          0   PDC-GIC 139 Level     arm-smmu-context-fault\n427:          0          0          0          0          0          0          0          0   PDC-GIC 140 Level     arm-smmu-context-fault\n428:          0          0          0          0          0          0          0          0   PDC-GIC 141 Level     arm-smmu-context-fault\n429:          0          0          0          0          0          0          0          0   PDC-GIC 142 Level     arm-smmu-context-fault\n430:          0          0          0          0          0          0          0          0   PDC-GIC 143 Level     arm-smmu-context-fault\n431:          0          0          0          0          0          0          0          0   PDC-GIC 144 Level     arm-smmu-context-fault\n432:          0          0          0          0          0          0          0          0   PDC-GIC 145 Level     arm-smmu-context-fault\n433:          0          0          0          0          0          0          0          0   PDC-GIC 146 Level     arm-smmu-context-fault\n434:          0          0          0          0          0          0          0          0   PDC-GIC 147 Level     arm-smmu-context-fault\n435:          0          0          0          0          0          0          0          0   PDC-GIC 148 Level     arm-smmu-context-fault\n436:          0          0          0          0          0          0          0          0   PDC-GIC 149 Level     arm-smmu-context-fault\n437:          0          0          0          0          0          0          0          0   PDC-GIC 150 Level     arm-smmu-context-fault\n438:          0          0          0          0          0          0          0          0   PDC-GIC 213 Level     arm-smmu-context-fault\n439:          0          0          0          0          0          0          0          0   PDC-GIC 214 Level     arm-smmu-context-fault\n440:          0          0          0          0          0          0          0          0   PDC-GIC 215 Level     arm-smmu-context-fault\n441:          0          0          0          0          0          0          0          0   PDC-GIC 216 Level     arm-smmu-context-fault\n442:          0          0          0          0          0          0          0          0   PDC-GIC 217 Level     arm-smmu-context-fault\n443:          0          0          0          0          0          0          0          0   PDC-GIC 218 Level     arm-smmu-context-fault\n444:          0          0          0          0          0          0          0          0   PDC-GIC 219 Level     arm-smmu-context-fault\n445:          0          0          0          0          0          0          0          0   PDC-GIC 220 Level     arm-smmu-context-fault\n446:          0          0          0          0          0          0          0          0   PDC-GIC 221 Level     arm-smmu-context-fault\n447:          0          0          0          0          0          0          0          0   PDC-GIC 222 Level     arm-smmu-context-fault\n448:          0          0          0          0          0          0          0          0   PDC-GIC 223 Level     arm-smmu-context-fault\n449:          0          0          0          0          0          0          0          0   PDC-GIC 224 Level     arm-smmu-context-fault\n450:          0          0          0          0          0          0          0          0   PDC-GIC 347 Level     arm-smmu-context-fault\n451:          0          0          0          0          0          0          0          0   PDC-GIC 348 Level     arm-smmu-context-fault\n452:          0          0          0          0          0          0          0          0   PDC-GIC 349 Level     arm-smmu-context-fault\n453:          0          0          0          0          0          0          0          0   PDC-GIC 350 Level     arm-smmu-context-fault\n454:          0          0          0          0          0          0          0          0   PDC-GIC 351 Level     arm-smmu-context-fault\n455:          0          0          0          0          0          0          0          0   PDC-GIC 352 Level     arm-smmu-context-fault\n456:          0          0          0          0          0          0          0          0   PDC-GIC 353 Level     arm-smmu-context-fault\n457:          0          0          0          0          0          0          0          0   PDC-GIC 354 Level     arm-smmu-context-fault\n458:          0          0          0          0          0          0          0          0   PDC-GIC 355 Level     arm-smmu-context-fault\n459:          0          0          0          0          0          0          0          0   PDC-GIC 356 Level     arm-smmu-context-fault\n460:          0          0          0          0          0          0          0          0   PDC-GIC 357 Level     arm-smmu-context-fault\n461:          0          0          0          0          0          0          0          0   PDC-GIC 358 Level     arm-smmu-context-fault\n462:          0          0          0          0          0          0          0          0   PDC-GIC 359 Level     arm-smmu-context-fault\n496:         38          0          0          0          0          0          0          0   PDC-GIC 634 Level     i2c_geni\n497:         24          0          0          0          0          0          0          0   PDC-GIC 637 Level     i2c_geni\n498:          4          0          0          0          0          0          0          0   PDC-GIC 640 Level     i2c_geni\n499:          0          0          0          0          0          0          0          0   PDC-GIC 636 Level     spi_geni\n502:          0          0          0          0          0          0          0          0   PDC-GIC 386 Level     i2c_geni\n503:          0          0          0          0          0          0          0          0   PDC-GIC 387 Level     i2c_geni\n504:         17          0          0          0          0          0          0          0   PDC-GIC 388 Level     i2c_geni\n505:          3          0          0          0          0          0          0          0   PDC-GIC 405 Level     i2c_geni\n506:        165          0          0          0          0          0          0          0   PDC-GIC 615 Level     i2c_geni\n507:         17          0          0          0          0          0          0          0   PDC-GIC 616 Level     i2c_geni\n508:          0          0          0          0          0          0          0          0   PDC-GIC 396 Edge      error_irq\n509:          0          0          0          0          0          0          0          0   PDC-GIC 398 Edge      wdg_bite_irq\n510:          0          0          0          0          0          0          0          0   PDC-GIC 400 Level     ipc_irq\n511:          0          0          0          0          0          0          0          0   PDC-GIC 206 Level     msm_vidc\n512:          0          0          0          0          0          0          0          0   PDC-GIC 521 Edge      dp_hs_phy_irq\n513:          1          0          0          0          0          0          0          0   PDC-GIC 162 Edge      pwr_event_irq\n514:          0          0          0          0          0          0          0          0   PDC-GIC 518 Level     ss_phy_irq\n515:          0          0          0          0          0          0          0          0   PDC-GIC 520 Edge      dm_hs_phy_irq\n516:          0          0          0          0          0          0          0          0   PDC-GIC 523 Edge      dp_hs_phy_irq\n517:          1          0          0          0          0          0          0          0   PDC-GIC 167 Edge      pwr_event_irq\n518:          0          0          0          0          0          0          0          0   PDC-GIC 519 Level     ss_phy_irq\n519:          0          0          0          0          0          0          0          0   PDC-GIC 522 Edge      dm_hs_phy_irq\n520:          0          0          0          0          0          0          0          0   PDC-GIC 332 Level     kgsl-3d0\n521:          0          0          0          0          0          0          0          0   PDC-GIC 336 Level     HFI\n522:          0          0          0          0          0          0          0          0   PDC-GIC 337 Level     GMU\n523:          0          0          0          0          0          0          0          0   PDC-GIC 706 Level     arm-smmu global fault\n524:          0          0          0          0          0          0          0          0   PDC-GIC 713 Level     arm-smmu-context-fault\n525:          0          0          0          0          0          0          0          0   PDC-GIC 714 Level     arm-smmu-context-fault\n526:          0          0          0          0          0          0          0          0   PDC-GIC 715 Level     arm-smmu-context-fault\n532:          0          0          0          0          0          0          0          0   PDC-GIC  64 Level     limits_sensor-00\n533:          0          0          0          0          0          0          0          0   PDC-GIC  65 Level     limits_sensor-01\n534:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n535:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n536:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n537:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n538:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n539:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n540:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n541:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n542:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n543:          0          0          0          0          0          0          0          0     smp2p   2 Edge      slpi\n544:          0          0          0          0          0          0          0          0     smp2p   0 Edge      slpi\n545:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n546:          0          0          0          0          0          0          0          0     smp2p   3 Edge      slpi\n547:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n548:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n549:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n550:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n551:          0          0          0          0          0          0          0          0      qsee  32 Level     qsee_ipc_irq_spss\n552:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n553:          0          0          0          0          0          0          0          0   PDC-GIC 165 Edge      dwc3\n555:          0          0          0          0          0          0          0          0   PDC-GIC 170 Edge      dwc3\n556:          0          0          0          0          0          0          0          0  pmic_arb 101777663 Edge      qpnp_rtc_alarm\n557:          0          0          0          0          0          0          0          0  pmic_arb 603980059 Edge      soc-update\n558:          0          0          0          0          0          0          0          0  pmic_arb 604045595 Edge      soc-ready\n559:          0          0          0          0          0          0          0          0  pmic_arb 604111131 Edge      bsoc-delta\n560:          0          0          0          0          0          0          0          0  pmic_arb 604176667 Edge      msoc-delta\n561:          0          0          0          0          0          0          0          0  pmic_arb 604242203 Edge      msoc-low\n562:          0          0          0          0          0          0          0          0  pmic_arb 604307739 Edge      msoc-empty\n563:          0          0          0          0          0          0          0          0  pmic_arb 604373275 Edge      msoc-high\n564:          0          0          0          0          0          0          0          0  pmic_arb 604438811 Edge      msoc-full\n565:          0          0          0          0          0          0          0          0  pmic_arb 605028636 Edge      vbatt-low\n566:          0          0          0          0          0          0          0          0  pmic_arb 605094172 Edge      vbatt-pred-delta\n567:          0          0          0          0          0          0          0          0  pmic_arb 605225244 Edge      esr-delta\n568:          0          0          0          0          0          0          0          0  pmic_arb 606077213 Edge      batt-missing\n569:          0          0          0          0          0          0          0          0  pmic_arb 606142749 Edge      batt-id\n570:          0          0          0          0          0          0          0          0  pmic_arb 606208285 Edge      batt-temp-delta\n571:          0          0          0          0          0          0          0          0  pmic_arb 606273821 Edge      batt-temp-hot\n572:          0          0          0          0          0          0          0          0  pmic_arb 606339357 Edge      batt-temp-cold\n573:          0          0          0          0          0          0          0          0  pmic_arb 607125790 Edge      ima-rdy\n574:          0          0          0          0          0          0          0          0  pmic_arb 607191326 Edge      ima-xcp\n575:          0          0          0          0          0          0          0          0  pmic_arb 607256862 Edge      dma-xcp\n576:         47          0          0          0          0          0          0          0  pmic_arb 607322398 Edge      dma-grant\n577:          0          0          0          0          0          0          0          0  pmic_arb 607387934 Edge      mem-attn\n578:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n579:          0          0          0          0          0          0          0          0  pmic_arb 553648394 Edge      chgr-error\n580:          0          0          0          0          0          0          0          0  pmic_arb 553713930 Edge      chg-state-change\n586:          0          0          0          0          0          0          0          0  pmic_arb 554696971 Edge      otg-fail\n589:          0          0          0          0          0          0          0          0  pmic_arb 554959115 Edge      high-duty-cycle\n590:          0          0          0          0          0          0          0          0  pmic_arb 555024651 Edge      input-current-limiting\n592:          0          0          0          0          0          0          0          0  pmic_arb 555155723 Edge      switcher-power-ok\n593:          0          0          0          0          0          0          0          0  pmic_arb 555745548 Edge      bat-temp\n594:          0          0          0          0          0          0          0          0  pmic_arb 555876620 Edge      bat-ov\n595:          0          0          0          0          0          0          0          0  pmic_arb 555942156 Edge      bat-low\n596:          0          0          0          0          0          0          0          0  pmic_arb 556007692 Edge      bat-therm-or-id-missing\n597:          0          0          0          0          0          0          0          0  pmic_arb 556073228 Edge      bat-terminal-missing\n600:          0          0          0          0          0          0          0          0  pmic_arb 556794125 Edge      usbin-collapse\n601:          0          0          0          0          0          0          0          0  pmic_arb 556859661 Edge      usbin-vashdn\n602:          0          0          0          0          0          0          0          0  pmic_arb 556925197 Edge      usbin-uv\n603:          0          0          0          0          0          0          0          0  pmic_arb 556990733 Edge      usbin-ov\n604:          0          0          0          0          0          0          0          0  pmic_arb 557056269 Edge      usbin-plugin\n606:          0          0          0          0          0          0          0          0  pmic_arb 557187341 Edge      usbin-src-change\n607:          0          0          0          0          0          0          0          0  pmic_arb 557252877 Edge      usbin-icl-change\n609:          0          0          0          0          0          0          0          0  pmic_arb 557973774 Edge      dcin-uv\n610:          0          0          0          0          0          0          0          0  pmic_arb 558039310 Edge      dcin-ov\n611:          0          0          0          0          0          0          0          0  pmic_arb 558104846 Edge      dcin-plugin\n613:          0          0          0          0          0          0          0          0  pmic_arb 558235918 Edge      dcin-pon\n614:          0          0          0          0          0          0          0          0  pmic_arb 558301454 Edge      dcin-en\n615:          0          0          0          0          0          0          0          0  pmic_arb 558891279 Edge      typec-or-rid-detect-change\n617:          0          0          0          0          0          0          0          0  pmic_arb 559022351 Edge      typec-cc-state-change\n618:          0          0          0          0          0          0          0          0  pmic_arb 559087887 Edge      typec-vconn-oc\n620:          0          0          0          0          0          0          0          0  pmic_arb 559218959 Edge      typec-attach-detach\n621:          0          0          0          0          0          0          0          0  pmic_arb 559284495 Edge      typec-legacy-cable-detect\n623:          0          0          0          0          0          0          0          0  pmic_arb 559939856 Edge      wdog-snarl\n624:          0          0          0          0          0          0          0          0  pmic_arb 560005392 Edge      wdog-bark\n626:          0          0          0          0          0          0          0          0  pmic_arb 560136464 Edge      aicl-done\n627:          0          0          0          0          0          0          0          0  pmic_arb 560202000 Edge      smb-en\n628:          0          0          0          0          0          0          0          0  pmic_arb 560333072 Edge      temp-change\n630:          0          0          0          0          0          0          0          0       sde  12 Edge      dp_display_isr\n631:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\nIPI0:        77         59         59         59         59         56         55         54       Rescheduling interrupts\nIPI1:         0          5          5          5          5          5          5          5       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:       130          4          5          4          6          4          4          4       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8150ac/new/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [wk:kernfs_noti]\n    5 root      0:00 [wk:register_co]\n    6 root      0:00 [wk:socket_read]\n    7 root      0:00 [mm_percpu_wq]\n    8 root      0:00 [ksoftirqd/0]\n    9 root      0:00 [rcu_preempt]\n   10 root      0:00 [rcu_sched]\n   11 root      0:00 [rcu_bh]\n   12 root      0:00 [rcuop/0]\n   13 root      0:00 [rcuos/0]\n   14 root      0:00 [rcuob/0]\n   15 root      0:00 [migration/0]\n   16 root      0:00 [cpuhp/0]\n   17 root      0:00 [cpuhp/1]\n   18 root      0:00 [migration/1]\n   19 root      0:00 [ksoftirqd/1]\n   20 root      0:00 [wk:vmstat_upda]\n   21 root      0:00 [kworker/1:0H]\n   22 root      0:00 [rcuop/1]\n   23 root      0:00 [rcuos/1]\n   24 root      0:00 [rcuob/1]\n   25 root      0:00 [cpuhp/2]\n   26 root      0:00 [migration/2]\n   27 root      0:00 [ksoftirqd/2]\n   29 root      0:00 [kworker/2:0H]\n   30 root      0:00 [rcuop/2]\n   31 root      0:00 [rcuos/2]\n   32 root      0:00 [rcuob/2]\n   33 root      0:00 [cpuhp/3]\n   34 root      0:00 [migration/3]\n   35 root      0:00 [ksoftirqd/3]\n   36 root      0:00 [wk:wq_barrier_]\n   37 root      0:00 [kworker/3:0H]\n   38 root      0:00 [rcuop/3]\n   39 root      0:00 [rcuos/3]\n   40 root      0:00 [rcuob/3]\n   41 root      0:00 [cpuhp/4]\n   42 root      0:00 [migration/4]\n   43 root      0:00 [ksoftirqd/4]\n   45 root      0:00 [wk:register_co]\n   46 root      0:00 [rcuop/4]\n   47 root      0:00 [rcuos/4]\n   48 root      0:00 [rcuob/4]\n   49 root      0:00 [cpuhp/5]\n   50 root      0:00 [migration/5]\n   51 root      0:00 [ksoftirqd/5]\n   53 root      0:00 [kworker/5:0H]\n   54 root      0:00 [rcuop/5]\n   55 root      0:00 [rcuos/5]\n   56 root      0:00 [rcuob/5]\n   57 root      0:00 [cpuhp/6]\n   58 root      0:00 [migration/6]\n   59 root      0:00 [ksoftirqd/6]\n   61 root      0:00 [kworker/6:0H]\n   62 root      0:00 [rcuop/6]\n   63 root      0:00 [rcuos/6]\n   64 root      0:00 [rcuob/6]\n   65 root      0:00 [cpuhp/7]\n   66 root      0:00 [migration/7]\n   67 root      0:00 [ksoftirqd/7]\n   69 root      0:00 [kworker/7:0H]\n   70 root      0:00 [rcuop/7]\n   71 root      0:00 [rcuos/7]\n   72 root      0:00 [rcuob/7]\n   73 root      0:00 [kdevtmpfs]\n   74 root      0:00 [netns]\n   76 root      0:00 [kworker/u17:0]\n   77 root      0:00 [ipa_usb_wq]\n   78 root      0:00 [wk:socket_read]\n   79 root      0:00 [msm_watchdog]\n   80 root      0:00 [spi_wdsp]\n   81 root      0:00 [qmp_aop]\n   82 root      0:00 [qmp_npu_qmp_low]\n   83 root      0:00 [qmp_npu_qmp_hig]\n   84 root      0:00 [oom_reaper]\n   85 root      0:00 [writeback]\n   86 root      0:00 [kcompactd0]\n   87 root      0:00 [crypto]\n   88 root      0:00 [kblockd]\n   89 root      0:00 [irq/415-arm-smm]\n   90 root      0:00 [irq/523-arm-smm]\n   91 root      0:00 [pd_dbg_info]\n   92 root      0:00 [irq/119-tsens-u]\n   93 root      0:00 [irq/120-tsens-c]\n   94 root      0:00 [irq/121-tsens-u]\n   95 root      0:00 [irq/122-tsens-c]\n   96 root      0:00 [edac-poller]\n   97 root      0:00 [system]\n   98 root      0:00 [ipa_power_mgmt]\n   99 root      0:00 [transport_power]\n  100 root      0:00 [ipa_pm_activate]\n  101 root      0:00 [devfreq_wq]\n  102 root      0:00 [cfg80211]\n  103 root      0:00 [irq/92-qpnp_lcd]\n  141 root      0:00 [ASUSEVTLOG_WORK]\n  142 root      0:00 [ASUSERCLOG_WORK]\n  143 root      0:00 [kauditd]\n  144 root      0:00 [kswapd0]\n  145 root      0:00 [ecryptfs-kthrea]\n  187 root      0:00 [irq/96-wled_ovp]\n  188 root      0:00 [irq/98-wled_fla]\n  189 root      0:00 [irq/97-wled_pre]\n  190 root      0:00 [irq/419-arm-smm]\n  191 root      0:00 [irq/420-arm-smm]\n  192 root      0:00 [irq/421-arm-smm]\n  193 root      0:00 [irq/410-smp2p]\n  194 root      0:00 [irq/411-smp2p]\n  195 root      0:00 [irq/412-smp2p]\n  196 root      0:00 [irq/413-smp2p]\n  197 root      0:00 [irq/422-arm-smm]\n  198 root      0:00 [mem_share_svc]\n  200 root      0:00 [cdsprm-wq]\n  201 root      0:00 [cdsprm-wq-delay]\n  202 root      0:00 [irq/423-arm-smm]\n  203 root      0:00 [okl4vtty]\n  204 root      0:00 [hwrng]\n  206 root      0:00 [diag_real_time_]\n  207 root      0:00 [diag_wq]\n  209 root      0:00 [DIAG_USB_diag]\n  210 root      0:00 [diag_cntl_wq]\n  211 root      0:00 [diag_dci_wq]\n  212 root      0:00 [MODEM_CNTL]\n  213 root      0:00 [MODEM_DATA]\n  214 root      0:00 [MODEM_CMD]\n  215 root      0:00 [MODEM_DCI]\n  216 root      0:00 [MODEM_DCI_CMD]\n  217 root      0:00 [LPASS_CNTL]\n  218 root      0:00 [LPASS_DATA]\n  219 root      0:00 [LPASS_CMD]\n  220 root      0:00 [LPASS_DCI]\n  221 root      0:00 [LPASS_DCI_CMD]\n  222 root      0:00 [WCNSS_CNTL]\n  223 root      0:00 [WCNSS_DATA]\n  224 root      0:00 [WCNSS_CMD]\n  225 root      0:00 [WCNSS_DCI]\n  226 root      0:00 [WCNSS_DCI_CMD]\n  227 root      0:00 [SENSORS_CNTL]\n  228 root      0:00 [SENSORS_DATA]\n  229 root      0:00 [SENSORS_CMD]\n  230 root      0:00 [SENSORS_DCI]\n  231 root      0:00 [SENSORS_DCI_CMD]\n  232 root      0:00 [DIAG_CTRL]\n  233 root      0:00 [DIAG_DATA]\n  234 root      0:00 [DIAG_CMD]\n  235 root      0:00 [DIAG_DCI_DATA]\n  236 root      0:00 [DIAG_DCI_CMD]\n  237 root      0:00 [CDSP_CNTL]\n  238 root      0:00 [CDSP_DATA]\n  239 root      0:00 [CDSP_CMD]\n  240 root      0:00 [CDSP_DCI]\n  241 root      0:00 [CDSP_DCI_CMD]\n  242 root      0:00 [DIAG_RPMSG_DIAG]\n  243 root      0:00 [DIAG_RPMSG_DIAG]\n  244 root      0:00 [DIAG_RPMSG_DIAG]\n  245 root      0:00 [DIAG_RPMSG_DIAG]\n  246 root      0:00 [DIAG_RPMSG_DIAG]\n  247 root      0:00 [wk:socket_read]\n  248 root      0:00 [diag_mhi_MDM]\n  250 root      0:00 [wk:socket_read]\n  251 root      0:00 [wk:socket_read]\n  252 root      0:00 [DIAG_USB_diag_m]\n  253 root      0:00 [wk:socket_read]\n  254 root      0:00 [diag_mhi_MDM_DC]\n  256 root      0:00 [diag_dci_MDM_DC]\n  257 root      0:00 [kgsl-workqueue]\n  258 root      0:00 [kgsl-mementry]\n  259 root      0:00 [kgsl_worker_thr]\n  260 root      0:00 [irq/524-arm-smm]\n  261 root      0:00 [irq/525-arm-smm]\n  262 root      0:00 [irq/526-arm-smm]\n  263 root      0:00 [kgsl-events]\n  264 root      0:00 [kgsl_devfreq_wq]\n  265 root      0:00 [qseecom-unreg-l]\n  266 root      0:00 [memory_wq]\n  268 root      0:00 [irq/424-arm-smm]\n  269 root      0:00 [irq/425-arm-smm]\n  270 root      0:00 [irq/426-arm-smm]\n  271 root      0:00 [qcrypto_seq_res]\n  272 root      0:00 [irq/427-arm-smm]\n  293 root      0:00 [scsi_eh_0]\n  294 root      0:00 [scsi_tmf_0]\n  295 root      0:00 [ufs_pm_qos_0]\n  296 root      0:00 [ufs_clk_gating_]\n  297 root      0:00 [ice-set-key]\n  298 root      0:00 [ufs_clkscaling_]\n  299 root      0:00 [irq/428-arm-smm]\n  300 root      0:00 [spi0]\n  301 root      0:00 [bond0]\n  313 root      0:00 [irq/429-arm-smm]\n  314 root      0:00 [k_ipa_usb]\n  318 root      0:00 [irq/430-arm-smm]\n  320 root      0:00 [wk:cpuset_hotp]\n  321 root      0:00 [wk:wq_barrier_]\n  323 root      0:00 [wk:wq_barrier_]\n  324 root      0:00 [wk:wq_barrier_]\n  325 root      0:00 [wk:wq_barrier_]\n  326 root      0:00 [wk:cpuset_hotp]\n  327 root      0:00 [wk:ufs_qcom_pm]\n  328 root      0:00 [wk:ufs_qcom_pm]\n  329 root      0:03 [wk:def_work_fn]\n  333 root      0:00 [gts_wq]\n  334 root      0:00 [goodix_suspend_]\n  335 root      0:00 [tcpc_timer_type]\n  336 root      0:00 [pps_request_tas]\n  337 root      0:00 [type_c_port0]\n  338 root      0:00 [irq/431-arm-smm]\n  339 root      0:00 [npu_wq]\n  340 root      0:00 [msm_vidc_worker]\n  341 root      0:00 [pm_workerq_venu]\n  342 root      0:00 [irq/432-arm-smm]\n  343 root      0:00 [irq/433-arm-smm]\n  344 root      0:00 [irq/434-arm-smm]\n  345 root      0:00 [irq/435-arm-smm]\n  346 root      0:00 [cam-cpas]\n  347 root      0:00 [qcom,cam_virtua]\n  348 root      0:00 [irq/436-arm-smm]\n  349 root      0:00 [qcom,cam170-cpa]\n  350 root      0:00 [irq/437-arm-smm]\n  351 root      0:00 [cam_cci_wq]\n  352 root      0:00 [cam_cci_wq]\n  353 root      0:00 [cam_cci_wq]\n  354 root      0:00 [cam_cci_wq]\n  355 root      0:00 [irq/438-arm-smm]\n  356 root      0:00 [irq/439-arm-smm]\n  357 root      0:00 [irq/440-arm-smm]\n  358 root      0:00 [irq/441-arm-smm]\n  359 root      0:00 [irq/442-arm-smm]\n  360 root      0:00 [dmx_tsif0]\n  361 root      0:00 [dmx_tsif1]\n  362 root      0:00 [irq/557-soc-upd]\n  363 root      0:00 [irq/558-soc-rea]\n  364 root      0:00 [irq/559-bsoc-de]\n  365 root      0:00 [irq/560-msoc-de]\n  366 root      0:00 [irq/561-msoc-lo]\n  367 root      0:00 [irq/562-msoc-em]\n  368 root      0:00 [irq/563-msoc-hi]\n  369 root      0:00 [irq/564-msoc-fu]\n  370 root      0:00 [irq/565-vbatt-l]\n  371 root      0:00 [irq/566-vbatt-p]\n  372 root      0:00 [irq/567-esr-del]\n  373 root      0:00 [irq/568-batt-mi]\n  374 root      0:00 [irq/569-batt-id]\n  375 root      0:00 [irq/570-batt-te]\n  376 root      0:00 [irq/571-batt-te]\n  377 root      0:00 [irq/572-batt-te]\n  378 root      0:00 [irq/573-ima-rdy]\n  379 root      0:00 [irq/574-ima-xcp]\n  380 root      0:00 [irq/575-dma-xcp]\n  381 root      0:00 [irq/576-dma-gra]\n  382 root      0:00 [irq/577-mem-att]\n  383 root      0:00 [irq/44-ptrain-d]\n  385 root      0:00 [irq/532-limits_]\n  386 root      0:00 [wk:blk_timeout]\n  387 root      0:00 [irq/533-limits_]\n  388 root      0:00 [kworker/4:1H]\n  389 root      0:00 [irq/70-bcl-lvl0]\n  390 root      0:00 [irq/71-bcl-lvl1]\n  391 root      0:00 [irq/72-bcl-lvl2]\n  392 root      0:00 [irq/88-bcl-lvl0]\n  393 root      0:00 [irq/89-bcl-lvl1]\n  394 root      0:00 [irq/90-bcl-lvl2]\n  395 root      0:00 [dm_bufio_cache]\n  396 root      0:00 [irq/110-KRYO L3]\n  397 root      0:00 [snt8100fsr-queu]\n  398 root      0:00 [snt8100fsr-asus]\n  399 root      0:00 [ALSPS_FRGB_wq]\n  400 root      0:00 [ALSPS_FRGB_dela]\n  401 root      0:00 [irq/288-ALSPS_S]\n  402 root      0:00 [top_vib_rtp_wor]\n  403 root      0:00 [bot_vib_rtp_wor]\n  404 root      0:00 [top_vib_rtp_pla]\n  405 root      0:00 [bot_vib_rtp_pla]\n  406 root      0:00 [irq/443-arm-smm]\n  407 root      0:00 [uaudio_svc]\n  408 root      0:00 [ipv6_addrconf]\n  421 root      0:00 [irq/444-arm-smm]\n  424 root      0:00 [irq/294-therm_a]\n  425 root      0:00 [irq/260-accy_th]\n  427 root      0:00 [irq/579-chgr-er]\n  428 root      0:00 [irq/580-chg-sta]\n  429 root      0:00 [irq/586-otg-fai]\n  430 root      0:00 [irq/589-high-du]\n  432 root      0:00 [irq/590-input-c]\n  433 root      0:00 [irq/592-switche]\n  434 root      0:00 [irq/593-bat-tem]\n  435 root      0:00 [irq/594-bat-ov]\n  436 root      0:00 [irq/595-bat-low]\n  437 root      0:00 [irq/596-bat-the]\n  438 root      0:00 [irq/597-bat-ter]\n  440 root      0:00 [irq/600-usbin-c]\n  441 root      0:00 [irq/601-usbin-v]\n  442 root      0:00 [irq/602-usbin-u]\n  443 root      0:00 [irq/603-usbin-o]\n  444 root      0:00 [irq/604-usbin-p]\n  445 root      0:00 [irq/606-usbin-s]\n  446 root      0:00 [irq/607-usbin-i]\n  448 root      0:00 [irq/609-dcin-uv]\n  449 root      0:00 [irq/610-dcin-ov]\n  450 root      0:00 [irq/611-dcin-pl]\n  451 root      0:00 [irq/613-dcin-po]\n  452 root      0:00 [irq/614-dcin-en]\n  453 root      0:00 [irq/615-typec-o]\n  454 root      0:00 [irq/617-typec-c]\n  456 root      0:00 [irq/618-typec-v]\n  457 root      0:00 [irq/620-typec-a]\n  458 root      0:00 [irq/621-typec-l]\n  459 root      0:00 [irq/623-wdog-sn]\n  460 root      0:00 [irq/624-wdog-ba]\n  461 root      0:00 [irq/626-aicl-do]\n  462 root      0:00 [irq/627-smb-en]\n  464 root      0:00 [irq/628-temp-ch]\n  465 root      0:00 [irq/58-qcom,tem]\n  466 root      0:00 [irq/43-qcom,tem]\n  467 root      0:00 [irq/75-qcom,tem]\n  468 root      0:00 [irq/61-thr-int-]\n  469 root      0:00 [irq/56-thr-int-]\n  470 root      0:00 [irq/91-thr-int-]\n  478 root      0:00 [k_sm_usb]\n  479 root      0:00 [irq/517-pwr_eve]\n  480 root      0:00 [irq/516-dp_hs_p]\n  481 root      0:00 [irq/519-dm_hs_p]\n  482 root      0:00 [irq/518-ss_phy_]\n  483 root      0:00 [irq/445-arm-smm]\n  484 root      0:00 [irq/62-sig-tx]\n  485 root      0:00 [irq/63-sig-rx]\n  486 root      0:00 [irq/308-pca9468]\n  487 root      0:00 [k_sm_usb]\n  488 root      0:00 [irq/513-pwr_eve]\n  489 root      0:00 [irq/512-dp_hs_p]\n  490 root      0:00 [irq/515-dm_hs_p]\n  491 root      0:00 [irq/514-ss_phy_]\n  492 root      0:00 [irq/446-arm-smm]\n  493 root      0:00 [usb_bam_wq]\n  494 root      0:00 [core_ctl/0]\n  495 root      0:00 [core_ctl/4]\n  496 root      0:00 [core_ctl/7]\n  497 root      0:00 [rq_stats]\n  498 root      0:00 [msm_perf:events]\n  499 root      0:00 [irq/447-arm-smm]\n  500 root      0:00 [irq/448-arm-smm]\n  501 root      0:00 [irq/449-arm-smm]\n  502 root      0:00 [irq/450-arm-smm]\n  503 root      0:00 [irq/451-arm-smm]\n  504 root      0:00 [irq/452-arm-smm]\n  505 root      0:00 [irq/453-arm-smm]\n  506 root      0:00 [irq/454-arm-smm]\n  507 root      0:00 [irq/455-arm-smm]\n  508 root      0:00 [irq/456-arm-smm]\n  509 root      0:00 [irq/457-arm-smm]\n  510 root      0:00 [irq/458-arm-smm]\n  511 root      0:00 [irq/459-arm-smm]\n  512 root      0:00 [irq/460-arm-smm]\n  513 root      0:00 [irq/461-arm-smm]\n  514 root      0:00 [drm_dp]\n  515 root      0:00 [display_wq]\n  516 root      0:00 [irq/418-arm-smm]\n  517 root      0:00 [irq/462-arm-smm]\n  518 root      0:00 [sdm_dp_audio_no]\n  519 root      0:00 [hdcp_1x_1]\n  520 root      0:00 [hdcp_tz_lib]\n  521 root      0:00 [dp_hdcp2p2]\n  522 root      0:00 [crtc_commit:137]\n  523 root      0:00 [crtc_event:137]\n  524 root      0:00 [crtc_commit:191]\n  525 root      0:00 [crtc_event:191]\n  526 root      0:00 [crtc_commit:199]\n  527 root      0:00 [crtc_event:199]\n  528 root      0:00 [crtc_commit:207]\n  529 root      0:00 [crtc_event:207]\n  530 root      0:00 [crtc_commit:215]\n  531 root      0:00 [crtc_event:215]\n  532 root      0:00 [pp_event]\n  533 root      0:00 [rot_commitq_0_0]\n  534 root      0:00 [rot_commitq_0_1]\n  535 root      0:00 [rot_doneq_0_0]\n  536 root      0:00 [rot_doneq_0_1]\n  537 root      0:00 [rot_fenceq_0_0]\n  538 root      0:00 [rot_fenceq_0_1]\n  539 root      0:00 [rot_fenceq_0_2]\n  540 root      0:00 [rot_fenceq_0_3]\n  541 root      0:00 [rot_fenceq_0_4]\n  542 root      0:00 [rot_fenceq_0_5]\n  543 root      0:00 [rot_fenceq_0_6]\n  544 root      0:00 [rot_fenceq_0_7]\n  545 root      0:00 [rot_fenceq_0_8]\n  546 root      0:00 [rot_fenceq_0_9]\n  547 root      0:00 [rot_fenceq_0_10]\n  548 root      0:00 [rot_fenceq_0_11]\n  549 root      0:00 [rot_fenceq_0_12]\n  550 root      0:00 [rot_fenceq_0_13]\n  551 root      0:00 [rot_fenceq_0_14]\n  552 root      0:00 [rot_fenceq_0_15]\n  553 root      0:00 [sb-1]\n  554 root      0:00 [ngd_rx_thread1]\n  555 root      0:00 [ngd_notify_sl1]\n  556 root      0:00 [sb-3]\n  557 root      0:00 [ngd_rx_thread3]\n  558 root      0:00 [ngd_notify_sl3]\n  559 root      0:00 [close5v_by_susp]\n  560 root      0:00 [open5v_by_suspe]\n  561 root      0:00 [irq/95-qpnp_fla]\n  562 root      0:00 [irq/94-qpnp_fla]\n  563 root      0:00 [irq/93-qpnp_fla]\n  564 root      0:00 [tcpc_event_type]\n  572 root      0:00 [kworker/2:2]\n  573 root      0:00 [kworker/3:2]\n  574 root      0:00 [wk:cpuset_hotp]\n  575 root      0:00 [kworker/5:2]\n  576 root      0:00 [kworker/6:2]\n  577 root      0:00 [wk:cpuset_hotp]\n  627 root      0:02 [wk:kernfs_noti]\n  699 root      0:00 [wk:kernfs_noti]\n  730 root      0:00 [wk:thermal_zon]\n  764 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm8150ac/new/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1113.957892,3.713192973333333,163.04057503599543,36.593708857326284,6.831775400922459,224.4454109\r\n1,403200,1497.221158,3.713346125992064,159.88404760616862,26.699176678614847,9.363584615709955,166.990872938\r\n1,499200,1853.554376,3.713049631410257,169.9539037615074,22.92466124771075,10.90528655139735,134.887523854\r\n1,576000,2138.909327,3.7133842482638886,185.86122811649994,21.725739122652325,11.50708837055572,116.892260655\r\n1,672000,2495.433357,3.713442495535714,175.58186504928992,17.592013966408313,14.210993720069302,100.192659199\r\n1,768000,2851.667655,3.7131089257812504,188.97183476098846,16.56826137364932,15.089090783997877,87.675824255\r\n1,844800,3136.999021,3.713303765388258,195.42580908427843,15.57579765094639,16.050542360815143,79.701845544\r\n1,940800,3493.18131,3.7129903380102043,199.7659716145774,14.298284386747412,17.484615163460898,71.575175047\r\n1,1036800,3849.885273,3.7132381105324073,203.40985345084368,13.210041411246198,18.92499744831729,64.942976887\r\n1,1113600,4134.965266,3.71315128053161,206.85217836273327,12.507445360125152,19.988094515049593,60.465620711\r\n1,1209600,4491.47518,3.713190459656085,219.76660246394542,12.233702309630573,20.435350940589412,55.666794556\r\n1,1305600,4848.343806,3.713498625919118,228.9905166541176,11.808853262767414,21.170556906506288,51.569180398\r\n1,1382400,5132.94323,3.7130665726273144,238.21357499393744,11.603328103660974,21.545542603515823,48.709768551\r\n1,1478400,5489.317788,3.713012573051948,247.75840720266658,11.284592621896858,22.15410058444598,45.546759641\r\n1,1555200,5774.605594,3.7130951607510285,246.499249330372,10.672626012797929,23.4244130451321,43.296789105\r\n1,1632000,6060.45914,3.7135166299019606,242.85802605663412,10.019349077386511,24.951720722481408,41.255993224\r\n1,1708800,6345.177665,3.7132359930945693,255.34434969151275,10.061759082948175,24.846549985844824,39.404667051\r\n1,1785600,6629.717044,3.7128791689068104,263.7546010218378,9.946850723099073,25.13358317717964,37.712520216\r\n4,710400,2767.415345,3.8955734023085586,218.60441813791107,19.75229138279851,12.656759418692817,90.356322855\r\n4,825600,6433.350489,7.792333441133721,281.19923195931574,10.93262341375536,22.867338472982755,38.878567831\r\n4,940800,7326.436714,7.787453990221089,306.12789417723525,10.451954380312952,23.91897160122455,34.142443662\r\n4,1056000,8210.719916,7.775302950757576,336.78956478503335,10.260917033994545,24.36429406570065,30.46684965\r\n4,1171200,9124.753632,7.790944016393443,363.2843773032222,9.95981352193775,25.100871562438726,27.416024867\r\n4,1286400,10026.46988,7.794208550995025,400.84672778058325,10.002111162631547,24.99472320743786,24.952458058\r\n4,1401600,10924.186148,7.794082582762558,428.79688844881804,9.821006814991051,25.45563858263424,22.903633584\r\n4,1497600,11658.27271,7.784637226228632,471.5044708219523,10.120197015175036,24.703076395166015,21.463628961\r\n4,1612800,12564.076792,7.790226185515873,496.2801356157368,9.883896081581996,25.293669413001915,19.915961515\r\n4,1708800,13321.965256,7.796093899812734,530.9401831846666,9.973144090472589,25.06732056933045,18.783931611\r\n4,1804800,14066.280313,7.79381666278812,606.3066542702941,10.787055325417015,23.175926372690157,17.791418335\r\n4,1920000,14963.787634,7.793639392708333,642.2903142791249,10.74238274815156,23.272304279329227,16.72512026\r\n4,2016000,15710.425438,7.792869760912699,691.3798162439333,11.014146919072683,22.698081098508563,15.93067466\r\n4,2131200,16587.048832,7.782962102102103,775.5338985991999,11.703324718346954,21.361451212926053,15.09066817\r\n4,2227200,17356.289919,7.792874424838362,866.5693217887142,12.497351271360689,20.004238864030942,14.421640551\r\n4,2323200,18102.824041,7.792193543818871,954.8303451935384,13.203647314549544,18.93416220868885,13.828265284\r\n4,2419200,18852.273584,7.792771818783069,1041.624728900077,13.831735230254127,18.074377208520843,13.279000437\r\n7,825600,3215.806331,3.8951142575096895,258.2713684291688,20.083674271501753,12.447921461997815,77.761907538\r\n7,940800,7332.453439,7.793849318664966,342.30729995067645,11.677267044897569,21.409119020639213,34.113403502\r\n7,1056000,8230.452675,7.793989275568182,361.1445234883333,10.976350505328552,22.776240598242158,30.393235371\r\n7,1171200,9122.090053,7.7886697856898905,389.8703199674444,10.69195431237494,23.38206773953835,27.42438643\r\n7,1286400,10030.895157,7.797648598414179,430.309663919,10.732370488553176,23.294015079580273,24.94103988\r\n7,1401600,10923.231529,7.793401490439499,456.36195903518177,10.45264731552204,23.917385945735813,22.904291448\r\n7,1497600,11674.060238,7.795179111912393,479.2914681756666,10.272369932119094,24.33712976187836,21.432407239\r\n7,1612800,12571.658453,7.794927116195437,510.7786660846841,10.166741766186158,24.589982292211037,19.904397817\r\n7,1708800,13316.997816,7.793186924157303,545.8575901343888,10.257373703470174,24.372710522911188,18.791299945\r\n7,1804800,14060.742407,7.790748230828901,585.9440843363528,10.428084224041335,23.973722749921766,17.797063752\r\n7,1920000,14955.731036,7.789443247916666,644.8581095432498,10.790939094068085,23.167585121245672,16.733819323\r\n7,2016000,15709.43823,7.792380074404762,687.0389402067999,10.945782677494972,22.839846849326854,15.931822837\r\n7,2131200,16603.573089,7.790715601069821,734.6319368501333,11.075217636974138,22.572919846322996,15.075872803\r\n7,2227200,17332.224071,7.782068997395834,807.6874929352142,11.665130590327795,21.431393164795672,14.44262873\r\n7,2323200,18083.18264,7.783739084022039,827.5457049950769,11.455071625192806,21.824394310218214,13.842222316\r\n7,2419200,18856.539448,7.794535155423281,893.3613745098461,11.860836911698353,21.077770638041972,13.276639499\r\n7,2534400,19742.557056,7.789834696969697,981.6815653601667,12.448644275506911,20.08250814041515,12.680939232\r\n7,2649600,20647.505781,7.792687870244565,995.6553669919166,12.072453362617827,20.708301162224515,12.125132614\r\n7,2745600,21394.950792,7.792450026223777,1159.1283286151818,13.567118848638371,18.426904252046896,11.704587416\r\n7,2841600,22147.413182,7.793993940737613,1245.1301371919092,14.07759357564386,17.758716975075473,11.306122272\r\n7,2956800,23035.105501,7.790552455695345,1382.9314262397,15.03228948953369,16.63086652063638,10.869873375\r\n"
  },
  {
    "path": "results/sm8150ac/new/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 2916.2853205678985, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1261.1776505760001, 1291.5830494080003, 1327.907550548, 1356.609943866, 1318.2866029119998, 1270.3312472599998, 1306.5761885939999, 1252.9291068, 1339.123814217, 1289.1800191240002, 1289.100195012, 1348.324448232, 1325.491286675, 1267.857690975, 1294.4716723739998, 1336.7037346700001, 1300.1581194579999, 1334.6988415700002, 1277.0797879720003, 1298.0750704739999, 1338.2113357619999, 1349.5812803850001, 1299.916503094, 1269.30837815, 1299.755425518, 1347.572450284, 1303.44070623, 1210.0631281679998, 1188.901758767], \"power_mean\": 1299.7385167956897, \"energy_millijoules\": 6498.692583978449, \"energy_joules\": 6.498692583978449}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 224.4454109, \"elapsed_ns\": 224445410900, \"power_samples\": [108.4492046739997, 119.90133820799997, 121.82211840800005, 100.68172813299998, 91.07389110799977, 184.90219899299996, 135.02885233300003, 146.64206051300016, 137.031481601, 108.36878495799988, 100.60145731300008, 115.81282149699973, 127.34322705699992, 148.396758697, 376.632518826, 194.2542428249999, 176.96292400499988, 167.3592586489999, 146.47645527300006, 127.26161588899981, 108.0467765049998, 102.5221179529999, 174.95804144199974, 159.675539501, 142.46678491299986, 146.14490543800002, 165.27098005900007, 173.0382147939997, 194.082329007, 186.31426027999987, 171.2835023529999, 155.74797274899993, 136.6204477409999, 109.80600235299994, 102.04174441700002, 113.56929029699995, 119.25159608199988, 138.46166477499992, 144.22507879, 170.86140021100005, 180.55156118500008, 191.90563526300002, 187.97757777999982, 167.02246134699976, 147.89888870200025, 165.10299191500008, 186.22895568399986, 105.80494140399992, 105.88557114899982, 101.8812917810003, 105.72464076000006, 99.88164102100018, 107.48350890400002, 107.48350890400002, 109.56405591199996, 117.169738306, 124.85202590499989, 122.84713103800004, 136.29128373999993, 138.05003433499996, 157.33373021299985, 159.08974044399997, 178.20748470500007, 170.52364935700007, 183.96446267299984, 185.9730418959998, 119.00819217399976, 116.84567605000007, 136.20907696799986, 160.92475371499995, 145.56494774300018, 136.12687019600003, 126.60839207299978, 109.24190075999991, 109.40297833599993, 99.64181146900023, 99.72175465299983, 107.40308918799974, 116.84567605000007, 122.52130642299994, 132.12413442699994, 139.80403741300006, 151.32585807300006, 160.7572423470001, 168.35196005300008, 185.80208309499972, 189.38320204299976, 189.29765930299982, 122.52130642299994, 137.8027186689999, 145.3165398829999, 162.84374637099995, 139.6391470929998, 132.04216579900003, 118.52105183899994, 112.84163360499974, 103.24333356699981, 109.08049310699994, 99.32171109700016, 103.24333356699981, 106.92024130300001, 110.84210191699958, 122.27718808299983, 135.71549942299998, 150.99321775299995, 156.66524956099988, 173.8580289749998, 477.53678939699967, 192.96682278100002, 112.59930207699995, 116.440266199, 122.19581530300002, 183.36816571300005, 169.93319034099977, 162.34049783500018, 483.17974182600005, 97.40295658499986, 125.95516825699974, 118.35878256699993, 114.51781844499965, 108.51672159099985, 106.83982158699996, 103.0027888510001, 462.2141724510002, 131.632322659, 146.82022701999995, 156.4143553890001, 165.92830102300013, 175.52183378799987, 89.32726876300012, 95.24115581099977, 492.5455906229997, 182.94189019299984, 188.8695950179997, 190.70566433099998, 179.27665785699992, 175.43712503999973, 188.78405227799976, 181.194459305, 513.3989724529999, 165.6759615909998, 152.4949970529999, 141.06217783499983, 137.22609865100003, 129.55000987400012, 129.55000987400012, 116.1158719120001, 429.5499956419999, 188.6129667979999, 169.51108819899991, 167.7619893269998, 127.46457939299967, 136.97912038699997, 144.73658218799983, 163.7583982870001, 469.3591798529999, 186.6955225659999, 194.36922868299985, 186.78094623399988, 173.26555456399979, 169.51108819899991, 158.0017789420001, 152.24515959699988, 473.08326718500007, 135.05750833399998, 115.79180965599994, 116.03485634799995, 53.08991219499967, 178.8515740329999, 165.5077353029999, 155.82939203299998, 425.3154656329998, 161.6691560380002, 178.8515740329999, 173.01143885700003, 188.35598799299987, 194.11117603300022, 184.52181493699982, 161.5849375329999, 492.02213571299967, 134.89309478999985, 129.2226116500001, 104.27857096599996, 106.11571455399985, 113.87031691899983, 123.38450020899995, 140.40132560100005, 430.959846193, 121.30004773299993, 106.11571455399985, 193.85347543300009, 188.2704452529997, 182.51561467299985, 169.17333734499994, 169.08898605699983, 405.97162864899997, 136.48482645700005, 126.97386299300001, 122.97670574499989, 117.46563653299995, 109.79288543299981, 105.87412581700005, 113.62729663299979, 424.9137245129998, 98.28179443299996, 105.95454553299987, 115.46741536900004, 161.3333132649998, 149.91145507299984, 138.48423907300003, 146.07359194899982, 149.9946151529998, 140.23619713699986, 151.57858507299989, 165.17093800099997, 184.18059655299976, 178.426838353, 201.17845947399974, 121.54449956799976, 201.43794367299984, 182.2600588329999, 187.92827429299973, 186.01178312499974], \"power_mean\": 163.04057503599543, \"energy_millijoules\": 36593.70885732628, \"energy_joules\": 36.593708857326284, \"coremark_score\": 1113.957892, \"coremarks_per_mhz\": 3.713192973333333, \"ulpmark_cm_score\": 6.831775400922459}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1354.92937395, 1326.262404369, 1297.5922225890001, 1356.681583136], \"power_mean\": 1333.866396011, \"energy_millijoules\": 6669.331980055, \"energy_joules\": 6.6693319800549995}}, \"403200\": {\"active\": {\"elapsed_sec\": 166.990872938, \"elapsed_ns\": 166990872938, \"power_samples\": [119.05782730100009, 121.05592939299981, 118.97657359300001, 116.97882871699994, 111.30620515300006, 105.55244695299984, 115.14335311299988, 115.14335311299988, 116.97882871699994, 120.73010477799994, 124.56677498499994, 124.73033179299978, 115.14335311299988, 124.64872062499967, 136.15552210499982, 137.90678506299992, 134.15256001600005, 134.070353244, 164.58180126699995, 160.82972098000005, 162.83377501899986, 143.65946941800007, 143.57666679800013, 145.49280026200017, 149.24583361300006, 149.24583361300006, 147.49197449000008, 162.74978094699986, 168.160776187, 172.080605742, 168.24512747500012, 173.99638198999992, 177.83186025700002, 173.91167324199978, 164.497688123, 183.4978101759998, 177.91680739299977, 189.24870723100003, 187.32912452799974, 193.16592178300016, 95.64584467700024, 112.73710636299984, 128.15789652400008, 183.4978101759998, 168.160776187, 168.160776187, 152.91106594899998, 158.49446583500003, 158.57856478000008, 148.99635337300015, 135.74355426299985, 135.6612281749999, 124.07710797699997, 120.40461365800002, 106.9049556, 116.57282301799978, 114.65692769799989, 112.6562101149998, 110.82121104299995, 110.65965669099978, 120.24186809799994, 118.32621092199997, 181.2371372330001, 177.57667070499997, 177.491723569, 120.24186809799994, 120.24186809799994, 108.74399951499981, 129.74570046700023, 129.74570046700023, 127.912347856, 129.74570046700023, 135.41391250899983, 135.41391250899983, 139.3273138290001, 120.16016182299995, 122.16145080099977, 125.91069995299995, 133.57677569899988, 135.41391250899983, 139.24474959699978, 144.99493026699997, 152.6605294809999, 160.15837918300008, 129.66373183899987, 118.24462420700024, 116.32908659100008, 120.48598643800005, 198.39927682300004, 200.14158468699998, 201.973481149, 196.57035408299998, 194.47921058899988, 181.15195195299998, 173.40307358699988, 154.40891343300018, 154.40891343300018, 131.4149749830001, 125.74723947299981, 120.07878904300014, 110.33621693300006, 114.17050228300013, 110.497771285, 110.41699410899969, 114.08948671899998, 110.25543975699975, 188.64872176500012, 180.725676433, 179.066758209, 123.58710649699992, 121.83514843299986, 407.8077860189999, 138.831928437, 127.74831329500012, 144.66324349899992, 154.07450196499985, 161.6571695350001, 163.65586723099977, 175.15193612099984, 474.529177077, 197.9676350079999, 209.28832889799992, 192.13441528299995, 184.38768314200001, 169.31943107199982, 167.40092319099995, 172.97918267999967, 481.96840089400007, 134.91961857899992, 138.66646159499987, 144.4141385800001, 134.91961857899992, 123.42354968899986, 108.01741544699985, 115.76081161999991, 117.67551524400005, 419.18219845299996, 130.84002465799995, 138.66646159499987, 62.66263108699991, 151.90960366900003, 153.74043278099998, 159.6547868980001, 153.90746737299992, 459.02881638700023, 115.76081161999991, 119.42747330799989, 119.59021886799997, 178.55601232899994, 169.06601925999985, 174.8126238650002, 172.80976518399984, 468.4827030639999, 178.47094612099977, 186.21636773799992, 189.9627254909999, 191.87671468299982, 199.5365935599998, 203.36849405299995, 193.6183127930001, 457.011668094, 188.04873629899976, 191.7904624329999, 172.7250564359997, 176.55695692900008, 140.50228592800022], \"power_mean\": 159.88404760616862, \"energy_millijoules\": 26699.176678614847, \"energy_joules\": 26.699176678614847, \"coremark_score\": 1497.221158, \"coremarks_per_mhz\": 3.713346125992064, \"ulpmark_cm_score\": 9.363584615709955}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1309.9576881599999, 1342.480352304, 1355.736848504, 1363.321684497], \"power_mean\": 1342.8741433662499, \"energy_millijoules\": 6714.370716831249, \"energy_joules\": 6.714370716831249}}, \"499200\": {\"active\": {\"elapsed_sec\": 134.887523854, \"elapsed_ns\": 134887523854, \"power_samples\": [128.59746780100022, 426.4274615459999, 134.50798813899996, 132.425207065, 151.49227075299973, 147.66476963299988, 162.9826173529998, 159.23506936900003, 176.21682024099982, 475.81701566499964, 122.77032587299982, 103.78222443399977, 206.67499689700003, 206.76185016099998, 212.4187403569997, 208.592191813, 208.592191813, 520.94179869, 189.44768716099998, 180.04384507300006, 187.5344128889999, 181.87597402499978, 162.81439106499988, 158.81569558899992, 164.72790348099988, 492.7058157010001, 153.23898672099995, 141.83679371300013, 141.83679371300013, 218.16248381700007, 212.4187403569997, 212.15675076399998, 122.77032587299982, 439.402584013, 124.68407643299975, 124.6023461929999, 120.77508321699997, 122.68871470500017, 120.8565753129999, 124.68407643299975, 120.8565753129999, 122.77032587299982, 124.52061595299983, 128.26959328899989, 128.35156191700003, 139.757795129, 145.4979751610001, 164.55943904899982, 160.6488964329999, 176.04692596899986, 122.60710353699983, 116.86264515699986, 111.19908302499994, 204.501164581, 195.01880041799996, 185.3602391679999, 191.18880898300017, 185.3602391679999, 175.9619788330001, 181.70536483299998, 162.47759376299996, 156.65081100400016, 143.50166012499994, 139.59242803300003, 128.18762466099997, 124.27542523299985, 46.408017406, 36.82963138000014, 147.24896923300003, 166.05061117899982, 189.01842995900006, 209.98255924, 149.07850397300012, 166.13496246699992, 189.01842995900006, 137.59244982299992, 118.61341201300002, 143.2525552059999, 160.4805640510001, 181.44910143599964, 194.67424606600002, 208.06999988799998, 208.15697246799982, 190.84520818300007, 162.22525433099986, 160.3965699790001, 135.59696902299993, 126.02846627200006, 126.02846627200006, 127.695476956, 135.59696902299993, 143.2525552059999, 158.31210330399995, 89.8986153569997, 141.1740333979999, 124.11162979299979, 125.86476715999993, 194.58810747799998, 200.15635515700023, 194.50196888999972, 207.80908214800002, 209.80837593599972, 209.54674404699995, 179.276828433, 171.62314837799977, 154.40334798799995, 150.74134494099985, 131.68500920399993, 125.78291760399998, 139.26135497399991, 154.48698459999991, 162.05702804299995, 181.0225784559998, 184.76108940299991, 201.981587193, 203.8069355770001, 131.52059566000003, 135.26718838299985, 158.14435379199995, 171.7078571259999, 156.23203258400008, 141.00842815800002, 125.70106804800002, 125.78291760399998, 123.78470883299974, 131.43838888799996, 156.23203258400008, 171.36867496699983, 190.41535513300005, 196.1551636029999, 211.4587075510001, 203.8069355770001, 186.67709018100027, 181.0225784559998], \"power_mean\": 169.9539037615074, \"energy_millijoules\": 22924.66124771075, \"energy_joules\": 22.92466124771075, \"coremark_score\": 1853.554376, \"coremarks_per_mhz\": 3.713049631410257, \"ulpmark_cm_score\": 10.90528655139735}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1295.081205121, 1275.926321735, 1277.761558707, 1275.926321735], \"power_mean\": 1281.1738518245002, \"energy_millijoules\": 6405.869259122501, \"energy_joules\": 6.4058692591225}}, \"576000\": {\"active\": {\"elapsed_sec\": 116.892260655, \"elapsed_ns\": 116892260655, \"power_samples\": [203.54673300100012, 209.45965239499992, 209.54674404699995, 199.81001647300013, 188.50339162900013, 177.023774689, 165.54415774899985, 152.31995418099996, 138.84759836700005, 142.75502505400004, 131.19143165900005, 136.84903335699983, 144.50080533100004, 152.15257730500002, 157.89238577499987, 161.46789130899992, 146.49984687300002, 136.93159758899992, 123.457452913, 213.02135187099998, 211.1970753789999, 186.33444195700008, 175.02686404899987, 182.5073121549999, 154.06845876700004, 136.84903335699983, 133.025106349, 125.37333437500001, 125.37333437500001, 140.59407570300004, 150.07381735299987, 167.1221567949999, 184.33337570299977, 205.28463276099978, 216.67274803100008, 216.67274803100008, 170.94513122699982, 176.59844364899982, 199.2906856930001, 216.67274803100008, 132.94278026099983, 132.86045417299965, 153.73391231899996, 168.86411797999972, 187.98835329899998, 193.812507159, 218.49630935899995, 142.505920135, 189.89960188299983, 170.8604224789999, 159.4722909489999, 138.43418062699993, 53.139873394999995, 142.25715505899984, 144.25168303900023, 165.20675259699988, 136.5187764289999, 113.56917889100009, 214.5866012229999, 189.81370168299986, 168.86411797999972, 151.81850812099992, 132.61347590899982, 441.2882775159999, 149.90702090499985, 163.12645573500004, 189.72780148300012, 205.02371701300012, 222.0587076999998, 199.20418964499981, 176.42796260099976, 494.31744496399983, 145.83422541299979, 130.6156473420001, 136.35330958699979, 170.60594906799997, 155.31003353799997, 126.8754547389999, 174.4318859529999, 518.594612609, 157.304918734, 140.17972324799985, 136.18818112300005, 155.39378922200012, 174.4318859529999, 193.38146119199973, 212.32235559399987, 515.2032677950001, 199.20418964499981, 179.9982240859997, 172.52087551299996, 157.22104397800013, 145.66790525300007, 136.35330958699979, 132.53081241899986, 423.70762212199975, 166.7839281879999, 180.08352868199995, 193.20918401599988, 204.67630395700007, 212.40968538999982, 219.97232225999983, 208.58837894199996, 191.38075410700003, 505.45134170500023, 155.22627785400005, 134.2771706829999, 128.54022335800005, 141.92512844800012, 155.22627785400005, 170.4365315719997, 179.82761489399968, 482.5561039689999, 214.23680477499988, 145.66790525300007, 170.26711407599987], \"power_mean\": 185.86122811649994, \"energy_millijoules\": 21725.739122652325, \"energy_joules\": 21.725739122652325, \"coremark_score\": 2138.909327, \"coremarks_per_mhz\": 3.7133842482638886, \"ulpmark_cm_score\": 11.50708837055572}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1339.3929090359998, 1331.8226272050001, 1322.2565068699998, 1337.230409064], \"power_mean\": 1332.67561304375, \"energy_millijoules\": 6663.37806521875, \"energy_joules\": 6.663378065218749}}, \"672000\": {\"active\": {\"elapsed_sec\": 100.192659199, \"elapsed_ns\": 100192659199, \"power_samples\": [227.3531627689997, 216.059411857, 198.94470150100005, 183.64868319800007, 105.75766627099983, 156.88554495400012, 158.8839882069999, 145.5015850929999, 137.8550569240001, 135.8579241949999, 208.23965540099994, 190.9503052089999, 187.38753384100005, 168.3565799239998, 177.9131657129999, 192.9504152249997, 202.41847756900006, 210.06262112499985, 221.530793485, 210.06262112499985, 189.2120482329999, 174.09209740899996, 154.890911857, 149.322891541, 134.02983520299995, 139.599765553, 149.15575329699982, 168.3565799239998, 179.5713514969998, 200.59503531299993, 217.5313901689999, 221.44286784099995, 145.25176403299997, 171.92673140899979, 185.22013308099986, 170.0126406649997, 164.19384573699995, 141.34433676100002, 135.692457353, 139.599765553, 150.81561600100008, 168.01787454099986, 183.3061616529999, 196.51163792499983, 209.80098895300011, 223.1767167129999, 208.06547209699988, 190.9503052089999, 179.31543770899975, 168.01787454099986, 152.72958742900028, 150.81561600100008, 143.25451320899992, 141.42725845299992, 198.4253707209998, 186.958628201, 167.76410551299978, 190.60587558299994, 205.89425960799986, 221.17873055799987, 224.99789175799992, 219.26914995799984, 213.44904597100003, 192.60586087299998, 186.872847073, 162.11532392899994, 158.2956854649999, 133.53482635299997, 139.26855507300002, 146.74566379299995, 156.29807791300004, 173.4118240329999, 188.69629498299992, 209.53899935999993, 222.82417700999986, 215.3585074990001, 154.3883777530002, 179.14447890799966, 196.25215372599996, 161.94651428299994, 139.18575245299985, 141.09557168499987, 141.09557168499987, 152.3946982079999, 169.58874975799972, 190.60587558299994, 203.80705940500002, 221.00287927, 215.09580294700004, 198.165528085, 192.43323066999983, 169.58874975799972, 163.85609488299997, 144.7524627329999, 140.92938845799995, 144.83596363300012, 150.3976872369999, 178.88856511999984, 144.66930265299993, 116.089188358], \"power_mean\": 175.58186504928992, \"energy_millijoules\": 17592.013966408314, \"energy_joules\": 17.592013966408313, \"coremark_score\": 2495.433357, \"coremarks_per_mhz\": 3.713442495535714, \"ulpmark_cm_score\": 14.210993720069302}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1633.601596016, 1300.3160717189999, 1315.449003057, 1338.47484498], \"power_mean\": 1396.960378943, \"energy_millijoules\": 6984.801894715, \"energy_joules\": 6.984801894715}}, \"768000\": {\"active\": {\"elapsed_sec\": 87.675824255, \"elapsed_ns\": 87675824255, \"power_samples\": [211.09902263200001, 230.19941914499987, 216.917220003, 198.07903203700016, 180.88321217199996, 173.07203548899997, 154.05301175599993, 148.48822570900006, 150.3976872369999, 163.6030410190001, 184.62014761499995, 154.13676743999986, 140.84646676600005, 138.85420261800004, 220.6511766939998, 195.99302353000007, 192.00253772999986, 169.24991476600007, 159.868707395, 142.58984676599994, 152.06015176000005, 163.68739230699998, 167.3408104539999, 182.45038366799986, 188.26679398300007, 207.28129029599995, 220.56289069900004, 231.93455251499995, 216.82953274700003, 186.27202761499984, 171.16293117700002, 153.969256072, 146.32892672499997, 210.92400513099983, 191.82990752699993, 176.8902441130001, 207.01965840699995, 224.29222012699984, 237.66043512299984, 214.83273950900002, 197.646197305, 186.18589492499996, 163.34998715499978, 153.80174470400016, 150.14713534899988, 157.7073827229999, 168.91073260699977, 189.91736886900003, 125.39901162399997, 216.47842434900008, 224.1158925509999, 229.66792886500002, 222.207503159, 201.376956329, 186.18589492499996, 210.74934553899993, 229.7564501129998, 237.39344178299984, 151.8088991510001, 167.0866947469999, 182.27894760299978, 201.376956329, 220.21118812300006, 233.66566077899984, 218.47853094699985, 185.84277041299993, 167.17163110199976, 149.8962411770001, 149.8962411770001, 153.80174470400016, 170.6536151370001, 199.38171367300015, 206.93256675499993, 223.93956497500017, 140.6806233819998, 199.20848343299986, 182.27894760299978, 229.7564501129998, 227.75977761699983, 204.8502322029999, 187.75104073299985, 197.21371706500008, 206.75838345099987, 229.5794076169998, 233.48814150700014, 202.9381708090002, 187.6651405330001], \"power_mean\": 188.97183476098846, \"energy_millijoules\": 16568.261373649322, \"energy_joules\": 16.56826137364932, \"coremark_score\": 2851.667655, \"coremarks_per_mhz\": 3.7131089257812504, \"ulpmark_cm_score\": 15.089090783997877}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1290.0284846280001, 1288.118427252, 1225.509834796, 1318.44838116], \"power_mean\": 1280.526281959, \"energy_millijoules\": 6402.631409795, \"energy_joules\": 6.402631409795}}, \"844800\": {\"active\": {\"elapsed_sec\": 79.701845544, \"elapsed_ns\": 79701845544, \"power_samples\": [223.93956497500017, 220.03533683499995, 145.99546880899993, 159.19545751700002, 159.19545751700002, 219.94705083999997, 220.03533683499995, 204.8502322029999, 204.8502322029999, 187.75104073299985, 182.1078621229999, 168.57189761500013, 161.01961469299977, 147.57050344900017, 157.3710621969999, 157.2030740529999, 159.02723122899988, 172.392110257, 183.84883803700018, 191.39921458699996, 197.21371706500008, 210.3123386499999, 223.67471228399995, 235.04041366599995, 161.01961469299977, 168.40213295199987, 195.12854820400003, 197.21371706500008, 168.6566063629998, 174.2151952969998, 159.02723122899988, 151.47435270300002, 155.207018587, 159.02723122899988, 185.6712081569999, 189.48727250899992, 200.76946151700008, 210.22500885399973, 217.77571850799995, 225.32156592899992, 233.13273919400012, 229.04791733699972, 229.13643858499972, 219.68327390800005, 213.9566987830001, 204.5019854379998, 194.95579473999987, 213.9566987830001, 219.77119955199987, 168.31742420399996, 172.22186784100018, 151.22310009400007, 151.30707947899987, 162.67448544699982, 173.95964804100004, 194.95579473999987, 204.24106769799982, 225.40984903299977, 225.23328282499983, 238.5032033949999, 238.59232049099978, 234.77377754199983, 219.595348264, 213.69399423100026, 211.96169427099994, 190.96816861999991, 179.6865806259998, 172.05197356899998, 242.138523073, 240.41040157899988, 225.14499972099975, 166.32504098399977, 183.33451462699986, 194.696664544, 206.2354766059998, 204.3280402779999, 213.69399423100026, 225.14499972099975, 238.5032033949999], \"power_mean\": 195.42580908427843, \"energy_millijoules\": 15575.79765094639, \"energy_joules\": 15.57579765094639, \"coremark_score\": 3136.999021, \"coremarks_per_mhz\": 3.713303765388258, \"ulpmark_cm_score\": 16.050542360815143}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1298.938143069, 1306.6599645119998, 1314.054864507, 1331.1591021460001], \"power_mean\": 1312.7030185585, \"energy_millijoules\": 6563.5150927925, \"energy_joules\": 6.5635150927925}}, \"940800\": {\"active\": {\"elapsed_sec\": 71.575175047, \"elapsed_ns\": 71575175047, \"power_samples\": [187.14938728300012, 181.42316961799997, 236.32473893299994, 247.86330943300004, 249.59060544099998, 160.3454117509998, 162.42143158299996, 175.52658139300001, 175.61176667299992, 181.2520841380001, 179.259112189, 202.1557795209999, 202.1557795209999, 209.6133423729998, 209.78800196499992, 221.15024488900008, 213.343362609, 219.2432853370001, 219.2432853370001, 230.6928580570002, 238.2354868729999, 247.59417133300008, 234.32901974499987, 232.4222983369998, 192.53022079300013, 198.08177691299989, 219.15535969300004, 181.16619081299973, 165.9017459249999, 158.3539813509999, 160.17660210500003, 171.71218502500005, 182.90585327300005, 190.62326124100014, 205.886753065, 213.343362609, 237.96813558500003, 239.96385501700001, 230.42693636500007, 209.6133423729998, 198.08177691299989, 186.6336340329999, 177.1814243729998, 156.2784507849999, 165.98668227999997, 167.89388046399972, 215.33777127300004, 205.79966141299974, 192.3577054729999, 205.6254781089999, 213.343362609, 236.05774559300016, 235.96874781299994, 243.6020175489998, 236.14674337299994, 228.42790580899987, 215.16239676100008, 216.89729292499987, 205.53838645700012, 201.80836646500006, 194.26442688099974, 182.820191217, 171.45699547299978, 171.3720483369998, 160.00813767299996, 156.1944567129999, 171.3720483369998, 93.79041018900011, 209.35135298499995, 201.8952197289998, 192.1851901529999], \"power_mean\": 199.7659716145774, \"energy_millijoules\": 14298.284386747411, \"energy_joules\": 14.298284386747412, \"coremark_score\": 3493.18131, \"coremarks_per_mhz\": 3.7129903380102043, \"ulpmark_cm_score\": 17.484615163460898}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1339.9575856370002, 1336.305123972, 1324.9367610340003, 1322.941916346], \"power_mean\": 1331.03534674725, \"energy_millijoules\": 6655.176733736251, \"energy_joules\": 6.65517673373625}}, \"1036800\": {\"active\": {\"elapsed_sec\": 64.942976887, \"elapsed_ns\": 64942976887, \"power_samples\": [205.53838645700012, 188.3683168970001, 186.37593343299977, 179.00284118499985, 171.28710120100004, 165.6479768969998, 173.19370353699992, 180.65293437299988, 190.1925683009997, 207.35765899699982, 184.46956924100004, 175.01512059300012, 161.6619242889999, 252.77709521299994, 235.79038750799987, 228.25086331299985, 211.08684475300015, 193.9189199529999, 178.8319938489999, 171.11720692900008, 171.03225979299987, 184.29765542299992, 203.45795803299984, 209.00167589199987, 228.16197927299982, 243.33322718199997, 247.05552745800014, 228.07345802500004, 212.7300264349999, 195.65572472500025, 188.28229762499996, 176.92551058499998, 256.5888700449998, 229.80608913599985, 218.53951983399998, 199.64156155299997, 203.19668384800002, 223.99659573699978, 171.11720692900008, 241.3339597029999, 247.05552745800014, 246.8761020579998, 245.06004641399977, 231.71185747999994, 214.54822659499996, 224.2614450489998, 199.46773770100003, 197.475116093, 182.39152986299996, 176.66924718799987, 170.946964513, 174.5888450729999, 186.11788078300015, 184.0403120389999, 201.28689092500008, 193.6594357539998, 174.84475003299985, 237.4330677749997, 250.51140344500004, 237.4330677749997, 222.1752052339998, 197.475116093, 184.12609316700014, 165.30961819299978], \"power_mean\": 203.40985345084368, \"energy_millijoules\": 13210.041411246199, \"energy_joules\": 13.210041411246198, \"coremark_score\": 3849.885273, \"coremarks_per_mhz\": 3.7132381105324073, \"ulpmark_cm_score\": 18.92499744831729}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1373.8860147760001, 1373.7144525200001, 1356.625874568, 1350.901088208], \"power_mean\": 1363.781857518, \"energy_millijoules\": 6818.90928759, \"energy_joules\": 6.8189092875899995}}, \"1113600\": {\"active\": {\"elapsed_sec\": 60.465620711, \"elapsed_ns\": 60465620711, \"power_samples\": [199.46773770100003, 210.47434257100008, 199.29426931700004, 267.485493165, 252.41681457299978, 225.72544065700004, 197.30188585299993, 208.7396865039998, 212.5548900670001, 231.44557857199993, 239.0711276149998, 259.8608991389999, 246.8761020579998, 240.976538743, 223.82002952899984, 218.09989161399994, 205.10257126400006, 197.30188585299993, 182.2202057510001, 187.7658294549999, 174.50365979299977, 172.51282524099975, 183.9545309109999, 197.12865561299986, 210.73668990700003, 195.3962365809998, 183.9545309109999, 161.23982214700004, 254.14147760899982, 252.32637527299994, 242.79601314700017, 218.09989161399994, 217.9236799749999, 200.93947786900003, 208.65235670800007, 197.21527073300012, 187.7658294549999, 172.59789144899992, 170.5222288330001, 174.24810395300005, 193.227198091, 197.12865561299986, 218.01160561899997, 221.55769739099992, 242.52758947899997, 242.52758947899997, 157.0915947389999, 176.41333339999983, 191.40851769799974, 236.89799996499983, 231.178935895, 212.20425844499982, 212.37975369900005, 198.8602428889999, 195.22324448500012, 180.13932734799982, 189.50310657, 178.06283073999975, 174.24810395300005, 179.8823485429998], \"power_mean\": 206.85217836273327, \"energy_millijoules\": 12507.445360125152, \"energy_joules\": 12.507445360125152, \"coremark_score\": 4134.965266, \"coremarks_per_mhz\": 3.71315128053161, \"ulpmark_cm_score\": 19.988094515049593}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1339.037240132, 1360.0189656960001, 1371.3793017599999, 1369.3832570749998], \"power_mean\": 1359.9546911657499, \"energy_millijoules\": 6799.773455828749, \"energy_joules\": 6.799773455828749}}, \"1209600\": {\"active\": {\"elapsed_sec\": 55.666794556, \"elapsed_ns\": 55666794556, \"power_samples\": [219.6527630390001, 229.27388247099998, 204.666756071, 198.8602428889999, 183.696835965, 179.79680580299987, 189.2443377789998, 206.31041546699998, 213.93405642900007, 232.99511061099997, 240.5293963329998, 255.68541688899995, 261.22170546999996, 252.05616479299988, 232.8173531949999, 217.74782868700004, 194.87690580100002, 183.61105483699998, 181.5345582289999, 204.40548111499993, 221.46953360299995, 189.158199191, 177.80620963899992, 128.57713578300013, 244.25333657500005, 217.57197739899993, 208.12802002299986, 185.25852673300005, 183.43949258099997, 200.59170885699996, 204.14420615899985, 221.20468091199996, 226.9219562169999, 242.16932455600022, 249.88137717699988, 266.75693432699995, 255.414121861, 244.07378213200013, 223.11304106499983, 221.293206027, 202.2396290229999, 189.07206060299995, 185.25852673300005, 245.97823970800005, 240.2609644029999, 228.91932021499997, 217.30784011599985, 221.20468091199996, 232.63923152200005, 243.89459487600016, 259.13615450999987, 261.22170546999996, 268.66115375899994, 253.50978335699983, 243.71540762000018], \"power_mean\": 219.76660246394542, \"energy_millijoules\": 12233.702309630573, \"energy_joules\": 12.233702309630573, \"coremark_score\": 4491.47518, \"coremarks_per_mhz\": 3.713190459656085, \"ulpmark_cm_score\": 20.435350940589412}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1355.863148669, 1369.212171595, 1293.4187084879998, 1363.49060384], \"power_mean\": 1345.496158148, \"energy_millijoules\": 6727.48079074, \"energy_joules\": 6.72748079074}}, \"1305600\": {\"active\": {\"elapsed_sec\": 51.569180398, \"elapsed_ns\": 51569180398, \"power_samples\": [217.2199144719998, 217.30784011599985, 207.86567272600018, 196.52199479299998, 255.14319694899996, 260.6777108859999, 264.85271489499996, 270.29549044400005, 258.86451443399983, 255.05288864499994, 243.80500124799983, 241.99037544399994, 234.36569353799996, 228.653035242, 226.65639247299987, 223.02475796099998, 217.3957657599999, 213.4952607749999, 194.53056711700015, 192.53583023199985, 188.72715322399995, 194.357575021, 201.8913822579998, 222.75990864899995, 203.70839096600002, 192.62220696400004, 268.1139264489998, 260.49600777699993, 243.53622036399975, 222.75990864899995, 222.67162554499987, 203.79548261799982, 196.08856421300015, 188.46873745999983, 194.27107897300016, 211.32821771900012, 220.76386197199986, 236.00646377099997, 245.52967620799996, 268.47886916699986, 260.76837665000016, 251.24516421299995, 235.91734667499986, 222.75990864899995, 203.79548261799982, 273.919840365, 254.87190192100002, 241.7219517760002, 224.57548776099975, 241.54263596500004, 260.76837665000016], \"power_mean\": 228.9905166541176, \"energy_millijoules\": 11808.853262767414, \"energy_joules\": 11.808853262767414, \"coremark_score\": 4848.343806, \"coremarks_per_mhz\": 3.713498625919118, \"ulpmark_cm_score\": 21.170556906506288}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1324.77337029, 1311.594125982, 1288.8764176749999, 1300.2361547169999], \"power_mean\": 1306.3700171659998, \"energy_millijoules\": 6531.850085829999, \"energy_joules\": 6.5318500858299995}}, \"1382400\": {\"active\": {\"elapsed_sec\": 48.709768551, \"elapsed_ns\": 48709768551, \"power_samples\": [258.6830499570001, 268.022784153, 277.5475121129998, 268.1139264489998, 251.0646547529998, 239.5457562729996, 218.948044472, 273.7368408530001, 275.7357457449998, 250.9745845929997, 231.92783760099996, 239.7248329629997, 258.5925032649998, 271.83345541300014, 266.21042193699986, 249.1610311689999, 239.63511151299986, 216.69200025700002, 214.78849574499986, 197.905811309, 193.92474028900006, 199.8096735250001, 207.16667644899985, 212.881090609, 230.02433308900004, 244.99103233300002, 194.1845829250001, 271.55931336100025, 269.838808361, 207.16667644899985, 229.84681381699988, 250.79444427299973, 212.968777865, 207.16667644899985, 195.7417487529999, 197.73198745700006, 218.59550476899994, 218.50746005299993, 245.08074503300008, 256.4177158929999, 269.65628513700017, 269.65628513700017, 278.899377793, 263.9433008169999, 248.7112757289999, 235.382278865, 222.1415651049997, 212.61802884099984], \"power_mean\": 238.21357499393744, \"energy_millijoules\": 11603.328103660975, \"energy_joules\": 11.603328103660974, \"coremark_score\": 5132.94323, \"coremarks_per_mhz\": 3.7130665726273144, \"ulpmark_cm_score\": 21.545542603515823}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1311.512157354, 1298.087007162, 1301.81574123, 1318.97186106], \"power_mean\": 1307.5966917015, \"energy_millijoules\": 6537.9834585075005, \"energy_joules\": 6.5379834585075}}, \"1478400\": {\"active\": {\"elapsed_sec\": 45.546759641, \"elapsed_ns\": 45546759641, \"power_samples\": [283.0773776049998, 260.13334472099996, 250.614303953, 227.9435474490001, 212.70571609700005, 218.50746005299993, 203.18548412099972, 226.0363809449998, 246.80434785700004, 248.7112757289999, 265.5728863229999, 286.6990047009999, 279.0834686889998, 286.51395878799985, 265.846329041, 258.0488520199999, 258.0488520199999, 269.382126278, 286.42162503999975, 212.61802884099984, 155.91332127099986, 210.62731336100023, 235.11456234299976, 239.18833531299993, 260.04267895700013, 263.7611199549999, 282.61652214399965, 288.51298128700023, 267.5666991390001, 250.43379449299982, 231.483444061, 206.90468706099978, 218.15528118899988, 238.83054814299976, 242.99829140899988, 269.29086466599983, 278.8075205769999, 273.09596756199994, 244.631813858, 267.384414547, 286.3292912919999, 210.451818107, 212.3546076990001, 225.85933844899978, 242.81873696599996], \"power_mean\": 247.75840720266658, \"energy_millijoules\": 11284.592621896858, \"energy_joules\": 11.284592621896858, \"coremark_score\": 5489.317788, \"coremarks_per_mhz\": 3.713012573051948, \"ulpmark_cm_score\": 22.15410058444598}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1350.699151791, 1329.99313306, 1345.0674194699998, 1362.2973116800001], \"power_mean\": 1347.01425400025, \"energy_millijoules\": 6735.07127000125, \"energy_joules\": 6.73507127000125}}, \"1555200\": {\"active\": {\"elapsed_sec\": 43.296789105, \"elapsed_ns\": 43296789105, \"power_samples\": [229.40265186800002, 235.20367943899987, 259.58897855600003, 273.0044678060001, 286.42162503999975, 216.34029768100004, 244.631813858, 250.43379449299982, 240.82647281799996, 221.78807087299992, 210.539745177, 208.4615794030001, 212.44265432899988, 229.2251325960001, 236.92799669499982, 248.261151637, 254.05875706899997, 267.29327225099996, 276.7214928409999, 286.1446237959999, 267.2021299549999, 257.86775863599996, 234.8472110549999, 238.83054814299976, 225.50489066499972, 208.4615794030001, 206.46768017199997, 286.0522900479998, 265.11777020299996, 253.8781404609997, 250.0735138529999, 259.58897855600003, 278.4400917129999, 282.24813972799984, 269.108341442, 246.1751572899998, 234.93632815099977, 212.1792331869999, 210.10154537100016, 234.8472110549999, 253.7878321569999, 250.0735138529999, 285.9595778829996], \"power_mean\": 246.499249330372, \"energy_millijoules\": 10672.62601279793, \"energy_joules\": 10.672626012797929, \"coremark_score\": 5774.605594, \"coremarks_per_mhz\": 3.7130951607510285, \"ulpmark_cm_score\": 23.4244130451321}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1339.0158505480001, 1324.110609975, 1310.6921351370002, 1306.88027096], \"power_mean\": 1320.174716655, \"energy_millijoules\": 6600.873583275001, \"energy_joules\": 6.600873583275001}}, \"1632000\": {\"active\": {\"elapsed_sec\": 41.255993224, \"elapsed_ns\": 41255993224, \"power_samples\": [280.2498136329998, 291.5766509250002, 286.0522900479998, 266.8371872370001, 259.40764702799993, 238.4731271830001, 227.05677852800022, 219.4406824979999, 212.09154593100016, 211.8284841630002, 225.15080567299992, 236.83876052699998, 234.6689768629999, 240.37910003799993, 253.33592052099993, 266.8371872370001, 266.8371872370001, 280.15783734499996, 287.588071741, 212.00385867500017, 225.15080567299992, 225.2393269209997, 268.7429209709999, 263.124418333, 251.70488983299992, 249.80293423299986, 234.57949453299966, 236.571052023, 228.86973028299985, 219.4406824979999, 211.8284841630002, 215.63653217799992, 215.63653217799992, 221.1697273289999, 230.77168588299992, 234.57949453299966, 245.9052938110001, 249.5327237529998, 259.13527815500015, 272.2720947590001, 200.6730532480001], \"power_mean\": 242.85802605663412, \"energy_millijoules\": 10019.349077386512, \"energy_joules\": 10.019349077386511, \"coremark_score\": 6060.45914, \"coremarks_per_mhz\": 3.7135166299019606, \"ulpmark_cm_score\": 24.951720722481408}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1304.731121696, 1317.81695304, 1342.575016368, 1333.1342824800001], \"power_mean\": 1324.564343396, \"energy_millijoules\": 6622.821716979999, \"energy_joules\": 6.622821716979999}}, \"1708800\": {\"active\": {\"elapsed_sec\": 39.404667051, \"elapsed_ns\": 39404667051, \"power_samples\": [228.86973028299985, 224.79635788899964, 228.60345137499985, 239.93136055900004, 257.1430140069999, 268.286612911, 273.9942324010001, 275.8954735689997, 277.70448105700007, 291.020123795, 294.8262627519998, 302.43464492499993, 292.92124540300006, 234.1339090529998, 253.1553039129999, 257.05246731500006, 171.94670491300008, 260.7685373329998, 239.84188600300013, 240.02083511499995, 230.50504975900003, 222.8947595049999, 215.28446925100002, 228.514691739, 238.11534001299992, 234.2230261489999, 249.35258343299984, 243.73431918300003, 256.8713739309999, 273.9942324010001, 277.8885719529999, 283.4117416219999, 291.020123795, 296.54128702399976, 302.06102041300005, 234.2230261489999, 251.07319558099994, 275.7116213049999, 239.66257019199998], \"power_mean\": 255.34434969151275, \"energy_millijoules\": 10061.759082948174, \"energy_joules\": 10.061759082948175, \"coremark_score\": 6345.177665, \"coremarks_per_mhz\": 3.7132359930945693, \"ulpmark_cm_score\": 24.846549985844824}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1361.1892048, 1353.5746238049999, 1347.947064618, 1338.429217499], \"power_mean\": 1350.2850276805, \"energy_millijoules\": 6751.4251384025, \"energy_joules\": 6.7514251384025}}, \"1785600\": {\"active\": {\"elapsed_sec\": 37.712520216, \"elapsed_ns\": 37712520216, \"power_samples\": [294.8262627519998, 290.9274325869999, 279.6056026650001, 279.6056026650001, 258.68157775400005, 245.3659350160001, 232.05029227800014, 247.18100127699972, 271.9057207359999, 239.66257019199998, 215.10861796299992, 239.66257019199998, 285.2205294819996, 266.2899599269999, 262.39681255899995, 245.3659350160001, 231.96129449799992, 231.96129449799992, 247.09105018900004, 266.10767533499984, 277.33705219299986, 305.7686667810001, 309.4797311379998, 313.2805454899999, 288.748713643, 275.4364068729999, 260.4958100229999, 248.90186349299984, 237.75755284299998, 233.77707543499992, 243.19567530799986, 262.1241001029998, 243.19567530799986, 228.24804906200006, 315.1848469429999, 298.16266726799995, 286.848068323], \"power_mean\": 263.7546010218378, \"energy_millijoules\": 9946.850723099073, \"energy_joules\": 9.946850723099073, \"coremark_score\": 6629.717044, \"coremarks_per_mhz\": 3.7128791689068104, \"ulpmark_cm_score\": 25.13358317717964}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1343.805032858, 1355.3115371120002, 1372.18352475, 1383.6037711], \"power_mean\": 1363.7259664550002, \"energy_millijoules\": 6818.629832275001, \"energy_joules\": 6.8186298322750005}}}}, \"4\": {\"freqs\": {\"710400\": {\"active\": {\"elapsed_sec\": 90.356322855, \"elapsed_ns\": 90356322855, \"power_samples\": [228.24804906200006, 224.53079414499985, 243.46481340800005, 254.78890691799984, 256.780456146, 277.42890940899997, 188.3877320229999, 207.324024151, 216.83352793199992, 222.540788497, 211.2143139970001, 199.7156419779999, 190.37534992299993, 186.3138606519999, 201.7913038229999, 220.63966688899995, 228.33717246700007, 248.99193365299993, 264.024745423, 273.71899969699984, 243.46481340800005, 237.75755284299998, 211.30200125300007, 173.4259244949999, 190.20224245600002, 203.60545333899995, 228.24804906200006, 241.47409817200014, 167.547338353, 190.20224245600002, 216.83352793199992, 220.55138378499964, 203.51788519399997, 182.68011253300006, 182.59386028300014, 211.12626736700008, 220.55138378499964, 248.81179333299997, 252.6130839729999, 262.0331959509999, 252.70339227699992, 241.38450454400004, 233.6879583389998, 208.96244120699998, 190.20224245600002, 195.9095030210001, 207.1491259270001, 227.89301051799998, 245.006607928, 171.26487355299992, 192.107259805, 210.86320559900014, 224.08782511299978, 207.1491259270001, 184.49498189099995, 184.49498189099995, 182.50796008299994, 192.02076375699994, 209.05000939100023, 229.79365583799995, 250.7124386529997, 262.1241001029998, 260.22345478299985, 231.78329893799992, 227.89301051799998, 209.1375775749998, 201.4425802820001, 182.59386028300014, 182.59386028300014, 201.5296719339999, 199.45472423799993, 214.756555036, 191.76127561299995, 186.39999923999994, 261.8513876469997, 260.1326697029999, 243.10596260800003, 229.7047771299999, 205.06968761799976, 193.66192093299992, 182.336159683, 182.42205988299997, 201.26839697799983, 212.68005842799994, 241.20531728800006, 252.5227756690001, 267.556145992, 256.327722686, 239.12572285600004, 218.2938306000001], \"power_mean\": 218.60441813791107, \"energy_millijoules\": 19752.29138279851, \"energy_joules\": 19.75229138279851, \"coremark_score\": 2767.415345, \"coremarks_per_mhz\": 3.8955734023085586, \"ulpmark_cm_score\": 12.656759418692817}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1303.751453208, 1309.7078397270002, 1305.65364744, 1324.687283577], \"power_mean\": 1310.950055988, \"energy_millijoules\": 6554.75027994, \"energy_joules\": 6.55475027994}}, \"825600\": {\"active\": {\"elapsed_sec\": 38.878567831, \"elapsed_ns\": 38878567831, \"power_samples\": [269.27329821700005, 246.37107283299997, 257.86521429699997, 280.4050953249998, 291.71433139300007, 303.02603043299996, 318.22944797700006, 331.5334114090001, 316.4243530570002, 308.91605041299977, 288.007757161, 284.2044798369998, 253.79383249300008, 244.28758558899995, 263.296186585, 276.60181800099986, 252.0708640329999, 242.47760603300003, 263.2051633609999, 282.12035822899975, 274.7021257449999, 259.4968020729998, 242.38789333299997, 261.214686025, 270.715848909, 212.32847227699995, 318.13458250700023, 337.0439345479999, 333.05464044400014, 308.63401766800007, 293.52486754899996, 270.715848909, 247.8202832930001, 255.6029780570002, 280.03633546799983, 295.2378429779999, 319.8486139779998, 331.24708401700013], \"power_mean\": 281.19923195931574, \"energy_millijoules\": 10932.62341375536, \"energy_joules\": 10.93262341375536, \"coremark_score\": 6433.350489, \"coremarks_per_mhz\": 7.792333441133721, \"ulpmark_cm_score\": 22.867338472982755}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1318.3985149399998, 1290.024080772, 1371.4956190500002, 1360.08109792], \"power_mean\": 1334.9998281705, \"energy_millijoules\": 6674.9991408525, \"energy_joules\": 6.6749991408525}}, \"940800\": {\"active\": {\"elapsed_sec\": 34.142443662, \"elapsed_ns\": 34142443662, \"power_samples\": [340.65444113499984, 314.14743316299996, 295.33089164600005, 270.715848909, 236.6849237529998, 298.9468787170001, 317.851147715, 349.9602117459999, 348.0614725539999, 323.45713534599986, 302.7450715329999, 281.9355509479999, 270.62397415400005, 330.9611472490001, 304.45687939699997, 281.84333627199976, 359.2670923630001, 342.26533694299974, 327.2587429769999, 296.85755523800003, 274.24305904899984, 270.4409746420001, 293.0598387099999, 323.26746389799973, 351.6653093829998, 344.16395706299977, 312.0562035559999, 298.7603046050001, 281.7511215960001, 272.25234356900023, 274.059582761, 287.3593728149999, 309.87495484299984, 321.3688437779999], \"power_mean\": 306.12789417723525, \"energy_millijoules\": 10451.95438031295, \"energy_joules\": 10.451954380312952, \"coremark_score\": 7326.436714, \"coremarks_per_mhz\": 7.787453990221089, \"ulpmark_cm_score\": 23.91897160122455}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1303.0982293919997, 1335.1875565690002, 1344.52740471, 1372.9666442980001], \"power_mean\": 1338.94495874225, \"energy_millijoules\": 6694.72479371125, \"energy_joules\": 6.6947247937112495}}, \"1056000\": {\"active\": {\"elapsed_sec\": 30.46684965, \"elapsed_ns\": 30466849650, \"power_samples\": [281.84333627199976, 317.66219118699996, 326.97313099300004, 334.57102360299996, 358.975793695, 372.26668674099983, 387.36461579499996, 359.16999280699997, 349.573801407, 326.87805688100025, 326.97313099300004, 309.96934182799987, 217.411470066, 298.48006111300015, 360.6794997830002, 358.781594583, 355.17561736899984, 334.37992231499993, 343.77897802899975, 364.6702237270001, 368.27500973299993, 381.5681244330001, 379.571809153, 364.37785341099993, 343.6828317809998, 345.681011011, 328.5860520010001, 315.2912693170001, 292.68773946700003, 298.38677405700014], \"power_mean\": 336.78956478503335, \"energy_millijoules\": 10260.917033994545, \"energy_joules\": 10.260917033994545, \"coremark_score\": 8210.719916, \"coremarks_per_mhz\": 7.775302950757576, \"ulpmark_cm_score\": 24.36429406570065}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1355.854119024, 1348.163648907, 1333.032225964, 1314.183826618], \"power_mean\": 1337.80845512825, \"energy_millijoules\": 6689.04227564125, \"energy_joules\": 6.68904227564125}}, \"1171200\": {\"active\": {\"elapsed_sec\": 27.416024867, \"elapsed_ns\": 27416024867, \"power_samples\": [353.08398983300003, 326.49776043300017, 315.102550933, 335.99117558299986, 349.187786575, 377.47314976000007, 384.869693569, 407.65295750899986, 386.869777462, 375.6737739560001, 351.182195483, 332.1953651829999, 326.49776043300017, 330.19825857699993, 358.781594583, 371.6786855509997, 403.8544508760001, 388.76720588600006, 360.2902268339999, 386.672004238, 411.2467056529997, 326.4026863209999, 337.60132184200006, 358.39279840999984, 364.0850836819998, 382.87373599299985, 405.5554920289999], \"power_mean\": 363.2843773032222, \"energy_millijoules\": 9959.813521937751, \"energy_joules\": 9.95981352193775, \"coremark_score\": 9124.753632, \"coremarks_per_mhz\": 7.790944016393443, \"ulpmark_cm_score\": 25.100871562438726}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1381.95701888, 1309.9676279, 1321.37642674, 1255.382340705], \"power_mean\": 1317.17085355625, \"energy_millijoules\": 6585.85426778125, \"energy_joules\": 6.58585426778125}}, \"1286400\": {\"active\": {\"elapsed_sec\": 24.952458058, \"elapsed_ns\": 24952458058, \"power_samples\": [428.128577513, 433.721097073, 416.84101397799986, 394.16528989899984, 428.23050118799983, 443.20855130100017, 409.048274689, 373.18779166800005, 388.37118315, 418.33779151299973, 426.0289677609999, 437.4124208169999, 416.43742993299975, 320.70543903099997, 367.59074322299966, 358.0044001860001, 356.10356085299986, 359.90135232199987, 386.4742310140002, 399.66054106499996, 424.2297561370001, 435.41384219299994, 412.6444792129996, 386.4742310140002], \"power_mean\": 400.84672778058325, \"energy_millijoules\": 10002.111162631547, \"energy_joules\": 10.002111162631547, \"coremark_score\": 10026.46988, \"coremarks_per_mhz\": 7.794208550995025, \"ulpmark_cm_score\": 24.99472320743786}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1324.9276415360002, 1304.01803776, 1307.985490728, 1330.630968576], \"power_mean\": 1316.89053465, \"energy_millijoules\": 6584.45267325, \"energy_joules\": 6.5844526732499995}}, \"1401600\": {\"active\": {\"elapsed_sec\": 22.903633584, \"elapsed_ns\": 22903633584, \"power_samples\": [382.577387025, 388.271771705, 414.5409545729997, 429.51727642900005, 440.80012953699975, 455.9768456649997, 461.5650086049998, 482.4326487579999, 450.2846057449999, 439.0062339729998, 414.3396072369999, 406.85096977700005, 395.4650600969999, 378.48849163299974, 400.958335585, 433.1094888729999, 412.3428154249998, 393.4693406649999, 474.635796843, 472.8444034989998, 461.5650086049998, 444.48936561999994], \"power_mean\": 428.79688844881804, \"energy_millijoules\": 9821.006814991051, \"energy_joules\": 9.821006814991051, \"coremark_score\": 10924.186148, \"coremarks_per_mhz\": 7.794082582762558, \"ulpmark_cm_score\": 25.45563858263424}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1294.2716841560002, 1387.2251265749999, 1360.791501316, 1349.3869919959998], \"power_mean\": 1347.9188260107499, \"energy_millijoules\": 6739.594130053749, \"energy_joules\": 6.7395941300537485}}, \"1497600\": {\"active\": {\"elapsed_sec\": 21.463628961, \"elapsed_ns\": 21463628961, \"power_samples\": [467.2568896, 498.978116343, 489.38789294499975, 470.7361434280001, 457.45888483, 423.4191869230001, 498.7656116129999, 470.63189564799995, 449.7694975909999, 491.2831770969999, 510.0337329429999, 500.6607762049998, 476.11313632299994, 466.8408510559998, 428.9070995339998, 419.52663491499993, 438.290256968, 457.14864346599984, 489.17658235299996, 492.97055668300004, 504.2383207969997], \"power_mean\": 471.5044708219523, \"energy_millijoules\": 10120.197015175036, \"energy_joules\": 10.120197015175036, \"coremark_score\": 11658.27271, \"coremarks_per_mhz\": 7.784637226228632, \"ulpmark_cm_score\": 24.703076395166015}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1316.8287793979998, 1326.4152046999998, 1339.71749673, 1360.364628727], \"power_mean\": 1335.83152738875, \"energy_millijoules\": 6679.15763694375, \"energy_joules\": 6.67915763694375}}, \"1612800\": {\"active\": {\"elapsed_sec\": 19.915961515, \"elapsed_ns\": 19915961515, \"power_samples\": [494.865602203, 464.5293407229999, 456.94139206299997, 468.319431763, 485.38649131299985, 519.1946903109999, 541.7250472329999, 538.0408016549998, 503.9191439089998, 488.860264657, 475.7988918929998, 464.32155959500005, 456.83797827499984, 462.52664066499983, 492.44216858300024, 511.50518546500007, 536.0378146830001, 539.7219409450001, 528.348190765], \"power_mean\": 496.2801356157368, \"energy_millijoules\": 9883.896081581996, \"energy_joules\": 9.883896081581996, \"coremark_score\": 12564.076792, \"coremarks_per_mhz\": 7.790226185515873, \"ulpmark_cm_score\": 25.293669413001915}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1309.064326775, 1309.392677575, 1356.3074738399998, 1320.465258565], \"power_mean\": 1323.80743418875, \"energy_millijoules\": 6619.0371709437495, \"energy_joules\": 6.619037170943749}}, \"1708800\": {\"active\": {\"elapsed_sec\": 18.783931611, \"elapsed_ns\": 18783931611, \"power_samples\": [522.8764831709998, 499.81110793100015, 501.70531945900007, 522.445707262, 552.661103123, 569.4935012530002, 592.2338465529999, 565.8163548850002, 546.7570365579998, 518.6575223499999, 499.81110793100015, 518.5501767459998, 539.178214993, 509.0725476399998, 484.43925036899986, 514.544134453, 554.0065813289998, 544.8633013179999], \"power_mean\": 530.9401831846666, \"energy_millijoules\": 9973.14409047259, \"energy_joules\": 9.973144090472589, \"coremark_score\": 13321.965256, \"coremarks_per_mhz\": 7.796093899812734, \"ulpmark_cm_score\": 25.06732056933045}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1356.222407632, 1374.9591199099998, 1401.547017294, 1380.6570821199998], \"power_mean\": 1378.346406739, \"energy_millijoules\": 6891.732033695, \"energy_joules\": 6.891732033695}}, \"1804800\": {\"active\": {\"elapsed_sec\": 17.791418335, \"elapsed_ns\": 17791418335, \"power_samples\": [559.9109777959998, 565.4853825490002, 582.1999713609998, 591.6734270889997, 618.192896113, 640.5769379410001, 642.4697201169997, 621.637480225, 610.386213169, 636.787494937, 649.697197513, 563.256939289, 589.4407899729999, 610.1598465609998, 630.879691027, 649.8128827930002, 544.6452741420001], \"power_mean\": 606.3066542702941, \"energy_millijoules\": 10787.055325417015, \"energy_joules\": 10.787055325417015, \"coremark_score\": 14066.280313, \"coremarks_per_mhz\": 7.79381666278812, \"ulpmark_cm_score\": 23.175926372690157}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1376.857144182, 1401.2828800109999, 1388.078885298, 1354.069184736], \"power_mean\": 1380.0720235567499, \"energy_millijoules\": 6900.360117783749, \"energy_joules\": 6.900360117783749}}, \"1920000\": {\"active\": {\"elapsed_sec\": 16.72512026, \"elapsed_ns\": 16725120260, \"power_samples\": [670.6424962659999, 653.4859243759997, 632.7722345709999, 608.2671834569999, 686.9786135469999, 651.1302815200002, 630.6507028830001, 655.2623061079998, 666.273620878, 683.191078624, 658.9345134550001, 634.320581467, 611.716015858, 596.565939633, 609.819832783, 626.63370304], \"power_mean\": 642.2903142791249, \"energy_millijoules\": 10742.38274815156, \"energy_joules\": 10.74238274815156, \"coremark_score\": 14963.787634, \"coremarks_per_mhz\": 7.793639392708333, \"ulpmark_cm_score\": 23.272304279329227}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1331.1938186000002, 1359.5108835489998, 1369.0031050500002, 1395.410855278], \"power_mean\": 1363.77966561925, \"energy_millijoules\": 6818.898328096249, \"energy_joules\": 6.81889832809625}}, \"2016000\": {\"active\": {\"elapsed_sec\": 15.93067466, \"elapsed_ns\": 15930674660, \"power_samples\": [654.0660178129997, 649.1187711130001, 684.614504589, 714.6519343729999, 669.5890545389998, 669.706050343, 690.1741307469999, 727.6556110929998, 742.7903650629999, 714.4117326829999, 688.2790220050001, 658.1200689970001, 676.9277469429999, 701.2873633129998, 729.3048700449999], \"power_mean\": 691.3798162439333, \"energy_millijoules\": 11014.146919072684, \"energy_joules\": 11.014146919072683, \"coremark_score\": 15710.425438, \"coremarks_per_mhz\": 7.792869760912699, \"ulpmark_cm_score\": 22.698081098508563}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1357.43895776, 1334.8256635210003, 1319.6365536550002, 1328.9619787079998], \"power_mean\": 1335.2157884110002, \"energy_millijoules\": 6676.078942055001, \"energy_joules\": 6.676078942055001}}, \"2131200\": {\"active\": {\"elapsed_sec\": 15.09066817, \"elapsed_ns\": 15090668170, \"power_samples\": [813.550214005, 789.0919001049999, 740.4133966069999, 717.7169840359998, 747.612368197, 777.748492337, 801.9527387729997, 824.769895009, 786.8284724129999, 756.9477265049998, 734.374331149, 741.8167281609999, 777.624586209, 799.937837769, 822.6228077129997], \"power_mean\": 775.5338985991999, \"energy_millijoules\": 11703.324718346954, \"energy_joules\": 11.703324718346954, \"coremark_score\": 16587.048832, \"coremarks_per_mhz\": 7.782962102102103, \"ulpmark_cm_score\": 21.361451212926053}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1375.819915392, 1402.29973858, 1377.806892336, 1374.09583628], \"power_mean\": 1382.505595647, \"energy_millijoules\": 6912.527978235001, \"energy_joules\": 6.912527978235}}, \"2227200\": {\"active\": {\"elapsed_sec\": 14.421640551, \"elapsed_ns\": 14421640551, \"power_samples\": [871.1295357029999, 833.4567851729998, 812.6665089040002, 848.3194156989998, 887.7441242929999, 917.8465222599998, 884.0978351409999, 853.8606891500001, 829.2971200210002, 834.8353573569998, 866.829465364, 894.7757809109999, 915.5594365030001, 881.5519285629998], \"power_mean\": 866.5693217887142, \"energy_millijoules\": 12497.351271360689, \"energy_joules\": 12.497351271360689, \"coremark_score\": 17356.289919, \"coremarks_per_mhz\": 7.792874424838362, \"ulpmark_cm_score\": 20.004238864030942}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1370.126245632, 1349.336756236, 1326.481254912, 1328.377849344], \"power_mean\": 1343.580526531, \"energy_millijoules\": 6717.902632655, \"energy_joules\": 6.717902632655}}, \"2323200\": {\"active\": {\"elapsed_sec\": 13.828265284, \"elapsed_ns\": 13828265284, \"power_samples\": [964.1316636329998, 975.0544751230004, 999.5994475419998, 963.723646513, 916.9160862630001, 914.8952796580002, 956.0357062039998, 986.106937044, 997.1604064619996, 963.5878263529999, 937.1534723649997, 912.6061816810002, 925.8233586750002], \"power_mean\": 954.8303451935384, \"energy_millijoules\": 13203.647314549544, \"energy_joules\": 13.203647314549544, \"coremark_score\": 18102.824041, \"coremarks_per_mhz\": 7.792193543818871, \"ulpmark_cm_score\": 18.93416220868885}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1316.746345644, 1333.6523974230001, 1365.989932256, 1398.067395137], \"power_mean\": 1353.614017615, \"energy_millijoules\": 6768.070088075, \"energy_joules\": 6.768070088075}}, \"2419200\": {\"active\": {\"elapsed_sec\": 13.279000437, \"elapsed_ns\": 13279000437, \"power_samples\": [1002.824390927, 1062.3803912169997, 1030.2992176809998, 1011.5666295330002, 988.9217117130001, 1024.4976277090004, 1056.292640395, 1080.391353175, 1097.222167725, 1080.391353175, 1060.063907323, 1039.1696424139996, 1007.1004427140001], \"power_mean\": 1041.624728900077, \"energy_millijoules\": 13831.735230254128, \"energy_joules\": 13.831735230254127, \"coremark_score\": 18852.273584, \"coremarks_per_mhz\": 7.792771818783069, \"ulpmark_cm_score\": 18.074377208520843}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1369.351719646, 1388.3185954069997, 1405.3899488719996, 1373.319163825], \"power_mean\": 1384.0948569374998, \"energy_millijoules\": 6920.474284687499, \"energy_joules\": 6.920474284687499}}}}, \"7\": {\"freqs\": {\"825600\": {\"active\": {\"elapsed_sec\": 77.761907538, \"elapsed_ns\": 77761907538, \"power_samples\": [246.2905788889998, 244.2156311929998, 223.36372269899994, 232.84045117300002, 257.4853804449999, 264.976159003, 289.7124689589998, 301.083766665, 280.2318581709999, 251.97888381899998, 233.10851689299966, 225.61380676299996, 249.99364882299983, 223.71876124300002, 233.10851689299966, 272.6496989289999, 238.70746658300004, 225.61380676299996, 242.59091522499966, 265.06753968700014, 299.09567223299996, 280.2318581709999, 267.236608187, 244.48584167299987, 225.52492805499992, 244.48584167299987, 212.517171814, 304.7829047829998, 282.2227627809998, 251.97888381899998, 225.52492805499992, 261.2745189089999, 289.7124689589998, 233.10851689299966, 263.26423206699997, 300.896478121, 221.82371572299985, 242.6808663129998, 266.962108919, 289.805398555, 302.8884546229999, 282.2227627809998, 263.3554936790001, 236.9022528349999, 217.94133921699972, 240.51244218700003, 269.0437986090001, 297.20122207300005, 272.6496989289999, 244.48584167299987, 219.8362656649997, 238.70746658300004, 261.45680350099997, 285.919448181, 302.8884546229999, 261.45680350099997, 285.919448181, 300.896478121, 231.39206278099982, 253.873691195, 272.741556145, 299.002147033, 276.5348153109999, 252.06943051100006, 233.10851689299966, 223.452482335, 244.3057013529999, 261.2745189089999, 289.61953936300006, 300.896478121, 272.741556145, 235.00732638699992, 223.71876124300002, 231.03511810899977, 255.68159629299998, 272.741556145, 263.4467552909998], \"power_mean\": 258.2713684291688, \"energy_millijoules\": 20083.674271501754, \"energy_joules\": 20.083674271501753, \"coremark_score\": 3215.806331, \"coremarks_per_mhz\": 3.8951142575096895, \"ulpmark_cm_score\": 12.447921461997815}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1342.5454708680002, 1361.6802034549999, 1395.55346046, 1406.9315001599998], \"power_mean\": 1376.67765873575, \"energy_millijoules\": 6883.3882936787495, \"energy_joules\": 6.88338829367875}}, \"940800\": {\"active\": {\"elapsed_sec\": 34.113403502, \"elapsed_ns\": 34113403502, \"power_samples\": [379.9126720889999, 366.649598191, 351.49290812499976, 323.2632923850001, 304.5947546980001, 298.8147133330001, 304.313106718, 323.0731441610001, 341.82802126499996, 364.65828686300006, 374.030958865, 351.49290812499976, 334.43872152999984, 358.9739154580002, 379.61632312100005, 383.30783306500007, 298.5341377330001, 319.28203146399983, 332.3533738409999, 355.08942376100003, 377.6245355049998, 373.932668101, 360.67209959700017, 340.12345039499974, 328.6624414539999, 311.51458132900007, 300.33422870100003, 300.33422870100003, 319.28203146399983, 343.528629529, 362.4716616009998, 379.5176748969998, 354.89522464900006, 339.8346176089999], \"power_mean\": 342.30729995067645, \"energy_millijoules\": 11677.26704489757, \"energy_joules\": 11.677267044897569, \"coremark_score\": 7332.453439, \"coremarks_per_mhz\": 7.793849318664966, \"ulpmark_cm_score\": 21.409119020639213}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1322.185594669, 1339.0919389859998, 1357.9747016029999, 1378.8370996600001], \"power_mean\": 1349.5223337295, \"energy_millijoules\": 6747.6116686475, \"energy_joules\": 6.7476116686475}}, \"1056000\": {\"active\": {\"elapsed_sec\": 30.393235371, \"elapsed_ns\": 30393235371, \"power_samples\": [323.1682182730001, 345.5182726290002, 375.53457595300006, 398.26102761699985, 373.834377337, 345.42176892099997, 322.78753217700023, 339.7384713609997, 351.00820531299973, 379.32037844900015, 401.95063094500006, 394.3717449369999, 356.5939267850001, 337.84533196899974, 403.84341312100014, 365.9644976889999, 341.63549013700003, 384.90395540500003, 392.4789627609998, 366.06231192099995, 345.42176892099997, 324.68079064100016, 328.3757556249998, 350.91134414499993, 377.3289480489998, 405.5351517490001, 382.91228661700006, 362.17893333699976, 334.0551738009999, 322.692458065], \"power_mean\": 361.1445234883333, \"energy_millijoules\": 10976.350505328552, \"energy_joules\": 10.976350505328552, \"coremark_score\": 8230.452675, \"coremarks_per_mhz\": 7.793989275568182, \"ulpmark_cm_score\": 22.776240598242158}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1395.55346046, 1408.82654568, 1389.86444061, 1350.303900088], \"power_mean\": 1386.1370867095, \"energy_millijoules\": 6930.6854335475, \"energy_joules\": 6.9306854335475}}, \"1171200\": {\"active\": {\"elapsed_sec\": 27.42438643, \"elapsed_ns\": 27424386430, \"power_samples\": [332.54510536199973, 403.642608205, 435.6307941079999, 416.5950759550001, 384.70553827599997, 352.70726515299975, 354.5068264249999, 373.34252068599994, 397.96109940999986, 431.63833724899996, 416.4940448269999, 382.7141081200002, 358.19441600799996, 356.2046538359998, 391.981143967, 416.3930136990002, 427.95207135400005, 392.08062618300005, 369.36132835800004, 429.74626999300017, 393.87333029499996, 359.8920460080001, 423.86317571799987, 403.34201679700004, 359.98950277999984, 359.8920460080001, 401.24967434099995], \"power_mean\": 389.8703199674444, \"energy_millijoules\": 10691.954312374939, \"energy_joules\": 10.69195431237494, \"coremark_score\": 9122.090053, \"coremarks_per_mhz\": 7.7886697856898905, \"ulpmark_cm_score\": 23.38206773953835}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1395.2027114359998, 1365.0456367240001, 1385.725982962, 1408.38393944], \"power_mean\": 1388.5895676405, \"energy_millijoules\": 6942.9478382025, \"energy_joules\": 6.9429478382025}}, \"1286400\": {\"active\": {\"elapsed_sec\": 24.94103988, \"elapsed_ns\": 24941039880, \"power_samples\": [401.149596277, 431.2299825130001, 463.19838245100004, 442.48457870100015, 442.6899769250001, 463.3023920869998, 440.7943909190001, 425.65296159499985, 453.837283115, 450.05434029899993, 421.971346606, 385.90380227900005, 389.79086820700013, 425.55133486299997, 448.162868891, 461.0992489869998, 425.2464546670001, 397.3620613539997, 380.3239692489999, 406.6238014329999, 444.1704137410002, 466.87683934300003, 444.067595557, 415.887443997], \"power_mean\": 430.309663919, \"energy_millijoules\": 10732.370488553177, \"energy_joules\": 10.732370488553176, \"coremark_score\": 10030.895157, \"coremarks_per_mhz\": 7.797648598414179, \"ulpmark_cm_score\": 23.294015079580273}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1392.957510582, 1419.4010941459997, 1383.83141373, 1304.3768554740002], \"power_mean\": 1375.141718483, \"energy_millijoules\": 6875.708592415, \"energy_joules\": 6.875708592415}}, \"1401600\": {\"active\": {\"elapsed_sec\": 22.904291448, \"elapsed_ns\": 22904291448, \"power_samples\": [455.6290973849998, 477.9166716079999, 477.9166716079999, 448.05981231900023, 413.89517960500007, 406.42293087300004, 441.9706622430001, 477.9166716079999, 481.7022974729998, 440.17891214299993, 410.2095112669999, 413.79426754899987, 447.54410709600006, 477.9166716079999, 475.816108792, 458.9962917729997, 494.5220355629999, 474.0263214309998, 447.64716366799985, 473.9215971189999, 488.9526415980001, 455.00747444499984], \"power_mean\": 456.36195903518177, \"energy_millijoules\": 10452.64731552204, \"energy_joules\": 10.45264731552204, \"coremark_score\": 10923.231529, \"coremarks_per_mhz\": 7.793401490439499, \"ulpmark_cm_score\": 23.917385945735813}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1339.891871118, 1375.902915804, 1341.7859635739999, 1326.792599496], \"power_mean\": 1346.093337498, \"energy_millijoules\": 6730.4666874899995, \"energy_joules\": 6.73046668749}}, \"1497600\": {\"active\": {\"elapsed_sec\": 21.432407239, \"elapsed_ns\": 21432407239, \"power_samples\": [453.21637656000007, 487.1638075449998, 503.97790569200015, 507.5488398609998, 475.60642153599997, 451.0157359239997, 524.675977783, 486.847132633, 452.9061351959997, 511.114508721, 503.7646443240001, 471.61253874299996, 447.2349373799998, 439.6655927539998, 464.0480209499999, 488.741286358, 503.65757662900023, 514.8982265049999, 479.28213830799996, 458.47743553299983, 439.6655927539998], \"power_mean\": 479.2914681756666, \"energy_millijoules\": 10272.369932119094, \"energy_joules\": 10.272369932119094, \"coremark_score\": 11674.060238, \"coremarks_per_mhz\": 7.795179111912393, \"ulpmark_cm_score\": 24.33712976187836}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1403.8884124719998, 1405.6931450879997, 1369.9583413350001, 1341.6172609980001], \"power_mean\": 1380.2892899732499, \"energy_millijoules\": 6901.446449866249, \"energy_joules\": 6.901446449866249}}, \"1612800\": {\"active\": {\"elapsed_sec\": 19.904397817, \"elapsed_ns\": 19904397817, \"power_samples\": [434.60814936299994, 554.2802929329998, 522.1383228729999, 503.2310538930001, 480.8602576169999, 484.64010260899977, 477.1815025330002, 540.9365782649998, 561.6217778890002, 527.7027111769996, 514.5761896929998, 477.07653983299997, 484.3237849129998, 514.4688440889997, 537.045038833, 563.400209205, 537.1538140329999, 510.7931870729999, 478.7562987849999], \"power_mean\": 510.7786660846841, \"energy_millijoules\": 10166.741766186158, \"energy_joules\": 10.166741766186158, \"coremark_score\": 12571.658453, \"coremarks_per_mhz\": 7.794927116195437, \"ulpmark_cm_score\": 24.589982292211037}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1381.0637176320001, 1356.5238242530002, 1328.185484524, 1392.3441744080003], \"power_mean\": 1364.5293002042501, \"energy_millijoules\": 6822.6465010212505, \"energy_joules\": 6.822646501021251}}, \"1708800\": {\"active\": {\"elapsed_sec\": 18.791299945, \"elapsed_ns\": 18791299945, \"power_samples\": [598.976389468, 580.1916602420001, 551.9474928310001, 518.1401527569999, 518.1401527569999, 559.3975131340001, 579.8571135500001, 595.08622012, 557.508543702, 542.3890465679999, 508.4752307409999, 516.0354558399999, 549.8391859429998, 517.8169605959997, 499.1284383510001, 521.5987702989999, 570.517231972, 540.3910635479997], \"power_mean\": 545.8575901343888, \"energy_millijoules\": 10257.373703470173, \"energy_joules\": 10.257373703470174, \"coremark_score\": 13316.997816, \"coremarks_per_mhz\": 7.793186924157303, \"ulpmark_cm_score\": 24.372710522911188}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1350.669210432, 1335.431389392, 1350.839452848, 1382.7000573], \"power_mean\": 1354.9100274930001, \"energy_millijoules\": 6774.550137465001, \"energy_joules\": 6.774550137465001}}, \"1804800\": {\"active\": {\"elapsed_sec\": 17.797063752, \"elapsed_ns\": 17797063752, \"power_samples\": [574.0762486909996, 604.1945542149999, 628.529199613, 611.410832499, 585.522950198, 553.2912145179998, 570.1844728239998, 596.5241391829998, 543.7317573399998, 558.846489154, 586.967005153, 564.5154809890003, 549.4007491750001, 577.4071934449998, 605.6297312049996, 633.852563251, 616.9648522649998], \"power_mean\": 585.9440843363528, \"energy_millijoules\": 10428.084224041335, \"energy_joules\": 10.428084224041335, \"coremark_score\": 14060.742407, \"coremarks_per_mhz\": 7.790748230828901, \"ulpmark_cm_score\": 23.973722749921766}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1414.5405634350002, 1390.013670384, 1369.355018192, 1344.8163760599998], \"power_mean\": 1379.68140701775, \"energy_millijoules\": 6898.40703508875, \"energy_joules\": 6.898407035088749}}, \"1920000\": {\"active\": {\"elapsed_sec\": 16.733819323, \"elapsed_ns\": 16733819323, \"power_samples\": [607.408194523, 643.064190353, 667.265857693, 676.5879260259999, 639.1733094729998, 674.700862722, 680.365919567, 635.5101621229996, 663.370749032, 676.5879260259999, 672.8137994179999, 635.3946007679997, 610.8426633479999, 595.961200683, 605.2901812929999, 633.3922096439996], \"power_mean\": 644.8581095432498, \"energy_millijoules\": 10790.939094068084, \"energy_joules\": 10.790939094068085, \"coremark_score\": 14955.731036, \"coremarks_per_mhz\": 7.789443247916666, \"ulpmark_cm_score\": 23.167585121245672}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1387.9421113709998, 1419.95400651, 1387.9421113709998, 1359.6257753549999], \"power_mean\": 1388.86600115175, \"energy_millijoules\": 6944.330005758749, \"energy_joules\": 6.94433000575875}}, \"2016000\": {\"active\": {\"elapsed_sec\": 15.931822837, \"elapsed_ns\": 15931822837, \"power_samples\": [704.789845538, 683.9036716630001, 709.9746327529997, 734.3927683769998, 638.7119972169999, 648.1505850659998, 681.8987783190003, 694.8751616809998, 721.060028593, 726.601654133, 709.6150670329998, 689.0933488849998, 666.6798021130003, 646.1478362379999, 649.6889254929999], \"power_mean\": 687.0389402067999, \"energy_millijoules\": 10945.782677494972, \"energy_joules\": 10.945782677494972, \"coremark_score\": 15709.43823, \"coremarks_per_mhz\": 7.792380074404762, \"ulpmark_cm_score\": 22.839846849326854}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1333.0307783310002, 1340.604354138, 1367.02778915, 1387.7674517789999], \"power_mean\": 1357.1075933495, \"energy_millijoules\": 6785.537966747499, \"energy_joules\": 6.785537966747499}}, \"2131200\": {\"active\": {\"elapsed_sec\": 15.075872803, \"elapsed_ns\": 15075872803, \"power_samples\": [328.4522579779998, 726.4807265129998, 784.7276182599999, 728.1241282039998, 746.8710081610002, 773.037520413, 799.3229348410002, 799.3229348410002, 767.25392227, 735.549479371, 701.5887570040002, 771.0244747660001, 771.0244747660001, 798.8201237449998, 787.8786916190002], \"power_mean\": 734.6319368501333, \"energy_millijoules\": 11075.217636974137, \"energy_joules\": 11.075217636974138, \"coremark_score\": 16603.573089, \"coremarks_per_mhz\": 7.790715601069821, \"ulpmark_cm_score\": 22.572919846322996}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1396.972361349, 1362.900053838, 1345.946670481, 1336.7353920500002], \"power_mean\": 1360.6386194295, \"energy_millijoules\": 6803.1930971475, \"energy_joules\": 6.8031930971475}}, \"2227200\": {\"active\": {\"elapsed_sec\": 14.44262873, \"elapsed_ns\": 14442628730, \"power_samples\": [840.052495573, 768.8918630379999, 804.6043160270001, 832.382669827, 852.9940901769999, 811.6422203249999, 781.5963381509998, 753.5579003589996, 802.3380981770001, 839.796105253, 856.5036721690001, 826.4707591609999, 790.9017708230001, 745.892602033], \"power_mean\": 807.6874929352142, \"energy_millijoules\": 11665.130590327795, \"energy_joules\": 11.665130590327795, \"coremark_score\": 17332.224071, \"coremarks_per_mhz\": 7.782068997395834, \"ulpmark_cm_score\": 21.431393164795672}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1381.65567345, 1345.8619617329998, 1332.6952793070002, 1355.072597294], \"power_mean\": 1353.821377946, \"energy_millijoules\": 6769.10688973, \"energy_joules\": 6.76910688973}}, \"2323200\": {\"active\": {\"elapsed_sec\": 13.842222316, \"elapsed_ns\": 13842222316, \"power_samples\": [811.6422203249999, 790.9017708230001, 787.1290247489999, 824.4587914690001, 858.1328443260002, 878.8667358369999, 844.9381987879999, 811.3894041170001, 766.265026579, 827.7170396130002, 858.0034577140002, 876.5872956279995, 822.0623549680001], \"power_mean\": 827.5457049950769, \"energy_millijoules\": 11455.071625192806, \"energy_joules\": 11.455071625192806, \"coremark_score\": 18083.18264, \"coremarks_per_mhz\": 7.783739084022039, \"ulpmark_cm_score\": 21.824394310218214}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1404.012779136, 1411.4922324299998, 1372.017215166, 1347.502835696], \"power_mean\": 1383.756265607, \"energy_millijoules\": 6918.781328035, \"energy_joules\": 6.918781328035}}, \"2419200\": {\"active\": {\"elapsed_sec\": 13.276639499, \"elapsed_ns\": 13276639499, \"power_samples\": [904.8589315529998, 930.7065369450002, 936.221183873, 894.906149249, 861.3820381179999, 839.0264089029997, 883.8663253130003, 919.1341088169997, 915.4977819249998, 920.8834458330002, 883.4731615249998, 851.5737118889999, 872.1680846849999], \"power_mean\": 893.3613745098461, \"energy_millijoules\": 11860.836911698354, \"energy_joules\": 11.860836911698353, \"coremark_score\": 18856.539448, \"coremarks_per_mhz\": 7.794535155423281, \"ulpmark_cm_score\": 21.077770638041972}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1337.7850300759999, 1354.816683506, 1381.22081055, 1413.293865025], \"power_mean\": 1371.7790972892499, \"energy_millijoules\": 6858.895486446249, \"energy_joules\": 6.858895486446249}}, \"2534400\": {\"active\": {\"elapsed_sec\": 12.680939232, \"elapsed_ns\": 12680939232, \"power_samples\": [1004.0477865250004, 948.4620296749999, 989.4807953600002, 1028.8793283180003, 995.4023074079996, 967.157777468, 925.99954213, 950.2126020780001, 995.125901768, 1024.971623077, 1000.4971756929999, 949.941914822], \"power_mean\": 981.6815653601667, \"energy_millijoules\": 12448.644275506911, \"energy_joules\": 12.448644275506911, \"coremark_score\": 19742.557056, \"coremarks_per_mhz\": 7.789834696969697, \"ulpmark_cm_score\": 20.08250814041515}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1426.178416347, 1386.4567890209998, 1352.66578912, 1337.6162204299999], \"power_mean\": 1375.7293037294999, \"energy_millijoules\": 6878.6465186475, \"energy_joules\": 6.8786465186475}}, \"2649600\": {\"active\": {\"elapsed_sec\": 12.125132614, \"elapsed_ns\": 12125132614, \"power_samples\": [173.1397806670002, 1071.3197603829994, 1052.073245943, 1093.1785620609999, 1111.555717828, 1063.221404425, 1012.5594056730001, 1059.3143956479998, 1091.1538915410001, 1124.575684633, 1063.0787932569997, 1032.6937618439997], \"power_mean\": 995.6553669919166, \"energy_millijoules\": 12072.453362617827, \"energy_joules\": 12.072453362617827, \"coremark_score\": 20647.505781, \"coremarks_per_mhz\": 7.792687870244565, \"ulpmark_cm_score\": 20.708301162224515}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1367.458910175, 1414.386196232, 1414.653912754, 1386.4567890209998], \"power_mean\": 1395.7389520455, \"energy_millijoules\": 6978.6947602274995, \"energy_joules\": 6.9786947602275}}, \"2745600\": {\"active\": {\"elapsed_sec\": 11.704587416, \"elapsed_ns\": 11704587416, \"power_samples\": [1163.7764133610003, 1099.8329470569997, 1144.5257251530002, 1176.4913819729995, 1204.6947876529998, 1166.942247249, 1118.493890193, 1123.549284868, 1166.792352329, 1209.2714533390003, 1176.0411315919996], \"power_mean\": 1159.1283286151818, \"energy_millijoules\": 13567.11884863837, \"energy_joules\": 13.567118848638371, \"coremark_score\": 21394.950792, \"coremarks_per_mhz\": 7.792450026223777, \"ulpmark_cm_score\": 18.426904252046896}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1395.388618704, 1429.3322283999998, 1386.107111928, 1348.374245184], \"power_mean\": 1389.800551054, \"energy_millijoules\": 6949.002755269999, \"energy_joules\": 6.9490027552699996}}, \"2841600\": {\"active\": {\"elapsed_sec\": 11.306122272, \"elapsed_ns\": 11306122272, \"power_samples\": [1215.0627816380002, 1274.427347457, 1231.669941868, 1190.1739626190001, 1244.053302891, 1301.8205322130002, 1273.6457414009997, 1239.989903059, 1195.358626153, 1245.625989529, 1284.6033802830002], \"power_mean\": 1245.1301371919092, \"energy_millijoules\": 14077.59357564386, \"energy_joules\": 14.07759357564386, \"coremark_score\": 22147.413182, \"coremarks_per_mhz\": 7.793993940737613, \"ulpmark_cm_score\": 17.758716975075473}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1342.615657768, 1376.306689888, 1406.468547732, 1423.5699478], \"power_mean\": 1387.240210797, \"energy_millijoules\": 6936.201053985, \"energy_joules\": 6.936201053985}}, \"2956800\": {\"active\": {\"elapsed_sec\": 10.869873375, \"elapsed_ns\": 10869873375, \"power_samples\": [1346.2591469559998, 1403.3226892810003, 1350.925601201, 1354.6778058730001, 1397.5267196169998, 1442.4034892929994, 1397.198368329, 1358.110507681, 1363.2551867950006, 1415.6347473710002], \"power_mean\": 1382.9314262397, \"energy_millijoules\": 15032.28948953369, \"energy_joules\": 15.03228948953369, \"coremark_score\": 23035.105501, \"coremarks_per_mhz\": 7.790552455695345, \"ulpmark_cm_score\": 16.63086652063638}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1357.229176295, 1342.2772990639999, 1383.781135812, 1428.7013681399999], \"power_mean\": 1377.99724482775, \"energy_millijoules\": 6889.986224138749, \"energy_joules\": 6.889986224138749}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm8150ac/new/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 cpu7 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 1189 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 403 499 576 672 768 844 940 1036 1113 1209 1305 1382 1478 1555 1632 1708 1785\n\n 300:  1114     3.7 C/MHz    163 mW   36.6 J    6.8 I/mJ   224.4 s\n 403:  1497     3.7 C/MHz    160 mW   26.7 J    9.4 I/mJ   167.0 s\n 499:  1854     3.7 C/MHz    170 mW   22.9 J   10.9 I/mJ   134.9 s\n 576:  2139     3.7 C/MHz    186 mW   21.7 J   11.5 I/mJ   116.9 s\n 672:  2495     3.7 C/MHz    176 mW   17.6 J   14.2 I/mJ   100.2 s\n 768:  2852     3.7 C/MHz    189 mW   16.6 J   15.1 I/mJ    87.7 s\n 844:  3137     3.7 C/MHz    195 mW   15.6 J   16.1 I/mJ    79.7 s\n 940:  3493     3.7 C/MHz    200 mW   14.3 J   17.5 I/mJ    71.6 s\n1036:  3850     3.7 C/MHz    203 mW   13.2 J   18.9 I/mJ    64.9 s\n1113:  4135     3.7 C/MHz    207 mW   12.5 J   20.0 I/mJ    60.5 s\n1209:  4491     3.7 C/MHz    220 mW   12.2 J   20.4 I/mJ    55.7 s\n1305:  4848     3.7 C/MHz    229 mW   11.8 J   21.2 I/mJ    51.6 s\n1382:  5133     3.7 C/MHz    238 mW   11.6 J   21.5 I/mJ    48.7 s\n1478:  5489     3.7 C/MHz    248 mW   11.3 J   22.2 I/mJ    45.5 s\n1555:  5775     3.7 C/MHz    246 mW   10.7 J   23.4 I/mJ    43.3 s\n1632:  6060     3.7 C/MHz    243 mW   10.0 J   25.0 I/mJ    41.3 s\n1708:  6345     3.7 C/MHz    255 mW   10.1 J   24.8 I/mJ    39.4 s\n1785:  6630     3.7 C/MHz    264 mW    9.9 J   25.1 I/mJ    37.7 s\n\n\n===== CPU 4 =====\nFrequencies: 710 825 940 1056 1171 1286 1401 1497 1612 1708 1804 1920 2016 2131 2227 2323 2419\n\n 710:  2767     3.9 C/MHz    219 mW   19.8 J   12.7 I/mJ    90.4 s\n 825:  6433     7.8 C/MHz    281 mW   10.9 J   22.9 I/mJ    38.9 s\n 940:  7326     7.8 C/MHz    306 mW   10.5 J   23.9 I/mJ    34.1 s\n1056:  8211     7.8 C/MHz    337 mW   10.3 J   24.4 I/mJ    30.5 s\n1171:  9125     7.8 C/MHz    363 mW   10.0 J   25.1 I/mJ    27.4 s\n1286: 10026     7.8 C/MHz    401 mW   10.0 J   25.0 I/mJ    25.0 s\n1401: 10924     7.8 C/MHz    429 mW    9.8 J   25.5 I/mJ    22.9 s\n1497: 11658     7.8 C/MHz    472 mW   10.1 J   24.7 I/mJ    21.5 s\n1612: 12564     7.8 C/MHz    496 mW    9.9 J   25.3 I/mJ    19.9 s\n1708: 13322     7.8 C/MHz    531 mW   10.0 J   25.1 I/mJ    18.8 s\n1804: 14066     7.8 C/MHz    606 mW   10.8 J   23.2 I/mJ    17.8 s\n1920: 14964     7.8 C/MHz    642 mW   10.7 J   23.3 I/mJ    16.7 s\n2016: 15710     7.8 C/MHz    691 mW   11.0 J   22.7 I/mJ    15.9 s\n2131: 16587     7.8 C/MHz    776 mW   11.7 J   21.4 I/mJ    15.1 s\n2227: 17356     7.8 C/MHz    867 mW   12.5 J   20.0 I/mJ    14.4 s\n2323: 18103     7.8 C/MHz    955 mW   13.2 J   18.9 I/mJ    13.8 s\n2419: 18852     7.8 C/MHz   1042 mW   13.8 J   18.1 I/mJ    13.3 s\n\n\n===== CPU 7 =====\nFrequencies: 825 940 1056 1171 1286 1401 1497 1612 1708 1804 1920 2016 2131 2227 2323 2419 2534 2649 2745 2841 2956\n\n 825:  3216     3.9 C/MHz    258 mW   20.1 J   12.4 I/mJ    77.8 s\n 940:  7332     7.8 C/MHz    342 mW   11.7 J   21.4 I/mJ    34.1 s\n1056:  8230     7.8 C/MHz    361 mW   11.0 J   22.8 I/mJ    30.4 s\n1171:  9122     7.8 C/MHz    390 mW   10.7 J   23.4 I/mJ    27.4 s\n1286: 10031     7.8 C/MHz    430 mW   10.7 J   23.3 I/mJ    24.9 s\n1401: 10923     7.8 C/MHz    456 mW   10.5 J   23.9 I/mJ    22.9 s\n1497: 11674     7.8 C/MHz    479 mW   10.3 J   24.3 I/mJ    21.4 s\n1612: 12572     7.8 C/MHz    511 mW   10.2 J   24.6 I/mJ    19.9 s\n1708: 13317     7.8 C/MHz    546 mW   10.3 J   24.4 I/mJ    18.8 s\n1804: 14061     7.8 C/MHz    586 mW   10.4 J   24.0 I/mJ    17.8 s\n1920: 14956     7.8 C/MHz    645 mW   10.8 J   23.2 I/mJ    16.7 s\n2016: 15709     7.8 C/MHz    687 mW   10.9 J   22.8 I/mJ    15.9 s\n2131: 16604     7.8 C/MHz    735 mW   11.1 J   22.6 I/mJ    15.1 s\n2227: 17332     7.8 C/MHz    808 mW   11.7 J   21.4 I/mJ    14.4 s\n2323: 18083     7.8 C/MHz    828 mW   11.5 J   21.8 I/mJ    13.8 s\n2419: 18857     7.8 C/MHz    893 mW   11.9 J   21.1 I/mJ    13.3 s\n2534: 19743     7.8 C/MHz    982 mW   12.4 J   20.1 I/mJ    12.7 s\n2649: 20648     7.8 C/MHz    996 mW   12.1 J   20.7 I/mJ    12.1 s\n2745: 21395     7.8 C/MHz   1159 mW   13.6 J   18.4 I/mJ    11.7 s\n2841: 22147     7.8 C/MHz   1245 mW   14.1 J   17.8 I/mJ    11.3 s\n2956: 23035     7.8 C/MHz   1383 mW   15.0 J   16.6 I/mJ    10.9 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm8150ac/new/uptime.txt",
    "content": " 16:53:21 up 48 min,  load average: 0.61, 0.68, 0.77\n"
  },
  {
    "path": "results/sm8150ac/new/versions.txt",
    "content": "Kernel: Linux version 4.14.117-proton+ (kdrag0n@pinwheel) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project dcc06597b1d61d35c7246d3ab2d7a807134aaa45)) #42 SMP PREEMPT Sat Dec 5 16:21:57 PST 2020\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm8150ac/voltages.txt",
    "content": "1.300000=600000 1.403200=600000 1.499200=600000 1.576000=600000 1.672000=600000 1.768000=620000 1.844800=632000 1.940800=648000 1.1036800=668000 1.1113600=680000 1.1209600=708000 1.1305600=736000 1.1382400=760000 1.1478400=788000 1.1555200=788000 1.1632000=800000 1.1708800=820000 1.1785600=832000 1.1785600=832000 4.710400=600000 4.825600=624000 4.940800=648000 4.1056000=668000 4.1171200=692000 4.1286400=724000 4.1401600=752000 4.1497600=776000 4.1612800=804000 4.1708800=828000 4.1804800=852000 4.1920000=876000 4.2016000=908000 4.2131200=948000 4.2227200=980000 4.2323200=1016000 4.2419200=1048000 4.2419200=1048000 7.825600=604000 7.940800=620000 7.1056000=636000 7.1171200=656000 7.1286400=672000 7.1401600=688000 7.1497600=712000 7.1612800=736000 7.1708800=756000 7.1804800=776000 7.1920000=800000 7.2016000=820000 7.2131200=844000 7.2227200=856000 7.2323200=876000 7.2419200=900000 7.2534400=932000 7.2649600=960000 7.2745600=984000 7.2841600=1012000 7.2956800=1040000 7.2956800=1040000\n"
  },
  {
    "path": "results/sm8250/k30s/cmdline.txt",
    "content": "ramoops_memreserve=4M rcu_nocbs=1-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on rcupdate.rcu_expedited=1 rcu_nocbs=0-7 console=ttyMSM0,115200n8 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 androidboot.usbcontroller=a600000.dwc3 swiotlb=2048 loop.max_part=7 cgroup.memory=nokmem,nosocket reboot=panic_warm buildvariant=user androidboot.verifiedbootstate=orange androidboot.keymaster=1 androidboot.vbmeta.device=PARTUUID=09a20846-a571-749c-edb8-aaa8b1927d23 androidboot.vbmeta.avb_version=1.0 androidboot.vbmeta.device_state=unlocked androidboot.vbmeta.hash_alg=sha256 androidboot.vbmeta.size=9216 androidboot.vbmeta.digest=ce30912ad417eac03139c71d10746e2d405438ebf44a5435696928f730159f59 androidboot.vbmeta.invalidate_on_error=yes androidboot.veritymode=enforcing androidboot.bootdevice=1d84000.ufshc androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED androidboot.secureboot=1 androidboot.hwversion=8.9.0 androidboot.cpuid=REDACTED androidboot.camera.config=1 androidboot.hwc=CN androidboot.hwlevel=MP androidboot.baseband=mdm msm_drm.dsi_display0=qcom,mdss_dsi_j3s_37_02_0a_dsc_video: androidboot.oled_wp=8b78ba androidboot.dtbo_idx=1 androidboot.dtb_idx=0 androidboot.ramdump=disable block2mtd.block2mtd=/dev/block/sda15,2097152 mtdoops.mtddev=0 mtdoops.record_size=2097152 mtdoops.dump_oops=0 printk.always_kmsg_dump=1 androidboot.dp=0x0\n"
  },
  {
    "path": "results/sm8250/k30s/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 14 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0xd0d\nCPU revision\t: 0\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0xd0d\nCPU revision\t: 0\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0xd0d\nCPU revision\t: 0\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0xd0d\nCPU revision\t: 0\n\nHardware\t: Qualcomm Technologies, Inc SM8250\n"
  },
  {
    "path": "results/sm8250/k30s/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. xiaomi apollo;\nCompatible: qcom,kona-mtp;qcom,kona;qcom,mtp;\n"
  },
  {
    "path": "results/sm8250/k30s/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x51df805e]\n[    0.000000] Linux version 4.19.81-HiiraKernel+ (apollo@equinix-ci) (gcc version 10.2.0 (GCC)) #1 SMP PREEMPT Wed Jan 6 06:46:37 UTC 2021\n[    0.000000] Machine model: Qualcomm Technologies, Inc. xiaomi apollo\n[    0.000000] ramoops: msm_reserve_ramoops_memory addr=b0000000,size=400000\n[    0.000000] ramoops: msm_reserve_ramoops_memory record_size=0,ftrace_size=0\n[    0.000000] Reserved memory: created DMA memory pool at 0x00000000ffc00000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node mailbox_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fdc00000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fc800000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fb400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node cnss_wlan_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fa800000, size 12 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f8000000, size 40 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f7000000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node user_contig_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ecc00000, size 164 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ebc00000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000eb800000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ea800000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ea000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sdsp_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086200000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_camera_region@86200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086700000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node pil_wlan_fw_region@86700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086800000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node pil_ipa_fw_region@86800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086810000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node pil_ipa_gsi_region@86810000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008681a000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node pil_gpu_region@8681a000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086900000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_npu_region@86900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086e00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region@86e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000087300000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_cvp_region@87300000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000087800000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node pil_cdsp_region@87800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000088c00000, size 21 MiB\n[    0.000000] OF: reserved mem: initialized node pil_slpi_region@88c00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008a100000, size 37 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region@8a100000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008c600000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node pil_spss_region@8c600000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008c700000, size 70 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_secure_heap@8c700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000b0400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node disp_rdump_region@9c000000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 2007876\n[    0.000000]   Normal zone: 32734 pages used for memmap\n[    0.000000]   Normal zone: 0 pages reserved\n[    0.000000]   Normal zone: 2007876 pages, LIFO batch:63\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.1\n[    0.000000] random: fast init done\n[    0.000000] random: get_random_bytes called from start_kernel+0x9c/0x568 with crng_init=1\n[    0.000000] percpu: Embedded 22 pages/cpu s58648 r0 d31464 u90112\n[    0.000000] pcpu-alloc: s58648 r0 d31464 u90112 alloc=22*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] CPU features: detected: Speculative Store Bypassing Safe (SSBS)\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1975142\n[    0.000000] Kernel command line: ramoops_memreserve=4M rcu_nocbs=1-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on rcupdate.rcu_expedited=1 rcu_nocbs=0-7 console=ttyMSM0,115200n8 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 androidboot.usbcontroller=a600000.dwc3 swiotlb=2048 loop.max_part=7 cgroup.memory=nokmem,nosocket reboot=panic_warm buildvariant=user androidboot.verifiedbootstate=orange androidboot.keymaster=1 androidboot.vbmeta.device=PARTUUID=09a20846-a571-749c-edb8-aaa8b1927d23 androidboot.vbmeta.avb_version=1.0 androidboot.vbmeta.device_state=unlocked androidboot.vbmeta.hash_alg=sha256 androidboot.vbmeta.size=9216 androidboot.vbmeta.digest=ce30912ad417eac03139c71d10746e2d405438ebf44a5435696928f730159f59 androidboot.vbmeta.invalidate_on_error=yes androidboot.veritymode=enforcing androidboot.bootdevice=1d84000.ufshc androidboot.\n[    0.000000] mi-dsi-display:[oled_wp_info_setup] androidboot.oled_wp=8b78ba\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Memory: 7415836K/8031504K available (24062K kernel code, 2886K rwdata, 9664K rodata, 6144K init, 12553K bss, 259316K reserved, 356352K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n\n[    0.000000] **********************************************************\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **                                                      **\n[    0.000000] ** trace_printk() being used. Allocating extra memory.  **\n[    0.000000] **                                                      **\n[    0.000000] ** This means that this is a DEBUG kernel and it is     **\n[    0.000000] ** unsafe for production use.                           **\n[    0.000000] **                                                      **\n[    0.000000] ** If you see this message and you are not debugging    **\n[    0.000000] ** the kernel, report this immediately to your vendor!  **\n[    0.000000] **                                                      **\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **********************************************************\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: Distributor has no Range Selector support\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] ITS: No ITS available, not enabling LPIs\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] Successfully registered dummy reset controller for cpucc_clocks\n[    0.000000] Successfully registered dummy clock controller for cpucc_clocks\n[    0.000000] arch_timer: CPU0: Trapping CNTVCT access\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000010] clocksource: Switched to clocksource arch_sys_counter\n[    0.001753] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001759] pid_max: default: 32768 minimum: 301\n[    0.001829] Security Framework initialized\n[    0.001836] SELinux:  Initializing.\n[    0.001971] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.001984] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.015352] ASID allocator initialised with 65536 entries\n[    0.017446] rcu: Hierarchical SRCU implementation.\n[    0.021669] scm_mem_protection_init: SCM call failed\n[    0.023389] shmbridge is enabled\n[    0.025944] smp: Bringing up secondary CPUs ...\n[    0.035338] Detected VIPT I-cache on CPU1\n[    0.035396] arch_timer: CPU1: Trapping CNTVCT access\n[    0.035402] CPU1: Booted secondary processor 0x0000000100 [0x51df805e]\n[    0.044771] Detected VIPT I-cache on CPU2\n[    0.044807] arch_timer: CPU2: Trapping CNTVCT access\n[    0.044812] CPU2: Booted secondary processor 0x0000000200 [0x51df805e]\n[    0.054117] Detected VIPT I-cache on CPU3\n[    0.054145] arch_timer: CPU3: Trapping CNTVCT access\n[    0.054150] CPU3: Booted secondary processor 0x0000000300 [0x51df805e]\n[    0.063812] CPU features: enabling workaround for Mismatched cache type\n[    0.063816] CPU features: enabling workaround for ARM erratum 1542418\n[    0.063819] CPU features: detected: Hardware dirty bit management\n[    0.063824] Detected PIPT I-cache on CPU4\n[    0.063849] CPU features: Unsupported CPU feature variation detected.\n[    0.063884] arch_timer: CPU4: Trapping CNTVCT access\n[    0.063896] CPU4: Booted secondary processor 0x0000000400 [0x411fd0d0]\n[    0.073504] Detected PIPT I-cache on CPU5\n[    0.073562] arch_timer: CPU5: Trapping CNTVCT access\n[    0.073574] CPU5: Booted secondary processor 0x0000000500 [0x411fd0d0]\n[    0.083234] Detected PIPT I-cache on CPU6\n[    0.083289] arch_timer: CPU6: Trapping CNTVCT access\n[    0.083302] CPU6: Booted secondary processor 0x0000000600 [0x411fd0d0]\n[    0.093031] Detected PIPT I-cache on CPU7\n[    0.093062] arch_timer: CPU7: Trapping CNTVCT access\n[    0.093068] CPU7: Booted secondary processor 0x0000000700 [0x411fd0d0]\n[    0.093210] smp: Brought up 1 node, 8 CPUs\n[    0.093214] SMP: Total of 8 processors activated.\n[    0.093218] CPU features: detected: GIC system register CPU interface\n[    0.093220] CPU features: detected: Privileged Access Never\n[    0.093222] CPU features: detected: User Access Override\n[    0.093224] CPU features: detected: 32-bit EL0 Support\n[    0.093226] CPU features: detected: RAS Extension Support\n[    0.093540] CPU: All CPU(s) started at EL1\n[    0.093581] alternatives: patching kernel code\n[    0.094655] devtmpfs: initialized\n[    0.170111] Registered cp15_barrier emulation handler\n[    0.170123] Registered setend emulation handler\n[    0.170455] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.170465] futex hash table entries: 2048 (order: 5, 131072 bytes)\n[    0.176195] ramoops: msm_register_ramoops_device\n[    0.176338] pinctrl core: initialized pinctrl subsystem\n\n[    0.176610] *************************************************************\n[    0.176612] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE    **\n[    0.176614] **                                                         **\n[    0.176615] **  IOMMU DebugFS SUPPORT HAS BEEN ENABLED IN THIS KERNEL  **\n[    0.176616] **                                                         **\n[    0.176617] ** This means that this kernel is built to expose internal **\n[    0.176618] ** IOMMU data structures, which may compromise security on **\n[    0.176620] ** your system.                                            **\n[    0.176621] **                                                         **\n[    0.176622] ** If you see this message and you are not debugging the   **\n[    0.176623] ** kernel, report this immediately to your vendor!         **\n[    0.176624] **                                                         **\n[    0.176625] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE    **\n[    0.176626] *************************************************************\n[    0.176904] NET: Registered protocol family 16\n[    0.178458] schedtune: configured to support 6 boost groups\n[    0.189125] console [pstore-1] enabled\n[    0.189261] pstore: Registered ramoops as persistent store backend\n[    0.189264] ramoops: attached 0x400000@0xb0000000, ecc: 0/0\n[    0.189546] cpuidle: using governor menu\n[    0.189562] cpuidle: using governor qcom\n[    0.189639] NET: Registered protocol family 42\n[    0.190667] vdso: 2 pages (1 code @ (____ptrval____), 1 data @ (____ptrval____))\n[    0.190671] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.191386] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.192804] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.194138] exit: IPA_USB init success!\n[    0.197976] msm_watchdog 17c10000.qcom,wdt: wdog absent resource not present\n[    0.198111] msm_watchdog 17c10000.qcom,wdt: MSM Watchdog Initialized\n[    0.201686] Unable to find DT property: qcom,msm-imem-download_mode\n[    0.202439] Unable to find DT property: qcom,msm-imem-emergency_download_mode\n[    0.206433] msm-dcc 1023000.dcc_v2: DCC list passed 3\n[    0.206607] msm-dcc 1023000.dcc_v2: All values written to enable.\n[    0.206700] msm-dcc 1023000.dcc_v2: DCC list passed 6\n[    0.206889] msm-dcc 1023000.dcc_v2: All values written to enable.\n[    0.206978] msm-dcc 1023000.dcc_v2: DCC list passed 7\n[    0.207163] msm-dcc 1023000.dcc_v2: All values written to enable.\n[    0.207295] platform 82400000.qseecom: assigned reserved memory node qseecom_region\n[    0.209604] sps:sps is ready.\n[    0.210123] spmi spmi-0: PMIC arbiter version v5 (0x50010000)\n[    0.216516] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.217142] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.219984] pm8150a_s3_mmcx_sup_level: regulator get failed, ret=-517\n[    0.220157] pm8150_s3_level: supplied by pm8150a_s3_level\n[    0.220305] pm8150_s3_level_ao: supplied by pm8150a_s3_level_ao\n[    0.220939] pm8150a_s3_mmcx_sup_level: supplied by pm8150_s3_mmcx_sup_level\n[    0.226911] pm8150a_s4_level: supplied by pm8150a_s3_mmcx_sup_level\n[    0.227202] pm8150a_s4_level_ao: supplied by pm8150a_s3_level_ao\n[    0.233050] rpmh_regulator_probe: smpf1: could not find RPMh address for resource\n[    0.233168] rpmh_regulator_probe: smpf2: could not find RPMh address for resource\n[    0.233284] rpmh_regulator_probe: ldof1: could not find RPMh address for resource\n[    0.233394] rpmh_regulator_probe: ldof2: could not find RPMh address for resource\n[    0.233503] rpmh_regulator_probe: ldof3: could not find RPMh address for resource\n[    0.233614] rpmh_regulator_probe: ldof4: could not find RPMh address for resource\n[    0.233729] rpmh_regulator_probe: ldof5: could not find RPMh address for resource\n[    0.233842] rpmh_regulator_probe: ldof6: could not find RPMh address for resource\n[    0.233951] rpmh_regulator_probe: ldof7: could not find RPMh address for resource\n[    0.235602] platform soc:qcom,ipa_fws: assigned reserved memory node pil_ipa_gsi_region@86810000\n[    0.235663] platform soc:qcom,ipa_uc: assigned reserved memory node pil_ipa_fw_region@86800000\n[    0.237451] platform 17300000.qcom,lpass: assigned reserved memory node pil_adsp_region@8a100000\n[    0.237577] platform 8300000.qcom,turing: assigned reserved memory node pil_cdsp_region@87800000\n[    0.237656] platform aab0000.qcom,venus: assigned reserved memory node pil_video_region@86e00000\n[    0.237787] platform 188101c.qcom,spss: assigned reserved memory node pil_spss_region@8c600000\n[    0.237862] platform abb0000.qcom,cvpss: assigned reserved memory node pil_cvp_region@87300000\n[    0.237934] platform 9800000.qcom,npu: assigned reserved memory node pil_npu_region@86900000\n[    0.238115] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.238467] platform soc:mem_dump: assigned reserved memory node mem_dump_region\n[    0.248534] MSM Memory Dump base table set up\n[    0.248541] MSM Memory Dump apps data table set up\n[    0.248926] platform 5c00000.qcom,ssc: assigned reserved memory node pil_slpi_region@88c00000\n[    0.250882] platform 88a7000.msm_tspp: assigned reserved memory node qseecom_region\n[    0.289309] cryptd: max_cpu_qlen set to 1000\n[    0.292873] gdsc ad07004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.292921] gdsc ad07004.qcom,gdsc: Dropping the link to regulator.31\n[    0.293070] gdsc ad0a004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.293092] gdsc ad0a004.qcom,gdsc: Dropping the link to regulator.31\n[    0.293223] gdsc ad0b004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.293247] gdsc ad0b004.qcom,gdsc: Dropping the link to regulator.31\n[    0.293392] gdsc ad08004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.293414] gdsc ad08004.qcom,gdsc: Dropping the link to regulator.31\n[    0.293537] gdsc ad09004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.293559] gdsc ad09004.qcom,gdsc: Dropping the link to regulator.31\n[    0.293696] gdsc ad0c144.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.293717] gdsc ad0c144.qcom,gdsc: Dropping the link to regulator.31\n[    0.293848] gdsc af03000.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.293869] gdsc af03000.qcom,gdsc: Dropping the link to regulator.31\n[    0.294051] gdsc 3d9106c.qcom,gdsc: Linked as a consumer to regulator.4\n[    0.294064] gpu_cx_gdsc: supplied by pm8150_s3_level\n[    0.294404] gdsc 3d9100c.qcom,gdsc: Linked as a consumer to regulator.30\n[    0.294419] gpu_gx_gdsc: supplied by pm8150a_s1_level\n[    0.294780] gdsc abf0d18.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.294802] gdsc abf0d18.qcom,gdsc: Dropping the link to regulator.31\n[    0.294930] gdsc abf0bf8.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.294950] gdsc abf0bf8.qcom,gdsc: Dropping the link to regulator.31\n[    0.295086] gdsc abf0d98.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.295107] gdsc abf0d98.qcom,gdsc: Dropping the link to regulator.31\n[    0.295233] gdsc abf0c98.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.295254] gdsc abf0c98.qcom,gdsc: Dropping the link to regulator.31\n[    0.296603] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.297309] gcc-kona 100000.qcom,gcc: Linked as a consumer to regulator.31\n[    0.297335] gcc-kona 100000.qcom,gcc: Linked as a consumer to regulator.4\n[    0.297380] gcc-kona 100000.qcom,gcc: Linked as a consumer to regulator.5\n[    0.331646] gcc-kona 100000.qcom,gcc: Registered GCC clocks\n[    0.331994] gpu_cc-kona 3d90000.qcom,gpucc: Linked as a consumer to regulator.4\n[    0.332025] gpu_cc-kona 3d90000.qcom,gpucc: Linked as a consumer to regulator.1\n[    0.339370] gpu_cc-kona 3d90000.qcom,gpucc: Registered GPU CC clocks\n[    0.339681] npu_cc-kona 9980000.qcom,npucc: Linked as a consumer to regulator.4\n[    0.368878] npu_cc-kona 9980000.qcom,npucc: Registered NPU_CC clocks\n[    0.369290] video_cc-kona abf0000.qcom,videocc: Linked as a consumer to regulator.1\n[    0.369319] video_cc-kona abf0000.qcom,videocc: Linked as a consumer to regulator.31\n[    0.369322] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.369325] video_cc-kona abf0000.qcom,videocc: Unable to register for bw voting\n[    0.369373] video_cc-kona abf0000.qcom,videocc: Dropping the link to regulator.31\n[    0.369393] video_cc-kona abf0000.qcom,videocc: Dropping the link to regulator.1\n[    0.372847] Minidump: Enabled with max number of regions 200\n[    0.373351] KPI: Bootloader start count = 69755\n[    0.373354] KPI: Bootloader end count = 114868\n[    0.373356] KPI: Bootloader display count = 4217063891\n[    0.373357] KPI: Bootloader load kernel count = 2453368375\n[    0.373361] KPI: Kernel MPM timestamp = 136772\n[    0.373363] KPI: Kernel MPM Clock frequency = 32768\n[    0.373379] socinfo_print: v0.15, id=356, ver=2.1, raw_id=195, raw_ver=2, hw_plat=42, hw_plat_ver=589824\n                accessory_chip=1, hw_plat_subtype=0, pmic_model=65566, pmic_die_revision=196608 foundry_id=1 serial_number=1188531033 num_pmics=5 chip_family=0x5d raw_device_family=0x6 raw_device_number=0x8 nproduct_id=0x412 num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xc ndefective_parts_array_offset=0xb4 nmodem_supported=0x0\n[    0.373381] msm_bus_fabric_rpmh_init_driver\n[    0.373533] msm_bus: Probe started\n[    0.374108] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.374123] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.374194] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.376764] msm_bus: DT Parsing complete\n[    0.379716] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.379755] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.379937] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.394939] arm-smmu 3da0000.kgsl-smmu: Linked as a consumer to regulator.61\n[    0.394995] arm-smmu 3da0000.kgsl-smmu: \tnon-coherent table walk\n[    0.394998] arm-smmu 3da0000.kgsl-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.395002] arm-smmu 3da0000.kgsl-smmu: \tstream matching with 6 register groups\n[    0.396797] register_client_adhoc:find path.src 161 dest 627\n[    0.396952] register_client_adhoc:Client handle 1 apps_smmu\n[    0.397024] arm-smmu 15000000.apps-smmu: \tnon-coherent table walk\n[    0.397027] arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.397031] arm-smmu 15000000.apps-smmu: \tstream matching with 87 register groups\n[    0.397711] register_client_adhoc:find path.src 161 dest 627\n[    0.397853] register_client_adhoc:Client handle 2 apps_smmu\n[    0.398039] register_client_adhoc:find path.src 161 dest 627\n[    0.398183] register_client_adhoc:Client handle 3 apps_smmu\n[    0.398390] qsmmuv500-tbu 1518d000.mnoc_hf_0_tbu: Linked as a consumer to regulator.57\n[    0.398417] register_client_adhoc:find path.src 22 dest 773\n[    0.398489] register_client_adhoc:Client handle 4 mnoc_hf_0_tbu\n[    0.398693] qsmmuv500-tbu 15191000.mnoc_hf_1_tbu: Linked as a consumer to regulator.58\n[    0.398718] register_client_adhoc:find path.src 22 dest 773\n[    0.398791] register_client_adhoc:Client handle 5 mnoc_hf_1_tbu\n[    0.398972] register_client_adhoc:find path.src 154 dest 10070\n[    0.399024] register_client_adhoc:Client handle 6 apps_smmu\n[    0.399198] register_client_adhoc:find path.src 154 dest 10070\n[    0.399245] register_client_adhoc:Client handle 7 apps_smmu\n[    0.399426] register_client_adhoc:find path.src 161 dest 627\n[    0.399571] register_client_adhoc:Client handle 8 apps_smmu\n[    0.399765] register_client_adhoc:find path.src 161 dest 627\n[    0.399906] register_client_adhoc:Client handle 9 apps_smmu\n[    0.400132] qsmmuv500-tbu 151a5000.mnoc_sf_0_tbu: Linked as a consumer to regulator.59\n[    0.400161] register_client_adhoc:find path.src 137 dest 772\n[    0.400233] register_client_adhoc:Client handle 10 mnoc_sf_0_tbu\n[    0.400440] qsmmuv500-tbu 151a9000.mnoc_sf_1_tbu: Linked as a consumer to regulator.60\n[    0.400465] register_client_adhoc:find path.src 137 dest 772\n[    0.400534] register_client_adhoc:Client handle 11 mnoc_sf_1_tbu\n[    0.401088] vgaarb: loaded\n[    0.401260] SCSI subsystem initialized\n[    0.401339] usbcore: registered new interface driver usbfs\n[    0.401355] usbcore: registered new interface driver hub\n[    0.401465] usbcore: registered new device driver usb\n[    0.401661] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.401698] usb_phy_generic soc:usb_nop_phy: Linked as a consumer to regulator.0\n[    0.402105] [mi-touch] xiaomi_touch_parse_dt: touch,name:xiaomi-touch\n[    0.402257] input: xiaomi-touch as /devices/virtual/input/input0\n[    0.402297] [mi-touch] xiaomi_touch_probe: over\n[    0.402465] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.402490] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.402715] input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800/input/input1\n[    0.403683] 0x8c0:0x1 0x8c1:0x0 0x8c2:0x0 0x8c3:0x0 0x8c4:0x80 0x8c5:0x2 0x8c6:0x0 0x8c7:0x80 0x8c8:0x0 0x8c9:0x20 0x8ca:0x0 0x8cb:0x0 0x842:0x7 0x84a:0x1 0x85a:0x7 \n[    0.403796] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150b@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from CBL (External Power Supply) and 'cold' boot\n[    0.403819] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150b@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from SOFT (Software)\n[    0.403975] 0x8c0:0x40 0x8c1:0x0 0x8c2:0x0 0x8c3:0x0 0x8c4:0x80 0x8c5:0x1 0x8c6:0x0 0x8c7:0x80 0x8c8:0x0 0x8c9:0x8 0x8ca:0x0 0x8cb:0x0 \n[    0.404073] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150l@4:qcom,power-on@800: PMIC@SID4 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'cold' boot\n[    0.404097] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150l@4:qcom,power-on@800: PMIC@SID4: Power-off reason: Triggered from SOFT (Software)\n[    0.404250] 0x8c0:0x20 0x8c1:0x0 0x8c2:0x0 0x8c3:0x0 0x8c4:0x80 0x8c5:0x1 0x8c6:0x0 0x8c7:0x80 0x8c8:0x0 0x8c9:0x8 0x8ca:0x0 0x8cb:0x0 \n[    0.404318] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.404323] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8009@a:qcom,power-on@800: Register read failed, addr=0x0805, rc=-5\n[    0.404330] qcom,qpnp-power-on: probe of c440000.qcom,spmi:qcom,pm8009@a:qcom,power-on@800 failed with error -5\n[    0.404401] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pmxprairie@8:qcom,power-on@800: PMIC@SID8 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'cold' boot\n[    0.404424] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pmxprairie@8:qcom,power-on@800: PMIC@SID8: Power-off reason: Triggered from SOFT (Software)\n[    0.404584] 0x8c0:0x20 0x8c1:0x0 0x8c2:0x0 0x8c3:0x0 0x8c4:0x80 0x8c5:0x1 0x8c6:0x0 0x8c7:0x80 0x8c8:0x0 0x8c9:0x8 0x8ca:0x0 0x8cb:0x0 \n[    0.404803] media: Linux media interface: v0.10\n[    0.404819] videodev: Linux video capture interface: v2.00\n[    0.404856] pps_core: LinuxPPS API ver. 1 registered\n[    0.404858] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>\n[    0.404865] PTP clock support registered\n[    0.411962] virt zone: sensor[gpuss-1-usr] read error:-22\n[    0.411967] thermal thermal_zone25: failed to read out thermal zone (-22)\n[    0.414087] EDAC MC: Ver: 3.0.0\n[    0.415304] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=300000 volt=568000, core_count 4\n[    0.415484] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=403200 volt=568000, core_count 4\n[    0.415600] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=518400 volt=568000, core_count 4\n[    0.415720] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=614400 volt=568000, core_count 4\n[    0.415845] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=691200 volt=568000, core_count 4\n[    0.415963] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=787200 volt=584000, core_count 4\n[    0.416076] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=883200 volt=588000, core_count 4\n[    0.416188] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=979200 volt=600000, core_count 4\n[    0.416303] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1075200 volt=612000, core_count 4\n[    0.416429] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1171200 volt=620000, core_count 4\n[    0.416545] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=1248000 volt=636000, core_count 4\n[    0.416659] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=1344000 volt=652000, core_count 4\n[    0.416774] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=1420800 volt=668000, core_count 4\n[    0.416899] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=1516800 volt=688000, core_count 4\n[    0.417015] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=1612800 volt=716000, core_count 4\n[    0.417129] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=1708800 volt=744000, core_count 4\n[    0.417239] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=1804800 volt=776000, core_count 4\n[    0.417369] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=17 freq=1804800 volt=776000, core_count 4\n[    0.417406] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=710400 volt=588000, core_count 4\n[    0.417515] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=825600 volt=608000, core_count 4\n[    0.417598] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=940800 volt=628000, core_count 4\n[    0.417687] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=1056000 volt=644000, core_count 4\n[    0.417775] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=1171200 volt=664000, core_count 4\n[    0.417867] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=1286400 volt=680000, core_count 4\n[    0.417956] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=1382400 volt=696000, core_count 4\n[    0.418043] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=1478400 volt=716000, core_count 4\n[    0.418135] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1574400 volt=732000, core_count 4\n[    0.418239] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1670400 volt=752000, core_count 4\n[    0.418332] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=1766400 volt=772000, core_count 4\n[    0.418426] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=1862400 volt=800000, core_count 4\n[    0.418514] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=1958400 volt=812000, core_count 4\n[    0.418602] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=2054400 volt=836000, core_count 4\n[    0.418695] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=2150400 volt=852000, core_count 4\n[    0.418774] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=2246400 volt=876000, core_count 4\n[    0.418862] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=2342400 volt=892000, core_count 4\n[    0.418956] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=17 freq=2419200 volt=912000, core_count 4\n[    0.419044] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=18 freq=2419200 volt=912000, core_count 4\n[    0.419080] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=844800 volt=576000, core_count 4\n[    0.419128] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=960000 volt=592000, core_count 4\n[    0.419160] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=1075200 volt=608000, core_count 4\n[    0.419189] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=1190400 volt=620000, core_count 4\n[    0.419228] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=1305600 volt=632000, core_count 4\n[    0.419259] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=1401600 volt=644000, core_count 4\n[    0.419291] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=1516800 volt=660000, core_count 4\n[    0.419320] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=1632000 volt=676000, core_count 4\n[    0.419361] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1747200 volt=696000, core_count 4\n[    0.419390] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1862400 volt=712000, core_count 4\n[    0.419419] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=1977600 volt=732000, core_count 4\n[    0.419459] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=2073600 volt=748000, core_count 4\n[    0.419487] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=2169600 volt=800000, core_count 4\n[    0.419518] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=2265600 volt=800000, core_count 4\n[    0.419557] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=2361600 volt=808000, core_count 4\n[    0.419586] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=2457600 volt=824000, core_count 4\n[    0.419620] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=2553600 volt=844000, core_count 4\n[    0.419658] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=17 freq=2649600 volt=864000, core_count 4\n[    0.419688] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=18 freq=2745600 volt=884000, core_count 4\n[    0.419718] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=19 freq=2841600 volt=904000, core_count 4\n[    0.419746] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=20 freq=2841600 volt=904000, core_count 4\n[    0.421325] cpufreq: driver qcom-cpufreq-hw up and running\n[    0.422718] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node sdsp_region\n[    0.422851] platform soc:qcom,ion:qcom,ion-heap@26: assigned reserved memory node user_contig_region\n[    0.422917] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.422990] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.423053] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.423122] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.423413] ION heap system created\n[    0.423475] ION heap adsp created at 0x00000000ea000000 with size 800000\n[    0.423478] ION heap secure_heap created\n[    0.423485] ION heap user_contig created at 0x00000000f7000000 with size 1000000\n[    0.423488] ION heap qsecom created at 0x00000000fc800000 with size 1400000\n[    0.423490] ION heap qsecom_ta created at 0x00000000ebc00000 with size 1000000\n[    0.423493] ION heap spss created at 0x00000000ea800000 with size 1000000\n[    0.423495] ION heap secure_display created at 0x00000000ecc00000 with size a400000\n[    0.483058] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x8c700000, size 0x4600000\n[    0.483060] ION heap secure_carveout created\n[    0.483728] PMIC@SID2: PM8150B v2.0 options: 0, 0, 0, 0\n[    0.483841] PMIC@SID4: PM8150L v3.0 options: 0, 0, 0, 0\n[    0.483889] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.483890] read failed rc=-5\n[    0.483892] Invalid REVID peripheral type: 00\n[    0.483898] qcom,qpnp-revid: probe of c440000.qcom,spmi:qcom,pm8009@a:qcom,revid@100 failed with error -22\n[    0.484699] register_client_adhoc:find path.src 90 dest 770\n[    0.484930] register_client_adhoc:find path.src 129 dest 512\n[    0.484995] register_client_adhoc:find path.src 90 dest 585\n[    0.485248] register_client_adhoc:find path.src 1 dest 676\n[    0.485452] register_client_adhoc:find path.src 143 dest 777\n[    0.485510] register_client_adhoc:Client handle 12 ipa\n[    0.489484] ipa 1e00000.qcom,ipa:ipa_smmu_ap: Linked as a consumer to 15000000.apps-smmu\n[    0.494016] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_ap to group 0\n[    0.494289] ipa 1e00000.qcom,ipa:ipa_smmu_wlan: Linked as a consumer to 15000000.apps-smmu\n[    0.498671] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_wlan to group 1\n[    0.499023] ipa 1e00000.qcom,ipa:ipa_smmu_uc: Linked as a consumer to 15000000.apps-smmu\n[    0.503468] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_uc to group 2\n[    0.503792] ipa 1e00000.qcom,ipa:ipa_smmu_11ad: Linked as a consumer to 15000000.apps-smmu\n[    0.508456] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_11ad to group 3\n[    0.512481] devfreq-qcom-fw 18590000.qcom,devfreq-l3:qcom,cpu0-cpu-l3-lat: Devfreq QCOM Firmware dev registered.\n[    0.513086] devfreq-qcom-fw 18590000.qcom,devfreq-l3:qcom,cpu4-cpu-l3-lat: Devfreq QCOM Firmware dev registered.\n[    0.513691] devfreq-qcom-fw 18590000.qcom,devfreq-l3:qcom,cpu7-cpu-l3-lat: Devfreq QCOM Firmware dev registered.\n[    0.514305] devfreq-qcom-fw 18590000.qcom,devfreq-l3:qcom,cdsp-cdsp-l3-lat: Devfreq QCOM Firmware dev registered.\n[    0.514320] devfreq-qcom-fw 18590000.qcom,devfreq-l3: Devfreq QCOM Firmware parent dev inited.\n[    0.514886] SDAM base=0xb100 size=128 registered successfully\n[    0.515144] Advanced Linux Sound Architecture Driver Initialized.\n[    0.515797] Bluetooth: Core ver 2.22\n[    0.515813] NET: Registered protocol family 31\n[    0.515815] Bluetooth: HCI device and connection manager initialized\n[    0.515822] Bluetooth: HCI socket layer initialized\n[    0.515827] Bluetooth: L2CAP socket layer initialized\n[    0.515848] Bluetooth: SCO socket layer initialized\n[    0.515859] NetLabel: Initializing\n[    0.515861] NetLabel:  domain hash size = 128\n[    0.515862] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\n[    0.515902] NetLabel:  unlabeled traffic allowed by default\n[    0.516010] pcie:pcie_init.\n[    0.517242] register_client_adhoc:find path.src 45 dest 512\n[    0.517476] register_client_adhoc:Client handle 13 pcie0\n[    0.517704] pci-msm 1c00000.qcom,pcie: 1c00000.qcom,pcie supply vreg-3p3 not found, using dummy regulator\n[    0.517744] pci-msm 1c00000.qcom,pcie: Linked as a consumer to regulator.0\n[    0.517793] pci-msm 1c00000.qcom,pcie: Linked as a consumer to regulator.18\n[    0.517835] pci-msm 1c00000.qcom,pcie: Linked as a consumer to regulator.13\n[    0.517903] pci-msm 1c00000.qcom,pcie: Linked as a consumer to regulator.4\n[    0.517952] pci-msm 1c00000.qcom,pcie: Linked as a consumer to regulator.51\n[    0.518169] msm_pcie_get_reg: PCIe: RC0: no tcsr resource found.\n[    0.518174] msm_pcie_get_reg: PCIe: RC0: no rumi resource found.\n[    0.518574] register_client_adhoc:find path.src 108 dest 512\n[    0.518760] register_client_adhoc:Client handle 14 pcie2\n[    0.518906] pci-msm 1c10000.qcom,pcie: 1c10000.qcom,pcie supply vreg-3p3 not found, using dummy regulator\n[    0.518939] pci-msm 1c10000.qcom,pcie: Linked as a consumer to regulator.0\n[    0.518978] pci-msm 1c10000.qcom,pcie: Linked as a consumer to regulator.18\n[    0.519014] pci-msm 1c10000.qcom,pcie: Linked as a consumer to regulator.13\n[    0.519063] pci-msm 1c10000.qcom,pcie: Linked as a consumer to regulator.4\n[    0.519106] pci-msm 1c10000.qcom,pcie: Linked as a consumer to regulator.53\n[    0.519281] msm_pcie_get_reg: PCIe: RC2: no tcsr resource found.\n[    0.519286] msm_pcie_get_reg: PCIe: RC2: no rumi resource found.\n[    0.519296] msm_pcie_probe: PCIe: RC2 could not get pinctrl sleep state\n[    0.519363] genirq: irq_chip msmgpio did not update eff. affinity mask of irq 389\n[    0.519572] register_client_adhoc:find path.src 22 dest 512\n[    0.519781] register_client_adhoc:find path.src 23 dest 512\n[    0.519961] register_client_adhoc:Client handle 15 bus-proxy-client\n[    0.521301] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=5500mV ncp_voltage=5500mV bst_voltage=5650mV\n[    0.521427] qupv3_geni_se 9c0000.qcom,qupv3_0_geni_se: Linked as a consumer to 15000000.apps-smmu\n[    0.526766] iommu: Adding device 9c0000.qcom,qupv3_0_geni_se to group 4\n[    0.527090] qupv3_geni_se ac0000.qcom,qupv3_1_geni_se: Linked as a consumer to 15000000.apps-smmu\n[    0.532409] iommu: Adding device ac0000.qcom,qupv3_1_geni_se to group 5\n[    0.532735] qupv3_geni_se 8c0000.qcom,qupv3_2_geni_se: Linked as a consumer to 15000000.apps-smmu\n[    0.538082] iommu: Adding device 8c0000.qcom,qupv3_2_geni_se to group 6\n[    0.538494] gdsc ad07004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.538551] register_client_adhoc:find path.src 1 dest 589\n[    0.538813] register_client_adhoc:Client handle 16 bps_gdsc_ahb\n[    0.538935] msm-bus-type slv-qhs-camera-cfg: Linked as a consumer to regulator.31\n[    0.539010] bps_gdsc: supplied by pm8150a_s4_level\n[    0.539351] gdsc ad0a004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.539375] register_client_adhoc:find path.src 1 dest 589\n[    0.539561] register_client_adhoc:Client handle 17 ife_0_gdsc_ahb\n[    0.539656] ife_0_gdsc: supplied by pm8150a_s4_level\n[    0.539955] gdsc ad0b004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.539983] register_client_adhoc:find path.src 1 dest 589\n[    0.540213] register_client_adhoc:Client handle 18 ife_1_gdsc_ahb\n[    0.540304] ife_1_gdsc: supplied by pm8150a_s4_level\n[    0.540615] gdsc ad08004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.540640] register_client_adhoc:find path.src 1 dest 589\n[    0.540826] register_client_adhoc:Client handle 19 ipe_0_gdsc_ahb\n[    0.540914] ipe_0_gdsc: supplied by pm8150a_s4_level\n[    0.541209] gdsc ad09004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.541236] register_client_adhoc:find path.src 1 dest 589\n[    0.541415] register_client_adhoc:Client handle 20 sbi_gdsc_ahb\n[    0.541507] sbi_gdsc: supplied by pm8150a_s4_level\n[    0.541792] gdsc ad0c144.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.541816] register_client_adhoc:find path.src 1 dest 589\n[    0.541998] register_client_adhoc:Client handle 21 titan_top_gdsc_ahb\n[    0.542087] titan_top_gdsc: supplied by pm8150a_s4_level\n[    0.542385] gdsc af03000.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.542414] register_client_adhoc:find path.src 1 dest 590\n[    0.542601] register_client_adhoc:Client handle 22 mdss_core_gdsc_ahb\n[    0.542701] msm-bus-type slv-qhs-display-cfg: Linked as a consumer to regulator.31\n[    0.542743] mdss_core_gdsc: supplied by pm8150a_s4_level\n[    0.543393] gdsc abf0d18.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.543419] register_client_adhoc:find path.src 1 dest 596\n[    0.543616] register_client_adhoc:Client handle 23 mvs0_gdsc_ahb\n[    0.543713] msm-bus-type slv-qhs-venus-cfg: Linked as a consumer to regulator.31\n[    0.543816] mvs0_gdsc: supplied by pm8150a_s4_level\n[    0.544101] gdsc abf0bf8.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.544129] register_client_adhoc:find path.src 1 dest 596\n[    0.544323] register_client_adhoc:Client handle 24 mvs0c_gdsc_ahb\n[    0.544463] mvs0c_gdsc: supplied by pm8150a_s4_level\n[    0.544761] gdsc abf0d98.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.544785] register_client_adhoc:find path.src 1 dest 596\n[    0.544982] register_client_adhoc:Client handle 25 mvs1_gdsc_ahb\n[    0.545121] mvs1_gdsc: supplied by pm8150a_s4_level\n[    0.545430] gdsc abf0c98.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.545457] register_client_adhoc:find path.src 1 dest 596\n[    0.545651] register_client_adhoc:Client handle 26 mvs1c_gdsc_ahb\n[    0.545784] mvs1c_gdsc: supplied by pm8150a_s4_level\n[    0.546121] cam_cc-kona ad00000.qcom,camcc: Linked as a consumer to regulator.1\n[    0.546150] cam_cc-kona ad00000.qcom,camcc: Linked as a consumer to regulator.31\n[    0.546166] register_client_adhoc:find path.src 1 dest 589\n[    0.546350] register_client_adhoc:Client handle 27 clk_camcc_debugfs\n[    0.576574] cam_cc-kona ad00000.qcom,camcc: Registered CAM CC clocks\n[    0.576771] disp_cc-kona af00000.qcom,dispcc: Linked as a consumer to regulator.31\n[    0.576787] register_client_adhoc:find path.src 1 dest 590\n[    0.576973] register_client_adhoc:Client handle 28 clk_dispcc_debugfs\n[    0.592297] disp_cc-kona af00000.qcom,dispcc: Registered Display CC clocks\n[    0.592444] video_cc-kona abf0000.qcom,videocc: Linked as a consumer to regulator.1\n[    0.592475] video_cc-kona abf0000.qcom,videocc: Linked as a consumer to regulator.31\n[    0.592491] register_client_adhoc:find path.src 1 dest 596\n[    0.592687] register_client_adhoc:Client handle 29 clk_videocc_debugfs\n[    0.598655] video_cc-kona abf0000.qcom,videocc: Registered Video CC clocks\n[    0.599858] clocksource: Switched to clocksource arch_sys_counter\n[    0.653334] VFS: Disk quotas dquot_6.6.0\n[    0.653395] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.654007] register_client_adhoc:find path.src 1 dest 589\n[    0.654430] register_client_adhoc:find path.src 1 dest 596\n[    0.654632] register_client_adhoc:find path.src 1 dest 590\n[    0.654817] register_client_adhoc:Client handle 30 clk_measure\n[    0.664763] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.664767] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.664996] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create ae94900.qcom,mdss_dsi_pll debugfs directory\n[    0.665007] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create ae94900.qcom,mdss_dsi_pll debugfs directory\n[    0.665013] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create ae94900.qcom,mdss_dsi_pll debugfs directory\n[    0.665020] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create ae94900.qcom,mdss_dsi_pll debugfs directory\n[    0.665025] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create ae94900.qcom,mdss_dsi_pll debugfs directory\n[    0.669983] dsi_pll_clock_register_7nm: Registered DSI PLL ndx=0, clocks successfully\n[    0.670033] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.670036] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.670103] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create ae96900.qcom,mdss_dsi_pll debugfs directory\n[    0.670109] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create ae96900.qcom,mdss_dsi_pll debugfs directory\n[    0.670115] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create ae96900.qcom,mdss_dsi_pll debugfs directory\n[    0.670121] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create ae96900.qcom,mdss_dsi_pll debugfs directory\n[    0.670127] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create ae96900.qcom,mdss_dsi_pll debugfs directory\n[    0.684880] dsi_pll_clock_register_7nm: Registered DSI PLL ndx=1, clocks successfully\n[    0.684921] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.687089] NET: Registered protocol family 2\n[    0.687567] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes)\n[    0.687608] TCP established hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.687842] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)\n[    0.689189] TCP: Hash tables configured (established 65536 bind 65536)\n[    0.689291] UDP hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.689355] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.689594] NET: Registered protocol family 1\n[    0.691084] PCI: CLS 0 bytes, default 64\n[    0.691688] Trying to unpack rootfs image as initramfs...\n[    0.993215] Freeing initrd memory: 11536K\n[    0.995147] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    1.002083] Initialise system trusted keyrings\n[    1.002196] workingset: timestamp_bits=45 max_order=21 bucket_order=0\n[    1.005321] exFAT: file-system version 5.8-2arter97\n[    1.005724] Registering sdcardfs 0.1\n[    1.005867] fuse init (API version 7.27)\n[    1.006641] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    1.006644] pfk_f2fs [pfk_f2fs_init]: PFK F2FS inited successfully\n[    1.010302] Key type asymmetric registered\n[    1.010307] Asymmetric key parser 'x509' registered\n[    1.010337] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 240)\n[    1.010343] io scheduler noop registered\n[    1.010345] io scheduler deadline registered\n[    1.010422] io scheduler cfq registered (default)\n[    1.010425] io scheduler mq-deadline registered\n[    1.017711] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    1.017715] qcom-spmi-gpio c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000: read 0x4 failed\n[    1.017719] qcom-spmi-gpio c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000: failed to populate gpio 0, ret=-5\n[    1.017729] qcom-spmi-gpio: probe of c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000 failed with error -5\n[    1.024513] gpi_dma 900000.qcom,gpi-dma: Linked as a consumer to 15000000.apps-smmu\n[    1.024833] iommu: Adding device 900000.qcom,gpi-dma to group 7\n[    1.026089] gpi_dma a00000.qcom,gpi-dma: Linked as a consumer to 15000000.apps-smmu\n[    1.026327] iommu: Adding device a00000.qcom,gpi-dma to group 8\n[    1.027086] gpi_dma 800000.qcom,gpi-dma: Linked as a consumer to 15000000.apps-smmu\n[    1.027326] iommu: Adding device 800000.qcom,gpi-dma to group 9\n[    1.029142] kona-llcc 9200000.cache-controller: Failed to create 9200000.cache-controller debugfs directory\n[    1.029988] register_client_adhoc:find path.src 125 dest 512\n[    1.030488] register_client_adhoc:Client handle 31 scm_pas\n[    1.030495] minidump-id not found for ipa_fws\n[    1.030515] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    1.030633] subsys-pil-tz soc:qcom,ipa_fws: for md_ipa_fws segments only will be dumped.\n[    1.030852] minidump-id not found for ipa_uc\n[    1.030858] subsys-pil-tz soc:qcom,ipa_uc: for ipa_uc segments only will be dumped.\n[    1.030916] subsys-pil-tz soc:qcom,ipa_uc: for md_ipa_uc segments only will be dumped.\n[    1.031192] subsys-pil-tz 17300000.qcom,lpass: Linked as a consumer to regulator.20\n[    1.031235] subsys-pil-tz 17300000.qcom,lpass: Linked as a consumer to regulator.12\n[    1.031242] minidump-id not found for adsp\n[    1.031882] subsys-pil-tz 8300000.qcom,turing: Linked as a consumer to regulator.4\n[    1.031909] register_client_adhoc:find path.src 154 dest 10070\n[    1.031962] register_client_adhoc:Client handle 32 pil-cdsp\n[    1.031967] minidump-id not found for cdsp\n[    1.032524] subsys-pil-tz aab0000.qcom,venus: Linked as a consumer to regulator.76\n[    1.032552] register_client_adhoc:find path.src 63 dest 512\n[    1.032761] register_client_adhoc:Client handle 33 pil-venus\n[    1.032766] minidump-id not found for venus\n[    1.033060] subsys-pil-tz 188101c.qcom,spss: Linked as a consumer to regulator.4\n[    1.033067] minidump-id not found for spss\n[    1.033409] minidump-id not found for cvpss\n[    1.033415] subsys-pil-tz abb0000.qcom,cvpss: for cvpss segments only will be dumped.\n[    1.033477] subsys-pil-tz abb0000.qcom,cvpss: for md_cvpss segments only will be dumped.\n[    1.033655] minidump-id not found for npu\n[    1.033661] subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    1.033714] subsys-pil-tz 9800000.qcom,npu: for md_npu segments only will be dumped.\n[    1.033848] subsys-restart: __get_smem_state(): Could not get smem-states qcom,force-stop\n[    1.034208] subsys-pil-tz 5c00000.qcom,ssc: Linked as a consumer to regulator.20\n[    1.034238] subsys-pil-tz 5c00000.qcom,ssc: Linked as a consumer to regulator.12\n[    1.034245] minidump-id not found for slpi\n[    1.034742] minidump-id not found for a650_zap\n[    1.034748] subsys-pil-tz soc:qcom,kgsl-hyp: for a650_zap segments only will be dumped.\n[    1.034809] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a650_zap segments only will be dumped.\n[    1.040688] msm_geni_serial 998000.qcom,qup_uart: Wakeup byte 0xfd\n[    1.040733] msm_geni_serial 998000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    1.041193] 998000.qcom,qup_uart: ttyHS0 at MMIO 0x998000 (irq = 363, base_baud = 0) is a MSM\n[    1.041368] msm_geni_serial_init: Driver initialized\n[    1.042856] register_client_adhoc:find path.src 1 dest 618\n[    1.043100] register_client_adhoc:Client handle 34 msm-rng-noc\n[    1.044214] random: crng init done\n[    1.102688] iommu-debug soc:kgsl_iommu_test_device: Linked as a consumer to 3da0000.kgsl-smmu\n[    1.102755] iommu: Adding device soc:kgsl_iommu_test_device to group 10\n[    1.103071] iommu-debug soc:apps_iommu_test_device: Linked as a consumer to 15000000.apps-smmu\n[    1.103113] iommu: Adding device soc:apps_iommu_test_device to group 11\n[    1.103322] iommu-debug soc:apps_iommu_coherent_test_device: Linked as a consumer to 15000000.apps-smmu\n[    1.103364] iommu: Adding device soc:apps_iommu_coherent_test_device to group 12\n[    1.112364] brd: module loaded\n[    1.121427] loop: module loaded\n[    1.121647] zram: Added device: zram0\n[    1.122833] QSEECOM: qseecom_init_control: qseecom.qsee_version = 0x1402000\n[    1.122913] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    1.126089] [TP_SPI]: Start register spi for tp\n[    1.126926] qce 1de0000.qcedev: Linked as a consumer to 15000000.apps-smmu\n[    1.127270] iommu: Adding device 1de0000.qcedev to group 13\n[    1.127603] register_client_adhoc:find path.src 125 dest 512\n[    1.128070] register_client_adhoc:Client handle 35 qcedev-noc\n[    1.128235] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.128559] qce 1de0000.qcedev: QTI Crypto 5.5.0 device found @0x1de0000\n[    1.128755] sps:BAM 0x0000000001dc4000 is registered.\n[    1.128876] sps:BAM 0x0000000001dc4000 (va:0x00000000be255cfa) enabled: ver:0x27, number of pipes:16\n[    1.129100] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 105\n[    1.130841] qce 1de0000.qcedev:qcom_cedev_ns_cb: Linked as a consumer to 15000000.apps-smmu\n[    1.131161] iommu: Adding device 1de0000.qcedev:qcom_cedev_ns_cb to group 14\n[    1.131491] qce 1de0000.qcedev:qcom_cedev_s_cb: Linked as a consumer to 15000000.apps-smmu\n[    1.132146] iommu: Adding device 1de0000.qcedev:qcom_cedev_s_cb to group 15\n[    1.133839] qcrypto 1de0000.qcrypto: Linked as a consumer to 15000000.apps-smmu\n[    1.134081] iommu: Adding device 1de0000.qcrypto to group 16\n[    1.134253] register_client_adhoc:find path.src 125 dest 512\n[    1.134509] register_client_adhoc:Client handle 36 qcrypto-noc\n[    1.134603] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.134855] qcrypto 1de0000.qcrypto: QTI Crypto 5.5.0 device found @0x1de0000\n[    1.135094] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 105\n[    1.136420] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    1.136565] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    1.136644] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    1.136721] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    1.136799] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    1.136877] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    1.136958] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    1.137046] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    1.137126] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    1.137213] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    1.137295] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    1.137373] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    1.137452] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    1.137531] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    1.137611] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    1.137693] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    1.137780] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    1.137864] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    1.137943] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    1.138022] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    1.140352] ufshcd-qcom 1d84000.ufshc: no vccq2-voltage-level property.\n[    1.140504] ufshcd-qcom 1d84000.ufshc: Linked as a consumer to regulator.54\n[    1.140829] ufshcd-qcom 1d84000.ufshc: Linked as a consumer to regulator.28\n[    1.140884] ufshcd-qcom 1d84000.ufshc: Linked as a consumer to regulator.16\n[    1.140921] ufshcd-qcom 1d84000.ufshc: Linked as a consumer to regulator.7\n[    1.141211] qcom_ice_get_pdevice: found ice device 00000000790763e6\n[    1.141214] qcom_ice_get_pdevice: matching platform device 00000000aa003faf\n[    1.142351] register_client_adhoc:find path.src 123 dest 512\n[    1.142611] register_client_adhoc:find path.src 1 dest 757\n[    1.142854] register_client_adhoc:Client handle 37 ufshc_mem\n[    1.142969] ufs_qcom_phy_qmp_v4 1d87000.ufsphy_mem: Linked as a consumer to regulator.18\n[    1.143009] ufs_qcom_phy_qmp_v4 1d87000.ufsphy_mem: Linked as a consumer to regulator.13\n[    1.143077] ufshcd-qcom 1d84000.ufshc: Linked as a consumer to regulator.36\n[    1.145858] scsi host0: ufshcd\n[    1.150517] qcom_ice 1d90000.ufsice: QC ICE 3.1.81 device found @0x000000001ecafaa3\n[    1.171766] SCSI Media Changer driver v0.25 \n[    1.174033] [TP_SPI]: Start probe\n[    1.174037] [TP_SPI]: init ts_xsfer device successful\n[    1.174235] spmi_pmic_arb_debug 6b0f000.qcom,spmi-debug: SPMI PMIC arbiter debug bus disabled by fuse\n[    1.174406] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    1.176655] libphy: Fixed MDIO Bus: probed\n[    1.176675] tun: Universal TUN/TAP device driver, 1.6\n[    1.176829] sky2: driver version 1.30\n[    1.177076] PPP generic driver version 2.4.2\n[    1.177151] PPP BSD Compression module registered\n[    1.177154] PPP Deflate Compression module registered\n[    1.177166] PPP MPPE Compression module registered\n[    1.177170] NET: Registered protocol family 24\n[    1.177171] PPTP driver version 0.8.5\n[    1.177485] CLD80211: Initializing\n[    1.177549] usbcore: registered new interface driver r8152\n[    1.177561] usbcore: registered new interface driver lan78xx\n[    1.177574] usbcore: registered new interface driver asix\n[    1.177585] usbcore: registered new interface driver ax88179_178a\n[    1.177598] usbcore: registered new interface driver cdc_ether\n[    1.177614] usbcore: registered new interface driver net1080\n[    1.177626] usbcore: registered new interface driver cdc_subset\n[    1.177639] usbcore: registered new interface driver zaurus\n[    1.177652] usbcore: registered new interface driver cdc_ncm\n[    1.178614] msm-usb-hsphy 88e3000.hsphy: Linked as a consumer to regulator.13\n[    1.178650] msm-usb-hsphy 88e3000.hsphy: Linked as a consumer to regulator.10\n[    1.178687] msm-usb-hsphy 88e3000.hsphy: Linked as a consumer to regulator.21\n[    1.178693] msm-usb-hsphy 88e3000.hsphy: phy hw_country: 0\n[    1.180511] msm-dwc3 a600000.ssusb: Linked as a consumer to 15000000.apps-smmu\n[    1.180778] iommu: Adding device a600000.ssusb to group 17\n[    1.180967] msm-dwc3 a600000.ssusb: Linked as a consumer to regulator.55\n[    1.181723] dwc3 a600000.dwc3: Failed to get clk 'ref': -2\n[    1.181821] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.183667] register_client_adhoc:find path.src 61 dest 512\n[    1.183919] register_client_adhoc:find path.src 61 dest 676\n[    1.184236] register_client_adhoc:find path.src 1 dest 583\n[    1.184429] register_client_adhoc:Client handle 38 usb0\n[    1.184822] cnss: set_wlaon_pwr_ctrl is 1\n[    1.184883] cnss: CPR PMIC address is not available for smpf2\n[    1.184942] cnss2 b0000000.qcom,cnss-qca6390: Linked as a consumer to regulator.7\n[    1.184948] cnss: Got regulator: vdd-wlan-io, min_uv: 1800000, max_uv: 1800000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    1.185080] cnss2 b0000000.qcom,cnss-qca6390: Linked as a consumer to regulator.41\n[    1.185085] cnss: Got regulator: wlan-ant-switch, min_uv: 1800000, max_uv: 1800000, load_ua: 0, delay_us: 0, need_unvote: 0\n[    1.185140] cnss2 b0000000.qcom,cnss-qca6390: Linked as a consumer to regulator.9\n[    1.185145] cnss: Got regulator: vdd-wlan-aon, min_uv: 950000, max_uv: 950000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    1.185173] cnss: Got regulator: vdd-wlan-dig, min_uv: 950000, max_uv: 950000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    1.185215] cnss2 b0000000.qcom,cnss-qca6390: Linked as a consumer to regulator.8\n[    1.185219] cnss: Got regulator: vdd-wlan-rfa1, min_uv: 1900000, max_uv: 1900000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    1.185255] cnss2 b0000000.qcom,cnss-qca6390: Linked as a consumer to regulator.36\n[    1.185259] cnss: Got regulator: vdd-wlan-rfa2, min_uv: 1350000, max_uv: 1350000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    1.185281] cnss: Failed to get optional clock rf_clk, err = -2\n[    1.185330] cnss: Regulator vdd-wlan-io is being enabled\n[    1.185336] cnss: Regulator wlan-ant-switch is being enabled\n[    1.186992] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.187134] cnss: Regulator vdd-wlan-aon is being enabled\n[    1.187244] cnss: Regulator vdd-wlan-dig is being enabled\n[    1.187248] cnss: Regulator vdd-wlan-rfa1 is being enabled\n[    1.187371] cnss: Regulator vdd-wlan-rfa2 is being enabled\n[    1.188526] msm_pcie_enable: PCIe: Assert the reset of endpoint of RC0.\n[    1.188585] msm-dwc3 a600000.ssusb: Dropping the link to regulator.55\n[    1.189141] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    1.189146] ehci-pci: EHCI PCI platform driver\n[    1.189168] ehci-platform: EHCI generic platform driver\n[    1.189525] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    1.189541] ohci-pci: OHCI PCI platform driver\n[    1.189567] ohci-platform: OHCI generic platform driver\n[    1.191850] usbcore: registered new interface driver usb-storage\n[    1.191863] usbcore: registered new interface driver usb_ehset_test\n[    1.191874] usbcore: registered new interface driver lvs\n[    1.193182] msm_pcie_enable: PCIe: RC0: PCIE20_PARF_INT_ALL_MASK: 0x7f80c202\n[    1.193682] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: Linked as a consumer to regulator.10\n[    1.194648] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.194731] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: Dropping the link to regulator.10\n[    1.195110] usbcore: registered new interface driver xpad\n[    1.195122] usbcore: registered new interface driver usb_acecad\n[    1.195161] usbcore: registered new interface driver aiptek\n[    1.195174] usbcore: registered new interface driver gtco\n[    1.195186] usbcore: registered new interface driver hanwang\n[    1.195196] usbcore: registered new interface driver kbtab\n[    1.195202] aw8697 driver version v1.1.3\n[    1.195526] gf_platform: gf::irq_gpio:1123\n[    1.195666] input: uinput-goodix as /devices/virtual/input/input2\n[    1.195711] pcie_phy_init: PCIe RC0 PHY is ready!\n[    1.195773] gf_spi: version V1.2.01\n[    1.195844] gf_spi: status = 0x0\n[    1.196122] fpc1020 soc:fingerprint_fpc: fpc fpc1020_probe --->: enter! \n[    1.196178] fpc1020 soc:fingerprint_fpc: found pin control fpc1020_reset_reset\n[    1.196181] fpc1020 soc:fingerprint_fpc: found pin control fpc1020_reset_active\n[    1.196213] fpc1020 soc:fingerprint_fpc: fpc reset_gpio_res --->: enter!\n[    1.196216] fpc1020 soc:fingerprint_fpc: fpc reset_gpio_res <---: exit!\n[    1.196228] fpc1020 soc:fingerprint_fpc: fpc1020_probe: GPIO 121 wake set success!\n[    1.196230] fpc1020 soc:fingerprint_fpc: fpc1020_probe: ok\n[    1.196233] fpc1020 soc:fingerprint_fpc: fpc fpc1020_probe <---: exit! \n[    1.196270] fpc1020_tee: fpc1020_init OK\n[    1.196686] rtc-pm8xxx c440000.qcom,spmi:qcom,pm8150@0:qcom,pm8150_rtc: rtc core: registered pm8xxx_rtc as rtc0\n[    1.197189] i2c /dev entries driver\n[    1.198178] i2c_geni 98c000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.199101] i2c_geni a8c000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.199605] aw8697_i2c_probe enter\n[    1.199625] aw8697_parse_dt  2650 enter\n[    1.199635] aw8697_haptic 2-005a: aw8697_parse_dt: reset gpio provided ok\n[    1.199672] aw8697_haptic 2-005a: aw8697_parse_dt: irq gpio provided ok.\n[    1.199698] aw8697_parse_dt ---2791 aw8697->effects_count=10\n[    1.199700] aw8697_parse_dt  2793  i=0\n[    1.199701] aw8697_parse_dt  2795  i=1\n[    1.199703]  20190420_dt effect_id: 0\n[    1.199704] aw8697_parse_dt ---2803 \n[    1.199706] aw8697_parse_dt ---2811 effect->vmax_mv =3600 \n[    1.199708] aw8697_parse_dt ---2821 \n[    1.199712] aw8697_parse_dt 2835  effect->pattern_length=2  effect->pattern=-1386213504 \n[    1.199714] aw8697_parse_dt ---2846 effect->play_rate_us=20000 \n[    1.199716] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    1.199717] aw8697_parse_dt ---2861 \n[    1.199719] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    1.199720] aw8697_parse_dt ---2876 \n[    1.199722] aw8697_parse_dt  2793  i=1\n[    1.199724] aw8697_parse_dt  2795  i=2\n[    1.199725]  20190420_dt effect_id: 1\n[    1.199726] aw8697_parse_dt ---2803 \n[    1.199728] aw8697_parse_dt ---2811 effect->vmax_mv =3600 \n[    1.199729] aw8697_parse_dt ---2821 \n[    1.199732] aw8697_parse_dt 2835  effect->pattern_length=2  effect->pattern=-1386211200 \n[    1.199733] aw8697_parse_dt ---2846 effect->play_rate_us=20000 \n[    1.199735] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    1.199736] aw8697_parse_dt ---2861 \n[    1.199737] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    1.199738] aw8697_parse_dt ---2876 \n[    1.199740] aw8697_parse_dt  2793  i=2\n[    1.199742] aw8697_parse_dt  2795  i=3\n[    1.199743]  20190420_dt effect_id: 2\n[    1.199744] aw8697_parse_dt ---2803 \n[    1.199745] aw8697_parse_dt ---2811 effect->vmax_mv =3600 \n[    1.199747] aw8697_parse_dt ---2821 \n[    1.199750] aw8697_parse_dt 2835  effect->pattern_length=2  effect->pattern=-1386209408 \n[    1.199751] aw8697_parse_dt ---2846 effect->play_rate_us=20000 \n[    1.199753] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    1.199754] aw8697_parse_dt ---2861 \n[    1.199755] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    1.199756] aw8697_parse_dt ---2876 \n[    1.199759] aw8697_parse_dt  2793  i=3\n[    1.199760] aw8697_parse_dt  2795  i=4\n[    1.199761]  20190420_dt effect_id: 3\n[    1.199763] aw8697_parse_dt ---2803 \n[    1.199764] aw8697_parse_dt ---2811 effect->vmax_mv =3600 \n[    1.199765] aw8697_parse_dt ---2821 \n[    1.199768] aw8697_parse_dt 2835  effect->pattern_length=2  effect->pattern=-1386214784 \n[    1.199770] aw8697_parse_dt ---2846 effect->play_rate_us=20000 \n[    1.199771] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    1.199773] aw8697_parse_dt ---2861 \n[    1.199774] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    1.199775] aw8697_parse_dt ---2876 \n[    1.199777] aw8697_parse_dt  2793  i=4\n[    1.199778] aw8697_parse_dt  2795  i=5\n[    1.199780]  20190420_dt effect_id: 4\n[    1.199781] aw8697_parse_dt ---2803 \n[    1.199782] aw8697_parse_dt ---2811 effect->vmax_mv =3600 \n[    1.199784] aw8697_parse_dt ---2821 \n[    1.199787] aw8697_parse_dt 2835  effect->pattern_length=2  effect->pattern=-1386212992 \n[    1.199789] aw8697_parse_dt ---2846 effect->play_rate_us=28000 \n[    1.199790] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    1.199791] aw8697_parse_dt ---2861 \n[    1.199793] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    1.199794] aw8697_parse_dt ---2876 \n[    1.199796] aw8697_parse_dt  2793  i=5\n[    1.199797] aw8697_parse_dt  2795  i=6\n[    1.199798]  20190420_dt effect_id: 5\n[    1.199799] aw8697_parse_dt ---2803 \n[    1.199801] aw8697_parse_dt ---2811 effect->vmax_mv =3600 \n[    1.199802] aw8697_parse_dt ---2821 \n[    1.199805] aw8697_parse_dt 2835  effect->pattern_length=3  effect->pattern=-1386212224 \n[    1.199807] aw8697_parse_dt ---2846 effect->play_rate_us=20000 \n[    1.199808] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    1.199809] aw8697_parse_dt ---2861 \n[    1.199810] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    1.199812] aw8697_parse_dt ---2876 \n[    1.199814] aw8697_parse_dt  2793  i=6\n[    1.199815] aw8697_parse_dt  2795  i=7\n[    1.199816]  20190420_dt effect_id: 6\n[    1.199817] aw8697_parse_dt ---2803 \n[    1.199819] aw8697_parse_dt ---2811 effect->vmax_mv =3600 \n[    1.199820] aw8697_parse_dt ---2821 \n[    1.199823] aw8697_parse_dt 2835  effect->pattern_length=2  effect->pattern=-1386213760 \n[    1.199825] aw8697_parse_dt ---2846 effect->play_rate_us=20000 \n[    1.199826] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    1.199827] aw8697_parse_dt ---2861 \n[    1.199828] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    1.199830] aw8697_parse_dt ---2876 \n[    1.199832] aw8697_parse_dt  2793  i=7\n[    1.199833] aw8697_parse_dt  2795  i=8\n[    1.199834]  20190420_dt effect_id: 7\n[    1.199836] aw8697_parse_dt ---2803 \n[    1.199837] aw8697_parse_dt ---2811 effect->vmax_mv =3600 \n[    1.199839] aw8697_parse_dt ---2821 \n[    1.199841] aw8697_parse_dt 2835  effect->pattern_length=2  effect->pattern=-1386215040 \n[    1.199843] aw8697_parse_dt ---2846 effect->play_rate_us=20000 \n[    1.199844] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    1.199845] aw8697_parse_dt ---2861 \n[    1.199847] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    1.199848] aw8697_parse_dt ---2876 \n[    1.199850] aw8697_parse_dt  2793  i=8\n[    1.199851] aw8697_parse_dt  2795  i=9\n[    1.199852]  20190420_dt effect_id: 8\n[    1.199854] aw8697_parse_dt ---2803 \n[    1.199855] aw8697_parse_dt ---2811 effect->vmax_mv =3600 \n[    1.199856] aw8697_parse_dt ---2821 \n[    1.199859] aw8697_parse_dt 2835  effect->pattern_length=2  effect->pattern=-1386215552 \n[    1.199861] aw8697_parse_dt ---2846 effect->play_rate_us=20000 \n[    1.199862] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    1.199863] aw8697_parse_dt ---2861 \n[    1.199865] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    1.199866] aw8697_parse_dt ---2876 \n[    1.199868] aw8697_parse_dt  2793  i=9\n[    1.199869] aw8697_parse_dt  2795  i=10\n[    1.199870]  20190420_dt effect_id: 9\n[    1.199871] aw8697_parse_dt ---2803 \n[    1.199873] aw8697_parse_dt ---2811 effect->vmax_mv =3600 \n[    1.199874] aw8697_parse_dt ---2821 \n[    1.199877] aw8697_parse_dt 2835  effect->pattern_length=2  effect->pattern=-1386212736 \n[    1.199879] aw8697_parse_dt ---2846 effect->play_rate_us=20000 \n[    1.199881] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    1.199882] aw8697_parse_dt ---2861 \n[    1.199883] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    1.199884] aw8697_parse_dt ---2876 \n[    1.199886]  20190420_dt       effect_id: 0\n[    1.199887]  20190420_dt       vmax: 3600 mv\n[    1.199888] 20190420_dt        play_rate: 20000 us\n[    1.199890] 20190420_dt     pattern[0]: 0x3e\n[    1.199891] 20190420_dt     pattern[1]: 0x3e\n[    1.199892] 20190420_dt     brake_pattern[0]: 0x2\n[    1.199893] 20190420_dt     brake_pattern[1]: 0x1\n[    1.199895] 20190420_dt     brake_pattern[2]: 0x0\n[    1.199896] 20190420_dt     brake_pattern[3]: 0x0\n[    1.199897] 20190420_dt         brake_en: 0\n[    1.199898] 20190420_dt        wf_repeat_n: 0\n[    1.199899] 20190420_dt         wf_s_repeat_n: 0\n[    1.199900] 20190420_dt         lra_auto_res_disable: 0\n[    1.199901]  20190420_dt       effect_id: 1\n[    1.199902]  20190420_dt       vmax: 3600 mv\n[    1.199903] 20190420_dt        play_rate: 20000 us\n[    1.199905] 20190420_dt     pattern[0]: 0x7e\n[    1.199906] 20190420_dt     pattern[1]: 0x3e\n[    1.199907] 20190420_dt     brake_pattern[0]: 0x3\n[    1.199908] 20190420_dt     brake_pattern[1]: 0x1\n[    1.199910] 20190420_dt     brake_pattern[2]: 0x0\n[    1.199911] 20190420_dt     brake_pattern[3]: 0x0\n[    1.199912] 20190420_dt         brake_en: 0\n[    1.199913] 20190420_dt        wf_repeat_n: 0\n[    1.199914] 20190420_dt         wf_s_repeat_n: 0\n[    1.199915] 20190420_dt         lra_auto_res_disable: 0\n[    1.199916]  20190420_dt       effect_id: 2\n[    1.199917]  20190420_dt       vmax: 3600 mv\n[    1.199918] 20190420_dt        play_rate: 20000 us\n[    1.199920] 20190420_dt     pattern[0]: 0x7e\n[    1.199921] 20190420_dt     pattern[1]: 0x3e\n[    1.199922] 20190420_dt     brake_pattern[0]: 0x2\n[    1.199923] 20190420_dt     brake_pattern[1]: 0x1\n[    1.199925] 20190420_dt     brake_pattern[2]: 0x0\n[    1.199926] 20190420_dt     brake_pattern[3]: 0x0\n[    1.199927] 20190420_dt         brake_en: 0\n[    1.199928] 20190420_dt        wf_repeat_n: 0\n[    1.199929] 20190420_dt         wf_s_repeat_n: 0\n[    1.199930] 20190420_dt         lra_auto_res_disable: 0\n[    1.199931]  20190420_dt       effect_id: 3\n[    1.199932]  20190420_dt       vmax: 3600 mv\n[    1.199933] 20190420_dt        play_rate: 20000 us\n[    1.199934] 20190420_dt     pattern[0]: 0x3e\n[    1.199936] 20190420_dt     pattern[1]: 0x3e\n[    1.199937] 20190420_dt     brake_pattern[0]: 0x2\n[    1.199938] 20190420_dt     brake_pattern[1]: 0x1\n[    1.199939] 20190420_dt     brake_pattern[2]: 0x0\n[    1.199941] 20190420_dt     brake_pattern[3]: 0x0\n[    1.199942] 20190420_dt         brake_en: 0\n[    1.199943] 20190420_dt        wf_repeat_n: 0\n[    1.199944] 20190420_dt         wf_s_repeat_n: 0\n[    1.199945] 20190420_dt         lra_auto_res_disable: 0\n[    1.199946]  20190420_dt       effect_id: 4\n[    1.199947]  20190420_dt       vmax: 3600 mv\n[    1.199948] 20190420_dt        play_rate: 28000 us\n[    1.199949] 20190420_dt     pattern[0]: 0x3e\n[    1.199950] 20190420_dt     pattern[1]: 0x3e\n[    1.199952] 20190420_dt     brake_pattern[0]: 0x2\n[    1.199953] 20190420_dt     brake_pattern[1]: 0x1\n[    1.199954] 20190420_dt     brake_pattern[2]: 0x0\n[    1.199955] 20190420_dt     brake_pattern[3]: 0x0\n[    1.199956] 20190420_dt         brake_en: 0\n[    1.199957] 20190420_dt        wf_repeat_n: 0\n[    1.199958] 20190420_dt         wf_s_repeat_n: 0\n[    1.199959] 20190420_dt         lra_auto_res_disable: 0\n[    1.199960]  20190420_dt       effect_id: 5\n[    1.199962]  20190420_dt       vmax: 3600 mv\n[    1.199963] 20190420_dt        play_rate: 20000 us\n[    1.199964] 20190420_dt     pattern[0]: 0x7e\n[    1.199965] 20190420_dt     pattern[1]: 0x7e\n[    1.199967] 20190420_dt     pattern[2]: 0x7e\n[    1.199968] 20190420_dt     brake_pattern[0]: 0x3\n[    1.199970] 20190420_dt     brake_pattern[1]: 0x3\n[    1.199971] 20190420_dt     brake_pattern[2]: 0x1\n[    1.199972] 20190420_dt     brake_pattern[3]: 0x0\n[    1.199974] 20190420_dt         brake_en: 0\n[    1.199975] 20190420_dt        wf_repeat_n: 0\n[    1.199976] 20190420_dt         wf_s_repeat_n: 0\n[    1.199977] 20190420_dt         lra_auto_res_disable: 0\n[    1.199978]  20190420_dt       effect_id: 6\n[    1.199979]  20190420_dt       vmax: 3600 mv\n[    1.199980] 20190420_dt        play_rate: 20000 us\n[    1.199981] 20190420_dt     pattern[0]: 0x3e\n[    1.199983] 20190420_dt     pattern[1]: 0x3e\n[    1.199984] 20190420_dt     brake_pattern[0]: 0x2\n[    1.199985] 20190420_dt     brake_pattern[1]: 0x1\n[    1.199986] 20190420_dt     brake_pattern[2]: 0x0\n[    1.199987] 20190420_dt     brake_pattern[3]: 0x0\n[    1.199988] 20190420_dt         brake_en: 0\n[    1.199990] 20190420_dt        wf_repeat_n: 0\n[    1.199991] 20190420_dt         wf_s_repeat_n: 0\n[    1.199992] 20190420_dt         lra_auto_res_disable: 0\n[    1.199993]  20190420_dt       effect_id: 7\n[    1.199994]  20190420_dt       vmax: 3600 mv\n[    1.199995] 20190420_dt        play_rate: 20000 us\n[    1.199996] 20190420_dt     pattern[0]: 0x3e\n[    1.199997] 20190420_dt     pattern[1]: 0x3e\n[    1.199999] 20190420_dt     brake_pattern[0]: 0x2\n[    1.200000] 20190420_dt     brake_pattern[1]: 0x1\n[    1.200001] 20190420_dt     brake_pattern[2]: 0x0\n[    1.200002] 20190420_dt     brake_pattern[3]: 0x0\n[    1.200003] 20190420_dt         brake_en: 0\n[    1.200004] 20190420_dt        wf_repeat_n: 0\n[    1.200005] 20190420_dt         wf_s_repeat_n: 0\n[    1.200006] 20190420_dt         lra_auto_res_disable: 0\n[    1.200007]  20190420_dt       effect_id: 8\n[    1.200042]  20190420_dt       vmax: 3600 mv\n[    1.200043] 20190420_dt        play_rate: 20000 us\n[    1.200045] 20190420_dt     pattern[0]: 0x3e\n[    1.200046] 20190420_dt     pattern[1]: 0x3e\n[    1.200047] 20190420_dt     brake_pattern[0]: 0x2\n[    1.200049] 20190420_dt     brake_pattern[1]: 0x1\n[    1.200050] 20190420_dt     brake_pattern[2]: 0x0\n[    1.200051] 20190420_dt     brake_pattern[3]: 0x0\n[    1.200052] 20190420_dt         brake_en: 0\n[    1.200053] 20190420_dt        wf_repeat_n: 0\n[    1.200054] 20190420_dt         wf_s_repeat_n: 0\n[    1.200055] 20190420_dt         lra_auto_res_disable: 0\n[    1.200056]  20190420_dt       effect_id: 9\n[    1.200057]  20190420_dt       vmax: 3600 mv\n[    1.200058] 20190420_dt        play_rate: 20000 us\n[    1.200060] 20190420_dt     pattern[0]: 0x3e\n[    1.200061] 20190420_dt     pattern[1]: 0x3e\n[    1.200062] 20190420_dt     brake_pattern[0]: 0x2\n[    1.200063] 20190420_dt     brake_pattern[1]: 0x1\n[    1.200065] 20190420_dt     brake_pattern[2]: 0x0\n[    1.200066] 20190420_dt     brake_pattern[3]: 0x0\n[    1.200067] 20190420_dt         brake_en: 0\n[    1.200068] 20190420_dt        wf_repeat_n: 0\n[    1.200069] 20190420_dt         wf_s_repeat_n: 0\n[    1.200070] 20190420_dt         lra_auto_res_disable: 0\n[    1.200071]  20190420_dt       aw8697->effects_count: 10\n[    1.200072]  20190420_dt       aw8697->effect_id_boundary: 10\n[    1.200074]  20190420_dt       aw8697->effect_max: 170\n[    1.200075]  20190420_dt       aw8697->info.cont_drv_lvl: 73\n[    1.200076]  20190420_dt       aw8697->info.cont_drv_lvl_ov: 73\n[    1.200077]  20190420_dt       aw8697->info.trig_config[0][0]: 0\n[    1.200079]  20190420_dt       aw8697->info.trig_config[0][1]: 1\n[    1.200080]  20190420_dt       aw8697->info.trig_config[0][2]: 0\n[    1.200082]  20190420_dt       aw8697->info.trig_config[0][3]: 1\n[    1.200083]  20190420_dt       aw8697->info.trig_config[0][4]: 2\n[    1.200084]  20190420_dt       aw8697->info.trig_config[1][0]: 0\n[    1.200086]  20190420_dt       aw8697->info.trig_config[1][1]: 1\n[    1.200087]  20190420_dt       aw8697->info.trig_config[1][2]: 0\n[    1.200088]  20190420_dt       aw8697->info.trig_config[1][3]: 1\n[    1.200090]  20190420_dt       aw8697->info.trig_config[1][4]: 2\n[    1.200091]  20190420_dt       aw8697->info.trig_config[2][0]: 0\n[    1.200092]  20190420_dt       aw8697->info.trig_config[2][1]: 1\n[    1.200094]  20190420_dt       aw8697->info.trig_config[2][2]: 0\n[    1.200095]  20190420_dt       aw8697->info.trig_config[2][3]: 1\n[    1.200096]  20190420_dt       aw8697->info.trig_config[2][4]: 2\n[    1.200098]  20190420_dt       aw8697->info.rtp_time[0]: 20\n[    1.200099]  20190420_dt       aw8697->info.rtp_time[1]: 20\n[    1.200100]  20190420_dt       aw8697->info.rtp_time[2]: 20\n[    1.200101]  20190420_dt       aw8697->info.rtp_time[3]: 20\n[    1.200103]  20190420_dt       aw8697->info.rtp_time[4]: 20\n[    1.200104]  20190420_dt       aw8697->info.rtp_time[5]: 20\n[    1.200105]  20190420_dt       aw8697->info.rtp_time[6]: 20\n[    1.200106]  20190420_dt       aw8697->info.rtp_time[7]: 20\n[    1.200108]  20190420_dt       aw8697->info.rtp_time[8]: 20000\n[    1.200109]  20190420_dt       aw8697->info.rtp_time[9]: 15000\n[    1.200110]  20190420_dt       aw8697->info.rtp_time[10]: 15000\n[    1.200111]  20190420_dt       aw8697->info.rtp_time[11]: 20000\n[    1.200113]  20190420_dt       aw8697->info.rtp_time[12]: 25000\n[    1.200114]  20190420_dt       aw8697->info.rtp_time[13]: 15000\n[    1.200115]  20190420_dt       aw8697->info.rtp_time[14]: 30000\n[    1.200117]  20190420_dt       aw8697->info.rtp_time[15]: 25000\n[    1.200118]  20190420_dt       aw8697->info.rtp_time[16]: 20000\n[    1.200119]  20190420_dt       aw8697->info.rtp_time[17]: 20000\n[    1.200121]  20190420_dt       aw8697->info.rtp_time[18]: 20000\n[    1.200122]  20190420_dt       aw8697->info.rtp_time[19]: 20000\n[    1.200123]  20190420_dt       aw8697->info.rtp_time[20]: 20000\n[    1.200125]  20190420_dt       aw8697->info.rtp_time[21]: 20000\n[    1.200126]  20190420_dt       aw8697->info.rtp_time[22]: 20000\n[    1.200127]  20190420_dt       aw8697->info.rtp_time[23]: 20000\n[    1.200129]  20190420_dt       aw8697->info.rtp_time[24]: 20000\n[    1.200130]  20190420_dt       aw8697->info.rtp_time[25]: 20000\n[    1.200131]  20190420_dt       aw8697->info.rtp_time[26]: 20000\n[    1.200132]  20190420_dt       aw8697->info.rtp_time[27]: 20000\n[    1.200134]  20190420_dt       aw8697->info.rtp_time[28]: 20000\n[    1.200135]  20190420_dt       aw8697->info.rtp_time[29]: 20000\n[    1.200136]  20190420_dt       aw8697->info.rtp_time[30]: 20000\n[    1.200138]  20190420_dt       aw8697->info.rtp_time[31]: 20000\n[    1.200139]  20190420_dt       aw8697->info.rtp_time[32]: 20000\n[    1.200140]  20190420_dt       aw8697->info.rtp_time[33]: 20000\n[    1.200142]  20190420_dt       aw8697->info.rtp_time[34]: 20000\n[    1.200143]  20190420_dt       aw8697->info.rtp_time[35]: 20000\n[    1.200144]  20190420_dt       aw8697->info.rtp_time[36]: 20000\n[    1.200145]  20190420_dt       aw8697->info.rtp_time[37]: 20000\n[    1.200147]  20190420_dt       aw8697->info.rtp_time[38]: 20000\n[    1.200148]  20190420_dt       aw8697->info.rtp_time[39]: 20000\n[    1.200149]  20190420_dt       aw8697->info.rtp_time[40]: 20000\n[    1.200151]  20190420_dt       aw8697->info.rtp_time[41]: 20000\n[    1.200152]  20190420_dt       aw8697->info.rtp_time[42]: 20000\n[    1.200153]  20190420_dt       aw8697->info.rtp_time[43]: 20000\n[    1.200155]  20190420_dt       aw8697->info.rtp_time[44]: 20000\n[    1.200156]  20190420_dt       aw8697->info.rtp_time[45]: 20000\n[    1.200157]  20190420_dt       aw8697->info.rtp_time[46]: 20000\n[    1.200158]  20190420_dt       aw8697->info.rtp_time[47]: 20000\n[    1.200160]  20190420_dt       aw8697->info.rtp_time[48]: 20000\n[    1.200161]  20190420_dt       aw8697->info.rtp_time[49]: 20000\n[    1.200162]  20190420_dt       aw8697->info.rtp_time[50]: 20000\n[    1.200164]  20190420_dt       aw8697->info.rtp_time[51]: 20000\n[    1.200165]  20190420_dt       aw8697->info.rtp_time[52]: 20000\n[    1.200166]  20190420_dt       aw8697->info.rtp_time[53]: 20000\n[    1.200167]  20190420_dt       aw8697->info.rtp_time[54]: 20000\n[    1.200169]  20190420_dt       aw8697->info.rtp_time[55]: 20000\n[    1.200170]  20190420_dt       aw8697->info.rtp_time[56]: 20000\n[    1.200172]  20190420_dt       aw8697->info.rtp_time[57]: 20000\n[    1.200173]  20190420_dt       aw8697->info.rtp_time[58]: 20000\n[    1.200174]  20190420_dt       aw8697->info.rtp_time[59]: 20000\n[    1.200176]  20190420_dt       aw8697->info.rtp_time[60]: 20000\n[    1.200177]  20190420_dt       aw8697->info.rtp_time[61]: 20000\n[    1.200178]  20190420_dt       aw8697->info.rtp_time[62]: 20000\n[    1.200180]  20190420_dt       aw8697->info.rtp_time[63]: 20000\n[    1.200181]  20190420_dt       aw8697->info.rtp_time[64]: 20000\n[    1.200182]  20190420_dt       aw8697->info.rtp_time[65]: 20000\n[    1.200183]  20190420_dt       aw8697->info.rtp_time[66]: 20000\n[    1.200185]  20190420_dt       aw8697->info.rtp_time[67]: 20000\n[    1.200186]  20190420_dt       aw8697->info.rtp_time[68]: 20000\n[    1.200187]  20190420_dt       aw8697->info.rtp_time[69]: 20000\n[    1.200189]  20190420_dt       aw8697->info.rtp_time[70]: 20000\n[    1.200190]  20190420_dt       aw8697->info.rtp_time[71]: 20000\n[    1.200191]  20190420_dt       aw8697->info.rtp_time[72]: 20000\n[    1.200192]  20190420_dt       aw8697->info.rtp_time[73]: 20000\n[    1.200194]  20190420_dt       aw8697->info.rtp_time[74]: 20000\n[    1.200195]  20190420_dt       aw8697->info.rtp_time[75]: 20000\n[    1.200196]  20190420_dt       aw8697->info.rtp_time[76]: 20000\n[    1.200198]  20190420_dt       aw8697->info.rtp_time[77]: 20000\n[    1.200199]  20190420_dt       aw8697->info.rtp_time[78]: 20000\n[    1.200200]  20190420_dt       aw8697->info.rtp_time[79]: 20000\n[    1.200201]  20190420_dt       aw8697->info.rtp_time[80]: 20000\n[    1.200203]  20190420_dt       aw8697->info.rtp_time[81]: 20000\n[    1.200204]  20190420_dt       aw8697->info.rtp_time[82]: 20000\n[    1.200205]  20190420_dt       aw8697->info.rtp_time[83]: 20000\n[    1.200207]  20190420_dt       aw8697->info.rtp_time[84]: 20000\n[    1.200208]  20190420_dt       aw8697->info.rtp_time[85]: 20000\n[    1.200209]  20190420_dt       aw8697->info.rtp_time[86]: 20000\n[    1.200210]  20190420_dt       aw8697->info.rtp_time[87]: 20000\n[    1.200212]  20190420_dt       aw8697->info.rtp_time[88]: 20000\n[    1.200213]  20190420_dt       aw8697->info.rtp_time[89]: 20000\n[    1.200214]  20190420_dt       aw8697->info.rtp_time[90]: 20000\n[    1.200215]  20190420_dt       aw8697->info.rtp_time[91]: 20000\n[    1.200217]  20190420_dt       aw8697->info.rtp_time[92]: 20000\n[    1.200218]  20190420_dt       aw8697->info.rtp_time[93]: 20000\n[    1.200219]  20190420_dt       aw8697->info.rtp_time[94]: 20000\n[    1.200221]  20190420_dt       aw8697->info.rtp_time[95]: 20000\n[    1.200222]  20190420_dt       aw8697->info.rtp_time[96]: 20000\n[    1.200223]  20190420_dt       aw8697->info.rtp_time[97]: 20000\n[    1.200225]  20190420_dt       aw8697->info.rtp_time[98]: 20000\n[    1.200226]  20190420_dt       aw8697->info.rtp_time[99]: 20000\n[    1.200227]  20190420_dt       aw8697->info.rtp_time[100]: 20000\n[    1.200228]  20190420_dt       aw8697->info.rtp_time[101]: 20000\n[    1.200230]  20190420_dt       aw8697->info.rtp_time[102]: 20000\n[    1.200231]  20190420_dt       aw8697->info.rtp_time[103]: 20000\n[    1.200232]  20190420_dt       aw8697->info.rtp_time[104]: 20000\n[    1.200234]  20190420_dt       aw8697->info.rtp_time[105]: 20000\n[    1.200235]  20190420_dt       aw8697->info.rtp_time[106]: 20000\n[    1.200236]  20190420_dt       aw8697->info.rtp_time[107]: 20000\n[    1.200238]  20190420_dt       aw8697->info.rtp_time[108]: 20000\n[    1.200239]  20190420_dt       aw8697->info.rtp_time[109]: 20000\n[    1.200240]  20190420_dt       aw8697->info.rtp_time[110]: 20000\n[    1.200242]  20190420_dt       aw8697->info.rtp_time[111]: 20000\n[    1.200243]  20190420_dt       aw8697->info.rtp_time[112]: 20000\n[    1.200244]  20190420_dt       aw8697->info.rtp_time[113]: 20000\n[    1.200245]  20190420_dt       aw8697->info.rtp_time[114]: 20000\n[    1.200247]  20190420_dt       aw8697->info.rtp_time[115]: 20000\n[    1.200248]  20190420_dt       aw8697->info.rtp_time[116]: 20000\n[    1.200250]  20190420_dt       aw8697->info.rtp_time[117]: 20000\n[    1.200251]  20190420_dt       aw8697->info.rtp_time[118]: 20000\n[    1.200252]  20190420_dt       aw8697->info.rtp_time[119]: 20000\n[    1.200254]  20190420_dt       aw8697->info.rtp_time[120]: 20000\n[    1.200255]  20190420_dt       aw8697->info.rtp_time[121]: 20000\n[    1.200256]  20190420_dt       aw8697->info.rtp_time[122]: 20000\n[    1.200257]  20190420_dt       aw8697->info.rtp_time[123]: 20000\n[    1.200259]  20190420_dt       aw8697->info.rtp_time[124]: 20000\n[    1.200260]  20190420_dt       aw8697->info.rtp_time[125]: 20000\n[    1.200261]  20190420_dt       aw8697->info.rtp_time[126]: 20000\n[    1.200263]  20190420_dt       aw8697->info.rtp_time[127]: 20000\n[    1.200264]  20190420_dt       aw8697->info.rtp_time[128]: 20000\n[    1.200265]  20190420_dt       aw8697->info.rtp_time[129]: 20000\n[    1.200267]  20190420_dt       aw8697->info.rtp_time[130]: 20000\n[    1.200268]  20190420_dt       aw8697->info.rtp_time[131]: 20000\n[    1.200269]  20190420_dt       aw8697->info.rtp_time[132]: 20000\n[    1.200270]  20190420_dt       aw8697->info.rtp_time[133]: 20000\n[    1.200272]  20190420_dt       aw8697->info.rtp_time[134]: 20000\n[    1.200273]  20190420_dt       aw8697->info.rtp_time[135]: 20000\n[    1.200274]  20190420_dt       aw8697->info.rtp_time[136]: 20000\n[    1.200276]  20190420_dt       aw8697->info.rtp_time[137]: 20000\n[    1.200277]  20190420_dt       aw8697->info.rtp_time[138]: 20000\n[    1.200278]  20190420_dt       aw8697->info.rtp_time[139]: 20000\n[    1.200280]  20190420_dt       aw8697->info.rtp_time[140]: 20000\n[    1.200281]  20190420_dt       aw8697->info.rtp_time[141]: 20000\n[    1.200282]  20190420_dt       aw8697->info.rtp_time[142]: 20000\n[    1.200283]  20190420_dt       aw8697->info.rtp_time[143]: 20000\n[    1.200285]  20190420_dt       aw8697->info.rtp_time[144]: 20000\n[    1.200286]  20190420_dt       aw8697->info.rtp_time[145]: 20000\n[    1.200287]  20190420_dt       aw8697->info.rtp_time[146]: 20000\n[    1.200289]  20190420_dt       aw8697->info.rtp_time[147]: 20000\n[    1.200290]  20190420_dt       aw8697->info.rtp_time[148]: 20000\n[    1.200291]  20190420_dt       aw8697->info.rtp_time[149]: 20000\n[    1.200293]  20190420_dt       aw8697->info.rtp_time[150]: 20000\n[    1.200294]  20190420_dt       aw8697->info.rtp_time[151]: 20000\n[    1.200295]  20190420_dt       aw8697->info.rtp_time[152]: 20000\n[    1.200296]  20190420_dt       aw8697->info.rtp_time[153]: 20000\n[    1.200298]  20190420_dt       aw8697->info.rtp_time[154]: 20000\n[    1.200299]  20190420_dt       aw8697->info.rtp_time[155]: 20000\n[    1.200300]  20190420_dt       aw8697->info.rtp_time[156]: 20000\n[    1.200302]  20190420_dt       aw8697->info.rtp_time[157]: 20000\n[    1.200303]  20190420_dt       aw8697->info.rtp_time[158]: 20000\n[    1.200304]  20190420_dt       aw8697->info.rtp_time[159]: 20000\n[    1.200305]  20190420_dt       aw8697->info.rtp_time[160]: 20000\n[    1.200307]  20190420_dt       aw8697->info.rtp_time[161]: 20000\n[    1.200308]  20190420_dt       aw8697->info.rtp_time[162]: 20000\n[    1.200309]  20190420_dt       aw8697->info.rtp_time[163]: 20000\n[    1.200311]  20190420_dt       aw8697->info.rtp_time[164]: 20000\n[    1.200312]  20190420_dt       aw8697->info.rtp_time[165]: 20000\n[    1.200313]  20190420_dt       aw8697->info.rtp_time[166]: 20000\n[    1.200315]  20190420_dt       aw8697->info.rtp_time[167]: 20000\n[    1.200316]  20190420_dt       aw8697->info.rtp_time[168]: 20000\n[    1.200317]  20190420_dt       aw8697->info.rtp_time[169]: 20000\n[    1.200319]  20190420_dt       aw8697->info.rtp_time[170]: 20000\n[    1.200320]  20190420_dt       aw8697->info.rtp_time[171]: 20000\n[    1.200321]  20190420_dt       aw8697->info.rtp_time[172]: 20000\n[    1.200322]  20190420_dt       aw8697->info.rtp_time[173]: 20000\n[    1.200324]  20190420_dt       aw8697->info.rtp_time[174]: 20000\n[    1.200325]  20190420_dt       aw8697->info.bst_vol_default: 0x11\n[    1.200326]  20190420_dt       aw8697->info.bst_vol_ram: 0x11\n[    1.200327]  20190420_dt       aw8697->info.bst_vol_rtp: 0x11\n[    1.200329] aw8697_i2c_probe ---4457 \n[    1.200423] found pin control aw8697_reset_reset\n[    1.200426] Selected 'aw8697_interrupt_active'\n[    1.200427] found pin control aw8697_reset_active\n[    1.200428] Selected 'aw8697_interrupt_active'\n[    1.200430] found pin control aw8697_interrupt_active\n[    1.200458] Selected 'aw8697_interrupt_active'\n[    1.200460] aw8697_i2c_probe ---4497 \n[    1.200511] Selected 'aw8697_reset_active'\n[    1.200831] nq-nci 0-0028: ese GPIO <OPTIONAL> error getting from OF node\n[    1.200876] nq-nci 0-0028: nqx_probe: ese gpio not provided\n[    1.201032] nq-nci 0-0028: nfcc_hw_check: - reset NFCC 1 - pull down and pull up VEN\n[    1.205728] msm_pcie_enable: PCIe: Release the reset of endpoint of RC0.\n[    1.220091] Selected 'aw8697_reset_reset'\n[    1.222159] msm_pcie_link_train: PCIe RC0 link initialized\n[    1.222986] pci-msm 1c00000.qcom,pcie: host bridge /soc/qcom,pcie@1c00000 ranges:\n[    1.222999] pci-msm 1c00000.qcom,pcie:   No bus range found for /soc/qcom,pcie@1c00000, using [bus 00-ff]\n[    1.223012] pci-msm 1c00000.qcom,pcie:    IO 0x60200000..0x602fffff -> 0x60200000\n[    1.223023] pci-msm 1c00000.qcom,pcie:   MEM 0x60300000..0x63ffffff -> 0x60300000\n[    1.223467] pci-msm 1c00000.qcom,pcie: PCI host bridge to bus 0000:00\n[    1.223473] pci_bus 0000:00: root bus resource [bus 00-ff]\n[    1.223478] pci_bus 0000:00: root bus resource [io  0x0000-0xfffff] (bus address [0x60200000-0x602fffff])\n[    1.223481] pci_bus 0000:00: root bus resource [mem 0x60300000-0x63ffffff]\n[    1.223542] pci 0000:00:00.0: [17cb:010b] type 01 class 0x060400\n[    1.223654] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]\n[    1.223870] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold\n[    1.240134] Selected 'aw8697_reset_active'\n[    1.240849] i2c_geni a8c000.i2c: i2c error :-107\n[    1.240857] aw8697_i2c_read: i2c_read cnt=0 error=-107\n[    1.243207] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring\n[    1.243456] pci 0000:01:00.0: [17cb:1101] type 00 class 0xff0000\n[    1.243615] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x000fffff 64bit]\n[    1.244118] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold\n[    1.244224] pci 0000:01:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5 GT/s x1 link at 0000:00:00.0 (capable of 7.876 Gb/s with 8 GT/s x1 link)\n[    1.261693] aw8697_read_chipid aw8697 detected\n[    1.262957] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01\n[    1.263024] pci 0000:00:00.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000\n[    1.263032] pci 0000:00:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000\n[    1.263037] pci 0000:00:00.0: bridge window [mem 0x00100000-0x001fffff] to [bus 01] add_size 200000 add_align 100000\n[    1.263054] pci 0000:00:00.0: BAR 8: assigned [mem 0x60300000-0x605fffff]\n[    1.263060] pci 0000:00:00.0: BAR 9: assigned [mem 0x60600000-0x607fffff 64bit pref]\n[    1.263064] pci 0000:00:00.0: BAR 0: assigned [mem 0x60800000-0x60800fff 64bit]\n[    1.263103] pci 0000:00:00.0: BAR 7: assigned [io  0x1000-0x1fff]\n[    1.263111] pci 0000:01:00.0: BAR 0: assigned [mem 0x60300000-0x603fffff 64bit]\n[    1.263171] pci 0000:00:00.0: PCI bridge to [bus 01]\n[    1.263178] pci 0000:00:00.0:   bridge window [io  0x1000-0x1fff]\n[    1.263199] pci 0000:00:00.0:   bridge window [mem 0x60300000-0x605fffff]\n[    1.263214] pci 0000:00:00.0:   bridge window [mem 0x60600000-0x607fffff 64bit pref]\n[    1.263359] pci-msm-rc 0000:00:00.0: Linked as a consumer to 15000000.apps-smmu\n[    1.263702] iommu: Adding device 0000:00:00.0 to group 18\n[    1.264393] msm_pcie_enumerate: PCIe: RC0: has already been enumerated.\n[    1.264480] cnss_pci 0000:01:00.0: Linked as a consumer to 15000000.apps-smmu\n[    1.270704] iommu: Adding device 0000:01:00.0 to group 19\n[    1.271001] cnss: PCI is probing, vendor ID: 0x17cb, device ID: 0x1101\n[    1.271026] cnss_pci 0000:01:00.0: assigned reserved memory node cnss_wlan_region\n[    1.271029] cnss: CMA area is cnss_wlan_region\n[    1.271414] cnss: Powerup is ignored\n[    1.271447] cnss: Ramdump size 0x400000\n[    1.271466] cnss2 b0000000.qcom,cnss-qca6390: for wlan segments only will be dumped.\n[    1.271556] cnss: Initializing SMMU\n[    1.271559] cnss: Enabling SMMU S1 stage\n[    1.271565] cnss: smmu_iova_start: 0x00000000a0000000, smmu_iova_len: 0x10000000\n[    1.271571] cnss: smmu_iova_ipa_start: 0x00000000b0000000, smmu_iova_ipa_len: 0x10000\n[    1.271578] cnss: PCIe DRV is supported\n[    1.271619] cnss_pci 0000:01:00.0: BAR 0: assigned [mem 0x60300000-0x603fffff 64bit]\n[    1.271700] pci-msm-rc 0000:00:00.0: enabling device (0006 -> 0007)\n[    1.271724] cnss_pci 0000:01:00.0: enabling device (0000 -> 0002)\n[    1.272117] cnss: Config PCIe remap window register to 0x4000003f\n[    1.272132] cnss: Read register offset 0x1f8031c, val = 0x6\n[    1.272144] cnss: Write val 0x2 to register offset 0x1f8031c\n[    1.272930] cnss: MSI base data is 800\n[    1.272936] cnss: BAR starts at 0x0000000060300000\n[    1.272942] cnss: Assign MSI to user: MHI, num_vectors: 3, user_base_data: 800, base_vector: 0\n[    1.272946] cnss: Number of assigned MSI for MHI is 3, base vector is 0\n[    1.272952] cnss: Get IRQ number 407 for vector index 0\n[    1.272955] cnss: Get IRQ number 408 for vector index 1\n[    1.272958] cnss: Get IRQ number 409 for vector index 2\n[    1.274406] cnss: Get device version info, family number: 0x4, device number: 0xa, major version: 0x2, minor version: 0x0\n[    1.274410] cnss: Firmware name is amss20.bin\n[    1.274423] cnss: Get PCI link status register: 4114\n[    1.274426] cnss: Default PCI link speed is 0x2, link width is 0x1\n[    1.274435] cnss: Config PCIe remap window register to 0x4000003c\n[    1.274446] cnss: Config PCIe remap window register to 0x4000003f\n[    1.274460] cnss: Read register offset 0x1f8031c, val = 0x2\n[    1.274471] cnss: Write val 0x3 to register offset 0x1f8031c\n[    1.284143] aw8697_vibrator_init enter\n[    1.284145] aw8697_haptic_init enter\n[    1.289471] aw8697_haptic_set_bst_peak_cur  744 enter\n[    1.289879] aw8697_haptic_swicth_motorprotect_config enter\n[    1.290050] cnss: Suspending PCI link\n[    1.290315] ufshcd-qcom 1d84000.ufshc: ufshcd_needs_reinit: Re-init UFS host to use proper PHY settings for the UFS device. This can be avoided by setting the force-g4 in DT\n[    1.291944] aw8697_haptic_offset_calibration enter\n[    1.293890] aw8697_haptic_f0_calibration enter\n[    1.294069] aw8697_haptic_get_f0 enter\n[    1.295086] qcom_ice 1d90000.ufsice: QC ICE 3.1.81 device found @0x000000001ecafaa3\n[    1.299578] aw8697_haptic_set_f0_preset enter\n[    1.323599] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.330280] nq-nci 0-0028: nqx_probe: probing NFCC NQxxx exited successfully\n[    1.376795] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[4, 4], lane[2, 2], pwr[FAST MODE, FAST MODE], rate = 1\n[    1.377192] scsi 0:0:0:49488: Well-known LUN    SAMSUNG  KLUDG4UHDB-B2D1  1302 PQ: 0 ANSI: 6\n[    1.377978] scsi 0:0:0:49476: Well-known LUN    SAMSUNG  KLUDG4UHDB-B2D1  1302 PQ: 0 ANSI: 6\n[    1.378558] scsi 0:0:0:49456: Well-known LUN    SAMSUNG  KLUDG4UHDB-B2D1  1302 PQ: 0 ANSI: 6\n[    1.382095] scsi 0:0:0:0: Direct-Access     SAMSUNG  KLUDG4UHDB-B2D1  1302 PQ: 0 ANSI: 6\n[    1.382520] scsi 0:0:0:1: Direct-Access     SAMSUNG  KLUDG4UHDB-B2D1  1302 PQ: 0 ANSI: 6\n[    1.382883] scsi 0:0:0:2: Direct-Access     SAMSUNG  KLUDG4UHDB-B2D1  1302 PQ: 0 ANSI: 6\n[    1.383251] scsi 0:0:0:3: Direct-Access     SAMSUNG  KLUDG4UHDB-B2D1  1302 PQ: 0 ANSI: 6\n[    1.383620] scsi 0:0:0:4: Direct-Access     SAMSUNG  KLUDG4UHDB-B2D1  1302 PQ: 0 ANSI: 6\n[    1.383988] scsi 0:0:0:5: Direct-Access     SAMSUNG  KLUDG4UHDB-B2D1  1302 PQ: 0 ANSI: 6\n[    1.384363] sd 0:0:0:0: Power-on or device reset occurred\n[    1.384915] sd 0:0:0:0: [sda] Write Protect is off\n[    1.384919] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.385097] sd 0:0:0:0: [sda] Optimal transfer size 524288 bytes\n[    1.386303] sd 0:0:0:1: Power-on or device reset occurred\n[    1.387570] sd 0:0:0:2: Power-on or device reset occurred\n[    1.388650] sd 0:0:0:3: Power-on or device reset occurred\n[    1.389963]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21 sda22 sda23 sda24 sda25 sda26 sda27 sda28 sda29 sda30 sda31 sda32 sda33 sda34\n[    1.390246] sd 0:0:0:2: [sdc] Write Protect is off\n[    1.390249] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.390286] sd 0:0:0:1: [sdb] Write Protect is off\n[    1.390290] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.390525] sd 0:0:0:2: [sdc] Optimal transfer size 524288 bytes\n[    1.390652] sd 0:0:0:3: [sdd] Write Protect is off\n[    1.390655] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.390678] sd 0:0:0:1: [sdb] Optimal transfer size 524288 bytes\n[    1.391048] sd 0:0:0:3: [sdd] Optimal transfer size 524288 bytes\n[    1.394201]  sdb: sdb1 sdb2 sdb3 sdb4\n[    1.394320]  sdc: sdc1 sdc2 sdc3 sdc4\n[    1.394670]  sdd: sdd1 sdd2 sdd3 sdd4 sdd5 sdd6\n[    1.396308] sd 0:0:0:4: Power-on or device reset occurred\n[    1.396668] sd 0:0:0:5: Power-on or device reset occurred\n[    1.397243] sd 0:0:0:4: [sde] Write Protect is off\n[    1.397246] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    1.397375] sd 0:0:0:5: [sdf] Write Protect is off\n[    1.397402] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    1.397564] sd 0:0:0:4: [sde] Optimal transfer size 524288 bytes\n[    1.397877] sd 0:0:0:5: [sdf] Optimal transfer size 524288 bytes\n[    1.400151] msm_pcie_disable: PCIe: Assert the reset of endpoint of RC0.\n[    1.400431] cnss: Regulator vdd-wlan-rfa2 is being disabled\n[    1.400474] cnss: Regulator vdd-wlan-rfa1 is being disabled\n[    1.400510] cnss: Regulator vdd-wlan-dig is being disabled\n[    1.400518] cnss: Regulator vdd-wlan-aon is being disabled\n[    1.400550] cnss: Regulator wlan-ant-switch is being disabled\n[    1.400572] cnss: Regulator vdd-wlan-io is being disabled\n[    1.400687] register_client_adhoc:find path.src 45 dest 512\n[    1.400953] register_client_adhoc:Client handle 38 msm-cnss\n[    1.401059] cnss: Platform driver probed successfully.\n[    1.402711]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6 sdf7 sdf8 sdf9 sdf10\n[    1.403031]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51 sde52 sde53 sde54 sde55 sde56 sde57 sde58\n[    1.420043] aw8697_haptic_read_f0 enter\n[    1.420418] aw8697_haptic_read_f0 f0=1712\n[    1.420420] aw8697_haptic_read_beme  1209 enter\n[    1.420788] aw8697_haptic_read_beme max_pos_beme=127\n[    1.420790] aw8697_haptic_read_beme max_neg_beme=129\n[    1.421406] aw8697_haptic_f0_calibration  line=2070 f0_cali_step=28\n[    1.421408] aw8697_haptic_f0_calibration line=2072  f0_limit=1712\n[    1.421410] aw8697_haptic_f0_calibration line=2074  aw8697->info.f0_pre=1700\n[    1.421412] aw8697_haptic_f0_calibration f0_cali_lra=3\n[    1.421721] aw8697_haptic_f0_calibration final trim_lra=0x03\n[    1.424306] input: aw8697_haptic as /devices/platform/soc/a8c000.i2c/i2c-2/2-005a/input/input3\n[    1.424406] aw8697_i2c_probe probe completed successfully!\n[    1.425033] i2c_geni 884000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.425855] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    1.426069] i2c_geni 888000.i2c: Bus frequency not specified, default to 400KHz.\n[    1.430435] PMIC@SID0: PM8008 v1.0 options: 0, 0, 0, 0\n[    1.434523] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    1.437166] qcom,pm8008-regulator 888000.i2c:qcom,pm8008@9:qcom,pm8008-regulator: Linked as a consumer to regulator.36\n[    1.437209] qcom,pm8008-regulator 888000.i2c:qcom,pm8008@9:qcom,pm8008-regulator: Linked as a consumer to regulator.80\n[    1.437463] pm8008_l1: Bringing 0uV into 1000000-1000000uV\n[    1.440533] pm8008_l2: Bringing 0uV into 1200000-1200000uV\n[    1.444465] pm8008_l3: Bringing 0uV into 2800000-2800000uV\n[    1.447352] pm8008_l4: Bringing 0uV into 2800000-2800000uV\n[    1.450229] pm8008_l5: Bringing 0uV into 2800000-2800000uV\n[    1.453410] pm8008_l6: Bringing 0uV into 2800000-2800000uV\n[    1.456297] pm8008_l7: Bringing 0uV into 2800000-2800000uV\n[    1.458139] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    1.462688] msm_cvp_v4l2 ab00000.qcom,cvp:cvp_non_secure_cb: Linked as a consumer to 15000000.apps-smmu\n[    1.462987] iommu: Adding device ab00000.qcom,cvp:cvp_non_secure_cb to group 20\n[    1.463326] msm_cvp_v4l2 ab00000.qcom,cvp:cvp_secure_nonpixel_cb: Linked as a consumer to 15000000.apps-smmu\n[    1.464357] iommu: Adding device ab00000.qcom,cvp:cvp_secure_nonpixel_cb to group 21\n[    1.464693] msm_cvp_v4l2 ab00000.qcom,cvp:cvp_secure_pixel_cb: Linked as a consumer to 15000000.apps-smmu\n[    1.465234] iommu: Adding device ab00000.qcom,cvp:cvp_secure_pixel_cb to group 22\n[    1.465409] platform ab00000.qcom,cvp:qcom,msm-cvp,mem_cdsp: assigned reserved memory node cdsp_region\n[    1.466063] msm_npu 9900000.qcom,msm_npu: Linked as a consumer to 15000000.apps-smmu\n[    1.466442] iommu: Adding device 9900000.qcom,msm_npu to group 23\n[    1.466615] NPU_INFO: npu_probe: 2353 unable to get qfprom_physical resource\n[    1.466671] msm_npu 9900000.qcom,msm_npu: Linked as a consumer to regulator.74\n[    1.466719] msm_npu 9900000.qcom,msm_npu: Linked as a consumer to regulator.4\n[    1.467010] register_client_adhoc:find path.src 154 dest 512\n[    1.467211] register_client_adhoc:find path.src 154 dest 620\n[    1.467473] register_client_adhoc:Client handle 39 9900000.qcom,msm_npu\n[    1.467476] NPU_INFO: npu_parse_dt_bw: 1688 NPU BW client sets up successfully\n[    1.473539] synx: synx device init start\n[    1.473732] synx: synx device init success\n[    1.473787] usbcore: registered new interface driver uvcvideo\n[    1.473788] USB Video Class driver (1.1.1)\n[    1.474593] Couldn't parse device tree rc=-517\n[    1.475797] qcom,fg-gen4 c440000.qcom,spmi:qcom,pm8150b@2:qpnp,fg: hw_country: 0\n[    1.475989] FG: fg_clear_dma_errors_if_any: dma_sts: 0\n[    1.479670] FG: fg_gen4_set_ki_coeff_dischg: Wrote ki_coeff_low 367\n[    1.479857] FG: fg_gen4_set_ki_coeff_dischg: Wrote ki_coeff_med 62\n[    1.480072] FG: fg_gen4_set_ki_coeff_dischg: Wrote ki_coeff_hi 0\n[    1.480446] esr_charging_timer set to 0/7\n[    1.480816] esr_discharging_timer set to 0/7\n[    1.481933] FG: fg_gen4_esr_fast_calib_config: Enabling ESR fast calibration\n[    1.482795] FG: battery_authentic_work: battery authentic work begin to restart.\n[    1.486879] FG: fg_gen4_mem_attn_irq_en_cb: disabled mem_attn irq\n[    1.486981] raw: 0xff\n[    1.486999] raw: 0xff\n[    1.487001] ===raw_msoc:255\n[    1.487349] FG: fg_gen4_probe: battery SOC:100 voltage: 4400623uV temp: 260 id: 99600 ohms\n[    1.489008] FG: fg_gen4_get_batt_profile: cmdline of batt profile is not defined, read page0 to reload file\n[    1.489012] FG: fg_gen4_get_batt_profile: verifty battery fail. recheck after, retry:1\n[    1.489016] FG: profile_load_work: profile for batt_id=99KOhms not found..using OTP, rc:-6\n[    1.489187] FG: status_change_work: Charger not available?!\n[    1.489190] FG: status_change_work: charge_status:-22 charge_type:0 charge_done:0\n[    1.489422] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4401 Vbatt avg=4394 Vbatt res=994\n[    1.489439] raw: 0xff\n[    1.489457] raw: 0xff\n[    1.489458] ===raw_msoc:255\n[    1.489460] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 428710\n[    1.489728] [bq2597x-STANDALONE]:bq2597x_get_work_mode:work mode:Standalone\n[    1.490175] raw: 0xff\n[    1.490193] raw: 0xff\n[    1.490194] ===raw_msoc:255\n[    1.490215] raw: 0xff\n[    1.490232] raw: 0xff\n[    1.490233] ===raw_msoc:255\n[    1.490289] raw: 0xff\n[    1.490306] raw: 0xff\n[    1.490307] ===raw_msoc:255\n[    1.490358] raw: 0xff\n[    1.490375] raw: 0xff\n[    1.490376] ===raw_msoc:255\n[    1.490425] raw: 0xff\n[    1.490441] raw: 0xff\n[    1.490443] ===raw_msoc:255\n[    1.490493] raw: 0xff\n[    1.490510] raw: 0xff\n[    1.490511] ===raw_msoc:255\n[    1.494553] raw: 0xff\n[    1.494571] raw: 0xff\n[    1.494572] ===raw_msoc:255\n[    1.494697] [bq2597x-STANDALONE]:bq2597x_init_protection:enable bat ovp successfullly\n[    1.495626] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bat ocp successfullly\n[    1.496549] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bat ovp alarm successfullly\n[    1.497066] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bat ocp alarm successfullly\n[    1.497476] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bat ocp alarm successfullly\n[    1.497885] [bq2597x-STANDALONE]:bq2597x_init_protection:enable bus ovp alarm successfullly\n[    1.498295] [bq2597x-STANDALONE]:bq2597x_init_protection:enable bus ocp successfullly\n[    1.498707] [bq2597x-STANDALONE]:bq2597x_init_protection:enable bus ocp alarm successfullly\n[    1.499115] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bat therm successfullly\n[    1.499525] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bus therm successfullly\n[    1.499934] [bq2597x-STANDALONE]:bq2597x_init_protection:disable die therm successfullly\n[    1.500346] [bq2597x-STANDALONE]:bq2597x_init_protection:set bat ovp th 4525 successfully\n[    1.500756] [bq2597x-STANDALONE]:bq2597x_init_protection:set bat ovp alarm threshold 4525 successfully\n[    1.501165] [bq2597x-STANDALONE]:bq2597x_init_protection:set bat ocp threshold 0 successfully\n[    1.501575] [bq2597x-STANDALONE]:bq2597x_init_protection:set bat ocp alarm threshold 0 successfully\n[    1.501986] [bq2597x-STANDALONE]:bq2597x_init_protection:set bus ovp threshold 12000 successfully\n[    1.502395] [bq2597x-STANDALONE]:bq2597x_init_protection:set bus ovp alarm threshold 11000 successfully\n[    1.502804] [bq2597x-STANDALONE]:bq2597x_init_protection:set bus ocp threshold 3750 successfully\n[    1.503213] [bq2597x-STANDALONE]:bq2597x_init_protection:set bus ocp alarm th 3500 successfully\n[    1.503623] [bq2597x-STANDALONE]:bq2597x_init_protection:set bat ucp threshold 0 successfully\n[    1.503788] [bq2597x-STANDALONE]:bq2597x_init_protection:set die therm threshold 21 successfully\n[    1.503951] [bq2597x-STANDALONE]:bq2597x_init_protection:set bus therm threshold 21 successfully\n[    1.504360] [bq2597x-STANDALONE]:bq2597x_init_protection:set die therm threshold 145 successfully\n[    1.504769] [bq2597x-STANDALONE]:bq2597x_init_protection:set ac ovp threshold 14 successfully\n[    1.511089] [bq2597x-STANDALONE]:bq2597x_init_device:Bq device ID = 0x16\n[    1.511091] [bq2597x-STANDALONE]:bq2597x_init_device:Bq device ID = 0x16\n[    1.511094] [bq2597x-STANDALONE]:bq2597x_charger_interrupt:INT OCCURED\n[    1.511346] [bq2597x-STANDALONE]:bq2597x_dump_important_regs:dump converter state Reg [0A] = 0x00\n[    1.511595] [bq2597x-STANDALONE]:bq2597x_dump_important_regs:dump int stat Reg[0D] = 0x00\n[    1.511845] [bq2597x-STANDALONE]:bq2597x_dump_important_regs:dump int flag Reg[0E] = 0x00\n[    1.512094] [bq2597x-STANDALONE]:bq2597x_dump_important_regs:dump fault stat Reg[10] = 0x00\n[    1.512343] [bq2597x-STANDALONE]:bq2597x_dump_important_regs:dump fault flag Reg[11] = 0x00\n[    1.512592] [bq2597x-STANDALONE]:bq2597x_dump_important_regs:dump regulation flag Reg[2D] = 0x00\n[    1.514644] [bq2597x-STANDALONE]:bq2597x_psy_register:bq2597x-standalone power supply register successfully\n[    1.514802] [bq2597x-STANDALONE]:bq2597x_charger_probe:bq2597x probe successfully, Part Num:6\n               !\n[    1.514842] [Onewire] onewire_gpio_init: onewire gpio init entry.\n[    1.515120] [Onewire] onewire_gpio_probe: onewire probe entry\n[    1.517699] [ds28e16] set_sched_affinity_to_current: Setting cpu affinity to current cpu failed(-22) in set_sched_affinity_to_current.\n[    1.517702] [ds28e16] ds28el16_get_page_status_retry: read page status communication start... 0\n[    1.571573] [ds28e16] set_sched_affinity_to_all: Setting cpu affinity to all valid cpus failed(-22) in set_sched_affinity_to_all.\n[    1.571575] [ds28e16] set_sched_affinity_to_current: Setting cpu affinity to current cpu failed(-22) in set_sched_affinity_to_current.\n[    1.571577] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start 0...\n[    1.572828] [ds28e16] Read_RomID: RomID = 9f,d4,67,29,12,f0,04,68\n[    1.572831] [ds28e16] set_sched_affinity_to_all: Setting cpu affinity to all valid cpus failed(-22) in set_sched_affinity_to_all.\n[    1.591250] msm_lmh_dcvs 18591000.qcom,cpufreq-hw:qcom,limits-dcvs: Linked as a consumer to regulator.22\n[    1.591463] msm_lmh_dcvs 18591000.qcom,cpufreq-hw:qcom,limits-dcvs: Linked as a consumer to regulator.14\n[    1.592128] device-mapper: uevent: version 1.0.3\n[    1.592342] device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel@redhat.com\n[    1.602716] bt_dt_parse_vreg_info: qca,bt-vdd-core: is not provided in device tree\n[    1.602719] bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    1.602722] bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    1.602725] bt_dt_parse_vreg_info: qca,bt-vdd-pa: is not provided in device tree\n[    1.602727] bt_dt_parse_vreg_info: qca,bt-vdd-ldo: is not provided in device tree\n[    1.602729] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    1.602751] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.603262] EDAC DEVICE0: Giving out device to module soc:kryo-erp controller cache: DEV soc:kryo-erp (INTERRUPT)\n[    1.620703] sdhci: Secure Digital Host Controller Interface driver\n[    1.620705] sdhci: Copyright(c) Pierre Ossman\n[    1.620707] sdhci-pltfm: SDHCI platform and OF driver helper\n[    1.621950] usbcore: registered new interface driver usbhid\n[    1.621951] usbhid: USB HID core driver\n[    1.622131] ashmem: initialized\n[    1.622210] wlan_hdd_state wlan major(488) initialized\n[    1.622214] ipa_ut ipa_ut_module_init:1034 Loading IPA test module...\n[    1.622560] bimc-bwmon 90b6400.qcom,cpu-cpu-llcc-bwmon: BW HWmon governor registered.\n[    1.622608] bimc-bwmon 9091000.qcom,cpu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    1.622804] bimc-bwmon 60400.qcom,npu-npu-llcc-bwmon: BW HWmon governor registered.\n[    1.622850] bimc-bwmon 9093000.qcom,npu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    1.622965] bimc-bwmon 70300.qcom,npudsp-npu-ddr-bwmon: BW HWmon governor registered.\n[    1.624846] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-cpu-l3-latmon: Memory Latency governor registered.\n[    1.625015] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.625196] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.625392] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-cpu-l3-latmon: Memory Latency governor registered.\n[    1.625556] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu7-cpu-l3-latmon: Memory Latency governor registered.\n[    1.625717] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.625880] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.626045] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-computemon: Compute governor registered.\n[    1.626200] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-qoslatmon: Memory Latency governor registered.\n[    1.626937] register_client_adhoc:find path.src 1 dest 627\n[    1.627217] register_client_adhoc:Client handle 40 soc:qcom,snoc_cnoc_keepalive\n[    1.627701] register_client_adhoc:find path.src 1 dest 770\n[    1.627778] register_client_adhoc:Client handle 41 soc:qcom,cpu-cpu-llcc-bw\n[    1.628476] register_client_adhoc:find path.src 129 dest 512\n[    1.628538] register_client_adhoc:Client handle 42 soc:qcom,cpu-llcc-ddr-bw\n[    1.629177] register_client_adhoc:find path.src 154 dest 770\n[    1.629278] register_client_adhoc:Client handle 43 soc:qcom,npu-npu-llcc-bw\n[    1.629746] register_client_adhoc:find path.src 770 dest 512\n[    1.629834] register_client_adhoc:Client handle 44 soc:qcom,npu-llcc-ddr-bw\n[    1.630308] register_client_adhoc:find path.src 154 dest 512\n[    1.630477] register_client_adhoc:Client handle 45 soc:qcom,npudsp-npu-ddr-bw\n[    1.630955] register_client_adhoc:find path.src 154 dest 512\n[    1.631123] register_client_adhoc:Client handle 46 soc:qcom,npu-npu-ddr-latfloor\n[    1.631390] register_client_adhoc:find path.src 1 dest 770\n[    1.631446] register_client_adhoc:Client handle 47 soc:qcom,cpu0-cpu-llcc-lat\n[    1.631757] register_client_adhoc:find path.src 1 dest 770\n[    1.631816] register_client_adhoc:Client handle 48 soc:qcom,cpu4-cpu-llcc-lat\n[    1.632239] register_client_adhoc:find path.src 129 dest 512\n[    1.632299] register_client_adhoc:Client handle 49 soc:qcom,cpu0-llcc-ddr-lat\n[    1.632727] register_client_adhoc:find path.src 129 dest 512\n[    1.632787] register_client_adhoc:Client handle 51 soc:qcom,cpu4-llcc-ddr-lat\n[    1.633202] register_client_adhoc:find path.src 129 dest 512\n[    1.633264] register_client_adhoc:Client handle 50 soc:qcom,cpu4-cpu-ddr-latfloor\n[    1.633953] register_client_adhoc:find path.src 26 dest 512\n[    1.634073] register_client_adhoc:Client handle 52 soc:qcom,gpubw\n[    1.636617] us_prox_probe: start\n[    1.636774] us_prox_probe: end\n[    1.636898] qcom-llcc-pmu 9095000.llcc-pmu: Registered llcc_pmu, type: 8\n[    1.650029] coresight-tmc 6048000.tmc: Linked as a consumer to 15000000.apps-smmu\n[    1.650205] iommu: Adding device 6048000.tmc to group 24\n[    1.651082] coresight-funnel 6902000.funnel: Linked as a consumer to regulator.61\n[    1.651114] coresight-funnel 6902000.funnel: Linked as a consumer to regulator.62\n[    1.653161] coresight-funnel 6c44000.funnel: Linked as a consumer to regulator.74\n[    1.653190] coresight-funnel 6c44000.funnel: Linked as a consumer to regulator.4\n[    1.654960] coresight-stm 6002000.stm: stm_register_device failed, probing deffered\n[    1.655026] OF: graph: no port node found in /soc/cti@78e0000\n[    1.655112] OF: graph: no port node found in /soc/cti@78f0000\n[    1.655197] OF: graph: no port node found in /soc/cti@7900000\n[    1.655285] OF: graph: no port node found in /soc/cti@6e01000\n[    1.655366] OF: graph: no port node found in /soc/cti@6e02000\n[    1.655451] OF: graph: no port node found in /soc/cti@6e03000\n[    1.655534] OF: graph: no port node found in /soc/cti@6e0c000\n[    1.655621] OF: graph: no port node found in /soc/cti@6e0d000\n[    1.655703] OF: graph: no port node found in /soc/cti@6e0e000\n[    1.655786] OF: graph: no port node found in /soc/cti@6e11000\n[    1.655872] OF: graph: no port node found in /soc/cti@6e21000\n[    1.655958] OF: graph: no port node found in /soc/cti@6c09000\n[    1.656042] OF: graph: no port node found in /soc/cti@6c0a000\n[    1.656127] OF: graph: no port node found in /soc/cti@6c2a000\n[    1.656209] OF: graph: no port node found in /soc/cti@6c2b000\n[    1.656298] OF: graph: no port node found in /soc/cti@6c2c000\n[    1.656382] OF: graph: no port node found in /soc/cti@6010000\n[    1.656462] OF: graph: no port node found in /soc/cti@6011000\n[    1.656568] OF: graph: no port node found in /soc/cti@6012000\n[    1.656652] OF: graph: no port node found in /soc/cti@6013000\n[    1.656734] OF: graph: no port node found in /soc/cti@6014000\n[    1.656814] OF: graph: no port node found in /soc/cti@6015000\n[    1.656894] OF: graph: no port node found in /soc/cti@6016000\n[    1.656977] OF: graph: no port node found in /soc/cti@6017000\n[    1.657063] OF: graph: no port node found in /soc/cti@6018000\n[    1.657142] OF: graph: no port node found in /soc/cti@6019000\n[    1.657222] OF: graph: no port node found in /soc/cti@601a000\n[    1.657319] OF: graph: no port node found in /soc/cti@601b000\n[    1.657400] OF: graph: no port node found in /soc/cti@601c000\n[    1.657481] OF: graph: no port node found in /soc/cti@601d000\n[    1.657564] OF: graph: no port node found in /soc/cti@601e000\n[    1.657647] OF: graph: no port node found in /soc/cti@601f000\n[    1.657728] OF: graph: no port node found in /soc/cti@7020000\n[    1.657818] OF: graph: no port node found in /soc/cti@7120000\n[    1.657907] OF: graph: no port node found in /soc/cti@7220000\n[    1.657997] OF: graph: no port node found in /soc/cti@7320000\n[    1.658085] OF: graph: no port node found in /soc/cti@7420000\n[    1.658176] OF: graph: no port node found in /soc/cti@7520000\n[    1.658263] OF: graph: no port node found in /soc/cti@7620000\n[    1.658353] OF: graph: no port node found in /soc/cti@7720000\n[    1.658443] OF: graph: no port node found in /soc/cti@6831000\n[    1.658533] OF: graph: no port node found in /soc/cti@6845000\n[    1.658622] OF: graph: no port node found in /soc/cti@6c61000\n[    1.658714] OF: graph: no port node found in /soc/cti@6c42000\n[    1.658807] OF: graph: no port node found in /soc/cti@6c43000\n[    1.658897] OF: graph: no port node found in /soc/cti@6c4b000\n[    1.658988] OF: graph: no port node found in /soc/cti@6b00000\n[    1.659082] OF: graph: no port node found in /soc/cti@6b01000\n[    1.659174] OF: graph: no port node found in /soc/cti@6b02000\n[    1.659263] OF: graph: no port node found in /soc/cti@6b03000\n[    1.659355] OF: graph: no port node found in /soc/cti@6982000\n[    1.659446] OF: graph: no port node found in /soc/cti@698b000\n[    1.659538] OF: graph: no port node found in /soc/cti@6c38000\n[    1.661127] coresight-tpdm 6900000.tpdm: Linked as a consumer to regulator.61\n[    1.661164] coresight-tpdm 6900000.tpdm: Linked as a consumer to regulator.62\n[    1.682093] coresight-tpdm 6c47000.tpdm: Linked as a consumer to regulator.74\n[    1.682119] coresight-tpdm 6c47000.tpdm: Linked as a consumer to regulator.4\n[    1.682545] coresight-tpdm 6c40000.tpdm: Linked as a consumer to regulator.74\n[    1.682569] coresight-tpdm 6c40000.tpdm: Linked as a consumer to regulator.4\n[    1.683101] coresight-tpdm 6c41000.tpdm: Linked as a consumer to regulator.74\n[    1.683125] coresight-tpdm 6c41000.tpdm: Linked as a consumer to regulator.4\n[    1.686990] OF: graph: no port node found in /soc/csr@6001000\n[    1.687044] coresight-csr 6001000.csr: CSR initialized: coresight-csr\n[    1.687070] OF: graph: no port node found in /soc/csr@6b0c000\n[    1.687125] coresight-csr 6b0c000.csr: CSR initialized: coresight-swao-csr\n[    1.687386] OF: graph: no port node found in /soc/hwevent\n[    1.687439] coresight-hwevent soc:hwevent: Hardware Event driver initialized\n[    1.687745] coresight-dummy soc:dummy_sink: Dummy device initialized\n[    1.687876] coresight-dummy soc:tpdm@6b26000: Dummy device initialized\n[    1.688290] coresight-remote-etm soc:turing_etm0: Remote ETM initialized\n[    1.688444] coresight-remote-etm soc:audio_etm0: Remote ETM initialized\n[    1.688602] coresight-remote-etm soc:ssc_etm0: Remote ETM initialized\n[    1.688772] coresight-remote-etm soc:npu_etm0: Remote ETM initialized\n[    1.688931] OF: graph: no port node found in /soc/tgu@6b0b000\n[    1.711167] usbcore: registered new interface driver snd-usb-audio\n[    1.711357] uaudio-qmi soc:usb_audio_qmi_dev: Linked as a consumer to 15000000.apps-smmu\n[    1.711395] iommu: Adding device soc:usb_audio_qmi_dev to group 25\n[    1.734234] [CSPL] Initializing misc device\n[    1.753004] cs35l41 1-0040: cs35l41 i2c probe start\n[    1.753145] cs35l41 1-0040: 1-0040 supply VA not found, using dummy regulator\n[    1.753170] cs35l41 1-0040: Linked as a consumer to regulator.0\n[    1.753185] cs35l41 1-0040: 1-0040 supply VP not found, using dummy regulator\n[    1.799321] [ds28e16] set_sched_affinity_to_current: Setting cpu affinity to current cpu failed(-22) in set_sched_affinity_to_current.\n[    1.842888] cs35l41 1-0040: Cirrus Logic CS35L41 (35a40), Revision: B2\n[    1.842995] cs35l41 1-0042: cs35l41 i2c probe start\n[    1.843086] cs35l41 1-0042: 1-0042 supply VA not found, using dummy regulator\n[    1.843110] cs35l41 1-0042: Linked as a consumer to regulator.0\n[    1.843125] cs35l41 1-0042: 1-0042 supply VP not found, using dummy regulator\n[    1.843157] cs35l41 1-0042: Reset line busy, assuming shared reset\n[    1.854697] [ds28e16] set_sched_affinity_to_all: Setting cpu affinity to all valid cpus failed(-22) in set_sched_affinity_to_all.\n[    1.854752] [ds28e16] battery_verify: battery_verify batt_verified = 1 \n[    1.855885] [ds28e16] Read_RomID: RomID = 9f,d4,67,29,12,f0,04,68\n[    1.855891] [ds28e16] verify_get_property: get RomID = 9f,d4,67,29,12,f0,04,68\n[    1.932257] cs35l41 1-0042: Cirrus Logic CS35L41 (35a40), Revision: B2\n[    1.932543] kona-pinctrl f000000.pinctrl: invalid function func2 in map table\n[    1.932552] kona-pinctrl f000000.pinctrl: invalid function func2 in map table\n[    1.932600] kona-pinctrl f000000.pinctrl: invalid function func2 in map table\n[    1.932608] kona-pinctrl f000000.pinctrl: invalid function func2 in map table\n[    1.964826] [ds28e16] Read_RomID: RomID = 9f,d4,67,29,12,f0,04,68\n[    1.965947] [ds28e16] Read_RomID: RomID = 9f,d4,67,29,12,f0,04,68\n[    1.965950] [ds28e16] verify_get_property: get chip_ok read RomID = 9f,d4,67,29,12,f0,04,68\n[    1.965953] [ds28e16] set_sched_affinity_to_current: Setting cpu affinity to current cpu failed(-22) in set_sched_affinity_to_current.\n[    1.975716] synx: registered bind ops for cam_sync\n[    1.976217] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_ife: Linked as a consumer to 15000000.apps-smmu\n[    1.990182] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 26\n[    1.990533] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_jpeg: Linked as a consumer to 15000000.apps-smmu\n[    2.010083] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 27\n[    2.010237] platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node pil_camera_region@86200000\n[    2.010656] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_icp: Linked as a consumer to 15000000.apps-smmu\n[    2.022162] [ds28e16] set_sched_affinity_to_all: Setting cpu affinity to all valid cpus failed(-22) in set_sched_affinity_to_all.\n[    2.022521] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 28\n[    2.022686] CAM_INFO: CAM-SMMU: cam_smmu_get_memory_regions_info: 3585 [icp] : Discard region specified [0xdff00000 0xe0200000] in [0x17600000 0xfef00000]\n[    2.022931] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm: Linked as a consumer to 15000000.apps-smmu\n[    2.023114] [bq2597x-STANDALONE]:bq2597x_charger_get_property:POWER_SUPPLY_PROP_CHARGING_ENABLED: disable\n[    2.023829] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 29\n[    2.024400] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_fd: Linked as a consumer to 15000000.apps-smmu\n[    2.024578] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_fd to group 30\n[    2.026394] cam-cpas ac40000.qcom,cam-cpas: Linked as a consumer to regulator.72\n[    2.028334] register_client_adhoc:find path.src 1 dest 589\n[    2.028607] register_client_adhoc:Client handle 53 cam_ahb\n[    2.028733] register_client_adhoc:find path.src 170 dest 512\n[    2.028938] register_client_adhoc:Client handle 54 cam_hf_0_mnoc\n[    2.029027] register_client_adhoc:find path.src 137 dest 512\n[    2.029242] register_client_adhoc:Client handle 55 cam_sf_0_mnoc\n[    2.029360] register_client_adhoc:find path.src 171 dest 512\n[    2.029560] register_client_adhoc:Client handle 56 cam_sf_icp_mnoc\n[    2.030037] [bq2597x-STANDALONE]:bq2597x_check_alarm_status:INT_FLAG =0x02\n[    2.030583] [bq2597x-STANDALONE]:bq2597x_check_alarm_status:INT_STAT = 0X02\n[    2.032214] [bq2597x-STANDALONE]:bq2597x_get_work_mode:work mode:Standalone\n[    2.033962] msm_cam_cdm ac4d000.qcom,cpas-cdm0: Linked as a consumer to regulator.72\n[    2.035137] csid_17x acb5200.qcom,csid0: Linked as a consumer to regulator.72\n[    2.035178] csid_17x acb5200.qcom,csid0: Linked as a consumer to regulator.68\n[    2.035337] csid_17x acc4200.qcom,csid1: Linked as a consumer to regulator.72\n[    2.035372] csid_17x acc4200.qcom,csid1: Linked as a consumer to regulator.69\n[    2.035970] csid_lite acd9200.qcom,csid-lite0: Linked as a consumer to regulator.72\n[    2.036124] csid_lite acdb400.qcom,csid-lite1: Linked as a consumer to regulator.72\n[    2.036838] cam_vfe acb4000.qcom,ife0: Linked as a consumer to regulator.72\n[    2.036866] cam_vfe acb4000.qcom,ife0: Linked as a consumer to regulator.68\n[    2.037844] CAM_INFO: CAM-ISP: cam_vfe_bus_ver3_init_hw: 3594 Overriding clock gating at bus input\n[    2.038358] cam_vfe acc3000.qcom,ife1: Linked as a consumer to regulator.72\n[    2.038391] cam_vfe acc3000.qcom,ife1: Linked as a consumer to regulator.69\n[    2.039325] CAM_INFO: CAM-ISP: cam_vfe_bus_ver3_init_hw: 3594 Overriding clock gating at bus input\n[    2.039785] CAM_INFO: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 571 No clk data for ife_dsp_clk\n[    2.039788] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 151 Option clk get failed with rc -22\n[    2.039827] cam_vfe acd9000.qcom,ife-lite0: Linked as a consumer to regulator.72\n[    2.040478] CAM_INFO: CAM-ISP: cam_vfe_bus_ver3_init_hw: 3594 Overriding clock gating at bus input\n[    2.040845] CAM_INFO: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 571 No clk data for ife_dsp_clk\n[    2.040847] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 151 Option clk get failed with rc -22\n[    2.040889] cam_vfe acdb200.qcom,ife-lite1: Linked as a consumer to regulator.72\n[    2.041455] CAM_INFO: CAM-ISP: cam_vfe_bus_ver3_init_hw: 3594 Overriding clock gating at bus input\n[    2.042400] CAM_ERR: CAM-ISP: cam_isp_context_debug_register: 4334 failed to create dentry\n[    2.042421] CAM_ERR: CAM-ISP: cam_isp_context_debug_register: 4334 failed to create dentry\n[    2.042441] CAM_ERR: CAM-ISP: cam_isp_context_debug_register: 4334 failed to create dentry\n[    2.042461] CAM_ERR: CAM-ISP: cam_isp_context_debug_register: 4334 failed to create dentry\n[    2.042481] CAM_ERR: CAM-ISP: cam_isp_context_debug_register: 4334 failed to create dentry\n[    2.042500] CAM_ERR: CAM-ISP: cam_isp_context_debug_register: 4334 failed to create dentry\n[    2.042520] CAM_ERR: CAM-ISP: cam_isp_context_debug_register: 4334 failed to create dentry\n[    2.042524] CAM_INFO: CAM-ISP: cam_isp_dev_probe: 163 Camera ISP probe complete\n[    2.043302] cam-cci-driver ac4f000.qcom,cci: Linked as a consumer to regulator.72\n[    2.043870] CAM_INFO: CAM: cam_res_mgr_probe: 682 Enable shared gpio support.\n[    2.047224] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 455 Device Type :0\n[    2.047455] cam-cci-driver ac50000.qcom,cci: Linked as a consumer to regulator.72\n[    2.050471] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 455 Device Type :1\n[    2.050827] cam-csiphy-driver ac6a000.qcom,csiphy: Linked as a consumer to regulator.72\n[    2.050865] cam-csiphy-driver ac6a000.qcom,csiphy: Linked as a consumer to regulator.50\n[    2.050983] cam-csiphy-driver ac6c000.qcom,csiphy: Linked as a consumer to regulator.72\n[    2.051011] cam-csiphy-driver ac6c000.qcom,csiphy: Linked as a consumer to regulator.50\n[    2.051124] cam-csiphy-driver ac6e000.qcom,csiphy: Linked as a consumer to regulator.72\n[    2.051152] cam-csiphy-driver ac6e000.qcom,csiphy: Linked as a consumer to regulator.50\n[    2.051267] cam-csiphy-driver ac70000.qcom,csiphy: Linked as a consumer to regulator.72\n[    2.051300] cam-csiphy-driver ac70000.qcom,csiphy: Linked as a consumer to regulator.50\n[    2.051416] cam-csiphy-driver ac72000.qcom,csiphy: Linked as a consumer to regulator.72\n[    2.051442] cam-csiphy-driver ac72000.qcom,csiphy: Linked as a consumer to regulator.50\n[    2.051550] cam-csiphy-driver ac74000.qcom,csiphy: Linked as a consumer to regulator.72\n[    2.051575] cam-csiphy-driver ac74000.qcom,csiphy: Linked as a consumer to regulator.50\n[    2.052042] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 60 No GPIO found\n[    2.052072] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 60 No GPIO found\n[    2.053616] CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 219 No GPIO found\n[    2.054581] CAM_WARN: CAM-ICP: cam_a5_get_dt_properties: 46 QoS need not be set\n[    2.054636] cam-a5 ac00000.qcom,a5: Linked as a consumer to regulator.72\n[    2.055036] cam-ipe ac9a000.qcom,ipe0: Linked as a consumer to regulator.70\n[    2.055431] cam-bps ac7a000.qcom,bps: Linked as a consumer to regulator.67\n[    2.057943] cam-jpeg-enc ac53000.qcom,jpegenc: Linked as a consumer to regulator.72\n[    2.058321] cam-jpeg-dma ac57000.qcom,jpegdma: Linked as a consumer to regulator.72\n[    2.059131] CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 162 Camera JPEG probe complete\n[    2.059573] cam_fd_hw ac5f000.qcom,fd: Linked as a consumer to regulator.72\n[    2.062484] rmnet_perf_init(): initializing rmnet_perf\n[    2.062489] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = lo\n[    2.062492] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = bond0\n[    2.062494] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = dummy0\n[    2.062498] rmnet_shs_module_init(): Starting rmnet SHS module\n[    2.063013] register_client_adhoc:find path.src 1 dest 590\n[    2.063237] register_client_adhoc:Client handle 57 disp_rsc_reg\n[    2.063258] register_client_adhoc:find path.src 20003 dest 20513\n[    2.063426] register_client_adhoc:find path.src 20004 dest 20513\n[    2.063564] register_client_adhoc:Client handle 58 disp_rsc_mnoc_llcc\n[    2.063585] register_client_adhoc:find path.src 20000 dest 20512\n[    2.063655] register_client_adhoc:Client handle 59 disp_rsc_ebi\n[    2.063703] sde_rsc af20000.qcom,sde_rscc: Linked as a consumer to regulator.73\n[    2.063812] [sde_rsc_hw:rsc_hw_init_v3:537]: sde rsc init successfully done\n[    2.063886] [sde_rsc:sde_rsc_probe:1589]: sde rsc index:0 probed successfully\n[    2.064490] dsi_phy ae94400.qcom,mdss_dsi_phy0: ae94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    2.064518] dsi_phy ae94400.qcom,mdss_dsi_phy0: Linked as a consumer to regulator.0\n[    2.064547] dsi_phy ae94400.qcom,mdss_dsi_phy0: Linked as a consumer to regulator.13\n[    2.064562] [drm:dsi_phy_driver_probe] [msm-dsi-info]: DSI_0: Probe successful\n[    2.064618] dsi_phy ae96400.qcom,mdss_dsi_phy1: ae96400.qcom,mdss_dsi_phy1 supply gdsc not found, using dummy regulator\n[    2.064641] dsi_phy ae96400.qcom,mdss_dsi_phy1: Linked as a consumer to regulator.0\n[    2.064666] dsi_phy ae96400.qcom,mdss_dsi_phy1: Linked as a consumer to regulator.13\n[    2.064673] [drm:dsi_phy_driver_probe] [msm-dsi-info]: DSI_1: Probe successful\n[    2.065423] drm_dsi_ctrl ae94000.qcom,mdss_dsi_ctrl0: Linked as a consumer to regulator.50\n[    2.065453] drm_dsi_ctrl ae94000.qcom,mdss_dsi_ctrl0: Linked as a consumer to regulator.18\n[    2.065458] AXI: get_pdata(): Error: Client name not found\n[    2.065460] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    2.065464] [drm:dsi_ctrl_dev_probe] [msm-dsi-info]: dsi-ctrl-0: Probe successful\n[    2.065564] drm_dsi_ctrl ae96000.qcom,mdss_dsi_ctrl1: Linked as a consumer to regulator.50\n[    2.065588] drm_dsi_ctrl ae96000.qcom,mdss_dsi_ctrl1: Linked as a consumer to regulator.18\n[    2.065591] AXI: get_pdata(): Error: Client name not found\n[    2.065592] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    2.065596] [drm:dsi_ctrl_dev_probe] [msm-dsi-info]: dsi-ctrl-1: Probe successful\n[    2.067321] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.067344] [drm] [msm-dsi-warn]: [xiaomi 37 02 0a video mode dsc dsi panel] fallback to default te-pin-select\n[    2.067362] [drm:dsi_panel_get] [msm-dsi-info]: [xiaomi 37 02 0a video mode dsc dsi panel] clk_strength default value = 0\n[    2.067484] mi-dsi-panel:[dsi_panel_parse_mi_config:304] mi,panel-id not specified\n[    2.067487] mi-dsi-panel:[dsi_panel_parse_mi_config:312] mi feature enabled\n[    2.067491] mi-dsi-panel:[dsi_panel_parse_mi_config:350] mi,mdss-dsi-panel-fod-off-b5-index not defined\n[    2.067493] mi-dsi-panel:[dsi_panel_parse_mi_config:358] fod dimlayer disabled.\n[    2.067499] mi-dsi-panel:[dsi_panel_parse_mi_config:445] panel disp_rate gpio not specified\n[    2.067501] mi-dsi-panel:[dsi_panel_parse_mi_config:454] panel on dimming delay 120 ms\n[    2.067504] mi-dsi-panel:[dsi_panel_parse_mi_config:464] default fod_off_dimming_delay 170\n[    2.067506] mi-dsi-panel:[dsi_panel_parse_mi_config:478] mi,mdss-dsi-panel-gamma-update-flag feature not defined\n[    2.067509] mi-dsi-panel:[dsi_panel_parse_mi_config:490] mi,mdss-dsi-greenish-update-gamma-flag feature not defined\n[    2.067512] mi-dsi-panel:[dsi_panel_parse_mi_config:504] mi,mdss-dsi-panel-dc-update-flag feature not defined\n[    2.067515] mi-dsi-panel:[dsi_panel_parse_mi_config:514] mi white point read not defined\n[    2.067518] mi-dsi-panel:[dsi_panel_parse_mi_config:526] mi,elvss_dimming_check_enable not defined\n[    2.067521] mi-dsi-panel:[dsi_panel_parse_mi_config:533] default dc backlight threshold is 440\n[    2.067523] mi-dsi-panel:[dsi_panel_parse_mi_config:542] default dc backlight type is 1\n[    2.067526] mi-dsi-panel:[dsi_panel_parse_mi_config:550] default hbm brightness is 0\n[    2.067529] mi-dsi-panel:[dsi_panel_parse_smart_fps_config:240] smart fps is supported\n[    2.067531] mi-dsi-panel:[dsi_panel_parse_mi_config:570] panel is tddi\n[    2.068915] [drm] [msm-dsi-warn]: panel_node  not found\n[    2.069891] msm_drm ae00000.qcom,mdss_mdp: Linked as a consumer to regulator.31\n[    2.069943] register_client_adhoc:find path.src 1 dest 590\n[    2.070145] register_client_adhoc:Client handle 60 mdss_reg\n[    2.070167] register_client_adhoc:find path.src 22 dest 512\n[    2.070364] register_client_adhoc:find path.src 23 dest 512\n[    2.070549] register_client_adhoc:Client handle 61 mdss_sde\n[    2.070635] [drm:sde_dbg_init:4651] evtlog_status: enable:11, panic:1, dump:2\n[    2.070646] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops sde_wb_comp_ops)\n[    2.070744] msm-dsi-display soc:qcom,dsi-display-primary: Linked as a consumer to regulator.25\n[    2.070786] msm-dsi-display soc:qcom,dsi-display-primary: Linked as a consumer to regulator.65\n[    2.070819] msm-dsi-display soc:qcom,dsi-display-primary: Linked as a consumer to regulator.66\n[    2.070925] [drm:dsi_display_bind] [msm-dsi-info]: Successfully bind display panel 'qcom,mdss_dsi_j3s_37_02_0a_dsc_video'\n[    2.071025] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-primary (ops dsi_display_comp_ops)\n[    2.071029] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-secondary (ops dsi_display_comp_ops)\n[    2.071034] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops sde_rsc_comp_ops)\n[    2.071050] [drm] mapped mdp address space @00000000c5524b76\n[    2.071410] [drm:_sde_kms_hw_init_blocks:3537] sde hardware revision:0x60000000\n[    2.072753] msmdrm_smmu ae00000.qcom,mdss_mdp:qcom,smmu_sde_unsec_cb: Linked as a consumer to 15000000.apps-smmu\n[    2.072930] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_unsec_cb to group 31\n[    2.073055] [drm] probing device qcom,smmu_sde_unsec\n[    2.073059] [drm] Created domain mdp_ns, secure=0\n[    2.073913] msmdrm_smmu ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb: Linked as a consumer to 15000000.apps-smmu\n[    2.074355] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 32\n[    2.074481] [drm] probing device qcom,smmu_sde_sec\n[    2.074484] [drm] Created domain mdp_s, secure=1\n[    2.076094] [drm:dsi_panel_get_mode] [msm-dsi-info]: default topology: lm: 1 comp_enc:1 intf: 1\n[    2.078718] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    2.078719] [drm] No driver support for vblank timestamp query.\n[    2.079640] [drm] Initialized msm_drm 1.3.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    2.079661] [drm] cont_splash enabled in 1 of 1 display(s)\n[    2.079855] [drm:dsi_ctrl_isr_configure] [msm-dsi-info]: dsi-ctrl-0: IRQ 473 registered\n[    2.092842] msm_vidc:   err : ffffffff: .....: no device Registered\n[    2.096972] msm_vidc_v4l2 aa00000.qcom,vidc:non_secure_cb: Linked as a consumer to 15000000.apps-smmu\n[    2.097128] iommu: Adding device aa00000.qcom,vidc:non_secure_cb to group 33\n[    2.097509] msm_vidc_v4l2 aa00000.qcom,vidc:secure_non_pixel_cb: Linked as a consumer to 15000000.apps-smmu\n[    2.097890] iommu: Adding device aa00000.qcom,vidc:secure_non_pixel_cb to group 34\n[    2.098279] msm_vidc_v4l2 aa00000.qcom,vidc:secure_bitstream_cb: Linked as a consumer to 15000000.apps-smmu\n[    2.098557] iommu: Adding device aa00000.qcom,vidc:secure_bitstream_cb to group 35\n[    2.098946] msm_vidc_v4l2 aa00000.qcom,vidc:secure_pixel_cb: Linked as a consumer to 15000000.apps-smmu\n[    2.099228] iommu: Adding device aa00000.qcom,vidc:secure_pixel_cb to group 36\n[    2.099641] GACT probability NOT on\n[    2.099651] Mirror/redirect action on\n[    2.099678] u32 classifier\n[    2.099679]     Actions configured\n[    2.100243] xt_time: kernel timezone is -0000\n[    2.100302] gre: GRE over IPv4 demultiplexor driver\n[    2.100304] IPv4 over IPsec tunneling driver\n[    2.100460] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip_vti0\n[    2.100661] Initializing XFRM netlink socket\n[    2.100669] IPsec XFRM device driver\n[    2.100872] NET: Registered protocol family 10\n[    2.102447] Segment Routing with IPv6\n[    2.102490] mip6: Mobile IPv6\n[    2.102693] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6_vti0\n[    2.102780] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    2.102894] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = sit0\n[    2.103099] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6tnl0\n[    2.103184] NET: Registered protocol family 17\n[    2.103194] NET: Registered protocol family 15\n[    2.103234] l2tp_core: L2TP core driver, V2.0\n[    2.103239] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    2.103241] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    2.103249] l2tp_netlink: L2TP netlink interface\n[    2.103263] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    2.103264] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    2.103291] sctp: Hash tables configured (bind 256/256)\n[    2.108795] camera_wide_cn_vana_ldo: supplied by pm8150_s5\n[    2.109070] NPU_WARN: npu_bridge_mbox_work: 1132 NPU fw is not loaded\n[    2.109204] minidump-id not found for npu\n[    2.109212] subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    2.109281] subsys-pil-tz 9800000.qcom,npu: for md_npu segments only will be dumped.\n[    2.110107] platform 3d6a000.qcom,gmu: Linked as a consumer to regulator.61\n[    2.110140] platform 3d6a000.qcom,gmu: Linked as a consumer to regulator.62\n[    2.110651] platform 3d6a000.qcom,gmu:gmu_user: Linked as a consumer to 3da0000.kgsl-smmu\n[    2.110684] iommu: Adding device 3d6a000.qcom,gmu:gmu_user to group 37\n[    2.111288] platform 3d6a000.qcom,gmu:gmu_kernel: Linked as a consumer to 3da0000.kgsl-smmu\n[    2.111324] iommu: Adding device 3d6a000.qcom,gmu:gmu_kernel to group 38\n[    2.111916] register_client_adhoc:find path.src 26 dest 512\n[    2.112110] register_client_adhoc:Client handle 62 grp3d\n[    2.112127] register_client_adhoc:find path.src 26 dest 10036\n[    2.112266] register_client_adhoc:Client handle 63 cnoc\n[    2.112270] query_client_usecase_all: query_start\n[    2.112321] query_client_usecase_all: query_start\n[    2.112507] kgsl-3d 3d00000.qcom,kgsl-3d0: Linked as a consumer to regulator.61\n[    2.112537] kgsl-3d 3d00000.qcom,kgsl-3d0: Linked as a consumer to regulator.62\n[    2.113183] platform 3da0000.qcom,kgsl-iommu:gfx3d_user: Linked as a consumer to 3da0000.kgsl-smmu\n[    2.113216] iommu: Adding device 3da0000.qcom,kgsl-iommu:gfx3d_user to group 39\n[    2.113505] platform 3da0000.qcom,kgsl-iommu:gfx3d_secure: Linked as a consumer to 3da0000.kgsl-smmu\n[    2.113536] iommu: Adding device 3da0000.qcom,kgsl-iommu:gfx3d_secure to group 40\n[    2.134903] msm-dwc3 a600000.ssusb: Linked as a consumer to regulator.55\n[    2.135046] irq: type mismatch, failed to map hwirq-14 for interrupt-controller@b220000!\n[    2.135125] irq: type mismatch, failed to map hwirq-15 for interrupt-controller@b220000!\n[    2.135517] dwc3 a600000.dwc3: Failed to get clk 'ref': -2\n[    2.135584] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.137995] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    2.138108] sps:BAM 0x000000000a704000 is registered.\n[    2.138247] register_client_adhoc:find path.src 61 dest 512\n[    2.138531] register_client_adhoc:find path.src 61 dest 676\n[    2.138853] register_client_adhoc:find path.src 1 dest 583\n[    2.139050] register_client_adhoc:Client handle 64 usb0\n[    2.140608] msm-dwc3 a600000.ssusb: Dropping the link to regulator.55\n[    2.140817] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: Linked as a consumer to regulator.10\n[    2.141541] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    2.141619] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: Dropping the link to regulator.10\n[    2.142084] six-pin-step-chg-cfg: 4250000uV, 6000000uA\n[    2.142086] six-pin-step-chg-cfg: 4450000uV, 5400000uA\n[    2.142088] six-pin-step-chg-cfg: 4480000uV, 3680000uA\n[    2.142606] mode: 0\n[    2.143839] qcom,qpnp-smb5 c440000.qcom,spmi:qcom,pm8150b@2:qcom,qpnp-smb5: Linked as a consumer to regulator.79\n[    2.143846] pm8150b_charger: smblib_usb_plugin_locked: IRQ: usbin-plugin detached\n[    2.143849] pm8150b_charger: typec_attach_detach_irq_handler: IRQ: determine-initial-status\n[    2.143912] pm8150b_charger: typec_state_change_irq_handler: IRQ: cc-state-change; Type-C NONE detected\n[    2.143935] pm8150b_charger: chg_state_change_irq_handler: IRQ: determine-initial-status\n[    2.143957] raw: 0xff\n[    2.143968] raw: 0xff\n[    2.143970] ===raw_msoc:255\n[    2.144092] pm8150b_charger: smblib_update_usb_type: APSD=UNKNOWN PD=0 QC3P5=0\n[    2.145409] quick charge type is 0\n[    2.146842] raw: 0xff\n[    2.146853] raw: 0xff\n[    2.146854] ===raw_msoc:255\n[    2.148197] icl_ua: 100000\n[    2.148235] mode: 2\n[    2.148540] raw: 0xff\n[    2.148558] raw: 0xff\n[    2.148559] ===raw_msoc:255\n[    2.149849] [ds28e16] set_sched_affinity_to_current: Setting cpu affinity to current cpu failed(-22) in set_sched_affinity_to_current.\n[    2.205010] [ds28e16] set_sched_affinity_to_all: Setting cpu affinity to all valid cpus failed(-22) in set_sched_affinity_to_all.\n[    2.205802] FG: fg_gen4_adjust_ki_coeff_full_soc: Wrote ki_coeff_full_soc [0 0]\n[    2.205827] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[    2.206208] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4401 Vbatt avg=4394 Vbatt res=994\n[    2.206220] raw: 0xff\n[    2.206230] raw: 0xff\n[    2.206232] ===raw_msoc:255\n[    2.206234] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 428710\n[    2.206237] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[    2.208736] icl_ua: 100000\n[    2.208787] mode: 2\n[    2.208831] pm8150b_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 1!\n[    2.208834] pm8150b_charger: smblib_set_prop_typec_power_role: power role already in 1, ignore!\n[    2.209089] SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    2.209092] QPNP SMB5 probed successfully\n[    2.223264] raw: 0xff\n[    2.223275] raw: 0xff\n[    2.223277] ===raw_msoc:255\n[    2.223355] quick charge type is 0\n[    2.223703] raw: 0xff\n[    2.223714] raw: 0xff\n[    2.223715] ===raw_msoc:255\n[    2.225200] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[    2.226085] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4401 Vbatt avg=4394 Vbatt res=994\n[    2.226097] raw: 0xff\n[    2.226107] raw: 0xff\n[    2.226109] ===raw_msoc:255\n[    2.226111] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 428710\n[    2.226113] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[    2.226419] coresight-tmc 6b05000.tmc: invalid cti data\n[    2.227054] tmc_etr_bam_init: setting SPS_BAM_SMMU_EN flag with (6048000.tmc)\n[    2.227158] sps:BAM 0x0000000006064000 is registered.\n[    2.227892] coresight-stm 6002000.stm: STM32 initialized\n[    2.228497] msm-dwc3 a600000.ssusb: Linked as a consumer to regulator.55\n[    2.228685] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[    2.228823] irq: type mismatch, failed to map hwirq-14 for interrupt-controller@b220000!\n[    2.228937] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4401 Vbatt avg=4394 Vbatt res=994\n[    2.228948] raw: 0xff\n[    2.228959] raw: 0xff\n[    2.228960] ===raw_msoc:255\n[    2.228962] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 428710\n[    2.228964] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[    2.229035] irq: type mismatch, failed to map hwirq-15 for interrupt-controller@b220000!\n[    2.229384] dwc3 a600000.dwc3: Failed to get clk 'ref': -2\n[    2.229447] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.231618] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    2.231729] sps:BAM 0x000000000a704000 is registered.\n[    2.231855] register_client_adhoc:find path.src 61 dest 512\n[    2.232111] register_client_adhoc:find path.src 61 dest 676\n[    2.232412] register_client_adhoc:find path.src 1 dest 583\n[    2.232595] register_client_adhoc:Client handle 64 usb0\n[    2.234014] msm-dwc3 a600000.ssusb: Dropping the link to regulator.55\n[    2.234205] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: Linked as a consumer to regulator.10\n[    2.234802] batt power supply prop 194 not supported\n[    2.236972] msm-dwc3 a600000.ssusb: Linked as a consumer to regulator.55\n[    2.237085] irq: type mismatch, failed to map hwirq-14 for interrupt-controller@b220000!\n[    2.237157] irq: type mismatch, failed to map hwirq-15 for interrupt-controller@b220000!\n[    2.237495] dwc3 a600000.dwc3: Failed to get clk 'ref': -2\n[    2.237543] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.239929] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    2.240066] sps:BAM 0x000000000a704000 is registered.\n[    2.240188] register_client_adhoc:find path.src 61 dest 512\n[    2.240429] register_client_adhoc:find path.src 61 dest 676\n[    2.240725] register_client_adhoc:find path.src 1 dest 583\n[    2.240908] register_client_adhoc:Client handle 64 usb0\n[    2.241156] msm-dwc3 a600000.ssusb: Linked as a consumer to regulator.79\n[    2.242514] core_ctl: Creating CPU group 0\n[    2.242516] core_ctl: Init CPU0 state\n[    2.242518] core_ctl: Init CPU1 state\n[    2.242519] core_ctl: Init CPU2 state\n[    2.242520] core_ctl: Init CPU3 state\n[    2.242628] core_ctl: Creating CPU group 4\n[    2.242630] core_ctl: Init CPU4 state\n[    2.242631] core_ctl: Init CPU5 state\n[    2.242632] core_ctl: Init CPU6 state\n[    2.242699] core_ctl: Creating CPU group 7\n[    2.242701] core_ctl: Init CPU7 state\n[    2.243016] registered taskstats version 1\n[    2.243018] Loading compiled-in X.509 certificates\n[    2.300750] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode\n[    2.301127] msm-dwc3 a600000.ssusb: DWC3 in low power mode\n[    2.311592] spss_utils [spss_parse_dt]: iar_buf_addr [0x8c6f0000].\n[    2.311711] spss_utils [spss_probe]: Initialization completed ok, firmware_name [spss2p].\n[    2.352672] scm_call failed: func id 0x42001601, ret: -2, syscall returns: 0x0, 0x0, 0x0\n[    2.355349] adsprpc: init_secure_vmid_list: secure VMID = 22\n[    2.355351] adsprpc: init_secure_vmid_list: secure VMID = 37\n[    2.355367] adsprpc: fastrpc_probe: service location enabled for avs/audio (audio_pdr_adsprpc)\n[    2.355370] adsprpc: fastrpc_probe: service location enabled for tms/servreg (sensors_pdr_adsprpc)\n[    2.355888] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1: Linked as a consumer to 15000000.apps-smmu\n[    2.356103] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 41\n[    2.356536] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2: Linked as a consumer to 15000000.apps-smmu\n[    2.356685] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 42\n[    2.357091] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3: Linked as a consumer to 15000000.apps-smmu\n[    2.357235] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 43\n[    2.357637] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4: Linked as a consumer to 15000000.apps-smmu\n[    2.357778] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 44\n[    2.358171] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5: Linked as a consumer to 15000000.apps-smmu\n[    2.358315] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 45\n[    2.358707] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6: Linked as a consumer to 15000000.apps-smmu\n[    2.358853] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 46\n[    2.359235] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7: Linked as a consumer to 15000000.apps-smmu\n[    2.359384] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7 to group 47\n[    2.359757] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8: Linked as a consumer to 15000000.apps-smmu\n[    2.359896] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8 to group 48\n[    2.360334] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9: Linked as a consumer to 15000000.apps-smmu\n[    2.360770] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 49\n[    2.361161] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10: Linked as a consumer to 15000000.apps-smmu\n[    2.361303] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 50\n[    2.361681] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11: Linked as a consumer to 15000000.apps-smmu\n[    2.361823] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 51\n[    2.362205] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12: Linked as a consumer to 15000000.apps-smmu\n[    2.362346] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 52\n[    2.362729] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13: Linked as a consumer to 15000000.apps-smmu\n[    2.362873] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13 to group 53\n[    2.363261] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14: Linked as a consumer to 15000000.apps-smmu\n[    2.363403] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14 to group 54\n[    2.363784] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb15: Linked as a consumer to 15000000.apps-smmu\n[    2.363927] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb15 to group 55\n[    2.364771] adsprpc: fastrpc_device_init: SSR notifier registered for adsp\n[    2.364777] adsprpc: fastrpc_device_init: SSR notifier registered for modem\n[    2.364779] adsprpc: fastrpc_device_init: SSR notifier registered for slpi\n[    2.364782] adsprpc: fastrpc_device_init: SSR notifier registered for cdsp\n[    2.368461] mtdoops: ready 4, 317 (no erase)\n[    2.368463] mtdoops: Attached to MTD device 0\n[    2.368820] block2mtd: mtd0: [/dev/block/sda15] erase_size = 2048KiB [2097152]\n[    2.368927] ngd_msm_ctrl 3ac0000.slim: Linked as a consumer to 15000000.apps-smmu\n[    2.369089] iommu: Adding device 3ac0000.slim to group 56\n[    2.371812] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input4\n[    2.372672] [NVT-ts-spi] nvt_driver_init 3364: start\n[    2.373026] [NVT-ts-spi] nvt_ts_probe 2414: start\n[    2.373044] [NVT-ts-spi] nvt_parse_dt 1059: novatek,reset-gpio=1138\n[    2.373050] [NVT-ts-spi] nvt_parse_dt 1062: novatek,irq-gpio=1139\n[    2.373053] [NVT-ts-spi] nvt_parse_dt 1069: SWRST_N8_ADDR=0x03F0FE\n[    2.373055] [NVT-ts-spi] nvt_parse_dt 1078: SPI_RD_FAST_ADDR=0x03F310\n[    2.373057] [NVT-ts-spi] nvt_parse_dt 1086: config-array-size: 1\n[    2.373060] [NVT-ts-spi] nvt_parse_dt 1094: spi-max-frequency: 15000000\n[    2.373063] [NVT-ts-spi] nvt_parse_dt 1116: tp vendor: 65\n[    2.373065] [NVT-ts-spi] nvt_parse_dt 1124: tp hw version: 55\n[    2.373067] [NVT-ts-spi] nvt_parse_dt 1132: tp hw version: 0\n[    2.373069] [NVT-ts-spi] nvt_parse_dt 1140: fw_name: novatek_nt36675_j3s_fw01.bin\n[    2.373072] [NVT-ts-spi] nvt_parse_dt 1148: mp_name: novatek_nt36675_j3s_mp01.bin\n[    2.373076] [NVT-ts-spi] nvt_ts_probe 2504: mode=0, max_speed_hz=15000000\n[    2.373181] [NVT-ts-spi] nvt_pinctrl_init 1701: nvt_pinctrl_init Enter\n[    2.373203] [NVT-ts-spi] nvt_ts_probe 2518: Request GPIO\n[    2.373217] [NVT-ts-spi] nvt_gpio_config 1265: nvt_gpio_config Exit\n[    2.373219] [NVT-ts-spi] nvt_eng_reset 443: nvt_eng_reset \n[    2.373221] [NVT-ts-spi] nvt_write_addr 336: nvt_write_addr enter\n[    2.374043] spi_geni 990000.spi: tx_fifo 16 rx_fifo 16 tx_width 32\n[    2.374384] [NVT-ts-spi] nvt_eng_reset 445: nvt_eng_reset leave\n[    2.375495] [NVT-ts-spi] nvt_ts_probe 2538: gpio set complete\n[    2.390025] [NVT-ts-spi] nvt_ts_probe 2543: start check chip\n[    2.390027] [NVT-ts-spi] nvt_write_addr 336: nvt_write_addr enter\n[    2.395124] [NVT-ts-spi] nvt_write_addr 336: nvt_write_addr enter\n[    2.395334] [NVT-ts-spi] nvt_ts_check_chip_ver_trim 1657: buf[1]=0x0E, buf[2]=0x00, buf[3]=0x00, buf[4]=0x72, buf[5]=0x66, buf[6]=0x03\n[    2.395337] [NVT-ts-spi] nvt_ts_check_chip_ver_trim 1677: This is NVT touch IC\n[    2.395339] [NVT-ts-spi] nvt_ts_probe 2550: finish check chip\n[    2.395400] input: NVTCapacitiveTouchScreen as /devices/virtual/input/input5\n[    2.395507] [NVT-ts-spi] nvt_ts_probe 2621: int_trigger_type=1\n[    2.395611] [NVT-ts-spi] nvt_irq_enable 210: enable=0, desc->depth=1\n[    2.395614] [NVT-ts-spi] nvt_ts_probe 2630: request irq 525 succeed\n[    2.397765] [NVT-ts-spi] nvt_ts_probe 2662: NVT_TOUCH_ESD_PROTECT is 1\n[    2.397820] [NVT-ts-spi] get_lockdown_info 2327: lkdown_readed = 0\n[    2.398896] [NVT-ts-spi] nvt_flash_proc_init 906: Succeeded!\n[    2.398898] [NVT-ts-spi] nvt_flash_proc_init 909: ============================================================\n[    2.398900] [NVT-ts-spi] nvt_flash_proc_init 910: Create /proc/NVTSPI\n[    2.398902] [NVT-ts-spi] nvt_flash_proc_init 911: ============================================================\n[    2.398909] [NVT-ts-spi] nvt_extra_proc_init 653: create proc/nvt_fw_version Succeeded!\n[    2.398912] [NVT-ts-spi] nvt_extra_proc_init 661: create proc/nvt_baseline Succeeded!\n[    2.398917] [NVT-ts-spi] nvt_extra_proc_init 669: create proc/nvt_raw Succeeded!\n[    2.398920] [NVT-ts-spi] nvt_extra_proc_init 677: create proc/nvt_diff Succeeded!\n[    2.398923] [NVT-ts-spi] nvt_extra_proc_init 685: create proc/nvt_xiaomi_config_info Succeeded!\n[    2.398926] [NVT-ts-spi] nvt_extra_proc_init 693: create proc/tp_lockdown_info Succeeded!\n[    2.398935] [NVT-ts-spi] nvt_mp_proc_init 2403: create /proc/nvt_selftest Succeeded!\n[    2.398938] [NVT-ts-spi] nvt_mp_proc_init 2412: create /proc/tp_selftest Succeeded!\n[    2.398941] [NVT-ts-spi] nvt_test_data_proc_init 2653: create proc/nvt_test_data Succeeded!\n[    2.398997] [NVT-ts-spi] nvt_init_touchmode_data 1803: nvt_init_touchmode_data,ENTER\n[    2.399000] [NVT-ts-spi] nvt_init_touchmode_data 1854: mode:0, set cur:0, get cur:0, def:0 min:0 max:1\n[    2.399003] [NVT-ts-spi] nvt_init_touchmode_data 1854: mode:1, set cur:0, get cur:0, def:0 min:0 max:1\n[    2.399005] [NVT-ts-spi] nvt_init_touchmode_data 1854: mode:2, set cur:0, get cur:0, def:0 min:0 max:2\n[    2.399008] [NVT-ts-spi] nvt_init_touchmode_data 1854: mode:3, set cur:0, get cur:0, def:0 min:0 max:2\n[    2.399010] [NVT-ts-spi] nvt_init_touchmode_data 1854: mode:4, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.399013] [NVT-ts-spi] nvt_init_touchmode_data 1854: mode:5, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.399015] [NVT-ts-spi] nvt_init_touchmode_data 1854: mode:6, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.399017] [NVT-ts-spi] nvt_init_touchmode_data 1854: mode:7, set cur:0, get cur:0, def:2 min:0 max:3\n[    2.399020] [NVT-ts-spi] nvt_init_touchmode_data 1854: mode:8, set cur:0, get cur:0, def:0 min:0 max:3\n[    2.399022] [NVT-ts-spi] nvt_init_touchmode_data 1854: mode:9, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.399025] [NVT-ts-spi] nvt_init_touchmode_data 1854: mode:10, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.399027] [NVT-ts-spi] nvt_init_touchmode_data 1854: mode:11, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.399030] [NVT-ts-spi] nvt_init_touchmode_data 1854: mode:12, set cur:0, get cur:0, def:0 min:0 max:1\n[    2.399032] [NVT-ts-spi] nvt_init_touchmode_data 1854: mode:13, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.399034] [NVT-ts-spi] nvt_init_touchmode_data 1854: mode:14, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.399037] [NVT-ts-spi] nvt_init_touchmode_data 1854: mode:15, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.399039] [NVT-ts-spi] nvt_init_touchmode_data 1854: mode:16, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.399042] [NVT-ts-spi] nvt_init_touchmode_data 1854: mode:17, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.399044] [NVT-ts-spi] nvt_init_touchmode_data 1854: mode:18, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.399046] [mi-touch] xiaomitouch_register_modedata: \n[    2.399049] [NVT-ts-spi] nvt_ts_probe 2791: end\n[    2.399056] [NVT-ts-spi] nvt_irq_enable 210: enable=1, desc->depth=0\n[    2.399164] [NVT-ts-spi] nvt_driver_init 3373: finished\n[    2.399215] rtc-pm8xxx c440000.qcom,spmi:qcom,pm8150@0:qcom,pm8150_rtc: setting system clock to 1970-03-05 11:48:07 UTC (5485687)\n[    2.399446] [USBPD-PM]: usbpd_pm_probe: usbpd_pm_probe enter\n[    2.399449] [USBPD-PM]: pd_policy_parse_dt: pm_config.bat_volt_lp_lmt:4480\n[    2.399451] [USBPD-PM]: pd_policy_parse_dt: pm_config.bat_curr_lp_lmt:6000\n[    2.399453] [USBPD-PM]: pd_policy_parse_dt: pm_config.bus_volt_lp_lmt:12000\n[    2.399455] [USBPD-PM]: pd_policy_parse_dt: pm_config.bus_curr_lp_lmt:3000\n[    2.399457] [USBPD-PM]: pd_policy_parse_dt: pdpm->step_charge_high_vol_curr_max:0\n[    2.399458] [USBPD-PM]: pd_policy_parse_dt: pdpm->cell_vol_high_threshold_mv:0\n[    2.399460] [USBPD-PM]: pd_policy_parse_dt: pdpm->cell_vol_max_threshold_mv:0\n[    2.399462] [USBPD-PM]: pd_policy_parse_dt: pdpm->non_ffc_bat_volt_max:4450\n[    2.399464] [USBPD-PM]: pd_policy_parse_dt: therm-level-threshold:12\n[    2.399466] [USBPD-PM]: pd_policy_parse_dt: pd-battery-warm-th:480\n[    2.399477] [USBPD-PM]: usbpd_check_cp_sec_psy: cp_sec_psy not found\n[    2.399784] [FC2-PM]: cp_qc30_probe: cp_qc30_probe enter\n[    2.399789] [FC2-PM]: cp_qc30_probe: battery_warm_th = 480\n[    2.399791] [FC2-PM]: cp_qc30_probe: charge pump qc3 probe\n[    2.405294] rmnet_ipa3 started initialization\n[    2.405866] RNDIS_IPA module is loaded.\n[    2.408714] msm notifier probed successfully\n[    2.409624] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    2.410357] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    2.410738] cam_cc_sleep_clk_src: CXO configuration failed\n[    2.411526] msm_bus_late_init: Remove handoff bw requests\n[    2.412215] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    2.412591] ALSA device list:\n[    2.412593]   No soundcards found.\n[    2.412621] Warning: unable to open an initial console.\n[    2.413842] Freeing unused kernel memory: 6144K\n[    2.413860] Run /init as init process\n[    2.480064] FG: battery_authentic_work: FG: authentic prop is 1\n[    2.481392] [ds28e16] Read_RomID: RomID = 9f,d4,67,29,12,f0,04,68\n[    2.481396] [ds28e16] verify_get_property: get RomID = 9f,d4,67,29,12,f0,04,68\n[    2.481399] FG: ds_romid_work: FG: romid prop is 9f d4 67 29 12 f0 04 68\n[    3.051248] FG: ds_status_work: FG: ds_status prop is 02 00 08 03 02 00 40 3b\n[    3.155706] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    3.155848] cpu1 \n[    3.155901] cpu4 \n[    3.155953] cpu7 \n[    3.155997] \n               Offline CPUs: \n[    3.158460] cpu1 \n[    3.160850] CPU1: shutdown\n[    3.160935] psci: CPU1 killed.\n[    3.161411] cpu2 \n[    3.162784] CPU2: shutdown\n[    3.162889] psci: CPU2 killed.\n[    3.163177] cpu3 \n[    3.164711] CPU3: shutdown\n[    3.164780] psci: CPU3 killed.\n[    3.165064] cpu4 \n[    3.167392] CPU4: shutdown\n[    3.167417] psci: CPU4 killed.\n[    3.167719] cpu5 \n[    3.168480] CPU5: shutdown\n[    3.168508] psci: CPU5 killed.\n[    3.168807] cpu6 \n[    3.170003] CPU6: shutdown\n[    3.170086] psci: CPU6 killed.\n[    3.170392] cpu7 \n[    3.176931] CPU7: shutdown\n[    3.176967] psci: CPU7 killed.\n\n[    3.202771] [NVT-ts-spi] nvt_power_supply_work 2379: Power_supply_event:0\n[    3.202784] [NVT-ts-spi] nvt_power_supply_work 2385: USB is not exist\n[    3.520408] FG: ds_page0_work: FG: ds_page0 prop is 53 42 4d 35 33 30 41 4a 01 76 1c 41 4d 44 31 31\n[    4.161411] of_batterydata_get_best_profile: j3ssun_5000mah found\n[    4.161460] QCOM-STEPCHG: read_range_data_from_node: Count qcom,step-chg-ranges failed, rc=-22\n[    4.161484] QCOM-STEPCHG: read_range_data_from_node: Count qcom,cold-step-chg-ranges failed, rc=-22\n[    6.480563] aw8697_ram_work_routine enter\n[    6.481734] FG: fg_gen4_get_batt_profile: cmdline of batt profile is not defined, read page0 to reload file\n[    6.481757] of_batterydata_get_best_profile: j3ssun_5000mah found\n[    6.482242] FG: is_profile_load_required: Battery profile integrity bit is set\n[    6.482552] raw: 0xff\n[    6.482575] raw: 0xff\n[    6.482584] ===raw_msoc:255\n[    6.482963] FG: is_profile_load_required: Battery profile is same, not loading it\n[    6.483173] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[    6.483187] FG: calculate_average_current: current_now_ma=282226 averaged_iavg_ma=282226\n[    6.483214] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:0, batt_ma:282226, smooth_low_batt_soc:0, smooth_soc: 0\n[    6.483225] FG: soc_monitor_work: soc:100, raw_soc:100, c:282226, s:2\n[    6.483656] aw8697_haptic 2-005a: Falling back to syfs fallback for: aw8697_haptic.bin\n[    6.484015] FG: profile_load_work: First profile load bit is set\n[    6.484046] FG: is_sdam_cookie_set: cookie: a5\n[    6.486561] raw: 0xff\n[    6.486584] raw: 0xff\n[    6.486592] ===raw_msoc:255\n[    6.490616] FG: fg_gen4_bp_params_config: Rslow_low: 0\n[    6.491869] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[    6.492252] raw: 0xff\n[    6.492276] raw: 0xff\n[    6.492284] ===raw_msoc:255\n[    6.492458] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 260 FCC = 6000000uA FV = 4480000uV\n[    6.492470] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[    6.492499] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 260 max voltage= 4480000uv FV = 4480000uV\n[    6.493873] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4410 Vbatt avg=4401 Vbatt res=1001\n[    6.493898] raw: 0xff\n[    6.493919] raw: 0xff\n[    6.493926] ===raw_msoc:255\n[    6.493938] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 282226\n[    6.493951] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[    6.494376] FG: profile_load_work: profile loaded successfully\n[    6.494668] batt_verified =1\n[    6.496081] [ds28e16] Read_RomID: RomID = 9f,d4,67,29,12,f0,04,68\n[    6.496100] [ds28e16] verify_get_property: get RomID = 9f,d4,67,29,12,f0,04,68\n[    6.500445] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4410 Vbatt avg=4401 Vbatt res=1001\n[    6.500469] raw: 0xff\n[    6.500491] raw: 0xff\n[    6.500498] ===raw_msoc:255\n[    6.500509] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 282226\n[    6.549770] [ds28e16] Read_RomID: RomID = 9f,d4,67,29,12,f0,04,68\n[    6.549790] [ds28e16] verify_get_property: get chip_ok read RomID = 9f,d4,67,29,12,f0,04,68\n[    6.549853] raw: 0xff\n[    6.549875] raw: 0xff\n[    6.549882] ===raw_msoc:255\n[    6.549911] raw: 0xff\n[    6.549932] raw: 0xff\n[    6.549939] ===raw_msoc:255\n[    6.550077] raw: 0xff\n[    6.550099] raw: 0xff\n[    6.550105] ===raw_msoc:255\n[    6.550195] raw: 0xff\n[    6.550216] raw: 0xff\n[    6.550222] ===raw_msoc:255\n[    6.550272] raw: 0xff\n[    6.550293] raw: 0xff\n[    6.550300] ===raw_msoc:255\n[    6.550358] raw: 0xff\n[    6.550378] raw: 0xff\n[    6.550385] ===raw_msoc:255\n[    6.553455] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 3fedfa42\n[    6.553513] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[    6.554594] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4410 Vbatt avg=4401 Vbatt res=1001\n[    6.554618] raw: 0xff\n[    6.554640] raw: 0xff\n[    6.554647] ===raw_msoc:255\n[    6.554659] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 282226\n[    6.554670] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[    6.557159] raw: 0xff\n[    6.557183] raw: 0xff\n[    6.557190] ===raw_msoc:255\n[    6.562178] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 3fedfa42\n[    6.562236] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[    6.563124] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4410 Vbatt avg=4401 Vbatt res=1001\n[    6.563149] raw: 0xff\n[    6.563171] raw: 0xff\n[    6.563178] ===raw_msoc:255\n[    6.563189] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 282226\n[    6.563201] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[    6.563501] raw: 0xff\n[    6.563524] raw: 0xff\n[    6.563531] ===raw_msoc:255\n[    6.565010] raw: 0xff\n[    6.565033] raw: 0xff\n[    6.565041] ===raw_msoc:255\n[    8.188203] Sampling power every 1000 ms\n               Baseline power usage: \n[   16.480462] raw: 0xff\n[   16.480486] raw: 0xff\n[   16.480494] ===raw_msoc:255\n[   16.480875] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[   16.480888] FG: calculate_average_current: current_now_ma=281738 averaged_iavg_ma=281982\n[   16.480906] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:0, batt_ma:281738, smooth_low_batt_soc:0, smooth_soc: 0\n[   16.480918] FG: soc_monitor_work: soc:100, raw_soc:100, c:281738, s:2\n[   17.120439] raw: 0xff\n[   17.120463] raw: 0xff\n[   17.120471] ===raw_msoc:255\n[   26.720464] raw: 0xff\n[   26.720487] raw: 0xff\n[   26.720495] ===raw_msoc:255\n[   26.720893] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[   26.720906] FG: calculate_average_current: current_now_ma=278320 averaged_iavg_ma=280761\n[   26.720923] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:0, batt_ma:278320, smooth_low_batt_soc:0, smooth_soc: 0\n[   26.720935] FG: soc_monitor_work: soc:100, raw_soc:100, c:278320, s:2\n[   27.360474] raw: 0xff\n[   27.360498] raw: 0xff\n[   27.360506] ===raw_msoc:255\n[   32.480629] display_panel_vci: disabling\n[   32.480648] disp_vddio_vreg: disabling\n[   32.487144] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 03 78 04 02 03 07 a0 fd 30 00 a3 02 0b 0a 00 00 55 \n[   32.487464] smb:01:1200 00 ff ff fe 00 3d 3d 00 00 00 00 00 00 00 00 01 06 00 01 00 \n[   32.488287] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 00 00 40 00 00 a3 00 00 00 00 07 00 18 38 11 b0 03 00 00 7f 00 00 00 00 00 00 02 54 00 00 00 00 \n[   32.489401] smb:01:1500 00 00 00 01 c3 00 00 04 ff 00 00 ff ff 4a 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[   32.490254] pm8008-chip-en: disabling\n[   32.490742] smb:01:1600 03 03 00 00 0f 02 01 04 00 00 00 5b 5b 00 00 00 00 00 42 00 f3 00 00 00 00 00 00 00 00 00 00 00 00 0c 01 00 80 00 00 00 00 00 00 20 b8 4c cc 18 02 00 03 32 04 \n[   32.490772] pm8150b_charger: smblib_reg_work: AWAKE vote value is 0 voted by CHG_AWAKE_VOTER\n[   32.493721] vdd_hap_boost: disabling\n[   32.493735] camera_wide_vana_ldo: disabling\n[   32.493745] camera_wide_cn_vana_ldo: disabling\n[   36.960485] raw: 0xff\n[   36.960509] raw: 0xff\n[   36.960517] ===raw_msoc:255\n[   36.961026] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[   36.961039] FG: calculate_average_current: current_now_ma=279296 averaged_iavg_ma=280395\n[   36.961057] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:0, batt_ma:279296, smooth_low_batt_soc:0, smooth_soc: 0\n[   36.961068] FG: soc_monitor_work: soc:100, raw_soc:100, c:279296, s:2\n[   37.600433] raw: 0xff\n[   37.600456] raw: 0xff\n[   37.600464] ===raw_msoc:255\n[   47.200461] raw: 0xff\n[   47.200484] raw: 0xff\n[   47.200492] ===raw_msoc:255\n[   47.200872] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[   47.200885] FG: calculate_average_current: current_now_ma=278808 averaged_iavg_ma=280078\n[   47.200903] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:0, batt_ma:278808, smooth_low_batt_soc:0, smooth_soc: 0\n[   47.200915] FG: soc_monitor_work: soc:100, raw_soc:100, c:278808, s:2\n[   47.840433] raw: 0xff\n[   47.840456] raw: 0xff\n[   47.840464] ===raw_msoc:255\n[   57.440461] raw: 0xff\n[   57.440485] raw: 0xff\n[   57.440493] ===raw_msoc:255\n[   57.440889] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[   57.440902] FG: calculate_average_current: current_now_ma=279785 averaged_iavg_ma=280029\n[   57.440919] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:0, batt_ma:279785, smooth_low_batt_soc:0, smooth_soc: 0\n[   57.440931] FG: soc_monitor_work: soc:100, raw_soc:100, c:279785, s:2\n[   58.080456] raw: 0xff\n[   58.080480] raw: 0xff\n[   58.080487] ===raw_msoc:255\n[   67.680482] raw: 0xff\n[   67.680506] raw: 0xff\n[   67.680514] ===raw_msoc:255\n[   67.680902] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[   67.680915] FG: calculate_average_current: current_now_ma=282714 averaged_iavg_ma=280412\n[   67.680933] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:1, batt_ma:282714, smooth_low_batt_soc:0, smooth_soc: 0\n[   67.680944] FG: soc_monitor_work: soc:100, raw_soc:100, c:282714, s:2\n[   68.320434] raw: 0xff\n[   68.320458] raw: 0xff\n[   68.320466] ===raw_msoc:255\n[   69.600552] aw8697_ram_loaded enter\n[   69.600563] aw8697_ram_loaded: failed to read aw8697_haptic.bin\n[   77.920461] raw: 0xff\n[   77.920485] raw: 0xff\n[   77.920493] ===raw_msoc:255\n[   77.920874] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[   77.920887] FG: calculate_average_current: current_now_ma=280273 averaged_iavg_ma=280395\n[   77.920905] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:1, batt_ma:280273, smooth_low_batt_soc:0, smooth_soc: 0\n[   77.920916] FG: soc_monitor_work: soc:100, raw_soc:100, c:280273, s:2\n[   78.560454] raw: 0xff\n[   78.560478] raw: 0xff\n[   78.560486] ===raw_msoc:255\n[   83.322129] Detected VIPT I-cache on CPU1\n[   83.322230] arch_timer: CPU1: Trapping CNTVCT access\n[   83.322258] CPU1: Booted secondary processor 0x0000000100 [0x51df805e]\n[   84.332235] 1223 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 403 518 614 691 787 883 979 1075 1171 1248 1344 1420 1516 1612 1708 1804\n               \n                300: \n[   88.160513] raw: 0xff\n[   88.160536] raw: 0xff\n[   88.160544] ===raw_msoc:255\n[   88.160939] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[   88.160952] FG: calculate_average_current: current_now_ma=282714 averaged_iavg_ma=280456\n[   88.160969] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:1, batt_ma:282714, smooth_low_batt_soc:0, smooth_soc: 0\n[   88.160981] FG: soc_monitor_work: soc:100, raw_soc:100, c:282714, s:2\n[   88.800454] raw: 0xff\n[   88.800477] raw: 0xff\n[   88.800485] ===raw_msoc:255\n[   98.400461] raw: 0xff\n[   98.400485] raw: 0xff\n[   98.400493] ===raw_msoc:255\n[   98.400970] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[   98.400983] FG: calculate_average_current: current_now_ma=286132 averaged_iavg_ma=281005\n[   98.401000] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:1, batt_ma:286132, smooth_low_batt_soc:0, smooth_soc: 0\n[   98.401012] FG: soc_monitor_work: soc:100, raw_soc:100, c:286132, s:2\n[   99.040410] raw: 0xff\n[   99.040434] raw: 0xff\n[   99.040442] ===raw_msoc:255\n[  106.481952] FG: fg_esr_fast_cal_timer: ESR fast calibration timer expired\n[  106.482756] esr_charging_timer set to 0/96\n[  106.483449] esr_discharging_timer set to 0/96\n[  106.485476] FG: fg_gen4_esr_fast_calib_config: Disabling ESR fast calibration\n[  108.640434] raw: 0xff\n[  108.640458] raw: 0xff\n[  108.640466] ===raw_msoc:255\n[  108.640863] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  108.640876] FG: calculate_average_current: current_now_ma=284179 averaged_iavg_ma=281738\n[  108.640894] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:1, batt_ma:284179, smooth_low_batt_soc:0, smooth_soc: 0\n[  108.640905] FG: soc_monitor_work: soc:100, raw_soc:100, c:284179, s:2\n[  109.280459] raw: 0xff\n[  109.280483] raw: 0xff\n[  109.280490] ===raw_msoc:255\n[  118.880476] raw: 0xff\n[  118.880500] raw: 0xff\n[  118.880508] ===raw_msoc:255\n[  118.880903] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  118.880916] FG: calculate_average_current: current_now_ma=281738 averaged_iavg_ma=282043\n[  118.880933] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:1, batt_ma:281738, smooth_low_batt_soc:0, smooth_soc: 0\n[  118.880945] FG: soc_monitor_work: soc:100, raw_soc:100, c:281738, s:2\n[  119.520548] raw: 0xff\n[  119.520572] raw: 0xff\n[  119.520579] ===raw_msoc:255\n[  129.120454] raw: 0xff\n[  129.120477] raw: 0xff\n[  129.120485] ===raw_msoc:255\n[  129.120961] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  129.120974] FG: calculate_average_current: current_now_ma=285156 averaged_iavg_ma=282836\n[  129.120992] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:1, batt_ma:285156, smooth_low_batt_soc:0, smooth_soc: 0\n[  129.121004] FG: soc_monitor_work: soc:100, raw_soc:100, c:285156, s:2\n[  129.760429] raw: 0xff\n[  129.760453] raw: 0xff\n[  129.760461] ===raw_msoc:255\n[  139.360455] raw: 0xff\n[  139.360479] raw: 0xff\n[  139.360487] ===raw_msoc:255\n[  139.360892] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  139.360905] FG: calculate_average_current: current_now_ma=281738 averaged_iavg_ma=283081\n[  139.360923] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:1, batt_ma:281738, smooth_low_batt_soc:0, smooth_soc: 0\n[  139.360935] FG: soc_monitor_work: soc:100, raw_soc:100, c:281738, s:2\n[  140.000407] raw: 0xff\n[  140.000430] raw: 0xff\n[  140.000438] ===raw_msoc:255\n[  149.600433] raw: 0xff\n[  149.600457] raw: 0xff\n[  149.600465] ===raw_msoc:255\n[  149.600862] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  149.600875] FG: calculate_average_current: current_now_ma=283202 averaged_iavg_ma=283142\n[  149.600893] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:1, batt_ma:283202, smooth_low_batt_soc:0, smooth_soc: 0\n[  149.600905] FG: soc_monitor_work: soc:100, raw_soc:100, c:283202, s:2\n[  150.240426] raw: 0xff\n[  150.240450] raw: 0xff\n[  150.240458] ===raw_msoc:255\n[  159.840454] raw: 0xff\n[  159.840477] raw: 0xff\n[  159.840485] ===raw_msoc:255\n[  159.841002] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  159.841015] FG: calculate_average_current: current_now_ma=283202 averaged_iavg_ma=283142\n[  159.841033] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:1, batt_ma:283202, smooth_low_batt_soc:0, smooth_soc: 0\n[  159.841044] FG: soc_monitor_work: soc:100, raw_soc:100, c:283202, s:2\n[  160.480452] raw: 0xff\n[  160.480476] raw: 0xff\n[  160.480484] ===raw_msoc:255\n[  170.080436] raw: 0xff\n[  170.080460] raw: 0xff\n[  170.080468] ===raw_msoc:255\n[  170.080850] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  170.080863] FG: calculate_average_current: current_now_ma=284667 averaged_iavg_ma=283691\n[  170.080880] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:1, batt_ma:284667, smooth_low_batt_soc:0, smooth_soc: 0\n[  170.080892] FG: soc_monitor_work: soc:100, raw_soc:100, c:284667, s:2\n[  170.720430] raw: 0xff\n[  170.720453] raw: 0xff\n[  170.720461] ===raw_msoc:255\n[  180.320433] raw: 0xff\n[  180.320457] raw: 0xff\n[  180.320465] ===raw_msoc:255\n[  180.320861] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  180.320875] FG: calculate_average_current: current_now_ma=281738 averaged_iavg_ma=283569\n[  180.320892] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:1, batt_ma:281738, smooth_low_batt_soc:0, smooth_soc: 0\n[  180.320904] FG: soc_monitor_work: soc:100, raw_soc:100, c:281738, s:2\n[  180.960434] raw: 0xff\n[  180.960458] raw: 0xff\n[  180.960466] ===raw_msoc:255\n[  190.560458] raw: 0xff\n[  190.560482] raw: 0xff\n[  190.560490] ===raw_msoc:255\n[  190.561010] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  190.561023] FG: calculate_average_current: current_now_ma=284179 averaged_iavg_ma=283325\n[  190.561041] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:1, batt_ma:284179, smooth_low_batt_soc:0, smooth_soc: 0\n[  190.561053] FG: soc_monitor_work: soc:100, raw_soc:100, c:284179, s:2\n[  191.200407] raw: 0xff\n[  191.200431] raw: 0xff\n[  191.200439] ===raw_msoc:255\n[  200.800314] raw: 0xff\n[  200.800338] raw: 0xff\n[  200.800346] ===raw_msoc:255\n[  200.800818] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  200.800831] FG: calculate_average_current: current_now_ma=284667 averaged_iavg_ma=283386\n[  200.800849] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:1, batt_ma:284667, smooth_low_batt_soc:0, smooth_soc: 0\n[  200.800861] FG: soc_monitor_work: soc:100, raw_soc:100, c:284667, s:2\n[  201.440408] raw: 0xff\n[  201.440431] raw: 0xff\n[  201.440439] ===raw_msoc:255\n[  211.040438] raw: 0xff\n[  211.040462] raw: 0xff\n[  211.040470] ===raw_msoc:255\n[  211.040872] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  211.040885] FG: calculate_average_current: current_now_ma=287109 averaged_iavg_ma=284057\n[  211.040902] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:1, batt_ma:287109, smooth_low_batt_soc:0, smooth_soc: 0\n[  211.040914] FG: soc_monitor_work: soc:100, raw_soc:100, c:287109, s:2\n[  211.680548] raw: 0xff\n[  211.680572] raw: 0xff\n[  211.680580] ===raw_msoc:255\n[  221.280579] raw: 0xff\n[  221.280602] raw: 0xff\n[  221.280610] ===raw_msoc:255\n[  221.281004] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  221.281017] FG: calculate_average_current: current_now_ma=286132 averaged_iavg_ma=284179\n[  221.281035] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:1, batt_ma:286132, smooth_low_batt_soc:0, smooth_soc: 0\n[  221.281046] FG: soc_monitor_work: soc:100, raw_soc:100, c:286132, s:2\n[  221.920408] raw: 0xff\n[  221.920432] raw: 0xff\n[  221.920440] ===raw_msoc:255\n[  231.520434] raw: 0xff\n[  231.520458] raw: 0xff\n[  231.520466] ===raw_msoc:255\n[  231.520846] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  231.520858] FG: calculate_average_current: current_now_ma=285644 averaged_iavg_ma=284667\n[  231.520876] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:1, batt_ma:285644, smooth_low_batt_soc:0, smooth_soc: 0\n[  231.520888] FG: soc_monitor_work: soc:100, raw_soc:100, c:285644, s:2\n[  232.160429] raw: 0xff\n[  232.160453] raw: 0xff\n[  232.160461] ===raw_msoc:255\n[  241.760456] raw: 0xff\n[  241.760480] raw: 0xff\n[  241.760488] ===raw_msoc:255\n[  241.760910] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  241.760924] FG: calculate_average_current: current_now_ma=285156 averaged_iavg_ma=284912\n[  241.760941] FG: fg_battery_soc_smooth_tracking: soc:100, last_soc:100, raw_soc:100, soc_changed:1, batt_ma:285156, smooth_low_batt_soc:0, smooth_soc: 0\n[  241.760953] FG: soc_monitor_work: soc:100, raw_soc:100, c:285156, s:2\n[  242.400432] raw: 0xff\n[  242.400455] raw: 0xff\n[  242.400463] ===raw_msoc:255\n[  252.000472] raw: 0xfe\n[  252.000496] raw: 0xfe\n[  252.000504] ===raw_msoc:254\n[  252.001041] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  252.001054] FG: calculate_average_current: current_now_ma=282714 averaged_iavg_ma=284667\n[  252.001077] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:282714, smooth_low_batt_soc:0, smooth_soc: 0\n[  252.001089] FG: soc_monitor_work: soc:99, raw_soc:99, c:282714, s:2\n[  252.002734] raw: 0xfe\n[  252.002757] raw: 0xfe\n[  252.002765] ===raw_msoc:254\n[  252.004246] raw: 0xfe\n[  252.004270] raw: 0xfe\n[  252.004277] ===raw_msoc:254\n[  252.006138] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 252 FCC = 6000000uA FV = 4480000uV\n[  252.006151] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[  252.006176] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 252 max voltage= 4480000uv FV = 4480000uV\n[  252.007412] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 3fb15b56\n[  252.007469] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[  252.007896] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4406 Vbatt avg=4405 Vbatt res=1005\n[  252.007920] raw: 0xfe\n[  252.007941] raw: 0xfe\n[  252.007949] ===raw_msoc:254\n[  252.007960] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 282714\n[  252.007971] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[  252.640407] raw: 0xfe\n[  252.640430] raw: 0xfe\n[  252.640438] ===raw_msoc:254\n[  262.240435] raw: 0xfe\n[  262.240459] raw: 0xfe\n[  262.240467] ===raw_msoc:254\n[  262.240848] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  262.240861] FG: calculate_average_current: current_now_ma=284179 averaged_iavg_ma=284973\n[  262.240879] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:0, batt_ma:284179, smooth_low_batt_soc:0, smooth_soc: 0\n[  262.240890] FG: soc_monitor_work: soc:99, raw_soc:99, c:284179, s:2\n[  262.880407] raw: 0xfe\n[  262.880431] raw: 0xfe\n[  262.880439] ===raw_msoc:254\n[  272.480438] raw: 0xfe\n[  272.480462] raw: 0xfe\n[  272.480470] ===raw_msoc:254\n[  272.480869] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  272.480882] FG: calculate_average_current: current_now_ma=287109 averaged_iavg_ma=285339\n[  272.480899] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:0, batt_ma:287109, smooth_low_batt_soc:0, smooth_soc: 0\n[  272.480910] FG: soc_monitor_work: soc:99, raw_soc:99, c:287109, s:2\n[  273.120433] raw: 0xfe\n[  273.120457] raw: 0xfe\n[  273.120464] ===raw_msoc:254\n[  282.720456] raw: 0xfe\n[  282.720479] raw: 0xfe\n[  282.720487] ===raw_msoc:254\n[  282.721004] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  282.721017] FG: calculate_average_current: current_now_ma=284667 averaged_iavg_ma=285339\n[  282.721034] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:0, batt_ma:284667, smooth_low_batt_soc:0, smooth_soc: 0\n[  282.721046] FG: soc_monitor_work: soc:99, raw_soc:99, c:284667, s:2\n[  283.360430] raw: 0xfe\n[  283.360453] raw: 0xfe\n[  283.360461] ===raw_msoc:254\n[  292.960455] raw: 0xfe\n[  292.960478] raw: 0xfe\n[  292.960486] ===raw_msoc:254\n[  292.960890] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  292.960903] FG: calculate_average_current: current_now_ma=282226 averaged_iavg_ma=284728\n[  292.960921] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:0, batt_ma:282226, smooth_low_batt_soc:0, smooth_soc: 0\n[  292.960932] FG: soc_monitor_work: soc:99, raw_soc:99, c:282226, s:2\n[  293.600452] raw: 0xfe\n[  293.600476] raw: 0xfe\n[  293.600484] ===raw_msoc:254\n[  303.200434] raw: 0xfe\n[  303.200458] raw: 0xfe\n[  303.200465] ===raw_msoc:254\n[  303.200863] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  303.200876] FG: calculate_average_current: current_now_ma=284667 averaged_iavg_ma=284545\n[  303.200894] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:0, batt_ma:284667, smooth_low_batt_soc:0, smooth_soc: 0\n[  303.200905] FG: soc_monitor_work: soc:99, raw_soc:99, c:284667, s:2\n[  303.840548] raw: 0xfe\n[  303.840571] raw: 0xfe\n[  303.840579] ===raw_msoc:254\n[  305.120434] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120474] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120495] audio_notifer_reg_service: service SSR_ADSP is in use\n[  305.120967] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120982] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for audio_pdr_adsprpc\n[  305.121054] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121065] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for sensors_pdr_adsprpc\n[  305.121102] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  313.440455] raw: 0xfe\n[  313.440479] raw: 0xfe\n[  313.440486] ===raw_msoc:254\n[  313.440964] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  313.440977] FG: calculate_average_current: current_now_ma=286620 averaged_iavg_ma=284667\n[  313.440995] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:286620, smooth_low_batt_soc:0, smooth_soc: 0\n[  313.441006] FG: soc_monitor_work: soc:99, raw_soc:99, c:286620, s:2\n[  314.080410] raw: 0xfe\n[  314.080434] raw: 0xfe\n[  314.080442] ===raw_msoc:254\n[  317.192173]  1114     3.7 C/MHz     29 mW    6.4 J   39.0 I/mJ   224.5 s\n                403: \n[  323.680416] raw: 0xfe\n[  323.680437] raw: 0xfe\n[  323.680443] ===raw_msoc:254\n[  323.680772] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  323.680782] FG: calculate_average_current: current_now_ma=282226 averaged_iavg_ma=284301\n[  323.680795] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:282226, smooth_low_batt_soc:0, smooth_soc: 0\n[  323.680803] FG: soc_monitor_work: soc:99, raw_soc:99, c:282226, s:2\n[  324.320404] raw: 0xfe\n[  324.320424] raw: 0xfe\n[  324.320430] ===raw_msoc:254\n[  333.920376] raw: 0xfe\n[  333.920396] raw: 0xfe\n[  333.920402] ===raw_msoc:254\n[  333.920738] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  333.920748] FG: calculate_average_current: current_now_ma=285156 averaged_iavg_ma=284606\n[  333.920761] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:285156, smooth_low_batt_soc:0, smooth_soc: 0\n[  333.920769] FG: soc_monitor_work: soc:99, raw_soc:99, c:285156, s:2\n[  334.560351] raw: 0xfe\n[  334.560371] raw: 0xfe\n[  334.560377] ===raw_msoc:254\n[  344.160375] raw: 0xfe\n[  344.160395] raw: 0xfe\n[  344.160401] ===raw_msoc:254\n[  344.160853] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  344.160863] FG: calculate_average_current: current_now_ma=283691 averaged_iavg_ma=284545\n[  344.160876] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:283691, smooth_low_batt_soc:0, smooth_soc: 0\n[  344.160885] FG: soc_monitor_work: soc:99, raw_soc:99, c:283691, s:2\n[  344.800332] raw: 0xfe\n[  344.800353] raw: 0xfe\n[  344.800359] ===raw_msoc:254\n[  354.400380] raw: 0xfe\n[  354.400400] raw: 0xfe\n[  354.400406] ===raw_msoc:254\n[  354.400790] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  354.400800] FG: calculate_average_current: current_now_ma=287109 averaged_iavg_ma=284545\n[  354.400813] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:287109, smooth_low_batt_soc:0, smooth_soc: 0\n[  354.400822] FG: soc_monitor_work: soc:99, raw_soc:99, c:287109, s:2\n[  355.040337] raw: 0xfe\n[  355.040357] raw: 0xfe\n[  355.040363] ===raw_msoc:254\n[  364.640358] raw: 0xfe\n[  364.640378] raw: 0xfe\n[  364.640384] ===raw_msoc:254\n[  364.640727] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  364.640737] FG: calculate_average_current: current_now_ma=285156 averaged_iavg_ma=284606\n[  364.640750] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:285156, smooth_low_batt_soc:0, smooth_soc: 0\n[  364.640759] FG: soc_monitor_work: soc:99, raw_soc:99, c:285156, s:2\n[  365.280437] raw: 0xfe\n[  365.280457] raw: 0xfe\n[  365.280463] ===raw_msoc:254\n[  374.880464] raw: 0xfe\n[  374.880484] raw: 0xfe\n[  374.880490] ===raw_msoc:254\n[  374.880832] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  374.880841] FG: calculate_average_current: current_now_ma=287109 averaged_iavg_ma=285217\n[  374.880854] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:287109, smooth_low_batt_soc:0, smooth_soc: 0\n[  374.880863] FG: soc_monitor_work: soc:99, raw_soc:99, c:287109, s:2\n[  375.520346] raw: 0xfe\n[  375.520367] raw: 0xfe\n[  375.520372] ===raw_msoc:254\n[  385.120392] raw: 0xfe\n[  385.120412] raw: 0xfe\n[  385.120417] ===raw_msoc:254\n[  385.120747] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  385.120756] FG: calculate_average_current: current_now_ma=288574 averaged_iavg_ma=285705\n[  385.120770] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:288574, smooth_low_batt_soc:0, smooth_soc: 0\n[  385.120778] FG: soc_monitor_work: soc:99, raw_soc:99, c:288574, s:2\n[  385.760348] raw: 0xfe\n[  385.760369] raw: 0xfe\n[  385.760375] ===raw_msoc:254\n[  395.360374] raw: 0xfe\n[  395.360394] raw: 0xfe\n[  395.360400] ===raw_msoc:254\n[  395.360752] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  395.360761] FG: calculate_average_current: current_now_ma=282714 averaged_iavg_ma=285217\n[  395.360774] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:282714, smooth_low_batt_soc:0, smooth_soc: 0\n[  395.360783] FG: soc_monitor_work: soc:99, raw_soc:99, c:282714, s:2\n[  396.000350] raw: 0xfe\n[  396.000370] raw: 0xfe\n[  396.000376] ===raw_msoc:254\n[  405.600373] raw: 0xfe\n[  405.600393] raw: 0xfe\n[  405.600399] ===raw_msoc:254\n[  405.600833] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  405.600843] FG: calculate_average_current: current_now_ma=287597 averaged_iavg_ma=285888\n[  405.600856] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:287597, smooth_low_batt_soc:0, smooth_soc: 0\n[  405.600865] FG: soc_monitor_work: soc:99, raw_soc:99, c:287597, s:2\n[  406.240332] raw: 0xfe\n[  406.240352] raw: 0xfe\n[  406.240358] ===raw_msoc:254\n[  415.840360] raw: 0xfe\n[  415.840381] raw: 0xfe\n[  415.840386] ===raw_msoc:254\n[  415.840718] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  415.840727] FG: calculate_average_current: current_now_ma=285644 averaged_iavg_ma=285949\n[  415.840740] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:285644, smooth_low_batt_soc:0, smooth_soc: 0\n[  415.840749] FG: soc_monitor_work: soc:99, raw_soc:99, c:285644, s:2\n[  416.480333] raw: 0xfe\n[  416.480353] raw: 0xfe\n[  416.480358] ===raw_msoc:254\n[  426.080360] raw: 0xfe\n[  426.080380] raw: 0xfe\n[  426.080386] ===raw_msoc:254\n[  426.080734] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  426.080744] FG: calculate_average_current: current_now_ma=283202 averaged_iavg_ma=285888\n[  426.080756] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:283202, smooth_low_batt_soc:0, smooth_soc: 0\n[  426.080765] FG: soc_monitor_work: soc:99, raw_soc:99, c:283202, s:2\n[  426.720377] raw: 0xfe\n[  426.720398] raw: 0xfe\n[  426.720404] ===raw_msoc:254\n[  436.320373] raw: 0xfe\n[  436.320394] raw: 0xfe\n[  436.320399] ===raw_msoc:254\n[  436.320789] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  436.320799] FG: calculate_average_current: current_now_ma=284667 averaged_iavg_ma=285583\n[  436.320812] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:284667, smooth_low_batt_soc:0, smooth_soc: 0\n[  436.320821] FG: soc_monitor_work: soc:99, raw_soc:99, c:284667, s:2\n[  436.960348] raw: 0xfe\n[  436.960368] raw: 0xfe\n[  436.960374] ===raw_msoc:254\n[  446.560374] raw: 0xfe\n[  446.560394] raw: 0xfe\n[  446.560400] ===raw_msoc:254\n[  446.560750] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  446.560760] FG: calculate_average_current: current_now_ma=287109 averaged_iavg_ma=285827\n[  446.560773] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:287109, smooth_low_batt_soc:0, smooth_soc: 0\n[  446.560782] FG: soc_monitor_work: soc:99, raw_soc:99, c:287109, s:2\n[  447.200332] raw: 0xfe\n[  447.200352] raw: 0xfe\n[  447.200358] ===raw_msoc:254\n[  456.800358] raw: 0xfe\n[  456.800378] raw: 0xfe\n[  456.800383] ===raw_msoc:254\n[  456.800727] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  456.800737] FG: calculate_average_current: current_now_ma=284667 averaged_iavg_ma=285522\n[  456.800749] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:284667, smooth_low_batt_soc:0, smooth_soc: 0\n[  456.800758] FG: soc_monitor_work: soc:99, raw_soc:99, c:284667, s:2\n[  457.440438] raw: 0xfe\n[  457.440458] raw: 0xfe\n[  457.440464] ===raw_msoc:254\n[  467.040377] raw: 0xfe\n[  467.040397] raw: 0xfe\n[  467.040403] ===raw_msoc:254\n[  467.040861] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  467.040871] FG: calculate_average_current: current_now_ma=286132 averaged_iavg_ma=285217\n[  467.040884] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:286132, smooth_low_batt_soc:0, smooth_soc: 0\n[  467.040893] FG: soc_monitor_work: soc:99, raw_soc:99, c:286132, s:2\n[  467.680349] raw: 0xfe\n[  467.680369] raw: 0xfe\n[  467.680375] ===raw_msoc:254\n[  477.280359] raw: 0xfe\n[  477.280379] raw: 0xfe\n[  477.280385] ===raw_msoc:254\n[  477.280716] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  477.280726] FG: calculate_average_current: current_now_ma=286132 averaged_iavg_ma=285217\n[  477.280738] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:286132, smooth_low_batt_soc:0, smooth_soc: 0\n[  477.280747] FG: soc_monitor_work: soc:99, raw_soc:99, c:286132, s:2\n[  477.920333] raw: 0xfe\n[  477.920354] raw: 0xfe\n[  477.920360] ===raw_msoc:254\n[  487.520359] raw: 0xfe\n[  487.520379] raw: 0xfe\n[  487.520385] ===raw_msoc:254\n[  487.520729] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  487.520738] FG: calculate_average_current: current_now_ma=283202 averaged_iavg_ma=285278\n[  487.520752] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:283202, smooth_low_batt_soc:0, smooth_soc: 0\n[  487.520760] FG: soc_monitor_work: soc:99, raw_soc:99, c:283202, s:2\n[  488.160351] raw: 0xfe\n[  488.160371] raw: 0xfe\n[  488.160377] ===raw_msoc:254\n[  492.745913]  1497     3.7 C/MHz     33 mW    5.5 J   45.2 I/mJ   167.0 s\n                518: \n[  497.760377] raw: 0xfd\n[  497.760396] raw: 0xfd\n[  497.760400] ===raw_msoc:253\n[  497.760782] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  497.760789] FG: calculate_average_current: current_now_ma=281249 averaged_iavg_ma=284484\n[  497.760800] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:281249, smooth_low_batt_soc:0, smooth_soc: 0\n[  497.760806] FG: soc_monitor_work: soc:99, raw_soc:99, c:281249, s:2\n[  498.400337] raw: 0xfd\n[  498.400355] raw: 0xfd\n[  498.400360] ===raw_msoc:253\n[  508.000309] raw: 0xfd\n[  508.000327] raw: 0xfd\n[  508.000331] ===raw_msoc:253\n[  508.000627] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  508.000635] FG: calculate_average_current: current_now_ma=288085 averaged_iavg_ma=284789\n[  508.000645] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:288085, smooth_low_batt_soc:0, smooth_soc: 0\n[  508.000652] FG: soc_monitor_work: soc:99, raw_soc:99, c:288085, s:2\n[  508.640303] raw: 0xfd\n[  508.640321] raw: 0xfd\n[  508.640325] ===raw_msoc:253\n[  518.240335] raw: 0xfd\n[  518.240353] raw: 0xfd\n[  518.240357] ===raw_msoc:253\n[  518.240662] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  518.240670] FG: calculate_average_current: current_now_ma=287597 averaged_iavg_ma=285339\n[  518.240680] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:287597, smooth_low_batt_soc:0, smooth_soc: 0\n[  518.240686] FG: soc_monitor_work: soc:99, raw_soc:99, c:287597, s:2\n[  518.880365] raw: 0xfd\n[  518.880383] raw: 0xfd\n[  518.880388] ===raw_msoc:253\n[  528.480391] raw: 0xfd\n[  528.480409] raw: 0xfd\n[  528.480414] ===raw_msoc:253\n[  528.480719] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  528.480727] FG: calculate_average_current: current_now_ma=285156 averaged_iavg_ma=285400\n[  528.480737] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:285156, smooth_low_batt_soc:0, smooth_soc: 0\n[  528.480743] FG: soc_monitor_work: soc:99, raw_soc:99, c:285156, s:2\n[  529.120284] raw: 0xfd\n[  529.120302] raw: 0xfd\n[  529.120307] ===raw_msoc:253\n[  538.720310] raw: 0xfd\n[  538.720328] raw: 0xfd\n[  538.720333] ===raw_msoc:253\n[  538.720627] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  538.720635] FG: calculate_average_current: current_now_ma=285156 averaged_iavg_ma=285400\n[  538.720645] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:285156, smooth_low_batt_soc:0, smooth_soc: 0\n[  538.720652] FG: soc_monitor_work: soc:99, raw_soc:99, c:285156, s:2\n[  539.360296] raw: 0xfd\n[  539.360314] raw: 0xfd\n[  539.360319] ===raw_msoc:253\n[  548.960321] raw: 0xfd\n[  548.960339] raw: 0xfd\n[  548.960343] ===raw_msoc:253\n[  548.960668] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  548.960676] FG: calculate_average_current: current_now_ma=288085 averaged_iavg_ma=285522\n[  548.960686] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:288085, smooth_low_batt_soc:0, smooth_soc: 0\n[  548.960693] FG: soc_monitor_work: soc:99, raw_soc:99, c:288085, s:2\n[  549.600367] raw: 0xfd\n[  549.600385] raw: 0xfd\n[  549.600390] ===raw_msoc:253\n[  559.200320] raw: 0xfd\n[  559.200338] raw: 0xfd\n[  559.200343] ===raw_msoc:253\n[  559.200720] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  559.200728] FG: calculate_average_current: current_now_ma=287597 averaged_iavg_ma=285888\n[  559.200738] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:287597, smooth_low_batt_soc:0, smooth_soc: 0\n[  559.200744] FG: soc_monitor_work: soc:99, raw_soc:99, c:287597, s:2\n[  559.840310] raw: 0xfd\n[  559.840328] raw: 0xfd\n[  559.840332] ===raw_msoc:253\n[  569.440309] raw: 0xfd\n[  569.440327] raw: 0xfd\n[  569.440332] ===raw_msoc:253\n[  569.440628] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  569.440635] FG: calculate_average_current: current_now_ma=287109 averaged_iavg_ma=286010\n[  569.440645] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:287109, smooth_low_batt_soc:0, smooth_soc: 0\n[  569.440652] FG: soc_monitor_work: soc:99, raw_soc:99, c:287109, s:2\n[  570.080286] raw: 0xfd\n[  570.080304] raw: 0xfd\n[  570.080308] ===raw_msoc:253\n[  579.680309] raw: 0xfd\n[  579.680327] raw: 0xfd\n[  579.680331] ===raw_msoc:253\n[  579.680637] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  579.680645] FG: calculate_average_current: current_now_ma=289550 averaged_iavg_ma=286804\n[  579.680655] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:289550, smooth_low_batt_soc:0, smooth_soc: 0\n[  579.680662] FG: soc_monitor_work: soc:99, raw_soc:99, c:289550, s:2\n[  580.320296] raw: 0xfd\n[  580.320314] raw: 0xfd\n[  580.320319] ===raw_msoc:253\n[  589.920329] raw: 0xfd\n[  589.920347] raw: 0xfd\n[  589.920351] ===raw_msoc:253\n[  589.920685] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  589.920693] FG: calculate_average_current: current_now_ma=287597 averaged_iavg_ma=287597\n[  589.920703] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:287597, smooth_low_batt_soc:0, smooth_soc: 0\n[  589.920710] FG: soc_monitor_work: soc:99, raw_soc:99, c:287597, s:2\n[  590.560296] raw: 0xfd\n[  590.560314] raw: 0xfd\n[  590.560318] ===raw_msoc:253\n[  594.263593] raw: 0xfd\n[  594.275237] esr_charging_timer set to 0/7\n[  594.275754] esr_discharging_timer set to 0/7\n[  594.277282] FG: fg_gen4_esr_fast_calib_config: Enabling ESR fast calibration\n[  594.277601] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4397 Vbatt avg=4397 Vbatt res=997\n[  594.277619] raw: 0xfd\n[  594.277636] raw: 0xfd\n[  594.277640] ===raw_msoc:253\n[  594.277647] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 288085\n[  594.278914] raw: 0xfd\n[  594.278932] raw: 0xfd\n[  594.278936] ===raw_msoc:253\n[  594.280117] raw: 0xfd\n[  594.280135] raw: 0xfd\n[  594.280140] ===raw_msoc:253\n[  594.281700] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 247 FCC = 6000000uA FV = 4480000uV\n[  594.281707] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[  594.281722] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 247 max voltage= 4480000uv FV = 4480000uV\n[  594.282623] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 3f5a8586\n[  594.282664] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[  594.283004] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4397 Vbatt avg=4397 Vbatt res=997\n[  594.283023] raw: 0xfd\n[  594.283039] raw: 0xfd\n[  594.283044] ===raw_msoc:253\n[  594.283050] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 288085\n[  594.283057] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[  600.160323] raw: 0xfd\n[  600.160341] raw: 0xfd\n[  600.160346] ===raw_msoc:253\n[  600.160689] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  600.160697] FG: calculate_average_current: current_now_ma=287109 averaged_iavg_ma=287475\n[  600.160707] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:287109, smooth_low_batt_soc:0, smooth_soc: 0\n[  600.160714] FG: soc_monitor_work: soc:99, raw_soc:99, c:287109, s:2\n[  600.800284] raw: 0xfd\n[  600.800302] raw: 0xfd\n[  600.800307] ===raw_msoc:253\n[  610.400312] raw: 0xfd\n[  610.400330] raw: 0xfd\n[  610.400334] ===raw_msoc:253\n[  610.400647] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  610.400654] FG: calculate_average_current: current_now_ma=287109 averaged_iavg_ma=287475\n[  610.400665] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:287109, smooth_low_batt_soc:0, smooth_soc: 0\n[  610.400671] FG: soc_monitor_work: soc:99, raw_soc:99, c:287109, s:2\n[  611.040370] raw: 0xfd\n[  611.040388] raw: 0xfd\n[  611.040393] ===raw_msoc:253\n[  611.390655] FG: esr_calib_work: esr_raw: 0x115 esr_char_raw: 0xcb esr_meas_diff: 0x4a esr_delta: 0x40e\n[  611.390663] FG: esr_calib_work: fg_esr_meas_diff: 0x2a esr_filt: 0x2a esr_delta_new: 0x94e\n[  611.391213] FG: esr_calib_work: Wrote ESR delta [0x4e 0x9]\n[  620.640321] raw: 0xfd\n[  620.640339] raw: 0xfd\n[  620.640344] ===raw_msoc:253\n[  620.640678] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  620.640686] FG: calculate_average_current: current_now_ma=382812 averaged_iavg_ma=299377\n[  620.640696] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:382812, smooth_low_batt_soc:0, smooth_soc: 0\n[  620.640702] FG: soc_monitor_work: soc:99, raw_soc:99, c:382812, s:2\n[  621.280284] raw: 0xfd\n[  621.280302] raw: 0xfd\n[  621.280307] ===raw_msoc:253\n[  630.880364] raw: 0xfd\n[  630.880382] raw: 0xfd\n[  630.880386] ===raw_msoc:253\n[  630.880682] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  630.880690] FG: calculate_average_current: current_now_ma=287109 averaged_iavg_ma=299621\n[  630.880700] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:287109, smooth_low_batt_soc:0, smooth_soc: 0\n[  630.880707] FG: soc_monitor_work: soc:99, raw_soc:99, c:287109, s:2\n[  631.163348]  1925     3.7 C/MHz     48 mW    6.3 J   39.7 I/mJ   129.9 s\n                614: \n[  631.520314] raw: 0xfd\n[  631.520331] raw: 0xfd\n[  631.520335] ===raw_msoc:253\n[  641.120283] raw: 0xfd\n[  641.120300] raw: 0xfd\n[  641.120304] ===raw_msoc:253\n[  641.120593] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  641.120599] FG: calculate_average_current: current_now_ma=285644 averaged_iavg_ma=299316\n[  641.120608] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:285644, smooth_low_batt_soc:0, smooth_soc: 0\n[  641.120613] FG: soc_monitor_work: soc:99, raw_soc:99, c:285644, s:2\n[  641.760272] raw: 0xfd\n[  641.760289] raw: 0xfd\n[  641.760293] ===raw_msoc:253\n[  651.360315] raw: 0xfd\n[  651.360332] raw: 0xfd\n[  651.360336] ===raw_msoc:253\n[  651.360706] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  651.360713] FG: calculate_average_current: current_now_ma=286620 averaged_iavg_ma=299194\n[  651.360722] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:286620, smooth_low_batt_soc:0, smooth_soc: 0\n[  651.360727] FG: soc_monitor_work: soc:99, raw_soc:99, c:286620, s:2\n[  652.000259] raw: 0xfd\n[  652.000276] raw: 0xfd\n[  652.000280] ===raw_msoc:253\n[  661.600283] raw: 0xfd\n[  661.600300] raw: 0xfd\n[  661.600304] ===raw_msoc:253\n[  661.600583] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  661.600589] FG: calculate_average_current: current_now_ma=289550 averaged_iavg_ma=299499\n[  661.600598] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:289550, smooth_low_batt_soc:0, smooth_soc: 0\n[  661.600603] FG: soc_monitor_work: soc:99, raw_soc:99, c:289550, s:2\n[  662.240258] raw: 0xfd\n[  662.240275] raw: 0xfd\n[  662.240279] ===raw_msoc:253\n[  671.840283] raw: 0xfd\n[  671.840300] raw: 0xfd\n[  671.840304] ===raw_msoc:253\n[  671.840592] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  671.840599] FG: calculate_average_current: current_now_ma=286132 averaged_iavg_ma=299072\n[  671.840607] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:286132, smooth_low_batt_soc:0, smooth_soc: 0\n[  671.840613] FG: soc_monitor_work: soc:99, raw_soc:99, c:286132, s:2\n[  672.480268] raw: 0xfd\n[  672.480285] raw: 0xfd\n[  672.480289] ===raw_msoc:253\n[  682.080354] raw: 0xfd\n[  682.080371] raw: 0xfd\n[  682.080375] ===raw_msoc:253\n[  682.080663] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  682.080670] FG: calculate_average_current: current_now_ma=289062 averaged_iavg_ma=299255\n[  682.080678] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:289062, smooth_low_batt_soc:0, smooth_soc: 0\n[  682.080684] FG: soc_monitor_work: soc:99, raw_soc:99, c:289062, s:2\n[  682.720258] raw: 0xfd\n[  682.720275] raw: 0xfd\n[  682.720279] ===raw_msoc:253\n[  692.320283] raw: 0xfd\n[  692.320300] raw: 0xfd\n[  692.320304] ===raw_msoc:253\n[  692.320583] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  692.320589] FG: calculate_average_current: current_now_ma=381347 averaged_iavg_ma=311035\n[  692.320598] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:381347, smooth_low_batt_soc:0, smooth_soc: 0\n[  692.320604] FG: soc_monitor_work: soc:99, raw_soc:99, c:381347, s:2\n[  692.960302] raw: 0xfd\n[  692.960319] raw: 0xfd\n[  692.960323] ===raw_msoc:253\n[  699.277398] FG: fg_esr_fast_cal_timer: ESR fast calibration timer expired\n[  699.277981] esr_charging_timer set to 0/96\n[  699.278502] esr_discharging_timer set to 0/96\n[  699.280109] FG: fg_gen4_esr_fast_calib_config: Disabling ESR fast calibration\n[  702.560293] raw: 0xfd\n[  702.560310] raw: 0xfd\n[  702.560314] ===raw_msoc:253\n[  702.560616] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  702.560623] FG: calculate_average_current: current_now_ma=289550 averaged_iavg_ma=299377\n[  702.560631] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:289550, smooth_low_batt_soc:0, smooth_soc: 0\n[  702.560637] FG: soc_monitor_work: soc:99, raw_soc:99, c:289550, s:2\n[  703.200329] raw: 0xfd\n[  703.200345] raw: 0xfd\n[  703.200349] ===raw_msoc:253\n[  712.800293] raw: 0xfd\n[  712.800310] raw: 0xfd\n[  712.800314] ===raw_msoc:253\n[  712.800661] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  712.800667] FG: calculate_average_current: current_now_ma=288085 averaged_iavg_ma=299499\n[  712.800676] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:288085, smooth_low_batt_soc:0, smooth_soc: 0\n[  712.800681] FG: soc_monitor_work: soc:99, raw_soc:99, c:288085, s:2\n[  713.440270] raw: 0xfd\n[  713.440287] raw: 0xfd\n[  713.440291] ===raw_msoc:253\n[  723.040284] raw: 0xfc\n[  723.040301] raw: 0xfc\n[  723.040305] ===raw_msoc:252\n[  723.040585] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  723.040591] FG: calculate_average_current: current_now_ma=287109 averaged_iavg_ma=299682\n[  723.040600] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:287109, smooth_low_batt_soc:0, smooth_soc: 0\n[  723.040605] FG: soc_monitor_work: soc:99, raw_soc:99, c:287109, s:2\n[  723.680260] raw: 0xfc\n[  723.680277] raw: 0xfc\n[  723.680281] ===raw_msoc:252\n[  733.280293] raw: 0xfc\n[  733.280309] raw: 0xfc\n[  733.280313] ===raw_msoc:252\n[  733.280617] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  733.280624] FG: calculate_average_current: current_now_ma=286620 averaged_iavg_ma=299682\n[  733.280632] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:286620, smooth_low_batt_soc:0, smooth_soc: 0\n[  733.280638] FG: soc_monitor_work: soc:99, raw_soc:99, c:286620, s:2\n[  733.920270] raw: 0xfc\n[  733.920287] raw: 0xfc\n[  733.920290] ===raw_msoc:252\n[  743.520353] raw: 0xfc\n[  743.520369] raw: 0xfc\n[  743.520373] ===raw_msoc:252\n[  743.520661] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  743.520667] FG: calculate_average_current: current_now_ma=288085 averaged_iavg_ma=299499\n[  743.520675] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:288085, smooth_low_batt_soc:0, smooth_soc: 0\n[  743.520681] FG: soc_monitor_work: soc:99, raw_soc:99, c:288085, s:2\n[  744.160285] raw: 0xfc\n[  744.160302] raw: 0xfc\n[  744.160306] ===raw_msoc:252\n[  749.508777]  2281     3.7 C/MHz     73 mW    8.0 J   31.1 I/mJ   109.6 s\n                691: \n[  753.760337] raw: 0xfc\n[  753.760354] raw: 0xfc\n[  753.760357] ===raw_msoc:252\n[  753.760641] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  753.760647] FG: calculate_average_current: current_now_ma=280761 averaged_iavg_ma=298827\n[  753.760654] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:280761, smooth_low_batt_soc:0, smooth_soc: 0\n[  753.760659] FG: soc_monitor_work: soc:99, raw_soc:99, c:280761, s:2\n[  754.400302] raw: 0xfc\n[  754.400319] raw: 0xfc\n[  754.400322] ===raw_msoc:252\n[  764.000267] raw: 0xfc\n[  764.000283] raw: 0xfc\n[  764.000287] ===raw_msoc:252\n[  764.000563] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  764.000568] FG: calculate_average_current: current_now_ma=287109 averaged_iavg_ma=298583\n[  764.000576] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:287109, smooth_low_batt_soc:0, smooth_soc: 0\n[  764.000581] FG: soc_monitor_work: soc:99, raw_soc:99, c:287109, s:2\n[  764.640207] raw: 0xfc\n[  764.640223] raw: 0xfc\n[  764.640227] ===raw_msoc:252\n[  774.240276] raw: 0xfc\n[  774.240292] raw: 0xfc\n[  774.240295] ===raw_msoc:252\n[  774.240582] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  774.240588] FG: calculate_average_current: current_now_ma=288085 averaged_iavg_ma=286926\n[  774.240596] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:288085, smooth_low_batt_soc:0, smooth_soc: 0\n[  774.240601] FG: soc_monitor_work: soc:99, raw_soc:99, c:288085, s:2\n[  774.880252] raw: 0xfc\n[  774.880268] raw: 0xfc\n[  774.880271] ===raw_msoc:252\n[  784.480286] raw: 0xfc\n[  784.480302] raw: 0xfc\n[  784.480306] ===raw_msoc:252\n[  784.480574] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  784.480579] FG: calculate_average_current: current_now_ma=288085 averaged_iavg_ma=286926\n[  784.480587] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:288085, smooth_low_batt_soc:0, smooth_soc: 0\n[  784.480592] FG: soc_monitor_work: soc:99, raw_soc:99, c:288085, s:2\n[  785.120242] raw: 0xfc\n[  785.120259] raw: 0xfc\n[  785.120262] ===raw_msoc:252\n[  794.720266] raw: 0xfc\n[  794.720283] raw: 0xfc\n[  794.720286] ===raw_msoc:252\n[  794.720562] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  794.720567] FG: calculate_average_current: current_now_ma=291503 averaged_iavg_ma=287170\n[  794.720575] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:291503, smooth_low_batt_soc:0, smooth_soc: 0\n[  794.720580] FG: soc_monitor_work: soc:99, raw_soc:99, c:291503, s:2\n[  795.360325] raw: 0xfc\n[  795.360342] raw: 0xfc\n[  795.360345] ===raw_msoc:252\n[  804.960279] raw: 0xfc\n[  804.960295] raw: 0xfc\n[  804.960299] ===raw_msoc:252\n[  804.960649] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  804.960655] FG: calculate_average_current: current_now_ma=287109 averaged_iavg_ma=287048\n[  804.960662] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:287109, smooth_low_batt_soc:0, smooth_soc: 0\n[  804.960667] FG: soc_monitor_work: soc:99, raw_soc:99, c:287109, s:2\n[  805.600244] raw: 0xfc\n[  805.600260] raw: 0xfc\n[  805.600264] ===raw_msoc:252\n[  815.200267] raw: 0xfc\n[  815.200283] raw: 0xfc\n[  815.200286] ===raw_msoc:252\n[  815.200554] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  815.200560] FG: calculate_average_current: current_now_ma=288085 averaged_iavg_ma=287170\n[  815.200567] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:288085, smooth_low_batt_soc:0, smooth_soc: 0\n[  815.200572] FG: soc_monitor_work: soc:99, raw_soc:99, c:288085, s:2\n[  815.840242] raw: 0xfc\n[  815.840258] raw: 0xfc\n[  815.840262] ===raw_msoc:252\n[  825.440266] raw: 0xfc\n[  825.440283] raw: 0xfc\n[  825.440286] ===raw_msoc:252\n[  825.440563] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  825.440569] FG: calculate_average_current: current_now_ma=289062 averaged_iavg_ma=287475\n[  825.440576] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:289062, smooth_low_batt_soc:0, smooth_soc: 0\n[  825.440581] FG: soc_monitor_work: soc:99, raw_soc:99, c:289062, s:2\n[  826.080272] raw: 0xfc\n[  826.080288] raw: 0xfc\n[  826.080291] ===raw_msoc:252\n[  835.680275] raw: 0xfc\n[  835.680291] raw: 0xfc\n[  835.680295] ===raw_msoc:252\n[  835.680624] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  835.680630] FG: calculate_average_current: current_now_ma=290038 averaged_iavg_ma=287719\n[  835.680638] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:290038, smooth_low_batt_soc:0, smooth_soc: 0\n[  835.680643] FG: soc_monitor_work: soc:99, raw_soc:99, c:290038, s:2\n[  836.320244] raw: 0xfc\n[  836.320260] raw: 0xfc\n[  836.320264] ===raw_msoc:252\n[  845.920272] raw: 0xfc\n[  845.920289] raw: 0xfc\n[  845.920292] ===raw_msoc:252\n[  845.920560] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  845.920566] FG: calculate_average_current: current_now_ma=287597 averaged_iavg_ma=288574\n[  845.920573] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:287597, smooth_low_batt_soc:0, smooth_soc: 0\n[  845.920578] FG: soc_monitor_work: soc:99, raw_soc:99, c:287597, s:2\n[  846.560266] raw: 0xfc\n[  846.560282] raw: 0xfc\n[  846.560285] ===raw_msoc:252\n[  855.825151]  2566     3.7 C/MHz     46 mW    4.5 J   55.2 I/mJ    97.4 s\n                787: \n[  856.160322] raw: 0xfc\n[  856.160338] raw: 0xfc\n[  856.160341] ===raw_msoc:252\n[  856.160618] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  856.160624] FG: calculate_average_current: current_now_ma=283691 averaged_iavg_ma=288146\n[  856.160630] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:283691, smooth_low_batt_soc:0, smooth_soc: 0\n[  856.160635] FG: soc_monitor_work: soc:99, raw_soc:99, c:283691, s:2\n[  856.800342] raw: 0xfc\n[  856.800358] raw: 0xfc\n[  856.800361] ===raw_msoc:252\n[  866.400259] raw: 0xfc\n[  866.400275] raw: 0xfc\n[  866.400278] ===raw_msoc:252\n[  866.400560] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  866.400565] FG: calculate_average_current: current_now_ma=289062 averaged_iavg_ma=288268\n[  866.400571] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:289062, smooth_low_batt_soc:0, smooth_soc: 0\n[  866.400576] FG: soc_monitor_work: soc:99, raw_soc:99, c:289062, s:2\n[  867.040228] raw: 0xfc\n[  867.040244] raw: 0xfc\n[  867.040247] ===raw_msoc:252\n[  876.640251] raw: 0xfc\n[  876.640267] raw: 0xfc\n[  876.640270] ===raw_msoc:252\n[  876.640527] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  876.640532] FG: calculate_average_current: current_now_ma=289062 averaged_iavg_ma=288268\n[  876.640539] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:289062, smooth_low_batt_soc:0, smooth_soc: 0\n[  876.640543] FG: soc_monitor_work: soc:99, raw_soc:99, c:289062, s:2\n[  877.280227] raw: 0xfc\n[  877.280242] raw: 0xfc\n[  877.280245] ===raw_msoc:252\n[  885.295280] raw: 0xfc\n[  885.306761] esr_charging_timer set to 0/7\n[  885.307224] esr_discharging_timer set to 0/7\n[  885.308600] FG: fg_gen4_esr_fast_calib_config: Enabling ESR fast calibration\n[  885.308886] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4390 Vbatt avg=4390 Vbatt res=990\n[  885.308901] raw: 0xfc\n[  885.308916] raw: 0xfc\n[  885.308919] ===raw_msoc:252\n[  885.308923] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 291015\n[  885.310044] raw: 0xfc\n[  885.310060] raw: 0xfc\n[  885.310063] ===raw_msoc:252\n[  885.312016] raw: 0xfc\n[  885.312032] raw: 0xfc\n[  885.312035] ===raw_msoc:252\n[  885.312460] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 247 FCC = 6000000uA FV = 4480000uV\n[  885.312465] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[  885.312475] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 247 max voltage= 4480000uv FV = 4480000uV\n[  885.313269] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 3f0be0dd\n[  885.313304] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[  885.313604] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4390 Vbatt avg=4390 Vbatt res=990\n[  885.313620] raw: 0xfc\n[  885.313635] raw: 0xfc\n[  885.313637] ===raw_msoc:252\n[  885.313642] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 291015\n[  885.313646] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[  886.880250] raw: 0xfc\n[  886.880266] raw: 0xfc\n[  886.880269] ===raw_msoc:252\n[  886.880526] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  886.880531] FG: calculate_average_current: current_now_ma=288574 averaged_iavg_ma=287902\n[  886.880538] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:288574, smooth_low_batt_soc:0, smooth_soc: 0\n[  886.880542] FG: soc_monitor_work: soc:99, raw_soc:99, c:288574, s:2\n[  887.520281] raw: 0xfc\n[  887.520297] raw: 0xfc\n[  887.520300] ===raw_msoc:252\n[  897.120259] raw: 0xfc\n[  897.120275] raw: 0xfc\n[  897.120278] ===raw_msoc:252\n[  897.120589] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  897.120594] FG: calculate_average_current: current_now_ma=293945 averaged_iavg_ma=288757\n[  897.120601] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:293945, smooth_low_batt_soc:0, smooth_soc: 0\n[  897.120605] FG: soc_monitor_work: soc:99, raw_soc:99, c:293945, s:2\n[  897.760248] raw: 0xfc\n[  897.760263] raw: 0xfc\n[  897.760266] ===raw_msoc:252\n[  907.360259] raw: 0xfc\n[  907.360274] raw: 0xfc\n[  907.360277] ===raw_msoc:252\n[  907.360535] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  907.360540] FG: calculate_average_current: current_now_ma=291503 averaged_iavg_ma=289184\n[  907.360547] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:291503, smooth_low_batt_soc:0, smooth_soc: 0\n[  907.360551] FG: soc_monitor_work: soc:99, raw_soc:99, c:291503, s:2\n[  908.000248] raw: 0xfc\n[  908.000263] raw: 0xfc\n[  908.000266] ===raw_msoc:252\n[  917.600268] raw: 0xfc\n[  917.600284] raw: 0xfc\n[  917.600287] ===raw_msoc:252\n[  917.600553] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  917.600558] FG: calculate_average_current: current_now_ma=289062 averaged_iavg_ma=289184\n[  917.600565] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:289062, smooth_low_batt_soc:0, smooth_soc: 0\n[  917.600569] FG: soc_monitor_work: soc:99, raw_soc:99, c:289062, s:2\n[  918.240236] raw: 0xfc\n[  918.240251] raw: 0xfc\n[  918.240254] ===raw_msoc:252\n[  927.840258] raw: 0xfc\n[  927.840274] raw: 0xfc\n[  927.840277] ===raw_msoc:252\n[  927.840588] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  927.840593] FG: calculate_average_current: current_now_ma=286620 averaged_iavg_ma=288757\n[  927.840600] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:286620, smooth_low_batt_soc:0, smooth_soc: 0\n[  927.840604] FG: soc_monitor_work: soc:99, raw_soc:99, c:286620, s:2\n[  928.480227] raw: 0xfc\n[  928.480243] raw: 0xfc\n[  928.480246] ===raw_msoc:252\n[  938.080163] raw: 0xfc\n[  938.080178] raw: 0xfc\n[  938.080182] ===raw_msoc:252\n[  938.080484] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  938.080489] FG: calculate_average_current: current_now_ma=291015 averaged_iavg_ma=289184\n[  938.080496] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:291015, smooth_low_batt_soc:0, smooth_soc: 0\n[  938.080500] FG: soc_monitor_work: soc:99, raw_soc:99, c:291015, s:2\n[  938.720229] raw: 0xfc\n[  938.720245] raw: 0xfc\n[  938.720248] ===raw_msoc:252\n[  948.320251] raw: 0xfc\n[  948.320267] raw: 0xfc\n[  948.320270] ===raw_msoc:252\n[  948.320534] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  948.320539] FG: calculate_average_current: current_now_ma=291503 averaged_iavg_ma=290161\n[  948.320546] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:291503, smooth_low_batt_soc:0, smooth_soc: 0\n[  948.320551] FG: soc_monitor_work: soc:99, raw_soc:99, c:291503, s:2\n[  948.960237] raw: 0xfc\n[  948.960253] raw: 0xfc\n[  948.960256] ===raw_msoc:252\n[  950.103832]  2923     3.7 C/MHz     86 mW    7.4 J   33.8 I/mJ    85.5 s\n                883: \n[  958.560246] raw: 0xfb\n[  958.560262] raw: 0xfb\n[  958.560264] ===raw_msoc:251\n[  958.560578] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  958.560583] FG: calculate_average_current: current_now_ma=375488 averaged_iavg_ma=300964\n[  958.560589] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:375488, smooth_low_batt_soc:0, smooth_soc: 0\n[  958.560593] FG: soc_monitor_work: soc:99, raw_soc:99, c:375488, s:2\n[  959.200230] raw: 0xfb\n[  959.200245] raw: 0xfb\n[  959.200248] ===raw_msoc:251\n[  968.800238] raw: 0xfb\n[  968.800253] raw: 0xfb\n[  968.800255] ===raw_msoc:251\n[  968.800505] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  968.800510] FG: calculate_average_current: current_now_ma=293456 averaged_iavg_ma=301574\n[  968.800516] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:293456, smooth_low_batt_soc:0, smooth_soc: 0\n[  968.800520] FG: soc_monitor_work: soc:99, raw_soc:99, c:293456, s:2\n[  969.440215] raw: 0xfb\n[  969.440230] raw: 0xfb\n[  969.440233] ===raw_msoc:251\n[  979.040240] raw: 0xfb\n[  979.040255] raw: 0xfb\n[  979.040257] ===raw_msoc:251\n[  979.040513] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  979.040518] FG: calculate_average_current: current_now_ma=290527 averaged_iavg_ma=301147\n[  979.040524] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:290527, smooth_low_batt_soc:0, smooth_soc: 0\n[  979.040528] FG: soc_monitor_work: soc:99, raw_soc:99, c:290527, s:2\n[  979.680264] raw: 0xfb\n[  979.680279] raw: 0xfb\n[  979.680282] ===raw_msoc:251\n[  982.153342] FG: esr_calib_work: esr_raw: 0x114 esr_char_raw: 0xcd esr_meas_diff: 0x47 esr_delta: 0x941\n[  982.153347] FG: esr_calib_work: fg_esr_meas_diff: 0xfffffffd esr_filt: 0xffffffff esr_delta_new: 0x921\n[  982.153821] FG: esr_calib_work: Wrote ESR delta [0x21 0x9]\n[  989.280252] raw: 0xfb\n[  989.280267] raw: 0xfb\n[  989.280270] ===raw_msoc:251\n[  989.280607] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  989.280612] FG: calculate_average_current: current_now_ma=288085 averaged_iavg_ma=300720\n[  989.280618] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:288085, smooth_low_batt_soc:0, smooth_soc: 0\n[  989.280622] FG: soc_monitor_work: soc:99, raw_soc:99, c:288085, s:2\n[  989.920215] raw: 0xfb\n[  989.920230] raw: 0xfb\n[  989.920233] ===raw_msoc:251\n[  990.308696] FG: fg_esr_fast_cal_timer: ESR fast calibration timer expired\n[  990.309209] esr_charging_timer set to 0/96\n[  990.309684] esr_discharging_timer set to 0/96\n[  990.311123] FG: fg_gen4_esr_fast_calib_config: Disabling ESR fast calibration\n[  999.520247] raw: 0xfb\n[  999.520262] raw: 0xfb\n[  999.520264] ===raw_msoc:251\n[  999.520526] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  999.520530] FG: calculate_average_current: current_now_ma=288574 averaged_iavg_ma=300659\n[  999.520536] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:288574, smooth_low_batt_soc:0, smooth_soc: 0\n[  999.520540] FG: soc_monitor_work: soc:99, raw_soc:99, c:288574, s:2\n[ 1000.160232] raw: 0xfb\n[ 1000.160247] raw: 0xfb\n[ 1000.160250] ===raw_msoc:251\n[ 1009.760246] raw: 0xfb\n[ 1009.760261] raw: 0xfb\n[ 1009.760264] ===raw_msoc:251\n[ 1009.760529] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1009.760534] FG: calculate_average_current: current_now_ma=290527 averaged_iavg_ma=301147\n[ 1009.760540] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:290527, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1009.760544] FG: soc_monitor_work: soc:99, raw_soc:99, c:290527, s:2\n[ 1010.400222] raw: 0xfb\n[ 1010.400237] raw: 0xfb\n[ 1010.400240] ===raw_msoc:251\n[ 1020.000287] raw: 0xfb\n[ 1020.000302] raw: 0xfb\n[ 1020.000304] ===raw_msoc:251\n[ 1020.000560] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1020.000565] FG: calculate_average_current: current_now_ma=294433 averaged_iavg_ma=301574\n[ 1020.000570] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:294433, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1020.000574] FG: soc_monitor_work: soc:99, raw_soc:99, c:294433, s:2\n[ 1020.640218] raw: 0xfb\n[ 1020.640233] raw: 0xfb\n[ 1020.640236] ===raw_msoc:251\n[ 1030.240238] raw: 0xfb\n[ 1030.240253] raw: 0xfb\n[ 1030.240256] ===raw_msoc:251\n[ 1030.240505] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1030.240509] FG: calculate_average_current: current_now_ma=291992 averaged_iavg_ma=301635\n[ 1030.240515] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:291992, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1030.240519] FG: soc_monitor_work: soc:99, raw_soc:99, c:291992, s:2\n[ 1030.880215] raw: 0xfb\n[ 1030.880230] raw: 0xfb\n[ 1030.880233] ===raw_msoc:251\n[ 1035.353167]  3279     3.7 C/MHz     77 mW    5.9 J   42.5 I/mJ    76.2 s\n                979: \n[ 1040.480296] raw: 0xfb\n[ 1040.480311] raw: 0xfb\n[ 1040.480314] ===raw_msoc:251\n[ 1040.480586] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1040.480590] FG: calculate_average_current: current_now_ma=281249 averaged_iavg_ma=289855\n[ 1040.480596] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:281249, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1040.480599] FG: soc_monitor_work: soc:99, raw_soc:99, c:281249, s:2\n[ 1041.120325] raw: 0xfb\n[ 1041.120339] raw: 0xfb\n[ 1041.120342] ===raw_msoc:251\n[ 1050.720249] raw: 0xfb\n[ 1050.720264] raw: 0xfb\n[ 1050.720266] ===raw_msoc:251\n[ 1050.720514] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1050.720519] FG: calculate_average_current: current_now_ma=294433 averaged_iavg_ma=289978\n[ 1050.720524] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:294433, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1050.720527] FG: soc_monitor_work: soc:99, raw_soc:99, c:294433, s:2\n[ 1051.360212] raw: 0xfb\n[ 1051.360227] raw: 0xfb\n[ 1051.360229] ===raw_msoc:251\n[ 1060.960236] raw: 0xfb\n[ 1060.960250] raw: 0xfb\n[ 1060.960253] ===raw_msoc:251\n[ 1060.960506] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1060.960510] FG: calculate_average_current: current_now_ma=295410 averaged_iavg_ma=290588\n[ 1060.960515] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:295410, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1060.960519] FG: soc_monitor_work: soc:99, raw_soc:99, c:295410, s:2\n[ 1061.600206] raw: 0xfb\n[ 1061.600221] raw: 0xfb\n[ 1061.600223] ===raw_msoc:251\n[ 1071.200228] raw: 0xfb\n[ 1071.200243] raw: 0xfb\n[ 1071.200245] ===raw_msoc:251\n[ 1071.200494] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1071.200498] FG: calculate_average_current: current_now_ma=295410 averaged_iavg_ma=290588\n[ 1071.200503] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:295410, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1071.200507] FG: soc_monitor_work: soc:99, raw_soc:99, c:295410, s:2\n[ 1071.840212] raw: 0xfb\n[ 1071.840227] raw: 0xfb\n[ 1071.840229] ===raw_msoc:251\n[ 1081.440240] raw: 0xfb\n[ 1081.440254] raw: 0xfb\n[ 1081.440257] ===raw_msoc:251\n[ 1081.440544] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1081.440548] FG: calculate_average_current: current_now_ma=294433 averaged_iavg_ma=291381\n[ 1081.440553] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:294433, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1081.440557] FG: soc_monitor_work: soc:99, raw_soc:99, c:294433, s:2\n[ 1082.080206] raw: 0xfb\n[ 1082.080221] raw: 0xfb\n[ 1082.080223] ===raw_msoc:251\n[ 1091.680228] raw: 0xfb\n[ 1091.680243] raw: 0xfb\n[ 1091.680245] ===raw_msoc:251\n[ 1091.680489] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1091.680493] FG: calculate_average_current: current_now_ma=291992 averaged_iavg_ma=291809\n[ 1091.680498] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:291992, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1091.680502] FG: soc_monitor_work: soc:99, raw_soc:99, c:291992, s:2\n[ 1092.320219] raw: 0xfb\n[ 1092.320234] raw: 0xfb\n[ 1092.320236] ===raw_msoc:251\n[ 1101.920233] raw: 0xfb\n[ 1101.920247] raw: 0xfb\n[ 1101.920250] ===raw_msoc:251\n[ 1101.920499] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1101.920503] FG: calculate_average_current: current_now_ma=295898 averaged_iavg_ma=292480\n[ 1101.920508] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:295898, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1101.920512] FG: soc_monitor_work: soc:99, raw_soc:99, c:295898, s:2\n[ 1102.560266] raw: 0xfb\n[ 1102.560280] raw: 0xfb\n[ 1102.560283] ===raw_msoc:251\n[ 1112.160236] raw: 0xfb\n[ 1112.160251] raw: 0xfb\n[ 1112.160253] ===raw_msoc:251\n[ 1112.160524] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1112.160528] FG: calculate_average_current: current_now_ma=291503 averaged_iavg_ma=292114\n[ 1112.160533] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:291503, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1112.160537] FG: soc_monitor_work: soc:99, raw_soc:99, c:291503, s:2\n[ 1112.586743]  3635     3.7 C/MHz     65 mW    4.4 J   56.2 I/mJ    68.8 s\n               1075: \n[ 1112.800259] raw: 0xfb\n[ 1112.800273] raw: 0xfb\n[ 1112.800276] ===raw_msoc:251\n[ 1122.400221] raw: 0xfb\n[ 1122.400235] raw: 0xfb\n[ 1122.400238] ===raw_msoc:251\n[ 1122.400476] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1122.400480] FG: calculate_average_current: current_now_ma=292968 averaged_iavg_ma=292236\n[ 1122.400485] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:292968, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1122.400488] FG: soc_monitor_work: soc:99, raw_soc:99, c:292968, s:2\n[ 1123.040199] raw: 0xfb\n[ 1123.040214] raw: 0xfb\n[ 1123.040216] ===raw_msoc:251\n[ 1132.640227] raw: 0xfb\n[ 1132.640241] raw: 0xfb\n[ 1132.640243] ===raw_msoc:251\n[ 1132.640486] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1132.640490] FG: calculate_average_current: current_now_ma=293945 averaged_iavg_ma=293823\n[ 1132.640495] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:293945, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1132.640498] FG: soc_monitor_work: soc:99, raw_soc:99, c:293945, s:2\n[ 1133.280240] raw: 0xfb\n[ 1133.280255] raw: 0xfb\n[ 1133.280257] ===raw_msoc:251\n[ 1142.880227] raw: 0xfb\n[ 1142.880242] raw: 0xfb\n[ 1142.880244] ===raw_msoc:251\n[ 1142.880521] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1142.880525] FG: calculate_average_current: current_now_ma=292968 averaged_iavg_ma=293640\n[ 1142.880530] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:292968, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1142.880533] FG: soc_monitor_work: soc:99, raw_soc:99, c:292968, s:2\n[ 1143.520198] raw: 0xfb\n[ 1143.520212] raw: 0xfb\n[ 1143.520214] ===raw_msoc:251\n[ 1153.120221] raw: 0xfb\n[ 1153.120235] raw: 0xfb\n[ 1153.120238] ===raw_msoc:251\n[ 1153.120476] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1153.120480] FG: calculate_average_current: current_now_ma=291015 averaged_iavg_ma=293090\n[ 1153.120484] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:291015, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1153.120488] FG: soc_monitor_work: soc:99, raw_soc:99, c:291015, s:2\n[ 1153.760220] raw: 0xfb\n[ 1153.760235] raw: 0xfb\n[ 1153.760237] ===raw_msoc:251\n[ 1163.360227] raw: 0xfb\n[ 1163.360242] raw: 0xfb\n[ 1163.360244] ===raw_msoc:251\n[ 1163.360496] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1163.360500] FG: calculate_average_current: current_now_ma=292968 averaged_iavg_ma=292907\n[ 1163.360505] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:292968, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1163.360508] FG: soc_monitor_work: soc:99, raw_soc:99, c:292968, s:2\n[ 1164.000203] raw: 0xfb\n[ 1164.000218] raw: 0xfb\n[ 1164.000220] ===raw_msoc:251\n[ 1173.321519] raw: 0xfb\n[ 1173.332910] esr_charging_timer set to 0/7\n[ 1173.333346] esr_discharging_timer set to 0/7\n[ 1173.334644] FG: fg_gen4_esr_fast_calib_config: Enabling ESR fast calibration\n[ 1173.334913] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4385 Vbatt avg=4384 Vbatt res=984\n[ 1173.334927] raw: 0xfb\n[ 1173.334941] raw: 0xfb\n[ 1173.334943] ===raw_msoc:251\n[ 1173.334946] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 291992\n[ 1173.336019] raw: 0xfb\n[ 1173.336033] raw: 0xfb\n[ 1173.336036] ===raw_msoc:251\n[ 1173.336876] raw: 0xfb\n[ 1173.336890] raw: 0xfb\n[ 1173.336892] ===raw_msoc:251\n[ 1173.338125] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 245 FCC = 6000000uA FV = 4480000uV\n[ 1173.338129] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[ 1173.338137] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 245 max voltage= 4480000uv FV = 4480000uV\n[ 1173.338899] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 3ebd3c35\n[ 1173.338931] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[ 1173.339211] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4385 Vbatt avg=4384 Vbatt res=984\n[ 1173.339225] raw: 0xfb\n[ 1173.339238] raw: 0xfb\n[ 1173.339240] ===raw_msoc:251\n[ 1173.339244] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 291992\n[ 1173.339247] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1173.600261] raw: 0xfb\n[ 1173.600276] raw: 0xfb\n[ 1173.600278] ===raw_msoc:251\n[ 1173.600515] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1173.600519] FG: calculate_average_current: current_now_ma=291992 averaged_iavg_ma=292907\n[ 1173.600524] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:291992, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1173.600527] FG: soc_monitor_work: soc:99, raw_soc:99, c:291992, s:2\n[ 1174.240214] raw: 0xfb\n[ 1174.240228] raw: 0xfb\n[ 1174.240230] ===raw_msoc:251\n[ 1183.808204]  3992     3.7 C/MHz     71 mW    4.4 J   56.2 I/mJ    62.6 s\n               1171: \n[ 1183.840288] raw: 0xfb\n[ 1183.840302] raw: 0xfb\n[ 1183.840304] ===raw_msoc:251\n[ 1183.840540] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1183.840543] FG: calculate_average_current: current_now_ma=294433 averaged_iavg_ma=292724\n[ 1183.840548] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:294433, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1183.840551] FG: soc_monitor_work: soc:99, raw_soc:99, c:294433, s:2\n[ 1184.480253] raw: 0xfb\n[ 1184.480267] raw: 0xfb\n[ 1184.480270] ===raw_msoc:251\n[ 1194.080217] raw: 0xfa\n[ 1194.080231] raw: 0xfa\n[ 1194.080233] ===raw_msoc:250\n[ 1194.080471] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1194.080474] FG: calculate_average_current: current_now_ma=297851 averaged_iavg_ma=293518\n[ 1194.080479] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:297851, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1194.080482] FG: soc_monitor_work: soc:99, raw_soc:99, c:297851, s:2\n[ 1194.720197] raw: 0xfa\n[ 1194.720211] raw: 0xfa\n[ 1194.720213] ===raw_msoc:250\n[ 1198.421118] FG: esr_calib_work: esr_raw: 0x130 esr_char_raw: 0xcd esr_meas_diff: 0x63 esr_delta: 0x92e\n[ 1198.421122] FG: esr_calib_work: fg_esr_meas_diff: 0x1a esr_filt: 0x6 esr_delta_new: 0x9ee\n[ 1198.421567] FG: esr_calib_work: Wrote ESR delta [0xee 0x9]\n[ 1204.320220] raw: 0xfa\n[ 1204.320234] raw: 0xfa\n[ 1204.320236] ===raw_msoc:250\n[ 1204.320474] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1204.320478] FG: calculate_average_current: current_now_ma=291503 averaged_iavg_ma=293334\n[ 1204.320482] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:291503, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1204.320485] FG: soc_monitor_work: soc:99, raw_soc:99, c:291503, s:2\n[ 1204.960222] raw: 0xfa\n[ 1204.960236] raw: 0xfa\n[ 1204.960238] ===raw_msoc:250\n[ 1214.560220] raw: 0xfa\n[ 1214.560234] raw: 0xfa\n[ 1214.560236] ===raw_msoc:250\n[ 1214.560477] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1214.560481] FG: calculate_average_current: current_now_ma=295410 averaged_iavg_ma=293518\n[ 1214.560486] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:295410, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1214.560489] FG: soc_monitor_work: soc:99, raw_soc:99, c:295410, s:2\n[ 1215.200192] raw: 0xfa\n[ 1215.200206] raw: 0xfa\n[ 1215.200208] ===raw_msoc:250\n[ 1224.800215] raw: 0xfa\n[ 1224.800228] raw: 0xfa\n[ 1224.800231] ===raw_msoc:250\n[ 1224.800468] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1224.800472] FG: calculate_average_current: current_now_ma=298339 averaged_iavg_ma=294189\n[ 1224.800476] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:298339, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1224.800479] FG: soc_monitor_work: soc:99, raw_soc:99, c:298339, s:2\n[ 1225.440208] raw: 0xfa\n[ 1225.440222] raw: 0xfa\n[ 1225.440224] ===raw_msoc:250\n[ 1235.040221] raw: 0xfa\n[ 1235.040235] raw: 0xfa\n[ 1235.040237] ===raw_msoc:250\n[ 1235.040507] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1235.040511] FG: calculate_average_current: current_now_ma=294921 averaged_iavg_ma=294677\n[ 1235.040515] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:294921, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1235.040518] FG: soc_monitor_work: soc:99, raw_soc:99, c:294921, s:2\n[ 1235.680190] raw: 0xfa\n[ 1235.680204] raw: 0xfa\n[ 1235.680206] ===raw_msoc:250\n[ 1242.080809] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 03 78 04 02 03 07 a0 fd 30 00 a3 02 0b 0a 00 00 55 \n[ 1242.081047] smb:01:1200 00 ff ff fe 00 3d 3d 00 00 00 00 00 00 00 00 01 06 00 01 00 \n[ 1242.081674] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 00 00 40 00 00 a3 00 00 00 00 07 00 18 38 11 b0 03 00 00 7f 00 00 00 00 00 00 02 54 00 00 00 00 \n[ 1242.082523] smb:01:1500 00 00 00 04 c6 40 00 04 ff 00 00 ff ff 4a 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 1242.083150] smb:01:1600 03 03 00 00 0f 02 01 04 00 00 00 5b 5b 00 00 00 00 00 42 00 f3 00 00 00 00 00 00 00 00 00 00 00 00 0c 01 00 80 00 00 00 00 00 00 20 b8 4c cc 18 02 00 03 32 04 \n[ 1242.083167] pm8150b_charger: smblib_reg_work: AWAKE vote value is 0 voted by CHG_AWAKE_VOTER\n[ 1245.280213] raw: 0xfa\n[ 1245.280227] raw: 0xfa\n[ 1245.280230] ===raw_msoc:250\n[ 1245.280463] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1245.280466] FG: calculate_average_current: current_now_ma=293945 averaged_iavg_ma=294799\n[ 1245.280471] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:293945, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1245.280474] FG: soc_monitor_work: soc:99, raw_soc:99, c:293945, s:2\n[ 1245.920192] raw: 0xfa\n[ 1245.920206] raw: 0xfa\n[ 1245.920208] ===raw_msoc:250\n[ 1250.018742]  4348     3.7 C/MHz    121 mW    6.9 J   36.0 I/mJ    57.5 s\n               1248: \n[ 1255.520275] raw: 0xfa\n[ 1255.520289] raw: 0xfa\n[ 1255.520291] ===raw_msoc:250\n[ 1255.520525] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1255.520529] FG: calculate_average_current: current_now_ma=378906 averaged_iavg_ma=305664\n[ 1255.520533] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:378906, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1255.520536] FG: soc_monitor_work: soc:99, raw_soc:99, c:378906, s:2\n[ 1256.160265] raw: 0xfa\n[ 1256.160279] raw: 0xfa\n[ 1256.160281] ===raw_msoc:250\n[ 1265.760218] raw: 0xfa\n[ 1265.760232] raw: 0xfa\n[ 1265.760234] ===raw_msoc:250\n[ 1265.760475] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1265.760478] FG: calculate_average_current: current_now_ma=296874 averaged_iavg_ma=305969\n[ 1265.760482] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:296874, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1265.760485] FG: soc_monitor_work: soc:99, raw_soc:99, c:296874, s:2\n[ 1266.400187] raw: 0xfa\n[ 1266.400200] raw: 0xfa\n[ 1266.400202] ===raw_msoc:250\n[ 1276.000210] raw: 0xfa\n[ 1276.000224] raw: 0xfa\n[ 1276.000226] ===raw_msoc:250\n[ 1276.000455] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1276.000458] FG: calculate_average_current: current_now_ma=294433 averaged_iavg_ma=305541\n[ 1276.000462] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:294433, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1276.000465] FG: soc_monitor_work: soc:99, raw_soc:99, c:294433, s:2\n[ 1276.640187] raw: 0xfa\n[ 1276.640201] raw: 0xfa\n[ 1276.640203] ===raw_msoc:250\n[ 1278.334731] FG: fg_esr_fast_cal_timer: ESR fast calibration timer expired\n[ 1278.335206] esr_charging_timer set to 0/96\n[ 1278.335647] esr_discharging_timer set to 0/96\n[ 1278.336956] FG: fg_gen4_esr_fast_calib_config: Disabling ESR fast calibration\n[ 1286.240210] raw: 0xfa\n[ 1286.240224] raw: 0xfa\n[ 1286.240226] ===raw_msoc:250\n[ 1286.240460] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1286.240463] FG: calculate_average_current: current_now_ma=294433 averaged_iavg_ma=305541\n[ 1286.240468] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:294433, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1286.240470] FG: soc_monitor_work: soc:99, raw_soc:99, c:294433, s:2\n[ 1286.880223] raw: 0xfa\n[ 1286.880237] raw: 0xfa\n[ 1286.880239] ===raw_msoc:250\n[ 1296.480244] raw: 0xfa\n[ 1296.480258] raw: 0xfa\n[ 1296.480260] ===raw_msoc:250\n[ 1296.480494] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1296.480498] FG: calculate_average_current: current_now_ma=294433 averaged_iavg_ma=305541\n[ 1296.480502] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:294433, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1296.480505] FG: soc_monitor_work: soc:99, raw_soc:99, c:294433, s:2\n[ 1297.120187] raw: 0xfa\n[ 1297.120201] raw: 0xfa\n[ 1297.120203] ===raw_msoc:250\n[ 1306.720211] raw: 0xfa\n[ 1306.720225] raw: 0xfa\n[ 1306.720227] ===raw_msoc:250\n[ 1306.720457] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1306.720460] FG: calculate_average_current: current_now_ma=295898 averaged_iavg_ma=306091\n[ 1306.720464] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:295898, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1306.720467] FG: soc_monitor_work: soc:99, raw_soc:99, c:295898, s:2\n[ 1307.360194] raw: 0xfa\n[ 1307.360208] raw: 0xfa\n[ 1307.360210] ===raw_msoc:250\n[ 1312.217201]  4633     3.7 C/MHz     79 mW    4.2 J   58.9 I/mJ    54.0 s\n               1344: \n[ 1316.960290] raw: 0xfa\n[ 1316.960303] raw: 0xfa\n[ 1316.960305] ===raw_msoc:250\n[ 1316.960536] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1316.960539] FG: calculate_average_current: current_now_ma=281249 averaged_iavg_ma=304321\n[ 1316.960543] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:281249, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1316.960545] FG: soc_monitor_work: soc:99, raw_soc:99, c:281249, s:2\n[ 1317.600249] raw: 0xfa\n[ 1317.600263] raw: 0xfa\n[ 1317.600265] ===raw_msoc:250\n[ 1327.200210] raw: 0xfa\n[ 1327.200223] raw: 0xfa\n[ 1327.200225] ===raw_msoc:250\n[ 1327.200455] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1327.200459] FG: calculate_average_current: current_now_ma=296874 averaged_iavg_ma=304138\n[ 1327.200463] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:296874, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1327.200465] FG: soc_monitor_work: soc:99, raw_soc:99, c:296874, s:2\n[ 1327.840183] raw: 0xfa\n[ 1327.840197] raw: 0xfa\n[ 1327.840198] ===raw_msoc:250\n[ 1337.440212] raw: 0xfa\n[ 1337.440226] raw: 0xfa\n[ 1337.440228] ===raw_msoc:250\n[ 1337.440454] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1337.440457] FG: calculate_average_current: current_now_ma=299316 averaged_iavg_ma=304687\n[ 1337.440461] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:299316, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1337.440464] FG: soc_monitor_work: soc:99, raw_soc:99, c:299316, s:2\n[ 1338.080183] raw: 0xfa\n[ 1338.080197] raw: 0xfa\n[ 1338.080198] ===raw_msoc:250\n[ 1347.680205] raw: 0xfa\n[ 1347.680219] raw: 0xfa\n[ 1347.680220] ===raw_msoc:250\n[ 1347.680451] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1347.680454] FG: calculate_average_current: current_now_ma=300292 averaged_iavg_ma=305480\n[ 1347.680458] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:300292, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1347.680460] FG: soc_monitor_work: soc:99, raw_soc:99, c:300292, s:2\n[ 1348.320216] raw: 0xfa\n[ 1348.320229] raw: 0xfa\n[ 1348.320231] ===raw_msoc:250\n[ 1357.920209] raw: 0xfa\n[ 1357.920222] raw: 0xfa\n[ 1357.920224] ===raw_msoc:250\n[ 1357.920482] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1357.920485] FG: calculate_average_current: current_now_ma=294433 averaged_iavg_ma=294921\n[ 1357.920488] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:294433, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1357.920491] FG: soc_monitor_work: soc:99, raw_soc:99, c:294433, s:2\n[ 1358.560198] raw: 0xfa\n[ 1358.560211] raw: 0xfa\n[ 1358.560213] ===raw_msoc:250\n[ 1368.160210] raw: 0xfa\n[ 1368.160223] raw: 0xfa\n[ 1368.160225] ===raw_msoc:250\n[ 1368.160459] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1368.160462] FG: calculate_average_current: current_now_ma=296874 averaged_iavg_ma=294921\n[ 1368.160466] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:296874, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1368.160469] FG: soc_monitor_work: soc:99, raw_soc:99, c:296874, s:2\n[ 1368.800183] raw: 0xfa\n[ 1368.800196] raw: 0xfa\n[ 1368.800198] ===raw_msoc:250\n[ 1371.410101]  4990     3.7 C/MHz     81 mW    4.0 J   61.7 I/mJ    50.1 s\n               1420: \n[ 1378.400264] raw: 0xfa\n[ 1378.400278] raw: 0xfa\n[ 1378.400280] ===raw_msoc:250\n[ 1378.400507] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1378.400510] FG: calculate_average_current: current_now_ma=281249 averaged_iavg_ma=293273\n[ 1378.400514] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:281249, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1378.400516] FG: soc_monitor_work: soc:99, raw_soc:99, c:281249, s:2\n[ 1379.040249] raw: 0xfa\n[ 1379.040262] raw: 0xfa\n[ 1379.040264] ===raw_msoc:250\n[ 1388.640207] raw: 0xfa\n[ 1388.640220] raw: 0xfa\n[ 1388.640222] ===raw_msoc:250\n[ 1388.640452] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1388.640455] FG: calculate_average_current: current_now_ma=298827 averaged_iavg_ma=293639\n[ 1388.640458] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:298827, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1388.640461] FG: soc_monitor_work: soc:99, raw_soc:99, c:298827, s:2\n[ 1389.280179] raw: 0xfa\n[ 1389.280192] raw: 0xfa\n[ 1389.280194] ===raw_msoc:250\n[ 1398.880206] raw: 0xfa\n[ 1398.880219] raw: 0xfa\n[ 1398.880221] ===raw_msoc:250\n[ 1398.880453] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1398.880456] FG: calculate_average_current: current_now_ma=297851 averaged_iavg_ma=295715\n[ 1398.880459] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:297851, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1398.880462] FG: soc_monitor_work: soc:99, raw_soc:99, c:297851, s:2\n[ 1399.520179] raw: 0xfa\n[ 1399.520193] raw: 0xfa\n[ 1399.520194] ===raw_msoc:250\n[ 1409.120202] raw: 0xfa\n[ 1409.120216] raw: 0xfa\n[ 1409.120217] ===raw_msoc:250\n[ 1409.120446] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1409.120448] FG: calculate_average_current: current_now_ma=296874 averaged_iavg_ma=295715\n[ 1409.120452] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:296874, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1409.120455] FG: soc_monitor_work: soc:99, raw_soc:99, c:296874, s:2\n[ 1409.760185] raw: 0xfa\n[ 1409.760198] raw: 0xfa\n[ 1409.760200] ===raw_msoc:250\n[ 1419.360207] raw: 0xf9\n[ 1419.360220] raw: 0xf9\n[ 1419.360222] ===raw_msoc:249\n[ 1419.360453] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1419.360456] FG: calculate_average_current: current_now_ma=300781 averaged_iavg_ma=295898\n[ 1419.360460] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:300781, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1419.360462] FG: soc_monitor_work: soc:99, raw_soc:99, c:300781, s:2\n[ 1420.000180] raw: 0xf9\n[ 1420.000193] raw: 0xf9\n[ 1420.000195] ===raw_msoc:249\n[ 1427.595082]  5275     3.7 C/MHz     85 mW    4.0 J   61.8 I/mJ    47.4 s\n               1516: \n[ 1429.600261] raw: 0xf9\n[ 1429.600274] raw: 0xf9\n[ 1429.600276] ===raw_msoc:249\n[ 1429.600497] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1429.600499] FG: calculate_average_current: current_now_ma=282226 averaged_iavg_ma=293639\n[ 1429.600503] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:282226, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1429.600505] FG: soc_monitor_work: soc:99, raw_soc:99, c:282226, s:2\n[ 1430.240237] raw: 0xf9\n[ 1430.240251] raw: 0xf9\n[ 1430.240252] ===raw_msoc:249\n[ 1439.840198] raw: 0xf9\n[ 1439.840211] raw: 0xf9\n[ 1439.840213] ===raw_msoc:249\n[ 1439.840438] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1439.840440] FG: calculate_average_current: current_now_ma=297851 averaged_iavg_ma=294067\n[ 1439.840444] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:297851, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1439.840446] FG: soc_monitor_work: soc:99, raw_soc:99, c:297851, s:2\n[ 1440.480181] raw: 0xf9\n[ 1440.480194] raw: 0xf9\n[ 1440.480196] ===raw_msoc:249\n[ 1450.080212] raw: 0xf9\n[ 1450.080225] raw: 0xf9\n[ 1450.080227] ===raw_msoc:249\n[ 1450.080453] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1450.080456] FG: calculate_average_current: current_now_ma=298827 averaged_iavg_ma=294311\n[ 1450.080459] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:298827, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1450.080461] FG: soc_monitor_work: soc:99, raw_soc:99, c:298827, s:2\n[ 1450.720176] raw: 0xf9\n[ 1450.720189] raw: 0xf9\n[ 1450.720191] ===raw_msoc:249\n[ 1457.350766] raw: 0xf9\n[ 1457.361922] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4379 Vbatt avg=4379 Vbatt res=979\n[ 1457.361936] raw: 0xf9\n[ 1457.361948] raw: 0xf9\n[ 1457.361950] ===raw_msoc:249\n[ 1457.361952] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 302245\n[ 1457.362931] raw: 0xf9\n[ 1457.362944] raw: 0xf9\n[ 1457.362946] ===raw_msoc:249\n[ 1457.363244] raw: 0xf9\n[ 1457.363257] raw: 0xf9\n[ 1457.363258] ===raw_msoc:249\n[ 1457.364876] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 245 FCC = 6000000uA FV = 4480000uV\n[ 1457.364879] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[ 1457.364884] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 245 max voltage= 4480000uv FV = 4480000uV\n[ 1457.365577] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 3e6e978c\n[ 1457.365605] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[ 1457.365869] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4379 Vbatt avg=4379 Vbatt res=979\n[ 1457.365882] raw: 0xf9\n[ 1457.365894] raw: 0xf9\n[ 1457.365896] ===raw_msoc:249\n[ 1457.365898] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 302245\n[ 1457.365901] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1460.320197] raw: 0xf9\n[ 1460.320211] raw: 0xf9\n[ 1460.320212] ===raw_msoc:249\n[ 1460.320433] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1460.320436] FG: calculate_average_current: current_now_ma=299804 averaged_iavg_ma=296630\n[ 1460.320439] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:299804, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1460.320442] FG: soc_monitor_work: soc:99, raw_soc:99, c:299804, s:2\n[ 1460.960180] raw: 0xf9\n[ 1460.960193] raw: 0xf9\n[ 1460.960195] ===raw_msoc:249\n[ 1470.560203] raw: 0xf9\n[ 1470.560217] raw: 0xf9\n[ 1470.560218] ===raw_msoc:249\n[ 1470.560451] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1470.560453] FG: calculate_average_current: current_now_ma=299316 averaged_iavg_ma=296691\n[ 1470.560457] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:299316, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1470.560459] FG: soc_monitor_work: soc:99, raw_soc:99, c:299316, s:2\n[ 1471.200179] raw: 0xf9\n[ 1471.200193] raw: 0xf9\n[ 1471.200194] ===raw_msoc:249\n[ 1480.773535]  5632     3.7 C/MHz     88 mW    3.9 J   64.3 I/mJ    44.4 s\n               1612: \n[ 1480.800261] raw: 0xf9\n[ 1480.800274] raw: 0xf9\n[ 1480.800275] ===raw_msoc:249\n[ 1480.800521] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1480.800524] FG: calculate_average_current: current_now_ma=281738 averaged_iavg_ma=294677\n[ 1480.800527] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:281738, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1480.800529] FG: soc_monitor_work: soc:99, raw_soc:99, c:281738, s:2\n[ 1481.440236] raw: 0xf9\n[ 1481.440249] raw: 0xf9\n[ 1481.440250] ===raw_msoc:249\n[ 1491.040195] raw: 0xf9\n[ 1491.040208] raw: 0xf9\n[ 1491.040210] ===raw_msoc:249\n[ 1491.040429] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1491.040432] FG: calculate_average_current: current_now_ma=298827 averaged_iavg_ma=294921\n[ 1491.040435] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:298827, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1491.040437] FG: soc_monitor_work: soc:99, raw_soc:99, c:298827, s:2\n[ 1491.680182] raw: 0xf9\n[ 1491.680195] raw: 0xf9\n[ 1491.680197] ===raw_msoc:249\n[ 1501.280195] raw: 0xf9\n[ 1501.280208] raw: 0xf9\n[ 1501.280209] ===raw_msoc:249\n[ 1501.280432] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1501.280434] FG: calculate_average_current: current_now_ma=298827 averaged_iavg_ma=294921\n[ 1501.280438] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:298827, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1501.280440] FG: soc_monitor_work: soc:99, raw_soc:99, c:298827, s:2\n[ 1501.920195] raw: 0xf9\n[ 1501.920208] raw: 0xf9\n[ 1501.920210] ===raw_msoc:249\n[ 1511.520198] raw: 0xf9\n[ 1511.520212] raw: 0xf9\n[ 1511.520213] ===raw_msoc:249\n[ 1511.520460] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1511.520462] FG: calculate_average_current: current_now_ma=300292 averaged_iavg_ma=294860\n[ 1511.520466] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:300292, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1511.520468] FG: soc_monitor_work: soc:99, raw_soc:99, c:300292, s:2\n[ 1512.160185] raw: 0xf9\n[ 1512.160199] raw: 0xf9\n[ 1512.160200] ===raw_msoc:249\n[ 1521.760199] raw: 0xf9\n[ 1521.760212] raw: 0xf9\n[ 1521.760214] ===raw_msoc:249\n[ 1521.760438] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1521.760441] FG: calculate_average_current: current_now_ma=298827 averaged_iavg_ma=296935\n[ 1521.760444] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:298827, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1521.760447] FG: soc_monitor_work: soc:99, raw_soc:99, c:298827, s:2\n[ 1522.400174] raw: 0xf9\n[ 1522.400186] raw: 0xf9\n[ 1522.400188] ===raw_msoc:249\n[ 1530.948058]  5988     3.7 C/MHz     92 mW    3.8 J   65.4 I/mJ    41.7 s\n               1708: \n[ 1532.000259] raw: 0xf9\n[ 1532.000272] raw: 0xf9\n[ 1532.000273] ===raw_msoc:249\n[ 1532.000499] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1532.000501] FG: calculate_average_current: current_now_ma=280273 averaged_iavg_ma=294738\n[ 1532.000505] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:280273, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1532.000507] FG: soc_monitor_work: soc:99, raw_soc:99, c:280273, s:2\n[ 1532.640260] raw: 0xf9\n[ 1532.640273] raw: 0xf9\n[ 1532.640274] ===raw_msoc:249\n[ 1542.240195] raw: 0xf9\n[ 1542.240208] raw: 0xf9\n[ 1542.240209] ===raw_msoc:249\n[ 1542.240430] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1542.240432] FG: calculate_average_current: current_now_ma=299804 averaged_iavg_ma=294860\n[ 1542.240436] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:299804, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1542.240438] FG: soc_monitor_work: soc:99, raw_soc:99, c:299804, s:2\n[ 1542.880171] raw: 0xf9\n[ 1542.880184] raw: 0xf9\n[ 1542.880185] ===raw_msoc:249\n[ 1552.480192] raw: 0xf9\n[ 1552.480205] raw: 0xf9\n[ 1552.480206] ===raw_msoc:249\n[ 1552.480423] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1552.480425] FG: calculate_average_current: current_now_ma=301757 averaged_iavg_ma=295104\n[ 1552.480428] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:301757, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1552.480430] FG: soc_monitor_work: soc:99, raw_soc:99, c:301757, s:2\n[ 1553.120169] raw: 0xf9\n[ 1553.120182] raw: 0xf9\n[ 1553.120184] ===raw_msoc:249\n[ 1562.720191] raw: 0xf9\n[ 1562.720204] raw: 0xf9\n[ 1562.720206] ===raw_msoc:249\n[ 1562.720425] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1562.720428] FG: calculate_average_current: current_now_ma=302245 averaged_iavg_ma=295470\n[ 1562.720431] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:302245, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1562.720433] FG: soc_monitor_work: soc:99, raw_soc:99, c:302245, s:2\n[ 1563.360174] raw: 0xf9\n[ 1563.360187] raw: 0xf9\n[ 1563.360189] ===raw_msoc:249\n[ 1572.960197] raw: 0xf9\n[ 1572.960210] raw: 0xf9\n[ 1572.960211] ===raw_msoc:249\n[ 1572.960431] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1572.960434] FG: calculate_average_current: current_now_ma=304687 averaged_iavg_ma=298339\n[ 1572.960437] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:304687, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1572.960439] FG: soc_monitor_work: soc:99, raw_soc:99, c:304687, s:2\n[ 1573.600180] raw: 0xf9\n[ 1573.600193] raw: 0xf9\n[ 1573.600195] ===raw_msoc:249\n[ 1579.117822]  6346     3.7 C/MHz     96 mW    3.8 J   66.3 I/mJ    39.4 s\n               1804: \n[ 1583.200264] raw: 0xf9\n[ 1583.200277] raw: 0xf9\n[ 1583.200278] ===raw_msoc:249\n[ 1583.200493] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1583.200496] FG: calculate_average_current: current_now_ma=281738 averaged_iavg_ma=296203\n[ 1583.200499] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:281738, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1583.200500] FG: soc_monitor_work: soc:99, raw_soc:99, c:281738, s:2\n[ 1583.840231] raw: 0xf9\n[ 1583.840244] raw: 0xf9\n[ 1583.840245] ===raw_msoc:249\n[ 1593.440194] raw: 0xf9\n[ 1593.440207] raw: 0xf9\n[ 1593.440208] ===raw_msoc:249\n[ 1593.440427] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1593.440429] FG: calculate_average_current: current_now_ma=306640 averaged_iavg_ma=296996\n[ 1593.440432] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:306640, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1593.440434] FG: soc_monitor_work: soc:99, raw_soc:99, c:306640, s:2\n[ 1594.080171] raw: 0xf9\n[ 1594.080183] raw: 0xf9\n[ 1594.080185] ===raw_msoc:249\n[ 1603.680192] raw: 0xf9\n[ 1603.680205] raw: 0xf9\n[ 1603.680206] ===raw_msoc:249\n[ 1603.680425] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1603.680427] FG: calculate_average_current: current_now_ma=305175 averaged_iavg_ma=297790\n[ 1603.680430] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:305175, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1603.680432] FG: soc_monitor_work: soc:99, raw_soc:99, c:305175, s:2\n[ 1604.320166] raw: 0xf9\n[ 1604.320179] raw: 0xf9\n[ 1604.320181] ===raw_msoc:249\n[ 1613.920188] raw: 0xf9\n[ 1613.920201] raw: 0xf9\n[ 1613.920202] ===raw_msoc:249\n[ 1613.920418] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1613.920420] FG: calculate_average_current: current_now_ma=301757 averaged_iavg_ma=300475\n[ 1613.920423] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:301757, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1613.920425] FG: soc_monitor_work: soc:99, raw_soc:99, c:301757, s:2\n[ 1614.560171] raw: 0xf9\n[ 1614.560183] raw: 0xf9\n[ 1614.560185] ===raw_msoc:249\n[ 1624.160193] raw: 0xf9\n[ 1624.160206] raw: 0xf9\n[ 1624.160207] ===raw_msoc:249\n[ 1624.160431] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1624.160434] FG: calculate_average_current: current_now_ma=305663 averaged_iavg_ma=301208\n[ 1624.160437] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:305663, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1624.160439] FG: soc_monitor_work: soc:99, raw_soc:99, c:305663, s:2\n[ 1624.800245] raw: 0xf9\n[ 1624.800258] raw: 0xf9\n[ 1624.800259] ===raw_msoc:249\n[ 1625.287865] CPU1: shutdown\n[ 1625.287935] psci: CPU1 killed.\n[ 1625.291366] Detected PIPT I-cache on CPU4\n[ 1625.291393] arch_timer: CPU4: Trapping CNTVCT access\n[ 1625.291397] CPU4: Booted secondary processor 0x0000000400 [0x411fd0d0]\n[ 1626.299947]  6701     3.7 C/MHz    105 mW    3.9 J   63.5 I/mJ    37.3 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 710 825 940 1056 1171 1286 1382 1478 1574 1670 1766 1862 1958 2054 2150 2246 2342 2419\n               \n                710: \n[ 1634.400489] raw: 0xf9\n[ 1634.400513] raw: 0xf9\n[ 1634.400521] ===raw_msoc:249\n[ 1634.401041] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1634.401054] FG: calculate_average_current: current_now_ma=283691 averaged_iavg_ma=298950\n[ 1634.401071] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:283691, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1634.401083] FG: soc_monitor_work: soc:99, raw_soc:99, c:283691, s:2\n[ 1635.040445] raw: 0xf9\n[ 1635.040469] raw: 0xf9\n[ 1635.040477] ===raw_msoc:249\n[ 1644.640470] raw: 0xf9\n[ 1644.640493] raw: 0xf9\n[ 1644.640501] ===raw_msoc:249\n[ 1644.640881] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1644.640894] FG: calculate_average_current: current_now_ma=305663 averaged_iavg_ma=299377\n[ 1644.640912] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:305663, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1644.640923] FG: soc_monitor_work: soc:99, raw_soc:99, c:305663, s:2\n[ 1645.280442] raw: 0xf9\n[ 1645.280466] raw: 0xf9\n[ 1645.280474] ===raw_msoc:249\n[ 1654.880472] raw: 0xf8\n[ 1654.880496] raw: 0xf8\n[ 1654.880504] ===raw_msoc:248\n[ 1654.880900] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1654.880913] FG: calculate_average_current: current_now_ma=309081 averaged_iavg_ma=299926\n[ 1654.880930] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:309081, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1654.880942] FG: soc_monitor_work: soc:99, raw_soc:99, c:309081, s:2\n[ 1655.520584] raw: 0xf8\n[ 1655.520608] raw: 0xf8\n[ 1655.520615] ===raw_msoc:248\n[ 1665.120490] raw: 0xf8\n[ 1665.120514] raw: 0xf8\n[ 1665.120522] ===raw_msoc:248\n[ 1665.121042] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1665.121055] FG: calculate_average_current: current_now_ma=307617 averaged_iavg_ma=303161\n[ 1665.121072] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:307617, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1665.121084] FG: soc_monitor_work: soc:99, raw_soc:99, c:307617, s:2\n[ 1665.760463] raw: 0xf8\n[ 1665.760487] raw: 0xf8\n[ 1665.760495] ===raw_msoc:248\n[ 1675.360490] raw: 0xf8\n[ 1675.360514] raw: 0xf8\n[ 1675.360521] ===raw_msoc:248\n[ 1675.360926] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1675.360939] FG: calculate_average_current: current_now_ma=309081 averaged_iavg_ma=303466\n[ 1675.360956] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:309081, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1675.360967] FG: soc_monitor_work: soc:99, raw_soc:99, c:309081, s:2\n[ 1676.000440] raw: 0xf8\n[ 1676.000464] raw: 0xf8\n[ 1676.000472] ===raw_msoc:248\n[ 1676.566925]  6022     8.5 C/MHz    123 mW    5.1 J   49.1 I/mJ    41.5 s\n                825: \n[ 1685.600491] raw: 0xf8\n[ 1685.600514] raw: 0xf8\n[ 1685.600522] ===raw_msoc:248\n[ 1685.600957] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1685.600970] FG: calculate_average_current: current_now_ma=283202 averaged_iavg_ma=300719\n[ 1685.600987] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:283202, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1685.600999] FG: soc_monitor_work: soc:99, raw_soc:99, c:283202, s:2\n[ 1686.240466] raw: 0xf8\n[ 1686.240490] raw: 0xf8\n[ 1686.240498] ===raw_msoc:248\n[ 1695.840492] raw: 0xf8\n[ 1695.840516] raw: 0xf8\n[ 1695.840523] ===raw_msoc:248\n[ 1695.841040] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1695.841052] FG: calculate_average_current: current_now_ma=310058 averaged_iavg_ma=301757\n[ 1695.841070] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:310058, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1695.841081] FG: soc_monitor_work: soc:99, raw_soc:99, c:310058, s:2\n[ 1696.480447] raw: 0xf8\n[ 1696.480470] raw: 0xf8\n[ 1696.480478] ===raw_msoc:248\n[ 1706.080474] raw: 0xf8\n[ 1706.080498] raw: 0xf8\n[ 1706.080506] ===raw_msoc:248\n[ 1706.080891] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1706.080904] FG: calculate_average_current: current_now_ma=313476 averaged_iavg_ma=302734\n[ 1706.080921] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:313476, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1706.080932] FG: soc_monitor_work: soc:99, raw_soc:99, c:313476, s:2\n[ 1706.720443] raw: 0xf8\n[ 1706.720467] raw: 0xf8\n[ 1706.720475] ===raw_msoc:248\n[ 1716.320517] raw: 0xf8\n[ 1716.320541] raw: 0xf8\n[ 1716.320549] ===raw_msoc:248\n[ 1716.320945] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1716.320958] FG: calculate_average_current: current_now_ma=309570 averaged_iavg_ma=305969\n[ 1716.320975] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:309570, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1716.320986] FG: soc_monitor_work: soc:99, raw_soc:99, c:309570, s:2\n[ 1716.960471] raw: 0xf8\n[ 1716.960495] raw: 0xf8\n[ 1716.960503] ===raw_msoc:248\n[ 1720.814509]  7001     8.5 C/MHz    142 mW    5.1 J   49.4 I/mJ    35.7 s\n                940: \n[ 1726.560493] raw: 0xf8\n[ 1726.560517] raw: 0xf8\n[ 1726.560524] ===raw_msoc:248\n[ 1726.561046] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1726.561060] FG: calculate_average_current: current_now_ma=281249 averaged_iavg_ma=302917\n[ 1726.561077] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:281249, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1726.561088] FG: soc_monitor_work: soc:99, raw_soc:99, c:281249, s:2\n[ 1727.200485] raw: 0xf8\n[ 1727.200508] raw: 0xf8\n[ 1727.200516] ===raw_msoc:248\n[ 1736.800471] raw: 0xf8\n[ 1736.800495] raw: 0xf8\n[ 1736.800502] ===raw_msoc:248\n[ 1736.800882] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1736.800895] FG: calculate_average_current: current_now_ma=317382 averaged_iavg_ma=303954\n[ 1736.800912] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:317382, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1736.800924] FG: soc_monitor_work: soc:99, raw_soc:99, c:317382, s:2\n[ 1737.440443] raw: 0xf8\n[ 1737.440467] raw: 0xf8\n[ 1737.440476] ===raw_msoc:248\n[ 1747.040474] raw: 0xf8\n[ 1747.040498] raw: 0xf8\n[ 1747.040506] ===raw_msoc:248\n[ 1747.040909] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1747.040922] FG: calculate_average_current: current_now_ma=314941 averaged_iavg_ma=304870\n[ 1747.040939] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:314941, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1747.040951] FG: soc_monitor_work: soc:99, raw_soc:99, c:314941, s:2\n[ 1747.680590] raw: 0xf8\n[ 1747.680614] raw: 0xf8\n[ 1747.680621] ===raw_msoc:248\n[ 1752.418398] raw: 0xf8\n[ 1752.430442] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4372 Vbatt avg=4372 Vbatt res=972\n[ 1752.430466] raw: 0xf8\n[ 1752.430488] raw: 0xf8\n[ 1752.430495] ===raw_msoc:248\n[ 1752.430507] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 317382\n[ 1752.432269] raw: 0xf8\n[ 1752.432292] raw: 0xf8\n[ 1752.432299] ===raw_msoc:248\n[ 1752.433783] raw: 0xf8\n[ 1752.433807] raw: 0xf8\n[ 1752.433814] ===raw_msoc:248\n[ 1752.435829] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 245 FCC = 6000000uA FV = 4480000uV\n[ 1752.435841] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[ 1752.435868] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 245 max voltage= 4480000uv FV = 4480000uV\n[ 1752.436997] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 3e219651\n[ 1752.437054] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[ 1752.437480] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4372 Vbatt avg=4372 Vbatt res=972\n[ 1752.437504] raw: 0xf8\n[ 1752.437526] raw: 0xf8\n[ 1752.437533] ===raw_msoc:248\n[ 1752.437544] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 317382\n[ 1752.437555] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1757.280612] raw: 0xf8\n[ 1757.280636] raw: 0xf8\n[ 1757.280644] ===raw_msoc:248\n[ 1757.281040] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1757.281053] FG: calculate_average_current: current_now_ma=318847 averaged_iavg_ma=306091\n[ 1757.281071] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:318847, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1757.281082] FG: soc_monitor_work: soc:99, raw_soc:99, c:318847, s:2\n[ 1757.920486] raw: 0xf8\n[ 1757.920509] raw: 0xf8\n[ 1757.920517] ===raw_msoc:248\n[ 1761.051957]  7987     8.5 C/MHz    164 mW    5.1 J   48.7 I/mJ    31.3 s\n               1056: \n[ 1767.520471] raw: 0xf8\n[ 1767.520495] raw: 0xf8\n[ 1767.520502] ===raw_msoc:248\n[ 1767.520882] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1767.520895] FG: calculate_average_current: current_now_ma=283691 averaged_iavg_ma=306152\n[ 1767.520912] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:283691, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1767.520924] FG: soc_monitor_work: soc:99, raw_soc:99, c:283691, s:2\n[ 1768.160466] raw: 0xf8\n[ 1768.160489] raw: 0xf8\n[ 1768.160497] ===raw_msoc:248\n[ 1777.760496] raw: 0xf8\n[ 1777.760521] raw: 0xf8\n[ 1777.760528] ===raw_msoc:248\n[ 1777.760953] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1777.760966] FG: calculate_average_current: current_now_ma=323730 averaged_iavg_ma=307861\n[ 1777.760984] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:323730, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1777.760995] FG: soc_monitor_work: soc:99, raw_soc:99, c:323730, s:2\n[ 1778.400464] raw: 0xf8\n[ 1778.400487] raw: 0xf8\n[ 1778.400495] ===raw_msoc:248\n[ 1788.000492] raw: 0xf8\n[ 1788.000516] raw: 0xf8\n[ 1788.000524] ===raw_msoc:248\n[ 1788.001004] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1788.001017] FG: calculate_average_current: current_now_ma=320800 averaged_iavg_ma=308776\n[ 1788.001034] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:320800, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1788.001046] FG: soc_monitor_work: soc:99, raw_soc:99, c:320800, s:2\n[ 1788.640444] raw: 0xf8\n[ 1788.640468] raw: 0xf8\n[ 1788.640476] ===raw_msoc:248\n[ 1797.276586]  8954     8.5 C/MHz    185 mW    5.2 J   48.3 I/mJ    27.9 s\n               1171: \n[ 1798.240469] raw: 0xf8\n[ 1798.240493] raw: 0xf8\n[ 1798.240501] ===raw_msoc:248\n[ 1798.240882] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1798.240895] FG: calculate_average_current: current_now_ma=283691 averaged_iavg_ma=305541\n[ 1798.240913] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:283691, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1798.240924] FG: soc_monitor_work: soc:99, raw_soc:99, c:283691, s:2\n[ 1798.880441] raw: 0xf8\n[ 1798.880464] raw: 0xf8\n[ 1798.880472] ===raw_msoc:248\n[ 1808.480472] raw: 0xf8\n[ 1808.480496] raw: 0xf8\n[ 1808.480504] ===raw_msoc:248\n[ 1808.480901] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1808.480914] FG: calculate_average_current: current_now_ma=329589 averaged_iavg_ma=311584\n[ 1808.480931] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:329589, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1808.480943] FG: soc_monitor_work: soc:99, raw_soc:99, c:329589, s:2\n[ 1809.120464] raw: 0xf8\n[ 1809.120488] raw: 0xf8\n[ 1809.120495] ===raw_msoc:248\n[ 1818.720494] raw: 0xf8\n[ 1818.720518] raw: 0xf8\n[ 1818.720526] ===raw_msoc:248\n[ 1818.721050] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1818.721063] FG: calculate_average_current: current_now_ma=327636 averaged_iavg_ma=312866\n[ 1818.721080] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:327636, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1818.721092] FG: soc_monitor_work: soc:99, raw_soc:99, c:327636, s:2\n[ 1819.360465] raw: 0xf8\n[ 1819.360489] raw: 0xf8\n[ 1819.360497] ===raw_msoc:248\n[ 1828.960502] raw: 0xf8\n[ 1828.960525] raw: 0xf8\n[ 1828.960533] ===raw_msoc:248\n[ 1828.960939] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1828.960952] FG: calculate_average_current: current_now_ma=328613 averaged_iavg_ma=314575\n[ 1828.960970] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:328613, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1828.960981] FG: soc_monitor_work: soc:99, raw_soc:99, c:328613, s:2\n[ 1829.600444] raw: 0xf8\n[ 1829.600468] raw: 0xf8\n[ 1829.600476] ===raw_msoc:248\n[ 1831.493513]  9944     8.5 C/MHz    212 mW    5.3 J   46.9 I/mJ    25.2 s\n               1286: \n[ 1839.200473] raw: 0xf8\n[ 1839.200497] raw: 0xf8\n[ 1839.200505] ===raw_msoc:248\n[ 1839.200915] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1839.200928] FG: calculate_average_current: current_now_ma=281738 averaged_iavg_ma=309936\n[ 1839.200945] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:281738, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1839.200957] FG: soc_monitor_work: soc:99, raw_soc:99, c:281738, s:2\n[ 1839.840464] raw: 0xf8\n[ 1839.840488] raw: 0xf8\n[ 1839.840495] ===raw_msoc:248\n[ 1849.440531] raw: 0xf8\n[ 1849.440555] raw: 0xf8\n[ 1849.440562] ===raw_msoc:248\n[ 1849.441039] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1849.441052] FG: calculate_average_current: current_now_ma=331054 averaged_iavg_ma=315856\n[ 1849.441069] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:331054, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1849.441080] FG: soc_monitor_work: soc:99, raw_soc:99, c:331054, s:2\n[ 1850.080446] raw: 0xf8\n[ 1850.080470] raw: 0xf8\n[ 1850.080478] ===raw_msoc:248\n[ 1859.680472] raw: 0xf8\n[ 1859.680495] raw: 0xf8\n[ 1859.680503] ===raw_msoc:248\n[ 1859.680884] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1859.680897] FG: calculate_average_current: current_now_ma=335449 averaged_iavg_ma=317321\n[ 1859.680915] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:335449, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1859.680926] FG: soc_monitor_work: soc:99, raw_soc:99, c:335449, s:2\n[ 1860.320464] raw: 0xf8\n[ 1860.320488] raw: 0xf8\n[ 1860.320495] ===raw_msoc:248\n[ 1862.702567] 10926     8.5 C/MHz    235 mW    5.4 J   46.4 I/mJ    22.9 s\n               1382: \n[ 1869.920470] raw: 0xf8\n[ 1869.920494] raw: 0xf8\n[ 1869.920502] ===raw_msoc:248\n[ 1869.920902] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1869.920914] FG: calculate_average_current: current_now_ma=280761 averaged_iavg_ma=312316\n[ 1869.920932] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:280761, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1869.920944] FG: soc_monitor_work: soc:99, raw_soc:99, c:280761, s:2\n[ 1870.560463] raw: 0xf8\n[ 1870.560487] raw: 0xf8\n[ 1870.560495] ===raw_msoc:248\n[ 1880.160496] raw: 0xf8\n[ 1880.160520] raw: 0xf8\n[ 1880.160528] ===raw_msoc:248\n[ 1880.161050] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1880.161063] FG: calculate_average_current: current_now_ma=336913 averaged_iavg_ma=318969\n[ 1880.161080] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:336913, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1880.161092] FG: soc_monitor_work: soc:99, raw_soc:99, c:336913, s:2\n[ 1880.800444] raw: 0xf8\n[ 1880.800468] raw: 0xf8\n[ 1880.800476] ===raw_msoc:248\n[ 1890.400471] raw: 0xf7\n[ 1890.400494] raw: 0xf7\n[ 1890.400502] ===raw_msoc:247\n[ 1890.400883] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1890.400896] FG: calculate_average_current: current_now_ma=337402 averaged_iavg_ma=319946\n[ 1890.400914] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:337402, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1890.400925] FG: soc_monitor_work: soc:99, raw_soc:99, c:337402, s:2\n[ 1891.040489] raw: 0xf7\n[ 1891.040513] raw: 0xf7\n[ 1891.040520] ===raw_msoc:247\n[ 1892.906148] 11735     8.5 C/MHz    253 mW    5.4 J   46.4 I/mJ    21.3 s\n               1478: \n[ 1900.640470] raw: 0xf7\n[ 1900.640494] raw: 0xf7\n[ 1900.640502] ===raw_msoc:247\n[ 1900.640899] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1900.640911] FG: calculate_average_current: current_now_ma=284179 averaged_iavg_ma=314514\n[ 1900.640929] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:284179, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1900.640940] FG: soc_monitor_work: soc:99, raw_soc:99, c:284179, s:2\n[ 1901.280585] raw: 0xf7\n[ 1901.280609] raw: 0xf7\n[ 1901.280617] ===raw_msoc:247\n[ 1910.880611] raw: 0xf7\n[ 1910.880635] raw: 0xf7\n[ 1910.880642] ===raw_msoc:247\n[ 1910.881039] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1910.881053] FG: calculate_average_current: current_now_ma=344238 averaged_iavg_ma=316467\n[ 1910.881070] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:344238, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1910.881082] FG: soc_monitor_work: soc:99, raw_soc:99, c:344238, s:2\n[ 1911.520449] raw: 0xf7\n[ 1911.520473] raw: 0xf7\n[ 1911.520481] ===raw_msoc:247\n[ 1921.102944] 12531     8.5 C/MHz    277 mW    5.5 J   45.2 I/mJ    20.0 s\n               1574: \n[ 1921.120469] raw: 0xf7\n[ 1921.120492] raw: 0xf7\n[ 1921.120500] ===raw_msoc:247\n[ 1921.120880] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1921.120893] FG: calculate_average_current: current_now_ma=343261 averaged_iavg_ma=324157\n[ 1921.120911] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:343261, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1921.120922] FG: soc_monitor_work: soc:99, raw_soc:99, c:343261, s:2\n[ 1921.760461] raw: 0xf7\n[ 1921.760484] raw: 0xf7\n[ 1921.760492] ===raw_msoc:247\n[ 1931.360495] raw: 0xf7\n[ 1931.360519] raw: 0xf7\n[ 1931.360526] ===raw_msoc:247\n[ 1931.360943] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1931.360956] FG: calculate_average_current: current_now_ma=349120 averaged_iavg_ma=326415\n[ 1931.360974] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:349120, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1931.360985] FG: soc_monitor_work: soc:99, raw_soc:99, c:349120, s:2\n[ 1932.000465] raw: 0xf7\n[ 1932.000489] raw: 0xf7\n[ 1932.000497] ===raw_msoc:247\n[ 1941.600491] raw: 0xf7\n[ 1941.600515] raw: 0xf7\n[ 1941.600523] ===raw_msoc:247\n[ 1941.601045] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1941.601058] FG: calculate_average_current: current_now_ma=353027 averaged_iavg_ma=328613\n[ 1941.601075] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:353027, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1941.601087] FG: soc_monitor_work: soc:99, raw_soc:99, c:353027, s:2\n[ 1942.240445] raw: 0xf7\n[ 1942.240468] raw: 0xf7\n[ 1942.240476] ===raw_msoc:247\n[ 1948.296988] 13335     8.5 C/MHz    306 mW    5.7 J   43.6 I/mJ    18.8 s\n               1670: \n[ 1951.840492] raw: 0xf7\n[ 1951.840516] raw: 0xf7\n[ 1951.840524] ===raw_msoc:247\n[ 1951.840905] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1951.840918] FG: calculate_average_current: current_now_ma=280273 averaged_iavg_ma=328552\n[ 1951.840936] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:280273, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1951.840947] FG: soc_monitor_work: soc:99, raw_soc:99, c:280273, s:2\n[ 1952.480441] raw: 0xf7\n[ 1952.480465] raw: 0xf7\n[ 1952.480473] ===raw_msoc:247\n[ 1962.080474] raw: 0xf7\n[ 1962.080498] raw: 0xf7\n[ 1962.080506] ===raw_msoc:247\n[ 1962.080909] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1962.080922] FG: calculate_average_current: current_now_ma=356933 averaged_iavg_ma=331054\n[ 1962.080939] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:356933, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1962.080951] FG: soc_monitor_work: soc:99, raw_soc:99, c:356933, s:2\n[ 1962.720464] raw: 0xf7\n[ 1962.720488] raw: 0xf7\n[ 1962.720496] ===raw_msoc:247\n[ 1972.320494] raw: 0xf7\n[ 1972.320518] raw: 0xf7\n[ 1972.320526] ===raw_msoc:247\n[ 1972.320924] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1972.320937] FG: calculate_average_current: current_now_ma=359374 averaged_iavg_ma=333801\n[ 1972.320954] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:359374, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1972.320965] FG: soc_monitor_work: soc:99, raw_soc:99, c:359374, s:2\n[ 1972.960464] raw: 0xf7\n[ 1972.960488] raw: 0xf7\n[ 1972.960496] ===raw_msoc:247\n[ 1974.486666] 14169     8.5 C/MHz    335 mW    5.9 J   42.2 I/mJ    17.7 s\n               1766: \n[ 1982.560533] raw: 0xf7\n[ 1982.560556] raw: 0xf7\n[ 1982.560564] ===raw_msoc:247\n[ 1982.560970] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1982.560983] FG: calculate_average_current: current_now_ma=284179 averaged_iavg_ma=333801\n[ 1982.561001] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:284179, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1982.561012] FG: soc_monitor_work: soc:99, raw_soc:99, c:284179, s:2\n[ 1983.200444] raw: 0xf7\n[ 1983.200467] raw: 0xf7\n[ 1983.200475] ===raw_msoc:247\n[ 1992.800471] raw: 0xf7\n[ 1992.800494] raw: 0xf7\n[ 1992.800502] ===raw_msoc:247\n[ 1992.800900] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1992.800913] FG: calculate_average_current: current_now_ma=368652 averaged_iavg_ma=336852\n[ 1992.800931] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:368652, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1992.800942] FG: soc_monitor_work: soc:99, raw_soc:99, c:368652, s:2\n[ 1993.440636] raw: 0xf7\n[ 1993.440659] raw: 0xf7\n[ 1993.440667] ===raw_msoc:247\n[ 1999.673451] 14969     8.5 C/MHz    353 mW    5.9 J   42.3 I/mJ    16.7 s\n               1862: \n[ 2003.040494] raw: 0xf7\n[ 2003.040518] raw: 0xf7\n[ 2003.040525] ===raw_msoc:247\n[ 2003.041046] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2003.041059] FG: calculate_average_current: current_now_ma=283691 averaged_iavg_ma=329406\n[ 2003.041076] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:283691, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2003.041088] FG: soc_monitor_work: soc:99, raw_soc:99, c:283691, s:2\n[ 2003.680450] raw: 0xf7\n[ 2003.680473] raw: 0xf7\n[ 2003.680481] ===raw_msoc:247\n[ 2013.280473] raw: 0xf7\n[ 2013.280497] raw: 0xf7\n[ 2013.280505] ===raw_msoc:247\n[ 2013.280886] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2013.280899] FG: calculate_average_current: current_now_ma=382812 averaged_iavg_ma=333618\n[ 2013.280917] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:382812, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2013.280928] FG: soc_monitor_work: soc:99, raw_soc:99, c:382812, s:2\n[ 2013.920443] raw: 0xf7\n[ 2013.920468] raw: 0xf7\n[ 2013.920475] ===raw_msoc:247\n[ 2023.520473] raw: 0xf7\n[ 2023.520496] raw: 0xf7\n[ 2023.520504] ===raw_msoc:247\n[ 2023.520900] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2023.520913] FG: calculate_average_current: current_now_ma=384277 averaged_iavg_ma=337524\n[ 2023.520930] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:384277, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2023.520942] FG: soc_monitor_work: soc:99, raw_soc:99, c:384277, s:2\n[ 2023.858127] 15800     8.5 C/MHz    444 mW    7.0 J   35.6 I/mJ    15.8 s\n               1958: \n[ 2024.160506] raw: 0xf7\n[ 2024.160530] raw: 0xf7\n[ 2024.160538] ===raw_msoc:247\n[ 2024.540304] raw: 0xf7\n[ 2024.542014] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4369 Vbatt avg=4363 Vbatt res=963\n[ 2024.542039] raw: 0xf7\n[ 2024.542061] raw: 0xf7\n[ 2024.542068] ===raw_msoc:247\n[ 2024.542080] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 282226\n[ 2024.543769] raw: 0xf7\n[ 2024.543793] raw: 0xf7\n[ 2024.543800] ===raw_msoc:247\n[ 2024.547451] raw: 0xf7\n[ 2024.547475] raw: 0xf7\n[ 2024.547482] ===raw_msoc:247\n[ 2024.547643] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 247 FCC = 6000000uA FV = 4480000uV\n[ 2024.547654] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[ 2024.547678] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 247 max voltage= 4480000uv FV = 4480000uV\n[ 2024.548822] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 3dd2f1a8\n[ 2024.548881] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[ 2024.549308] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4369 Vbatt avg=4363 Vbatt res=963\n[ 2024.549332] raw: 0xf7\n[ 2024.549354] raw: 0xf7\n[ 2024.549361] ===raw_msoc:247\n[ 2024.549372] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 282226\n[ 2024.549384] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 2033.760498] raw: 0xf7\n[ 2033.760522] raw: 0xf7\n[ 2033.760530] ===raw_msoc:247\n[ 2033.761034] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2033.761048] FG: calculate_average_current: current_now_ma=383788 averaged_iavg_ma=350463\n[ 2033.761065] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:383788, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2033.761077] FG: soc_monitor_work: soc:99, raw_soc:99, c:383788, s:2\n[ 2034.400446] raw: 0xf7\n[ 2034.400469] raw: 0xf7\n[ 2034.400477] ===raw_msoc:247\n[ 2044.000472] raw: 0xf7\n[ 2044.000495] raw: 0xf7\n[ 2044.000503] ===raw_msoc:247\n[ 2044.000885] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2044.000897] FG: calculate_average_current: current_now_ma=387206 averaged_iavg_ma=354247\n[ 2044.000915] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:387206, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2044.000926] FG: soc_monitor_work: soc:99, raw_soc:99, c:387206, s:2\n[ 2044.640445] raw: 0xf7\n[ 2044.640469] raw: 0xf7\n[ 2044.640477] ===raw_msoc:247\n[ 2047.039576] 16630     8.5 C/MHz    463 mW    7.0 J   35.9 I/mJ    15.0 s\n               2054: \n[ 2054.240473] raw: 0xf7\n[ 2054.240497] raw: 0xf7\n[ 2054.240505] ===raw_msoc:247\n[ 2054.240916] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2054.240929] FG: calculate_average_current: current_now_ma=283691 averaged_iavg_ma=344787\n[ 2054.240946] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:283691, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2054.240958] FG: soc_monitor_work: soc:99, raw_soc:99, c:283691, s:2\n[ 2054.880582] raw: 0xf7\n[ 2054.880606] raw: 0xf7\n[ 2054.880613] ===raw_msoc:247\n[ 2064.480613] raw: 0xf7\n[ 2064.480637] raw: 0xf7\n[ 2064.480645] ===raw_msoc:247\n[ 2064.481040] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2064.481053] FG: calculate_average_current: current_now_ma=391113 averaged_iavg_ma=358154\n[ 2064.481071] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:391113, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2064.481082] FG: soc_monitor_work: soc:99, raw_soc:99, c:391113, s:2\n[ 2065.120444] raw: 0xf7\n[ 2065.120468] raw: 0xf7\n[ 2065.120477] ===raw_msoc:247\n[ 2070.221122] 17428     8.5 C/MHz    480 mW    6.9 J   36.3 I/mJ    14.4 s\n               2150: \n[ 2074.720470] raw: 0xf7\n[ 2074.720494] raw: 0xf7\n[ 2074.720502] ===raw_msoc:247\n[ 2074.720882] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2074.720894] FG: calculate_average_current: current_now_ma=284667 averaged_iavg_ma=347656\n[ 2074.720912] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:284667, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2074.720923] FG: soc_monitor_work: soc:99, raw_soc:99, c:284667, s:2\n[ 2075.360491] raw: 0xf7\n[ 2075.360515] raw: 0xf7\n[ 2075.360522] ===raw_msoc:247\n[ 2084.960562] raw: 0xf7\n[ 2084.960585] raw: 0xf7\n[ 2084.960593] ===raw_msoc:247\n[ 2084.960987] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2084.961000] FG: calculate_average_current: current_now_ma=402343 averaged_iavg_ma=362487\n[ 2084.961017] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:402343, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2084.961029] FG: soc_monitor_work: soc:99, raw_soc:99, c:402343, s:2\n[ 2085.600464] raw: 0xf7\n[ 2085.600488] raw: 0xf7\n[ 2085.600496] ===raw_msoc:247\n[ 2092.398657] 18238     8.5 C/MHz    496 mW    6.8 J   36.8 I/mJ    13.7 s\n               2246: \n[ 2095.200491] raw: 0xf6\n[ 2095.200515] raw: 0xf6\n[ 2095.200523] ===raw_msoc:246\n[ 2095.201004] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2095.201017] FG: calculate_average_current: current_now_ma=280273 averaged_iavg_ma=349670\n[ 2095.201035] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:280273, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2095.201046] FG: soc_monitor_work: soc:99, raw_soc:99, c:280273, s:2\n[ 2095.840443] raw: 0xf6\n[ 2095.840466] raw: 0xf6\n[ 2095.840474] ===raw_msoc:246\n[ 2105.440473] raw: 0xf6\n[ 2105.440497] raw: 0xf6\n[ 2105.440505] ===raw_msoc:246\n[ 2105.440886] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2105.440899] FG: calculate_average_current: current_now_ma=409667 averaged_iavg_ma=352844\n[ 2105.440916] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:409667, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2105.440928] FG: soc_monitor_work: soc:99, raw_soc:99, c:409667, s:2\n[ 2106.080450] raw: 0xf6\n[ 2106.080474] raw: 0xf6\n[ 2106.080482] ===raw_msoc:246\n[ 2114.577257] 19053     8.5 C/MHz    578 mW    7.6 J   32.9 I/mJ    13.1 s\n               2342: \n[ 2115.680514] raw: 0xf6\n[ 2115.680538] raw: 0xf6\n[ 2115.680545] ===raw_msoc:246\n[ 2115.680943] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2115.680956] FG: calculate_average_current: current_now_ma=283691 averaged_iavg_ma=340331\n[ 2115.680974] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:283691, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2115.680985] FG: soc_monitor_work: soc:99, raw_soc:99, c:283691, s:2\n[ 2116.320462] raw: 0xf6\n[ 2116.320486] raw: 0xf6\n[ 2116.320493] ===raw_msoc:246\n[ 2125.920493] raw: 0xf6\n[ 2125.920517] raw: 0xf6\n[ 2125.920525] ===raw_msoc:246\n[ 2125.921003] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2125.921016] FG: calculate_average_current: current_now_ma=422851 averaged_iavg_ma=344787\n[ 2125.921033] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:422851, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2125.921045] FG: soc_monitor_work: soc:99, raw_soc:99, c:422851, s:2\n[ 2126.560470] raw: 0xf6\n[ 2126.560494] raw: 0xf6\n[ 2126.560502] ===raw_msoc:246\n[ 2135.750494] 19873     8.5 C/MHz    625 mW    7.9 J   31.8 I/mJ    12.6 s\n               2419: \n[ 2136.160493] raw: 0xf6\n[ 2136.160516] raw: 0xf6\n[ 2136.160524] ===raw_msoc:246\n[ 2136.160932] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2136.160945] FG: calculate_average_current: current_now_ma=427245 averaged_iavg_ma=362731\n[ 2136.160962] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:427245, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2136.160974] FG: soc_monitor_work: soc:99, raw_soc:99, c:427245, s:2\n[ 2136.800441] raw: 0xf6\n[ 2136.800465] raw: 0xf6\n[ 2136.800473] ===raw_msoc:246\n[ 2146.400472] raw: 0xf6\n[ 2146.400496] raw: 0xf6\n[ 2146.400504] ===raw_msoc:246\n[ 2146.400902] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2146.400915] FG: calculate_average_current: current_now_ma=434081 averaged_iavg_ma=368102\n[ 2146.400933] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:434081, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2146.400944] FG: soc_monitor_work: soc:99, raw_soc:99, c:434081, s:2\n[ 2147.040468] raw: 0xf6\n[ 2147.040491] raw: 0xf6\n[ 2147.040499] ===raw_msoc:246\n[ 2156.640490] raw: 0xf6\n[ 2156.640513] raw: 0xf6\n[ 2156.640521] ===raw_msoc:246\n[ 2156.641042] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2156.641055] FG: calculate_average_current: current_now_ma=399902 averaged_iavg_ma=382507\n[ 2156.641072] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:399902, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2156.641084] FG: soc_monitor_work: soc:99, raw_soc:99, c:399902, s:2\n[ 2156.930956] CPU4: shutdown\n[ 2156.931063] psci: CPU4 killed.\n[ 2156.934255] Detected PIPT I-cache on CPU7\n[ 2156.934280] arch_timer: CPU7: Trapping CNTVCT access\n[ 2156.934284] CPU7: Booted secondary processor 0x0000000700 [0x411fd0d0]\n[ 2157.280489] raw: 0xf6\n[ 2157.280514] raw: 0xf6\n[ 2157.280522] ===raw_msoc:246\n[ 2157.942362] 20522     8.5 C/MHz    675 mW    8.2 J   30.4 I/mJ    12.2 s\n               \n               \n               ===== CPU 7 =====\n               Frequencies: 844 960 1075 1190 1305 1401 1516 1632 1747 1862 1977 2073 2169 2265 2361 2457 2553 2649 2745 2841\n               \n                844: \n[ 2166.880480] raw: 0xf6\n[ 2166.880504] raw: 0xf6\n[ 2166.880512] ===raw_msoc:246\n[ 2166.880895] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2166.880908] FG: calculate_average_current: current_now_ma=285644 averaged_iavg_ma=367919\n[ 2166.880925] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:285644, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2166.880937] FG: soc_monitor_work: soc:99, raw_soc:99, c:285644, s:2\n[ 2167.520449] raw: 0xf6\n[ 2167.520472] raw: 0xf6\n[ 2167.520481] ===raw_msoc:246\n[ 2177.120494] raw: 0xf6\n[ 2177.120518] raw: 0xf6\n[ 2177.120526] ===raw_msoc:246\n[ 2177.120997] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2177.121010] FG: calculate_average_current: current_now_ma=317870 averaged_iavg_ma=372619\n[ 2177.121027] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:317870, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2177.121039] FG: soc_monitor_work: soc:99, raw_soc:99, c:317870, s:2\n[ 2177.760472] raw: 0xf6\n[ 2177.760496] raw: 0xf6\n[ 2177.760504] ===raw_msoc:246\n[ 2187.360499] raw: 0xf6\n[ 2187.360523] raw: 0xf6\n[ 2187.360531] ===raw_msoc:246\n[ 2187.361107] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2187.361120] FG: calculate_average_current: current_now_ma=314452 averaged_iavg_ma=360717\n[ 2187.361137] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:314452, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2187.361149] FG: soc_monitor_work: soc:99, raw_soc:99, c:314452, s:2\n[ 2188.000445] raw: 0xf6\n[ 2188.000469] raw: 0xf6\n[ 2188.000477] ===raw_msoc:246\n[ 2197.600478] raw: 0xf6\n[ 2197.600501] raw: 0xf6\n[ 2197.600509] ===raw_msoc:246\n[ 2197.600892] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2197.600905] FG: calculate_average_current: current_now_ma=313964 averaged_iavg_ma=364501\n[ 2197.600922] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:313964, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2197.600934] FG: soc_monitor_work: soc:99, raw_soc:99, c:313964, s:2\n[ 2198.240446] raw: 0xf6\n[ 2198.240470] raw: 0xf6\n[ 2198.240478] ===raw_msoc:246\n[ 2201.187739]  7172     8.5 C/MHz    155 mW    5.4 J   46.4 I/mJ    34.9 s\n                960: \n[ 2207.840471] raw: 0xf6\n[ 2207.840495] raw: 0xf6\n[ 2207.840502] ===raw_msoc:246\n[ 2207.840900] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2207.840913] FG: calculate_average_current: current_now_ma=283691 averaged_iavg_ma=347106\n[ 2207.840930] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:283691, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2207.840942] FG: soc_monitor_work: soc:99, raw_soc:99, c:283691, s:2\n[ 2208.480464] raw: 0xf6\n[ 2208.480487] raw: 0xf6\n[ 2208.480495] ===raw_msoc:246\n[ 2218.080617] raw: 0xf6\n[ 2218.080641] raw: 0xf6\n[ 2218.080648] ===raw_msoc:246\n[ 2218.081049] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2218.081062] FG: calculate_average_current: current_now_ma=319824 averaged_iavg_ma=333679\n[ 2218.081080] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:319824, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2218.081091] FG: soc_monitor_work: soc:99, raw_soc:99, c:319824, s:2\n[ 2218.720445] raw: 0xf6\n[ 2218.720469] raw: 0xf6\n[ 2218.720477] ===raw_msoc:246\n[ 2228.320473] raw: 0xf6\n[ 2228.320497] raw: 0xf6\n[ 2228.320505] ===raw_msoc:246\n[ 2228.320886] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2228.320899] FG: calculate_average_current: current_now_ma=318847 averaged_iavg_ma=319274\n[ 2228.320916] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:318847, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2228.320928] FG: soc_monitor_work: soc:99, raw_soc:99, c:318847, s:2\n[ 2228.960496] raw: 0xf6\n[ 2228.960520] raw: 0xf6\n[ 2228.960528] ===raw_msoc:246\n[ 2238.560496] raw: 0xf6\n[ 2238.560519] raw: 0xf6\n[ 2238.560527] ===raw_msoc:246\n[ 2238.560950] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2238.560963] FG: calculate_average_current: current_now_ma=319824 averaged_iavg_ma=309265\n[ 2238.560981] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:319824, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2238.560992] FG: soc_monitor_work: soc:99, raw_soc:99, c:319824, s:2\n[ 2239.200589] raw: 0xf6\n[ 2239.200613] raw: 0xf6\n[ 2239.200621] ===raw_msoc:246\n[ 2240.421801]  8148     8.5 C/MHz    172 mW    5.3 J   47.4 I/mJ    30.7 s\n               1075: \n[ 2248.800537] raw: 0xf6\n[ 2248.800561] raw: 0xf6\n[ 2248.800569] ===raw_msoc:246\n[ 2248.801085] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2248.801099] FG: calculate_average_current: current_now_ma=323242 averaged_iavg_ma=313964\n[ 2248.801116] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:323242, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2248.801128] FG: soc_monitor_work: soc:99, raw_soc:99, c:323242, s:2\n[ 2249.440446] raw: 0xf6\n[ 2249.440470] raw: 0xf6\n[ 2249.440478] ===raw_msoc:246\n[ 2259.040475] raw: 0xf6\n[ 2259.040499] raw: 0xf6\n[ 2259.040507] ===raw_msoc:246\n[ 2259.040894] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2259.040907] FG: calculate_average_current: current_now_ma=325683 averaged_iavg_ma=314941\n[ 2259.040924] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:325683, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2259.040936] FG: soc_monitor_work: soc:99, raw_soc:99, c:325683, s:2\n[ 2259.680454] raw: 0xf6\n[ 2259.680477] raw: 0xf6\n[ 2259.680485] ===raw_msoc:246\n[ 2269.280493] raw: 0xf6\n[ 2269.280517] raw: 0xf6\n[ 2269.280525] ===raw_msoc:246\n[ 2269.280956] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2269.280969] FG: calculate_average_current: current_now_ma=325195 averaged_iavg_ma=316284\n[ 2269.280987] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:325195, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2269.280998] FG: soc_monitor_work: soc:99, raw_soc:99, c:325195, s:2\n[ 2269.920465] raw: 0xf6\n[ 2269.920489] raw: 0xf6\n[ 2269.920497] ===raw_msoc:246\n[ 2276.645469]  9116     8.5 C/MHz    197 mW    5.4 J   46.2 I/mJ    27.4 s\n               1190: \n[ 2279.520492] raw: 0xf6\n[ 2279.520516] raw: 0xf6\n[ 2279.520524] ===raw_msoc:246\n[ 2279.521004] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2279.521017] FG: calculate_average_current: current_now_ma=283202 averaged_iavg_ma=312439\n[ 2279.521034] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:283202, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2279.521046] FG: soc_monitor_work: soc:99, raw_soc:99, c:283202, s:2\n[ 2280.160465] raw: 0xf6\n[ 2280.160489] raw: 0xf6\n[ 2280.160497] ===raw_msoc:246\n[ 2289.662496] raw: 0xf6\n[ 2289.674231] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4361 Vbatt avg=4362 Vbatt res=962\n[ 2289.674255] raw: 0xf6\n[ 2289.674277] raw: 0xf6\n[ 2289.674284] ===raw_msoc:246\n[ 2289.674296] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 331054\n[ 2289.675986] raw: 0xf6\n[ 2289.676009] raw: 0xf6\n[ 2289.676017] ===raw_msoc:246\n[ 2289.677500] raw: 0xf6\n[ 2289.677524] raw: 0xf6\n[ 2289.677532] ===raw_msoc:246\n[ 2289.679392] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 247 FCC = 6000000uA FV = 4480000uV\n[ 2289.679404] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[ 2289.679429] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 247 max voltage= 4480000uv FV = 4480000uV\n[ 2289.680802] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 3d844d00\n[ 2289.680860] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[ 2289.681291] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4361 Vbatt avg=4362 Vbatt res=962\n[ 2289.681315] raw: 0xf6\n[ 2289.681336] raw: 0xf6\n[ 2289.681343] ===raw_msoc:246\n[ 2289.681354] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 331054\n[ 2289.681366] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 2289.760497] raw: 0xf6\n[ 2289.760521] raw: 0xf6\n[ 2289.760529] ===raw_msoc:246\n[ 2289.760915] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2289.760928] FG: calculate_average_current: current_now_ma=331054 averaged_iavg_ma=318359\n[ 2289.760945] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:331054, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2289.760957] FG: soc_monitor_work: soc:99, raw_soc:99, c:331054, s:2\n[ 2290.400489] raw: 0xf6\n[ 2290.400513] raw: 0xf6\n[ 2290.400521] ===raw_msoc:246\n[ 2300.000474] raw: 0xf6\n[ 2300.000498] raw: 0xf6\n[ 2300.000506] ===raw_msoc:246\n[ 2300.000902] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2300.000915] FG: calculate_average_current: current_now_ma=329101 averaged_iavg_ma=319519\n[ 2300.000933] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:329101, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2300.000944] FG: soc_monitor_work: soc:99, raw_soc:99, c:329101, s:2\n[ 2300.640590] raw: 0xf6\n[ 2300.640614] raw: 0xf6\n[ 2300.640622] ===raw_msoc:246\n[ 2309.859642] 10105     8.5 C/MHz    220 mW    5.4 J   46.0 I/mJ    24.8 s\n               1305: \n[ 2310.240492] raw: 0xf5\n[ 2310.240516] raw: 0xf5\n[ 2310.240524] ===raw_msoc:245\n[ 2310.241005] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2310.241018] FG: calculate_average_current: current_now_ma=306640 averaged_iavg_ma=317993\n[ 2310.241035] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:306640, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2310.241047] FG: soc_monitor_work: soc:99, raw_soc:99, c:306640, s:2\n[ 2310.880490] raw: 0xf5\n[ 2310.880513] raw: 0xf5\n[ 2310.880521] ===raw_msoc:245\n[ 2320.480477] raw: 0xf5\n[ 2320.480501] raw: 0xf5\n[ 2320.480509] ===raw_msoc:245\n[ 2320.480889] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2320.480902] FG: calculate_average_current: current_now_ma=334472 averaged_iavg_ma=319824\n[ 2320.480919] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:334472, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2320.480930] FG: soc_monitor_work: soc:99, raw_soc:99, c:334472, s:2\n[ 2321.120447] raw: 0xf5\n[ 2321.120471] raw: 0xf5\n[ 2321.120479] ===raw_msoc:245\n[ 2330.720474] raw: 0xf5\n[ 2330.720498] raw: 0xf5\n[ 2330.720506] ===raw_msoc:245\n[ 2330.720902] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2330.720915] FG: calculate_average_current: current_now_ma=339355 averaged_iavg_ma=321838\n[ 2330.720932] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:339355, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2330.720944] FG: soc_monitor_work: soc:99, raw_soc:99, c:339355, s:2\n[ 2331.360471] raw: 0xf5\n[ 2331.360495] raw: 0xf5\n[ 2331.360503] ===raw_msoc:245\n[ 2340.960497] raw: 0xf5\n[ 2340.960521] raw: 0xf5\n[ 2340.960529] ===raw_msoc:245\n[ 2340.961055] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2340.961068] FG: calculate_average_current: current_now_ma=336913 averaged_iavg_ma=323242\n[ 2340.961085] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:336913, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2340.961097] FG: soc_monitor_work: soc:99, raw_soc:99, c:336913, s:2\n[ 2341.067081] 11084     8.5 C/MHz    242 mW    5.5 J   45.8 I/mJ    22.6 s\n               1401: \n[ 2341.600445] raw: 0xf5\n[ 2341.600469] raw: 0xf5\n[ 2341.600477] ===raw_msoc:245\n[ 2351.200841] raw: 0xf5\n[ 2351.200865] raw: 0xf5\n[ 2351.200873] ===raw_msoc:245\n[ 2351.202277] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2351.202291] FG: calculate_average_current: current_now_ma=341796 averaged_iavg_ma=325317\n[ 2351.202308] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:341796, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2351.202320] FG: soc_monitor_work: soc:99, raw_soc:99, c:341796, s:2\n[ 2351.840447] raw: 0xf5\n[ 2351.840470] raw: 0xf5\n[ 2351.840478] ===raw_msoc:245\n[ 2361.440477] raw: 0xf5\n[ 2361.440501] raw: 0xf5\n[ 2361.440510] ===raw_msoc:245\n[ 2361.440906] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2361.440919] FG: calculate_average_current: current_now_ma=338378 averaged_iavg_ma=332214\n[ 2361.440936] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:338378, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2361.440947] FG: soc_monitor_work: soc:99, raw_soc:99, c:338378, s:2\n[ 2362.080468] raw: 0xf5\n[ 2362.080492] raw: 0xf5\n[ 2362.080499] ===raw_msoc:245\n[ 2370.266503] 11888     8.5 C/MHz    262 mW    5.5 J   45.4 I/mJ    21.0 s\n               1516: \n[ 2371.680614] raw: 0xf5\n[ 2371.680638] raw: 0xf5\n[ 2371.680646] ===raw_msoc:245\n[ 2371.681044] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2371.681057] FG: calculate_average_current: current_now_ma=282226 averaged_iavg_ma=326110\n[ 2371.681075] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:282226, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2371.681086] FG: soc_monitor_work: soc:99, raw_soc:99, c:282226, s:2\n[ 2372.320444] raw: 0xf5\n[ 2372.320468] raw: 0xf5\n[ 2372.320476] ===raw_msoc:245\n[ 2381.920520] raw: 0xf5\n[ 2381.920544] raw: 0xf5\n[ 2381.920552] ===raw_msoc:245\n[ 2381.920942] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2381.920955] FG: calculate_average_current: current_now_ma=347167 averaged_iavg_ma=328368\n[ 2381.920972] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:347167, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2381.920984] FG: soc_monitor_work: soc:99, raw_soc:99, c:347167, s:2\n[ 2382.560468] raw: 0xf5\n[ 2382.560492] raw: 0xf5\n[ 2382.560500] ===raw_msoc:245\n[ 2392.160525] raw: 0xf5\n[ 2392.160548] raw: 0xf5\n[ 2392.160556] ===raw_msoc:245\n[ 2392.160953] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2392.160966] FG: calculate_average_current: current_now_ma=347167 averaged_iavg_ma=328368\n[ 2392.160983] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:347167, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2392.160994] FG: soc_monitor_work: soc:99, raw_soc:99, c:347167, s:2\n[ 2392.800465] raw: 0xf5\n[ 2392.800488] raw: 0xf5\n[ 2392.800496] ===raw_msoc:245\n[ 2398.462843] 12859     8.5 C/MHz    297 mW    5.8 J   43.2 I/mJ    19.5 s\n               1632: \n[ 2402.400640] raw: 0xf5\n[ 2402.400664] raw: 0xf5\n[ 2402.400672] ===raw_msoc:245\n[ 2402.401064] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2402.401077] FG: calculate_average_current: current_now_ma=281249 averaged_iavg_ma=325195\n[ 2402.401095] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:281249, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2402.401107] FG: soc_monitor_work: soc:99, raw_soc:99, c:281249, s:2\n[ 2403.040447] raw: 0xf5\n[ 2403.040471] raw: 0xf5\n[ 2403.040479] ===raw_msoc:245\n[ 2412.640474] raw: 0xf5\n[ 2412.640498] raw: 0xf5\n[ 2412.640505] ===raw_msoc:245\n[ 2412.640883] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2412.640896] FG: calculate_average_current: current_now_ma=358886 averaged_iavg_ma=328246\n[ 2412.640914] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:358886, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2412.640925] FG: soc_monitor_work: soc:99, raw_soc:99, c:358886, s:2\n[ 2413.280447] raw: 0xf5\n[ 2413.280471] raw: 0xf5\n[ 2413.280479] ===raw_msoc:245\n[ 2422.880475] raw: 0xf5\n[ 2422.880499] raw: 0xf5\n[ 2422.880507] ===raw_msoc:245\n[ 2422.880903] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2422.880916] FG: calculate_average_current: current_now_ma=358886 averaged_iavg_ma=328246\n[ 2422.880934] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:358886, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2422.880945] FG: soc_monitor_work: soc:99, raw_soc:99, c:358886, s:2\n[ 2423.520625] raw: 0xf5\n[ 2423.520649] raw: 0xf5\n[ 2423.520657] ===raw_msoc:245\n[ 2425.656170] 13840     8.5 C/MHz    335 mW    6.1 J   41.3 I/mJ    18.1 s\n               1747: \n[ 2433.120491] raw: 0xf5\n[ 2433.120515] raw: 0xf5\n[ 2433.120523] ===raw_msoc:245\n[ 2433.121002] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2433.121015] FG: calculate_average_current: current_now_ma=283691 averaged_iavg_ma=321288\n[ 2433.121032] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:283691, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2433.121043] FG: soc_monitor_work: soc:99, raw_soc:99, c:283691, s:2\n[ 2433.760465] raw: 0xf5\n[ 2433.760489] raw: 0xf5\n[ 2433.760497] ===raw_msoc:245\n[ 2443.360497] raw: 0xf5\n[ 2443.360520] raw: 0xf5\n[ 2443.360528] ===raw_msoc:245\n[ 2443.360933] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2443.360946] FG: calculate_average_current: current_now_ma=366699 averaged_iavg_ma=325012\n[ 2443.360964] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:366699, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2443.360975] FG: soc_monitor_work: soc:99, raw_soc:99, c:366699, s:2\n[ 2444.000467] raw: 0xf5\n[ 2444.000490] raw: 0xf5\n[ 2444.000498] ===raw_msoc:245\n[ 2450.843644] 14827     8.5 C/MHz    369 mW    6.2 J   40.1 I/mJ    16.9 s\n               1862: \n[ 2453.600473] raw: 0xf5\n[ 2453.600497] raw: 0xf5\n[ 2453.600505] ===raw_msoc:245\n[ 2453.600904] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2453.600917] FG: calculate_average_current: current_now_ma=281249 averaged_iavg_ma=317443\n[ 2453.600935] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:281249, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2453.600946] FG: soc_monitor_work: soc:99, raw_soc:99, c:281249, s:2\n[ 2454.240466] raw: 0xf5\n[ 2454.240490] raw: 0xf5\n[ 2454.240498] ===raw_msoc:245\n[ 2463.840494] raw: 0xf5\n[ 2463.840518] raw: 0xf5\n[ 2463.840525] ===raw_msoc:245\n[ 2463.841002] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2463.841015] FG: calculate_average_current: current_now_ma=373534 averaged_iavg_ma=321838\n[ 2463.841032] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:373534, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2463.841044] FG: soc_monitor_work: soc:99, raw_soc:99, c:373534, s:2\n[ 2464.480448] raw: 0xf5\n[ 2464.480471] raw: 0xf5\n[ 2464.480479] ===raw_msoc:245\n[ 2470.881248] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 03 78 04 02 03 07 a0 fd 30 00 a3 02 0b 0a 00 00 55 \n[ 2470.881567] smb:01:1200 00 ff ff fe 00 3d 3d 00 00 00 00 00 00 00 00 01 06 00 01 00 \n[ 2470.882389] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 00 00 40 00 00 a3 00 00 00 00 07 00 18 38 11 b0 03 00 00 7f 00 00 00 00 00 00 02 54 00 00 00 00 \n[ 2470.883502] smb:01:1500 00 00 00 01 c2 00 00 04 ff 00 00 ff ff 4a 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 2470.884325] smb:01:1600 03 03 00 00 0f 02 01 04 00 00 00 5b 5b 00 00 00 00 00 42 00 f3 00 00 00 00 00 00 00 00 00 00 00 00 0c 01 00 80 00 00 00 00 00 00 20 b8 4c cc 18 02 00 03 32 04 \n[ 2470.884355] pm8150b_charger: smblib_reg_work: AWAKE vote value is 0 voted by CHG_AWAKE_VOTER\n[ 2474.080478] raw: 0xf5\n[ 2474.080501] raw: 0xf5\n[ 2474.080509] ===raw_msoc:245\n[ 2474.080894] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2474.080907] FG: calculate_average_current: current_now_ma=372558 averaged_iavg_ma=333129\n[ 2474.080925] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:372558, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2474.080936] FG: soc_monitor_work: soc:99, raw_soc:99, c:372558, s:2\n[ 2474.720447] raw: 0xf5\n[ 2474.720471] raw: 0xf5\n[ 2474.720479] ===raw_msoc:245\n[ 2475.028696] 15800     8.5 C/MHz    395 mW    6.3 J   40.0 I/mJ    15.8 s\n               1977: \n[ 2484.320477] raw: 0xf5\n[ 2484.320501] raw: 0xf5\n[ 2484.320509] ===raw_msoc:245\n[ 2484.320906] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2484.320919] FG: calculate_average_current: current_now_ma=382324 averaged_iavg_ma=337524\n[ 2484.320936] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:382324, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2484.320948] FG: soc_monitor_work: soc:99, raw_soc:99, c:382324, s:2\n[ 2484.960471] raw: 0xf5\n[ 2484.960495] raw: 0xf5\n[ 2484.960503] ===raw_msoc:245\n[ 2494.560499] raw: 0xf5\n[ 2494.560523] raw: 0xf5\n[ 2494.560531] ===raw_msoc:245\n[ 2494.561051] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2494.561064] FG: calculate_average_current: current_now_ma=381835 averaged_iavg_ma=350097\n[ 2494.561081] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:381835, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2494.561093] FG: soc_monitor_work: soc:99, raw_soc:99, c:381835, s:2\n[ 2495.200285] raw: 0xf5\n[ 2495.200309] raw: 0xf5\n[ 2495.200317] ===raw_msoc:245\n[ 2498.209764] 16786     8.5 C/MHz    443 mW    6.6 J   37.9 I/mJ    14.9 s\n               2073: \n[ 2504.800471] raw: 0xf5\n[ 2504.800495] raw: 0xf5\n[ 2504.800503] ===raw_msoc:245\n[ 2504.800883] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2504.800896] FG: calculate_average_current: current_now_ma=282226 averaged_iavg_ma=340515\n[ 2504.800913] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:282226, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2504.800925] FG: soc_monitor_work: soc:99, raw_soc:99, c:282226, s:2\n[ 2505.440441] raw: 0xf5\n[ 2505.440465] raw: 0xf5\n[ 2505.440473] ===raw_msoc:245\n[ 2515.040521] raw: 0xf4\n[ 2515.040545] raw: 0xf4\n[ 2515.040552] ===raw_msoc:244\n[ 2515.040952] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2515.040965] FG: calculate_average_current: current_now_ma=393066 averaged_iavg_ma=354186\n[ 2515.040982] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:393066, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2515.040994] FG: soc_monitor_work: soc:99, raw_soc:99, c:393066, s:2\n[ 2515.680590] raw: 0xf4\n[ 2515.680614] raw: 0xf4\n[ 2515.680622] ===raw_msoc:244\n[ 2521.391453] 17566     8.5 C/MHz    488 mW    6.9 J   36.0 I/mJ    14.2 s\n               2169: \n[ 2525.280614] raw: 0xf4\n[ 2525.280638] raw: 0xf4\n[ 2525.280646] ===raw_msoc:244\n[ 2525.281045] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2525.281058] FG: calculate_average_current: current_now_ma=282226 averaged_iavg_ma=343627\n[ 2525.281075] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:282226, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2525.281087] FG: soc_monitor_work: soc:99, raw_soc:99, c:282226, s:2\n[ 2525.920442] raw: 0xf4\n[ 2525.920466] raw: 0xf4\n[ 2525.920474] ===raw_msoc:244\n[ 2535.520494] raw: 0xf4\n[ 2535.520518] raw: 0xf4\n[ 2535.520525] ===raw_msoc:244\n[ 2535.520911] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2535.520923] FG: calculate_average_current: current_now_ma=421386 averaged_iavg_ma=361144\n[ 2535.520941] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:421386, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2535.520952] FG: soc_monitor_work: soc:99, raw_soc:99, c:421386, s:2\n[ 2536.160497] raw: 0xf4\n[ 2536.160521] raw: 0xf4\n[ 2536.160529] ===raw_msoc:244\n[ 2543.569778] 18395     8.5 C/MHz    620 mW    8.4 J   29.7 I/mJ    13.6 s\n               2265: \n[ 2545.760494] raw: 0xf4\n[ 2545.760518] raw: 0xf4\n[ 2545.760525] ===raw_msoc:244\n[ 2545.760953] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2545.760967] FG: calculate_average_current: current_now_ma=283691 averaged_iavg_ma=349914\n[ 2545.760984] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:283691, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2545.760996] FG: soc_monitor_work: soc:99, raw_soc:99, c:283691, s:2\n[ 2546.400464] raw: 0xf4\n[ 2546.400488] raw: 0xf4\n[ 2546.400496] ===raw_msoc:244\n[ 2553.795493] raw: 0xf4\n[ 2553.807256] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4349 Vbatt avg=4354 Vbatt res=954\n[ 2553.807280] raw: 0xf4\n[ 2553.807302] raw: 0xf4\n[ 2553.807310] ===raw_msoc:244\n[ 2553.807322] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 428710\n[ 2553.809009] raw: 0xf4\n[ 2553.809033] raw: 0xf4\n[ 2553.809041] ===raw_msoc:244\n[ 2553.812816] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 250 FCC = 6000000uA FV = 4480000uV\n[ 2553.812828] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[ 2553.812854] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 250 max voltage= 4480000uv FV = 4480000uV\n[ 2553.813199] raw: 0xf4\n[ 2553.813222] raw: 0xf4\n[ 2553.813230] ===raw_msoc:244\n[ 2553.814092] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 3d35a857\n[ 2553.814149] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[ 2553.814579] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4349 Vbatt avg=4354 Vbatt res=954\n[ 2553.814603] raw: 0xf4\n[ 2553.814625] raw: 0xf4\n[ 2553.814632] ===raw_msoc:244\n[ 2553.814643] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 428710\n[ 2553.814655] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 2556.000620] raw: 0xf4\n[ 2556.000644] raw: 0xf4\n[ 2556.000652] ===raw_msoc:244\n[ 2556.001042] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2556.001055] FG: calculate_average_current: current_now_ma=427245 averaged_iavg_ma=356750\n[ 2556.001072] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:427245, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2556.001084] FG: soc_monitor_work: soc:99, raw_soc:99, c:427245, s:2\n[ 2556.640489] raw: 0xf4\n[ 2556.640513] raw: 0xf4\n[ 2556.640520] ===raw_msoc:244\n[ 2564.745371] 19223     8.5 C/MHz    621 mW    8.1 J   30.9 I/mJ    13.0 s\n               2361: \n[ 2566.240473] raw: 0xf4\n[ 2566.240496] raw: 0xf4\n[ 2566.240504] ===raw_msoc:244\n[ 2566.240884] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2566.240897] FG: calculate_average_current: current_now_ma=281249 averaged_iavg_ma=344116\n[ 2566.240915] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:281249, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2566.240926] FG: soc_monitor_work: soc:99, raw_soc:99, c:281249, s:2\n[ 2566.880442] raw: 0xf4\n[ 2566.880466] raw: 0xf4\n[ 2566.880474] ===raw_msoc:244\n[ 2576.480483] raw: 0xf4\n[ 2576.480507] raw: 0xf4\n[ 2576.480515] ===raw_msoc:244\n[ 2576.480912] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2576.480925] FG: calculate_average_current: current_now_ma=435058 averaged_iavg_ma=350768\n[ 2576.480943] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:435058, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2576.480954] FG: soc_monitor_work: soc:99, raw_soc:99, c:435058, s:2\n[ 2577.120469] raw: 0xf4\n[ 2577.120493] raw: 0xf4\n[ 2577.120501] ===raw_msoc:244\n[ 2585.921683] 20040     8.5 C/MHz    672 mW    8.4 J   29.8 I/mJ    12.5 s\n               2457: \n[ 2586.720493] raw: 0xf4\n[ 2586.720518] raw: 0xf4\n[ 2586.720525] ===raw_msoc:244\n[ 2586.721008] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2586.721020] FG: calculate_average_current: current_now_ma=281738 averaged_iavg_ma=350707\n[ 2586.721038] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:281738, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2586.721049] FG: soc_monitor_work: soc:99, raw_soc:99, c:281738, s:2\n[ 2587.360492] raw: 0xf4\n[ 2587.360515] raw: 0xf4\n[ 2587.360524] ===raw_msoc:244\n[ 2596.960499] raw: 0xf4\n[ 2596.960523] raw: 0xf4\n[ 2596.960531] ===raw_msoc:244\n[ 2596.960925] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2596.960938] FG: calculate_average_current: current_now_ma=443359 averaged_iavg_ma=356994\n[ 2596.960955] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:443359, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2596.960966] FG: soc_monitor_work: soc:99, raw_soc:99, c:443359, s:2\n[ 2597.600447] raw: 0xf4\n[ 2597.600471] raw: 0xf4\n[ 2597.600479] ===raw_msoc:244\n[ 2606.094056] 20852     8.5 C/MHz    696 mW    8.3 J   29.9 I/mJ    12.0 s\n               2553: \n[ 2607.200475] raw: 0xf4\n[ 2607.200499] raw: 0xf4\n[ 2607.200507] ===raw_msoc:244\n[ 2607.200906] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2607.200919] FG: calculate_average_current: current_now_ma=282226 averaged_iavg_ma=356994\n[ 2607.200937] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:282226, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2607.200948] FG: soc_monitor_work: soc:99, raw_soc:99, c:282226, s:2\n[ 2607.840486] raw: 0xf4\n[ 2607.840510] raw: 0xf4\n[ 2607.840518] ===raw_msoc:244\n[ 2617.440495] raw: 0xf4\n[ 2617.440518] raw: 0xf4\n[ 2617.440526] ===raw_msoc:244\n[ 2617.441005] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2617.441018] FG: calculate_average_current: current_now_ma=450683 averaged_iavg_ma=360656\n[ 2617.441035] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:450683, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2617.441046] FG: soc_monitor_work: soc:99, raw_soc:99, c:450683, s:2\n[ 2618.080450] raw: 0xf4\n[ 2618.080474] raw: 0xf4\n[ 2618.080482] ===raw_msoc:244\n[ 2626.266541] 21684     8.5 C/MHz    738 mW    8.5 J   29.3 I/mJ    11.5 s\n               2649: \n[ 2627.680472] raw: 0xf4\n[ 2627.680496] raw: 0xf4\n[ 2627.680504] ===raw_msoc:244\n[ 2627.680885] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2627.680898] FG: calculate_average_current: current_now_ma=284667 averaged_iavg_ma=360778\n[ 2627.680915] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:284667, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2627.680927] FG: soc_monitor_work: soc:99, raw_soc:99, c:284667, s:2\n[ 2628.320444] raw: 0xf4\n[ 2628.320468] raw: 0xf4\n[ 2628.320476] ===raw_msoc:244\n[ 2637.920475] raw: 0xf4\n[ 2637.920499] raw: 0xf4\n[ 2637.920507] ===raw_msoc:244\n[ 2637.920904] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2637.920917] FG: calculate_average_current: current_now_ma=467773 averaged_iavg_ma=365844\n[ 2637.920935] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:467773, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2637.920947] FG: soc_monitor_work: soc:99, raw_soc:99, c:467773, s:2\n[ 2638.560472] raw: 0xf4\n[ 2638.560496] raw: 0xf4\n[ 2638.560504] ===raw_msoc:244\n[ 2646.437985] 22458     8.5 C/MHz    793 mW    8.8 J   28.3 I/mJ    11.1 s\n               2745: \n[ 2648.160541] raw: 0xf4\n[ 2648.160564] raw: 0xf4\n[ 2648.160572] ===raw_msoc:244\n[ 2648.161096] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2648.161109] FG: calculate_average_current: current_now_ma=285156 averaged_iavg_ma=366333\n[ 2648.161126] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:285156, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2648.161138] FG: soc_monitor_work: soc:99, raw_soc:99, c:285156, s:2\n[ 2648.800446] raw: 0xf4\n[ 2648.800470] raw: 0xf4\n[ 2648.800478] ===raw_msoc:244\n[ 2658.400475] raw: 0xf4\n[ 2658.400498] raw: 0xf4\n[ 2658.400506] ===raw_msoc:244\n[ 2658.400886] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2658.400899] FG: calculate_average_current: current_now_ma=483398 averaged_iavg_ma=372375\n[ 2658.400917] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:483398, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2658.400929] FG: soc_monitor_work: soc:99, raw_soc:99, c:483398, s:2\n[ 2659.040450] raw: 0xf4\n[ 2659.040474] raw: 0xf4\n[ 2659.040482] ===raw_msoc:244\n[ 2665.607500] 23314     8.5 C/MHz    875 mW    9.4 J   26.6 I/mJ    10.7 s\n               2841: \n[ 2668.640494] raw: 0xf4\n[ 2668.640518] raw: 0xf4\n[ 2668.640526] ===raw_msoc:244\n[ 2668.640926] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2668.640939] FG: calculate_average_current: current_now_ma=284179 averaged_iavg_ma=372680\n[ 2668.640956] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:284179, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2668.640968] FG: soc_monitor_work: soc:99, raw_soc:99, c:284179, s:2\n[ 2669.280586] raw: 0xf4\n[ 2669.280610] raw: 0xf4\n[ 2669.280618] ===raw_msoc:244\n[ 2678.880498] raw: 0xf4\n[ 2678.880522] raw: 0xf4\n[ 2678.880530] ===raw_msoc:244\n[ 2678.881046] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2678.881059] FG: calculate_average_current: current_now_ma=497558 averaged_iavg_ma=379455\n[ 2678.881077] FG: fg_battery_soc_smooth_tracking: soc:99, last_soc:99, raw_soc:99, soc_changed:1, batt_ma:497558, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2678.881088] FG: soc_monitor_work: soc:99, raw_soc:99, c:497558, s:2\n[ 2679.520447] raw: 0xf4\n[ 2679.520471] raw: 0xf4\n[ 2679.520479] ===raw_msoc:244\n[ 2684.779232] CPU7: shutdown\n[ 2684.779327] psci: CPU7 killed.\n[ 2684.799265] 24103     8.5 C/MHz    928 mW    9.6 J   26.0 I/mJ    10.4 s\n               \n               \n               Benchmark finished!\n[ 2684.817909] \n               real\t44m42.390s\n               user\t35m27.965s\n               sys\t0m1.367s\n"
  },
  {
    "path": "results/sm8250/k30s/post_bench_interrupts.txt",
    "content": "           CPU0       \n  3:       4785     GICv3  27 Level     arch_timer\n  5:     268182     GICv3  38 Level     arch_mem_timer\n  7:          0     GICv3  23 Level     arm-pmu\n  8:          0     GICv3  62 Level     dcvsh-irq-0\n  9:          0     GICv3  63 Level     dcvsh-irq-4\n 10:          0     GICv3  51 Level     dcvsh-irq-7\n 11:          0     GICv3 195 Level     ngd_slim_irq\n 14:          0     GICv3  32 Edge      apps_wdog_bark\n 21:          0  pmic_arb 8388621 Edge      pon_kpdpwr_status\n 22:          0  pmic_arb 8454157 Edge      pon_resin_status\n 23:          0  pmic_arb 8585229 Edge      pon_kpdpwr_bark\n 25:          0  pmic_arb 8716301 Edge      pon_kpdpwr_resin_bark\n 26:          0  pmic_arb 37748750 Edge      qcom,temp-alarm\n 29:          0  pmic_arb 206569497 Edge      volume_up\n 33:          0  pmic_arb 101777427 Edge      pm8xxx_rtc_alarm\n 34:          4  pmic_arb 51380239 Edge      pm-adc5\n 35:          0  pmic_arb 55574544 Edge      thr-int-en\n 41:          0  pmic_arb 560988197 Edge      sig-tx\n 42:          0  pmic_arb 561053733 Edge      sig-rx\n 43:          0  pmic_arb 574619691 Edge      qcom,temp-alarm\n 44:          0  pmic_arb 561119269 Edge      msg-tx\n 45:          0  pmic_arb 561184805 Edge      msg-rx\n 46:          0  pmic_arb 561250341 Edge      msg-tx-failed\n 47:          0  pmic_arb 561315877 Edge      msg-tx-discarded\n 48:          0  pmic_arb 561381413 Edge      msg-rx-discarded\n 50:          0  pmic_arb 567279658 Edge      bcl-lvl0\n 51:          0  pmic_arb 567345194 Edge      bcl-lvl1\n 52:          0  pmic_arb 567410730 Edge      bcl-lvl2\n 53:          9  pmic_arb 588251180 Edge      pm-adc5\n 54:          0  pmic_arb 592445485 Edge      thr-int-en\n 57:          0  pmic_arb 1111490635 Edge      qcom,temp-alarm\n 59:          0  pmic_arb 721485883 Edge      ptrain-done\n 72:          4  pmic_arb 1125122124 Edge      pm-adc5\n 73:          0  pmic_arb 1137705038 Edge      bcl-lvl0\n 74:          0  pmic_arb 1137770574 Edge      bcl-lvl1\n 75:          0  pmic_arb 1137836110 Edge      bcl-lvl2\n 76:          0  pmic_arb 1129316429 Edge      thr-int-en\n 77:          0  pmic_arb 1589706852 Edge      qpnp_lcdb_sc_irq\n 78:          0  pmic_arb 1563426913 Edge      qpnp_flash_led_fault_irq\n 79:          0  pmic_arb 1563623521 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 80:          0  pmic_arb 1563689057 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 81:          0  pmic_arb 1568735330 Edge      wled_ovp_irq\n 82:          0  pmic_arb 1568931938 Edge      wled_pre_flash_irq\n 83:          0  pmic_arb 1568997474 Edge      wled_flash_irq\n 88:        597     GICv3 297 Level     1d84000.ufshc\n 89:          6     GICv3 261 Level     ipcc_1\n 92:       1030     GICv3  37 Level     apps_rsc\n 93:          0     GICv3 161 Level     disp_rsc\n 94:          0     GICv3  16 Level     KRYO L1-L2 ECC FAULTIRQ\n 95:          0     GICv3  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 96:          0     GICv3 380 Level     qsee_irq\n 97:          0     GICv3 381 Level     qsee_irq\n100:          6      ipcc   0 Edge      qcom,qmp-aop\n101:          0       PDC  11 Level     eud_irq\n102:          0       PDC   6 Edge      adsp\n103:          0     GICv3 610 Edge      cdsp\n104:          0     GICv3 384 Level     spss\n105:          0     GICv3 304 Level     sps\n106:          0       PDC   9 Edge      slpi\n107:          0     GICv3 538 Level     tsens-upper-lower\n108:          0     GICv3 540 Level     tsens-critical\n109:          0     GICv3 539 Level     tsens-upper-lower\n110:          0     GICv3 541 Level     tsens-critical\n111:          5     GICv3 276 Level     gpi_dma900000_gpii0\n148:          0     GICv3 172 Edge      int_global_int\n185:          0     GICv3 268 Edge      int_global_int\n222:          0     GICv3 704 Level     arm-smmu global fault\n223:          0     GICv3 705 Level     arm-smmu global fault\n224:          0     GICv3 710 Level     arm-smmu-context-fault\n225:          0     GICv3 711 Level     arm-smmu-context-fault\n226:          0     GICv3 712 Level     arm-smmu-context-fault\n232:          0     GICv3  96 Level     arm-smmu global fault\n233:          0     GICv3  97 Level     arm-smmu global fault\n238:          0     GICv3 133 Level     arm-smmu-context-fault\n239:          0     GICv3 134 Level     arm-smmu-context-fault\n240:          0     GICv3 135 Level     arm-smmu-context-fault\n241:          0     GICv3 136 Level     arm-smmu-context-fault\n242:          0     GICv3 137 Level     arm-smmu-context-fault\n243:          0     GICv3 138 Level     arm-smmu-context-fault\n244:          0     GICv3 139 Level     arm-smmu-context-fault\n245:          0     GICv3 140 Level     arm-smmu-context-fault\n246:          0     GICv3 141 Level     arm-smmu-context-fault\n247:          0     GICv3 142 Level     arm-smmu-context-fault\n248:          0     GICv3 143 Level     arm-smmu-context-fault\n249:          0     GICv3 144 Level     arm-smmu-context-fault\n250:          0     GICv3 145 Level     arm-smmu-context-fault\n251:          0     GICv3 146 Level     arm-smmu-context-fault\n252:          0     GICv3 147 Level     arm-smmu-context-fault\n253:          0     GICv3 148 Level     arm-smmu-context-fault\n254:          0     GICv3 149 Level     arm-smmu-context-fault\n255:          0     GICv3 150 Level     arm-smmu-context-fault\n256:          0     GICv3 213 Level     arm-smmu-context-fault\n257:          0     GICv3 214 Level     arm-smmu-context-fault\n258:          0     GICv3 215 Level     arm-smmu-context-fault\n259:          0     GICv3 216 Level     arm-smmu-context-fault\n260:          0     GICv3 217 Level     arm-smmu-context-fault\n261:          0     GICv3 218 Level     arm-smmu-context-fault\n262:          0     GICv3 219 Level     arm-smmu-context-fault\n263:          0     GICv3 220 Level     arm-smmu-context-fault\n264:          0     GICv3 221 Level     arm-smmu-context-fault\n265:          0     GICv3 222 Level     arm-smmu-context-fault\n266:          0     GICv3 223 Level     arm-smmu-context-fault\n267:          0     GICv3 224 Level     arm-smmu-context-fault\n268:          0     GICv3 347 Level     arm-smmu-context-fault\n269:          0     GICv3 348 Level     arm-smmu-context-fault\n270:          0     GICv3 349 Level     arm-smmu-context-fault\n271:          0     GICv3 350 Level     arm-smmu-context-fault\n272:          0     GICv3 351 Level     arm-smmu-context-fault\n273:          0     GICv3 352 Level     arm-smmu-context-fault\n274:          0     GICv3 353 Level     arm-smmu-context-fault\n275:          0     GICv3 354 Level     arm-smmu-context-fault\n276:          0     GICv3 355 Level     arm-smmu-context-fault\n277:          0     GICv3 356 Level     arm-smmu-context-fault\n278:          0     GICv3 357 Level     arm-smmu-context-fault\n279:          0     GICv3 358 Level     arm-smmu-context-fault\n280:          0     GICv3 359 Level     arm-smmu-context-fault\n281:          0     GICv3 360 Level     arm-smmu-context-fault\n282:          0     GICv3 361 Level     arm-smmu-context-fault\n283:          0     GICv3 362 Level     arm-smmu-context-fault\n284:          0     GICv3 363 Level     arm-smmu-context-fault\n285:          0     GICv3 364 Level     arm-smmu-context-fault\n286:          0     GICv3 365 Level     arm-smmu-context-fault\n287:          0     GICv3 366 Level     arm-smmu-context-fault\n331:          0      ipcc 196610 Edge      smp2p\n332:          0      ipcc 262146 Edge      smp2p\n333:          0      ipcc 393218 Edge      smp2p\n334:          0      ipcc 458754 Edge      smp2p\n335:          0       PDC  14 Edge      dp_hs_phy_irq\n336:          0     GICv3 162 Level     pwr_event_irq\n337:          0       PDC  17 Level     ss_phy_irq\n338:          0       PDC  15 Edge      dm_hs_phy_irq\n339:          0     GICv3 302 Edge      tmc-etr\n340:          0     GICv3 115 Level     msm_drm\n341:          0     GICv3 509 Edge      csiphy\n342:          0     GICv3 510 Edge      csiphy\n343:          0     GICv3 511 Edge      csiphy\n344:          0     GICv3 480 Edge      csiphy\n345:          0     GICv3 118 Edge      csiphy\n346:          0     GICv3 121 Edge      csiphy\n347:          0     GICv3 492 Edge      cci\n348:          0     GICv3 303 Edge      cci\n349:          0     GICv3 491 Edge      cpas_camnoc\n350:          1     GICv3 493 Edge      cpas-cdm\n351:          0     GICv3 496 Edge      csid\n352:          2     GICv3 497 Edge      ife\n353:          0     GICv3 498 Edge      csid\n354:          2     GICv3 499 Edge      ife\n355:          0     GICv3 500 Edge      csid-lite\n356:          2     GICv3 501 Edge      ife-lite\n357:          0     GICv3 391 Edge      csid-lite\n358:          2     GICv3 392 Edge      ife-lite\n359:          0     GICv3 495 Edge      a5\n360:          0     GICv3 506 Edge      jpeg\n361:          0     GICv3 507 Edge      jpegdma\n362:          2     GICv3 494 Edge      fd\n365:          4     GICv3 634 Level     i2c_geni\n366:       1436     GICv3 636 Level     i2c_geni\n367:          0     GICv3 635 Level     spi_geni\n368:         18     GICv3 637 Level     spi_geni\n370:        315     GICv3 388 Level     i2c_geni\n371:        369     GICv3 615 Level     i2c_geni\n372:        359     GICv3 616 Level     i2c_geni\n373:          0     GICv3 206 Level     msm_vidc\n374:          0     GICv3 266 Level     msm_cvp\n375:          0     GICv3 396 Level     error_irq\n376:          0     GICv3 398 Edge      wdg_bite_irq\n377:          0     GICv3 400 Edge      ipc_irq\n378:          0     GICv3 397 Level     general_irq\n379:          0     GICv3 332 Level     kgsl_3d0_irq\n380:          0     GICv3 336 Level     kgsl_hfi_irq\n381:          0     GICv3 337 Level     kgsl_gmu_irq\n388:          1   msmgpio  81 Edge      msm_pcie_wake\n389:          0   msmgpio  87 Edge      msm_pcie_wake\n390:          0     smp2p   2 Edge      adsp\n391:          0     smp2p   0 Edge      adsp\n392:          0     smp2p   1 Edge      error_ready_interrupt\n393:          0     smp2p   3 Edge      adsp\n394:          0     smp2p   2 Edge      cdsp\n395:          0     smp2p   0 Edge      cdsp\n396:          0     smp2p   1 Edge      error_ready_interrupt\n397:          0     smp2p   3 Edge      cdsp\n398:          0     smp2p   2 Edge      slpi\n399:          0     smp2p   0 Edge      slpi\n400:          0     smp2p   1 Edge      error_ready_interrupt\n401:          0     smp2p   3 Edge      slpi\n402:          0     smp2p   0 Edge      smp2p_sleepstate\n403:          0      qsee  32 Level     qsee_ipc_irq_spss\n404:          0     GICv3 165 Level     dwc3\n406:          0   msmgpio 111 Level     nq-nci\n439:          0   msmgpio 129 Edge      aw8697\n440:          0   msmgpio  84 Edge      i2c_pmic_stat_irq\n441:          0  i2c_pmic_irq_chip 2320 Edge      ocp\n444:          0  pmic_arb 603979823 Edge      soc-update\n445:          0  pmic_arb 604045359 Edge      soc-ready\n446:          0  pmic_arb 604110895 Edge      bsoc-delta\n447:          8  pmic_arb 604176431 Edge      msoc-delta\n448:          0  pmic_arb 604241967 Edge      msoc-low\n449:          0  pmic_arb 604307503 Edge      msoc-empty\n450:          0  pmic_arb 604373039 Edge      msoc-high\n451:          1  pmic_arb 604438575 Edge      msoc-full\n452:          0  pmic_arb 605028400 Edge      vbatt-low\n453:          0  pmic_arb 605093936 Edge      vbatt-pred-delta\n454:          3  pmic_arb 605225008 Edge      esr-delta\n455:          0  pmic_arb 606076977 Edge      batt-missing\n456:          0  pmic_arb 606142513 Edge      batt-id\n457:          0  pmic_arb 606208049 Edge      batt-temp-delta\n458:          0  pmic_arb 606273585 Edge      batt-temp-hot\n459:          0  pmic_arb 606339121 Edge      batt-temp-cold\n460:          0  pmic_arb 607125554 Edge      ima-rdy\n461:          0  pmic_arb 607191090 Edge      ima-xcp\n462:          0  pmic_arb 607256626 Edge      dma-xcp\n463:        643  pmic_arb 607322162 Edge      dma-grant\n464:          0  pmic_arb 607387698 Edge      mem-attn\n465:          0   msmgpio  68 Edge      bq2597x charger irq\n468:          0   msmgpio   1 Edge      mdm errfatal\n469:          0   msmgpio   3 Edge      mdm status\n470:          0   msmgpio 113 Level     cs35l41\n471:          0   msmgpio 112 Level     cs35l41\n472:          0   msmgpio  66 Edge      TE_GPIO\n473:          0       sde   4 Edge      dsi_ctrl\n474:          0  pmic_arb 553648158 Edge      chgr-error\n475:          0  pmic_arb 553713694 Edge      chg-state-change\n481:          0  pmic_arb 554696735 Edge      otg-fail\n484:          0  pmic_arb 554958879 Edge      high-duty-cycle\n485:          0  pmic_arb 555024415 Edge      input-current-limiting\n487:          0  pmic_arb 555155487 Edge      switcher-power-ok\n488:          0  pmic_arb 555745312 Edge      bat-temp\n489:          0  pmic_arb 555876384 Edge      bat-ov\n490:          0  pmic_arb 555941920 Edge      bat-low\n491:          0  pmic_arb 556007456 Edge      bat-therm-or-id-missing\n492:          0  pmic_arb 556072992 Edge      bat-terminal-missing\n495:          0  pmic_arb 556793889 Edge      usbin-collapse\n496:          0  pmic_arb 556859425 Edge      usbin-vashdn\n497:          0  pmic_arb 556924961 Edge      usbin-uv\n498:          0  pmic_arb 556990497 Edge      usbin-ov\n499:          0  pmic_arb 557056033 Edge      usbin-plugin\n501:          0  pmic_arb 557187105 Edge      usbin-src-change\n502:          0  pmic_arb 557252641 Edge      usbin-icl-change\n504:          0  pmic_arb 557973538 Edge      dcin-uv\n505:          0  pmic_arb 558039074 Edge      dcin-ov\n506:          0  pmic_arb 558104610 Edge      dcin-plugin\n508:          0  pmic_arb 558235682 Edge      dcin-pon\n509:          0  pmic_arb 558301218 Edge      dcin-en\n510:          0  pmic_arb 558891043 Edge      typec-or-rid-detect-change\n512:          0  pmic_arb 559022115 Edge      typec-cc-state-change\n513:          0  pmic_arb 559087651 Edge      typec-vconn-oc\n515:          0  pmic_arb 559218723 Edge      typec-attach-detach\n516:          0  pmic_arb 559284259 Edge      typec-legacy-cable-detect\n518:          0  pmic_arb 559939620 Edge      wdog-snarl\n519:          0  pmic_arb 560005156 Edge      wdog-bark\n521:          0  pmic_arb 560136228 Edge      aicl-done\n522:          0  pmic_arb 560201764 Edge      smb-en\n523:          0  pmic_arb 560332836 Edge      temp-change\n525:          0   msmgpio  39 Edge      NVT-ts-spi\nIPI0:       256       Rescheduling interrupts\nIPI1:        10       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:    134258       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8250/k30s/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  3:        706          1          1          2          2          1          1          2     GICv3  27 Level     arch_timer\n  5:          0          0          0          0          0          0          0          0     GICv3  38 Level     arch_mem_timer\n  7:          0          0          0          0          0          0          0          0     GICv3  23 Level     arm-pmu\n  8:          0          0          0          0          0          0          0          0     GICv3  62 Level     dcvsh-irq-0\n  9:          0          0          0          0          0          0          0          0     GICv3  63 Level     dcvsh-irq-4\n 10:          0          0          0          0          0          0          0          0     GICv3  51 Level     dcvsh-irq-7\n 11:          0          0          0          0          0          0          0          0     GICv3 195 Level     ngd_slim_irq\n 14:          0          0          0          0          0          0          0          0     GICv3  32 Edge      apps_wdog_bark\n 21:          0          0          0          0          0          0          0          0  pmic_arb 8388621 Edge      pon_kpdpwr_status\n 22:          0          0          0          0          0          0          0          0  pmic_arb 8454157 Edge      pon_resin_status\n 23:          0          0          0          0          0          0          0          0  pmic_arb 8585229 Edge      pon_kpdpwr_bark\n 25:          0          0          0          0          0          0          0          0  pmic_arb 8716301 Edge      pon_kpdpwr_resin_bark\n 26:          0          0          0          0          0          0          0          0  pmic_arb 37748750 Edge      qcom,temp-alarm\n 29:          0          0          0          0          0          0          0          0  pmic_arb 206569497 Edge      volume_up\n 33:          0          0          0          0          0          0          0          0  pmic_arb 101777427 Edge      pm8xxx_rtc_alarm\n 34:          4          0          0          0          0          0          0          0  pmic_arb 51380239 Edge      pm-adc5\n 35:          0          0          0          0          0          0          0          0  pmic_arb 55574544 Edge      thr-int-en\n 41:          0          0          0          0          0          0          0          0  pmic_arb 560988197 Edge      sig-tx\n 42:          0          0          0          0          0          0          0          0  pmic_arb 561053733 Edge      sig-rx\n 43:          0          0          0          0          0          0          0          0  pmic_arb 574619691 Edge      qcom,temp-alarm\n 44:          0          0          0          0          0          0          0          0  pmic_arb 561119269 Edge      msg-tx\n 45:          0          0          0          0          0          0          0          0  pmic_arb 561184805 Edge      msg-rx\n 46:          0          0          0          0          0          0          0          0  pmic_arb 561250341 Edge      msg-tx-failed\n 47:          0          0          0          0          0          0          0          0  pmic_arb 561315877 Edge      msg-tx-discarded\n 48:          0          0          0          0          0          0          0          0  pmic_arb 561381413 Edge      msg-rx-discarded\n 50:          0          0          0          0          0          0          0          0  pmic_arb 567279658 Edge      bcl-lvl0\n 51:          0          0          0          0          0          0          0          0  pmic_arb 567345194 Edge      bcl-lvl1\n 52:          0          0          0          0          0          0          0          0  pmic_arb 567410730 Edge      bcl-lvl2\n 53:          9          0          0          0          0          0          0          0  pmic_arb 588251180 Edge      pm-adc5\n 54:          0          0          0          0          0          0          0          0  pmic_arb 592445485 Edge      thr-int-en\n 57:          0          0          0          0          0          0          0          0  pmic_arb 1111490635 Edge      qcom,temp-alarm\n 59:          0          0          0          0          0          0          0          0  pmic_arb 721485883 Edge      ptrain-done\n 72:          4          0          0          0          0          0          0          0  pmic_arb 1125122124 Edge      pm-adc5\n 73:          0          0          0          0          0          0          0          0  pmic_arb 1137705038 Edge      bcl-lvl0\n 74:          0          0          0          0          0          0          0          0  pmic_arb 1137770574 Edge      bcl-lvl1\n 75:          0          0          0          0          0          0          0          0  pmic_arb 1137836110 Edge      bcl-lvl2\n 76:          0          0          0          0          0          0          0          0  pmic_arb 1129316429 Edge      thr-int-en\n 77:          0          0          0          0          0          0          0          0  pmic_arb 1589706852 Edge      qpnp_lcdb_sc_irq\n 78:          0          0          0          0          0          0          0          0  pmic_arb 1563426913 Edge      qpnp_flash_led_fault_irq\n 79:          0          0          0          0          0          0          0          0  pmic_arb 1563623521 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 80:          0          0          0          0          0          0          0          0  pmic_arb 1563689057 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 81:          0          0          0          0          0          0          0          0  pmic_arb 1568735330 Edge      wled_ovp_irq\n 82:          0          0          0          0          0          0          0          0  pmic_arb 1568931938 Edge      wled_pre_flash_irq\n 83:          0          0          0          0          0          0          0          0  pmic_arb 1568997474 Edge      wled_flash_irq\n 88:        586          0          0          0          0          0          0          0     GICv3 297 Level     1d84000.ufshc\n 89:          6          0          0          0          0          0          0          0     GICv3 261 Level     ipcc_1\n 92:        976          0          0          0          0          0          0          0     GICv3  37 Level     apps_rsc\n 93:          0          0          0          0          0          0          0          0     GICv3 161 Level     disp_rsc\n 94:          0          0          0          0          0          0          0          0     GICv3  16 Level     KRYO L1-L2 ECC FAULTIRQ\n 95:          0          0          0          0          0          0          0          0     GICv3  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 96:          0          0          0          0          0          0          0          0     GICv3 380 Level     qsee_irq\n 97:          0          0          0          0          0          0          0          0     GICv3 381 Level     qsee_irq\n100:          6          0          0          0          0          0          0          0      ipcc   0 Edge      qcom,qmp-aop\n101:          0          0          0          0          0          0          0          0       PDC  11 Level     eud_irq\n102:          0          0          0          0          0          0          0          0       PDC   6 Edge      adsp\n103:          0          0          0          0          0          0          0          0     GICv3 610 Edge      cdsp\n104:          0          0          0          0          0          0          0          0     GICv3 384 Level     spss\n105:          0          0          0          0          0          0          0          0     GICv3 304 Level     sps\n106:          0          0          0          0          0          0          0          0       PDC   9 Edge      slpi\n107:          0          0          0          0          0          0          0          0     GICv3 538 Level     tsens-upper-lower\n108:          0          0          0          0          0          0          0          0     GICv3 540 Level     tsens-critical\n109:          0          0          0          0          0          0          0          0     GICv3 539 Level     tsens-upper-lower\n110:          0          0          0          0          0          0          0          0     GICv3 541 Level     tsens-critical\n111:          5          0          0          0          0          0          0          0     GICv3 276 Level     gpi_dma900000_gpii0\n148:          0          0          0          0          0          0          0          0     GICv3 172 Edge      int_global_int\n185:          0          0          0          0          0          0          0          0     GICv3 268 Edge      int_global_int\n222:          0          0          0          0          0          0          0          0     GICv3 704 Level     arm-smmu global fault\n223:          0          0          0          0          0          0          0          0     GICv3 705 Level     arm-smmu global fault\n224:          0          0          0          0          0          0          0          0     GICv3 710 Level     arm-smmu-context-fault\n225:          0          0          0          0          0          0          0          0     GICv3 711 Level     arm-smmu-context-fault\n226:          0          0          0          0          0          0          0          0     GICv3 712 Level     arm-smmu-context-fault\n232:          0          0          0          0          0          0          0          0     GICv3  96 Level     arm-smmu global fault\n233:          0          0          0          0          0          0          0          0     GICv3  97 Level     arm-smmu global fault\n238:          0          0          0          0          0          0          0          0     GICv3 133 Level     arm-smmu-context-fault\n239:          0          0          0          0          0          0          0          0     GICv3 134 Level     arm-smmu-context-fault\n240:          0          0          0          0          0          0          0          0     GICv3 135 Level     arm-smmu-context-fault\n241:          0          0          0          0          0          0          0          0     GICv3 136 Level     arm-smmu-context-fault\n242:          0          0          0          0          0          0          0          0     GICv3 137 Level     arm-smmu-context-fault\n243:          0          0          0          0          0          0          0          0     GICv3 138 Level     arm-smmu-context-fault\n244:          0          0          0          0          0          0          0          0     GICv3 139 Level     arm-smmu-context-fault\n245:          0          0          0          0          0          0          0          0     GICv3 140 Level     arm-smmu-context-fault\n246:          0          0          0          0          0          0          0          0     GICv3 141 Level     arm-smmu-context-fault\n247:          0          0          0          0          0          0          0          0     GICv3 142 Level     arm-smmu-context-fault\n248:          0          0          0          0          0          0          0          0     GICv3 143 Level     arm-smmu-context-fault\n249:          0          0          0          0          0          0          0          0     GICv3 144 Level     arm-smmu-context-fault\n250:          0          0          0          0          0          0          0          0     GICv3 145 Level     arm-smmu-context-fault\n251:          0          0          0          0          0          0          0          0     GICv3 146 Level     arm-smmu-context-fault\n252:          0          0          0          0          0          0          0          0     GICv3 147 Level     arm-smmu-context-fault\n253:          0          0          0          0          0          0          0          0     GICv3 148 Level     arm-smmu-context-fault\n254:          0          0          0          0          0          0          0          0     GICv3 149 Level     arm-smmu-context-fault\n255:          0          0          0          0          0          0          0          0     GICv3 150 Level     arm-smmu-context-fault\n256:          0          0          0          0          0          0          0          0     GICv3 213 Level     arm-smmu-context-fault\n257:          0          0          0          0          0          0          0          0     GICv3 214 Level     arm-smmu-context-fault\n258:          0          0          0          0          0          0          0          0     GICv3 215 Level     arm-smmu-context-fault\n259:          0          0          0          0          0          0          0          0     GICv3 216 Level     arm-smmu-context-fault\n260:          0          0          0          0          0          0          0          0     GICv3 217 Level     arm-smmu-context-fault\n261:          0          0          0          0          0          0          0          0     GICv3 218 Level     arm-smmu-context-fault\n262:          0          0          0          0          0          0          0          0     GICv3 219 Level     arm-smmu-context-fault\n263:          0          0          0          0          0          0          0          0     GICv3 220 Level     arm-smmu-context-fault\n264:          0          0          0          0          0          0          0          0     GICv3 221 Level     arm-smmu-context-fault\n265:          0          0          0          0          0          0          0          0     GICv3 222 Level     arm-smmu-context-fault\n266:          0          0          0          0          0          0          0          0     GICv3 223 Level     arm-smmu-context-fault\n267:          0          0          0          0          0          0          0          0     GICv3 224 Level     arm-smmu-context-fault\n268:          0          0          0          0          0          0          0          0     GICv3 347 Level     arm-smmu-context-fault\n269:          0          0          0          0          0          0          0          0     GICv3 348 Level     arm-smmu-context-fault\n270:          0          0          0          0          0          0          0          0     GICv3 349 Level     arm-smmu-context-fault\n271:          0          0          0          0          0          0          0          0     GICv3 350 Level     arm-smmu-context-fault\n272:          0          0          0          0          0          0          0          0     GICv3 351 Level     arm-smmu-context-fault\n273:          0          0          0          0          0          0          0          0     GICv3 352 Level     arm-smmu-context-fault\n274:          0          0          0          0          0          0          0          0     GICv3 353 Level     arm-smmu-context-fault\n275:          0          0          0          0          0          0          0          0     GICv3 354 Level     arm-smmu-context-fault\n276:          0          0          0          0          0          0          0          0     GICv3 355 Level     arm-smmu-context-fault\n277:          0          0          0          0          0          0          0          0     GICv3 356 Level     arm-smmu-context-fault\n278:          0          0          0          0          0          0          0          0     GICv3 357 Level     arm-smmu-context-fault\n279:          0          0          0          0          0          0          0          0     GICv3 358 Level     arm-smmu-context-fault\n280:          0          0          0          0          0          0          0          0     GICv3 359 Level     arm-smmu-context-fault\n281:          0          0          0          0          0          0          0          0     GICv3 360 Level     arm-smmu-context-fault\n282:          0          0          0          0          0          0          0          0     GICv3 361 Level     arm-smmu-context-fault\n283:          0          0          0          0          0          0          0          0     GICv3 362 Level     arm-smmu-context-fault\n284:          0          0          0          0          0          0          0          0     GICv3 363 Level     arm-smmu-context-fault\n285:          0          0          0          0          0          0          0          0     GICv3 364 Level     arm-smmu-context-fault\n286:          0          0          0          0          0          0          0          0     GICv3 365 Level     arm-smmu-context-fault\n287:          0          0          0          0          0          0          0          0     GICv3 366 Level     arm-smmu-context-fault\n331:          0          0          0          0          0          0          0          0      ipcc 196610 Edge      smp2p\n332:          0          0          0          0          0          0          0          0      ipcc 262146 Edge      smp2p\n333:          0          0          0          0          0          0          0          0      ipcc 393218 Edge      smp2p\n334:          0          0          0          0          0          0          0          0      ipcc 458754 Edge      smp2p\n335:          0          0          0          0          0          0          0          0       PDC  14 Edge      dp_hs_phy_irq\n336:          0          0          0          0          0          0          0          0     GICv3 162 Level     pwr_event_irq\n337:          0          0          0          0          0          0          0          0       PDC  17 Level     ss_phy_irq\n338:          0          0          0          0          0          0          0          0       PDC  15 Edge      dm_hs_phy_irq\n339:          0          0          0          0          0          0          0          0     GICv3 302 Edge      tmc-etr\n340:          0          0          0          0          0          0          0          0     GICv3 115 Level     msm_drm\n341:          0          0          0          0          0          0          0          0     GICv3 509 Edge      csiphy\n342:          0          0          0          0          0          0          0          0     GICv3 510 Edge      csiphy\n343:          0          0          0          0          0          0          0          0     GICv3 511 Edge      csiphy\n344:          0          0          0          0          0          0          0          0     GICv3 480 Edge      csiphy\n345:          0          0          0          0          0          0          0          0     GICv3 118 Edge      csiphy\n346:          0          0          0          0          0          0          0          0     GICv3 121 Edge      csiphy\n347:          0          0          0          0          0          0          0          0     GICv3 492 Edge      cci\n348:          0          0          0          0          0          0          0          0     GICv3 303 Edge      cci\n349:          0          0          0          0          0          0          0          0     GICv3 491 Edge      cpas_camnoc\n350:          1          0          0          0          0          0          0          0     GICv3 493 Edge      cpas-cdm\n351:          0          0          0          0          0          0          0          0     GICv3 496 Edge      csid\n352:          2          0          0          0          0          0          0          0     GICv3 497 Edge      ife\n353:          0          0          0          0          0          0          0          0     GICv3 498 Edge      csid\n354:          2          0          0          0          0          0          0          0     GICv3 499 Edge      ife\n355:          0          0          0          0          0          0          0          0     GICv3 500 Edge      csid-lite\n356:          2          0          0          0          0          0          0          0     GICv3 501 Edge      ife-lite\n357:          0          0          0          0          0          0          0          0     GICv3 391 Edge      csid-lite\n358:          2          0          0          0          0          0          0          0     GICv3 392 Edge      ife-lite\n359:          0          0          0          0          0          0          0          0     GICv3 495 Edge      a5\n360:          0          0          0          0          0          0          0          0     GICv3 506 Edge      jpeg\n361:          0          0          0          0          0          0          0          0     GICv3 507 Edge      jpegdma\n362:          2          0          0          0          0          0          0          0     GICv3 494 Edge      fd\n365:          4          0          0          0          0          0          0          0     GICv3 634 Level     i2c_geni\n366:       1436          0          0          0          0          0          0          0     GICv3 636 Level     i2c_geni\n367:          0          0          0          0          0          0          0          0     GICv3 635 Level     spi_geni\n368:         16          0          0          0          0          0          0          0     GICv3 637 Level     spi_geni\n370:        315          0          0          0          0          0          0          0     GICv3 388 Level     i2c_geni\n371:        369          0          0          0          0          0          0          0     GICv3 615 Level     i2c_geni\n372:        330          0          0          0          0          0          0          0     GICv3 616 Level     i2c_geni\n373:          0          0          0          0          0          0          0          0     GICv3 206 Level     msm_vidc\n374:          0          0          0          0          0          0          0          0     GICv3 266 Level     msm_cvp\n375:          0          0          0          0          0          0          0          0     GICv3 396 Level     error_irq\n376:          0          0          0          0          0          0          0          0     GICv3 398 Edge      wdg_bite_irq\n377:          0          0          0          0          0          0          0          0     GICv3 400 Edge      ipc_irq\n378:          0          0          0          0          0          0          0          0     GICv3 397 Level     general_irq\n379:          0          0          0          0          0          0          0          0     GICv3 332 Level     kgsl_3d0_irq\n380:          0          0          0          0          0          0          0          0     GICv3 336 Level     kgsl_hfi_irq\n381:          0          0          0          0          0          0          0          0     GICv3 337 Level     kgsl_gmu_irq\n388:          1          0          0          0          0          0          0          0   msmgpio  81 Edge      msm_pcie_wake\n389:          0          0          0          0          0          0          0          0   msmgpio  87 Edge      msm_pcie_wake\n390:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n391:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n392:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n393:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n394:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n395:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n396:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n397:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n398:          0          0          0          0          0          0          0          0     smp2p   2 Edge      slpi\n399:          0          0          0          0          0          0          0          0     smp2p   0 Edge      slpi\n400:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n401:          0          0          0          0          0          0          0          0     smp2p   3 Edge      slpi\n402:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n403:          0          0          0          0          0          0          0          0      qsee  32 Level     qsee_ipc_irq_spss\n404:          0          0          0          0          0          0          0          0     GICv3 165 Level     dwc3\n406:          0          0          0          0          0          0          0          0   msmgpio 111 Level     nq-nci\n439:          0          0          0          0          0          0          0          0   msmgpio 129 Edge      aw8697\n440:          0          0          0          0          0          0          0          0   msmgpio  84 Edge      i2c_pmic_stat_irq\n441:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 2320 Edge      ocp\n444:          0          0          0          0          0          0          0          0  pmic_arb 603979823 Edge      soc-update\n445:          0          0          0          0          0          0          0          0  pmic_arb 604045359 Edge      soc-ready\n446:          0          0          0          0          0          0          0          0  pmic_arb 604110895 Edge      bsoc-delta\n447:          0          0          0          0          0          0          0          0  pmic_arb 604176431 Edge      msoc-delta\n448:          0          0          0          0          0          0          0          0  pmic_arb 604241967 Edge      msoc-low\n449:          0          0          0          0          0          0          0          0  pmic_arb 604307503 Edge      msoc-empty\n450:          0          0          0          0          0          0          0          0  pmic_arb 604373039 Edge      msoc-high\n451:          0          0          0          0          0          0          0          0  pmic_arb 604438575 Edge      msoc-full\n452:          0          0          0          0          0          0          0          0  pmic_arb 605028400 Edge      vbatt-low\n453:          0          0          0          0          0          0          0          0  pmic_arb 605093936 Edge      vbatt-pred-delta\n454:          0          0          0          0          0          0          0          0  pmic_arb 605225008 Edge      esr-delta\n455:          0          0          0          0          0          0          0          0  pmic_arb 606076977 Edge      batt-missing\n456:          0          0          0          0          0          0          0          0  pmic_arb 606142513 Edge      batt-id\n457:          0          0          0          0          0          0          0          0  pmic_arb 606208049 Edge      batt-temp-delta\n458:          0          0          0          0          0          0          0          0  pmic_arb 606273585 Edge      batt-temp-hot\n459:          0          0          0          0          0          0          0          0  pmic_arb 606339121 Edge      batt-temp-cold\n460:          0          0          0          0          0          0          0          0  pmic_arb 607125554 Edge      ima-rdy\n461:          0          0          0          0          0          0          0          0  pmic_arb 607191090 Edge      ima-xcp\n462:          0          0          0          0          0          0          0          0  pmic_arb 607256626 Edge      dma-xcp\n463:         58          0          0          0          0          0          0          0  pmic_arb 607322162 Edge      dma-grant\n464:          0          0          0          0          0          0          0          0  pmic_arb 607387698 Edge      mem-attn\n465:          0          0          0          0          0          0          0          0   msmgpio  68 Edge      bq2597x charger irq\n468:          0          0          0          0          0          0          0          0   msmgpio   1 Edge      mdm errfatal\n469:          0          0          0          0          0          0          0          0   msmgpio   3 Edge      mdm status\n470:          0          0          0          0          0          0          0          0   msmgpio 113 Level     cs35l41\n471:          0          0          0          0          0          0          0          0   msmgpio 112 Level     cs35l41\n472:          0          0          0          0          0          0          0          0   msmgpio  66 Edge      TE_GPIO\n473:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n474:          0          0          0          0          0          0          0          0  pmic_arb 553648158 Edge      chgr-error\n475:          0          0          0          0          0          0          0          0  pmic_arb 553713694 Edge      chg-state-change\n481:          0          0          0          0          0          0          0          0  pmic_arb 554696735 Edge      otg-fail\n484:          0          0          0          0          0          0          0          0  pmic_arb 554958879 Edge      high-duty-cycle\n485:          0          0          0          0          0          0          0          0  pmic_arb 555024415 Edge      input-current-limiting\n487:          0          0          0          0          0          0          0          0  pmic_arb 555155487 Edge      switcher-power-ok\n488:          0          0          0          0          0          0          0          0  pmic_arb 555745312 Edge      bat-temp\n489:          0          0          0          0          0          0          0          0  pmic_arb 555876384 Edge      bat-ov\n490:          0          0          0          0          0          0          0          0  pmic_arb 555941920 Edge      bat-low\n491:          0          0          0          0          0          0          0          0  pmic_arb 556007456 Edge      bat-therm-or-id-missing\n492:          0          0          0          0          0          0          0          0  pmic_arb 556072992 Edge      bat-terminal-missing\n495:          0          0          0          0          0          0          0          0  pmic_arb 556793889 Edge      usbin-collapse\n496:          0          0          0          0          0          0          0          0  pmic_arb 556859425 Edge      usbin-vashdn\n497:          0          0          0          0          0          0          0          0  pmic_arb 556924961 Edge      usbin-uv\n498:          0          0          0          0          0          0          0          0  pmic_arb 556990497 Edge      usbin-ov\n499:          0          0          0          0          0          0          0          0  pmic_arb 557056033 Edge      usbin-plugin\n501:          0          0          0          0          0          0          0          0  pmic_arb 557187105 Edge      usbin-src-change\n502:          0          0          0          0          0          0          0          0  pmic_arb 557252641 Edge      usbin-icl-change\n504:          0          0          0          0          0          0          0          0  pmic_arb 557973538 Edge      dcin-uv\n505:          0          0          0          0          0          0          0          0  pmic_arb 558039074 Edge      dcin-ov\n506:          0          0          0          0          0          0          0          0  pmic_arb 558104610 Edge      dcin-plugin\n508:          0          0          0          0          0          0          0          0  pmic_arb 558235682 Edge      dcin-pon\n509:          0          0          0          0          0          0          0          0  pmic_arb 558301218 Edge      dcin-en\n510:          0          0          0          0          0          0          0          0  pmic_arb 558891043 Edge      typec-or-rid-detect-change\n512:          0          0          0          0          0          0          0          0  pmic_arb 559022115 Edge      typec-cc-state-change\n513:          0          0          0          0          0          0          0          0  pmic_arb 559087651 Edge      typec-vconn-oc\n515:          0          0          0          0          0          0          0          0  pmic_arb 559218723 Edge      typec-attach-detach\n516:          0          0          0          0          0          0          0          0  pmic_arb 559284259 Edge      typec-legacy-cable-detect\n518:          0          0          0          0          0          0          0          0  pmic_arb 559939620 Edge      wdog-snarl\n519:          0          0          0          0          0          0          0          0  pmic_arb 560005156 Edge      wdog-bark\n521:          0          0          0          0          0          0          0          0  pmic_arb 560136228 Edge      aicl-done\n522:          0          0          0          0          0          0          0          0  pmic_arb 560201764 Edge      smb-en\n523:          0          0          0          0          0          0          0          0  pmic_arb 560332836 Edge      temp-change\n525:          0          0          0          0          0          0          0          0   msmgpio  39 Edge      NVT-ts-spi\nIPI0:        69         52         52         52         46         47         47         46       Rescheduling interrupts\nIPI1:         0          6          6          6          6          6          6          6       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:       132          4          4          4          4          4          4          5       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8250/k30s/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    5 root      0:00 [kworker/0:0-eve]\n    6 root      0:00 [kworker/0:0H-ev]\n    7 root      0:00 [kworker/0:1-dm_]\n    8 root      0:00 [kworker/u16:0+L]\n    9 root      0:00 [mm_percpu_wq]\n   10 root      0:00 [ksoftirqd/0]\n   11 root      0:00 [rcu_preempt]\n   12 root      0:00 [rcu_sched]\n   13 root      0:00 [rcu_bh]\n   14 root      0:00 [rcuop/0]\n   15 root      0:00 [rcuos/0]\n   16 root      0:00 [rcuob/0]\n   17 root      0:00 [migration/0]\n   18 root      0:00 [cpuhp/0]\n   19 root      0:00 [cpuhp/1]\n   20 root      0:00 [migration/1]\n   21 root      0:00 [ksoftirqd/1]\n   22 root      0:00 [kworker/1:0-mm_]\n   23 root      0:00 [kworker/1:0H]\n   24 root      0:00 [rcuop/1]\n   25 root      0:00 [rcuos/1]\n   26 root      0:00 [rcuob/1]\n   27 root      0:00 [cpuhp/2]\n   28 root      0:00 [migration/2]\n   29 root      0:00 [ksoftirqd/2]\n   30 root      0:00 [kworker/2:0-mm_]\n   31 root      0:00 [kworker/2:0H]\n   32 root      0:00 [rcuop/2]\n   33 root      0:00 [rcuos/2]\n   34 root      0:00 [rcuob/2]\n   35 root      0:00 [cpuhp/3]\n   36 root      0:00 [migration/3]\n   37 root      0:00 [ksoftirqd/3]\n   38 root      0:00 [kworker/3:0-mm_]\n   39 root      0:00 [kworker/3:0H]\n   40 root      0:00 [rcuop/3]\n   41 root      0:00 [rcuos/3]\n   42 root      0:00 [rcuob/3]\n   43 root      0:00 [cpuhp/4]\n   44 root      0:00 [migration/4]\n   45 root      0:00 [ksoftirqd/4]\n   46 root      0:00 [kworker/4:0-mm_]\n   47 root      0:00 [kworker/4:0H]\n   48 root      0:00 [rcuop/4]\n   49 root      0:00 [rcuos/4]\n   50 root      0:00 [rcuob/4]\n   51 root      0:00 [cpuhp/5]\n   52 root      0:00 [migration/5]\n   53 root      0:00 [ksoftirqd/5]\n   54 root      0:00 [kworker/5:0-mm_]\n   55 root      0:00 [kworker/5:0H]\n   56 root      0:00 [rcuop/5]\n   57 root      0:00 [rcuos/5]\n   58 root      0:00 [rcuob/5]\n   59 root      0:00 [cpuhp/6]\n   60 root      0:00 [migration/6]\n   61 root      0:00 [ksoftirqd/6]\n   62 root      0:00 [kworker/6:0-mm_]\n   63 root      0:00 [kworker/6:0H]\n   64 root      0:00 [rcuop/6]\n   65 root      0:00 [rcuos/6]\n   66 root      0:00 [rcuob/6]\n   67 root      0:00 [cpuhp/7]\n   68 root      0:00 [migration/7]\n   69 root      0:00 [ksoftirqd/7]\n   70 root      0:00 [kworker/7:0-mm_]\n   71 root      0:00 [kworker/7:0H]\n   72 root      0:00 [rcuop/7]\n   73 root      0:00 [rcuos/7]\n   74 root      0:00 [rcuob/7]\n   75 root      0:00 [kdevtmpfs]\n   76 root      0:00 [netns]\n   77 root      0:00 [rcu_tasks_kthre]\n   78 root      0:00 [kworker/u16:1+M]\n   79 root      0:00 [kworker/u17:0-n]\n   80 root      0:00 [ipa_usb_wq]\n   81 root      0:00 [msm_watchdog]\n   82 root      0:00 [qmp_aop]\n   83 root      0:00 [oom_reaper]\n   84 root      0:00 [writeback]\n   85 root      0:00 [kcompactd0]\n   86 root      0:00 [crypto]\n   87 root      0:00 [kblockd]\n   88 root      0:00 [irq/222-arm-smm]\n   89 root      0:00 [irq/223-arm-smm]\n   90 root      0:00 [irq/232-arm-smm]\n   91 root      0:00 [irq/233-arm-smm]\n   92 root      0:00 [longpress]\n   93 root      0:00 [irq/107-tsens-u]\n   94 root      0:00 [irq/108-tsens-c]\n   95 root      0:00 [irq/109-tsens-u]\n   96 root      0:00 [irq/110-tsens-c]\n   97 root      0:00 [edac-poller]\n   98 root      0:00 [irq/8-dcvsh-irq]\n   99 root      0:00 [irq/9-dcvsh-irq]\n  100 root      0:00 [irq/10-dcvsh-ir]\n  101 root      0:00 [ion-pool-uncach]\n  102 root      0:00 [ion-pool-cached]\n  103 root      0:00 [system]\n  104 root      0:00 [ipa_power_mgmt]\n  105 root      0:00 [transport_power]\n  106 root      0:00 [ipa_pm_activate]\n  107 root      0:00 [irq/239-arm-smm]\n  108 root      0:00 [irq/240-arm-smm]\n  109 root      0:00 [irq/241-arm-smm]\n  110 root      0:00 [irq/242-arm-smm]\n  111 root      0:00 [devfreq_wq]\n  112 root      0:00 [governor_msm_ad]\n  113 root      0:00 [irq/77-qpnp_lcd]\n  114 root      0:00 [irq/243-arm-smm]\n  116 root      0:00 [irq/244-arm-smm]\n  117 root      0:00 [irq/245-arm-smm]\n  118 root      0:00 [cfg80211]\n  155 root      0:00 [kswapd0]\n  156 root      0:00 [ecryptfs-kthrea]\n  196 root      0:00 [irq/81-wled_ovp]\n  197 root      0:00 [irq/83-wled_fla]\n  198 root      0:00 [irq/82-wled_pre]\n  199 root      0:00 [irq/246-arm-smm]\n  200 root      0:00 [irq/247-arm-smm]\n  201 root      0:00 [irq/248-arm-smm]\n  202 root      0:00 [irq/331-smp2p]\n  203 root      0:00 [irq/332-smp2p]\n  204 root      0:00 [irq/333-smp2p]\n  205 root      0:00 [kworker/1:1-mm_]\n  206 root      0:00 [kworker/2:1-mm_]\n  207 root      0:00 [kworker/4:1-mm_]\n  208 root      0:00 [kworker/3:1-mm_]\n  209 root      0:00 [kworker/5:1-mm_]\n  210 root      0:00 [kworker/6:1-mm_]\n  211 root      0:00 [kworker/7:1-mm_]\n  212 root      0:00 [okl4vtty]\n  213 root      0:00 [hwrng]\n  215 root      0:00 [diag_real_time_]\n  216 root      0:00 [diag_wq]\n  217 root      0:00 [DIAG_USB_diag]\n  218 root      0:00 [diag_cntl_wq]\n  219 root      0:00 [diag_dci_wq]\n  220 root      0:00 [MODEM_CNTL]\n  221 root      0:00 [MODEM_DATA]\n  222 root      0:00 [MODEM_CMD]\n  223 root      0:00 [MODEM_DCI]\n  224 root      0:00 [MODEM_DCI_CMD]\n  225 root      0:00 [LPASS_CNTL]\n  226 root      0:00 [LPASS_DATA]\n  227 root      0:00 [LPASS_CMD]\n  228 root      0:00 [LPASS_DCI]\n  229 root      0:00 [LPASS_DCI_CMD]\n  230 root      0:00 [WCNSS_CNTL]\n  231 root      0:00 [WCNSS_DATA]\n  232 root      0:00 [WCNSS_CMD]\n  233 root      0:00 [WCNSS_DCI]\n  234 root      0:00 [WCNSS_DCI_CMD]\n  235 root      0:00 [SENSORS_CNTL]\n  236 root      0:00 [SENSORS_DATA]\n  237 root      0:00 [SENSORS_CMD]\n  238 root      0:00 [SENSORS_DCI]\n  239 root      0:00 [SENSORS_DCI_CMD]\n  240 root      0:00 [DIAG_CTRL]\n  241 root      0:00 [DIAG_DATA]\n  242 root      0:00 [DIAG_CMD]\n  243 root      0:00 [DIAG_DCI_DATA]\n  244 root      0:00 [DIAG_DCI_CMD]\n  245 root      0:00 [CDSP_CNTL]\n  246 root      0:00 [CDSP_DATA]\n  247 root      0:00 [CDSP_CMD]\n  248 root      0:00 [CDSP_DCI]\n  249 root      0:00 [CDSP_DCI_CMD]\n  250 root      0:00 [NPU_CNTL]\n  251 root      0:00 [NPU_DATA]\n  252 root      0:00 [NPU_CMD]\n  253 root      0:00 [NPU_DCI]\n  254 root      0:00 [NPU_DCI_CMD]\n  255 root      0:00 [DIAG_RPMSG_DIAG]\n  256 root      0:00 [DIAG_RPMSG_DIAG]\n  257 root      0:00 [DIAG_RPMSG_DIAG]\n  258 root      0:00 [DIAG_RPMSG_DIAG]\n  259 root      0:00 [DIAG_RPMSG_DIAG]\n  260 root      0:00 [kworker/u16:2+W]\n  261 root      0:00 [diag_mhi_MDM]\n  262 root      0:00 [DIAG_USB_diag_m]\n  263 root      0:00 [kworker/u16:3+S]\n  264 root      0:00 [kworker/u16:4+D]\n  265 root      0:00 [diag_mhi_MDM_DC]\n  266 root      0:00 [kworker/u16:5+C]\n  267 root      0:00 [diag_dci_MDM_DC]\n  268 root      0:00 [kworker/u16:6+N]\n  269 root      0:00 [diag_mhi_MDM_2]\n  271 root      0:00 [DIAG_USB_diag_m]\n  272 root      0:00 [diag_mhi_MDM_DC]\n  273 root      0:00 [diag_dci_MDM_DC]\n  274 root      0:00 [kgsl-workqueue]\n  275 root      0:00 [kgsl-mementry]\n  276 root      0:00 [kgsl_worker_thr]\n  277 root      0:01 [kworker/u16:8-r]\n  278 root      0:00 [qseecom-unreg-l]\n  279 root      0:00 [qseecom-unload-]\n  280 root      0:00 [irq/249-arm-smm]\n  281 root      0:00 [irq/250-arm-smm]\n  282 root      0:00 [irq/251-arm-smm]\n  283 root      0:00 [qcrypto_seq_res]\n  284 root      0:00 [irq/252-arm-smm]\n  305 root      0:00 [scsi_eh_0]\n  306 root      0:00 [scsi_tmf_0]\n  307 root      0:00 [ufs_pm_qos_0]\n  308 root      0:00 [ufs_recovery_wq]\n  309 root      0:00 [ufs_clk_gating_]\n  310 root      0:00 [ice-set-key]\n  311 root      0:00 [ufs_clkscaling_]\n  312 root      0:00 [spi0]\n  313 root      0:00 [spi1]\n  314 root      0:00 [bond0]\n  315 root      0:00 [kworker/u16:9-e]\n  316 root      0:00 [irq/253-arm-smm]\n  321 root      0:00 [k_ipa_usb]\n  325 root      0:01 [kworker/u16:11-]\n  326 root      0:00 [irq/254-arm-smm]\n  327 root      0:00 [irq/255-arm-smm]\n  328 root      0:00 [mhi_special_w]\n  329 root      0:00 [irq/439-aw8697]\n  330 root      0:00 [aw8976_vibrator]\n  332 root      0:00 [kworker/u16:13+]\n  333 root      0:00 [irq/440-i2c_pmi]\n  334 root      0:00 [msm_cvp_workerq]\n  335 root      0:00 [pm_workerq_iris]\n  336 root      0:00 [irq/256-arm-smm]\n  337 root      0:00 [irq/257-arm-smm]\n  338 root      0:00 [irq/258-arm-smm]\n  339 root      0:00 [irq/259-arm-smm]\n  340 root      0:00 [npu_general_wq]\n  341 root      0:00 [irq/59-ptrain-d]\n  342 root      0:00 [irq/444-soc-upd]\n  343 root      0:00 [irq/445-soc-rea]\n  344 root      0:00 [irq/446-bsoc-de]\n  345 root      0:00 [irq/447-msoc-de]\n  346 root      0:00 [irq/448-msoc-lo]\n  347 root      0:00 [irq/449-msoc-em]\n  348 root      0:00 [irq/450-msoc-hi]\n  349 root      0:00 [irq/451-msoc-fu]\n  350 root      0:00 [irq/452-vbatt-l]\n  351 root      0:00 [irq/453-vbatt-p]\n  352 root      0:00 [irq/454-esr-del]\n  353 root      0:00 [irq/455-batt-mi]\n  354 root      0:00 [irq/456-batt-id]\n  355 root      0:00 [irq/457-batt-te]\n  356 root      0:00 [irq/458-batt-te]\n  357 root      0:00 [irq/459-batt-te]\n  358 root      0:00 [irq/460-ima-rdy]\n  359 root      0:00 [irq/461-ima-xcp]\n  360 root      0:00 [irq/462-dma-xcp]\n  361 root      0:00 [irq/463-dma-gra]\n  362 root      0:00 [irq/464-mem-att]\n  363 root      0:00 [irq/465-bq2597x]\n  364 root      0:00 [irq/50-bcl-lvl0]\n  365 root      0:00 [irq/51-bcl-lvl1]\n  366 root      0:00 [irq/52-bcl-lvl2]\n  367 root      0:00 [irq/73-bcl-lvl0]\n  368 root      0:00 [irq/74-bcl-lvl1]\n  369 root      0:00 [irq/75-bcl-lvl2]\n  370 root      0:00 [kworker/0:1H-kb]\n  371 root      0:00 [dm_bufio_cache]\n  372 root      0:00 [irq/95-KRYO L3-]\n  373 root      0:00 [memlat_wq]\n  374 root      0:00 [irq/260-arm-smm]\n  375 root      0:00 [irq/469-mdm sta]\n  376 root      0:00 [irq/261-arm-smm]\n  377 root      0:00 [uaudio_svc]\n  378 root      0:00 [apr_driver]\n  379 root      0:00 [irq/470-cs35l41]\n  380 root      0:00 [irq/471-cs35l41]\n  381 root      0:00 [irq/262-arm-smm]\n  382 root      0:00 [irq/263-arm-smm]\n  383 root      0:00 [irq/264-arm-smm]\n  384 root      0:00 [irq/265-arm-smm]\n  386 root      0:00 [irq/266-arm-smm]\n  387 root      0:00 [cam-cpas]\n  388 root      0:00 [qcom,cam_virtua]\n  389 root      0:00 [qcom,cam170-cpa]\n  390 root      0:00 [cam_cci_wq]\n  391 root      0:00 [cam_cci_wq]\n  392 root      0:00 [cam_cci_wq]\n  393 root      0:00 [cam_cci_wq]\n  394 root      0:00 [dsi_dma_cmd_wor]\n  395 root      0:00 [dsi_dma_cmd_wor]\n  396 root      0:00 [irq/238-arm-smm]\n  397 root      0:00 [irq/267-arm-smm]\n  398 root      0:00 [crtc_commit:127]\n  399 root      0:00 [crtc_event:127]\n  400 root      0:00 [crtc_commit:180]\n  401 root      0:00 [crtc_event:180]\n  402 root      0:00 [pp_event]\n  403 root      0:00 [msm_vidc_worker]\n  404 root      0:00 [pm_workerq_venu]\n  405 root      0:00 [vidc_core_workq]\n  406 root      0:00 [irq/268-arm-smm]\n  407 root      0:00 [irq/269-arm-smm]\n  408 root      0:00 [irq/270-arm-smm]\n  409 root      0:00 [irq/271-arm-smm]\n  410 root      0:00 [ipv6_addrconf]\n  411 root      0:00 [irq/334-smp2p]\n  412 root      0:00 [irq/224-arm-smm]\n  413 root      0:00 [irq/225-arm-smm]\n  414 root      0:00 [irq/226-arm-smm]\n  415 root      0:00 [kgsl-events]\n  416 root      0:00 [kgsl_devfreq_wq]\n  424 root      0:00 [irq/474-chgr-er]\n  426 root      0:00 [irq/475-chg-sta]\n  427 root      0:00 [irq/481-otg-fai]\n  428 root      0:00 [irq/484-high-du]\n  429 root      0:00 [irq/485-input-c]\n  431 root      0:00 [irq/487-switche]\n  432 root      0:00 [irq/488-bat-tem]\n  433 root      0:00 [irq/489-bat-ov]\n  434 root      0:00 [irq/490-bat-low]\n  436 root      0:00 [irq/491-bat-the]\n  437 root      0:00 [irq/492-bat-ter]\n  438 root      0:00 [irq/495-usbin-c]\n  439 root      0:00 [irq/496-usbin-v]\n  440 root      0:00 [irq/497-usbin-u]\n  441 root      0:00 [irq/498-usbin-o]\n  442 root      0:00 [irq/499-usbin-p]\n  443 root      0:00 [irq/501-usbin-s]\n  444 root      0:00 [irq/502-usbin-i]\n  445 root      0:00 [irq/504-dcin-uv]\n  446 root      0:00 [irq/505-dcin-ov]\n  447 root      0:00 [irq/506-dcin-pl]\n  448 root      0:00 [irq/508-dcin-po]\n  449 root      0:00 [irq/509-dcin-en]\n  450 root      0:00 [irq/510-typec-o]\n  451 root      0:00 [irq/512-typec-c]\n  452 root      0:00 [irq/513-typec-v]\n  453 root      0:00 [irq/515-typec-a]\n  454 root      0:00 [irq/516-typec-l]\n  455 root      0:00 [irq/518-wdog-sn]\n  456 root      0:00 [irq/519-wdog-ba]\n  457 root      0:00 [irq/521-aicl-do]\n  458 root      0:00 [irq/522-smb-en]\n  459 root      0:00 [irq/523-temp-ch]\n  460 root      0:00 [irq/26-qcom,tem]\n  461 root      0:00 [irq/43-qcom,tem]\n  462 root      0:00 [irq/57-qcom,tem]\n  463 root      0:00 [irq/35-thr-int-]\n  464 root      0:00 [irq/54-thr-int-]\n  466 root      0:00 [irq/76-thr-int-]\n  472 root      0:00 [irq/41-sig-tx]\n  473 root      0:00 [irq/42-sig-rx]\n  474 root      0:00 [irq/336-pwr_eve]\n  475 root      0:00 [irq/335-dp_hs_p]\n  476 root      0:00 [irq/338-dm_hs_p]\n  477 root      0:00 [irq/337-ss_phy_]\n  478 root      0:00 [usb_bam_wq]\n  479 root      0:00 [core_ctl/0]\n  480 root      0:00 [core_ctl/4]\n  481 root      0:00 [core_ctl/7]\n  482 root      0:00 [rq_stats]\n  483 root      0:00 [msm_perf:events]\n  484 root      0:00 [cdsprm-wq]\n  485 root      0:00 [cdsprm-wq-delay]\n  486 root      0:00 [irq/272-arm-smm]\n  487 root      0:00 [irq/273-arm-smm]\n  488 root      0:00 [irq/274-arm-smm]\n  489 root      0:00 [irq/275-arm-smm]\n  490 root      0:00 [irq/276-arm-smm]\n  491 root      0:00 [irq/277-arm-smm]\n  492 root      0:00 [irq/278-arm-smm]\n  493 root      0:00 [irq/279-arm-smm]\n  494 root      0:00 [irq/280-arm-smm]\n  495 root      0:00 [irq/281-arm-smm]\n  496 root      0:00 [irq/282-arm-smm]\n  497 root      0:00 [irq/283-arm-smm]\n  498 root      0:00 [irq/284-arm-smm]\n  499 root      0:00 [irq/285-arm-smm]\n  500 root      0:00 [irq/286-arm-smm]\n  501 root      0:00 [irq/287-arm-smm]\n  502 root      0:00 [sb-1]\n  503 root      0:00 [ngd_rx_thread1]\n  504 root      0:00 [ngd_notify_sl1]\n  505 root      0:00 [irq/525-NVT-ts-]\n  506 root      0:00 [nvt_lockdown_wq]\n  507 root      0:00 [nvt_fwu_wq]\n  508 root      0:00 [nvt_esd_check_w]\n  509 root      0:00 [irq/80-qpnp_fla]\n  510 root      0:00 [irq/79-qpnp_fla]\n  511 root      0:00 [irq/78-qpnp_fla]\n  521 root      0:00 [kworker/u17:1]\n  553 root      0:00 [kworker/0:5-eve]\n  614 root      0:00 [kworker/0:2-eve]\n  675 root      0:00 [kworker/0:3-eve]\n  703 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm8250/k30s/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1113.823891,3.712746303333333,28.58051041480685,6.415361086044046,38.96896786431073,224.466288143\r\n1,403200,1497.095634,3.7130348065476193,33.13341156801772,5.5332830275400084,45.18113365170572,167.000099467\r\n1,518400,1924.735156,3.71283787808642,48.477125478790384,6.296938438537334,39.701833270275785,129.895045887\r\n1,614400,2281.04271,3.7126346191406254,73.34708684876118,8.039290535697338,31.097271443283482,109.606132719\r\n1,691200,2566.076469,3.7124948914930553,46.464616304886256,4.527057886329885,55.22350415595781,97.430222099\r\n1,787200,2923.121894,3.713315414126016,86.36704868035267,7.387071207074968,33.84291189186893,85.53112929\r\n1,883200,3279.161584,3.7128188224637677,77.07094187421025,5.876200209698908,42.544500030370784,76.244043044\r\n1,979200,3635.411819,3.712634619076797,64.64063046685271,4.445466076404776,56.23707294200855,68.772009869\r\n1,1075200,3991.824743,3.7126346196056548,71.02260602283849,4.448226239220802,56.202177352335525,62.631132372\r\n1,1171200,4348.279821,3.712670612192623,120.68385249524539,6.939069255192049,36.02788656604652,57.497909718\r\n1,1248000,4633.319124,3.7125954519230766,78.64607991028278,4.243734777776923,58.91037331295296,53.959902167\r\n1,1344000,4990.418397,3.713108926339286,80.83632390235974,4.0498766697606605,61.73027486656143,50.099713523\r\n1,1420800,5275.263236,3.7128823451576576,85.31502780816996,4.043353965144924,61.82985762688214,47.393220972\r\n1,1516800,5631.518483,3.712762712948312,87.54662426704515,3.886653384932152,64.32268978993716,44.395239879\r\n1,1612800,5988.45426,3.71307927827381,91.55062324546313,3.8221641961316606,65.40796971857469,41.749188161\r\n1,1708800,6345.660837,3.7135187482443826,95.71126865305095,3.77099771276123,66.29545256789429,39.399725506\r\n1,1804800,6700.796055,3.7127637716090427,105.48852656045915,3.9359459203835856,63.51713287148919,37.311602017\r\n4,710400,6021.919788,8.476801503378379,122.56783591819482,5.089912848279193,49.116754540211915,41.527312693\r\n4,825600,7000.644059,8.479462280765503,141.76368908617118,5.064130758321263,49.36681375953924,35.722340403\r\n4,940800,7987.220447,8.4898176519983,163.9712823583545,5.134442532420416,48.69077770788645,31.313059571\r\n4,1056000,8953.834032,8.4790095,185.34468768999974,5.177174119323809,48.288891630450415,27.932681448\r\n4,1171200,9944.311854,8.490703427254097,211.99848233395969,5.332331121883613,46.8838101546269,25.152685355\r\n4,1286400,10925.61839,8.493173499689053,235.42001272036336,5.389563156130492,46.38594868595821,22.89339421\r\n4,1382400,11734.885468,8.488777103587962,252.75375589457116,5.387651838411711,46.40240451649163,21.315813169\r\n4,1478400,12530.700216,8.475852418831169,277.223796849684,5.534195061438444,45.17368781269885,19.962914888\r\n4,1574400,13334.755707,8.469738126905488,305.67424407061077,5.7344731113081835,43.59598434719462,18.760079472\r\n4,1670400,14169.122648,8.482472849616858,335.1991103834704,5.918090380227442,42.243356207478556,17.655447753\r\n4,1766400,14969.163523,8.474390581408514,353.2206288916872,5.903392465871166,42.34853119546193,16.713045567\r\n4,1862400,15799.785123,8.483561599548969,443.8951438876663,7.029152681474838,35.566164419627555,15.835164629\r\n4,1958400,16630.08049,8.491666916870916,462.6244229159282,6.9602827236277935,35.91808119393412,15.045212442\r\n4,2054400,17427.675148,8.483097326713395,479.85292763478554,6.8895365161716935,36.2869112331692,14.357600255\r\n4,2150400,18237.525533,8.480992156343005,495.66529613546135,6.800098774453641,36.764171858678104,13.719134318\r\n4,2246400,19053.425806,8.48176006321225,577.6983364158459,7.58749175290453,32.94896497308201,13.13400312\r\n4,2342400,19872.81399,8.483954059938524,624.8864949339163,7.86826347252104,31.773211569883852,12.591508276\r\n4,2419200,20522.08176,8.483003373015874,675.2612028086663,8.234222570931431,30.361093332909597,12.194129526\r\n7,844800,7171.749046,8.489286276041668,154.6635176422938,5.393214481324504,46.354544375287524,34.870631184\r\n7,960000,8147.568765,8.487050796875,171.92190093596633,5.277329801805002,47.37244200930794,30.696088009\r\n7,1075200,9116.102684,8.47851812127976,197.43675694803676,5.416744172931752,46.15318575488314,27.435338063\r\n7,1190400,10104.684532,8.488478269489246,219.77664095133304,5.440110129635524,45.954952021669726,24.752904158\r\n7,1305600,11083.525448,8.489219859068628,241.7130360730906,5.455047198810765,45.829117675554045,22.568278846\r\n7,1401600,11888.344667,8.48198106949201,261.5548557697997,5.503650991044761,45.4243919912048,21.04205244\r\n7,1516800,12858.759387,8.477557612737343,297.38113249436816,5.7853448149339375,43.21263606529816,19.454310253\r\n7,1632000,13840.447323,8.480666251838235,334.93663363733305,6.05417093095209,41.29384565636712,18.075571087\r\n7,1747200,14827.115829,8.48621556146978,369.0619307211872,6.22704194160519,40.147473285775824,16.872620618\r\n7,1862400,15799.785123,8.483561599548969,395.155024899133,6.257538190995647,39.951813695638364,15.835653849\r\n7,1977600,16786.409723,8.488273524979775,442.5661388314283,6.596550617033207,37.898594964838956,14.905231192\r\n7,2073600,17566.048342,8.471281029128086,487.67257883214256,6.9468292342771765,35.987641493538554,14.244863328\r\n7,2169600,18394.525789,8.478302815726401,619.8212539909997,8.431535111179903,29.650591108671215,13.603171974\r\n7,2265600,19223.375625,8.484893902277543,621.201340390083,8.086492748483584,30.915751460592247,13.017506922\r\n7,2361600,20040.08016,8.485806300813008,672.0342337593332,8.391658046609836,29.791490383833988,12.486950255\r\n7,2457600,20852.448077,8.48488284383138,695.7655542046359,8.349546959605531,29.941744289777738,12.00051786\r\n7,2553600,21684.447914,8.491716758302005,738.3891672764544,8.522710628584916,29.333390618884504,11.542301819\r\n7,2649600,22457.779375,8.475913109525965,793.3585708939089,8.841803465883064,28.274774593740823,11.144775881\r\n7,2745600,23314.370978,8.491539546182983,875.2984389009997,9.396435233036204,26.60583442548981,10.735121663\r\n7,2841600,24103.355187,8.482318126055745,927.6574223418999,9.632725627128686,25.95319431666609,10.383925569\r\n"
  },
  {
    "path": "results/sm8250/k30s/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 2681.626191425137, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1227.83901688, 1227.7711067999999, 1229.991882072, 1227.7031967199998, 1229.855823768, 1229.855823768, 1244.933035346, 1249.169188154, 1236.3181160330003, 1234.233756525, 1240.6233701290003, 1229.855823768, 1229.787794616, 1227.56737656, 1223.3258598110003, 1229.787794616, 1234.0289539050002, 1231.940302592, 1231.940302592, 1229.719765464, 1238.2652260290001, 1247.0166801780001, 1242.7116642260003, 1233.8921390400003, 1229.719765464, 1223.1225673920003, 1236.181342809, 1249.1000868659999, 1246.8094508160002], \"power_mean\": 1234.2436969978967, \"energy_millijoules\": 6171.218484989484, \"energy_joules\": 6.171218484989484}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 224.466288143, \"elapsed_ns\": 224466288143, \"power_samples\": [38.55130699199981, 47.162888627999564, 38.62112319999983, 40.63316476799969, 38.55130699199981, 38.62112319999983, 34.456455071999926, 25.562628543999608, 23.5489189919997, 27.78793229999974, 25.63172983199979, 27.857152903999577, 32.02205966399947, 27.718711695999446, 34.178142815999536, 29.939725355999826, 34.24772087999986, 23.479936775999704, 25.63172983199979, 21.259280575999583, 25.63172983199979, 25.424425967999696, 21.259280575999583, 21.328143719999844, 27.718711695999446, 27.718711695999446, 19.03886251999961, 29.870385679999572, 27.718711695999446, 27.718711695999446, 36.32981679999966, 47.09259588799955, 38.48149078399956, 40.49329420799995, 34.038986687999795, 25.355041477999748, 34.108564751999666, 31.74394000499956, 38.34185836799975, 29.592742796999573, 23.27299012799972, 27.44154558899936, 16.81427392799992, 23.341972343999487, 21.052408917999855, 21.052408917999855, 18.83234856599961, 18.970118447999766, 25.355041477999748, 23.203725197999802, 18.90109263799991, 29.592742796999573, 25.355041477999748, 16.676743166999813, 31.74394000499956, 25.216838901999836, 25.285940189999792, 31.674481256999798, 36.05074261199957, 31.74394000499956, 29.523403120999546, 31.74394000499956, 40.28320174799978, 31.674481256999798, 38.20193981999978, 31.60502250899981, 31.60502250899981, 25.14773761399988, 27.44154558899936, 20.91468262999956, 27.44154558899936, 27.23388377699939, 27.164663172999553, 31.60502250899981, 35.911348339999904, 31.466105012999606, 31.535563760999594, 33.62123314799965, 27.303104380999685, 27.44154558899936, 29.315384092999466, 25.00953503799974, 22.927796333999595, 20.708093197999688, 20.708093197999688, 23.065760765999812, 18.694860421999692, 25.216838901999836, 25.00953503799974, 20.708093197999688, 25.00953503799974, 25.00953503799974, 22.789831901999605, 14.251523222999822, 20.708093197999688, 16.402244142999734, 29.176704740999412, 16.333619386999544, 20.57036690999962, 24.940433749999556, 31.396646264999617, 31.32718751699963, 26.956717669999534, 33.48207701999968, 39.793368167999915, 37.64312402399969, 39.86330344799967, 31.187985353999693, 29.176704740999412, 27.026221964999422, 24.801947971999653, 24.801947971999653, 22.582602539999925, 26.887497065999696, 24.801947971999653, 33.48207701999968, 35.56257701599975, 42.08841485099947, 41.94801854999969, 35.56257701599975, 31.25744410199968, 29.107080885999494, 26.887497065999696, 37.57330781599967, 31.118526605999477, 24.732846683999696, 41.8779639539996, 37.50349160799988, 24.663745395999513, 29.037741209999695, 24.732846683999696, 22.513620323999703, 24.663745395999513, 22.582602539999925, 24.732846683999696, 26.887497065999696, 37.50349160799988, 35.42318274399963, 35.42318274399963, 31.04906785799949, 24.525542819999828, 35.42318274399963, 26.81827646199963, 26.679835253999727, 28.82972218199984, 31.187985353999693, 30.910150361999513, 28.760382505999587, 33.13390154399963, 31.04906785799949, 33.06432347999976, 24.594644107999784, 26.749055857999565, 33.203479607999725, 35.3534856079998, 24.456441531999644, 24.456441531999644, 26.61061464999966, 22.375655891999713, 13.771702673999926, 26.541394045999596, 20.156905819999793, 24.387340243999688, 24.456441531999644, 28.69104282999956, 30.910150361999513, 28.69104282999956, 32.92488219599977, 28.69104282999956, 30.701489450999816, 24.31795575399974, 17.86936808199971, 19.950034161999838, 17.86936808199971, 24.387340243999688, 32.855304131999674, 37.29404298399959, 37.15412443599985, 35.074411419999706, 41.457349268999906, 37.15412443599985, 28.69104282999956, 35.074411419999706, 26.47188975099948, 26.47188975099948, 22.237691459999724, 28.621418974999642, 22.168426529999806, 15.578184572999817, 30.701489450999816, 28.48273962299959, 19.881171017999804, 26.47188975099948, 19.881171017999804, 20.01889730599987, 24.1797531779996, 15.578184572999817, 22.03046209799959, 17.800624009999865, 19.881171017999804, 22.03046209799959, 28.48273962299959, 21.96147988199982, 37.01449201999981, 34.865320011999756, 34.865320011999756, 45.685876832999384, 37.08430822799983, 37.01449201999981, 30.562571954999612, 19.812307873999544, 24.04155060199969, 26.195007334999445, 34.7956228759997, 24.1797531779996, 26.333448542999577, 30.493113206999624, 32.64656993999961, 34.93501714799959, 37.01449201999981, 39.09372874799965, 36.94467581199956, 32.57699187599974], \"power_mean\": 28.58051041480685, \"energy_millijoules\": 6415.361086044047, \"energy_joules\": 6.415361086044046, \"coremark_score\": 1113.823891, \"coremarks_per_mhz\": 3.712746303333333, \"ulpmark_cm_score\": 38.96896786431073}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1246.7404685999998, 1251.118161504, 1244.657300544, 1246.7404685999998], \"power_mean\": 1247.3140998119998, \"energy_millijoules\": 6236.570499059999, \"energy_joules\": 6.236570499059999}}, \"403200\": {\"active\": {\"elapsed_sec\": 167.000099467, \"elapsed_ns\": 167000099467, \"power_samples\": [41.17713088499954, 26.125786730999607, 32.716148003999706, 39.02379346799967, 41.10707628899968, 34.65622860399981, 36.805043395999746, 32.50741381199987, 24.04155060199969, 34.725925739999866, 26.125786730999607, 28.20538091899971, 34.65622860399981, 30.354195710999647, 34.58624582399989, 25.987061831999654, 38.88363628799971, 26.05656612699954, 25.91784122799959, 28.066417387999536, 28.20538091899971, 28.13575706399979, 36.59530863999976, 34.5165486879996, 36.805043395999746, 45.26383230799934, 40.89662539199958, 43.045082479999564, 40.89662539199958, 34.44685155199977, 25.91784122799959, 27.99707771199951, 23.83396353599983, 25.84862062399975, 25.84862062399975, 21.547303871999702, 25.84862062399975, 25.84862062399975, 32.367972527999655, 23.695760959999916, 43.045082479999564, 40.75651619999962, 40.89662539199958, 45.19353956799978, 32.298394463999784, 34.30745727999965, 32.15923833599959, 51.502013007999494, 40.826570795999714, 42.834561475999635, 32.228816399999914, 34.30745727999965, 29.93715855599953, 36.3858600159997, 38.46402460799982, 36.52549243199974, 40.826570795999714, 38.60389516799955, 36.3858600159997, 47.1351630639997, 36.316043807999904, 40.68646160399953, 38.5339598879998, 32.08966027199972, 34.237760143999594, 23.488457095999593, 29.93715855599953, 38.46402460799982, 29.867699807999543, 21.133127861999583, 29.72849764499938, 29.797956392999367, 34.16806300799976, 36.316043807999904, 40.546065302999295, 42.62375287499958, 38.46402460799982, 47.06475100800003, 44.77149504299973, 42.69392654299941, 40.47601070699943, 34.02838309199956, 31.811062859999993, 34.09808022799962, 23.280870029999505, 23.280870029999505, 23.280870029999505, 36.17612525999948, 29.72849764499938, 34.02838309199956, 32.02008220799985, 36.24594146799973, 34.02838309199956, 27.511415800999657, 27.580755476999457, 38.18399686799967, 44.77149504299973, 46.853226265999865, 33.95868595599973, 34.02838309199956, 23.280870029999505, 25.433013308999534, 27.511415800999657, 23.280870029999505, 36.10630905199969, 38.18399686799967, 44.56061682299969, 51.07782225799974, 44.70120230299972, 33.88898881999967, 29.58958014899963, 33.88898881999967, 33.74959454799978, 27.442076124999403, 31.602328667999927, 18.778796261999787, 25.294572100999403, 25.294572100999403, 33.88898881999967, 40.19579232299975, 40.265846918999614, 42.3430582029996, 40.19579232299975, 40.33590151499948, 35.896860427999854, 29.450662652999654, 27.372736448999603, 23.00446487799968, 31.602328667999927, 31.462887383999714, 22.86597909999955, 29.381203904999666, 33.819291683999836, 33.74959454799978, 37.974191027999495, 40.05539602199951, 33.67989741199972, 33.6099146319998, 25.086910288999434, 29.31146048999949, 25.225351496999565, 35.82704421999961, 37.90396912799952, 35.75694187999966, 46.430465355999786, 25.156130892999727, 29.31146048999949, 25.017405993999546, 22.86597909999955, 33.67989741199972, 35.75694187999966, 39.915286829999786, 40.05539602199951, 25.017405993999546, 35.68712567199964, 29.31146048999949, 25.086910288999434, 18.571924603999605, 18.571924603999605, 24.948185389999708, 22.86597909999955, 20.718951851999464, 27.164433241999404, 24.948185389999708, 35.68712567199964, 29.24200174199973], \"power_mean\": 33.13341156801772, \"energy_millijoules\": 5533.283027540008, \"energy_joules\": 5.5332830275400084, \"coremark_score\": 1497.095634, \"coremarks_per_mhz\": 3.7130348065476193, \"ulpmark_cm_score\": 45.18113365170572}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1244.9460828420001, 1230.0310351360001, 1242.728285834, 1247.164117994], \"power_mean\": 1241.2173804515, \"energy_millijoules\": 6206.086902257501, \"energy_joules\": 6.206086902257501}}, \"518400\": {\"active\": {\"elapsed_sec\": 129.895045887, \"elapsed_ns\": 129895045887, \"power_samples\": [41.92172859799962, 42.132249601999774, 46.430465355999786, 44.20886503799966, 50.5123311079999, 50.5123311079999, 44.06827955799963, 39.84523223399947, 24.74052357799974, 31.18457512799978, 33.33112608799979, 39.775177637999604, 50.5123311079999, 43.99798681799962, 54.88072028599959, 41.99190226599967, 42.06207593399972, 46.28964124399977, 29.033625497999537, 39.84523223399947, 31.25415319199965, 35.40786084000001, 33.33112608799979, 39.775177637999604, 35.477677047999805, 24.809744181999577, 31.18457512799978, 24.74052357799974, 33.33112608799979, 33.26142895199973, 22.451371371999585, 24.74052357799974, 35.33804463199954, 33.121749035999756, 28.89470800199956, 33.121749035999756, 30.975555779999695, 31.18457512799978, 31.18457512799978, 28.964166749999777, 35.058493667999755, 28.824964586999613, 39.564726740999504, 31.04541899999981, 35.198126083999796, 35.198126083999796, 37.48435744799963, 43.927694077999604, 50.3000909579996, 52.51734352399967, 45.93729238999981, 50.3000909579996, 46.00770444599971, 45.93729238999981, 46.14881713199975, 50.37103070799981, 43.857113252999625, 41.64074632899974, 45.93729238999981, 30.975555779999695, 43.78682051299961, 39.49467214499964, 41.64074632899974, 39.49467214499964, 30.905977715999825, 33.0520518999997, 37.41413554799965, 39.354562952999686, 39.49467214499964, 33.0520518999997, 32.912657627999806, 32.912657627999806, 35.058493667999755, 37.27426498799946, 39.42461754899955, 47.871773189999885, 39.28450835699982, 50.15879055799951, 49.9468399579996, 39.354562952999686, 35.12830987599955, 32.912657627999806, 32.77326335599969, 32.98235476399941, 32.84296049199975, 37.204329707999705, 43.57594229299957, 50.017490157999646, 41.500398992999635, 39.214453760999504, 43.57594229299957, 45.65564416599955, 49.9468399579996, 43.7165277729996, 39.214453760999504, 45.7260562219999, 39.28450835699982, 34.91886125199949, 39.214453760999504, 39.14439916499964, 39.28450835699982, 34.91886125199949, 459.51881990799984, 39.214453760999504, 34.91886125199949, 32.77326335599969, 30.488224175999903, 30.55808739599979, 30.627665459999434, 39.07405745999972, 463.71397005699964, 30.418646111999806, 34.778942703999746, 28.408212098999684, 45.51453147999973, 41.149243055999705, 43.36477598799979, 43.29448324799978, 51.87983999999983, 457.0959567839998, 49.8052500079998, 45.373707367999714, 47.5188284879996, 47.5188284879996, 34.778942703999746, 38.93394826799954, 24.047750155999665, 39.00400286399963, 39.07405745999972], \"power_mean\": 48.477125478790384, \"energy_millijoules\": 6296.938438537334, \"energy_joules\": 6.296938438537334, \"coremark_score\": 1924.735156, \"coremarks_per_mhz\": 3.71283787808642, \"ulpmark_cm_score\": 39.701833270275785}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1243.8415192439998, 1237.3274130980003, 1232.9652101340002, 1233.1019833579999], \"power_mean\": 1236.8090314585002, \"energy_millijoules\": 6184.045157292501, \"energy_joules\": 6.184045157292501}}, \"614400\": {\"active\": {\"elapsed_sec\": 109.606132719, \"elapsed_ns\": 109606132719, \"power_samples\": [28.199551187999532, 32.49418916799959, 32.56388630399988, 45.30329531199959, 459.05081060799967, 56.10370870799966, 49.59329940799989, 60.3271006399998, 49.66394960799971, 45.23288325599992, 45.1624711999998, 36.71449612799984, 474.14560968, 41.079069387999425, 36.71449612799984, 47.377766231999885, 38.863893671999676, 43.0133122879995, 36.71449612799984, 40.938722051999775, 452.6214237079994, 49.38134880799976, 47.236703975999944, 53.67503323599976, 45.1624711999998, 51.66753218399981, 66.61890025599973, 49.38134880799976, 443.9576795199996, 38.65372988399963, 47.307235103999574, 34.36004545599985, 27.991174943999567, 38.79383907599981, 38.65372988399963, 34.29022924799983, 469.4811672559997, 38.65372988399963, 44.950946457999635, 53.604144647999874, 55.67737173299952, 53.5329655329997, 47.236703975999944, 38.72378447999972, 450.29366029199946, 32.21540062399981, 36.504690287999665, 49.38134880799976, 36.504690287999665, 42.872726807999925, 40.79837471599967, 38.65372988399963, 450.1075629559996, 27.92171619599958, 32.21540062399981, 40.65773978299944, 49.38134880799976, 55.819678067999575, 49.169108657999914, 51.38416505799978, 462.8693292109999, 44.950946457999635, 49.169108657999914, 38.51333358299962, 40.65773978299944, 38.58367528799977, 36.504690287999665, 32.006023571999776, 42.80214598299949, 47.02482152999983, 44.88053440199974, 42.872726807999925, 42.66156050299969, 44.810122345999844, 57.750651200999755, 57.750651200999755, 53.46207694499958, 55.67737173299952, 44.88053440199974, 42.80214598299949, 38.37322439099967, 38.37322439099967, 31.936326435999945, 38.44327898699976, 32.006023571999776, 34.29022924799983, 31.86662929999966, 34.010678283999596, 32.07572070799961, 31.936326435999945, 49.09845845799987, 38.303169794999576, 38.303169794999576, 36.08479198799978, 47.02482152999983, 53.320299768999575, 49.02780825799982, 44.669298233999825, 40.517392446999565, 36.15472726799953, 34.08049449199984, 33.9408620759998, 40.37704511099946, 42.52097502299944, 46.8132281459998, 55.32233343299981, 53.17852259299957, 49.09845845799987, 38.303169794999576], \"power_mean\": 73.34708684876118, \"energy_millijoules\": 8039.290535697338, \"energy_joules\": 8.039290535697338, \"coremark_score\": 2281.04271, \"coremarks_per_mhz\": 3.7126346191406254, \"ulpmark_cm_score\": 31.097271443283482}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1234.2893695080002, 1234.358155953, 1225.703536224, 1223.49026688], \"power_mean\": 1229.46033214125, \"energy_millijoules\": 6147.301660706251, \"energy_joules\": 6.147301660706251}}, \"691200\": {\"active\": {\"elapsed_sec\": 97.430222099, \"elapsed_ns\": 97430222099, \"power_samples\": [44.669298233999825, 59.75684026399972, 42.45068228299988, 38.16306060299962, 36.08479198799978, 42.52097502299944, 38.16306060299962, 48.95715805799978, 55.39334109299966, 48.88650785799996, 59.54310211999973, 53.24941118099946, 40.306871442999636, 40.306871442999636, 40.236697774999584, 38.16306060299962, 42.30980871799966, 44.52847412199958, 55.25132577299951, 57.39501754099956, 53.10763400499968, 50.95954942599951, 42.38038954299964, 40.236697774999584, 33.80122965999976, 42.38038954299964, 44.52847412199958, 50.88849011599973, 52.96556630199984, 50.746951571999944, 52.96556630199984, 52.96556630199984, 57.11021910999966, 55.10901943799968, 52.96556630199984, 55.18002709799953, 57.25247257399974, 53.03645488999973, 44.24653732399952, 54.96700411799952, 40.09606284199981, 44.24653732399952, 37.882555109999885, 40.09606284199981, 40.02588917399976, 33.591494903999774, 37.81250051399957, 37.95260970599975, 46.38975231599966, 59.40031803199986, 55.03801177799983, 63.54425591999984, 52.82378912599961, 48.53296730799957, 44.31694937999987, 44.24653732399952, 42.09893049799939, 33.661311111999794, 37.81250051399957, 44.45777349199966, 44.24653732399952, 46.46028344399997, 44.24653732399952, 52.89467771399973, 54.96700411799952, 52.82378912599961, 46.38975231599966, 37.81250051399957, 42.09893049799939, 37.81250051399957, 37.81250051399957, 42.09893049799939, 37.882555109999885, 50.67618229999971, 42.09893049799939, 52.82378912599961, 46.24869005999972, 50.60541302799993, 54.89599645799967, 50.53464375599947, 52.68201194999938, 46.3192211879998, 48.46231710799998, 42.09893049799939, 54.824988797999595, 48.391666907999706, 42.02863775799983, 39.815368169999374, 37.7424459179997, 42.09893049799939, 35.525023127999475, 41.95834501799959, 41.88805227799958, 41.95834501799959, 54.68268246299954, 48.32101670799989, 54.68268246299954], \"power_mean\": 46.464616304886256, \"energy_millijoules\": 4527.057886329885, \"energy_joules\": 4.527057886329885, \"coremark_score\": 2566.076469, \"coremarks_per_mhz\": 3.7124948914930553, \"ulpmark_cm_score\": 55.22350415595781}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1229.3839633350003, 1233.672537591, 1250.6967051809997, 1246.4086072129999], \"power_mean\": 1240.04045333, \"energy_millijoules\": 6200.20226665, \"energy_joules\": 6.20020226665}}, \"787200\": {\"active\": {\"elapsed_sec\": 85.53112929, \"elapsed_ns\": 85531129290, \"power_samples\": [43.96460052599991, 44.035301155999605, 46.10733874199968, 35.525023127999475, 48.25007695799968, 46.17815893199963, 61.11528796799985, 61.11528796799985, 61.11528796799985, 61.043922847999966, 52.61112336199949, 37.5319950209996, 46.10733874199968, 43.82377641399967, 48.17942675799986, 54.61167480299969, 54.54066714299961, 61.043922847999966, 58.9013037039997, 50.39281517399991, 58.97254975199962, 54.54066714299961, 43.82377641399967, 41.747178712999585, 41.747178712999585, 50.32204590199967, 43.89418846999979, 56.82542067899976, 52.53994424699954, 58.9013037039997, 474.30218966999973, 62.97208941599979, 67.47617089299979, 65.18595460799975, 60.97255772799963, 50.180507357999886, 50.32204590199967, 48.17942675799986, 465.6466714569997, 43.682952301999876, 54.46965948299953, 50.251276629999666, 58.75881160799986, 56.612040482999646, 62.97208941599979, 60.829827487999864, 476.25666146299955, 50.10973808599988, 41.53630049299977, 41.676885972999344, 43.75336435799977, 41.53630049299977, 45.8252142299998, 45.89574535799966, 471.785469726, 56.540913750999835, 62.97208941599979, 62.82912103199965, 54.327644162999604, 52.25638989499976, 52.25638989499976, 47.89682595799968, 463.4136246929995, 35.105124827999816, 37.1817220409996, 45.8252142299998, 45.75468310199972, 54.185337827999774, 47.96747615799973, 60.68709724799987, 471.785469726, 58.61631951199979, 54.185337827999774, 54.256636502999754, 62.97208941599979, 47.826175757999636, 50.038968813999645, 43.682952301999876, 476.25666146299955, 47.826175757999636, 47.75523600799988, 60.68709724799987, 62.757343871999865, 56.32724205199975, 56.32724205199975], \"power_mean\": 86.36704868035267, \"energy_millijoules\": 7387.071207074968, \"energy_joules\": 7.387071207074968, \"coremark_score\": 2923.121894, \"coremarks_per_mhz\": 3.713315414126016, \"ulpmark_cm_score\": 33.84291189186893}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1235.198920666, 1233.0557056740001, 1232.9871999900001, 1233.0557056740001], \"power_mean\": 1233.5743830010001, \"energy_millijoules\": 6167.871915005, \"energy_joules\": 6.1678719150050005}}, \"883200\": {\"active\": {\"elapsed_sec\": 76.244043044, \"elapsed_ns\": 76244043044, \"power_samples\": [58.2597972799997, 51.972545015999685, 62.68585968000002, 54.114330167999924, 58.2597972799997, 54.04332250799962, 43.2601913919998, 477.82701839999936, 54.114330167999924, 64.68443830399974, 66.90209630799973, 66.90209630799973, 64.8276448319998, 62.54289129599988, 62.68585968000002, 477.82701839999936, 58.33104332799962, 53.97231484799977, 45.472269527999515, 47.61393560799979, 51.90165642799957, 49.61406314399983, 51.759879251999564, 479.9653485119993, 58.33104332799962, 53.901307187999464, 47.4726352079997, 43.189779335999674, 41.043963227999484, 43.2601913919998, 41.043963227999484, 53.901307187999464, 479.8705127879998, 47.61393560799979, 51.759879251999564, 43.189779335999674, 43.33060344799969, 47.401985007999656, 43.189779335999674, 53.901307187999464, 43.2601913919998, 49.684832415999836, 49.61406314399983, 58.188551231999554, 60.32997916799968, 51.688990663999675, 55.97160839199978, 51.759879251999564, 47.4726352079997, 49.543293871999595, 51.54692296099984, 60.18724892799992, 62.328438719999895, 53.687993192999784, 68.75639577999982, 58.11730518399963, 62.47140710399958, 55.90048165999974, 57.97452109599999, 64.46962851199987, 64.39773179199983, 68.75639577999982, 68.6124180429997, 64.46962851199987, 58.11730518399963, 53.830299527999614, 58.11730518399963, 53.759291867999764, 51.688990663999675, 55.82906342499973, 57.97452109599999, 57.97452109599999, 57.97452109599999, 55.90048165999974, 57.90327504799984, 47.189744857999585], \"power_mean\": 77.07094187421025, \"energy_millijoules\": 5876.200209698908, \"energy_joules\": 5.876200209698908, \"coremark_score\": 3279.161584, \"coremarks_per_mhz\": 3.7128188224637677, \"ulpmark_cm_score\": 42.544500030370784}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1230.2283442890002, 1234.512391857, 1238.938555106, 1245.161785268], \"power_mean\": 1237.2102691300001, \"energy_millijoules\": 6186.051345650001, \"energy_joules\": 6.186051345650001}}, \"979200\": {\"active\": {\"elapsed_sec\": 68.772009869, \"elapsed_ns\": 68772009869, \"power_samples\": [68.6124180429997, 72.8266275179999, 60.0442262079996, 62.185177367999586, 59.97286108799972, 68.54057639099983, 68.6124180429997, 79.17668652599991, 64.18292199999996, 72.75454747799995, 68.46873473899973, 74.96745960599992, 68.54057639099983, 72.8266275179999, 74.82306138199988, 70.60944775499979, 77.03597350999985, 72.8266275179999, 68.6124180429997, 68.46873473899973, 64.18292199999996, 66.32802172299989, 64.25452526399977, 72.89870755799961, 57.76078295199977, 55.473429764999764, 57.83202899999969, 72.61038739799983, 61.89924059999976, 66.18457656299961, 57.6182908559997, 72.61038739799983, 64.0397154719999, 64.0397154719999, 61.89924059999976, 68.39689308699963, 68.32505143499975, 68.32505143499975, 68.39689308699963, 68.39689308699963, 70.46552630699989, 70.53748703099973, 72.61038739799983, 55.33088479799949, 59.830130847999726, 57.6182908559997, 61.89924059999976, 55.473429764999764, 57.6182908559997, 57.6182908559997, 59.758765727999844, 55.473429764999764, 57.40426071999991, 64.0397154719999, 61.89924059999976, 65.9691148779998, 68.32505143499975, 74.75086226999997, 66.11285398299992, 64.0397154719999, 63.968112207999866, 57.54704480799978, 59.687400607999734, 55.402303032999725, 51.19248002099971, 48.90579034799953, 51.12159143299982, 55.402303032999725], \"power_mean\": 64.64063046685271, \"energy_millijoules\": 4445.466076404777, \"energy_joules\": 4.445466076404776, \"coremark_score\": 3635.411819, \"coremarks_per_mhz\": 3.712634619076797, \"ulpmark_cm_score\": 56.23707294200855}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1234.100362072, 1234.168986828, 1234.100362072, 1238.387367728], \"power_mean\": 1235.189269675, \"energy_millijoules\": 6175.9463483750005, \"energy_joules\": 6.175946348375001}}, \"1075200\": {\"active\": {\"elapsed_sec\": 62.631132372, \"elapsed_ns\": 62631132372, \"power_samples\": [61.827756407999914, 53.119640897999716, 72.32177182800001, 74.60616814799982, 74.53396903599969, 72.32177182800001, 65.9691148779998, 57.261768623999615, 59.54437788799987, 59.54437788799987, 61.75597924799945, 65.89739229799966, 61.75597924799945, 59.47301276799976, 65.89739229799966, 74.46176992399978, 72.32177182800001, 61.61301086399976, 70.17738848999966, 61.61301086399976, 61.61301086399976, 61.61301086399976, 61.54152667199969, 68.03739039399989, 65.89739229799966, 74.31737169999974, 76.38481346799995, 63.75300895999999, 65.89739229799966, 61.47004247999985, 52.83561025799963, 53.048633237999866, 61.47004247999985, 61.54152667199969, 67.8218654379998, 65.89739229799966, 65.89739229799966, 72.24969178799984, 61.47004247999985, 59.25891740799989, 54.97525113799975, 57.048030479999625, 61.54152667199969, 63.53819916799989, 67.8218654379998, 74.1729734759997, 72.17761174799989, 69.96150631799992, 61.54152667199969, 59.33028252799977, 61.398558287999776, 53.048633237999866, 57.11927652799977, 61.398558287999776, 61.398558287999776, 63.53819916799989, 65.61050197799955, 67.96554874199956, 57.190522575999694, 72.10553170799994, 63.53819916799989, 488.94721219799976], \"power_mean\": 71.02260602283849, \"energy_millijoules\": 4448.226239220802, \"energy_joules\": 4.448226239220802, \"coremark_score\": 3991.824743, \"coremarks_per_mhz\": 3.7126346196056548, \"ulpmark_cm_score\": 56.202177352335525}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1244.4000749329998, 1237.973906638, 1240.1145005820001, 1233.688332287], \"power_mean\": 1239.04420361, \"energy_millijoules\": 6195.221018050001, \"energy_joules\": 6.195221018050001}}, \"1171200\": {\"active\": {\"elapsed_sec\": 57.497909718, \"elapsed_ns\": 57497909718, \"power_samples\": [72.03345166799977, 82.58979583499968, 71.88899617799984, 78.45201709199978, 71.96107621799979, 74.1729734759997, 484.47968658399964, 71.88899617799984, 61.255296935999695, 63.32309591999979, 63.39469918399982, 61.255296935999695, 54.69045270699985, 65.46676287299965, 61.327074095999706, 486.80664892799973, 61.327074095999706, 61.327074095999706, 65.61050197799955, 61.255296935999695, 63.46659590399963, 67.53420439699994, 71.88899617799984, 486.6156337919999, 76.09524434600007, 71.96107621799979, 69.60140777699962, 71.81691613800012, 71.81691613800012, 80.45051265899974, 84.65628429499975, 492.83651292499985, 84.65628429499975, 78.23440844999982, 67.60604604899981, 71.74483609799972, 71.96107621799979, 61.11232855200001, 63.32309591999979, 499.34404374599967, 56.90524639199975, 78.08953393799993, 69.52944705299979, 78.16197119399976, 71.74483609799972, 73.88388112999974, 76.02292616199975, 480.0135056349998, 67.39052109299973, 67.46236274499961, 71.67275605799978, 61.04084435999971, 63.17988939199972, 65.17987255299977, 71.74483609799972, 471.84459318799986, 73.88388112999974], \"power_mean\": 120.68385249524539, \"energy_millijoules\": 6939.069255192048, \"energy_joules\": 6.939069255192049, \"coremark_score\": 4348.279821, \"coremarks_per_mhz\": 3.712670612192623, \"ulpmark_cm_score\": 36.02788656604652}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1237.629308692, 1248.3336844140001, 1239.769306788, 1648.312236384], \"power_mean\": 1343.5111340695, \"energy_millijoules\": 6717.5556703475, \"energy_joules\": 6.7175556703475}}, \"1248000\": {\"active\": {\"elapsed_sec\": 53.959902167, \"elapsed_ns\": 53959902167, \"power_samples\": [82.37176890299975, 82.22641761499972, 82.22641761499972, 82.37176890299975, 73.66728379399979, 78.01709668199987, 78.08953393799993, 69.38552560499966, 75.95060797799988, 75.80597160999992, 73.81168201799983, 71.60067601799983, 75.80597160999992, 60.826391783999725, 62.965079599999854, 65.10814997299963, 71.60067601799983, 67.31867944099986, 63.10828612799992, 78.01709668199987, 499.15198939399943, 73.59508468199988, 84.43790014699971, 69.45748632899972, 69.31356488099959, 67.24683778899976, 67.17499613699965, 67.24683778899976, 67.17499613699965, 67.39052109299973, 71.45651593799971, 69.38552560499966, 64.96441086799973, 58.61633884799994, 63.036682863999886, 60.68313043199987, 60.68313043199987, 67.17499613699965, 75.66103885599978, 71.45651593799971, 60.68313043199987, 67.10286005199964, 73.59508468199988, 60.826391783999725, 69.09738778799965, 71.45651593799971, 71.38414048799973, 73.45039055999973, 73.59508468199988, 67.17499613699965, 69.31356488099959, 71.45651593799971, 73.52258967199987], \"power_mean\": 78.64607991028278, \"energy_millijoules\": 4243.734777776923, \"energy_joules\": 4.243734777776923, \"coremark_score\": 4633.319124, \"coremarks_per_mhz\": 3.7125954519230766, \"ulpmark_cm_score\": 58.91037331295296}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1245.777364083, 1233.001522229, 1226.65186281, 1230.7251086130002], \"power_mean\": 1234.0389644337502, \"energy_millijoules\": 6170.194822168751, \"energy_joules\": 6.17019482216875}}, \"1344000\": {\"active\": {\"elapsed_sec\": 50.099713523, \"elapsed_ns\": 50099713523, \"power_samples\": [88.35443188799968, 77.58217627199997, 81.93541718799975, 77.58217627199997, 77.58217627199997, 77.72705078399963, 77.58217627199997, 81.86274154399985, 77.72705078399963, 84.1464229439996, 88.28139878399975, 92.5575827199998, 92.70412521599951, 88.28139878399975, 84.00083351199964, 88.28139878399975, 88.28139878399975, 92.5575827199998, 88.28139878399975, 73.30599233599969, 81.86274154399985, 71.16790036799989, 88.28139878399975, 94.62666545999946, 92.5575827199998, 88.28139878399975, 92.5575827199998, 83.7824493639996, 86.06601169199962, 92.41104022399963, 75.29944793599975, 81.79006589999949, 79.57953643199949, 77.29213037399995, 71.02374028799977, 66.6718101399997, 73.30599233599969, 66.81549344399969, 73.23379322399956, 62.46356329599962, 66.74365179199981, 81.79006589999949, 81.71739025599959, 75.44408430399994, 71.16790036799989, 81.79006589999949, 71.02374028799977, 77.3648645039998, 77.58217627199997, 79.50697985999977], \"power_mean\": 80.83632390235974, \"energy_millijoules\": 4049.87666976066, \"energy_joules\": 4.0498766697606605, \"coremark_score\": 4990.418397, \"coremarks_per_mhz\": 3.713108926339286, \"ulpmark_cm_score\": 61.73027486656143}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1236.9403950260003, 1232.6583984490003, 1228.380784673, 1230.5195915610004], \"power_mean\": 1232.1247924272502, \"energy_millijoules\": 6160.623962136251, \"energy_joules\": 6.160623962136251}}, \"1420800\": {\"active\": {\"elapsed_sec\": 47.393220972, \"elapsed_ns\": 47393220972, \"power_samples\": [62.53516655999965, 100.81903856299982, 81.57174111699987, 90.12658224399956, 79.43412592499976, 85.84697150099964, 83.70935630899999, 81.57174111699987, 81.57174111699987, 85.70114392499977, 83.70935630899999, 81.49906547299952, 79.36156935299982, 77.29213037399995, 81.57174111699987, 70.8072047579999, 73.01689998999996, 72.94470087799982, 81.57174111699987, 87.98896705199991, 94.25941185899978, 92.1909261879996, 98.6077946629996, 87.91593394799952, 87.98896705199991, 85.70114392499977, 85.70114392499977, 77.14725586199984, 77.14725586199984, 72.800302654, 92.11765493999951, 92.04438369199966, 94.11263073099963, 92.04438369199966, 91.97111244399957, 89.98027789199955, 94.11263073099963, 94.11263073099963, 94.25941185899978, 96.24976963499967, 89.83397353999953, 98.3869085389997, 87.6968346359995, 85.48240256099984, 79.14389963699955, 77.00238134999995, 79.14389963699955], \"power_mean\": 85.31502780816996, \"energy_millijoules\": 4043.3539651449237, \"energy_joules\": 4.043353965144924, \"coremark_score\": 5275.263236, \"coremarks_per_mhz\": 3.7128823451576576, \"ulpmark_cm_score\": 61.82985762688214}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1236.664660224, 1236.59579708, 1236.5269339360002, 1232.4522429320002], \"power_mean\": 1235.5599085430001, \"energy_millijoules\": 6177.799542715001, \"energy_joules\": 6.177799542715001}}, \"1516800\": {\"active\": {\"elapsed_sec\": 44.395239879, \"elapsed_ns\": 44395239879, \"power_samples\": [87.6968346359995, 79.14389963699955, 81.28103854099959, 81.28103854099959, 79.14389963699955, 83.41817744499986, 87.6968346359995, 98.3869085389997, 98.31327983099982, 94.03924016699989, 98.1657206579996, 94.03924016699989, 89.68766918799975, 85.48240256099984, 89.76082136399964, 87.47743600799959, 81.20836289699969, 81.28103854099959, 89.68766918799975, 87.55076842799963, 102.59169863399984, 100.45029966299967, 96.10275036299981, 89.68766918799975, 78.9987864929999, 81.06271375799975, 81.28103854099959, 93.89215825799965, 102.36979461199962, 85.26336236999964, 87.40440290399965, 83.2725880129999, 89.61421720799945, 81.06271375799975, 87.40440290399965, 87.40440290399965, 83.2725880129999, 87.40440290399965, 89.61421720799945, 87.40440290399965, 78.85337598599972, 78.85337598599972, 78.85337598599972, 85.19044858199982], \"power_mean\": 87.54662426704515, \"energy_millijoules\": 3886.6533849321518, \"energy_joules\": 3.886653384932152, \"coremark_score\": 5631.518483, \"coremarks_per_mhz\": 3.712762712948312, \"ulpmark_cm_score\": 64.32268978993716}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1242.668425069, 1236.2511991340002, 1236.389207648, 1240.526429518], \"power_mean\": 1238.95881534225, \"energy_millijoules\": 6194.79407671125, \"energy_joules\": 6.194794076711251}}, \"1612800\": {\"active\": {\"elapsed_sec\": 41.749188161, \"elapsed_ns\": 41749188161, \"power_samples\": [91.67772715999945, 85.33627615799969, 87.40440290399965, 95.95542982199959, 87.25833669599956, 95.88192018599989, 93.74537712999995, 95.88192018599989, 91.53118466399951, 95.88192018599989, 91.60445591199982, 80.91736246999972, 85.19044858199982, 87.33136979999972, 80.99003811399962, 87.33136979999972, 93.67198656599953, 97.87120582599982, 106.3466979079999, 97.87120582599982, 80.91736246999972, 87.18530359199963, 91.38464216799957, 102.07432622799979, 95.66139127799988, 91.38464216799957, 93.52520543799983, 93.52520543799983, 87.25833669599956, 91.38464216799957, 95.73490091399981, 87.18530359199963, 84.97170721799966, 95.66139127799988, 102.07432622799979, 91.31137091999972, 78.63570626999967, 84.97170721799966, 102.07432622799979, 102.07432622799979, 84.89879342999961], \"power_mean\": 91.55062324546313, \"energy_millijoules\": 3822.1641961316604, \"energy_joules\": 3.8221641961316606, \"coremark_score\": 5988.45426, \"coremarks_per_mhz\": 3.71307927827381, \"ulpmark_cm_score\": 65.40796971857469}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1221.075044616, 1225.3539401950002, 1242.3915426529998, 1240.250024366], \"power_mean\": 1232.2676379575, \"energy_millijoules\": 6161.338189787501, \"energy_joules\": 6.161338189787501}}, \"1708800\": {\"active\": {\"elapsed_sec\": 39.399725506, \"elapsed_ns\": 39399725506, \"power_samples\": [18.99180915399961, 89.24845632799975, 93.52520543799983, 89.1753041519994, 112.68517015799966, 104.0622365099996, 89.1753041519994, 99.86001517799946, 108.41303662199971, 110.4744550749997, 99.86001517799946, 91.31137091999972, 97.65001794499972, 101.77855510999984, 99.86001517799946, 101.92628930199953, 87.03923738399953, 93.3781235289996, 106.19818371799965, 99.7122173729997, 97.65001794499972, 89.10185217199955, 99.78596515299955, 99.7122173729997, 101.77855510999984, 82.61683889099982, 93.45181487399964, 112.38701418299956, 108.26428331099987, 93.23134240099989, 86.81983875599963, 97.57638923699983, 110.3257678189998, 93.23134240099989, 93.30473296499963, 91.09125688399968, 84.67975323899987, 97.35550311299971, 106.04997323799967], \"power_mean\": 95.71126865305095, \"energy_millijoules\": 3770.99771276123, \"energy_joules\": 3.77099771276123, \"coremark_score\": 6345.660837, \"coremarks_per_mhz\": 3.7135187482443826, \"ulpmark_cm_score\": 66.29545256789429}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1231.4223090940002, 1229.285646966, 1216.456917386, 1229.285646966], \"power_mean\": 1226.6126301030001, \"energy_millijoules\": 6133.063150515, \"energy_joules\": 6.133063150515}}, \"1804800\": {\"active\": {\"elapsed_sec\": 37.311602017, \"elapsed_ns\": 37311602017, \"power_samples\": [108.19005875499988, 108.19005875499988, 99.63846959299985, 95.29354182899965, 112.38701418299956, 118.72334020799985, 97.42913182099983, 101.77855510999984, 112.46147688299993, 118.72334020799985, 97.42913182099983, 97.42913182099983, 114.52260417499974, 110.25142419099961, 103.76629183799969, 112.31255148299988, 101.55695382199951, 93.08456127299974, 103.69230566999931, 101.6308209179997, 95.22003219299972, 112.38701418299956, 112.16362608299983, 114.37344063099954, 105.75355227799969, 103.69230566999931, 97.2818744049996, 97.35550311299971, 114.37344063099954, 114.29885885899967, 103.6183195019994, 99.34347847299978, 93.01117070899977, 97.2818744049996, 107.8931605309997, 112.16362608299983, 114.37344063099954], \"power_mean\": 105.48852656045915, \"energy_millijoules\": 3935.9459203835854, \"energy_joules\": 3.9359459203835856, \"coremark_score\": 6700.796055, \"coremarks_per_mhz\": 3.7127637716090427, \"ulpmark_cm_score\": 63.51713287148919}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1233.357117412, 1229.080129914, 1231.14781007, 1224.8757876299999], \"power_mean\": 1229.6152112565, \"energy_millijoules\": 6148.0760562825, \"energy_joules\": 6.1480760562825}}}}, \"4\": {\"freqs\": {\"710400\": {\"active\": {\"elapsed_sec\": 41.527312693, \"elapsed_ns\": 41527312693, \"power_samples\": [124.98377369299965, 118.4985730879996, 118.4985730879996, 124.98377369299965, 139.93915407899976, 126.89280779999967, 120.70893266399958, 114.07480787999975, 116.51316819999943, 114.22397142399973, 118.4985730879996, 135.43668283199963, 124.98377369299965, 122.69811620399969, 120.63368630399964, 109.80505773599975, 112.01439550799978, 112.01439550799978, 118.42375292799966, 133.37746191199972, 129.02768287199956, 118.34893276799949, 114.14938965199985, 116.28875878399981, 120.55874707199973, 126.7422144159998, 135.43668283199963, 126.89280779999967, 122.47294055999987, 118.34893276799949, 122.62305765599967, 112.01439550799978, 129.02768287199956, 129.02768287199956, 124.83311034799999, 124.75793272799979, 116.13935660799962, 120.4838078399996, 128.9522671079999, 132.99919115199964, 128.9522671079999], \"power_mean\": 122.56783591819482, \"energy_millijoules\": 5089.912848279193, \"energy_joules\": 5.089912848279193, \"coremark_score\": 6021.919788, \"coremarks_per_mhz\": 8.476801503378379, \"ulpmark_cm_score\": 49.116754540211915}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1235.4245591800002, 1218.25840752, 1220.326166328, 1237.56074502], \"power_mean\": 1227.892469512, \"energy_millijoules\": 6139.46234756, \"energy_joules\": 6.13946234756}}, \"825600\": {\"active\": {\"elapsed_sec\": 35.722340403, \"elapsed_ns\": 35722340403, \"power_samples\": [145.81433139199976, 145.8907004639998, 139.4067612719998, 133.0748453039996, 133.0748453039996, 143.82805835199997, 145.8907004639998, 143.67555883999967, 139.48277288399981, 137.26798871999972, 132.99919115199964, 143.75180859599982, 154.43314589999954, 145.81433139199976, 141.54116005599985, 135.13358993599968, 128.72601981599973, 135.13358993599968, 145.66128025999978, 152.14048700399962, 148.1017064639998, 145.81433139199976, 139.4067612719998, 134.98173294199978, 132.99919115199964, 150.08312895999984, 154.35630029599974, 141.46471736099988, 141.38858667699992, 139.4067612719998, 130.7889477179997, 139.33043813699987, 143.37024731699967, 154.0486029389997, 143.44649707299982], \"power_mean\": 141.76368908617118, \"energy_millijoules\": 5064.130758321263, \"energy_joules\": 5.064130758321263, \"coremark_score\": 7000.644059, \"coremarks_per_mhz\": 8.479462280765503, \"ulpmark_cm_score\": 49.36681375953924}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1217.9185788, 1220.122078872, 1228.7373207330004, 1224.3293675250002], \"power_mean\": 1222.7768364825001, \"energy_millijoules\": 6113.884182412501, \"energy_joules\": 6.113884182412501}}, \"940800\": {\"active\": {\"elapsed_sec\": 31.313059571, \"elapsed_ns\": 31313059571, \"power_samples\": [158.39353070299944, 164.7225857699998, 171.12872458499965, 175.40094139199982, 171.12872458499965, 160.37753868999948, 160.45474175399977, 164.7225857699998, 170.97312724899962, 160.45474175399977, 149.77638613199974, 160.45474175399977, 175.24486727999988, 155.95163091899963, 151.75685556399958, 175.0884733439998, 170.81721106599957, 153.97175733499944, 160.37753868999948, 160.14561309199985, 173.1068111129996, 170.8953285809996, 168.7617637889996, 164.5677033539996, 156.02859559499962, 166.62382693799964, 175.24486727999988, 170.81721106599957, 160.22313256199982, 155.95163091899963, 149.54656448399965], \"power_mean\": 163.9712823583545, \"energy_millijoules\": 5134.442532420416, \"energy_joules\": 5.134442532420416, \"coremark_score\": 7987.220447, \"coremarks_per_mhz\": 8.4898176519983, \"ulpmark_cm_score\": 48.69077770788645}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1245.414708996, 1238.9362502879999, 1230.461000012, 1228.3260058680003], \"power_mean\": 1235.784491291, \"energy_millijoules\": 6178.922456455, \"energy_joules\": 6.178922456455}}, \"1056000\": {\"active\": {\"elapsed_sec\": 27.932681448, \"elapsed_ns\": 27932681448, \"power_samples\": [185.76007131799975, 175.1668302239998, 187.8147648179995, 200.62346491799963, 187.89351654999973, 175.01043628799948, 181.41041476799955, 187.89351654999973, 192.0067985879998, 181.48880903999998, 187.89351654999973, 189.87359149999975, 189.95246254799986, 187.57850962199973, 185.60280599799967, 177.221918576, 189.79472045199986, 196.3524410279997, 179.27708860799976, 177.0656063199997, 187.89351654999973, 196.3524410279997, 194.14000567599987, 181.3320204959998, 174.93239923199985, 176.98745019199987, 176.98745019199987], \"power_mean\": 185.34468768999974, \"energy_millijoules\": 5177.1741193238095, \"energy_joules\": 5.177174119323809, \"coremark_score\": 8953.834032, \"coremarks_per_mhz\": 8.4790095, \"ulpmark_cm_score\": 48.288891630450415}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1223.98775004, 1225.9858518880003, 1219.577566848, 1241.0062795], \"power_mean\": 1227.639362069, \"energy_millijoules\": 6138.196810345, \"energy_joules\": 6.138196810345}}, \"1171200\": {\"active\": {\"elapsed_sec\": 25.152685355, \"elapsed_ns\": 25152685355, \"power_samples\": [198.25209601799952, 217.29671875799977, 217.45755818999965, 213.0312571579998, 204.6510028499995, 206.78834263199974, 204.5712980539995, 213.1916203019996, 215.16398795799978, 223.6185043319997, 202.51803390599957, 202.35886245799998, 208.6814820239997, 206.54887029599968, 223.6185043319997, 223.69928150799979, 208.761425208, 217.21629904199972, 210.81409375199974, 200.14666500599947, 198.09340085799977, 219.26804190499956, 212.87056540099957, 223.53739610199955, 227.80675029899976], \"power_mean\": 211.99848233395969, \"energy_millijoules\": 5332.331121883613, \"energy_joules\": 5.332331121883613, \"coremark_score\": 9944.311854, \"coremarks_per_mhz\": 8.490703427254097, \"ulpmark_cm_score\": 46.8838101546269}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1230.117876232, 1223.7146798800002, 1234.391047568, 1227.983477448], \"power_mean\": 1229.051770282, \"energy_millijoules\": 6145.25885141, \"energy_joules\": 6.1452588514099995}}, \"1286400\": {\"active\": {\"elapsed_sec\": 22.89339421, \"elapsed_ns\": 22893394210, \"power_samples\": [229.85810783099987, 234.20422680299976, 223.45661892599946, 229.85810783099987, 236.2595967359996, 229.85810783099987, 244.54755285299984, 229.77697319499953, 227.64471917099968, 223.29506457399975, 240.2791522079997, 246.679568733, 242.49738652899964, 240.2791522079997, 233.87873568299983, 229.61470392299975, 229.61470392299975, 244.54755285299984, 238.14713632799953, 242.4155369729997, 248.8115846129997, 233.71599012299976], \"power_mean\": 235.42001272036336, \"energy_millijoules\": 5389.563156130493, \"energy_joules\": 5.389563156130492, \"coremark_score\": 10925.61839, \"coremarks_per_mhz\": 8.493173499689053, \"ulpmark_cm_score\": 46.38594868595821}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1227.777679635, 1225.5752519430002, 1238.383156782, 1240.590672185], \"power_mean\": 1233.08169013625, \"energy_millijoules\": 6165.4084506812505, \"energy_joules\": 6.165408450681251}}, \"1382400\": {\"active\": {\"elapsed_sec\": 21.315813169, \"elapsed_ns\": 21315813169, \"power_samples\": [238.06552515999942, 248.72937784099963, 248.64717106899957, 263.66139277899947, 259.39759916299977, 254.9639700639998, 255.0468726739996, 246.4329692079998, 244.3836155969998, 248.64717106899957, 246.4329692079998, 255.0468726739996, 259.1488519479999, 269.8109153759999, 259.1488519479999, 259.1488519479999, 261.2803910519999, 248.56462738399978, 250.6183276239999, 250.70065371199962, 239.95189628799972], \"power_mean\": 252.75375589457116, \"energy_millijoules\": 5387.651838411711, \"energy_joules\": 5.387651838411711, \"coremark_score\": 11734.885468, \"coremarks_per_mhz\": 8.488777103587962, \"ulpmark_cm_score\": 46.40240451649163}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1231.981390758, 1238.175852918, 1236.042288126, 1227.640668267], \"power_mean\": 1233.46005001725, \"energy_millijoules\": 6167.30025008625, \"energy_joules\": 6.16730025008625}}, \"1478400\": {\"active\": {\"elapsed_sec\": 19.962914888, \"elapsed_ns\": 19962914888, \"power_samples\": [276.0423892279998, 271.9424544799997, 263.4119301559999, 269.7275171519998, 265.29835692799975, 276.0423892279998, 278.1736901879999, 288.83892982799966, 280.14137042399966, 282.44065952799974, 280.3093585679999, 265.29835692799975, 269.560720704, 271.6083852959996, 286.5345588719995, 286.5345588719995, 295.152372064, 284.31926383999985, 275.87487785999974], \"power_mean\": 277.223796849684, \"energy_millijoules\": 5534.195061438444, \"energy_joules\": 5.534195061438444, \"coremark_score\": 12530.700216, \"coremarks_per_mhz\": 8.475852418831169, \"ulpmark_cm_score\": 45.17368781269885}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1233.8395779640002, 1240.17506487, 1237.8991645639999, 1242.377730706], \"power_mean\": 1238.572884526, \"energy_millijoules\": 6192.86442263, \"energy_joules\": 6.1928644226300005}}, \"1574400\": {\"active\": {\"elapsed_sec\": 18.760079472, \"elapsed_ns\": 18760079472, \"power_samples\": [303.59616219599957, 301.4607324479996, 305.72722501199974, 307.5157662829995, 301.2048274879994, 313.9977905579997, 305.3851802429997, 301.11964220799973, 299.0741223759994, 296.8584701279997, 307.5157662829995, 318.09128980499963, 324.48705642000004, 311.6955231899999, 294.64305602399986, 303.25459420299967, 303.25459420299967, 303.25459420299967], \"power_mean\": 305.67424407061077, \"energy_millijoules\": 5734.473111308183, \"energy_joules\": 5.7344731113081835, \"coremark_score\": 13334.755707, \"coremarks_per_mhz\": 8.469738126905488, \"ulpmark_cm_score\": 43.59598434719462}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1239.967403058, 1244.2333409459998, 1233.5641253879999, 1229.293816662], \"power_mean\": 1236.7646715135, \"energy_millijoules\": 6183.823357567499, \"energy_joules\": 6.1838233575674995}}, \"1670400\": {\"active\": {\"elapsed_sec\": 17.655447753, \"elapsed_ns\": 17655447753, \"power_samples\": [335.2308486229995, 324.48705642000004, 324.48705642000004, 328.6612561639995, 337.09980249099954, 334.96957366699985, 352.0201347049997, 341.36462536199997, 328.48778777999973, 339.2300313149997, 326.357678028, 328.48778777999973, 328.48778777999973, 328.40069812, 345.5373957539998, 345.3616618679996, 349.71369424199975], \"power_mean\": 335.1991103834704, \"energy_millijoules\": 5918.0903802274415, \"energy_joules\": 5.918090380227442, \"coremark_score\": 14169.122648, \"coremarks_per_mhz\": 8.482472849616858, \"ulpmark_cm_score\": 42.243356207478556}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1224.822718938, 1224.8911055500002, 1231.2936683, 1233.495262244], \"power_mean\": 1228.625688758, \"energy_millijoules\": 6143.12844379, \"energy_joules\": 6.14312844379}}, \"1766400\": {\"active\": {\"elapsed_sec\": 16.713045567, \"elapsed_ns\": 16713045567, \"power_samples\": [148.39682831599976, 364.72147845899985, 364.54359541799954, 356.10802955199983, 360.27948868799945, 360.19096743999944, 364.54359541799954, 370.8484561719997, 368.7143398779997, 385.76544899999976, 377.24207656199997, 368.6253420979999, 362.2364431699998, 357.8844110399996, 370.75933907599983, 370.6702219799997], \"power_mean\": 353.2206288916872, \"energy_millijoules\": 5903.392465871166, \"energy_joules\": 5.903392465871166, \"coremark_score\": 14969.163523, \"coremarks_per_mhz\": 8.474390581408514, \"ulpmark_cm_score\": 42.34853119546193}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1226.8865442210001, 1220.484697856, 1231.2936683, 1235.4208827539999], \"power_mean\": 1228.52144828275, \"energy_millijoules\": 6142.607241413751, \"energy_joules\": 6.14260724141375}}, \"1862400\": {\"active\": {\"elapsed_sec\": 15.835164629, \"elapsed_ns\": 15835164629, \"power_samples\": [442.9266330579999, 442.73991574299953, 453.4875905329993, 451.07313849199954, 446.8155405239995, 440.4247812789995, 444.5934544839997, 440.6108786149996, 434.1267132419998, 431.81265091399973, 440.51782994699965, 448.94433950799953, 438.2030526989995, 448.94433950799953, 453.20629976899954], \"power_mean\": 443.8951438876663, \"energy_millijoules\": 7029.152681474839, \"energy_joules\": 7.029152681474838, \"coremark_score\": 15799.785123, \"coremarks_per_mhz\": 8.483561599548969, \"ulpmark_cm_score\": 35.566164419627555}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1230.88092213, 1226.7495328530001, 1233.1506642979998, 1224.685665441], \"power_mean\": 1228.8666961805, \"energy_millijoules\": 6144.3334809025, \"energy_joules\": 6.1443334809025}}, \"1958400\": {\"active\": {\"elapsed_sec\": 15.045212442, \"elapsed_ns\": 15045212442, \"power_samples\": [449.0378647079997, 450.97949421999965, 474.1228058519996, 472.18454376299974, 469.86616143599963, 467.73783922799953, 463.4768334959997, 459.2158277639994, 452.83086113999957, 467.73783922799953, 463.4768334959997, 465.6051557039998, 465.5106774399999, 454.95918334799944], \"power_mean\": 462.6244229159282, \"energy_millijoules\": 6960.2827236277935, \"energy_joules\": 6.9602827236277935, \"coremark_score\": 16630.08049, \"coremarks_per_mhz\": 8.491666916870916, \"ulpmark_cm_score\": 35.91808119393412}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1235.075971674, 1243.538468799, 1235.075971674, 1228.7445373650003], \"power_mean\": 1235.6087373780001, \"energy_millijoules\": 6178.043686890001, \"energy_joules\": 6.178043686890001}}, \"2054400\": {\"active\": {\"elapsed_sec\": 14.357600255, \"elapsed_ns\": 14357600255, \"power_samples\": [470.0559829229999, 486.8057920159997, 488.93399515199985, 482.5493857439999, 478.38381158399966, 471.80481219600006, 476.160415264, 482.3585225999998, 477.9078456639995, 482.3585225999998, 482.26309102799974, 486.4231131519996, 480.13088476799976, 471.80481219600006], \"power_mean\": 479.85292763478554, \"energy_millijoules\": 6889.536516171694, \"energy_joules\": 6.8895365161716935, \"coremark_score\": 17427.675148, \"coremarks_per_mhz\": 8.483097326713395, \"ulpmark_cm_score\": 36.2869112331692}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1228.401132336, 1232.806066352, 1241.337067208, 1239.274913327], \"power_mean\": 1235.45479480575, \"energy_millijoules\": 6177.27397402875, \"energy_joules\": 6.17727397402875}}, \"2150400\": {\"active\": {\"elapsed_sec\": 13.719134318, \"elapsed_ns\": 13719134318, \"power_samples\": [52.12913324799979, 531.2297092279998, 539.5481567999998, 541.4778251999999, 539.350456056, 530.8366201169999, 524.3523390899995, 524.4501533219998, 528.7092509729998, 526.5775224659999, 532.7674077329998, 537.1245577599996, 535.0957177679998], \"power_mean\": 495.66529613546135, \"energy_millijoules\": 6800.0987744536405, \"energy_joules\": 6.800098774453641, \"coremark_score\": 18237.525533, \"coremarks_per_mhz\": 8.480992156343005, \"ulpmark_cm_score\": 36.764171858678104}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1239.136188428, 1243.190890392, 1226.3382179880002, 1228.4697570920002], \"power_mean\": 1234.2837634750001, \"energy_millijoules\": 6171.418817375001, \"energy_joules\": 6.171418817375001}}, \"2246400\": {\"active\": {\"elapsed_sec\": 13.13400312, \"elapsed_ns\": 13134003120, \"power_samples\": [570.9771248279999, 570.8766895479996, 575.3361809829996, 573.0079407909996, 562.5646772329994, 570.7762542679998, 585.8749255859998, 581.5198706019999, 585.5711177699998, 577.1609337629995, 579.0898280039999, 585.4694334599999, 591.8533965699999], \"power_mean\": 577.6983364158459, \"energy_millijoules\": 7587.49175290453, \"energy_joules\": 7.58749175290453, \"coremark_score\": 19053.425806, \"coremarks_per_mhz\": 8.48176006321225, \"ulpmark_cm_score\": 32.94896497308201}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1243.190890392, 1240.9903688279999, 1238.8593060119997, 1232.4617506319998], \"power_mean\": 1238.875578966, \"energy_millijoules\": 6194.37789483, \"energy_joules\": 6.19437789483}}, \"2342400\": {\"active\": {\"elapsed_sec\": 12.591508276, \"elapsed_ns\": 12591508276, \"power_samples\": [608.9773932989999, 617.1831358659997, 619.4126085179996, 615.1554189479998, 627.7153258959995, 621.1258457339998, 627.9226302479997, 623.3551993139995, 627.6116737199995, 631.7642575619998, 633.8901973539998, 644.5242527479998], \"power_mean\": 624.8864949339163, \"energy_millijoules\": 7868.26347252104, \"energy_joules\": 7.86826347252104, \"coremark_score\": 19872.81399, \"coremarks_per_mhz\": 8.483954059938524, \"ulpmark_cm_score\": 31.773211569883852}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1236.516289198, 1221.528719675, 1232.254878974, 1221.73380208], \"power_mean\": 1228.0084224817501, \"energy_millijoules\": 6140.042112408751, \"energy_joules\": 6.140042112408751}}, \"2419200\": {\"active\": {\"elapsed_sec\": 12.194129526, \"elapsed_ns\": 12194129526, \"power_samples\": [668.1344912899995, 674.3048355719998, 667.8167439979995, 674.1985623479995, 667.7103941529995, 665.4788963009998, 669.6283810979999, 678.1345886189999, 682.385514651, 675.8983778499996, 688.6591519399994, 690.7844958839996], \"power_mean\": 675.2612028086663, \"energy_millijoules\": 8234.222570931432, \"energy_joules\": 8.234222570931431, \"coremark_score\": 20522.08176, \"coremarks_per_mhz\": 8.483003373015874, \"ulpmark_cm_score\": 30.361093332909597}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1225.7213860710003, 1238.4436986969997, 1236.44718791, 1236.516289198], \"power_mean\": 1234.282140469, \"energy_millijoules\": 6171.410702345001, \"energy_joules\": 6.171410702345001}}}}, \"7\": {\"freqs\": {\"844800\": {\"active\": {\"elapsed_sec\": 34.870631184, \"elapsed_ns\": 34870631184, \"power_samples\": [161.77823295599978, 163.90762778799967, 159.64883812399967, 161.62303315799954, 161.7007917479998, 163.90762778799967, 149.14658951199976, 157.5966463559996, 151.0500496779996, 163.90762778799967, 163.83006750799996, 166.27442492199953, 165.88570858299954, 157.44224022799972, 157.51944329199978, 153.17932543799975, 148.916410648, 151.0500496779996, 153.17932543799975, 153.17932543799975, 148.83936990799953, 153.25629011399974, 157.51944329199978, 153.25629011399974, 146.86374210399958, 142.6049524399998, 142.6049524399998, 142.6049524399998, 148.83936990799953, 153.17932543799975, 146.86374210399958, 148.9931369359997, 155.3086011979999, 153.1020453329993], \"power_mean\": 154.6635176422938, \"energy_millijoules\": 5393.214481324504, \"energy_joules\": 5.393214481324504, \"coremark_score\": 7171.749046, \"coremarks_per_mhz\": 8.489286276041668, \"ulpmark_cm_score\": 46.354544375287524}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1242.634935741, 1238.305257489, 1246.830061476, 1238.305257489], \"power_mean\": 1241.5188780487501, \"energy_millijoules\": 6207.59439024375, \"energy_joules\": 6.2075943902437505}}, \"960000\": {\"active\": {\"elapsed_sec\": 30.696088009, \"elapsed_ns\": 30696088009, \"power_samples\": [178.58661453599962, 165.80802898699972, 165.96370653799977, 161.62303315799954, 163.83006750799996, 161.62303315799954, 174.2503841519997, 174.32854027999974, 172.1995031519998, 168.01486478299944, 180.4844736809996, 178.58661453599962, 184.8993369689997, 182.77041891299973, 174.2503841519997, 176.30102700799944, 163.67462907799973, 165.80802898699972, 167.93706611499942, 165.7303493909999, 172.04342903999964, 169.83235002299944, 178.42982599199968, 184.8205852369997, 180.4844736809996, 176.3793022079999, 165.57499019899956, 163.59706879799978, 172.04342903999964, 167.7814687789994], \"power_mean\": 171.92190093596633, \"energy_millijoules\": 5277.329801805002, \"energy_joules\": 5.277329801805002, \"coremark_score\": 8147.568765, \"coremarks_per_mhz\": 8.487050796875, \"ulpmark_cm_score\": 47.37244200930794}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1217.1271233359998, 1223.4541458790002, 1238.4436986969997, 1238.4436986969997], \"power_mean\": 1229.3671666522498, \"energy_millijoules\": 6146.835833261249, \"energy_joules\": 6.146835833261249}}, \"1075200\": {\"active\": {\"elapsed_sec\": 27.435338063, \"elapsed_ns\": 27435338063, \"power_samples\": [186.87487546599982, 193.34014346599974, 184.7418335049997, 189.00355537799965, 199.4921455389997, 206.04171877199997, 206.04171877199997, 208.09033642799977, 210.22325907299978, 195.23526200299966, 197.44317042299986, 193.26091520199998, 199.65131698699975, 199.41223364399957, 199.57173126299972, 191.1322352899997, 182.61315359299965, 184.5843300409997, 184.5843300409997, 195.31460958299976, 195.1555892279996, 205.88183240399962, 195.39395716299964, 210.14307750099965, 203.75339063599972, 205.88183240399962, 207.92988379199983], \"power_mean\": 197.43675694803676, \"energy_millijoules\": 5416.7441729317525, \"energy_joules\": 5.416744172931752, \"coremark_score\": 9116.102684, \"coremarks_per_mhz\": 8.47851812127976, \"ulpmark_cm_score\": 46.15318575488314}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1242.565476993, 1231.9105632540002, 1236.170782758, 1229.780453502], \"power_mean\": 1235.10681912675, \"energy_millijoules\": 6175.5340956337495, \"energy_joules\": 6.17553409563375}}, \"1190400\": {\"active\": {\"elapsed_sec\": 24.752904158, \"elapsed_ns\": 24752904158, \"power_samples\": [214.31921173199953, 209.98238574399988, 212.11058887999957, 210.06256731599956, 220.54698531999975, 220.54698531999975, 226.85446370399973, 237.49864924799954, 233.16122716799987, 224.8075142759999, 220.38543096799958, 216.28645636399983, 205.56173203199978, 205.56173203199978, 211.86968694799975, 222.6750693839997, 224.72649871199974, 231.0290209079999, 226.7733290679996, 224.64548314799958, 218.25758504799956, 220.38543096799958, 220.38543096799958, 216.2059175759996], \"power_mean\": 219.77664095133304, \"energy_millijoules\": 5440.110129635525, \"energy_joules\": 5.440110129635524, \"coremark_score\": 10104.684532, \"coremarks_per_mhz\": 8.488478269489246, \"ulpmark_cm_score\": 45.954952021669726}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1227.4398232540002, 1220.9822995700004, 1225.3100712060002, 1233.695479212], \"power_mean\": 1226.8569183105, \"energy_millijoules\": 6134.2845915525, \"energy_joules\": 6.1342845915525}}, \"1305600\": {\"active\": {\"elapsed_sec\": 22.568278846, \"elapsed_ns\": 22568278846, \"power_samples\": [241.59500255999956, 235.28907308799967, 235.28907308799967, 237.33518876799963, 247.9002171119996, 224.56446758399966, 231.0290209079999, 243.80481710799995, 237.33518876799963, 247.9002171119996, 241.59500255999956, 250.19271520799975, 256.4150080679997, 247.81755362199965, 245.76824948399963, 239.2213915949999, 237.08966308799972, 234.96229394399984, 237.17139332799957, 245.60349902699977, 252.07253005399957, 247.7352275339997], \"power_mean\": 241.7130360730906, \"energy_millijoules\": 5455.047198810765, \"energy_joules\": 5.455047198810765, \"coremark_score\": 11083.525448, \"coremarks_per_mhz\": 8.489219859068628, \"ulpmark_cm_score\": 45.829117675554045}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1244.21262012, 1233.695479212, 1231.6348284520002, 1235.8249931159999], \"power_mean\": 1236.341980225, \"energy_millijoules\": 6181.709901125, \"energy_joules\": 6.181709901125}}, \"1401600\": {\"active\": {\"elapsed_sec\": 21.04205244, \"elapsed_ns\": 21042052440, \"power_samples\": [262.6355302679997, 266.8902685559997, 258.37643261699986, 251.9899658219997, 254.03901078099966, 258.37643261699986, 249.8625966779996, 266.72347210799967, 268.85060310799963, 266.6400738839998, 260.42076099699966, 266.80687033199956, 251.74227312599987, 251.82483735799974, 256.08345823299965, 260.42076099699966, 275.15248022700007, 266.72347210799967, 262.46921010799974, 275.0686054709997], \"power_mean\": 261.5548557697997, \"energy_millijoules\": 5503.650991044761, \"energy_joules\": 5.503650991044761, \"coremark_score\": 11888.344667, \"coremarks_per_mhz\": 8.48198106949201, \"ulpmark_cm_score\": 45.4243919912048}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1227.0277934690002, 1227.096418225, 1231.2213673620001, 1242.0092376749997], \"power_mean\": 1231.83870418275, \"energy_millijoules\": 6159.19352091375, \"energy_joules\": 6.15919352091375}}, \"1516800\": {\"active\": {\"elapsed_sec\": 19.454310253, \"elapsed_ns\": 19454310253, \"power_samples\": [294.1387691999996, 289.9655722369996, 289.8808634889997, 291.92716735199997, 294.05382206399986, 304.52001745799953, 309.0349019739997, 304.6055601979999, 306.65079094799967, 300.35248989399975, 298.30713148799964, 285.4580285219997, 289.71109882599967, 289.79615474099955, 289.71109882599967, 296.09506193599987, 296.18047677599975, 310.9895233079999, 308.8629881559998], \"power_mean\": 297.38113249436816, \"energy_millijoules\": 5785.344814933937, \"energy_joules\": 5.7853448149339375, \"coremark_score\": 12858.759387, \"coremarks_per_mhz\": 8.477557612737343, \"ulpmark_cm_score\": 43.21263606529816}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1220.435879465, 1218.439133952, 1227.0277934690002, 1241.870320179], \"power_mean\": 1226.94328176625, \"energy_millijoules\": 6134.71640883125, \"energy_joules\": 6.13471640883125}}, \"1632000\": {\"active\": {\"elapsed_sec\": 18.075571087, \"elapsed_ns\": 18075571087, \"power_samples\": [330.0544400579997, 329.8804948979996, 336.43368829799965, 332.0937644859996, 340.34060513200006, 340.51574149999965, 323.6708344079998, 329.8804948979996, 329.79352231799976, 334.13285076999955, 329.8804948979996, 329.8804948979996, 340.42817331599963, 336.08436911399986, 342.4665449239999, 340.34060513200006, 340.51574149999965, 342.4665449239999], \"power_mean\": 334.93663363733305, \"energy_millijoules\": 6054.170930952089, \"energy_joules\": 6.05417093095209, \"coremark_score\": 13840.447323, \"coremarks_per_mhz\": 8.480666251838235, \"ulpmark_cm_score\": 41.29384565636712}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1226.7532944450002, 1226.8219192010001, 1224.6247336050003, 1226.8219192010001], \"power_mean\": 1226.2554666130002, \"energy_millijoules\": 6131.277333065001, \"energy_joules\": 6.131277333065}}, \"1747200\": {\"active\": {\"elapsed_sec\": 16.872620618, \"elapsed_ns\": 16872620618, \"power_samples\": [374.37742397399984, 376.41377013799956, 367.81664873799946, 363.56089047299974, 367.81664873799946, 378.359797783, 374.01915905099986, 384.5607594279995, 374.1086336069998, 374.1086336069998, 369.8531137299997, 367.6384145459997, 361.257670041, 352.9280287279996, 361.1689104049997, 357.00238855199973], \"power_mean\": 369.0619307211872, \"energy_millijoules\": 6227.04194160519, \"energy_joules\": 6.22704194160519, \"coremark_score\": 14827.115829, \"coremarks_per_mhz\": 8.48621556146978, \"ulpmark_cm_score\": 40.147473285775824}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1224.418935792, 1222.359119268, 1233.005091624, 1237.404822255], \"power_mean\": 1229.29699223475, \"energy_millijoules\": 6146.48496117375, \"energy_joules\": 6.1464849611737495}}, \"1862400\": {\"active\": {\"elapsed_sec\": 15.835653849, \"elapsed_ns\": 15835653849, \"power_samples\": [302.39360137799963, 399.4468774619995, 388.72113901199987, 395.1918343609998, 403.515280758, 399.1741650059996, 405.55347967099965, 403.4241384619995, 409.7115783719996, 416.1827677919996, 409.8034531269998, 403.3326226319996, 397.04917827799954, 396.86723604799954, 396.9580211279997], \"power_mean\": 395.155024899133, \"energy_millijoules\": 6257.538190995647, \"energy_joules\": 6.257538190995647, \"coremark_score\": 15799.785123, \"coremarks_per_mhz\": 8.483561599548969, \"ulpmark_cm_score\": 39.951813695638364}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1237.0584355439998, 1241.383824276, 1243.5858472319999, 1236.9892149399998], \"power_mean\": 1239.754330498, \"energy_millijoules\": 6198.77165249, \"energy_joules\": 6.19877165249}}, \"1977600\": {\"active\": {\"elapsed_sec\": 14.905231192, \"elapsed_ns\": 14905231192, \"power_samples\": [441.70002645199975, 443.6378181119999, 445.66904100799957, 443.45100585599994, 441.4197829599998, 443.45100585599994, 434.9486125439996, 434.9486125439996, 439.1976324479997, 437.07312249599954, 439.1976324479997, 445.48199060799993, 454.07790911999973, 451.6717511879997], \"power_mean\": 442.5661388314283, \"energy_millijoules\": 6596.550617033207, \"energy_joules\": 6.596550617033207, \"coremark_score\": 16786.409723, \"coremarks_per_mhz\": 8.488273524979775, \"ulpmark_cm_score\": 37.898594964838956}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1241.1059892839999, 1230.463590552, 1226.2726399039998, 1228.4047268479999], \"power_mean\": 1231.5617366469999, \"energy_millijoules\": 6157.808683234999, \"energy_joules\": 6.157808683234999}}, \"2073600\": {\"active\": {\"elapsed_sec\": 14.244863328, \"elapsed_ns\": 14244863328, \"power_samples\": [494.46971923199976, 483.3597217949998, 479.20732515899977, 477.07893945599994, 477.1746423359998, 487.7078103899996, 494.0842624449997, 481.23580769099976, 487.7078103899996, 487.7078103899996, 500.35973919299977, 498.1393213809995, 495.9191417129998, 483.2640520789996], \"power_mean\": 487.67257883214256, \"energy_millijoules\": 6946.8292342771765, \"energy_joules\": 6.9468292342771765, \"coremark_score\": 17566.048342, \"coremarks_per_mhz\": 8.471281029128086, \"ulpmark_cm_score\": 35.987641493538554}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1228.198212894, 1223.9391152430003, 1230.394445182, 1238.9087576529998], \"power_mean\": 1230.3601327430001, \"energy_millijoules\": 6151.800663715001, \"energy_joules\": 6.151800663715001}}, \"2169600\": {\"active\": {\"elapsed_sec\": 13.603171974, \"elapsed_ns\": 13603171974, \"power_samples\": [610.1484081719996, 620.6647455179996, 627.1417502159995, 620.4579179419995, 618.3351950459996, 609.9427718039999, 609.8399536199997, 616.3156477939999, 616.2124721499995, 626.7266652239996, 624.396332244, 630.7677769289999, 626.7266652239996], \"power_mean\": 619.8212539909997, \"energy_millijoules\": 8431.535111179903, \"energy_joules\": 8.431535111179903, \"coremark_score\": 18394.525789, \"coremarks_per_mhz\": 8.478302815726401, \"ulpmark_cm_score\": 29.650591108671215}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1230.1878557500002, 1226.0664843870002, 1223.870609559, 1219.6843769550003], \"power_mean\": 1224.95233166275, \"energy_millijoules\": 6124.761658313751, \"energy_joules\": 6.1247616583137505}}, \"2265600\": {\"active\": {\"elapsed_sec\": 13.017506922, \"elapsed_ns\": 13017506922, \"power_samples\": [377.8211539079998, 645.7383048059999, 641.3839519979997, 643.4015928779995, 635.012507313, 634.8040117529997, 637.0348545179995, 645.4233442349998, 647.3355458829997, 658.0548968399999, 643.0874199419993, 645.3185006069998], \"power_mean\": 621.201340390083, \"energy_millijoules\": 8086.492748483584, \"energy_joules\": 8.086492748483584, \"coremark_score\": 19223.375625, \"coremarks_per_mhz\": 8.484893902277543, \"ulpmark_cm_score\": 30.915751460592247}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1236.435166417, 1234.303915174, 1223.7335981910003, 1225.860610119], \"power_mean\": 1230.08332247525, \"energy_millijoules\": 6150.41661237625, \"energy_joules\": 6.15041661237625}}, \"2361600\": {\"active\": {\"elapsed_sec\": 12.486950255, \"elapsed_ns\": 12486950255, \"power_samples\": [668.7797876259999, 660.2869308129998, 668.6736334739999, 679.0745222189998, 687.5659494359998, 679.0745222189998, 668.355171018, 666.2335202579998, 662.0916677849998, 666.3395553379996, 678.9677724630001, 678.9677724630001], \"power_mean\": 672.0342337593332, \"energy_millijoules\": 8391.658046609835, \"energy_joules\": 8.391658046609836, \"coremark_score\": 20040.08016, \"coremarks_per_mhz\": 8.485806300813008, \"ulpmark_cm_score\": 29.791490383833988}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1229.8432578040001, 1236.1580003099998, 1229.9812663179998, 1236.2272209139999], \"power_mean\": 1233.0524363364998, \"energy_millijoules\": 6165.262181682499, \"energy_joules\": 6.1652621816824995}}, \"2457600\": {\"active\": {\"elapsed_sec\": 12.00051786, \"elapsed_ns\": 12000517860, \"power_samples\": [685.4441796039996, 704.5531517589998, 704.3363492079993, 700.0889394079995, 693.7199984079994, 693.7199984079994, 682.8940187199998, 687.2438311199996, 699.8730569919999, 697.6439417999995, 703.9036308239995], \"power_mean\": 695.7655542046359, \"energy_millijoules\": 8349.546959605532, \"energy_joules\": 8.349546959605531, \"coremark_score\": 20852.448077, \"coremarks_per_mhz\": 8.48488284383138, \"ulpmark_cm_score\": 29.941744289777738}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1233.9581255320002, 1229.77439466, 1225.448580334, 1227.716722652], \"power_mean\": 1229.2244557945, \"energy_millijoules\": 6146.1222789725, \"energy_joules\": 6.146122278972499}}, \"2553600\": {\"active\": {\"elapsed_sec\": 11.542301819, \"elapsed_ns\": 11542301819, \"power_samples\": [725.2322435959995, 733.5059377079999, 735.6268735479998, 731.2709274239996, 735.6268735479998, 746.1253366719995, 741.773379024, 752.3812131959999, 745.79319678, 739.6483356359997, 735.2965229089998], \"power_mean\": 738.3891672764544, \"energy_millijoules\": 8522.710628584915, \"energy_joules\": 8.522710628584916, \"coremark_score\": 21684.447914, \"coremarks_per_mhz\": 8.491716758302005, \"ulpmark_cm_score\": 29.333390618884504}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1223.185271958, 1229.7055315159998, 1229.567805228, 1233.750821668], \"power_mean\": 1229.0523575925, \"energy_millijoules\": 6145.2617879624995, \"energy_joules\": 6.145261787962499}}, \"2649600\": {\"active\": {\"elapsed_sec\": 11.144775881, \"elapsed_ns\": 11144775881, \"power_samples\": [647.4405085829999, 796.4877873529999, 806.9792193719995, 809.2178023029999, 806.8652020759996, 800.6189138279994, 815.3538216339996, 821.5989186739998, 808.875392467, 808.875392467, 804.6313210759997], \"power_mean\": 793.3585708939089, \"energy_millijoules\": 8841.803465883064, \"energy_joules\": 8.841803465883064, \"coremark_score\": 22457.779375, \"coremarks_per_mhz\": 8.475913109525965, \"ulpmark_cm_score\": 28.274774593740823}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1244.2495535799999, 1233.68172038, 1235.881117894, 1223.1167662740002], \"power_mean\": 1234.2322895319999, \"energy_millijoules\": 6171.161447659999, \"energy_joules\": 6.1711614476599985}}, \"2745600\": {\"active\": {\"elapsed_sec\": 10.735121663, \"elapsed_ns\": 10735121663, \"power_samples\": [874.2719468579999, 876.3957961079996, 876.2778469959999, 865.4375198159996, 874.1541170619998, 888.8798477819996, 886.7605799259995, 873.8006276739998, 869.5625682499999, 867.4435385379998], \"power_mean\": 875.2984389009997, \"energy_millijoules\": 9396.435233036203, \"energy_joules\": 9.396435233036204, \"coremark_score\": 23314.370978, \"coremarks_per_mhz\": 8.491539546182983, \"ulpmark_cm_score\": 26.60583442548981}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1218.659804285, 1222.8424627770003, 1239.9243365669997, 1244.2495535799999], \"power_mean\": 1231.41903930225, \"energy_millijoules\": 6157.09519651125, \"energy_joules\": 6.15709519651125}}, \"2841600\": {\"active\": {\"elapsed_sec\": 10.383925569, \"elapsed_ns\": 10383925569, \"power_samples\": [913.9676600309999, 918.0851485629996, 928.5668599129999, 935.0485025579997, 937.0458894859999, 930.5644852289997, 930.443438537, 934.6846473179999, 917.7241532469998, 930.443438537], \"power_mean\": 927.6574223418999, \"energy_millijoules\": 9632.725627128686, \"energy_joules\": 9.632725627128686, \"coremark_score\": 24103.355187, \"coremarks_per_mhz\": 8.482318126055745, \"ulpmark_cm_score\": 25.95319431666609}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1218.455001665, 1233.474133314, 1235.3270693709999, 1241.845540164], \"power_mean\": 1232.2754361285001, \"energy_millijoules\": 6161.377180642501, \"energy_joules\": 6.161377180642501}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm8250/k30s/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 cpu7 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 1223 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 403 518 614 691 787 883 979 1075 1171 1248 1344 1420 1516 1612 1708 1804\n\n 300:  1114     3.7 C/MHz     29 mW    6.4 J   39.0 I/mJ   224.5 s\n 403:  1497     3.7 C/MHz     33 mW    5.5 J   45.2 I/mJ   167.0 s\n 518:  1925     3.7 C/MHz     48 mW    6.3 J   39.7 I/mJ   129.9 s\n 614:  2281     3.7 C/MHz     73 mW    8.0 J   31.1 I/mJ   109.6 s\n 691:  2566     3.7 C/MHz     46 mW    4.5 J   55.2 I/mJ    97.4 s\n 787:  2923     3.7 C/MHz     86 mW    7.4 J   33.8 I/mJ    85.5 s\n 883:  3279     3.7 C/MHz     77 mW    5.9 J   42.5 I/mJ    76.2 s\n 979:  3635     3.7 C/MHz     65 mW    4.4 J   56.2 I/mJ    68.8 s\n1075:  3992     3.7 C/MHz     71 mW    4.4 J   56.2 I/mJ    62.6 s\n1171:  4348     3.7 C/MHz    121 mW    6.9 J   36.0 I/mJ    57.5 s\n1248:  4633     3.7 C/MHz     79 mW    4.2 J   58.9 I/mJ    54.0 s\n1344:  4990     3.7 C/MHz     81 mW    4.0 J   61.7 I/mJ    50.1 s\n1420:  5275     3.7 C/MHz     85 mW    4.0 J   61.8 I/mJ    47.4 s\n1516:  5632     3.7 C/MHz     88 mW    3.9 J   64.3 I/mJ    44.4 s\n1612:  5988     3.7 C/MHz     92 mW    3.8 J   65.4 I/mJ    41.7 s\n1708:  6346     3.7 C/MHz     96 mW    3.8 J   66.3 I/mJ    39.4 s\n1804:  6701     3.7 C/MHz    105 mW    3.9 J   63.5 I/mJ    37.3 s\n\n\n===== CPU 4 =====\nFrequencies: 710 825 940 1056 1171 1286 1382 1478 1574 1670 1766 1862 1958 2054 2150 2246 2342 2419\n\n 710:  6022     8.5 C/MHz    123 mW    5.1 J   49.1 I/mJ    41.5 s\n 825:  7001     8.5 C/MHz    142 mW    5.1 J   49.4 I/mJ    35.7 s\n 940:  7987     8.5 C/MHz    164 mW    5.1 J   48.7 I/mJ    31.3 s\n1056:  8954     8.5 C/MHz    185 mW    5.2 J   48.3 I/mJ    27.9 s\n1171:  9944     8.5 C/MHz    212 mW    5.3 J   46.9 I/mJ    25.2 s\n1286: 10926     8.5 C/MHz    235 mW    5.4 J   46.4 I/mJ    22.9 s\n1382: 11735     8.5 C/MHz    253 mW    5.4 J   46.4 I/mJ    21.3 s\n1478: 12531     8.5 C/MHz    277 mW    5.5 J   45.2 I/mJ    20.0 s\n1574: 13335     8.5 C/MHz    306 mW    5.7 J   43.6 I/mJ    18.8 s\n1670: 14169     8.5 C/MHz    335 mW    5.9 J   42.2 I/mJ    17.7 s\n1766: 14969     8.5 C/MHz    353 mW    5.9 J   42.3 I/mJ    16.7 s\n1862: 15800     8.5 C/MHz    444 mW    7.0 J   35.6 I/mJ    15.8 s\n1958: 16630     8.5 C/MHz    463 mW    7.0 J   35.9 I/mJ    15.0 s\n2054: 17428     8.5 C/MHz    480 mW    6.9 J   36.3 I/mJ    14.4 s\n2150: 18238     8.5 C/MHz    496 mW    6.8 J   36.8 I/mJ    13.7 s\n2246: 19053     8.5 C/MHz    578 mW    7.6 J   32.9 I/mJ    13.1 s\n2342: 19873     8.5 C/MHz    625 mW    7.9 J   31.8 I/mJ    12.6 s\n2419: 20522     8.5 C/MHz    675 mW    8.2 J   30.4 I/mJ    12.2 s\n\n\n===== CPU 7 =====\nFrequencies: 844 960 1075 1190 1305 1401 1516 1632 1747 1862 1977 2073 2169 2265 2361 2457 2553 2649 2745 2841\n\n 844:  7172     8.5 C/MHz    155 mW    5.4 J   46.4 I/mJ    34.9 s\n 960:  8148     8.5 C/MHz    172 mW    5.3 J   47.4 I/mJ    30.7 s\n1075:  9116     8.5 C/MHz    197 mW    5.4 J   46.2 I/mJ    27.4 s\n1190: 10105     8.5 C/MHz    220 mW    5.4 J   46.0 I/mJ    24.8 s\n1305: 11084     8.5 C/MHz    242 mW    5.5 J   45.8 I/mJ    22.6 s\n1401: 11888     8.5 C/MHz    262 mW    5.5 J   45.4 I/mJ    21.0 s\n1516: 12859     8.5 C/MHz    297 mW    5.8 J   43.2 I/mJ    19.5 s\n1632: 13840     8.5 C/MHz    335 mW    6.1 J   41.3 I/mJ    18.1 s\n1747: 14827     8.5 C/MHz    369 mW    6.2 J   40.1 I/mJ    16.9 s\n1862: 15800     8.5 C/MHz    395 mW    6.3 J   40.0 I/mJ    15.8 s\n1977: 16786     8.5 C/MHz    443 mW    6.6 J   37.9 I/mJ    14.9 s\n2073: 17566     8.5 C/MHz    488 mW    6.9 J   36.0 I/mJ    14.2 s\n2169: 18395     8.5 C/MHz    620 mW    8.4 J   29.7 I/mJ    13.6 s\n2265: 19223     8.5 C/MHz    621 mW    8.1 J   30.9 I/mJ    13.0 s\n2361: 20040     8.5 C/MHz    672 mW    8.4 J   29.8 I/mJ    12.5 s\n2457: 20852     8.5 C/MHz    696 mW    8.3 J   29.9 I/mJ    12.0 s\n2553: 21684     8.5 C/MHz    738 mW    8.5 J   29.3 I/mJ    11.5 s\n2649: 22458     8.5 C/MHz    793 mW    8.8 J   28.3 I/mJ    11.1 s\n2745: 23314     8.5 C/MHz    875 mW    9.4 J   26.6 I/mJ    10.7 s\n2841: 24103     8.5 C/MHz    928 mW    9.6 J   26.0 I/mJ    10.4 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm8250/k30s/uptime.txt",
    "content": " 12:32:50 up 44 min,  load average: 3.74, 3.74, 3.58\n"
  },
  {
    "path": "results/sm8250/k30s/versions.txt",
    "content": "Kernel: Linux version 4.19.81-HiiraKernel+ (apollo@equinix-ci) (gcc version 10.2.0 (GCC)) #1 SMP PREEMPT Wed Jan 6 06:46:37 UTC 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm8250/main/cmdline.txt",
    "content": "ramoops_memreserve=4M rcupdate.rcu_expedited=1 rcu_nocbs=0-7 console=ttyMSM0,115200n8 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 androidboot.usbcontroller=a600000.dwc3 swiotlb=2048 loop.max_part=7 cgroup.memory=nokmem,nosocket reboot=panic_warm buildvariant=user androidboot.verifiedbootstate=green isolcpus=1-6 nohz_full=1-6 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.bootdevice=1d84000.ufshc androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED androidboot.secureboot=1 androidboot.hwversion=8.29.6 androidboot.cpuid=REDACTED androidboot.camera.config=0 androidboot.hwc=INDIA androidboot.hwlevel=MP androidboot.product.hardware.sku=pro androidboot.baseband=mdm msm_drm.dsi_display0=qcom,mdss_dsi_j3s_37_02_0a_dsc_video: androidboot.oled_wp=8f85c9 androidboot.dtbo_idx=0 androidboot.dtb_idx=0 androidboot.ramdump=disable block2mtd.block2mtd=/dev/block/sda15,2097152 mtdoops.mtddev=0 mtdoops.record_size=2097152 mtdoops.dump_oops=0 printk.always_kmsg_dump=1 androidboot.dp=0x0\n"
  },
  {
    "path": "results/sm8250/main/cpufreq_stats/0/time_in_state",
    "content": "300000 136626\n403200 17555\n518400 13839\n614400 11834\n691200 10631\n787200 9427\n883200 8525\n979200 7723\n1075200 7122\n1171200 6621\n1248000 6220\n1344000 5919\n1420800 5618\n1516800 5318\n1612800 5017\n1708800 4817\n1804800 5321\n"
  },
  {
    "path": "results/sm8250/main/cpufreq_stats/0/total_trans",
    "content": "20\n"
  },
  {
    "path": "results/sm8250/main/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    403200    518400    614400    691200    787200    883200    979200   1075200   1171200   1248000   1344000   1420800   1516800   1612800   1708800   1804800 \n   300000:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   403200:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   518400:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   614400:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n   691200:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n   787200:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n   883200:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n   979200:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1075200:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1171200:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1248000:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1344000:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1420800:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  1516800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         1 \n  1612800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  1708800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  1804800:         2         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8250/main/cpufreq_stats/4/time_in_state",
    "content": "710400 57913\n825600 4425\n940800 4023\n1056000 3621\n1171200 3422\n1286400 3120\n1382400 3020\n1478400 2820\n1574400 2719\n1670400 2618\n1766400 2519\n1862400 2418\n1958400 2418\n2054400 2318\n2150400 2218\n2246400 2217\n2342400 2117\n2419200 164207\n"
  },
  {
    "path": "results/sm8250/main/cpufreq_stats/4/total_trans",
    "content": "20\n"
  },
  {
    "path": "results/sm8250/main/cpufreq_stats/4/trans_table",
    "content": "   From  :    To\n         :    710400    825600    940800   1056000   1171200   1286400   1382400   1478400   1574400   1670400   1766400   1862400   1958400   2054400   2150400   2246400   2342400   2419200 \n   710400:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   825600:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   940800:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1056000:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1171200:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1286400:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1382400:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1478400:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1574400:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1670400:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1766400:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1862400:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1958400:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  2054400:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2150400:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2246400:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2342400:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2419200:         2         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8250/main/cpufreq_stats/7/time_in_state",
    "content": "844800 4536\n960000 3923\n1075200 3622\n1190400 3320\n1305600 3120\n1401600 2920\n1516800 2819\n1632000 2719\n1747200 2518\n1862400 2418\n1977600 2318\n2073600 2318\n2169600 2217\n2265600 2117\n2361600 2118\n2457600 2016\n2553600 2017\n2649600 2017\n2745600 1917\n2841600 217163\n"
  },
  {
    "path": "results/sm8250/main/cpufreq_stats/7/total_trans",
    "content": "22\n"
  },
  {
    "path": "results/sm8250/main/cpufreq_stats/7/trans_table",
    "content": ""
  },
  {
    "path": "results/sm8250/main/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 14 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0xd0d\nCPU revision\t: 0\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0xd0d\nCPU revision\t: 0\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0xd0d\nCPU revision\t: 0\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0xd0d\nCPU revision\t: 0\n\nHardware\t: Qualcomm Technologies, Inc SM8250\n"
  },
  {
    "path": "results/sm8250/main/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. xiaomi apollo;\nCompatible: qcom,kona-mtp;qcom,kona;qcom,mtp;\n"
  },
  {
    "path": "results/sm8250/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x51df805e]\n[    0.000000] Linux version 4.19.81-apollodev (spac3b0y@TheHurtlocker) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project d38205144febf4dc42c9270c6aa3d978f1ef65e1)) #56 SMP PREEMPT Sun Dec 27 13:19:32 IST 2020\n[    0.000000] Machine model: Qualcomm Technologies, Inc. xiaomi apollo\n[    0.000000] ramoops: msm_reserve_ramoops_memory addr=b0000000,size=400000\n[    0.000000] ramoops: msm_reserve_ramoops_memory record_size=0,ftrace_size=0\n[    0.000000] Reserved memory: created DMA memory pool at 0x00000000ffc00000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node mailbox_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fdc00000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fc800000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fb400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node cnss_wlan_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fa800000, size 12 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f8000000, size 40 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f7000000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node user_contig_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ecc00000, size 164 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ebc00000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000eb800000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ea800000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ea000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sdsp_region, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086200000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_camera_region@86200000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086700000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node pil_wlan_fw_region@86700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086800000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node pil_ipa_fw_region@86800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086810000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node pil_ipa_gsi_region@86810000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008681a000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node pil_gpu_region@8681a000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086900000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_npu_region@86900000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086e00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region@86e00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000087300000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_cvp_region@87300000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000087800000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node pil_cdsp_region@87800000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000088c00000, size 21 MiB\n[    0.000000] OF: reserved mem: initialized node pil_slpi_region@88c00000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008a100000, size 37 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region@8a100000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008c600000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node pil_spss_region@8c600000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008c700000, size 70 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_secure_heap@8c700000, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000b0400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node disp_rdump_region@9c000000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 2007876\n[    0.000000]   Normal zone: 32734 pages used for memmap\n[    0.000000]   Normal zone: 0 pages reserved\n[    0.000000]   Normal zone: 2007876 pages, LIFO batch:63\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.1\n[    0.000000] random: fast init done\n[    0.000000] random: get_random_bytes called from start_kernel+0x88/0x378 with crng_init=1\n[    0.000000] percpu: Embedded 24 pages/cpu s59032 r8192 d31080 u98304\n[    0.000000] pcpu-alloc: s59032 r8192 d31080 u98304 alloc=24*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] CPU features: detected: Speculative Store Bypassing Safe (SSBS)\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1975142\n[    0.000000] Kernel command line: ramoops_memreserve=4M rcupdate.rcu_expedited=1 rcu_nocbs=0-7 console=ttyMSM0,115200n8 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 androidboot.usbcontroller=a600000.dwc3 swiotlb=2048 loop.max_part=7 cgroup.memory=nokmem,nosocket reboot=panic_warm buildvariant=user androidboot.verifiedbootstate=green isolcpus=1-6 nohz_full=1-6 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.bootdevice=1d84000.ufshc androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED androidboot.secureboot=1 androidboot.hwversion=8.29.6 androidboot.cpuid=REDACTED androidboot.camera.config=0 androidboot.hwc=INDIA androidboot.hwlevel=MP androidboot.product.hardware.sku=pro androidboot.baseband=mdm msm_drm.dsi_display0=qcom,mdss_dsi_j3s_37_02_0a_dsc_video: androidboot.oled_w\n[    0.000000] mi-dsi-display:[oled_wp_info_setup] androidboot.oled_wp=8f85c9\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] Memory: 7407704K/8031504K available (22014K kernel code, 3524K rwdata, 9644K rodata, 6144K init, 11604K bss, 267448K reserved, 356352K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n\n[    0.000000] **********************************************************\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **                                                      **\n[    0.000000] ** trace_printk() being used. Allocating extra memory.  **\n[    0.000000] **                                                      **\n[    0.000000] ** This means that this is a DEBUG kernel and it is     **\n[    0.000000] ** unsafe for production use.                           **\n[    0.000000] **                                                      **\n[    0.000000] ** If you see this message and you are not debugging    **\n[    0.000000] ** the kernel, report this immediately to your vendor!  **\n[    0.000000] **                                                      **\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **********************************************************\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: Distributor has no Range Selector support\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] ITS: No ITS available, not enabling LPIs\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-6.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] Successfully registered dummy reset controller for cpucc_clocks\n[    0.000000] Successfully registered dummy clock controller for cpucc_clocks\n[    0.000000] arch_timer: CPU0: Trapping CNTVCT access\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000012] clocksource: Switched to clocksource arch_sys_counter\n[    0.001707] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001713] pid_max: default: 32768 minimum: 301\n[    0.001790] Security Framework initialized\n[    0.001797] SELinux:  Initializing.\n[    0.001942] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.001956] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.015354] ASID allocator initialised with 65536 entries\n[    0.017450] rcu: Hierarchical SRCU implementation.\n[    0.025653] scm_mem_protection_init: SCM call failed\n[    0.027400] shmbridge is enabled\n[    0.030155] smp: Bringing up secondary CPUs ...\n[    0.039596] Detected VIPT I-cache on CPU1\n[    0.039655] arch_timer: CPU1: Trapping CNTVCT access\n[    0.039662] CPU1: Booted secondary processor 0x0000000100 [0x51df805e]\n[    0.049091] Detected VIPT I-cache on CPU2\n[    0.049128] arch_timer: CPU2: Trapping CNTVCT access\n[    0.049134] CPU2: Booted secondary processor 0x0000000200 [0x51df805e]\n[    0.058464] Detected VIPT I-cache on CPU3\n[    0.058497] arch_timer: CPU3: Trapping CNTVCT access\n[    0.058503] CPU3: Booted secondary processor 0x0000000300 [0x51df805e]\n[    0.068182] CPU features: enabling workaround for Mismatched cache type\n[    0.068187] CPU features: enabling workaround for ARM erratum 1542418\n[    0.068189] CPU features: detected: Hardware dirty bit management\n[    0.068194] Detected PIPT I-cache on CPU4\n[    0.068216] CPU features: Unsupported CPU feature variation detected.\n[    0.068255] arch_timer: CPU4: Trapping CNTVCT access\n[    0.068266] CPU4: Booted secondary processor 0x0000000400 [0x411fd0d0]\n[    0.077908] Detected PIPT I-cache on CPU5\n[    0.077964] arch_timer: CPU5: Trapping CNTVCT access\n[    0.077977] CPU5: Booted secondary processor 0x0000000500 [0x411fd0d0]\n[    0.087651] Detected PIPT I-cache on CPU6\n[    0.087705] arch_timer: CPU6: Trapping CNTVCT access\n[    0.087717] CPU6: Booted secondary processor 0x0000000600 [0x411fd0d0]\n[    0.097466] Detected PIPT I-cache on CPU7\n[    0.097494] arch_timer: CPU7: Trapping CNTVCT access\n[    0.097500] CPU7: Booted secondary processor 0x0000000700 [0x411fd0d0]\n[    0.097637] smp: Brought up 1 node, 8 CPUs\n[    0.097641] SMP: Total of 8 processors activated.\n[    0.097645] CPU features: detected: GIC system register CPU interface\n[    0.097647] CPU features: detected: Privileged Access Never\n[    0.097649] CPU features: detected: User Access Override\n[    0.097651] CPU features: detected: 32-bit EL0 Support\n[    0.097653] CPU features: detected: RAS Extension Support\n[    0.097956] CPU: All CPU(s) started at EL1\n[    0.098000] alternatives: patching kernel code\n[    0.099188] devtmpfs: initialized\n[    0.137097] Registered cp15_barrier emulation handler\n[    0.137108] Registered setend emulation handler\n[    0.137293] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.137299] futex hash table entries: 2048 (order: 5, 131072 bytes)\n[    0.139956] ramoops: msm_register_ramoops_device\n[    0.140042] pinctrl core: initialized pinctrl subsystem\n\n[    0.140191] *************************************************************\n[    0.140192] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE    **\n[    0.140193] **                                                         **\n[    0.140194] **  IOMMU DebugFS SUPPORT HAS BEEN ENABLED IN THIS KERNEL  **\n[    0.140195] **                                                         **\n[    0.140196] ** This means that this kernel is built to expose internal **\n[    0.140197] ** IOMMU data structures, which may compromise security on **\n[    0.140199] ** your system.                                            **\n[    0.140200] **                                                         **\n[    0.140201] ** If you see this message and you are not debugging the   **\n[    0.140202] ** kernel, report this immediately to your vendor!         **\n[    0.140202] **                                                         **\n[    0.140203] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE    **\n[    0.140204] *************************************************************\n[    0.140364] NET: Registered protocol family 16\n[    0.140858] schedtune: configured to support 6 boost groups\n[    0.140901] audit: initializing netlink subsys (disabled)\n[    0.141089] console [pstore-1] enabled\n[    0.141135] audit: type=2000 audit(0.139:1): state=initialized audit_enabled=0 res=1\n[    0.141204] pstore: Registered ramoops as persistent store backend\n[    0.141206] ramoops: attached 0x400000@0xb0000000, ecc: 0/0\n[    0.142435] cpuidle: using governor menu\n[    0.142446] cpuidle: using governor qcom\n[    0.142494] NET: Registered protocol family 42\n[    0.142654] vdso: 2 pages (1 code @ (____ptrval____), 1 data @ (____ptrval____))\n[    0.142656] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.143174] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.144477] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.145731] exit: IPA_USB init success!\n[    0.147735] msm_watchdog 17c10000.qcom,wdt: wdog absent resource not present\n[    0.147819] msm_watchdog 17c10000.qcom,wdt: MSM Watchdog Initialized\n[    0.149810] Unable to find DT property: qcom,msm-imem-download_mode\n[    0.150434] Unable to find DT property: qcom,msm-imem-emergency_download_mode\n[    0.154789] msm-dcc 1023000.dcc_v2: DCC list passed 3\n[    0.154976] msm-dcc 1023000.dcc_v2: All values written to enable.\n[    0.155071] msm-dcc 1023000.dcc_v2: DCC list passed 6\n[    0.155267] msm-dcc 1023000.dcc_v2: All values written to enable.\n[    0.155359] msm-dcc 1023000.dcc_v2: DCC list passed 7\n[    0.155551] msm-dcc 1023000.dcc_v2: All values written to enable.\n[    0.155683] platform 82400000.qseecom: assigned reserved memory node qseecom_region\n[    0.157039] sps:sps is ready.\n[    0.157369] spmi spmi-0: PMIC arbiter version v5 (0x50010000)\n[    0.158542] pm8150a_s3_mmcx_sup_level: regulator get failed, ret=-517\n[    0.158612] pm8150_s3_level: supplied by pm8150a_s3_level\n[    0.158698] pm8150_s3_level_ao: supplied by pm8150a_s3_level_ao\n[    0.159052] pm8150a_s3_mmcx_sup_level: supplied by pm8150_s3_mmcx_sup_level\n[    0.162504] pm8150a_s4_level: supplied by pm8150a_s3_mmcx_sup_level\n[    0.162724] pm8150a_s4_level_ao: supplied by pm8150a_s3_level_ao\n[    0.164750] LCDB: qpnp_lcdb_regulator_probe: Failed to parse dt rc=-517\n[    0.165433] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.166274] rpmh_regulator_probe: smpf1: could not find RPMh address for resource\n[    0.166321] rpmh_regulator_probe: smpf2: could not find RPMh address for resource\n[    0.166377] rpmh_regulator_probe: ldof1: could not find RPMh address for resource\n[    0.166420] rpmh_regulator_probe: ldof2: could not find RPMh address for resource\n[    0.166465] rpmh_regulator_probe: ldof3: could not find RPMh address for resource\n[    0.166509] rpmh_regulator_probe: ldof4: could not find RPMh address for resource\n[    0.166554] rpmh_regulator_probe: ldof5: could not find RPMh address for resource\n[    0.166597] rpmh_regulator_probe: ldof6: could not find RPMh address for resource\n[    0.166639] rpmh_regulator_probe: ldof7: could not find RPMh address for resource\n[    0.167566] platform soc:qcom,ipa_fws: assigned reserved memory node pil_ipa_gsi_region@86810000\n[    0.167599] platform soc:qcom,ipa_uc: assigned reserved memory node pil_ipa_fw_region@86800000\n[    0.168627] platform 17300000.qcom,lpass: assigned reserved memory node pil_adsp_region@8a100000\n[    0.168698] platform 8300000.qcom,turing: assigned reserved memory node pil_cdsp_region@87800000\n[    0.168740] platform aab0000.qcom,venus: assigned reserved memory node pil_video_region@86e00000\n[    0.168810] platform 188101c.qcom,spss: assigned reserved memory node pil_spss_region@8c600000\n[    0.168848] platform abb0000.qcom,cvpss: assigned reserved memory node pil_cvp_region@87300000\n[    0.168884] platform 9800000.qcom,npu: assigned reserved memory node pil_npu_region@86900000\n[    0.168985] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.169180] platform soc:mem_dump: assigned reserved memory node mem_dump_region\n[    0.179089] MSM Memory Dump base table set up\n[    0.179095] MSM Memory Dump apps data table set up\n[    0.179410] platform 5c00000.qcom,ssc: assigned reserved memory node pil_slpi_region@88c00000\n[    0.180466] platform 88a7000.msm_tspp: assigned reserved memory node qseecom_region\n[    0.202129] cryptd: max_cpu_qlen set to 1000\n[    0.203279] vServices Framework 1.0\n[    0.204639] gdsc ad07004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.204669] gdsc ad07004.qcom,gdsc: Dropping the link to regulator.31\n[    0.204763] gdsc ad0a004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.204779] gdsc ad0a004.qcom,gdsc: Dropping the link to regulator.31\n[    0.204855] gdsc ad0b004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.204870] gdsc ad0b004.qcom,gdsc: Dropping the link to regulator.31\n[    0.204958] gdsc ad08004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.204972] gdsc ad08004.qcom,gdsc: Dropping the link to regulator.31\n[    0.205048] gdsc ad09004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.205062] gdsc ad09004.qcom,gdsc: Dropping the link to regulator.31\n[    0.205144] gdsc ad0c144.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.205157] gdsc ad0c144.qcom,gdsc: Dropping the link to regulator.31\n[    0.205231] gdsc af03000.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.205244] gdsc af03000.qcom,gdsc: Dropping the link to regulator.31\n[    0.205349] gdsc 3d9106c.qcom,gdsc: Linked as a consumer to regulator.4\n[    0.205357] gpu_cx_gdsc: supplied by pm8150_s3_level\n[    0.205557] gdsc 3d9100c.qcom,gdsc: Linked as a consumer to regulator.30\n[    0.205569] gpu_gx_gdsc: supplied by pm8150a_s1_level\n[    0.205788] gdsc abf0d18.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.205801] gdsc abf0d18.qcom,gdsc: Dropping the link to regulator.31\n[    0.205873] gdsc abf0bf8.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.205886] gdsc abf0bf8.qcom,gdsc: Dropping the link to regulator.31\n[    0.205963] gdsc abf0d98.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.205976] gdsc abf0d98.qcom,gdsc: Dropping the link to regulator.31\n[    0.206045] gdsc abf0c98.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.206058] gdsc abf0c98.qcom,gdsc: Dropping the link to regulator.31\n[    0.206942] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.207474] gcc-kona 100000.qcom,gcc: Linked as a consumer to regulator.31\n[    0.207491] gcc-kona 100000.qcom,gcc: Linked as a consumer to regulator.4\n[    0.207515] gcc-kona 100000.qcom,gcc: Linked as a consumer to regulator.5\n[    0.233374] gcc-kona 100000.qcom,gcc: Registered GCC clocks\n[    0.233624] gpu_cc-kona 3d90000.qcom,gpucc: Linked as a consumer to regulator.4\n[    0.233641] gpu_cc-kona 3d90000.qcom,gpucc: Linked as a consumer to regulator.1\n[    0.238381] gpu_cc-kona 3d90000.qcom,gpucc: Registered GPU CC clocks\n[    0.238578] npu_cc-kona 9980000.qcom,npucc: Linked as a consumer to regulator.4\n[    0.256627] npu_cc-kona 9980000.qcom,npucc: Registered NPU_CC clocks\n[    0.256907] video_cc-kona abf0000.qcom,videocc: Linked as a consumer to regulator.1\n[    0.256928] video_cc-kona abf0000.qcom,videocc: Linked as a consumer to regulator.31\n[    0.256931] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.256933] video_cc-kona abf0000.qcom,videocc: Unable to register for bw voting\n[    0.256962] video_cc-kona abf0000.qcom,videocc: Dropping the link to regulator.31\n[    0.256979] video_cc-kona abf0000.qcom,videocc: Dropping the link to regulator.1\n[    0.259095] Minidump: Enabled with max number of regions 200\n[    0.259408] KPI: Bootloader start count = 69723\n[    0.259410] KPI: Bootloader end count = 110787\n[    0.259412] KPI: Bootloader display count = 4038713415\n[    0.259413] KPI: Bootloader load kernel count = 3031620905\n[    0.259416] KPI: Kernel MPM timestamp = 130814\n[    0.259417] KPI: Kernel MPM Clock frequency = 32768\n[    0.259428] socinfo_print: v0.15, id=356, ver=2.1, raw_id=195, raw_ver=2, hw_plat=42, hw_plat_ver=2686982\n                accessory_chip=1, hw_plat_subtype=0, pmic_model=65566, pmic_die_revision=196608 foundry_id=1 serial_number=704074034 num_pmics=5 chip_family=0x5d raw_device_family=0x6 raw_device_number=0x8 nproduct_id=0x412 num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xc ndefective_parts_array_offset=0xb4 nmodem_supported=0x0\n[    0.259429] msm_bus_fabric_rpmh_init_driver\n[    0.259524] msm_bus: Probe started\n[    0.259886] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.259896] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.259938] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.261547] msm_bus: DT Parsing complete\n[    0.262506] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.262528] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.262643] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.274060] arm-smmu 3da0000.kgsl-smmu: Linked as a consumer to regulator.61\n[    0.274110] arm-smmu 3da0000.kgsl-smmu: \tnon-coherent table walk\n[    0.274113] arm-smmu 3da0000.kgsl-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.274115] arm-smmu 3da0000.kgsl-smmu: \tstream matching with 6 register groups\n[    0.275329] register_client_adhoc:find path.src 161 dest 627\n[    0.275468] register_client_adhoc:Client handle 1 apps_smmu\n[    0.275531] arm-smmu 15000000.apps-smmu: \tnon-coherent table walk\n[    0.275533] arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.275536] arm-smmu 15000000.apps-smmu: \tstream matching with 87 register groups\n[    0.276148] register_client_adhoc:find path.src 161 dest 627\n[    0.276279] register_client_adhoc:Client handle 2 apps_smmu\n[    0.276381] register_client_adhoc:find path.src 161 dest 627\n[    0.276507] register_client_adhoc:Client handle 3 apps_smmu\n[    0.276628] qsmmuv500-tbu 1518d000.mnoc_hf_0_tbu: Linked as a consumer to regulator.57\n[    0.276647] register_client_adhoc:find path.src 22 dest 773\n[    0.276709] register_client_adhoc:Client handle 4 mnoc_hf_0_tbu\n[    0.276817] qsmmuv500-tbu 15191000.mnoc_hf_1_tbu: Linked as a consumer to regulator.58\n[    0.276835] register_client_adhoc:find path.src 22 dest 773\n[    0.276894] register_client_adhoc:Client handle 5 mnoc_hf_1_tbu\n[    0.276998] register_client_adhoc:find path.src 154 dest 10070\n[    0.277044] register_client_adhoc:Client handle 6 apps_smmu\n[    0.277137] register_client_adhoc:find path.src 154 dest 10070\n[    0.277179] register_client_adhoc:Client handle 7 apps_smmu\n[    0.277281] register_client_adhoc:find path.src 161 dest 627\n[    0.277410] register_client_adhoc:Client handle 8 apps_smmu\n[    0.277518] register_client_adhoc:find path.src 161 dest 627\n[    0.277642] register_client_adhoc:Client handle 9 apps_smmu\n[    0.277751] qsmmuv500-tbu 151a5000.mnoc_sf_0_tbu: Linked as a consumer to regulator.59\n[    0.277768] register_client_adhoc:find path.src 137 dest 772\n[    0.277829] register_client_adhoc:Client handle 10 mnoc_sf_0_tbu\n[    0.277938] qsmmuv500-tbu 151a9000.mnoc_sf_1_tbu: Linked as a consumer to regulator.60\n[    0.277956] register_client_adhoc:find path.src 137 dest 772\n[    0.278016] register_client_adhoc:Client handle 11 mnoc_sf_1_tbu\n[    0.278418] vgaarb: loaded\n[    0.278525] SCSI subsystem initialized\n[    0.278589] usbcore: registered new interface driver usbfs\n[    0.278602] usbcore: registered new interface driver hub\n[    0.278661] usbcore: registered new device driver usb\n[    0.278788] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.278806] usb_phy_generic soc:usb_nop_phy: Linked as a consumer to regulator.0\n[    0.279052] [mi-touch] xiaomi_touch_parse_dt: touch,name:xiaomi-touch\n[    0.279152] input: xiaomi-touch as /devices/virtual/input/input0\n[    0.279176] [mi-touch] xiaomi_touch_probe: over\n[    0.279303] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.279326] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.279498] input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800/input/input1\n[    0.280331] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150b@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from CBL (External Power Supply) and 'cold' boot\n[    0.280355] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150b@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from SOFT (Software)\n[    0.280449] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150l@4:qcom,power-on@800: PMIC@SID4 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'cold' boot\n[    0.280471] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150l@4:qcom,power-on@800: PMIC@SID4: Power-off reason: Triggered from SOFT (Software)\n[    0.280529] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.280533] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8009@a:qcom,power-on@800: Register read failed, addr=0x0805, rc=-5\n[    0.280539] qcom,qpnp-power-on: probe of c440000.qcom,spmi:qcom,pm8009@a:qcom,power-on@800 failed with error -5\n[    0.280591] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pmxprairie@8:qcom,power-on@800: PMIC@SID8 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'cold' boot\n[    0.280613] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pmxprairie@8:qcom,power-on@800: PMIC@SID8: Power-off reason: Triggered from SOFT (Software)\n[    0.280756] media: Linux media interface: v0.10\n[    0.280765] videodev: Linux video capture interface: v2.00\n[    0.280788] pps_core: LinuxPPS API ver. 1 registered\n[    0.280790] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>\n[    0.280796] PTP clock support registered\n[    0.283550] thermal_sys: of_parse_thermal_message board sensor: VIRTUAL-SENSOR\n[    0.283552] thermal_sys: of_parse_thermal_message ambient sensor: ABT-SENSOR\n[    0.285213] virt zone: sensor[gpuss-1-usr] read error:-22\n[    0.285216] thermal thermal_zone25: failed to read out thermal zone (-22)\n[    0.286668] EDAC MC: Ver: 3.0.0\n[    0.287865] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=300000 volt=584000, core_count 4\n[    0.287959] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=403200 volt=584000, core_count 4\n[    0.288032] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=518400 volt=584000, core_count 4\n[    0.288106] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=614400 volt=584000, core_count 4\n[    0.288175] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=691200 volt=584000, core_count 4\n[    0.288243] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=787200 volt=600000, core_count 4\n[    0.288312] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=883200 volt=608000, core_count 4\n[    0.288389] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=979200 volt=616000, core_count 4\n[    0.288458] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1075200 volt=632000, core_count 4\n[    0.288526] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1171200 volt=644000, core_count 4\n[    0.288594] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=1248000 volt=668000, core_count 4\n[    0.288662] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=1344000 volt=696000, core_count 4\n[    0.288738] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=1420800 volt=720000, core_count 4\n[    0.288806] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=1516800 volt=752000, core_count 4\n[    0.288876] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=1612800 volt=768000, core_count 4\n[    0.288945] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=1708800 volt=784000, core_count 4\n[    0.289022] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=1804800 volt=800000, core_count 4\n[    0.289092] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=17 freq=1804800 volt=800000, core_count 4\n[    0.289124] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=710400 volt=600000, core_count 4\n[    0.289190] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=825600 volt=620000, core_count 4\n[    0.289246] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=940800 volt=640000, core_count 4\n[    0.289298] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=1056000 volt=660000, core_count 4\n[    0.289353] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=1171200 volt=680000, core_count 4\n[    0.289408] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=1286400 volt=700000, core_count 4\n[    0.289455] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=1382400 volt=720000, core_count 4\n[    0.289510] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=1478400 volt=740000, core_count 4\n[    0.289564] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1574400 volt=760000, core_count 4\n[    0.289620] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1670400 volt=784000, core_count 4\n[    0.289675] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=1766400 volt=804000, core_count 4\n[    0.289728] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=1862400 volt=824000, core_count 4\n[    0.289782] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=1958400 volt=844000, core_count 4\n[    0.289838] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=2054400 volt=868000, core_count 4\n[    0.289893] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=2150400 volt=884000, core_count 4\n[    0.289946] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=2246400 volt=908000, core_count 4\n[    0.290001] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=2342400 volt=928000, core_count 4\n[    0.290070] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=17 freq=2419200 volt=944000, core_count 4\n[    0.290124] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=18 freq=2419200 volt=944000, core_count 4\n[    0.290149] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=844800 volt=588000, core_count 4\n[    0.290171] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=960000 volt=604000, core_count 4\n[    0.290189] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=1075200 volt=620000, core_count 4\n[    0.290215] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=1190400 volt=636000, core_count 4\n[    0.290232] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=1305600 volt=648000, core_count 4\n[    0.290248] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=1401600 volt=660000, core_count 4\n[    0.290266] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=1516800 volt=676000, core_count 4\n[    0.290289] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=1632000 volt=692000, core_count 4\n[    0.290306] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1747200 volt=708000, core_count 4\n[    0.290325] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1862400 volt=724000, core_count 4\n[    0.290348] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=1977600 volt=740000, core_count 4\n[    0.290366] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=2073600 volt=756000, core_count 4\n[    0.290385] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=2169600 volt=800000, core_count 4\n[    0.290408] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=2265600 volt=800000, core_count 4\n[    0.290426] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=2361600 volt=816000, core_count 4\n[    0.290443] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=2457600 volt=832000, core_count 4\n[    0.290466] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=2553600 volt=852000, core_count 4\n[    0.290483] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=17 freq=2649600 volt=876000, core_count 4\n[    0.290501] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=18 freq=2745600 volt=892000, core_count 4\n[    0.290520] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=19 freq=2841600 volt=912000, core_count 4\n[    0.290543] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=20 freq=2841600 volt=912000, core_count 4\n[    0.291627] cpufreq: driver qcom-cpufreq-hw up and running\n[    0.292042] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node sdsp_region\n[    0.292073] platform soc:qcom,ion:qcom,ion-heap@26: assigned reserved memory node user_contig_region\n[    0.292089] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.292106] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.292122] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.292136] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.292340] ION heap system created\n[    0.292397] ION heap adsp created at 0x00000000ea000000 with size 800000\n[    0.292398] ION heap secure_heap created\n[    0.292400] ION heap user_contig created at 0x00000000f7000000 with size 1000000\n[    0.292400] ION heap qsecom created at 0x00000000fc800000 with size 1400000\n[    0.292401] ION heap qsecom_ta created at 0x00000000ebc00000 with size 1000000\n[    0.292401] ION heap spss created at 0x00000000ea800000 with size 1000000\n[    0.292402] ION heap secure_display created at 0x00000000ecc00000 with size a400000\n[    0.315467] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x8c700000, size 0x4600000\n[    0.315468] ION heap secure_carveout created\n[    0.315727] PMIC@SID2: PM8150B v2.0 options: 0, 0, 0, 0\n[    0.315804] PMIC@SID4: PM8150L v3.0 options: 0, 0, 0, 0\n[    0.315823] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.315823] read failed rc=-5\n[    0.315824] Invalid REVID peripheral type: 00\n[    0.315827] qcom,qpnp-revid: probe of c440000.qcom,spmi:qcom,pm8009@a:qcom,revid@100 failed with error -22\n[    0.316189] register_client_adhoc:find path.src 90 dest 770\n[    0.316279] register_client_adhoc:find path.src 129 dest 512\n[    0.316300] register_client_adhoc:find path.src 90 dest 585\n[    0.316385] register_client_adhoc:find path.src 1 dest 676\n[    0.316454] register_client_adhoc:find path.src 143 dest 777\n[    0.316474] register_client_adhoc:Client handle 12 ipa\n[    0.317127] ipa 1e00000.qcom,ipa:ipa_smmu_ap: Linked as a consumer to 15000000.apps-smmu\n[    0.321609] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_ap to group 0\n[    0.321842] ipa 1e00000.qcom,ipa:ipa_smmu_wlan: Linked as a consumer to 15000000.apps-smmu\n[    0.326460] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_wlan to group 1\n[    0.326817] ipa 1e00000.qcom,ipa:ipa_smmu_uc: Linked as a consumer to 15000000.apps-smmu\n[    0.331303] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_uc to group 2\n[    0.331547] ipa 1e00000.qcom,ipa:ipa_smmu_11ad: Linked as a consumer to 15000000.apps-smmu\n[    0.336232] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_11ad to group 3\n[    0.337600] devfreq-qcom-fw 18590000.qcom,devfreq-l3:qcom,cpu0-cpu-l3-lat: Devfreq QCOM Firmware dev registered.\n[    0.337824] devfreq-qcom-fw 18590000.qcom,devfreq-l3:qcom,cpu4-cpu-l3-lat: Devfreq QCOM Firmware dev registered.\n[    0.338018] devfreq-qcom-fw 18590000.qcom,devfreq-l3:qcom,cpu7-cpu-l3-lat: Devfreq QCOM Firmware dev registered.\n[    0.338205] devfreq-qcom-fw 18590000.qcom,devfreq-l3:qcom,cdsp-cdsp-l3-lat: Devfreq QCOM Firmware dev registered.\n[    0.338208] devfreq-qcom-fw 18590000.qcom,devfreq-l3: Devfreq QCOM Firmware parent dev inited.\n[    0.338720] SDAM base=0xb100 size=128 registered successfully\n[    0.338806] Advanced Linux Sound Architecture Driver Initialized.\n[    0.339059] Bluetooth: Core ver 2.22\n[    0.339067] NET: Registered protocol family 31\n[    0.339068] Bluetooth: HCI device and connection manager initialized\n[    0.339070] Bluetooth: HCI socket layer initialized\n[    0.339072] Bluetooth: L2CAP socket layer initialized\n[    0.339078] Bluetooth: SCO socket layer initialized\n[    0.339083] NetLabel: Initializing\n[    0.339084] NetLabel:  domain hash size = 128\n[    0.339085] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\n[    0.339104] NetLabel:  unlabeled traffic allowed by default\n[    0.339245] pcie:pcie_init.\n[    0.340400] register_client_adhoc:find path.src 45 dest 512\n[    0.340535] register_client_adhoc:Client handle 13 pcie0\n[    0.340619] pci-msm 1c00000.qcom,pcie: 1c00000.qcom,pcie supply vreg-3p3 not found, using dummy regulator\n[    0.340638] pci-msm 1c00000.qcom,pcie: Linked as a consumer to regulator.0\n[    0.340669] pci-msm 1c00000.qcom,pcie: Linked as a consumer to regulator.18\n[    0.340681] pci-msm 1c00000.qcom,pcie: Linked as a consumer to regulator.13\n[    0.340695] pci-msm 1c00000.qcom,pcie: Linked as a consumer to regulator.4\n[    0.340712] pci-msm 1c00000.qcom,pcie: Linked as a consumer to regulator.51\n[    0.340807] msm_pcie_get_reg: PCIe: RC0: no tcsr resource found.\n[    0.340808] msm_pcie_get_reg: PCIe: RC0: no rumi resource found.\n[    0.341017] register_client_adhoc:find path.src 108 dest 512\n[    0.341091] register_client_adhoc:Client handle 14 pcie2\n[    0.341135] pci-msm 1c10000.qcom,pcie: 1c10000.qcom,pcie supply vreg-3p3 not found, using dummy regulator\n[    0.341146] pci-msm 1c10000.qcom,pcie: Linked as a consumer to regulator.0\n[    0.341166] pci-msm 1c10000.qcom,pcie: Linked as a consumer to regulator.18\n[    0.341176] pci-msm 1c10000.qcom,pcie: Linked as a consumer to regulator.13\n[    0.341183] pci-msm 1c10000.qcom,pcie: Linked as a consumer to regulator.4\n[    0.341199] pci-msm 1c10000.qcom,pcie: Linked as a consumer to regulator.53\n[    0.341257] msm_pcie_get_reg: PCIe: RC2: no tcsr resource found.\n[    0.341258] msm_pcie_get_reg: PCIe: RC2: no rumi resource found.\n[    0.341260] msm_pcie_probe: PCIe: RC2 could not get pinctrl sleep state\n[    0.341296] genirq: irq_chip msmgpio did not update eff. affinity mask of irq 389\n[    0.341408] register_client_adhoc:find path.src 22 dest 512\n[    0.341488] register_client_adhoc:find path.src 23 dest 512\n[    0.341552] register_client_adhoc:Client handle 15 bus-proxy-client\n[    0.342437] LCDB: qpnp_lcdb_regulator_probe: LCDB module successfully registered! lcdb_en=1 ldo_voltage=5500mV ncp_voltage=5500mV bst_voltage=5650mV\n[    0.342515] qupv3_geni_se 9c0000.qcom,qupv3_0_geni_se: Linked as a consumer to 15000000.apps-smmu\n[    0.347269] iommu: Adding device 9c0000.qcom,qupv3_0_geni_se to group 4\n[    0.347511] qupv3_geni_se ac0000.qcom,qupv3_1_geni_se: Linked as a consumer to 15000000.apps-smmu\n[    0.352376] iommu: Adding device ac0000.qcom,qupv3_1_geni_se to group 5\n[    0.352683] qupv3_geni_se 8c0000.qcom,qupv3_2_geni_se: Linked as a consumer to 15000000.apps-smmu\n[    0.357544] iommu: Adding device 8c0000.qcom,qupv3_2_geni_se to group 6\n[    0.357862] gdsc ad07004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.357924] register_client_adhoc:find path.src 1 dest 589\n[    0.358080] register_client_adhoc:Client handle 16 bps_gdsc_ahb\n[    0.358157] msm-bus-type slv-qhs-camera-cfg: Linked as a consumer to regulator.31\n[    0.358213] bps_gdsc: supplied by pm8150a_s4_level\n[    0.358428] gdsc ad0a004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.358446] register_client_adhoc:find path.src 1 dest 589\n[    0.358519] register_client_adhoc:Client handle 17 ife_0_gdsc_ahb\n[    0.358580] ife_0_gdsc: supplied by pm8150a_s4_level\n[    0.358705] gdsc ad0b004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.358718] register_client_adhoc:find path.src 1 dest 589\n[    0.358789] register_client_adhoc:Client handle 18 ife_1_gdsc_ahb\n[    0.358844] ife_1_gdsc: supplied by pm8150a_s4_level\n[    0.358945] gdsc ad08004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.358956] register_client_adhoc:find path.src 1 dest 589\n[    0.359019] register_client_adhoc:Client handle 19 ipe_0_gdsc_ahb\n[    0.359073] ipe_0_gdsc: supplied by pm8150a_s4_level\n[    0.359157] gdsc ad09004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.359164] register_client_adhoc:find path.src 1 dest 589\n[    0.359222] register_client_adhoc:Client handle 20 sbi_gdsc_ahb\n[    0.359278] sbi_gdsc: supplied by pm8150a_s4_level\n[    0.359359] gdsc ad0c144.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.359367] register_client_adhoc:find path.src 1 dest 589\n[    0.359426] register_client_adhoc:Client handle 21 titan_top_gdsc_ahb\n[    0.359480] titan_top_gdsc: supplied by pm8150a_s4_level\n[    0.359575] gdsc af03000.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.359584] register_client_adhoc:find path.src 1 dest 590\n[    0.359645] register_client_adhoc:Client handle 22 mdss_core_gdsc_ahb\n[    0.359692] msm-bus-type slv-qhs-display-cfg: Linked as a consumer to regulator.31\n[    0.359723] mdss_core_gdsc: supplied by pm8150a_s4_level\n[    0.359912] gdsc abf0d18.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.359921] register_client_adhoc:find path.src 1 dest 596\n[    0.359985] register_client_adhoc:Client handle 23 mvs0_gdsc_ahb\n[    0.360043] msm-bus-type slv-qhs-venus-cfg: Linked as a consumer to regulator.31\n[    0.360111] mvs0_gdsc: supplied by pm8150a_s4_level\n[    0.360191] gdsc abf0bf8.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.360196] register_client_adhoc:find path.src 1 dest 596\n[    0.360257] register_client_adhoc:Client handle 24 mvs0c_gdsc_ahb\n[    0.360340] mvs0c_gdsc: supplied by pm8150a_s4_level\n[    0.360434] gdsc abf0d98.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.360442] register_client_adhoc:find path.src 1 dest 596\n[    0.360504] register_client_adhoc:Client handle 25 mvs1_gdsc_ahb\n[    0.360587] mvs1_gdsc: supplied by pm8150a_s4_level\n[    0.360665] gdsc abf0c98.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.360672] register_client_adhoc:find path.src 1 dest 596\n[    0.360733] register_client_adhoc:Client handle 26 mvs1c_gdsc_ahb\n[    0.360815] mvs1c_gdsc: supplied by pm8150a_s4_level\n[    0.360955] cam_cc-kona ad00000.qcom,camcc: Linked as a consumer to regulator.1\n[    0.360965] cam_cc-kona ad00000.qcom,camcc: Linked as a consumer to regulator.31\n[    0.360972] register_client_adhoc:find path.src 1 dest 589\n[    0.361032] register_client_adhoc:Client handle 27 clk_camcc_debugfs\n[    0.367410] cam_cc-kona ad00000.qcom,camcc: Registered CAM CC clocks\n[    0.367470] disp_cc-kona af00000.qcom,dispcc: Linked as a consumer to regulator.31\n[    0.367476] register_client_adhoc:find path.src 1 dest 590\n[    0.367536] register_client_adhoc:Client handle 28 clk_dispcc_debugfs\n[    0.370562] disp_cc-kona af00000.qcom,dispcc: Registered Display CC clocks\n[    0.370612] video_cc-kona abf0000.qcom,videocc: Linked as a consumer to regulator.1\n[    0.370628] video_cc-kona abf0000.qcom,videocc: Linked as a consumer to regulator.31\n[    0.370633] register_client_adhoc:find path.src 1 dest 596\n[    0.370700] register_client_adhoc:Client handle 29 clk_videocc_debugfs\n[    0.371919] video_cc-kona abf0000.qcom,videocc: Registered Video CC clocks\n[    0.372450] clocksource: Switched to clocksource arch_sys_counter\n[    0.392626] VFS: Disk quotas dquot_6.6.0\n[    0.392654] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.392847] register_client_adhoc:find path.src 1 dest 589\n[    0.392933] register_client_adhoc:find path.src 1 dest 596\n[    0.392996] register_client_adhoc:find path.src 1 dest 590\n[    0.393053] register_client_adhoc:Client handle 30 clk_measure\n[    0.395674] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    0.395677] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    0.395801] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create ae94900.qcom,mdss_dsi_pll debugfs directory\n[    0.395803] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create ae94900.qcom,mdss_dsi_pll debugfs directory\n[    0.395805] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create ae94900.qcom,mdss_dsi_pll debugfs directory\n[    0.395807] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create ae94900.qcom,mdss_dsi_pll debugfs directory\n[    0.395809] mdss_pll ae94900.qcom,mdss_dsi_pll: Failed to create ae94900.qcom,mdss_dsi_pll debugfs directory\n[    0.396762] dsi_pll_clock_register_7nm: Registered DSI PLL ndx=0, clocks successfully\n[    0.396780] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    0.396781] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    0.396801] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create ae96900.qcom,mdss_dsi_pll debugfs directory\n[    0.396803] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create ae96900.qcom,mdss_dsi_pll debugfs directory\n[    0.396805] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create ae96900.qcom,mdss_dsi_pll debugfs directory\n[    0.396807] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create ae96900.qcom,mdss_dsi_pll debugfs directory\n[    0.396808] mdss_pll ae96900.qcom,mdss_dsi_pll: Failed to create ae96900.qcom,mdss_dsi_pll debugfs directory\n[    0.407732] dsi_pll_clock_register_7nm: Registered DSI PLL ndx=1, clocks successfully\n[    0.407743] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    0.408389] NET: Registered protocol family 2\n[    0.408612] entering: milink_srv_init\n[    0.408620] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes)\n[    0.408633] TCP established hash table entries: 65536 (order: 7, 524288 bytes)\n[    0.408748] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)\n[    0.409230] TCP: Hash tables configured (established 65536 bind 65536)\n[    0.409295] UDP hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.409325] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)\n[    0.409442] NET: Registered protocol family 1\n[    0.409735] PCI: CLS 0 bytes, default 64\n[    0.409941] Trying to unpack rootfs image as initramfs...\n[    0.665723] Freeing initrd memory: 22060K\n[    0.666611] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.671025] Initialise system trusted keyrings\n[    0.671096] workingset: timestamp_bits=45 max_order=21 bucket_order=0\n[    0.671879] exFAT: file-system version 5.8-2arter97\n[    0.672048] Registering sdcardfs 0.1\n[    0.672087] fuse init (API version 7.27)\n[    0.672321] pfk_ext4 [pfk_ext4_init]: PFK EXT4 inited successfully\n[    0.672322] pfk_f2fs [pfk_f2fs_init]: PFK F2FS inited successfully\n[    0.675066] Key type asymmetric registered\n[    0.675068] Asymmetric key parser 'x509' registered\n[    0.675083] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 239)\n[    0.675085] io scheduler noop registered\n[    0.675086] io scheduler deadline registered\n[    0.675112] io scheduler cfq registered (default)\n[    0.675113] io scheduler mq-deadline registered\n[    0.675114] io scheduler kyber registered\n[    0.677135] Virtual Services transport driver for OKL4 Axons\n[    0.681037] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.681039] qcom-spmi-gpio c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000: read 0x4 failed\n[    0.681040] qcom-spmi-gpio c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000: failed to populate gpio 0, ret=-5\n[    0.681046] qcom-spmi-gpio: probe of c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000 failed with error -5\n[    0.683638] gpi_dma 900000.qcom,gpi-dma: Linked as a consumer to 15000000.apps-smmu\n[    0.683882] iommu: Adding device 900000.qcom,gpi-dma to group 7\n[    0.684443] gpi_dma a00000.qcom,gpi-dma: Linked as a consumer to 15000000.apps-smmu\n[    0.684649] iommu: Adding device a00000.qcom,gpi-dma to group 8\n[    0.685053] gpi_dma 800000.qcom,gpi-dma: Linked as a consumer to 15000000.apps-smmu\n[    0.685243] iommu: Adding device 800000.qcom,gpi-dma to group 9\n[    0.686181] kona-llcc 9200000.cache-controller: Failed to create 9200000.cache-controller debugfs directory\n[    0.686517] llcc_perfmon: Revision 2, has 1 memory controllers connected with LLCC\n[    0.686597] register_client_adhoc:find path.src 125 dest 512\n[    0.686764] register_client_adhoc:Client handle 31 scm_pas\n[    0.686767] minidump-id not found for ipa_fws\n[    0.686779] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    0.686827] subsys-pil-tz soc:qcom,ipa_fws: for md_ipa_fws segments only will be dumped.\n[    0.686934] minidump-id not found for ipa_uc\n[    0.686936] subsys-pil-tz soc:qcom,ipa_uc: for ipa_uc segments only will be dumped.\n[    0.686967] subsys-pil-tz soc:qcom,ipa_uc: for md_ipa_uc segments only will be dumped.\n[    0.687087] subsys-pil-tz 17300000.qcom,lpass: Linked as a consumer to regulator.20\n[    0.687101] subsys-pil-tz 17300000.qcom,lpass: Linked as a consumer to regulator.12\n[    0.687105] minidump-id not found for adsp\n[    0.687380] subsys-pil-tz 8300000.qcom,turing: Linked as a consumer to regulator.4\n[    0.687397] register_client_adhoc:find path.src 154 dest 10070\n[    0.687418] register_client_adhoc:Client handle 32 pil-cdsp\n[    0.687420] minidump-id not found for cdsp\n[    0.687635] subsys-pil-tz aab0000.qcom,venus: Linked as a consumer to regulator.76\n[    0.687645] register_client_adhoc:find path.src 63 dest 512\n[    0.687725] register_client_adhoc:Client handle 33 pil-venus\n[    0.687728] minidump-id not found for venus\n[    0.687857] subsys-pil-tz 188101c.qcom,spss: Linked as a consumer to regulator.4\n[    0.687860] minidump-id not found for spss\n[    0.687995] minidump-id not found for cvpss\n[    0.687996] subsys-pil-tz abb0000.qcom,cvpss: for cvpss segments only will be dumped.\n[    0.688026] subsys-pil-tz abb0000.qcom,cvpss: for md_cvpss segments only will be dumped.\n[    0.688118] minidump-id not found for npu\n[    0.688120] subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    0.688149] subsys-pil-tz 9800000.qcom,npu: for md_npu segments only will be dumped.\n[    0.688215] subsys-restart: __get_smem_state(): Could not get smem-states qcom,force-stop\n[    0.688384] subsys-pil-tz 5c00000.qcom,ssc: Linked as a consumer to regulator.20\n[    0.688394] subsys-pil-tz 5c00000.qcom,ssc: Linked as a consumer to regulator.12\n[    0.688396] minidump-id not found for slpi\n[    0.688595] minidump-id not found for a650_zap\n[    0.688597] subsys-pil-tz soc:qcom,kgsl-hyp: for a650_zap segments only will be dumped.\n[    0.688628] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a650_zap segments only will be dumped.\n[    0.690186] ignore console register\n[    0.690506] msm_geni_serial 998000.qcom,qup_uart: Wakeup byte 0xfd\n[    0.690526] msm_geni_serial 998000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    0.690833] 998000.qcom,qup_uart: ttyHS0 at MMIO 0x998000 (irq = 363, base_baud = 0) is a MSM\n[    0.691141] ignore cons prob\n[    0.691171] msm_geni_serial_init: Driver initialized\n[    0.691415] register_client_adhoc:find path.src 1 dest 618\n[    0.691495] register_client_adhoc:Client handle 34 msm-rng-noc\n[    0.692869] random: crng init done\n[    0.698246] iommu-debug soc:kgsl_iommu_test_device: Linked as a consumer to 3da0000.kgsl-smmu\n[    0.698294] iommu: Adding device soc:kgsl_iommu_test_device to group 10\n[    0.698557] iommu-debug soc:apps_iommu_test_device: Linked as a consumer to 15000000.apps-smmu\n[    0.698580] iommu: Adding device soc:apps_iommu_test_device to group 11\n[    0.698732] iommu-debug soc:apps_iommu_coherent_test_device: Linked as a consumer to 15000000.apps-smmu\n[    0.698755] iommu: Adding device soc:apps_iommu_coherent_test_device to group 12\n[    0.702016] brd: module loaded\n[    0.705485] loop: module loaded\n[    0.705570] zram: Added device: zram0\n[    0.706336] QSEECOM: qseecom_init_control: qseecom.qsee_version = 0x1402000\n[    0.706395] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    0.708953] [TP_SPI]: Start register spi for tp\n[    0.709186] qce 1de0000.qcedev: Linked as a consumer to 15000000.apps-smmu\n[    0.709427] iommu: Adding device 1de0000.qcedev to group 13\n[    0.709643] register_client_adhoc:find path.src 125 dest 512\n[    0.709814] register_client_adhoc:Client handle 35 qcedev-noc\n[    0.709918] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    0.710224] qce 1de0000.qcedev: QTI Crypto 5.5.0 device found @0x1de0000\n[    0.710354] sps:BAM 0x0000000001dc4000 is registered.\n[    0.710431] sps:BAM 0x0000000001dc4000 (va:0x000000005e58f732) enabled: ver:0x27, number of pipes:16\n[    0.710578] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 105\n[    0.710848] qce 1de0000.qcedev:qcom_cedev_ns_cb: Linked as a consumer to 15000000.apps-smmu\n[    0.711120] iommu: Adding device 1de0000.qcedev:qcom_cedev_ns_cb to group 14\n[    0.711369] qce 1de0000.qcedev:qcom_cedev_s_cb: Linked as a consumer to 15000000.apps-smmu\n[    0.712058] iommu: Adding device 1de0000.qcedev:qcom_cedev_s_cb to group 15\n[    0.712461] qcrypto 1de0000.qcrypto: Linked as a consumer to 15000000.apps-smmu\n[    0.712641] iommu: Adding device 1de0000.qcrypto to group 16\n[    0.712768] register_client_adhoc:find path.src 125 dest 512\n[    0.712871] register_client_adhoc:Client handle 36 qcrypto-noc\n[    0.712932] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    0.713188] qcrypto 1de0000.qcrypto: QTI Crypto 5.5.0 device found @0x1de0000\n[    0.713362] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 105\n[    0.713530] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    0.713669] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    0.713745] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    0.713814] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    0.713883] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    0.713952] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    0.714020] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    0.714099] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    0.714169] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    0.714238] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    0.714309] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    0.714379] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    0.714452] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    0.714523] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    0.714598] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    0.714671] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    0.714741] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    0.714811] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    0.714888] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    0.714959] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    0.716480] ufshcd-qcom 1d84000.ufshc: no vccq2-voltage-level property.\n[    0.716546] ufshcd-qcom 1d84000.ufshc: Linked as a consumer to regulator.54\n[    0.716736] ufshcd-qcom 1d84000.ufshc: Linked as a consumer to regulator.28\n[    0.716750] ufshcd-qcom 1d84000.ufshc: Linked as a consumer to regulator.16\n[    0.716762] ufshcd-qcom 1d84000.ufshc: Linked as a consumer to regulator.7\n[    0.716984] qcom_ice_get_pdevice: found ice device 0000000010ac3306\n[    0.716985] qcom_ice_get_pdevice: matching platform device 0000000036edf7aa\n[    0.718056] register_client_adhoc:find path.src 123 dest 512\n[    0.718163] register_client_adhoc:find path.src 1 dest 757\n[    0.718238] register_client_adhoc:Client handle 37 ufshc_mem\n[    0.718296] ufs_qcom_phy_qmp_v4 1d87000.ufsphy_mem: Linked as a consumer to regulator.18\n[    0.718308] ufs_qcom_phy_qmp_v4 1d87000.ufsphy_mem: Linked as a consumer to regulator.13\n[    0.718327] ufshcd-qcom 1d84000.ufshc: Linked as a consumer to regulator.36\n[    0.718862] scsi host0: ufshcd\n[    0.723345] qcom_ice 1d90000.ufsice: QC ICE 3.1.81 device found @0x00000000bbc70251\n[    0.740311] SCSI Media Changer driver v0.25 \n[    0.741304] [TP_SPI]: Start probe\n[    0.741305] [TP_SPI]: init ts_xsfer device successful\n[    0.741364] spmi_pmic_arb_debug 6b0f000.qcom,spmi-debug: SPMI PMIC arbiter debug bus disabled by fuse\n[    0.741416] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    0.741852] libphy: Fixed MDIO Bus: probed\n[    0.741859] tun: Universal TUN/TAP device driver, 1.6\n[    0.741969] sky2: driver version 1.30\n[    0.742047] PPP generic driver version 2.4.2\n[    0.742084] PPP BSD Compression module registered\n[    0.742086] PPP Deflate Compression module registered\n[    0.742098] PPP MPPE Compression module registered\n[    0.742100] NET: Registered protocol family 24\n[    0.742100] PPTP driver version 0.8.5\n[    0.742478] CLD80211: Initializing\n[    0.742504] usbcore: registered new interface driver r8152\n[    0.742518] usbcore: registered new interface driver lan78xx\n[    0.742524] usbcore: registered new interface driver asix\n[    0.742529] usbcore: registered new interface driver ax88179_178a\n[    0.742533] usbcore: registered new interface driver cdc_ether\n[    0.742537] usbcore: registered new interface driver net1080\n[    0.742540] usbcore: registered new interface driver cdc_subset\n[    0.742545] usbcore: registered new interface driver zaurus\n[    0.742552] usbcore: registered new interface driver cdc_ncm\n[    0.742855] msm-usb-hsphy 88e3000.hsphy: Linked as a consumer to regulator.13\n[    0.742869] msm-usb-hsphy 88e3000.hsphy: Linked as a consumer to regulator.10\n[    0.742884] msm-usb-hsphy 88e3000.hsphy: Linked as a consumer to regulator.21\n[    0.742887] msm-usb-hsphy 88e3000.hsphy: phy hw_country: 2\n[    0.743404] msm-dwc3 a600000.ssusb: Linked as a consumer to 15000000.apps-smmu\n[    0.743633] iommu: Adding device a600000.ssusb to group 17\n[    0.743774] msm-dwc3 a600000.ssusb: Linked as a consumer to regulator.55\n[    0.743888] cnss: set_wlaon_pwr_ctrl is 1\n[    0.743900] cnss: CPR PMIC address is not available for smpf2\n[    0.743954] cnss2 b0000000.qcom,cnss-qca6390: Linked as a consumer to regulator.7\n[    0.743956] cnss: Got regulator: vdd-wlan-io, min_uv: 1800000, max_uv: 1800000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    0.744014] cnss2 b0000000.qcom,cnss-qca6390: Linked as a consumer to regulator.41\n[    0.744016] cnss: Got regulator: wlan-ant-switch, min_uv: 1800000, max_uv: 1800000, load_ua: 0, delay_us: 0, need_unvote: 0\n[    0.744227] dwc3 a600000.dwc3: Failed to get clk 'ref': -2\n[    0.744288] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    0.745043] register_client_adhoc:find path.src 61 dest 512\n[    0.745176] register_client_adhoc:find path.src 61 dest 676\n[    0.745284] register_client_adhoc:find path.src 1 dest 583\n[    0.745349] register_client_adhoc:Client handle 38 usb0\n[    0.745395] cnss2 b0000000.qcom,cnss-qca6390: Linked as a consumer to regulator.9\n[    0.745398] cnss: Got regulator: vdd-wlan-aon, min_uv: 950000, max_uv: 950000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    0.745411] cnss: Got regulator: vdd-wlan-dig, min_uv: 950000, max_uv: 950000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    0.746324] cnss2 b0000000.qcom,cnss-qca6390: Linked as a consumer to regulator.8\n[    0.746326] cnss: Got regulator: vdd-wlan-rfa1, min_uv: 1900000, max_uv: 1900000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    0.746341] cnss2 b0000000.qcom,cnss-qca6390: Linked as a consumer to regulator.36\n[    0.746342] cnss: Got regulator: vdd-wlan-rfa2, min_uv: 1350000, max_uv: 1350000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    0.746387] cnss: Failed to get optional clock rf_clk, err = -2\n[    0.746426] msm-dwc3 a600000.ssusb: Dropping the link to regulator.55\n[    0.746596] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.746600] ehci-pci: EHCI PCI platform driver\n[    0.746606] ehci-platform: EHCI generic platform driver\n[    0.746693] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    0.746696] ohci-pci: OHCI PCI platform driver\n[    0.746703] ohci-platform: OHCI generic platform driver\n[    0.746953] usbcore: registered new interface driver usb-storage\n[    0.746959] usbcore: registered new interface driver usb_ehset_test\n[    0.746962] usbcore: registered new interface driver lvs\n[    0.747093] cnss: Regulator vdd-wlan-io is being enabled\n[    0.747100] cnss: Regulator wlan-ant-switch is being enabled\n[    0.747207] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: Linked as a consumer to regulator.10\n[    0.747348] cnss: Regulator vdd-wlan-aon is being enabled\n[    0.747391] cnss: Regulator vdd-wlan-dig is being enabled\n[    0.747392] cnss: Regulator vdd-wlan-rfa1 is being enabled\n[    0.747492] cnss: Regulator vdd-wlan-rfa2 is being enabled\n[    0.747816] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    0.747871] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: Dropping the link to regulator.10\n[    0.748040] usbcore: registered new interface driver xpad\n[    0.748043] usbcore: registered new interface driver usb_acecad\n[    0.748046] usbcore: registered new interface driver aiptek\n[    0.748050] usbcore: registered new interface driver gtco\n[    0.748053] usbcore: registered new interface driver hanwang\n[    0.748064] usbcore: registered new interface driver kbtab\n[    0.748068] aw8697 driver version v1.1.3\n[    0.748200] fpc1020 soc:fingerprint_fpc: fpc fpc1020_probe --->: enter! \n[    0.748214] fpc1020 soc:fingerprint_fpc: found pin control fpc1020_reset_reset\n[    0.748215] fpc1020 soc:fingerprint_fpc: found pin control fpc1020_reset_active\n[    0.748228] fpc1020 soc:fingerprint_fpc: fpc reset_gpio_res --->: enter!\n[    0.748229] fpc1020 soc:fingerprint_fpc: fpc reset_gpio_res <---: exit!\n[    0.748236] fpc1020 soc:fingerprint_fpc: fpc1020_probe: GPIO 121 wake set success!\n[    0.748237] fpc1020 soc:fingerprint_fpc: fpc1020_probe: ok\n[    0.748238] fpc1020 soc:fingerprint_fpc: fpc fpc1020_probe <---: exit! \n[    0.748249] fpc1020_tee: fpc1020_init OK\n[    0.748462] rtc-pm8xxx c440000.qcom,spmi:qcom,pm8150@0:qcom,pm8150_rtc: rtc core: registered pm8xxx_rtc as rtc0\n[    0.748633] i2c /dev entries driver\n[    0.748732] msm_pcie_enable: PCIe: Assert the reset of endpoint of RC0.\n[    0.749125] i2c_geni 98c000.i2c: Bus frequency not specified, default to 400KHz.\n[    0.749473] i2c_geni a8c000.i2c: Bus frequency not specified, default to 400KHz.\n[    0.749690] aw8697_i2c_probe enter\n[    0.749696] aw8697_parse_dt  2650 enter\n[    0.749704] aw8697_haptic 2-005a: aw8697_parse_dt: reset gpio provided ok\n[    0.749706] aw8697_haptic 2-005a: aw8697_parse_dt: irq gpio provided ok.\n[    0.749716] aw8697_parse_dt ---2791 aw8697->effects_count=10\n[    0.749716] aw8697_parse_dt  2793  i=0\n[    0.749717] aw8697_parse_dt  2795  i=1\n[    0.749717]  20190420_dt effect_id: 0\n[    0.749718] aw8697_parse_dt ---2803 \n[    0.749718] aw8697_parse_dt ---2811 effect->vmax_mv =3600 \n[    0.749719] aw8697_parse_dt ---2821 \n[    0.749720] aw8697_parse_dt 2835  effect->pattern_length=2  effect->pattern=1803606400 \n[    0.749721] aw8697_parse_dt ---2846 effect->play_rate_us=20000 \n[    0.749722] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    0.749722] aw8697_parse_dt ---2861 \n[    0.749722] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    0.749723] aw8697_parse_dt ---2876 \n[    0.749724] aw8697_parse_dt  2793  i=1\n[    0.749724] aw8697_parse_dt  2795  i=2\n[    0.749724]  20190420_dt effect_id: 1\n[    0.749725] aw8697_parse_dt ---2803 \n[    0.749725] aw8697_parse_dt ---2811 effect->vmax_mv =3600 \n[    0.749725] aw8697_parse_dt ---2821 \n[    0.749727] aw8697_parse_dt 2835  effect->pattern_length=2  effect->pattern=1803600000 \n[    0.749727] aw8697_parse_dt ---2846 effect->play_rate_us=20000 \n[    0.749728] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    0.749728] aw8697_parse_dt ---2861 \n[    0.749729] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    0.749729] aw8697_parse_dt ---2876 \n[    0.749730] aw8697_parse_dt  2793  i=2\n[    0.749730] aw8697_parse_dt  2795  i=3\n[    0.749730]  20190420_dt effect_id: 2\n[    0.749731] aw8697_parse_dt ---2803 \n[    0.749731] aw8697_parse_dt ---2811 effect->vmax_mv =3600 \n[    0.749732] aw8697_parse_dt ---2821 \n[    0.749733] aw8697_parse_dt 2835  effect->pattern_length=2  effect->pattern=1803607424 \n[    0.749733] aw8697_parse_dt ---2846 effect->play_rate_us=20000 \n[    0.749733] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    0.749734] aw8697_parse_dt ---2861 \n[    0.749734] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    0.749735] aw8697_parse_dt ---2876 \n[    0.749735] aw8697_parse_dt  2793  i=3\n[    0.749736] aw8697_parse_dt  2795  i=4\n[    0.749736]  20190420_dt effect_id: 3\n[    0.749736] aw8697_parse_dt ---2803 \n[    0.749737] aw8697_parse_dt ---2811 effect->vmax_mv =3600 \n[    0.749737] aw8697_parse_dt ---2821 \n[    0.749738] aw8697_parse_dt 2835  effect->pattern_length=2  effect->pattern=1803605120 \n[    0.749738] aw8697_parse_dt ---2846 effect->play_rate_us=20000 \n[    0.749739] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    0.749739] aw8697_parse_dt ---2861 \n[    0.749740] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    0.749740] aw8697_parse_dt ---2876 \n[    0.749741] aw8697_parse_dt  2793  i=4\n[    0.749741] aw8697_parse_dt  2795  i=5\n[    0.749741]  20190420_dt effect_id: 4\n[    0.749742] aw8697_parse_dt ---2803 \n[    0.749742] aw8697_parse_dt ---2811 effect->vmax_mv =3600 \n[    0.749743] aw8697_parse_dt ---2821 \n[    0.749744] aw8697_parse_dt 2835  effect->pattern_length=2  effect->pattern=1803601024 \n[    0.749744] aw8697_parse_dt ---2846 effect->play_rate_us=28000 \n[    0.749745] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    0.749745] aw8697_parse_dt ---2861 \n[    0.749745] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    0.749746] aw8697_parse_dt ---2876 \n[    0.749746] aw8697_parse_dt  2793  i=5\n[    0.749747] aw8697_parse_dt  2795  i=6\n[    0.749747]  20190420_dt effect_id: 5\n[    0.749748] aw8697_parse_dt ---2803 \n[    0.749748] aw8697_parse_dt ---2811 effect->vmax_mv =3600 \n[    0.749749] aw8697_parse_dt ---2821 \n[    0.749749] aw8697_parse_dt 2835  effect->pattern_length=3  effect->pattern=1803605376 \n[    0.749750] aw8697_parse_dt ---2846 effect->play_rate_us=20000 \n[    0.749750] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    0.749750] aw8697_parse_dt ---2861 \n[    0.749751] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    0.749751] aw8697_parse_dt ---2876 \n[    0.749752] aw8697_parse_dt  2793  i=6\n[    0.749752] aw8697_parse_dt  2795  i=7\n[    0.749753]  20190420_dt effect_id: 6\n[    0.749753] aw8697_parse_dt ---2803 \n[    0.749754] aw8697_parse_dt ---2811 effect->vmax_mv =3600 \n[    0.749754] aw8697_parse_dt ---2821 \n[    0.749755] aw8697_parse_dt 2835  effect->pattern_length=2  effect->pattern=1803600256 \n[    0.749755] aw8697_parse_dt ---2846 effect->play_rate_us=20000 \n[    0.749756] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    0.749756] aw8697_parse_dt ---2861 \n[    0.749756] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    0.749757] aw8697_parse_dt ---2876 \n[    0.749757] aw8697_parse_dt  2793  i=7\n[    0.749758] aw8697_parse_dt  2795  i=8\n[    0.749758]  20190420_dt effect_id: 7\n[    0.749758] aw8697_parse_dt ---2803 \n[    0.749759] aw8697_parse_dt ---2811 effect->vmax_mv =3600 \n[    0.749759] aw8697_parse_dt ---2821 \n[    0.749760] aw8697_parse_dt 2835  effect->pattern_length=2  effect->pattern=1803600768 \n[    0.749760] aw8697_parse_dt ---2846 effect->play_rate_us=20000 \n[    0.749760] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    0.749761] aw8697_parse_dt ---2861 \n[    0.749761] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    0.749762] aw8697_parse_dt ---2876 \n[    0.749762] aw8697_parse_dt  2793  i=8\n[    0.749763] aw8697_parse_dt  2795  i=9\n[    0.749763]  20190420_dt effect_id: 8\n[    0.749764] aw8697_parse_dt ---2803 \n[    0.749764] aw8697_parse_dt ---2811 effect->vmax_mv =3600 \n[    0.749765] aw8697_parse_dt ---2821 \n[    0.749765] aw8697_parse_dt 2835  effect->pattern_length=2  effect->pattern=1803603072 \n[    0.749765] aw8697_parse_dt ---2846 effect->play_rate_us=20000 \n[    0.749766] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    0.749766] aw8697_parse_dt ---2861 \n[    0.749767] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    0.749767] aw8697_parse_dt ---2876 \n[    0.749768] aw8697_parse_dt  2793  i=9\n[    0.749768] aw8697_parse_dt  2795  i=10\n[    0.749769]  20190420_dt effect_id: 9\n[    0.749769] aw8697_parse_dt ---2803 \n[    0.749770] aw8697_parse_dt ---2811 effect->vmax_mv =3600 \n[    0.749770] aw8697_parse_dt ---2821 \n[    0.749772] aw8697_parse_dt 2835  effect->pattern_length=2  effect->pattern=1803603328 \n[    0.749772] aw8697_parse_dt ---2846 effect->play_rate_us=20000 \n[    0.749773] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    0.749773] aw8697_parse_dt ---2861 \n[    0.749774] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    0.749774] aw8697_parse_dt ---2876 \n[    0.749775]  20190420_dt       effect_id: 0\n[    0.749775]  20190420_dt       vmax: 3600 mv\n[    0.749776] 20190420_dt        play_rate: 20000 us\n[    0.749776] 20190420_dt     pattern[0]: 0x3e\n[    0.749777] 20190420_dt     pattern[1]: 0x3e\n[    0.749777] 20190420_dt     brake_pattern[0]: 0x2\n[    0.749777] 20190420_dt     brake_pattern[1]: 0x1\n[    0.749778] 20190420_dt     brake_pattern[2]: 0x0\n[    0.749778] 20190420_dt     brake_pattern[3]: 0x0\n[    0.749779] 20190420_dt         brake_en: 0\n[    0.749779] 20190420_dt        wf_repeat_n: 0\n[    0.749780] 20190420_dt         wf_s_repeat_n: 0\n[    0.749780] 20190420_dt         lra_auto_res_disable: 0\n[    0.749781]  20190420_dt       effect_id: 1\n[    0.749781]  20190420_dt       vmax: 3600 mv\n[    0.749781] 20190420_dt        play_rate: 20000 us\n[    0.749782] 20190420_dt     pattern[0]: 0x7e\n[    0.749782] 20190420_dt     pattern[1]: 0x3e\n[    0.749783] 20190420_dt     brake_pattern[0]: 0x3\n[    0.749783] 20190420_dt     brake_pattern[1]: 0x1\n[    0.749783] 20190420_dt     brake_pattern[2]: 0x0\n[    0.749784] 20190420_dt     brake_pattern[3]: 0x0\n[    0.749784] 20190420_dt         brake_en: 0\n[    0.749785] 20190420_dt        wf_repeat_n: 0\n[    0.749785] 20190420_dt         wf_s_repeat_n: 0\n[    0.749785] 20190420_dt         lra_auto_res_disable: 0\n[    0.749786]  20190420_dt       effect_id: 2\n[    0.749786]  20190420_dt       vmax: 3600 mv\n[    0.749787] 20190420_dt        play_rate: 20000 us\n[    0.749787] 20190420_dt     pattern[0]: 0x7e\n[    0.749788] 20190420_dt     pattern[1]: 0x3e\n[    0.749788] 20190420_dt     brake_pattern[0]: 0x2\n[    0.749788] 20190420_dt     brake_pattern[1]: 0x1\n[    0.749789] 20190420_dt     brake_pattern[2]: 0x0\n[    0.749789] 20190420_dt     brake_pattern[3]: 0x0\n[    0.749790] 20190420_dt         brake_en: 0\n[    0.749790] 20190420_dt        wf_repeat_n: 0\n[    0.749790] 20190420_dt         wf_s_repeat_n: 0\n[    0.749791] 20190420_dt         lra_auto_res_disable: 0\n[    0.749791]  20190420_dt       effect_id: 3\n[    0.749792]  20190420_dt       vmax: 3600 mv\n[    0.749792] 20190420_dt        play_rate: 20000 us\n[    0.749792] 20190420_dt     pattern[0]: 0x3e\n[    0.749793] 20190420_dt     pattern[1]: 0x3e\n[    0.749793] 20190420_dt     brake_pattern[0]: 0x2\n[    0.749793] 20190420_dt     brake_pattern[1]: 0x1\n[    0.749794] 20190420_dt     brake_pattern[2]: 0x0\n[    0.749794] 20190420_dt     brake_pattern[3]: 0x0\n[    0.749794] 20190420_dt         brake_en: 0\n[    0.749795] 20190420_dt        wf_repeat_n: 0\n[    0.749795] 20190420_dt         wf_s_repeat_n: 0\n[    0.749796] 20190420_dt         lra_auto_res_disable: 0\n[    0.749796]  20190420_dt       effect_id: 4\n[    0.749796]  20190420_dt       vmax: 3600 mv\n[    0.749797] 20190420_dt        play_rate: 28000 us\n[    0.749797] 20190420_dt     pattern[0]: 0x3e\n[    0.749797] 20190420_dt     pattern[1]: 0x3e\n[    0.749798] 20190420_dt     brake_pattern[0]: 0x2\n[    0.749798] 20190420_dt     brake_pattern[1]: 0x1\n[    0.749799] 20190420_dt     brake_pattern[2]: 0x0\n[    0.749799] 20190420_dt     brake_pattern[3]: 0x0\n[    0.749799] 20190420_dt         brake_en: 0\n[    0.749800] 20190420_dt        wf_repeat_n: 0\n[    0.749800] 20190420_dt         wf_s_repeat_n: 0\n[    0.749801] 20190420_dt         lra_auto_res_disable: 0\n[    0.749801]  20190420_dt       effect_id: 5\n[    0.749801]  20190420_dt       vmax: 3600 mv\n[    0.749802] 20190420_dt        play_rate: 20000 us\n[    0.749802] 20190420_dt     pattern[0]: 0x7e\n[    0.749803] 20190420_dt     pattern[1]: 0x7e\n[    0.749803] 20190420_dt     pattern[2]: 0x7e\n[    0.749804] 20190420_dt     brake_pattern[0]: 0x3\n[    0.749804] 20190420_dt     brake_pattern[1]: 0x3\n[    0.749804] 20190420_dt     brake_pattern[2]: 0x1\n[    0.749805] 20190420_dt     brake_pattern[3]: 0x0\n[    0.749805] 20190420_dt         brake_en: 0\n[    0.749805] 20190420_dt        wf_repeat_n: 0\n[    0.749806] 20190420_dt         wf_s_repeat_n: 0\n[    0.749806] 20190420_dt         lra_auto_res_disable: 0\n[    0.749807]  20190420_dt       effect_id: 6\n[    0.749807]  20190420_dt       vmax: 3600 mv\n[    0.749807] 20190420_dt        play_rate: 20000 us\n[    0.749808] 20190420_dt     pattern[0]: 0x3e\n[    0.749808] 20190420_dt     pattern[1]: 0x3e\n[    0.749809] 20190420_dt     brake_pattern[0]: 0x2\n[    0.749809] 20190420_dt     brake_pattern[1]: 0x1\n[    0.749810] 20190420_dt     brake_pattern[2]: 0x0\n[    0.749810] 20190420_dt     brake_pattern[3]: 0x0\n[    0.749810] 20190420_dt         brake_en: 0\n[    0.749811] 20190420_dt        wf_repeat_n: 0\n[    0.749811] 20190420_dt         wf_s_repeat_n: 0\n[    0.749811] 20190420_dt         lra_auto_res_disable: 0\n[    0.749812]  20190420_dt       effect_id: 7\n[    0.749812]  20190420_dt       vmax: 3600 mv\n[    0.749813] 20190420_dt        play_rate: 20000 us\n[    0.749813] 20190420_dt     pattern[0]: 0x3e\n[    0.749813] 20190420_dt     pattern[1]: 0x3e\n[    0.749814] 20190420_dt     brake_pattern[0]: 0x2\n[    0.749814] 20190420_dt     brake_pattern[1]: 0x1\n[    0.749815] 20190420_dt     brake_pattern[2]: 0x0\n[    0.749815] 20190420_dt     brake_pattern[3]: 0x0\n[    0.749816] 20190420_dt         brake_en: 0\n[    0.749816] 20190420_dt        wf_repeat_n: 0\n[    0.749816] 20190420_dt         wf_s_repeat_n: 0\n[    0.749817] 20190420_dt         lra_auto_res_disable: 0\n[    0.749817]  20190420_dt       effect_id: 8\n[    0.749817]  20190420_dt       vmax: 3600 mv\n[    0.749818] 20190420_dt        play_rate: 20000 us\n[    0.749818] 20190420_dt     pattern[0]: 0x3e\n[    0.749818] 20190420_dt     pattern[1]: 0x3e\n[    0.749819] 20190420_dt     brake_pattern[0]: 0x2\n[    0.749819] 20190420_dt     brake_pattern[1]: 0x1\n[    0.749820] 20190420_dt     brake_pattern[2]: 0x0\n[    0.749820] 20190420_dt     brake_pattern[3]: 0x0\n[    0.749820] 20190420_dt         brake_en: 0\n[    0.749821] 20190420_dt        wf_repeat_n: 0\n[    0.749821] 20190420_dt         wf_s_repeat_n: 0\n[    0.749821] 20190420_dt         lra_auto_res_disable: 0\n[    0.749822]  20190420_dt       effect_id: 9\n[    0.749822]  20190420_dt       vmax: 3600 mv\n[    0.749823] 20190420_dt        play_rate: 20000 us\n[    0.749823] 20190420_dt     pattern[0]: 0x3e\n[    0.749823] 20190420_dt     pattern[1]: 0x3e\n[    0.749824] 20190420_dt     brake_pattern[0]: 0x2\n[    0.749824] 20190420_dt     brake_pattern[1]: 0x1\n[    0.749824] 20190420_dt     brake_pattern[2]: 0x0\n[    0.749825] 20190420_dt     brake_pattern[3]: 0x0\n[    0.749825] 20190420_dt         brake_en: 0\n[    0.749826] 20190420_dt        wf_repeat_n: 0\n[    0.749826] 20190420_dt         wf_s_repeat_n: 0\n[    0.749827] 20190420_dt         lra_auto_res_disable: 0\n[    0.749827]  20190420_dt       aw8697->effects_count: 10\n[    0.749827]  20190420_dt       aw8697->effect_id_boundary: 10\n[    0.749828]  20190420_dt       aw8697->effect_max: 170\n[    0.749828]  20190420_dt       aw8697->info.cont_drv_lvl: 73\n[    0.749829]  20190420_dt       aw8697->info.cont_drv_lvl_ov: 73\n[    0.749829]  20190420_dt       aw8697->info.trig_config[0][0]: 0\n[    0.749830]  20190420_dt       aw8697->info.trig_config[0][1]: 1\n[    0.749830]  20190420_dt       aw8697->info.trig_config[0][2]: 0\n[    0.749830]  20190420_dt       aw8697->info.trig_config[0][3]: 1\n[    0.749831]  20190420_dt       aw8697->info.trig_config[0][4]: 2\n[    0.749831]  20190420_dt       aw8697->info.trig_config[1][0]: 0\n[    0.749831]  20190420_dt       aw8697->info.trig_config[1][1]: 1\n[    0.749832]  20190420_dt       aw8697->info.trig_config[1][2]: 0\n[    0.749833]  20190420_dt       aw8697->info.trig_config[1][3]: 1\n[    0.749833]  20190420_dt       aw8697->info.trig_config[1][4]: 2\n[    0.749834]  20190420_dt       aw8697->info.trig_config[2][0]: 0\n[    0.749834]  20190420_dt       aw8697->info.trig_config[2][1]: 1\n[    0.749834]  20190420_dt       aw8697->info.trig_config[2][2]: 0\n[    0.749835]  20190420_dt       aw8697->info.trig_config[2][3]: 1\n[    0.749835]  20190420_dt       aw8697->info.trig_config[2][4]: 2\n[    0.749836]  20190420_dt       aw8697->info.rtp_time[0]: 20\n[    0.749836]  20190420_dt       aw8697->info.rtp_time[1]: 20\n[    0.749836]  20190420_dt       aw8697->info.rtp_time[2]: 20\n[    0.749837]  20190420_dt       aw8697->info.rtp_time[3]: 20\n[    0.749837]  20190420_dt       aw8697->info.rtp_time[4]: 20\n[    0.749838]  20190420_dt       aw8697->info.rtp_time[5]: 20\n[    0.749838]  20190420_dt       aw8697->info.rtp_time[6]: 20\n[    0.749839]  20190420_dt       aw8697->info.rtp_time[7]: 20\n[    0.749839]  20190420_dt       aw8697->info.rtp_time[8]: 20000\n[    0.749839]  20190420_dt       aw8697->info.rtp_time[9]: 15000\n[    0.749840]  20190420_dt       aw8697->info.rtp_time[10]: 15000\n[    0.749840]  20190420_dt       aw8697->info.rtp_time[11]: 20000\n[    0.749841]  20190420_dt       aw8697->info.rtp_time[12]: 25000\n[    0.749841]  20190420_dt       aw8697->info.rtp_time[13]: 15000\n[    0.749842]  20190420_dt       aw8697->info.rtp_time[14]: 30000\n[    0.749842]  20190420_dt       aw8697->info.rtp_time[15]: 25000\n[    0.749842]  20190420_dt       aw8697->info.rtp_time[16]: 20000\n[    0.749843]  20190420_dt       aw8697->info.rtp_time[17]: 20000\n[    0.749843]  20190420_dt       aw8697->info.rtp_time[18]: 20000\n[    0.749844]  20190420_dt       aw8697->info.rtp_time[19]: 20000\n[    0.749844]  20190420_dt       aw8697->info.rtp_time[20]: 20000\n[    0.749844]  20190420_dt       aw8697->info.rtp_time[21]: 20000\n[    0.749845]  20190420_dt       aw8697->info.rtp_time[22]: 20000\n[    0.749845]  20190420_dt       aw8697->info.rtp_time[23]: 20000\n[    0.749846]  20190420_dt       aw8697->info.rtp_time[24]: 20000\n[    0.749846]  20190420_dt       aw8697->info.rtp_time[25]: 20000\n[    0.749846]  20190420_dt       aw8697->info.rtp_time[26]: 20000\n[    0.749847]  20190420_dt       aw8697->info.rtp_time[27]: 20000\n[    0.749847]  20190420_dt       aw8697->info.rtp_time[28]: 20000\n[    0.749848]  20190420_dt       aw8697->info.rtp_time[29]: 20000\n[    0.749848]  20190420_dt       aw8697->info.rtp_time[30]: 20000\n[    0.749849]  20190420_dt       aw8697->info.rtp_time[31]: 20000\n[    0.749849]  20190420_dt       aw8697->info.rtp_time[32]: 20000\n[    0.749849]  20190420_dt       aw8697->info.rtp_time[33]: 20000\n[    0.749850]  20190420_dt       aw8697->info.rtp_time[34]: 20000\n[    0.749850]  20190420_dt       aw8697->info.rtp_time[35]: 20000\n[    0.749850]  20190420_dt       aw8697->info.rtp_time[36]: 20000\n[    0.749851]  20190420_dt       aw8697->info.rtp_time[37]: 20000\n[    0.749851]  20190420_dt       aw8697->info.rtp_time[38]: 20000\n[    0.749852]  20190420_dt       aw8697->info.rtp_time[39]: 20000\n[    0.749852]  20190420_dt       aw8697->info.rtp_time[40]: 20000\n[    0.749852]  20190420_dt       aw8697->info.rtp_time[41]: 20000\n[    0.749853]  20190420_dt       aw8697->info.rtp_time[42]: 20000\n[    0.749853]  20190420_dt       aw8697->info.rtp_time[43]: 20000\n[    0.749854]  20190420_dt       aw8697->info.rtp_time[44]: 20000\n[    0.749854]  20190420_dt       aw8697->info.rtp_time[45]: 20000\n[    0.749855]  20190420_dt       aw8697->info.rtp_time[46]: 20000\n[    0.749855]  20190420_dt       aw8697->info.rtp_time[47]: 20000\n[    0.749855]  20190420_dt       aw8697->info.rtp_time[48]: 20000\n[    0.749856]  20190420_dt       aw8697->info.rtp_time[49]: 20000\n[    0.749856]  20190420_dt       aw8697->info.rtp_time[50]: 20000\n[    0.749857]  20190420_dt       aw8697->info.rtp_time[51]: 20000\n[    0.749857]  20190420_dt       aw8697->info.rtp_time[52]: 20000\n[    0.749858]  20190420_dt       aw8697->info.rtp_time[53]: 20000\n[    0.749858]  20190420_dt       aw8697->info.rtp_time[54]: 20000\n[    0.749859]  20190420_dt       aw8697->info.rtp_time[55]: 20000\n[    0.749859]  20190420_dt       aw8697->info.rtp_time[56]: 20000\n[    0.749859]  20190420_dt       aw8697->info.rtp_time[57]: 20000\n[    0.749860]  20190420_dt       aw8697->info.rtp_time[58]: 20000\n[    0.749860]  20190420_dt       aw8697->info.rtp_time[59]: 20000\n[    0.749860]  20190420_dt       aw8697->info.rtp_time[60]: 20000\n[    0.749861]  20190420_dt       aw8697->info.rtp_time[61]: 20000\n[    0.749861]  20190420_dt       aw8697->info.rtp_time[62]: 20000\n[    0.749862]  20190420_dt       aw8697->info.rtp_time[63]: 20000\n[    0.749862]  20190420_dt       aw8697->info.rtp_time[64]: 20000\n[    0.749862]  20190420_dt       aw8697->info.rtp_time[65]: 20000\n[    0.749863]  20190420_dt       aw8697->info.rtp_time[66]: 20000\n[    0.749863]  20190420_dt       aw8697->info.rtp_time[67]: 20000\n[    0.749863]  20190420_dt       aw8697->info.rtp_time[68]: 20000\n[    0.749864]  20190420_dt       aw8697->info.rtp_time[69]: 20000\n[    0.749864]  20190420_dt       aw8697->info.rtp_time[70]: 20000\n[    0.749865]  20190420_dt       aw8697->info.rtp_time[71]: 20000\n[    0.749865]  20190420_dt       aw8697->info.rtp_time[72]: 20000\n[    0.749865]  20190420_dt       aw8697->info.rtp_time[73]: 20000\n[    0.749866]  20190420_dt       aw8697->info.rtp_time[74]: 20000\n[    0.749866]  20190420_dt       aw8697->info.rtp_time[75]: 20000\n[    0.749867]  20190420_dt       aw8697->info.rtp_time[76]: 20000\n[    0.749867]  20190420_dt       aw8697->info.rtp_time[77]: 20000\n[    0.749867]  20190420_dt       aw8697->info.rtp_time[78]: 20000\n[    0.749868]  20190420_dt       aw8697->info.rtp_time[79]: 20000\n[    0.749868]  20190420_dt       aw8697->info.rtp_time[80]: 20000\n[    0.749869]  20190420_dt       aw8697->info.rtp_time[81]: 20000\n[    0.749869]  20190420_dt       aw8697->info.rtp_time[82]: 20000\n[    0.749869]  20190420_dt       aw8697->info.rtp_time[83]: 20000\n[    0.749870]  20190420_dt       aw8697->info.rtp_time[84]: 20000\n[    0.749870]  20190420_dt       aw8697->info.rtp_time[85]: 20000\n[    0.749871]  20190420_dt       aw8697->info.rtp_time[86]: 20000\n[    0.749871]  20190420_dt       aw8697->info.rtp_time[87]: 20000\n[    0.749872]  20190420_dt       aw8697->info.rtp_time[88]: 20000\n[    0.749872]  20190420_dt       aw8697->info.rtp_time[89]: 20000\n[    0.749873]  20190420_dt       aw8697->info.rtp_time[90]: 20000\n[    0.749873]  20190420_dt       aw8697->info.rtp_time[91]: 20000\n[    0.749873]  20190420_dt       aw8697->info.rtp_time[92]: 20000\n[    0.749874]  20190420_dt       aw8697->info.rtp_time[93]: 20000\n[    0.749874]  20190420_dt       aw8697->info.rtp_time[94]: 20000\n[    0.749875]  20190420_dt       aw8697->info.rtp_time[95]: 20000\n[    0.749875]  20190420_dt       aw8697->info.rtp_time[96]: 20000\n[    0.749875]  20190420_dt       aw8697->info.rtp_time[97]: 20000\n[    0.749876]  20190420_dt       aw8697->info.rtp_time[98]: 20000\n[    0.749876]  20190420_dt       aw8697->info.rtp_time[99]: 20000\n[    0.749877]  20190420_dt       aw8697->info.rtp_time[100]: 20000\n[    0.749877]  20190420_dt       aw8697->info.rtp_time[101]: 20000\n[    0.749878]  20190420_dt       aw8697->info.rtp_time[102]: 20000\n[    0.749878]  20190420_dt       aw8697->info.rtp_time[103]: 20000\n[    0.749879]  20190420_dt       aw8697->info.rtp_time[104]: 20000\n[    0.749879]  20190420_dt       aw8697->info.rtp_time[105]: 20000\n[    0.749880]  20190420_dt       aw8697->info.rtp_time[106]: 20000\n[    0.749880]  20190420_dt       aw8697->info.rtp_time[107]: 20000\n[    0.749880]  20190420_dt       aw8697->info.rtp_time[108]: 20000\n[    0.749881]  20190420_dt       aw8697->info.rtp_time[109]: 20000\n[    0.749881]  20190420_dt       aw8697->info.rtp_time[110]: 20000\n[    0.749881]  20190420_dt       aw8697->info.rtp_time[111]: 20000\n[    0.749882]  20190420_dt       aw8697->info.rtp_time[112]: 20000\n[    0.749882]  20190420_dt       aw8697->info.rtp_time[113]: 20000\n[    0.749883]  20190420_dt       aw8697->info.rtp_time[114]: 20000\n[    0.749883]  20190420_dt       aw8697->info.rtp_time[115]: 20000\n[    0.749883]  20190420_dt       aw8697->info.rtp_time[116]: 20000\n[    0.749884]  20190420_dt       aw8697->info.rtp_time[117]: 20000\n[    0.749884]  20190420_dt       aw8697->info.rtp_time[118]: 20000\n[    0.749885]  20190420_dt       aw8697->info.rtp_time[119]: 20000\n[    0.749885]  20190420_dt       aw8697->info.rtp_time[120]: 20000\n[    0.749886]  20190420_dt       aw8697->info.rtp_time[121]: 20000\n[    0.749886]  20190420_dt       aw8697->info.rtp_time[122]: 20000\n[    0.749886]  20190420_dt       aw8697->info.rtp_time[123]: 20000\n[    0.749887]  20190420_dt       aw8697->info.rtp_time[124]: 20000\n[    0.749887]  20190420_dt       aw8697->info.rtp_time[125]: 20000\n[    0.749888]  20190420_dt       aw8697->info.rtp_time[126]: 20000\n[    0.749888]  20190420_dt       aw8697->info.rtp_time[127]: 20000\n[    0.749889]  20190420_dt       aw8697->info.rtp_time[128]: 20000\n[    0.749889]  20190420_dt       aw8697->info.rtp_time[129]: 20000\n[    0.749890]  20190420_dt       aw8697->info.rtp_time[130]: 20000\n[    0.749890]  20190420_dt       aw8697->info.rtp_time[131]: 20000\n[    0.749890]  20190420_dt       aw8697->info.rtp_time[132]: 20000\n[    0.749891]  20190420_dt       aw8697->info.rtp_time[133]: 20000\n[    0.749891]  20190420_dt       aw8697->info.rtp_time[134]: 20000\n[    0.749892]  20190420_dt       aw8697->info.rtp_time[135]: 20000\n[    0.749892]  20190420_dt       aw8697->info.rtp_time[136]: 20000\n[    0.749893]  20190420_dt       aw8697->info.rtp_time[137]: 20000\n[    0.749893]  20190420_dt       aw8697->info.rtp_time[138]: 20000\n[    0.749893]  20190420_dt       aw8697->info.rtp_time[139]: 20000\n[    0.749894]  20190420_dt       aw8697->info.rtp_time[140]: 20000\n[    0.749894]  20190420_dt       aw8697->info.rtp_time[141]: 20000\n[    0.749895]  20190420_dt       aw8697->info.rtp_time[142]: 20000\n[    0.749895]  20190420_dt       aw8697->info.rtp_time[143]: 20000\n[    0.749896]  20190420_dt       aw8697->info.rtp_time[144]: 20000\n[    0.749896]  20190420_dt       aw8697->info.rtp_time[145]: 20000\n[    0.749896]  20190420_dt       aw8697->info.rtp_time[146]: 20000\n[    0.749897]  20190420_dt       aw8697->info.rtp_time[147]: 20000\n[    0.749898]  20190420_dt       aw8697->info.rtp_time[148]: 20000\n[    0.749898]  20190420_dt       aw8697->info.rtp_time[149]: 20000\n[    0.749898]  20190420_dt       aw8697->info.rtp_time[150]: 20000\n[    0.749899]  20190420_dt       aw8697->info.rtp_time[151]: 20000\n[    0.749899]  20190420_dt       aw8697->info.rtp_time[152]: 20000\n[    0.749900]  20190420_dt       aw8697->info.rtp_time[153]: 20000\n[    0.749900]  20190420_dt       aw8697->info.rtp_time[154]: 20000\n[    0.749900]  20190420_dt       aw8697->info.rtp_time[155]: 20000\n[    0.749901]  20190420_dt       aw8697->info.rtp_time[156]: 20000\n[    0.749901]  20190420_dt       aw8697->info.rtp_time[157]: 20000\n[    0.749902]  20190420_dt       aw8697->info.rtp_time[158]: 20000\n[    0.749902]  20190420_dt       aw8697->info.rtp_time[159]: 20000\n[    0.749903]  20190420_dt       aw8697->info.rtp_time[160]: 20000\n[    0.749903]  20190420_dt       aw8697->info.rtp_time[161]: 20000\n[    0.749903]  20190420_dt       aw8697->info.rtp_time[162]: 20000\n[    0.749904]  20190420_dt       aw8697->info.rtp_time[163]: 20000\n[    0.749905]  20190420_dt       aw8697->info.rtp_time[164]: 20000\n[    0.749905]  20190420_dt       aw8697->info.rtp_time[165]: 20000\n[    0.749906]  20190420_dt       aw8697->info.rtp_time[166]: 20000\n[    0.749906]  20190420_dt       aw8697->info.rtp_time[167]: 20000\n[    0.749907]  20190420_dt       aw8697->info.rtp_time[168]: 20000\n[    0.749907]  20190420_dt       aw8697->info.rtp_time[169]: 20000\n[    0.749907]  20190420_dt       aw8697->info.rtp_time[170]: 20000\n[    0.749908]  20190420_dt       aw8697->info.rtp_time[171]: 20000\n[    0.749908]  20190420_dt       aw8697->info.rtp_time[172]: 20000\n[    0.749908]  20190420_dt       aw8697->info.rtp_time[173]: 20000\n[    0.749909]  20190420_dt       aw8697->info.rtp_time[174]: 20000\n[    0.749909]  20190420_dt       aw8697->info.bst_vol_default: 0x11\n[    0.749910]  20190420_dt       aw8697->info.bst_vol_ram: 0x11\n[    0.749910]  20190420_dt       aw8697->info.bst_vol_rtp: 0x11\n[    0.749911] aw8697_i2c_probe ---4457 \n[    0.749935] found pin control aw8697_reset_reset\n[    0.749937] Selected 'aw8697_interrupt_active'\n[    0.749937] found pin control aw8697_reset_active\n[    0.749938] Selected 'aw8697_interrupt_active'\n[    0.749938] found pin control aw8697_interrupt_active\n[    0.749964] Selected 'aw8697_interrupt_active'\n[    0.749964] aw8697_i2c_probe ---4497 \n[    0.750007] Selected 'aw8697_reset_active'\n[    0.751290] nq-nci 0-0028: nqx_probe: enter\n[    0.751295] nq-nci 0-0028: nfc_parse_dt : Enter\n[    0.751315] nq-nci 0-0028: ese GPIO <OPTIONAL> error getting from OF node\n[    0.751324] nq-nci 0-0028: nfc_parse_dt : irq:1211, ven:1183, firm:1210, clkreq:1107\n[    0.751369] nq-nci 0-0028: nqx_probe: ese gpio not provided\n[    0.751523] nq-nci 0-0028: nfcc_hw_check: - reset NFCC 1 - pull down and pull up VEN\n[    0.752762] msm_pcie_enable: PCIe: RC0: PCIE20_PARF_INT_ALL_MASK: 0x7f80c202\n[    0.753060] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    0.755118] pcie_phy_init: PCIe RC0 PHY is ready!\n[    0.760060] Selected 'aw8697_reset_reset'\n[    0.765171] msm_pcie_enable: PCIe: Release the reset of endpoint of RC0.\n[    0.780052] Selected 'aw8697_reset_active'\n[    0.780190] i2c_geni a8c000.i2c: i2c error :-107\n[    0.780191] aw8697_i2c_read: i2c_read cnt=0 error=-107\n[    0.781604] msm_pcie_link_train: PCIe RC0 link initialized\n[    0.782433] pci-msm 1c00000.qcom,pcie: host bridge /soc/qcom,pcie@1c00000 ranges:\n[    0.782443] pci-msm 1c00000.qcom,pcie:   No bus range found for /soc/qcom,pcie@1c00000, using [bus 00-ff]\n[    0.782457] pci-msm 1c00000.qcom,pcie:    IO 0x60200000..0x602fffff -> 0x60200000\n[    0.782467] pci-msm 1c00000.qcom,pcie:   MEM 0x60300000..0x63ffffff -> 0x60300000\n[    0.782892] pci-msm 1c00000.qcom,pcie: PCI host bridge to bus 0000:00\n[    0.782899] pci_bus 0000:00: root bus resource [bus 00-ff]\n[    0.782904] pci_bus 0000:00: root bus resource [io  0x0000-0xfffff] (bus address [0x60200000-0x602fffff])\n[    0.782908] pci_bus 0000:00: root bus resource [mem 0x60300000-0x63ffffff]\n[    0.782970] pci 0000:00:00.0: [17cb:010b] type 01 class 0x060400\n[    0.783081] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]\n[    0.783289] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold\n[    0.800315] aw8697_read_chipid aw8697 detected\n[    0.803700] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring\n[    0.803953] pci 0000:01:00.0: [17cb:1101] type 00 class 0xff0000\n[    0.804109] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x000fffff 64bit]\n[    0.804591] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold\n[    0.804692] pci 0000:01:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5 GT/s x1 link at 0000:00:00.0 (capable of 7.876 Gb/s with 8 GT/s x1 link)\n[    0.820910] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01\n[    0.820951] pci 0000:00:00.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000\n[    0.820954] pci 0000:00:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000\n[    0.820955] pci 0000:00:00.0: bridge window [mem 0x00100000-0x001fffff] to [bus 01] add_size 200000 add_align 100000\n[    0.820962] pci 0000:00:00.0: BAR 8: assigned [mem 0x60300000-0x605fffff]\n[    0.820964] pci 0000:00:00.0: BAR 9: assigned [mem 0x60600000-0x607fffff 64bit pref]\n[    0.820965] pci 0000:00:00.0: BAR 0: assigned [mem 0x60800000-0x60800fff 64bit]\n[    0.820985] pci 0000:00:00.0: BAR 7: assigned [io  0x1000-0x1fff]\n[    0.820987] pci 0000:01:00.0: BAR 0: assigned [mem 0x60300000-0x603fffff 64bit]\n[    0.821028] pci 0000:00:00.0: PCI bridge to [bus 01]\n[    0.821030] pci 0000:00:00.0:   bridge window [io  0x1000-0x1fff]\n[    0.821042] pci 0000:00:00.0:   bridge window [mem 0x60300000-0x605fffff]\n[    0.821049] pci 0000:00:00.0:   bridge window [mem 0x60600000-0x607fffff 64bit pref]\n[    0.821159] pci-msm-rc 0000:00:00.0: Linked as a consumer to 15000000.apps-smmu\n[    0.821456] iommu: Adding device 0000:00:00.0 to group 18\n[    0.821859] msm_pcie_enumerate: PCIe: RC0: has already been enumerated.\n[    0.821890] cnss_pci 0000:01:00.0: Linked as a consumer to 15000000.apps-smmu\n[    0.826645] iommu: Adding device 0000:01:00.0 to group 19\n[    0.826795] cnss: PCI is probing, vendor ID: 0x17cb, device ID: 0x1101\n[    0.826805] cnss_pci 0000:01:00.0: assigned reserved memory node cnss_wlan_region\n[    0.826806] cnss: CMA area is cnss_wlan_region\n[    0.826996] cnss: Powerup is ignored\n[    0.827008] cnss: Ramdump size 0x400000\n[    0.827016] cnss2 b0000000.qcom,cnss-qca6390: for wlan segments only will be dumped.\n[    0.827062] cnss: Initializing SMMU\n[    0.827063] cnss: Enabling SMMU S1 stage\n[    0.827064] cnss: smmu_iova_start: 0x00000000a0000000, smmu_iova_len: 0x10000000\n[    0.827067] cnss: smmu_iova_ipa_start: 0x00000000b0000000, smmu_iova_ipa_len: 0x10000\n[    0.827070] cnss: PCIe DRV is supported\n[    0.827085] cnss_pci 0000:01:00.0: BAR 0: assigned [mem 0x60300000-0x603fffff 64bit]\n[    0.827135] pci-msm-rc 0000:00:00.0: enabling device (0006 -> 0007)\n[    0.827146] cnss_pci 0000:01:00.0: enabling device (0000 -> 0002)\n[    0.827371] cnss: Config PCIe remap window register to 0x4000003f\n[    0.827383] cnss: Read register offset 0x1f8031c, val = 0x6\n[    0.827390] cnss: Write val 0x2 to register offset 0x1f8031c\n[    0.827667] cnss: MSI base data is 800\n[    0.827670] cnss: BAR starts at 0x0000000060300000\n[    0.827671] cnss: Assign MSI to user: MHI, num_vectors: 3, user_base_data: 800, base_vector: 0\n[    0.827672] cnss: Number of assigned MSI for MHI is 3, base vector is 0\n[    0.827673] cnss: Get IRQ number 409 for vector index 0\n[    0.827674] cnss: Get IRQ number 410 for vector index 1\n[    0.827675] cnss: Get IRQ number 411 for vector index 2\n[    0.827942] cnss: Get device version info, family number: 0x4, device number: 0xa, major version: 0x2, minor version: 0x0\n[    0.827944] cnss: Firmware name is amss20.bin\n[    0.827951] cnss: Get PCI link status register: 4114\n[    0.827952] cnss: Default PCI link speed is 0x2, link width is 0x1\n[    0.827956] cnss: Config PCIe remap window register to 0x4000003c\n[    0.827963] cnss: Config PCIe remap window register to 0x4000003f\n[    0.827975] cnss: Read register offset 0x1f8031c, val = 0x2\n[    0.827981] cnss: Write val 0x3 to register offset 0x1f8031c\n[    0.834244] aw8697_vibrator_init enter\n[    0.834248] aw8697_haptic_init enter\n[    0.839495] aw8697_haptic_set_bst_peak_cur  744 enter\n[    0.839852] ufshcd-qcom 1d84000.ufshc: ufshcd_needs_reinit: Re-init UFS host to use proper PHY settings for the UFS device. This can be avoided by setting the force-g4 in DT\n[    0.839904] aw8697_haptic_swicth_motorprotect_config enter\n[    0.841651] aw8697_haptic_offset_calibration enter\n[    0.843584] aw8697_haptic_f0_calibration enter\n[    0.843765] aw8697_haptic_get_f0 enter\n[    0.844651] qcom_ice 1d90000.ufsice: QC ICE 3.1.81 device found @0x00000000bbc70251\n[    0.849113] aw8697_haptic_set_f0_preset enter\n[    0.860029] cnss: Suspending PCI link\n[    0.873605] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    0.880311] nq-nci 0-0028: NQ NFCC chip_type = a4\n[    0.880314] nq-nci 0-0028: NQ fw version = 1.10.36\n[    0.880318] nq-nci 0-0028: nfcc_hw_check: ## NFCC == SN100x ##\n[    0.880320] nq-nci 0-0028: nfcc_hw_check : hw check scuessfully\n[    0.880378] nq-nci 0-0028: nqx_probe: probing NFCC NQxxx exited successfully\n[    0.923538] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[4, 4], lane[2, 2], pwr[FAST MODE, FAST MODE], rate = 1\n[    0.923960] scsi 0:0:0:49488: Well-known LUN    SAMSUNG  KLUDG4UHDB-B2D1  1302 PQ: 0 ANSI: 6\n[    0.924784] scsi 0:0:0:49476: Well-known LUN    SAMSUNG  KLUDG4UHDB-B2D1  1302 PQ: 0 ANSI: 6\n[    0.925433] scsi 0:0:0:49456: Well-known LUN    SAMSUNG  KLUDG4UHDB-B2D1  1302 PQ: 0 ANSI: 6\n[    0.929091] scsi 0:0:0:0: Direct-Access     SAMSUNG  KLUDG4UHDB-B2D1  1302 PQ: 0 ANSI: 6\n[    0.929571] scsi 0:0:0:1: Direct-Access     SAMSUNG  KLUDG4UHDB-B2D1  1302 PQ: 0 ANSI: 6\n[    0.929986] scsi 0:0:0:2: Direct-Access     SAMSUNG  KLUDG4UHDB-B2D1  1302 PQ: 0 ANSI: 6\n[    0.930446] scsi 0:0:0:3: Direct-Access     SAMSUNG  KLUDG4UHDB-B2D1  1302 PQ: 0 ANSI: 6\n[    0.930855] scsi 0:0:0:4: Direct-Access     SAMSUNG  KLUDG4UHDB-B2D1  1302 PQ: 0 ANSI: 6\n[    0.931277] scsi 0:0:0:5: Direct-Access     SAMSUNG  KLUDG4UHDB-B2D1  1302 PQ: 0 ANSI: 6\n[    0.931692] sd 0:0:0:0: Power-on or device reset occurred\n[    0.932231] sd 0:0:0:0: [sda] Write Protect is off\n[    0.932236] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    0.932416] sd 0:0:0:0: [sda] Optimal transfer size 524288 bytes\n[    0.934657] sd 0:0:0:1: Power-on or device reset occurred\n[    0.935732] sd 0:0:0:2: Power-on or device reset occurred\n[    0.936800] sd 0:0:0:1: [sdb] Write Protect is off\n[    0.936803] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    0.936893] sd 0:0:0:3: Power-on or device reset occurred\n[    0.937124]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21 sda22 sda23 sda24 sda25 sda26 sda27 sda28 sda29 sda30 sda31 sda32 sda33 sda34\n[    0.937210] sd 0:0:0:1: [sdb] Optimal transfer size 524288 bytes\n[    0.937300] sd 0:0:0:2: [sdc] Write Protect is off\n[    0.937300] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    0.937485] sd 0:0:0:2: [sdc] Optimal transfer size 524288 bytes\n[    0.937749] sd 0:0:0:3: [sdd] Write Protect is off\n[    0.937750] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    0.937919] sd 0:0:0:3: [sdd] Optimal transfer size 524288 bytes\n[    0.938436] sd 0:0:0:4: Power-on or device reset occurred\n[    0.939159]  sdb: sdb1 sdb2 sdb3 sdb4\n[    0.939745]  sdc: sdc1 sdc2 sdc3 sdc4\n[    0.939759] sd 0:0:0:5: Power-on or device reset occurred\n[    0.940495] sd 0:0:0:4: [sde] Write Protect is off\n[    0.940496] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    0.940848] sd 0:0:0:4: [sde] Optimal transfer size 524288 bytes\n[    0.940943]  sdd: sdd1 sdd2 sdd3 sdd4 sdd5 sdd6\n[    0.941135] sd 0:0:0:5: [sdf] Write Protect is off\n[    0.941136] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    0.941327] sd 0:0:0:5: [sdf] Optimal transfer size 524288 bytes\n[    0.942926]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51 sde52 sde53 sde54 sde55 sde56 sde57 sde58\n[    0.943439]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6 sdf7 sdf8 sdf9 sdf10\n[    0.970082] msm_pcie_disable: PCIe: Assert the reset of endpoint of RC0.\n[    0.970251] aw8697_haptic_read_f0 enter\n[    0.970418] cnss: Regulator vdd-wlan-rfa2 is being disabled\n[    0.970462] cnss: Regulator vdd-wlan-rfa1 is being disabled\n[    0.970496] cnss: Regulator vdd-wlan-dig is being disabled\n[    0.970504] cnss: Regulator vdd-wlan-aon is being disabled\n[    0.970535] cnss: Regulator wlan-ant-switch is being disabled\n[    0.970556] cnss: Regulator vdd-wlan-io is being disabled\n[    0.970710] register_client_adhoc:find path.src 45 dest 512\n[    0.970994] register_client_adhoc:Client handle 38 msm-cnss\n[    0.971176] cnss: Platform driver probed successfully.\n[    0.971993] aw8697_haptic_read_f0 f0=1703\n[    0.971996] aw8697_haptic_read_beme  1209 enter\n[    0.972369] aw8697_haptic_read_beme max_pos_beme=127\n[    0.972370] aw8697_haptic_read_beme max_neg_beme=128\n[    0.972991] aw8697_haptic_f0_calibration  line=2071 f0_cali_step=7\n[    0.972994] aw8697_haptic_f0_calibration line=2073  f0_limit=1703\n[    0.972995] aw8697_haptic_f0_calibration line=2075  aw8697->info.f0_pre=1700\n[    0.972997] aw8697_haptic_f0_calibration f0_cali_lra=1\n[    0.973308] aw8697_haptic_f0_calibration final trim_lra=0x01\n[    0.975926] input: aw8697_haptic as /devices/platform/soc/a8c000.i2c/i2c-2/2-005a/input/input2\n[    0.976042] aw8697_i2c_probe probe completed successfully!\n[    0.976696] i2c_geni 884000.i2c: Bus frequency not specified, default to 400KHz.\n[    0.977526] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    0.977753] i2c_geni 888000.i2c: Bus frequency not specified, default to 400KHz.\n[    0.983717] PMIC@SID0: PM8008 v1.0 options: 0, 0, 0, 0\n[    0.989061] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    0.992429] qcom,pm8008-regulator 888000.i2c:qcom,pm8008@9:qcom,pm8008-regulator: Linked as a consumer to regulator.36\n[    0.992491] qcom,pm8008-regulator 888000.i2c:qcom,pm8008@9:qcom,pm8008-regulator: Linked as a consumer to regulator.80\n[    0.993041] pm8008_l1: Bringing 0uV into 1000000-1000000uV\n[    0.996557] pm8008_l2: Bringing 0uV into 1200000-1200000uV\n[    0.999745] pm8008_l3: Bringing 0uV into 2800000-2800000uV\n[    1.002667] pm8008_l4: Bringing 0uV into 2800000-2800000uV\n[    1.005575] pm8008_l5: Bringing 0uV into 2800000-2800000uV\n[    1.008476] pm8008_l6: Bringing 0uV into 2800000-2800000uV\n[    1.011422] pm8008_l7: Bringing 0uV into 2800000-2800000uV\n[    1.013265] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    1.018000] msm_cvp_v4l2 ab00000.qcom,cvp:cvp_non_secure_cb: Linked as a consumer to 15000000.apps-smmu\n[    1.018355] iommu: Adding device ab00000.qcom,cvp:cvp_non_secure_cb to group 20\n[    1.018711] msm_cvp_v4l2 ab00000.qcom,cvp:cvp_secure_nonpixel_cb: Linked as a consumer to 15000000.apps-smmu\n[    1.019892] iommu: Adding device ab00000.qcom,cvp:cvp_secure_nonpixel_cb to group 21\n[    1.020277] msm_cvp_v4l2 ab00000.qcom,cvp:cvp_secure_pixel_cb: Linked as a consumer to 15000000.apps-smmu\n[    1.021035] iommu: Adding device ab00000.qcom,cvp:cvp_secure_pixel_cb to group 22\n[    1.021218] platform ab00000.qcom,cvp:qcom,msm-cvp,mem_cdsp: assigned reserved memory node cdsp_region\n[    1.022004] msm_npu 9900000.qcom,msm_npu: Linked as a consumer to 15000000.apps-smmu\n[    1.022420] iommu: Adding device 9900000.qcom,msm_npu to group 23\n[    1.022604] NPU_INFO: npu_probe: 2353 unable to get qfprom_physical resource\n[    1.022664] msm_npu 9900000.qcom,msm_npu: Linked as a consumer to regulator.74\n[    1.022710] msm_npu 9900000.qcom,msm_npu: Linked as a consumer to regulator.4\n[    1.022995] register_client_adhoc:find path.src 154 dest 512\n[    1.023231] register_client_adhoc:find path.src 154 dest 620\n[    1.023518] register_client_adhoc:Client handle 39 9900000.qcom,msm_npu\n[    1.023522] NPU_INFO: npu_parse_dt_bw: 1688 NPU BW client sets up successfully\n[    1.029271] synx: synx device init start\n[    1.029433] synx: synx device init success\n[    1.030413] msm_tspp 88a7000.msm_tspp: Linked as a consumer to 15000000.apps-smmu\n[    1.030701] iommu: Adding device 88a7000.msm_tspp to group 24\n[    1.031335] register_client_adhoc:find path.src 82 dest 512\n[    1.031681] register_client_adhoc:Client handle 40 tsif\n[    1.031721] msm_tspp_probe: vdd_cx regulator will not be used\n[    1.032743] dvbdev: DVB: registering new adapter (Qualcomm Technologies, Inc. DVB adapter)\n[    1.040780] usbcore: registered new interface driver uvcvideo\n[    1.040782] USB Video Class driver (1.1.1)\n[    1.040782] gspca_main: v2.14.0 registered\n[    1.041383] Couldn't parse device tree rc=-517\n[    1.042056] qcom,fg-gen4 c440000.qcom,spmi:qcom,pm8150b@2:qpnp,fg: hw_country: 2\n[    1.042193] FG: fg_clear_dma_errors_if_any: dma_sts: 0\n[    1.045670] FG: fg_gen4_set_ki_coeff_dischg: Wrote ki_coeff_low 367\n[    1.045845] FG: fg_gen4_set_ki_coeff_dischg: Wrote ki_coeff_med 62\n[    1.046018] FG: fg_gen4_set_ki_coeff_dischg: Wrote ki_coeff_hi 0\n[    1.046366] esr_charging_timer set to 0/7\n[    1.046713] esr_discharging_timer set to 0/7\n[    1.047765] FG: fg_gen4_esr_fast_calib_config: Enabling ESR fast calibration\n[    1.048398] FG: battery_authentic_work: battery authentic work begin to restart.\n[    1.051548] FG: fg_gen4_mem_attn_irq_en_cb: disabled mem_attn irq\n[    1.051612] raw: 0xc1\n[    1.051628] raw: 0xc1\n[    1.051628] ===raw_msoc:193\n[    1.051901] FG: fg_gen4_probe: battery SOC:79 voltage: 4105946uV temp: 327 id: 100100 ohms\n[    1.052772] FG: fg_gen4_get_batt_profile: cmdline of batt profile is not defined, read page0 to reload file\n[    1.052774] FG: fg_gen4_get_batt_profile: verifty battery fail. recheck after, retry:1\n[    1.052775] FG: profile_load_work: profile for batt_id=100KOhms not found..using OTP, rc:-6\n[    1.053053] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4106 Vbatt avg=4112 Vbatt res=712\n[    1.053069] raw: 0xc1\n[    1.053085] raw: 0xc1\n[    1.053085] ===raw_msoc:193\n[    1.053086] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 553222\n[    1.053092] FG: status_change_work: Charger not available?!\n[    1.053093] FG: status_change_work: charge_status:-22 charge_type:0 charge_done:0\n[    1.053764] [bq2597x-STANDALONE]:bq2597x_get_work_mode:work mode:Standalone\n[    1.055654] [bq2597x-STANDALONE]:bq2597x_init_protection:enable bat ovp successfullly\n[    1.056030] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bat ocp successfullly\n[    1.056406] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bat ovp alarm successfullly\n[    1.056782] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bat ocp alarm successfullly\n[    1.057157] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bat ocp alarm successfullly\n[    1.057532] [bq2597x-STANDALONE]:bq2597x_init_protection:enable bus ovp alarm successfullly\n[    1.057908] [bq2597x-STANDALONE]:bq2597x_init_protection:enable bus ocp successfullly\n[    1.058283] [bq2597x-STANDALONE]:bq2597x_init_protection:enable bus ocp alarm successfullly\n[    1.058659] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bat therm successfullly\n[    1.059035] [bq2597x-STANDALONE]:bq2597x_init_protection:disable bus therm successfullly\n[    1.059410] [bq2597x-STANDALONE]:bq2597x_init_protection:disable die therm successfullly\n[    1.059787] [bq2597x-STANDALONE]:bq2597x_init_protection:set bat ovp th 4525 successfully\n[    1.060170] [bq2597x-STANDALONE]:bq2597x_init_protection:set bat ovp alarm threshold 4525 successfully\n[    1.060544] [bq2597x-STANDALONE]:bq2597x_init_protection:set bat ocp threshold 0 successfully\n[    1.060919] [bq2597x-STANDALONE]:bq2597x_init_protection:set bat ocp alarm threshold 0 successfully\n[    1.061294] [bq2597x-STANDALONE]:bq2597x_init_protection:set bus ovp threshold 12000 successfully\n[    1.061669] [bq2597x-STANDALONE]:bq2597x_init_protection:set bus ovp alarm threshold 11000 successfully\n[    1.062044] [bq2597x-STANDALONE]:bq2597x_init_protection:set bus ocp threshold 3750 successfully\n[    1.062419] [bq2597x-STANDALONE]:bq2597x_init_protection:set bus ocp alarm th 3500 successfully\n[    1.062793] [bq2597x-STANDALONE]:bq2597x_init_protection:set bat ucp threshold 0 successfully\n[    1.062942] [bq2597x-STANDALONE]:bq2597x_init_protection:set die therm threshold 21 successfully\n[    1.063091] [bq2597x-STANDALONE]:bq2597x_init_protection:set bus therm threshold 21 successfully\n[    1.063467] [bq2597x-STANDALONE]:bq2597x_init_protection:set die therm threshold 145 successfully\n[    1.063841] [bq2597x-STANDALONE]:bq2597x_init_protection:set ac ovp threshold 14 successfully\n[    1.069679] [bq2597x-STANDALONE]:bq2597x_init_device:Bq device ID = 0x16\n[    1.069680] [bq2597x-STANDALONE]:bq2597x_init_device:Bq device ID = 0x16\n[    1.069681] [bq2597x-STANDALONE]:bq2597x_charger_interrupt:INT OCCURED\n[    1.069908] [bq2597x-STANDALONE]:bq2597x_dump_important_regs:dump converter state Reg [0A] = 0x00\n[    1.070136] [bq2597x-STANDALONE]:bq2597x_dump_important_regs:dump int stat Reg[0D] = 0x00\n[    1.070365] [bq2597x-STANDALONE]:bq2597x_dump_important_regs:dump int flag Reg[0E] = 0x00\n[    1.070592] [bq2597x-STANDALONE]:bq2597x_dump_important_regs:dump fault stat Reg[10] = 0x00\n[    1.070820] [bq2597x-STANDALONE]:bq2597x_dump_important_regs:dump fault flag Reg[11] = 0x00\n[    1.071047] [bq2597x-STANDALONE]:bq2597x_dump_important_regs:dump regulation flag Reg[2D] = 0x00\n[    1.072890] [bq2597x-STANDALONE]:bq2597x_psy_register:bq2597x-standalone power supply register successfully\n[    1.072981] [bq2597x-STANDALONE]:bq2597x_charger_probe:bq2597x probe successfully, Part Num:6\n               !\n[    1.072999] [Onewire] onewire_gpio_init: onewire gpio init entry.\n[    1.073129] [Onewire] onewire_gpio_probe: onewire probe entry\n[    1.074204] [ds28e16] set_sched_affinity_to_current: Setting cpu affinity to current cpu failed(-22) in set_sched_affinity_to_current.\n[    1.074205] [ds28e16] ds28el16_get_page_status_retry: read page status communication start... 0\n[    1.103073] msm_lmh_dcvs 18591000.qcom,cpufreq-hw:qcom,limits-dcvs: Linked as a consumer to regulator.22\n[    1.103303] msm_lmh_dcvs 18591000.qcom,cpufreq-hw:qcom,limits-dcvs: Linked as a consumer to regulator.14\n[    1.104477] device-mapper: uevent: version 1.0.3\n[    1.104649] device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel@redhat.com\n[    1.106387] bt_dt_parse_vreg_info: qca,bt-vdd-core: is not provided in device tree\n[    1.106390] bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    1.106393] bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    1.106396] bt_dt_parse_vreg_info: qca,bt-vdd-pa: is not provided in device tree\n[    1.106398] bt_dt_parse_vreg_info: qca,bt-vdd-ldo: is not provided in device tree\n[    1.106401] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    1.106423] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.106938] EDAC DEVICE0: Giving out device to module soc:kryo-erp controller cache: DEV soc:kryo-erp (INTERRUPT)\n[    1.107773] sdhci: Secure Digital Host Controller Interface driver\n[    1.107774] sdhci: Copyright(c) Pierre Ossman\n[    1.107777] sdhci-pltfm: SDHCI platform and OF driver helper\n[    1.109347] usbcore: registered new interface driver usbhid\n[    1.109349] usbhid: USB HID core driver\n[    1.109510] ashmem: initialized\n[    1.109513] ipa_ut ipa_ut_module_init:1034 Loading IPA test module...\n[    1.109875] bimc-bwmon 90b6400.qcom,cpu-cpu-llcc-bwmon: BW HWmon governor registered.\n[    1.109921] bimc-bwmon 9091000.qcom,cpu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    1.110170] bimc-bwmon 60400.qcom,npu-npu-llcc-bwmon: BW HWmon governor registered.\n[    1.110219] bimc-bwmon 9093000.qcom,npu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    1.110339] bimc-bwmon 70300.qcom,npudsp-npu-ddr-bwmon: BW HWmon governor registered.\n[    1.112329] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-cpu-l3-latmon: Memory Latency governor registered.\n[    1.112512] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.112698] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.112904] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-cpu-l3-latmon: Memory Latency governor registered.\n[    1.113074] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu7-cpu-l3-latmon: Memory Latency governor registered.\n[    1.113236] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-cpu-llcc-latmon: Memory Latency governor registered.\n[    1.113410] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-llcc-ddr-latmon: Memory Latency governor registered.\n[    1.113577] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-computemon: Compute governor registered.\n[    1.113739] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-qoslatmon: Memory Latency governor registered.\n[    1.114498] register_client_adhoc:find path.src 1 dest 627\n[    1.114825] register_client_adhoc:Client handle 41 soc:qcom,snoc_cnoc_keepalive\n[    1.115314] register_client_adhoc:find path.src 1 dest 770\n[    1.115385] register_client_adhoc:Client handle 42 soc:qcom,cpu-cpu-llcc-bw\n[    1.116112] register_client_adhoc:find path.src 129 dest 512\n[    1.116180] register_client_adhoc:Client handle 43 soc:qcom,cpu-llcc-ddr-bw\n[    1.116823] register_client_adhoc:find path.src 154 dest 770\n[    1.116936] register_client_adhoc:Client handle 44 soc:qcom,npu-npu-llcc-bw\n[    1.117436] register_client_adhoc:find path.src 770 dest 512\n[    1.117536] register_client_adhoc:Client handle 45 soc:qcom,npu-llcc-ddr-bw\n[    1.118003] register_client_adhoc:find path.src 154 dest 512\n[    1.118193] register_client_adhoc:Client handle 46 soc:qcom,npudsp-npu-ddr-bw\n[    1.118675] register_client_adhoc:find path.src 154 dest 512\n[    1.118861] register_client_adhoc:Client handle 47 soc:qcom,npu-npu-ddr-latfloor\n[    1.119134] register_client_adhoc:find path.src 1 dest 770\n[    1.119198] register_client_adhoc:Client handle 48 soc:qcom,cpu0-cpu-llcc-lat\n[    1.119519] register_client_adhoc:find path.src 1 dest 770\n[    1.119582] register_client_adhoc:Client handle 49 soc:qcom,cpu4-cpu-llcc-lat\n[    1.120097] register_client_adhoc:find path.src 129 dest 512\n[    1.120166] register_client_adhoc:Client handle 51 soc:qcom,cpu0-llcc-ddr-lat\n[    1.120607] register_client_adhoc:find path.src 129 dest 512\n[    1.120677] register_client_adhoc:Client handle 50 soc:qcom,cpu4-llcc-ddr-lat\n[    1.121107] register_client_adhoc:find path.src 129 dest 512\n[    1.121171] register_client_adhoc:Client handle 52 soc:qcom,cpu4-cpu-ddr-latfloor\n[    1.121895] register_client_adhoc:find path.src 26 dest 512\n[    1.122028] register_client_adhoc:Client handle 53 soc:qcom,gpubw\n[    1.124634] us_prox_probe: start\n[    1.124789] us_prox_probe: end\n[    1.124914] qcom-llcc-pmu 9095000.llcc-pmu: Registered llcc_pmu, type: 8\n[    1.125461] coresight-tmc 6048000.tmc: Linked as a consumer to 15000000.apps-smmu\n[    1.125656] iommu: Adding device 6048000.tmc to group 25\n[    1.126358] [ds28e16] set_sched_affinity_to_all: Setting cpu affinity to all valid cpus failed(-22) in set_sched_affinity_to_all.\n[    1.126359] [ds28e16] set_sched_affinity_to_current: Setting cpu affinity to current cpu failed(-22) in set_sched_affinity_to_current.\n[    1.126360] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start 0...\n[    1.126719] coresight-funnel 6902000.funnel: Linked as a consumer to regulator.61\n[    1.126753] coresight-funnel 6902000.funnel: Linked as a consumer to regulator.62\n[    1.127425] [ds28e16] Read_RomID: RomID = 9f,fc,23,a1,11,f0,04,a8\n[    1.127426] [ds28e16] set_sched_affinity_to_all: Setting cpu affinity to all valid cpus failed(-22) in set_sched_affinity_to_all.\n[    1.129236] coresight-funnel 6c44000.funnel: Linked as a consumer to regulator.74\n[    1.129265] coresight-funnel 6c44000.funnel: Linked as a consumer to regulator.4\n[    1.131478] coresight-stm 6002000.stm: stm_register_device failed, probing deffered\n[    1.131549] OF: graph: no port node found in /soc/cti@78e0000\n[    1.131654] OF: graph: no port node found in /soc/cti@78f0000\n[    1.131757] OF: graph: no port node found in /soc/cti@7900000\n[    1.131857] OF: graph: no port node found in /soc/cti@6e01000\n[    1.131960] OF: graph: no port node found in /soc/cti@6e02000\n[    1.132064] OF: graph: no port node found in /soc/cti@6e03000\n[    1.132165] OF: graph: no port node found in /soc/cti@6e0c000\n[    1.132268] OF: graph: no port node found in /soc/cti@6e0d000\n[    1.132373] OF: graph: no port node found in /soc/cti@6e0e000\n[    1.132479] OF: graph: no port node found in /soc/cti@6e11000\n[    1.132581] OF: graph: no port node found in /soc/cti@6e21000\n[    1.132685] OF: graph: no port node found in /soc/cti@6c09000\n[    1.132794] OF: graph: no port node found in /soc/cti@6c0a000\n[    1.132901] OF: graph: no port node found in /soc/cti@6c2a000\n[    1.133003] OF: graph: no port node found in /soc/cti@6c2b000\n[    1.133108] OF: graph: no port node found in /soc/cti@6c2c000\n[    1.133218] OF: graph: no port node found in /soc/cti@6010000\n[    1.133316] OF: graph: no port node found in /soc/cti@6011000\n[    1.133445] OF: graph: no port node found in /soc/cti@6012000\n[    1.133549] OF: graph: no port node found in /soc/cti@6013000\n[    1.133653] OF: graph: no port node found in /soc/cti@6014000\n[    1.133754] OF: graph: no port node found in /soc/cti@6015000\n[    1.133855] OF: graph: no port node found in /soc/cti@6016000\n[    1.133958] OF: graph: no port node found in /soc/cti@6017000\n[    1.134062] OF: graph: no port node found in /soc/cti@6018000\n[    1.134162] OF: graph: no port node found in /soc/cti@6019000\n[    1.134276] OF: graph: no port node found in /soc/cti@601a000\n[    1.134380] OF: graph: no port node found in /soc/cti@601b000\n[    1.134484] OF: graph: no port node found in /soc/cti@601c000\n[    1.134590] OF: graph: no port node found in /soc/cti@601d000\n[    1.134695] OF: graph: no port node found in /soc/cti@601e000\n[    1.134798] OF: graph: no port node found in /soc/cti@601f000\n[    1.134902] OF: graph: no port node found in /soc/cti@7020000\n[    1.135013] OF: graph: no port node found in /soc/cti@7120000\n[    1.135124] OF: graph: no port node found in /soc/cti@7220000\n[    1.135234] OF: graph: no port node found in /soc/cti@7320000\n[    1.135347] OF: graph: no port node found in /soc/cti@7420000\n[    1.135461] OF: graph: no port node found in /soc/cti@7520000\n[    1.135576] OF: graph: no port node found in /soc/cti@7620000\n[    1.135693] OF: graph: no port node found in /soc/cti@7720000\n[    1.135807] OF: graph: no port node found in /soc/cti@6831000\n[    1.135919] OF: graph: no port node found in /soc/cti@6845000\n[    1.136030] OF: graph: no port node found in /soc/cti@6c61000\n[    1.136142] OF: graph: no port node found in /soc/cti@6c42000\n[    1.136258] OF: graph: no port node found in /soc/cti@6c43000\n[    1.136373] OF: graph: no port node found in /soc/cti@6c4b000\n[    1.136485] OF: graph: no port node found in /soc/cti@6b00000\n[    1.136593] OF: graph: no port node found in /soc/cti@6b01000\n[    1.136707] OF: graph: no port node found in /soc/cti@6b02000\n[    1.136818] OF: graph: no port node found in /soc/cti@6b03000\n[    1.136929] OF: graph: no port node found in /soc/cti@6982000\n[    1.137043] OF: graph: no port node found in /soc/cti@698b000\n[    1.137159] OF: graph: no port node found in /soc/cti@6c38000\n[    1.138930] coresight-tpdm 6900000.tpdm: Linked as a consumer to regulator.61\n[    1.138961] coresight-tpdm 6900000.tpdm: Linked as a consumer to regulator.62\n[    1.141450] coresight-tpdm 6c47000.tpdm: Linked as a consumer to regulator.74\n[    1.141475] coresight-tpdm 6c47000.tpdm: Linked as a consumer to regulator.4\n[    1.141919] coresight-tpdm 6c40000.tpdm: Linked as a consumer to regulator.74\n[    1.141941] coresight-tpdm 6c40000.tpdm: Linked as a consumer to regulator.4\n[    1.142498] coresight-tpdm 6c41000.tpdm: Linked as a consumer to regulator.74\n[    1.142535] coresight-tpdm 6c41000.tpdm: Linked as a consumer to regulator.4\n[    1.146831] OF: graph: no port node found in /soc/csr@6001000\n[    1.146884] coresight-csr 6001000.csr: CSR initialized: coresight-csr\n[    1.146908] OF: graph: no port node found in /soc/csr@6b0c000\n[    1.146969] coresight-csr 6b0c000.csr: CSR initialized: coresight-swao-csr\n[    1.147241] OF: graph: no port node found in /soc/hwevent\n[    1.147295] coresight-hwevent soc:hwevent: Hardware Event driver initialized\n[    1.147609] coresight-dummy soc:dummy_sink: Dummy device initialized\n[    1.147748] coresight-dummy soc:tpdm@6b26000: Dummy device initialized\n[    1.148193] coresight-remote-etm soc:turing_etm0: Remote ETM initialized\n[    1.148362] coresight-remote-etm soc:audio_etm0: Remote ETM initialized\n[    1.148530] coresight-remote-etm soc:ssc_etm0: Remote ETM initialized\n[    1.148707] coresight-remote-etm soc:npu_etm0: Remote ETM initialized\n[    1.148865] OF: graph: no port node found in /soc/tgu@6b0b000\n[    1.151293] usbcore: registered new interface driver snd-usb-audio\n[    1.151493] uaudio-qmi soc:usb_audio_qmi_dev: Linked as a consumer to 15000000.apps-smmu\n[    1.151533] iommu: Adding device soc:usb_audio_qmi_dev to group 26\n[    1.156393] [CSPL] Initializing misc device\n[    1.160799] cs35l41 1-0040: cs35l41 i2c probe start\n[    1.160930] cs35l41 1-0040: 1-0040 supply VA not found, using dummy regulator\n[    1.160958] cs35l41 1-0040: Linked as a consumer to regulator.0\n[    1.160975] cs35l41 1-0040: 1-0040 supply VP not found, using dummy regulator\n[    1.230389] cs35l41 1-0040: Cirrus Logic CS35L41 (35a40), Revision: B2\n[    1.230517] cs35l41 1-0042: cs35l41 i2c probe start\n[    1.230618] cs35l41 1-0042: 1-0042 supply VA not found, using dummy regulator\n[    1.230639] cs35l41 1-0042: Linked as a consumer to regulator.0\n[    1.230656] cs35l41 1-0042: 1-0042 supply VP not found, using dummy regulator\n[    1.230690] cs35l41 1-0042: Reset line busy, assuming shared reset\n[    1.296967] cs35l41 1-0042: Cirrus Logic CS35L41 (35a40), Revision: B2\n[    1.297018] [TFA9874] tfa98xx_i2c_init(): TFA98XX driver version v6.5.2_xxxxxxxxxx\n[    1.297372] kona-pinctrl f000000.pinctrl: invalid function func2 in map table\n[    1.297381] kona-pinctrl f000000.pinctrl: invalid function func2 in map table\n[    1.297430] kona-pinctrl f000000.pinctrl: invalid function func2 in map table\n[    1.297439] kona-pinctrl f000000.pinctrl: invalid function func2 in map table\n[    1.321735] synx: registered bind ops for cam_sync\n[    1.322249] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_ife: Linked as a consumer to 15000000.apps-smmu\n[    1.322531] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 27\n[    1.322893] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_jpeg: Linked as a consumer to 15000000.apps-smmu\n[    1.323052] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 28\n[    1.323208] platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node pil_camera_region@86200000\n[    1.323640] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_icp: Linked as a consumer to 15000000.apps-smmu\n[    1.323954] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 29\n[    1.324086] CAM_INFO: CAM-SMMU: cam_smmu_get_memory_regions_info: 3730 [icp] : Discard region specified [0xdff00000 0xe0200000] in [0x17600000 0xfef00000]\n[    1.324329] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm: Linked as a consumer to 15000000.apps-smmu\n[    1.324485] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 30\n[    1.325040] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_fd: Linked as a consumer to 15000000.apps-smmu\n[    1.325192] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_fd to group 31\n[    1.326934] cam-cpas ac40000.qcom,cam-cpas: Linked as a consumer to regulator.72\n[    1.328829] register_client_adhoc:find path.src 1 dest 589\n[    1.329095] register_client_adhoc:Client handle 54 cam_ahb\n[    1.329183] register_client_adhoc:find path.src 170 dest 512\n[    1.329398] register_client_adhoc:Client handle 55 cam_hf_0_mnoc\n[    1.329489] register_client_adhoc:find path.src 137 dest 512\n[    1.329696] register_client_adhoc:Client handle 56 cam_sf_0_mnoc\n[    1.329776] register_client_adhoc:find path.src 171 dest 512\n[    1.329977] register_client_adhoc:Client handle 57 cam_sf_icp_mnoc\n[    1.333983] msm_cam_cdm ac4d000.qcom,cpas-cdm0: Linked as a consumer to regulator.72\n[    1.335545] csid_17x acb5200.qcom,csid0: Linked as a consumer to regulator.72\n[    1.335579] csid_17x acb5200.qcom,csid0: Linked as a consumer to regulator.68\n[    1.335752] csid_17x acc4200.qcom,csid1: Linked as a consumer to regulator.72\n[    1.335787] csid_17x acc4200.qcom,csid1: Linked as a consumer to regulator.69\n[    1.336422] csid_lite acd9200.qcom,csid-lite0: Linked as a consumer to regulator.72\n[    1.336583] csid_lite acdb400.qcom,csid-lite1: Linked as a consumer to regulator.72\n[    1.337337] cam_vfe acb4000.qcom,ife0: Linked as a consumer to regulator.72\n[    1.337366] cam_vfe acb4000.qcom,ife0: Linked as a consumer to regulator.68\n[    1.338501] CAM_INFO: CAM-ISP: cam_vfe_bus_ver3_init_hw: 3639 Overriding clock gating at bus input\n[    1.338505] CAM_INFO: CAM-ISP: cam_vfe_top_ver3_init_hw: 230 Disable clock gating at IFE top\n[    1.339196] cam_vfe acc3000.qcom,ife1: Linked as a consumer to regulator.72\n[    1.339238] cam_vfe acc3000.qcom,ife1: Linked as a consumer to regulator.69\n[    1.340358] CAM_INFO: CAM-ISP: cam_vfe_bus_ver3_init_hw: 3639 Overriding clock gating at bus input\n[    1.340362] CAM_INFO: CAM-ISP: cam_vfe_top_ver3_init_hw: 230 Disable clock gating at IFE top\n[    1.340999] CAM_INFO: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 571 No clk data for ife_dsp_clk\n[    1.341001] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 151 Option clk get failed with rc -22\n[    1.341038] cam_vfe acd9000.qcom,ife-lite0: Linked as a consumer to regulator.72\n[    1.341824] CAM_INFO: CAM-ISP: cam_vfe_bus_ver3_init_hw: 3639 Overriding clock gating at bus input\n[    1.341828] CAM_INFO: CAM-ISP: cam_vfe_top_ver3_init_hw: 230 Disable clock gating at IFE top\n[    1.342371] CAM_INFO: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 571 No clk data for ife_dsp_clk\n[    1.342374] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 151 Option clk get failed with rc -22\n[    1.342411] cam_vfe acdb200.qcom,ife-lite1: Linked as a consumer to regulator.72\n[    1.342966] [ds28e16] set_sched_affinity_to_current: Setting cpu affinity to current cpu failed(-22) in set_sched_affinity_to_current.\n[    1.343113] CAM_INFO: CAM-ISP: cam_vfe_bus_ver3_init_hw: 3639 Overriding clock gating at bus input\n[    1.343116] CAM_INFO: CAM-ISP: cam_vfe_top_ver3_init_hw: 230 Disable clock gating at IFE top\n[    1.344283] CAM_ERR: CAM-ISP: cam_isp_context_debug_register: 5188 failed to create dentry\n[    1.344304] CAM_ERR: CAM-ISP: cam_isp_context_debug_register: 5188 failed to create dentry\n[    1.344324] CAM_ERR: CAM-ISP: cam_isp_context_debug_register: 5188 failed to create dentry\n[    1.344344] CAM_ERR: CAM-ISP: cam_isp_context_debug_register: 5188 failed to create dentry\n[    1.344364] CAM_ERR: CAM-ISP: cam_isp_context_debug_register: 5188 failed to create dentry\n[    1.344385] CAM_ERR: CAM-ISP: cam_isp_context_debug_register: 5188 failed to create dentry\n[    1.344405] CAM_ERR: CAM-ISP: cam_isp_context_debug_register: 5188 failed to create dentry\n[    1.344409] CAM_INFO: CAM-ISP: cam_isp_dev_probe: 163 Camera ISP probe complete\n[    1.345221] cam-cci-driver ac4f000.qcom,cci: Linked as a consumer to regulator.72\n[    1.345830] CAM_INFO: CAM: cam_res_mgr_probe: 685 Enable shared gpio support.\n[    1.349236] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 455 Device Type :0\n[    1.349482] cam-cci-driver ac50000.qcom,cci: Linked as a consumer to regulator.72\n[    1.352559] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 455 Device Type :1\n[    1.352928] cam-csiphy-driver ac6a000.qcom,csiphy: Linked as a consumer to regulator.72\n[    1.352960] cam-csiphy-driver ac6a000.qcom,csiphy: Linked as a consumer to regulator.50\n[    1.353087] cam-csiphy-driver ac6c000.qcom,csiphy: Linked as a consumer to regulator.72\n[    1.353113] cam-csiphy-driver ac6c000.qcom,csiphy: Linked as a consumer to regulator.50\n[    1.353230] cam-csiphy-driver ac6e000.qcom,csiphy: Linked as a consumer to regulator.72\n[    1.353257] cam-csiphy-driver ac6e000.qcom,csiphy: Linked as a consumer to regulator.50\n[    1.353370] cam-csiphy-driver ac70000.qcom,csiphy: Linked as a consumer to regulator.72\n[    1.353412] cam-csiphy-driver ac70000.qcom,csiphy: Linked as a consumer to regulator.50\n[    1.353525] cam-csiphy-driver ac72000.qcom,csiphy: Linked as a consumer to regulator.72\n[    1.353553] cam-csiphy-driver ac72000.qcom,csiphy: Linked as a consumer to regulator.50\n[    1.353668] cam-csiphy-driver ac74000.qcom,csiphy: Linked as a consumer to regulator.72\n[    1.353709] cam-csiphy-driver ac74000.qcom,csiphy: Linked as a consumer to regulator.50\n[    1.354181] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 60 No GPIO found\n[    1.354212] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 60 No GPIO found\n[    1.355820] CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 219 No GPIO found\n[    1.356816] CAM_WARN: CAM-ICP: cam_a5_get_dt_properties: 46 QoS need not be set\n[    1.356871] cam-a5 ac00000.qcom,a5: Linked as a consumer to regulator.72\n[    1.357280] cam-ipe ac9a000.qcom,ipe0: Linked as a consumer to regulator.70\n[    1.357683] cam-bps ac7a000.qcom,bps: Linked as a consumer to regulator.67\n[    1.360305] cam-jpeg-enc ac53000.qcom,jpegenc: Linked as a consumer to regulator.72\n[    1.360697] cam-jpeg-dma ac57000.qcom,jpegdma: Linked as a consumer to regulator.72\n[    1.361618] CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 162 Camera JPEG probe complete\n[    1.362065] cam_fd_hw ac5f000.qcom,fd: Linked as a consumer to regulator.72\n[    1.365933] register_client_adhoc:find path.src 1 dest 590\n[    1.366175] register_client_adhoc:Client handle 58 disp_rsc_reg\n[    1.366201] register_client_adhoc:find path.src 20003 dest 20513\n[    1.366386] register_client_adhoc:find path.src 20004 dest 20513\n[    1.366541] register_client_adhoc:Client handle 59 disp_rsc_mnoc_llcc\n[    1.366564] register_client_adhoc:find path.src 20000 dest 20512\n[    1.366639] register_client_adhoc:Client handle 60 disp_rsc_ebi\n[    1.366688] sde_rsc af20000.qcom,sde_rscc: Linked as a consumer to regulator.73\n[    1.366802] [sde_rsc_hw:rsc_hw_init_v3:537]: sde rsc init successfully done\n[    1.366878] [sde_rsc:sde_rsc_probe:1590]: sde rsc index:0 probed successfully\n[    1.367471] dsi_phy ae94400.qcom,mdss_dsi_phy0: ae94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    1.367502] dsi_phy ae94400.qcom,mdss_dsi_phy0: Linked as a consumer to regulator.0\n[    1.367531] dsi_phy ae94400.qcom,mdss_dsi_phy0: Linked as a consumer to regulator.13\n[    1.367547] [drm:dsi_phy_driver_probe] [msm-dsi-info]: DSI_0: Probe successful\n[    1.367605] dsi_phy ae96400.qcom,mdss_dsi_phy1: ae96400.qcom,mdss_dsi_phy1 supply gdsc not found, using dummy regulator\n[    1.367627] dsi_phy ae96400.qcom,mdss_dsi_phy1: Linked as a consumer to regulator.0\n[    1.367651] dsi_phy ae96400.qcom,mdss_dsi_phy1: Linked as a consumer to regulator.13\n[    1.367657] [drm:dsi_phy_driver_probe] [msm-dsi-info]: DSI_1: Probe successful\n[    1.368400] drm_dsi_ctrl ae94000.qcom,mdss_dsi_ctrl0: Linked as a consumer to regulator.50\n[    1.368439] drm_dsi_ctrl ae94000.qcom,mdss_dsi_ctrl0: Linked as a consumer to regulator.18\n[    1.368444] AXI: get_pdata(): Error: Client name not found\n[    1.368446] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    1.368451] [drm:dsi_ctrl_dev_probe] [msm-dsi-info]: dsi-ctrl-0: Probe successful\n[    1.368551] drm_dsi_ctrl ae96000.qcom,mdss_dsi_ctrl1: Linked as a consumer to regulator.50\n[    1.368579] drm_dsi_ctrl ae96000.qcom,mdss_dsi_ctrl1: Linked as a consumer to regulator.18\n[    1.368582] AXI: get_pdata(): Error: Client name not found\n[    1.368583] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    1.368587] [drm:dsi_ctrl_dev_probe] [msm-dsi-info]: dsi-ctrl-1: Probe successful\n[    1.370356] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    1.370380] [drm] [msm-dsi-warn]: [xiaomi 37 02 0a video mode dsc dsi panel] fallback to default te-pin-select\n[    1.370399] [drm:dsi_panel_get] [msm-dsi-info]: [xiaomi 37 02 0a video mode dsc dsi panel] clk_strength default value = 0\n[    1.370523] mi-dsi-panel:[dsi_panel_parse_mi_config:304] mi,panel-id not specified\n[    1.370525] mi-dsi-panel:[dsi_panel_parse_mi_config:312] mi feature enabled\n[    1.370529] mi-dsi-panel:[dsi_panel_parse_mi_config:350] mi,mdss-dsi-panel-fod-off-b5-index not defined\n[    1.370532] mi-dsi-panel:[dsi_panel_parse_mi_config:358] fod dimlayer disabled.\n[    1.370537] mi-dsi-panel:[dsi_panel_parse_mi_config:445] panel disp_rate gpio not specified\n[    1.370540] mi-dsi-panel:[dsi_panel_parse_mi_config:454] panel on dimming delay 120 ms\n[    1.370542] mi-dsi-panel:[dsi_panel_parse_mi_config:464] default fod_off_dimming_delay 170\n[    1.370545] mi-dsi-panel:[dsi_panel_parse_mi_config:478] mi,mdss-dsi-panel-gamma-update-flag feature not defined\n[    1.370548] mi-dsi-panel:[dsi_panel_parse_mi_config:490] mi,mdss-dsi-greenish-update-gamma-flag feature not defined\n[    1.370551] mi-dsi-panel:[dsi_panel_parse_mi_config:504] mi,mdss-dsi-panel-dc-update-flag feature not defined\n[    1.370553] mi-dsi-panel:[dsi_panel_parse_mi_config:514] mi white point read not defined\n[    1.370556] mi-dsi-panel:[dsi_panel_parse_mi_config:526] mi,elvss_dimming_check_enable not defined\n[    1.370559] mi-dsi-panel:[dsi_panel_parse_mi_config:533] default dc backlight threshold is 440\n[    1.370561] mi-dsi-panel:[dsi_panel_parse_mi_config:542] default dc backlight type is 1\n[    1.370564] mi-dsi-panel:[dsi_panel_parse_mi_config:550] default hbm brightness is 0\n[    1.370567] mi-dsi-panel:[dsi_panel_parse_smart_fps_config:240] smart fps is supported\n[    1.370569] mi-dsi-panel:[dsi_panel_parse_mi_config:570] panel is tddi\n[    1.381241] [drm] [msm-dsi-warn]: panel_node  not found\n[    1.382240] msm_drm ae00000.qcom,mdss_mdp: Linked as a consumer to regulator.31\n[    1.382297] register_client_adhoc:find path.src 1 dest 590\n[    1.382504] register_client_adhoc:Client handle 61 mdss_reg\n[    1.382526] register_client_adhoc:find path.src 22 dest 512\n[    1.382751] register_client_adhoc:find path.src 23 dest 512\n[    1.382947] register_client_adhoc:Client handle 62 mdss_sde\n[    1.383029] [drm:sde_dbg_init:4653] evtlog_status: enable:11, panic:1, dump:2\n[    1.383039] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops sde_wb_comp_ops)\n[    1.383148] msm-dsi-display soc:qcom,dsi-display-primary: Linked as a consumer to regulator.25\n[    1.383183] msm-dsi-display soc:qcom,dsi-display-primary: Linked as a consumer to regulator.65\n[    1.383225] msm-dsi-display soc:qcom,dsi-display-primary: Linked as a consumer to regulator.66\n[    1.383344] [drm:dsi_display_bind] [msm-dsi-info]: Successfully bind display panel 'qcom,mdss_dsi_j3s_37_02_0a_dsc_video'\n[    1.383436] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-primary (ops dsi_display_comp_ops)\n[    1.383440] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-secondary (ops dsi_display_comp_ops)\n[    1.383445] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops sde_rsc_comp_ops)\n[    1.383464] [drm] mapped mdp address space @00000000cba44507\n[    1.383834] [drm:_sde_kms_hw_init_blocks:3537] sde hardware revision:0x60000000\n[    1.385189] msmdrm_smmu ae00000.qcom,mdss_mdp:qcom,smmu_sde_unsec_cb: Linked as a consumer to 15000000.apps-smmu\n[    1.385387] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_unsec_cb to group 32\n[    1.385508] [drm] probing device qcom,smmu_sde_unsec\n[    1.385512] [drm] Created domain mdp_ns, secure=0\n[    1.386352] msmdrm_smmu ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb: Linked as a consumer to 15000000.apps-smmu\n[    1.386825] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 33\n[    1.386949] [drm] probing device qcom,smmu_sde_sec\n[    1.386954] [drm] Created domain mdp_s, secure=1\n[    1.388601] [drm:dsi_panel_get_mode] [msm-dsi-info]: default topology: lm: 1 comp_enc:1 intf: 1\n[    1.391374] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    1.391376] [drm] No driver support for vblank timestamp query.\n[    1.392308] [drm] Initialized msm_drm 1.3.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    1.392331] [drm] cont_splash enabled in 1 of 1 display(s)\n[    1.392536] [drm:dsi_ctrl_isr_configure] [msm-dsi-info]: dsi-ctrl-0: IRQ 475 registered\n[    1.397840] [ds28e16] set_sched_affinity_to_all: Setting cpu affinity to all valid cpus failed(-22) in set_sched_affinity_to_all.\n[    1.397847] [ds28e16] battery_verify: battery_verify batt_verified = 1 \n[    1.398925] [ds28e16] Read_RomID: RomID = 9f,fc,23,a1,11,f0,04,a8\n[    1.398927] [ds28e16] verify_get_property: get RomID = 9f,fc,23,a1,11,f0,04,a8\n[    1.404694] rmnet_perf_init(): initializing rmnet_perf\n[    1.404699] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = lo\n[    1.404702] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = bond0\n[    1.404704] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = dummy0\n[    1.404707] rmnet_shs_module_init(): Starting rmnet SHS module\n[    1.405367] msm_vidc:   err : ffffffff: .....: no device Registered\n[    1.409613] msm_vidc_v4l2 aa00000.qcom,vidc:non_secure_cb: Linked as a consumer to 15000000.apps-smmu\n[    1.409785] iommu: Adding device aa00000.qcom,vidc:non_secure_cb to group 34\n[    1.410206] msm_vidc_v4l2 aa00000.qcom,vidc:secure_non_pixel_cb: Linked as a consumer to 15000000.apps-smmu\n[    1.410630] iommu: Adding device aa00000.qcom,vidc:secure_non_pixel_cb to group 35\n[    1.411020] msm_vidc_v4l2 aa00000.qcom,vidc:secure_bitstream_cb: Linked as a consumer to 15000000.apps-smmu\n[    1.411365] iommu: Adding device aa00000.qcom,vidc:secure_bitstream_cb to group 36\n[    1.411755] msm_vidc_v4l2 aa00000.qcom,vidc:secure_pixel_cb: Linked as a consumer to 15000000.apps-smmu\n[    1.412074] iommu: Adding device aa00000.qcom,vidc:secure_pixel_cb to group 37\n[    1.412494] GACT probability NOT on\n[    1.412502] Mirror/redirect action on\n[    1.412510] netem: version 1.3\n[    1.412512] u32 classifier\n[    1.412513]     Actions configured\n[    1.413064] xt_time: kernel timezone is -0000\n[    1.413098] wireguard: WireGuard 1.0.20201112 loaded. See www.wireguard.com for information.\n[    1.413100] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    1.413160] gre: GRE over IPv4 demultiplexor driver\n[    1.413162] IPv4 over IPsec tunneling driver\n[    1.413330] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip_vti0\n[    1.413547] Initializing XFRM netlink socket\n[    1.413556] IPsec XFRM device driver\n[    1.413764] NET: Registered protocol family 10\n[    1.415344] Segment Routing with IPv6\n[    1.415389] mip6: Mobile IPv6\n[    1.415618] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6_vti0\n[    1.415710] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    1.415826] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = sit0\n[    1.416033] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6tnl0\n[    1.416120] NET: Registered protocol family 17\n[    1.416130] NET: Registered protocol family 15\n[    1.416155] Bridge firewalling registered\n[    1.416183] l2tp_core: L2TP core driver, V2.0\n[    1.416189] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    1.416191] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    1.416200] l2tp_netlink: L2TP netlink interface\n[    1.416216] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    1.416217] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    1.416240] sctp: Hash tables configured (bind 256/256)\n[    1.421750] camera_wide_cn_vana_ldo: supplied by pm8150_s5\n[    1.422036] NPU_WARN: npu_bridge_mbox_work: 1132 NPU fw is not loaded\n[    1.422174] minidump-id not found for npu\n[    1.422183] subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    1.422253] subsys-pil-tz 9800000.qcom,npu: for md_npu segments only will be dumped.\n[    1.423095] platform 3d6a000.qcom,gmu: Linked as a consumer to regulator.61\n[    1.423128] platform 3d6a000.qcom,gmu: Linked as a consumer to regulator.62\n[    1.423650] platform 3d6a000.qcom,gmu:gmu_user: Linked as a consumer to 3da0000.kgsl-smmu\n[    1.423689] iommu: Adding device 3d6a000.qcom,gmu:gmu_user to group 38\n[    1.424286] platform 3d6a000.qcom,gmu:gmu_kernel: Linked as a consumer to 3da0000.kgsl-smmu\n[    1.424317] iommu: Adding device 3d6a000.qcom,gmu:gmu_kernel to group 39\n[    1.424902] register_client_adhoc:find path.src 26 dest 512\n[    1.425081] register_client_adhoc:Client handle 63 grp3d\n[    1.425098] register_client_adhoc:find path.src 26 dest 10036\n[    1.425249] register_client_adhoc:Client handle 64 cnoc\n[    1.425252] query_client_usecase_all: query_start\n[    1.425304] query_client_usecase_all: query_start\n[    1.425500] kgsl-3d 3d00000.qcom,kgsl-3d0: Linked as a consumer to regulator.61\n[    1.425530] kgsl-3d 3d00000.qcom,kgsl-3d0: Linked as a consumer to regulator.62\n[    1.426199] platform 3da0000.qcom,kgsl-iommu:gfx3d_user: Linked as a consumer to 3da0000.kgsl-smmu\n[    1.426234] iommu: Adding device 3da0000.qcom,kgsl-iommu:gfx3d_user to group 40\n[    1.426533] platform 3da0000.qcom,kgsl-iommu:gfx3d_secure: Linked as a consumer to 3da0000.kgsl-smmu\n[    1.426567] iommu: Adding device 3da0000.qcom,kgsl-iommu:gfx3d_secure to group 41\n[    1.452120] [ds28e16] Read_RomID: RomID = 9f,fc,23,a1,11,f0,04,a8\n[    1.452121] [ds28e16] verify_get_property: get chip_ok read RomID = 9f,fc,23,a1,11,f0,04,a8\n[    1.452154] raw: 0xc1\n[    1.452164] raw: 0xc1\n[    1.452164] ===raw_msoc:193\n[    1.452174] raw: 0xc1\n[    1.452184] raw: 0xc1\n[    1.452184] ===raw_msoc:193\n[    1.452215] raw: 0xc1\n[    1.452224] raw: 0xc1\n[    1.452225] ===raw_msoc:193\n[    1.452254] raw: 0xc1\n[    1.452263] raw: 0xc1\n[    1.452263] ===raw_msoc:193\n[    1.452291] raw: 0xc1\n[    1.452301] raw: 0xc1\n[    1.452301] ===raw_msoc:193\n[    1.452330] raw: 0xc1\n[    1.452340] raw: 0xc1\n[    1.452340] ===raw_msoc:193\n[    1.453795] [ds28e16] Read_RomID: RomID = 9f,fc,23,a1,11,f0,04,a8\n[    1.453796] [ds28e16] verify_get_property: get RomID = 9f,fc,23,a1,11,f0,04,a8\n[    1.471505] raw: 0xc1\n[    1.471514] raw: 0xc1\n[    1.471515] ===raw_msoc:193\n[    1.561844] [ds28e16] Read_RomID: RomID = 9f,fc,23,a1,11,f0,04,a8\n[    1.562909] [ds28e16] Read_RomID: RomID = 9f,fc,23,a1,11,f0,04,a8\n[    1.562909] [ds28e16] verify_get_property: get chip_ok read RomID = 9f,fc,23,a1,11,f0,04,a8\n[    1.562910] [ds28e16] set_sched_affinity_to_current: Setting cpu affinity to current cpu failed(-22) in set_sched_affinity_to_current.\n[    1.617783] [ds28e16] set_sched_affinity_to_all: Setting cpu affinity to all valid cpus failed(-22) in set_sched_affinity_to_all.\n[    1.618154] [bq2597x-STANDALONE]:bq2597x_charger_get_property:POWER_SUPPLY_PROP_CHARGING_ENABLED: disable\n[    1.620775] [bq2597x-STANDALONE]:bq2597x_check_alarm_status:INT_FLAG =0x02\n[    1.620987] [bq2597x-STANDALONE]:bq2597x_check_alarm_status:INT_STAT = 0X02\n[    1.622231] [bq2597x-STANDALONE]:bq2597x_get_work_mode:work mode:Standalone\n[    1.639440] msm-dwc3 a600000.ssusb: Linked as a consumer to regulator.55\n[    1.639569] irq: type mismatch, failed to map hwirq-14 for interrupt-controller@b220000!\n[    1.639638] irq: type mismatch, failed to map hwirq-15 for interrupt-controller@b220000!\n[    1.640056] dwc3 a600000.dwc3: Failed to get clk 'ref': -2\n[    1.640133] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.641557] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    1.641673] sps:BAM 0x000000000a704000 is registered.\n[    1.641830] register_client_adhoc:find path.src 61 dest 512\n[    1.642139] register_client_adhoc:find path.src 61 dest 676\n[    1.642492] register_client_adhoc:find path.src 1 dest 583\n[    1.642708] register_client_adhoc:Client handle 65 usb0\n[    1.644313] msm-dwc3 a600000.ssusb: Dropping the link to regulator.55\n[    1.644538] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: Linked as a consumer to regulator.10\n[    1.645181] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.645244] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: Dropping the link to regulator.10\n[    1.645714] six-pin-step-chg-cfg: 4250000uV, 6000000uA\n[    1.645716] six-pin-step-chg-cfg: 4450000uV, 5400000uA\n[    1.645718] six-pin-step-chg-cfg: 4480000uV, 3680000uA\n[    1.646239] mode: 0\n[    1.647477] qcom,qpnp-smb5 c440000.qcom,spmi:qcom,pm8150b@2:qcom,qpnp-smb5: Linked as a consumer to regulator.79\n[    1.647484] pm8150b_charger: smblib_usb_plugin_locked: IRQ: usbin-plugin detached\n[    1.647487] pm8150b_charger: typec_attach_detach_irq_handler: IRQ: determine-initial-status\n[    1.647552] pm8150b_charger: typec_state_change_irq_handler: IRQ: cc-state-change; Type-C NONE detected\n[    1.647576] pm8150b_charger: chg_state_change_irq_handler: IRQ: determine-initial-status\n[    1.647597] raw: 0xc1\n[    1.647608] raw: 0xc1\n[    1.647609] ===raw_msoc:193\n[    1.647844] pm8150b_charger: smblib_update_usb_type: APSD=UNKNOWN PD=0 QC3P5=0\n[    1.649759] quick charge type is 0\n[    1.650127] raw: 0xc1\n[    1.650138] raw: 0xc1\n[    1.650139] ===raw_msoc:193\n[    1.652425] [ds28e16] set_sched_affinity_to_current: Setting cpu affinity to current cpu failed(-22) in set_sched_affinity_to_current.\n[    1.673327] pm8150b_charger: smblib_set_prop_typec_power_role: power role change: 1 --> 1!\n[    1.673330] pm8150b_charger: smblib_set_prop_typec_power_role: power role already in 1, ignore!\n[    1.673580] SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    1.673582] QPNP SMB5 probed successfully\n[    1.688095] coresight-tmc 6b05000.tmc: invalid cti data\n[    1.688482] tmc_etr_bam_init: setting SPS_BAM_SMMU_EN flag with (6048000.tmc)\n[    1.688597] sps:BAM 0x0000000006064000 is registered.\n[    1.689036] coresight-stm 6002000.stm: STM32 initialized\n[    1.689674] msm-dwc3 a600000.ssusb: Linked as a consumer to regulator.55\n[    1.689770] irq: type mismatch, failed to map hwirq-14 for interrupt-controller@b220000!\n[    1.689824] irq: type mismatch, failed to map hwirq-15 for interrupt-controller@b220000!\n[    1.690143] dwc3 a600000.dwc3: Failed to get clk 'ref': -2\n[    1.690204] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.691597] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    1.691704] sps:BAM 0x000000000a704000 is registered.\n[    1.691848] register_client_adhoc:find path.src 61 dest 512\n[    1.692136] register_client_adhoc:find path.src 61 dest 676\n[    1.692475] register_client_adhoc:find path.src 1 dest 583\n[    1.692676] register_client_adhoc:Client handle 65 usb0\n[    1.707573] [ds28e16] set_sched_affinity_to_all: Setting cpu affinity to all valid cpus failed(-22) in set_sched_affinity_to_all.\n[    1.707683] icl_ua: 100000\n[    1.707741] mode: 2\n[    1.708031] raw: 0xc1\n[    1.708043] raw: 0xc1\n[    1.708044] ===raw_msoc:193\n[    1.708450] FG: fg_gen4_adjust_ki_coeff_full_soc: Wrote ki_coeff_full_soc [0 0]\n[    1.708475] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[    1.708986] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4110 Vbatt avg=4112 Vbatt res=712\n[    1.708997] raw: 0xc1\n[    1.709008] raw: 0xc1\n[    1.709009] ===raw_msoc:193\n[    1.709012] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 444823\n[    1.709015] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[    1.709366] raw: 0xc1\n[    1.709377] raw: 0xc1\n[    1.709378] ===raw_msoc:193\n[    1.712373] quick charge type is 0\n[    1.713046] raw: 0xc1\n[    1.713063] raw: 0xc1\n[    1.713064] ===raw_msoc:193\n[    1.713175] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[    1.713453] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4110 Vbatt avg=4112 Vbatt res=712\n[    1.713464] raw: 0xc1\n[    1.713475] raw: 0xc1\n[    1.713476] ===raw_msoc:193\n[    1.713478] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 444823\n[    1.713480] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[    1.713634] msm-dwc3 a600000.ssusb: Dropping the link to regulator.55\n[    1.713869] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: Linked as a consumer to regulator.10\n[    1.714394] batt power supply prop 194 not supported\n[    1.716600] msm-dwc3 a600000.ssusb: Linked as a consumer to regulator.55\n[    1.716684] irq: type mismatch, failed to map hwirq-14 for interrupt-controller@b220000!\n[    1.716730] irq: type mismatch, failed to map hwirq-15 for interrupt-controller@b220000!\n[    1.717072] dwc3 a600000.dwc3: Failed to get clk 'ref': -2\n[    1.717124] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.718437] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    1.718543] sps:BAM 0x000000000a704000 is registered.\n[    1.718677] register_client_adhoc:find path.src 61 dest 512\n[    1.718941] register_client_adhoc:find path.src 61 dest 676\n[    1.719270] register_client_adhoc:find path.src 1 dest 583\n[    1.719469] register_client_adhoc:Client handle 65 usb0\n[    1.719546] msm-dwc3 a600000.ssusb: Linked as a consumer to regulator.79\n[    1.720165] core_ctl: Creating CPU group 0\n[    1.720166] core_ctl: Init CPU0 state\n[    1.720166] core_ctl: Init CPU1 state\n[    1.720166] core_ctl: Init CPU2 state\n[    1.720167] core_ctl: Init CPU3 state\n[    1.720206] core_ctl: Creating CPU group 4\n[    1.720206] core_ctl: Init CPU4 state\n[    1.720207] core_ctl: Init CPU5 state\n[    1.720207] core_ctl: Init CPU6 state\n[    1.720238] core_ctl: Creating CPU group 7\n[    1.720238] core_ctl: Init CPU7 state\n[    1.720488] registered taskstats version 1\n[    1.720491] Loading compiled-in X.509 certificates\n[    1.720829] pstore: Invalid compression size for deflate: 0\n[    1.780764] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode\n[    1.781210] msm-dwc3 a600000.ssusb: DWC3 in low power mode\n[    1.791649] spss_utils [spss_parse_dt]: iar_buf_addr [0x8c6f0000].\n[    1.791762] spss_utils [spss_probe]: Initialization completed ok, firmware_name [spss2p].\n[    1.826071] scm_call failed: func id 0x42001601, ret: -2, syscall returns: 0x0, 0x0, 0x0\n[    1.827729] adsprpc: init_secure_vmid_list: secure VMID = 22\n[    1.827729] adsprpc: init_secure_vmid_list: secure VMID = 37\n[    1.827739] adsprpc: fastrpc_probe: service location enabled for avs/audio (audio_pdr_adsprpc)\n[    1.827744] adsprpc: fastrpc_probe: service location enabled for tms/servreg (sensors_pdr_adsprpc)\n[    1.827922] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1: Linked as a consumer to 15000000.apps-smmu\n[    1.828028] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 42\n[    1.828204] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2: Linked as a consumer to 15000000.apps-smmu\n[    1.828280] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 43\n[    1.828435] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3: Linked as a consumer to 15000000.apps-smmu\n[    1.828508] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 44\n[    1.828658] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4: Linked as a consumer to 15000000.apps-smmu\n[    1.828729] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 45\n[    1.828879] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5: Linked as a consumer to 15000000.apps-smmu\n[    1.828950] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 46\n[    1.829097] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6: Linked as a consumer to 15000000.apps-smmu\n[    1.829166] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 47\n[    1.829311] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7: Linked as a consumer to 15000000.apps-smmu\n[    1.829380] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7 to group 48\n[    1.829525] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8: Linked as a consumer to 15000000.apps-smmu\n[    1.829595] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8 to group 49\n[    1.829741] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9: Linked as a consumer to 15000000.apps-smmu\n[    1.829980] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 50\n[    1.830143] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10: Linked as a consumer to 15000000.apps-smmu\n[    1.830215] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 51\n[    1.830357] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11: Linked as a consumer to 15000000.apps-smmu\n[    1.830426] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 52\n[    1.830569] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12: Linked as a consumer to 15000000.apps-smmu\n[    1.830639] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 53\n[    1.830782] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13: Linked as a consumer to 15000000.apps-smmu\n[    1.830850] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13 to group 54\n[    1.830994] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14: Linked as a consumer to 15000000.apps-smmu\n[    1.831064] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14 to group 55\n[    1.831206] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb15: Linked as a consumer to 15000000.apps-smmu\n[    1.831274] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb15 to group 56\n[    1.831573] adsprpc: fastrpc_device_init: SSR notifier registered for adsp\n[    1.831575] adsprpc: fastrpc_device_init: SSR notifier registered for modem\n[    1.831576] adsprpc: fastrpc_device_init: SSR notifier registered for slpi\n[    1.831577] adsprpc: fastrpc_device_init: SSR notifier registered for cdsp\n[    2.080025] FG: battery_authentic_work: FG: authentic prop is 1\n[    2.081091] [ds28e16] Read_RomID: RomID = 9f,fc,23,a1,11,f0,04,a8\n[    2.081092] [ds28e16] verify_get_property: get RomID = 9f,fc,23,a1,11,f0,04,a8\n[    2.081093] FG: ds_romid_work: FG: romid prop is 9f fc 23 a1 11 f0 04 a8\n[    2.632127] FG: ds_status_work: FG: ds_status prop is 02 00 08 03 02 00 ff 40\n[    3.120022] FG: ds_page0_work: FG: ds_page0 prop is 53 42 4d 35 33 30 38 43 00 94 3f 41 4d 44 31 31\n[    3.680061] of_batterydata_get_best_profile: j3ssun_5000mah found\n[    3.680072] QCOM-STEPCHG: read_range_data_from_node: Count qcom,step-chg-ranges failed, rc=-22\n[    3.680077] QCOM-STEPCHG: read_range_data_from_node: Count qcom,cold-step-chg-ranges failed, rc=-22\n[    4.960083] block2mtd: error: cannot open device /dev/block/sda15\n[    4.960198] ngd_msm_ctrl 3ac0000.slim: Linked as a consumer to 15000000.apps-smmu\n[    4.960340] iommu: Adding device 3ac0000.slim to group 57\n[    4.961493] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    4.961840] [NVT-ts-spi] nvt_driver_init 3367: start\n[    4.962232] [NVT-ts-spi] nvt_ts_probe 2417: start\n[    4.962251] [NVT-ts-spi] nvt_parse_dt 1060: novatek,reset-gpio=1138\n[    4.962257] [NVT-ts-spi] nvt_parse_dt 1063: novatek,irq-gpio=1139\n[    4.962260] [NVT-ts-spi] nvt_parse_dt 1070: SWRST_N8_ADDR=0x03F0FE\n[    4.962263] [NVT-ts-spi] nvt_parse_dt 1079: SPI_RD_FAST_ADDR=0x03F310\n[    4.962265] [NVT-ts-spi] nvt_parse_dt 1087: config-array-size: 1\n[    4.962267] [NVT-ts-spi] nvt_parse_dt 1095: spi-max-frequency: 15000000\n[    4.962270] [NVT-ts-spi] nvt_parse_dt 1117: tp vendor: 65\n[    4.962272] [NVT-ts-spi] nvt_parse_dt 1125: tp hw version: 55\n[    4.962274] [NVT-ts-spi] nvt_parse_dt 1133: tp hw version: 0\n[    4.962276] [NVT-ts-spi] nvt_parse_dt 1141: fw_name: novatek_nt36675_j3s_fw01.bin\n[    4.962278] [NVT-ts-spi] nvt_parse_dt 1149: mp_name: novatek_nt36675_j3s_mp01.bin\n[    4.962282] [NVT-ts-spi] nvt_ts_probe 2507: mode=0, max_speed_hz=15000000\n[    4.962397] [NVT-ts-spi] nvt_pinctrl_init 1704: nvt_pinctrl_init Enter\n[    4.962417] [NVT-ts-spi] nvt_ts_probe 2521: Request GPIO\n[    4.962431] [NVT-ts-spi] nvt_gpio_config 1266: nvt_gpio_config Exit\n[    4.962433] [NVT-ts-spi] nvt_eng_reset 444: nvt_eng_reset \n[    4.962435] [NVT-ts-spi] nvt_write_addr 337: nvt_write_addr enter\n[    4.962719] spi_geni 990000.spi: tx_fifo 16 rx_fifo 16 tx_width 32\n[    4.962868] [NVT-ts-spi] nvt_eng_reset 446: nvt_eng_reset leave\n[    4.963967] [NVT-ts-spi] nvt_ts_probe 2541: gpio set complete\n[    4.980027] [NVT-ts-spi] nvt_ts_probe 2546: start check chip\n[    4.980027] [NVT-ts-spi] nvt_write_addr 337: nvt_write_addr enter\n[    4.985152] [NVT-ts-spi] nvt_write_addr 337: nvt_write_addr enter\n[    4.985388] [NVT-ts-spi] nvt_ts_check_chip_ver_trim 1661: buf[1]=0x0E, buf[2]=0x00, buf[3]=0x00, buf[4]=0x72, buf[5]=0x66, buf[6]=0x03\n[    4.985390] [NVT-ts-spi] nvt_ts_check_chip_ver_trim 1680: This is NVT touch IC\n[    4.985392] [NVT-ts-spi] nvt_ts_probe 2553: finish check chip\n[    4.985458] input: NVTCapacitiveTouchScreen as /devices/virtual/input/input4\n[    4.985561] [NVT-ts-spi] nvt_ts_probe 2624: int_trigger_type=1\n[    4.985631] [NVT-ts-spi] nvt_irq_enable 211: enable=0, desc->depth=1\n[    4.985632] [NVT-ts-spi] nvt_ts_probe 2633: request irq 527 succeed\n[    4.985704] [NVT-ts-spi] nvt_ts_probe 2665: NVT_TOUCH_ESD_PROTECT is 1\n[    4.985710] [NVT-ts-spi] get_lockdown_info 2330: lkdown_readed = 0\n[    4.985758] [NVT-ts-spi] nvt_flash_proc_init 907: Succeeded!\n[    4.985760] [NVT-ts-spi] nvt_flash_proc_init 910: ============================================================\n[    4.985762] [NVT-ts-spi] nvt_flash_proc_init 911: Create /proc/NVTSPI\n[    4.985764] [NVT-ts-spi] nvt_flash_proc_init 912: ============================================================\n[    4.985769] [NVT-ts-spi] nvt_extra_proc_init 653: create proc/nvt_fw_version Succeeded!\n[    4.985773] [NVT-ts-spi] nvt_extra_proc_init 661: create proc/nvt_baseline Succeeded!\n[    4.985779] [NVT-ts-spi] nvt_extra_proc_init 669: create proc/nvt_raw Succeeded!\n[    4.985782] [NVT-ts-spi] nvt_extra_proc_init 677: create proc/nvt_diff Succeeded!\n[    4.985785] [NVT-ts-spi] nvt_extra_proc_init 685: create proc/nvt_xiaomi_config_info Succeeded!\n[    4.985788] [NVT-ts-spi] nvt_extra_proc_init 693: create proc/tp_lockdown_info Succeeded!\n[    4.985799] [NVT-ts-spi] nvt_mp_proc_init 2403: create /proc/nvt_selftest Succeeded!\n[    4.985802] [NVT-ts-spi] nvt_mp_proc_init 2412: create /proc/tp_selftest Succeeded!\n[    4.985806] [NVT-ts-spi] nvt_test_data_proc_init 2653: create proc/nvt_test_data Succeeded!\n[    4.985852] [NVT-ts-spi] nvt_init_touchmode_data 1806: nvt_init_touchmode_data,ENTER\n[    4.985856] [NVT-ts-spi] nvt_init_touchmode_data 1863: mode:0, set cur:0, get cur:0, def:0 min:0 max:1\n[    4.985858] [NVT-ts-spi] nvt_init_touchmode_data 1863: mode:1, set cur:0, get cur:0, def:0 min:0 max:1\n[    4.985861] [NVT-ts-spi] nvt_init_touchmode_data 1863: mode:2, set cur:0, get cur:0, def:0 min:0 max:2\n[    4.985863] [NVT-ts-spi] nvt_init_touchmode_data 1863: mode:3, set cur:0, get cur:0, def:0 min:0 max:2\n[    4.985866] [NVT-ts-spi] nvt_init_touchmode_data 1863: mode:4, set cur:0, get cur:0, def:0 min:0 max:0\n[    4.985868] [NVT-ts-spi] nvt_init_touchmode_data 1863: mode:5, set cur:0, get cur:0, def:0 min:0 max:0\n[    4.985871] [NVT-ts-spi] nvt_init_touchmode_data 1863: mode:6, set cur:0, get cur:0, def:0 min:0 max:0\n[    4.985873] [NVT-ts-spi] nvt_init_touchmode_data 1863: mode:7, set cur:0, get cur:0, def:2 min:0 max:3\n[    4.985876] [NVT-ts-spi] nvt_init_touchmode_data 1863: mode:8, set cur:0, get cur:0, def:0 min:0 max:3\n[    4.985878] [NVT-ts-spi] nvt_init_touchmode_data 1863: mode:9, set cur:0, get cur:0, def:0 min:0 max:0\n[    4.985881] [NVT-ts-spi] nvt_init_touchmode_data 1863: mode:10, set cur:0, get cur:0, def:0 min:0 max:0\n[    4.985883] [NVT-ts-spi] nvt_init_touchmode_data 1863: mode:11, set cur:0, get cur:0, def:0 min:0 max:0\n[    4.985886] [NVT-ts-spi] nvt_init_touchmode_data 1863: mode:12, set cur:0, get cur:0, def:0 min:0 max:1\n[    4.985889] [NVT-ts-spi] nvt_init_touchmode_data 1863: mode:13, set cur:0, get cur:0, def:0 min:0 max:0\n[    4.985891] [NVT-ts-spi] nvt_init_touchmode_data 1863: mode:14, set cur:0, get cur:0, def:0 min:0 max:0\n[    4.985894] [NVT-ts-spi] nvt_init_touchmode_data 1863: mode:15, set cur:0, get cur:0, def:0 min:0 max:0\n[    4.985896] [NVT-ts-spi] nvt_init_touchmode_data 1863: mode:16, set cur:0, get cur:0, def:0 min:0 max:0\n[    4.985899] [NVT-ts-spi] nvt_init_touchmode_data 1863: mode:17, set cur:0, get cur:0, def:0 min:0 max:0\n[    4.985902] [NVT-ts-spi] nvt_init_touchmode_data 1863: mode:18, set cur:0, get cur:0, def:0 min:0 max:0\n[    4.985903] [mi-touch] xiaomitouch_register_modedata: \n[    4.985906] [NVT-ts-spi] nvt_ts_probe 2794: end\n[    4.985914] [NVT-ts-spi] nvt_irq_enable 211: enable=1, desc->depth=0\n[    4.986030] [NVT-ts-spi] nvt_driver_init 3376: finished\n[    4.986418] rtc-pm8xxx c440000.qcom,spmi:qcom,pm8150@0:qcom,pm8150_rtc: setting system clock to 1970-04-26 15:28:56 UTC (9991736)\n[    4.986653] [USBPD-PM]: usbpd_pm_probe: usbpd_pm_probe enter\n[    4.986657] [USBPD-PM]: pd_policy_parse_dt: pm_config.bat_volt_lp_lmt:4480\n[    4.986659] [USBPD-PM]: pd_policy_parse_dt: pm_config.bat_curr_lp_lmt:6000\n[    4.986661] [USBPD-PM]: pd_policy_parse_dt: pm_config.bus_volt_lp_lmt:12000\n[    4.986663] [USBPD-PM]: pd_policy_parse_dt: pm_config.bus_curr_lp_lmt:3000\n[    4.986664] [USBPD-PM]: pd_policy_parse_dt: pdpm->step_charge_high_vol_curr_max:0\n[    4.986666] [USBPD-PM]: pd_policy_parse_dt: pdpm->cell_vol_high_threshold_mv:0\n[    4.986668] [USBPD-PM]: pd_policy_parse_dt: pdpm->cell_vol_max_threshold_mv:0\n[    4.986670] [USBPD-PM]: pd_policy_parse_dt: pdpm->non_ffc_bat_volt_max:4450\n[    4.986672] [USBPD-PM]: pd_policy_parse_dt: therm-level-threshold:12\n[    4.986674] [USBPD-PM]: pd_policy_parse_dt: pd-battery-warm-th:480\n[    4.986681] [USBPD-PM]: usbpd_check_cp_sec_psy: cp_sec_psy not found\n[    4.986991] [FC2-PM]: cp_qc30_probe: cp_qc30_probe enter\n[    4.986996] [FC2-PM]: cp_qc30_probe: battery_warm_th = 480\n[    4.986998] [FC2-PM]: cp_qc30_probe: charge pump qc3 probe\n[    4.990624] rmnet_ipa3 started initialization\n[    4.990796] RNDIS_IPA module is loaded.\n[    4.992819] msm notifier probed successfully\n[    4.993255] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    4.994020] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    4.994360] cam_cc_sleep_clk_src: CXO configuration failed\n[    4.994793] msm_bus_late_init: Remove handoff bw requests\n[    4.994913] qcom_rpmh DRV:apps_rsc TCS Busy, retrying RPMH message send: addr=0x50074\n[    4.995258] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    4.995637] ALSA device list:\n[    4.995639]   No soundcards found.\n[    4.995661] Warning: unable to open an initial console.\n[    4.996851] Freeing unused kernel memory: 6144K\n[    5.020066] Run /init as init process\n[    5.159521] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: cpu1 cpu4 cpu7 \n               Offline CPUs: cpu1 \n[    5.161701] CPU1: shutdown\n[    5.161864] psci: CPU1 killed.\n[    5.162506] cpu2 \n[    5.164418] CPU2: shutdown\n[    5.164493] psci: CPU2 killed.\n[    5.164955] cpu3 \n[    5.169047] CPU3: shutdown\n[    5.169132] psci: CPU3 killed.\n[    5.169576] cpu4 \n[    5.171952] CPU4: shutdown\n[    5.190291] psci: Retrying again to check for CPU kill\n[    5.190317] psci: CPU4 killed.\n[    5.190797] cpu5 \n[    5.194313] CPU5: shutdown\n[    5.210987] psci: Retrying again to check for CPU kill\n[    5.211030] psci: CPU5 killed.\n[    5.211375] cpu6 \n[    5.215841] CPU6: shutdown\n[    5.215867] psci: CPU6 killed.\n[    5.216203] cpu7 \n[    5.216503] IRQ 5: no longer affine to CPU7\n[    5.216556] CPU7: shutdown\n[    5.216589] psci: CPU7 killed.\n\n[    5.217791] Sampling power every 1000 ms\n               Baseline power usage: \n[    6.000442] aw8697_ram_work_routine enter\n[    6.000757] aw8697_haptic 2-005a: Falling back to syfs fallback for: aw8697_haptic.bin\n[    6.082459] FG: fg_gen4_get_batt_profile: cmdline of batt profile is not defined, read page0 to reload file\n[    6.082489] of_batterydata_get_best_profile: j3ssun_5000mah found\n[    6.083075] FG: is_profile_load_required: Battery profile integrity bit is set\n[    6.083481] FG: is_profile_load_required: Battery profile is same, not loading it\n[    6.083787] raw: 0xc1\n[    6.083810] raw: 0xc1\n[    6.083818] ===raw_msoc:193\n[    6.084151] FG: profile_load_work: First profile load bit is set\n[    6.084320] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[    6.084333] FG: calculate_average_current: current_now_ma=325683 averaged_iavg_ma=325683\n[    6.084361] FG: fg_battery_soc_smooth_tracking: soc:79, last_soc:79, raw_soc:79, soc_changed:0, batt_ma:325683, smooth_low_batt_soc:0, smooth_soc: 0\n[    6.084372] FG: soc_monitor_work: soc:79, raw_soc:79, c:325683, s:2\n[    6.084408] FG: is_sdam_cookie_set: cookie: a5\n[    6.086018] FG: fg_gen4_bp_params_config: Rslow_low: 0\n[    6.088771] raw: 0xc1\n[    6.088795] raw: 0xc1\n[    6.088802] ===raw_msoc:193\n[    6.090994] FG: profile_load_work: profile loaded successfully\n[    6.092004] [NVT-ts-spi] nvt_power_supply_work 2382: Power_supply_event:0\n[    6.092016] [NVT-ts-spi] nvt_power_supply_work 2388: USB is not exist\n[    6.093382] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4115 Vbatt avg=4112 Vbatt res=712\n[    6.093407] raw: 0xc1\n[    6.093428] raw: 0xc1\n[    6.093436] ===raw_msoc:193\n[    6.093448] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 325683\n[    6.095066] raw: 0xc1\n[    6.095090] raw: 0xc1\n[    6.095098] ===raw_msoc:193\n[    6.095539] batt_verified =1\n[    6.096820] [ds28e16] Read_RomID: RomID = 9f,fc,23,a1,11,f0,04,a8\n[    6.096838] [ds28e16] verify_get_property: get RomID = 9f,fc,23,a1,11,f0,04,a8\n[    6.100438] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 327 FCC = 6000000uA FV = 4480000uV\n[    6.100450] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[    6.100481] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 327 max voltage= 4480000uv FV = 4480000uV\n[    6.100914] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 2fae1479\n[    6.100979] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[    6.101395] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4115 Vbatt avg=4112 Vbatt res=712\n[    6.101419] raw: 0xc1\n[    6.101441] raw: 0xc1\n[    6.101448] ===raw_msoc:193\n[    6.101459] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 325683\n[    6.101472] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[    6.150535] [ds28e16] Read_RomID: RomID = 9f,fc,23,a1,11,f0,04,a8\n[    6.150554] [ds28e16] verify_get_property: get chip_ok read RomID = 9f,fc,23,a1,11,f0,04,a8\n[    6.150618] raw: 0xc1\n[    6.150640] raw: 0xc1\n[    6.150647] ===raw_msoc:193\n[    6.150678] raw: 0xc1\n[    6.150698] raw: 0xc1\n[    6.150705] ===raw_msoc:193\n[    6.150800] raw: 0xc1\n[    6.150820] raw: 0xc1\n[    6.150827] ===raw_msoc:193\n[    6.150913] raw: 0xc1\n[    6.150934] raw: 0xc1\n[    6.150940] ===raw_msoc:193\n[    6.150990] raw: 0xc1\n[    6.151010] raw: 0xc1\n[    6.151017] ===raw_msoc:193\n[    6.151074] raw: 0xc1\n[    6.151095] raw: 0xc1\n[    6.151101] ===raw_msoc:193\n[    6.155554] raw: 0xc1\n[    6.155577] raw: 0xc1\n[    6.155585] ===raw_msoc:193\n[    6.160894] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 2fae1479\n[    6.160954] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[    6.161399] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4115 Vbatt avg=4112 Vbatt res=712\n[    6.161423] raw: 0xc1\n[    6.161445] raw: 0xc1\n[    6.161452] ===raw_msoc:193\n[    6.161464] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 325683\n[    6.161476] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[    6.162212] raw: 0xc1\n[    6.162235] raw: 0xc1\n[    6.162243] ===raw_msoc:193\n[    6.163341] raw: 0xc1\n[    6.163364] raw: 0xc1\n[    6.163371] ===raw_msoc:193\n[   16.480490] raw: 0xc1\n[   16.480514] raw: 0xc1\n[   16.480523] ===raw_msoc:193\n[   16.480674] raw: 0xc1\n[   16.480696] raw: 0xc1\n[   16.480703] ===raw_msoc:193\n[   16.481086] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[   16.481099] FG: calculate_average_current: current_now_ma=316894 averaged_iavg_ma=321289\n[   16.481117] FG: fg_battery_soc_smooth_tracking: soc:79, last_soc:79, raw_soc:79, soc_changed:0, batt_ma:316894, smooth_low_batt_soc:0, smooth_soc: 0\n[   16.481129] FG: soc_monitor_work: soc:79, raw_soc:79, c:316894, s:2\n[   25.574797] raw: 0xc1\n[   25.586581] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4111 Vbatt avg=4115 Vbatt res=715\n[   25.586606] raw: 0xc1\n[   25.586628] raw: 0xc1\n[   25.586635] ===raw_msoc:193\n[   25.586647] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 410644\n[   25.590677] raw: 0xc1\n[   25.590847] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 2fa5e353\n[   25.590907] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[   25.591105] raw: 0xc1\n[   25.591114] ===raw_msoc:193\n[   25.591326] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4111 Vbatt avg=4115 Vbatt res=715\n[   25.591349] raw: 0xc1\n[   25.591370] raw: 0xc1\n[   25.591377] ===raw_msoc:193\n[   25.591389] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 410644\n[   25.591401] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[   25.593007] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 327 FCC = 6000000uA FV = 4480000uV\n[   25.593019] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[   25.593045] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 327 max voltage= 4480000uv FV = 4480000uV\n[   25.593278] raw: 0xc1\n[   25.593301] raw: 0xc1\n[   25.593308] ===raw_msoc:193\n[   26.720474] raw: 0xc1\n[   26.720498] raw: 0xc1\n[   26.720506] ===raw_msoc:193\n[   26.720815] raw: 0xc1\n[   26.720839] raw: 0xc1\n[   26.720846] ===raw_msoc:193\n[   26.721043] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[   26.721056] FG: calculate_average_current: current_now_ma=318847 averaged_iavg_ma=320475\n[   26.721074] FG: fg_battery_soc_smooth_tracking: soc:79, last_soc:79, raw_soc:79, soc_changed:0, batt_ma:318847, smooth_low_batt_soc:0, smooth_soc: 0\n[   26.721085] FG: soc_monitor_work: soc:79, raw_soc:79, c:318847, s:2\n[   31.841236] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 03 78 04 02 03 07 a0 fd 30 00 a3 02 0b 0a 00 00 55 \n[   31.841558] smb:01:1200 00 ff ff fe 00 3d 3d 00 00 00 00 00 00 00 00 01 06 00 01 00 \n[   31.842388] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 00 00 40 00 00 a3 00 00 00 00 07 00 18 38 11 b0 03 00 00 7f 00 00 00 00 00 00 02 54 00 00 00 00 \n[   31.843512] smb:01:1500 00 00 00 04 c5 40 00 04 ff 00 00 ff ff 4a 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[   31.844342] smb:01:1600 03 03 00 00 0f 02 01 04 00 00 00 5b 5b 00 00 00 00 00 42 00 f3 00 00 00 00 00 00 00 00 00 00 00 00 0c 01 00 80 00 00 00 00 00 00 20 b8 4c cc 18 02 00 03 32 04 \n[   31.844372] pm8150b_charger: smblib_reg_work: AWAKE vote value is 0 voted by CHG_AWAKE_VOTER\n[   35.040653] display_panel_vci: disabling\n[   35.040672] disp_vddio_vreg: disabling\n[   35.046569] pm8008-chip-en: disabling\n[   35.049607] vdd_hap_boost: disabling\n[   35.049621] camera_wide_vana_ldo: disabling\n[   35.049631] camera_wide_cn_vana_ldo: disabling\n[   36.960468] raw: 0xc0\n[   36.960491] raw: 0xc0\n[   36.960499] ===raw_msoc:192\n[   36.960896] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[   36.960909] FG: calculate_average_current: current_now_ma=317870 averaged_iavg_ma=319824\n[   36.960927] FG: fg_battery_soc_smooth_tracking: soc:79, last_soc:79, raw_soc:78, soc_changed:0, batt_ma:317870, smooth_low_batt_soc:0, smooth_soc: 0\n[   36.960939] FG: soc_monitor_work: soc:79, raw_soc:78, c:317870, s:2\n[   36.960998] raw: 0xc0\n[   36.961020] raw: 0xc0\n[   36.961027] ===raw_msoc:192\n[   41.612775] FG: esr_calib_work: esr_raw: 0xc6 esr_char_raw: 0xc4 esr_meas_diff: 0x2 esr_delta: 0x294\n[   41.612789] FG: esr_calib_work: fg_esr_meas_diff: 0xffffffee esr_filt: 0xffffffee esr_delta_new: 0x54\n[   41.613483] FG: esr_calib_work: Wrote ESR delta [0x54 0x0]\n[   47.200441] raw: 0xc0\n[   47.200465] raw: 0xc0\n[   47.200473] ===raw_msoc:192\n[   47.200620] raw: 0xc0\n[   47.200642] raw: 0xc0\n[   47.200649] ===raw_msoc:192\n[   47.201033] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[   47.201046] FG: calculate_average_current: current_now_ma=317870 averaged_iavg_ma=319824\n[   47.201064] FG: fg_battery_soc_smooth_tracking: soc:79, last_soc:79, raw_soc:78, soc_changed:0, batt_ma:317870, smooth_low_batt_soc:0, smooth_soc: 0\n[   47.201076] FG: soc_monitor_work: soc:79, raw_soc:78, c:317870, s:2\n[   57.440472] raw: 0xc0\n[   57.440496] raw: 0xc0\n[   57.440504] ===raw_msoc:192\n[   57.440831] raw: 0xc0\n[   57.440854] raw: 0xc0\n[   57.440861] ===raw_msoc:192\n[   57.441059] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[   57.441072] FG: calculate_average_current: current_now_ma=316894 averaged_iavg_ma=319238\n[   57.441090] FG: fg_battery_soc_smooth_tracking: soc:79, last_soc:79, raw_soc:78, soc_changed:0, batt_ma:316894, smooth_low_batt_soc:0, smooth_soc: 0\n[   57.441101] FG: soc_monitor_work: soc:79, raw_soc:78, c:316894, s:2\n[   67.680518] raw: 0xc0\n[   67.680542] raw: 0xc0\n[   67.680550] ===raw_msoc:192\n[   67.680876] raw: 0xc0\n[   67.680899] raw: 0xc0\n[   67.680907] ===raw_msoc:192\n[   67.681104] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[   67.681117] FG: calculate_average_current: current_now_ma=316406 averaged_iavg_ma=318766\n[   67.681139] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:316406, smooth_low_batt_soc:0, smooth_soc: 0\n[   67.681150] FG: soc_monitor_work: soc:78, raw_soc:78, c:316406, s:2\n[   67.685135] raw: 0xc0\n[   67.685306] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 2f972473\n[   67.685365] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[   67.685564] raw: 0xc0\n[   67.685572] ===raw_msoc:192\n[   67.685786] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4116 Vbatt avg=4115 Vbatt res=715\n[   67.685809] raw: 0xc0\n[   67.685830] raw: 0xc0\n[   67.685837] ===raw_msoc:192\n[   67.685848] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 316406\n[   67.685860] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[   67.687468] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 327 FCC = 6000000uA FV = 4480000uV\n[   67.687481] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[   67.687507] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 327 max voltage= 4480000uv FV = 4480000uV\n[   67.687741] raw: 0xc0\n[   67.687764] raw: 0xc0\n[   67.687771] ===raw_msoc:192\n[   69.600569] aw8697_ram_loaded enter\n[   69.600579] aw8697_ram_loaded: failed to read aw8697_haptic.bin\n[   77.920473] raw: 0xc0\n[   77.920497] raw: 0xc0\n[   77.920505] ===raw_msoc:192\n[   77.920883] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[   77.920897] FG: calculate_average_current: current_now_ma=316894 averaged_iavg_ma=318498\n[   77.920915] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:0, batt_ma:316894, smooth_low_batt_soc:0, smooth_soc: 0\n[   77.920926] FG: soc_monitor_work: soc:78, raw_soc:78, c:316894, s:2\n[   77.920985] raw: 0xc0\n[   77.921007] raw: 0xc0\n[   77.921014] ===raw_msoc:192\n[   80.332012] Detected VIPT I-cache on CPU1\n[   80.332119] arch_timer: CPU1: Trapping CNTVCT access\n[   80.332151] CPU1: Booted secondary processor 0x0000000100 [0x51df805e]\n[   80.339332] 1300 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 403 518 614 691 787 883 979 1075 1171 1248 1344 1420 1516 1612 1708 1804\n               \n                300: \n[   88.160491] raw: 0xc0\n[   88.160515] raw: 0xc0\n[   88.160523] ===raw_msoc:192\n[   88.160670] raw: 0xc0\n[   88.160691] raw: 0xc0\n[   88.160698] ===raw_msoc:192\n[   88.161102] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[   88.161115] FG: calculate_average_current: current_now_ma=318847 averaged_iavg_ma=318542\n[   88.161133] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:0, batt_ma:318847, smooth_low_batt_soc:0, smooth_soc: 0\n[   88.161145] FG: soc_monitor_work: soc:78, raw_soc:78, c:318847, s:2\n[   98.400443] raw: 0xc0\n[   98.400467] raw: 0xc0\n[   98.400474] ===raw_msoc:192\n[   98.400804] raw: 0xc0\n[   98.400827] raw: 0xc0\n[   98.400835] ===raw_msoc:192\n[   98.401032] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[   98.401045] FG: calculate_average_current: current_now_ma=325195 averaged_iavg_ma=318481\n[   98.401063] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:0, batt_ma:325195, smooth_low_batt_soc:0, smooth_soc: 0\n[   98.401074] FG: soc_monitor_work: soc:78, raw_soc:78, c:325195, s:2\n[  106.047942] FG: fg_esr_fast_cal_timer: ESR fast calibration timer expired\n[  106.048758] esr_charging_timer set to 0/96\n[  106.049451] esr_discharging_timer set to 0/96\n[  106.051588] FG: fg_gen4_esr_fast_calib_config: Disabling ESR fast calibration\n[  108.640443] raw: 0xc0\n[  108.640466] raw: 0xc0\n[  108.640474] ===raw_msoc:192\n[  108.640855] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  108.640868] FG: calculate_average_current: current_now_ma=321777 averaged_iavg_ma=319091\n[  108.640886] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:0, batt_ma:321777, smooth_low_batt_soc:0, smooth_soc: 0\n[  108.640898] FG: soc_monitor_work: soc:78, raw_soc:78, c:321777, s:2\n[  108.640957] raw: 0xc0\n[  108.640978] raw: 0xc0\n[  108.640985] ===raw_msoc:192\n[  118.880469] raw: 0xc0\n[  118.880493] raw: 0xc0\n[  118.880500] ===raw_msoc:192\n[  118.880648] raw: 0xc0\n[  118.880670] raw: 0xc0\n[  118.880677] ===raw_msoc:192\n[  118.881083] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  118.881096] FG: calculate_average_current: current_now_ma=323242 averaged_iavg_ma=319641\n[  118.881114] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:0, batt_ma:323242, smooth_low_batt_soc:0, smooth_soc: 0\n[  118.881125] FG: soc_monitor_work: soc:78, raw_soc:78, c:323242, s:2\n[  129.120442] raw: 0xc0\n[  129.120466] raw: 0xc0\n[  129.120474] ===raw_msoc:192\n[  129.120870] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  129.120884] FG: calculate_average_current: current_now_ma=322753 averaged_iavg_ma=320251\n[  129.120901] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:322753, smooth_low_batt_soc:0, smooth_soc: 0\n[  129.120913] FG: soc_monitor_work: soc:78, raw_soc:78, c:322753, s:2\n[  129.120972] raw: 0xc0\n[  129.120994] raw: 0xc0\n[  129.121001] ===raw_msoc:192\n[  139.360415] raw: 0xc0\n[  139.360439] raw: 0xc0\n[  139.360446] ===raw_msoc:192\n[  139.360593] raw: 0xc0\n[  139.360614] raw: 0xc0\n[  139.360621] ===raw_msoc:192\n[  139.361003] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  139.361017] FG: calculate_average_current: current_now_ma=323242 averaged_iavg_ma=321045\n[  139.361035] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:323242, smooth_low_batt_soc:0, smooth_soc: 0\n[  139.361046] FG: soc_monitor_work: soc:78, raw_soc:78, c:323242, s:2\n[  149.600445] raw: 0xc0\n[  149.600469] raw: 0xc0\n[  149.600477] ===raw_msoc:192\n[  149.600804] raw: 0xc0\n[  149.600828] raw: 0xc0\n[  149.600835] ===raw_msoc:192\n[  149.601033] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  149.601046] FG: calculate_average_current: current_now_ma=321288 averaged_iavg_ma=321655\n[  149.601064] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:321288, smooth_low_batt_soc:0, smooth_soc: 0\n[  149.601075] FG: soc_monitor_work: soc:78, raw_soc:78, c:321288, s:2\n[  159.840442] raw: 0xc0\n[  159.840466] raw: 0xc0\n[  159.840474] ===raw_msoc:192\n[  159.840875] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  159.840888] FG: calculate_average_current: current_now_ma=323730 averaged_iavg_ma=322509\n[  159.840906] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:323730, smooth_low_batt_soc:0, smooth_soc: 0\n[  159.840918] FG: soc_monitor_work: soc:78, raw_soc:78, c:323730, s:2\n[  159.840977] raw: 0xc0\n[  159.840998] raw: 0xc0\n[  159.841005] ===raw_msoc:192\n[  170.080469] raw: 0xc0\n[  170.080492] raw: 0xc0\n[  170.080500] ===raw_msoc:192\n[  170.080647] raw: 0xc0\n[  170.080669] raw: 0xc0\n[  170.080676] ===raw_msoc:192\n[  170.081062] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  170.081075] FG: calculate_average_current: current_now_ma=323730 averaged_iavg_ma=322509\n[  170.081093] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:323730, smooth_low_batt_soc:0, smooth_soc: 0\n[  170.081105] FG: soc_monitor_work: soc:78, raw_soc:78, c:323730, s:2\n[  180.320447] raw: 0xc0\n[  180.320471] raw: 0xc0\n[  180.320478] ===raw_msoc:192\n[  180.320874] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  180.320888] FG: calculate_average_current: current_now_ma=322753 averaged_iavg_ma=322998\n[  180.320905] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:322753, smooth_low_batt_soc:0, smooth_soc: 0\n[  180.320917] FG: soc_monitor_work: soc:78, raw_soc:78, c:322753, s:2\n[  180.320976] raw: 0xc0\n[  180.320998] raw: 0xc0\n[  180.321005] ===raw_msoc:192\n[  190.560467] raw: 0xc0\n[  190.560491] raw: 0xc0\n[  190.560499] ===raw_msoc:192\n[  190.560645] raw: 0xc0\n[  190.560666] raw: 0xc0\n[  190.560674] ===raw_msoc:192\n[  190.561073] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  190.561087] FG: calculate_average_current: current_now_ma=321777 averaged_iavg_ma=322570\n[  190.561105] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:321777, smooth_low_batt_soc:0, smooth_soc: 0\n[  190.561116] FG: soc_monitor_work: soc:78, raw_soc:78, c:321777, s:2\n[  200.800534] raw: 0xc0\n[  200.800558] raw: 0xc0\n[  200.800566] ===raw_msoc:192\n[  200.800873] raw: 0xc0\n[  200.800897] raw: 0xc0\n[  200.800904] ===raw_msoc:192\n[  200.801101] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  200.801114] FG: calculate_average_current: current_now_ma=321288 averaged_iavg_ma=322509\n[  200.801132] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:321288, smooth_low_batt_soc:0, smooth_soc: 0\n[  200.801143] FG: soc_monitor_work: soc:78, raw_soc:78, c:321288, s:2\n[  211.040449] raw: 0xc0\n[  211.040473] raw: 0xc0\n[  211.040481] ===raw_msoc:192\n[  211.040880] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  211.040893] FG: calculate_average_current: current_now_ma=322753 averaged_iavg_ma=322448\n[  211.040911] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:322753, smooth_low_batt_soc:0, smooth_soc: 0\n[  211.040922] FG: soc_monitor_work: soc:78, raw_soc:78, c:322753, s:2\n[  211.040982] raw: 0xc0\n[  211.041004] raw: 0xc0\n[  211.041011] ===raw_msoc:192\n[  221.280504] raw: 0xbf\n[  221.280528] raw: 0xbf\n[  221.280535] ===raw_msoc:191\n[  221.280681] raw: 0xbf\n[  221.280703] raw: 0xbf\n[  221.280710] ===raw_msoc:191\n[  221.281110] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  221.281124] FG: calculate_average_current: current_now_ma=323730 averaged_iavg_ma=322570\n[  221.281142] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:323730, smooth_low_batt_soc:0, smooth_soc: 0\n[  221.281153] FG: soc_monitor_work: soc:78, raw_soc:78, c:323730, s:2\n[  231.520443] raw: 0xbf\n[  231.520467] raw: 0xbf\n[  231.520475] ===raw_msoc:191\n[  231.520857] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  231.520870] FG: calculate_average_current: current_now_ma=322753 averaged_iavg_ma=322509\n[  231.520888] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:322753, smooth_low_batt_soc:0, smooth_soc: 0\n[  231.520900] FG: soc_monitor_work: soc:78, raw_soc:78, c:322753, s:2\n[  231.520958] raw: 0xbf\n[  231.520980] raw: 0xbf\n[  231.520987] ===raw_msoc:191\n[  241.760427] raw: 0xbf\n[  241.760451] raw: 0xbf\n[  241.760459] ===raw_msoc:191\n[  241.760606] raw: 0xbf\n[  241.760627] raw: 0xbf\n[  241.760634] ===raw_msoc:191\n[  241.761031] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  241.761044] FG: calculate_average_current: current_now_ma=322753 averaged_iavg_ma=322509\n[  241.761062] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:322753, smooth_low_batt_soc:0, smooth_soc: 0\n[  241.761074] FG: soc_monitor_work: soc:78, raw_soc:78, c:322753, s:2\n[  252.000444] raw: 0xbf\n[  252.000468] raw: 0xbf\n[  252.000476] ===raw_msoc:191\n[  252.000803] raw: 0xbf\n[  252.000826] raw: 0xbf\n[  252.000834] ===raw_msoc:191\n[  252.001031] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  252.001044] FG: calculate_average_current: current_now_ma=322265 averaged_iavg_ma=322631\n[  252.001061] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:322265, smooth_low_batt_soc:0, smooth_soc: 0\n[  252.001073] FG: soc_monitor_work: soc:78, raw_soc:78, c:322265, s:2\n[  262.240442] raw: 0xbf\n[  262.240466] raw: 0xbf\n[  262.240474] ===raw_msoc:191\n[  262.240855] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  262.240868] FG: calculate_average_current: current_now_ma=323730 averaged_iavg_ma=322631\n[  262.240886] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:323730, smooth_low_batt_soc:0, smooth_soc: 0\n[  262.240898] FG: soc_monitor_work: soc:78, raw_soc:78, c:323730, s:2\n[  262.240957] raw: 0xbf\n[  262.240979] raw: 0xbf\n[  262.240986] ===raw_msoc:191\n[  267.805874] raw: 0xbf\n[  267.818070] esr_charging_timer set to 0/7\n[  267.818695] esr_discharging_timer set to 0/7\n[  267.820676] FG: fg_gen4_esr_fast_calib_config: Enabling ESR fast calibration\n[  267.821059] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4112 Vbatt avg=4112 Vbatt res=712\n[  267.821084] raw: 0xbf\n[  267.821105] raw: 0xbf\n[  267.821112] ===raw_msoc:191\n[  267.821124] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 322753\n[  267.825162] raw: 0xbf\n[  267.825333] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 2f58e218\n[  267.825392] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[  267.825590] raw: 0xbf\n[  267.825599] ===raw_msoc:191\n[  267.825812] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4112 Vbatt avg=4112 Vbatt res=712\n[  267.825835] raw: 0xbf\n[  267.825856] raw: 0xbf\n[  267.825863] ===raw_msoc:191\n[  267.825874] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 322753\n[  267.825887] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[  267.827499] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 327 FCC = 6000000uA FV = 4480000uV\n[  267.827512] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[  267.827538] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 327 max voltage= 4480000uv FV = 4480000uV\n[  267.827773] raw: 0xbf\n[  267.827797] raw: 0xbf\n[  267.827804] ===raw_msoc:191\n[  272.480471] raw: 0xbf\n[  272.480495] raw: 0xbf\n[  272.480503] ===raw_msoc:191\n[  272.480650] raw: 0xbf\n[  272.480671] raw: 0xbf\n[  272.480678] ===raw_msoc:191\n[  272.481081] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  272.481094] FG: calculate_average_current: current_now_ma=322265 averaged_iavg_ma=322570\n[  272.481112] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:322265, smooth_low_batt_soc:0, smooth_soc: 0\n[  272.481123] FG: soc_monitor_work: soc:78, raw_soc:78, c:322265, s:2\n[  282.720442] raw: 0xbf\n[  282.720466] raw: 0xbf\n[  282.720474] ===raw_msoc:191\n[  282.720802] raw: 0xbf\n[  282.720825] raw: 0xbf\n[  282.720833] ===raw_msoc:191\n[  282.721030] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  282.721043] FG: calculate_average_current: current_now_ma=322753 averaged_iavg_ma=322692\n[  282.721060] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:322753, smooth_low_batt_soc:0, smooth_soc: 0\n[  282.721072] FG: soc_monitor_work: soc:78, raw_soc:78, c:322753, s:2\n[  292.960443] raw: 0xbf\n[  292.960467] raw: 0xbf\n[  292.960475] ===raw_msoc:191\n[  292.960857] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  292.960870] FG: calculate_average_current: current_now_ma=322265 averaged_iavg_ma=322814\n[  292.960888] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:322265, smooth_low_batt_soc:0, smooth_soc: 0\n[  292.960900] FG: soc_monitor_work: soc:78, raw_soc:78, c:322265, s:2\n[  292.960959] raw: 0xbf\n[  292.960980] raw: 0xbf\n[  292.960987] ===raw_msoc:191\n[  303.200420] raw: 0xbf\n[  303.200443] raw: 0xbf\n[  303.200451] ===raw_msoc:191\n[  303.200599] raw: 0xbf\n[  303.200620] raw: 0xbf\n[  303.200627] ===raw_msoc:191\n[  303.201025] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  303.201038] FG: calculate_average_current: current_now_ma=322265 averaged_iavg_ma=322814\n[  303.201056] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:322265, smooth_low_batt_soc:0, smooth_soc: 0\n[  303.201067] FG: soc_monitor_work: soc:78, raw_soc:78, c:322265, s:2\n[  305.120603] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120685] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120706] audio_notifer_reg_service: service SSR_ADSP is in use\n[  305.121646] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121660] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for audio_pdr_adsprpc\n[  305.121730] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121742] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for sensors_pdr_adsprpc\n[  305.121777] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  313.141584]  1114     3.7 C/MHz     41 mW    9.2 J   27.1 I/mJ   224.5 s\n                403: \n[  313.440424] raw: 0xbf\n[  313.440444] raw: 0xbf\n[  313.440450] ===raw_msoc:191\n[  313.440726] raw: 0xbf\n[  313.440746] raw: 0xbf\n[  313.440751] ===raw_msoc:191\n[  313.440926] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  313.440936] FG: calculate_average_current: current_now_ma=323730 averaged_iavg_ma=322936\n[  313.440950] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:323730, smooth_low_batt_soc:0, smooth_soc: 0\n[  313.440958] FG: soc_monitor_work: soc:78, raw_soc:78, c:323730, s:2\n[  323.680443] raw: 0xbf\n[  323.680464] raw: 0xbf\n[  323.680470] ===raw_msoc:191\n[  323.680729] raw: 0xbf\n[  323.680749] raw: 0xbf\n[  323.680754] ===raw_msoc:191\n[  323.680929] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  323.680938] FG: calculate_average_current: current_now_ma=323730 averaged_iavg_ma=322936\n[  323.680951] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:323730, smooth_low_batt_soc:0, smooth_soc: 0\n[  323.680960] FG: soc_monitor_work: soc:78, raw_soc:78, c:323730, s:2\n[  333.920368] raw: 0xbf\n[  333.920389] raw: 0xbf\n[  333.920395] ===raw_msoc:191\n[  333.920669] raw: 0xbf\n[  333.920689] raw: 0xbf\n[  333.920695] ===raw_msoc:191\n[  333.920870] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  333.920879] FG: calculate_average_current: current_now_ma=324706 averaged_iavg_ma=323058\n[  333.920892] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:324706, smooth_low_batt_soc:0, smooth_soc: 0\n[  333.920901] FG: soc_monitor_work: soc:78, raw_soc:78, c:324706, s:2\n[  344.160365] raw: 0xbf\n[  344.160385] raw: 0xbf\n[  344.160391] ===raw_msoc:191\n[  344.160665] raw: 0xbf\n[  344.160685] raw: 0xbf\n[  344.160691] ===raw_msoc:191\n[  344.160866] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  344.160876] FG: calculate_average_current: current_now_ma=324218 averaged_iavg_ma=323242\n[  344.160889] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:324218, smooth_low_batt_soc:0, smooth_soc: 0\n[  344.160898] FG: soc_monitor_work: soc:78, raw_soc:78, c:324218, s:2\n[  354.400395] raw: 0xbf\n[  354.400415] raw: 0xbf\n[  354.400421] ===raw_msoc:191\n[  354.400681] raw: 0xbf\n[  354.400700] raw: 0xbf\n[  354.400706] ===raw_msoc:191\n[  354.400881] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  354.400890] FG: calculate_average_current: current_now_ma=324706 averaged_iavg_ma=323547\n[  354.400904] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:324706, smooth_low_batt_soc:0, smooth_soc: 0\n[  354.400912] FG: soc_monitor_work: soc:78, raw_soc:78, c:324706, s:2\n[  364.640367] raw: 0xbf\n[  364.640387] raw: 0xbf\n[  364.640393] ===raw_msoc:191\n[  364.640667] raw: 0xbf\n[  364.640687] raw: 0xbf\n[  364.640693] ===raw_msoc:191\n[  364.640867] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  364.640877] FG: calculate_average_current: current_now_ma=326171 averaged_iavg_ma=323852\n[  364.640890] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:326171, smooth_low_batt_soc:0, smooth_soc: 0\n[  364.640899] FG: soc_monitor_work: soc:78, raw_soc:78, c:326171, s:2\n[  372.820681] FG: fg_esr_fast_cal_timer: ESR fast calibration timer expired\n[  372.821376] esr_charging_timer set to 0/96\n[  372.821985] esr_discharging_timer set to 0/96\n[  372.823785] FG: fg_gen4_esr_fast_calib_config: Disabling ESR fast calibration\n[  374.880401] raw: 0xbf\n[  374.880421] raw: 0xbf\n[  374.880427] ===raw_msoc:191\n[  374.880700] raw: 0xbf\n[  374.880720] raw: 0xbf\n[  374.880726] ===raw_msoc:191\n[  374.880901] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  374.880911] FG: calculate_average_current: current_now_ma=324706 averaged_iavg_ma=324157\n[  374.880924] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:324706, smooth_low_batt_soc:0, smooth_soc: 0\n[  374.880933] FG: soc_monitor_work: soc:78, raw_soc:78, c:324706, s:2\n[  385.120364] raw: 0xbf\n[  385.120385] raw: 0xbf\n[  385.120391] ===raw_msoc:191\n[  385.120652] raw: 0xbf\n[  385.120672] raw: 0xbf\n[  385.120678] ===raw_msoc:191\n[  385.120853] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  385.120862] FG: calculate_average_current: current_now_ma=326171 averaged_iavg_ma=324584\n[  385.120875] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:326171, smooth_low_batt_soc:0, smooth_soc: 0\n[  385.120884] FG: soc_monitor_work: soc:78, raw_soc:78, c:326171, s:2\n[  395.360370] raw: 0xbf\n[  395.360390] raw: 0xbf\n[  395.360396] ===raw_msoc:191\n[  395.360671] raw: 0xbf\n[  395.360691] raw: 0xbf\n[  395.360697] ===raw_msoc:191\n[  395.360871] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  395.360881] FG: calculate_average_current: current_now_ma=324218 averaged_iavg_ma=324828\n[  395.360894] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:324218, smooth_low_batt_soc:0, smooth_soc: 0\n[  395.360903] FG: soc_monitor_work: soc:78, raw_soc:78, c:324218, s:2\n[  405.600365] raw: 0xbe\n[  405.600385] raw: 0xbe\n[  405.600391] ===raw_msoc:190\n[  405.600665] raw: 0xbe\n[  405.600685] raw: 0xbe\n[  405.600691] ===raw_msoc:190\n[  405.600866] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  405.600875] FG: calculate_average_current: current_now_ma=324706 averaged_iavg_ma=324950\n[  405.600889] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:324706, smooth_low_batt_soc:0, smooth_soc: 0\n[  405.600897] FG: soc_monitor_work: soc:78, raw_soc:78, c:324706, s:2\n[  415.840365] raw: 0xbe\n[  415.840385] raw: 0xbe\n[  415.840391] ===raw_msoc:190\n[  415.840651] raw: 0xbe\n[  415.840671] raw: 0xbe\n[  415.840677] ===raw_msoc:190\n[  415.840852] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  415.840861] FG: calculate_average_current: current_now_ma=324706 averaged_iavg_ma=324950\n[  415.840874] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:324706, smooth_low_batt_soc:0, smooth_soc: 0\n[  415.840883] FG: soc_monitor_work: soc:78, raw_soc:78, c:324706, s:2\n[  426.080405] raw: 0xbe\n[  426.080425] raw: 0xbe\n[  426.080431] ===raw_msoc:190\n[  426.080704] raw: 0xbe\n[  426.080724] raw: 0xbe\n[  426.080729] ===raw_msoc:190\n[  426.080904] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  426.080914] FG: calculate_average_current: current_now_ma=325195 averaged_iavg_ma=325011\n[  426.080928] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:325195, smooth_low_batt_soc:0, smooth_soc: 0\n[  426.080936] FG: soc_monitor_work: soc:78, raw_soc:78, c:325195, s:2\n[  436.320364] raw: 0xbe\n[  436.320385] raw: 0xbe\n[  436.320391] ===raw_msoc:190\n[  436.320666] raw: 0xbe\n[  436.320686] raw: 0xbe\n[  436.320691] ===raw_msoc:190\n[  436.320867] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  436.320876] FG: calculate_average_current: current_now_ma=324706 averaged_iavg_ma=325072\n[  436.320889] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:324706, smooth_low_batt_soc:0, smooth_soc: 0\n[  436.320898] FG: soc_monitor_work: soc:78, raw_soc:78, c:324706, s:2\n[  446.560365] raw: 0xbe\n[  446.560385] raw: 0xbe\n[  446.560391] ===raw_msoc:190\n[  446.560653] raw: 0xbe\n[  446.560673] raw: 0xbe\n[  446.560679] ===raw_msoc:190\n[  446.560854] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  446.560863] FG: calculate_average_current: current_now_ma=324706 averaged_iavg_ma=325072\n[  446.560876] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:324706, smooth_low_batt_soc:0, smooth_soc: 0\n[  446.560885] FG: soc_monitor_work: soc:78, raw_soc:78, c:324706, s:2\n[  456.800408] raw: 0xbe\n[  456.800428] raw: 0xbe\n[  456.800434] ===raw_msoc:190\n[  456.800707] raw: 0xbe\n[  456.800727] raw: 0xbe\n[  456.800733] ===raw_msoc:190\n[  456.800907] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  456.800916] FG: calculate_average_current: current_now_ma=324706 averaged_iavg_ma=325072\n[  456.800930] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:324706, smooth_low_batt_soc:0, smooth_soc: 0\n[  456.800938] FG: soc_monitor_work: soc:78, raw_soc:78, c:324706, s:2\n[  467.040369] raw: 0xbe\n[  467.040389] raw: 0xbe\n[  467.040395] ===raw_msoc:190\n[  467.040667] raw: 0xbe\n[  467.040687] raw: 0xbe\n[  467.040693] ===raw_msoc:190\n[  467.040869] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  467.040878] FG: calculate_average_current: current_now_ma=325195 averaged_iavg_ma=325134\n[  467.040892] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:325195, smooth_low_batt_soc:0, smooth_soc: 0\n[  467.040901] FG: soc_monitor_work: soc:78, raw_soc:78, c:325195, s:2\n[  477.280402] raw: 0xbe\n[  477.280422] raw: 0xbe\n[  477.280428] ===raw_msoc:190\n[  477.280688] raw: 0xbe\n[  477.280708] raw: 0xbe\n[  477.280714] ===raw_msoc:190\n[  477.280888] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  477.280897] FG: calculate_average_current: current_now_ma=325195 averaged_iavg_ma=325134\n[  477.280911] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:325195, smooth_low_batt_soc:0, smooth_soc: 0\n[  477.280920] FG: soc_monitor_work: soc:78, raw_soc:78, c:325195, s:2\n[  487.520400] raw: 0xbe\n[  487.520421] raw: 0xbe\n[  487.520427] ===raw_msoc:190\n[  487.520699] raw: 0xbe\n[  487.520718] raw: 0xbe\n[  487.520724] ===raw_msoc:190\n[  487.520898] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  487.520908] FG: calculate_average_current: current_now_ma=326171 averaged_iavg_ma=325134\n[  487.520922] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:326171, smooth_low_batt_soc:0, smooth_soc: 0\n[  487.520930] FG: soc_monitor_work: soc:78, raw_soc:78, c:326171, s:2\n[  488.690528]  1497     3.7 C/MHz     49 mW    8.2 J   30.4 I/mJ   167.0 s\n                518: \n[  497.760317] raw: 0xbe\n[  497.760335] raw: 0xbe\n[  497.760340] ===raw_msoc:190\n[  497.760577] raw: 0xbe\n[  497.760595] raw: 0xbe\n[  497.760599] ===raw_msoc:190\n[  497.760759] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  497.760767] FG: calculate_average_current: current_now_ma=325195 averaged_iavg_ma=325195\n[  497.760777] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:325195, smooth_low_batt_soc:0, smooth_soc: 0\n[  497.760784] FG: soc_monitor_work: soc:78, raw_soc:78, c:325195, s:2\n[  503.193169] raw: 0xbe\n[  503.204942] esr_charging_timer set to 0/7\n[  503.206069] esr_discharging_timer set to 0/7\n[  503.208177] FG: esr_calib_work: esr_raw: 0xd2 esr_char_raw: 0xc3 esr_meas_diff: 0xf esr_delta: 0x61\n[  503.208185] FG: esr_calib_work: fg_esr_meas_diff: 0xc esr_filt: 0x3 esr_delta_new: 0xc1\n[  503.208571] FG: fg_gen4_esr_fast_calib_config: Enabling ESR fast calibration\n[  503.208904] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4107 Vbatt avg=4107 Vbatt res=707\n[  503.208922] raw: 0xbe\n[  503.208939] raw: 0xbe\n[  503.208943] ===raw_msoc:190\n[  503.208950] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 326171\n[  503.210700] FG: esr_calib_work: Wrote ESR delta [0xc1 0x0]\n[  503.211668] raw: 0xbe\n[  503.211685] raw: 0xbe\n[  503.211690] ===raw_msoc:190\n[  503.212952] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 330 FCC = 6000000uA FV = 4480000uV\n[  503.212959] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[  503.212974] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 330 max voltage= 4480000uv FV = 4480000uV\n[  503.213229] raw: 0xbe\n[  503.213247] raw: 0xbe\n[  503.213251] ===raw_msoc:190\n[  503.214635] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 2f0be0dd\n[  503.214679] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[  503.215021] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4107 Vbatt avg=4107 Vbatt res=707\n[  503.215039] raw: 0xbe\n[  503.215056] raw: 0xbe\n[  503.215060] ===raw_msoc:190\n[  503.215067] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 326171\n[  503.215074] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[  508.000314] raw: 0xbe\n[  508.000332] raw: 0xbe\n[  508.000337] ===raw_msoc:190\n[  508.000564] raw: 0xbe\n[  508.000581] raw: 0xbe\n[  508.000586] ===raw_msoc:190\n[  508.000745] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  508.000752] FG: calculate_average_current: current_now_ma=326171 averaged_iavg_ma=325195\n[  508.000763] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:326171, smooth_low_batt_soc:0, smooth_soc: 0\n[  508.000769] FG: soc_monitor_work: soc:78, raw_soc:78, c:326171, s:2\n[  518.240316] raw: 0xbe\n[  518.240334] raw: 0xbe\n[  518.240339] ===raw_msoc:190\n[  518.240575] raw: 0xbe\n[  518.240592] raw: 0xbe\n[  518.240597] ===raw_msoc:190\n[  518.240755] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  518.240763] FG: calculate_average_current: current_now_ma=327148 averaged_iavg_ma=325561\n[  518.240773] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:327148, smooth_low_batt_soc:0, smooth_soc: 0\n[  518.240780] FG: soc_monitor_work: soc:78, raw_soc:78, c:327148, s:2\n[  528.480342] raw: 0xbe\n[  528.480360] raw: 0xbe\n[  528.480365] ===raw_msoc:190\n[  528.480601] raw: 0xbe\n[  528.480618] raw: 0xbe\n[  528.480623] ===raw_msoc:190\n[  528.480782] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  528.480790] FG: calculate_average_current: current_now_ma=420898 averaged_iavg_ma=337585\n[  528.480800] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:420898, smooth_low_batt_soc:0, smooth_soc: 0\n[  528.480807] FG: soc_monitor_work: soc:78, raw_soc:78, c:420898, s:2\n[  538.720316] raw: 0xbe\n[  538.720333] raw: 0xbe\n[  538.720338] ===raw_msoc:190\n[  538.720563] raw: 0xbe\n[  538.720581] raw: 0xbe\n[  538.720585] ===raw_msoc:190\n[  538.720744] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  538.720751] FG: calculate_average_current: current_now_ma=326659 averaged_iavg_ma=337768\n[  538.720762] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:326659, smooth_low_batt_soc:0, smooth_soc: 0\n[  538.720768] FG: soc_monitor_work: soc:78, raw_soc:78, c:326659, s:2\n[  544.447470] FG: esr_calib_work: esr_raw: 0xda esr_char_raw: 0xc3 esr_meas_diff: 0x17 esr_delta: 0xce\n[  544.447478] FG: esr_calib_work: fg_esr_meas_diff: 0x11 esr_filt: 0x4 esr_delta_new: 0x14e\n[  544.448030] FG: esr_calib_work: Wrote ESR delta [0x4e 0x1]\n[  548.960316] raw: 0xbe\n[  548.960334] raw: 0xbe\n[  548.960339] ===raw_msoc:190\n[  548.960575] raw: 0xbe\n[  548.960593] raw: 0xbe\n[  548.960597] ===raw_msoc:190\n[  548.960757] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  548.960764] FG: calculate_average_current: current_now_ma=324706 averaged_iavg_ma=337768\n[  548.960775] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:324706, smooth_low_batt_soc:0, smooth_soc: 0\n[  548.960782] FG: soc_monitor_work: soc:78, raw_soc:78, c:324706, s:2\n[  559.200314] raw: 0xbe\n[  559.200332] raw: 0xbe\n[  559.200336] ===raw_msoc:190\n[  559.200573] raw: 0xbe\n[  559.200591] raw: 0xbe\n[  559.200595] ===raw_msoc:190\n[  559.200754] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  559.200762] FG: calculate_average_current: current_now_ma=327148 averaged_iavg_ma=338012\n[  559.200772] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:327148, smooth_low_batt_soc:0, smooth_soc: 0\n[  559.200779] FG: soc_monitor_work: soc:78, raw_soc:78, c:327148, s:2\n[  569.440314] raw: 0xbe\n[  569.440332] raw: 0xbe\n[  569.440337] ===raw_msoc:190\n[  569.440563] raw: 0xbe\n[  569.440581] raw: 0xbe\n[  569.440586] ===raw_msoc:190\n[  569.440744] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  569.440752] FG: calculate_average_current: current_now_ma=326171 averaged_iavg_ma=338012\n[  569.440762] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:326171, smooth_low_batt_soc:0, smooth_soc: 0\n[  569.440769] FG: soc_monitor_work: soc:78, raw_soc:78, c:326171, s:2\n[  579.680344] raw: 0xbe\n[  579.680363] raw: 0xbe\n[  579.680367] ===raw_msoc:190\n[  579.680604] raw: 0xbe\n[  579.680622] raw: 0xbe\n[  579.680626] ===raw_msoc:190\n[  579.680785] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  579.680792] FG: calculate_average_current: current_now_ma=324706 averaged_iavg_ma=337951\n[  579.680803] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:324706, smooth_low_batt_soc:0, smooth_soc: 0\n[  579.680810] FG: soc_monitor_work: soc:78, raw_soc:78, c:324706, s:2\n[  589.920346] raw: 0xbe\n[  589.920365] raw: 0xbe\n[  589.920369] ===raw_msoc:190\n[  589.920605] raw: 0xbe\n[  589.920623] raw: 0xbe\n[  589.920627] ===raw_msoc:190\n[  589.920785] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  589.920792] FG: calculate_average_current: current_now_ma=327636 averaged_iavg_ma=338134\n[  589.920803] FG: fg_battery_soc_smooth_tracking: soc:78, last_soc:78, raw_soc:78, soc_changed:1, batt_ma:327636, smooth_low_batt_soc:0, smooth_soc: 0\n[  589.920810] FG: soc_monitor_work: soc:78, raw_soc:78, c:327636, s:2\n[  600.160314] raw: 0xbd\n[  600.160332] raw: 0xbd\n[  600.160337] ===raw_msoc:189\n[  600.160564] raw: 0xbd\n[  600.160582] raw: 0xbd\n[  600.160586] ===raw_msoc:189\n[  600.160745] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  600.160752] FG: calculate_average_current: current_now_ma=326171 averaged_iavg_ma=338012\n[  600.160765] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:326171, smooth_low_batt_soc:0, smooth_soc: 0\n[  600.160772] FG: soc_monitor_work: soc:77, raw_soc:77, c:326171, s:2\n[  600.163286] raw: 0xbd\n[  600.163543] raw: 0xbd\n[  600.163548] ===raw_msoc:189\n[  600.163987] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 2ee978d4\n[  600.164030] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[  600.164372] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4105 Vbatt avg=4105 Vbatt res=705\n[  600.164390] raw: 0xbd\n[  600.164407] raw: 0xbd\n[  600.164411] ===raw_msoc:189\n[  600.164418] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 326171\n[  600.164425] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[  600.165555] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 330 FCC = 6000000uA FV = 4480000uV\n[  600.165562] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[  600.165577] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 330 max voltage= 4480000uv FV = 4480000uV\n[  600.165733] raw: 0xbd\n[  600.165751] raw: 0xbd\n[  600.165755] ===raw_msoc:189\n[  608.208694] FG: fg_esr_fast_cal_timer: ESR fast calibration timer expired\n[  608.209317] esr_charging_timer set to 0/96\n[  608.209871] esr_discharging_timer set to 0/96\n[  608.211510] FG: fg_gen4_esr_fast_calib_config: Disabling ESR fast calibration\n[  610.400317] raw: 0xbd\n[  610.400335] raw: 0xbd\n[  610.400340] ===raw_msoc:189\n[  610.400576] raw: 0xbd\n[  610.400593] raw: 0xbd\n[  610.400598] ===raw_msoc:189\n[  610.400756] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  610.400764] FG: calculate_average_current: current_now_ma=327148 averaged_iavg_ma=326293\n[  610.400774] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:0, batt_ma:327148, smooth_low_batt_soc:0, smooth_soc: 0\n[  610.400781] FG: soc_monitor_work: soc:77, raw_soc:77, c:327148, s:2\n[  620.640339] raw: 0xbd\n[  620.640357] raw: 0xbd\n[  620.640362] ===raw_msoc:189\n[  620.640597] raw: 0xbd\n[  620.640615] raw: 0xbd\n[  620.640620] ===raw_msoc:189\n[  620.640777] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  620.640785] FG: calculate_average_current: current_now_ma=327148 averaged_iavg_ma=326293\n[  620.640795] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:0, batt_ma:327148, smooth_low_batt_soc:0, smooth_soc: 0\n[  620.640802] FG: soc_monitor_work: soc:77, raw_soc:77, c:327148, s:2\n[  627.083491]  1925     3.7 C/MHz     76 mW    9.8 J   25.4 I/mJ   129.9 s\n                614: \n[  630.880369] raw: 0xbd\n[  630.880386] raw: 0xbd\n[  630.880390] ===raw_msoc:189\n[  630.880596] raw: 0xbd\n[  630.880613] raw: 0xbd\n[  630.880617] ===raw_msoc:189\n[  630.880768] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  630.880774] FG: calculate_average_current: current_now_ma=318359 averaged_iavg_ma=325256\n[  630.880783] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:0, batt_ma:318359, smooth_low_batt_soc:0, smooth_soc: 0\n[  630.880789] FG: soc_monitor_work: soc:77, raw_soc:77, c:318359, s:2\n[  641.120288] raw: 0xbd\n[  641.120305] raw: 0xbd\n[  641.120309] ===raw_msoc:189\n[  641.120526] raw: 0xbd\n[  641.120543] raw: 0xbd\n[  641.120547] ===raw_msoc:189\n[  641.120698] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  641.120705] FG: calculate_average_current: current_now_ma=328613 averaged_iavg_ma=325744\n[  641.120713] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:0, batt_ma:328613, smooth_low_batt_soc:0, smooth_soc: 0\n[  641.120719] FG: soc_monitor_work: soc:77, raw_soc:77, c:328613, s:2\n[  651.360287] raw: 0xbd\n[  651.360303] raw: 0xbd\n[  651.360307] ===raw_msoc:189\n[  651.360523] raw: 0xbd\n[  651.360540] raw: 0xbd\n[  651.360544] ===raw_msoc:189\n[  651.360695] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  651.360701] FG: calculate_average_current: current_now_ma=327148 averaged_iavg_ma=325744\n[  651.360710] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:0, batt_ma:327148, smooth_low_batt_soc:0, smooth_soc: 0\n[  651.360716] FG: soc_monitor_work: soc:77, raw_soc:77, c:327148, s:2\n[  661.600288] raw: 0xbd\n[  661.600305] raw: 0xbd\n[  661.600309] ===raw_msoc:189\n[  661.600517] raw: 0xbd\n[  661.600533] raw: 0xbd\n[  661.600537] ===raw_msoc:189\n[  661.600689] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  661.600695] FG: calculate_average_current: current_now_ma=327636 averaged_iavg_ma=325927\n[  661.600704] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:327636, smooth_low_batt_soc:0, smooth_soc: 0\n[  661.600709] FG: soc_monitor_work: soc:77, raw_soc:77, c:327636, s:2\n[  671.840289] raw: 0xbd\n[  671.840306] raw: 0xbd\n[  671.840309] ===raw_msoc:189\n[  671.840529] raw: 0xbd\n[  671.840546] raw: 0xbd\n[  671.840549] ===raw_msoc:189\n[  671.840701] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  671.840706] FG: calculate_average_current: current_now_ma=327636 averaged_iavg_ma=325927\n[  671.840715] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:327636, smooth_low_batt_soc:0, smooth_soc: 0\n[  671.840721] FG: soc_monitor_work: soc:77, raw_soc:77, c:327636, s:2\n[  682.080315] raw: 0xbd\n[  682.080332] raw: 0xbd\n[  682.080336] ===raw_msoc:189\n[  682.080553] raw: 0xbd\n[  682.080569] raw: 0xbd\n[  682.080573] ===raw_msoc:189\n[  682.080724] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  682.080731] FG: calculate_average_current: current_now_ma=326659 averaged_iavg_ma=326171\n[  682.080739] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:326659, smooth_low_batt_soc:0, smooth_soc: 0\n[  682.080745] FG: soc_monitor_work: soc:77, raw_soc:77, c:326659, s:2\n[  692.320244] raw: 0xbd\n[  692.320261] raw: 0xbd\n[  692.320265] ===raw_msoc:189\n[  692.320471] raw: 0xbd\n[  692.320488] raw: 0xbd\n[  692.320492] ===raw_msoc:189\n[  692.320642] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  692.320649] FG: calculate_average_current: current_now_ma=327148 averaged_iavg_ma=326110\n[  692.320658] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:327148, smooth_low_batt_soc:0, smooth_soc: 0\n[  692.320663] FG: soc_monitor_work: soc:77, raw_soc:77, c:327148, s:2\n[  702.560289] raw: 0xbd\n[  702.560306] raw: 0xbd\n[  702.560310] ===raw_msoc:189\n[  702.560525] raw: 0xbd\n[  702.560542] raw: 0xbd\n[  702.560546] ===raw_msoc:189\n[  702.560697] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  702.560703] FG: calculate_average_current: current_now_ma=327148 averaged_iavg_ma=326110\n[  702.560711] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:327148, smooth_low_batt_soc:0, smooth_soc: 0\n[  702.560717] FG: soc_monitor_work: soc:77, raw_soc:77, c:327148, s:2\n[  712.800287] raw: 0xbd\n[  712.800304] raw: 0xbd\n[  712.800308] ===raw_msoc:189\n[  712.800524] raw: 0xbd\n[  712.800541] raw: 0xbd\n[  712.800545] ===raw_msoc:189\n[  712.800696] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  712.800702] FG: calculate_average_current: current_now_ma=327636 averaged_iavg_ma=326293\n[  712.800711] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:327636, smooth_low_batt_soc:0, smooth_soc: 0\n[  712.800717] FG: soc_monitor_work: soc:77, raw_soc:77, c:327636, s:2\n[  723.040317] raw: 0xbd\n[  723.040334] raw: 0xbd\n[  723.040337] ===raw_msoc:189\n[  723.040545] raw: 0xbd\n[  723.040561] raw: 0xbd\n[  723.040565] ===raw_msoc:189\n[  723.040716] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  723.040722] FG: calculate_average_current: current_now_ma=327636 averaged_iavg_ma=326293\n[  723.040731] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:327636, smooth_low_batt_soc:0, smooth_soc: 0\n[  723.040736] FG: soc_monitor_work: soc:77, raw_soc:77, c:327636, s:2\n[  733.280322] raw: 0xbd\n[  733.280339] raw: 0xbd\n[  733.280344] ===raw_msoc:189\n[  733.280559] raw: 0xbd\n[  733.280576] raw: 0xbd\n[  733.280580] ===raw_msoc:189\n[  733.280732] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  733.280738] FG: calculate_average_current: current_now_ma=330077 averaged_iavg_ma=326660\n[  733.280747] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:330077, smooth_low_batt_soc:0, smooth_soc: 0\n[  733.280752] FG: soc_monitor_work: soc:77, raw_soc:77, c:330077, s:2\n[  738.599294] raw: 0xbd\n[  738.610822] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4102 Vbatt avg=4102 Vbatt res=702\n[  738.610839] raw: 0xbd\n[  738.610855] raw: 0xbd\n[  738.610859] ===raw_msoc:189\n[  738.610865] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 326659\n[  738.613241] raw: 0xbd\n[  738.613482] raw: 0xbd\n[  738.613486] ===raw_msoc:189\n[  738.613915] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 2ebedfa3\n[  738.613955] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[  738.614285] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4102 Vbatt avg=4102 Vbatt res=702\n[  738.614302] raw: 0xbd\n[  738.614318] raw: 0xbd\n[  738.614322] ===raw_msoc:189\n[  738.614327] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 326659\n[  738.614333] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[  738.615360] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 332 FCC = 6000000uA FV = 4480000uV\n[  738.615366] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[  738.615379] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 332 max voltage= 4480000uv FV = 4480000uV\n[  738.615517] raw: 0xbd\n[  738.615533] raw: 0xbd\n[  738.615537] ===raw_msoc:189\n[  743.520287] raw: 0xbd\n[  743.520304] raw: 0xbd\n[  743.520308] ===raw_msoc:189\n[  743.520524] raw: 0xbd\n[  743.520541] raw: 0xbd\n[  743.520545] ===raw_msoc:189\n[  743.520696] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  743.520702] FG: calculate_average_current: current_now_ma=327636 averaged_iavg_ma=327819\n[  743.520711] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:327636, smooth_low_batt_soc:0, smooth_soc: 0\n[  743.520717] FG: soc_monitor_work: soc:77, raw_soc:77, c:327636, s:2\n[  745.428527]  2281     3.7 C/MHz     44 mW    4.8 J   51.9 I/mJ   109.6 s\n                691: \n[  753.760291] raw: 0xbd\n[  753.760308] raw: 0xbd\n[  753.760311] ===raw_msoc:189\n[  753.760507] raw: 0xbd\n[  753.760523] raw: 0xbd\n[  753.760526] ===raw_msoc:189\n[  753.760673] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  753.760679] FG: calculate_average_current: current_now_ma=324706 averaged_iavg_ma=327331\n[  753.760686] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:324706, smooth_low_batt_soc:0, smooth_soc: 0\n[  753.760691] FG: soc_monitor_work: soc:77, raw_soc:77, c:324706, s:2\n[  764.000272] raw: 0xbd\n[  764.000288] raw: 0xbd\n[  764.000292] ===raw_msoc:189\n[  764.000497] raw: 0xbd\n[  764.000513] raw: 0xbd\n[  764.000516] ===raw_msoc:189\n[  764.000663] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  764.000668] FG: calculate_average_current: current_now_ma=329589 averaged_iavg_ma=327636\n[  764.000676] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:329589, smooth_low_batt_soc:0, smooth_soc: 0\n[  764.000681] FG: soc_monitor_work: soc:77, raw_soc:77, c:329589, s:2\n[  774.240270] raw: 0xbd\n[  774.240287] raw: 0xbd\n[  774.240290] ===raw_msoc:189\n[  774.240495] raw: 0xbd\n[  774.240510] raw: 0xbd\n[  774.240514] ===raw_msoc:189\n[  774.240661] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  774.240666] FG: calculate_average_current: current_now_ma=330077 averaged_iavg_ma=327941\n[  774.240674] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:330077, smooth_low_batt_soc:0, smooth_soc: 0\n[  774.240679] FG: soc_monitor_work: soc:77, raw_soc:77, c:330077, s:2\n[  784.480292] raw: 0xbd\n[  784.480309] raw: 0xbd\n[  784.480312] ===raw_msoc:189\n[  784.480508] raw: 0xbd\n[  784.480524] raw: 0xbd\n[  784.480528] ===raw_msoc:189\n[  784.480674] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  784.480680] FG: calculate_average_current: current_now_ma=328613 averaged_iavg_ma=328185\n[  784.480688] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:328613, smooth_low_batt_soc:0, smooth_soc: 0\n[  784.480693] FG: soc_monitor_work: soc:77, raw_soc:77, c:328613, s:2\n[  794.720272] raw: 0xbc\n[  794.720288] raw: 0xbc\n[  794.720292] ===raw_msoc:188\n[  794.720496] raw: 0xbc\n[  794.720512] raw: 0xbc\n[  794.720516] ===raw_msoc:188\n[  794.720662] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  794.720668] FG: calculate_average_current: current_now_ma=327636 averaged_iavg_ma=328246\n[  794.720675] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:327636, smooth_low_batt_soc:0, smooth_soc: 0\n[  794.720680] FG: soc_monitor_work: soc:77, raw_soc:77, c:327636, s:2\n[  804.960270] raw: 0xbc\n[  804.960286] raw: 0xbc\n[  804.960290] ===raw_msoc:188\n[  804.960495] raw: 0xbc\n[  804.960511] raw: 0xbc\n[  804.960514] ===raw_msoc:188\n[  804.960661] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  804.960666] FG: calculate_average_current: current_now_ma=328613 averaged_iavg_ma=328368\n[  804.960674] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:328613, smooth_low_batt_soc:0, smooth_soc: 0\n[  804.960679] FG: soc_monitor_work: soc:77, raw_soc:77, c:328613, s:2\n[  815.200270] raw: 0xbc\n[  815.200286] raw: 0xbc\n[  815.200290] ===raw_msoc:188\n[  815.200487] raw: 0xbc\n[  815.200503] raw: 0xbc\n[  815.200506] ===raw_msoc:188\n[  815.200652] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  815.200658] FG: calculate_average_current: current_now_ma=330566 averaged_iavg_ma=328430\n[  815.200665] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:330566, smooth_low_batt_soc:0, smooth_soc: 0\n[  815.200670] FG: soc_monitor_work: soc:77, raw_soc:77, c:330566, s:2\n[  825.440272] raw: 0xbc\n[  825.440289] raw: 0xbc\n[  825.440292] ===raw_msoc:188\n[  825.440496] raw: 0xbc\n[  825.440512] raw: 0xbc\n[  825.440516] ===raw_msoc:188\n[  825.440663] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  825.440668] FG: calculate_average_current: current_now_ma=327148 averaged_iavg_ma=328369\n[  825.440676] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:327148, smooth_low_batt_soc:0, smooth_soc: 0\n[  825.440681] FG: soc_monitor_work: soc:77, raw_soc:77, c:327148, s:2\n[  835.680292] raw: 0xbc\n[  835.680308] raw: 0xbc\n[  835.680312] ===raw_msoc:188\n[  835.680517] raw: 0xbc\n[  835.680533] raw: 0xbc\n[  835.680536] ===raw_msoc:188\n[  835.680683] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  835.680689] FG: calculate_average_current: current_now_ma=329589 averaged_iavg_ma=328979\n[  835.680696] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:329589, smooth_low_batt_soc:0, smooth_soc: 0\n[  835.680701] FG: soc_monitor_work: soc:77, raw_soc:77, c:329589, s:2\n[  845.920270] raw: 0xbc\n[  845.920286] raw: 0xbc\n[  845.920289] ===raw_msoc:188\n[  845.920485] raw: 0xbc\n[  845.920501] raw: 0xbc\n[  845.920505] ===raw_msoc:188\n[  845.920651] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  845.920657] FG: calculate_average_current: current_now_ma=328613 averaged_iavg_ma=328857\n[  845.920665] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:328613, smooth_low_batt_soc:0, smooth_soc: 0\n[  845.920670] FG: soc_monitor_work: soc:77, raw_soc:77, c:328613, s:2\n[  851.733288]  2567     3.7 C/MHz     49 mW    4.8 J   52.4 I/mJ    97.4 s\n                787: \n[  856.160337] raw: 0xbc\n[  856.160353] raw: 0xbc\n[  856.160356] ===raw_msoc:188\n[  856.160550] raw: 0xbc\n[  856.160565] raw: 0xbc\n[  856.160568] ===raw_msoc:188\n[  856.160710] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  856.160715] FG: calculate_average_current: current_now_ma=321288 averaged_iavg_ma=327758\n[  856.160722] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:321288, smooth_low_batt_soc:0, smooth_soc: 0\n[  856.160726] FG: soc_monitor_work: soc:77, raw_soc:77, c:321288, s:2\n[  866.400254] raw: 0xbc\n[  866.400270] raw: 0xbc\n[  866.400273] ===raw_msoc:188\n[  866.400466] raw: 0xbc\n[  866.400481] raw: 0xbc\n[  866.400484] ===raw_msoc:188\n[  866.400626] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  866.400631] FG: calculate_average_current: current_now_ma=330077 averaged_iavg_ma=327941\n[  866.400638] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:330077, smooth_low_batt_soc:0, smooth_soc: 0\n[  866.400643] FG: soc_monitor_work: soc:77, raw_soc:77, c:330077, s:2\n[  876.640253] raw: 0xbc\n[  876.640269] raw: 0xbc\n[  876.640272] ===raw_msoc:188\n[  876.640457] raw: 0xbc\n[  876.640473] raw: 0xbc\n[  876.640476] ===raw_msoc:188\n[  876.640618] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  876.640623] FG: calculate_average_current: current_now_ma=329101 averaged_iavg_ma=328124\n[  876.640630] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:329101, smooth_low_batt_soc:0, smooth_soc: 0\n[  876.640634] FG: soc_monitor_work: soc:77, raw_soc:77, c:329101, s:2\n[  886.880291] raw: 0xbc\n[  886.880307] raw: 0xbc\n[  886.880310] ===raw_msoc:188\n[  886.880503] raw: 0xbc\n[  886.880519] raw: 0xbc\n[  886.880521] ===raw_msoc:188\n[  886.880664] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  886.880669] FG: calculate_average_current: current_now_ma=330077 averaged_iavg_ma=328307\n[  886.880675] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:330077, smooth_low_batt_soc:0, smooth_soc: 0\n[  886.880680] FG: soc_monitor_work: soc:77, raw_soc:77, c:330077, s:2\n[  897.120254] raw: 0xbc\n[  897.120270] raw: 0xbc\n[  897.120273] ===raw_msoc:188\n[  897.120466] raw: 0xbc\n[  897.120481] raw: 0xbc\n[  897.120484] ===raw_msoc:188\n[  897.120627] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  897.120632] FG: calculate_average_current: current_now_ma=331542 averaged_iavg_ma=328429\n[  897.120639] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:331542, smooth_low_batt_soc:0, smooth_soc: 0\n[  897.120643] FG: soc_monitor_work: soc:77, raw_soc:77, c:331542, s:2\n[  907.360254] raw: 0xbc\n[  907.360269] raw: 0xbc\n[  907.360273] ===raw_msoc:188\n[  907.360458] raw: 0xbc\n[  907.360474] raw: 0xbc\n[  907.360476] ===raw_msoc:188\n[  907.360619] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  907.360624] FG: calculate_average_current: current_now_ma=331054 averaged_iavg_ma=328918\n[  907.360630] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:331054, smooth_low_batt_soc:0, smooth_soc: 0\n[  907.360635] FG: soc_monitor_work: soc:77, raw_soc:77, c:331054, s:2\n[  917.600255] raw: 0xbc\n[  917.600271] raw: 0xbc\n[  917.600274] ===raw_msoc:188\n[  917.600466] raw: 0xbc\n[  917.600481] raw: 0xbc\n[  917.600484] ===raw_msoc:188\n[  917.600626] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  917.600631] FG: calculate_average_current: current_now_ma=331054 averaged_iavg_ma=328918\n[  917.600638] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:331054, smooth_low_batt_soc:0, smooth_soc: 0\n[  917.600642] FG: soc_monitor_work: soc:77, raw_soc:77, c:331054, s:2\n[  927.840254] raw: 0xbc\n[  927.840269] raw: 0xbc\n[  927.840272] ===raw_msoc:188\n[  927.840465] raw: 0xbc\n[  927.840480] raw: 0xbc\n[  927.840483] ===raw_msoc:188\n[  927.840626] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  927.840631] FG: calculate_average_current: current_now_ma=329589 averaged_iavg_ma=328918\n[  927.840638] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:329589, smooth_low_batt_soc:0, smooth_soc: 0\n[  927.840642] FG: soc_monitor_work: soc:77, raw_soc:77, c:329589, s:2\n[  938.080275] raw: 0xbc\n[  938.080291] raw: 0xbc\n[  938.080294] ===raw_msoc:188\n[  938.080479] raw: 0xbc\n[  938.080494] raw: 0xbc\n[  938.080497] ===raw_msoc:188\n[  938.080640] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  938.080645] FG: calculate_average_current: current_now_ma=330566 averaged_iavg_ma=329162\n[  938.080652] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:330566, smooth_low_batt_soc:0, smooth_soc: 0\n[  938.080656] FG: soc_monitor_work: soc:77, raw_soc:77, c:330566, s:2\n[  946.008260]  2923     3.7 C/MHz     53 mW    4.5 J   55.4 I/mJ    85.5 s\n                883: \n[  948.320303] raw: 0xbc\n[  948.320318] raw: 0xbc\n[  948.320322] ===raw_msoc:188\n[  948.320506] raw: 0xbc\n[  948.320521] raw: 0xbc\n[  948.320523] ===raw_msoc:188\n[  948.320662] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  948.320666] FG: calculate_average_current: current_now_ma=320312 averaged_iavg_ma=329040\n[  948.320673] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:320312, smooth_low_batt_soc:0, smooth_soc: 0\n[  948.320676] FG: soc_monitor_work: soc:77, raw_soc:77, c:320312, s:2\n[  958.560241] raw: 0xbc\n[  958.560256] raw: 0xbc\n[  958.560259] ===raw_msoc:188\n[  958.560443] raw: 0xbc\n[  958.560458] raw: 0xbc\n[  958.560461] ===raw_msoc:188\n[  958.560599] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  958.560604] FG: calculate_average_current: current_now_ma=333495 averaged_iavg_ma=329467\n[  958.560610] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:333495, smooth_low_batt_soc:0, smooth_soc: 0\n[  958.560614] FG: soc_monitor_work: soc:77, raw_soc:77, c:333495, s:2\n[  968.800242] raw: 0xbc\n[  968.800258] raw: 0xbc\n[  968.800260] ===raw_msoc:188\n[  968.800438] raw: 0xbc\n[  968.800453] raw: 0xbc\n[  968.800456] ===raw_msoc:188\n[  968.800595] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  968.800599] FG: calculate_average_current: current_now_ma=331054 averaged_iavg_ma=329711\n[  968.800605] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:331054, smooth_low_batt_soc:0, smooth_soc: 0\n[  968.800609] FG: soc_monitor_work: soc:77, raw_soc:77, c:331054, s:2\n[  979.040244] raw: 0xbc\n[  979.040259] raw: 0xbc\n[  979.040262] ===raw_msoc:188\n[  979.040447] raw: 0xbc\n[  979.040462] raw: 0xbc\n[  979.040464] ===raw_msoc:188\n[  979.040603] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  979.040607] FG: calculate_average_current: current_now_ma=332031 averaged_iavg_ma=329955\n[  979.040613] FG: fg_battery_soc_smooth_tracking: soc:77, last_soc:77, raw_soc:77, soc_changed:1, batt_ma:332031, smooth_low_batt_soc:0, smooth_soc: 0\n[  979.040617] FG: soc_monitor_work: soc:77, raw_soc:77, c:332031, s:2\n[  987.040167] raw: 0xbb\n[  987.051439] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4097 Vbatt avg=4097 Vbatt res=697\n[  987.051454] raw: 0xbb\n[  987.051468] raw: 0xbb\n[  987.051471] ===raw_msoc:187\n[  987.051475] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 333495\n[  987.053489] raw: 0xbb\n[  987.053505] raw: 0xbb\n[  987.053508] ===raw_msoc:187\n[  987.055159] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 2e71de68\n[  987.055194] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[  987.055342] raw: 0xbb\n[  987.055463] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 332 FCC = 6000000uA FV = 4480000uV\n[  987.055467] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[  987.055476] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 332 max voltage= 4480000uv FV = 4480000uV\n[  987.055624] raw: 0xbb\n[  987.055627] ===raw_msoc:187\n[  987.055802] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4097 Vbatt avg=4097 Vbatt res=697\n[  987.055817] raw: 0xbb\n[  987.055831] raw: 0xbb\n[  987.055834] ===raw_msoc:187\n[  987.055838] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 333495\n[  987.055842] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[  989.280288] raw: 0xbb\n[  989.280303] raw: 0xbb\n[  989.280306] ===raw_msoc:187\n[  989.280569] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  989.280574] FG: calculate_average_current: current_now_ma=331054 averaged_iavg_ma=329894\n[  989.280582] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:331054, smooth_low_batt_soc:0, smooth_soc: 0\n[  989.280586] FG: soc_monitor_work: soc:76, raw_soc:76, c:331054, s:2\n[  989.280599] raw: 0xbb\n[  989.280614] raw: 0xbb\n[  989.280616] ===raw_msoc:187\n[  989.282825] raw: 0xbb\n[  989.282841] raw: 0xbb\n[  989.282843] ===raw_msoc:187\n[  989.283453] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 2e71de68\n[  989.283487] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[  989.283779] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4097 Vbatt avg=4097 Vbatt res=697\n[  989.283794] raw: 0xbb\n[  989.283809] raw: 0xbb\n[  989.283811] ===raw_msoc:187\n[  989.283815] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 331054\n[  989.283819] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[  989.284331] raw: 0xbb\n[  989.284346] raw: 0xbb\n[  989.284349] ===raw_msoc:187\n[  999.520218] raw: 0xbb\n[  999.520233] raw: 0xbb\n[  999.520236] ===raw_msoc:187\n[  999.520349] raw: 0xbb\n[  999.520364] raw: 0xbb\n[  999.520366] ===raw_msoc:187\n[  999.520618] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[  999.520622] FG: calculate_average_current: current_now_ma=332519 averaged_iavg_ma=330078\n[  999.520629] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:0, batt_ma:332519, smooth_low_batt_soc:0, smooth_soc: 0\n[  999.520633] FG: soc_monitor_work: soc:76, raw_soc:76, c:332519, s:2\n[ 1009.760243] raw: 0xbb\n[ 1009.760259] raw: 0xbb\n[ 1009.760261] ===raw_msoc:187\n[ 1009.760445] raw: 0xbb\n[ 1009.760460] raw: 0xbb\n[ 1009.760463] ===raw_msoc:187\n[ 1009.760601] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1009.760606] FG: calculate_average_current: current_now_ma=330077 averaged_iavg_ma=330139\n[ 1009.760612] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:0, batt_ma:330077, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1009.760616] FG: soc_monitor_work: soc:76, raw_soc:76, c:330077, s:2\n[ 1020.000257] raw: 0xbb\n[ 1020.000272] raw: 0xbb\n[ 1020.000275] ===raw_msoc:187\n[ 1020.000459] raw: 0xbb\n[ 1020.000474] raw: 0xbb\n[ 1020.000477] ===raw_msoc:187\n[ 1020.000615] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1020.000619] FG: calculate_average_current: current_now_ma=331542 averaged_iavg_ma=330261\n[ 1020.000626] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:0, batt_ma:331542, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1020.000630] FG: soc_monitor_work: soc:76, raw_soc:76, c:331542, s:2\n[ 1030.240242] raw: 0xbb\n[ 1030.240257] raw: 0xbb\n[ 1030.240260] ===raw_msoc:187\n[ 1030.240437] raw: 0xbb\n[ 1030.240452] raw: 0xbb\n[ 1030.240455] ===raw_msoc:187\n[ 1030.240593] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1030.240597] FG: calculate_average_current: current_now_ma=332031 averaged_iavg_ma=331725\n[ 1030.240604] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:0, batt_ma:332031, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1030.240608] FG: soc_monitor_work: soc:76, raw_soc:76, c:332031, s:2\n[ 1031.254042]  3279     3.7 C/MHz     59 mW    4.5 J   55.7 I/mJ    76.2 s\n                979: \n[ 1040.480249] raw: 0xbb\n[ 1040.480264] raw: 0xbb\n[ 1040.480267] ===raw_msoc:187\n[ 1040.480443] raw: 0xbb\n[ 1040.480458] raw: 0xbb\n[ 1040.480461] ===raw_msoc:187\n[ 1040.480597] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1040.480601] FG: calculate_average_current: current_now_ma=332519 averaged_iavg_ma=331603\n[ 1040.480606] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:0, batt_ma:332519, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1040.480610] FG: soc_monitor_work: soc:76, raw_soc:76, c:332519, s:2\n[ 1050.720233] raw: 0xbb\n[ 1050.720248] raw: 0xbb\n[ 1050.720250] ===raw_msoc:187\n[ 1050.720427] raw: 0xbb\n[ 1050.720442] raw: 0xbb\n[ 1050.720444] ===raw_msoc:187\n[ 1050.720580] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1050.720584] FG: calculate_average_current: current_now_ma=334472 averaged_iavg_ma=332031\n[ 1050.720590] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:334472, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1050.720593] FG: soc_monitor_work: soc:76, raw_soc:76, c:334472, s:2\n[ 1060.960231] raw: 0xbb\n[ 1060.960246] raw: 0xbb\n[ 1060.960249] ===raw_msoc:187\n[ 1060.960419] raw: 0xbb\n[ 1060.960434] raw: 0xbb\n[ 1060.960436] ===raw_msoc:187\n[ 1060.960572] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1060.960576] FG: calculate_average_current: current_now_ma=332031 averaged_iavg_ma=332031\n[ 1060.960582] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:332031, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1060.960586] FG: soc_monitor_work: soc:76, raw_soc:76, c:332031, s:2\n[ 1071.200233] raw: 0xbb\n[ 1071.200247] raw: 0xbb\n[ 1071.200250] ===raw_msoc:187\n[ 1071.200426] raw: 0xbb\n[ 1071.200441] raw: 0xbb\n[ 1071.200444] ===raw_msoc:187\n[ 1071.200580] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1071.200584] FG: calculate_average_current: current_now_ma=333984 averaged_iavg_ma=332397\n[ 1071.200589] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:333984, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1071.200593] FG: soc_monitor_work: soc:76, raw_soc:76, c:333984, s:2\n[ 1081.440184] raw: 0xbb\n[ 1081.440199] raw: 0xbb\n[ 1081.440201] ===raw_msoc:187\n[ 1081.440377] raw: 0xbb\n[ 1081.440392] raw: 0xbb\n[ 1081.440395] ===raw_msoc:187\n[ 1081.440530] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1081.440534] FG: calculate_average_current: current_now_ma=333984 averaged_iavg_ma=332397\n[ 1081.440540] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:333984, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1081.440543] FG: soc_monitor_work: soc:76, raw_soc:76, c:333984, s:2\n[ 1091.680247] raw: 0xbb\n[ 1091.680262] raw: 0xbb\n[ 1091.680265] ===raw_msoc:187\n[ 1091.680435] raw: 0xbb\n[ 1091.680450] raw: 0xbb\n[ 1091.680452] ===raw_msoc:187\n[ 1091.680588] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1091.680592] FG: calculate_average_current: current_now_ma=333495 averaged_iavg_ma=332519\n[ 1091.680598] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:333495, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1091.680601] FG: soc_monitor_work: soc:76, raw_soc:76, c:333495, s:2\n[ 1101.920233] raw: 0xbb\n[ 1101.920248] raw: 0xbb\n[ 1101.920250] ===raw_msoc:187\n[ 1101.920427] raw: 0xbb\n[ 1101.920442] raw: 0xbb\n[ 1101.920444] ===raw_msoc:187\n[ 1101.920580] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1101.920584] FG: calculate_average_current: current_now_ma=331054 averaged_iavg_ma=332641\n[ 1101.920589] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:331054, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1101.920593] FG: soc_monitor_work: soc:76, raw_soc:76, c:331054, s:2\n[ 1108.486642]  3636     3.7 C/MHz     64 mW    4.4 J   56.7 I/mJ    68.8 s\n               1075: \n[ 1112.160291] raw: 0xbb\n[ 1112.160305] raw: 0xbb\n[ 1112.160307] ===raw_msoc:187\n[ 1112.160482] raw: 0xbb\n[ 1112.160496] raw: 0xbb\n[ 1112.160499] ===raw_msoc:187\n[ 1112.160631] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1112.160635] FG: calculate_average_current: current_now_ma=320312 averaged_iavg_ma=331237\n[ 1112.160640] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:320312, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1112.160643] FG: soc_monitor_work: soc:76, raw_soc:76, c:320312, s:2\n[ 1122.400239] raw: 0xbb\n[ 1122.400253] raw: 0xbb\n[ 1122.400256] ===raw_msoc:187\n[ 1122.400421] raw: 0xbb\n[ 1122.400436] raw: 0xbb\n[ 1122.400438] ===raw_msoc:187\n[ 1122.400570] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1122.400574] FG: calculate_average_current: current_now_ma=334960 averaged_iavg_ma=331603\n[ 1122.400579] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:334960, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1122.400582] FG: soc_monitor_work: soc:76, raw_soc:76, c:334960, s:2\n[ 1132.640253] raw: 0xbb\n[ 1132.640267] raw: 0xbb\n[ 1132.640269] ===raw_msoc:187\n[ 1132.640439] raw: 0xbb\n[ 1132.640453] raw: 0xbb\n[ 1132.640455] ===raw_msoc:187\n[ 1132.640588] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1132.640592] FG: calculate_average_current: current_now_ma=334472 averaged_iavg_ma=331848\n[ 1132.640597] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:334472, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1132.640600] FG: soc_monitor_work: soc:76, raw_soc:76, c:334472, s:2\n[ 1142.880239] raw: 0xbb\n[ 1142.880254] raw: 0xbb\n[ 1142.880256] ===raw_msoc:187\n[ 1142.880426] raw: 0xbb\n[ 1142.880440] raw: 0xbb\n[ 1142.880443] ===raw_msoc:187\n[ 1142.880575] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1142.880579] FG: calculate_average_current: current_now_ma=335449 averaged_iavg_ma=331970\n[ 1142.880584] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:335449, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1142.880587] FG: soc_monitor_work: soc:76, raw_soc:76, c:335449, s:2\n[ 1153.120237] raw: 0xbb\n[ 1153.120251] raw: 0xbb\n[ 1153.120254] ===raw_msoc:187\n[ 1153.120418] raw: 0xbb\n[ 1153.120433] raw: 0xbb\n[ 1153.120435] ===raw_msoc:187\n[ 1153.120568] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1153.120571] FG: calculate_average_current: current_now_ma=333495 averaged_iavg_ma=332153\n[ 1153.120576] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:333495, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1153.120580] FG: soc_monitor_work: soc:76, raw_soc:76, c:333495, s:2\n[ 1163.360224] raw: 0xbb\n[ 1163.360238] raw: 0xbb\n[ 1163.360241] ===raw_msoc:187\n[ 1163.360411] raw: 0xbb\n[ 1163.360425] raw: 0xbb\n[ 1163.360427] ===raw_msoc:187\n[ 1163.360560] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1163.360564] FG: calculate_average_current: current_now_ma=333007 averaged_iavg_ma=332031\n[ 1163.360569] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:333007, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1163.360572] FG: soc_monitor_work: soc:76, raw_soc:76, c:333007, s:2\n[ 1173.600223] raw: 0xbb\n[ 1173.600237] raw: 0xbb\n[ 1173.600240] ===raw_msoc:187\n[ 1173.600410] raw: 0xbb\n[ 1173.600425] raw: 0xbb\n[ 1173.600427] ===raw_msoc:187\n[ 1173.600559] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1173.600563] FG: calculate_average_current: current_now_ma=335937 averaged_iavg_ma=332336\n[ 1173.600568] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:335937, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1173.600571] FG: soc_monitor_work: soc:76, raw_soc:76, c:335937, s:2\n[ 1179.707903]  3992     3.7 C/MHz     70 mW    4.4 J   57.4 I/mJ    62.6 s\n               1171: \n[ 1183.840280] raw: 0xba\n[ 1183.840295] raw: 0xba\n[ 1183.840297] ===raw_msoc:186\n[ 1183.840458] raw: 0xba\n[ 1183.840471] raw: 0xba\n[ 1183.840473] ===raw_msoc:186\n[ 1183.840605] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1183.840608] FG: calculate_average_current: current_now_ma=319824 averaged_iavg_ma=330932\n[ 1183.840613] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:319824, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1183.840616] FG: soc_monitor_work: soc:76, raw_soc:76, c:319824, s:2\n[ 1194.080232] raw: 0xba\n[ 1194.080246] raw: 0xba\n[ 1194.080248] ===raw_msoc:186\n[ 1194.080413] raw: 0xba\n[ 1194.080427] raw: 0xba\n[ 1194.080429] ===raw_msoc:186\n[ 1194.080561] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1194.080564] FG: calculate_average_current: current_now_ma=336425 averaged_iavg_ma=332946\n[ 1194.080569] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:336425, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1194.080572] FG: soc_monitor_work: soc:76, raw_soc:76, c:336425, s:2\n[ 1204.320218] raw: 0xba\n[ 1204.320232] raw: 0xba\n[ 1204.320234] ===raw_msoc:186\n[ 1204.320399] raw: 0xba\n[ 1204.320413] raw: 0xba\n[ 1204.320415] ===raw_msoc:186\n[ 1204.320546] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1204.320549] FG: calculate_average_current: current_now_ma=334960 averaged_iavg_ma=332946\n[ 1204.320554] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:334960, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1204.320557] FG: soc_monitor_work: soc:76, raw_soc:76, c:334960, s:2\n[ 1214.560217] raw: 0xba\n[ 1214.560231] raw: 0xba\n[ 1214.560233] ===raw_msoc:186\n[ 1214.560393] raw: 0xba\n[ 1214.560407] raw: 0xba\n[ 1214.560409] ===raw_msoc:186\n[ 1214.560540] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1214.560543] FG: calculate_average_current: current_now_ma=335937 averaged_iavg_ma=333129\n[ 1214.560548] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:335937, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1214.560551] FG: soc_monitor_work: soc:76, raw_soc:76, c:335937, s:2\n[ 1224.800218] raw: 0xba\n[ 1224.800232] raw: 0xba\n[ 1224.800234] ===raw_msoc:186\n[ 1224.800399] raw: 0xba\n[ 1224.800413] raw: 0xba\n[ 1224.800416] ===raw_msoc:186\n[ 1224.800547] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1224.800550] FG: calculate_average_current: current_now_ma=335937 averaged_iavg_ma=333129\n[ 1224.800554] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:335937, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1224.800557] FG: soc_monitor_work: soc:76, raw_soc:76, c:335937, s:2\n[ 1233.476705] raw: 0xba\n[ 1233.488001] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4091 Vbatt avg=4091 Vbatt res=691\n[ 1233.488015] raw: 0xba\n[ 1233.488029] raw: 0xba\n[ 1233.488031] ===raw_msoc:186\n[ 1233.488034] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 336913\n[ 1233.489872] raw: 0xba\n[ 1233.490083] raw: 0xba\n[ 1233.490085] ===raw_msoc:186\n[ 1233.490698] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 2e24dd2e\n[ 1233.490729] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[ 1233.491016] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4091 Vbatt avg=4091 Vbatt res=691\n[ 1233.491030] raw: 0xba\n[ 1233.491043] raw: 0xba\n[ 1233.491045] ===raw_msoc:186\n[ 1233.491048] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 336913\n[ 1233.491051] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1233.491209] raw: 0xba\n[ 1233.491223] raw: 0xba\n[ 1233.491225] ===raw_msoc:186\n[ 1233.491540] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 335 FCC = 6000000uA FV = 4480000uV\n[ 1233.491543] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[ 1233.491550] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 335 max voltage= 4480000uv FV = 4480000uV\n[ 1235.040217] raw: 0xba\n[ 1235.040231] raw: 0xba\n[ 1235.040233] ===raw_msoc:186\n[ 1235.040394] raw: 0xba\n[ 1235.040408] raw: 0xba\n[ 1235.040410] ===raw_msoc:186\n[ 1235.040542] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1235.040545] FG: calculate_average_current: current_now_ma=337402 averaged_iavg_ma=333373\n[ 1235.040550] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:337402, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1235.040552] FG: soc_monitor_work: soc:76, raw_soc:76, c:337402, s:2\n[ 1242.080818] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 03 78 04 02 03 07 a0 fd 30 00 a3 02 0b 0a 00 00 55 \n[ 1242.081060] smb:01:1200 00 ff ff fe 00 3d 3d 00 00 00 00 00 00 00 00 01 06 00 01 00 \n[ 1242.081690] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 00 00 40 00 00 a3 00 00 00 00 07 00 18 38 11 b0 03 00 00 7f 00 00 00 00 00 00 02 54 00 00 00 00 \n[ 1242.082544] smb:01:1500 00 00 00 01 c3 00 00 04 ff 00 00 ff ff 4a 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 1242.083172] smb:01:1600 03 03 00 00 0f 02 01 04 00 00 00 5b 5b 00 00 00 00 00 42 00 f3 00 00 00 00 00 00 00 00 00 00 00 00 0c 01 00 80 00 00 00 00 00 00 20 b8 4c cc 18 02 00 03 32 04 \n[ 1242.083189] pm8150b_charger: smblib_reg_work: AWAKE vote value is 0 voted by CHG_AWAKE_VOTER\n[ 1245.280236] raw: 0xba\n[ 1245.280250] raw: 0xba\n[ 1245.280252] ===raw_msoc:186\n[ 1245.280411] raw: 0xba\n[ 1245.280425] raw: 0xba\n[ 1245.280427] ===raw_msoc:186\n[ 1245.280558] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1245.280561] FG: calculate_average_current: current_now_ma=337402 averaged_iavg_ma=333373\n[ 1245.280566] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:337402, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1245.280569] FG: soc_monitor_work: soc:76, raw_soc:76, c:337402, s:2\n[ 1245.914183]  4348     3.7 C/MHz     75 mW    4.3 J   58.1 I/mJ    57.5 s\n               1248: \n[ 1255.520228] raw: 0xba\n[ 1255.520242] raw: 0xba\n[ 1255.520244] ===raw_msoc:186\n[ 1255.520405] raw: 0xba\n[ 1255.520419] raw: 0xba\n[ 1255.520421] ===raw_msoc:186\n[ 1255.520550] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1255.520553] FG: calculate_average_current: current_now_ma=336425 averaged_iavg_ma=333740\n[ 1255.520557] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:336425, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1255.520560] FG: soc_monitor_work: soc:76, raw_soc:76, c:336425, s:2\n[ 1265.760213] raw: 0xba\n[ 1265.760227] raw: 0xba\n[ 1265.760229] ===raw_msoc:186\n[ 1265.760391] raw: 0xba\n[ 1265.760404] raw: 0xba\n[ 1265.760406] ===raw_msoc:186\n[ 1265.760535] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1265.760538] FG: calculate_average_current: current_now_ma=336425 averaged_iavg_ma=333740\n[ 1265.760542] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:336425, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1265.760545] FG: soc_monitor_work: soc:76, raw_soc:76, c:336425, s:2\n[ 1276.000213] raw: 0xba\n[ 1276.000227] raw: 0xba\n[ 1276.000229] ===raw_msoc:186\n[ 1276.000386] raw: 0xba\n[ 1276.000400] raw: 0xba\n[ 1276.000402] ===raw_msoc:186\n[ 1276.000531] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1276.000534] FG: calculate_average_current: current_now_ma=337402 averaged_iavg_ma=334289\n[ 1276.000539] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:337402, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1276.000541] FG: soc_monitor_work: soc:76, raw_soc:76, c:337402, s:2\n[ 1286.240224] raw: 0xba\n[ 1286.240238] raw: 0xba\n[ 1286.240240] ===raw_msoc:186\n[ 1286.240401] raw: 0xba\n[ 1286.240415] raw: 0xba\n[ 1286.240417] ===raw_msoc:186\n[ 1286.240546] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1286.240549] FG: calculate_average_current: current_now_ma=336425 averaged_iavg_ma=334350\n[ 1286.240554] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:336425, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1286.240556] FG: soc_monitor_work: soc:76, raw_soc:76, c:336425, s:2\n[ 1296.480226] raw: 0xba\n[ 1296.480240] raw: 0xba\n[ 1296.480242] ===raw_msoc:186\n[ 1296.480403] raw: 0xba\n[ 1296.480417] raw: 0xba\n[ 1296.480419] ===raw_msoc:186\n[ 1296.480548] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1296.480551] FG: calculate_average_current: current_now_ma=337890 averaged_iavg_ma=336608\n[ 1296.480555] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:337890, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1296.480558] FG: soc_monitor_work: soc:76, raw_soc:76, c:337890, s:2\n[ 1306.720212] raw: 0xba\n[ 1306.720226] raw: 0xba\n[ 1306.720228] ===raw_msoc:186\n[ 1306.720385] raw: 0xba\n[ 1306.720398] raw: 0xba\n[ 1306.720400] ===raw_msoc:186\n[ 1306.720529] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1306.720532] FG: calculate_average_current: current_now_ma=335937 averaged_iavg_ma=336547\n[ 1306.720537] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:335937, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1306.720540] FG: soc_monitor_work: soc:76, raw_soc:76, c:335937, s:2\n[ 1308.112389]  4633     3.7 C/MHz     78 mW    4.2 J   59.3 I/mJ    54.0 s\n               1344: \n[ 1316.960208] raw: 0xba\n[ 1316.960222] raw: 0xba\n[ 1316.960224] ===raw_msoc:186\n[ 1316.960381] raw: 0xba\n[ 1316.960395] raw: 0xba\n[ 1316.960396] ===raw_msoc:186\n[ 1316.960524] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1316.960527] FG: calculate_average_current: current_now_ma=339355 averaged_iavg_ma=337097\n[ 1316.960531] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:339355, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1316.960534] FG: soc_monitor_work: soc:76, raw_soc:76, c:339355, s:2\n[ 1327.200207] raw: 0xba\n[ 1327.200220] raw: 0xba\n[ 1327.200222] ===raw_msoc:186\n[ 1327.200380] raw: 0xba\n[ 1327.200393] raw: 0xba\n[ 1327.200395] ===raw_msoc:186\n[ 1327.200523] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1327.200526] FG: calculate_average_current: current_now_ma=336425 averaged_iavg_ma=337158\n[ 1327.200530] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:336425, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1327.200533] FG: soc_monitor_work: soc:76, raw_soc:76, c:336425, s:2\n[ 1337.440207] raw: 0xba\n[ 1337.440220] raw: 0xba\n[ 1337.440222] ===raw_msoc:186\n[ 1337.440376] raw: 0xba\n[ 1337.440390] raw: 0xba\n[ 1337.440392] ===raw_msoc:186\n[ 1337.440519] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1337.440521] FG: calculate_average_current: current_now_ma=340820 averaged_iavg_ma=337585\n[ 1337.440526] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:340820, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1337.440528] FG: soc_monitor_work: soc:76, raw_soc:76, c:340820, s:2\n[ 1347.680221] raw: 0xba\n[ 1347.680235] raw: 0xba\n[ 1347.680237] ===raw_msoc:186\n[ 1347.680394] raw: 0xba\n[ 1347.680407] raw: 0xba\n[ 1347.680409] ===raw_msoc:186\n[ 1347.680536] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1347.680539] FG: calculate_average_current: current_now_ma=339355 averaged_iavg_ma=337951\n[ 1347.680543] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:339355, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1347.680546] FG: soc_monitor_work: soc:76, raw_soc:76, c:339355, s:2\n[ 1357.920208] raw: 0xba\n[ 1357.920221] raw: 0xba\n[ 1357.920223] ===raw_msoc:186\n[ 1357.920382] raw: 0xba\n[ 1357.920395] raw: 0xba\n[ 1357.920397] ===raw_msoc:186\n[ 1357.920524] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1357.920527] FG: calculate_average_current: current_now_ma=338378 averaged_iavg_ma=338073\n[ 1357.920531] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:338378, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1357.920534] FG: soc_monitor_work: soc:76, raw_soc:76, c:338378, s:2\n[ 1367.300289]  4990     3.7 C/MHz     85 mW    4.3 J   58.7 I/mJ    50.1 s\n               1420: \n[ 1368.160268] raw: 0xba\n[ 1368.160281] raw: 0xba\n[ 1368.160283] ===raw_msoc:186\n[ 1368.160435] raw: 0xba\n[ 1368.160448] raw: 0xba\n[ 1368.160450] ===raw_msoc:186\n[ 1368.160577] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1368.160580] FG: calculate_average_current: current_now_ma=322753 averaged_iavg_ma=336364\n[ 1368.160584] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:322753, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1368.160586] FG: soc_monitor_work: soc:76, raw_soc:76, c:322753, s:2\n[ 1378.400205] raw: 0xb9\n[ 1378.400218] raw: 0xb9\n[ 1378.400220] ===raw_msoc:185\n[ 1378.400374] raw: 0xb9\n[ 1378.400387] raw: 0xb9\n[ 1378.400389] ===raw_msoc:185\n[ 1378.400516] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1378.400519] FG: calculate_average_current: current_now_ma=339355 averaged_iavg_ma=336547\n[ 1378.400523] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:339355, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1378.400525] FG: soc_monitor_work: soc:76, raw_soc:76, c:339355, s:2\n[ 1388.640217] raw: 0xb9\n[ 1388.640230] raw: 0xb9\n[ 1388.640232] ===raw_msoc:185\n[ 1388.640386] raw: 0xb9\n[ 1388.640400] raw: 0xb9\n[ 1388.640401] ===raw_msoc:185\n[ 1388.640528] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1388.640531] FG: calculate_average_current: current_now_ma=339843 averaged_iavg_ma=337036\n[ 1388.640535] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:339843, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1388.640537] FG: soc_monitor_work: soc:76, raw_soc:76, c:339843, s:2\n[ 1398.880216] raw: 0xb9\n[ 1398.880229] raw: 0xb9\n[ 1398.880231] ===raw_msoc:185\n[ 1398.880381] raw: 0xb9\n[ 1398.880394] raw: 0xb9\n[ 1398.880396] ===raw_msoc:185\n[ 1398.880523] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1398.880525] FG: calculate_average_current: current_now_ma=339843 averaged_iavg_ma=337036\n[ 1398.880529] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:339843, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1398.880532] FG: soc_monitor_work: soc:76, raw_soc:76, c:339843, s:2\n[ 1409.120205] raw: 0xb9\n[ 1409.120218] raw: 0xb9\n[ 1409.120220] ===raw_msoc:185\n[ 1409.120375] raw: 0xb9\n[ 1409.120388] raw: 0xb9\n[ 1409.120390] ===raw_msoc:185\n[ 1409.120517] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1409.120519] FG: calculate_average_current: current_now_ma=339355 averaged_iavg_ma=337036\n[ 1409.120523] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:339355, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1409.120526] FG: soc_monitor_work: soc:76, raw_soc:76, c:339355, s:2\n[ 1419.360214] raw: 0xb9\n[ 1419.360227] raw: 0xb9\n[ 1419.360229] ===raw_msoc:185\n[ 1419.360384] raw: 0xb9\n[ 1419.360398] raw: 0xb9\n[ 1419.360399] ===raw_msoc:185\n[ 1419.360526] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1419.360529] FG: calculate_average_current: current_now_ma=339843 averaged_iavg_ma=337463\n[ 1419.360533] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:339843, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1419.360535] FG: soc_monitor_work: soc:76, raw_soc:76, c:339843, s:2\n[ 1423.483745]  5275     3.7 C/MHz     88 mW    4.2 J   59.8 I/mJ    47.4 s\n               1516: \n[ 1429.600299] raw: 0xb9\n[ 1429.600312] raw: 0xb9\n[ 1429.600314] ===raw_msoc:185\n[ 1429.600462] raw: 0xb9\n[ 1429.600475] raw: 0xb9\n[ 1429.600476] ===raw_msoc:185\n[ 1429.600602] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1429.600604] FG: calculate_average_current: current_now_ma=321288 averaged_iavg_ma=335021\n[ 1429.600608] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:321288, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1429.600610] FG: soc_monitor_work: soc:76, raw_soc:76, c:321288, s:2\n[ 1439.840201] raw: 0xb9\n[ 1439.840215] raw: 0xb9\n[ 1439.840216] ===raw_msoc:185\n[ 1439.840369] raw: 0xb9\n[ 1439.840382] raw: 0xb9\n[ 1439.840384] ===raw_msoc:185\n[ 1439.840510] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1439.840512] FG: calculate_average_current: current_now_ma=341796 averaged_iavg_ma=335326\n[ 1439.840516] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:341796, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1439.840518] FG: soc_monitor_work: soc:76, raw_soc:76, c:341796, s:2\n[ 1450.080213] raw: 0xb9\n[ 1450.080226] raw: 0xb9\n[ 1450.080228] ===raw_msoc:185\n[ 1450.080380] raw: 0xb9\n[ 1450.080393] raw: 0xb9\n[ 1450.080394] ===raw_msoc:185\n[ 1450.080520] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1450.080523] FG: calculate_average_current: current_now_ma=340820 averaged_iavg_ma=335632\n[ 1450.080526] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:340820, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1450.080529] FG: soc_monitor_work: soc:76, raw_soc:76, c:340820, s:2\n[ 1460.320200] raw: 0xb9\n[ 1460.320214] raw: 0xb9\n[ 1460.320215] ===raw_msoc:185\n[ 1460.320364] raw: 0xb9\n[ 1460.320377] raw: 0xb9\n[ 1460.320379] ===raw_msoc:185\n[ 1460.320504] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1460.320506] FG: calculate_average_current: current_now_ma=342284 averaged_iavg_ma=338073\n[ 1460.320510] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:342284, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1460.320512] FG: soc_monitor_work: soc:76, raw_soc:76, c:342284, s:2\n[ 1470.560202] raw: 0xb9\n[ 1470.560215] raw: 0xb9\n[ 1470.560217] ===raw_msoc:185\n[ 1470.560369] raw: 0xb9\n[ 1470.560382] raw: 0xb9\n[ 1470.560384] ===raw_msoc:185\n[ 1470.560509] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1470.560512] FG: calculate_average_current: current_now_ma=341796 averaged_iavg_ma=338378\n[ 1470.560515] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:341796, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1470.560517] FG: soc_monitor_work: soc:76, raw_soc:76, c:341796, s:2\n[ 1476.662288]  5632     3.7 C/MHz     95 mW    4.2 J   59.3 I/mJ    44.4 s\n               1612: \n[ 1476.902121] raw: 0xb9\n[ 1476.913264] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4087 Vbatt avg=4086 Vbatt res=686\n[ 1476.913277] raw: 0xb9\n[ 1476.913289] raw: 0xb9\n[ 1476.913291] ===raw_msoc:185\n[ 1476.913293] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 323242\n[ 1476.914990] raw: 0xb9\n[ 1476.915010] raw: 0xb9\n[ 1476.915012] ===raw_msoc:185\n[ 1476.916389] raw: 0xb9\n[ 1476.916402] raw: 0xb9\n[ 1476.916404] ===raw_msoc:185\n[ 1476.916487] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 2dd7dbf3\n[ 1476.916516] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[ 1476.916745] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 337 FCC = 6000000uA FV = 4480000uV\n[ 1476.916747] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[ 1476.916752] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 337 max voltage= 4480000uv FV = 4480000uV\n[ 1476.917042] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4087 Vbatt avg=4086 Vbatt res=686\n[ 1476.917055] raw: 0xb9\n[ 1476.917068] raw: 0xb9\n[ 1476.917070] ===raw_msoc:185\n[ 1476.917072] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 323242\n[ 1476.917074] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1480.800273] raw: 0xb9\n[ 1480.800287] raw: 0xb9\n[ 1480.800288] ===raw_msoc:185\n[ 1480.800442] raw: 0xb9\n[ 1480.800455] raw: 0xb9\n[ 1480.800457] ===raw_msoc:185\n[ 1480.800581] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1480.800584] FG: calculate_average_current: current_now_ma=323730 averaged_iavg_ma=336364\n[ 1480.800587] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:323730, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1480.800589] FG: soc_monitor_work: soc:76, raw_soc:76, c:323730, s:2\n[ 1491.040199] raw: 0xb9\n[ 1491.040212] raw: 0xb9\n[ 1491.040213] ===raw_msoc:185\n[ 1491.040359] raw: 0xb9\n[ 1491.040372] raw: 0xb9\n[ 1491.040374] ===raw_msoc:185\n[ 1491.040499] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1491.040501] FG: calculate_average_current: current_now_ma=342284 averaged_iavg_ma=336730\n[ 1491.040505] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:342284, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1491.040507] FG: soc_monitor_work: soc:76, raw_soc:76, c:342284, s:2\n[ 1501.280210] raw: 0xb9\n[ 1501.280223] raw: 0xb9\n[ 1501.280224] ===raw_msoc:185\n[ 1501.280373] raw: 0xb9\n[ 1501.280386] raw: 0xb9\n[ 1501.280387] ===raw_msoc:185\n[ 1501.280512] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1501.280514] FG: calculate_average_current: current_now_ma=341308 averaged_iavg_ma=336913\n[ 1501.280517] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:341308, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1501.280520] FG: soc_monitor_work: soc:76, raw_soc:76, c:341308, s:2\n[ 1511.520198] raw: 0xb9\n[ 1511.520211] raw: 0xb9\n[ 1511.520212] ===raw_msoc:185\n[ 1511.520363] raw: 0xb9\n[ 1511.520376] raw: 0xb9\n[ 1511.520377] ===raw_msoc:185\n[ 1511.520502] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1511.520504] FG: calculate_average_current: current_now_ma=344726 averaged_iavg_ma=339843\n[ 1511.520508] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:344726, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1511.520510] FG: soc_monitor_work: soc:76, raw_soc:76, c:344726, s:2\n[ 1521.760209] raw: 0xb9\n[ 1521.760222] raw: 0xb9\n[ 1521.760224] ===raw_msoc:185\n[ 1521.760369] raw: 0xb9\n[ 1521.760382] raw: 0xb9\n[ 1521.760384] ===raw_msoc:185\n[ 1521.760508] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1521.760510] FG: calculate_average_current: current_now_ma=343261 averaged_iavg_ma=340026\n[ 1521.760514] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:343261, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1521.760516] FG: soc_monitor_work: soc:76, raw_soc:76, c:343261, s:2\n[ 1526.836406]  5988     3.7 C/MHz     99 mW    4.1 J   60.5 I/mJ    41.8 s\n               1708: \n[ 1532.000260] raw: 0xb9\n[ 1532.000273] raw: 0xb9\n[ 1532.000274] ===raw_msoc:185\n[ 1532.000378] raw: 0xb9\n[ 1532.000391] raw: 0xb9\n[ 1532.000393] ===raw_msoc:185\n[ 1532.010544] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1532.010547] FG: calculate_average_current: current_now_ma=322753 averaged_iavg_ma=337768\n[ 1532.010550] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:322753, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1532.010552] FG: soc_monitor_work: soc:76, raw_soc:76, c:322753, s:2\n[ 1542.240193] raw: 0xb9\n[ 1542.240206] raw: 0xb9\n[ 1542.240207] ===raw_msoc:185\n[ 1542.240354] raw: 0xb9\n[ 1542.240367] raw: 0xb9\n[ 1542.240369] ===raw_msoc:185\n[ 1542.240492] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1542.240494] FG: calculate_average_current: current_now_ma=343261 averaged_iavg_ma=337890\n[ 1542.240497] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:343261, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1542.240499] FG: soc_monitor_work: soc:76, raw_soc:76, c:343261, s:2\n[ 1552.480211] raw: 0xb9\n[ 1552.480224] raw: 0xb9\n[ 1552.480225] ===raw_msoc:185\n[ 1552.480369] raw: 0xb9\n[ 1552.480381] raw: 0xb9\n[ 1552.480383] ===raw_msoc:185\n[ 1552.480506] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1552.480508] FG: calculate_average_current: current_now_ma=342773 averaged_iavg_ma=338012\n[ 1552.480511] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:342773, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1552.480514] FG: soc_monitor_work: soc:76, raw_soc:76, c:342773, s:2\n[ 1562.720196] raw: 0xb9\n[ 1562.720208] raw: 0xb9\n[ 1562.720210] ===raw_msoc:185\n[ 1562.720357] raw: 0xb9\n[ 1562.720370] raw: 0xb9\n[ 1562.720371] ===raw_msoc:185\n[ 1562.720494] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1562.720497] FG: calculate_average_current: current_now_ma=345214 averaged_iavg_ma=340698\n[ 1562.720500] FG: fg_battery_soc_smooth_tracking: soc:76, last_soc:76, raw_soc:76, soc_changed:1, batt_ma:345214, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1562.720502] FG: soc_monitor_work: soc:76, raw_soc:76, c:345214, s:2\n[ 1572.960194] raw: 0xb8\n[ 1572.960207] raw: 0xb8\n[ 1572.960208] ===raw_msoc:184\n[ 1572.960355] raw: 0xb8\n[ 1572.960368] raw: 0xb8\n[ 1572.960370] ===raw_msoc:184\n[ 1572.960492] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1572.960495] FG: calculate_average_current: current_now_ma=343749 averaged_iavg_ma=340881\n[ 1572.960499] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:343749, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1572.960501] FG: soc_monitor_work: soc:75, raw_soc:75, c:343749, s:2\n[ 1572.961781] raw: 0xb8\n[ 1572.961794] raw: 0xb8\n[ 1572.961795] ===raw_msoc:184\n[ 1572.962588] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 337 FCC = 6000000uA FV = 4480000uV\n[ 1572.962591] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[ 1572.962596] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 337 max voltage= 4480000uv FV = 4480000uV\n[ 1572.962741] raw: 0xb8\n[ 1572.962753] raw: 0xb8\n[ 1572.962923] ===raw_msoc:184\n[ 1572.963277] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 2db8bac6\n[ 1572.963305] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[ 1572.963564] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4083 Vbatt avg=4084 Vbatt res=684\n[ 1572.963577] raw: 0xb8\n[ 1572.963589] raw: 0xb8\n[ 1572.963591] ===raw_msoc:184\n[ 1572.963593] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 343749\n[ 1572.963595] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1575.007793]  6344     3.7 C/MHz    103 mW    4.0 J   61.8 I/mJ    39.4 s\n               1804: \n[ 1583.200192] raw: 0xb8\n[ 1583.200205] raw: 0xb8\n[ 1583.200206] ===raw_msoc:184\n[ 1583.200348] raw: 0xb8\n[ 1583.200361] raw: 0xb8\n[ 1583.200362] ===raw_msoc:184\n[ 1583.200484] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1583.200487] FG: calculate_average_current: current_now_ma=321777 averaged_iavg_ma=338439\n[ 1583.200490] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:0, batt_ma:321777, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1583.200492] FG: soc_monitor_work: soc:75, raw_soc:75, c:321777, s:2\n[ 1593.440192] raw: 0xb8\n[ 1593.440205] raw: 0xb8\n[ 1593.440207] ===raw_msoc:184\n[ 1593.440352] raw: 0xb8\n[ 1593.440365] raw: 0xb8\n[ 1593.440366] ===raw_msoc:184\n[ 1593.440488] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1593.440490] FG: calculate_average_current: current_now_ma=347167 averaged_iavg_ma=338744\n[ 1593.440494] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:0, batt_ma:347167, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1593.440496] FG: soc_monitor_work: soc:75, raw_soc:75, c:347167, s:2\n[ 1603.680201] raw: 0xb8\n[ 1603.680214] raw: 0xb8\n[ 1603.680215] ===raw_msoc:184\n[ 1603.680360] raw: 0xb8\n[ 1603.680373] raw: 0xb8\n[ 1603.680375] ===raw_msoc:184\n[ 1603.680497] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1603.680499] FG: calculate_average_current: current_now_ma=347167 averaged_iavg_ma=338744\n[ 1603.680502] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:0, batt_ma:347167, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1603.680504] FG: soc_monitor_work: soc:75, raw_soc:75, c:347167, s:2\n[ 1613.920191] raw: 0xb8\n[ 1613.920204] raw: 0xb8\n[ 1613.920205] ===raw_msoc:184\n[ 1613.920347] raw: 0xb8\n[ 1613.920360] raw: 0xb8\n[ 1613.920361] ===raw_msoc:184\n[ 1613.920484] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1613.920486] FG: calculate_average_current: current_now_ma=346679 averaged_iavg_ma=339172\n[ 1613.920489] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:0, batt_ma:346679, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1613.920491] FG: soc_monitor_work: soc:75, raw_soc:75, c:346679, s:2\n[ 1621.177691] CPU1: shutdown\n[ 1621.177763] psci: CPU1 killed.\n[ 1621.181075] Detected PIPT I-cache on CPU4\n[ 1621.181100] arch_timer: CPU4: Trapping CNTVCT access\n[ 1621.181104] CPU4: Booted secondary processor 0x0000000400 [0x411fd0d0]\n[ 1621.189455]  6700     3.7 C/MHz    115 mW    4.3 J   58.2 I/mJ    37.3 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 710 825 940 1056 1171 1286 1382 1478 1574 1670 1766 1862 1958 2054 2150 2246 2342 2419\n               \n                710: \n[ 1624.160481] raw: 0xb8\n[ 1624.160505] raw: 0xb8\n[ 1624.160512] ===raw_msoc:184\n[ 1624.160912] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1624.160926] FG: calculate_average_current: current_now_ma=321777 averaged_iavg_ma=339050\n[ 1624.160944] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:0, batt_ma:321777, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1624.160955] FG: soc_monitor_work: soc:75, raw_soc:75, c:321777, s:2\n[ 1624.161014] raw: 0xb8\n[ 1624.161036] raw: 0xb8\n[ 1624.161043] ===raw_msoc:184\n[ 1634.400452] raw: 0xb8\n[ 1634.400476] raw: 0xb8\n[ 1634.400484] ===raw_msoc:184\n[ 1634.400632] raw: 0xb8\n[ 1634.400653] raw: 0xb8\n[ 1634.400660] ===raw_msoc:184\n[ 1634.401056] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1634.401070] FG: calculate_average_current: current_now_ma=349609 averaged_iavg_ma=339843\n[ 1634.401088] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:349609, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1634.401099] FG: soc_monitor_work: soc:75, raw_soc:75, c:349609, s:2\n[ 1644.640476] raw: 0xb8\n[ 1644.640499] raw: 0xb8\n[ 1644.640507] ===raw_msoc:184\n[ 1644.640888] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1644.640901] FG: calculate_average_current: current_now_ma=349609 averaged_iavg_ma=339843\n[ 1644.640919] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:349609, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1644.640931] FG: soc_monitor_work: soc:75, raw_soc:75, c:349609, s:2\n[ 1644.640989] raw: 0xb8\n[ 1644.641011] raw: 0xb8\n[ 1644.641018] ===raw_msoc:184\n[ 1654.880504] raw: 0xb8\n[ 1654.880528] raw: 0xb8\n[ 1654.880536] ===raw_msoc:184\n[ 1654.880683] raw: 0xb8\n[ 1654.880704] raw: 0xb8\n[ 1654.880711] ===raw_msoc:184\n[ 1654.881114] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1654.881127] FG: calculate_average_current: current_now_ma=348144 averaged_iavg_ma=340515\n[ 1654.881145] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:348144, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1654.881157] FG: soc_monitor_work: soc:75, raw_soc:75, c:348144, s:2\n[ 1665.120478] raw: 0xb8\n[ 1665.120502] raw: 0xb8\n[ 1665.120509] ===raw_msoc:184\n[ 1665.120905] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1665.120919] FG: calculate_average_current: current_now_ma=349609 averaged_iavg_ma=341064\n[ 1665.120937] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:349609, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1665.120948] FG: soc_monitor_work: soc:75, raw_soc:75, c:349609, s:2\n[ 1665.121007] raw: 0xb8\n[ 1665.121029] raw: 0xb8\n[ 1665.121036] ===raw_msoc:184\n[ 1671.449166]  6021     8.5 C/MHz    126 mW    5.2 J   47.7 I/mJ    41.5 s\n                825: \n[ 1675.360448] raw: 0xb8\n[ 1675.360472] raw: 0xb8\n[ 1675.360480] ===raw_msoc:184\n[ 1675.360627] raw: 0xb8\n[ 1675.360649] raw: 0xb8\n[ 1675.360656] ===raw_msoc:184\n[ 1675.361039] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1675.361052] FG: calculate_average_current: current_now_ma=322265 averaged_iavg_ma=338378\n[ 1675.361070] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:322265, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1675.361082] FG: soc_monitor_work: soc:75, raw_soc:75, c:322265, s:2\n[ 1685.600465] raw: 0xb8\n[ 1685.600489] raw: 0xb8\n[ 1685.600497] ===raw_msoc:184\n[ 1685.600822] raw: 0xb8\n[ 1685.600845] raw: 0xb8\n[ 1685.600853] ===raw_msoc:184\n[ 1685.601050] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1685.601063] FG: calculate_average_current: current_now_ma=355956 averaged_iavg_ma=342651\n[ 1685.601081] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:355956, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1685.601092] FG: soc_monitor_work: soc:75, raw_soc:75, c:355956, s:2\n[ 1695.840477] raw: 0xb8\n[ 1695.840501] raw: 0xb8\n[ 1695.840509] ===raw_msoc:184\n[ 1695.840838] raw: 0xb8\n[ 1695.840862] raw: 0xb8\n[ 1695.840869] ===raw_msoc:184\n[ 1695.841066] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1695.841079] FG: calculate_average_current: current_now_ma=354980 averaged_iavg_ma=343627\n[ 1695.841097] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:354980, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1695.841108] FG: soc_monitor_work: soc:75, raw_soc:75, c:354980, s:2\n[ 1706.080529] raw: 0xb8\n[ 1706.080553] raw: 0xb8\n[ 1706.080561] ===raw_msoc:184\n[ 1706.080869] raw: 0xb8\n[ 1706.080892] raw: 0xb8\n[ 1706.080900] ===raw_msoc:184\n[ 1706.081096] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1706.081109] FG: calculate_average_current: current_now_ma=355468 averaged_iavg_ma=344726\n[ 1706.081127] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:355468, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1706.081139] FG: soc_monitor_work: soc:75, raw_soc:75, c:355468, s:2\n[ 1715.318572] raw: 0xb8\n[ 1715.330649] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4080 Vbatt avg=4080 Vbatt res=680\n[ 1715.330673] raw: 0xb8\n[ 1715.330695] raw: 0xb8\n[ 1715.330702] ===raw_msoc:184\n[ 1715.330714] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 355468\n[ 1715.334909] raw: 0xb8\n[ 1715.335080] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 2d8adab9\n[ 1715.335139] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[ 1715.335338] raw: 0xb8\n[ 1715.335347] ===raw_msoc:184\n[ 1715.335560] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4080 Vbatt avg=4080 Vbatt res=680\n[ 1715.335583] raw: 0xb8\n[ 1715.335604] raw: 0xb8\n[ 1715.335611] ===raw_msoc:184\n[ 1715.335622] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 355468\n[ 1715.335634] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1715.337246] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 340 FCC = 6000000uA FV = 4480000uV\n[ 1715.337259] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[ 1715.337285] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 340 max voltage= 4480000uv FV = 4480000uV\n[ 1715.337520] raw: 0xb8\n[ 1715.337543] raw: 0xb8\n[ 1715.337550] ===raw_msoc:184\n[ 1715.691350]  6996     8.5 C/MHz    148 mW    5.3 J   47.1 I/mJ    35.7 s\n                940: \n[ 1716.320291] raw: 0xb8\n[ 1716.320316] raw: 0xb8\n[ 1716.320324] ===raw_msoc:184\n[ 1716.320600] raw: 0xb8\n[ 1716.320623] raw: 0xb8\n[ 1716.320739] ===raw_msoc:184\n[ 1716.330679] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1716.330692] FG: calculate_average_current: current_now_ma=320312 averaged_iavg_ma=344543\n[ 1716.330711] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:320312, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1716.330723] FG: soc_monitor_work: soc:75, raw_soc:75, c:320312, s:2\n[ 1726.560476] raw: 0xb8\n[ 1726.560500] raw: 0xb8\n[ 1726.560508] ===raw_msoc:184\n[ 1726.560903] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1726.560917] FG: calculate_average_current: current_now_ma=360351 averaged_iavg_ma=345886\n[ 1726.560935] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:360351, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1726.560946] FG: soc_monitor_work: soc:75, raw_soc:75, c:360351, s:2\n[ 1726.561006] raw: 0xb8\n[ 1726.561027] raw: 0xb8\n[ 1726.561035] ===raw_msoc:184\n[ 1736.800456] raw: 0xb8\n[ 1736.800479] raw: 0xb8\n[ 1736.800487] ===raw_msoc:184\n[ 1736.800634] raw: 0xb8\n[ 1736.800655] raw: 0xb8\n[ 1736.800662] ===raw_msoc:184\n[ 1736.801044] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1736.801058] FG: calculate_average_current: current_now_ma=358886 averaged_iavg_ma=347228\n[ 1736.801076] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:358886, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1736.801088] FG: soc_monitor_work: soc:75, raw_soc:75, c:358886, s:2\n[ 1747.040535] raw: 0xb8\n[ 1747.040559] raw: 0xb8\n[ 1747.040567] ===raw_msoc:184\n[ 1747.040893] raw: 0xb8\n[ 1747.040916] raw: 0xb8\n[ 1747.040924] ===raw_msoc:184\n[ 1747.041121] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1747.041134] FG: calculate_average_current: current_now_ma=361327 averaged_iavg_ma=348693\n[ 1747.041151] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:361327, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1747.041163] FG: soc_monitor_work: soc:75, raw_soc:75, c:361327, s:2\n[ 1755.921847]  7985     8.5 C/MHz    169 mW    5.3 J   47.2 I/mJ    31.3 s\n               1056: \n[ 1757.280526] raw: 0xb8\n[ 1757.280550] raw: 0xb8\n[ 1757.280558] ===raw_msoc:184\n[ 1757.280888] raw: 0xb8\n[ 1757.280910] raw: 0xb8\n[ 1757.280918] ===raw_msoc:184\n[ 1757.281115] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1757.281128] FG: calculate_average_current: current_now_ma=321777 averaged_iavg_ma=348632\n[ 1757.281146] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:321777, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1757.281158] FG: soc_monitor_work: soc:75, raw_soc:75, c:321777, s:2\n[ 1767.520477] raw: 0xb7\n[ 1767.520501] raw: 0xb7\n[ 1767.520509] ===raw_msoc:183\n[ 1767.520889] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1767.520902] FG: calculate_average_current: current_now_ma=365722 averaged_iavg_ma=349853\n[ 1767.520920] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:365722, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1767.520932] FG: soc_monitor_work: soc:75, raw_soc:75, c:365722, s:2\n[ 1767.520990] raw: 0xb7\n[ 1767.521011] raw: 0xb7\n[ 1767.521018] ===raw_msoc:183\n[ 1777.760453] raw: 0xb7\n[ 1777.760477] raw: 0xb7\n[ 1777.760485] ===raw_msoc:183\n[ 1777.760632] raw: 0xb7\n[ 1777.760653] raw: 0xb7\n[ 1777.760660] ===raw_msoc:183\n[ 1777.761063] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1777.761076] FG: calculate_average_current: current_now_ma=366699 averaged_iavg_ma=351318\n[ 1777.761094] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:366699, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1777.761106] FG: soc_monitor_work: soc:75, raw_soc:75, c:366699, s:2\n[ 1788.000479] raw: 0xb7\n[ 1788.000503] raw: 0xb7\n[ 1788.000511] ===raw_msoc:183\n[ 1788.000838] raw: 0xb7\n[ 1788.000861] raw: 0xb7\n[ 1788.000869] ===raw_msoc:183\n[ 1788.001067] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1788.001080] FG: calculate_average_current: current_now_ma=366210 averaged_iavg_ma=352661\n[ 1788.001097] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:366210, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1788.001109] FG: soc_monitor_work: soc:75, raw_soc:75, c:366210, s:2\n[ 1792.139307]  8960     8.5 C/MHz    192 mW    5.4 J   46.5 I/mJ    27.9 s\n               1171: \n[ 1798.240475] raw: 0xb7\n[ 1798.240499] raw: 0xb7\n[ 1798.240507] ===raw_msoc:183\n[ 1798.240887] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1798.240901] FG: calculate_average_current: current_now_ma=322265 averaged_iavg_ma=352905\n[ 1798.240919] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:322265, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1798.240931] FG: soc_monitor_work: soc:75, raw_soc:75, c:322265, s:2\n[ 1798.240991] raw: 0xb7\n[ 1798.241012] raw: 0xb7\n[ 1798.241019] ===raw_msoc:183\n[ 1808.480503] raw: 0xb7\n[ 1808.480527] raw: 0xb7\n[ 1808.480535] ===raw_msoc:183\n[ 1808.480682] raw: 0xb7\n[ 1808.480703] raw: 0xb7\n[ 1808.480710] ===raw_msoc:183\n[ 1808.481105] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1808.481119] FG: calculate_average_current: current_now_ma=373046 averaged_iavg_ma=354492\n[ 1808.481136] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:373046, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1808.481148] FG: soc_monitor_work: soc:75, raw_soc:75, c:373046, s:2\n[ 1818.720521] raw: 0xb7\n[ 1818.720545] raw: 0xb7\n[ 1818.720553] ===raw_msoc:183\n[ 1818.720878] raw: 0xb7\n[ 1818.720902] raw: 0xb7\n[ 1818.720909] ===raw_msoc:183\n[ 1818.721107] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1818.721120] FG: calculate_average_current: current_now_ma=373534 averaged_iavg_ma=356323\n[ 1818.721138] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:373534, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1818.721149] FG: soc_monitor_work: soc:75, raw_soc:75, c:373534, s:2\n[ 1826.352846]  9923     8.5 C/MHz    217 mW    5.5 J   45.8 I/mJ    25.2 s\n               1286: \n[ 1828.960478] raw: 0xb7\n[ 1828.960502] raw: 0xb7\n[ 1828.960510] ===raw_msoc:183\n[ 1828.960891] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1828.960905] FG: calculate_average_current: current_now_ma=321777 averaged_iavg_ma=351379\n[ 1828.960923] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:321777, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1828.960934] FG: soc_monitor_work: soc:75, raw_soc:75, c:321777, s:2\n[ 1828.960993] raw: 0xb7\n[ 1828.961014] raw: 0xb7\n[ 1828.961021] ===raw_msoc:183\n[ 1839.200455] raw: 0xb7\n[ 1839.200479] raw: 0xb7\n[ 1839.200487] ===raw_msoc:183\n[ 1839.200634] raw: 0xb7\n[ 1839.200656] raw: 0xb7\n[ 1839.200663] ===raw_msoc:183\n[ 1839.201064] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1839.201078] FG: calculate_average_current: current_now_ma=379394 averaged_iavg_ma=358581\n[ 1839.201096] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:379394, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1839.201108] FG: soc_monitor_work: soc:75, raw_soc:75, c:379394, s:2\n[ 1849.440477] raw: 0xb7\n[ 1849.440501] raw: 0xb7\n[ 1849.440509] ===raw_msoc:183\n[ 1849.440906] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1849.440920] FG: calculate_average_current: current_now_ma=379882 averaged_iavg_ma=360351\n[ 1849.440938] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:379882, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1849.440949] FG: soc_monitor_work: soc:75, raw_soc:75, c:379882, s:2\n[ 1849.441008] raw: 0xb7\n[ 1849.441030] raw: 0xb7\n[ 1849.441037] ===raw_msoc:183\n[ 1857.555909] 10907     8.5 C/MHz    237 mW    5.4 J   46.0 I/mJ    22.9 s\n               1382: \n[ 1859.680498] raw: 0xb7\n[ 1859.680522] raw: 0xb7\n[ 1859.680530] ===raw_msoc:183\n[ 1859.680677] raw: 0xb7\n[ 1859.680699] raw: 0xb7\n[ 1859.680706] ===raw_msoc:183\n[ 1859.681084] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1859.681098] FG: calculate_average_current: current_now_ma=321288 averaged_iavg_ma=354675\n[ 1859.681116] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:321288, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1859.681128] FG: soc_monitor_work: soc:75, raw_soc:75, c:321288, s:2\n[ 1869.920483] raw: 0xb7\n[ 1869.920507] raw: 0xb7\n[ 1869.920515] ===raw_msoc:183\n[ 1869.920843] raw: 0xb7\n[ 1869.920866] raw: 0xb7\n[ 1869.920874] ===raw_msoc:183\n[ 1869.921071] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1869.921084] FG: calculate_average_current: current_now_ma=384277 averaged_iavg_ma=356933\n[ 1869.921102] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:384277, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1869.921113] FG: soc_monitor_work: soc:75, raw_soc:75, c:384277, s:2\n[ 1880.160528] raw: 0xb7\n[ 1880.160552] raw: 0xb7\n[ 1880.160560] ===raw_msoc:183\n[ 1880.161096] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1880.161110] FG: calculate_average_current: current_now_ma=383300 averaged_iavg_ma=364562\n[ 1880.161128] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:383300, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1880.161140] FG: soc_monitor_work: soc:75, raw_soc:75, c:383300, s:2\n[ 1880.161199] raw: 0xb7\n[ 1880.161221] raw: 0xb7\n[ 1880.161228] ===raw_msoc:183\n[ 1887.754831] 11716     8.5 C/MHz    265 mW    5.7 J   44.1 I/mJ    21.3 s\n               1478: \n[ 1890.400448] raw: 0xb7\n[ 1890.400472] raw: 0xb7\n[ 1890.400480] ===raw_msoc:183\n[ 1890.400627] raw: 0xb7\n[ 1890.400648] raw: 0xb7\n[ 1890.400655] ===raw_msoc:183\n[ 1890.401039] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1890.401053] FG: calculate_average_current: current_now_ma=321288 averaged_iavg_ma=358093\n[ 1890.401071] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:321288, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1890.401083] FG: soc_monitor_work: soc:75, raw_soc:75, c:321288, s:2\n[ 1900.640482] raw: 0xb7\n[ 1900.640506] raw: 0xb7\n[ 1900.640514] ===raw_msoc:183\n[ 1900.640913] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1900.640927] FG: calculate_average_current: current_now_ma=392577 averaged_iavg_ma=360473\n[ 1900.640945] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:392577, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1900.640956] FG: soc_monitor_work: soc:75, raw_soc:75, c:392577, s:2\n[ 1900.641016] raw: 0xb7\n[ 1900.641037] raw: 0xb7\n[ 1900.641045] ===raw_msoc:183\n[ 1910.880499] raw: 0xb7\n[ 1910.880524] raw: 0xb7\n[ 1910.880532] ===raw_msoc:183\n[ 1910.880679] raw: 0xb7\n[ 1910.880700] raw: 0xb7\n[ 1910.880707] ===raw_msoc:183\n[ 1910.881110] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1910.881123] FG: calculate_average_current: current_now_ma=390624 averaged_iavg_ma=369079\n[ 1910.881141] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:390624, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1910.881153] FG: soc_monitor_work: soc:75, raw_soc:75, c:390624, s:2\n[ 1915.949408] 12526     8.5 C/MHz    292 mW    5.8 J   42.9 I/mJ    20.0 s\n               1574: \n[ 1921.120477] raw: 0xb7\n[ 1921.120500] raw: 0xb7\n[ 1921.120508] ===raw_msoc:183\n[ 1921.120889] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1921.120902] FG: calculate_average_current: current_now_ma=322753 averaged_iavg_ma=361999\n[ 1921.120920] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:322753, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1921.120932] FG: soc_monitor_work: soc:75, raw_soc:75, c:322753, s:2\n[ 1921.120991] raw: 0xb7\n[ 1921.121013] raw: 0xb7\n[ 1921.121020] ===raw_msoc:183\n[ 1931.360454] raw: 0xb7\n[ 1931.360477] raw: 0xb7\n[ 1931.360485] ===raw_msoc:183\n[ 1931.360632] raw: 0xb7\n[ 1931.360654] raw: 0xb7\n[ 1931.360661] ===raw_msoc:183\n[ 1931.361059] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1931.361073] FG: calculate_average_current: current_now_ma=396972 averaged_iavg_ma=364135\n[ 1931.361091] FG: fg_battery_soc_smooth_tracking: soc:75, last_soc:75, raw_soc:75, soc_changed:1, batt_ma:396972, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1931.361102] FG: soc_monitor_work: soc:75, raw_soc:75, c:396972, s:2\n[ 1938.714354] raw: 0xb6\n[ 1938.726123] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4073 Vbatt avg=4073 Vbatt res=673\n[ 1938.726148] raw: 0xb6\n[ 1938.726169] raw: 0xb6\n[ 1938.726177] ===raw_msoc:182\n[ 1938.726189] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 398437\n[ 1938.730351] raw: 0xb6\n[ 1938.730523] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 2d3f7cec\n[ 1938.730583] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[ 1938.730784] raw: 0xb6\n[ 1938.730793] ===raw_msoc:182\n[ 1938.731005] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4073 Vbatt avg=4073 Vbatt res=673\n[ 1938.731029] raw: 0xb6\n[ 1938.731050] raw: 0xb6\n[ 1938.731057] ===raw_msoc:182\n[ 1938.731069] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 398437\n[ 1938.731080] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1938.732693] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 342 FCC = 6000000uA FV = 4480000uV\n[ 1938.732705] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[ 1938.732731] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 342 max voltage= 4480000uv FV = 4480000uV\n[ 1938.732967] raw: 0xb6\n[ 1938.732989] raw: 0xb6\n[ 1938.732997] ===raw_msoc:182\n[ 1941.600478] raw: 0xb6\n[ 1941.600502] raw: 0xb6\n[ 1941.600510] ===raw_msoc:182\n[ 1941.600838] raw: 0xb6\n[ 1941.600861] raw: 0xb6\n[ 1941.600868] ===raw_msoc:182\n[ 1941.601065] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1941.601078] FG: calculate_average_current: current_now_ma=399413 averaged_iavg_ma=373901\n[ 1941.601101] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:399413, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1941.601112] FG: soc_monitor_work: soc:74, raw_soc:74, c:399413, s:2\n[ 1941.605082] raw: 0xb6\n[ 1941.605253] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 2d3dd97e\n[ 1941.605312] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[ 1941.605508] raw: 0xb6\n[ 1941.605517] ===raw_msoc:182\n[ 1941.605731] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4072 Vbatt avg=4073 Vbatt res=673\n[ 1941.605755] raw: 0xb6\n[ 1941.605776] raw: 0xb6\n[ 1941.605783] ===raw_msoc:182\n[ 1941.605795] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 399413\n[ 1941.605807] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 1941.607237] raw: 0xb6\n[ 1941.607261] raw: 0xb6\n[ 1941.607268] ===raw_msoc:182\n[ 1943.140566] 13347     8.5 C/MHz    323 mW    6.1 J   41.3 I/mJ    18.7 s\n               1670: \n[ 1951.840524] raw: 0xb6\n[ 1951.840549] raw: 0xb6\n[ 1951.840557] ===raw_msoc:182\n[ 1951.840864] raw: 0xb6\n[ 1951.840887] raw: 0xb6\n[ 1951.840895] ===raw_msoc:182\n[ 1951.841091] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1951.841104] FG: calculate_average_current: current_now_ma=405761 averaged_iavg_ma=376586\n[ 1951.841122] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:0, batt_ma:405761, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1951.841134] FG: soc_monitor_work: soc:74, raw_soc:74, c:405761, s:2\n[ 1962.080534] raw: 0xb6\n[ 1962.080558] raw: 0xb6\n[ 1962.080566] ===raw_msoc:182\n[ 1962.080894] raw: 0xb6\n[ 1962.080917] raw: 0xb6\n[ 1962.080925] ===raw_msoc:182\n[ 1962.081120] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1962.081133] FG: calculate_average_current: current_now_ma=407714 averaged_iavg_ma=379638\n[ 1962.081151] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:0, batt_ma:407714, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1962.081163] FG: soc_monitor_work: soc:74, raw_soc:74, c:407714, s:2\n[ 1969.328175] 14161     8.5 C/MHz    358 mW    6.3 J   39.5 I/mJ    17.7 s\n               1766: \n[ 1972.320482] raw: 0xb6\n[ 1972.320506] raw: 0xb6\n[ 1972.320514] ===raw_msoc:182\n[ 1972.320915] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1972.320929] FG: calculate_average_current: current_now_ma=322753 averaged_iavg_ma=379821\n[ 1972.320946] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:0, batt_ma:322753, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1972.320958] FG: soc_monitor_work: soc:74, raw_soc:74, c:322753, s:2\n[ 1972.321017] raw: 0xb6\n[ 1972.321039] raw: 0xb6\n[ 1972.321046] ===raw_msoc:182\n[ 1982.560451] raw: 0xb6\n[ 1982.560475] raw: 0xb6\n[ 1982.560483] ===raw_msoc:182\n[ 1982.560630] raw: 0xb6\n[ 1982.560652] raw: 0xb6\n[ 1982.560658] ===raw_msoc:182\n[ 1982.561043] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1982.561057] FG: calculate_average_current: current_now_ma=416015 averaged_iavg_ma=382751\n[ 1982.561075] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:0, batt_ma:416015, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1982.561086] FG: soc_monitor_work: soc:74, raw_soc:74, c:416015, s:2\n[ 1992.800484] raw: 0xb6\n[ 1992.800509] raw: 0xb6\n[ 1992.800516] ===raw_msoc:182\n[ 1992.800845] raw: 0xb6\n[ 1992.800868] raw: 0xb6\n[ 1992.800876] ===raw_msoc:182\n[ 1992.801074] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 1992.801087] FG: calculate_average_current: current_now_ma=415527 averaged_iavg_ma=385864\n[ 1992.801105] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:0, batt_ma:415527, smooth_low_batt_soc:0, smooth_soc: 0\n[ 1992.801116] FG: soc_monitor_work: soc:74, raw_soc:74, c:415527, s:2\n[ 1994.513059] 14997     8.5 C/MHz    391 mW    6.5 J   38.3 I/mJ    16.7 s\n               1862: \n[ 2003.040482] raw: 0xb6\n[ 2003.040506] raw: 0xb6\n[ 2003.040513] ===raw_msoc:182\n[ 2003.040912] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2003.040925] FG: calculate_average_current: current_now_ma=427245 averaged_iavg_ma=398925\n[ 2003.040943] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:427245, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2003.040955] FG: soc_monitor_work: soc:74, raw_soc:74, c:427245, s:2\n[ 2003.041014] raw: 0xb6\n[ 2003.041035] raw: 0xb6\n[ 2003.041042] ===raw_msoc:182\n[ 2013.280552] raw: 0xb6\n[ 2013.280576] raw: 0xb6\n[ 2013.280585] ===raw_msoc:182\n[ 2013.280730] raw: 0xb6\n[ 2013.280752] raw: 0xb6\n[ 2013.280759] ===raw_msoc:182\n[ 2013.281143] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2013.281157] FG: calculate_average_current: current_now_ma=429198 averaged_iavg_ma=402953\n[ 2013.281174] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:429198, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2013.281186] FG: soc_monitor_work: soc:74, raw_soc:74, c:429198, s:2\n[ 2018.694056] 15794     8.5 C/MHz    446 mW    7.1 J   35.4 I/mJ    15.8 s\n               1958: \n[ 2023.520484] raw: 0xb6\n[ 2023.520508] raw: 0xb6\n[ 2023.520516] ===raw_msoc:182\n[ 2023.520848] raw: 0xb6\n[ 2023.520871] raw: 0xb6\n[ 2023.520879] ===raw_msoc:182\n[ 2023.521076] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2023.521089] FG: calculate_average_current: current_now_ma=323730 averaged_iavg_ma=393493\n[ 2023.521107] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:323730, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2023.521118] FG: soc_monitor_work: soc:74, raw_soc:74, c:323730, s:2\n[ 2033.760477] raw: 0xb6\n[ 2033.760501] raw: 0xb6\n[ 2033.760508] ===raw_msoc:182\n[ 2033.760907] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2033.760921] FG: calculate_average_current: current_now_ma=433593 averaged_iavg_ma=396972\n[ 2033.760939] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:433593, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2033.760951] FG: soc_monitor_work: soc:74, raw_soc:74, c:433593, s:2\n[ 2033.761010] raw: 0xb6\n[ 2033.761032] raw: 0xb6\n[ 2033.761039] ===raw_msoc:182\n[ 2042.876144] 16622     8.5 C/MHz    443 mW    6.7 J   37.5 I/mJ    15.1 s\n               2054: \n[ 2044.000450] raw: 0xb6\n[ 2044.000474] raw: 0xb6\n[ 2044.000482] ===raw_msoc:182\n[ 2044.000629] raw: 0xb6\n[ 2044.000651] raw: 0xb6\n[ 2044.000658] ===raw_msoc:182\n[ 2044.001041] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2044.001055] FG: calculate_average_current: current_now_ma=322265 averaged_iavg_ma=386291\n[ 2044.001073] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:322265, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2044.001085] FG: soc_monitor_work: soc:74, raw_soc:74, c:322265, s:2\n[ 2054.240483] raw: 0xb6\n[ 2054.240507] raw: 0xb6\n[ 2054.240515] ===raw_msoc:182\n[ 2054.240911] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2054.240925] FG: calculate_average_current: current_now_ma=443359 averaged_iavg_ma=401367\n[ 2054.240943] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:443359, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2054.240954] FG: soc_monitor_work: soc:74, raw_soc:74, c:443359, s:2\n[ 2054.241014] raw: 0xb6\n[ 2054.241036] raw: 0xb6\n[ 2054.241043] ===raw_msoc:182\n[ 2064.480501] raw: 0xb6\n[ 2064.480525] raw: 0xb6\n[ 2064.480533] ===raw_msoc:182\n[ 2064.480680] raw: 0xb6\n[ 2064.480702] raw: 0xb6\n[ 2064.480709] ===raw_msoc:182\n[ 2064.481105] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2064.481119] FG: calculate_average_current: current_now_ma=445800 averaged_iavg_ma=405090\n[ 2064.481137] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:445800, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2064.481148] FG: soc_monitor_work: soc:74, raw_soc:74, c:445800, s:2\n[ 2066.053887] 17439     8.5 C/MHz    508 mW    7.3 J   34.3 I/mJ    14.3 s\n               2150: \n[ 2074.720482] raw: 0xb6\n[ 2074.720505] raw: 0xb6\n[ 2074.720513] ===raw_msoc:182\n[ 2074.720896] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2074.720910] FG: calculate_average_current: current_now_ma=322753 averaged_iavg_ma=393493\n[ 2074.720928] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:322753, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2074.720939] FG: soc_monitor_work: soc:74, raw_soc:74, c:322753, s:2\n[ 2074.720998] raw: 0xb6\n[ 2074.721020] raw: 0xb6\n[ 2074.721027] ===raw_msoc:182\n[ 2084.960500] raw: 0xb6\n[ 2084.960524] raw: 0xb6\n[ 2084.960532] ===raw_msoc:182\n[ 2084.960680] raw: 0xb6\n[ 2084.960701] raw: 0xb6\n[ 2084.960708] ===raw_msoc:182\n[ 2084.961104] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2084.961117] FG: calculate_average_current: current_now_ma=458007 averaged_iavg_ma=397338\n[ 2084.961135] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:458007, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2084.961147] FG: soc_monitor_work: soc:74, raw_soc:74, c:458007, s:2\n[ 2088.230622] 18228     8.5 C/MHz    556 mW    7.6 J   32.8 I/mJ    13.7 s\n               2246: \n[ 2095.200477] raw: 0xb6\n[ 2095.200501] raw: 0xb6\n[ 2095.200509] ===raw_msoc:182\n[ 2095.200907] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2095.200921] FG: calculate_average_current: current_now_ma=323242 averaged_iavg_ma=384094\n[ 2095.200938] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:323242, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2095.200950] FG: soc_monitor_work: soc:74, raw_soc:74, c:323242, s:2\n[ 2095.201009] raw: 0xb6\n[ 2095.201031] raw: 0xb6\n[ 2095.201038] ===raw_msoc:182\n[ 2105.440452] raw: 0xb5\n[ 2105.440476] raw: 0xb5\n[ 2105.440483] ===raw_msoc:181\n[ 2105.440630] raw: 0xb5\n[ 2105.440652] raw: 0xb5\n[ 2105.440659] ===raw_msoc:181\n[ 2105.441042] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2105.441056] FG: calculate_average_current: current_now_ma=471191 averaged_iavg_ma=402526\n[ 2105.441074] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:471191, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2105.441086] FG: soc_monitor_work: soc:74, raw_soc:74, c:471191, s:2\n[ 2110.405647] 19056     8.5 C/MHz    611 mW    8.0 J   31.2 I/mJ    13.1 s\n               2342: \n[ 2115.680532] raw: 0xb5\n[ 2115.680556] raw: 0xb5\n[ 2115.680564] ===raw_msoc:181\n[ 2115.680892] raw: 0xb5\n[ 2115.680916] raw: 0xb5\n[ 2115.680923] ===raw_msoc:181\n[ 2115.681122] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2115.681134] FG: calculate_average_current: current_now_ma=323242 averaged_iavg_ma=388732\n[ 2115.681152] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:323242, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2115.681163] FG: soc_monitor_work: soc:74, raw_soc:74, c:323242, s:2\n[ 2125.920479] raw: 0xb5\n[ 2125.920503] raw: 0xb5\n[ 2125.920511] ===raw_msoc:181\n[ 2125.920908] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2125.920922] FG: calculate_average_current: current_now_ma=483398 averaged_iavg_ma=408874\n[ 2125.920939] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:483398, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2125.920951] FG: soc_monitor_work: soc:74, raw_soc:74, c:483398, s:2\n[ 2125.921010] raw: 0xb5\n[ 2125.921031] raw: 0xb5\n[ 2125.921038] ===raw_msoc:181\n[ 2131.577736] 19859     8.5 C/MHz    665 mW    8.4 J   29.8 I/mJ    12.6 s\n               2419: \n[ 2136.160450] raw: 0xb5\n[ 2136.160474] raw: 0xb5\n[ 2136.160481] ===raw_msoc:181\n[ 2136.160629] raw: 0xb5\n[ 2136.160650] raw: 0xb5\n[ 2136.160657] ===raw_msoc:181\n[ 2136.161040] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2136.161053] FG: calculate_average_current: current_now_ma=324706 averaged_iavg_ma=394042\n[ 2136.161071] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:324706, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2136.161083] FG: soc_monitor_work: soc:74, raw_soc:74, c:324706, s:2\n[ 2143.084081] raw: 0xb5\n[ 2143.095837] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4063 Vbatt avg=4066 Vbatt res=666\n[ 2143.095861] raw: 0xb5\n[ 2143.095883] raw: 0xb5\n[ 2143.095890] ===raw_msoc:181\n[ 2143.095902] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 496093\n[ 2143.099952] raw: 0xb5\n[ 2143.100254] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 2cf27bb2\n[ 2143.100314] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[ 2143.100524] raw: 0xb5\n[ 2143.100533] ===raw_msoc:181\n[ 2143.100744] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4063 Vbatt avg=4066 Vbatt res=666\n[ 2143.100767] raw: 0xb5\n[ 2143.100788] raw: 0xb5\n[ 2143.100795] ===raw_msoc:181\n[ 2143.100807] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 496093\n[ 2143.100819] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 2143.102419] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 345 FCC = 6000000uA FV = 4480000uV\n[ 2143.102432] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[ 2143.102458] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 345 max voltage= 4480000uv FV = 4480000uV\n[ 2143.102691] raw: 0xb5\n[ 2143.102713] raw: 0xb5\n[ 2143.102721] ===raw_msoc:181\n[ 2146.400536] raw: 0xb5\n[ 2146.400560] raw: 0xb5\n[ 2146.400568] ===raw_msoc:181\n[ 2146.400896] raw: 0xb5\n[ 2146.400919] raw: 0xb5\n[ 2146.400927] ===raw_msoc:181\n[ 2146.401123] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2146.401135] FG: calculate_average_current: current_now_ma=494628 averaged_iavg_ma=400146\n[ 2146.401153] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:494628, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2146.401165] FG: soc_monitor_work: soc:74, raw_soc:74, c:494628, s:2\n[ 2152.754356] CPU4: shutdown\n[ 2152.754445] psci: CPU4 killed.\n[ 2152.757594] Detected PIPT I-cache on CPU7\n[ 2152.757620] arch_timer: CPU7: Trapping CNTVCT access\n[ 2152.757625] CPU7: Booted secondary processor 0x0000000700 [0x411fd0d0]\n[ 2152.764169] 20487     8.5 C/MHz    710 mW    8.7 J   28.8 I/mJ    12.2 s\n               \n               \n               ===== CPU 7 =====\n               Frequencies: 844 960 1075 1190 1305 1401 1516 1632 1747 1862 1977 2073 2169 2265 2361 2457 2553 2649 2745 2841\n               \n                844: \n[ 2156.640485] raw: 0xb5\n[ 2156.640509] raw: 0xb5\n[ 2156.640517] ===raw_msoc:181\n[ 2156.640928] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2156.640941] FG: calculate_average_current: current_now_ma=322753 averaged_iavg_ma=400146\n[ 2156.640959] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:322753, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2156.640971] FG: soc_monitor_work: soc:74, raw_soc:74, c:322753, s:2\n[ 2156.641030] raw: 0xb5\n[ 2156.641052] raw: 0xb5\n[ 2156.641059] ===raw_msoc:181\n[ 2166.880434] raw: 0xb5\n[ 2166.880457] raw: 0xb5\n[ 2166.880465] ===raw_msoc:181\n[ 2166.880613] raw: 0xb5\n[ 2166.880635] raw: 0xb5\n[ 2166.880642] ===raw_msoc:181\n[ 2166.881028] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2166.881042] FG: calculate_average_current: current_now_ma=361816 averaged_iavg_ma=388122\n[ 2166.881060] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:361816, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2166.881072] FG: soc_monitor_work: soc:74, raw_soc:74, c:361816, s:2\n[ 2177.120409] raw: 0xb5\n[ 2177.120433] raw: 0xb5\n[ 2177.120441] ===raw_msoc:181\n[ 2177.120849] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2177.120862] FG: calculate_average_current: current_now_ma=362304 averaged_iavg_ma=393005\n[ 2177.120880] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:362304, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2177.120892] FG: soc_monitor_work: soc:74, raw_soc:74, c:362304, s:2\n[ 2177.120952] raw: 0xb5\n[ 2177.120974] raw: 0xb5\n[ 2177.120981] ===raw_msoc:181\n[ 2187.360376] raw: 0xb5\n[ 2187.360400] raw: 0xb5\n[ 2187.360408] ===raw_msoc:181\n[ 2187.360555] raw: 0xb5\n[ 2187.360576] raw: 0xb5\n[ 2187.360583] ===raw_msoc:181\n[ 2187.360999] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2187.361012] FG: calculate_average_current: current_now_ma=361327 averaged_iavg_ma=379272\n[ 2187.361030] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:361327, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2187.361042] FG: soc_monitor_work: soc:74, raw_soc:74, c:361327, s:2\n[ 2196.005336]  7160     8.5 C/MHz    172 mW    6.0 J   41.6 I/mJ    34.9 s\n                960: \n[ 2197.600486] raw: 0xb5\n[ 2197.600510] raw: 0xb5\n[ 2197.600518] ===raw_msoc:181\n[ 2197.600908] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2197.600922] FG: calculate_average_current: current_now_ma=322753 averaged_iavg_ma=379211\n[ 2197.600940] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:322753, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2197.600951] FG: soc_monitor_work: soc:74, raw_soc:74, c:322753, s:2\n[ 2197.601011] raw: 0xb5\n[ 2197.601032] raw: 0xb5\n[ 2197.601039] ===raw_msoc:181\n[ 2207.840380] raw: 0xb5\n[ 2207.840403] raw: 0xb5\n[ 2207.840411] ===raw_msoc:181\n[ 2207.840558] raw: 0xb5\n[ 2207.840580] raw: 0xb5\n[ 2207.840587] ===raw_msoc:181\n[ 2207.840993] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2207.841007] FG: calculate_average_current: current_now_ma=367675 averaged_iavg_ma=364745\n[ 2207.841025] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:367675, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2207.841036] FG: soc_monitor_work: soc:74, raw_soc:74, c:367675, s:2\n[ 2218.080507] raw: 0xb5\n[ 2218.080531] raw: 0xb5\n[ 2218.080539] ===raw_msoc:181\n[ 2218.080940] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2218.080954] FG: calculate_average_current: current_now_ma=368652 averaged_iavg_ma=370239\n[ 2218.080971] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:368652, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2218.080983] FG: soc_monitor_work: soc:74, raw_soc:74, c:368652, s:2\n[ 2218.081042] raw: 0xb5\n[ 2218.081064] raw: 0xb5\n[ 2218.081071] ===raw_msoc:181\n[ 2228.320385] raw: 0xb5\n[ 2228.320409] raw: 0xb5\n[ 2228.320417] ===raw_msoc:181\n[ 2228.320564] raw: 0xb5\n[ 2228.320585] raw: 0xb5\n[ 2228.320593] ===raw_msoc:181\n[ 2228.320990] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2228.321003] FG: calculate_average_current: current_now_ma=367187 averaged_iavg_ma=354308\n[ 2228.321021] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:367187, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2228.321033] FG: soc_monitor_work: soc:74, raw_soc:74, c:367187, s:2\n[ 2235.232472]  8135     8.5 C/MHz    191 mW    5.9 J   42.7 I/mJ    30.7 s\n               1075: \n[ 2238.560489] raw: 0xb5\n[ 2238.560513] raw: 0xb5\n[ 2238.560521] ===raw_msoc:181\n[ 2238.560932] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2238.560946] FG: calculate_average_current: current_now_ma=324218 averaged_iavg_ma=354492\n[ 2238.560963] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:324218, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2238.560975] FG: soc_monitor_work: soc:74, raw_soc:74, c:324218, s:2\n[ 2238.561035] raw: 0xb5\n[ 2238.561056] raw: 0xb5\n[ 2238.561063] ===raw_msoc:181\n[ 2248.800380] raw: 0xb5\n[ 2248.800404] raw: 0xb5\n[ 2248.800412] ===raw_msoc:181\n[ 2248.800559] raw: 0xb5\n[ 2248.800580] raw: 0xb5\n[ 2248.800587] ===raw_msoc:181\n[ 2248.801002] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2248.801015] FG: calculate_average_current: current_now_ma=373534 averaged_iavg_ma=355956\n[ 2248.801033] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:373534, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2248.801045] FG: soc_monitor_work: soc:74, raw_soc:74, c:373534, s:2\n[ 2259.040407] raw: 0xb5\n[ 2259.040431] raw: 0xb5\n[ 2259.040439] ===raw_msoc:181\n[ 2259.040827] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2259.040841] FG: calculate_average_current: current_now_ma=372558 averaged_iavg_ma=357238\n[ 2259.040859] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:372558, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2259.040871] FG: soc_monitor_work: soc:74, raw_soc:74, c:372558, s:2\n[ 2259.040930] raw: 0xb5\n[ 2259.040951] raw: 0xb5\n[ 2259.040958] ===raw_msoc:181\n[ 2269.280438] raw: 0xb5\n[ 2269.280461] raw: 0xb5\n[ 2269.280469] ===raw_msoc:181\n[ 2269.280615] raw: 0xb5\n[ 2269.280637] raw: 0xb5\n[ 2269.280643] ===raw_msoc:181\n[ 2269.281048] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2269.281061] FG: calculate_average_current: current_now_ma=374023 averaged_iavg_ma=358825\n[ 2269.281079] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:374023, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2269.281091] FG: soc_monitor_work: soc:74, raw_soc:74, c:374023, s:2\n[ 2271.451297]  9117     8.5 C/MHz    219 mW    6.0 J   41.6 I/mJ    27.4 s\n               1190: \n[ 2279.520492] raw: 0xb4\n[ 2279.520515] raw: 0xb4\n[ 2279.520523] ===raw_msoc:180\n[ 2279.520932] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2279.520946] FG: calculate_average_current: current_now_ma=323242 averaged_iavg_ma=358886\n[ 2279.520964] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:323242, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2279.520975] FG: soc_monitor_work: soc:74, raw_soc:74, c:323242, s:2\n[ 2279.521035] raw: 0xb4\n[ 2279.521056] raw: 0xb4\n[ 2279.521064] ===raw_msoc:180\n[ 2289.760379] raw: 0xb4\n[ 2289.760403] raw: 0xb4\n[ 2289.760411] ===raw_msoc:180\n[ 2289.760558] raw: 0xb4\n[ 2289.760579] raw: 0xb4\n[ 2289.760586] ===raw_msoc:180\n[ 2289.760983] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2289.760996] FG: calculate_average_current: current_now_ma=380370 averaged_iavg_ma=360473\n[ 2289.761014] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:380370, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2289.761026] FG: soc_monitor_work: soc:74, raw_soc:74, c:380370, s:2\n[ 2300.000411] raw: 0xb4\n[ 2300.000434] raw: 0xb4\n[ 2300.000442] ===raw_msoc:180\n[ 2300.000848] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2300.000862] FG: calculate_average_current: current_now_ma=380370 averaged_iavg_ma=360473\n[ 2300.000879] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:380370, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2300.000891] FG: soc_monitor_work: soc:74, raw_soc:74, c:380370, s:2\n[ 2300.000950] raw: 0xb4\n[ 2300.000972] raw: 0xb4\n[ 2300.000979] ===raw_msoc:180\n[ 2304.656464] 10089     8.5 C/MHz    244 mW    6.0 J   41.3 I/mJ    24.8 s\n               1305: \n[ 2310.240461] raw: 0xb4\n[ 2310.240485] raw: 0xb4\n[ 2310.240493] ===raw_msoc:180\n[ 2310.240641] raw: 0xb4\n[ 2310.240663] raw: 0xb4\n[ 2310.240670] ===raw_msoc:180\n[ 2310.241090] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2310.241103] FG: calculate_average_current: current_now_ma=323730 averaged_iavg_ma=354858\n[ 2310.241121] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:323730, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2310.241133] FG: soc_monitor_work: soc:74, raw_soc:74, c:323730, s:2\n[ 2320.480460] raw: 0xb4\n[ 2320.480484] raw: 0xb4\n[ 2320.480492] ===raw_msoc:180\n[ 2320.480880] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2320.480893] FG: calculate_average_current: current_now_ma=387206 averaged_iavg_ma=357360\n[ 2320.480911] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:387206, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2320.480923] FG: soc_monitor_work: soc:74, raw_soc:74, c:387206, s:2\n[ 2320.480982] raw: 0xb4\n[ 2320.481003] raw: 0xb4\n[ 2320.481010] ===raw_msoc:180\n[ 2330.720384] raw: 0xb4\n[ 2330.720408] raw: 0xb4\n[ 2330.720416] ===raw_msoc:180\n[ 2330.720563] raw: 0xb4\n[ 2330.720584] raw: 0xb4\n[ 2330.720591] ===raw_msoc:180\n[ 2330.720995] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2330.721008] FG: calculate_average_current: current_now_ma=387206 averaged_iavg_ma=357360\n[ 2330.721025] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:387206, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2330.721037] FG: soc_monitor_work: soc:74, raw_soc:74, c:387206, s:2\n[ 2335.857469] 11067     8.5 C/MHz    269 mW    6.1 J   41.1 I/mJ    22.6 s\n               1401: \n[ 2340.960488] raw: 0xb4\n[ 2340.960512] raw: 0xb4\n[ 2340.960520] ===raw_msoc:180\n[ 2340.960931] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2340.960945] FG: calculate_average_current: current_now_ma=324218 averaged_iavg_ma=357360\n[ 2340.960963] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:324218, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2340.960975] FG: soc_monitor_work: soc:74, raw_soc:74, c:324218, s:2\n[ 2340.961034] raw: 0xb4\n[ 2340.961055] raw: 0xb4\n[ 2340.961062] ===raw_msoc:180\n[ 2351.200428] raw: 0xb4\n[ 2351.200452] raw: 0xb4\n[ 2351.200460] ===raw_msoc:180\n[ 2351.200607] raw: 0xb4\n[ 2351.200629] raw: 0xb4\n[ 2351.200636] ===raw_msoc:180\n[ 2351.201031] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2351.201044] FG: calculate_average_current: current_now_ma=391113 averaged_iavg_ma=359558\n[ 2351.201062] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:391113, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2351.201074] FG: soc_monitor_work: soc:74, raw_soc:74, c:391113, s:2\n[ 2361.440411] raw: 0xb4\n[ 2361.440435] raw: 0xb4\n[ 2361.440443] ===raw_msoc:180\n[ 2361.440850] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2361.440864] FG: calculate_average_current: current_now_ma=392089 averaged_iavg_ma=361999\n[ 2361.440882] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:392089, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2361.440894] FG: soc_monitor_work: soc:74, raw_soc:74, c:392089, s:2\n[ 2361.440953] raw: 0xb4\n[ 2361.440974] raw: 0xb4\n[ 2361.440981] ===raw_msoc:180\n[ 2365.052167] 11875     8.5 C/MHz    294 mW    6.2 J   40.4 I/mJ    21.1 s\n               1516: \n[ 2369.504242] raw: 0xb4\n[ 2369.516020] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4066 Vbatt avg=4064 Vbatt res=664\n[ 2369.516045] raw: 0xb4\n[ 2369.516066] raw: 0xb4\n[ 2369.516074] ===raw_msoc:180\n[ 2369.516085] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 321288\n[ 2369.517941] raw: 0xb4\n[ 2369.517965] raw: 0xb4\n[ 2369.517973] ===raw_msoc:180\n[ 2369.522182] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 345 FCC = 6000000uA FV = 4480000uV\n[ 2369.522195] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[ 2369.522222] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 345 max voltage= 4480000uv FV = 4480000uV\n[ 2369.522872] raw: 0xb4\n[ 2369.522895] raw: 0xb4\n[ 2369.522903] ===raw_msoc:180\n[ 2369.523039] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 2ca3d709\n[ 2369.523098] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[ 2369.523469] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4066 Vbatt avg=4064 Vbatt res=664\n[ 2369.523493] raw: 0xb4\n[ 2369.523514] raw: 0xb4\n[ 2369.523521] ===raw_msoc:180\n[ 2369.523533] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 321288\n[ 2369.523545] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 2371.680514] raw: 0xb4\n[ 2371.680538] raw: 0xb4\n[ 2371.680546] ===raw_msoc:180\n[ 2371.680693] raw: 0xb4\n[ 2371.680715] raw: 0xb4\n[ 2371.680722] ===raw_msoc:180\n[ 2371.681178] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2371.681192] FG: calculate_average_current: current_now_ma=325683 averaged_iavg_ma=355956\n[ 2371.681210] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:325683, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2371.681222] FG: soc_monitor_work: soc:74, raw_soc:74, c:325683, s:2\n[ 2381.920409] raw: 0xb4\n[ 2381.920433] raw: 0xb4\n[ 2381.920441] ===raw_msoc:180\n[ 2381.920828] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2381.920841] FG: calculate_average_current: current_now_ma=400390 averaged_iavg_ma=365600\n[ 2381.920859] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:400390, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2381.920871] FG: soc_monitor_work: soc:74, raw_soc:74, c:400390, s:2\n[ 2381.920930] raw: 0xb4\n[ 2381.920952] raw: 0xb4\n[ 2381.920959] ===raw_msoc:180\n[ 2392.160383] raw: 0xb4\n[ 2392.160406] raw: 0xb4\n[ 2392.160414] ===raw_msoc:180\n[ 2392.160562] raw: 0xb4\n[ 2392.160583] raw: 0xb4\n[ 2392.160590] ===raw_msoc:180\n[ 2392.160994] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2392.161008] FG: calculate_average_current: current_now_ma=401366 averaged_iavg_ma=368224\n[ 2392.161026] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:401366, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2392.161037] FG: soc_monitor_work: soc:74, raw_soc:74, c:401366, s:2\n[ 2393.242320] 12863     8.5 C/MHz    326 mW    6.3 J   39.4 I/mJ    19.4 s\n               1632: \n[ 2402.400410] raw: 0xb4\n[ 2402.400434] raw: 0xb4\n[ 2402.400442] ===raw_msoc:180\n[ 2402.400846] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2402.400859] FG: calculate_average_current: current_now_ma=405761 averaged_iavg_ma=378478\n[ 2402.400877] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:405761, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2402.400889] FG: soc_monitor_work: soc:74, raw_soc:74, c:405761, s:2\n[ 2402.400948] raw: 0xb4\n[ 2402.400970] raw: 0xb4\n[ 2402.400977] ===raw_msoc:180\n[ 2412.640381] raw: 0xb4\n[ 2412.640405] raw: 0xb4\n[ 2412.640413] ===raw_msoc:180\n[ 2412.640560] raw: 0xb4\n[ 2412.640582] raw: 0xb4\n[ 2412.640589] ===raw_msoc:180\n[ 2412.640976] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2412.640989] FG: calculate_average_current: current_now_ma=409667 averaged_iavg_ma=381286\n[ 2412.641007] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:409667, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2412.641018] FG: soc_monitor_work: soc:74, raw_soc:74, c:409667, s:2\n[ 2420.432963] 13825     8.5 C/MHz    361 mW    6.5 J   38.3 I/mJ    18.1 s\n               1747: \n[ 2422.880547] raw: 0xb4\n[ 2422.880571] raw: 0xb4\n[ 2422.880579] ===raw_msoc:180\n[ 2422.880996] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2422.881009] FG: calculate_average_current: current_now_ma=324706 averaged_iavg_ma=381347\n[ 2422.881027] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:324706, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2422.881039] FG: soc_monitor_work: soc:74, raw_soc:74, c:324706, s:2\n[ 2422.881098] raw: 0xb4\n[ 2422.881119] raw: 0xb4\n[ 2422.881127] ===raw_msoc:180\n[ 2433.120379] raw: 0xb4\n[ 2433.120402] raw: 0xb4\n[ 2433.120410] ===raw_msoc:180\n[ 2433.120557] raw: 0xb4\n[ 2433.120579] raw: 0xb4\n[ 2433.120586] ===raw_msoc:180\n[ 2433.120998] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2433.121012] FG: calculate_average_current: current_now_ma=418945 averaged_iavg_ma=384826\n[ 2433.121029] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:418945, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2433.121041] FG: soc_monitor_work: soc:74, raw_soc:74, c:418945, s:2\n[ 2443.360406] raw: 0xb4\n[ 2443.360430] raw: 0xb4\n[ 2443.360438] ===raw_msoc:180\n[ 2443.360825] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2443.360838] FG: calculate_average_current: current_now_ma=416503 averaged_iavg_ma=387878\n[ 2443.360856] FG: fg_battery_soc_smooth_tracking: soc:74, last_soc:74, raw_soc:74, soc_changed:1, batt_ma:416503, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2443.360868] FG: soc_monitor_work: soc:74, raw_soc:74, c:416503, s:2\n[ 2443.360927] raw: 0xb4\n[ 2443.360949] raw: 0xb4\n[ 2443.360956] ===raw_msoc:180\n[ 2445.617106] 14812     8.5 C/MHz    381 mW    6.4 J   38.9 I/mJ    16.9 s\n               1862: \n[ 2453.600468] raw: 0xb3\n[ 2453.600492] raw: 0xb3\n[ 2453.600500] ===raw_msoc:179\n[ 2453.600647] raw: 0xb3\n[ 2453.600668] raw: 0xb3\n[ 2453.600676] ===raw_msoc:179\n[ 2453.601084] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2453.601097] FG: calculate_average_current: current_now_ma=323242 averaged_iavg_ma=387573\n[ 2453.601120] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:1, batt_ma:323242, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2453.601132] FG: soc_monitor_work: soc:73, raw_soc:73, c:323242, s:2\n[ 2453.604951] raw: 0xb3\n[ 2453.604976] raw: 0xb3\n[ 2453.604984] ===raw_msoc:179\n[ 2453.605782] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 2c86594a\n[ 2453.605841] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[ 2453.607364] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4064 Vbatt avg=4062 Vbatt res=662\n[ 2453.607389] raw: 0xb3\n[ 2453.607410] raw: 0xb3\n[ 2453.607418] ===raw_msoc:179\n[ 2453.607429] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 323242\n[ 2453.607441] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 2453.607834] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 347 FCC = 6000000uA FV = 4480000uV\n[ 2453.607846] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[ 2453.607873] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 347 max voltage= 4480000uv FV = 4480000uV\n[ 2453.608095] raw: 0xb3\n[ 2453.608117] raw: 0xb3\n[ 2453.608124] ===raw_msoc:179\n[ 2463.840406] raw: 0xb3\n[ 2463.840429] raw: 0xb3\n[ 2463.840438] ===raw_msoc:179\n[ 2463.840841] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2463.840855] FG: calculate_average_current: current_now_ma=430175 averaged_iavg_ma=391296\n[ 2463.840872] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:0, batt_ma:430175, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2463.840884] FG: soc_monitor_work: soc:73, raw_soc:73, c:430175, s:2\n[ 2463.840943] raw: 0xb3\n[ 2463.840965] raw: 0xb3\n[ 2463.840972] ===raw_msoc:179\n[ 2469.796843] 15779     8.5 C/MHz    440 mW    7.0 J   35.8 I/mJ    15.9 s\n               1977: \n[ 2470.881311] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 03 78 04 02 03 07 a0 fd 30 00 a3 02 0b 0a 00 00 55 \n[ 2470.881633] smb:01:1200 00 ff ff fe 00 3d 3d 00 00 00 00 00 00 00 00 01 06 00 01 00 \n[ 2470.882460] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 00 00 40 00 00 a3 00 00 00 00 07 00 18 38 11 b0 03 00 00 7f 00 00 00 00 00 00 02 54 00 00 00 00 \n[ 2470.883577] smb:01:1500 00 00 00 01 c2 00 00 04 ff 00 00 ff ff 4a 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 2470.884403] smb:01:1600 03 03 00 00 0f 02 01 04 00 00 00 5b 5b 00 00 00 00 00 42 00 f3 00 00 00 00 00 00 00 00 00 00 00 00 0c 01 00 80 00 00 00 00 00 00 20 b8 4c cc 18 02 00 03 32 04 \n[ 2470.884432] pm8150b_charger: smblib_reg_work: AWAKE vote value is 0 voted by CHG_AWAKE_VOTER\n[ 2474.080518] raw: 0xb3\n[ 2474.080543] raw: 0xb3\n[ 2474.080551] ===raw_msoc:179\n[ 2474.080698] raw: 0xb3\n[ 2474.080720] raw: 0xb3\n[ 2474.080727] ===raw_msoc:179\n[ 2474.081115] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2474.081129] FG: calculate_average_current: current_now_ma=325195 averaged_iavg_ma=381774\n[ 2474.081147] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:0, batt_ma:325195, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2474.081159] FG: soc_monitor_work: soc:73, raw_soc:73, c:325195, s:2\n[ 2484.320465] raw: 0xb3\n[ 2484.320489] raw: 0xb3\n[ 2484.320497] ===raw_msoc:179\n[ 2484.320900] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2484.320913] FG: calculate_average_current: current_now_ma=440917 averaged_iavg_ma=386169\n[ 2484.320931] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:0, batt_ma:440917, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2484.320943] FG: soc_monitor_work: soc:73, raw_soc:73, c:440917, s:2\n[ 2484.321002] raw: 0xb3\n[ 2484.321024] raw: 0xb3\n[ 2484.321031] ===raw_msoc:179\n[ 2492.974360] 16781     8.5 C/MHz    485 mW    7.2 J   34.6 I/mJ    14.9 s\n               2073: \n[ 2494.560460] raw: 0xb3\n[ 2494.560484] raw: 0xb3\n[ 2494.560492] ===raw_msoc:179\n[ 2494.560639] raw: 0xb3\n[ 2494.560661] raw: 0xb3\n[ 2494.560668] ===raw_msoc:179\n[ 2494.561088] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2494.561101] FG: calculate_average_current: current_now_ma=324218 averaged_iavg_ma=375488\n[ 2494.561119] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:0, batt_ma:324218, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2494.561131] FG: soc_monitor_work: soc:73, raw_soc:73, c:324218, s:2\n[ 2504.800406] raw: 0xb3\n[ 2504.800430] raw: 0xb3\n[ 2504.800438] ===raw_msoc:179\n[ 2504.800827] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2504.800840] FG: calculate_average_current: current_now_ma=448730 averaged_iavg_ma=390991\n[ 2504.800858] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:0, batt_ma:448730, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2504.800870] FG: soc_monitor_work: soc:73, raw_soc:73, c:448730, s:2\n[ 2504.800929] raw: 0xb3\n[ 2504.800950] raw: 0xb3\n[ 2504.800957] ===raw_msoc:179\n[ 2515.040386] raw: 0xb3\n[ 2515.040410] raw: 0xb3\n[ 2515.040418] ===raw_msoc:179\n[ 2515.040565] raw: 0xb3\n[ 2515.040586] raw: 0xb3\n[ 2515.040593] ===raw_msoc:179\n[ 2515.040998] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2515.041011] FG: calculate_average_current: current_now_ma=449706 averaged_iavg_ma=394836\n[ 2515.041029] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:1, batt_ma:449706, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2515.041041] FG: soc_monitor_work: soc:73, raw_soc:73, c:449706, s:2\n[ 2516.151772] 17598     8.5 C/MHz    522 mW    7.4 J   33.7 I/mJ    14.2 s\n               2169: \n[ 2525.280464] raw: 0xb3\n[ 2525.280488] raw: 0xb3\n[ 2525.280496] ===raw_msoc:179\n[ 2525.280906] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2525.280919] FG: calculate_average_current: current_now_ma=479980 averaged_iavg_ma=402770\n[ 2525.280937] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:1, batt_ma:479980, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2525.280949] FG: soc_monitor_work: soc:73, raw_soc:73, c:479980, s:2\n[ 2525.281008] raw: 0xb3\n[ 2525.281030] raw: 0xb3\n[ 2525.281037] ===raw_msoc:179\n[ 2535.520379] raw: 0xb3\n[ 2535.520403] raw: 0xb3\n[ 2535.520411] ===raw_msoc:179\n[ 2535.520558] raw: 0xb3\n[ 2535.520580] raw: 0xb3\n[ 2535.520587] ===raw_msoc:179\n[ 2535.520985] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2535.520999] FG: calculate_average_current: current_now_ma=481445 averaged_iavg_ma=422546\n[ 2535.521016] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:1, batt_ma:481445, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2535.521028] FG: soc_monitor_work: soc:73, raw_soc:73, c:481445, s:2\n[ 2538.327248] 18382     8.5 C/MHz    655 mW    8.9 J   28.0 I/mJ    13.6 s\n               2265: \n[ 2545.760493] raw: 0xb3\n[ 2545.760517] raw: 0xb3\n[ 2545.760525] ===raw_msoc:179\n[ 2545.760931] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2545.760945] FG: calculate_average_current: current_now_ma=324706 averaged_iavg_ma=409362\n[ 2545.760963] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:1, batt_ma:324706, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2545.760975] FG: soc_monitor_work: soc:73, raw_soc:73, c:324706, s:2\n[ 2545.761034] raw: 0xb3\n[ 2545.761055] raw: 0xb3\n[ 2545.761062] ===raw_msoc:179\n[ 2556.000381] raw: 0xb3\n[ 2556.000405] raw: 0xb3\n[ 2556.000413] ===raw_msoc:179\n[ 2556.000560] raw: 0xb3\n[ 2556.000581] raw: 0xb3\n[ 2556.000588] ===raw_msoc:179\n[ 2556.001001] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2556.001014] FG: calculate_average_current: current_now_ma=488769 averaged_iavg_ma=429809\n[ 2556.001032] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:1, batt_ma:488769, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2556.001044] FG: soc_monitor_work: soc:73, raw_soc:73, c:488769, s:2\n[ 2559.497808] 19204     8.5 C/MHz    679 mW    8.8 J   28.3 I/mJ    13.0 s\n               2361: \n[ 2566.240490] raw: 0xb3\n[ 2566.240514] raw: 0xb3\n[ 2566.240522] ===raw_msoc:179\n[ 2566.240910] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2566.240924] FG: calculate_average_current: current_now_ma=325195 averaged_iavg_ma=415344\n[ 2566.240942] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:1, batt_ma:325195, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2566.240954] FG: soc_monitor_work: soc:73, raw_soc:73, c:325195, s:2\n[ 2566.241013] raw: 0xb3\n[ 2566.241034] raw: 0xb3\n[ 2566.241041] ===raw_msoc:179\n[ 2571.871446] raw: 0xb3\n[ 2571.900979] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4052 Vbatt avg=4055 Vbatt res=655\n[ 2571.901004] raw: 0xb3\n[ 2571.901026] raw: 0xb3\n[ 2571.901033] ===raw_msoc:179\n[ 2571.901045] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 493163\n[ 2571.920412] raw: 0xb3\n[ 2571.920436] raw: 0xb3\n[ 2571.920444] ===raw_msoc:179\n[ 2571.932071] FG: fg_gen4_prime_cc_soc_sw: cc_soc_sw: 2c58793c\n[ 2571.932131] FG: fg_gen4_esr_fcc_config: chg_sts: 2 par_en: 0 cp_en: 0 qnov_en: 0 esr_fcc_ctrl_en: 0\n[ 2571.940334] FG: fg_gen4_get_prop_soc_scale: Vbatt now=4052 Vbatt avg=4055 Vbatt res=655\n[ 2571.940357] raw: 0xb3\n[ 2571.940379] raw: 0xb3\n[ 2571.940387] ===raw_msoc:179\n[ 2571.940398] FG: fg_gen4_validate_soc_scale_mode: get vbatt_scale_mv = 3600, current now = 493163\n[ 2571.940410] FG: status_change_work: charge_status:2 charge_type:1 charge_done:0\n[ 2571.940991] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 347 FCC = 6000000uA FV = 4480000uV\n[ 2571.941003] QCOM-STEPCHG: handle_jeita: battery warm = 480 battery cool = 150\n[ 2571.941028] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 347 max voltage= 4480000uv FV = 4480000uV\n[ 2571.941123] raw: 0xb3\n[ 2571.941145] raw: 0xb3\n[ 2571.941152] ===raw_msoc:179\n[ 2576.480435] raw: 0xb3\n[ 2576.480459] raw: 0xb3\n[ 2576.480467] ===raw_msoc:179\n[ 2576.480615] raw: 0xb3\n[ 2576.480636] raw: 0xb3\n[ 2576.480643] ===raw_msoc:179\n[ 2576.481015] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2576.481028] FG: calculate_average_current: current_now_ma=496093 averaged_iavg_ma=436828\n[ 2576.481046] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:1, batt_ma:496093, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2576.481058] FG: soc_monitor_work: soc:73, raw_soc:73, c:496093, s:2\n[ 2580.670520] 19941     8.4 C/MHz    702 mW    8.8 J   28.4 I/mJ    12.5 s\n               2457: \n[ 2586.720491] raw: 0xb3\n[ 2586.720515] raw: 0xb3\n[ 2586.720523] ===raw_msoc:179\n[ 2586.720893] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2586.720907] FG: calculate_average_current: current_now_ma=325683 averaged_iavg_ma=421447\n[ 2586.720925] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:1, batt_ma:325683, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2586.720936] FG: soc_monitor_work: soc:73, raw_soc:73, c:325683, s:2\n[ 2586.720995] raw: 0xb3\n[ 2586.721017] raw: 0xb3\n[ 2586.721024] ===raw_msoc:179\n[ 2596.960383] raw: 0xb3\n[ 2596.960407] raw: 0xb3\n[ 2596.960415] ===raw_msoc:179\n[ 2596.960562] raw: 0xb3\n[ 2596.960583] raw: 0xb3\n[ 2596.960590] ===raw_msoc:179\n[ 2596.961032] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2596.961045] FG: calculate_average_current: current_now_ma=502929 averaged_iavg_ma=428100\n[ 2596.961063] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:1, batt_ma:502929, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2596.961075] FG: soc_monitor_work: soc:73, raw_soc:73, c:502929, s:2\n[ 2600.838748] 20852     8.5 C/MHz    702 mW    8.4 J   29.7 I/mJ    12.0 s\n               2553: \n[ 2607.200496] raw: 0xb2\n[ 2607.200520] raw: 0xb2\n[ 2607.200528] ===raw_msoc:178\n[ 2607.200934] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2607.200947] FG: calculate_average_current: current_now_ma=325195 averaged_iavg_ma=408752\n[ 2607.200965] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:1, batt_ma:325195, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2607.200977] FG: soc_monitor_work: soc:73, raw_soc:73, c:325195, s:2\n[ 2607.201036] raw: 0xb2\n[ 2607.201057] raw: 0xb2\n[ 2607.201064] ===raw_msoc:178\n[ 2617.440428] raw: 0xb2\n[ 2617.440451] raw: 0xb2\n[ 2617.440460] ===raw_msoc:178\n[ 2617.440606] raw: 0xb2\n[ 2617.440627] raw: 0xb2\n[ 2617.440634] ===raw_msoc:178\n[ 2617.441045] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2617.441058] FG: calculate_average_current: current_now_ma=515136 averaged_iavg_ma=412963\n[ 2617.441076] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:1, batt_ma:515136, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2617.441088] FG: soc_monitor_work: soc:73, raw_soc:73, c:515136, s:2\n[ 2621.007636] 21643     8.5 C/MHz    785 mW    9.1 J   27.5 I/mJ    11.6 s\n               2649: \n[ 2627.680545] raw: 0xb2\n[ 2627.680569] raw: 0xb2\n[ 2627.680577] ===raw_msoc:178\n[ 2627.680965] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2627.680978] FG: calculate_average_current: current_now_ma=324218 averaged_iavg_ma=412902\n[ 2627.680996] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:1, batt_ma:324218, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2627.681008] FG: soc_monitor_work: soc:73, raw_soc:73, c:324218, s:2\n[ 2627.681067] raw: 0xb2\n[ 2627.681089] raw: 0xb2\n[ 2627.681096] ===raw_msoc:178\n[ 2637.920384] raw: 0xb2\n[ 2637.920408] raw: 0xb2\n[ 2637.920416] ===raw_msoc:178\n[ 2637.920564] raw: 0xb2\n[ 2637.920585] raw: 0xb2\n[ 2637.920592] ===raw_msoc:178\n[ 2637.920997] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2637.921011] FG: calculate_average_current: current_now_ma=533691 averaged_iavg_ma=418518\n[ 2637.921028] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:1, batt_ma:533691, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2637.921040] FG: soc_monitor_work: soc:73, raw_soc:73, c:533691, s:2\n[ 2641.176049] 22482     8.5 C/MHz    855 mW    9.5 J   26.3 I/mJ    11.1 s\n               2745: \n[ 2648.160492] raw: 0xb2\n[ 2648.160516] raw: 0xb2\n[ 2648.160524] ===raw_msoc:178\n[ 2648.160934] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2648.160947] FG: calculate_average_current: current_now_ma=325195 averaged_iavg_ma=418518\n[ 2648.160965] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:1, batt_ma:325195, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2648.160977] FG: soc_monitor_work: soc:73, raw_soc:73, c:325195, s:2\n[ 2648.161035] raw: 0xb2\n[ 2648.161057] raw: 0xb2\n[ 2648.161064] ===raw_msoc:178\n[ 2658.400388] raw: 0xb2\n[ 2658.400411] raw: 0xb2\n[ 2658.400419] ===raw_msoc:178\n[ 2658.400567] raw: 0xb2\n[ 2658.400589] raw: 0xb2\n[ 2658.400596] ===raw_msoc:178\n[ 2658.400993] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2658.401007] FG: calculate_average_current: current_now_ma=551269 averaged_iavg_ma=425415\n[ 2658.401024] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:1, batt_ma:551269, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2658.401036] FG: soc_monitor_work: soc:73, raw_soc:73, c:551269, s:2\n[ 2660.340644] 23299     8.5 C/MHz    927 mW   10.0 J   25.1 I/mJ    10.7 s\n               2841: \n[ 2668.640418] raw: 0xb2\n[ 2668.640442] raw: 0xb2\n[ 2668.640450] ===raw_msoc:178\n[ 2668.640856] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2668.640869] FG: calculate_average_current: current_now_ma=326171 averaged_iavg_ma=425476\n[ 2668.640887] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:1, batt_ma:326171, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2668.640899] FG: soc_monitor_work: soc:73, raw_soc:73, c:326171, s:2\n[ 2668.640959] raw: 0xb2\n[ 2668.640980] raw: 0xb2\n[ 2668.640987] ===raw_msoc:178\n[ 2678.880441] raw: 0xb2\n[ 2678.880464] raw: 0xb2\n[ 2678.880472] ===raw_msoc:178\n[ 2678.880619] raw: 0xb2\n[ 2678.880641] raw: 0xb2\n[ 2678.880648] ===raw_msoc:178\n[ 2678.881051] FG: fg_battery_soc_smooth_tracking: entry:smooth_batt_soc0\n[ 2678.881064] FG: calculate_average_current: current_now_ma=565429 averaged_iavg_ma=433288\n[ 2678.881082] FG: fg_battery_soc_smooth_tracking: soc:73, last_soc:73, raw_soc:73, soc_changed:1, batt_ma:565429, smooth_low_batt_soc:0, smooth_soc: 0\n[ 2678.881094] FG: soc_monitor_work: soc:73, raw_soc:73, c:565429, s:2\n[ 2679.507386] CPU7: shutdown\n[ 2679.507507] psci: CPU7 killed.\n[ 2679.528092] 23953     8.4 C/MHz    984 mW   10.3 J   24.3 I/mJ    10.4 s\n               \n               \n               Benchmark finished!\n[ 2679.543585] \n               real\t44m34.515s\n               user\t35m27.696s\n               sys\t0m1.137s\n"
  },
  {
    "path": "results/sm8250/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  3:       5097     GICv3  27 Level     arch_timer\n  5:     267337     GICv3  38 Level     arch_mem_timer\n  7:          0     GICv3  23 Level     arm-pmu\n  8:          0     GICv3  62 Level     dcvsh-irq-0\n  9:          0     GICv3  63 Level     dcvsh-irq-4\n 10:          0     GICv3  51 Level     dcvsh-irq-7\n 11:          0     GICv3 195 Level     ngd_slim_irq\n 14:          0     GICv3  32 Edge      apps_wdog_bark\n 21:        519     GICv3 297 Level     1d84000.ufshc\n 22:          6     GICv3 261 Level     ipcc_1\n 25:       1059     GICv3  37 Level     apps_rsc\n 26:          0  pmic_arb 8388621 Edge      pon_kpdpwr_status\n 27:          0  pmic_arb 8454157 Edge      pon_resin_status\n 28:          0  pmic_arb 8585229 Edge      pon_kpdpwr_bark\n 30:          0  pmic_arb 8716301 Edge      pon_kpdpwr_resin_bark\n 31:          0  pmic_arb 37748750 Edge      qcom,temp-alarm\n 34:          0  pmic_arb 206569497 Edge      volume_up\n 38:          0  pmic_arb 101777427 Edge      pm8xxx_rtc_alarm\n 39:          4  pmic_arb 51380239 Edge      pm-adc5\n 40:          0  pmic_arb 55574544 Edge      thr-int-en\n 43:          0  pmic_arb 574619691 Edge      qcom,temp-alarm\n 47:          0  pmic_arb 560988197 Edge      sig-tx\n 48:          0  pmic_arb 561053733 Edge      sig-rx\n 49:          0  pmic_arb 561119269 Edge      msg-tx\n 50:          0  pmic_arb 561184805 Edge      msg-rx\n 51:          0  pmic_arb 561250341 Edge      msg-tx-failed\n 52:          0  pmic_arb 561315877 Edge      msg-tx-discarded\n 53:          0  pmic_arb 561381413 Edge      msg-rx-discarded\n 55:          0  pmic_arb 567279658 Edge      bcl-lvl0\n 56:          0  pmic_arb 567345194 Edge      bcl-lvl1\n 57:          0  pmic_arb 567410730 Edge      bcl-lvl2\n 58:          9  pmic_arb 588251180 Edge      pm-adc5\n 59:          0  pmic_arb 721485883 Edge      ptrain-done\n 64:          0  pmic_arb 592445485 Edge      thr-int-en\n 67:          0  pmic_arb 1111490635 Edge      qcom,temp-alarm\n 77:          4  pmic_arb 1125122124 Edge      pm-adc5\n 78:          0  pmic_arb 1137705038 Edge      bcl-lvl0\n 79:          0  pmic_arb 1137770574 Edge      bcl-lvl1\n 80:          0  pmic_arb 1137836110 Edge      bcl-lvl2\n 81:          0  pmic_arb 1129316429 Edge      thr-int-en\n 82:          0  pmic_arb 1589706852 Edge      qpnp_lcdb_sc_irq\n 83:          0  pmic_arb 1563426913 Edge      qpnp_flash_led_fault_irq\n 84:          0  pmic_arb 1563623521 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 85:          0  pmic_arb 1563689057 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 86:          0  pmic_arb 1568735330 Edge      wled_ovp_irq\n 87:          0  pmic_arb 1568931938 Edge      wled_pre_flash_irq\n 88:          0  pmic_arb 1568997474 Edge      wled_flash_irq\n 93:          0     GICv3 161 Level     disp_rsc\n 94:          0     GICv3  16 Level     KRYO L1-L2 ECC FAULTIRQ\n 95:          0     GICv3  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 96:          0     GICv3 380 Level     qsee_irq\n 97:          0     GICv3 381 Level     qsee_irq\n100:          6      ipcc   0 Edge      qcom,qmp-aop\n101:          0       PDC  11 Level     eud_irq\n102:          0       PDC   6 Edge      adsp\n103:          0     GICv3 610 Edge      cdsp\n104:          0     GICv3 384 Level     spss\n105:          0     GICv3 304 Level     sps\n106:          0       PDC   9 Edge      slpi\n107:          0     GICv3 538 Level     tsens-upper-lower\n108:          0     GICv3 540 Level     tsens-critical\n109:          0     GICv3 539 Level     tsens-upper-lower\n110:          0     GICv3 541 Level     tsens-critical\n111:          5     GICv3 276 Level     gpi_dma900000_gpii0\n148:          0     GICv3 172 Edge      int_global_int\n185:          0     GICv3 268 Edge      int_global_int\n222:          0     GICv3 704 Level     arm-smmu global fault\n223:          0     GICv3 705 Level     arm-smmu global fault\n224:          0     GICv3 710 Level     arm-smmu-context-fault\n225:          0     GICv3 711 Level     arm-smmu-context-fault\n226:          0     GICv3 712 Level     arm-smmu-context-fault\n232:          0     GICv3  96 Level     arm-smmu global fault\n233:          0     GICv3  97 Level     arm-smmu global fault\n238:          0     GICv3 133 Level     arm-smmu-context-fault\n239:          0     GICv3 134 Level     arm-smmu-context-fault\n240:          0     GICv3 135 Level     arm-smmu-context-fault\n241:          0     GICv3 136 Level     arm-smmu-context-fault\n242:          0     GICv3 137 Level     arm-smmu-context-fault\n243:          0     GICv3 138 Level     arm-smmu-context-fault\n244:          0     GICv3 139 Level     arm-smmu-context-fault\n245:          0     GICv3 140 Level     arm-smmu-context-fault\n246:          0     GICv3 141 Level     arm-smmu-context-fault\n247:          0     GICv3 142 Level     arm-smmu-context-fault\n248:          0     GICv3 143 Level     arm-smmu-context-fault\n249:          0     GICv3 144 Level     arm-smmu-context-fault\n250:          0     GICv3 145 Level     arm-smmu-context-fault\n251:          0     GICv3 146 Level     arm-smmu-context-fault\n252:          0     GICv3 147 Level     arm-smmu-context-fault\n253:          0     GICv3 148 Level     arm-smmu-context-fault\n254:          0     GICv3 149 Level     arm-smmu-context-fault\n255:          0     GICv3 150 Level     arm-smmu-context-fault\n256:          0     GICv3 213 Level     arm-smmu-context-fault\n257:          0     GICv3 214 Level     arm-smmu-context-fault\n258:          0     GICv3 215 Level     arm-smmu-context-fault\n259:          0     GICv3 216 Level     arm-smmu-context-fault\n260:          0     GICv3 217 Level     arm-smmu-context-fault\n261:          0     GICv3 218 Level     arm-smmu-context-fault\n262:          0     GICv3 219 Level     arm-smmu-context-fault\n263:          0     GICv3 220 Level     arm-smmu-context-fault\n264:          0     GICv3 221 Level     arm-smmu-context-fault\n265:          0     GICv3 222 Level     arm-smmu-context-fault\n266:          0     GICv3 223 Level     arm-smmu-context-fault\n267:          0     GICv3 224 Level     arm-smmu-context-fault\n268:          0     GICv3 347 Level     arm-smmu-context-fault\n269:          0     GICv3 348 Level     arm-smmu-context-fault\n270:          0     GICv3 349 Level     arm-smmu-context-fault\n271:          0     GICv3 350 Level     arm-smmu-context-fault\n272:          0     GICv3 351 Level     arm-smmu-context-fault\n273:          0     GICv3 352 Level     arm-smmu-context-fault\n274:          0     GICv3 353 Level     arm-smmu-context-fault\n275:          0     GICv3 354 Level     arm-smmu-context-fault\n276:          0     GICv3 355 Level     arm-smmu-context-fault\n277:          0     GICv3 356 Level     arm-smmu-context-fault\n278:          0     GICv3 357 Level     arm-smmu-context-fault\n279:          0     GICv3 358 Level     arm-smmu-context-fault\n280:          0     GICv3 359 Level     arm-smmu-context-fault\n281:          0     GICv3 360 Level     arm-smmu-context-fault\n282:          0     GICv3 361 Level     arm-smmu-context-fault\n283:          0     GICv3 362 Level     arm-smmu-context-fault\n284:          0     GICv3 363 Level     arm-smmu-context-fault\n285:          0     GICv3 364 Level     arm-smmu-context-fault\n286:          0     GICv3 365 Level     arm-smmu-context-fault\n287:          0     GICv3 366 Level     arm-smmu-context-fault\n288:          0     GICv3 367 Level     arm-smmu-context-fault\n331:          0      ipcc 196610 Edge      smp2p\n332:          0      ipcc 262146 Edge      smp2p\n333:          0      ipcc 393218 Edge      smp2p\n334:          0      ipcc 458754 Edge      smp2p\n335:          0       PDC  14 Edge      dp_hs_phy_irq\n336:          0     GICv3 162 Level     pwr_event_irq\n337:          0       PDC  17 Level     ss_phy_irq\n338:          0       PDC  15 Edge      dm_hs_phy_irq\n339:          0     GICv3 302 Edge      tmc-etr\n340:          0     GICv3 115 Level     msm_drm\n341:          0     GICv3 509 Edge      csiphy\n342:          0     GICv3 510 Edge      csiphy\n343:          0     GICv3 511 Edge      csiphy\n344:          0     GICv3 480 Edge      csiphy\n345:          0     GICv3 118 Edge      csiphy\n346:          0     GICv3 121 Edge      csiphy\n347:          0     GICv3 492 Edge      cci\n348:          0     GICv3 303 Edge      cci\n349:          0     GICv3 491 Edge      cpas_camnoc\n350:          1     GICv3 493 Edge      cpas-cdm\n351:          0     GICv3 496 Edge      csid\n352:          2     GICv3 497 Edge      ife\n353:          0     GICv3 498 Edge      csid\n354:          2     GICv3 499 Edge      ife\n355:          0     GICv3 500 Edge      csid-lite\n356:          2     GICv3 501 Edge      ife-lite\n357:          0     GICv3 391 Edge      csid-lite\n358:          2     GICv3 392 Edge      ife-lite\n359:          0     GICv3 495 Edge      a5\n360:          0     GICv3 506 Edge      jpeg\n361:          0     GICv3 507 Edge      jpegdma\n362:          2     GICv3 494 Edge      fd\n365:          4     GICv3 634 Level     i2c_geni\n366:       1421     GICv3 636 Level     i2c_geni\n367:          0     GICv3 635 Level     spi_geni\n368:         18     GICv3 637 Level     spi_geni\n370:        324     GICv3 388 Level     i2c_geni\n371:        369     GICv3 615 Level     i2c_geni\n372:        357     GICv3 616 Level     i2c_geni\n373:          0     GICv3 206 Level     msm_vidc\n374:          0     GICv3 266 Level     msm_cvp\n375:          0     GICv3 396 Level     error_irq\n376:          0     GICv3 398 Edge      wdg_bite_irq\n377:          0     GICv3 400 Edge      ipc_irq\n378:          0     GICv3 397 Level     general_irq\n379:          0     GICv3 332 Level     kgsl_3d0_irq\n380:          0     GICv3 336 Level     kgsl_hfi_irq\n381:          0     GICv3 337 Level     kgsl_gmu_irq\n388:          1   msmgpio  81 Edge      msm_pcie_wake\n389:          0   msmgpio  87 Edge      msm_pcie_wake\n390:          0     smp2p   2 Edge      adsp\n391:          0     smp2p   0 Edge      adsp\n392:          0     smp2p   1 Edge      error_ready_interrupt\n393:          0     smp2p   3 Edge      adsp\n394:          0     smp2p   2 Edge      cdsp\n395:          0     smp2p   0 Edge      cdsp\n396:          0     smp2p   1 Edge      error_ready_interrupt\n397:          0     smp2p   3 Edge      cdsp\n398:          0     smp2p   2 Edge      slpi\n399:          0     smp2p   0 Edge      slpi\n400:          0     smp2p   1 Edge      error_ready_interrupt\n401:          0     smp2p   3 Edge      slpi\n402:          0     smp2p   0 Edge      smp2p_sleepstate\n403:          0      qsee  32 Level     qsee_ipc_irq_spss\n406:          0     GICv3 165 Level     dwc3\n408:          0   msmgpio 111 Level     nq-nci\n441:          0   msmgpio 129 Edge      aw8697\n442:          0   msmgpio  84 Edge      i2c_pmic_stat_irq\n443:          0  i2c_pmic_irq_chip 2320 Edge      ocp\n446:          0  pmic_arb 603979823 Edge      soc-update\n447:          0  pmic_arb 604045359 Edge      soc-ready\n448:          0  pmic_arb 604110895 Edge      bsoc-delta\n449:         12  pmic_arb 604176431 Edge      msoc-delta\n450:          0  pmic_arb 604241967 Edge      msoc-low\n451:          0  pmic_arb 604307503 Edge      msoc-empty\n452:          0  pmic_arb 604373039 Edge      msoc-high\n453:          0  pmic_arb 604438575 Edge      msoc-full\n454:          0  pmic_arb 605028400 Edge      vbatt-low\n455:          0  pmic_arb 605093936 Edge      vbatt-pred-delta\n456:          3  pmic_arb 605225008 Edge      esr-delta\n457:          0  pmic_arb 606076977 Edge      batt-missing\n458:          0  pmic_arb 606142513 Edge      batt-id\n459:          0  pmic_arb 606208049 Edge      batt-temp-delta\n460:          0  pmic_arb 606273585 Edge      batt-temp-hot\n461:          0  pmic_arb 606339121 Edge      batt-temp-cold\n462:          0  pmic_arb 607125554 Edge      ima-rdy\n463:          0  pmic_arb 607191090 Edge      ima-xcp\n464:          0  pmic_arb 607256626 Edge      dma-xcp\n465:        754  pmic_arb 607322162 Edge      dma-grant\n466:          0  pmic_arb 607387698 Edge      mem-attn\n467:          0   msmgpio  68 Edge      bq2597x charger irq\n470:          0   msmgpio   1 Edge      mdm errfatal\n471:          0   msmgpio   3 Edge      mdm status\n472:          0   msmgpio 113 Level     cs35l41\n473:          0   msmgpio 112 Level     cs35l41\n474:          0   msmgpio  66 Edge      TE_GPIO\n475:          0       sde   4 Edge      dsi_ctrl\n476:          0  pmic_arb 553648158 Edge      chgr-error\n477:          0  pmic_arb 553713694 Edge      chg-state-change\n483:          0  pmic_arb 554696735 Edge      otg-fail\n486:          0  pmic_arb 554958879 Edge      high-duty-cycle\n487:          0  pmic_arb 555024415 Edge      input-current-limiting\n489:          0  pmic_arb 555155487 Edge      switcher-power-ok\n490:          0  pmic_arb 555745312 Edge      bat-temp\n491:          0  pmic_arb 555876384 Edge      bat-ov\n492:          0  pmic_arb 555941920 Edge      bat-low\n493:          0  pmic_arb 556007456 Edge      bat-therm-or-id-missing\n494:          0  pmic_arb 556072992 Edge      bat-terminal-missing\n497:          0  pmic_arb 556793889 Edge      usbin-collapse\n498:          0  pmic_arb 556859425 Edge      usbin-vashdn\n499:          0  pmic_arb 556924961 Edge      usbin-uv\n500:          0  pmic_arb 556990497 Edge      usbin-ov\n501:          0  pmic_arb 557056033 Edge      usbin-plugin\n503:          0  pmic_arb 557187105 Edge      usbin-src-change\n504:          0  pmic_arb 557252641 Edge      usbin-icl-change\n506:          0  pmic_arb 557973538 Edge      dcin-uv\n507:          0  pmic_arb 558039074 Edge      dcin-ov\n508:          0  pmic_arb 558104610 Edge      dcin-plugin\n510:          0  pmic_arb 558235682 Edge      dcin-pon\n511:          0  pmic_arb 558301218 Edge      dcin-en\n512:          0  pmic_arb 558891043 Edge      typec-or-rid-detect-change\n514:          0  pmic_arb 559022115 Edge      typec-cc-state-change\n515:          0  pmic_arb 559087651 Edge      typec-vconn-oc\n517:          0  pmic_arb 559218723 Edge      typec-attach-detach\n518:          0  pmic_arb 559284259 Edge      typec-legacy-cable-detect\n520:          0  pmic_arb 559939620 Edge      wdog-snarl\n521:          0  pmic_arb 560005156 Edge      wdog-bark\n523:          0  pmic_arb 560136228 Edge      aicl-done\n524:          0  pmic_arb 560201764 Edge      smb-en\n525:          0  pmic_arb 560332836 Edge      temp-change\n527:          0   msmgpio  39 Edge      NVT-ts-spi\nIPI0:      1972       Rescheduling interrupts\nIPI1:        18       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:       113       Timer broadcast interrupts\nIPI5:    116210       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8250/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  3:        723          1          1          1          1          1          1        362     GICv3  27 Level     arch_timer\n  5:          0          0          0          0          0          0          0          0     GICv3  38 Level     arch_mem_timer\n  7:          0          0          0          0          0          0          0          0     GICv3  23 Level     arm-pmu\n  8:          0          0          0          0          0          0          0          0     GICv3  62 Level     dcvsh-irq-0\n  9:          0          0          0          0          0          0          0          0     GICv3  63 Level     dcvsh-irq-4\n 10:          0          0          0          0          0          0          0          0     GICv3  51 Level     dcvsh-irq-7\n 11:          0          0          0          0          0          0          0          0     GICv3 195 Level     ngd_slim_irq\n 14:          0          0          0          0          0          0          0          0     GICv3  32 Edge      apps_wdog_bark\n 21:        519          0          0          0          0          0          0          0     GICv3 297 Level     1d84000.ufshc\n 22:          6          0          0          0          0          0          0          0     GICv3 261 Level     ipcc_1\n 25:       1019          0          0          0          0          0          0          0     GICv3  37 Level     apps_rsc\n 26:          0          0          0          0          0          0          0          0  pmic_arb 8388621 Edge      pon_kpdpwr_status\n 27:          0          0          0          0          0          0          0          0  pmic_arb 8454157 Edge      pon_resin_status\n 28:          0          0          0          0          0          0          0          0  pmic_arb 8585229 Edge      pon_kpdpwr_bark\n 30:          0          0          0          0          0          0          0          0  pmic_arb 8716301 Edge      pon_kpdpwr_resin_bark\n 31:          0          0          0          0          0          0          0          0  pmic_arb 37748750 Edge      qcom,temp-alarm\n 34:          0          0          0          0          0          0          0          0  pmic_arb 206569497 Edge      volume_up\n 38:          0          0          0          0          0          0          0          0  pmic_arb 101777427 Edge      pm8xxx_rtc_alarm\n 39:          4          0          0          0          0          0          0          0  pmic_arb 51380239 Edge      pm-adc5\n 40:          0          0          0          0          0          0          0          0  pmic_arb 55574544 Edge      thr-int-en\n 43:          0          0          0          0          0          0          0          0  pmic_arb 574619691 Edge      qcom,temp-alarm\n 47:          0          0          0          0          0          0          0          0  pmic_arb 560988197 Edge      sig-tx\n 48:          0          0          0          0          0          0          0          0  pmic_arb 561053733 Edge      sig-rx\n 49:          0          0          0          0          0          0          0          0  pmic_arb 561119269 Edge      msg-tx\n 50:          0          0          0          0          0          0          0          0  pmic_arb 561184805 Edge      msg-rx\n 51:          0          0          0          0          0          0          0          0  pmic_arb 561250341 Edge      msg-tx-failed\n 52:          0          0          0          0          0          0          0          0  pmic_arb 561315877 Edge      msg-tx-discarded\n 53:          0          0          0          0          0          0          0          0  pmic_arb 561381413 Edge      msg-rx-discarded\n 55:          0          0          0          0          0          0          0          0  pmic_arb 567279658 Edge      bcl-lvl0\n 56:          0          0          0          0          0          0          0          0  pmic_arb 567345194 Edge      bcl-lvl1\n 57:          0          0          0          0          0          0          0          0  pmic_arb 567410730 Edge      bcl-lvl2\n 58:          9          0          0          0          0          0          0          0  pmic_arb 588251180 Edge      pm-adc5\n 59:          0          0          0          0          0          0          0          0  pmic_arb 721485883 Edge      ptrain-done\n 64:          0          0          0          0          0          0          0          0  pmic_arb 592445485 Edge      thr-int-en\n 67:          0          0          0          0          0          0          0          0  pmic_arb 1111490635 Edge      qcom,temp-alarm\n 77:          4          0          0          0          0          0          0          0  pmic_arb 1125122124 Edge      pm-adc5\n 78:          0          0          0          0          0          0          0          0  pmic_arb 1137705038 Edge      bcl-lvl0\n 79:          0          0          0          0          0          0          0          0  pmic_arb 1137770574 Edge      bcl-lvl1\n 80:          0          0          0          0          0          0          0          0  pmic_arb 1137836110 Edge      bcl-lvl2\n 81:          0          0          0          0          0          0          0          0  pmic_arb 1129316429 Edge      thr-int-en\n 82:          0          0          0          0          0          0          0          0  pmic_arb 1589706852 Edge      qpnp_lcdb_sc_irq\n 83:          0          0          0          0          0          0          0          0  pmic_arb 1563426913 Edge      qpnp_flash_led_fault_irq\n 84:          0          0          0          0          0          0          0          0  pmic_arb 1563623521 Edge      qpnp_flash_led_all_ramp_down_done_irq\n 85:          0          0          0          0          0          0          0          0  pmic_arb 1563689057 Edge      qpnp_flash_led_all_ramp_up_done_irq\n 86:          0          0          0          0          0          0          0          0  pmic_arb 1568735330 Edge      wled_ovp_irq\n 87:          0          0          0          0          0          0          0          0  pmic_arb 1568931938 Edge      wled_pre_flash_irq\n 88:          0          0          0          0          0          0          0          0  pmic_arb 1568997474 Edge      wled_flash_irq\n 93:          0          0          0          0          0          0          0          0     GICv3 161 Level     disp_rsc\n 94:          0          0          0          0          0          0          0          0     GICv3  16 Level     KRYO L1-L2 ECC FAULTIRQ\n 95:          0          0          0          0          0          0          0          0     GICv3  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 96:          0          0          0          0          0          0          0          0     GICv3 380 Level     qsee_irq\n 97:          0          0          0          0          0          0          0          0     GICv3 381 Level     qsee_irq\n100:          6          0          0          0          0          0          0          0      ipcc   0 Edge      qcom,qmp-aop\n101:          0          0          0          0          0          0          0          0       PDC  11 Level     eud_irq\n102:          0          0          0          0          0          0          0          0       PDC   6 Edge      adsp\n103:          0          0          0          0          0          0          0          0     GICv3 610 Edge      cdsp\n104:          0          0          0          0          0          0          0          0     GICv3 384 Level     spss\n105:          0          0          0          0          0          0          0          0     GICv3 304 Level     sps\n106:          0          0          0          0          0          0          0          0       PDC   9 Edge      slpi\n107:          0          0          0          0          0          0          0          0     GICv3 538 Level     tsens-upper-lower\n108:          0          0          0          0          0          0          0          0     GICv3 540 Level     tsens-critical\n109:          0          0          0          0          0          0          0          0     GICv3 539 Level     tsens-upper-lower\n110:          0          0          0          0          0          0          0          0     GICv3 541 Level     tsens-critical\n111:          5          0          0          0          0          0          0          0     GICv3 276 Level     gpi_dma900000_gpii0\n148:          0          0          0          0          0          0          0          0     GICv3 172 Edge      int_global_int\n185:          0          0          0          0          0          0          0          0     GICv3 268 Edge      int_global_int\n222:          0          0          0          0          0          0          0          0     GICv3 704 Level     arm-smmu global fault\n223:          0          0          0          0          0          0          0          0     GICv3 705 Level     arm-smmu global fault\n224:          0          0          0          0          0          0          0          0     GICv3 710 Level     arm-smmu-context-fault\n225:          0          0          0          0          0          0          0          0     GICv3 711 Level     arm-smmu-context-fault\n226:          0          0          0          0          0          0          0          0     GICv3 712 Level     arm-smmu-context-fault\n232:          0          0          0          0          0          0          0          0     GICv3  96 Level     arm-smmu global fault\n233:          0          0          0          0          0          0          0          0     GICv3  97 Level     arm-smmu global fault\n238:          0          0          0          0          0          0          0          0     GICv3 133 Level     arm-smmu-context-fault\n239:          0          0          0          0          0          0          0          0     GICv3 134 Level     arm-smmu-context-fault\n240:          0          0          0          0          0          0          0          0     GICv3 135 Level     arm-smmu-context-fault\n241:          0          0          0          0          0          0          0          0     GICv3 136 Level     arm-smmu-context-fault\n242:          0          0          0          0          0          0          0          0     GICv3 137 Level     arm-smmu-context-fault\n243:          0          0          0          0          0          0          0          0     GICv3 138 Level     arm-smmu-context-fault\n244:          0          0          0          0          0          0          0          0     GICv3 139 Level     arm-smmu-context-fault\n245:          0          0          0          0          0          0          0          0     GICv3 140 Level     arm-smmu-context-fault\n246:          0          0          0          0          0          0          0          0     GICv3 141 Level     arm-smmu-context-fault\n247:          0          0          0          0          0          0          0          0     GICv3 142 Level     arm-smmu-context-fault\n248:          0          0          0          0          0          0          0          0     GICv3 143 Level     arm-smmu-context-fault\n249:          0          0          0          0          0          0          0          0     GICv3 144 Level     arm-smmu-context-fault\n250:          0          0          0          0          0          0          0          0     GICv3 145 Level     arm-smmu-context-fault\n251:          0          0          0          0          0          0          0          0     GICv3 146 Level     arm-smmu-context-fault\n252:          0          0          0          0          0          0          0          0     GICv3 147 Level     arm-smmu-context-fault\n253:          0          0          0          0          0          0          0          0     GICv3 148 Level     arm-smmu-context-fault\n254:          0          0          0          0          0          0          0          0     GICv3 149 Level     arm-smmu-context-fault\n255:          0          0          0          0          0          0          0          0     GICv3 150 Level     arm-smmu-context-fault\n256:          0          0          0          0          0          0          0          0     GICv3 213 Level     arm-smmu-context-fault\n257:          0          0          0          0          0          0          0          0     GICv3 214 Level     arm-smmu-context-fault\n258:          0          0          0          0          0          0          0          0     GICv3 215 Level     arm-smmu-context-fault\n259:          0          0          0          0          0          0          0          0     GICv3 216 Level     arm-smmu-context-fault\n260:          0          0          0          0          0          0          0          0     GICv3 217 Level     arm-smmu-context-fault\n261:          0          0          0          0          0          0          0          0     GICv3 218 Level     arm-smmu-context-fault\n262:          0          0          0          0          0          0          0          0     GICv3 219 Level     arm-smmu-context-fault\n263:          0          0          0          0          0          0          0          0     GICv3 220 Level     arm-smmu-context-fault\n264:          0          0          0          0          0          0          0          0     GICv3 221 Level     arm-smmu-context-fault\n265:          0          0          0          0          0          0          0          0     GICv3 222 Level     arm-smmu-context-fault\n266:          0          0          0          0          0          0          0          0     GICv3 223 Level     arm-smmu-context-fault\n267:          0          0          0          0          0          0          0          0     GICv3 224 Level     arm-smmu-context-fault\n268:          0          0          0          0          0          0          0          0     GICv3 347 Level     arm-smmu-context-fault\n269:          0          0          0          0          0          0          0          0     GICv3 348 Level     arm-smmu-context-fault\n270:          0          0          0          0          0          0          0          0     GICv3 349 Level     arm-smmu-context-fault\n271:          0          0          0          0          0          0          0          0     GICv3 350 Level     arm-smmu-context-fault\n272:          0          0          0          0          0          0          0          0     GICv3 351 Level     arm-smmu-context-fault\n273:          0          0          0          0          0          0          0          0     GICv3 352 Level     arm-smmu-context-fault\n274:          0          0          0          0          0          0          0          0     GICv3 353 Level     arm-smmu-context-fault\n275:          0          0          0          0          0          0          0          0     GICv3 354 Level     arm-smmu-context-fault\n276:          0          0          0          0          0          0          0          0     GICv3 355 Level     arm-smmu-context-fault\n277:          0          0          0          0          0          0          0          0     GICv3 356 Level     arm-smmu-context-fault\n278:          0          0          0          0          0          0          0          0     GICv3 357 Level     arm-smmu-context-fault\n279:          0          0          0          0          0          0          0          0     GICv3 358 Level     arm-smmu-context-fault\n280:          0          0          0          0          0          0          0          0     GICv3 359 Level     arm-smmu-context-fault\n281:          0          0          0          0          0          0          0          0     GICv3 360 Level     arm-smmu-context-fault\n282:          0          0          0          0          0          0          0          0     GICv3 361 Level     arm-smmu-context-fault\n283:          0          0          0          0          0          0          0          0     GICv3 362 Level     arm-smmu-context-fault\n284:          0          0          0          0          0          0          0          0     GICv3 363 Level     arm-smmu-context-fault\n285:          0          0          0          0          0          0          0          0     GICv3 364 Level     arm-smmu-context-fault\n286:          0          0          0          0          0          0          0          0     GICv3 365 Level     arm-smmu-context-fault\n287:          0          0          0          0          0          0          0          0     GICv3 366 Level     arm-smmu-context-fault\n288:          0          0          0          0          0          0          0          0     GICv3 367 Level     arm-smmu-context-fault\n331:          0          0          0          0          0          0          0          0      ipcc 196610 Edge      smp2p\n332:          0          0          0          0          0          0          0          0      ipcc 262146 Edge      smp2p\n333:          0          0          0          0          0          0          0          0      ipcc 393218 Edge      smp2p\n334:          0          0          0          0          0          0          0          0      ipcc 458754 Edge      smp2p\n335:          0          0          0          0          0          0          0          0       PDC  14 Edge      dp_hs_phy_irq\n336:          0          0          0          0          0          0          0          0     GICv3 162 Level     pwr_event_irq\n337:          0          0          0          0          0          0          0          0       PDC  17 Level     ss_phy_irq\n338:          0          0          0          0          0          0          0          0       PDC  15 Edge      dm_hs_phy_irq\n339:          0          0          0          0          0          0          0          0     GICv3 302 Edge      tmc-etr\n340:          0          0          0          0          0          0          0          0     GICv3 115 Level     msm_drm\n341:          0          0          0          0          0          0          0          0     GICv3 509 Edge      csiphy\n342:          0          0          0          0          0          0          0          0     GICv3 510 Edge      csiphy\n343:          0          0          0          0          0          0          0          0     GICv3 511 Edge      csiphy\n344:          0          0          0          0          0          0          0          0     GICv3 480 Edge      csiphy\n345:          0          0          0          0          0          0          0          0     GICv3 118 Edge      csiphy\n346:          0          0          0          0          0          0          0          0     GICv3 121 Edge      csiphy\n347:          0          0          0          0          0          0          0          0     GICv3 492 Edge      cci\n348:          0          0          0          0          0          0          0          0     GICv3 303 Edge      cci\n349:          0          0          0          0          0          0          0          0     GICv3 491 Edge      cpas_camnoc\n350:          1          0          0          0          0          0          0          0     GICv3 493 Edge      cpas-cdm\n351:          0          0          0          0          0          0          0          0     GICv3 496 Edge      csid\n352:          2          0          0          0          0          0          0          0     GICv3 497 Edge      ife\n353:          0          0          0          0          0          0          0          0     GICv3 498 Edge      csid\n354:          2          0          0          0          0          0          0          0     GICv3 499 Edge      ife\n355:          0          0          0          0          0          0          0          0     GICv3 500 Edge      csid-lite\n356:          2          0          0          0          0          0          0          0     GICv3 501 Edge      ife-lite\n357:          0          0          0          0          0          0          0          0     GICv3 391 Edge      csid-lite\n358:          2          0          0          0          0          0          0          0     GICv3 392 Edge      ife-lite\n359:          0          0          0          0          0          0          0          0     GICv3 495 Edge      a5\n360:          0          0          0          0          0          0          0          0     GICv3 506 Edge      jpeg\n361:          0          0          0          0          0          0          0          0     GICv3 507 Edge      jpegdma\n362:          2          0          0          0          0          0          0          0     GICv3 494 Edge      fd\n365:          4          0          0          0          0          0          0          0     GICv3 634 Level     i2c_geni\n366:       1421          0          0          0          0          0          0          0     GICv3 636 Level     i2c_geni\n367:          0          0          0          0          0          0          0          0     GICv3 635 Level     spi_geni\n368:         16          0          0          0          0          0          0          0     GICv3 637 Level     spi_geni\n370:        324          0          0          0          0          0          0          0     GICv3 388 Level     i2c_geni\n371:        369          0          0          0          0          0          0          0     GICv3 615 Level     i2c_geni\n372:        328          0          0          0          0          0          0          0     GICv3 616 Level     i2c_geni\n373:          0          0          0          0          0          0          0          0     GICv3 206 Level     msm_vidc\n374:          0          0          0          0          0          0          0          0     GICv3 266 Level     msm_cvp\n375:          0          0          0          0          0          0          0          0     GICv3 396 Level     error_irq\n376:          0          0          0          0          0          0          0          0     GICv3 398 Edge      wdg_bite_irq\n377:          0          0          0          0          0          0          0          0     GICv3 400 Edge      ipc_irq\n378:          0          0          0          0          0          0          0          0     GICv3 397 Level     general_irq\n379:          0          0          0          0          0          0          0          0     GICv3 332 Level     kgsl_3d0_irq\n380:          0          0          0          0          0          0          0          0     GICv3 336 Level     kgsl_hfi_irq\n381:          0          0          0          0          0          0          0          0     GICv3 337 Level     kgsl_gmu_irq\n388:          1          0          0          0          0          0          0          0   msmgpio  81 Edge      msm_pcie_wake\n389:          0          0          0          0          0          0          0          0   msmgpio  87 Edge      msm_pcie_wake\n390:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n391:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n392:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n393:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n394:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n395:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n396:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n397:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n398:          0          0          0          0          0          0          0          0     smp2p   2 Edge      slpi\n399:          0          0          0          0          0          0          0          0     smp2p   0 Edge      slpi\n400:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n401:          0          0          0          0          0          0          0          0     smp2p   3 Edge      slpi\n402:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n403:          0          0          0          0          0          0          0          0      qsee  32 Level     qsee_ipc_irq_spss\n406:          0          0          0          0          0          0          0          0     GICv3 165 Level     dwc3\n408:          0          0          0          0          0          0          0          0   msmgpio 111 Level     nq-nci\n441:          0          0          0          0          0          0          0          0   msmgpio 129 Edge      aw8697\n442:          0          0          0          0          0          0          0          0   msmgpio  84 Edge      i2c_pmic_stat_irq\n443:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 2320 Edge      ocp\n446:          0          0          0          0          0          0          0          0  pmic_arb 603979823 Edge      soc-update\n447:          0          0          0          0          0          0          0          0  pmic_arb 604045359 Edge      soc-ready\n448:          0          0          0          0          0          0          0          0  pmic_arb 604110895 Edge      bsoc-delta\n449:          0          0          0          0          0          0          0          0  pmic_arb 604176431 Edge      msoc-delta\n450:          0          0          0          0          0          0          0          0  pmic_arb 604241967 Edge      msoc-low\n451:          0          0          0          0          0          0          0          0  pmic_arb 604307503 Edge      msoc-empty\n452:          0          0          0          0          0          0          0          0  pmic_arb 604373039 Edge      msoc-high\n453:          0          0          0          0          0          0          0          0  pmic_arb 604438575 Edge      msoc-full\n454:          0          0          0          0          0          0          0          0  pmic_arb 605028400 Edge      vbatt-low\n455:          0          0          0          0          0          0          0          0  pmic_arb 605093936 Edge      vbatt-pred-delta\n456:          0          0          0          0          0          0          0          0  pmic_arb 605225008 Edge      esr-delta\n457:          0          0          0          0          0          0          0          0  pmic_arb 606076977 Edge      batt-missing\n458:          0          0          0          0          0          0          0          0  pmic_arb 606142513 Edge      batt-id\n459:          0          0          0          0          0          0          0          0  pmic_arb 606208049 Edge      batt-temp-delta\n460:          0          0          0          0          0          0          0          0  pmic_arb 606273585 Edge      batt-temp-hot\n461:          0          0          0          0          0          0          0          0  pmic_arb 606339121 Edge      batt-temp-cold\n462:          0          0          0          0          0          0          0          0  pmic_arb 607125554 Edge      ima-rdy\n463:          0          0          0          0          0          0          0          0  pmic_arb 607191090 Edge      ima-xcp\n464:          0          0          0          0          0          0          0          0  pmic_arb 607256626 Edge      dma-xcp\n465:         51          0          0          0          0          0          0          0  pmic_arb 607322162 Edge      dma-grant\n466:          0          0          0          0          0          0          0          0  pmic_arb 607387698 Edge      mem-attn\n467:          0          0          0          0          0          0          0          0   msmgpio  68 Edge      bq2597x charger irq\n470:          0          0          0          0          0          0          0          0   msmgpio   1 Edge      mdm errfatal\n471:          0          0          0          0          0          0          0          0   msmgpio   3 Edge      mdm status\n472:          0          0          0          0          0          0          0          0   msmgpio 113 Level     cs35l41\n473:          0          0          0          0          0          0          0          0   msmgpio 112 Level     cs35l41\n474:          0          0          0          0          0          0          0          0   msmgpio  66 Edge      TE_GPIO\n475:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n476:          0          0          0          0          0          0          0          0  pmic_arb 553648158 Edge      chgr-error\n477:          0          0          0          0          0          0          0          0  pmic_arb 553713694 Edge      chg-state-change\n483:          0          0          0          0          0          0          0          0  pmic_arb 554696735 Edge      otg-fail\n486:          0          0          0          0          0          0          0          0  pmic_arb 554958879 Edge      high-duty-cycle\n487:          0          0          0          0          0          0          0          0  pmic_arb 555024415 Edge      input-current-limiting\n489:          0          0          0          0          0          0          0          0  pmic_arb 555155487 Edge      switcher-power-ok\n490:          0          0          0          0          0          0          0          0  pmic_arb 555745312 Edge      bat-temp\n491:          0          0          0          0          0          0          0          0  pmic_arb 555876384 Edge      bat-ov\n492:          0          0          0          0          0          0          0          0  pmic_arb 555941920 Edge      bat-low\n493:          0          0          0          0          0          0          0          0  pmic_arb 556007456 Edge      bat-therm-or-id-missing\n494:          0          0          0          0          0          0          0          0  pmic_arb 556072992 Edge      bat-terminal-missing\n497:          0          0          0          0          0          0          0          0  pmic_arb 556793889 Edge      usbin-collapse\n498:          0          0          0          0          0          0          0          0  pmic_arb 556859425 Edge      usbin-vashdn\n499:          0          0          0          0          0          0          0          0  pmic_arb 556924961 Edge      usbin-uv\n500:          0          0          0          0          0          0          0          0  pmic_arb 556990497 Edge      usbin-ov\n501:          0          0          0          0          0          0          0          0  pmic_arb 557056033 Edge      usbin-plugin\n503:          0          0          0          0          0          0          0          0  pmic_arb 557187105 Edge      usbin-src-change\n504:          0          0          0          0          0          0          0          0  pmic_arb 557252641 Edge      usbin-icl-change\n506:          0          0          0          0          0          0          0          0  pmic_arb 557973538 Edge      dcin-uv\n507:          0          0          0          0          0          0          0          0  pmic_arb 558039074 Edge      dcin-ov\n508:          0          0          0          0          0          0          0          0  pmic_arb 558104610 Edge      dcin-plugin\n510:          0          0          0          0          0          0          0          0  pmic_arb 558235682 Edge      dcin-pon\n511:          0          0          0          0          0          0          0          0  pmic_arb 558301218 Edge      dcin-en\n512:          0          0          0          0          0          0          0          0  pmic_arb 558891043 Edge      typec-or-rid-detect-change\n514:          0          0          0          0          0          0          0          0  pmic_arb 559022115 Edge      typec-cc-state-change\n515:          0          0          0          0          0          0          0          0  pmic_arb 559087651 Edge      typec-vconn-oc\n517:          0          0          0          0          0          0          0          0  pmic_arb 559218723 Edge      typec-attach-detach\n518:          0          0          0          0          0          0          0          0  pmic_arb 559284259 Edge      typec-legacy-cable-detect\n520:          0          0          0          0          0          0          0          0  pmic_arb 559939620 Edge      wdog-snarl\n521:          0          0          0          0          0          0          0          0  pmic_arb 560005156 Edge      wdog-bark\n523:          0          0          0          0          0          0          0          0  pmic_arb 560136228 Edge      aicl-done\n524:          0          0          0          0          0          0          0          0  pmic_arb 560201764 Edge      smb-en\n525:          0          0          0          0          0          0          0          0  pmic_arb 560332836 Edge      temp-change\n527:          0          0          0          0          0          0          0          0   msmgpio  39 Edge      NVT-ts-spi\nIPI0:       997         51         51         51         49         48         47       1559       Rescheduling interrupts\nIPI1:         3          6          6          6          6          6          6         27       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:       288          4          4          4          4          4          4        162       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8250/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    6 root      0:00 [kworker/0:0H-ev]\n    7 root      0:00 [kworker/0:1-eve]\n    8 root      0:00 [kworker/u16:0+L]\n    9 root      0:00 [mm_percpu_wq]\n   10 root      0:00 [ksoftirqd/0]\n   11 root      0:00 [rcu_preempt]\n   12 root      0:00 [rcu_sched]\n   13 root      0:00 [rcu_bh]\n   14 root      0:00 [rcuop/0]\n   15 root      0:00 [rcuos/0]\n   16 root      0:00 [rcuob/0]\n   17 root      0:00 [migration/0]\n   18 root      0:00 [cpuhp/0]\n   19 root      0:00 [cpuhp/1]\n   20 root      0:00 [migration/1]\n   21 root      0:00 [ksoftirqd/1]\n   22 root      0:00 [kworker/1:0-mm_]\n   23 root      0:00 [kworker/1:0H]\n   24 root      0:00 [rcuop/1]\n   25 root      0:00 [rcuos/1]\n   26 root      0:00 [rcuob/1]\n   27 root      0:00 [cpuhp/2]\n   28 root      0:00 [migration/2]\n   29 root      0:00 [ksoftirqd/2]\n   30 root      0:00 [kworker/2:0-mm_]\n   31 root      0:00 [kworker/2:0H]\n   32 root      0:00 [rcuop/2]\n   33 root      0:00 [rcuos/2]\n   34 root      0:00 [rcuob/2]\n   35 root      0:00 [cpuhp/3]\n   36 root      0:00 [migration/3]\n   37 root      0:00 [ksoftirqd/3]\n   38 root      0:00 [kworker/3:0-mm_]\n   39 root      0:00 [kworker/3:0H]\n   40 root      0:00 [rcuop/3]\n   41 root      0:00 [rcuos/3]\n   42 root      0:00 [rcuob/3]\n   43 root      0:00 [cpuhp/4]\n   44 root      0:00 [migration/4]\n   45 root      0:00 [ksoftirqd/4]\n   46 root      0:00 [kworker/4:0-mm_]\n   47 root      0:00 [kworker/4:0H]\n   48 root      0:00 [rcuop/4]\n   49 root      0:00 [rcuos/4]\n   50 root      0:00 [rcuob/4]\n   51 root      0:00 [cpuhp/5]\n   52 root      0:00 [migration/5]\n   53 root      0:00 [ksoftirqd/5]\n   54 root      0:00 [kworker/5:0-mm_]\n   55 root      0:00 [kworker/5:0H]\n   56 root      0:00 [rcuop/5]\n   57 root      0:00 [rcuos/5]\n   58 root      0:00 [rcuob/5]\n   59 root      0:00 [cpuhp/6]\n   60 root      0:00 [migration/6]\n   61 root      0:00 [ksoftirqd/6]\n   62 root      0:00 [kworker/6:0-mm_]\n   63 root      0:00 [kworker/6:0H]\n   64 root      0:00 [rcuop/6]\n   65 root      0:00 [rcuos/6]\n   66 root      0:00 [rcuob/6]\n   67 root      0:00 [cpuhp/7]\n   68 root      0:00 [migration/7]\n   69 root      0:00 [ksoftirqd/7]\n   70 root      0:00 [kworker/7:0-eve]\n   71 root      0:00 [kworker/7:0H-ev]\n   72 root      0:00 [rcuop/7]\n   73 root      0:00 [rcuos/7]\n   74 root      0:00 [rcuob/7]\n   75 root      0:00 [kdevtmpfs]\n   76 root      0:00 [netns]\n   77 root      0:00 [rcu_tasks_kthre]\n   78 root      0:00 [kauditd]\n   80 root      0:00 [kworker/u16:1+M]\n   81 root      0:00 [kworker/u17:0-n]\n   82 root      0:00 [ipa_usb_wq]\n   83 root      0:00 [msm_watchdog]\n   84 root      0:00 [qmp_aop]\n   85 root      0:00 [oom_reaper]\n   86 root      0:00 [writeback]\n   87 root      0:00 [kcompactd0]\n   88 root      0:00 [crypto]\n   89 root      0:00 [kblockd]\n   90 root      0:00 [irq/222-arm-smm]\n   91 root      0:00 [irq/223-arm-smm]\n   92 root      0:00 [irq/232-arm-smm]\n   93 root      0:00 [irq/233-arm-smm]\n   94 root      0:00 [longpress]\n   95 root      0:00 [irq/107-tsens-u]\n   96 root      0:00 [irq/108-tsens-c]\n   97 root      0:00 [irq/109-tsens-u]\n   98 root      0:00 [irq/110-tsens-c]\n   99 root      0:00 [edac-poller]\n  100 root      0:00 [irq/8-dcvsh-irq]\n  101 root      0:00 [irq/9-dcvsh-irq]\n  102 root      0:00 [irq/10-dcvsh-ir]\n  103 root      0:00 [ion-pool-uncach]\n  104 root      0:00 [ion-pool-cached]\n  105 root      0:00 [system]\n  106 root      0:00 [ipa_power_mgmt]\n  107 root      0:00 [transport_power]\n  108 root      0:00 [ipa_pm_activate]\n  109 root      0:00 [irq/239-arm-smm]\n  110 root      0:00 [irq/240-arm-smm]\n  111 root      0:00 [irq/241-arm-smm]\n  112 root      0:00 [irq/242-arm-smm]\n  113 root      0:00 [devfreq_wq]\n  114 root      0:00 [governor_msm_ad]\n  115 root      0:00 [irq/82-qpnp_lcd]\n  117 root      0:00 [irq/243-arm-smm]\n  118 root      0:00 [irq/244-arm-smm]\n  119 root      0:00 [irq/245-arm-smm]\n  120 root      0:00 [cfg80211]\n  157 root      0:00 [kswapd0]\n  158 root      0:00 [ecryptfs-kthrea]\n  196 root      0:00 [irq/86-wled_ovp]\n  197 root      0:00 [irq/88-wled_fla]\n  198 root      0:00 [irq/87-wled_pre]\n  199 root      0:00 [irq/246-arm-smm]\n  200 root      0:00 [irq/247-arm-smm]\n  201 root      0:00 [irq/248-arm-smm]\n  202 root      0:00 [irq/331-smp2p]\n  203 root      0:00 [irq/332-smp2p]\n  204 root      0:00 [irq/333-smp2p]\n  205 root      0:00 [okl4vtty]\n  206 root      0:00 [hwrng]\n  208 root      0:00 [diag_real_time_]\n  209 root      0:00 [diag_wq]\n  210 root      0:00 [DIAG_USB_diag]\n  211 root      0:00 [diag_cntl_wq]\n  212 root      0:00 [diag_dci_wq]\n  213 root      0:00 [MODEM_CNTL]\n  214 root      0:00 [MODEM_DATA]\n  215 root      0:00 [MODEM_CMD]\n  216 root      0:00 [MODEM_DCI]\n  217 root      0:00 [MODEM_DCI_CMD]\n  218 root      0:00 [LPASS_CNTL]\n  219 root      0:00 [LPASS_DATA]\n  220 root      0:00 [LPASS_CMD]\n  221 root      0:00 [LPASS_DCI]\n  222 root      0:00 [LPASS_DCI_CMD]\n  223 root      0:00 [WCNSS_CNTL]\n  224 root      0:00 [WCNSS_DATA]\n  225 root      0:00 [WCNSS_CMD]\n  226 root      0:00 [WCNSS_DCI]\n  227 root      0:00 [WCNSS_DCI_CMD]\n  228 root      0:00 [SENSORS_CNTL]\n  229 root      0:00 [SENSORS_DATA]\n  230 root      0:00 [SENSORS_CMD]\n  231 root      0:00 [SENSORS_DCI]\n  232 root      0:00 [SENSORS_DCI_CMD]\n  233 root      0:00 [DIAG_CTRL]\n  234 root      0:00 [DIAG_DATA]\n  235 root      0:00 [DIAG_CMD]\n  236 root      0:00 [DIAG_DCI_DATA]\n  237 root      0:00 [DIAG_DCI_CMD]\n  238 root      0:00 [CDSP_CNTL]\n  239 root      0:00 [CDSP_DATA]\n  240 root      0:00 [CDSP_CMD]\n  241 root      0:00 [CDSP_DCI]\n  242 root      0:00 [CDSP_DCI_CMD]\n  243 root      0:00 [NPU_CNTL]\n  244 root      0:00 [NPU_DATA]\n  245 root      0:00 [NPU_CMD]\n  246 root      0:00 [NPU_DCI]\n  247 root      0:00 [NPU_DCI_CMD]\n  248 root      0:00 [DIAG_RPMSG_DIAG]\n  249 root      0:00 [DIAG_RPMSG_DIAG]\n  250 root      0:00 [DIAG_RPMSG_DIAG]\n  251 root      0:00 [DIAG_RPMSG_DIAG]\n  252 root      0:00 [DIAG_RPMSG_DIAG]\n  253 root      0:00 [kworker/u16:2+W]\n  254 root      0:00 [diag_mhi_MDM]\n  255 root      0:00 [DIAG_USB_diag_m]\n  256 root      0:00 [diag_mhi_MDM_DC]\n  257 root      0:00 [diag_dci_MDM_DC]\n  258 root      0:00 [diag_mhi_MDM_2]\n  259 root      0:00 [DIAG_USB_diag_m]\n  260 root      0:00 [diag_mhi_MDM_DC]\n  261 root      0:00 [diag_dci_MDM_DC]\n  262 root      0:00 [kworker/u16:3+S]\n  263 root      0:00 [kgsl-workqueue]\n  264 root      0:00 [kgsl-mementry]\n  265 root      0:00 [kgsl_worker_thr]\n  266 root      0:00 [kworker/u16:4+D]\n  267 root      0:00 [kworker/u16:5+C]\n  268 root      0:00 [kworker/u16:6+N]\n  270 root      0:00 [qseecom-unreg-l]\n  271 root      0:00 [qseecom-unload-]\n  273 root      0:00 [irq/249-arm-smm]\n  274 root      0:00 [irq/250-arm-smm]\n  275 root      0:00 [irq/251-arm-smm]\n  276 root      0:00 [qcrypto_seq_res]\n  277 root      0:00 [irq/252-arm-smm]\n  298 root      0:00 [scsi_eh_0]\n  299 root      0:00 [scsi_tmf_0]\n  300 root      0:00 [ufs_pm_qos_0]\n  301 root      0:00 [kworker/4:1-mm_]\n  302 root      0:00 [kworker/1:1-mm_]\n  303 root      0:00 [kworker/2:1-mm_]\n  304 root      0:00 [kworker/5:1-mm_]\n  305 root      0:00 [kworker/3:1-mm_]\n  306 root      0:00 [kworker/6:1-mm_]\n  307 root      0:00 [ufs_recovery_wq]\n  308 root      0:00 [ufs_clk_gating_]\n  309 root      0:00 [ice-set-key]\n  310 root      0:00 [ufs_clkscaling_]\n  311 root      0:00 [spi0]\n  312 root      0:00 [spi1]\n  313 root      0:00 [bond0]\n  314 root      0:00 [kworker/u16:9-r]\n  315 root      0:00 [irq/253-arm-smm]\n  320 root      0:00 [k_ipa_usb]\n  325 root      0:00 [irq/254-arm-smm]\n  326 root      0:00 [irq/255-arm-smm]\n  327 root      0:00 [mhi_special_w]\n  328 root      0:00 [irq/441-aw8697]\n  329 root      0:00 [aw8976_vibrator]\n  332 root      0:00 [kworker/u16:13+]\n  333 root      0:00 [kworker/u16:14-]\n  334 root      0:00 [kworker/u16:15-]\n  335 root      0:00 [irq/442-i2c_pmi]\n  336 root      0:00 [msm_cvp_workerq]\n  337 root      0:00 [pm_workerq_iris]\n  338 root      0:00 [irq/256-arm-smm]\n  339 root      0:00 [irq/257-arm-smm]\n  340 root      0:00 [irq/258-arm-smm]\n  341 root      0:00 [irq/259-arm-smm]\n  342 root      0:00 [npu_general_wq]\n  343 root      0:00 [irq/260-arm-smm]\n  344 root      0:00 [dmx_tsif0]\n  345 root      0:00 [dmx_tsif1]\n  346 root      0:00 [irq/59-ptrain-d]\n  347 root      0:00 [irq/446-soc-upd]\n  348 root      0:00 [irq/447-soc-rea]\n  349 root      0:00 [irq/448-bsoc-de]\n  350 root      0:00 [irq/449-msoc-de]\n  351 root      0:00 [irq/450-msoc-lo]\n  352 root      0:00 [irq/451-msoc-em]\n  353 root      0:00 [irq/452-msoc-hi]\n  354 root      0:00 [irq/453-msoc-fu]\n  355 root      0:00 [irq/454-vbatt-l]\n  356 root      0:00 [irq/455-vbatt-p]\n  357 root      0:00 [irq/456-esr-del]\n  358 root      0:00 [irq/457-batt-mi]\n  359 root      0:00 [irq/458-batt-id]\n  360 root      0:00 [irq/459-batt-te]\n  361 root      0:00 [irq/460-batt-te]\n  362 root      0:00 [irq/461-batt-te]\n  363 root      0:00 [irq/462-ima-rdy]\n  364 root      0:00 [irq/463-ima-xcp]\n  365 root      0:00 [irq/464-dma-xcp]\n  366 root      0:00 [irq/465-dma-gra]\n  367 root      0:00 [irq/466-mem-att]\n  368 root      0:00 [kworker/7:3-eve]\n  369 root      0:00 [irq/467-bq2597x]\n  370 root      0:00 [irq/55-bcl-lvl0]\n  371 root      0:00 [irq/56-bcl-lvl1]\n  372 root      0:00 [irq/57-bcl-lvl2]\n  373 root      0:00 [irq/78-bcl-lvl0]\n  374 root      0:00 [irq/79-bcl-lvl1]\n  375 root      0:00 [irq/80-bcl-lvl2]\n  376 root      0:00 [kworker/0:1H-kb]\n  377 root      0:00 [kworker/7:1H-kb]\n  378 root      0:00 [dm_bufio_cache]\n  379 root      0:00 [irq/95-KRYO L3-]\n  380 root      0:00 [memlat_wq]\n  381 root      0:00 [irq/261-arm-smm]\n  382 root      0:00 [irq/471-mdm sta]\n  383 root      0:00 [irq/262-arm-smm]\n  384 root      0:00 [uaudio_svc]\n  385 root      0:00 [apr_driver]\n  386 root      0:00 [irq/472-cs35l41]\n  387 root      0:00 [irq/473-cs35l41]\n  388 root      0:00 [irq/263-arm-smm]\n  389 root      0:00 [irq/264-arm-smm]\n  390 root      0:00 [irq/265-arm-smm]\n  391 root      0:00 [irq/266-arm-smm]\n  392 root      0:00 [irq/267-arm-smm]\n  393 root      0:00 [cam-cpas]\n  394 root      0:00 [qcom,cam_virtua]\n  395 root      0:00 [qcom,cam170-cpa]\n  396 root      0:00 [cam_cci_wq]\n  397 root      0:00 [cam_cci_wq]\n  398 root      0:00 [cam_cci_wq]\n  399 root      0:00 [cam_cci_wq]\n  400 root      0:00 [dsi_dma_cmd_wor]\n  401 root      0:00 [dsi_dma_cmd_wor]\n  402 root      0:00 [irq/238-arm-smm]\n  403 root      0:00 [irq/268-arm-smm]\n  404 root      0:00 [crtc_commit:127]\n  405 root      0:00 [crtc_event:127]\n  406 root      0:00 [crtc_commit:180]\n  407 root      0:00 [crtc_event:180]\n  408 root      0:00 [pp_event]\n  409 root      0:00 [msm_vidc_worker]\n  410 root      0:00 [pm_workerq_venu]\n  411 root      0:00 [vidc_core_workq]\n  412 root      0:00 [irq/269-arm-smm]\n  413 root      0:00 [irq/270-arm-smm]\n  414 root      0:00 [irq/271-arm-smm]\n  415 root      0:00 [irq/272-arm-smm]\n  416 root      0:00 [ipv6_addrconf]\n  418 root      0:00 [irq/334-smp2p]\n  419 root      0:00 [irq/224-arm-smm]\n  420 root      0:00 [irq/225-arm-smm]\n  421 root      0:00 [irq/226-arm-smm]\n  422 root      0:00 [kgsl-events]\n  423 root      0:00 [kgsl_devfreq_wq]\n  431 root      0:00 [irq/476-chgr-er]\n  432 root      0:00 [irq/477-chg-sta]\n  433 root      0:00 [irq/483-otg-fai]\n  434 root      0:00 [irq/486-high-du]\n  436 root      0:00 [irq/487-input-c]\n  437 root      0:00 [irq/489-switche]\n  438 root      0:00 [irq/490-bat-tem]\n  440 root      0:00 [irq/491-bat-ov]\n  441 root      0:00 [irq/492-bat-low]\n  442 root      0:00 [irq/493-bat-the]\n  443 root      0:00 [irq/494-bat-ter]\n  444 root      0:00 [irq/497-usbin-c]\n  445 root      0:00 [irq/498-usbin-v]\n  446 root      0:00 [irq/499-usbin-u]\n  447 root      0:00 [irq/500-usbin-o]\n  448 root      0:00 [irq/501-usbin-p]\n  449 root      0:00 [irq/503-usbin-s]\n  450 root      0:00 [irq/504-usbin-i]\n  451 root      0:00 [irq/506-dcin-uv]\n  452 root      0:00 [irq/507-dcin-ov]\n  453 root      0:00 [irq/508-dcin-pl]\n  454 root      0:00 [irq/510-dcin-po]\n  455 root      0:00 [irq/511-dcin-en]\n  456 root      0:00 [irq/512-typec-o]\n  457 root      0:00 [irq/514-typec-c]\n  458 root      0:00 [irq/515-typec-v]\n  459 root      0:00 [irq/517-typec-a]\n  460 root      0:00 [irq/518-typec-l]\n  461 root      0:00 [irq/520-wdog-sn]\n  462 root      0:00 [irq/521-wdog-ba]\n  463 root      0:00 [irq/523-aicl-do]\n  464 root      0:00 [irq/524-smb-en]\n  465 root      0:00 [irq/525-temp-ch]\n  466 root      0:00 [irq/31-qcom,tem]\n  467 root      0:00 [irq/43-qcom,tem]\n  468 root      0:00 [irq/67-qcom,tem]\n  469 root      0:00 [irq/40-thr-int-]\n  470 root      0:00 [irq/64-thr-int-]\n  471 root      0:00 [irq/81-thr-int-]\n  477 root      0:00 [irq/47-sig-tx]\n  478 root      0:00 [irq/48-sig-rx]\n  479 root      0:00 [irq/336-pwr_eve]\n  480 root      0:00 [irq/335-dp_hs_p]\n  481 root      0:00 [irq/338-dm_hs_p]\n  482 root      0:00 [irq/337-ss_phy_]\n  483 root      0:00 [usb_bam_wq]\n  484 root      0:00 [core_ctl/0]\n  485 root      0:00 [core_ctl/4]\n  486 root      0:00 [core_ctl/7]\n  487 root      0:00 [rq_stats]\n  488 root      0:00 [msm_perf:events]\n  489 root      0:00 [cdsprm-wq]\n  490 root      0:00 [cdsprm-wq-delay]\n  491 root      0:00 [irq/273-arm-smm]\n  492 root      0:00 [irq/274-arm-smm]\n  493 root      0:00 [irq/275-arm-smm]\n  494 root      0:00 [irq/276-arm-smm]\n  495 root      0:00 [irq/277-arm-smm]\n  496 root      0:00 [irq/278-arm-smm]\n  497 root      0:00 [irq/279-arm-smm]\n  498 root      0:00 [irq/280-arm-smm]\n  499 root      0:00 [irq/281-arm-smm]\n  500 root      0:00 [irq/282-arm-smm]\n  501 root      0:00 [irq/283-arm-smm]\n  502 root      0:00 [irq/284-arm-smm]\n  503 root      0:00 [irq/285-arm-smm]\n  504 root      0:00 [irq/286-arm-smm]\n  505 root      0:00 [irq/287-arm-smm]\n  507 root      0:00 [irq/288-arm-smm]\n  508 root      0:00 [sb-1]\n  509 root      0:00 [ngd_rx_thread1]\n  510 root      0:00 [ngd_notify_sl1]\n  511 root      0:00 [irq/527-NVT-ts-]\n  512 root      0:00 [nvt_lockdown_wq]\n  513 root      0:00 [nvt_fwu_wq]\n  514 root      0:00 [nvt_esd_check_w]\n  515 root      0:00 [irq/85-qpnp_fla]\n  516 root      0:00 [irq/84-qpnp_fla]\n  517 root      0:00 [irq/83-qpnp_fla]\n  529 root      0:00 [kworker/u17:1-n]\n  661 root      0:00 [kworker/0:2-eve]\n  662 root      0:00 [kworker/0:3-eve]\n  713 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm8250/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1113.813966,3.71271322,41.05327743215284,9.215118102621473,27.129332170890052,224.467294185\r\n1,403200,1496.979096,3.712745773809524,49.210145618349756,8.218694860919832,30.418455026084292,167.012203635\r\n1,518400,1924.898173,3.7131523398919755,75.73888178944998,9.8372278578553,25.413663647159304,129.883457815\r\n1,614400,2281.021898,3.7126007454427086,43.93735363177102,4.8157584074436475,51.9129031916507,109.605108396\r\n1,691200,2566.577008,3.713219050925926,48.964691895732344,4.7697485651353855,52.41366428146385,97.411999963\r\n1,787200,2922.67764,3.7127510670731705,52.71110986931797,4.509077121883527,55.44371791440335,85.543202051\r\n1,883200,3279.333639,3.71301363111413,58.85496822311871,4.487104412557008,55.71521788090858,76.240027784\r\n1,979200,3636.099193,3.7133365941584966,64.10803823063264,4.407942781511128,56.71579972603345,68.758035703\r\n1,1075200,3991.952224,3.7127531845238093,69.57569729703255,4.357520959156963,57.37207057481756,62.629928674\r\n1,1171200,4348.279821,3.712670612192623,74.78873395117574,4.300178936141111,58.13711562066872,57.49768326\r\n1,1248000,4633.319124,3.7125954519230766,78.10837157639658,4.2147255359638764,59.315843431979694,53.959971907\r\n1,1344000,4989.721174,3.7125901592261905,85.02086282986038,4.260046977632808,58.684798856119244,50.105901491\r\n1,1420800,5275.374552,3.712960692567568,88.17583179904291,4.178811549108225,59.825621965018016,47.391801856\r\n1,1516800,5632.025952,3.713097278481013,95.00718523081855,4.217529404140726,59.27640949095758,44.391688838\r\n1,1612800,5988.310817,3.7129903379216267,98.97873237612225,4.132391052133134,60.49766269601962,41.750292744\r\n1,1708800,6344.211541,3.712670611540262,102.68926708456446,4.0468826246306255,61.77594538532445,39.409012641\r\n1,1804800,6700.436868,3.7125647539893616,115.21475356708133,4.299070428265031,58.152106175402224,37.313540976\r\n4,710400,6021.339628,8.475984836711712,126.26234522031737,5.243604869504804,47.67712408193135,41.529443005\r\n4,825600,6995.746586,8.473530264050387,148.3821046163432,5.304240927044836,47.13209739876637,35.7471741\r\n4,940800,7985.434567,8.48791939519558,169.11656923267773,5.296433239617787,47.201576738469576,31.318239624\r\n4,1056000,8959.931188,8.484783321969697,192.4631245567411,5.372150308234876,46.53630029985932,27.912621291\r\n4,1171200,9923.391418,8.472841033128415,216.52451070040036,5.457493715488103,45.80857313504771,25.204969626\r\n4,1286400,10907.028489,8.47872239505597,237.04060515445485,5.435757574075911,45.99174937313139,22.931757074\r\n4,1382400,11716.187084,8.47525107349537,265.45097130800036,5.6673421504280626,44.112388729012444,21.349864054\r\n4,1478400,12526.305241,8.472879627299783,292.1228473582635,5.833361821791015,42.85693355521064,19.968865409\r\n4,1574400,13346.85815,8.477425146087398,322.87634332616705,6.051225042007432,41.313948541742725,18.741617858\r\n4,1670400,14161.096635,8.477668004669539,358.1018306170592,6.325554917907391,39.52222425454881,17.664123378\r\n4,1766400,14997.0006,8.490149796195652,391.1311924348753,6.524294634305733,38.31831853292799,16.680578692\r\n4,1862400,15793.796197,8.480345896155498,446.37994182860035,7.07071828140319,35.357086798031396,15.840134421\r\n4,1958400,16622.340426,8.487714678308823,443.4889533311337,6.675294944893025,37.45152866859674,15.051772755\r\n4,2054400,17438.616071,8.488422931756231,508.2939424051432,7.292758984180306,34.28057893347473,14.347522911\r\n4,2150400,18228.21728,8.476663541666667,555.6698727026926,7.627038598898208,32.77812177797483,13.725845099\r\n4,2246400,19056.330513,8.48305311298077,611.1534983182311,8.024945429818418,31.152859815229522,13.13081812\r\n4,2342400,19858.60672,8.477888797814208,665.1389176466671,8.380898664381641,29.829736644172336,12.600222964\r\n4,2419200,20486.765549,8.468405071511244,710.335702687167,8.676029318534187,28.81502480241012,12.213984579\r\n7,844800,7160.451395,8.475913109611742,172.1586865437649,6.012648957764719,41.57901147332918,34.925039674\r\n7,960000,8135.3726,8.474346458333333,190.53113675966705,5.857113614148275,42.68313993365387,30.740978686\r\n7,1075200,9117.432531,8.479754958147321,219.17870655529666,6.012183494170716,41.582230522803336,27.430509052\r\n7,1190400,10088.781275,8.475118678595429,243.89792533350044,6.046540612773348,41.34595564807317,24.791275303\r\n7,1305600,11067.333658,8.476818059129902,268.9708917224549,6.079052797900196,41.124827882125665,22.601154939\r\n7,1401600,11875.356261,8.472714227311645,293.8488469641003,6.189562948661002,40.39057395063458,21.063764628\r\n7,1516800,12863.39079,8.480611016613924,326.4751135871582,6.348569336110763,39.37895087291495,19.44579869\r\n7,1632000,13825.139634,8.471286540441175,361.07172936461143,6.533343123822387,38.265248780280714,18.094308118\r\n7,1747200,14812.181538,8.477668004807693,380.9247400570628,6.433469477677759,38.8592812738797,16.889082806\r\n7,1862400,15778.843726,8.472317292740549,440.48202177246696,6.98364196452447,35.79794056882511,15.854544838\r\n7,1977600,16780.775943,8.485424728458739,484.63986533978596,7.225145395530138,34.60137980817153,14.908277078\r\n7,2073600,17598.197945,8.486785274402006,522.0827659861433,7.422733802199835,33.68031329992043,14.217542286\r\n7,2169600,18382.352941,8.472692174133481,655.4054720242311,8.920543639939975,28.025197800801546,13.610724995\r\n7,2265600,19204.178829,8.476420740201272,679.0955151989169,8.847598994034486,28.256253495277427,13.028504527\r\n7,2361600,19940.974715,8.443840919292006,701.6291245675003,8.804340809491563,28.395084357762055,12.548425516\r\n7,2457600,20852.448077,8.48488284383138,701.8039067649095,8.421496135805151,29.685936556699296,11.999785203\r\n7,2553600,21643.147779,8.475543459821429,785.1918927583639,9.077887692014826,27.53944623261943,11.561361975\r\n7,2649600,22482.014388,8.48505977807971,855.2615624535458,9.520166077717914,26.260046091541263,11.131291871\r\n7,2745600,23299.16123,8.485999865238929,926.9025014883002,9.954676468068186,25.113824723679365,10.739723382\r\n7,2841600,23953.243269,8.42949157833615,984.1776740959003,10.281946766981601,24.314461615656732,10.447246506\r\n"
  },
  {
    "path": "results/sm8250/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 2674.351893875748, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1308.33893372, 1302.313174136, 1688.287658148, 1308.416494, 1306.4077884, 1312.4380214, 1702.340139654, 1308.416494, 1304.4764049360003, 1304.4764049360003, 1696.317060249, 1302.313174136, 1308.49405428, 1300.3775553999997, 1306.330347192, 1302.4675802640002, 1304.3990828, 1306.4852296080003, 1304.4764049360003, 1310.4293157999998, 1302.2359710720002, 1306.4077884, 1308.49405428, 1302.4675802640002, 1308.33893372, 1312.4380214, 1306.252905984, 1304.244438528, 1304.3990828], \"power_mean\": 1346.3200032566554, \"energy_millijoules\": 6731.600016283277, \"energy_joules\": 6.731600016283277}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 224.467294185, \"elapsed_ns\": 224467294185, \"power_samples\": [11.826751149000302, 25.89341735500011, 415.6076052800006, 29.914228614000194, 29.914228614000194, 25.89341735500011, 21.794211824000513, 31.843586390000382, 31.922576510000226, 37.87238808500024, 415.70947040000055, 29.67761547000032, 25.73615203500026, 25.65751937500022, 29.83535756600054, 27.82301351900037, 27.74426178700037, 29.83535756600054, 407.4783051920001, 29.75648651800043, 23.806555871000228, 21.715817552000544, 27.66551005500014, 35.8600440380003, 29.83535756600054, 27.586758323000367, 25.65751937500022, 35.78081577400053, 25.578886715000408, 29.75648651800043, 29.67761547000032, 23.57101510700022, 25.65751937500022, 25.50025405500037, 25.65751937500022, 29.598744422000436, 21.55902900800038, 27.66551005500014, 25.578886715000408, 27.586758323000367, 27.586758323000367, 29.598744422000436, 31.685606150000467, 31.606616030000396, 23.57101510700022, 25.65751937500022, 23.57101510700022, 29.598744422000436, 31.606616030000396, 29.519873374000554, 21.48063473600041, 23.57101510700022, 31.606616030000396, 25.578886715000408, 25.50025405500037, 31.527625910000552, 29.598744422000436, 27.586758323000367, 37.47565018500018, 21.323846192000474, 25.578886715000408, 29.598744422000436, 25.578886715000408, 29.519873374000554, 21.48063473600041, 25.421621395000102, 35.46390271800033, 37.55499776500051, 31.527625910000552, 27.429254859000366, 31.527625910000552, 25.421621395000102, 31.36964567000041, 29.441002326000216, 27.350503127000366, 25.34298873500029, 27.350503127000366, 27.271428642000274, 27.429254859000366, 17.465129664000415, 31.448635790000253, 27.508006591000367, 23.49250151900037, 21.245130632000382, 23.25663897800041, 31.290331820000574, 29.2829369880003, 27.350503127000366, 19.3163318000004, 19.3163318000004, 27.429254859000366, 27.350503127000366, 29.362131278000334, 35.38467445400033, 27.271428642000274, 25.264033810000228, 31.290331820000574, 29.204065940000646, 31.290331820000574, 27.271428642000274, 23.25663897800041, 21.166736360000414, 29.2829369880003, 21.245130632000382, 39.244558010000446, 25.264033810000228, 27.1926769100005, 23.25663897800041, 27.271428642000274, 27.1926769100005, 27.1926769100005, 21.245130632000382, 29.2829369880003, 23.25663897800041, 23.17812539000056, 31.211341700000503, 35.30512148400044, 27.1926769100005, 27.1926769100005, 27.113925178000272, 27.1926769100005, 27.1926769100005, 33.13950826800033, 25.028135830000338, 25.185401150000416, 29.125194892000536, 31.211341700000503, 25.264033810000228, 31.290331820000574, 27.1926769100005, 27.113925178000272, 31.211341700000503, 23.17812539000056, 27.1926769100005, 31.132351580000204, 23.021098214000176, 21.088342088000445, 25.028135830000338, 27.03517344600027, 29.046323844000426, 31.053361460000588, 27.03517344600027, 27.03517344600027, 27.03517344600027, 29.125194892000536, 27.03517344600027, 31.132351580000204, 27.113925178000272, 29.046323844000426, 25.10676849000015, 25.028135830000338, 27.03517344600027, 25.028135830000338, 21.009947816000476, 25.028135830000338, 31.132351580000204, 28.967452796000316, 31.053361460000588, 25.028135830000338, 25.028135830000338, 25.028135830000338, 33.060399076000294, 24.9495031700003, 28.967452796000316, 28.80971070000055, 28.888581748000433, 27.03517344600027, 34.90898016400047, 31.053361460000588, 28.967452796000316, 28.888581748000433, 24.792237850000447, 30.816391100000374, 26.95642171400027, 26.87766998200027, 24.87087051000026, 26.87766998200027, 25.028135830000338, 26.719843765000405, 20.853159272000312, 20.853159272000312, 26.87766998200027, 24.87087051000026, 26.719843765000405, 26.798918250000497, 30.73707725000054, 30.816391100000374, 396.4331102750002, 22.706722085000365, 22.706722085000365, 20.774765000000343, 26.719843765000405, 26.719843765000405, 32.74363809000056, 28.80971070000055, 408.16401644500024, 24.713282925000385, 30.73707725000054, 30.73707725000054, 20.69604944000048, 24.713282925000385, 24.713282925000385, 24.713282925000385, 420.1973008350001, 26.641092033000177, 24.556017605000307, 30.579097010000396, 20.617655168000283, 26.719843765000405, 30.73707725000054, 30.73707725000054, 413.97651092000046, 26.719843765000405, 24.713282925000385, 20.617655168000283, 28.65164536200018, 30.73707725000054, 24.63465026500012, 22.706722085000365, 410.06615163400033, 30.658087130000467, 26.719843765000405, 26.562340301000404], \"power_mean\": 41.05327743215284, \"energy_millijoules\": 9215.118102621473, \"energy_joules\": 9.215118102621473, \"coremark_score\": 1113.813966, \"coremarks_per_mhz\": 3.71271322, \"ulpmark_cm_score\": 27.129332170890052}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1302.2359710720002, 1312.2824240640002, 1308.1834952899999, 1308.1834952899999], \"power_mean\": 1307.721346429, \"energy_millijoules\": 6538.606732145, \"energy_joules\": 6.538606732145}}, \"403200\": {\"active\": {\"elapsed_sec\": 167.012203635, \"elapsed_ns\": 167012203635, \"power_samples\": [32.585419706000266, 30.579097010000396, 30.421116770000253, 423.79539486600015, 34.433285874000376, 34.5125141380006, 36.52282883500038, 34.591742402000364, 30.421116770000253, 26.483588569000403, 26.404836837000175, 417.8822872400003, 34.433285874000376, 32.34809213000062, 26.404836837000175, 34.433285874000376, 34.433285874000376, 24.320119625000416, 34.274829346000615, 409.558017974, 36.364133675000176, 28.415032218000306, 32.4272013220002, 34.35405761000038, 30.183822680000276, 36.2847860950003, 32.34809213000062, 417.47387418400035, 34.35405761000038, 32.26898293800059, 36.364133675000176, 30.183822680000276, 34.195276376000265, 30.183822680000276, 30.183822680000276, 425.593936922, 34.274829346000615, 34.274829346000615, 34.195276376000265, 36.2847860950003, 36.12576574000013, 36.12576574000013, 40.13698129200043, 421.38190717700036, 30.263136530000565, 30.104832560000204, 34.1160481120005, 28.0992247840004, 32.110440336000465, 32.110440336000465, 34.195276376000265, 419.3786823050002, 34.1160481120005, 33.95759158400028, 32.110440336000465, 28.020353736000516, 28.0992247840004, 36.046418160000485, 40.13698129200043, 33.95759158400028, 30.104832560000204, 32.03133114400043, 30.025842440000588, 40.0573955680004, 38.05190686400033, 36.12576574000013, 40.13698129200043, 30.025842440000588, 36.12576574000013, 30.025842440000588, 36.046418160000485, 33.95759158400028, 34.03681984800028, 31.952221952000173, 35.967070580000154, 30.025842440000588, 38.05190686400033, 35.88772300000028, 33.87836332000029, 28.020353736000516, 35.88772300000028, 33.79913505600052, 35.8083754200004, 34.03681984800028, 26.01075542400031, 33.95759158400028, 27.94148268800018, 31.952221952000173, 27.94148268800018, 35.967070580000154, 30.025842440000588, 31.873112760000367, 29.867862200000445, 33.87836332000029, 33.79913505600052, 33.87836332000029, 33.79913505600052, 29.788872080000374, 27.783740592000413, 33.79913505600052, 31.873112760000367, 29.788872080000374, 27.783740592000413, 25.774500228000306, 35.8083754200004, 31.794003568000562, 33.7199067920003, 23.769368740000345, 29.709881960000303, 35.72902784000007, 39.818638396000324, 33.7199067920003, 29.709881960000303, 25.774500228000306, 33.7199067920003, 29.788872080000374, 33.7199067920003, 31.635460966000437, 25.695748496000306, 31.714894376000302, 29.551577990000396, 33.64035382200041, 29.709881960000303, 35.649355065000236, 33.64035382200041, 31.556351774000404, 33.64035382200041, 33.56112555800041, 33.64035382200041, 35.649355065000236, 35.490659905000484, 27.546804206000388, 33.64035382200041, 35.57000748500013, 33.64035382200041, 39.49996932900058, 31.556351774000404, 31.556351774000404, 35.411312325000154, 31.4772425820006, 33.56112555800041, 35.57000748500013, 39.49996932900058, 33.64035382200041, 35.57000748500013, 43.59321076400056, 33.481897294000646, 31.4772425820006, 29.472587870000552, 33.56112555800041, 37.495314617000304, 35.490659905000484, 37.57478126900014, 27.467933158000506, 35.490659905000484, 35.490659905000484, 35.411312325000154, 33.481897294000646, 35.411312325000154, 29.393597750000254, 31.319024198000307, 33.4026690300002, 33.4026690300002, 29.31460763000041, 31.319024198000307, 39.3407978810003], \"power_mean\": 49.210145618349756, \"energy_millijoules\": 8218.694860919832, \"energy_joules\": 8.218694860919832, \"coremark_score\": 1496.979096, \"coremarks_per_mhz\": 3.712745773809524, \"ulpmark_cm_score\": 30.418455026084292}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1710.5457502689999, 1306.86433479, 1315.05392232, 1316.982327032], \"power_mean\": 1412.36158360275, \"energy_millijoules\": 7061.80791801375, \"energy_joules\": 7.06180791801375}}, \"518400\": {\"active\": {\"elapsed_sec\": 129.883457815, \"elapsed_ns\": 129883457815, \"power_samples\": [35.33196474500028, 33.4026690300002, 49.21073239900011, 49.21073239900011, 45.19826862800028, 35.33196474500028, 39.3407978810003, 39.18162643300025, 43.194090204000304, 43.2739143160004, 39.3407978810003, 43.194090204000304, 35.17326958500007, 39.18162643300025, 37.256914661000565, 432.1723651200002, 37.17744800900027, 43.194090204000304, 39.18162643300025, 37.17744800900027, 37.17744800900027, 43.11393894400044, 41.18580485700022, 428.06185385600065, 41.105773402000295, 39.10171453800035, 39.10171453800035, 39.02212881400055, 35.17326958500007, 37.17744800900027, 37.17744800900027, 425.9574782960003, 37.09765567400041, 41.18580485700022, 39.18162643300025, 39.02212881400055, 45.19826862800028, 42.954290720000245, 39.18162643300025, 435.86564867300035, 35.093596810000236, 40.866659014000334, 35.01424923000059, 38.94254309000007, 36.85925571800021, 42.8744666080006, 33.08543126800032, 431.7597164690003, 38.86295736600027, 34.934901650000256, 40.866659014000334, 32.92697474000033, 40.866659014000334, 43.03411483200034, 39.02212881400055, 32.92697474000033, 421.7449206230003, 42.8744666080006, 34.934901650000256, 32.847746476000566, 34.934901650000256, 42.8744666080006, 40.866659014000334, 34.85555407000038, 433.8642108570002, 40.786954218000574, 34.85555407000038, 38.78337164200025, 40.866659014000334, 42.794642496000506, 42.8744666080006, 34.77620649000028, 421.5399991750003, 42.794642496000506, 40.786954218000574, 34.77620649000028, 32.847746476000566, 42.8744666080006, 38.70378591800022, 40.786954218000574, 423.33592018300055, 38.5442882990003, 32.768518212000345, 38.78337164200025, 36.85925571800021, 44.71828188800032, 38.62420019400042, 38.5442882990003, 435.34917509300067, 40.62754462600037, 38.70378591800022, 34.696858910000174, 44.71828188800032, 46.88186990400027, 46.64168313600044, 42.71481838400041, 431.34749018100047, 42.794642496000506, 42.55484301200045, 42.71481838400041, 32.53050871400046, 38.5442882990003, 38.5442882990003, 38.5442882990003, 427.1356474280003, 36.461596775000544, 38.4647025750005, 38.5442882990003, 38.5442882990003, 40.54751317100022, 44.478124700000535, 44.55806788400059, 34.537838555000235, 42.55484301200045, 38.5442882990003, 40.54751317100022, 36.54106342700038, 40.46780837500023, 42.47501890000058, 42.47501890000058, 42.47501890000058, 34.537838555000235, 34.458490975000586, 42.55484301200045, 42.47501890000058, 42.47501890000058, 38.38511685100025, 42.39519478800048, 46.24104373200066], \"power_mean\": 75.73888178944998, \"energy_millijoules\": 9837.2278578553, \"energy_joules\": 9.8372278578553, \"coremark_score\": 1924.898173, \"coremarks_per_mhz\": 3.7131523398919755, \"ulpmark_cm_score\": 25.413663647159304}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1305.6227345700001, 1311.7180094249998, 1309.7912724530001, 1313.5705786080002], \"power_mean\": 1310.175648764, \"energy_millijoules\": 6550.87824382, \"energy_joules\": 6.55087824382}}, \"614400\": {\"active\": {\"elapsed_sec\": 109.605108396, \"elapsed_ns\": 109605108396, \"power_samples\": [42.315370676000384, 46.321105988000454, 38.30553112700022, 42.39519478800048, 48.24789630900045, 48.328077881000354, 44.31823833200042, 38.38511685100025, 46.24104373200066, 48.328077881000354, 50.49154682500034, 42.235546564000515, 48.328077881000354, 44.31823833200042, 34.220448235000504, 42.235546564000515, 46.24104373200066, 42.315370676000384, 42.235546564000515, 46.24104373200066, 46.24104373200066, 42.235546564000515, 42.07589834000032, 40.22869398700027, 38.22594540300042, 46.160981476000416, 44.23829514800059, 43.99813796000058, 48.167714737000324, 42.07589834000032, 36.22319681900058, 42.15572245200042, 42.235546564000515, 40.14898919100028, 48.24789630900045, 46.080919220000624, 43.99813796000058, 44.15835196400053, 40.22869398700027, 42.07589834000032, 44.15835196400053, 43.99813796000058, 44.07840878000047, 38.06677395500037, 48.167714737000324, 48.08753316500042, 39.98925294000037, 41.995747080000456, 40.14898919100028, 46.160981476000416, 41.91592296800013, 42.15572245200042, 44.15835196400053, 43.91819477600029, 37.90727633600022, 48.00702298000033, 41.91592296800013, 42.07589834000032, 48.00702298000033, 41.91592296800013, 48.00702298000033, 41.91592296800013, 37.986862060000476, 41.83609885600049, 39.909548144000155, 51.93138502400029, 41.91592296800013, 41.91592296800013, 39.82984334800017, 47.9268414080002, 46.00052884000047, 37.90727633600022, 37.986862060000476, 41.83609885600049, 45.92046658400022, 43.91819477600029, 49.76851192800041, 43.75830840800063, 41.83609885600049, 41.91592296800013, 49.84881257200027, 39.909548144000155, 43.83825159200023, 45.92046658400022, 47.9268414080002, 41.91592296800013, 43.75830840800063, 43.83825159200023, 51.85096530800047, 41.91592296800013, 41.6764506320003, 45.84040432800043, 47.7664782640004, 47.68629669200027, 49.68821128400032, 39.590728960000206, 37.8276906120002, 53.77257925600043, 41.59662652000043, 45.600217560000374, 41.51680240800056, 51.77054559200019, 43.75830840800063, 39.590728960000206, 43.678365224000345, 55.778715448000185, 51.69012587600014, 43.75830840800063, 43.75830840800063], \"power_mean\": 43.93735363177102, \"energy_millijoules\": 4815.758407443647, \"energy_joules\": 4.8157584074436475, \"coremark_score\": 2281.021898, \"coremarks_per_mhz\": 3.7126007454427086, \"ulpmark_cm_score\": 51.9129031916507}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1306.8538258709998, 1314.870830328, 1312.711531344, 1308.779252075], \"power_mean\": 1310.8038599044999, \"energy_millijoules\": 6554.019299522499, \"energy_joules\": 6.554019299522499}}, \"691200\": {\"active\": {\"elapsed_sec\": 97.411999963, \"elapsed_ns\": 97411999963, \"power_samples\": [31.579444840000406, 47.60611512000037, 43.518478856000684, 51.609706160000314, 47.52593354800047, 57.53841758400017, 49.607910640000455, 47.44575197600011, 47.52593354800047, 57.45764040800009, 51.52928644400049, 41.436978296000234, 51.368117423000285, 51.52928644400049, 51.609706160000314, 47.52593354800047, 51.52928644400049, 47.28506021900034, 47.365241791000244, 53.53096289200039, 53.53096289200039, 53.450424104000376, 51.28769770700046, 49.527609996000365, 53.53096289200039, 51.368117423000285, 53.28901645100018, 49.447309352000275, 49.286378963000516, 47.365241791000244, 47.44575197600011, 51.368117423000285, 47.44575197600011, 47.28506021900034, 51.368117423000285, 53.28901645100018, 45.52015530400058, 41.35682703600037, 55.133120050000116, 47.44575197600011, 45.27964041200062, 43.278321668000444, 49.286378963000516, 37.27026437300037, 47.28506021900034, 47.28506021900034, 53.28901645100018, 51.12685827500036, 49.125777675000336, 51.20727799100041, 53.208477663000394, 47.28506021900034, 51.12685827500036, 49.206078319000426, 43.11843530000033, 47.044515503000184, 51.20727799100041, 47.20487864700067, 49.286378963000516, 45.03945364400056, 47.12469707500031, 55.133120050000116, 47.20487864700067, 53.04740008700037, 47.12469707500031, 45.11951590000035, 48.96517638700038, 53.04740008700037, 54.971803842000554, 47.044515503000184, 44.95939138800054, 40.95770647600057, 45.03945364400056, 50.966018843000484, 53.12793887500038, 49.04547703100047, 47.12469707500031, 52.966861299000584, 53.04740008700037, 53.12793887500038, 46.96433393100051, 50.966018843000484, 50.966018843000484, 52.966861299000584, 47.12469707500031, 52.966861299000584, 51.046438559000535, 46.96433393100051, 46.96433393100051, 50.885599127000205, 42.95854893200067, 54.971803842000554, 46.884152359000154, 42.95854893200067, 46.96433393100051, 46.96433393100051, 46.884152359000154], \"power_mean\": 48.964691895732344, \"energy_millijoules\": 4769.748565135385, \"energy_joules\": 4.7697485651353855, \"coremark_score\": 2566.577008, \"coremarks_per_mhz\": 3.713219050925926, \"ulpmark_cm_score\": 52.41366428146385}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1306.2320707439999, 1310.1586966199998, 1314.2452609919999, 1312.086915072], \"power_mean\": 1310.680735857, \"energy_millijoules\": 6553.403679285, \"energy_joules\": 6.553403679285}}, \"787200\": {\"active\": {\"elapsed_sec\": 85.543202051, \"elapsed_ns\": 85543202051, \"power_samples\": [52.966861299000584, 52.966861299000584, 56.97264629800043, 60.9784312970005, 48.88487574300029, 52.966861299000584, 52.724914858000375, 52.80545364600039, 54.81015706800031, 52.80545364600039, 56.72998371600033, 50.72443010600023, 50.885599127000205, 52.724914858000375, 56.72998371600033, 48.64364471000022, 46.72346060200039, 52.724914858000375, 60.57302144600044, 52.724914858000375, 50.804849822000506, 56.72998371600033, 46.80364217400029, 52.64437607000036, 52.64437607000036, 52.724914858000375, 52.64437607000036, 46.72346060200039, 54.56818275600017, 46.48291588600023, 50.56359067400035, 54.72949896400041, 56.64920654000025, 56.64920654000025, 50.72443010600023, 52.64437607000036, 58.48777972400035, 52.56383728200035, 50.644010390000176, 46.72346060200039, 48.563344066000354, 52.56383728200035, 60.57302144600044, 54.40686654800015, 50.48317095800053, 52.483298494000564, 56.48765218800031, 46.64327903000026, 52.56383728200035, 48.48304342200049, 50.48317095800053, 52.483298494000564, 52.64437607000036, 50.644010390000176, 58.406883476000075, 56.48765218800031, 56.40687501200023, 54.40686654800015, 52.4027597060001, 56.40687501200023, 40.39861054400035, 48.32244213400031, 52.4027597060001, 62.41099878200043, 52.4027597060001, 50.40275124200025, 50.40275124200025, 54.40686654800015, 56.24498960600022, 50.322331526000426, 50.40275124200025, 48.402742778000174, 54.245219774000134, 48.16151174500055, 50.16116250500045, 56.40687501200023, 56.326097836000145, 54.245219774000134, 58.2447594380003, 52.0802744770001, 52.16081326500057, 50.080742789000396, 56.08343525400028, 50.16116250500045, 50.322331526000426], \"power_mean\": 52.71110986931797, \"energy_millijoules\": 4509.077121883527, \"energy_joules\": 4.509077121883527, \"coremark_score\": 2922.67764, \"coremarks_per_mhz\": 3.7127510670731705, \"ulpmark_cm_score\": 55.44371791440335}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1317.3087520560002, 1315.3079096000001, 1309.301282145, 1321.393169715], \"power_mean\": 1315.8277783790002, \"energy_millijoules\": 6579.138891895001, \"energy_joules\": 6.579138891895001}}, \"883200\": {\"active\": {\"elapsed_sec\": 76.240027784, \"elapsed_ns\": 76240027784, \"power_samples\": [52.0802744770001, 56.08343525400028, 61.92385844700016, 65.92244553500018, 60.08659603100023, 60.00558046700053, 62.08612771900016, 62.08612771900016, 62.08612771900016, 60.00558046700053, 62.08612771900016, 60.08659603100023, 50.080742789000396, 56.08343525400028, 65.92244553500018, 62.08612771900016, 59.924564903000146, 60.00558046700053, 55.84110372600003, 50.00032307300057, 61.92385844700016, 59.76253377500052, 57.84027819800008, 59.924564903000146, 59.924564903000146, 55.84110372600003, 54.08390356600012, 55.84110372600003, 55.7603265500004, 61.92385844700016, 53.9225873580001, 55.84110372600003, 66.00381831500022, 61.76158917500038, 55.84110372600003, 55.84110372600003, 65.75969997500056, 61.842723811000496, 55.7603265500004, 57.75938195000026, 69.76190720000022, 55.7603265500004, 53.841929254000206, 59.76253377500052, 61.680122020000454, 59.76253377500052, 61.680122020000454, 55.7603265500004, 63.51655044400036, 55.7603265500004, 61.680122020000454, 55.84110372600003, 59.76253377500052, 55.7603265500004, 51.67725046000055, 51.75811932500028, 65.67799370000057, 59.76253377500052, 55.7603265500004, 55.59844114400039, 59.76253377500052, 55.51766396800008, 59.76253377500052, 57.59725791200026, 57.516361664000215, 61.59898738400034, 57.516361664000215, 61.51785274800045, 55.43688679200022, 59.519155052000315, 55.51766396800008, 63.51655044400036, 65.43387536000023, 55.59844114400039, 59.519155052000315, 59.43813948800016], \"power_mean\": 58.85496822311871, \"energy_millijoules\": 4487.104412557008, \"energy_joules\": 4.487104412557008, \"coremark_score\": 3279.333639, \"coremarks_per_mhz\": 3.71301363111413, \"ulpmark_cm_score\": 55.71521788090858}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1306.521815315, 1310.7596454719999, 1312.6814978080001, 1314.6813872], \"power_mean\": 1311.16108644875, \"energy_millijoules\": 6555.80543224375, \"energy_joules\": 6.5558054322437505}}, \"979200\": {\"active\": {\"elapsed_sec\": 68.758035703, \"elapsed_ns\": 68758035703, \"power_samples\": [61.51785274800045, 63.597804152000435, 71.43370668000011, 65.43387536000023, 61.35558347600045, 61.436718112000335, 61.436718112000335, 69.51673922400028, 65.43387536000023, 65.43387536000023, 69.43512805600017, 61.436718112000335, 59.43813948800016, 63.43529673600028, 65.43387536000023, 61.27444884000033, 61.35558347600045, 61.27444884000033, 69.35351688800029, 65.43387536000023, 59.276108360000535, 69.43512805600017, 63.43529673600028, 59.35712392400046, 67.3550573360003, 61.11184704900029, 69.35351688800029, 61.35558347600045, 65.35250258000042, 61.27444884000033, 65.35250258000042, 67.27356524000015, 57.192776672000036, 69.35351688800029, 65.27112980000038, 63.272789320000356, 59.276108360000535, 71.18851596000036, 67.19207314400023, 55.113447034000274, 61.11184704900029, 67.27356524000015, 61.19331420400022, 61.27444884000033, 69.1902945520003, 61.27444884000033, 67.1102470640003, 61.030712413000174, 65.10805074500036, 69.10834891200034, 63.10994889700055, 65.10805074500036, 61.030712413000174, 69.10834891200034, 57.11154888200031, 65.02667796500032, 69.10834891200034, 65.02667796500032, 65.10805074500036, 69.1902945520003, 61.19331420400022, 55.03266985800019, 67.1102470640003, 61.030712413000174, 61.030712413000174, 67.02875496800016, 71.0247205200003, 61.030712413000174], \"power_mean\": 64.10803823063264, \"energy_millijoules\": 4407.9427815111285, \"energy_joules\": 4.407942781511128, \"coremark_score\": 3636.099193, \"coremarks_per_mhz\": 3.7133365941584966, \"ulpmark_cm_score\": 56.71579972603345}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1312.05560816, 1316.1321954, 1310.1350292000002, 1321.975631808], \"power_mean\": 1315.074616142, \"energy_millijoules\": 6575.37308071, \"energy_joules\": 6.57537308071}}, \"1075200\": {\"active\": {\"elapsed_sec\": 62.629928674, \"elapsed_ns\": 62629928674, \"power_samples\": [60.94957777700051, 68.78190424000013, 76.94067537500041, 69.026737744, 68.94512657600035, 70.94299028000023, 70.77952980000009, 72.94494796700042, 74.86084304300039, 71.0247205200003, 72.86309841100046, 66.86577077600009, 76.85858767500031, 74.77887441500025, 68.78190424000013, 68.78190424000013, 64.7825596250002, 70.77952980000009, 68.78190424000013, 72.78124885500051, 68.78190424000013, 70.77952980000009, 64.7011868450004, 64.86393240500047, 68.70029307200048, 72.78124885500051, 74.77887441500025, 70.77952980000009, 64.7825596250002, 68.53673626400018, 70.77952980000009, 68.70029307200048, 70.69779956000025, 70.77952980000009, 68.78190424000013, 64.61981406500036, 68.61868190400037, 68.70029307200048, 66.62129448800033, 74.69690578700056, 66.62129448800033, 68.78190424000013, 70.69779956000025, 66.62129448800033, 64.53810779000037, 66.62129448800033, 62.62242664900032, 74.53263259400046, 62.54083993400036, 64.53810779000037, 68.4551250960003, 76.52990045000047, 64.61981406500036, 70.53400412000019, 74.45066396600032, 68.53673626400018, 74.45066396600032, 74.3686953380004, 68.53673626400018, 68.4551250960003, 70.45227388000035, 72.4535151820005], \"power_mean\": 69.57569729703255, \"energy_millijoules\": 4357.520959156963, \"energy_joules\": 4.357520959156963, \"coremark_score\": 3991.952224, \"coremarks_per_mhz\": 3.7127531845238093, \"ulpmark_cm_score\": 57.37207057481756}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1315.504398648, 1311.5081949520002, 1319.504696815, 1311.586671392], \"power_mean\": 1314.52599045175, \"energy_millijoules\": 6572.62995225875, \"energy_joules\": 6.572629952258749}}, \"1171200\": {\"active\": {\"elapsed_sec\": 57.49768326, \"elapsed_ns\": 57497683260, \"power_samples\": [72.12611695800024, 76.36572505000026, 68.29190276000031, 72.37166562600055, 78.28054799000029, 76.28363735000039, 72.28981607000037, 72.4535151820005, 74.45066396600032, 74.28672671000027, 74.28672671000027, 74.28672671000027, 78.36275476200012, 78.28054799000029, 76.28363735000039, 70.28881340000044, 68.3735139280002, 74.28672671000027, 70.28881340000044, 78.19834121800022, 70.1253529200003, 74.12278945400044, 80.11689848400033, 68.21029159200043, 70.20708316000014, 74.20475808200035, 74.28672671000027, 74.28672671000027, 76.11946195000041, 70.20708316000014, 70.1253529200003, 73.95851626100034, 72.04426740200029, 74.12278945400044, 68.21029159200043, 70.20708316000014, 74.12278945400044, 78.11613444600016, 74.12278945400044, 78.11613444600016, 70.1253529200003, 76.03737425000031, 70.1253529200003, 81.94834277000018, 76.03737425000031, 78.0339276740001, 79.9519089060002, 78.0339276740001, 78.0339276740001, 74.0408208260003, 74.0408208260003, 79.9519089060002, 79.9519089060002, 79.9519089060002, 79.86958281800048, 81.8658976100005, 79.78725673000031], \"power_mean\": 74.78873395117574, \"energy_millijoules\": 4300.178936141111, \"energy_joules\": 4.300178936141111, \"coremark_score\": 4348.279821, \"coremarks_per_mhz\": 3.712670612192623, \"ulpmark_cm_score\": 58.13711562066872}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1309.041870768, 1310.960781744, 1315.112427288, 1307.1183080849999], \"power_mean\": 1310.55834697125, \"energy_millijoules\": 6552.7917348562505, \"energy_joules\": 6.5527917348562505}}, \"1248000\": {\"active\": {\"elapsed_sec\": 53.959971907, \"elapsed_ns\": 53959971907, \"power_samples\": [78.0339276740001, 75.79077472500035, 69.79809700000033, 73.79457900500051, 83.7796481700002, 79.78725673000031, 79.9519089060002, 73.79457900500051, 77.9513839890003, 77.86917721700047, 75.79077472500035, 75.87286242500045, 79.78725673000031, 77.7869704450004, 77.7869704450004, 83.7796481700002, 77.7869704450004, 79.62260455400042, 77.7869704450004, 79.78725673000031, 79.78725673000031, 79.78725673000031, 79.86958281800048, 69.79809700000033, 79.78725673000031, 73.71261037700037, 77.7869704450004, 81.70100729000023, 73.63064174900046, 83.61451970600046, 79.70493064200014, 75.54451162500027, 79.54027846600025, 77.45814335700038, 79.62260455400042, 79.54027846600025, 79.4579523780003, 75.62659932500037, 77.54035012900044, 79.62260455400042, 83.53195547400014, 81.61856213000033, 75.70868702500047, 73.54867312100055, 77.62255690100051, 81.53611697000042, 77.70476367300034, 73.54867312100055, 79.54027846600025, 81.53611697000042, 83.44939124200027, 77.45814335700038, 73.4667044930004], \"power_mean\": 78.10837157639658, \"energy_millijoules\": 4214.725535963877, \"energy_joules\": 4.2147255359638764, \"coremark_score\": 4633.319124, \"coremarks_per_mhz\": 3.7125954519230766, \"ulpmark_cm_score\": 59.315843431979694}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1318.56078263, 1318.56078263, 1314.641740368, 1310.570001104], \"power_mean\": 1315.583326683, \"energy_millijoules\": 6577.9166334149995, \"energy_joules\": 6.577916633415}}, \"1344000\": {\"active\": {\"elapsed_sec\": 50.105901491, \"elapsed_ns\": 50105901491, \"power_samples\": [87.44491969500041, 87.36211707500024, 87.44491969500041, 79.37562629000013, 91.43635855900038, 83.44939124200027, 89.4406391270004, 79.4579523780003, 83.36682701000018, 87.44491969500041, 75.4624239250004, 83.36682701000018, 89.35771743500027, 83.20136016800029, 89.35771743500027, 83.28392440000016, 87.1133698600006, 81.37122665000015, 77.2933929000003, 91.26993670000047, 93.18634652000037, 81.20599844000026, 93.26950660000034, 87.19617248000054, 89.19153420800035, 83.11879593600042, 87.27897510000048, 87.27897510000048, 87.1133698600006, 87.1133698600006, 77.1289793560004, 87.1133698600006, 83.11879593600042, 87.19617248000054, 83.11879593600042, 87.1133698600006, 83.0362317040001, 83.20136016800029, 83.11879593600042, 89.10861251600045, 85.11812720400053, 83.11879593600042, 83.11879593600042, 87.03056724000021, 84.95276010800035, 79.04598453600033, 82.95366747200023, 87.1133698600006, 82.95366747200023, 79.12831062400028], \"power_mean\": 85.02086282986038, \"energy_millijoules\": 4260.046977632807, \"energy_joules\": 4.260046977632808, \"coremark_score\": 4989.721174, \"coremarks_per_mhz\": 3.7125901592261905, \"ulpmark_cm_score\": 58.684798856119244}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1312.2532520000002, 1316.249734005, 1316.249734005, 1310.2570562800001], \"power_mean\": 1313.7524440725, \"energy_millijoules\": 6568.762220362501, \"energy_joules\": 6.5687622203625}}, \"1420800\": {\"active\": {\"elapsed_sec\": 47.391801856, \"elapsed_ns\": 47391801856, \"power_samples\": [86.94776462000027, 93.0200263600002, 87.03056724000021, 84.95276010800035, 87.03056724000021, 88.7769257480004, 86.94776462000027, 85.03544365600033, 86.94776462000027, 90.77169211600017, 84.7873930120004, 84.87007656000037, 88.85984744000052, 86.7821593800004, 86.86496200000033, 88.7769257480004, 84.87007656000037, 102.74846559600041, 88.7769257480004, 82.87110324000037, 84.7873930120004, 88.69366421300037, 86.7821593800004, 88.61074252100047, 82.78853900800027, 86.7821593800004, 90.77169211600017, 88.7769257480004, 88.7769257480004, 88.7769257480004, 88.69366421300037, 88.7769257480004, 88.61074252100047, 86.6990174050004, 84.70437059700043, 94.68169202800027, 94.43185457200025, 92.6038851400001, 92.77054612000029, 80.62854443000037, 90.68831102100035, 88.61074252100047, 84.62168704900046, 88.61074252100047, 90.60527025700048, 88.61074252100047, 86.6990174050004], \"power_mean\": 88.17583179904291, \"energy_millijoules\": 4178.811549108225, \"energy_joules\": 4.178811549108225, \"coremark_score\": 5275.374552, \"coremarks_per_mhz\": 3.712960692567568, \"ulpmark_cm_score\": 59.825621965018016}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1319.690540568, 1309.7877992, 1307.7923183999999, 1313.6219722560002], \"power_mean\": 1312.723157606, \"energy_millijoules\": 6563.615788030001, \"energy_joules\": 6.563615788030001}}, \"1516800\": {\"active\": {\"elapsed_sec\": 44.391688838, \"elapsed_ns\": 44391688838, \"power_samples\": [86.45060954500036, 96.59294061200035, 98.50395105200028, 92.6870452200003, 90.5222294930004, 98.42043375600042, 100.4188100070005, 98.42043375600042, 96.42614416400033, 96.42614416400033, 92.35440490000019, 92.43756498000039, 96.42614416400033, 100.4188100070005, 96.34274594000044, 94.43185457200025, 98.33691646000034, 88.52782082900035, 92.27124482000022, 98.33691646000034, 96.25934771600032, 96.17594949200043, 98.25339916400026, 90.27310720100036, 88.36197744500032, 96.25934771600032, 88.1961340610003, 96.25934771600032, 98.25339916400026, 92.35440490000019, 92.18808474000048, 92.18808474000048, 100.16790017100061, 94.26529626800038, 96.34274594000044, 98.1698818680004, 92.18808474000048, 98.1698818680004, 96.17594949200043, 98.1698818680004, 88.1961340610003, 94.26529626800038, 96.17594949200043, 98.25339916400026], \"power_mean\": 95.00718523081855, \"energy_millijoules\": 4217.529404140726, \"energy_joules\": 4.217529404140726, \"coremark_score\": 5632.025952, \"coremarks_per_mhz\": 3.713097278481013, \"ulpmark_cm_score\": 59.27640949095758}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1309.39701856, 1313.465183712, 1313.308395168, 1319.37553364], \"power_mean\": 1313.88653277, \"energy_millijoules\": 6569.432663850001, \"energy_joules\": 6.569432663850001}}, \"1612800\": {\"active\": {\"elapsed_sec\": 41.750292744, \"elapsed_ns\": 41750292744, \"power_samples\": [90.1900664370005, 100.0002841740004, 100.16790017100061, 96.09220947200015, 100.16790017100061, 98.1698818680004, 98.1698818680004, 96.09220947200015, 98.08602228800032, 106.0694449160003, 96.09220947200015, 96.09220947200015, 94.01511750400027, 107.89503144400032, 101.91022223400046, 97.91898769600016, 94.01511750400027, 105.9014567720003, 96.00881124800026, 97.91898769600016, 102.07773360200054, 103.81992215000037, 101.8264665500003, 99.83301095000024, 97.8354704000003, 96.00881124800026, 107.89503144400032, 95.92541302400014, 95.84201480000024, 95.92541302400014, 107.81091830000037, 97.8354704000003, 95.84201480000024, 101.8264665500003, 97.8354704000003, 97.8354704000003, 101.8264665500003, 103.81992215000037, 91.85510360000035, 97.8354704000003, 95.84201480000024], \"power_mean\": 98.97873237612225, \"energy_millijoules\": 4132.3910521331345, \"energy_joules\": 4.132391052133134, \"coremark_score\": 5988.310817, \"coremarks_per_mhz\": 3.7129903379216267, \"ulpmark_cm_score\": 60.49766269601962}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1322.97411807, 1316.9085299749997, 1309.0059176080001, 1312.994496792], \"power_mean\": 1315.47076561125, \"energy_millijoules\": 6577.35382805625, \"energy_joules\": 6.57735382805625}}, \"1708800\": {\"active\": {\"elapsed_sec\": 39.409012641, \"elapsed_ns\": 39409012641, \"power_samples\": [45.977030150000246, 103.73604739400048, 97.66843580800014, 101.65895518200045, 101.7427108660006, 107.72680515600041, 103.6521726380006, 101.65895518200045, 103.6521726380006, 113.62642884200022, 105.56548048400032, 105.64947455600031, 109.63590946800036, 105.64947455600031, 101.5751994980003, 105.4811421740003, 107.55857886800027, 99.49812172900056, 99.58210111400058, 103.56829788200025, 97.50105893200043, 105.4811421740003, 101.65895518200045, 95.50808010800029, 105.4811421740003, 107.47412099800022, 105.56548048400032, 109.55167725200022, 107.47412099800022, 107.47412099800022, 101.49110055300048, 107.47412099800022, 107.39000785400026, 101.49110055300048, 101.49110055300048, 107.39000785400026, 101.49110055300048, 103.3163298650004, 105.3131540300003], \"power_mean\": 102.68926708456446, \"energy_millijoules\": 4046.8826246306257, \"energy_joules\": 4.0468826246306255, \"coremark_score\": 6344.211541, \"coremarks_per_mhz\": 3.712670611540262, \"ulpmark_cm_score\": 61.77594538532445}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1318.666122546, 1318.7451970309999, 1320.743215334, 1310.7653816000002], \"power_mean\": 1317.22997912775, \"energy_millijoules\": 6586.14989563875, \"energy_joules\": 6.5861498956387505}}, \"1804800\": {\"active\": {\"elapsed_sec\": 37.313540976, \"elapsed_ns\": 37313540976, \"power_samples\": [115.11176156300007, 121.26324644000033, 117.2736815950002, 113.3726708390002, 111.2913760700003, 113.20372963100021, 117.18897284700029, 113.20372963100021, 111.20702478200042, 117.18897284700029, 111.12267349400031, 115.11176156300007, 121.00840503200038, 111.2913760700003, 113.2882002350002, 115.11176156300007, 113.119259027, 113.20372963100021, 121.17829930400035, 117.10426409900015, 115.11176156300007, 115.11176156300007, 121.09335216800037, 115.02717188700035, 121.00840503200038, 111.12267349400031, 111.12267349400031, 121.09335216800037, 123.0007884960005, 115.02717188700035, 110.95397091800032, 114.94258221100017, 110.86927392800044, 112.95031781900025, 112.8655010240002, 114.94258221100017, 114.85764585600032], \"power_mean\": 115.21475356708133, \"energy_millijoules\": 4299.070428265031, \"energy_joules\": 4.299070428265031, \"coremark_score\": 6700.436868, \"coremarks_per_mhz\": 3.7125647539893616, \"ulpmark_cm_score\": 58.152106175402224}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1316.3577790900001, 1322.4208635, 1312.4454156, 1312.3670213280002], \"power_mean\": 1315.8977698795002, \"energy_millijoules\": 6579.488849397501, \"energy_joules\": 6.579488849397501}}}}, \"4\": {\"freqs\": {\"710400\": {\"active\": {\"elapsed_sec\": 41.529443005, \"elapsed_ns\": 41529443005, \"power_samples\": [120.9234578960004, 128.9820216410003, 124.82245228000033, 126.7333747800003, 126.81867937600032, 120.75321548000034, 124.7372670000002, 130.71742630000017, 120.75321548000034, 124.56689644000039, 124.90798668000048, 120.83816261600032, 126.64807018400006, 122.66017503200032, 126.7333747800003, 126.7333747800003, 122.7452412400005, 128.72540054000024, 120.66826834400035, 126.64807018400006, 126.7333747800003, 124.7372670000002, 136.69758560000037, 126.7333747800003, 120.58332120800037, 126.7333747800003, 132.5422099680004, 132.62787202400023, 130.46079808000013, 124.56689644000039, 120.4134269360004, 126.39215639600025, 126.47746099200026, 126.39215639600025, 126.56276558800027, 128.55455320400029, 126.56276558800027, 124.48171116000049, 126.39215639600025, 130.46079808000013, 134.53399758400042], \"power_mean\": 126.26234522031737, \"energy_millijoules\": 5243.604869504804, \"energy_joules\": 5.243604869504804, \"coremark_score\": 6021.339628, \"coremarks_per_mhz\": 8.475984836711712, \"ulpmark_cm_score\": 47.67712408193135}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1317.957034205, 1305.99650664, 1316.121558845, 1312.053122952], \"power_mean\": 1313.0320556605, \"energy_millijoules\": 6565.1602783025, \"energy_joules\": 6.5651602783025}}, \"825600\": {\"active\": {\"elapsed_sec\": 35.7471741, \"elapsed_ns\": 35747174100, \"power_samples\": [144.41064046400015, 138.34553427200035, 146.23339820000047, 148.3114437200004, 144.32426373200042, 152.20768940000062, 146.23339820000047, 144.15115626500028, 148.22482860000036, 154.02889899500042, 144.23788700000046, 150.12916934000032, 146.14654766000035, 150.04243514800055, 152.1204801800002, 148.13785850000045, 150.04243514800055, 145.97355556400043, 152.1204801800002, 152.03362691600046, 150.12916934000032, 154.11587157500026, 149.95570095600033, 144.15115626500028, 149.95570095600033, 150.12916934000032, 145.97355556400043, 149.95570095600033, 143.97840280100036, 143.97840280100036, 153.94192641500035, 149.86896676400033, 149.95570095600033, 145.97355556400043, 153.8549538350003], \"power_mean\": 148.3821046163432, \"energy_millijoules\": 5304.240927044835, \"energy_joules\": 5.304240927044836, \"coremark_score\": 6995.746586, \"coremarks_per_mhz\": 8.473530264050387, \"ulpmark_cm_score\": 47.13209739876637}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1315.6497628849997, 1311.582436032, 1307.51999024, 1311.582436032], \"power_mean\": 1311.58365629725, \"energy_millijoules\": 6557.91828148625, \"energy_joules\": 6.557918281486249}}, \"940800\": {\"active\": {\"elapsed_sec\": 31.318239624, \"elapsed_ns\": 31318239624, \"power_samples\": [167.88759542100047, 169.61489118500026, 169.5269655410002, 163.7262335940004, 171.60560666500032, 167.7119822770003, 167.7119822770003, 165.54169363400047, 167.7119822770003, 171.60560666500032, 169.61489118500026, 165.45364700400046, 163.55109722600037, 173.50815835700018, 177.49343026400015, 169.79074247300036, 167.53636913300033, 167.62417570500043, 175.59111696000036, 177.49343026400015, 169.5269655410002, 161.5605008180005, 173.50815835700018, 171.5175619490003, 165.45364700400046, 167.4482026980004, 167.27258955400043, 169.5269655410002, 163.55109722600037, 165.54169363400047, 177.40466578400014], \"power_mean\": 169.11656923267773, \"energy_millijoules\": 5296.433239617787, \"energy_joules\": 5.296433239617787, \"coremark_score\": 7985.434567, \"coremarks_per_mhz\": 8.48791939519558, \"ulpmark_cm_score\": 47.201576738469576}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1309.1989151999999, 1311.190464672, 1317.169194132, 1315.17764466], \"power_mean\": 1313.184054666, \"energy_millijoules\": 6565.920273330001, \"energy_joules\": 6.565920273330001}}, \"1056000\": {\"active\": {\"elapsed_sec\": 27.912621291, \"elapsed_ns\": 27912621291, \"power_samples\": [191.4357633020004, 195.1522448420003, 195.1522448420003, 191.07845290800037, 183.11389626600044, 191.16768907600044, 187.09413553000036, 195.24171939800044, 193.06857254000033, 193.06857254000033, 200.94329741000047, 189.08833327600018, 191.07845290800037, 195.0627702860004, 192.88986206000027, 195.0627702860004, 191.07845290800037, 194.97329573000047, 187.00513775000036, 185.01513719000013, 193.06857254000033, 192.88986206000027, 188.91009908400042, 192.9792173000003, 199.0430095500003, 198.86358415000063, 192.9792173000003], \"power_mean\": 192.4631245567411, \"energy_millijoules\": 5372.150308234876, \"energy_joules\": 5.372150308234876, \"coremark_score\": 8959.931188, \"coremarks_per_mhz\": 8.484783321969697, \"ulpmark_cm_score\": 46.53630029985932}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1315.0200570749998, 1310.876566296, 1315.0200570749998, 1314.941424415], \"power_mean\": 1313.9645262152499, \"energy_millijoules\": 6569.822631076249, \"energy_joules\": 6.569822631076249}}, \"1171200\": {\"active\": {\"elapsed_sec\": 25.204969626, \"elapsed_ns\": 25204969626, \"power_samples\": [206.64680926400024, 218.5928236040004, 214.60945977800043, 218.6837277560005, 218.5928236040004, 214.79079130600053, 212.7103631260004, 220.58246694800027, 218.50154689400028, 214.5184224330003, 214.60945977800043, 220.30902423000043, 214.42775666900025, 214.42775666900025, 208.54577418800022, 216.5120231100002, 218.22883443800038, 218.50154689400028, 222.48059446200045, 214.60945977800043, 220.49107067800037, 222.48059446200045, 216.42123803000027, 210.44894724500045, 222.38945216600018], \"power_mean\": 216.52451070040036, \"energy_millijoules\": 5457.493715488103, \"energy_joules\": 5.457493715488103, \"coremark_score\": 9923.391418, \"coremarks_per_mhz\": 8.472841033128415, \"ulpmark_cm_score\": 45.80857313504771}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1314.784159095, 1318.849017214, 1314.784159095, 1306.816264776], \"power_mean\": 1313.8084000449999, \"energy_millijoules\": 6569.042000224999, \"energy_joules\": 6.569042000224999}}, \"1286400\": {\"active\": {\"elapsed_sec\": 22.931757074, \"elapsed_ns\": 22931757074, \"power_samples\": [77.57638406000046, 244.19675753000024, 244.19675753000024, 246.09347103400046, 246.09347103400046, 244.10430446600026, 240.02968049300034, 244.10430446600026, 240.02968049300034, 241.92639424100003, 242.01872798900013, 244.01185140200027, 246.00089889800051, 244.01185140200027, 247.7114928880003, 247.89725518600017, 249.88618361000022, 247.7114928880003, 247.89725518600017, 245.90832676200034, 245.72280309600046, 237.7639687440003], \"power_mean\": 237.04060515445485, \"energy_millijoules\": 5435.757574075911, \"energy_joules\": 5.435757574075911, \"coremark_score\": 10907.028489, \"coremarks_per_mhz\": 8.47872239505597, \"ulpmark_cm_score\": 45.99174937313139}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1310.484273648, 1314.46930619, 1318.454338732, 1308.5723928], \"power_mean\": 1312.9950778425, \"energy_millijoules\": 6564.9753892125, \"energy_joules\": 6.5649753892125}}, \"1382400\": {\"active\": {\"elapsed_sec\": 21.349864054, \"elapsed_ns\": 21349864054, \"power_samples\": [257.8500486520004, 267.61061636000045, 265.6219265680004, 265.5281629800004, 259.6517820080005, 265.5281629800004, 269.3173009560005, 265.43439939200016, 263.5355173200003, 271.4938751400002, 267.51673370000026, 267.42285104000007, 263.3482287760005, 261.5469466000004, 261.3598962000003, 261.2663710000004, 267.23508572000037, 267.51673370000026, 267.23508572000037, 265.2468722160004, 273.20380044000035], \"power_mean\": 265.45097130800036, \"energy_millijoules\": 5667.342150428062, \"energy_joules\": 5.6673421504280626, \"coremark_score\": 11716.187084, \"coremarks_per_mhz\": 8.47525107349537, \"ulpmark_cm_score\": 44.112388729012444}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1310.092302288, 1318.2177255880001, 1314.23340821, 1316.14477611], \"power_mean\": 1314.6720530490002, \"energy_millijoules\": 6573.360265245001, \"energy_joules\": 6.573360265245001}}, \"1478400\": {\"active\": {\"elapsed_sec\": 19.968865409, \"elapsed_ns\": 19968865409, \"power_samples\": [291.20118264800067, 293.0981581040005, 299.06279861600024, 298.9670098280003, 289.1176568880005, 287.1294433840003, 298.77503967500024, 296.9789153960003, 292.9072949600002, 293.00272653200045, 291.0105581360003, 282.7692106010004, 290.9152458800004, 283.05410644400035, 290.9152458800004, 292.81147227500037, 296.8832456800003, 290.8195430000003, 290.9152458800004], \"power_mean\": 292.1228473582635, \"energy_millijoules\": 5833.361821791015, \"energy_joules\": 5.833361821791015, \"coremark_score\": 12526.305241, \"coremarks_per_mhz\": 8.472879627299783, \"ulpmark_cm_score\": 42.85693355521064}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1311.929234226, 1316.066024378, 1311.929234226, 1316.066024378], \"power_mean\": 1313.997629302, \"energy_millijoules\": 6569.98814651, \"energy_joules\": 6.56998814651}}, \"1574400\": {\"active\": {\"elapsed_sec\": 18.741617858, \"elapsed_ns\": 18741617858, \"power_samples\": [316.5811011320004, 316.38737879600035, 320.5606478190007, 320.46354826300035, 324.6334589750004, 322.3539472910004, 316.5811011320004, 328.5156679620004, 322.5483845470005, 322.5483845470005, 330.2103192100001, 326.52385800300044, 320.3664487070005, 318.37487738000027, 322.3539472910004, 332.2955129540003, 326.23148768700025, 324.2441081750003], \"power_mean\": 322.87634332616705, \"energy_millijoules\": 6051.2250420074315, \"energy_joules\": 6.051225042007432, \"coremark_score\": 13346.85815, \"coremarks_per_mhz\": 8.477425146087398, \"ulpmark_cm_score\": 41.313948541742725}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1311.771885273, 1315.908520914, 1315.7506946969997, 1311.929234226], \"power_mean\": 1313.8400837775, \"energy_millijoules\": 6569.2004188875, \"energy_joules\": 6.5692004188875}}, \"1670400\": {\"active\": {\"elapsed_sec\": 17.664123378, \"elapsed_ns\": 17664123378, \"power_samples\": [351.9847056550004, 359.9378196700004, 352.0837113390005, 357.65206257200043, 355.7644039080003, 357.75142571600054, 357.8511960860003, 359.6389653080005, 359.7384475240003, 361.52626675600027, 359.83833745400034, 353.67418557800033, 363.71656290600026, 363.6168423020001, 355.6651598360004, 355.6651598360004, 361.6258680440003], \"power_mean\": 358.1018306170592, \"energy_millijoules\": 6325.554917907391, \"energy_joules\": 6.325554917907391, \"coremark_score\": 14161.096635, \"coremarks_per_mhz\": 8.477668004669539, \"ulpmark_cm_score\": 39.52222425454881}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1313.525392005, 1309.543221096, 1309.4648268239998, 1315.514439501], \"power_mean\": 1312.0119698565, \"energy_millijoules\": 6560.059849282499, \"energy_joules\": 6.560059849282499}}, \"1766400\": {\"active\": {\"elapsed_sec\": 16.680578692, \"elapsed_ns\": 16680578692, \"power_samples\": [387.5730399000006, 389.3575231640002, 389.25625389200036, 389.3575231640002, 393.2336541100003, 389.25625389200036, 389.1549846200003, 391.1456009300002, 389.0537153480002, 391.1456009300002, 391.04421234200026, 398.99398868000026, 393.03063879000024, 390.841019639, 390.7396310510003, 394.9154385060003], \"power_mean\": 391.1311924348753, \"energy_millijoules\": 6524.294634305733, \"energy_joules\": 6.524294634305733, \"coremark_score\": 14997.0006, \"coremarks_per_mhz\": 8.490149796195652, \"ulpmark_cm_score\": 38.31831853292799}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1323.316248874, 1315.356936037, 1319.2593163200002, 1319.33863017], \"power_mean\": 1319.31778285025, \"energy_millijoules\": 6596.588914251251, \"energy_joules\": 6.59658891425125}}, \"1862400\": {\"active\": {\"elapsed_sec\": 15.840134421, \"elapsed_ns\": 15840134421, \"power_samples\": [438.5339475650003, 448.5783000740005, 440.31547124600024, 448.4730267590003, 450.3542518750003, 448.2633395030002, 450.1443264750003, 444.28737059000014, 448.2633395030002, 448.1584958750002, 446.1685959500003, 448.0536522470006, 449.93440107500055, 444.07816011000045, 442.0924485820003], \"power_mean\": 446.37994182860035, \"energy_millijoules\": 7070.71828140319, \"energy_joules\": 7.07071828140319, \"coremark_score\": 15793.796197, \"coremarks_per_mhz\": 8.480345896155498, \"ulpmark_cm_score\": 35.357086798031396}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1315.1203580879999, 1322.919782848, 1312.9746411200001, 1317.112884432], \"power_mean\": 1317.0319166220002, \"energy_millijoules\": 6585.15958311, \"energy_joules\": 6.58515958311}}, \"1958400\": {\"active\": {\"elapsed_sec\": 15.051772755, \"elapsed_ns\": 15051772755, \"power_samples\": [147.17878494000047, 461.85609348500043, 461.85609348500043, 461.85609348500043, 467.71090461000017, 469.69637799400016, 463.73588924900037, 469.69637799400016, 463.73588924900037, 469.4836346320003, 461.4329499000005, 463.41806558000053, 461.64430514000037, 465.40318126000057, 463.62965896400055], \"power_mean\": 443.4889533311337, \"energy_millijoules\": 6675.294944893025, \"energy_joules\": 6.675294944893025, \"coremark_score\": 16622.340426, \"coremarks_per_mhz\": 8.487714678308823, \"ulpmark_cm_score\": 37.45152866859674}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1316.7974002400001, 1318.94335584, 1320.77335096, 1318.94335584], \"power_mean\": 1318.86436572, \"energy_millijoules\": 6594.3218286, \"energy_joules\": 6.5943218286}}, \"2054400\": {\"active\": {\"elapsed_sec\": 14.347522911, \"elapsed_ns\": 14347522911, \"power_samples\": [503.25296593600024, 510.98066079200044, 503.14478634000034, 507.1150177000002, 504.9133046840002, 508.99159656800043, 504.69670734800025, 506.7897644800005, 512.6393318000003, 510.7633485360004, 508.7745229440004, 512.6393318000003, 512.6393318000003, 508.7745229440004], \"power_mean\": 508.2939424051432, \"energy_millijoules\": 7292.7589841803065, \"energy_joules\": 7.292758984180306, \"coremark_score\": 17438.616071, \"coremarks_per_mhz\": 8.488422931756231, \"ulpmark_cm_score\": 34.28057893347473}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1322.6025450860002, 1316.6393349020002, 1318.62707163, 1310.6720514869999], \"power_mean\": 1317.1352507762501, \"energy_millijoules\": 6585.676253881251, \"energy_joules\": 6.5856762538812506}}, \"2150400\": {\"active\": {\"elapsed_sec\": 13.725845099, \"elapsed_ns\": 13725845099, \"power_samples\": [548.3831752760004, 554.0068727540001, 552.2449072740001, 554.1181499300001, 557.8679867170003, 559.9637839690004, 557.7564711530003, 557.8679867170003, 555.9911544420002, 561.9480656570004, 555.7683619460004, 551.8002748580002, 555.9911544420002], \"power_mean\": 555.6698727026926, \"energy_millijoules\": 7627.038598898208, \"energy_joules\": 7.627038598898208, \"coremark_score\": 18228.21728, \"coremarks_per_mhz\": 8.476663541666667, \"ulpmark_cm_score\": 32.77812177797483}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1322.364860294, 1312.345257575, 1316.402721758, 1314.4900214789998], \"power_mean\": 1316.4007152765, \"energy_millijoules\": 6582.0035763825, \"energy_joules\": 6.5820035763825}}, \"2246400\": {\"active\": {\"elapsed_sec\": 13.13081812, \"elapsed_ns\": 13130818120, \"power_samples\": [597.4576703480002, 601.4298230990005, 610.8947074040004, 611.1246420500004, 611.2393742660004, 612.8782741720004, 610.8947074040004, 614.8659056260001, 614.8659056260001, 610.8947074040004, 614.8659056260001, 616.8494723940003, 616.7343827180002], \"power_mean\": 611.1534983182311, \"energy_millijoules\": 8024.945429818418, \"energy_joules\": 8.024945429818418, \"coremark_score\": 19056.330513, \"coremarks_per_mhz\": 8.48305311298077, \"ulpmark_cm_score\": 31.152859815229522}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1324.03859679, 1318.2321210300001, 1314.095940066, 1316.1657853720003], \"power_mean\": 1318.1331108145, \"energy_millijoules\": 6590.6655540725005, \"energy_joules\": 6.5906655540725}}, \"2342400\": {\"active\": {\"elapsed_sec\": 12.600222964, \"elapsed_ns\": 12600222964, \"power_samples\": [658.2935793340002, 664.2476294040002, 664.2476294040002, 664.0117311800004, 661.9067471940004, 663.7758329560006, 663.7758329560006, 671.8297311660003, 669.9650663300004, 667.8597248840003, 665.8767534760004, 665.8767534760004], \"power_mean\": 665.1389176466671, \"energy_millijoules\": 8380.89866438164, \"energy_joules\": 8.380898664381641, \"coremark_score\": 19858.60672, \"coremarks_per_mhz\": 8.477888797814208, \"ulpmark_cm_score\": 29.829736644172336}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1318.07381706, 1315.9291722280002, 1317.9948269400002, 1315.9291722280002], \"power_mean\": 1316.9817471140002, \"energy_millijoules\": 6584.908735570001, \"energy_joules\": 6.584908735570001}}, \"2419200\": {\"active\": {\"elapsed_sec\": 12.213984579, \"elapsed_ns\": 12213984579, \"power_samples\": [693.6546070520003, 711.2673649320002, 715.1158467690004, 715.1158467690004, 705.1987155160004, 714.7527066930004, 708.9225644600003, 706.9401889000003, 712.7704502050003, 710.6633234120002, 708.8018752280004, 720.8249423100003], \"power_mean\": 710.335702687167, \"energy_millijoules\": 8676.029318534187, \"energy_joules\": 8.676029318534187, \"coremark_score\": 20486.765549, \"coremarks_per_mhz\": 8.468405071511244, \"ulpmark_cm_score\": 28.81502480241012}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1317.75785658, 1321.6514812120001, 1319.744283028, 1317.75785658], \"power_mean\": 1319.22786935, \"energy_millijoules\": 6596.13934675, \"energy_joules\": 6.59613934675}}}}, \"7\": {\"freqs\": {\"844800\": {\"active\": {\"elapsed_sec\": 34.925039674, \"elapsed_ns\": 34925039674, \"power_samples\": [171.61584456800028, 173.60119839200001, 169.45009482000023, 165.5677891040002, 171.61584456800028, 171.52756146399997, 169.36193103200048, 169.45009482000023, 171.43927836000012, 179.56132821200026, 171.52756146399997, 171.61584456800028, 171.52756146399997, 175.67543625600024, 175.4980309680002, 173.42439404000015, 173.42439404000015, 171.52756146399997, 169.6264223960004, 169.5382586080002, 175.4980309680002, 171.52756146399997, 165.5677891040002, 169.71494751100045, 177.66497823300028, 171.52756146399997, 169.5382586080002, 179.47256857600019, 175.4980309680002, 171.43927836000012, 169.36193103200048, 173.33599186400033, 173.33599186400033, 173.33599186400033], \"power_mean\": 172.1586865437649, \"energy_millijoules\": 6012.648957764719, \"energy_joules\": 6.012648957764719, \"coremark_score\": 7160.451395, \"coremarks_per_mhz\": 8.475913109611742, \"ulpmark_cm_score\": 41.57901147332918}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1313.4656034569998, 1319.5066312340002, 1317.5995526099998, 1317.5995526099998], \"power_mean\": 1317.0428349777499, \"energy_millijoules\": 6585.21417488875, \"energy_joules\": 6.585214174888749}}, \"960000\": {\"active\": {\"elapsed_sec\": 30.740978686, \"elapsed_ns\": 30740978686, \"power_samples\": [96.29550205700025, 197.16815400800056, 193.1981607920004, 195.18315740000048, 197.16815400800056, 195.18315740000048, 191.21316418400033, 191.21316418400033, 189.22409996000033, 191.12368962800042, 195.18315740000048, 193.1981607920004, 189.13474472000007, 199.15721823200033, 195.18315740000048, 191.0342150720005, 191.0342150720005, 195.00373200000035, 185.0758725520002, 196.89865869200048, 195.09344470000042, 195.00373200000035, 196.89865869200048, 197.0783222360003, 193.01897353600043, 199.0672671440002, 191.12368962800042, 191.0342150720005, 198.88736496800016, 190.85489926100036], \"power_mean\": 190.53113675966705, \"energy_millijoules\": 5857.113614148276, \"energy_joules\": 5.857113614148275, \"coremark_score\": 8135.3726, \"coremarks_per_mhz\": 8.474346458333333, \"ulpmark_cm_score\": 42.68313993365387}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1313.544355189, 1321.413471714, 1317.44157237, 1313.386851725], \"power_mean\": 1316.4465627495001, \"energy_millijoules\": 6582.232813747501, \"energy_joules\": 6.582232813747501}}, \"1075200\": {\"active\": {\"elapsed_sec\": 27.430509052, \"elapsed_ns\": 27430509052, \"power_samples\": [214.7726138720002, 218.55923453000037, 220.63896329700037, 220.63896329700037, 218.55923453000037, 218.74189265600035, 220.63896329700037, 226.59658943200043, 218.55923453000037, 212.69681733000039, 220.54770168500045, 220.36517846100037, 214.4995288580003, 218.3769499380005, 214.68133716200032, 218.4680922340001, 224.33350369300047, 216.4838105460003, 220.4564400730003, 222.25796039300053, 224.42500344900054, 228.30589483200038, 218.4680922340001, 210.52689933100055, 220.4564400730003, 216.39278732200046, 218.3769499380005], \"power_mean\": 219.17870655529666, \"energy_millijoules\": 6012.183494170717, \"energy_joules\": 6.012183494170716, \"coremark_score\": 9117.432531, \"coremarks_per_mhz\": 8.479754958147321, \"ulpmark_cm_score\": 41.582230522803336}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1319.1901944659999, 1321.175786922, 1317.28359213, 1311.3223884650001], \"power_mean\": 1317.24299049575, \"energy_millijoules\": 6586.21495247875, \"energy_joules\": 6.58621495247875}}, \"1190400\": {\"active\": {\"elapsed_sec\": 24.791275303, \"elapsed_ns\": 24791275303, \"power_samples\": [238.13844007100033, 246.07867991000057, 246.07867991000057, 242.01802068600045, 244.0946363660005, 250.0508326610004, 239.94164315000035, 244.0946363660005, 242.01802068600045, 245.8930593500006, 243.90925395000022, 247.78800032900017, 243.81656274200031, 241.92544855000028, 245.8930593500006, 239.75635811600046, 247.88092992500037, 243.72349165200058, 243.72349165200058, 245.70705842000052, 239.75635811600046, 243.72349165200058, 243.81656274200031, 243.72349165200058], \"power_mean\": 243.89792533350044, \"energy_millijoules\": 6046.540612773348, \"energy_joules\": 6.046540612773348, \"coremark_score\": 10088.781275, \"coremarks_per_mhz\": 8.475118678595429, \"ulpmark_cm_score\": 41.34595564807317}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1314.982073168, 1314.90320212, 1312.91401858, 1312.835266848], \"power_mean\": 1313.908640179, \"energy_millijoules\": 6569.543200895, \"energy_joules\": 6.5695432008950005}}, \"1305600\": {\"active\": {\"elapsed_sec\": 22.601154939, \"elapsed_ns\": 22601154939, \"power_samples\": [269.5261183800003, 259.60015516800036, 263.57135339000024, 271.4153259560003, 267.53848692600036, 271.32096676400033, 265.46091842600026, 273.30429538800036, 263.4774707300003, 273.30429538800036, 273.1153388600003, 273.1153388600003, 269.33763814000054, 267.16200371000036, 267.35024531800036, 273.20981712400066, 271.32096676400033, 273.30429538800036, 261.4940230340003, 279.0686740100002, 269.14915790000055, 261.2127322700003], \"power_mean\": 268.9708917224549, \"energy_millijoules\": 6079.052797900195, \"energy_joules\": 6.079052797900196, \"coremark_score\": 11067.333658, \"coremarks_per_mhz\": 8.476818059129902, \"ulpmark_cm_score\": 41.124827882125665}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1316.80932768, 1316.80932768, 1316.80932768, 1312.756515116], \"power_mean\": 1315.796124539, \"energy_millijoules\": 6578.9806226949995, \"energy_joules\": 6.578980622694999}}, \"1401600\": {\"active\": {\"elapsed_sec\": 21.063764628, \"elapsed_ns\": 21063764628, \"power_samples\": [292.9584347900004, 292.8627650740002, 290.9753443100003, 290.9753443100003, 296.8327713560002, 292.8627650740002, 288.80139068600056, 294.7499476940004, 296.73686325200015, 292.76709535800046, 294.6537663290003, 300.60602763400016, 296.54465397800027, 288.7055680010003, 292.67103355300037, 294.84573648200035, 292.67103355300037, 294.6537663290003, 300.5098813860002, 290.59275013300044], \"power_mean\": 293.8488469641003, \"energy_millijoules\": 6189.562948661001, \"energy_joules\": 6.189562948661002, \"coremark_score\": 11875.356261, \"coremarks_per_mhz\": 8.472714227311645, \"ulpmark_cm_score\": 40.39057395063458}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1310.535417335, 1318.556996712, 1312.599011652, 1312.519937167], \"power_mean\": 1313.5528407165, \"energy_millijoules\": 6567.7642035825, \"energy_joules\": 6.567764203582501}}, \"1516800\": {\"active\": {\"elapsed_sec\": 19.44579869, \"elapsed_ns\": 19445798690, \"power_samples\": [314.49328302000026, 326.30011047000016, 322.3308203290005, 326.20241531000033, 328.18490994200033, 324.12234459000024, 327.9892814780003, 328.0870957100003, 326.1047201500003, 333.9401129430005, 326.1047201500003, 326.00702499000045, 327.79365301400026, 327.8914672460003, 327.8914672460003, 325.90932983000016, 327.8914672460003, 325.90932983000016, 329.87360466200016], \"power_mean\": 326.4751135871582, \"energy_millijoules\": 6348.569336110762, \"energy_joules\": 6.348569336110763, \"coremark_score\": 12863.39079, \"coremarks_per_mhz\": 8.480611016613924, \"ulpmark_cm_score\": 39.37895087291495}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1318.161126534, 1306.405522488, 1312.283681971, 1324.196789481], \"power_mean\": 1315.2617801185002, \"energy_millijoules\": 6576.308900592501, \"energy_joules\": 6.576308900592501}}, \"1632000\": {\"active\": {\"elapsed_sec\": 18.094308118, \"elapsed_ns\": 18094308118, \"power_samples\": [347.62602099300034, 353.47636716800025, 365.47637062800027, 359.32640418400024, 359.52625408300014, 359.4261247880004, 363.4902907710002, 361.2083442200003, 361.2083442200003, 361.2083442200003, 359.1269629760004, 363.0900461120002, 359.2266835800003, 367.1573869200006, 367.1573869200006, 361.2083442200003, 365.1757262800004, 365.1757262800004], \"power_mean\": 361.07172936461143, \"energy_millijoules\": 6533.3431238223875, \"energy_joules\": 6.533343123822387, \"coremark_score\": 13825.139634, \"coremarks_per_mhz\": 8.471286540441175, \"ulpmark_cm_score\": 38.265248780280714}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1316.01910275, 1320.145170078, 1315.9401126300002, 1306.0919454], \"power_mean\": 1314.5490827145, \"energy_millijoules\": 6572.7454135725, \"energy_joules\": 6.5727454135725}}, \"1747200\": {\"active\": {\"elapsed_sec\": 16.889082806, \"elapsed_ns\": 16889082806, \"power_samples\": [124.29821495000033, 388.9678363000003, 404.6243215320003, 400.6614765400002, 400.6614765400002, 406.50316423200024, 402.43821573200034, 394.61128364000024, 394.5094185200003, 400.5592539600002, 394.5094185200003, 386.58062130800045, 404.4194000840005, 396.4906028720004, 390.64461674400036, 404.31651943900056], \"power_mean\": 380.9247400570628, \"energy_millijoules\": 6433.46947767776, \"energy_joules\": 6.433469477677759, \"coremark_score\": 14812.181538, \"coremarks_per_mhz\": 8.477668004807693, \"ulpmark_cm_score\": 38.8592812738797}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1321.73621619, 1315.78180866, 1315.86079878, 1333.560904552], \"power_mean\": 1321.7349320455, \"energy_millijoules\": 6608.6746602275, \"energy_joules\": 6.6086746602275}}, \"1862400\": {\"active\": {\"elapsed_sec\": 15.854544838, \"elapsed_ns\": 15854544838, \"power_samples\": [434.04872955500036, 439.78677301000016, 441.7675996580001, 433.9444817750002, 435.72075261800046, 443.6476417490005, 439.78677301000016, 439.57756253000025, 439.57756253000025, 445.6283493250003, 439.57756253000025, 437.7014601940002, 447.39889335700036, 443.5427981210005, 445.5233866250003], \"power_mean\": 440.48202177246696, \"energy_millijoules\": 6983.64196452447, \"energy_joules\": 6.98364196452447, \"coremark_score\": 15778.843726, \"coremarks_per_mhz\": 8.472317292740549, \"ulpmark_cm_score\": 35.79794056882511}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1321.49817345, 1313.5617478200002, 1315.5448383000003, 1313.7194899160002], \"power_mean\": 1316.0810623715001, \"energy_millijoules\": 6580.405311857501, \"energy_joules\": 6.580405311857501}}, \"1977600\": {\"active\": {\"elapsed_sec\": 14.908277078, \"elapsed_ns\": 14908277078, \"power_samples\": [480.98005818000024, 482.96040854000034, 478.99970782000014, 475.03494900500027, 488.7974930500002, 488.68990930200016, 482.74551651200045, 488.7974930500002, 482.74551651200045, 488.7974930500002, 488.68990930200016, 488.58232555400036, 484.5149946380002, 484.6223402420003], \"power_mean\": 484.63986533978596, \"energy_millijoules\": 7225.145395530138, \"energy_joules\": 7.225145395530138, \"coremark_score\": 16780.775943, \"coremarks_per_mhz\": 8.485424728458739, \"ulpmark_cm_score\": 34.60137980817153}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1321.259805515, 1319.2730097620001, 1319.1937814980001, 1311.338015681], \"power_mean\": 1317.766153114, \"energy_millijoules\": 6588.83076557, \"energy_joules\": 6.58883076557}}, \"2073600\": {\"active\": {\"elapsed_sec\": 14.217542286, \"elapsed_ns\": 14217542286, \"power_samples\": [516.2092004540002, 518.1890740380002, 522.0432691320002, 520.0635146200004, 523.9132953800006, 525.8969874500003, 521.9336599400006, 521.9336599400006, 529.8562583300004, 521.9336599400006, 519.8445343800004, 521.8240507480004, 521.7139923380005, 523.8035671160003], \"power_mean\": 522.0827659861433, \"energy_millijoules\": 7422.733802199835, \"energy_joules\": 7.422733802199835, \"coremark_score\": 17598.197945, \"coremarks_per_mhz\": 8.486785274402006, \"ulpmark_cm_score\": 33.68031329992043}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1319.03532497, 1315.14956397, 1317.2111677940002, 1317.1320586020001], \"power_mean\": 1317.132028834, \"energy_millijoules\": 6585.66014417, \"energy_joules\": 6.58566014417}}, \"2169600\": {\"active\": {\"elapsed_sec\": 13.610724995, \"elapsed_ns\": 13610724995, \"power_samples\": [645.9034261800002, 651.9613580250002, 649.7436758120004, 651.7264128650004, 659.2908663120004, 657.6624599930005, 659.4088154240005, 659.5267645360004, 659.5267645360004, 651.4909862600005, 651.4909862600005, 663.3657029120006, 659.1729172000003], \"power_mean\": 655.4054720242311, \"energy_millijoules\": 8920.543639939975, \"energy_joules\": 8.920543639939975, \"coremark_score\": 18382.352941, \"coremarks_per_mhz\": 8.472692174133481, \"ulpmark_cm_score\": 28.025197800801546}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1318.7976401780002, 1318.8768684420002, 1318.8768684420002, 1316.894731026], \"power_mean\": 1318.3615270220002, \"energy_millijoules\": 6591.807635110001, \"energy_joules\": 6.59180763511}}, \"2265600\": {\"active\": {\"elapsed_sec\": 13.028504527, \"elapsed_ns\": 13028504527, \"power_samples\": [665.3482008440003, 681.0645995360003, 677.1038962480002, 671.0462045000004, 675.0066694, 680.7068206280003, 682.6847880840005, 682.5654093760004, 684.4237599800003, 680.4683013560004, 684.5432577600002, 684.1842746750006], \"power_mean\": 679.0955151989169, \"energy_millijoules\": 8847.598994034486, \"energy_joules\": 8.847598994034486, \"coremark_score\": 19204.178829, \"coremarks_per_mhz\": 8.476420740201272, \"ulpmark_cm_score\": 28.256253495277427}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1320.5453521, 1318.5596306800003, 1316.6570792320001, 1318.638858944], \"power_mean\": 1318.6002302390002, \"energy_millijoules\": 6593.0011511950015, \"energy_joules\": 6.5930011511950015}}, \"2361600\": {\"active\": {\"elapsed_sec\": 12.548425516, \"elapsed_ns\": 12548425516, \"power_samples\": [690.6007111200001, 694.4406056160003, 698.3963023840004, 700.2577526480004, 698.1551456770003, 707.9303717750004, 703.9713381800002, 700.0163568200003, 709.9078624550004, 703.9713381800002, 703.9713381800002, 707.9303717750004], \"power_mean\": 701.6291245675003, \"energy_millijoules\": 8804.340809491563, \"energy_joules\": 8.804340809491563, \"coremark_score\": 19940.974715, \"coremarks_per_mhz\": 8.443840919292006, \"ulpmark_cm_score\": 28.395084357762055}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1316.419751656, 1326.410629224, 1320.3073093599999, 1320.46600452], \"power_mean\": 1320.9009236900001, \"energy_millijoules\": 6604.504618450001, \"energy_joules\": 6.604504618450001}}, \"2457600\": {\"active\": {\"elapsed_sec\": 11.999785203, \"elapsed_ns\": 11999785203, \"power_samples\": [428.42159325700027, 717.7003541860004, 727.7174352800005, 729.4504496720003, 731.4277022080003, 731.3053449920005, 729.0837352400004, 733.2824784560005, 737.1180822110002, 727.1068399200003, 727.2289589920003], \"power_mean\": 701.8039067649095, \"energy_millijoules\": 8421.496135805151, \"energy_joules\": 8.421496135805151, \"coremark_score\": 20852.448077, \"coremarks_per_mhz\": 8.48488284383138, \"ulpmark_cm_score\": 29.685936556699296}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1324.1104185890001, 1320.1482890050002, 1322.049887145, 1320.068941425], \"power_mean\": 1321.594384041, \"energy_millijoules\": 6607.971920205, \"energy_joules\": 6.607971920205}}, \"2553600\": {\"active\": {\"elapsed_sec\": 11.561361975, \"elapsed_ns\": 11561361975, \"power_samples\": [774.8265902180003, 786.3198993200001, 786.3198993200001, 786.068512952, 788.0450505680003, 783.9664012240003, 788.0450505680003, 786.068512952, 780.0095140980004, 789.7737753220006, 787.6676138000005], \"power_mean\": 785.1918927583639, \"energy_millijoules\": 9077.887692014827, \"energy_joules\": 9.077887692014826, \"coremark_score\": 21643.147779, \"coremarks_per_mhz\": 8.475543459821429, \"ulpmark_cm_score\": 27.53944623261943}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1323.9512471409998, 1318.0839363900002, 1320.1482890050002, 1321.970420493], \"power_mean\": 1321.03847325725, \"energy_millijoules\": 6605.19236628625, \"energy_joules\": 6.60519236628625}}, \"2649600\": {\"active\": {\"elapsed_sec\": 11.131291871, \"elapsed_ns\": 11131291871, \"power_samples\": [837.1004706500005, 845.0092418000002, 854.7683797560001, 856.7444410840005, 854.3782580980003, 860.3094175430003, 856.4839439380005, 860.3094175430003, 862.1547814910007, 860.4396381470003, 860.1791969390008], \"power_mean\": 855.2615624535458, \"energy_millijoules\": 9520.166077717913, \"energy_joules\": 9.520166077717914, \"coremark_score\": 22482.014388, \"coremarks_per_mhz\": 8.48505977807971, \"ulpmark_cm_score\": 26.260046091541263}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1327.5175118, 1317.9254798620002, 1315.9447722860002, 1317.9254798620002], \"power_mean\": 1319.8283109525, \"energy_millijoules\": 6599.1415547625, \"energy_joules\": 6.5991415547625}}, \"2745600\": {\"active\": {\"elapsed_sec\": 10.739723382, \"elapsed_ns\": 10739723382, \"power_samples\": [917.5035355790003, 923.1662713560006, 923.0322382520005, 925.1416177640001, 924.872763608, 930.8021342880004, 932.6426133560001, 926.8478713840002, 930.5331150160002, 934.4828542800003], \"power_mean\": 926.9025014883002, \"energy_millijoules\": 9954.676468068186, \"energy_joules\": 9.954676468068186, \"coremark_score\": 23299.16123, \"coremarks_per_mhz\": 8.485999865238929, \"ulpmark_cm_score\": 25.113824723679365}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1319.59253075, 1323.473406626, 1317.6082421, 1319.672203525], \"power_mean\": 1320.0865957502501, \"energy_millijoules\": 6600.432978751251, \"energy_joules\": 6.60043297875125}}, \"2841600\": {\"active\": {\"elapsed_sec\": 10.447246506, \"elapsed_ns\": 10447246506, \"power_samples\": [968.0758723440006, 977.8168985400005, 977.4047920560004, 987.5607799040001, 985.1720466630006, 993.0731874420005, 987.2848505520003, 991.2336372400002, 987.0083557710002, 987.1463204469999], \"power_mean\": 984.1776740959003, \"energy_millijoules\": 10281.946766981602, \"energy_joules\": 10.281946766981601, \"coremark_score\": 23953.243269, \"coremarks_per_mhz\": 8.42949157833615, \"ulpmark_cm_score\": 24.314461615656732}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1327.11839124, 1323.314235178, 1327.198215352, 1323.1550637300002], \"power_mean\": 1325.196476375, \"energy_millijoules\": 6625.982381875, \"energy_joules\": 6.625982381875}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm8250/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 cpu7 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 1300 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 403 518 614 691 787 883 979 1075 1171 1248 1344 1420 1516 1612 1708 1804\n\n 300:  1114     3.7 C/MHz     41 mW    9.2 J   27.1 I/mJ   224.5 s\n 403:  1497     3.7 C/MHz     49 mW    8.2 J   30.4 I/mJ   167.0 s\n 518:  1925     3.7 C/MHz     76 mW    9.8 J   25.4 I/mJ   129.9 s\n 614:  2281     3.7 C/MHz     44 mW    4.8 J   51.9 I/mJ   109.6 s\n 691:  2567     3.7 C/MHz     49 mW    4.8 J   52.4 I/mJ    97.4 s\n 787:  2923     3.7 C/MHz     53 mW    4.5 J   55.4 I/mJ    85.5 s\n 883:  3279     3.7 C/MHz     59 mW    4.5 J   55.7 I/mJ    76.2 s\n 979:  3636     3.7 C/MHz     64 mW    4.4 J   56.7 I/mJ    68.8 s\n1075:  3992     3.7 C/MHz     70 mW    4.4 J   57.4 I/mJ    62.6 s\n1171:  4348     3.7 C/MHz     75 mW    4.3 J   58.1 I/mJ    57.5 s\n1248:  4633     3.7 C/MHz     78 mW    4.2 J   59.3 I/mJ    54.0 s\n1344:  4990     3.7 C/MHz     85 mW    4.3 J   58.7 I/mJ    50.1 s\n1420:  5275     3.7 C/MHz     88 mW    4.2 J   59.8 I/mJ    47.4 s\n1516:  5632     3.7 C/MHz     95 mW    4.2 J   59.3 I/mJ    44.4 s\n1612:  5988     3.7 C/MHz     99 mW    4.1 J   60.5 I/mJ    41.8 s\n1708:  6344     3.7 C/MHz    103 mW    4.0 J   61.8 I/mJ    39.4 s\n1804:  6700     3.7 C/MHz    115 mW    4.3 J   58.2 I/mJ    37.3 s\n\n\n===== CPU 4 =====\nFrequencies: 710 825 940 1056 1171 1286 1382 1478 1574 1670 1766 1862 1958 2054 2150 2246 2342 2419\n\n 710:  6021     8.5 C/MHz    126 mW    5.2 J   47.7 I/mJ    41.5 s\n 825:  6996     8.5 C/MHz    148 mW    5.3 J   47.1 I/mJ    35.7 s\n 940:  7985     8.5 C/MHz    169 mW    5.3 J   47.2 I/mJ    31.3 s\n1056:  8960     8.5 C/MHz    192 mW    5.4 J   46.5 I/mJ    27.9 s\n1171:  9923     8.5 C/MHz    217 mW    5.5 J   45.8 I/mJ    25.2 s\n1286: 10907     8.5 C/MHz    237 mW    5.4 J   46.0 I/mJ    22.9 s\n1382: 11716     8.5 C/MHz    265 mW    5.7 J   44.1 I/mJ    21.3 s\n1478: 12526     8.5 C/MHz    292 mW    5.8 J   42.9 I/mJ    20.0 s\n1574: 13347     8.5 C/MHz    323 mW    6.1 J   41.3 I/mJ    18.7 s\n1670: 14161     8.5 C/MHz    358 mW    6.3 J   39.5 I/mJ    17.7 s\n1766: 14997     8.5 C/MHz    391 mW    6.5 J   38.3 I/mJ    16.7 s\n1862: 15794     8.5 C/MHz    446 mW    7.1 J   35.4 I/mJ    15.8 s\n1958: 16622     8.5 C/MHz    443 mW    6.7 J   37.5 I/mJ    15.1 s\n2054: 17439     8.5 C/MHz    508 mW    7.3 J   34.3 I/mJ    14.3 s\n2150: 18228     8.5 C/MHz    556 mW    7.6 J   32.8 I/mJ    13.7 s\n2246: 19056     8.5 C/MHz    611 mW    8.0 J   31.2 I/mJ    13.1 s\n2342: 19859     8.5 C/MHz    665 mW    8.4 J   29.8 I/mJ    12.6 s\n2419: 20487     8.5 C/MHz    710 mW    8.7 J   28.8 I/mJ    12.2 s\n\n\n===== CPU 7 =====\nFrequencies: 844 960 1075 1190 1305 1401 1516 1632 1747 1862 1977 2073 2169 2265 2361 2457 2553 2649 2745 2841\n\n 844:  7160     8.5 C/MHz    172 mW    6.0 J   41.6 I/mJ    34.9 s\n 960:  8135     8.5 C/MHz    191 mW    5.9 J   42.7 I/mJ    30.7 s\n1075:  9117     8.5 C/MHz    219 mW    6.0 J   41.6 I/mJ    27.4 s\n1190: 10089     8.5 C/MHz    244 mW    6.0 J   41.3 I/mJ    24.8 s\n1305: 11067     8.5 C/MHz    269 mW    6.1 J   41.1 I/mJ    22.6 s\n1401: 11875     8.5 C/MHz    294 mW    6.2 J   40.4 I/mJ    21.1 s\n1516: 12863     8.5 C/MHz    326 mW    6.3 J   39.4 I/mJ    19.4 s\n1632: 13825     8.5 C/MHz    361 mW    6.5 J   38.3 I/mJ    18.1 s\n1747: 14812     8.5 C/MHz    381 mW    6.4 J   38.9 I/mJ    16.9 s\n1862: 15779     8.5 C/MHz    440 mW    7.0 J   35.8 I/mJ    15.9 s\n1977: 16781     8.5 C/MHz    485 mW    7.2 J   34.6 I/mJ    14.9 s\n2073: 17598     8.5 C/MHz    522 mW    7.4 J   33.7 I/mJ    14.2 s\n2169: 18382     8.5 C/MHz    655 mW    8.9 J   28.0 I/mJ    13.6 s\n2265: 19204     8.5 C/MHz    679 mW    8.8 J   28.3 I/mJ    13.0 s\n2361: 19941     8.4 C/MHz    702 mW    8.8 J   28.4 I/mJ    12.5 s\n2457: 20852     8.5 C/MHz    702 mW    8.4 J   29.7 I/mJ    12.0 s\n2553: 21643     8.5 C/MHz    785 mW    9.1 J   27.5 I/mJ    11.6 s\n2649: 22482     8.5 C/MHz    855 mW    9.5 J   26.3 I/mJ    11.1 s\n2745: 23299     8.5 C/MHz    927 mW   10.0 J   25.1 I/mJ    10.7 s\n2841: 23953     8.4 C/MHz    984 mW   10.3 J   24.3 I/mJ    10.4 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm8250/main/uptime.txt",
    "content": " 16:13:31 up 44 min,  load average: 3.63, 3.70, 3.56\n"
  },
  {
    "path": "results/sm8250/main/versions.txt",
    "content": "Kernel: Linux version 4.19.81-apollodev (spac3b0y@TheHurtlocker) (Proton clang version 12.0.0 (https://github.com/llvm/llvm-project d38205144febf4dc42c9270c6aa3d978f1ef65e1)) #56 SMP PREEMPT Sun Dec 27 13:19:32 IST 2020\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm8250/voltages_k30su.txt",
    "content": "1.300000=568000 1.403200=568000 1.518400=568000 1.614400=568000 1.691200=568000 1.787200=584000 1.883200=588000 1.979200=600000 1.1075200=612000 1.1171200=620000 1.1248000=636000 1.1344000=652000 1.1420800=668000 1.1516800=688000 1.1612800=716000 1.1708800=744000 1.1804800=776000 4.710400=588000 4.825600=608000 4.940800=628000 4.1056000=644000 4.1171200=664000 4.1286400=680000 4.1382400=696000 4.1478400=716000 4.1574400=732000 4.1670400=752000 4.1766400=772000 4.1862400=800000 4.1958400=812000 4.2054400=836000 4.2150400=852000 4.2246400=876000 4.2342400=892000 4.2419200=912000 7.844800=576000 7.960000=592000 7.1075200=608000 7.1190400=620000 7.1305600=632000 7.1401600=644000 7.1516800=660000 7.1632000=676000 7.1747200=696000 7.1862400=712000 7.1977600=732000 7.2073600=748000 7.2169600=800000 7.2265600=800000 7.2361600=808000 7.2457600=824000 7.2553600=844000 7.2649600=864000 7.2745600=884000 7.2841600=904000\n"
  },
  {
    "path": "results/sm8250/voltages_mi10tp.txt",
    "content": "1.300000=584000 1.403200=584000 1.518400=584000 1.614400=584000 1.691200=584000 1.787200=600000 1.883200=608000 1.979200=616000 1.1075200=632000 1.1171200=644000 1.1248000=668000 1.1344000=696000 1.1420800=720000 1.1516800=752000 1.1612800=768000 1.1708800=784000 1.1804800=800000 4.710400=600000 4.825600=620000 4.940800=640000 4.1056000=660000 4.1171200=680000 4.1286400=700000 4.1382400=720000 4.1478400=740000 4.1574400=760000 4.1670400=784000 4.1766400=804000 4.1862400=824000 4.1958400=844000 4.2054400=868000 4.2150400=884000 4.2246400=908000 4.2342400=928000 4.2419200=944000 7.844800=588000 7.960000=604000 7.1075200=620000 7.1190400=636000 7.1305600=648000 7.1401600=660000 7.1516800=676000 7.1632000=692000 7.1747200=708000 7.1862400=724000 7.1977600=740000 7.2073600=756000 7.2169600=800000 7.2265600=800000 7.2361600=816000 7.2457600=832000 7.2553600=852000 7.2649600=876000 7.2745600=892000 7.2841600=912000\n"
  },
  {
    "path": "results/sm8250ac/cmdline.txt",
    "content": "isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on noirqdebug nodebugmon rcupdate.rcu_expedited=1 rcu_nocbs=0-7 kpti=off cgroup_disable=pressure androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 msm_rtb.filter=0x237 service_locator.enable=1 androidboot.usbcontroller=a600000.dwc3 swiotlb=2048 loop.max_part=7 cgroup.memory=nokmem,nosocket reboot=panic_warm androidboot.fstab_suffix=qcom androidboot.init_fatal_reboot_target=recovery buildvariant=user  androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED androidboot.secureboot=1 androidboot.hwversion=9.19.0 androidboot.cpuid=REDACTED androidboot.hwc=GLOBAL androidboot.hwlevel=MP androidboot.product.hardware.sku=pro androidboot.baseband=mdm msm_drm.dsi_display0=qcom,mdss_dsi_k11a_38_08_0a_dsc_cmd: androidboot.oled_wp=01f30bba0c4f androidboot.slot_suffix=_b rootwait ro init=/init androidboot.dtbo_idx=0 androidboot.dtb_idx=2 androidboot.force_normal_boot=1 androidboot.ramdump=disable block2mtd.block2mtd=/dev/block/sda15,2097152 mtdoops.mtddev=0 mtdoops.record_size=2097152 mtdoops.dump_oops=0 printk.always_kmsg_dump=1 androidboot.dp=0x0 androidboot.cert=M2012K11AG\n"
  },
  {
    "path": "results/sm8250ac/cpuinfo.txt",
    "content": "Processor\t: AArch64 Processor rev 14 (aarch64)\nprocessor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 1\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 2\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 3\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x51\nCPU architecture: 8\nCPU variant\t: 0xd\nCPU part\t: 0x805\nCPU revision\t: 14\n\nprocessor\t: 4\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0xd0d\nCPU revision\t: 0\n\nprocessor\t: 5\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0xd0d\nCPU revision\t: 0\n\nprocessor\t: 6\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0xd0d\nCPU revision\t: 0\n\nprocessor\t: 7\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0xd0d\nCPU revision\t: 0\n\nHardware\t: Qualcomm Technologies, Inc SM8250\n"
  },
  {
    "path": "results/sm8250ac/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. xiaomi alioth;\nCompatible: qcom,kona-mtp;qcom,kona;qcom,mtp;\n"
  },
  {
    "path": "results/sm8250ac/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x51df805e]\n[    0.000000] Linux version 4.19.259-freqbench//c5406bb0643a (emanuel@ZorinOS) (ZyC clang version 14.0.6 (https://github.com/llvm/llvm-project f28c006a5895fc0e329fe15fead81e37457cb1d1), LLD 14.0.6) #3 SMP PREEMPT Sun May 28 15:49:39 CEST 2023\n[    0.000000] random: crng init done\n[    0.000000] Machine model: Qualcomm Technologies, Inc. xiaomi alioth\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fec00000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node user_contig_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x00000000ffc00000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node mailbox_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fdc00000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f3800000, size 164 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f2400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node cnss_wlan_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f1400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000eec00000, size 40 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ee800000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ed400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ecc00000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ec000000, size 12 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ea000000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000080880000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node res_xbl_uefi_log_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086200000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_camera_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086700000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node pil_wlan_fw_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086800000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node pil_ipa_fw_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086810000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node pil_ipa_gsi_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008681a000, size 0 MiB\n[    0.000000] OF: reserved mem: initialized node pil_gpu_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086900000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_npu_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000086e00000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_video_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000087300000, size 5 MiB\n[    0.000000] OF: reserved mem: initialized node pil_cvp_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000087800000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node pil_cdsp_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x0000000088c00000, size 47 MiB\n[    0.000000] OF: reserved mem: initialized node pil_slpi_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008bb00000, size 37 MiB\n[    0.000000] OF: reserved mem: initialized node pil_adsp_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008e000000, size 1 MiB\n[    0.000000] OF: reserved mem: initialized node pil_spss_region, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x000000008e100000, size 70 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_secure_heap, compatible id removed-dma-pool\n[    0.000000] Removed memory: created DMA memory pool at 0x00000000b0400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node disp_rdump_region@9c000000, compatible id removed-dma-pool\n[    0.000000] On node 0 totalpages: 1481264\n[    0.000000]   Normal zone: 24542 pages used for memmap\n[    0.000000]   Normal zone: 0 pages reserved\n[    0.000000]   Normal zone: 1481264 pages, LIFO batch:63\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.1\n[    0.000000] percpu: Embedded 24 pages/cpu s59992 r8192 d30120 u98304\n[    0.000000] pcpu-alloc: s59992 r8192 d30120 u98304 alloc=24*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] CPU features: detected: Hardware dirty bit management\n[    0.000000] CPU features: detected: Speculative Store Bypassing Safe (SSBS)\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1456722\n[    0.000000] Kernel command line: isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on noirqdebug nodebugmon rcupdate.rcu_expedited=1 rcu_nocbs=0-7 kpti=off cgroup_disable=pressure androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 msm_rtb.filter=0x237 service_locator.enable=1 androidboot.usbcontroller=a600000.dwc3 swiotlb=2048 loop.max_part=7 cgroup.memory=nokmem,nosocket reboot=panic_warm androidboot.fstab_suffix=qcom androidboot.init_fatal_reboot_target=recovery buildvariant=user  androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED androidboot.secureboot=1 androidboot.hwversion=9.19.0 androidboot.cpuid=REDACTED androidboot.hwc=GLOBAL androidboot.hwlevel=MP androidboot.product.hardware.sku=pro androidboot.baseband=mdm msm_drm.dsi_display0=qcom,mdss_dsi_k11a_38_08_0a_dsc_cmd: andro\n[    0.000000] IRQ lockup detection disabled\n[    0.000000] cgroup: Disabling pressure control group feature\n[    0.000000] cgroup: Disabling pressure control group feature\n[    0.000000] mi-dsi-display:[oled_wp_info_setup] androidboot.oled_wp=01f30bba0c4f\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)\n[    0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off\n[    0.000000] Memory: 5318992K/5925056K available (26110K kernel code, 3102K rwdata, 10676K rodata, 6144K init, 12987K bss, 249712K reserved, 356352K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: Distributor has no Range Selector support\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] ITS: No ITS available, not enabling LPIs\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] Successfully registered dummy reset controller for cpucc_clocks\n[    0.000000] Successfully registered dummy clock controller for cpucc_clocks\n[    0.000000] arch_timer: CPU0: Trapping CNTVCT access\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000014] clocksource: Switched to clocksource arch_sys_counter\n[    0.001637] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.001643] pid_max: default: 32768 minimum: 301\n[    0.001761] Security Framework initialized\n[    0.001769] SELinux:  Initializing.\n[    0.001881] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.001897] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)\n[    0.003104] ASID allocator initialised with 65536 entries\n[    0.003177] rcu: Hierarchical SRCU implementation.\n[    0.007578] shmbridge is enabled\n[    0.008135] smp: Bringing up secondary CPUs ...\n[    0.009153] Detected VIPT I-cache on CPU1\n[    0.009210] arch_timer: CPU1: Trapping CNTVCT access\n[    0.009217] CPU1: Booted secondary processor 0x0000000100 [0x51df805e]\n[    0.010366] Detected VIPT I-cache on CPU2\n[    0.010400] arch_timer: CPU2: Trapping CNTVCT access\n[    0.010406] CPU2: Booted secondary processor 0x0000000200 [0x51df805e]\n[    0.011392] Detected VIPT I-cache on CPU3\n[    0.011424] arch_timer: CPU3: Trapping CNTVCT access\n[    0.011429] CPU3: Booted secondary processor 0x0000000300 [0x51df805e]\n[    0.012692] CPU features: enabling workaround for Mismatched cache type\n[    0.012696] CPU features: enabling workaround for Spectre-BHB\n[    0.012698] CPU features: enabling workaround for ARM erratum 1542418\n[    0.012702] Detected PIPT I-cache on CPU4\n[    0.012719] CPU features: Unsupported CPU feature variation detected.\n[    0.012756] arch_timer: CPU4: Trapping CNTVCT access\n[    0.012767] CPU4: Booted secondary processor 0x0000000400 [0x411fd0d0]\n[    0.014011] Detected PIPT I-cache on CPU5\n[    0.014067] arch_timer: CPU5: Trapping CNTVCT access\n[    0.014079] CPU5: Booted secondary processor 0x0000000500 [0x411fd0d0]\n[    0.015356] Detected PIPT I-cache on CPU6\n[    0.015410] arch_timer: CPU6: Trapping CNTVCT access\n[    0.015422] CPU6: Booted secondary processor 0x0000000600 [0x411fd0d0]\n[    0.016828] Detected PIPT I-cache on CPU7\n[    0.016857] arch_timer: CPU7: Trapping CNTVCT access\n[    0.016862] CPU7: Booted secondary processor 0x0000000700 [0x411fd0d0]\n[    0.017000] smp: Brought up 1 node, 8 CPUs\n[    0.017004] SMP: Total of 8 processors activated.\n[    0.017008] CPU features: detected: GIC system register CPU interface\n[    0.017010] CPU features: detected: Privileged Access Never\n[    0.017013] CPU features: detected: LSE atomic instructions\n[    0.017014] CPU features: detected: User Access Override\n[    0.017016] CPU features: detected: 32-bit EL0 Support\n[    0.017019] CPU features: detected: RAS Extension Support\n[    0.017021] CPU features: detected: CRC32 instructions\n[    0.017719] CPU: All CPU(s) started at EL1\n[    0.017765] alternatives: patching kernel code\n[    0.213323] Registered cp15_barrier emulation handler\n[    0.213335] Registered setend emulation handler\n[    0.213640] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.213661] futex hash table entries: 2048 (order: 5, 131072 bytes)\n[    0.220238] ramoops: msm_register_ramoops_device\n[    0.220373] xor: measuring software checksum speed\n[    0.320057]    8regs     :  2824.400 MB/sec\n[    0.420027]    8regs_prefetch:  2582.800 MB/sec\n[    0.520028]    32regs    :  3714.400 MB/sec\n[    0.620027]    32regs_prefetch:  3426.800 MB/sec\n[    0.620030] xor: using function: 32regs (3714.400 MB/sec)\n[    0.620038] pinctrl core: initialized pinctrl subsystem\n[    0.620353] xlogchar_init\n[    0.620527] xlogchar_init done\n[    0.620956] NET: Registered protocol family 16\n[    0.622340] schedtune: configured to support 6 boost groups\n[    0.622503] audit: initializing netlink subsys (disabled)\n[    0.622705] ramoops: The memory size and the record/console size must be non-zero\n[    0.622723] ramoops: probe of ramoops.0 failed with error -22\n[    0.623205] cpuidle: using governor menu\n[    0.623219] cpuidle: using governor qcom\n[    0.623313] NET: Registered protocol family 42\n[    0.623800] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.623836] audit: type=2000 audit(0.619:1): state=initialized audit_enabled=0 res=1\n[    0.624565] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.625047] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.625099] Failed to create IPC log0\n[    0.625101] Failed to create IPC log1\n[    0.625103] Failed to create IPC log2\n[    0.625105] Failed to create IPC log3\n[    0.625107] Failed to create IPC log4\n[    0.625212] exit: IPA_USB init success!\n[    0.632813] platform 82400000.qseecom: assigned reserved memory node qseecom_region\n[    0.639395] platform soc:qcom,ipa_fws: assigned reserved memory node pil_ipa_gsi_region\n[    0.639492] platform soc:qcom,ipa_uc: assigned reserved memory node pil_ipa_fw_region\n[    0.640427] platform 17300000.qcom,lpass: assigned reserved memory node pil_adsp_region\n[    0.640598] platform 8300000.qcom,turing: assigned reserved memory node pil_cdsp_region\n[    0.640711] platform aab0000.qcom,venus: assigned reserved memory node pil_video_region\n[    0.640893] platform 188101c.qcom,spss: assigned reserved memory node pil_spss_region\n[    0.641000] platform abb0000.qcom,cvpss: assigned reserved memory node pil_cvp_region\n[    0.641112] platform 9800000.qcom,npu: assigned reserved memory node pil_npu_region\n[    0.641416] platform soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    0.641987] platform soc:mem_dump: assigned reserved memory node mem_dump_region\n[    0.642249] platform 5c00000.qcom,ssc: assigned reserved memory node pil_slpi_region\n[    0.645255] platform 88a7000.msm_tspp: assigned reserved memory node qseecom_region\n[    0.677042] msm_watchdog 17c10000.qcom,wdt: wdog absent resource not present\n[    0.677242] msm_watchdog 17c10000.qcom,wdt: MSM Watchdog Initialized\n[    0.679276] Unable to find DT property: qcom,msm-imem-download_mode\n[    0.680417] Unable to find DT property: qcom,msm-imem-emergency_download_mode\n[    0.680614] clear_display_config clear display config\n[    0.684874] msm-dcc 1023000.dcc_v2: DCC list passed 3\n[    0.685050] msm-dcc 1023000.dcc_v2: All values written to enable.\n[    0.685143] msm-dcc 1023000.dcc_v2: DCC list passed 6\n[    0.685336] msm-dcc 1023000.dcc_v2: All values written to enable.\n[    0.685427] msm-dcc 1023000.dcc_v2: DCC list passed 7\n[    0.685621] msm-dcc 1023000.dcc_v2: All values written to enable.\n[    0.686425] sps:sps is ready.\n[    0.686674] spmi spmi-0: PMIC arbiter version v5 (0x50010000)\n[    0.696150] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.699452] pm8150_s3_level: supplied by pm8150a_s3_level\n[    0.699572] pm8150_s3_level_ao: supplied by pm8150a_s3_level_ao\n[    0.700227] pm8150a_s3_mmcx_sup_level: supplied by pm8150_s3_mmcx_sup_level\n[    0.707509] pm8150a_s4_level: supplied by pm8150a_s3_mmcx_sup_level\n[    0.707754] pm8150a_s4_level_ao: supplied by pm8150a_s3_level_ao\n[    0.713442] rpmh_regulator_probe: smpf1: could not find RPMh address for resource\n[    0.713624] rpmh_regulator_probe: smpf2: could not find RPMh address for resource\n[    0.713802] rpmh_regulator_probe: ldof1: could not find RPMh address for resource\n[    0.713975] rpmh_regulator_probe: ldof2: could not find RPMh address for resource\n[    0.714151] rpmh_regulator_probe: ldof3: could not find RPMh address for resource\n[    0.714312] rpmh_regulator_probe: ldof4: could not find RPMh address for resource\n[    0.714473] rpmh_regulator_probe: ldof5: could not find RPMh address for resource\n[    0.714647] rpmh_regulator_probe: ldof6: could not find RPMh address for resource\n[    0.714806] rpmh_regulator_probe: ldof7: could not find RPMh address for resource\n[    0.715660] (NULL device *): msm_gsi_probe:4570 failed to create IPC log, continue...\n[    0.727509] MSM Memory Dump base table set up\n[    0.727517] MSM Memory Dump apps data table set up\n[    0.757373] debugfs file mm_event_task creation failed\n[    0.757870] cryptd: max_cpu_qlen set to 1000\n[    0.760414] gdsc ad07004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.760430] gdsc ad07004.qcom,gdsc: Dropping the link to regulator.31\n[    0.760518] gdsc ad0a004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.760527] gdsc ad0a004.qcom,gdsc: Dropping the link to regulator.31\n[    0.760606] gdsc ad0b004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.760614] gdsc ad0b004.qcom,gdsc: Dropping the link to regulator.31\n[    0.760691] gdsc ad08004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.760699] gdsc ad08004.qcom,gdsc: Dropping the link to regulator.31\n[    0.760778] gdsc ad09004.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.760787] gdsc ad09004.qcom,gdsc: Dropping the link to regulator.31\n[    0.760863] gdsc ad0c144.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.760871] gdsc ad0c144.qcom,gdsc: Dropping the link to regulator.31\n[    0.760947] gdsc af03000.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.760956] gdsc af03000.qcom,gdsc: Dropping the link to regulator.31\n[    0.761053] gdsc 3d9106c.qcom,gdsc: Linked as a consumer to regulator.4\n[    0.761178] gpu_cx_gdsc: supplied by pm8150_s3_level\n[    0.761292] gdsc 3d9100c.qcom,gdsc: Linked as a consumer to regulator.30\n[    0.761414] gpu_gx_gdsc: supplied by pm8150a_s1_level\n[    0.761561] gdsc abf0d18.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.761569] gdsc abf0d18.qcom,gdsc: Dropping the link to regulator.31\n[    0.761650] gdsc abf0bf8.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.761658] gdsc abf0bf8.qcom,gdsc: Dropping the link to regulator.31\n[    0.761738] gdsc abf0d98.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.761746] gdsc abf0d98.qcom,gdsc: Dropping the link to regulator.31\n[    0.761824] gdsc abf0c98.qcom,gdsc: Linked as a consumer to regulator.31\n[    0.761833] gdsc abf0c98.qcom,gdsc: Dropping the link to regulator.31\n[    0.763212] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    0.763841] gcc-kona 100000.qcom,gcc: Linked as a consumer to regulator.31\n[    0.763854] gcc-kona 100000.qcom,gcc: Linked as a consumer to regulator.4\n[    0.763870] gcc-kona 100000.qcom,gcc: Linked as a consumer to regulator.5\n[    0.808335] gcc-kona 100000.qcom,gcc: Registered GCC clocks\n[    0.808664] gpu_cc-kona 3d90000.qcom,gpucc: Linked as a consumer to regulator.4\n[    0.808682] gpu_cc-kona 3d90000.qcom,gpucc: Linked as a consumer to regulator.1\n[    0.816735] gpu_cc-kona 3d90000.qcom,gpucc: Registered GPU CC clocks\n[    0.817041] npu_cc-kona 9980000.qcom,npucc: Linked as a consumer to regulator.4\n[    0.850178] npu_cc-kona 9980000.qcom,npucc: Registered NPU_CC clocks\n[    0.850563] video_cc-kona abf0000.qcom,videocc: Linked as a consumer to regulator.1\n[    0.850578] video_cc-kona abf0000.qcom,videocc: Linked as a consumer to regulator.31\n[    0.850581] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.\n[    0.850585] video_cc-kona abf0000.qcom,videocc: Unable to register for bw voting\n[    0.850589] video_cc-kona abf0000.qcom,videocc: Dropping the link to regulator.31\n[    0.850599] video_cc-kona abf0000.qcom,videocc: Dropping the link to regulator.1\n[    0.854569] Failed to setup PIL ipc logging\n[    0.854905] KPI: Bootloader start count = 94333\n[    0.854907] KPI: Bootloader end count = 144476\n[    0.854910] KPI: Bootloader display count = 1181656681\n[    0.854912] KPI: Bootloader load kernel count = 2676042560\n[    0.854916] KPI: Kernel MPM timestamp = 191992\n[    0.854919] KPI: Kernel MPM Clock frequency = 32768\n[    0.854935] socinfo_print: v0.15, id=356, ver=2.1, raw_id=195, raw_ver=2, hw_plat=44, hw_plat_ver=1638400\n                accessory_chip=1, hw_plat_subtype=0, pmic_model=65566, pmic_die_revision=196608 foundry_id=1 serial_number=3321027850 num_pmics=5 chip_family=0x5d raw_device_family=0x6 raw_device_number=0x8 nproduct_id=0x412 num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xc ndefective_parts_array_offset=0xb4 nmodem_supported=0x0\n[    0.854938] msm_bus_fabric_rpmh_init_driver\n[    0.855048] msm_bus: Probe started\n[    0.855589] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.855604] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.855671] msm_bus_device 16e0000.ad-hoc-bus: Bus type is missing\n[    0.858143] msm_bus: DT Parsing complete\n[    0.863252] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.863329] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.863684] msm_bus_fab_init_noc_ops: Invalid Bus type\n[    0.885118] arm-smmu 3da0000.kgsl-smmu: Linked as a consumer to regulator.62\n[    0.885174] arm-smmu 3da0000.kgsl-smmu: \tnon-coherent table walk\n[    0.885178] arm-smmu 3da0000.kgsl-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.885182] arm-smmu 3da0000.kgsl-smmu: \tstream matching with 6 register groups\n[    0.886957] register_client_adhoc:find path.src 161 dest 627\n[    0.887125] register_client_adhoc:Client handle 1 apps_smmu\n[    0.887185] arm-smmu 15000000.apps-smmu: \tnon-coherent table walk\n[    0.887188] arm-smmu 15000000.apps-smmu: \t(IDR0.CTTW overridden by FW configuration)\n[    0.887193] arm-smmu 15000000.apps-smmu: \tstream matching with 87 register groups\n[    0.887868] register_client_adhoc:find path.src 161 dest 627\n[    0.888024] register_client_adhoc:Client handle 2 apps_smmu\n[    0.888225] register_client_adhoc:find path.src 161 dest 627\n[    0.888381] register_client_adhoc:Client handle 3 apps_smmu\n[    0.888591] qsmmuv500-tbu 1518d000.mnoc_hf_0_tbu: Linked as a consumer to regulator.58\n[    0.888621] register_client_adhoc:find path.src 22 dest 773\n[    0.888699] register_client_adhoc:Client handle 4 mnoc_hf_0_tbu\n[    0.888898] qsmmuv500-tbu 15191000.mnoc_hf_1_tbu: Linked as a consumer to regulator.59\n[    0.888925] register_client_adhoc:find path.src 22 dest 773\n[    0.889000] register_client_adhoc:Client handle 5 mnoc_hf_1_tbu\n[    0.889199] register_client_adhoc:find path.src 154 dest 10070\n[    0.889256] register_client_adhoc:Client handle 6 apps_smmu\n[    0.889454] register_client_adhoc:find path.src 154 dest 10070\n[    0.889507] register_client_adhoc:Client handle 7 apps_smmu\n[    0.889704] register_client_adhoc:find path.src 161 dest 627\n[    0.889866] register_client_adhoc:Client handle 8 apps_smmu\n[    0.890103] register_client_adhoc:find path.src 161 dest 627\n[    0.890257] register_client_adhoc:Client handle 9 apps_smmu\n[    0.890462] qsmmuv500-tbu 151a5000.mnoc_sf_0_tbu: Linked as a consumer to regulator.60\n[    0.890488] register_client_adhoc:find path.src 137 dest 772\n[    0.890570] register_client_adhoc:Client handle 10 mnoc_sf_0_tbu\n[    0.890777] qsmmuv500-tbu 151a9000.mnoc_sf_1_tbu: Linked as a consumer to regulator.61\n[    0.890803] register_client_adhoc:find path.src 137 dest 772\n[    0.890878] register_client_adhoc:Client handle 11 mnoc_sf_1_tbu\n[    0.891391] Error: Driver 'arm-smmu' is already registered, aborting...\n[    0.891664] SCSI subsystem initialized\n[    0.891826] usbcore: registered new interface driver usbfs\n[    0.891872] usbcore: registered new interface driver hub\n[    0.891901] usbcore: registered new device driver usb\n[    0.892087] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    0.892102] usb_phy_generic soc:usb_nop_phy: Linked as a consumer to regulator.0\n[    0.892817] input: xiaomi-touch as /devices/virtual/input/input0\n[    0.893282] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot\n[    0.893309] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM Controlled Shutdown)\n[    0.893649] input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pm8150@0:qcom,power-on@800/input/input1\n[    0.894737] 0x8c0:0x1 0x8c1:0x0 0x8c2:0x0 0x8c3:0x0 0x8c4:0x80 0x8c5:0x2 0x8c6:0x0 0x8c7:0x80 0x8c8:0x1 0x8c9:0x0 0x8ca:0x0 0x8cb:0x0 0x842:0x7 0x84a:0x1 0x85a:0x7 \n[    0.894837] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150b@2:qcom,power-on@800: PMIC@SID2 Power-on reason: Triggered from CBL (External Power Supply) and 'cold' boot\n[    0.894862] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150b@2:qcom,power-on@800: PMIC@SID2: Power-off reason: Triggered from SOFT (Software)\n[    0.895109] 0x8c0:0x40 0x8c1:0x0 0x8c2:0x0 0x8c3:0x0 0x8c4:0x80 0x8c5:0x1 0x8c6:0x0 0x8c7:0x80 0x8c8:0x0 0x8c9:0x8 0x8ca:0x0 0x8cb:0x0 \n[    0.895206] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150l@4:qcom,power-on@800: PMIC@SID4 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'cold' boot\n[    0.895230] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8150l@4:qcom,power-on@800: PMIC@SID4: Power-off reason: Triggered from SOFT (Software)\n[    0.895469] 0x8c0:0x20 0x8c1:0x0 0x8c2:0x0 0x8c3:0x0 0x8c4:0x80 0x8c5:0x1 0x8c6:0x0 0x8c7:0x80 0x8c8:0x0 0x8c9:0x8 0x8ca:0x0 0x8cb:0x0 \n[    0.895531] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.895536] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pm8009@a:qcom,power-on@800: Register read failed, addr=0x0805, rc=-5\n[    0.895548] qcom,qpnp-power-on: probe of c440000.qcom,spmi:qcom,pm8009@a:qcom,power-on@800 failed with error -5\n[    0.895626] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pmxprairie@8:qcom,power-on@800: PMIC@SID8 Power-on reason: Triggered from PON1 (Secondary PMIC) and 'cold' boot\n[    0.895650] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pmxprairie@8:qcom,power-on@800: PMIC@SID8: Power-off reason: Triggered from SOFT (Software)\n[    0.895885] 0x8c0:0x20 0x8c1:0x0 0x8c2:0x0 0x8c3:0x0 0x8c4:0x80 0x8c5:0x1 0x8c6:0x0 0x8c7:0x80 0x8c8:0x0 0x8c9:0x8 0x8ca:0x0 0x8cb:0x0 \n[    0.896008] media: Linux media interface: v0.10\n[    0.896036] videodev: Linux video capture interface: v2.00\n[    0.896094] pps_core: LinuxPPS API ver. 1 registered\n[    0.896097] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>\n[    0.896107] PTP clock support registered\n[    0.908935] thermal_sys: of_parse_thermal_message board sensor: VIRTUAL-SENSOR0\n[    0.908938] thermal_sys: of_parse_thermal_message ambient sensor: ABT-SENSOR\n[    0.909049] thermal_sys: set_thermal_sconfig_init: set sconfig to Dynamic (emulation)\n[    0.911648] virt zone: sensor[gpuss-1-usr] read error:-22\n[    0.911653] thermal thermal_zone25: failed to read out thermal zone (-22)\n[    0.911917] tsens_tm_probe : unable to create IPC Logging 0 for tsens 0x000000000c263000\n[    0.911920] tsens_tm_probe : unable to create IPC Logging 1 for tsens 0x000000000c263000\n[    0.911924] tsens_tm_probe : unable to create IPC Logging 2 for tsens 0x000000000c263000\n[    0.913296] tsens_tm_probe : unable to create IPC Logging 0 for tsens 0x000000000c265000\n[    0.913299] tsens_tm_probe : unable to create IPC Logging 1 for tsens 0x000000000c265000\n[    0.913302] tsens_tm_probe : unable to create IPC Logging 2 for tsens 0x000000000c265000\n[    0.913945] EDAC MC: Ver: 3.0.0\n[    0.914222] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=300000 volt=592000, core_count 4\n[    0.914246] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=403200 volt=592000, core_count 4\n[    0.914253] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=518400 volt=592000, core_count 4\n[    0.914261] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=614400 volt=592000, core_count 4\n[    0.914267] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=691200 volt=592000, core_count 4\n[    0.914273] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=787200 volt=608000, core_count 4\n[    0.914279] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=883200 volt=616000, core_count 4\n[    0.914285] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=979200 volt=624000, core_count 4\n[    0.914291] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1075200 volt=640000, core_count 4\n[    0.914297] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1171200 volt=652000, core_count 4\n[    0.914303] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=1248000 volt=672000, core_count 4\n[    0.914311] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=1344000 volt=696000, core_count 4\n[    0.914317] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=1420800 volt=716000, core_count 4\n[    0.914323] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=1516800 volt=744000, core_count 4\n[    0.914329] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=1612800 volt=760000, core_count 4\n[    0.914335] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=1708800 volt=780000, core_count 4\n[    0.914341] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=1804800 volt=800000, core_count 4\n[    0.914347] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=17 freq=1804800 volt=800000, core_count 4\n[    0.914378] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=710400 volt=616000, core_count 4\n[    0.914390] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=825600 volt=632000, core_count 4\n[    0.914396] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=940800 volt=652000, core_count 4\n[    0.914401] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=1056000 volt=668000, core_count 4\n[    0.914407] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=1171200 volt=688000, core_count 4\n[    0.914412] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=1286400 volt=708000, core_count 4\n[    0.914417] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=1382400 volt=724000, core_count 4\n[    0.914423] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=1478400 volt=744000, core_count 4\n[    0.914428] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1574400 volt=764000, core_count 4\n[    0.914434] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1670400 volt=784000, core_count 4\n[    0.914439] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=1766400 volt=804000, core_count 4\n[    0.914445] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=1862400 volt=824000, core_count 4\n[    0.914452] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=1958400 volt=848000, core_count 4\n[    0.914457] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=2054400 volt=872000, core_count 4\n[    0.914463] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=2150400 volt=892000, core_count 4\n[    0.914468] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=2246400 volt=912000, core_count 4\n[    0.914474] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=2342400 volt=932000, core_count 4\n[    0.914479] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=17 freq=2419200 volt=952000, core_count 4\n[    0.914485] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=18 freq=2419200 volt=952000, core_count 4\n[    0.914511] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=844800 volt=604000, core_count 4\n[    0.914518] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=960000 volt=616000, core_count 4\n[    0.914522] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=1075200 volt=632000, core_count 4\n[    0.914527] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=1190400 volt=648000, core_count 4\n[    0.914531] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=1305600 volt=656000, core_count 4\n[    0.914536] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=1401600 volt=668000, core_count 4\n[    0.914540] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=1516800 volt=688000, core_count 4\n[    0.914545] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=1632000 volt=708000, core_count 4\n[    0.914549] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1747200 volt=728000, core_count 4\n[    0.914553] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1862400 volt=748000, core_count 4\n[    0.914560] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=1977600 volt=772000, core_count 4\n[    0.914564] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=2073600 volt=788000, core_count 4\n[    0.914569] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=2169600 volt=812000, core_count 4\n[    0.914573] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=2265600 volt=844000, core_count 4\n[    0.914578] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=2361600 volt=872000, core_count 4\n[    0.914582] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=2457600 volt=896000, core_count 4\n[    0.914587] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=2553600 volt=924000, core_count 4\n[    0.914591] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=17 freq=2649600 volt=956000, core_count 4\n[    0.914596] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=18 freq=2745600 volt=980000, core_count 4\n[    0.914600] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=19 freq=2841600 volt=1008000, core_count 4\n[    0.914605] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=20 freq=3187200 volt=1112000, core_count 3\n[    0.914609] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=21 freq=3187200 volt=1112000, core_count 4\n[    0.914614] qcom_cpufreq_hw_read_lut Skip: Index[20], Frequency[3187200], Core Count 3, Final Index 21 Actual Index 21 Prev_Freq[2841600] Prev_Index[19] Prev_CC[4]\n[    0.914688] energy_model: pd0: hertz/watts ratio non-monotonically decreasing: em_cap_state 2 >= em_cap_state1\n[    0.914691] energy_model: pd0: hertz/watts ratio non-monotonically decreasing: em_cap_state 3 >= em_cap_state2\n[    0.914705] energy_model: Created perf domain 0-3\n[    0.915101] energy_model: Created perf domain 4-6\n[    0.915451] energy_model: Created perf domain 7\n[    0.915713] cpufreq: driver qcom-cpufreq-hw up and running\n[    0.916402] CPUFREQ-HW cooling device 7 cpufreq-hw-7\n[    0.918007] PMIC@SID2: PM8150B v2.0 options: 0, 0, 0, 0\n[    0.918122] PMIC@SID4: (null) v2.0 options: 0, 0, 0, 0\n[    0.918175] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    0.918177] read failed rc=-5\n[    0.918179] Invalid REVID peripheral type: 00\n[    0.918189] qcom,qpnp-revid: probe of c440000.qcom,spmi:qcom,pm8009@a:qcom,revid@100 failed with error -22\n[    0.918709] register_client_adhoc:find path.src 90 dest 770\n[    0.918926] register_client_adhoc:find path.src 129 dest 512\n[    0.919006] register_client_adhoc:find path.src 90 dest 585\n[    0.919281] register_client_adhoc:find path.src 1 dest 676\n[    0.919495] register_client_adhoc:find path.src 143 dest 777\n[    0.919558] register_client_adhoc:Client handle 12 ipa\n[    0.919954] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node sdsp_region\n[    0.920241] platform soc:qcom,ion:qcom,ion-heap@26: assigned reserved memory node user_contig_region\n[    0.920369] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    0.920491] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    0.920612] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    0.920738] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    0.921074] ION heap system created\n[    0.921334] ion_heap_create: Invalid heap type 10\n[    0.921339] ION heap adsp created at 0x00000000ecc00000 with size 800000\n[    0.921346] ION heap secure_heap created\n[    0.921358] ION heap user_contig created at 0x00000000fec00000 with size 1000000\n[    0.921363] ION heap qsecom created at 0x00000000ed400000 with size 1400000\n[    0.921367] ION heap qsecom_ta created at 0x00000000fdc00000 with size 1000000\n[    0.921372] ION heap spss created at 0x00000000f1400000 with size 1000000\n[    0.921376] ION heap secure_display created at 0x00000000f3800000 with size a400000\n[    0.984690] ipa 1e00000.qcom,ipa:ipa_smmu_ap: Linked as a consumer to 15000000.apps-smmu\n[    0.988944] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_ap to group 0\n[    0.989316] ipa 1e00000.qcom,ipa:ipa_smmu_wlan: Linked as a consumer to 15000000.apps-smmu\n[    0.993507] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x8e100000, size 0x4600000\n[    0.993510] ION heap secure_carveout created\n[    0.993965] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_wlan to group 1\n[    0.994396] ipa 1e00000.qcom,ipa:ipa_smmu_uc: Linked as a consumer to 15000000.apps-smmu\n[    0.998614] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_uc to group 2\n[    0.998999] ipa 1e00000.qcom,ipa:ipa_smmu_11ad: Linked as a consumer to 15000000.apps-smmu\n[    1.003451] iommu: Adding device 1e00000.qcom,ipa:ipa_smmu_11ad to group 3\n[    1.004940] devfreq-qcom-fw 18590000.qcom,devfreq-l3:qcom,cpu0-cpu-l3-lat: Devfreq QCOM Firmware dev registered.\n[    1.005300] devfreq-qcom-fw 18590000.qcom,devfreq-l3:qcom,cpu4-cpu-l3-lat: Devfreq QCOM Firmware dev registered.\n[    1.005656] devfreq-qcom-fw 18590000.qcom,devfreq-l3:qcom,cpu7-cpu-l3-lat: Devfreq QCOM Firmware dev registered.\n[    1.006010] devfreq-qcom-fw 18590000.qcom,devfreq-l3:qcom,cdsp-cdsp-l3-lat: Devfreq QCOM Firmware dev registered.\n[    1.006025] devfreq-qcom-fw 18590000.qcom,devfreq-l3: Devfreq QCOM Firmware parent dev inited.\n[    1.006797] SDAM base=0xb100 size=128 registered successfully\n[    1.007002] Advanced Linux Sound Architecture Driver Initialized.\n[    1.007896] Bluetooth: Core ver 2.22\n[    1.007910] NET: Registered protocol family 31\n[    1.007912] Bluetooth: HCI device and connection manager initialized\n[    1.007922] Bluetooth: HCI socket layer initialized\n[    1.007926] Bluetooth: L2CAP socket layer initialized\n[    1.007932] Bluetooth: SCO socket layer initialized\n[    1.008074] pcie:pcie_init.\n[    1.008078] pcie_init: unable to create IPC log context for pcie0-short\n[    1.008081] pcie_init: unable to create IPC log context for pcie0-long\n[    1.008084] pcie_init: unable to create IPC log context for pcie0-dump\n[    1.008088] pcie_init: unable to create IPC log context for pcie1-short\n[    1.008090] pcie_init: unable to create IPC log context for pcie1-long\n[    1.008091] pcie_init: unable to create IPC log context for pcie1-dump\n[    1.008094] pcie_init: unable to create IPC log context for pcie2-short\n[    1.008096] pcie_init: unable to create IPC log context for pcie2-long\n[    1.008097] pcie_init: unable to create IPC log context for pcie2-dump\n[    1.008695] register_client_adhoc:find path.src 45 dest 512\n[    1.008938] register_client_adhoc:Client handle 13 pcie0\n[    1.009132] pci-msm 1c00000.qcom,pcie: 1c00000.qcom,pcie supply vreg-3p3 not found, using dummy regulator\n[    1.009153] pci-msm 1c00000.qcom,pcie: Linked as a consumer to regulator.0\n[    1.009185] pci-msm 1c00000.qcom,pcie: Linked as a consumer to regulator.18\n[    1.009208] pci-msm 1c00000.qcom,pcie: Linked as a consumer to regulator.13\n[    1.009229] pci-msm 1c00000.qcom,pcie: Linked as a consumer to regulator.4\n[    1.009260] pci-msm 1c00000.qcom,pcie: Linked as a consumer to regulator.51\n[    1.009453] msm_pcie_get_reg: PCIe: RC0: no tcsr resource found.\n[    1.009455] msm_pcie_get_reg: PCIe: RC0: no rumi resource found.\n[    1.009903] register_client_adhoc:find path.src 108 dest 512\n[    1.010123] register_client_adhoc:Client handle 14 pcie2\n[    1.010288] pci-msm 1c10000.qcom,pcie: 1c10000.qcom,pcie supply vreg-3p3 not found, using dummy regulator\n[    1.010303] pci-msm 1c10000.qcom,pcie: Linked as a consumer to regulator.0\n[    1.010324] pci-msm 1c10000.qcom,pcie: Linked as a consumer to regulator.18\n[    1.010340] pci-msm 1c10000.qcom,pcie: Linked as a consumer to regulator.13\n[    1.010353] pci-msm 1c10000.qcom,pcie: Linked as a consumer to regulator.4\n[    1.010388] pci-msm 1c10000.qcom,pcie: Linked as a consumer to regulator.53\n[    1.010560] msm_pcie_get_reg: PCIe: RC2: no tcsr resource found.\n[    1.010563] msm_pcie_get_reg: PCIe: RC2: no rumi resource found.\n[    1.010567] msm_pcie_probe: PCIe: RC2 could not get pinctrl sleep state\n[    1.010707] genirq: irq_chip msmgpio did not update eff. affinity mask of irq 374\n[    1.010983] register_client_adhoc:find path.src 22 dest 512\n[    1.011208] register_client_adhoc:find path.src 23 dest 512\n[    1.011403] register_client_adhoc:Client handle 15 bus-proxy-client\n[    1.011823] qupv3_geni_se 9c0000.qcom,qupv3_0_geni_se: Linked as a consumer to 15000000.apps-smmu\n[    1.016838] iommu: Adding device 9c0000.qcom,qupv3_0_geni_se to group 4\n[    1.017045] qupv3_geni_se 9c0000.qcom,qupv3_0_geni_se: geni_se_probe Failed to allocate log context\n[    1.017169] qupv3_geni_se ac0000.qcom,qupv3_1_geni_se: Linked as a consumer to 15000000.apps-smmu\n[    1.022257] iommu: Adding device ac0000.qcom,qupv3_1_geni_se to group 5\n[    1.022492] qupv3_geni_se ac0000.qcom,qupv3_1_geni_se: geni_se_probe Failed to allocate log context\n[    1.022630] qupv3_geni_se 8c0000.qcom,qupv3_2_geni_se: Linked as a consumer to 15000000.apps-smmu\n[    1.027540] iommu: Adding device 8c0000.qcom,qupv3_2_geni_se to group 6\n[    1.027748] qupv3_geni_se 8c0000.qcom,qupv3_2_geni_se: geni_se_probe Failed to allocate log context\n[    1.027907] gdsc ad07004.qcom,gdsc: Linked as a consumer to regulator.31\n[    1.027962] register_client_adhoc:find path.src 1 dest 589\n[    1.028231] register_client_adhoc:Client handle 16 bps_gdsc_ahb\n[    1.028307] msm-bus-type slv-qhs-camera-cfg: Linked as a consumer to regulator.31\n[    1.028575] bps_gdsc: supplied by pm8150a_s4_level\n[    1.028675] gdsc ad0a004.qcom,gdsc: Linked as a consumer to regulator.31\n[    1.028703] register_client_adhoc:find path.src 1 dest 589\n[    1.028903] register_client_adhoc:Client handle 17 ife_0_gdsc_ahb\n[    1.029134] ife_0_gdsc: supplied by pm8150a_s4_level\n[    1.029229] gdsc ad0b004.qcom,gdsc: Linked as a consumer to regulator.31\n[    1.029253] register_client_adhoc:find path.src 1 dest 589\n[    1.029454] register_client_adhoc:Client handle 18 ife_1_gdsc_ahb\n[    1.029664] ife_1_gdsc: supplied by pm8150a_s4_level\n[    1.029757] gdsc ad08004.qcom,gdsc: Linked as a consumer to regulator.31\n[    1.029784] register_client_adhoc:find path.src 1 dest 589\n[    1.029984] register_client_adhoc:Client handle 19 ipe_0_gdsc_ahb\n[    1.030208] ipe_0_gdsc: supplied by pm8150a_s4_level\n[    1.030304] gdsc ad09004.qcom,gdsc: Linked as a consumer to regulator.31\n[    1.030327] register_client_adhoc:find path.src 1 dest 589\n[    1.030522] register_client_adhoc:Client handle 20 sbi_gdsc_ahb\n[    1.030728] sbi_gdsc: supplied by pm8150a_s4_level\n[    1.030823] gdsc ad0c144.qcom,gdsc: Linked as a consumer to regulator.31\n[    1.030847] register_client_adhoc:find path.src 1 dest 589\n[    1.031044] register_client_adhoc:Client handle 21 titan_top_gdsc_ahb\n[    1.031252] titan_top_gdsc: supplied by pm8150a_s4_level\n[    1.031352] gdsc af03000.qcom,gdsc: Linked as a consumer to regulator.31\n[    1.031377] register_client_adhoc:find path.src 1 dest 590\n[    1.031580] register_client_adhoc:Client handle 22 mdss_core_gdsc_ahb\n[    1.031645] msm-bus-type slv-qhs-display-cfg: Linked as a consumer to regulator.31\n[    1.031830] mdss_core_gdsc: supplied by pm8150a_s4_level\n[    1.032215] gdsc abf0d18.qcom,gdsc: Linked as a consumer to regulator.31\n[    1.032240] register_client_adhoc:find path.src 1 dest 596\n[    1.032450] register_client_adhoc:Client handle 23 mvs0_gdsc_ahb\n[    1.032528] msm-bus-type slv-qhs-venus-cfg: Linked as a consumer to regulator.31\n[    1.032747] mvs0_gdsc: supplied by pm8150a_s4_level\n[    1.032837] gdsc abf0bf8.qcom,gdsc: Linked as a consumer to regulator.31\n[    1.032860] register_client_adhoc:find path.src 1 dest 596\n[    1.033079] register_client_adhoc:Client handle 24 mvs0c_gdsc_ahb\n[    1.033320] mvs0c_gdsc: supplied by pm8150a_s4_level\n[    1.033416] gdsc abf0d98.qcom,gdsc: Linked as a consumer to regulator.31\n[    1.033440] register_client_adhoc:find path.src 1 dest 596\n[    1.033650] register_client_adhoc:Client handle 25 mvs1_gdsc_ahb\n[    1.033890] mvs1_gdsc: supplied by pm8150a_s4_level\n[    1.033986] gdsc abf0c98.qcom,gdsc: Linked as a consumer to regulator.31\n[    1.034010] register_client_adhoc:find path.src 1 dest 596\n[    1.034221] register_client_adhoc:Client handle 26 mvs1c_gdsc_ahb\n[    1.034462] mvs1c_gdsc: supplied by pm8150a_s4_level\n[    1.034578] cam_cc-kona ad00000.qcom,camcc: Linked as a consumer to regulator.1\n[    1.034593] cam_cc-kona ad00000.qcom,camcc: Linked as a consumer to regulator.31\n[    1.034610] register_client_adhoc:find path.src 1 dest 589\n[    1.034809] register_client_adhoc:Client handle 27 clk_camcc_debugfs\n[    1.072038] cam_cc-kona ad00000.qcom,camcc: Registered CAM CC clocks\n[    1.072156] disp_cc-kona af00000.qcom,dispcc: Linked as a consumer to regulator.31\n[    1.072179] register_client_adhoc:find path.src 1 dest 590\n[    1.072385] register_client_adhoc:Client handle 28 clk_dispcc_debugfs\n[    1.090275] disp_cc-kona af00000.qcom,dispcc: Registered Display CC clocks\n[    1.090390] video_cc-kona abf0000.qcom,videocc: Linked as a consumer to regulator.1\n[    1.090411] video_cc-kona abf0000.qcom,videocc: Linked as a consumer to regulator.31\n[    1.090429] register_client_adhoc:find path.src 1 dest 596\n[    1.090640] register_client_adhoc:Client handle 29 clk_videocc_debugfs\n[    1.097431] video_cc-kona abf0000.qcom,videocc: Registered Video CC clocks\n[    1.098105] clocksource: Switched to clocksource arch_sys_counter\n[    1.141684] VFS: Disk quotas dquot_6.6.0\n[    1.141753] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    1.142794] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL\n[    1.142799] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 0 PLL PLL SSC enabled\n[    1.150562] dsi_pll_clock_register_7nm: Registered DSI PLL ndx=0, clocks successfully\n[    1.150618] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL\n[    1.150622] mdss_pll_probe: mdss_pll_probe: label=MDSS DSI 1 PLL PLL SSC enabled\n[    1.168192] dsi_pll_clock_register_7nm: Registered DSI PLL ndx=1, clocks successfully\n[    1.168240] mdss_pll_probe: MDSS pll label = MDSS DP PLL\n[    1.171332] NET: Registered protocol family 2\n[    1.171562] IP idents hash table entries: 131072 (order: 8, 1048576 bytes)\n[    1.173600] entering: milink_srv_init\n[    1.173788] default registered\n[    1.173790] default registered\n[    1.173792] MPTCP: Stable release v0.95\n[    1.173937] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes)\n[    1.174090] TCP established hash table entries: 65536 (order: 7, 524288 bytes)\n[    1.174501] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)\n[    1.175693] TCP: Hash tables configured (established 65536 bind 65536)\n[    1.175828] UDP hash table entries: 4096 (order: 5, 131072 bytes)\n[    1.175939] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)\n[    1.176121] NET: Registered protocol family 1\n[    1.176466] PCI: CLS 0 bytes, default 64\n[    1.176937] Trying to unpack rootfs image as initramfs...\n[    1.709253] Freeing initrd memory: 23300K\n[    1.710753] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    1.717832] Initialise system trusted keyrings\n[    1.717929] workingset: timestamp_bits=45 max_order=21 bucket_order=0\n[    1.721326] Registering sdcardfs 0.1\n[    1.721477] ntfs: driver 2.1.32 [Flags: R/W].\n[    1.721587] fuse: init (API version 7.31)\n[    1.750882] Key type asymmetric registered\n[    1.750889] Asymmetric key parser 'x509' registered\n[    1.750926] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 240)\n[    1.751016] io scheduler cfq registered (default)\n[    1.759077] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    1.759082] qcom-spmi-gpio c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000: read 0x4 failed\n[    1.759085] qcom-spmi-gpio c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000: failed to populate gpio 0, ret=-5\n[    1.759095] qcom-spmi-gpio: probe of c440000.qcom,spmi:qcom,pm8009@a:pinctrl@c000 failed with error -5\n[    1.764402] gpi_dma 900000.qcom,gpi-dma: Linked as a consumer to 15000000.apps-smmu\n[    1.764777] iommu: Adding device 900000.qcom,gpi-dma to group 7\n[    1.765791] gpi_dma a00000.qcom,gpi-dma: Linked as a consumer to 15000000.apps-smmu\n[    1.766081] iommu: Adding device a00000.qcom,gpi-dma to group 8\n[    1.766736] gpi_dma 800000.qcom,gpi-dma: Linked as a consumer to 15000000.apps-smmu\n[    1.767015] iommu: Adding device 800000.qcom,gpi-dma to group 9\n[    1.769746] register_client_adhoc:find path.src 125 dest 512\n[    1.770238] register_client_adhoc:Client handle 30 scm_pas\n[    1.770246] minidump-id not found for ipa_fws\n[    1.770299] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    1.770346] subsys-pil-tz soc:qcom,ipa_fws: for md_ipa_fws segments only will be dumped.\n[    1.770510] minidump-id not found for ipa_uc\n[    1.770540] subsys-pil-tz soc:qcom,ipa_uc: for ipa_uc segments only will be dumped.\n[    1.770575] subsys-pil-tz soc:qcom,ipa_uc: for md_ipa_uc segments only will be dumped.\n[    1.770761] subsys-pil-tz 17300000.qcom,lpass: Linked as a consumer to regulator.20\n[    1.770777] subsys-pil-tz 17300000.qcom,lpass: Linked as a consumer to regulator.12\n[    1.770783] minidump-id not found for adsp\n[    1.771279] subsys-pil-tz 8300000.qcom,turing: Linked as a consumer to regulator.4\n[    1.771310] register_client_adhoc:find path.src 154 dest 10070\n[    1.771363] register_client_adhoc:Client handle 31 pil-cdsp\n[    1.771367] minidump-id not found for cdsp\n[    1.771832] subsys-pil-tz aab0000.qcom,venus: Linked as a consumer to regulator.75\n[    1.771858] register_client_adhoc:find path.src 63 dest 512\n[    1.772088] register_client_adhoc:Client handle 32 pil-venus\n[    1.772093] minidump-id not found for venus\n[    1.772315] subsys-pil-tz 188101c.qcom,spss: Linked as a consumer to regulator.4\n[    1.772321] minidump-id not found for spss\n[    1.772586] minidump-id not found for cvpss\n[    1.772622] subsys-pil-tz abb0000.qcom,cvpss: for cvpss segments only will be dumped.\n[    1.772656] subsys-pil-tz abb0000.qcom,cvpss: for md_cvpss segments only will be dumped.\n[    1.772781] minidump-id not found for npu\n[    1.772814] subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    1.772847] subsys-pil-tz 9800000.qcom,npu: for md_npu segments only will be dumped.\n[    1.772936] subsys-restart: __get_smem_state(): Could not get smem-states qcom,force-stop\n[    1.773086] the deleted wakeup source is ssr(npu)\n[    1.773201] the deleted wakeup source is pil-npu\n[    1.773256] subsys-pil-tz 5c00000.qcom,ssc: Linked as a consumer to regulator.20\n[    1.773267] subsys-pil-tz 5c00000.qcom,ssc: Linked as a consumer to regulator.12\n[    1.773273] minidump-id not found for slpi\n[    1.773718] minidump-id not found for a650_zap\n[    1.773755] subsys-pil-tz soc:qcom,kgsl-hyp: for a650_zap segments only will be dumped.\n[    1.773797] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a650_zap segments only will be dumped.\n[    1.774198] spcom:spcom_probe: Unable to create IPC log context\n[    1.776530] qiib_driver_data_init: unable to create logging context\n[    1.779373] msm_geni_serial 998000.qcom,qup_uart: Wakeup byte 0xfd\n[    1.779517] msm_geni_serial 998000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    1.779529] msm_geni_serial 998000.qcom,qup_uart: Failed to create dbg dir\n[    1.779535] msm_geni_serial 998000.qcom,qup_uart: Err in Rx IPC Log\n[    1.779539] msm_geni_serial 998000.qcom,qup_uart: Err in Tx IPC Log\n[    1.779543] msm_geni_serial 998000.qcom,qup_uart: Err in Pwr IPC Log\n[    1.779547] msm_geni_serial 998000.qcom,qup_uart: Err in Misc IPC Log\n[    1.779551] msm_geni_serial 998000.qcom,qup_uart: Err in single IPC Log\n[    1.779555] msm_geni_serial 998000.qcom,qup_uart: Err in irqstatus IPC Log\n[    1.779903] 998000.qcom,qup_uart: ttyHS0 at MMIO 0x998000 (irq = 291, base_baud = 0) is a MSM\n[    1.780119] msm_geni_serial_init: Driver initialized\n[    1.780253] register_client_adhoc:find path.src 1 dest 618\n[    1.780521] register_client_adhoc:Client handle 33 msm-rng-noc\n[    1.791191] brd: module loaded\n[    1.794410] loop: module loaded\n[    1.794585] zram: Added device: zram0\n[    1.795492] QSEECOM: qseecom_init_control: qseecom.qsee_version = 0x1402000\n[    1.795576] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE\n[    1.798594] qce 1de0000.qcedev: Linked as a consumer to 15000000.apps-smmu\n[    1.798959] iommu: Adding device 1de0000.qcedev to group 10\n[    1.799224] register_client_adhoc:find path.src 125 dest 512\n[    1.799650] register_client_adhoc:Client handle 34 qcedev-noc\n[    1.799779] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.800097] qce 1de0000.qcedev: QTI Crypto 5.5.0 device found @0x1de0000\n[    1.800114] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000001dc4000\n[    1.800117] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000001dc4000\n[    1.800121] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000001dc4000\n[    1.800125] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000001dc4000\n[    1.800128] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000001dc4000\n[    1.800132] sps:BAM 0x0000000001dc4000 is registered.\n[    1.800221] sps:BAM 0x0000000001dc4000 (va:0x00000000c95a79e2) enabled: ver:0x27, number of pipes:16\n[    1.800407] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 37\n[    1.801011] qce 1de0000.qcedev:qcom_cedev_ns_cb: Linked as a consumer to 15000000.apps-smmu\n[    1.801329] iommu: Adding device 1de0000.qcedev:qcom_cedev_ns_cb to group 11\n[    1.801637] qce 1de0000.qcedev:qcom_cedev_s_cb: Linked as a consumer to 15000000.apps-smmu\n[    1.802378] iommu: Adding device 1de0000.qcedev:qcom_cedev_s_cb to group 12\n[    1.802941] qcrypto 1de0000.qcrypto: Linked as a consumer to 15000000.apps-smmu\n[    1.803174] iommu: Adding device 1de0000.qcrypto to group 13\n[    1.803334] register_client_adhoc:find path.src 125 dest 512\n[    1.803619] register_client_adhoc:Client handle 35 qcrypto-noc\n[    1.803693] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    1.803972] qcrypto 1de0000.qcrypto: QTI Crypto 5.5.0 device found @0x1de0000\n[    1.804194] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 37\n[    1.804427] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    1.804581] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    1.804667] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    1.804763] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    1.804853] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    1.804936] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    1.805015] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    1.805094] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    1.805174] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    1.805257] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    1.805340] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    1.805425] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    1.805511] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    1.805592] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    1.805672] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    1.805751] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    1.805829] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    1.805910] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    1.805989] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    1.806077] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    1.807185] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)\n[    1.809453] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.\n[    1.809456] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    1.809610] tun: Universal TUN/TAP device driver, 1.6\n[    1.809822] spi_geni 988000.spi: spi_geni_probe: completed\n[    1.810465] ufshcd-qcom 1d84000.ufshc: no vccq2-voltage-level property.\n[    1.810597] ufshcd-qcom 1d84000.ufshc: Linked as a consumer to regulator.55\n[    1.810856] ufshcd-qcom 1d84000.ufshc: Linked as a consumer to regulator.28\n[    1.810873] ufshcd-qcom 1d84000.ufshc: Linked as a consumer to regulator.16\n[    1.810891] ufshcd-qcom 1d84000.ufshc: Linked as a consumer to regulator.7\n[    1.811147] sky2: driver version 1.30\n[    1.811401] cnss: Unable to create IPC log context\n[    1.811427] cnss_utils: Unable to create debugfs -19\n[    1.811674] wcnss_pre_alloc_init: Failed to create debugfs dir\n[    1.811676] CLD80211: Initializing\n[    1.811747] usbcore: registered new interface driver r8152\n[    1.811773] usbcore: registered new interface driver lan78xx\n[    1.811794] usbcore: registered new interface driver asix\n[    1.811810] usbcore: registered new interface driver ax88179_178a\n[    1.811825] usbcore: registered new interface driver cdc_ether\n[    1.811840] usbcore: registered new interface driver net1080\n[    1.811866] usbcore: registered new interface driver cdc_subset\n[    1.811882] usbcore: registered new interface driver zaurus\n[    1.811904] usbcore: registered new interface driver cdc_ncm\n[    1.812736] msm-usb-hsphy 88e3000.hsphy: Linked as a consumer to regulator.13\n[    1.812755] msm-usb-hsphy 88e3000.hsphy: Linked as a consumer to regulator.10\n[    1.812775] msm-usb-hsphy 88e3000.hsphy: Linked as a consumer to regulator.21\n[    1.812783] msm-usb-hsphy 88e3000.hsphy: phy hw_country: 1\n[    1.814327] msm-dwc3 a600000.ssusb: Linked as a consumer to 15000000.apps-smmu\n[    1.814780] spi_geni 990000.spi: spi_geni_probe: completed\n[    1.815108] cnss: set_wlaon_pwr_ctrl is 1\n[    1.815176] cnss: CPR PMIC address is not available for smpf2\n[    1.815255] cnss2 b0000000.qcom,cnss-qca6390: Linked as a consumer to regulator.7\n[    1.815262] cnss: Got regulator: vdd-wlan-io, min_uv: 1800000, max_uv: 1800000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    1.815412] cnss2 b0000000.qcom,cnss-qca6390: Linked as a consumer to regulator.9\n[    1.815416] cnss: Got regulator: vdd-wlan-aon, min_uv: 950000, max_uv: 950000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    1.815431] cnss: Got regulator: vdd-wlan-dig, min_uv: 950000, max_uv: 950000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    1.815449] cnss2 b0000000.qcom,cnss-qca6390: Linked as a consumer to regulator.8\n[    1.815454] cnss: Got regulator: vdd-wlan-rfa1, min_uv: 1900000, max_uv: 1900000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    1.815474] cnss2 b0000000.qcom,cnss-qca6390: Linked as a consumer to regulator.36\n[    1.815478] cnss: Got regulator: vdd-wlan-rfa2, min_uv: 1350000, max_uv: 1350000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    1.815520] cnss: Failed to get optional clock rf_clk, err = -2\n[    1.815587] cnss: BT GPIO: 1121\n[    1.815594] cnss: Switch control GPIO: 1224\n[    1.815597] cnss: Regulator vdd-wlan-io is being enabled\n[    1.815601] cnss: Regulator vdd-wlan-aon is being enabled\n[    1.815652] cnss: Regulator vdd-wlan-dig is being enabled\n[    1.815656] cnss: Regulator vdd-wlan-rfa1 is being enabled\n[    1.815717] cnss: Regulator vdd-wlan-rfa2 is being enabled\n[    1.815849] iommu: Adding device a600000.ssusb to group 14\n[    1.815900] cnss: BT_EN_GPIO State: Off. Delay WLAN_GPIO enable\n[    1.816046] msm-dwc3 a600000.ssusb: Linked as a consumer to regulator.56\n[    1.816301] register_client_adhoc:find path.src 123 dest 512\n[    1.816625] register_client_adhoc:find path.src 1 dest 757\n[    1.816883] register_client_adhoc:Client handle 36 ufshc_mem\n[    1.816958] ufs_qcom_phy_qmp_v4 1d87000.ufsphy_mem: Linked as a consumer to regulator.18\n[    1.816973] ufs_qcom_phy_qmp_v4 1d87000.ufsphy_mem: Linked as a consumer to regulator.13\n[    1.816999] ufshcd-qcom 1d84000.ufshc: Linked as a consumer to regulator.36\n[    1.818205] scsi host0: ufshcd\n[    1.818832] dwc3 a600000.dwc3: Failed to get clk 'ref': -2\n[    1.818932] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    1.819289] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    1.819292] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    1.819556] register_client_adhoc:find path.src 61 dest 512\n[    1.819822] register_client_adhoc:find path.src 61 dest 676\n[    1.820199] register_client_adhoc:find path.src 1 dest 583\n[    1.820407] register_client_adhoc:Client handle 37 usb0\n[    1.821919] msm-dwc3 a600000.ssusb: Dropping the link to regulator.56\n[    1.822458] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    1.822461] ehci-pci: EHCI PCI platform driver\n[    1.822481] ehci-platform: EHCI generic platform driver\n[    1.822803] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver\n[    1.822806] ohci-pci: OHCI PCI platform driver\n[    1.822830] ohci-platform: OHCI generic platform driver\n[    1.823743] usbcore: registered new interface driver usb-storage\n[    1.823764] usbcore: registered new interface driver usb_ehset_test\n[    1.823779] usbcore: registered new interface driver lvs\n[    1.824446] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: Linked as a consumer to regulator.10\n[    1.825305] the deleted wakeup source is usbpd0\n[    1.825324] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    1.825443] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: Dropping the link to regulator.10\n[    1.825656] usbcore: registered new interface driver xpad\n[    1.825673] usbcore: registered new interface driver usb_acecad\n[    1.825688] usbcore: registered new interface driver aiptek\n[    1.825703] usbcore: registered new interface driver gtco\n[    1.825720] usbcore: registered new interface driver hanwang\n[    1.825735] usbcore: registered new interface driver kbtab\n[    1.826099] input: fts_ts as /devices/platform/soc/990000.spi/spi_master/spi1/spi1.0/input/input2\n[    1.826188] fts_ts spi1.0: Linked as a consumer to regulator.46\n[    1.826303] fts_ts spi1.0: Linked as a consumer to regulator.37\n[    1.890005] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    1.921062] cnss: Assert WLAN_EN GPIO successfully\n[    1.921072] msm_pcie_enable: PCIe: Assert the reset of endpoint of RC0.\n[    1.924953] msm_pcie_enable: PCIe: RC0: PCIE20_PARF_INT_ALL_MASK: 0x7f80d202\n[    1.927249] pcie_phy_init: PCIe RC0 PHY is ready!\n[    1.937272] msm_pcie_enable: PCIe: Release the reset of endpoint of RC0.\n[    1.953684] msm_pcie_link_train: PCIe RC0 link initialized\n[    1.954457] pci-msm 1c00000.qcom,pcie: host bridge /soc/qcom,pcie@1c00000 ranges:\n[    1.954472] pci-msm 1c00000.qcom,pcie:   No bus range found for /soc/qcom,pcie@1c00000, using [bus 00-ff]\n[    1.954484] pci-msm 1c00000.qcom,pcie:    IO 0x60200000..0x602fffff -> 0x60200000\n[    1.954495] pci-msm 1c00000.qcom,pcie:   MEM 0x60300000..0x63ffffff -> 0x60300000\n[    1.954895] pci-msm 1c00000.qcom,pcie: PCI host bridge to bus 0000:00\n[    1.954901] pci_bus 0000:00: root bus resource [bus 00-ff]\n[    1.954906] pci_bus 0000:00: root bus resource [io  0x0000-0xfffff] (bus address [0x60200000-0x602fffff])\n[    1.954910] pci_bus 0000:00: root bus resource [mem 0x60300000-0x63ffffff]\n[    1.954951] pci 0000:00:00.0: [17cb:010b] type 01 class 0x060400\n[    1.955012] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]\n[    1.955104] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold\n[    1.973580] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring\n[    1.973782] pci 0000:01:00.0: [17cb:1101] type 00 class 0xff0000\n[    1.973892] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x000fffff 64bit]\n[    1.974182] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold\n[    1.974247] pci 0000:01:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5 GT/s x1 link at 0000:00:00.0 (capable of 7.876 Gb/s with 8 GT/s x1 link)\n[    1.990778] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01\n[    1.990826] pci 0000:00:00.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000\n[    1.990835] pci 0000:00:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000\n[    1.990840] pci 0000:00:00.0: bridge window [mem 0x00100000-0x001fffff] to [bus 01] add_size 200000 add_align 100000\n[    1.990862] pci 0000:00:00.0: BAR 8: assigned [mem 0x60300000-0x605fffff]\n[    1.990867] pci 0000:00:00.0: BAR 9: assigned [mem 0x60600000-0x607fffff 64bit pref]\n[    1.990872] pci 0000:00:00.0: BAR 0: assigned [mem 0x60800000-0x60800fff 64bit]\n[    1.990896] pci 0000:00:00.0: BAR 7: assigned [io  0x1000-0x1fff]\n[    1.990904] pci 0000:01:00.0: BAR 0: assigned [mem 0x60300000-0x603fffff 64bit]\n[    1.990945] pci 0000:00:00.0: PCI bridge to [bus 01]\n[    1.990950] pci 0000:00:00.0:   bridge window [io  0x1000-0x1fff]\n[    1.990962] pci 0000:00:00.0:   bridge window [mem 0x60300000-0x605fffff]\n[    1.990971] pci 0000:00:00.0:   bridge window [mem 0x60600000-0x607fffff 64bit pref]\n[    1.991112] pci-msm-rc 0000:00:00.0: Linked as a consumer to 15000000.apps-smmu\n[    1.991435] iommu: Adding device 0000:00:00.0 to group 15\n[    1.991900] msm_pcie_enumerate: PCIe: RC0: has already been enumerated.\n[    1.991979] cnss_pci 0000:01:00.0: Linked as a consumer to 15000000.apps-smmu\n[    1.997290] iommu: Adding device 0000:01:00.0 to group 16\n[    1.997563] cnss: PCI is probing, vendor ID: 0x17cb, device ID: 0x1101\n[    1.997586] cnss_pci 0000:01:00.0: assigned reserved memory node cnss_wlan_region\n[    1.997589] cnss: CMA area is cnss_wlan_region\n[    1.997873] cnss: Powerup is ignored\n[    1.997899] cnss: Ramdump size 0x420000\n[    1.997915] cnss2 b0000000.qcom,cnss-qca6390: for wlan segments only will be dumped.\n[    1.997996] cnss: Initializing SMMU\n[    1.997999] cnss: Enabling SMMU S1 stage\n[    1.998004] cnss: smmu_iova_start: 0x00000000a0000000, smmu_iova_len: 0x10000000\n[    1.998008] cnss: smmu_iova_ipa_start: 0x00000000b0000000, smmu_iova_ipa_len: 0x10000\n[    1.998010] cnss: iommu_geometry: 0\n[    1.998014] cnss: PCIe DRV is supported\n[    1.998045] cnss_pci 0000:01:00.0: BAR 0: assigned [mem 0x60300000-0x603fffff 64bit]\n[    1.998116] pci-msm-rc 0000:00:00.0: enabling device (0006 -> 0007)\n[    1.998133] cnss_pci 0000:01:00.0: enabling device (0000 -> 0002)\n[    1.998373] cnss: Config PCIe remap window register to 0x4000003f\n[    1.998389] cnss: Read register offset 0x1f8031c, val = 0x6\n[    1.998402] cnss: Write val 0x2 to register offset 0x1f8031c\n[    1.999501] cnss: MSI base data is 800\n[    1.999505] cnss: BAR starts at 0x0000000060300000, len-100000\n[    1.999510] cnss: Assign MSI to user: MHI, num_vectors: 3, user_base_data: 800, base_vector: 0\n[    1.999512] cnss: Number of assigned MSI for MHI is 3, base vector is 0\n[    1.999515] cnss: Get IRQ number 397 for vector index 0\n[    1.999517] cnss: Get IRQ number 398 for vector index 1\n[    1.999519] cnss: Get IRQ number 399 for vector index 2\n[    1.999522] cnss: Unable to create CNSS MHI IPC log context\n[    1.999524] cnss: Unable to create CNSS MHICNTRL IPC log context\n[    1.999796] cnss: Get device version info, family number: 0x4, device number: 0xa, major version: 0x2, minor version: 0x0\n[    1.999800] cnss: FW name added with prefix: qca6390/amss20.bin\n[    1.999803] cnss: FW name is qca6390/amss20.bin, FW fallback name is amss20.bin\n[    1.999812] cnss: Get PCI link status register: 4114\n[    1.999814] cnss: Default PCI link speed is 0x2, link width is 0x1\n[    1.999819] cnss: Config PCIe remap window register to 0x4000003c\n[    1.999828] cnss: Config PCIe remap window register to 0x4000003f\n[    1.999843] cnss: Read register offset 0x1f8031c, val = 0x2\n[    1.999852] cnss: Write val 0x3 to register offset 0x1f8031c\n[    2.020037] cnss: Suspending PCI link\n[    2.024957] ufshcd-qcom 1d84000.ufshc: ufshcd_needs_reinit: Re-init UFS host to use proper PHY settings for the UFS device. This can be avoided by setting the force-g4 in DT\n[    2.090356] spi_geni 990000.spi: tx_fifo 16 rx_fifo 16 tx_width 32\n[    2.094341] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    2.130098] msm_pcie_disable: PCIe: Assert the reset of endpoint of RC0.\n[    2.130468] cnss: De-assert WLAN_EN GPIO successfully\n[    2.130472] cnss: Regulator vdd-wlan-rfa2 is being disabled\n[    2.130535] cnss: Regulator vdd-wlan-rfa1 is being disabled\n[    2.130569] cnss: Regulator vdd-wlan-dig is being disabled\n[    2.130581] cnss: Regulator vdd-wlan-aon is being disabled\n[    2.130606] cnss: Regulator vdd-wlan-io is being disabled\n[    2.130875] register_client_adhoc:find path.src 45 dest 512\n[    2.131244] register_client_adhoc:Client handle 37 msm-cnss\n[    2.131508] cnss: Platform driver probed successfully.\n[    2.252909] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[4, 4], lane[2, 2], pwr[FAST MODE, FAST MODE], rate = 1\n[    2.258203] scsi 0:0:0:49488: Well-known LUN    WDC      SDINFDK4-128G    1270 PQ: 0 ANSI: 6\n[    2.268070] scsi 0:0:0:49476: Well-known LUN    WDC      SDINFDK4-128G    1270 PQ: 0 ANSI: 6\n[    2.271946] scsi 0:0:0:49456: Well-known LUN    WDC      SDINFDK4-128G    1270 PQ: 0 ANSI: 6\n[    2.281361] ufshcd-qcom 1d84000.ufshc: ufshcd_query_attr: opcode 0x03 for idn 255 failed, index 0, err = 253\n[    2.281369] ufsf_device_check:293 UFS FEATURE SELECTOR Dev -306081280 - D/D 1\n[    2.282619] ufshcd-qcom 1d84000.ufshc: __ufshcd_query_descriptor: opcode 0x01 for idn 0 failed, index 0, err = 251\n[    2.285472] scsi 0:0:0:0: Direct-Access     WDC      SDINFDK4-128G    1270 PQ: 0 ANSI: 6\n[    2.285478] ufshcd_slave_configure: ufsfeature set lun 0 sdev 0000000067ece4ff q 00000000e3022756\n[    2.285527] ufshcd-qcom 1d84000.ufshc: __ufshcd_query_descriptor: opcode 0x01 for idn 0 failed, index 0, err = 251\n[    2.285831] ufshcd-qcom 1d84000.ufshc: __ufshcd_query_descriptor: opcode 0x01 for idn 0 failed, index 0, err = 251\n[    2.285834] ufsf_read_desc:186 reading Device Desc failed. err = 251\n[    2.285836] ufsf_tw_init:619 init start.. tw_state 0\n[    2.285841] ufsf_tw_reset:631 reset start.. tw_state 0\n[    2.291120] scsi 0:0:0:1: Direct-Access     WDC      SDINFDK4-128G    1270 PQ: 0 ANSI: 6\n[    2.291124] ufshcd_slave_configure: ufsfeature set lun 1 sdev 0000000055dc80b8 q 00000000cc938d42\n[    2.296067] scsi 0:0:0:2: Direct-Access     WDC      SDINFDK4-128G    1270 PQ: 0 ANSI: 6\n[    2.296071] ufshcd_slave_configure: ufsfeature set lun 2 sdev 00000000a42fb000 q 00000000669a291b\n[    2.300983] scsi 0:0:0:3: Direct-Access     WDC      SDINFDK4-128G    1270 PQ: 0 ANSI: 6\n[    2.300987] ufshcd_slave_configure: ufsfeature set lun 3 sdev 0000000025f110ce q 0000000052385fcc\n[    2.305915] scsi 0:0:0:4: Direct-Access     WDC      SDINFDK4-128G    1270 PQ: 0 ANSI: 6\n[    2.305919] ufshcd_slave_configure: ufsfeature set lun 4 sdev 00000000dfd043ff q 0000000021a2eef8\n[    2.311100] scsi 0:0:0:5: Direct-Access     WDC      SDINFDK4-128G    1270 PQ: 0 ANSI: 6\n[    2.311104] ufshcd_slave_configure: ufsfeature set lun 5 sdev 000000002e574b26 q 000000007fc740ed\n[    2.315990] sd 0:0:0:0: Power-on or device reset occurred\n[    2.316005] sd 0:0:0:1: Power-on or device reset occurred\n[    2.316012] sd 0:0:0:2: Power-on or device reset occurred\n[    2.316019] sd 0:0:0:3: Power-on or device reset occurred\n[    2.316026] sd 0:0:0:4: Power-on or device reset occurred\n[    2.316033] sd 0:0:0:5: Power-on or device reset occurred\n[    2.330252] sd 0:0:0:1: [sdb] Write Protect is off\n[    2.330257] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    2.332524] sd 0:0:0:0: [sda] Write Protect is off\n[    2.332528] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    2.334800] sd 0:0:0:5: [sdf] Write Protect is off\n[    2.334803] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    2.337088] sd 0:0:0:4: [sde] Write Protect is off\n[    2.337092] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    2.339357] sd 0:0:0:3: [sdd] Write Protect is off\n[    2.339361] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    2.340164] aw8697_i2c_init success\n[    2.340879] fpc1020 soc:fingerprint_fpc: fpc fpc1020_probe --->: enter! \n[    2.340938] fpc1020 soc:fingerprint_fpc: found pin control fpc1020_reset_reset\n[    2.340941] fpc1020 soc:fingerprint_fpc: found pin control fpc1020_reset_active\n[    2.341053] fpc1020 soc:fingerprint_fpc: fpc reset_gpio_res --->: enter!\n[    2.341056] fpc1020 soc:fingerprint_fpc: fpc reset_gpio_res <---: exit!\n[    2.341061] fpc1020 soc:fingerprint_fpc: fpc1020_probe: ok\n[    2.341064] fpc1020 soc:fingerprint_fpc: fpc fpc1020_probe <---: exit! \n[    2.341151] fpc1020_tee: fpc1020_init OK\n[    2.341850] rtc-pm8xxx c440000.qcom,spmi:qcom,pm8150@0:qcom,pm8150_rtc: rtc core: registered pm8xxx_rtc as rtc0\n[    2.341897] rtc-pm8xxx c440000.qcom,spmi:qcom,pm8150@0:qcom,pm8150_rtc: setting system clock to 1972-03-11 17:39:26 UTC (69183566)\n[    2.342126] i2c /dev entries driver\n[    2.342547] msm_cvp:  err: Failed to create debugfs for msm_cvp\n[    2.343048] sd 0:0:0:2: [sdc] Write Protect is off\n[    2.343052] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    2.343995] i2c_geni 984000.i2c: Bus frequency is set to 1000000Hz\n[    2.344518] i2c_geni 98c000.i2c: Bus frequency is set to 400000Hz\n[    2.345278] i2c_geni a8c000.i2c: Bus frequency is set to 400000Hz\n[    2.345735] aw8697_haptic 2-005a: aw8697_parse_dt: reset gpio provided ok\n[    2.345743] aw8697_haptic 2-005a: aw8697_parse_dt: irq gpio provided ok.\n[    2.345769] aw8697_parse_dt ---2934 effect->vmax_mv =3600 \n[    2.345771] aw8697_parse_dt ---2944 \n[    2.345776] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.345779] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.345782] aw8697_parse_dt ---2934 effect->vmax_mv =3600 \n[    2.345783] aw8697_parse_dt ---2944 \n[    2.345785] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.345787] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.345789] aw8697_parse_dt ---2934 effect->vmax_mv =3600 \n[    2.345791] aw8697_parse_dt ---2944 \n[    2.345793] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.345794] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.345796] aw8697_parse_dt ---2934 effect->vmax_mv =3600 \n[    2.345798] aw8697_parse_dt ---2944 \n[    2.345800] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.345801] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.345804] aw8697_parse_dt ---2934 effect->vmax_mv =3600 \n[    2.345805] aw8697_parse_dt ---2944 \n[    2.345807] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.345808] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.345811] aw8697_parse_dt ---2934 effect->vmax_mv =3600 \n[    2.345812] aw8697_parse_dt ---2944 \n[    2.345814] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.345815] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.345818] aw8697_parse_dt ---2934 effect->vmax_mv =3600 \n[    2.345819] aw8697_parse_dt ---2944 \n[    2.345825] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.345826] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.345829] aw8697_parse_dt ---2934 effect->vmax_mv =3600 \n[    2.345830] aw8697_parse_dt ---2944 \n[    2.345832] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.345833] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.345836] aw8697_parse_dt ---2934 effect->vmax_mv =3600 \n[    2.345838] aw8697_parse_dt ---2944 \n[    2.345840] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.345842] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.345845] aw8697_parse_dt ---2934 effect->vmax_mv =3600 \n[    2.345846] aw8697_parse_dt ---2944 \n[    2.345848] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.345849] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.345852]  20190420_dt       aw8697->info.bst_vol_default: 0xc\n[    2.345853]  20190420_dt       aw8697->info.bst_vol_ram: 0xc\n[    2.345855]  20190420_dt       aw8697->info.bst_vol_rtp: 0xc\n[    2.345857] aw8697_i2c_probe ---4638 \n[    2.345948] found pin control aw8697_reset_reset\n[    2.345951] Selected 'aw8697_interrupt_active'\n[    2.345953] found pin control aw8697_reset_active\n[    2.345954] Selected 'aw8697_interrupt_active'\n[    2.345955] found pin control aw8697_interrupt_active\n[    2.345966] Selected 'aw8697_interrupt_active'\n[    2.345967] aw8697_i2c_probe ---4678 \n[    2.345989] Selected 'aw8697_reset_active'\n[    2.346483] msm_cvp:  err: Failed to create debugfs for msm_cvp\n[    2.347331] msm_cvp_v4l2 ab00000.qcom,cvp:cvp_non_secure_cb: Linked as a consumer to 15000000.apps-smmu\n[    2.347903] nq-nci 0-0028: ese GPIO <OPTIONAL> error getting from OF node\n[    2.347907] nq-nci 0-0028: error reading NFC VDDIO min and max value\n[    2.347910] nq-nci 0-0028: error reading NFC current value\n[    2.347934] nq-nci 0-0028: nqx_probe: ese gpio not provided\n[    2.348012] nq-nci 0-0028: nfc_ldo_config: regulator entry not present\n[    2.348085] iommu: Adding device ab00000.qcom,cvp:cvp_non_secure_cb to group 17\n[    2.348418] msm_cvp_v4l2 ab00000.qcom,cvp:cvp_secure_nonpixel_cb: Linked as a consumer to 15000000.apps-smmu\n[    2.348910] iommu: Adding device ab00000.qcom,cvp:cvp_secure_nonpixel_cb to group 18\n[    2.349216] msm_cvp_v4l2 ab00000.qcom,cvp:cvp_secure_pixel_cb: Linked as a consumer to 15000000.apps-smmu\n[    2.349587] iommu: Adding device ab00000.qcom,cvp:cvp_secure_pixel_cb to group 19\n[    2.349741] platform ab00000.qcom,cvp:qcom,msm-cvp,mem_cdsp: assigned reserved memory node cdsp_region\n[    2.350401] msm_npu 9900000.qcom,msm_npu: Linked as a consumer to 15000000.apps-smmu\n[    2.350620] iommu: Adding device 9900000.qcom,msm_npu to group 20\n[    2.350773] NPU_INFO: npu_probe: 2505 unable to get qfprom_physical resource\n[    2.350827] msm_npu 9900000.qcom,msm_npu: Linked as a consumer to regulator.73\n[    2.350841] msm_npu 9900000.qcom,msm_npu: Linked as a consumer to regulator.4\n[    2.351073] register_client_adhoc:find path.src 154 dest 512\n[    2.351273] register_client_adhoc:find path.src 154 dest 620\n[    2.351531] register_client_adhoc:Client handle 38 9900000.qcom,msm_npu\n[    2.351534] NPU_INFO: npu_parse_dt_bw: 1832 NPU BW client sets up successfully\n[    2.354233] NPU_ERR: npu_debugfs_init: 360 debugfs_create_dir for npu failed, error -19\n[    2.354873] synx: synx device init start\n[    2.354996] synx: synx device init success\n[    2.354998] uvcvideo: Unable to create debugfs directory\n[    2.355044] usbcore: registered new interface driver uvcvideo\n[    2.355046] USB Video Class driver (1.1.1)\n[    2.355873] Couldn't parse device tree rc=-517\n[    2.356240] QNOVO_CHG_READY: current vote is now 0 voted by USB_READY_VOTER,0, previous voted 0\n[    2.356244] QNOVO_NOT_OK: current vote is now 1 voted by CHG_READY_VOTER,0, previous voted 0\n[    2.356247] QNOVO_DISABLE: current vote is now 1 voted by ok_to_qnovo_voter,0, previous voted 0\n[    2.356251] QNOVO_PT_DIS: current vote is now 1 voted by QNOVO_OVERALL_VOTER,0, previous voted 0\n[    2.357998] qcom,fg-gen4 c440000.qcom,spmi:qcom,pm8150b@2:qpnp,fg: hw_country: 1\n[    2.358086] FG: fg_gen4_parse_dt: Global cutoff_volt=3400\n[    2.360221] Selected 'aw8697_reset_reset'\n[    2.361983] FG_DELTA_ESR_IRQ: current vote is now 1 voted by fg_delta_esr_irq,0, previous voted 0\n[    2.364350] FG: battery_authentic_work: battery authentic work begin to restart.\n[    2.368049] FG_DELTA_BSOC_IRQ: current vote is now 0 voted by fg_delta_bsoc_irq,0, previous voted 0\n[    2.368053] FG_MEM_ATTN_IRQ: current vote is now 0 voted by fg_mem_attn_irq,0, previous voted 0\n[    2.368066] debugfs is not enabled in the kernel\n[    2.368797] [Onewire] onewire_gpio_init: onewire gpio init entry.\n[    2.369074] [Onewire] onewire_gpio_probe: onewire probe entry\n[    2.372487] FG: fg_gen4_get_batt_profile: cmdline of batt profile is not defined, read page0 to reload file\n[    2.372490] FG: fg_gen4_get_batt_profile: verifty battery fail. recheck after, retry:1\n[    2.372493] FG: profile_load_work: profile for batt_id=99KOhms not found..using OTP, rc:-6\n[    2.372763] [ds28e16] set_sched_affinity_to_current: Setting cpu affinity to current cpu failed(-22) in set_sched_affinity_to_current.\n[    2.372765] [ds28e16] ds28el16_get_page_status_retry: read page status communication start... 0\n[    2.380059] Selected 'aw8697_reset_active'\n[    2.380146] i2c_geni a8c000.i2c: i2c error :-107\n[    2.380149] aw8697_i2c_read: i2c_read cnt=0 error=-107\n[    2.400057]  sdc: sdc1 sdc2\n[    2.400483]  sdd: sdd1 sdd2 sdd3 sdd4\n[    2.400924]  sdb: sdb1 sdb2\n[    2.401294]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6 sdf7 sdf8 sdf9 sdf10\n[    2.402046]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21 sda22 sda23 sda24 sda25 sda26 sda27 sda28 sda29 sda30 sda31 sda32 sda33 sda34 sda35\n[    2.405040]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51 sde52 sde53 sde54 sde55 sde56 sde57 sde58 sde59 sde60 sde61 sde62 sde63 sde64 sde65 sde66\n[    2.425030] [ds28e16] set_sched_affinity_to_all: Setting cpu affinity to all valid cpus failed(-22) in set_sched_affinity_to_all.\n[    2.425033] [ds28e16] set_sched_affinity_to_current: Setting cpu affinity to current cpu failed(-22) in set_sched_affinity_to_current.\n[    2.425035] [ds28e16] ds28el16_Read_RomID_retry: read rom id communication start 0...\n[    2.426155] [ds28e16] Read_RomID: RomID = 9f,11,ee,5c,13,f0,04,a6\n[    2.426160] [ds28e16] set_sched_affinity_to_all: Setting cpu affinity to all valid cpus failed(-22) in set_sched_affinity_to_all.\n[    2.435805] msm_lmh_dcvs 18591000.qcom,cpufreq-hw:qcom,limits-dcvs: Linked as a consumer to regulator.22\n[    2.436007] msm_lmh_dcvs 18591000.qcom,cpufreq-hw:qcom,limits-dcvs: Linked as a consumer to regulator.14\n[    2.437136] device-mapper: uevent: version 1.0.3\n[    2.437240] device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel@redhat.com\n[    2.446706] bt_power_populate_dt_pinfo: wl-reset-gpio not provided in devicetree\n[    2.446717] bt_dt_parse_vreg_info: qca,bt-vdd-core: is not provided in device tree\n[    2.446720] bt_dt_parse_vreg_info: qca,bt-vdd-io: is not provided in device tree\n[    2.446723] bt_dt_parse_vreg_info: qca,bt-vdd-xtal: is not provided in device tree\n[    2.446725] bt_dt_parse_vreg_info: qca,bt-vdd-pa: is not provided in device tree\n[    2.446728] bt_dt_parse_vreg_info: qca,bt-vdd-ldo: is not provided in device tree\n[    2.446730] bt_dt_parse_vreg_info: qca,bt-chip-pwd: is not provided in device tree\n[    2.446748] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    2.447179] EDAC DEVICE0: Giving out device to module soc:kryo-erp controller cache: DEV soc:kryo-erp (INTERRUPT)\n[    2.448043] hidraw: raw HID events driver (C) Jiri Kosina\n[    2.448300] usbcore: registered new interface driver usbhid\n[    2.448302] usbhid: USB HID core driver\n[    2.448424] ashmem: initialized\n[    2.448460] wlan_hdd_state wlan major(494) initialized\n[    2.448769] bimc-bwmon 90b6400.qcom,cpu-cpu-llcc-bwmon: BW HWmon governor registered.\n[    2.448811] bimc-bwmon 9091000.qcom,cpu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    2.449006] bimc-bwmon 60400.qcom,npu-npu-llcc-bwmon: BW HWmon governor registered.\n[    2.449049] bimc-bwmon 9093000.qcom,npu-llcc-ddr-bwmon: BW HWmon governor registered.\n[    2.449157] bimc-bwmon 70300.qcom,npudsp-npu-ddr-bwmon: BW HWmon governor registered.\n[    2.470056] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-cpu-l3-latmon: Memory Latency governor registered.\n[    2.470213] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-cpu-llcc-latmon: Memory Latency governor registered.\n[    2.470375] arm-memlat-mon soc:qcom,cpu0-cpugrp:qcom,cpu0-llcc-ddr-latmon: Memory Latency governor registered.\n[    2.470571] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-cpu-l3-latmon: Memory Latency governor registered.\n[    2.470725] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu7-cpu-l3-latmon: Memory Latency governor registered.\n[    2.470879] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-cpu-llcc-latmon: Memory Latency governor registered.\n[    2.471040] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-llcc-ddr-latmon: Memory Latency governor registered.\n[    2.471197] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-computemon: Compute governor registered.\n[    2.471345] arm-memlat-mon soc:qcom,cpu4-cpugrp:qcom,cpu4-qoslatmon: Memory Latency governor registered.\n[    2.471988] register_client_adhoc:find path.src 1 dest 627\n[    2.472283] register_client_adhoc:Client handle 39 soc:qcom,snoc_cnoc_keepalive\n[    2.472485] register_client_adhoc:find path.src 1 dest 770\n[    2.472554] register_client_adhoc:Client handle 40 soc:qcom,cpu-cpu-llcc-bw\n[    2.472860] register_client_adhoc:find path.src 129 dest 512\n[    2.472929] register_client_adhoc:Client handle 41 soc:qcom,cpu-llcc-ddr-bw\n[    2.473365] register_client_adhoc:find path.src 154 dest 770\n[    2.473482] register_client_adhoc:Client handle 42 soc:qcom,npu-npu-llcc-bw\n[    2.473664] register_client_adhoc:find path.src 770 dest 512\n[    2.473766] register_client_adhoc:Client handle 43 soc:qcom,npu-llcc-ddr-bw\n[    2.473925] register_client_adhoc:find path.src 154 dest 512\n[    2.474106] register_client_adhoc:Client handle 44 soc:qcom,npudsp-npu-ddr-bw\n[    2.474271] register_client_adhoc:find path.src 154 dest 512\n[    2.474456] register_client_adhoc:Client handle 45 soc:qcom,npu-npu-ddr-latfloor\n[    2.474561] register_client_adhoc:find path.src 1 dest 770\n[    2.474621] register_client_adhoc:Client handle 46 soc:qcom,cpu0-cpu-llcc-lat\n[    2.474754] register_client_adhoc:find path.src 1 dest 770\n[    2.474817] register_client_adhoc:Client handle 47 soc:qcom,cpu4-cpu-llcc-lat\n[    2.474960] register_client_adhoc:find path.src 129 dest 512\n[    2.475027] register_client_adhoc:Client handle 48 soc:qcom,cpu0-llcc-ddr-lat\n[    2.475177] register_client_adhoc:find path.src 129 dest 512\n[    2.475240] register_client_adhoc:Client handle 49 soc:qcom,cpu4-llcc-ddr-lat\n[    2.475388] register_client_adhoc:find path.src 129 dest 512\n[    2.475456] register_client_adhoc:Client handle 51 soc:qcom,cpu4-cpu-ddr-latfloor\n[    2.475784] register_client_adhoc:find path.src 26 dest 512\n[    2.475921] register_client_adhoc:Client handle 50 soc:qcom,gpubw\n[    2.477362] adc_probe : unable to create IPC Logging 0 for qcom,pm8150@0 ADC\n[    2.477365] adc_probe : unable to create IPC Logging 1 for qcom,pm8150@0 ADC\n[    2.477622] adc_probe : unable to create IPC Logging 0 for qcom,pm8150b@2 ADC\n[    2.477625] adc_probe : unable to create IPC Logging 1 for qcom,pm8150b@2 ADC\n[    2.477931] adc_probe : unable to create IPC Logging 0 for qcom,pm8150l@4 ADC\n[    2.477933] adc_probe : unable to create IPC Logging 1 for qcom,pm8150l@4 ADC\n[    2.478413] us_prox_probe: start\n[    2.478542] us_prox_probe: end\n[    2.479105] qcom-llcc-pmu 9095000.llcc-pmu: Registered llcc_pmu, type: 9\n[    2.479828] coresight-clk-disable-amba 6048000.tmc: Linked as a consumer to 15000000.apps-smmu\n[    2.480344] nq-nci 0-0028: nqx_probe: probing NFCC NQxxx exited successfully\n[    2.496437] iommu: Adding device 6048000.tmc to group 21\n[    2.497357] ext-mdm soc:qcom,mdm0: Failed to setup IPC logging\n[    2.511016] usbcore: registered new interface driver snd-usb-audio\n[    2.511153] uaudio-qmi soc:usb_audio_qmi_dev: Linked as a consumer to 15000000.apps-smmu\n[    2.511189] iommu: Adding device soc:usb_audio_qmi_dev to group 22\n[    2.550874] register_client_adhoc:find path.src 1 dest 590\n[    2.551084] register_client_adhoc:Client handle 52 disp_rsc_reg\n[    2.551105] register_client_adhoc:find path.src 20003 dest 20513\n[    2.551283] register_client_adhoc:find path.src 20004 dest 20513\n[    2.551439] register_client_adhoc:Client handle 53 disp_rsc_mnoc_llcc\n[    2.551460] register_client_adhoc:find path.src 20000 dest 20512\n[    2.551532] register_client_adhoc:Client handle 54 disp_rsc_ebi\n[    2.551579] sde_rsc af20000.qcom,sde_rscc: Linked as a consumer to regulator.72\n[    2.551680] [sde_rsc_hw:rsc_hw_init_v3:537]: sde rsc init successfully done\n[    2.551739] [sde_rsc:sde_rsc_probe:1594]: sde rsc index:0 probed successfully\n[    2.552178] dsi_phy ae94400.qcom,mdss_dsi_phy0: ae94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    2.552191] dsi_phy ae94400.qcom,mdss_dsi_phy0: Linked as a consumer to regulator.0\n[    2.552204] dsi_phy ae94400.qcom,mdss_dsi_phy0: Linked as a consumer to regulator.13\n[    2.552219] [drm:dsi_phy_driver_probe] [msm-dsi-info]: DSI_0: Probe successful\n[    2.552276] dsi_phy ae96400.qcom,mdss_dsi_phy1: ae96400.qcom,mdss_dsi_phy1 supply gdsc not found, using dummy regulator\n[    2.552284] dsi_phy ae96400.qcom,mdss_dsi_phy1: Linked as a consumer to regulator.0\n[    2.552293] dsi_phy ae96400.qcom,mdss_dsi_phy1: Linked as a consumer to regulator.13\n[    2.552299] [drm:dsi_phy_driver_probe] [msm-dsi-info]: DSI_1: Probe successful\n[    2.552902] drm_dsi_ctrl ae94000.qcom,mdss_dsi_ctrl0: Linked as a consumer to regulator.50\n[    2.552916] drm_dsi_ctrl ae94000.qcom,mdss_dsi_ctrl0: Linked as a consumer to regulator.18\n[    2.552922] AXI: get_pdata(): Error: Client name not found\n[    2.552924] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    2.552930] [drm:dsi_ctrl_dev_probe] [msm-dsi-info]: dsi-ctrl-0: Probe successful\n[    2.553026] drm_dsi_ctrl ae96000.qcom,mdss_dsi_ctrl1: Linked as a consumer to regulator.50\n[    2.553037] drm_dsi_ctrl ae96000.qcom,mdss_dsi_ctrl1: Linked as a consumer to regulator.18\n[    2.553039] AXI: get_pdata(): Error: Client name not found\n[    2.553041] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration\n[    2.553045] [drm:dsi_ctrl_dev_probe] [msm-dsi-info]: dsi-ctrl-1: Probe successful\n[    2.570115] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.570336] mi-dsi-panel:[dsi_panel_parse_mi_config:426] mi,panel-id not specified\n[    2.570339] mi-dsi-panel:[dsi_panel_parse_mi_config:434] mi feature enabled\n[    2.570345] mi-dsi-panel:[dsi_panel_parse_mi_config:451] mi,mdss-dsi-panel-fod-off-51-index not defined,but need\n[    2.570351] mi-dsi-panel:[dsi_panel_parse_mi_config:472] mi,mdss-dsi-panel-fod-off-b5-index not defined\n[    2.570355] mi-dsi-panel:[dsi_panel_parse_mi_config:480] fod dimlayer disabled.\n[    2.570365] mi-dsi-panel:[dsi_panel_parse_mi_config:641] panel disp_rate gpio not specified\n[    2.570369] mi-dsi-panel:[dsi_panel_parse_mi_config:650] panel on dimming delay 120 ms\n[    2.570373] mi-dsi-panel:[dsi_panel_parse_mi_config:663] default fod_off_dimming_delay 170\n[    2.570377] mi-dsi-panel:[dsi_panel_parse_mi_config:677] mi,mdss-dsi-panel-gamma-update-flag feature not defined\n[    2.570382] mi-dsi-panel:[dsi_panel_parse_mi_config:689] mi,mdss-dsi-greenish-update-gamma-flag feature not defined\n[    2.570386] mi-dsi-panel:[dsi_panel_parse_mi_config:703] mi,mdss-dsi-panel-dc-update-flag feature not defined\n[    2.570389] mi-dsi-panel:[dsi_panel_parse_mi_config:735] mi,mdss-dsi-panel-dc-update-flag feature not defined\n[    2.570393] mi-dsi-panel:[dsi_panel_parse_mi_config:755] mi,mdss-dsi-panel-gir-update-flag not defined\n[    2.570396] mi-dsi-panel:[dsi_panel_parse_mi_config:765] mi white point read not defined\n[    2.570401] mi-dsi-panel:[dsi_panel_parse_mi_config:777] mi,elvss_dimming_check_enable not defined\n[    2.570405] mi-dsi-panel:[dsi_panel_parse_mi_config:786] dc backlight threshold 440 \n[    2.570407] mi-dsi-panel:[dsi_panel_parse_mi_config:793] default dc backlight type is 1\n[    2.570410] mi-dsi-panel:[dsi_panel_parse_mi_config:803] hbm brightness 1 \n[    2.570413] mi-dsi-panel:[dsi_panel_parse_mi_config:812] max_brightness_clone is 8191 \n[    2.570419] mi-dsi-panel:[dsi_panel_parse_smart_fps_config:345] mi,mdss-panel-idle-fps not defined\n[    2.572524] msm_drm ae00000.qcom,mdss_mdp: Linked as a consumer to regulator.31\n[    2.572583] register_client_adhoc:find path.src 1 dest 590\n[    2.572788] register_client_adhoc:Client handle 55 mdss_reg\n[    2.572809] register_client_adhoc:find path.src 22 dest 512\n[    2.573026] register_client_adhoc:find path.src 23 dest 512\n[    2.573222] register_client_adhoc:Client handle 56 mdss_sde\n[    2.573415] [drm:sde_dbg_init:4764] evtlog_status: enable:11, panic:1, dump:2\n[    2.573429] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops 0xffffffa338c864e8)\n[    2.573457] msm-dsi-display soc:qcom,dsi-display-primary: Linked as a consumer to regulator.25\n[    2.573472] msm-dsi-display soc:qcom,dsi-display-primary: Linked as a consumer to regulator.47\n[    2.590062] [mi-lhbm] create disp_fod:0 kthread success\n[    2.590064] [mi-lhbm] lhbm attach primary_dsi_display success\n[    2.590070] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-primary (ops 0xffffffa338c876e8)\n[    2.590074] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-secondary (ops 0xffffffa338c876e8)\n[    2.590081] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops 0xffffffa338c86698)\n[    2.590099] [drm] mapped mdp address space @000000007cb18fbb\n[    2.590477] [drm:_sde_kms_hw_init_blocks:3650] sde hardware revision:0x60000000\n[    2.591811] msmdrm_smmu ae00000.qcom,mdss_mdp:qcom,smmu_sde_unsec_cb: Linked as a consumer to 15000000.apps-smmu\n[    2.591954] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_unsec_cb to group 23\n[    2.592730] [drm] probing device qcom,smmu_sde_unsec\n[    2.592733] [drm] Created domain mdp_ns, secure=0\n[    2.592923] msm_vidc_v4l2 aa00000.qcom,vidc:non_secure_cb: Linked as a consumer to 15000000.apps-smmu\n[    2.593614] msmdrm_smmu ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb: Linked as a consumer to 15000000.apps-smmu\n[    2.610086] iommu: Adding device aa00000.qcom,vidc:non_secure_cb to group 24\n[    2.610344] msm_vidc_v4l2 aa00000.qcom,vidc:secure_non_pixel_cb: Linked as a consumer to 15000000.apps-smmu\n[    2.610825] iommu: Adding device aa00000.qcom,vidc:secure_non_pixel_cb to group 25\n[    2.611083] msm_vidc_v4l2 aa00000.qcom,vidc:secure_bitstream_cb: Linked as a consumer to 15000000.apps-smmu\n[    2.630088] iommu: Adding device ae00000.qcom,mdss_mdp:qcom,smmu_sde_sec_cb to group 26\n[    2.630183] [drm] probing device qcom,smmu_sde_sec\n[    2.630186] [drm] Created domain mdp_s, secure=1\n[    2.632615] iommu: Adding device aa00000.qcom,vidc:secure_bitstream_cb to group 27\n[    2.632984] msm_vidc_v4l2 aa00000.qcom,vidc:secure_pixel_cb: Linked as a consumer to 15000000.apps-smmu\n[    2.633306] [drm:sde_connector_register_esd_irq:2839] register esd irq success\n[    2.635990] iommu: Adding device aa00000.qcom,vidc:secure_pixel_cb to group 28\n[    2.639445] [CSPL] Initializing misc device\n[    2.640706] apr_probe: Unable to create ipc log context\n[    2.642544] [TFA9874] tfa98xx_i2c_init(): TFA98XX driver version v6.5.2_xxxxxxxxxx\n[    2.642917] kona-pinctrl f000000.pinctrl: invalid function func2 in map table\n[    2.642930] kona-pinctrl f000000.pinctrl: invalid function func2 in map table\n[    2.642986] kona-pinctrl f000000.pinctrl: invalid function func2 in map table\n[    2.642995] kona-pinctrl f000000.pinctrl: invalid function func2 in map table\n[    2.650193] cs35l41 1-0040: cs35l41 i2c probe start\n[    2.650299] cs35l41 1-0040: 1-0040 supply VA not found, using dummy regulator\n[    2.650309] cs35l41 1-0040: Linked as a consumer to regulator.0\n[    2.650325] cs35l41 1-0040: 1-0040 supply VP not found, using dummy regulator\n[    2.650954] aw8697_haptic_f0_calibration f0_cali_lra=3\n[    2.653704] input: aw8697_haptic as /devices/platform/soc/a8c000.i2c/i2c-2/2-005a/input/input3\n[    2.653787] rb init\n[    2.654409] i2c_geni 884000.i2c: Bus frequency is set to 400000Hz\n[    2.654909] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    2.655234] [bq2597x] bq2597x_detect_device: detect device:22\n[    2.668229] [ds28e16] set_sched_affinity_to_current: Setting cpu affinity to current cpu failed(-22) in set_sched_affinity_to_current.\n[    2.683144] i2c_geni 888000.i2c: Bus frequency is set to 400000Hz\n[    2.696220] PMIC@SID0: PM8008 v1.0 options: 0, 0, 0, 0\n[    2.699804] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    2.699806] [drm] No driver support for vblank timestamp query.\n[    2.700083] [drm] Initialized msm_drm 1.3.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    2.700121] [drm] cont_splash enabled in 1 of 1 display(s)\n[    2.700287] [drm:dsi_ctrl_isr_configure] [msm-dsi-info]: dsi-ctrl-0: IRQ 464 registered\n[    2.700566] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    2.703402] qcom,pm8008-regulator 888000.i2c:qcom,pm8008@9:qcom,pm8008-regulator: Linked as a consumer to regulator.36\n[    2.703437] qcom,pm8008-regulator 888000.i2c:qcom,pm8008@9:qcom,pm8008-regulator: Linked as a consumer to regulator.79\n[    2.703674] pm8008_l1: Bringing 1200000uV into 1050000-1050000uV\n[    2.705921] synx: registered bind ops for cam_sync\n[    2.706079] pm8008_l2: Bringing 1200000uV into 1100000-1100000uV\n[    2.707367] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_ife: Linked as a consumer to 15000000.apps-smmu\n[    2.708195] qcom,pm8008-regulator 888000.i2c:qcom,pm8008@9:qcom,pm8008-regulator: Linked as a consumer to regulator.48\n[    2.708449] pm8008_l3: Bringing 2800000uV into 2700000-2700000uV\n[    2.711890] pm8008_l5: Bringing 1800000uV into 2800000-2800000uV\n[    2.713978] pm8008_l6: Bringing 2800000uV into 1800000-1800000uV\n[    2.716222] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_ife to group 29\n[    2.716713] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    2.717043] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_jpeg: Linked as a consumer to 15000000.apps-smmu\n[    2.724065] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_jpeg to group 30\n[    2.724335] platform soc:qcom,cam_smmu:msm_cam_icp_fw: assigned reserved memory node pil_camera_region\n[    2.724753] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_icp: Linked as a consumer to 15000000.apps-smmu\n[    2.726526] [ds28e16] set_sched_affinity_to_all: Setting cpu affinity to all valid cpus failed(-22) in set_sched_affinity_to_all.\n[    2.726541] [ds28e16] battery_verify: battery_verify batt_verified = 1 \n[    2.727919] [ds28e16] Read_RomID: RomID = 9f,11,ee,5c,13,f0,04,a6\n[    2.727924] [ds28e16] verify_get_property: get RomID = 9f,11,ee,5c,13,f0,04,a6\n[    2.740263] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_icp to group 31\n[    2.740403] CAM_INFO: CAM-SMMU: cam_smmu_get_memory_regions_info: 3753 [icp] : Discard region specified [0xdff00000 0xe0200000] in [0x10c00000 0xfef00000]\n[    2.740670] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm: Linked as a consumer to 15000000.apps-smmu\n[    2.747476] cs35l41 1-0040: Cirrus Logic CS35L41 (35a40), Revision: B2\n[    2.747598] cs35l41 1-0041: cs35l41 i2c probe start\n[    2.747662] cs35l41 1-0041: 1-0041 supply VA not found, using dummy regulator\n[    2.747671] cs35l41 1-0041: Linked as a consumer to regulator.0\n[    2.747688] cs35l41 1-0041: 1-0041 supply VP not found, using dummy regulator\n[    2.747711] cs35l41 1-0041: Reset line busy, assuming shared reset\n[    2.749882] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm to group 32\n[    2.750440] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_fd: Linked as a consumer to 15000000.apps-smmu\n[    2.770086] iommu: Adding device soc:qcom,cam_smmu:msm_cam_smmu_fd to group 33\n[    2.770861] cam-cpas ac40000.qcom,cam-cpas: Linked as a consumer to regulator.71\n[    2.773098] register_client_adhoc:find path.src 1 dest 589\n[    2.773350] register_client_adhoc:Client handle 57 cam_ahb\n[    2.773434] register_client_adhoc:find path.src 170 dest 512\n[    2.773654] register_client_adhoc:Client handle 58 cam_hf_0_mnoc\n[    2.773727] register_client_adhoc:find path.src 137 dest 512\n[    2.773948] register_client_adhoc:Client handle 59 cam_sf_0_mnoc\n[    2.774020] register_client_adhoc:find path.src 171 dest 512\n[    2.774248] register_client_adhoc:Client handle 60 cam_sf_icp_mnoc\n[    2.791354] msm_cam_cdm ac4d000.qcom,cpas-cdm0: Linked as a consumer to regulator.71\n[    2.792715] csid_17x acb5200.qcom,csid0: Linked as a consumer to regulator.71\n[    2.792732] csid_17x acb5200.qcom,csid0: Linked as a consumer to regulator.67\n[    2.792870] csid_17x acc4200.qcom,csid1: Linked as a consumer to regulator.71\n[    2.792887] csid_17x acc4200.qcom,csid1: Linked as a consumer to regulator.68\n[    2.793509] csid_lite acd9200.qcom,csid-lite0: Linked as a consumer to regulator.71\n[    2.793633] csid_lite acdb400.qcom,csid-lite1: Linked as a consumer to regulator.71\n[    2.794273] cam_vfe acb4000.qcom,ife0: Linked as a consumer to regulator.71\n[    2.794288] cam_vfe acb4000.qcom,ife0: Linked as a consumer to regulator.67\n[    2.795310] CAM_INFO: CAM-ISP: cam_vfe_bus_ver3_init_hw: 3685 Overriding clock gating at bus input\n[    2.795315] CAM_INFO: CAM-ISP: cam_vfe_top_ver3_init_hw: 249 Disable clock gating at IFE top\n[    2.795910] cam_vfe acc3000.qcom,ife1: Linked as a consumer to regulator.71\n[    2.795927] cam_vfe acc3000.qcom,ife1: Linked as a consumer to regulator.68\n[    2.796885] CAM_INFO: CAM-ISP: cam_vfe_bus_ver3_init_hw: 3685 Overriding clock gating at bus input\n[    2.796889] CAM_INFO: CAM-ISP: cam_vfe_top_ver3_init_hw: 249 Disable clock gating at IFE top\n[    2.797433] CAM_INFO: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 571 No clk data for ife_dsp_clk\n[    2.797435] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 154 Option clk get failed with rc -22\n[    2.797456] cam_vfe acd9000.qcom,ife-lite0: Linked as a consumer to regulator.71\n[    2.798194] CAM_INFO: CAM-ISP: cam_vfe_bus_ver3_init_hw: 3685 Overriding clock gating at bus input\n[    2.798198] CAM_INFO: CAM-ISP: cam_vfe_top_ver3_init_hw: 249 Disable clock gating at IFE top\n[    2.798673] CAM_INFO: CAM-UTIL: cam_soc_util_get_option_clk_by_name: 571 No clk data for ife_dsp_clk\n[    2.798676] CAM_WARN: CAM-ISP: cam_vfe_init_soc_resources: 154 Option clk get failed with rc -22\n[    2.798697] cam_vfe acdb200.qcom,ife-lite1: Linked as a consumer to regulator.71\n[    2.799390] CAM_INFO: CAM-ISP: cam_vfe_bus_ver3_init_hw: 3685 Overriding clock gating at bus input\n[    2.799394] CAM_INFO: CAM-ISP: cam_vfe_top_ver3_init_hw: 249 Disable clock gating at IFE top\n[    2.800880] CAM_INFO: CAM-ISP: cam_isp_dev_probe: 167 Camera ISP probe complete\n[    2.801850] cam-cci-driver ac4f000.qcom,cci: Linked as a consumer to regulator.71\n[    2.802646] CAM_INFO: CAM: cam_res_mgr_probe: 685 Enable shared gpio support.\n[    2.817219] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 454 Device Type :0\n[    2.817475] cam-cci-driver ac50000.qcom,cci: Linked as a consumer to regulator.71\n[    2.831692] CAM_INFO: CAM-CCI: cam_cci_platform_probe: 454 Device Type :1\n[    2.832059] cam-csiphy-driver ac6a000.qcom,csiphy: Linked as a consumer to regulator.71\n[    2.832075] cam-csiphy-driver ac6a000.qcom,csiphy: Linked as a consumer to regulator.50\n[    2.832180] cam-csiphy-driver ac6c000.qcom,csiphy: Linked as a consumer to regulator.71\n[    2.832193] cam-csiphy-driver ac6c000.qcom,csiphy: Linked as a consumer to regulator.50\n[    2.832289] cam-csiphy-driver ac6e000.qcom,csiphy: Linked as a consumer to regulator.71\n[    2.832303] cam-csiphy-driver ac6e000.qcom,csiphy: Linked as a consumer to regulator.50\n[    2.832395] cam-csiphy-driver ac70000.qcom,csiphy: Linked as a consumer to regulator.71\n[    2.832408] cam-csiphy-driver ac70000.qcom,csiphy: Linked as a consumer to regulator.50\n[    2.832502] cam-csiphy-driver ac72000.qcom,csiphy: Linked as a consumer to regulator.71\n[    2.832515] cam-csiphy-driver ac72000.qcom,csiphy: Linked as a consumer to regulator.50\n[    2.832605] cam-csiphy-driver ac74000.qcom,csiphy: Linked as a consumer to regulator.71\n[    2.832618] cam-csiphy-driver ac74000.qcom,csiphy: Linked as a consumer to regulator.50\n[    2.833161] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 60 No GPIO found\n[    2.833193] CAM_INFO: CAM-ACTUATOR: cam_actuator_parse_dt: 60 No GPIO found\n[    2.834546] CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 219 No GPIO found\n[    2.834576] CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 219 No GPIO found\n[    2.834607] CAM_INFO: CAM-EEPROM: cam_eeprom_get_dt_data: 219 No GPIO found\n[    2.835528] CAM_WARN: CAM-ICP: cam_a5_get_dt_properties: 46 QoS need not be set\n[    2.835561] cam-a5 ac00000.qcom,a5: Linked as a consumer to regulator.71\n[    2.835971] cam-ipe ac9a000.qcom,ipe0: Linked as a consumer to regulator.69\n[    2.836356] cam-bps ac7a000.qcom,bps: Linked as a consumer to regulator.66\n[    2.838959] cam-jpeg-enc ac53000.qcom,jpegenc: Linked as a consumer to regulator.71\n[    2.839339] cam-jpeg-dma ac57000.qcom,jpegdma: Linked as a consumer to regulator.71\n[    2.840243] CAM_INFO: CAM-JPEG: cam_jpeg_dev_probe: 164 Camera JPEG probe complete\n[    2.840757] cam_fd_hw ac5f000.qcom,fd: Linked as a consumer to regulator.71\n[    2.846220] rmnet_perf_init(): initializing rmnet_perf\n[    2.846225] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = lo\n[    2.846227] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = bond0\n[    2.846229] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = dummy0\n[    2.846233] rmnet_shs_module_init(): Starting rmnet SHS module\n[    2.846297] GACT probability NOT on\n[    2.846304] Mirror/redirect action on\n[    2.846353] u32 classifier\n[    2.846354]     Actions configured\n[    2.846912] xt_time: kernel timezone is -0000\n[    2.847007] gre: GRE over IPv4 demultiplexor driver\n[    2.847009] IPv4 over IPsec tunneling driver\n[    2.847168] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip_vti0\n[    2.847254] cs35l41 1-0041: Cirrus Logic CS35L41 (35a40), Revision: B2\n[    2.847476] Initializing XFRM netlink socket\n[    2.847486] IPsec XFRM device driver\n[    2.847713] NET: Registered protocol family 10\n[    2.851186] [ds28e16] Read_RomID: RomID = 9f,11,ee,5c,13,f0,04,a6\n[    2.852309] [ds28e16] Read_RomID: RomID = 9f,11,ee,5c,13,f0,04,a6\n[    2.852314] [ds28e16] verify_get_property: get chip_ok read RomID = 9f,11,ee,5c,13,f0,04,a6\n[    2.852321] [ds28e16] set_sched_affinity_to_current: Setting cpu affinity to current cpu failed(-22) in set_sched_affinity_to_current.\n[    2.860300] Segment Routing with IPv6\n[    2.860364] mip6: Mobile IPv6\n[    2.860608] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6_vti0\n[    2.860702] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    2.860819] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = sit0\n[    2.861022] rmnet_perf_config_notify_cb(): rmnet_perf netdevice register, name = ip6tnl0\n[    2.861113] fullmesh registered\n[    2.861115] roundrobin registered\n[    2.861117] redundant registered\n[    2.861119] NET: Registered protocol family 17\n[    2.861127] NET: Registered protocol family 15\n[    2.861163] l2tp_core: L2TP core driver, V2.0\n[    2.861164] l2tp_ip: L2TP IP encapsulation support (L2TPv3)\n[    2.861173] l2tp_netlink: L2TP netlink interface\n[    2.861187] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)\n[    2.861189] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)\n[    2.861215] sctp: Hash tables configured (bind 256/256)\n[    2.861357] #### sla_static_collector_init in version V 3.0 \n[    3.263232] [ds28e16] set_sched_affinity_to_all: Setting cpu affinity to all valid cpus failed(-22) in set_sched_affinity_to_all.\n[    3.264381] [ds28e16] Read_RomID: RomID = 9f,11,ee,5c,13,f0,04,a6\n[    3.264384] [ds28e16] verify_get_property: get RomID = 9f,11,ee,5c,13,f0,04,a6\n[    3.317705] [ds28e16] Read_RomID: RomID = 9f,11,ee,5c,13,f0,04,a6\n[    3.317709] [ds28e16] verify_get_property: get chip_ok read RomID = 9f,11,ee,5c,13,f0,04,a6\n[    3.328069] NPU_WARN: npu_bridge_mbox_work: 1216 NPU fw is not loaded\n[    3.328200] minidump-id not found for npu\n[    3.328239] subsys-pil-tz 9800000.qcom,npu: for npu segments only will be dumped.\n[    3.328291] subsys-pil-tz 9800000.qcom,npu: for md_npu segments only will be dumped.\n[    3.328705] msm-dwc3 a600000.ssusb: Linked as a consumer to regulator.56\n[    3.329205] platform 3d6a000.qcom,gmu: Linked as a consumer to regulator.62\n[    3.329224] platform 3d6a000.qcom,gmu: Linked as a consumer to regulator.63\n[    3.329749] platform 3d6a000.qcom,gmu:gmu_user: Linked as a consumer to 3da0000.kgsl-smmu\n[    3.329811] iommu: Adding device 3d6a000.qcom,gmu:gmu_user to group 34\n[    3.330445] platform 3d6a000.qcom,gmu:gmu_kernel: Linked as a consumer to 3da0000.kgsl-smmu\n[    3.330478] iommu: Adding device 3d6a000.qcom,gmu:gmu_kernel to group 35\n[    3.331155] register_client_adhoc:find path.src 26 dest 512\n[    3.331352] register_client_adhoc:Client handle 61 grp3d\n[    3.331368] register_client_adhoc:find path.src 26 dest 10036\n[    3.331520] register_client_adhoc:Client handle 62 cnoc\n[    3.331524] query_client_usecase_all: query_start\n[    3.331571] query_client_usecase_all: query_start\n[    3.331710] kgsl-3d 3d00000.qcom,kgsl-3d0: Linked as a consumer to regulator.62\n[    3.331726] kgsl-3d 3d00000.qcom,kgsl-3d0: Linked as a consumer to regulator.63\n[    3.332357] platform 3da0000.qcom,kgsl-iommu:gfx3d_user: Linked as a consumer to 3da0000.kgsl-smmu\n[    3.332394] iommu: Adding device 3da0000.qcom,kgsl-iommu:gfx3d_user to group 36\n[    3.332704] platform 3da0000.qcom,kgsl-iommu:gfx3d_secure: Linked as a consumer to 3da0000.kgsl-smmu\n[    3.332738] iommu: Adding device 3da0000.qcom,kgsl-iommu:gfx3d_secure to group 37\n[    3.354426] dwc3 a600000.dwc3: Failed to get clk 'ref': -2\n[    3.354516] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    3.354764] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    3.354767] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    3.357782] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    3.357792] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    3.357794] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    3.357797] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    3.357799] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    3.357802] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    3.357804] sps:BAM 0x000000000a704000 is registered.\n[    3.357959] register_client_adhoc:find path.src 61 dest 512\n[    3.358267] register_client_adhoc:find path.src 61 dest 676\n[    3.358617] register_client_adhoc:find path.src 1 dest 583\n[    3.358829] register_client_adhoc:Client handle 63 usb0\n[    3.358920] the deleted wakeup source is a600000.ssusb\n[    3.359418] ipa_rm ipa_rm_delete_resource:139 IPA RM was not initialized\n[    3.359421] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    3.359425] ipa_rm ipa_rm_delete_resource:139 IPA RM was not initialized\n[    3.359426] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    3.359682] msm-dwc3 a600000.ssusb: Dropping the link to regulator.56\n[    3.359871] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: Linked as a consumer to regulator.10\n[    3.360158] FG: battery_authentic_work: FG: authentic prop is 1\n[    3.361283] [ds28e16] Read_RomID: RomID = 9f,11,ee,5c,13,f0,04,a6\n[    3.361287] [ds28e16] verify_get_property: get RomID = 9f,11,ee,5c,13,f0,04,a6\n[    3.361292] FG: ds_romid_work: FG: romid prop is 9f 11 ee 5c 13 f0 04 a6\n[    3.361908] the deleted wakeup source is usbpd0\n[    3.361927] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: usbpd_create failed: -517\n[    3.361999] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: Dropping the link to regulator.10\n[    3.362296] six-pin-step-chg-cfg: 4250000uV, 6000000uA\n[    3.362298] six-pin-step-chg-cfg: 4450000uV, 5400000uA\n[    3.362300] six-pin-step-chg-cfg: 4460000uV, 3536000uA\n[    3.362736] QCOM-BATT: qcom_batt_create_debugfs: Couldn't create battery debugfs rc=-19\n[    3.362773] PL_DISABLE: current vote is now 1 voted by CHG_STATE_VOTER,0, previous voted 0\n[    3.363250] USB_ICL: current vote is now -22 voted by (null),-22, previous voted -22\n[    3.363253] DC_SUSPEND: current vote is now 0 voted by DEFAULT_VOTER,0, previous voted 0\n[    3.363266] FCC: current vote is now 6000000 voted by HW_LIMIT_VOTER,0, previous voted -22\n[    3.363270] FV: current vote is now 4460000 voted by HW_LIMIT_VOTER,0, previous voted -22\n[    3.363275] FCC: current vote is now 2000000 voted by BATT_VERIFY_VOTER,2, previous voted 6000000\n[    3.363278] FV: current vote is now 4450000 voted by NON_FFC_VFLOAT_VOTER,2, previous voted 4460000\n[    3.363341] CHG_DISABLE: current vote is now 0 voted by DEFAULT_VOTER,0, previous voted 0\n[    3.364582] qcom,qpnp-smb5 c440000.qcom,spmi:qcom,pm8150b@2:qcom,qpnp-smb5: Linked as a consumer to regulator.78\n[    3.364590] AWAKE: current vote is now 0 voted by CHG_AWAKE_VOTER,0, previous voted 0\n[    3.364593] TEMP_CHANGE_IRQ_DISABLE: current vote is now 1 voted by DEFAULT_VOTER,0, previous voted 0\n[    3.364610] USB_ICL: current vote is now 100000 voted by SW_ICL_MAX_VOTER,3, previous voted -22\n[    3.367104] PL_ENABLE_INDIRECT: current vote is now 0 voted by USBIN_I_VOTER,0, previous voted 0\n[    3.367205] USB_ICL_IRQ_DISABLE: current vote is now 0 voted by USB_SUSPEND_VOTER,0, previous voted 0\n[    3.367222] FCC_MAIN: current vote is now 2000000 voted by MAIN_FCC_VOTER,0, previous voted -22\n[    3.370190] [ds28e16] set_sched_affinity_to_current: Setting cpu affinity to current cpu failed(-22) in set_sched_affinity_to_current.\n[    3.620303] USB_LIMITED_IRQ_DISABLE: current vote is now 1 voted by CHARGER_TYPE_VOTER,0, previous voted 0\n[    3.620307] USB_HDC_IRQ_DISABLE: current vote is now 1 voted by CHARGER_TYPE_VOTER,0, previous voted 0\n[    3.620644] SMB5 status - usb:present=0 type=0 batt:present = 1 health = 1 charge = 1\n[    3.620646] QPNP SMB5 probed successfully\n[    3.742094] msm-dwc3 a600000.ssusb: Linked as a consumer to regulator.56\n[    3.781104] [ds28e16] set_sched_affinity_to_all: Setting cpu affinity to all valid cpus failed(-22) in set_sched_affinity_to_all.\n[    3.781400] dwc3 a600000.dwc3: Failed to get clk 'ref': -2\n[    3.781460] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    3.781697] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    3.781700] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    3.785292] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    3.785300] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    3.785301] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    3.785304] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    3.785306] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    3.785308] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    3.785310] sps:BAM 0x000000000a704000 is registered.\n[    3.785450] register_client_adhoc:find path.src 61 dest 512\n[    3.785722] register_client_adhoc:find path.src 61 dest 676\n[    3.786050] register_client_adhoc:find path.src 1 dest 583\n[    3.786249] register_client_adhoc:Client handle 63 usb0\n[    3.786475] the deleted wakeup source is a600000.ssusb\n[    3.787034] ipa_rm ipa_rm_delete_resource:139 IPA RM was not initialized\n[    3.787037] usb_bam_ipa_delete_resources: Failed to delete USB_PROD resource\n[    3.787040] ipa_rm ipa_rm_delete_resource:139 IPA RM was not initialized\n[    3.787041] usb_bam_ipa_delete_resources: Failed to delete USB_CONS resource\n[    3.787354] msm-dwc3 a600000.ssusb: Dropping the link to regulator.56\n[    3.787520] qpnp-pdphy c440000.qcom,spmi:qcom,pm8150b@2:qcom,usb-pdphy@1700: Linked as a consumer to regulator.10\n[    3.788496] batt power supply prop 210 not supported\n[    3.788539] usbpd usbpd0: pd-power-max:33\n[    3.789119] msm-dwc3 a600000.ssusb: Linked as a consumer to regulator.56\n[    3.789573] dwc3 a600000.dwc3: Failed to get clk 'ref': -2\n[    3.789625] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    3.789855] dwc3 a600000.dwc3: Error getting ipc_log_ctxt\n[    3.789858] dwc3 a600000.dwc3: Error getting ipc_log_ctxt for ep_events\n[    3.790159] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    3.790166] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x000000000a704000\n[    3.790168] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x000000000a704000\n[    3.790171] sps_register_bam_device : unable to create IPC Logging 2 for bam 0x000000000a704000\n[    3.790173] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x000000000a704000\n[    3.790175] sps_register_bam_device : unable to create IPC Logging 4 for bam 0x000000000a704000\n[    3.790177] sps:BAM 0x000000000a704000 is registered.\n[    3.790306] register_client_adhoc:find path.src 61 dest 512\n[    3.790569] register_client_adhoc:find path.src 61 dest 676\n[    3.790894] register_client_adhoc:find path.src 1 dest 583\n[    3.791093] register_client_adhoc:Client handle 63 usb0\n[    3.791163] the deleted wakeup source is a600000.ssusb\n[    3.791198] msm-dwc3 a600000.ssusb: Linked as a consumer to regulator.78\n[    3.792222] core_ctl: Creating CPU group 0\n[    3.792224] core_ctl: Init CPU0 state\n[    3.792226] core_ctl: Init CPU1 state\n[    3.792227] core_ctl: Init CPU2 state\n[    3.792228] core_ctl: Init CPU3 state\n[    3.792344] core_ctl: Creating CPU group 4\n[    3.792346] core_ctl: Init CPU4 state\n[    3.792347] core_ctl: Init CPU5 state\n[    3.792348] core_ctl: Init CPU6 state\n[    3.792416] core_ctl: Creating CPU group 7\n[    3.792417] core_ctl: Init CPU7 state\n[    3.792672] registered taskstats version 1\n[    3.792674] Loading compiled-in X.509 certificates\n[    3.792757] Key type ._fscrypt registered\n[    3.792759] Key type .fscrypt registered\n[    3.792761] Key type fscrypt-provisioning registered\n[    3.793085] spss_utils [spss_parse_dt]: iar_buf_addr [0x8e0f0000].\n[    3.793176] spss_utils [spss_probe]: Initialization completed ok, firmware_name [spss2p].\n[    3.795176] lrng_drng_mgr: Initial DRNG initialized triggering first seeding\n[    3.795195] Error: swapper/0: fastrpc_device_init: failed to create debugfs root dir\n[    3.795707] fastrpc soc:qcom,msm-adsprpc-mem: for adsp_rh segments only will be dumped.\n[    3.795781] adsprpc: init_secure_vmid_list: secure VMID = 22\n[    3.795783] adsprpc: init_secure_vmid_list: secure VMID = 37\n[    3.795798] adsprpc: fastrpc_probe: service location enabled for avs/audio (audio_pdr_adsprpc)\n[    3.795802] adsprpc: fastrpc_probe: service location enabled for tms/servreg (sensors_pdr_adsprpc)\n[    3.796052] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1: Linked as a consumer to 15000000.apps-smmu\n[    3.796215] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1 to group 38\n[    3.796578] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2: Linked as a consumer to 15000000.apps-smmu\n[    3.796712] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2 to group 39\n[    3.797068] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3: Linked as a consumer to 15000000.apps-smmu\n[    3.797201] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3 to group 40\n[    3.797554] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4: Linked as a consumer to 15000000.apps-smmu\n[    3.797691] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4 to group 41\n[    3.798047] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5: Linked as a consumer to 15000000.apps-smmu\n[    3.798190] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5 to group 42\n[    3.798551] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6: Linked as a consumer to 15000000.apps-smmu\n[    3.798696] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6 to group 43\n[    3.799059] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7: Linked as a consumer to 15000000.apps-smmu\n[    3.799188] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7 to group 44\n[    3.799557] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8: Linked as a consumer to 15000000.apps-smmu\n[    3.799691] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8 to group 45\n[    3.800153] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9: Linked as a consumer to 15000000.apps-smmu\n[    3.800599] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9 to group 46\n[    3.800974] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10: Linked as a consumer to 15000000.apps-smmu\n[    3.801111] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10 to group 47\n[    3.801471] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11: Linked as a consumer to 15000000.apps-smmu\n[    3.801606] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11 to group 48\n[    3.801963] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12: Linked as a consumer to 15000000.apps-smmu\n[    3.802094] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12 to group 49\n[    3.802454] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13: Linked as a consumer to 15000000.apps-smmu\n[    3.802609] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13 to group 50\n[    3.802971] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14: Linked as a consumer to 15000000.apps-smmu\n[    3.803104] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14 to group 51\n[    3.803466] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb15: Linked as a consumer to 15000000.apps-smmu\n[    3.803603] iommu: Adding device soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb15 to group 52\n[    3.804398] adsprpc: fastrpc_device_init: SSR notifier registered for adsp\n[    3.804404] adsprpc: fastrpc_device_init: SSR notifier registered for modem\n[    3.804407] adsprpc: fastrpc_device_init: SSR notifier registered for slpi\n[    3.804409] adsprpc: fastrpc_device_init: SSR notifier registered for cdsp\n[    3.808808] mtdoops: mtdoops_inc_counter nextpage: 4,oops_pages:8\n[    3.808812] mtdoops: ready 4, 997 (no erase)\n[    3.808813] mtdoops: Attached to MTD device 0\n[    3.809118] block2mtd: mtd0: [/dev/block/sda15] erase_size = 2048KiB [2097152]\n[    3.809210] ngd_msm_ctrl 3ac0000.slim: Linked as a consumer to 15000000.apps-smmu\n[    3.809370] iommu: Adding device 3ac0000.slim to group 53\n[    3.809502] ngd_msm_ctrl 3ac0000.slim: error creating ipc_logging context\n[    3.809505] ngd_msm_ctrl 3ac0000.slim: error creating ipc_error_logging context\n[    3.811479] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input4\n[    3.811910] [USBPD-PM]: usbpd_pm_probe: usbpd_pm_probe enter\n[    3.811914] [USBPD-PM]: pd_policy_parse_dt: pm_config.bat_volt_lp_lmt:4460\n[    3.811917] [USBPD-PM]: pd_policy_parse_dt: pm_config.bat_curr_lp_lmt:6000\n[    3.811920] [USBPD-PM]: pd_policy_parse_dt: pm_config.bus_volt_lp_lmt:12000\n[    3.811923] [USBPD-PM]: pd_policy_parse_dt: pm_config.bus_curr_lp_lmt:3000\n[    3.811925] [USBPD-PM]: pd_policy_parse_dt: pdpm->step_charge_high_vol_curr_max:0\n[    3.811927] [USBPD-PM]: pd_policy_parse_dt: pdpm->cell_vol_high_threshold_mv:0\n[    3.811930] [USBPD-PM]: pd_policy_parse_dt: pdpm->cell_vol_max_threshold_mv:0\n[    3.811932] [USBPD-PM]: pd_policy_parse_dt: pdpm->non_ffc_bat_volt_max:4450\n[    3.811936] [USBPD-PM]: pd_policy_parse_dt: therm-level-threshold:12\n[    3.811940] [USBPD-PM]: pd_policy_parse_dt: pd-battery-warm-th:480\n[    3.811945] [USBPD-PM]: pd_policy_parse_dt: pd-power-max:33\n[    3.811953] [USBPD-PM]: usbpd_check_cp_sec_psy: cp_sec_psy not found\n[    3.812274] [FC2-PM]: cp_qc30_probe: cp_qc30_probe enter\n[    3.812282] [FC2-PM]: cp_qc30_probe: battery_warm_th = 480\n[    3.812285] [FC2-PM]: cp_qc30_probe: charge pump qc3 probe\n[    3.813044] lpm_levels: Cluster (L3) stats not registered\n[    3.816377] rmnet_ipa3 started initialization\n[    3.816961] RNDIS_IPA module is loaded.\n[    3.817510] msm notifier probed successfully\n[    3.818716] CAM_ERR: CAM-CCI: cam_cci_assign_fops: 528 Invalid dev node:00000000e6f32495 offset: 0\n[    3.818748] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    3.819893] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    3.820344] cam_cc_sleep_clk_src: CXO configuration failed\n[    3.821206] msm_bus_late_init: Remove handoff bw requests\n[    3.821771] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests\n[    3.822222] ALSA device list:\n[    3.822225]   No soundcards found.\n[    3.822259] Warning: unable to open an initial console.\n[    3.823649] Freeing unused kernel memory: 6144K\n[    3.823746] Run /init as init process\n[    3.850867] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode\n[    3.851438] msm-dwc3 a600000.ssusb: DWC3 in low power mode\n[    3.912258] FG: ds_status_work: FG: ds_status prop is 02 00 08 03 02 00 00 01\n[    4.400103] FG: ds_page0_work: FG: ds_page0 prop is 55 42 4d 34 59 31 31 46 02 96 73 41 4d 44 31 32\n[    4.728405] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    4.728560] cpu1 \n[    4.728613] cpu4 \n[    4.728664] cpu7 \n[    4.728707] \n               Offline CPUs: \n[    4.731288] cpu1 \n[    4.733087] CPU1: shutdown\n[    4.733112] psci: CPU1 killed (polled 0 ms)\n[    4.733698] cpu2 \n[    4.735345] CPU2: shutdown\n[    4.735456] psci: CPU2 killed (polled 0 ms)\n[    4.735773] cpu3 \n[    4.738075] CPU3: shutdown\n[    4.738154] psci: CPU3 killed (polled 0 ms)\n[    4.738569] cpu4 \n[    4.741344] CPU4: shutdown\n[    4.741371] psci: CPU4 killed (polled 0 ms)\n[    4.741809] cpu5 \n[    4.742371] CPU5: shutdown\n[    4.742397] psci: CPU5 killed (polled 0 ms)\n[    4.742850] cpu6 \n[    4.743823] CPU6: shutdown\n[    4.743851] psci: CPU6 killed (polled 0 ms)\n[    4.744316] cpu7 \n[    4.753202] CPU7: shutdown\n[    4.753233] psci: CPU7 killed (polled 0 ms)\n\n[    5.360426] of_batterydata_get_best_profile: K11A_FMT_4520mah found\n[    5.360480] QCOM-STEPCHG: read_range_data_from_node: Count qcom,step-chg-ranges failed, rc=-22\n[    5.360510] QCOM-STEPCHG: read_range_data_from_node: Count qcom,cold-step-chg-ranges failed, rc=-22\n[    7.366282] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 332 FCC = 6000000uA FV = 4460000uV BATT_TEMP = 332 max voltage= 4460000uv battery warm = 480 battery cool = 150\n[    7.442466] FG: fg_gen4_get_batt_profile: cmdline of batt profile is not defined, read page0 to reload file\n[    7.442490] of_batterydata_get_best_profile: K11A_FMT_4520mah found\n[    7.446675] batt_verified =1\n[    7.447928] [ds28e16] Read_RomID: RomID = 9f,11,ee,5c,13,f0,04,a6\n[    7.447947] [ds28e16] verify_get_property: get RomID = 9f,11,ee,5c,13,f0,04,a6\n[    7.501711] [ds28e16] Read_RomID: RomID = 9f,11,ee,5c,13,f0,04,a6\n[    7.501730] [ds28e16] verify_get_property: get chip_ok read RomID = 9f,11,ee,5c,13,f0,04,a6\n[    7.505504] FCC: current vote is now 6000000 voted by HW_LIMIT_VOTER,0, previous voted 2000000\n[    7.505577] FCC_MAIN: current vote is now 6000000 voted by MAIN_FCC_VOTER,0, previous voted 2000000\n[    7.680730] aw8697_haptic 2-005a: Falling back to syfs fallback for: aw8697_haptic.bin\n[    9.761315] Sampling power every 1000 ms\n               Baseline power usage: \n[   33.761216] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 03 78 04 02 03 07 a0 fd 30 00 a3 02 0b 0a 00 00 55 \n[   33.761536] smb:01:1200 00 ff ff fe 00 3d 3d 00 00 00 00 00 00 00 00 01 06 00 01 00 \n[   33.762358] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 00 00 40 00 00 a3 00 00 00 00 07 00 18 38 11 b0 03 00 00 7f 00 00 00 00 00 00 02 54 00 00 00 00 \n[   33.763447] smb:01:1500 00 00 00 01 c2 02 00 04 ff 00 00 ff ff 4a 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[   33.764262] smb:01:1600 03 03 00 00 0f 02 01 04 00 00 00 5b 5b 00 00 00 00 00 42 00 f3 00 00 00 00 00 00 00 00 00 00 00 00 0c 01 00 80 00 00 00 00 00 00 20 b8 4c cc 18 02 00 03 32 05 \n[   34.400694] ufs_card_gdsc: disabling\n[   34.400759] display_panel_vci: disabling\n[   34.400776] disp_vddio_vreg: disabling\n[   34.405028] pm8008-chip-en: disabling\n[   34.407893] vdd_hap_boost: disabling\n[   69.600575] aw8697_ram_loaded: failed to read aw8697_haptic.bin\n[   84.892099] Detected VIPT I-cache on CPU1\n[   84.892202] arch_timer: CPU1: Trapping CNTVCT access\n[   84.892227] CPU1: Booted secondary processor 0x0000000100 [0x51df805e]\n[   85.902159] 937 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 403 518 614 691 787 883 979 1075 1171 1248 1344 1420 1516 1612 1708 1804\n               \n                300: \n[  100.413477] msm_watchdog 17c10000.qcom,wdt: log_buf symbol not found\n[  107.363594] FG_DELTA_ESR_IRQ: current vote is now 0 voted by fg_delta_esr_irq,0, previous voted 1\n[  222.251624] FG_DELTA_ESR_IRQ: current vote is now 1 voted by fg_delta_esr_irq,0, previous voted 0\n[  222.259997] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 315 FCC = 6000000uA FV = 4460000uV BATT_TEMP = 315 max voltage= 4460000uv battery warm = 480 battery cool = 150\n[  327.254906] FG_DELTA_ESR_IRQ: current vote is now 0 voted by fg_delta_esr_irq,0, previous voted 1\n[  363.915983]  1114     3.7 C/MHz     35 mW    9.5 J   31.6 I/mJ   269.3 s\n                403: \n[  447.845418] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 307 FCC = 6000000uA FV = 4460000uV BATT_TEMP = 307 max voltage= 4460000uv battery warm = 480 battery cool = 150\n[  505.529950] FG_DELTA_ESR_IRQ: current vote is now 1 voted by fg_delta_esr_irq,0, previous voted 0\n[  505.537510] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 307 FCC = 6000000uA FV = 4460000uV BATT_TEMP = 307 max voltage= 4460000uv battery warm = 480 battery cool = 150\n[  572.552774]  1497     3.7 C/MHz     32 mW    6.3 J   47.5 I/mJ   200.4 s\n                518: \n[  610.532703] FG_DELTA_ESR_IRQ: current vote is now 0 voted by fg_delta_esr_irq,0, previous voted 1\n[  737.029350]  1925     3.7 C/MHz     24 mW    3.7 J   80.1 I/mJ   155.8 s\n                614: \n[  786.801707] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 305 FCC = 6000000uA FV = 4460000uV BATT_TEMP = 305 max voltage= 4460000uv battery warm = 480 battery cool = 150\n[  877.419418]  2281     3.7 C/MHz     28 mW    3.7 J   81.9 I/mJ   131.5 s\n                691: \n[ 1002.777724]  2567     3.7 C/MHz     31 mW    3.7 J   81.7 I/mJ   116.9 s\n                787: \n[ 1082.064034] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 302 FCC = 6000000uA FV = 4460000uV BATT_TEMP = 302 max voltage= 4460000uv battery warm = 480 battery cool = 150\n[ 1114.088126]  2923     3.7 C/MHz     37 mW    3.8 J   80.0 I/mJ   102.6 s\n                883: \n[ 1144.163994] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 302 FCC = 6000000uA FV = 4460000uV BATT_TEMP = 302 max voltage= 4460000uv battery warm = 480 battery cool = 150\n[ 1214.363530]  3280     3.7 C/MHz     41 mW    3.7 J   80.6 I/mJ    91.5 s\n                979: \n[ 1242.080842] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 03 78 04 02 03 07 a0 fd 30 00 a3 02 0b 0a 00 00 55 \n[ 1242.081092] smb:01:1200 00 ff ff fe 00 3d 3d 00 00 00 00 00 00 00 00 01 06 00 01 00 \n[ 1242.081747] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 00 00 40 00 00 a3 00 00 00 00 07 00 18 38 11 b0 03 00 00 7f 00 00 00 00 00 00 02 54 00 00 00 00 \n[ 1242.082616] smb:01:1500 00 00 00 04 c5 42 00 04 ff 00 00 ff ff 4a 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 1242.083276] smb:01:1600 03 03 00 00 0f 02 01 04 00 00 00 5b 5b 00 00 00 00 00 42 00 f3 00 00 00 00 00 00 00 00 00 00 00 00 0c 01 00 80 00 00 00 00 00 00 20 b8 4c cc 18 02 00 03 32 05 \n[ 1305.620466]  3636     3.7 C/MHz     46 mW    3.8 J   78.5 I/mJ    82.5 s\n               1075: \n[ 1373.357197] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 302 FCC = 6000000uA FV = 4460000uV BATT_TEMP = 302 max voltage= 4460000uv battery warm = 480 battery cool = 150\n[ 1389.864627]  3992     3.7 C/MHz     51 mW    3.8 J   78.9 I/mJ    75.2 s\n               1171: \n[ 1467.095524]  4349     3.7 C/MHz     53 mW    3.6 J   82.5 I/mJ    69.0 s\n               1248: \n[ 1540.315283]  4634     3.7 C/MHz     61 mW    3.9 J   76.2 I/mJ    64.7 s\n               1344: \n[ 1609.525285]  4991     3.7 C/MHz     62 mW    3.8 J   80.0 I/mJ    60.1 s\n               1420: \n[ 1661.637500] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 302 FCC = 6000000uA FV = 4460000uV BATT_TEMP = 302 max voltage= 4460000uv battery warm = 480 battery cool = 150\n[ 1674.726275]  5276     3.7 C/MHz     69 mW    3.9 J   76.1 I/mJ    56.9 s\n               1516: \n[ 1736.918271]  5632     3.7 C/MHz     75 mW    4.0 J   75.2 I/mJ    53.3 s\n               1612: \n[ 1796.103525]  5989     3.7 C/MHz     80 mW    4.0 J   75.3 I/mJ    50.1 s\n               1708: \n[ 1830.243407] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 302 FCC = 6000000uA FV = 4460000uV BATT_TEMP = 302 max voltage= 4460000uv battery warm = 480 battery cool = 150\n[ 1852.286283]  6345     3.7 C/MHz     86 mW    4.1 J   73.7 I/mJ    47.3 s\n               1804: \n[ 1905.467462] CPU1: shutdown\n[ 1905.467530] psci: CPU1 killed (polled 0 ms)\n[ 1905.470728] Detected PIPT I-cache on CPU4\n[ 1905.470757] arch_timer: CPU4: Trapping CNTVCT access\n[ 1905.470761] CPU4: Booted secondary processor 0x0000000400 [0x411fd0d0]\n[ 1906.482107]  6702     3.7 C/MHz     95 mW    4.2 J   70.8 I/mJ    44.8 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 710 825 940 1056 1171 1286 1382 1478 1574 1670 1766 1862 1958 2054 2150 2246 2342 2419\n               \n                710: \n[ 1942.950606] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 302 FCC = 6000000uA FV = 4460000uV BATT_TEMP = 302 max voltage= 4460000uv battery warm = 480 battery cool = 150\n[ 1964.776152]  6028     8.5 C/MHz    104 mW    5.2 J   58.1 I/mJ    49.8 s\n                825: \n[ 2016.046195]  7006     8.5 C/MHz    122 mW    5.2 J   57.4 I/mJ    42.8 s\n                940: \n[ 2062.301350]  7980     8.5 C/MHz    146 mW    5.5 J   54.7 I/mJ    37.6 s\n               1056: \n[ 2104.545104]  8947     8.5 C/MHz    167 mW    5.6 J   53.5 I/mJ    33.5 s\n               1171: \n[ 2143.778348]  9932     8.5 C/MHz    189 mW    5.7 J   52.5 I/mJ    30.2 s\n               1286: \n[ 2180.002325] 10913     8.5 C/MHz    214 mW    5.9 J   51.0 I/mJ    27.5 s\n               1382: \n[ 2201.229107] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 302 FCC = 6000000uA FV = 4460000uV BATT_TEMP = 302 max voltage= 4460000uv battery warm = 480 battery cool = 150\n[ 2214.218676] 11728     8.5 C/MHz    228 mW    5.8 J   51.4 I/mJ    25.6 s\n               1478: \n[ 2246.429217] 12521     8.5 C/MHz    263 mW    6.3 J   47.7 I/mJ    24.0 s\n               1574: \n[ 2250.085461] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 302 FCC = 6000000uA FV = 4460000uV BATT_TEMP = 302 max voltage= 4460000uv battery warm = 480 battery cool = 150\n[ 2277.636018] 13356     8.5 C/MHz    289 mW    6.5 J   46.2 I/mJ    22.5 s\n               1670: \n[ 2307.838893] 14180     8.5 C/MHz    321 mW    6.8 J   44.2 I/mJ    21.2 s\n               1766: \n[ 2336.037312] 14986     8.5 C/MHz    351 mW    7.0 J   42.6 I/mJ    20.0 s\n               1862: \n[ 2363.228725] 15807     8.5 C/MHz    399 mW    7.6 J   39.6 I/mJ    19.0 s\n               1958: \n[ 2390.423557] 16601     8.5 C/MHz    403 mW    7.3 J   41.2 I/mJ    18.1 s\n               2054: \n[ 2416.614471] 17426     8.5 C/MHz    468 mW    8.1 J   37.2 I/mJ    17.2 s\n               2150: \n[ 2431.465083] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 305 FCC = 6000000uA FV = 4460000uV BATT_TEMP = 305 max voltage= 4460000uv battery warm = 480 battery cool = 150\n[ 2441.803634] 18256     8.5 C/MHz    517 mW    8.5 J   35.3 I/mJ    16.4 s\n               2246: \n[ 2465.987656] 19060     8.5 C/MHz    567 mW    8.9 J   33.6 I/mJ    15.8 s\n               2342: \n[ 2470.881228] smb:01:1000 47 08 00 55 00 40 00 00 44 80 ff ff c0 00 03 03 00 00 00 00 00 38 2e 3f 60 7f 00 01 01 03 00 00 00 00 00 00 00 03 78 04 02 03 07 a0 fd 30 00 a3 02 0b 0a 00 00 55 \n[ 2470.881541] smb:01:1200 00 ff ff fe 00 3d 3d 00 00 00 00 00 00 00 00 01 06 00 01 00 \n[ 2470.882349] smb:01:1300 00 00 00 00 00 00 00 00 00 00 26 ff 3f 00 df df 00 00 00 00 00 00 00 40 00 00 a3 00 00 00 00 07 00 18 38 11 b0 03 00 00 7f 00 00 00 00 00 00 02 54 00 00 00 00 \n[ 2470.883436] smb:01:1500 00 00 00 01 c3 02 00 04 ff 00 00 ff ff 4a 00 6d 6d 00 00 00 00 00 00 00 10 00 01 00 00 00 07 00 01 00 03 00 06 00 01 00 01 00 01 01 01 00 07 00 00 00 00 00 40 00 00 00 03 00 00 00 12 00 00 00 00 00 00 00 00 00 00 10 \n[ 2470.884245] smb:01:1600 03 03 00 00 0f 02 01 04 00 00 00 5b 5b 00 00 00 00 00 42 00 f3 00 00 00 00 00 00 00 00 00 00 00 00 0c 01 00 80 00 00 00 00 00 00 20 b8 4c cc 18 02 00 03 32 05 \n[ 2490.173281] 19873     8.5 C/MHz    620 mW    9.4 J   32.0 I/mJ    15.1 s\n               2419: \n[ 2513.359884] CPU4: shutdown\n[ 2513.359999] psci: CPU4 killed (polled 0 ms)\n[ 2513.363735] Detected PIPT I-cache on CPU7\n[ 2513.363758] arch_timer: CPU7: Trapping CNTVCT access\n[ 2513.363761] CPU7: Booted secondary processor 0x0000000700 [0x411fd0d0]\n[ 2514.372369] 20521     8.5 C/MHz    669 mW    9.8 J   30.6 I/mJ    14.6 s\n               \n               \n               ===== CPU 7 =====\n               Frequencies: 844 960 1075 1190 1305 1401 1516 1632 1747 1862 1977 2073 2169 2265 2361 2457 2553 2649 2745 2841 3187\n               \n                844: \n[ 2564.640526]  7158     8.5 C/MHz    133 mW    5.6 J   53.7 I/mJ    41.9 s\n                960: \n[ 2609.892716]  8149     8.5 C/MHz    158 mW    5.8 J   51.6 I/mJ    36.8 s\n               1075: \n[ 2651.131512]  9112     8.5 C/MHz    183 mW    6.0 J   49.9 I/mJ    32.9 s\n               1190: \n[ 2687.721253] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 305 FCC = 6000000uA FV = 4460000uV BATT_TEMP = 305 max voltage= 4460000uv battery warm = 480 battery cool = 150\n[ 2689.362780] 10089     8.5 C/MHz    202 mW    6.0 J   49.9 I/mJ    29.7 s\n               1305: \n[ 2725.584801] 11074     8.5 C/MHz    229 mW    6.2 J   48.4 I/mJ    27.1 s\n               1401: \n[ 2759.802288] 11857     8.5 C/MHz    238 mW    6.0 J   49.8 I/mJ    25.3 s\n               1516: \n[ 2792.012415] 12866     8.5 C/MHz    281 mW    6.6 J   45.8 I/mJ    23.3 s\n               1632: \n[ 2822.216347] 13838     8.5 C/MHz    322 mW    7.0 J   42.9 I/mJ    21.7 s\n               1747: \n[ 2823.525314] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 305 FCC = 6000000uA FV = 4460000uV BATT_TEMP = 305 max voltage= 4460000uv battery warm = 480 battery cool = 150\n[ 2851.415479] 14831     8.5 C/MHz    359 mW    7.3 J   41.2 I/mJ    20.2 s\n               1862: \n[ 2878.608496] 15797     8.5 C/MHz    404 mW    7.7 J   39.1 I/mJ    19.0 s\n               1977: \n[ 2904.801082] 16768     8.5 C/MHz    445 mW    8.0 J   37.6 I/mJ    17.9 s\n               2073: \n[ 2919.919446] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 305 FCC = 6000000uA FV = 4460000uV BATT_TEMP = 305 max voltage= 4460000uv battery warm = 480 battery cool = 150\n[ 2930.992935] 17584     8.5 C/MHz    496 mW    8.5 J   35.5 I/mJ    17.1 s\n               2169: \n[ 2956.188138] 18420     8.5 C/MHz    568 mW    9.3 J   32.4 I/mJ    16.3 s\n               2265: \n[ 2980.373283] 19216     8.5 C/MHz    588 mW    9.2 J   32.6 I/mJ    15.6 s\n               2361: \n[ 3003.555755] 19992     8.5 C/MHz    650 mW    9.8 J   30.7 I/mJ    15.0 s\n               2457: \n[ 3026.736772] 20835     8.5 C/MHz    725 mW   10.4 J   28.7 I/mJ    14.4 s\n               2553: \n[ 3048.913824] 21639     8.5 C/MHz    792 mW   11.0 J   27.3 I/mJ    13.9 s\n               2649: \n[ 3071.093315] 22470     8.5 C/MHz    901 mW   12.0 J   24.9 I/mJ    13.4 s\n               2745: \n[ 3092.269520] 23301     8.5 C/MHz    991 mW   12.8 J   23.5 I/mJ    12.9 s\n               2841: \n[ 3106.075481] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 310 FCC = 6000000uA FV = 4460000uV BATT_TEMP = 310 max voltage= 4460000uv battery warm = 480 battery cool = 150\n[ 3113.446093] 24083     8.5 C/MHz   1096 mW   13.7 J   22.0 I/mJ    12.5 s\n               3187: \n[ 3130.725788] QCOM-STEPCHG: handle_jeita: BATT_TEMP = 310 FCC = 6000000uA FV = 4460000uV BATT_TEMP = 310 max voltage= 4460000uv battery warm = 480 battery cool = 150\n[ 3133.623308] CPU7: shutdown\n[ 3133.623390] psci: CPU7 killed (polled 0 ms)\n[ 3133.647226] 27029     8.5 C/MHz   1553 mW   17.3 J   17.4 I/mJ    11.1 s\n               \n               \n               Benchmark finished!\n[ 3133.665284] \n               real\t52m9.627s\n               user\t42m44.121s\n               sys\t0m1.835s\n"
  },
  {
    "path": "results/sm8250ac/post_bench_interrupts.txt",
    "content": "           CPU0       \n  3:       6254     GICv3  27 Level     arch_timer\n  5:     312193     GICv3  38 Level     arch_mem_timer\n  7:          0     GICv3  23 Level     arm-pmu\n  8:          0     GICv3  62 Level     dcvsh-irq-0\n  9:          0     GICv3  63 Level     dcvsh-irq-4\n 10:          0     GICv3  51 Level     dcvsh-irq-7\n 11:          0     GICv3 195 Level     ngd_slim_irq\n 13:          0     GICv3  82 Level     arm_dsu_0\n 14:          0     GICv3  32 Edge      apps_wdog_bark\n 21:        414     GICv3 297 Level     1d84000.ufshc\n 22:          6     GICv3 261 Level     ipcc_1\n 25:        518     GICv3  37 Level     apps_rsc\n 26:          0     GICv3 161 Level     disp_rsc\n 27:          0     GICv3  16 Level     KRYO L1-L2 ECC FAULTIRQ\n 28:          0     GICv3  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 29:          0     GICv3 380 Level     qsee_irq\n 30:          0     GICv3 381 Level     qsee_irq\n 33:          0       PDC  11 Level     eud_irq\n 34:          0       PDC   6 Edge      adsp\n 35:          0     GICv3 610 Edge      cdsp\n 36:          0     GICv3 384 Level     spss\n 37:          0     GICv3 304 Level     sps\n 38:          0       PDC   9 Edge      slpi\n 39:          0     GICv3 538 Level     tsens-upper-lower\n 40:          0     GICv3 540 Level     tsens-critical\n 41:          0     GICv3 539 Level     tsens-upper-lower\n 42:          0     GICv3 541 Level     tsens-critical\n 80:          0     GICv3 172 Edge      int_global_int\n117:          0     GICv3 268 Edge      int_global_int\n154:          0     GICv3 704 Level     arm-smmu global fault\n155:          0     GICv3 705 Level     arm-smmu global fault\n156:          0     GICv3 710 Level     arm-smmu-context-fault\n157:          0     GICv3 711 Level     arm-smmu-context-fault\n158:          0     GICv3 712 Level     arm-smmu-context-fault\n159:          0     GICv3 713 Level     arm-smmu-context-fault\n164:          0     GICv3  96 Level     arm-smmu global fault\n165:          0     GICv3  97 Level     arm-smmu global fault\n170:          0     GICv3 133 Level     arm-smmu-context-fault\n171:          0     GICv3 134 Level     arm-smmu-context-fault\n172:          0     GICv3 135 Level     arm-smmu-context-fault\n173:          0     GICv3 136 Level     arm-smmu-context-fault\n174:          0     GICv3 137 Level     arm-smmu-context-fault\n175:          0     GICv3 138 Level     arm-smmu-context-fault\n176:          0     GICv3 139 Level     arm-smmu-context-fault\n177:          0     GICv3 140 Level     arm-smmu-context-fault\n178:          0     GICv3 141 Level     arm-smmu-context-fault\n179:          0     GICv3 142 Level     arm-smmu-context-fault\n180:          0     GICv3 143 Level     arm-smmu-context-fault\n181:          0     GICv3 144 Level     arm-smmu-context-fault\n182:          0     GICv3 145 Level     arm-smmu-context-fault\n183:          0     GICv3 146 Level     arm-smmu-context-fault\n184:          0     GICv3 147 Level     arm-smmu-context-fault\n185:          0     GICv3 148 Level     arm-smmu-context-fault\n186:          0     GICv3 149 Level     arm-smmu-context-fault\n187:          0     GICv3 150 Level     arm-smmu-context-fault\n188:          0     GICv3 213 Level     arm-smmu-context-fault\n189:          0     GICv3 214 Level     arm-smmu-context-fault\n190:          0     GICv3 215 Level     arm-smmu-context-fault\n191:          0     GICv3 216 Level     arm-smmu-context-fault\n192:          0     GICv3 217 Level     arm-smmu-context-fault\n193:          0     GICv3 218 Level     arm-smmu-context-fault\n194:          0     GICv3 219 Level     arm-smmu-context-fault\n195:          0     GICv3 220 Level     arm-smmu-context-fault\n196:          0     GICv3 221 Level     arm-smmu-context-fault\n197:          0     GICv3 222 Level     arm-smmu-context-fault\n198:          0     GICv3 223 Level     arm-smmu-context-fault\n199:          0     GICv3 224 Level     arm-smmu-context-fault\n200:          0     GICv3 347 Level     arm-smmu-context-fault\n201:          0     GICv3 348 Level     arm-smmu-context-fault\n202:          0     GICv3 349 Level     arm-smmu-context-fault\n203:          0     GICv3 350 Level     arm-smmu-context-fault\n204:          0     GICv3 351 Level     arm-smmu-context-fault\n205:          0     GICv3 352 Level     arm-smmu-context-fault\n206:          0     GICv3 353 Level     arm-smmu-context-fault\n207:          0     GICv3 354 Level     arm-smmu-context-fault\n208:          0     GICv3 355 Level     arm-smmu-context-fault\n209:          0     GICv3 356 Level     arm-smmu-context-fault\n210:          0     GICv3 357 Level     arm-smmu-context-fault\n211:          0     GICv3 358 Level     arm-smmu-context-fault\n212:          0     GICv3 359 Level     arm-smmu-context-fault\n213:          0     GICv3 360 Level     arm-smmu-context-fault\n214:          0     GICv3 361 Level     arm-smmu-context-fault\n215:          0     GICv3 362 Level     arm-smmu-context-fault\n216:          0     GICv3 363 Level     arm-smmu-context-fault\n217:          0     GICv3 364 Level     arm-smmu-context-fault\n218:          0     GICv3 365 Level     arm-smmu-context-fault\n219:          0     GICv3 366 Level     arm-smmu-context-fault\n263:          0       PDC  14 Edge      dp_hs_phy_irq\n264:          0     GICv3 162 Level     pwr_event_irq\n265:          0       PDC  17 Level     ss_phy_irq\n266:          0       PDC  15 Edge      dm_hs_phy_irq\n268:          0     GICv3 115 Level     msm_drm\n269:          0     GICv3 509 Edge      csiphy\n270:          0     GICv3 510 Edge      csiphy\n271:          0     GICv3 511 Edge      csiphy\n272:          0     GICv3 480 Edge      csiphy\n273:          0     GICv3 118 Edge      csiphy\n274:          0     GICv3 121 Edge      csiphy\n275:          0     GICv3 492 Edge      cci\n276:          0     GICv3 303 Edge      cci\n277:          0     GICv3 491 Edge      cpas_camnoc\n278:          1     GICv3 493 Edge      cpas-cdm\n279:          0     GICv3 496 Edge      csid\n280:          2     GICv3 497 Edge      ife\n281:          0     GICv3 498 Edge      csid\n282:          2     GICv3 499 Edge      ife\n283:          0     GICv3 500 Edge      csid-lite\n284:          2     GICv3 501 Edge      ife-lite\n285:          0     GICv3 391 Edge      csid-lite\n286:          2     GICv3 392 Edge      ife-lite\n287:          0     GICv3 495 Edge      a5\n288:          0     GICv3 506 Edge      jpeg\n289:          0     GICv3 507 Edge      jpegdma\n290:          2     GICv3 494 Edge      fd\n291:          0     GICv3 639 Level     msm_serial_geni0\n292:          4     GICv3 634 Level     i2c_geni\n293:       1405     GICv3 636 Level     i2c_geni\n294:          0     GICv3 635 Level     spi_geni\n295:      32667     GICv3 637 Level     spi_geni\n297:        314     GICv3 388 Level     i2c_geni\n298:        367     GICv3 615 Level     i2c_geni\n299:        327     GICv3 616 Level     i2c_geni\n300:          0     GICv3 206 Level     msm_vidc\n301:          0     GICv3 266 Level     msm_cvp\n302:          0     GICv3 396 Level     error_irq\n303:          0     GICv3 398 Edge      wdg_bite_irq\n304:          0     GICv3 400 Edge      ipc_irq\n305:          0     GICv3 397 Level     general_irq\n306:          0     GICv3 332 Level     kgsl_3d0_irq\n307:          0     GICv3 336 Level     kgsl_hfi_irq\n308:          0     GICv3 337 Level     kgsl_gmu_irq\n309:          0  pmic_arb 8388621 Edge      pon_kpdpwr_status\n310:          0  pmic_arb 8454157 Edge      pon_resin_status\n311:          0  pmic_arb 8585229 Edge      pon_kpdpwr_bark\n313:          0  pmic_arb 8716301 Edge      pon_kpdpwr_resin_bark\n314:          0  pmic_arb 37748750 Edge      qcom,temp-alarm\n317:          0  pmic_arb 206569497 Edge      volume_up\n321:          0  pmic_arb 101777427 Edge      pm8xxx_rtc_alarm\n322:          4  pmic_arb 51380239 Edge      pm-adc5\n323:          0  pmic_arb 55574544 Edge      thr-int-en\n324:          0  pmic_arb 574619691 Edge      qcom,temp-alarm\n325:          0  pmic_arb 721485883 Edge      ptrain-done\n335:          0  pmic_arb 560988197 Edge      sig-tx\n336:          0  pmic_arb 561053733 Edge      sig-rx\n337:          0  pmic_arb 561119269 Edge      msg-tx\n338:          0  pmic_arb 561184805 Edge      msg-rx\n339:          0  pmic_arb 561250341 Edge      msg-tx-failed\n340:          0  pmic_arb 561315877 Edge      msg-tx-discarded\n341:          0  pmic_arb 561381413 Edge      msg-rx-discarded\n343:          0  pmic_arb 567279658 Edge      bcl-lvl0\n344:          0  pmic_arb 567345194 Edge      bcl-lvl1\n345:          0  pmic_arb 567410730 Edge      bcl-lvl2\n346:          9  pmic_arb 588251180 Edge      pm-adc5\n347:          0  pmic_arb 592445485 Edge      thr-int-en\n350:          0  pmic_arb 1111490635 Edge      qcom,temp-alarm\n360:          5  pmic_arb 1125122124 Edge      pm-adc5\n361:          0  pmic_arb 1137705038 Edge      bcl-lvl0\n362:          0  pmic_arb 1137770574 Edge      bcl-lvl1\n363:          0  pmic_arb 1137836110 Edge      bcl-lvl2\n364:          0  pmic_arb 1129316429 Edge      thr-int-en\n365:          0  pmic_arb 1563426913 Edge      qpnp_flash_led_fault_irq\n366:          0  pmic_arb 1563623521 Edge      qpnp_flash_led_all_ramp_down_done_irq\n367:          0  pmic_arb 1563689057 Edge      qpnp_flash_led_all_ramp_up_done_irq\n372:          6      ipcc   0 Edge      qcom,qmp-aop\n373:          1   msmgpio  81 Edge      msm_pcie_wake\n374:          0   msmgpio  87 Edge      msm_pcie_wake\n375:          0      ipcc 196610 Edge      smp2p\n376:          0      ipcc 262146 Edge      smp2p\n377:          0      ipcc 393218 Edge      smp2p\n378:          0      ipcc 458754 Edge      smp2p\n379:          0     smp2p   2 Edge      adsp\n380:          0     smp2p   0 Edge      adsp\n381:          0     smp2p   1 Edge      error_ready_interrupt\n382:          0     smp2p   3 Edge      adsp\n383:          0     smp2p   2 Edge      cdsp\n384:          0     smp2p   0 Edge      cdsp\n385:          0     smp2p   1 Edge      error_ready_interrupt\n386:          0     smp2p   3 Edge      cdsp\n387:          0     smp2p   2 Edge      slpi\n388:          0     smp2p   0 Edge      slpi\n389:          0     smp2p   1 Edge      error_ready_interrupt\n390:          0     smp2p   3 Edge      slpi\n391:          0     smp2p   0 Edge      smp2p_sleepstate\n392:          0      qsee  32 Level     qsee_ipc_irq_spss\n394:          0     GICv3 165 Level     dwc3\n396:          0   msmgpio  39 Edge      fts_ts\n429:          0   msmgpio 111 Level     nq-nci\n430:          0  pmic_arb 603979823 Edge      soc-update\n431:          0  pmic_arb 604045359 Edge      soc-ready\n432:          0  pmic_arb 604110895 Edge      bsoc-delta\n433:         12  pmic_arb 604176431 Edge      msoc-delta\n434:          0  pmic_arb 604241967 Edge      msoc-low\n435:          0  pmic_arb 604307503 Edge      msoc-empty\n436:          0  pmic_arb 604373039 Edge      msoc-high\n437:          0  pmic_arb 604438575 Edge      msoc-full\n438:          0  pmic_arb 605028400 Edge      vbatt-low\n439:          0  pmic_arb 605093936 Edge      vbatt-pred-delta\n440:          3  pmic_arb 605225008 Edge      esr-delta\n441:          0  pmic_arb 606076977 Edge      batt-missing\n442:          0  pmic_arb 606142513 Edge      batt-id\n443:          0  pmic_arb 606208049 Edge      batt-temp-delta\n444:          0  pmic_arb 606273585 Edge      batt-temp-hot\n445:          0  pmic_arb 606339121 Edge      batt-temp-cold\n446:          0  pmic_arb 607125554 Edge      ima-rdy\n447:          0  pmic_arb 607191090 Edge      ima-xcp\n448:          0  pmic_arb 607256626 Edge      dma-xcp\n449:        808  pmic_arb 607322162 Edge      dma-grant\n450:          0  pmic_arb 607387698 Edge      mem-attn\n451:          0   msmgpio 129 Edge      aw8697\n454:          0   msmgpio   1 Edge      mdm errfatal\n455:          0   msmgpio   3 Edge      mdm status\n456:          0   msmgpio  51 Edge      esd_err_irq\n457:          0   msmgpio  66 Edge      TE_GPIO\n458:          0   msmgpio 113 Level     cs35l41\n459:          0   msmgpio  68 Edge      bq2597x charger irq\n460:          0   msmgpio  84 Edge      i2c_pmic_stat_irq\n461:          0  i2c_pmic_irq_chip 2320 Edge      ocp\n464:          0       sde   4 Edge      dsi_ctrl\n465:          0   msmgpio 112 Level     cs35l41\n466:          0  pmic_arb 553648158 Edge      chgr-error\n467:          0  pmic_arb 553713694 Edge      chg-state-change\n473:          0  pmic_arb 554696735 Edge      otg-fail\n476:          0  pmic_arb 554958879 Edge      high-duty-cycle\n477:          0  pmic_arb 555024415 Edge      input-current-limiting\n479:          0  pmic_arb 555155487 Edge      switcher-power-ok\n480:          0  pmic_arb 555745312 Edge      bat-temp\n481:          0  pmic_arb 555876384 Edge      bat-ov\n482:          0  pmic_arb 555941920 Edge      bat-low\n483:          0  pmic_arb 556007456 Edge      bat-therm-or-id-missing\n484:          0  pmic_arb 556072992 Edge      bat-terminal-missing\n487:          0  pmic_arb 556793889 Edge      usbin-collapse\n488:          0  pmic_arb 556859425 Edge      usbin-vashdn\n489:          0  pmic_arb 556924961 Edge      usbin-uv\n490:          0  pmic_arb 556990497 Edge      usbin-ov\n491:          0  pmic_arb 557056033 Edge      usbin-plugin\n493:          0  pmic_arb 557187105 Edge      usbin-src-change\n494:          0  pmic_arb 557252641 Edge      usbin-icl-change\n496:          0  pmic_arb 557973538 Edge      dcin-uv\n497:          0  pmic_arb 558039074 Edge      dcin-ov\n498:          0  pmic_arb 558104610 Edge      dcin-plugin\n500:          0  pmic_arb 558235682 Edge      dcin-pon\n501:          0  pmic_arb 558301218 Edge      dcin-en\n502:          0  pmic_arb 558891043 Edge      typec-or-rid-detect-change\n504:          0  pmic_arb 559022115 Edge      typec-cc-state-change\n505:          0  pmic_arb 559087651 Edge      typec-vconn-oc\n507:          0  pmic_arb 559218723 Edge      typec-attach-detach\n508:          0  pmic_arb 559284259 Edge      typec-legacy-cable-detect\n510:          0  pmic_arb 559939620 Edge      wdog-snarl\n511:          0  pmic_arb 560005156 Edge      wdog-bark\n513:          0  pmic_arb 560136228 Edge      aicl-done\n514:          0  pmic_arb 560201764 Edge      smb-en\n515:          0  pmic_arb 560332836 Edge      temp-change\nIPI0:       239       Rescheduling interrupts\nIPI1:        15       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:    314328       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8250ac/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  3:        652          3          2          2          1          1          1          1     GICv3  27 Level     arch_timer\n  5:          0          0          0          0          0          0          0          0     GICv3  38 Level     arch_mem_timer\n  7:          0          0          0          0          0          0          0          0     GICv3  23 Level     arm-pmu\n  8:          0          0          0          0          0          0          0          0     GICv3  62 Level     dcvsh-irq-0\n  9:          0          0          0          0          0          0          0          0     GICv3  63 Level     dcvsh-irq-4\n 10:          0          0          0          0          0          0          0          0     GICv3  51 Level     dcvsh-irq-7\n 11:          0          0          0          0          0          0          0          0     GICv3 195 Level     ngd_slim_irq\n 13:          0          0          0          0          0          0          0          0     GICv3  82 Level     arm_dsu_0\n 14:          0          0          0          0          0          0          0          0     GICv3  32 Edge      apps_wdog_bark\n 21:        402          0          0          0          0          0          0          0     GICv3 297 Level     1d84000.ufshc\n 22:          6          0          0          0          0          0          0          0     GICv3 261 Level     ipcc_1\n 25:        348          0          0          0          0          0          0          0     GICv3  37 Level     apps_rsc\n 26:          0          0          0          0          0          0          0          0     GICv3 161 Level     disp_rsc\n 27:          0          0          0          0          0          0          0          0     GICv3  16 Level     KRYO L1-L2 ECC FAULTIRQ\n 28:          0          0          0          0          0          0          0          0     GICv3  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 29:          0          0          0          0          0          0          0          0     GICv3 380 Level     qsee_irq\n 30:          0          0          0          0          0          0          0          0     GICv3 381 Level     qsee_irq\n 33:          0          0          0          0          0          0          0          0       PDC  11 Level     eud_irq\n 34:          0          0          0          0          0          0          0          0       PDC   6 Edge      adsp\n 35:          0          0          0          0          0          0          0          0     GICv3 610 Edge      cdsp\n 36:          0          0          0          0          0          0          0          0     GICv3 384 Level     spss\n 37:          0          0          0          0          0          0          0          0     GICv3 304 Level     sps\n 38:          0          0          0          0          0          0          0          0       PDC   9 Edge      slpi\n 39:          0          0          0          0          0          0          0          0     GICv3 538 Level     tsens-upper-lower\n 40:          0          0          0          0          0          0          0          0     GICv3 540 Level     tsens-critical\n 41:          0          0          0          0          0          0          0          0     GICv3 539 Level     tsens-upper-lower\n 42:          0          0          0          0          0          0          0          0     GICv3 541 Level     tsens-critical\n 80:          0          0          0          0          0          0          0          0     GICv3 172 Edge      int_global_int\n117:          0          0          0          0          0          0          0          0     GICv3 268 Edge      int_global_int\n154:          0          0          0          0          0          0          0          0     GICv3 704 Level     arm-smmu global fault\n155:          0          0          0          0          0          0          0          0     GICv3 705 Level     arm-smmu global fault\n156:          0          0          0          0          0          0          0          0     GICv3 710 Level     arm-smmu-context-fault\n157:          0          0          0          0          0          0          0          0     GICv3 711 Level     arm-smmu-context-fault\n158:          0          0          0          0          0          0          0          0     GICv3 712 Level     arm-smmu-context-fault\n159:          0          0          0          0          0          0          0          0     GICv3 713 Level     arm-smmu-context-fault\n164:          0          0          0          0          0          0          0          0     GICv3  96 Level     arm-smmu global fault\n165:          0          0          0          0          0          0          0          0     GICv3  97 Level     arm-smmu global fault\n170:          0          0          0          0          0          0          0          0     GICv3 133 Level     arm-smmu-context-fault\n171:          0          0          0          0          0          0          0          0     GICv3 134 Level     arm-smmu-context-fault\n172:          0          0          0          0          0          0          0          0     GICv3 135 Level     arm-smmu-context-fault\n173:          0          0          0          0          0          0          0          0     GICv3 136 Level     arm-smmu-context-fault\n174:          0          0          0          0          0          0          0          0     GICv3 137 Level     arm-smmu-context-fault\n175:          0          0          0          0          0          0          0          0     GICv3 138 Level     arm-smmu-context-fault\n176:          0          0          0          0          0          0          0          0     GICv3 139 Level     arm-smmu-context-fault\n177:          0          0          0          0          0          0          0          0     GICv3 140 Level     arm-smmu-context-fault\n178:          0          0          0          0          0          0          0          0     GICv3 141 Level     arm-smmu-context-fault\n179:          0          0          0          0          0          0          0          0     GICv3 142 Level     arm-smmu-context-fault\n180:          0          0          0          0          0          0          0          0     GICv3 143 Level     arm-smmu-context-fault\n181:          0          0          0          0          0          0          0          0     GICv3 144 Level     arm-smmu-context-fault\n182:          0          0          0          0          0          0          0          0     GICv3 145 Level     arm-smmu-context-fault\n183:          0          0          0          0          0          0          0          0     GICv3 146 Level     arm-smmu-context-fault\n184:          0          0          0          0          0          0          0          0     GICv3 147 Level     arm-smmu-context-fault\n185:          0          0          0          0          0          0          0          0     GICv3 148 Level     arm-smmu-context-fault\n186:          0          0          0          0          0          0          0          0     GICv3 149 Level     arm-smmu-context-fault\n187:          0          0          0          0          0          0          0          0     GICv3 150 Level     arm-smmu-context-fault\n188:          0          0          0          0          0          0          0          0     GICv3 213 Level     arm-smmu-context-fault\n189:          0          0          0          0          0          0          0          0     GICv3 214 Level     arm-smmu-context-fault\n190:          0          0          0          0          0          0          0          0     GICv3 215 Level     arm-smmu-context-fault\n191:          0          0          0          0          0          0          0          0     GICv3 216 Level     arm-smmu-context-fault\n192:          0          0          0          0          0          0          0          0     GICv3 217 Level     arm-smmu-context-fault\n193:          0          0          0          0          0          0          0          0     GICv3 218 Level     arm-smmu-context-fault\n194:          0          0          0          0          0          0          0          0     GICv3 219 Level     arm-smmu-context-fault\n195:          0          0          0          0          0          0          0          0     GICv3 220 Level     arm-smmu-context-fault\n196:          0          0          0          0          0          0          0          0     GICv3 221 Level     arm-smmu-context-fault\n197:          0          0          0          0          0          0          0          0     GICv3 222 Level     arm-smmu-context-fault\n198:          0          0          0          0          0          0          0          0     GICv3 223 Level     arm-smmu-context-fault\n199:          0          0          0          0          0          0          0          0     GICv3 224 Level     arm-smmu-context-fault\n200:          0          0          0          0          0          0          0          0     GICv3 347 Level     arm-smmu-context-fault\n201:          0          0          0          0          0          0          0          0     GICv3 348 Level     arm-smmu-context-fault\n202:          0          0          0          0          0          0          0          0     GICv3 349 Level     arm-smmu-context-fault\n203:          0          0          0          0          0          0          0          0     GICv3 350 Level     arm-smmu-context-fault\n204:          0          0          0          0          0          0          0          0     GICv3 351 Level     arm-smmu-context-fault\n205:          0          0          0          0          0          0          0          0     GICv3 352 Level     arm-smmu-context-fault\n206:          0          0          0          0          0          0          0          0     GICv3 353 Level     arm-smmu-context-fault\n207:          0          0          0          0          0          0          0          0     GICv3 354 Level     arm-smmu-context-fault\n208:          0          0          0          0          0          0          0          0     GICv3 355 Level     arm-smmu-context-fault\n209:          0          0          0          0          0          0          0          0     GICv3 356 Level     arm-smmu-context-fault\n210:          0          0          0          0          0          0          0          0     GICv3 357 Level     arm-smmu-context-fault\n211:          0          0          0          0          0          0          0          0     GICv3 358 Level     arm-smmu-context-fault\n212:          0          0          0          0          0          0          0          0     GICv3 359 Level     arm-smmu-context-fault\n213:          0          0          0          0          0          0          0          0     GICv3 360 Level     arm-smmu-context-fault\n214:          0          0          0          0          0          0          0          0     GICv3 361 Level     arm-smmu-context-fault\n215:          0          0          0          0          0          0          0          0     GICv3 362 Level     arm-smmu-context-fault\n216:          0          0          0          0          0          0          0          0     GICv3 363 Level     arm-smmu-context-fault\n217:          0          0          0          0          0          0          0          0     GICv3 364 Level     arm-smmu-context-fault\n218:          0          0          0          0          0          0          0          0     GICv3 365 Level     arm-smmu-context-fault\n219:          0          0          0          0          0          0          0          0     GICv3 366 Level     arm-smmu-context-fault\n263:          0          0          0          0          0          0          0          0       PDC  14 Edge      dp_hs_phy_irq\n264:          0          0          0          0          0          0          0          0     GICv3 162 Level     pwr_event_irq\n265:          0          0          0          0          0          0          0          0       PDC  17 Level     ss_phy_irq\n266:          0          0          0          0          0          0          0          0       PDC  15 Edge      dm_hs_phy_irq\n268:          0          0          0          0          0          0          0          0     GICv3 115 Level     msm_drm\n269:          0          0          0          0          0          0          0          0     GICv3 509 Edge      csiphy\n270:          0          0          0          0          0          0          0          0     GICv3 510 Edge      csiphy\n271:          0          0          0          0          0          0          0          0     GICv3 511 Edge      csiphy\n272:          0          0          0          0          0          0          0          0     GICv3 480 Edge      csiphy\n273:          0          0          0          0          0          0          0          0     GICv3 118 Edge      csiphy\n274:          0          0          0          0          0          0          0          0     GICv3 121 Edge      csiphy\n275:          0          0          0          0          0          0          0          0     GICv3 492 Edge      cci\n276:          0          0          0          0          0          0          0          0     GICv3 303 Edge      cci\n277:          0          0          0          0          0          0          0          0     GICv3 491 Edge      cpas_camnoc\n278:          1          0          0          0          0          0          0          0     GICv3 493 Edge      cpas-cdm\n279:          0          0          0          0          0          0          0          0     GICv3 496 Edge      csid\n280:          2          0          0          0          0          0          0          0     GICv3 497 Edge      ife\n281:          0          0          0          0          0          0          0          0     GICv3 498 Edge      csid\n282:          2          0          0          0          0          0          0          0     GICv3 499 Edge      ife\n283:          0          0          0          0          0          0          0          0     GICv3 500 Edge      csid-lite\n284:          2          0          0          0          0          0          0          0     GICv3 501 Edge      ife-lite\n285:          0          0          0          0          0          0          0          0     GICv3 391 Edge      csid-lite\n286:          2          0          0          0          0          0          0          0     GICv3 392 Edge      ife-lite\n287:          0          0          0          0          0          0          0          0     GICv3 495 Edge      a5\n288:          0          0          0          0          0          0          0          0     GICv3 506 Edge      jpeg\n289:          0          0          0          0          0          0          0          0     GICv3 507 Edge      jpegdma\n290:          2          0          0          0          0          0          0          0     GICv3 494 Edge      fd\n291:          0          0          0          0          0          0          0          0     GICv3 639 Level     msm_serial_geni0\n292:          4          0          0          0          0          0          0          0     GICv3 634 Level     i2c_geni\n293:       1405          0          0          0          0          0          0          0     GICv3 636 Level     i2c_geni\n294:          0          0          0          0          0          0          0          0     GICv3 635 Level     spi_geni\n295:         55          0          0          0          0          0          0          0     GICv3 637 Level     spi_geni\n297:        314          0          0          0          0          0          0          0     GICv3 388 Level     i2c_geni\n298:        367          0          0          0          0          0          0          0     GICv3 615 Level     i2c_geni\n299:        298          0          0          0          0          0          0          0     GICv3 616 Level     i2c_geni\n300:          0          0          0          0          0          0          0          0     GICv3 206 Level     msm_vidc\n301:          0          0          0          0          0          0          0          0     GICv3 266 Level     msm_cvp\n302:          0          0          0          0          0          0          0          0     GICv3 396 Level     error_irq\n303:          0          0          0          0          0          0          0          0     GICv3 398 Edge      wdg_bite_irq\n304:          0          0          0          0          0          0          0          0     GICv3 400 Edge      ipc_irq\n305:          0          0          0          0          0          0          0          0     GICv3 397 Level     general_irq\n306:          0          0          0          0          0          0          0          0     GICv3 332 Level     kgsl_3d0_irq\n307:          0          0          0          0          0          0          0          0     GICv3 336 Level     kgsl_hfi_irq\n308:          0          0          0          0          0          0          0          0     GICv3 337 Level     kgsl_gmu_irq\n309:          0          0          0          0          0          0          0          0  pmic_arb 8388621 Edge      pon_kpdpwr_status\n310:          0          0          0          0          0          0          0          0  pmic_arb 8454157 Edge      pon_resin_status\n311:          0          0          0          0          0          0          0          0  pmic_arb 8585229 Edge      pon_kpdpwr_bark\n313:          0          0          0          0          0          0          0          0  pmic_arb 8716301 Edge      pon_kpdpwr_resin_bark\n314:          0          0          0          0          0          0          0          0  pmic_arb 37748750 Edge      qcom,temp-alarm\n317:          0          0          0          0          0          0          0          0  pmic_arb 206569497 Edge      volume_up\n321:          0          0          0          0          0          0          0          0  pmic_arb 101777427 Edge      pm8xxx_rtc_alarm\n322:          4          0          0          0          0          0          0          0  pmic_arb 51380239 Edge      pm-adc5\n323:          0          0          0          0          0          0          0          0  pmic_arb 55574544 Edge      thr-int-en\n324:          0          0          0          0          0          0          0          0  pmic_arb 574619691 Edge      qcom,temp-alarm\n325:          0          0          0          0          0          0          0          0  pmic_arb 721485883 Edge      ptrain-done\n335:          0          0          0          0          0          0          0          0  pmic_arb 560988197 Edge      sig-tx\n336:          0          0          0          0          0          0          0          0  pmic_arb 561053733 Edge      sig-rx\n337:          0          0          0          0          0          0          0          0  pmic_arb 561119269 Edge      msg-tx\n338:          0          0          0          0          0          0          0          0  pmic_arb 561184805 Edge      msg-rx\n339:          0          0          0          0          0          0          0          0  pmic_arb 561250341 Edge      msg-tx-failed\n340:          0          0          0          0          0          0          0          0  pmic_arb 561315877 Edge      msg-tx-discarded\n341:          0          0          0          0          0          0          0          0  pmic_arb 561381413 Edge      msg-rx-discarded\n343:          0          0          0          0          0          0          0          0  pmic_arb 567279658 Edge      bcl-lvl0\n344:          0          0          0          0          0          0          0          0  pmic_arb 567345194 Edge      bcl-lvl1\n345:          0          0          0          0          0          0          0          0  pmic_arb 567410730 Edge      bcl-lvl2\n346:          9          0          0          0          0          0          0          0  pmic_arb 588251180 Edge      pm-adc5\n347:          0          0          0          0          0          0          0          0  pmic_arb 592445485 Edge      thr-int-en\n350:          0          0          0          0          0          0          0          0  pmic_arb 1111490635 Edge      qcom,temp-alarm\n360:          5          0          0          0          0          0          0          0  pmic_arb 1125122124 Edge      pm-adc5\n361:          0          0          0          0          0          0          0          0  pmic_arb 1137705038 Edge      bcl-lvl0\n362:          0          0          0          0          0          0          0          0  pmic_arb 1137770574 Edge      bcl-lvl1\n363:          0          0          0          0          0          0          0          0  pmic_arb 1137836110 Edge      bcl-lvl2\n364:          0          0          0          0          0          0          0          0  pmic_arb 1129316429 Edge      thr-int-en\n365:          0          0          0          0          0          0          0          0  pmic_arb 1563426913 Edge      qpnp_flash_led_fault_irq\n366:          0          0          0          0          0          0          0          0  pmic_arb 1563623521 Edge      qpnp_flash_led_all_ramp_down_done_irq\n367:          0          0          0          0          0          0          0          0  pmic_arb 1563689057 Edge      qpnp_flash_led_all_ramp_up_done_irq\n372:          6          0          0          0          0          0          0          0      ipcc   0 Edge      qcom,qmp-aop\n373:          1          0          0          0          0          0          0          0   msmgpio  81 Edge      msm_pcie_wake\n374:          0          0          0          0          0          0          0          0   msmgpio  87 Edge      msm_pcie_wake\n375:          0          0          0          0          0          0          0          0      ipcc 196610 Edge      smp2p\n376:          0          0          0          0          0          0          0          0      ipcc 262146 Edge      smp2p\n377:          0          0          0          0          0          0          0          0      ipcc 393218 Edge      smp2p\n378:          0          0          0          0          0          0          0          0      ipcc 458754 Edge      smp2p\n379:          0          0          0          0          0          0          0          0     smp2p   2 Edge      adsp\n380:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n381:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n382:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n383:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n384:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n385:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n386:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n387:          0          0          0          0          0          0          0          0     smp2p   2 Edge      slpi\n388:          0          0          0          0          0          0          0          0     smp2p   0 Edge      slpi\n389:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n390:          0          0          0          0          0          0          0          0     smp2p   3 Edge      slpi\n391:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n392:          0          0          0          0          0          0          0          0      qsee  32 Level     qsee_ipc_irq_spss\n394:          0          0          0          0          0          0          0          0     GICv3 165 Level     dwc3\n396:          0          0          0          0          0          0          0          0   msmgpio  39 Edge      fts_ts\n429:          0          0          0          0          0          0          0          0   msmgpio 111 Level     nq-nci\n430:          0          0          0          0          0          0          0          0  pmic_arb 603979823 Edge      soc-update\n431:          0          0          0          0          0          0          0          0  pmic_arb 604045359 Edge      soc-ready\n432:          0          0          0          0          0          0          0          0  pmic_arb 604110895 Edge      bsoc-delta\n433:          0          0          0          0          0          0          0          0  pmic_arb 604176431 Edge      msoc-delta\n434:          0          0          0          0          0          0          0          0  pmic_arb 604241967 Edge      msoc-low\n435:          0          0          0          0          0          0          0          0  pmic_arb 604307503 Edge      msoc-empty\n436:          0          0          0          0          0          0          0          0  pmic_arb 604373039 Edge      msoc-high\n437:          0          0          0          0          0          0          0          0  pmic_arb 604438575 Edge      msoc-full\n438:          0          0          0          0          0          0          0          0  pmic_arb 605028400 Edge      vbatt-low\n439:          0          0          0          0          0          0          0          0  pmic_arb 605093936 Edge      vbatt-pred-delta\n440:          0          0          0          0          0          0          0          0  pmic_arb 605225008 Edge      esr-delta\n441:          0          0          0          0          0          0          0          0  pmic_arb 606076977 Edge      batt-missing\n442:          0          0          0          0          0          0          0          0  pmic_arb 606142513 Edge      batt-id\n443:          0          0          0          0          0          0          0          0  pmic_arb 606208049 Edge      batt-temp-delta\n444:          0          0          0          0          0          0          0          0  pmic_arb 606273585 Edge      batt-temp-hot\n445:          0          0          0          0          0          0          0          0  pmic_arb 606339121 Edge      batt-temp-cold\n446:          0          0          0          0          0          0          0          0  pmic_arb 607125554 Edge      ima-rdy\n447:          0          0          0          0          0          0          0          0  pmic_arb 607191090 Edge      ima-xcp\n448:          0          0          0          0          0          0          0          0  pmic_arb 607256626 Edge      dma-xcp\n449:         53          0          0          0          0          0          0          0  pmic_arb 607322162 Edge      dma-grant\n450:          0          0          0          0          0          0          0          0  pmic_arb 607387698 Edge      mem-attn\n451:          0          0          0          0          0          0          0          0   msmgpio 129 Edge      aw8697\n454:          0          0          0          0          0          0          0          0   msmgpio   1 Edge      mdm errfatal\n455:          0          0          0          0          0          0          0          0   msmgpio   3 Edge      mdm status\n456:          0          0          0          0          0          0          0          0   msmgpio  51 Edge      esd_err_irq\n457:          0          0          0          0          0          0          0          0   msmgpio  66 Edge      TE_GPIO\n458:          0          0          0          0          0          0          0          0   msmgpio 113 Level     cs35l41\n459:          0          0          0          0          0          0          0          0   msmgpio  68 Edge      bq2597x charger irq\n460:          0          0          0          0          0          0          0          0   msmgpio  84 Edge      i2c_pmic_stat_irq\n461:          0          0          0          0          0          0          0          0  i2c_pmic_irq_chip 2320 Edge      ocp\n464:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n465:          0          0          0          0          0          0          0          0   msmgpio 112 Level     cs35l41\n466:          0          0          0          0          0          0          0          0  pmic_arb 553648158 Edge      chgr-error\n467:          0          0          0          0          0          0          0          0  pmic_arb 553713694 Edge      chg-state-change\n473:          0          0          0          0          0          0          0          0  pmic_arb 554696735 Edge      otg-fail\n476:          0          0          0          0          0          0          0          0  pmic_arb 554958879 Edge      high-duty-cycle\n477:          0          0          0          0          0          0          0          0  pmic_arb 555024415 Edge      input-current-limiting\n479:          0          0          0          0          0          0          0          0  pmic_arb 555155487 Edge      switcher-power-ok\n480:          0          0          0          0          0          0          0          0  pmic_arb 555745312 Edge      bat-temp\n481:          0          0          0          0          0          0          0          0  pmic_arb 555876384 Edge      bat-ov\n482:          0          0          0          0          0          0          0          0  pmic_arb 555941920 Edge      bat-low\n483:          0          0          0          0          0          0          0          0  pmic_arb 556007456 Edge      bat-therm-or-id-missing\n484:          0          0          0          0          0          0          0          0  pmic_arb 556072992 Edge      bat-terminal-missing\n487:          0          0          0          0          0          0          0          0  pmic_arb 556793889 Edge      usbin-collapse\n488:          0          0          0          0          0          0          0          0  pmic_arb 556859425 Edge      usbin-vashdn\n489:          0          0          0          0          0          0          0          0  pmic_arb 556924961 Edge      usbin-uv\n490:          0          0          0          0          0          0          0          0  pmic_arb 556990497 Edge      usbin-ov\n491:          0          0          0          0          0          0          0          0  pmic_arb 557056033 Edge      usbin-plugin\n493:          0          0          0          0          0          0          0          0  pmic_arb 557187105 Edge      usbin-src-change\n494:          0          0          0          0          0          0          0          0  pmic_arb 557252641 Edge      usbin-icl-change\n496:          0          0          0          0          0          0          0          0  pmic_arb 557973538 Edge      dcin-uv\n497:          0          0          0          0          0          0          0          0  pmic_arb 558039074 Edge      dcin-ov\n498:          0          0          0          0          0          0          0          0  pmic_arb 558104610 Edge      dcin-plugin\n500:          0          0          0          0          0          0          0          0  pmic_arb 558235682 Edge      dcin-pon\n501:          0          0          0          0          0          0          0          0  pmic_arb 558301218 Edge      dcin-en\n502:          0          0          0          0          0          0          0          0  pmic_arb 558891043 Edge      typec-or-rid-detect-change\n504:          0          0          0          0          0          0          0          0  pmic_arb 559022115 Edge      typec-cc-state-change\n505:          0          0          0          0          0          0          0          0  pmic_arb 559087651 Edge      typec-vconn-oc\n507:          0          0          0          0          0          0          0          0  pmic_arb 559218723 Edge      typec-attach-detach\n508:          0          0          0          0          0          0          0          0  pmic_arb 559284259 Edge      typec-legacy-cable-detect\n510:          0          0          0          0          0          0          0          0  pmic_arb 559939620 Edge      wdog-snarl\n511:          0          0          0          0          0          0          0          0  pmic_arb 560005156 Edge      wdog-bark\n513:          0          0          0          0          0          0          0          0  pmic_arb 560136228 Edge      aicl-done\n514:          0          0          0          0          0          0          0          0  pmic_arb 560201764 Edge      smb-en\n515:          0          0          0          0          0          0          0          0  pmic_arb 560332836 Edge      temp-change\nIPI0:        79         30         31         31         25         25         26         25       Rescheduling interrupts\nIPI1:         0          6          6          6          6          6          6          6       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:       438          8          7          7          7          7          8          7       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8250ac/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    5 root      0:01 [kworker/0:0+eve]\n    6 root      0:00 [kworker/0:0H-ev]\n    7 root      0:00 [kworker/u16:0+M]\n    8 root      0:00 [mm_percpu_wq]\n    9 root      0:00 [ksoftirqd/0]\n   10 root      0:00 [rcu_preempt]\n   11 root      0:00 [rcu_sched]\n   12 root      0:00 [rcu_bh]\n   13 root      0:00 [rcuop/0]\n   14 root      0:00 [rcuos/0]\n   15 root      0:00 [rcuob/0]\n   16 root      0:00 [migration/0]\n   17 root      0:00 [cpuhp/0]\n   18 root      0:00 [cpuhp/1]\n   19 root      0:00 [migration/1]\n   20 root      0:00 [ksoftirqd/1]\n   21 root      0:00 [kworker/1:0-mm_]\n   22 root      0:00 [kworker/1:0H-ev]\n   23 root      0:00 [rcuop/1]\n   24 root      0:00 [rcuos/1]\n   25 root      0:00 [rcuob/1]\n   26 root      0:00 [cpuhp/2]\n   27 root      0:00 [migration/2]\n   28 root      0:00 [ksoftirqd/2]\n   30 root      0:00 [kworker/2:0H-ev]\n   31 root      0:00 [rcuop/2]\n   32 root      0:00 [rcuos/2]\n   33 root      0:00 [rcuob/2]\n   35 root      0:00 [cpuhp/3]\n   36 root      0:00 [migration/3]\n   37 root      0:00 [ksoftirqd/3]\n   39 root      0:00 [kworker/3:0H-ev]\n   40 root      0:00 [rcuop/3]\n   41 root      0:00 [rcuos/3]\n   42 root      0:00 [rcuob/3]\n   43 root      0:00 [cpuhp/4]\n   44 root      0:00 [migration/4]\n   45 root      0:00 [ksoftirqd/4]\n   47 root      0:00 [kworker/4:0H-ev]\n   48 root      0:00 [rcuop/4]\n   49 root      0:00 [rcuos/4]\n   50 root      0:00 [rcuob/4]\n   51 root      0:00 [cpuhp/5]\n   52 root      0:00 [migration/5]\n   53 root      0:00 [ksoftirqd/5]\n   55 root      0:00 [kworker/5:0H-ev]\n   56 root      0:00 [rcuop/5]\n   57 root      0:00 [rcuos/5]\n   58 root      0:00 [rcuob/5]\n   59 root      0:00 [cpuhp/6]\n   60 root      0:00 [migration/6]\n   61 root      0:00 [ksoftirqd/6]\n   63 root      0:00 [kworker/6:0H-ev]\n   64 root      0:00 [rcuop/6]\n   65 root      0:00 [rcuos/6]\n   66 root      0:00 [rcuob/6]\n   67 root      0:00 [cpuhp/7]\n   68 root      0:00 [migration/7]\n   69 root      0:00 [ksoftirqd/7]\n   71 root      0:00 [kworker/7:0H-ev]\n   72 root      0:00 [rcuop/7]\n   73 root      0:00 [rcuos/7]\n   74 root      0:00 [rcuob/7]\n   75 root      0:00 [netns]\n   76 root      0:00 [rcu_tasks_kthre]\n   77 root      0:00 [kauditd]\n   78 root      0:00 [kworker/u16:1+L]\n   79 root      0:00 [kworker/u17:0-u]\n   80 root      0:00 [ipa_usb_wq]\n   81 root      0:00 [msm_watchdog]\n   82 root      0:00 [kworker/0:1H-ev]\n   83 root      0:00 [qmp_aop]\n   84 root      0:00 [oom_reaper]\n   85 root      0:00 [writeback]\n   86 root      0:00 [kcompactd0]\n   87 root      0:00 [crypto]\n   92 root      0:00 [kblockd]\n   93 root      0:00 [blk_crypto_wq]\n   94 root      0:00 [irq/154-arm-smm]\n   95 root      0:00 [irq/155-arm-smm]\n   96 root      0:00 [irq/164-arm-smm]\n   97 root      0:00 [irq/165-arm-smm]\n   98 root      0:00 [longpress]\n   99 root      0:00 [irq/39-tsens-up]\n  100 root      0:00 [irq/40-tsens-cr]\n  101 root      0:00 [irq/41-tsens-up]\n  102 root      0:00 [irq/42-tsens-cr]\n  103 root      0:00 [edac-poller]\n  104 root      0:00 [irq/8-dcvsh-irq]\n  105 root      0:00 [irq/9-dcvsh-irq]\n  106 root      0:00 [irq/10-dcvsh-ir]\n  107 root      0:00 [system]\n  108 root      0:00 [ipa_power_mgmt]\n  109 root      0:00 [transport_power]\n  110 root      0:00 [ipa_pm_activate]\n  111 root      0:00 [irq/171-arm-smm]\n  112 root      0:00 [irq/172-arm-smm]\n  113 root      0:00 [irq/173-arm-smm]\n  114 root      0:00 [irq/174-arm-smm]\n  115 root      0:00 [devfreq_wq]\n  116 root      0:00 [governor_msm_ad]\n  117 root      0:00 [irq/175-arm-smm]\n  118 root      0:00 [irq/176-arm-smm]\n  119 root      0:00 [kworker/0:2+eve]\n  120 root      0:00 [irq/177-arm-smm]\n  121 root      0:00 [mptcp_wq]\n  122 root      0:00 [cfg80211]\n  165 root      0:00 [kswapd0]\n  166 root      0:00 [ecryptfs-kthrea]\n  167 root      0:00 [kdamond.0]\n  206 root      0:00 [irq/178-arm-smm]\n  207 root      0:00 [irq/179-arm-smm]\n  208 root      0:00 [irq/180-arm-smm]\n  209 root      0:00 [irq/375-smp2p]\n  210 root      0:00 [irq/376-smp2p]\n  211 root      0:00 [irq/377-smp2p]\n  212 root      0:00 [geni_serial_dum]\n  213 root      0:00 [hwrng]\n  215 root      0:00 [diag_real_time_]\n  216 root      0:00 [diag_wq]\n  217 root      0:00 [DIAG_USB_diag]\n  218 root      0:00 [diag_cntl_wq]\n  219 root      0:00 [diag_dci_wq]\n  220 root      0:00 [MODEM_CNTL]\n  221 root      0:00 [MODEM_DATA]\n  222 root      0:00 [MODEM_CMD]\n  223 root      0:00 [MODEM_DCI]\n  224 root      0:00 [MODEM_DCI_CMD]\n  225 root      0:00 [LPASS_CNTL]\n  226 root      0:00 [LPASS_DATA]\n  227 root      0:00 [LPASS_CMD]\n  228 root      0:00 [LPASS_DCI]\n  229 root      0:00 [LPASS_DCI_CMD]\n  230 root      0:00 [WCNSS_CNTL]\n  231 root      0:00 [WCNSS_DATA]\n  232 root      0:00 [WCNSS_CMD]\n  233 root      0:00 [WCNSS_DCI]\n  234 root      0:00 [WCNSS_DCI_CMD]\n  235 root      0:00 [SENSORS_CNTL]\n  236 root      0:00 [SENSORS_DATA]\n  237 root      0:00 [SENSORS_CMD]\n  238 root      0:00 [SENSORS_DCI]\n  239 root      0:00 [SENSORS_DCI_CMD]\n  240 root      0:00 [DIAG_CTRL]\n  241 root      0:00 [DIAG_DATA]\n  242 root      0:00 [DIAG_CMD]\n  243 root      0:00 [DIAG_DCI_DATA]\n  244 root      0:00 [DIAG_DCI_CMD]\n  245 root      0:00 [CDSP_CNTL]\n  246 root      0:00 [CDSP_DATA]\n  247 root      0:00 [CDSP_CMD]\n  248 root      0:00 [CDSP_DCI]\n  249 root      0:00 [CDSP_DCI_CMD]\n  250 root      0:00 [NPU_CNTL]\n  251 root      0:00 [NPU_DATA]\n  252 root      0:00 [NPU_CMD]\n  253 root      0:00 [NPU_DCI]\n  254 root      0:00 [NPU_DCI_CMD]\n  255 root      0:00 [DIAG_RPMSG_DIAG]\n  256 root      0:00 [DIAG_RPMSG_DIAG]\n  257 root      0:00 [DIAG_RPMSG_DIAG]\n  258 root      0:00 [DIAG_RPMSG_DIAG]\n  259 root      0:00 [DIAG_RPMSG_DIAG]\n  260 root      0:00 [DIAG_RPMSG_DIAG]\n  261 root      0:00 [DIAG_RPMSG_DIAG]\n  262 root      0:00 [DIAG_RPMSG_DIAG]\n  263 root      0:00 [DIAG_RPMSG_DIAG]\n  264 root      0:00 [DIAG_RPMSG_DIAG]\n  265 root      0:00 [DIAG_RPMSG_APPS]\n  266 root      0:00 [DIAG_RPMSG_APPS]\n  267 root      0:00 [DIAG_RPMSG_DIAG]\n  268 root      0:00 [DIAG_RPMSG_DIAG]\n  269 root      0:00 [DIAG_RPMSG_DIAG]\n  270 root      0:00 [DIAG_RPMSG_DIAG]\n  271 root      0:00 [DIAG_RPMSG_DIAG]\n  272 root      0:00 [DIAG_RPMSG_DIAG]\n  273 root      0:00 [DIAG_RPMSG_DIAG]\n  274 root      0:00 [DIAG_RPMSG_DIAG]\n  275 root      0:00 [diag_mhi_MDM]\n  276 root      0:00 [kworker/u16:2+W]\n  277 root      0:00 [DIAG_USB_diag_m]\n  278 root      0:00 [kworker/u16:3+S]\n  279 root      0:00 [kworker/u16:4+D]\n  280 root      0:00 [diag_mhi_MDM_DC]\n  281 root      0:00 [kworker/u16:5+C]\n  282 root      0:00 [diag_dci_MDM_DC]\n  283 root      0:00 [kworker/u16:6+N]\n  284 root      0:00 [diag_mhi_MDM_2]\n  286 root      0:00 [DIAG_USB_diag_m]\n  287 root      0:00 [diag_mhi_MDM_DC]\n  288 root      0:00 [diag_dci_MDM_DC]\n  289 root      0:00 [kgsl-workqueue]\n  290 root      0:00 [kgsl-mementry]\n  291 root      0:00 [kgsl_worker_thr]\n  293 root      0:00 [qseecom-unreg-l]\n  294 root      0:00 [qseecom-unload-]\n  295 root      0:00 [irq/181-arm-smm]\n  296 root      0:00 [irq/182-arm-smm]\n  297 root      0:00 [irq/183-arm-smm]\n  298 root      0:00 [qcrypto_seq_res]\n  299 root      0:00 [irq/184-arm-smm]\n  320 root      0:00 [bond0]\n  321 root      0:00 [scsi_eh_0]\n  323 root      0:00 [scsi_tmf_0]\n  324 root      0:00 [spi0]\n  325 root      0:00 [atlantic-fwd]\n  326 root      0:00 [spi1]\n  327 root      0:00 [irq/185-arm-smm]\n  328 root      0:00 [ufs_pm_qos_0]\n  331 root      0:00 [kworker/1:1-eve]\n  332 root      0:00 [kworker/2:1-eve]\n  333 root      0:00 [kworker/3:1-eve]\n  334 root      0:00 [kworker/4:1-eve]\n  335 root      0:00 [kworker/5:1-eve]\n  336 root      0:00 [kworker/6:1-eve]\n  337 root      0:00 [kworker/7:1-eve]\n  339 root      0:00 [ufs_recovery_wq]\n  341 root      0:00 [ufs_clk_gating_]\n  343 root      0:00 [k_ipa_usb]\n  346 root      0:00 [fts_wq]\n  347 root      0:00 [irq/186-arm-smm]\n  348 root      0:00 [irq/187-arm-smm]\n  349 root      0:00 [irq/396-fts_ts]\n  351 root      0:00 [kworker/u17:2]\n  352 root      0:00 [kworker/u16:11-]\n  354 root      0:00 [kworker/u16:13-]\n  355 root      0:06 [kworker/u16:14-]\n  356 root      0:00 [msm_cvp_workerq]\n  358 root      0:00 [pm_workerq_iris]\n  360 root      0:00 [irq/188-arm-smm]\n  361 root      0:00 [irq/189-arm-smm]\n  362 root      0:00 [irq/190-arm-smm]\n  363 root      0:00 [irq/191-arm-smm]\n  364 root      0:00 [npu_general_wq]\n  365 root      0:00 [irq/325-ptrain-]\n  367 root      0:00 [irq/430-soc-upd]\n  368 root      0:00 [irq/431-soc-rea]\n  369 root      0:00 [irq/432-bsoc-de]\n  370 root      0:00 [irq/433-msoc-de]\n  371 root      0:00 [irq/434-msoc-lo]\n  372 root      0:00 [irq/435-msoc-em]\n  373 root      0:00 [irq/436-msoc-hi]\n  374 root      0:00 [irq/437-msoc-fu]\n  375 root      0:00 [irq/438-vbatt-l]\n  376 root      0:00 [irq/439-vbatt-p]\n  377 root      0:00 [irq/440-esr-del]\n  378 root      0:00 [irq/441-batt-mi]\n  379 root      0:00 [irq/442-batt-id]\n  380 root      0:00 [irq/443-batt-te]\n  381 root      0:00 [irq/444-batt-te]\n  382 root      0:00 [irq/445-batt-te]\n  383 root      0:00 [irq/446-ima-rdy]\n  384 root      0:00 [irq/447-ima-xcp]\n  385 root      0:00 [irq/448-dma-xcp]\n  386 root      0:00 [irq/449-dma-gra]\n  387 root      0:00 [irq/450-mem-att]\n  388 root      0:00 [irq/343-bcl-lvl]\n  389 root      0:00 [irq/344-bcl-lvl]\n  390 root      0:00 [irq/345-bcl-lvl]\n  391 root      0:00 [irq/361-bcl-lvl]\n  392 root      0:00 [irq/362-bcl-lvl]\n  393 root      0:00 [irq/451-aw8697]\n  394 root      0:00 [irq/363-bcl-lvl]\n  395 root      0:00 [aw8976_vibrator]\n  396 root      0:00 [kworker/1:1H-ev]\n  397 root      0:00 [kworker/2:1H]\n  398 root      0:00 [kworker/3:1H]\n  399 root      0:00 [kworker/4:1H-ev]\n  400 root      0:00 [kworker/5:1H]\n  401 root      0:00 [kworker/6:1H]\n  402 root      0:00 [kworker/7:1H]\n  403 root      0:00 [dm_bufio_cache]\n  404 root      0:00 [irq/28-KRYO L3-]\n  405 root      0:00 [memlat_wq]\n  406 root      0:00 [irq/192-arm-smm]\n  407 root      0:00 [irq/455-mdm sta]\n  408 root      0:00 [irq/193-arm-smm]\n  409 root      0:00 [uaudio_svc]\n  410 root      0:00 [dsi_dma_cmd_wor]\n  411 root      0:00 [dsi_dma_cmd_wor]\n  412 root      0:00 [msm_vidc_worker]\n  413 root      0:00 [disp_fod:0]\n  414 root      0:00 [pm_workerq_venu]\n  415 root      0:00 [vidc_core_workq]\n  416 root      0:00 [irq/170-arm-smm]\n  417 root      0:00 [irq/194-arm-smm]\n  418 root      0:00 [irq/195-arm-smm]\n  419 root      0:00 [irq/196-arm-smm]\n  420 root      0:00 [irq/456-esd_err]\n  421 root      0:00 [irq/197-arm-smm]\n  422 root      0:00 [irq/198-arm-smm]\n  423 root      0:00 [crtc_commit:128]\n  424 root      0:00 [apr_driver]\n  425 root      0:00 [crtc_event:128]\n  426 root      0:00 [irq/458-cs35l41]\n  427 root      0:00 [crtc_commit:183]\n  428 root      0:00 [irq/459-bq2597x]\n  429 root      0:00 [crtc_event:183]\n  430 root      0:00 [irq/460-i2c_pmi]\n  431 root      0:00 [pp_event]\n  432 root      0:00 [irq/199-arm-smm]\n  433 root      0:00 [irq/200-arm-smm]\n  434 root      0:00 [irq/201-arm-smm]\n  435 root      0:00 [irq/202-arm-smm]\n  436 root      0:00 [irq/203-arm-smm]\n  437 root      0:00 [irq/465-cs35l41]\n  438 root      0:00 [cam-cpas]\n  439 root      0:00 [qcom,cam_virtua]\n  440 root      0:00 [qcom,cam170-cpa]\n  441 root      0:00 [cam_cci_wq]\n  442 root      0:00 [cam_cci_wq]\n  443 root      0:00 [cam_cci_wq]\n  444 root      0:00 [cam_cci_wq]\n  445 root      0:00 [ipv6_addrconf]\n  446 root      0:00 [kworker/0:3+eve]\n  448 root      0:00 [kworker/0:5-eve]\n  449 root      0:00 [irq/378-smp2p]\n  451 root      0:00 [irq/156-arm-smm]\n  452 root      0:00 [irq/157-arm-smm]\n  454 root      0:00 [irq/158-arm-smm]\n  456 root      0:00 [irq/159-arm-smm]\n  458 root      0:00 [kgsl-events]\n  460 root      0:00 [kgsl_devfreq_wq]\n  463 root      0:00 [c440000.qcom,sp]\n  464 root      0:00 [irq/466-chgr-er]\n  466 root      0:00 [irq/467-chg-sta]\n  467 root      0:00 [kworker/0:7-eve]\n  468 root      0:00 [irq/473-otg-fai]\n  469 root      0:00 [kworker/0:8+eve]\n  470 root      0:00 [irq/476-high-du]\n  471 root      0:00 [irq/477-input-c]\n  472 root      0:00 [irq/479-switche]\n  473 root      0:00 [irq/480-bat-tem]\n  474 root      0:00 [irq/481-bat-ov]\n  475 root      0:00 [irq/482-bat-low]\n  476 root      0:00 [irq/483-bat-the]\n  477 root      0:00 [irq/484-bat-ter]\n  478 root      0:00 [irq/487-usbin-c]\n  479 root      0:00 [irq/488-usbin-v]\n  480 root      0:00 [irq/489-usbin-u]\n  481 root      0:00 [irq/490-usbin-o]\n  482 root      0:00 [irq/491-usbin-p]\n  483 root      0:00 [irq/493-usbin-s]\n  484 root      0:00 [irq/494-usbin-i]\n  485 root      0:00 [irq/496-dcin-uv]\n  486 root      0:00 [irq/497-dcin-ov]\n  487 root      0:00 [irq/498-dcin-pl]\n  488 root      0:00 [irq/500-dcin-po]\n  489 root      0:00 [irq/501-dcin-en]\n  490 root      0:00 [irq/502-typec-o]\n  491 root      0:00 [irq/504-typec-c]\n  492 root      0:00 [irq/505-typec-v]\n  493 root      0:00 [irq/507-typec-a]\n  494 root      0:00 [irq/508-typec-l]\n  495 root      0:00 [irq/510-wdog-sn]\n  496 root      0:00 [irq/511-wdog-ba]\n  497 root      0:00 [irq/513-aicl-do]\n  498 root      0:00 [irq/514-smb-en]\n  499 root      0:00 [irq/515-temp-ch]\n  500 root      0:00 [irq/314-qcom,te]\n  501 root      0:00 [irq/324-qcom,te]\n  502 root      0:00 [irq/350-qcom,te]\n  503 root      0:00 [irq/323-thr-int]\n  504 root      0:00 [irq/347-thr-int]\n  505 root      0:00 [irq/364-thr-int]\n  511 root      0:00 [irq/335-sig-tx]\n  512 root      0:00 [irq/336-sig-rx]\n  513 root      0:00 [irq/264-pwr_eve]\n  514 root      0:00 [irq/263-dp_hs_p]\n  515 root      0:00 [irq/266-dm_hs_p]\n  516 root      0:00 [irq/265-ss_phy_]\n  517 root      0:00 [usb_bam_wq]\n  518 root      0:00 [core_ctl/0]\n  519 root      0:00 [core_ctl/4]\n  520 root      0:00 [core_ctl/7]\n  521 root      0:00 [rq_stats]\n  522 root      0:00 [msm_perf:events]\n  523 root      0:00 [cdsprm-wq]\n  524 root      0:00 [cdsprm-wq-delay]\n  525 root      0:00 [irq/204-arm-smm]\n  526 root      0:00 [irq/205-arm-smm]\n  527 root      0:00 [irq/206-arm-smm]\n  528 root      0:00 [irq/207-arm-smm]\n  529 root      0:00 [irq/208-arm-smm]\n  530 root      0:00 [irq/209-arm-smm]\n  531 root      0:00 [irq/210-arm-smm]\n  532 root      0:00 [irq/211-arm-smm]\n  533 root      0:00 [irq/212-arm-smm]\n  534 root      0:00 [irq/213-arm-smm]\n  535 root      0:00 [irq/214-arm-smm]\n  536 root      0:00 [irq/215-arm-smm]\n  537 root      0:00 [irq/216-arm-smm]\n  538 root      0:00 [irq/217-arm-smm]\n  539 root      0:00 [irq/218-arm-smm]\n  540 root      0:00 [irq/219-arm-smm]\n  541 root      0:00 [sb-1]\n  542 root      0:00 [ngd_rx_thread1]\n  543 root      0:00 [ngd_notify_sl1]\n  544 root      0:00 [irq/367-qpnp_fl]\n  545 root      0:00 [irq/366-qpnp_fl]\n  546 root      0:00 [irq/365-qpnp_fl]\n  559 root      0:00 [kworker/2:2]\n  560 root      0:00 [kworker/3:2]\n  561 root      0:00 [kworker/4:2-eve]\n  562 root      0:00 [kworker/5:2]\n  563 root      0:00 [kworker/6:2]\n  564 root      0:00 [kworker/7:2-eve]\n  644 root      0:00 [kworker/0:4-eve]\n  690 root      0:00 [kworker/0:1-eve]\n  739 root      0:00 [kworker/0:6-eve]\n  786 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm8250ac/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1114.090271,3.7136342366666666,35.24690401027601,9.491808742661513,31.6061994224169,269.294822033\r\n1,403200,1497.319798,3.7135907688492065,31.52797238253255,6.317214536923223,47.48928475462446,200.368563518\r\n1,518400,1925.17487,3.7136860918209877,24.047332337786997,3.7474909746910257,80.05356170997436,155.838116347\r\n1,614400,2281.403519,3.713221873372396,27.866711879732755,3.664635289967465,81.86353518487878,131.50583771\r\n1,691200,2566.713153,3.713416019965278,31.426562563275787,3.6733506606115927,81.66930623227015,116.886810424\r\n1,787200,2923.150377,3.71335159679878,36.54505374672541,3.7507860867637497,79.98323366365203,102.634575742\r\n1,883200,3279.512883,3.7132165794836953,40.70979018534057,3.7242345178176985,80.553466374022,91.482527934\r\n1,979200,3635.834788,3.7130665727124184,46.30177808414628,3.820634760110914,78.52098377267838,82.515940385\r\n1,1075200,3992.069089,3.7128618759300593,50.614576097666585,3.803811037743682,78.8682710637361,75.152482368\r\n1,1171200,4349.023644,3.713305706967213,52.72843417938227,3.637417318832455,82.47610150388094,68.983981327\r\n1,1248000,4634.135039,3.7132492299679485,60.8427626690312,3.9389956221273748,76.16154694733473,64.740577997\r\n1,1344000,4990.601035,3.713244817708333,62.39147333573326,3.7508060054320613,79.98280891241203,60.117285342\r\n1,1420800,5275.931202,3.713352478885135,69.37069204912498,3.9447158243265226,76.05110567152671,56.864299718\r\n1,1516800,5632.322019,3.7132924703322785,74.90259065120752,3.989789987766103,75.19192762523599,53.266381751\r\n1,1612800,5989.099838,3.7134795622519845,79.53836068399998,3.984401092812883,75.29362456534412,50.094081127\r\n1,1708800,6345.446085,3.7133930740870786,86.03858098614889,4.06801121656174,73.74610934665964,47.281244878\r\n1,1804800,6701.813958,3.7133277692819147,94.67592711529532,4.2383043520024,70.78302431449126,44.766441493\r\n4,710400,6027.606437,8.48480635838964,103.69047272081625,5.162056743944379,58.11637005965321,49.783327325\r\n4,825600,7006.399178,8.486433112887596,122.09668378397615,5.229552974763365,57.36627995695461,42.831244983\r\n4,940800,7979.572295,8.481688238732994,145.75708411262156,5.481760440523832,54.72694461112429,37.608878319\r\n4,1056000,8947.478302,8.472990816287878,167.10412478248477,5.604925610221309,53.52434998475468,33.541515612\r\n4,1171200,9932.130442,8.48030263148907,188.9867322894,5.710710291630579,52.532869762220244,30.217519624\r\n4,1286400,10912.662326,8.483101932524875,213.881944483037,5.882653769119013,50.997391955115525,27.504209312\r\n4,1382400,11727.912432,8.483732951388887,228.11115944755994,5.838109469763457,51.38649789863483,25.593265511\r\n4,1478400,12521.390709,8.469555403814933,262.61929254004343,6.295264881772096,47.654865304976816,23.971067856\r\n4,1574400,13355.889947,8.483161805767276,288.74675830331813,6.489283123958129,46.230067985847946,22.473960096\r\n4,1670400,14179.704117,8.48880754130747,320.80128985661906,6.791175417761177,44.174974366793776,21.169414315\r\n4,1766400,14985.763525,8.483788227468297,351.2858985896841,7.037010493300933,42.63173975448706,20.032146242\r\n4,1862400,15806.944518,8.487405776417525,399.3116056893888,7.583543389690698,39.55934377692481,18.991542649\r\n4,1958400,16601.184218,8.47691187602124,402.995791114,7.287632589262171,41.16563181876506,18.08364442\r\n4,2054400,17425.650558,8.482111837032711,468.32808578805873,8.069036993220852,37.179157841517274,17.229453535\r\n4,2150400,18255.948397,8.489559336402529,517.4493802168749,8.509387328199683,35.2551821217275,16.444869109\r\n4,2246400,19059.720457,8.484562169248575,567.0167211722666,8.932230913916452,33.586234266805484,15.753029109\r\n4,2342400,19872.81399,8.483954059938524,620.0452808725998,9.36806925049102,32.02367446037781,15.108685671\r\n4,2419200,20521.239483,8.482655209573414,669.4532564329999,9.794988372701711,30.627907720246967,14.631325307\r\n7,844800,7157.683774,8.472637043087122,133.2507107792439,5.5866533079132745,53.69941241477466,41.925879984\r\n7,960000,8148.85237,8.488387885416666,157.89463701322214,5.8148289939428315,51.5922308828863,36.827273579\r\n7,1075200,9111.894059,8.474603849516368,182.659333228625,6.016200358018666,49.86536055105717,32.936725716\r\n7,1190400,10089.120565,8.475403700436827,202.30144461203446,6.017941411633079,49.850933978865285,29.747397124\r\n7,1305600,11073.788343,8.481761904871325,228.55017596688882,6.194700305165328,48.42849294095002,27.104334\r\n7,1401600,11857.238844,8.4597879880137,237.97877207599998,6.023968504619019,49.80105718845774,25.313049782\r\n7,1516800,12865.597393,8.482065791798524,280.80287359734774,6.551446166715762,45.79141648513154,23.331122231\r\n7,1632000,13837.638376,8.478945083333334,322.23919361371424,6.990478657237416,42.91551619135588,21.693446346\r\n7,1747200,14830.927427,8.48839710794414,359.4048679055499,7.2750622891167165,41.2367603297076,20.241969263\r\n7,1862400,15796.956453,8.482042769007732,403.5398791253888,7.668503482642351,39.1210619750059,19.003087128\r\n7,1977600,16768.207479,8.47906931583738,445.1902749882352,7.970180485129471,37.640301942939836,17.902862962\r\n7,2073600,17583.963425,8.479920633198304,495.56864401270576,8.461765161898668,35.453595586749344,17.074859889\r\n7,2169600,18419.598453,8.489859168971238,567.9365870074373,9.257769008000462,32.40521552662886,16.300708952\r\n7,2265600,19215.987702,8.48163298993644,588.3433239511332,9.192112732828491,32.63667545422797,15.623722338\r\n7,2361600,19992.003199,8.465448509061654,649.7624350217857,9.758665727507777,30.74190759033363,15.018821036\r\n7,2457600,20834.780193,8.477693763427734,724.6056508961428,10.442802500905623,28.72792049586146,14.411704474\r\n7,2553600,21638.776688,8.473831723057645,791.8294066035384,10.988569901825464,27.301095836880727,13.877446089\r\n7,2649600,22470.226949,8.48061101637983,901.3406022772308,12.045805923332567,24.90493387569062,13.36432187\r\n7,2745600,23300.970874,8.48665897217366,990.9553047859999,12.770627483809749,23.491406383933114,12.887188173\r\n7,2841600,24082.844987,8.475100291033222,1095.6587480561666,13.661527023399993,21.959477845057027,12.468779214\r\n7,3187200,27029.462114,8.480629428338354,1552.9109888583635,17.256022362586172,17.385234771742542,11.112048589\r\n"
  },
  {
    "path": "results/sm8250ac/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 3128.8996321856976, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [929.88742374, 937.5252843040001, 933.79433908, 946.9340992799999, 931.8427016640001, 930.0044193, 943.2039880480002, 929.88742374, 933.79433908, 939.359091924, 937.5842588600001, 933.676866744, 928.169777688, 933.735602912, 939.4181855520001, 945.041317104, 926.160119024, 931.784084568, 937.4663097480001, 939.359091924, 937.407335192, 1324.675704388, 946.9340992799999, 939.359091924, 943.1446562760001, 1322.703693948, 937.2891443809999, 935.51079368, 937.4663097480001], \"power_mean\": 963.2110190724483, \"energy_millijoules\": 4816.055095362241, \"energy_joules\": 4.816055095362241}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 269.294822033, \"elapsed_ns\": 269294822033, \"power_samples\": [20.470282341999905, 20.59085250199996, 11.12157015199989, 9.22926475199995, 20.530567421999876, 18.63450366299992, 403.7952198459999, 14.850131006999959, 14.850131006999959, 20.530567421999876, 20.530567421999876, 1.5970718490000309, 18.57433789899983, 24.193893630000048, 403.7952198459999, 14.730275766999966, 10.942502455999943, 20.470282341999905, 14.730275766999966, 9.169694591999928, 18.57433789899983, 24.254416853999828, 20.349712181999962, 9.110124431999793, 16.62222395099991, 20.349712181999962, 18.454006370999878, 10.942502455999943, 20.349712181999962, 22.180889583999942, 18.454006370999878, 14.610174921999942, 18.454006370999878, 24.133370405999926, 14.670348146999913, 14.670348146999913, 27.92090532899988, 18.39359402599996, 10.942502455999943, 10.822879363999846, 14.610174921999942, 20.349712181999962, 18.454006370999878, 8.990984111999865, 16.562177258999895, 16.501884473999894, 18.33342826199987, 18.33342826199987, 14.550247301999889, 10.822879363999846, 8.990984111999865, 22.180889583999942, 10.703500899999767, 14.550247301999889, 12.658656821999898, 14.550247301999889, 14.550247301999889, 20.108324791999962, 21.99967712800003, 14.430392061999896, 16.321744397999964, 18.273262497999895, 29.629842877999977, 20.108324791999962, 12.59884827399992, 23.891029463999985, 25.786257521999914, 18.21309673399992, 14.430392061999896, 14.430392061999896, 18.21309673399992, 8.752459331999944, 20.108324791999962, 16.261697705999836, 6.8611069959999895, 16.321744397999964, 18.152930969999943, 16.321744397999964, 10.52443320399982, 14.310536821999904, 18.21309673399992, 10.52443320399982, 21.99967712800003, 23.891029463999985, 14.310536821999904, 12.539039725999942, 18.21309673399992, 14.370464441999957, 10.52443320399982, 14.370464441999957, 18.032599441999878, 14.310536821999904, 10.464743971999724, 19.987754631999906, 14.430392061999896, 12.419422629999872, 14.25060920199985, 19.86693740199985, 18.032599441999878, 18.032599441999878, 10.52443320399982, 21.81846467199989, 16.20165101399982, 16.081311536999806, 19.86693740199985, 16.081311536999806, 4.847215393999932, 18.092765205999854, 27.43431438699986, 14.19043597699988, 10.404810111999836, 14.19043597699988, 19.86693740199985, 17.972187096999846, 14.13050835699994, 19.86693740199985, 14.19043597699988, 19.86693740199985, 12.35961408199978, 14.19043597699988, 19.80665232199999, 21.75781296199989, 6.623058991999869, 21.697408809999956, 10.404810111999836, 10.285431647999872, 17.912021332999984, 10.345120879999854, 8.513934551999796, 19.746367241999906, 17.912021332999984, 14.13050835699994, 19.62579708199985, 12.299560416999952, 17.851855568999895, 17.851855568999895, 395.145125164, 14.13050835699994, 15.901171460999876, 19.62579708199985, 10.285431647999872, 15.901171460999876, 12.12013477299979, 15.841124768999748, 402.44109167199997, 10.225742415999775, 19.62579708199985, 27.191267938999886, 15.901171460999876, 13.950725496999894, 19.62579708199985, 17.73152404099983, 404.32720191199985, 12.000517676999948, 13.89079787699984, 13.950725496999894, 13.950725496999894, 19.505226921999906, 4.490981598999838, 17.671358276999968, 392.92268142, 12.000517676999948, 13.770697031999816, 23.4065956259999, 17.671358276999968, 4.372318054999937, 15.721031384999947, 13.950725496999894, 402.3565019959998, 11.880655463999915, 27.069744714999842, 19.505226921999906, 11.880655463999915, 13.830870256999901, 13.710769411999877, 17.49061440399987, 398.58065492399976, 13.89079787699984, 8.096699291999812, 13.710769411999877, 8.156513591999783, 19.505226921999906, 9.927051627999845, 17.55078016799996, 400.3012234289996, 15.660738599999831, 11.820846915999823, 15.600691907999817, 9.927051627999845, 4.312743119999936, 13.710769411999877, 8.03712913199979, 398.41160664599977, 15.600691907999817, 17.370282875999806, 9.927051627999845, 11.820846915999823, 13.710769411999877, 15.540645215999803, 15.420551831999887, 13.710769411999877, 390.78085749900004, 19.324124611999878, 17.430448639999895, 9.927051627999845, 7.977558971999883, 13.650841791999824, 4.253411347999986, 17.31011711199983, 398.074201494, 13.650841791999824, 11.641421271999889, 13.710769411999877, 17.370282875999806, 17.430448639999895, 9.80767316399988, 15.420551831999887, 400.13228222099985, 17.31011711199983, 17.31011711199983, 9.80767316399988, 19.203554451999935, 19.203554451999935, 9.80767316399988, 19.263839531999906, 403.73389350900004, 5.968853371999899, 19.14326937199985, 15.360505139999873, 21.032715579999945, 5.909402283999839, 17.31011711199983, 13.411131311999952, 15.420551831999887, 17.24995134799974, 13.530986551999831, 13.471058931999892, 7.858418651999841, 17.18978558399988, 13.471058931999892, 7.79884849199982, 13.471058931999892, 9.688294699999801, 7.7392783319999126, 13.411131311999952, 19.14326937199985, 11.581612723999797, 13.471058931999892, 13.35095808699998, 19.02245214200002, 7.679464031999942, 13.411131311999952, 17.12937323899996, 13.411131311999952, 17.12937323899996, 13.291030466999928, 7.679464031999942, 15.360505139999873, 13.411131311999952, 13.411131311999952, 9.628605467999819, 15.240165662999857, 17.06920747499987, 3.8378457810000555, 9.508982375999835, 7.679464031999942, 13.291030466999928, 15.120072278999828], \"power_mean\": 35.24690401027601, \"energy_millijoules\": 9491.808742661513, \"energy_joules\": 9.491808742661513, \"coremark_score\": 1114.090271, \"coremarks_per_mhz\": 3.7136342366666666, \"ulpmark_cm_score\": 31.6061994224169}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [931.607993046, 937.2301698250001, 937.3481189370001, 1316.9513038890002], \"power_mean\": 1030.7843964242502, \"energy_millijoules\": 5153.921982121251, \"energy_joules\": 5.1539219821212505}}, \"403200\": {\"active\": {\"elapsed_sec\": 200.368563518, \"elapsed_ns\": 200368563518, \"power_samples\": [22.67982084599987, 13.291030466999928, 18.90188198199985, 20.851255565999963, 24.63330365699983, 18.90188198199985, 9.508982375999835, 20.790851413999803, 17.009041710999895, 15.120072278999828, 17.009041710999895, 16.948875946999806, 18.90188198199985, 26.400868936999814, 13.111247606999882, 13.231102846999875, 13.111247606999882, 20.670043109999938, 13.111247606999882, 16.828544418999854, 14.999978894999913, 22.437727949999953, 20.670043109999938, 16.948875946999806, 7.500753551999878, 16.828544418999854, 22.437727949999953, 20.549234805999845, 18.781311821999907, 7.441183391999857, 16.828544418999854, 16.888710182999944, 22.558774397999855, 26.340107324999963, 28.167957928999954, 7.381613231999836, 14.879885510999884, 16.768378654999765, 20.670043109999938, 18.66074166199985, 18.781311821999907, 18.66074166199985, 20.549234805999845, 18.66074166199985, 12.93146474699995, 14.939932202999898, 18.721026741999935, 14.879885510999884, 14.939932202999898, 12.991392366999776, 12.991392366999776, 16.828544418999854, 22.558774397999855, 22.437727949999953, 9.21053621599981, 16.708212890999903, 16.708212890999903, 22.437727949999953, 22.377204725999945, 11.162707770999873, 22.377204725999945, 31.76544476399988, 12.93146474699995, 14.759546033999754, 18.600456581999993, 20.488830654000026, 16.708212890999903, 20.42817894399991, 16.708212890999903, 18.600456581999993, 16.64780054599987, 16.708212890999903, 14.81983881899987, 9.21053621599981, 26.096811853999952, 22.25591023200002, 12.871291521999751, 18.479639351999936, 22.25591023200002, 20.30737063999993, 16.587634781999895, 18.539924431999793, 24.147914801999946, 22.195387007999898, 20.367774791999864, 12.811363901999925, 24.087272261999942, 22.25591023200002, 20.30737063999993, 7.202658611999823, 12.811363901999925, 22.25591023200002, 26.036050241999988, 12.751436281999872, 20.30737063999993, 16.587634781999895, 18.41935427199985, 14.639452649999953, 12.811363901999925, 18.41935427199985, 25.97528862999991, 18.35906919199988, 7.143088451999915, 12.751436281999872, 22.13486378399989, 27.863304997999876, 18.41935427199985, 18.41935427199985, 18.35906919199988, 18.41935427199985, 16.40713748999997, 8.911845427999765, 16.52746901799992, 27.863304997999876, 22.13486378399989, 25.91452701799983, 22.074340559999996, 14.579405957999825, 22.13486378399989, 24.02662972199994, 18.238499031999936, 16.34697172599988, 8.911845427999765, 14.579405957999825, 25.853765405999866, 25.853765405999866, 8.732777731999818, 8.7924669639998, 20.126158183999905, 22.013817335999875, 18.238499031999936, 18.35906919199988, 16.34697172599988, 12.57165342199994, 22.013817335999875, 18.35906919199988, 16.40713748999997, 12.57165342199994, 12.57165342199994, 18.238499031999936, 18.17821395199985, 20.06575403199986, 406.14845881199983, 12.57165342199994, 18.17821395199985, 27.68066294599987, 25.732242181999936, 18.17821395199985, 8.732777731999818, 16.34697172599988, 402.3778592069999, 16.22639361699987, 21.953294111999867, 8.7924669639998, 10.62418572199988, 18.17821395199985, 25.671231546999934, 21.89252284199995, 409.65929409199987, 16.166227852999896, 18.11768180199988, 20.005102321999857, 25.671231546999934, 12.511725801999887, 12.511725801999887, 14.27892640499988, 400.3249630559998, 25.732242181999936, 16.22639361699987, 6.785423351999839, 17.997111641999936, 14.27892640499988, 16.10606208899992, 21.771476393999933, 405.8083221239998, 10.504323508999846, 16.22639361699987, 19.88429401799999, 21.710953169999925, 16.045896324999944, 16.10606208899992, 12.27176971699987, 405.8083221239998, 17.93682656199985, 17.997111641999936, 19.82388986599983, 14.15883302099985, 25.54970832299989, 19.82388986599983, 14.15883302099985, 400.15578370399965, 17.93682656199985, 19.7634857139999, 17.997111641999936, 16.045896324999944, 23.54124086699983, 27.376010014999906, 27.376010014999906, 16.045896324999944], \"power_mean\": 31.52797238253255, \"energy_millijoules\": 6317.214536923223, \"energy_joules\": 6.317214536923223, \"coremark_score\": 1497.319798, \"coremarks_per_mhz\": 3.7135907688492065, \"ulpmark_cm_score\": 47.48928475462446}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [937.5850721490001, 926.359080712, 937.525978521, 939.5929477999999], \"power_mean\": 935.2657697955, \"energy_millijoules\": 4676.3288489775, \"energy_joules\": 4.6763288489775}}, \"518400\": {\"active\": {\"elapsed_sec\": 155.838116347, \"elapsed_ns\": 155838116347, \"power_samples\": [21.650429945999917, 17.93682656199985, 23.54124086699983, 27.25424864699994, 27.376010014999906, 27.1933679629999, 25.306661874999918, 19.64267740999992, 25.367423486999996, 25.306661874999918, 27.25424864699994, 17.816256401999908, 14.038739636999935, 32.79586330799998, 29.018824296000048, 27.1933679629999, 17.755971321999937, 21.46861222799987, 28.95782453999982, 27.132237767999868, 27.132237767999868, 23.35906471199985, 17.695439171999965, 30.909276780000027, 23.35906471199985, 17.755971321999937, 29.018824296000048, 30.909276780000027, 17.63515409199988, 25.245651239999916, 27.132237767999868, 21.408089003999862, 10.205280768999842, 30.78703863599992, 19.582025699999917, 30.848157707999917, 12.091986856999824, 19.521621547999985, 21.408089003999862, 34.68244983599993, 23.298422171999846, 21.408089003999862, 21.408089003999862, 25.124128015999872, 15.744820923999896, 30.909276780000027, 32.61214887599999, 30.78703863599992, 15.68465515999992, 25.124128015999872, 25.245651239999916, 17.574869011999795, 19.582025699999917, 28.89682478399982, 23.177137091999953, 19.582025699999917, 28.89682478399982, 27.010476399999902, 27.071357083999942, 11.9718860119998, 17.574869011999795, 30.78703863599992, 28.95782453999982, 21.22651933199984, 25.18488962799995, 25.124128015999872, 30.78703863599992, 25.002604791999943, 26.949595715999976, 30.664800491999927, 15.624489395999944, 19.461217395999824, 23.237779631999842, 27.010476399999902, 26.888715031999936, 30.664800491999927, 23.177137091999953, 26.949595715999976, 32.55091073199992, 27.010476399999902, 17.454298851999965, 25.002604791999943, 30.664800491999927, 25.002604791999943, 8.016017691999878, 21.22651933199984, 25.002604791999943, 34.437020971999914, 17.454298851999965, 17.514583931999937, 25.002604791999943, 30.664800491999927, 28.774825271999816, 15.564323631999969, 21.347565779999854, 22.995209471999942, 23.177137091999953, 25.002604791999943, 17.33372869199991, 15.564323631999969, 26.888715031999936, 30.603681419999816, 25.002604791999943, 13.678213391999861, 24.941843179999864, 30.542562347999933, 24.941843179999864, 21.22651933199984, 21.16599610799983, 25.002604791999943, 24.820070932999897, 28.652825759999928, 21.22651933199984, 21.22651933199984, 21.04470161399979, 28.713825515999815, 34.437020971999914, 21.22651933199984, 15.564323631999969, 24.941843179999864, 26.76695366399997, 22.995209471999942, 21.16599610799983, 24.8810815679999, 26.76695366399997, 17.33372869199991, 26.76695366399997, 26.76695366399997, 30.48119278799993, 23.055852011999832, 21.04470161399979, 22.934318396999856, 26.705823468999824, 21.105472883999937, 21.04470161399979, 26.705823468999824, 26.705823468999824, 26.644942785000012, 21.105472883999937, 19.158949077999864, 32.36694532399986, 17.273196541999823, 20.984178389999897, 24.820070932999897, 20.984178389999897, 22.934318396999856, 19.158949077999864, 21.04470161399979, 34.191340643999865, 26.52318141699982, 26.705823468999824, 22.873675856999967, 22.873675856999967, 26.644942785000012, 34.129983427999946], \"power_mean\": 24.047332337786997, \"energy_millijoules\": 3747.4909746910257, \"energy_joules\": 3.7474909746910257, \"coremark_score\": 1925.17487, \"coremarks_per_mhz\": 3.7136860918209877, \"ulpmark_cm_score\": 80.05356170997436}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [930.8558456260001, 936.5209024710001, 930.9145817940001, 934.6928137230001], \"power_mean\": 933.2460359035001, \"energy_millijoules\": 4666.230179517501, \"energy_joules\": 4.666230179517501}}, \"614400\": {\"active\": {\"elapsed_sec\": 131.50583771, \"elapsed_ns\": 131505837710, \"power_samples\": [34.129983427999946, 24.698547708999854, 24.698547708999854, 26.584062100999972, 30.29783557199994, 20.984178389999897, 22.691748236999956, 30.236716500000057, 32.24446903599994, 26.644942785000012, 24.577024485000038, 30.358954643999937, 35.89254524399996, 34.00726899599999, 20.863131941999768, 20.802608717999988, 26.52318141699982, 24.63778609699989, 30.29783557199994, 22.75239077699996, 22.813033316999963, 30.236716500000057, 30.236716500000057, 32.121992748000025, 20.802608717999988, 30.29783557199994, 30.236716500000057, 28.347576980999975, 19.038140773999885, 22.691748236999956, 30.175597427999946, 30.114478355999836, 33.94591177999985, 24.51626287299996, 33.94591177999985, 30.175597427999946, 28.286577224999974, 26.462300733000006, 28.225577468999973, 30.175597427999946, 30.236716500000057, 15.08275093899988, 32.06075460399995, 26.340539364999927, 34.00726899599999, 26.340539364999927, 30.114478355999836, 33.88455456399993, 24.45550126099988, 31.99951645999988, 30.053108795999947, 26.401420048999853, 28.286577224999974, 24.45550126099988, 33.88455456399993, 28.16432771399991, 26.279409169999894, 18.735872455999925, 24.39449062599988, 35.70786442799988, 33.82294588399998, 28.103327957999795, 24.3337290139998, 26.279409169999894, 30.114478355999836, 39.48156405399993, 30.053108795999947, 24.39449062599988, 33.700231452000025, 35.646388139999885, 33.700231452000025, 26.218528485999855, 28.042328201999908, 28.103327957999795, 31.87678919599989, 26.218528485999855, 26.15764780199993, 28.042328201999908, 29.869751579999956, 26.218528485999855, 28.103327957999795, 35.584911852000005, 28.042328201999908, 26.218528485999855, 16.790668831999938, 26.218528485999855, 29.930870651999953, 31.815551051999932, 29.930870651999953, 27.859328933999905, 14.84184130199992, 26.15764780199993, 28.042328201999908, 37.411858697999946, 29.99198972399995, 24.27296740199995, 20.560267775999932, 24.151444177999906, 31.75431290799986, 24.27296740199995, 20.499744551999925, 14.84184130199992, 24.27296740199995, 24.3337290139998, 29.869751579999956, 29.869751579999956, 29.869751579999956, 22.26700192199985, 26.15764780199993, 29.80863250799996, 35.40048298799991, 22.26700192199985, 24.3337290139998, 26.035886433999963, 33.577517019999846, 29.747513436000077, 29.747513436000077, 29.747513436000077, 24.09068256599994, 31.63183662000006, 29.747513436000077, 27.981328445999907, 16.549528511999938, 27.859328933999905, 33.516159803999926, 33.516159803999926, 25.975005749999923, 24.09068256599994, 25.914125065999997, 35.40048298799991, 31.63183662000006], \"power_mean\": 27.866711879732755, \"energy_millijoules\": 3664.635289967465, \"energy_joules\": 3.664635289967465, \"coremark_score\": 2281.403519, \"coremarks_per_mhz\": 3.713221873372396, \"ulpmark_cm_score\": 81.86353518487878}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [937.756140725, 933.9846356529999, 930.2682432240001, 935.870388189], \"power_mean\": 934.46985194775, \"energy_millijoules\": 4672.34925973875, \"energy_joules\": 4.67234925973875}}, \"691200\": {\"active\": {\"elapsed_sec\": 116.886810424, \"elapsed_ns\": 116886810424, \"power_samples\": [27.981328445999907, 27.859328933999905, 29.747513436000077, 25.914125065999997, 27.859328933999905, 39.17299067400006, 39.17299067400006, 37.288667489999966, 29.686394363999966, 27.859328933999905, 37.22707188599986, 24.029920953999863, 25.914125065999997, 37.22707188599986, 35.40048298799991, 31.63183662000006, 29.747513436000077, 29.747513436000077, 29.502786659999856, 35.33900669999991, 33.393193907999944, 24.029920953999863, 31.447871211999995, 35.277278459999934, 39.111275997999996, 33.45480258799989, 29.686394363999966, 33.331836692000024, 31.509109356000067, 33.27047947599988, 29.686394363999966, 33.331836692000024, 38.92587904099992, 27.737079422999955, 23.84738709499993, 29.563905731999967, 29.625024803999963, 35.15432588399983, 33.27047947599988, 29.563905731999967, 35.15432588399983, 31.447871211999995, 29.502786659999856, 29.625024803999963, 35.15432588399983, 35.15432588399983, 27.615079910999953, 25.731233502999885, 35.15432588399983, 38.92587904099992, 25.731233502999885, 29.441667587999973, 27.554080155000065, 33.27047947599988, 35.15432588399983, 27.615079910999953, 25.731233502999885, 35.15432588399983, 33.27047947599988, 23.84738709499993, 25.731233502999885, 38.864164364999965, 33.27047947599988, 33.20912226000007, 29.502786659999856, 29.441667587999973, 35.15432588399983, 35.09284959599995, 34.96989701999985, 25.731233502999885, 35.09284959599995, 37.04203263299985, 29.502786659999856, 29.502786659999856, 25.731233502999885, 33.147765043999925, 38.864164364999965, 38.802449689000014, 23.84738709499993, 31.264156779999894, 31.264156779999894, 36.98043702899997, 29.441667587999973, 25.54859145099988, 31.325394923999966, 35.03137330799996, 29.380548515999976, 27.554080155000065, 36.85724582099988, 33.147765043999925, 29.31942944399998, 25.60947213499992, 34.96989701999985, 36.79565021699989, 29.25831037199987, 25.487710766999953, 29.441667587999973, 36.91884142499987, 29.441667587999973, 19.894264265999823, 33.02505061199986, 36.79565021699989, 34.96989701999985, 29.380548515999976, 29.31942944399998, 38.74073501299995, 33.086407828000006, 29.25831037199987, 25.487710766999953, 36.79565021699989, 33.02505061199986, 33.02505061199986, 25.42658057199992, 29.25831037199987, 33.02505061199986, 23.665102258999923], \"power_mean\": 31.426562563275787, \"energy_millijoules\": 3673.3506606115925, \"energy_joules\": 3.6733506606115927, \"coremark_score\": 2566.713153, \"coremarks_per_mhz\": 3.713416019965278, \"ulpmark_cm_score\": 81.66930623227015}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [925.84867947, 933.394648394, 937.1637710500002, 925.96567503], \"power_mean\": 930.593193486, \"energy_millijoules\": 4652.96596743, \"energy_joules\": 4.65296596743}}, \"787200\": {\"active\": {\"elapsed_sec\": 102.634575742, \"elapsed_ns\": 102634575742, \"power_samples\": [23.604340646999844, 44.33299006199991, 23.665102258999923, 33.02505061199986, 40.56239045699988, 34.908420731999854, 34.908420731999854, 38.49362337999992, 36.733802171999855, 34.785216203999994, 38.617052731999934, 40.5003032919999, 34.785216203999994, 38.67902033699988, 34.785216203999994, 38.55533805599998, 38.49362337999992, 27.309831131999886, 34.785216203999994, 38.49362337999992, 42.32545990799997, 32.84072749999996, 34.846692491999875, 32.90208471599999, 38.55533805599998, 32.90208471599999, 36.549015359999885, 49.736985543999936, 38.49362337999992, 29.135821739999983, 36.549015359999885, 34.785216203999994, 32.779370283999924, 29.074702667999986, 42.20155377999993, 34.723739916, 30.957715083999915, 42.20155377999993, 42.139600715999904, 32.779370283999924, 32.779370283999924, 42.139600715999904, 47.66330297199988, 32.779370283999924, 34.66226362799989, 42.20155377999993, 38.43190870399985, 25.243938519999915, 38.49362337999992, 44.0223749879998, 38.43190870399985, 32.779370283999924, 38.3701940279999, 38.3701940279999, 43.898230715999944, 29.013583595999876, 38.43190870399985, 32.779370283999924, 44.0223749879998, 28.891345451999996, 40.25296829999991, 40.19113455199988, 40.25296829999991, 27.06583210799988, 38.3701940279999, 38.3701940279999, 40.12930080399997, 34.539311052000016, 25.243938519999915, 36.425824151999905, 42.077647651999996, 38.43190870399985, 27.004832351999994, 34.6007873399999, 34.539311052000016, 40.19113455199988, 38.246764675999884, 32.65665585199997, 38.246764675999884, 42.077647651999996, 38.18504999999982, 26.94383259599988, 38.30847935199995, 38.18504999999982, 36.364228547999915, 36.364228547999915, 42.139600715999904, 38.18504999999982, 47.72561325200002, 38.30847935199995, 36.425824151999905, 42.139600715999904, 32.65665585199997, 41.95374152399984, 32.533941419999906, 23.11799872799986, 34.4163584759998, 43.83615857999985, 36.364228547999915, 40.12930080399997, 38.18504999999982, 36.302632943999924], \"power_mean\": 36.54505374672541, \"energy_millijoules\": 3750.7860867637496, \"energy_joules\": 3.7507860867637497, \"coremark_score\": 2923.150377, \"coremarks_per_mhz\": 3.71335159679878, \"ulpmark_cm_score\": 79.98323366365203}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [929.269006202, 932.9815848030001, 940.460903156, 929.269006202], \"power_mean\": 932.99512509075, \"energy_millijoules\": 4664.97562545375, \"energy_joules\": 4.664975625453749}}, \"883200\": {\"active\": {\"elapsed_sec\": 91.482527934, \"elapsed_ns\": 91482527934, \"power_samples\": [41.95374152399984, 43.83615857999985, 43.83615857999985, 34.4163584759998, 41.95374152399984, 40.00537989099996, 43.71175991399991, 34.231677659999946, 41.829581489999896, 43.773832049999896, 41.89153455399992, 45.59393833799993, 32.472332739999956, 43.773832049999896, 39.94354614299982, 39.94354614299982, 39.94354614299982, 36.11759369099991, 43.64968777799993, 36.1791892949999, 34.17020137199984, 38.12308239499998, 47.41380648199993, 47.41380648199993, 32.41097552399981, 47.35149620199991, 47.41380648199993, 39.94354614299982, 36.11759369099991, 43.773832049999896, 41.76762842599999, 38.06136771899992, 41.89153455399992, 47.41380648199993, 47.47611676199983, 36.05599808699992, 32.28826109199986, 45.59393833799993, 43.587615641999946, 37.99965304299997, 39.88171239500002, 43.71175991399991, 47.35149620199991, 45.65612954599999, 37.876223690999836, 37.876223690999836, 49.29972251299989, 36.1791892949999, 43.587615641999946, 43.587615641999946, 37.9379383669999, 36.05599808699992, 41.705675361999965, 43.587615641999946, 47.35149620199991, 41.705675361999965, 32.28826109199986, 43.52554350599985, 41.705675361999965, 37.876223690999836, 43.52554350599985, 43.52554350599985, 37.814509015, 28.524380531999896, 45.46955592199993, 41.58176923399992, 43.46347136999998, 34.17020137199984, 37.876223690999836, 47.35149620199991, 39.69621115099994, 41.58176923399992, 39.69621115099994, 37.9379383669999, 45.28298229799998, 32.22690387599994, 43.46347136999998, 43.401399233999996, 32.104189443999985, 37.876223690999836, 47.16456536199996, 47.16456536199996, 34.04724879599996, 35.87121127499995, 43.46347136999998, 43.46347136999998, 32.104189443999985, 43.33907270399993, 45.34517350600004, 34.10872508399984, 37.876223690999836], \"power_mean\": 40.70979018534057, \"energy_millijoules\": 3724.2345178176984, \"energy_joules\": 3.7242345178176985, \"coremark_score\": 3279.512883, \"coremarks_per_mhz\": 3.7132165794836953, \"ulpmark_cm_score\": 80.553466374022}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [928.6814038000001, 930.6817694800001, 934.451414556, 938.217201244], \"power_mean\": 933.00794727, \"energy_millijoules\": 4665.039736350001, \"energy_joules\": 4.665039736350001}}, \"979200\": {\"active\": {\"elapsed_sec\": 82.515940385, \"elapsed_ns\": 82515940385, \"power_samples\": [45.34517350600004, 52.8131702569998, 49.11243372499996, 47.16456536199996, 35.80936322999992, 50.86878217799995, 58.398491652000075, 45.28298229799998, 43.33907270399993, 56.517028147999895, 47.10199971199995, 45.15834499999994, 50.74368484199988, 47.03968943199993, 41.45760919999998, 48.987318673999994, 52.68757794199985, 48.924889077999865, 46.97737915199991, 52.68757794199985, 43.27700056799995, 43.33907270399993, 52.624910201999796, 45.220536208, 37.62911205799992, 48.924889077999865, 47.10199971199995, 43.33907270399993, 43.33907270399993, 52.68757794199985, 41.39565613599996, 47.03968943199993, 50.806233509999856, 47.03968943199993, 37.62911205799992, 43.33907270399993, 46.97737915199991, 41.39565613599996, 45.096153791999996, 41.33370307199982, 41.209796944000004, 48.80002988600006, 52.68757794199985, 43.214928431999965, 43.27700056799995, 50.618587505999926, 50.6811361739999, 48.86245948199985, 44.97177137599999, 45.03396258400005, 37.56739738199997, 56.39121589199999, 50.806233509999856, 43.214928431999965, 43.214928431999965, 48.73760028999993, 41.33370307199982, 48.73760028999993, 56.328309764000096, 41.39565613599996, 46.97737915199991, 46.915068872000006, 48.73760028999993, 44.97177137599999, 50.6811361739999, 48.73760028999993, 39.38678899399997, 39.324955245999945, 52.49957472199981, 39.38678899399997, 48.73760028999993, 52.49957472199981, 37.44396802999995, 46.85275859199987, 46.79044831199997, 41.209796944000004, 43.15285629599998, 43.09078416, 45.03396258400005, 43.15285629599998, 48.80002988600006, 39.324955245999945], \"power_mean\": 46.30177808414628, \"energy_millijoules\": 3820.6347601109137, \"energy_joules\": 3.820634760110914, \"coremark_score\": 3635.834788, \"coremarks_per_mhz\": 3.7130665727124184, \"ulpmark_cm_score\": 78.52098377267838}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [930.32839683, 932.096483065, 932.1554576210001, 932.1554576210001], \"power_mean\": 931.6839487842501, \"energy_millijoules\": 4658.41974392125, \"energy_joules\": 4.65841974392125}}, \"1075200\": {\"active\": {\"elapsed_sec\": 75.152482368, \"elapsed_ns\": 75152482368, \"power_samples\": [52.37423924199982, 50.618587505999926, 52.436906981999755, 59.96423379599992, 52.436906981999755, 52.311314666999806, 54.195797927999934, 48.612741098000015, 46.72813803199995, 54.32162936399993, 58.020340451999914, 46.72813803199995, 52.436906981999755, 50.3681364869999, 52.311314666999806, 48.612741098000015, 48.612741098000015, 40.961730781999904, 42.96663988800003, 46.72813803199995, 46.60326210200003, 42.96663988800003, 46.72813803199995, 54.195797927999934, 44.784942869999895, 54.13301087200011, 50.430685154999765, 50.430685154999765, 46.66557238199982, 56.01352131200008, 55.95061518399996, 52.24864692699987, 42.842241221999984, 54.13301087200011, 56.076427439999975, 50.430685154999765, 48.55005564299984, 52.24864692699987, 50.3681364869999, 48.487626046999935, 52.24864692699987, 46.60326210200003, 52.311314666999806, 42.96663988800003, 52.24864692699987, 54.13301087200011, 50.30558781899981, 52.24864692699987, 59.77454219200001, 42.780169086, 52.24864692699987, 59.901089523999985, 52.18597918699993, 40.961730781999904, 48.487626046999935, 52.24864692699987, 46.47864154199988, 50.30558781899981, 52.06064370699983, 50.30558781899981, 40.89977771799988, 52.12331144699988, 54.13301087200011, 42.842241221999984, 50.3681364869999, 54.007436759999905, 52.12331144699988, 46.5409518219999, 59.71139791999997, 52.12331144699988, 44.66056045399989, 48.362766854999904, 59.521965103999946, 52.12331144699988, 59.71139791999997], \"power_mean\": 50.614576097666585, \"energy_millijoules\": 3803.811037743682, \"energy_joules\": 3.803811037743682, \"coremark_score\": 3992.069089, \"coremarks_per_mhz\": 3.7128618759300593, \"ulpmark_cm_score\": 78.8682710637361}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [928.093560676, 937.5047336540001, 924.32677821, 935.6232701500002], \"power_mean\": 931.3870856725001, \"energy_millijoules\": 4656.935428362501, \"energy_joules\": 4.656935428362501}}, \"1171200\": {\"active\": {\"elapsed_sec\": 68.983981327, \"elapsed_ns\": 68983981327, \"power_samples\": [52.12331144699988, 56.01352131200008, 52.06064370699983, 51.997975966999775, 51.997975966999775, 57.64193095200005, 42.718096949999904, 48.300337259, 55.824802928000054, 52.06064370699983, 42.65602481399992, 48.23790766299999, 57.70495615200002, 55.824802928000054, 46.41633126199997, 55.76189679999993, 55.76189679999993, 51.997975966999775, 50.11794181499988, 51.997975966999775, 53.881862647999924, 46.41633126199997, 59.585109376000105, 48.23790766299999, 42.59395267799994, 51.997975966999775, 55.824802928000054, 51.997975966999775, 50.11794181499988, 55.76189679999993, 55.69899067199992, 48.23790766299999, 55.824802928000054, 55.76189679999993, 50.11794181499988, 50.11794181499988, 61.40585178499987, 53.881862647999924, 46.35402098199995, 50.05539314699979, 59.4588208319999, 48.23790766299999, 53.81907559199999, 55.76189679999993, 55.76189679999993, 51.997975966999775, 48.17547806699997, 55.69899067199992, 51.997975966999775, 55.51001447600004, 50.11794181499988, 55.57292060399993, 64.9751546399998, 55.76189679999993, 48.23790766299999, 59.39541777199997, 55.63582673199994, 53.81907559199999, 48.11279261199991, 53.75603121200004, 55.69899067199992, 51.93530822699972, 51.93530822699972, 53.81907559199999, 55.57292060399993, 40.58975849199999, 51.93530822699972, 61.15253815599988], \"power_mean\": 52.72843417938227, \"energy_millijoules\": 3637.417318832455, \"energy_joules\": 3.637417318832455, \"coremark_score\": 4349.023644, \"coremarks_per_mhz\": 3.713305706967213, \"ulpmark_cm_score\": 82.47610150388094}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [931.624444918, 931.5064958060001, 937.0891680870001, 942.8545334639998], \"power_mean\": 935.76866056875, \"energy_millijoules\": 4678.84330284375, \"energy_joules\": 4.678843302843751}}, \"1248000\": {\"active\": {\"elapsed_sec\": 64.740577997, \"elapsed_ns\": 64740577997, \"power_samples\": [57.57890575199997, 63.03209553199986, 68.73835933199996, 55.57292060399993, 46.10452449199988, 62.968712871999855, 64.91165290799984, 59.14284068400002, 62.968712871999855, 51.80971591199989, 64.84815117599987, 63.03209553199986, 64.84815117599987, 59.20598495599995, 59.269129228, 62.968712871999855, 68.610879092, 64.91165290799984, 55.44710834800003, 57.38957185200002, 61.08927456799995, 70.55417658800013, 68.610879092, 61.15253815599988, 51.6843804319999, 59.20598495599995, 66.66781974000003, 66.60419869200007, 68.610879092, 57.263521451999964, 55.32129609200001, 60.96274739199998, 68.48339885200005, 59.14284068400002, 61.08927456799995, 64.84815117599987, 57.263521451999964, 46.042214211999976, 64.7846494439998, 62.90533021199985, 59.07969641200009, 59.14284068400002, 51.559044951999795, 62.84194755199985, 66.66781974000003, 57.263521451999964, 51.62171269199973, 59.07969641200009, 62.90533021199985, 68.48339885200005, 57.20049625199999, 61.026010979999796, 60.96274739199998, 66.60419869200007, 57.20049625199999, 64.7846494439998, 61.08927456799995, 66.60419869200007, 55.32129609200001, 51.559044951999795, 57.07418755200001, 68.355657382, 66.60419869200007, 55.258389964], \"power_mean\": 60.8427626690312, \"energy_millijoules\": 3938.9956221273746, \"energy_joules\": 3.9389956221273748, \"coremark_score\": 4634.135039, \"coremarks_per_mhz\": 3.7132492299679485, \"ulpmark_cm_score\": 76.16154694733473}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [933.150628179, 927.62343061, 936.8518409990002, 933.209721807], \"power_mean\": 932.7089053987501, \"energy_millijoules\": 4663.54452699375, \"energy_joules\": 4.66354452699375}}, \"1344000\": {\"active\": {\"elapsed_sec\": 60.117285342, \"elapsed_ns\": 60117285342, \"power_samples\": [25.417838699999947, 60.89948380399994, 59.01655213999993, 59.07969641200009, 59.07969641200009, 66.60419869200007, 70.23461891, 62.77856489199985, 55.32129609200001, 70.29873981999992, 68.355657382, 60.83596093899996, 55.258389964, 64.59388399499983, 66.47669585400001, 62.71492246699995, 64.72114771199983, 74.06075257199996, 66.47669585400001, 62.65153980699995, 60.70943376299988, 64.59388399499983, 58.95314908, 64.53038226299986, 64.59388399499983, 77.62564390499983, 62.65153980699995, 51.49637721199986, 60.772697350999806, 66.34945375799998, 60.70943376299988, 55.13231989600001, 62.71492246699995, 60.89948380399994, 60.772697350999806, 72.1135804380001, 70.106900526, 58.89000480799996, 60.772697350999806, 62.71492246699995, 68.22817714199994, 51.308117156999856, 62.58815714699983, 66.47669585400001, 60.70943376299988, 62.58815714699983, 64.46688053099979, 60.772697350999806, 55.06941376799989, 71.98562390999996, 64.46688053099979, 64.40337879899982, 55.06941376799989, 64.40337879899982, 60.64617017499995, 64.33987706699986, 69.97918214200001, 66.34945375799998, 56.94813715199996, 60.70943376299988], \"power_mean\": 62.39147333573326, \"energy_millijoules\": 3750.8060054320613, \"energy_joules\": 3.7508060054320613, \"coremark_score\": 4990.601035, \"coremarks_per_mhz\": 3.713244817708333, \"ulpmark_cm_score\": 79.98280891241203}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [931.0342159600001, 931.0342159600001, 936.733177455, 932.7958242240001], \"power_mean\": 932.8993583997501, \"energy_millijoules\": 4664.49679199875, \"energy_joules\": 4.66449679199875}}, \"1420800\": {\"active\": {\"elapsed_sec\": 56.864299718, \"elapsed_ns\": 56864299718, \"power_samples\": [66.34945375799998, 68.1006969020001, 66.34945375799998, 64.46688053099979, 62.58815714699983, 70.106900526, 71.72971085400002, 64.40337879899982, 69.91532295000002, 69.97918214200001, 60.70943376299988, 69.91532295000002, 69.91532295000002, 64.27637533499978, 69.85146375800014, 73.611806817, 73.74000197700002, 71.79368911799986, 71.79368911799986, 69.97918214200001, 66.28583271000002, 69.91532295000002, 77.36830100899999, 64.33987706699986, 69.91532295000002, 84.94995051599994, 68.03695678199995, 68.03695678199995, 75.490053913, 77.36830100899999, 60.58290658699991, 69.97918214200001, 69.85146375800014, 73.611806817, 62.334626506999825, 71.72971085400002, 67.97321666200014, 67.97321666200014, 71.72971085400002, 64.21287360299993, 69.85146375800014, 68.03695678199995, 69.78734284799998, 73.48334896199992, 67.97321666200014, 66.09496956600003, 73.611806817, 67.97321666200014, 67.97321666200014, 73.611806817, 69.72348365599998, 60.45637941099983, 73.611806817, 79.25039697200009, 67.9092153119999, 64.14911161799978], \"power_mean\": 69.37069204912498, \"energy_millijoules\": 3944.7158243265226, \"energy_joules\": 3.9447158243265226, \"coremark_score\": 5275.931202, \"coremarks_per_mhz\": 3.713352478885135, \"ulpmark_cm_score\": 76.05110567152671}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [930.7393431800001, 934.4977435000001, 934.4977435000001, 927.0945643760001], \"power_mean\": 931.7073486390001, \"energy_millijoules\": 4658.536743195001, \"energy_joules\": 4.658536743195}}, \"1516800\": {\"active\": {\"elapsed_sec\": 53.266381751, \"elapsed_ns\": 53266381751, \"power_samples\": [79.25039697200009, 67.97321666200014, 73.48334896199992, 73.54744654199988, 69.72348365599998, 79.05676769200011, 79.25039697200009, 84.82006037999997, 69.78734284799998, 79.05676769200011, 79.12122273200009, 71.53751385599992, 67.9092153119999, 69.72348365599998, 73.48334896199992, 82.81254647600008, 69.65962446399999, 73.48334896199992, 77.17503016599994, 73.48334896199992, 73.3551538019999, 79.05676769200011, 80.93465708400004, 67.71799495199991, 71.66547038399995, 73.3551538019999, 86.44231024999999, 63.958606421999775, 77.17503016599994, 73.48334896199992, 73.3551538019999, 77.17503016599994, 73.41925138199986, 78.99231265200001, 67.71799495199991, 69.59576527199988, 71.53751385599992, 78.99231265200001, 71.53751385599992, 79.05676769200011, 73.3551538019999, 75.16870746999996, 78.99231265200001, 75.23292412199987, 78.99231265200001, 71.47353559199996, 69.468046888, 73.3551538019999, 82.68316010800004, 80.87008297199998, 77.11069444199984, 75.10449081799982, 75.16870746999996], \"power_mean\": 74.90259065120752, \"energy_millijoules\": 3989.789987766103, \"energy_joules\": 3.989789987766103, \"coremark_score\": 5632.322019, \"coremarks_per_mhz\": 3.7132924703322785, \"ulpmark_cm_score\": 75.19192762523599}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [934.201437325, 930.503203257, 936.139373409, 930.680368624], \"power_mean\": 932.88109565375, \"energy_millijoules\": 4664.40547826875, \"energy_joules\": 4.66440547826875}}, \"1612800\": {\"active\": {\"elapsed_sec\": 50.094081127, \"elapsed_ns\": 50094081127, \"power_samples\": [80.67636063600003, 82.61846692400002, 76.98202299399998, 82.68316010800004, 77.04635871799996, 76.98202299399998, 82.61846692400002, 77.04635871799996, 80.80550886000015, 78.79894753199994, 82.61846692400002, 78.73422833200004, 78.79894753199994, 86.37737867800001, 82.61846692400002, 65.71298253600003, 76.98202299399998, 90.13244302999999, 73.09850078699992, 78.86340257199993, 82.48881542000004, 73.22695864199989, 78.86340257199993, 78.79894753199994, 80.61152187599998, 65.7766035840001, 78.73422833200004, 88.12454296499993, 78.73422833200004, 69.34006678599997, 76.85308787499991, 78.73422833200004, 75.0402741659999, 82.4241222359999, 80.67636063600003, 74.91157767899995, 86.24724942099999, 84.43118684399997, 76.85308787499991, 82.4241222359999, 84.36610896400009, 65.64936148799995, 86.1823178489999, 88.12454296499993, 78.73422833200004, 84.36610896400009, 76.78875215099993, 82.48881542000004, 78.73422833200004, 87.99444167700005], \"power_mean\": 79.53836068399998, \"energy_millijoules\": 3984.401092812883, \"energy_joules\": 3.984401092812883, \"coremark_score\": 5989.099838, \"coremarks_per_mhz\": 3.7134795622519845, \"ulpmark_cm_score\": 75.29362456534412}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [939.72195954, 934.0237992250001, 926.6244343100001, 924.74594907], \"power_mean\": 931.27903553625, \"energy_millijoules\": 4656.39517768125, \"energy_joules\": 4.65639517768125}}, \"1708800\": {\"active\": {\"elapsed_sec\": 47.281244878, \"elapsed_ns\": 47281244878, \"power_samples\": [76.78875215099993, 80.61152187599998, 88.12454296499993, 91.81384126499995, 80.54694776399992, 86.1823178489999, 80.54694776399992, 80.61152187599998, 87.99444167700005, 86.11738627700004, 91.74855247700009, 95.50650970199979, 89.93666679299997, 84.17167219600003, 84.36610896400009, 87.92939103299989, 91.683263689, 86.11738627700004, 80.48237365199998, 87.92939103299989, 97.25227260599979, 87.92939103299989, 84.23648445200001, 89.74115764499982, 91.683263689, 78.60531825200007, 87.86434038899995, 93.5640461979998, 91.61797490099991, 82.29473586799998, 86.1823178489999, 84.10685994000005, 88.059492321, 76.72441642700005, 87.86434038899995, 85.98752313299997, 87.92939103299989, 69.08463001799998, 87.92939103299989, 87.86434038899995, 84.10685994000005, 78.47640817199999, 82.29473586799998, 93.49863809399983, 91.61797490099991, 80.35322542799997, 87.73423910099984], \"power_mean\": 86.03858098614889, \"energy_millijoules\": 4068.0112165617406, \"energy_joules\": 4.06801121656174, \"coremark_score\": 6345.446085, \"coremarks_per_mhz\": 3.7133930740870786, \"ulpmark_cm_score\": 73.74610934665964}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [935.842471386, 922.7466189150001, 922.5708858300001, 932.0271226860001], \"power_mean\": 928.2967747042501, \"energy_millijoules\": 4641.483873521251, \"energy_joules\": 4.641483873521251}}, \"1804800\": {\"active\": {\"elapsed_sec\": 44.766441493, \"elapsed_ns\": 44766441493, \"power_samples\": [91.61797490099991, 80.22407720399997, 101.0097530549998, 95.3754553499997, 106.57780866399992, 82.23004268400007, 97.25227260599979, 95.3754553499997, 102.8865703109999, 85.98752313299997, 97.1866263579999, 95.30992817399999, 97.12098010999978, 87.86434038899995, 95.24440099799983, 93.43322998999986, 100.87798378299988, 87.73423910099984, 97.12098010999978, 91.42210853699987, 100.81209914699991, 82.23004268400007, 100.81209914699991, 93.23673761199996, 87.6691884569999, 91.42210853699987, 95.11307809199968, 98.93563910699993, 100.74594449199992, 91.48739732499996, 97.12098010999978, 95.11307809199968, 96.98941857199986, 87.6691884569999, 99.00140467099993, 110.13149185199984, 95.11307809199968, 87.6691884569999, 96.98941857199986, 89.4802116919999, 96.92377232399974, 97.12098010999978, 91.35655217200008, 100.74594449199992], \"power_mean\": 94.67592711529532, \"energy_millijoules\": 4238.3043520024, \"energy_joules\": 4.2383043520024, \"coremark_score\": 6701.813958, \"coremarks_per_mhz\": 3.7133277692819147, \"ulpmark_cm_score\": 70.78302431449126}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [926.154304244, 937.486643192, 928.0318364200001, 935.66447607], \"power_mean\": 931.8343149815, \"energy_millijoules\": 4659.1715749075, \"energy_joules\": 4.6591715749075}}}}, \"4\": {\"freqs\": {\"710400\": {\"active\": {\"elapsed_sec\": 49.783327325, \"elapsed_ns\": 49783327325, \"power_samples\": [102.62228497199987, 104.43250267199994, 113.8880177719999, 100.74594449199992, 102.62228497199987, 110.13149185199984, 106.24632669999994, 102.55628126399995, 98.80383844799996, 106.31256879599971, 102.55628126399995, 104.43250267199994, 106.37881089199993, 106.37881089199993, 104.36637989200005, 98.73807288399996, 113.68786188799993, 102.55628126399995, 91.2259745959999, 106.31256879599971, 109.998531372, 96.79247982799995, 98.80383844799996, 106.31256879599971, 108.12242903599974, 104.43250267199994, 98.73807288399996, 104.43250267199994, 111.87847818000012, 106.24632669999994, 102.55628126399995, 100.48240594800006, 109.86557089199971, 96.79247982799995, 109.93205113199986, 96.79247982799995, 100.61417521999999, 87.538820568, 109.86557089199971, 111.81187862400009, 109.998531372, 98.67230731999996, 106.18008460399994, 104.23413433200005, 91.29126338399976, 106.18008460399994, 109.86557089199971, 100.61417521999999, 96.79247982799995], \"power_mean\": 103.69047272081625, \"energy_millijoules\": 5162.0567439443785, \"energy_joules\": 5.162056743944379, \"coremark_score\": 6027.606437, \"coremarks_per_mhz\": 8.48480635838964, \"ulpmark_cm_score\": 58.11637005965321}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [924.1592976420001, 929.7950251870001, 931.672318731, 929.7950251870001], \"power_mean\": 928.85541668675, \"energy_millijoules\": 4644.27708343375, \"energy_joules\": 4.6442770834337495}}, \"825600\": {\"active\": {\"elapsed_sec\": 42.831244983, \"elapsed_ns\": 42831244983, \"power_samples\": [37.159506980999936, 121.12844401199993, 124.81658283199988, 130.37602742799993, 120.99405369199997, 117.2389581000001, 132.32340705199965, 134.13112302000002, 124.81658283199988, 122.93699397199987, 122.93699397199987, 124.81658283199988, 117.2389581000001, 124.68143936900003, 126.55694585699996, 120.92658314199991, 122.7347753979999, 124.68143936900003, 126.48939323699994, 113.42071393900017, 124.61400582099998, 124.61400582099998, 124.61400582099998, 124.61400582099998, 132.187308572, 126.48939323699994, 118.98400056599974, 132.11939849199996, 126.55694585699996, 122.7347753979999, 115.22938272700014, 122.7347753979999, 128.36478065300014, 122.7347753979999, 126.48939323699994, 124.61400582099998, 122.7347753979999, 120.85938798199993, 128.22943726899996, 117.10477014299988, 122.7347753979999, 128.29710896099994], \"power_mean\": 122.09668378397615, \"energy_millijoules\": 5229.5529747633655, \"energy_joules\": 5.229552974763365, \"coremark_score\": 7006.399178, \"coremarks_per_mhz\": 8.486433112887596, \"ulpmark_cm_score\": 57.36627995695461}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [925.801646514, 938.9470591799999, 929.736050631, 929.618101519], \"power_mean\": 931.025714461, \"energy_millijoules\": 4655.1285723050005, \"energy_joules\": 4.655128572305}}, \"940800\": {\"active\": {\"elapsed_sec\": 37.608878319, \"elapsed_ns\": 37608878319, \"power_samples\": [148.86760681799967, 135.73387687599973, 143.3069412389999, 156.30258767699968, 143.23831648299995, 137.61286866699982, 148.7986246019999, 146.92359440200005, 148.66066016999991, 146.92359440200005, 150.60455351400003, 146.92359440200005, 146.99245754599986, 150.67365480199976, 146.85473125800002, 146.92359440200005, 145.04856420199974, 146.85473125800002, 143.10106697100002, 150.39696644799994, 146.85473125800002, 135.5975804279998, 141.22615584300013, 143.10106697100002, 144.9798201299999, 141.22615584300013, 150.60455351400003, 152.4833066729999, 133.5863321879998, 148.7296423859999, 150.53545222599985, 146.85473125800002, 146.71672274399987, 143.10106697100002, 152.41408606899984, 133.7226692999999, 150.53545222599985], \"power_mean\": 145.75708411262156, \"energy_millijoules\": 5481.760440523832, \"energy_joules\": 5.481760440523832, \"coremark_score\": 7979.572295, \"coremarks_per_mhz\": 8.481688238732994, \"ulpmark_cm_score\": 54.72694461112429}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [925.7429103460001, 935.1302469590001, 933.135123375, 925.801646514], \"power_mean\": 929.9524817985001, \"energy_millijoules\": 4649.7624089925, \"energy_joules\": 4.6497624089925}}, \"1056000\": {\"active\": {\"elapsed_sec\": 33.541515612, \"elapsed_ns\": 33541515612, \"power_samples\": [159.91709608000008, 165.40491773399992, 171.03241930399997, 163.52652301199976, 163.66668019199994, 169.15402458199958, 165.40491773399992, 171.03241930399997, 165.40491773399992, 178.46358570999985, 159.70771902800004, 169.08373184200002, 174.71087595200004, 174.640225752, 161.58215338000002, 169.01343910199978, 169.08373184200002, 159.70771902800004, 163.456587732, 172.83644160000006, 165.26480854199974, 165.33486313799983, 170.96200724799985, 165.33486313799983, 161.58215338000002, 169.08373184200002, 170.82118313600006, 163.456587732, 168.87285362199998, 169.08373184200002, 161.512337172, 165.33486313799983, 170.96200724799985], \"power_mean\": 167.10412478248477, \"energy_millijoules\": 5604.9256102213085, \"energy_joules\": 5.604925610221309, \"coremark_score\": 8947.478302, \"coremarks_per_mhz\": 8.472990816287878, \"ulpmark_cm_score\": 53.52434998475468}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [931.1402338920001, 925.56646112, 923.6901206400001, 936.772742832], \"power_mean\": 929.292389621, \"energy_millijoules\": 4646.4619481049995, \"energy_joules\": 4.646461948104999}}, \"1171200\": {\"active\": {\"elapsed_sec\": 30.217519624, \"elapsed_ns\": 30217519624, \"power_samples\": [183.94823772400002, 189.49922308400016, 189.57082634799997, 193.1793760259999, 181.99907421799992, 197.00321227200004, 187.553661756, 195.05333409000002, 185.6797036920001, 187.553661756, 183.80574562799995, 189.42761982000013, 193.251217678, 185.6797036920001, 183.80574562799995, 189.42761982000013, 189.42761982000013, 170.82118313600006, 189.42761982000013, 196.78667674199994, 191.30541796199998, 191.16167885699986, 185.6797036920001, 193.10723994099988, 187.4818845960002, 193.10723994099988, 198.66039617400008, 191.16167885699986, 185.6080460920001, 189.42761982000013], \"power_mean\": 188.9867322894, \"energy_millijoules\": 5710.710291630579, \"energy_joules\": 5.710710291630579, \"coremark_score\": 9932.130442, \"coremarks_per_mhz\": 8.48030263148907, \"ulpmark_cm_score\": 52.532869762220244}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [929.087088816, 936.594389568, 929.087088816, 931.1402338920001], \"power_mean\": 931.477200273, \"energy_millijoules\": 4657.386001365, \"energy_joules\": 4.657386001365}}, \"1286400\": {\"active\": {\"elapsed_sec\": 27.504209312, \"elapsed_ns\": 27504209312, \"power_samples\": [211.85714447999987, 217.33571869700006, 217.40910926100003, 207.9600382069999, 209.76072477900004, 219.1358094210001, 211.63804516800008, 206.01376220300006, 217.2623281330001, 217.1889375689999, 207.88724349100005, 213.43837427999972, 215.31173649599975, 215.38500774399984, 207.74165405899987, 211.63804516800008, 215.2384652479999, 215.31173649599975, 215.16519399999981, 220.78840458499997, 215.2384652479999, 207.88724349100005, 218.988790149, 220.86203329299985, 213.36522210399983, 213.36522210399983, 211.63804516800008], \"power_mean\": 213.881944483037, \"energy_millijoules\": 5882.653769119013, \"energy_joules\": 5.882653769119013, \"coremark_score\": 10912.662326, \"coremarks_per_mhz\": 8.483101932524875, \"ulpmark_cm_score\": 50.997391955115525}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [930.962953008, 929.0281142599999, 938.35111344, 938.4106835999999], \"power_mean\": 934.1882160769999, \"energy_millijoules\": 4670.941080385, \"energy_joules\": 4.670941080385}}, \"1382400\": {\"active\": {\"elapsed_sec\": 25.593265511, \"elapsed_ns\": 25593265511, \"power_samples\": [86.56252770599997, 237.58302909999986, 230.23592623899992, 228.21033029199987, 230.0871729280001, 233.8331819519998, 230.0871729280001, 230.0871729280001, 239.53116041199985, 239.23157313199988, 226.3373257799998, 233.7587192520001, 239.45603361199971, 239.45603361199971, 230.0871729280001, 235.55702292000012, 235.631604692, 228.21033029199987, 235.70618646399987, 241.10422042799985, 233.60979385200005, 229.8644992599999, 233.68425655199997, 242.98070511599997, 231.885833812], \"power_mean\": 228.11115944755994, \"energy_millijoules\": 5838.109469763457, \"energy_joules\": 5.838109469763457, \"coremark_score\": 11727.912432, \"coremarks_per_mhz\": 8.483732951388887, \"ulpmark_cm_score\": 51.38649789863483}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [934.477111141, 923.2209436380001, 934.3584475969999, 934.477111141], \"power_mean\": 931.63340337925, \"energy_millijoules\": 4658.16701689625, \"energy_joules\": 4.65816701689625}}, \"1478400\": {\"active\": {\"elapsed_sec\": 23.971067856, \"elapsed_ns\": 23971067856, \"power_samples\": [257.969558268, 270.9320729159998, 263.51496847600004, 252.34777898799996, 263.6677066200001, 267.26002492400005, 254.2204262839997, 263.438599404, 263.438599404, 268.979100572, 257.893546656, 263.36223033199997, 263.438599404, 261.48610359199995, 265.2345204119998, 261.40954133699995, 257.741523432, 265.1577187920001, 268.979100572, 263.36223033199997, 259.68994419599983, 267.0298893119999, 259.68994419599983], \"power_mean\": 262.61929254004343, \"energy_millijoules\": 6295.264881772096, \"energy_joules\": 6.295264881772096, \"coremark_score\": 12521.390709, \"coremarks_per_mhz\": 8.469555403814933, \"ulpmark_cm_score\": 47.654865304976816}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [936.1779882999999, 928.732999781, 934.2991158250001, 932.4240856250001], \"power_mean\": 932.90854738275, \"energy_millijoules\": 4664.542736913751, \"energy_joules\": 4.66454273691375}}, \"1574400\": {\"active\": {\"elapsed_sec\": 22.473960096, \"elapsed_ns\": 22473960096, \"power_samples\": [289.511281212, 289.589638092, 282.01492630199994, 293.25562225199985, 291.1489833480001, 289.35520710000003, 289.35520710000003, 294.97100422799997, 287.40152105699974, 279.91043215799994, 287.4794387969997, 298.71870490699996, 287.5573565369997, 278.038618854, 291.22713947599993, 294.892609956, 281.7822454619999, 294.97100422799997, 292.9425214519998, 291.07082722000007, 285.5297077529998, 281.70468518199993], \"power_mean\": 288.74675830331813, \"energy_millijoules\": 6489.283123958128, \"energy_joules\": 6.489283123958129, \"coremark_score\": 13355.889947, \"coremarks_per_mhz\": 8.483161805767276, \"ulpmark_cm_score\": 46.230067985847946}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [934.120877346, 934.239784053, 928.4968598580001, 928.615050669], \"power_mean\": 931.3681429815, \"energy_millijoules\": 4656.8407149075, \"energy_joules\": 4.6568407149075}}, \"1670400\": {\"active\": {\"elapsed_sec\": 21.169414315, \"elapsed_ns\": 21169414315, \"power_samples\": [315.33465375699996, 320.9532144320002, 317.28988822400004, 318.92142526800023, 326.41060608600003, 320.8731521760002, 315.33465375699996, 324.6198993029999, 319.00169608800013, 317.05008874, 318.92142526800023, 315.0952127099998, 322.58775145799984, 326.33018637, 328.2014038259998, 318.92142526800023, 322.58775145799984, 326.41060608600003, 324.4589689139999, 315.01550791399984, 322.5075698859997], \"power_mean\": 320.80128985661906, \"energy_millijoules\": 6791.1754177611765, \"energy_joules\": 6.791175417761177, \"coremark_score\": 14179.704117, \"coremarks_per_mhz\": 8.48880754130747, \"ulpmark_cm_score\": 44.174974366793776}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [934.120877346, 928.3789107460001, 934.002213802, 937.7549235600001], \"power_mean\": 933.5642313635001, \"energy_millijoules\": 4667.8211568175, \"energy_joules\": 4.6678211568175}}, \"1766400\": {\"active\": {\"elapsed_sec\": 20.032146242, \"elapsed_ns\": 20032146242, \"power_samples\": [344.9722531479998, 344.9722531479998, 348.6364345779999, 350.50741389000007, 354.24937251400013, 350.50741389000007, 355.95953362399985, 356.12418579999996, 350.50741389000007, 348.4727354659998, 359.70101595999984, 355.95953362399985, 348.4727354659998, 342.85667847599996, 359.370420654, 354.08495897, 350.3434766339998, 348.4727354659998, 350.2615080060001], \"power_mean\": 351.2858985896841, \"energy_millijoules\": 7037.010493300933, \"energy_joules\": 7.037010493300933, \"coremark_score\": 14985.763525, \"coremarks_per_mhz\": 8.483788227468297, \"ulpmark_cm_score\": 42.63173975448706}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [943.20228481, 930.19425147, 930.19425147, 924.5674648199999], \"power_mean\": 932.0395631425, \"energy_millijoules\": 4660.1978157125, \"energy_joules\": 4.6601978157125}}, \"1862400\": {\"active\": {\"elapsed_sec\": 18.991542649, \"elapsed_ns\": 18991542649, \"power_samples\": [393.3935244139999, 406.15385801699983, 400.53923233199987, 398.66896794, 392.9696335069997, 400.53923233199987, 409.89821930999994, 396.71375641199995, 391.01489851099984, 400.45404705199996, 396.62880927599997, 404.1981699569998, 396.71375641199995, 396.62880927599997, 398.41376931599996, 405.98277253699996, 398.41376931599996, 400.2836764919999], \"power_mean\": 399.3116056893888, \"energy_millijoules\": 7583.543389690698, \"energy_joules\": 7.583543389690698, \"coremark_score\": 15806.944518, \"coremarks_per_mhz\": 8.487405776417525, \"ulpmark_cm_score\": 39.55934377692481}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [928.143012522, 928.143012522, 931.9501413500001, 932.00935405], \"power_mean\": 930.0613801110001, \"energy_millijoules\": 4650.3069005550005, \"energy_joules\": 4.650306900555001}}, \"1958400\": {\"active\": {\"elapsed_sec\": 18.08364442, \"elapsed_ns\": 18083644420, \"power_samples\": [61.671242804999906, 420.8679825360001, 424.52106269600006, 422.65127459200005, 420.69499043999997, 426.39085080000007, 424.43432850400006, 415.16829064299975, 428.1774978569998, 424.43432850400006, 428.1774978569998, 411.4248829019999, 424.3472388439999, 420.43514780400017, 427.916223672, 416.77895225200007, 427.916223672, 427.916223672], \"power_mean\": 402.995791114, \"energy_millijoules\": 7287.632589262171, \"energy_joules\": 7.287632589262171, \"coremark_score\": 16601.184218, \"coremarks_per_mhz\": 8.47691187602124, \"ulpmark_cm_score\": 41.16563181876506}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [928.083796267, 926.2061179300001, 929.957634771, 933.645980007], \"power_mean\": 929.47338224375, \"energy_millijoules\": 4647.36691121875, \"energy_joules\": 4.64736691121875}}, \"2054400\": {\"active\": {\"elapsed_sec\": 17.229453535, \"elapsed_ns\": 17229453535, \"power_samples\": [469.0640562240002, 465.142892532, 463.3630555159999, 470.93336755200005, 470.5745167519998, 466.9263212280001, 461.4047461639999, 472.4433517919998, 470.5745167519998, 468.7056817119998, 464.96418205199996, 463.09534701199993, 476.18485145199986, 470.5745167519998, 464.96418205199996, 476.0043419919999, 466.65753086100005], \"power_mean\": 468.32808578805873, \"energy_millijoules\": 8069.036993220852, \"energy_joules\": 8.069036993220852, \"coremark_score\": 17425.650558, \"coremarks_per_mhz\": 8.482111837032711, \"ulpmark_cm_score\": 37.179157841517274}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [929.898541143, 939.1515994279999, 937.3376883, 931.8314732750001], \"power_mean\": 934.5548255365, \"energy_millijoules\": 4672.7741276825, \"energy_joules\": 4.6727741276825}}, \"2150400\": {\"active\": {\"elapsed_sec\": 16.444869109, \"elapsed_ns\": 16444869109, \"power_samples\": [520.6916002289998, 522.6530071609999, 517.0437463059999, 515.0826968339999, 513.21433857, 514.9901246979999, 507.605435175, 522.466909825, 520.4128114409997, 518.8194133620001, 514.897552562, 522.3738611569999, 520.5986706329999, 514.9901246979999, 512.936979378, 520.4128114409997], \"power_mean\": 517.4493802168749, \"energy_millijoules\": 8509.387328199682, \"energy_joules\": 8.509387328199683, \"coremark_score\": 18255.948397, \"coremarks_per_mhz\": 8.489559336402529, \"ulpmark_cm_score\": 35.2551821217275}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [927.788923487, 925.9706969700001, 931.535409775, 927.847898043], \"power_mean\": 928.28573206875, \"energy_millijoules\": 4641.42866034375, \"energy_joules\": 4.641428660343751}}, \"2246400\": {\"active\": {\"elapsed_sec\": 15.753029109, \"elapsed_ns\": 15753029109, \"power_samples\": [567.0433315679999, 561.340308834, 563.303740966, 568.7191587039998, 568.7191587039998, 568.8151858799998, 561.24475819, 574.133146602, 572.2657414019999, 566.6596991519999, 561.053656902, 574.036761966, 568.431077176, 566.6596991519999, 562.8253923859999], \"power_mean\": 567.0167211722666, \"energy_millijoules\": 8932.230913916452, \"energy_joules\": 8.932230913916452, \"coremark_score\": 19059.720457, \"coremarks_per_mhz\": 8.484562169248575, \"ulpmark_cm_score\": 33.586234266805484}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [933.2897462120001, 933.2897462120001, 920.346771465, 933.408652919], \"power_mean\": 930.0837292020001, \"energy_millijoules\": 4650.418646010001, \"energy_joules\": 4.650418646010001}}, \"2342400\": {\"active\": {\"elapsed_sec\": 15.108685671, \"elapsed_ns\": 15108685671, \"power_samples\": [613.2727290899999, 620.5465664939999, 618.6795189979999, 622.3141317739997, 616.6103960730001, 622.1151673419998, 618.2825427099998, 624.181060198, 612.7778907569999, 618.2825427099998, 627.7190633669999, 625.7526524829997, 623.7826550460001, 614.5455753530001, 621.8167206939999], \"power_mean\": 620.0452808725998, \"energy_millijoules\": 9368.06925049102, \"energy_joules\": 9.36806925049102, \"coremark_score\": 19872.81399, \"coremarks_per_mhz\": 8.483954059938524, \"ulpmark_cm_score\": 32.02367446037781}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [936.9800231999999, 933.111750896, 936.92045304, 934.9882355839999], \"power_mean\": 935.5001156799999, \"energy_millijoules\": 4677.5005783999995, \"energy_joules\": 4.677500578399999}}, \"2419200\": {\"active\": {\"elapsed_sec\": 14.631325307, \"elapsed_ns\": 14631325307, \"power_samples\": [670.470731325, 668.6042791889998, 664.6665108119997, 670.2651513239999, 662.5922665719999, 673.7957661719998, 673.7957661719998, 664.359843072, 670.0599917319997, 677.5315406119997, 671.9297908119999, 658.8603158519999, 675.5588042760002, 669.85483214], \"power_mean\": 669.4532564329999, \"energy_millijoules\": 9794.988372701711, \"energy_joules\": 9.794988372701711, \"coremark_score\": 20521.239483, \"coremarks_per_mhz\": 8.482655209573414, \"ulpmark_cm_score\": 30.627907720246967}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [933.171082668, 927.4348344520001, 929.3073626760001, 929.3664563039999], \"power_mean\": 929.8199340250001, \"energy_millijoules\": 4649.099670125001, \"energy_joules\": 4.6490996701250005}}}}, \"7\": {\"freqs\": {\"844800\": {\"active\": {\"elapsed_sec\": 41.925879984, \"elapsed_ns\": 41925879984, \"power_samples\": [32.93626739199988, 129.80906417199992, 126.06255641000018, 144.71856266399993, 139.10107583399997, 139.2383679630001, 125.99488471799998, 133.48358900399978, 144.71856266399993, 131.61237154799994, 129.74115409199987, 133.48358900399978, 137.29824498999994, 148.46099757599984, 139.1695815180002, 127.86610217400005, 129.74115409199987, 135.35864092200006, 139.10107583399997, 129.74115409199987, 140.97229329000004, 139.2383679630001, 131.68040069999995, 135.35864092200006, 129.87725257199997, 139.10107583399997, 139.10107583399997, 140.97229329000004, 133.55173722799998, 131.61237154799994, 140.97229329000004, 139.1695815180002, 137.22985837800013, 139.10107583399997, 131.68040069999995, 131.61237154799994, 137.22985837800013, 131.61237154799994, 140.97229329000004, 139.10107583399997, 135.49545578699997], \"power_mean\": 133.2507107792439, \"energy_millijoules\": 5586.653307913274, \"energy_joules\": 5.5866533079132745, \"coremark_score\": 7157.683774, \"coremarks_per_mhz\": 8.472637043087122, \"ulpmark_cm_score\": 53.69941241477466}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [938.6141517119999, 932.93375558, 925.49961384, 933.0524191240002], \"power_mean\": 932.524985064, \"energy_millijoules\": 4662.62492532, \"energy_joules\": 4.66262492532}}, \"960000\": {\"active\": {\"elapsed_sec\": 36.827273579, \"elapsed_ns\": 36827273579, \"power_samples\": [154.07848440600003, 150.3360494939999, 159.62615502799997, 161.42731813199987, 159.695971236, 155.95353632399986, 154.0090256579998, 157.82475377999992, 163.44224060999989, 157.68535950800003, 159.55633882000018, 157.68535950800003, 150.2668288899996, 161.42731813199987, 152.13792727399994, 155.88395825999999, 163.30213141799993, 166.97379730199998, 155.8143801959999, 150.19760828599976, 157.68535950800003, 157.61566237199997, 166.90350456199974, 144.58083637599987, 153.80064941399985, 161.3573828519999, 165.17311073000008, 157.75505664399986, 153.87010816199984, 161.49725341199985, 157.68535950800003, 157.54596523599992, 157.54596523599992, 161.28744757200013, 163.16202222599998, 159.4167064039999], \"power_mean\": 157.89463701322214, \"energy_millijoules\": 5814.828993942831, \"energy_joules\": 5.8148289939428315, \"coremark_score\": 8148.85237, \"coremarks_per_mhz\": 8.488387885416666, \"ulpmark_cm_score\": 51.5922308828863}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [925.67617956, 933.0524191240002, 929.425549932, 936.86088288], \"power_mean\": 931.253757874, \"energy_millijoules\": 4656.26878937, \"energy_joules\": 4.65626878937}}, \"1075200\": {\"active\": {\"elapsed_sec\": 32.936725716, \"elapsed_ns\": 32936725716, \"power_samples\": [183.75167553200015, 187.4215546040001, 178.13561854199986, 181.88093436399993, 191.16663203799988, 183.68031041200004, 185.55093250800007, 172.4489113520002, 183.68031041200004, 181.809688316, 181.73844226799986, 181.73844226799986, 181.73844226799986, 191.16663203799988, 176.12310019799986, 185.407671156, 187.206451356, 177.99360322199993, 176.0519210829999, 183.60894529200016, 187.34995134000008, 185.407671156, 170.50775812799986, 181.66690422800013, 187.206451356, 181.59565818, 177.85129688699988, 185.33618696400015, 183.53728769200018, 185.33618696400015, 185.33618696400015, 181.66690422800013], \"power_mean\": 182.659333228625, \"energy_millijoules\": 6016.200358018666, \"energy_joules\": 6.016200358018666, \"coremark_score\": 9111.894059, \"coremarks_per_mhz\": 8.474603849516368, \"ulpmark_cm_score\": 49.86536055105717}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [925.49961384, 934.869333408, 932.9930873520001, 933.111750896], \"power_mean\": 931.6184463740001, \"energy_millijoules\": 4658.09223187, \"energy_joules\": 4.65809223187}}, \"1190400\": {\"active\": {\"elapsed_sec\": 29.747397124, \"elapsed_ns\": 29747397124, \"power_samples\": [204.05032841100012, 207.717943407, 204.05032841100012, 198.36338454199984, 200.23352986200018, 202.10750744699988, 203.83230147899974, 196.56543833400008, 209.5919209919997, 200.16109260600012, 194.695173942, 207.64502961900018, 204.05032841100012, 205.77500337100003, 194.5510138620001, 194.5510138620001, 205.70220865499994, 205.70220865499994, 196.49323922199994, 198.29106635799997, 203.90497712299987, 203.83230147899974, 196.42104011000004, 207.49920204299985, 205.62941393899985, 196.42104011000004, 207.64502961900018, 205.62941393899985, 205.62941393899985], \"power_mean\": 202.30144461203446, \"energy_millijoules\": 6017.941411633079, \"energy_joules\": 6.017941411633079, \"coremark_score\": 10089.120565, \"coremarks_per_mhz\": 8.475403700436827, \"ulpmark_cm_score\": 49.850933978865285}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [925.32280691, 934.7501875799999, 942.242706075, 927.2576690850001], \"power_mean\": 932.3933424125, \"energy_millijoules\": 4661.9667120625, \"energy_joules\": 4.6619667120625}}, \"1305600\": {\"active\": {\"elapsed_sec\": 27.104334, \"elapsed_ns\": 27104334000, \"power_samples\": [215.05940808899993, 228.08219731899987, 228.15642187499986, 224.2648034099999, 227.9334440079998, 226.0600634919998, 239.22981824399983, 231.82177352700012, 216.78229599300005, 229.87764179499993, 237.43496937199973, 233.3929288799999, 222.32096454799978, 231.74731082699998, 237.135382092, 228.00797276299988, 237.28502241199988, 229.7286498520001, 224.11652785199988, 233.3929288799999, 229.65430622399992, 220.30008847200008, 227.78499489600006, 227.78499489600006, 231.59808025200016, 227.85921945199982, 224.04254168399973], \"power_mean\": 228.55017596688882, \"energy_millijoules\": 6194.700305165327, \"energy_joules\": 6.194700305165328, \"coremark_score\": 11073.788343, \"coremarks_per_mhz\": 8.481761904871325, \"ulpmark_cm_score\": 48.42849294095002}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [929.0116523490001, 932.755517101, 932.696185329, 938.3751501559999], \"power_mean\": 933.20962623375, \"energy_millijoules\": 4666.04813116875, \"energy_joules\": 4.66604813116875}}, \"1401600\": {\"active\": {\"elapsed_sec\": 25.313049782, \"elapsed_ns\": 25313049782, \"power_samples\": [39.869033736000006, 233.3929288799999, 246.48576928800014, 246.48576928800014, 246.41035352400002, 246.48576928800014, 246.48576928800014, 242.67196901199998, 244.61645796000005, 251.94598738000002, 252.0975338280001, 253.89095285999986, 250.00126004399988, 238.85481495600004, 240.72771820800006, 251.94598738000002, 248.35891117199992, 239.00469341999985, 244.54116126799988, 244.46586457599994, 250.07691419599985, 255.68796381599998, 253.73916826799984, 242.52161377200002, 238.704936492], \"power_mean\": 237.97877207599998, \"energy_millijoules\": 6023.968504619019, \"energy_joules\": 6.023968504619019, \"coremark_score\": 11857.238844, \"coremarks_per_mhz\": 8.4597879880137, \"ulpmark_cm_score\": 49.80105718845774}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [930.765159325, 926.9627963050001, 928.893465093, 926.9627963050001], \"power_mean\": 928.3960542570001, \"energy_millijoules\": 4641.9802712850005, \"energy_joules\": 4.641980271285001}}, \"1516800\": {\"active\": {\"elapsed_sec\": 23.331122231, \"elapsed_ns\": 23331122231, \"power_samples\": [270.4942800719997, 281.71494947199983, 277.89569122199975, 277.9734498119998, 274.158260262, 274.23577973199997, 279.764406702, 277.8182500139998, 287.16889023600004, 287.16889023600004, 275.94965360599974, 279.53172586200014, 279.68684642200003, 279.60928614199986, 277.740808806, 288.881174388, 283.2722709929998, 272.131547951, 285.1406292569999, 287.0128161240001, 287.0128161240001, 287.09085317999995, 287.0128161240001], \"power_mean\": 280.80287359734774, \"energy_millijoules\": 6551.446166715762, \"energy_joules\": 6.551446166715762, \"coremark_score\": 12865.597393, \"coremarks_per_mhz\": 8.482065791798524, \"ulpmark_cm_score\": 45.79141648513154}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [932.4586150780001, 936.2649371399999, 934.393481052, 928.715942022], \"power_mean\": 932.958243823, \"energy_millijoules\": 4664.791219115, \"energy_joules\": 4.664791219115}}, \"1632000\": {\"active\": {\"elapsed_sec\": 21.693446346, \"elapsed_ns\": 21693446346, \"power_samples\": [316.9218627600002, 320.4218631749999, 322.209234478, 318.550034256, 316.6017623880001, 318.630096512, 324.1578652709999, 324.1578652709999, 331.552469544, 320.34135299, 309.1264088099998, 316.682033208, 325.8644586659999, 329.60381087999997, 335.2109255099998, 322.209234478, 314.73388090000014, 320.5020447469998, 323.91627653399985, 325.94499745400014, 329.6845880559998], \"power_mean\": 322.23919361371424, \"energy_millijoules\": 6990.478657237416, \"energy_joules\": 6.990478657237416, \"coremark_score\": 13837.638376, \"coremarks_per_mhz\": 8.478945083333334, \"ulpmark_cm_score\": 42.91551619135588}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [936.02641236, 938.0167701359999, 934.274335224, 930.46885315], \"power_mean\": 934.6965927174999, \"energy_millijoules\": 4673.482963587499, \"energy_joules\": 4.6734829635874995}}, \"1747200\": {\"active\": {\"elapsed_sec\": 20.241969263, \"elapsed_ns\": 20241969263, \"power_samples\": [357.38786395199975, 355.52045875199985, 359.25909580199993, 364.778270638, 361.12650100200005, 353.48840137599984, 351.781821702, 355.4380135919997, 355.4380135919997, 364.778270638, 362.91098451000005, 362.8280628179999, 348.047011302, 360.96089576199995, 364.6952298739999, 368.2664905359999, 362.661879591, 358.9280227429998, 357.0572686459999, 362.7448012829999], \"power_mean\": 359.4048679055499, \"energy_millijoules\": 7275.062289116717, \"energy_joules\": 7.2750622891167165, \"coremark_score\": 14830.927427, \"coremarks_per_mhz\": 8.48839710794414, \"ulpmark_cm_score\": 41.2367603297076}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [930.35042775, 935.90727204, 932.161956218, 926.60870727], \"power_mean\": 931.2570908195, \"energy_millijoules\": 4656.2854540975, \"energy_joules\": 4.6562854540975005}}, \"1862400\": {\"active\": {\"elapsed_sec\": 19.003087128, \"elapsed_ns\": 19003087128, \"power_samples\": [394.5037383, 407.494941478, 400.0234021089999, 399.8527929169999, 403.6717162169999, 405.4566889419999, 403.4150879969999, 394.24889689199983, 403.4150879969999, 407.15181696599996, 407.23759809399996, 399.76748832099963, 401.7194831969997, 405.28536483000005, 412.75499807099993, 407.15181696599996, 407.15181696599996, 403.4150879969999], \"power_mean\": 403.5398791253888, \"energy_millijoules\": 7668.503482642352, \"energy_joules\": 7.668503482642351, \"coremark_score\": 15796.956453, \"coremarks_per_mhz\": 8.482042769007732, \"ulpmark_cm_score\": 39.1210619750059}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [939.532970766, 932.102624446, 932.102624446, 928.47956751], \"power_mean\": 933.054446792, \"energy_millijoules\": 4665.27223396, \"energy_joules\": 4.665272233960001}}, \"1977600\": {\"active\": {\"elapsed_sec\": 17.902862962, \"elapsed_ns\": 17902862962, \"power_samples\": [357.3052997199999, 451.7957967000001, 447.9711433079998, 449.83723773999975, 449.83723773999975, 449.74871649199974, 449.74871649199974, 455.26158758400004, 455.26158758400004, 444.23513048000007, 451.6185155720001, 449.66019524399974, 455.35046629199985, 451.529875008, 442.19294661599986, 453.48449093199986, 453.395731296], \"power_mean\": 445.1902749882352, \"energy_millijoules\": 7970.180485129471, \"energy_joules\": 7.970180485129471, \"coremark_score\": 16768.207479, \"coremarks_per_mhz\": 8.47906931583738, \"ulpmark_cm_score\": 37.640301942939836}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [926.4317836020001, 937.598700884, 935.7881317199999, 931.924385967], \"power_mean\": 932.93575054325, \"energy_millijoules\": 4664.6787527162505, \"energy_joules\": 4.6646787527162505}}, \"2073600\": {\"active\": {\"elapsed_sec\": 17.074859889, \"elapsed_ns\": 17074859889, \"power_samples\": [494.2847491199999, 498.0198083959998, 484.9528354119997, 492.14497211700007, 496.05886750800016, 497.83619476399974, 497.83619476399974, 494.193368436, 488.41062898200005, 495.78399324099985, 501.383239356, 490.27588942199975, 495.78399324099985, 490.0936048299999, 505.1173441029997, 506.89027079499976, 495.60099372900015], \"power_mean\": 495.56864401270576, \"energy_millijoules\": 8461.76516189867, \"energy_joules\": 8.461765161898668, \"coremark_score\": 17583.963425, \"coremarks_per_mhz\": 8.479920633198304, \"ulpmark_cm_score\": 35.453595586749344}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [941.163517705, 926.313592791, 926.2546182350001, 931.865054195], \"power_mean\": 931.3991957315, \"energy_millijoules\": 4656.9959786575, \"energy_joules\": 4.6569959786575}}, \"2169600\": {\"active\": {\"elapsed_sec\": 16.300708952, \"elapsed_ns\": 16300708952, \"power_samples\": [564.5485416659998, 557.0855837789999, 564.4526335619997, 569.9541842730001, 573.5863770739999, 560.6238126509999, 566.0288235599998, 564.2604242879996, 573.4898733660001, 565.932796384, 569.6649930499999, 571.4327967179998, 563.9726999759997, 573.3933696580001, 578.9897546279998, 569.5687274859998], \"power_mean\": 567.9365870074373, \"energy_millijoules\": 9257.769008000461, \"energy_joules\": 9.257769008000462, \"coremark_score\": 18419.598453, \"coremarks_per_mhz\": 8.489859168971238, \"ulpmark_cm_score\": 32.40521552662886}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [931.7463906510001, 933.679580692, 928.065669927, 935.54960694], \"power_mean\": 932.2603120525, \"energy_millijoules\": 4661.3015602625, \"energy_joules\": 4.6613015602625}}, \"2265600\": {\"active\": {\"elapsed_sec\": 15.623722338, \"elapsed_ns\": 15623722338, \"power_samples\": [584.683358226, 586.4503279019999, 582.6248517380001, 590.1825245679998, 597.4469926020003, 593.8130869439998, 588.2170594339999, 588.0221458899999, 582.4306526260001, 587.924689118, 593.5196442479997, 587.924689118, 587.924689118, 586.1583148020001, 587.826832933], \"power_mean\": 588.3433239511332, \"energy_millijoules\": 9192.112732828491, \"energy_joules\": 9.192112732828491, \"coremark_score\": 19215.987702, \"coremarks_per_mhz\": 8.48163298993644, \"ulpmark_cm_score\": 32.63667545422797}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [927.9474826710001, 927.9474826710001, 937.240565492, 940.983734845], \"power_mean\": 933.52981641975, \"energy_millijoules\": 4667.64908209875, \"energy_joules\": 4.66764908209875}}, \"2361600\": {\"active\": {\"elapsed_sec\": 15.018821036, \"elapsed_ns\": 15018821036, \"power_samples\": [638.2754662059998, 641.703559578, 647.293622514, 651.0241494869998, 656.516165652, 652.684250335, 649.0594065869999, 654.445620699, 654.3438748949999, 656.2105702920002, 652.4809968709998, 643.3648516339998, 650.6181188469999, 648.653436708], \"power_mean\": 649.7624350217857, \"energy_millijoules\": 9758.665727507778, \"energy_joules\": 9.758665727507777, \"coremark_score\": 19992.003199, \"coremarks_per_mhz\": 8.465448509061654, \"ulpmark_cm_score\": 30.74190759033363}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [935.19194184, 935.3110821599998, 929.6393900000002, 939.054012148], \"power_mean\": 934.799106537, \"energy_millijoules\": 4673.9955326849995, \"energy_joules\": 4.673995532685}}, \"2457600\": {\"active\": {\"elapsed_sec\": 14.411704474, \"elapsed_ns\": 14411704474, \"power_samples\": [721.3430052120001, 713.5676621879999, 717.4020777720001, 724.749702468, 733.9624724280001, 730.1274612400001, 726.50571142, 713.3565455799998, 728.3718097479999, 730.1274612400001, 735.5033516959999, 722.5688387639999, 722.5688387639999, 724.3241740259997], \"power_mean\": 724.6056508961428, \"energy_millijoules\": 10442.802500905624, \"energy_joules\": 10.442802500905623, \"coremark_score\": 20834.780193, \"coremarks_per_mhz\": 8.477693763427734, \"ulpmark_cm_score\": 28.72792049586146}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [938.8147779560001, 931.3901568560001, 927.651772344, 929.5801773000001], \"power_mean\": 931.8592211140001, \"energy_millijoules\": 4659.296105570001, \"energy_joules\": 4.659296105570001}}, \"2553600\": {\"active\": {\"elapsed_sec\": 13.877446089, \"elapsed_ns\": 13877446089, \"power_samples\": [601.0766021579999, 800.3753880939997, 809.5752853529999, 807.602202533, 805.629357857, 805.740873421, 814.714540204, 811.1006567019998, 809.1278125139999, 801.7913905919999, 810.8769111419998, 807.15520647, 809.0160588059999], \"power_mean\": 791.8294066035384, \"energy_millijoules\": 10988.569901825464, \"energy_joules\": 10.988569901825464, \"coremark_score\": 21638.776688, \"coremarks_per_mhz\": 8.473831723057645, \"ulpmark_cm_score\": 27.301095836880727}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [925.6056564200001, 931.21216154, 940.5639959, 936.8224962399999], \"power_mean\": 933.551077525, \"energy_millijoules\": 4667.755387625, \"energy_joules\": 4.667755387625}}, \"2649600\": {\"active\": {\"elapsed_sec\": 13.36432187, \"elapsed_ns\": 13364321870, \"power_samples\": [896.0562774279998, 899.545176533, 899.6627681850001, 891.8665848719999, 895.8210899440002, 901.287603225, 904.8935023139999, 910.358704827, 904.6576040900001, 897.4500939569999, 902.911961977, 906.517265218, 906.3991970339999], \"power_mean\": 901.3406022772308, \"energy_millijoules\": 12045.805923332568, \"energy_joules\": 12.045805923332567, \"coremark_score\": 22470.226949, \"coremarks_per_mhz\": 8.48061101637983, \"ulpmark_cm_score\": 24.90493387569062}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [938.575298647, 936.7625623799998, 936.8224962399999, 931.21216154], \"power_mean\": 935.84312970175, \"energy_millijoules\": 4679.21564850875, \"energy_joules\": 4.67921564850875}}, \"2745600\": {\"active\": {\"elapsed_sec\": 12.887188173, \"elapsed_ns\": 12887188173, \"power_samples\": [975.117380236, 989.7573318879998, 985.9119621719998, 993.3520328519998, 993.2283651119998, 991.2458702360001, 998.6849878520001, 992.9810296320001, 989.1401839079998, 989.1401839079998, 994.7159508839999, 998.188378752], \"power_mean\": 990.9553047859999, \"energy_millijoules\": 12770.627483809749, \"energy_joules\": 12.770627483809749, \"coremark_score\": 23300.970874, \"coremarks_per_mhz\": 8.48665897217366, \"ulpmark_cm_score\": 23.491406383933114}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [929.106233025, 936.643183916, 940.324039815, 945.93294321], \"power_mean\": 938.0015999915, \"energy_millijoules\": 4690.0079999575, \"energy_joules\": 4.6900079999575}}, \"2841600\": {\"active\": {\"elapsed_sec\": 12.468779214, \"elapsed_ns\": 12468779214, \"power_samples\": [1087.3127652900002, 1092.6272565779996, 1095.9554970219997, 1095.9554970219997, 1094.0978615820004, 1097.682673714, 1095.6948176699998, 1095.434138318, 1102.8665805799997, 1099.4096122619999, 1093.576979166, 1097.2912974700002], \"power_mean\": 1095.6587480561666, \"energy_millijoules\": 13661.527023399993, \"energy_joules\": 13.661527023399993, \"coremark_score\": 24082.844987, \"coremarks_per_mhz\": 8.475100291033222, \"ulpmark_cm_score\": 21.959477845057027}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [936.344493128, 945.75208797, 940.204184575, 929.0470203250001], \"power_mean\": 937.8369464995001, \"energy_millijoules\": 4689.184732497501, \"energy_joules\": 4.689184732497501}}, \"3187200\": {\"active\": {\"elapsed_sec\": 11.112048589, \"elapsed_ns\": 11112048589, \"power_samples\": [1540.5068491339998, 1551.1563558449998, 1548.9796770039998, 1550.197036173, 1552.3696795169994, 1557.7717235979999, 1559.46399243, 1555.7549321009997, 1555.4337877079997, 1555.4337877079997, 1554.9530562239997], \"power_mean\": 1552.9109888583635, \"energy_millijoules\": 17256.022362586173, \"energy_joules\": 17.256022362586172, \"coremark_score\": 27029.462114, \"coremarks_per_mhz\": 8.480629428338354, \"ulpmark_cm_score\": 17.385234771742542}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [938.1563936939999, 939.9642284899999, 936.344493128, 936.344493128], \"power_mean\": 937.7024021099999, \"energy_millijoules\": 4688.512010549999, \"energy_joules\": 4.688512010549999}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm8250ac/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 cpu7 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 937 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 403 518 614 691 787 883 979 1075 1171 1248 1344 1420 1516 1612 1708 1804\n\n 300:  1114     3.7 C/MHz     35 mW    9.5 J   31.6 I/mJ   269.3 s\n 403:  1497     3.7 C/MHz     32 mW    6.3 J   47.5 I/mJ   200.4 s\n 518:  1925     3.7 C/MHz     24 mW    3.7 J   80.1 I/mJ   155.8 s\n 614:  2281     3.7 C/MHz     28 mW    3.7 J   81.9 I/mJ   131.5 s\n 691:  2567     3.7 C/MHz     31 mW    3.7 J   81.7 I/mJ   116.9 s\n 787:  2923     3.7 C/MHz     37 mW    3.8 J   80.0 I/mJ   102.6 s\n 883:  3280     3.7 C/MHz     41 mW    3.7 J   80.6 I/mJ    91.5 s\n 979:  3636     3.7 C/MHz     46 mW    3.8 J   78.5 I/mJ    82.5 s\n1075:  3992     3.7 C/MHz     51 mW    3.8 J   78.9 I/mJ    75.2 s\n1171:  4349     3.7 C/MHz     53 mW    3.6 J   82.5 I/mJ    69.0 s\n1248:  4634     3.7 C/MHz     61 mW    3.9 J   76.2 I/mJ    64.7 s\n1344:  4991     3.7 C/MHz     62 mW    3.8 J   80.0 I/mJ    60.1 s\n1420:  5276     3.7 C/MHz     69 mW    3.9 J   76.1 I/mJ    56.9 s\n1516:  5632     3.7 C/MHz     75 mW    4.0 J   75.2 I/mJ    53.3 s\n1612:  5989     3.7 C/MHz     80 mW    4.0 J   75.3 I/mJ    50.1 s\n1708:  6345     3.7 C/MHz     86 mW    4.1 J   73.7 I/mJ    47.3 s\n1804:  6702     3.7 C/MHz     95 mW    4.2 J   70.8 I/mJ    44.8 s\n\n\n===== CPU 4 =====\nFrequencies: 710 825 940 1056 1171 1286 1382 1478 1574 1670 1766 1862 1958 2054 2150 2246 2342 2419\n\n 710:  6028     8.5 C/MHz    104 mW    5.2 J   58.1 I/mJ    49.8 s\n 825:  7006     8.5 C/MHz    122 mW    5.2 J   57.4 I/mJ    42.8 s\n 940:  7980     8.5 C/MHz    146 mW    5.5 J   54.7 I/mJ    37.6 s\n1056:  8947     8.5 C/MHz    167 mW    5.6 J   53.5 I/mJ    33.5 s\n1171:  9932     8.5 C/MHz    189 mW    5.7 J   52.5 I/mJ    30.2 s\n1286: 10913     8.5 C/MHz    214 mW    5.9 J   51.0 I/mJ    27.5 s\n1382: 11728     8.5 C/MHz    228 mW    5.8 J   51.4 I/mJ    25.6 s\n1478: 12521     8.5 C/MHz    263 mW    6.3 J   47.7 I/mJ    24.0 s\n1574: 13356     8.5 C/MHz    289 mW    6.5 J   46.2 I/mJ    22.5 s\n1670: 14180     8.5 C/MHz    321 mW    6.8 J   44.2 I/mJ    21.2 s\n1766: 14986     8.5 C/MHz    351 mW    7.0 J   42.6 I/mJ    20.0 s\n1862: 15807     8.5 C/MHz    399 mW    7.6 J   39.6 I/mJ    19.0 s\n1958: 16601     8.5 C/MHz    403 mW    7.3 J   41.2 I/mJ    18.1 s\n2054: 17426     8.5 C/MHz    468 mW    8.1 J   37.2 I/mJ    17.2 s\n2150: 18256     8.5 C/MHz    517 mW    8.5 J   35.3 I/mJ    16.4 s\n2246: 19060     8.5 C/MHz    567 mW    8.9 J   33.6 I/mJ    15.8 s\n2342: 19873     8.5 C/MHz    620 mW    9.4 J   32.0 I/mJ    15.1 s\n2419: 20521     8.5 C/MHz    669 mW    9.8 J   30.6 I/mJ    14.6 s\n\n\n===== CPU 7 =====\nFrequencies: 844 960 1075 1190 1305 1401 1516 1632 1747 1862 1977 2073 2169 2265 2361 2457 2553 2649 2745 2841 3187\n\n 844:  7158     8.5 C/MHz    133 mW    5.6 J   53.7 I/mJ    41.9 s\n 960:  8149     8.5 C/MHz    158 mW    5.8 J   51.6 I/mJ    36.8 s\n1075:  9112     8.5 C/MHz    183 mW    6.0 J   49.9 I/mJ    32.9 s\n1190: 10089     8.5 C/MHz    202 mW    6.0 J   49.9 I/mJ    29.7 s\n1305: 11074     8.5 C/MHz    229 mW    6.2 J   48.4 I/mJ    27.1 s\n1401: 11857     8.5 C/MHz    238 mW    6.0 J   49.8 I/mJ    25.3 s\n1516: 12866     8.5 C/MHz    281 mW    6.6 J   45.8 I/mJ    23.3 s\n1632: 13838     8.5 C/MHz    322 mW    7.0 J   42.9 I/mJ    21.7 s\n1747: 14831     8.5 C/MHz    359 mW    7.3 J   41.2 I/mJ    20.2 s\n1862: 15797     8.5 C/MHz    404 mW    7.7 J   39.1 I/mJ    19.0 s\n1977: 16768     8.5 C/MHz    445 mW    8.0 J   37.6 I/mJ    17.9 s\n2073: 17584     8.5 C/MHz    496 mW    8.5 J   35.5 I/mJ    17.1 s\n2169: 18420     8.5 C/MHz    568 mW    9.3 J   32.4 I/mJ    16.3 s\n2265: 19216     8.5 C/MHz    588 mW    9.2 J   32.6 I/mJ    15.6 s\n2361: 19992     8.5 C/MHz    650 mW    9.8 J   30.7 I/mJ    15.0 s\n2457: 20835     8.5 C/MHz    725 mW   10.4 J   28.7 I/mJ    14.4 s\n2553: 21639     8.5 C/MHz    792 mW   11.0 J   27.3 I/mJ    13.9 s\n2649: 22470     8.5 C/MHz    901 mW   12.0 J   24.9 I/mJ    13.4 s\n2745: 23301     8.5 C/MHz    991 mW   12.8 J   23.5 I/mJ    12.9 s\n2841: 24083     8.5 C/MHz   1096 mW   13.7 J   22.0 I/mJ    12.5 s\n3187: 27029     8.5 C/MHz   1553 mW   17.3 J   17.4 I/mJ    11.1 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm8250ac/uptime.txt",
    "content": " 18:31:38 up 52 min,  load average: 1.65, 1.70, 1.72\n"
  },
  {
    "path": "results/sm8250ac/versions.txt",
    "content": "Kernel: Linux version 4.19.259-freqbench//c5406bb0643a (emanuel@ZorinOS) (ZyC clang version 14.0.6 (https://github.com/llvm/llvm-project f28c006a5895fc0e329fe15fead81e37457cb1d1), LLD 14.0.6) #3 SMP PREEMPT Sun May 28 15:49:39 CEST 2023\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm8350/fifth/cmdline.txt",
    "content": "isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on log_buf_len=256K earlycon=msm_geni_serial,0x98c000 rcupdate.rcu_expedited=1 rcu_nocbs=0-7 kpti=off console=ttyMSM0,115200n8 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 androidboot.usbcontroller=a600000.dwc3 swiotlb=0 loop.max_part=7 cgroup.memory=nokmem,nosocket pcie_ports=compat loop.max_part=7 iptable_raw.raw_before_defrag=1 ip6table_raw.raw_before_defrag=1 buildvariant=userdebug console=ttyMSM0,115200n8 androidboot.console=ttyMSM0 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on msm_rtb.filter=0x237 ehci-hcd.park=3 service_locator.enable=1 androidboot.memcg=1 cgroup.memory=nokmem lpm_levels.sleep_disabled=1 usbcore.autosuspend=7 androidboot.usbcontroller=a600000.dwc3 swiotlb=2048 androidboot.boot_devices=soc/1d84000.ufshc loop.max_part=7 snd_soc_cs35l41_i2c.async_probe=1 i2c_qcom_geni.async_probe=1 st21nfc.async_probe=1 spmi_pmic_arb.async_probe=1 ufs_qcom.async_probe=1 buildvariant=user androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED androidboot.baseband=msm msm_drm.dsi_display0=qcom,mdss_dsi_visionox_r66451_fhd_plus_cmd:config2:timing2: androidboot.slot_suffix=_a rootwait ro init=/init androidboot.dtbo_idx=26 androidboot.dtb_idx=1 androidboot.force_normal_boot=1\n"
  },
  {
    "path": "results/sm8350/fifth/cpufreq_stats/0/time_in_state",
    "content": "300000 145093\n403200 20960\n499200 17090\n595200 14434\n691200 12603\n806400 10874\n902400 9858\n998400 8944\n1094400 8233\n1209600 7520\n1305600 7013\n1401600 6607\n1497600 7016\n1612800 5896\n1708800 5591\n1804800 5411\n"
  },
  {
    "path": "results/sm8350/fifth/cpufreq_stats/0/total_trans",
    "content": "18\n"
  },
  {
    "path": "results/sm8350/fifth/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    403200    499200    595200    691200    806400    902400    998400   1094400   1209600   1305600   1401600   1497600   1612800   1708800   1804800 \n   300000:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   403200:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   499200:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n   595200:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n   691200:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n   806400:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n   902400:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n   998400:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1094400:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1209600:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1305600:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1401600:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  1497600:         1         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  1612800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  1708800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  1804800:         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8350/fifth/cpufreq_stats/4/time_in_state",
    "content": "710400 246984\n844800 4788\n960000 4280\n1075200 3973\n1209600 3566\n1324800 3362\n1440000 3159\n1555200 2956\n1670400 2852\n1766400 2751\n1881600 2650\n1996800 2548\n2112000 2446\n2227200 2343\n2342400 2242\n2419200 2243\n"
  },
  {
    "path": "results/sm8350/fifth/cpufreq_stats/4/total_trans",
    "content": "16\n"
  },
  {
    "path": "results/sm8350/fifth/cpufreq_stats/4/trans_table",
    "content": "   From  :    To\n         :    710400    844800    960000   1075200   1209600   1324800   1440000   1555200   1670400   1766400   1881600   1996800   2112000   2227200   2342400   2419200 \n   710400:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   844800:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   960000:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1075200:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1209600:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1324800:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1440000:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1555200:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1670400:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1766400:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1881600:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1996800:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2112000:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2227200:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2342400:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2419200:         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8350/fifth/cpufreq_stats/7/time_in_state",
    "content": "844800 240560\n960000 4279\n1075200 3973\n1190400 3566\n1305600 3362\n1420800 3872\n1555200 4381\n1670400 3057\n1785600 3159\n1900800 3159\n2035200 2446\n2150400 2344\n2265600 2344\n2380800 2243\n2496000 2140\n2592000 2141\n2688000 2039\n2764800 2039\n2841600 2039\n"
  },
  {
    "path": "results/sm8350/fifth/cpufreq_stats/7/total_trans",
    "content": "19\n"
  },
  {
    "path": "results/sm8350/fifth/cpufreq_stats/7/trans_table",
    "content": "   From  :    To\n         :    844800    960000   1075200   1190400   1305600   1420800   1555200   1670400   1785600   1900800   2035200   2150400   2265600   2380800   2496000   2592000   2688000   2764800   2841600 \n   844800:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   960000:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1075200:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1190400:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1305600:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1420800:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1555200:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1670400:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1785600:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1900800:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  2035200:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  2150400:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  2265600:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  2380800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  2496000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2592000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2688000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2764800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2841600:         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8350/fifth/cpuinfo.txt",
    "content": "processor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x2\nCPU part\t: 0xd05\nCPU revision\t: 0\n\n"
  },
  {
    "path": "results/sm8350/fifth/device.txt",
    "content": "Model: Qualcomm Technologies, Inc. LahainaP QRD;\nCompatible: qcom,lahainap-qrd;qcom,lahainap;qcom,qrd;\n"
  },
  {
    "path": "results/sm8350/fifth/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x412fd050]\n[    0.000000] Linux version 5.4.268-qgki-gcc6a9ab308ab (nobody@android-build) (Android (10087095, +pgo, +bolt, +lto, -mlgo, based on r487747c) clang version 17.0.2 (https://android.googlesource.com/toolchain/llvm-project d9f89f4d16663d5012e5c09495f3b30ece3d2362), LLD 17.0.2) #1 SMP PREEMPT Sat Apr 13 23:16:54 CST 2024\n[    0.000000] memblock_reserve: 0x9c9f4 setup_arch+0x64/0x1e4\n[    0.000000] Machine model: Qualcomm Technologies, Inc. LahainaP QRD\n[    0.000000] Memory limit set/overridden to 7055MB\n[    0.000000] OF: fdt: Reserved memory: failed to reserve memory for node 'demura_region_0': base 0x0000000000000000, size 0 MiB\n[    0.000000] OF: fdt: Reserved memory: failed to reserve memory for node 'demura_region_1': base 0x0000000000000000, size 0 MiB\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff400000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fc400000, size 48 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ce000000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6000000, size 100 MiB\n[    0.000000] OF: reserved mem: initialized node non_secure_display_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f4c00000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f4800000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f3800000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node user_contig_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f2c00000, size 12 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f1c00000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000e7800000, size 164 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x00000000df700000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node memshare_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000e6400000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node cnss_wlan_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000e4800000, size 28 MiB\n[    0.000000] OF: reserved mem: initialized node audio_cma_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000e3800000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] On node 0 totalpages: 1632848\n[    0.000000]   Normal zone: 25514 pages used for memmap\n[    0.000000]   Normal zone: 0 pages reserved\n[    0.000000]   Normal zone: 1632848 pages, LIFO batch:63\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] psci: OSI mode supported.\n[    0.000000] psci: Switched to OSI mode.\n[    0.000000] percpu: Embedded 30 pages/cpu s93336 r0 d29544 u122880\n[    0.000000] pcpu-alloc: s93336 r0 d29544 u122880 alloc=30*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] CPU features: detected: GIC system register CPU interface\n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] CPU features: detected: Speculative Store Bypassing Safe (SSBS)\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1607334\n[    0.000000] Kernel command line: isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on log_buf_len=256K earlycon=msm_geni_serial,0x98c000 rcupdate.rcu_expedited=1 rcu_nocbs=0-7 kpti=off console=ttyMSM0,115200n8 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 androidboot.usbcontroller=a600000.dwc3 swiotlb=0 loop.max_part=7 cgroup.memory=nokmem,nosocket pcie_ports=compat loop.max_part=7 iptable_raw.raw_before_defrag=1 ip6table_raw.raw_before_defrag=1 buildvariant=userdebug console=ttyMSM0,115200n8 androidboot.console=ttyMSM0 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on msm_rtb.filter=0x237 ehci-hcd.park=3 service_locator.enable=1 androidboot.memcg=1 cgroup.memory=nokmem lpm_levels.sleep_disabled=1 usbcore.autosuspend=7 androidboot.usbcontroller=a600000.dwc3 swiotlb=2048 androidboot.boot_devices=soc/1d84000.ufshc loop.max_\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)\n[    0.000000] mem auto-init: stack:all(zero), heap alloc:on, heap free:off\n[    0.000000] Memory: 5774596K/6531392K available (28990K kernel code, 4112K rwdata, 17120K rodata, 2048K init, 11534K bss, 261180K reserved, 495616K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n\n[    0.000000] **********************************************************\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **                                                      **\n[    0.000000] ** trace_printk() being used. Allocating extra memory.  **\n[    0.000000] **                                                      **\n[    0.000000] ** This means that this is a DEBUG kernel and it is     **\n[    0.000000] ** unsafe for production use.                           **\n[    0.000000] **                                                      **\n[    0.000000] ** If you see this message and you are not debugging    **\n[    0.000000] ** the kernel, report this immediately to your vendor!  **\n[    0.000000] **                                                      **\n[    0.000000] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **\n[    0.000000] **********************************************************\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU event tracing is enabled.\n[    0.000000] rcu: \tRCU priority boosting: priority 1 delay 500 ms.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTrampoline variant of Tasks RCU enabled.\n[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: 988 SPIs implemented\n[    0.000000] GICv3: 0 Extended SPIs implemented\n[    0.000000] GICv3: Distributor has no Range Selector support\n[    0.000000] GICv3: 16 PPIs implemented\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000011] clocksource: Switched to clocksource arch_sys_counter\n[    0.004413] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=76800)\n[    0.004420] pid_max: default: 32768 minimum: 301\n[    0.004474] LSM: Security Framework initializing\n[    0.004498] SELinux:  Initializing.\n[    0.004582] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)\n[    0.004602] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)\n[    0.006043] cblist_init_generic: Setting adjustable number of callback queues.\n[    0.006056] cblist_init_generic: Setting shift to 3 and lim to 1.\n[    0.006125] ASID allocator initialised with 65536 entries\n[    0.006224] rcu: Hierarchical SRCU implementation.\n[    0.006227] rcu: \tMax phase no-delay instances is 1000.\n[    0.006656] dynamic_debug:dynamic_debug_init: Ignore empty _ddebug table in a CONFIG_DYNAMIC_DEBUG_CORE build\n[    0.008384] scm_mem_protection_init_do: SCM call failed\n[    0.008654] smp: Bringing up secondary CPUs ...\n[    0.017637] CPU features: detected: Spectre-BHB\n[    0.017677] CPU features: Unsupported CPU feature variation detected.\n[    0.025761] smp: Brought up 1 node, 8 CPUs\n[    0.025766] SMP: Total of 8 processors activated.\n[    0.025770] CPU features: detected: Privileged Access Never\n[    0.025773] CPU features: detected: LSE atomic instructions\n[    0.025775] CPU features: detected: User Access Override\n[    0.025777] CPU features: detected: 32-bit EL0 Support\n[    0.025780] CPU features: detected: Common not Private translations\n[    0.025782] CPU features: detected: RAS Extension Support\n[    0.025785] CPU features: detected: Data cache clean to the PoU not required for I/D coherence\n[    0.025788] CPU features: detected: CRC32 instructions\n[    0.042260] CPU: All CPU(s) started at EL1\n[    0.042312] alternatives: patching kernel code\n[    0.103885] Registered cp15_barrier emulation handler\n[    0.103900] Registered setend emulation handler\n[    0.104013] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns\n[    0.104055] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)\n[    0.116128] pinctrl core: initialized pinctrl subsystem\n[    0.116781] NET: Registered protocol family 16\n[    0.118274] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.118284] audit: initializing netlink subsys (disabled)\n[    0.118795] cpuidle: using governor teo\n[    0.118848] NET: Registered protocol family 42\n[    0.118929] audit: type=2000 audit(0.115:1): state=initialized audit_enabled=0 res=1\n[    0.119423] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.120091] Serial: AMBA PL011 UART driver\n[    0.120202] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.385383] pm8350_s5_level: supplied by pm8350_s9_level\n[    0.385545] pm8350_s5_lvl_ao: supplied by pm8350_s9_level_ao\n[    0.742099] pm8350c_s6_level: supplied by pm8350_s5_level\n[    0.742286] pm8350c_s6_level_ao: supplied by pm8350_s5_lvl_ao\n[    0.759082] pm8350_s9_mmcx_sup_level: supplied by pm8350c_s6_mmcx_sup_level\n[    0.759096] pm8350_s5_mmcx_sup_level: supplied by pm8350_s9_mmcx_sup_level\n[    0.759111] pm8350c_s8_level: supplied by pm8350_s5_mmcx_sup_level\n[    0.759284] pm8350c_s8_level_ao: supplied by pm8350_s5_lvl_ao\n[    1.033850] msm-dcc 117f000.dcc_v2: DCC list passed 3\n[    1.034055] msm-dcc 117f000.dcc_v2: All values written to enable.\n[    1.034159] msm-dcc 117f000.dcc_v2: DCC list passed 4\n[    1.034438] msm-dcc 117f000.dcc_v2: All values written to enable.\n[    1.034735] msm-dcc 117f000.dcc_v2: DCC list passed 6\n[    1.035067] msm-dcc 117f000.dcc_v2: All values written to enable.\n[    1.059308] spmi spmi-0: PMIC arbiter version v5 (0x50020000)\n[    1.079183] sps:sps is ready\n[    1.096136] hh-watchdog hypervisor:qcom,hh-watchdog: QCOM Apps Watchdog Initialized\n[    1.248065] cryptd: max_cpu_qlen set to 1000\n[    1.324736] oledb: Bringing 0uV into 5000000-5000000uV\n[    1.324876] ab: Bringing 0uV into 4600000-4600000uV\n[    1.324954] ibb: Bringing 0uV into 1400000-1400000uV\n[    1.341654] gcc_pcie_0_gdsc: supplied by pm8350c_s6_level\n[    1.341804] gcc_pcie_1_gdsc: supplied by pm8350c_s6_level\n[    1.341945] gcc_ufs_card_gdsc: supplied by pm8350c_s6_level\n[    1.342082] gcc_ufs_phy_gdsc: supplied by pm8350c_s6_level\n[    1.343036] gpu_cc_cx_gdsc: supplied by pm8350c_s6_level\n[    1.343286] gpu_cc_gx_gdsc: supplied by pm8350_s6_level\n[    1.344161] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    1.376117] lahaina-gcc 100000.qcom,gcc: Registered GCC clocks\n[    1.388769] gpu_cc-lahaina 3d90000.qcom,gpucc: Registered GPU CC clocks\n[    1.489574] Rate 19200000 for cam_cc_sleep_clk_src is greater than highest Fmax\n[    1.489579] Rate 19200000 for cam_cc_sleep_clk_src is greater than highest Fmax\n[    1.494828] lahaina-cam_cc ad00000.qcom,camcc: Registered CAM CC clocks\n[    1.520930] video_cc-lahaina abf0000.qcom,videocc: Registered VIDEO CC clocks\n[    1.527626] KPI: Bootloader start count = 75365\n[    1.527629] KPI: Bootloader end count = 792221\n[    1.527631] KPI: Bootloader display count = 3603422531\n[    1.527634] KPI: Bootloader load kernel count = 3261076552\n[    1.527637] KPI: Kernel MPM timestamp = 853761\n[    1.527639] KPI: Kernel MPM Clock frequency = 32768\n[    1.527984] Minidump: Enabled with max number of regions 200\n[    1.539825] Built 1 zonelists, mobility grouping on.  Total pages: 1561915\n[    1.651639] mem-offline: Added memory blocks ranging from mem18 - mem27\n[    1.656321] iommu: Default domain type: Translated \n[    1.664791] arm-smmu 3da0000.kgsl-smmu: \tcoherent table walk\n[    1.664798] arm-smmu 3da0000.kgsl-smmu: \tstream matching with 6 register groups\n[    1.667011] SCSI subsystem initialized\n[    1.667106] usbcore: registered new interface driver usbfs\n[    1.667124] usbcore: registered new interface driver hub\n[    1.667149] usbcore: registered new device driver usb\n[    1.667459] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    1.668267] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pmk8350@0:pon_pbs@800: IRQ pmic-wd-bark not found\n[    1.668468] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pmk8350@0:pon_hlos@1300: IRQ pmic-wd-bark not found\n[    1.668553] input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pmk8350@0:pon_hlos@1300/input/input0\n[    1.669081] mc: Linux media interface: v0.10\n[    1.669100] videodev: Linux video capture interface: v2.00\n[    1.669168] thermal_sys: Registered thermal governor 'step_wise'\n[    1.669170] thermal_sys: Registered thermal governor 'user_space'\n[    1.669173] thermal_sys: Registered thermal governor 'power_allocator'\n[    1.680492] Error creating thermal debugfs directory. err:-19\n[    1.702262] EDAC MC: Ver: 3.0.0\n[    1.702559] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=300000 volt=560000, core_count 4\n[    1.702573] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=403200 volt=560000, core_count 4\n[    1.702578] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=499200 volt=560000, core_count 4\n[    1.702583] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=595200 volt=560000, core_count 4\n[    1.702588] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=691200 volt=560000, core_count 4\n[    1.702592] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=806400 volt=576000, core_count 4\n[    1.702597] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=902400 volt=592000, core_count 4\n[    1.702602] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=998400 volt=612000, core_count 4\n[    1.702606] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1094400 volt=624000, core_count 4\n[    1.702611] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1209600 volt=648000, core_count 4\n[    1.702616] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=1305600 volt=676000, core_count 4\n[    1.702620] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=1401600 volt=700000, core_count 4\n[    1.702625] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=1497600 volt=724000, core_count 4\n[    1.702630] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=1612800 volt=756000, core_count 4\n[    1.702634] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=1708800 volt=776000, core_count 4\n[    1.702639] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=1804800 volt=804000, core_count 4\n[    1.702644] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=1804800 volt=804000, core_count 4\n[    1.702692] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=710400 volt=568000, core_count 4\n[    1.702701] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=844800 volt=592000, core_count 4\n[    1.702706] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=960000 volt=612000, core_count 4\n[    1.702710] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=1075200 volt=632000, core_count 4\n[    1.702715] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=1209600 volt=644000, core_count 4\n[    1.702720] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=1324800 volt=668000, core_count 4\n[    1.702724] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=1440000 volt=684000, core_count 4\n[    1.702729] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=1555200 volt=708000, core_count 4\n[    1.702734] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1670400 volt=732000, core_count 4\n[    1.702738] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1766400 volt=752000, core_count 4\n[    1.702743] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=1881600 volt=800000, core_count 4\n[    1.702748] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=1996800 volt=804000, core_count 4\n[    1.702755] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=2112000 volt=832000, core_count 4\n[    1.702760] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=2227200 volt=864000, core_count 4\n[    1.702764] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=2342400 volt=892000, core_count 4\n[    1.702769] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=2419200 volt=940000, core_count 4\n[    1.702773] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=2419200 volt=940000, core_count 4\n[    1.702806] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=844800 volt=544000, core_count 4\n[    1.702814] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=960000 volt=564000, core_count 4\n[    1.702819] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=1075200 volt=572000, core_count 4\n[    1.702824] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=1190400 volt=592000, core_count 4\n[    1.702828] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=1305600 volt=600000, core_count 4\n[    1.702833] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=1420800 volt=620000, core_count 4\n[    1.702837] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=1555200 volt=640000, core_count 4\n[    1.702842] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=1670400 volt=656000, core_count 4\n[    1.702847] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1785600 volt=676000, core_count 4\n[    1.702851] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1900800 volt=696000, core_count 4\n[    1.702856] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=2035200 volt=720000, core_count 4\n[    1.702861] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=2150400 volt=748000, core_count 4\n[    1.702865] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=2265600 volt=780000, core_count 4\n[    1.702870] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=2380800 volt=816000, core_count 4\n[    1.702875] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=2496000 volt=836000, core_count 4\n[    1.702879] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=2592000 volt=868000, core_count 4\n[    1.702884] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=2688000 volt=892000, core_count 4\n[    1.702889] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=17 freq=2764800 volt=916000, core_count 4\n[    1.702893] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=18 freq=2841600 volt=948000, core_count 4\n[    1.702898] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=19 freq=2841600 volt=948000, core_count 4\n[    1.702963] cpu cpu0: EM: created perf domain\n[    1.703309] cpu cpu4: EM: created perf domain\n[    1.703716] cpu cpu7: EM: created perf domain\n[    1.704063] core_ctl: Creating CPU group 0\n[    1.704066] core_ctl: Init CPU0 state\n[    1.704067] core_ctl: Init CPU1 state\n[    1.704069] core_ctl: Init CPU2 state\n[    1.704071] core_ctl: Init CPU3 state\n[    1.704248] core_ctl: Creating CPU group 4\n[    1.704251] core_ctl: Init CPU4 state\n[    1.704252] core_ctl: Init CPU5 state\n[    1.704254] core_ctl: Init CPU6 state\n[    1.719856] shmbridge is enabled\n[    1.720487] core_ctl: Creating CPU group 7\n[    1.720489] core_ctl: Init CPU7 state\n[    1.723641] IPA framework init\n[    1.724951] dev-cpufreq: No tables parsed from DT.\n[    1.725346] SDAM base=0x7100 size=128 registered successfully\n[    1.725431] SDAM base=0x7400 size=128 registered successfully\n[    1.725517] SDAM base=0x7c00 size=128 registered successfully\n[    1.725597] SDAM base=0x7d00 size=128 registered successfully\n[    1.725687] SDAM base=0x8400 size=128 registered successfully\n[    1.725767] SDAM base=0x8500 size=128 registered successfully\n[    1.725850] SDAM base=0x8600 size=128 registered successfully\n[    1.725933] SDAM base=0x9d00 size=128 registered successfully\n[    1.726002] Advanced Linux Sound Architecture Driver Initialized.\n[    1.726817] IPA clients manager init\n[    1.726819] ipa_usb driver init\n[    1.726909] ipa_usb registered successfully\n[    1.726911] exit: IPA_USB init success!\n[    1.726914] ipa_wdi3 registered successfully\n[    1.726917] ipa_gsb registered successfully\n[    1.726920] ipa_uc_offload registered successfully\n[    1.726923] ipa_mhi registered successfully\n[    1.726926] ipa_wigig registered successfully\n[    1.727259] Bluetooth: Core ver 2.22\n[    1.727271] NET: Registered protocol family 31\n[    1.727273] Bluetooth: HCI device and connection manager initialized\n[    1.727280] Bluetooth: HCI socket layer initialized\n[    1.727284] Bluetooth: L2CAP socket layer initialized\n[    1.727288] Bluetooth: SCO socket layer initialized\n[    1.727406] pcie:pcie_init.\n[    1.734737] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node sdsp_region\n[    1.742457] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    1.744707] clocksource: Switched to clocksource arch_sys_counter\n[    1.761271] platform soc:qcom,ion:qcom,ion-heap@26: assigned reserved memory node user_contig_region\n[    1.763869] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    1.766452] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    1.769058] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    1.771644] platform soc:qcom,ion:qcom,ion-heap@5: assigned reserved memory node audio_cma_region\n[    1.774246] platform soc:qcom,ion:qcom,ion-heap@3: assigned reserved memory node non_secure_display_region\n[    1.788270] ION heap system created\n[    1.788482] ION heap adsp created\n[    1.788504] ION heap secure_heap created\n[    1.905420] VFS: Disk quotas dquot_6.6.0\n[    1.905467] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    1.907454] debugcc-lahaina soc:qcom,cc-debug: Registered debug measure clocks\n[    1.909470] NET: Registered protocol family 2\n[    1.909619] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)\n[    1.911536] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)\n[    1.911649] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)\n[    1.912006] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)\n[    1.912753] TCP: Hash tables configured (established 65536 bind 65536)\n[    1.912845] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)\n[    1.912936] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)\n[    1.913113] NET: Registered protocol family 1\n[    1.913527] NET: Registered protocol family 44\n[    1.913536] PCI: CLS 0 bytes, default 64\n[    1.913743] Trying to unpack rootfs image as initramfs...\n[    1.928802] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x80c00000, size 0x4600000\n[    1.928807] ION heap secure_carveout created\n[    1.928815] ION heap spss created\n[    1.928818] ION heap user_contig created\n[    1.928821] ION heap qsecom created\n[    1.928823] ION heap qsecom_ta created\n[    1.928826] ION heap secure_display created\n[    1.928829] ION heap audio_ml created\n[    1.928831] ION heap display created\n[    2.345779] Freeing initrd memory: 15952K\n[    2.347300] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    2.353284] Initialise system trusted keyrings\n[    2.353311] workingset: timestamp_bits=46 max_order=22 bucket_order=0\n[    2.357468] fuse: init (API version 7.31)\n[    2.369740] Key type asymmetric registered\n[    2.369745] Asymmetric key parser 'x509' registered\n[    2.369772] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)\n[    2.369777] io scheduler mq-deadline registered\n[    2.369780] io scheduler kyber registered\n[    2.369865] io scheduler bfq registered\n[    2.391634] v0.15, id=415, ver=2.0, raw_id=309, raw_ver=2, hw_plat=11, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65583, pmic_die_revision=131072 foundry_id=3 serial_number=925032040 num_pmics=6 chip_family=0x69 raw_device_family=0x6 raw_device_number=0xf nproduct_id=0x41d num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xf ndefective_parts_array_offset=0xb4 nmodem_supported=0xffffffff\n[    2.393497] lahaina-llcc 9200000.cache-controller: IRQ index 0 not found\n[    2.395067] msm_mem_dump soc:mem_dump: assigned reserved memory node mem_dump_region\n[    2.408513] MSM Memory Dump base table set up\n[    2.408522] MSM Memory Dump apps data table set up\n[    2.409750] llcc_perfmon: Revision 2, has 1 memory controllers connected with LLCC\n[    2.413128] PMIC PON log: Reset Trigger: PS_HOLD\n[    2.413147] PMIC PON log: Reset Type: HARD_RESET\n[    2.413195] PMIC PON log: PON Trigger: HARD_RESET\n[    2.413212] PMIC PON log: PON Trigger: USB_CHARGER\n[    2.413286] PMIC PON log: Reset Trigger: PS_HOLD\n[    2.413302] PMIC PON log: Reset Type: HARD_RESET\n[    2.413347] PMIC PON log: PON Trigger: HARD_RESET\n[    2.413419] PMIC PON log: Reset Trigger: PS_HOLD\n[    2.413435] PMIC PON log: Reset Type: HARD_RESET\n[    2.413480] PMIC PON log: PON Trigger: HARD_RESET\n[    2.413496] PMIC PON log: PON Trigger: USB_CHARGER\n[    2.415988] cdsprm: Init successful\n[    2.416582] 88e0000.qcom,msm-eud: ttyEUD0 at MMIO 0x0 (irq = 41, base_baud = 0) is a EUD UART\n[    2.417715] qbt:qbt_handler_init: entry\n[    2.417949] qbt:qbt_probe: entry\n[    2.418137] input: qbt_key_input as /devices/virtual/input/input1\n[    2.418191] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 339, hwirq 39\n[    2.418196] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 92\n[    2.418206] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 339 parent hwirq 92\n[    2.418298] qbt:setup_fd_gpio_irq: rc 0\n[    2.418334] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 340, hwirq 38\n[    2.418338] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 99\n[    2.418343] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 340 parent hwirq 99\n[    2.418350] qbt:setup_ipc_irq: irq 340 gpio 346\n[    2.418608] qbt:qbt_touch_connect: Connected device: input1\n[    2.418611] qbt:qbt_probe: exit : 0\n[    2.425369] msm_geni_serial_init: Driver initialized\n[    2.426426] Error: swapper/0: fastrpc_device_init: failed to create debugfs root dir\n[    2.426780] Info: adsprpc (3067): swapper/0: fastrpc_get_dsp_status: adsprpc: fastrpc_get_dsp_status: cdsp node found with ret:1\n[    2.426927] fastrpc soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    2.426934] fastrpc soc:qcom,msm-adsprpc-mem: for adsp_rh segments only will be dumped.\n[    2.427019] Info: adsprpc (6752): swapper/0: init_secure_vmid_list: secure VMID = 22\n[    2.427022] Info: adsprpc (6752): swapper/0: init_secure_vmid_list: secure VMID = 37\n[    2.427026] adsprpc: fastrpc_init_privileged_gids: privileged GID: 2908\n[    2.427067] adsprpc: fastrpc_setup_service_locator: service location enabled for avs/audio (audio_pdr_adsprpc)\n[    2.427090] adsprpc: fastrpc_setup_service_locator: service location enabled for tms/servreg (sensors_pdr_adsprpc)\n[    2.482314] adsprpc: fastrpc_device_init: SSR notifier registered for adsp\n[    2.482318] adsprpc: fastrpc_device_init: SSR notifier registered for modem\n[    2.482322] adsprpc: fastrpc_device_init: SSR notifier registered for slpi\n[    2.482325] adsprpc: fastrpc_device_init: SSR notifier registered for cdsp\n[    2.501045] adreno-a6xx-gmu 3d6a000.qcom,gmu: Adding to iommu group 0\n[    2.506704] brd: module loaded\n[    2.510272] loop: module loaded\n[    2.510475] zram: Added device: zram0\n[    2.510646] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    2.511160] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    2.511270] platform soc:qcom,ion:qcom,ion-heap@26: assigned reserved memory node user_contig_region\n[    2.511417] qseecom soc:qseecom@c1700000: assigned reserved memory node qseecom_region\n[    2.511466] QSEECOM: qseecom_init_control: qseecom.qsee_version = 0x1402000\n[    2.511516] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE/FDE\n[    2.514366] tun: Universal TUN/TAP device driver, 1.6\n[    2.514405] PPP generic driver version 2.4.2\n[    2.514454] PPP BSD Compression module registered\n[    2.514457] PPP Deflate Compression module registered\n[    2.514481] PPP MPPE Compression module registered\n[    2.514485] NET: Registered protocol family 24\n[    2.514488] PPTP driver version 0.8.5\n[    2.515507] cnss_utils: Unable to create debugfs -19\n[    2.515511] CLD80211: Initializing\n[    2.515936] usbcore: registered new interface driver r8152\n[    2.515954] usbcore: registered new interface driver lan78xx\n[    2.515969] usbcore: registered new interface driver asix\n[    2.515985] usbcore: registered new interface driver ax88179_178a\n[    2.516000] usbcore: registered new interface driver cdc_ether\n[    2.519877] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    2.524228] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    2.524231] ehci-pci: EHCI PCI platform driver\n[    2.524255] ehci-platform: EHCI generic platform driver\n[    2.525786] usbcore: registered new interface driver uas\n[    2.525804] usbcore: registered new interface driver usb-storage\n[    2.525821] usbcore: registered new interface driver usb_ehset_test\n[    2.525836] usbcore: registered new interface driver lvs\n[    2.526351] dummy_hcd dummy_hcd.0: USB Host+Gadget Emulator, driver 02 May 2005\n[    2.526360] dummy_hcd dummy_hcd.0: Dummy host controller\n[    2.526367] dummy_hcd dummy_hcd.0: new USB bus registered, assigned bus number 1\n[    2.526740] hub 1-0:1.0: USB hub found\n[    2.526766] hub 1-0:1.0: 1 port detected\n[    2.527924] usbcore: registered new interface driver xpad\n[    2.527951] usbcore: registered new interface driver usbtouchscreen\n[    2.529542] input: qcom-hv-haptics as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-03/c440000.qcom,spmi:qcom,pm8350b@3:qcom,hv-haptics@f000/input/input2\n[    2.530781] rtc-pm8xxx c440000.qcom,spmi:qcom,pmk8350@0:rtc@6100: registered as rtc0\n[    2.530850] rtc-pm8xxx c440000.qcom,spmi:qcom,pmk8350@0:rtc@6100: setting system clock to 1970-01-01T01:01:01 UTC (3661)\n[    2.531033] i2c /dev entries driver\n[    2.531623] synx: synx device initialization start\n[    2.531679] synx: synx device initialization success\n[    2.531685] msm_cvp:  err: Failed to create debugfs for msm_cvp\n[    2.532422] uvcvideo: Unable to create debugfs directory\n[    2.532444] usbcore: registered new interface driver uvcvideo\n[    2.532447] USB Video Class driver (1.1.1)\n[    2.532450] gspca_main: v2.14.0 registered\n[    2.553588] device-mapper: uevent: version 1.0.3\n[    2.553697] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com\n[    2.554206] bt_dt_parse_vreg_info: qcom,bt-vdd-io is not provided in device tree\n[    2.554270] bt_dt_parse_vreg_info: qcom,bt-vdd-rfacmn is not provided in device tree\n[    2.554282] bt_dt_parse_vreg_info: qcom,bt-vdd-rfa-0p8 is not provided in device tree\n[    2.554448] bt_dt_parse_vreg_info: qcom,bt-vdd-ipa-2p2 is not provided in device tree\n[    2.554487] bt-debug-gpio not provided in devicetree\n[    2.554492] xo-reset-gpio not provided in devicetree\n[    2.554495] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    2.554497] bt_power_populate_dt_pinfo: clock not provided in device tree\n[    2.554586] TCS CMD base address is 0x000000000b2e5510 with length 0x0000000000000690\n[    2.555402] EDAC DEVICE0: Giving out device to module soc:erp controller cache: DEV soc:erp (INTERRUPT)\n[    2.556263] qcom_llcc_edac qcom_llcc_edac: No ECC IRQ; defaulting to polling mode\n[    2.556292] EDAC DEVICE1: Giving out device to module qcom_llcc_edac controller llcc: DEV qcom_llcc_edac (POLLED)\n[    2.558254] sdhci: Secure Digital Host Controller Interface driver\n[    2.558256] sdhci: Copyright(c) Pierre Ossman\n[    2.558258] sdhci-pltfm: SDHCI platform and OF driver helper\n[    2.563050] hidraw: raw HID events driver (C) Jiri Kosina\n[    2.563568] usbcore: registered new interface driver usbhid\n[    2.563570] usbhid: USB HID core driver\n[    2.563737] ashmem: initialized\n[    2.563800] wlan_hdd_state wlan major(498) initialized\n[    2.564477] hh_msgq: Registered client for label: 0\n[    2.621363] qcom-llcc-pmu 9095000.llcc-pmu: Registered llcc_pmu, type: 8\n[    2.622145] gnss: GNSS driver registered with major 496\n[    2.622766] usbcore: registered new interface driver snd-usb-audio\n[    2.623510] msm_vidc:   err : ffffffff: .....: Failed to create debugfs for msm_vidc\n[    2.765895] msm-dai-tdm soc:qcom,msm-dai-tdm-hsif0-tx: msm_dai_tdm_q6_probe: group id not supported 0x916f\n[    2.765902] msm-dai-tdm: probe of soc:qcom,msm-dai-tdm-hsif0-tx failed with error -22\n[    2.873271] dsi_phy ae94400.qcom,mdss_dsi_phy0: ae94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    2.873400] [drm:dsi_pll_init] [msm-dsi-info]: DSI_PLL_0: DSI pll label = dsi_pll_5nm\n[    2.873405] [drm:dsi_pll_init] [msm-dsi-info]: DSI_PLL_0: PLL SSC enabled\n[    2.873415] dsi_pll_init: PLL base=(____ptrval____)\n[    2.873501] dsi_pll_5nm_get_gdsc_status: reg:0xf822f000 status:1\n[    2.873508] vco_5nm_recalc_rate: handoff_resources true\n[    2.873972] dsi_pll_5nm_get_gdsc_status: reg:0xf822f000 status:1\n[    2.873978] vco_5nm_recalc_rate: handoff_resources true\n[    2.874719] dsi_pll_clock_register_5nm: Registered DSI PLL ndx=0, clocks successfully\n[    2.874833] [drm:dsi_phy_driver_probe] [msm-dsi-info]: DSI_0: Probe successful\n[    2.874917] dsi_phy ae96400.qcom,mdss_dsi_phy1: ae96400.qcom,mdss_dsi_phy1 supply gdsc not found, using dummy regulator\n[    2.875016] [drm:dsi_pll_init] [msm-dsi-info]: DSI_PLL_0: DSI pll label = dsi_pll_5nm\n[    2.875020] [drm:dsi_pll_init] [msm-dsi-info]: DSI_PLL_1: PLL SSC enabled\n[    2.875028] dsi_pll_init: PLL base=(____ptrval____)\n[    2.875096] dsi_pll_5nm_get_gdsc_status: reg:0xf822f000 status:1\n[    2.880146] vco_5nm_recalc_rate: PLL not enabled\n[    2.880149] vco_5nm_recalc_rate: handoff_resources false\n[    2.880651] dsi_pll_5nm_get_gdsc_status: reg:0xf822f000 status:1\n[    2.885680] vco_5nm_recalc_rate: PLL not enabled\n[    2.885685] vco_5nm_recalc_rate: handoff_resources false\n[    2.886306] dsi_pll_clock_register_5nm: Registered DSI PLL ndx=1, clocks successfully\n[    2.886312] [drm:dsi_phy_driver_probe] [msm-dsi-info]: DSI_1: Probe successful\n[    2.890489] DATARMNETb1c42acd9c(): rmnet_offload initializing\n[    2.890493] DATARMNET163e93649e(): Starting rmnet SHS module 9731 \n[    2.890565] u32 classifier\n[    2.890567]     input device check on\n[    2.890569]     Actions configured\n[    2.891225] xt_time: kernel timezone is -0000\n[    2.891295] ipip: IPv4 and MPLS over IPv4 tunneling driver\n[    2.891566] gre: GRE over IPv4 demultiplexor driver\n[    2.891570] ip_gre: GRE over IPv4 tunneling driver\n[    2.892165] IPv4 over IPsec tunneling driver\n[    2.892535] iptable_raw: Enabling raw table before defrag\n[    2.892651] Initializing XFRM netlink socket\n[    2.892662] IPsec XFRM device driver\n[    2.892914] NET: Registered protocol family 10\n[    2.893837] Segment Routing with IPv6\n[    2.893923] mip6: Mobile IPv6\n[    2.893992] ip6table_raw: Enabling raw table before defrag\n[    2.894361] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    2.894842] ip6_gre: GRE over IPv6 tunneling driver\n[    2.895089] NET: Registered protocol family 17\n[    2.895103] NET: Registered protocol family 15\n[    2.895310] Bluetooth: RFCOMM TTY layer initialized\n[    2.895318] Bluetooth: RFCOMM socket layer initialized\n[    2.895320] Bluetooth: RFCOMM ver 1.11\n[    2.895324] Bluetooth: HIDP (Human Interface Emulation) ver 1.2\n[    2.895338] Bluetooth: HIDP socket layer initialized\n[    2.895349] l2tp_core: L2TP core driver, V2.0\n[    2.895355] l2tp_ppp: PPPoL2TP kernel driver, V2.0\n[    2.895358] tipc: Activated (version 2.0.0)\n[    2.895427] NET: Registered protocol family 30\n[    2.895486] tipc: Started in single node mode\n[    2.895793] qcom_haven_qrtr soc:qrtr-haven: failed to raise doorbell -11\n[    2.897866] registered taskstats version 1\n[    2.897869] Loading compiled-in X.509 certificates\n[    2.897926] Key type ._fscrypt registered\n[    2.897928] Key type .fscrypt registered\n[    2.897930] Key type fscrypt-provisioning registered\n[    2.904410] spss_utils [spss_parse_dt]: iar_buf_addr [0x8b6c3000].\n[    2.905534] lrng_drng_mgr: Initial DRNG initialized triggering first seeding\n[    2.905726] Unable to map memory for DT property: dload_mode\n[    2.914797] disp_cc_pll1 PLL is already enabled\n[    2.914955] disp_cc-lahaina af00000.qcom,dispcc: Registered DISP CC clocks\n[    2.915207] cam_cc_bps_gdsc: supplied by pm8350c_s8_level\n[    2.915405] cam_cc_ife_0_gdsc: supplied by pm8350c_s8_level\n[    2.915596] cam_cc_ife_1_gdsc: supplied by pm8350c_s8_level\n[    2.915785] cam_cc_ife_2_gdsc: supplied by pm8350c_s8_level\n[    2.915981] cam_cc_ipe_0_gdsc: supplied by pm8350c_s8_level\n[    2.917657] cam_cc_sbi_gdsc: supplied by pm8350c_s8_level\n[    2.917971] cam_cc_titan_top_gdsc: supplied by pm8350c_s8_level\n[    2.918180] disp_cc_mdss_core_gdsc: supplied by pm8350c_s8_level\n[    2.918724] video_cc_mvs0_gdsc: supplied by pm8350c_s8_level\n[    2.918928] video_cc_mvs0c_gdsc: supplied by pm8350c_s8_level\n[    2.919123] video_cc_mvs1_gdsc: supplied by pm8350c_s8_level\n[    2.919318] video_cc_mvs1c_gdsc: supplied by pm8350c_s8_level\n[    2.921727] msm_drm ae00000.qcom,mdss_mdp: qcom,sde_rscc not probed yet\n[    2.922334] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.922348] [drm:dsi_ctrl_get] *ERROR* [msm-dsi-error]: inv: Device with of node not found rc=-517\n[    2.922910] [drm] [msm-dsi-warn]: default panel not found\n[    2.930519] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[    2.930819] rmnet_ipa3 started initialization\n[    2.940644] lrng_es_mgr: LRNG fully operational\n[    2.940647] lrng_es_mgr: LRNG fully seeded with 256 bits of entropy\n[    2.956050] arm-smmu 15000000.apps-smmu: \tcoherent table walk\n[    2.956056] arm-smmu 15000000.apps-smmu: \tstream matching with 89 register groups\n[    2.957480] msm-dwc3 a600000.ssusb: Adding to iommu group 1\n[    2.959460] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.961390] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    2.961467] sps:BAM 0x000000000a704000 is registered\n[    2.961743] msm-dwc3 a600000.ssusb: Nominal values not found.\n[    2.961746] msm-dwc3 a600000.ssusb: Dynamic voting failed\n[    2.961831] msm-dwc3 a600000.ssusb: IRQ hs_phy_irq not found\n[    2.962504] msm-dwc3 a600000.ssusb: IRQ dp_hs_phy_irq1 not found\n[    2.962508] msm-dwc3 a600000.ssusb: IRQ dm_hs_phy_irq1 not found\n[    2.962512] msm-dwc3 a600000.ssusb: IRQ ss_phy_irq1 not found\n[    2.963502] msm_vidc:   err : ffffffff: .....: no device Registered\n[    2.964055] msm_vidc:   err : ffffffff: .....: Failed to create debugfs for msm_vidc\n[    2.966001] msm_vidc_v4l2 aa00000.qcom,vidc:non_secure_cb: Adding to iommu group 2\n[    2.968255] msm_vidc_v4l2 aa00000.qcom,vidc:secure_non_pixel_cb: Adding to iommu group 3\n[    2.970325] msm_vidc_v4l2 aa00000.qcom,vidc:secure_bitstream_cb: Adding to iommu group 4\n[    2.972407] msm_vidc_v4l2 aa00000.qcom,vidc:secure_pixel_cb: Adding to iommu group 5\n[    2.978394] kgsl-3d 3d00000.qcom,kgsl-3d0: bound 3d6a000.qcom,gmu (ops a6xx_gmu_component_ops)\n[    2.983984] platform 3da0000.qcom,kgsl-iommu:gfx3d_user: Adding to iommu group 6\n[    2.985402] platform 3da0000.qcom,kgsl-iommu:gfx3d_lpac: Adding to iommu group 7\n[    2.985879] msm_cvp:  err: Failed to create debugfs for msm_cvp\n[    2.990694] msm_cvp ab00000.qcom,cvp:cvp_non_secure_cb: Adding to iommu group 8\n[    2.990795] platform 3da0000.qcom,kgsl-iommu:gfx3d_secure: Adding to iommu group 9\n[    2.995349] msm_cvp ab00000.qcom,cvp:cvp_secure_nonpixel_cb: Adding to iommu group 10\n[    2.997406] msm_cvp ab00000.qcom,cvp:cvp_secure_pixel_cb: Adding to iommu group 11\n[    2.998881] msm_cvp ab00000.qcom,cvp:qcom,msm-cvp,mem_cdsp: assigned reserved memory node cdsp_region\n[    2.999558] sdpm-clk-notify 636000.mx_sdpm: 636000.mx_sdpm supply gcc_gp1 not found, using dummy regulator\n[    2.999950] sdpm-clk-notify 634000.cx_sdpm: 634000.cx_sdpm supply ufs_phy not found, using dummy regulator\n[    3.006045] gpi_dma 900000.qcom,gpi-dma: Adding to iommu group 12\n[    3.007400] gpi_dma a00000.qcom,gpi-dma: Adding to iommu group 13\n[    3.008845] gpi_dma 800000.qcom,gpi-dma: Adding to iommu group 14\n[    3.010226] minidump-id not found for ipa_fws\n[    3.010284] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    3.010345] subsys-pil-tz soc:qcom,ipa_fws: for md_ipa_fws segments only will be dumped.\n[    3.010643] minidump-id not found for evass\n[    3.010684] subsys-pil-tz abb0000.qcom,evass: for evass segments only will be dumped.\n[    3.010727] subsys-pil-tz abb0000.qcom,evass: for md_evass segments only will be dumped.\n[    3.011000] minidump-id not found for trustedvm\n[    3.011043] subsys-pil-tz soc:qcom,trustedvm@d0800000: for trustedvm segments only will be dumped.\n[    3.011085] subsys-pil-tz soc:qcom,trustedvm@d0800000: for md_trustedvm segments only will be dumped.\n[    3.011348] minidump-id not found for a660_zap\n[    3.011396] subsys-pil-tz soc:qcom,kgsl-hyp: for a660_zap segments only will be dumped.\n[    3.011439] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a660_zap segments only will be dumped.\n[    3.011803] hh_msgq: Registered client for label: 1\n[    3.012270] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1: Adding to iommu group 15\n[    3.012760] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2: Adding to iommu group 16\n[    3.013234] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3: Adding to iommu group 17\n[    3.013717] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4: Adding to iommu group 18\n[    3.014195] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5: Adding to iommu group 19\n[    3.014679] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6: Adding to iommu group 20\n[    3.015154] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7: Adding to iommu group 21\n[    3.015633] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8: Adding to iommu group 22\n[    3.016514] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9: Adding to iommu group 23\n[    3.016986] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10: Adding to iommu group 24\n[    3.017453] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11: Adding to iommu group 25\n[    3.017935] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12: Adding to iommu group 26\n[    3.018424] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13: Adding to iommu group 27\n[    3.018887] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14: Adding to iommu group 28\n[    3.019360] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb15: Adding to iommu group 29\n[    3.019846] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb16: Adding to iommu group 30\n[    3.020413] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb17: Adding to iommu group 31\n[    3.020891] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb18: Adding to iommu group 32\n[    3.021364] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb19: Adding to iommu group 33\n[    3.054391] qce 1de0000.qcedev: Adding to iommu group 34\n[    3.054652] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    3.054838] qce 1de0000.qcedev: QTI Crypto 5.6.0 device found @0x1de0000\n[    3.054924] sps:BAM 0x0000000001dc4000 is registered\n[    3.054996] sps:BAM 0x0000000001dc4000 (va:0x000000008a101133) enabled: ver:0x27, number of pipes:16\n[    3.055112] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 42\n[    3.057259] qce 1de0000.qcedev:qcom_cedev_ns_cb: Adding to iommu group 35\n[    3.059434] qce 1de0000.qcedev:qcom_cedev_s_cb: Adding to iommu group 36\n[    3.059960] qcrypto 1de0000.qcrypto: Adding to iommu group 37\n[    3.060185] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    3.060366] qcrypto 1de0000.qcrypto: QTI Crypto 5.6.0 device found @0x1de0000\n[    3.060499] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 42\n[    3.060765] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    3.060898] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    3.061013] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    3.061125] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    3.061233] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    3.061348] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    3.061458] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    3.061572] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    3.061676] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    3.061783] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    3.061889] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    3.061999] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    3.062104] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    3.062211] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    3.062323] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    3.062429] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    3.062536] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    3.062649] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    3.062754] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    3.062865] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    3.065230] uaudio-qmi soc:usb_audio_qmi_dev: Adding to iommu group 38\n[    3.066618] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_ife: Adding to iommu group 39\n[    3.067173] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_jpeg: Adding to iommu group 40\n[    3.067773] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_icp: Adding to iommu group 41\n[    3.068327] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm: Adding to iommu group 42\n[    3.069448] [drm:sde_power_parse_ib_votes:474]: error reading min core ib vote. rc=-22, np=bf338440\n[    3.069452] [drm:sde_power_parse_ib_votes:482]: error reading min llcc ib vote. rc=-22\n[    3.069455] [drm:sde_power_parse_ib_votes:490]: error reading min dram ib vote. rc=-22\n[    3.069666] [sde_rsc_hw:rsc_hw_init_v3:537]: sde rsc init successfully done\n[    3.069684] [sde_rsc:sde_rsc_probe:1799]: sde rsc index:0 probed successfully\n[    3.070149] msmdrm_smmu soc:qcom,smmu_sde_unsec_cb: Adding to iommu group 43\n[    3.070237] [drm] probing device qcom,smmu_sde_unsec\n[    3.070241] [drm] Created domain mdp_ns, secure=0\n[    3.071025] msmdrm_smmu soc:qcom,smmu_sde_sec_cb: Adding to iommu group 44\n[    3.071112] [drm] probing device qcom,smmu_sde_sec\n[    3.071116] [drm] Created domain mdp_s, secure=1\n[    3.071409] spss_utils [spss_parse_dt]: iar_buf_addr [0x8b6c3000].\n[    3.073908] qupv3_geni_se 9c0000.qcom,qupv3_0_geni_se: Adding to iommu group 45\n[    3.074475] qupv3_geni_se ac0000.qcom,qupv3_1_geni_se: Adding to iommu group 46\n[    3.075058] qupv3_geni_se 8c0000.qcom,qupv3_2_geni_se: Adding to iommu group 47\n[    3.076488] minidump-id not found for spss\n[    3.076539] subsys-pil-tz: pil_tz_generic_probe(): spss is brought out of reset by UEFI\n[    3.079956] ufshcd-qcom 1d84000.ufshc: Adding to iommu group 48\n[    3.080243] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: unable to find vdd-hba-max-microamp\n[    3.080265] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled\n[    3.081071] ufshcd-qcom 1d84000.ufshc: -- Registered bus voting! (0) --\n[    3.081977] scsi host0: ufshcd\n[    3.088928] ufshcd-qcom 1d84000.ufshc: *** This is drivers/scsi/ufs/ufshcd.c ***\n[    3.091154] minidump-id not found for slpi\n[    3.092046] pci-msm 1c00000.qcom,pcie: PCIe: msm_pcie_probe\n[    3.092705] pci-msm 1c00000.qcom,pcie: 1c00000.qcom,pcie supply vreg-3p3 not found, using dummy regulator\n[    3.092917] pci-msm 1c00000.qcom,pcie: 1c00000.qcom,pcie supply vreg-mx not found, using dummy regulator\n[    3.093120] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 358, hwirq 96\n[    3.093125] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 148\n[    3.093133] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 358 parent hwirq 148\n[    3.093189] msm_pcie_get_reg: PCIe: RC0: no mhi resource found.\n[    3.093194] msm_pcie_get_reg: PCIe: RC0: no tcsr resource found.\n[    3.093200] msm_pcie_get_reg: PCIe: RC0: no rumi resource found.\n[    3.093822] pci-msm 1c08000.qcom,pcie: PCIe: msm_pcie_probe\n[    3.094198] pci-msm 1c08000.qcom,pcie: 1c08000.qcom,pcie supply vreg-3p3 not found, using dummy regulator\n[    3.094394] pci-msm 1c08000.qcom,pcie: 1c08000.qcom,pcie supply vreg-mx not found, using dummy regulator\n[    3.094586] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 359, hwirq 99\n[    3.094591] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 150\n[    3.094596] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 359 parent hwirq 150\n[    3.094650] msm_pcie_get_reg: PCIe: RC1: no mhi resource found.\n[    3.094655] msm_pcie_get_reg: PCIe: RC1: no tcsr resource found.\n[    3.094661] msm_pcie_get_reg: PCIe: RC1: no rumi resource found.\n[    3.094670] msm_pcie_probe: PCIe: RC1 could not get pinctrl sleep state\n[    3.100499] [drm:sde_dbg_init:2392] evtlog_status: enable:11, panic:1, dump:2\n[    3.101776] sdhci_msm 8804000.sdhci: Adding to iommu group 49\n[    3.101893] sdhci_msm 8804000.sdhci: Got CD GPIO\n[    3.101978] sdhci_msm 8804000.sdhci: core_reset unavailable,err = -2\n[    3.102054] sdhci_msm 8804000.sdhci: TCXO clk not present (-2)\n[    3.103655] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    3.103668] [drm:dsi_ctrl_get] *ERROR* [msm-dsi-error]: inv: Device with of node not found rc=-517\n[    3.105022] i2c_geni 990000.i2c: Bus frequency is set to 400000Hz.\n[    3.107297] i2c_geni 990000.i2c: I2C probed\n[    3.107782] i2c_geni a94000.i2c: Multi-EE usecase\n[    3.107786] i2c_geni a94000.i2c: Bus frequency is set to 400000Hz.\n[    3.132058] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 365, hwirq 92\n[    3.132063] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 76\n[    3.132070] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 365 parent hwirq 76\n[    3.132297] mmc1: SDHCI controller on 8804000.sdhci [8804000.sdhci] using ADMA 64-bit\n[    3.132304] sdhci_msm 8804000.sdhci: IRQ sdiowakeup_irq not found\n[    3.151577] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    3.216185] rtc6226: rtc6226_i2c_probe: rtc6226,vdd-load val 0\n[    3.216194] rtc6226: rtc6226_pinctrl_init: target does not use pinctrl\n[    3.216197] rtc6226: rtc6226_i2c_probe: rtc6226_pinctrl_init returned -19\n[    3.221020] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    3.225298] pm8008i_l1: Bringing 1200000uV into 1104000-1104000uV\n[    3.226956] pm8008i_l1: supplied by pm8350_s12\n[    3.228327] pm8008i_l2: Bringing 1200000uV into 1152000-1152000uV\n[    3.229978] pm8008i_l2: supplied by pm8350_s12\n[    3.231967] pm8008i_l3: supplied by pm8350c_bob\n[    3.233968] pm8008i_l4: supplied by pm8350c_bob\n[    3.235953] pm8008i_l5: supplied by pm8350c_s1\n[    3.237947] pm8008i_l6: supplied by pm8350c_bob\n[    3.239939] pm8008i_l7: supplied by pm8350c_bob\n[    3.240506] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    3.244686] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    3.248963] pm8008j_l1: Bringing 1200000uV into 1152000-1152000uV\n[    3.250619] pm8008j_l1: supplied by pm8350_s12\n[    3.251965] pm8008j_l2: Bringing 1200000uV into 1056000-1056000uV\n[    3.253617] pm8008j_l2: supplied by pm8350_s12\n[    3.254962] pm8008j_l3: Bringing 2800000uV into 1800000-1800000uV\n[    3.256656] pm8008j_l3: supplied by pm8350c_s1\n[    3.258001] pm8008j_l4: Bringing 2800000uV into 1800000-1800000uV\n[    3.259682] pm8008j_l4: supplied by pm8350c_s1\n[    3.261026] pm8008j_l5: Bringing 1800000uV into 2696000-2696000uV\n[    3.262715] pm8008j_l5: supplied by pm8350c_bob\n[    3.264467] pm8008j_l6: supplied by pm8350c_bob\n[    3.265816] pm8008j_l7: Bringing 2800000uV into 2808000-2808000uV\n[    3.267473] pm8008j_l7: supplied by pm8350c_bob\n[    3.268049] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    3.270881] ssusb redriver 1-001c: Couldn't create eq file\n[    3.270885] ssusb redriver 1-001c: Couldn't create flat_gain file\n[    3.270888] ssusb redriver 1-001c: Couldn't create output_comp file\n[    3.270890] ssusb redriver 1-001c: Couldn't create loss_match file\n[    3.270920] i2c_geni a94000.i2c: I2C probed\n[    3.271728] msm_geni_serial 890000.qcom,qup_uart: Wakeup byte 0xfd\n[    3.271777] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 366, hwirq 71\n[    3.271781] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 134\n[    3.271786] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 366 parent hwirq 134\n[    3.271863] msm_geni_serial 890000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    3.272232] 890000.qcom,qup_uart: ttyHS0 at MMIO 0x890000 (irq = 197, base_baud = 0) is a MSM\n[    3.272696] i2c_geni 884000.i2c: Bus frequency is set to 1000000Hz.\n[    3.273460] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 367, hwirq 87\n[    3.273465] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 138\n[    3.273471] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 367 parent hwirq 138\n[    3.273489] nfc_parse_dt: irq 395\n[    3.273507] nfc_parse_dt: ven 370, dwl req 394, clkreq 371\n[    3.273512] qcom,sn-nci 2-0028: error reading NFC VDDIO min and max value\n[    3.273517] qcom,sn-nci 2-0028: error reading NFC current value\n[    3.273613] nfc_i2c_dev_probe : requesting IRQ 367\n[    3.273663] nfc_ldo_config: regulator entry not present\n[    3.273688] i2c_geni 884000.i2c: I2C probed\n[    3.278959] ipa 1e00000.qcom,ipa:ipa_smmu_ap: Adding to iommu group 50\n[    3.279455] ipa 1e00000.qcom,ipa:ipa_smmu_wlan: Adding to iommu group 51\n[    3.279993] ipa 1e00000.qcom,ipa:ipa_smmu_uc: Adding to iommu group 52\n[    3.280635] ipa 1e00000.qcom,ipa:ipa_smmu_11ad: Adding to iommu group 53\n[    3.281160] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[    3.281166] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[    3.282188] minidump-id not found for venus\n[    3.286495] spss_utils [spss_parse_dt]: iar_buf_addr [0x8b6c3000].\n[    3.286571] spss_utils [spss_probe]: Probe completed successfully, [spss1t].\n[    3.288225] [drm:dsi_ctrl_dev_probe] [msm-dsi-info]: dsi-ctrl-0: Probe successful\n[    3.288634] [drm:dsi_ctrl_dev_probe] [msm-dsi-info]: dsi-ctrl-1: Probe successful\n[    3.289580] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    3.330614] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,smmu_sde_unsec_cb (ops msm_smmu_comp_ops)\n[    3.330621] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,smmu_sde_sec_cb (ops msm_smmu_comp_ops)\n[    3.330633] msm_drm ae00000.qcom,mdss_mdp: bound ae90000.qcom,dp_display (ops dp_display_comp_ops)\n[    3.330640] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops sde_wb_comp_ops)\n[    3.330791] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 368, hwirq 82\n[    3.330795] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 140\n[    3.330802] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 368 parent hwirq 140\n[    3.330902] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-primary (ops dsi_display_comp_ops)\n[    3.330909] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-secondary (ops dsi_display_comp_ops)\n[    3.330920] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops sde_rsc_comp_ops)\n[    3.330956] [drm] mapped mdp address space @0000000037d3e780\n[    3.334127] [drm:_sde_kms_hw_init_blocks:4723] sde hardware revision:0x70000000\n[    3.334243] [drm:msm_smmu_new] *ERROR* unable to find domain 1 compat: qcom,smmu_sde_nrt_unsec\n[    3.334250] [drm:msm_smmu_new] *ERROR* unable to find domain 3 compat: qcom,smmu_sde_nrt_sec\n[    3.337144] [drm:dp_parser_get_vreg][msm-dp-warn][64  ]no supply entry present: ???\n[    3.337148] [drm:dp_parser_get_vreg][msm-dp-warn][64  ]no supply entry present: ???\n[    3.337151] [drm:dp_parser_get_vreg][msm-dp-warn][64  ]no supply entry present: ???\n[    3.337155] [drm:dp_parser_get_vreg][msm-dp-warn][64  ]no supply entry present: qcom,pll-supply-entries\n[    3.338793] [drm:dp_pll_get][msm-dp-info][64  ]revision=DP_PLL_5NM_V1, ssc_en=0, bonding_en=0\n[    3.339146] [drm:dp_power_clk_init][msm-dp-err][64  ]Unable to get DP link clk RCG: -2\n[    3.339151] [drm:dp_power_clk_init][msm-dp-err][64  ]Unable to get DP link parent: -2\n[    3.339677] [drm:dp_display_initialize_hdcp][msm-dp-info][64  ]HDCP 1.3 initialized\n[    3.339941] [drm:dp_display_initialize_hdcp][msm-dp-info][64  ]HDCP 2.2 initialized\n[    3.339947] [drm:dp_debug_init][msm-dp-warn][64  ]Not creating debug root dir.\n[    3.341043] NFC chip_type = a4\n[    3.341046] NFC fw version = 1.10.68\n[    3.341107] nfc_i2c_dev_probe success\n[    3.345272] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    3.345274] [drm] No driver support for vblank timestamp query.\n[    3.345573] [drm] Initialized msm_drm 1.4.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    3.345576] [drm] cont_splash enabled in 1 of 1 display(s)\n[    3.345689] [drm:dsi_ctrl_isr_configure] [msm-dsi-info]: dsi-ctrl-0: IRQ 370 registered\n[    3.347952] synx: registered bind ops type 0 for cam_sync\n[    3.347962] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-sync (ops cam_sync_component_ops)\n[    3.347970] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu (ops cam_smmu_component_ops)\n[    3.347990] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_ife (ops cam_smmu_cb_component_ops)\n[    3.348004] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_jpeg (ops cam_smmu_cb_component_ops)\n[    3.348030] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_icp_fw (ops cam_smmu_fw_dev_component_ops)\n[    3.348060] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_icp (ops cam_smmu_cb_component_ops)\n[    3.348075] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm (ops cam_smmu_cb_component_ops)\n[    3.348085] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_secure (ops cam_smmu_cb_component_ops)\n[    3.352639] cam_req_mgr soc:qcom,cam-req-mgr: bound ac40000.qcom,cam-cpas (ops cam_cpas_dev_component_ops)\n[    3.352790] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-cdm-intf (ops cam_cdm_intf_component_ops)\n[    3.356309] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4d000.qcom,cpas-cdm0 (ops cam_hw_cdm_component_ops)\n[    3.360393] cam_req_mgr soc:qcom,cam-req-mgr: bound acb4200.qcom,ife-cdm0 (ops cam_hw_cdm_component_ops)\n[    3.364381] ufshcd-qcom 1d84000.ufshc: Undefined ref clk gating wait time, use default 255us\n[    3.364559] cam_req_mgr soc:qcom,cam-req-mgr: bound acc3200.qcom,ife-cdm1 (ops cam_hw_cdm_component_ops)\n[    3.368631] cam_req_mgr soc:qcom,cam-req-mgr: bound acef200.qcom,ife-cdm2 (ops cam_hw_cdm_component_ops)\n[    3.369869] cam_req_mgr soc:qcom,cam-req-mgr: bound ac97000.qcom,tpg0 (ops cam_top_tpg_component_ops)\n[    3.371027] cam_req_mgr soc:qcom,cam-req-mgr: bound ac98000.qcom,tpg1 (ops cam_top_tpg_component_ops)\n[    3.371325] cam_req_mgr soc:qcom,cam-req-mgr: bound acb5200.qcom,csid0 (ops cam_ife_csid_component_ops)\n[    3.371609] cam_req_mgr soc:qcom,cam-req-mgr: bound acc4200.qcom,csid1 (ops cam_ife_csid_component_ops)\n[    3.371884] cam_req_mgr soc:qcom,cam-req-mgr: bound acf0200.qcom,csid2 (ops cam_ife_csid_component_ops)\n[    3.372144] cam_req_mgr soc:qcom,cam-req-mgr: bound acd9200.qcom,csid-lite0 (ops cam_ife_csid_component_ops)\n[    3.372368] cam_req_mgr soc:qcom,cam-req-mgr: bound acdb400.qcom,csid-lite1 (ops cam_ife_csid_component_ops)\n[    3.373719] cam_req_mgr soc:qcom,cam-req-mgr: bound acb4000.qcom,ife0 (ops cam_vfe_component_ops)\n[    3.375035] cam_req_mgr soc:qcom,cam-req-mgr: bound acc3000.qcom,ife1 (ops cam_vfe_component_ops)\n[    3.376378] cam_req_mgr soc:qcom,cam-req-mgr: bound acef000.qcom,ife2 (ops cam_vfe_component_ops)\n[    3.377550] cam_req_mgr soc:qcom,cam-req-mgr: bound acd9000.qcom,ife-lite0 (ops cam_vfe_component_ops)\n[    3.378841] cam_req_mgr soc:qcom,cam-req-mgr: bound acdb200.qcom,ife-lite1 (ops cam_vfe_component_ops)\n[    3.379315] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-isp (ops cam_isp_dev_component_ops)\n[    3.379325] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-res-mgr (ops cam_res_mgr_component_ops)\n[    3.380100] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0 (ops cam_cci_component_ops)\n[    3.380805] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1 (ops cam_cci_component_ops)\n[    3.381139] cam_req_mgr soc:qcom,cam-req-mgr: bound ac6a000.qcom,csiphy0 (ops cam_csiphy_component_ops)\n[    3.381435] cam_req_mgr soc:qcom,cam-req-mgr: bound ac6c000.qcom,csiphy1 (ops cam_csiphy_component_ops)\n[    3.381730] cam_req_mgr soc:qcom,cam-req-mgr: bound ac6e000.qcom,csiphy2 (ops cam_csiphy_component_ops)\n[    3.382026] cam_req_mgr soc:qcom,cam-req-mgr: bound ac70000.qcom,csiphy3 (ops cam_csiphy_component_ops)\n[    3.382318] cam_req_mgr soc:qcom,cam-req-mgr: bound ac72000.qcom,csiphy4 (ops cam_csiphy_component_ops)\n[    3.382607] cam_req_mgr soc:qcom,cam-req-mgr: bound ac74000.qcom,csiphy5 (ops cam_csiphy_component_ops)\n[    3.382898] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,actuator0 (ops cam_actuator_component_ops)\n[    3.383011] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,actuator1 (ops cam_actuator_component_ops)\n[    3.383122] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,actuator2 (ops cam_actuator_component_ops)\n[    3.384264] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,cam-sensor0 (ops cam_sensor_component_ops)\n[    3.385194] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,cam-sensor1 (ops cam_sensor_component_ops)\n[    3.385793] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,cam-sensor3 (ops cam_sensor_component_ops)\n[    3.386635] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,cam-sensor2 (ops cam_sensor_component_ops)\n[    3.386973] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,cam-sensor4 (ops cam_sensor_component_ops)\n[    3.387128] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[4, 4], lane[2, 2], pwr[FAST MODE, FAST MODE], rate = 2\n[    3.387760] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,cam-sensor5 (ops cam_sensor_component_ops)\n[    3.388134] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,eeprom0 (ops cam_eeprom_component_ops)\n[    3.388581] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,eeprom1 (ops cam_eeprom_component_ops)\n[    3.388936] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,eeprom3 (ops cam_eeprom_component_ops)\n[    3.389287] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,eeprom2 (ops cam_eeprom_component_ops)\n[    3.389482] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,eeprom4 (ops cam_eeprom_component_ops)\n[    3.390000] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,eeprom5 (ops cam_eeprom_component_ops)\n[    3.390445] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,camera-flash@4 (ops cam_flash_component_ops)\n[    3.390512] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,camera-flash@5 (ops cam_flash_component_ops)\n[    3.390576] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,camera-flash@6 (ops cam_flash_component_ops)\n[    3.390763] cam_req_mgr soc:qcom,cam-req-mgr: bound ac00000.qcom,a5 (ops cam_a5_component_ops)\n[    3.390923] cam_req_mgr soc:qcom,cam-req-mgr: bound ac9a000.qcom,ipe0 (ops cam_ipe_component_ops)\n[    3.391078] cam_req_mgr soc:qcom,cam-req-mgr: bound ac7a000.qcom,bps (ops cam_bps_component_ops)\n[    3.392331] scsi 0:0:0:49488: Well-known LUN    WDC      SDINFDK4-256G    1260 PQ: 0 ANSI: 6\n[    3.393967] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-icp (ops cam_icp_component_ops)\n[    3.394143] cam_req_mgr soc:qcom,cam-req-mgr: bound ac53000.qcom,jpegenc (ops cam_jpeg_enc_component_ops)\n[    3.394301] cam_req_mgr soc:qcom,cam-req-mgr: bound ac57000.qcom,jpegdma (ops cam_jpeg_dma_component_ops)\n[    3.395790] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-jpeg (ops cam_jpeg_dev_component_ops)\n[    3.398839] ngd_msm_ctrl 3ac0000.slim: Adding to iommu group 54\n[    3.401217] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): allocate IRQ 371, hwirq 5\n[    3.401222] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): found parent hwirq 141\n[    3.401230] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): alloc_irqs_parent for 371 parent hwirq 141\n[    3.401398] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    3.401910] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 372, hwirq 23\n[    3.401914] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 84\n[    3.401921] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 372 parent hwirq 84\n[    3.401935] [FTS_TS/I]fts_ts_i2c_probe:Touch Screen(I2C BUS) driver prboe...\n[    3.401942] [FTS_TS/I]fts_ts_probe_entry:Focaltech V3.2 20200422\n[    3.401947] [FTS_TS/I]fts_get_dt_coords:display x(0 1080) y(0 2340)\n[    3.401964] [FTS_TS/I]fts_parse_dt:max touch number:5, irq gpio:331, reset gpio:330\n[    3.402149] input: fts_ts as /devices/platform/soc/990000.i2c/i2c-0/0-0038/input/input4\n[    3.402155] qbt:qbt_touch_connect: Connected device: input4\n[    3.402196] [FTS_TS/I]fts_create_apk_debug_channel:Create proc entry success!\n[    3.402217] [FTS_TS/I]fts_create_sysfs:[EX]: sysfs_create_group() succeeded!!\n[    3.402230] Selected trusted touch mode to VM mode\n[    3.402232] Trusted touch environment:pvm\n[    3.402481] fts_ts 0-0038: 0-0038 supply vcc_i2c not found, using dummy regulator\n[    3.403214] msm_pcie_enable: PCIe: Assert the reset of endpoint of RC0.\n[    3.404135] scsi 0:0:0:49488: Attached scsi generic sg0 type 30\n[    3.406754] msm_pcie_enable: PCIe: RC0: PCIE20_PARF_INT_ALL_MASK: 0x7f80c202\n[    3.408129] scsi 0:0:0:49476: Well-known LUN    WDC      SDINFDK4-256G    1260 PQ: 0 ANSI: 6\n[    3.408872] pcie_phy_init: PCIe RC0 PHY is ready!\n[    3.411127] scsi 0:0:0:49476: Attached scsi generic sg1 type 30\n[    3.413722] scsi 0:0:0:49456: Well-known LUN    WDC      SDINFDK4-256G    1260 PQ: 0 ANSI: 6\n[    3.416725] scsi 0:0:0:49456: Attached scsi generic sg2 type 30\n[    3.418898] msm_pcie_enable: PCIe: Release the reset of endpoint of RC0.\n[    3.420768] scsi 0:0:0:0: Direct-Access     WDC      SDINFDK4-256G    1260 PQ: 0 ANSI: 6\n[    3.423933] scsi 0:0:0:0: Attached scsi generic sg3 type 0\n[    3.424726] sd 0:0:0:0: Power-on or device reset occurred\n[    3.431250] scsi 0:0:0:1: Direct-Access     WDC      SDINFDK4-256G    1260 PQ: 0 ANSI: 6\n[    3.434278] scsi 0:0:0:1: Attached scsi generic sg4 type 0\n[    3.435511] msm_pcie_link_train: PCIe RC0 link initialized\n[    3.435552] pci-msm 1c00000.qcom,pcie: host bridge /soc/qcom,pcie@1c00000 ranges:\n[    3.435563] pci-msm 1c00000.qcom,pcie:   No bus range found for /soc/qcom,pcie@1c00000, using [bus 00-ff]\n[    3.435578] pci-msm 1c00000.qcom,pcie:    IO 0x60200000..0x602fffff -> 0x60200000\n[    3.435588] pci-msm 1c00000.qcom,pcie:   MEM 0x60300000..0x63ffffff -> 0x60300000\n[    3.435785] MSI interrupts mask disabled:1\n[    3.435793] pci-msm 1c00000.qcom,pcie: MSI: qgic controller is present\n[    3.436129] sd 0:0:0:1: Power-on or device reset occurred\n[    3.437268] pci-msm 1c00000.qcom,pcie: PCI host bridge to bus 0000:00\n[    3.437275] pci_bus 0000:00: root bus resource [bus 00-ff]\n[    3.437282] pci_bus 0000:00: root bus resource [io  0x0000-0xfffff] (bus address [0x60200000-0x602fffff])\n[    3.437286] pci_bus 0000:00: root bus resource [mem 0x60300000-0x63ffffff]\n[    3.437350] pci 0000:00:00.0: [17cb:010c] type 01 class 0x060400\n[    3.437449] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]\n[    3.437730] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold\n[    3.442184] sd 0:0:0:0: [sda] 58814464 4096-byte logical blocks: (241 GB/224 GiB)\n[    3.444389] scsi 0:0:0:2: Direct-Access     WDC      SDINFDK4-256G    1260 PQ: 0 ANSI: 6\n[    3.447609] sd 0:0:0:0: [sda] Write Protect is off\n[    3.447614] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    3.452087] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    3.453975] scsi 0:0:0:2: Attached scsi generic sg5 type 0\n[    3.455598] sd 0:0:0:2: Power-on or device reset occurred\n[    3.456821] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring\n[    3.457055] pci 0000:01:00.0: [17cb:1103] type 00 class 0x028000\n[    3.457184] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x001fffff 64bit]\n[    3.457617] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold\n[    3.457711] pci 0000:01:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5 GT/s x1 link at 0000:00:00.0 (capable of 7.876 Gb/s with 8 GT/s x1 link)\n[    3.457997] scsi 0:0:0:3: Direct-Access     WDC      SDINFDK4-256G    1260 PQ: 0 ANSI: 6\n[    3.464507] scsi 0:0:0:3: Attached scsi generic sg6 type 0\n[    3.464790] sd 0:0:0:1: [sdb] 2048 4096-byte logical blocks: (8.39 MB/8.00 MiB)\n[    3.467597] sd 0:0:0:3: Power-on or device reset occurred\n[    3.470318] sd 0:0:0:1: [sdb] Write Protect is off\n[    3.470324] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    3.472512] scsi 0:0:0:4: Direct-Access     WDC      SDINFDK4-256G    1260 PQ: 0 ANSI: 6\n[    3.476479] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01\n[    3.476500] pci 0000:00:00.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000\n[    3.476508] pci 0000:00:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000\n[    3.476522] pci 0000:00:00.0: BAR 8: assigned [mem 0x60400000-0x605fffff]\n[    3.476528] pci 0000:00:00.0: BAR 9: assigned [mem 0x60600000-0x607fffff 64bit pref]\n[    3.476534] pci 0000:00:00.0: BAR 0: assigned [mem 0x60300000-0x60300fff 64bit]\n[    3.476565] pci 0000:00:00.0: BAR 7: assigned [io  0x1000-0x1fff]\n[    3.476574] pci 0000:01:00.0: BAR 0: assigned [mem 0x60400000-0x605fffff 64bit]\n[    3.476620] pci 0000:00:00.0: PCI bridge to [bus 01]\n[    3.476629] pci 0000:00:00.0:   bridge window [io  0x1000-0x1fff]\n[    3.476645] pci 0000:00:00.0:   bridge window [mem 0x60400000-0x605fffff]\n[    3.476658] pci 0000:00:00.0:   bridge window [mem 0x60600000-0x607fffff 64bit pref]\n[    3.477085] pci-msm-rc 0000:00:00.0: Adding to iommu group 55\n[    3.478082] msm_pcie_enumerate: PCIe: RC0: has already been enumerated.\n[    3.478140] sd 0:0:0:1: [sdb] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    3.481474] cnss_pci 0000:01:00.0: Adding to iommu group 56\n[    3.481530] cnss_pci 0000:01:00.0: assigned reserved memory node cnss_wlan_region\n[    3.481782] cnss2 b0000000.qcom,cnss-qca6490: for wlan segments only will be dumped.\n[    3.481875] cnss_pci 0000:01:00.0: BAR 0: assigned [mem 0x60400000-0x605fffff 64bit]\n[    3.481949] pci-msm-rc 0000:00:00.0: enabling device (0006 -> 0007)\n[    3.482086] cnss_pci 0000:01:00.0: enabling device (0000 -> 0002)\n[    3.482639] sd 0:0:0:2: [sdc] 2048 4096-byte logical blocks: (8.39 MB/8.00 MiB)\n[    3.484150] scsi 0:0:0:4: Attached scsi generic sg7 type 0\n[    3.488173] sd 0:0:0:2: [sdc] Write Protect is off\n[    3.488180] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    3.492031] sd 0:0:0:4: Power-on or device reset occurred\n[    3.492112] scsi 0:0:0:5: Direct-Access     WDC      SDINFDK4-256G    1260 PQ: 0 ANSI: 6\n[    3.499131] sd 0:0:0:2: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    3.500200] scsi 0:0:0:5: Attached scsi generic sg8 type 0\n[    3.502294] sd 0:0:0:5: Power-on or device reset occurred\n[    3.507092] scsi 0:0:0:6: Direct-Access     WDC      SDINFDK4-256G    1260 PQ: 0 ANSI: 6\n[    3.508159] sd 0:0:0:3: [sdd] 8192 4096-byte logical blocks: (33.6 MB/32.0 MiB)\n[    3.513939] sd 0:0:0:3: [sdd] Write Protect is off\n[    3.513944] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    3.516448] sd 0:0:0:5: [sdf] 8192 4096-byte logical blocks: (33.6 MB/32.0 MiB)\n[    3.519721] sd 0:0:0:5: [sdf] Write Protect is off\n[    3.519727] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    3.524150] scsi 0:0:0:6: Attached scsi generic sg9 type 0\n[    3.525413] sd 0:0:0:5: [sdf] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    3.527982]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13\n[    3.531726] sd 0:0:0:3: [sdd] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    3.532103] sd 0:0:0:6: Power-on or device reset occurred\n[    3.534677] scsi 0:0:0:7: Direct-Access     WDC      SDINFDK4-256G    1260 PQ: 0 ANSI: 6\n[    3.539819] sd 0:0:0:4: [sde] 1572864 4096-byte logical blocks: (6.44 GB/6.00 GiB)\n[    3.548484] sd 0:0:0:4: [sde] Write Protect is off\n[    3.548489] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    3.560970] scsi 0:0:0:7: Attached scsi generic sg10 type 0\n[    3.561470] ufshcd-qcom 1d84000.ufshc: ufshcd_query_attr: opcode 0x03 for idn 255 failed, index 0, err = 253\n[    3.562477] ufshcd-qcom 1d84000.ufshc: __ufshcd_query_descriptor: opcode 0x01 for idn 0 failed, index 0, err = 251\n[    3.563261] ufshcd-qcom 1d84000.ufshc: __ufshcd_query_descriptor: opcode 0x01 for idn 0 failed, index 0, err = 251\n[    3.564712] sd 0:0:0:4: [sde] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    3.565216] ufshcd-qcom 1d84000.ufshc: __ufshcd_query_descriptor: opcode 0x01 for idn 0 failed, index 0, err = 251\n[    3.565227] sd 0:0:0:7: Power-on or device reset occurred\n[    3.565243] ufsf_read_desc:184 err: reading Device Desc failed. err = 251\n[    3.565248] ufstw_init:713 err: tw_enabled_lun count zero\n[    3.565250] ufstw_init:728 err: Turbo write initialization failed\n[    3.568712]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5\n[    3.581960] sd 0:0:0:6: [sdg] 1048576 4096-byte logical blocks: (4.29 GB/4.00 GiB)\n[    3.590010]  sdb: sdb1 sdb2\n[    3.594956] sd 0:0:0:6: [sdg] Write Protect is off\n[    3.594961] sd 0:0:0:6: [sdg] Mode Sense: 00 32 00 10\n[    3.595338] sd 0:0:0:5: [sdf] Attached SCSI disk\n[    3.604066] msm_pcie_disable: PCIe: Assert the reset of endpoint of RC0.\n[    3.608623] sd 0:0:0:6: [sdg] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    3.609004] sd 0:0:0:0: [sda] Attached SCSI disk\n[    3.611943]  sdc: sdc1 sdc2\n[    3.612236] sd 0:0:0:7: [sdh] 1048576 4096-byte logical blocks: (4.29 GB/4.00 GiB)\n[    3.615858] sd 0:0:0:7: [sdh] Write Protect is off\n[    3.615863] sd 0:0:0:7: [sdh] Mode Sense: 00 32 00 10\n[    3.621675] [FTS_TS/I]fts_get_ic_information:get ic information, chip id = 0x5452\n[    3.621689] [FTS_TS/I]fts_irq_registration:irq:372, flag:2002\n[    3.621931] [FTS_TS/I]fts_fwupg_init:fw upgrade init function\n[    3.621935] [FTS_TS/I]fts_fwupg_init:match upgrade function,type:81\n[    3.621965] [FTS_TS/I]fts_ts_i2c_probe:Touch Screen(I2C BUS) driver prboe successfully\n[    3.622640] [NVT-ts] nvt_driver_init 3337: start\n[    3.622664] [NVT-ts] nvt_driver_init 3345: finished\n[    3.623591] bimc-bwmon: Zone thres larger than hw limit: hi:0 med:4000 lo:0\n[    3.624466] [FTS_TS/I]fts_fwupg_work:fw upgrade work function\n[    3.624537] bimc-bwmon: Zone thres larger than hw limit: hi:0 med:4000 lo:0\n[    3.627173] sd 0:0:0:7: [sdh] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    3.627213] bimc-bwmon: Zone thres larger than hw limit: hi:0 med:4000 lo:0\n[    3.632694]  sdd: sdd1 sdd2 sdd3\n[    3.635503] RNDIS_IPA module is loaded.\n[    3.636507] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    3.636686] fts_ts 0-0038: Direct firmware load for focaltech_ts_fw_gvo.bin failed with error -2\n[    3.636691] fts_ts 0-0038: Falling back to sysfs fallback for: focaltech_ts_fw_gvo.bin\n[    3.637440] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    3.637915] cfg80211: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'\n[    3.637976] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2\n[    3.637980] platform regulatory.0: Falling back to sysfs fallback for: regulatory.db\n[    3.638660] lahaina-gcc 100000.qcom,gcc: sync-state\n[    3.638959] gpu_cc-lahaina 3d90000.qcom,gpucc: sync-state\n[    3.639006] lahaina-cam_cc ad00000.qcom,camcc: sync-state\n[    3.639102] video_cc-lahaina abf0000.qcom,videocc: sync-state\n[    3.639686] disp_cc-lahaina af00000.qcom,dispcc: sync-state\n[    3.639852] ALSA device list:\n[    3.639856]   No soundcards found.\n[    3.639882] Warning: unable to open an initial console.\n[    3.642428] sd 0:0:0:1: [sdb] Attached SCSI disk\n[    3.652705] sd 0:0:0:2: [sdc] Attached SCSI disk\n[    3.663609]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51 sde52 sde53 sde54 sde55 sde56 sde57 sde58 sde59 sde60 sde61 sde62 sde63 sde64 sde65 sde66\n[    3.670350] sd 0:0:0:3: [sdd] Attached SCSI disk\n[    3.692202] sd 0:0:0:4: [sde] Attached SCSI disk\n[    3.694269] sd 0:0:0:6: [sdg] Attached SCSI disk\n[    3.701417] sd 0:0:0:7: [sdh] Attached SCSI disk\n[    3.702405] Freeing unused kernel memory: 2048K\n[    3.708383] Run /init as init process\n[    3.891605] Booting DSP...\n[    3.893771] ERROR qrtr-ns: nameserver already running, going dormant: Address in use\n[    4.962415] subsys-pil-tz 17300000.qcom,lpass: adsp: loading from 0x0000000086100000 to 0x0000000088200000\n[    5.054336] subsys-pil-tz 17300000.qcom,lpass: adsp: Brought out of reset\n[    5.054349] subsys-pil-tz: subsys_powerup(): pil_boot is successful from adsp and waiting for error ready\n[    5.078460] subsys-pil-tz: subsys_err_ready_intr_handler(): Subsystem error monitoring/handling services are up fromadsp\n[    5.078475] subsys-pil-tz 17300000.qcom,lpass: adsp: Power/Clock ready interrupt received\n[    5.079179] adsprpc: fastrpc_restart_notifier_cb: adsp subsystem is up\n[    5.079536] qcom_smd_qrtr_probe:Entered\n[    5.079681] qcom_smd_qrtr_probe:SMD QRTR driver probed\n[    5.080652] sysmon-qmi: ssctl_new_server: Connection established between QMI handle and adsp's SSCTL service\n[    5.085493] Info: adsprpc (5217): kworker/0:8: fastrpc_rpmsg_probe: opened rpmsg channel for adsp\n[    5.086501] apr_tal_rpmsg soc:adsp.apr_audio_svc.-1.-1: apr_tal_rpmsg_probe: Channel[apr_audio_svc] state[Up]\n[    6.304790] OF: graph: no port node found in /soc/qcom,pmic_glink/qcom,ucsi/port\n[    6.304796] OF: graph: no port node found in /soc/qcom,pmic_glink/qcom,ucsi/port\n[    6.339629] msm-usb-ssphy-qmp 88e8000.ssphy: USB DP QMP PHY: Update TYPEC CTRL(2)\n[    6.396445] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode\n[    8.276374] sd 0:0:0:0: [sda] Synchronizing SCSI cache\n[    8.280105] sd 0:0:0:1: [sdb] Synchronizing SCSI cache\n[    8.292107] sd 0:0:0:2: [sdc] Synchronizing SCSI cache\n[    8.316103] sd 0:0:0:5: [sdf] Synchronizing SCSI cache\n[    8.328100] sd 0:0:0:3: [sdd] Synchronizing SCSI cache\n[    8.684378] sd 0:0:0:6: [sdg] Synchronizing SCSI cache\n[    8.696103] sd 0:0:0:7: [sdh] Synchronizing SCSI cache\n[    8.825532] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    8.825686] cpu1 \n[    8.825754] cpu4 \n[    8.825818] cpu7 \n[    8.825873] \n               Offline CPUs: \n[    8.828852] cpu1 \n[    8.832263] cpu2 \n[    8.834580] cpu3 \n[    8.836869] cpu4 \n[    8.839196] cpu5 \n[    8.841537] cpu6 \n[    8.842455] IRQ 16: no longer affine to CPU6\n[    8.842988] cpu7 \n[    8.844418] IRQ 17: no longer affine to CPU7\n\n[   11.744717] sd 0:0:0:4: [sde] Synchronizing SCSI cache\n[   13.792505] ufshpb_init_handler:4035 err: Probing LU is not fully complete.\n[   13.792519] ufshpb_init:3831 err: No UFSHPB LU to init\n[   13.792530] ufshpb_init_handler:4042 err: UFSHPB driver init failed. (-19)\n[   13.868978] Sampling power every 1000 ms\n               Baseline power usage: \n[   33.760775] gcc_ufs_card_gdsc: disabling\n[   33.760820] display_panel_avdd: disabling\n[   33.760835] hap-swr-slave-reg: disabling\n[   33.760907] pm8008i-chip-en: disabling\n[   33.765067] pm8008j-chip-en: disabling\n[   64.480739] cfg80211: failed to load regulatory.db\n[   64.481042] [FTS_TS/I]fts_get_fw_file_via_request_firmware:firmware(focaltech_ts_fw_gvo.bin) request fail,ret=-110\n[   64.481054] [FTS_TS/I]fts_fwupg_get_fw_file:upgrade fw file len:1\n[   64.481063] [FTS_TS/E]fts_fwupg_get_fw_file:fw file len(1) fail\n[   64.481071] [FTS_TS/E]fts_fwupg_work:get file fail, can't upgrade\n[   64.481316] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[   64.481329] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[   64.481360] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[   64.481405] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[   65.000906] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[   65.000926] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[   90.374256] 1291 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 403 499 595 691 806 902 998 1094 1209 1305 1401 1497 1612 1708 1804\n               \n                300: \n[  125.920651] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[  125.920665] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[  125.920693] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[  125.920734] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[  126.440788] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[  126.440807] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[  187.360631] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[  187.360644] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[  187.360670] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[  187.360711] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[  187.880864] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[  187.880882] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[  248.800627] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[  248.800640] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[  248.800667] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[  248.800707] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[  249.320734] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[  249.320752] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[  310.240738] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[  310.240752] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[  310.240777] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[  310.240816] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[  310.760936] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[  310.760954] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[  316.384989] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  316.385029] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  316.385042] PMIC_GLINK: pmic_glink_serv_loc_cb: PDR service locator for client: (null) service: (efault) is down\n[  316.386790] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  316.386804] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for audio_pdr_adsprpc\n[  316.386949] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  316.386962] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for sensors_pdr_adsprpc\n[  316.387032] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  316.387049] audio_notifier_reg_service: service SSR_ADSP is in use\n[  316.387089] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  368.296563]  1113     3.7 C/MHz     -2 mW   -0.5 J   -615.0 I/mJ   269.6 s\n                403: \n[  371.680655] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[  371.680666] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[  371.680685] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[  371.680714] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[  372.200705] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[  372.200719] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[  433.120493] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[  433.120503] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[  433.120523] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[  433.120553] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[  433.640610] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[  433.640623] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[  494.560494] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[  494.560504] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[  494.560524] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[  494.560553] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[  495.080638] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[  495.080651] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[  556.000494] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[  556.000504] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[  556.000523] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[  556.000553] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[  556.520520] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[  556.520533] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[  577.899227]  1496     3.7 C/MHz      1 mW    0.2 J   1676.7 I/mJ   200.5 s\n                499: \n[  617.440510] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[  617.440518] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[  617.440534] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[  617.440558] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[  617.960385] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[  617.960396] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[  678.880419] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[  678.880427] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[  678.880443] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[  678.880467] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[  679.400343] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[  679.400354] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[  740.320421] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[  740.320429] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[  740.320445] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[  740.320468] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[  740.840367] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[  740.840378] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[  748.800129]  1853     3.7 C/MHz      0 mW    0.1 J   4632.3 I/mJ   161.9 s\n                595: \n[  801.760372] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[  801.760379] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[  801.760393] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[  801.760413] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[  802.280021] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[  802.280100] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[  863.200371] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[  863.200378] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[  863.200392] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[  863.200412] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[  863.720018] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[  863.720096] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[  893.150399]  2209     3.7 C/MHz      2 mW    0.3 J   1197.3 I/mJ   135.8 s\n                691: \n[  924.640411] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[  924.640417] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[  924.640429] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[  924.640446] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[  925.159905] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[  925.159913] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[  986.080386] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[  986.080392] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[  986.080404] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[  986.080421] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[  986.599985] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[  986.599993] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 1019.186423]  2566     3.7 C/MHz      5 mW    0.6 J   500.9 I/mJ   116.9 s\n                806: \n[ 1047.520300] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 1047.520306] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 1047.520316] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 1047.520331] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 1048.039863] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 1048.039871] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 1108.960300] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 1108.960305] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 1108.960316] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 1108.960331] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 1109.479879] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 1109.479887] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 1127.932902]  2993     3.7 C/MHz     18 mW    1.8 J   164.2 I/mJ   100.2 s\n                902: \n[ 1170.400280] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 1170.400285] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 1170.400294] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 1170.400307] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 1170.919687] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 1170.919693] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 1226.520097]  3350     3.7 C/MHz     19 mW    1.7 J   172.6 I/mJ    89.6 s\n                998: \n[ 1231.840326] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 1231.840330] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 1231.840339] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 1231.840351] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 1232.359869] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 1232.359874] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 1293.280265] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 1293.280269] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 1293.280278] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 1293.280290] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 1293.799586] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 1293.799592] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 1315.963634]  3706     3.7 C/MHz      6 mW    0.5 J   607.8 I/mJ    81.0 s\n               1094: \n[ 1354.720251] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 1354.720255] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 1354.720263] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 1354.720274] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 1355.239817] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 1355.239822] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 1398.295236]  4062     3.7 C/MHz     35 mW    2.6 J   115.4 I/mJ    73.9 s\n               1209: \n[ 1416.160239] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 1416.160243] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 1416.160250] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 1416.160260] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 1416.679499] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 1416.679504] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 1473.498903]  4490     3.7 C/MHz     56 mW    3.8 J   79.7 I/mJ    66.8 s\n               1305: \n[ 1477.600287] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 1477.600291] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 1477.600297] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 1477.600307] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 1478.119700] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 1478.119704] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 1539.040291] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 1539.040295] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 1539.040301] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 1539.040311] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 1539.559496] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 1539.559501] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 1543.634665]  4847     3.7 C/MHz     51 mW    3.1 J   95.4 I/mJ    61.9 s\n               1401: \n[ 1600.480220] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 1600.480223] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 1600.480230] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 1600.480239] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 1600.999480] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 1600.999484] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 1609.706431]  5203     3.7 C/MHz     55 mW    3.2 J   94.4 I/mJ    57.7 s\n               1497: \n[ 1661.920214] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 1661.920217] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 1661.920223] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 1661.920232] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 1662.439812] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 1662.439816] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 1672.730464]  5560     3.7 C/MHz     70 mW    3.8 J   79.4 I/mJ    54.0 s\n               1612: \n[ 1723.360209] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 1723.360212] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 1723.360218] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 1723.360226] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 1723.879582] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 1723.879586] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 1731.690344]  5987     3.7 C/MHz     67 mW    3.4 J   89.3 I/mJ    50.1 s\n               1708: \n[ 1784.800202] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 1784.800205] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 1784.800210] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 1784.800218] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 1785.319624] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 1785.319628] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 1787.601997]  6344     3.7 C/MHz     73 mW    3.5 J   86.3 I/mJ    47.3 s\n               1804: \n[ 1841.490953] CPU features: detected: Hardware dirty bit management\n[ 1841.491396] cpu cpu4: failed to register opp energy model: -17\n[ 1842.501786]  6700     3.7 C/MHz     72 mW    3.2 J   92.9 I/mJ    44.8 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 710 844 960 1075 1209 1324 1440 1555 1670 1766 1881 1996 2112 2227 2342 2419\n               \n                710: \n[ 1846.240699] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 1846.240715] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 1846.240742] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 1846.240782] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 1846.761044] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 1846.761062] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 1897.508806]  6459     9.1 C/MHz    104 mW    4.8 J   62.2 I/mJ    46.5 s\n                844: \n[ 1907.680807] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 1907.680821] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 1907.680849] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 1907.680889] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 1908.200894] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 1908.200912] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 1945.390924]  7683     9.1 C/MHz    101 mW    4.0 J   75.8 I/mJ    39.1 s\n                960: \n[ 1969.120694] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 1969.120708] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 1969.120734] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 1969.120774] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 1969.641367] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 1969.641385] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 1988.196307]  8734     9.1 C/MHz    120 mW    4.1 J   72.5 I/mJ    34.4 s\n               1075: \n[ 2027.933811]  9779     9.1 C/MHz    158 mW    4.9 J   61.7 I/mJ    30.7 s\n               1209: \n[ 2030.560693] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 2030.560707] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 2030.560734] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 2030.560773] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 2031.080416] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 2031.080435] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 2063.600595] 11004     9.1 C/MHz    167 mW    4.6 J   65.9 I/mJ    27.3 s\n               1324: \n[ 2092.000703] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 2092.000716] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 2092.000743] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 2092.000783] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 2092.520892] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 2092.520911] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 2097.230058] 12054     9.1 C/MHz    193 mW    4.8 J   62.5 I/mJ    24.9 s\n               1440: \n[ 2128.823064] 13091     9.1 C/MHz    250 mW    5.7 J   52.4 I/mJ    22.9 s\n               1555: \n[ 2153.440720] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 2153.440734] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 2153.440761] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 2153.440800] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 2153.960901] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 2153.960919] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 2158.379454] 14150     9.1 C/MHz    283 mW    6.0 J   50.0 I/mJ    21.2 s\n               1670: \n[ 2186.904145] 15198     9.1 C/MHz    301 mW    5.9 J   50.4 I/mJ    19.8 s\n               1766: \n[ 2214.423172] 16063     9.1 C/MHz    349 mW    6.5 J   46.0 I/mJ    18.7 s\n               1881: \n[ 2214.880697] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 2214.880712] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 2214.880739] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 2214.880780] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 2215.400940] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 2215.400959] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 2240.922799] 17126     9.1 C/MHz    445 mW    7.8 J   38.4 I/mJ    17.5 s\n               1996: \n[ 2266.407228] 18154     9.1 C/MHz    479 mW    7.9 J   37.9 I/mJ    16.5 s\n               2112: \n[ 2276.320701] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 2276.320714] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 2276.320741] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 2276.320780] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 2276.841208] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 2276.841227] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 2290.872747] 19218     9.1 C/MHz    532 mW    8.3 J   36.1 I/mJ    15.6 s\n               2227: \n[ 2314.305409] 20265     9.1 C/MHz    599 mW    8.9 J   33.8 I/mJ    14.8 s\n               2342: \n[ 2336.734286] 21308     9.1 C/MHz    701 mW    9.9 J   30.4 I/mJ    14.1 s\n               2419: \n[ 2337.760703] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 2337.760717] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 2337.760744] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 2337.760784] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 2338.280899] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 2338.280918] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 2359.174935] cpu cpu7: failed to register opp energy model: -17\n[ 2360.185518] 22001     9.1 C/MHz    826 mW   11.3 J   26.6 I/mJ    13.7 s\n               \n               \n               ===== CPU 7 =====\n               Frequencies: 844 960 1075 1190 1305 1420 1555 1670 1785 1900 2035 2150 2265 2380 2496 2592 2688 2764 2841\n               \n                844: \n[ 2399.200711] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 2399.200727] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 2399.200755] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 2399.200795] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 2399.720940] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 2399.720959] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 2407.046697]  7844     9.3 C/MHz    177 mW    6.8 J   44.4 I/mJ    38.3 s\n                960: \n[ 2449.840216]  8913     9.3 C/MHz    198 mW    6.7 J   44.9 I/mJ    33.7 s\n               1075: \n[ 2460.640712] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 2460.640726] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 2460.640753] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 2460.640793] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 2461.161000] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 2461.161019] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 2489.578114]  9560     8.9 C/MHz    248 mW    7.8 J   38.6 I/mJ    31.4 s\n               1190: \n[ 2522.080698] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 2522.080711] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 2522.080737] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 2522.080777] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 2522.600893] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 2522.600912] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 2525.244812] 11054     9.3 C/MHz    286 mW    7.8 J   38.6 I/mJ    27.2 s\n               1305: \n[ 2558.874539] 12120     9.3 C/MHz    322 mW    8.0 J   37.6 I/mJ    24.8 s\n               1420: \n[ 2583.520701] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 2583.520714] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 2583.520741] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 2583.520780] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 2584.040937] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 2584.040956] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 2597.594014]  9842     6.9 C/MHz    252 mW    7.7 J   39.0 I/mJ    30.5 s\n               1555: \n[ 2641.404667]  8500     5.5 C/MHz    259 mW    9.2 J   32.7 I/mJ    35.3 s\n               1670: \n[ 2644.960704] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 2644.960717] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 2644.960744] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 2644.960784] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 2645.480900] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 2645.480919] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 2671.977139] 13968     8.4 C/MHz    424 mW    9.1 J   32.9 I/mJ    21.5 s\n               1785: \n[ 2703.570427] 13356     7.5 C/MHz    420 mW    9.4 J   31.8 I/mJ    22.5 s\n               1900: \n[ 2706.400702] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 2706.400717] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 2706.400744] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 2706.400784] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 2706.920901] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 2706.920919] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 2735.162829] 12891     6.8 C/MHz    460 mW   10.7 J   28.0 I/mJ    23.3 s\n               2035: \n[ 2759.628383] 18894     9.3 C/MHz    651 mW   10.3 J   29.0 I/mJ    15.9 s\n               2150: \n[ 2767.840399] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 2767.840412] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 2767.840439] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 2767.840480] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 2768.361047] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 2768.361066] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 2783.074487] 19957     9.3 C/MHz    732 mW   11.0 J   27.2 I/mJ    15.0 s\n               2265: \n[ 2806.522489] 21023     9.3 C/MHz    828 mW   11.8 J   25.4 I/mJ    14.3 s\n               2380: \n[ 2828.951766] 22093     9.3 C/MHz    995 mW   13.5 J   22.2 I/mJ    13.6 s\n               2496: \n[ 2829.280702] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 2829.280716] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 2829.280743] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 2829.280783] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 2829.800905] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 2829.800923] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 2850.362486] 23173     9.3 C/MHz   1043 mW   13.5 J   22.2 I/mJ    13.0 s\n               2592: \n[ 2871.773578] 24060     9.3 C/MHz   1190 mW   14.9 J   20.2 I/mJ    12.5 s\n               2688: \n[ 2890.720702] subsys-pil-tz soc:qcom,ipa_fws: ipa_fws: Failed to locate ipa_fws.mdt(rc:-110)\n[ 2890.720716] subsys-pil-tz: subsys_powerup(): pil_boot failed for ipa_fws\n[ 2890.720743] ipa ipa3_pil_load_ipa_fws:6886 Unable to PIL load FW for sub_sys=ipa_fws\n[ 2890.720783] gsi soc:qcom,msm_gsi: gsi_pending_irq_type:3052 no client registered\n[ 2891.240900] subsys-pil-tz soc:qcom,ipa_fws: Direct firmware load for ipa_fws.mdt failed with error -2\n[ 2891.240918] subsys-pil-tz soc:qcom,ipa_fws: Falling back to sysfs fallback for: ipa_fws.mdt\n[ 2892.164595] 24948     9.3 C/MHz   1316 mW   15.8 J   18.9 I/mJ    12.0 s\n               2764: \n[ 2912.558553] 25670     9.3 C/MHz   1435 mW   16.8 J   17.9 I/mJ    11.7 s\n               2841: \n[ 2932.983576] 26374     9.3 C/MHz   1599 mW   18.2 J   16.5 I/mJ    11.4 s\n               \n               \n               Benchmark finished!\n[ 2933.001262] \n               real\t48m45.004s\n               user\t40m0.178s\n               sys\t0m1.711s\n"
  },
  {
    "path": "results/sm8350/fifth/post_bench_interrupts.txt",
    "content": "           CPU0       \n  3:     735935     GICv3  27 Level     arch_timer\n  5:          0     GICv3  38 Level     arch_mem_timer\n  9:        850     GICv3  37 Level     apps_rsc\n 10:          0     GICv3 195 Level     ngd_slim_irq\n 12:         29     GICv3  23 Level     arm-pmu\n 14:       6003     GICv3 261 Level     ipcc_0\n 15:          0     GICv3  62 Level     dcvsh-irq-0\n 16:          0     GICv3  63 Level     dcvsh-irq-4\n 17:          0     GICv3  51 Level     dcvsh-irq-7\n 18:       3766     GICv3 297 Level     ufshcd\n 19:          0     GICv3 239 Level     mmc1\n 20:          2     GICv3 255 Level     8804000.sdhci\n 21:          0     GICv3  16 Level     KRYO L1-L2 ECC FAULTIRQ\n 22:          0     GICv3  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 23:          0     GICv3 161 Level     disp_rsc\n 25:          2     GICv3 613 Level     90b6400.qcom,cpu-cpu-llcc-bwmon\n 26:          1     GICv3 113 Level     9091000.qcom,cpu-llcc-ddr-bwmon\n 27:          0     GICv3 258 Level     90b9100.qcom,snoop-l3-bwmon\n 28:          0       PDC  26 Level     tsens-upper-lower\n 29:          0       PDC  28 Level     tsens-critical\n 31:          0       PDC  27 Level     tsens-upper-lower\n 32:          0       PDC  29 Level     tsens-critical\n 34:          0     GICv3 296 Edge      modem\n 35:          0       PDC   6 Edge      adsp\n 36:          0     GICv3 610 Edge      cdsp\n 39:          0       PDC   9 Edge      slpi\n 40:          0     GICv3 384 Level     spss\n 41:          0       PDC  11 Level     eud_irq\n 42:          0     GICv3 304 Level     sps\n 43:          0     GICv3 704 Level     arm-smmu global fault\n 44:          0     GICv3 705 Level     arm-smmu global fault\n 45:          0     GICv3 710 Level     arm-smmu-context-fault\n 46:          0     GICv3 711 Level     arm-smmu-context-fault\n 47:          0     GICv3 712 Level     arm-smmu-context-fault\n 48:          0     GICv3 713 Level     arm-smmu-context-fault\n 55:          0     GICv3  96 Level     arm-smmu global fault\n 56:          0     GICv3  97 Level     arm-smmu global fault\n 57:          0     GICv3 129 Level     arm-smmu-context-fault\n 59:          0     GICv3 131 Level     arm-smmu-context-fault\n 61:          0     GICv3 133 Level     arm-smmu-context-fault\n 62:          0     GICv3 134 Level     arm-smmu-context-fault\n 63:          0     GICv3 135 Level     arm-smmu-context-fault\n 64:          0     GICv3 136 Level     arm-smmu-context-fault\n 65:          0     GICv3 137 Level     arm-smmu-context-fault\n 66:          0     GICv3 138 Level     arm-smmu-context-fault\n 67:          0     GICv3 139 Level     arm-smmu-context-fault\n 68:          0     GICv3 140 Level     arm-smmu-context-fault\n 69:          0     GICv3 141 Level     arm-smmu-context-fault\n 70:          0     GICv3 142 Level     arm-smmu-context-fault\n 71:          0     GICv3 143 Level     arm-smmu-context-fault\n 72:          0     GICv3 144 Level     arm-smmu-context-fault\n 73:          0     GICv3 145 Level     arm-smmu-context-fault\n 74:          0     GICv3 146 Level     arm-smmu-context-fault\n 75:          0     GICv3 147 Level     arm-smmu-context-fault\n 76:          0     GICv3 148 Level     arm-smmu-context-fault\n 77:          0     GICv3 149 Level     arm-smmu-context-fault\n 78:          0     GICv3 150 Level     arm-smmu-context-fault\n 79:          0     GICv3 213 Level     arm-smmu-context-fault\n 80:          0     GICv3 214 Level     arm-smmu-context-fault\n 81:          0     GICv3 215 Level     arm-smmu-context-fault\n 82:          0     GICv3 216 Level     arm-smmu-context-fault\n 83:          0     GICv3 217 Level     arm-smmu-context-fault\n 84:          0     GICv3 218 Level     arm-smmu-context-fault\n 85:          0     GICv3 219 Level     arm-smmu-context-fault\n 86:          0     GICv3 220 Level     arm-smmu-context-fault\n 87:          0     GICv3 221 Level     arm-smmu-context-fault\n 88:          0     GICv3 222 Level     arm-smmu-context-fault\n 89:          0     GICv3 223 Level     arm-smmu-context-fault\n 90:          0     GICv3 224 Level     arm-smmu-context-fault\n 91:          0     GICv3 347 Level     arm-smmu-context-fault\n 92:          0     GICv3 348 Level     arm-smmu-context-fault\n 93:          0     GICv3 349 Level     arm-smmu-context-fault\n 94:          0     GICv3 350 Level     arm-smmu-context-fault\n 95:          0     GICv3 351 Level     arm-smmu-context-fault\n 96:          0     GICv3 352 Level     arm-smmu-context-fault\n 97:          0     GICv3 353 Level     arm-smmu-context-fault\n 98:          0     GICv3 354 Level     arm-smmu-context-fault\n 99:          0     GICv3 355 Level     arm-smmu-context-fault\n100:          0     GICv3 356 Level     arm-smmu-context-fault\n101:          0     GICv3 357 Level     arm-smmu-context-fault\n102:          0     GICv3 358 Level     arm-smmu-context-fault\n103:          0     GICv3 359 Level     arm-smmu-context-fault\n104:          0     GICv3 360 Level     arm-smmu-context-fault\n105:          0     GICv3 361 Level     arm-smmu-context-fault\n106:          0     GICv3 362 Level     arm-smmu-context-fault\n107:          0     GICv3 363 Level     arm-smmu-context-fault\n108:          0     GICv3 364 Level     arm-smmu-context-fault\n109:          0     GICv3 365 Level     arm-smmu-context-fault\n110:          0     GICv3 366 Level     arm-smmu-context-fault\n111:          0     GICv3 367 Level     arm-smmu-context-fault\n153:          0       PDC  14 Edge      dp_hs_phy_irq\n154:          1     GICv3 162 Level     pwr_event_irq\n155:          0       PDC  17 Level     ss_phy_irq\n156:          0       PDC  15 Edge      dm_hs_phy_irq\n158:       6008     GICv3 276 Level     gpi_dma900000_gpii0\n171:          0     GICv3 637 Level     i2c_geni\n184:        493     GICv3 390 Level     i2c_geni\n197:          0     GICv3 618 Level     msm_serial_geni0\n198:          5     GICv3 615 Level     i2c_geni\n199:          0     GICv3 206 Level     msm_vidc\n200:          0     GICv3 266 Level     msm_cvp\n201:          0     GICv3 172 Edge      int_global_int\n238:          0     GICv3 338 Edge      int_global_int\n275:          0     GICv3 332 Level     kgsl_3d0_irq\n276:          0     GICv3 336 Level     kgsl_hfi_irq\n277:          0     GICv3 337 Level     kgsl_gmu_irq\n278:          0     GICv3 115 Level     msm_drm\n279:          0     GICv3 269 Level     637000.mx_rdpm_pe\n280:          0     GICv3 275 Level     635000.cx_rdpm_pe\n281:          0     GICv3 509 Edge      csiphy0\n282:          0     GICv3 510 Edge      csiphy1\n283:          0     GICv3 511 Edge      csiphy2\n284:          0     GICv3 480 Edge      csiphy3\n285:          0     GICv3 154 Edge      csiphy4\n286:          0     GICv3 121 Edge      csiphy5\n287:          0     GICv3 492 Edge      cci\n288:          0     GICv3 303 Edge      cci\n289:          0     GICv3 491 Edge      cpas_camnoc\n290:          2     GICv3 493 Edge      cpas-cdm\n291:          2     GICv3 488 Edge      ife-cdm0\n292:          2     GICv3 319 Edge      ife-cdm1\n293:          2     GICv3 674 Edge      ife-cdm2\n294:          0     GICv3 496 Edge      csid\n295:          2     GICv3 497 Edge      ife\n296:          0     GICv3 498 Edge      csid\n297:          2     GICv3 499 Edge      ife\n298:          0     GICv3 672 Edge      csid\n299:          2     GICv3 673 Edge      ife\n300:          0     GICv3 500 Edge      csid-lite\n301:          2     GICv3 501 Edge      ife-lite\n302:          0     GICv3 391 Edge      csid-lite\n303:          2     GICv3 392 Edge      ife-lite\n304:          0     GICv3 495 Edge      a5\n305:          0     GICv3 506 Edge      jpeg\n306:          0     GICv3 507 Edge      jpegdma\n307:          0     GICv3  32 Edge      apps_wdog_bark\n308:          0     GICv3 960 Edge      hh_msgq_tx_0\n309:          0     GICv3 961 Edge      hh_msgq_rx_0\n310:          9      ipcc   0 Edge      qcom,qmp-aop\n311:          0  pmic_arb 20381778 Edge      pon_kpdpwr_status\n312:          0  pmic_arb 20316242 Edge      pon_resin_status\n313:       2876  pmic_arb 51380307 Edge      pm-adc7\n314:          0  pmic_arb 54526036 Edge      threshold\n315:          0  pmic_arb 102826069 Edge      pm8xxx_rtc_alarm\n316:          0  pmic_arb 278921327 Edge      qcom,temp-alarm\n317:          0  pmic_arb 547356791 Edge      qcom,temp-alarm\n318:          0  pmic_arb 611319928 Edge      bcl-lvl0\n319:          0  pmic_arb 611385464 Edge      bcl-lvl1\n320:          0  pmic_arb 611451000 Edge      bcl-lvl2\n321:          0  pmic_arb 786432131 Edge      flash_fault\n322:          0  pmic_arb 786628739 Edge      flash_all_ramp_down\n323:          0  pmic_arb 786694275 Edge      flash_all_ramp_up\n324:          0  pmic_arb 815792262 Edge      qcom,temp-alarm\n325:          0  pmic_arb 879755400 Edge      bcl-lvl0\n326:          0  pmic_arb 879820936 Edge      bcl-lvl1\n327:          0  pmic_arb 879886472 Edge      bcl-lvl2\n328:          0  pmic_arb 1057030282 Edge      fifo-empty\n329:          0  pmic_arb 130089048 Edge      ecm-sdam0\n330:          0  pmic_arb 131137625 Edge      ecm-sdam1\n331:          0  pmic_arb 1084227728 Edge      qcom,temp-alarm\n332:          0  pmic_arb 1352663186 Edge      qcom,temp-alarm\n333:          2      ipcc 196610 Edge      smp2p\n334:          0      ipcc 262146 Edge      smp2p\n335:          0      ipcc 393218 Edge      smp2p\n336:          0      ipcc 131074 Edge      smp2p\n337:          1      ipcc 1048577 Edge      qsee_ipc_irq_spss\n338:          0     smp2p   0 Edge      smp2p_sleepstate\n339:          0   msmgpio  39 Edge      qbt_finger_detect\n340:          0   msmgpio  38 Edge      qbt_ipc\n343:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n344:          0     GICv3 165 Level     dwc3\n346:          0     smp2p   0 Edge      cdsp\n347:          0     smp2p   1 Edge      error_ready_interrupt\n348:          0     smp2p   3 Edge      cdsp\n349:          0     smp2p   2 Edge      cdsp\n350:          0     smp2p   0 Edge      adsp\n351:          0     smp2p   1 Edge      error_ready_interrupt\n352:          0     smp2p   3 Edge      adsp\n353:          0     smp2p   2 Edge      adsp\n354:          0     smp2p   0 Edge      slpi\n355:          0     smp2p   1 Edge      error_ready_interrupt\n356:          0     smp2p   3 Edge      slpi\n357:          0     smp2p   2 Edge      slpi\n358:          1   msmgpio  96 Edge      msm_pcie_wake\n359:          0   msmgpio  99 Edge      msm_pcie_wake\n360:          0     smp2p   0 Edge      modem\n361:          0     smp2p   1 Edge      error_ready_interrupt\n362:          0     smp2p   3 Edge      modem\n363:          0     smp2p   7 Edge      modem\n364:          0     smp2p   2 Edge      modem\n365:          0   msmgpio  92 Edge      8804000.sdhci cd\n367:          2   msmgpio  87 Level     sn-nci\n368:          0   msmgpio  82 Edge      TE_GPIO\n369:          0       sde  12 Edge      dp_display_isr\n370:          0       sde   4 Edge      dsi_ctrl\n371:          0  spmi-gpio   5 Edge      volume_up\n372:       1999   msmgpio  23 Edge      fts_ts\n405:       6067      ipcc 196608 Edge      glink-native-adsp\nIPI0:       763       Rescheduling interrupts\nIPI1:        14       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:    183350       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8350/fifth/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  3:       2259          2          3          4          2          1          1          1     GICv3  27 Level     arch_timer\n  5:          0          0          0          0          0          0          0          0     GICv3  38 Level     arch_mem_timer\n  9:        352          0          0          0          0          0          0          0     GICv3  37 Level     apps_rsc\n 10:          0          0          0          0          0          0          0          0     GICv3 195 Level     ngd_slim_irq\n 12:          1          0          0          0          0          0          0          0     GICv3  23 Level     arm-pmu\n 14:        353          0          0          0          0          0          0          0     GICv3 261 Level     ipcc_0\n 15:          0          0          0          0          0          0          0          0     GICv3  62 Level     dcvsh-irq-0\n 16:          0          0          0          0          0          0          0          0     GICv3  63 Level     dcvsh-irq-4\n 17:          0          0          0          0          0          0          0          0     GICv3  51 Level     dcvsh-irq-7\n 18:       3746          0          0          0          0          0          0          0     GICv3 297 Level     ufshcd\n 19:          0          0          0          0          0          0          0          0     GICv3 239 Level     mmc1\n 20:          2          0          0          0          0          0          0          0     GICv3 255 Level     8804000.sdhci\n 21:          0          0          0          0          0          0          0          0     GICv3  16 Level     KRYO L1-L2 ECC FAULTIRQ\n 22:          0          0          0          0          0          0          0          0     GICv3  67 Level     KRYO L3-SCU ECC FAULTIRQ\n 23:          0          0          0          0          0          0          0          0     GICv3 161 Level     disp_rsc\n 25:          1          0          0          0          0          0          0          0     GICv3 613 Level     90b6400.qcom,cpu-cpu-llcc-bwmon\n 26:          1          0          0          0          0          0          0          0     GICv3 113 Level     9091000.qcom,cpu-llcc-ddr-bwmon\n 27:          0          0          0          0          0          0          0          0     GICv3 258 Level     90b9100.qcom,snoop-l3-bwmon\n 28:          0          0          0          0          0          0          0          0       PDC  26 Level     tsens-upper-lower\n 29:          0          0          0          0          0          0          0          0       PDC  28 Level     tsens-critical\n 31:          0          0          0          0          0          0          0          0       PDC  27 Level     tsens-upper-lower\n 32:          0          0          0          0          0          0          0          0       PDC  29 Level     tsens-critical\n 34:          0          0          0          0          0          0          0          0     GICv3 296 Edge      modem\n 35:          0          0          0          0          0          0          0          0       PDC   6 Edge      adsp\n 36:          0          0          0          0          0          0          0          0     GICv3 610 Edge      cdsp\n 39:          0          0          0          0          0          0          0          0       PDC   9 Edge      slpi\n 40:          0          0          0          0          0          0          0          0     GICv3 384 Level     spss\n 41:          0          0          0          0          0          0          0          0       PDC  11 Level     eud_irq\n 42:          0          0          0          0          0          0          0          0     GICv3 304 Level     sps\n 43:          0          0          0          0          0          0          0          0     GICv3 704 Level     arm-smmu global fault\n 44:          0          0          0          0          0          0          0          0     GICv3 705 Level     arm-smmu global fault\n 45:          0          0          0          0          0          0          0          0     GICv3 710 Level     arm-smmu-context-fault\n 46:          0          0          0          0          0          0          0          0     GICv3 711 Level     arm-smmu-context-fault\n 47:          0          0          0          0          0          0          0          0     GICv3 712 Level     arm-smmu-context-fault\n 48:          0          0          0          0          0          0          0          0     GICv3 713 Level     arm-smmu-context-fault\n 55:          0          0          0          0          0          0          0          0     GICv3  96 Level     arm-smmu global fault\n 56:          0          0          0          0          0          0          0          0     GICv3  97 Level     arm-smmu global fault\n 57:          0          0          0          0          0          0          0          0     GICv3 129 Level     arm-smmu-context-fault\n 59:          0          0          0          0          0          0          0          0     GICv3 131 Level     arm-smmu-context-fault\n 61:          0          0          0          0          0          0          0          0     GICv3 133 Level     arm-smmu-context-fault\n 62:          0          0          0          0          0          0          0          0     GICv3 134 Level     arm-smmu-context-fault\n 63:          0          0          0          0          0          0          0          0     GICv3 135 Level     arm-smmu-context-fault\n 64:          0          0          0          0          0          0          0          0     GICv3 136 Level     arm-smmu-context-fault\n 65:          0          0          0          0          0          0          0          0     GICv3 137 Level     arm-smmu-context-fault\n 66:          0          0          0          0          0          0          0          0     GICv3 138 Level     arm-smmu-context-fault\n 67:          0          0          0          0          0          0          0          0     GICv3 139 Level     arm-smmu-context-fault\n 68:          0          0          0          0          0          0          0          0     GICv3 140 Level     arm-smmu-context-fault\n 69:          0          0          0          0          0          0          0          0     GICv3 141 Level     arm-smmu-context-fault\n 70:          0          0          0          0          0          0          0          0     GICv3 142 Level     arm-smmu-context-fault\n 71:          0          0          0          0          0          0          0          0     GICv3 143 Level     arm-smmu-context-fault\n 72:          0          0          0          0          0          0          0          0     GICv3 144 Level     arm-smmu-context-fault\n 73:          0          0          0          0          0          0          0          0     GICv3 145 Level     arm-smmu-context-fault\n 74:          0          0          0          0          0          0          0          0     GICv3 146 Level     arm-smmu-context-fault\n 75:          0          0          0          0          0          0          0          0     GICv3 147 Level     arm-smmu-context-fault\n 76:          0          0          0          0          0          0          0          0     GICv3 148 Level     arm-smmu-context-fault\n 77:          0          0          0          0          0          0          0          0     GICv3 149 Level     arm-smmu-context-fault\n 78:          0          0          0          0          0          0          0          0     GICv3 150 Level     arm-smmu-context-fault\n 79:          0          0          0          0          0          0          0          0     GICv3 213 Level     arm-smmu-context-fault\n 80:          0          0          0          0          0          0          0          0     GICv3 214 Level     arm-smmu-context-fault\n 81:          0          0          0          0          0          0          0          0     GICv3 215 Level     arm-smmu-context-fault\n 82:          0          0          0          0          0          0          0          0     GICv3 216 Level     arm-smmu-context-fault\n 83:          0          0          0          0          0          0          0          0     GICv3 217 Level     arm-smmu-context-fault\n 84:          0          0          0          0          0          0          0          0     GICv3 218 Level     arm-smmu-context-fault\n 85:          0          0          0          0          0          0          0          0     GICv3 219 Level     arm-smmu-context-fault\n 86:          0          0          0          0          0          0          0          0     GICv3 220 Level     arm-smmu-context-fault\n 87:          0          0          0          0          0          0          0          0     GICv3 221 Level     arm-smmu-context-fault\n 88:          0          0          0          0          0          0          0          0     GICv3 222 Level     arm-smmu-context-fault\n 89:          0          0          0          0          0          0          0          0     GICv3 223 Level     arm-smmu-context-fault\n 90:          0          0          0          0          0          0          0          0     GICv3 224 Level     arm-smmu-context-fault\n 91:          0          0          0          0          0          0          0          0     GICv3 347 Level     arm-smmu-context-fault\n 92:          0          0          0          0          0          0          0          0     GICv3 348 Level     arm-smmu-context-fault\n 93:          0          0          0          0          0          0          0          0     GICv3 349 Level     arm-smmu-context-fault\n 94:          0          0          0          0          0          0          0          0     GICv3 350 Level     arm-smmu-context-fault\n 95:          0          0          0          0          0          0          0          0     GICv3 351 Level     arm-smmu-context-fault\n 96:          0          0          0          0          0          0          0          0     GICv3 352 Level     arm-smmu-context-fault\n 97:          0          0          0          0          0          0          0          0     GICv3 353 Level     arm-smmu-context-fault\n 98:          0          0          0          0          0          0          0          0     GICv3 354 Level     arm-smmu-context-fault\n 99:          0          0          0          0          0          0          0          0     GICv3 355 Level     arm-smmu-context-fault\n100:          0          0          0          0          0          0          0          0     GICv3 356 Level     arm-smmu-context-fault\n101:          0          0          0          0          0          0          0          0     GICv3 357 Level     arm-smmu-context-fault\n102:          0          0          0          0          0          0          0          0     GICv3 358 Level     arm-smmu-context-fault\n103:          0          0          0          0          0          0          0          0     GICv3 359 Level     arm-smmu-context-fault\n104:          0          0          0          0          0          0          0          0     GICv3 360 Level     arm-smmu-context-fault\n105:          0          0          0          0          0          0          0          0     GICv3 361 Level     arm-smmu-context-fault\n106:          0          0          0          0          0          0          0          0     GICv3 362 Level     arm-smmu-context-fault\n107:          0          0          0          0          0          0          0          0     GICv3 363 Level     arm-smmu-context-fault\n108:          0          0          0          0          0          0          0          0     GICv3 364 Level     arm-smmu-context-fault\n109:          0          0          0          0          0          0          0          0     GICv3 365 Level     arm-smmu-context-fault\n110:          0          0          0          0          0          0          0          0     GICv3 366 Level     arm-smmu-context-fault\n111:          0          0          0          0          0          0          0          0     GICv3 367 Level     arm-smmu-context-fault\n153:          0          0          0          0          0          0          0          0       PDC  14 Edge      dp_hs_phy_irq\n154:          1          0          0          0          0          0          0          0     GICv3 162 Level     pwr_event_irq\n155:          0          0          0          0          0          0          0          0       PDC  17 Level     ss_phy_irq\n156:          0          0          0          0          0          0          0          0       PDC  15 Edge      dm_hs_phy_irq\n158:         11          0          0          0          0          0          0          0     GICv3 276 Level     gpi_dma900000_gpii0\n171:          0          0          0          0          0          0          0          0     GICv3 637 Level     i2c_geni\n184:        441          0          0          0          0          0          0          0     GICv3 390 Level     i2c_geni\n197:          0          0          0          0          0          0          0          0     GICv3 618 Level     msm_serial_geni0\n198:          5          0          0          0          0          0          0          0     GICv3 615 Level     i2c_geni\n199:          0          0          0          0          0          0          0          0     GICv3 206 Level     msm_vidc\n200:          0          0          0          0          0          0          0          0     GICv3 266 Level     msm_cvp\n201:          0          0          0          0          0          0          0          0     GICv3 172 Edge      int_global_int\n238:          0          0          0          0          0          0          0          0     GICv3 338 Edge      int_global_int\n275:          0          0          0          0          0          0          0          0     GICv3 332 Level     kgsl_3d0_irq\n276:          0          0          0          0          0          0          0          0     GICv3 336 Level     kgsl_hfi_irq\n277:          0          0          0          0          0          0          0          0     GICv3 337 Level     kgsl_gmu_irq\n278:          0          0          0          0          0          0          0          0     GICv3 115 Level     msm_drm\n279:          0          0          0          0          0          0          0          0     GICv3 269 Level     637000.mx_rdpm_pe\n280:          0          0          0          0          0          0          0          0     GICv3 275 Level     635000.cx_rdpm_pe\n281:          0          0          0          0          0          0          0          0     GICv3 509 Edge      csiphy0\n282:          0          0          0          0          0          0          0          0     GICv3 510 Edge      csiphy1\n283:          0          0          0          0          0          0          0          0     GICv3 511 Edge      csiphy2\n284:          0          0          0          0          0          0          0          0     GICv3 480 Edge      csiphy3\n285:          0          0          0          0          0          0          0          0     GICv3 154 Edge      csiphy4\n286:          0          0          0          0          0          0          0          0     GICv3 121 Edge      csiphy5\n287:          0          0          0          0          0          0          0          0     GICv3 492 Edge      cci\n288:          0          0          0          0          0          0          0          0     GICv3 303 Edge      cci\n289:          0          0          0          0          0          0          0          0     GICv3 491 Edge      cpas_camnoc\n290:          2          0          0          0          0          0          0          0     GICv3 493 Edge      cpas-cdm\n291:          2          0          0          0          0          0          0          0     GICv3 488 Edge      ife-cdm0\n292:          2          0          0          0          0          0          0          0     GICv3 319 Edge      ife-cdm1\n293:          2          0          0          0          0          0          0          0     GICv3 674 Edge      ife-cdm2\n294:          0          0          0          0          0          0          0          0     GICv3 496 Edge      csid\n295:          2          0          0          0          0          0          0          0     GICv3 497 Edge      ife\n296:          0          0          0          0          0          0          0          0     GICv3 498 Edge      csid\n297:          2          0          0          0          0          0          0          0     GICv3 499 Edge      ife\n298:          0          0          0          0          0          0          0          0     GICv3 672 Edge      csid\n299:          2          0          0          0          0          0          0          0     GICv3 673 Edge      ife\n300:          0          0          0          0          0          0          0          0     GICv3 500 Edge      csid-lite\n301:          2          0          0          0          0          0          0          0     GICv3 501 Edge      ife-lite\n302:          0          0          0          0          0          0          0          0     GICv3 391 Edge      csid-lite\n303:          2          0          0          0          0          0          0          0     GICv3 392 Edge      ife-lite\n304:          0          0          0          0          0          0          0          0     GICv3 495 Edge      a5\n305:          0          0          0          0          0          0          0          0     GICv3 506 Edge      jpeg\n306:          0          0          0          0          0          0          0          0     GICv3 507 Edge      jpegdma\n307:          0          0          0          0          0          0          0          0     GICv3  32 Edge      apps_wdog_bark\n308:          0          0          0          0          0          0          0          0     GICv3 960 Edge      hh_msgq_tx_0\n309:          0          0          0          0          0          0          0          0     GICv3 961 Edge      hh_msgq_rx_0\n310:          9          0          0          0          0          0          0          0      ipcc   0 Edge      qcom,qmp-aop\n311:          0          0          0          0          0          0          0          0  pmic_arb 20381778 Edge      pon_kpdpwr_status\n312:          0          0          0          0          0          0          0          0  pmic_arb 20316242 Edge      pon_resin_status\n313:         19          0          0          0          0          0          0          0  pmic_arb 51380307 Edge      pm-adc7\n314:          0          0          0          0          0          0          0          0  pmic_arb 54526036 Edge      threshold\n315:          0          0          0          0          0          0          0          0  pmic_arb 102826069 Edge      pm8xxx_rtc_alarm\n316:          0          0          0          0          0          0          0          0  pmic_arb 278921327 Edge      qcom,temp-alarm\n317:          0          0          0          0          0          0          0          0  pmic_arb 547356791 Edge      qcom,temp-alarm\n318:          0          0          0          0          0          0          0          0  pmic_arb 611319928 Edge      bcl-lvl0\n319:          0          0          0          0          0          0          0          0  pmic_arb 611385464 Edge      bcl-lvl1\n320:          0          0          0          0          0          0          0          0  pmic_arb 611451000 Edge      bcl-lvl2\n321:          0          0          0          0          0          0          0          0  pmic_arb 786432131 Edge      flash_fault\n322:          0          0          0          0          0          0          0          0  pmic_arb 786628739 Edge      flash_all_ramp_down\n323:          0          0          0          0          0          0          0          0  pmic_arb 786694275 Edge      flash_all_ramp_up\n324:          0          0          0          0          0          0          0          0  pmic_arb 815792262 Edge      qcom,temp-alarm\n325:          0          0          0          0          0          0          0          0  pmic_arb 879755400 Edge      bcl-lvl0\n326:          0          0          0          0          0          0          0          0  pmic_arb 879820936 Edge      bcl-lvl1\n327:          0          0          0          0          0          0          0          0  pmic_arb 879886472 Edge      bcl-lvl2\n328:          0          0          0          0          0          0          0          0  pmic_arb 1057030282 Edge      fifo-empty\n329:          0          0          0          0          0          0          0          0  pmic_arb 130089048 Edge      ecm-sdam0\n330:          0          0          0          0          0          0          0          0  pmic_arb 131137625 Edge      ecm-sdam1\n331:          0          0          0          0          0          0          0          0  pmic_arb 1084227728 Edge      qcom,temp-alarm\n332:          0          0          0          0          0          0          0          0  pmic_arb 1352663186 Edge      qcom,temp-alarm\n333:          2          0          0          0          0          0          0          0      ipcc 196610 Edge      smp2p\n334:          0          0          0          0          0          0          0          0      ipcc 262146 Edge      smp2p\n335:          0          0          0          0          0          0          0          0      ipcc 393218 Edge      smp2p\n336:          0          0          0          0          0          0          0          0      ipcc 131074 Edge      smp2p\n337:          1          0          0          0          0          0          0          0      ipcc 1048577 Edge      qsee_ipc_irq_spss\n338:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n339:          0          0          0          0          0          0          0          0   msmgpio  39 Edge      qbt_finger_detect\n340:          0          0          0          0          0          0          0          0   msmgpio  38 Edge      qbt_ipc\n343:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n344:          0          0          0          0          0          0          0          0     GICv3 165 Level     dwc3\n346:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n347:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n348:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n349:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n350:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n351:          0          1          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n352:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n353:          0          1          0          0          0          0          0          0     smp2p   2 Edge      adsp\n354:          0          0          0          0          0          0          0          0     smp2p   0 Edge      slpi\n355:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n356:          0          0          0          0          0          0          0          0     smp2p   3 Edge      slpi\n357:          0          0          0          0          0          0          0          0     smp2p   2 Edge      slpi\n358:          1          0          0          0          0          0          0          0   msmgpio  96 Edge      msm_pcie_wake\n359:          0          0          0          0          0          0          0          0   msmgpio  99 Edge      msm_pcie_wake\n360:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n361:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n362:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n363:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n364:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n365:          0          0          0          0          0          0          0          0   msmgpio  92 Edge      8804000.sdhci cd\n367:          2          0          0          0          0          0          0          0   msmgpio  87 Level     sn-nci\n368:          0          0          0          0          0          0          0          0   msmgpio  82 Edge      TE_GPIO\n369:          0          0          0          0          0          0          0          0       sde  12 Edge      dp_display_isr\n370:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n371:          0          0          0          0          0          0          0          0  spmi-gpio   5 Edge      volume_up\n372:          0          0          0          0          0          0          0          0   msmgpio  23 Edge      fts_ts\n405:        391          0          0          0          0          0          0          0      ipcc 196608 Edge      glink-native-adsp\nIPI0:       635       5347       5140       6224       3510       3508       3512       3422       Rescheduling interrupts\nIPI1:         0         51         49         52         47         47         46         45       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:       505        143         51        147          8          8          8          8       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8350/fifth/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:02 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    6 root      0:00 [kworker/0:0H-ev]\n    9 root      0:00 [mm_percpu_wq]\n   10 root      0:00 [rcu_tasks_kthre]\n   11 root      0:00 [ksoftirqd/0]\n   12 root      0:00 [rcu_preempt]\n   13 root      0:00 [rcuog/0]\n   14 root      0:00 [rcuop/0]\n   15 root      0:00 [rcub/0]\n   16 root      0:00 [migration/0]\n   17 root      0:00 [cpuhp/0]\n   18 root      0:00 [cpuhp/1]\n   19 root      0:00 [migration/1]\n   20 root      0:00 [ksoftirqd/1]\n   22 root      0:00 [kworker/1:0H-ev]\n   23 root      0:00 [rcuop/1]\n   24 root      0:00 [cpuhp/2]\n   25 root      0:00 [migration/2]\n   26 root      0:00 [ksoftirqd/2]\n   28 root      0:00 [kworker/2:0H-ev]\n   29 root      0:00 [rcuop/2]\n   30 root      0:00 [cpuhp/3]\n   31 root      0:00 [migration/3]\n   32 root      0:00 [ksoftirqd/3]\n   34 root      0:00 [kworker/3:0H-ev]\n   35 root      0:00 [rcuop/3]\n   36 root      0:00 [cpuhp/4]\n   37 root      0:00 [migration/4]\n   38 root      0:00 [ksoftirqd/4]\n   40 root      0:00 [kworker/4:0H-ev]\n   41 root      0:00 [rcuog/4]\n   42 root      0:00 [rcuop/4]\n   43 root      0:00 [cpuhp/5]\n   44 root      0:00 [migration/5]\n   45 root      0:00 [ksoftirqd/5]\n   46 root      0:00 [kworker/5:0-eve]\n   47 root      0:00 [kworker/5:0H-ev]\n   48 root      0:00 [rcuop/5]\n   49 root      0:00 [cpuhp/6]\n   50 root      0:00 [migration/6]\n   51 root      0:00 [ksoftirqd/6]\n   52 root      0:00 [kworker/6:0-eve]\n   53 root      0:00 [kworker/6:0H-ev]\n   54 root      0:00 [rcuop/6]\n   55 root      0:00 [cpuhp/7]\n   56 root      0:00 [migration/7]\n   57 root      0:00 [ksoftirqd/7]\n   59 root      0:00 [kworker/7:0H-ev]\n   60 root      0:00 [rcuop/7]\n   61 root      0:00 [netns]\n   62 root      0:00 [kauditd]\n   63 root      0:00 [qrtr_ns]\n   65 root      0:00 [kworker/u17:0-p]\n   66 root      0:00 [qmp_aop]\n   67 root      0:00 [hh-watchdog]\n   68 root      0:00 [oom_reaper]\n   69 root      0:00 [writeback]\n   70 root      0:00 [kcompactd0]\n   87 root      0:00 [cryptd]\n  115 root      0:00 [kblockd]\n  116 root      0:00 [blk_crypto_wq]\n  117 root      0:00 [blkcg_punt_bio]\n  119 root      0:00 [kswapd-1:0]\n  120 root      0:00 [irq/43-arm-smmu]\n  121 root      0:00 [irq/44-arm-smmu]\n  122 root      0:00 [governor_msm_ad]\n  123 root      0:00 [irq/28-tsens-up]\n  124 root      0:00 [irq/29-tsens-cr]\n  125 root      0:00 [irq/31-tsens-up]\n  126 root      0:00 [irq/32-tsens-cr]\n  127 root      0:00 [edac-poller]\n  128 root      0:00 [irq/15-dcvsh-ir]\n  129 root      0:00 [irq/16-dcvsh-ir]\n  130 root      0:00 [irq/17-dcvsh-ir]\n  131 root      0:00 [core_ctl/0]\n  133 root      0:00 [core_ctl/4]\n  134 root      0:00 [kworker/0:1H-kb]\n  135 root      0:00 [ion_system_heap]\n  136 root      0:00 [core_ctl/7]\n  137 root      0:00 [cpu_boost_worke]\n  138 root      0:00 [devfreq_wq]\n  139 root      0:00 [ipa_usb_wq]\n  140 root      0:00 [mpcie_wq]\n  141 root      0:00 [watchdogd]\n  142 root      0:00 [ion-pool-uncach]\n  143 root      0:00 [ion-pool-cached]\n  144 root      0:00 [system]\n  146 root      0:00 [kworker/2:1-eve]\n  147 root      0:00 [kworker/3:1-eve]\n  148 root      0:00 [cfg80211]\n  174 root      0:00 [erofs_worker/0]\n  183 root      0:00 [irq/333-smp2p]\n  184 root      0:00 [irq/334-smp2p]\n  185 root      0:00 [irq/335-smp2p]\n  186 root      0:00 [irq/336-smp2p]\n  188 root      0:00 [pmic_glink_rx]\n  190 root      0:00 [pmic_glink_rx]\n  191 root      0:00 [cdsprm-wq]\n  192 root      0:00 [cdsprm-wq-delay]\n  193 root      0:00 [hyp_core_ctl]\n  194 root      0:00 [irq/340-qbt_ipc]\n  197 root      0:00 [kgsl-workqueue]\n  198 root      0:00 [kgsl-mementry]\n  199 root      0:00 [kgsl_worker_thr]\n  200 root      0:00 [qseecom-unreg-l]\n  201 root      0:00 [qseecom-unload-]\n  202 root      0:00 [uas]\n  203 root      0:00 [k_ipa_usb]\n  204 root      0:00 [irq/328-fifo-em]\n  205 root      0:00 [irq/317-qcom,te]\n  206 root      0:00 [kworker/1:1H-ev]\n  207 root      0:00 [kworker/2:1H-ev]\n  208 root      0:00 [kworker/3:1H-ev]\n  209 root      0:00 [kworker/4:1H-ev]\n  210 root      0:00 [kworker/5:1H-ev]\n  211 root      0:00 [kworker/6:1H-ev]\n  212 root      0:00 [kworker/7:1H-ev]\n  213 root      0:00 [irq/318-bcl-lvl]\n  214 root      0:00 [irq/319-bcl-lvl]\n  215 root      0:00 [irq/320-bcl-lvl]\n  216 root      0:00 [irq/325-bcl-lvl]\n  217 root      0:00 [irq/326-bcl-lvl]\n  218 root      0:00 [irq/327-bcl-lvl]\n  219 root      0:00 [irq/279-637000.]\n  220 root      0:00 [irq/280-635000.]\n  221 root      0:00 [dm_bufio_cache]\n  222 root      0:00 [irq/22-KRYO L3-]\n  223 root      0:00 [irq/323-flash_a]\n  224 root      0:00 [irq/322-flash_a]\n  225 root      0:00 [irq/321-flash_f]\n  226 root      0:00 [qcrypto_seq_res]\n  227 root      0:00 [hh_rm_recv_task]\n  228 root      0:00 [memlat_wq]\n  229 root      0:00 [apr_driver]\n  231 root      0:00 [kworker/4:1-eve]\n  232 root      0:00 [kworker/5:1-rcu]\n  234 root      0:00 [kworker/7:1-rcu]\n  235 root      0:00 [ipv6_addrconf]\n  236 root      0:00 [krfcommd]\n  237 root      0:00 [qrtr_rx]\n  238 root      0:00 [recv_sync_threa]\n  239 root      0:00 [send_sync_threa]\n  240 root      0:00 [soc:qcom,svm_ne]\n  241 root      0:00 [rq_stats]\n  242 root      0:00 [msm_perf:events]\n  244 root      0:00 [dsi_dma_cmd_wor]\n  246 root      0:00 [dsi_dma_cmd_wor]\n  247 root      0:00 [ipa_power_mgmt]\n  248 root      0:00 [transport_power]\n  249 root      0:00 [ipa_pm_activate]\n  250 root      0:00 [rmnet_ctlwq]\n  251 root      0:00 [hwrng]\n  252 root      0:00 [irq/55-arm-smmu]\n  253 root      0:00 [irq/56-arm-smmu]\n  254 root      0:00 [irq/62-arm-smmu]\n  255 root      0:00 [usb_bam_wq]\n  256 root      0:00 [irq/154-pwr_eve]\n  257 root      0:00 [irq/153-dp_hs_p]\n  258 root      0:00 [irq/156-dm_hs_p]\n  259 root      0:00 [irq/155-ss_phy_]\n  260 root      0:00 [msm_vidc_worker]\n  261 root      0:00 [pm_workerq_venu]\n  262 root      0:00 [vidc_core_workq]\n  263 root      0:00 [irq/64-arm-smmu]\n  264 root      0:00 [irq/65-arm-smmu]\n  265 root      0:00 [irq/66-arm-smmu]\n  266 root      0:00 [irq/67-arm-smmu]\n  267 root      0:00 [irq/45-arm-smmu]\n  268 root      0:00 [kgsl-events]\n  270 root      0:00 [irq/46-arm-smmu]\n  271 root      0:00 [msm_cvp_workerq]\n  272 root      0:00 [irq/47-arm-smmu]\n  273 root      0:00 [pm_workerq_iris]\n  274 root      0:00 [irq/68-arm-smmu]\n  275 root      0:00 [irq/48-arm-smmu]\n  276 root      0:00 [kgsl_devfreq_wq]\n  277 root      0:00 [irq/69-arm-smmu]\n  278 root      0:00 [irq/70-arm-smmu]\n  279 root      0:00 [cvp-dsp-thread]\n  280 root      0:00 [irq/71-arm-smmu]\n  281 root      0:00 [irq/72-arm-smmu]\n  282 root      0:00 [irq/73-arm-smmu]\n  283 root      0:00 [mem_buf_rcvr]\n  284 root      0:00 [irq/74-arm-smmu]\n  285 root      0:00 [irq/75-arm-smmu]\n  286 root      0:00 [irq/76-arm-smmu]\n  287 root      0:00 [irq/77-arm-smmu]\n  288 root      0:00 [irq/78-arm-smmu]\n  289 root      0:00 [irq/79-arm-smmu]\n  290 root      0:00 [irq/80-arm-smmu]\n  291 root      0:00 [irq/81-arm-smmu]\n  292 root      0:00 [irq/82-arm-smmu]\n  293 root      0:00 [irq/83-arm-smmu]\n  294 root      0:00 [irq/84-arm-smmu]\n  295 root      0:00 [irq/85-arm-smmu]\n  296 root      0:00 [irq/86-arm-smmu]\n  297 root      0:00 [irq/87-arm-smmu]\n  298 root      0:00 [irq/88-arm-smmu]\n  299 root      0:00 [irq/89-arm-smmu]\n  300 root      0:00 [irq/90-arm-smmu]\n  301 root      0:00 [irq/91-arm-smmu]\n  302 root      0:00 [irq/92-arm-smmu]\n  303 root      0:00 [irq/316-qcom,te]\n  304 root      0:00 [irq/324-qcom,te]\n  305 root      0:00 [irq/331-qcom,te]\n  306 root      0:00 [irq/332-qcom,te]\n  307 root      0:00 [irq/314-thresho]\n  308 root      0:00 [irq/93-arm-smmu]\n  309 root      0:00 [irq/94-arm-smmu]\n  310 root      0:00 [irq/95-arm-smmu]\n  311 root      0:00 [irq/63-arm-smmu]\n  332 root      0:00 [uaudio_svc]\n  333 root      0:00 [irq/96-arm-smmu]\n  334 root      0:00 [irq/97-arm-smmu]\n  335 root      0:00 [irq/98-arm-smmu]\n  336 root      0:00 [irq/99-arm-smmu]\n  337 root      0:00 [irq/100-arm-smm]\n  338 root      0:00 [irq/61-arm-smmu]\n  339 root      0:00 [irq/101-arm-smm]\n  340 root      0:00 [irq/102-arm-smm]\n  341 root      0:00 [irq/103-arm-smm]\n  342 root      0:00 [irq/104-arm-smm]\n  343 root      0:00 [irq/57-arm-smmu]\n  344 root      0:00 [scsi_eh_0]\n  345 root      0:00 [scsi_tmf_0]\n  346 root      0:00 [ufs_eh_wq_0]\n  347 root      0:00 [ufs_clk_gating_]\n  348 root      0:00 [irq/201-int_glo]\n  349 root      0:00 [irq/238-int_glo]\n  350 root      0:00 [irq/59-arm-smmu]\n  351 root      0:00 [irq/20-8804000.]\n  352 root      0:00 [sdhci_msm_gener]\n  353 root      0:00 [sdhci]\n  354 root      0:00 [irq/19-mmc1]\n  355 root      0:00 [dsi_dma_cmd_wor]\n  356 root      0:00 [irq/365-8804000]\n  357 root      0:00 [fmradio]\n  358 root      0:00 [fmradioscan]\n  359 root      0:00 [fmradiords]\n  360 root      0:00 [irq/105-arm-smm]\n  361 root      0:00 [irq/106-arm-smm]\n  362 root      0:00 [irq/107-arm-smm]\n  363 root      0:00 [irq/108-arm-smm]\n  366 root      0:00 [drm_dp]\n  367 root      0:00 [dsi_dma_cmd_wor]\n  368 root      0:00 [sdm_dp_audio_no]\n  369 root      0:00 [hdcp_1x_1]\n  370 root      0:00 [hdcp_2x]\n  371 root      0:00 [dp_hdcp2p2]\n  372 root      0:00 [crtc_commit:141]\n  373 root      0:00 [crtc_event:141]\n  374 root      0:00 [crtc_commit:201]\n  375 root      0:00 [crtc_event:201]\n  377 root      0:00 [crtc_commit:210]\n  378 root      0:00 [crtc_event:210]\n  379 root      0:00 [crtc_commit:219]\n  380 root      0:00 [crtc_event:219]\n  381 root      0:00 [crtc_commit:228]\n  382 root      0:00 [crtc_event:228]\n  383 root      0:00 [pp_event]\n  384 root      0:00 [cam-cpas]\n  385 root      0:00 [qcom,cam_virtua]\n  386 root      0:00 [qcom,cam-cpas-c]\n  387 root      0:00 [qcom,cam-cpas-c]\n  388 root      0:00 [qcom,cam-cpas-c]\n  389 root      0:00 [qcom,cam-cpas-c]\n  390 root      0:00 [qcom,cam-ife-cd]\n  391 root      0:00 [qcom,cam-ife-cd]\n  392 root      0:00 [qcom,cam-ife-cd]\n  393 root      0:00 [qcom,cam-ife-cd]\n  394 root      0:00 [qcom,cam-ife-cd]\n  395 root      0:00 [qcom,cam-ife-cd]\n  396 root      0:00 [qcom,cam-ife-cd]\n  397 root      0:00 [qcom,cam-ife-cd]\n  398 root      0:00 [qcom,cam-ife-cd]\n  399 root      0:00 [qcom,cam-ife-cd]\n  400 root      0:00 [qcom,cam-ife-cd]\n  401 root      0:00 [qcom,cam-ife-cd]\n  402 root      0:00 [cam_cci_wq]\n  403 root      0:00 [cam_cci_wq]\n  404 root      0:00 [cam_cci_wq]\n  405 root      0:00 [cam_cci_wq]\n  406 root      0:00 [irq/329-ecm-sda]\n  407 root      0:00 [irq/330-ecm-sda]\n  408 root      0:00 [irq/109-arm-smm]\n  409 root      0:00 [sb-1]\n  410 root      0:00 [ngd_rx_thread1]\n  411 root      0:00 [ngd_notify_sl1]\n  412 root      0:00 [fts_wq]\n  414 root      0:00 [irq/110-arm-smm]\n  416 root      0:00 [irq/111-arm-smm]\n  417 root      0:00 [mhi_w]\n  422 root      0:00 [irq/372-fts_ts]\n  423 root      0:00 [irq/25-90b6400.]\n  424 root      0:00 [irq/26-9091000.]\n  425 root      0:00 [irq/27-90b9100.]\n  434 root      0:00 [kworker/3:2-eve]\n  440 root      0:00 qrtr-ns\n  456 root      0:00 [kworker/u17:2-q]\n  457 root      0:00 [glink_adsp]\n  458 root      0:00 [qrtr_rx]\n  466 root      0:00 [kworker/1:2-eve]\n  467 root      0:00 [kworker/2:2]\n  471 root      0:00 [kworker/6:2]\n  472 root      0:00 [kworker/7:2-eve]\n  481 root      0:01 [kworker/u16:0-m]\n  508 root      0:01 [kworker/u16:2+t]\n  523 root      0:01 [kworker/u16:1-r]\n  533 root      0:00 [kworker/1:0]\n  542 root      0:01 [kworker/0:0-eve]\n  578 root      0:00 [kworker/0:2-eve]\n  589 root      0:00 [kworker/4:2]\n  594 root      0:00 [kworker/u16:4-m]\n  613 root      0:00 [kworker/0:1-eve]\n  614 root      0:00 [kworker/0:3-eve]\n  624 root      0:00 [kworker/u16:3-d]\n  652 root      0:00 [kworker/7:0]\n  696 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm8350/fifth/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\n1,300000,1113.027993,3.7100933099999995,-1.8096463264733864,-0.48779248864463265,-615.0156203380091,269.551282761\n1,403200,1496.229502,3.710886661706349,0.8923352525940298,0.17892752439492893,1676.656517852669,200.516032371\n1,499200,1852.583737,3.7111052423878204,0.3999045528491662,0.0647631368529754,4632.264812636499,161.946485459\n1,595200,2209.147343,3.7116050789650537,1.845009624007613,0.25056481216454407,1197.2950128487803,135.806777864\n1,691200,2565.549797,3.711732923900463,5.121166280895779,0.5988735352521328,500.9404863310523,116.940849487\n1,806400,2993.354752,3.711997460317461,18.22731574284705,1.8268918473331097,164.21333339351145,100.228243868\n1,902400,3349.709692,3.7120009884751775,19.40475889809104,1.7379931606272003,172.6128771943712,89.565305591\n1,998400,3705.991353,3.711930441706731,6.096984128088709,0.4935736454708094,607.8120311991869,80.953736323\n1,1094400,4062.39844,3.7119868786549706,35.21114800977788,2.600444131940115,115.36490875355928,73.85286419\n1,1209600,4489.942529,3.711923387070106,56.35490043226166,3.7655906060397717,79.66877746051809,66.819222058\n1,1305600,4846.761555,3.712286730238971,50.814639692400085,3.145420230304573,95.37676305049735,61.89988258\n1,1401600,5202.913632,3.7121244520547947,55.11650658208942,3.178158731642355,94.3942783641178,57.66255753\n1,1497600,5559.673832,3.7123890438034195,70.03885907762273,3.7795146662055386,79.37527076755238,53.963110136\n1,1612800,5987.426405,3.712441967385913,67.02490357661236,3.358529828063524,89.32479845592896,50.10868571\n1,1708800,6343.835906,3.712450787687266,73.48079478423922,3.4751229553371745,86.32788072699789,47.292941857\n1,1804800,6700.017867,3.7123325947473402,72.13551672645465,3.2301367205045093,92.87532570854881,44.778728525\n4,710400,6459.391956,9.092612550675677,103.77727173913344,4.821238064552599,62.22468087724255,46.457552639\n4,844800,7683.245403,9.09475071377841,101.36708699584221,3.9594036696836397,75.7689856927294,39.060051808\n4,960000,8734.387283,9.098320086458333,120.3731782421213,4.136206855831504,72.53022163943268,34.36153233\n4,1075200,9778.994719,9.095047171688988,158.48289692183343,4.864094519283979,61.676433056683614,30.691605301\n4,1209600,11004.328369,9.097493691302912,166.83550397915388,4.550563930430704,65.92589502892787,27.275752594\n4,1324800,12053.517618,9.098367767210146,192.8845876160001,4.803355185601097,62.45634320345554,24.902742334\n4,1440000,13090.71868,9.090776861111111,249.5883622122728,5.723087194066426,52.41926076384676,22.930104366\n4,1555200,14149.608527,9.098256511702674,283.0352332883001,6.004582934225714,49.96183803041847,21.214966294\n4,1670400,15197.568389,9.098161152418582,301.12465236857906,5.9480864294656985,50.436388838241584,19.752904263\n4,1766400,16062.53681,9.09337455276268,348.9762167655001,6.5224194531906186,45.9952019573422,18.690154629\n4,1881600,17126.220243,9.101945282206634,445.3624456253531,7.807156487888137,38.42628240709839,17.529894055\n4,1996800,18154.311649,9.091702548577723,478.69119476600014,7.917266789102272,37.89186445162303,16.539403431\n4,2112000,19218.449712,9.099644750000001,532.0173374024001,8.311987359866565,36.09245142124662,15.623527234\n4,2227200,20264.793299,9.098775726921696,598.6691158047144,8.87080624864661,33.81879747917727,14.817544474\n4,2342400,21308.331558,9.096794551741803,700.6021975742309,9.873369580229378,30.384763536121014,14.092689995\n4,2419200,22000.586682,9.094157854662699,826.3897580358462,11.280230006435728,26.59520238761448,13.65001187\n7,844800,7843.547375,9.284502101089016,176.56306888586496,6.755572023357124,44.40778648540225,38.261523579\n7,960000,8913.450397,9.284844163541667,198.37067830657585,6.679352682576007,44.91453202981637,33.671068424\n7,1075200,9559.924795,8.89129910249256,247.6147127824001,7.774075486404238,38.58979765821129,31.395854467\n7,1190400,11053.795136,9.285782204301075,286.3415625358077,7.775397559943127,38.583236122294736,27.154275094\n7,1305600,12119.743061,9.282891437653186,321.9004118101251,7.9721771123071,37.63087495094321,24.765973636\n7,1420800,9841.551028,6.926767333896397,252.1966087274484,7.691391725078038,39.004644506902444,30.497601708\n7,1555200,8499.546691,5.465243499871399,259.4468055044118,9.160854330880902,32.74803737340425,35.309181445\n7,1670400,13968.431345,8.36232719408525,424.08413033942867,9.113677579108503,32.91755686943513,21.490258482\n7,1785600,13356.484573,7.4801100879256275,419.96294690095465,9.43832152440051,31.785312592331394,22.474176815\n7,1900800,12891.027845,6.781895962226431,459.78137849695463,10.706175490186538,28.021210774565116,23.285361241\n7,2035200,18894.067263,9.283641540389151,650.6243207289334,10.338719638169147,29.017132730095593,15.890459838\n7,2150400,19957.424162,9.280796206287201,731.8481097600002,11.01124809937819,27.244867910744933,15.045810671\n7,2265600,21023.125438,9.27927499911723,827.8829453624286,11.825357960782899,25.369210893649637,14.283852599\n7,2380800,22092.937624,9.279627698252687,995.2714419888463,13.527849696170192,22.17647347788996,13.592120828\n7,2496000,23173.180905,9.284126965144232,1043.1635239931668,13.518413693183463,22.19195290282263,12.959055203\n7,2592000,24059.667977,9.282279312114198,1189.8690773951666,14.853751258802497,20.196918258087614,12.483517339\n7,2688000,24948.024948,9.28125928125,1315.9515792119998,15.842374097191838,18.93655573082174,12.038721141\n7,2764800,25669.54736,9.284413831018519,1434.865033236273,16.78774152356091,17.870182214740574,11.699874995\n7,2841600,26373.626374,9.281259281390765,1599.468177318091,18.21524642970879,16.46971953729402,11.388314371\n"
  },
  {
    "path": "results/sm8350/fifth/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 2924.1397161759996, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1382.861030364, 1359.49957584, 1367.724263616, 1169.829932645, 1062.258627485, 1118.487625915, 1039.135733222, 1134.767118329, 1341.7459952400002, 1357.0518676810002, 1387.4834327199999, 1302.8149606260001, 1136.548582304, 1074.379017288, 1032.8721693300001, 1285.0473647520002, 1255.638943197, 1382.59249744, 1394.34322257, 1377.232776029, 1291.441592925, 1061.8971585220002, 1097.0669865989998, 1094.9977657919999, 1278.62291073, 1328.86858202, 1370.23374074, 1359.9942041200002, 1390.405073466], \"power_mean\": 1249.5118190174828, \"energy_millijoules\": 6247.559095087414, \"energy_joules\": 6.247559095087414}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 269.551282761, \"elapsed_ns\": 269551282761, \"power_samples\": [117.82707285900028, -244.61474539000005, 118.1014187420003, 47.78023273099984, 20.196119555999758, 130.73156250600005, -134.96149696499992, 125.56746915500025, -78.37410085999977, 122.78192930099999, 69.64156090500023, -22.546967390999953, 123.12578555500022, -255.96226614900002, 122.042296932, -212.96321967699987, 93.20324966700014, 36.58771219500022, 40.63342918900025, 25.530377690999785, -168.04383263, 123.05687294500035, -224.26473210900008, 133.70538991500007, -3.917814084999918, 20.969835975000024, 94.82812777900017, -174.25829237900007, 115.72817643000008, -203.4544791799999, 107.78709217899996, 21.54428304299995, 78.34793175000004, -1.660333405000074, -153.5575326119997, 120.47807376300011, -264.6086749409999, 101.68185001500001, -155.77681675899976, 69.53794972500009, -29.939714924999862, -68.33021353499976, 137.43647329500004, -178.18984644099987, 130.91448262099993, -231.95136610899976, 129.55610974500019, -116.87061636299973, -1.2557844749997003, 65.51218857899994, -224.576002518, 106.49870486400005, -235.71773006499984, 112.19373168200013, -158.38306242700014, 21.67836046599996, 57.921844829000065, 6.004308180999942, 123.79591178400005, -176.07573834299978, 109.81838459100027, -173.4732941169998, 19.111551789000032, 29.77164248700001, 22.834251368999958, 110.2275887190001, -255.34714982599985, 116.79906819600023, -212.36848778600006, 39.98517359200014, 46.67344833800007, 37.54586472200026, 118.77332742300018, -184.6708794809997, 102.15592766999998, -201.544079, 130.01498160100004, 4.973750610000025, 123.63812555499999, 217.01259159899996, -100.93868846999976, 219.01073500300004, -164.14616072500007, 109.3412133390002, 24.57007339500001, 82.36271808300012, 91.77735847500003, -117.6133813529998, 127.78342292699995, -251.88647776800008, 108.4623266120002, -97.79935316299975, 93.14264756500006, 112.26216829700002, -4.388893104999852, 49.681341890999875, -178.73174326899994, 127.92148836299998, -164.20114799499993, 217.64452711000035, 2.0891358450001007, 163.54078569800026, -12.367225128999962, -100.99647233999985, 84.18465337700013, -192.42021631800003, 114.017802975, -254.1738207059998, 130.74974602800012, -84.55011204599987, -21.837298721000025, 78.08119358099998, -249.8026120039999, 171.57050551500015, -193.74612074100014, 102.76439029499988, -191.09407460499983, 46.52538309900001, 13.136780554000097, -164.42053310300003, 144.65598351900007, -159.59575480099988, 119.91208686300001, -194.808835629, 61.22667986300007, -0.47565500499990776, 81.76101845100015, 92.39516687700007, -158.43209738099972, 113.74393228200006, -244.92260833699993, 86.70721053600028, -12.865197325000054, 70.7211370030002, 126.49467695700014, -79.33791188099963, 113.67572828400012, -185.3172028109998, 94.973428926, -91.11964947299975, 124.44382183400012, 44.47781147500018, -46.47335523299989, 123.43173889100012, -225.77013929700001, 114.48374352300016, -127.83049741799982, 109.74156922300017, 40.94555485899991, 81.35965627500013, 106.62981575500021, -185.4788528429997, 129.04615145100001, -245.02472749699996, 102.42498843500016, -37.629591224999785, 93.61992335500031, 102.96810117500013, -3.980999675000021, 68.74306732500008, -205.20098922499983, 127.16159607899999, -236.84809242499978, 114.55200669100032, -168.24567991499998, 34.771275935000176, -18.242460123999763, -66.22259302499992, 80.67574903900027, -189.46101506299988, 121.86823043400022, -238.06655979999982, 128.769545999, -63.84140174900017, 89.35456209900008, 75.66290423300006, -100.88006628499988, 109.80994616800012, -163.86096314399992, 106.82728510100014, -252.74686078499985, 96.87350227500019, -29.523201554999787, 50.751286832999995, 120.71843837899996, -66.52101699000013, 124.0299842500001, -191.9512716129998, 145.48795995900014, -72.31463252499998, 119.61795700700009, 56.08397947900016, -20.266906100999677, 108.11360095500027, -240.8107544699999, 122.46706709099999, -128.39734894499998, 108.78604524800016, 65.7758498200003, 10.077565911000193, 103.37213332500028, -137.66138167500003, 203.5493995500001, -99.54209613699982, 158.47070305500006, 114.20963523500018, 74.33108557500009, 123.82306545799997, -195.87690353699986, 115.01670039900023, -84.74175666899987, 118.26278946000025, 82.57812365000018, -26.54583842099987, 116.44060154700014, -247.15978139899994, 128.769545999, -213.99633427199979, 106.21401326900013, 43.502029235000464, 71.96240479499988, 126.332848539, -69.25506969499975, 115.29104628200025, -219.134079553, 139.46357284200008, -198.15290190300016, 117.182328267, -183.6895869409998, 48.81420868500004, -23.673816607999925, -63.28166957999997, 83.53242070300007, -180.30260392499986, 130.86335281499987, -216.85564492499975, 129.36446480100017, -172.88381387999993, 68.17249897500005, -37.205144864999966, 122.99539028999993, 43.37203632700016, 25.46935911399987, 106.41843721300006, -218.17786888199998, 129.15665482500026, -219.2909174250001, 115.54882208700019, -43.66499658899966, 117.98773001300015, 67.55108399999995, 33.931227385000284, 104.99619889900009, -144.089330647, 120.03072587100019, -248.68271708099996, 106.07784732000005, -93.86102142000004, 111.82824369900004, -215.32326421099992, 71.56353746700006, 6.2933424190002825, -116.13305870099998, 94.23052547700013], \"power_mean\": -1.8096463264733864, \"energy_millijoules\": -487.79248864463267, \"energy_joules\": -0.48779248864463265, \"coremark_score\": 1113.027993, \"coremarks_per_mhz\": 3.7100933099999995, \"ulpmark_cm_score\": -615.0156203380091}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1384.160823432, 1266.213529566, 1340.11728081, 1355.237062748], \"power_mean\": 1336.432174139, \"energy_millijoules\": 6682.160870694999, \"energy_joules\": 6.682160870694999}}, \"403200\": {\"active\": {\"elapsed_sec\": 200.516032371, \"elapsed_ns\": 200516032371, \"power_samples\": [-211.13215665300004, 135.66623064500004, -242.69763968199982, 120.42264627300005, -80.45969278499979, 117.57531738900002, -177.75882609899986, 34.70002873900012, 35.34676432500032, -174.53729522499998, 143.78026657500004, -241.52760659499995, 120.42264627300005, -158.98082687199985, 110.3372116410003, -185.55455546099984, 68.66457176500012, -2.4868745250000757, 55.20460895499991, 104.79195307500004, -25.15633128500008, 146.2857609150003, -127.43280348500002, 117.6441705240004, -179.68151236399967, 126.30647485300005, -208.64109091499995, 115.13712311100016, -7.736549732999947, 97.68335458499996, -130.40828494499988, 51.484385900000234, -30.814441322999983, -9.579446811000025, 54.70574907800005, -148.18735082499984, 122.71973477600022, 13.612227746999906, 121.43336373099987, -194.507215848, 120.81349572300019, -239.55474149999986, 180.32605631700017, -116.41960525499985, 114.58830863699995, 101.74102132500025, 107.07977748200005, 189.4242338790002, -13.416464201999815, 126.23756042699983, -205.46590810499993, 136.85221911500003, -176.08479416499995, 136.64316113100017, -164.84982851699988, 36.61570947200016, 4.506634376999955, -83.89630363900005, 118.93024449900008, -199.3781889989998, 133.26672661500015, -200.70157694399995, 130.4164265249999, -178.8988293569996, 60.892916883, -23.877516744999866, 115.53445551900018, 89.4988735710001, -53.703940700999965, 120.7444641630002, -241.0791036149999, 133.78827757000022, -154.38624575699987, 115.53445551900018, 64.05714492000016, 31.487031715000057, 112.3605478750003, -199.75130479699988, 128.2563821550002, -203.24495076499988, 134.93492163500014, 30.915985950000277, 21.624308406000182, 33.220340450000094, -165.6741182369999, 106.20456560100024, -191.1792081589997, 118.17361938100021, 34.57074809000028, 60.563017341000204, 19.955689444999962, -147.4728533189998, 140.29339899600018, -248.58516894900004, 115.53445551900018, -208.21664049499987, 116.5446389220001, -109.63323929799981, 9.39060108300032, 90.37888952400044, -184.2012504899999, 137.37157008300005, -214.56536896499983, 133.44056142500017, -95.08708463699986, 16.62785599499989, 32.00353532500026, 51.586666281000134, 107.21653137200019, -147.7522637249997, 122.62968447600042, -225.466316517, 118.77049955999996, -90.04186790099993, 115.12239913500025, 81.85767850800016, 27.451649075000205, 125.4077454830001, -210.9699349199998, 136.81372656600024, -213.34927601499976, 115.05360547500027, 21.752401826999858, 27.322962039999993, 194.3533826910002, -42.26848369800018, 205.2339045650001, -95.7875636220001, 248.73620180200032, -21.21920532499962, 208.36930559700022, -16.475735617000055, 62.20597067000017, 109.17488568300018, -230.74925499300002, 111.81268317100012, -174.51963892499998, 119.71111481100002, -232.97378028899993, 75.71821000099999, 3.3691717440003686, -92.19540065899992, 195.56953481100004, -11.080491344999928, 192.70273429800022, -141.0705396249998, 165.36966077000034, -111.36826306099988, 42.68108139300011, 48.266208645000006, 9.716926252999883, 132.01594543500028, -132.38945977699973, 140.3215653870002, -193.146545199, 149.56251851699994, -92.0196709710001, 122.94793835100018, 82.13553116300022, 35.38445667400015, 129.5841157750001, -122.94684013499977, 113.83364467500019, -199.33492942599992, 118.219783989, -89.64699336599983, 114.16105183500008, -87.15273810899998, -45.18676344099981, 133.16217409000024, -234.6026130759999, 127.88277530999994, 12.78453318700008, -1.417704504999847, 87.1336942349999, -232.32696680999993, 108.35468891300025, -42.14656370700004, 72.68308416600007, 1.7111191770002279, -166.71803035499988, 139.1058286770001, -145.9358082639999, 128.89010762500016, -85.93700139899988, -78.07494063599984, 110.04896311200037, -213.08169484099972, 97.20422655000016, -39.71110426500013, 71.4680004610002, 4.01595530700024, -125.54816236299985, 130.45290799000009, -206.8436135249999, 127.60569450000003, -186.06530905299974], \"power_mean\": 0.8923352525940298, \"energy_millijoules\": 178.92752439492892, \"energy_joules\": 0.17892752439492893, \"coremark_score\": 1496.229502, \"coremarks_per_mhz\": 3.710886661706349, \"ulpmark_cm_score\": 1676.656517852669}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1189.227489345, 1379.9213619839998, 1356.556454655, 1274.087461386], \"power_mean\": 1299.9481918425, \"energy_millijoules\": 6499.7409592125, \"energy_joules\": 6.4997409592125}}, \"499200\": {\"active\": {\"elapsed_sec\": 161.946485459, \"elapsed_ns\": 161946485459, \"power_samples\": [112.53016623900021, -53.273613150999836, -73.4488323449998, 105.9878502680001, -238.7674808549998, 111.65834052700029, -55.88979197699996, 92.88201147500013, -73.09166962499967, -29.8136996369999, 94.84119646999989, -216.93665559300007, 142.33677025300017, -184.12147658100025, 117.46250586600013, -188.81897430899994, 85.58603666699992, -75.6407893449998, 5.374121488000128, 59.50720318500021, -5.5658582050000405, 122.8095179909999, -209.85553523499993, 142.64106736300005, -123.17500964099986, 129.20283846999996, 65.58749677500009, 21.108503530999997, 118.81512056300016, -234.1624506510002, 126.84318805500016, -137.76255734499978, 108.406793655, 94.50268490500025, -100.54040086499981, 128.19645592500024, -178.152301589, 119.3406516949999, 26.421491165000134, 74.24938979700005, 108.95418347400027, -211.17562222499987, 128.99449355000002, -182.95697991299994, 127.84963007499982, 70.05330497199998, -32.67377265899995, 103.95429324300017, -214.9280773859998, 126.84318805500016, -74.78251211999964, 138.57371765100015, 78.62869507900041, -37.53500222999992, 98.0120666150001, -234.31750615500005, 142.7112892030002, -153.8987069729999, 115.42241595100018, -116.33673700999998, 25.45584217999999, 57.896282528000256, -176.04620351999984, 125.55520830599994, -152.85109470499992, 130.0006987950003, -158.98269320999975, 19.188886962000197, 45.67778227100007, -159.59165141699987, 161.80242435000014, -78.1653273989998, 157.51782680099996, -243.12943906499981, 88.55903032300034, 8.890774992999923, 60.48726577000025, 128.19645592500024, -127.90105949699978, 143.154304701, -164.00528779099977, 55.495807611000146, 21.236715597000057, 61.63492743500001, 110.90432957000007, -183.76940766899997, 130.93650487000014, -222.42713774899994, 106.50880710299998, 48.86385369499999, 25.00494133500024, 135.07033122000007, -178.85982745299998, 123.51048707099994, -167.81670692700004, 122.29664990099991, 26.92758747500011, 10.492179123000142, 121.63542939900003, -245.7661392839998, 121.35894360299994, -170.19009139299988, 114.87182186700011, 62.164260725000304, 22.573525491000055, 57.03924755800017, -192.43552065499966, 139.79195138700015, -171.73679242499998, 119.73067415100013, 7.295507069000223, 44.24065913300001, 14.520675231000041, -102.74352427899976, 117.85080277099996, -187.63099980499987, 129.30550297500008, -231.29250630499973, 95.03367512999989, 27.884110050000118, -135.5274025189999, 143.2242255990002, -70.9979898749998, 114.80326265500025, -208.27412962499966, 69.67023343100004, -6.194505564999872, -123.3846359669999, 117.57503053899995, -189.11422059899996, 131.59356849500045, -217.98690523999994, 52.54212573300015, 52.182711817999916, 46.405756010999994, 127.22512967500006, -196.18357861299978, 158.0932632030001, -124.37392601700003, 5.193148959000155, 64.06272011500005, -37.24122017499985, 129.23623333500018, -220.83717798099974, 135.16806564100034, -84.2381954729999, 102.04490754300014, 118.71989531899999, -60.54891676899979, 109.73897587700026, -229.1770815809998, 156.73833366200006, -63.83207686899982, 81.40985543900024, 112.37594455499993, -123.72754091099978, 148.382862681, -175.86903254499998, 134.81916146300023], \"power_mean\": 0.3999045528491662, \"energy_millijoules\": 64.76313685297539, \"energy_joules\": 0.0647631368529754, \"coremark_score\": 1852.583737, \"coremarks_per_mhz\": 3.7111052423878204, \"ulpmark_cm_score\": 4632.264812636499}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1134.3384048920002, 1371.690968137, 1067.525196048, 1389.6573704199998], \"power_mean\": 1240.80298487425, \"energy_millijoules\": 6204.014924371249, \"energy_joules\": 6.20401492437125}}, \"595200\": {\"active\": {\"elapsed_sec\": 135.806777864, \"elapsed_ns\": 135806777864, \"power_samples\": [130.72780371000022, -82.69391680499984, 131.24555558500015, -186.90367569299997, 71.50073373299983, 11.518700945000319, 65.36583295499986, 116.95480852300011, -200.30885036099994, 124.90219780499979, -168.58594990200004, 118.69554129000016, 91.46102267500032, -12.55725316600001, 144.73897620900016, -191.80985390799992, 134.26084306100006, -56.84517522899978, 108.77929355200013, 95.03367512999989, -102.22868488499967, 146.60648950500013, -228.327891765, 124.90219780499979, 8.769500648999838, 85.72701955400021, 142.3826519040001, -134.0070537329998, 120.32292044699989, -105.69684108499996, 131.76609610700007, 86.46861699300007, -56.236501551999936, 129.40626794000013, -233.28720328500003, 132.1144067549999, -8.413078574999872, 38.21051128400018, 49.914484694000066, -202.0019937579998, 133.46666546400024, -131.23724956499973, 142.61304673900008, 87.68191980300026, -51.507228708999946, 128.74956055500024, -227.37542003099998, 142.89368845499985, -40.21899772500001, 57.48997315500014, 32.85702563300015, -195.93566001599993, 126.04599307500007, -185.96139970500008, 125.5601517250002, -183.3148345239997, 39.16252257300016, 66.71156229899998, -219.08949201299993, 151.17947338800013, -122.97199983700011, 112.07765937900012, -42.76724422500001, -66.54546931999994, 107.90901520300008, -146.30856033299983, 131.55703812299998, -232.43332530899988, 121.71112949700023, 47.16059191500017, 18.35013134499991, 84.71647696500031, -182.91631575899987, 142.4727258810001, 19.055792098999973, 69.41751045900014, 25.252120275000152, -178.00924960499992, 152.53333481900017, -210.6520692299996, 121.57282677100011, -130.25187456799995, 10.946319932999813, 61.45811985, -196.31099588999996, 130.3406504850002, -132.9078950669998, 136.0568312790001, -125.74382288399988, 4.9459481950002555, 108.77929355200013, -223.09671746699996, 124.13969136000014, -179.49371857499978, 114.15821243999994, -123.4868916129999, 47.19291864300021, 44.342365611000105, 14.326092661000075, 132.76945063800008, -224.517861779, 135.63764954700036, -192.83232502199985, 132.0023710170001, 32.27402843200002, 76.0953949310001, 117.13399033099995, -167.48101214299982, 118.80313587900014, -222.9921297599999, 129.64426699499995, 7.560820443000011, 51.91263046800009, 131.62648546700007, -104.48804814799973, 119.28654236700004, -187.98481240199976, 155.03772065300018, -50.77681587999973, 97.78079548300002, 12.158257563000006, -121.52119410899991, 127.77657205500032, -231.79203477600004, 111.39054040100018, -45.92859078000015, 105.05389917599996, -54.538047747000064, -29.566109696999774, 97.24926629400011, -194.37076296399982, 138.2752688370001, -183.51323451899975], \"power_mean\": 1.845009624007613, \"energy_millijoules\": 250.56481216454407, \"energy_joules\": 0.25056481216454407, \"coremark_score\": 2209.147343, \"coremarks_per_mhz\": 3.7116050789650537, \"ulpmark_cm_score\": 1197.2950128487803}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1369.4802395909999, 1013.6054257249999, 1351.0032715700002, 1248.255618225], \"power_mean\": 1245.58613877775, \"energy_millijoules\": 6227.930693888749, \"energy_joules\": 6.22793069388875}}, \"691200\": {\"active\": {\"elapsed_sec\": 116.940849487, \"elapsed_ns\": 116940849487, \"power_samples\": [50.174922895000236, 88.82423221100021, -209.0761249499999, 137.06333120700015, -181.036077493, 124.24199962500006, -167.6462263269998, 42.96912135000002, 46.112379033000025, -188.52524189999963, 134.21629769300034, -218.87590960499983, 137.36459732000003, -48.9007446979997, -55.14411574799965, 129.57487901500008, -51.74900356599983, 127.94571718500015, -193.3703803999997, 92.38809776500011, -7.496426330000077, 80.33705145800013, 119.73829064300025, -125.67017962199975, 164.09759790500016, -212.86877657499986, 126.52579087499998, 33.66016718700007, 59.53760775000001, 128.1544183450003, -158.5009078889998, 138.29559585900006, -197.16914266799995, 149.27264934300024, 50.63505280300001, 10.817115579000074, 100.93777456600014, -216.8221445329998, 134.93829493500016, -79.50162152500002, 139.225759401, -48.83974694299968, -83.37598559699995, 151.11953736700002, -193.63940808899997, 150.34200324300014, -136.40823162499987, 19.61753928300027, 85.72523530700028, -227.7234020609999, 130.16343755499997, -212.08098255499976, 119.912127457, -74.895100125, -14.685670768999898, 123.03065583000011, -83.79069742899992, 144.42472745100008, -195.06951607399992, 95.68521313799988, 34.482186125000226, 62.842384319000075, 123.03065583000011, -192.96734593499968, 131.74823095900024, -155.03511898099987, 131.67866527500018, 86.4638706899998, -47.636724330000106, 141.57710174300018, -201.3372290970001, 135.17414819700025, -21.642237128999795, 107.31660497700045, 122.82266714999992, -99.71144693999986, 145.28318282900022, -216.9277151929998, 138.085290451, -14.372696561999874, 70.91976900700001, 139.57680555900015, -113.14922788499985, 122.61503461500001, -175.84974769500013, 136.52444797499993, 42.64219043100002, 57.7310519250002, 46.27515401100027, -185.86373261599988, 146.63515033900012, -209.92476779999993, 132.74951017600029, -95.72844924900005, -0.7201151529995968, 83.56977114200026, -166.65394538099986, 143.79113767500007, -234.35183013099982, 142.22910716599995, -65.55998379699986, -37.04287061299988, 128.60022826500017, -47.88056431199993, 129.25775827500001, -190.76238130899992, 118.9432973070002, -88.81393220999985, 127.62557751500003, 95.2770777300002, -49.15177827699995, 137.6646796350003, -221.18972152799984, 126.34579408000036, -52.47830042999976], \"power_mean\": 5.121166280895779, \"energy_millijoules\": 598.8735352521328, \"energy_joules\": 0.5988735352521328, \"coremark_score\": 2565.549797, \"coremarks_per_mhz\": 3.711732923900463, \"ulpmark_cm_score\": 500.9404863310523}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1034.086702564, 1371.373481808, 1121.537061762, 1394.2089705439998], \"power_mean\": 1230.3015541695, \"energy_millijoules\": 6151.5077708475, \"energy_joules\": 6.1515077708475}}, \"806400\": {\"active\": {\"elapsed_sec\": 100.228243868, \"elapsed_ns\": 100228243868, \"power_samples\": [-218.87494561899985, 150.27964024600033, -81.72564597099995, 127.20781895500022, 128.11272405499994, -44.61326965999979, 146.7873053190001, -187.45302580899988, 153.7672963550001, -3.2666222519999337, 59.29017257500004, 148.42501071900006, -203.24583134099998, 147.78928175099986, -188.612579353, 127.06868532500016, 79.32829949799998, 22.917043575000207, 146.9283384360001, -186.51433133099977, 155.40653760500004, -40.79976217499984, 102.79578433500023, 132.60954268600017, -154.9918130049998, 140.874182174, -176.6701910249999, 141.45549321300018, 142.36966570300024, -25.679656196999986, 119.08160003300009, -155.10328640099988, 157.18697287500004, 8.713598376999926, 75.96814326300023, 52.42413118200011, -175.8986100499999, 162.3855783140002, -214.45470736499988, 123.092695585, -142.9484035349999, 52.64407211699995, 65.5420403290002, -168.635439034, 142.805674125, -215.82226295999976, 144.80181321099985, -137.01046428899986, 32.20789093299982, 94.59708500400006, 33.225906063000366, 131.98112454500006, -203.77972811699988, 137.4020493810001, -184.14977547599983, 150.42722066100032, 61.97917108899992, 24.754776090000178, 143.87450067299983, -173.64091133099987, 132.631538223, -183.2668386129999, 153.12889558700022, 4.889173065000023, 99.48873732499987, 21.449869315000115, -108.31371341099975, 142.805674125, -212.3008078649998, 138.47087601300018, -190.14680810699997, 121.39752862500018, -53.51136692099976, -5.6133194909998565, 99.02672661600013, 0.4987503629999992, 155.90629512000032, -182.21721877499976, 178.03183048300025, -109.46886324499974, 151.42387249900025, 90.48869101500009, 14.821827575000043, 127.72490504300026, -218.50829745899978, 138.18987357499987, -62.40729521699973, 98.07120264100013, 140.03118412899994, -114.94096384499994, 146.65933882500008, -176.22725604999982, 187.41886317000012, 58.95878823499993, 53.13055459500015, 127.65509972300015, -215.1418806649997, 151.42387249900025], \"power_mean\": 18.22731574284705, \"energy_millijoules\": 1826.8918473331098, \"energy_joules\": 1.8268918473331097, \"coremark_score\": 2993.354752, \"coremarks_per_mhz\": 3.711997460317461, \"ulpmark_cm_score\": 164.21333339351145}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1035.341690688, 1320.864228993, 1271.913395676, 1068.9853784040001], \"power_mean\": 1174.27617344025, \"energy_millijoules\": 5871.38086720125, \"energy_joules\": 5.87138086720125}}, \"902400\": {\"active\": {\"elapsed_sec\": 89.565305591, \"elapsed_ns\": 89565305591, \"power_samples\": [143.09958071000005, -197.00475838299963, 127.81836549900027, 2.789664265000056, 80.8056667220003, 155.26682388000017, -192.54417289299977, 152.13594918700005, -127.89876817499976, 144.88208930400015, 69.44964279300007, 62.46942438400015, 143.09958071000005, -188.80735039299975, 164.72785149100014, -145.171649505, 139.83780537200005, 120.1195266000002, -74.06949286100007, 156.26276387500002, -197.3809250769998, 186.83773627500022, 64.54309080899998, 58.51332757099999, 98.20795653100026, -179.41004212500002, 169.13615149099996, -105.44406080599992, 144.4586274000003, -55.817278075999866, -34.48401782799988, 149.00640833900025, -213.3074774249999, 132.58501479300003, -191.17379078099975, 63.344693491000044, 76.23731765100024, -169.9033567729998, 166.43269119800016, -198.64291978699976, 116.52139969900009, 46.953000037000265, -179.574008885, 153.135248285, -176.99400292500013, 134.37073517100043, -31.82081425199999, -62.46283602900007, 135.2115966910003, -174.68369555899972, 151.7103486750002, -162.5414679749997, 35.352808099000185, 118.3526711070001, -40.89640858200005, 161.31078648100015, -162.65234775699992, 88.38610002000019, 50.644005187000175, 82.47939600300015, 133.86331540300012, -196.814653701, 141.6905366110002, -144.63946551999993, 23.139093780000167, 143.39194399500002, -109.8242498369998, 154.98275267500026, -182.15330236499994, 59.18993466400025, 107.4044735240002, 3.4881819550000728, 139.4157684280001, -185.94332757300003, 106.37379505700028, 4.3158765149999, 61.60466785400013, 133.58302575000016, -211.58181707500012, 148.58652422100022, -28.502740756999856, 89.18622297500019, 149.15292033900005, -166.88813753499994, 147.450034081, -39.68886386699978, 103.6804006650002, 139.34566982600018], \"power_mean\": 19.40475889809104, \"energy_millijoules\": 1737.9931606272003, \"energy_joules\": 1.7379931606272003, \"coremark_score\": 3349.709692, \"coremarks_per_mhz\": 3.7120009884751775, \"ulpmark_cm_score\": 172.6128771943712}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1388.57710197, 1070.568142056, 1279.40295936, 1317.603449033], \"power_mean\": 1264.03791310475, \"energy_millijoules\": 6320.18956552375, \"energy_joules\": 6.3201895655237506}}, \"998400\": {\"active\": {\"elapsed_sec\": 80.953736323, \"elapsed_ns\": 80953736323, \"power_samples\": [60.9290105309999, -141.46469403499987, 157.61177083500024, -131.8598817850002, 145.81843245900018, -11.89949876999981, -98.09730880799998, 148.72803230699992, -211.74114979499996, 151.85773921500027, 20.659376475000272, -129.72720309899978, 173.74087016, -192.4709882039997, 116.62115853299997, 65.36404313100002, -212.00661338500004, 156.68601853500036, -174.24503757899993, 56.042061115000024, 102.88455492600019, -186.43227506200014, 143.25930207600004, -186.21502712000006, 69.32382348100009, 115.829530535, -172.21620908099976, 163.71763437699997, -174.3548487779999, 44.98038731099996, 141.3383660720001, -202.2379109809999, 168.549158239, -130.6526933099999, 25.72887767400016, 118.24798462500007, -180.83071302500002, 159.954263933, -205.75536567299991, 126.79328961100032, 45.63815010900021, -169.85422883699994, 168.62110582900004, -190.05312861699963, 120.8271132750001, 40.67439601800015, -174.84942260999992, 158.96153913200033, -126.2785148009998, 130.41613922700026, 17.60064000500006, -125.47332289699989, 154.1297771750003, -70.97807916499983, 153.3476698750003, 17.471952970000075, -127.77147818000003, 168.40563202099997, -82.8683945849998, 115.85930723399997, 59.99843393099991, -199.26231092099965, 157.32684765900012, -41.879999735999945, 80.79094752900005, 82.67330817700008, -189.55138743099974, 149.93762051500016, -4.582326064999734, 97.6211759790001, 89.71401420000029, -172.76701732799984, 159.45428009500006, -13.094636899999841, 84.00743476999992, 81.53385097800015, -210.28103549700018, 151.07693792500004, 2.6604873950000183], \"power_mean\": 6.096984128088709, \"energy_millijoules\": 493.5736454708094, \"energy_joules\": 0.4935736454708094, \"coremark_score\": 3705.991353, \"coremarks_per_mhz\": 3.711930441706731, \"ulpmark_cm_score\": 607.8120311991869}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1320.0633409039997, 1053.544728288, 1388.420868352, 1029.5856967109999], \"power_mean\": 1197.90365856375, \"energy_millijoules\": 5989.51829281875, \"energy_joules\": 5.98951829281875}}, \"1094400\": {\"active\": {\"elapsed_sec\": 73.85286419, \"elapsed_ns\": 73852864190, \"power_samples\": [-178.6918196749998, 198.55436270300015, 70.26667245500016, 40.43872349700018, 159.31158478099997, -185.2127331749998, 158.95466308300024, 20.575768554999968, 98.3481102180001, 151.1480524750002, -168.38119864500004, 167.54373678900015, -60.71794914599991, 140.64211942700013, 143.69332935900002, -108.00795969, 157.32062461500004, -194.8119832929999, 143.91000563900025, 131.692239965, -38.22223314299981, 130.85209062000035, -163.44390467799985, 152.49432907500022, 100.10167926700024, 41.382068348000075, 152.3522273750002, -167.23079178299986, 172.9292695229999, 31.11491620600009, 80.9833755730001, 81.65920969700005, -198.69812401699983, 163.71061558600036, -83.93881402499983, 155.97258089100023, -1.4668925139999374, -70.90974492099986, 184.22247863000007, -156.59685646700018, 161.71344592700007, -110.01232393800001, 16.938690435000126, 162.50077940799997, -193.98452405399985, 153.34418111000014, 51.496333220000224, 56.46723048400008, 106.9299379319998, -160.3280294010001, 163.13756640700035, 75.49133990699988, 86.74239005500021, 109.41032124399999, -173.64797104199988, 168.80501075100005, -0.769316993000075, 90.29329745900009, 98.3481102180001, -207.57105368099974, 162.9943961240001, -15.243540445000008, 93.77187073000027, 55.99213471500002, -155.89523074, 161.71344592700007, 20.618616095000334, 112.99236921500005, 58.33705589100009, -174.033282204, 172.2801745469999, -67.47459777899985], \"power_mean\": 35.21114800977788, \"energy_millijoules\": 2600.444131940115, \"energy_joules\": 2.600444131940115, \"coremark_score\": 4062.39844, \"coremarks_per_mhz\": 3.7119868786549706, \"ulpmark_cm_score\": 115.36490875355928}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1140.68009165, 1376.99365932, 1375.3930652000001, 1134.365226093], \"power_mean\": 1256.85801056575, \"energy_millijoules\": 6284.29005282875, \"energy_joules\": 6.28429005282875}}, \"1209600\": {\"active\": {\"elapsed_sec\": 66.819222058, \"elapsed_ns\": 66819222058, \"power_samples\": [-44.62209017700002, 134.62047248000022, 171.57937162300004, -134.3117644529998, 156.25074981600005, -119.61715615499998, 153.5523652950003, 152.06765867500008, -62.293041125999935, 168.44541719500012, -177.70235568899966, 154.97464229100024, 110.85922691100018, 53.39064581499997, 173.12438512800009, -151.24086322499988, 196.9404897490001, 73.41155469700016, 60.62062945800017, 154.97464229100024, -199.828150908, 175.53772575900007, 68.52445863200023, 62.83293159300001, 178.16437274500026, -170.8571492369997, 148.80564860500021, -6.545312978999846, 138.8091445470002, 171.99156439500007, -128.62860884099996, 170.78680981999992, -87.48136221699997, 157.9453365689999, 157.24121883700036, -92.71277020499997, 168.79014644699987, -127.42432915099971, 145.8257937950002, 162.34957778000012, -90.36401688499973, 163.82638472000008, -103.3229415190001, 167.43833349500028, 146.53429152900026, -77.17198821400007, 168.64626390500007, -139.4710745089999, 178.13724269900013, 130.72604161900017, -86.98555066499989, 173.46219560500003, -173.48620852999989, 167.222503447, 133.20505625700002, -32.785423433999995, 157.731299196, -150.65475747000005, 173.10111725100023, 140.43646441800024, -27.845909156999824, 179.92128254700015, -169.9847832129999, 174.30874992300028, 141.29192849700007], \"power_mean\": 56.35490043226166, \"energy_millijoules\": 3765.5906060397715, \"energy_joules\": 3.7655906060397717, \"coremark_score\": 4489.942529, \"coremarks_per_mhz\": 3.711923387070106, \"ulpmark_cm_score\": 79.66877746051809}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1110.66834204, 1347.6433768109998, 1399.232904368, 1090.942792805], \"power_mean\": 1237.121854006, \"energy_millijoules\": 6185.60927003, \"energy_joules\": 6.18560927003}}, \"1305600\": {\"active\": {\"elapsed_sec\": 61.89988258, \"elapsed_ns\": 61899882580, \"power_samples\": [154.54690200300024, -87.04506076499979, 158.57734028699997, -123.12159995699994, 68.05282075900004, 133.91791393800008, -55.916293132999954, 175.51243608300024, -177.48658513199985, 78.88780357700011, 127.89710871300008, -5.464175576999651, 185.29141622499992, -146.17409912699986, 84.70563007500004, 90.47616990899996, 57.08093161900001, 171.8251264559999, -181.32042492499977, 137.61046591499985, 38.340398193000055, 67.85194927500015, 177.99241060800023, -174.20272223999996, 167.78259877500022, 33.460053560999995, 115.73248318000014, 170.69374493100008, -146.62598100899982, 157.93395985099983, -63.14128730099992, 161.4035250269999, 152.6266129950002, -126.16157260099999, 167.5665900229999, -129.66023533499992, 157.57644462299982, 159.9243859620001, -34.861319850999735, 177.5575420160003, -115.44607676499982, 168.55349578100004, 103.24785485100028, 48.124818430000005, 171.75319261400023, -178.09097016299984, 176.83300924200012, -8.001449774999855, 108.23420900699989, 183.43300882500034, -163.81510463099994, 159.98597994600004, -86.31701474999977, 163.59436754099988, 148.8023974350001, 15.499089225000034, 139.95007591500007, -155.3358291479999, 172.37896054299995, -84.14904020499989], \"power_mean\": 50.814639692400085, \"energy_millijoules\": 3145.4202303045727, \"energy_joules\": 3.145420230304573, \"coremark_score\": 4846.761555, \"coremarks_per_mhz\": 3.712286730238971, \"ulpmark_cm_score\": 95.37676305049735}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1371.7491343739998, 1116.5273570069999, 1380.64581248, 1145.888867664], \"power_mean\": 1253.70279288125, \"energy_millijoules\": 6268.513964406249, \"energy_joules\": 6.2685139644062495}}, \"1401600\": {\"active\": {\"elapsed_sec\": 57.66255753, \"elapsed_ns\": 57662557530, \"power_samples\": [176.47037053600002, -8.254874833999793, 33.225034350000215, 140.16198557100006, -179.73293687499972, 178.39836825900034, -172.23820275899993, 186.02554250000026, -173.55122531699976, 112.63335870000014, 54.34229293600015, 123.45925775000023, 195.10650894700007, -1.796631452999918, 174.42741751199992, -143.52678215099968, 188.21120508599984, -68.8041843389999, 187.22798212499993, 101.35704971300015, 72.79457373900027, 192.47724267299986, -93.28354440599992, 182.77803238500042, -143.8668348389997, 182.5597069050002, -18.322847005000085, 184.67349745499996, -31.87042409699984, 53.41254746100026, 133.57879514600018, -160.70554655099977, 191.20113051300018, -113.73381551399984, 164.15020762200015, -188.42625072499982, 149.28815924000014, 32.218642357000135, 112.07884093500002, 194.6666701480001, -85.04253150999966, 169.94891387600023, -151.19653025499974, 180.70270655500008, 83.89078655499998, 102.38626919399985, 166.91856376700002, -154.97120309000002, 183.6893059250001, -146.32760191299985, 169.66006612900037, 151.20212536500026, 37.378219669000146, 145.2567436510003, -150.16358202999982, 184.3817970099999], \"power_mean\": 55.11650658208942, \"energy_millijoules\": 3178.158731642355, \"energy_joules\": 3.178158731642355, \"coremark_score\": 5202.913632, \"coremarks_per_mhz\": 3.7121244520547947, \"ulpmark_cm_score\": 94.3942783641178}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1059.083448894, 1379.62458336, 1060.4954201730002, 1379.488536056], \"power_mean\": 1219.67299712075, \"energy_millijoules\": 6098.36498560375, \"energy_joules\": 6.09836498560375}}, \"1497600\": {\"active\": {\"elapsed_sec\": 53.963110136, \"elapsed_ns\": 53963110136, \"power_samples\": [161.96098030000007, 21.48707027499995, 159.34116160200006, -144.37662272999978, 192.51089805100014, -2.0514828610000677, 164.63328201500008, 44.92347348299995, -42.17180653499986, 180.99369421500023, -165.96305025299966, 180.33925213500015, -158.86057662500002, 212.3596664549998, 128.5635432900001, 33.249050743, 249.18163865499992, -92.96973378100006, 194.76785805300005, -140.82463002500003, 122.34167117600009, 79.40291209500015, 137.47828040700006, 170.02121851100014, -111.002114119, 176.2226167230001, -162.5768755209997, 182.01461052500008, 102.38626919399985, 57.08865999300019, 193.49301289000005, -148.546696677, 191.63155573099993, 78.26855987500016, 104.03149559100007, 236.92758584700005, -150.72717281999985, 196.36241685100003, -107.27682770299998, 180.8863766850004, 134.7166188870001, 0.601078058999974, 164.20162191900022, -154.44341232499983, 170.1397552110002, 89.02114533900021, 100.15279516700025, 141.57732678900015, -130.3505437289998, 192.97930227899997, 69.37723778300028, 121.7128941440003, 106.85248987499995], \"power_mean\": 70.03885907762273, \"energy_millijoules\": 3779.5146662055386, \"energy_joules\": 3.7795146662055386, \"coremark_score\": 5559.673832, \"coremarks_per_mhz\": 3.7123890438034195, \"ulpmark_cm_score\": 79.37527076755238}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1379.805965481, 1016.359531389, 1367.3701835969998, 1184.073773673], \"power_mean\": 1236.902363535, \"energy_millijoules\": 6184.511817675, \"energy_joules\": 6.184511817675}}, \"1612800\": {\"active\": {\"elapsed_sec\": 50.10868571, \"elapsed_ns\": 50108685710, \"power_samples\": [210.02731367899992, -117.36086028499994, 139.52677334999998, 109.1174041490001, 63.834491999999955, 195.1613427110001, -167.88669518799975, 136.06153736700003, 134.4346652900001, 8.563299975000291, 202.22416301700014, -154.7806139249999, 123.97889641500024, 131.96146863800027, 70.97595486900013, 191.55812029100002, -128.4040602749999, 115.2867767900002, 118.52814362700019, -151.45989876999965, 180.9589026150004, -168.2199758119998, 163.26660475900007, 71.24520044100018, -50.49433017499996, 195.52865702200006, -125.03227211199987, 189.6208556470001, -43.15919988299993, 95.5852990530002, 216.8671760750001, 27.20047647599995, 230.38934911599995, -146.5406670289999, 100.45858784400002, 105.09873959200036, 46.48246453500019, 197.19952012500016, -158.72319335700013, 166.79991605100008, 105.16789029700021, 96.99544611900001, 232.04174887500017, -132.41143565099992, 185.800197153, -7.308492235999665, 179.5764238050001, 199.89610398700006, -101.41794180300008], \"power_mean\": 67.02490357661236, \"energy_millijoules\": 3358.529828063524, \"energy_joules\": 3.358529828063524, \"coremark_score\": 5987.426405, \"coremarks_per_mhz\": 3.712441967385913, \"ulpmark_cm_score\": 89.32479845592896}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1402.175751042, 1052.8113351910001, 1386.064625152, 1234.837951005], \"power_mean\": 1268.9724155975, \"energy_millijoules\": 6344.8620779875, \"energy_joules\": 6.3448620779875}}, \"1708800\": {\"active\": {\"elapsed_sec\": 47.292941857, \"elapsed_ns\": 47292941857, \"power_samples\": [-159.0032071889998, 179.94017499000006, -143.33241222899983, 165.31106288399997, 59.027445525000076, -45.10384360499961, 197.273253135, -142.24577938699986, 203.44685038000034, -72.3579168839999, 58.226489154999854, 182.77838070000007, -7.689537051999878, 252.82729354900016, -147.05021170100008, 123.9189695370003, 104.61574851400019, 67.76358011000025, 207.41744822700002, -165.17523611499996, 184.1618175750002, 44.28004579499998, 131.05135421100022, 206.43939219300023, -125.66671250099989, 203.29905021900026, -6.489353207000022, 184.01591690099985, 189.69423141700008, -105.19833567499995, 198.42171588300016, -97.69956632099979, 200.52624612900013, 161.99405760900004, 1.4041170910002165, 217.85478796999996, -156.71109012500006, 193.39800751400003, 128.36092051900005, 60.29192198700025, 212.97626457499996, -131.55540358999997, 206.6762868830001, 145.0374740100001, 20.54621647199997, 192.4186439969999], \"power_mean\": 73.48079478423922, \"energy_millijoules\": 3475.1229553371745, \"energy_joules\": 3.4751229553371745, \"coremark_score\": 6343.835906, \"coremarks_per_mhz\": 3.712450787687266, \"ulpmark_cm_score\": 86.32788072699789}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1033.27483665, 1387.71282195, 1059.655468208, 1288.9391972260003], \"power_mean\": 1192.3955810085001, \"energy_millijoules\": 5961.9779050425, \"energy_joules\": 5.961977905042501}}, \"1804800\": {\"active\": {\"elapsed_sec\": 44.778728525, \"elapsed_ns\": 44778728525, \"power_samples\": [214.176210825, -122.35233658999982, 149.8304014590001, 118.26516091500002, -115.20918143699987, 187.98122922900006, -156.0168273249999, 199.2527443790002, 101.38341263500001, -34.85572748599975, 205.92107083500014, -124.87113756299982, 212.306699685, -52.73676748999992, 74.02117275499995, 170.043917791, 51.42449385900022, 199.2527443790002, -142.8141223089999, 172.41246575500008, 77.03298323500007, 112.48797697500004, 223.70893274700006, -144.29752784499988, 221.68118844000014, -15.462934462999783, 177.21309587500014, 199.76898732500013, -55.44211041000017, 184.63129185900016, -109.44176330699997, 94.48767010500023, 151.5293711910001, -2.769250564999993, 196.70647615200005, -143.0416347119999, 118.34858931100007, 213.65498023500004, -17.293284493999863, 220.48195436500032, -109.38314591699987, 90.68465275200015, 178.15815207500032, 3.102460734000033], \"power_mean\": 72.13551672645465, \"energy_millijoules\": 3230.1367205045094, \"energy_joules\": 3.2301367205045093, \"coremark_score\": 6700.017867, \"coremarks_per_mhz\": 3.7123325947473402, \"ulpmark_cm_score\": 92.87532570854881}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1402.71023835, 1243.167934827, 1305.1087525000003, 1315.301660344], \"power_mean\": 1316.5721465052502, \"energy_millijoules\": 6582.860732526251, \"energy_joules\": 6.582860732526251}}}}, \"4\": {\"freqs\": {\"710400\": {\"active\": {\"elapsed_sec\": 46.457552639, \"elapsed_ns\": 46457552639, \"power_samples\": [214.77982607500007, -121.50028467499988, 176.77680115500038, 153.78597484700003, 46.093342499999835, 160.77215310600013, -86.94152252499998, 197.4635340430002, 43.157103555000276, 167.10640015900026, 272.00293335499987, -15.21111638699972, 279.35731039500024, 6.249560547000101, 237.724675747, 194.15637258300012, 68.55101435100028, 247.31772763499998, -70.56691502299986, 187.7168484870001, 107.89491873599991, 129.85469406900006, 196.48547712000004, -114.88384311699997, 217.26152205900007, -31.752304220999804, 193.34747709099997, 183.28603846500005, -86.16025825499992, 218.53464200300004, -79.92361941299987, 192.0756004929999, 244.40619067500006, -68.23045306799963, 212.46326800500015, -10.158574172999806, 199.0494832950003, 203.68481348500018, -116.19882392099976, 189.6049434380002, -15.148122452999814, 32.635365698999976, 215.61027339499992, -113.74334196099994, 211.19012088500017], \"power_mean\": 103.77727173913344, \"energy_millijoules\": 4821.238064552599, \"energy_joules\": 4.821238064552599, \"coremark_score\": 6459.391956, \"coremarks_per_mhz\": 9.092612550675677, \"ulpmark_cm_score\": 62.22468087724255}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1425.9510408990002, 1281.0980247500001, 1368.99666846, 1420.019195479], \"power_mean\": 1374.016232397, \"energy_millijoules\": 6870.081161985, \"energy_joules\": 6.870081161985}}, \"844800\": {\"active\": {\"elapsed_sec\": 39.060051808, \"elapsed_ns\": 39060051808, \"power_samples\": [231.426008895, 73.81835305899995, 165.33031626800016, 231.0567574380002, -80.34343003499976, 203.8470242850001, -42.98383131700007, 253.82862588400008, 154.05523960200003, 35.8409641090002, 233.97381992700002, -126.02563709099968, 196.35764828300012, 117.92976086300018, 157.84926023900016, 233.2283456759999, -66.13688176699998, 206.09555544399996, 20.57633335899982, 61.95053113100016, 209.01603721499987, -74.64887965599996, 277.80253423500017, -65.95473625499994, 89.658077112, 224.53177317100017, -92.39089882500002, 231.04889550100006, 16.85107221000021, 17.724943291000045, 230.4537733770003, -134.47498313699975, 211.8674118900003, 97.26376651700025, -43.602059948999795, 205.04542723500003, 9.527231475000235, 180.55515618300024], \"power_mean\": 101.36708699584221, \"energy_millijoules\": 3959.4036696836397, \"energy_joules\": 3.9594036696836397, \"coremark_score\": 7683.245403, \"coremarks_per_mhz\": 9.09475071377841, \"ulpmark_cm_score\": 75.7689856927294}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1397.306572042, 1245.659531904, 1289.488333536, 1410.139086414], \"power_mean\": 1335.648380974, \"energy_millijoules\": 6678.24190487, \"energy_joules\": 6.67824190487}}, \"960000\": {\"active\": {\"elapsed_sec\": 34.36153233, \"elapsed_ns\": 34361532330, \"power_samples\": [-16.222266440999874, 246.8607946200002, 43.96804641500012, 228.125245747, 183.60840588400015, -57.09394083500024, 255.02673206900022, -22.02650074500002, 222.05809079500023, 245.58621851500016, -27.073188688999835, 229.322936217, -20.82851320499981, 237.93811121700014, 245.58621851500016, 19.601444638999965, 239.06037529100013, -22.089521820000073, 243.627234175, 335.8998175150002, -27.323998644999847, 244.67228187500018, -80.94324756099991, 135.777590615, 216.58890122699995, 63.87651935500003, 261.68021317700004, -60.62982239400003, 160.8714283449999, 196.4315002430003, -113.59592935499995, 243.77930789000015, -79.80560266099997], \"power_mean\": 120.3731782421213, \"energy_millijoules\": 4136.206855831504, \"energy_joules\": 4.136206855831504, \"coremark_score\": 8734.387283, \"coremarks_per_mhz\": 9.098320086458333, \"ulpmark_cm_score\": 72.53022163943268}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1053.9646957349999, 1362.457026112, 1193.527837008, 1354.791564918], \"power_mean\": 1241.1852809432498, \"energy_millijoules\": 6205.926404716249, \"energy_joules\": 6.205926404716249}}, \"1075200\": {\"active\": {\"elapsed_sec\": 30.691605301, \"elapsed_ns\": 30691605301, \"power_samples\": [-92.1438356399999, 269.5263753830002, 126.32912639799997, 195.1048160590003, 284.91684391700005, -19.248909927999875, 270.878454549, 39.84207118500012, 285.83055780300015, 228.27616326700013, 163.88681911899994, 267.36369603900016, -85.19463937699993, 282.626055857, 16.946790531000033, 242.94231605500022, 266.62962817100015, 75.25062175500011, 297.23681958299994, -19.374985216999903, 220.2608011860002, 145.21986277500014, 227.22167546700007, 262.801114955, -50.580782566999915, 271.6106817420002, -15.72031627699971, 260.67956528700006, 248.34521561500014, 87.02430396299997], \"power_mean\": 158.48289692183343, \"energy_millijoules\": 4864.094519283979, \"energy_joules\": 4.864094519283979, \"coremark_score\": 9778.994719, \"coremarks_per_mhz\": 9.095047171688988, \"ulpmark_cm_score\": 61.676433056683614}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1135.330421055, 1393.59666366, 1351.4608887450001, 1201.09052412], \"power_mean\": 1270.369624395, \"energy_millijoules\": 6351.848121975, \"energy_joules\": 6.351848121975}}, \"1209600\": {\"active\": {\"elapsed_sec\": 27.275752594, \"elapsed_ns\": 27275752594, \"power_samples\": [248.6263910050002, 182.14746195199996, 36.52466763500024, 313.93277454200006, -13.702410679999957, 294.2917051769998, 14.228219613000192, 197.95712038299985, 223.030445847, -24.544421724999893, 299.39884993800024, 40.38317491499993, 304.6726140589999, 52.423310118000245, 134.50399523900023, 293.48757855100007, -53.22036006500002, 301.55624193200015, 160.2955282989999, 197.95712038299985, 235.98304624300022, -36.830868849000126, 291.89382406799996, 68.99149199500016, 289.9123314409999, 283.82327144199985], \"power_mean\": 166.83550397915388, \"energy_millijoules\": 4550.563930430704, \"energy_joules\": 4.550563930430704, \"coremark_score\": 11004.328369, \"coremarks_per_mhz\": 9.097493691302912, \"ulpmark_cm_score\": 65.92589502892787}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1116.6820184520002, 1379.696718936, 1089.17870816, 1382.810664305], \"power_mean\": 1242.0920274632501, \"energy_millijoules\": 6210.46013731625, \"energy_joules\": 6.21046013731625}}, \"1324800\": {\"active\": {\"elapsed_sec\": 24.902742334, \"elapsed_ns\": 24902742334, \"power_samples\": [29.274996772999884, 220.63272627900005, 279.0304838049999, 178.43963033800014, 320.1611440470001, 15.973683010999821, 241.87701818000005, 217.6380000690001, 240.68075236500022, 317.6839951910001, -30.969733112999847, 347.1301133740001, 158.44701630700024, 137.5263370910002, 333.81553602600025, 101.83155198200006, 330.5323128790001, 28.947472324000046, 245.16487773000017, 272.5792805250003, 3.4860832710000977, 315.530047815, -24.10231799999997, 347.9190945150001], \"power_mean\": 192.8845876160001, \"energy_millijoules\": 4803.355185601097, \"energy_joules\": 4.803355185601097, \"coremark_score\": 12053.517618, \"coremarks_per_mhz\": 9.098367767210146, \"ulpmark_cm_score\": 62.45634320345554}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1244.94954414, 1311.5291926360003, 1385.346968952, 1106.659414734], \"power_mean\": 1262.1212801155, \"energy_millijoules\": 6310.6064005775, \"energy_joules\": 6.3106064005775}}, \"1440000\": {\"active\": {\"elapsed_sec\": 22.930104366, \"elapsed_ns\": 22930104366, \"power_samples\": [336.19454243099995, 67.05303490600022, 351.59245159500006, 320.1611440470001, 228.03160077100006, 340.11075995500005, 27.35827981500006, 370.9872747049999, 201.10661892600024, 298.622899363, 378.49972007299993, 18.591845839000143, 366.9833528339998, 50.02787533500009, 356.1309123070005, 288.8726502689999, 290.244936179, 349.76687284800005, 83.32983460100036, 377.919455535, 13.999679846000163, 375.3582264900001], \"power_mean\": 249.5883622122728, \"energy_millijoules\": 5723.087194066426, \"energy_joules\": 5.723087194066426, \"coremark_score\": 13090.71868, \"coremarks_per_mhz\": 9.090776861111111, \"ulpmark_cm_score\": 52.41926076384676}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1411.012275816, 1201.5734737400003, 1325.57277916, 1405.440982176], \"power_mean\": 1335.8998777230001, \"energy_millijoules\": 6679.4993886150005, \"energy_joules\": 6.6794993886150005}}, \"1555200\": {\"active\": {\"elapsed_sec\": 21.214966294, \"elapsed_ns\": 21214966294, \"power_samples\": [370.9872747049999, 91.57097783100016, 395.4481488860001, 44.91231705700011, 315.1316289629999, 324.3904211520003, 289.7737100830002, 494.9249933330002, 136.46270019500025, 444.9213987600001, 251.8851497090002, 295.2025287480001, 343.05066145000023, 250.15369795000015, 388.1035193309999, 32.55316362100007, 405.5427810750002, 170.38340186699998, 249.10742681900024, 366.19876423100004], \"power_mean\": 283.0352332883001, \"energy_millijoules\": 6004.582934225714, \"energy_joules\": 6.004582934225714, \"coremark_score\": 14149.608527, \"coremarks_per_mhz\": 9.098256511702674, \"ulpmark_cm_score\": 49.96183803041847}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1403.47383145, 1088.423048768, 1312.0753378589998, 1294.758893987], \"power_mean\": 1274.682778016, \"energy_millijoules\": 6373.41389008, \"energy_joules\": 6.37341389008}}, \"1670400\": {\"active\": {\"elapsed_sec\": 19.752904263, \"elapsed_ns\": 19752904263, \"power_samples\": [305.72176443000035, 393.41570049300003, 299.5815919470001, 199.6251027390001, 453.0487870270001, 60.98789205300022, 423.738072867, 108.8877991000004, 419.5527885870001, 221.59811280300005, 291.69644064299996, 420.487788979, 190.28185131500004, 441.3320665000001, 113.46285506100003, 402.7316221550002, 284.9137737379999, 212.47946436300026, 477.8249202029999], \"power_mean\": 301.12465236857906, \"energy_millijoules\": 5948.0864294656985, \"energy_joules\": 5.9480864294656985, \"coremark_score\": 15197.568389, \"coremarks_per_mhz\": 9.098161152418582, \"ulpmark_cm_score\": 50.436388838241584}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1393.96477577, 1217.138838432, 1368.7470067, 1080.970899621], \"power_mean\": 1265.20538013075, \"energy_millijoules\": 6326.02690065375, \"energy_joules\": 6.32602690065375}}, \"1766400\": {\"active\": {\"elapsed_sec\": 18.690154629, \"elapsed_ns\": 18690154629, \"power_samples\": [324.2223337150001, 382.1570430710003, 397.0884523650002, 135.9664091870004, 450.7280391869999, 301.10238486799994, 448.92782610300014, 476.19048907499996, 243.7158127319999, 472.3379178150001, 134.84225852300028, 468.3988177630001, 349.17035852100025, 385.5746536529998, 481.63815884200017, 110.37631415500005, 464.81429428300044, 254.32033792100015], \"power_mean\": 348.9762167655001, \"energy_millijoules\": 6522.419453190619, \"energy_joules\": 6.5224194531906186, \"coremark_score\": 16062.53681, \"coremarks_per_mhz\": 9.09337455276268, \"ulpmark_cm_score\": 45.9952019573422}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1437.847955202, 1168.97384816, 1440.0981480629998, 1094.9003075849998], \"power_mean\": 1285.4550647525, \"energy_millijoules\": 6427.2753237625, \"energy_joules\": 6.4272753237625}}, \"1881600\": {\"active\": {\"elapsed_sec\": 17.529894055, \"elapsed_ns\": 17529894055, \"power_samples\": [227.26425666800014, 507.88804925700015, 549.516123246, 274.981573005, 604.474088835, 271.6319050750003, 494.3900406070002, 546.9401777189998, 224.49906372900023, 586.6461520290002, 432.70056327300017, 519.202527315, 487.93065595500025, 302.0695904050003, 599.9765005980003, 338.1472176299999, 602.903090285], \"power_mean\": 445.3624456253531, \"energy_millijoules\": 7807.156487888137, \"energy_joules\": 7.807156487888137, \"coremark_score\": 17126.220243, \"coremarks_per_mhz\": 9.101945282206634, \"ulpmark_cm_score\": 38.42628240709839}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1084.0256446180001, 1283.6491132360002, 1329.699942876, 1087.559200256], \"power_mean\": 1196.2334752465001, \"energy_millijoules\": 5981.167376232501, \"energy_joules\": 5.9811673762325}}, \"1996800\": {\"active\": {\"elapsed_sec\": 16.539403431, \"elapsed_ns\": 16539403431, \"power_samples\": [580.304049028, 511.91833985500034, 276.6717180000003, 682.3239872490001, 313.8522711290002, 567.8961580150003, 492.4422491160001, 346.8884108210002, 604.568046915, 251.82084370300004, 629.8963746689999, 435.8570489450003, 423.31402123299995, 632.2375590780002, 276.59358130500004, 632.4744571950002], \"power_mean\": 478.69119476600014, \"energy_millijoules\": 7917.266789102272, \"energy_joules\": 7.917266789102272, \"coremark_score\": 18154.311649, \"coremarks_per_mhz\": 9.091702548577723, \"ulpmark_cm_score\": 37.89186445162303}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1328.776020726, 1317.4728030449999, 1088.4305632320002, 1411.724386544], \"power_mean\": 1286.60094338675, \"energy_millijoules\": 6433.00471693375, \"energy_joules\": 6.43300471693375}}, \"2112000\": {\"active\": {\"elapsed_sec\": 15.623527234, \"elapsed_ns\": 15623527234, \"power_samples\": [653.2636261740001, 318.39079093500004, 663.0398468780002, 530.1342816660001, 534.0052441350001, 656.554934835, 284.56028018400025, 635.5797149950001, 512.1260883690002, 587.261741492, 682.928845143, 354.75860741400015, 641.453966493, 473.644277955, 452.5578143680002], \"power_mean\": 532.0173374024001, \"energy_millijoules\": 8311.987359866565, \"energy_joules\": 8.311987359866565, \"coremark_score\": 19218.449712, \"coremarks_per_mhz\": 9.099644750000001, \"ulpmark_cm_score\": 36.09245142124662}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1403.918724285, 1106.317907079, 1389.5004361290003, 1339.01093844], \"power_mean\": 1309.68700148325, \"energy_millijoules\": 6548.43500741625, \"energy_joules\": 6.54843500741625}}, \"2227200\": {\"active\": {\"elapsed_sec\": 14.817544474, \"elapsed_ns\": 14817544474, \"power_samples\": [718.757429192, 648.713161744, 558.248909094, 699.2567765350002, 376.77420743100015, 742.4263753889998, 545.7616883310002, 700.1564410950002, 579.652239257, 510.3325730370002, 752.5874973509999, 380.5221933600003, 736.2563570750001, 431.9217723749998], \"power_mean\": 598.6691158047144, \"energy_millijoules\": 8870.806248646611, \"energy_joules\": 8.87080624864661, \"coremark_score\": 20264.793299, \"coremarks_per_mhz\": 9.098775726921696, \"ulpmark_cm_score\": 33.81879747917727}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1385.3605660019998, 1381.2641637600002, 1131.95570967, 1473.275908785], \"power_mean\": 1342.96408705425, \"energy_millijoules\": 6714.82043527125, \"energy_joules\": 6.71482043527125}}, \"2342400\": {\"active\": {\"elapsed_sec\": 14.092689995, \"elapsed_ns\": 14092689995, \"power_samples\": [473.081116093, 841.5188817029998, 616.4348079890003, 767.1478728750003, 852.7909112510001, 491.3710740590002, 847.1649263299996, 548.3333423590002, 833.620901455, 805.3750985800002, 684.6568264980001, 830.5737165600003, 515.759092713], \"power_mean\": 700.6021975742309, \"energy_millijoules\": 9873.369580229377, \"energy_joules\": 9.873369580229378, \"coremark_score\": 21308.331558, \"coremarks_per_mhz\": 9.096794551741803, \"ulpmark_cm_score\": 30.384763536121014}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1167.6971270400002, 1462.40237628, 1403.7094881809999, 1379.04060952], \"power_mean\": 1353.21240025525, \"energy_millijoules\": 6766.06200127625, \"energy_joules\": 6.76606200127625}}, \"2419200\": {\"active\": {\"elapsed_sec\": 13.65001187, \"elapsed_ns\": 13650011870, \"power_samples\": [629.9867385550003, 892.0549424989999, 883.491238009, 656.7424129229998, 915.4839957589998, 566.4056058450003, 899.9645895149997, 947.4669905730002, 909.9288738900004, 967.0694789849999, 724.2998267859998, 923.8117394430001, 826.3604216840004], \"power_mean\": 826.3897580358462, \"energy_millijoules\": 11280.230006435728, \"energy_joules\": 11.280230006435728, \"coremark_score\": 22000.586682, \"coremarks_per_mhz\": 9.094157854662699, \"ulpmark_cm_score\": 26.59520238761448}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1238.461110418, 1352.6831770580002, 1385.911281573, 1086.26315008], \"power_mean\": 1265.82967978225, \"energy_millijoules\": 6329.148398911249, \"energy_joules\": 6.32914839891125}}}}, \"7\": {\"freqs\": {\"844800\": {\"active\": {\"elapsed_sec\": 38.261523579, \"elapsed_ns\": 38261523579, \"power_samples\": [-22.155754648999846, 301.10941782300006, 53.53714776300012, 257.17733281100027, 188.80983794100007, 37.67978001500023, 287.653596098, 52.34337501799996, 299.0450934290002, 304.85437351500013, 40.06673197500004, 315.92403086700006, 45.04398259499999, 293.0743956330002, 281.6847323730003, -50.75014296299992, 308.7592619510001, 161.25604018900026, 257.02335960899995, 311.5447070340001, -38.936596808999866, 300.159530483, 150.50656781099997, 40.99489613500009, 317.83730267400006, 27.86144938600023, 288.37969934800003, 17.313726232000135, 230.98461625900018, 253.1681146809999, 130.6839360490003, 318.47101042500003, -42.26813878499979, 284.4821298060001, 243.76561784700016, -41.3231925289997, 327.071580737], \"power_mean\": 176.56306888586496, \"energy_millijoules\": 6755.572023357124, \"energy_joules\": 6.755572023357124, \"coremark_score\": 7843.547375, \"coremarks_per_mhz\": 9.284502101089016, \"ulpmark_cm_score\": 44.40778648540225}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1188.38636748, 1481.740232418, 1249.732724076, 1443.070223486], \"power_mean\": 1340.732386865, \"energy_millijoules\": 6703.661934325, \"energy_joules\": 6.703661934325001}}, \"960000\": {\"active\": {\"elapsed_sec\": 33.671068424, \"elapsed_ns\": 33671068424, \"power_samples\": [341.9523427470001, 19.635217277000038, 342.98311990800016, 285.2660506080001, 64.67284940700006, 332.3172013830001, 65.14537969900016, 151.81710050100014, 328.10828995500015, -16.438631948999955, 341.5461288690001, 176.20516745099985, 88.34367320700017, 347.37745942900006, -30.763892565000106, 316.63736891100007, 58.97251449100031, 222.02469522699994, 264.80548645500016, 24.085330358999954, 346.6438865170003, 197.84751165000034, 310.3488181140001, 253.82414954700016, 95.57402787100023, 346.2648564780002, -43.958221475999835, 338.04402868499983, 33.033617775000266, 251.7858413900001, 232.32984279900006, 50.214867323000135, 409.5863060739998], \"power_mean\": 198.37067830657585, \"energy_millijoules\": 6679.352682576007, \"energy_joules\": 6.679352682576007, \"coremark_score\": 8913.450397, \"coremarks_per_mhz\": 9.284844163541667, \"ulpmark_cm_score\": 44.91453202981637}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1488.3913475620002, 1161.085692702, 1469.960455516, 1430.4983615], \"power_mean\": 1387.48396432, \"energy_millijoules\": 6937.4198216, \"energy_joules\": 6.937419821600001}}, \"1075200\": {\"active\": {\"elapsed_sec\": 31.395854467, \"elapsed_ns\": 31395854467, \"power_samples\": [353.0228764350004, 97.75245737499995, 371.3039047350003, 53.793692183000076, 345.91031360500006, 273.08702070000027, 260.06606087499995, 331.123962998, -5.075990780999973, 347.18863547499996, 75.28228647900005, 346.7809367990001, 292.9168611360003, 251.32495209399985, 363.278902752, 102.18059622500004, 340.028143775, 41.727760045000196, 372.3313579750002, 161.29735359100005, 337.3954291949999, 340.434060888, 166.754056839, 366.53213825500006, 18.5917563590001, 339.15621520000013, 117.90096676200005, 378.9970872790002, 295.38633904300013, 291.9712491810001], \"power_mean\": 247.6147127824001, \"energy_millijoules\": 7774.075486404237, \"energy_joules\": 7.774075486404238, \"coremark_score\": 9559.924795, \"coremarks_per_mhz\": 8.89129910249256, \"ulpmark_cm_score\": 38.58979765821129}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1377.367053056, 1039.03781805, 1385.3837574, 1222.253465418], \"power_mean\": 1256.0105234809998, \"energy_millijoules\": 6280.052617404999, \"energy_joules\": 6.2800526174049995}}, \"1190400\": {\"active\": {\"elapsed_sec\": 27.154275094, \"elapsed_ns\": 27154275094, \"power_samples\": [387.68232801499994, 79.37168611300035, 372.6992033229999, 199.27034332999983, 350.11309963600024, 387.76605867499984, 126.95536940699981, 444.4452152430001, 44.70739361799997, 378.4151700550001, 236.19514807500013, 398.7756610350002, 354.51283510200005, 283.07058895800014, 388.8750320400002, 46.8920028240002, 435.32066047499984, 55.378622578999966, 390.6743674040001, 307.8039757749998, 330.45946443900016, 406.94668962000014, 149.33263476499997, 388.62452102099996, 87.5883540990003, 413.0042003049998], \"power_mean\": 286.3415625358077, \"energy_millijoules\": 7775.397559943127, \"energy_joules\": 7.775397559943127, \"coremark_score\": 11053.795136, \"coremarks_per_mhz\": 9.285782204301075, \"ulpmark_cm_score\": 38.583236122294736}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1404.143810732, 1200.446130345, 1368.121066848, 1388.3270018580001], \"power_mean\": 1340.25950244575, \"energy_millijoules\": 6701.29751222875, \"energy_joules\": 6.7012975122287495}}, \"1305600\": {\"active\": {\"elapsed_sec\": 24.765973636, \"elapsed_ns\": 24765973636, \"power_samples\": [433.9678864550003, 220.5186157710002, 429.5289897250002, 90.61432594799999, 426.80298858300034, 235.5107643150002, 400.7385243750002, 446.57414691300005, 115.58693313900017, 455.50603448300035, 216.12326006500007, 423.0528454109999, 435.1604126650002, 247.63631564100024, 432.85098146500036, 119.30245789699984, 376.554028497, 331.105687947, 345.394426091, 444.2720412030001, 113.13344007900014, 463.8522216590002, 133.26110204499992, 388.56145307099996], \"power_mean\": 321.9004118101251, \"energy_millijoules\": 7972.1771123071, \"energy_joules\": 7.9721771123071, \"coremark_score\": 12119.743061, \"coremarks_per_mhz\": 9.282891437653186, \"ulpmark_cm_score\": 37.63087495094321}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1406.254266846, 1036.238185728, 1329.78551563, 1307.887052008], \"power_mean\": 1270.041255053, \"energy_millijoules\": 6350.206275265, \"energy_joules\": 6.350206275265}}, \"1420800\": {\"active\": {\"elapsed_sec\": 30.497601708, \"elapsed_ns\": 30497601708, \"power_samples\": [396.7239262770004, 43.049987451000106, 395.0275581550002, 83.66538627499995, 339.83944610100025, 266.6837070450001, 191.75033697599997, 378.7475721110002, 85.84340153700032, 378.082340747, 28.673815799000067, 332.60437611, 314.4049960110003, 61.86185283300006, 409.59342531900006, 46.35886889700009, 391.0286928510002, 151.57297360200005, 247.4062272330002, 386.763437695, 67.62076136500013, 379.024461189, 29.199823337000225, 307.40354459700006, 343.9849894290003, 79.61158571600004, 433.870955265, 318.376147338, 424.92705583500015], \"power_mean\": 252.1966087274484, \"energy_millijoules\": 7691.391725078038, \"energy_joules\": 7.691391725078038, \"coremark_score\": 9841.551028, \"coremarks_per_mhz\": 6.926767333896397, \"ulpmark_cm_score\": 39.004644506902444}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1389.263319955, 1256.151085654, 1359.35932, 1247.7318046760001], \"power_mean\": 1313.1263825712501, \"energy_millijoules\": 6565.631912856251, \"energy_joules\": 6.565631912856251}}, \"1555200\": {\"active\": {\"elapsed_sec\": 35.309181445, \"elapsed_ns\": 35309181445, \"power_samples\": [327.976093988, 525.7722885930002, 331.55276895999987, 507.168117315, 24.897706911000114, 310.9782730019999, 317.4209109000001, 58.14865389400006, 375.5288423520001, 5.884562970000161, 335.6929076050001, 287.9217308069999, 15.100491923000163, 375.69480570099995, 147.85369670700015, 309.6272628830002, 261.368825475, 51.85251175500025, 354.2304358030003, 126.249245793, 366.68724771999996, 341.2751903000001, 127.99571932499998, 367.43098048, 91.59933953099994, 387.0355163070001, 311.3777698160002, 131.9239330910002, 362.000526691, 7.9481957790003435, 356.0396288669999, 288.8777527850002, 259.40425520600024, 370.67519791500035], \"power_mean\": 259.4468055044118, \"energy_millijoules\": 9160.854330880902, \"energy_joules\": 9.160854330880902, \"coremark_score\": 8499.546691, \"coremarks_per_mhz\": 5.465243499871399, \"ulpmark_cm_score\": 32.74803737340425}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1196.5691265850003, 1400.285053848, 1092.8319818720001, 1391.3027345579999], \"power_mean\": 1270.24722421575, \"energy_millijoules\": 6351.23612107875, \"energy_joules\": 6.351236121078751}}, \"1670400\": {\"active\": {\"elapsed_sec\": 21.490258482, \"elapsed_ns\": 21490258482, \"power_samples\": [513.1281239549999, 307.95744982500014, 522.1192750510002, 397.34471707500006, 235.76335583500008, 554.9359730570002, 194.2181204670003, 525.3332255820003, 483.42015251700013, 361.95504513100013, 506.98851607500023, 221.468742497, 536.1479587230001, 473.79442351500006, 426.024494755, 518.456287411, 204.64388873500025, 550.4439965790002, 355.13664498899993, 491.709823015, 524.7765223389999], \"power_mean\": 424.08413033942867, \"energy_millijoules\": 9113.677579108502, \"energy_joules\": 9.113677579108503, \"coremark_score\": 13968.431345, \"coremarks_per_mhz\": 8.36232719408525, \"ulpmark_cm_score\": 32.91755686943513}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1366.043886678, 1214.767468068, 1347.74414901, 1266.201966475], \"power_mean\": 1298.68936755775, \"energy_millijoules\": 6493.446837788751, \"energy_joules\": 6.493446837788751}}, \"1785600\": {\"active\": {\"elapsed_sec\": 22.474176815, \"elapsed_ns\": 22474176815, \"power_samples\": [607.7230069230002, 202.33333135499993, 525.1521853710001, 204.26915707500007, 438.02200479, 505.349629522, 219.976489635, 558.3215538350003, 429.2631559680001, 452.1406809330001, 515.5344064550002, 168.688509975, 539.5375515139999, 377.6930486910003, 469.5668193470001, 564.9249922650001, 243.3392281790002, 533.3989409250003, 357.27537620600015, 518.383037971, 534.9533689950001, 273.338355891], \"power_mean\": 419.96294690095465, \"energy_millijoules\": 9438.321524400511, \"energy_joules\": 9.43832152440051, \"coremark_score\": 13356.484573, \"coremarks_per_mhz\": 7.4801100879256275, \"ulpmark_cm_score\": 31.785312592331394}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1505.405789298, 1113.644036076, 1490.2008065500002, 1278.3745750719997], \"power_mean\": 1346.906301749, \"energy_millijoules\": 6734.531508745, \"energy_joules\": 6.7345315087449995}}, \"1900800\": {\"active\": {\"elapsed_sec\": 23.285361241, \"elapsed_ns\": 23285361241, \"power_samples\": [194.89006953900002, 561.5267080350002, 453.8527030590003, 416.15748065100024, 518.3663552190001, 206.42664470700015, 553.187843403, 407.2216616190001, 527.6387663100002, 566.936210995, 277.63346503799994, 579.5737649370001, 310.09679292400006, 574.1608734460001, 531.0180438250002, 343.11122970300016, 567.2921516699998, 304.93456347899996, 584.5925846520001, 534.4069318749998, 542.9305003530001, 559.2349814940003], \"power_mean\": 459.78137849695463, \"energy_millijoules\": 10706.175490186539, \"energy_joules\": 10.706175490186538, \"coremark_score\": 12891.027845, \"coremarks_per_mhz\": 6.781895962226431, \"ulpmark_cm_score\": 28.021210774565116}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1089.7413037380002, 1406.888082384, 1299.039213114, 1285.213171192], \"power_mean\": 1270.220442607, \"energy_millijoules\": 6351.102213035, \"energy_joules\": 6.351102213035}}, \"2035200\": {\"active\": {\"elapsed_sec\": 15.890459838, \"elapsed_ns\": 15890459838, \"power_samples\": [795.0820532750004, 489.6644876569999, 808.4208482710005, 475.91702186700013, 634.4339926050002, 744.1028622780002, 438.3301154390001, 757.7735019030001, 574.6989811970002, 710.56299861, 633.016605351, 502.30441333499994, 854.7132518110002, 580.9047498900002, 759.438927445], \"power_mean\": 650.6243207289334, \"energy_millijoules\": 10338.719638169146, \"energy_joules\": 10.338719638169147, \"coremark_score\": 18894.067263, \"coremarks_per_mhz\": 9.283641540389151, \"ulpmark_cm_score\": 29.017132730095593}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1487.9621412479999, 1204.910214, 1501.3710002720002, 1259.92440255], \"power_mean\": 1363.5419395175, \"energy_millijoules\": 6817.709697587499, \"energy_joules\": 6.8177096975875}}, \"2150400\": {\"active\": {\"elapsed_sec\": 15.045810671, \"elapsed_ns\": 15045810671, \"power_samples\": [786.1766153439999, 758.7616502250003, 763.3773597670001, 842.7090501830003, 548.4186486630001, 820.3474847780003, 677.4523006430002, 694.1079192749999, 831.7931014349997, 488.6863632430002, 863.1560999170001, 611.4538529630001, 690.4444688650001, 868.9886213390005], \"power_mean\": 731.8481097600002, \"energy_millijoules\": 11011.24809937819, \"energy_joules\": 11.01124809937819, \"coremark_score\": 19957.424162, \"coremarks_per_mhz\": 9.280796206287201, \"ulpmark_cm_score\": 27.244867910744933}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1318.0038284690002, 1337.667263943, 1234.7072715, 1417.549686567], \"power_mean\": 1326.98201261975, \"energy_millijoules\": 6634.9100630987505, \"energy_joules\": 6.634910063098751}}, \"2265600\": {\"active\": {\"elapsed_sec\": 14.283852599, \"elapsed_ns\": 14283852599, \"power_samples\": [927.3933791549998, 643.8839159670003, 937.2869532949999, 684.499609301, 953.2566760700001, 918.073456563, 705.3993945550001, 957.606469075, 591.295196775, 867.483228611, 891.5838790050002, 852.3558224029998, 966.0388967389999, 694.2043575600001], \"power_mean\": 827.8829453624286, \"energy_millijoules\": 11825.3579607829, \"energy_joules\": 11.825357960782899, \"coremark_score\": 21023.125438, \"coremarks_per_mhz\": 9.27927499911723, \"ulpmark_cm_score\": 25.369210893649637}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1405.2064491150002, 1061.5787289450002, 1404.786194539, 1228.99296456], \"power_mean\": 1275.14108428975, \"energy_millijoules\": 6375.705421448751, \"energy_joules\": 6.3757054214487505}}, \"2380800\": {\"active\": {\"elapsed_sec\": 13.592120828, \"elapsed_ns\": 13592120828, \"power_samples\": [773.2012322750002, 1139.9404919510002, 822.12053001, 1133.973261907, 1088.95922725, 992.1736441319999, 1106.666586661, 815.2313152680003, 1133.1499542749998, 893.186734675, 1155.6818777500002, 834.001932438, 1050.2419572630001], \"power_mean\": 995.2714419888463, \"energy_millijoules\": 13527.849696170191, \"energy_joules\": 13.527849696170192, \"coremark_score\": 22092.937624, \"coremarks_per_mhz\": 9.279627698252687, \"ulpmark_cm_score\": 22.17647347788996}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1093.584762345, 1389.155602032, 1306.281527265, 1331.7721950639998], \"power_mean\": 1280.1985216765, \"energy_millijoules\": 6400.992608382499, \"energy_joules\": 6.4009926083824995}}, \"2496000\": {\"active\": {\"elapsed_sec\": 12.959055203, \"elapsed_ns\": 12959055203, \"power_samples\": [1041.9109029720003, 986.0079211550001, 1162.0267609430002, 803.8084568250001, 1177.1051934750003, 831.5360137079997, 1181.927681347, 881.7230263390002, 1278.3955993650002, 922.2976896750001, 1211.5490679230002, 1039.673974191], \"power_mean\": 1043.1635239931668, \"energy_millijoules\": 13518.413693183464, \"energy_joules\": 13.518413693183463, \"coremark_score\": 23173.180905, \"coremarks_per_mhz\": 9.284126965144232, \"ulpmark_cm_score\": 22.19195290282263}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1392.03731821, 1162.61861292, 1394.62620399, 1332.104173907], \"power_mean\": 1320.34657725675, \"energy_millijoules\": 6601.732886283749, \"energy_joules\": 6.60173288628375}}, \"2592000\": {\"active\": {\"elapsed_sec\": 12.483517339, \"elapsed_ns\": 12483517339, \"power_samples\": [1277.0811870940001, 1053.3372277950002, 1193.4964466270003, 1194.740669189, 1286.990503263, 1252.5366570750002, 1168.086669367, 1305.4361464429999, 950.7395528349998, 1291.4755710589998, 1005.6551314590001, 1298.8531665360001], \"power_mean\": 1189.8690773951666, \"energy_millijoules\": 14853.751258802497, \"energy_joules\": 14.853751258802497, \"coremark_score\": 24059.667977, \"coremarks_per_mhz\": 9.282279312114198, \"ulpmark_cm_score\": 20.196918258087614}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1082.2679200640002, 1394.41750283, 1130.173592565, 1406.396150712], \"power_mean\": 1253.31379154275, \"energy_millijoules\": 6266.568957713751, \"energy_joules\": 6.266568957713751}}, \"2688000\": {\"active\": {\"elapsed_sec\": 12.038721141, \"elapsed_ns\": 12038721141, \"power_samples\": [1361.7526774499997, 1283.5832775449994, 1436.496608859, 1143.3804275930001, 1414.1910405899998, 1092.6207437009998, 1430.620383177, 1284.0987375550003, 1380.1755860850003, 1428.832329363, 1219.715559414], \"power_mean\": 1315.9515792119998, \"energy_millijoules\": 15842.374097191838, \"energy_joules\": 15.842374097191838, \"coremark_score\": 24948.024948, \"coremarks_per_mhz\": 9.28125928125, \"ulpmark_cm_score\": 18.93655573082174}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1392.94926078, 1029.7777966200001, 1398.62345561, 1171.7997343920001], \"power_mean\": 1248.2875618505, \"energy_millijoules\": 6241.4378092525, \"energy_joules\": 6.2414378092525}}, \"2764800\": {\"active\": {\"elapsed_sec\": 11.699874995, \"elapsed_ns\": 11699874995, \"power_samples\": [1487.525138649, 1433.0333999430004, 1306.7998254190002, 1581.764036518, 1267.1704290060002, 1587.7243812270003, 1285.8522768950002, 1482.580260843, 1496.2459933190003, 1283.1183353789997, 1571.701288401], \"power_mean\": 1434.865033236273, \"energy_millijoules\": 16787.74152356091, \"energy_joules\": 16.78774152356091, \"coremark_score\": 25669.54736, \"coremarks_per_mhz\": 9.284413831018519, \"ulpmark_cm_score\": 17.870182214740574}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1167.2931053819998, 1396.7317840719998, 1054.5157480550001, 1380.8361706320002], \"power_mean\": 1249.84420203525, \"energy_millijoules\": 6249.22101017625, \"energy_joules\": 6.24922101017625}}, \"2841600\": {\"active\": {\"elapsed_sec\": 11.388314371, \"elapsed_ns\": 11388314371, \"power_samples\": [1701.9650020549998, 1433.0418095589998, 1708.3261863449998, 1395.4042675350001, 1732.884037875, 1649.0656167719999, 1656.626952863, 1662.5465002239998, 1408.5363908549998, 1766.9305609890007, 1478.8226254270003], \"power_mean\": 1599.468177318091, \"energy_millijoules\": 18215.24642970879, \"energy_joules\": 18.21524642970879, \"coremark_score\": 26373.626374, \"coremarks_per_mhz\": 9.281259281390765, \"ulpmark_cm_score\": 16.46971953729402}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1364.03684984, 1059.11929332, 1418.433764958, 1217.6962966150002], \"power_mean\": 1264.82155118325, \"energy_millijoules\": 6324.1077559162495, \"energy_joules\": 6.324107755916249}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm8350/fifth/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 cpu7 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 1291 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 403 499 595 691 806 902 998 1094 1209 1305 1401 1497 1612 1708 1804\n\n 300:  1113     3.7 C/MHz     -2 mW   -0.5 J   -615.0 I/mJ   269.6 s\n 403:  1496     3.7 C/MHz      1 mW    0.2 J   1676.7 I/mJ   200.5 s\n 499:  1853     3.7 C/MHz      0 mW    0.1 J   4632.3 I/mJ   161.9 s\n 595:  2209     3.7 C/MHz      2 mW    0.3 J   1197.3 I/mJ   135.8 s\n 691:  2566     3.7 C/MHz      5 mW    0.6 J   500.9 I/mJ   116.9 s\n 806:  2993     3.7 C/MHz     18 mW    1.8 J   164.2 I/mJ   100.2 s\n 902:  3350     3.7 C/MHz     19 mW    1.7 J   172.6 I/mJ    89.6 s\n 998:  3706     3.7 C/MHz      6 mW    0.5 J   607.8 I/mJ    81.0 s\n1094:  4062     3.7 C/MHz     35 mW    2.6 J   115.4 I/mJ    73.9 s\n1209:  4490     3.7 C/MHz     56 mW    3.8 J   79.7 I/mJ    66.8 s\n1305:  4847     3.7 C/MHz     51 mW    3.1 J   95.4 I/mJ    61.9 s\n1401:  5203     3.7 C/MHz     55 mW    3.2 J   94.4 I/mJ    57.7 s\n1497:  5560     3.7 C/MHz     70 mW    3.8 J   79.4 I/mJ    54.0 s\n1612:  5987     3.7 C/MHz     67 mW    3.4 J   89.3 I/mJ    50.1 s\n1708:  6344     3.7 C/MHz     73 mW    3.5 J   86.3 I/mJ    47.3 s\n1804:  6700     3.7 C/MHz     72 mW    3.2 J   92.9 I/mJ    44.8 s\n\n\n===== CPU 4 =====\nFrequencies: 710 844 960 1075 1209 1324 1440 1555 1670 1766 1881 1996 2112 2227 2342 2419\n\n 710:  6459     9.1 C/MHz    104 mW    4.8 J   62.2 I/mJ    46.5 s\n 844:  7683     9.1 C/MHz    101 mW    4.0 J   75.8 I/mJ    39.1 s\n 960:  8734     9.1 C/MHz    120 mW    4.1 J   72.5 I/mJ    34.4 s\n1075:  9779     9.1 C/MHz    158 mW    4.9 J   61.7 I/mJ    30.7 s\n1209: 11004     9.1 C/MHz    167 mW    4.6 J   65.9 I/mJ    27.3 s\n1324: 12054     9.1 C/MHz    193 mW    4.8 J   62.5 I/mJ    24.9 s\n1440: 13091     9.1 C/MHz    250 mW    5.7 J   52.4 I/mJ    22.9 s\n1555: 14150     9.1 C/MHz    283 mW    6.0 J   50.0 I/mJ    21.2 s\n1670: 15198     9.1 C/MHz    301 mW    5.9 J   50.4 I/mJ    19.8 s\n1766: 16063     9.1 C/MHz    349 mW    6.5 J   46.0 I/mJ    18.7 s\n1881: 17126     9.1 C/MHz    445 mW    7.8 J   38.4 I/mJ    17.5 s\n1996: 18154     9.1 C/MHz    479 mW    7.9 J   37.9 I/mJ    16.5 s\n2112: 19218     9.1 C/MHz    532 mW    8.3 J   36.1 I/mJ    15.6 s\n2227: 20265     9.1 C/MHz    599 mW    8.9 J   33.8 I/mJ    14.8 s\n2342: 21308     9.1 C/MHz    701 mW    9.9 J   30.4 I/mJ    14.1 s\n2419: 22001     9.1 C/MHz    826 mW   11.3 J   26.6 I/mJ    13.7 s\n\n\n===== CPU 7 =====\nFrequencies: 844 960 1075 1190 1305 1420 1555 1670 1785 1900 2035 2150 2265 2380 2496 2592 2688 2764 2841\n\n 844:  7844     9.3 C/MHz    177 mW    6.8 J   44.4 I/mJ    38.3 s\n 960:  8913     9.3 C/MHz    198 mW    6.7 J   44.9 I/mJ    33.7 s\n1075:  9560     8.9 C/MHz    248 mW    7.8 J   38.6 I/mJ    31.4 s\n1190: 11054     9.3 C/MHz    286 mW    7.8 J   38.6 I/mJ    27.2 s\n1305: 12120     9.3 C/MHz    322 mW    8.0 J   37.6 I/mJ    24.8 s\n1420:  9842     6.9 C/MHz    252 mW    7.7 J   39.0 I/mJ    30.5 s\n1555:  8500     5.5 C/MHz    259 mW    9.2 J   32.7 I/mJ    35.3 s\n1670: 13968     8.4 C/MHz    424 mW    9.1 J   32.9 I/mJ    21.5 s\n1785: 13356     7.5 C/MHz    420 mW    9.4 J   31.8 I/mJ    22.5 s\n1900: 12891     6.8 C/MHz    460 mW   10.7 J   28.0 I/mJ    23.3 s\n2035: 18894     9.3 C/MHz    651 mW   10.3 J   29.0 I/mJ    15.9 s\n2150: 19957     9.3 C/MHz    732 mW   11.0 J   27.2 I/mJ    15.0 s\n2265: 21023     9.3 C/MHz    828 mW   11.8 J   25.4 I/mJ    14.3 s\n2380: 22093     9.3 C/MHz    995 mW   13.5 J   22.2 I/mJ    13.6 s\n2496: 23173     9.3 C/MHz   1043 mW   13.5 J   22.2 I/mJ    13.0 s\n2592: 24060     9.3 C/MHz   1190 mW   14.9 J   20.2 I/mJ    12.5 s\n2688: 24948     9.3 C/MHz   1316 mW   15.8 J   18.9 I/mJ    12.0 s\n2764: 25670     9.3 C/MHz   1435 mW   16.8 J   17.9 I/mJ    11.7 s\n2841: 26374     9.3 C/MHz   1599 mW   18.2 J   16.5 I/mJ    11.4 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm8350/fifth/uptime.txt",
    "content": " 01:49:52 up 48 min,  load average: 2.66, 2.70, 2.68\n"
  },
  {
    "path": "results/sm8350/fifth/versions.txt",
    "content": "Kernel: Linux version 5.4.268-qgki-gcc6a9ab308ab (nobody@android-build) (Android (10087095, +pgo, +bolt, +lto, -mlgo, based on r487747c) clang version 17.0.2 (https://android.googlesource.com/toolchain/llvm-project d9f89f4d16663d5012e5c09495f3b30ece3d2362), LLD 17.0.2) #1 SMP PREEMPT Sat Apr 13 23:16:54 CST 2024\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm8350/fourth/cmdline.txt",
    "content": "ramoops_memreserve=4M log_buf_len=256K rcupdate.rcu_expedited=1 rcu_nocbs=0-7 console=ttyMSM0,115200n8 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 androidboot.usbcontroller=a600000.dwc3 swiotlb=0 loop.max_part=7 cgroup.memory=nokmem,nosocket pcie_ports=compat loop.max_part=7 iptable_raw.raw_before_defrag=1 ip6table_raw.raw_before_defrag=1 buildvariant=user  rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED bootinfo.pureason=0x40001 bootinfo.pdreason=0x2 androidboot.hwversion=3.9.0 androidboot.cpuid=REDACTED androidboot.hwc=CN androidboot.hwlevel=MP androidboot.hardware.sku=venus androidboot.product.hardware.sku=venus androidboot.secureboot=1 androidboot.baseband=msm msm_drm.dsi_display0=qcom,mdss_dsi_k2_38_08_0a_mp_dsc_cmd: androidboot.oled_wp=01f50bbf0c4c msm_drm.oled_wp=01f50bbf0c4c androidboot.oled_panel_id=K2_0A_MP androidboot.slot_suffix=_a rootwait ro init=/init androidboot.dtbo_idx=0 androidboot.dtb_idx=0 androidboot.ramdump=disable androidboot.force_normal_boot=1 block2mtd.block2mtd=/dev/block/sda15,2097152 mtdoops.mtddev=0 mtdoops.record_size=2097152 mtdoops.dump_oops=0 printk.always_kmsg_dump=1\n"
  },
  {
    "path": "results/sm8350/fourth/cpufreq_stats/0/time_in_state",
    "content": "300000 143267\n403200 20920\n499200 17083\n595200 14492\n691200 12525\n806400 10865\n902400 9827\n998400 9001\n1094400 8275\n1209600 7550\n1305600 7034\n1401600 6618\n1497600 6307\n1612800 5894\n1708800 5583\n1804800 6239\n"
  },
  {
    "path": "results/sm8350/fourth/cpufreq_stats/0/total_trans",
    "content": "19\n"
  },
  {
    "path": "results/sm8350/fourth/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    403200    499200    595200    691200    806400    902400    998400   1094400   1209600   1305600   1401600   1497600   1612800   1708800   1804800 \n   300000:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   403200:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   499200:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n   595200:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n   691200:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n   806400:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n   902400:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n   998400:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1094400:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1209600:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1305600:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1401600:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  1497600:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         1 \n  1612800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  1708800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  1804800:         2         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8350/fourth/cpufreq_stats/4/time_in_state",
    "content": "710400 60657\n844800 4762\n960000 4348\n1075200 3934\n1209600 3622\n1324800 3415\n1440000 3205\n1555200 3000\n1670400 2897\n1766400 2793\n1881600 2586\n1996800 2482\n2112000 2482\n2227200 2379\n2342400 2275\n2419200 186644\n"
  },
  {
    "path": "results/sm8350/fourth/cpufreq_stats/4/total_trans",
    "content": "18\n"
  },
  {
    "path": "results/sm8350/fourth/cpufreq_stats/4/trans_table",
    "content": "   From  :    To\n         :    710400    844800    960000   1075200   1209600   1324800   1440000   1555200   1670400   1766400   1881600   1996800   2112000   2227200   2342400   2419200 \n   710400:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   844800:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   960000:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1075200:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1209600:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1324800:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1440000:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1555200:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1670400:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1766400:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1881600:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1996800:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2112000:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2227200:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2342400:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2419200:         2         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8350/fourth/cpufreq_stats/7/time_in_state",
    "content": "844800 4689\n960000 4244\n1075200 3933\n1190400 4244\n1305600 3830\n1420800 3104\n1555200 3000\n1670400 2793\n1785600 2689\n1900800 2583\n2035200 2482\n2150400 2379\n2265600 2275\n2380800 2275\n2496000 2171\n2592000 2172\n2688000 2067\n2764800 2068\n2841600 238483\n"
  },
  {
    "path": "results/sm8350/fourth/cpufreq_stats/7/total_trans",
    "content": "21\n"
  },
  {
    "path": "results/sm8350/fourth/cpufreq_stats/7/trans_table",
    "content": "   From  :    To\n         :    844800    960000   1075200   1190400   1305600   1420800   1555200   1670400   1785600   1900800   2035200   2150400   2265600   2380800   2496000   2592000   2688000   2764800   2841600 \n   844800:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   960000:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1075200:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1190400:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1305600:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1420800:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1555200:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1670400:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1785600:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1900800:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  2035200:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  2150400:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  2265600:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  2380800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  2496000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2592000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2688000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2764800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2841600:         2         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8350/fourth/cpuinfo.txt",
    "content": "processor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x2\nCPU part\t: 0xd05\nCPU revision\t: 0\n\nHardware\t: Venus based on Qualcomm Technologies, Inc SM8350\n"
  },
  {
    "path": "results/sm8350/fourth/device.txt",
    "content": "Model: Venus based on Qualcomm Technologies, Inc SM8350;\nCompatible: qcom,lahaina-mtp;qcom,lahaina;qcom,mtp;\n"
  },
  {
    "path": "results/sm8350/fourth/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x412fd050]\n[    0.000000] Linux version 5.4.61-DynamIQ-R1 (nakixii@naki-PC) (Proton clang version 13.0.0 (https://github.com/llvm/llvm-project b4fd512c36ca344a3ff69350219e8b0a67e9472a), GNU ld (GNU Binutils) 2.36.1) #14 SMP PREEMPT Thu Aug 12 18:59:42 CST 2021\n[    0.000000] memblock_reserve: 0xb1ddd setup_arch+0x5c/0x1a0\n[    0.000000] Machine model: Venus based on Qualcomm Technologies, Inc SM8350\n[    0.000000] ramoops: msm_reserve_ramoops_memory addr=b0000000,size=400000\n[    0.000000] ramoops: msm_reserve_ramoops_memory record_size=0,ftrace_size=0\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000d6800000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x00000000d6000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node memshare_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff800000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe400000, size 12 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fd400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fc400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fb400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node user_contig_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f8400000, size 48 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6c00000, size 24 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f5800000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node cnss_wlan_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000eb400000, size 164 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] On node 0 totalpages: 2954064\n[    0.000000]   Normal zone: 46158 pages used for memmap\n[    0.000000]   Normal zone: 0 pages reserved\n[    0.000000]   Normal zone: 2954064 pages, LIFO batch:63\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] psci: OSI mode supported.\n[    0.000000] psci: Switched to OSI mode.\n[    0.000000] percpu: Embedded 29 pages/cpu s88792 r0 d29992 u118784\n[    0.000000] pcpu-alloc: s88792 r0 d29992 u118784 alloc=29*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: detected: GIC system register CPU interface\n[    0.000000] CPU features: kernel page table isolation forced OFF by kpti command line option\n[    0.000000] CPU features: detected: Speculative Store Bypassing Safe (SSBS)\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 2907906\n[    0.000000] Kernel command line: ramoops_memreserve=4M log_buf_len=256K rcupdate.rcu_expedited=1 rcu_nocbs=0-7 console=ttyMSM0,115200n8 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 androidboot.usbcontroller=a600000.dwc3 swiotlb=0 loop.max_part=7 cgroup.memory=nokmem,nosocket pcie_ports=compat loop.max_part=7 iptable_raw.raw_before_defrag=1 ip6table_raw.raw_before_defrag=1 buildvariant=user  rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1  androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED bootinfo.pureason=0x40001 bootinfo.pdreason=0x2 androidboot.hwversion=3.9.0 androidboot.cpuid=REDACTED androidboot.hwc=CN androidboot.hwlevel=MP androidboot.hardware.sku=venus androidboo\n[    0.000000] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)\n[    0.000000] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)\n[    0.000000] mem auto-init: stack:all(zero), heap alloc:on, heap free:off\n[    0.000000] Memory: 11085464K/11816256K available (23166K kernel code, 3192K rwdata, 11420K rodata, 4480K init, 11717K bss, 362152K reserved, 368640K cma-reserved)\n[    0.000000] random: get_random_u64 called from __kmem_cache_create+0x34/0x550 with crng_init=0\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] rcu: \tRCU restricting CPUs from NR_CPUS=32 to nr_cpu_ids=8.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.\n[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: 988 SPIs implemented\n[    0.000000] GICv3: 0 Extended SPIs implemented\n[    0.000000] GICv3: Distributor has no Range Selector support\n[    0.000000] GICv3: 16 PPIs implemented\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000011] clocksource: Switched to clocksource arch_sys_counter\n[    0.003227] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.003234] pid_max: default: 32768 minimum: 301\n[    0.003340] LSM: Security Framework initializing\n[    0.003376] SELinux:  Initializing.\n[    0.003503] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)\n[    0.003531] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)\n[    0.004866] ASID allocator initialised with 32768 entries\n[    0.004933] rcu: Hierarchical SRCU implementation.\n[    0.005234] dynamic_debug:dynamic_debug_init: Ignore empty _ddebug table in a CONFIG_DYNAMIC_DEBUG_CORE build\n[    0.006863] scm_mem_protection_init_do: SCM call failed\n[    0.007096] smp: Bringing up secondary CPUs ...\n[    0.007966] Detected VIPT I-cache on CPU1\n[    0.008073] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]\n[    0.009141] Detected VIPT I-cache on CPU2\n[    0.009232] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]\n[    0.010198] Detected VIPT I-cache on CPU3\n[    0.010282] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]\n[    0.013544] Detected PIPT I-cache on CPU4\n[    0.013563] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU4: 0x1100000011111112\n[    0.013574] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU4: 0x00000000010142\n[    0.013582] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU4: 0x00000010010131\n[    0.013586] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU4: 0x00000010010000\n[    0.013591] CPU features: Unsupported CPU feature variation detected.\n[    0.013724] CPU4: Booted secondary processor 0x0000000400 [0x411fd410]\n[    0.015070] Detected PIPT I-cache on CPU5\n[    0.015090] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU5: 0x1100000011111112\n[    0.015100] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU5: 0x00000000010142\n[    0.015107] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU5: 0x00000010010131\n[    0.015112] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU5: 0x00000010010000\n[    0.015251] CPU5: Booted secondary processor 0x0000000500 [0x411fd410]\n[    0.016607] Detected PIPT I-cache on CPU6\n[    0.016625] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU6: 0x1100000011111112\n[    0.016635] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU6: 0x00000000010142\n[    0.016641] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU6: 0x00000010010131\n[    0.016646] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU6: 0x00000010010000\n[    0.016783] CPU6: Booted secondary processor 0x0000000600 [0x411fd410]\n[    0.019934] Detected PIPT I-cache on CPU7\n[    0.019942] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU7: 0x1100000011111112\n[    0.019946] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU7: 0x00000000010142\n[    0.019949] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU7: 0x00000010010131\n[    0.019951] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU7: 0x00000010010000\n[    0.020022] CPU7: Booted secondary processor 0x0000000700 [0x411fd440]\n[    0.020182] smp: Brought up 1 node, 8 CPUs\n[    0.020188] SMP: Total of 8 processors activated.\n[    0.020190] CPU features: detected: Privileged Access Never\n[    0.020192] CPU features: detected: LSE atomic instructions\n[    0.020194] CPU features: detected: User Access Override\n[    0.020196] CPU features: detected: 32-bit EL0 Support\n[    0.020198] CPU features: detected: Common not Private translations\n[    0.020200] CPU features: detected: RAS Extension Support\n[    0.020202] CPU features: detected: Data cache clean to the PoU not required for I/D coherence\n[    0.020204] CPU features: detected: CRC32 instructions\n[    0.041948] CPU: All CPU(s) started at EL1\n[    0.042002] alternatives: patching kernel code\n[    0.043560] do_mount: dev: devtmpfs, mount point: / , retval=0\n[    0.043583] devtmpfs: initialized\n[    0.178111] Registered cp15_barrier emulation handler\n[    0.178129] Registered setend emulation handler\n[    0.178468] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.178489] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)\n[    0.187277] ramoops: msm_register_ramoops_device\n[    0.187508] pinctrl core: initialized pinctrl subsystem\n[    0.188290] NET: Registered protocol family 16\n[    0.189789] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.189811] audit: initializing netlink subsys (disabled)\n[    0.190064] ramoops: found existing invalid buffer, size 329375, start 857247\n[    0.190090] ramoops: found existing invalid buffer, size 174, start 686\n[    0.190102] printk: console [pstore-1] enabled\n[    0.190264] pstore: Registered ramoops as persistent store backend\n[    0.190267] ramoops: using 0x400000@0xb0000000, ecc: 0\n[    0.190733] cpuidle: using governor menu\n[    0.190812] NET: Registered protocol family 42\n[    0.191251] hw-breakpoint: found 1 breakpoint and 1 watchpoint registers.\n[    0.191286] audit: type=2000 audit(0.179:1): state=initialized audit_enabled=0 res=1\n[    0.191830] Serial: AMBA PL011 UART driver\n[    0.191968] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.292756] OF: /soc/qcom,cam-res-mgr: could not get #gpio-cells for /soc/funnel@6986000/out-ports/port/endpoint\n[    0.349286] OF: /soc/qcom,cam-res-mgr: could not get #gpio-cells for /soc/funnel@6986000/out-ports/port/endpoint\n[    0.353476] msm-dcc 117f000.dcc_v2: DCC list passed 3\n[    0.353703] msm-dcc 117f000.dcc_v2: All values written to enable.\n[    0.353807] msm-dcc 117f000.dcc_v2: DCC list passed 4\n[    0.354053] msm-dcc 117f000.dcc_v2: All values written to enable.\n[    0.354290] msm-dcc 117f000.dcc_v2: DCC list passed 6\n[    0.354612] msm-dcc 117f000.dcc_v2: All values written to enable.\n[    0.355136] Minidump not enabled.\n[    0.355256] (NULL device *): failed to set download mode: -5\n[    0.355881] Disable GPIO151, 200, 202 wakeup\n[    0.427890] pm8350_s5_level: supplied by pm8350_s9_level\n[    0.428111] pm8350_s5_lvl_ao: supplied by pm8350_s9_level_ao\n[    0.668762] pm8350c_s6_level: supplied by pm8350_s5_level\n[    0.669008] pm8350c_s6_level_ao: supplied by pm8350_s5_lvl_ao\n[    0.682269] pm8350_s9_mmcx_sup_level: supplied by pm8350c_s6_mmcx_sup_level\n[    0.682282] pm8350_s5_mmcx_sup_level: supplied by pm8350_s9_mmcx_sup_level\n[    0.682291] pm8350c_s8_level: supplied by pm8350_s5_mmcx_sup_level\n[    0.682489] pm8350c_s8_level_ao: supplied by pm8350_s5_lvl_ao\n[    0.815125] spmi spmi-0: PMIC arbiter version v5 (0x50020000)\n[    0.834759] sps:sps is ready\n[    0.870151] hh-watchdog hypervisor:qcom,hh-watchdog: QCOM Apps Watchdog Initialized\n[    0.959500] oledb: Bringing 0uV into 5000000-5000000uV\n[    0.959643] ab: Bringing 0uV into 4600000-4600000uV\n[    0.959765] ibb: Bringing 0uV into 1400000-1400000uV\n[    0.979021] cryptd: max_cpu_qlen set to 1000\n[    0.983278] gcc_pcie_0_gdsc: supplied by pm8350c_s6_level\n[    0.983475] gcc_pcie_1_gdsc: supplied by pm8350c_s6_level\n[    0.983674] gcc_ufs_card_gdsc: supplied by pm8350c_s6_level\n[    0.983856] gcc_ufs_phy_gdsc: supplied by pm8350c_s6_level\n[    0.985106] gpu_cc_cx_gdsc: supplied by pm8350c_s6_level\n[    0.985335] gpu_cc_gx_gdsc: supplied by pm8350_s6_level\n[    0.986200] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    1.018820] lahaina-gcc 100000.qcom,gcc: Registered GCC clocks\n[    1.031635] gpu_cc-lahaina 3d90000.qcom,gpucc: Registered GPU CC clocks\n[    1.133042] Rate 19200000 for cam_cc_sleep_clk_src is greater than highest Fmax\n[    1.133046] Rate 19200000 for cam_cc_sleep_clk_src is greater than highest Fmax\n[    1.138391] lahaina-cam_cc ad00000.qcom,camcc: Registered CAM CC clocks\n[    1.165406] video_cc-lahaina abf0000.qcom,videocc: Registered VIDEO CC clocks\n[    1.169351] Minidump: Enabled with max number of regions 200\n[    1.169900] camera_wide_vana_ldo: supplied by pm8350c_bob\n[    1.170117] camera_front_vdig_ldo: supplied by pm8350_s12\n[    1.170320] camera_front_vana_ldo: supplied by pm8350c_bob\n[    1.170526] camera_macro_vana_ldo: supplied by pm8350c_bob\n[    1.171279] qti-reg-fixed-voltage soc:display_gpio_regulator@1: nonexclusive access to GPIO for soc:display_gpio_regulator@1\n[    1.171944] iommu: Default domain type: Translated \n[    1.180250] arm-smmu 3da0000.kgsl-smmu: \tcoherent table walk\n[    1.180255] arm-smmu 3da0000.kgsl-smmu: \tstream matching with 6 register groups\n[    1.182619] SCSI subsystem initialized\n[    1.182741] usbcore: registered new interface driver usbfs\n[    1.182768] usbcore: registered new interface driver hub\n[    1.182881] usbcore: registered new device driver usb\n[    1.183089] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    1.183793] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pmk8350@0:pon_pbs@800: IRQ pmic-wd-bark not found\n[    1.184062] 0x8c0:0x0 0x8c1:0x0 0x8c2:0x0 0x8c3:0x0 0x8c4:0x0 0x8c5:0x0 0x8c6:0x0 0x8c7:0x0 0x8c8:0x8 0x8c9:0x8 0x8ca:0x0 0x8cb:0x0 0x842:0x7 0x84a:0x1 0x852:0x1 \n[    1.184145] use kpdpwr-sw-debounce\n[    1.184308] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pmk8350@0:pon_hlos@1300: IRQ pmic-wd-bark not found\n[    1.184449] input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pmk8350@0:pon_hlos@1300/input/input0\n[    1.185488] 0x13c0:0x0 0x13c1:0x0 0x13c2:0x0 0x13c3:0x0 0x13c4:0x0 0x13c5:0x0 0x13c6:0x0 0x13c7:0x0 0x13c8:0x0 0x13c9:0x0 0x13ca:0x0 0x13cb:0x0 0x1342:0x0 0x134a:0x0 0x1352:0x0 \n[    1.185553] mc: Linux media interface: v0.10\n[    1.185609] videodev: Linux video capture interface: v2.00\n[    1.185721] thermal_sys: Registered thermal governor 'step_wise'\n[    1.185723] thermal_sys: Registered thermal governor 'user_space'\n[    1.197071] Error creating thermal debugfs directory. err:-19\n[    1.198744] thermal_sys: of_parse_thermal_message board sensor: VIRTUAL-SENSOR\n[    1.210971] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=300000 volt=568000, core_count 4\n[    1.210986] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=403200 volt=568000, core_count 4\n[    1.210992] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=499200 volt=568000, core_count 4\n[    1.210998] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=595200 volt=568000, core_count 4\n[    1.211003] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=691200 volt=568000, core_count 4\n[    1.211009] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=806400 volt=588000, core_count 4\n[    1.211014] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=902400 volt=604000, core_count 4\n[    1.211019] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=998400 volt=624000, core_count 4\n[    1.211025] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1094400 volt=640000, core_count 4\n[    1.211030] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1209600 volt=664000, core_count 4\n[    1.211036] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=1305600 volt=688000, core_count 4\n[    1.211041] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=1401600 volt=708000, core_count 4\n[    1.211047] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=1497600 volt=732000, core_count 4\n[    1.211052] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=1612800 volt=764000, core_count 4\n[    1.211058] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=1708800 volt=788000, core_count 4\n[    1.211064] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=1804800 volt=816000, core_count 4\n[    1.211069] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=1804800 volt=816000, core_count 4\n[    1.211111] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=710400 volt=564000, core_count 4\n[    1.211122] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=844800 volt=592000, core_count 4\n[    1.211127] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=960000 volt=612000, core_count 4\n[    1.211133] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=1075200 volt=636000, core_count 4\n[    1.211138] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=1209600 volt=648000, core_count 4\n[    1.211144] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=1324800 volt=672000, core_count 4\n[    1.211149] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=1440000 volt=692000, core_count 4\n[    1.211155] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=1555200 volt=716000, core_count 4\n[    1.211160] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1670400 volt=744000, core_count 4\n[    1.211166] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1766400 volt=764000, core_count 4\n[    1.211171] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=1881600 volt=800000, core_count 4\n[    1.211177] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=1996800 volt=828000, core_count 4\n[    1.211182] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=2112000 volt=860000, core_count 4\n[    1.211188] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=2227200 volt=892000, core_count 4\n[    1.211193] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=2342400 volt=928000, core_count 4\n[    1.211199] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=2419200 volt=976000, core_count 4\n[    1.211204] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=2419200 volt=976000, core_count 4\n[    1.211237] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=844800 volt=580000, core_count 4\n[    1.211247] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=960000 volt=596000, core_count 4\n[    1.211253] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=1075200 volt=604000, core_count 4\n[    1.211258] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=1190400 volt=616000, core_count 4\n[    1.211264] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=1305600 volt=624000, core_count 4\n[    1.211269] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=1420800 volt=640000, core_count 4\n[    1.211275] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=1555200 volt=660000, core_count 4\n[    1.211280] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=1670400 volt=676000, core_count 4\n[    1.211285] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1785600 volt=692000, core_count 4\n[    1.211294] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1900800 volt=712000, core_count 4\n[    1.211299] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=2035200 volt=732000, core_count 4\n[    1.211305] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=2150400 volt=764000, core_count 4\n[    1.211310] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=2265600 volt=800000, core_count 4\n[    1.211316] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=2380800 volt=836000, core_count 4\n[    1.211321] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=2496000 volt=864000, core_count 4\n[    1.211326] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=2592000 volt=900000, core_count 4\n[    1.211332] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=2688000 volt=928000, core_count 4\n[    1.211337] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=17 freq=2764800 volt=952000, core_count 4\n[    1.211343] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=18 freq=2841600 volt=984000, core_count 4\n[    1.211348] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=19 freq=2841600 volt=984000, core_count 4\n[    1.227764] shmbridge is enabled\n[    1.231948] IPA framework init\n[    1.232534] SDAM base=0x7100 size=128 registered successfully\n[    1.232633] SDAM base=0x7400 size=128 registered successfully\n[    1.232731] SDAM base=0x7c00 size=128 registered successfully\n[    1.232829] SDAM base=0x7d00 size=128 registered successfully\n[    1.232926] SDAM base=0x8400 size=128 registered successfully\n[    1.233023] SDAM base=0x8500 size=128 registered successfully\n[    1.233122] SDAM base=0x9d00 size=128 registered successfully\n[    1.233192] Advanced Linux Sound Architecture Driver Initialized.\n[    1.233896] IPA clients manager init\n[    1.233897] ipa_usb driver init\n[    1.233985] ipa_usb registered successfully\n[    1.233987] exit: IPA_USB init success!\n[    1.233990] ipa_wdi3 registered successfully\n[    1.233992] ipa_gsb registered successfully\n[    1.233994] ipa_uc_offload registered successfully\n[    1.233997] ipa_mhi registered successfully\n[    1.234000] ipa_wigig registered successfully\n[    1.234427] Bluetooth: Core ver 2.22\n[    1.234439] NET: Registered protocol family 31\n[    1.234440] Bluetooth: HCI device and connection manager initialized\n[    1.234446] Bluetooth: HCI socket layer initialized\n[    1.234449] Bluetooth: L2CAP socket layer initialized\n[    1.234453] Bluetooth: SCO socket layer initialized\n[    1.234675] pcie:pcie_init.\n[    1.241734] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node sdsp_region\n[    1.250706] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    1.253702] platform soc:qcom,ion:qcom,ion-heap@26: assigned reserved memory node user_contig_region\n[    1.256699] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    1.259697] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    1.262713] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    1.262950] ION heap system created\n[    1.263092] ION heap adsp created\n[    1.263096] ION heap secure_heap created\n[    1.343904] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x80c00000, size 0x4600000\n[    1.343911] ION heap secure_carveout created\n[    1.343919] ION heap spss created\n[    1.343922] ION heap user_contig created\n[    1.343925] ION heap qsecom created\n[    1.343927] ION heap qsecom_ta created\n[    1.343929] ION heap secure_display created\n[    1.345144] clocksource: Switched to clocksource arch_sys_counter\n[    1.391923] VFS: Disk quotas dquot_6.6.0\n[    1.391966] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    1.392746] NET: Registered protocol family 2\n[    1.393114] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)\n[    1.393262] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)\n[    1.393852] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)\n[    1.394596] TCP: Hash tables configured (established 131072 bind 65536)\n[    1.394682] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)\n[    1.394836] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)\n[    1.395060] NET: Registered protocol family 1\n[    1.395453] NET: Registered protocol family 44\n[    1.395461] PCI: CLS 0 bytes, default 64\n[    1.395596] Trying to unpack rootfs image as initramfs...\n[    1.795090] Freeing initrd memory: 18284K\n[    1.796274] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    1.802022] Initialise system trusted keyrings\n[    1.802128] workingset: timestamp_bits=46 max_order=22 bucket_order=0\n[    1.805925] fuse: init (API version 7.31)\n[    1.815458] Key type asymmetric registered\n[    1.815462] Asymmetric key parser 'x509' registered\n[    1.815486] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 239)\n[    1.815489] io scheduler mq-deadline registered\n[    1.815491] io scheduler kyber registered\n[    1.815575] io scheduler bfq registered\n[    1.824257] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    1.824260] qcom-spmi-gpio c440000.qcom,spmi:qcom,pmr735b@5:pinctrl@8800: read 0x4 failed\n[    1.824270] qcom-spmi-gpio: probe of c440000.qcom,spmi:qcom,pmr735b@5:pinctrl@8800 failed with error -5\n[    1.829876] KPI: Bootloader start count = 94077\n[    1.829879] KPI: Bootloader end count = 126565\n[    1.829881] KPI: Bootloader display count = 1543514636\n[    1.829883] KPI: Bootloader load kernel count = 1830635914\n[    1.829887] KPI: Kernel MPM timestamp = 206364\n[    1.829888] KPI: Kernel MPM Clock frequency = 32768\n[    1.832517] v0.15, id=415, ver=2.1, raw_id=309, raw_ver=3, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65583, pmic_die_revision=131072 foundry_id=3 serial_number=2618384733 num_pmics=5 chip_family=0x69 raw_device_family=0x6 raw_device_number=0xf nproduct_id=0x41d num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xf ndefective_parts_array_offset=0xb4 nmodem_supported=0xffffffff\n[    1.833176] lahaina-llcc 9200000.cache-controller: IRQ index 0 not found\n[    1.834399] msm_mem_dump soc:mem_dump: assigned reserved memory node mem_dump_region\n[    1.845964] MSM Memory Dump base table set up\n[    1.845968] MSM Memory Dump apps data table set up\n[    1.847106] llcc_perfmon: Revision 2, has 1 memory controllers connected with LLCC\n[    1.850082] PMIC PON log: Reset Trigger: PS_HOLD\n[    1.850099] PMIC PON log: Reset Type: HARD_RESET\n[    1.850140] PMIC PON log: PON Trigger: USB_CHARGER\n[    1.850154] PMIC PON log: PON Trigger: HARD_RESET\n[    1.850223] PMIC PON log: Reset Trigger: PS_HOLD\n[    1.850237] PMIC PON log: Reset Type: HARD_RESET\n[    1.850278] PMIC PON log: PON Trigger: USB_CHARGER\n[    1.850292] PMIC PON log: PON Trigger: HARD_RESET\n[    1.850365] PMIC PON log: Reset Trigger: PS_HOLD\n[    1.850389] PMIC PON log: Reset Type: HARD_RESET\n[    1.850431] PMIC PON log: PON Trigger: HARD_RESET\n[    1.852755] cdsprm: Init successful\n[    1.853144] 88e0000.qcom,msm-eud: ttyEUD0 at MMIO 0x0 (irq = 39, base_baud = 0) is a EUD UART\n[    1.854173] qbt:qbt_handler_init: entry\n[    1.856591] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled\n[    1.858743] ignore console register\n[    1.859006] ignore cons prob\n[    1.859551] msm_geni_serial_init: Driver initialized\n[    1.860642] Error: swapper/0: fastrpc_device_init: failed to create debugfs root dir\n[    1.860779] fastrpc soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    1.860819] Info: adsprpc (6211): swapper/0: init_secure_vmid_list: secure VMID = 22\n[    1.860822] Info: adsprpc (6211): swapper/0: init_secure_vmid_list: secure VMID = 37\n[    1.860824] adsprpc: fastrpc_init_privileged_gids: privileged GID: 2908\n[    1.860847] adsprpc: fastrpc_setup_service_locator: service location enabled for avs/audio (audio_pdr_adsprpc)\n[    1.860879] adsprpc: fastrpc_setup_service_locator: service location enabled for tms/servreg (sensors_pdr_adsprpc)\n[    1.919993] adsprpc: fastrpc_device_init: SSR notifier registered for adsp\n[    1.919995] adsprpc: fastrpc_device_init: SSR notifier registered for modem\n[    1.919998] adsprpc: fastrpc_device_init: SSR notifier registered for slpi\n[    1.920002] adsprpc: fastrpc_device_init: SSR notifier registered for cdsp\n[    1.933025] adreno-a6xx-gmu 3d6a000.qcom,gmu: Adding to iommu group 0\n[    1.939120] brd: module loaded\n[    1.944007] loop: module loaded\n[    1.944225] zram: Added device: zram0\n[    1.944406] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    1.944908] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    1.944998] platform soc:qcom,ion:qcom,ion-heap@26: assigned reserved memory node user_contig_region\n[    1.945172] qseecom soc:qseecom@c1700000: assigned reserved memory node qseecom_region\n[    1.945217] QSEECOM: qseecom_init_control: qseecom.qsee_version = 0x1402000\n[    1.945260] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE/FDE\n[    1.946005] Loading NFC I2C driver\n[    1.948132] libphy: Fixed MDIO Bus: probed\n[    1.948149] tun: Universal TUN/TAP device driver, 1.6\n[    1.948821] cnss_utils: Unable to create debugfs -19\n[    1.948823] CLD80211: Initializing\n[    1.949112] usbcore: registered new interface driver r8152\n[    1.949125] usbcore: registered new interface driver lan78xx\n[    1.949138] usbcore: registered new interface driver asix\n[    1.949151] usbcore: registered new interface driver ax88179_178a\n[    1.949167] usbcore: registered new interface driver cdc_ether\n[    1.953152] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.956510] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    1.956513] ehci-pci: EHCI PCI platform driver\n[    1.956528] ehci-platform: EHCI generic platform driver\n[    1.957932] usbcore: registered new interface driver uas\n[    1.957947] usbcore: registered new interface driver usb-storage\n[    1.957961] usbcore: registered new interface driver usb_ehset_test\n[    1.957974] usbcore: registered new interface driver lvs\n[    1.958432] dummy_hcd dummy_hcd.0: USB Host+Gadget Emulator, driver 02 May 2005\n[    1.958440] dummy_hcd dummy_hcd.0: Dummy host controller\n[    1.958447] dummy_hcd dummy_hcd.0: new USB bus registered, assigned bus number 1\n[    1.958839] hub 1-0:1.0: USB hub found\n[    1.958862] hub 1-0:1.0: 1 port detected\n[    1.959822] usbcore: registered new interface driver xpad\n[    1.959837] usbcore: registered new interface driver usbtouchscreen\n[    1.960112] xiaomi_touch_probe: kernel base:-537682018304, phy base:14221279232\n[    1.960113] xiaomi_touch_probe enter\n[    1.960116] xiaomi_touch_parse_dt touch,name:xiaomi-touch\n[    1.960254] xiaomi_touch_probe over\n[    1.960419] aw8697 driver version v1.1.3\n[    1.960435] aw8697_i2c_init success\n[    1.960662] gf_platform: gf::gpio-reset:347\n[    1.960668] gf_platform: gf::irq_gpio:346\n[    1.960824] input: uinput-goodix as /devices/virtual/input/input1\n[    1.960954] goodix_fp soc:fingerprint_goodix: fp enable_regulator_3V0: of vreg successful found\n[    1.961400] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 339, hwirq 38\n[    1.961405] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 99\n[    1.961413] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 339 parent hwirq 99\n[    1.961467] goodix_fod: version V1.2.01\n[    1.961588] goodix_fod: goodix status = 0x0\n[    1.962580] rtc-pm8xxx c440000.qcom,spmi:qcom,pmk8350@0:rtc@6100: registered as rtc0\n[    1.962631] rtc-pm8xxx c440000.qcom,spmi:qcom,pmk8350@0:rtc@6100: setting system clock to 1970-10-15T09:12:16 UTC (24829936)\n[    1.962810] i2c /dev entries driver\n[    1.963427] synx: synx device initialization start\n[    1.963520] synx: synx device initialization success\n[    1.964144] uvcvideo: Unable to create debugfs directory\n[    1.964161] usbcore: registered new interface driver uvcvideo\n[    1.964162] USB Video Class driver (1.1.1)\n[    1.964164] gspca_main: v2.14.0 registered\n[    1.965414] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    1.965419] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    1.965815] device-mapper: uevent: version 1.0.3\n[    1.965990] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com\n[    1.966210] device-mapper: verity-avb: AVB error handler initialized with vbmeta device: \n[    1.966469] bt_dt_parse_vreg_info: qcom,bt-vdd-io is not provided in device tree\n[    1.966519] bt_dt_parse_vreg_info: qcom,bt-vdd-rfacmn is not provided in device tree\n[    1.966530] bt_dt_parse_vreg_info: qcom,bt-vdd-rfa-0p8 is not provided in device tree\n[    1.966714] bt-debug-gpio not provided in devicetree\n[    1.966717] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.966718] bt_power_populate_dt_pinfo: clock not provided in device tree\n[    1.966789] TCS CMD base address is 0x000000000b2e5510 with length 0x0000000000000690\n[    1.967407] cpuidle: using governor qcom\n[    1.967651] lpm_levels: Cluster (L3) stats not registered\n[    1.972390] hidraw: raw HID events driver (C) Jiri Kosina\n[    1.972852] usbcore: registered new interface driver usbhid\n[    1.972854] usbhid: USB HID core driver\n[    1.973167] ashmem: initialized\n[    1.973253] wlan_hdd_state wlan major(493) initialized\n[    1.973548] haven: Haven: disabling HYP UART\n[    1.974010] hh_msgq: Registered client for label: 0\n[    2.033920] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): allocate IRQ 340, hwirq 8\n[    2.033925] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): found parent hwirq 144\n[    2.033931] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): alloc_irqs_parent for 340 parent hwirq 144\n[    2.035616] qcom-llcc-pmu 9095000.llcc-pmu: Registered llcc_pmu, type: 8\n[    2.045552] random: fast init done\n[    2.046595] gnss: GNSS driver registered with major 491\n[    2.047125] usbcore: registered new interface driver snd-usb-audio\n[    2.047825] DATARMNETb1c42acd9c(): rmnet_offload initializing\n[    2.047829] DATARMNET163e93649e(): Starting rmnet SHS module 9731 \n[    2.048483] [mi_disp:mi_disp_core_init] [info]mi disp_core driver initialized!\n[    2.048493] [mi_disp:mi_disp_cdev_register] [info]cdev name = disp_feature, dev_id = (490:0)\n[    2.048600] [mi_disp:mi_disp_feature_init] [info]mi disp_feature driver initialized!\n[    2.049114] dsi_phy ae94400.qcom,mdss_dsi_phy0: ae94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    2.049228] [drm:dsi_pll_init] [msm-dsi-info]: DSI_PLL_0: DSI pll label = dsi_pll_5nm\n[    2.049233] [drm:dsi_pll_init] [msm-dsi-info]: DSI_PLL_0: PLL SSC enabled\n[    2.049241] dsi_pll_init: PLL base=(____ptrval____)\n[    2.049498] dsi_pll_5nm_get_gdsc_status: reg:0xf822f000 status:1\n[    2.049504] vco_5nm_recalc_rate: handoff_resources true\n[    2.049733] dsi_pll_5nm_get_gdsc_status: reg:0xf822f000 status:1\n[    2.049737] vco_5nm_recalc_rate: handoff_resources true\n[    2.049980] dsi_pll_clock_register_5nm: Registered DSI PLL ndx=0, clocks successfully\n[    2.050180] [drm:dsi_phy_driver_probe] [msm-dsi-info]: DSI_0: Probe successful\n[    2.050256] dsi_phy ae96400.qcom,mdss_dsi_phy1: ae96400.qcom,mdss_dsi_phy1 supply gdsc not found, using dummy regulator\n[    2.050350] [drm:dsi_pll_init] [msm-dsi-info]: DSI_PLL_0: DSI pll label = dsi_pll_5nm\n[    2.050354] [drm:dsi_pll_init] [msm-dsi-info]: DSI_PLL_1: PLL SSC enabled\n[    2.050361] dsi_pll_init: PLL base=(____ptrval____)\n[    2.050420] dsi_pll_5nm_get_gdsc_status: reg:0xf822f000 status:1\n[    2.055459] vco_5nm_recalc_rate: PLL not enabled\n[    2.055461] vco_5nm_recalc_rate: handoff_resources false\n[    2.055688] dsi_pll_5nm_get_gdsc_status: reg:0xf822f000 status:1\n[    2.060730] vco_5nm_recalc_rate: PLL not enabled\n[    2.060732] vco_5nm_recalc_rate: handoff_resources false\n[    2.060993] dsi_pll_clock_register_5nm: Registered DSI PLL ndx=1, clocks successfully\n[    2.060998] [drm:dsi_phy_driver_probe] [msm-dsi-info]: DSI_1: Probe successful\n[    2.062530] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.062537] [drm:dsi_ctrl_get] *ERROR* [msm-dsi-error]: inv: Device with of node not found rc=-517\n[    2.068153] voice_init: rc=0\n[    2.068813] [CSPL] Initializing misc device\n[    2.069216] [ELUS] : (elliptic_driver_init) : elliptic_class creation name chardev\n[    2.075962] msm-auxpcm-dev soc:qcom,msm-pri-auxpcm: island supported entry not found\n[    2.075967] msm-auxpcm-dev soc:qcom,msm-pri-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.075978] msm-auxpcm-dev soc:qcom,msm-pri-auxpcm: dev name soc:qcom,msm-pri-auxpcm\n[    2.076017] msm-auxpcm-dev soc:qcom,msm-sec-auxpcm: island supported entry not found\n[    2.076021] msm-auxpcm-dev soc:qcom,msm-sec-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.076029] msm-auxpcm-dev soc:qcom,msm-sec-auxpcm: dev name soc:qcom,msm-sec-auxpcm\n[    2.076072] msm-auxpcm-dev soc:qcom,msm-tert-auxpcm: island supported entry not found\n[    2.076076] msm-auxpcm-dev soc:qcom,msm-tert-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.076084] msm-auxpcm-dev soc:qcom,msm-tert-auxpcm: dev name soc:qcom,msm-tert-auxpcm\n[    2.076119] msm-auxpcm-dev soc:qcom,msm-quat-auxpcm: island supported entry not found\n[    2.076122] msm-auxpcm-dev soc:qcom,msm-quat-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.076130] msm-auxpcm-dev soc:qcom,msm-quat-auxpcm: dev name soc:qcom,msm-quat-auxpcm\n[    2.076165] msm-auxpcm-dev soc:qcom,msm-quin-auxpcm: island supported entry not found\n[    2.076168] msm-auxpcm-dev soc:qcom,msm-quin-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.076176] msm-auxpcm-dev soc:qcom,msm-quin-auxpcm: dev name soc:qcom,msm-quin-auxpcm\n[    2.076210] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: island supported entry not found\n[    2.076214] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.076221] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: dev name soc:qcom,msm-sen-auxpcm\n[    2.076540] msm_dai_q6_probe: dev name soc:qcom,msm-dai-q6, id:-1\n[    2.102529] msm-dai-q6 soc:qcom,msm-dai-q6: msm_dai_q6_probe: added child node\n[    2.102890] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6-afe-loopback-tx, id:24577\n[    2.103063] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-sb-7-rx, id:16398\n[    2.103101] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-sb-7-tx, id:16399\n[    2.103133] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-sb-8-tx, id:16401\n[    2.103162] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-bt-sco-rx, id:12288\n[    2.103191] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-bt-sco-tx, id:12289\n[    2.103218] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-int-fm-rx, id:12292\n[    2.103246] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-int-fm-tx, id:12293\n[    2.103273] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-be-afe-pcm-rx, id:224\n[    2.103301] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-be-afe-pcm-tx, id:225\n[    2.103332] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-afe-proxy-rx, id:241\n[    2.103360] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-afe-proxy-tx, id:240\n[    2.103388] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-incall-record-rx, id:32771\n[    2.103416] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-incall-record-tx, id:32772\n[    2.103445] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-incall-music-rx, id:32773\n[    2.103473] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-incall-music-2-rx, id:32770\n[    2.103501] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-afe-proxy-tx-1, id:242\n[    2.103528] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-proxy-rx, id:8194\n[    2.103558] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-proxy-tx, id:8195\n[    2.103586] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-usb-audio-rx, id:28672\n[    2.103614] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-usb-audio-tx, id:28673\n[    2.105701] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim dev id 0x0\n[    2.105707] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim Rx line 0x3 , Tx ine 0x0\n[    2.105710] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim: island supported entry not found\n[    2.105714] msm_dai_q6_mi2s_get_lineconfig: no line is assigned\n[    2.105718] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x5 capture sdline 0x0\n[    2.105721] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 4 capture ch_mx 0\n[    2.107047] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec dev id 0x1\n[    2.107051] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec Rx line 0x1 , Tx ine 0x0\n[    2.107055] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec: island supported entry not found\n[    2.107057] msm_dai_q6_mi2s_get_lineconfig: no line is assigned\n[    2.107060] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x1 capture sdline 0x0\n[    2.107064] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 2 capture ch_mx 0\n[    2.108395] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert dev id 0x2\n[    2.108400] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert Rx line 0x0 , Tx ine 0x3\n[    2.108404] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert: island supported entry not found\n[    2.108406] msm_dai_q6_mi2s_get_lineconfig: no line is assigned\n[    2.108410] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x0 capture sdline 0x5\n[    2.108413] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 0 capture ch_mx 4\n[    2.109737] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat dev id 0x3\n[    2.109741] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat Rx line 0x1 , Tx ine 0x2\n[    2.109745] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat: island supported entry not found\n[    2.109749] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x1 capture sdline 0x2\n[    2.109752] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 2 capture ch_mx 2\n[    2.111100] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin dev id 0x4\n[    2.111105] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin Rx line 0x1 , Tx ine 0x2\n[    2.111109] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin: island supported entry not found\n[    2.111112] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x1 capture sdline 0x2\n[    2.111115] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 2 capture ch_mx 2\n[    2.112432] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary dev id 0x5\n[    2.112436] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary Rx line 0x0 , Tx ine 0x3\n[    2.112440] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary: island supported entry not found\n[    2.112442] msm_dai_q6_mi2s_get_lineconfig: no line is assigned\n[    2.112446] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x0 capture sdline 0x5\n[    2.112449] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 0 capture ch_mx 4\n[    2.112470] msm-dai-mi2s soc:qcom,msm-dai-mi2s: msm_dai_mi2s_q6_probe: added child node\n[    2.112823] msm_dai_q6_spdif_dev_probe: dev name soc:qcom,msm-dai-q6-spdif-pri-rx, id:20480\n[    2.112865] msm_dai_q6_spdif_dev_probe: dev name soc:qcom,msm-dai-q6-spdif-pri-tx, id:20481\n[    2.112899] msm_dai_q6_spdif_dev_probe: dev name soc:qcom,msm-dai-q6-spdif-sec-rx, id:20482\n[    2.112933] msm_dai_q6_spdif_dev_probe: dev name soc:qcom,msm-dai-q6-spdif-sec-tx, id:20483\n[    2.113575] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9100\n[    2.113580] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.113585] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.113588] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.113592] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.113596] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.114910] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: island supported entry not found\n[    2.114915] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.114919] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.114923] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.114926] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.114930] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.114933] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.114956] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: added child node\n[    2.114992] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9101\n[    2.114996] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.114999] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.115003] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.115006] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.115010] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.116317] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: island supported entry not found\n[    2.116323] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.116327] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.116331] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.116335] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.116340] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.116344] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.116369] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: added child node\n[    2.116403] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9110\n[    2.116407] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.116412] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.116416] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.116420] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.116423] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.117731] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: island supported entry not found\n[    2.117735] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.117739] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.117743] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.117747] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.117751] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.117754] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.117776] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: added child node\n[    2.117811] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9111\n[    2.117814] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.117818] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.117821] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.117824] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.117828] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.119139] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: island supported entry not found\n[    2.119143] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.119147] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.119150] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.119154] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.119158] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.119161] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.119184] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: added child node\n[    2.119216] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9120\n[    2.119219] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x2\n[    2.119223] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.119226] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.119230] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.119233] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.120573] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: island supported entry not found\n[    2.120578] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x0\n[    2.120582] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.120585] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.120589] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.120593] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.120596] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.121928] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: island supported entry not found\n[    2.121932] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x0\n[    2.121936] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.121939] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.121943] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.121947] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.121950] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.121973] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: added child node\n[    2.122006] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9121\n[    2.122010] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x2\n[    2.122013] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.122017] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.122020] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.122023] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.123333] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: island supported entry not found\n[    2.123337] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x0\n[    2.123341] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.123345] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.123348] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.123352] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.123355] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.124681] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: island supported entry not found\n[    2.124686] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x0\n[    2.124690] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.124693] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.124697] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.124702] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.124706] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.124729] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: added child node\n[    2.124766] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9130\n[    2.124770] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.124774] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.124778] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.124781] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.124785] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.126094] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: island supported entry not found\n[    2.126098] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.126102] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.126105] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.126109] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.126113] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.126116] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.126139] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: added child node\n[    2.126174] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9131\n[    2.126178] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.126181] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.126185] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.126188] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.126191] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.127501] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: island supported entry not found\n[    2.127505] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.127509] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.127513] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.127516] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.127520] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.127524] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.127547] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: added child node\n[    2.127582] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9140\n[    2.127585] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.127589] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.127592] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.127595] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.127599] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.128915] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: island supported entry not found\n[    2.128919] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.128923] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.128927] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.128931] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.128934] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.128938] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.128960] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: added child node\n[    2.128994] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9141\n[    2.128997] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.129001] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.129004] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.129008] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.129011] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.130353] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: island supported entry not found\n[    2.130357] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.130361] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.130364] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.130368] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.130372] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.130375] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.130402] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: added child node\n[    2.130437] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9150\n[    2.130441] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.130444] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.130448] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.130451] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.130454] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.131763] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: island supported entry not found\n[    2.131768] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.131771] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.131775] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.131779] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.131783] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.131786] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.131809] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: added child node\n[    2.131843] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9151\n[    2.131847] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.131851] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.131854] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.131857] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.131860] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.133164] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: island supported entry not found\n[    2.133169] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.133173] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.133178] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.133182] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.133186] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.133190] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.133213] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: added child node\n[    2.135172] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-rx dev id 0xb000\n[    2.135176] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-rx: island supported entry not found\n[    2.135179] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-rx: cdc dma data align supported entry not found\n[    2.136499] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-tx dev id 0xb001\n[    2.136503] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-tx: island supported entry not found\n[    2.136506] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-tx: cdc dma data align supported entry not found\n[    2.137828] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-rx dev id 0xb002\n[    2.137832] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-rx: island supported entry not found\n[    2.137835] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-rx: cdc dma data align supported entry not found\n[    2.139154] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-tx dev id 0xb003\n[    2.139158] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-tx: island supported entry not found\n[    2.139161] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-tx: cdc dma data align supported entry not found\n[    2.140504] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-2-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-2-tx dev id 0xb005\n[    2.140508] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-2-tx: island supported entry not found\n[    2.140511] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-2-tx: cdc dma data align supported entry not found\n[    2.141840] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-0-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-0-tx dev id 0xb021\n[    2.141844] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-0-tx: cdc dma data align supported entry not found\n[    2.143169] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-1-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-1-tx dev id 0xb023\n[    2.143173] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-1-tx: island supported entry not found\n[    2.143176] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-1-tx: cdc dma data align supported entry not found\n[    2.144496] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-2-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-2-tx dev id 0xb025\n[    2.144500] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-2-tx: island supported entry not found\n[    2.144503] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-2-tx: cdc dma data align supported entry not found\n[    2.145831] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-0-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-0-rx dev id 0xb030\n[    2.145835] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-0-rx: island supported entry not found\n[    2.145838] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-0-rx: cdc dma data align supported entry not found\n[    2.147156] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-1-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-1-rx dev id 0xb032\n[    2.147160] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-1-rx: island supported entry not found\n[    2.147163] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-1-rx: cdc dma data align supported entry not found\n[    2.148489] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-2-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-2-rx dev id 0xb034\n[    2.148493] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-2-rx: island supported entry not found\n[    2.148496] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-2-rx: cdc dma data align supported entry not found\n[    2.149816] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-3-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-3-rx dev id 0xb036\n[    2.149820] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-3-rx: island supported entry not found\n[    2.149824] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-3-rx: cdc dma data align supported entry not found\n[    2.151186] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-4-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-4-rx dev id 0xb038\n[    2.151190] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-4-rx: island supported entry not found\n[    2.151193] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-4-rx: cdc dma data align supported entry not found\n[    2.152513] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-5-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-5-rx dev id 0xb03a\n[    2.152517] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-5-rx: island supported entry not found\n[    2.152520] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-5-rx: cdc dma data align supported entry not found\n[    2.153849] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-6-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-6-rx dev id 0xb03c\n[    2.153853] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-6-rx: island supported entry not found\n[    2.155175] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-7-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-7-rx dev id 0xb03e\n[    2.155179] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-7-rx: island supported entry not found\n[    2.155182] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-7-rx: cdc dma data align supported entry not found\n[    2.156507] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-0-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-0-tx dev id 0xb031\n[    2.156511] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-0-tx: island supported entry not found\n[    2.156514] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-0-tx: cdc dma data align supported entry not found\n[    2.157837] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-1-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-1-tx dev id 0xb033\n[    2.157841] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-1-tx: island supported entry not found\n[    2.157845] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-1-tx: cdc dma data align supported entry not found\n[    2.159165] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-2-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-2-tx dev id 0xb035\n[    2.159170] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-2-tx: island supported entry not found\n[    2.159173] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-2-tx: cdc dma data align supported entry not found\n[    2.160537] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-3-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-3-tx dev id 0xb037\n[    2.160541] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-3-tx: island supported entry not found\n[    2.160544] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-3-tx: cdc dma data align supported entry not found\n[    2.161871] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-4-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-4-tx dev id 0xb039\n[    2.161876] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-4-tx: island supported entry not found\n[    2.161879] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-4-tx: cdc dma data align supported entry not found\n[    2.163204] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-5-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-5-tx dev id 0xb03b\n[    2.163209] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-5-tx: island supported entry not found\n[    2.163212] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-5-tx: cdc dma data align supported entry not found\n[    2.163235] msm-dai-cdc-dma soc:qcom,msm-dai-cdc-dma: msm_dai_cdc_dma_q6_probe: added child node\n[    2.167593] voice_alloc_cal_mem_map_table: data 0000000000000000 phys (____ptrval____)\n[    2.167943] voice_alloc_cal_mem_map_table: data 0000000000000000 phys (____ptrval____)\n[    2.191796] u32 classifier\n[    2.191798]     input device check on\n[    2.191799]     Actions configured\n[    2.192383] xt_time: kernel timezone is -0000\n[    2.192485] wireguard: WireGuard 1.0.20210606 loaded. See www.wireguard.com for information.\n[    2.192486] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    2.192539] ipip: IPv4 and MPLS over IPv4 tunneling driver\n[    2.192833] gre: GRE over IPv4 demultiplexor driver\n[    2.192836] ip_gre: GRE over IPv4 tunneling driver\n[    2.193364] IPv4 over IPsec tunneling driver\n[    2.193688] iptable_raw: Enabling raw table before defrag\n[    2.193792] Initializing XFRM netlink socket\n[    2.193802] IPsec XFRM device driver\n[    2.194071] NET: Registered protocol family 10\n[    2.194836] Segment Routing with IPv6\n[    2.194906] mip6: Mobile IPv6\n[    2.195006] ip6table_raw: Enabling raw table before defrag\n[    2.195283] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    2.195718] ip6_gre: GRE over IPv6 tunneling driver\n[    2.195944] NET: Registered protocol family 17\n[    2.195956] NET: Registered protocol family 15\n[    2.196103] Bluetooth: RFCOMM TTY layer initialized\n[    2.196108] Bluetooth: RFCOMM socket layer initialized\n[    2.196110] Bluetooth: RFCOMM ver 1.11\n[    2.196112] Bluetooth: HIDP (Human Interface Emulation) ver 1.2\n[    2.196116] Bluetooth: HIDP socket layer initialized\n[    2.196136] l2tp_core: L2TP core driver, V2.0\n[    2.196138] tipc: Activated (version 2.0.0)\n[    2.196211] NET: Registered protocol family 30\n[    2.196283] tipc: Started in single node mode\n[    2.197420] qcom_haven_qrtr soc:qrtr-haven: cant parse shared mem node!\n[    2.197433] qcom_haven_qrtr: probe of soc:qrtr-haven failed with error -22\n[    2.197981] No device name found in device tree.\n[    2.198893] ch_haven_recv soc:qcom,svm_neuron_block:channel0: cant parse shared mem node!\n[    2.198897] ch_haven_recv soc:qcom,svm_neuron_block:channel0: failed to map memory -22\n[    2.198903] ch_haven_recv: probe of soc:qcom,svm_neuron_block:channel0 failed with error -22\n[    2.199415] ch_haven_send soc:qcom,svm_neuron_block:channel1: cant parse shared mem node!\n[    2.199422] ch_haven_send: probe of soc:qcom,svm_neuron_block:channel1 failed with error -22\n[    2.200127] registered taskstats version 1\n[    2.200129] Loading compiled-in X.509 certificates\n[    2.200195] Key type ._fscrypt registered\n[    2.200197] Key type .fscrypt registered\n[    2.200199] Key type fscrypt-provisioning registered\n[    2.200298] pstore: Invalid compression size for deflate: 0\n[    2.235813] Unable to find log_buf by kallsyms!\n[    2.236018] spss_utils [spss_parse_dt]: iar_buf_addr [0x8d800000].\n[    2.239650] cnss: use-pm-domain is 1\n[    2.239655] cnss: set_wlaon_pwr_ctrl is 0\n[    2.239662] cnss: TCS CMD base address is 0x000000000b2e5510 with length 0x0000000000000690\n[    2.239679] cnss2 b0000000.qcom,cnss-qca6490: can't request region for resource [mem 0x0b2e5510-0x0b2e5b9f]\n[    2.239681] cnss: Failed to map TCS CMD address, err = -16\n[    2.239686] cnss: CommandDB name is not present for CPR\n[    2.239865] cnss: Got regulator: vdd-wlan-io, min_uv: 1800000, max_uv: 1800000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.240138] cnss: Got regulator: wlan-ant-switch, min_uv: 2800000, max_uv: 2800000, load_ua: 0, delay_us: 0, need_unvote: 0\n[    2.240225] cnss: Got regulator: vdd-wlan-aon, min_uv: 950000, max_uv: 952000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.240280] cnss: Got regulator: vdd-wlan-dig, min_uv: 950000, max_uv: 952000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.240333] cnss: Got regulator: vdd-wlan-rfa1, min_uv: 1880000, max_uv: 1880000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.240388] cnss: Got regulator: vdd-wlan-rfa2, min_uv: 1350000, max_uv: 1350000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.240421] cnss: Failed to get optional clock rf_clk, err = -2\n[    2.240507] cnss: BT GPIO: 373\n[    2.240511] cnss: Regulator vdd-wlan-io is being enabled\n[    2.240642] cnss: Regulator wlan-ant-switch is being enabled\n[    2.240997] cnss: Regulator vdd-wlan-aon is being enabled\n[    2.241596] cnss: Regulator vdd-wlan-dig is being enabled\n[    2.241710] cnss: Regulator vdd-wlan-rfa1 is being enabled\n[    2.241823] cnss: Regulator vdd-wlan-rfa2 is being enabled\n[    2.241926] cnss: BT_EN_GPIO State: Off. Delay WLAN_GPIO enable\n[    2.243210] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.243222] [drm:dsi_ctrl_get] *ERROR* [msm-dsi-error]: inv: Device with of node not found rc=-517\n[    2.248553] disp_cc_pll0 PLL is already enabled\n[    2.248728] disp_cc-lahaina af00000.qcom,dispcc: Registered DISP CC clocks\n[    2.248857] cam_cc_bps_gdsc: supplied by pm8350c_s8_level\n[    2.249062] cam_cc_ife_0_gdsc: supplied by pm8350c_s8_level\n[    2.249245] cam_cc_ife_1_gdsc: supplied by pm8350c_s8_level\n[    2.249424] cam_cc_ife_2_gdsc: supplied by pm8350c_s8_level\n[    2.249605] cam_cc_ipe_0_gdsc: supplied by pm8350c_s8_level\n[    2.249794] cam_cc_sbi_gdsc: supplied by pm8350c_s8_level\n[    2.249991] cam_cc_titan_top_gdsc: supplied by pm8350c_s8_level\n[    2.250202] disp_cc_mdss_core_gdsc: supplied by pm8350c_s8_level\n[    2.250424] video_cc_mvs0_gdsc: supplied by pm8350c_s8_level\n[    2.250600] video_cc_mvs0c_gdsc: supplied by pm8350c_s8_level\n[    2.250773] video_cc_mvs1_gdsc: supplied by pm8350c_s8_level\n[    2.250944] video_cc_mvs1c_gdsc: supplied by pm8350c_s8_level\n[    2.251274] msm_drm ae00000.qcom,mdss_mdp: qcom,sde_rscc not probed yet\n[    2.254068] rmnet_ipa3 started initialization\n[    2.262994] random: crng init done\n[    2.277730] arm-smmu 15000000.apps-smmu: \tcoherent table walk\n[    2.277735] arm-smmu 15000000.apps-smmu: \tstream matching with 89 register groups\n[    2.279012] msm-dwc3 a600000.ssusb: Adding to iommu group 1\n[    2.279304] msm-dwc3 a600000.ssusb: IRQ hs_phy_irq not found\n[    2.281316] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.283034] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    2.283103] sps:BAM 0x000000000a704000 is registered\n[    2.285930] msm_vidc_v4l2 aa00000.qcom,vidc:non_secure_cb: Adding to iommu group 2\n[    2.287917] msm_vidc_v4l2 aa00000.qcom,vidc:secure_non_pixel_cb: Adding to iommu group 3\n[    2.289756] msm_vidc_v4l2 aa00000.qcom,vidc:secure_bitstream_cb: Adding to iommu group 4\n[    2.291611] msm_vidc_v4l2 aa00000.qcom,vidc:secure_pixel_cb: Adding to iommu group 5\n[    2.294569] coresight-clk-disable-amba 6048000.tmc: Adding to iommu group 6\n[    2.297613] kgsl-3d 3d00000.qcom,kgsl-3d0: bound 3d6a000.qcom,gmu (ops 0xffffffdc927ca2e8)\n[    2.302636] platform 3da0000.qcom,kgsl-iommu:gfx3d_user: Adding to iommu group 7\n[    2.303690] platform 3da0000.qcom,kgsl-iommu:gfx3d_lpac: Adding to iommu group 8\n[    2.304601] platform 3da0000.qcom,kgsl-iommu:gfx3d_secure: Adding to iommu group 9\n[    2.311646] msm_cvp ab00000.qcom,cvp:cvp_non_secure_cb: Adding to iommu group 10\n[    2.313447] msm_cvp ab00000.qcom,cvp:cvp_secure_nonpixel_cb: Adding to iommu group 11\n[    2.315270] msm_cvp ab00000.qcom,cvp:cvp_secure_pixel_cb: Adding to iommu group 12\n[    2.316647] msm_cvp ab00000.qcom,cvp:qcom,msm-cvp,mem_cdsp: assigned reserved memory node cdsp_region\n[    2.322652] gpi_dma 900000.qcom,gpi-dma: Adding to iommu group 13\n[    2.323815] gpi_dma a00000.qcom,gpi-dma: Adding to iommu group 14\n[    2.325087] gpi_dma 800000.qcom,gpi-dma: Adding to iommu group 15\n[    2.326284] minidump-id not found for ipa_fws\n[    2.326335] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    2.326447] subsys-pil-tz soc:qcom,ipa_fws: for md_ipa_fws segments only will be dumped.\n[    2.326787] minidump-id not found for evass\n[    2.326824] subsys-pil-tz abb0000.qcom,evass: for evass segments only will be dumped.\n[    2.326904] subsys-pil-tz abb0000.qcom,evass: for md_evass segments only will be dumped.\n[    2.327224] minidump-id not found for trustedvm\n[    2.327260] subsys-pil-tz soc:qcom,trustedvm@d0800000: for trustedvm segments only will be dumped.\n[    2.327341] subsys-pil-tz soc:qcom,trustedvm@d0800000: for md_trustedvm segments only will be dumped.\n[    2.327651] minidump-id not found for a660_zap\n[    2.327695] subsys-pil-tz soc:qcom,kgsl-hyp: for a660_zap segments only will be dumped.\n[    2.327773] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a660_zap segments only will be dumped.\n[    2.328162] hh_msgq: Registered client for label: 1\n[    2.328573] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1: Adding to iommu group 16\n[    2.328988] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2: Adding to iommu group 17\n[    2.329395] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3: Adding to iommu group 18\n[    2.329799] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4: Adding to iommu group 19\n[    2.330221] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5: Adding to iommu group 20\n[    2.330623] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6: Adding to iommu group 21\n[    2.331031] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7: Adding to iommu group 22\n[    2.331450] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8: Adding to iommu group 23\n[    2.332188] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9: Adding to iommu group 24\n[    2.332598] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10: Adding to iommu group 25\n[    2.333005] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11: Adding to iommu group 26\n[    2.333402] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12: Adding to iommu group 27\n[    2.333803] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13: Adding to iommu group 28\n[    2.334213] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14: Adding to iommu group 29\n[    2.334603] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb15: Adding to iommu group 30\n[    2.335012] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb16: Adding to iommu group 31\n[    2.335431] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb17: Adding to iommu group 32\n[    2.335835] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb18: Adding to iommu group 33\n[    2.336264] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb19: Adding to iommu group 34\n[    2.336569] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.336574] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.337058] qce 1de0000.qcedev: Adding to iommu group 35\n[    2.337515] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    2.337668] qce 1de0000.qcedev: QTI Crypto 5.6.0 device found @0x1de0000\n[    2.337741] sps:BAM 0x0000000001dc4000 is registered\n[    2.337815] sps:BAM 0x0000000001dc4000 (va:0x000000008079bd7f) enabled: ver:0x27, number of pipes:16\n[    2.337915] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 40\n[    2.339719] qce 1de0000.qcedev:qcom_cedev_ns_cb: Adding to iommu group 36\n[    2.341667] qce 1de0000.qcedev:qcom_cedev_s_cb: Adding to iommu group 37\n[    2.342103] qcrypto 1de0000.qcrypto: Adding to iommu group 38\n[    2.342315] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    2.342468] qcrypto 1de0000.qcrypto: QTI Crypto 5.6.0 device found @0x1de0000\n[    2.342575] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 40\n[    2.342830] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    2.342966] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    2.343076] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    2.343175] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    2.343274] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    2.343367] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    2.343452] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    2.343540] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    2.343625] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    2.343712] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    2.343798] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    2.343884] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    2.343968] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    2.344067] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    2.344153] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    2.344239] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    2.344326] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    2.344412] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    2.344498] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    2.344584] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    2.346422] uaudio-qmi soc:usb_audio_qmi_dev: Adding to iommu group 39\n[    2.347271] [sde_rsc_hw:rsc_hw_init_v3:538]: sde rsc init successfully done\n[    2.347287] [sde_rsc:sde_rsc_probe:1778]: sde rsc index:0 probed successfully\n[    2.347656] msmdrm_smmu soc:qcom,smmu_sde_unsec_cb: Adding to iommu group 40\n[    2.347745] [drm] probing device qcom,smmu_sde_unsec\n[    2.347748] [drm] Created domain mdp_ns, secure=0\n[    2.348328] msmdrm_smmu soc:qcom,smmu_sde_sec_cb: Adding to iommu group 41\n[    2.348414] [drm] probing device qcom,smmu_sde_sec\n[    2.348417] [drm] Created domain mdp_s, secure=1\n[    2.348610] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    2.348804] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    2.349195] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_ife: Adding to iommu group 42\n[    2.349663] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_jpeg: Adding to iommu group 43\n[    2.350228] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_icp: Adding to iommu group 44\n[    2.350694] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm: Adding to iommu group 45\n[    2.351078] cnss: Assert WLAN_EN GPIO successfully\n[    2.351094] cnss: Failed to enable PCIe RC0, err = -517\n[    2.351097] cnss: Retry PCI link training #1\n[    2.351105] cnss: Failed to enable PCIe RC0, err = -517\n[    2.351107] cnss: Retry PCI link training #2\n[    2.351115] cnss: Failed to enable PCIe RC0, err = -517\n[    2.351117] cnss: Retry PCI link training #3\n[    2.351124] cnss: Failed to enable PCIe RC0, err = -517\n[    2.351135] cnss: De-assert WLAN_EN GPIO successfully\n[    2.351138] cnss: Regulator vdd-wlan-rfa2 is being disabled\n[    2.351191] cnss: Regulator vdd-wlan-rfa1 is being disabled\n[    2.351229] cnss: Regulator vdd-wlan-dig is being disabled\n[    2.351266] cnss: Regulator vdd-wlan-aon is being disabled\n[    2.351302] cnss: Regulator wlan-ant-switch is being disabled\n[    2.351325] cnss: Regulator vdd-wlan-io is being disabled\n[    2.351349] cnss: Put regulator: vdd-wlan-io\n[    2.351408] cnss: Put regulator: wlan-ant-switch\n[    2.351446] cnss: Put regulator: vdd-wlan-aon\n[    2.351463] spss_utils [spss_parse_dt]: iar_buf_addr [0x8d800000].\n[    2.351482] cnss: Put regulator: vdd-wlan-dig\n[    2.351517] cnss: Put regulator: vdd-wlan-rfa1\n[    2.351553] cnss: Put regulator: vdd-wlan-rfa2\n[    2.353485] qupv3_geni_se 9c0000.qcom,qupv3_0_geni_se: Adding to iommu group 46\n[    2.353957] qupv3_geni_se ac0000.qcom,qupv3_1_geni_se: Adding to iommu group 47\n[    2.354421] qupv3_geni_se 8c0000.qcom,qupv3_2_geni_se: Adding to iommu group 48\n[    2.356796] ufshcd-qcom 1d84000.ufshc: Adding to iommu group 49\n[    2.357052] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: unable to find vdd-hba-max-microamp\n[    2.357067] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled\n[    2.357873] ufshcd-qcom 1d84000.ufshc: -- Registered bus voting! (0) --\n[    2.358552] ufshcd-qcom 1d84000.ufshc: invalid UFS version 0x300\n[    2.358818] scsi host0: ufshcd\n[    2.365848] ufshcd-qcom 1d84000.ufshc: *** This is drivers/scsi/ufs/ufshcd.c ***\n[    2.367576] i2c_geni 998000.i2c: Bus frequency is set to 400000Hz.\n[    2.369522] aw8697_i2c_probe enter\n[    2.369594] aw8697_haptic 0-005a: aw8697_parse_dt: reset gpio provided ok\n[    2.369601] aw8697_haptic 0-005a: aw8697_parse_dt: irq gpio provided ok.\n[    2.369620] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.369622] aw8697_parse_dt ---2912 \n[    2.369625] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.369627] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.369630] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.369631] aw8697_parse_dt ---2912 \n[    2.369634] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.369635] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.369638] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.369640] aw8697_parse_dt ---2912 \n[    2.369642] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.369643] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.369646] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.369648] aw8697_parse_dt ---2912 \n[    2.369650] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.369651] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.369654] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.369655] aw8697_parse_dt ---2912 \n[    2.369657] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.369659] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.369662] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.369663] aw8697_parse_dt ---2912 \n[    2.369665] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.369667] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.369669] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.369671] aw8697_parse_dt ---2912 \n[    2.369673] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.369674] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.369677] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.369679] aw8697_parse_dt ---2912 \n[    2.369681] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.369682] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.369685] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.369686] aw8697_parse_dt ---2912 \n[    2.369688] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.369690] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.369692] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.369694] aw8697_parse_dt ---2912 \n[    2.369696] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.369697] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.369700]  20190420_dt       aw8697->info.bst_vol_default: 0x14\n[    2.369701]  20190420_dt       aw8697->info.bst_vol_ram: 0x14\n[    2.369702]  20190420_dt       aw8697->info.bst_vol_rtp: 0x14\n[    2.369704] aw8697_i2c_probe ---4584 \n[    2.369786] found pin control aw8697_reset_reset\n[    2.369788] Selected 'aw8697_interrupt_active'\n[    2.369790] found pin control aw8697_reset_active\n[    2.369791] Selected 'aw8697_interrupt_active'\n[    2.369793] found pin control aw8697_interrupt_active\n[    2.369801] Selected 'aw8697_interrupt_active'\n[    2.369803] aw8697_i2c_probe ---4624 \n[    2.369819] Selected 'aw8697_reset_active'\n[    2.380052] Selected 'aw8697_reset_reset'\n[    2.383020] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    2.400063] Selected 'aw8697_reset_active'\n[    2.400213] i2c_geni 998000.i2c: i2c error :-107\n[    2.400219] aw8697_i2c_read: i2c_read cnt=0 error=-107\n[    2.420301] aw8697_read_chipid aw8697 detected\n[    2.420302] aw8697_haptic_softreset enter\n[    2.442647] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 344, hwirq 119\n[    2.442666] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 123\n[    2.442692] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 344 parent hwirq 123\n[    2.443077] aw8697_vibrator_init enter\n[    2.443079] aw8697_haptic_init enter\n[    2.445566] aw8697_haptic_play_mode enter\n[    2.446436] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[4, 4], lane[2, 2], pwr[FAST MODE, FAST MODE], rate = 2\n[    2.446580] ufshcd-qcom 1d84000.ufshc: ufshcd_wb_config: Write Booster Configured\n[    2.446905] scsi 0:0:0:49488: Well-known LUN    SKhynix  HN8T15BZGKX016   A043 PQ: 0 ANSI: 6\n[    2.447312] scsi 0:0:0:49488: Attached scsi generic sg0 type 30\n[    2.447644] scsi 0:0:0:49476: Well-known LUN    SKhynix  HN8T15BZGKX016   A043 PQ: 0 ANSI: 6\n[    2.448020] scsi 0:0:0:49476: Attached scsi generic sg1 type 30\n[    2.448092] aw8697_haptic_set_bst_peak_cur  778 enter\n[    2.448254] scsi 0:0:0:49456: Well-known LUN    SKhynix  HN8T15BZGKX016   A043 PQ: 0 ANSI: 6\n[    2.448536] aw8697_haptic_swicth_motorprotect_config enter\n[    2.448587] scsi 0:0:0:49456: Attached scsi generic sg2 type 30\n[    2.449011] scsi 0:0:0:0: Direct-Access     SKhynix  HN8T15BZGKX016   A043 PQ: 0 ANSI: 6\n[    2.449387] sd 0:0:0:0: Attached scsi generic sg3 type 0\n[    2.449420] sd 0:0:0:0: Power-on or device reset occurred\n[    2.449794] scsi 0:0:0:1: Direct-Access     SKhynix  HN8T15BZGKX016   A043 PQ: 0 ANSI: 6\n[    2.449945] sd 0:0:0:0: [sda] 61659136 4096-byte logical blocks: (253 GB/235 GiB)\n[    2.450048] sd 0:0:0:0: [sda] Write Protect is off\n[    2.450054] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    2.450174] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.450250] sd 0:0:0:0: [sda] Optimal transfer size 524288 bytes\n[    2.450319] sd 0:0:0:1: Power-on or device reset occurred\n[    2.450375] sd 0:0:0:1: Attached scsi generic sg4 type 0\n[    2.450414] aw8697_haptic_offset_calibration enter\n[    2.450748] scsi 0:0:0:2: Direct-Access     SKhynix  HN8T15BZGKX016   A043 PQ: 0 ANSI: 6\n[    2.450845] sd 0:0:0:1: [sdb] 4096 4096-byte logical blocks: (16.8 MB/16.0 MiB)\n[    2.450901] sd 0:0:0:1: [sdb] Write Protect is off\n[    2.450905] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    2.451058] sd 0:0:0:1: [sdb] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.451118] scsi 0:0:0:2: Attached scsi generic sg5 type 0\n[    2.451140] sd 0:0:0:1: [sdb] Optimal transfer size 524288 bytes\n[    2.451385] scsi 0:0:0:3: Direct-Access     SKhynix  HN8T15BZGKX016   A043 PQ: 0 ANSI: 6\n[    2.451397] sd 0:0:0:2: Power-on or device reset occurred\n[    2.451801] sd 0:0:0:3: Attached scsi generic sg6 type 0\n[    2.451951] sd 0:0:0:3: Power-on or device reset occurred\n[    2.452220] sd 0:0:0:2: [sdc] 4096 4096-byte logical blocks: (16.8 MB/16.0 MiB)\n[    2.452361] sd 0:0:0:2: [sdc] Write Protect is off\n[    2.452365] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    2.452386] scsi 0:0:0:4: Direct-Access     SKhynix  HN8T15BZGKX016   A043 PQ: 0 ANSI: 6\n[    2.452566] sd 0:0:0:2: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.452692] sd 0:0:0:2: [sdc] Optimal transfer size 524288 bytes\n[    2.452710] sd 0:0:0:3: [sdd] 8192 4096-byte logical blocks: (33.6 MB/32.0 MiB)\n[    2.452764] sd 0:0:0:3: [sdd] Write Protect is off\n[    2.452768] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    2.453031] sd 0:0:0:3: [sdd] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.453042] sd 0:0:0:4: Attached scsi generic sg7 type 0\n[    2.453128] sd 0:0:0:3: [sdd] Optimal transfer size 524288 bytes\n[    2.453142] sd 0:0:0:4: Power-on or device reset occurred\n[    2.453312]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21 sda22 sda23 sda24 sda25 sda26 sda27 sda28 sda29 sda30 sda31 sda32 sda33 sda34\n[    2.453728]  sdb: sdb1 sdb2\n[    2.453949] sd 0:0:0:4: [sde] 786432 4096-byte logical blocks: (3.22 GB/3.00 GiB)\n[    2.454016] sd 0:0:0:4: [sde] Write Protect is off\n[    2.454020] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    2.454070] scsi 0:0:0:5: Direct-Access     SKhynix  HN8T15BZGKX016   A043 PQ: 0 ANSI: 6\n[    2.454203] sd 0:0:0:4: [sde] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.454274] sd 0:0:0:4: [sde] Optimal transfer size 524288 bytes\n[    2.454670] scsi 0:0:0:5: Attached scsi generic sg8 type 0\n[    2.454941] sd 0:0:0:5: Power-on or device reset occurred\n[    2.455379] aw8697_haptic_f0_calibration enter\n[    2.455429]  sdc: sdc1 sdc2\n[    2.455463] sd 0:0:0:1: [sdb] Attached SCSI disk\n[    2.455690] aw8697_haptic_get_f0 enter\n[    2.455692] aw8697_haptic_stop enter\n[    2.455847] sd 0:0:0:5: [sdf] 8192 4096-byte logical blocks: (33.6 MB/32.0 MiB)\n[    2.455920] sd 0:0:0:5: [sdf] Write Protect is off\n[    2.455924] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    2.456021]  sdd: sdd1 sdd2 sdd3 sdd4 sdd5\n[    2.456090] sd 0:0:0:5: [sdf] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.456153] sd 0:0:0:5: [sdf] Optimal transfer size 524288 bytes\n[    2.456812] sd 0:0:0:2: [sdc] Attached SCSI disk\n[    2.457575]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51 sde52 sde53 sde54 sde55 sde56 sde57 sde58 sde59 sde60 sde61 sde62 sde63 sde64 sde65 sde66 sde67 sde68 sde69 sde70 sde71\n[    2.457983] sd 0:0:0:0: [sda] Attached SCSI disk\n[    2.458210] aw8697_haptic_play_mode enter\n[    2.458321] sd 0:0:0:3: [sdd] Attached SCSI disk\n[    2.458697]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6\n[    2.459052] aw8697_haptic_play_mode enter\n[    2.459852] aw8697_haptic_active enter\n[    2.460254] sd 0:0:0:5: [sdf] Attached SCSI disk\n[    2.462797] aw8697_haptic_set_f0_preset enter\n[    2.464586] sd 0:0:0:4: [sde] Attached SCSI disk\n[    2.580039] aw8697_haptic_read_f0 enter\n[    2.580485] aw8697_haptic_read_f0 f0=1700\n[    2.580487] aw8697_haptic_read_beme  1245 enter\n[    2.580928] aw8697_haptic_read_beme max_pos_beme=127\n[    2.580930] aw8697_haptic_read_beme max_neg_beme=129\n[    2.581656] aw8697_haptic_f0_calibration  line=2156 f0_cali_step=0\n[    2.581658] aw8697_haptic_f0_calibration line=2158  f0_limit=1700\n[    2.581660] aw8697_haptic_f0_calibration line=2160  aw8697->info.f0_pre=1700\n[    2.581661] aw8697_haptic_f0_calibration f0_cali_lra=0\n[    2.582026] aw8697_haptic_f0_calibration final trim_lra=0x00\n[    2.582027] aw8697_haptic_play_mode enter\n[    2.583123] aw8697_haptic_stop enter\n[    2.583749] aw8697_haptic_play_mode enter\n[    2.585178] input: aw8697_haptic as /devices/platform/soc/998000.i2c/i2c-0/0-005a/input/input2\n[    2.585308] rb init\n[    2.585310] aw8697_i2c_probe probe completed successfully!\n[    2.585342] i2c_geni 998000.i2c: I2C probed\n[    2.586361] i2c_geni a80000.i2c: Bus frequency is set to 400000Hz.\n[    2.588002] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 345, hwirq 44\n[    2.588006] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 102\n[    2.588011] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 345 parent hwirq 102\n[    2.588020] cs35l41 1-0040: cs35l41 i2c probe start\n[    2.588153] cs35l41 1-0040: 1-0040 supply VA not found, using dummy regulator\n[    2.588217] cs35l41 1-0040: 1-0040 supply VP not found, using dummy regulator\n[    2.664490] cs35l41 1-0040: Cirrus Logic CS35L41 (35a40), Revision: B2\n[    2.665748] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 346, hwirq 116\n[    2.665752] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 106\n[    2.665756] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 346 parent hwirq 106\n[    2.665764] cs35l41 1-0042: cs35l41 i2c probe start\n[    2.665831] cs35l41 1-0042: 1-0042 supply VA not found, using dummy regulator\n[    2.665889] cs35l41 1-0042: 1-0042 supply VP not found, using dummy regulator\n[    2.742147] cs35l41 1-0042: Cirrus Logic CS35L41 (35a40), Revision: B2\n[    2.742174] i2c_geni a80000.i2c: I2C probed\n[    2.742470] i2c_geni a94000.i2c: Multi-EE usecase\n[    2.742474] i2c_geni a94000.i2c: Bus frequency is set to 400000Hz.\n[    2.745356] fsa4480-driver 2-0042: fsa4480_probe: Looking up qcom,use-power-supply property failed or disabled\n[    2.751024] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    2.754914] pm8008i_l1: supplied by pm8350_s12\n[    2.755194] pm8008i_l1: Bringing 1200000uV into 1104000-1104000uV\n[    2.757854] pm8008i_l2: supplied by pm8350_s12\n[    2.759892] pm8008i_l3: supplied by pm8350c_bob\n[    2.761851] pm8008i_l4: supplied by pm8350c_bob\n[    2.763791] pm8008i_l5: supplied by pm8350c_s1\n[    2.765736] pm8008i_l6: supplied by pm8350c_bob\n[    2.767756] pm8008i_l7: supplied by pm8350c_bob\n[    2.768070] pm8008i_l7: Bringing 2800000uV into 2904000-2904000uV\n[    2.770246] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    2.770767] i2c_geni a94000.i2c: i2c error :-107\n[    2.770771] PM8008: pm8008_read: failed to read 0x0950\n[    2.770773] PM8008: _pm8008_chip_is_enabled: qcom,pm8008-chip-en: failed to get chip state rc=-107\n[    2.770775] PM8008: pm8008_chip_probe: Failed to register chip enable regulator rc=-107\n[    2.770781] qcom,pm8008-chip: probe of a94000.i2c:pm8008j@c:pm8008-chip@900 failed with error -107\n[    2.771106] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    2.771704] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    2.771803] i2c_geni a94000.i2c: I2C probed\n[    2.772378] msm_geni_serial 890000.qcom,qup_uart: Wakeup byte 0xfd\n[    2.772418] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 347, hwirq 71\n[    2.772421] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 134\n[    2.772426] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 347 parent hwirq 134\n[    2.772495] msm_geni_serial 890000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    2.772503] msm_geni_serial 890000.qcom,qup_uart: Failed to create dbg dir\n[    2.772965] 890000.qcom,qup_uart: ttyHS0 at MMIO 0x890000 (irq = 198, base_baud = 0) is a MSM\n[    2.773390] i2c_geni 884000.i2c: Bus frequency is set to 1000000Hz.\n[    2.773820] i2c_geni 884000.i2c: I2C probed\n[    2.774085] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 348, hwirq 87\n[    2.774089] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 138\n[    2.774094] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 348 parent hwirq 138\n[    2.774101] nfc_i2c_dev_probe: enter\n[    2.774123] qcom,sn-nci 3-0028: error reading NFC VDDIO min and max value\n[    2.774126] qcom,sn-nci 3-0028: error reading NFC current value\n[    2.774183] pci-msm 1c00000.qcom,pcie: PCIe: msm_pcie_probe\n[    2.774251] nfc_i2c_dev_probe : requesting IRQ 348\n[    2.774305] nfc_ldo_config: regulator entry not present\n[    2.774511] pci-msm 1c00000.qcom,pcie: 1c00000.qcom,pcie supply vreg-3p3 not found, using dummy regulator\n[    2.774797] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 349, hwirq 96\n[    2.774801] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 148\n[    2.774806] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 349 parent hwirq 148\n[    2.774858] msm_pcie_get_reg: PCIe: RC0: no tcsr resource found.\n[    2.774863] msm_pcie_get_reg: PCIe: RC0: no rumi resource found.\n[    2.778953] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.778965] [drm:dsi_ctrl_get] *ERROR* [msm-dsi-error]: inv: Device with of node not found rc=-517\n[    2.780043] minidump-id not found for spss\n[    2.781501] minidump-id not found for slpi\n[    2.787931] ipa 1e00000.qcom,ipa:ipa_smmu_ap: Adding to iommu group 50\n[    2.788315] ipa 1e00000.qcom,ipa:ipa_smmu_wlan: Adding to iommu group 51\n[    2.788691] ipa 1e00000.qcom,ipa:ipa_smmu_uc: Adding to iommu group 52\n[    2.789063] ipa 1e00000.qcom,ipa:ipa_smmu_11ad: Adding to iommu group 53\n[    2.790320] minidump-id not found for venus\n[    2.790951] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.790955] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.791197] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    2.791392] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    2.792358] synx: registered bind ops type 0 for cam_sync\n[    2.792367] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-sync (ops 0xffffffdc92a0e7a8)\n[    2.792372] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu (ops 0xffffffdc92a0e5b8)\n[    2.792392] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_ife (ops 0xffffffdc92a0e5c8)\n[    2.792404] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_jpeg (ops 0xffffffdc92a0e5c8)\n[    2.792410] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_icp_fw (ops 0xffffffdc92a0e5e8)\n[    2.792445] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_icp (ops 0xffffffdc92a0e5c8)\n[    2.792457] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm (ops 0xffffffdc92a0e5c8)\n[    2.792465] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_secure (ops 0xffffffdc92a0e5c8)\n[    2.795250] cam_req_mgr soc:qcom,cam-req-mgr: bound ac40000.qcom,cam-cpas (ops 0xffffffdc92a0ef10)\n[    2.795416] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-cdm-intf (ops 0xffffffdc92a0f1b0)\n[    2.798927] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4d000.qcom,cpas-cdm0 (ops 0xffffffdc92a0f1c8)\n[    2.803095] cam_req_mgr soc:qcom,cam-req-mgr: bound acb4200.qcom,ife-cdm0 (ops 0xffffffdc92a0f1c8)\n[    2.807220] cam_req_mgr soc:qcom,cam-req-mgr: bound acc3200.qcom,ife-cdm1 (ops 0xffffffdc92a0f1c8)\n[    2.811330] cam_req_mgr soc:qcom,cam-req-mgr: bound acef200.qcom,ife-cdm2 (ops 0xffffffdc92a0f1c8)\n[    2.812593] cam_req_mgr soc:qcom,cam-req-mgr: bound ac97000.qcom,tpg0 (ops 0xffffffdc92a11e10)\n[    2.813814] cam_req_mgr soc:qcom,cam-req-mgr: bound ac98000.qcom,tpg1 (ops 0xffffffdc92a11e10)\n[    2.814094] cam_req_mgr soc:qcom,cam-req-mgr: bound acb5200.qcom,csid0 (ops 0xffffffdc92a0fa80)\n[    2.814359] cam_req_mgr soc:qcom,cam-req-mgr: bound acc4200.qcom,csid1 (ops 0xffffffdc92a0fa80)\n[    2.814625] cam_req_mgr soc:qcom,cam-req-mgr: bound acf0200.qcom,csid2 (ops 0xffffffdc92a0fa80)\n[    2.814843] cam_req_mgr soc:qcom,cam-req-mgr: bound acd9200.qcom,csid-lite0 (ops 0xffffffdc92a0fa80)\n[    2.815043] cam_req_mgr soc:qcom,cam-req-mgr: bound acdb400.qcom,csid-lite1 (ops 0xffffffdc92a0fa80)\n[    2.816453] cam_req_mgr soc:qcom,cam-req-mgr: bound acb4000.qcom,ife0 (ops 0xffffffdc92a10a18)\n[    2.817834] cam_req_mgr soc:qcom,cam-req-mgr: bound acc3000.qcom,ife1 (ops 0xffffffdc92a10a18)\n[    2.819211] cam_req_mgr soc:qcom,cam-req-mgr: bound acef000.qcom,ife2 (ops 0xffffffdc92a10a18)\n[    2.820404] cam_req_mgr soc:qcom,cam-req-mgr: bound acd9000.qcom,ife-lite0 (ops 0xffffffdc92a10a18)\n[    2.821544] cam_req_mgr soc:qcom,cam-req-mgr: bound acdb200.qcom,ife-lite1 (ops 0xffffffdc92a10a18)\n[    2.821985] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-isp (ops 0xffffffdc92a12350)\n[    2.822107] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-res-mgr (ops 0xffffffdc92a141b0)\n[    2.822681] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0 (ops 0xffffffdc92a135b0)\n[    2.823221] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1 (ops 0xffffffdc92a135b0)\n[    2.823596] cam_req_mgr soc:qcom,cam-req-mgr: bound ac6a000.qcom,csiphy0 (ops 0xffffffdc92a13808)\n[    2.823956] cam_req_mgr soc:qcom,cam-req-mgr: bound ac6c000.qcom,csiphy1 (ops 0xffffffdc92a13808)\n[    2.824293] cam_req_mgr soc:qcom,cam-req-mgr: bound ac6e000.qcom,csiphy2 (ops 0xffffffdc92a13808)\n[    2.824640] cam_req_mgr soc:qcom,cam-req-mgr: bound ac70000.qcom,csiphy3 (ops 0xffffffdc92a13808)\n[    2.824997] cam_req_mgr soc:qcom,cam-req-mgr: bound ac72000.qcom,csiphy4 (ops 0xffffffdc92a13808)\n[    2.825357] cam_req_mgr soc:qcom,cam-req-mgr: bound ac74000.qcom,csiphy5 (ops 0xffffffdc92a13808)\n[    2.825461] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,actuator0 (ops 0xffffffdc92a13378)\n[    2.825560] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,actuator1 (ops 0xffffffdc92a13378)\n[    2.825775] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,cam-sensor0 (ops 0xffffffdc92a13f28)\n[    2.825987] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,cam-sensor1 (ops 0xffffffdc92a13f28)\n[    2.826186] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,cam-sensor2 (ops 0xffffffdc92a13f28)\n[    2.826390] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,cam-sensor3 (ops 0xffffffdc92a13f28)\n[    2.826527] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,eeprom0 (ops 0xffffffdc92a13ac0)\n[    2.826654] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,eeprom1 (ops 0xffffffdc92a13ac0)\n[    2.826784] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,eeprom2 (ops 0xffffffdc92a13ac0)\n[    2.826909] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,eeprom3 (ops 0xffffffdc92a13ac0)\n[    2.827032] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,ois0 (ops 0xffffffdc92a13ce0)\n[    2.827184] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,camera-flash@0 (ops 0xffffffdc92a14368)\n[    2.827289] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,camera-flash@1 (ops 0xffffffdc92a14368)\n[    2.827398] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,camera-flash@2 (ops 0xffffffdc92a14368)\n[    2.827593] cam_req_mgr soc:qcom,cam-req-mgr: bound ac00000.qcom,a5 (ops 0xffffffdc92a12750)\n[    2.827710] cam_req_mgr soc:qcom,cam-req-mgr: bound ac9a000.qcom,ipe0 (ops 0xffffffdc92a12588)\n[    2.827828] cam_req_mgr soc:qcom,cam-req-mgr: bound ac7a000.qcom,bps (ops 0xffffffdc92a12930)\n[    2.831407] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-icp (ops 0xffffffdc92a12cb0)\n[    2.831568] cam_req_mgr soc:qcom,cam-req-mgr: bound ac53000.qcom,jpegenc (ops 0xffffffdc92a12e60)\n[    2.831725] cam_req_mgr soc:qcom,cam-req-mgr: bound ac57000.qcom,jpegdma (ops 0xffffffdc92a13000)\n[    2.833100] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-jpeg (ops 0xffffffdc92a131a0)\n[    2.833416] spss_utils [spss_parse_dt]: iar_buf_addr [0x8d800000].\n[    2.833554] spss_utils [spss_probe]: Probe completed successfully, [spss1p].\n[    2.834053] cnss: use-pm-domain is 1\n[    2.834058] cnss: set_wlaon_pwr_ctrl is 0\n[    2.834064] cnss: TCS CMD base address is 0x000000000b2e5510 with length 0x0000000000000690\n[    2.834105] cnss2 b0000000.qcom,cnss-qca6490: can't request region for resource [mem 0x0b2e5510-0x0b2e5b9f]\n[    2.834106] cnss: Failed to map TCS CMD address, err = -16\n[    2.834111] cnss: CommandDB name is not present for CPR\n[    2.834253] cnss: Got regulator: vdd-wlan-io, min_uv: 1800000, max_uv: 1800000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.834368] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.834379] [drm:dsi_ctrl_get] *ERROR* [msm-dsi-error]: inv: Device with of node not found rc=-517\n[    2.834481] cnss: Got regulator: wlan-ant-switch, min_uv: 2800000, max_uv: 2800000, load_ua: 0, delay_us: 0, need_unvote: 0\n[    2.834568] cnss: Got regulator: vdd-wlan-aon, min_uv: 950000, max_uv: 952000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.834617] cnss: Got regulator: vdd-wlan-dig, min_uv: 950000, max_uv: 952000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.834677] cnss: Got regulator: vdd-wlan-rfa1, min_uv: 1880000, max_uv: 1880000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.834749] cnss: Got regulator: vdd-wlan-rfa2, min_uv: 1350000, max_uv: 1350000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.834787] cnss: Failed to get optional clock rf_clk, err = -2\n[    2.834833] [drm:dsi_ctrl_dev_probe] [msm-dsi-info]: dsi-ctrl-0: Probe successful\n[    2.834867] cnss: BT GPIO: 373\n[    2.834872] cnss: Regulator vdd-wlan-io is being enabled\n[    2.834947] cnss: Regulator wlan-ant-switch is being enabled\n[    2.835055] nfcc_hw_check: VEN forced reset 1 done\n[    2.835259] cnss: Regulator vdd-wlan-aon is being enabled\n[    2.835356] [drm:dsi_ctrl_dev_probe] [msm-dsi-info]: dsi-ctrl-1: Probe successful\n[    2.835553] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.835557] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.835792] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    2.835855] cnss: Regulator vdd-wlan-dig is being enabled\n[    2.835963] cnss: Regulator vdd-wlan-rfa1 is being enabled\n[    2.836068] cnss: Regulator vdd-wlan-rfa2 is being enabled\n[    2.836074] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    2.836120] cnss: BT_EN_GPIO State: Off. Delay WLAN_GPIO enable\n[    2.836600] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.836641] [xiaomi 38 08 0a cmd mode dsc dsi panel] clk_strength = 101\n[    2.836820] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 367, hwirq 75\n[    2.836824] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 103\n[    2.836831] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 367 parent hwirq 103\n[    2.836856] [mi_disp:mi_dsi_panel_parse_config] [info]mi,panel-id is 0x4a3200380800\n[    2.836861] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-on-51-index is 2\n[    2.836865] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-off-51-index is 2\n[    2.836869] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-fod-on-51-index is 2\n[    2.836873] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-fod-off-51-index is 2\n[    2.836877] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-fod-bl-level is 2047\n[    2.836881] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-bl-min-level is 1\n[    2.836885] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-bl-max-level is 2047\n[    2.836889] [mi_disp:mi_dsi_panel_parse_config] [info]mi,panel-on-dimming-delay is 120\n[    2.836894] [mi_disp:mi_dsi_panel_parse_config] [info]mi,mdss-dsi-panel-gamma-update-flag feature not defined\n[    2.836897] [mi_disp:mi_dsi_panel_parse_config] [info]mi aod-nolp-command-enabled\n[    2.836906] [mi_disp:mi_dsi_panel_parse_config] [info]default dc backlight type is 1\n[    2.836911] [mi_disp:mi_dsi_panel_parse_config] [info]dc backlight type 440 \n[    2.836915] [mi_disp:mi_dsi_panel_parse_config] [info]local_hbm_enabled\n[    2.836920] [mi_disp:mi_dsi_panel_parse_config] [info]mi,local-hbm-on-1000nit-51-index is 3\n[    2.836924] [mi_disp:mi_dsi_panel_parse_config] [info]mi,local-hbm-off-to-hbm-51-index is 2\n[    2.836928] [mi_disp:mi_dsi_panel_parse_config] [info]fod_low_brightness_clone_threshold=40\n[    2.836932] [mi_disp:mi_dsi_panel_parse_config] [info]fod_low_brightness_lux_threshold=3\n[    2.836936] [mi_disp:mi_dsi_panel_parse_config] [info]max_brightness_clone=8191\n[    2.837104] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,smmu_sde_sec_cb (ops 0xffffffdc92897f40)\n[    2.837110] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,smmu_sde_unsec_cb (ops 0xffffffdc92897f40)\n[    2.837116] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops 0xffffffdc92894e98)\n[    2.837289] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 368, hwirq 82\n[    2.837293] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 140\n[    2.837297] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 368 parent hwirq 140\n[    2.837527] [mi_disp:mi_disp_feature_attach_display] [info]create disp_feature:0 kthread success\n[    2.837534] [mi_disp:mi_disp_procfs_init] [info]create procfs mipi_rw_prim success!\n[    2.837538] [mi_disp:mi_disp_procfs_init] [info]create procfs tx_cmd_set_prim success!\n[    2.837542] [mi_disp:mi_disp_debugfs_init] [info]create debugfs debug_log success!\n[    2.837545] [mi_disp:mi_disp_debugfs_init] [info]create debugfs esd_sw_prim success!\n[    2.837549] [mi_disp:mi_disp_feature_attach_display] [info]attach primary display(DSI intf) success\n[    2.837554] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-primary (ops 0xffffffdc92896808)\n[    2.837560] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops 0xffffffdc92895048)\n[    2.837583] [drm] mapped mdp address space @0000000051a7bc74\n[    2.839940] [drm:_sde_kms_hw_init_blocks:4175] sde hardware revision:0x70000000\n[    2.840061] [drm:msm_smmu_new] *ERROR* unable to find domain 1 compat: qcom,smmu_sde_nrt_unsec\n[    2.840071] [drm:msm_smmu_new] *ERROR* unable to find domain 3 compat: qcom,smmu_sde_nrt_sec\n[    2.841874] register brightness0-clone cooling device success\n[    2.845298] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    2.845301] [drm] No driver support for vblank timestamp query.\n[    2.845713] [drm] Initialized msm_drm 1.4.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    2.845716] [drm] cont_splash enabled in 1 of 1 display(s)\n[    2.845796] [drm:dsi_ctrl_isr_configure] [msm-dsi-info]: dsi-ctrl-0: IRQ 369 registered\n[    2.846111] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.846115] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.846351] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    2.846540] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    2.846806] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.846810] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.847038] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    2.847225] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    2.847876] ngd_msm_ctrl 3ac0000.slim: Adding to iommu group 54\n[    2.850040] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): allocate IRQ 370, hwirq 5\n[    2.850045] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): found parent hwirq 141\n[    2.850050] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): alloc_irqs_parent for 370 parent hwirq 141\n[    2.850248] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    2.850729] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 371, hwirq 23\n[    2.850733] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 84\n[    2.850738] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 371 parent hwirq 84\n[    2.850748] [ FTS ] fts_probe: driver spi ver: 5.2.4.1\n[    2.850749] [ FTS ] SPI interface... \n[    2.850767] [ FTS ] product_name:venus,major:9,minor:0\n[    2.850769] [ FTS ] fts_judge_hwid don't need avdd-old supply\n[    2.850785] [ FTS ] fod-lx:588\n[    2.850787] [ FTS ] fod ly:2358\n[    2.850789] [ FTS ] fod size:264\n[    2.850791] [ FTS ] fod size:264\n[    2.850835] [ FTS ] parse_dt:tp vendor: 56\n[    2.850836] [ FTS ] Unable to read tp color\n[    2.850839] [ FTS ] Unable to read tp module\n[    2.850841] [ FTS ] Unable to read tp hw version\n[    2.850842] [ FTS ] parse_dt:fw_name: st_fts_k2.ftb\n[    2.850844] [ FTS ] parse_dt:limit_name: stm_fts_production_limits.csv\n[    2.851224] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.851228] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.851484] [ FTS ] gpio_num:331, irq:371\n[    2.851596] input: fts as /devices/platform/soc/a8c000.spi/spi_master/spi1/spi1.0/input/input4\n[    2.851656] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    2.851681] [ FTS ] openChannel: spi_master: flags = 0000 !\n[    2.851684] [ FTS ] openChannel: spi_device: max_speed = 12000000 chip select = 00 bits_per_words = 8 mode = 0000 !\n[    2.851685] [ FTS ] openChannel: completed! \n[    2.851689] [ FTS ] System resetting...\n[    2.862250] spi_geni a8c000.spi: tx_fifo 16 rx_fifo 16 tx_width 32\n[    2.862590] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    2.877996] [ FTS ] System reset DONE!\n[    2.878288] [ FTS ] FW VER = 0081 \n[    2.878290] [ FTS ] SVN REV = 4017 \n[    2.878291] [ FTS ] CONFIG VER = 0046 \n[    2.878293] [ FTS ] CONFIG PROJECT ID = 0000 \n[    2.878294] [ FTS ] CX VER = FFFF \n[    2.878295] [ FTS ] CX PROJECT ID = 0000 \n[    2.878297] [ FTS ] AFE VER: CFG = 06 - CX = 06 - PANEL = 06 \n[    2.878309] [ FTS ] Release Info = 46 1E 00 00 00 00 00 00 10 9D DF AE 91 88 1F 51  \n[    2.891388] [ FTS ] Echo FOUND... OK!\n[    2.891572] [ FTS ] fts_get_lockdown_info signature:A5 id:70 70 beforecnt:1,aftercnt:2\n[    2.891580] [ FTS ] Interrupt Enabled!\n[    2.891583] [ FTS ] Lockdown:0x48,0x38,0x32,0x04,0x48,0x32,0x31,0x01\n[    2.891591] [ FTS ] FW Update and Sensing Initialization: \n[    2.891593] [ FTS ] Fw Auto Update is starting... \n[    2.891757] [ FTS ] fts_crc_check: Verifying if Config CRC Error...\n[    2.891759] [ FTS ] System resetting...\n[    2.917596] [ FTS ] System reset DONE!\n[    2.917602] [ FTS ] fts_crc_check: No Config CRC Error Found! \n[    2.917603] [ FTS ] fts_crc_check: Verifying if Cx CRC Error...\n[    2.917605] [ FTS ] fts_crc_check: No Cx CRC Error Found! \n[    2.917607] [ FTS ] fts_fw_update: NO CRC Error or Impossible to read CRC register! \n[    2.917608] [ FTS ] fts_get_lockdown_info aleady get,skip\n[    2.917611] [ FTS ] Interrupt Enabled!\n[    2.917613] [ FTS ] Choose config 0: st_fts_k2.ftb\n[    2.917615] [ FTS ] getFWdata starting ...\n[    2.917617] [ FTS ] Read FW from BIN file st_fts_k2.ftb !\n[    2.917653] [ FTS ] getFWdata Finished!\n[    2.917656] [ FTS ] parseBinFile: FILE SVN REV = 00003755\n[    2.917657] [ FTS ] parseBinFile: FILE Fw Version = 0076\n[    2.917659] [ FTS ] parseBinFile: FILE Config Project ID = 00000000\n[    2.917661] [ FTS ] parseBinFile: FILE Config Version = 0000003D\n[    2.917662] [ FTS ] parseBinFile: File External Release =  \n[    2.917663] 3D \n[    2.917664] 1E \n[    2.917665] 00 \n[    2.917666] 00 \n[    2.917667] 00 \n[    2.917668] 00 \n[    2.917669] 00 \n[    2.917670] 00 \n\n[    2.917673] [ FTS ] parseBinFile:  sec0_size = 0001B878 (112760 bytes)\n[    2.917675] [ FTS ] parseBinFile:  sec1_size = 00000E30 (3632 bytes)\n[    2.917677] [ FTS ] parseBinFile:  sec2_size = 00000000 (0 bytes) \n[    2.917678] [ FTS ] parseBinFile:  sec3_size = 00000000 (0 bytes) \n[    2.917708] [ FTS ] parseBinFile: Initialize cx_ver to default value! \n[    2.917710] [ FTS ] parseBinFile: CX Version = FFFF \n[    2.917712] [ FTS ] Code Pages: 28 panel area Pages: 1 cx area Pages: 2 fw config Pages: 1 !\n[    2.917714] [ FTS ] Code start addr: 0x00000000 cx start addr: 0x00007400 fw start addr: 0x00007C00 !\n[    2.917716] [ FTS ] READ FW DONE 116392 bytes!\n[    2.917720] [ FTS ] System resetting...\n[    2.941062] cnss: Assert WLAN_EN GPIO successfully\n[    2.941082] msm_pcie_enable: PCIe: Assert the reset of endpoint of RC0.\n[    2.941361] NFC fw version = 1.10.59\n[    2.941364] nfcc_hw_check: ## NFCC == SN100x ##\n[    2.941428] nfc_i2c_dev_probe success\n[    2.941633] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.941638] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.941869] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    2.942056] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    2.943486] [ FTS ] System reset DONE!\n[    2.944599] msm_pcie_enable: PCIe: RC0: PCIE20_PARF_INT_ALL_MASK: 0x7f80c202\n[    2.946778] pcie_phy_init: PCIe RC0 PHY is ready!\n[    2.956803] msm_pcie_enable: PCIe: Release the reset of endpoint of RC0.\n[    2.973235] msm_pcie_link_train: PCIe RC0 link initialized\n[    2.973447] pci-msm 1c00000.qcom,pcie: host bridge /soc/qcom,pcie@1c00000 ranges:\n[    2.973457] pci-msm 1c00000.qcom,pcie:   No bus range found for /soc/qcom,pcie@1c00000, using [bus 00-ff]\n[    2.973470] pci-msm 1c00000.qcom,pcie:    IO 0x60200000..0x602fffff -> 0x60200000\n[    2.973479] pci-msm 1c00000.qcom,pcie:   MEM 0x60300000..0x63ffffff -> 0x60300000\n[    2.973525] pci-msm 1c00000.qcom,pcie: MSI: qgic controller is present\n[    2.975068] pci-msm 1c00000.qcom,pcie: PCI host bridge to bus 0000:00\n[    2.975073] pci_bus 0000:00: root bus resource [bus 00-ff]\n[    2.975077] pci_bus 0000:00: root bus resource [io  0x0000-0xfffff] (bus address [0x60200000-0x602fffff])\n[    2.975080] pci_bus 0000:00: root bus resource [mem 0x60300000-0x63ffffff]\n[    2.975130] pci 0000:00:00.0: [17cb:010c] type 01 class 0x060400\n[    2.975220] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]\n[    2.975484] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold\n[    2.980044] [ FTS ] fts_writeU8UX: cmd[1] = 20 \n[    2.980047] [ FTS ] fts_writeU8UX: cmd[2] = 00 \n[    2.980048] [ FTS ] fts_writeU8UX: cmd[3] = 00 \n[    2.980050] [ FTS ] fts_writeU8UX: cmd[4] = 24 \n[    2.980172] [ FTS ] fts_writeU8UX: cmd[1] = 20 \n[    2.980174] [ FTS ] fts_writeU8UX: cmd[2] = 00 \n[    2.980176] [ FTS ] fts_writeU8UX: cmd[3] = 00 \n[    2.980177] [ FTS ] fts_writeU8UX: cmd[4] = 32 \n[    2.980294] [ FTS ] fts_writeU8UX: cmd[1] = 20 \n[    2.980296] [ FTS ] fts_writeU8UX: cmd[2] = 00 \n[    2.980297] [ FTS ] fts_writeU8UX: cmd[3] = 00 \n[    2.980299] [ FTS ] fts_writeU8UX: cmd[4] = 34 \n[    2.980416] [ FTS ] fts_writeU8UX: cmd[1] = 20 \n[    2.980417] [ FTS ] fts_writeU8UX: cmd[2] = 00 \n[    2.980419] [ FTS ] fts_writeU8UX: cmd[3] = 00 \n[    2.980421] [ FTS ] fts_writeU8UX: cmd[4] = 3F \n[    2.980536] [ FTS ] fts_writeU8UX: cmd[1] = 20 \n[    2.980538] [ FTS ] fts_writeU8UX: cmd[2] = 00 \n[    2.980540] [ FTS ] fts_writeU8UX: cmd[3] = 00 \n[    2.980541] [ FTS ] fts_writeU8UX: cmd[4] = 3D \n[    2.980658] [ FTS ] fts_writeU8UX: cmd[1] = 20 \n[    2.980660] [ FTS ] fts_writeU8UX: cmd[2] = 00 \n[    2.980661] [ FTS ] fts_writeU8UX: cmd[3] = 00 \n[    2.980663] [ FTS ] fts_writeU8UX: cmd[4] = 2D \n[    2.982363] [ FTS ] CX Start page: 29 CX End page: 30 Panel Start Page: 28 Panel End page: 28!\n[    2.990669] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring\n[    2.990902] pci 0000:01:00.0: [17cb:1103] type 00 class 0x028000\n[    2.991021] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x001fffff 64bit]\n[    2.991412] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold\n[    3.006278] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01\n[    3.006298] pci 0000:00:00.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000\n[    3.006304] pci 0000:00:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000\n[    3.006319] pci 0000:00:00.0: BAR 8: assigned [mem 0x60400000-0x605fffff]\n[    3.006324] pci 0000:00:00.0: BAR 9: assigned [mem 0x60600000-0x607fffff 64bit pref]\n[    3.006328] pci 0000:00:00.0: BAR 0: assigned [mem 0x60300000-0x60300fff 64bit]\n[    3.006362] pci 0000:00:00.0: BAR 7: assigned [io  0x1000-0x1fff]\n[    3.006369] pci 0000:01:00.0: BAR 0: assigned [mem 0x60400000-0x605fffff 64bit]\n[    3.006413] pci 0000:00:00.0: PCI bridge to [bus 01]\n[    3.006420] pci 0000:00:00.0:   bridge window [io  0x1000-0x1fff]\n[    3.006438] pci 0000:00:00.0:   bridge window [mem 0x60400000-0x605fffff]\n[    3.006450] pci 0000:00:00.0:   bridge window [mem 0x60600000-0x607fffff 64bit pref]\n[    3.006777] pci-msm-rc 0000:00:00.0: Adding to iommu group 55\n[    3.007091] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.007095] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.007347] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    3.007540] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    3.008048] msm_pcie_enumerate: PCIe: RC0: has already been enumerated.\n[    3.010564] cnss_pci 0000:01:00.0: Adding to iommu group 56\n[    3.010598] cnss: PCI is probing, vendor ID: 0x17cb, device ID: 0x1103\n[    3.010610] cnss_pci 0000:01:00.0: assigned reserved memory node cnss_wlan_region\n[    3.010611] cnss: CMA area is cnss_wlan_region\n[    3.010879] cnss: Powerup is ignored\n[    3.010906] cnss: Ramdump size 0x420000\n[    3.010916] cnss2 b0000000.qcom,cnss-qca6490: for wlan segments only will be dumped.\n[    3.011012] cnss: Initializing SMMU\n[    3.011015] cnss: Enabling SMMU S1 stage\n[    3.011019] cnss: smmu_iova_start: 0x00000000a0000000, smmu_iova_len: 0x10000000\n[    3.011024] cnss: smmu_iova_ipa_start: 0x00000000b0000000, smmu_iova_ipa_len: 0x10000\n[    3.011027] cnss: iommu_geometry: 0\n[    3.011032] cnss: PCIe DRV is supported\n[    3.011070] cnss_pci 0000:01:00.0: BAR 0: assigned [mem 0x60400000-0x605fffff 64bit]\n[    3.011129] pci-msm-rc 0000:00:00.0: enabling device (0006 -> 0007)\n[    3.011150] cnss_pci 0000:01:00.0: enabling device (0000 -> 0002)\n[    3.012209] cnss: MSI base data is 800\n[    3.012213] cnss: BAR starts at 0x0000000060400000, len-200000\n[    3.012218] cnss: Assign MSI to user: MHI, num_vectors: 3, user_base_data: 800, base_vector: 0\n[    3.012222] cnss: Number of assigned MSI for MHI is 3, base vector is 0\n[    3.012225] cnss: Get IRQ number 372 for vector index 0\n[    3.012228] cnss: Get IRQ number 373 for vector index 1\n[    3.012231] cnss: Get IRQ number 374 for vector index 2\n[    3.012581] cnss: Get device version info, family number: 0x4, device number: 0xc, major version: 0x1, minor version: 0x10\n[    3.012586] cnss: Firmware name is amss.bin\n[    3.012594] cnss: Get PCI link status register: 4115\n[    3.012597] cnss: Default PCI link speed is 0x3, link width is 0x1\n[    3.030056] cnss: Suspending PCI link\n[    3.140073] msm_pcie_disable: PCIe: Assert the reset of endpoint of RC0.\n[    3.140503] cnss: De-assert WLAN_EN GPIO successfully\n[    3.140506] cnss: Regulator vdd-wlan-rfa2 is being disabled\n[    3.140540] cnss: Regulator vdd-wlan-rfa1 is being disabled\n[    3.140579] cnss: Regulator vdd-wlan-dig is being disabled\n[    3.140617] cnss: Regulator vdd-wlan-aon is being disabled\n[    3.140654] cnss: Regulator wlan-ant-switch is being disabled\n[    3.140678] cnss: Regulator vdd-wlan-io is being disabled\n[    3.140909] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.140913] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.141170] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    3.141362] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    3.141514] cnss: ICC Path_Count: 2 BW_CFG_Count: 7\n[    3.141533] cnss: ICC Vote CFG for path: pcie_to_memnoc\n[    3.141536] cnss: ICC Vote BW: 0 avg: 0 peak: 0\n[    3.141539] cnss: ICC Vote BW: 1 avg: 2250 peak: 390000\n[    3.141542] cnss: ICC Vote BW: 2 avg: 7500 peak: 390000\n[    3.141546] cnss: ICC Vote BW: 3 avg: 30000 peak: 790000\n[    3.141549] cnss: ICC Vote BW: 4 avg: 100000 peak: 790000\n[    3.141552] cnss: ICC Vote BW: 5 avg: 175000 peak: 1600000\n[    3.141556] cnss: ICC Vote BW: 6 avg: 7500 peak: 390000\n[    3.141583] cnss: ICC Vote CFG for path: memnoc_to_ddr\n[    3.141585] cnss: ICC Vote BW: 0 avg: 0 peak: 0\n[    3.141588] cnss: ICC Vote BW: 1 avg: 2250 peak: 1804800\n[    3.141592] cnss: ICC Vote BW: 2 avg: 7500 peak: 1804800\n[    3.141595] cnss: ICC Vote BW: 3 avg: 30000 peak: 1804800\n[    3.141598] cnss: ICC Vote BW: 4 avg: 100000 peak: 1804800\n[    3.141601] cnss: ICC Vote BW: 5 avg: 175000 peak: 6220800\n[    3.141605] cnss: ICC Vote BW: 6 avg: 7500 peak: 2188800\n[    3.141893] cnss: Platform driver probed successfully.\n[    3.142067] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.142071] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.142303] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    3.142511] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    3.514076] [ FTS ] 7) LOAD PROGRAM: \n[    5.376902] [ FTS ]   load program DONE!\n[    5.499142] [ FTS ]   load config DONE!\n[    5.499146] [ FTS ] System resetting...\n[    5.525170] [ FTS ] System reset DONE!\n[    5.525461] [ FTS ] FW VER = 0076 \n[    5.525463] [ FTS ] SVN REV = 3755 \n[    5.525464] [ FTS ] CONFIG VER = 003D \n[    5.525465] [ FTS ] CONFIG PROJECT ID = 0000 \n[    5.525467] [ FTS ] CX VER = FFFF \n[    5.525468] [ FTS ] CX PROJECT ID = 0000 \n[    5.525470] [ FTS ] AFE VER: CFG = 06 - CX = 06 - PANEL = 06 \n[    5.525482] [ FTS ] Release Info = 3D 1E 00 00 00 00 00 00 84 6E 80 3C 6A 0B A5 11  \n[    5.525491] [ FTS ] fts_fw_update: Verifying if CX CRC Error...\n[    5.525492] [ FTS ] System resetting...\n[    5.551410] [ FTS ] System reset DONE!\n[    5.551413] [ FTS ] fts_fw_update: No Cx CRC Error Found! \n[    5.551415] [ FTS ] fts_fw_update: Verifying if Panel CRC Error... \n[    5.551417] [ FTS ] fts_fw_update: No Panel CRC Error Found! \n[    5.551421] [ FTS ] Interrupt Mode\n[    5.551598] [ FTS ] fts_mode_handler: Screen ON... \n[    5.551601] [ FTS ] fts_mode_handler: Sense ON\n[    5.605445] [ FTS ] Interrupt Enabled!\n[    5.605601] [ FTS ] Fw Update Finished! error = 00000000\n[    5.605658] [ FTS ] fts_status_event_handler Mutual negative detect Force cal = 01 00 00 00 00 02\n[    5.605747] [ FTS ] fts_proc_init: proc entry CREATED! \n[    5.605880] xiaomitouch_register_modedata\n[    5.606046] [ FTS ] fts_read_touchmode_data: game_mode:0, active_mode:1, up_threshold:0, landlock:0, wgh:3, 150, 248\n[    5.606050] [ FTS ] fts_init_touchmode_data: mode:0, set cur:0, get cur:0, def:0 min:0 max:1\n[    5.606053] [ FTS ] fts_init_touchmode_data: mode:1, set cur:1, get cur:1, def:0 min:0 max:1\n[    5.606055] [ FTS ] fts_init_touchmode_data: mode:2, set cur:4, get cur:4, def:4 min:1 max:5\n[    5.606058] [ FTS ] fts_init_touchmode_data: mode:3, set cur:3, get cur:3, def:3 min:1 max:5\n[    5.606061] [ FTS ] fts_init_touchmode_data: mode:4, set cur:3, get cur:3, def:3 min:1 max:5\n[    5.606064] [ FTS ] fts_init_touchmode_data: mode:5, set cur:3, get cur:3, def:3 min:1 max:5\n[    5.606066] [ FTS ] fts_init_touchmode_data: mode:6, set cur:1, get cur:1, def:1 min:1 max:3\n[    5.606068] [ FTS ] fts_init_touchmode_data: mode:7, set cur:2, get cur:2, def:2 min:0 max:3\n[    5.606071] [ FTS ] fts_init_touchmode_data: mode:8, set cur:0, get cur:0, def:0 min:0 max:3\n[    5.606074] [ FTS ] fts_init_touchmode_data: mode:9, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.606077] [ FTS ] fts_init_touchmode_data: mode:10, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.606079] [ FTS ] fts_init_touchmode_data: mode:11, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.606082] [ FTS ] fts_init_touchmode_data: mode:12, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.606085] [ FTS ] fts_init_touchmode_data: mode:13, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.606087] [ FTS ] fts_init_touchmode_data: mode:14, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.606090] [ FTS ] fts_init_touchmode_data: mode:15, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.606092] [ FTS ] fts_init_touchmode_data: mode:16, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.606095] [ FTS ] fts_init_touchmode_data: mode:17, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.606097] [ FTS ] fts_init_touchmode_data: mode:18, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.606100] [ FTS ] fts_init_touchmode_data: mode:19, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.606102] [ FTS ] Probe Finished! \n[    5.606288] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.606292] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.606527] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.606717] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.608941] bimc-bwmon: Zone thres larger than hw limit: hi:0 med:4000 lo:0\n[    5.609237] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.609242] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.609475] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.609665] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.610060] bimc-bwmon: Zone thres larger than hw limit: hi:0 med:4000 lo:0\n[    5.610326] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.610330] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.610564] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.610755] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.611257] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.611261] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.611488] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.611673] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.612087] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.612091] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.612330] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.612517] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.612939] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.612943] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.613167] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.613352] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.613771] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.613775] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.614000] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.614185] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.614602] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.614606] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.614830] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.615015] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.615423] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.615427] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.615652] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.615837] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.616249] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.616253] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.616478] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.616662] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.617068] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.617072] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.617296] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.617481] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.617869] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.617873] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.618098] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.618283] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.618616] bimc-bwmon: Zone thres larger than hw limit: hi:0 med:4000 lo:0\n[    5.618837] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.618841] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.619065] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.619249] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.619787] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.619791] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.620057] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.620263] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.620734] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.620738] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.620963] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.621146] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.621648] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.621653] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.621878] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.622062] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.622563] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.622567] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.622792] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.622976] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.623431] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.623435] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.623659] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.623842] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.624448] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.624451] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.624676] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.624860] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.626175] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.626179] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.626403] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.626587] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.627037] RNDIS_IPA module is loaded.\n[    5.627043] core_ctl: Creating CPU group 0\n[    5.627044] core_ctl: Init CPU0 state\n[    5.627046] core_ctl: Init CPU1 state\n[    5.627047] core_ctl: Init CPU2 state\n[    5.627048] core_ctl: Init CPU3 state\n[    5.627208] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.627212] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.627437] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.627621] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.627771] core_ctl: Creating CPU group 4\n[    5.627772] core_ctl: Init CPU4 state\n[    5.627774] core_ctl: Init CPU5 state\n[    5.627775] core_ctl: Init CPU6 state\n[    5.627862] core_ctl: Creating CPU group 7\n[    5.627863] core_ctl: Init CPU7 state\n[    5.628087] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    5.628767] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    5.629583] [ FTS ] fts_status_event_handler Mutual negative detect Force cal = 01 00 00 00 00 01\n[    5.629744] gpu_cc-lahaina 3d90000.qcom,gpucc: sync-state\n[    5.630057] disp_cc-lahaina af00000.qcom,dispcc: sync-state\n[    5.630203] ALSA device list:\n[    5.630212]   No soundcards found.\n[    5.630244] Warning: unable to open an initial console.\n[    5.631303] Freeing unused kernel memory: 4480K\n[    5.650111] Run /init as init process\n[    5.655155] do_mount: dev: tmpfs, mount point: /dev , retval=0\n[    5.656394] do_mount: dev: proc, mount point: /proc , retval=0\n[    5.657626] do_mount: dev: sysfs, mount point: /sys , retval=0\n[    5.658836] do_mount: dev: tmpfs, mount point: /tmp , retval=0\n[    5.839950] Booting DSP...\n[    5.841093] subsys-pil-tz 17300000.qcom,lpass: adsp: loading from 0x0000000086100000 to 0x0000000088a00000\n[    5.855153] ERROR qrtr-ns: nameserver already running, going dormant: Address in use\n[    5.958863] subsys-pil-tz 17300000.qcom,lpass: adsp: Brought out of reset\n[    5.958873] pil_boot is successful from adsp and waiting for error ready\n[    5.979944] Subsystem error monitoring/handling services are up fromadsp\n[    5.979957] subsys-pil-tz 17300000.qcom,lpass: adsp: Power/Clock ready interrupt received\n[    5.980827] -1831171198:Entered\n[    5.981073] -1831171198:SMD QRTR driver probed\n[    5.981325] sysmon-qmi: ssctl_new_server: Connection established between QMI handle and adsp's SSCTL service\n[    5.981338] adsprpc: fastrpc_restart_notifier_cb: adsp subsystem is up\n[    5.983202] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.983207] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.983567] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.983794] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.984132] cnss: DRV subsystem is connected\n[    5.985600] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.985604] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.985832] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.986017] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.986771] Info: adsprpc (4679): kworker/0:5: fastrpc_rpmsg_probe: opened rpmsg channel for adsp\n[    5.988610] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.988615] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.988845] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.989061] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.989391] apr_tal_rpmsg soc:adsp.apr_audio_svc.-1.-1: apr_tal_rpmsg_probe: Channel[apr_audio_svc] state[Up]\n[    5.991894] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.991898] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.992127] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    5.992311] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    6.210286] sd 0:0:0:2: [sdc] Synchronizing SCSI cache\n[    6.210446] sd 0:0:0:1: [sdb] Synchronizing SCSI cache\n[    6.220103] sd 0:0:0:0: [sda] Synchronizing SCSI cache\n[    6.220121] sd 0:0:0:3: [sdd] Synchronizing SCSI cache\n[    6.230095] sd 0:0:0:5: [sdf] Synchronizing SCSI cache\n[    6.230114] sd 0:0:0:4: [sde] Synchronizing SCSI cache\n[    6.249978] qti_battery_charger soc:qcom,pmic_glink:qcom,battery_charger: battery_chg_probe start\n[    6.251480] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    6.251483] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    6.251713] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    6.251898] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    6.254005] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    6.254009] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    6.254236] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    6.254421] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    6.303242] BATTERY_CHG: power_supply_read_temp: batt_thermal temp:38 ,delta:6300 rc=0\n[    6.303875] qti_battery_charger soc:qcom,pmic_glink:qcom,battery_charger: battery_chg_probe done\n[    6.305813] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    6.305818] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    6.306075] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    6.306261] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 000000007700b546\n[    6.310760] BATTERY_CHG: handle_notification: notification: 0x81\n[    6.811109] [ FTS ] fts_write_charge_status charging_status:0\n[    7.431133] OF: graph: no port node found in /soc/qcom,pmic_glink/qcom,ucsi/port\n[    7.431137] OF: graph: no port node found in /soc/qcom,pmic_glink/qcom,ucsi/port\n[    7.600220] aw8697_ram_work_routine enter\n[    7.600304] aw8697_haptic 0-005a: Direct firmware load for aw8697_haptic.bin failed with error -2\n[    7.600308] aw8697_haptic 0-005a: Falling back to sysfs fallback for: aw8697_haptic.bin\n[    9.547565] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    9.547701] cpu1 \n[    9.547756] cpu4 \n[    9.547807] cpu7 \n[    9.547850] \n               Offline CPUs: \n[    9.550406] cpu1 \n[    9.551657] CPU1: shutdown\n[    9.551661] psci: CPU1 killed (polled 0 ms)\n[    9.552568] cpu2 \n[    9.553921] CPU2: shutdown\n[    9.553925] psci: CPU2 killed (polled 0 ms)\n[    9.554477] cpu3 \n[    9.555836] CPU3: shutdown\n[    9.555839] psci: CPU3 killed (polled 0 ms)\n[    9.556369] cpu4 \n[    9.557648] IRQ 13: no longer affine to CPU4\n[    9.557686] CPU4: shutdown\n[    9.557722] psci: CPU4 killed (polled 0 ms)\n[    9.558023] cpu5 \n[    9.558473] IRQ 13: no longer affine to CPU5\n[    9.558539] CPU5: shutdown\n[    9.558542] psci: CPU5 killed (polled 0 ms)\n[    9.558842] cpu6 \n[    9.559281] IRQ 13: no longer affine to CPU6\n[    9.559327] CPU6: shutdown\n[    9.559331] psci: CPU6 killed (polled 0 ms)\n[    9.559721] cpu7 \n[    9.560126] IRQ 14: no longer affine to CPU7\n[    9.560166] CPU7: shutdown\n[    9.560170] psci: CPU7 killed (polled 0 ms)\n\n[   11.369267] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[   14.600321] Sampling power every 1000 ms\n               Baseline power usage: \n[   35.681515] gcc_ufs_card_gdsc: disabling\n[   35.681556] gcc_usb30_prim_gdsc: disabling\n[   35.681604] camera_wide_vana_ldo: disabling\n[   35.681615] camera_front_vdig_ldo: disabling\n[   35.681626] camera_front_vana_ldo: disabling\n[   35.681637] camera_macro_vana_ldo: disabling\n[   35.681647] display_panel_vddd: disabling\n[   35.681658] display_panel_avdd: disabling\n[   35.681708] pm8008i-chip-en: disabling\n[   69.601395] aw8697_ram_loaded enter\n[   69.601407] aw8697_ram_loaded: failed to read aw8697_haptic.bin\n[   90.696662] Detected VIPT I-cache on CPU1\n[   90.696976] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]\n[   90.698366] ------------[ cut here ]------------\n[   90.698402] WARNING: CPU: 1 PID: 15 at kernel/smp.c:296 smp_call_function_single+0x1ac/0x1c0\n[   90.698423] CPU: 1 PID: 15 Comm: cpuhp/1 Tainted: G S                5.4.61-DynamIQ-R1 #14\n[   90.698444] Hardware name: Venus based on Qualcomm Technologies, Inc SM8350 (DT)\n[   90.698475] pstate: 20c00085 (nzCv daIf +PAN +UAO)\n[   90.698494] pc : smp_call_function_single+0x1ac/0x1c0\n[   90.698514] lr : perf_install_in_context+0x8c/0x1c0\n[   90.698522] sp : ffffffc01024bc00\n[   90.698534] x29: ffffffc01024bc40 x28: 0000000000000000 \n[   90.698552] x27: ffffff800d98b338 x26: ffffff800d9a9c00 \n[   90.698569] x25: 0000000000000000 x24: ffffff82f274eb20 \n[   90.698586] x23: ffffff82f274eb10 x22: 0000000000000001 \n[   90.698602] x21: 0000000000000000 x20: ffffff800d9a9c00 \n[   90.698619] x19: ffffff82cbb17400 x18: 0000000006acfc00 \n[   90.698635] x17: 0000000000000001 x16: 00000000000000e4 \n[   90.698651] x15: 0000000000000ccc x14: fffff00000000000 \n[   90.698668] x13: 0000000000000004 x12: 0000000000000000 \n[   90.698684] x11: ffffffdc932c9ce8 x10: 0000000000000080 \n[   90.698701] x9 : 0000000000000000 x8 : ffffffc01024bc68 \n[   90.698717] x7 : 0000000000000000 x6 : 000000000000003f \n[   90.698732] x5 : 0000000000000040 x4 : 0000000000000000 \n[   90.698748] x3 : 0000000000000001 x2 : ffffffdc90dfede0 \n[   90.698764] x1 : ffffffdc90dfede0 x0 : 0000000000000001 \n[   90.698791] Call trace:\n[   90.698810]  smp_call_function_single+0x1ac/0x1c0\n[   90.698827]  perf_install_in_context+0x8c/0x1c0\n[   90.698844]  perf_event_create_kernel_counter+0x150/0x260\n[   90.698879]  hotplug_notify_up+0x90/0x1f0\n[   90.698898]  cpuhp_invoke_callback+0x1c8/0x730\n[   90.698914]  cpuhp_thread_fun+0x124/0x170\n[   90.698929]  smpboot_thread_fn+0x20c/0x2c0\n[   90.698944]  kthread+0x134/0x1f0\n[   90.698960]  ret_from_fork+0x10/0x24\n[   90.698970] ---[ end trace 9d86711ce32ae3b2 ]---\n[   91.708197] 1274 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 403 499 595 691 806 902 998 1094 1209 1305 1401 1497 1612 1708 1804\n               \n                300: \n[  305.120636] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120675] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120687] PMIC_GLINK: pmic_glink_serv_loc_cb: PDR service locator for client: (null) service: (efault) is down\n[  305.120864] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120877] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for audio_pdr_adsprpc\n[  305.120931] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120942] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for sensors_pdr_adsprpc\n[  305.121003] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121024] audio_notifier_reg_service: service SSR_ADSP is in use\n[  305.121064] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  312.728190] BATTERY_CHG: handle_notification: notification: 0x80\n[  315.367901] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[  370.398460]  1112     3.7 C/MHz     70 mW   18.8 J   15.9 I/mJ   269.8 s\n                403: \n[  579.594218]  1496     3.7 C/MHz     53 mW   10.6 J   28.3 I/mJ   200.6 s\n                499: \n[  617.447613] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[  750.428939]  1852     3.7 C/MHz     51 mW    8.2 J   36.6 I/mJ   162.0 s\n                595: \n[  895.341647]  2208     3.7 C/MHz     49 mW    6.6 J   45.4 I/mJ   135.8 s\n                691: \n[  912.870874] BATTERY_CHG: handle_notification: notification: 0x80\n[  919.527227] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 1020.594087]  2565     3.7 C/MHz     53 mW    6.2 J   48.8 I/mJ   117.0 s\n                806: \n[ 1129.243257]  2991     3.7 C/MHz     55 mW    5.5 J   54.2 I/mJ   100.3 s\n                902: \n[ 1156.945730] [ FTS ]  fts_enter_pointer_event_handler :  Event 0x13 - Press ID[0] type = 1\n[ 1157.020635] [ FTS ]  fts_leave_pointer_event_handler :  Event 0x33 - release ID[0] type = 1\n[ 1221.607078] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 1227.513759]  3349     3.7 C/MHz     64 mW    5.8 J   52.1 I/mJ    89.6 s\n                998: \n[ 1317.521933]  3704     3.7 C/MHz     63 mW    5.1 J   58.5 I/mJ    81.0 s\n               1094: \n[ 1400.273893]  4062     3.7 C/MHz     67 mW    5.0 J   60.6 I/mJ    73.9 s\n               1209: \n[ 1475.778159]  4489     3.7 C/MHz     73 mW    4.9 J   61.3 I/mJ    66.8 s\n               1305: \n[ 1513.025946] BATTERY_CHG: handle_notification: notification: 0x80\n[ 1523.687086] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 1546.111232]  4846     3.7 C/MHz     83 mW    5.2 J   58.2 I/mJ    61.9 s\n               1401: \n[ 1612.292953]  5202     3.7 C/MHz     83 mW    4.8 J   62.5 I/mJ    57.7 s\n               1497: \n[ 1675.367755]  5558     3.7 C/MHz     89 mW    4.8 J   62.5 I/mJ    54.0 s\n               1612: \n[ 1734.303117]  5985     3.7 C/MHz     95 mW    4.8 J   63.0 I/mJ    50.1 s\n               1708: \n[ 1790.132918]  6343     3.7 C/MHz    107 mW    5.0 J   59.5 I/mJ    47.3 s\n               1804: \n[ 1825.767156] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 1843.893942] CPU1: shutdown\n[ 1843.893962] psci: CPU1 killed (polled 0 ms)\n[ 1843.898142] CPU features: detected: Hardware dirty bit management\n[ 1843.898153] Detected PIPT I-cache on CPU4\n[ 1843.898157] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU4: 0x1100000011111112\n[ 1843.898160] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU4: 0x00000000010142\n[ 1843.898161] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU4: 0x00000010010131\n[ 1843.898162] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU4: 0x00000010010000\n[ 1843.898215] CPU4: Booted secondary processor 0x0000000400 [0x411fd410]\n[ 1844.907278]  6699     3.7 C/MHz    116 mW    5.2 J   57.7 I/mJ    44.8 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 710 844 960 1075 1209 1324 1440 1555 1670 1766 1881 1996 2112 2227 2342 2419\n               \n                710: \n[ 1899.789529]  6463     9.1 C/MHz    116 mW    5.4 J   55.9 I/mJ    46.4 s\n                844: \n[ 1947.415644]  7683     9.1 C/MHz    142 mW    5.6 J   54.0 I/mJ    39.1 s\n                960: \n[ 1990.893100]  8737     9.1 C/MHz    162 mW    5.6 J   53.8 I/mJ    34.3 s\n               1075: \n[ 2030.229562]  9779     9.1 C/MHz    185 mW    5.7 J   52.8 I/mJ    30.7 s\n               1209: \n[ 2066.453758] 11012     9.1 C/MHz    216 mW    5.9 J   50.9 I/mJ    27.3 s\n               1324: \n[ 2100.602983] 12054     9.1 C/MHz    241 mW    6.0 J   50.0 I/mJ    24.9 s\n               1440: \n[ 2113.164728] BATTERY_CHG: handle_notification: notification: 0x80\n[ 2127.847899] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 2132.652941] 13098     9.1 C/MHz    282 mW    6.5 J   46.4 I/mJ    22.9 s\n               1555: \n[ 2162.658057] 14136     9.1 C/MHz    315 mW    6.7 J   44.8 I/mJ    21.2 s\n               1670: \n[ 2191.627203] 15191     9.1 C/MHz    333 mW    6.6 J   45.6 I/mJ    19.8 s\n               1766: \n[ 2219.556394] 16071     9.1 C/MHz    369 mW    6.9 J   43.5 I/mJ    18.7 s\n               1881: \n[ 2245.413573] 17114     9.1 C/MHz    465 mW    8.2 J   36.8 I/mJ    17.5 s\n               1996: \n[ 2270.237155] 18173     9.1 C/MHz    501 mW    8.3 J   36.2 I/mJ    16.5 s\n               2112: \n[ 2295.056969] 19216     9.1 C/MHz    591 mW    9.2 J   32.5 I/mJ    15.6 s\n               2227: \n[ 2318.838959] 20269     9.1 C/MHz    647 mW    9.6 J   31.3 I/mJ    14.8 s\n               2342: \n[ 2341.589295] 21313     9.1 C/MHz    783 mW   11.0 J   27.2 I/mJ    14.1 s\n               2419: \n[ 2364.345446] CPU4: shutdown\n[ 2364.345467] psci: CPU4 killed (polled 0 ms)\n[ 2364.349801] Detected PIPT I-cache on CPU7\n[ 2364.349806] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU7: 0x1100000011111112\n[ 2364.349808] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU7: 0x00000000010142\n[ 2364.349810] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU7: 0x00000010010131\n[ 2364.349811] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU7: 0x00000010010000\n[ 2364.349865] CPU7: Booted secondary processor 0x0000000700 [0x411fd440]\n[ 2365.359932] 22010     9.1 C/MHz    863 mW   11.8 J   25.5 I/mJ    13.6 s\n               \n               \n               ===== CPU 7 =====\n               Frequencies: 844 960 1075 1190 1305 1420 1555 1670 1785 1900 2035 2150 2265 2380 2496 2592 2688 2764 2841\n               \n                844: \n[ 2411.951222]  7841     9.3 C/MHz    223 mW    8.5 J   35.1 I/mJ    38.3 s\n                960: \n[ 2429.927735] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 2454.392098]  8909     9.3 C/MHz    255 mW    8.6 J   34.9 I/mJ    33.7 s\n               1075: \n[ 2493.723785]  9983     9.3 C/MHz    274 mW    8.2 J   36.4 I/mJ    30.1 s\n               1190: \n[ 2536.164490]  8821     7.4 C/MHz    262 mW    8.9 J   33.6 I/mJ    34.0 s\n               1305: \n[ 2574.459903] 10108     7.7 C/MHz    286 mW    8.5 J   35.3 I/mJ    29.7 s\n               1420: \n[ 2605.503619] 13191     9.3 C/MHz    361 mW    8.2 J   36.5 I/mJ    22.8 s\n               1555: \n[ 2635.507252] 14449     9.3 C/MHz    407 mW    8.4 J   35.5 I/mJ    20.8 s\n               1670: \n[ 2663.437102] 15507     9.3 C/MHz    456 mW    8.8 J   34.0 I/mJ    19.4 s\n               1785: \n[ 2690.326023] 16477     9.2 C/MHz    504 mW    9.2 J   32.7 I/mJ    18.2 s\n               1900: \n[ 2713.302147] BATTERY_CHG: handle_notification: notification: 0x80\n[ 2716.156657] 17647     9.3 C/MHz    576 mW    9.8 J   30.6 I/mJ    17.0 s\n               2035: \n[ 2732.007760] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 2740.978254] 18906     9.3 C/MHz    634 mW   10.1 J   29.8 I/mJ    15.9 s\n               2150: \n[ 2764.767765] 19973     9.3 C/MHz    698 mW   10.5 J   28.6 I/mJ    15.0 s\n               2265: \n[ 2787.516437] 21032     9.3 C/MHz    813 mW   11.6 J   25.8 I/mJ    14.3 s\n               2380: \n[ 2810.263455] 22114     9.3 C/MHz    968 mW   13.1 J   22.8 I/mJ    13.6 s\n               2496: \n[ 2831.977447] 23166     9.3 C/MHz   1014 mW   13.1 J   22.8 I/mJ    13.0 s\n               2592: \n[ 2853.691115] 24071     9.3 C/MHz   1195 mW   14.9 J   20.1 I/mJ    12.5 s\n               2688: \n[ 2874.368835] 24958     9.3 C/MHz   1245 mW   15.0 J   20.0 I/mJ    12.0 s\n               2764: \n[ 2895.046433] 25683     9.3 C/MHz   1364 mW   16.0 J   18.8 I/mJ    11.7 s\n               2841: \n[ 2915.725438] CPU7: shutdown\n[ 2915.725459] psci: CPU7 killed (polled 0 ms)\n[ 2915.748152] 26388     9.3 C/MHz   1602 mW   18.2 J   16.5 I/mJ    11.4 s\n               \n               \n               Benchmark finished!\n[ 2915.765717] \n               real\t48m26.907s\n               user\t39m35.783s\n               sys\t0m1.884s\n"
  },
  {
    "path": "results/sm8350/fourth/post_bench_interrupts.txt",
    "content": "           CPU0       \n  3:     299820     GICv3  27 Level     arch_timer\n  5:          0     GICv3  38 Level     arch_mem_timer\n  7:          0     GICv3 195 Level     ngd_slim_irq\n  9:         19     GICv3  23 Level     arm-pmu\n 11:      10644     GICv3 261 Level     ipcc_0\n 12:          0     GICv3  62 Level     dcvsh-irq-0\n 13:          0     GICv3  63 Level     dcvsh-irq-4\n 14:          0     GICv3  51 Level     dcvsh-irq-7\n 17:        475     GICv3  37 Level     apps_rsc\n 18:        290     GICv3 297 Level     ufshcd\n 21:          0     GICv3 161 Level     disp_rsc\n 23:          3     GICv3 613 Level     90b6400.qcom,cpu-cpu-llcc-bwmon\n 24:          1     GICv3 113 Level     9091000.qcom,cpu-llcc-ddr-bwmon\n 25:          0     GICv3 258 Level     90b9100.qcom,snoop-l3-bwmon\n 26:          0       PDC  26 Level     tsens-upper-lower\n 27:          0       PDC  28 Level     tsens-critical\n 29:          0       PDC  27 Level     tsens-upper-lower\n 30:          0       PDC  29 Level     tsens-critical\n 32:          0     GICv3 296 Edge      modem\n 33:          0       PDC   6 Edge      adsp\n 34:          0     GICv3 610 Edge      cdsp\n 37:          0       PDC   9 Edge      slpi\n 38:          0     GICv3 384 Level     spss\n 39:          0       PDC  11 Level     eud_irq\n 40:          0     GICv3 304 Level     sps\n 41:          0     GICv3 704 Level     arm-smmu global fault\n 42:          0     GICv3 705 Level     arm-smmu global fault\n 43:          0     GICv3 710 Level     arm-smmu-context-fault\n 44:          0     GICv3 711 Level     arm-smmu-context-fault\n 45:          0     GICv3 712 Level     arm-smmu-context-fault\n 46:          0     GICv3 713 Level     arm-smmu-context-fault\n 53:          0     GICv3  96 Level     arm-smmu global fault\n 54:          0     GICv3  97 Level     arm-smmu global fault\n 55:          0     GICv3 129 Level     arm-smmu-context-fault\n 59:          0     GICv3 133 Level     arm-smmu-context-fault\n 60:          0     GICv3 134 Level     arm-smmu-context-fault\n 61:          0     GICv3 135 Level     arm-smmu-context-fault\n 62:          0     GICv3 136 Level     arm-smmu-context-fault\n 63:          0     GICv3 137 Level     arm-smmu-context-fault\n 64:          0     GICv3 138 Level     arm-smmu-context-fault\n 65:          0     GICv3 139 Level     arm-smmu-context-fault\n 66:          0     GICv3 140 Level     arm-smmu-context-fault\n 67:          0     GICv3 141 Level     arm-smmu-context-fault\n 68:          0     GICv3 142 Level     arm-smmu-context-fault\n 69:          0     GICv3 143 Level     arm-smmu-context-fault\n 70:          0     GICv3 144 Level     arm-smmu-context-fault\n 71:          0     GICv3 145 Level     arm-smmu-context-fault\n 72:          0     GICv3 146 Level     arm-smmu-context-fault\n 73:          0     GICv3 147 Level     arm-smmu-context-fault\n 74:          0     GICv3 148 Level     arm-smmu-context-fault\n 75:          0     GICv3 149 Level     arm-smmu-context-fault\n 76:          0     GICv3 150 Level     arm-smmu-context-fault\n 77:          0     GICv3 213 Level     arm-smmu-context-fault\n 78:          0     GICv3 214 Level     arm-smmu-context-fault\n 79:          0     GICv3 215 Level     arm-smmu-context-fault\n 80:          0     GICv3 216 Level     arm-smmu-context-fault\n 81:          0     GICv3 217 Level     arm-smmu-context-fault\n 82:          0     GICv3 218 Level     arm-smmu-context-fault\n 83:          0     GICv3 219 Level     arm-smmu-context-fault\n 84:          0     GICv3 220 Level     arm-smmu-context-fault\n 85:          0     GICv3 221 Level     arm-smmu-context-fault\n 86:          0     GICv3 222 Level     arm-smmu-context-fault\n 87:          0     GICv3 223 Level     arm-smmu-context-fault\n 88:          0     GICv3 224 Level     arm-smmu-context-fault\n 89:          0     GICv3 347 Level     arm-smmu-context-fault\n 90:          0     GICv3 348 Level     arm-smmu-context-fault\n 91:          0     GICv3 349 Level     arm-smmu-context-fault\n 92:          0     GICv3 350 Level     arm-smmu-context-fault\n 93:          0     GICv3 351 Level     arm-smmu-context-fault\n 94:          0     GICv3 352 Level     arm-smmu-context-fault\n 95:          0     GICv3 353 Level     arm-smmu-context-fault\n 96:          0     GICv3 354 Level     arm-smmu-context-fault\n 97:          0     GICv3 355 Level     arm-smmu-context-fault\n 98:          0     GICv3 356 Level     arm-smmu-context-fault\n 99:          0     GICv3 357 Level     arm-smmu-context-fault\n100:          0     GICv3 358 Level     arm-smmu-context-fault\n101:          0     GICv3 359 Level     arm-smmu-context-fault\n102:          0     GICv3 360 Level     arm-smmu-context-fault\n103:          0     GICv3 361 Level     arm-smmu-context-fault\n104:          0     GICv3 362 Level     arm-smmu-context-fault\n105:          0     GICv3 363 Level     arm-smmu-context-fault\n106:          0     GICv3 364 Level     arm-smmu-context-fault\n107:          0     GICv3 365 Level     arm-smmu-context-fault\n108:          0     GICv3 366 Level     arm-smmu-context-fault\n109:          0     GICv3 367 Level     arm-smmu-context-fault\n110:          0     GICv3 368 Level     arm-smmu-context-fault\n151:          0       PDC  14 Edge      dp_hs_phy_irq\n152:          0     GICv3 162 Level     pwr_event_irq\n153:          0       PDC  17 Level     ss_phy_irq\n154:          0       PDC  15 Edge      dm_hs_phy_irq\n169:          0     GICv3 634 Level     spi_geni\n170:        428     GICv3 639 Level     i2c_geni\n183:      11287     GICv3 388 Level     spi_geni\n184:       1403     GICv3 385 Level     i2c_geni\n185:        257     GICv3 390 Level     i2c_geni\n198:          0     GICv3 618 Level     msm_serial_geni0\n199:          4     GICv3 615 Level     i2c_geni\n200:          0     GICv3 206 Level     msm_vidc\n201:          0     GICv3 266 Level     msm_cvp\n202:          0     GICv3 172 Edge      int_global_int\n271:          0     GICv3 332 Level     kgsl_3d0_irq\n272:          0     GICv3 336 Level     kgsl_hfi_irq\n273:          0     GICv3 337 Level     kgsl_gmu_irq\n274:          0     GICv3 115 Level     msm_drm\n277:          0     GICv3 509 Edge      csiphy0\n278:          0     GICv3 510 Edge      csiphy1\n279:          0     GICv3 511 Edge      csiphy2\n280:          0     GICv3 480 Edge      csiphy3\n281:          0     GICv3 154 Edge      csiphy4\n282:          0     GICv3 121 Edge      csiphy5\n283:          0     GICv3 492 Edge      cci\n284:          0     GICv3 303 Edge      cci\n285:          0     GICv3 491 Edge      cpas_camnoc\n286:          2     GICv3 493 Edge      cpas-cdm\n287:          2     GICv3 488 Edge      ife-cdm0\n288:          2     GICv3 319 Edge      ife-cdm1\n289:          2     GICv3 674 Edge      ife-cdm2\n290:          0     GICv3 496 Edge      csid\n291:          2     GICv3 497 Edge      ife\n292:          0     GICv3 498 Edge      csid\n293:          2     GICv3 499 Edge      ife\n294:          0     GICv3 672 Edge      csid\n295:          2     GICv3 673 Edge      ife\n296:          0     GICv3 500 Edge      csid-lite\n297:          2     GICv3 501 Edge      ife-lite\n298:          0     GICv3 391 Edge      csid-lite\n299:          2     GICv3 392 Edge      ife-lite\n300:          0     GICv3 495 Edge      a5\n301:          0     GICv3 506 Edge      jpeg\n302:          0     GICv3 507 Edge      jpegdma\n303:          0     GICv3  32 Edge      apps_wdog_bark\n304:          0     GICv3 960 Edge      hh_msgq_tx_0\n305:          0     GICv3 961 Edge      hh_msgq_rx_0\n306:        151      ipcc   0 Edge      qcom,qmp-aop\n307:          0  pmic_arb 20381778 Edge      pon_kpdpwr_status\n308:          0  pmic_arb 20316242 Edge      pon_resin_status\n309:          0  pmic_arb 19923026 Edge      pon_kpdpwr_bark\n310:          0  pmic_arb 20054098 Edge      pon_kpdpwr_resin_bark\n311:          0  pmic_arb 51380307 Edge      pm-adc5\n313:          0  pmic_arb 102826069 Edge      pm8xxx_rtc_alarm\n319:          0  pmic_arb 786432130 Edge      flash_fault\n320:          0  pmic_arb 786628738 Edge      flash_all_ramp_down\n321:          0  pmic_arb 786694274 Edge      flash_all_ramp_up\n331:          2      ipcc 196610 Edge      smp2p\n332:          0      ipcc 262146 Edge      smp2p\n333:          0      ipcc 393218 Edge      smp2p\n334:          0      ipcc 131074 Edge      smp2p\n335:          0      ipcc 1048577 Edge      qsee_ipc_irq_spss\n336:          0     smp2p   0 Edge      smp2p_sleepstate\n340:          0  spmi-gpio   8 Edge      soc:extcon_usb1\n341:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n342:          0     GICv3 165 Level     dwc3\n344:          0   msmgpio 119 Edge      aw8697\n345:          0   msmgpio  44 Level     cs35l41\n346:          0   msmgpio 116 Level     cs35l41\n348:          0   msmgpio  87 Level     sn-nci\n349:          1   msmgpio  96 Edge      msm_pcie_wake\n350:          0     smp2p   0 Edge      cdsp\n351:          0     smp2p   1 Edge      error_ready_interrupt\n352:          0     smp2p   3 Edge      cdsp\n353:          0     smp2p   2 Edge      cdsp\n354:          0     smp2p   0 Edge      adsp\n355:          0     smp2p   1 Edge      error_ready_interrupt\n356:          0     smp2p   3 Edge      adsp\n357:          0     smp2p   2 Edge      adsp\n358:          0     smp2p   0 Edge      slpi\n359:          0     smp2p   1 Edge      error_ready_interrupt\n360:          0     smp2p   3 Edge      slpi\n361:          0     smp2p   2 Edge      slpi\n362:          0     smp2p   0 Edge      modem\n363:          0     smp2p   1 Edge      error_ready_interrupt\n364:          0     smp2p   3 Edge      modem\n365:          0     smp2p   7 Edge      modem\n366:          0     smp2p   2 Edge      modem\n367:          0   msmgpio  75 Edge      esd_err_irq\n368:          0   msmgpio  82 Edge      TE_GPIO\n369:          0       sde   4 Edge      dsi_ctrl\n370:          0  spmi-gpio   5 Edge      volume_up\n371:         19   msmgpio  23 Level     fts\n404:      10552      ipcc 196608 Edge      glink-native\nIPI0:      2116       Rescheduling interrupts\nIPI1:        72       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:    181704       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8350/fourth/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  3:       1074         11         21         19          1          1          1          1     GICv3  27 Level     arch_timer\n  5:          0          0          0          0          0          0          0          0     GICv3  38 Level     arch_mem_timer\n  7:          0          0          0          0          0          0          0          0     GICv3 195 Level     ngd_slim_irq\n  9:          0          0          0          0          0          0          0          0     GICv3  23 Level     arm-pmu\n 11:        453          0          0          0          0          0          0          0     GICv3 261 Level     ipcc_0\n 12:          0          0          0          0          0          0          0          0     GICv3  62 Level     dcvsh-irq-0\n 13:          0          0          0          0          0          0          0          0     GICv3  63 Level     dcvsh-irq-4\n 14:          0          0          0          0          0          0          0          0     GICv3  51 Level     dcvsh-irq-7\n 17:        339          0          0          0          0          0          0          0     GICv3  37 Level     apps_rsc\n 18:        290          0          0          0          0          0          0          0     GICv3 297 Level     ufshcd\n 21:          0          0          0          0          0          0          0          0     GICv3 161 Level     disp_rsc\n 23:          2          0          0          0          0          0          0          0     GICv3 613 Level     90b6400.qcom,cpu-cpu-llcc-bwmon\n 24:          1          0          0          0          0          0          0          0     GICv3 113 Level     9091000.qcom,cpu-llcc-ddr-bwmon\n 25:          0          0          0          0          0          0          0          0     GICv3 258 Level     90b9100.qcom,snoop-l3-bwmon\n 26:          0          0          0          0          0          0          0          0       PDC  26 Level     tsens-upper-lower\n 27:          0          0          0          0          0          0          0          0       PDC  28 Level     tsens-critical\n 29:          0          0          0          0          0          0          0          0       PDC  27 Level     tsens-upper-lower\n 30:          0          0          0          0          0          0          0          0       PDC  29 Level     tsens-critical\n 32:          0          0          0          0          0          0          0          0     GICv3 296 Edge      modem\n 33:          0          0          0          0          0          0          0          0       PDC   6 Edge      adsp\n 34:          0          0          0          0          0          0          0          0     GICv3 610 Edge      cdsp\n 37:          0          0          0          0          0          0          0          0       PDC   9 Edge      slpi\n 38:          0          0          0          0          0          0          0          0     GICv3 384 Level     spss\n 39:          0          0          0          0          0          0          0          0       PDC  11 Level     eud_irq\n 40:          0          0          0          0          0          0          0          0     GICv3 304 Level     sps\n 41:          0          0          0          0          0          0          0          0     GICv3 704 Level     arm-smmu global fault\n 42:          0          0          0          0          0          0          0          0     GICv3 705 Level     arm-smmu global fault\n 43:          0          0          0          0          0          0          0          0     GICv3 710 Level     arm-smmu-context-fault\n 44:          0          0          0          0          0          0          0          0     GICv3 711 Level     arm-smmu-context-fault\n 45:          0          0          0          0          0          0          0          0     GICv3 712 Level     arm-smmu-context-fault\n 46:          0          0          0          0          0          0          0          0     GICv3 713 Level     arm-smmu-context-fault\n 53:          0          0          0          0          0          0          0          0     GICv3  96 Level     arm-smmu global fault\n 54:          0          0          0          0          0          0          0          0     GICv3  97 Level     arm-smmu global fault\n 55:          0          0          0          0          0          0          0          0     GICv3 129 Level     arm-smmu-context-fault\n 59:          0          0          0          0          0          0          0          0     GICv3 133 Level     arm-smmu-context-fault\n 60:          0          0          0          0          0          0          0          0     GICv3 134 Level     arm-smmu-context-fault\n 61:          0          0          0          0          0          0          0          0     GICv3 135 Level     arm-smmu-context-fault\n 62:          0          0          0          0          0          0          0          0     GICv3 136 Level     arm-smmu-context-fault\n 63:          0          0          0          0          0          0          0          0     GICv3 137 Level     arm-smmu-context-fault\n 64:          0          0          0          0          0          0          0          0     GICv3 138 Level     arm-smmu-context-fault\n 65:          0          0          0          0          0          0          0          0     GICv3 139 Level     arm-smmu-context-fault\n 66:          0          0          0          0          0          0          0          0     GICv3 140 Level     arm-smmu-context-fault\n 67:          0          0          0          0          0          0          0          0     GICv3 141 Level     arm-smmu-context-fault\n 68:          0          0          0          0          0          0          0          0     GICv3 142 Level     arm-smmu-context-fault\n 69:          0          0          0          0          0          0          0          0     GICv3 143 Level     arm-smmu-context-fault\n 70:          0          0          0          0          0          0          0          0     GICv3 144 Level     arm-smmu-context-fault\n 71:          0          0          0          0          0          0          0          0     GICv3 145 Level     arm-smmu-context-fault\n 72:          0          0          0          0          0          0          0          0     GICv3 146 Level     arm-smmu-context-fault\n 73:          0          0          0          0          0          0          0          0     GICv3 147 Level     arm-smmu-context-fault\n 74:          0          0          0          0          0          0          0          0     GICv3 148 Level     arm-smmu-context-fault\n 75:          0          0          0          0          0          0          0          0     GICv3 149 Level     arm-smmu-context-fault\n 76:          0          0          0          0          0          0          0          0     GICv3 150 Level     arm-smmu-context-fault\n 77:          0          0          0          0          0          0          0          0     GICv3 213 Level     arm-smmu-context-fault\n 78:          0          0          0          0          0          0          0          0     GICv3 214 Level     arm-smmu-context-fault\n 79:          0          0          0          0          0          0          0          0     GICv3 215 Level     arm-smmu-context-fault\n 80:          0          0          0          0          0          0          0          0     GICv3 216 Level     arm-smmu-context-fault\n 81:          0          0          0          0          0          0          0          0     GICv3 217 Level     arm-smmu-context-fault\n 82:          0          0          0          0          0          0          0          0     GICv3 218 Level     arm-smmu-context-fault\n 83:          0          0          0          0          0          0          0          0     GICv3 219 Level     arm-smmu-context-fault\n 84:          0          0          0          0          0          0          0          0     GICv3 220 Level     arm-smmu-context-fault\n 85:          0          0          0          0          0          0          0          0     GICv3 221 Level     arm-smmu-context-fault\n 86:          0          0          0          0          0          0          0          0     GICv3 222 Level     arm-smmu-context-fault\n 87:          0          0          0          0          0          0          0          0     GICv3 223 Level     arm-smmu-context-fault\n 88:          0          0          0          0          0          0          0          0     GICv3 224 Level     arm-smmu-context-fault\n 89:          0          0          0          0          0          0          0          0     GICv3 347 Level     arm-smmu-context-fault\n 90:          0          0          0          0          0          0          0          0     GICv3 348 Level     arm-smmu-context-fault\n 91:          0          0          0          0          0          0          0          0     GICv3 349 Level     arm-smmu-context-fault\n 92:          0          0          0          0          0          0          0          0     GICv3 350 Level     arm-smmu-context-fault\n 93:          0          0          0          0          0          0          0          0     GICv3 351 Level     arm-smmu-context-fault\n 94:          0          0          0          0          0          0          0          0     GICv3 352 Level     arm-smmu-context-fault\n 95:          0          0          0          0          0          0          0          0     GICv3 353 Level     arm-smmu-context-fault\n 96:          0          0          0          0          0          0          0          0     GICv3 354 Level     arm-smmu-context-fault\n 97:          0          0          0          0          0          0          0          0     GICv3 355 Level     arm-smmu-context-fault\n 98:          0          0          0          0          0          0          0          0     GICv3 356 Level     arm-smmu-context-fault\n 99:          0          0          0          0          0          0          0          0     GICv3 357 Level     arm-smmu-context-fault\n100:          0          0          0          0          0          0          0          0     GICv3 358 Level     arm-smmu-context-fault\n101:          0          0          0          0          0          0          0          0     GICv3 359 Level     arm-smmu-context-fault\n102:          0          0          0          0          0          0          0          0     GICv3 360 Level     arm-smmu-context-fault\n103:          0          0          0          0          0          0          0          0     GICv3 361 Level     arm-smmu-context-fault\n104:          0          0          0          0          0          0          0          0     GICv3 362 Level     arm-smmu-context-fault\n105:          0          0          0          0          0          0          0          0     GICv3 363 Level     arm-smmu-context-fault\n106:          0          0          0          0          0          0          0          0     GICv3 364 Level     arm-smmu-context-fault\n107:          0          0          0          0          0          0          0          0     GICv3 365 Level     arm-smmu-context-fault\n108:          0          0          0          0          0          0          0          0     GICv3 366 Level     arm-smmu-context-fault\n109:          0          0          0          0          0          0          0          0     GICv3 367 Level     arm-smmu-context-fault\n110:          0          0          0          0          0          0          0          0     GICv3 368 Level     arm-smmu-context-fault\n151:          0          0          0          0          0          0          0          0       PDC  14 Edge      dp_hs_phy_irq\n152:          0          0          0          0          0          0          0          0     GICv3 162 Level     pwr_event_irq\n153:          0          0          0          0          0          0          0          0       PDC  17 Level     ss_phy_irq\n154:          0          0          0          0          0          0          0          0       PDC  15 Edge      dm_hs_phy_irq\n169:          0          0          0          0          0          0          0          0     GICv3 634 Level     spi_geni\n170:        428          0          0          0          0          0          0          0     GICv3 639 Level     i2c_geni\n183:      11239          0          0          0          0          0          0          0     GICv3 388 Level     spi_geni\n184:       1403          0          0          0          0          0          0          0     GICv3 385 Level     i2c_geni\n185:        231          0          0          0          0          0          0          0     GICv3 390 Level     i2c_geni\n198:          0          0          0          0          0          0          0          0     GICv3 618 Level     msm_serial_geni0\n199:          4          0          0          0          0          0          0          0     GICv3 615 Level     i2c_geni\n200:          0          0          0          0          0          0          0          0     GICv3 206 Level     msm_vidc\n201:          0          0          0          0          0          0          0          0     GICv3 266 Level     msm_cvp\n202:          0          0          0          0          0          0          0          0     GICv3 172 Edge      int_global_int\n271:          0          0          0          0          0          0          0          0     GICv3 332 Level     kgsl_3d0_irq\n272:          0          0          0          0          0          0          0          0     GICv3 336 Level     kgsl_hfi_irq\n273:          0          0          0          0          0          0          0          0     GICv3 337 Level     kgsl_gmu_irq\n274:          0          0          0          0          0          0          0          0     GICv3 115 Level     msm_drm\n277:          0          0          0          0          0          0          0          0     GICv3 509 Edge      csiphy0\n278:          0          0          0          0          0          0          0          0     GICv3 510 Edge      csiphy1\n279:          0          0          0          0          0          0          0          0     GICv3 511 Edge      csiphy2\n280:          0          0          0          0          0          0          0          0     GICv3 480 Edge      csiphy3\n281:          0          0          0          0          0          0          0          0     GICv3 154 Edge      csiphy4\n282:          0          0          0          0          0          0          0          0     GICv3 121 Edge      csiphy5\n283:          0          0          0          0          0          0          0          0     GICv3 492 Edge      cci\n284:          0          0          0          0          0          0          0          0     GICv3 303 Edge      cci\n285:          0          0          0          0          0          0          0          0     GICv3 491 Edge      cpas_camnoc\n286:          2          0          0          0          0          0          0          0     GICv3 493 Edge      cpas-cdm\n287:          2          0          0          0          0          0          0          0     GICv3 488 Edge      ife-cdm0\n288:          2          0          0          0          0          0          0          0     GICv3 319 Edge      ife-cdm1\n289:          2          0          0          0          0          0          0          0     GICv3 674 Edge      ife-cdm2\n290:          0          0          0          0          0          0          0          0     GICv3 496 Edge      csid\n291:          2          0          0          0          0          0          0          0     GICv3 497 Edge      ife\n292:          0          0          0          0          0          0          0          0     GICv3 498 Edge      csid\n293:          2          0          0          0          0          0          0          0     GICv3 499 Edge      ife\n294:          0          0          0          0          0          0          0          0     GICv3 672 Edge      csid\n295:          2          0          0          0          0          0          0          0     GICv3 673 Edge      ife\n296:          0          0          0          0          0          0          0          0     GICv3 500 Edge      csid-lite\n297:          2          0          0          0          0          0          0          0     GICv3 501 Edge      ife-lite\n298:          0          0          0          0          0          0          0          0     GICv3 391 Edge      csid-lite\n299:          2          0          0          0          0          0          0          0     GICv3 392 Edge      ife-lite\n300:          0          0          0          0          0          0          0          0     GICv3 495 Edge      a5\n301:          0          0          0          0          0          0          0          0     GICv3 506 Edge      jpeg\n302:          0          0          0          0          0          0          0          0     GICv3 507 Edge      jpegdma\n303:          0          0          0          0          0          0          0          0     GICv3  32 Edge      apps_wdog_bark\n304:          0          0          0          0          0          0          0          0     GICv3 960 Edge      hh_msgq_tx_0\n305:          0          0          0          0          0          0          0          0     GICv3 961 Edge      hh_msgq_rx_0\n306:        151          0          0          0          0          0          0          0      ipcc   0 Edge      qcom,qmp-aop\n307:          0          0          0          0          0          0          0          0  pmic_arb 20381778 Edge      pon_kpdpwr_status\n308:          0          0          0          0          0          0          0          0  pmic_arb 20316242 Edge      pon_resin_status\n309:          0          0          0          0          0          0          0          0  pmic_arb 19923026 Edge      pon_kpdpwr_bark\n310:          0          0          0          0          0          0          0          0  pmic_arb 20054098 Edge      pon_kpdpwr_resin_bark\n311:          0          0          0          0          0          0          0          0  pmic_arb 51380307 Edge      pm-adc5\n313:          0          0          0          0          0          0          0          0  pmic_arb 102826069 Edge      pm8xxx_rtc_alarm\n319:          0          0          0          0          0          0          0          0  pmic_arb 786432130 Edge      flash_fault\n320:          0          0          0          0          0          0          0          0  pmic_arb 786628738 Edge      flash_all_ramp_down\n321:          0          0          0          0          0          0          0          0  pmic_arb 786694274 Edge      flash_all_ramp_up\n331:          2          0          0          0          0          0          0          0      ipcc 196610 Edge      smp2p\n332:          0          0          0          0          0          0          0          0      ipcc 262146 Edge      smp2p\n333:          0          0          0          0          0          0          0          0      ipcc 393218 Edge      smp2p\n334:          0          0          0          0          0          0          0          0      ipcc 131074 Edge      smp2p\n335:          0          0          0          0          0          0          0          0      ipcc 1048577 Edge      qsee_ipc_irq_spss\n336:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n340:          0          0          0          0          0          0          0          0  spmi-gpio   8 Edge      soc:extcon_usb1\n341:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n342:          0          0          0          0          0          0          0          0     GICv3 165 Level     dwc3\n344:          0          0          0          0          0          0          0          0   msmgpio 119 Edge      aw8697\n345:          0          0          0          0          0          0          0          0   msmgpio  44 Level     cs35l41\n346:          0          0          0          0          0          0          0          0   msmgpio 116 Level     cs35l41\n348:          0          0          0          0          0          0          0          0   msmgpio  87 Level     sn-nci\n349:          1          0          0          0          0          0          0          0   msmgpio  96 Edge      msm_pcie_wake\n350:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n351:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n352:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n353:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n354:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n355:          0          0          0          1          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n356:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n357:          0          0          0          1          0          0          0          0     smp2p   2 Edge      adsp\n358:          0          0          0          0          0          0          0          0     smp2p   0 Edge      slpi\n359:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n360:          0          0          0          0          0          0          0          0     smp2p   3 Edge      slpi\n361:          0          0          0          0          0          0          0          0     smp2p   2 Edge      slpi\n362:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n363:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n364:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n365:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n366:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n367:          0          0          0          0          0          0          0          0   msmgpio  75 Edge      esd_err_irq\n368:          0          0          0          0          0          0          0          0   msmgpio  82 Edge      TE_GPIO\n369:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n370:          0          0          0          0          0          0          0          0  spmi-gpio   5 Edge      volume_up\n371:          3          0          0          0          0          0          0          0   msmgpio  23 Level     fts\n404:        354          0          0          0          0          0          0          0      ipcc 196608 Edge      glink-native\nIPI0:       824        517       4431        660         33         34         34         32       Rescheduling interrupts\nIPI1:        26         48         52         32          8          8          8          8       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:       542         84        201        139          5          5          7          5       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8350/fourth/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:04 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    6 root      0:00 [kworker/0:0H-kb]\n    8 root      0:00 [mm_percpu_wq]\n    9 root      0:00 [ksoftirqd/0]\n   10 root      0:00 [rcu_preempt]\n   11 root      0:00 [rcuog/0]\n   12 root      0:00 [rcuop/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [cpuhp/0]\n   15 root      0:00 [cpuhp/1]\n   16 root      0:00 [migration/1]\n   17 root      0:00 [ksoftirqd/1]\n   19 root      0:00 [kworker/1:0H-kb]\n   20 root      0:00 [rcuop/1]\n   21 root      0:00 [cpuhp/2]\n   22 root      0:00 [migration/2]\n   23 root      0:00 [ksoftirqd/2]\n   25 root      0:00 [kworker/2:0H-kb]\n   26 root      0:00 [rcuop/2]\n   27 root      0:00 [cpuhp/3]\n   28 root      0:00 [migration/3]\n   29 root      0:00 [ksoftirqd/3]\n   30 root      0:00 [kworker/3:0-mm_]\n   31 root      0:00 [kworker/3:0H-kb]\n   32 root      0:00 [rcuop/3]\n   34 root      0:00 [cpuhp/4]\n   35 root      0:00 [migration/4]\n   36 root      0:00 [ksoftirqd/4]\n   38 root      0:00 [kworker/4:0H]\n   39 root      0:00 [rcuog/4]\n   40 root      0:00 [rcuop/4]\n   41 root      0:00 [cpuhp/5]\n   42 root      0:00 [migration/5]\n   43 root      0:00 [ksoftirqd/5]\n   45 root      0:00 [kworker/5:0H]\n   46 root      0:00 [rcuop/5]\n   47 root      0:00 [cpuhp/6]\n   48 root      0:00 [migration/6]\n   49 root      0:00 [ksoftirqd/6]\n   50 root      0:00 [kworker/6:0-mm_]\n   51 root      0:00 [kworker/6:0H]\n   52 root      0:00 [rcuop/6]\n   53 root      0:00 [cpuhp/7]\n   54 root      0:00 [migration/7]\n   55 root      0:00 [ksoftirqd/7]\n   56 root      0:00 [kworker/7:0-rcu]\n   57 root      0:00 [kworker/7:0H]\n   58 root      0:00 [rcuop/7]\n   59 root      0:00 [kdevtmpfs]\n   60 root      0:00 [netns]\n   61 root      0:00 [rcu_tasks_kthre]\n   62 root      0:00 [kauditd]\n   65 root      0:00 [qmp_aop]\n   66 root      0:00 [hh-watchdog]\n   67 root      0:00 [oom_reaper]\n   68 root      0:00 [writeback]\n   69 root      0:00 [kcompactd0]\n   82 root      0:00 [cryptd]\n  114 root      0:00 [kblockd]\n  115 root      0:00 [blk_crypto_wq]\n  116 root      0:00 [blkcg_punt_bio]\n  117 root      0:00 [irq/41-arm-smmu]\n  118 root      0:00 [irq/42-arm-smmu]\n  119 root      0:00 [governor_msm_ad]\n  120 root      0:00 [longpress]\n  121 root      0:00 [irq/26-tsens-up]\n  122 root      0:00 [irq/27-tsens-cr]\n  123 root      0:00 [irq/29-tsens-up]\n  124 root      0:00 [irq/30-tsens-cr]\n  125 root      0:00 [irq/12-dcvsh-ir]\n  126 root      0:00 [irq/13-dcvsh-ir]\n  127 root      0:00 [irq/14-dcvsh-ir]\n  129 root      0:00 [devfreq_wq]\n  130 root      0:00 [ipa_usb_wq]\n  131 root      0:00 [watchdogd]\n  132 root      0:00 [ion-pool-uncach]\n  133 root      0:00 [ion-pool-cached]\n  134 root      0:00 [system]\n  135 root      0:00 [cfg80211]\n  161 root      0:00 [kworker/2:1-eve]\n  163 root      0:00 [kworker/5:1-eve]\n  164 root      0:00 [kworker/3:1-eve]\n  165 root      0:00 [kworker/6:1-eve]\n  167 root      0:00 [kswapd0:0]\n  169 root      0:00 [irq/331-smp2p]\n  170 root      0:00 [irq/332-smp2p]\n  171 root      0:00 [irq/333-smp2p]\n  172 root      0:00 [irq/334-smp2p]\n  174 root      0:00 [pmic_glink_rx]\n  175 root      0:00 [pmic_glink_rx]\n  176 root      0:00 [cdsprm-wq]\n  177 root      0:00 [cdsprm-wq-delay]\n  178 root      0:00 [hyp_core_ctl]\n  181 root      0:02 [kworker/0:4-eve]\n  182 root      0:00 [kgsl-workqueue]\n  183 root      0:00 [kgsl-mementry]\n  184 root      0:00 [kgsl_worker_thr]\n  185 root      0:00 [qseecom-unreg-l]\n  186 root      0:00 [qseecom-unload-]\n  187 root      0:00 [uas]\n  188 root      0:00 [k_ipa_usb]\n  189 root      0:00 [dm_bufio_cache]\n  190 root      0:00 [irq/321-flash_a]\n  191 root      0:00 [irq/320-flash_a]\n  192 root      0:00 [irq/319-flash_f]\n  193 root      0:00 [qcrypto_seq_res]\n  194 root      0:00 [ion_system_heap]\n  195 root      0:00 [hh_rm_recv_task]\n  196 root      0:00 [memlat_wq]\n  197 root      0:00 [irq/340-soc:ext]\n  198 root      0:00 [dsi_dma_cmd_wor]\n  199 root      0:00 [apr_driver]\n  201 root      0:00 [ipv6_addrconf]\n  202 root      0:00 [krfcommd]\n  203 root      0:00 [soc:qcom,svm_ne]\n  204 root      0:00 [rq_stats]\n  205 root      0:00 [msm_perf:events]\n  206 root      0:00 [khvcd]\n  207 root      0:00 [dsi_dma_cmd_wor]\n  209 root      0:00 [ipa_power_mgmt]\n  210 root      0:00 [transport_power]\n  211 root      0:00 [ipa_pm_activate]\n  212 root      0:00 [rmnet_ctlwq]\n  214 root      0:00 [hwrng]\n  215 root      0:00 [irq/53-arm-smmu]\n  216 root      0:00 [irq/54-arm-smmu]\n  217 root      0:00 [irq/60-arm-smmu]\n  218 root      0:00 [k_sm_usb]\n  219 root      0:00 [irq/152-pwr_eve]\n  220 root      0:00 [irq/151-dp_hs_p]\n  221 root      0:00 [irq/154-dm_hs_p]\n  222 root      0:00 [irq/153-ss_phy_]\n  223 root      0:00 [usb_bam_wq]\n  224 root      0:00 [msm_vidc_worker]\n  225 root      0:00 [pm_workerq_venu]\n  226 root      0:00 [vidc_core_workq]\n  227 root      0:00 [irq/62-arm-smmu]\n  228 root      0:00 [irq/63-arm-smmu]\n  229 root      0:00 [irq/64-arm-smmu]\n  230 root      0:00 [irq/65-arm-smmu]\n  231 root      0:00 [irq/66-arm-smmu]\n  232 root      0:00 [irq/43-arm-smmu]\n  233 root      0:00 [irq/44-arm-smmu]\n  234 root      0:00 [irq/45-arm-smmu]\n  235 root      0:00 [irq/46-arm-smmu]\n  236 root      0:00 [kgsl-events]\n  237 root      0:00 [kgsl_devfreq_wq]\n  238 root      0:00 [msm_cvp_workerq]\n  239 root      0:00 [pm_workerq_iris]\n  240 root      0:00 [irq/67-arm-smmu]\n  241 root      0:00 [irq/68-arm-smmu]\n  242 root      0:00 [irq/69-arm-smmu]\n  243 root      0:00 [cvp-dsp-thread]\n  244 root      0:00 [irq/70-arm-smmu]\n  245 root      0:00 [irq/71-arm-smmu]\n  246 root      0:00 [irq/72-arm-smmu]\n  247 root      0:00 [mem_buf_rcvr]\n  248 root      0:00 [irq/73-arm-smmu]\n  249 root      0:00 [irq/74-arm-smmu]\n  250 root      0:00 [irq/75-arm-smmu]\n  251 root      0:00 [irq/76-arm-smmu]\n  252 root      0:00 [irq/77-arm-smmu]\n  253 root      0:00 [irq/78-arm-smmu]\n  254 root      0:00 [irq/79-arm-smmu]\n  255 root      0:00 [irq/80-arm-smmu]\n  256 root      0:00 [irq/81-arm-smmu]\n  257 root      0:00 [irq/82-arm-smmu]\n  258 root      0:00 [irq/83-arm-smmu]\n  259 root      0:00 [irq/84-arm-smmu]\n  260 root      0:00 [irq/85-arm-smmu]\n  261 root      0:00 [irq/86-arm-smmu]\n  262 root      0:00 [irq/87-arm-smmu]\n  263 root      0:00 [irq/88-arm-smmu]\n  264 root      0:00 [irq/89-arm-smmu]\n  265 root      0:00 [irq/90-arm-smmu]\n  266 root      0:00 [irq/91-arm-smmu]\n  267 root      0:00 [irq/92-arm-smmu]\n  268 root      0:00 [irq/93-arm-smmu]\n  269 root      0:00 [irq/94-arm-smmu]\n  270 root      0:00 [irq/61-arm-smmu]\n  291 root      0:00 [uaudio_svc]\n  292 root      0:00 [irq/95-arm-smmu]\n  293 root      0:00 [irq/59-arm-smmu]\n  294 root      0:00 [irq/96-arm-smmu]\n  295 root      0:00 [irq/97-arm-smmu]\n  296 root      0:00 [irq/98-arm-smmu]\n  297 root      0:00 [irq/99-arm-smmu]\n  298 root      0:00 [irq/100-arm-smm]\n  299 root      0:00 [irq/101-arm-smm]\n  300 root      0:00 [irq/102-arm-smm]\n  301 root      0:00 [irq/103-arm-smm]\n  302 root      0:00 [irq/55-arm-smmu]\n  303 root      0:00 [scsi_eh_0]\n  304 root      0:00 [scsi_tmf_0]\n  305 root      0:00 [qc_ufs_qos_swq]\n  306 root      0:00 [ufs_eh_wq_0]\n  307 root      0:00 [ufs_clk_gating_]\n  308 root      0:00 [spi0]\n  309 root      0:00 [irq/344-aw8697]\n  310 root      0:00 [aw8976_vibrator]\n  313 root      0:00 [kworker/1:1H-kb]\n  315 root      0:00 [kworker/0:1H-kb]\n  316 root      0:00 [kworker/2:1H-kb]\n  318 root      0:00 [kworker/3:1H-kb]\n  319 root      0:00 [spi1]\n  320 root      0:00 [irq/345-cs35l41]\n  321 root      0:00 [irq/346-cs35l41]\n  322 root      0:00 [dsi_dma_cmd_wor]\n  323 root      0:00 [irq/104-arm-smm]\n  324 root      0:00 [irq/105-arm-smm]\n  325 root      0:00 [irq/106-arm-smm]\n  326 root      0:00 [irq/107-arm-smm]\n  327 root      0:00 [cam-cpas]\n  328 root      0:00 [qcom,cam_virtua]\n  329 root      0:00 [qcom,cam-cpas-c]\n  330 root      0:00 [qcom,cam-cpas-c]\n  331 root      0:00 [qcom,cam-cpas-c]\n  332 root      0:00 [qcom,cam-cpas-c]\n  333 root      0:00 [qcom,cam-ife-cd]\n  334 root      0:00 [qcom,cam-ife-cd]\n  335 root      0:00 [qcom,cam-ife-cd]\n  336 root      0:00 [qcom,cam-ife-cd]\n  337 root      0:00 [qcom,cam-ife-cd]\n  338 root      0:00 [qcom,cam-ife-cd]\n  339 root      0:00 [qcom,cam-ife-cd]\n  340 root      0:00 [qcom,cam-ife-cd]\n  341 root      0:00 [qcom,cam-ife-cd]\n  342 root      0:00 [qcom,cam-ife-cd]\n  343 root      0:00 [qcom,cam-ife-cd]\n  344 root      0:00 [qcom,cam-ife-cd]\n  345 root      0:00 [cam_cci_wq]\n  346 root      0:00 [cam_cci_wq]\n  347 root      0:00 [cam_cci_wq]\n  348 root      0:00 [cam_cci_wq]\n  349 root      0:00 [dsi_dma_cmd_wor]\n  350 root      0:00 [dsi_dma_cmd_wor]\n  351 root      0:00 [disp_feature:0]\n  352 root      0:00 [irq/367-esd_err]\n  353 root      0:00 [crtc_commit:132]\n  354 root      0:00 [crtc_event:132]\n  355 root      0:00 [crtc_commit:193]\n  356 root      0:00 [crtc_event:193]\n  357 root      0:00 [pp_event]\n  358 root      0:00 [irq/108-arm-smm]\n  359 root      0:00 [sb-1]\n  360 root      0:00 [ngd_rx_thread1]\n  361 root      0:00 [ngd_notify_sl1]\n  362 root      0:00 [irq/109-arm-smm]\n  363 root      0:00 [irq/110-arm-smm]\n  364 root      0:00 [mhi_w]\n  365 root      0:00 [kworker/2:2-eve]\n  366 root      0:00 [irq/371-fts]\n  367 root      0:00 [irq/23-90b6400.]\n  368 root      0:00 [irq/24-9091000.]\n  369 root      0:00 [irq/25-90b9100.]\n  370 root      0:00 [core_ctl/0]\n  371 root      0:00 [core_ctl/4]\n  372 root      0:00 [core_ctl/7]\n  383 root      0:00 qrtr-ns\n  385 root      0:00 [kworker/u17:1-p]\n  386 root      0:00 [kworker/u17:2-d]\n  387 root      0:00 [glink_adsp]\n  388 root      0:00 [qrtr_rx]\n  397 root      0:00 [kworker/1:2-eve]\n  398 root      0:00 [kworker/4:2-eve]\n  399 root      0:00 [kworker/5:2]\n  400 root      0:00 [kworker/7:2-eve]\n  434 root      0:02 [kworker/u16:0-m]\n  458 root      0:00 [kworker/0:1-eve]\n  459 root      0:00 [kworker/1:0]\n  511 root      0:00 [kworker/4:0]\n  530 root      0:00 [kworker/u16:2-m]\n  543 root      0:00 [kworker/0:0-eve]\n  568 root      0:00 [kworker/u16:1-r]\n  572 root      0:00 [kworker/7:1]\n  616 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm8350/fourth/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1111.893555,3.7063118500000005,69.78540769230774,18.829875228612117,15.932128936475802,269.82539547\r\n1,403200,1495.692406,3.7095545783730155,52.80599481865289,10.592240006610005,28.322621070971515,200.587831798\r\n1,499200,1852.023335,3.7099826422275646,50.60367307692312,8.197461533385418,36.59669505958693,161.993409469\r\n1,595200,2208.496823,3.7105121354166664,48.637847328244355,6.60729496848475,45.404360094551514,135.846780469\r\n1,691200,2564.869833,3.7107491796875,52.578803571428594,6.150198387649841,48.778914287127286,116.971060007\r\n1,806400,2991.444469,3.7096285577876986,55.20389583333341,5.536547497008941,54.185392640823856,100.29269517\r\n1,902400,3348.662767,3.7108408322251774,64.23213953488377,5.754781876754161,52.13055966757291,89.59349507\r\n1,998400,3704.115272,3.7100513541666666,63.338153846153844,5.13010333651274,58.478354200936856,80.995466792\r\n1,1094400,4061.628442,3.711283298611111,67.07164788732402,4.954309771711058,60.55333917814141,73.865931847\r\n1,1209600,4489.472188,3.711534546957672,73.2305,4.893828430781564,61.30169952690573,66.827734766\r\n1,1305600,4845.743822,3.711507216605393,83.20596610169498,5.151618629583817,58.23412437349541,61.914053414\r\n1,1401600,5202.011444,3.711480767694064,83.17150909090911,4.796797724058259,62.5417241371999,57.673568467\r\n1,1497600,5558.231741,3.711426109107906,88.96809615384615,4.802208862986957,62.47125199244272,53.976752011\r\n1,1612800,5984.798612,3.7108126314484124,94.9310625,4.7590086867246955,63.0383383911135,50.131206387\r\n1,1708800,6342.762908,3.7118228628277152,106.65762222222224,5.045111639500024,59.46350079772077,47.30193243\r\n1,1804800,6698.821008,3.7116694414893616,116.08290697674423,5.199025303974105,57.70312365486694,44.787173576\r\n4,710400,6463.010039,9.097705572916666,115.63740909090914,5.3692117571928515,55.87412334745519,46.431442899\r\n4,844800,7683.245403,9.09475071377841,142.1208108108109,5.551284479965121,54.04154679564988,39.060320922\r\n4,960000,8737.43993,9.101499927083333,162.24472727272732,5.572926997882411,53.83167590639413,34.348894362\r\n4,1075200,9779.313492,9.09534364955357,185.29951724137936,5.68691390839267,52.752688862981394,30.690387072\r\n4,1209600,11012.407312,9.104172711640212,216.11100000000005,5.89038889212142,50.93042335477364,27.256312229\r\n4,1324800,12054.486278,9.099098941727053,241.18320833333343,6.005491907573943,49.95427595558811,24.90012447\r\n4,1440000,13098.148795,9.095936663194443,282.00472727272734,6.462678200662528,46.420383420799936,22.916914419\r\n4,1555200,14136.273678,9.089682148919753,315.00515000000007,6.689306232414928,44.84770013163174,21.235545617\r\n4,1670400,15190.642564,9.094014944923371,332.70752631578955,6.57487070455286,45.62827369247898,19.76171317\r\n4,1766400,16071.141587,9.098245916553442,368.89616666666666,6.89105172973625,43.534718902985546,18.680193378\r\n4,1881600,17114.495978,9.095714274022109,464.6190000000001,8.150838676340607,36.80602842389806,17.543059316\r\n4,1996800,18173.007027,9.101065217848557,501.45020000000005,8.28481859386062,36.210810967220446,16.521717598\r\n4,2112000,19215.987702,9.098479025568182,590.9654,9.2343083138857,32.48754425373557,15.625801974\r\n4,2227200,20268.90075,9.100619948814657,646.7519285714286,9.580801166996721,31.312621436443035,14.813718744\r\n4,2342400,21312.872975,9.09873333973702,783.0390769230769,11.033028215948528,27.19108427243413,14.090009734\r\n4,2419200,22010.27146,9.09816115244709,863.3790000000001,11.778834169279982,25.46941366934436,13.64271562\r\n7,844800,7841.497203,9.282075287642046,223.1341111111111,8.539898544235259,35.1292229581007,38.272492277\r\n7,960000,8908.950526,9.280156797916668,255.0409375000001,8.591577527724002,34.91791804612547,33.6870528\r\n7,1075200,9983.028851,9.284811059337796,274.3219655172415,8.24742695311842,36.374981155373256,30.064770561\r\n7,1190400,8821.19439,7.410277545362903,262.18178125,8.920052953034249,33.63208734068691,34.022398164\r\n7,1305600,10108.157283,7.7421547817095595,285.94189285714293,8.490230345183502,35.33473036690809,29.692152697\r\n7,1420800,13190.871917,9.284115932573199,361.0569523809524,8.216191018696083,36.5132698737584,22.755941866\r\n7,1555200,14449.475002,9.29107188914609,406.5504,8.4461753740087,35.51903515089041,20.775223377\r\n7,1670400,15507.081567,9.283454003232757,455.8765,8.825892930821146,33.99089501214791,19.360271764\r\n7,1785600,16477.179107,9.227810879816309,503.79152941176477,9.179470736523644,32.681622787504296,18.220772285\r\n7,1900800,17647.058824,9.284016637205387,576.229625,9.80413887291849,30.599321764879917,17.014291608\r\n7,2035200,18905.974288,9.289492083333334,633.6572666666667,10.063055999156349,29.812017345938543,15.880913119\r\n7,2150400,19973.368842,9.28821095703125,698.4012857142858,10.499576575490623,28.57258079342896,15.033730307\r\n7,2265600,21031.968592,9.28317822740113,812.8523076923077,11.606230809585638,25.84818490359753,14.278400516\r\n7,2380800,22114.108801,9.288520161710348,967.5682307692308,13.138969418975938,22.832841026840768,13.579372494\r\n7,2496000,23166.023166,9.28125928125,1013.7604166666667,13.141207843943011,22.828951764755377,12.962833849\r\n7,2592000,24071.250903,9.286748033564814,1194.5463333333335,14.903283299595518,20.129792473859915,12.476103173\r\n7,2688000,24958.402662,9.28512003794643,1244.627909090909,14.977656093439876,20.02983631940903,12.033842391\r\n7,2764800,25682.732643,9.289182813585068,1363.9313636363638,15.951114494143706,18.80746327224609,11.694953954\r\n7,2841600,26387.545079,9.286157474310247,1601.5505454545455,18.228767473302955,16.457503253545074,11.381949527\r\n"
  },
  {
    "path": "results/sm8350/fourth/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 2906.1836553029716, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1320.696, 1320.696, 1320.696, 1303.764, 1303.764, 1291.065, 1291.065, 1291.065, 1290.76, 1291.065, 1290.76, 1303.764, 1291.065, 1290.76, 1290.76, 1303.456, 1290.76, 1303.456, 1290.76, 1303.456, 1273.832, 1273.832, 1303.456, 1290.76, 1273.531, 1290.76, 1290.76, 1290.76, 1290.76], \"power_mean\": 1295.244275862069, \"energy_millijoules\": 6476.221379310345, \"energy_joules\": 6.476221379310345}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 269.82539547, \"elapsed_ns\": 269825395470, \"power_samples\": [63.149000000000115, 92.75900000000001, 75.83899999999994, 93.08200000000011, 76.15800000000013, 75.83899999999994, 93.08200000000011, 76.15800000000013, 75.83899999999994, 92.75900000000001, 76.15800000000013, 75.83899999999994, 75.83899999999994, 93.08200000000011, 75.83899999999994, 75.83899999999994, 75.83899999999994, 92.75900000000001, 75.83899999999994, 75.83899999999994, 92.75900000000001, 75.83899999999994, 75.83899999999994, 75.83899999999994, 76.15800000000013, 75.83899999999994, 75.83899999999994, 75.83899999999994, 75.83899999999994, 75.83899999999994, 75.51999999999998, 75.51999999999998, 92.43600000000015, 75.51999999999998, 75.51999999999998, 75.51999999999998, 75.51999999999998, 75.51999999999998, 75.51999999999998, 75.51999999999998, 75.51999999999998, 92.75900000000001, 62.833000000000084, 75.51999999999998, 75.51999999999998, 92.43600000000015, 75.51999999999998, 75.51999999999998, 75.51999999999998, 75.51999999999998, 75.51999999999998, 92.43600000000015, 62.833000000000084, 92.43600000000015, 75.51999999999998, 75.51999999999998, 75.51999999999998, 75.20100000000002, 62.833000000000084, 92.43600000000015, 62.833000000000084, 75.51999999999998, 75.20100000000002, 92.11300000000006, 62.20100000000002, 92.11300000000006, 62.51700000000005, 92.11300000000006, 62.51700000000005, 75.20100000000002, 75.20100000000002, 75.51999999999998, 75.20100000000002, 62.51700000000005, 75.20100000000002, 75.20100000000002, 75.20100000000002, 75.20100000000002, 75.20100000000002, 75.20100000000002, 75.20100000000002, 75.20100000000002, 75.20100000000002, 75.20100000000002, 75.20100000000002, 75.20100000000002, 75.20100000000002, 62.20100000000002, 92.11300000000006, 62.20100000000002, 75.20100000000002, 74.88200000000006, 74.88200000000006, 75.20100000000002, 74.88200000000006, 74.5630000000001, 74.5630000000001, 62.20100000000002, 62.20100000000002, 74.88200000000006, 91.78999999999996, 62.20100000000002, 62.20100000000002, 74.88200000000006, 74.88200000000006, 74.88200000000006, 62.20100000000002, 74.88200000000006, 91.78999999999996, 62.20100000000002, 74.88200000000006, 74.88200000000006, 74.88200000000006, 74.88200000000006, 61.88499999999999, 74.88200000000006, 62.20100000000002, 74.88200000000006, 62.20100000000002, 74.88200000000006, 61.88499999999999, 91.78999999999996, 61.88499999999999, 74.88200000000006, 74.5630000000001, 74.5630000000001, 61.88499999999999, 74.5630000000001, 74.24400000000014, 61.56899999999996, 74.5630000000001, 61.88499999999999, 61.88499999999999, 74.88200000000006, 61.88499999999999, 74.5630000000001, 74.5630000000001, 74.5630000000001, 61.88499999999999, 74.5630000000001, 61.88499999999999, 74.5630000000001, 61.88499999999999, 74.5630000000001, 74.5630000000001, 61.88499999999999, 74.5630000000001, 61.88499999999999, 74.5630000000001, 61.88499999999999, 74.5630000000001, 61.88499999999999, 74.5630000000001, 74.5630000000001, 61.88499999999999, 74.24400000000014, 74.5630000000001, 61.56899999999996, 61.253000000000156, 74.24400000000014, 61.56899999999996, 61.253000000000156, 74.24400000000014, 61.56899999999996, 61.56899999999996, 61.56899999999996, 61.56899999999996, 74.24400000000014, 61.56899999999996, 74.24400000000014, 61.56899999999996, 74.24400000000014, 74.24400000000014, 44.669000000000096, 74.24400000000014, 61.56899999999996, 74.24400000000014, 61.253000000000156, 61.56899999999996, 61.253000000000156, 61.56899999999996, 73.92499999999995, 44.35699999999997, 73.92499999999995, 61.253000000000156, 73.92499999999995, 61.56899999999996, 61.253000000000156, 73.92499999999995, 61.253000000000156, 44.35699999999997, 73.606, 60.937000000000126, 60.937000000000126, 44.35699999999997, 73.92499999999995, 61.253000000000156, 61.253000000000156, 73.92499999999995, 61.253000000000156, 61.253000000000156, 61.253000000000156, 73.92499999999995, 73.92499999999995, 61.253000000000156, 137.28500000000008, 90.49800000000005, 61.253000000000156, 61.253000000000156, 61.253000000000156, 44.35699999999997, 61.253000000000156, 73.92499999999995, 60.937000000000126, 61.253000000000156, 60.937000000000126, 60.937000000000126, 60.937000000000126, 73.92499999999995, 61.253000000000156, 60.937000000000126, 60.937000000000126, 60.937000000000126, 43.73299999999995, 60.937000000000126, 60.621000000000095, 60.937000000000126, 60.621000000000095, 73.606, 44.04500000000007, 73.606, 60.937000000000126, 44.04500000000007, 60.937000000000126, 60.937000000000126, 60.937000000000126, 60.937000000000126, 60.937000000000126, 60.937000000000126, 44.04500000000007, 60.937000000000126, 60.937000000000126, 60.937000000000126, 43.73299999999995, 60.937000000000126, 60.621000000000095, 60.621000000000095, 60.621000000000095, 60.621000000000095, 60.937000000000126, 60.621000000000095, 60.621000000000095, 60.937000000000126, 43.73299999999995, 60.621000000000095, 43.42100000000005, 43.42100000000005, 60.305000000000064, 60.305000000000064, 60.305000000000064], \"power_mean\": 69.78540769230774, \"energy_millijoules\": 18829.875228612116, \"energy_joules\": 18.829875228612117, \"coremark_score\": 1111.893555, \"coremarks_per_mhz\": 3.7063118500000005, \"ulpmark_cm_score\": 15.932128936475802}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1273.832, 1290.455, 1290.455, 1302.84], \"power_mean\": 1289.3955, \"energy_millijoules\": 6446.977500000001, \"energy_joules\": 6.446977500000001}}, \"403200\": {\"active\": {\"elapsed_sec\": 200.587831798, \"elapsed_ns\": 200587831798, \"power_samples\": [26.845000000000027, 43.73299999999995, 60.305000000000064, 43.73299999999995, 60.305000000000064, 60.621000000000095, 60.305000000000064, 43.73299999999995, 60.305000000000064, 60.621000000000095, 60.305000000000064, 60.305000000000064, 60.305000000000064, 60.305000000000064, 43.42100000000005, 60.305000000000064, 72.96800000000007, 43.42100000000005, 60.305000000000064, 59.98900000000003, 43.10900000000015, 60.305000000000064, 59.98900000000003, 43.10900000000015, 72.64900000000011, 43.42100000000005, 72.96800000000007, 43.42100000000005, 60.305000000000064, 60.305000000000064, 60.305000000000064, 60.305000000000064, 60.305000000000064, 43.42100000000005, 59.98900000000003, 60.305000000000064, 43.10900000000015, 72.96800000000007, 43.42100000000005, 60.305000000000064, 72.64900000000011, 59.98900000000003, 59.98900000000003, 43.10900000000015, 59.98900000000003, 59.98900000000003, 43.10900000000015, 59.98900000000003, 59.98900000000003, 59.98900000000003, 43.10900000000015, 42.797000000000025, 59.673, 59.35699999999997, 59.673, 59.673, 72.64900000000011, 43.10900000000015, 59.98900000000003, 43.10900000000015, 72.33000000000015, 43.10900000000015, 59.673, 43.10900000000015, 59.673, 59.673, 43.10900000000015, 59.673, 43.10900000000015, 59.673, 59.673, 59.673, 59.673, 59.673, 42.797000000000025, 59.673, 59.673, 59.673, 42.797000000000025, 42.797000000000025, 59.673, 59.673, 42.797000000000025, 42.48500000000013, 59.673, 59.35699999999997, 42.48500000000013, 72.01099999999997, 42.48500000000013, 59.673, 59.673, 42.797000000000025, 59.673, 59.673, 42.797000000000025, 42.797000000000025, 59.673, 59.673, 42.797000000000025, 59.35699999999997, 59.35699999999997, 42.797000000000025, 59.35699999999997, 59.35699999999997, 59.35699999999997, 42.48500000000013, 59.35699999999997, 59.35699999999997, 42.48500000000013, 59.35699999999997, 42.48500000000013, 42.48500000000013, 59.35699999999997, 59.35699999999997, 42.48500000000013, 59.04099999999994, 42.173, 59.04099999999994, 59.04099999999994, 42.173, 59.04099999999994, 59.04099999999994, 42.173, 59.04099999999994, 42.173, 42.48500000000013, 59.35699999999997, 42.48500000000013, 59.35699999999997, 42.48500000000013, 59.04099999999994, 42.173, 59.35699999999997, 59.04099999999994, 42.48500000000013, 59.04099999999994, 59.04099999999994, 42.173, 59.04099999999994, 42.173, 59.04099999999994, 59.04099999999994, 42.173, 59.04099999999994, 42.173, 59.04099999999994, 42.173, 41.861000000000104, 58.725000000000136, 41.861000000000104, 58.725000000000136, 58.725000000000136, 41.861000000000104, 59.04099999999994, 59.04099999999994, 42.173, 42.173, 41.861000000000104, 42.173, 58.725000000000136, 41.861000000000104, 58.725000000000136, 58.725000000000136, 41.861000000000104, 58.725000000000136, 42.173, 58.725000000000136, 41.861000000000104, 71.37300000000005, 41.861000000000104, 58.725000000000136, 41.861000000000104, 41.861000000000104, 41.861000000000104, 58.725000000000136, 24.99700000000007, 58.725000000000136, 41.861000000000104, 58.725000000000136, 24.99700000000007, 58.409000000000106, 58.093000000000075, 41.54899999999998, 41.23700000000008, 41.54899999999998, 58.725000000000136, 58.409000000000106, 41.861000000000104, 41.861000000000104, 58.409000000000106, 41.861000000000104, 41.54899999999998, 41.54899999999998], \"power_mean\": 52.80599481865289, \"energy_millijoules\": 10592.240006610005, \"energy_joules\": 10.592240006610005, \"coremark_score\": 1495.692406, \"coremarks_per_mhz\": 3.7095545783730155, \"ulpmark_cm_score\": 28.322621070971515}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1270.822, 1254.231, 1271.123, 1270.822], \"power_mean\": 1266.7495, \"energy_millijoules\": 6333.7474999999995, \"energy_joules\": 6.333747499999999}}, \"499200\": {\"active\": {\"elapsed_sec\": 161.993409469, \"elapsed_ns\": 161993409469, \"power_samples\": [-4.816000000000031, 58.409000000000106, 41.54899999999998, 58.409000000000106, 41.23700000000008, 58.409000000000106, 41.54899999999998, 58.409000000000106, 58.093000000000075, 41.54899999999998, 71.05400000000009, 41.23700000000008, 58.093000000000075, 58.093000000000075, 58.093000000000075, 58.093000000000075, 41.23700000000008, 41.54899999999998, 71.05400000000009, 41.54899999999998, 58.093000000000075, 41.23700000000008, 58.093000000000075, 58.093000000000075, 87.59100000000012, 58.093000000000075, 58.093000000000075, 58.093000000000075, 41.23700000000008, 70.73500000000013, 58.093000000000075, 58.093000000000075, 41.23700000000008, 58.093000000000075, 41.23700000000008, 58.093000000000075, 58.093000000000075, 58.093000000000075, 41.23700000000008, 58.093000000000075, 58.093000000000075, 58.093000000000075, 58.093000000000075, 57.777000000000044, 57.777000000000044, 40.924999999999955, 57.777000000000044, 57.46100000000001, 40.924999999999955, 57.777000000000044, 57.777000000000044, 57.777000000000044, 41.23700000000008, 58.093000000000075, 57.777000000000044, 57.777000000000044, 57.777000000000044, 57.777000000000044, 40.924999999999955, 57.777000000000044, 57.777000000000044, 57.777000000000044, 40.924999999999955, 40.924999999999955, 57.777000000000044, 57.777000000000044, 40.924999999999955, 57.777000000000044, 40.924999999999955, 57.777000000000044, 57.777000000000044, 57.777000000000044, 40.613000000000056, 57.777000000000044, 57.46100000000001, 23.7650000000001, 57.46100000000001, 40.30100000000016, 57.46100000000001, 57.14499999999998, 57.46100000000001, 40.613000000000056, 57.46100000000001, 40.613000000000056, 57.46100000000001, 57.46100000000001, 57.46100000000001, 40.613000000000056, 57.46100000000001, 57.777000000000044, 40.924999999999955, 57.46100000000001, 40.613000000000056, 57.46100000000001, 40.613000000000056, 57.46100000000001, 40.613000000000056, 40.613000000000056, 57.46100000000001, 40.613000000000056, 57.46100000000001, 40.613000000000056, 57.46100000000001, 40.613000000000056, 57.46100000000001, 57.46100000000001, 40.613000000000056, 57.14499999999998, 57.14499999999998, 23.457000000000107, 57.46100000000001, 57.14499999999998, 40.30100000000016, 57.14499999999998, 57.46100000000001, 40.30100000000016, 40.613000000000056, 57.14499999999998, 57.14499999999998, 40.30100000000016, 57.14499999999998, 40.30100000000016, 40.30100000000016, 40.30100000000016, 57.14499999999998, 40.30100000000016, 57.14499999999998, 40.30100000000016, 57.14499999999998, 57.14499999999998, 40.30100000000016, 40.30100000000016, 57.14499999999998, 40.30100000000016, 57.14499999999998, 57.14499999999998, 40.30100000000016, 40.30100000000016, 57.14499999999998, 39.98900000000003, 22.841000000000122, 39.98900000000003, 56.82899999999995, 39.98900000000003, 39.98900000000003, 39.98900000000003, 56.82899999999995, 57.14499999999998, 40.30100000000016, 56.82899999999995, 56.82899999999995, 39.98900000000003, 39.98900000000003, 56.82899999999995, 39.98900000000003, 39.98900000000003], \"power_mean\": 50.60367307692312, \"energy_millijoules\": 8197.461533385418, \"energy_joules\": 8.197461533385418, \"coremark_score\": 1852.023335, \"coremarks_per_mhz\": 3.7099826422275646, \"ulpmark_cm_score\": 36.59669505958693}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1252.152, 1252.152, 1269.016, 1252.152], \"power_mean\": 1256.368, \"energy_millijoules\": 6281.84, \"energy_joules\": 6.28184}}, \"595200\": {\"active\": {\"elapsed_sec\": 135.846780469, \"elapsed_ns\": 135846780469, \"power_samples\": [-6.019999999999982, 56.82899999999995, 56.82899999999995, 39.98900000000003, 56.82899999999995, 39.98900000000003, 56.82899999999995, 39.677000000000135, 39.677000000000135, 56.197000000000116, 39.677000000000135, 56.51300000000015, 39.677000000000135, 69.1400000000001, 39.677000000000135, 39.677000000000135, 56.51300000000015, 56.82899999999995, 39.98900000000003, 56.51300000000015, 56.51300000000015, 39.677000000000135, 56.51300000000015, 39.677000000000135, 39.677000000000135, 56.51300000000015, 56.51300000000015, 56.51300000000015, 56.51300000000015, 39.677000000000135, 56.51300000000015, 56.51300000000015, 56.51300000000015, 56.51300000000015, 56.51300000000015, 39.677000000000135, 56.51300000000015, 39.677000000000135, 56.197000000000116, 39.677000000000135, 56.197000000000116, 39.36500000000001, 39.36500000000001, 55.881000000000085, 56.197000000000116, 39.36500000000001, 56.197000000000116, 56.51300000000015, 39.36500000000001, 56.51300000000015, 56.197000000000116, 56.51300000000015, 39.36500000000001, 56.197000000000116, 39.36500000000001, 39.36500000000001, 56.197000000000116, 56.197000000000116, 39.36500000000001, 56.197000000000116, 56.197000000000116, 39.36500000000001, 56.197000000000116, 56.197000000000116, 56.197000000000116, 39.36500000000001, 56.197000000000116, 56.197000000000116, 39.36500000000001, 39.36500000000001, 39.36500000000001, 55.881000000000085, 39.36500000000001, 39.05300000000011, 39.05300000000011, 55.881000000000085, 39.05300000000011, 55.565000000000055, 55.881000000000085, 56.197000000000116, 55.881000000000085, 39.05300000000011, 56.197000000000116, 39.05300000000011, 39.05300000000011, 55.881000000000085, 39.36500000000001, 55.881000000000085, 39.05300000000011, 55.881000000000085, 55.881000000000085, 39.05300000000011, 39.05300000000011, 68.50199999999995, 55.881000000000085, 39.05300000000011, 39.05300000000011, 55.881000000000085, 55.881000000000085, 39.05300000000011, 39.05300000000011, 55.565000000000055, 39.05300000000011, 55.881000000000085, 39.05300000000011, 55.565000000000055, 55.565000000000055, 55.565000000000055, 55.565000000000055, 38.740999999999985, 55.565000000000055, 38.740999999999985, 55.565000000000055, 39.05300000000011, 55.881000000000085, 38.740999999999985, 55.565000000000055, 39.05300000000011, 55.565000000000055, 38.740999999999985, 55.565000000000055, 55.565000000000055, 38.740999999999985, 55.565000000000055, 55.565000000000055, 55.565000000000055, 38.740999999999985, 55.565000000000055, 38.740999999999985, 55.565000000000055, 38.740999999999985], \"power_mean\": 48.637847328244355, \"energy_millijoules\": 6607.29496848475, \"energy_joules\": 6.60729496848475, \"coremark_score\": 2208.496823, \"coremarks_per_mhz\": 3.7105121354166664, \"ulpmark_cm_score\": 45.404360094551514}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1250.667, 1250.667, 1250.667, 1267.511], \"power_mean\": 1254.878, \"energy_millijoules\": 6274.389999999999, \"energy_joules\": 6.2743899999999995}}, \"691200\": {\"active\": {\"elapsed_sec\": 116.971060007, \"elapsed_ns\": 116971060007, \"power_samples\": [55.249000000000024, 38.42900000000009, 54.93299999999999, 55.249000000000024, 38.42900000000009, 38.42900000000009, 55.565000000000055, 55.565000000000055, 55.249000000000024, 147.75900000000001, 55.249000000000024, 55.565000000000055, 38.42900000000009, 55.249000000000024, 55.249000000000024, 55.249000000000024, 67.86400000000003, 38.42900000000009, 55.249000000000024, 55.249000000000024, 55.249000000000024, 38.42900000000009, 55.249000000000024, 55.249000000000024, 55.249000000000024, 38.42900000000009, 67.54500000000007, 38.42900000000009, 55.249000000000024, 67.86400000000003, 38.42900000000009, 38.11699999999996, 67.54500000000007, 54.93299999999999, 38.11699999999996, 54.93299999999999, 54.93299999999999, 55.249000000000024, 38.11699999999996, 54.93299999999999, 54.93299999999999, 54.93299999999999, 38.11699999999996, 67.54500000000007, 54.93299999999999, 54.93299999999999, 38.11699999999996, 54.93299999999999, 54.93299999999999, 54.93299999999999, 54.93299999999999, 54.93299999999999, 54.93299999999999, 38.11699999999996, 54.93299999999999, 38.11699999999996, 54.93299999999999, 54.93299999999999, 54.93299999999999, 54.93299999999999, 54.93299999999999, 54.93299999999999, 54.93299999999999, 54.61699999999996, 67.22600000000011, 37.805000000000064, 54.30100000000016, 54.61699999999996, 37.805000000000064, 54.61699999999996, 54.93299999999999, 54.93299999999999, 54.93299999999999, 54.61699999999996, 54.61699999999996, 38.11699999999996, 67.22600000000011, 54.61699999999996, 54.61699999999996, 54.61699999999996, 37.805000000000064, 54.61699999999996, 54.61699999999996, 54.61699999999996, 37.805000000000064, 54.61699999999996, 37.805000000000064, 67.22600000000011, 54.61699999999996, 37.805000000000064, 54.61699999999996, 54.61699999999996, 54.61699999999996, 54.61699999999996, 54.61699999999996, 54.61699999999996, 37.49299999999994, 54.30100000000016, 54.30100000000016, 37.49299999999994, 54.30100000000016, 37.18100000000004, 67.22600000000011, 37.805000000000064, 67.22600000000011, 54.30100000000016, 37.805000000000064, 54.61699999999996, 67.22600000000011, 54.61699999999996, 37.49299999999994, 54.30100000000016], \"power_mean\": 52.578803571428594, \"energy_millijoules\": 6150.198387649841, \"energy_joules\": 6.150198387649841, \"coremark_score\": 2564.869833, \"coremarks_per_mhz\": 3.7107491796875, \"ulpmark_cm_score\": 48.778914287127286}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1236.858, 1249.479, 1236.858, 1249.182], \"power_mean\": 1243.09425, \"energy_millijoules\": 6215.4712500000005, \"energy_joules\": 6.21547125}}, \"806400\": {\"active\": {\"elapsed_sec\": 100.29269517, \"elapsed_ns\": 100292695170, \"power_samples\": [-8.427999999999884, 54.30100000000016, 66.90700000000015, 66.90700000000015, 54.30100000000016, 54.30100000000016, 66.90700000000015, 54.30100000000016, 66.90700000000015, 53.98500000000013, 53.98500000000013, 37.18100000000004, 53.98500000000013, 66.58799999999997, 53.98500000000013, 54.30100000000016, 54.30100000000016, 54.30100000000016, 66.58799999999997, 53.98500000000013, 53.98500000000013, 53.98500000000013, 53.98500000000013, 54.30100000000016, 66.58799999999997, 53.98500000000013, 53.98500000000013, 37.18100000000004, 53.98500000000013, 66.58799999999997, 53.98500000000013, 53.98500000000013, 53.98500000000013, 66.58799999999997, 66.58799999999997, 53.98500000000013, 53.98500000000013, 53.98500000000013, 37.18100000000004, 66.58799999999997, 53.98500000000013, 53.98500000000013, 53.669000000000096, 53.669000000000096, 53.353000000000065, 53.669000000000096, 66.269, 53.669000000000096, 66.58799999999997, 53.669000000000096, 53.98500000000013, 66.269, 53.669000000000096, 53.669000000000096, 53.669000000000096, 66.58799999999997, 53.669000000000096, 53.98500000000013, 53.669000000000096, 53.669000000000096, 53.669000000000096, 53.669000000000096, 66.269, 53.669000000000096, 66.269, 53.669000000000096, 53.669000000000096, 66.269, 36.86900000000014, 66.269, 53.669000000000096, 53.669000000000096, 53.669000000000096, 53.353000000000065, 36.557000000000016, 53.353000000000065, 53.353000000000065, 53.353000000000065, 65.95000000000005, 53.353000000000065, 53.669000000000096, 66.269, 53.353000000000065, 53.353000000000065, 53.353000000000065, 66.269, 36.557000000000016, 53.669000000000096, 65.95000000000005, 53.669000000000096, 36.557000000000016, 65.95000000000005, 53.353000000000065, 53.353000000000065, 65.95000000000005, 53.353000000000065], \"power_mean\": 55.20389583333341, \"energy_millijoules\": 5536.547497008941, \"energy_joules\": 5.536547497008941, \"coremark_score\": 2991.444469, \"coremarks_per_mhz\": 3.7096285577876986, \"ulpmark_cm_score\": 54.185392640823856}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1235.976, 1248.291, 1265.103, 1235.682], \"power_mean\": 1246.263, \"energy_millijoules\": 6231.315, \"energy_joules\": 6.2313149999999995}}, \"902400\": {\"active\": {\"elapsed_sec\": 89.59349507, \"elapsed_ns\": 89593495070, \"power_samples\": [-26.130999999999858, 65.95000000000005, 53.353000000000065, 53.037000000000035, 53.037000000000035, 65.63100000000009, 65.63100000000009, 65.63100000000009, 53.037000000000035, 65.63100000000009, 65.95000000000005, 65.95000000000005, 53.353000000000065, 53.353000000000065, 65.95000000000005, 53.037000000000035, 65.63100000000009, 65.63100000000009, 53.353000000000065, 128.6010000000001, 111.80899999999997, 145.39300000000003, 82.10000000000014, 53.037000000000035, 65.63100000000009, 111.80899999999997, 128.26700000000005, 111.47900000000004, 65.63100000000009, 53.037000000000035, 65.63100000000009, 53.037000000000035, 65.63100000000009, 65.63100000000009, 53.037000000000035, 65.63100000000009, 52.721000000000004, 65.31200000000013, 52.721000000000004, 65.31200000000013, 65.63100000000009, 52.721000000000004, 53.037000000000035, 65.31200000000013, 65.63100000000009, 53.037000000000035, 53.037000000000035, 65.31200000000013, 53.037000000000035, 65.31200000000013, 65.31200000000013, 52.721000000000004, 65.31200000000013, 82.10000000000014, 52.721000000000004, 52.721000000000004, 82.10000000000014, 52.721000000000004, 65.31200000000013, 52.721000000000004, 65.31200000000013, 52.721000000000004, 65.31200000000013, 65.31200000000013, 52.721000000000004, 52.721000000000004, 65.31200000000013, 65.31200000000013, 52.721000000000004, 64.99299999999994, 64.99299999999994, 52.40499999999997, 82.10000000000014, 64.99299999999994, 64.99299999999994, 52.721000000000004, 52.721000000000004, 65.31200000000013, 64.99299999999994, 52.721000000000004, 52.40499999999997, 52.721000000000004, 81.77700000000004, 64.99299999999994, 52.40499999999997, 64.99299999999994], \"power_mean\": 64.23213953488377, \"energy_millijoules\": 5754.781876754161, \"energy_joules\": 5.754781876754161, \"coremark_score\": 3348.662767, \"coremarks_per_mhz\": 3.7108408322251774, \"ulpmark_cm_score\": 52.13055966757291}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1234.8, 1247.4, 1234.8, 1264.2], \"power_mean\": 1245.3, \"energy_millijoules\": 6226.5, \"energy_joules\": 6.2265}}, \"998400\": {\"active\": {\"elapsed_sec\": 80.995466792, \"elapsed_ns\": 80995466792, \"power_samples\": [-10.233999999999924, 64.99299999999994, 64.99299999999994, 64.99299999999994, 81.77700000000004, 64.99299999999994, 64.99299999999994, 64.99299999999994, 64.99299999999994, 64.67399999999998, 64.67399999999998, 64.67399999999998, 64.67399999999998, 64.67399999999998, 64.99299999999994, 64.99299999999994, 81.77700000000004, 52.08899999999994, 64.99299999999994, 81.77700000000004, 64.99299999999994, 64.99299999999994, 64.67399999999998, 64.99299999999994, 64.99299999999994, 64.67399999999998, 64.99299999999994, 52.08899999999994, 52.08899999999994, 64.67399999999998, 64.67399999999998, 64.67399999999998, 64.67399999999998, 64.67399999999998, 64.67399999999998, 64.67399999999998, 64.67399999999998, 64.67399999999998, 52.08899999999994, 81.45399999999995, 64.67399999999998, 64.67399999999998, 51.77300000000014, 64.35500000000002, 64.35500000000002, 64.03600000000006, 64.35500000000002, 64.67399999999998, 64.67399999999998, 64.67399999999998, 64.67399999999998, 64.67399999999998, 64.35500000000002, 51.77300000000014, 81.45399999999995, 64.35500000000002, 64.67399999999998, 51.77300000000014, 64.35500000000002, 64.35500000000002, 64.35500000000002, 51.77300000000014, 64.35500000000002, 64.67399999999998, 64.35500000000002, 64.35500000000002, 64.35500000000002, 81.13100000000009, 64.35500000000002, 64.35500000000002, 64.35500000000002, 51.77300000000014, 64.35500000000002, 64.35500000000002, 64.03600000000006, 64.35500000000002, 64.35500000000002, 51.45700000000011], \"power_mean\": 63.338153846153844, \"energy_millijoules\": 5130.1033365127405, \"energy_joules\": 5.13010333651274, \"coremark_score\": 3704.115272, \"coremarks_per_mhz\": 3.7100513541666666, \"ulpmark_cm_score\": 58.478354200936856}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1234.212, 1263.598, 1234.212, 1234.212], \"power_mean\": 1241.5585, \"energy_millijoules\": 6207.7925000000005, \"energy_joules\": 6.2077925}}, \"1094400\": {\"active\": {\"elapsed_sec\": 73.865931847, \"elapsed_ns\": 73865931847, \"power_samples\": [35.30899999999997, 64.35500000000002, 64.35500000000002, 64.35500000000002, 64.35500000000002, 81.13100000000009, 64.35500000000002, 81.13100000000009, 64.35500000000002, 64.35500000000002, 64.35500000000002, 80.80799999999999, 64.35500000000002, 80.80799999999999, 51.45700000000011, 80.80799999999999, 80.80799999999999, 51.45700000000011, 80.80799999999999, 64.03600000000006, 64.03600000000006, 63.7170000000001, 63.7170000000001, 63.7170000000001, 63.7170000000001, 63.7170000000001, 80.48500000000013, 64.03600000000006, 64.03600000000006, 64.03600000000006, 64.03600000000006, 80.80799999999999, 51.45700000000011, 80.48500000000013, 64.03600000000006, 63.7170000000001, 64.03600000000006, 80.80799999999999, 51.141000000000076, 80.80799999999999, 63.7170000000001, 64.03600000000006, 80.48500000000013, 63.7170000000001, 63.7170000000001, 63.7170000000001, 63.7170000000001, 80.48500000000013, 63.7170000000001, 63.7170000000001, 63.7170000000001, 63.7170000000001, 63.7170000000001, 80.48500000000013, 63.39800000000014, 63.7170000000001, 80.16200000000003, 80.16200000000003, 50.825000000000045, 80.16200000000003, 63.7170000000001, 63.7170000000001, 63.7170000000001, 63.7170000000001, 63.39800000000014, 63.7170000000001, 63.39800000000014, 80.48500000000013, 63.39800000000014, 63.7170000000001, 63.7170000000001], \"power_mean\": 67.07164788732402, \"energy_millijoules\": 4954.309771711058, \"energy_joules\": 4.954309771711058, \"coremark_score\": 4061.628442, \"coremarks_per_mhz\": 3.711283298611111, \"ulpmark_cm_score\": 60.55333917814141}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1245.915, 1245.915, 1245.915, 1233.33], \"power_mean\": 1242.76875, \"energy_millijoules\": 6213.84375, \"energy_joules\": 6.21384375}}, \"1209600\": {\"active\": {\"elapsed_sec\": 66.827734766, \"elapsed_ns\": 66827734766, \"power_samples\": [-11.437999999999874, 63.39800000000014, 80.16200000000003, 63.7170000000001, 80.16200000000003, 63.39800000000014, 80.16200000000003, 80.16200000000003, 79.83899999999994, 63.07899999999995, 79.83899999999994, 63.07899999999995, 79.83899999999994, 79.83899999999994, 63.39800000000014, 80.16200000000003, 63.39800000000014, 80.16200000000003, 80.16200000000003, 63.39800000000014, 63.39800000000014, 79.83899999999994, 80.16200000000003, 80.16200000000003, 80.16200000000003, 63.39800000000014, 63.07899999999995, 79.83899999999994, 79.83899999999994, 80.16200000000003, 63.07899999999995, 79.83899999999994, 63.07899999999995, 79.83899999999994, 79.83899999999994, 79.83899999999994, 63.07899999999995, 79.83899999999994, 96.59900000000016, 79.83899999999994, 63.07899999999995, 62.75999999999999, 79.51600000000008, 79.83899999999994, 79.51600000000008, 62.75999999999999, 79.51600000000008, 63.07899999999995, 79.83899999999994, 79.83899999999994, 79.83899999999994, 63.07899999999995, 79.51600000000008, 79.83899999999994, 96.59900000000016, 63.07899999999995, 79.83899999999994, 62.75999999999999, 96.59900000000016, 62.75999999999999, 79.83899999999994, 79.83899999999994, 79.51600000000008, 63.07899999999995], \"power_mean\": 73.2305, \"energy_millijoules\": 4893.828430781564, \"energy_joules\": 4.893828430781564, \"coremark_score\": 4489.472188, \"coremarks_per_mhz\": 3.711534546957672, \"ulpmark_cm_score\": 61.30169952690573}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1232.742, 1245.321, 1245.321, 1245.321], \"power_mean\": 1242.17625, \"energy_millijoules\": 6210.88125, \"energy_joules\": 6.210881250000001}}, \"1305600\": {\"active\": {\"elapsed_sec\": 61.914053414, \"elapsed_ns\": 61914053414, \"power_samples\": [-28.80399999999986, 96.59900000000016, 62.75999999999999, 79.51600000000008, 79.51600000000008, 79.19299999999998, 79.19299999999998, 96.27200000000016, 79.51600000000008, 79.51600000000008, 79.51600000000008, 96.27200000000016, 96.27200000000016, 79.51600000000008, 79.51600000000008, 79.51600000000008, 79.51600000000008, 96.27200000000016, 79.51600000000008, 79.51600000000008, 79.51600000000008, 96.27200000000016, 79.51600000000008, 79.51600000000008, 79.51600000000008, 95.94500000000016, 62.44100000000003, 96.27200000000016, 171.67399999999998, 108.17900000000009, 79.19299999999998, 95.94500000000016, 79.51600000000008, 95.94500000000016, 79.19299999999998, 62.12200000000007, 95.94500000000016, 78.54700000000003, 78.87000000000012, 95.61799999999994, 78.87000000000012, 79.19299999999998, 95.94500000000016, 79.19299999999998, 95.94500000000016, 79.19299999999998, 95.94500000000016, 79.19299999999998, 79.19299999999998, 79.19299999999998, 78.87000000000012, 79.19299999999998, 78.87000000000012, 79.19299999999998, 95.94500000000016, 62.44100000000003, 95.94500000000016, 79.19299999999998, 79.19299999999998], \"power_mean\": 83.20596610169498, \"energy_millijoules\": 5151.618629583817, \"energy_joules\": 5.151618629583817, \"coremark_score\": 4845.743822, \"coremarks_per_mhz\": 3.711507216605393, \"ulpmark_cm_score\": 58.23412437349541}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1232.154, 1244.727, 1261.491, 1244.727], \"power_mean\": 1245.77475, \"energy_millijoules\": 6228.873750000001, \"energy_joules\": 6.228873750000001}}, \"1401600\": {\"active\": {\"elapsed_sec\": 57.673568467, \"elapsed_ns\": 57673568467, \"power_samples\": [-41.96499999999992, 62.12200000000007, 78.54700000000003, 95.29099999999994, 78.87000000000012, 95.29099999999994, 78.54700000000003, 95.94500000000016, 78.87000000000012, 95.61799999999994, 78.87000000000012, 95.61799999999994, 78.87000000000012, 62.12200000000007, 95.61799999999994, 78.87000000000012, 78.54700000000003, 95.61799999999994, 78.87000000000012, 95.61799999999994, 78.87000000000012, 78.87000000000012, 95.61799999999994, 95.61799999999994, 78.54700000000003, 95.29099999999994, 78.54700000000003, 78.87000000000012, 95.61799999999994, 78.87000000000012, 78.54700000000003, 95.29099999999994, 78.54700000000003, 78.54700000000003, 95.29099999999994, 78.54700000000003, 95.29099999999994, 78.22400000000016, 95.29099999999994, 78.22400000000016, 95.29099999999994, 78.54700000000003, 95.29099999999994, 78.54700000000003, 95.29099999999994, 78.54700000000003, 78.54700000000003, 95.29099999999994, 78.54700000000003, 78.54700000000003, 95.29099999999994, 95.29099999999994, 78.54700000000003, 95.29099999999994, 95.29099999999994], \"power_mean\": 83.17150909090911, \"energy_millijoules\": 4796.7977240582595, \"energy_joules\": 4.796797724058259, \"coremark_score\": 5202.011444, \"coremarks_per_mhz\": 3.711480767694064, \"ulpmark_cm_score\": 62.5417241371999}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1231.566, 1260.889, 1231.566, 1244.133], \"power_mean\": 1242.0385, \"energy_millijoules\": 6210.192500000001, \"energy_joules\": 6.210192500000001}}, \"1497600\": {\"active\": {\"elapsed_sec\": 53.976752011, \"elapsed_ns\": 53976752011, \"power_samples\": [-12.942999999999984, 78.54700000000003, 94.96399999999994, 95.29099999999994, 78.22400000000016, 94.96399999999994, 78.22400000000016, 94.63699999999994, 94.63699999999994, 94.96399999999994, 94.96399999999994, 78.22400000000016, 78.54700000000003, 94.96399999999994, 78.22400000000016, 107.519, 78.22400000000016, 94.96399999999994, 94.96399999999994, 94.96399999999994, 107.519, 78.22400000000016, 94.96399999999994, 94.96399999999994, 94.96399999999994, 94.96399999999994, 94.96399999999994, 78.22400000000016, 94.63699999999994, 77.90100000000007, 94.96399999999994, 94.96399999999994, 94.96399999999994, 94.63699999999994, 78.22400000000016, 107.18900000000008, 94.63699999999994, 77.90100000000007, 94.30999999999995, 94.63699999999994, 94.63699999999994, 77.57799999999997, 94.63699999999994, 94.30999999999995, 94.63699999999994, 77.90100000000007, 94.63699999999994, 94.63699999999994, 94.63699999999994, 94.63699999999994, 94.63699999999994, 94.63699999999994], \"power_mean\": 88.96809615384615, \"energy_millijoules\": 4802.208862986957, \"energy_joules\": 4.802208862986957, \"coremark_score\": 5558.231741, \"coremarks_per_mhz\": 3.711426109107906, \"ulpmark_cm_score\": 62.47125199244272}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1243.539, 1230.978, 1243.539, 1243.539], \"power_mean\": 1240.39875, \"energy_millijoules\": 6201.993750000001, \"energy_joules\": 6.201993750000001}}, \"1612800\": {\"active\": {\"elapsed_sec\": 50.131206387, \"elapsed_ns\": 50131206387, \"power_samples\": [2.8940000000000055, 94.30999999999995, 94.63699999999994, 94.30999999999995, 94.63699999999994, 107.18900000000008, 77.90100000000007, 107.18900000000008, 94.63699999999994, 106.85900000000015, 77.57799999999997, 94.30999999999995, 93.98299999999995, 106.85900000000015, 93.98299999999995, 93.98299999999995, 94.30999999999995, 94.30999999999995, 94.30999999999995, 106.85900000000015, 106.85900000000015, 94.30999999999995, 106.85900000000015, 94.30999999999995, 94.30999999999995, 94.30999999999995, 94.30999999999995, 106.85900000000015, 94.30999999999995, 94.30999999999995, 93.98299999999995, 94.30999999999995, 106.529, 94.30999999999995, 94.30999999999995, 106.85900000000015, 94.30999999999995, 94.30999999999995, 106.529, 106.529, 77.25500000000011, 106.529, 93.98299999999995, 93.98299999999995, 93.65599999999995, 93.65599999999995, 106.19900000000007, 93.65599999999995], \"power_mean\": 94.9310625, \"energy_millijoules\": 4759.0086867246955, \"energy_joules\": 4.7590086867246955, \"coremark_score\": 5984.798612, \"coremarks_per_mhz\": 3.7108126314484124, \"ulpmark_cm_score\": 63.0383383911135}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1230.684, 1230.684, 1243.242, 1230.684], \"power_mean\": 1233.8235, \"energy_millijoules\": 6169.1175, \"energy_joules\": 6.1691175000000005}}, \"1708800\": {\"active\": {\"elapsed_sec\": 47.30193243, \"elapsed_ns\": 47301932430, \"power_samples\": [48.613000000000056, 106.529, 106.529, 106.529, 93.98299999999995, 106.529, 106.529, 106.529, 106.529, 106.529, 106.529, 123.25700000000006, 106.529, 106.529, 93.65599999999995, 106.19900000000007, 106.529, 123.25700000000006, 93.65599999999995, 106.19900000000007, 106.19900000000007, 106.19900000000007, 93.65599999999995, 122.923, 105.86900000000014, 122.58899999999994, 93.32899999999995, 122.923, 106.19900000000007, 106.19900000000007, 106.19900000000007, 106.19900000000007, 106.19900000000007, 106.19900000000007, 122.923, 106.19900000000007, 93.65599999999995, 122.923, 106.19900000000007, 106.19900000000007, 122.58899999999994, 105.86900000000014, 106.19900000000007, 106.19900000000007, 122.58899999999994], \"power_mean\": 106.65762222222224, \"energy_millijoules\": 5045.111639500024, \"energy_joules\": 5.045111639500024, \"coremark_score\": 6342.762908, \"coremarks_per_mhz\": 3.7118228628277152, \"ulpmark_cm_score\": 59.46350079772077}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1242.648, 1242.648, 1259.384, 1242.648], \"power_mean\": 1246.8319999999999, \"energy_millijoules\": 6234.16, \"energy_joules\": 6.23416}}, \"1804800\": {\"active\": {\"elapsed_sec\": 44.787173576, \"elapsed_ns\": 44787173576, \"power_samples\": [-14.749000000000024, 106.19900000000007, 105.86900000000014, 105.53899999999999, 122.58899999999994, 139.30899999999997, 105.53899999999999, 122.25500000000011, 105.86900000000014, 122.58899999999994, 122.58899999999994, 122.58899999999994, 105.86900000000014, 122.58899999999994, 139.30899999999997, 122.58899999999994, 122.58899999999994, 122.25500000000011, 122.58899999999994, 122.58899999999994, 122.25500000000011, 122.58899999999994, 122.25500000000011, 122.25500000000011, 122.25500000000011, 105.86900000000014, 122.58899999999994, 122.25500000000011, 122.25500000000011, 122.58899999999994, 122.25500000000011, 122.25500000000011, 122.25500000000011, 122.25500000000011, 105.53899999999999, 121.92100000000005, 105.20900000000006, 122.25500000000011, 122.25500000000011, 121.92100000000005, 105.53899999999999, 121.92100000000005, 122.25500000000011], \"power_mean\": 116.08290697674423, \"energy_millijoules\": 5199.025303974106, \"energy_joules\": 5.199025303974105, \"coremark_score\": 6698.821008, \"coremarks_per_mhz\": 3.7116694414893616, \"ulpmark_cm_score\": 57.70312365486694}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1242.054, 1229.508, 1242.054, 1258.782], \"power_mean\": 1243.0995, \"energy_millijoules\": 6215.4975, \"energy_joules\": 6.215497500000001}}}}, \"4\": {\"freqs\": {\"710400\": {\"active\": {\"elapsed_sec\": 46.431442899, \"elapsed_ns\": 46431442899, \"power_samples\": [30.94100000000003, 138.63300000000004, 105.20900000000006, 105.53899999999999, 122.25500000000011, 105.53899999999999, 121.92100000000005, 105.53899999999999, 122.25500000000011, 138.63300000000004, 104.87900000000013, 121.92100000000005, 122.25500000000011, 121.92100000000005, 122.25500000000011, 121.92100000000005, 104.87900000000013, 138.29500000000007, 104.87900000000013, 104.87900000000013, 121.58699999999999, 104.87900000000013, 121.92100000000005, 121.92100000000005, 138.63300000000004, 105.20900000000006, 121.92100000000005, 121.92100000000005, 121.92100000000005, 121.92100000000005, 121.92100000000005, 105.20900000000006, 121.92100000000005, 105.20900000000006, 105.20900000000006, 121.92100000000005, 121.92100000000005, 105.20900000000006, 121.58699999999999, 121.92100000000005, 105.20900000000006, 121.58699999999999, 121.25300000000016, 121.58699999999999], \"power_mean\": 115.63740909090914, \"energy_millijoules\": 5369.211757192851, \"energy_joules\": 5.3692117571928515, \"coremark_score\": 6463.010039, \"coremarks_per_mhz\": 9.097705572916666, \"ulpmark_cm_score\": 55.87412334745519}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1241.757, 1258.481, 1258.481, 1258.481], \"power_mean\": 1254.3, \"energy_millijoules\": 6271.5, \"energy_joules\": 6.2715}}, \"844800\": {\"active\": {\"elapsed_sec\": 39.060320922, \"elapsed_ns\": 39060320922, \"power_samples\": [121.92100000000005, 150.82600000000002, 138.29500000000007, 150.82600000000002, 138.63300000000004, 150.48500000000013, 138.29500000000007, 150.82600000000002, 138.29500000000007, 150.82600000000002, 137.9570000000001, 150.82600000000002, 137.9570000000001, 150.82600000000002, 137.9570000000001, 138.29500000000007, 150.48500000000013, 150.82600000000002, 137.9570000000001, 137.9570000000001, 121.25300000000016, 150.48500000000013, 137.9570000000001, 150.48500000000013, 137.9570000000001, 150.48500000000013, 137.9570000000001, 137.61900000000014, 150.48500000000013, 120.9190000000001, 150.144, 121.25300000000016, 166.84400000000005, 137.9570000000001, 137.9570000000001, 137.9570000000001, 150.48500000000013], \"power_mean\": 142.1208108108109, \"energy_millijoules\": 5551.284479965121, \"energy_joules\": 5.551284479965121, \"coremark_score\": 7683.245403, \"coremarks_per_mhz\": 9.09475071377841, \"ulpmark_cm_score\": 54.04154679564988}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1241.163, 1257.578, 1257.578, 1240.866], \"power_mean\": 1249.2962499999999, \"energy_millijoules\": 6246.481249999999, \"energy_joules\": 6.246481249999999}}, \"960000\": {\"active\": {\"elapsed_sec\": 34.348894362, \"elapsed_ns\": 34348894362, \"power_samples\": [46.7170000000001, 150.144, 167.18900000000008, 150.48500000000013, 183.5440000000001, 183.5440000000001, 150.48500000000013, 166.84400000000005, 166.84400000000005, 166.84400000000005, 166.84400000000005, 166.84400000000005, 166.84400000000005, 166.84400000000005, 137.28099999999995, 166.84400000000005, 166.49900000000002, 166.49900000000002, 166.154, 183.19500000000016, 166.84400000000005, 166.84400000000005, 150.48500000000013, 183.5440000000001, 166.49900000000002, 166.84400000000005, 166.49900000000002, 183.5440000000001, 150.144, 166.84400000000005, 166.49900000000002, 166.49900000000002, 166.49900000000002], \"power_mean\": 162.24472727272732, \"energy_millijoules\": 5572.926997882411, \"energy_joules\": 5.572926997882411, \"coremark_score\": 8737.43993, \"coremarks_per_mhz\": 9.101499927083333, \"ulpmark_cm_score\": 53.83167590639413}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1240.866, 1257.578, 1240.866, 1257.578], \"power_mean\": 1249.222, \"energy_millijoules\": 6246.11, \"energy_joules\": 6.24611}}, \"1075200\": {\"active\": {\"elapsed_sec\": 30.690387072, \"elapsed_ns\": 30690387072, \"power_samples\": [0.1490000000001146, 183.19500000000016, 182.846, 195.365, 195.365, 182.49700000000007, 195.01300000000015, 195.365, 195.365, 195.365, 195.365, 195.7170000000001, 182.846, 195.7170000000001, 182.846, 195.365, 182.846, 195.01300000000015, 195.01300000000015, 195.7170000000001, 182.846, 195.365, 195.365, 195.01300000000015, 195.365, 195.01300000000015, 182.846, 212.05700000000002, 182.846], \"power_mean\": 185.29951724137936, \"energy_millijoules\": 5686.91390839267, \"energy_joules\": 5.68691390839267, \"coremark_score\": 9779.313492, \"coremarks_per_mhz\": 9.09534364955357, \"ulpmark_cm_score\": 52.752688862981394}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1256.976, 1257.277, 1256.976, 1240.272], \"power_mean\": 1252.87525, \"energy_millijoules\": 6264.37625, \"energy_joules\": 6.264376250000001}}, \"1209600\": {\"active\": {\"elapsed_sec\": 27.256312229, \"elapsed_ns\": 27256312229, \"power_samples\": [195.365, 195.01300000000015, 211.70100000000002, 228.38900000000012, 211.70100000000002, 211.70100000000002, 228.38900000000012, 211.70100000000002, 228.38900000000012, 211.70100000000002, 228.38900000000012, 211.70100000000002, 211.70100000000002, 211.70100000000002, 228.38900000000012, 211.70100000000002, 228.029, 211.34500000000003, 211.70100000000002, 228.029, 211.70100000000002, 228.029, 211.70100000000002, 228.029, 211.34500000000003, 211.34500000000003], \"power_mean\": 216.11100000000005, \"energy_millijoules\": 5890.38889212142, \"energy_joules\": 5.89038889212142, \"coremark_score\": 11012.407312, \"coremarks_per_mhz\": 9.104172711640212, \"ulpmark_cm_score\": 50.93042335477364}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1240.272, 1256.675, 1256.675, 1239.975], \"power_mean\": 1248.39925, \"energy_millijoules\": 6241.99625, \"energy_joules\": 6.241996250000001}}, \"1324800\": {\"active\": {\"elapsed_sec\": 24.90012447, \"elapsed_ns\": 24900124470, \"power_samples\": [212.05700000000002, 240.1790000000001, 240.1790000000001, 240.54200000000014, 240.54200000000014, 240.54200000000014, 240.1790000000001, 228.029, 256.85900000000015, 227.6690000000001, 257.2260000000001, 240.1790000000001, 240.1790000000001, 228.029, 240.54200000000014, 256.85900000000015, 256.85900000000015, 239.81600000000003, 257.2260000000001, 240.1790000000001, 240.1790000000001, 240.1790000000001, 256.85900000000015, 227.30899999999997], \"power_mean\": 241.18320833333343, \"energy_millijoules\": 6005.4919075739435, \"energy_joules\": 6.005491907573943, \"coremark_score\": 12054.486278, \"coremarks_per_mhz\": 9.099098941727053, \"ulpmark_cm_score\": 49.95427595558811}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1239.678, 1239.678, 1256.374, 1239.678], \"power_mean\": 1243.852, \"energy_millijoules\": 6219.26, \"energy_joules\": 6.21926}}, \"1440000\": {\"active\": {\"elapsed_sec\": 22.916914419, \"elapsed_ns\": 22916914419, \"power_samples\": [240.90499999999997, 273.1680000000001, 286.049, 273.1680000000001, 376.99700000000007, 273.1680000000001, 273.1680000000001, 285.67499999999995, 285.67499999999995, 273.1680000000001, 285.67499999999995, 273.1680000000001, 285.67499999999995, 302.3510000000001, 256.125, 285.30100000000016, 285.30100000000016, 285.67499999999995, 285.30100000000016, 272.797, 272.797, 272.797], \"power_mean\": 282.00472727272734, \"energy_millijoules\": 6462.678200662528, \"energy_joules\": 6.462678200662528, \"coremark_score\": 13098.148795, \"coremarks_per_mhz\": 9.095936663194443, \"ulpmark_cm_score\": 46.420383420799936}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1239.381, 1239.381, 1272.46, 1256.073], \"power_mean\": 1251.82375, \"energy_millijoules\": 6259.11875, \"energy_joules\": 6.25911875}}, \"1555200\": {\"active\": {\"elapsed_sec\": 21.235545617, \"elapsed_ns\": 21235545617, \"power_samples\": [285.67499999999995, 318.26300000000015, 318.26300000000015, 318.26300000000015, 301.2170000000001, 318.645, 301.97299999999996, 330.7640000000001, 301.595, 318.26300000000015, 331.1490000000001, 318.645, 318.26300000000015, 318.26300000000015, 318.26300000000015, 330.7640000000001, 318.26300000000015, 317.8810000000001, 330.7640000000001, 284.92700000000013], \"power_mean\": 315.00515000000007, \"energy_millijoules\": 6689.306232414929, \"energy_joules\": 6.689306232414928, \"coremark_score\": 14136.273678, \"coremarks_per_mhz\": 9.089682148919753, \"ulpmark_cm_score\": 44.84770013163174}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1239.084, 1255.772, 1255.772, 1272.46], \"power_mean\": 1255.772, \"energy_millijoules\": 6278.86, \"energy_joules\": 6.27886}}, \"1670400\": {\"active\": {\"elapsed_sec\": 19.76171317, \"elapsed_ns\": 19761713170, \"power_samples\": [11.136999999999944, 347.432, 347.0430000000001, 347.0430000000001, 346.654, 363.3140000000001, 330.37900000000013, 346.2650000000001, 346.654, 347.0430000000001, 347.0430000000001, 347.0430000000001, 346.654, 363.7070000000001, 363.3140000000001, 347.0430000000001, 363.3140000000001, 346.654, 363.7070000000001], \"power_mean\": 332.70752631578955, \"energy_millijoules\": 6574.87070455286, \"energy_joules\": 6.57487070455286, \"coremark_score\": 15190.642564, \"coremarks_per_mhz\": 9.094014944923371, \"ulpmark_cm_score\": 45.62827369247898}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1238.787, 1272.155, 1238.787, 1255.471], \"power_mean\": 1251.3, \"energy_millijoules\": 6256.5, \"energy_joules\": 6.2565}}, \"1766400\": {\"active\": {\"elapsed_sec\": 18.680193378, \"elapsed_ns\": 18680193378, \"power_samples\": [73.702, 392.46900000000005, 375.80899999999997, 392.46900000000005, 375.80899999999997, 392.46900000000005, 375.80899999999997, 375.413, 375.413, 391.6690000000001, 392.06899999999996, 375.01700000000005, 391.6690000000001, 392.06899999999996, 392.06899999999996, 392.06899999999996, 392.06899999999996, 392.06899999999996], \"power_mean\": 368.89616666666666, \"energy_millijoules\": 6891.05172973625, \"energy_joules\": 6.89105172973625, \"coremark_score\": 16071.141587, \"coremarks_per_mhz\": 9.098245916553442, \"ulpmark_cm_score\": 43.534718902985546}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1255.17, 1255.17, 1255.471, 1255.17], \"power_mean\": 1255.24525, \"energy_millijoules\": 6276.22625, \"energy_joules\": 6.27622625}}, \"1881600\": {\"active\": {\"elapsed_sec\": 17.543059316, \"elapsed_ns\": 17543059316, \"power_samples\": [194.30899999999997, 470.7660000000001, 483.2550000000001, 483.2550000000001, 483.2550000000001, 483.2550000000001, 482.8330000000001, 482.8330000000001, 482.8330000000001, 482.8330000000001, 482.8330000000001, 499.481, 470.347, 482.8330000000001, 499.05500000000006, 469.9280000000001], \"power_mean\": 464.6190000000001, \"energy_millijoules\": 8150.838676340606, \"energy_joules\": 8.150838676340607, \"coremark_score\": 17114.495978, \"coremarks_per_mhz\": 9.095714274022109, \"ulpmark_cm_score\": 36.80602842389806}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1329.911, 1300.416, 1284.052, 1238.49], \"power_mean\": 1288.21725, \"energy_millijoules\": 6441.086249999999, \"energy_joules\": 6.44108625}}, \"1996800\": {\"active\": {\"elapsed_sec\": 16.521717598, \"elapsed_ns\": 16521717598, \"power_samples\": [331.5340000000001, 515.6990000000001, 499.481, 516.1290000000001, 515.6990000000001, 515.6990000000001, 482.41100000000006, 528.182, 515.6990000000001, 515.6990000000001, 527.749, 499.05500000000006, 527.749, 515.6990000000001, 515.269], \"power_mean\": 501.45020000000005, \"energy_millijoules\": 8284.81859386062, \"energy_joules\": 8.28481859386062, \"coremark_score\": 18173.007027, \"coremarks_per_mhz\": 9.101065217848557, \"ulpmark_cm_score\": 36.210810967220446}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1237.896, 1271.24, 1254.568, 1254.568], \"power_mean\": 1254.568, \"energy_millijoules\": 6272.84, \"energy_joules\": 6.27284}}, \"2112000\": {\"active\": {\"elapsed_sec\": 15.625801974, \"elapsed_ns\": 15625801974, \"power_samples\": [561.9110000000001, 589.701, 573.065, 589.2530000000002, 589.2530000000002, 605.885, 606.337, 605.885, 589.701, 589.701, 589.701, 589.701, 589.2530000000002, 589.701, 605.433], \"power_mean\": 590.9654, \"energy_millijoules\": 9234.3083138857, \"energy_joules\": 9.2343083138857, \"coremark_score\": 19215.987702, \"coremarks_per_mhz\": 9.098479025568182, \"ulpmark_cm_score\": 32.48754425373557}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1254.267, 1254.568, 1237.599, 1270.935], \"power_mean\": 1254.34225, \"energy_millijoules\": 6271.711249999999, \"energy_joules\": 6.271711249999999}}, \"2227200\": {\"active\": {\"elapsed_sec\": 14.813718744, \"elapsed_ns\": 14813718744, \"power_samples\": [180.75199999999995, 664.097, 664.097, 680.259, 680.259, 680.259, 680.259, 680.259, 679.789, 679.319, 696.413, 695.9390000000001, 696.413, 696.413], \"power_mean\": 646.7519285714286, \"energy_millijoules\": 9580.801166996722, \"energy_joules\": 9.580801166996721, \"coremark_score\": 20268.90075, \"coremarks_per_mhz\": 9.100619948814657, \"ulpmark_cm_score\": 31.312621436443035}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1237.302, 1254.267, 1270.935, 1254.267], \"power_mean\": 1254.19275, \"energy_millijoules\": 6270.96375, \"energy_joules\": 6.27096375}}, \"2342400\": {\"active\": {\"elapsed_sec\": 14.090009734, \"elapsed_ns\": 14090009734, \"power_samples\": [438.69500000000016, 816.4340000000002, 799.8139999999999, 799.315, 815.931, 799.315, 815.931, 815.931, 799.315, 815.4279999999999, 815.931, 815.4279999999999, 832.04], \"power_mean\": 783.0390769230769, \"energy_millijoules\": 11033.028215948529, \"energy_joules\": 11.033028215948528, \"coremark_score\": 21312.872975, \"coremarks_per_mhz\": 9.09873333973702, \"ulpmark_cm_score\": 27.19108427243413}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1237.302, 1253.966, 1253.966, 1253.665], \"power_mean\": 1249.7247499999999, \"energy_millijoules\": 6248.623749999999, \"energy_joules\": 6.248623749999999}}, \"2419200\": {\"active\": {\"elapsed_sec\": 13.64271562, \"elapsed_ns\": 13642715620, \"power_samples\": [789.3330000000001, 844.4990000000003, 877.2049999999999, 860.5970000000002, 889.6610000000001, 860.0830000000001, 860.5970000000002, 877.2049999999999, 876.6869999999999, 860.5970000000002, 889.6610000000001, 877.2049999999999, 860.5970000000002], \"power_mean\": 863.3790000000001, \"energy_millijoules\": 11778.834169279982, \"energy_joules\": 11.778834169279982, \"coremark_score\": 22010.27146, \"coremarks_per_mhz\": 9.09816115244709, \"ulpmark_cm_score\": 25.46941366934436}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1270.325, 1253.364, 1253.364, 1253.364], \"power_mean\": 1257.60425, \"energy_millijoules\": 6288.021250000001, \"energy_joules\": 6.288021250000001}}}}, \"7\": {\"freqs\": {\"844800\": {\"active\": {\"elapsed_sec\": 38.272492277, \"elapsed_ns\": 38272492277, \"power_samples\": [42.29300000000012, 236.54899999999998, 224.4290000000001, 224.4290000000001, 224.4290000000001, 236.18600000000015, 224.06899999999996, 236.54899999999998, 224.4290000000001, 224.06899999999996, 224.06899999999996, 224.06899999999996, 224.06899999999996, 236.54899999999998, 224.06899999999996, 224.06899999999996, 224.4290000000001, 236.54899999999998, 236.54899999999998, 224.06899999999996, 224.4290000000001, 236.54899999999998, 236.54899999999998, 236.54899999999998, 224.06899999999996, 236.54899999999998, 224.06899999999996, 224.06899999999996, 236.91200000000003, 224.06899999999996, 224.4290000000001, 236.54899999999998, 207.4290000000001, 236.54899999999998, 224.06899999999996, 224.06899999999996], \"power_mean\": 223.1341111111111, \"energy_millijoules\": 8539.898544235259, \"energy_joules\": 8.539898544235259, \"coremark_score\": 7841.497203, \"coremarks_per_mhz\": 9.282075287642046, \"ulpmark_cm_score\": 35.1292229581007}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1253.063, 1253.063, 1236.411, 1269.715], \"power_mean\": 1253.063, \"energy_millijoules\": 6265.3150000000005, \"energy_joules\": 6.265315}}, \"960000\": {\"active\": {\"elapsed_sec\": 33.6870528, \"elapsed_ns\": 33687052800, \"power_samples\": [191.84500000000003, 252.82200000000012, 269.82899999999995, 252.82200000000012, 253.18900000000008, 253.18900000000008, 252.82200000000012, 252.82200000000012, 252.82200000000012, 252.82200000000012, 253.18900000000008, 269.4580000000001, 253.18900000000008, 269.82899999999995, 252.45500000000015, 252.82200000000012, 252.82200000000012, 269.4580000000001, 252.45500000000015, 269.4580000000001, 236.18600000000015, 269.4580000000001, 252.82200000000012, 252.82200000000012, 269.087, 252.82200000000012, 269.087, 252.45500000000015, 252.45500000000015, 252.45500000000015, 252.45500000000015, 269.087], \"power_mean\": 255.0409375000001, \"energy_millijoules\": 8591.577527724003, \"energy_joules\": 8.591577527724002, \"coremark_score\": 8908.950526, \"coremarks_per_mhz\": 9.280156797916668, \"ulpmark_cm_score\": 34.91791804612547}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1253.063, 1252.762, 1253.063, 1252.461], \"power_mean\": 1252.83725, \"energy_millijoules\": 6264.186250000001, \"energy_joules\": 6.264186250000001}}, \"1075200\": {\"active\": {\"elapsed_sec\": 30.064770561, \"elapsed_ns\": 30064770561, \"power_samples\": [146.05200000000013, 281.56100000000015, 269.4580000000001, 281.56100000000015, 281.56100000000015, 269.087, 281.56100000000015, 281.56100000000015, 269.087, 281.56100000000015, 269.087, 281.56100000000015, 281.1870000000001, 281.56100000000015, 298.193, 269.087, 281.56100000000015, 281.1870000000001, 281.56100000000015, 281.1870000000001, 281.1870000000001, 268.7160000000001, 268.7160000000001, 281.1870000000001, 280.8130000000001, 281.1870000000001, 281.56100000000015, 281.56100000000015, 281.1870000000001], \"power_mean\": 274.3219655172415, \"energy_millijoules\": 8247.42695311842, \"energy_joules\": 8.24742695311842, \"coremark_score\": 9983.028851, \"coremarks_per_mhz\": 9.284811059337796, \"ulpmark_cm_score\": 36.374981155373256}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1252.762, 1269.715, 1252.762, 1253.063], \"power_mean\": 1257.0755, \"energy_millijoules\": 6285.3775, \"energy_joules\": 6.285377499999999}}, \"1190400\": {\"active\": {\"elapsed_sec\": 34.022398164, \"elapsed_ns\": 34022398164, \"power_samples\": [116.24299999999994, 314.443, 314.443, 314.443, 314.443, 314.443, 314.443, 326.914, 297.81500000000005, 268.345, 252.08799999999997, 252.08799999999997, 235.46000000000004, 252.08799999999997, 252.08799999999997, 251.721, 252.08799999999997, 235.46000000000004, 268.345, 251.721, 252.08799999999997, 251.721, 252.08799999999997, 235.46000000000004, 252.08799999999997, 252.08799999999997, 252.08799999999997, 235.46000000000004, 252.08799999999997, 235.46000000000004, 268.345, 251.721], \"power_mean\": 262.18178125, \"energy_millijoules\": 8920.052953034248, \"energy_joules\": 8.920052953034249, \"coremark_score\": 8821.19439, \"coremarks_per_mhz\": 7.410277545362903, \"ulpmark_cm_score\": 33.63208734068691}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1252.461, 1252.461, 1252.461, 1252.461], \"power_mean\": 1252.461, \"energy_millijoules\": 6262.305, \"energy_joules\": 6.2623050000000005}}, \"1305600\": {\"active\": {\"elapsed_sec\": 29.692152697, \"elapsed_ns\": 29692152697, \"power_samples\": [41.028999999999996, 280.8130000000001, 280.8130000000001, 268.345, 268.345, 280.8130000000001, 268.345, 280.4390000000001, 280.8130000000001, 280.4390000000001, 280.4390000000001, 297.05899999999997, 268.345, 280.8130000000001, 280.8130000000001, 280.4390000000001, 280.8130000000001, 268.345, 280.8130000000001, 280.06500000000005, 297.05899999999997, 342.7640000000001, 325.759, 342.7640000000001, 342.7640000000001, 342.375, 342.375, 342.375], \"power_mean\": 285.94189285714293, \"energy_millijoules\": 8490.230345183501, \"energy_joules\": 8.490230345183502, \"coremark_score\": 10108.157283, \"coremarks_per_mhz\": 7.7421547817095595, \"ulpmark_cm_score\": 35.33473036690809}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1252.16, 1252.16, 1252.16, 1252.16], \"power_mean\": 1252.16, \"energy_millijoules\": 6260.8, \"energy_joules\": 6.260800000000001}}, \"1420800\": {\"active\": {\"elapsed_sec\": 22.755941866, \"elapsed_ns\": 22755941866, \"power_samples\": [-21.672000000000025, 371.453, 387.6690000000001, 371.057, 387.269, 388.06899999999996, 387.6690000000001, 370.66100000000006, 371.453, 387.6690000000001, 387.6690000000001, 371.057, 387.6690000000001, 371.057, 371.057, 371.057, 387.6690000000001, 387.269, 387.6690000000001, 371.057, 387.6690000000001], \"power_mean\": 361.0569523809524, \"energy_millijoules\": 8216.191018696083, \"energy_joules\": 8.216191018696083, \"coremark_score\": 13190.871917, \"coremarks_per_mhz\": 9.284115932573199, \"ulpmark_cm_score\": 36.5132698737584}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1251.859, 1235.223, 1268.495, 1251.859], \"power_mean\": 1251.859, \"energy_millijoules\": 6259.295, \"energy_joules\": 6.259295}}, \"1555200\": {\"active\": {\"elapsed_sec\": 20.775223377, \"elapsed_ns\": 20775223377, \"power_samples\": [40.39700000000016, 403.87699999999995, 432.94100000000003, 432.53, 416.3330000000001, 432.53, 432.53, 432.53, 415.92600000000016, 432.53, 415.92600000000016, 432.53, 432.53, 415.92600000000016, 432.53, 415.92600000000016, 432.53, 432.53, 432.53, 415.92600000000016], \"power_mean\": 406.5504, \"energy_millijoules\": 8446.1753740087, \"energy_joules\": 8.4461753740087, \"coremark_score\": 14449.475002, \"coremarks_per_mhz\": 9.29107188914609, \"ulpmark_cm_score\": 35.51903515089041}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1234.926, 1251.558, 1268.19, 1251.558], \"power_mean\": 1251.558, \"energy_millijoules\": 6257.79, \"energy_joules\": 6.25779}}, \"1670400\": {\"active\": {\"elapsed_sec\": 19.360271764, \"elapsed_ns\": 19360271764, \"power_samples\": [98.279, 465.73800000000006, 465.73800000000006, 477.769, 478.19100000000003, 465.31899999999996, 477.769, 494.36900000000014, 477.769, 477.347, 464.9000000000001, 477.347, 493.51700000000005, 477.347, 477.347, 465.31899999999996, 477.769, 493.943], \"power_mean\": 455.8765, \"energy_millijoules\": 8825.892930821146, \"energy_joules\": 8.825892930821146, \"coremark_score\": 15507.081567, \"coremarks_per_mhz\": 9.283454003232757, \"ulpmark_cm_score\": 33.99089501214791}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1250.956, 1251.257, 1251.257, 1267.885], \"power_mean\": 1255.33875, \"energy_millijoules\": 6276.693749999999, \"energy_joules\": 6.27669375}}, \"1785600\": {\"active\": {\"elapsed_sec\": 18.220772285, \"elapsed_ns\": 18220772285, \"power_samples\": [222.62900000000013, 522.9860000000001, 510.539, 510.539, 522.9860000000001, 510.539, 522.9860000000001, 522.5530000000001, 522.5530000000001, 522.5530000000001, 522.5530000000001, 522.5530000000001, 522.5530000000001, 522.5530000000001, 522.5530000000001, 522.1200000000001, 538.7080000000001], \"power_mean\": 503.79152941176477, \"energy_millijoules\": 9179.470736523645, \"energy_joules\": 9.179470736523644, \"coremark_score\": 16477.179107, \"coremarks_per_mhz\": 9.227810879816309, \"ulpmark_cm_score\": 32.681622787504296}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1250.956, 1250.956, 1267.58, 1267.58], \"power_mean\": 1259.268, \"energy_millijoules\": 6296.34, \"energy_joules\": 6.29634}}, \"1900800\": {\"active\": {\"elapsed_sec\": 17.014291608, \"elapsed_ns\": 17014291608, \"power_samples\": [371.84900000000016, 568.181, 584.325, 584.325, 567.7370000000001, 584.325, 600.913, 584.325, 583.877, 567.7370000000001, 583.877, 567.2930000000001, 584.325, 600.461, 629.483, 656.6410000000001], \"power_mean\": 576.229625, \"energy_millijoules\": 9804.13887291849, \"energy_joules\": 9.80413887291849, \"coremark_score\": 17647.058824, \"coremarks_per_mhz\": 9.284016637205387, \"ulpmark_cm_score\": 30.599321764879917}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1234.035, 1267.275, 1266.97, 1250.956], \"power_mean\": 1254.809, \"energy_millijoules\": 6274.045, \"energy_joules\": 6.274045}}, \"2035200\": {\"active\": {\"elapsed_sec\": 15.880913119, \"elapsed_ns\": 15880913119, \"power_samples\": [585.221, 629.0240000000001, 628.565, 628.565, 628.565, 645.604, 645.604, 645.604, 629.0240000000001, 645.1410000000001, 645.604, 645.604, 645.604, 628.565, 628.565], \"power_mean\": 633.6572666666667, \"energy_millijoules\": 10063.05599915635, \"energy_joules\": 10.063055999156349, \"coremark_score\": 18905.974288, \"coremarks_per_mhz\": 9.289492083333334, \"ulpmark_cm_score\": 29.812017345938543}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1233.738, 1266.665, 1250.354, 1250.354], \"power_mean\": 1250.27775, \"energy_millijoules\": 6251.38875, \"energy_joules\": 6.25138875}}, \"2150400\": {\"active\": {\"elapsed_sec\": 15.033730307, \"elapsed_ns\": 15033730307, \"power_samples\": [159.25400000000013, 736.309, 735.8240000000001, 719.252, 748.2530000000002, 735.3389999999999, 748.2530000000002, 748.2530000000002, 734.854, 747.277, 747.7650000000001, 734.854, 747.277, 734.854], \"power_mean\": 698.4012857142858, \"energy_millijoules\": 10499.576575490624, \"energy_joules\": 10.499576575490623, \"coremark_score\": 19973.368842, \"coremarks_per_mhz\": 9.28821095703125, \"ulpmark_cm_score\": 28.57258079342896}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1266.665, 1250.053, 1266.665, 1250.053], \"power_mean\": 1258.359, \"energy_millijoules\": 6291.795, \"energy_joules\": 6.2917950000000005}}, \"2265600\": {\"active\": {\"elapsed_sec\": 14.278400516, \"elapsed_ns\": 14278400516, \"power_samples\": [449.549, 825.9560000000001, 825.9560000000001, 838.3789999999999, 825.9560000000001, 838.3789999999999, 837.8690000000001, 854.4290000000001, 853.915, 870.989, 854.4290000000001, 837.3589999999999, 853.915], \"power_mean\": 812.8523076923077, \"energy_millijoules\": 11606.230809585637, \"energy_joules\": 11.606230809585638, \"coremark_score\": 21031.968592, \"coremarks_per_mhz\": 9.28317822740113, \"ulpmark_cm_score\": 25.84818490359753}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1233.144, 1266.36, 1249.752, 1266.36], \"power_mean\": 1253.904, \"energy_millijoules\": 6269.52, \"energy_joules\": 6.269520000000001}}, \"2380800\": {\"active\": {\"elapsed_sec\": 13.579372494, \"elapsed_ns\": 13579372494, \"power_samples\": [858.027, 960.4490000000001, 989.4079999999999, 960.989, 960.989, 989.4079999999999, 972.8600000000001, 972.8600000000001, 989.4079999999999, 989.4079999999999, 972.8600000000001, 988.8609999999999, 972.8600000000001], \"power_mean\": 967.5682307692308, \"energy_millijoules\": 13138.969418975938, \"energy_joules\": 13.138969418975938, \"coremark_score\": 22114.108801, \"coremarks_per_mhz\": 9.288520161710348, \"ulpmark_cm_score\": 22.832841026840768}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1249.451, 1249.451, 1249.15, 1265.75], \"power_mean\": 1253.4505, \"energy_millijoules\": 6267.2525, \"energy_joules\": 6.2672525}}, \"2496000\": {\"active\": {\"elapsed_sec\": 12.962833849, \"elapsed_ns\": 12962833849, \"power_samples\": [233.28200000000015, 1063.3090000000002, 1079.853, 1063.3090000000002, 1096.397, 1095.824, 1079.284, 1095.2510000000002, 1078.7150000000001, 1094.6779999999999, 1078.1460000000002, 1107.0770000000002], \"power_mean\": 1013.7604166666667, \"energy_millijoules\": 13141.207843943012, \"energy_joules\": 13.141207843943011, \"coremark_score\": 23166.023166, \"coremarks_per_mhz\": 9.28125928125, \"ulpmark_cm_score\": 22.828951764755377}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1249.15, 1265.75, 1265.75, 1249.15], \"power_mean\": 1257.45, \"energy_millijoules\": 6287.25, \"energy_joules\": 6.28725}}, \"2592000\": {\"active\": {\"elapsed_sec\": 12.476103173, \"elapsed_ns\": 12476103173, \"power_samples\": [738.7340000000002, 1214.5349999999999, 1231.067, 1243.466, 1230.4610000000002, 1258.772, 1242.857, 1230.4610000000002, 1230.4610000000002, 1242.248, 1229.855, 1241.6390000000001], \"power_mean\": 1194.5463333333335, \"energy_millijoules\": 14903.283299595518, \"energy_joules\": 14.903283299595518, \"coremark_score\": 24071.250903, \"coremarks_per_mhz\": 9.286748033564814, \"ulpmark_cm_score\": 20.129792473859915}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1248.849, 1265.445, 1265.445, 1248.849], \"power_mean\": 1257.147, \"energy_millijoules\": 6285.735, \"energy_joules\": 6.285735}}, \"2688000\": {\"active\": {\"elapsed_sec\": 12.033842391, \"elapsed_ns\": 12033842391, \"power_samples\": [-12.965999999999894, 1331.868, 1364.261, 1364.261, 1364.261, 1376.645, 1364.261, 1376.645, 1393.1570000000002, 1376.0030000000002, 1392.511], \"power_mean\": 1244.627909090909, \"energy_millijoules\": 14977.656093439877, \"energy_joules\": 14.977656093439876, \"coremark_score\": 24958.402662, \"coremarks_per_mhz\": 9.28512003794643, \"ulpmark_cm_score\": 20.02983631940903}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1248.548, 1264.835, 1265.14, 1248.548], \"power_mean\": 1256.76775, \"energy_millijoules\": 6283.83875, \"energy_joules\": 6.28383875}}, \"2764800\": {\"active\": {\"elapsed_sec\": 11.694953954, \"elapsed_ns\": 11694953954, \"power_samples\": [567.7370000000001, 1409.6689999999999, 1422.0529999999999, 1421.4, 1454.4160000000002, 1437.908, 1466.1330000000003, 1437.908, 1453.755, 1466.1330000000003, 1466.1330000000003], \"power_mean\": 1363.9313636363638, \"energy_millijoules\": 15951.114494143705, \"energy_joules\": 15.951114494143706, \"coremark_score\": 25682.732643, \"coremarks_per_mhz\": 9.289182813585068, \"ulpmark_cm_score\": 18.80746327224609}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1264.53, 1264.53, 1264.835, 1264.835], \"power_mean\": 1264.6825, \"energy_millijoules\": 6323.412499999999, \"energy_joules\": 6.3234125}}, \"2841600\": {\"active\": {\"elapsed_sec\": 11.381949527, \"elapsed_ns\": 11381949527, \"power_samples\": [1284.551, 1605.719, 1617.393, 1617.393, 1633.8890000000001, 1616.692, 1649.676, 1649.676, 1648.967, 1632.4790000000003, 1660.621], \"power_mean\": 1601.5505454545455, \"energy_millijoules\": 18228.767473302956, \"energy_joules\": 18.228767473302955, \"coremark_score\": 26387.545079, \"coremarks_per_mhz\": 9.286157474310247, \"ulpmark_cm_score\": 16.457503253545074}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1276.66, 1247.344, 1247.645, 1263.92], \"power_mean\": 1258.89225, \"energy_millijoules\": 6294.46125, \"energy_joules\": 6.29446125}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm8350/fourth/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 cpu7 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 1274 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 403 499 595 691 806 902 998 1094 1209 1305 1401 1497 1612 1708 1804\n\n 300:  1112     3.7 C/MHz     70 mW   18.8 J   15.9 I/mJ   269.8 s\n 403:  1496     3.7 C/MHz     53 mW   10.6 J   28.3 I/mJ   200.6 s\n 499:  1852     3.7 C/MHz     51 mW    8.2 J   36.6 I/mJ   162.0 s\n 595:  2208     3.7 C/MHz     49 mW    6.6 J   45.4 I/mJ   135.8 s\n 691:  2565     3.7 C/MHz     53 mW    6.2 J   48.8 I/mJ   117.0 s\n 806:  2991     3.7 C/MHz     55 mW    5.5 J   54.2 I/mJ   100.3 s\n 902:  3349     3.7 C/MHz     64 mW    5.8 J   52.1 I/mJ    89.6 s\n 998:  3704     3.7 C/MHz     63 mW    5.1 J   58.5 I/mJ    81.0 s\n1094:  4062     3.7 C/MHz     67 mW    5.0 J   60.6 I/mJ    73.9 s\n1209:  4489     3.7 C/MHz     73 mW    4.9 J   61.3 I/mJ    66.8 s\n1305:  4846     3.7 C/MHz     83 mW    5.2 J   58.2 I/mJ    61.9 s\n1401:  5202     3.7 C/MHz     83 mW    4.8 J   62.5 I/mJ    57.7 s\n1497:  5558     3.7 C/MHz     89 mW    4.8 J   62.5 I/mJ    54.0 s\n1612:  5985     3.7 C/MHz     95 mW    4.8 J   63.0 I/mJ    50.1 s\n1708:  6343     3.7 C/MHz    107 mW    5.0 J   59.5 I/mJ    47.3 s\n1804:  6699     3.7 C/MHz    116 mW    5.2 J   57.7 I/mJ    44.8 s\n\n\n===== CPU 4 =====\nFrequencies: 710 844 960 1075 1209 1324 1440 1555 1670 1766 1881 1996 2112 2227 2342 2419\n\n 710:  6463     9.1 C/MHz    116 mW    5.4 J   55.9 I/mJ    46.4 s\n 844:  7683     9.1 C/MHz    142 mW    5.6 J   54.0 I/mJ    39.1 s\n 960:  8737     9.1 C/MHz    162 mW    5.6 J   53.8 I/mJ    34.3 s\n1075:  9779     9.1 C/MHz    185 mW    5.7 J   52.8 I/mJ    30.7 s\n1209: 11012     9.1 C/MHz    216 mW    5.9 J   50.9 I/mJ    27.3 s\n1324: 12054     9.1 C/MHz    241 mW    6.0 J   50.0 I/mJ    24.9 s\n1440: 13098     9.1 C/MHz    282 mW    6.5 J   46.4 I/mJ    22.9 s\n1555: 14136     9.1 C/MHz    315 mW    6.7 J   44.8 I/mJ    21.2 s\n1670: 15191     9.1 C/MHz    333 mW    6.6 J   45.6 I/mJ    19.8 s\n1766: 16071     9.1 C/MHz    369 mW    6.9 J   43.5 I/mJ    18.7 s\n1881: 17114     9.1 C/MHz    465 mW    8.2 J   36.8 I/mJ    17.5 s\n1996: 18173     9.1 C/MHz    501 mW    8.3 J   36.2 I/mJ    16.5 s\n2112: 19216     9.1 C/MHz    591 mW    9.2 J   32.5 I/mJ    15.6 s\n2227: 20269     9.1 C/MHz    647 mW    9.6 J   31.3 I/mJ    14.8 s\n2342: 21313     9.1 C/MHz    783 mW   11.0 J   27.2 I/mJ    14.1 s\n2419: 22010     9.1 C/MHz    863 mW   11.8 J   25.5 I/mJ    13.6 s\n\n\n===== CPU 7 =====\nFrequencies: 844 960 1075 1190 1305 1420 1555 1670 1785 1900 2035 2150 2265 2380 2496 2592 2688 2764 2841\n\n 844:  7841     9.3 C/MHz    223 mW    8.5 J   35.1 I/mJ    38.3 s\n 960:  8909     9.3 C/MHz    255 mW    8.6 J   34.9 I/mJ    33.7 s\n1075:  9983     9.3 C/MHz    274 mW    8.2 J   36.4 I/mJ    30.1 s\n1190:  8821     7.4 C/MHz    262 mW    8.9 J   33.6 I/mJ    34.0 s\n1305: 10108     7.7 C/MHz    286 mW    8.5 J   35.3 I/mJ    29.7 s\n1420: 13191     9.3 C/MHz    361 mW    8.2 J   36.5 I/mJ    22.8 s\n1555: 14449     9.3 C/MHz    407 mW    8.4 J   35.5 I/mJ    20.8 s\n1670: 15507     9.3 C/MHz    456 mW    8.8 J   34.0 I/mJ    19.4 s\n1785: 16477     9.2 C/MHz    504 mW    9.2 J   32.7 I/mJ    18.2 s\n1900: 17647     9.3 C/MHz    576 mW    9.8 J   30.6 I/mJ    17.0 s\n2035: 18906     9.3 C/MHz    634 mW   10.1 J   29.8 I/mJ    15.9 s\n2150: 19973     9.3 C/MHz    698 mW   10.5 J   28.6 I/mJ    15.0 s\n2265: 21032     9.3 C/MHz    813 mW   11.6 J   25.8 I/mJ    14.3 s\n2380: 22114     9.3 C/MHz    968 mW   13.1 J   22.8 I/mJ    13.6 s\n2496: 23166     9.3 C/MHz   1014 mW   13.1 J   22.8 I/mJ    13.0 s\n2592: 24071     9.3 C/MHz   1195 mW   14.9 J   20.1 I/mJ    12.5 s\n2688: 24958     9.3 C/MHz   1245 mW   15.0 J   20.0 I/mJ    12.0 s\n2764: 25683     9.3 C/MHz   1364 mW   16.0 J   18.8 I/mJ    11.7 s\n2841: 26388     9.3 C/MHz   1602 mW   18.2 J   16.5 I/mJ    11.4 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm8350/fourth/uptime.txt",
    "content": " 10:00:50 up 48 min,  load average: 1.79, 1.74, 1.73\n"
  },
  {
    "path": "results/sm8350/fourth/versions.txt",
    "content": "Kernel: Linux version 5.4.61-DynamIQ-R1 (nakixii@naki-PC) (Proton clang version 13.0.0 (https://github.com/llvm/llvm-project b4fd512c36ca344a3ff69350219e8b0a67e9472a), GNU ld (GNU Binutils) 2.36.1) #14 SMP PREEMPT Thu Aug 12 18:59:42 CST 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm8350/main/cmdline.txt",
    "content": "ramoops_memreserve=4M noirqdebug nodebugmon log_buf_len=256K rcu_nocbs=0-7 console=ttyMSM0,115200n8 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 androidboot.usbcontroller=a600000.dwc3 swiotlb=0 loop.max_part=7 cgroup.memory=nokmem,nosocket pcie_ports=compat loop.max_part=7 iptable_raw.raw_before_defrag=1 ip6table_raw.raw_before_defrag=1 buildvariant=user  rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 androidboot.vbmeta.device=PARTUUID=8cf74b92-23f7-e664-93e4-a590fecde724 androidboot.vbmeta.device=PARTUUID=8cf74b92-23f7-e664-93e4-a590fecde724 androidboot.vbmeta.avb_version=1.0 androidboot.vbmeta.device_state=unlocked androidboot.vbmeta.hash_alg=sha256 androidboot.vbmeta.size=7104 androidboot.vbmeta.digest=78688f7b58074252bb4397b6d251192d6daa0639ebc3a318bd71b5ec5166ab54 androidboot.vbmeta.invalidate_on_error=yes androidboot.veritymode=enforcing androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED bootinfo.pureason=0x40001 bootinfo.pdreason=0x2 androidboot.hwversion=3.9.0 androidboot.cpuid=REDACTED androidboot.hwc=CN androidboot.hwlevel=MP androidboot.hardware.sku=venus androidboot.product.hardware.sku=venus androidboot.secureboot=1 androidboot.baseband=msm msm_drm.dsi_display0=qcom,mdss_dsi_k2_38_08_0a_mp_dsc_cmd: androidboot.oled_wp=01f60bbf0c4c msm_drm.oled_wp=01f60bbf0c4c androidboot.oled_panel_id=K2_0A_MP androidboot.slot_suffix=_a rootwait ro init=/init androidboot.dtbo_idx=0 androidboot.dtb_idx=0 androidboot.ramdump=disable androidboot.force_normal_boot=1 block2mtd.block2mtd=/dev/block/sda15,2097152 mtdoops.mtddev=0 mtdoops.record_size=2097152 mtdoops.dump_oops=0 printk.always_kmsg_dump=1\n"
  },
  {
    "path": "results/sm8350/main/cpufreq_stats/0/time_in_state",
    "content": "300000 145564\n403200 20920\n499200 17081\n595200 14492\n691200 12623\n806400 10864\n902400 9827\n998400 8999\n1094400 8275\n1209600 7551\n1305600 7032\n1401600 6618\n1497600 6308\n1612800 5893\n1708800 5583\n1804800 6010\n"
  },
  {
    "path": "results/sm8350/main/cpufreq_stats/0/total_trans",
    "content": "19\n"
  },
  {
    "path": "results/sm8350/main/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    403200    499200    595200    691200    806400    902400    998400   1094400   1209600   1305600   1401600   1497600   1612800   1708800   1804800 \n   300000:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   403200:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   499200:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n   595200:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n   691200:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n   806400:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n   902400:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n   998400:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1094400:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1209600:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1305600:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1401600:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  1497600:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         1 \n  1612800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  1708800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  1804800:         2         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8350/main/cpufreq_stats/4/time_in_state",
    "content": "710400 62734\n844800 4763\n960000 4347\n1075200 3934\n1209600 3622\n1324800 3518\n1440000 3209\n1555200 3104\n1670400 2897\n1766400 2793\n1881600 2585\n1996800 2483\n2112000 2482\n2227200 2378\n2342400 2275\n2419200 186517\n"
  },
  {
    "path": "results/sm8350/main/cpufreq_stats/4/total_trans",
    "content": "18\n"
  },
  {
    "path": "results/sm8350/main/cpufreq_stats/4/trans_table",
    "content": "   From  :    To\n         :    710400    844800    960000   1075200   1209600   1324800   1440000   1555200   1670400   1766400   1881600   1996800   2112000   2227200   2342400   2419200 \n   710400:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   844800:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   960000:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1075200:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1209600:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1324800:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1440000:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1555200:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1670400:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1766400:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1881600:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1996800:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2112000:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2227200:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2342400:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2419200:         2         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8350/main/cpufreq_stats/7/time_in_state",
    "content": "844800 4691\n960000 4244\n1075200 4451\n1190400 3622\n1305600 3519\n1420800 4969\n1555200 3622\n1670400 2793\n1785600 2689\n1900800 2586\n2035200 2482\n2150400 2378\n2265600 2275\n2380800 2275\n2496000 2171\n2592000 2171\n2688000 2067\n2764800 2067\n2841600 238569\n"
  },
  {
    "path": "results/sm8350/main/cpufreq_stats/7/total_trans",
    "content": "21\n"
  },
  {
    "path": "results/sm8350/main/cpufreq_stats/7/trans_table",
    "content": "   From  :    To\n         :    844800    960000   1075200   1190400   1305600   1420800   1555200   1670400   1785600   1900800   2035200   2150400   2265600   2380800   2496000   2592000   2688000   2764800   2841600 \n   844800:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   960000:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1075200:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1190400:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1305600:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1420800:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1555200:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1670400:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1785600:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1900800:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  2035200:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  2150400:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  2265600:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  2380800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  2496000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2592000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2688000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2764800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2841600:         2         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8350/main/cpuinfo.txt",
    "content": "processor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x2\nCPU part\t: 0xd05\nCPU revision\t: 0\n\nHardware\t: Venus based on Qualcomm Technologies, Inc SM8350\n"
  },
  {
    "path": "results/sm8350/main/device.txt",
    "content": "Model: Venus based on Qualcomm Technologies, Inc SM8350;\nCompatible: qcom,lahaina-mtp;qcom,lahaina;qcom,mtp;\n"
  },
  {
    "path": "results/sm8350/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x412fd050]\n[    0.000000] Linux version 5.4.61-DynamIQ-R1 (nakixii@naki-PC) (Proton clang version 13.0.0 (https://github.com/llvm/llvm-project b4fd512c36ca344a3ff69350219e8b0a67e9472a), GNU ld (GNU Binutils) 2.36.1) #14 SMP PREEMPT Thu Aug 12 18:59:42 CST 2021\n[    0.000000] memblock_reserve: 0xb0fc0 setup_arch+0x5c/0x1a0\n[    0.000000] Machine model: Venus based on Qualcomm Technologies, Inc SM8350\n[    0.000000] ramoops: msm_reserve_ramoops_memory addr=b0000000,size=400000\n[    0.000000] ramoops: msm_reserve_ramoops_memory record_size=0,ftrace_size=0\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000d6800000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x00000000d6000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node memshare_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff800000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe400000, size 12 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fd400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fc400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fb400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node user_contig_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f8400000, size 48 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6c00000, size 24 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f5800000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node cnss_wlan_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000eb400000, size 164 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] On node 0 totalpages: 1920848\n[    0.000000]   Normal zone: 30014 pages used for memmap\n[    0.000000]   Normal zone: 0 pages reserved\n[    0.000000]   Normal zone: 1920848 pages, LIFO batch:63\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] psci: OSI mode supported.\n[    0.000000] psci: Switched to OSI mode.\n[    0.000000] percpu: Embedded 29 pages/cpu s88792 r0 d29992 u118784\n[    0.000000] pcpu-alloc: s88792 r0 d29992 u118784 alloc=29*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: detected: GIC system register CPU interface\n[    0.000000] CPU features: kernel page table isolation forced OFF by kpti command line option\n[    0.000000] CPU features: detected: Speculative Store Bypassing Safe (SSBS)\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1890834\n[    0.000000] Kernel command line: ramoops_memreserve=4M noirqdebug nodebugmon log_buf_len=256K rcu_nocbs=0-7 console=ttyMSM0,115200n8 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 androidboot.usbcontroller=a600000.dwc3 swiotlb=0 loop.max_part=7 cgroup.memory=nokmem,nosocket pcie_ports=compat loop.max_part=7 iptable_raw.raw_before_defrag=1 ip6table_raw.raw_before_defrag=1 buildvariant=user  rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 androidboot.vbmeta.device=PARTUUID=8cf74b92-23f7-e664-93e4-a590fecde724 androidboot.vbmeta.device=PARTUUID=8cf74b92-23f7-e664-93e4-a590fecde724 androidboot.vbmeta.avb_version=1.0 androidboot.vbmeta.device_state=unlocked androidboot.vbmeta.hash_alg=sha256 androidboot.vbmeta.size=7104 androidboot.vbmeta.digest=78688f7b58074252bb4397b6d\n[    0.000000] IRQ lockup detection disabled\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)\n[    0.000000] mem auto-init: stack:all(zero), heap alloc:on, heap free:off\n[    0.000000] Memory: 7038516K/7683392K available (23166K kernel code, 3192K rwdata, 11420K rodata, 4480K init, 11717K bss, 276236K reserved, 368640K cma-reserved)\n[    0.000000] random: get_random_u64 called from __kmem_cache_create+0x34/0x550 with crng_init=0\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] rcu: \tRCU restricting CPUs from NR_CPUS=32 to nr_cpu_ids=8.\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.\n[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: 988 SPIs implemented\n[    0.000000] GICv3: 0 Extended SPIs implemented\n[    0.000000] GICv3: Distributor has no Range Selector support\n[    0.000000] GICv3: 16 PPIs implemented\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000011] clocksource: Switched to clocksource arch_sys_counter\n[    0.003357] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.003364] pid_max: default: 32768 minimum: 301\n[    0.003478] LSM: Security Framework initializing\n[    0.003522] SELinux:  Initializing.\n[    0.003686] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)\n[    0.003702] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)\n[    0.004962] ASID allocator initialised with 32768 entries\n[    0.005027] rcu: Hierarchical SRCU implementation.\n[    0.005320] dynamic_debug:dynamic_debug_init: Ignore empty _ddebug table in a CONFIG_DYNAMIC_DEBUG_CORE build\n[    0.006981] scm_mem_protection_init_do: SCM call failed\n[    0.007214] smp: Bringing up secondary CPUs ...\n[    0.008090] Detected VIPT I-cache on CPU1\n[    0.008202] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]\n[    0.009270] Detected VIPT I-cache on CPU2\n[    0.009362] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]\n[    0.010339] Detected VIPT I-cache on CPU3\n[    0.010422] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]\n[    0.013501] Detected PIPT I-cache on CPU4\n[    0.013520] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU4: 0x1100000011111112\n[    0.013530] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU4: 0x00000000010142\n[    0.013538] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU4: 0x00000010010131\n[    0.013543] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU4: 0x00000010010000\n[    0.013547] CPU features: Unsupported CPU feature variation detected.\n[    0.013679] CPU4: Booted secondary processor 0x0000000400 [0x411fd410]\n[    0.015016] Detected PIPT I-cache on CPU5\n[    0.015037] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU5: 0x1100000011111112\n[    0.015047] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU5: 0x00000000010142\n[    0.015054] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU5: 0x00000010010131\n[    0.015059] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU5: 0x00000010010000\n[    0.015198] CPU5: Booted secondary processor 0x0000000500 [0x411fd410]\n[    0.016511] Detected PIPT I-cache on CPU6\n[    0.016529] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU6: 0x1100000011111112\n[    0.016539] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU6: 0x00000000010142\n[    0.016546] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU6: 0x00000010010131\n[    0.016551] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU6: 0x00000010010000\n[    0.016688] CPU6: Booted secondary processor 0x0000000600 [0x411fd410]\n[    0.019756] Detected PIPT I-cache on CPU7\n[    0.019764] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU7: 0x1100000011111112\n[    0.019768] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU7: 0x00000000010142\n[    0.019772] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU7: 0x00000010010131\n[    0.019774] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU7: 0x00000010010000\n[    0.019851] CPU7: Booted secondary processor 0x0000000700 [0x411fd440]\n[    0.020002] smp: Brought up 1 node, 8 CPUs\n[    0.020006] SMP: Total of 8 processors activated.\n[    0.020013] CPU features: detected: Privileged Access Never\n[    0.020086] CPU features: detected: LSE atomic instructions\n[    0.020088] CPU features: detected: User Access Override\n[    0.020090] CPU features: detected: 32-bit EL0 Support\n[    0.020093] CPU features: detected: Common not Private translations\n[    0.020096] CPU features: detected: RAS Extension Support\n[    0.020098] CPU features: detected: Data cache clean to the PoU not required for I/D coherence\n[    0.020100] CPU features: detected: CRC32 instructions\n[    0.041076] CPU: All CPU(s) started at EL1\n[    0.041130] alternatives: patching kernel code\n[    0.042677] do_mount: dev: devtmpfs, mount point: / , retval=0\n[    0.042700] devtmpfs: initialized\n[    0.177017] Registered cp15_barrier emulation handler\n[    0.177035] Registered setend emulation handler\n[    0.177369] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.177391] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)\n[    0.186191] ramoops: msm_register_ramoops_device\n[    0.186429] pinctrl core: initialized pinctrl subsystem\n[    0.187170] NET: Registered protocol family 16\n[    0.188723] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.188746] audit: initializing netlink subsys (disabled)\n[    0.188994] printk: console [pstore-1] enabled\n[    0.189153] pstore: Registered ramoops as persistent store backend\n[    0.189156] ramoops: using 0x400000@0xb0000000, ecc: 0\n[    0.189622] cpuidle: using governor menu\n[    0.189703] NET: Registered protocol family 42\n[    0.190236] hw-breakpoint: found 1 breakpoint and 1 watchpoint registers.\n[    0.190273] audit: type=2000 audit(0.179:1): state=initialized audit_enabled=0 res=1\n[    0.190807] Serial: AMBA PL011 UART driver\n[    0.190951] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.291223] OF: /soc/qcom,cam-res-mgr: could not get #gpio-cells for /soc/funnel@6986000/out-ports/port/endpoint\n[    0.347791] OF: /soc/qcom,cam-res-mgr: could not get #gpio-cells for /soc/funnel@6986000/out-ports/port/endpoint\n[    0.351765] msm-dcc 117f000.dcc_v2: DCC list passed 3\n[    0.351993] msm-dcc 117f000.dcc_v2: All values written to enable.\n[    0.352139] msm-dcc 117f000.dcc_v2: DCC list passed 4\n[    0.352369] msm-dcc 117f000.dcc_v2: All values written to enable.\n[    0.352780] msm-dcc 117f000.dcc_v2: DCC list passed 6\n[    0.353087] msm-dcc 117f000.dcc_v2: All values written to enable.\n[    0.353807] Minidump not enabled.\n[    0.353921] (NULL device *): failed to set download mode: -5\n[    0.354512] Disable GPIO151, 200, 202 wakeup\n[    0.426230] pm8350_s5_level: supplied by pm8350_s9_level\n[    0.426435] pm8350_s5_lvl_ao: supplied by pm8350_s9_level_ao\n[    0.666235] pm8350c_s6_level: supplied by pm8350_s5_level\n[    0.666465] pm8350c_s6_level_ao: supplied by pm8350_s5_lvl_ao\n[    0.679583] pm8350_s9_mmcx_sup_level: supplied by pm8350c_s6_mmcx_sup_level\n[    0.679597] pm8350_s5_mmcx_sup_level: supplied by pm8350_s9_mmcx_sup_level\n[    0.679606] pm8350c_s8_level: supplied by pm8350_s5_mmcx_sup_level\n[    0.679821] pm8350c_s8_level_ao: supplied by pm8350_s5_lvl_ao\n[    0.812372] spmi spmi-0: PMIC arbiter version v5 (0x50020000)\n[    0.831987] sps:sps is ready\n[    0.850170] hh-watchdog hypervisor:qcom,hh-watchdog: QCOM Apps Watchdog Initialized\n[    0.957655] oledb: Bringing 0uV into 5000000-5000000uV\n[    0.957806] ab: Bringing 0uV into 4600000-4600000uV\n[    0.957935] ibb: Bringing 0uV into 1400000-1400000uV\n[    0.976966] cryptd: max_cpu_qlen set to 1000\n[    0.981142] gcc_pcie_0_gdsc: supplied by pm8350c_s6_level\n[    0.981338] gcc_pcie_1_gdsc: supplied by pm8350c_s6_level\n[    0.981543] gcc_ufs_card_gdsc: supplied by pm8350c_s6_level\n[    0.981727] gcc_ufs_phy_gdsc: supplied by pm8350c_s6_level\n[    0.982971] gpu_cc_cx_gdsc: supplied by pm8350c_s6_level\n[    0.983200] gpu_cc_gx_gdsc: supplied by pm8350_s6_level\n[    0.984099] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    1.016583] lahaina-gcc 100000.qcom,gcc: Registered GCC clocks\n[    1.029212] gpu_cc-lahaina 3d90000.qcom,gpucc: Registered GPU CC clocks\n[    1.129689] Rate 19200000 for cam_cc_sleep_clk_src is greater than highest Fmax\n[    1.129693] Rate 19200000 for cam_cc_sleep_clk_src is greater than highest Fmax\n[    1.134970] lahaina-cam_cc ad00000.qcom,camcc: Registered CAM CC clocks\n[    1.161258] video_cc-lahaina abf0000.qcom,videocc: Registered VIDEO CC clocks\n[    1.165185] Minidump: Enabled with max number of regions 200\n[    1.165743] camera_wide_vana_ldo: supplied by pm8350c_bob\n[    1.165940] camera_front_vdig_ldo: supplied by pm8350_s12\n[    1.166141] camera_front_vana_ldo: supplied by pm8350c_bob\n[    1.166347] camera_macro_vana_ldo: supplied by pm8350c_bob\n[    1.167112] qti-reg-fixed-voltage soc:display_gpio_regulator@1: nonexclusive access to GPIO for soc:display_gpio_regulator@1\n[    1.167783] iommu: Default domain type: Translated \n[    1.176104] arm-smmu 3da0000.kgsl-smmu: \tcoherent table walk\n[    1.176109] arm-smmu 3da0000.kgsl-smmu: \tstream matching with 6 register groups\n[    1.178491] SCSI subsystem initialized\n[    1.178608] usbcore: registered new interface driver usbfs\n[    1.178635] usbcore: registered new interface driver hub\n[    1.178746] usbcore: registered new device driver usb\n[    1.178957] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    1.179671] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pmk8350@0:pon_pbs@800: IRQ pmic-wd-bark not found\n[    1.179943] 0x8c0:0x0 0x8c1:0x0 0x8c2:0x0 0x8c3:0x0 0x8c4:0x0 0x8c5:0x0 0x8c6:0x0 0x8c7:0x4 0x8c8:0x0 0x8c9:0x0 0x8ca:0x80 0x8cb:0x0 0x842:0x7 0x84a:0x1 0x852:0x1 \n[    1.180046] use kpdpwr-sw-debounce\n[    1.180184] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pmk8350@0:pon_hlos@1300: IRQ pmic-wd-bark not found\n[    1.180326] input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pmk8350@0:pon_hlos@1300/input/input0\n[    1.181378] 0x13c0:0x0 0x13c1:0x0 0x13c2:0x0 0x13c3:0x0 0x13c4:0x0 0x13c5:0x0 0x13c6:0x0 0x13c7:0x0 0x13c8:0x0 0x13c9:0x0 0x13ca:0x0 0x13cb:0x0 0x1342:0x0 0x134a:0x0 0x1352:0x0 \n[    1.181447] mc: Linux media interface: v0.10\n[    1.181480] videodev: Linux video capture interface: v2.00\n[    1.181589] thermal_sys: Registered thermal governor 'step_wise'\n[    1.181591] thermal_sys: Registered thermal governor 'user_space'\n[    1.192952] Error creating thermal debugfs directory. err:-19\n[    1.194641] thermal_sys: of_parse_thermal_message board sensor: VIRTUAL-SENSOR\n[    1.206915] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=300000 volt=560000, core_count 4\n[    1.206930] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=403200 volt=560000, core_count 4\n[    1.206936] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=499200 volt=560000, core_count 4\n[    1.206941] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=595200 volt=560000, core_count 4\n[    1.206947] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=691200 volt=560000, core_count 4\n[    1.206952] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=806400 volt=576000, core_count 4\n[    1.206958] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=902400 volt=592000, core_count 4\n[    1.206963] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=998400 volt=612000, core_count 4\n[    1.206969] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1094400 volt=624000, core_count 4\n[    1.206975] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1209600 volt=648000, core_count 4\n[    1.206980] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=1305600 volt=676000, core_count 4\n[    1.206986] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=1401600 volt=700000, core_count 4\n[    1.206994] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=1497600 volt=724000, core_count 4\n[    1.207000] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=1612800 volt=756000, core_count 4\n[    1.207005] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=1708800 volt=780000, core_count 4\n[    1.207011] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=1804800 volt=808000, core_count 4\n[    1.207016] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=1804800 volt=808000, core_count 4\n[    1.207054] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=710400 volt=568000, core_count 4\n[    1.207064] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=844800 volt=592000, core_count 4\n[    1.207070] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=960000 volt=616000, core_count 4\n[    1.207075] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=1075200 volt=636000, core_count 4\n[    1.207080] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=1209600 volt=648000, core_count 4\n[    1.207086] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=1324800 volt=676000, core_count 4\n[    1.207091] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=1440000 volt=696000, core_count 4\n[    1.207097] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=1555200 volt=720000, core_count 4\n[    1.207102] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1670400 volt=744000, core_count 4\n[    1.207107] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1766400 volt=764000, core_count 4\n[    1.207113] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=1881600 volt=800000, core_count 4\n[    1.207118] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=1996800 volt=836000, core_count 4\n[    1.207124] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=2112000 volt=872000, core_count 4\n[    1.207129] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=2227200 volt=908000, core_count 4\n[    1.207134] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=2342400 volt=944000, core_count 4\n[    1.207140] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=2419200 volt=1008000, core_count 4\n[    1.207145] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=2419200 volt=1008000, core_count 4\n[    1.207176] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=844800 volt=600000, core_count 4\n[    1.207189] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=960000 volt=612000, core_count 4\n[    1.207194] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=1075200 volt=616000, core_count 4\n[    1.207200] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=1190400 volt=628000, core_count 4\n[    1.207205] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=1305600 volt=628000, core_count 4\n[    1.207211] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=1420800 volt=640000, core_count 4\n[    1.207216] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=1555200 volt=664000, core_count 4\n[    1.207221] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=1670400 volt=684000, core_count 4\n[    1.207227] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1785600 volt=704000, core_count 4\n[    1.207232] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1900800 volt=724000, core_count 4\n[    1.207238] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=2035200 volt=748000, core_count 4\n[    1.207243] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=2150400 volt=784000, core_count 4\n[    1.207249] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=2265600 volt=820000, core_count 4\n[    1.207254] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=2380800 volt=852000, core_count 4\n[    1.207260] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=2496000 volt=880000, core_count 4\n[    1.207265] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=2592000 volt=916000, core_count 4\n[    1.207271] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=2688000 volt=944000, core_count 4\n[    1.207276] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=17 freq=2764800 volt=980000, core_count 4\n[    1.207282] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=18 freq=2841600 volt=1016000, core_count 4\n[    1.207287] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=19 freq=2841600 volt=1016000, core_count 4\n[    1.224552] shmbridge is enabled\n[    1.228701] IPA framework init\n[    1.229321] SDAM base=0x7100 size=128 registered successfully\n[    1.229425] SDAM base=0x7400 size=128 registered successfully\n[    1.229526] SDAM base=0x7c00 size=128 registered successfully\n[    1.229624] SDAM base=0x7d00 size=128 registered successfully\n[    1.229730] SDAM base=0x8400 size=128 registered successfully\n[    1.229830] SDAM base=0x8500 size=128 registered successfully\n[    1.229936] SDAM base=0x9d00 size=128 registered successfully\n[    1.230006] Advanced Linux Sound Architecture Driver Initialized.\n[    1.230841] IPA clients manager init\n[    1.230843] ipa_usb driver init\n[    1.230935] ipa_usb registered successfully\n[    1.230936] exit: IPA_USB init success!\n[    1.230940] ipa_wdi3 registered successfully\n[    1.230942] ipa_gsb registered successfully\n[    1.230945] ipa_uc_offload registered successfully\n[    1.230947] ipa_mhi registered successfully\n[    1.230950] ipa_wigig registered successfully\n[    1.231406] Bluetooth: Core ver 2.22\n[    1.231420] NET: Registered protocol family 31\n[    1.231421] Bluetooth: HCI device and connection manager initialized\n[    1.231427] Bluetooth: HCI socket layer initialized\n[    1.231432] Bluetooth: L2CAP socket layer initialized\n[    1.231436] Bluetooth: SCO socket layer initialized\n[    1.231652] pcie:pcie_init.\n[    1.238714] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node sdsp_region\n[    1.247705] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    1.250728] platform soc:qcom,ion:qcom,ion-heap@26: assigned reserved memory node user_contig_region\n[    1.253714] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    1.256700] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    1.259687] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    1.259906] ION heap system created\n[    1.260067] ION heap adsp created\n[    1.260071] ION heap secure_heap created\n[    1.326802] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x80c00000, size 0x4600000\n[    1.326810] ION heap secure_carveout created\n[    1.326820] ION heap spss created\n[    1.326823] ION heap user_contig created\n[    1.326825] ION heap qsecom created\n[    1.326827] ION heap qsecom_ta created\n[    1.326829] ION heap secure_display created\n[    1.328190] clocksource: Switched to clocksource arch_sys_counter\n[    1.375412] VFS: Disk quotas dquot_6.6.0\n[    1.375458] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    1.376282] NET: Registered protocol family 2\n[    1.376674] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)\n[    1.376753] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)\n[    1.377090] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)\n[    1.377795] TCP: Hash tables configured (established 65536 bind 65536)\n[    1.377872] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)\n[    1.377953] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)\n[    1.378113] NET: Registered protocol family 1\n[    1.378506] NET: Registered protocol family 44\n[    1.378514] PCI: CLS 0 bytes, default 64\n[    1.378650] Trying to unpack rootfs image as initramfs...\n[    1.778302] Freeing initrd memory: 18284K\n[    1.779552] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    1.785422] Initialise system trusted keyrings\n[    1.785520] workingset: timestamp_bits=46 max_order=21 bucket_order=0\n[    1.789321] fuse: init (API version 7.31)\n[    1.799446] Key type asymmetric registered\n[    1.799449] Asymmetric key parser 'x509' registered\n[    1.799472] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 239)\n[    1.799476] io scheduler mq-deadline registered\n[    1.799478] io scheduler kyber registered\n[    1.799561] io scheduler bfq registered\n[    1.808450] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    1.808454] qcom-spmi-gpio c440000.qcom,spmi:qcom,pmr735b@5:pinctrl@8800: read 0x4 failed\n[    1.808462] qcom-spmi-gpio: probe of c440000.qcom,spmi:qcom,pmr735b@5:pinctrl@8800 failed with error -5\n[    1.814395] KPI: Bootloader start count = 90431\n[    1.814398] KPI: Bootloader end count = 127045\n[    1.814400] KPI: Bootloader display count = 2602664596\n[    1.814402] KPI: Bootloader load kernel count = 421560656\n[    1.814405] KPI: Kernel MPM timestamp = 201121\n[    1.814407] KPI: Kernel MPM Clock frequency = 32768\n[    1.816916] v0.15, id=415, ver=2.1, raw_id=309, raw_ver=3, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65583, pmic_die_revision=131072 foundry_id=3 serial_number=3106382685 num_pmics=5 chip_family=0x69 raw_device_family=0x6 raw_device_number=0xf nproduct_id=0x41d num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xf ndefective_parts_array_offset=0xb4 nmodem_supported=0xffffffff\n[    1.817567] lahaina-llcc 9200000.cache-controller: IRQ index 0 not found\n[    1.818844] msm_mem_dump soc:mem_dump: assigned reserved memory node mem_dump_region\n[    1.830457] MSM Memory Dump base table set up\n[    1.830460] MSM Memory Dump apps data table set up\n[    1.831610] llcc_perfmon: Revision 2, has 1 memory controllers connected with LLCC\n[    1.834519] PMIC PON log: Reset Trigger: PS_HOLD\n[    1.834535] PMIC PON log: Reset Type: HARD_RESET\n[    1.834580] PMIC PON log: PON Trigger: USB_CHARGER\n[    1.834594] PMIC PON log: PON Trigger: HARD_RESET\n[    1.834659] PMIC PON log: Reset Trigger: PS_HOLD\n[    1.834673] PMIC PON log: Reset Type: HARD_RESET\n[    1.834712] PMIC PON log: PON Trigger: USB_CHARGER\n[    1.834726] PMIC PON log: PON Trigger: HARD_RESET\n[    1.834789] PMIC PON log: Reset Trigger: PS_HOLD\n[    1.834803] PMIC PON log: Reset Type: HARD_RESET\n[    1.834853] PMIC PON log: PON Trigger: HARD_RESET\n[    1.837212] cdsprm: Init successful\n[    1.837610] 88e0000.qcom,msm-eud: ttyEUD0 at MMIO 0x0 (irq = 39, base_baud = 0) is a EUD UART\n[    1.838664] qbt:qbt_handler_init: entry\n[    1.841292] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled\n[    1.843551] ignore console register\n[    1.843846] ignore cons prob\n[    1.844403] msm_geni_serial_init: Driver initialized\n[    1.845426] Error: swapper/0: fastrpc_device_init: failed to create debugfs root dir\n[    1.845568] fastrpc soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    1.845606] Info: adsprpc (6211): swapper/0: init_secure_vmid_list: secure VMID = 22\n[    1.845608] Info: adsprpc (6211): swapper/0: init_secure_vmid_list: secure VMID = 37\n[    1.845611] adsprpc: fastrpc_init_privileged_gids: privileged GID: 2908\n[    1.845640] adsprpc: fastrpc_setup_service_locator: service location enabled for avs/audio (audio_pdr_adsprpc)\n[    1.845672] adsprpc: fastrpc_setup_service_locator: service location enabled for tms/servreg (sensors_pdr_adsprpc)\n[    1.904779] adsprpc: fastrpc_device_init: SSR notifier registered for adsp\n[    1.904782] adsprpc: fastrpc_device_init: SSR notifier registered for modem\n[    1.904785] adsprpc: fastrpc_device_init: SSR notifier registered for slpi\n[    1.904788] adsprpc: fastrpc_device_init: SSR notifier registered for cdsp\n[    1.917753] adreno-a6xx-gmu 3d6a000.qcom,gmu: Adding to iommu group 0\n[    1.923945] brd: module loaded\n[    1.928774] loop: module loaded\n[    1.928997] zram: Added device: zram0\n[    1.929186] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    1.929679] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    1.929773] platform soc:qcom,ion:qcom,ion-heap@26: assigned reserved memory node user_contig_region\n[    1.929948] qseecom soc:qseecom@c1700000: assigned reserved memory node qseecom_region\n[    1.929993] QSEECOM: qseecom_init_control: qseecom.qsee_version = 0x1402000\n[    1.930097] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE/FDE\n[    1.930887] Loading NFC I2C driver\n[    1.933054] libphy: Fixed MDIO Bus: probed\n[    1.933070] tun: Universal TUN/TAP device driver, 1.6\n[    1.933762] cnss_utils: Unable to create debugfs -19\n[    1.933764] CLD80211: Initializing\n[    1.933999] usbcore: registered new interface driver r8152\n[    1.934013] usbcore: registered new interface driver lan78xx\n[    1.934024] usbcore: registered new interface driver asix\n[    1.934037] usbcore: registered new interface driver ax88179_178a\n[    1.934053] usbcore: registered new interface driver cdc_ether\n[    1.937794] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.941352] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    1.941355] ehci-pci: EHCI PCI platform driver\n[    1.941370] ehci-platform: EHCI generic platform driver\n[    1.942848] usbcore: registered new interface driver uas\n[    1.942864] usbcore: registered new interface driver usb-storage\n[    1.942879] usbcore: registered new interface driver usb_ehset_test\n[    1.942892] usbcore: registered new interface driver lvs\n[    1.943352] dummy_hcd dummy_hcd.0: USB Host+Gadget Emulator, driver 02 May 2005\n[    1.943361] dummy_hcd dummy_hcd.0: Dummy host controller\n[    1.943368] dummy_hcd dummy_hcd.0: new USB bus registered, assigned bus number 1\n[    1.943780] hub 1-0:1.0: USB hub found\n[    1.943802] hub 1-0:1.0: 1 port detected\n[    1.944781] usbcore: registered new interface driver xpad\n[    1.944796] usbcore: registered new interface driver usbtouchscreen\n[    1.945010] xiaomi_touch_probe: kernel base:-541888036864, phy base:10015260672\n[    1.945011] xiaomi_touch_probe enter\n[    1.945013] xiaomi_touch_parse_dt touch,name:xiaomi-touch\n[    1.945155] xiaomi_touch_probe over\n[    1.945325] aw8697 driver version v1.1.3\n[    1.945337] aw8697_i2c_init success\n[    1.945570] gf_platform: gf::gpio-reset:347\n[    1.945577] gf_platform: gf::irq_gpio:346\n[    1.945735] input: uinput-goodix as /devices/virtual/input/input1\n[    1.945866] goodix_fp soc:fingerprint_goodix: fp enable_regulator_3V0: of vreg successful found\n[    1.946300] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 339, hwirq 38\n[    1.946305] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 99\n[    1.946313] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 339 parent hwirq 99\n[    1.946366] goodix_fod: version V1.2.01\n[    1.946487] goodix_fod: goodix status = 0x0\n[    1.947509] rtc-pm8xxx c440000.qcom,spmi:qcom,pmk8350@0:rtc@6100: registered as rtc0\n[    1.947559] rtc-pm8xxx c440000.qcom,spmi:qcom,pmk8350@0:rtc@6100: setting system clock to 1970-08-27T14:01:24 UTC (20613684)\n[    1.947742] i2c /dev entries driver\n[    1.948364] synx: synx device initialization start\n[    1.948456] synx: synx device initialization success\n[    1.949104] uvcvideo: Unable to create debugfs directory\n[    1.949121] usbcore: registered new interface driver uvcvideo\n[    1.949122] USB Video Class driver (1.1.1)\n[    1.949124] gspca_main: v2.14.0 registered\n[    1.950466] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    1.950471] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    1.950875] device-mapper: uevent: version 1.0.3\n[    1.951055] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com\n[    1.951261] device-mapper: verity-avb: AVB error handler initialized with vbmeta device: PARTUUID=8cf74b92-23f7-e664-93e4-a590fecde724\n[    1.951528] bt_dt_parse_vreg_info: qcom,bt-vdd-io is not provided in device tree\n[    1.951582] bt_dt_parse_vreg_info: qcom,bt-vdd-rfacmn is not provided in device tree\n[    1.951593] bt_dt_parse_vreg_info: qcom,bt-vdd-rfa-0p8 is not provided in device tree\n[    1.951773] bt-debug-gpio not provided in devicetree\n[    1.951776] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.951778] bt_power_populate_dt_pinfo: clock not provided in device tree\n[    1.951850] TCS CMD base address is 0x000000000b2e5510 with length 0x0000000000000690\n[    1.952497] cpuidle: using governor qcom\n[    1.952744] lpm_levels: Cluster (L3) stats not registered\n[    1.957462] hidraw: raw HID events driver (C) Jiri Kosina\n[    1.957925] usbcore: registered new interface driver usbhid\n[    1.957926] usbhid: USB HID core driver\n[    1.958237] ashmem: initialized\n[    1.958324] wlan_hdd_state wlan major(493) initialized\n[    1.958623] haven: Haven: disabling HYP UART\n[    1.959077] hh_msgq: Registered client for label: 0\n[    2.019243] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): allocate IRQ 340, hwirq 8\n[    2.019247] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): found parent hwirq 144\n[    2.019253] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): alloc_irqs_parent for 340 parent hwirq 144\n[    2.020962] qcom-llcc-pmu 9095000.llcc-pmu: Registered llcc_pmu, type: 8\n[    2.030744] random: fast init done\n[    2.031920] gnss: GNSS driver registered with major 491\n[    2.032460] usbcore: registered new interface driver snd-usb-audio\n[    2.033169] DATARMNETb1c42acd9c(): rmnet_offload initializing\n[    2.033173] DATARMNET163e93649e(): Starting rmnet SHS module 9731 \n[    2.033840] [mi_disp:mi_disp_core_init] [info]mi disp_core driver initialized!\n[    2.033852] [mi_disp:mi_disp_cdev_register] [info]cdev name = disp_feature, dev_id = (490:0)\n[    2.033954] [mi_disp:mi_disp_feature_init] [info]mi disp_feature driver initialized!\n[    2.034500] dsi_phy ae94400.qcom,mdss_dsi_phy0: ae94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    2.034611] [drm:dsi_pll_init] [msm-dsi-info]: DSI_PLL_0: DSI pll label = dsi_pll_5nm\n[    2.034616] [drm:dsi_pll_init] [msm-dsi-info]: DSI_PLL_0: PLL SSC enabled\n[    2.034624] dsi_pll_init: PLL base=(____ptrval____)\n[    2.034865] dsi_pll_5nm_get_gdsc_status: reg:0xf822f000 status:1\n[    2.034872] vco_5nm_recalc_rate: handoff_resources true\n[    2.035095] dsi_pll_5nm_get_gdsc_status: reg:0xf822f000 status:1\n[    2.035099] vco_5nm_recalc_rate: handoff_resources true\n[    2.035342] dsi_pll_clock_register_5nm: Registered DSI PLL ndx=0, clocks successfully\n[    2.035413] [drm:dsi_phy_driver_probe] [msm-dsi-info]: DSI_0: Probe successful\n[    2.035489] dsi_phy ae96400.qcom,mdss_dsi_phy1: ae96400.qcom,mdss_dsi_phy1 supply gdsc not found, using dummy regulator\n[    2.035576] [drm:dsi_pll_init] [msm-dsi-info]: DSI_PLL_0: DSI pll label = dsi_pll_5nm\n[    2.035580] [drm:dsi_pll_init] [msm-dsi-info]: DSI_PLL_1: PLL SSC enabled\n[    2.035587] dsi_pll_init: PLL base=(____ptrval____)\n[    2.035645] dsi_pll_5nm_get_gdsc_status: reg:0xf822f000 status:1\n[    2.040657] vco_5nm_recalc_rate: PLL not enabled\n[    2.040659] vco_5nm_recalc_rate: handoff_resources false\n[    2.040897] dsi_pll_5nm_get_gdsc_status: reg:0xf822f000 status:1\n[    2.045938] vco_5nm_recalc_rate: PLL not enabled\n[    2.045940] vco_5nm_recalc_rate: handoff_resources false\n[    2.046195] dsi_pll_clock_register_5nm: Registered DSI PLL ndx=1, clocks successfully\n[    2.046200] [drm:dsi_phy_driver_probe] [msm-dsi-info]: DSI_1: Probe successful\n[    2.047786] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.047794] [drm:dsi_ctrl_get] *ERROR* [msm-dsi-error]: inv: Device with of node not found rc=-517\n[    2.053547] voice_init: rc=0\n[    2.054222] [CSPL] Initializing misc device\n[    2.054621] [ELUS] : (elliptic_driver_init) : elliptic_class creation name chardev\n[    2.061493] msm-auxpcm-dev soc:qcom,msm-pri-auxpcm: island supported entry not found\n[    2.061498] msm-auxpcm-dev soc:qcom,msm-pri-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.061509] msm-auxpcm-dev soc:qcom,msm-pri-auxpcm: dev name soc:qcom,msm-pri-auxpcm\n[    2.061551] msm-auxpcm-dev soc:qcom,msm-sec-auxpcm: island supported entry not found\n[    2.061554] msm-auxpcm-dev soc:qcom,msm-sec-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.061563] msm-auxpcm-dev soc:qcom,msm-sec-auxpcm: dev name soc:qcom,msm-sec-auxpcm\n[    2.061605] msm-auxpcm-dev soc:qcom,msm-tert-auxpcm: island supported entry not found\n[    2.061609] msm-auxpcm-dev soc:qcom,msm-tert-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.061616] msm-auxpcm-dev soc:qcom,msm-tert-auxpcm: dev name soc:qcom,msm-tert-auxpcm\n[    2.061653] msm-auxpcm-dev soc:qcom,msm-quat-auxpcm: island supported entry not found\n[    2.061656] msm-auxpcm-dev soc:qcom,msm-quat-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.061664] msm-auxpcm-dev soc:qcom,msm-quat-auxpcm: dev name soc:qcom,msm-quat-auxpcm\n[    2.061698] msm-auxpcm-dev soc:qcom,msm-quin-auxpcm: island supported entry not found\n[    2.061702] msm-auxpcm-dev soc:qcom,msm-quin-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.061709] msm-auxpcm-dev soc:qcom,msm-quin-auxpcm: dev name soc:qcom,msm-quin-auxpcm\n[    2.061746] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: island supported entry not found\n[    2.061749] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.061757] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: dev name soc:qcom,msm-sen-auxpcm\n[    2.062085] msm_dai_q6_probe: dev name soc:qcom,msm-dai-q6, id:-1\n[    2.088091] msm-dai-q6 soc:qcom,msm-dai-q6: msm_dai_q6_probe: added child node\n[    2.088456] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6-afe-loopback-tx, id:24577\n[    2.088635] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-sb-7-rx, id:16398\n[    2.088670] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-sb-7-tx, id:16399\n[    2.088699] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-sb-8-tx, id:16401\n[    2.088727] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-bt-sco-rx, id:12288\n[    2.088755] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-bt-sco-tx, id:12289\n[    2.088783] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-int-fm-rx, id:12292\n[    2.088810] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-int-fm-tx, id:12293\n[    2.088841] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-be-afe-pcm-rx, id:224\n[    2.088869] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-be-afe-pcm-tx, id:225\n[    2.088897] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-afe-proxy-rx, id:241\n[    2.088925] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-afe-proxy-tx, id:240\n[    2.088953] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-incall-record-rx, id:32771\n[    2.088982] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-incall-record-tx, id:32772\n[    2.089010] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-incall-music-rx, id:32773\n[    2.089039] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-incall-music-2-rx, id:32770\n[    2.089069] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-afe-proxy-tx-1, id:242\n[    2.089097] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-proxy-rx, id:8194\n[    2.089125] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-proxy-tx, id:8195\n[    2.089152] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-usb-audio-rx, id:28672\n[    2.089180] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-usb-audio-tx, id:28673\n[    2.091307] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim dev id 0x0\n[    2.091312] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim Rx line 0x3 , Tx ine 0x0\n[    2.091316] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim: island supported entry not found\n[    2.091319] msm_dai_q6_mi2s_get_lineconfig: no line is assigned\n[    2.091323] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x5 capture sdline 0x0\n[    2.091326] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 4 capture ch_mx 0\n[    2.092661] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec dev id 0x1\n[    2.092666] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec Rx line 0x1 , Tx ine 0x0\n[    2.092670] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec: island supported entry not found\n[    2.092672] msm_dai_q6_mi2s_get_lineconfig: no line is assigned\n[    2.092676] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x1 capture sdline 0x0\n[    2.092679] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 2 capture ch_mx 0\n[    2.094012] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert dev id 0x2\n[    2.094017] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert Rx line 0x0 , Tx ine 0x3\n[    2.094021] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert: island supported entry not found\n[    2.094023] msm_dai_q6_mi2s_get_lineconfig: no line is assigned\n[    2.094026] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x0 capture sdline 0x5\n[    2.094029] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 0 capture ch_mx 4\n[    2.095351] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat dev id 0x3\n[    2.095356] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat Rx line 0x1 , Tx ine 0x2\n[    2.095360] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat: island supported entry not found\n[    2.095363] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x1 capture sdline 0x2\n[    2.095366] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 2 capture ch_mx 2\n[    2.096698] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin dev id 0x4\n[    2.096702] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin Rx line 0x1 , Tx ine 0x2\n[    2.096706] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin: island supported entry not found\n[    2.096710] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x1 capture sdline 0x2\n[    2.096713] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 2 capture ch_mx 2\n[    2.098041] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary dev id 0x5\n[    2.098045] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary Rx line 0x0 , Tx ine 0x3\n[    2.098049] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary: island supported entry not found\n[    2.098051] msm_dai_q6_mi2s_get_lineconfig: no line is assigned\n[    2.098055] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x0 capture sdline 0x5\n[    2.098058] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 0 capture ch_mx 4\n[    2.098079] msm-dai-mi2s soc:qcom,msm-dai-mi2s: msm_dai_mi2s_q6_probe: added child node\n[    2.098442] msm_dai_q6_spdif_dev_probe: dev name soc:qcom,msm-dai-q6-spdif-pri-rx, id:20480\n[    2.098484] msm_dai_q6_spdif_dev_probe: dev name soc:qcom,msm-dai-q6-spdif-pri-tx, id:20481\n[    2.098518] msm_dai_q6_spdif_dev_probe: dev name soc:qcom,msm-dai-q6-spdif-sec-rx, id:20482\n[    2.098552] msm_dai_q6_spdif_dev_probe: dev name soc:qcom,msm-dai-q6-spdif-sec-tx, id:20483\n[    2.099204] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9100\n[    2.099208] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.099213] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.099217] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.099221] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.099224] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.100584] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: island supported entry not found\n[    2.100590] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.100594] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.100599] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.100603] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.100608] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.100612] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.100636] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: added child node\n[    2.100672] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9101\n[    2.100676] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.100680] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.100684] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.100687] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.100691] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.102007] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: island supported entry not found\n[    2.102011] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.102015] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.102019] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.102022] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.102026] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.102030] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.102053] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: added child node\n[    2.102088] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9110\n[    2.102092] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.102096] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.102099] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.102102] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.102105] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.103418] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: island supported entry not found\n[    2.103423] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.103426] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.103430] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.103434] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.103437] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.103441] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.103463] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: added child node\n[    2.103497] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9111\n[    2.103501] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.103505] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.103508] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.103511] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.103515] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.104830] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: island supported entry not found\n[    2.104834] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.104838] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.104842] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.104846] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.104849] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.104853] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.104875] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: added child node\n[    2.104909] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9120\n[    2.104913] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x2\n[    2.104916] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.104920] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.104923] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.104926] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.106234] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: island supported entry not found\n[    2.106239] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x0\n[    2.106242] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.106246] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.106250] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.106254] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.106257] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.107594] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: island supported entry not found\n[    2.107598] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x0\n[    2.107602] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.107606] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.107609] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.107613] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.107616] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.107639] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: added child node\n[    2.107672] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9121\n[    2.107675] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x2\n[    2.107679] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.107683] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.107686] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.107689] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.109002] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: island supported entry not found\n[    2.109006] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x0\n[    2.109011] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.109015] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.109020] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.109024] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.109027] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.110386] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: island supported entry not found\n[    2.110391] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x0\n[    2.110394] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.110398] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.110402] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.110406] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.110409] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.110431] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: added child node\n[    2.110463] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9130\n[    2.110467] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.110471] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.110474] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.110477] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.110481] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.111793] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: island supported entry not found\n[    2.111798] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.111801] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.111805] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.111809] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.111813] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.111816] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.111839] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: added child node\n[    2.111873] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9131\n[    2.111877] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.111881] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.111884] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.111887] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.111891] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.113206] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: island supported entry not found\n[    2.113211] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.113215] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.113218] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.113222] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.113226] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.113229] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.113252] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: added child node\n[    2.113287] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9140\n[    2.113290] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.113294] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.113297] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.113301] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.113304] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.114623] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: island supported entry not found\n[    2.114628] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.114632] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.114635] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.114639] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.114643] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.114646] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.114669] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: added child node\n[    2.114703] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9141\n[    2.114706] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.114710] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.114713] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.114717] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.114720] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.116029] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: island supported entry not found\n[    2.116033] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.116037] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.116041] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.116045] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.116049] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.116052] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.116079] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: added child node\n[    2.116113] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9150\n[    2.116117] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.116121] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.116124] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.116127] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.116130] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.117445] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: island supported entry not found\n[    2.117450] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.117454] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.117458] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.117462] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.117467] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.117471] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.117495] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: added child node\n[    2.117532] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9151\n[    2.117536] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.117541] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.117545] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.117549] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.117553] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.118869] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: island supported entry not found\n[    2.118874] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.118877] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.118881] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.118885] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.118888] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.118892] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.118914] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: added child node\n[    2.120922] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-rx dev id 0xb000\n[    2.120926] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-rx: island supported entry not found\n[    2.120929] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-rx: cdc dma data align supported entry not found\n[    2.122253] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-tx dev id 0xb001\n[    2.122257] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-tx: island supported entry not found\n[    2.122260] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-tx: cdc dma data align supported entry not found\n[    2.123587] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-rx dev id 0xb002\n[    2.123591] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-rx: island supported entry not found\n[    2.123594] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-rx: cdc dma data align supported entry not found\n[    2.124920] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-tx dev id 0xb003\n[    2.124924] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-tx: island supported entry not found\n[    2.124927] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-tx: cdc dma data align supported entry not found\n[    2.126257] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-2-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-2-tx dev id 0xb005\n[    2.126261] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-2-tx: island supported entry not found\n[    2.126265] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-2-tx: cdc dma data align supported entry not found\n[    2.127596] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-0-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-0-tx dev id 0xb021\n[    2.127600] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-0-tx: cdc dma data align supported entry not found\n[    2.128927] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-1-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-1-tx dev id 0xb023\n[    2.128931] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-1-tx: island supported entry not found\n[    2.128934] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-1-tx: cdc dma data align supported entry not found\n[    2.130297] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-2-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-2-tx dev id 0xb025\n[    2.130301] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-2-tx: island supported entry not found\n[    2.130304] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-2-tx: cdc dma data align supported entry not found\n[    2.131639] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-0-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-0-rx dev id 0xb030\n[    2.131643] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-0-rx: island supported entry not found\n[    2.131646] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-0-rx: cdc dma data align supported entry not found\n[    2.132972] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-1-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-1-rx dev id 0xb032\n[    2.132976] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-1-rx: island supported entry not found\n[    2.132979] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-1-rx: cdc dma data align supported entry not found\n[    2.134308] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-2-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-2-rx dev id 0xb034\n[    2.134312] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-2-rx: island supported entry not found\n[    2.134316] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-2-rx: cdc dma data align supported entry not found\n[    2.135643] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-3-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-3-rx dev id 0xb036\n[    2.135648] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-3-rx: island supported entry not found\n[    2.135651] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-3-rx: cdc dma data align supported entry not found\n[    2.136981] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-4-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-4-rx dev id 0xb038\n[    2.136986] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-4-rx: island supported entry not found\n[    2.136989] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-4-rx: cdc dma data align supported entry not found\n[    2.138322] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-5-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-5-rx dev id 0xb03a\n[    2.138327] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-5-rx: island supported entry not found\n[    2.138330] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-5-rx: cdc dma data align supported entry not found\n[    2.139667] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-6-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-6-rx dev id 0xb03c\n[    2.139672] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-6-rx: island supported entry not found\n[    2.141022] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-7-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-7-rx dev id 0xb03e\n[    2.141027] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-7-rx: island supported entry not found\n[    2.141030] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-7-rx: cdc dma data align supported entry not found\n[    2.142362] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-0-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-0-tx dev id 0xb031\n[    2.142366] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-0-tx: island supported entry not found\n[    2.142370] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-0-tx: cdc dma data align supported entry not found\n[    2.143700] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-1-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-1-tx dev id 0xb033\n[    2.143704] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-1-tx: island supported entry not found\n[    2.143707] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-1-tx: cdc dma data align supported entry not found\n[    2.145037] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-2-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-2-tx dev id 0xb035\n[    2.145041] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-2-tx: island supported entry not found\n[    2.145044] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-2-tx: cdc dma data align supported entry not found\n[    2.146364] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-3-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-3-tx dev id 0xb037\n[    2.146368] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-3-tx: island supported entry not found\n[    2.146371] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-3-tx: cdc dma data align supported entry not found\n[    2.147698] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-4-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-4-tx dev id 0xb039\n[    2.147702] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-4-tx: island supported entry not found\n[    2.147705] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-4-tx: cdc dma data align supported entry not found\n[    2.149034] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-5-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-5-tx dev id 0xb03b\n[    2.149038] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-5-tx: island supported entry not found\n[    2.149041] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-5-tx: cdc dma data align supported entry not found\n[    2.149064] msm-dai-cdc-dma soc:qcom,msm-dai-cdc-dma: msm_dai_cdc_dma_q6_probe: added child node\n[    2.153511] voice_alloc_cal_mem_map_table: data 0000000000000000 phys (____ptrval____)\n[    2.153872] voice_alloc_cal_mem_map_table: data 0000000000000000 phys (____ptrval____)\n[    2.178571] u32 classifier\n[    2.178572]     input device check on\n[    2.178573]     Actions configured\n[    2.179144] xt_time: kernel timezone is -0000\n[    2.179249] wireguard: WireGuard 1.0.20210606 loaded. See www.wireguard.com for information.\n[    2.179251] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    2.179305] ipip: IPv4 and MPLS over IPv4 tunneling driver\n[    2.179578] gre: GRE over IPv4 demultiplexor driver\n[    2.179581] ip_gre: GRE over IPv4 tunneling driver\n[    2.180186] IPv4 over IPsec tunneling driver\n[    2.180509] iptable_raw: Enabling raw table before defrag\n[    2.180611] Initializing XFRM netlink socket\n[    2.180621] IPsec XFRM device driver\n[    2.180880] NET: Registered protocol family 10\n[    2.181651] Segment Routing with IPv6\n[    2.181721] mip6: Mobile IPv6\n[    2.181822] ip6table_raw: Enabling raw table before defrag\n[    2.182099] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    2.182534] ip6_gre: GRE over IPv6 tunneling driver\n[    2.182762] NET: Registered protocol family 17\n[    2.182774] NET: Registered protocol family 15\n[    2.182921] Bluetooth: RFCOMM TTY layer initialized\n[    2.182927] Bluetooth: RFCOMM socket layer initialized\n[    2.182928] Bluetooth: RFCOMM ver 1.11\n[    2.182931] Bluetooth: HIDP (Human Interface Emulation) ver 1.2\n[    2.182934] Bluetooth: HIDP socket layer initialized\n[    2.182954] l2tp_core: L2TP core driver, V2.0\n[    2.182957] tipc: Activated (version 2.0.0)\n[    2.183026] NET: Registered protocol family 30\n[    2.183102] tipc: Started in single node mode\n[    2.184356] qcom_haven_qrtr soc:qrtr-haven: cant parse shared mem node!\n[    2.184369] qcom_haven_qrtr: probe of soc:qrtr-haven failed with error -22\n[    2.184934] No device name found in device tree.\n[    2.185893] ch_haven_recv soc:qcom,svm_neuron_block:channel0: cant parse shared mem node!\n[    2.185896] ch_haven_recv soc:qcom,svm_neuron_block:channel0: failed to map memory -22\n[    2.185903] ch_haven_recv: probe of soc:qcom,svm_neuron_block:channel0 failed with error -22\n[    2.186435] ch_haven_send soc:qcom,svm_neuron_block:channel1: cant parse shared mem node!\n[    2.186442] ch_haven_send: probe of soc:qcom,svm_neuron_block:channel1 failed with error -22\n[    2.187090] registered taskstats version 1\n[    2.187092] Loading compiled-in X.509 certificates\n[    2.187153] Key type ._fscrypt registered\n[    2.187155] Key type .fscrypt registered\n[    2.187157] Key type fscrypt-provisioning registered\n[    2.187256] pstore: Invalid compression size for deflate: 0\n[    2.222736] Unable to find log_buf by kallsyms!\n[    2.222940] spss_utils [spss_parse_dt]: iar_buf_addr [0x8bef1000].\n[    2.226703] cnss: use-pm-domain is 1\n[    2.226709] cnss: set_wlaon_pwr_ctrl is 0\n[    2.226716] cnss: TCS CMD base address is 0x000000000b2e5510 with length 0x0000000000000690\n[    2.226733] cnss2 b0000000.qcom,cnss-qca6490: can't request region for resource [mem 0x0b2e5510-0x0b2e5b9f]\n[    2.226735] cnss: Failed to map TCS CMD address, err = -16\n[    2.226741] cnss: CommandDB name is not present for CPR\n[    2.226934] cnss: Got regulator: vdd-wlan-io, min_uv: 1800000, max_uv: 1800000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.227169] cnss: Got regulator: wlan-ant-switch, min_uv: 2800000, max_uv: 2800000, load_ua: 0, delay_us: 0, need_unvote: 0\n[    2.227253] cnss: Got regulator: vdd-wlan-aon, min_uv: 950000, max_uv: 952000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.227306] cnss: Got regulator: vdd-wlan-dig, min_uv: 950000, max_uv: 952000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.227356] cnss: Got regulator: vdd-wlan-rfa1, min_uv: 1880000, max_uv: 1880000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.227410] cnss: Got regulator: vdd-wlan-rfa2, min_uv: 1350000, max_uv: 1350000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.227444] cnss: Failed to get optional clock rf_clk, err = -2\n[    2.227536] cnss: BT GPIO: 373\n[    2.227540] cnss: Regulator vdd-wlan-io is being enabled\n[    2.227672] cnss: Regulator wlan-ant-switch is being enabled\n[    2.228037] cnss: Regulator vdd-wlan-aon is being enabled\n[    2.228632] cnss: Regulator vdd-wlan-dig is being enabled\n[    2.228741] cnss: Regulator vdd-wlan-rfa1 is being enabled\n[    2.228850] cnss: Regulator vdd-wlan-rfa2 is being enabled\n[    2.228954] cnss: BT_EN_GPIO State: Off. Delay WLAN_GPIO enable\n[    2.230346] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.230358] [drm:dsi_ctrl_get] *ERROR* [msm-dsi-error]: inv: Device with of node not found rc=-517\n[    2.235888] disp_cc_pll0 PLL is already enabled\n[    2.236064] disp_cc-lahaina af00000.qcom,dispcc: Registered DISP CC clocks\n[    2.236191] cam_cc_bps_gdsc: supplied by pm8350c_s8_level\n[    2.236402] cam_cc_ife_0_gdsc: supplied by pm8350c_s8_level\n[    2.236577] cam_cc_ife_1_gdsc: supplied by pm8350c_s8_level\n[    2.236750] cam_cc_ife_2_gdsc: supplied by pm8350c_s8_level\n[    2.236927] cam_cc_ipe_0_gdsc: supplied by pm8350c_s8_level\n[    2.237109] cam_cc_sbi_gdsc: supplied by pm8350c_s8_level\n[    2.237305] cam_cc_titan_top_gdsc: supplied by pm8350c_s8_level\n[    2.237486] disp_cc_mdss_core_gdsc: supplied by pm8350c_s8_level\n[    2.237692] video_cc_mvs0_gdsc: supplied by pm8350c_s8_level\n[    2.237863] video_cc_mvs0c_gdsc: supplied by pm8350c_s8_level\n[    2.238036] video_cc_mvs1_gdsc: supplied by pm8350c_s8_level\n[    2.238205] video_cc_mvs1c_gdsc: supplied by pm8350c_s8_level\n[    2.238540] msm_drm ae00000.qcom,mdss_mdp: qcom,sde_rscc not probed yet\n[    2.241316] rmnet_ipa3 started initialization\n[    2.250229] random: crng init done\n[    2.264948] arm-smmu 15000000.apps-smmu: \tcoherent table walk\n[    2.264952] arm-smmu 15000000.apps-smmu: \tstream matching with 89 register groups\n[    2.266240] msm-dwc3 a600000.ssusb: Adding to iommu group 1\n[    2.266533] msm-dwc3 a600000.ssusb: IRQ hs_phy_irq not found\n[    2.268517] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.270282] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    2.270348] sps:BAM 0x000000000a704000 is registered\n[    2.273140] msm_vidc_v4l2 aa00000.qcom,vidc:non_secure_cb: Adding to iommu group 2\n[    2.275047] msm_vidc_v4l2 aa00000.qcom,vidc:secure_non_pixel_cb: Adding to iommu group 3\n[    2.276844] msm_vidc_v4l2 aa00000.qcom,vidc:secure_bitstream_cb: Adding to iommu group 4\n[    2.278621] msm_vidc_v4l2 aa00000.qcom,vidc:secure_pixel_cb: Adding to iommu group 5\n[    2.281685] coresight-clk-disable-amba 6048000.tmc: Adding to iommu group 6\n[    2.284946] kgsl-3d 3d00000.qcom,kgsl-3d0: bound 3d6a000.qcom,gmu (ops 0xffffffef68fca2e8)\n[    2.289963] platform 3da0000.qcom,kgsl-iommu:gfx3d_user: Adding to iommu group 7\n[    2.291018] platform 3da0000.qcom,kgsl-iommu:gfx3d_lpac: Adding to iommu group 8\n[    2.291932] platform 3da0000.qcom,kgsl-iommu:gfx3d_secure: Adding to iommu group 9\n[    2.298807] msm_cvp ab00000.qcom,cvp:cvp_non_secure_cb: Adding to iommu group 10\n[    2.300601] msm_cvp ab00000.qcom,cvp:cvp_secure_nonpixel_cb: Adding to iommu group 11\n[    2.302362] msm_cvp ab00000.qcom,cvp:cvp_secure_pixel_cb: Adding to iommu group 12\n[    2.303744] msm_cvp ab00000.qcom,cvp:qcom,msm-cvp,mem_cdsp: assigned reserved memory node cdsp_region\n[    2.309868] gpi_dma 900000.qcom,gpi-dma: Adding to iommu group 13\n[    2.311059] gpi_dma a00000.qcom,gpi-dma: Adding to iommu group 14\n[    2.312331] gpi_dma 800000.qcom,gpi-dma: Adding to iommu group 15\n[    2.313529] minidump-id not found for ipa_fws\n[    2.313578] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    2.313688] subsys-pil-tz soc:qcom,ipa_fws: for md_ipa_fws segments only will be dumped.\n[    2.314024] minidump-id not found for evass\n[    2.314064] subsys-pil-tz abb0000.qcom,evass: for evass segments only will be dumped.\n[    2.314143] subsys-pil-tz abb0000.qcom,evass: for md_evass segments only will be dumped.\n[    2.314460] minidump-id not found for trustedvm\n[    2.314500] subsys-pil-tz soc:qcom,trustedvm@d0800000: for trustedvm segments only will be dumped.\n[    2.314580] subsys-pil-tz soc:qcom,trustedvm@d0800000: for md_trustedvm segments only will be dumped.\n[    2.314886] minidump-id not found for a660_zap\n[    2.314930] subsys-pil-tz soc:qcom,kgsl-hyp: for a660_zap segments only will be dumped.\n[    2.315010] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a660_zap segments only will be dumped.\n[    2.315428] hh_msgq: Registered client for label: 1\n[    2.315835] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1: Adding to iommu group 16\n[    2.316247] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2: Adding to iommu group 17\n[    2.316672] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3: Adding to iommu group 18\n[    2.317090] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4: Adding to iommu group 19\n[    2.317496] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5: Adding to iommu group 20\n[    2.317911] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6: Adding to iommu group 21\n[    2.318327] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7: Adding to iommu group 22\n[    2.318753] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8: Adding to iommu group 23\n[    2.319411] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9: Adding to iommu group 24\n[    2.319808] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10: Adding to iommu group 25\n[    2.320250] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11: Adding to iommu group 26\n[    2.320653] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12: Adding to iommu group 27\n[    2.321056] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13: Adding to iommu group 28\n[    2.321460] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14: Adding to iommu group 29\n[    2.321856] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb15: Adding to iommu group 30\n[    2.322267] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb16: Adding to iommu group 31\n[    2.322686] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb17: Adding to iommu group 32\n[    2.323108] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb18: Adding to iommu group 33\n[    2.323513] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb19: Adding to iommu group 34\n[    2.323823] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.323827] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.324323] qce 1de0000.qcedev: Adding to iommu group 35\n[    2.324773] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    2.324931] qce 1de0000.qcedev: QTI Crypto 5.6.0 device found @0x1de0000\n[    2.325002] sps:BAM 0x0000000001dc4000 is registered\n[    2.325075] sps:BAM 0x0000000001dc4000 (va:0x000000003f485ffc) enabled: ver:0x27, number of pipes:16\n[    2.325176] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 40\n[    2.327296] qce 1de0000.qcedev:qcom_cedev_ns_cb: Adding to iommu group 36\n[    2.329162] qce 1de0000.qcedev:qcom_cedev_s_cb: Adding to iommu group 37\n[    2.329595] qcrypto 1de0000.qcrypto: Adding to iommu group 38\n[    2.329799] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    2.329956] qcrypto 1de0000.qcrypto: QTI Crypto 5.6.0 device found @0x1de0000\n[    2.330097] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 40\n[    2.330360] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    2.330498] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    2.330589] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    2.330680] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    2.330771] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    2.330862] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    2.330948] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    2.331032] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    2.331085] cnss: Assert WLAN_EN GPIO successfully\n[    2.331100] cnss: Failed to enable PCIe RC0, err = -517\n[    2.331103] cnss: Retry PCI link training #1\n[    2.331111] cnss: Failed to enable PCIe RC0, err = -517\n[    2.331114] cnss: Retry PCI link training #2\n[    2.331119] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    2.331121] cnss: Failed to enable PCIe RC0, err = -517\n[    2.331123] cnss: Retry PCI link training #3\n[    2.331130] cnss: Failed to enable PCIe RC0, err = -517\n[    2.331141] cnss: De-assert WLAN_EN GPIO successfully\n[    2.331144] cnss: Regulator vdd-wlan-rfa2 is being disabled\n[    2.331198] cnss: Regulator vdd-wlan-rfa1 is being disabled\n[    2.331232] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    2.331236] cnss: Regulator vdd-wlan-dig is being disabled\n[    2.331273] cnss: Regulator vdd-wlan-aon is being disabled\n[    2.331310] cnss: Regulator wlan-ant-switch is being disabled\n[    2.331333] cnss: Regulator vdd-wlan-io is being disabled\n[    2.331348] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    2.331357] cnss: Put regulator: vdd-wlan-io\n[    2.331416] cnss: Put regulator: wlan-ant-switch\n[    2.331450] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    2.331454] cnss: Put regulator: vdd-wlan-aon\n[    2.331492] cnss: Put regulator: vdd-wlan-dig\n[    2.331527] cnss: Put regulator: vdd-wlan-rfa1\n[    2.331535] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    2.331564] cnss: Put regulator: vdd-wlan-rfa2\n[    2.331628] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    2.331714] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    2.331800] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    2.331889] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    2.331975] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    2.332061] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    2.332147] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    2.334073] uaudio-qmi soc:usb_audio_qmi_dev: Adding to iommu group 39\n[    2.334960] [sde_rsc_hw:rsc_hw_init_v3:538]: sde rsc init successfully done\n[    2.334979] [sde_rsc:sde_rsc_probe:1778]: sde rsc index:0 probed successfully\n[    2.335345] msmdrm_smmu soc:qcom,smmu_sde_unsec_cb: Adding to iommu group 40\n[    2.335430] [drm] probing device qcom,smmu_sde_unsec\n[    2.335433] [drm] Created domain mdp_ns, secure=0\n[    2.335961] msmdrm_smmu soc:qcom,smmu_sde_sec_cb: Adding to iommu group 41\n[    2.336048] [drm] probing device qcom,smmu_sde_sec\n[    2.336051] [drm] Created domain mdp_s, secure=1\n[    2.336251] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.336453] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.336871] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_ife: Adding to iommu group 42\n[    2.337349] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_jpeg: Adding to iommu group 43\n[    2.337867] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_icp: Adding to iommu group 44\n[    2.338341] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm: Adding to iommu group 45\n[    2.339017] spss_utils [spss_parse_dt]: iar_buf_addr [0x8bef1000].\n[    2.341085] qupv3_geni_se 9c0000.qcom,qupv3_0_geni_se: Adding to iommu group 46\n[    2.341569] qupv3_geni_se ac0000.qcom,qupv3_1_geni_se: Adding to iommu group 47\n[    2.342049] qupv3_geni_se 8c0000.qcom,qupv3_2_geni_se: Adding to iommu group 48\n[    2.344384] ufshcd-qcom 1d84000.ufshc: Adding to iommu group 49\n[    2.344622] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: unable to find vdd-hba-max-microamp\n[    2.344637] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled\n[    2.345419] ufshcd-qcom 1d84000.ufshc: -- Registered bus voting! (0) --\n[    2.346069] ufshcd-qcom 1d84000.ufshc: invalid UFS version 0x300\n[    2.346327] scsi host0: ufshcd\n[    2.353319] ufshcd-qcom 1d84000.ufshc: *** This is drivers/scsi/ufs/ufshcd.c ***\n[    2.355155] i2c_geni 998000.i2c: Bus frequency is set to 400000Hz.\n[    2.357219] aw8697_i2c_probe enter\n[    2.357300] aw8697_haptic 0-005a: aw8697_parse_dt: reset gpio provided ok\n[    2.357309] aw8697_haptic 0-005a: aw8697_parse_dt: irq gpio provided ok.\n[    2.357329] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.357331] aw8697_parse_dt ---2912 \n[    2.357335] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.357337] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.357340] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.357342] aw8697_parse_dt ---2912 \n[    2.357344] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.357346] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.357349] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.357350] aw8697_parse_dt ---2912 \n[    2.357353] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.357354] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.357357] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.357358] aw8697_parse_dt ---2912 \n[    2.357360] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.357362] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.357365] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.357366] aw8697_parse_dt ---2912 \n[    2.357368] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.357370] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.357373] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.357375] aw8697_parse_dt ---2912 \n[    2.357377] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.357379] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.357382] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.357383] aw8697_parse_dt ---2912 \n[    2.357385] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.357387] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.357390] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.357391] aw8697_parse_dt ---2912 \n[    2.357393] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.357395] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.357398] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.357399] aw8697_parse_dt ---2912 \n[    2.357401] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.357403] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.357406] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.357407] aw8697_parse_dt ---2912 \n[    2.357409] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.357411] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.357414]  20190420_dt       aw8697->info.bst_vol_default: 0x14\n[    2.357415]  20190420_dt       aw8697->info.bst_vol_ram: 0x14\n[    2.357416]  20190420_dt       aw8697->info.bst_vol_rtp: 0x14\n[    2.357417] aw8697_i2c_probe ---4584 \n[    2.357499] found pin control aw8697_reset_reset\n[    2.357501] Selected 'aw8697_interrupt_active'\n[    2.357502] found pin control aw8697_reset_active\n[    2.357504] Selected 'aw8697_interrupt_active'\n[    2.357505] found pin control aw8697_interrupt_active\n[    2.357514] Selected 'aw8697_interrupt_active'\n[    2.357515] aw8697_i2c_probe ---4624 \n[    2.357533] Selected 'aw8697_reset_active'\n[    2.370073] Selected 'aw8697_reset_reset'\n[    2.370455] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    2.390067] Selected 'aw8697_reset_active'\n[    2.390245] i2c_geni 998000.i2c: i2c error :-107\n[    2.390252] aw8697_i2c_read: i2c_read cnt=0 error=-107\n[    2.410286] aw8697_read_chipid aw8697 detected\n[    2.410288] aw8697_haptic_softreset enter\n[    2.421105] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[4, 4], lane[2, 2], pwr[FAST MODE, FAST MODE], rate = 2\n[    2.421244] ufshcd-qcom 1d84000.ufshc: ufshcd_wb_config: Write Booster Configured\n[    2.421564] scsi 0:0:0:49488: Well-known LUN    SKhynix  HN8T05BZGKX015   A043 PQ: 0 ANSI: 6\n[    2.421990] scsi 0:0:0:49488: Attached scsi generic sg0 type 30\n[    2.422334] scsi 0:0:0:49476: Well-known LUN    SKhynix  HN8T05BZGKX015   A043 PQ: 0 ANSI: 6\n[    2.422701] scsi 0:0:0:49476: Attached scsi generic sg1 type 30\n[    2.422936] scsi 0:0:0:49456: Well-known LUN    SKhynix  HN8T05BZGKX015   A043 PQ: 0 ANSI: 6\n[    2.423314] scsi 0:0:0:49456: Attached scsi generic sg2 type 30\n[    2.423738] scsi 0:0:0:0: Direct-Access     SKhynix  HN8T05BZGKX015   A043 PQ: 0 ANSI: 6\n[    2.424094] sd 0:0:0:0: Power-on or device reset occurred\n[    2.424176] sd 0:0:0:0: Attached scsi generic sg3 type 0\n[    2.424495] scsi 0:0:0:1: Direct-Access     SKhynix  HN8T05BZGKX015   A043 PQ: 0 ANSI: 6\n[    2.424571] sd 0:0:0:0: [sda] 30418944 4096-byte logical blocks: (125 GB/116 GiB)\n[    2.424633] sd 0:0:0:0: [sda] Write Protect is off\n[    2.424640] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    2.424755] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.424811] sd 0:0:0:0: [sda] Optimal transfer size 524288 bytes\n[    2.424869] sd 0:0:0:1: Attached scsi generic sg4 type 0\n[    2.424955] sd 0:0:0:1: Power-on or device reset occurred\n[    2.425247] scsi 0:0:0:2: Direct-Access     SKhynix  HN8T05BZGKX015   A043 PQ: 0 ANSI: 6\n[    2.425429] sd 0:0:0:1: [sdb] 4096 4096-byte logical blocks: (16.8 MB/16.0 MiB)\n[    2.425504] sd 0:0:0:1: [sdb] Write Protect is off\n[    2.425508] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    2.425645] sd 0:0:0:1: [sdb] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.425705] sd 0:0:0:1: [sdb] Optimal transfer size 524288 bytes\n[    2.425948] sd 0:0:0:2: Attached scsi generic sg5 type 0\n[    2.426080] sd 0:0:0:2: Power-on or device reset occurred\n[    2.426612] sd 0:0:0:2: [sdc] 4096 4096-byte logical blocks: (16.8 MB/16.0 MiB)\n[    2.426719] sd 0:0:0:2: [sdc] Write Protect is off\n[    2.426723] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    2.426737] scsi 0:0:0:3: Direct-Access     SKhynix  HN8T05BZGKX015   A043 PQ: 0 ANSI: 6\n[    2.426872] sd 0:0:0:2: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.426941] sd 0:0:0:2: [sdc] Optimal transfer size 524288 bytes\n[    2.427311] sd 0:0:0:3: Power-on or device reset occurred\n[    2.427470] sd 0:0:0:3: Attached scsi generic sg6 type 0\n[    2.427511]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21 sda22 sda23 sda24 sda25 sda26 sda27 sda28 sda29 sda30 sda31 sda32 sda33 sda34\n[    2.427558]  sdb: sdb1 sdb2\n[    2.428005] sd 0:0:0:3: [sdd] 8192 4096-byte logical blocks: (33.6 MB/32.0 MiB)\n[    2.428080] sd 0:0:0:3: [sdd] Write Protect is off\n[    2.428084] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    2.428161] scsi 0:0:0:4: Direct-Access     SKhynix  HN8T05BZGKX015   A043 PQ: 0 ANSI: 6\n[    2.428205] sd 0:0:0:3: [sdd] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.428283] sd 0:0:0:3: [sdd] Optimal transfer size 524288 bytes\n[    2.428684] sd 0:0:0:4: Attached scsi generic sg7 type 0\n[    2.428780] sd 0:0:0:4: Power-on or device reset occurred\n[    2.428892]  sdc: sdc1 sdc2\n[    2.429336] scsi 0:0:0:5: Direct-Access     SKhynix  HN8T05BZGKX015   A043 PQ: 0 ANSI: 6\n[    2.429389] sd 0:0:0:4: [sde] 786432 4096-byte logical blocks: (3.22 GB/3.00 GiB)\n[    2.429470] sd 0:0:0:4: [sde] Write Protect is off\n[    2.429475] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    2.429772] sd 0:0:0:4: [sde] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.429855] sd 0:0:0:4: [sde] Optimal transfer size 524288 bytes\n[    2.430071] sd 0:0:0:5: Power-on or device reset occurred\n[    2.430189]  sdd: sdd1 sdd2 sdd3 sdd4 sdd5\n[    2.430261] sd 0:0:0:2: [sdc] Attached SCSI disk\n[    2.430296] sd 0:0:0:5: Attached scsi generic sg8 type 0\n[    2.431058] sd 0:0:0:1: [sdb] Attached SCSI disk\n[    2.431165] sd 0:0:0:5: [sdf] 8192 4096-byte logical blocks: (33.6 MB/32.0 MiB)\n[    2.431221] sd 0:0:0:5: [sdf] Write Protect is off\n[    2.431225] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    2.431346] sd 0:0:0:5: [sdf] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.431423] sd 0:0:0:5: [sdf] Optimal transfer size 524288 bytes\n[    2.431683] sd 0:0:0:3: [sdd] Attached SCSI disk\n[    2.432356] sd 0:0:0:0: [sda] Attached SCSI disk\n[    2.433203]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6\n[    2.433274]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51 sde52 sde53 sde54 sde55 sde56 sde57 sde58 sde59 sde60 sde61 sde62 sde63 sde64 sde65 sde66 sde67 sde68 sde69 sde70 sde71\n[    2.434552] sd 0:0:0:5: [sdf] Attached SCSI disk\n[    2.434920] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 344, hwirq 119\n[    2.434926] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 123\n[    2.434934] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 344 parent hwirq 123\n[    2.435232] aw8697_vibrator_init enter\n[    2.435235] aw8697_haptic_init enter\n[    2.438498] aw8697_haptic_play_mode enter\n[    2.441081] aw8697_haptic_set_bst_peak_cur  778 enter\n[    2.441975] aw8697_haptic_swicth_motorprotect_config enter\n[    2.442531] sd 0:0:0:4: [sde] Attached SCSI disk\n[    2.443525] aw8697_haptic_offset_calibration enter\n[    2.445194] aw8697_haptic_f0_calibration enter\n[    2.445340] aw8697_haptic_get_f0 enter\n[    2.445342] aw8697_haptic_stop enter\n[    2.445926] aw8697_haptic_play_mode enter\n[    2.446651] aw8697_haptic_play_mode enter\n[    2.447376] aw8697_haptic_active enter\n[    2.450186] aw8697_haptic_set_f0_preset enter\n[    2.570028] aw8697_haptic_read_f0 enter\n[    2.570474] aw8697_haptic_read_f0 f0=1712\n[    2.570476] aw8697_haptic_read_beme  1245 enter\n[    2.570915] aw8697_haptic_read_beme max_pos_beme=127\n[    2.570917] aw8697_haptic_read_beme max_neg_beme=129\n[    2.571641] aw8697_haptic_f0_calibration  line=2156 f0_cali_step=28\n[    2.571643] aw8697_haptic_f0_calibration line=2158  f0_limit=1712\n[    2.571645] aw8697_haptic_f0_calibration line=2160  aw8697->info.f0_pre=1700\n[    2.571646] aw8697_haptic_f0_calibration f0_cali_lra=3\n[    2.572010] aw8697_haptic_f0_calibration final trim_lra=0x03\n[    2.572012] aw8697_haptic_play_mode enter\n[    2.573098] aw8697_haptic_stop enter\n[    2.573680] aw8697_haptic_play_mode enter\n[    2.575064] input: aw8697_haptic as /devices/platform/soc/998000.i2c/i2c-0/0-005a/input/input2\n[    2.575206] rb init\n[    2.575208] aw8697_i2c_probe probe completed successfully!\n[    2.575239] i2c_geni 998000.i2c: I2C probed\n[    2.576289] i2c_geni a80000.i2c: Bus frequency is set to 400000Hz.\n[    2.577921] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 345, hwirq 44\n[    2.577925] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 102\n[    2.577930] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 345 parent hwirq 102\n[    2.577938] cs35l41 1-0040: cs35l41 i2c probe start\n[    2.578070] cs35l41 1-0040: 1-0040 supply VA not found, using dummy regulator\n[    2.578132] cs35l41 1-0040: 1-0040 supply VP not found, using dummy regulator\n[    2.654170] cs35l41 1-0040: Cirrus Logic CS35L41 (35a40), Revision: B2\n[    2.655429] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 346, hwirq 116\n[    2.655433] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 106\n[    2.655437] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 346 parent hwirq 106\n[    2.655445] cs35l41 1-0042: cs35l41 i2c probe start\n[    2.655509] cs35l41 1-0042: 1-0042 supply VA not found, using dummy regulator\n[    2.655567] cs35l41 1-0042: 1-0042 supply VP not found, using dummy regulator\n[    2.731535] cs35l41 1-0042: Cirrus Logic CS35L41 (35a40), Revision: B2\n[    2.731562] i2c_geni a80000.i2c: I2C probed\n[    2.731852] i2c_geni a94000.i2c: Multi-EE usecase\n[    2.731856] i2c_geni a94000.i2c: Bus frequency is set to 400000Hz.\n[    2.734798] fsa4480-driver 2-0042: fsa4480_probe: Looking up qcom,use-power-supply property failed or disabled\n[    2.740455] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    2.744382] pm8008i_l1: supplied by pm8350_s12\n[    2.744667] pm8008i_l1: Bringing 1200000uV into 1104000-1104000uV\n[    2.747357] pm8008i_l2: supplied by pm8350_s12\n[    2.749313] pm8008i_l3: supplied by pm8350c_bob\n[    2.751294] pm8008i_l4: supplied by pm8350c_bob\n[    2.753253] pm8008i_l5: supplied by pm8350c_s1\n[    2.755202] pm8008i_l6: supplied by pm8350c_bob\n[    2.757149] pm8008i_l7: supplied by pm8350c_bob\n[    2.758632] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    2.759172] i2c_geni a94000.i2c: i2c error :-107\n[    2.759177] PM8008: pm8008_read: failed to read 0x0950\n[    2.759179] PM8008: _pm8008_chip_is_enabled: qcom,pm8008-chip-en: failed to get chip state rc=-107\n[    2.759181] PM8008: pm8008_chip_probe: Failed to register chip enable regulator rc=-107\n[    2.759187] qcom,pm8008-chip: probe of a94000.i2c:pm8008j@c:pm8008-chip@900 failed with error -107\n[    2.759528] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    2.760146] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    2.760247] i2c_geni a94000.i2c: I2C probed\n[    2.760822] msm_geni_serial 890000.qcom,qup_uart: Wakeup byte 0xfd\n[    2.760864] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 347, hwirq 71\n[    2.760867] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 134\n[    2.760872] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 347 parent hwirq 134\n[    2.760941] msm_geni_serial 890000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    2.760950] msm_geni_serial 890000.qcom,qup_uart: Failed to create dbg dir\n[    2.761415] 890000.qcom,qup_uart: ttyHS0 at MMIO 0x890000 (irq = 198, base_baud = 0) is a MSM\n[    2.761841] i2c_geni 884000.i2c: Bus frequency is set to 1000000Hz.\n[    2.762272] i2c_geni 884000.i2c: I2C probed\n[    2.762542] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 348, hwirq 87\n[    2.762546] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 138\n[    2.762550] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 348 parent hwirq 138\n[    2.762558] nfc_i2c_dev_probe: enter\n[    2.762580] qcom,sn-nci 3-0028: error reading NFC VDDIO min and max value\n[    2.762583] qcom,sn-nci 3-0028: error reading NFC current value\n[    2.762629] pci-msm 1c00000.qcom,pcie: PCIe: msm_pcie_probe\n[    2.762700] nfc_i2c_dev_probe : requesting IRQ 348\n[    2.762757] nfc_ldo_config: regulator entry not present\n[    2.762964] pci-msm 1c00000.qcom,pcie: 1c00000.qcom,pcie supply vreg-3p3 not found, using dummy regulator\n[    2.763260] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 349, hwirq 96\n[    2.763264] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 148\n[    2.763268] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 349 parent hwirq 148\n[    2.763322] msm_pcie_get_reg: PCIe: RC0: no tcsr resource found.\n[    2.763327] msm_pcie_get_reg: PCIe: RC0: no rumi resource found.\n[    2.767471] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.767484] [drm:dsi_ctrl_get] *ERROR* [msm-dsi-error]: inv: Device with of node not found rc=-517\n[    2.768570] minidump-id not found for spss\n[    2.768621] spss is brought out of reset by UEFI\n[    2.770068] minidump-id not found for slpi\n[    2.776575] ipa 1e00000.qcom,ipa:ipa_smmu_ap: Adding to iommu group 50\n[    2.776974] ipa 1e00000.qcom,ipa:ipa_smmu_wlan: Adding to iommu group 51\n[    2.777351] ipa 1e00000.qcom,ipa:ipa_smmu_uc: Adding to iommu group 52\n[    2.777713] ipa 1e00000.qcom,ipa:ipa_smmu_11ad: Adding to iommu group 53\n[    2.778972] minidump-id not found for venus\n[    2.779600] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.779605] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.780151] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.780242] cnss: use-pm-domain is 1\n[    2.780248] cnss: set_wlaon_pwr_ctrl is 0\n[    2.780253] cnss: TCS CMD base address is 0x000000000b2e5510 with length 0x0000000000000690\n[    2.780293] cnss2 b0000000.qcom,cnss-qca6490: can't request region for resource [mem 0x0b2e5510-0x0b2e5b9f]\n[    2.780294] cnss: Failed to map TCS CMD address, err = -16\n[    2.780299] cnss: CommandDB name is not present for CPR\n[    2.780369] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.780437] cnss: Got regulator: vdd-wlan-io, min_uv: 1800000, max_uv: 1800000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.780679] cnss: Got regulator: wlan-ant-switch, min_uv: 2800000, max_uv: 2800000, load_ua: 0, delay_us: 0, need_unvote: 0\n[    2.780758] cnss: Got regulator: vdd-wlan-aon, min_uv: 950000, max_uv: 952000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.780805] cnss: Got regulator: vdd-wlan-dig, min_uv: 950000, max_uv: 952000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.780857] cnss: Got regulator: vdd-wlan-rfa1, min_uv: 1880000, max_uv: 1880000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.780907] cnss: Got regulator: vdd-wlan-rfa2, min_uv: 1350000, max_uv: 1350000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.780940] cnss: Failed to get optional clock rf_clk, err = -2\n[    2.781014] cnss: BT GPIO: 373\n[    2.781018] cnss: Regulator vdd-wlan-io is being enabled\n[    2.781100] cnss: Regulator wlan-ant-switch is being enabled\n[    2.781419] synx: registered bind ops type 0 for cam_sync\n[    2.781428] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-sync (ops 0xffffffef6920e7a8)\n[    2.781429] cnss: Regulator vdd-wlan-aon is being enabled\n[    2.781435] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu (ops 0xffffffef6920e5b8)\n[    2.781454] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_ife (ops 0xffffffef6920e5c8)\n[    2.781481] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_jpeg (ops 0xffffffef6920e5c8)\n[    2.781486] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_icp_fw (ops 0xffffffef6920e5e8)\n[    2.781514] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_icp (ops 0xffffffef6920e5c8)\n[    2.781525] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm (ops 0xffffffef6920e5c8)\n[    2.781532] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_secure (ops 0xffffffef6920e5c8)\n[    2.782026] cnss: Regulator vdd-wlan-dig is being enabled\n[    2.782193] cnss: Regulator vdd-wlan-rfa1 is being enabled\n[    2.782320] cnss: Regulator vdd-wlan-rfa2 is being enabled\n[    2.782388] cnss: BT_EN_GPIO State: Off. Delay WLAN_GPIO enable\n[    2.784462] cam_req_mgr soc:qcom,cam-req-mgr: bound ac40000.qcom,cam-cpas (ops 0xffffffef6920ef10)\n[    2.784610] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-cdm-intf (ops 0xffffffef6920f1b0)\n[    2.788097] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4d000.qcom,cpas-cdm0 (ops 0xffffffef6920f1c8)\n[    2.792192] cam_req_mgr soc:qcom,cam-req-mgr: bound acb4200.qcom,ife-cdm0 (ops 0xffffffef6920f1c8)\n[    2.796314] cam_req_mgr soc:qcom,cam-req-mgr: bound acc3200.qcom,ife-cdm1 (ops 0xffffffef6920f1c8)\n[    2.800468] cam_req_mgr soc:qcom,cam-req-mgr: bound acef200.qcom,ife-cdm2 (ops 0xffffffef6920f1c8)\n[    2.801751] cam_req_mgr soc:qcom,cam-req-mgr: bound ac97000.qcom,tpg0 (ops 0xffffffef69211e10)\n[    2.802982] cam_req_mgr soc:qcom,cam-req-mgr: bound ac98000.qcom,tpg1 (ops 0xffffffef69211e10)\n[    2.803272] cam_req_mgr soc:qcom,cam-req-mgr: bound acb5200.qcom,csid0 (ops 0xffffffef6920fa80)\n[    2.803539] cam_req_mgr soc:qcom,cam-req-mgr: bound acc4200.qcom,csid1 (ops 0xffffffef6920fa80)\n[    2.803796] cam_req_mgr soc:qcom,cam-req-mgr: bound acf0200.qcom,csid2 (ops 0xffffffef6920fa80)\n[    2.803990] cam_req_mgr soc:qcom,cam-req-mgr: bound acd9200.qcom,csid-lite0 (ops 0xffffffef6920fa80)\n[    2.804187] cam_req_mgr soc:qcom,cam-req-mgr: bound acdb400.qcom,csid-lite1 (ops 0xffffffef6920fa80)\n[    2.805578] cam_req_mgr soc:qcom,cam-req-mgr: bound acb4000.qcom,ife0 (ops 0xffffffef69210a18)\n[    2.806939] cam_req_mgr soc:qcom,cam-req-mgr: bound acc3000.qcom,ife1 (ops 0xffffffef69210a18)\n[    2.808306] cam_req_mgr soc:qcom,cam-req-mgr: bound acef000.qcom,ife2 (ops 0xffffffef69210a18)\n[    2.809500] cam_req_mgr soc:qcom,cam-req-mgr: bound acd9000.qcom,ife-lite0 (ops 0xffffffef69210a18)\n[    2.810651] cam_req_mgr soc:qcom,cam-req-mgr: bound acdb200.qcom,ife-lite1 (ops 0xffffffef69210a18)\n[    2.811074] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-isp (ops 0xffffffef69212350)\n[    2.811163] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-res-mgr (ops 0xffffffef692141b0)\n[    2.811729] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0 (ops 0xffffffef692135b0)\n[    2.812271] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1 (ops 0xffffffef692135b0)\n[    2.812612] cam_req_mgr soc:qcom,cam-req-mgr: bound ac6a000.qcom,csiphy0 (ops 0xffffffef69213808)\n[    2.812941] cam_req_mgr soc:qcom,cam-req-mgr: bound ac6c000.qcom,csiphy1 (ops 0xffffffef69213808)\n[    2.813270] cam_req_mgr soc:qcom,cam-req-mgr: bound ac6e000.qcom,csiphy2 (ops 0xffffffef69213808)\n[    2.813640] cam_req_mgr soc:qcom,cam-req-mgr: bound ac70000.qcom,csiphy3 (ops 0xffffffef69213808)\n[    2.813969] cam_req_mgr soc:qcom,cam-req-mgr: bound ac72000.qcom,csiphy4 (ops 0xffffffef69213808)\n[    2.814304] cam_req_mgr soc:qcom,cam-req-mgr: bound ac74000.qcom,csiphy5 (ops 0xffffffef69213808)\n[    2.814397] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,actuator0 (ops 0xffffffef69213378)\n[    2.814491] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,actuator1 (ops 0xffffffef69213378)\n[    2.814683] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,cam-sensor0 (ops 0xffffffef69213f28)\n[    2.814871] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,cam-sensor1 (ops 0xffffffef69213f28)\n[    2.815053] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,cam-sensor2 (ops 0xffffffef69213f28)\n[    2.815234] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,cam-sensor3 (ops 0xffffffef69213f28)\n[    2.815361] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,eeprom0 (ops 0xffffffef69213ac0)\n[    2.815489] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,eeprom1 (ops 0xffffffef69213ac0)\n[    2.815612] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,eeprom2 (ops 0xffffffef69213ac0)\n[    2.815737] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,eeprom3 (ops 0xffffffef69213ac0)\n[    2.815851] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,ois0 (ops 0xffffffef69213ce0)\n[    2.816004] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,camera-flash@0 (ops 0xffffffef69214368)\n[    2.816118] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,camera-flash@1 (ops 0xffffffef69214368)\n[    2.816216] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,camera-flash@2 (ops 0xffffffef69214368)\n[    2.816409] cam_req_mgr soc:qcom,cam-req-mgr: bound ac00000.qcom,a5 (ops 0xffffffef69212750)\n[    2.816527] cam_req_mgr soc:qcom,cam-req-mgr: bound ac9a000.qcom,ipe0 (ops 0xffffffef69212588)\n[    2.816641] cam_req_mgr soc:qcom,cam-req-mgr: bound ac7a000.qcom,bps (ops 0xffffffef69212930)\n[    2.820207] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-icp (ops 0xffffffef69212cb0)\n[    2.820362] cam_req_mgr soc:qcom,cam-req-mgr: bound ac53000.qcom,jpegenc (ops 0xffffffef69212e60)\n[    2.820511] cam_req_mgr soc:qcom,cam-req-mgr: bound ac57000.qcom,jpegdma (ops 0xffffffef69213000)\n[    2.821865] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-jpeg (ops 0xffffffef692131a0)\n[    2.822199] spss_utils [spss_parse_dt]: iar_buf_addr [0x8bef1000].\n[    2.822323] spss_utils [spss_probe]: Probe completed successfully, [spss1p].\n[    2.822854] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.822864] [drm:dsi_ctrl_get] *ERROR* [msm-dsi-error]: inv: Device with of node not found rc=-517\n[    2.823232] [drm:dsi_ctrl_dev_probe] [msm-dsi-info]: dsi-ctrl-0: Probe successful\n[    2.823514] nfcc_hw_check: VEN forced reset 1 done\n[    2.823590] [drm:dsi_ctrl_dev_probe] [msm-dsi-info]: dsi-ctrl-1: Probe successful\n[    2.823815] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.823819] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.824065] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.824263] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.824769] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.824823] [xiaomi 38 08 0a cmd mode dsc dsi panel] clk_strength = 101\n[    2.825026] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 367, hwirq 75\n[    2.825031] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 103\n[    2.825039] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 367 parent hwirq 103\n[    2.825067] [mi_disp:mi_dsi_panel_parse_config] [info]mi,panel-id is 0x4a3200380800\n[    2.825072] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-on-51-index is 2\n[    2.825076] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-off-51-index is 2\n[    2.825080] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-fod-on-51-index is 2\n[    2.825084] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-fod-off-51-index is 2\n[    2.825088] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-fod-bl-level is 2047\n[    2.825092] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-bl-min-level is 1\n[    2.825096] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-bl-max-level is 2047\n[    2.825101] [mi_disp:mi_dsi_panel_parse_config] [info]mi,panel-on-dimming-delay is 120\n[    2.825105] [mi_disp:mi_dsi_panel_parse_config] [info]mi,mdss-dsi-panel-gamma-update-flag feature not defined\n[    2.825109] [mi_disp:mi_dsi_panel_parse_config] [info]mi aod-nolp-command-enabled\n[    2.825118] [mi_disp:mi_dsi_panel_parse_config] [info]default dc backlight type is 1\n[    2.825123] [mi_disp:mi_dsi_panel_parse_config] [info]dc backlight type 440 \n[    2.825126] [mi_disp:mi_dsi_panel_parse_config] [info]local_hbm_enabled\n[    2.825130] [mi_disp:mi_dsi_panel_parse_config] [info]mi,local-hbm-on-1000nit-51-index is 3\n[    2.825134] [mi_disp:mi_dsi_panel_parse_config] [info]mi,local-hbm-off-to-hbm-51-index is 2\n[    2.825139] [mi_disp:mi_dsi_panel_parse_config] [info]fod_low_brightness_clone_threshold=35\n[    2.825143] [mi_disp:mi_dsi_panel_parse_config] [info]fod_low_brightness_lux_threshold=1\n[    2.825147] [mi_disp:mi_dsi_panel_parse_config] [info]max_brightness_clone=8191\n[    2.825313] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,smmu_sde_sec_cb (ops 0xffffffef69097f40)\n[    2.825319] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,smmu_sde_unsec_cb (ops 0xffffffef69097f40)\n[    2.825327] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops 0xffffffef69094e98)\n[    2.825499] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 368, hwirq 82\n[    2.825503] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 140\n[    2.825507] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 368 parent hwirq 140\n[    2.825745] [mi_disp:mi_disp_feature_attach_display] [info]create disp_feature:0 kthread success\n[    2.825752] [mi_disp:mi_disp_procfs_init] [info]create procfs mipi_rw_prim success!\n[    2.825757] [mi_disp:mi_disp_procfs_init] [info]create procfs tx_cmd_set_prim success!\n[    2.825762] [mi_disp:mi_disp_debugfs_init] [info]create debugfs debug_log success!\n[    2.825766] [mi_disp:mi_disp_debugfs_init] [info]create debugfs esd_sw_prim success!\n[    2.825770] [mi_disp:mi_disp_feature_attach_display] [info]attach primary display(DSI intf) success\n[    2.825775] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-primary (ops 0xffffffef69096808)\n[    2.825782] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops 0xffffffef69095048)\n[    2.825807] [drm] mapped mdp address space @00000000fdeab182\n[    2.828186] [drm:_sde_kms_hw_init_blocks:4175] sde hardware revision:0x70000000\n[    2.828289] [drm:msm_smmu_new] *ERROR* unable to find domain 1 compat: qcom,smmu_sde_nrt_unsec\n[    2.828299] [drm:msm_smmu_new] *ERROR* unable to find domain 3 compat: qcom,smmu_sde_nrt_sec\n[    2.830115] register brightness0-clone cooling device success\n[    2.833455] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    2.833457] [drm] No driver support for vblank timestamp query.\n[    2.833891] [drm] Initialized msm_drm 1.4.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    2.833894] [drm] cont_splash enabled in 1 of 1 display(s)\n[    2.833980] [drm:dsi_ctrl_isr_configure] [msm-dsi-info]: dsi-ctrl-0: IRQ 369 registered\n[    2.834315] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.834320] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.834565] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.834762] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.835034] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.835038] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.835276] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.835468] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.836092] ngd_msm_ctrl 3ac0000.slim: Adding to iommu group 54\n[    2.838224] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): allocate IRQ 370, hwirq 5\n[    2.838228] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): found parent hwirq 141\n[    2.838233] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): alloc_irqs_parent for 370 parent hwirq 141\n[    2.838416] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    2.838879] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 371, hwirq 23\n[    2.838883] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 84\n[    2.838887] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 371 parent hwirq 84\n[    2.838896] [ FTS ] fts_probe: driver spi ver: 5.2.4.1\n[    2.838897] [ FTS ] SPI interface... \n[    2.838914] [ FTS ] product_name:venus,major:9,minor:0\n[    2.838917] [ FTS ] fts_judge_hwid don't need avdd-old supply\n[    2.838931] [ FTS ] fod-lx:588\n[    2.838933] [ FTS ] fod ly:2358\n[    2.838935] [ FTS ] fod size:264\n[    2.838938] [ FTS ] fod size:264\n[    2.838980] [ FTS ] parse_dt:tp vendor: 56\n[    2.838981] [ FTS ] Unable to read tp color\n[    2.838983] [ FTS ] Unable to read tp module\n[    2.838984] [ FTS ] Unable to read tp hw version\n[    2.838986] [ FTS ] parse_dt:fw_name: st_fts_k2.ftb\n[    2.838988] [ FTS ] parse_dt:limit_name: stm_fts_production_limits.csv\n[    2.839364] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.839368] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.839628] [ FTS ] gpio_num:331, irq:371\n[    2.839734] input: fts as /devices/platform/soc/a8c000.spi/spi_master/spi1/spi1.0/input/input4\n[    2.839817] [ FTS ] openChannel: spi_master: flags = 0000 !\n[    2.839820] [ FTS ] openChannel: spi_device: max_speed = 12000000 chip select = 00 bits_per_words = 8 mode = 0000 !\n[    2.839821] [ FTS ] openChannel: completed! \n[    2.839825] [ FTS ] System resetting...\n[    2.850066] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.850265] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.850514] spi_geni a8c000.spi: tx_fifo 16 rx_fifo 16 tx_width 32\n[    2.865942] [ FTS ] System reset DONE!\n[    2.866256] [ FTS ] FW VER = 0076 \n[    2.866257] [ FTS ] SVN REV = 3755 \n[    2.866259] [ FTS ] CONFIG VER = 003D \n[    2.866261] [ FTS ] CONFIG PROJECT ID = 0000 \n[    2.866262] [ FTS ] CX VER = FFFF \n[    2.866263] [ FTS ] CX PROJECT ID = 0000 \n[    2.866265] [ FTS ] AFE VER: CFG = 06 - CX = 06 - PANEL = 06 \n[    2.866278] [ FTS ] Release Info = 3D 1E 00 00 00 00 00 00 84 6E 80 3C 6A 0B A5 11  \n[    2.879384] [ FTS ] Echo FOUND... OK!\n[    2.879568] [ FTS ] fts_get_lockdown_info signature:A5 id:70 70 beforecnt:1,aftercnt:2\n[    2.879575] [ FTS ] Interrupt Enabled!\n[    2.879579] [ FTS ] Lockdown:0x48,0x38,0x32,0x04,0x48,0x32,0x31,0x01\n[    2.879588] [ FTS ] FW Update and Sensing Initialization: \n[    2.879590] [ FTS ] Fw Auto Update is starting... \n[    2.879753] [ FTS ] fts_crc_check: Verifying if Config CRC Error...\n[    2.879755] [ FTS ] System resetting...\n[    2.891085] cnss: Assert WLAN_EN GPIO successfully\n[    2.891103] msm_pcie_enable: PCIe: Assert the reset of endpoint of RC0.\n[    2.894624] msm_pcie_enable: PCIe: RC0: PCIE20_PARF_INT_ALL_MASK: 0x7f80c202\n[    2.896831] pcie_phy_init: PCIe RC0 PHY is ready!\n[    2.905664] [ FTS ] System reset DONE!\n[    2.905667] [ FTS ] fts_crc_check: No Config CRC Error Found! \n[    2.905668] [ FTS ] fts_crc_check: Verifying if Cx CRC Error...\n[    2.905669] [ FTS ] fts_crc_check: No Cx CRC Error Found! \n[    2.905671] [ FTS ] fts_fw_update: NO CRC Error or Impossible to read CRC register! \n[    2.905672] [ FTS ] fts_get_lockdown_info aleady get,skip\n[    2.905674] [ FTS ] Interrupt Enabled!\n[    2.905676] [ FTS ] Choose config 0: st_fts_k2.ftb\n[    2.905678] [ FTS ] getFWdata starting ...\n[    2.905679] [ FTS ] Read FW from BIN file st_fts_k2.ftb !\n[    2.905716] [ FTS ] getFWdata Finished!\n[    2.905719] [ FTS ] parseBinFile: FILE SVN REV = 00003755\n[    2.905720] [ FTS ] parseBinFile: FILE Fw Version = 0076\n[    2.905721] [ FTS ] parseBinFile: FILE Config Project ID = 00000000\n[    2.905723] [ FTS ] parseBinFile: FILE Config Version = 0000003D\n[    2.905724] [ FTS ] parseBinFile: File External Release =  \n[    2.905725] 3D \n[    2.905726] 1E \n[    2.905727] 00 \n[    2.905728] 00 \n[    2.905730] 00 \n[    2.905731] 00 \n[    2.905732] 00 \n[    2.905733] 00 \n\n[    2.905736] [ FTS ] parseBinFile:  sec0_size = 0001B878 (112760 bytes)\n[    2.905737] [ FTS ] parseBinFile:  sec1_size = 00000E30 (3632 bytes)\n[    2.905739] [ FTS ] parseBinFile:  sec2_size = 00000000 (0 bytes) \n[    2.905741] [ FTS ] parseBinFile:  sec3_size = 00000000 (0 bytes) \n[    2.905770] [ FTS ] parseBinFile: Initialize cx_ver to default value! \n[    2.905772] [ FTS ] parseBinFile: CX Version = FFFF \n[    2.905774] [ FTS ] Code Pages: 28 panel area Pages: 1 cx area Pages: 2 fw config Pages: 1 !\n[    2.905776] [ FTS ] Code start addr: 0x00000000 cx start addr: 0x00007400 fw start addr: 0x00007C00 !\n[    2.905777] [ FTS ] READ FW DONE 116392 bytes!\n[    2.905783] [ FTS ] flash_burn: Firmware in the chip newer or equal to the one to burn! NO UPDATE ERROR 8000000C \n[    2.905786] [ FTS ] fts_fw_update: Verifying if CX CRC Error...\n[    2.905788] [ FTS ] System resetting...\n[    2.906861] msm_pcie_enable: PCIe: Release the reset of endpoint of RC0.\n[    2.923304] msm_pcie_link_train: PCIe RC0 link initialized\n[    2.923516] pci-msm 1c00000.qcom,pcie: host bridge /soc/qcom,pcie@1c00000 ranges:\n[    2.923524] pci-msm 1c00000.qcom,pcie:   No bus range found for /soc/qcom,pcie@1c00000, using [bus 00-ff]\n[    2.923537] pci-msm 1c00000.qcom,pcie:    IO 0x60200000..0x602fffff -> 0x60200000\n[    2.923546] pci-msm 1c00000.qcom,pcie:   MEM 0x60300000..0x63ffffff -> 0x60300000\n[    2.923593] pci-msm 1c00000.qcom,pcie: MSI: qgic controller is present\n[    2.925133] pci-msm 1c00000.qcom,pcie: PCI host bridge to bus 0000:00\n[    2.925138] pci_bus 0000:00: root bus resource [bus 00-ff]\n[    2.925143] pci_bus 0000:00: root bus resource [io  0x0000-0xfffff] (bus address [0x60200000-0x602fffff])\n[    2.925147] pci_bus 0000:00: root bus resource [mem 0x60300000-0x63ffffff]\n[    2.925204] pci 0000:00:00.0: [17cb:010c] type 01 class 0x060400\n[    2.925301] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]\n[    2.925569] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold\n[    2.931361] NFC fw version = 1.10.59\n[    2.931364] nfcc_hw_check: ## NFCC == SN100x ##\n[    2.931440] nfc_i2c_dev_probe success\n[    2.931494] [ FTS ] System reset DONE!\n[    2.931497] [ FTS ] fts_fw_update: No Cx CRC Error Found! \n[    2.931498] [ FTS ] fts_fw_update: Verifying if Panel CRC Error... \n[    2.931500] [ FTS ] fts_fw_update: No Panel CRC Error Found! \n[    2.931503] [ FTS ] Interrupt Mode\n[    2.931639] [ FTS ] fts_mode_handler: Screen ON... \n[    2.931642] [ FTS ] fts_mode_handler: Sense ON\n[    2.941394] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring\n[    2.941497] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.941502] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.941620] pci 0000:01:00.0: [17cb:1103] type 00 class 0x028000\n[    2.941741] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x001fffff 64bit]\n[    2.941759] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.941958] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.942133] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold\n[    2.957566] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01\n[    2.957585] pci 0000:00:00.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000\n[    2.957592] pci 0000:00:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000\n[    2.957604] pci 0000:00:00.0: BAR 8: assigned [mem 0x60400000-0x605fffff]\n[    2.957610] pci 0000:00:00.0: BAR 9: assigned [mem 0x60600000-0x607fffff 64bit pref]\n[    2.957614] pci 0000:00:00.0: BAR 0: assigned [mem 0x60300000-0x60300fff 64bit]\n[    2.957648] pci 0000:00:00.0: BAR 7: assigned [io  0x1000-0x1fff]\n[    2.957655] pci 0000:01:00.0: BAR 0: assigned [mem 0x60400000-0x605fffff 64bit]\n[    2.957700] pci 0000:00:00.0: PCI bridge to [bus 01]\n[    2.957706] pci 0000:00:00.0:   bridge window [io  0x1000-0x1fff]\n[    2.957724] pci 0000:00:00.0:   bridge window [mem 0x60400000-0x605fffff]\n[    2.957737] pci 0000:00:00.0:   bridge window [mem 0x60600000-0x607fffff 64bit pref]\n[    2.958061] pci-msm-rc 0000:00:00.0: Adding to iommu group 55\n[    2.958373] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.958377] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.958624] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.958820] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.959348] msm_pcie_enumerate: PCIe: RC0: has already been enumerated.\n[    2.961921] cnss_pci 0000:01:00.0: Adding to iommu group 56\n[    2.961963] cnss: PCI is probing, vendor ID: 0x17cb, device ID: 0x1103\n[    2.961976] cnss_pci 0000:01:00.0: assigned reserved memory node cnss_wlan_region\n[    2.961978] cnss: CMA area is cnss_wlan_region\n[    2.962280] cnss: Powerup is ignored\n[    2.962311] cnss: Ramdump size 0x420000\n[    2.962321] cnss2 b0000000.qcom,cnss-qca6490: for wlan segments only will be dumped.\n[    2.962413] cnss: Initializing SMMU\n[    2.962416] cnss: Enabling SMMU S1 stage\n[    2.962420] cnss: smmu_iova_start: 0x00000000a0000000, smmu_iova_len: 0x10000000\n[    2.962425] cnss: smmu_iova_ipa_start: 0x00000000b0000000, smmu_iova_ipa_len: 0x10000\n[    2.962430] cnss: iommu_geometry: 0\n[    2.962435] cnss: PCIe DRV is supported\n[    2.962475] cnss_pci 0000:01:00.0: BAR 0: assigned [mem 0x60400000-0x605fffff 64bit]\n[    2.962535] pci-msm-rc 0000:00:00.0: enabling device (0006 -> 0007)\n[    2.962557] cnss_pci 0000:01:00.0: enabling device (0000 -> 0002)\n[    2.963645] cnss: MSI base data is 800\n[    2.963650] cnss: BAR starts at 0x0000000060400000, len-200000\n[    2.963655] cnss: Assign MSI to user: MHI, num_vectors: 3, user_base_data: 800, base_vector: 0\n[    2.963659] cnss: Number of assigned MSI for MHI is 3, base vector is 0\n[    2.963663] cnss: Get IRQ number 372 for vector index 0\n[    2.963665] cnss: Get IRQ number 373 for vector index 1\n[    2.963668] cnss: Get IRQ number 374 for vector index 2\n[    2.964035] cnss: Get device version info, family number: 0x4, device number: 0xc, major version: 0x1, minor version: 0x10\n[    2.964039] cnss: Firmware name is amss.bin\n[    2.964048] cnss: Get PCI link status register: 4115\n[    2.964051] cnss: Default PCI link speed is 0x3, link width is 0x1\n[    2.980061] cnss: Suspending PCI link\n[    2.985462] [ FTS ] Interrupt Enabled!\n[    2.985619] [ FTS ] Fw Update Finished! error = 00000000\n[    2.985676] [ FTS ] fts_status_event_handler Mutual negative detect Force cal = 01 00 00 00 00 02\n[    2.985757] [ FTS ] fts_proc_init: proc entry CREATED! \n[    2.985878] xiaomitouch_register_modedata\n[    2.986044] [ FTS ] fts_read_touchmode_data: game_mode:0, active_mode:1, up_threshold:0, landlock:0, wgh:3, 167, 144\n[    2.986047] [ FTS ] fts_init_touchmode_data: mode:0, set cur:0, get cur:0, def:0 min:0 max:1\n[    2.986050] [ FTS ] fts_init_touchmode_data: mode:1, set cur:1, get cur:1, def:0 min:0 max:1\n[    2.986052] [ FTS ] fts_init_touchmode_data: mode:2, set cur:4, get cur:4, def:4 min:1 max:5\n[    2.986055] [ FTS ] fts_init_touchmode_data: mode:3, set cur:3, get cur:3, def:3 min:1 max:5\n[    2.986057] [ FTS ] fts_init_touchmode_data: mode:4, set cur:3, get cur:3, def:3 min:1 max:5\n[    2.986059] [ FTS ] fts_init_touchmode_data: mode:5, set cur:3, get cur:3, def:3 min:1 max:5\n[    2.986062] [ FTS ] fts_init_touchmode_data: mode:6, set cur:1, get cur:1, def:1 min:1 max:3\n[    2.986064] [ FTS ] fts_init_touchmode_data: mode:7, set cur:2, get cur:2, def:2 min:0 max:3\n[    2.986066] [ FTS ] fts_init_touchmode_data: mode:8, set cur:0, get cur:0, def:0 min:0 max:3\n[    2.986069] [ FTS ] fts_init_touchmode_data: mode:9, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.986071] [ FTS ] fts_init_touchmode_data: mode:10, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.986073] [ FTS ] fts_init_touchmode_data: mode:11, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.986076] [ FTS ] fts_init_touchmode_data: mode:12, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.986078] [ FTS ] fts_init_touchmode_data: mode:13, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.986080] [ FTS ] fts_init_touchmode_data: mode:14, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.986083] [ FTS ] fts_init_touchmode_data: mode:15, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.986085] [ FTS ] fts_init_touchmode_data: mode:16, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.986088] [ FTS ] fts_init_touchmode_data: mode:17, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.986090] [ FTS ] fts_init_touchmode_data: mode:18, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.986093] [ FTS ] fts_init_touchmode_data: mode:19, set cur:0, get cur:0, def:0 min:0 max:0\n[    2.986094] [ FTS ] Probe Finished! \n[    2.986450] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.986455] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.986799] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.987001] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.989328] bimc-bwmon: Zone thres larger than hw limit: hi:0 med:4000 lo:0\n[    2.989642] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.989646] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.989888] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.990118] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.990480] bimc-bwmon: Zone thres larger than hw limit: hi:0 med:4000 lo:0\n[    2.990775] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.990779] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.991020] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.991217] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.991735] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.991739] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.991974] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.992190] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.992630] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.992634] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.992867] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.993057] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.993477] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.993481] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.993712] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.993902] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.994322] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.994326] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.994558] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.994749] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.995166] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.995170] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.995402] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.995592] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.996005] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.996009] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.996242] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.996432] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.996844] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.996848] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.997080] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.997270] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.997686] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.997690] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.997924] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.998116] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.998516] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.998520] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.998752] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.998942] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.999314] bimc-bwmon: Zone thres larger than hw limit: hi:0 med:4000 lo:0\n[    2.999536] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.999540] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.999772] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    2.999963] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.000522] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.000526] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.000760] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.000951] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.001440] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.001444] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.001676] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.001867] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.002376] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.002380] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.002614] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.002806] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.003300] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.003303] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.003536] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.003727] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.004352] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.004356] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.004589] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.004780] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.005246] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.005250] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.005483] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.005674] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.007088] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.007092] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.007326] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.007516] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.007970] RNDIS_IPA module is loaded.\n[    3.007975] core_ctl: Creating CPU group 0\n[    3.007977] core_ctl: Init CPU0 state\n[    3.007978] core_ctl: Init CPU1 state\n[    3.007979] core_ctl: Init CPU2 state\n[    3.007981] core_ctl: Init CPU3 state\n[    3.008145] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.008149] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.008382] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.008572] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.008730] core_ctl: Creating CPU group 4\n[    3.008732] core_ctl: Init CPU4 state\n[    3.008733] core_ctl: Init CPU5 state\n[    3.008734] core_ctl: Init CPU6 state\n[    3.008822] core_ctl: Creating CPU group 7\n[    3.008824] core_ctl: Init CPU7 state\n[    3.009033] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    3.009534] [ FTS ] fts_status_event_handler Mutual negative detect Force cal = 01 00 00 00 00 01\n[    3.009978] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    3.010676] gpu_cc-lahaina 3d90000.qcom,gpucc: sync-state\n[    3.010754] disp_cc-lahaina af00000.qcom,dispcc: sync-state\n[    3.010884] ALSA device list:\n[    3.010893]   No soundcards found.\n[    3.010924] Warning: unable to open an initial console.\n[    3.090065] msm_pcie_disable: PCIe: Assert the reset of endpoint of RC0.\n[    3.090448] cnss: De-assert WLAN_EN GPIO successfully\n[    3.090452] cnss: Regulator vdd-wlan-rfa2 is being disabled\n[    3.090478] cnss: Regulator vdd-wlan-rfa1 is being disabled\n[    3.090513] cnss: Regulator vdd-wlan-dig is being disabled\n[    3.090547] cnss: Regulator vdd-wlan-aon is being disabled\n[    3.090581] cnss: Regulator wlan-ant-switch is being disabled\n[    3.090602] cnss: Regulator vdd-wlan-io is being disabled\n[    3.092442] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.092446] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.092687] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.092878] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.093029] cnss: ICC Path_Count: 2 BW_CFG_Count: 7\n[    3.093153] cnss: ICC Vote CFG for path: pcie_to_memnoc\n[    3.093157] cnss: ICC Vote BW: 0 avg: 0 peak: 0\n[    3.093160] cnss: ICC Vote BW: 1 avg: 2250 peak: 390000\n[    3.093163] cnss: ICC Vote BW: 2 avg: 7500 peak: 390000\n[    3.093167] cnss: ICC Vote BW: 3 avg: 30000 peak: 790000\n[    3.093170] cnss: ICC Vote BW: 4 avg: 100000 peak: 790000\n[    3.093173] cnss: ICC Vote BW: 5 avg: 175000 peak: 1600000\n[    3.093176] cnss: ICC Vote BW: 6 avg: 7500 peak: 390000\n[    3.093466] cnss: ICC Vote CFG for path: memnoc_to_ddr\n[    3.093468] cnss: ICC Vote BW: 0 avg: 0 peak: 0\n[    3.093472] cnss: ICC Vote BW: 1 avg: 2250 peak: 1804800\n[    3.093475] cnss: ICC Vote BW: 2 avg: 7500 peak: 1804800\n[    3.093478] cnss: ICC Vote BW: 3 avg: 30000 peak: 1804800\n[    3.093481] cnss: ICC Vote BW: 4 avg: 100000 peak: 1804800\n[    3.093484] cnss: ICC Vote BW: 5 avg: 175000 peak: 6220800\n[    3.093488] cnss: ICC Vote BW: 6 avg: 7500 peak: 2188800\n[    3.093875] cnss: Platform driver probed successfully.\n[    3.095603] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.095607] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.095843] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.096035] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.097135] Freeing unused kernel memory: 4480K\n[    3.097230] Run /init as init process\n[    3.102596] do_mount: dev: tmpfs, mount point: /dev , retval=0\n[    3.103845] do_mount: dev: proc, mount point: /proc , retval=0\n[    3.105147] do_mount: dev: sysfs, mount point: /sys , retval=0\n[    3.106368] do_mount: dev: tmpfs, mount point: /tmp , retval=0\n[    3.279086] Booting DSP...\n[    3.280197] subsys-pil-tz 17300000.qcom,lpass: adsp: loading from 0x0000000086100000 to 0x0000000088a00000\n[    3.294440] ERROR qrtr-ns: nameserver already running, going dormant: Address in use\n[    3.396880] subsys-pil-tz 17300000.qcom,lpass: adsp: Brought out of reset\n[    3.396911] pil_boot is successful from adsp and waiting for error ready\n[    3.418379] Subsystem error monitoring/handling services are up fromadsp\n[    3.418392] subsys-pil-tz 17300000.qcom,lpass: adsp: Power/Clock ready interrupt received\n[    3.419336] adsprpc: fastrpc_restart_notifier_cb: adsp subsystem is up\n[    3.421337] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.421341] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.421717] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.421915] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.422039] 1767541634:Entered\n[    3.422269] 1767541634:SMD QRTR driver probed\n[    3.422496] sysmon-qmi: ssctl_new_server: Connection established between QMI handle and adsp's SSCTL service\n[    3.424076] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.424081] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.424318] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.424510] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.424697] cnss: DRV subsystem is connected\n[    3.426246] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.426250] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.426487] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.426711] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.426975] Info: adsprpc (4679): kworker/0:7: fastrpc_rpmsg_probe: opened rpmsg channel for adsp\n[    3.429793] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.429797] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.430058] apr_tal_rpmsg soc:adsp.apr_audio_svc.-1.-1: apr_tal_rpmsg_probe: Channel[apr_audio_svc] state[Up]\n[    3.430149] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.430343] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.431931] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.431935] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.688715] qti_battery_charger soc:qcom,pmic_glink:qcom,battery_charger: battery_chg_probe start\n[    3.688892] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.689085] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.690704] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.690708] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.691587] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.691780] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.693367] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.693371] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.740486] BATTERY_CHG: power_supply_read_temp: batt_thermal temp:0 ,delta:3740 rc=0\n[    3.741316] qti_battery_charger soc:qcom,pmic_glink:qcom,battery_charger: battery_chg_probe done\n[    3.741942] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.742135] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000a0fd1dd9\n[    3.743723] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.743727] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.748060] BATTERY_CHG: handle_notification: notification: 0x81\n[    4.251044] [ FTS ] fts_write_charge_status charging_status:0\n[    4.871077] OF: graph: no port node found in /soc/qcom,pmic_glink/qcom,ucsi/port\n[    4.871082] OF: graph: no port node found in /soc/qcom,pmic_glink/qcom,ucsi/port\n[    6.190262] sd 0:0:0:0: [sda] Synchronizing SCSI cache\n[    6.190300] sd 0:0:0:1: [sdb] Synchronizing SCSI cache\n[    6.190437] sd 0:0:0:3: [sdd] Synchronizing SCSI cache\n[    6.190456] sd 0:0:0:2: [sdc] Synchronizing SCSI cache\n[    6.210103] sd 0:0:0:5: [sdf] Synchronizing SCSI cache\n[    6.220070] sd 0:0:0:4: [sde] Synchronizing SCSI cache\n[    6.986851] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    6.986983] cpu1 \n[    6.987038] cpu4 \n[    6.987088] cpu7 \n[    6.987131] \n               Offline CPUs: \n[    6.989612] cpu1 \n[    7.011205] CPU1: shutdown\n[    7.011210] psci: CPU1 killed (polled 0 ms)\n[    7.011803] cpu2 \n[    7.072392] CPU2: shutdown\n[    7.072398] psci: CPU2 killed (polled 0 ms)\n[    7.073143] cpu3 \n[    7.131595] CPU3: shutdown\n[    7.131599] psci: CPU3 killed (polled 0 ms)\n[    7.132110] cpu4 \n[    7.193520] IRQ 13: no longer affine to CPU4\n[    7.193574] CPU4: shutdown\n[    7.193578] psci: CPU4 killed (polled 0 ms)\n[    7.193981] cpu5 \n[    7.222732] IRQ 13: no longer affine to CPU5\n[    7.222795] CPU5: shutdown\n[    7.222799] psci: CPU5 killed (polled 0 ms)\n[    7.223130] cpu6 \n[    7.242836] IRQ 13: no longer affine to CPU6\n[    7.242899] CPU6: shutdown\n[    7.242903] psci: CPU6 killed (polled 0 ms)\n[    7.243229] cpu7 \n[    7.264697] IRQ 14: no longer affine to CPU7\n[    7.264748] CPU7: shutdown\n[    7.264752] psci: CPU7 killed (polled 0 ms)\n\n[    7.601229] aw8697_ram_work_routine enter\n[    7.601530] aw8697_haptic 0-005a: Direct firmware load for aw8697_haptic.bin failed with error -2\n[    7.601549] aw8697_haptic 0-005a: Falling back to sysfs fallback for: aw8697_haptic.bin\n[    8.809141] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[   12.307767] Sampling power every 1000 ms\n               Baseline power usage: \n[   33.121513] gcc_ufs_card_gdsc: disabling\n[   33.121555] gcc_usb30_prim_gdsc: disabling\n[   33.121603] camera_wide_vana_ldo: disabling\n[   33.121614] camera_front_vdig_ldo: disabling\n[   33.121625] camera_front_vana_ldo: disabling\n[   33.121636] camera_macro_vana_ldo: disabling\n[   33.121646] display_panel_vddd: disabling\n[   33.121657] display_panel_avdd: disabling\n[   33.121707] pm8008i-chip-en: disabling\n[   69.601416] aw8697_ram_loaded enter\n[   69.601429] aw8697_ram_loaded: failed to read aw8697_haptic.bin\n[   88.411113] Detected VIPT I-cache on CPU1\n[   88.411437] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]\n[   88.413255] ------------[ cut here ]------------\n[   88.413291] WARNING: CPU: 1 PID: 15 at kernel/smp.c:296 smp_call_function_single+0x1ac/0x1c0\n[   88.413312] CPU: 1 PID: 15 Comm: cpuhp/1 Tainted: G S                5.4.61-DynamIQ-R1 #14\n[   88.413320] Hardware name: Venus based on Qualcomm Technologies, Inc SM8350 (DT)\n[   88.413335] pstate: 20c00085 (nzCv daIf +PAN +UAO)\n[   88.413352] pc : smp_call_function_single+0x1ac/0x1c0\n[   88.413371] lr : perf_install_in_context+0x8c/0x1c0\n[   88.413379] sp : ffffffc01024bc00\n[   88.413388] x29: ffffffc01024bc40 x28: 0000000000000000 \n[   88.413406] x27: ffffff800bf4b938 x26: ffffff800bf6c600 \n[   88.413423] x25: 0000000000000000 x24: ffffff81f6f4eb20 \n[   88.413440] x23: ffffff81f6f4eb10 x22: 0000000000000001 \n[   88.413456] x21: 0000000000000000 x20: ffffff800bf6c600 \n[   88.413472] x19: ffffff81d0477000 x18: 0000000006acfc00 \n[   88.413489] x17: 0000000000000001 x16: 00000000000000e4 \n[   88.413505] x15: 0000000000000ccc x14: fffffffffffc0000 \n[   88.413521] x13: 0000000000000004 x12: 0000000000000000 \n[   88.413537] x11: ffffffef69ac9ce8 x10: 0000000000000080 \n[   88.413553] x9 : 0000000000000000 x8 : ffffffc01024bc68 \n[   88.413569] x7 : 0000000000000000 x6 : 000000000000003f \n[   88.413585] x5 : 0000000000000040 x4 : 0000000000000000 \n[   88.413600] x3 : 0000000000000001 x2 : ffffffef675fede0 \n[   88.413616] x1 : ffffffef675fede0 x0 : 0000000000000001 \n[   88.413632] Call trace:\n[   88.413650]  smp_call_function_single+0x1ac/0x1c0\n[   88.413667]  perf_install_in_context+0x8c/0x1c0\n[   88.413683]  perf_event_create_kernel_counter+0x150/0x260\n[   88.413700]  hotplug_notify_up+0x90/0x1f0\n[   88.413718]  cpuhp_invoke_callback+0x1c8/0x730\n[   88.413734]  cpuhp_thread_fun+0x124/0x170\n[   88.413749]  smpboot_thread_fn+0x20c/0x2c0\n[   88.413763]  kthread+0x134/0x1f0\n[   88.413780]  ret_from_fork+0x10/0x24\n[   88.413789] ---[ end trace c1b67b4ea000c305 ]---\n[   89.423184] 1210 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 403 499 595 691 806 902 998 1094 1209 1305 1401 1497 1612 1708 1804\n               \n                300: \n[  305.120731] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120770] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120783] PMIC_GLINK: pmic_glink_serv_loc_cb: PDR service locator for client: (null) service: (efault) is down\n[  305.120953] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120966] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for audio_pdr_adsprpc\n[  305.121021] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121033] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for sensors_pdr_adsprpc\n[  305.121094] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.121111] audio_notifier_reg_service: service SSR_ADSP is in use\n[  305.121145] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  310.247680] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[  313.273371] BATTERY_CHG: handle_notification: notification: 0x80\n[  368.137324]  1112     3.7 C/MHz     67 mW   18.0 J   16.7 I/mJ   269.8 s\n                403: \n[  577.336682]  1496     3.7 C/MHz     63 mW   12.7 J   23.6 I/mJ   200.6 s\n                499: \n[  612.327398] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[  748.143576]  1852     3.7 C/MHz     66 mW   10.7 J   27.9 I/mJ   162.0 s\n                595: \n[  893.059829]  2209     3.7 C/MHz     71 mW    9.6 J   31.1 I/mJ   135.8 s\n                691: \n[  913.398908] BATTERY_CHG: handle_notification: notification: 0x80\n[  914.407348] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 1019.292431]  2565     3.7 C/MHz     76 mW    8.9 J   33.8 I/mJ   117.0 s\n                806: \n[ 1127.938476]  2993     3.7 C/MHz     80 mW    8.0 J   37.3 I/mJ   100.3 s\n                902: \n[ 1216.487589] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 1226.201162]  3348     3.7 C/MHz     84 mW    7.5 J   39.8 I/mJ    89.6 s\n                998: \n[ 1316.198629]  3706     3.7 C/MHz     88 mW    7.1 J   42.0 I/mJ    81.0 s\n               1094: \n[ 1398.948496]  4062     3.7 C/MHz     94 mW    7.0 J   43.0 I/mJ    73.9 s\n               1209: \n[ 1474.453495]  4489     3.7 C/MHz    101 mW    6.7 J   44.5 I/mJ    66.8 s\n               1305: \n[ 1513.541523] BATTERY_CHG: handle_notification: notification: 0x80\n[ 1518.566990] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 1544.773471]  4846     3.7 C/MHz    112 mW    6.9 J   43.4 I/mJ    61.9 s\n               1401: \n[ 1610.957793]  5202     3.7 C/MHz    110 mW    6.4 J   47.2 I/mJ    57.7 s\n               1497: \n[ 1674.033114]  5557     3.7 C/MHz    115 mW    6.2 J   48.2 I/mJ    54.0 s\n               1612: \n[ 1732.968056]  5986     3.7 C/MHz    123 mW    6.2 J   48.8 I/mJ    50.1 s\n               1708: \n[ 1788.797069]  6341     3.7 C/MHz    127 mW    6.0 J   49.9 I/mJ    47.3 s\n               1804: \n[ 1820.647128] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 1842.572767] CPU1: shutdown\n[ 1842.572787] psci: CPU1 killed (polled 0 ms)\n[ 1842.612259] CPU features: detected: Hardware dirty bit management\n[ 1842.612270] Detected PIPT I-cache on CPU4\n[ 1842.612275] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU4: 0x1100000011111112\n[ 1842.612277] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU4: 0x00000000010142\n[ 1842.612279] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU4: 0x00000010010131\n[ 1842.612279] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU4: 0x00000010010000\n[ 1842.612329] CPU4: Booted secondary processor 0x0000000400 [0x411fd410]\n[ 1843.623278]  6699     3.7 C/MHz    147 mW    6.6 J   45.5 I/mJ    44.8 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 710 844 960 1075 1209 1324 1440 1555 1670 1766 1881 1996 2112 2227 2342 2419\n               \n                710: \n[ 1898.498848]  6465     9.1 C/MHz    148 mW    6.9 J   43.7 I/mJ    46.4 s\n                844: \n[ 1946.121218]  7687     9.1 C/MHz    167 mW    6.5 J   46.1 I/mJ    39.0 s\n                960: \n[ 1989.598343]  8733     9.1 C/MHz    193 mW    6.6 J   45.2 I/mJ    34.4 s\n               1075: \n[ 2028.929307]  9785     9.1 C/MHz    215 mW    6.6 J   45.6 I/mJ    30.7 s\n               1209: \n[ 2065.152322] 11004     9.1 C/MHz    243 mW    6.6 J   45.2 I/mJ    27.3 s\n               1324: \n[ 2100.336891] 11503     8.7 C/MHz    265 mW    6.9 J   43.4 I/mJ    26.1 s\n               1440: \n[ 2113.679246] BATTERY_CHG: handle_notification: notification: 0x80\n[ 2122.727679] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 2132.424462] 12937     9.0 C/MHz    297 mW    6.9 J   43.5 I/mJ    23.2 s\n               1555: \n[ 2163.464328] 13625     8.8 C/MHz    336 mW    7.4 J   40.5 I/mJ    22.0 s\n               1670: \n[ 2192.429235] 15196     9.1 C/MHz    380 mW    7.5 J   40.0 I/mJ    19.8 s\n               1766: \n[ 2220.361953] 16068     9.1 C/MHz    413 mW    7.7 J   38.9 I/mJ    18.7 s\n               1881: \n[ 2246.218793] 17118     9.1 C/MHz    499 mW    8.7 J   34.3 I/mJ    17.5 s\n               1996: \n[ 2271.041071] 18172     9.1 C/MHz    537 mW    8.9 J   33.8 I/mJ    16.5 s\n               2112: \n[ 2295.862030] 19209     9.1 C/MHz    630 mW    9.8 J   30.5 I/mJ    15.6 s\n               2227: \n[ 2319.645929] 20274     9.1 C/MHz    729 mW   10.8 J   27.8 I/mJ    14.8 s\n               2342: \n[ 2342.391854] 21301     9.1 C/MHz    817 mW   11.5 J   26.1 I/mJ    14.1 s\n               2419: \n[ 2365.173228] CPU4: shutdown\n[ 2365.173248] psci: CPU4 killed (polled 0 ms)\n[ 2365.203128] Detected PIPT I-cache on CPU7\n[ 2365.203133] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU7: 0x1100000011111112\n[ 2365.203135] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU7: 0x00000000010142\n[ 2365.203137] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU7: 0x00000010010131\n[ 2365.203137] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU7: 0x00000010010000\n[ 2365.203185] CPU7: Booted secondary processor 0x0000000700 [0x411fd440]\n[ 2366.213301] 22007     9.1 C/MHz    908 mW   12.4 J   24.2 I/mJ    13.6 s\n               \n               \n               ===== CPU 7 =====\n               Frequencies: 844 960 1075 1190 1305 1420 1555 1670 1785 1900 2035 2150 2265 2380 2496 2592 2688 2764 2841\n               \n                844: \n[ 2412.803831]  7845     9.3 C/MHz    246 mW    9.4 J   31.9 I/mJ    38.3 s\n                960: \n[ 2424.807781] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 2455.244707]  8910     9.3 C/MHz    276 mW    9.3 J   32.3 I/mJ    33.7 s\n               1075: \n[ 2499.757871]  8337     7.8 C/MHz    262 mW    9.4 J   31.8 I/mJ    36.0 s\n               1190: \n[ 2535.977929] 11147     9.4 C/MHz    325 mW    8.7 J   34.3 I/mJ    26.9 s\n               1305: \n[ 2571.161911] 11523     8.8 C/MHz    342 mW    8.9 J   33.7 I/mJ    26.0 s\n               1420: \n[ 2620.857280]  7418     5.2 C/MHz    259 mW   10.5 J   28.6 I/mJ    40.5 s\n               1555: \n[ 2657.076643] 11146     7.2 C/MHz    365 mW    9.8 J   30.5 I/mJ    26.9 s\n               1670: \n[ 2685.006743] 15516     9.3 C/MHz    480 mW    9.3 J   32.3 I/mJ    19.3 s\n               1785: \n[ 2711.897243] 16123     9.0 C/MHz    521 mW    9.7 J   30.9 I/mJ    18.6 s\n               1900: \n[ 2713.817474] BATTERY_CHG: handle_notification: notification: 0x80\n[ 2726.888274] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 2737.753944] 17649     9.3 C/MHz    584 mW    9.9 J   30.2 I/mJ    17.0 s\n               2035: \n[ 2762.575243] 18908     9.3 C/MHz    663 mW   10.5 J   28.5 I/mJ    15.9 s\n               2150: \n[ 2786.358247] 19971     9.3 C/MHz    769 mW   11.6 J   26.0 I/mJ    15.0 s\n               2265: \n[ 2809.105480] 21041     9.3 C/MHz    878 mW   12.5 J   23.9 I/mJ    14.3 s\n               2380: \n[ 2831.854109] 22095     9.3 C/MHz   1009 mW   13.7 J   21.9 I/mJ    13.6 s\n               2496: \n[ 2853.567561] 23182     9.3 C/MHz   1043 mW   13.5 J   22.2 I/mJ    13.0 s\n               2592: \n[ 2875.275159] 24062     9.3 C/MHz   1219 mW   15.2 J   19.7 I/mJ    12.5 s\n               2688: \n[ 2895.946502] 24963     9.3 C/MHz   1365 mW   16.4 J   18.3 I/mJ    12.0 s\n               2764: \n[ 2916.618090] 25659     9.3 C/MHz   1561 mW   18.3 J   16.4 I/mJ    11.7 s\n               2841: \n[ 2937.322981] CPU7: shutdown\n[ 2937.323001] psci: CPU7 killed (polled 0 ms)\n[ 2937.345458] 26390     9.3 C/MHz   1636 mW   18.6 J   16.1 I/mJ    11.4 s\n               \n               \n               Benchmark finished!\n[ 2937.363329] \n               real\t48m51.065s\n               user\t39m57.407s\n               sys\t0m1.862s\n"
  },
  {
    "path": "results/sm8350/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  3:     301762     GICv3  27 Level     arch_timer\n  5:          0     GICv3  38 Level     arch_mem_timer\n  7:          0     GICv3 195 Level     ngd_slim_irq\n  9:         19     GICv3  23 Level     arm-pmu\n 11:      10715     GICv3 261 Level     ipcc_0\n 12:          0     GICv3  62 Level     dcvsh-irq-0\n 13:          0     GICv3  63 Level     dcvsh-irq-4\n 14:          0     GICv3  51 Level     dcvsh-irq-7\n 17:        455     GICv3  37 Level     apps_rsc\n 18:        311     GICv3 297 Level     ufshcd\n 21:          0     GICv3 161 Level     disp_rsc\n 23:          1     GICv3 613 Level     90b6400.qcom,cpu-cpu-llcc-bwmon\n 24:          1     GICv3 113 Level     9091000.qcom,cpu-llcc-ddr-bwmon\n 25:          0     GICv3 258 Level     90b9100.qcom,snoop-l3-bwmon\n 26:          0       PDC  26 Level     tsens-upper-lower\n 27:          0       PDC  28 Level     tsens-critical\n 29:          0       PDC  27 Level     tsens-upper-lower\n 30:          0       PDC  29 Level     tsens-critical\n 32:          0     GICv3 296 Edge      modem\n 33:          0       PDC   6 Edge      adsp\n 34:          0     GICv3 610 Edge      cdsp\n 37:          0       PDC   9 Edge      slpi\n 38:          0     GICv3 384 Level     spss\n 39:          0       PDC  11 Level     eud_irq\n 40:          0     GICv3 304 Level     sps\n 41:          0     GICv3 704 Level     arm-smmu global fault\n 42:          0     GICv3 705 Level     arm-smmu global fault\n 43:          0     GICv3 710 Level     arm-smmu-context-fault\n 44:          0     GICv3 711 Level     arm-smmu-context-fault\n 45:          0     GICv3 712 Level     arm-smmu-context-fault\n 46:          0     GICv3 713 Level     arm-smmu-context-fault\n 53:          0     GICv3  96 Level     arm-smmu global fault\n 54:          0     GICv3  97 Level     arm-smmu global fault\n 55:          0     GICv3 129 Level     arm-smmu-context-fault\n 59:          0     GICv3 133 Level     arm-smmu-context-fault\n 60:          0     GICv3 134 Level     arm-smmu-context-fault\n 61:          0     GICv3 135 Level     arm-smmu-context-fault\n 62:          0     GICv3 136 Level     arm-smmu-context-fault\n 63:          0     GICv3 137 Level     arm-smmu-context-fault\n 64:          0     GICv3 138 Level     arm-smmu-context-fault\n 65:          0     GICv3 139 Level     arm-smmu-context-fault\n 66:          0     GICv3 140 Level     arm-smmu-context-fault\n 67:          0     GICv3 141 Level     arm-smmu-context-fault\n 68:          0     GICv3 142 Level     arm-smmu-context-fault\n 69:          0     GICv3 143 Level     arm-smmu-context-fault\n 70:          0     GICv3 144 Level     arm-smmu-context-fault\n 71:          0     GICv3 145 Level     arm-smmu-context-fault\n 72:          0     GICv3 146 Level     arm-smmu-context-fault\n 73:          0     GICv3 147 Level     arm-smmu-context-fault\n 74:          0     GICv3 148 Level     arm-smmu-context-fault\n 75:          0     GICv3 149 Level     arm-smmu-context-fault\n 76:          0     GICv3 150 Level     arm-smmu-context-fault\n 77:          0     GICv3 213 Level     arm-smmu-context-fault\n 78:          0     GICv3 214 Level     arm-smmu-context-fault\n 79:          0     GICv3 215 Level     arm-smmu-context-fault\n 80:          0     GICv3 216 Level     arm-smmu-context-fault\n 81:          0     GICv3 217 Level     arm-smmu-context-fault\n 82:          0     GICv3 218 Level     arm-smmu-context-fault\n 83:          0     GICv3 219 Level     arm-smmu-context-fault\n 84:          0     GICv3 220 Level     arm-smmu-context-fault\n 85:          0     GICv3 221 Level     arm-smmu-context-fault\n 86:          0     GICv3 222 Level     arm-smmu-context-fault\n 87:          0     GICv3 223 Level     arm-smmu-context-fault\n 88:          0     GICv3 224 Level     arm-smmu-context-fault\n 89:          0     GICv3 347 Level     arm-smmu-context-fault\n 90:          0     GICv3 348 Level     arm-smmu-context-fault\n 91:          0     GICv3 349 Level     arm-smmu-context-fault\n 92:          0     GICv3 350 Level     arm-smmu-context-fault\n 93:          0     GICv3 351 Level     arm-smmu-context-fault\n 94:          0     GICv3 352 Level     arm-smmu-context-fault\n 95:          0     GICv3 353 Level     arm-smmu-context-fault\n 96:          0     GICv3 354 Level     arm-smmu-context-fault\n 97:          0     GICv3 355 Level     arm-smmu-context-fault\n 98:          0     GICv3 356 Level     arm-smmu-context-fault\n 99:          0     GICv3 357 Level     arm-smmu-context-fault\n100:          0     GICv3 358 Level     arm-smmu-context-fault\n101:          0     GICv3 359 Level     arm-smmu-context-fault\n102:          0     GICv3 360 Level     arm-smmu-context-fault\n103:          0     GICv3 361 Level     arm-smmu-context-fault\n104:          0     GICv3 362 Level     arm-smmu-context-fault\n105:          0     GICv3 363 Level     arm-smmu-context-fault\n106:          0     GICv3 364 Level     arm-smmu-context-fault\n107:          0     GICv3 365 Level     arm-smmu-context-fault\n108:          0     GICv3 366 Level     arm-smmu-context-fault\n109:          0     GICv3 367 Level     arm-smmu-context-fault\n110:          0     GICv3 368 Level     arm-smmu-context-fault\n151:          0       PDC  14 Edge      dp_hs_phy_irq\n152:          0     GICv3 162 Level     pwr_event_irq\n153:          0       PDC  17 Level     ss_phy_irq\n154:          0       PDC  15 Edge      dm_hs_phy_irq\n169:          0     GICv3 634 Level     spi_geni\n170:        429     GICv3 639 Level     i2c_geni\n183:        112     GICv3 388 Level     spi_geni\n184:       1385     GICv3 385 Level     i2c_geni\n185:        248     GICv3 390 Level     i2c_geni\n198:          0     GICv3 618 Level     msm_serial_geni0\n199:          4     GICv3 615 Level     i2c_geni\n200:          0     GICv3 206 Level     msm_vidc\n201:          0     GICv3 266 Level     msm_cvp\n202:          0     GICv3 172 Edge      int_global_int\n271:          0     GICv3 332 Level     kgsl_3d0_irq\n272:          0     GICv3 336 Level     kgsl_hfi_irq\n273:          0     GICv3 337 Level     kgsl_gmu_irq\n274:          0     GICv3 115 Level     msm_drm\n277:          0     GICv3 509 Edge      csiphy0\n278:          0     GICv3 510 Edge      csiphy1\n279:          0     GICv3 511 Edge      csiphy2\n280:          0     GICv3 480 Edge      csiphy3\n281:          0     GICv3 154 Edge      csiphy4\n282:          0     GICv3 121 Edge      csiphy5\n283:          0     GICv3 492 Edge      cci\n284:          0     GICv3 303 Edge      cci\n285:          0     GICv3 491 Edge      cpas_camnoc\n286:          2     GICv3 493 Edge      cpas-cdm\n287:          2     GICv3 488 Edge      ife-cdm0\n288:          2     GICv3 319 Edge      ife-cdm1\n289:          2     GICv3 674 Edge      ife-cdm2\n290:          0     GICv3 496 Edge      csid\n291:          2     GICv3 497 Edge      ife\n292:          0     GICv3 498 Edge      csid\n293:          2     GICv3 499 Edge      ife\n294:          0     GICv3 672 Edge      csid\n295:          2     GICv3 673 Edge      ife\n296:          0     GICv3 500 Edge      csid-lite\n297:          2     GICv3 501 Edge      ife-lite\n298:          0     GICv3 391 Edge      csid-lite\n299:          2     GICv3 392 Edge      ife-lite\n300:          0     GICv3 495 Edge      a5\n301:          0     GICv3 506 Edge      jpeg\n302:          0     GICv3 507 Edge      jpegdma\n303:          0     GICv3  32 Edge      apps_wdog_bark\n304:          0     GICv3 960 Edge      hh_msgq_tx_0\n305:          0     GICv3 961 Edge      hh_msgq_rx_0\n306:        151      ipcc   0 Edge      qcom,qmp-aop\n307:          0  pmic_arb 20381778 Edge      pon_kpdpwr_status\n308:          0  pmic_arb 20316242 Edge      pon_resin_status\n309:          0  pmic_arb 19923026 Edge      pon_kpdpwr_bark\n310:          0  pmic_arb 20054098 Edge      pon_kpdpwr_resin_bark\n311:          0  pmic_arb 51380307 Edge      pm-adc5\n313:          0  pmic_arb 102826069 Edge      pm8xxx_rtc_alarm\n319:          0  pmic_arb 786432130 Edge      flash_fault\n320:          0  pmic_arb 786628738 Edge      flash_all_ramp_down\n321:          0  pmic_arb 786694274 Edge      flash_all_ramp_up\n331:          2      ipcc 196610 Edge      smp2p\n332:          0      ipcc 262146 Edge      smp2p\n333:          0      ipcc 393218 Edge      smp2p\n334:          0      ipcc 131074 Edge      smp2p\n335:          1      ipcc 1048577 Edge      qsee_ipc_irq_spss\n336:          0     smp2p   0 Edge      smp2p_sleepstate\n340:          0  spmi-gpio   8 Edge      soc:extcon_usb1\n341:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n342:          0     GICv3 165 Level     dwc3\n344:          0   msmgpio 119 Edge      aw8697\n345:          0   msmgpio  44 Level     cs35l41\n346:          0   msmgpio 116 Level     cs35l41\n348:          0   msmgpio  87 Level     sn-nci\n349:          1   msmgpio  96 Edge      msm_pcie_wake\n350:          0     smp2p   0 Edge      cdsp\n351:          0     smp2p   1 Edge      error_ready_interrupt\n352:          0     smp2p   3 Edge      cdsp\n353:          0     smp2p   2 Edge      cdsp\n354:          0     smp2p   0 Edge      adsp\n355:          0     smp2p   1 Edge      error_ready_interrupt\n356:          0     smp2p   3 Edge      adsp\n357:          0     smp2p   2 Edge      adsp\n358:          0     smp2p   0 Edge      slpi\n359:          0     smp2p   1 Edge      error_ready_interrupt\n360:          0     smp2p   3 Edge      slpi\n361:          0     smp2p   2 Edge      slpi\n362:          0     smp2p   0 Edge      modem\n363:          0     smp2p   1 Edge      error_ready_interrupt\n364:          0     smp2p   3 Edge      modem\n365:          0     smp2p   7 Edge      modem\n366:          0     smp2p   2 Edge      modem\n367:          0   msmgpio  75 Edge      esd_err_irq\n368:          0   msmgpio  82 Edge      TE_GPIO\n369:          0       sde   4 Edge      dsi_ctrl\n370:          0  spmi-gpio   5 Edge      volume_up\n371:          3   msmgpio  23 Level     fts\n404:      10608      ipcc 196608 Edge      glink-native\nIPI0:      1792       Rescheduling interrupts\nIPI1:        81       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:    183117       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8350/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  3:        791         18         12         17          1          1          1          1     GICv3  27 Level     arch_timer\n  5:          0          0          0          0          0          0          0          0     GICv3  38 Level     arch_mem_timer\n  7:          0          0          0          0          0          0          0          0     GICv3 195 Level     ngd_slim_irq\n  9:          0          0          0          0          0          0          0          0     GICv3  23 Level     arm-pmu\n 11:        433          0          0          0          0          0          0          0     GICv3 261 Level     ipcc_0\n 12:          0          0          0          0          0          0          0          0     GICv3  62 Level     dcvsh-irq-0\n 13:          0          0          0          0          0          0          0          0     GICv3  63 Level     dcvsh-irq-4\n 14:          0          0          0          0          0          0          0          0     GICv3  51 Level     dcvsh-irq-7\n 17:        338          0          0          0          0          0          0          0     GICv3  37 Level     apps_rsc\n 18:        311          0          0          0          0          0          0          0     GICv3 297 Level     ufshcd\n 21:          0          0          0          0          0          0          0          0     GICv3 161 Level     disp_rsc\n 23:          1          0          0          0          0          0          0          0     GICv3 613 Level     90b6400.qcom,cpu-cpu-llcc-bwmon\n 24:          1          0          0          0          0          0          0          0     GICv3 113 Level     9091000.qcom,cpu-llcc-ddr-bwmon\n 25:          0          0          0          0          0          0          0          0     GICv3 258 Level     90b9100.qcom,snoop-l3-bwmon\n 26:          0          0          0          0          0          0          0          0       PDC  26 Level     tsens-upper-lower\n 27:          0          0          0          0          0          0          0          0       PDC  28 Level     tsens-critical\n 29:          0          0          0          0          0          0          0          0       PDC  27 Level     tsens-upper-lower\n 30:          0          0          0          0          0          0          0          0       PDC  29 Level     tsens-critical\n 32:          0          0          0          0          0          0          0          0     GICv3 296 Edge      modem\n 33:          0          0          0          0          0          0          0          0       PDC   6 Edge      adsp\n 34:          0          0          0          0          0          0          0          0     GICv3 610 Edge      cdsp\n 37:          0          0          0          0          0          0          0          0       PDC   9 Edge      slpi\n 38:          0          0          0          0          0          0          0          0     GICv3 384 Level     spss\n 39:          0          0          0          0          0          0          0          0       PDC  11 Level     eud_irq\n 40:          0          0          0          0          0          0          0          0     GICv3 304 Level     sps\n 41:          0          0          0          0          0          0          0          0     GICv3 704 Level     arm-smmu global fault\n 42:          0          0          0          0          0          0          0          0     GICv3 705 Level     arm-smmu global fault\n 43:          0          0          0          0          0          0          0          0     GICv3 710 Level     arm-smmu-context-fault\n 44:          0          0          0          0          0          0          0          0     GICv3 711 Level     arm-smmu-context-fault\n 45:          0          0          0          0          0          0          0          0     GICv3 712 Level     arm-smmu-context-fault\n 46:          0          0          0          0          0          0          0          0     GICv3 713 Level     arm-smmu-context-fault\n 53:          0          0          0          0          0          0          0          0     GICv3  96 Level     arm-smmu global fault\n 54:          0          0          0          0          0          0          0          0     GICv3  97 Level     arm-smmu global fault\n 55:          0          0          0          0          0          0          0          0     GICv3 129 Level     arm-smmu-context-fault\n 59:          0          0          0          0          0          0          0          0     GICv3 133 Level     arm-smmu-context-fault\n 60:          0          0          0          0          0          0          0          0     GICv3 134 Level     arm-smmu-context-fault\n 61:          0          0          0          0          0          0          0          0     GICv3 135 Level     arm-smmu-context-fault\n 62:          0          0          0          0          0          0          0          0     GICv3 136 Level     arm-smmu-context-fault\n 63:          0          0          0          0          0          0          0          0     GICv3 137 Level     arm-smmu-context-fault\n 64:          0          0          0          0          0          0          0          0     GICv3 138 Level     arm-smmu-context-fault\n 65:          0          0          0          0          0          0          0          0     GICv3 139 Level     arm-smmu-context-fault\n 66:          0          0          0          0          0          0          0          0     GICv3 140 Level     arm-smmu-context-fault\n 67:          0          0          0          0          0          0          0          0     GICv3 141 Level     arm-smmu-context-fault\n 68:          0          0          0          0          0          0          0          0     GICv3 142 Level     arm-smmu-context-fault\n 69:          0          0          0          0          0          0          0          0     GICv3 143 Level     arm-smmu-context-fault\n 70:          0          0          0          0          0          0          0          0     GICv3 144 Level     arm-smmu-context-fault\n 71:          0          0          0          0          0          0          0          0     GICv3 145 Level     arm-smmu-context-fault\n 72:          0          0          0          0          0          0          0          0     GICv3 146 Level     arm-smmu-context-fault\n 73:          0          0          0          0          0          0          0          0     GICv3 147 Level     arm-smmu-context-fault\n 74:          0          0          0          0          0          0          0          0     GICv3 148 Level     arm-smmu-context-fault\n 75:          0          0          0          0          0          0          0          0     GICv3 149 Level     arm-smmu-context-fault\n 76:          0          0          0          0          0          0          0          0     GICv3 150 Level     arm-smmu-context-fault\n 77:          0          0          0          0          0          0          0          0     GICv3 213 Level     arm-smmu-context-fault\n 78:          0          0          0          0          0          0          0          0     GICv3 214 Level     arm-smmu-context-fault\n 79:          0          0          0          0          0          0          0          0     GICv3 215 Level     arm-smmu-context-fault\n 80:          0          0          0          0          0          0          0          0     GICv3 216 Level     arm-smmu-context-fault\n 81:          0          0          0          0          0          0          0          0     GICv3 217 Level     arm-smmu-context-fault\n 82:          0          0          0          0          0          0          0          0     GICv3 218 Level     arm-smmu-context-fault\n 83:          0          0          0          0          0          0          0          0     GICv3 219 Level     arm-smmu-context-fault\n 84:          0          0          0          0          0          0          0          0     GICv3 220 Level     arm-smmu-context-fault\n 85:          0          0          0          0          0          0          0          0     GICv3 221 Level     arm-smmu-context-fault\n 86:          0          0          0          0          0          0          0          0     GICv3 222 Level     arm-smmu-context-fault\n 87:          0          0          0          0          0          0          0          0     GICv3 223 Level     arm-smmu-context-fault\n 88:          0          0          0          0          0          0          0          0     GICv3 224 Level     arm-smmu-context-fault\n 89:          0          0          0          0          0          0          0          0     GICv3 347 Level     arm-smmu-context-fault\n 90:          0          0          0          0          0          0          0          0     GICv3 348 Level     arm-smmu-context-fault\n 91:          0          0          0          0          0          0          0          0     GICv3 349 Level     arm-smmu-context-fault\n 92:          0          0          0          0          0          0          0          0     GICv3 350 Level     arm-smmu-context-fault\n 93:          0          0          0          0          0          0          0          0     GICv3 351 Level     arm-smmu-context-fault\n 94:          0          0          0          0          0          0          0          0     GICv3 352 Level     arm-smmu-context-fault\n 95:          0          0          0          0          0          0          0          0     GICv3 353 Level     arm-smmu-context-fault\n 96:          0          0          0          0          0          0          0          0     GICv3 354 Level     arm-smmu-context-fault\n 97:          0          0          0          0          0          0          0          0     GICv3 355 Level     arm-smmu-context-fault\n 98:          0          0          0          0          0          0          0          0     GICv3 356 Level     arm-smmu-context-fault\n 99:          0          0          0          0          0          0          0          0     GICv3 357 Level     arm-smmu-context-fault\n100:          0          0          0          0          0          0          0          0     GICv3 358 Level     arm-smmu-context-fault\n101:          0          0          0          0          0          0          0          0     GICv3 359 Level     arm-smmu-context-fault\n102:          0          0          0          0          0          0          0          0     GICv3 360 Level     arm-smmu-context-fault\n103:          0          0          0          0          0          0          0          0     GICv3 361 Level     arm-smmu-context-fault\n104:          0          0          0          0          0          0          0          0     GICv3 362 Level     arm-smmu-context-fault\n105:          0          0          0          0          0          0          0          0     GICv3 363 Level     arm-smmu-context-fault\n106:          0          0          0          0          0          0          0          0     GICv3 364 Level     arm-smmu-context-fault\n107:          0          0          0          0          0          0          0          0     GICv3 365 Level     arm-smmu-context-fault\n108:          0          0          0          0          0          0          0          0     GICv3 366 Level     arm-smmu-context-fault\n109:          0          0          0          0          0          0          0          0     GICv3 367 Level     arm-smmu-context-fault\n110:          0          0          0          0          0          0          0          0     GICv3 368 Level     arm-smmu-context-fault\n151:          0          0          0          0          0          0          0          0       PDC  14 Edge      dp_hs_phy_irq\n152:          0          0          0          0          0          0          0          0     GICv3 162 Level     pwr_event_irq\n153:          0          0          0          0          0          0          0          0       PDC  17 Level     ss_phy_irq\n154:          0          0          0          0          0          0          0          0       PDC  15 Edge      dm_hs_phy_irq\n169:          0          0          0          0          0          0          0          0     GICv3 634 Level     spi_geni\n170:        429          0          0          0          0          0          0          0     GICv3 639 Level     i2c_geni\n183:        112          0          0          0          0          0          0          0     GICv3 388 Level     spi_geni\n184:       1385          0          0          0          0          0          0          0     GICv3 385 Level     i2c_geni\n185:        222          0          0          0          0          0          0          0     GICv3 390 Level     i2c_geni\n198:          0          0          0          0          0          0          0          0     GICv3 618 Level     msm_serial_geni0\n199:          4          0          0          0          0          0          0          0     GICv3 615 Level     i2c_geni\n200:          0          0          0          0          0          0          0          0     GICv3 206 Level     msm_vidc\n201:          0          0          0          0          0          0          0          0     GICv3 266 Level     msm_cvp\n202:          0          0          0          0          0          0          0          0     GICv3 172 Edge      int_global_int\n271:          0          0          0          0          0          0          0          0     GICv3 332 Level     kgsl_3d0_irq\n272:          0          0          0          0          0          0          0          0     GICv3 336 Level     kgsl_hfi_irq\n273:          0          0          0          0          0          0          0          0     GICv3 337 Level     kgsl_gmu_irq\n274:          0          0          0          0          0          0          0          0     GICv3 115 Level     msm_drm\n277:          0          0          0          0          0          0          0          0     GICv3 509 Edge      csiphy0\n278:          0          0          0          0          0          0          0          0     GICv3 510 Edge      csiphy1\n279:          0          0          0          0          0          0          0          0     GICv3 511 Edge      csiphy2\n280:          0          0          0          0          0          0          0          0     GICv3 480 Edge      csiphy3\n281:          0          0          0          0          0          0          0          0     GICv3 154 Edge      csiphy4\n282:          0          0          0          0          0          0          0          0     GICv3 121 Edge      csiphy5\n283:          0          0          0          0          0          0          0          0     GICv3 492 Edge      cci\n284:          0          0          0          0          0          0          0          0     GICv3 303 Edge      cci\n285:          0          0          0          0          0          0          0          0     GICv3 491 Edge      cpas_camnoc\n286:          2          0          0          0          0          0          0          0     GICv3 493 Edge      cpas-cdm\n287:          2          0          0          0          0          0          0          0     GICv3 488 Edge      ife-cdm0\n288:          2          0          0          0          0          0          0          0     GICv3 319 Edge      ife-cdm1\n289:          2          0          0          0          0          0          0          0     GICv3 674 Edge      ife-cdm2\n290:          0          0          0          0          0          0          0          0     GICv3 496 Edge      csid\n291:          2          0          0          0          0          0          0          0     GICv3 497 Edge      ife\n292:          0          0          0          0          0          0          0          0     GICv3 498 Edge      csid\n293:          2          0          0          0          0          0          0          0     GICv3 499 Edge      ife\n294:          0          0          0          0          0          0          0          0     GICv3 672 Edge      csid\n295:          2          0          0          0          0          0          0          0     GICv3 673 Edge      ife\n296:          0          0          0          0          0          0          0          0     GICv3 500 Edge      csid-lite\n297:          2          0          0          0          0          0          0          0     GICv3 501 Edge      ife-lite\n298:          0          0          0          0          0          0          0          0     GICv3 391 Edge      csid-lite\n299:          2          0          0          0          0          0          0          0     GICv3 392 Edge      ife-lite\n300:          0          0          0          0          0          0          0          0     GICv3 495 Edge      a5\n301:          0          0          0          0          0          0          0          0     GICv3 506 Edge      jpeg\n302:          0          0          0          0          0          0          0          0     GICv3 507 Edge      jpegdma\n303:          0          0          0          0          0          0          0          0     GICv3  32 Edge      apps_wdog_bark\n304:          0          0          0          0          0          0          0          0     GICv3 960 Edge      hh_msgq_tx_0\n305:          0          0          0          0          0          0          0          0     GICv3 961 Edge      hh_msgq_rx_0\n306:        151          0          0          0          0          0          0          0      ipcc   0 Edge      qcom,qmp-aop\n307:          0          0          0          0          0          0          0          0  pmic_arb 20381778 Edge      pon_kpdpwr_status\n308:          0          0          0          0          0          0          0          0  pmic_arb 20316242 Edge      pon_resin_status\n309:          0          0          0          0          0          0          0          0  pmic_arb 19923026 Edge      pon_kpdpwr_bark\n310:          0          0          0          0          0          0          0          0  pmic_arb 20054098 Edge      pon_kpdpwr_resin_bark\n311:          0          0          0          0          0          0          0          0  pmic_arb 51380307 Edge      pm-adc5\n313:          0          0          0          0          0          0          0          0  pmic_arb 102826069 Edge      pm8xxx_rtc_alarm\n319:          0          0          0          0          0          0          0          0  pmic_arb 786432130 Edge      flash_fault\n320:          0          0          0          0          0          0          0          0  pmic_arb 786628738 Edge      flash_all_ramp_down\n321:          0          0          0          0          0          0          0          0  pmic_arb 786694274 Edge      flash_all_ramp_up\n331:          2          0          0          0          0          0          0          0      ipcc 196610 Edge      smp2p\n332:          0          0          0          0          0          0          0          0      ipcc 262146 Edge      smp2p\n333:          0          0          0          0          0          0          0          0      ipcc 393218 Edge      smp2p\n334:          0          0          0          0          0          0          0          0      ipcc 131074 Edge      smp2p\n335:          1          0          0          0          0          0          0          0      ipcc 1048577 Edge      qsee_ipc_irq_spss\n336:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n340:          0          0          0          0          0          0          0          0  spmi-gpio   8 Edge      soc:extcon_usb1\n341:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n342:          0          0          0          0          0          0          0          0     GICv3 165 Level     dwc3\n344:          0          0          0          0          0          0          0          0   msmgpio 119 Edge      aw8697\n345:          0          0          0          0          0          0          0          0   msmgpio  44 Level     cs35l41\n346:          0          0          0          0          0          0          0          0   msmgpio 116 Level     cs35l41\n348:          0          0          0          0          0          0          0          0   msmgpio  87 Level     sn-nci\n349:          1          0          0          0          0          0          0          0   msmgpio  96 Edge      msm_pcie_wake\n350:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n351:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n352:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n353:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n354:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n355:          0          0          0          1          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n356:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n357:          0          0          0          1          0          0          0          0     smp2p   2 Edge      adsp\n358:          0          0          0          0          0          0          0          0     smp2p   0 Edge      slpi\n359:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n360:          0          0          0          0          0          0          0          0     smp2p   3 Edge      slpi\n361:          0          0          0          0          0          0          0          0     smp2p   2 Edge      slpi\n362:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n363:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n364:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n365:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n366:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n367:          0          0          0          0          0          0          0          0   msmgpio  75 Edge      esd_err_irq\n368:          0          0          0          0          0          0          0          0   msmgpio  82 Edge      TE_GPIO\n369:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n370:          0          0          0          0          0          0          0          0  spmi-gpio   5 Edge      volume_up\n371:          3          0          0          0          0          0          0          0   msmgpio  23 Level     fts\n404:        322          0          0          0          0          0          0          0      ipcc 196608 Edge      glink-native\nIPI0:       853        586        548        686         34         33         33         32       Rescheduling interrupts\nIPI1:        26         42         27         42          8          8          8          8       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:       390        131        148        109          5          5          6          5       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8350/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:02 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    6 root      0:00 [kworker/0:0H-kb]\n    8 root      0:00 [mm_percpu_wq]\n    9 root      0:00 [ksoftirqd/0]\n   10 root      0:00 [rcu_preempt]\n   11 root      0:00 [rcuog/0]\n   12 root      0:00 [rcuop/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [cpuhp/0]\n   15 root      0:00 [cpuhp/1]\n   16 root      0:00 [migration/1]\n   17 root      0:00 [ksoftirqd/1]\n   18 root      0:00 [kworker/1:0-mm_]\n   19 root      0:00 [kworker/1:0H-kb]\n   20 root      0:00 [rcuop/1]\n   21 root      0:00 [cpuhp/2]\n   22 root      0:00 [migration/2]\n   23 root      0:00 [ksoftirqd/2]\n   25 root      0:00 [kworker/2:0H-kb]\n   26 root      0:00 [rcuop/2]\n   27 root      0:00 [cpuhp/3]\n   28 root      0:00 [migration/3]\n   29 root      0:00 [ksoftirqd/3]\n   30 root      0:00 [kworker/3:0-mm_]\n   31 root      0:00 [kworker/3:0H-kb]\n   32 root      0:00 [rcuop/3]\n   34 root      0:00 [cpuhp/4]\n   35 root      0:00 [migration/4]\n   36 root      0:00 [ksoftirqd/4]\n   37 root      0:00 [kworker/4:0-mm_]\n   38 root      0:00 [kworker/4:0H]\n   39 root      0:00 [rcuog/4]\n   40 root      0:00 [rcuop/4]\n   41 root      0:00 [cpuhp/5]\n   42 root      0:00 [migration/5]\n   43 root      0:00 [ksoftirqd/5]\n   44 root      0:00 [kworker/5:0-mm_]\n   45 root      0:00 [kworker/5:0H]\n   46 root      0:00 [rcuop/5]\n   47 root      0:00 [cpuhp/6]\n   48 root      0:00 [migration/6]\n   49 root      0:00 [ksoftirqd/6]\n   50 root      0:00 [kworker/6:0-mm_]\n   51 root      0:00 [kworker/6:0H]\n   52 root      0:00 [rcuop/6]\n   53 root      0:00 [cpuhp/7]\n   54 root      0:00 [migration/7]\n   55 root      0:00 [ksoftirqd/7]\n   56 root      0:00 [kworker/7:0-mm_]\n   57 root      0:00 [kworker/7:0H]\n   58 root      0:00 [rcuop/7]\n   59 root      0:00 [kdevtmpfs]\n   60 root      0:00 [netns]\n   61 root      0:00 [rcu_tasks_kthre]\n   62 root      0:00 [kauditd]\n   65 root      0:00 [qmp_aop]\n   66 root      0:00 [hh-watchdog]\n   67 root      0:00 [oom_reaper]\n   68 root      0:00 [writeback]\n   69 root      0:00 [kcompactd0]\n   82 root      0:00 [cryptd]\n  114 root      0:00 [kblockd]\n  115 root      0:00 [blk_crypto_wq]\n  116 root      0:00 [blkcg_punt_bio]\n  117 root      0:00 [irq/41-arm-smmu]\n  118 root      0:00 [irq/42-arm-smmu]\n  119 root      0:00 [governor_msm_ad]\n  120 root      0:00 [longpress]\n  121 root      0:00 [irq/26-tsens-up]\n  122 root      0:00 [irq/27-tsens-cr]\n  123 root      0:00 [irq/29-tsens-up]\n  124 root      0:00 [irq/30-tsens-cr]\n  125 root      0:00 [irq/12-dcvsh-ir]\n  126 root      0:00 [irq/13-dcvsh-ir]\n  127 root      0:00 [irq/14-dcvsh-ir]\n  129 root      0:00 [devfreq_wq]\n  130 root      0:00 [ipa_usb_wq]\n  131 root      0:00 [watchdogd]\n  132 root      0:00 [ion-pool-uncach]\n  133 root      0:00 [ion-pool-cached]\n  134 root      0:00 [system]\n  135 root      0:00 [cfg80211]\n  160 root      0:00 [kworker/1:1-eve]\n  161 root      0:00 [kworker/2:1-eve]\n  162 root      0:00 [kworker/4:1-eve]\n  163 root      0:00 [kworker/5:1-eve]\n  164 root      0:00 [kworker/3:1-eve]\n  165 root      0:00 [kworker/6:1-eve]\n  166 root      0:00 [kworker/7:1-eve]\n  167 root      0:00 [kswapd0:0]\n  169 root      0:00 [irq/331-smp2p]\n  170 root      0:00 [irq/332-smp2p]\n  171 root      0:00 [irq/333-smp2p]\n  172 root      0:00 [irq/334-smp2p]\n  174 root      0:00 [pmic_glink_rx]\n  175 root      0:00 [pmic_glink_rx]\n  176 root      0:00 [cdsprm-wq]\n  177 root      0:00 [cdsprm-wq-delay]\n  178 root      0:00 [hyp_core_ctl]\n  182 root      0:00 [kgsl-workqueue]\n  183 root      0:00 [kgsl-mementry]\n  184 root      0:00 [kgsl_worker_thr]\n  185 root      0:00 [qseecom-unreg-l]\n  186 root      0:00 [qseecom-unload-]\n  187 root      0:00 [uas]\n  188 root      0:00 [k_ipa_usb]\n  189 root      0:00 [dm_bufio_cache]\n  190 root      0:00 [irq/321-flash_a]\n  191 root      0:00 [irq/320-flash_a]\n  192 root      0:00 [irq/319-flash_f]\n  193 root      0:00 [qcrypto_seq_res]\n  194 root      0:00 [ion_system_heap]\n  195 root      0:00 [hh_rm_recv_task]\n  196 root      0:00 [memlat_wq]\n  197 root      0:00 [irq/340-soc:ext]\n  198 root      0:00 [dsi_dma_cmd_wor]\n  199 root      0:00 [apr_driver]\n  201 root      0:00 [ipv6_addrconf]\n  202 root      0:00 [krfcommd]\n  203 root      0:00 [soc:qcom,svm_ne]\n  204 root      0:00 [rq_stats]\n  205 root      0:00 [msm_perf:events]\n  206 root      0:00 [khvcd]\n  207 root      0:00 [dsi_dma_cmd_wor]\n  209 root      0:00 [ipa_power_mgmt]\n  210 root      0:00 [transport_power]\n  211 root      0:00 [ipa_pm_activate]\n  212 root      0:00 [rmnet_ctlwq]\n  213 root      0:00 [hwrng]\n  215 root      0:00 [irq/53-arm-smmu]\n  216 root      0:00 [irq/54-arm-smmu]\n  217 root      0:00 [irq/60-arm-smmu]\n  218 root      0:00 [k_sm_usb]\n  219 root      0:00 [irq/152-pwr_eve]\n  220 root      0:00 [irq/151-dp_hs_p]\n  221 root      0:00 [irq/154-dm_hs_p]\n  222 root      0:00 [irq/153-ss_phy_]\n  223 root      0:00 [usb_bam_wq]\n  224 root      0:00 [msm_vidc_worker]\n  225 root      0:00 [pm_workerq_venu]\n  226 root      0:00 [vidc_core_workq]\n  227 root      0:00 [irq/62-arm-smmu]\n  228 root      0:00 [irq/63-arm-smmu]\n  229 root      0:00 [irq/64-arm-smmu]\n  230 root      0:00 [irq/65-arm-smmu]\n  231 root      0:00 [irq/66-arm-smmu]\n  232 root      0:00 [irq/43-arm-smmu]\n  233 root      0:00 [irq/44-arm-smmu]\n  234 root      0:00 [irq/45-arm-smmu]\n  235 root      0:00 [irq/46-arm-smmu]\n  236 root      0:00 [kgsl-events]\n  237 root      0:00 [kgsl_devfreq_wq]\n  238 root      0:00 [msm_cvp_workerq]\n  239 root      0:00 [pm_workerq_iris]\n  240 root      0:00 [irq/67-arm-smmu]\n  241 root      0:00 [irq/68-arm-smmu]\n  242 root      0:00 [irq/69-arm-smmu]\n  243 root      0:00 [cvp-dsp-thread]\n  244 root      0:00 [irq/70-arm-smmu]\n  245 root      0:00 [irq/71-arm-smmu]\n  246 root      0:00 [irq/72-arm-smmu]\n  247 root      0:00 [mem_buf_rcvr]\n  248 root      0:00 [irq/73-arm-smmu]\n  249 root      0:00 [irq/74-arm-smmu]\n  250 root      0:00 [irq/75-arm-smmu]\n  251 root      0:00 [irq/76-arm-smmu]\n  252 root      0:00 [irq/77-arm-smmu]\n  253 root      0:00 [irq/78-arm-smmu]\n  254 root      0:00 [irq/79-arm-smmu]\n  255 root      0:00 [irq/80-arm-smmu]\n  256 root      0:00 [irq/81-arm-smmu]\n  257 root      0:00 [irq/82-arm-smmu]\n  258 root      0:00 [irq/83-arm-smmu]\n  259 root      0:00 [irq/84-arm-smmu]\n  260 root      0:00 [irq/85-arm-smmu]\n  261 root      0:00 [irq/86-arm-smmu]\n  262 root      0:00 [irq/87-arm-smmu]\n  263 root      0:00 [irq/88-arm-smmu]\n  264 root      0:00 [irq/89-arm-smmu]\n  265 root      0:00 [irq/90-arm-smmu]\n  266 root      0:00 [irq/91-arm-smmu]\n  267 root      0:00 [irq/92-arm-smmu]\n  268 root      0:00 [irq/93-arm-smmu]\n  269 root      0:00 [irq/94-arm-smmu]\n  270 root      0:00 [irq/61-arm-smmu]\n  291 root      0:00 [uaudio_svc]\n  292 root      0:00 [irq/95-arm-smmu]\n  293 root      0:00 [irq/59-arm-smmu]\n  294 root      0:00 [irq/96-arm-smmu]\n  295 root      0:00 [irq/97-arm-smmu]\n  296 root      0:00 [irq/98-arm-smmu]\n  297 root      0:00 [irq/99-arm-smmu]\n  298 root      0:00 [irq/100-arm-smm]\n  299 root      0:00 [irq/101-arm-smm]\n  300 root      0:00 [irq/102-arm-smm]\n  301 root      0:00 [irq/103-arm-smm]\n  302 root      0:00 [irq/55-arm-smmu]\n  303 root      0:00 [scsi_eh_0]\n  304 root      0:00 [scsi_tmf_0]\n  305 root      0:00 [qc_ufs_qos_swq]\n  306 root      0:00 [ufs_eh_wq_0]\n  307 root      0:00 [ufs_clk_gating_]\n  308 root      0:00 [spi0]\n  311 root      0:00 [kworker/1:1H-kb]\n  312 root      0:00 [kworker/3:1H-kb]\n  313 root      0:00 [kworker/2:1H-kb]\n  317 root      0:00 [kworker/0:1H-kb]\n  318 root      0:00 [irq/344-aw8697]\n  319 root      0:00 [aw8976_vibrator]\n  320 root      0:00 [spi1]\n  321 root      0:00 [irq/345-cs35l41]\n  322 root      0:00 [irq/346-cs35l41]\n  323 root      0:00 [dsi_dma_cmd_wor]\n  324 root      0:00 [irq/104-arm-smm]\n  325 root      0:00 [irq/105-arm-smm]\n  326 root      0:00 [irq/106-arm-smm]\n  327 root      0:00 [irq/107-arm-smm]\n  328 root      0:00 [cam-cpas]\n  329 root      0:00 [qcom,cam_virtua]\n  330 root      0:00 [qcom,cam-cpas-c]\n  331 root      0:00 [qcom,cam-cpas-c]\n  332 root      0:00 [qcom,cam-cpas-c]\n  333 root      0:00 [qcom,cam-cpas-c]\n  334 root      0:00 [qcom,cam-ife-cd]\n  335 root      0:00 [qcom,cam-ife-cd]\n  336 root      0:00 [qcom,cam-ife-cd]\n  337 root      0:00 [qcom,cam-ife-cd]\n  338 root      0:00 [qcom,cam-ife-cd]\n  339 root      0:00 [qcom,cam-ife-cd]\n  340 root      0:00 [qcom,cam-ife-cd]\n  341 root      0:00 [qcom,cam-ife-cd]\n  342 root      0:00 [qcom,cam-ife-cd]\n  343 root      0:00 [qcom,cam-ife-cd]\n  344 root      0:00 [qcom,cam-ife-cd]\n  345 root      0:00 [qcom,cam-ife-cd]\n  346 root      0:00 [cam_cci_wq]\n  347 root      0:00 [cam_cci_wq]\n  348 root      0:00 [cam_cci_wq]\n  349 root      0:00 [cam_cci_wq]\n  350 root      0:00 [dsi_dma_cmd_wor]\n  351 root      0:00 [dsi_dma_cmd_wor]\n  352 root      0:00 [disp_feature:0]\n  353 root      0:00 [irq/367-esd_err]\n  354 root      0:00 [crtc_commit:132]\n  355 root      0:00 [crtc_event:132]\n  356 root      0:00 [crtc_commit:193]\n  357 root      0:00 [crtc_event:193]\n  358 root      0:00 [pp_event]\n  359 root      0:00 [irq/108-arm-smm]\n  360 root      0:00 [sb-1]\n  361 root      0:00 [ngd_rx_thread1]\n  362 root      0:00 [ngd_notify_sl1]\n  363 root      0:00 [kworker/2:2-eve]\n  364 root      0:00 [irq/371-fts]\n  365 root      0:00 [irq/109-arm-smm]\n  366 root      0:00 [irq/110-arm-smm]\n  367 root      0:00 [mhi_w]\n  368 root      0:00 [irq/23-90b6400.]\n  369 root      0:00 [irq/24-9091000.]\n  370 root      0:00 [irq/25-90b9100.]\n  371 root      0:00 [core_ctl/0]\n  372 root      0:00 [core_ctl/4]\n  373 root      0:00 [core_ctl/7]\n  384 root      0:00 qrtr-ns\n  386 root      0:00 [kworker/u17:1-p]\n  387 root      0:00 [kworker/u17:2-d]\n  389 root      0:00 [glink_adsp]\n  390 root      0:00 [qrtr_rx]\n  416 root      0:02 [kworker/u16:2-e]\n  438 root      0:01 [kworker/u16:0-e]\n  476 root      0:00 [kworker/0:0-eve]\n  511 root      0:00 [kworker/0:1-eve]\n  557 root      0:00 [kworker/u16:1-m]\n  607 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm8350/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1111.934766,3.70644922,66.55639615384612,17.957977360853985,16.705667568885588,269.815951563\r\n1,403200,1495.766979,3.70973953125,63.25036269430048,12.686536644866669,23.64711570997499,200.576504299\r\n1,499200,1852.160545,3.710257502003205,66.35715384615384,10.748624952411499,27.910546821404697,161.981404105\r\n1,595200,2208.52934,3.710566767473118,70.93338931297706,9.63589201462655,31.13359920852401,135.844235105\r\n1,691200,2565.001411,3.7109395413773147,75.80872566371673,8.867002864612935,33.833303606708114,116.965465215\r\n1,806400,2992.608258,3.711071748511905,80.28418749999999,8.0487784112232,37.27273688907631,100.253594909\r\n1,902400,3347.99009,3.7100954011524823,84.09334883720925,7.535668450684395,39.81066868364594,89.610754654\r\n1,998400,3705.533597,3.7114719521233974,88.25708974358973,7.145771348116831,41.98287146132388,80.965408772\r\n1,1094400,4061.903408,3.7115345467836254,94.44022535211263,6.975597276129849,43.00706995035181,73.86256492\r\n1,1209600,4489.405004,3.71147900462963,100.98668749999995,6.748717673710931,44.452889349427835,66.827795235\r\n1,1305600,4845.822094,3.711567167585785,111.73108474576269,6.917539841379592,43.36801910492066,61.91240206\r\n1,1401600,5202.101649,3.711545126284247,110.24372727272726,6.35796783076316,47.18488799965985,57.671923728\r\n1,1497600,5557.202134,3.710738604433761,115.24274999999999,6.221629116833004,48.218881962656916,53.987162896\r\n1,1612800,5986.470576,3.7118493154761905,122.71885416666666,6.150279917704346,48.77826765842197,50.11682972\r\n1,1708800,6341.15409,3.7108813728932586,126.98671111111109,6.008109489079742,49.932512139679865,47.312899409\r\n1,1804800,6699.120182,3.7118352072251772,147.11609302325576,6.588537706397426,45.53362420749326,44.784615816\r\n4,710400,6465.099239,9.100646451295045,147.8305909090909,6.861864377535806,43.7198964441985,46.417080087\r\n4,844800,7686.788972,9.09894527935606,166.7622162162162,6.510676080363977,46.07816397206304,39.041673996\r\n4,960000,8733.370208,9.097260633333333,193.2354242424242,6.640330330726079,45.178475325518455,34.363938997\r\n4,1075200,9785.054959,9.10068355561756,214.57731034482757,6.5817873600152845,45.580323943996774,30.673268061\r\n4,1209600,11003.521127,9.096826328538361,243.44611538461533,6.64039582483731,45.178029730983695,27.276655511\r\n4,1324800,11502.626433,8.68253806838768,264.91411999999997,6.912631501266685,43.398812730727414,26.093858271\r\n4,1440000,12937.168485,8.98414478125,297.0488181818182,6.8924574376696635,43.525840052402245,23.203113481\r\n4,1555200,13624.596939,8.76067190007716,336.1142857142857,7.405812221915086,40.50872355529726,22.033613377\r\n4,1670400,15196.028771,9.09723944624042,379.70763157894737,7.501117713024583,39.994039752115114,19.754982753\r\n4,1766400,16067.69857,9.096296744791667,412.91016666666667,7.715343581593431,38.88355674991751,18.685283639\r\n4,1881600,17118.402282,9.097790328443878,498.7656875,8.747824217315252,34.29424192202977,17.538945514\r\n4,1996800,18171.906233,9.100513938802084,537.1897333333334,8.875828608638411,33.79966121788614,16.522707077\r\n4,2112000,19208.605455,9.094983643465909,629.5333333333333,9.839955846782134,30.487941680968632,15.630555724\r\n4,2227200,20274.379942,9.103080074533047,728.8811428571428,10.7949782625219,27.790699777649635,14.810340984\r\n4,2342400,21300.766828,9.09356507342896,816.8015384615384,11.515125655378492,26.052690085919803,14.09782562\r\n4,2419200,22007.042254,9.096826328538361,907.5565384615384,12.38484097077087,24.223161258834242,13.646357495\r\n7,844800,7844.777993,9.285958798532198,246.0052777777778,9.411153366656189,31.87707056851321,38.255900246\r\n7,960000,8910.00891,9.28125928125,275.5301562499999,9.280663335343748,32.32527559290979,33.682931341\r\n7,1075200,8337.038684,7.753942228422618,262.09729411764704,9.434845157273886,31.797024222354313,35.997491653\r\n7,1190400,11147.029317,9.364103928931451,324.93373076923075,8.749016077119114,34.28957009058147,26.925539729\r\n7,1305600,11522.949875,8.825788813572304,341.73264,8.902064554872677,33.70004768565631,26.049793063\r\n7,1420800,7418.397626,5.221282112894144,259.05843589743586,10.479619729758419,28.626992938313016,40.452725245\r\n7,1555200,11146.201003,7.1670531140689295,365.3237692307692,9.83776338301701,30.49473628506778,26.928889417\r\n7,1670400,15515.903801,9.288735513050765,480.2318888888889,9.291592989806427,32.28725153255448,19.348138274\r\n7,1785600,16122.964476,9.029437990591397,520.8156470588235,9.697349179760709,30.93628933421605,18.619542701\r\n7,1900800,17649.135192,9.285109002525253,584.1133749999999,9.936213191925932,30.192588887261095,17.010761296\r\n7,2035200,18908.357494,9.290663076847483,662.6320666666666,10.522306794983429,28.51085848808616,15.879561712\r\n7,2150400,19970.709626,9.286974342447916,768.7812857142857,11.55910475270906,25.953567029461365,15.035621922\r\n7,2265600,21040.819189,9.287084740907487,878.2710769230769,12.534630370213451,23.933693386994655,14.271938015\r\n7,2380800,22094.564737,9.280311129452285,1008.6853846153846,13.70865156124936,21.883990461032553,13.59061187\r\n7,2496000,23182.134302,9.287714063301282,1042.5134166666667,13.504910572970536,22.214141913715174,12.954183953\r\n7,2592000,24061.59769,9.28302380015432,1219.1031666666665,15.217014552616265,19.71477381208267,12.482138484\r\n7,2688000,24962.556166,9.28666524032738,1364.7455454545454,16.420692889356218,18.269631008960527,12.032054579\r\n7,2764800,25658.569962,9.28044341796875,1560.8435454545454,18.26961800708691,16.42070457541192,11.704964319\r\n7,2841600,26389.866291,9.286974342271959,1635.907,18.620903895230363,16.11092574710314,11.382617652\r\n"
  },
  {
    "path": "results/sm8350/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 2930.341085806489, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1258.884, 1258.595, 1241.46, 1210.968, 1228.392, 1210.968, 1228.392, 1228.392, 1210.968, 1210.968, 1210.968, 1228.392, 1210.968, 1228.392, 1210.69, 1210.968, 1210.69, 1210.69, 1228.392, 1210.69, 1210.69, 1228.11, 1210.69, 1227.828, 1210.69, 1227.828, 1210.69, 1210.412, 1210.412], \"power_mean\": 1220.557827586207, \"energy_millijoules\": 6102.789137931035, \"energy_joules\": 6.102789137931035}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 269.815951563, \"elapsed_ns\": 269815951563, \"power_samples\": [47.894000000000005, 65.01700000000005, 65.01700000000005, 65.01700000000005, 82.42899999999986, 65.01700000000005, 65.01700000000005, 65.01700000000005, 65.01700000000005, 65.01700000000005, 82.42899999999986, 64.72399999999993, 65.01700000000005, 65.01700000000005, 65.01700000000005, 64.72399999999993, 65.01700000000005, 65.01700000000005, 81.83500000000004, 129.38799999999992, 111.98800000000006, 64.72399999999993, 82.13200000000006, 64.72399999999993, 129.6959999999999, 142.74900000000002, 94.88799999999992, 64.72399999999993, 64.72399999999993, 64.72399999999993, 64.72399999999993, 64.72399999999993, 82.13200000000006, 64.72399999999993, 64.43100000000004, 47.31600000000003, 81.83500000000004, 64.43100000000004, 82.13200000000006, 64.43100000000004, 81.83500000000004, 64.43100000000004, 64.43100000000004, 81.83500000000004, 64.13799999999992, 64.13799999999992, 64.13799999999992, 64.13799999999992, 81.53800000000001, 64.43100000000004, 64.43100000000004, 81.83500000000004, 64.43100000000004, 81.83500000000004, 64.43100000000004, 64.43100000000004, 64.43100000000004, 64.43100000000004, 64.43100000000004, 64.43100000000004, 64.43100000000004, 64.43100000000004, 64.43100000000004, 64.13799999999992, 64.13799999999992, 81.53800000000001, 64.43100000000004, 81.53800000000001, 64.13799999999992, 46.738000000000056, 63.84500000000003, 81.24099999999999, 63.84500000000003, 63.84500000000003, 64.13799999999992, 46.738000000000056, 81.53800000000001, 46.738000000000056, 81.53800000000001, 46.738000000000056, 64.13799999999992, 81.53800000000001, 64.13799999999992, 63.84500000000003, 63.84500000000003, 63.84500000000003, 63.84500000000003, 81.53800000000001, 63.84500000000003, 63.84500000000003, 46.44900000000007, 63.84500000000003, 81.24099999999999, 46.44900000000007, 63.84500000000003, 63.55199999999991, 63.55199999999991, 63.84500000000003, 81.24099999999999, 63.84500000000003, 63.84500000000003, 63.84500000000003, 81.24099999999999, 63.84500000000003, 63.84500000000003, 46.44900000000007, 63.84500000000003, 63.84500000000003, 63.84500000000003, 63.84500000000003, 63.84500000000003, 63.84500000000003, 63.84500000000003, 63.55199999999991, 81.24099999999999, 63.55199999999991, 63.55199999999991, 63.55199999999991, 80.94399999999996, 46.159999999999854, 63.259000000000015, 63.259000000000015, 63.55199999999991, 63.259000000000015, 80.94399999999996, 63.55199999999991, 63.55199999999991, 63.55199999999991, 63.55199999999991, 63.55199999999991, 80.94399999999996, 63.55199999999991, 63.55199999999991, 63.55199999999991, 63.55199999999991, 63.55199999999991, 63.259000000000015, 63.55199999999991, 63.55199999999991, 63.259000000000015, 63.55199999999991, 63.55199999999991, 63.55199999999991, 63.259000000000015, 63.259000000000015, 80.34999999999991, 62.965999999999894, 63.259000000000015, 63.259000000000015, 63.259000000000015, 63.259000000000015, 63.259000000000015, 63.259000000000015, 45.87099999999987, 63.259000000000015, 63.259000000000015, 63.259000000000015, 63.259000000000015, 63.259000000000015, 80.64699999999993, 63.259000000000015, 63.259000000000015, 80.64699999999993, 45.87099999999987, 63.259000000000015, 63.259000000000015, 62.965999999999894, 63.259000000000015, 62.965999999999894, 62.965999999999894, 62.673, 45.58199999999988, 80.34999999999991, 62.965999999999894, 62.965999999999894, 62.965999999999894, 80.34999999999991, 45.58199999999988, 62.965999999999894, 62.965999999999894, 62.965999999999894, 62.965999999999894, 62.965999999999894, 62.965999999999894, 45.58199999999988, 80.34999999999991, 45.58199999999988, 62.965999999999894, 62.965999999999894, 62.965999999999894, 62.965999999999894, 62.965999999999894, 80.34999999999991, 62.965999999999894, 62.673, 62.37999999999988, 62.673, 62.37999999999988, 62.37999999999988, 62.673, 62.965999999999894, 62.673, 45.58199999999988, 62.965999999999894, 62.673, 62.673, 62.673, 80.05299999999988, 140.88300000000004, 62.37999999999988, 62.673, 62.673, 62.673, 62.673, 62.673, 45.29299999999989, 62.673, 62.673, 62.673, 62.673, 62.673, 62.37999999999988, 62.37999999999988, 62.08699999999999, 62.37999999999988, 62.673, 62.37999999999988, 62.37999999999988, 62.673, 45.29299999999989, 62.37999999999988, 62.673, 62.37999999999988, 62.37999999999988, 62.37999999999988, 62.37999999999988, 62.37999999999988, 62.37999999999988, 62.37999999999988, 79.75599999999986, 45.003999999999905, 79.75599999999986, 62.37999999999988, 62.37999999999988, 62.37999999999988, 126.92399999999998, 126.92399999999998, 79.16200000000003, 62.08699999999999, 62.08699999999999, 62.37999999999988, 62.37999999999988, 62.37999999999988, 62.08699999999999, 79.75599999999986, 45.003999999999905, 62.37999999999988, 62.08699999999999, 62.37999999999988, 62.37999999999988], \"power_mean\": 66.55639615384612, \"energy_millijoules\": 17957.977360853984, \"energy_joules\": 17.957977360853985, \"coremark_score\": 1111.934766, \"coremarks_per_mhz\": 3.70644922, \"ulpmark_cm_score\": 16.705667568885588}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1227.828, 1210.134, 1240.89, 1210.412], \"power_mean\": 1222.316, \"energy_millijoules\": 6111.58, \"energy_joules\": 6.11158}}, \"403200\": {\"active\": {\"elapsed_sec\": 200.576504299, \"elapsed_ns\": 200576504299, \"power_samples\": [14.596000000000004, 62.08699999999999, 44.71499999999992, 61.79399999999987, 61.79399999999987, 61.79399999999987, 61.79399999999987, 62.08699999999999, 79.45900000000006, 44.71499999999992, 62.08699999999999, 79.16200000000003, 62.08699999999999, 62.08699999999999, 79.45900000000006, 62.08699999999999, 61.79399999999987, 62.08699999999999, 79.45900000000006, 61.79399999999987, 79.45900000000006, 61.79399999999987, 44.42599999999993, 79.16200000000003, 44.42599999999993, 79.16200000000003, 44.42599999999993, 61.79399999999987, 61.500999999999976, 61.79399999999987, 61.500999999999976, 79.16200000000003, 44.42599999999993, 79.16200000000003, 61.79399999999987, 61.79399999999987, 61.79399999999987, 61.79399999999987, 61.79399999999987, 61.79399999999987, 61.79399999999987, 79.16200000000003, 61.79399999999987, 61.79399999999987, 61.79399999999987, 79.16200000000003, 78.86500000000001, 61.79399999999987, 61.79399999999987, 61.500999999999976, 79.16200000000003, 44.136999999999944, 61.500999999999976, 61.207999999999856, 61.207999999999856, 61.207999999999856, 78.56799999999998, 61.500999999999976, 61.79399999999987, 61.500999999999976, 78.86500000000001, 61.500999999999976, 78.86500000000001, 61.500999999999976, 61.500999999999976, 61.500999999999976, 61.500999999999976, 61.500999999999976, 61.500999999999976, 44.136999999999944, 61.500999999999976, 78.86500000000001, 61.500999999999976, 61.500999999999976, 61.207999999999856, 61.500999999999976, 78.86500000000001, 78.56799999999998, 43.847999999999956, 60.914999999999964, 60.914999999999964, 78.27099999999996, 61.207999999999856, 43.847999999999956, 61.207999999999856, 78.56799999999998, 61.207999999999856, 61.207999999999856, 61.207999999999856, 61.207999999999856, 61.207999999999856, 78.56799999999998, 61.207999999999856, 61.207999999999856, 61.207999999999856, 61.207999999999856, 78.56799999999998, 61.207999999999856, 61.207999999999856, 43.847999999999956, 78.56799999999998, 61.207999999999856, 61.207999999999856, 60.914999999999964, 60.914999999999964, 60.62200000000007, 78.27099999999996, 78.27099999999996, 43.55899999999997, 78.27099999999996, 61.207999999999856, 61.207999999999856, 60.914999999999964, 60.914999999999964, 43.847999999999956, 78.27099999999996, 60.914999999999964, 78.27099999999996, 61.207999999999856, 60.914999999999964, 60.914999999999964, 78.27099999999996, 60.914999999999964, 60.914999999999964, 60.914999999999964, 78.27099999999996, 60.914999999999964, 60.914999999999964, 60.914999999999964, 43.55899999999997, 60.62200000000007, 60.32899999999995, 60.62200000000007, 60.62200000000007, 78.27099999999996, 60.914999999999964, 60.914999999999964, 60.62200000000007, 60.914999999999964, 78.27099999999996, 60.62200000000007, 60.914999999999964, 60.914999999999964, 77.97399999999993, 43.55899999999997, 60.62200000000007, 60.914999999999964, 60.62200000000007, 60.62200000000007, 60.914999999999964, 78.27099999999996, 60.62200000000007, 60.62200000000007, 60.62200000000007, 77.97399999999993, 77.67699999999991, 42.980999999999995, 60.62200000000007, 60.32899999999995, 77.97399999999993, 60.62200000000007, 60.62200000000007, 60.62200000000007, 60.62200000000007, 60.62200000000007, 77.97399999999993, 60.62200000000007, 77.97399999999993, 60.62200000000007, 60.62200000000007, 60.32899999999995, 60.62200000000007, 60.62200000000007, 60.32899999999995, 60.62200000000007, 60.62200000000007, 77.67699999999991, 42.980999999999995, 77.67699999999991, 60.32899999999995, 42.69200000000001, 60.32899999999995, 77.67699999999991, 60.03600000000006, 60.32899999999995, 77.67699999999991, 60.32899999999995, 60.32899999999995, 60.32899999999995, 60.32899999999995, 60.32899999999995, 60.32899999999995, 60.32899999999995], \"power_mean\": 63.25036269430048, \"energy_millijoules\": 12686.536644866668, \"energy_joules\": 12.686536644866669, \"coremark_score\": 1495.766979, \"coremarks_per_mhz\": 3.70973953125, \"ulpmark_cm_score\": 23.64711570997499}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1207.632, 1225.008, 1225.008, 1207.632], \"power_mean\": 1216.3200000000002, \"energy_millijoules\": 6081.6, \"energy_joules\": 6.081600000000001}}, \"499200\": {\"active\": {\"elapsed_sec\": 161.981404105, \"elapsed_ns\": 161981404105, \"power_samples\": [-4.448000000000093, 60.32899999999995, 77.67699999999991, 60.32899999999995, 60.03600000000006, 59.74299999999994, 60.03600000000006, 60.03600000000006, 77.37999999999988, 77.37999999999988, 60.32899999999995, 77.67699999999991, 60.03600000000006, 77.37999999999988, 60.32899999999995, 77.37999999999988, 60.03600000000006, 77.37999999999988, 60.03600000000006, 60.03600000000006, 60.03600000000006, 77.37999999999988, 60.03600000000006, 60.03600000000006, 77.37999999999988, 60.03600000000006, 60.03600000000006, 107.73199999999997, 77.37999999999988, 77.37999999999988, 59.74299999999994, 59.450000000000045, 76.78600000000006, 59.74299999999994, 59.74299999999994, 77.08299999999986, 60.03600000000006, 59.74299999999994, 77.08299999999986, 60.03600000000006, 77.37999999999988, 59.74299999999994, 59.74299999999994, 77.08299999999986, 77.37999999999988, 59.74299999999994, 77.08299999999986, 59.74299999999994, 59.74299999999994, 77.08299999999986, 59.74299999999994, 77.08299999999986, 42.40300000000002, 77.08299999999986, 77.08299999999986, 59.74299999999994, 59.450000000000045, 76.78600000000006, 76.78600000000006, 59.450000000000045, 76.78600000000006, 59.74299999999994, 59.450000000000045, 76.78600000000006, 77.08299999999986, 59.74299999999994, 59.450000000000045, 59.74299999999994, 76.78600000000006, 59.450000000000045, 59.450000000000045, 77.08299999999986, 76.78600000000006, 59.450000000000045, 76.78600000000006, 59.450000000000045, 76.78600000000006, 59.450000000000045, 76.78600000000006, 59.450000000000045, 76.78600000000006, 59.450000000000045, 59.156999999999925, 59.156999999999925, 59.450000000000045, 76.48900000000003, 76.48900000000003, 59.450000000000045, 76.78600000000006, 59.450000000000045, 76.78600000000006, 76.78600000000006, 59.450000000000045, 76.78600000000006, 59.450000000000045, 42.11400000000003, 76.78600000000006, 59.450000000000045, 59.450000000000045, 59.450000000000045, 76.48900000000003, 76.78600000000006, 59.450000000000045, 59.450000000000045, 76.78600000000006, 59.156999999999925, 89.78800000000001, 59.156999999999925, 58.86400000000003, 76.19200000000001, 58.86400000000003, 59.156999999999925, 76.48900000000003, 59.156999999999925, 59.450000000000045, 76.78600000000006, 59.156999999999925, 59.450000000000045, 76.48900000000003, 76.48900000000003, 59.156999999999925, 76.48900000000003, 59.156999999999925, 59.156999999999925, 76.48900000000003, 59.156999999999925, 59.156999999999925, 76.48900000000003, 59.156999999999925, 59.156999999999925, 76.19200000000001, 59.156999999999925, 59.156999999999925, 58.86400000000003, 58.86400000000003, 76.19200000000001, 76.19200000000001, 41.53600000000006, 76.48900000000003, 76.48900000000003, 58.86400000000003, 59.156999999999925, 76.19200000000001, 58.86400000000003, 58.86400000000003, 76.19200000000001, 58.86400000000003, 58.86400000000003, 76.19200000000001, 58.86400000000003, 76.19200000000001, 76.19200000000001, 58.86400000000003, 76.19200000000001, 58.86400000000003, 76.19200000000001], \"power_mean\": 66.35715384615384, \"energy_millijoules\": 10748.6249524115, \"energy_joules\": 10.748624952411499, \"coremark_score\": 1852.160545, \"coremarks_per_mhz\": 3.710257502003205, \"ulpmark_cm_score\": 27.910546821404697}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1205.964, 1205.964, 1223.316, 1205.964], \"power_mean\": 1210.302, \"energy_millijoules\": 6051.509999999999, \"energy_joules\": 6.0515099999999995}}, \"595200\": {\"active\": {\"elapsed_sec\": 135.844235105, \"elapsed_ns\": 135844235105, \"power_samples\": [41.825000000000045, 76.19200000000001, 76.19200000000001, 58.86400000000003, 76.19200000000001, 58.86400000000003, 76.19200000000001, 58.86400000000003, 76.19200000000001, 76.19200000000001, 75.89499999999998, 58.86400000000003, 76.19200000000001, 76.19200000000001, 58.86400000000003, 76.19200000000001, 75.89499999999998, 75.89499999999998, 76.19200000000001, 58.57099999999991, 75.89499999999998, 75.59799999999996, 57.9849999999999, 58.57099999999991, 75.59799999999996, 75.59799999999996, 58.57099999999991, 75.89499999999998, 75.89499999999998, 58.57099999999991, 88.88799999999992, 58.57099999999991, 88.88799999999992, 75.89499999999998, 58.57099999999991, 75.89499999999998, 75.89499999999998, 58.57099999999991, 75.89499999999998, 75.59799999999996, 58.27800000000002, 75.89499999999998, 75.59799999999996, 58.57099999999991, 75.59799999999996, 75.89499999999998, 75.59799999999996, 57.9849999999999, 88.58799999999997, 57.9849999999999, 75.59799999999996, 58.27800000000002, 75.59799999999996, 75.59799999999996, 75.59799999999996, 58.27800000000002, 58.27800000000002, 88.58799999999997, 58.27800000000002, 75.59799999999996, 75.59799999999996, 75.59799999999996, 75.59799999999996, 75.59799999999996, 75.59799999999996, 75.59799999999996, 75.59799999999996, 75.59799999999996, 58.27800000000002, 75.59799999999996, 75.59799999999996, 57.9849999999999, 57.9849999999999, 57.69200000000001, 88.28800000000001, 57.69200000000001, 75.0039999999999, 75.59799999999996, 75.59799999999996, 75.30099999999993, 75.59799999999996, 75.30099999999993, 75.30099999999993, 75.30099999999993, 75.30099999999993, 57.9849999999999, 75.30099999999993, 57.9849999999999, 75.30099999999993, 75.30099999999993, 75.30099999999993, 75.30099999999993, 57.9849999999999, 88.28800000000001, 57.9849999999999, 75.30099999999993, 75.30099999999993, 75.30099999999993, 57.69200000000001, 75.0039999999999, 57.69200000000001, 75.0039999999999, 57.69200000000001, 75.30099999999993, 75.30099999999993, 75.30099999999993, 75.30099999999993, 75.30099999999993, 75.30099999999993, 75.30099999999993, 75.30099999999993, 57.9849999999999, 88.28800000000001, 75.30099999999993, 75.0039999999999, 57.9849999999999, 75.0039999999999, 75.0039999999999, 75.0039999999999, 57.69200000000001, 75.0039999999999, 75.0039999999999, 75.30099999999993, 75.0039999999999, 74.70699999999988, 75.0039999999999, 57.39899999999989, 74.70699999999988, 75.0039999999999, 75.0039999999999, 57.69200000000001], \"power_mean\": 70.93338931297706, \"energy_millijoules\": 9635.89201462655, \"energy_joules\": 9.63589201462655, \"coremark_score\": 2208.52934, \"coremarks_per_mhz\": 3.710566767473118, \"ulpmark_cm_score\": 31.13359920852401}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1204.574, 1204.296, 1221.624, 1204.574], \"power_mean\": 1208.767, \"energy_millijoules\": 6043.835, \"energy_joules\": 6.043835}}, \"691200\": {\"active\": {\"elapsed_sec\": 116.965465215, \"elapsed_ns\": 116965465215, \"power_samples\": [23.63799999999992, 75.0039999999999, 75.0039999999999, 57.69200000000001, 75.0039999999999, 87.98800000000006, 57.69200000000001, 75.0039999999999, 75.0039999999999, 75.0039999999999, 57.39899999999989, 170.22000000000003, 74.40999999999985, 74.70699999999988, 74.40999999999985, 87.68799999999987, 75.0039999999999, 75.0039999999999, 74.70699999999988, 75.0039999999999, 74.70699999999988, 74.70699999999988, 74.70699999999988, 74.70699999999988, 74.70699999999988, 74.70699999999988, 74.70699999999988, 87.68799999999987, 74.70699999999988, 74.70699999999988, 57.39899999999989, 104.99599999999987, 57.39899999999989, 74.70699999999988, 74.70699999999988, 87.68799999999987, 74.70699999999988, 74.40999999999985, 74.40999999999985, 74.40999999999985, 74.40999999999985, 87.38799999999992, 74.70699999999988, 74.70699999999988, 74.70699999999988, 87.68799999999987, 74.70699999999988, 74.70699999999988, 74.70699999999988, 87.38799999999992, 74.70699999999988, 74.70699999999988, 74.70699999999988, 74.70699999999988, 74.70699999999988, 74.40999999999985, 74.70699999999988, 87.38799999999992, 74.70699999999988, 74.40999999999985, 87.38799999999992, 57.105999999999995, 57.105999999999995, 87.38799999999992, 74.11300000000006, 56.812999999999874, 87.08799999999997, 74.40999999999985, 74.40999999999985, 74.40999999999985, 57.105999999999995, 87.38799999999992, 74.40999999999985, 74.40999999999985, 74.40999999999985, 87.38799999999992, 74.40999999999985, 87.38799999999992, 74.40999999999985, 74.40999999999985, 74.40999999999985, 74.40999999999985, 74.40999999999985, 74.40999999999985, 74.40999999999985, 74.40999999999985, 74.40999999999985, 74.11300000000006, 56.812999999999874, 86.78800000000001, 73.81600000000003, 74.11300000000006, 74.11300000000006, 87.38799999999992, 74.11300000000006, 74.40999999999985, 74.11300000000006, 74.11300000000006, 74.11300000000006, 74.40999999999985, 74.11300000000006, 87.08799999999997, 74.11300000000006, 74.11300000000006, 74.11300000000006, 74.11300000000006, 87.08799999999997, 74.11300000000006, 74.11300000000006, 74.11300000000006, 74.11300000000006, 87.08799999999997, 74.11300000000006], \"power_mean\": 75.80872566371673, \"energy_millijoules\": 8867.002864612936, \"energy_joules\": 8.867002864612935, \"coremark_score\": 2565.001411, \"coremarks_per_mhz\": 3.7109395413773147, \"ulpmark_cm_score\": 33.833303606708114}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1186.146, 1220.778, 1203.462, 1203.462], \"power_mean\": 1203.462, \"energy_millijoules\": 6017.3099999999995, \"energy_joules\": 6.017309999999999}}, \"806400\": {\"active\": {\"elapsed_sec\": 100.253594909, \"elapsed_ns\": 100253594909, \"power_samples\": [57.39899999999989, 74.11300000000006, 87.08799999999997, 56.51999999999998, 87.08799999999997, 74.11300000000006, 86.78800000000001, 73.81600000000003, 87.08799999999997, 73.81600000000003, 73.81600000000003, 87.08799999999997, 73.81600000000003, 86.78800000000001, 73.81600000000003, 86.78800000000001, 86.78800000000001, 86.78800000000001, 73.81600000000003, 86.78800000000001, 73.519, 86.48800000000006, 73.81600000000003, 73.519, 86.78800000000001, 73.81600000000003, 73.81600000000003, 73.81600000000003, 86.78800000000001, 86.78800000000001, 86.78800000000001, 86.78800000000001, 73.81600000000003, 86.78800000000001, 73.81600000000003, 86.48800000000006, 86.78800000000001, 73.81600000000003, 73.81600000000003, 86.48800000000006, 73.81600000000003, 73.519, 86.78800000000001, 73.519, 86.48800000000006, 86.48800000000006, 86.18799999999987, 86.18799999999987, 73.519, 86.18799999999987, 73.519, 73.81600000000003, 86.48800000000006, 73.81600000000003, 73.519, 86.48800000000006, 86.48800000000006, 73.519, 86.48800000000006, 73.519, 73.519, 86.48800000000006, 86.48800000000006, 86.48800000000006, 86.48800000000006, 73.519, 86.18799999999987, 73.519, 73.519, 86.18799999999987, 73.22199999999998, 73.22199999999998, 86.18799999999987, 86.18799999999987, 72.92499999999995, 86.18799999999987, 73.22199999999998, 86.18799999999987, 86.18799999999987, 73.519, 86.18799999999987, 86.18799999999987, 73.22199999999998, 73.22199999999998, 86.18799999999987, 86.48800000000006, 73.22199999999998, 86.18799999999987, 86.18799999999987, 73.22199999999998, 86.18799999999987, 86.18799999999987, 86.18799999999987, 73.22199999999998, 103.47599999999989, 73.22199999999998], \"power_mean\": 80.28418749999999, \"energy_millijoules\": 8048.7784112232, \"energy_joules\": 8.0487784112232, \"coremark_score\": 2992.608258, \"coremarks_per_mhz\": 3.711071748511905, \"ulpmark_cm_score\": 37.27273688907631}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1202.906, 1202.628, 1202.35, 1219.932], \"power_mean\": 1206.954, \"energy_millijoules\": 6034.7699999999995, \"energy_joules\": 6.03477}}, \"902400\": {\"active\": {\"elapsed_sec\": 89.610754654, \"elapsed_ns\": 89610754654, \"power_samples\": [39.22399999999993, 86.18799999999987, 86.18799999999987, 73.22199999999998, 103.47599999999989, 73.22199999999998, 86.18799999999987, 86.18799999999987, 86.18799999999987, 85.88799999999992, 73.22199999999998, 86.18799999999987, 73.22199999999998, 86.18799999999987, 86.18799999999987, 72.92499999999995, 103.17200000000003, 72.92499999999995, 85.88799999999992, 85.88799999999992, 85.58799999999997, 85.58799999999997, 85.88799999999992, 85.58799999999997, 85.88799999999992, 72.92499999999995, 72.92499999999995, 85.88799999999992, 85.88799999999992, 85.88799999999992, 85.88799999999992, 85.88799999999992, 85.88799999999992, 85.88799999999992, 85.88799999999992, 85.88799999999992, 85.88799999999992, 85.88799999999992, 72.92499999999995, 85.88799999999992, 85.58799999999997, 85.88799999999992, 72.92499999999995, 85.58799999999997, 72.62799999999993, 72.62799999999993, 85.58799999999997, 85.58799999999997, 85.28800000000001, 85.58799999999997, 85.88799999999992, 85.88799999999992, 85.58799999999997, 85.58799999999997, 85.58799999999997, 85.58799999999997, 85.58799999999997, 72.62799999999993, 85.58799999999997, 85.58799999999997, 85.58799999999997, 72.62799999999993, 102.86799999999994, 85.58799999999997, 72.62799999999993, 102.86799999999994, 85.58799999999997, 85.58799999999997, 72.62799999999993, 102.86799999999994, 85.58799999999997, 72.03399999999988, 85.28800000000001, 85.28800000000001, 102.56400000000008, 85.28800000000001, 85.58799999999997, 85.58799999999997, 85.58799999999997, 85.28800000000001, 102.56400000000008, 85.58799999999997, 85.58799999999997, 72.62799999999993, 102.56400000000008, 85.58799999999997], \"power_mean\": 84.09334883720925, \"energy_millijoules\": 7535.668450684395, \"energy_joules\": 7.535668450684395, \"coremark_score\": 3347.99009, \"coremarks_per_mhz\": 3.7100954011524823, \"ulpmark_cm_score\": 39.81066868364594}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1184.502, 1201.794, 1219.086, 1202.072], \"power_mean\": 1201.8635, \"energy_millijoules\": 6009.317499999999, \"energy_joules\": 6.009317499999999}}, \"998400\": {\"active\": {\"elapsed_sec\": 80.965408772, \"elapsed_ns\": 80965408772, \"power_samples\": [8.1099999999999, 85.28800000000001, 102.56400000000008, 72.3309999999999, 84.98800000000006, 84.68799999999987, 84.98800000000006, 85.28800000000001, 84.98800000000006, 85.28800000000001, 102.56400000000008, 85.28800000000001, 85.28800000000001, 85.28800000000001, 85.28800000000001, 85.28800000000001, 85.28800000000001, 102.56400000000008, 85.28800000000001, 85.28800000000001, 102.25999999999999, 85.28800000000001, 85.28800000000001, 84.98800000000006, 84.98800000000006, 84.98800000000006, 85.28800000000001, 102.56400000000008, 85.28800000000001, 102.25999999999999, 84.68799999999987, 84.98800000000006, 119.22399999999993, 84.68799999999987, 84.98800000000006, 84.98800000000006, 84.98800000000006, 102.25999999999999, 84.98800000000006, 84.98800000000006, 84.98800000000006, 84.98800000000006, 102.25999999999999, 84.98800000000006, 84.98800000000006, 84.98800000000006, 102.25999999999999, 84.98800000000006, 84.98800000000006, 84.98800000000006, 84.98800000000006, 102.25999999999999, 84.98800000000006, 84.98800000000006, 102.25999999999999, 84.68799999999987, 84.68799999999987, 84.68799999999987, 84.68799999999987, 101.9559999999999, 84.68799999999987, 84.98800000000006, 101.9559999999999, 101.9559999999999, 84.68799999999987, 84.98800000000006, 102.25999999999999, 84.98800000000006, 84.68799999999987, 84.68799999999987, 101.9559999999999, 84.98800000000006, 101.9559999999999, 84.68799999999987, 84.68799999999987, 84.68799999999987, 101.9559999999999, 84.68799999999987], \"power_mean\": 88.25708974358973, \"energy_millijoules\": 7145.771348116831, \"energy_joules\": 7.145771348116831, \"coremark_score\": 3705.533597, \"coremarks_per_mhz\": 3.7114719521233974, \"ulpmark_cm_score\": 41.98287146132388}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1183.954, 1218.522, 1201.238, 1201.238], \"power_mean\": 1201.238, \"energy_millijoules\": 6006.1900000000005, \"energy_joules\": 6.00619}}, \"1094400\": {\"active\": {\"elapsed_sec\": 73.86256492, \"elapsed_ns\": 73862564920, \"power_samples\": [72.3309999999999, 101.9559999999999, 84.68799999999987, 84.68799999999987, 101.9559999999999, 84.68799999999987, 101.9559999999999, 101.9559999999999, 101.9559999999999, 71.73699999999985, 101.9559999999999, 84.68799999999987, 101.9559999999999, 84.68799999999987, 101.9559999999999, 84.68799999999987, 101.9559999999999, 84.38799999999992, 101.9559999999999, 84.68799999999987, 101.65200000000004, 101.65200000000004, 101.65200000000004, 84.08799999999997, 101.34799999999996, 84.08799999999997, 101.34799999999996, 84.38799999999992, 101.65200000000004, 84.38799999999992, 101.65200000000004, 84.38799999999992, 101.65200000000004, 84.38799999999992, 101.65200000000004, 101.65200000000004, 101.65200000000004, 101.65200000000004, 101.65200000000004, 84.38799999999992, 101.65200000000004, 101.65200000000004, 84.38799999999992, 101.65200000000004, 84.38799999999992, 84.38799999999992, 101.65200000000004, 84.08799999999997, 101.04399999999987, 83.78800000000001, 101.34799999999996, 101.04399999999987, 101.34799999999996, 101.34799999999996, 101.34799999999996, 84.08799999999997, 101.34799999999996, 84.08799999999997, 101.34799999999996, 101.65200000000004, 84.08799999999997, 84.08799999999997, 101.34799999999996, 84.08799999999997, 101.34799999999996, 101.34799999999996, 84.08799999999997, 101.34799999999996, 101.34799999999996, 118.60799999999995, 84.08799999999997], \"power_mean\": 94.44022535211263, \"energy_millijoules\": 6975.597276129849, \"energy_joules\": 6.975597276129849, \"coremark_score\": 4061.903408, \"coremarks_per_mhz\": 3.7115345467836254, \"ulpmark_cm_score\": 43.00706995035181}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1200.404, 1217.676, 1200.404, 1200.126], \"power_mean\": 1204.6525, \"energy_millijoules\": 6023.2625, \"energy_joules\": 6.0232624999999995}}, \"1209600\": {\"active\": {\"elapsed_sec\": 66.827795235, \"elapsed_ns\": 66827795235, \"power_samples\": [84.68799999999987, 84.08799999999997, 101.34799999999996, 118.60799999999995, 101.34799999999996, 84.08799999999997, 101.34799999999996, 118.60799999999995, 83.78800000000001, 101.04399999999987, 101.34799999999996, 84.08799999999997, 101.34799999999996, 101.04399999999987, 101.04399999999987, 101.34799999999996, 101.04399999999987, 101.04399999999987, 101.04399999999987, 118.29999999999995, 101.04399999999987, 83.78800000000001, 117.99199999999996, 100.74000000000001, 101.04399999999987, 100.74000000000001, 101.04399999999987, 101.04399999999987, 83.78800000000001, 101.04399999999987, 101.04399999999987, 101.04399999999987, 101.04399999999987, 118.29999999999995, 101.04399999999987, 101.04399999999987, 118.29999999999995, 83.48800000000006, 100.74000000000001, 118.29999999999995, 83.48800000000006, 101.04399999999987, 101.04399999999987, 101.04399999999987, 101.04399999999987, 100.74000000000001, 117.99199999999996, 100.74000000000001, 100.43599999999992, 100.43599999999992, 117.99199999999996, 100.74000000000001, 100.74000000000001, 100.74000000000001, 100.74000000000001, 100.74000000000001, 100.74000000000001, 101.04399999999987, 100.74000000000001, 100.74000000000001, 100.74000000000001, 100.74000000000001, 100.74000000000001, 100.74000000000001], \"power_mean\": 100.98668749999995, \"energy_millijoules\": 6748.71767371093, \"energy_joules\": 6.748717673710931, \"coremark_score\": 4489.405004, \"coremarks_per_mhz\": 3.71147900462963, \"ulpmark_cm_score\": 44.452889349427835}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1182.584, 1199.57, 1217.112, 1199.848], \"power_mean\": 1199.7785, \"energy_millijoules\": 5998.8925, \"energy_joules\": 5.9988925}}, \"1305600\": {\"active\": {\"elapsed_sec\": 61.91240206, \"elapsed_ns\": 61912402060, \"power_samples\": [-28.10200000000009, 100.74000000000001, 100.43599999999992, 100.43599999999992, 117.68399999999997, 100.43599999999992, 117.68399999999997, 100.43599999999992, 117.99199999999996, 117.99199999999996, 100.43599999999992, 100.74000000000001, 165.43499999999995, 164.79700000000003, 147.86799999999994, 165.11599999999999, 177.73000000000002, 147.55299999999988, 100.43599999999992, 117.68399999999997, 100.43599999999992, 100.43599999999992, 117.68399999999997, 100.13200000000006, 130.6199999999999, 83.18799999999987, 117.68399999999997, 100.43599999999992, 100.13200000000006, 165.11599999999999, 129.06500000000005, 117.37599999999998, 100.13200000000006, 117.68399999999997, 100.43599999999992, 100.43599999999992, 117.68399999999997, 117.68399999999997, 100.43599999999992, 117.68399999999997, 100.13200000000006, 100.43599999999992, 117.68399999999997, 100.13200000000006, 117.68399999999997, 100.43599999999992, 100.43599999999992, 100.43599999999992, 100.43599999999992, 117.37599999999998, 100.13200000000006, 117.37599999999998, 100.13200000000006, 100.13200000000006, 117.06799999999998, 117.06799999999998, 99.82799999999997, 117.06799999999998, 100.13200000000006], \"power_mean\": 111.73108474576269, \"energy_millijoules\": 6917.539841379592, \"energy_joules\": 6.917539841379592, \"coremark_score\": 4845.822094, \"coremarks_per_mhz\": 3.711567167585785, \"ulpmark_cm_score\": 43.36801910492066}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1182.31, 1199.57, 1216.83, 1199.57], \"power_mean\": 1199.57, \"energy_millijoules\": 5997.849999999999, \"energy_joules\": 5.99785}}, \"1401600\": {\"active\": {\"elapsed_sec\": 57.671923728, \"elapsed_ns\": 57671923728, \"power_samples\": [36.04500000000007, 100.13200000000006, 117.37599999999998, 117.37599999999998, 117.37599999999998, 100.13200000000006, 117.37599999999998, 100.13200000000006, 100.13200000000006, 117.37599999999998, 100.13200000000006, 117.06799999999998, 117.37599999999998, 117.06799999999998, 116.75999999999999, 116.75999999999999, 99.52399999999989, 117.06799999999998, 99.82799999999997, 129.99800000000005, 99.82799999999997, 99.82799999999997, 117.06799999999998, 117.06799999999998, 117.06799999999998, 82.58799999999997, 129.99800000000005, 99.82799999999997, 117.06799999999998, 99.82799999999997, 117.06799999999998, 117.06799999999998, 129.99800000000005, 99.82799999999997, 129.99800000000005, 99.82799999999997, 117.06799999999998, 99.82799999999997, 116.75999999999999, 116.75999999999999, 99.52399999999989, 116.452, 116.75999999999999, 99.52399999999989, 116.75999999999999, 117.06799999999998, 117.06799999999998, 116.75999999999999, 117.06799999999998, 117.06799999999998, 117.06799999999998, 99.52399999999989, 116.75999999999999, 117.06799999999998, 99.52399999999989], \"power_mean\": 110.24372727272726, \"energy_millijoules\": 6357.96783076316, \"energy_joules\": 6.35796783076316, \"coremark_score\": 5202.101649, \"coremarks_per_mhz\": 3.711545126284247, \"ulpmark_cm_score\": 47.18488799965985}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1199.014, 1199.014, 1199.014, 1216.266], \"power_mean\": 1203.327, \"energy_millijoules\": 6016.635, \"energy_joules\": 6.016635}}, \"1497600\": {\"active\": {\"elapsed_sec\": 53.987162896, \"elapsed_ns\": 53987162896, \"power_samples\": [5.571999999999889, 99.52399999999989, 116.75999999999999, 116.452, 99.52399999999989, 116.75999999999999, 116.452, 99.52399999999989, 129.6869999999999, 116.75999999999999, 116.75999999999999, 116.75999999999999, 116.75999999999999, 116.75999999999999, 129.6869999999999, 116.75999999999999, 116.75999999999999, 116.75999999999999, 116.452, 116.75999999999999, 129.6869999999999, 99.22000000000003, 116.452, 116.75999999999999, 116.75999999999999, 116.452, 116.75999999999999, 129.37599999999998, 116.452, 116.144, 116.452, 129.06500000000005, 116.452, 116.452, 116.452, 116.452, 129.37599999999998, 116.452, 99.22000000000003, 129.37599999999998, 116.452, 116.452, 116.452, 116.452, 129.37599999999998, 116.452, 129.37599999999998, 116.452, 116.452, 116.144, 116.452, 129.06500000000005], \"power_mean\": 115.24274999999999, \"energy_millijoules\": 6221.6291168330035, \"energy_joules\": 6.221629116833004, \"coremark_score\": 5557.202134, \"coremarks_per_mhz\": 3.710738604433761, \"ulpmark_cm_score\": 48.218881962656916}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1198.458, 1215.984, 1198.736, 1215.702], \"power_mean\": 1207.22, \"energy_millijoules\": 6036.1, \"energy_joules\": 6.0361}}, \"1612800\": {\"active\": {\"elapsed_sec\": 50.11682972, \"elapsed_ns\": 50116829720, \"power_samples\": [82.58799999999997, 129.37599999999998, 116.144, 129.37599999999998, 116.144, 116.144, 116.452, 116.144, 129.06500000000005, 116.452, 129.06500000000005, 116.144, 129.06500000000005, 129.06500000000005, 129.06500000000005, 129.06500000000005, 129.06500000000005, 116.144, 116.144, 129.06500000000005, 129.06500000000005, 128.7539999999999, 115.83600000000001, 115.83600000000001, 128.7539999999999, 115.83600000000001, 129.06500000000005, 129.06500000000005, 116.144, 129.06500000000005, 115.83600000000001, 146.2929999999999, 116.144, 128.7539999999999, 129.06500000000005, 115.83600000000001, 129.06500000000005, 116.144, 128.7539999999999, 116.144, 128.7539999999999, 128.7539999999999, 115.83600000000001, 128.7539999999999, 115.83600000000001, 128.7539999999999, 128.7539999999999, 115.83600000000001], \"power_mean\": 122.71885416666666, \"energy_millijoules\": 6150.279917704345, \"energy_joules\": 6.150279917704346, \"coremark_score\": 5986.470576, \"coremarks_per_mhz\": 3.7118493154761905, \"ulpmark_cm_score\": 48.77826765842197}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1180.94, 1215.138, 1215.138, 1197.902], \"power_mean\": 1202.2795, \"energy_millijoules\": 6011.397500000001, \"energy_joules\": 6.011397500000001}}, \"1708800\": {\"active\": {\"elapsed_sec\": 47.312899409, \"elapsed_ns\": 47312899409, \"power_samples\": [52.125, 145.97800000000007, 128.7539999999999, 128.7539999999999, 115.83600000000001, 145.97800000000007, 115.83600000000001, 128.7539999999999, 128.7539999999999, 128.7539999999999, 128.7539999999999, 115.83600000000001, 128.7539999999999, 128.7539999999999, 128.44299999999998, 128.44299999999998, 128.7539999999999, 128.44299999999998, 128.13200000000006, 128.13200000000006, 128.44299999999998, 128.13200000000006, 128.44299999999998, 128.44299999999998, 115.52800000000002, 128.44299999999998, 128.44299999999998, 128.44299999999998, 128.44299999999998, 128.44299999999998, 128.44299999999998, 128.44299999999998, 128.44299999999998, 128.44299999999998, 128.44299999999998, 128.44299999999998, 145.663, 115.22000000000003, 128.44299999999998, 145.663, 115.52800000000002, 145.34799999999996, 128.44299999999998, 128.13200000000006, 128.13200000000006], \"power_mean\": 126.98671111111109, \"energy_millijoules\": 6008.109489079742, \"energy_joules\": 6.008109489079742, \"coremark_score\": 6341.15409, \"coremarks_per_mhz\": 3.7108813728932586, \"ulpmark_cm_score\": 49.932512139679865}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1197.624, 1215.138, 1214.856, 1197.902], \"power_mean\": 1206.38, \"energy_millijoules\": 6031.900000000001, \"energy_joules\": 6.0319}}, \"1804800\": {\"active\": {\"elapsed_sec\": 44.784615816, \"elapsed_ns\": 44784615816, \"power_samples\": [68.76700000000005, 145.663, 128.13200000000006, 128.44299999999998, 192.692, 209.57799999999997, 192.36599999999999, 175.47599999999989, 209.57799999999997, 192.36599999999999, 145.34799999999996, 145.34799999999996, 145.34799999999996, 145.34799999999996, 145.34799999999996, 128.13200000000006, 175.47599999999989, 127.82099999999991, 127.82099999999991, 145.0329999999999, 127.50999999999999, 145.0329999999999, 145.34799999999996, 127.82099999999991, 145.0329999999999, 145.34799999999996, 145.34799999999996, 145.34799999999996, 145.34799999999996, 145.34799999999996, 145.34799999999996, 127.82099999999991, 145.34799999999996, 127.82099999999991, 145.0329999999999, 127.82099999999991, 145.0329999999999, 145.0329999999999, 145.0329999999999, 145.0329999999999, 127.82099999999991, 145.0329999999999, 162.2449999999999], \"power_mean\": 147.11609302325576, \"energy_millijoules\": 6588.5377063974265, \"energy_joules\": 6.588537706397426, \"coremark_score\": 6699.120182, \"coremarks_per_mhz\": 3.7118352072251772, \"ulpmark_cm_score\": 45.53362420749326}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1197.346, 1214.574, 1214.574, 1197.346], \"power_mean\": 1205.96, \"energy_millijoules\": 6029.8, \"energy_joules\": 6.0298}}}}, \"4\": {\"freqs\": {\"710400\": {\"active\": {\"elapsed_sec\": 46.417080087, \"elapsed_ns\": 46417080087, \"power_samples\": [81.38799999999992, 145.34799999999996, 145.0329999999999, 145.0329999999999, 161.92599999999993, 145.0329999999999, 162.2449999999999, 127.50999999999999, 161.60699999999997, 145.0329999999999, 144.71800000000007, 145.0329999999999, 145.0329999999999, 144.71800000000007, 144.71800000000007, 161.92599999999993, 127.50999999999999, 161.60699999999997, 144.40300000000002, 161.60699999999997, 144.40300000000002, 144.71800000000007, 144.71800000000007, 174.83199999999988, 144.71800000000007, 144.71800000000007, 161.92599999999993, 127.50999999999999, 161.92599999999993, 144.71800000000007, 144.71800000000007, 144.71800000000007, 161.92599999999993, 161.92599999999993, 144.40300000000002, 144.40300000000002, 161.60699999999997, 144.71800000000007, 144.40300000000002, 144.71800000000007, 161.60699999999997, 144.40300000000002, 161.60699999999997, 143.7729999999999], \"power_mean\": 147.8305909090909, \"energy_millijoules\": 6861.864377535806, \"energy_joules\": 6.861864377535806, \"coremark_score\": 6465.099239, \"coremarks_per_mhz\": 9.100646451295045, \"ulpmark_cm_score\": 43.7198964441985}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1214.01, 1214.292, 1214.292, 1214.292], \"power_mean\": 1214.2214999999999, \"energy_millijoules\": 6071.107499999999, \"energy_joules\": 6.071107499999999}}, \"844800\": {\"active\": {\"elapsed_sec\": 39.041673996, \"elapsed_ns\": 39041673996, \"power_samples\": [98.0039999999999, 161.60699999999997, 174.51, 174.51, 161.60699999999997, 161.60699999999997, 161.288, 161.60699999999997, 174.51, 174.51, 174.51, 161.60699999999997, 174.18799999999987, 174.18799999999987, 161.288, 174.18799999999987, 160.96900000000005, 174.18799999999987, 173.86599999999999, 161.288, 174.18799999999987, 161.60699999999997, 174.18799999999987, 174.51, 161.288, 191.38799999999992, 161.288, 160.96900000000005, 174.18799999999987, 174.18799999999987, 174.51, 161.288, 161.60699999999997, 174.51, 161.288, 160.96900000000005, 174.18799999999987], \"power_mean\": 166.7622162162162, \"energy_millijoules\": 6510.676080363977, \"energy_joules\": 6.510676080363977, \"coremark_score\": 7686.788972, \"coremarks_per_mhz\": 9.09894527935606, \"ulpmark_cm_score\": 46.07816397206304}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1196.512, 1213.728, 1226.64, 1226.64], \"power_mean\": 1215.88, \"energy_millijoules\": 6079.400000000001, \"energy_joules\": 6.079400000000001}}, \"960000\": {\"active\": {\"elapsed_sec\": 34.363938997, \"elapsed_ns\": 34363938997, \"power_samples\": [145.0329999999999, 191.38799999999992, 191.38799999999992, 208.58799999999997, 174.18799999999987, 208.25800000000004, 173.86599999999999, 191.0619999999999, 208.25800000000004, 191.0619999999999, 191.0619999999999, 208.25800000000004, 191.0619999999999, 191.0619999999999, 208.25800000000004, 190.73599999999988, 191.0619999999999, 208.25800000000004, 191.0619999999999, 191.0619999999999, 173.54399999999987, 207.59799999999996, 207.59799999999996, 190.73599999999988, 190.73599999999988, 190.73599999999988, 191.0619999999999, 208.25800000000004, 190.73599999999988, 208.25800000000004, 191.0619999999999, 190.73599999999988, 190.73599999999988], \"power_mean\": 193.2354242424242, \"energy_millijoules\": 6640.330330726079, \"energy_joules\": 6.640330330726079, \"coremark_score\": 8733.370208, \"coremarks_per_mhz\": 9.097260633333333, \"ulpmark_cm_score\": 45.178475325518455}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1213.446, 1213.164, 1213.164, 1243.278], \"power_mean\": 1220.763, \"energy_millijoules\": 6103.815, \"energy_joules\": 6.103815}}, \"1075200\": {\"active\": {\"elapsed_sec\": 30.673268061, \"elapsed_ns\": 30673268061, \"power_samples\": [32.865999999999985, 225.1199999999999, 224.78600000000006, 225.45399999999995, 207.59799999999996, 224.452, 207.26800000000003, 237.33999999999992, 207.59799999999996, 224.78600000000006, 207.59799999999996, 224.78600000000006, 207.59799999999996, 237.6769999999999, 207.59799999999996, 224.78600000000006, 224.78600000000006, 207.59799999999996, 237.6769999999999, 207.59799999999996, 224.78600000000006, 224.452, 224.78600000000006, 224.78600000000006, 224.452, 207.59799999999996, 224.78600000000006, 237.33999999999992, 224.78600000000006], \"power_mean\": 214.57731034482757, \"energy_millijoules\": 6581.787360015284, \"energy_joules\": 6.5817873600152845, \"coremark_score\": 9785.054959, \"coremarks_per_mhz\": 9.10068355561756, \"ulpmark_cm_score\": 45.580323943996774}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1212.882, 1213.164, 1226.07, 1213.164], \"power_mean\": 1216.32, \"energy_millijoules\": 6081.599999999999, \"energy_joules\": 6.0816}}, \"1209600\": {\"active\": {\"elapsed_sec\": 27.276655511, \"elapsed_ns\": 27276655511, \"power_samples\": [161.288, 237.33999999999992, 237.6769999999999, 254.865, 237.33999999999992, 254.5239999999999, 237.33999999999992, 254.5239999999999, 237.00299999999993, 254.5239999999999, 254.183, 237.33999999999992, 237.00299999999993, 254.183, 254.183, 237.00299999999993, 254.183, 254.183, 236.66599999999994, 236.66599999999994, 253.84199999999987, 237.00299999999993, 271.36300000000006, 236.66599999999994, 254.5239999999999, 254.183], \"power_mean\": 243.44611538461533, \"energy_millijoules\": 6640.39582483731, \"energy_joules\": 6.64039582483731, \"coremark_score\": 11003.521127, \"coremarks_per_mhz\": 9.096826328538361, \"ulpmark_cm_score\": 45.178029730983695}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1212.6, 1212.6, 1225.785, 1212.6], \"power_mean\": 1215.89625, \"energy_millijoules\": 6079.48125, \"energy_joules\": 6.07948125}}, \"1324800\": {\"active\": {\"elapsed_sec\": 26.093858271, \"elapsed_ns\": 26093858271, \"power_samples\": [79.28800000000001, 271.01800000000003, 253.84199999999987, 271.01800000000003, 283.89999999999986, 271.01800000000003, 283.89999999999986, 271.01800000000003, 271.01800000000003, 283.89999999999986, 270.328, 270.673, 270.673, 270.673, 271.01800000000003, 271.01800000000003, 283.5519999999999, 271.01800000000003, 271.01800000000003, 270.673, 283.5519999999999, 271.01800000000003, 283.20399999999995, 253.84199999999987, 270.673], \"power_mean\": 264.91411999999997, \"energy_millijoules\": 6912.6315012666855, \"energy_joules\": 6.912631501266685, \"coremark_score\": 11502.626433, \"coremarks_per_mhz\": 8.68253806838768, \"ulpmark_cm_score\": 43.398812730727414}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1212.6, 1212.318, 1212.318, 1225.215], \"power_mean\": 1215.61275, \"energy_millijoules\": 6078.06375, \"energy_joules\": 6.07806375}}, \"1440000\": {\"active\": {\"elapsed_sec\": 23.203113481, \"elapsed_ns\": 23203113481, \"power_samples\": [14.518000000000029, 300.72399999999993, 317.53999999999996, 300.02, 317.18399999999997, 393.29999999999995, 300.37200000000007, 300.37200000000007, 317.53999999999996, 283.20399999999995, 300.37200000000007, 317.53999999999996, 300.72399999999993, 300.37200000000007, 317.53999999999996, 300.37200000000007, 300.37200000000007, 317.53999999999996, 317.18399999999997, 317.53999999999996, 300.37200000000007, 300.37200000000007], \"power_mean\": 297.0488181818182, \"energy_millijoules\": 6892.457437669664, \"energy_joules\": 6.8924574376696635, \"coremark_score\": 12937.168485, \"coremarks_per_mhz\": 8.98414478125, \"ulpmark_cm_score\": 43.525840052402245}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1194.844, 1225.215, 1212.036, 1224.93], \"power_mean\": 1214.25625, \"energy_millijoules\": 6071.28125, \"energy_joules\": 6.07128125}}, \"1555200\": {\"active\": {\"elapsed_sec\": 22.033613377, \"elapsed_ns\": 22033613377, \"power_samples\": [284.94399999999996, 334.34799999999996, 334.34799999999996, 347.221, 334.34799999999996, 334.34799999999996, 333.98800000000006, 334.34799999999996, 334.34799999999996, 347.221, 334.34799999999996, 334.34799999999996, 333.98800000000006, 333.98800000000006, 347.221, 346.4949999999999, 334.34799999999996, 346.85799999999995, 346.85799999999995, 346.85799999999995, 333.62799999999993], \"power_mean\": 336.1142857142857, \"energy_millijoules\": 7405.812221915086, \"energy_joules\": 7.405812221915086, \"coremark_score\": 13624.596939, \"coremarks_per_mhz\": 8.76067190007716, \"ulpmark_cm_score\": 40.50872355529726}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1194.566, 1211.472, 1211.472, 1211.472], \"power_mean\": 1207.2455, \"energy_millijoules\": 6036.2275, \"energy_joules\": 6.0362275}}, \"1670400\": {\"active\": {\"elapsed_sec\": 19.754982753, \"elapsed_ns\": 19754982753, \"power_samples\": [271.70799999999986, 380.807, 393.674, 380.807, 394.048, 380.807, 393.674, 380.807, 380.4359999999999, 410.8299999999999, 363.65100000000007, 380.807, 393.29999999999995, 380.807, 380.807, 393.674, 380.06500000000005, 393.29999999999995, 380.4359999999999], \"power_mean\": 379.70763157894737, \"energy_millijoules\": 7501.117713024583, \"energy_joules\": 7.501117713024583, \"coremark_score\": 15196.028771, \"coremarks_per_mhz\": 9.09723944624042, \"ulpmark_cm_score\": 39.994039752115114}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1194.288, 1224.36, 1211.472, 1224.36], \"power_mean\": 1213.62, \"energy_millijoules\": 6068.099999999999, \"energy_joules\": 6.068099999999999}}, \"1766400\": {\"active\": {\"elapsed_sec\": 18.685283639, \"elapsed_ns\": 18685283639, \"power_samples\": [271.36300000000006, 410.8299999999999, 427.60400000000004, 410.452, 427.60400000000004, 410.452, 427.222, 427.60400000000004, 410.07400000000007, 427.222, 427.222, 427.222, 427.222, 410.07400000000007, 426.8399999999999, 427.222, 409.6959999999999, 426.45799999999986], \"power_mean\": 412.91016666666667, \"energy_millijoules\": 7715.343581593431, \"energy_joules\": 7.715343581593431, \"coremark_score\": 16067.69857, \"coremarks_per_mhz\": 9.096296744791667, \"ulpmark_cm_score\": 38.88355674991751}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1211.19, 1211.19, 1224.36, 1211.472], \"power_mean\": 1214.5529999999999, \"energy_millijoules\": 6072.764999999999, \"energy_joules\": 6.0727649999999995}}, \"1881600\": {\"active\": {\"elapsed_sec\": 17.538945514, \"elapsed_ns\": 17538945514, \"power_samples\": [318.25199999999995, 490.73299999999995, 491.1299999999999, 520.7280000000001, 503.58799999999997, 520.3240000000001, 503.58799999999997, 503.1879999999999, 520.3240000000001, 503.58799999999997, 537.46, 503.1879999999999, 520.3240000000001, 520.3240000000001, 520.3240000000001, 503.1879999999999], \"power_mean\": 498.7656875, \"energy_millijoules\": 8747.824217315252, \"energy_joules\": 8.747824217315252, \"coremark_score\": 17118.402282, \"coremarks_per_mhz\": 9.097790328443878, \"ulpmark_cm_score\": 34.29424192202977}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1210.908, 1223.79, 1210.908, 1241.255], \"power_mean\": 1221.71525, \"energy_millijoules\": 6108.57625, \"energy_joules\": 6.1085762500000005}}, \"1996800\": {\"active\": {\"elapsed_sec\": 16.522707077, \"elapsed_ns\": 16522707077, \"power_samples\": [382.29099999999994, 549.9010000000001, 549.9010000000001, 537.46, 550.3119999999999, 549.9010000000001, 549.9010000000001, 537.0519999999999, 536.644, 549.49, 567.0329999999999, 549.49, 549.49, 549.49, 549.49], \"power_mean\": 537.1897333333334, \"energy_millijoules\": 8875.82860863841, \"energy_joules\": 8.875828608638411, \"coremark_score\": 18171.906233, \"coremarks_per_mhz\": 9.100513938802084, \"ulpmark_cm_score\": 33.79966121788614}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1210.626, 1223.505, 1210.626, 1223.505], \"power_mean\": 1217.0655000000002, \"energy_millijoules\": 6085.327500000001, \"energy_joules\": 6.085327500000001}}, \"2112000\": {\"active\": {\"elapsed_sec\": 15.630555724, \"elapsed_ns\": 15630555724, \"power_samples\": [493.9089999999999, 613.2939999999999, 647.5419999999999, 629.988, 629.988, 629.988, 660.385, 630.4179999999999, 647.108, 629.988, 647.108, 629.988, 646.674, 659.9479999999999, 646.674], \"power_mean\": 629.5333333333333, \"energy_millijoules\": 9839.955846782133, \"energy_joules\": 9.839955846782134, \"coremark_score\": 19208.605455, \"coremarks_per_mhz\": 9.094983643465909, \"ulpmark_cm_score\": 30.487941680968632}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1223.22, 1210.344, 1222.935, 1223.22], \"power_mean\": 1219.92975, \"energy_millijoules\": 6099.64875, \"energy_joules\": 6.09964875}}, \"2227200\": {\"active\": {\"elapsed_sec\": 14.810340984, \"elapsed_ns\": 14810340984, \"power_samples\": [617.1279999999999, 723.2439999999999, 740.356, 723.2439999999999, 723.2439999999999, 739.8999999999999, 740.356, 739.8999999999999, 739.8999999999999, 722.7919999999999, 740.356, 757.008, 739.8999999999999, 757.008], \"power_mean\": 728.8811428571428, \"energy_millijoules\": 10794.9782625219, \"energy_joules\": 10.7949782625219, \"coremark_score\": 20274.379942, \"coremarks_per_mhz\": 9.103080074533047, \"ulpmark_cm_score\": 27.790699777649635}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1222.935, 1210.062, 1222.935, 1222.65], \"power_mean\": 1219.6455, \"energy_millijoules\": 6098.227500000001, \"energy_joules\": 6.098227500000001}}, \"2342400\": {\"active\": {\"elapsed_sec\": 14.09782562, \"elapsed_ns\": 14097825620, \"power_samples\": [-3.7339999999999236, 866.2659999999998, 879.5739999999998, 879.0849999999998, 896.1769999999999, 879.5739999999998, 879.0849999999998, 896.1769999999999, 896.1769999999999, 878.5959999999998, 896.6699999999998, 896.1769999999999, 878.5959999999998], \"power_mean\": 816.8015384615384, \"energy_millijoules\": 11515.125655378492, \"energy_joules\": 11.515125655378492, \"coremark_score\": 21300.766828, \"coremarks_per_mhz\": 9.09356507342896, \"ulpmark_cm_score\": 26.052690085919803}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1222.65, 1209.78, 1222.935, 1209.78], \"power_mean\": 1216.28625, \"energy_millijoules\": 6081.431250000001, \"energy_joules\": 6.0814312500000005}}, \"2419200\": {\"active\": {\"elapsed_sec\": 13.646357495, \"elapsed_ns\": 13646357495, \"power_samples\": [170.64599999999996, 973.0910000000001, 959.7639999999999, 959.2560000000001, 972.0690000000002, 958.7479999999998, 958.7479999999998, 971.5579999999998, 971.5579999999998, 988.1229999999998, 971.5579999999998, 971.5579999999998, 971.5579999999998], \"power_mean\": 907.5565384615384, \"energy_millijoules\": 12384.84097077087, \"energy_joules\": 12.38484097077087, \"coremark_score\": 22007.042254, \"coremarks_per_mhz\": 9.096826328538361, \"ulpmark_cm_score\": 24.223161258834242}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1222.365, 1209.498, 1222.365, 1222.365], \"power_mean\": 1219.14825, \"energy_millijoules\": 6095.74125, \"energy_joules\": 6.09574125}}}}, \"7\": {\"freqs\": {\"844800\": {\"active\": {\"elapsed_sec\": 38.255900246, \"elapsed_ns\": 38255900246, \"power_samples\": [75.98800000000006, 250.43200000000002, 233.29600000000005, 250.7729999999999, 250.43200000000002, 233.29600000000005, 267.568, 232.95900000000006, 267.22299999999996, 267.568, 232.95900000000006, 267.22299999999996, 233.29600000000005, 250.43200000000002, 267.568, 250.43200000000002, 233.63300000000004, 267.568, 250.43200000000002, 250.43200000000002, 250.43200000000002, 267.568, 250.43200000000002, 250.43200000000002, 250.43200000000002, 267.568, 250.7729999999999, 250.43200000000002, 250.43200000000002, 233.29600000000005, 267.568, 233.29600000000005, 250.0909999999999, 232.95900000000006, 266.87799999999993, 250.0909999999999], \"power_mean\": 246.0052777777778, \"energy_millijoules\": 9411.153366656188, \"energy_joules\": 9.411153366656189, \"coremark_score\": 7844.777993, \"coremarks_per_mhz\": 9.285958798532198, \"ulpmark_cm_score\": 31.87707056851321}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1209.216, 1222.08, 1209.216, 1222.08], \"power_mean\": 1215.648, \"energy_millijoules\": 6078.24, \"energy_joules\": 6.07824}}, \"960000\": {\"active\": {\"elapsed_sec\": 33.682931341, \"elapsed_ns\": 33682931341, \"power_samples\": [140.308, 267.568, 280.0719999999999, 280.0719999999999, 280.0719999999999, 267.22299999999996, 297.20399999999995, 280.0719999999999, 267.22299999999996, 296.85199999999986, 280.0719999999999, 267.22299999999996, 297.20399999999995, 279.72399999999993, 279.72399999999993, 279.72399999999993, 266.87799999999993, 296.85199999999986, 266.87799999999993, 280.0719999999999, 279.72399999999993, 279.72399999999993, 279.72399999999993, 279.72399999999993, 280.0719999999999, 279.72399999999993, 266.87799999999993, 296.85199999999986, 296.85199999999986, 266.87799999999993, 279.72399999999993, 280.0719999999999], \"power_mean\": 275.5301562499999, \"energy_millijoules\": 9280.663335343748, \"energy_joules\": 9.280663335343748, \"coremark_score\": 8910.00891, \"coremarks_per_mhz\": 9.28125928125, \"ulpmark_cm_score\": 32.32527559290979}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1209.216, 1222.08, 1222.08, 1222.365], \"power_mean\": 1218.93525, \"energy_millijoules\": 6094.67625, \"energy_joules\": 6.09467625}}, \"1075200\": {\"active\": {\"elapsed_sec\": 35.997491653, \"elapsed_ns\": 35997491653, \"power_samples\": [221.11199999999985, 232.62200000000007, 220.1099999999999, 232.62200000000007, 220.1099999999999, 220.1099999999999, 232.95900000000006, 232.62200000000007, 219.77600000000007, 220.1099999999999, 250.0909999999999, 232.95900000000006, 219.77600000000007, 232.62200000000007, 232.95900000000006, 232.95900000000006, 232.95900000000006, 249.75, 296.5, 296.5, 296.5, 296.5, 296.5, 296.5, 296.1479999999999, 296.1479999999999, 295.79600000000005, 296.1479999999999, 296.1479999999999, 313.624, 313.624, 296.1479999999999, 296.1479999999999, 296.1479999999999], \"power_mean\": 262.09729411764704, \"energy_millijoules\": 9434.845157273885, \"energy_joules\": 9.434845157273886, \"coremark_score\": 8337.038684, \"coremarks_per_mhz\": 7.753942228422618, \"ulpmark_cm_score\": 31.797024222354313}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1208.934, 1221.795, 1208.934, 1208.934], \"power_mean\": 1212.14925, \"energy_millijoules\": 6060.74625, \"energy_joules\": 6.06074625}}, \"1190400\": {\"active\": {\"elapsed_sec\": 26.925539729, \"elapsed_ns\": 26925539729, \"power_samples\": [62.52999999999997, 232.62200000000007, 249.75, 360.34799999999996, 330.3879999999999, 342.865, 342.865, 330.3879999999999, 342.50199999999995, 342.50199999999995, 342.865, 330.028, 342.865, 342.865, 342.865, 359.981, 342.865, 342.865, 359.981, 359.981, 343.22800000000007, 342.865, 342.865, 342.865, 342.865, 329.6679999999999], \"power_mean\": 324.93373076923075, \"energy_millijoules\": 8749.016077119113, \"energy_joules\": 8.749016077119114, \"coremark_score\": 11147.029317, \"coremarks_per_mhz\": 9.364103928931451, \"ulpmark_cm_score\": 34.28957009058147}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1191.508, 1238.654, 1208.652, 1221.51], \"power_mean\": 1215.0810000000001, \"energy_millijoules\": 6075.405000000001, \"energy_joules\": 6.075405000000001}}, \"1305600\": {\"active\": {\"elapsed_sec\": 26.049793063, \"elapsed_ns\": 26049793063, \"power_samples\": [330.74800000000005, 330.028, 342.50199999999995, 342.50199999999995, 330.028, 330.028, 342.865, 342.50199999999995, 359.61400000000003, 329.6679999999999, 359.61400000000003, 342.50199999999995, 342.50199999999995, 342.865, 342.50199999999995, 359.61400000000003, 342.50199999999995, 342.50199999999995, 342.50199999999995, 342.50199999999995, 359.61400000000003, 329.6679999999999, 342.1389999999999, 359.24700000000007, 312.55600000000004], \"power_mean\": 341.73264, \"energy_millijoules\": 8902.064554872677, \"energy_joules\": 8.902064554872677, \"coremark_score\": 11522.949875, \"coremarks_per_mhz\": 8.825788813572304, \"ulpmark_cm_score\": 33.70004768565631}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1191.23, 1238.365, 1221.225, 1220.94], \"power_mean\": 1217.94, \"energy_millijoules\": 6089.700000000001, \"energy_joules\": 6.089700000000001}}, \"1420800\": {\"active\": {\"elapsed_sec\": 40.452725245, \"elapsed_ns\": 40452725245, \"power_samples\": [156.18399999999997, 249.06799999999998, 248.72699999999986, 266.1879999999999, 266.1879999999999, 265.8430000000001, 248.72699999999986, 265.8430000000001, 278.68000000000006, 265.8430000000001, 248.72699999999986, 265.8430000000001, 248.38599999999997, 278.68000000000006, 265.8430000000001, 248.72699999999986, 248.72699999999986, 248.38599999999997, 265.49800000000005, 265.49800000000005, 265.49800000000005, 265.49800000000005, 248.72699999999986, 278.68000000000006, 265.8430000000001, 278.3319999999999, 248.38599999999997, 265.49800000000005, 265.8430000000001, 248.72699999999986, 278.3319999999999, 248.72699999999986, 265.8430000000001, 277.9839999999999, 248.38599999999997, 265.49800000000005, 265.153, 248.38599999999997, 278.3319999999999], \"power_mean\": 259.05843589743586, \"energy_millijoules\": 10479.619729758419, \"energy_joules\": 10.479619729758419, \"coremark_score\": 7418.397626, \"coremarks_per_mhz\": 5.221282112894144, \"ulpmark_cm_score\": 28.626992938313016}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1220.94, 1220.94, 1220.94, 1208.088], \"power_mean\": 1217.727, \"energy_millijoules\": 6088.635, \"energy_joules\": 6.088635}}, \"1555200\": {\"active\": {\"elapsed_sec\": 26.928889417, \"elapsed_ns\": 26928889417, \"power_samples\": [280.0719999999999, 342.1389999999999, 375.9839999999999, 342.1389999999999, 375.9839999999999, 375.9839999999999, 358.8799999999999, 375.9839999999999, 358.8799999999999, 375.9839999999999, 358.5129999999999, 375.9839999999999, 358.8799999999999, 375.61300000000006, 375.9839999999999, 358.5129999999999, 358.14599999999996, 375.61300000000006, 375.61300000000006, 375.61300000000006, 358.5129999999999, 375.61300000000006, 388.0640000000001, 375.24199999999996, 375.24199999999996, 375.24199999999996], \"power_mean\": 365.3237692307692, \"energy_millijoules\": 9837.76338301701, \"energy_joules\": 9.83776338301701, \"coremark_score\": 11146.201003, \"coremarks_per_mhz\": 7.1670531140689295, \"ulpmark_cm_score\": 30.49473628506778}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1207.806, 1207.242, 1220.085, 1207.524], \"power_mean\": 1210.66425, \"energy_millijoules\": 6053.32125, \"energy_joules\": 6.05332125}}, \"1670400\": {\"active\": {\"elapsed_sec\": 19.348138274, \"elapsed_ns\": 19348138274, \"power_samples\": [219.77600000000007, 486.366, 485.96900000000005, 498.788, 498.3879999999999, 498.3879999999999, 498.3879999999999, 498.3879999999999, 485.5719999999999, 485.5719999999999, 498.3879999999999, 515.4759999999999, 485.17499999999995, 497.98800000000006, 497.58799999999997, 497.98800000000006, 497.98800000000006, 497.98800000000006], \"power_mean\": 480.2318888888889, \"energy_millijoules\": 9291.592989806426, \"energy_joules\": 9.291592989806427, \"coremark_score\": 15515.903801, \"coremarks_per_mhz\": 9.288735513050765, \"ulpmark_cm_score\": 32.28725153255448}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1207.524, 1207.242, 1220.37, 1207.524], \"power_mean\": 1210.665, \"energy_millijoules\": 6053.325, \"energy_joules\": 6.053325}}, \"1785600\": {\"active\": {\"elapsed_sec\": 18.619542701, \"elapsed_ns\": 18619542701, \"power_samples\": [219.442, 515.0719999999999, 562.0529999999999, 532.156, 532.156, 544.969, 531.748, 544.558, 544.1469999999999, 544.558, 544.1469999999999, 531.3399999999999, 544.1469999999999, 544.1469999999999, 530.932, 544.1469999999999, 544.1469999999999], \"power_mean\": 520.8156470588235, \"energy_millijoules\": 9697.34917976071, \"energy_joules\": 9.697349179760709, \"coremark_score\": 16122.964476, \"coremarks_per_mhz\": 9.029437990591397, \"ulpmark_cm_score\": 30.93628933421605}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1207.242, 1220.085, 1207.242, 1220.085], \"power_mean\": 1213.6635, \"energy_millijoules\": 6068.317500000001, \"energy_joules\": 6.068317500000001}}, \"1900800\": {\"active\": {\"elapsed_sec\": 17.010761296, \"elapsed_ns\": 17010761296, \"power_samples\": [266.1879999999999, 595.375, 595.375, 607.7559999999999, 595.375, 608.182, 607.3299999999999, 607.7559999999999, 607.7559999999999, 607.7559999999999, 607.3299999999999, 594.529, 606.904, 623.9680000000001, 607.3299999999999, 606.904], \"power_mean\": 584.1133749999999, \"energy_millijoules\": 9936.213191925932, \"energy_joules\": 9.936213191925932, \"coremark_score\": 17649.135192, \"coremarks_per_mhz\": 9.285109002525253, \"ulpmark_cm_score\": 30.192588887261095}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1206.678, 1236.631, 1219.8, 1219.8], \"power_mean\": 1220.72725, \"energy_millijoules\": 6103.63625, \"energy_joules\": 6.103636249999999}}, \"2035200\": {\"active\": {\"elapsed_sec\": 15.879561712, \"elapsed_ns\": 15879561712, \"power_samples\": [330.028, 687.9579999999999, 687.9579999999999, 687.9579999999999, 687.9579999999999, 687.9579999999999, 670.894, 687.5129999999999, 687.5129999999999, 687.5129999999999, 687.5129999999999, 687.5129999999999, 687.068, 687.068, 687.068], \"power_mean\": 662.6320666666666, \"energy_millijoules\": 10522.30679498343, \"energy_joules\": 10.522306794983429, \"coremark_score\": 18908.357494, \"coremarks_per_mhz\": 9.290663076847483, \"ulpmark_cm_score\": 28.51085848808616}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1206.678, 1219.515, 1219.515, 1219.515], \"power_mean\": 1216.30575, \"energy_millijoules\": 6081.5287499999995, \"energy_joules\": 6.0815287499999995}}, \"2150400\": {\"active\": {\"elapsed_sec\": 15.035621922, \"elapsed_ns\": 15035621922, \"power_samples\": [453.73, 780.876, 780.876, 780.4089999999999, 796.99, 797.461, 780.4089999999999, 797.461, 796.99, 796.99, 809.7760000000001, 796.99, 796.99, 796.99], \"power_mean\": 768.7812857142857, \"energy_millijoules\": 11559.10475270906, \"energy_joules\": 11.55910475270906, \"coremark_score\": 19970.709626, \"coremarks_per_mhz\": 9.286974342447916, \"ulpmark_cm_score\": 25.953567029461365}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1218.945, 1206.114, 1218.945, 1219.23], \"power_mean\": 1215.8085, \"energy_millijoules\": 6079.0425000000005, \"energy_joules\": 6.079042500000001}}, \"2265600\": {\"active\": {\"elapsed_sec\": 14.271938015, \"elapsed_ns\": 14271938015, \"power_samples\": [645.806, 890.2609999999997, 872.7279999999998, 906.8079999999998, 889.7679999999998, 889.7679999999998, 906.3109999999999, 889.2749999999999, 919.088, 906.3109999999999, 889.2749999999999, 906.3109999999999, 905.8140000000001], \"power_mean\": 878.2710769230769, \"energy_millijoules\": 12534.63037021345, \"energy_joules\": 12.534630370213451, \"coremark_score\": 21040.819189, \"coremarks_per_mhz\": 9.287084740907487, \"ulpmark_cm_score\": 23.933693386994655}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1205.832, 1235.764, 1205.832, 1218.945], \"power_mean\": 1216.59325, \"energy_millijoules\": 6082.9662499999995, \"energy_joules\": 6.082966249999999}}, \"2380800\": {\"active\": {\"elapsed_sec\": 13.59061187, \"elapsed_ns\": 13590611870, \"power_samples\": [894.2050000000002, 998.452, 1015.4759999999999, 1015.4759999999999, 1015.4759999999999, 1015.999, 1015.4759999999999, 1028.244, 1027.718, 1015.4759999999999, 1027.718, 1015.4759999999999, 1027.718], \"power_mean\": 1008.6853846153846, \"energy_millijoules\": 13708.65156124936, \"energy_joules\": 13.70865156124936, \"coremark_score\": 22094.564737, \"coremarks_per_mhz\": 9.280311129452285, \"ulpmark_cm_score\": 21.883990461032553}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1205.55, 1235.475, 1205.55, 1235.186], \"power_mean\": 1220.4402499999999, \"energy_millijoules\": 6102.201249999999, \"energy_joules\": 6.102201249999999}}, \"2496000\": {\"active\": {\"elapsed_sec\": 12.954183953, \"elapsed_ns\": 12954183953, \"power_samples\": [88.88400000000001, 1092.6249999999998, 1106.928, 1137.244, 1123.936, 1153.7, 1136.6919999999998, 1136.6919999999998, 1123.936, 1136.6919999999998, 1136.6919999999998, 1136.14], \"power_mean\": 1042.5134166666667, \"energy_millijoules\": 13504.910572970535, \"energy_joules\": 13.504910572970536, \"coremark_score\": 23182.134302, \"coremarks_per_mhz\": 9.287714063301282, \"ulpmark_cm_score\": 22.214141913715174}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1218.09, 1218.09, 1218.09, 1235.186], \"power_mean\": 1222.364, \"energy_millijoules\": 6111.82, \"energy_joules\": 6.11182}}, \"2592000\": {\"active\": {\"elapsed_sec\": 12.482138484, \"elapsed_ns\": 12482138484, \"power_samples\": [374.87099999999987, 1280.088, 1292.249, 1280.088, 1309.2450000000001, 1278.916, 1292.249, 1308.059, 1290.4819999999997, 1308.059, 1324.45, 1290.4819999999997], \"power_mean\": 1219.1031666666665, \"energy_millijoules\": 15217.014552616265, \"energy_joules\": 15.217014552616265, \"coremark_score\": 24061.59769, \"coremarks_per_mhz\": 9.28302380015432, \"ulpmark_cm_score\": 19.71477381208267}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1217.805, 1217.805, 1217.805, 1234.897], \"power_mean\": 1222.078, \"energy_millijoules\": 6110.389999999999, \"energy_joules\": 6.11039}}, \"2688000\": {\"active\": {\"elapsed_sec\": 12.032054579, \"elapsed_ns\": 12032054579, \"power_samples\": [703.444, 1400.878, 1400.2630000000001, 1434.8459999999998, 1433.6000000000001, 1434.2230000000002, 1433.6000000000001, 1446.332, 1445.706, 1446.332, 1432.977], \"power_mean\": 1364.7455454545454, \"energy_millijoules\": 16420.692889356218, \"energy_joules\": 16.420692889356218, \"coremark_score\": 24962.556166, \"coremarks_per_mhz\": 9.28666524032738, \"ulpmark_cm_score\": 18.269631008960527}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1204.422, 1234.319, 1217.52, 1217.52], \"power_mean\": 1218.44525, \"energy_millijoules\": 6092.22625, \"energy_joules\": 6.0922262499999995}}, \"2764800\": {\"active\": {\"elapsed_sec\": 11.704964319, \"elapsed_ns\": 11704964319, \"power_samples\": [1194.1609999999998, 1572.9959999999999, 1589.3079999999998, 1588.648, 1601.3709999999999, 1600.7079999999999, 1587.3279999999997, 1617.668, 1600.0449999999998, 1617.001, 1600.0449999999998], \"power_mean\": 1560.8435454545454, \"energy_millijoules\": 18269.61800708691, \"energy_joules\": 18.26961800708691, \"coremark_score\": 25658.569962, \"coremarks_per_mhz\": 9.28044341796875, \"ulpmark_cm_score\": 16.42070457541192}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1204.14, 1216.665, 1216.665, 1234.03], \"power_mean\": 1217.875, \"energy_millijoules\": 6089.375, \"energy_joules\": 6.089375}}, \"2841600\": {\"active\": {\"elapsed_sec\": 11.382617652, \"elapsed_ns\": 11382617652, \"power_samples\": [57.480999999999995, 1742.7769999999998, 1771.7319999999997, 1787.968, 1804.9080000000001, 1787.968, 1816.898, 1787.968, 1816.898, 1816.1829999999998, 1804.1960000000001], \"power_mean\": 1635.907, \"energy_millijoules\": 18620.903895230364, \"energy_joules\": 18.620903895230363, \"coremark_score\": 26389.866291, \"coremarks_per_mhz\": 9.286974342271959, \"ulpmark_cm_score\": 16.11092574710314}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1216.665, 1216.665, 1233.741, 1216.665], \"power_mean\": 1220.934, \"energy_millijoules\": 6104.67, \"energy_joules\": 6.1046700000000005}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm8350/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 cpu7 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 1210 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 403 499 595 691 806 902 998 1094 1209 1305 1401 1497 1612 1708 1804\n\n 300:  1112     3.7 C/MHz     67 mW   18.0 J   16.7 I/mJ   269.8 s\n 403:  1496     3.7 C/MHz     63 mW   12.7 J   23.6 I/mJ   200.6 s\n 499:  1852     3.7 C/MHz     66 mW   10.7 J   27.9 I/mJ   162.0 s\n 595:  2209     3.7 C/MHz     71 mW    9.6 J   31.1 I/mJ   135.8 s\n 691:  2565     3.7 C/MHz     76 mW    8.9 J   33.8 I/mJ   117.0 s\n 806:  2993     3.7 C/MHz     80 mW    8.0 J   37.3 I/mJ   100.3 s\n 902:  3348     3.7 C/MHz     84 mW    7.5 J   39.8 I/mJ    89.6 s\n 998:  3706     3.7 C/MHz     88 mW    7.1 J   42.0 I/mJ    81.0 s\n1094:  4062     3.7 C/MHz     94 mW    7.0 J   43.0 I/mJ    73.9 s\n1209:  4489     3.7 C/MHz    101 mW    6.7 J   44.5 I/mJ    66.8 s\n1305:  4846     3.7 C/MHz    112 mW    6.9 J   43.4 I/mJ    61.9 s\n1401:  5202     3.7 C/MHz    110 mW    6.4 J   47.2 I/mJ    57.7 s\n1497:  5557     3.7 C/MHz    115 mW    6.2 J   48.2 I/mJ    54.0 s\n1612:  5986     3.7 C/MHz    123 mW    6.2 J   48.8 I/mJ    50.1 s\n1708:  6341     3.7 C/MHz    127 mW    6.0 J   49.9 I/mJ    47.3 s\n1804:  6699     3.7 C/MHz    147 mW    6.6 J   45.5 I/mJ    44.8 s\n\n\n===== CPU 4 =====\nFrequencies: 710 844 960 1075 1209 1324 1440 1555 1670 1766 1881 1996 2112 2227 2342 2419\n\n 710:  6465     9.1 C/MHz    148 mW    6.9 J   43.7 I/mJ    46.4 s\n 844:  7687     9.1 C/MHz    167 mW    6.5 J   46.1 I/mJ    39.0 s\n 960:  8733     9.1 C/MHz    193 mW    6.6 J   45.2 I/mJ    34.4 s\n1075:  9785     9.1 C/MHz    215 mW    6.6 J   45.6 I/mJ    30.7 s\n1209: 11004     9.1 C/MHz    243 mW    6.6 J   45.2 I/mJ    27.3 s\n1324: 11503     8.7 C/MHz    265 mW    6.9 J   43.4 I/mJ    26.1 s\n1440: 12937     9.0 C/MHz    297 mW    6.9 J   43.5 I/mJ    23.2 s\n1555: 13625     8.8 C/MHz    336 mW    7.4 J   40.5 I/mJ    22.0 s\n1670: 15196     9.1 C/MHz    380 mW    7.5 J   40.0 I/mJ    19.8 s\n1766: 16068     9.1 C/MHz    413 mW    7.7 J   38.9 I/mJ    18.7 s\n1881: 17118     9.1 C/MHz    499 mW    8.7 J   34.3 I/mJ    17.5 s\n1996: 18172     9.1 C/MHz    537 mW    8.9 J   33.8 I/mJ    16.5 s\n2112: 19209     9.1 C/MHz    630 mW    9.8 J   30.5 I/mJ    15.6 s\n2227: 20274     9.1 C/MHz    729 mW   10.8 J   27.8 I/mJ    14.8 s\n2342: 21301     9.1 C/MHz    817 mW   11.5 J   26.1 I/mJ    14.1 s\n2419: 22007     9.1 C/MHz    908 mW   12.4 J   24.2 I/mJ    13.6 s\n\n\n===== CPU 7 =====\nFrequencies: 844 960 1075 1190 1305 1420 1555 1670 1785 1900 2035 2150 2265 2380 2496 2592 2688 2764 2841\n\n 844:  7845     9.3 C/MHz    246 mW    9.4 J   31.9 I/mJ    38.3 s\n 960:  8910     9.3 C/MHz    276 mW    9.3 J   32.3 I/mJ    33.7 s\n1075:  8337     7.8 C/MHz    262 mW    9.4 J   31.8 I/mJ    36.0 s\n1190: 11147     9.4 C/MHz    325 mW    8.7 J   34.3 I/mJ    26.9 s\n1305: 11523     8.8 C/MHz    342 mW    8.9 J   33.7 I/mJ    26.0 s\n1420:  7418     5.2 C/MHz    259 mW   10.5 J   28.6 I/mJ    40.5 s\n1555: 11146     7.2 C/MHz    365 mW    9.8 J   30.5 I/mJ    26.9 s\n1670: 15516     9.3 C/MHz    480 mW    9.3 J   32.3 I/mJ    19.3 s\n1785: 16123     9.0 C/MHz    521 mW    9.7 J   30.9 I/mJ    18.6 s\n1900: 17649     9.3 C/MHz    584 mW    9.9 J   30.2 I/mJ    17.0 s\n2035: 18908     9.3 C/MHz    663 mW   10.5 J   28.5 I/mJ    15.9 s\n2150: 19971     9.3 C/MHz    769 mW   11.6 J   26.0 I/mJ    15.0 s\n2265: 21041     9.3 C/MHz    878 mW   12.5 J   23.9 I/mJ    14.3 s\n2380: 22095     9.3 C/MHz   1009 mW   13.7 J   21.9 I/mJ    13.6 s\n2496: 23182     9.3 C/MHz   1043 mW   13.5 J   22.2 I/mJ    13.0 s\n2592: 24062     9.3 C/MHz   1219 mW   15.2 J   19.7 I/mJ    12.5 s\n2688: 24963     9.3 C/MHz   1365 mW   16.4 J   18.3 I/mJ    12.0 s\n2764: 25659     9.3 C/MHz   1561 mW   18.3 J   16.4 I/mJ    11.7 s\n2841: 26390     9.3 C/MHz   1636 mW   18.6 J   16.1 I/mJ    11.4 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm8350/main/uptime.txt",
    "content": " 14:50:20 up 48 min,  load average: 1.73, 1.77, 1.76\n"
  },
  {
    "path": "results/sm8350/main/versions.txt",
    "content": "Kernel: Linux version 5.4.61-DynamIQ-R1 (nakixii@naki-PC) (Proton clang version 13.0.0 (https://github.com/llvm/llvm-project b4fd512c36ca344a3ff69350219e8b0a67e9472a), GNU ld (GNU Binutils) 2.36.1) #14 SMP PREEMPT Thu Aug 12 18:59:42 CST 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm8350/second/cmdline.txt",
    "content": "ramoops_memreserve=4M log_buf_len=256K rcupdate.rcu_expedited=1 rcu_nocbs=0-7 console=ttyMSM0,115200n8 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 androidboot.usbcontroller=a600000.dwc3 swiotlb=0 loop.max_part=7 cgroup.memory=nokmem,nosocket pcie_ports=compat loop.max_part=7 iptable_raw.raw_before_defrag=1 ip6table_raw.raw_before_defrag=1 buildvariant=user  rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 androidboot.vbmeta.device=PARTUUID=0d7aca0d-91ae-ad2f-00ee-bfde8684622e androidboot.vbmeta.device=PARTUUID=0d7aca0d-91ae-ad2f-00ee-bfde8684622e androidboot.vbmeta.avb_version=1.0 androidboot.vbmeta.device_state=unlocked androidboot.vbmeta.hash_alg=sha256 androidboot.vbmeta.size=7040 androidboot.vbmeta.digest=c32a4e6a4fa83639a340b435ecbb487cefe299741403db4f19d024d0800d899b androidboot.vbmeta.invalidate_on_error=yes androidboot.veritymode=enforcing androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED bootinfo.pureason=0x40001 bootinfo.pdreason=0x2 androidboot.hwversion=3.9.0 androidboot.cpuid=REDACTED androidboot.hwc=CN androidboot.hwlevel=MP androidboot.hardware.sku=venus androidboot.product.hardware.sku=venus androidboot.secureboot=1 androidboot.baseband=msm msm_drm.dsi_display0=qcom,mdss_dsi_k2_38_08_0a_mp_dsc_cmd: androidboot.oled_wp=01f60bbd0c53 msm_drm.oled_wp=01f60bbd0c53 androidboot.oled_panel_id=K2_0A_MP androidboot.slot_suffix=_b rootwait ro init=/init androidboot.dtbo_idx=22 androidboot.dtb_idx=0 androidboot.ramdump=disable androidboot.force_normal_boot=1 block2mtd.block2mtd=/dev/block/sda15,2097152 mtdoops.mtddev=0 mtdoops.record_size=2097152 mtdoops.dump_oops=0 printk.always_kmsg_dump=1\n"
  },
  {
    "path": "results/sm8350/second/cpufreq_stats/0/time_in_state",
    "content": "300000 145143\n403200 20921\n499200 17082\n595200 14493\n691200 12624\n806400 10865\n902400 9830\n998400 9001\n1094400 8276\n1209600 7551\n1305600 7030\n1401600 6619\n1497600 6308\n1612800 5894\n1708800 5583\n1804800 6238\n"
  },
  {
    "path": "results/sm8350/second/cpufreq_stats/0/total_trans",
    "content": "19\n"
  },
  {
    "path": "results/sm8350/second/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    403200    499200    595200    691200    806400    902400    998400   1094400   1209600   1305600   1401600   1497600   1612800   1708800   1804800 \n   300000:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   403200:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   499200:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n   595200:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n   691200:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n   806400:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n   902400:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n   998400:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1094400:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1209600:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1305600:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1401600:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  1497600:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         1 \n  1612800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  1708800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  1804800:         2         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8350/second/cpufreq_stats/4/time_in_state",
    "content": "710400 62526\n844800 4763\n960000 4348\n1075200 3933\n1209600 3624\n1324800 3415\n1440000 3206\n1555200 3000\n1670400 2897\n1766400 2793\n1881600 2586\n1996800 2483\n2112000 2482\n2227200 2379\n2342400 2275\n2419200 186748\n"
  },
  {
    "path": "results/sm8350/second/cpufreq_stats/4/total_trans",
    "content": "18\n"
  },
  {
    "path": "results/sm8350/second/cpufreq_stats/4/trans_table",
    "content": "   From  :    To\n         :    710400    844800    960000   1075200   1209600   1324800   1440000   1555200   1670400   1766400   1881600   1996800   2112000   2227200   2342400   2419200 \n   710400:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   844800:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   960000:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1075200:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1209600:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1324800:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1440000:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1555200:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1670400:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1766400:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1881600:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1996800:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2112000:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2227200:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2342400:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2419200:         2         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8350/second/cpufreq_stats/7/time_in_state",
    "content": "844800 4690\n960000 4244\n1075200 3934\n1190400 4244\n1305600 4037\n1420800 3623\n1555200 3000\n1670400 3623\n1785600 3000\n1900800 2586\n2035200 2482\n2150400 2379\n2265600 2275\n2380800 2275\n2496000 2171\n2592000 2171\n2688000 2068\n2764800 2067\n2841600 238590\n"
  },
  {
    "path": "results/sm8350/second/cpufreq_stats/7/total_trans",
    "content": "21\n"
  },
  {
    "path": "results/sm8350/second/cpufreq_stats/7/trans_table",
    "content": "   From  :    To\n         :    844800    960000   1075200   1190400   1305600   1420800   1555200   1670400   1785600   1900800   2035200   2150400   2265600   2380800   2496000   2592000   2688000   2764800   2841600 \n   844800:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   960000:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1075200:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1190400:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1305600:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1420800:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1555200:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1670400:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1785600:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1900800:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  2035200:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  2150400:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  2265600:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  2380800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  2496000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2592000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2688000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2764800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2841600:         2         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8350/second/cpuinfo.txt",
    "content": "processor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x2\nCPU part\t: 0xd05\nCPU revision\t: 0\n\nHardware\t: Venus based on Qualcomm Technologies, Inc SM8350\n"
  },
  {
    "path": "results/sm8350/second/device.txt",
    "content": "Model: Venus based on Qualcomm Technologies, Inc SM8350;\nCompatible: qcom,lahaina-mtp;qcom,lahaina;qcom,mtp;\n"
  },
  {
    "path": "results/sm8350/second/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x412fd050]\n[    0.000000] Linux version 5.4.61-DynamIQ-R1 (nakixii@naki-PC) (Proton clang version 13.0.0 (https://github.com/llvm/llvm-project b4fd512c36ca344a3ff69350219e8b0a67e9472a), GNU ld (GNU Binutils) 2.36.1) #14 SMP PREEMPT Thu Aug 12 18:59:42 CST 2021\n[    0.000000] memblock_reserve: 0xb603d setup_arch+0x5c/0x1a0\n[    0.000000] Machine model: Venus based on Qualcomm Technologies, Inc SM8350\n[    0.000000] ramoops: msm_reserve_ramoops_memory addr=b0000000,size=400000\n[    0.000000] ramoops: msm_reserve_ramoops_memory record_size=0,ftrace_size=0\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000d6800000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x00000000d6000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node memshare_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff800000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe400000, size 12 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fd400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fc400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fb400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node user_contig_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f8400000, size 48 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6c00000, size 24 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f5800000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node cnss_wlan_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000eb400000, size 164 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] On node 0 totalpages: 1914192\n[    0.000000]   Normal zone: 29910 pages used for memmap\n[    0.000000]   Normal zone: 0 pages reserved\n[    0.000000]   Normal zone: 1914192 pages, LIFO batch:63\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] psci: OSI mode supported.\n[    0.000000] psci: Switched to OSI mode.\n[    0.000000] percpu: Embedded 29 pages/cpu s88792 r0 d29992 u118784\n[    0.000000] pcpu-alloc: s88792 r0 d29992 u118784 alloc=29*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: detected: GIC system register CPU interface\n[    0.000000] CPU features: kernel page table isolation forced OFF by kpti command line option\n[    0.000000] CPU features: detected: Speculative Store Bypassing Safe (SSBS)\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1884282\n[    0.000000] Kernel command line: ramoops_memreserve=4M log_buf_len=256K rcupdate.rcu_expedited=1 rcu_nocbs=0-7 console=ttyMSM0,115200n8 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 androidboot.usbcontroller=a600000.dwc3 swiotlb=0 loop.max_part=7 cgroup.memory=nokmem,nosocket pcie_ports=compat loop.max_part=7 iptable_raw.raw_before_defrag=1 ip6table_raw.raw_before_defrag=1 buildvariant=user  rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 androidboot.vbmeta.device=PARTUUID=0d7aca0d-91ae-ad2f-00ee-bfde8684622e androidboot.vbmeta.device=PARTUUID=0d7aca0d-91ae-ad2f-00ee-bfde8684622e androidboot.vbmeta.avb_version=1.0 androidboot.vbmeta.device_state=unlocked androidboot.vbmeta.hash_alg=sha256 androidboot.vbmeta.size=7040 androidboot.vbmeta.digest=c32a4e6a4fa83639a340b4\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)\n[    0.000000] mem auto-init: stack:all(zero), heap alloc:on, heap free:off\n[    0.000000] Memory: 7011888K/7656768K available (23166K kernel code, 3192K rwdata, 11420K rodata, 4480K init, 11717K bss, 276240K reserved, 368640K cma-reserved)\n[    0.000000] random: get_random_u64 called from __kmem_cache_create+0x34/0x550 with crng_init=0\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] rcu: \tRCU restricting CPUs from NR_CPUS=32 to nr_cpu_ids=8.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.\n[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: 988 SPIs implemented\n[    0.000000] GICv3: 0 Extended SPIs implemented\n[    0.000000] GICv3: Distributor has no Range Selector support\n[    0.000000] GICv3: 16 PPIs implemented\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000011] clocksource: Switched to clocksource arch_sys_counter\n[    0.003250] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.003257] pid_max: default: 32768 minimum: 301\n[    0.003363] LSM: Security Framework initializing\n[    0.003398] SELinux:  Initializing.\n[    0.003506] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)\n[    0.003523] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)\n[    0.004817] ASID allocator initialised with 32768 entries\n[    0.004885] rcu: Hierarchical SRCU implementation.\n[    0.005185] dynamic_debug:dynamic_debug_init: Ignore empty _ddebug table in a CONFIG_DYNAMIC_DEBUG_CORE build\n[    0.006808] scm_mem_protection_init_do: SCM call failed\n[    0.007040] smp: Bringing up secondary CPUs ...\n[    0.007919] Detected VIPT I-cache on CPU1\n[    0.008024] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]\n[    0.009072] Detected VIPT I-cache on CPU2\n[    0.009154] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]\n[    0.010107] Detected VIPT I-cache on CPU3\n[    0.010184] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]\n[    0.013383] Detected PIPT I-cache on CPU4\n[    0.013402] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU4: 0x1100000011111112\n[    0.013412] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU4: 0x00000000010142\n[    0.013420] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU4: 0x00000010010131\n[    0.013425] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU4: 0x00000010010000\n[    0.013429] CPU features: Unsupported CPU feature variation detected.\n[    0.013569] CPU4: Booted secondary processor 0x0000000400 [0x411fd410]\n[    0.014915] Detected PIPT I-cache on CPU5\n[    0.014935] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU5: 0x1100000011111112\n[    0.014946] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU5: 0x00000000010142\n[    0.014953] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU5: 0x00000010010131\n[    0.014958] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU5: 0x00000010010000\n[    0.015100] CPU5: Booted secondary processor 0x0000000500 [0x411fd410]\n[    0.016432] Detected PIPT I-cache on CPU6\n[    0.016450] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU6: 0x1100000011111112\n[    0.016459] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU6: 0x00000000010142\n[    0.016466] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU6: 0x00000010010131\n[    0.016471] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU6: 0x00000010010000\n[    0.016605] CPU6: Booted secondary processor 0x0000000600 [0x411fd410]\n[    0.019739] Detected PIPT I-cache on CPU7\n[    0.019746] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU7: 0x1100000011111112\n[    0.019750] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU7: 0x00000000010142\n[    0.019753] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU7: 0x00000010010131\n[    0.019755] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU7: 0x00000010010000\n[    0.019825] CPU7: Booted secondary processor 0x0000000700 [0x411fd440]\n[    0.019972] smp: Brought up 1 node, 8 CPUs\n[    0.019978] SMP: Total of 8 processors activated.\n[    0.019980] CPU features: detected: Privileged Access Never\n[    0.019982] CPU features: detected: LSE atomic instructions\n[    0.019984] CPU features: detected: User Access Override\n[    0.019986] CPU features: detected: 32-bit EL0 Support\n[    0.019988] CPU features: detected: Common not Private translations\n[    0.019991] CPU features: detected: RAS Extension Support\n[    0.019993] CPU features: detected: Data cache clean to the PoU not required for I/D coherence\n[    0.019995] CPU features: detected: CRC32 instructions\n[    0.041864] CPU: All CPU(s) started at EL1\n[    0.041917] alternatives: patching kernel code\n[    0.043443] do_mount: dev: devtmpfs, mount point: / , retval=0\n[    0.043468] devtmpfs: initialized\n[    0.174836] Registered cp15_barrier emulation handler\n[    0.174855] Registered setend emulation handler\n[    0.175198] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.175220] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)\n[    0.183987] ramoops: msm_register_ramoops_device\n[    0.184182] pinctrl core: initialized pinctrl subsystem\n[    0.184844] NET: Registered protocol family 16\n[    0.186325] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.186349] audit: initializing netlink subsys (disabled)\n[    0.186598] printk: console [pstore-1] enabled\n[    0.186748] pstore: Registered ramoops as persistent store backend\n[    0.186752] ramoops: using 0x400000@0xb0000000, ecc: 0\n[    0.187167] cpuidle: using governor menu\n[    0.187236] NET: Registered protocol family 42\n[    0.187732] hw-breakpoint: found 1 breakpoint and 1 watchpoint registers.\n[    0.187774] audit: type=2000 audit(0.179:1): state=initialized audit_enabled=0 res=1\n[    0.188301] Serial: AMBA PL011 UART driver\n[    0.188458] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.283968] OF: /soc/qcom,cam-res-mgr: could not get #gpio-cells for /soc/funnel@6986000/out-ports/port/endpoint\n[    0.336659] OF: /soc/qcom,cam-res-mgr: could not get #gpio-cells for /soc/funnel@6986000/out-ports/port/endpoint\n[    0.340835] msm-dcc 117f000.dcc_v2: DCC list passed 3\n[    0.341064] msm-dcc 117f000.dcc_v2: All values written to enable.\n[    0.341168] msm-dcc 117f000.dcc_v2: DCC list passed 4\n[    0.341416] msm-dcc 117f000.dcc_v2: All values written to enable.\n[    0.341653] msm-dcc 117f000.dcc_v2: DCC list passed 6\n[    0.341968] msm-dcc 117f000.dcc_v2: All values written to enable.\n[    0.342466] Minidump not enabled.\n[    0.342584] (NULL device *): failed to set download mode: -5\n[    0.343143] Disable GPIO151, 200, 202 wakeup\n[    0.415974] pm8350_s5_level: supplied by pm8350_s9_level\n[    0.416176] pm8350_s5_lvl_ao: supplied by pm8350_s9_level_ao\n[    0.660263] pm8350c_s6_level: supplied by pm8350_s5_level\n[    0.660491] pm8350c_s6_level_ao: supplied by pm8350_s5_lvl_ao\n[    0.673713] pm8350_s9_mmcx_sup_level: supplied by pm8350c_s6_mmcx_sup_level\n[    0.673727] pm8350_s5_mmcx_sup_level: supplied by pm8350_s9_mmcx_sup_level\n[    0.673735] pm8350c_s8_level: supplied by pm8350_s5_mmcx_sup_level\n[    0.673960] pm8350c_s8_level_ao: supplied by pm8350_s5_lvl_ao\n[    0.805469] spmi spmi-0: PMIC arbiter version v5 (0x50020000)\n[    0.824851] sps:sps is ready\n[    0.860144] hh-watchdog hypervisor:qcom,hh-watchdog: QCOM Apps Watchdog Initialized\n[    0.947406] oledb: Bringing 0uV into 5000000-5000000uV\n[    0.947543] ab: Bringing 0uV into 4600000-4600000uV\n[    0.947661] ibb: Bringing 0uV into 1400000-1400000uV\n[    0.966768] cryptd: max_cpu_qlen set to 1000\n[    0.971085] gcc_pcie_0_gdsc: supplied by pm8350c_s6_level\n[    0.971273] gcc_pcie_1_gdsc: supplied by pm8350c_s6_level\n[    0.971460] gcc_ufs_card_gdsc: supplied by pm8350c_s6_level\n[    0.971627] gcc_ufs_phy_gdsc: supplied by pm8350c_s6_level\n[    0.972820] gpu_cc_cx_gdsc: supplied by pm8350c_s6_level\n[    0.973040] gpu_cc_gx_gdsc: supplied by pm8350_s6_level\n[    0.974074] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    1.006740] lahaina-gcc 100000.qcom,gcc: Registered GCC clocks\n[    1.019427] gpu_cc-lahaina 3d90000.qcom,gpucc: Registered GPU CC clocks\n[    1.123627] Rate 19200000 for cam_cc_sleep_clk_src is greater than highest Fmax\n[    1.123632] Rate 19200000 for cam_cc_sleep_clk_src is greater than highest Fmax\n[    1.129138] lahaina-cam_cc ad00000.qcom,camcc: Registered CAM CC clocks\n[    1.156662] video_cc-lahaina abf0000.qcom,videocc: Registered VIDEO CC clocks\n[    1.160582] Minidump: Enabled with max number of regions 200\n[    1.161112] camera_wide_vana_ldo: supplied by pm8350c_bob\n[    1.161290] camera_front_vdig_ldo: supplied by pm8350_s12\n[    1.161469] camera_front_vana_ldo: supplied by pm8350c_bob\n[    1.161659] camera_macro_vana_ldo: supplied by pm8350c_bob\n[    1.162373] qti-reg-fixed-voltage soc:display_gpio_regulator@1: nonexclusive access to GPIO for soc:display_gpio_regulator@1\n[    1.163023] iommu: Default domain type: Translated \n[    1.171332] arm-smmu 3da0000.kgsl-smmu: \tcoherent table walk\n[    1.171337] arm-smmu 3da0000.kgsl-smmu: \tstream matching with 6 register groups\n[    1.173669] SCSI subsystem initialized\n[    1.173774] usbcore: registered new interface driver usbfs\n[    1.173802] usbcore: registered new interface driver hub\n[    1.173913] usbcore: registered new device driver usb\n[    1.174116] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    1.174795] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pmk8350@0:pon_pbs@800: IRQ pmic-wd-bark not found\n[    1.175050] 0x8c0:0x0 0x8c1:0x0 0x8c2:0x0 0x8c3:0x0 0x8c4:0x0 0x8c5:0x0 0x8c6:0x0 0x8c7:0x0 0x8c8:0x8 0x8c9:0x8 0x8ca:0x0 0x8cb:0x0 0x842:0x7 0x84a:0x1 0x852:0x1 \n[    1.175130] use kpdpwr-sw-debounce\n[    1.175271] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pmk8350@0:pon_hlos@1300: IRQ pmic-wd-bark not found\n[    1.175391] input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pmk8350@0:pon_hlos@1300/input/input0\n[    1.176430] 0x13c0:0x0 0x13c1:0x0 0x13c2:0x0 0x13c3:0x0 0x13c4:0x0 0x13c5:0x0 0x13c6:0x0 0x13c7:0x0 0x13c8:0x0 0x13c9:0x0 0x13ca:0x0 0x13cb:0x0 0x1342:0x0 0x134a:0x0 0x1352:0x0 \n[    1.176493] mc: Linux media interface: v0.10\n[    1.176522] videodev: Linux video capture interface: v2.00\n[    1.176637] thermal_sys: Registered thermal governor 'step_wise'\n[    1.176639] thermal_sys: Registered thermal governor 'user_space'\n[    1.186335] Error creating thermal debugfs directory. err:-19\n[    1.187866] thermal_sys: of_parse_thermal_message board sensor: VIRTUAL-SENSOR\n[    1.200058] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=300000 volt=592000, core_count 4\n[    1.200072] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=403200 volt=592000, core_count 4\n[    1.200078] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=499200 volt=592000, core_count 4\n[    1.200084] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=595200 volt=592000, core_count 4\n[    1.200089] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=691200 volt=592000, core_count 4\n[    1.200095] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=806400 volt=612000, core_count 4\n[    1.200100] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=902400 volt=628000, core_count 4\n[    1.200105] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=998400 volt=648000, core_count 4\n[    1.200111] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1094400 volt=664000, core_count 4\n[    1.200116] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1209600 volt=688000, core_count 4\n[    1.200122] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=1305600 volt=712000, core_count 4\n[    1.200128] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=1401600 volt=732000, core_count 4\n[    1.200133] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=1497600 volt=756000, core_count 4\n[    1.200139] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=1612800 volt=784000, core_count 4\n[    1.200144] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=1708800 volt=808000, core_count 4\n[    1.200153] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=1804800 volt=832000, core_count 4\n[    1.200159] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=1804800 volt=832000, core_count 4\n[    1.200199] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=710400 volt=596000, core_count 4\n[    1.200209] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=844800 volt=624000, core_count 4\n[    1.200214] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=960000 volt=648000, core_count 4\n[    1.200220] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=1075200 volt=672000, core_count 4\n[    1.200225] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=1209600 volt=688000, core_count 4\n[    1.200231] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=1324800 volt=712000, core_count 4\n[    1.200236] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=1440000 volt=732000, core_count 4\n[    1.200241] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=1555200 volt=756000, core_count 4\n[    1.200247] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1670400 volt=784000, core_count 4\n[    1.200252] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1766400 volt=804000, core_count 4\n[    1.200257] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=1881600 volt=836000, core_count 4\n[    1.200263] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=1996800 volt=872000, core_count 4\n[    1.200269] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=2112000 volt=908000, core_count 4\n[    1.200274] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=2227200 volt=948000, core_count 4\n[    1.200280] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=2342400 volt=984000, core_count 4\n[    1.200285] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=2419200 volt=1024000, core_count 4\n[    1.200290] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=2419200 volt=1024000, core_count 4\n[    1.200322] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=844800 volt=596000, core_count 4\n[    1.200332] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=960000 volt=612000, core_count 4\n[    1.200337] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=1075200 volt=620000, core_count 4\n[    1.200343] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=1190400 volt=632000, core_count 4\n[    1.200352] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=1305600 volt=640000, core_count 4\n[    1.200357] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=1420800 volt=656000, core_count 4\n[    1.200363] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=1555200 volt=680000, core_count 4\n[    1.200368] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=1670400 volt=700000, core_count 4\n[    1.200374] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1785600 volt=724000, core_count 4\n[    1.200379] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1900800 volt=744000, core_count 4\n[    1.200385] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=2035200 volt=772000, core_count 4\n[    1.200390] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=2150400 volt=808000, core_count 4\n[    1.200396] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=2265600 volt=848000, core_count 4\n[    1.200401] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=2380800 volt=884000, core_count 4\n[    1.200406] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=2496000 volt=916000, core_count 4\n[    1.200412] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=2592000 volt=952000, core_count 4\n[    1.200417] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=2688000 volt=984000, core_count 4\n[    1.200423] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=17 freq=2764800 volt=1004000, core_count 4\n[    1.200428] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=18 freq=2841600 volt=1032000, core_count 4\n[    1.200434] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=19 freq=2841600 volt=1032000, core_count 4\n[    1.216442] shmbridge is enabled\n[    1.220559] IPA framework init\n[    1.221114] SDAM base=0x7100 size=128 registered successfully\n[    1.221207] SDAM base=0x7400 size=128 registered successfully\n[    1.221294] SDAM base=0x7c00 size=128 registered successfully\n[    1.221382] SDAM base=0x7d00 size=128 registered successfully\n[    1.221468] SDAM base=0x8400 size=128 registered successfully\n[    1.221555] SDAM base=0x8500 size=128 registered successfully\n[    1.221648] SDAM base=0x9d00 size=128 registered successfully\n[    1.221710] Advanced Linux Sound Architecture Driver Initialized.\n[    1.222410] IPA clients manager init\n[    1.222412] ipa_usb driver init\n[    1.222500] ipa_usb registered successfully\n[    1.222502] exit: IPA_USB init success!\n[    1.222505] ipa_wdi3 registered successfully\n[    1.222507] ipa_gsb registered successfully\n[    1.222510] ipa_uc_offload registered successfully\n[    1.222513] ipa_mhi registered successfully\n[    1.222515] ipa_wigig registered successfully\n[    1.222923] Bluetooth: Core ver 2.22\n[    1.222936] NET: Registered protocol family 31\n[    1.222937] Bluetooth: HCI device and connection manager initialized\n[    1.222943] Bluetooth: HCI socket layer initialized\n[    1.222946] Bluetooth: L2CAP socket layer initialized\n[    1.222951] Bluetooth: SCO socket layer initialized\n[    1.223154] pcie:pcie_init.\n[    1.230178] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node sdsp_region\n[    1.239094] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    1.242113] platform soc:qcom,ion:qcom,ion-heap@26: assigned reserved memory node user_contig_region\n[    1.245086] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    1.248065] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    1.251077] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    1.251308] ION heap system created\n[    1.251450] ION heap adsp created\n[    1.251454] ION heap secure_heap created\n[    1.331039] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x80c00000, size 0x4600000\n[    1.331046] ION heap secure_carveout created\n[    1.331055] ION heap spss created\n[    1.331058] ION heap user_contig created\n[    1.331060] ION heap qsecom created\n[    1.331062] ION heap qsecom_ta created\n[    1.331064] ION heap secure_display created\n[    1.332325] clocksource: Switched to clocksource arch_sys_counter\n[    1.378320] VFS: Disk quotas dquot_6.6.0\n[    1.378364] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    1.379130] NET: Registered protocol family 2\n[    1.379495] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)\n[    1.379574] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)\n[    1.379913] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)\n[    1.380689] TCP: Hash tables configured (established 65536 bind 65536)\n[    1.380767] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)\n[    1.380847] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)\n[    1.381008] NET: Registered protocol family 1\n[    1.381431] NET: Registered protocol family 44\n[    1.381439] PCI: CLS 0 bytes, default 64\n[    1.381602] Trying to unpack rootfs image as initramfs...\n[    1.780776] Freeing initrd memory: 18292K\n[    1.781897] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    1.787394] Initialise system trusted keyrings\n[    1.787499] workingset: timestamp_bits=46 max_order=21 bucket_order=0\n[    1.791438] fuse: init (API version 7.31)\n[    1.801794] Key type asymmetric registered\n[    1.801797] Asymmetric key parser 'x509' registered\n[    1.801821] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 239)\n[    1.801825] io scheduler mq-deadline registered\n[    1.801827] io scheduler kyber registered\n[    1.801914] io scheduler bfq registered\n[    1.810603] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    1.810607] qcom-spmi-gpio c440000.qcom,spmi:qcom,pmr735b@5:pinctrl@8800: read 0x4 failed\n[    1.810615] qcom-spmi-gpio: probe of c440000.qcom,spmi:qcom,pmr735b@5:pinctrl@8800 failed with error -5\n[    1.816200] KPI: Bootloader start count = 94270\n[    1.816203] KPI: Bootloader end count = 130498\n[    1.816205] KPI: Bootloader display count = 3527233121\n[    1.816207] KPI: Bootloader load kernel count = 306461604\n[    1.816210] KPI: Kernel MPM timestamp = 204605\n[    1.816212] KPI: Kernel MPM Clock frequency = 32768\n[    1.818643] v0.15, id=415, ver=2.1, raw_id=309, raw_ver=3, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65583, pmic_die_revision=131072 foundry_id=3 serial_number=2411932908 num_pmics=5 chip_family=0x69 raw_device_family=0x6 raw_device_number=0xf nproduct_id=0x41d num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xf ndefective_parts_array_offset=0xb4 nmodem_supported=0xffffffff\n[    1.819283] lahaina-llcc 9200000.cache-controller: IRQ index 0 not found\n[    1.820533] msm_mem_dump soc:mem_dump: assigned reserved memory node mem_dump_region\n[    1.831830] MSM Memory Dump base table set up\n[    1.831835] MSM Memory Dump apps data table set up\n[    1.832997] llcc_perfmon: Revision 2, has 1 memory controllers connected with LLCC\n[    1.835849] PMIC PON log: Reset Trigger: PS_HOLD\n[    1.835864] PMIC PON log: Reset Type: HARD_RESET\n[    1.835907] PMIC PON log: PON Trigger: HARD_RESET\n[    1.835971] PMIC PON log: Reset Trigger: PS_HOLD\n[    1.835985] PMIC PON log: Reset Type: HARD_RESET\n[    1.836023] PMIC PON log: PON Trigger: HARD_RESET\n[    1.836090] PMIC PON log: Reset Trigger: PS_HOLD\n[    1.836104] PMIC PON log: Reset Type: HARD_RESET\n[    1.836153] PMIC PON log: PON Trigger: HARD_RESET\n[    1.838442] cdsprm: Init successful\n[    1.838814] 88e0000.qcom,msm-eud: ttyEUD0 at MMIO 0x0 (irq = 39, base_baud = 0) is a EUD UART\n[    1.839840] qbt:qbt_handler_init: entry\n[    1.842345] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled\n[    1.844466] ignore console register\n[    1.844726] ignore cons prob\n[    1.845265] msm_geni_serial_init: Driver initialized\n[    1.846265] Error: swapper/0: fastrpc_device_init: failed to create debugfs root dir\n[    1.846400] fastrpc soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    1.846437] Info: adsprpc (6211): swapper/0: init_secure_vmid_list: secure VMID = 22\n[    1.846439] Info: adsprpc (6211): swapper/0: init_secure_vmid_list: secure VMID = 37\n[    1.846442] adsprpc: fastrpc_init_privileged_gids: privileged GID: 2908\n[    1.846472] adsprpc: fastrpc_setup_service_locator: service location enabled for avs/audio (audio_pdr_adsprpc)\n[    1.846502] adsprpc: fastrpc_setup_service_locator: service location enabled for tms/servreg (sensors_pdr_adsprpc)\n[    1.905852] adsprpc: fastrpc_device_init: SSR notifier registered for adsp\n[    1.905855] adsprpc: fastrpc_device_init: SSR notifier registered for modem\n[    1.905857] adsprpc: fastrpc_device_init: SSR notifier registered for slpi\n[    1.905860] adsprpc: fastrpc_device_init: SSR notifier registered for cdsp\n[    1.918635] adreno-a6xx-gmu 3d6a000.qcom,gmu: Adding to iommu group 0\n[    1.924703] brd: module loaded\n[    1.929505] loop: module loaded\n[    1.929725] zram: Added device: zram0\n[    1.929915] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    1.930490] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    1.930615] platform soc:qcom,ion:qcom,ion-heap@26: assigned reserved memory node user_contig_region\n[    1.930787] qseecom soc:qseecom@c1700000: assigned reserved memory node qseecom_region\n[    1.930832] QSEECOM: qseecom_init_control: qseecom.qsee_version = 0x1402000\n[    1.930875] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE/FDE\n[    1.931636] Loading NFC I2C driver\n[    1.933767] libphy: Fixed MDIO Bus: probed\n[    1.933784] tun: Universal TUN/TAP device driver, 1.6\n[    1.934455] cnss_utils: Unable to create debugfs -19\n[    1.934457] CLD80211: Initializing\n[    1.934692] usbcore: registered new interface driver r8152\n[    1.934707] usbcore: registered new interface driver lan78xx\n[    1.934719] usbcore: registered new interface driver asix\n[    1.934731] usbcore: registered new interface driver ax88179_178a\n[    1.934743] usbcore: registered new interface driver cdc_ether\n[    1.938609] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.942063] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    1.942066] ehci-pci: EHCI PCI platform driver\n[    1.942092] ehci-platform: EHCI generic platform driver\n[    1.943478] usbcore: registered new interface driver uas\n[    1.943492] usbcore: registered new interface driver usb-storage\n[    1.943508] usbcore: registered new interface driver usb_ehset_test\n[    1.943520] usbcore: registered new interface driver lvs\n[    1.943966] dummy_hcd dummy_hcd.0: USB Host+Gadget Emulator, driver 02 May 2005\n[    1.943974] dummy_hcd dummy_hcd.0: Dummy host controller\n[    1.943980] dummy_hcd dummy_hcd.0: new USB bus registered, assigned bus number 1\n[    1.944356] hub 1-0:1.0: USB hub found\n[    1.944377] hub 1-0:1.0: 1 port detected\n[    1.945325] usbcore: registered new interface driver xpad\n[    1.945340] usbcore: registered new interface driver usbtouchscreen\n[    1.945547] xiaomi_touch_probe: kernel base:-541889576960, phy base:10013720576\n[    1.945548] xiaomi_touch_probe enter\n[    1.945550] xiaomi_touch_parse_dt touch,name:xiaomi-touch\n[    1.945691] xiaomi_touch_probe over\n[    1.945856] aw8697 driver version v1.1.3\n[    1.945869] aw8697_i2c_init success\n[    1.946094] gf_platform: gf::gpio-reset:347\n[    1.946100] gf_platform: gf::irq_gpio:346\n[    1.946260] input: uinput-goodix as /devices/virtual/input/input1\n[    1.946387] goodix_fp soc:fingerprint_goodix: fp enable_regulator_3V0: of vreg successful found\n[    1.946827] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 339, hwirq 38\n[    1.946832] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 99\n[    1.946839] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 339 parent hwirq 99\n[    1.946892] goodix_fod: version V1.2.01\n[    1.947011] goodix_fod: goodix status = 0x0\n[    1.947986] rtc-pm8xxx c440000.qcom,spmi:qcom,pmk8350@0:rtc@6100: registered as rtc0\n[    1.948040] rtc-pm8xxx c440000.qcom,spmi:qcom,pmk8350@0:rtc@6100: setting system clock to 1970-03-13T09:51:01 UTC (6169861)\n[    1.948221] i2c /dev entries driver\n[    1.948847] synx: synx device initialization start\n[    1.948942] synx: synx device initialization success\n[    1.949573] uvcvideo: Unable to create debugfs directory\n[    1.949591] usbcore: registered new interface driver uvcvideo\n[    1.949594] USB Video Class driver (1.1.1)\n[    1.949595] gspca_main: v2.14.0 registered\n[    1.950896] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    1.950901] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    1.951292] device-mapper: uevent: version 1.0.3\n[    1.951469] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com\n[    1.951679] device-mapper: verity-avb: AVB error handler initialized with vbmeta device: PARTUUID=0d7aca0d-91ae-ad2f-00ee-bfde8684622e\n[    1.951932] bt_dt_parse_vreg_info: qcom,bt-vdd-io is not provided in device tree\n[    1.951979] bt_dt_parse_vreg_info: qcom,bt-vdd-rfacmn is not provided in device tree\n[    1.951990] bt_dt_parse_vreg_info: qcom,bt-vdd-rfa-0p8 is not provided in device tree\n[    1.952149] bt-debug-gpio not provided in devicetree\n[    1.952151] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.952153] bt_power_populate_dt_pinfo: clock not provided in device tree\n[    1.952247] TCS CMD base address is 0x000000000b2e5510 with length 0x0000000000000690\n[    1.952860] cpuidle: using governor qcom\n[    1.953102] lpm_levels: Cluster (L3) stats not registered\n[    1.957740] hidraw: raw HID events driver (C) Jiri Kosina\n[    1.958213] usbcore: registered new interface driver usbhid\n[    1.958215] usbhid: USB HID core driver\n[    1.958532] ashmem: initialized\n[    1.958622] wlan_hdd_state wlan major(493) initialized\n[    1.958914] haven: Haven: disabling HYP UART\n[    1.959356] hh_msgq: Registered client for label: 0\n[    2.019133] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): allocate IRQ 340, hwirq 8\n[    2.019138] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): found parent hwirq 144\n[    2.019144] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): alloc_irqs_parent for 340 parent hwirq 144\n[    2.020805] qcom-llcc-pmu 9095000.llcc-pmu: Registered llcc_pmu, type: 8\n[    2.030622] random: fast init done\n[    2.031690] gnss: GNSS driver registered with major 491\n[    2.032232] usbcore: registered new interface driver snd-usb-audio\n[    2.032940] DATARMNETb1c42acd9c(): rmnet_offload initializing\n[    2.032944] DATARMNET163e93649e(): Starting rmnet SHS module 9731 \n[    2.033596] [mi_disp:mi_disp_core_init] [info]mi disp_core driver initialized!\n[    2.033606] [mi_disp:mi_disp_cdev_register] [info]cdev name = disp_feature, dev_id = (490:0)\n[    2.033696] [mi_disp:mi_disp_feature_init] [info]mi disp_feature driver initialized!\n[    2.034191] dsi_phy ae94400.qcom,mdss_dsi_phy0: ae94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    2.034295] [drm:dsi_pll_init] [msm-dsi-info]: DSI_PLL_0: DSI pll label = dsi_pll_5nm\n[    2.034300] [drm:dsi_pll_init] [msm-dsi-info]: DSI_PLL_0: PLL SSC enabled\n[    2.034307] dsi_pll_init: PLL base=(____ptrval____)\n[    2.034524] dsi_pll_5nm_get_gdsc_status: reg:0xf822f000 status:1\n[    2.034529] vco_5nm_recalc_rate: handoff_resources true\n[    2.034752] dsi_pll_5nm_get_gdsc_status: reg:0xf822f000 status:1\n[    2.034756] vco_5nm_recalc_rate: handoff_resources true\n[    2.035000] dsi_pll_clock_register_5nm: Registered DSI PLL ndx=0, clocks successfully\n[    2.035067] [drm:dsi_phy_driver_probe] [msm-dsi-info]: DSI_0: Probe successful\n[    2.035146] dsi_phy ae96400.qcom,mdss_dsi_phy1: ae96400.qcom,mdss_dsi_phy1 supply gdsc not found, using dummy regulator\n[    2.035227] [drm:dsi_pll_init] [msm-dsi-info]: DSI_PLL_0: DSI pll label = dsi_pll_5nm\n[    2.035232] [drm:dsi_pll_init] [msm-dsi-info]: DSI_PLL_1: PLL SSC enabled\n[    2.035239] dsi_pll_init: PLL base=(____ptrval____)\n[    2.035297] dsi_pll_5nm_get_gdsc_status: reg:0xf822f000 status:1\n[    2.040361] vco_5nm_recalc_rate: PLL not enabled\n[    2.040363] vco_5nm_recalc_rate: handoff_resources false\n[    2.040615] dsi_pll_5nm_get_gdsc_status: reg:0xf822f000 status:1\n[    2.045664] vco_5nm_recalc_rate: PLL not enabled\n[    2.045665] vco_5nm_recalc_rate: handoff_resources false\n[    2.045929] dsi_pll_clock_register_5nm: Registered DSI PLL ndx=1, clocks successfully\n[    2.045934] [drm:dsi_phy_driver_probe] [msm-dsi-info]: DSI_1: Probe successful\n[    2.047451] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.047458] [drm:dsi_ctrl_get] *ERROR* [msm-dsi-error]: inv: Device with of node not found rc=-517\n[    2.053049] voice_init: rc=0\n[    2.053707] [CSPL] Initializing misc device\n[    2.054113] [ELUS] : (elliptic_driver_init) : elliptic_class creation name chardev\n[    2.060797] msm-auxpcm-dev soc:qcom,msm-pri-auxpcm: island supported entry not found\n[    2.060803] msm-auxpcm-dev soc:qcom,msm-pri-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.060813] msm-auxpcm-dev soc:qcom,msm-pri-auxpcm: dev name soc:qcom,msm-pri-auxpcm\n[    2.060851] msm-auxpcm-dev soc:qcom,msm-sec-auxpcm: island supported entry not found\n[    2.060855] msm-auxpcm-dev soc:qcom,msm-sec-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.060866] msm-auxpcm-dev soc:qcom,msm-sec-auxpcm: dev name soc:qcom,msm-sec-auxpcm\n[    2.060906] msm-auxpcm-dev soc:qcom,msm-tert-auxpcm: island supported entry not found\n[    2.060909] msm-auxpcm-dev soc:qcom,msm-tert-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.060917] msm-auxpcm-dev soc:qcom,msm-tert-auxpcm: dev name soc:qcom,msm-tert-auxpcm\n[    2.060950] msm-auxpcm-dev soc:qcom,msm-quat-auxpcm: island supported entry not found\n[    2.060954] msm-auxpcm-dev soc:qcom,msm-quat-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.060962] msm-auxpcm-dev soc:qcom,msm-quat-auxpcm: dev name soc:qcom,msm-quat-auxpcm\n[    2.060996] msm-auxpcm-dev soc:qcom,msm-quin-auxpcm: island supported entry not found\n[    2.061000] msm-auxpcm-dev soc:qcom,msm-quin-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.061007] msm-auxpcm-dev soc:qcom,msm-quin-auxpcm: dev name soc:qcom,msm-quin-auxpcm\n[    2.061040] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: island supported entry not found\n[    2.061044] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.061051] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: dev name soc:qcom,msm-sen-auxpcm\n[    2.061374] msm_dai_q6_probe: dev name soc:qcom,msm-dai-q6, id:-1\n[    2.087250] msm-dai-q6 soc:qcom,msm-dai-q6: msm_dai_q6_probe: added child node\n[    2.087604] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6-afe-loopback-tx, id:24577\n[    2.087779] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-sb-7-rx, id:16398\n[    2.087814] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-sb-7-tx, id:16399\n[    2.087844] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-sb-8-tx, id:16401\n[    2.087872] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-bt-sco-rx, id:12288\n[    2.087901] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-bt-sco-tx, id:12289\n[    2.087928] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-int-fm-rx, id:12292\n[    2.087956] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-int-fm-tx, id:12293\n[    2.087984] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-be-afe-pcm-rx, id:224\n[    2.088016] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-be-afe-pcm-tx, id:225\n[    2.088045] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-afe-proxy-rx, id:241\n[    2.088074] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-afe-proxy-tx, id:240\n[    2.088102] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-incall-record-rx, id:32771\n[    2.088131] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-incall-record-tx, id:32772\n[    2.088160] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-incall-music-rx, id:32773\n[    2.088191] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-incall-music-2-rx, id:32770\n[    2.088220] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-afe-proxy-tx-1, id:242\n[    2.088251] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-proxy-rx, id:8194\n[    2.088278] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-proxy-tx, id:8195\n[    2.088306] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-usb-audio-rx, id:28672\n[    2.088334] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-usb-audio-tx, id:28673\n[    2.090432] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim dev id 0x0\n[    2.090438] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim Rx line 0x3 , Tx ine 0x0\n[    2.090442] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim: island supported entry not found\n[    2.090446] msm_dai_q6_mi2s_get_lineconfig: no line is assigned\n[    2.090451] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x5 capture sdline 0x0\n[    2.090455] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 4 capture ch_mx 0\n[    2.091783] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec dev id 0x1\n[    2.091788] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec Rx line 0x1 , Tx ine 0x0\n[    2.091792] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec: island supported entry not found\n[    2.091794] msm_dai_q6_mi2s_get_lineconfig: no line is assigned\n[    2.091797] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x1 capture sdline 0x0\n[    2.091800] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 2 capture ch_mx 0\n[    2.093127] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert dev id 0x2\n[    2.093132] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert Rx line 0x0 , Tx ine 0x3\n[    2.093135] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert: island supported entry not found\n[    2.093137] msm_dai_q6_mi2s_get_lineconfig: no line is assigned\n[    2.093140] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x0 capture sdline 0x5\n[    2.093143] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 0 capture ch_mx 4\n[    2.094468] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat dev id 0x3\n[    2.094473] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat Rx line 0x1 , Tx ine 0x2\n[    2.094477] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat: island supported entry not found\n[    2.094482] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x1 capture sdline 0x2\n[    2.094485] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 2 capture ch_mx 2\n[    2.095808] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin dev id 0x4\n[    2.095813] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin Rx line 0x1 , Tx ine 0x2\n[    2.095817] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin: island supported entry not found\n[    2.095821] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x1 capture sdline 0x2\n[    2.095825] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 2 capture ch_mx 2\n[    2.097148] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary dev id 0x5\n[    2.097153] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary Rx line 0x0 , Tx ine 0x3\n[    2.097157] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary: island supported entry not found\n[    2.097160] msm_dai_q6_mi2s_get_lineconfig: no line is assigned\n[    2.097164] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x0 capture sdline 0x5\n[    2.097168] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 0 capture ch_mx 4\n[    2.097192] msm-dai-mi2s soc:qcom,msm-dai-mi2s: msm_dai_mi2s_q6_probe: added child node\n[    2.097550] msm_dai_q6_spdif_dev_probe: dev name soc:qcom,msm-dai-q6-spdif-pri-rx, id:20480\n[    2.097593] msm_dai_q6_spdif_dev_probe: dev name soc:qcom,msm-dai-q6-spdif-pri-tx, id:20481\n[    2.097628] msm_dai_q6_spdif_dev_probe: dev name soc:qcom,msm-dai-q6-spdif-sec-rx, id:20482\n[    2.097664] msm_dai_q6_spdif_dev_probe: dev name soc:qcom,msm-dai-q6-spdif-sec-tx, id:20483\n[    2.098310] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9100\n[    2.098314] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.098320] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.098325] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.098330] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.098335] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.099653] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: island supported entry not found\n[    2.099658] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.099662] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.099666] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.099671] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.099676] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.099680] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.099705] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: added child node\n[    2.099741] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9101\n[    2.099745] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.099750] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.099753] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.099757] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.099761] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.101103] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: island supported entry not found\n[    2.101107] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.101111] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.101115] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.101119] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.101122] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.101126] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.101151] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: added child node\n[    2.101184] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9110\n[    2.101187] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.101191] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.101194] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.101198] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.101201] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.102510] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: island supported entry not found\n[    2.102515] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.102518] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.102522] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.102526] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.102530] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.102533] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.102556] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: added child node\n[    2.102589] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9111\n[    2.102592] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.102596] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.102599] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.102602] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.102606] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.103908] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: island supported entry not found\n[    2.103912] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.103916] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.103919] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.103923] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.103927] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.103931] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.103953] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: added child node\n[    2.103984] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9120\n[    2.103988] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x2\n[    2.103991] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.103995] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.103998] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.104002] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.105305] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: island supported entry not found\n[    2.105310] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x0\n[    2.105314] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.105317] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.105321] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.105325] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.105328] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.106650] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: island supported entry not found\n[    2.106655] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x0\n[    2.106660] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.106663] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.106668] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.106672] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.106676] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.106703] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: added child node\n[    2.106740] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9121\n[    2.106744] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x2\n[    2.106748] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.106752] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.106756] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.106759] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.108067] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: island supported entry not found\n[    2.108071] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x0\n[    2.108075] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.108080] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.108084] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.108088] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.108092] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.109415] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: island supported entry not found\n[    2.109420] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x0\n[    2.109424] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.109427] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.109431] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.109435] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.109438] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.109460] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: added child node\n[    2.109493] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9130\n[    2.109497] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.109500] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.109504] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.109507] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.109510] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.110839] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: island supported entry not found\n[    2.110843] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.110847] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.110851] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.110854] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.110858] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.110862] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.110885] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: added child node\n[    2.110916] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9131\n[    2.110919] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.110923] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.110926] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.110930] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.110933] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.112240] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: island supported entry not found\n[    2.112244] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.112248] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.112252] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.112256] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.112259] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.112263] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.112288] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: added child node\n[    2.112322] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9140\n[    2.112325] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.112329] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.112332] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.112335] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.112338] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.113649] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: island supported entry not found\n[    2.113653] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.113657] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.113660] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.113664] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.113668] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.113671] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.113694] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: added child node\n[    2.113727] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9141\n[    2.113730] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.113734] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.113737] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.113740] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.113743] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.115049] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: island supported entry not found\n[    2.115053] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.115058] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.115062] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.115066] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.115070] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.115074] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.115104] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: added child node\n[    2.115137] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9150\n[    2.115141] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.115145] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.115149] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.115153] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.115156] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.116461] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: island supported entry not found\n[    2.116466] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.116470] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.116474] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.116478] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.116483] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.116487] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.116511] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: added child node\n[    2.116542] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9151\n[    2.116546] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.116550] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.116553] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.116556] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.116559] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.117866] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: island supported entry not found\n[    2.117870] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.117874] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.117878] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.117881] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.117885] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.117889] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.117914] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: added child node\n[    2.119857] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-rx dev id 0xb000\n[    2.119861] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-rx: island supported entry not found\n[    2.119865] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-rx: cdc dma data align supported entry not found\n[    2.121221] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-tx dev id 0xb001\n[    2.121225] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-tx: island supported entry not found\n[    2.121228] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-tx: cdc dma data align supported entry not found\n[    2.122548] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-rx dev id 0xb002\n[    2.122552] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-rx: island supported entry not found\n[    2.122555] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-rx: cdc dma data align supported entry not found\n[    2.123875] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-tx dev id 0xb003\n[    2.123880] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-tx: island supported entry not found\n[    2.123883] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-tx: cdc dma data align supported entry not found\n[    2.125207] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-2-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-2-tx dev id 0xb005\n[    2.125211] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-2-tx: island supported entry not found\n[    2.125215] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-2-tx: cdc dma data align supported entry not found\n[    2.126545] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-0-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-0-tx dev id 0xb021\n[    2.126549] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-0-tx: cdc dma data align supported entry not found\n[    2.127870] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-1-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-1-tx dev id 0xb023\n[    2.127874] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-1-tx: island supported entry not found\n[    2.127878] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-1-tx: cdc dma data align supported entry not found\n[    2.129204] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-2-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-2-tx dev id 0xb025\n[    2.129208] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-2-tx: island supported entry not found\n[    2.129211] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-2-tx: cdc dma data align supported entry not found\n[    2.130573] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-0-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-0-rx dev id 0xb030\n[    2.130577] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-0-rx: island supported entry not found\n[    2.130580] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-0-rx: cdc dma data align supported entry not found\n[    2.131905] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-1-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-1-rx dev id 0xb032\n[    2.131910] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-1-rx: island supported entry not found\n[    2.131913] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-1-rx: cdc dma data align supported entry not found\n[    2.133234] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-2-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-2-rx dev id 0xb034\n[    2.133238] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-2-rx: island supported entry not found\n[    2.133241] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-2-rx: cdc dma data align supported entry not found\n[    2.134562] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-3-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-3-rx dev id 0xb036\n[    2.134566] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-3-rx: island supported entry not found\n[    2.134569] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-3-rx: cdc dma data align supported entry not found\n[    2.135887] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-4-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-4-rx dev id 0xb038\n[    2.135891] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-4-rx: island supported entry not found\n[    2.135894] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-4-rx: cdc dma data align supported entry not found\n[    2.137221] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-5-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-5-rx dev id 0xb03a\n[    2.137225] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-5-rx: island supported entry not found\n[    2.137228] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-5-rx: cdc dma data align supported entry not found\n[    2.138553] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-6-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-6-rx dev id 0xb03c\n[    2.138557] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-6-rx: island supported entry not found\n[    2.139880] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-7-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-7-rx dev id 0xb03e\n[    2.139884] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-7-rx: island supported entry not found\n[    2.139887] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-7-rx: cdc dma data align supported entry not found\n[    2.141230] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-0-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-0-tx dev id 0xb031\n[    2.141234] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-0-tx: island supported entry not found\n[    2.141237] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-0-tx: cdc dma data align supported entry not found\n[    2.142562] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-1-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-1-tx dev id 0xb033\n[    2.142566] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-1-tx: island supported entry not found\n[    2.142569] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-1-tx: cdc dma data align supported entry not found\n[    2.143890] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-2-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-2-tx dev id 0xb035\n[    2.143894] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-2-tx: island supported entry not found\n[    2.143897] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-2-tx: cdc dma data align supported entry not found\n[    2.145219] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-3-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-3-tx dev id 0xb037\n[    2.145223] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-3-tx: island supported entry not found\n[    2.145226] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-3-tx: cdc dma data align supported entry not found\n[    2.146544] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-4-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-4-tx dev id 0xb039\n[    2.146548] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-4-tx: island supported entry not found\n[    2.146551] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-4-tx: cdc dma data align supported entry not found\n[    2.147873] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-5-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-5-tx dev id 0xb03b\n[    2.147877] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-5-tx: island supported entry not found\n[    2.147880] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-5-tx: cdc dma data align supported entry not found\n[    2.147903] msm-dai-cdc-dma soc:qcom,msm-dai-cdc-dma: msm_dai_cdc_dma_q6_probe: added child node\n[    2.152232] voice_alloc_cal_mem_map_table: data 0000000000000000 phys (____ptrval____)\n[    2.152580] voice_alloc_cal_mem_map_table: data 0000000000000000 phys (____ptrval____)\n[    2.176309] u32 classifier\n[    2.176311]     input device check on\n[    2.176312]     Actions configured\n[    2.176878] xt_time: kernel timezone is -0000\n[    2.176977] wireguard: WireGuard 1.0.20210606 loaded. See www.wireguard.com for information.\n[    2.176979] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    2.177035] ipip: IPv4 and MPLS over IPv4 tunneling driver\n[    2.177323] gre: GRE over IPv4 demultiplexor driver\n[    2.177326] ip_gre: GRE over IPv4 tunneling driver\n[    2.177843] IPv4 over IPsec tunneling driver\n[    2.178171] iptable_raw: Enabling raw table before defrag\n[    2.178288] Initializing XFRM netlink socket\n[    2.178298] IPsec XFRM device driver\n[    2.178539] NET: Registered protocol family 10\n[    2.179306] Segment Routing with IPv6\n[    2.179379] mip6: Mobile IPv6\n[    2.179479] ip6table_raw: Enabling raw table before defrag\n[    2.179756] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    2.180267] ip6_gre: GRE over IPv6 tunneling driver\n[    2.180494] NET: Registered protocol family 17\n[    2.180506] NET: Registered protocol family 15\n[    2.180659] Bluetooth: RFCOMM TTY layer initialized\n[    2.180664] Bluetooth: RFCOMM socket layer initialized\n[    2.180666] Bluetooth: RFCOMM ver 1.11\n[    2.180669] Bluetooth: HIDP (Human Interface Emulation) ver 1.2\n[    2.180672] Bluetooth: HIDP socket layer initialized\n[    2.180692] l2tp_core: L2TP core driver, V2.0\n[    2.180694] tipc: Activated (version 2.0.0)\n[    2.180764] NET: Registered protocol family 30\n[    2.180838] tipc: Started in single node mode\n[    2.181934] qcom_haven_qrtr soc:qrtr-haven: cant parse shared mem node!\n[    2.181947] qcom_haven_qrtr: probe of soc:qrtr-haven failed with error -22\n[    2.182506] No device name found in device tree.\n[    2.183442] ch_haven_recv soc:qcom,svm_neuron_block:channel0: cant parse shared mem node!\n[    2.183446] ch_haven_recv soc:qcom,svm_neuron_block:channel0: failed to map memory -22\n[    2.183452] ch_haven_recv: probe of soc:qcom,svm_neuron_block:channel0 failed with error -22\n[    2.183977] ch_haven_send soc:qcom,svm_neuron_block:channel1: cant parse shared mem node!\n[    2.183984] ch_haven_send: probe of soc:qcom,svm_neuron_block:channel1 failed with error -22\n[    2.184613] registered taskstats version 1\n[    2.184615] Loading compiled-in X.509 certificates\n[    2.184675] Key type ._fscrypt registered\n[    2.184678] Key type .fscrypt registered\n[    2.184679] Key type fscrypt-provisioning registered\n[    2.184769] pstore: Invalid compression size for deflate: 0\n[    2.220191] Unable to find log_buf by kallsyms!\n[    2.220392] spss_utils [spss_parse_dt]: iar_buf_addr [0x8d800000].\n[    2.223996] cnss: use-pm-domain is 1\n[    2.224002] cnss: set_wlaon_pwr_ctrl is 0\n[    2.224009] cnss: TCS CMD base address is 0x000000000b2e5510 with length 0x0000000000000690\n[    2.224027] cnss2 b0000000.qcom,cnss-qca6490: can't request region for resource [mem 0x0b2e5510-0x0b2e5b9f]\n[    2.224028] cnss: Failed to map TCS CMD address, err = -16\n[    2.224034] cnss: CommandDB name is not present for CPR\n[    2.224210] cnss: Got regulator: vdd-wlan-io, min_uv: 1800000, max_uv: 1800000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.224441] cnss: Got regulator: wlan-ant-switch, min_uv: 2800000, max_uv: 2800000, load_ua: 0, delay_us: 0, need_unvote: 0\n[    2.224527] cnss: Got regulator: vdd-wlan-aon, min_uv: 950000, max_uv: 952000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.224582] cnss: Got regulator: vdd-wlan-dig, min_uv: 950000, max_uv: 952000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.224634] cnss: Got regulator: vdd-wlan-rfa1, min_uv: 1880000, max_uv: 1880000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.224690] cnss: Got regulator: vdd-wlan-rfa2, min_uv: 1350000, max_uv: 1350000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.224726] cnss: Failed to get optional clock rf_clk, err = -2\n[    2.224813] cnss: BT GPIO: 373\n[    2.224817] cnss: Regulator vdd-wlan-io is being enabled\n[    2.224959] cnss: Regulator wlan-ant-switch is being enabled\n[    2.225329] cnss: Regulator vdd-wlan-aon is being enabled\n[    2.225925] cnss: Regulator vdd-wlan-dig is being enabled\n[    2.226031] cnss: Regulator vdd-wlan-rfa1 is being enabled\n[    2.226138] cnss: Regulator vdd-wlan-rfa2 is being enabled\n[    2.226236] cnss: BT_EN_GPIO State: Off. Delay WLAN_GPIO enable\n[    2.227527] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.227539] [drm:dsi_ctrl_get] *ERROR* [msm-dsi-error]: inv: Device with of node not found rc=-517\n[    2.232919] disp_cc_pll0 PLL is already enabled\n[    2.233104] disp_cc-lahaina af00000.qcom,dispcc: Registered DISP CC clocks\n[    2.233234] cam_cc_bps_gdsc: supplied by pm8350c_s8_level\n[    2.233449] cam_cc_ife_0_gdsc: supplied by pm8350c_s8_level\n[    2.233619] cam_cc_ife_1_gdsc: supplied by pm8350c_s8_level\n[    2.233787] cam_cc_ife_2_gdsc: supplied by pm8350c_s8_level\n[    2.233952] cam_cc_ipe_0_gdsc: supplied by pm8350c_s8_level\n[    2.234132] cam_cc_sbi_gdsc: supplied by pm8350c_s8_level\n[    2.234322] cam_cc_titan_top_gdsc: supplied by pm8350c_s8_level\n[    2.234503] disp_cc_mdss_core_gdsc: supplied by pm8350c_s8_level\n[    2.234710] video_cc_mvs0_gdsc: supplied by pm8350c_s8_level\n[    2.234877] video_cc_mvs0c_gdsc: supplied by pm8350c_s8_level\n[    2.235040] video_cc_mvs1_gdsc: supplied by pm8350c_s8_level\n[    2.235206] video_cc_mvs1c_gdsc: supplied by pm8350c_s8_level\n[    2.235530] msm_drm ae00000.qcom,mdss_mdp: qcom,sde_rscc not probed yet\n[    2.238245] rmnet_ipa3 started initialization\n[    2.247155] random: crng init done\n[    2.261748] arm-smmu 15000000.apps-smmu: \tcoherent table walk\n[    2.261753] arm-smmu 15000000.apps-smmu: \tstream matching with 89 register groups\n[    2.263023] msm-dwc3 a600000.ssusb: Adding to iommu group 1\n[    2.263302] msm-dwc3 a600000.ssusb: IRQ hs_phy_irq not found\n[    2.265268] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.266974] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    2.267043] sps:BAM 0x000000000a704000 is registered\n[    2.269805] msm_vidc_v4l2 aa00000.qcom,vidc:non_secure_cb: Adding to iommu group 2\n[    2.271866] msm_vidc_v4l2 aa00000.qcom,vidc:secure_non_pixel_cb: Adding to iommu group 3\n[    2.273705] msm_vidc_v4l2 aa00000.qcom,vidc:secure_bitstream_cb: Adding to iommu group 4\n[    2.275538] msm_vidc_v4l2 aa00000.qcom,vidc:secure_pixel_cb: Adding to iommu group 5\n[    2.278466] coresight-clk-disable-amba 6048000.tmc: Adding to iommu group 6\n[    2.281516] kgsl-3d 3d00000.qcom,kgsl-3d0: bound 3d6a000.qcom,gmu (ops 0xffffffd7d6bca2e8)\n[    2.286521] platform 3da0000.qcom,kgsl-iommu:gfx3d_user: Adding to iommu group 7\n[    2.287557] platform 3da0000.qcom,kgsl-iommu:gfx3d_lpac: Adding to iommu group 8\n[    2.288447] platform 3da0000.qcom,kgsl-iommu:gfx3d_secure: Adding to iommu group 9\n[    2.295490] msm_cvp ab00000.qcom,cvp:cvp_non_secure_cb: Adding to iommu group 10\n[    2.297296] msm_cvp ab00000.qcom,cvp:cvp_secure_nonpixel_cb: Adding to iommu group 11\n[    2.299105] msm_cvp ab00000.qcom,cvp:cvp_secure_pixel_cb: Adding to iommu group 12\n[    2.300508] msm_cvp ab00000.qcom,cvp:qcom,msm-cvp,mem_cdsp: assigned reserved memory node cdsp_region\n[    2.306468] gpi_dma 900000.qcom,gpi-dma: Adding to iommu group 13\n[    2.307663] gpi_dma a00000.qcom,gpi-dma: Adding to iommu group 14\n[    2.308906] gpi_dma 800000.qcom,gpi-dma: Adding to iommu group 15\n[    2.310121] minidump-id not found for ipa_fws\n[    2.310172] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    2.310280] subsys-pil-tz soc:qcom,ipa_fws: for md_ipa_fws segments only will be dumped.\n[    2.310614] minidump-id not found for evass\n[    2.310660] subsys-pil-tz abb0000.qcom,evass: for evass segments only will be dumped.\n[    2.310736] subsys-pil-tz abb0000.qcom,evass: for md_evass segments only will be dumped.\n[    2.311047] minidump-id not found for trustedvm\n[    2.311086] subsys-pil-tz soc:qcom,trustedvm@d0800000: for trustedvm segments only will be dumped.\n[    2.311166] subsys-pil-tz soc:qcom,trustedvm@d0800000: for md_trustedvm segments only will be dumped.\n[    2.311469] minidump-id not found for a660_zap\n[    2.311512] subsys-pil-tz soc:qcom,kgsl-hyp: for a660_zap segments only will be dumped.\n[    2.311591] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a660_zap segments only will be dumped.\n[    2.311991] hh_msgq: Registered client for label: 1\n[    2.312388] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1: Adding to iommu group 16\n[    2.312805] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2: Adding to iommu group 17\n[    2.313212] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3: Adding to iommu group 18\n[    2.313620] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4: Adding to iommu group 19\n[    2.314017] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5: Adding to iommu group 20\n[    2.314421] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6: Adding to iommu group 21\n[    2.314826] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7: Adding to iommu group 22\n[    2.315240] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8: Adding to iommu group 23\n[    2.315986] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9: Adding to iommu group 24\n[    2.316380] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10: Adding to iommu group 25\n[    2.316803] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11: Adding to iommu group 26\n[    2.317191] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12: Adding to iommu group 27\n[    2.317584] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13: Adding to iommu group 28\n[    2.317988] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14: Adding to iommu group 29\n[    2.318380] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb15: Adding to iommu group 30\n[    2.318789] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb16: Adding to iommu group 31\n[    2.319193] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb17: Adding to iommu group 32\n[    2.319606] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb18: Adding to iommu group 33\n[    2.320051] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb19: Adding to iommu group 34\n[    2.320352] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.320357] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.320858] qce 1de0000.qcedev: Adding to iommu group 35\n[    2.321310] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    2.321465] qce 1de0000.qcedev: QTI Crypto 5.6.0 device found @0x1de0000\n[    2.321536] sps:BAM 0x0000000001dc4000 is registered\n[    2.321610] sps:BAM 0x0000000001dc4000 (va:0x000000006f4b80a8) enabled: ver:0x27, number of pipes:16\n[    2.321709] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 40\n[    2.323462] qce 1de0000.qcedev:qcom_cedev_ns_cb: Adding to iommu group 36\n[    2.325399] qce 1de0000.qcedev:qcom_cedev_s_cb: Adding to iommu group 37\n[    2.325833] qcrypto 1de0000.qcrypto: Adding to iommu group 38\n[    2.326035] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    2.326189] qcrypto 1de0000.qcrypto: QTI Crypto 5.6.0 device found @0x1de0000\n[    2.326288] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 40\n[    2.326530] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    2.326664] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    2.326777] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    2.326876] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    2.326967] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    2.327062] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    2.327146] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    2.327231] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    2.327316] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    2.327401] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    2.327495] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    2.327580] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    2.327665] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    2.327757] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    2.327842] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    2.327927] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    2.328011] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    2.328097] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    2.328184] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    2.328280] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    2.330156] uaudio-qmi soc:usb_audio_qmi_dev: Adding to iommu group 39\n[    2.330983] [sde_rsc_hw:rsc_hw_init_v3:538]: sde rsc init successfully done\n[    2.330999] [sde_rsc:sde_rsc_probe:1778]: sde rsc index:0 probed successfully\n[    2.331171] cnss: Assert WLAN_EN GPIO successfully\n[    2.331187] cnss: Failed to enable PCIe RC0, err = -517\n[    2.331189] cnss: Retry PCI link training #1\n[    2.331197] cnss: Failed to enable PCIe RC0, err = -517\n[    2.331199] cnss: Retry PCI link training #2\n[    2.331207] cnss: Failed to enable PCIe RC0, err = -517\n[    2.331209] cnss: Retry PCI link training #3\n[    2.331216] cnss: Failed to enable PCIe RC0, err = -517\n[    2.331226] cnss: De-assert WLAN_EN GPIO successfully\n[    2.331229] cnss: Regulator vdd-wlan-rfa2 is being disabled\n[    2.331281] cnss: Regulator vdd-wlan-rfa1 is being disabled\n[    2.331317] cnss: Regulator vdd-wlan-dig is being disabled\n[    2.331352] cnss: Regulator vdd-wlan-aon is being disabled\n[    2.331388] cnss: Regulator wlan-ant-switch is being disabled\n[    2.331409] msmdrm_smmu soc:qcom,smmu_sde_unsec_cb: Adding to iommu group 40\n[    2.331412] cnss: Regulator vdd-wlan-io is being disabled\n[    2.331434] cnss: Put regulator: vdd-wlan-io\n[    2.331493] cnss: Put regulator: wlan-ant-switch\n[    2.331514] [drm] probing device qcom,smmu_sde_unsec\n[    2.331517] [drm] Created domain mdp_ns, secure=0\n[    2.331532] cnss: Put regulator: vdd-wlan-aon\n[    2.331569] cnss: Put regulator: vdd-wlan-dig\n[    2.331602] cnss: Put regulator: vdd-wlan-rfa1\n[    2.331636] cnss: Put regulator: vdd-wlan-rfa2\n[    2.332128] msmdrm_smmu soc:qcom,smmu_sde_sec_cb: Adding to iommu group 41\n[    2.332216] [drm] probing device qcom,smmu_sde_sec\n[    2.332219] [drm] Created domain mdp_s, secure=1\n[    2.332422] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    2.332627] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    2.333023] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_ife: Adding to iommu group 42\n[    2.333502] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_jpeg: Adding to iommu group 43\n[    2.334024] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_icp: Adding to iommu group 44\n[    2.334499] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm: Adding to iommu group 45\n[    2.335153] spss_utils [spss_parse_dt]: iar_buf_addr [0x8d800000].\n[    2.337073] qupv3_geni_se 9c0000.qcom,qupv3_0_geni_se: Adding to iommu group 46\n[    2.337558] qupv3_geni_se ac0000.qcom,qupv3_1_geni_se: Adding to iommu group 47\n[    2.338035] qupv3_geni_se 8c0000.qcom,qupv3_2_geni_se: Adding to iommu group 48\n[    2.340479] ufshcd-qcom 1d84000.ufshc: Adding to iommu group 49\n[    2.340707] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: unable to find vdd-hba-max-microamp\n[    2.340724] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled\n[    2.341505] ufshcd-qcom 1d84000.ufshc: -- Registered bus voting! (0) --\n[    2.342144] ufshcd-qcom 1d84000.ufshc: invalid UFS version 0x300\n[    2.342392] scsi host0: ufshcd\n[    2.349389] ufshcd-qcom 1d84000.ufshc: *** This is drivers/scsi/ufs/ufshcd.c ***\n[    2.351102] i2c_geni 998000.i2c: Bus frequency is set to 400000Hz.\n[    2.353011] aw8697_i2c_probe enter\n[    2.353083] aw8697_haptic 0-005a: aw8697_parse_dt: reset gpio provided ok\n[    2.353090] aw8697_haptic 0-005a: aw8697_parse_dt: irq gpio provided ok.\n[    2.353110] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.353112] aw8697_parse_dt ---2912 \n[    2.353115] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.353117] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.353120] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.353122] aw8697_parse_dt ---2912 \n[    2.353124] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.353125] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.353128] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.353129] aw8697_parse_dt ---2912 \n[    2.353132] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.353133] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.353136] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.353137] aw8697_parse_dt ---2912 \n[    2.353139] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.353141] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.353143] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.353145] aw8697_parse_dt ---2912 \n[    2.353147] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.353149] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.353151] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.353153] aw8697_parse_dt ---2912 \n[    2.353155] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.353156] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.353159] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.353160] aw8697_parse_dt ---2912 \n[    2.353163] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.353164] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.353167] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.353168] aw8697_parse_dt ---2912 \n[    2.353170] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.353172] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.353174] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.353176] aw8697_parse_dt ---2912 \n[    2.353178] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.353180] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.353182] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.353184] aw8697_parse_dt ---2912 \n[    2.353186] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.353187] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.353189]  20190420_dt       aw8697->info.bst_vol_default: 0x14\n[    2.353191]  20190420_dt       aw8697->info.bst_vol_ram: 0x14\n[    2.353192]  20190420_dt       aw8697->info.bst_vol_rtp: 0x14\n[    2.353193] aw8697_i2c_probe ---4584 \n[    2.353273] found pin control aw8697_reset_reset\n[    2.353275] Selected 'aw8697_interrupt_active'\n[    2.353277] found pin control aw8697_reset_active\n[    2.353278] Selected 'aw8697_interrupt_active'\n[    2.353280] found pin control aw8697_interrupt_active\n[    2.353288] Selected 'aw8697_interrupt_active'\n[    2.353289] aw8697_i2c_probe ---4624 \n[    2.353305] Selected 'aw8697_reset_active'\n[    2.360902] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    2.370076] Selected 'aw8697_reset_reset'\n[    2.390081] Selected 'aw8697_reset_active'\n[    2.390223] i2c_geni 998000.i2c: i2c error :-107\n[    2.390229] aw8697_i2c_read: i2c_read cnt=0 error=-107\n[    2.410275] aw8697_read_chipid aw8697 detected\n[    2.410276] aw8697_haptic_softreset enter\n[    2.432510] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 344, hwirq 119\n[    2.432515] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 123\n[    2.432522] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 344 parent hwirq 123\n[    2.432789] aw8697_vibrator_init enter\n[    2.432792] aw8697_haptic_init enter\n[    2.435284] aw8697_haptic_play_mode enter\n[    2.437449] aw8697_haptic_set_bst_peak_cur  778 enter\n[    2.437812] aw8697_haptic_swicth_motorprotect_config enter\n[    2.439260] aw8697_haptic_offset_calibration enter\n[    2.440987] aw8697_haptic_f0_calibration enter\n[    2.441144] aw8697_haptic_get_f0 enter\n[    2.441145] aw8697_haptic_stop enter\n[    2.441773] aw8697_haptic_play_mode enter\n[    2.442508] aw8697_haptic_play_mode enter\n[    2.443235] aw8697_haptic_active enter\n[    2.445989] aw8697_haptic_set_f0_preset enter\n[    2.533622] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[4, 4], lane[2, 2], pwr[FAST MODE, FAST MODE], rate = 2\n[    2.533752] ufshcd-qcom 1d84000.ufshc: ufshcd_wb_config: Write Booster Configured\n[    2.534058] scsi 0:0:0:49488: Well-known LUN    SAMSUNG  KLUEG8UHDC-B0E1  0100 PQ: 0 ANSI: 6\n[    2.534461] scsi 0:0:0:49488: Attached scsi generic sg0 type 30\n[    2.534783] scsi 0:0:0:49476: Well-known LUN    SAMSUNG  KLUEG8UHDC-B0E1  0100 PQ: 0 ANSI: 6\n[    2.535148] scsi 0:0:0:49476: Attached scsi generic sg1 type 30\n[    2.535385] scsi 0:0:0:49456: Well-known LUN    SAMSUNG  KLUEG8UHDC-B0E1  0100 PQ: 0 ANSI: 6\n[    2.535734] scsi 0:0:0:49456: Attached scsi generic sg2 type 30\n[    2.536175] scsi 0:0:0:0: Direct-Access     SAMSUNG  KLUEG8UHDC-B0E1  0100 PQ: 0 ANSI: 6\n[    2.536528] sd 0:0:0:0: Attached scsi generic sg3 type 0\n[    2.536531] sd 0:0:0:0: Power-on or device reset occurred\n[    2.536843] scsi 0:0:0:1: Direct-Access     SAMSUNG  KLUEG8UHDC-B0E1  0100 PQ: 0 ANSI: 6\n[    2.537018] sd 0:0:0:0: [sda] 61659136 4096-byte logical blocks: (253 GB/235 GiB)\n[    2.537082] sd 0:0:0:0: [sda] Write Protect is off\n[    2.537088] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    2.537204] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.537264] sd 0:0:0:0: [sda] Optimal transfer size 524288 bytes\n[    2.537266] sd 0:0:0:1: Attached scsi generic sg4 type 0\n[    2.537369] sd 0:0:0:1: Power-on or device reset occurred\n[    2.537534] scsi 0:0:0:2: Direct-Access     SAMSUNG  KLUEG8UHDC-B0E1  0100 PQ: 0 ANSI: 6\n[    2.537831] sd 0:0:0:1: [sdb] 4096 4096-byte logical blocks: (16.8 MB/16.0 MiB)\n[    2.537898] sd 0:0:0:2: Attached scsi generic sg5 type 0\n[    2.537907] sd 0:0:0:1: [sdb] Write Protect is off\n[    2.537912] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    2.537973] sd 0:0:0:2: Power-on or device reset occurred\n[    2.538049] sd 0:0:0:1: [sdb] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.538129] sd 0:0:0:1: [sdb] Optimal transfer size 524288 bytes\n[    2.538185] scsi 0:0:0:3: Direct-Access     SAMSUNG  KLUEG8UHDC-B0E1  0100 PQ: 0 ANSI: 6\n[    2.538486] sd 0:0:0:2: [sdc] 4096 4096-byte logical blocks: (16.8 MB/16.0 MiB)\n[    2.538563] sd 0:0:0:2: [sdc] Write Protect is off\n[    2.538567] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    2.538603] sd 0:0:0:3: Attached scsi generic sg6 type 0\n[    2.538692] sd 0:0:0:3: Power-on or device reset occurred\n[    2.538739] sd 0:0:0:2: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.538814] sd 0:0:0:2: [sdc] Optimal transfer size 524288 bytes\n[    2.538899] scsi 0:0:0:4: Direct-Access     SAMSUNG  KLUEG8UHDC-B0E1  0100 PQ: 0 ANSI: 6\n[    2.539335] sd 0:0:0:4: Attached scsi generic sg7 type 0\n[    2.539433] sd 0:0:0:4: Power-on or device reset occurred\n[    2.539576] sd 0:0:0:3: [sdd] 8192 4096-byte logical blocks: (33.6 MB/32.0 MiB)\n[    2.539622] scsi 0:0:0:5: Direct-Access     SAMSUNG  KLUEG8UHDC-B0E1  0100 PQ: 0 ANSI: 6\n[    2.539989] sd 0:0:0:3: [sdd] Write Protect is off\n[    2.539994] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    2.540565] sd 0:0:0:3: [sdd] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.540694] sd 0:0:0:5: Power-on or device reset occurred\n[    2.540724] sd 0:0:0:5: Attached scsi generic sg8 type 0\n[    2.540992] sd 0:0:0:3: [sdd] Optimal transfer size 524288 bytes\n[    2.541325]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21 sda22 sda23 sda24 sda25 sda26 sda27 sda28 sda29 sda30 sda31 sda32 sda33 sda34\n[    2.542098] sd 0:0:0:4: [sde] 786432 4096-byte logical blocks: (3.22 GB/3.00 GiB)\n[    2.542452] sd 0:0:0:4: [sde] Write Protect is off\n[    2.542457] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    2.543073] sd 0:0:0:5: [sdf] 8192 4096-byte logical blocks: (33.6 MB/32.0 MiB)\n[    2.543149]  sdb: sdb1 sdb2\n[    2.543214] sd 0:0:0:5: [sdf] Write Protect is off\n[    2.543218] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    2.543224] sd 0:0:0:4: [sde] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.543430] sd 0:0:0:4: [sde] Optimal transfer size 524288 bytes\n[    2.543479] sd 0:0:0:5: [sdf] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.543548] sd 0:0:0:5: [sdf] Optimal transfer size 524288 bytes\n[    2.543761]  sdc: sdc1 sdc2\n[    2.544779]  sdd: sdd1 sdd2 sdd3 sdd4 sdd5\n[    2.544903] sd 0:0:0:1: [sdb] Attached SCSI disk\n[    2.546841]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6\n[    2.546987] sd 0:0:0:2: [sdc] Attached SCSI disk\n[    2.547016] sd 0:0:0:0: [sda] Attached SCSI disk\n[    2.547097] sd 0:0:0:3: [sdd] Attached SCSI disk\n[    2.547525]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51 sde52 sde53 sde54 sde55 sde56 sde57 sde58 sde59 sde60 sde61 sde62 sde63 sde64 sde65 sde66 sde67 sde68 sde69 sde70 sde71\n[    2.548212] sd 0:0:0:5: [sdf] Attached SCSI disk\n[    2.554198] sd 0:0:0:4: [sde] Attached SCSI disk\n[    2.560070] aw8697_haptic_read_f0 enter\n[    2.560563] aw8697_haptic_read_f0 f0=1704\n[    2.560566] aw8697_haptic_read_beme  1245 enter\n[    2.561011] aw8697_haptic_read_beme max_pos_beme=127\n[    2.561013] aw8697_haptic_read_beme max_neg_beme=136\n[    2.561748] aw8697_haptic_f0_calibration  line=2156 f0_cali_step=9\n[    2.561750] aw8697_haptic_f0_calibration line=2158  f0_limit=1704\n[    2.561752] aw8697_haptic_f0_calibration line=2160  aw8697->info.f0_pre=1700\n[    2.561754] aw8697_haptic_f0_calibration f0_cali_lra=1\n[    2.562122] aw8697_haptic_f0_calibration final trim_lra=0x01\n[    2.562124] aw8697_haptic_play_mode enter\n[    2.563225] aw8697_haptic_stop enter\n[    2.563815] aw8697_haptic_play_mode enter\n[    2.565218] input: aw8697_haptic as /devices/platform/soc/998000.i2c/i2c-0/0-005a/input/input2\n[    2.565349] rb init\n[    2.565351] aw8697_i2c_probe probe completed successfully!\n[    2.565384] i2c_geni 998000.i2c: I2C probed\n[    2.566435] i2c_geni a80000.i2c: Bus frequency is set to 400000Hz.\n[    2.568078] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 345, hwirq 44\n[    2.568081] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 102\n[    2.568087] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 345 parent hwirq 102\n[    2.568096] cs35l41 1-0040: cs35l41 i2c probe start\n[    2.568224] cs35l41 1-0040: 1-0040 supply VA not found, using dummy regulator\n[    2.568285] cs35l41 1-0040: 1-0040 supply VP not found, using dummy regulator\n[    2.644040] cs35l41 1-0040: Cirrus Logic CS35L41 (35a40), Revision: B2\n[    2.645295] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 346, hwirq 116\n[    2.645299] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 106\n[    2.645304] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 346 parent hwirq 106\n[    2.645311] cs35l41 1-0042: cs35l41 i2c probe start\n[    2.645378] cs35l41 1-0042: 1-0042 supply VA not found, using dummy regulator\n[    2.645433] cs35l41 1-0042: 1-0042 supply VP not found, using dummy regulator\n[    2.723138] cs35l41 1-0042: Cirrus Logic CS35L41 (35a40), Revision: B2\n[    2.723166] i2c_geni a80000.i2c: I2C probed\n[    2.723462] i2c_geni a94000.i2c: Multi-EE usecase\n[    2.723466] i2c_geni a94000.i2c: Bus frequency is set to 400000Hz.\n[    2.726338] fsa4480-driver 2-0042: fsa4480_probe: Looking up qcom,use-power-supply property failed or disabled\n[    2.731942] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    2.735826] pm8008i_l1: supplied by pm8350_s12\n[    2.736124] pm8008i_l1: Bringing 1200000uV into 1104000-1104000uV\n[    2.738779] pm8008i_l2: supplied by pm8350_s12\n[    2.740719] pm8008i_l3: supplied by pm8350c_bob\n[    2.742752] pm8008i_l4: supplied by pm8350c_bob\n[    2.744688] pm8008i_l5: supplied by pm8350c_s1\n[    2.746626] pm8008i_l6: supplied by pm8350c_bob\n[    2.748567] pm8008i_l7: supplied by pm8350c_bob\n[    2.750080] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    2.750628] i2c_geni a94000.i2c: i2c error :-107\n[    2.750634] PM8008: pm8008_read: failed to read 0x0950\n[    2.750636] PM8008: _pm8008_chip_is_enabled: qcom,pm8008-chip-en: failed to get chip state rc=-107\n[    2.750637] PM8008: pm8008_chip_probe: Failed to register chip enable regulator rc=-107\n[    2.750644] qcom,pm8008-chip: probe of a94000.i2c:pm8008j@c:pm8008-chip@900 failed with error -107\n[    2.750967] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    2.751559] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    2.751658] i2c_geni a94000.i2c: I2C probed\n[    2.752212] msm_geni_serial 890000.qcom,qup_uart: Wakeup byte 0xfd\n[    2.752252] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 347, hwirq 71\n[    2.752256] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 134\n[    2.752260] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 347 parent hwirq 134\n[    2.752332] msm_geni_serial 890000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    2.752339] msm_geni_serial 890000.qcom,qup_uart: Failed to create dbg dir\n[    2.752805] 890000.qcom,qup_uart: ttyHS0 at MMIO 0x890000 (irq = 198, base_baud = 0) is a MSM\n[    2.753221] i2c_geni 884000.i2c: Bus frequency is set to 1000000Hz.\n[    2.753655] i2c_geni 884000.i2c: I2C probed\n[    2.753922] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 348, hwirq 87\n[    2.753926] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 138\n[    2.753930] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 348 parent hwirq 138\n[    2.753937] nfc_i2c_dev_probe: enter\n[    2.753959] qcom,sn-nci 3-0028: error reading NFC VDDIO min and max value\n[    2.753962] qcom,sn-nci 3-0028: error reading NFC current value\n[    2.754008] pci-msm 1c00000.qcom,pcie: PCIe: msm_pcie_probe\n[    2.754090] nfc_i2c_dev_probe : requesting IRQ 348\n[    2.754143] nfc_ldo_config: regulator entry not present\n[    2.754331] pci-msm 1c00000.qcom,pcie: 1c00000.qcom,pcie supply vreg-3p3 not found, using dummy regulator\n[    2.754624] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 349, hwirq 96\n[    2.754627] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 148\n[    2.754632] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 349 parent hwirq 148\n[    2.754682] msm_pcie_get_reg: PCIe: RC0: no tcsr resource found.\n[    2.754687] msm_pcie_get_reg: PCIe: RC0: no rumi resource found.\n[    2.758732] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.758745] [drm:dsi_ctrl_get] *ERROR* [msm-dsi-error]: inv: Device with of node not found rc=-517\n[    2.759790] minidump-id not found for spss\n[    2.761232] minidump-id not found for slpi\n[    2.767542] ipa 1e00000.qcom,ipa:ipa_smmu_ap: Adding to iommu group 50\n[    2.767926] ipa 1e00000.qcom,ipa:ipa_smmu_wlan: Adding to iommu group 51\n[    2.768307] ipa 1e00000.qcom,ipa:ipa_smmu_uc: Adding to iommu group 52\n[    2.768671] ipa 1e00000.qcom,ipa:ipa_smmu_11ad: Adding to iommu group 53\n[    2.769884] minidump-id not found for venus\n[    2.770558] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.770563] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.771063] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    2.771160] cnss: use-pm-domain is 1\n[    2.771165] cnss: set_wlaon_pwr_ctrl is 0\n[    2.771170] cnss: TCS CMD base address is 0x000000000b2e5510 with length 0x0000000000000690\n[    2.771209] cnss2 b0000000.qcom,cnss-qca6490: can't request region for resource [mem 0x0b2e5510-0x0b2e5b9f]\n[    2.771211] cnss: Failed to map TCS CMD address, err = -16\n[    2.771215] cnss: CommandDB name is not present for CPR\n[    2.771272] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    2.771353] cnss: Got regulator: vdd-wlan-io, min_uv: 1800000, max_uv: 1800000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.771573] cnss: Got regulator: wlan-ant-switch, min_uv: 2800000, max_uv: 2800000, load_ua: 0, delay_us: 0, need_unvote: 0\n[    2.771665] cnss: Got regulator: vdd-wlan-aon, min_uv: 950000, max_uv: 952000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.771713] cnss: Got regulator: vdd-wlan-dig, min_uv: 950000, max_uv: 952000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.771772] cnss: Got regulator: vdd-wlan-rfa1, min_uv: 1880000, max_uv: 1880000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.771820] cnss: Got regulator: vdd-wlan-rfa2, min_uv: 1350000, max_uv: 1350000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.771852] cnss: Failed to get optional clock rf_clk, err = -2\n[    2.771923] cnss: BT GPIO: 373\n[    2.771927] cnss: Regulator vdd-wlan-io is being enabled\n[    2.772002] cnss: Regulator wlan-ant-switch is being enabled\n[    2.772264] synx: registered bind ops type 0 for cam_sync\n[    2.772272] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-sync (ops 0xffffffd7d6e0e7a8)\n[    2.772278] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu (ops 0xffffffd7d6e0e5b8)\n[    2.772295] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_ife (ops 0xffffffd7d6e0e5c8)\n[    2.772325] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_jpeg (ops 0xffffffd7d6e0e5c8)\n[    2.772326] cnss: Regulator vdd-wlan-aon is being enabled\n[    2.772332] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_icp_fw (ops 0xffffffd7d6e0e5e8)\n[    2.772376] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_icp (ops 0xffffffd7d6e0e5c8)\n[    2.772388] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm (ops 0xffffffd7d6e0e5c8)\n[    2.772394] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_secure (ops 0xffffffd7d6e0e5c8)\n[    2.772959] cnss: Regulator vdd-wlan-dig is being enabled\n[    2.773064] cnss: Regulator vdd-wlan-rfa1 is being enabled\n[    2.773189] cnss: Regulator vdd-wlan-rfa2 is being enabled\n[    2.773256] cnss: BT_EN_GPIO State: Off. Delay WLAN_GPIO enable\n[    2.775199] cam_req_mgr soc:qcom,cam-req-mgr: bound ac40000.qcom,cam-cpas (ops 0xffffffd7d6e0ef10)\n[    2.775347] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-cdm-intf (ops 0xffffffd7d6e0f1b0)\n[    2.778836] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4d000.qcom,cpas-cdm0 (ops 0xffffffd7d6e0f1c8)\n[    2.782941] cam_req_mgr soc:qcom,cam-req-mgr: bound acb4200.qcom,ife-cdm0 (ops 0xffffffd7d6e0f1c8)\n[    2.787027] cam_req_mgr soc:qcom,cam-req-mgr: bound acc3200.qcom,ife-cdm1 (ops 0xffffffd7d6e0f1c8)\n[    2.791088] cam_req_mgr soc:qcom,cam-req-mgr: bound acef200.qcom,ife-cdm2 (ops 0xffffffd7d6e0f1c8)\n[    2.792356] cam_req_mgr soc:qcom,cam-req-mgr: bound ac97000.qcom,tpg0 (ops 0xffffffd7d6e11e10)\n[    2.793575] cam_req_mgr soc:qcom,cam-req-mgr: bound ac98000.qcom,tpg1 (ops 0xffffffd7d6e11e10)\n[    2.793835] cam_req_mgr soc:qcom,cam-req-mgr: bound acb5200.qcom,csid0 (ops 0xffffffd7d6e0fa80)\n[    2.794087] cam_req_mgr soc:qcom,cam-req-mgr: bound acc4200.qcom,csid1 (ops 0xffffffd7d6e0fa80)\n[    2.794337] cam_req_mgr soc:qcom,cam-req-mgr: bound acf0200.qcom,csid2 (ops 0xffffffd7d6e0fa80)\n[    2.794522] cam_req_mgr soc:qcom,cam-req-mgr: bound acd9200.qcom,csid-lite0 (ops 0xffffffd7d6e0fa80)\n[    2.794742] cam_req_mgr soc:qcom,cam-req-mgr: bound acdb400.qcom,csid-lite1 (ops 0xffffffd7d6e0fa80)\n[    2.796120] cam_req_mgr soc:qcom,cam-req-mgr: bound acb4000.qcom,ife0 (ops 0xffffffd7d6e10a18)\n[    2.797463] cam_req_mgr soc:qcom,cam-req-mgr: bound acc3000.qcom,ife1 (ops 0xffffffd7d6e10a18)\n[    2.798808] cam_req_mgr soc:qcom,cam-req-mgr: bound acef000.qcom,ife2 (ops 0xffffffd7d6e10a18)\n[    2.799979] cam_req_mgr soc:qcom,cam-req-mgr: bound acd9000.qcom,ife-lite0 (ops 0xffffffd7d6e10a18)\n[    2.801155] cam_req_mgr soc:qcom,cam-req-mgr: bound acdb200.qcom,ife-lite1 (ops 0xffffffd7d6e10a18)\n[    2.801587] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-isp (ops 0xffffffd7d6e12350)\n[    2.801667] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-res-mgr (ops 0xffffffd7d6e141b0)\n[    2.802235] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0 (ops 0xffffffd7d6e135b0)\n[    2.802771] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1 (ops 0xffffffd7d6e135b0)\n[    2.803102] cam_req_mgr soc:qcom,cam-req-mgr: bound ac6a000.qcom,csiphy0 (ops 0xffffffd7d6e13808)\n[    2.803423] cam_req_mgr soc:qcom,cam-req-mgr: bound ac6c000.qcom,csiphy1 (ops 0xffffffd7d6e13808)\n[    2.803751] cam_req_mgr soc:qcom,cam-req-mgr: bound ac6e000.qcom,csiphy2 (ops 0xffffffd7d6e13808)\n[    2.804070] cam_req_mgr soc:qcom,cam-req-mgr: bound ac70000.qcom,csiphy3 (ops 0xffffffd7d6e13808)\n[    2.804387] cam_req_mgr soc:qcom,cam-req-mgr: bound ac72000.qcom,csiphy4 (ops 0xffffffd7d6e13808)\n[    2.804711] cam_req_mgr soc:qcom,cam-req-mgr: bound ac74000.qcom,csiphy5 (ops 0xffffffd7d6e13808)\n[    2.804819] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,actuator0 (ops 0xffffffd7d6e13378)\n[    2.804913] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,actuator1 (ops 0xffffffd7d6e13378)\n[    2.805100] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,cam-sensor0 (ops 0xffffffd7d6e13f28)\n[    2.805295] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,cam-sensor1 (ops 0xffffffd7d6e13f28)\n[    2.805480] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,cam-sensor2 (ops 0xffffffd7d6e13f28)\n[    2.805657] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,cam-sensor3 (ops 0xffffffd7d6e13f28)\n[    2.805781] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,eeprom0 (ops 0xffffffd7d6e13ac0)\n[    2.805905] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,eeprom1 (ops 0xffffffd7d6e13ac0)\n[    2.806030] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,eeprom2 (ops 0xffffffd7d6e13ac0)\n[    2.806152] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,eeprom3 (ops 0xffffffd7d6e13ac0)\n[    2.806266] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,ois0 (ops 0xffffffd7d6e13ce0)\n[    2.806415] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,camera-flash@0 (ops 0xffffffd7d6e14368)\n[    2.806510] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,camera-flash@1 (ops 0xffffffd7d6e14368)\n[    2.806606] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,camera-flash@2 (ops 0xffffffd7d6e14368)\n[    2.806798] cam_req_mgr soc:qcom,cam-req-mgr: bound ac00000.qcom,a5 (ops 0xffffffd7d6e12750)\n[    2.806908] cam_req_mgr soc:qcom,cam-req-mgr: bound ac9a000.qcom,ipe0 (ops 0xffffffd7d6e12588)\n[    2.807014] cam_req_mgr soc:qcom,cam-req-mgr: bound ac7a000.qcom,bps (ops 0xffffffd7d6e12930)\n[    2.810589] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-icp (ops 0xffffffd7d6e12cb0)\n[    2.810745] cam_req_mgr soc:qcom,cam-req-mgr: bound ac53000.qcom,jpegenc (ops 0xffffffd7d6e12e60)\n[    2.810893] cam_req_mgr soc:qcom,cam-req-mgr: bound ac57000.qcom,jpegdma (ops 0xffffffd7d6e13000)\n[    2.812231] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-jpeg (ops 0xffffffd7d6e131a0)\n[    2.812564] spss_utils [spss_parse_dt]: iar_buf_addr [0x8d800000].\n[    2.812685] spss_utils [spss_probe]: Probe completed successfully, [spss1p].\n[    2.813213] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.813224] [drm:dsi_ctrl_get] *ERROR* [msm-dsi-error]: inv: Device with of node not found rc=-517\n[    2.813583] [drm:dsi_ctrl_dev_probe] [msm-dsi-info]: dsi-ctrl-0: Probe successful\n[    2.813879] [drm:dsi_ctrl_dev_probe] [msm-dsi-info]: dsi-ctrl-1: Probe successful\n[    2.814070] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.814075] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.814309] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    2.814499] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    2.814945] nfcc_hw_check: VEN forced reset 1 done\n[    2.815027] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.815096] [xiaomi 38 08 0a cmd mode dsc dsi panel] clk_strength = 101\n[    2.815294] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 367, hwirq 75\n[    2.815298] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 103\n[    2.815305] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 367 parent hwirq 103\n[    2.815330] [mi_disp:mi_dsi_panel_parse_config] [info]mi,panel-id is 0x4a3200380800\n[    2.815335] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-on-51-index is 2\n[    2.815339] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-off-51-index is 2\n[    2.815343] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-fod-on-51-index is 2\n[    2.815346] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-fod-off-51-index is 2\n[    2.815350] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-fod-bl-level is 2047\n[    2.815354] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-bl-min-level is 1\n[    2.815359] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-bl-max-level is 2047\n[    2.815363] [mi_disp:mi_dsi_panel_parse_config] [info]mi,panel-on-dimming-delay is 120\n[    2.815367] [mi_disp:mi_dsi_panel_parse_config] [info]mi,mdss-dsi-panel-gamma-update-flag feature not defined\n[    2.815371] [mi_disp:mi_dsi_panel_parse_config] [info]mi aod-nolp-command-enabled\n[    2.815379] [mi_disp:mi_dsi_panel_parse_config] [info]default dc backlight type is 1\n[    2.815384] [mi_disp:mi_dsi_panel_parse_config] [info]dc backlight type 440 \n[    2.815388] [mi_disp:mi_dsi_panel_parse_config] [info]local_hbm_enabled\n[    2.815392] [mi_disp:mi_dsi_panel_parse_config] [info]mi,local-hbm-on-1000nit-51-index is 3\n[    2.815396] [mi_disp:mi_dsi_panel_parse_config] [info]mi,local-hbm-off-to-hbm-51-index is 2\n[    2.815400] [mi_disp:mi_dsi_panel_parse_config] [info]fod_low_brightness_clone_threshold=40\n[    2.815404] [mi_disp:mi_dsi_panel_parse_config] [info]fod_low_brightness_lux_threshold=3\n[    2.815408] [mi_disp:mi_dsi_panel_parse_config] [info]max_brightness_clone=8191\n[    2.815571] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,smmu_sde_sec_cb (ops 0xffffffd7d6c97f40)\n[    2.815577] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,smmu_sde_unsec_cb (ops 0xffffffd7d6c97f40)\n[    2.815583] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops 0xffffffd7d6c94e98)\n[    2.815750] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 368, hwirq 82\n[    2.815754] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 140\n[    2.815759] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 368 parent hwirq 140\n[    2.815987] [mi_disp:mi_disp_feature_attach_display] [info]create disp_feature:0 kthread success\n[    2.815994] [mi_disp:mi_disp_procfs_init] [info]create procfs mipi_rw_prim success!\n[    2.815998] [mi_disp:mi_disp_procfs_init] [info]create procfs tx_cmd_set_prim success!\n[    2.816003] [mi_disp:mi_disp_debugfs_init] [info]create debugfs debug_log success!\n[    2.816008] [mi_disp:mi_disp_debugfs_init] [info]create debugfs esd_sw_prim success!\n[    2.816012] [mi_disp:mi_disp_feature_attach_display] [info]attach primary display(DSI intf) success\n[    2.816018] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-primary (ops 0xffffffd7d6c96808)\n[    2.816024] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops 0xffffffd7d6c95048)\n[    2.816048] [drm] mapped mdp address space @0000000035deb1fd\n[    2.818517] [drm:_sde_kms_hw_init_blocks:4175] sde hardware revision:0x70000000\n[    2.818619] [drm:msm_smmu_new] *ERROR* unable to find domain 1 compat: qcom,smmu_sde_nrt_unsec\n[    2.818629] [drm:msm_smmu_new] *ERROR* unable to find domain 3 compat: qcom,smmu_sde_nrt_sec\n[    2.820461] register brightness0-clone cooling device success\n[    2.824528] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    2.824530] [drm] No driver support for vblank timestamp query.\n[    2.824940] [drm] Initialized msm_drm 1.4.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    2.824943] [drm] cont_splash enabled in 1 of 1 display(s)\n[    2.825032] [drm:dsi_ctrl_isr_configure] [msm-dsi-info]: dsi-ctrl-0: IRQ 369 registered\n[    2.825352] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.825356] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.825595] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    2.825784] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    2.826050] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.826054] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.826283] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    2.826486] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    2.827119] ngd_msm_ctrl 3ac0000.slim: Adding to iommu group 54\n[    2.829230] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): allocate IRQ 370, hwirq 5\n[    2.829234] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): found parent hwirq 141\n[    2.829239] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): alloc_irqs_parent for 370 parent hwirq 141\n[    2.829411] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    2.829857] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 371, hwirq 23\n[    2.829860] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 84\n[    2.829865] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 371 parent hwirq 84\n[    2.829873] [ FTS ] fts_probe: driver spi ver: 5.2.4.1\n[    2.829874] [ FTS ] SPI interface... \n[    2.829891] [ FTS ] product_name:venus,major:9,minor:0\n[    2.829893] [ FTS ] fts_judge_hwid don't need avdd-old supply\n[    2.829908] [ FTS ] fod-lx:588\n[    2.829910] [ FTS ] fod ly:2358\n[    2.829912] [ FTS ] fod size:264\n[    2.829914] [ FTS ] fod size:264\n[    2.829955] [ FTS ] parse_dt:tp vendor: 56\n[    2.829956] [ FTS ] Unable to read tp color\n[    2.829958] [ FTS ] Unable to read tp module\n[    2.829959] [ FTS ] Unable to read tp hw version\n[    2.829961] [ FTS ] parse_dt:fw_name: st_fts_k2.ftb\n[    2.829962] [ FTS ] parse_dt:limit_name: stm_fts_production_limits.csv\n[    2.830398] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.830402] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.830592] [ FTS ] gpio_num:331, irq:371\n[    2.830696] input: fts as /devices/platform/soc/a8c000.spi/spi_master/spi1/spi1.0/input/input4\n[    2.830786] [ FTS ] openChannel: spi_master: flags = 0000 !\n[    2.830789] [ FTS ] openChannel: spi_device: max_speed = 12000000 chip select = 00 bits_per_words = 8 mode = 0000 !\n[    2.830791] [ FTS ] openChannel: completed! \n[    2.830800] [ FTS ] System resetting...\n[    2.840130] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    2.840321] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    2.841565] spi_geni a8c000.spi: tx_fifo 16 rx_fifo 16 tx_width 32\n[    2.856880] [ FTS ] System reset DONE!\n[    2.857174] [ FTS ] FW VER = 0081 \n[    2.857176] [ FTS ] SVN REV = 4017 \n[    2.857177] [ FTS ] CONFIG VER = 0046 \n[    2.857179] [ FTS ] CONFIG PROJECT ID = 0000 \n[    2.857180] [ FTS ] CX VER = FFFF \n[    2.857182] [ FTS ] CX PROJECT ID = 0000 \n[    2.857183] [ FTS ] AFE VER: CFG = 06 - CX = 06 - PANEL = 06 \n[    2.857196] [ FTS ] Release Info = 46 1E 00 00 00 00 00 00 10 9D DF AE 91 88 1F 51  \n[    2.870313] [ FTS ] Echo FOUND... OK!\n[    2.870496] [ FTS ] fts_get_lockdown_info signature:A5 id:70 70 beforecnt:1,aftercnt:2\n[    2.870504] [ FTS ] Interrupt Enabled!\n[    2.870507] [ FTS ] Lockdown:0x48,0x38,0x32,0x04,0x48,0x32,0x31,0x01\n[    2.870515] [ FTS ] FW Update and Sensing Initialization: \n[    2.870516] [ FTS ] Fw Auto Update is starting... \n[    2.870672] [ FTS ] fts_crc_check: Verifying if Config CRC Error...\n[    2.870674] [ FTS ] System resetting...\n[    2.881144] cnss: Assert WLAN_EN GPIO successfully\n[    2.881162] msm_pcie_enable: PCIe: Assert the reset of endpoint of RC0.\n[    2.884631] msm_pcie_enable: PCIe: RC0: PCIE20_PARF_INT_ALL_MASK: 0x7f80c202\n[    2.886808] pcie_phy_init: PCIe RC0 PHY is ready!\n[    2.896553] [ FTS ] System reset DONE!\n[    2.896556] [ FTS ] fts_crc_check: No Config CRC Error Found! \n[    2.896557] [ FTS ] fts_crc_check: Verifying if Cx CRC Error...\n[    2.896559] [ FTS ] fts_crc_check: No Cx CRC Error Found! \n[    2.896560] [ FTS ] fts_fw_update: NO CRC Error or Impossible to read CRC register! \n[    2.896562] [ FTS ] fts_get_lockdown_info aleady get,skip\n[    2.896564] [ FTS ] Interrupt Enabled!\n[    2.896565] [ FTS ] Choose config 0: st_fts_k2.ftb\n[    2.896567] [ FTS ] getFWdata starting ...\n[    2.896569] [ FTS ] Read FW from BIN file st_fts_k2.ftb !\n[    2.896605] [ FTS ] getFWdata Finished!\n[    2.896608] [ FTS ] parseBinFile: FILE SVN REV = 00003755\n[    2.896609] [ FTS ] parseBinFile: FILE Fw Version = 0076\n[    2.896611] [ FTS ] parseBinFile: FILE Config Project ID = 00000000\n[    2.896612] [ FTS ] parseBinFile: FILE Config Version = 0000003D\n[    2.896613] [ FTS ] parseBinFile: File External Release =  \n[    2.896614] 3D \n[    2.896615] 1E \n[    2.896616] 00 \n[    2.896617] 00 \n[    2.896618] 00 \n[    2.896619] 00 \n[    2.896620] 00 \n[    2.896621] 00 \n\n[    2.896624] [ FTS ] parseBinFile:  sec0_size = 0001B878 (112760 bytes)\n[    2.896626] [ FTS ] parseBinFile:  sec1_size = 00000E30 (3632 bytes)\n[    2.896628] [ FTS ] parseBinFile:  sec2_size = 00000000 (0 bytes) \n[    2.896629] [ FTS ] parseBinFile:  sec3_size = 00000000 (0 bytes) \n[    2.896660] [ FTS ] parseBinFile: Initialize cx_ver to default value! \n[    2.896661] [ FTS ] parseBinFile: CX Version = FFFF \n[    2.896664] [ FTS ] Code Pages: 28 panel area Pages: 1 cx area Pages: 2 fw config Pages: 1 !\n[    2.896666] [ FTS ] Code start addr: 0x00000000 cx start addr: 0x00007400 fw start addr: 0x00007C00 !\n[    2.896668] [ FTS ] READ FW DONE 116392 bytes!\n[    2.896672] [ FTS ] System resetting...\n[    2.896840] msm_pcie_enable: PCIe: Release the reset of endpoint of RC0.\n[    2.913271] msm_pcie_link_train: PCIe RC0 link initialized\n[    2.913482] pci-msm 1c00000.qcom,pcie: host bridge /soc/qcom,pcie@1c00000 ranges:\n[    2.913492] pci-msm 1c00000.qcom,pcie:   No bus range found for /soc/qcom,pcie@1c00000, using [bus 00-ff]\n[    2.913505] pci-msm 1c00000.qcom,pcie:    IO 0x60200000..0x602fffff -> 0x60200000\n[    2.913514] pci-msm 1c00000.qcom,pcie:   MEM 0x60300000..0x63ffffff -> 0x60300000\n[    2.913558] pci-msm 1c00000.qcom,pcie: MSI: qgic controller is present\n[    2.915068] pci-msm 1c00000.qcom,pcie: PCI host bridge to bus 0000:00\n[    2.915073] pci_bus 0000:00: root bus resource [bus 00-ff]\n[    2.915078] pci_bus 0000:00: root bus resource [io  0x0000-0xfffff] (bus address [0x60200000-0x602fffff])\n[    2.915081] pci_bus 0000:00: root bus resource [mem 0x60300000-0x63ffffff]\n[    2.915130] pci 0000:00:00.0: [17cb:010c] type 01 class 0x060400\n[    2.915217] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]\n[    2.915461] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold\n[    2.921358] NFC fw version = 1.10.59\n[    2.921360] nfcc_hw_check: ## NFCC == SN100x ##\n[    2.921429] nfc_i2c_dev_probe success\n[    2.922395] [ FTS ] System reset DONE!\n[    2.930857] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring\n[    2.930961] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.930965] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.931078] pci 0000:01:00.0: [17cb:1103] type 00 class 0x028000\n[    2.931194] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x001fffff 64bit]\n[    2.931213] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    2.931404] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    2.931573] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold\n[    2.946655] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01\n[    2.946675] pci 0000:00:00.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000\n[    2.946681] pci 0000:00:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000\n[    2.946694] pci 0000:00:00.0: BAR 8: assigned [mem 0x60400000-0x605fffff]\n[    2.946699] pci 0000:00:00.0: BAR 9: assigned [mem 0x60600000-0x607fffff 64bit pref]\n[    2.946704] pci 0000:00:00.0: BAR 0: assigned [mem 0x60300000-0x60300fff 64bit]\n[    2.946737] pci 0000:00:00.0: BAR 7: assigned [io  0x1000-0x1fff]\n[    2.946744] pci 0000:01:00.0: BAR 0: assigned [mem 0x60400000-0x605fffff 64bit]\n[    2.946787] pci 0000:00:00.0: PCI bridge to [bus 01]\n[    2.946794] pci 0000:00:00.0:   bridge window [io  0x1000-0x1fff]\n[    2.946811] pci 0000:00:00.0:   bridge window [mem 0x60400000-0x605fffff]\n[    2.946824] pci 0000:00:00.0:   bridge window [mem 0x60600000-0x607fffff 64bit pref]\n[    2.947188] pci-msm-rc 0000:00:00.0: Adding to iommu group 55\n[    2.947715] msm_pcie_enumerate: PCIe: RC0: has already been enumerated.\n[    2.950352] cnss_pci 0000:01:00.0: Adding to iommu group 56\n[    2.950395] cnss: PCI is probing, vendor ID: 0x17cb, device ID: 0x1103\n[    2.950407] cnss_pci 0000:01:00.0: assigned reserved memory node cnss_wlan_region\n[    2.950409] cnss: CMA area is cnss_wlan_region\n[    2.951005] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.951010] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.951370] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    2.951563] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    2.951720] cnss: Powerup is ignored\n[    2.951733] cnss: Ramdump size 0x420000\n[    2.951743] cnss2 b0000000.qcom,cnss-qca6490: for wlan segments only will be dumped.\n[    2.951844] cnss: Initializing SMMU\n[    2.951847] cnss: Enabling SMMU S1 stage\n[    2.951851] cnss: smmu_iova_start: 0x00000000a0000000, smmu_iova_len: 0x10000000\n[    2.951856] cnss: smmu_iova_ipa_start: 0x00000000b0000000, smmu_iova_ipa_len: 0x10000\n[    2.951859] cnss: iommu_geometry: 0\n[    2.951864] cnss: PCIe DRV is supported\n[    2.951896] cnss_pci 0000:01:00.0: BAR 0: assigned [mem 0x60400000-0x605fffff 64bit]\n[    2.951953] pci-msm-rc 0000:00:00.0: enabling device (0006 -> 0007)\n[    2.951973] cnss_pci 0000:01:00.0: enabling device (0000 -> 0002)\n[    2.953018] cnss: MSI base data is 800\n[    2.953022] cnss: BAR starts at 0x0000000060400000, len-200000\n[    2.953027] cnss: Assign MSI to user: MHI, num_vectors: 3, user_base_data: 800, base_vector: 0\n[    2.953030] cnss: Number of assigned MSI for MHI is 3, base vector is 0\n[    2.953034] cnss: Get IRQ number 372 for vector index 0\n[    2.953037] cnss: Get IRQ number 373 for vector index 1\n[    2.953040] cnss: Get IRQ number 374 for vector index 2\n[    2.953366] cnss: Get device version info, family number: 0x4, device number: 0xc, major version: 0x1, minor version: 0x10\n[    2.953371] cnss: Firmware name is amss.bin\n[    2.953379] cnss: Get PCI link status register: 4115\n[    2.953382] cnss: Default PCI link speed is 0x3, link width is 0x1\n[    2.960057] [ FTS ] fts_writeU8UX: cmd[1] = 20 \n[    2.960059] [ FTS ] fts_writeU8UX: cmd[2] = 00 \n[    2.960061] [ FTS ] fts_writeU8UX: cmd[3] = 00 \n[    2.960063] [ FTS ] fts_writeU8UX: cmd[4] = 24 \n[    2.960205] [ FTS ] fts_writeU8UX: cmd[1] = 20 \n[    2.960207] [ FTS ] fts_writeU8UX: cmd[2] = 00 \n[    2.960209] [ FTS ] fts_writeU8UX: cmd[3] = 00 \n[    2.960211] [ FTS ] fts_writeU8UX: cmd[4] = 32 \n[    2.960346] [ FTS ] fts_writeU8UX: cmd[1] = 20 \n[    2.960348] [ FTS ] fts_writeU8UX: cmd[2] = 00 \n[    2.960349] [ FTS ] fts_writeU8UX: cmd[3] = 00 \n[    2.960351] [ FTS ] fts_writeU8UX: cmd[4] = 34 \n[    2.960472] [ FTS ] fts_writeU8UX: cmd[1] = 20 \n[    2.960474] [ FTS ] fts_writeU8UX: cmd[2] = 00 \n[    2.960476] [ FTS ] fts_writeU8UX: cmd[3] = 00 \n[    2.960477] [ FTS ] fts_writeU8UX: cmd[4] = 3F \n[    2.960594] [ FTS ] fts_writeU8UX: cmd[1] = 20 \n[    2.960595] [ FTS ] fts_writeU8UX: cmd[2] = 00 \n[    2.960597] [ FTS ] fts_writeU8UX: cmd[3] = 00 \n[    2.960599] [ FTS ] fts_writeU8UX: cmd[4] = 3D \n[    2.960713] [ FTS ] fts_writeU8UX: cmd[1] = 20 \n[    2.960715] [ FTS ] fts_writeU8UX: cmd[2] = 00 \n[    2.960717] [ FTS ] fts_writeU8UX: cmd[3] = 00 \n[    2.960718] [ FTS ] fts_writeU8UX: cmd[4] = 2D \n[    2.962394] [ FTS ] CX Start page: 29 CX End page: 30 Panel Start Page: 28 Panel End page: 28!\n[    2.970050] cnss: Suspending PCI link\n[    3.080064] msm_pcie_disable: PCIe: Assert the reset of endpoint of RC0.\n[    3.080490] cnss: De-assert WLAN_EN GPIO successfully\n[    3.080494] cnss: Regulator vdd-wlan-rfa2 is being disabled\n[    3.080529] cnss: Regulator vdd-wlan-rfa1 is being disabled\n[    3.080566] cnss: Regulator vdd-wlan-dig is being disabled\n[    3.080603] cnss: Regulator vdd-wlan-aon is being disabled\n[    3.080639] cnss: Regulator wlan-ant-switch is being disabled\n[    3.080661] cnss: Regulator vdd-wlan-io is being disabled\n[    3.080744] cnss: ICC Path_Count: 2 BW_CFG_Count: 7\n[    3.080763] cnss: ICC Vote CFG for path: pcie_to_memnoc\n[    3.080766] cnss: ICC Vote BW: 0 avg: 0 peak: 0\n[    3.080769] cnss: ICC Vote BW: 1 avg: 2250 peak: 390000\n[    3.080773] cnss: ICC Vote BW: 2 avg: 7500 peak: 390000\n[    3.080776] cnss: ICC Vote BW: 3 avg: 30000 peak: 790000\n[    3.080779] cnss: ICC Vote BW: 4 avg: 100000 peak: 790000\n[    3.080783] cnss: ICC Vote BW: 5 avg: 175000 peak: 1600000\n[    3.080786] cnss: ICC Vote BW: 6 avg: 7500 peak: 390000\n[    3.080813] cnss: ICC Vote CFG for path: memnoc_to_ddr\n[    3.080816] cnss: ICC Vote BW: 0 avg: 0 peak: 0\n[    3.080819] cnss: ICC Vote BW: 1 avg: 2250 peak: 1804800\n[    3.080822] cnss: ICC Vote BW: 2 avg: 7500 peak: 1804800\n[    3.080825] cnss: ICC Vote BW: 3 avg: 30000 peak: 1804800\n[    3.080828] cnss: ICC Vote BW: 4 avg: 100000 peak: 1804800\n[    3.080831] cnss: ICC Vote BW: 5 avg: 175000 peak: 6220800\n[    3.080835] cnss: ICC Vote BW: 6 avg: 7500 peak: 2188800\n[    3.081105] cnss: Platform driver probed successfully.\n[    3.081297] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.081301] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.081533] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    3.081722] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    3.494478] [ FTS ] 7) LOAD PROGRAM: \n[    5.360056] [ FTS ]   load program DONE!\n[    5.482119] [ FTS ]   load config DONE!\n[    5.482122] [ FTS ] System resetting...\n[    5.508009] [ FTS ] System reset DONE!\n[    5.508301] [ FTS ] FW VER = 0076 \n[    5.508303] [ FTS ] SVN REV = 3755 \n[    5.508304] [ FTS ] CONFIG VER = 003D \n[    5.508306] [ FTS ] CONFIG PROJECT ID = 0000 \n[    5.508307] [ FTS ] CX VER = FFFF \n[    5.508309] [ FTS ] CX PROJECT ID = 0000 \n[    5.508310] [ FTS ] AFE VER: CFG = 06 - CX = 06 - PANEL = 06 \n[    5.508323] [ FTS ] Release Info = 3D 1E 00 00 00 00 00 00 84 6E 80 3C 6A 0B A5 11  \n[    5.508332] [ FTS ] fts_fw_update: Verifying if CX CRC Error...\n[    5.508333] [ FTS ] System resetting...\n[    5.534253] [ FTS ] System reset DONE!\n[    5.534257] [ FTS ] fts_fw_update: No Cx CRC Error Found! \n[    5.534258] [ FTS ] fts_fw_update: Verifying if Panel CRC Error... \n[    5.534260] [ FTS ] fts_fw_update: No Panel CRC Error Found! \n[    5.534264] [ FTS ] Interrupt Mode\n[    5.534431] [ FTS ] fts_mode_handler: Screen ON... \n[    5.534434] [ FTS ] fts_mode_handler: Sense ON\n[    5.587972] [ FTS ] Interrupt Enabled!\n[    5.588125] [ FTS ] Fw Update Finished! error = 00000000\n[    5.588181] [ FTS ] fts_status_event_handler Mutual negative detect Force cal = 01 00 00 00 00 02\n[    5.588260] [ FTS ] fts_proc_init: proc entry CREATED! \n[    5.588377] xiaomitouch_register_modedata\n[    5.588542] [ FTS ] fts_read_touchmode_data: game_mode:0, active_mode:1, up_threshold:0, landlock:0, wgh:3, 176, 30\n[    5.588546] [ FTS ] fts_init_touchmode_data: mode:0, set cur:0, get cur:0, def:0 min:0 max:1\n[    5.588549] [ FTS ] fts_init_touchmode_data: mode:1, set cur:1, get cur:1, def:0 min:0 max:1\n[    5.588551] [ FTS ] fts_init_touchmode_data: mode:2, set cur:4, get cur:4, def:4 min:1 max:5\n[    5.588553] [ FTS ] fts_init_touchmode_data: mode:3, set cur:3, get cur:3, def:3 min:1 max:5\n[    5.588556] [ FTS ] fts_init_touchmode_data: mode:4, set cur:3, get cur:3, def:3 min:1 max:5\n[    5.588558] [ FTS ] fts_init_touchmode_data: mode:5, set cur:3, get cur:3, def:3 min:1 max:5\n[    5.588560] [ FTS ] fts_init_touchmode_data: mode:6, set cur:1, get cur:1, def:1 min:1 max:3\n[    5.588563] [ FTS ] fts_init_touchmode_data: mode:7, set cur:2, get cur:2, def:2 min:0 max:3\n[    5.588565] [ FTS ] fts_init_touchmode_data: mode:8, set cur:0, get cur:0, def:0 min:0 max:3\n[    5.588567] [ FTS ] fts_init_touchmode_data: mode:9, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.588570] [ FTS ] fts_init_touchmode_data: mode:10, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.588572] [ FTS ] fts_init_touchmode_data: mode:11, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.588574] [ FTS ] fts_init_touchmode_data: mode:12, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.588577] [ FTS ] fts_init_touchmode_data: mode:13, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.588579] [ FTS ] fts_init_touchmode_data: mode:14, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.588581] [ FTS ] fts_init_touchmode_data: mode:15, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.588584] [ FTS ] fts_init_touchmode_data: mode:16, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.588586] [ FTS ] fts_init_touchmode_data: mode:17, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.588589] [ FTS ] fts_init_touchmode_data: mode:18, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.588591] [ FTS ] fts_init_touchmode_data: mode:19, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.588592] [ FTS ] Probe Finished! \n[    5.588762] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.588766] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.588999] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.589188] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.591521] bimc-bwmon: Zone thres larger than hw limit: hi:0 med:4000 lo:0\n[    5.591811] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.591815] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.592050] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.592241] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.592595] bimc-bwmon: Zone thres larger than hw limit: hi:0 med:4000 lo:0\n[    5.592874] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.592878] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.593111] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.593301] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.593796] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.593800] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.594026] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.594210] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.594624] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.594628] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.594852] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.595036] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.595480] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.595484] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.595708] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.595892] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.596306] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.596310] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.596534] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.596719] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.597123] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.597127] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.597350] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.597534] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.597937] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.597941] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.598165] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.598349] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.598754] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.598758] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.598983] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.599166] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.599574] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.599578] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.599802] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.599985] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.600464] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.600467] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.600692] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.600875] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.601232] bimc-bwmon: Zone thres larger than hw limit: hi:0 med:4000 lo:0\n[    5.601452] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.601456] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.601681] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.601865] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.602384] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.602388] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.602612] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.602796] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.603268] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.603272] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.603497] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.603681] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.604180] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.604184] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.604409] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.604593] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.605077] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.605081] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.605307] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.605520] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.605964] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.605968] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.606192] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.606375] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.606980] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.606983] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.607207] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.607390] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.608823] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.608827] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.609052] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.609235] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.609685] RNDIS_IPA module is loaded.\n[    5.609690] core_ctl: Creating CPU group 0\n[    5.609692] core_ctl: Init CPU0 state\n[    5.609693] core_ctl: Init CPU1 state\n[    5.609695] core_ctl: Init CPU2 state\n[    5.609696] core_ctl: Init CPU3 state\n[    5.609856] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.609860] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.610144] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.610329] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.610481] core_ctl: Creating CPU group 4\n[    5.610483] core_ctl: Init CPU4 state\n[    5.610484] core_ctl: Init CPU5 state\n[    5.610486] core_ctl: Init CPU6 state\n[    5.610579] core_ctl: Creating CPU group 7\n[    5.610580] core_ctl: Init CPU7 state\n[    5.610794] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    5.611494] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    5.612197] [ FTS ] fts_status_event_handler Mutual negative detect Force cal = 01 00 00 00 00 01\n[    5.612449] gpu_cc-lahaina 3d90000.qcom,gpucc: sync-state\n[    5.612740] disp_cc-lahaina af00000.qcom,dispcc: sync-state\n[    5.612874] ALSA device list:\n[    5.612883]   No soundcards found.\n[    5.612914] Warning: unable to open an initial console.\n[    5.613945] Freeing unused kernel memory: 4480K\n[    5.650099] Run /init as init process\n[    5.655310] do_mount: dev: tmpfs, mount point: /dev , retval=0\n[    5.656557] do_mount: dev: proc, mount point: /proc , retval=0\n[    5.657812] do_mount: dev: sysfs, mount point: /sys , retval=0\n[    5.659048] do_mount: dev: tmpfs, mount point: /tmp , retval=0\n[    5.821152] Booting DSP...\n[    5.822231] subsys-pil-tz 17300000.qcom,lpass: adsp: loading from 0x0000000086100000 to 0x0000000088a00000\n[    5.836233] ERROR qrtr-ns: nameserver already running, going dormant: Address in use\n[    5.940589] subsys-pil-tz 17300000.qcom,lpass: adsp: Brought out of reset\n[    5.940598] pil_boot is successful from adsp and waiting for error ready\n[    5.961849] Subsystem error monitoring/handling services are up fromadsp\n[    5.961861] subsys-pil-tz 17300000.qcom,lpass: adsp: Power/Clock ready interrupt received\n[    5.962708] -686126206:Entered\n[    5.962961] -686126206:SMD QRTR driver probed\n[    5.963131] adsprpc: fastrpc_restart_notifier_cb: adsp subsystem is up\n[    5.963234] sysmon-qmi: ssctl_new_server: Connection established between QMI handle and adsp's SSCTL service\n[    5.965045] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.965049] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.965404] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.965630] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.965938] cnss: DRV subsystem is connected\n[    5.967417] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.967421] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.967649] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.967835] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.968661] Info: adsprpc (4679): kworker/0:5: fastrpc_rpmsg_probe: opened rpmsg channel for adsp\n[    5.970528] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.970532] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.970761] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.970947] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.971270] apr_tal_rpmsg soc:adsp.apr_audio_svc.-1.-1: apr_tal_rpmsg_probe: Channel[apr_audio_svc] state[Up]\n[    5.973734] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.973738] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.973966] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    5.974152] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    6.231795] qti_battery_charger soc:qcom,pmic_glink:qcom,battery_charger: battery_chg_probe start\n[    6.233283] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    6.233287] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    6.233516] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    6.233701] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    6.235806] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    6.235810] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    6.236038] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    6.236222] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    6.292550] BATTERY_CHG: power_supply_read_temp: batt_thermal temp:40 ,delta:6290 rc=0\n[    6.293178] qti_battery_charger soc:qcom,pmic_glink:qcom,battery_charger: battery_chg_probe done\n[    6.295094] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    6.295098] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    6.295326] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    6.295511] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 00000000e68d75a9\n[    6.300221] sd 0:0:0:2: [sdc] Synchronizing SCSI cache\n[    6.300273] sd 0:0:0:1: [sdb] Synchronizing SCSI cache\n[    6.310102] sd 0:0:0:4: [sde] Synchronizing SCSI cache\n[    6.310123] sd 0:0:0:0: [sda] Synchronizing SCSI cache\n[    6.310186] sd 0:0:0:3: [sdd] Synchronizing SCSI cache\n[    6.310204] sd 0:0:0:5: [sdf] Synchronizing SCSI cache\n[    6.801060] [ FTS ] fts_write_charge_status charging_status:0\n[    7.250650] BATTERY_CHG: handle_notification: notification: 0x81\n[    7.420610] OF: graph: no port node found in /soc/qcom,pmic_glink/qcom,ucsi/port\n[    7.420615] OF: graph: no port node found in /soc/qcom,pmic_glink/qcom,ucsi/port\n[    7.600241] aw8697_ram_work_routine enter\n[    7.600329] aw8697_haptic 0-005a: Direct firmware load for aw8697_haptic.bin failed with error -2\n[    7.600333] aw8697_haptic 0-005a: Falling back to sysfs fallback for: aw8697_haptic.bin\n[    9.528434] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    9.528567] cpu1 \n[    9.528622] cpu4 \n[    9.528673] cpu7 \n[    9.528716] \n               Offline CPUs: \n[    9.531252] cpu1 \n[    9.532515] CPU1: shutdown\n[    9.532519] psci: CPU1 killed (polled 0 ms)\n[    9.533381] cpu2 \n[    9.534783] CPU2: shutdown\n[    9.534786] psci: CPU2 killed (polled 0 ms)\n[    9.535288] cpu3 \n[    9.536561] CPU3: shutdown\n[    9.536565] psci: CPU3 killed (polled 0 ms)\n[    9.537086] cpu4 \n[    9.538482] IRQ 13: no longer affine to CPU4\n[    9.538517] CPU4: shutdown\n[    9.538552] psci: CPU4 killed (polled 0 ms)\n[    9.538854] cpu5 \n[    9.539302] IRQ 13: no longer affine to CPU5\n[    9.539366] CPU5: shutdown\n[    9.539370] psci: CPU5 killed (polled 0 ms)\n[    9.539662] cpu6 \n[    9.540112] IRQ 13: no longer affine to CPU6\n[    9.540192] CPU6: shutdown\n[    9.540196] psci: CPU6 killed (polled 0 ms)\n[    9.540587] cpu7 \n[    9.540916] IRQ 14: no longer affine to CPU7\n[    9.540954] CPU7: shutdown\n[    9.540957] psci: CPU7 killed (polled 0 ms)\n\n[   11.369073] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[   14.579958] Sampling power every 1000 ms\n               Baseline power usage: \n[   35.680571] gcc_ufs_card_gdsc: disabling\n[   35.680611] gcc_usb30_prim_gdsc: disabling\n[   35.680658] camera_wide_vana_ldo: disabling\n[   35.680670] camera_front_vdig_ldo: disabling\n[   35.680680] camera_front_vana_ldo: disabling\n[   35.680690] camera_macro_vana_ldo: disabling\n[   35.680701] display_panel_vddd: disabling\n[   35.680711] display_panel_avdd: disabling\n[   35.680871] pm8008i-chip-en: disabling\n[   69.601425] aw8697_ram_loaded enter\n[   69.601438] aw8697_ram_loaded: failed to read aw8697_haptic.bin\n[   90.681951] Detected VIPT I-cache on CPU1\n[   90.682291] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]\n[   90.683667] ------------[ cut here ]------------\n[   90.683703] WARNING: CPU: 1 PID: 15 at kernel/smp.c:296 smp_call_function_single+0x1ac/0x1c0\n[   90.683724] CPU: 1 PID: 15 Comm: cpuhp/1 Tainted: G S                5.4.61-DynamIQ-R1 #14\n[   90.683733] Hardware name: Venus based on Qualcomm Technologies, Inc SM8350 (DT)\n[   90.683748] pstate: 20c00085 (nzCv daIf +PAN +UAO)\n[   90.683765] pc : smp_call_function_single+0x1ac/0x1c0\n[   90.683784] lr : perf_install_in_context+0x8c/0x1c0\n[   90.683791] sp : ffffffc01024bc00\n[   90.683800] x29: ffffffc01024bc40 x28: 0000000000000000 \n[   90.683818] x27: ffffff800d94bab8 x26: ffffff800d96b800 \n[   90.683835] x25: 0000000000000000 x24: ffffff81f6f4eb20 \n[   90.683852] x23: ffffff81f6f4eb10 x22: 0000000000000001 \n[   90.683868] x21: 0000000000000000 x20: ffffff800d96b800 \n[   90.683885] x19: ffffff81d6cd2400 x18: 0000000006acfc00 \n[   90.683901] x17: 0000000000000001 x16: 00000000000000e4 \n[   90.683917] x15: 0000000000000ccc x14: ffffff0000000000 \n[   90.683933] x13: 0000000000000004 x12: 0000000000000000 \n[   90.683950] x11: ffffffd7d76c9ce8 x10: 0000000000000080 \n[   90.683966] x9 : 0000000000000000 x8 : ffffffc01024bc68 \n[   90.683982] x7 : 0000000000000000 x6 : 000000000000003f \n[   90.683997] x5 : 0000000000000040 x4 : 0000000000000000 \n[   90.684013] x3 : 0000000000000001 x2 : ffffffd7d51fede0 \n[   90.684029] x1 : ffffffd7d51fede0 x0 : 0000000000000001 \n[   90.684044] Call trace:\n[   90.684063]  smp_call_function_single+0x1ac/0x1c0\n[   90.684080]  perf_install_in_context+0x8c/0x1c0\n[   90.684096]  perf_event_create_kernel_counter+0x150/0x260\n[   90.684113]  hotplug_notify_up+0x90/0x1f0\n[   90.684131]  cpuhp_invoke_callback+0x1c8/0x730\n[   90.684147]  cpuhp_thread_fun+0x124/0x170\n[   90.684162]  smpboot_thread_fn+0x20c/0x2c0\n[   90.684177]  kthread+0x134/0x1f0\n[   90.684193]  ret_from_fork+0x10/0x24\n[   90.684203] ---[ end trace 07a7f9e86d2ff671 ]---\n[   91.693573] 1318 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 403 499 595 691 806 902 998 1094 1209 1305 1401 1497 1612 1708 1804\n               \n                300: \n[  305.120422] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120461] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120474] PMIC_GLINK: pmic_glink_serv_loc_cb: PDR service locator for client: (null) service: (efault) is down\n[  305.120742] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120756] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for audio_pdr_adsprpc\n[  305.120814] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120827] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for sensors_pdr_adsprpc\n[  305.120893] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120911] audio_notifier_reg_service: service SSR_ADSP is in use\n[  305.120946] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  312.976548] BATTERY_CHG: handle_notification: notification: 0x80\n[  315.367606] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[  370.406967]  1112     3.7 C/MHz     62 mW   16.7 J   18.0 I/mJ   269.8 s\n                403: \n[  548.987973] perf: interrupt took too long (2505 > 2500), lowering kernel.perf_event_max_sample_rate to 79800\n[  579.614354]  1495     3.7 C/MHz     52 mW   10.5 J   28.5 I/mJ   200.7 s\n                499: \n[  617.447771] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[  750.432297]  1852     3.7 C/MHz     55 mW    8.9 J   33.7 I/mJ   162.0 s\n                595: \n[  895.360899]  2208     3.7 C/MHz     56 mW    7.6 J   39.4 I/mJ   135.9 s\n                691: \n[  913.120602] BATTERY_CHG: handle_notification: notification: 0x80\n[  919.527651] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 1021.606317]  2565     3.7 C/MHz     58 mW    6.8 J   44.2 I/mJ   117.0 s\n                806: \n[ 1130.258844]  2992     3.7 C/MHz     64 mW    6.4 J   46.8 I/mJ   100.3 s\n                902: \n[ 1221.607301] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 1228.553365]  3348     3.7 C/MHz     68 mW    6.1 J   49.3 I/mJ    89.6 s\n                998: \n[ 1318.564062]  3704     3.7 C/MHz     70 mW    5.7 J   52.9 I/mJ    81.0 s\n               1094: \n[ 1401.325243]  4060     3.7 C/MHz     71 mW    5.2 J   57.2 I/mJ    73.9 s\n               1209: \n[ 1476.837015]  4488     3.7 C/MHz     79 mW    5.2 J   57.2 I/mJ    66.8 s\n               1305: \n[ 1513.263841] BATTERY_CHG: handle_notification: notification: 0x80\n[ 1523.687215] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 1547.137414]  4846     3.7 C/MHz     89 mW    5.5 J   54.3 I/mJ    61.9 s\n               1401: \n[ 1613.324140]  5202     3.7 C/MHz     88 mW    5.1 J   58.8 I/mJ    57.7 s\n               1497: \n[ 1676.406313]  5558     3.7 C/MHz     95 mW    5.1 J   58.8 I/mJ    54.0 s\n               1612: \n[ 1735.347787]  5985     3.7 C/MHz     98 mW    4.9 J   61.0 I/mJ    50.1 s\n               1708: \n[ 1791.177157]  6342     3.7 C/MHz    103 mW    4.9 J   61.7 I/mJ    47.3 s\n               1804: \n[ 1825.767053] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 1844.924651] CPU1: shutdown\n[ 1844.924671] psci: CPU1 killed (polled 0 ms)\n[ 1844.928625] CPU features: detected: Hardware dirty bit management\n[ 1844.928637] Detected PIPT I-cache on CPU4\n[ 1844.928642] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU4: 0x1100000011111112\n[ 1844.928644] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU4: 0x00000000010142\n[ 1844.928646] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU4: 0x00000010010131\n[ 1844.928647] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU4: 0x00000010010000\n[ 1844.928698] CPU4: Booted secondary processor 0x0000000400 [0x411fd410]\n[ 1845.937852]  6698     3.7 C/MHz    117 mW    5.2 J   57.2 I/mJ    44.8 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 710 844 960 1075 1209 1324 1440 1555 1670 1766 1881 1996 2112 2227 2342 2419\n               \n                710: \n[ 1900.821801]  6462     9.1 C/MHz    123 mW    5.7 J   52.7 I/mJ    46.4 s\n                844: \n[ 1948.450629]  7689     9.1 C/MHz    156 mW    6.1 J   49.3 I/mJ    39.0 s\n                960: \n[ 1991.929508]  8732     9.1 C/MHz    188 mW    6.5 J   46.3 I/mJ    34.4 s\n               1075: \n[ 2031.268035]  9779     9.1 C/MHz    211 mW    6.5 J   46.3 I/mJ    30.7 s\n               1209: \n[ 2067.498793] 11004     9.1 C/MHz    237 mW    6.5 J   46.5 I/mJ    27.3 s\n               1324: \n[ 2101.651579] 12056     9.1 C/MHz    280 mW    7.0 J   43.0 I/mJ    24.9 s\n               1440: \n[ 2113.403762] BATTERY_CHG: handle_notification: notification: 0x80\n[ 2127.847911] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 2133.709362] 13106     9.1 C/MHz    320 mW    7.3 J   40.9 I/mJ    22.9 s\n               1555: \n[ 2163.717583] 14152     9.1 C/MHz    354 mW    7.5 J   40.0 I/mJ    21.2 s\n               1670: \n[ 2192.686883] 15196     9.1 C/MHz    401 mW    7.9 J   37.9 I/mJ    19.8 s\n               1766: \n[ 2220.617676] 16067     9.1 C/MHz    418 mW    7.8 J   38.4 I/mJ    18.7 s\n               1881: \n[ 2246.477567] 17116     9.1 C/MHz    470 mW    8.2 J   36.4 I/mJ    17.5 s\n               1996: \n[ 2271.300442] 18182     9.1 C/MHz    551 mW    9.1 J   33.0 I/mJ    16.5 s\n               2112: \n[ 2296.125817] 19201     9.1 C/MHz    664 mW   10.4 J   28.9 I/mJ    15.6 s\n               2227: \n[ 2319.911156] 20263     9.1 C/MHz    778 mW   11.5 J   26.0 I/mJ    14.8 s\n               2342: \n[ 2342.660278] 21301     9.1 C/MHz    873 mW   12.3 J   24.4 I/mJ    14.1 s\n               2419: \n[ 2365.416974] CPU4: shutdown\n[ 2365.416995] psci: CPU4 killed (polled 0 ms)\n[ 2365.421518] Detected PIPT I-cache on CPU7\n[ 2365.421522] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU7: 0x1100000011111112\n[ 2365.421524] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU7: 0x00000000010142\n[ 2365.421526] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU7: 0x00000010010131\n[ 2365.421527] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU7: 0x00000010010000\n[ 2365.421582] CPU7: Booted secondary processor 0x0000000700 [0x411fd440]\n[ 2366.432798] 22012     9.1 C/MHz    941 mW   12.8 J   23.4 I/mJ    13.6 s\n               \n               \n               ===== CPU 7 =====\n               Frequencies: 844 960 1075 1190 1305 1420 1555 1670 1785 1900 2035 2150 2265 2380 2496 2592 2688 2764 2841\n               \n                844: \n[ 2413.022089]  7845     9.3 C/MHz    219 mW    8.4 J   35.9 I/mJ    38.3 s\n                960: \n[ 2429.927801] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 2455.467294]  8913     9.3 C/MHz    246 mW    8.3 J   36.2 I/mJ    33.7 s\n               1075: \n[ 2494.798972]  9984     9.3 C/MHz    274 mW    8.2 J   36.4 I/mJ    30.1 s\n               1190: \n[ 2537.243622]  8998     7.6 C/MHz    271 mW    9.0 J   33.2 I/mJ    33.4 s\n               1305: \n[ 2577.616529]  9485     7.3 C/MHz    272 mW    8.6 J   34.8 I/mJ    31.6 s\n               1420: \n[ 2613.839922] 10920     7.7 C/MHz    323 mW    8.9 J   33.8 I/mJ    27.5 s\n               1555: \n[ 2643.847363] 14251     9.2 C/MHz    422 mW    8.9 J   33.8 I/mJ    21.1 s\n               1670: \n[ 2680.069191] 10840     6.5 C/MHz    361 mW   10.0 J   30.0 I/mJ    27.7 s\n               1785: \n[ 2710.077646] 14140     7.9 C/MHz    469 mW   10.0 J   30.1 I/mJ    21.2 s\n               1900: \n[ 2713.541354] BATTERY_CHG: handle_notification: notification: 0x80\n[ 2732.007874] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 2735.934864] 17638     9.3 C/MHz    605 mW   10.3 J   29.1 I/mJ    17.0 s\n               2035: \n[ 2760.757842] 18898     9.3 C/MHz    678 mW   10.8 J   27.9 I/mJ    15.9 s\n               2150: \n[ 2784.545078] 19977     9.3 C/MHz    750 mW   11.3 J   26.6 I/mJ    15.0 s\n               2265: \n[ 2807.294239] 21047     9.3 C/MHz    871 mW   12.4 J   24.1 I/mJ    14.3 s\n               2380: \n[ 2830.045490] 22096     9.3 C/MHz   1012 mW   13.8 J   21.8 I/mJ    13.6 s\n               2496: \n[ 2851.756247] 23186     9.3 C/MHz   1189 mW   15.4 J   19.5 I/mJ    13.0 s\n               2592: \n[ 2873.466681] 24065     9.3 C/MHz   1293 mW   16.1 J   18.6 I/mJ    12.5 s\n               2688: \n[ 2894.139807] 24954     9.3 C/MHz   1465 mW   17.6 J   17.0 I/mJ    12.0 s\n               2764: \n[ 2914.815898] 25663     9.3 C/MHz   1478 mW   17.3 J   17.3 I/mJ    11.7 s\n               2841: \n[ 2935.492855] CPU7: shutdown\n[ 2935.492875] psci: CPU7 killed (polled 0 ms)\n[ 2935.514912] 26381     9.3 C/MHz   1707 mW   19.4 J   15.4 I/mJ    11.4 s\n               \n               \n               Benchmark finished!\n[ 2935.532592] \n               real\t48m46.692s\n               user\t39m53.209s\n               sys\t0m2.136s\n"
  },
  {
    "path": "results/sm8350/second/post_bench_interrupts.txt",
    "content": "           CPU0       \n  3:     302411     GICv3  27 Level     arch_timer\n  5:          0     GICv3  38 Level     arch_mem_timer\n  7:          0     GICv3 195 Level     ngd_slim_irq\n  9:         19     GICv3  23 Level     arm-pmu\n 11:      10718     GICv3 261 Level     ipcc_0\n 12:          0     GICv3  62 Level     dcvsh-irq-0\n 13:          0     GICv3  63 Level     dcvsh-irq-4\n 14:          0     GICv3  51 Level     dcvsh-irq-7\n 17:        476     GICv3  37 Level     apps_rsc\n 18:        329     GICv3 297 Level     ufshcd\n 21:          0     GICv3 161 Level     disp_rsc\n 23:          3     GICv3 613 Level     90b6400.qcom,cpu-cpu-llcc-bwmon\n 24:          1     GICv3 113 Level     9091000.qcom,cpu-llcc-ddr-bwmon\n 25:          0     GICv3 258 Level     90b9100.qcom,snoop-l3-bwmon\n 26:          0       PDC  26 Level     tsens-upper-lower\n 27:          0       PDC  28 Level     tsens-critical\n 29:          0       PDC  27 Level     tsens-upper-lower\n 30:          0       PDC  29 Level     tsens-critical\n 32:          0     GICv3 296 Edge      modem\n 33:          0       PDC   6 Edge      adsp\n 34:          0     GICv3 610 Edge      cdsp\n 37:          0       PDC   9 Edge      slpi\n 38:          0     GICv3 384 Level     spss\n 39:          0       PDC  11 Level     eud_irq\n 40:          0     GICv3 304 Level     sps\n 41:          0     GICv3 704 Level     arm-smmu global fault\n 42:          0     GICv3 705 Level     arm-smmu global fault\n 43:          0     GICv3 710 Level     arm-smmu-context-fault\n 44:          0     GICv3 711 Level     arm-smmu-context-fault\n 45:          0     GICv3 712 Level     arm-smmu-context-fault\n 46:          0     GICv3 713 Level     arm-smmu-context-fault\n 53:          0     GICv3  96 Level     arm-smmu global fault\n 54:          0     GICv3  97 Level     arm-smmu global fault\n 55:          0     GICv3 129 Level     arm-smmu-context-fault\n 59:          0     GICv3 133 Level     arm-smmu-context-fault\n 60:          0     GICv3 134 Level     arm-smmu-context-fault\n 61:          0     GICv3 135 Level     arm-smmu-context-fault\n 62:          0     GICv3 136 Level     arm-smmu-context-fault\n 63:          0     GICv3 137 Level     arm-smmu-context-fault\n 64:          0     GICv3 138 Level     arm-smmu-context-fault\n 65:          0     GICv3 139 Level     arm-smmu-context-fault\n 66:          0     GICv3 140 Level     arm-smmu-context-fault\n 67:          0     GICv3 141 Level     arm-smmu-context-fault\n 68:          0     GICv3 142 Level     arm-smmu-context-fault\n 69:          0     GICv3 143 Level     arm-smmu-context-fault\n 70:          0     GICv3 144 Level     arm-smmu-context-fault\n 71:          0     GICv3 145 Level     arm-smmu-context-fault\n 72:          0     GICv3 146 Level     arm-smmu-context-fault\n 73:          0     GICv3 147 Level     arm-smmu-context-fault\n 74:          0     GICv3 148 Level     arm-smmu-context-fault\n 75:          0     GICv3 149 Level     arm-smmu-context-fault\n 76:          0     GICv3 150 Level     arm-smmu-context-fault\n 77:          0     GICv3 213 Level     arm-smmu-context-fault\n 78:          0     GICv3 214 Level     arm-smmu-context-fault\n 79:          0     GICv3 215 Level     arm-smmu-context-fault\n 80:          0     GICv3 216 Level     arm-smmu-context-fault\n 81:          0     GICv3 217 Level     arm-smmu-context-fault\n 82:          0     GICv3 218 Level     arm-smmu-context-fault\n 83:          0     GICv3 219 Level     arm-smmu-context-fault\n 84:          0     GICv3 220 Level     arm-smmu-context-fault\n 85:          0     GICv3 221 Level     arm-smmu-context-fault\n 86:          0     GICv3 222 Level     arm-smmu-context-fault\n 87:          0     GICv3 223 Level     arm-smmu-context-fault\n 88:          0     GICv3 224 Level     arm-smmu-context-fault\n 89:          0     GICv3 347 Level     arm-smmu-context-fault\n 90:          0     GICv3 348 Level     arm-smmu-context-fault\n 91:          0     GICv3 349 Level     arm-smmu-context-fault\n 92:          0     GICv3 350 Level     arm-smmu-context-fault\n 93:          0     GICv3 351 Level     arm-smmu-context-fault\n 94:          0     GICv3 352 Level     arm-smmu-context-fault\n 95:          0     GICv3 353 Level     arm-smmu-context-fault\n 96:          0     GICv3 354 Level     arm-smmu-context-fault\n 97:          0     GICv3 355 Level     arm-smmu-context-fault\n 98:          0     GICv3 356 Level     arm-smmu-context-fault\n 99:          0     GICv3 357 Level     arm-smmu-context-fault\n100:          0     GICv3 358 Level     arm-smmu-context-fault\n101:          0     GICv3 359 Level     arm-smmu-context-fault\n102:          0     GICv3 360 Level     arm-smmu-context-fault\n103:          0     GICv3 361 Level     arm-smmu-context-fault\n104:          0     GICv3 362 Level     arm-smmu-context-fault\n105:          0     GICv3 363 Level     arm-smmu-context-fault\n106:          0     GICv3 364 Level     arm-smmu-context-fault\n107:          0     GICv3 365 Level     arm-smmu-context-fault\n108:          0     GICv3 366 Level     arm-smmu-context-fault\n109:          0     GICv3 367 Level     arm-smmu-context-fault\n110:          0     GICv3 368 Level     arm-smmu-context-fault\n151:          0       PDC  14 Edge      dp_hs_phy_irq\n152:          0     GICv3 162 Level     pwr_event_irq\n153:          0       PDC  17 Level     ss_phy_irq\n154:          0       PDC  15 Edge      dm_hs_phy_irq\n169:          0     GICv3 634 Level     spi_geni\n170:        425     GICv3 639 Level     i2c_geni\n183:      11236     GICv3 388 Level     spi_geni\n184:       1400     GICv3 385 Level     i2c_geni\n185:        249     GICv3 390 Level     i2c_geni\n198:          0     GICv3 618 Level     msm_serial_geni0\n199:          4     GICv3 615 Level     i2c_geni\n200:          0     GICv3 206 Level     msm_vidc\n201:          0     GICv3 266 Level     msm_cvp\n202:          0     GICv3 172 Edge      int_global_int\n271:          0     GICv3 332 Level     kgsl_3d0_irq\n272:          0     GICv3 336 Level     kgsl_hfi_irq\n273:          0     GICv3 337 Level     kgsl_gmu_irq\n274:          0     GICv3 115 Level     msm_drm\n277:          0     GICv3 509 Edge      csiphy0\n278:          0     GICv3 510 Edge      csiphy1\n279:          0     GICv3 511 Edge      csiphy2\n280:          0     GICv3 480 Edge      csiphy3\n281:          0     GICv3 154 Edge      csiphy4\n282:          0     GICv3 121 Edge      csiphy5\n283:          0     GICv3 492 Edge      cci\n284:          0     GICv3 303 Edge      cci\n285:          0     GICv3 491 Edge      cpas_camnoc\n286:          2     GICv3 493 Edge      cpas-cdm\n287:          2     GICv3 488 Edge      ife-cdm0\n288:          2     GICv3 319 Edge      ife-cdm1\n289:          2     GICv3 674 Edge      ife-cdm2\n290:          0     GICv3 496 Edge      csid\n291:          2     GICv3 497 Edge      ife\n292:          0     GICv3 498 Edge      csid\n293:          2     GICv3 499 Edge      ife\n294:          0     GICv3 672 Edge      csid\n295:          2     GICv3 673 Edge      ife\n296:          0     GICv3 500 Edge      csid-lite\n297:          2     GICv3 501 Edge      ife-lite\n298:          0     GICv3 391 Edge      csid-lite\n299:          2     GICv3 392 Edge      ife-lite\n300:          0     GICv3 495 Edge      a5\n301:          0     GICv3 506 Edge      jpeg\n302:          0     GICv3 507 Edge      jpegdma\n303:          0     GICv3  32 Edge      apps_wdog_bark\n304:          0     GICv3 960 Edge      hh_msgq_tx_0\n305:          0     GICv3 961 Edge      hh_msgq_rx_0\n306:        151      ipcc   0 Edge      qcom,qmp-aop\n307:          0  pmic_arb 20381778 Edge      pon_kpdpwr_status\n308:          0  pmic_arb 20316242 Edge      pon_resin_status\n309:          0  pmic_arb 19923026 Edge      pon_kpdpwr_bark\n310:          0  pmic_arb 20054098 Edge      pon_kpdpwr_resin_bark\n311:          0  pmic_arb 51380307 Edge      pm-adc5\n313:          0  pmic_arb 102826069 Edge      pm8xxx_rtc_alarm\n319:          0  pmic_arb 786432130 Edge      flash_fault\n320:          0  pmic_arb 786628738 Edge      flash_all_ramp_down\n321:          0  pmic_arb 786694274 Edge      flash_all_ramp_up\n331:          2      ipcc 196610 Edge      smp2p\n332:          0      ipcc 262146 Edge      smp2p\n333:          0      ipcc 393218 Edge      smp2p\n334:          0      ipcc 131074 Edge      smp2p\n335:          0      ipcc 1048577 Edge      qsee_ipc_irq_spss\n336:          0     smp2p   0 Edge      smp2p_sleepstate\n340:          0  spmi-gpio   8 Edge      soc:extcon_usb1\n341:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n342:          0     GICv3 165 Level     dwc3\n344:          0   msmgpio 119 Edge      aw8697\n345:          0   msmgpio  44 Level     cs35l41\n346:          0   msmgpio 116 Level     cs35l41\n348:          0   msmgpio  87 Level     sn-nci\n349:          1   msmgpio  96 Edge      msm_pcie_wake\n350:          0     smp2p   0 Edge      cdsp\n351:          0     smp2p   1 Edge      error_ready_interrupt\n352:          0     smp2p   3 Edge      cdsp\n353:          0     smp2p   2 Edge      cdsp\n354:          0     smp2p   0 Edge      adsp\n355:          0     smp2p   1 Edge      error_ready_interrupt\n356:          0     smp2p   3 Edge      adsp\n357:          0     smp2p   2 Edge      adsp\n358:          0     smp2p   0 Edge      slpi\n359:          0     smp2p   1 Edge      error_ready_interrupt\n360:          0     smp2p   3 Edge      slpi\n361:          0     smp2p   2 Edge      slpi\n362:          0     smp2p   0 Edge      modem\n363:          0     smp2p   1 Edge      error_ready_interrupt\n364:          0     smp2p   3 Edge      modem\n365:          0     smp2p   7 Edge      modem\n366:          0     smp2p   2 Edge      modem\n367:          0   msmgpio  75 Edge      esd_err_irq\n368:          0   msmgpio  82 Edge      TE_GPIO\n369:          0       sde   4 Edge      dsi_ctrl\n370:          0  spmi-gpio   5 Edge      volume_up\n371:          3   msmgpio  23 Level     fts\n404:      10626      ipcc 196608 Edge      glink-native\nIPI0:      3262       Rescheduling interrupts\nIPI1:        69       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:    182363       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8350/second/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  3:       1069         15         11         31          1          1          1          1     GICv3  27 Level     arch_timer\n  5:          0          0          0          0          0          0          0          0     GICv3  38 Level     arch_mem_timer\n  7:          0          0          0          0          0          0          0          0     GICv3 195 Level     ngd_slim_irq\n  9:          0          0          0          0          0          0          0          0     GICv3  23 Level     arm-pmu\n 11:        452          0          0          0          0          0          0          0     GICv3 261 Level     ipcc_0\n 12:          0          0          0          0          0          0          0          0     GICv3  62 Level     dcvsh-irq-0\n 13:          0          0          0          0          0          0          0          0     GICv3  63 Level     dcvsh-irq-4\n 14:          0          0          0          0          0          0          0          0     GICv3  51 Level     dcvsh-irq-7\n 17:        339          0          0          0          0          0          0          0     GICv3  37 Level     apps_rsc\n 18:        329          0          0          0          0          0          0          0     GICv3 297 Level     ufshcd\n 21:          0          0          0          0          0          0          0          0     GICv3 161 Level     disp_rsc\n 23:          2          0          0          0          0          0          0          0     GICv3 613 Level     90b6400.qcom,cpu-cpu-llcc-bwmon\n 24:          1          0          0          0          0          0          0          0     GICv3 113 Level     9091000.qcom,cpu-llcc-ddr-bwmon\n 25:          0          0          0          0          0          0          0          0     GICv3 258 Level     90b9100.qcom,snoop-l3-bwmon\n 26:          0          0          0          0          0          0          0          0       PDC  26 Level     tsens-upper-lower\n 27:          0          0          0          0          0          0          0          0       PDC  28 Level     tsens-critical\n 29:          0          0          0          0          0          0          0          0       PDC  27 Level     tsens-upper-lower\n 30:          0          0          0          0          0          0          0          0       PDC  29 Level     tsens-critical\n 32:          0          0          0          0          0          0          0          0     GICv3 296 Edge      modem\n 33:          0          0          0          0          0          0          0          0       PDC   6 Edge      adsp\n 34:          0          0          0          0          0          0          0          0     GICv3 610 Edge      cdsp\n 37:          0          0          0          0          0          0          0          0       PDC   9 Edge      slpi\n 38:          0          0          0          0          0          0          0          0     GICv3 384 Level     spss\n 39:          0          0          0          0          0          0          0          0       PDC  11 Level     eud_irq\n 40:          0          0          0          0          0          0          0          0     GICv3 304 Level     sps\n 41:          0          0          0          0          0          0          0          0     GICv3 704 Level     arm-smmu global fault\n 42:          0          0          0          0          0          0          0          0     GICv3 705 Level     arm-smmu global fault\n 43:          0          0          0          0          0          0          0          0     GICv3 710 Level     arm-smmu-context-fault\n 44:          0          0          0          0          0          0          0          0     GICv3 711 Level     arm-smmu-context-fault\n 45:          0          0          0          0          0          0          0          0     GICv3 712 Level     arm-smmu-context-fault\n 46:          0          0          0          0          0          0          0          0     GICv3 713 Level     arm-smmu-context-fault\n 53:          0          0          0          0          0          0          0          0     GICv3  96 Level     arm-smmu global fault\n 54:          0          0          0          0          0          0          0          0     GICv3  97 Level     arm-smmu global fault\n 55:          0          0          0          0          0          0          0          0     GICv3 129 Level     arm-smmu-context-fault\n 59:          0          0          0          0          0          0          0          0     GICv3 133 Level     arm-smmu-context-fault\n 60:          0          0          0          0          0          0          0          0     GICv3 134 Level     arm-smmu-context-fault\n 61:          0          0          0          0          0          0          0          0     GICv3 135 Level     arm-smmu-context-fault\n 62:          0          0          0          0          0          0          0          0     GICv3 136 Level     arm-smmu-context-fault\n 63:          0          0          0          0          0          0          0          0     GICv3 137 Level     arm-smmu-context-fault\n 64:          0          0          0          0          0          0          0          0     GICv3 138 Level     arm-smmu-context-fault\n 65:          0          0          0          0          0          0          0          0     GICv3 139 Level     arm-smmu-context-fault\n 66:          0          0          0          0          0          0          0          0     GICv3 140 Level     arm-smmu-context-fault\n 67:          0          0          0          0          0          0          0          0     GICv3 141 Level     arm-smmu-context-fault\n 68:          0          0          0          0          0          0          0          0     GICv3 142 Level     arm-smmu-context-fault\n 69:          0          0          0          0          0          0          0          0     GICv3 143 Level     arm-smmu-context-fault\n 70:          0          0          0          0          0          0          0          0     GICv3 144 Level     arm-smmu-context-fault\n 71:          0          0          0          0          0          0          0          0     GICv3 145 Level     arm-smmu-context-fault\n 72:          0          0          0          0          0          0          0          0     GICv3 146 Level     arm-smmu-context-fault\n 73:          0          0          0          0          0          0          0          0     GICv3 147 Level     arm-smmu-context-fault\n 74:          0          0          0          0          0          0          0          0     GICv3 148 Level     arm-smmu-context-fault\n 75:          0          0          0          0          0          0          0          0     GICv3 149 Level     arm-smmu-context-fault\n 76:          0          0          0          0          0          0          0          0     GICv3 150 Level     arm-smmu-context-fault\n 77:          0          0          0          0          0          0          0          0     GICv3 213 Level     arm-smmu-context-fault\n 78:          0          0          0          0          0          0          0          0     GICv3 214 Level     arm-smmu-context-fault\n 79:          0          0          0          0          0          0          0          0     GICv3 215 Level     arm-smmu-context-fault\n 80:          0          0          0          0          0          0          0          0     GICv3 216 Level     arm-smmu-context-fault\n 81:          0          0          0          0          0          0          0          0     GICv3 217 Level     arm-smmu-context-fault\n 82:          0          0          0          0          0          0          0          0     GICv3 218 Level     arm-smmu-context-fault\n 83:          0          0          0          0          0          0          0          0     GICv3 219 Level     arm-smmu-context-fault\n 84:          0          0          0          0          0          0          0          0     GICv3 220 Level     arm-smmu-context-fault\n 85:          0          0          0          0          0          0          0          0     GICv3 221 Level     arm-smmu-context-fault\n 86:          0          0          0          0          0          0          0          0     GICv3 222 Level     arm-smmu-context-fault\n 87:          0          0          0          0          0          0          0          0     GICv3 223 Level     arm-smmu-context-fault\n 88:          0          0          0          0          0          0          0          0     GICv3 224 Level     arm-smmu-context-fault\n 89:          0          0          0          0          0          0          0          0     GICv3 347 Level     arm-smmu-context-fault\n 90:          0          0          0          0          0          0          0          0     GICv3 348 Level     arm-smmu-context-fault\n 91:          0          0          0          0          0          0          0          0     GICv3 349 Level     arm-smmu-context-fault\n 92:          0          0          0          0          0          0          0          0     GICv3 350 Level     arm-smmu-context-fault\n 93:          0          0          0          0          0          0          0          0     GICv3 351 Level     arm-smmu-context-fault\n 94:          0          0          0          0          0          0          0          0     GICv3 352 Level     arm-smmu-context-fault\n 95:          0          0          0          0          0          0          0          0     GICv3 353 Level     arm-smmu-context-fault\n 96:          0          0          0          0          0          0          0          0     GICv3 354 Level     arm-smmu-context-fault\n 97:          0          0          0          0          0          0          0          0     GICv3 355 Level     arm-smmu-context-fault\n 98:          0          0          0          0          0          0          0          0     GICv3 356 Level     arm-smmu-context-fault\n 99:          0          0          0          0          0          0          0          0     GICv3 357 Level     arm-smmu-context-fault\n100:          0          0          0          0          0          0          0          0     GICv3 358 Level     arm-smmu-context-fault\n101:          0          0          0          0          0          0          0          0     GICv3 359 Level     arm-smmu-context-fault\n102:          0          0          0          0          0          0          0          0     GICv3 360 Level     arm-smmu-context-fault\n103:          0          0          0          0          0          0          0          0     GICv3 361 Level     arm-smmu-context-fault\n104:          0          0          0          0          0          0          0          0     GICv3 362 Level     arm-smmu-context-fault\n105:          0          0          0          0          0          0          0          0     GICv3 363 Level     arm-smmu-context-fault\n106:          0          0          0          0          0          0          0          0     GICv3 364 Level     arm-smmu-context-fault\n107:          0          0          0          0          0          0          0          0     GICv3 365 Level     arm-smmu-context-fault\n108:          0          0          0          0          0          0          0          0     GICv3 366 Level     arm-smmu-context-fault\n109:          0          0          0          0          0          0          0          0     GICv3 367 Level     arm-smmu-context-fault\n110:          0          0          0          0          0          0          0          0     GICv3 368 Level     arm-smmu-context-fault\n151:          0          0          0          0          0          0          0          0       PDC  14 Edge      dp_hs_phy_irq\n152:          0          0          0          0          0          0          0          0     GICv3 162 Level     pwr_event_irq\n153:          0          0          0          0          0          0          0          0       PDC  17 Level     ss_phy_irq\n154:          0          0          0          0          0          0          0          0       PDC  15 Edge      dm_hs_phy_irq\n169:          0          0          0          0          0          0          0          0     GICv3 634 Level     spi_geni\n170:        425          0          0          0          0          0          0          0     GICv3 639 Level     i2c_geni\n183:      11236          0          0          0          0          0          0          0     GICv3 388 Level     spi_geni\n184:       1400          0          0          0          0          0          0          0     GICv3 385 Level     i2c_geni\n185:        223          0          0          0          0          0          0          0     GICv3 390 Level     i2c_geni\n198:          0          0          0          0          0          0          0          0     GICv3 618 Level     msm_serial_geni0\n199:          4          0          0          0          0          0          0          0     GICv3 615 Level     i2c_geni\n200:          0          0          0          0          0          0          0          0     GICv3 206 Level     msm_vidc\n201:          0          0          0          0          0          0          0          0     GICv3 266 Level     msm_cvp\n202:          0          0          0          0          0          0          0          0     GICv3 172 Edge      int_global_int\n271:          0          0          0          0          0          0          0          0     GICv3 332 Level     kgsl_3d0_irq\n272:          0          0          0          0          0          0          0          0     GICv3 336 Level     kgsl_hfi_irq\n273:          0          0          0          0          0          0          0          0     GICv3 337 Level     kgsl_gmu_irq\n274:          0          0          0          0          0          0          0          0     GICv3 115 Level     msm_drm\n277:          0          0          0          0          0          0          0          0     GICv3 509 Edge      csiphy0\n278:          0          0          0          0          0          0          0          0     GICv3 510 Edge      csiphy1\n279:          0          0          0          0          0          0          0          0     GICv3 511 Edge      csiphy2\n280:          0          0          0          0          0          0          0          0     GICv3 480 Edge      csiphy3\n281:          0          0          0          0          0          0          0          0     GICv3 154 Edge      csiphy4\n282:          0          0          0          0          0          0          0          0     GICv3 121 Edge      csiphy5\n283:          0          0          0          0          0          0          0          0     GICv3 492 Edge      cci\n284:          0          0          0          0          0          0          0          0     GICv3 303 Edge      cci\n285:          0          0          0          0          0          0          0          0     GICv3 491 Edge      cpas_camnoc\n286:          2          0          0          0          0          0          0          0     GICv3 493 Edge      cpas-cdm\n287:          2          0          0          0          0          0          0          0     GICv3 488 Edge      ife-cdm0\n288:          2          0          0          0          0          0          0          0     GICv3 319 Edge      ife-cdm1\n289:          2          0          0          0          0          0          0          0     GICv3 674 Edge      ife-cdm2\n290:          0          0          0          0          0          0          0          0     GICv3 496 Edge      csid\n291:          2          0          0          0          0          0          0          0     GICv3 497 Edge      ife\n292:          0          0          0          0          0          0          0          0     GICv3 498 Edge      csid\n293:          2          0          0          0          0          0          0          0     GICv3 499 Edge      ife\n294:          0          0          0          0          0          0          0          0     GICv3 672 Edge      csid\n295:          2          0          0          0          0          0          0          0     GICv3 673 Edge      ife\n296:          0          0          0          0          0          0          0          0     GICv3 500 Edge      csid-lite\n297:          2          0          0          0          0          0          0          0     GICv3 501 Edge      ife-lite\n298:          0          0          0          0          0          0          0          0     GICv3 391 Edge      csid-lite\n299:          2          0          0          0          0          0          0          0     GICv3 392 Edge      ife-lite\n300:          0          0          0          0          0          0          0          0     GICv3 495 Edge      a5\n301:          0          0          0          0          0          0          0          0     GICv3 506 Edge      jpeg\n302:          0          0          0          0          0          0          0          0     GICv3 507 Edge      jpegdma\n303:          0          0          0          0          0          0          0          0     GICv3  32 Edge      apps_wdog_bark\n304:          0          0          0          0          0          0          0          0     GICv3 960 Edge      hh_msgq_tx_0\n305:          0          0          0          0          0          0          0          0     GICv3 961 Edge      hh_msgq_rx_0\n306:        151          0          0          0          0          0          0          0      ipcc   0 Edge      qcom,qmp-aop\n307:          0          0          0          0          0          0          0          0  pmic_arb 20381778 Edge      pon_kpdpwr_status\n308:          0          0          0          0          0          0          0          0  pmic_arb 20316242 Edge      pon_resin_status\n309:          0          0          0          0          0          0          0          0  pmic_arb 19923026 Edge      pon_kpdpwr_bark\n310:          0          0          0          0          0          0          0          0  pmic_arb 20054098 Edge      pon_kpdpwr_resin_bark\n311:          0          0          0          0          0          0          0          0  pmic_arb 51380307 Edge      pm-adc5\n313:          0          0          0          0          0          0          0          0  pmic_arb 102826069 Edge      pm8xxx_rtc_alarm\n319:          0          0          0          0          0          0          0          0  pmic_arb 786432130 Edge      flash_fault\n320:          0          0          0          0          0          0          0          0  pmic_arb 786628738 Edge      flash_all_ramp_down\n321:          0          0          0          0          0          0          0          0  pmic_arb 786694274 Edge      flash_all_ramp_up\n331:          2          0          0          0          0          0          0          0      ipcc 196610 Edge      smp2p\n332:          0          0          0          0          0          0          0          0      ipcc 262146 Edge      smp2p\n333:          0          0          0          0          0          0          0          0      ipcc 393218 Edge      smp2p\n334:          0          0          0          0          0          0          0          0      ipcc 131074 Edge      smp2p\n335:          0          0          0          0          0          0          0          0      ipcc 1048577 Edge      qsee_ipc_irq_spss\n336:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n340:          0          0          0          0          0          0          0          0  spmi-gpio   8 Edge      soc:extcon_usb1\n341:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n342:          0          0          0          0          0          0          0          0     GICv3 165 Level     dwc3\n344:          0          0          0          0          0          0          0          0   msmgpio 119 Edge      aw8697\n345:          0          0          0          0          0          0          0          0   msmgpio  44 Level     cs35l41\n346:          0          0          0          0          0          0          0          0   msmgpio 116 Level     cs35l41\n348:          0          0          0          0          0          0          0          0   msmgpio  87 Level     sn-nci\n349:          1          0          0          0          0          0          0          0   msmgpio  96 Edge      msm_pcie_wake\n350:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n351:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n352:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n353:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n354:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n355:          0          0          0          1          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n356:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n357:          0          0          0          1          0          0          0          0     smp2p   2 Edge      adsp\n358:          0          0          0          0          0          0          0          0     smp2p   0 Edge      slpi\n359:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n360:          0          0          0          0          0          0          0          0     smp2p   3 Edge      slpi\n361:          0          0          0          0          0          0          0          0     smp2p   2 Edge      slpi\n362:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n363:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n364:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n365:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n366:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n367:          0          0          0          0          0          0          0          0   msmgpio  75 Edge      esd_err_irq\n368:          0          0          0          0          0          0          0          0   msmgpio  82 Edge      TE_GPIO\n369:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n370:          0          0          0          0          0          0          0          0  spmi-gpio   5 Edge      volume_up\n371:          3          0          0          0          0          0          0          0   msmgpio  23 Level     fts\n404:        359          0          0          0          0          0          0          0      ipcc 196608 Edge      glink-native\nIPI0:       930       4194        581        869         33         33         33         32       Rescheduling interrupts\nIPI1:        20         34         33         31          8          8          8          8       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:       542         90        124        203          5          5          6          5       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8350/second/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:04 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    6 root      0:00 [kworker/0:0H-kb]\n    8 root      0:00 [mm_percpu_wq]\n    9 root      0:00 [ksoftirqd/0]\n   10 root      0:00 [rcu_preempt]\n   11 root      0:00 [rcuog/0]\n   12 root      0:00 [rcuop/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [cpuhp/0]\n   15 root      0:00 [cpuhp/1]\n   16 root      0:00 [migration/1]\n   17 root      0:00 [ksoftirqd/1]\n   19 root      0:00 [kworker/1:0H-kb]\n   20 root      0:00 [rcuop/1]\n   21 root      0:00 [cpuhp/2]\n   22 root      0:00 [migration/2]\n   23 root      0:00 [ksoftirqd/2]\n   24 root      0:00 [kworker/2:0-mm_]\n   25 root      0:00 [kworker/2:0H-kb]\n   26 root      0:00 [rcuop/2]\n   27 root      0:00 [cpuhp/3]\n   28 root      0:00 [migration/3]\n   29 root      0:00 [ksoftirqd/3]\n   31 root      0:00 [kworker/3:0H-kb]\n   32 root      0:00 [rcuop/3]\n   34 root      0:00 [cpuhp/4]\n   35 root      0:00 [migration/4]\n   36 root      0:00 [ksoftirqd/4]\n   38 root      0:00 [kworker/4:0H]\n   39 root      0:00 [rcuog/4]\n   40 root      0:00 [rcuop/4]\n   41 root      0:00 [cpuhp/5]\n   42 root      0:00 [migration/5]\n   43 root      0:00 [ksoftirqd/5]\n   45 root      0:00 [kworker/5:0H]\n   46 root      0:00 [rcuop/5]\n   47 root      0:00 [cpuhp/6]\n   48 root      0:00 [migration/6]\n   49 root      0:00 [ksoftirqd/6]\n   50 root      0:00 [kworker/6:0-mm_]\n   51 root      0:00 [kworker/6:0H]\n   52 root      0:00 [rcuop/6]\n   53 root      0:00 [cpuhp/7]\n   54 root      0:00 [migration/7]\n   55 root      0:00 [ksoftirqd/7]\n   57 root      0:00 [kworker/7:0H]\n   58 root      0:00 [rcuop/7]\n   59 root      0:00 [kdevtmpfs]\n   60 root      0:00 [netns]\n   61 root      0:00 [rcu_tasks_kthre]\n   62 root      0:00 [kauditd]\n   65 root      0:00 [qmp_aop]\n   66 root      0:00 [hh-watchdog]\n   67 root      0:00 [oom_reaper]\n   68 root      0:00 [writeback]\n   69 root      0:00 [kcompactd0]\n   82 root      0:00 [cryptd]\n  114 root      0:00 [kblockd]\n  115 root      0:00 [blk_crypto_wq]\n  116 root      0:00 [blkcg_punt_bio]\n  117 root      0:00 [irq/41-arm-smmu]\n  118 root      0:00 [irq/42-arm-smmu]\n  119 root      0:00 [governor_msm_ad]\n  120 root      0:00 [longpress]\n  121 root      0:00 [irq/26-tsens-up]\n  122 root      0:00 [irq/27-tsens-cr]\n  123 root      0:00 [irq/29-tsens-up]\n  124 root      0:00 [irq/30-tsens-cr]\n  125 root      0:00 [irq/12-dcvsh-ir]\n  126 root      0:00 [irq/13-dcvsh-ir]\n  127 root      0:00 [irq/14-dcvsh-ir]\n  129 root      0:00 [devfreq_wq]\n  130 root      0:00 [ipa_usb_wq]\n  131 root      0:00 [watchdogd]\n  132 root      0:00 [ion-pool-uncach]\n  133 root      0:00 [ion-pool-cached]\n  134 root      0:00 [system]\n  135 root      0:00 [cfg80211]\n  160 root      0:00 [kworker/1:1-eve]\n  161 root      0:00 [kworker/2:1-eve]\n  163 root      0:00 [kworker/5:1-eve]\n  164 root      0:00 [kworker/3:1-eve]\n  165 root      0:00 [kworker/6:1-eve]\n  166 root      0:00 [kworker/7:1-eve]\n  167 root      0:00 [kswapd0:0]\n  169 root      0:00 [irq/331-smp2p]\n  170 root      0:00 [irq/332-smp2p]\n  171 root      0:00 [irq/333-smp2p]\n  172 root      0:00 [irq/334-smp2p]\n  174 root      0:00 [pmic_glink_rx]\n  175 root      0:00 [pmic_glink_rx]\n  176 root      0:00 [cdsprm-wq]\n  177 root      0:00 [cdsprm-wq-delay]\n  178 root      0:00 [hyp_core_ctl]\n  182 root      0:00 [kgsl-workqueue]\n  183 root      0:00 [kgsl-mementry]\n  184 root      0:00 [kgsl_worker_thr]\n  185 root      0:00 [qseecom-unreg-l]\n  186 root      0:00 [qseecom-unload-]\n  187 root      0:00 [uas]\n  188 root      0:00 [k_ipa_usb]\n  189 root      0:00 [dm_bufio_cache]\n  190 root      0:00 [irq/321-flash_a]\n  191 root      0:00 [irq/320-flash_a]\n  192 root      0:00 [irq/319-flash_f]\n  193 root      0:00 [qcrypto_seq_res]\n  194 root      0:00 [ion_system_heap]\n  195 root      0:00 [hh_rm_recv_task]\n  196 root      0:00 [memlat_wq]\n  197 root      0:00 [irq/340-soc:ext]\n  198 root      0:00 [dsi_dma_cmd_wor]\n  199 root      0:00 [apr_driver]\n  201 root      0:00 [ipv6_addrconf]\n  202 root      0:00 [krfcommd]\n  203 root      0:00 [soc:qcom,svm_ne]\n  204 root      0:00 [rq_stats]\n  205 root      0:00 [msm_perf:events]\n  206 root      0:00 [khvcd]\n  207 root      0:00 [dsi_dma_cmd_wor]\n  209 root      0:00 [ipa_power_mgmt]\n  210 root      0:00 [transport_power]\n  211 root      0:00 [ipa_pm_activate]\n  212 root      0:00 [rmnet_ctlwq]\n  214 root      0:00 [hwrng]\n  215 root      0:00 [irq/53-arm-smmu]\n  216 root      0:00 [irq/54-arm-smmu]\n  217 root      0:00 [irq/60-arm-smmu]\n  218 root      0:00 [k_sm_usb]\n  219 root      0:00 [irq/152-pwr_eve]\n  220 root      0:00 [irq/151-dp_hs_p]\n  221 root      0:00 [irq/154-dm_hs_p]\n  222 root      0:00 [irq/153-ss_phy_]\n  223 root      0:00 [usb_bam_wq]\n  224 root      0:00 [msm_vidc_worker]\n  225 root      0:00 [pm_workerq_venu]\n  226 root      0:00 [vidc_core_workq]\n  227 root      0:00 [irq/62-arm-smmu]\n  228 root      0:00 [irq/63-arm-smmu]\n  229 root      0:00 [irq/64-arm-smmu]\n  230 root      0:00 [irq/65-arm-smmu]\n  231 root      0:00 [irq/66-arm-smmu]\n  232 root      0:00 [irq/43-arm-smmu]\n  234 root      0:00 [irq/44-arm-smmu]\n  235 root      0:00 [irq/45-arm-smmu]\n  236 root      0:00 [irq/46-arm-smmu]\n  237 root      0:00 [kgsl-events]\n  238 root      0:00 [kgsl_devfreq_wq]\n  239 root      0:00 [msm_cvp_workerq]\n  240 root      0:00 [pm_workerq_iris]\n  241 root      0:00 [irq/67-arm-smmu]\n  242 root      0:00 [irq/68-arm-smmu]\n  243 root      0:00 [irq/69-arm-smmu]\n  244 root      0:00 [cvp-dsp-thread]\n  245 root      0:00 [irq/70-arm-smmu]\n  246 root      0:00 [irq/71-arm-smmu]\n  247 root      0:00 [irq/72-arm-smmu]\n  248 root      0:00 [mem_buf_rcvr]\n  249 root      0:00 [irq/73-arm-smmu]\n  250 root      0:00 [irq/74-arm-smmu]\n  251 root      0:00 [irq/75-arm-smmu]\n  252 root      0:00 [irq/76-arm-smmu]\n  253 root      0:00 [irq/77-arm-smmu]\n  254 root      0:00 [irq/78-arm-smmu]\n  255 root      0:00 [irq/79-arm-smmu]\n  256 root      0:00 [irq/80-arm-smmu]\n  257 root      0:00 [irq/81-arm-smmu]\n  258 root      0:00 [irq/82-arm-smmu]\n  259 root      0:00 [irq/83-arm-smmu]\n  260 root      0:00 [irq/84-arm-smmu]\n  261 root      0:00 [irq/85-arm-smmu]\n  262 root      0:00 [irq/86-arm-smmu]\n  263 root      0:00 [irq/87-arm-smmu]\n  264 root      0:00 [irq/88-arm-smmu]\n  265 root      0:00 [irq/89-arm-smmu]\n  266 root      0:00 [irq/90-arm-smmu]\n  267 root      0:00 [irq/91-arm-smmu]\n  268 root      0:00 [irq/92-arm-smmu]\n  269 root      0:00 [irq/93-arm-smmu]\n  270 root      0:00 [irq/94-arm-smmu]\n  271 root      0:00 [irq/61-arm-smmu]\n  292 root      0:00 [uaudio_svc]\n  293 root      0:00 [irq/95-arm-smmu]\n  294 root      0:00 [irq/59-arm-smmu]\n  295 root      0:00 [irq/96-arm-smmu]\n  296 root      0:00 [irq/97-arm-smmu]\n  297 root      0:00 [irq/98-arm-smmu]\n  298 root      0:00 [irq/99-arm-smmu]\n  299 root      0:00 [irq/100-arm-smm]\n  300 root      0:00 [irq/101-arm-smm]\n  301 root      0:00 [irq/102-arm-smm]\n  302 root      0:00 [irq/103-arm-smm]\n  303 root      0:00 [irq/55-arm-smmu]\n  304 root      0:00 [scsi_eh_0]\n  305 root      0:00 [scsi_tmf_0]\n  306 root      0:00 [qc_ufs_qos_swq]\n  307 root      0:00 [ufs_eh_wq_0]\n  308 root      0:00 [ufs_clk_gating_]\n  309 root      0:00 [spi0]\n  310 root      0:00 [irq/344-aw8697]\n  311 root      0:00 [aw8976_vibrator]\n  315 root      0:00 [kworker/1:1H-kb]\n  318 root      0:00 [kworker/2:1H-kb]\n  319 root      0:00 [kworker/0:1H-kb]\n  320 root      0:00 [kworker/3:1H-kb]\n  321 root      0:00 [spi1]\n  322 root      0:00 [irq/345-cs35l41]\n  323 root      0:00 [irq/346-cs35l41]\n  324 root      0:00 [dsi_dma_cmd_wor]\n  325 root      0:00 [irq/104-arm-smm]\n  326 root      0:00 [irq/105-arm-smm]\n  327 root      0:00 [irq/106-arm-smm]\n  328 root      0:00 [irq/107-arm-smm]\n  329 root      0:00 [cam-cpas]\n  330 root      0:00 [qcom,cam_virtua]\n  331 root      0:00 [qcom,cam-cpas-c]\n  332 root      0:00 [qcom,cam-cpas-c]\n  333 root      0:00 [qcom,cam-cpas-c]\n  334 root      0:00 [qcom,cam-cpas-c]\n  335 root      0:00 [qcom,cam-ife-cd]\n  336 root      0:00 [qcom,cam-ife-cd]\n  337 root      0:00 [qcom,cam-ife-cd]\n  338 root      0:00 [qcom,cam-ife-cd]\n  339 root      0:00 [qcom,cam-ife-cd]\n  340 root      0:00 [qcom,cam-ife-cd]\n  341 root      0:00 [qcom,cam-ife-cd]\n  342 root      0:00 [qcom,cam-ife-cd]\n  343 root      0:00 [qcom,cam-ife-cd]\n  344 root      0:00 [qcom,cam-ife-cd]\n  345 root      0:00 [qcom,cam-ife-cd]\n  346 root      0:00 [qcom,cam-ife-cd]\n  347 root      0:00 [cam_cci_wq]\n  348 root      0:00 [cam_cci_wq]\n  349 root      0:00 [cam_cci_wq]\n  350 root      0:00 [cam_cci_wq]\n  351 root      0:00 [dsi_dma_cmd_wor]\n  352 root      0:00 [dsi_dma_cmd_wor]\n  353 root      0:00 [disp_feature:0]\n  354 root      0:00 [irq/367-esd_err]\n  355 root      0:00 [crtc_commit:132]\n  356 root      0:00 [crtc_event:132]\n  357 root      0:00 [crtc_commit:193]\n  358 root      0:00 [crtc_event:193]\n  359 root      0:00 [pp_event]\n  360 root      0:00 [irq/108-arm-smm]\n  361 root      0:00 [sb-1]\n  362 root      0:00 [ngd_rx_thread1]\n  363 root      0:00 [ngd_notify_sl1]\n  364 root      0:00 [irq/109-arm-smm]\n  365 root      0:00 [kworker/3:2-eve]\n  366 root      0:00 [irq/110-arm-smm]\n  367 root      0:00 [mhi_w]\n  368 root      0:00 [irq/371-fts]\n  369 root      0:00 [irq/23-90b6400.]\n  370 root      0:00 [irq/24-9091000.]\n  371 root      0:00 [irq/25-90b9100.]\n  372 root      0:00 [core_ctl/0]\n  373 root      0:00 [core_ctl/4]\n  374 root      0:00 [core_ctl/7]\n  385 root      0:00 qrtr-ns\n  387 root      0:00 [kworker/u17:1-p]\n  388 root      0:00 [kworker/u17:2-d]\n  389 root      0:00 [glink_adsp]\n  390 root      0:00 [qrtr_rx]\n  403 root      0:00 [kworker/4:2-eve]\n  404 root      0:00 [kworker/5:2]\n  405 root      0:00 [kworker/7:2-rcu]\n  463 root      0:00 [kworker/0:1-eve]\n  464 root      0:00 [kworker/1:0]\n  494 root      0:01 [kworker/u16:2-m]\n  516 root      0:00 [kworker/4:0]\n  523 root      0:00 [kworker/0:2-eve]\n  527 root      0:00 [kworker/u16:0-r]\n  549 root      0:00 [kworker/0:0-eve]\n  559 root      0:00 [kworker/u16:1-m]\n  578 root      0:00 [kworker/7:0]\n  622 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm8350/second/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1111.938888,3.7064629599999996,61.89893076923071,16.70123413700833,17.96274440193787,269.814582085\r\n1,403200,1494.790655,3.707318092757937,52.40054404145071,10.517240752274649,28.52459186456453,200.708617528\r\n1,499200,1852.023335,3.7099826422275646,54.92063461538455,8.896798320318338,33.71999557580908,161.993727542\r\n1,595200,2208.383022,3.7103209374999997,56.07219847328237,7.617625308015507,39.382351831394296,135.853872604\r\n1,691200,2564.672491,3.7104636733217586,58.07470796460173,6.793591654821997,44.1592629116977,116.980212091\r\n1,806400,2991.593622,3.709813519345238,63.98612499999995,6.41704707012817,46.75047521414051,100.288102618\r\n1,902400,3347.99009,3.7100954011524823,67.85263953488365,6.080399550188682,49.3388629355271,89.611835175\r\n1,998400,3704.252482,3.710188784054487,69.98208974358965,5.668050145279702,52.92825439270983,80.992867833\r\n1,1094400,4060.419035,3.7101782118055553,71.01104225352108,5.2468652342671955,57.17699742709316,73.88801893\r\n1,1209600,4488.263192,3.7105350462962967,78.52603124999996,5.249115492621203,57.152486056311126,66.845546745\r\n1,1305600,4845.665552,3.7114472671568635,89.22557627118643,5.524413221788409,54.30440989041032,61.915130758\r\n1,1401600,5202.191857,3.71160948701484,88.42945454545452,5.099881789311896,58.82489288844431,57.671754457\r\n1,1497600,5558.334723,3.711494873798077,94.59436538461532,5.105831469809773,58.75634591033163,53.976063469\r\n1,1612800,5984.798612,3.7108126314484124,98.02416666666659,4.914062362976079,61.04928628099716,50.131131231\r\n1,1708800,6342.494715,3.711665914676966,102.758911111111,4.860928295179368,61.71660674310152,47.304202065\r\n1,1804800,6698.073188,3.7112550908687947,117.07581395348831,5.244023880270413,57.207977471019866,44.791692692\r\n4,710400,6462.174737,9.09652975365991,122.51254545454539,5.689170278283294,52.73176672970402,46.437450607\r\n4,844800,7688.759034,9.101277265625,155.75194594594586,6.079417339677571,49.34683428328526,39.032689465\r\n4,960000,8732.099197,9.095936663541666,188.33439393939386,6.4730414051093295,46.346065353946706,34.369937799\r\n4,1075200,9778.675967,9.094750713355653,211.0488275862068,6.477363132611507,46.31514303862221,30.691301187\r\n4,1209600,11003.521127,9.096826328538361,236.5773846153846,6.453392445170514,46.48717748825413,27.278146031\r\n4,1324800,12055.93956,9.100195923913045,280.353125,6.979943062458477,42.98029329401634,24.896969001\r\n4,1440000,13106.159895,9.101499927083333,320.3413636363636,7.33675010200699,40.8900392992715,22.902912127\r\n4,1555200,14151.610925,9.099544061856996,353.8241499999999,7.505426631097818,39.97107889336852,21.212307388\r\n4,1670400,15196.028771,9.09723944624042,401.1435263157894,7.924783137907143,37.85592549088063,19.755480565\r\n4,1766400,16066.838046,9.095809582201086,418.45422222222214,7.81864112698582,38.369838841248054,18.684579368\r\n4,1881600,17116.448907,9.096752182716838,469.64437499999985,8.23822920480348,36.41559278601746,17.541419941\r\n4,1996800,18181.818182,9.10547785556891,550.9698666666666,9.098861836382012,32.971156766052104,16.514264004\r\n4,2112000,19201.228879,9.091490946496211,663.6410666666666,10.377970536817156,28.907385980304362,15.637926973\r\n4,2227200,20263.424519,9.098161152568247,777.9417857142857,11.527656811716449,26.024369470739863,14.81814838\r\n4,2342400,21300.766828,9.09356507342896,873.0109230769231,12.30764810586215,24.375087540657713,14.097931401\r\n4,2419200,22011.886419,9.09882871155754,941.0646153846153,12.837902068307582,23.368304135969233,13.641892234\r\n7,844800,7845.393446,9.286687317708333,218.67505555555556,8.364997295333072,35.86372946795493,38.253093267\r\n7,960000,8912.920764,9.2842924625,245.94421874999995,8.28151352149778,36.22526235346199,33.672324414\r\n7,1075200,9984.357839,9.286047097284227,274.424448275862,8.249521989586878,36.36574341867092,30.06117728\r\n7,1190400,8997.660608,7.558518655913978,270.6181249999999,9.026690153607534,33.234773199798425,33.35582254\r\n7,1305600,9485.26622,7.265062974877451,272.1051999999999,8.609843779586866,34.84383778382506,31.641599571\r\n7,1420800,10920.209668,7.685958381193694,323.0676538461538,8.879886932598064,33.784213951947976,27.486152906\r\n7,1555200,14251.104461,9.163518814943416,421.6167499999999,8.881433099522889,33.77833246484917,21.065180877\r\n7,1670400,10840.108401,6.489528496767241,360.70453846153845,9.987099504394504,30.038751478143837,27.687756708\r\n7,1785600,14139.605034,7.918685614919355,469.47245,9.966815776060665,30.099884129550304,21.229820357\r\n7,1900800,17637.721206,9.279104169823231,604.8879374999999,10.297295370800171,29.133863718302557,17.023476139\r\n7,2035200,18897.637795,9.285395929147011,677.8249333333332,10.768832630433549,27.85817277465869,15.887336244\r\n7,2150400,19977.358993,9.290066496000744,750.2063571428571,11.276130165762575,26.604872025234535,15.03070463\r\n7,2265600,21046.723727,9.289690910575565,871.3446153846153,12.43222765359733,24.130832249777328,14.267865359\r\n7,2380800,22096.19209,9.280994661458333,1011.7940769230768,13.750678207582705,21.817105707161943,13.590392078\r\n7,2496000,23185.717598,9.289149678685897,1188.64125,15.39488518770502,19.486991708102646,12.951666609\r\n7,2592000,24065.458046,9.284513135030863,1293.4170833333333,16.14043321407922,18.586861704449884,12.478908329\r\n7,2688000,24954.250541,9.283575350074406,1464.5964545454544,17.627355284067395,17.019002293052836,12.035639735\r\n7,2764800,25662.959795,9.282031175853588,1477.6735454545453,17.293058648177677,17.34800107392301,11.702895204\r\n7,2841600,26380.58389,9.283707731559685,1706.5651818181818,19.428699463470842,15.441074713418129,11.384680568\r\n"
  },
  {
    "path": "results/sm8350/second/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 2925.969076279551, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1351.42, 1363.24, 1351.077, 1335.321, 1335.321, 1334.982, 1319.565, 1334.982, 1319.23, 1319.23, 1334.982, 1334.643, 1334.643, 1318.895, 1318.56, 1318.56, 1318.56, 1318.56, 1318.56, 1334.304, 1333.965, 1318.225, 1317.89, 1333.626, 1333.626, 1317.89, 1317.555, 1317.555, 1317.555], \"power_mean\": 1328.362827586207, \"energy_millijoules\": 6641.814137931035, \"energy_joules\": 6.641814137931035}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 269.814582085, \"elapsed_ns\": 269814582085, \"power_samples\": [31.120999999999867, 74.019, 74.019, 74.019, 74.019, 74.019, 57.944999999999936, 85.45499999999993, 74.019, 57.944999999999936, 73.66499999999996, 73.66499999999996, 85.45499999999993, 57.944999999999936, 73.31099999999992, 85.45499999999993, 57.59500000000003, 57.24499999999989, 72.95699999999988, 73.31099999999992, 72.95699999999988, 57.24499999999989, 72.95699999999988, 73.31099999999992, 73.31099999999992, 57.24499999999989, 85.09799999999996, 72.95699999999988, 57.24499999999989, 72.95699999999988, 72.95699999999988, 72.95699999999988, 72.95699999999988, 57.24499999999989, 72.95699999999988, 72.95699999999988, 72.95699999999988, 72.60299999999984, 56.89499999999998, 72.60299999999984, 84.38400000000001, 72.60299999999984, 72.60299999999984, 56.89499999999998, 72.24900000000002, 56.89499999999998, 56.544999999999845, 56.544999999999845, 72.24900000000002, 72.24900000000002, 71.89499999999998, 56.544999999999845, 72.24900000000002, 72.24900000000002, 71.89499999999998, 56.544999999999845, 72.24900000000002, 72.24900000000002, 72.24900000000002, 72.24900000000002, 56.544999999999845, 56.194999999999936, 71.89499999999998, 56.544999999999845, 71.89499999999998, 71.89499999999998, 56.194999999999936, 71.89499999999998, 55.84500000000003, 83.66999999999985, 55.84500000000003, 71.54099999999994, 55.84500000000003, 83.31299999999987, 71.54099999999994, 55.84500000000003, 71.1869999999999, 55.49499999999989, 55.49499999999989, 71.1869999999999, 71.1869999999999, 55.49499999999989, 71.54099999999994, 71.54099999999994, 55.49499999999989, 71.1869999999999, 71.54099999999994, 55.49499999999989, 71.1869999999999, 71.1869999999999, 71.1869999999999, 55.49499999999989, 71.1869999999999, 55.49499999999989, 71.1869999999999, 71.1869999999999, 55.49499999999989, 55.14499999999998, 71.1869999999999, 71.1869999999999, 55.14499999999998, 71.1869999999999, 55.49499999999989, 70.83299999999986, 55.14499999999998, 82.24199999999996, 70.47900000000004, 70.47900000000004, 54.794999999999845, 54.444999999999936, 70.47900000000004, 54.794999999999845, 70.83299999999986, 55.14499999999998, 70.47900000000004, 70.47900000000004, 54.794999999999845, 54.794999999999845, 70.47900000000004, 54.794999999999845, 70.47900000000004, 54.794999999999845, 70.47900000000004, 70.47900000000004, 54.794999999999845, 54.794999999999845, 70.47900000000004, 54.794999999999845, 70.47900000000004, 54.444999999999936, 70.47900000000004, 54.794999999999845, 54.794999999999845, 70.125, 54.444999999999936, 54.444999999999936, 54.09500000000003, 69.77099999999996, 69.77099999999996, 54.09500000000003, 54.09500000000003, 70.125, 54.444999999999936, 54.09500000000003, 54.09500000000003, 69.77099999999996, 54.444999999999936, 70.125, 69.77099999999996, 54.09500000000003, 54.09500000000003, 69.77099999999996, 54.09500000000003, 69.77099999999996, 54.09500000000003, 54.09500000000003, 69.77099999999996, 54.09500000000003, 54.09500000000003, 54.09500000000003, 69.77099999999996, 54.09500000000003, 54.09500000000003, 69.77099999999996, 69.41699999999992, 53.39499999999998, 69.41699999999992, 53.74499999999989, 69.06299999999987, 53.39499999999998, 53.74499999999989, 69.41699999999992, 53.74499999999989, 53.39499999999998, 53.39499999999998, 53.74499999999989, 69.41699999999992, 53.39499999999998, 69.41699999999992, 53.74499999999989, 53.39499999999998, 69.06299999999987, 53.39499999999998, 53.39499999999998, 69.41699999999992, 53.39499999999998, 53.39499999999998, 53.39499999999998, 53.39499999999998, 69.06299999999987, 37.72699999999986, 69.06299999999987, 53.39499999999998, 69.06299999999987, 53.044999999999845, 53.044999999999845, 68.70899999999983, 53.044999999999845, 53.044999999999845, 53.044999999999845, 68.70899999999983, 53.044999999999845, 53.044999999999845, 53.044999999999845, 53.044999999999845, 80.45699999999988, 138.0809999999999, 53.044999999999845, 53.044999999999845, 68.70899999999983, 53.044999999999845, 52.694999999999936, 68.35500000000002, 53.044999999999845, 52.694999999999936, 53.044999999999845, 53.044999999999845, 68.35500000000002, 52.694999999999936, 53.044999999999845, 52.694999999999936, 37.034999999999854, 68.35500000000002, 52.694999999999936, 37.034999999999854, 52.34500000000003, 52.34500000000003, 52.694999999999936, 52.34500000000003, 52.34500000000003, 52.694999999999936, 52.694999999999936, 52.34500000000003, 52.694999999999936, 52.694999999999936, 52.694999999999936, 52.694999999999936, 52.34500000000003, 52.34500000000003, 52.34500000000003, 52.34500000000003, 52.34500000000003, 68.00099999999998, 36.68899999999985, 68.00099999999998, 36.68899999999985, 68.00099999999998, 52.34500000000003, 51.99499999999989, 52.34500000000003, 36.68899999999985, 52.34500000000003, 52.34500000000003, 52.34500000000003, 36.34299999999985, 51.99499999999989, 51.99499999999989, 51.99499999999989, 51.99499999999989, 52.34500000000003], \"power_mean\": 61.89893076923071, \"energy_millijoules\": 16701.23413700833, \"energy_joules\": 16.70123413700833, \"coremark_score\": 1111.938888, \"coremarks_per_mhz\": 3.7064629599999996, \"ulpmark_cm_score\": 17.96274440193787}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1317.22, 1332.948, 1348.676, 1317.22], \"power_mean\": 1329.016, \"energy_millijoules\": 6645.08, \"energy_joules\": 6.64508}}, \"403200\": {\"active\": {\"elapsed_sec\": 200.708617528, \"elapsed_ns\": 200708617528, \"power_samples\": [9.29099999999994, 67.64699999999993, 51.99499999999989, 51.99499999999989, 67.64699999999993, 51.99499999999989, 67.29299999999989, 51.64499999999998, 67.64699999999993, 35.996999999999844, 67.64699999999993, 51.99499999999989, 51.64499999999998, 51.99499999999989, 67.64699999999993, 35.996999999999844, 51.294999999999845, 66.93899999999985, 66.93899999999985, 51.64499999999998, 51.294999999999845, 51.64499999999998, 67.29299999999989, 51.64499999999998, 51.64499999999998, 67.29299999999989, 51.64499999999998, 51.64499999999998, 51.64499999999998, 66.93899999999985, 51.294999999999845, 51.294999999999845, 67.29299999999989, 51.294999999999845, 51.294999999999845, 67.29299999999989, 51.64499999999998, 66.93899999999985, 51.294999999999845, 51.294999999999845, 66.93899999999985, 51.294999999999845, 51.294999999999845, 51.294999999999845, 51.294999999999845, 50.944999999999936, 50.944999999999936, 50.59500000000003, 66.231, 50.59500000000003, 50.944999999999936, 50.944999999999936, 66.58500000000004, 50.944999999999936, 51.294999999999845, 50.944999999999936, 66.58500000000004, 35.304999999999836, 66.58500000000004, 50.944999999999936, 50.944999999999936, 50.944999999999936, 66.58500000000004, 50.944999999999936, 50.944999999999936, 66.58500000000004, 50.944999999999936, 50.944999999999936, 66.58500000000004, 50.59500000000003, 50.944999999999936, 66.58500000000004, 35.304999999999836, 66.58500000000004, 50.59500000000003, 50.24499999999989, 50.24499999999989, 66.231, 34.95899999999983, 66.231, 50.59500000000003, 50.59500000000003, 50.59500000000003, 66.231, 50.59500000000003, 50.59500000000003, 50.59500000000003, 50.59500000000003, 50.59500000000003, 50.59500000000003, 66.231, 50.59500000000003, 50.59500000000003, 50.59500000000003, 34.95899999999983, 65.87699999999995, 50.59500000000003, 50.59500000000003, 50.59500000000003, 50.24499999999989, 65.87699999999995, 50.59500000000003, 50.24499999999989, 34.61299999999983, 50.24499999999989, 50.24499999999989, 50.24499999999989, 49.89499999999998, 49.89499999999998, 49.89499999999998, 65.87699999999995, 50.24499999999989, 50.24499999999989, 65.87699999999995, 50.24499999999989, 50.24499999999989, 49.89499999999998, 50.24499999999989, 49.89499999999998, 49.89499999999998, 49.89499999999998, 50.24499999999989, 65.52299999999991, 49.89499999999998, 34.266999999999825, 65.52299999999991, 34.266999999999825, 65.52299999999991, 49.89499999999998, 49.89499999999998, 49.89499999999998, 49.89499999999998, 65.52299999999991, 34.266999999999825, 34.266999999999825, 33.92100000000005, 49.544999999999845, 65.52299999999991, 49.544999999999845, 33.92100000000005, 49.89499999999998, 49.89499999999998, 49.89499999999998, 49.89499999999998, 65.52299999999991, 49.89499999999998, 49.89499999999998, 49.89499999999998, 49.544999999999845, 49.89499999999998, 65.16899999999987, 49.544999999999845, 34.266999999999825, 49.544999999999845, 65.16899999999987, 49.544999999999845, 49.544999999999845, 49.544999999999845, 49.544999999999845, 49.544999999999845, 49.544999999999845, 65.16899999999987, 49.544999999999845, 49.544999999999845, 49.194999999999936, 49.544999999999845, 49.194999999999936, 48.84500000000003, 49.194999999999936, 49.194999999999936, 49.194999999999936, 49.544999999999845, 49.544999999999845, 49.544999999999845, 65.16899999999987, 49.194999999999936, 49.544999999999845, 49.544999999999845, 49.194999999999936, 49.194999999999936, 49.194999999999936, 49.194999999999936, 49.194999999999936, 49.194999999999936, 33.575000000000045, 49.194999999999936, 49.194999999999936, 49.194999999999936, 49.194999999999936, 49.194999999999936, 49.194999999999936, 49.194999999999936, 49.194999999999936], \"power_mean\": 52.40054404145071, \"energy_millijoules\": 10517.240752274649, \"energy_joules\": 10.517240752274649, \"coremark_score\": 1494.790655, \"coremarks_per_mhz\": 3.707318092757937, \"ulpmark_cm_score\": 28.52459186456453}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1283.792, 1311.19, 1310.855, 1311.19], \"power_mean\": 1304.25675, \"energy_millijoules\": 6521.2837500000005, \"energy_joules\": 6.52128375}}, \"499200\": {\"active\": {\"elapsed_sec\": 161.993727542, \"elapsed_ns\": 161993727542, \"power_samples\": [21.8599999999999, 64.81499999999983, 64.46100000000001, 64.46100000000001, 48.84500000000003, 64.46100000000001, 48.84500000000003, 64.46100000000001, 64.46100000000001, 48.84500000000003, 64.46100000000001, 48.84500000000003, 48.84500000000003, 64.46100000000001, 48.84500000000003, 64.46100000000001, 64.46100000000001, 64.46100000000001, 33.22900000000004, 64.10699999999997, 64.46100000000001, 64.10699999999997, 48.49499999999989, 32.537000000000035, 90.34500000000003, 48.49499999999989, 63.75299999999993, 48.49499999999989, 75.45899999999983, 48.49499999999989, 48.49499999999989, 64.10699999999997, 48.49499999999989, 64.10699999999997, 64.10699999999997, 64.10699999999997, 64.10699999999997, 48.49499999999989, 64.10699999999997, 48.49499999999989, 64.10699999999997, 48.49499999999989, 64.10699999999997, 32.88300000000004, 64.10699999999997, 64.10699999999997, 48.49499999999989, 64.10699999999997, 48.49499999999989, 48.14499999999998, 63.75299999999993, 48.49499999999989, 63.75299999999993, 63.75299999999993, 48.14499999999998, 63.75299999999993, 48.14499999999998, 63.044999999999845, 48.14499999999998, 48.14499999999998, 63.75299999999993, 48.14499999999998, 63.75299999999993, 48.14499999999998, 48.14499999999998, 63.75299999999993, 63.75299999999993, 48.14499999999998, 63.75299999999993, 48.14499999999998, 63.75299999999993, 48.14499999999998, 47.794999999999845, 63.75299999999993, 48.14499999999998, 47.794999999999845, 63.39899999999989, 48.14499999999998, 63.75299999999993, 47.794999999999845, 63.39899999999989, 47.794999999999845, 63.39899999999989, 32.19100000000003, 47.794999999999845, 47.444999999999936, 63.044999999999845, 47.794999999999845, 63.044999999999845, 47.794999999999845, 63.39899999999989, 47.794999999999845, 63.39899999999989, 47.794999999999845, 63.39899999999989, 47.794999999999845, 47.794999999999845, 63.39899999999989, 47.444999999999936, 63.39899999999989, 47.794999999999845, 47.794999999999845, 63.39899999999989, 47.794999999999845, 47.794999999999845, 63.39899999999989, 63.39899999999989, 47.444999999999936, 63.044999999999845, 63.044999999999845, 47.444999999999936, 63.044999999999845, 47.444999999999936, 31.845000000000027, 62.69100000000003, 47.09500000000003, 47.444999999999936, 63.044999999999845, 47.09500000000003, 47.444999999999936, 63.044999999999845, 47.444999999999936, 47.444999999999936, 63.044999999999845, 47.444999999999936, 47.444999999999936, 63.044999999999845, 47.444999999999936, 63.044999999999845, 47.444999999999936, 63.044999999999845, 47.444999999999936, 47.09500000000003, 63.044999999999845, 47.444999999999936, 63.044999999999845, 47.444999999999936, 63.044999999999845, 47.444999999999936, 63.044999999999845, 47.444999999999936, 47.444999999999936, 62.69100000000003, 47.444999999999936, 62.33699999999999, 46.74499999999989, 62.33699999999999, 47.09500000000003, 62.33699999999999, 47.09500000000003, 47.09500000000003, 62.69100000000003, 62.69100000000003, 47.09500000000003, 47.09500000000003, 47.09500000000003], \"power_mean\": 54.92063461538455, \"energy_millijoules\": 8896.798320318338, \"energy_joules\": 8.896798320318338, \"coremark_score\": 1852.023335, \"coremarks_per_mhz\": 3.7099826422275646, \"ulpmark_cm_score\": 33.71999557580908}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1280.84, 1308.175, 1307.84, 1308.175], \"power_mean\": 1301.2575, \"energy_millijoules\": 6506.287499999999, \"energy_joules\": 6.506287499999999}}, \"595200\": {\"active\": {\"elapsed_sec\": 135.853872604, \"elapsed_ns\": 135853872604, \"power_samples\": [-11.3900000000001, 62.69100000000003, 62.69100000000003, 47.09500000000003, 62.33699999999999, 62.69100000000003, 47.09500000000003, 62.69100000000003, 74.38799999999992, 46.74499999999989, 61.98299999999995, 46.74499999999989, 61.98299999999995, 46.39499999999998, 61.98299999999995, 62.33699999999999, 46.74499999999989, 61.98299999999995, 46.74499999999989, 62.33699999999999, 61.98299999999995, 61.98299999999995, 46.39499999999998, 61.98299999999995, 62.33699999999999, 61.98299999999995, 46.39499999999998, 62.33699999999999, 62.33699999999999, 62.33699999999999, 61.98299999999995, 46.39499999999998, 61.98299999999995, 46.39499999999998, 46.74499999999989, 61.98299999999995, 46.39499999999998, 61.98299999999995, 61.98299999999995, 61.98299999999995, 46.39499999999998, 61.98299999999995, 61.98299999999995, 61.628999999999905, 46.39499999999998, 61.98299999999995, 46.39499999999998, 61.98299999999995, 61.98299999999995, 46.39499999999998, 61.98299999999995, 61.98299999999995, 61.98299999999995, 46.39499999999998, 61.628999999999905, 61.98299999999995, 61.98299999999995, 46.39499999999998, 61.98299999999995, 61.628999999999905, 46.39499999999998, 61.98299999999995, 61.628999999999905, 46.044999999999845, 61.628999999999905, 46.044999999999845, 61.98299999999995, 61.628999999999905, 46.044999999999845, 61.628999999999905, 61.274999999999864, 45.694999999999936, 61.274999999999864, 61.274999999999864, 45.694999999999936, 61.628999999999905, 61.628999999999905, 45.694999999999936, 46.044999999999845, 73.31700000000001, 46.044999999999845, 61.628999999999905, 61.628999999999905, 61.628999999999905, 46.044999999999845, 61.628999999999905, 61.628999999999905, 61.628999999999905, 46.044999999999845, 61.274999999999864, 61.274999999999864, 46.044999999999845, 46.044999999999845, 61.274999999999864, 61.274999999999864, 61.274999999999864, 45.694999999999936, 61.274999999999864, 61.274999999999864, 45.694999999999936, 60.92100000000005, 45.34500000000003, 61.274999999999864, 61.274999999999864, 45.694999999999936, 61.274999999999864, 61.274999999999864, 45.694999999999936, 61.274999999999864, 61.274999999999864, 45.694999999999936, 61.274999999999864, 61.274999999999864, 61.274999999999864, 45.694999999999936, 61.274999999999864, 61.274999999999864, 45.694999999999936, 72.96000000000004, 45.694999999999936, 61.274999999999864, 45.694999999999936, 61.274999999999864, 60.92100000000005, 61.274999999999864, 45.694999999999936, 61.274999999999864, 60.92100000000005, 45.694999999999936, 60.92100000000005, 44.99499999999989], \"power_mean\": 56.07219847328237, \"energy_millijoules\": 7617.625308015507, \"energy_joules\": 7.617625308015507, \"coremark_score\": 2208.383022, \"coremarks_per_mhz\": 3.7103209374999997, \"ulpmark_cm_score\": 39.382351831394296}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1278.872, 1306.165, 1306.5, 1294.8], \"power_mean\": 1296.5842499999999, \"energy_millijoules\": 6482.921249999999, \"energy_joules\": 6.4829212499999995}}, \"691200\": {\"active\": {\"elapsed_sec\": 116.980212091, \"elapsed_ns\": 116980212091, \"power_samples\": [18.429999999999836, 60.92100000000005, 60.92100000000005, 60.92100000000005, 60.92100000000005, 60.92100000000005, 60.92100000000005, 60.92100000000005, 45.34500000000003, 162.16499999999996, 72.60299999999984, 60.92100000000005, 60.92100000000005, 60.92100000000005, 60.92100000000005, 45.34500000000003, 60.92100000000005, 60.56700000000001, 60.92100000000005, 60.92100000000005, 60.92100000000005, 60.92100000000005, 60.212999999999965, 60.212999999999965, 60.212999999999965, 60.56700000000001, 44.64499999999998, 60.56700000000001, 60.56700000000001, 60.56700000000001, 60.56700000000001, 44.99499999999989, 60.56700000000001, 60.56700000000001, 60.56700000000001, 44.99499999999989, 72.24599999999987, 60.56700000000001, 60.56700000000001, 60.56700000000001, 60.56700000000001, 44.99499999999989, 60.56700000000001, 60.56700000000001, 60.56700000000001, 60.212999999999965, 44.99499999999989, 60.56700000000001, 60.212999999999965, 60.212999999999965, 44.99499999999989, 60.212999999999965, 60.212999999999965, 44.64499999999998, 71.8889999999999, 60.212999999999965, 59.858999999999924, 44.64499999999998, 60.212999999999965, 60.212999999999965, 60.212999999999965, 60.212999999999965, 44.64499999999998, 60.212999999999965, 60.212999999999965, 44.64499999999998, 60.212999999999965, 60.212999999999965, 60.212999999999965, 60.212999999999965, 60.212999999999965, 60.212999999999965, 44.64499999999998, 60.212999999999965, 60.212999999999965, 60.212999999999965, 60.212999999999965, 60.212999999999965, 44.64499999999998, 60.212999999999965, 60.212999999999965, 59.858999999999924, 44.294999999999845, 59.50499999999988, 59.858999999999924, 44.294999999999845, 71.53199999999993, 44.294999999999845, 59.858999999999924, 59.858999999999924, 44.64499999999998, 60.212999999999965, 59.858999999999924, 59.858999999999924, 44.294999999999845, 59.858999999999924, 59.858999999999924, 59.858999999999924, 59.858999999999924, 44.294999999999845, 59.858999999999924, 59.858999999999924, 59.858999999999924, 44.294999999999845, 59.858999999999924, 59.858999999999924, 44.294999999999845, 59.858999999999924, 59.858999999999924, 59.858999999999924, 43.944999999999936, 59.858999999999924, 59.50499999999988], \"power_mean\": 58.07470796460173, \"energy_millijoules\": 6793.591654821997, \"energy_joules\": 6.793591654821997, \"coremark_score\": 2564.672491, \"coremarks_per_mhz\": 3.7104636733217586, \"ulpmark_cm_score\": 44.1592629116977}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1293.14, 1293.14, 1304.825, 1293.14], \"power_mean\": 1296.0612500000002, \"energy_millijoules\": 6480.3062500000015, \"energy_joules\": 6.480306250000002}}, \"806400\": {\"active\": {\"elapsed_sec\": 100.288102618, \"elapsed_ns\": 100288102618, \"power_samples\": [29.076999999999998, 71.53199999999993, 59.50499999999988, 71.53199999999993, 59.858999999999924, 71.53199999999993, 59.50499999999988, 71.17499999999995, 71.17499999999995, 59.50499999999988, 59.50499999999988, 71.17499999999995, 71.17499999999995, 59.50499999999988, 71.17499999999995, 71.17499999999995, 59.50499999999988, 71.17499999999995, 59.50499999999988, 71.17499999999995, 70.81799999999998, 59.50499999999988, 59.15099999999984, 59.15099999999984, 86.01299999999992, 58.797000000000025, 70.46100000000001, 70.81799999999998, 59.50499999999988, 59.50499999999988, 70.81799999999998, 70.81799999999998, 59.50499999999988, 59.50499999999988, 70.81799999999998, 59.50499999999988, 71.17499999999995, 59.50499999999988, 59.15099999999984, 70.81799999999998, 59.15099999999984, 70.81799999999998, 70.81799999999998, 59.15099999999984, 59.15099999999984, 70.81799999999998, 59.15099999999984, 70.81799999999998, 59.15099999999984, 70.81799999999998, 59.15099999999984, 59.15099999999984, 58.797000000000025, 58.797000000000025, 70.46100000000001, 70.46100000000001, 58.797000000000025, 70.46100000000001, 59.15099999999984, 70.81799999999998, 58.797000000000025, 59.15099999999984, 59.15099999999984, 70.81799999999998, 58.797000000000025, 70.81799999999998, 43.59500000000003, 70.46100000000001, 58.797000000000025, 70.81799999999998, 70.81799999999998, 58.797000000000025, 58.797000000000025, 70.46100000000001, 70.46100000000001, 58.797000000000025, 70.46100000000001, 58.797000000000025, 59.15099999999984, 70.46100000000001, 43.24499999999989, 58.797000000000025, 58.797000000000025, 58.442999999999984, 58.442999999999984, 70.46100000000001, 70.10400000000004, 58.442999999999984, 70.46100000000001, 58.797000000000025, 70.46100000000001, 58.797000000000025, 70.46100000000001, 58.797000000000025, 70.46100000000001, 58.797000000000025], \"power_mean\": 63.98612499999995, \"energy_millijoules\": 6417.04707012817, \"energy_joules\": 6.41704707012817, \"coremark_score\": 2991.593622, \"coremarks_per_mhz\": 3.709813519345238, \"ulpmark_cm_score\": 46.75047521414051}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1291.812, 1303.485, 1292.144, 1303.82], \"power_mean\": 1297.8152499999999, \"energy_millijoules\": 6489.076249999999, \"energy_joules\": 6.489076249999999}}, \"902400\": {\"active\": {\"elapsed_sec\": 89.611835175, \"elapsed_ns\": 89611835175, \"power_samples\": [-14.740000000000009, 85.65200000000004, 58.797000000000025, 70.10400000000004, 70.46100000000001, 70.46100000000001, 58.797000000000025, 70.10400000000004, 70.46100000000001, 58.442999999999984, 69.74699999999984, 58.442999999999984, 70.10400000000004, 70.10400000000004, 85.29099999999994, 58.442999999999984, 70.10400000000004, 70.10400000000004, 70.10400000000004, 70.10400000000004, 70.10400000000004, 58.442999999999984, 70.10400000000004, 70.10400000000004, 70.10400000000004, 58.442999999999984, 85.29099999999994, 69.74699999999984, 70.10400000000004, 70.10400000000004, 70.10400000000004, 70.10400000000004, 58.442999999999984, 85.65200000000004, 69.74699999999984, 70.10400000000004, 69.74699999999984, 70.10400000000004, 69.74699999999984, 58.08899999999994, 69.74699999999984, 69.38999999999987, 69.74699999999984, 69.38999999999987, 57.7349999999999, 69.74699999999984, 69.74699999999984, 69.74699999999984, 69.74699999999984, 69.74699999999984, 58.08899999999994, 69.74699999999984, 58.08899999999994, 69.74699999999984, 69.74699999999984, 69.74699999999984, 69.74699999999984, 69.74699999999984, 69.74699999999984, 58.08899999999994, 69.38999999999987, 84.92999999999984, 58.08899999999994, 69.38999999999987, 69.38999999999987, 57.7349999999999, 69.74699999999984, 69.38999999999987, 69.38999999999987, 58.08899999999994, 69.38999999999987, 100.47000000000003, 84.20799999999986, 69.38999999999987, 69.38999999999987, 69.74699999999984, 69.38999999999987, 69.38999999999987, 57.7349999999999, 69.38999999999987, 69.38999999999987, 69.38999999999987, 69.38999999999987, 57.7349999999999, 57.7349999999999, 84.92999999999984], \"power_mean\": 67.85263953488365, \"energy_millijoules\": 6080.399550188682, \"energy_joules\": 6.080399550188682, \"coremark_score\": 3347.99009, \"coremarks_per_mhz\": 3.7100954011524823, \"ulpmark_cm_score\": 49.3388629355271}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1290.816, 1302.815, 1291.148, 1302.48], \"power_mean\": 1296.81475, \"energy_millijoules\": 6484.07375, \"energy_joules\": 6.484073749999999}}, \"998400\": {\"active\": {\"elapsed_sec\": 80.992867833, \"elapsed_ns\": 80992867833, \"power_samples\": [-15.745000000000118, 69.0329999999999, 84.56899999999996, 69.38999999999987, 69.38999999999987, 84.92999999999984, 69.38999999999987, 69.0329999999999, 68.67599999999993, 69.0329999999999, 84.20799999999986, 69.0329999999999, 84.92999999999984, 69.0329999999999, 69.0329999999999, 84.92999999999984, 69.38999999999987, 69.0329999999999, 69.38999999999987, 69.0329999999999, 84.56899999999996, 69.0329999999999, 84.56899999999996, 69.0329999999999, 69.0329999999999, 69.0329999999999, 84.56899999999996, 69.38999999999987, 69.0329999999999, 69.0329999999999, 69.38999999999987, 84.56899999999996, 69.0329999999999, 69.0329999999999, 69.0329999999999, 69.0329999999999, 69.0329999999999, 68.67599999999993, 68.67599999999993, 69.0329999999999, 68.67599999999993, 68.67599999999993, 69.0329999999999, 69.0329999999999, 68.67599999999993, 84.56899999999996, 57.38099999999986, 69.0329999999999, 84.56899999999996, 57.38099999999986, 69.0329999999999, 69.0329999999999, 68.67599999999993, 69.0329999999999, 69.0329999999999, 84.56899999999996, 69.0329999999999, 68.67599999999993, 68.67599999999993, 68.67599999999993, 68.67599999999993, 68.67599999999993, 68.67599999999993, 68.67599999999993, 68.67599999999993, 68.67599999999993, 68.67599999999993, 56.673, 68.67599999999993, 68.31899999999996, 83.84699999999998, 68.31899999999996, 68.67599999999993, 68.67599999999993, 68.67599999999993, 68.67599999999993, 68.67599999999993, 68.67599999999993], \"power_mean\": 69.98208974358965, \"energy_millijoules\": 5668.0501452797025, \"energy_joules\": 5.668050145279702, \"coremark_score\": 3704.252482, \"coremarks_per_mhz\": 3.710188784054487, \"ulpmark_cm_score\": 52.92825439270983}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1290.152, 1290.152, 1301.81, 1290.152], \"power_mean\": 1293.0665, \"energy_millijoules\": 6465.3324999999995, \"energy_joules\": 6.4653325}}, \"1094400\": {\"active\": {\"elapsed_sec\": 73.88801893, \"elapsed_ns\": 73888018930, \"power_samples\": [-0.8790000000001328, 68.67599999999993, 84.20799999999986, 57.027000000000044, 84.20799999999986, 68.31899999999996, 68.67599999999993, 68.67599999999993, 68.67599999999993, 68.67599999999993, 84.20799999999986, 56.673, 67.96199999999999, 68.31899999999996, 83.48599999999988, 67.96199999999999, 68.31899999999996, 83.84699999999998, 68.31899999999996, 68.67599999999993, 83.84699999999998, 57.027000000000044, 83.84699999999998, 68.31899999999996, 68.31899999999996, 68.31899999999996, 68.31899999999996, 68.31899999999996, 68.31899999999996, 83.84699999999998, 68.31899999999996, 68.31899999999996, 68.31899999999996, 83.84699999999998, 68.31899999999996, 68.31899999999996, 83.48599999999988, 68.31899999999996, 83.84699999999998, 67.96199999999999, 56.31899999999996, 83.84699999999998, 83.48599999999988, 67.96199999999999, 67.96199999999999, 67.60500000000002, 67.96199999999999, 83.48599999999988, 68.31899999999996, 68.31899999999996, 68.31899999999996, 83.48599999999988, 67.96199999999999, 83.84699999999998, 67.96199999999999, 67.96199999999999, 67.96199999999999, 83.48599999999988, 67.96199999999999, 83.48599999999988, 67.96199999999999, 67.96199999999999, 67.96199999999999, 83.48599999999988, 83.48599999999988, 56.31899999999996, 83.48599999999988, 67.96199999999999, 67.96199999999999, 67.96199999999999, 67.96199999999999], \"power_mean\": 71.01104225352108, \"energy_millijoules\": 5246.865234267196, \"energy_joules\": 5.2468652342671955, \"coremark_score\": 4060.419035, \"coremarks_per_mhz\": 3.7101782118055553, \"ulpmark_cm_score\": 57.17699742709316}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1273.952, 1289.488, 1301.14, 1289.488], \"power_mean\": 1288.517, \"energy_millijoules\": 6442.585, \"energy_joules\": 6.442585}}, \"1209600\": {\"active\": {\"elapsed_sec\": 66.845546745, \"elapsed_ns\": 66845546745, \"power_samples\": [41.14499999999998, 83.48599999999988, 83.48599999999988, 67.96199999999999, 83.48599999999988, 83.125, 83.48599999999988, 67.96199999999999, 83.48599999999988, 83.125, 83.48599999999988, 67.96199999999999, 99.00999999999999, 67.60500000000002, 83.125, 67.60500000000002, 83.125, 83.125, 83.125, 83.125, 83.125, 67.60500000000002, 83.125, 83.125, 55.96499999999992, 82.7639999999999, 82.7639999999999, 82.7639999999999, 83.125, 82.7639999999999, 67.60500000000002, 83.125, 82.7639999999999, 83.125, 83.125, 67.60500000000002, 67.24800000000005, 83.125, 83.125, 83.125, 67.60500000000002, 82.7639999999999, 82.7639999999999, 83.125, 82.7639999999999, 67.24800000000005, 82.7639999999999, 98.64499999999998, 67.24800000000005, 82.7639999999999, 82.7639999999999, 83.125, 67.24800000000005, 82.7639999999999, 67.24800000000005, 66.89099999999985, 82.04199999999992, 66.89099999999985, 82.40300000000002, 82.40300000000002, 98.27999999999997, 67.24800000000005, 98.27999999999997, 67.24800000000005], \"power_mean\": 78.52603124999996, \"energy_millijoules\": 5249.115492621203, \"energy_joules\": 5.249115492621203, \"coremark_score\": 4488.263192, \"coremarks_per_mhz\": 3.7105350462962967, \"ulpmark_cm_score\": 57.152486056311126}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1257.768, 1288.824, 1288.824, 1300.135], \"power_mean\": 1283.88775, \"energy_millijoules\": 6419.43875, \"energy_joules\": 6.41943875}}, \"1305600\": {\"active\": {\"elapsed_sec\": 61.915130758, \"elapsed_ns\": 61915130758, \"power_samples\": [-1.8959999999999582, 98.27999999999997, 97.91499999999996, 97.91499999999996, 82.7639999999999, 98.27999999999997, 82.40300000000002, 82.40300000000002, 97.91499999999996, 98.27999999999997, 82.40300000000002, 97.91499999999996, 82.40300000000002, 97.91499999999996, 82.40300000000002, 82.40300000000002, 97.91499999999996, 82.40300000000002, 97.91499999999996, 82.40300000000002, 82.7639999999999, 97.91499999999996, 97.91499999999996, 82.40300000000002, 82.40300000000002, 82.40300000000002, 97.91499999999996, 198.74299999999994, 82.40300000000002, 97.91499999999996, 82.40300000000002, 82.40300000000002, 97.91499999999996, 97.91499999999996, 82.40300000000002, 82.40300000000002, 97.91499999999996, 82.40300000000002, 82.04199999999992, 97.91499999999996, 82.04199999999992, 82.40300000000002, 97.91499999999996, 82.40300000000002, 97.91499999999996, 81.68100000000004, 82.04199999999992, 82.04199999999992, 82.04199999999992, 81.68100000000004, 97.91499999999996, 97.91499999999996, 82.40300000000002, 82.40300000000002, 82.40300000000002, 97.54999999999995, 82.40300000000002, 82.40300000000002, 97.91499999999996], \"power_mean\": 89.22557627118643, \"energy_millijoules\": 5524.413221788409, \"energy_joules\": 5.524413221788409, \"coremark_score\": 4845.665552, \"coremarks_per_mhz\": 3.7114472671568635, \"ulpmark_cm_score\": 54.30440989041032}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1272.64, 1288.16, 1299.8, 1288.16], \"power_mean\": 1287.19, \"energy_millijoules\": 6435.950000000001, \"energy_joules\": 6.435950000000001}}, \"1401600\": {\"active\": {\"elapsed_sec\": 57.671754457, \"elapsed_ns\": 57671754457, \"power_samples\": [-2.574000000000069, 82.04199999999992, 82.40300000000002, 97.54999999999995, 97.54999999999995, 82.04199999999992, 82.04199999999992, 97.54999999999995, 97.54999999999995, 81.68100000000004, 81.68100000000004, 97.18499999999995, 97.54999999999995, 81.68100000000004, 97.54999999999995, 82.04199999999992, 97.54999999999995, 97.54999999999995, 82.04199999999992, 97.18499999999995, 97.18499999999995, 66.53399999999988, 97.54999999999995, 97.18499999999995, 81.68100000000004, 97.54999999999995, 81.68100000000004, 97.18499999999995, 97.18499999999995, 81.68100000000004, 97.18499999999995, 97.18499999999995, 81.68100000000004, 97.18499999999995, 81.68100000000004, 97.18499999999995, 81.68100000000004, 97.54999999999995, 81.68100000000004, 81.68100000000004, 96.81999999999994, 81.68100000000004, 96.81999999999994, 97.18499999999995, 96.81999999999994, 81.68100000000004, 97.18499999999995, 81.68100000000004, 97.18499999999995, 97.18499999999995, 81.68100000000004, 81.68100000000004, 97.18499999999995, 81.68100000000004, 97.18499999999995], \"power_mean\": 88.42945454545452, \"energy_millijoules\": 5099.881789311896, \"energy_joules\": 5.099881789311896, \"coremark_score\": 5202.191857, \"coremarks_per_mhz\": 3.71160948701484, \"ulpmark_cm_score\": 58.82489288844431}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1272.312, 1299.13, 1287.828, 1299.465], \"power_mean\": 1289.68375, \"energy_millijoules\": 6448.41875, \"energy_joules\": 6.44841875}}, \"1497600\": {\"active\": {\"elapsed_sec\": 53.976063469, \"elapsed_ns\": 53976063469, \"power_samples\": [-18.75999999999999, 97.18499999999995, 97.18499999999995, 97.18499999999995, 97.18499999999995, 97.18499999999995, 97.18499999999995, 96.81999999999994, 96.45499999999993, 96.81999999999994, 81.31999999999994, 108.44499999999994, 108.077, 81.31999999999994, 108.44499999999994, 96.81999999999994, 96.81999999999994, 96.81999999999994, 96.81999999999994, 96.81999999999994, 96.81999999999994, 96.81999999999994, 81.31999999999994, 108.44499999999994, 96.81999999999994, 96.81999999999994, 96.81999999999994, 96.81999999999994, 108.44499999999994, 81.31999999999994, 96.45499999999993, 96.45499999999993, 108.44499999999994, 96.81999999999994, 96.45499999999993, 81.31999999999994, 96.81999999999994, 108.077, 107.70899999999983, 80.95899999999983, 96.45499999999993, 107.70899999999983, 96.45499999999993, 96.81999999999994, 96.81999999999994, 96.81999999999994, 96.45499999999993, 108.44499999999994, 81.31999999999994, 108.077, 80.95899999999983, 96.45499999999993], \"power_mean\": 94.59436538461532, \"energy_millijoules\": 5105.831469809773, \"energy_joules\": 5.105831469809773, \"coremark_score\": 5558.334723, \"coremarks_per_mhz\": 3.711494873798077, \"ulpmark_cm_score\": 58.75634591033163}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1287.496, 1287.164, 1287.164, 1287.164], \"power_mean\": 1287.247, \"energy_millijoules\": 6436.235000000001, \"energy_joules\": 6.436235000000001}}, \"1612800\": {\"active\": {\"elapsed_sec\": 50.131131231, \"elapsed_ns\": 50131131231, \"power_samples\": [-3.9300000000000637, 96.45499999999993, 96.45499999999993, 96.45499999999993, 108.077, 96.45499999999993, 96.45499999999993, 96.45499999999993, 108.077, 96.08999999999992, 96.08999999999992, 107.70899999999983, 96.08999999999992, 96.08999999999992, 108.077, 96.45499999999993, 107.70899999999983, 96.45499999999993, 96.45499999999993, 108.077, 96.45499999999993, 96.45499999999993, 108.077, 108.077, 96.45499999999993, 96.45499999999993, 107.70899999999983, 96.45499999999993, 96.45499999999993, 108.077, 96.08999999999992, 107.70899999999983, 96.08999999999992, 96.08999999999992, 108.077, 96.45499999999993, 96.08999999999992, 107.70899999999983, 96.08999999999992, 95.72499999999991, 95.72499999999991, 107.3409999999999, 95.72499999999991, 95.72499999999991, 107.70899999999983, 96.08999999999992, 107.70899999999983, 96.08999999999992], \"power_mean\": 98.02416666666659, \"energy_millijoules\": 4914.0623629760785, \"energy_joules\": 4.914062362976079, \"coremark_score\": 5984.798612, \"coremarks_per_mhz\": 3.7108126314484124, \"ulpmark_cm_score\": 61.04928628099716}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1271.328, 1286.832, 1286.832, 1298.46], \"power_mean\": 1285.863, \"energy_millijoules\": 6429.3150000000005, \"energy_joules\": 6.429315000000001}}, \"1708800\": {\"active\": {\"elapsed_sec\": 47.304202065, \"elapsed_ns\": 47304202065, \"power_samples\": [22.848999999999933, 96.08999999999992, 107.70899999999983, 96.08999999999992, 107.70899999999983, 107.70899999999983, 96.08999999999992, 107.70899999999983, 107.3409999999999, 96.08999999999992, 107.70899999999983, 107.3409999999999, 95.72499999999991, 107.70899999999983, 107.3409999999999, 107.3409999999999, 95.72499999999991, 107.3409999999999, 107.3409999999999, 95.3599999999999, 107.3409999999999, 107.3409999999999, 107.3409999999999, 95.72499999999991, 107.3409999999999, 107.3409999999999, 107.3409999999999, 107.3409999999999, 95.72499999999991, 107.3409999999999, 107.3409999999999, 107.3409999999999, 107.3409999999999, 107.3409999999999, 95.72499999999991, 107.3409999999999, 95.72499999999991, 106.97299999999996, 107.3409999999999, 122.82899999999995, 95.3599999999999, 107.3409999999999, 107.3409999999999, 106.97299999999996, 107.3409999999999], \"power_mean\": 102.758911111111, \"energy_millijoules\": 4860.928295179368, \"energy_joules\": 4.860928295179368, \"coremark_score\": 6342.494715, \"coremarks_per_mhz\": 3.711665914676966, \"ulpmark_cm_score\": 61.71660674310152}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1271.0, 1286.5, 1298.125, 1286.5], \"power_mean\": 1285.53125, \"energy_millijoules\": 6427.65625, \"energy_joules\": 6.42765625}}, \"1804800\": {\"active\": {\"elapsed_sec\": 44.791692692, \"elapsed_ns\": 44791692692, \"power_samples\": [65.106, 107.3409999999999, 122.45699999999988, 106.97299999999996, 122.45699999999988, 122.45699999999988, 122.45699999999988, 106.97299999999996, 122.45699999999988, 122.45699999999988, 122.45699999999988, 106.97299999999996, 122.45699999999988, 153.42499999999995, 106.97299999999996, 122.45699999999988, 106.97299999999996, 122.45699999999988, 122.45699999999988, 106.97299999999996, 122.45699999999988, 106.97299999999996, 122.45699999999988, 122.45699999999988, 121.71299999999997, 106.60500000000002, 122.45699999999988, 106.60500000000002, 137.56499999999983, 122.45699999999988, 106.97299999999996, 106.97299999999996, 122.45699999999988, 122.45699999999988, 122.45699999999988, 122.08500000000004, 106.97299999999996, 122.08500000000004, 122.08500000000004, 122.08500000000004, 122.45699999999988, 122.08500000000004, 106.60500000000002], \"power_mean\": 117.07581395348831, \"energy_millijoules\": 5244.023880270413, \"energy_joules\": 5.244023880270413, \"coremark_score\": 6698.073188, \"coremarks_per_mhz\": 3.7112550908687947, \"ulpmark_cm_score\": 57.207977471019866}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1270.344, 1285.504, 1285.836, 1285.836], \"power_mean\": 1281.88, \"energy_millijoules\": 6409.400000000001, \"energy_joules\": 6.409400000000001}}}}, \"4\": {\"freqs\": {\"710400\": {\"active\": {\"elapsed_sec\": 46.437450607, \"elapsed_ns\": 46437450607, \"power_samples\": [-4.947000000000116, 106.60500000000002, 122.45699999999988, 121.71299999999997, 121.71299999999997, 137.18899999999985, 122.08500000000004, 137.18899999999985, 137.56499999999983, 137.56499999999983, 121.71299999999997, 137.56499999999983, 137.94100000000003, 122.08500000000004, 122.08500000000004, 122.08500000000004, 137.18899999999985, 122.08500000000004, 137.56499999999983, 122.08500000000004, 106.60500000000002, 137.56499999999983, 106.60500000000002, 137.18899999999985, 106.60500000000002, 137.56499999999983, 106.23699999999985, 121.71299999999997, 122.08500000000004, 122.08500000000004, 122.08500000000004, 121.71299999999997, 136.81299999999987, 121.3409999999999, 121.71299999999997, 121.3409999999999, 121.3409999999999, 121.71299999999997, 137.18899999999985, 121.71299999999997, 137.18899999999985, 122.08500000000004, 137.18899999999985, 121.3409999999999], \"power_mean\": 122.51254545454539, \"energy_millijoules\": 5689.1702782832945, \"energy_joules\": 5.689170278283294, \"coremark_score\": 6462.174737, \"coremarks_per_mhz\": 9.09652975365991, \"ulpmark_cm_score\": 52.73176672970402}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1285.504, 1297.455, 1297.12, 1297.12], \"power_mean\": 1294.29975, \"energy_millijoules\": 6471.49875, \"energy_joules\": 6.471498749999999}}, \"844800\": {\"active\": {\"elapsed_sec\": 39.032689465, \"elapsed_ns\": 39032689465, \"power_samples\": [21.810999999999922, 152.66499999999996, 153.04499999999985, 152.66499999999996, 136.81299999999987, 164.27199999999993, 164.27199999999993, 164.27199999999993, 152.28499999999985, 151.90499999999997, 163.8889999999999, 152.28499999999985, 163.50599999999986, 151.90499999999997, 163.8889999999999, 152.28499999999985, 152.66499999999996, 178.97399999999993, 152.28499999999985, 152.28499999999985, 151.90499999999997, 163.8889999999999, 152.28499999999985, 194.442, 152.28499999999985, 163.8889999999999, 151.90499999999997, 179.36099999999988, 163.8889999999999, 152.28499999999985, 163.8889999999999, 152.28499999999985, 163.50599999999986, 163.8889999999999, 163.50599999999986, 152.66499999999996, 178.97399999999993], \"power_mean\": 155.75194594594586, \"energy_millijoules\": 6079.41733967757, \"energy_joules\": 6.079417339677571, \"coremark_score\": 7688.759034, \"coremarks_per_mhz\": 9.101277265625, \"ulpmark_cm_score\": 49.34683428328526}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1296.785, 1296.785, 1296.785, 1296.785], \"power_mean\": 1296.785, \"energy_millijoules\": 6483.925, \"energy_joules\": 6.483925}}, \"960000\": {\"active\": {\"elapsed_sec\": 34.369937799, \"elapsed_ns\": 34369937799, \"power_samples\": [137.56499999999983, 194.442, 194.83299999999986, 178.97399999999993, 178.587, 194.83299999999986, 194.83299999999986, 194.83299999999986, 178.97399999999993, 194.442, 194.05099999999993, 194.05099999999993, 205.6489999999999, 179.36099999999988, 179.36099999999988, 205.6489999999999, 194.442, 194.442, 194.05099999999993, 178.587, 178.97399999999993, 194.05099999999993, 178.587, 178.20000000000005, 194.05099999999993, 178.20000000000005, 178.587, 205.25499999999988, 194.05099999999993, 194.05099999999993, 194.05099999999993, 206.0429999999999, 178.97399999999993], \"power_mean\": 188.33439393939386, \"energy_millijoules\": 6473.041405109329, \"energy_joules\": 6.4730414051093295, \"coremark_score\": 8732.099197, \"coremarks_per_mhz\": 9.095936663541666, \"ulpmark_cm_score\": 46.346065353946706}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1296.45, 1295.78, 1311.252, 1284.508], \"power_mean\": 1296.9975, \"energy_millijoules\": 6484.987499999999, \"energy_joules\": 6.484987499999999}}, \"1075200\": {\"active\": {\"elapsed_sec\": 30.691301187, \"elapsed_ns\": 30691301187, \"power_samples\": [63.677999999999884, 205.6489999999999, 221.11299999999983, 221.11299999999983, 205.6489999999999, 220.71499999999992, 205.6489999999999, 221.11299999999983, 205.25499999999988, 205.6489999999999, 236.577, 220.71499999999992, 204.86099999999988, 220.317, 204.86099999999988, 220.317, 205.25499999999988, 236.17499999999995, 205.25499999999988, 236.17499999999995, 204.86099999999988, 220.71499999999992, 205.25499999999988, 205.25499999999988, 220.317, 220.317, 236.17499999999995, 236.17499999999995, 205.25499999999988], \"power_mean\": 211.0488275862068, \"energy_millijoules\": 6477.363132611507, \"energy_joules\": 6.477363132611507, \"coremark_score\": 9778.675967, \"coremarks_per_mhz\": 9.094750713355653, \"ulpmark_cm_score\": 46.31514303862221}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1284.508, 1311.591, 1296.115, 1296.115], \"power_mean\": 1297.08225, \"energy_millijoules\": 6485.411249999999, \"energy_joules\": 6.485411249999999}}, \"1209600\": {\"active\": {\"elapsed_sec\": 27.278146031, \"elapsed_ns\": 27278146031, \"power_samples\": [9.168999999999869, 235.7729999999999, 247.365, 247.76999999999998, 247.365, 235.37099999999987, 262.8209999999999, 246.96000000000004, 246.96000000000004, 235.7729999999999, 262.8209999999999, 235.7729999999999, 246.96000000000004, 246.96000000000004, 247.365, 235.7729999999999, 246.96000000000004, 246.96000000000004, 247.365, 246.96000000000004, 247.365, 247.365, 247.365, 246.96000000000004, 235.7729999999999, 246.96000000000004], \"power_mean\": 236.5773846153846, \"energy_millijoules\": 6453.392445170513, \"energy_joules\": 6.453392445170514, \"coremark_score\": 11003.521127, \"coremarks_per_mhz\": 9.096826328538361, \"ulpmark_cm_score\": 46.48717748825413}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1295.78, 1311.252, 1295.78, 1295.78], \"power_mean\": 1299.648, \"energy_millijoules\": 6498.24, \"energy_joules\": 6.49824}}, \"1324800\": {\"active\": {\"elapsed_sec\": 24.896969001, \"elapsed_ns\": 24896969001, \"power_samples\": [262.8209999999999, 277.451, 277.038, 277.86400000000003, 289.453, 277.86400000000003, 277.86400000000003, 289.453, 262.41200000000003, 289.453, 277.86400000000003, 289.453, 277.451, 277.86400000000003, 277.451, 289.453, 277.86400000000003, 277.451, 277.86400000000003, 277.86400000000003, 289.453, 277.86400000000003, 289.453, 289.453], \"power_mean\": 280.353125, \"energy_millijoules\": 6979.9430624584775, \"energy_joules\": 6.979943062458477, \"coremark_score\": 12055.93956, \"coremarks_per_mhz\": 9.100195923913045, \"ulpmark_cm_score\": 42.98029329401634}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1295.445, 1295.445, 1295.445, 1283.844], \"power_mean\": 1292.54475, \"energy_millijoules\": 6462.72375, \"energy_joules\": 6.46272375}}, \"1440000\": {\"active\": {\"elapsed_sec\": 22.902912127, \"elapsed_ns\": 22902912127, \"power_samples\": [263.6389999999999, 331.09199999999987, 304.4849999999999, 420.345, 331.519, 304.0649999999998, 319.933, 319.933, 304.4849999999999, 319.509, 319.933, 319.933, 319.933, 304.0649999999998, 304.4849999999999, 319.509, 319.509, 331.519, 319.509, 331.09199999999987, 319.509, 319.509], \"power_mean\": 320.3413636363636, \"energy_millijoules\": 7336.750102006989, \"energy_joules\": 7.33675010200699, \"coremark_score\": 13106.159895, \"coremarks_per_mhz\": 9.101499927083333, \"ulpmark_cm_score\": 40.8900392992715}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1283.512, 1283.512, 1310.235, 1294.44], \"power_mean\": 1292.92475, \"energy_millijoules\": 6464.62375, \"energy_joules\": 6.4646237499999994}}, \"1555200\": {\"active\": {\"elapsed_sec\": 21.212307388, \"elapsed_ns\": 21212307388, \"power_samples\": [305.32500000000005, 346.105, 361.98, 361.54499999999985, 361.54499999999985, 361.98, 331.09199999999987, 361.54499999999985, 361.54499999999985, 346.105, 361.54499999999985, 361.98, 346.105, 373.125, 346.105, 361.54499999999985, 361.54499999999985, 346.105, 346.53599999999983, 373.125], \"power_mean\": 353.8241499999999, \"energy_millijoules\": 7505.426631097818, \"energy_joules\": 7.505426631097818, \"coremark_score\": 14151.610925, \"coremarks_per_mhz\": 9.099544061856996, \"ulpmark_cm_score\": 39.97107889336852}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1283.512, 1283.18, 1309.896, 1294.44], \"power_mean\": 1292.757, \"energy_millijoules\": 6463.785, \"energy_joules\": 6.463785}}, \"1670400\": {\"active\": {\"elapsed_sec\": 19.755480565, \"elapsed_ns\": 19755480565, \"power_samples\": [374.001, 388.12300000000005, 418.54499999999985, 403.11299999999983, 388.5649999999998, 403.55899999999997, 418.9949999999999, 388.12300000000005, 403.55899999999997, 403.55899999999997, 418.9949999999999, 403.55899999999997, 404.0049999999999, 388.12300000000005, 418.54499999999985, 403.55899999999997, 403.55899999999997, 387.68100000000004, 403.55899999999997], \"power_mean\": 401.1435263157894, \"energy_millijoules\": 7924.783137907143, \"energy_joules\": 7.924783137907143, \"coremark_score\": 15196.028771, \"coremarks_per_mhz\": 9.09723944624042, \"ulpmark_cm_score\": 37.85592549088063}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1294.775, 1310.235, 1294.44, 1309.896], \"power_mean\": 1302.3365, \"energy_millijoules\": 6511.682499999999, \"energy_joules\": 6.511682499999999}}, \"1766400\": {\"active\": {\"elapsed_sec\": 18.684579368, \"elapsed_ns\": 18684579368, \"power_samples\": [-7.6590000000001055, 430.1189999999999, 430.1189999999999, 445.55099999999993, 445.55099999999993, 460.52199999999993, 445.0939999999998, 430.1189999999999, 460.98299999999995, 460.98299999999995, 445.55099999999993, 430.1189999999999, 445.0939999999998, 444.63699999999994, 430.1189999999999, 430.1189999999999, 460.0609999999999, 445.0939999999998], \"power_mean\": 418.45422222222214, \"energy_millijoules\": 7818.64112698582, \"energy_joules\": 7.81864112698582, \"coremark_score\": 16066.838046, \"coremarks_per_mhz\": 9.095809582201086, \"ulpmark_cm_score\": 38.369838841248054}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1294.44, 1294.105, 1309.896, 1309.896], \"power_mean\": 1302.0842499999999, \"energy_millijoules\": 6510.421249999999, \"energy_joules\": 6.510421249999999}}, \"1881600\": {\"active\": {\"elapsed_sec\": 17.541419941, \"elapsed_ns\": 17541419941, \"power_samples\": [49.94699999999989, 502.94899999999984, 502.94899999999984, 487.0529999999999, 514.0449999999998, 487.0529999999999, 487.0529999999999, 487.0529999999999, 502.47699999999986, 502.0049999999999, 487.0529999999999, 487.0529999999999, 514.0449999999998, 514.0449999999998, 502.47699999999986, 487.0529999999999], \"power_mean\": 469.64437499999985, \"energy_millijoules\": 8238.22920480348, \"energy_joules\": 8.23822920480348, \"coremark_score\": 17116.448907, \"coremarks_per_mhz\": 9.096752182716838, \"ulpmark_cm_score\": 36.41559278601746}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1294.105, 1294.105, 1309.557, 1309.557], \"power_mean\": 1301.8310000000001, \"energy_millijoules\": 6509.155000000001, \"energy_joules\": 6.509155000000001}}, \"1996800\": {\"active\": {\"elapsed_sec\": 16.514264004, \"elapsed_ns\": 16514264004, \"power_samples\": [177.42599999999993, 555.9749999999999, 586.8149999999998, 571.395, 571.395, 570.905, 586.8149999999998, 571.395, 570.905, 586.3209999999999, 586.3209999999999, 585.827, 585.827, 586.3209999999999, 570.905], \"power_mean\": 550.9698666666666, \"energy_millijoules\": 9098.861836382011, \"energy_joules\": 9.098861836382012, \"coremark_score\": 18181.818182, \"coremarks_per_mhz\": 9.10547785556891, \"ulpmark_cm_score\": 32.971156766052104}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1282.516, 1294.105, 1324.666, 1293.77], \"power_mean\": 1298.76425, \"energy_millijoules\": 6493.82125, \"energy_joules\": 6.49382125}}, \"2112000\": {\"active\": {\"elapsed_sec\": 15.637926973, \"elapsed_ns\": 15637926973, \"power_samples\": [362.41499999999996, 686.5249999999999, 670.5929999999998, 671.1089999999999, 686.0049999999999, 686.0049999999999, 685.4849999999999, 685.4849999999999, 685.4849999999999, 712.4489999999998, 684.9649999999999, 685.4849999999999, 685.4849999999999, 697.5639999999999, 669.5609999999999], \"power_mean\": 663.6410666666666, \"energy_millijoules\": 10377.970536817156, \"energy_joules\": 10.377970536817156, \"coremark_score\": 19201.228879, \"coremarks_per_mhz\": 9.091490946496211, \"ulpmark_cm_score\": 28.907385980304362}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1293.435, 1308.54, 1309.218, 1309.218], \"power_mean\": 1305.10275, \"energy_millijoules\": 6525.51375, \"energy_joules\": 6.52551375}}, \"2227200\": {\"active\": {\"elapsed_sec\": 14.81814838, \"elapsed_ns\": 14818148380, \"power_samples\": [601.3619999999999, 781.24, 781.24, 796.644, 796.095, 780.6949999999999, 796.095, 796.095, 780.6949999999999, 796.095, 796.644, 796.095, 811.4950000000001, 780.6949999999999], \"power_mean\": 777.9417857142857, \"energy_millijoules\": 11527.65681171645, \"energy_joules\": 11.527656811716449, \"coremark_score\": 20263.424519, \"coremarks_per_mhz\": 9.098161152568247, \"ulpmark_cm_score\": 26.024369470739863}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1293.435, 1308.54, 1293.435, 1308.54], \"power_mean\": 1300.9875, \"energy_millijoules\": 6504.9375, \"energy_joules\": 6.5049375}}, \"2342400\": {\"active\": {\"elapsed_sec\": 14.097931401, \"elapsed_ns\": 14097931401, \"power_samples\": [33.444999999999936, 922.5629999999999, 921.981, 936.787, 936.787, 936.2009999999998, 951.5849999999998, 963.7160000000001, 952.7650000000001, 952.175, 952.175, 936.787, 952.175], \"power_mean\": 873.0109230769231, \"energy_millijoules\": 12307.64810586215, \"energy_joules\": 12.30764810586215, \"coremark_score\": 21300.766828, \"coremarks_per_mhz\": 9.09356507342896, \"ulpmark_cm_score\": 24.375087540657713}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1293.1, 1308.54, 1308.54, 1293.1], \"power_mean\": 1300.82, \"energy_millijoules\": 6504.099999999999, \"energy_joules\": 6.504099999999999}}, \"2419200\": {\"active\": {\"elapsed_sec\": 13.641892234, \"elapsed_ns\": 13641892234, \"power_samples\": [330.23799999999983, 979.104, 979.104, 994.492, 993.8909999999998, 994.492, 978.5069999999998, 1005.4289999999999, 994.492, 993.2899999999997, 993.8909999999998, 992.6890000000001, 1004.2209999999998], \"power_mean\": 941.0646153846153, \"energy_millijoules\": 12837.902068307581, \"energy_joules\": 12.837902068307582, \"coremark_score\": 22011.886419, \"coremarks_per_mhz\": 9.09882871155754, \"ulpmark_cm_score\": 23.368304135969233}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1292.765, 1308.201, 1308.201, 1308.201], \"power_mean\": 1304.342, \"energy_millijoules\": 6521.710000000001, \"energy_joules\": 6.521710000000001}}}}, \"7\": {\"freqs\": {\"844800\": {\"active\": {\"elapsed_sec\": 38.253093267, \"elapsed_ns\": 38253093267, \"power_samples\": [133.42899999999986, 232.55700000000002, 217.13300000000004, 217.13300000000004, 217.13300000000004, 232.55700000000002, 217.13300000000004, 232.55700000000002, 217.13300000000004, 232.55700000000002, 217.13300000000004, 217.13300000000004, 232.55700000000002, 217.53099999999995, 217.13300000000004, 232.55700000000002, 217.13300000000004, 217.13300000000004, 217.13300000000004, 201.31499999999983, 232.55700000000002, 217.13300000000004, 201.70899999999983, 232.15499999999997, 217.13300000000004, 232.55700000000002, 217.13300000000004, 232.95899999999983, 201.70899999999983, 232.55700000000002, 217.13300000000004, 232.55700000000002, 217.53099999999995, 201.70899999999983, 232.55700000000002, 217.13300000000004], \"power_mean\": 218.67505555555556, \"energy_millijoules\": 8364.997295333073, \"energy_joules\": 8.364997295333072, \"coremark_score\": 7845.393446, \"coremarks_per_mhz\": 9.286687317708333, \"ulpmark_cm_score\": 35.86372946795493}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1292.765, 1308.201, 1308.201, 1292.765], \"power_mean\": 1300.4830000000002, \"energy_millijoules\": 6502.415000000001, \"energy_joules\": 6.502415000000001}}, \"960000\": {\"active\": {\"elapsed_sec\": 33.672324414, \"elapsed_ns\": 33672324414, \"power_samples\": [17.658999999999878, 243.72000000000003, 244.125, 259.549, 243.72000000000003, 243.72000000000003, 243.72000000000003, 259.1399999999999, 258.731, 243.72000000000003, 259.1399999999999, 259.1399999999999, 259.549, 259.1399999999999, 243.72000000000003, 259.549, 232.15499999999997, 259.1399999999999, 259.549, 259.1399999999999, 259.1399999999999, 259.1399999999999, 259.1399999999999, 243.72000000000003, 243.72000000000003, 258.731, 243.72000000000003, 274.55999999999995, 243.72000000000003, 258.731, 274.14699999999993, 243.72000000000003], \"power_mean\": 245.94421874999995, \"energy_millijoules\": 8281.51352149778, \"energy_joules\": 8.28151352149778, \"coremark_score\": 8912.920764, \"coremarks_per_mhz\": 9.2842924625, \"ulpmark_cm_score\": 36.22526235346199}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1292.765, 1292.765, 1308.201, 1292.765], \"power_mean\": 1296.624, \"energy_millijoules\": 6483.12, \"energy_joules\": 6.4831199999999995}}, \"1075200\": {\"active\": {\"elapsed_sec\": 30.06117728, \"elapsed_ns\": 30061177280, \"power_samples\": [202.49699999999984, 286.125, 258.731, 274.55999999999995, 285.70899999999983, 258.731, 285.70899999999983, 286.125, 274.14699999999993, 274.14699999999993, 274.14699999999993, 274.14699999999993, 285.70899999999983, 274.55999999999995, 285.70899999999983, 274.14699999999993, 274.14699999999993, 274.14699999999993, 274.14699999999993, 301.125, 258.731, 274.14699999999993, 285.70899999999983, 273.3209999999999, 273.7339999999999, 285.2929999999999, 285.2929999999999, 258.3219999999999, 285.2929999999999], \"power_mean\": 274.424448275862, \"energy_millijoules\": 8249.521989586878, \"energy_joules\": 8.249521989586878, \"coremark_score\": 9984.357839, \"coremarks_per_mhz\": 9.286047097284227, \"ulpmark_cm_score\": 36.36574341867092}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1292.765, 1307.862, 1292.095, 1307.523], \"power_mean\": 1300.06125, \"energy_millijoules\": 6500.30625, \"energy_joules\": 6.5003062499999995}}, \"1190400\": {\"active\": {\"elapsed_sec\": 33.35582254, \"elapsed_ns\": 33355822540, \"power_samples\": [117.62099999999987, 258.731, 274.14699999999993, 274.14699999999993, 273.7339999999999, 274.14699999999993, 274.14699999999993, 258.731, 285.2929999999999, 274.14699999999993, 273.7339999999999, 274.14699999999993, 274.14699999999993, 274.14699999999993, 258.731, 285.2929999999999, 273.3209999999999, 273.7339999999999, 284.87699999999995, 273.7339999999999, 284.87699999999995, 273.3209999999999, 284.87699999999995, 285.70899999999983, 273.3209999999999, 285.2929999999999, 273.3209999999999, 273.7339999999999, 285.70899999999983, 285.2929999999999, 285.2929999999999, 258.3219999999999], \"power_mean\": 270.6181249999999, \"energy_millijoules\": 9026.690153607535, \"energy_joules\": 9.026690153607534, \"coremark_score\": 8997.660608, \"coremarks_per_mhz\": 7.558518655913978, \"ulpmark_cm_score\": 33.234773199798425}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1280.856, 1323.294, 1292.43, 1292.43], \"power_mean\": 1297.2525, \"energy_millijoules\": 6486.262500000001, \"energy_joules\": 6.4862625000000005}}, \"1305600\": {\"active\": {\"elapsed_sec\": 31.641599571, \"elapsed_ns\": 31641599571, \"power_samples\": [47.822999999999865, 258.731, 285.2929999999999, 285.2929999999999, 273.7339999999999, 257.913, 284.87699999999995, 273.7339999999999, 273.3209999999999, 284.87699999999995, 273.3209999999999, 273.7339999999999, 284.87699999999995, 273.7339999999999, 284.87699999999995, 273.3209999999999, 285.2929999999999, 284.87699999999995, 284.87699999999995, 273.7339999999999, 300.28499999999985, 284.461, 285.2929999999999, 284.87699999999995, 273.7339999999999, 300.28499999999985, 273.3209999999999, 284.87699999999995, 284.461, 273.3209999999999], \"power_mean\": 272.1051999999999, \"energy_millijoules\": 8609.843779586867, \"energy_joules\": 8.609843779586866, \"coremark_score\": 9485.26622, \"coremarks_per_mhz\": 7.265062974877451, \"ulpmark_cm_score\": 34.84383778382506}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1280.524, 1291.76, 1307.184, 1307.523], \"power_mean\": 1296.74775, \"energy_millijoules\": 6483.73875, \"energy_joules\": 6.4837387500000006}}, \"1420800\": {\"active\": {\"elapsed_sec\": 27.486152906, \"elapsed_ns\": 27486152906, \"power_samples\": [274.14699999999993, 326.8219999999999, 342.2259999999999, 299.865, 315.693, 327.249, 327.249, 327.249, 326.8219999999999, 327.249, 315.269, 326.8219999999999, 315.269, 326.8219999999999, 326.8219999999999, 326.8219999999999, 315.269, 327.249, 342.2259999999999, 326.395, 315.269, 341.79499999999985, 315.269, 342.2259999999999, 315.269, 326.395], \"power_mean\": 323.0676538461538, \"energy_millijoules\": 8879.886932598063, \"energy_joules\": 8.879886932598064, \"coremark_score\": 10920.209668, \"coremarks_per_mhz\": 7.685958381193694, \"ulpmark_cm_score\": 33.784213951947976}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1291.76, 1280.192, 1306.845, 1291.425], \"power_mean\": 1292.5555, \"energy_millijoules\": 6462.7775, \"energy_joules\": 6.4627775000000005}}, \"1555200\": {\"active\": {\"elapsed_sec\": 21.065180877, \"elapsed_ns\": 21065180877, \"power_samples\": [317.3889999999999, 414.94499999999994, 426.4949999999999, 426.4949999999999, 441.4379999999999, 426.0419999999999, 426.0419999999999, 441.4379999999999, 426.0419999999999, 426.0419999999999, 441.4379999999999, 414.4949999999999, 441.895, 440.981, 426.0419999999999, 414.4949999999999, 426.0419999999999, 414.4949999999999, 414.4949999999999, 425.58899999999994], \"power_mean\": 421.6167499999999, \"energy_millijoules\": 8881.433099522888, \"energy_joules\": 8.881433099522889, \"coremark_score\": 14251.104461, \"coremarks_per_mhz\": 9.163518814943416, \"ulpmark_cm_score\": 33.77833246484917}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1291.425, 1291.09, 1306.845, 1306.845], \"power_mean\": 1299.05125, \"energy_millijoules\": 6495.25625, \"energy_joules\": 6.495256250000001}}, \"1670400\": {\"active\": {\"elapsed_sec\": 27.687756708, \"elapsed_ns\": 27687756708, \"power_samples\": [258.731, 368.7449999999999, 356.76, 384.145, 357.19499999999994, 368.307, 368.307, 368.307, 356.76, 368.307, 356.76, 368.307, 368.307, 356.76, 368.307, 356.76, 368.307, 356.76, 368.307, 368.307, 356.76, 368.307, 356.76, 368.307, 368.307, 367.43100000000004], \"power_mean\": 360.70453846153845, \"energy_millijoules\": 9987.099504394504, \"energy_joules\": 9.987099504394504, \"coremark_score\": 10840.108401, \"coremarks_per_mhz\": 6.489528496767241, \"ulpmark_cm_score\": 30.038751478143837}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1291.425, 1306.167, 1290.755, 1306.167], \"power_mean\": 1298.6285, \"energy_millijoules\": 6493.1425, \"energy_joules\": 6.4931425}}, \"1785600\": {\"active\": {\"elapsed_sec\": 21.229820357, \"elapsed_ns\": 21229820357, \"power_samples\": [285.70899999999983, 456.37300000000005, 467.453, 467.453, 467.453, 467.453, 483.30899999999997, 483.30899999999997, 467.453, 482.8409999999999, 467.453, 467.453, 498.22900000000004, 467.453, 482.37300000000005, 466.98900000000003, 467.453, 467.453, 525.1579999999999, 550.6289999999999], \"power_mean\": 469.47245, \"energy_millijoules\": 9966.815776060665, \"energy_joules\": 9.966815776060665, \"coremark_score\": 14139.605034, \"coremarks_per_mhz\": 7.918685614919355, \"ulpmark_cm_score\": 30.099884129550304}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1279.528, 1321.922, 1291.09, 1306.167], \"power_mean\": 1299.67675, \"energy_millijoules\": 6498.383750000001, \"energy_joules\": 6.498383750000001}}, \"1900800\": {\"active\": {\"elapsed_sec\": 17.023476139, \"elapsed_ns\": 17023476139, \"power_samples\": [427.85400000000004, 609.2909999999999, 608.79, 608.79, 608.79, 608.289, 624.1699999999998, 624.1699999999998, 623.665, 623.665, 608.289, 623.665, 608.289, 623.1599999999999, 623.665, 623.665], \"power_mean\": 604.8879374999999, \"energy_millijoules\": 10297.295370800171, \"energy_joules\": 10.297295370800171, \"coremark_score\": 17637.721206, \"coremarks_per_mhz\": 9.279104169823231, \"ulpmark_cm_score\": 29.133863718302557}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1417.904, 1305.489, 1306.167, 1305.828], \"power_mean\": 1333.847, \"energy_millijoules\": 6669.235, \"energy_joules\": 6.669235}}, \"2035200\": {\"active\": {\"elapsed_sec\": 15.887336244, \"elapsed_ns\": 15887336244, \"power_samples\": [595.3979999999999, 665.433, 665.433, 692.3339999999998, 681.325, 680.8049999999998, 680.2849999999999, 692.857, 680.2849999999999, 680.8049999999998, 707.1789999999999, 692.3339999999998, 680.8049999999998, 691.8109999999999, 680.2849999999999], \"power_mean\": 677.8249333333332, \"energy_millijoules\": 10768.832630433548, \"energy_joules\": 10.768832630433549, \"coremark_score\": 18897.637795, \"coremarks_per_mhz\": 9.285395929147011, \"ulpmark_cm_score\": 27.85817277465869}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1290.42, 1305.828, 1290.085, 1305.489], \"power_mean\": 1297.9555, \"energy_millijoules\": 6489.7775, \"energy_joules\": 6.4897775}}, \"2150400\": {\"active\": {\"elapsed_sec\": 15.03070463, \"elapsed_ns\": 15030704630, \"power_samples\": [88.42499999999995, 776.3349999999998, 807.0710000000001, 791.1539999999998, 806.5179999999998, 790.0559999999998, 805.412, 806.5179999999998, 805.412, 790.6049999999998, 818.0409999999999, 805.9649999999999, 805.9649999999999, 805.412], \"power_mean\": 750.2063571428571, \"energy_millijoules\": 11276.130165762575, \"energy_joules\": 11.276130165762575, \"coremark_score\": 19977.358993, \"coremarks_per_mhz\": 9.290066496000744, \"ulpmark_cm_score\": 26.604872025234535}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1290.085, 1305.489, 1305.489, 1305.489], \"power_mean\": 1301.638, \"energy_millijoules\": 6508.19, \"energy_joules\": 6.50819}}, \"2265600\": {\"active\": {\"elapsed_sec\": 14.267865359, \"elapsed_ns\": 14267865359, \"power_samples\": [326.8219999999999, 890.4449999999999, 917.325, 901.387, 916.7429999999997, 900.809, 916.7429999999997, 932.0989999999999, 916.1609999999998, 931.5130000000001, 931.5130000000001, 915.579, 930.3410000000001], \"power_mean\": 871.3446153846153, \"energy_millijoules\": 12432.22765359733, \"energy_joules\": 12.43222765359733, \"coremark_score\": 21046.723727, \"coremarks_per_mhz\": 9.289690910575565, \"ulpmark_cm_score\": 24.130832249777328}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1289.75, 1305.489, 1305.489, 1305.489], \"power_mean\": 1301.5542500000001, \"energy_millijoules\": 6507.771250000001, \"energy_joules\": 6.507771250000001}}, \"2380800\": {\"active\": {\"elapsed_sec\": 13.590392078, \"elapsed_ns\": 13590392078, \"power_samples\": [669.0449999999998, 1031.3010000000002, 1030.689, 1041.5849999999998, 1041.5849999999998, 1030.077, 1041.5849999999998, 1041.5849999999998, 1056.9289999999999, 1040.97, 1041.5849999999998, 1056.3099999999997, 1030.077], \"power_mean\": 1011.7940769230768, \"energy_millijoules\": 13750.678207582705, \"energy_joules\": 13.750678207582705, \"coremark_score\": 22096.19209, \"coremarks_per_mhz\": 9.280994661458333, \"ulpmark_cm_score\": 21.817105707161943}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1289.75, 1320.55, 1289.75, 1305.489], \"power_mean\": 1301.38475, \"energy_millijoules\": 6506.92375, \"energy_joules\": 6.50692375}}, \"2496000\": {\"active\": {\"elapsed_sec\": 12.951666609, \"elapsed_ns\": 12951666609, \"power_samples\": [1127.8880000000001, 1181.561, 1166.8769999999997, 1196.8929999999998, 1196.8929999999998, 1181.561, 1196.8929999999998, 1212.2250000000001, 1196.8929999999998, 1196.8929999999998, 1212.2250000000001, 1196.8929999999998], \"power_mean\": 1188.64125, \"energy_millijoules\": 15394.88518770502, \"energy_joules\": 15.39488518770502, \"coremark_score\": 23185.717598, \"coremarks_per_mhz\": 9.289149678685897, \"ulpmark_cm_score\": 19.486991708102646}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1289.415, 1320.207, 1304.811, 1304.811], \"power_mean\": 1304.811, \"energy_millijoules\": 6524.054999999999, \"energy_joules\": 6.524055}}, \"2592000\": {\"active\": {\"elapsed_sec\": 12.478908329, \"elapsed_ns\": 12478908329, \"power_samples\": [414.4949999999999, 1338.7139999999997, 1364.1449999999998, 1379.4689999999998, 1379.4689999999998, 1378.765, 1405.575, 1378.765, 1363.445, 1378.061, 1362.7450000000001, 1377.3569999999997], \"power_mean\": 1293.4170833333333, \"energy_millijoules\": 16140.43321407922, \"energy_joules\": 16.14043321407922, \"coremark_score\": 24065.458046, \"coremarks_per_mhz\": 9.284513135030863, \"ulpmark_cm_score\": 18.586861704449884}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1289.08, 1304.472, 1304.472, 1304.811], \"power_mean\": 1300.70875, \"energy_millijoules\": 6503.54375, \"energy_joules\": 6.5035437499999995}}, \"2688000\": {\"active\": {\"elapsed_sec\": 12.035639735, \"elapsed_ns\": 12035639735, \"power_samples\": [952.7650000000001, 1477.615, 1489.102, 1502.9439999999997, 1519.7340000000002, 1530.477, 1530.477, 1529.733, 1502.9439999999997, 1544.293, 1530.477], \"power_mean\": 1464.5964545454544, \"energy_millijoules\": 17627.355284067395, \"energy_joules\": 17.627355284067395, \"coremark_score\": 24954.250541, \"coremarks_per_mhz\": 9.283575350074406, \"ulpmark_cm_score\": 17.019002293052836}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1288.745, 1319.521, 1304.472, 1304.472], \"power_mean\": 1304.3025, \"energy_millijoules\": 6521.5125, \"energy_joules\": 6.5215125}}, \"2764800\": {\"active\": {\"elapsed_sec\": 11.702895204, \"elapsed_ns\": 11702895204, \"power_samples\": [-4.8940000000000055, 1586.3790000000001, 1613.1609999999998, 1612.3949999999998, 1626.925, 1612.3949999999998, 1642.9950000000001, 1642.2209999999998, 1642.2209999999998, 1627.695, 1652.916], \"power_mean\": 1477.6735454545453, \"energy_millijoules\": 17293.058648177677, \"energy_joules\": 17.293058648177677, \"coremark_score\": 25662.959795, \"coremarks_per_mhz\": 9.282031175853588, \"ulpmark_cm_score\": 17.34800107392301}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1303.794, 1319.521, 1319.521, 1304.133], \"power_mean\": 1311.74225, \"energy_millijoules\": 6558.71125, \"energy_joules\": 6.55871125}}, \"2841600\": {\"active\": {\"elapsed_sec\": 11.384680568, \"elapsed_ns\": 11384680568, \"power_samples\": [667.4969999999998, 1753.9199999999998, 1794.367, 1795.1809999999998, 1808.8410000000001, 1809.6589999999999, 1824.1290000000001, 1824.9509999999998, 1823.307, 1835.595, 1834.7699999999998], \"power_mean\": 1706.5651818181818, \"energy_millijoules\": 19428.699463470843, \"energy_joules\": 19.428699463470842, \"coremark_score\": 26380.58389, \"coremarks_per_mhz\": 9.283707731559685, \"ulpmark_cm_score\": 15.441074713418129}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1303.455, 1319.178, 1303.794, 1319.178], \"power_mean\": 1311.4012500000001, \"energy_millijoules\": 6557.00625, \"energy_joules\": 6.557006250000001}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm8350/second/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 cpu7 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 1318 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 403 499 595 691 806 902 998 1094 1209 1305 1401 1497 1612 1708 1804\n\n 300:  1112     3.7 C/MHz     62 mW   16.7 J   18.0 I/mJ   269.8 s\n 403:  1495     3.7 C/MHz     52 mW   10.5 J   28.5 I/mJ   200.7 s\n 499:  1852     3.7 C/MHz     55 mW    8.9 J   33.7 I/mJ   162.0 s\n 595:  2208     3.7 C/MHz     56 mW    7.6 J   39.4 I/mJ   135.9 s\n 691:  2565     3.7 C/MHz     58 mW    6.8 J   44.2 I/mJ   117.0 s\n 806:  2992     3.7 C/MHz     64 mW    6.4 J   46.8 I/mJ   100.3 s\n 902:  3348     3.7 C/MHz     68 mW    6.1 J   49.3 I/mJ    89.6 s\n 998:  3704     3.7 C/MHz     70 mW    5.7 J   52.9 I/mJ    81.0 s\n1094:  4060     3.7 C/MHz     71 mW    5.2 J   57.2 I/mJ    73.9 s\n1209:  4488     3.7 C/MHz     79 mW    5.2 J   57.2 I/mJ    66.8 s\n1305:  4846     3.7 C/MHz     89 mW    5.5 J   54.3 I/mJ    61.9 s\n1401:  5202     3.7 C/MHz     88 mW    5.1 J   58.8 I/mJ    57.7 s\n1497:  5558     3.7 C/MHz     95 mW    5.1 J   58.8 I/mJ    54.0 s\n1612:  5985     3.7 C/MHz     98 mW    4.9 J   61.0 I/mJ    50.1 s\n1708:  6342     3.7 C/MHz    103 mW    4.9 J   61.7 I/mJ    47.3 s\n1804:  6698     3.7 C/MHz    117 mW    5.2 J   57.2 I/mJ    44.8 s\n\n\n===== CPU 4 =====\nFrequencies: 710 844 960 1075 1209 1324 1440 1555 1670 1766 1881 1996 2112 2227 2342 2419\n\n 710:  6462     9.1 C/MHz    123 mW    5.7 J   52.7 I/mJ    46.4 s\n 844:  7689     9.1 C/MHz    156 mW    6.1 J   49.3 I/mJ    39.0 s\n 960:  8732     9.1 C/MHz    188 mW    6.5 J   46.3 I/mJ    34.4 s\n1075:  9779     9.1 C/MHz    211 mW    6.5 J   46.3 I/mJ    30.7 s\n1209: 11004     9.1 C/MHz    237 mW    6.5 J   46.5 I/mJ    27.3 s\n1324: 12056     9.1 C/MHz    280 mW    7.0 J   43.0 I/mJ    24.9 s\n1440: 13106     9.1 C/MHz    320 mW    7.3 J   40.9 I/mJ    22.9 s\n1555: 14152     9.1 C/MHz    354 mW    7.5 J   40.0 I/mJ    21.2 s\n1670: 15196     9.1 C/MHz    401 mW    7.9 J   37.9 I/mJ    19.8 s\n1766: 16067     9.1 C/MHz    418 mW    7.8 J   38.4 I/mJ    18.7 s\n1881: 17116     9.1 C/MHz    470 mW    8.2 J   36.4 I/mJ    17.5 s\n1996: 18182     9.1 C/MHz    551 mW    9.1 J   33.0 I/mJ    16.5 s\n2112: 19201     9.1 C/MHz    664 mW   10.4 J   28.9 I/mJ    15.6 s\n2227: 20263     9.1 C/MHz    778 mW   11.5 J   26.0 I/mJ    14.8 s\n2342: 21301     9.1 C/MHz    873 mW   12.3 J   24.4 I/mJ    14.1 s\n2419: 22012     9.1 C/MHz    941 mW   12.8 J   23.4 I/mJ    13.6 s\n\n\n===== CPU 7 =====\nFrequencies: 844 960 1075 1190 1305 1420 1555 1670 1785 1900 2035 2150 2265 2380 2496 2592 2688 2764 2841\n\n 844:  7845     9.3 C/MHz    219 mW    8.4 J   35.9 I/mJ    38.3 s\n 960:  8913     9.3 C/MHz    246 mW    8.3 J   36.2 I/mJ    33.7 s\n1075:  9984     9.3 C/MHz    274 mW    8.2 J   36.4 I/mJ    30.1 s\n1190:  8998     7.6 C/MHz    271 mW    9.0 J   33.2 I/mJ    33.4 s\n1305:  9485     7.3 C/MHz    272 mW    8.6 J   34.8 I/mJ    31.6 s\n1420: 10920     7.7 C/MHz    323 mW    8.9 J   33.8 I/mJ    27.5 s\n1555: 14251     9.2 C/MHz    422 mW    8.9 J   33.8 I/mJ    21.1 s\n1670: 10840     6.5 C/MHz    361 mW   10.0 J   30.0 I/mJ    27.7 s\n1785: 14140     7.9 C/MHz    469 mW   10.0 J   30.1 I/mJ    21.2 s\n1900: 17638     9.3 C/MHz    605 mW   10.3 J   29.1 I/mJ    17.0 s\n2035: 18898     9.3 C/MHz    678 mW   10.8 J   27.9 I/mJ    15.9 s\n2150: 19977     9.3 C/MHz    750 mW   11.3 J   26.6 I/mJ    15.0 s\n2265: 21047     9.3 C/MHz    871 mW   12.4 J   24.1 I/mJ    14.3 s\n2380: 22096     9.3 C/MHz   1012 mW   13.8 J   21.8 I/mJ    13.6 s\n2496: 23186     9.3 C/MHz   1189 mW   15.4 J   19.5 I/mJ    13.0 s\n2592: 24065     9.3 C/MHz   1293 mW   16.1 J   18.6 I/mJ    12.5 s\n2688: 24954     9.3 C/MHz   1465 mW   17.6 J   17.0 I/mJ    12.0 s\n2764: 25663     9.3 C/MHz   1478 mW   17.3 J   17.3 I/mJ    11.7 s\n2841: 26381     9.3 C/MHz   1707 mW   19.4 J   15.4 I/mJ    11.4 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm8350/second/uptime.txt",
    "content": " 10:39:55 up 48 min,  load average: 1.61, 1.71, 1.72\n"
  },
  {
    "path": "results/sm8350/second/versions.txt",
    "content": "Kernel: Linux version 5.4.61-DynamIQ-R1 (nakixii@naki-PC) (Proton clang version 13.0.0 (https://github.com/llvm/llvm-project b4fd512c36ca344a3ff69350219e8b0a67e9472a), GNU ld (GNU Binutils) 2.36.1) #14 SMP PREEMPT Thu Aug 12 18:59:42 CST 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/sm8350/third/cmdline.txt",
    "content": "ramoops_memreserve=4M log_buf_len=256K rcupdate.rcu_expedited=1 rcu_nocbs=0-7 console=ttyMSM0,115200n8 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 androidboot.usbcontroller=a600000.dwc3 swiotlb=0 loop.max_part=7 cgroup.memory=nokmem,nosocket pcie_ports=compat loop.max_part=7 iptable_raw.raw_before_defrag=1 ip6table_raw.raw_before_defrag=1 buildvariant=user  rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 androidboot.vbmeta.device=PARTUUID=b64522b4-058c-ffe9-7228-033fc833ae87 androidboot.vbmeta.device=PARTUUID=b64522b4-058c-ffe9-7228-033fc833ae87 androidboot.vbmeta.avb_version=1.0 androidboot.vbmeta.device_state=unlocked androidboot.vbmeta.hash_alg=sha256 androidboot.vbmeta.size=7040 androidboot.vbmeta.digest=c32a4e6a4fa83639a340b435ecbb487cefe299741403db4f19d024d0800d899b androidboot.vbmeta.invalidate_on_error=yes androidboot.veritymode=enforcing androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=REDACTED bootinfo.pureason=0x40001 bootinfo.pdreason=0x2 androidboot.hwversion=3.9.0 androidboot.cpuid=REDACTED androidboot.hwc=CN androidboot.hwlevel=MP androidboot.hardware.sku=venus androidboot.product.hardware.sku=venus androidboot.secureboot=1 androidboot.baseband=msm msm_drm.dsi_display0=qcom,mdss_dsi_k2_38_08_0a_mp_dsc_cmd: androidboot.oled_wp=01f50bb00c4e msm_drm.oled_wp=01f50bb00c4e androidboot.oled_panel_id=K2_0A_MP androidboot.slot_suffix=_b rootwait ro init=/init androidboot.dtbo_idx=22 androidboot.dtb_idx=0 androidboot.ramdump=disable androidboot.force_normal_boot=1 block2mtd.block2mtd=/dev/block/sda15,2097152 mtdoops.mtddev=0 mtdoops.record_size=2097152 mtdoops.dump_oops=0 printk.always_kmsg_dump=1\n"
  },
  {
    "path": "results/sm8350/third/cpufreq_stats/0/time_in_state",
    "content": "300000 147011\n403200 20921\n499200 17084\n595200 14492\n691200 12528\n806400 10866\n902400 9826\n998400 9001\n1094400 8276\n1209600 7551\n1305600 7037\n1401600 6619\n1497600 6307\n1612800 5894\n1708800 5583\n1804800 6241\n"
  },
  {
    "path": "results/sm8350/third/cpufreq_stats/0/total_trans",
    "content": "19\n"
  },
  {
    "path": "results/sm8350/third/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    300000    403200    499200    595200    691200    806400    902400    998400   1094400   1209600   1305600   1401600   1497600   1612800   1708800   1804800 \n   300000:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   403200:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   499200:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n   595200:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n   691200:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n   806400:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n   902400:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n   998400:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1094400:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1209600:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1305600:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1401600:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  1497600:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         1 \n  1612800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  1708800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  1804800:         2         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8350/third/cpufreq_stats/4/time_in_state",
    "content": "710400 64395\n844800 4762\n960000 4348\n1075200 3934\n1209600 3623\n1324800 3415\n1440000 3207\n1555200 3000\n1670400 2897\n1766400 2793\n1881600 2586\n1996800 2482\n2112000 2482\n2227200 2379\n2342400 2275\n2419200 186660\n"
  },
  {
    "path": "results/sm8350/third/cpufreq_stats/4/total_trans",
    "content": "18\n"
  },
  {
    "path": "results/sm8350/third/cpufreq_stats/4/trans_table",
    "content": "   From  :    To\n         :    710400    844800    960000   1075200   1209600   1324800   1440000   1555200   1670400   1766400   1881600   1996800   2112000   2227200   2342400   2419200 \n   710400:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   844800:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   960000:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1075200:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1209600:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1324800:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1440000:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1555200:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1670400:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1766400:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1881600:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1996800:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2112000:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2227200:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2342400:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2419200:         2         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8350/third/cpufreq_stats/7/time_in_state",
    "content": "844800 4689\n960000 4244\n1075200 3933\n1190400 5592\n1305600 3312\n1420800 4347\n1555200 4659\n1670400 2794\n1785600 2692\n1900800 2586\n2035200 2483\n2150400 2378\n2265600 2275\n2380800 2275\n2496000 2171\n2592000 2171\n2688000 2068\n2764800 2068\n2841600 238501\n"
  },
  {
    "path": "results/sm8350/third/cpufreq_stats/7/total_trans",
    "content": "21\n"
  },
  {
    "path": "results/sm8350/third/cpufreq_stats/7/trans_table",
    "content": "   From  :    To\n         :    844800    960000   1075200   1190400   1305600   1420800   1555200   1670400   1785600   1900800   2035200   2150400   2265600   2380800   2496000   2592000   2688000   2764800   2841600 \n   844800:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n   960000:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1075200:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1190400:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1305600:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n  1420800:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1555200:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1670400:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1785600:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1900800:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  2035200:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  2150400:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  2265600:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  2380800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  2496000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2592000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2688000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2764800:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2841600:         2         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/sm8350/third/cpuinfo.txt",
    "content": "processor\t: 0\nBogoMIPS\t: 38.40\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x2\nCPU part\t: 0xd05\nCPU revision\t: 0\n\nHardware\t: Venus based on Qualcomm Technologies, Inc SM8350\n"
  },
  {
    "path": "results/sm8350/third/device.txt",
    "content": "Model: Venus based on Qualcomm Technologies, Inc SM8350;\nCompatible: qcom,lahaina-mtp;qcom,lahaina;qcom,mtp;\n"
  },
  {
    "path": "results/sm8350/third/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x412fd050]\n[    0.000000] Linux version 5.4.61-DynamIQ-R1 (nakixii@naki-PC) (Proton clang version 13.0.0 (https://github.com/llvm/llvm-project b4fd512c36ca344a3ff69350219e8b0a67e9472a), GNU ld (GNU Binutils) 2.36.1) #14 SMP PREEMPT Thu Aug 12 18:59:42 CST 2021\n[    0.000000] memblock_reserve: 0xb604d setup_arch+0x5c/0x1a0\n[    0.000000] Machine model: Venus based on Qualcomm Technologies, Inc SM8350\n[    0.000000] ramoops: msm_reserve_ramoops_memory addr=b0000000,size=400000\n[    0.000000] ramoops: msm_reserve_ramoops_memory record_size=0,ftrace_size=0\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000d6800000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created DMA memory pool at 0x00000000d6000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node memshare_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff800000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node cdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000ff000000, size 8 MiB\n[    0.000000] OF: reserved mem: initialized node sdsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fe400000, size 12 MiB\n[    0.000000] OF: reserved mem: initialized node adsp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fd400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_ta_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fc400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node sp_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000fb400000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node user_contig_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f8400000, size 48 MiB\n[    0.000000] OF: reserved mem: initialized node mem_dump_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f6c00000, size 24 MiB\n[    0.000000] OF: reserved mem: initialized node qseecom_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f5800000, size 20 MiB\n[    0.000000] OF: reserved mem: initialized node cnss_wlan_region, compatible id shared-dma-pool\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000000eb400000, size 164 MiB\n[    0.000000] OF: reserved mem: initialized node secure_display_region, compatible id shared-dma-pool\n[    0.000000] On node 0 totalpages: 2954064\n[    0.000000]   Normal zone: 46158 pages used for memmap\n[    0.000000]   Normal zone: 0 pages reserved\n[    0.000000]   Normal zone: 2954064 pages, LIFO batch:63\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.0\n[    0.000000] psci: OSI mode supported.\n[    0.000000] psci: Switched to OSI mode.\n[    0.000000] percpu: Embedded 29 pages/cpu s88792 r0 d29992 u118784\n[    0.000000] pcpu-alloc: s88792 r0 d29992 u118784 alloc=29*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: detected: GIC system register CPU interface\n[    0.000000] CPU features: kernel page table isolation forced OFF by kpti command line option\n[    0.000000] CPU features: detected: Speculative Store Bypassing Safe (SSBS)\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 2907906\n[    0.000000] Kernel command line: ramoops_memreserve=4M log_buf_len=256K rcupdate.rcu_expedited=1 rcu_nocbs=0-7 console=ttyMSM0,115200n8 androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 androidboot.usbcontroller=a600000.dwc3 swiotlb=0 loop.max_part=7 cgroup.memory=nokmem,nosocket pcie_ports=compat loop.max_part=7 iptable_raw.raw_before_defrag=1 ip6table_raw.raw_before_defrag=1 buildvariant=user  rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on androidboot.verifiedbootstate=orange androidboot.keymaster=1 androidboot.vbmeta.device=PARTUUID=b64522b4-058c-ffe9-7228-033fc833ae87 androidboot.vbmeta.device=PARTUUID=b64522b4-058c-ffe9-7228-033fc833ae87 androidboot.vbmeta.avb_version=1.0 androidboot.vbmeta.device_state=unlocked androidboot.vbmeta.hash_alg=sha256 androidboot.vbmeta.size=7040 androidboot.vbmeta.digest=c32a4e6a4fa83639a340b4\n[    0.000000] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)\n[    0.000000] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)\n[    0.000000] mem auto-init: stack:all(zero), heap alloc:on, heap free:off\n[    0.000000] Memory: 11085416K/11816256K available (23166K kernel code, 3192K rwdata, 11420K rodata, 4480K init, 11717K bss, 362200K reserved, 368640K cma-reserved)\n[    0.000000] random: get_random_u64 called from __kmem_cache_create+0x34/0x550 with crng_init=0\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] rcu: \tRCU restricting CPUs from NR_CPUS=32 to nr_cpu_ids=8.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTasks RCU enabled.\n[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.\n[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: 988 SPIs implemented\n[    0.000000] GICv3: 0 Extended SPIs implemented\n[    0.000000] GICv3: Distributor has no Range Selector support\n[    0.000000] GICv3: 16 PPIs implemented\n[    0.000000] GICv3: no VLPI support, no direct LPI support\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns\n[    0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns\n[    0.000011] clocksource: Switched to clocksource arch_sys_counter\n[    0.003303] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)\n[    0.003311] pid_max: default: 32768 minimum: 301\n[    0.003434] LSM: Security Framework initializing\n[    0.003486] SELinux:  Initializing.\n[    0.003646] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)\n[    0.003675] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)\n[    0.004934] ASID allocator initialised with 32768 entries\n[    0.004999] rcu: Hierarchical SRCU implementation.\n[    0.005292] dynamic_debug:dynamic_debug_init: Ignore empty _ddebug table in a CONFIG_DYNAMIC_DEBUG_CORE build\n[    0.006933] scm_mem_protection_init_do: SCM call failed\n[    0.007169] smp: Bringing up secondary CPUs ...\n[    0.008046] Detected VIPT I-cache on CPU1\n[    0.008153] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]\n[    0.009241] Detected VIPT I-cache on CPU2\n[    0.009331] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]\n[    0.010319] Detected VIPT I-cache on CPU3\n[    0.010403] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]\n[    0.013604] Detected PIPT I-cache on CPU4\n[    0.013623] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU4: 0x1100000011111112\n[    0.013632] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU4: 0x00000000010142\n[    0.013639] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU4: 0x00000010010131\n[    0.013644] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU4: 0x00000010010000\n[    0.013649] CPU features: Unsupported CPU feature variation detected.\n[    0.013782] CPU4: Booted secondary processor 0x0000000400 [0x411fd410]\n[    0.015129] Detected PIPT I-cache on CPU5\n[    0.015149] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU5: 0x1100000011111112\n[    0.015160] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU5: 0x00000000010142\n[    0.015167] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU5: 0x00000010010131\n[    0.015171] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU5: 0x00000010010000\n[    0.015312] CPU5: Booted secondary processor 0x0000000500 [0x411fd410]\n[    0.016651] Detected PIPT I-cache on CPU6\n[    0.016670] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU6: 0x1100000011111112\n[    0.016680] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU6: 0x00000000010142\n[    0.016687] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU6: 0x00000010010131\n[    0.016691] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU6: 0x00000010010000\n[    0.016828] CPU6: Booted secondary processor 0x0000000600 [0x411fd410]\n[    0.020017] Detected PIPT I-cache on CPU7\n[    0.020024] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU7: 0x1100000011111112\n[    0.020028] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU7: 0x00000000010142\n[    0.020031] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU7: 0x00000010010131\n[    0.020033] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU7: 0x00000010010000\n[    0.020110] CPU7: Booted secondary processor 0x0000000700 [0x411fd440]\n[    0.020261] smp: Brought up 1 node, 8 CPUs\n[    0.020266] SMP: Total of 8 processors activated.\n[    0.020269] CPU features: detected: Privileged Access Never\n[    0.020271] CPU features: detected: LSE atomic instructions\n[    0.020273] CPU features: detected: User Access Override\n[    0.020275] CPU features: detected: 32-bit EL0 Support\n[    0.020277] CPU features: detected: Common not Private translations\n[    0.020280] CPU features: detected: RAS Extension Support\n[    0.020281] CPU features: detected: Data cache clean to the PoU not required for I/D coherence\n[    0.020284] CPU features: detected: CRC32 instructions\n[    0.041934] CPU: All CPU(s) started at EL1\n[    0.041989] alternatives: patching kernel code\n[    0.043544] do_mount: dev: devtmpfs, mount point: / , retval=0\n[    0.043567] devtmpfs: initialized\n[    0.179503] Registered cp15_barrier emulation handler\n[    0.179522] Registered setend emulation handler\n[    0.179866] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.179888] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)\n[    0.188681] ramoops: msm_register_ramoops_device\n[    0.188878] pinctrl core: initialized pinctrl subsystem\n[    0.189552] NET: Registered protocol family 16\n[    0.191086] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.191109] audit: initializing netlink subsys (disabled)\n[    0.191383] printk: console [pstore-1] enabled\n[    0.191532] pstore: Registered ramoops as persistent store backend\n[    0.191536] ramoops: using 0x400000@0xb0000000, ecc: 0\n[    0.191953] cpuidle: using governor menu\n[    0.192023] NET: Registered protocol family 42\n[    0.192520] hw-breakpoint: found 1 breakpoint and 1 watchpoint registers.\n[    0.192564] audit: type=2000 audit(0.189:1): state=initialized audit_enabled=0 res=1\n[    0.193079] Serial: AMBA PL011 UART driver\n[    0.193221] DMA: preallocated 256 KiB pool for atomic allocations\n[    0.289125] OF: /soc/qcom,cam-res-mgr: could not get #gpio-cells for /soc/funnel@6986000/out-ports/port/endpoint\n[    0.342860] OF: /soc/qcom,cam-res-mgr: could not get #gpio-cells for /soc/funnel@6986000/out-ports/port/endpoint\n[    0.347019] msm-dcc 117f000.dcc_v2: DCC list passed 3\n[    0.347248] msm-dcc 117f000.dcc_v2: All values written to enable.\n[    0.347353] msm-dcc 117f000.dcc_v2: DCC list passed 4\n[    0.347600] msm-dcc 117f000.dcc_v2: All values written to enable.\n[    0.347838] msm-dcc 117f000.dcc_v2: DCC list passed 6\n[    0.348155] msm-dcc 117f000.dcc_v2: All values written to enable.\n[    0.348655] Minidump not enabled.\n[    0.348768] (NULL device *): failed to set download mode: -5\n[    0.349337] Disable GPIO151, 200, 202 wakeup\n[    0.422305] pm8350_s5_level: supplied by pm8350_s9_level\n[    0.422500] pm8350_s5_lvl_ao: supplied by pm8350_s9_level_ao\n[    0.666962] pm8350c_s6_level: supplied by pm8350_s5_level\n[    0.667180] pm8350c_s6_level_ao: supplied by pm8350_s5_lvl_ao\n[    0.680493] pm8350_s9_mmcx_sup_level: supplied by pm8350c_s6_mmcx_sup_level\n[    0.680507] pm8350_s5_mmcx_sup_level: supplied by pm8350_s9_mmcx_sup_level\n[    0.680514] pm8350c_s8_level: supplied by pm8350_s5_mmcx_sup_level\n[    0.680708] pm8350c_s8_level_ao: supplied by pm8350_s5_lvl_ao\n[    0.812554] spmi spmi-0: PMIC arbiter version v5 (0x50020000)\n[    0.832053] sps:sps is ready\n[    0.850165] hh-watchdog hypervisor:qcom,hh-watchdog: QCOM Apps Watchdog Initialized\n[    0.955214] oledb: Bringing 0uV into 5000000-5000000uV\n[    0.955342] ab: Bringing 0uV into 4600000-4600000uV\n[    0.955454] ibb: Bringing 0uV into 1400000-1400000uV\n[    0.974322] cryptd: max_cpu_qlen set to 1000\n[    0.978435] gcc_pcie_0_gdsc: supplied by pm8350c_s6_level\n[    0.978626] gcc_pcie_1_gdsc: supplied by pm8350c_s6_level\n[    0.978820] gcc_ufs_card_gdsc: supplied by pm8350c_s6_level\n[    0.978990] gcc_ufs_phy_gdsc: supplied by pm8350c_s6_level\n[    0.980185] gpu_cc_cx_gdsc: supplied by pm8350c_s6_level\n[    0.980391] gpu_cc_gx_gdsc: supplied by pm8350_s6_level\n[    0.981268] qmp-aop-clk soc:qcom,aopclk: Registered clocks with AOP\n[    1.013709] lahaina-gcc 100000.qcom,gcc: Registered GCC clocks\n[    1.026260] gpu_cc-lahaina 3d90000.qcom,gpucc: Registered GPU CC clocks\n[    1.127165] Rate 19200000 for cam_cc_sleep_clk_src is greater than highest Fmax\n[    1.127170] Rate 19200000 for cam_cc_sleep_clk_src is greater than highest Fmax\n[    1.132489] lahaina-cam_cc ad00000.qcom,camcc: Registered CAM CC clocks\n[    1.158891] video_cc-lahaina abf0000.qcom,videocc: Registered VIDEO CC clocks\n[    1.162956] Minidump: Enabled with max number of regions 200\n[    1.163492] camera_wide_vana_ldo: supplied by pm8350c_bob\n[    1.163676] camera_front_vdig_ldo: supplied by pm8350_s12\n[    1.163859] camera_front_vana_ldo: supplied by pm8350c_bob\n[    1.164054] camera_macro_vana_ldo: supplied by pm8350c_bob\n[    1.164770] qti-reg-fixed-voltage soc:display_gpio_regulator@1: nonexclusive access to GPIO for soc:display_gpio_regulator@1\n[    1.165419] iommu: Default domain type: Translated \n[    1.173731] arm-smmu 3da0000.kgsl-smmu: \tcoherent table walk\n[    1.173737] arm-smmu 3da0000.kgsl-smmu: \tstream matching with 6 register groups\n[    1.176094] SCSI subsystem initialized\n[    1.176206] usbcore: registered new interface driver usbfs\n[    1.176236] usbcore: registered new interface driver hub\n[    1.176347] usbcore: registered new device driver usb\n[    1.176569] usb_phy_generic soc:usb_nop_phy: soc:usb_nop_phy supply vcc not found, using dummy regulator\n[    1.177281] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pmk8350@0:pon_pbs@800: IRQ pmic-wd-bark not found\n[    1.177550] 0x8c0:0x0 0x8c1:0x0 0x8c2:0x0 0x8c3:0x0 0x8c4:0x0 0x8c5:0x0 0x8c6:0x0 0x8c7:0x0 0x8c8:0x40 0x8c9:0x0 0x8ca:0x0 0x8cb:0x0 0x842:0x7 0x84a:0x1 0x852:0x1 \n[    1.177638] use kpdpwr-sw-debounce\n[    1.177788] qcom,qpnp-power-on c440000.qcom,spmi:qcom,pmk8350@0:pon_hlos@1300: IRQ pmic-wd-bark not found\n[    1.177921] input: qpnp_pon as /devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-00/c440000.qcom,spmi:qcom,pmk8350@0:pon_hlos@1300/input/input0\n[    1.178993] 0x13c0:0x0 0x13c1:0x0 0x13c2:0x0 0x13c3:0x0 0x13c4:0x0 0x13c5:0x0 0x13c6:0x0 0x13c7:0x0 0x13c8:0x0 0x13c9:0x0 0x13ca:0x0 0x13cb:0x0 0x1342:0x0 0x134a:0x0 0x1352:0x0 \n[    1.179061] mc: Linux media interface: v0.10\n[    1.179091] videodev: Linux video capture interface: v2.00\n[    1.179218] thermal_sys: Registered thermal governor 'step_wise'\n[    1.179220] thermal_sys: Registered thermal governor 'user_space'\n[    1.189154] Error creating thermal debugfs directory. err:-19\n[    1.190989] thermal_sys: of_parse_thermal_message board sensor: VIRTUAL-SENSOR\n[    1.203425] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=300000 volt=568000, core_count 4\n[    1.203442] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=403200 volt=568000, core_count 4\n[    1.203448] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=499200 volt=568000, core_count 4\n[    1.203455] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=595200 volt=568000, core_count 4\n[    1.203461] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=691200 volt=568000, core_count 4\n[    1.203467] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=806400 volt=584000, core_count 4\n[    1.203473] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=902400 volt=596000, core_count 4\n[    1.203480] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=998400 volt=612000, core_count 4\n[    1.203486] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1094400 volt=628000, core_count 4\n[    1.203493] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1209600 volt=648000, core_count 4\n[    1.203499] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=1305600 volt=672000, core_count 4\n[    1.203505] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=1401600 volt=692000, core_count 4\n[    1.203511] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=1497600 volt=716000, core_count 4\n[    1.203518] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=1612800 volt=748000, core_count 4\n[    1.203524] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=1708800 volt=772000, core_count 4\n[    1.203534] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=1804800 volt=800000, core_count 4\n[    1.203541] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=1804800 volt=800000, core_count 4\n[    1.203584] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=710400 volt=572000, core_count 4\n[    1.203596] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=844800 volt=592000, core_count 4\n[    1.203602] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=960000 volt=612000, core_count 4\n[    1.203608] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=1075200 volt=632000, core_count 4\n[    1.203615] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=1209600 volt=644000, core_count 4\n[    1.203621] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=1324800 volt=668000, core_count 4\n[    1.203628] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=1440000 volt=688000, core_count 4\n[    1.203633] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=1555200 volt=716000, core_count 4\n[    1.203639] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1670400 volt=740000, core_count 4\n[    1.203646] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1766400 volt=760000, core_count 4\n[    1.203652] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=1881600 volt=800000, core_count 4\n[    1.203658] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=1996800 volt=820000, core_count 4\n[    1.203664] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=2112000 volt=852000, core_count 4\n[    1.203670] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=2227200 volt=884000, core_count 4\n[    1.203676] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=2342400 volt=916000, core_count 4\n[    1.203683] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=2419200 volt=940000, core_count 4\n[    1.203688] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=2419200 volt=940000, core_count 4\n[    1.203723] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=0 freq=844800 volt=564000, core_count 4\n[    1.203734] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=1 freq=960000 volt=576000, core_count 4\n[    1.203740] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=2 freq=1075200 volt=584000, core_count 4\n[    1.203746] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=3 freq=1190400 volt=600000, core_count 4\n[    1.203756] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=4 freq=1305600 volt=604000, core_count 4\n[    1.203762] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=5 freq=1420800 volt=620000, core_count 4\n[    1.203769] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=6 freq=1555200 volt=644000, core_count 4\n[    1.203775] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=7 freq=1670400 volt=660000, core_count 4\n[    1.203781] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=8 freq=1785600 volt=684000, core_count 4\n[    1.203787] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=9 freq=1900800 volt=704000, core_count 4\n[    1.203794] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=10 freq=2035200 volt=728000, core_count 4\n[    1.203800] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=11 freq=2150400 volt=760000, core_count 4\n[    1.203807] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=12 freq=2265600 volt=796000, core_count 4\n[    1.203813] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=13 freq=2380800 volt=828000, core_count 4\n[    1.203819] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=14 freq=2496000 volt=856000, core_count 4\n[    1.203825] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=15 freq=2592000 volt=888000, core_count 4\n[    1.203832] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=16 freq=2688000 volt=916000, core_count 4\n[    1.203838] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=17 freq=2764800 volt=932000, core_count 4\n[    1.203845] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=18 freq=2841600 volt=948000, core_count 4\n[    1.203851] qcom-cpufreq-hw 18591000.qcom,cpufreq-hw: index=19 freq=2841600 volt=948000, core_count 4\n[    1.220090] shmbridge is enabled\n[    1.224180] IPA framework init\n[    1.224753] SDAM base=0x7100 size=128 registered successfully\n[    1.224847] SDAM base=0x7400 size=128 registered successfully\n[    1.224934] SDAM base=0x7c00 size=128 registered successfully\n[    1.225023] SDAM base=0x7d00 size=128 registered successfully\n[    1.225111] SDAM base=0x8400 size=128 registered successfully\n[    1.225203] SDAM base=0x8500 size=128 registered successfully\n[    1.225295] SDAM base=0x9d00 size=128 registered successfully\n[    1.225358] Advanced Linux Sound Architecture Driver Initialized.\n[    1.226062] IPA clients manager init\n[    1.226063] ipa_usb driver init\n[    1.226151] ipa_usb registered successfully\n[    1.226152] exit: IPA_USB init success!\n[    1.226155] ipa_wdi3 registered successfully\n[    1.226157] ipa_gsb registered successfully\n[    1.226160] ipa_uc_offload registered successfully\n[    1.226162] ipa_mhi registered successfully\n[    1.226165] ipa_wigig registered successfully\n[    1.226554] Bluetooth: Core ver 2.22\n[    1.226565] NET: Registered protocol family 31\n[    1.226567] Bluetooth: HCI device and connection manager initialized\n[    1.226572] Bluetooth: HCI socket layer initialized\n[    1.226576] Bluetooth: L2CAP socket layer initialized\n[    1.226580] Bluetooth: SCO socket layer initialized\n[    1.226756] pcie:pcie_init.\n[    1.233879] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node sdsp_region\n[    1.242863] platform soc:qcom,ion:qcom,ion-heap@13: assigned reserved memory node sp_region\n[    1.245855] platform soc:qcom,ion:qcom,ion-heap@26: assigned reserved memory node user_contig_region\n[    1.248843] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    1.251869] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    1.254863] platform soc:qcom,ion:qcom,ion-heap@10: assigned reserved memory node secure_display_region\n[    1.255074] ION heap system created\n[    1.255226] ION heap adsp created\n[    1.255230] ION heap secure_heap created\n[    1.335958] platform soc:qcom,ion:qcom,ion-heap@14: ion_secure_carveout: creating heap@0x80c00000, size 0x4600000\n[    1.335966] ION heap secure_carveout created\n[    1.335975] ION heap spss created\n[    1.335977] ION heap user_contig created\n[    1.335980] ION heap qsecom created\n[    1.335982] ION heap qsecom_ta created\n[    1.335984] ION heap secure_display created\n[    1.337281] clocksource: Switched to clocksource arch_sys_counter\n[    1.384289] VFS: Disk quotas dquot_6.6.0\n[    1.384335] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    1.385154] NET: Registered protocol family 2\n[    1.385548] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)\n[    1.385696] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)\n[    1.386284] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)\n[    1.387011] TCP: Hash tables configured (established 131072 bind 65536)\n[    1.387100] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)\n[    1.387253] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)\n[    1.387481] NET: Registered protocol family 1\n[    1.387904] NET: Registered protocol family 44\n[    1.387912] PCI: CLS 0 bytes, default 64\n[    1.388057] Trying to unpack rootfs image as initramfs...\n[    1.787586] Freeing initrd memory: 18284K\n[    1.788811] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    1.794612] Initialise system trusted keyrings\n[    1.794718] workingset: timestamp_bits=46 max_order=22 bucket_order=0\n[    1.798527] fuse: init (API version 7.31)\n[    1.808547] Key type asymmetric registered\n[    1.808550] Asymmetric key parser 'x509' registered\n[    1.808575] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 239)\n[    1.808580] io scheduler mq-deadline registered\n[    1.808582] io scheduler kyber registered\n[    1.808669] io scheduler bfq registered\n[    1.817357] spmi spmi-0: pmic_arb_wait_for_done: transaction failed (0x3)\n[    1.817361] qcom-spmi-gpio c440000.qcom,spmi:qcom,pmr735b@5:pinctrl@8800: read 0x4 failed\n[    1.817369] qcom-spmi-gpio: probe of c440000.qcom,spmi:qcom,pmr735b@5:pinctrl@8800 failed with error -5\n[    1.823113] KPI: Bootloader start count = 93876\n[    1.823116] KPI: Bootloader end count = 132641\n[    1.823118] KPI: Bootloader display count = 4010549616\n[    1.823121] KPI: Bootloader load kernel count = 576307235\n[    1.823124] KPI: Kernel MPM timestamp = 212208\n[    1.823125] KPI: Kernel MPM Clock frequency = 32768\n[    1.825604] v0.15, id=415, ver=2.1, raw_id=309, raw_ver=3, hw_plat=8, hw_plat_ver=65536\n                accessory_chip=0, hw_plat_subtype=0, pmic_model=65583, pmic_die_revision=131072 foundry_id=3 serial_number=4265638985 num_pmics=5 chip_family=0x69 raw_device_family=0x6 raw_device_number=0xf nproduct_id=0x41d num_clusters=0x1 ncluster_array_offset=0xb0 num_defective_parts=0xf ndefective_parts_array_offset=0xb4 nmodem_supported=0xffffffff\n[    1.826249] lahaina-llcc 9200000.cache-controller: IRQ index 0 not found\n[    1.827461] msm_mem_dump soc:mem_dump: assigned reserved memory node mem_dump_region\n[    1.838855] MSM Memory Dump base table set up\n[    1.838859] MSM Memory Dump apps data table set up\n[    1.839994] llcc_perfmon: Revision 2, has 1 memory controllers connected with LLCC\n[    1.842981] PMIC PON log: Reset Trigger: PS_HOLD\n[    1.842999] PMIC PON log: Reset Type: HARD_RESET\n[    1.843042] PMIC PON log: PON Trigger: USB_CHARGER\n[    1.843056] PMIC PON log: PON Trigger: HARD_RESET\n[    1.843121] PMIC PON log: Reset Trigger: PS_HOLD\n[    1.843134] PMIC PON log: Reset Type: HARD_RESET\n[    1.843172] PMIC PON log: PON Trigger: HARD_RESET\n[    1.843234] PMIC PON log: Reset Trigger: PS_HOLD\n[    1.843247] PMIC PON log: Reset Type: HARD_RESET\n[    1.843289] PMIC PON log: PON Trigger: HARD_RESET\n[    1.845604] cdsprm: Init successful\n[    1.846022] 88e0000.qcom,msm-eud: ttyEUD0 at MMIO 0x0 (irq = 39, base_baud = 0) is a EUD UART\n[    1.847067] qbt:qbt_handler_init: entry\n[    1.849462] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled\n[    1.851625] ignore console register\n[    1.851889] ignore cons prob\n[    1.852437] msm_geni_serial_init: Driver initialized\n[    1.853440] Error: swapper/0: fastrpc_device_init: failed to create debugfs root dir\n[    1.853581] fastrpc soc:qcom,msm-adsprpc-mem: assigned reserved memory node adsp_region\n[    1.853628] Info: adsprpc (6211): swapper/0: init_secure_vmid_list: secure VMID = 22\n[    1.853630] Info: adsprpc (6211): swapper/0: init_secure_vmid_list: secure VMID = 37\n[    1.853634] adsprpc: fastrpc_init_privileged_gids: privileged GID: 2908\n[    1.853671] adsprpc: fastrpc_setup_service_locator: service location enabled for avs/audio (audio_pdr_adsprpc)\n[    1.853710] adsprpc: fastrpc_setup_service_locator: service location enabled for tms/servreg (sensors_pdr_adsprpc)\n[    1.913062] adsprpc: fastrpc_device_init: SSR notifier registered for adsp\n[    1.913064] adsprpc: fastrpc_device_init: SSR notifier registered for modem\n[    1.913068] adsprpc: fastrpc_device_init: SSR notifier registered for slpi\n[    1.913072] adsprpc: fastrpc_device_init: SSR notifier registered for cdsp\n[    1.926005] adreno-a6xx-gmu 3d6a000.qcom,gmu: Adding to iommu group 0\n[    1.932164] brd: module loaded\n[    1.937004] loop: module loaded\n[    1.937235] zram: Added device: zram0\n[    1.937431] platform soc:qcom,ion:qcom,ion-heap@19: assigned reserved memory node qseecom_ta_region\n[    1.937976] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qseecom_region\n[    1.938073] platform soc:qcom,ion:qcom,ion-heap@26: assigned reserved memory node user_contig_region\n[    1.938248] qseecom soc:qseecom@c1700000: assigned reserved memory node qseecom_region\n[    1.938297] QSEECOM: qseecom_init_control: qseecom.qsee_version = 0x1402000\n[    1.938344] QSEECOM: qseecom_retrieve_ce_data: Device does not support PFE/FDE\n[    1.939111] Loading NFC I2C driver\n[    1.941338] libphy: Fixed MDIO Bus: probed\n[    1.941355] tun: Universal TUN/TAP device driver, 1.6\n[    1.942028] cnss_utils: Unable to create debugfs -19\n[    1.942031] CLD80211: Initializing\n[    1.942274] usbcore: registered new interface driver r8152\n[    1.942290] usbcore: registered new interface driver lan78xx\n[    1.942302] usbcore: registered new interface driver asix\n[    1.942314] usbcore: registered new interface driver ax88179_178a\n[    1.942326] usbcore: registered new interface driver cdc_ether\n[    1.946254] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'\n[    1.949615] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    1.949618] ehci-pci: EHCI PCI platform driver\n[    1.949637] ehci-platform: EHCI generic platform driver\n[    1.951102] usbcore: registered new interface driver uas\n[    1.951116] usbcore: registered new interface driver usb-storage\n[    1.951132] usbcore: registered new interface driver usb_ehset_test\n[    1.951144] usbcore: registered new interface driver lvs\n[    1.951594] dummy_hcd dummy_hcd.0: USB Host+Gadget Emulator, driver 02 May 2005\n[    1.951601] dummy_hcd dummy_hcd.0: Dummy host controller\n[    1.951608] dummy_hcd dummy_hcd.0: new USB bus registered, assigned bus number 1\n[    1.951985] hub 1-0:1.0: USB hub found\n[    1.952006] hub 1-0:1.0: 1 port detected\n[    1.952989] usbcore: registered new interface driver xpad\n[    1.953004] usbcore: registered new interface driver usbtouchscreen\n[    1.953213] xiaomi_touch_probe: kernel base:-537681313792, phy base:14221983744\n[    1.953215] xiaomi_touch_probe enter\n[    1.953217] xiaomi_touch_parse_dt touch,name:xiaomi-touch\n[    1.953357] xiaomi_touch_probe over\n[    1.953527] aw8697 driver version v1.1.3\n[    1.953540] aw8697_i2c_init success\n[    1.953772] gf_platform: gf::gpio-reset:347\n[    1.953779] gf_platform: gf::irq_gpio:346\n[    1.953963] input: uinput-goodix as /devices/virtual/input/input1\n[    1.954101] goodix_fp soc:fingerprint_goodix: fp enable_regulator_3V0: of vreg successful found\n[    1.954589] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 339, hwirq 38\n[    1.954595] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 99\n[    1.954604] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 339 parent hwirq 99\n[    1.954665] goodix_fod: version V1.2.01\n[    1.954785] goodix_fod: goodix status = 0x0\n[    1.955789] rtc-pm8xxx c440000.qcom,spmi:qcom,pmk8350@0:rtc@6100: registered as rtc0\n[    1.955840] rtc-pm8xxx c440000.qcom,spmi:qcom,pmk8350@0:rtc@6100: setting system clock to 1970-08-24T21:51:51 UTC (20382711)\n[    1.956019] i2c /dev entries driver\n[    1.956632] synx: synx device initialization start\n[    1.956728] synx: synx device initialization success\n[    1.957355] uvcvideo: Unable to create debugfs directory\n[    1.957371] usbcore: registered new interface driver uvcvideo\n[    1.957373] USB Video Class driver (1.1.1)\n[    1.957374] gspca_main: v2.14.0 registered\n[    1.958616] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    1.958620] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    1.959013] device-mapper: uevent: version 1.0.3\n[    1.959185] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com\n[    1.959391] device-mapper: verity-avb: AVB error handler initialized with vbmeta device: PARTUUID=b64522b4-058c-ffe9-7228-033fc833ae87\n[    1.959644] bt_dt_parse_vreg_info: qcom,bt-vdd-io is not provided in device tree\n[    1.959694] bt_dt_parse_vreg_info: qcom,bt-vdd-rfacmn is not provided in device tree\n[    1.959705] bt_dt_parse_vreg_info: qcom,bt-vdd-rfa-0p8 is not provided in device tree\n[    1.959876] bt-debug-gpio not provided in devicetree\n[    1.959879] bt_dt_parse_clk_info: clocks is not provided in device tree\n[    1.959880] bt_power_populate_dt_pinfo: clock not provided in device tree\n[    1.959943] TCS CMD base address is 0x000000000b2e5510 with length 0x0000000000000690\n[    1.960621] cpuidle: using governor qcom\n[    1.960868] lpm_levels: Cluster (L3) stats not registered\n[    1.965573] hidraw: raw HID events driver (C) Jiri Kosina\n[    1.966044] usbcore: registered new interface driver usbhid\n[    1.966046] usbhid: USB HID core driver\n[    1.966362] ashmem: initialized\n[    1.966451] wlan_hdd_state wlan major(493) initialized\n[    1.966744] haven: Haven: disabling HYP UART\n[    1.967187] hh_msgq: Registered client for label: 0\n[    2.027512] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): allocate IRQ 340, hwirq 8\n[    2.027516] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): found parent hwirq 144\n[    2.027522] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): alloc_irqs_parent for 340 parent hwirq 144\n[    2.029189] qcom-llcc-pmu 9095000.llcc-pmu: Registered llcc_pmu, type: 8\n[    2.039196] random: fast init done\n[    2.040283] gnss: GNSS driver registered with major 491\n[    2.040809] usbcore: registered new interface driver snd-usb-audio\n[    2.041508] DATARMNETb1c42acd9c(): rmnet_offload initializing\n[    2.041512] DATARMNET163e93649e(): Starting rmnet SHS module 9731 \n[    2.042168] [mi_disp:mi_disp_core_init] [info]mi disp_core driver initialized!\n[    2.042177] [mi_disp:mi_disp_cdev_register] [info]cdev name = disp_feature, dev_id = (490:0)\n[    2.042270] [mi_disp:mi_disp_feature_init] [info]mi disp_feature driver initialized!\n[    2.042769] dsi_phy ae94400.qcom,mdss_dsi_phy0: ae94400.qcom,mdss_dsi_phy0 supply gdsc not found, using dummy regulator\n[    2.042883] [drm:dsi_pll_init] [msm-dsi-info]: DSI_PLL_0: DSI pll label = dsi_pll_5nm\n[    2.042888] [drm:dsi_pll_init] [msm-dsi-info]: DSI_PLL_0: PLL SSC enabled\n[    2.042895] dsi_pll_init: PLL base=(____ptrval____)\n[    2.043121] dsi_pll_5nm_get_gdsc_status: reg:0xf822f000 status:1\n[    2.043126] vco_5nm_recalc_rate: handoff_resources true\n[    2.043341] dsi_pll_5nm_get_gdsc_status: reg:0xf822f000 status:1\n[    2.043344] vco_5nm_recalc_rate: handoff_resources true\n[    2.043581] dsi_pll_clock_register_5nm: Registered DSI PLL ndx=0, clocks successfully\n[    2.043650] [drm:dsi_phy_driver_probe] [msm-dsi-info]: DSI_0: Probe successful\n[    2.043727] dsi_phy ae96400.qcom,mdss_dsi_phy1: ae96400.qcom,mdss_dsi_phy1 supply gdsc not found, using dummy regulator\n[    2.043811] [drm:dsi_pll_init] [msm-dsi-info]: DSI_PLL_0: DSI pll label = dsi_pll_5nm\n[    2.043816] [drm:dsi_pll_init] [msm-dsi-info]: DSI_PLL_1: PLL SSC enabled\n[    2.043823] dsi_pll_init: PLL base=(____ptrval____)\n[    2.043881] dsi_pll_5nm_get_gdsc_status: reg:0xf822f000 status:1\n[    2.048921] vco_5nm_recalc_rate: PLL not enabled\n[    2.048923] vco_5nm_recalc_rate: handoff_resources false\n[    2.049156] dsi_pll_5nm_get_gdsc_status: reg:0xf822f000 status:1\n[    2.054169] vco_5nm_recalc_rate: PLL not enabled\n[    2.054172] vco_5nm_recalc_rate: handoff_resources false\n[    2.054442] dsi_pll_clock_register_5nm: Registered DSI PLL ndx=1, clocks successfully\n[    2.054447] [drm:dsi_phy_driver_probe] [msm-dsi-info]: DSI_1: Probe successful\n[    2.055958] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.055965] [drm:dsi_ctrl_get] *ERROR* [msm-dsi-error]: inv: Device with of node not found rc=-517\n[    2.061565] voice_init: rc=0\n[    2.062223] [CSPL] Initializing misc device\n[    2.062647] [ELUS] : (elliptic_driver_init) : elliptic_class creation name chardev\n[    2.069303] msm-auxpcm-dev soc:qcom,msm-pri-auxpcm: island supported entry not found\n[    2.069308] msm-auxpcm-dev soc:qcom,msm-pri-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.069319] msm-auxpcm-dev soc:qcom,msm-pri-auxpcm: dev name soc:qcom,msm-pri-auxpcm\n[    2.069369] msm-auxpcm-dev soc:qcom,msm-sec-auxpcm: island supported entry not found\n[    2.069373] msm-auxpcm-dev soc:qcom,msm-sec-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.069381] msm-auxpcm-dev soc:qcom,msm-sec-auxpcm: dev name soc:qcom,msm-sec-auxpcm\n[    2.069417] msm-auxpcm-dev soc:qcom,msm-tert-auxpcm: island supported entry not found\n[    2.069421] msm-auxpcm-dev soc:qcom,msm-tert-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.069429] msm-auxpcm-dev soc:qcom,msm-tert-auxpcm: dev name soc:qcom,msm-tert-auxpcm\n[    2.069465] msm-auxpcm-dev soc:qcom,msm-quat-auxpcm: island supported entry not found\n[    2.069468] msm-auxpcm-dev soc:qcom,msm-quat-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.069476] msm-auxpcm-dev soc:qcom,msm-quat-auxpcm: dev name soc:qcom,msm-quat-auxpcm\n[    2.069512] msm-auxpcm-dev soc:qcom,msm-quin-auxpcm: island supported entry not found\n[    2.069515] msm-auxpcm-dev soc:qcom,msm-quin-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.069523] msm-auxpcm-dev soc:qcom,msm-quin-auxpcm: dev name soc:qcom,msm-quin-auxpcm\n[    2.069559] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: island supported entry not found\n[    2.069562] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: msm_auxpcm_dev_probe: dev (____ptrval____), dai_data (____ptrval____), auxpcm_pdata (____ptrval____)\n[    2.069570] msm-auxpcm-dev soc:qcom,msm-sen-auxpcm: dev name soc:qcom,msm-sen-auxpcm\n[    2.069895] msm_dai_q6_probe: dev name soc:qcom,msm-dai-q6, id:-1\n[    2.095960] msm-dai-q6 soc:qcom,msm-dai-q6: msm_dai_q6_probe: added child node\n[    2.096327] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6-afe-loopback-tx, id:24577\n[    2.096503] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-sb-7-rx, id:16398\n[    2.096540] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-sb-7-tx, id:16399\n[    2.096571] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-sb-8-tx, id:16401\n[    2.096600] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-bt-sco-rx, id:12288\n[    2.096629] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-bt-sco-tx, id:12289\n[    2.096658] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-int-fm-rx, id:12292\n[    2.096687] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-int-fm-tx, id:12293\n[    2.096718] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-be-afe-pcm-rx, id:224\n[    2.096748] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-be-afe-pcm-tx, id:225\n[    2.096776] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-afe-proxy-rx, id:241\n[    2.096806] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-afe-proxy-tx, id:240\n[    2.096834] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-incall-record-rx, id:32771\n[    2.096865] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-incall-record-tx, id:32772\n[    2.096894] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-incall-music-rx, id:32773\n[    2.096927] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-incall-music-2-rx, id:32770\n[    2.096959] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-afe-proxy-tx-1, id:242\n[    2.096987] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-proxy-rx, id:8194\n[    2.097014] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-proxy-tx, id:8195\n[    2.097042] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-usb-audio-rx, id:28672\n[    2.097069] msm_dai_q6_dev_probe: dev name soc:qcom,msm-dai-q6:qcom,msm-dai-q6-usb-audio-tx, id:28673\n[    2.099152] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim dev id 0x0\n[    2.099157] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim Rx line 0x3 , Tx ine 0x0\n[    2.099161] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim: island supported entry not found\n[    2.099164] msm_dai_q6_mi2s_get_lineconfig: no line is assigned\n[    2.099168] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x5 capture sdline 0x0\n[    2.099172] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-prim: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 4 capture ch_mx 0\n[    2.100542] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec dev id 0x1\n[    2.100547] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec Rx line 0x1 , Tx ine 0x0\n[    2.100551] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec: island supported entry not found\n[    2.100552] msm_dai_q6_mi2s_get_lineconfig: no line is assigned\n[    2.100556] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x1 capture sdline 0x0\n[    2.100559] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-sec: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 2 capture ch_mx 0\n[    2.101887] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert dev id 0x2\n[    2.101892] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert Rx line 0x0 , Tx ine 0x3\n[    2.101895] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert: island supported entry not found\n[    2.101897] msm_dai_q6_mi2s_get_lineconfig: no line is assigned\n[    2.101900] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x0 capture sdline 0x5\n[    2.101903] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-tert: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 0 capture ch_mx 4\n[    2.103230] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat dev id 0x3\n[    2.103234] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat Rx line 0x1 , Tx ine 0x2\n[    2.103238] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat: island supported entry not found\n[    2.103242] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x1 capture sdline 0x2\n[    2.103245] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quat: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 2 capture ch_mx 2\n[    2.104568] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin dev id 0x4\n[    2.104574] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin Rx line 0x1 , Tx ine 0x2\n[    2.104578] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin: island supported entry not found\n[    2.104582] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x1 capture sdline 0x2\n[    2.104586] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-quin: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 2 capture ch_mx 2\n[    2.105913] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary dev id 0x5\n[    2.105917] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary: dev name soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary Rx line 0x0 , Tx ine 0x3\n[    2.105921] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary: island supported entry not found\n[    2.105923] msm_dai_q6_mi2s_get_lineconfig: no line is assigned\n[    2.105926] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary: msm_dai_q6_mi2s_platform_data_validation: playback sdline 0x0 capture sdline 0x5\n[    2.105930] msm-dai-q6-mi2s soc:qcom,msm-dai-mi2s:qcom,msm-dai-q6-mi2s-senary: msm_dai_q6_mi2s_platform_data_validation: playback ch_max 0 capture ch_mx 4\n[    2.105951] msm-dai-mi2s soc:qcom,msm-dai-mi2s: msm_dai_mi2s_q6_probe: added child node\n[    2.106306] msm_dai_q6_spdif_dev_probe: dev name soc:qcom,msm-dai-q6-spdif-pri-rx, id:20480\n[    2.106344] msm_dai_q6_spdif_dev_probe: dev name soc:qcom,msm-dai-q6-spdif-pri-tx, id:20481\n[    2.106377] msm_dai_q6_spdif_dev_probe: dev name soc:qcom,msm-dai-q6-spdif-sec-rx, id:20482\n[    2.106410] msm_dai_q6_spdif_dev_probe: dev name soc:qcom,msm-dai-q6-spdif-sec-tx, id:20483\n[    2.107051] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9100\n[    2.107055] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.107060] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.107064] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.107068] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.107071] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.108390] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: island supported entry not found\n[    2.108395] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.108399] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.108403] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.108407] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.108411] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.108414] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-rx:qcom,msm-dai-q6-tdm-pri-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.108437] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-rx: msm_dai_tdm_q6_probe: added child node\n[    2.108472] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9101\n[    2.108475] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.108479] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.108482] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.108486] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.108489] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.109798] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: island supported entry not found\n[    2.109802] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.109806] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.109810] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.109814] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.109817] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.109821] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-pri-tx:qcom,msm-dai-q6-tdm-pri-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.109843] msm-dai-tdm soc:qcom,msm-dai-tdm-pri-tx: msm_dai_tdm_q6_probe: added child node\n[    2.109877] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9110\n[    2.109880] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.109884] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.109887] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.109891] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.109894] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.111227] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: island supported entry not found\n[    2.111231] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.111235] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.111239] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.111242] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.111246] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.111249] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-rx:qcom,msm-dai-q6-tdm-sec-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.111273] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-rx: msm_dai_tdm_q6_probe: added child node\n[    2.111308] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9111\n[    2.111311] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.111315] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.111319] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.111322] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.111325] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.112634] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: island supported entry not found\n[    2.112639] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.112643] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.112647] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.112652] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.112656] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.112660] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sec-tx:qcom,msm-dai-q6-tdm-sec-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.112684] msm-dai-tdm soc:qcom,msm-dai-tdm-sec-tx: msm_dai_tdm_q6_probe: added child node\n[    2.112722] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9120\n[    2.112726] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x2\n[    2.112731] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.112734] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.112738] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.112742] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.114054] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: island supported entry not found\n[    2.114059] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x0\n[    2.114063] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.114066] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.114070] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.114074] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.114077] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.115408] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: island supported entry not found\n[    2.115413] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x0\n[    2.115416] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.115420] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.115424] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.115428] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.115431] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-rx:qcom,msm-dai-q6-tdm-tert-rx-1: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.115453] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-rx: msm_dai_tdm_q6_probe: added child node\n[    2.115488] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9121\n[    2.115492] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x2\n[    2.115496] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.115499] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.115503] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.115506] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.116816] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: island supported entry not found\n[    2.116820] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x0\n[    2.116824] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.116828] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.116832] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.116836] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.116839] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.118164] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: island supported entry not found\n[    2.118168] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x0\n[    2.118172] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.118176] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.118180] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.118183] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.118187] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-tert-tx:qcom,msm-dai-q6-tdm-tert-tx-1: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.118209] msm-dai-tdm soc:qcom,msm-dai-tdm-tert-tx: msm_dai_tdm_q6_probe: added child node\n[    2.118244] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9130\n[    2.118247] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.118251] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.118254] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.118258] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.118261] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.119572] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: island supported entry not found\n[    2.119577] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.119580] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.119584] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.119588] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.119592] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.119595] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-rx:qcom,msm-dai-q6-tdm-quat-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.119618] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-rx: msm_dai_tdm_q6_probe: added child node\n[    2.119652] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9131\n[    2.119655] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.119659] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.119663] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.119666] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.119669] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.121021] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: island supported entry not found\n[    2.121027] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.121031] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.121035] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.121039] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.121044] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.121048] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quat-tx:qcom,msm-dai-q6-tdm-quat-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.121074] msm-dai-tdm soc:qcom,msm-dai-tdm-quat-tx: msm_dai_tdm_q6_probe: added child node\n[    2.121110] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9140\n[    2.121114] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.121118] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.121122] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.121126] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.121129] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.122438] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: island supported entry not found\n[    2.122442] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.122446] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.122450] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.122454] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.122457] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.122461] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-rx:qcom,msm-dai-q6-tdm-quin-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.122484] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-rx: msm_dai_tdm_q6_probe: added child node\n[    2.122518] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9141\n[    2.122521] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.122525] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.122528] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.122532] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.122535] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.123843] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: island supported entry not found\n[    2.123847] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.123851] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.123855] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.123859] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.123862] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.123866] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-quin-tx:qcom,msm-dai-q6-tdm-quin-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.123893] msm-dai-tdm soc:qcom,msm-dai-tdm-quin-tx: msm_dai_tdm_q6_probe: added child node\n[    2.123926] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9150\n[    2.123930] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.123934] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.123937] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.123940] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.123943] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.125252] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: island supported entry not found\n[    2.125256] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.125260] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.125264] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.125267] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.125271] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.125275] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-rx:qcom,msm-dai-q6-tdm-sen-rx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.125297] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-rx: msm_dai_tdm_q6_probe: added child node\n[    2.125333] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: Group ID from DT file 0x9151\n[    2.125336] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: Group Num Ports from DT file 0x1\n[    2.125340] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: Clk Rate from DT file 1536000\n[    2.125343] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: clk attribute not found\n[    2.125347] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: tdm lane mask not found\n[    2.125350] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: Clk id from DT file 1\n[    2.126662] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: island supported entry not found\n[    2.126667] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Sync Mode from DT file 0x1\n[    2.126670] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Sync Src from DT file 0x1\n[    2.126674] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Data Out from DT file 0x0\n[    2.126678] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Invert Sync from DT file 0x1\n[    2.126682] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Data Delay from DT file 0x1\n[    2.126685] msm-dai-q6-tdm soc:qcom,msm-dai-tdm-sen-tx:qcom,msm-dai-q6-tdm-sen-tx-0: msm_dai_q6_tdm_dev_probe: Data Align from DT file 0x0\n[    2.126711] msm-dai-tdm soc:qcom,msm-dai-tdm-sen-tx: msm_dai_tdm_q6_probe: added child node\n[    2.128656] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-rx dev id 0xb000\n[    2.128661] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-rx: island supported entry not found\n[    2.128664] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-rx: cdc dma data align supported entry not found\n[    2.129989] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-tx dev id 0xb001\n[    2.129993] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-tx: island supported entry not found\n[    2.129996] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-0-tx: cdc dma data align supported entry not found\n[    2.131355] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-rx dev id 0xb002\n[    2.131359] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-rx: island supported entry not found\n[    2.131363] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-rx: cdc dma data align supported entry not found\n[    2.132692] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-tx dev id 0xb003\n[    2.132696] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-tx: island supported entry not found\n[    2.132700] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-1-tx: cdc dma data align supported entry not found\n[    2.134025] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-2-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-2-tx dev id 0xb005\n[    2.134030] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-2-tx: island supported entry not found\n[    2.134033] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-wsa-cdc-dma-2-tx: cdc dma data align supported entry not found\n[    2.135364] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-0-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-0-tx dev id 0xb021\n[    2.135369] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-0-tx: cdc dma data align supported entry not found\n[    2.136692] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-1-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-1-tx dev id 0xb023\n[    2.136697] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-1-tx: island supported entry not found\n[    2.136700] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-1-tx: cdc dma data align supported entry not found\n[    2.138028] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-2-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-2-tx dev id 0xb025\n[    2.138032] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-2-tx: island supported entry not found\n[    2.138036] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-va-cdc-dma-2-tx: cdc dma data align supported entry not found\n[    2.139364] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-0-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-0-rx dev id 0xb030\n[    2.139368] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-0-rx: island supported entry not found\n[    2.139370] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-0-rx: cdc dma data align supported entry not found\n[    2.140718] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-1-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-1-rx dev id 0xb032\n[    2.140722] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-1-rx: island supported entry not found\n[    2.140725] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-1-rx: cdc dma data align supported entry not found\n[    2.142047] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-2-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-2-rx dev id 0xb034\n[    2.142051] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-2-rx: island supported entry not found\n[    2.142054] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-2-rx: cdc dma data align supported entry not found\n[    2.143379] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-3-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-3-rx dev id 0xb036\n[    2.143383] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-3-rx: island supported entry not found\n[    2.143386] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-3-rx: cdc dma data align supported entry not found\n[    2.144708] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-4-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-4-rx dev id 0xb038\n[    2.144712] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-4-rx: island supported entry not found\n[    2.144715] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-4-rx: cdc dma data align supported entry not found\n[    2.146044] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-5-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-5-rx dev id 0xb03a\n[    2.146048] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-5-rx: island supported entry not found\n[    2.146052] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-5-rx: cdc dma data align supported entry not found\n[    2.147380] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-6-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-6-rx dev id 0xb03c\n[    2.147384] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-6-rx: island supported entry not found\n[    2.148710] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-7-rx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-7-rx dev id 0xb03e\n[    2.148714] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-7-rx: island supported entry not found\n[    2.148717] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-rx-cdc-dma-7-rx: cdc dma data align supported entry not found\n[    2.150076] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-0-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-0-tx dev id 0xb031\n[    2.150080] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-0-tx: island supported entry not found\n[    2.150083] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-0-tx: cdc dma data align supported entry not found\n[    2.151410] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-1-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-1-tx dev id 0xb033\n[    2.151414] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-1-tx: island supported entry not found\n[    2.151417] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-1-tx: cdc dma data align supported entry not found\n[    2.152742] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-2-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-2-tx dev id 0xb035\n[    2.152746] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-2-tx: island supported entry not found\n[    2.152749] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-2-tx: cdc dma data align supported entry not found\n[    2.154075] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-3-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-3-tx dev id 0xb037\n[    2.154079] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-3-tx: island supported entry not found\n[    2.154082] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-3-tx: cdc dma data align supported entry not found\n[    2.155406] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-4-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-4-tx dev id 0xb039\n[    2.155410] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-4-tx: island supported entry not found\n[    2.155413] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-4-tx: cdc dma data align supported entry not found\n[    2.156740] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-5-tx: msm_dai_q6_cdc_dma_dev_probe: dev name soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-5-tx dev id 0xb03b\n[    2.156744] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-5-tx: island supported entry not found\n[    2.156747] msm-dai-cdc-dma-dev soc:qcom,msm-dai-cdc-dma:qcom,msm-dai-tx-cdc-dma-5-tx: cdc dma data align supported entry not found\n[    2.156770] msm-dai-cdc-dma soc:qcom,msm-dai-cdc-dma: msm_dai_cdc_dma_q6_probe: added child node\n[    2.161102] voice_alloc_cal_mem_map_table: data 0000000000000000 phys (____ptrval____)\n[    2.161451] voice_alloc_cal_mem_map_table: data 0000000000000000 phys (____ptrval____)\n[    2.185239] u32 classifier\n[    2.185241]     input device check on\n[    2.185242]     Actions configured\n[    2.185817] xt_time: kernel timezone is -0000\n[    2.185917] wireguard: WireGuard 1.0.20210606 loaded. See www.wireguard.com for information.\n[    2.185919] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    2.185972] ipip: IPv4 and MPLS over IPv4 tunneling driver\n[    2.186260] gre: GRE over IPv4 demultiplexor driver\n[    2.186263] ip_gre: GRE over IPv4 tunneling driver\n[    2.186794] IPv4 over IPsec tunneling driver\n[    2.187116] iptable_raw: Enabling raw table before defrag\n[    2.187243] Initializing XFRM netlink socket\n[    2.187253] IPsec XFRM device driver\n[    2.187503] NET: Registered protocol family 10\n[    2.188311] Segment Routing with IPv6\n[    2.188387] mip6: Mobile IPv6\n[    2.188491] ip6table_raw: Enabling raw table before defrag\n[    2.188769] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    2.189206] ip6_gre: GRE over IPv6 tunneling driver\n[    2.189433] NET: Registered protocol family 17\n[    2.189445] NET: Registered protocol family 15\n[    2.189589] Bluetooth: RFCOMM TTY layer initialized\n[    2.189594] Bluetooth: RFCOMM socket layer initialized\n[    2.189596] Bluetooth: RFCOMM ver 1.11\n[    2.189599] Bluetooth: HIDP (Human Interface Emulation) ver 1.2\n[    2.189602] Bluetooth: HIDP socket layer initialized\n[    2.189619] l2tp_core: L2TP core driver, V2.0\n[    2.189621] tipc: Activated (version 2.0.0)\n[    2.189694] NET: Registered protocol family 30\n[    2.189769] tipc: Started in single node mode\n[    2.191143] qcom_haven_qrtr soc:qrtr-haven: cant parse shared mem node!\n[    2.191175] qcom_haven_qrtr: probe of soc:qrtr-haven failed with error -22\n[    2.191731] No device name found in device tree.\n[    2.192654] ch_haven_recv soc:qcom,svm_neuron_block:channel0: cant parse shared mem node!\n[    2.192657] ch_haven_recv soc:qcom,svm_neuron_block:channel0: failed to map memory -22\n[    2.192664] ch_haven_recv: probe of soc:qcom,svm_neuron_block:channel0 failed with error -22\n[    2.193187] ch_haven_send soc:qcom,svm_neuron_block:channel1: cant parse shared mem node!\n[    2.193194] ch_haven_send: probe of soc:qcom,svm_neuron_block:channel1 failed with error -22\n[    2.193863] registered taskstats version 1\n[    2.193865] Loading compiled-in X.509 certificates\n[    2.193926] Key type ._fscrypt registered\n[    2.193928] Key type .fscrypt registered\n[    2.193930] Key type fscrypt-provisioning registered\n[    2.194022] pstore: Invalid compression size for deflate: 0\n[    2.229591] Unable to find log_buf by kallsyms!\n[    2.229794] spss_utils [spss_parse_dt]: iar_buf_addr [0x8d800000].\n[    2.233490] cnss: use-pm-domain is 1\n[    2.233496] cnss: set_wlaon_pwr_ctrl is 0\n[    2.233502] cnss: TCS CMD base address is 0x000000000b2e5510 with length 0x0000000000000690\n[    2.233519] cnss2 b0000000.qcom,cnss-qca6490: can't request region for resource [mem 0x0b2e5510-0x0b2e5b9f]\n[    2.233521] cnss: Failed to map TCS CMD address, err = -16\n[    2.233526] cnss: CommandDB name is not present for CPR\n[    2.233701] cnss: Got regulator: vdd-wlan-io, min_uv: 1800000, max_uv: 1800000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.233932] cnss: Got regulator: wlan-ant-switch, min_uv: 2800000, max_uv: 2800000, load_ua: 0, delay_us: 0, need_unvote: 0\n[    2.234016] cnss: Got regulator: vdd-wlan-aon, min_uv: 950000, max_uv: 952000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.234069] cnss: Got regulator: vdd-wlan-dig, min_uv: 950000, max_uv: 952000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.234119] cnss: Got regulator: vdd-wlan-rfa1, min_uv: 1880000, max_uv: 1880000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.234175] cnss: Got regulator: vdd-wlan-rfa2, min_uv: 1350000, max_uv: 1350000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.234209] cnss: Failed to get optional clock rf_clk, err = -2\n[    2.234297] cnss: BT GPIO: 373\n[    2.234301] cnss: Regulator vdd-wlan-io is being enabled\n[    2.234432] cnss: Regulator wlan-ant-switch is being enabled\n[    2.234829] cnss: Regulator vdd-wlan-aon is being enabled\n[    2.235425] cnss: Regulator vdd-wlan-dig is being enabled\n[    2.235534] cnss: Regulator vdd-wlan-rfa1 is being enabled\n[    2.235644] cnss: Regulator vdd-wlan-rfa2 is being enabled\n[    2.235743] cnss: BT_EN_GPIO State: Off. Delay WLAN_GPIO enable\n[    2.237009] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.237020] [drm:dsi_ctrl_get] *ERROR* [msm-dsi-error]: inv: Device with of node not found rc=-517\n[    2.242410] disp_cc_pll0 PLL is already enabled\n[    2.242584] disp_cc-lahaina af00000.qcom,dispcc: Registered DISP CC clocks\n[    2.242712] cam_cc_bps_gdsc: supplied by pm8350c_s8_level\n[    2.242922] cam_cc_ife_0_gdsc: supplied by pm8350c_s8_level\n[    2.243098] cam_cc_ife_1_gdsc: supplied by pm8350c_s8_level\n[    2.243271] cam_cc_ife_2_gdsc: supplied by pm8350c_s8_level\n[    2.243445] cam_cc_ipe_0_gdsc: supplied by pm8350c_s8_level\n[    2.243626] cam_cc_sbi_gdsc: supplied by pm8350c_s8_level\n[    2.243820] cam_cc_titan_top_gdsc: supplied by pm8350c_s8_level\n[    2.244005] disp_cc_mdss_core_gdsc: supplied by pm8350c_s8_level\n[    2.244215] video_cc_mvs0_gdsc: supplied by pm8350c_s8_level\n[    2.244387] video_cc_mvs0c_gdsc: supplied by pm8350c_s8_level\n[    2.244557] video_cc_mvs1_gdsc: supplied by pm8350c_s8_level\n[    2.244728] video_cc_mvs1c_gdsc: supplied by pm8350c_s8_level\n[    2.245057] msm_drm ae00000.qcom,mdss_mdp: qcom,sde_rscc not probed yet\n[    2.247915] rmnet_ipa3 started initialization\n[    2.256790] random: crng init done\n[    2.271576] arm-smmu 15000000.apps-smmu: \tcoherent table walk\n[    2.271582] arm-smmu 15000000.apps-smmu: \tstream matching with 89 register groups\n[    2.272888] msm-dwc3 a600000.ssusb: Adding to iommu group 1\n[    2.273172] msm-dwc3 a600000.ssusb: IRQ hs_phy_irq not found\n[    2.275148] dwc3 a600000.dwc3: changing max_speed on rev 00000000\n[    2.276862] usb_bam_init: setting SPS_BAM_SMMU_EN flag with (a704000.qcom,usbbam)\n[    2.276928] sps:BAM 0x000000000a704000 is registered\n[    2.279715] msm_vidc_v4l2 aa00000.qcom,vidc:non_secure_cb: Adding to iommu group 2\n[    2.281776] msm_vidc_v4l2 aa00000.qcom,vidc:secure_non_pixel_cb: Adding to iommu group 3\n[    2.283609] msm_vidc_v4l2 aa00000.qcom,vidc:secure_bitstream_cb: Adding to iommu group 4\n[    2.285437] msm_vidc_v4l2 aa00000.qcom,vidc:secure_pixel_cb: Adding to iommu group 5\n[    2.288401] coresight-clk-disable-amba 6048000.tmc: Adding to iommu group 6\n[    2.291560] kgsl-3d 3d00000.qcom,kgsl-3d0: bound 3d6a000.qcom,gmu (ops 0xffffffec7f9ca2e8)\n[    2.296559] platform 3da0000.qcom,kgsl-iommu:gfx3d_user: Adding to iommu group 7\n[    2.297613] platform 3da0000.qcom,kgsl-iommu:gfx3d_lpac: Adding to iommu group 8\n[    2.298515] platform 3da0000.qcom,kgsl-iommu:gfx3d_secure: Adding to iommu group 9\n[    2.305513] msm_cvp ab00000.qcom,cvp:cvp_non_secure_cb: Adding to iommu group 10\n[    2.307332] msm_cvp ab00000.qcom,cvp:cvp_secure_nonpixel_cb: Adding to iommu group 11\n[    2.309138] msm_cvp ab00000.qcom,cvp:cvp_secure_pixel_cb: Adding to iommu group 12\n[    2.310541] msm_cvp ab00000.qcom,cvp:qcom,msm-cvp,mem_cdsp: assigned reserved memory node cdsp_region\n[    2.316464] gpi_dma 900000.qcom,gpi-dma: Adding to iommu group 13\n[    2.317664] gpi_dma a00000.qcom,gpi-dma: Adding to iommu group 14\n[    2.318910] gpi_dma 800000.qcom,gpi-dma: Adding to iommu group 15\n[    2.320148] minidump-id not found for ipa_fws\n[    2.320200] subsys-pil-tz soc:qcom,ipa_fws: for ipa_fws segments only will be dumped.\n[    2.320301] subsys-pil-tz soc:qcom,ipa_fws: for md_ipa_fws segments only will be dumped.\n[    2.320654] minidump-id not found for evass\n[    2.320696] subsys-pil-tz abb0000.qcom,evass: for evass segments only will be dumped.\n[    2.320775] subsys-pil-tz abb0000.qcom,evass: for md_evass segments only will be dumped.\n[    2.321108] minidump-id not found for trustedvm\n[    2.321148] subsys-pil-tz soc:qcom,trustedvm@d0800000: for trustedvm segments only will be dumped.\n[    2.321231] subsys-pil-tz soc:qcom,trustedvm@d0800000: for md_trustedvm segments only will be dumped.\n[    2.321545] minidump-id not found for a660_zap\n[    2.321588] subsys-pil-tz soc:qcom,kgsl-hyp: for a660_zap segments only will be dumped.\n[    2.321670] subsys-pil-tz soc:qcom,kgsl-hyp: for md_a660_zap segments only will be dumped.\n[    2.322077] hh_msgq: Registered client for label: 1\n[    2.322480] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb1: Adding to iommu group 16\n[    2.322900] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb2: Adding to iommu group 17\n[    2.323306] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb3: Adding to iommu group 18\n[    2.323724] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb4: Adding to iommu group 19\n[    2.324126] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb5: Adding to iommu group 20\n[    2.324533] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb6: Adding to iommu group 21\n[    2.324953] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb7: Adding to iommu group 22\n[    2.325352] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb8: Adding to iommu group 23\n[    2.326086] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb9: Adding to iommu group 24\n[    2.326479] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb10: Adding to iommu group 25\n[    2.326875] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb11: Adding to iommu group 26\n[    2.327266] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb12: Adding to iommu group 27\n[    2.327675] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb13: Adding to iommu group 28\n[    2.328077] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb14: Adding to iommu group 29\n[    2.328467] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb15: Adding to iommu group 30\n[    2.328881] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb16: Adding to iommu group 31\n[    2.329300] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb17: Adding to iommu group 32\n[    2.329712] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb18: Adding to iommu group 33\n[    2.330142] fastrpc soc:qcom,msm_fastrpc:qcom,msm_fastrpc_compute_cb19: Adding to iommu group 34\n[    2.330462] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.330467] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.330962] qce 1de0000.qcedev: Adding to iommu group 35\n[    2.331415] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    2.331570] qce 1de0000.qcedev: QTI Crypto 5.6.0 device found @0x1de0000\n[    2.331643] sps:BAM 0x0000000001dc4000 is registered\n[    2.331718] sps:BAM 0x0000000001dc4000 (va:0x000000002cb3c40c) enabled: ver:0x27, number of pipes:16\n[    2.331819] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 40\n[    2.333614] qce 1de0000.qcedev:qcom_cedev_ns_cb: Adding to iommu group 36\n[    2.335524] qce 1de0000.qcedev:qcom_cedev_s_cb: Adding to iommu group 37\n[    2.335958] qcrypto 1de0000.qcrypto: Adding to iommu group 38\n[    2.336160] QCE50: __qce_get_device_tree_data: CE operating frequency is not defined, setting to default 100MHZ\n[    2.336312] qcrypto 1de0000.qcrypto: QTI Crypto 5.6.0 device found @0x1de0000\n[    2.336414] QCE50: qce_sps_init:  QTI MSM CE-BAM at 0x0000000001dc4000 irq 40\n[    2.336657] qcrypto 1de0000.qcrypto: qcrypto-ecb-aes\n[    2.336778] qcrypto 1de0000.qcrypto: qcrypto-cbc-aes\n[    2.336890] qcrypto 1de0000.qcrypto: qcrypto-ctr-aes\n[    2.336981] qcrypto 1de0000.qcrypto: qcrypto-ecb-des\n[    2.337073] qcrypto 1de0000.qcrypto: qcrypto-cbc-des\n[    2.337166] qcrypto 1de0000.qcrypto: qcrypto-ecb-3des\n[    2.337261] qcrypto 1de0000.qcrypto: qcrypto-cbc-3des\n[    2.337351] qcrypto 1de0000.qcrypto: qcrypto-xts-aes\n[    2.337442] qcrypto 1de0000.qcrypto: qcrypto-sha1\n[    2.337531] qcrypto 1de0000.qcrypto: qcrypto-sha256\n[    2.337623] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes\n[    2.337714] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des\n[    2.337803] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des\n[    2.337899] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes\n[    2.337992] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des\n[    2.338089] qcrypto 1de0000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des\n[    2.338180] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha1\n[    2.338270] qcrypto 1de0000.qcrypto: qcrypto-hmac-sha256\n[    2.338375] qcrypto 1de0000.qcrypto: qcrypto-aes-ccm\n[    2.338464] qcrypto 1de0000.qcrypto: qcrypto-rfc4309-aes-ccm\n[    2.340357] uaudio-qmi soc:usb_audio_qmi_dev: Adding to iommu group 39\n[    2.341082] cnss: Assert WLAN_EN GPIO successfully\n[    2.341098] cnss: Failed to enable PCIe RC0, err = -517\n[    2.341101] cnss: Retry PCI link training #1\n[    2.341108] cnss: Failed to enable PCIe RC0, err = -517\n[    2.341111] cnss: Retry PCI link training #2\n[    2.341118] cnss: Failed to enable PCIe RC0, err = -517\n[    2.341121] cnss: Retry PCI link training #3\n[    2.341128] cnss: Failed to enable PCIe RC0, err = -517\n[    2.341139] cnss: De-assert WLAN_EN GPIO successfully\n[    2.341142] cnss: Regulator vdd-wlan-rfa2 is being disabled\n[    2.341194] cnss: Regulator vdd-wlan-rfa1 is being disabled\n[    2.341230] [sde_rsc_hw:rsc_hw_init_v3:538]: sde rsc init successfully done\n[    2.341231] cnss: Regulator vdd-wlan-dig is being disabled\n[    2.341259] [sde_rsc:sde_rsc_probe:1778]: sde rsc index:0 probed successfully\n[    2.341269] cnss: Regulator vdd-wlan-aon is being disabled\n[    2.341305] cnss: Regulator wlan-ant-switch is being disabled\n[    2.341327] cnss: Regulator vdd-wlan-io is being disabled\n[    2.341350] cnss: Put regulator: vdd-wlan-io\n[    2.341408] cnss: Put regulator: wlan-ant-switch\n[    2.341444] cnss: Put regulator: vdd-wlan-aon\n[    2.341482] cnss: Put regulator: vdd-wlan-dig\n[    2.341519] cnss: Put regulator: vdd-wlan-rfa1\n[    2.341558] cnss: Put regulator: vdd-wlan-rfa2\n[    2.341719] msmdrm_smmu soc:qcom,smmu_sde_unsec_cb: Adding to iommu group 40\n[    2.341804] [drm] probing device qcom,smmu_sde_unsec\n[    2.341808] [drm] Created domain mdp_ns, secure=0\n[    2.342383] msmdrm_smmu soc:qcom,smmu_sde_sec_cb: Adding to iommu group 41\n[    2.342468] [drm] probing device qcom,smmu_sde_sec\n[    2.342471] [drm] Created domain mdp_s, secure=1\n[    2.342675] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    2.342881] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    2.343289] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_ife: Adding to iommu group 42\n[    2.343763] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_jpeg: Adding to iommu group 43\n[    2.344273] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_icp: Adding to iommu group 44\n[    2.344735] msm_cam_smmu soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm: Adding to iommu group 45\n[    2.345394] spss_utils [spss_parse_dt]: iar_buf_addr [0x8d800000].\n[    2.347336] qupv3_geni_se 9c0000.qcom,qupv3_0_geni_se: Adding to iommu group 46\n[    2.347817] qupv3_geni_se ac0000.qcom,qupv3_1_geni_se: Adding to iommu group 47\n[    2.348296] qupv3_geni_se 8c0000.qcom,qupv3_2_geni_se: Adding to iommu group 48\n[    2.350770] ufshcd-qcom 1d84000.ufshc: Adding to iommu group 49\n[    2.351009] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: unable to find vdd-hba-max-microamp\n[    2.351024] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled\n[    2.351791] ufshcd-qcom 1d84000.ufshc: -- Registered bus voting! (0) --\n[    2.352455] ufshcd-qcom 1d84000.ufshc: invalid UFS version 0x300\n[    2.352724] scsi host0: ufshcd\n[    2.359718] ufshcd-qcom 1d84000.ufshc: *** This is drivers/scsi/ufs/ufshcd.c ***\n[    2.361477] i2c_geni 998000.i2c: Bus frequency is set to 400000Hz.\n[    2.363523] aw8697_i2c_probe enter\n[    2.363599] aw8697_haptic 0-005a: aw8697_parse_dt: reset gpio provided ok\n[    2.363607] aw8697_haptic 0-005a: aw8697_parse_dt: irq gpio provided ok.\n[    2.363626] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.363628] aw8697_parse_dt ---2912 \n[    2.363632] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.363634] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.363637] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.363639] aw8697_parse_dt ---2912 \n[    2.363641] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.363642] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.363645] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.363647] aw8697_parse_dt ---2912 \n[    2.363649] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.363650] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.363653] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.363654] aw8697_parse_dt ---2912 \n[    2.363657] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.363658] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.363661] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.363662] aw8697_parse_dt ---2912 \n[    2.363664] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.363666] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.363668] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.363670] aw8697_parse_dt ---2912 \n[    2.363672] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.363673] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.363676] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.363678] aw8697_parse_dt ---2912 \n[    2.363680] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.363681] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.363684] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.363686] aw8697_parse_dt ---2912 \n[    2.363688] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.363690] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.363692] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.363694] aw8697_parse_dt ---2912 \n[    2.363697] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.363698] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.363701] aw8697_parse_dt ---2902 effect->vmax_mv =3600 \n[    2.363702] aw8697_parse_dt ---2912 \n[    2.363704] aw8697_parse_dt Read  qcom,wf-repeat-count failed !\n[    2.363706] aw8697_parse_dt Read  qcom,wf-s-repeat-count failed !\n[    2.363709]  20190420_dt       aw8697->info.bst_vol_default: 0x14\n[    2.363710]  20190420_dt       aw8697->info.bst_vol_ram: 0x14\n[    2.363711]  20190420_dt       aw8697->info.bst_vol_rtp: 0x14\n[    2.363713] aw8697_i2c_probe ---4584 \n[    2.363793] found pin control aw8697_reset_reset\n[    2.363795] Selected 'aw8697_interrupt_active'\n[    2.363797] found pin control aw8697_reset_active\n[    2.363798] Selected 'aw8697_interrupt_active'\n[    2.363800] found pin control aw8697_interrupt_active\n[    2.363808] Selected 'aw8697_interrupt_active'\n[    2.363809] aw8697_i2c_probe ---4624 \n[    2.363825] Selected 'aw8697_reset_active'\n[    2.376869] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[1, 1], lane[1, 1], pwr[SLOWAUTO_MODE, SLOWAUTO_MODE], rate = 0\n[    2.380057] Selected 'aw8697_reset_reset'\n[    2.400067] Selected 'aw8697_reset_active'\n[    2.400209] i2c_geni 998000.i2c: i2c error :-107\n[    2.400214] aw8697_i2c_read: i2c_read cnt=0 error=-107\n[    2.420310] aw8697_read_chipid aw8697 detected\n[    2.420311] aw8697_haptic_softreset enter\n[    2.442512] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 344, hwirq 119\n[    2.442516] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 123\n[    2.442523] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 344 parent hwirq 123\n[    2.442800] aw8697_vibrator_init enter\n[    2.442803] aw8697_haptic_init enter\n[    2.445335] aw8697_haptic_play_mode enter\n[    2.447536] aw8697_haptic_set_bst_peak_cur  778 enter\n[    2.447901] aw8697_haptic_swicth_motorprotect_config enter\n[    2.449366] aw8697_haptic_offset_calibration enter\n[    2.451036] aw8697_haptic_f0_calibration enter\n[    2.451182] aw8697_haptic_get_f0 enter\n[    2.451184] aw8697_haptic_stop enter\n[    2.452005] aw8697_haptic_play_mode enter\n[    2.452731] aw8697_haptic_play_mode enter\n[    2.453457] aw8697_haptic_active enter\n[    2.454922] ufshcd-qcom 1d84000.ufshc: ufshcd_print_pwr_info:[RX, TX]: gear=[4, 4], lane[2, 2], pwr[FAST MODE, FAST MODE], rate = 2\n[    2.455074] ufshcd-qcom 1d84000.ufshc: ufshcd_wb_config: Write Booster Configured\n[    2.455391] scsi 0:0:0:49488: Well-known LUN    SKhynix  HN8T15BZGKX016   A043 PQ: 0 ANSI: 6\n[    2.455779] scsi 0:0:0:49488: Attached scsi generic sg0 type 30\n[    2.456125] scsi 0:0:0:49476: Well-known LUN    SKhynix  HN8T15BZGKX016   A043 PQ: 0 ANSI: 6\n[    2.456521] scsi 0:0:0:49476: Attached scsi generic sg1 type 30\n[    2.456569] aw8697_haptic_set_f0_preset enter\n[    2.456759] scsi 0:0:0:49456: Well-known LUN    SKhynix  HN8T15BZGKX016   A043 PQ: 0 ANSI: 6\n[    2.457121] scsi 0:0:0:49456: Attached scsi generic sg2 type 30\n[    2.457550] scsi 0:0:0:0: Direct-Access     SKhynix  HN8T15BZGKX016   A043 PQ: 0 ANSI: 6\n[    2.457925] sd 0:0:0:0: Attached scsi generic sg3 type 0\n[    2.457933] sd 0:0:0:0: Power-on or device reset occurred\n[    2.458289] scsi 0:0:0:1: Direct-Access     SKhynix  HN8T15BZGKX016   A043 PQ: 0 ANSI: 6\n[    2.458455] sd 0:0:0:0: [sda] 61659136 4096-byte logical blocks: (253 GB/235 GiB)\n[    2.458514] sd 0:0:0:0: [sda] Write Protect is off\n[    2.458519] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    2.458627] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.458642] scsi 0:0:0:1: Attached scsi generic sg4 type 0\n[    2.458684] sd 0:0:0:0: [sda] Optimal transfer size 524288 bytes\n[    2.458798] sd 0:0:0:1: Power-on or device reset occurred\n[    2.458989] scsi 0:0:0:2: Direct-Access     SKhynix  HN8T15BZGKX016   A043 PQ: 0 ANSI: 6\n[    2.459425] sd 0:0:0:2: Power-on or device reset occurred\n[    2.459430] sd 0:0:0:2: Attached scsi generic sg5 type 0\n[    2.459606] sd 0:0:0:1: [sdb] 4096 4096-byte logical blocks: (16.8 MB/16.0 MiB)\n[    2.459694] scsi 0:0:0:3: Direct-Access     SKhynix  HN8T15BZGKX016   A043 PQ: 0 ANSI: 6\n[    2.459774] sd 0:0:0:1: [sdb] Write Protect is off\n[    2.459778] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    2.459888] sd 0:0:0:2: [sdc] 4096 4096-byte logical blocks: (16.8 MB/16.0 MiB)\n[    2.459954] sd 0:0:0:2: [sdc] Write Protect is off\n[    2.459959] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    2.460056] scsi 0:0:0:3: Attached scsi generic sg6 type 0\n[    2.460089] sd 0:0:0:1: [sdb] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.460170] sd 0:0:0:2: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.460178] sd 0:0:0:3: Power-on or device reset occurred\n[    2.460256] sd 0:0:0:2: [sdc] Optimal transfer size 524288 bytes\n[    2.460329] sd 0:0:0:1: [sdb] Optimal transfer size 524288 bytes\n[    2.460334] scsi 0:0:0:4: Direct-Access     SKhynix  HN8T15BZGKX016   A043 PQ: 0 ANSI: 6\n[    2.460767] sd 0:0:0:4: Attached scsi generic sg7 type 0\n[    2.460795] sd 0:0:0:3: [sdd] 8192 4096-byte logical blocks: (33.6 MB/32.0 MiB)\n[    2.460893] sd 0:0:0:4: Power-on or device reset occurred\n[    2.460903] sd 0:0:0:3: [sdd] Write Protect is off\n[    2.460907] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    2.461030] sd 0:0:0:3: [sdd] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.461110] sd 0:0:0:3: [sdd] Optimal transfer size 524288 bytes\n[    2.461177] scsi 0:0:0:5: Direct-Access     SKhynix  HN8T15BZGKX016   A043 PQ: 0 ANSI: 6\n[    2.461645]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21 sda22 sda23 sda24 sda25 sda26 sda27 sda28 sda29 sda30 sda31 sda32 sda33 sda34\n[    2.461692] sd 0:0:0:4: [sde] 786432 4096-byte logical blocks: (3.22 GB/3.00 GiB)\n[    2.461792] sd 0:0:0:4: [sde] Write Protect is off\n[    2.461818] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10\n[    2.461874] sd 0:0:0:5: Attached scsi generic sg8 type 0\n[    2.461881] sd 0:0:0:5: Power-on or device reset occurred\n[    2.462557] sd 0:0:0:4: [sde] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.462565]  sdc: sdc1 sdc2\n[    2.462624] sd 0:0:0:4: [sde] Optimal transfer size 524288 bytes\n[    2.462631] sd 0:0:0:5: [sdf] 8192 4096-byte logical blocks: (33.6 MB/32.0 MiB)\n[    2.462698] sd 0:0:0:5: [sdf] Write Protect is off\n[    2.462702] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10\n[    2.462859] sd 0:0:0:5: [sdf] Write cache: enabled, read cache: enabled, supports DPO and FUA\n[    2.462936] sd 0:0:0:5: [sdf] Optimal transfer size 524288 bytes\n[    2.463368]  sdb: sdb1 sdb2\n[    2.463900] sd 0:0:0:2: [sdc] Attached SCSI disk\n[    2.464297]  sdd: sdd1 sdd2 sdd3 sdd4 sdd5\n[    2.464821] sd 0:0:0:1: [sdb] Attached SCSI disk\n[    2.465175]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6\n[    2.465613]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27 sde28 sde29 sde30 sde31 sde32 sde33 sde34 sde35 sde36 sde37 sde38 sde39 sde40 sde41 sde42 sde43 sde44 sde45 sde46 sde47 sde48 sde49 sde50 sde51 sde52 sde53 sde54 sde55 sde56 sde57 sde58 sde59 sde60 sde61 sde62 sde63 sde64 sde65 sde66 sde67 sde68 sde69 sde70 sde71\n[    2.465870] sd 0:0:0:3: [sdd] Attached SCSI disk\n[    2.466769] sd 0:0:0:5: [sdf] Attached SCSI disk\n[    2.467074] sd 0:0:0:0: [sda] Attached SCSI disk\n[    2.472190] sd 0:0:0:4: [sde] Attached SCSI disk\n[    2.570030] aw8697_haptic_read_f0 enter\n[    2.570484] aw8697_haptic_read_f0 f0=1723\n[    2.570487] aw8697_haptic_read_beme  1245 enter\n[    2.570932] aw8697_haptic_read_beme max_pos_beme=127\n[    2.570934] aw8697_haptic_read_beme max_neg_beme=129\n[    2.571669] aw8697_haptic_f0_calibration  line=2156 f0_cali_step=53\n[    2.571671] aw8697_haptic_f0_calibration line=2158  f0_limit=1723\n[    2.571673] aw8697_haptic_f0_calibration line=2160  aw8697->info.f0_pre=1700\n[    2.571675] aw8697_haptic_f0_calibration f0_cali_lra=5\n[    2.572044] aw8697_haptic_f0_calibration final trim_lra=0x05\n[    2.572045] aw8697_haptic_play_mode enter\n[    2.573136] aw8697_haptic_stop enter\n[    2.573718] aw8697_haptic_play_mode enter\n[    2.575093] input: aw8697_haptic as /devices/platform/soc/998000.i2c/i2c-0/0-005a/input/input2\n[    2.575224] rb init\n[    2.575226] aw8697_i2c_probe probe completed successfully!\n[    2.575260] i2c_geni 998000.i2c: I2C probed\n[    2.576299] i2c_geni a80000.i2c: Bus frequency is set to 400000Hz.\n[    2.577964] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 345, hwirq 44\n[    2.577968] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 102\n[    2.577973] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 345 parent hwirq 102\n[    2.577983] cs35l41 1-0040: cs35l41 i2c probe start\n[    2.578116] cs35l41 1-0040: 1-0040 supply VA not found, using dummy regulator\n[    2.578176] cs35l41 1-0040: 1-0040 supply VP not found, using dummy regulator\n[    2.654510] cs35l41 1-0040: Cirrus Logic CS35L41 (35a40), Revision: B2\n[    2.655769] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 346, hwirq 116\n[    2.655773] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 106\n[    2.655777] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 346 parent hwirq 106\n[    2.655785] cs35l41 1-0042: cs35l41 i2c probe start\n[    2.655851] cs35l41 1-0042: 1-0042 supply VA not found, using dummy regulator\n[    2.655910] cs35l41 1-0042: 1-0042 supply VP not found, using dummy regulator\n[    2.734204] cs35l41 1-0042: Cirrus Logic CS35L41 (35a40), Revision: B2\n[    2.734232] i2c_geni a80000.i2c: I2C probed\n[    2.734528] i2c_geni a94000.i2c: Multi-EE usecase\n[    2.734532] i2c_geni a94000.i2c: Bus frequency is set to 400000Hz.\n[    2.737440] fsa4480-driver 2-0042: fsa4480_probe: Looking up qcom,use-power-supply property failed or disabled\n[    2.743086] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    2.747020] pm8008i_l1: supplied by pm8350_s12\n[    2.747319] pm8008i_l1: Bringing 1200000uV into 1104000-1104000uV\n[    2.750043] pm8008i_l2: supplied by pm8350_s12\n[    2.752007] pm8008i_l3: supplied by pm8350c_bob\n[    2.753974] pm8008i_l4: supplied by pm8350c_bob\n[    2.755926] pm8008i_l5: supplied by pm8350c_s1\n[    2.757867] pm8008i_l6: supplied by pm8350c_bob\n[    2.759812] pm8008i_l7: supplied by pm8350c_bob\n[    2.761264] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    2.761788] i2c_geni a94000.i2c: i2c error :-107\n[    2.761792] PM8008: pm8008_read: failed to read 0x0950\n[    2.761794] PM8008: _pm8008_chip_is_enabled: qcom,pm8008-chip-en: failed to get chip state rc=-107\n[    2.761796] PM8008: pm8008_chip_probe: Failed to register chip enable regulator rc=-107\n[    2.761802] qcom,pm8008-chip: probe of a94000.i2c:pm8008j@c:pm8008-chip@900 failed with error -107\n[    2.762128] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    2.762726] I2C PMIC: i2c_pmic_probe: I2C PMIC probe successful\n[    2.762825] i2c_geni a94000.i2c: I2C probed\n[    2.763459] msm_geni_serial 890000.qcom,qup_uart: Wakeup byte 0xfd\n[    2.763503] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 347, hwirq 71\n[    2.763507] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 134\n[    2.763511] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 347 parent hwirq 134\n[    2.763586] msm_geni_serial 890000.qcom,qup_uart: Serial port0 added.FifoSize 64 is_console0\n[    2.763596] msm_geni_serial 890000.qcom,qup_uart: Failed to create dbg dir\n[    2.764107] 890000.qcom,qup_uart: ttyHS0 at MMIO 0x890000 (irq = 198, base_baud = 0) is a MSM\n[    2.764534] i2c_geni 884000.i2c: Bus frequency is set to 1000000Hz.\n[    2.764973] i2c_geni 884000.i2c: I2C probed\n[    2.765232] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 348, hwirq 87\n[    2.765236] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 138\n[    2.765241] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 348 parent hwirq 138\n[    2.765249] nfc_i2c_dev_probe: enter\n[    2.765271] qcom,sn-nci 3-0028: error reading NFC VDDIO min and max value\n[    2.765274] qcom,sn-nci 3-0028: error reading NFC current value\n[    2.765332] pci-msm 1c00000.qcom,pcie: PCIe: msm_pcie_probe\n[    2.765406] nfc_i2c_dev_probe : requesting IRQ 348\n[    2.765469] nfc_ldo_config: regulator entry not present\n[    2.765656] pci-msm 1c00000.qcom,pcie: 1c00000.qcom,pcie supply vreg-3p3 not found, using dummy regulator\n[    2.765952] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 349, hwirq 96\n[    2.765956] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 148\n[    2.765961] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 349 parent hwirq 148\n[    2.766015] msm_pcie_get_reg: PCIe: RC0: no tcsr resource found.\n[    2.766020] msm_pcie_get_reg: PCIe: RC0: no rumi resource found.\n[    2.770098] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.770110] [drm:dsi_ctrl_get] *ERROR* [msm-dsi-error]: inv: Device with of node not found rc=-517\n[    2.771175] minidump-id not found for spss\n[    2.772659] minidump-id not found for slpi\n[    2.779079] ipa 1e00000.qcom,ipa:ipa_smmu_ap: Adding to iommu group 50\n[    2.779473] ipa 1e00000.qcom,ipa:ipa_smmu_wlan: Adding to iommu group 51\n[    2.779847] ipa 1e00000.qcom,ipa:ipa_smmu_uc: Adding to iommu group 52\n[    2.780247] ipa 1e00000.qcom,ipa:ipa_smmu_11ad: Adding to iommu group 53\n[    2.781506] minidump-id not found for venus\n[    2.782128] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.782133] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.782634] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    2.782722] cnss: use-pm-domain is 1\n[    2.782728] cnss: set_wlaon_pwr_ctrl is 0\n[    2.782733] cnss: TCS CMD base address is 0x000000000b2e5510 with length 0x0000000000000690\n[    2.782771] cnss2 b0000000.qcom,cnss-qca6490: can't request region for resource [mem 0x0b2e5510-0x0b2e5b9f]\n[    2.782773] cnss: Failed to map TCS CMD address, err = -16\n[    2.782778] cnss: CommandDB name is not present for CPR\n[    2.782844] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    2.782918] cnss: Got regulator: vdd-wlan-io, min_uv: 1800000, max_uv: 1800000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.783153] cnss: Got regulator: wlan-ant-switch, min_uv: 2800000, max_uv: 2800000, load_ua: 0, delay_us: 0, need_unvote: 0\n[    2.783234] cnss: Got regulator: vdd-wlan-aon, min_uv: 950000, max_uv: 952000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.783279] cnss: Got regulator: vdd-wlan-dig, min_uv: 950000, max_uv: 952000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.783334] cnss: Got regulator: vdd-wlan-rfa1, min_uv: 1880000, max_uv: 1880000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.783383] cnss: Got regulator: vdd-wlan-rfa2, min_uv: 1350000, max_uv: 1350000, load_ua: 0, delay_us: 0, need_unvote: 1\n[    2.783416] cnss: Failed to get optional clock rf_clk, err = -2\n[    2.783490] cnss: BT GPIO: 373\n[    2.783493] cnss: Regulator vdd-wlan-io is being enabled\n[    2.783568] cnss: Regulator wlan-ant-switch is being enabled\n[    2.783878] synx: registered bind ops type 0 for cam_sync\n[    2.783887] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-sync (ops 0xffffffec7fc0e7a8)\n[    2.783912] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu (ops 0xffffffec7fc0e5b8)\n[    2.783917] cnss: Regulator vdd-wlan-aon is being enabled\n[    2.783929] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_ife (ops 0xffffffec7fc0e5c8)\n[    2.783957] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_jpeg (ops 0xffffffec7fc0e5c8)\n[    2.783962] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_icp_fw (ops 0xffffffec7fc0e5e8)\n[    2.783990] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_icp (ops 0xffffffec7fc0e5c8)\n[    2.784000] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_cpas_cdm (ops 0xffffffec7fc0e5c8)\n[    2.784008] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam_smmu:msm_cam_smmu_secure (ops 0xffffffec7fc0e5c8)\n[    2.784601] cnss: Regulator vdd-wlan-dig is being enabled\n[    2.784712] cnss: Regulator vdd-wlan-rfa1 is being enabled\n[    2.784837] cnss: Regulator vdd-wlan-rfa2 is being enabled\n[    2.784906] cnss: BT_EN_GPIO State: Off. Delay WLAN_GPIO enable\n[    2.786845] cam_req_mgr soc:qcom,cam-req-mgr: bound ac40000.qcom,cam-cpas (ops 0xffffffec7fc0ef10)\n[    2.786989] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-cdm-intf (ops 0xffffffec7fc0f1b0)\n[    2.790482] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4d000.qcom,cpas-cdm0 (ops 0xffffffec7fc0f1c8)\n[    2.794558] cam_req_mgr soc:qcom,cam-req-mgr: bound acb4200.qcom,ife-cdm0 (ops 0xffffffec7fc0f1c8)\n[    2.798654] cam_req_mgr soc:qcom,cam-req-mgr: bound acc3200.qcom,ife-cdm1 (ops 0xffffffec7fc0f1c8)\n[    2.802747] cam_req_mgr soc:qcom,cam-req-mgr: bound acef200.qcom,ife-cdm2 (ops 0xffffffec7fc0f1c8)\n[    2.803982] cam_req_mgr soc:qcom,cam-req-mgr: bound ac97000.qcom,tpg0 (ops 0xffffffec7fc11e10)\n[    2.805208] cam_req_mgr soc:qcom,cam-req-mgr: bound ac98000.qcom,tpg1 (ops 0xffffffec7fc11e10)\n[    2.805516] cam_req_mgr soc:qcom,cam-req-mgr: bound acb5200.qcom,csid0 (ops 0xffffffec7fc0fa80)\n[    2.805795] cam_req_mgr soc:qcom,cam-req-mgr: bound acc4200.qcom,csid1 (ops 0xffffffec7fc0fa80)\n[    2.806076] cam_req_mgr soc:qcom,cam-req-mgr: bound acf0200.qcom,csid2 (ops 0xffffffec7fc0fa80)\n[    2.806271] cam_req_mgr soc:qcom,cam-req-mgr: bound acd9200.qcom,csid-lite0 (ops 0xffffffec7fc0fa80)\n[    2.806467] cam_req_mgr soc:qcom,cam-req-mgr: bound acdb400.qcom,csid-lite1 (ops 0xffffffec7fc0fa80)\n[    2.807845] cam_req_mgr soc:qcom,cam-req-mgr: bound acb4000.qcom,ife0 (ops 0xffffffec7fc10a18)\n[    2.809195] cam_req_mgr soc:qcom,cam-req-mgr: bound acc3000.qcom,ife1 (ops 0xffffffec7fc10a18)\n[    2.810554] cam_req_mgr soc:qcom,cam-req-mgr: bound acef000.qcom,ife2 (ops 0xffffffec7fc10a18)\n[    2.811719] cam_req_mgr soc:qcom,cam-req-mgr: bound acd9000.qcom,ife-lite0 (ops 0xffffffec7fc10a18)\n[    2.812873] cam_req_mgr soc:qcom,cam-req-mgr: bound acdb200.qcom,ife-lite1 (ops 0xffffffec7fc10a18)\n[    2.813304] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-isp (ops 0xffffffec7fc12350)\n[    2.813414] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-res-mgr (ops 0xffffffec7fc141b0)\n[    2.814022] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0 (ops 0xffffffec7fc135b0)\n[    2.814582] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1 (ops 0xffffffec7fc135b0)\n[    2.814928] cam_req_mgr soc:qcom,cam-req-mgr: bound ac6a000.qcom,csiphy0 (ops 0xffffffec7fc13808)\n[    2.815262] cam_req_mgr soc:qcom,cam-req-mgr: bound ac6c000.qcom,csiphy1 (ops 0xffffffec7fc13808)\n[    2.815584] cam_req_mgr soc:qcom,cam-req-mgr: bound ac6e000.qcom,csiphy2 (ops 0xffffffec7fc13808)\n[    2.815913] cam_req_mgr soc:qcom,cam-req-mgr: bound ac70000.qcom,csiphy3 (ops 0xffffffec7fc13808)\n[    2.816277] cam_req_mgr soc:qcom,cam-req-mgr: bound ac72000.qcom,csiphy4 (ops 0xffffffec7fc13808)\n[    2.816605] cam_req_mgr soc:qcom,cam-req-mgr: bound ac74000.qcom,csiphy5 (ops 0xffffffec7fc13808)\n[    2.816696] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,actuator0 (ops 0xffffffec7fc13378)\n[    2.816799] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,actuator1 (ops 0xffffffec7fc13378)\n[    2.816992] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,cam-sensor0 (ops 0xffffffec7fc13f28)\n[    2.817189] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,cam-sensor1 (ops 0xffffffec7fc13f28)\n[    2.817374] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,cam-sensor2 (ops 0xffffffec7fc13f28)\n[    2.817567] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,cam-sensor3 (ops 0xffffffec7fc13f28)\n[    2.817698] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,eeprom0 (ops 0xffffffec7fc13ac0)\n[    2.817823] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,eeprom1 (ops 0xffffffec7fc13ac0)\n[    2.817946] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,eeprom2 (ops 0xffffffec7fc13ac0)\n[    2.818070] cam_req_mgr soc:qcom,cam-req-mgr: bound ac50000.qcom,cci1:qcom,eeprom3 (ops 0xffffffec7fc13ac0)\n[    2.818185] cam_req_mgr soc:qcom,cam-req-mgr: bound ac4f000.qcom,cci0:qcom,ois0 (ops 0xffffffec7fc13ce0)\n[    2.818338] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,camera-flash@0 (ops 0xffffffec7fc14368)\n[    2.818435] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,camera-flash@1 (ops 0xffffffec7fc14368)\n[    2.818537] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,camera-flash@2 (ops 0xffffffec7fc14368)\n[    2.818725] cam_req_mgr soc:qcom,cam-req-mgr: bound ac00000.qcom,a5 (ops 0xffffffec7fc12750)\n[    2.818844] cam_req_mgr soc:qcom,cam-req-mgr: bound ac9a000.qcom,ipe0 (ops 0xffffffec7fc12588)\n[    2.818952] cam_req_mgr soc:qcom,cam-req-mgr: bound ac7a000.qcom,bps (ops 0xffffffec7fc12930)\n[    2.822561] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-icp (ops 0xffffffec7fc12cb0)\n[    2.822716] cam_req_mgr soc:qcom,cam-req-mgr: bound ac53000.qcom,jpegenc (ops 0xffffffec7fc12e60)\n[    2.822863] cam_req_mgr soc:qcom,cam-req-mgr: bound ac57000.qcom,jpegdma (ops 0xffffffec7fc13000)\n[    2.824204] cam_req_mgr soc:qcom,cam-req-mgr: bound soc:qcom,cam-jpeg (ops 0xffffffec7fc131a0)\n[    2.824525] spss_utils [spss_parse_dt]: iar_buf_addr [0x8d800000].\n[    2.824649] spss_utils [spss_probe]: Probe completed successfully, [spss1p].\n[    2.825177] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.825188] [drm:dsi_ctrl_get] *ERROR* [msm-dsi-error]: inv: Device with of node not found rc=-517\n[    2.825550] [drm:dsi_ctrl_dev_probe] [msm-dsi-info]: dsi-ctrl-0: Probe successful\n[    2.825867] [drm:dsi_ctrl_dev_probe] [msm-dsi-info]: dsi-ctrl-1: Probe successful\n[    2.826060] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.826065] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.826273] nfcc_hw_check: VEN forced reset 1 done\n[    2.826342] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    2.826565] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    2.827064] OF: graph: no port node found in /soc/qcom,dsi-display-primary\n[    2.827107] [xiaomi 38 08 0a cmd mode dsc dsi panel] clk_strength = 101\n[    2.827301] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 367, hwirq 75\n[    2.827306] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 103\n[    2.827312] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 367 parent hwirq 103\n[    2.827337] [mi_disp:mi_dsi_panel_parse_config] [info]mi,panel-id is 0x4a3200380800\n[    2.827342] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-on-51-index is 2\n[    2.827346] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-off-51-index is 2\n[    2.827350] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-fod-on-51-index is 2\n[    2.827354] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-fod-off-51-index is 2\n[    2.827358] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-fod-bl-level is 2047\n[    2.827362] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-bl-min-level is 1\n[    2.827366] [mi_disp:mi_dsi_panel_parse_config] [info]mi,hbm-bl-max-level is 2047\n[    2.827370] [mi_disp:mi_dsi_panel_parse_config] [info]mi,panel-on-dimming-delay is 120\n[    2.827374] [mi_disp:mi_dsi_panel_parse_config] [info]mi,mdss-dsi-panel-gamma-update-flag feature not defined\n[    2.827378] [mi_disp:mi_dsi_panel_parse_config] [info]mi aod-nolp-command-enabled\n[    2.827386] [mi_disp:mi_dsi_panel_parse_config] [info]default dc backlight type is 1\n[    2.827391] [mi_disp:mi_dsi_panel_parse_config] [info]dc backlight type 440 \n[    2.827395] [mi_disp:mi_dsi_panel_parse_config] [info]local_hbm_enabled\n[    2.827399] [mi_disp:mi_dsi_panel_parse_config] [info]mi,local-hbm-on-1000nit-51-index is 3\n[    2.827403] [mi_disp:mi_dsi_panel_parse_config] [info]mi,local-hbm-off-to-hbm-51-index is 2\n[    2.827407] [mi_disp:mi_dsi_panel_parse_config] [info]fod_low_brightness_clone_threshold=40\n[    2.827411] [mi_disp:mi_dsi_panel_parse_config] [info]fod_low_brightness_lux_threshold=3\n[    2.827415] [mi_disp:mi_dsi_panel_parse_config] [info]max_brightness_clone=8191\n[    2.827584] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,smmu_sde_sec_cb (ops 0xffffffec7fa97f40)\n[    2.827590] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,smmu_sde_unsec_cb (ops 0xffffffec7fa97f40)\n[    2.827597] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,wb-display@0 (ops 0xffffffec7fa94e98)\n[    2.827763] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 368, hwirq 82\n[    2.827767] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 140\n[    2.827771] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 368 parent hwirq 140\n[    2.828008] [mi_disp:mi_disp_feature_attach_display] [info]create disp_feature:0 kthread success\n[    2.828015] [mi_disp:mi_disp_procfs_init] [info]create procfs mipi_rw_prim success!\n[    2.828019] [mi_disp:mi_disp_procfs_init] [info]create procfs tx_cmd_set_prim success!\n[    2.828023] [mi_disp:mi_disp_debugfs_init] [info]create debugfs debug_log success!\n[    2.828026] [mi_disp:mi_disp_debugfs_init] [info]create debugfs esd_sw_prim success!\n[    2.828029] [mi_disp:mi_disp_feature_attach_display] [info]attach primary display(DSI intf) success\n[    2.828035] msm_drm ae00000.qcom,mdss_mdp: bound soc:qcom,dsi-display-primary (ops 0xffffffec7fa96808)\n[    2.828041] msm_drm ae00000.qcom,mdss_mdp: bound af20000.qcom,sde_rscc (ops 0xffffffec7fa95048)\n[    2.828064] [drm] mapped mdp address space @0000000073f02f9e\n[    2.830733] [drm:_sde_kms_hw_init_blocks:4175] sde hardware revision:0x70000000\n[    2.830849] [drm:msm_smmu_new] *ERROR* unable to find domain 1 compat: qcom,smmu_sde_nrt_unsec\n[    2.830859] [drm:msm_smmu_new] *ERROR* unable to find domain 3 compat: qcom,smmu_sde_nrt_sec\n[    2.832641] register brightness0-clone cooling device success\n[    2.836726] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).\n[    2.836728] [drm] No driver support for vblank timestamp query.\n[    2.837119] [drm] Initialized msm_drm 1.4.0 20130625 for ae00000.qcom,mdss_mdp on minor 0\n[    2.837122] [drm] cont_splash enabled in 1 of 1 display(s)\n[    2.837213] [drm:dsi_ctrl_isr_configure] [msm-dsi-info]: dsi-ctrl-0: IRQ 369 registered\n[    2.837532] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.837537] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.837776] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    2.837967] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    2.838239] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.838243] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.838472] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    2.838675] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    2.839323] ngd_msm_ctrl 3ac0000.slim: Adding to iommu group 54\n[    2.841473] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): allocate IRQ 370, hwirq 5\n[    2.841476] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): found parent hwirq 141\n[    2.841481] gpio gpiochip2: (c440000.qcom,spmi:qcom,pm8350@1:pinctrl@8800): alloc_irqs_parent for 370 parent hwirq 141\n[    2.841658] input: gpio-keys as /devices/platform/soc/soc:gpio_keys/input/input3\n[    2.842118] gpio gpiochip0: (f000000.pinctrl): allocate IRQ 371, hwirq 23\n[    2.842121] gpio gpiochip0: (f000000.pinctrl): found parent hwirq 84\n[    2.842126] gpio gpiochip0: (f000000.pinctrl): alloc_irqs_parent for 371 parent hwirq 84\n[    2.842134] [ FTS ] fts_probe: driver spi ver: 5.2.4.1\n[    2.842135] [ FTS ] SPI interface... \n[    2.842151] [ FTS ] product_name:venus,major:9,minor:0\n[    2.842154] [ FTS ] fts_judge_hwid don't need avdd-old supply\n[    2.842168] [ FTS ] fod-lx:588\n[    2.842170] [ FTS ] fod ly:2358\n[    2.842172] [ FTS ] fod size:264\n[    2.842174] [ FTS ] fod size:264\n[    2.842215] [ FTS ] parse_dt:tp vendor: 56\n[    2.842216] [ FTS ] Unable to read tp color\n[    2.842218] [ FTS ] Unable to read tp module\n[    2.842219] [ FTS ] Unable to read tp hw version\n[    2.842221] [ FTS ] parse_dt:fw_name: st_fts_k2.ftb\n[    2.842223] [ FTS ] parse_dt:limit_name: stm_fts_production_limits.csv\n[    2.842613] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.842617] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.842865] [ FTS ] gpio_num:331, irq:371\n[    2.842971] input: fts as /devices/platform/soc/a8c000.spi/spi_master/spi1/spi1.0/input/input4\n[    2.843055] [ FTS ] openChannel: spi_master: flags = 0000 !\n[    2.843058] [ FTS ] openChannel: spi_device: max_speed = 12000000 chip select = 00 bits_per_words = 8 mode = 0000 !\n[    2.843060] [ FTS ] openChannel: completed! \n[    2.843068] [ FTS ] System resetting...\n[    2.853828] spi_geni a8c000.spi: tx_fifo 16 rx_fifo 16 tx_width 32\n[    2.853983] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    2.854175] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    2.869540] [ FTS ] System reset DONE!\n[    2.869836] [ FTS ] FW VER = 0081 \n[    2.869838] [ FTS ] SVN REV = 4017 \n[    2.869840] [ FTS ] CONFIG VER = 0046 \n[    2.869842] [ FTS ] CONFIG PROJECT ID = 0000 \n[    2.869843] [ FTS ] CX VER = FFFF \n[    2.869844] [ FTS ] CX PROJECT ID = 0000 \n[    2.869846] [ FTS ] AFE VER: CFG = 06 - CX = 06 - PANEL = 06 \n[    2.869859] [ FTS ] Release Info = 46 1E 00 00 00 00 00 00 10 9D DF AE 91 88 1F 51  \n[    2.882991] [ FTS ] Echo FOUND... OK!\n[    2.883171] [ FTS ] fts_get_lockdown_info signature:A5 id:70 70 beforecnt:1,aftercnt:2\n[    2.883176] [ FTS ] Interrupt Enabled!\n[    2.883180] [ FTS ] Lockdown:0x48,0x38,0x32,0x04,0x48,0x32,0x31,0x01\n[    2.883186] [ FTS ] FW Update and Sensing Initialization: \n[    2.883188] [ FTS ] Fw Auto Update is starting... \n[    2.883346] [ FTS ] fts_crc_check: Verifying if Config CRC Error...\n[    2.883348] [ FTS ] System resetting...\n[    2.891062] cnss: Assert WLAN_EN GPIO successfully\n[    2.891082] msm_pcie_enable: PCIe: Assert the reset of endpoint of RC0.\n[    2.894592] msm_pcie_enable: PCIe: RC0: PCIE20_PARF_INT_ALL_MASK: 0x7f80c202\n[    2.896778] pcie_phy_init: PCIe RC0 PHY is ready!\n[    2.906802] msm_pcie_enable: PCIe: Release the reset of endpoint of RC0.\n[    2.909257] [ FTS ] System reset DONE!\n[    2.909260] [ FTS ] fts_crc_check: No Config CRC Error Found! \n[    2.909261] [ FTS ] fts_crc_check: Verifying if Cx CRC Error...\n[    2.909262] [ FTS ] fts_crc_check: No Cx CRC Error Found! \n[    2.909264] [ FTS ] fts_fw_update: NO CRC Error or Impossible to read CRC register! \n[    2.909265] [ FTS ] fts_get_lockdown_info aleady get,skip\n[    2.909267] [ FTS ] Interrupt Enabled!\n[    2.909269] [ FTS ] Choose config 0: st_fts_k2.ftb\n[    2.909271] [ FTS ] getFWdata starting ...\n[    2.909272] [ FTS ] Read FW from BIN file st_fts_k2.ftb !\n[    2.909309] [ FTS ] getFWdata Finished!\n[    2.909311] [ FTS ] parseBinFile: FILE SVN REV = 00003755\n[    2.909312] [ FTS ] parseBinFile: FILE Fw Version = 0076\n[    2.909314] [ FTS ] parseBinFile: FILE Config Project ID = 00000000\n[    2.909315] [ FTS ] parseBinFile: FILE Config Version = 0000003D\n[    2.909316] [ FTS ] parseBinFile: File External Release =  \n[    2.909317] 3D \n[    2.909318] 1E \n[    2.909320] 00 \n[    2.909321] 00 \n[    2.909322] 00 \n[    2.909323] 00 \n[    2.909324] 00 \n[    2.909325] 00 \n\n[    2.909328] [ FTS ] parseBinFile:  sec0_size = 0001B878 (112760 bytes)\n[    2.909329] [ FTS ] parseBinFile:  sec1_size = 00000E30 (3632 bytes)\n[    2.909331] [ FTS ] parseBinFile:  sec2_size = 00000000 (0 bytes) \n[    2.909333] [ FTS ] parseBinFile:  sec3_size = 00000000 (0 bytes) \n[    2.909361] [ FTS ] parseBinFile: Initialize cx_ver to default value! \n[    2.909363] [ FTS ] parseBinFile: CX Version = FFFF \n[    2.909365] [ FTS ] Code Pages: 28 panel area Pages: 1 cx area Pages: 2 fw config Pages: 1 !\n[    2.909367] [ FTS ] Code start addr: 0x00000000 cx start addr: 0x00007400 fw start addr: 0x00007C00 !\n[    2.909369] [ FTS ] READ FW DONE 116392 bytes!\n[    2.909373] [ FTS ] System resetting...\n[    2.923247] msm_pcie_link_train: PCIe RC0 link initialized\n[    2.923459] pci-msm 1c00000.qcom,pcie: host bridge /soc/qcom,pcie@1c00000 ranges:\n[    2.923469] pci-msm 1c00000.qcom,pcie:   No bus range found for /soc/qcom,pcie@1c00000, using [bus 00-ff]\n[    2.923482] pci-msm 1c00000.qcom,pcie:    IO 0x60200000..0x602fffff -> 0x60200000\n[    2.923491] pci-msm 1c00000.qcom,pcie:   MEM 0x60300000..0x63ffffff -> 0x60300000\n[    2.923537] pci-msm 1c00000.qcom,pcie: MSI: qgic controller is present\n[    2.925061] pci-msm 1c00000.qcom,pcie: PCI host bridge to bus 0000:00\n[    2.925066] pci_bus 0000:00: root bus resource [bus 00-ff]\n[    2.925070] pci_bus 0000:00: root bus resource [io  0x0000-0xfffff] (bus address [0x60200000-0x602fffff])\n[    2.925074] pci_bus 0000:00: root bus resource [mem 0x60300000-0x63ffffff]\n[    2.925124] pci 0000:00:00.0: [17cb:010c] type 01 class 0x060400\n[    2.925214] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]\n[    2.925465] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold\n[    2.931364] NFC fw version = 1.10.59\n[    2.931366] nfcc_hw_check: ## NFCC == SN100x ##\n[    2.931434] nfc_i2c_dev_probe success\n[    2.935266] [ FTS ] System reset DONE!\n[    2.940912] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring\n[    2.941009] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.941013] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.941139] pci 0000:01:00.0: [17cb:1103] type 00 class 0x028000\n[    2.941258] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x001fffff 64bit]\n[    2.941261] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    2.941452] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    2.941649] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold\n[    2.956735] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01\n[    2.956755] pci 0000:00:00.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000\n[    2.956761] pci 0000:00:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000\n[    2.956774] pci 0000:00:00.0: BAR 8: assigned [mem 0x60400000-0x605fffff]\n[    2.956779] pci 0000:00:00.0: BAR 9: assigned [mem 0x60600000-0x607fffff 64bit pref]\n[    2.956784] pci 0000:00:00.0: BAR 0: assigned [mem 0x60300000-0x60300fff 64bit]\n[    2.956817] pci 0000:00:00.0: BAR 7: assigned [io  0x1000-0x1fff]\n[    2.956824] pci 0000:01:00.0: BAR 0: assigned [mem 0x60400000-0x605fffff 64bit]\n[    2.956868] pci 0000:00:00.0: PCI bridge to [bus 01]\n[    2.956875] pci 0000:00:00.0:   bridge window [io  0x1000-0x1fff]\n[    2.956892] pci 0000:00:00.0:   bridge window [mem 0x60400000-0x605fffff]\n[    2.956905] pci 0000:00:00.0:   bridge window [mem 0x60600000-0x607fffff 64bit pref]\n[    2.957224] pci-msm-rc 0000:00:00.0: Adding to iommu group 55\n[    2.957516] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    2.957520] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    2.957756] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    2.957945] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    2.958432] msm_pcie_enumerate: PCIe: RC0: has already been enumerated.\n[    2.961069] cnss_pci 0000:01:00.0: Adding to iommu group 56\n[    2.961111] cnss: PCI is probing, vendor ID: 0x17cb, device ID: 0x1103\n[    2.961123] cnss_pci 0000:01:00.0: assigned reserved memory node cnss_wlan_region\n[    2.961125] cnss: CMA area is cnss_wlan_region\n[    2.961425] cnss: Powerup is ignored\n[    2.961457] cnss: Ramdump size 0x420000\n[    2.961468] cnss2 b0000000.qcom,cnss-qca6490: for wlan segments only will be dumped.\n[    2.961571] cnss: Initializing SMMU\n[    2.961575] cnss: Enabling SMMU S1 stage\n[    2.961579] cnss: smmu_iova_start: 0x00000000a0000000, smmu_iova_len: 0x10000000\n[    2.961584] cnss: smmu_iova_ipa_start: 0x00000000b0000000, smmu_iova_ipa_len: 0x10000\n[    2.961587] cnss: iommu_geometry: 0\n[    2.961592] cnss: PCIe DRV is supported\n[    2.961634] cnss_pci 0000:01:00.0: BAR 0: assigned [mem 0x60400000-0x605fffff 64bit]\n[    2.961694] pci-msm-rc 0000:00:00.0: enabling device (0006 -> 0007)\n[    2.961716] cnss_pci 0000:01:00.0: enabling device (0000 -> 0002)\n[    2.962793] cnss: MSI base data is 800\n[    2.962799] cnss: BAR starts at 0x0000000060400000, len-200000\n[    2.962805] cnss: Assign MSI to user: MHI, num_vectors: 3, user_base_data: 800, base_vector: 0\n[    2.962808] cnss: Number of assigned MSI for MHI is 3, base vector is 0\n[    2.962813] cnss: Get IRQ number 372 for vector index 0\n[    2.962816] cnss: Get IRQ number 373 for vector index 1\n[    2.962819] cnss: Get IRQ number 374 for vector index 2\n[    2.963190] cnss: Get device version info, family number: 0x4, device number: 0xc, major version: 0x1, minor version: 0x10\n[    2.963196] cnss: Firmware name is amss.bin\n[    2.963205] cnss: Get PCI link status register: 4115\n[    2.963208] cnss: Default PCI link speed is 0x3, link width is 0x1\n[    2.970034] [ FTS ] fts_writeU8UX: cmd[1] = 20 \n[    2.970036] [ FTS ] fts_writeU8UX: cmd[2] = 00 \n[    2.970038] [ FTS ] fts_writeU8UX: cmd[3] = 00 \n[    2.970040] [ FTS ] fts_writeU8UX: cmd[4] = 24 \n[    2.970181] [ FTS ] fts_writeU8UX: cmd[1] = 20 \n[    2.970183] [ FTS ] fts_writeU8UX: cmd[2] = 00 \n[    2.970185] [ FTS ] fts_writeU8UX: cmd[3] = 00 \n[    2.970187] [ FTS ] fts_writeU8UX: cmd[4] = 32 \n[    2.970305] [ FTS ] fts_writeU8UX: cmd[1] = 20 \n[    2.970307] [ FTS ] fts_writeU8UX: cmd[2] = 00 \n[    2.970308] [ FTS ] fts_writeU8UX: cmd[3] = 00 \n[    2.970310] [ FTS ] fts_writeU8UX: cmd[4] = 34 \n[    2.970426] [ FTS ] fts_writeU8UX: cmd[1] = 20 \n[    2.970428] [ FTS ] fts_writeU8UX: cmd[2] = 00 \n[    2.970430] [ FTS ] fts_writeU8UX: cmd[3] = 00 \n[    2.970432] [ FTS ] fts_writeU8UX: cmd[4] = 3F \n[    2.970549] [ FTS ] fts_writeU8UX: cmd[1] = 20 \n[    2.970551] [ FTS ] fts_writeU8UX: cmd[2] = 00 \n[    2.970552] [ FTS ] fts_writeU8UX: cmd[3] = 00 \n[    2.970554] [ FTS ] fts_writeU8UX: cmd[4] = 3D \n[    2.970670] [ FTS ] fts_writeU8UX: cmd[1] = 20 \n[    2.970671] [ FTS ] fts_writeU8UX: cmd[2] = 00 \n[    2.970673] [ FTS ] fts_writeU8UX: cmd[3] = 00 \n[    2.970675] [ FTS ] fts_writeU8UX: cmd[4] = 2D \n[    2.972371] [ FTS ] CX Start page: 29 CX End page: 30 Panel Start Page: 28 Panel End page: 28!\n[    2.980068] cnss: Suspending PCI link\n[    3.090074] msm_pcie_disable: PCIe: Assert the reset of endpoint of RC0.\n[    3.090514] cnss: De-assert WLAN_EN GPIO successfully\n[    3.090518] cnss: Regulator vdd-wlan-rfa2 is being disabled\n[    3.090554] cnss: Regulator vdd-wlan-rfa1 is being disabled\n[    3.090592] cnss: Regulator vdd-wlan-dig is being disabled\n[    3.090629] cnss: Regulator vdd-wlan-aon is being disabled\n[    3.090666] cnss: Regulator wlan-ant-switch is being disabled\n[    3.090689] cnss: Regulator vdd-wlan-io is being disabled\n[    3.091084] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.091088] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.091428] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    3.091624] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    3.091785] cnss: ICC Path_Count: 2 BW_CFG_Count: 7\n[    3.091804] cnss: ICC Vote CFG for path: pcie_to_memnoc\n[    3.091807] cnss: ICC Vote BW: 0 avg: 0 peak: 0\n[    3.091811] cnss: ICC Vote BW: 1 avg: 2250 peak: 390000\n[    3.091814] cnss: ICC Vote BW: 2 avg: 7500 peak: 390000\n[    3.091817] cnss: ICC Vote BW: 3 avg: 30000 peak: 790000\n[    3.091820] cnss: ICC Vote BW: 4 avg: 100000 peak: 790000\n[    3.091824] cnss: ICC Vote BW: 5 avg: 175000 peak: 1600000\n[    3.091827] cnss: ICC Vote BW: 6 avg: 7500 peak: 390000\n[    3.091854] cnss: ICC Vote CFG for path: memnoc_to_ddr\n[    3.091857] cnss: ICC Vote BW: 0 avg: 0 peak: 0\n[    3.091860] cnss: ICC Vote BW: 1 avg: 2250 peak: 1804800\n[    3.091863] cnss: ICC Vote BW: 2 avg: 7500 peak: 1804800\n[    3.091866] cnss: ICC Vote BW: 3 avg: 30000 peak: 1804800\n[    3.091870] cnss: ICC Vote BW: 4 avg: 100000 peak: 1804800\n[    3.091873] cnss: ICC Vote BW: 5 avg: 175000 peak: 6220800\n[    3.091876] cnss: ICC Vote BW: 6 avg: 7500 peak: 2188800\n[    3.092160] cnss: Platform driver probed successfully.\n[    3.092336] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    3.092340] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    3.092589] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    3.092789] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    3.505670] [ FTS ] 7) LOAD PROGRAM: \n[    5.373410] [ FTS ]   load program DONE!\n[    5.495643] [ FTS ]   load config DONE!\n[    5.495647] [ FTS ] System resetting...\n[    5.521549] [ FTS ] System reset DONE!\n[    5.521843] [ FTS ] FW VER = 0076 \n[    5.521845] [ FTS ] SVN REV = 3755 \n[    5.521846] [ FTS ] CONFIG VER = 003D \n[    5.521848] [ FTS ] CONFIG PROJECT ID = 0000 \n[    5.521849] [ FTS ] CX VER = FFFF \n[    5.521851] [ FTS ] CX PROJECT ID = 0000 \n[    5.521852] [ FTS ] AFE VER: CFG = 06 - CX = 06 - PANEL = 06 \n[    5.521865] [ FTS ] Release Info = 3D 1E 00 00 00 00 00 00 84 6E 80 3C 6A 0B A5 11  \n[    5.521874] [ FTS ] fts_fw_update: Verifying if CX CRC Error...\n[    5.521876] [ FTS ] System resetting...\n[    5.547761] [ FTS ] System reset DONE!\n[    5.547764] [ FTS ] fts_fw_update: No Cx CRC Error Found! \n[    5.547766] [ FTS ] fts_fw_update: Verifying if Panel CRC Error... \n[    5.547767] [ FTS ] fts_fw_update: No Panel CRC Error Found! \n[    5.547771] [ FTS ] Interrupt Mode\n[    5.547950] [ FTS ] fts_mode_handler: Screen ON... \n[    5.547953] [ FTS ] fts_mode_handler: Sense ON\n[    5.601933] [ FTS ] Interrupt Enabled!\n[    5.602089] [ FTS ] Fw Update Finished! error = 00000000\n[    5.602147] [ FTS ] fts_status_event_handler Mutual negative detect Force cal = 01 00 00 00 00 02\n[    5.602237] [ FTS ] fts_proc_init: proc entry CREATED! \n[    5.602365] xiaomitouch_register_modedata\n[    5.602531] [ FTS ] fts_read_touchmode_data: game_mode:0, active_mode:1, up_threshold:0, landlock:0, wgh:3, 133, 126\n[    5.602536] [ FTS ] fts_init_touchmode_data: mode:0, set cur:0, get cur:0, def:0 min:0 max:1\n[    5.602539] [ FTS ] fts_init_touchmode_data: mode:1, set cur:1, get cur:1, def:0 min:0 max:1\n[    5.602542] [ FTS ] fts_init_touchmode_data: mode:2, set cur:4, get cur:4, def:4 min:1 max:5\n[    5.602545] [ FTS ] fts_init_touchmode_data: mode:3, set cur:3, get cur:3, def:3 min:1 max:5\n[    5.602547] [ FTS ] fts_init_touchmode_data: mode:4, set cur:3, get cur:3, def:3 min:1 max:5\n[    5.602550] [ FTS ] fts_init_touchmode_data: mode:5, set cur:3, get cur:3, def:3 min:1 max:5\n[    5.602552] [ FTS ] fts_init_touchmode_data: mode:6, set cur:1, get cur:1, def:1 min:1 max:3\n[    5.602554] [ FTS ] fts_init_touchmode_data: mode:7, set cur:2, get cur:2, def:2 min:0 max:3\n[    5.602556] [ FTS ] fts_init_touchmode_data: mode:8, set cur:0, get cur:0, def:0 min:0 max:3\n[    5.602559] [ FTS ] fts_init_touchmode_data: mode:9, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.602561] [ FTS ] fts_init_touchmode_data: mode:10, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.602564] [ FTS ] fts_init_touchmode_data: mode:11, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.602566] [ FTS ] fts_init_touchmode_data: mode:12, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.602568] [ FTS ] fts_init_touchmode_data: mode:13, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.602571] [ FTS ] fts_init_touchmode_data: mode:14, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.602573] [ FTS ] fts_init_touchmode_data: mode:15, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.602575] [ FTS ] fts_init_touchmode_data: mode:16, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.602578] [ FTS ] fts_init_touchmode_data: mode:17, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.602580] [ FTS ] fts_init_touchmode_data: mode:18, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.602582] [ FTS ] fts_init_touchmode_data: mode:19, set cur:0, get cur:0, def:0 min:0 max:0\n[    5.602585] [ FTS ] Probe Finished! \n[    5.602761] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.602765] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.602999] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.603189] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.605578] bimc-bwmon: Zone thres larger than hw limit: hi:0 med:4000 lo:0\n[    5.605870] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.605875] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.606108] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.606300] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.606660] bimc-bwmon: Zone thres larger than hw limit: hi:0 med:4000 lo:0\n[    5.606950] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.606954] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.607188] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.607380] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.607890] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.607894] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.608120] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.608304] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.608718] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.608722] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.608947] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.609131] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.609549] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.609553] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.609777] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.609961] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.610391] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.610395] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.610619] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.610803] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.611213] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.611217] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.611440] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.611623] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.612031] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.612034] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.612258] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.612442] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.612850] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.612854] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.613078] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.613261] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.613670] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.613674] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.613900] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.614083] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.614470] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.614473] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.614727] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.614914] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.615249] bimc-bwmon: Zone thres larger than hw limit: hi:0 med:4000 lo:0\n[    5.615471] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.615475] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.615700] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.615883] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.616431] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.616435] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.616659] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.616843] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.617314] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.617318] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.617542] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.617727] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.618235] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.618239] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.618464] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.618648] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.619134] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.619138] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.619363] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.619547] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.620003] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.620007] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.620291] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.620476] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.621090] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.621094] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.621318] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.621502] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.622897] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.622901] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.623126] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.623310] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.623754] RNDIS_IPA module is loaded.\n[    5.623759] core_ctl: Creating CPU group 0\n[    5.623761] core_ctl: Init CPU0 state\n[    5.623762] core_ctl: Init CPU1 state\n[    5.623764] core_ctl: Init CPU2 state\n[    5.623765] core_ctl: Init CPU3 state\n[    5.623927] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    5.623930] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    5.624156] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.624341] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    5.624491] core_ctl: Creating CPU group 4\n[    5.624493] core_ctl: Init CPU4 state\n[    5.624494] core_ctl: Init CPU5 state\n[    5.624496] core_ctl: Init CPU6 state\n[    5.624588] core_ctl: Creating CPU group 7\n[    5.624590] core_ctl: Init CPU7 state\n[    5.624802] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    5.625333] [ FTS ] fts_status_event_handler Mutual negative detect Force cal = 01 00 00 00 00 01\n[    5.625776] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    5.626385] gpu_cc-lahaina 3d90000.qcom,gpucc: sync-state\n[    5.626651] disp_cc-lahaina af00000.qcom,dispcc: sync-state\n[    5.626766] ALSA device list:\n[    5.626775]   No soundcards found.\n[    5.626809] Warning: unable to open an initial console.\n[    5.627764] Freeing unused kernel memory: 4480K\n[    5.660081] Run /init as init process\n[    5.665218] do_mount: dev: tmpfs, mount point: /dev , retval=0\n[    5.666471] do_mount: dev: proc, mount point: /proc , retval=0\n[    5.667712] do_mount: dev: sysfs, mount point: /sys , retval=0\n[    5.668948] do_mount: dev: tmpfs, mount point: /tmp , retval=0\n[    5.850131] Booting DSP...\n[    5.851213] subsys-pil-tz 17300000.qcom,lpass: adsp: loading from 0x0000000086100000 to 0x0000000088a00000\n[    5.865462] ERROR qrtr-ns: nameserver already running, going dormant: Address in use\n[    5.976583] subsys-pil-tz 17300000.qcom,lpass: adsp: Brought out of reset\n[    5.976592] pil_boot is successful from adsp and waiting for error ready\n[    5.997424] Subsystem error monitoring/handling services are up fromadsp\n[    5.997437] subsys-pil-tz 17300000.qcom,lpass: adsp: Power/Clock ready interrupt received\n[    5.998184] 2147126146:Entered\n[    5.998363] adsprpc: fastrpc_restart_notifier_cb: adsp subsystem is up\n[    5.998458] 2147126146:SMD QRTR driver probed\n[    5.998730] sysmon-qmi: ssctl_new_server: Connection established between QMI handle and adsp's SSCTL service\n[    6.000815] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    6.000820] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    6.001246] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    6.001440] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    6.001805] cnss: DRV subsystem is connected\n[    6.003275] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    6.003279] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    6.003507] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    6.003692] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    6.004285] Info: adsprpc (4679): kworker/0:5: fastrpc_rpmsg_probe: opened rpmsg channel for adsp\n[    6.006135] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    6.006139] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    6.006369] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    6.006555] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    6.006884] apr_tal_rpmsg soc:adsp.apr_audio_svc.-1.-1: apr_tal_rpmsg_probe: Channel[apr_audio_svc] state[Up]\n[    6.009314] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    6.009318] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    6.009547] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    6.009733] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    6.220365] sd 0:0:0:3: [sdd] Synchronizing SCSI cache\n[    6.220410] sd 0:0:0:1: [sdb] Synchronizing SCSI cache\n[    6.220428] sd 0:0:0:2: [sdc] Synchronizing SCSI cache\n[    6.230096] sd 0:0:0:5: [sdf] Synchronizing SCSI cache\n[    6.230119] sd 0:0:0:0: [sda] Synchronizing SCSI cache\n[    6.230158] sd 0:0:0:4: [sde] Synchronizing SCSI cache\n[    6.267244] qti_battery_charger soc:qcom,pmic_glink:qcom,battery_charger: battery_chg_probe start\n[    6.268733] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    6.268737] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    6.268967] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    6.269152] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    6.271268] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    6.271272] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    6.271502] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    6.271688] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    6.323512] BATTERY_CHG: power_supply_read_temp: batt_thermal temp:37 ,delta:6320 rc=0\n[    6.324143] qti_battery_charger soc:qcom,pmic_glink:qcom,battery_charger: battery_chg_probe done\n[    6.326065] AMOLED_ECM: amoled_ecm_parse_dt: failed to get active panel, rc=-517\n[    6.326069] qti_amoled_ecm c440000.qcom,spmi:qcom,pm8350b@3:qcom,amoled-ecm@f900: Failed to parse AMOLED ECM rc=-517\n[    6.326298] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    6.326483] voice_alloc_cal_mem_map_table: data 0000000000000000 phys 0000000077e08b97\n[    6.328041] BATTERY_CHG: handle_notification: notification: 0x81\n[    6.831012] [ FTS ] fts_write_charge_status charging_status:0\n[    7.451345] OF: graph: no port node found in /soc/qcom,pmic_glink/qcom,ucsi/port\n[    7.451350] OF: graph: no port node found in /soc/qcom,pmic_glink/qcom,ucsi/port\n[    7.600230] aw8697_ram_work_routine enter\n[    7.600369] aw8697_haptic 0-005a: Direct firmware load for aw8697_haptic.bin failed with error -2\n[    7.600373] aw8697_haptic 0-005a: Falling back to sysfs fallback for: aw8697_haptic.bin\n[    9.558225] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    9.558378] cpu1 \n[    9.558434] cpu4 \n[    9.558485] cpu7 \n[    9.558529] \n               Offline CPUs: \n[    9.561078] cpu1 \n[    9.562097] CPU1: shutdown\n[    9.562102] psci: CPU1 killed (polled 0 ms)\n[    9.562737] cpu2 \n[    9.564155] CPU2: shutdown\n[    9.564158] psci: CPU2 killed (polled 0 ms)\n[    9.564692] cpu3 \n[    9.566023] CPU3: shutdown\n[    9.566026] psci: CPU3 killed (polled 0 ms)\n[    9.566494] cpu4 \n[    9.567761] IRQ 13: no longer affine to CPU4\n[    9.567796] CPU4: shutdown\n[    9.567832] psci: CPU4 killed (polled 0 ms)\n[    9.568151] cpu5 \n[    9.568597] IRQ 13: no longer affine to CPU5\n[    9.568662] CPU5: shutdown\n[    9.568666] psci: CPU5 killed (polled 0 ms)\n[    9.568962] cpu6 \n[    9.569395] IRQ 13: no longer affine to CPU6\n[    9.569440] CPU6: shutdown\n[    9.569443] psci: CPU6 killed (polled 0 ms)\n[    9.569834] cpu7 \n[    9.570174] IRQ 14: no longer affine to CPU7\n[    9.570242] CPU7: shutdown\n[    9.570246] psci: CPU7 killed (polled 0 ms)\n\n[   11.369195] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[   14.609633] Sampling power every 1000 ms\n               Baseline power usage: \n[   35.681509] gcc_ufs_card_gdsc: disabling\n[   35.681550] gcc_usb30_prim_gdsc: disabling\n[   35.681596] camera_wide_vana_ldo: disabling\n[   35.681608] camera_front_vdig_ldo: disabling\n[   35.681618] camera_front_vana_ldo: disabling\n[   35.681628] camera_macro_vana_ldo: disabling\n[   35.681639] display_panel_vddd: disabling\n[   35.681649] display_panel_avdd: disabling\n[   35.681698] pm8008i-chip-en: disabling\n[   69.601425] aw8697_ram_loaded enter\n[   69.601437] aw8697_ram_loaded: failed to read aw8697_haptic.bin\n[   90.709418] Detected VIPT I-cache on CPU1\n[   90.709733] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]\n[   90.711192] ------------[ cut here ]------------\n[   90.711229] WARNING: CPU: 1 PID: 15 at kernel/smp.c:296 smp_call_function_single+0x1ac/0x1c0\n[   90.711249] CPU: 1 PID: 15 Comm: cpuhp/1 Tainted: G S                5.4.61-DynamIQ-R1 #14\n[   90.711258] Hardware name: Venus based on Qualcomm Technologies, Inc SM8350 (DT)\n[   90.711273] pstate: 20c00085 (nzCv daIf +PAN +UAO)\n[   90.711289] pc : smp_call_function_single+0x1ac/0x1c0\n[   90.711308] lr : perf_install_in_context+0x8c/0x1c0\n[   90.711316] sp : ffffffc01024bc00\n[   90.711325] x29: ffffffc01024bc40 x28: 0000000000000000 \n[   90.711343] x27: ffffff800d98b438 x26: ffffff800d9ab800 \n[   90.711360] x25: 0000000000000000 x24: ffffff82f274eb20 \n[   90.711377] x23: ffffff82f274eb10 x22: 0000000000000001 \n[   90.711393] x21: 0000000000000000 x20: ffffff800d9ab800 \n[   90.711410] x19: ffffff82d19e2800 x18: 0000000006acfc00 \n[   90.711426] x17: 0000000000000001 x16: 00000000000000e4 \n[   90.711442] x15: 0000000000000ccc x14: ffffc00000000000 \n[   90.711458] x13: 0000000000000004 x12: 0000000000000000 \n[   90.711475] x11: ffffffec804c9ce8 x10: 0000000000000080 \n[   90.711491] x9 : 0000000000000000 x8 : ffffffc01024bc68 \n[   90.711507] x7 : 0000000000000000 x6 : 000000000000003f \n[   90.711522] x5 : 0000000000000040 x4 : 0000000000000000 \n[   90.711538] x3 : 0000000000000001 x2 : ffffffec7dffede0 \n[   90.711554] x1 : ffffffec7dffede0 x0 : 0000000000000001 \n[   90.711569] Call trace:\n[   90.711588]  smp_call_function_single+0x1ac/0x1c0\n[   90.711605]  perf_install_in_context+0x8c/0x1c0\n[   90.711621]  perf_event_create_kernel_counter+0x150/0x260\n[   90.711639]  hotplug_notify_up+0x90/0x1f0\n[   90.711657]  cpuhp_invoke_callback+0x1c8/0x730\n[   90.711673]  cpuhp_thread_fun+0x124/0x170\n[   90.711689]  smpboot_thread_fn+0x20c/0x2c0\n[   90.711703]  kthread+0x134/0x1f0\n[   90.711719]  ret_from_fork+0x10/0x24\n[   90.711729] ---[ end trace ed6449deacf7b26b ]---\n[   91.721517] 1293 mW\n               \n               \n               ===== CPU 1 =====\n               Frequencies: 300 403 499 595 691 806 902 998 1094 1209 1305 1401 1497 1612 1708 1804\n               \n                300: \n[  305.120646] servloc: init_service_locator: init_service_locator: wait for locator service timed out\n[  305.120687] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120699] PMIC_GLINK: pmic_glink_serv_loc_cb: PDR service locator for client: (null) service: (efault) is down\n[  305.120761] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120773] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for audio_pdr_adsprpc\n[  305.120827] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120839] adsprpc: fastrpc_get_service_location_notify: PDR notifier locator for adsp is down for sensors_pdr_adsprpc\n[  305.120900] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  305.120917] audio_notifier_reg_service: service SSR_ADSP is in use\n[  305.120952] servloc: pd_locator_work: Unable to connect to service locator!, rc = -62\n[  312.731795] BATTERY_CHG: handle_notification: notification: 0x80\n[  315.367520] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[  370.424806]  1112     3.7 C/MHz     74 mW   20.0 J   15.0 I/mJ   269.8 s\n                403: \n[  558.066784] perf: interrupt took too long (2503 > 2500), lowering kernel.perf_event_max_sample_rate to 79900\n[  579.634528]  1495     3.7 C/MHz     74 mW   14.8 J   20.3 I/mJ   200.7 s\n                499: \n[  617.447443] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[  750.472550]  1852     3.7 C/MHz     77 mW   12.4 J   24.1 I/mJ   162.0 s\n                595: \n[  895.393652]  2208     3.7 C/MHz     81 mW   11.0 J   27.2 I/mJ   135.9 s\n                691: \n[  912.874949] BATTERY_CHG: handle_notification: notification: 0x80\n[  919.527702] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 1020.674990]  2565     3.7 C/MHz     83 mW    9.7 J   30.9 I/mJ   117.0 s\n                806: \n[ 1129.330017]  2992     3.7 C/MHz     87 mW    8.7 J   34.5 I/mJ   100.3 s\n                902: \n[ 1221.607156] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 1227.596978]  3349     3.7 C/MHz     90 mW    8.1 J   37.3 I/mJ    89.6 s\n                998: \n[ 1317.606421]  3705     3.7 C/MHz     95 mW    7.7 J   39.0 I/mJ    81.0 s\n               1094: \n[ 1400.363878]  4061     3.7 C/MHz    101 mW    7.5 J   40.2 I/mJ    73.9 s\n               1209: \n[ 1475.870829]  4489     3.7 C/MHz    105 mW    7.0 J   42.6 I/mJ    66.8 s\n               1305: \n[ 1513.012014] BATTERY_CHG: handle_notification: notification: 0x80\n[ 1523.687132] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 1546.247780]  4846     3.7 C/MHz    113 mW    7.0 J   42.8 I/mJ    61.9 s\n               1401: \n[ 1612.433091]  5202     3.7 C/MHz    115 mW    6.7 J   45.1 I/mJ    57.7 s\n               1497: \n[ 1675.507406]  5559     3.7 C/MHz    119 mW    6.4 J   46.6 I/mJ    54.0 s\n               1612: \n[ 1734.442951]  5986     3.7 C/MHz    124 mW    6.2 J   48.1 I/mJ    50.1 s\n               1708: \n[ 1790.272847]  6342     3.7 C/MHz    130 mW    6.1 J   48.9 I/mJ    47.3 s\n               1804: \n[ 1825.767089] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 1844.036003] CPU1: shutdown\n[ 1844.036023] psci: CPU1 killed (polled 0 ms)\n[ 1844.040176] CPU features: detected: Hardware dirty bit management\n[ 1844.040189] Detected PIPT I-cache on CPU4\n[ 1844.040193] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU4: 0x1100000011111112\n[ 1844.040196] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU4: 0x00000000010142\n[ 1844.040197] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU4: 0x00000010010131\n[ 1844.040198] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU4: 0x00000010010000\n[ 1844.040248] CPU4: Booted secondary processor 0x0000000400 [0x411fd410]\n[ 1845.051578]  6699     3.7 C/MHz    146 mW    6.5 J   46.0 I/mJ    44.8 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 710 844 960 1075 1209 1324 1440 1555 1670 1766 1881 1996 2112 2227 2342 2419\n               \n                710: \n[ 1899.933747]  6464     9.1 C/MHz    153 mW    7.1 J   42.3 I/mJ    46.4 s\n                844: \n[ 1947.558412]  7681     9.1 C/MHz    180 mW    7.0 J   42.6 I/mJ    39.1 s\n                960: \n[ 1991.038854]  8730     9.1 C/MHz    206 mW    7.1 J   42.3 I/mJ    34.4 s\n               1075: \n[ 2030.377060]  9782     9.1 C/MHz    232 mW    7.1 J   42.1 I/mJ    30.7 s\n               1209: \n[ 2066.600926] 11005     9.1 C/MHz    252 mW    6.9 J   43.6 I/mJ    27.3 s\n               1324: \n[ 2100.750863] 12052     9.1 C/MHz    289 mW    7.2 J   41.7 I/mJ    24.9 s\n               1440: \n[ 2113.168229] BATTERY_CHG: handle_notification: notification: 0x80\n[ 2127.847745] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 2132.821935] 13108     9.1 C/MHz    326 mW    7.5 J   40.2 I/mJ    22.9 s\n               1555: \n[ 2162.826923] 14140     9.1 C/MHz    360 mW    7.6 J   39.2 I/mJ    21.2 s\n               1670: \n[ 2191.793079] 15208     9.1 C/MHz    399 mW    7.9 J   38.1 I/mJ    19.7 s\n               1766: \n[ 2219.727731] 16071     9.1 C/MHz    434 mW    8.1 J   37.0 I/mJ    18.7 s\n               1881: \n[ 2245.587644] 17119     9.1 C/MHz    536 mW    9.4 J   31.9 I/mJ    17.5 s\n               1996: \n[ 2270.407286] 18158     9.1 C/MHz    564 mW    9.3 J   32.2 I/mJ    16.5 s\n               2112: \n[ 2295.227920] 19216     9.1 C/MHz    611 mW    9.5 J   31.4 I/mJ    15.6 s\n               2227: \n[ 2319.016292] 20263     9.1 C/MHz    711 mW   10.5 J   28.5 I/mJ    14.8 s\n               2342: \n[ 2341.764662] 21313     9.1 C/MHz    844 mW   11.9 J   25.2 I/mJ    14.1 s\n               2419: \n[ 2364.517785] CPU4: shutdown\n[ 2364.517806] psci: CPU4 killed (polled 0 ms)\n[ 2364.522288] Detected PIPT I-cache on CPU7\n[ 2364.522293] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64PFR0_EL1. Boot CPU: 0x00000011112222, CPU7: 0x1100000011111112\n[ 2364.522295] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_ISAR4_EL1. Boot CPU: 0x00000000011142, CPU7: 0x00000000010142\n[ 2364.522296] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR0_EL1. Boot CPU: 0x00000010000131, CPU7: 0x00000010010131\n[ 2364.522297] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_PFR1_EL1. Boot CPU: 0x00000010011011, CPU7: 0x00000010010000\n[ 2364.522352] CPU7: Booted secondary processor 0x0000000700 [0x411fd440]\n[ 2365.533223] 22001     9.1 C/MHz    871 mW   11.9 J   25.2 I/mJ    13.6 s\n               \n               \n               ===== CPU 7 =====\n               Frequencies: 844 960 1075 1190 1305 1420 1555 1670 1785 1900 2035 2150 2265 2380 2496 2592 2688 2764 2841\n               \n                844: \n[ 2412.120913]  7842     9.3 C/MHz    249 mW    9.5 J   31.5 I/mJ    38.3 s\n                960: \n[ 2429.927767] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 2454.564786]  8910     9.3 C/MHz    286 mW    9.6 J   31.2 I/mJ    33.7 s\n               1075: \n[ 2493.898755]  9982     9.3 C/MHz    313 mW    9.4 J   31.9 I/mJ    30.1 s\n               1190: \n[ 2549.817020]  6323     5.3 C/MHz    247 mW   11.7 J   25.6 I/mJ    47.5 s\n               1305: \n[ 2582.929714] 12122     9.3 C/MHz    379 mW    9.4 J   31.9 I/mJ    24.8 s\n               1420: \n[ 2626.408090]  8739     6.2 C/MHz    311 mW   10.7 J   28.1 I/mJ    34.3 s\n               1555: \n[ 2672.997886]  7838     5.0 C/MHz    307 mW   11.8 J   25.5 I/mJ    38.3 s\n               1670: \n[ 2700.929371] 15515     9.3 C/MHz    500 mW    9.7 J   31.0 I/mJ    19.3 s\n               1785: \n[ 2713.292025] BATTERY_CHG: handle_notification: notification: 0x80\n[ 2727.858274] 16435     9.2 C/MHz    559 mW   10.2 J   29.4 I/mJ    18.3 s\n               1900: \n[ 2732.011431] BATTERY_CHG: xm_charger_debug_info_print_work: usb_present: 0\n[ 2753.717904] 17647     9.3 C/MHz    624 mW   10.6 J   28.2 I/mJ    17.0 s\n               2035: \n[ 2778.542471] 18899     9.3 C/MHz    687 mW   10.9 J   27.5 I/mJ    15.9 s\n               2150: \n[ 2802.327226] 19961     9.3 C/MHz    748 mW   11.3 J   26.6 I/mJ    15.0 s\n               2265: \n[ 2825.075522] 21032     9.3 C/MHz    854 mW   12.2 J   24.6 I/mJ    14.3 s\n               2380: \n[ 2847.822719] 22117     9.3 C/MHz   1007 mW   13.7 J   21.9 I/mJ    13.6 s\n               2496: \n[ 2869.536266] 23173     9.3 C/MHz   1133 mW   14.7 J   20.4 I/mJ    13.0 s\n               2592: \n[ 2891.248184] 24091     9.3 C/MHz   1194 mW   14.9 J   20.2 I/mJ    12.5 s\n               2688: \n[ 2911.927405] 24969     9.3 C/MHz   1335 mW   16.1 J   18.7 I/mJ    12.0 s\n               2764: \n[ 2932.604740] 25665     9.3 C/MHz   1428 mW   16.7 J   18.0 I/mJ    11.7 s\n               2841: \n[ 2953.286964] CPU7: shutdown\n[ 2953.286985] psci: CPU7 killed (polled 0 ms)\n[ 2953.309861] 26388     9.3 C/MHz   1579 mW   18.0 J   16.7 I/mJ    11.4 s\n               \n               \n               Benchmark finished!\n[ 2953.327605] \n               real\t49m4.458s\n               user\t40m13.315s\n               sys\t0m2.145s\n"
  },
  {
    "path": "results/sm8350/third/post_bench_interrupts.txt",
    "content": "           CPU0       \n  3:     304176     GICv3  27 Level     arch_timer\n  5:          0     GICv3  38 Level     arch_mem_timer\n  7:          0     GICv3 195 Level     ngd_slim_irq\n  9:         19     GICv3  23 Level     arm-pmu\n 11:      10782     GICv3 261 Level     ipcc_0\n 12:          0     GICv3  62 Level     dcvsh-irq-0\n 13:          0     GICv3  63 Level     dcvsh-irq-4\n 14:          0     GICv3  51 Level     dcvsh-irq-7\n 17:        469     GICv3  37 Level     apps_rsc\n 18:        299     GICv3 297 Level     ufshcd\n 21:          0     GICv3 161 Level     disp_rsc\n 23:          2     GICv3 613 Level     90b6400.qcom,cpu-cpu-llcc-bwmon\n 24:          1     GICv3 113 Level     9091000.qcom,cpu-llcc-ddr-bwmon\n 25:          0     GICv3 258 Level     90b9100.qcom,snoop-l3-bwmon\n 26:          0       PDC  26 Level     tsens-upper-lower\n 27:          0       PDC  28 Level     tsens-critical\n 29:          0       PDC  27 Level     tsens-upper-lower\n 30:          0       PDC  29 Level     tsens-critical\n 32:          0     GICv3 296 Edge      modem\n 33:          0       PDC   6 Edge      adsp\n 34:          0     GICv3 610 Edge      cdsp\n 37:          0       PDC   9 Edge      slpi\n 38:          0     GICv3 384 Level     spss\n 39:          0       PDC  11 Level     eud_irq\n 40:          0     GICv3 304 Level     sps\n 41:          0     GICv3 704 Level     arm-smmu global fault\n 42:          0     GICv3 705 Level     arm-smmu global fault\n 43:          0     GICv3 710 Level     arm-smmu-context-fault\n 44:          0     GICv3 711 Level     arm-smmu-context-fault\n 45:          0     GICv3 712 Level     arm-smmu-context-fault\n 46:          0     GICv3 713 Level     arm-smmu-context-fault\n 53:          0     GICv3  96 Level     arm-smmu global fault\n 54:          0     GICv3  97 Level     arm-smmu global fault\n 55:          0     GICv3 129 Level     arm-smmu-context-fault\n 59:          0     GICv3 133 Level     arm-smmu-context-fault\n 60:          0     GICv3 134 Level     arm-smmu-context-fault\n 61:          0     GICv3 135 Level     arm-smmu-context-fault\n 62:          0     GICv3 136 Level     arm-smmu-context-fault\n 63:          0     GICv3 137 Level     arm-smmu-context-fault\n 64:          0     GICv3 138 Level     arm-smmu-context-fault\n 65:          0     GICv3 139 Level     arm-smmu-context-fault\n 66:          0     GICv3 140 Level     arm-smmu-context-fault\n 67:          0     GICv3 141 Level     arm-smmu-context-fault\n 68:          0     GICv3 142 Level     arm-smmu-context-fault\n 69:          0     GICv3 143 Level     arm-smmu-context-fault\n 70:          0     GICv3 144 Level     arm-smmu-context-fault\n 71:          0     GICv3 145 Level     arm-smmu-context-fault\n 72:          0     GICv3 146 Level     arm-smmu-context-fault\n 73:          0     GICv3 147 Level     arm-smmu-context-fault\n 74:          0     GICv3 148 Level     arm-smmu-context-fault\n 75:          0     GICv3 149 Level     arm-smmu-context-fault\n 76:          0     GICv3 150 Level     arm-smmu-context-fault\n 77:          0     GICv3 213 Level     arm-smmu-context-fault\n 78:          0     GICv3 214 Level     arm-smmu-context-fault\n 79:          0     GICv3 215 Level     arm-smmu-context-fault\n 80:          0     GICv3 216 Level     arm-smmu-context-fault\n 81:          0     GICv3 217 Level     arm-smmu-context-fault\n 82:          0     GICv3 218 Level     arm-smmu-context-fault\n 83:          0     GICv3 219 Level     arm-smmu-context-fault\n 84:          0     GICv3 220 Level     arm-smmu-context-fault\n 85:          0     GICv3 221 Level     arm-smmu-context-fault\n 86:          0     GICv3 222 Level     arm-smmu-context-fault\n 87:          0     GICv3 223 Level     arm-smmu-context-fault\n 88:          0     GICv3 224 Level     arm-smmu-context-fault\n 89:          0     GICv3 347 Level     arm-smmu-context-fault\n 90:          0     GICv3 348 Level     arm-smmu-context-fault\n 91:          0     GICv3 349 Level     arm-smmu-context-fault\n 92:          0     GICv3 350 Level     arm-smmu-context-fault\n 93:          0     GICv3 351 Level     arm-smmu-context-fault\n 94:          0     GICv3 352 Level     arm-smmu-context-fault\n 95:          0     GICv3 353 Level     arm-smmu-context-fault\n 96:          0     GICv3 354 Level     arm-smmu-context-fault\n 97:          0     GICv3 355 Level     arm-smmu-context-fault\n 98:          0     GICv3 356 Level     arm-smmu-context-fault\n 99:          0     GICv3 357 Level     arm-smmu-context-fault\n100:          0     GICv3 358 Level     arm-smmu-context-fault\n101:          0     GICv3 359 Level     arm-smmu-context-fault\n102:          0     GICv3 360 Level     arm-smmu-context-fault\n103:          0     GICv3 361 Level     arm-smmu-context-fault\n104:          0     GICv3 362 Level     arm-smmu-context-fault\n105:          0     GICv3 363 Level     arm-smmu-context-fault\n106:          0     GICv3 364 Level     arm-smmu-context-fault\n107:          0     GICv3 365 Level     arm-smmu-context-fault\n108:          0     GICv3 366 Level     arm-smmu-context-fault\n109:          0     GICv3 367 Level     arm-smmu-context-fault\n110:          0     GICv3 368 Level     arm-smmu-context-fault\n151:          0       PDC  14 Edge      dp_hs_phy_irq\n152:          0     GICv3 162 Level     pwr_event_irq\n153:          0       PDC  17 Level     ss_phy_irq\n154:          0       PDC  15 Edge      dm_hs_phy_irq\n169:          0     GICv3 634 Level     spi_geni\n170:        427     GICv3 639 Level     i2c_geni\n183:      11239     GICv3 388 Level     spi_geni\n184:       1420     GICv3 385 Level     i2c_geni\n185:        242     GICv3 390 Level     i2c_geni\n198:          0     GICv3 618 Level     msm_serial_geni0\n199:          4     GICv3 615 Level     i2c_geni\n200:          0     GICv3 206 Level     msm_vidc\n201:          0     GICv3 266 Level     msm_cvp\n202:          0     GICv3 172 Edge      int_global_int\n271:          0     GICv3 332 Level     kgsl_3d0_irq\n272:          0     GICv3 336 Level     kgsl_hfi_irq\n273:          0     GICv3 337 Level     kgsl_gmu_irq\n274:          0     GICv3 115 Level     msm_drm\n277:          0     GICv3 509 Edge      csiphy0\n278:          0     GICv3 510 Edge      csiphy1\n279:          0     GICv3 511 Edge      csiphy2\n280:          0     GICv3 480 Edge      csiphy3\n281:          0     GICv3 154 Edge      csiphy4\n282:          0     GICv3 121 Edge      csiphy5\n283:          0     GICv3 492 Edge      cci\n284:          0     GICv3 303 Edge      cci\n285:          0     GICv3 491 Edge      cpas_camnoc\n286:          2     GICv3 493 Edge      cpas-cdm\n287:          2     GICv3 488 Edge      ife-cdm0\n288:          2     GICv3 319 Edge      ife-cdm1\n289:          2     GICv3 674 Edge      ife-cdm2\n290:          0     GICv3 496 Edge      csid\n291:          2     GICv3 497 Edge      ife\n292:          0     GICv3 498 Edge      csid\n293:          2     GICv3 499 Edge      ife\n294:          0     GICv3 672 Edge      csid\n295:          2     GICv3 673 Edge      ife\n296:          0     GICv3 500 Edge      csid-lite\n297:          2     GICv3 501 Edge      ife-lite\n298:          0     GICv3 391 Edge      csid-lite\n299:          2     GICv3 392 Edge      ife-lite\n300:          0     GICv3 495 Edge      a5\n301:          0     GICv3 506 Edge      jpeg\n302:          0     GICv3 507 Edge      jpegdma\n303:          0     GICv3  32 Edge      apps_wdog_bark\n304:          0     GICv3 960 Edge      hh_msgq_tx_0\n305:          0     GICv3 961 Edge      hh_msgq_rx_0\n306:        151      ipcc   0 Edge      qcom,qmp-aop\n307:          0  pmic_arb 20381778 Edge      pon_kpdpwr_status\n308:          0  pmic_arb 20316242 Edge      pon_resin_status\n309:          0  pmic_arb 19923026 Edge      pon_kpdpwr_bark\n310:          0  pmic_arb 20054098 Edge      pon_kpdpwr_resin_bark\n311:          0  pmic_arb 51380307 Edge      pm-adc5\n313:          0  pmic_arb 102826069 Edge      pm8xxx_rtc_alarm\n319:          0  pmic_arb 786432130 Edge      flash_fault\n320:          0  pmic_arb 786628738 Edge      flash_all_ramp_down\n321:          0  pmic_arb 786694274 Edge      flash_all_ramp_up\n331:          2      ipcc 196610 Edge      smp2p\n332:          0      ipcc 262146 Edge      smp2p\n333:          0      ipcc 393218 Edge      smp2p\n334:          0      ipcc 131074 Edge      smp2p\n335:          0      ipcc 1048577 Edge      qsee_ipc_irq_spss\n336:          0     smp2p   0 Edge      smp2p_sleepstate\n340:          0  spmi-gpio   8 Edge      soc:extcon_usb1\n341:          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n342:          0     GICv3 165 Level     dwc3\n344:          0   msmgpio 119 Edge      aw8697\n345:          0   msmgpio  44 Level     cs35l41\n346:          0   msmgpio 116 Level     cs35l41\n348:          0   msmgpio  87 Level     sn-nci\n349:          1   msmgpio  96 Edge      msm_pcie_wake\n350:          0     smp2p   0 Edge      cdsp\n351:          0     smp2p   1 Edge      error_ready_interrupt\n352:          0     smp2p   3 Edge      cdsp\n353:          0     smp2p   2 Edge      cdsp\n354:          0     smp2p   0 Edge      adsp\n355:          0     smp2p   1 Edge      error_ready_interrupt\n356:          0     smp2p   3 Edge      adsp\n357:          0     smp2p   2 Edge      adsp\n358:          0     smp2p   0 Edge      slpi\n359:          0     smp2p   1 Edge      error_ready_interrupt\n360:          0     smp2p   3 Edge      slpi\n361:          0     smp2p   2 Edge      slpi\n362:          0     smp2p   0 Edge      modem\n363:          0     smp2p   1 Edge      error_ready_interrupt\n364:          0     smp2p   3 Edge      modem\n365:          0     smp2p   7 Edge      modem\n366:          0     smp2p   2 Edge      modem\n367:          0   msmgpio  75 Edge      esd_err_irq\n368:          0   msmgpio  82 Edge      TE_GPIO\n369:          0       sde   4 Edge      dsi_ctrl\n370:          0  spmi-gpio   5 Edge      volume_up\n371:          3   msmgpio  23 Level     fts\n404:      10700      ipcc 196608 Edge      glink-native\nIPI0:      2673       Rescheduling interrupts\nIPI1:        59       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:    183653       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8350/third/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n  3:       1055         17         21         19          1          1          1          1     GICv3  27 Level     arch_timer\n  5:          0          0          0          0          0          0          0          0     GICv3  38 Level     arch_mem_timer\n  7:          0          0          0          0          0          0          0          0     GICv3 195 Level     ngd_slim_irq\n  9:          0          0          0          0          0          0          0          0     GICv3  23 Level     arm-pmu\n 11:        444          0          0          0          0          0          0          0     GICv3 261 Level     ipcc_0\n 12:          0          0          0          0          0          0          0          0     GICv3  62 Level     dcvsh-irq-0\n 13:          0          0          0          0          0          0          0          0     GICv3  63 Level     dcvsh-irq-4\n 14:          0          0          0          0          0          0          0          0     GICv3  51 Level     dcvsh-irq-7\n 17:        338          0          0          0          0          0          0          0     GICv3  37 Level     apps_rsc\n 18:        299          0          0          0          0          0          0          0     GICv3 297 Level     ufshcd\n 21:          0          0          0          0          0          0          0          0     GICv3 161 Level     disp_rsc\n 23:          1          0          0          0          0          0          0          0     GICv3 613 Level     90b6400.qcom,cpu-cpu-llcc-bwmon\n 24:          1          0          0          0          0          0          0          0     GICv3 113 Level     9091000.qcom,cpu-llcc-ddr-bwmon\n 25:          0          0          0          0          0          0          0          0     GICv3 258 Level     90b9100.qcom,snoop-l3-bwmon\n 26:          0          0          0          0          0          0          0          0       PDC  26 Level     tsens-upper-lower\n 27:          0          0          0          0          0          0          0          0       PDC  28 Level     tsens-critical\n 29:          0          0          0          0          0          0          0          0       PDC  27 Level     tsens-upper-lower\n 30:          0          0          0          0          0          0          0          0       PDC  29 Level     tsens-critical\n 32:          0          0          0          0          0          0          0          0     GICv3 296 Edge      modem\n 33:          0          0          0          0          0          0          0          0       PDC   6 Edge      adsp\n 34:          0          0          0          0          0          0          0          0     GICv3 610 Edge      cdsp\n 37:          0          0          0          0          0          0          0          0       PDC   9 Edge      slpi\n 38:          0          0          0          0          0          0          0          0     GICv3 384 Level     spss\n 39:          0          0          0          0          0          0          0          0       PDC  11 Level     eud_irq\n 40:          0          0          0          0          0          0          0          0     GICv3 304 Level     sps\n 41:          0          0          0          0          0          0          0          0     GICv3 704 Level     arm-smmu global fault\n 42:          0          0          0          0          0          0          0          0     GICv3 705 Level     arm-smmu global fault\n 43:          0          0          0          0          0          0          0          0     GICv3 710 Level     arm-smmu-context-fault\n 44:          0          0          0          0          0          0          0          0     GICv3 711 Level     arm-smmu-context-fault\n 45:          0          0          0          0          0          0          0          0     GICv3 712 Level     arm-smmu-context-fault\n 46:          0          0          0          0          0          0          0          0     GICv3 713 Level     arm-smmu-context-fault\n 53:          0          0          0          0          0          0          0          0     GICv3  96 Level     arm-smmu global fault\n 54:          0          0          0          0          0          0          0          0     GICv3  97 Level     arm-smmu global fault\n 55:          0          0          0          0          0          0          0          0     GICv3 129 Level     arm-smmu-context-fault\n 59:          0          0          0          0          0          0          0          0     GICv3 133 Level     arm-smmu-context-fault\n 60:          0          0          0          0          0          0          0          0     GICv3 134 Level     arm-smmu-context-fault\n 61:          0          0          0          0          0          0          0          0     GICv3 135 Level     arm-smmu-context-fault\n 62:          0          0          0          0          0          0          0          0     GICv3 136 Level     arm-smmu-context-fault\n 63:          0          0          0          0          0          0          0          0     GICv3 137 Level     arm-smmu-context-fault\n 64:          0          0          0          0          0          0          0          0     GICv3 138 Level     arm-smmu-context-fault\n 65:          0          0          0          0          0          0          0          0     GICv3 139 Level     arm-smmu-context-fault\n 66:          0          0          0          0          0          0          0          0     GICv3 140 Level     arm-smmu-context-fault\n 67:          0          0          0          0          0          0          0          0     GICv3 141 Level     arm-smmu-context-fault\n 68:          0          0          0          0          0          0          0          0     GICv3 142 Level     arm-smmu-context-fault\n 69:          0          0          0          0          0          0          0          0     GICv3 143 Level     arm-smmu-context-fault\n 70:          0          0          0          0          0          0          0          0     GICv3 144 Level     arm-smmu-context-fault\n 71:          0          0          0          0          0          0          0          0     GICv3 145 Level     arm-smmu-context-fault\n 72:          0          0          0          0          0          0          0          0     GICv3 146 Level     arm-smmu-context-fault\n 73:          0          0          0          0          0          0          0          0     GICv3 147 Level     arm-smmu-context-fault\n 74:          0          0          0          0          0          0          0          0     GICv3 148 Level     arm-smmu-context-fault\n 75:          0          0          0          0          0          0          0          0     GICv3 149 Level     arm-smmu-context-fault\n 76:          0          0          0          0          0          0          0          0     GICv3 150 Level     arm-smmu-context-fault\n 77:          0          0          0          0          0          0          0          0     GICv3 213 Level     arm-smmu-context-fault\n 78:          0          0          0          0          0          0          0          0     GICv3 214 Level     arm-smmu-context-fault\n 79:          0          0          0          0          0          0          0          0     GICv3 215 Level     arm-smmu-context-fault\n 80:          0          0          0          0          0          0          0          0     GICv3 216 Level     arm-smmu-context-fault\n 81:          0          0          0          0          0          0          0          0     GICv3 217 Level     arm-smmu-context-fault\n 82:          0          0          0          0          0          0          0          0     GICv3 218 Level     arm-smmu-context-fault\n 83:          0          0          0          0          0          0          0          0     GICv3 219 Level     arm-smmu-context-fault\n 84:          0          0          0          0          0          0          0          0     GICv3 220 Level     arm-smmu-context-fault\n 85:          0          0          0          0          0          0          0          0     GICv3 221 Level     arm-smmu-context-fault\n 86:          0          0          0          0          0          0          0          0     GICv3 222 Level     arm-smmu-context-fault\n 87:          0          0          0          0          0          0          0          0     GICv3 223 Level     arm-smmu-context-fault\n 88:          0          0          0          0          0          0          0          0     GICv3 224 Level     arm-smmu-context-fault\n 89:          0          0          0          0          0          0          0          0     GICv3 347 Level     arm-smmu-context-fault\n 90:          0          0          0          0          0          0          0          0     GICv3 348 Level     arm-smmu-context-fault\n 91:          0          0          0          0          0          0          0          0     GICv3 349 Level     arm-smmu-context-fault\n 92:          0          0          0          0          0          0          0          0     GICv3 350 Level     arm-smmu-context-fault\n 93:          0          0          0          0          0          0          0          0     GICv3 351 Level     arm-smmu-context-fault\n 94:          0          0          0          0          0          0          0          0     GICv3 352 Level     arm-smmu-context-fault\n 95:          0          0          0          0          0          0          0          0     GICv3 353 Level     arm-smmu-context-fault\n 96:          0          0          0          0          0          0          0          0     GICv3 354 Level     arm-smmu-context-fault\n 97:          0          0          0          0          0          0          0          0     GICv3 355 Level     arm-smmu-context-fault\n 98:          0          0          0          0          0          0          0          0     GICv3 356 Level     arm-smmu-context-fault\n 99:          0          0          0          0          0          0          0          0     GICv3 357 Level     arm-smmu-context-fault\n100:          0          0          0          0          0          0          0          0     GICv3 358 Level     arm-smmu-context-fault\n101:          0          0          0          0          0          0          0          0     GICv3 359 Level     arm-smmu-context-fault\n102:          0          0          0          0          0          0          0          0     GICv3 360 Level     arm-smmu-context-fault\n103:          0          0          0          0          0          0          0          0     GICv3 361 Level     arm-smmu-context-fault\n104:          0          0          0          0          0          0          0          0     GICv3 362 Level     arm-smmu-context-fault\n105:          0          0          0          0          0          0          0          0     GICv3 363 Level     arm-smmu-context-fault\n106:          0          0          0          0          0          0          0          0     GICv3 364 Level     arm-smmu-context-fault\n107:          0          0          0          0          0          0          0          0     GICv3 365 Level     arm-smmu-context-fault\n108:          0          0          0          0          0          0          0          0     GICv3 366 Level     arm-smmu-context-fault\n109:          0          0          0          0          0          0          0          0     GICv3 367 Level     arm-smmu-context-fault\n110:          0          0          0          0          0          0          0          0     GICv3 368 Level     arm-smmu-context-fault\n151:          0          0          0          0          0          0          0          0       PDC  14 Edge      dp_hs_phy_irq\n152:          0          0          0          0          0          0          0          0     GICv3 162 Level     pwr_event_irq\n153:          0          0          0          0          0          0          0          0       PDC  17 Level     ss_phy_irq\n154:          0          0          0          0          0          0          0          0       PDC  15 Edge      dm_hs_phy_irq\n169:          0          0          0          0          0          0          0          0     GICv3 634 Level     spi_geni\n170:        427          0          0          0          0          0          0          0     GICv3 639 Level     i2c_geni\n183:      11239          0          0          0          0          0          0          0     GICv3 388 Level     spi_geni\n184:       1420          0          0          0          0          0          0          0     GICv3 385 Level     i2c_geni\n185:        216          0          0          0          0          0          0          0     GICv3 390 Level     i2c_geni\n198:          0          0          0          0          0          0          0          0     GICv3 618 Level     msm_serial_geni0\n199:          4          0          0          0          0          0          0          0     GICv3 615 Level     i2c_geni\n200:          0          0          0          0          0          0          0          0     GICv3 206 Level     msm_vidc\n201:          0          0          0          0          0          0          0          0     GICv3 266 Level     msm_cvp\n202:          0          0          0          0          0          0          0          0     GICv3 172 Edge      int_global_int\n271:          0          0          0          0          0          0          0          0     GICv3 332 Level     kgsl_3d0_irq\n272:          0          0          0          0          0          0          0          0     GICv3 336 Level     kgsl_hfi_irq\n273:          0          0          0          0          0          0          0          0     GICv3 337 Level     kgsl_gmu_irq\n274:          0          0          0          0          0          0          0          0     GICv3 115 Level     msm_drm\n277:          0          0          0          0          0          0          0          0     GICv3 509 Edge      csiphy0\n278:          0          0          0          0          0          0          0          0     GICv3 510 Edge      csiphy1\n279:          0          0          0          0          0          0          0          0     GICv3 511 Edge      csiphy2\n280:          0          0          0          0          0          0          0          0     GICv3 480 Edge      csiphy3\n281:          0          0          0          0          0          0          0          0     GICv3 154 Edge      csiphy4\n282:          0          0          0          0          0          0          0          0     GICv3 121 Edge      csiphy5\n283:          0          0          0          0          0          0          0          0     GICv3 492 Edge      cci\n284:          0          0          0          0          0          0          0          0     GICv3 303 Edge      cci\n285:          0          0          0          0          0          0          0          0     GICv3 491 Edge      cpas_camnoc\n286:          2          0          0          0          0          0          0          0     GICv3 493 Edge      cpas-cdm\n287:          2          0          0          0          0          0          0          0     GICv3 488 Edge      ife-cdm0\n288:          2          0          0          0          0          0          0          0     GICv3 319 Edge      ife-cdm1\n289:          2          0          0          0          0          0          0          0     GICv3 674 Edge      ife-cdm2\n290:          0          0          0          0          0          0          0          0     GICv3 496 Edge      csid\n291:          2          0          0          0          0          0          0          0     GICv3 497 Edge      ife\n292:          0          0          0          0          0          0          0          0     GICv3 498 Edge      csid\n293:          2          0          0          0          0          0          0          0     GICv3 499 Edge      ife\n294:          0          0          0          0          0          0          0          0     GICv3 672 Edge      csid\n295:          2          0          0          0          0          0          0          0     GICv3 673 Edge      ife\n296:          0          0          0          0          0          0          0          0     GICv3 500 Edge      csid-lite\n297:          2          0          0          0          0          0          0          0     GICv3 501 Edge      ife-lite\n298:          0          0          0          0          0          0          0          0     GICv3 391 Edge      csid-lite\n299:          2          0          0          0          0          0          0          0     GICv3 392 Edge      ife-lite\n300:          0          0          0          0          0          0          0          0     GICv3 495 Edge      a5\n301:          0          0          0          0          0          0          0          0     GICv3 506 Edge      jpeg\n302:          0          0          0          0          0          0          0          0     GICv3 507 Edge      jpegdma\n303:          0          0          0          0          0          0          0          0     GICv3  32 Edge      apps_wdog_bark\n304:          0          0          0          0          0          0          0          0     GICv3 960 Edge      hh_msgq_tx_0\n305:          0          0          0          0          0          0          0          0     GICv3 961 Edge      hh_msgq_rx_0\n306:        151          0          0          0          0          0          0          0      ipcc   0 Edge      qcom,qmp-aop\n307:          0          0          0          0          0          0          0          0  pmic_arb 20381778 Edge      pon_kpdpwr_status\n308:          0          0          0          0          0          0          0          0  pmic_arb 20316242 Edge      pon_resin_status\n309:          0          0          0          0          0          0          0          0  pmic_arb 19923026 Edge      pon_kpdpwr_bark\n310:          0          0          0          0          0          0          0          0  pmic_arb 20054098 Edge      pon_kpdpwr_resin_bark\n311:          0          0          0          0          0          0          0          0  pmic_arb 51380307 Edge      pm-adc5\n313:          0          0          0          0          0          0          0          0  pmic_arb 102826069 Edge      pm8xxx_rtc_alarm\n319:          0          0          0          0          0          0          0          0  pmic_arb 786432130 Edge      flash_fault\n320:          0          0          0          0          0          0          0          0  pmic_arb 786628738 Edge      flash_all_ramp_down\n321:          0          0          0          0          0          0          0          0  pmic_arb 786694274 Edge      flash_all_ramp_up\n331:          2          0          0          0          0          0          0          0      ipcc 196610 Edge      smp2p\n332:          0          0          0          0          0          0          0          0      ipcc 262146 Edge      smp2p\n333:          0          0          0          0          0          0          0          0      ipcc 393218 Edge      smp2p\n334:          0          0          0          0          0          0          0          0      ipcc 131074 Edge      smp2p\n335:          0          0          0          0          0          0          0          0      ipcc 1048577 Edge      qsee_ipc_irq_spss\n336:          0          0          0          0          0          0          0          0     smp2p   0 Edge      smp2p_sleepstate\n340:          0          0          0          0          0          0          0          0  spmi-gpio   8 Edge      soc:extcon_usb1\n341:          0          0          0          0          0          0          0          0     smp2p   0 Edge      ipa_smp2p_clk_vote\n342:          0          0          0          0          0          0          0          0     GICv3 165 Level     dwc3\n344:          0          0          0          0          0          0          0          0   msmgpio 119 Edge      aw8697\n345:          0          0          0          0          0          0          0          0   msmgpio  44 Level     cs35l41\n346:          0          0          0          0          0          0          0          0   msmgpio 116 Level     cs35l41\n348:          0          0          0          0          0          0          0          0   msmgpio  87 Level     sn-nci\n349:          1          0          0          0          0          0          0          0   msmgpio  96 Edge      msm_pcie_wake\n350:          0          0          0          0          0          0          0          0     smp2p   0 Edge      cdsp\n351:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n352:          0          0          0          0          0          0          0          0     smp2p   3 Edge      cdsp\n353:          0          0          0          0          0          0          0          0     smp2p   2 Edge      cdsp\n354:          0          0          0          0          0          0          0          0     smp2p   0 Edge      adsp\n355:          0          0          1          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n356:          0          0          0          0          0          0          0          0     smp2p   3 Edge      adsp\n357:          0          0          1          0          0          0          0          0     smp2p   2 Edge      adsp\n358:          0          0          0          0          0          0          0          0     smp2p   0 Edge      slpi\n359:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n360:          0          0          0          0          0          0          0          0     smp2p   3 Edge      slpi\n361:          0          0          0          0          0          0          0          0     smp2p   2 Edge      slpi\n362:          0          0          0          0          0          0          0          0     smp2p   0 Edge      modem\n363:          0          0          0          0          0          0          0          0     smp2p   1 Edge      error_ready_interrupt\n364:          0          0          0          0          0          0          0          0     smp2p   3 Edge      modem\n365:          0          0          0          0          0          0          0          0     smp2p   7 Edge      modem\n366:          0          0          0          0          0          0          0          0     smp2p   2 Edge      modem\n367:          0          0          0          0          0          0          0          0   msmgpio  75 Edge      esd_err_irq\n368:          0          0          0          0          0          0          0          0   msmgpio  82 Edge      TE_GPIO\n369:          0          0          0          0          0          0          0          0       sde   4 Edge      dsi_ctrl\n370:          0          0          0          0          0          0          0          0  spmi-gpio   5 Edge      volume_up\n371:          3          0          0          0          0          0          0          0   msmgpio  23 Level     fts\n404:        357          0          0          0          0          0          0          0      ipcc 196608 Edge      glink-native\nIPI0:       849        431       1888       3137         33         33         33         32       Rescheduling interrupts\nIPI1:        13         51         43         39          8          8          8          8       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:       547        110        314        135          5          5          6          5       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/sm8350/third/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:04 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    6 root      0:00 [kworker/0:0H-kb]\n    8 root      0:00 [mm_percpu_wq]\n    9 root      0:00 [ksoftirqd/0]\n   10 root      0:00 [rcu_preempt]\n   11 root      0:00 [rcuog/0]\n   12 root      0:00 [rcuop/0]\n   13 root      0:00 [migration/0]\n   14 root      0:00 [cpuhp/0]\n   15 root      0:00 [cpuhp/1]\n   16 root      0:00 [migration/1]\n   17 root      0:00 [ksoftirqd/1]\n   19 root      0:00 [kworker/1:0H-kb]\n   20 root      0:00 [rcuop/1]\n   21 root      0:00 [cpuhp/2]\n   22 root      0:00 [migration/2]\n   23 root      0:00 [ksoftirqd/2]\n   25 root      0:00 [kworker/2:0H-kb]\n   26 root      0:00 [rcuop/2]\n   27 root      0:00 [cpuhp/3]\n   28 root      0:00 [migration/3]\n   29 root      0:00 [ksoftirqd/3]\n   30 root      0:00 [kworker/3:0-mm_]\n   31 root      0:00 [kworker/3:0H-kb]\n   32 root      0:00 [rcuop/3]\n   34 root      0:00 [cpuhp/4]\n   35 root      0:00 [migration/4]\n   36 root      0:00 [ksoftirqd/4]\n   38 root      0:00 [kworker/4:0H]\n   39 root      0:00 [rcuog/4]\n   40 root      0:00 [rcuop/4]\n   41 root      0:00 [cpuhp/5]\n   42 root      0:00 [migration/5]\n   43 root      0:00 [ksoftirqd/5]\n   45 root      0:00 [kworker/5:0H]\n   46 root      0:00 [rcuop/5]\n   47 root      0:00 [cpuhp/6]\n   48 root      0:00 [migration/6]\n   49 root      0:00 [ksoftirqd/6]\n   50 root      0:00 [kworker/6:0-mm_]\n   51 root      0:00 [kworker/6:0H]\n   52 root      0:00 [rcuop/6]\n   53 root      0:00 [cpuhp/7]\n   54 root      0:00 [migration/7]\n   55 root      0:00 [ksoftirqd/7]\n   57 root      0:00 [kworker/7:0H]\n   58 root      0:00 [rcuop/7]\n   59 root      0:00 [kdevtmpfs]\n   60 root      0:00 [netns]\n   61 root      0:00 [rcu_tasks_kthre]\n   62 root      0:00 [kauditd]\n   63 root      0:00 [kworker/u17:0-p]\n   65 root      0:00 [qmp_aop]\n   66 root      0:00 [hh-watchdog]\n   67 root      0:00 [oom_reaper]\n   68 root      0:00 [writeback]\n   69 root      0:00 [kcompactd0]\n   82 root      0:00 [cryptd]\n  114 root      0:00 [kblockd]\n  115 root      0:00 [blk_crypto_wq]\n  116 root      0:00 [blkcg_punt_bio]\n  117 root      0:00 [irq/41-arm-smmu]\n  118 root      0:00 [irq/42-arm-smmu]\n  119 root      0:00 [governor_msm_ad]\n  120 root      0:00 [longpress]\n  121 root      0:00 [irq/26-tsens-up]\n  122 root      0:00 [irq/27-tsens-cr]\n  123 root      0:00 [irq/29-tsens-up]\n  124 root      0:00 [irq/30-tsens-cr]\n  125 root      0:00 [irq/12-dcvsh-ir]\n  126 root      0:00 [irq/13-dcvsh-ir]\n  127 root      0:00 [irq/14-dcvsh-ir]\n  129 root      0:00 [devfreq_wq]\n  130 root      0:00 [ipa_usb_wq]\n  131 root      0:00 [watchdogd]\n  132 root      0:00 [ion-pool-uncach]\n  133 root      0:00 [ion-pool-cached]\n  134 root      0:00 [system]\n  135 root      0:00 [cfg80211]\n  161 root      0:00 [kworker/2:1-eve]\n  163 root      0:00 [kworker/3:1-eve]\n  164 root      0:00 [kworker/5:1-eve]\n  165 root      0:00 [kworker/6:1-eve]\n  166 root      0:00 [kworker/7:1-eve]\n  167 root      0:00 [kswapd0:0]\n  169 root      0:00 [irq/331-smp2p]\n  170 root      0:00 [irq/332-smp2p]\n  171 root      0:00 [irq/333-smp2p]\n  172 root      0:00 [irq/334-smp2p]\n  174 root      0:00 [pmic_glink_rx]\n  175 root      0:00 [pmic_glink_rx]\n  176 root      0:00 [cdsprm-wq]\n  177 root      0:00 [cdsprm-wq-delay]\n  178 root      0:00 [hyp_core_ctl]\n  182 root      0:00 [kgsl-workqueue]\n  183 root      0:00 [kgsl-mementry]\n  184 root      0:00 [kgsl_worker_thr]\n  185 root      0:00 [qseecom-unreg-l]\n  186 root      0:00 [qseecom-unload-]\n  187 root      0:00 [uas]\n  188 root      0:00 [k_ipa_usb]\n  189 root      0:00 [dm_bufio_cache]\n  190 root      0:00 [irq/321-flash_a]\n  191 root      0:00 [irq/320-flash_a]\n  192 root      0:00 [irq/319-flash_f]\n  193 root      0:00 [qcrypto_seq_res]\n  194 root      0:00 [ion_system_heap]\n  195 root      0:00 [hh_rm_recv_task]\n  196 root      0:00 [memlat_wq]\n  197 root      0:00 [irq/340-soc:ext]\n  198 root      0:00 [dsi_dma_cmd_wor]\n  199 root      0:00 [apr_driver]\n  201 root      0:00 [ipv6_addrconf]\n  202 root      0:00 [krfcommd]\n  203 root      0:00 [soc:qcom,svm_ne]\n  204 root      0:00 [rq_stats]\n  205 root      0:00 [msm_perf:events]\n  206 root      0:00 [khvcd]\n  207 root      0:00 [dsi_dma_cmd_wor]\n  209 root      0:00 [ipa_power_mgmt]\n  210 root      0:00 [transport_power]\n  211 root      0:00 [ipa_pm_activate]\n  212 root      0:00 [rmnet_ctlwq]\n  214 root      0:00 [hwrng]\n  215 root      0:00 [irq/53-arm-smmu]\n  216 root      0:00 [irq/54-arm-smmu]\n  217 root      0:00 [irq/60-arm-smmu]\n  218 root      0:00 [k_sm_usb]\n  219 root      0:00 [irq/152-pwr_eve]\n  220 root      0:00 [irq/151-dp_hs_p]\n  221 root      0:00 [irq/154-dm_hs_p]\n  222 root      0:00 [irq/153-ss_phy_]\n  223 root      0:00 [usb_bam_wq]\n  224 root      0:00 [msm_vidc_worker]\n  225 root      0:00 [pm_workerq_venu]\n  226 root      0:00 [vidc_core_workq]\n  227 root      0:00 [irq/62-arm-smmu]\n  228 root      0:00 [irq/63-arm-smmu]\n  229 root      0:00 [irq/64-arm-smmu]\n  230 root      0:00 [irq/65-arm-smmu]\n  231 root      0:00 [irq/66-arm-smmu]\n  232 root      0:00 [irq/43-arm-smmu]\n  234 root      0:00 [irq/44-arm-smmu]\n  235 root      0:00 [irq/45-arm-smmu]\n  236 root      0:00 [irq/46-arm-smmu]\n  237 root      0:00 [kgsl-events]\n  238 root      0:00 [kgsl_devfreq_wq]\n  239 root      0:00 [msm_cvp_workerq]\n  240 root      0:00 [pm_workerq_iris]\n  241 root      0:00 [irq/67-arm-smmu]\n  242 root      0:00 [irq/68-arm-smmu]\n  243 root      0:00 [irq/69-arm-smmu]\n  244 root      0:00 [cvp-dsp-thread]\n  245 root      0:00 [irq/70-arm-smmu]\n  246 root      0:00 [irq/71-arm-smmu]\n  247 root      0:00 [irq/72-arm-smmu]\n  248 root      0:00 [mem_buf_rcvr]\n  249 root      0:00 [irq/73-arm-smmu]\n  250 root      0:00 [irq/74-arm-smmu]\n  251 root      0:00 [irq/75-arm-smmu]\n  252 root      0:00 [irq/76-arm-smmu]\n  253 root      0:00 [irq/77-arm-smmu]\n  254 root      0:00 [irq/78-arm-smmu]\n  255 root      0:00 [irq/79-arm-smmu]\n  256 root      0:00 [irq/80-arm-smmu]\n  257 root      0:00 [irq/81-arm-smmu]\n  258 root      0:00 [irq/82-arm-smmu]\n  259 root      0:00 [irq/83-arm-smmu]\n  260 root      0:00 [irq/84-arm-smmu]\n  261 root      0:00 [irq/85-arm-smmu]\n  262 root      0:00 [irq/86-arm-smmu]\n  263 root      0:00 [irq/87-arm-smmu]\n  264 root      0:00 [irq/88-arm-smmu]\n  265 root      0:00 [irq/89-arm-smmu]\n  266 root      0:00 [irq/90-arm-smmu]\n  267 root      0:00 [irq/91-arm-smmu]\n  268 root      0:00 [irq/92-arm-smmu]\n  269 root      0:00 [irq/93-arm-smmu]\n  270 root      0:00 [irq/94-arm-smmu]\n  271 root      0:00 [irq/61-arm-smmu]\n  292 root      0:00 [uaudio_svc]\n  293 root      0:00 [irq/95-arm-smmu]\n  294 root      0:00 [irq/59-arm-smmu]\n  295 root      0:00 [irq/96-arm-smmu]\n  296 root      0:00 [irq/97-arm-smmu]\n  297 root      0:00 [irq/98-arm-smmu]\n  298 root      0:00 [irq/99-arm-smmu]\n  299 root      0:00 [irq/100-arm-smm]\n  300 root      0:00 [irq/101-arm-smm]\n  301 root      0:00 [irq/102-arm-smm]\n  302 root      0:00 [irq/103-arm-smm]\n  303 root      0:00 [irq/55-arm-smmu]\n  304 root      0:00 [scsi_eh_0]\n  305 root      0:00 [scsi_tmf_0]\n  306 root      0:00 [qc_ufs_qos_swq]\n  307 root      0:00 [ufs_eh_wq_0]\n  308 root      0:00 [ufs_clk_gating_]\n  309 root      0:00 [spi0]\n  310 root      0:00 [irq/344-aw8697]\n  311 root      0:00 [aw8976_vibrator]\n  314 root      0:00 [kworker/2:1H-kb]\n  316 root      0:00 [kworker/3:1H-kb]\n  317 root      0:00 [kworker/1:1H-kb]\n  320 root      0:00 [kworker/0:1H-kb]\n  321 root      0:00 [spi1]\n  322 root      0:00 [irq/345-cs35l41]\n  323 root      0:00 [irq/346-cs35l41]\n  324 root      0:00 [dsi_dma_cmd_wor]\n  325 root      0:00 [irq/104-arm-smm]\n  326 root      0:00 [irq/105-arm-smm]\n  327 root      0:00 [irq/106-arm-smm]\n  328 root      0:00 [irq/107-arm-smm]\n  329 root      0:00 [cam-cpas]\n  330 root      0:00 [qcom,cam_virtua]\n  331 root      0:00 [qcom,cam-cpas-c]\n  332 root      0:00 [qcom,cam-cpas-c]\n  333 root      0:00 [qcom,cam-cpas-c]\n  334 root      0:00 [qcom,cam-cpas-c]\n  335 root      0:00 [qcom,cam-ife-cd]\n  336 root      0:00 [qcom,cam-ife-cd]\n  337 root      0:00 [qcom,cam-ife-cd]\n  338 root      0:00 [qcom,cam-ife-cd]\n  339 root      0:00 [qcom,cam-ife-cd]\n  340 root      0:00 [qcom,cam-ife-cd]\n  341 root      0:00 [qcom,cam-ife-cd]\n  342 root      0:00 [qcom,cam-ife-cd]\n  343 root      0:00 [qcom,cam-ife-cd]\n  344 root      0:00 [qcom,cam-ife-cd]\n  345 root      0:00 [qcom,cam-ife-cd]\n  346 root      0:00 [qcom,cam-ife-cd]\n  347 root      0:00 [cam_cci_wq]\n  348 root      0:00 [cam_cci_wq]\n  349 root      0:00 [cam_cci_wq]\n  350 root      0:00 [cam_cci_wq]\n  351 root      0:00 [dsi_dma_cmd_wor]\n  352 root      0:00 [dsi_dma_cmd_wor]\n  353 root      0:00 [disp_feature:0]\n  354 root      0:00 [irq/367-esd_err]\n  355 root      0:00 [crtc_commit:132]\n  356 root      0:00 [crtc_event:132]\n  357 root      0:00 [crtc_commit:193]\n  358 root      0:00 [crtc_event:193]\n  359 root      0:00 [pp_event]\n  360 root      0:00 [irq/108-arm-smm]\n  361 root      0:00 [sb-1]\n  362 root      0:00 [ngd_rx_thread1]\n  363 root      0:00 [ngd_notify_sl1]\n  364 root      0:00 [kworker/2:2-eve]\n  365 root      0:00 [irq/109-arm-smm]\n  366 root      0:00 [irq/110-arm-smm]\n  367 root      0:00 [mhi_w]\n  368 root      0:00 [irq/371-fts]\n  369 root      0:00 [irq/23-90b6400.]\n  370 root      0:00 [irq/24-9091000.]\n  371 root      0:00 [irq/25-90b9100.]\n  372 root      0:00 [core_ctl/0]\n  373 root      0:00 [core_ctl/4]\n  374 root      0:00 [core_ctl/7]\n  385 root      0:00 qrtr-ns\n  387 root      0:00 [kworker/u17:1-d]\n  388 root      0:00 [glink_adsp]\n  389 root      0:00 [qrtr_rx]\n  397 root      0:00 [kworker/1:2-eve]\n  398 root      0:00 [kworker/4:2-eve]\n  399 root      0:00 [kworker/5:2]\n  400 root      0:00 [kworker/7:2-rcu]\n  443 root      0:00 [kworker/u16:3-p]\n  460 root      0:00 [kworker/1:0]\n  482 root      0:00 [kworker/0:1-eve]\n  511 root      0:00 [kworker/4:0]\n  518 root      0:00 [kworker/u16:0-m]\n  519 root      0:00 [kworker/0:0-eve]\n  520 root      0:00 [kworker/u16:2-r]\n  543 root      0:00 [kworker/0:2]\n  573 root      0:00 [kworker/7:0]\n  617 root      0:00 ps -A\n"
  },
  {
    "path": "results/sm8350/third/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,300000,1111.889434,3.7062981133333333,73.99177307692318,19.964930660631598,15.026348205233855,269.826358126\r\n1,403200,1494.783207,3.7072996205357143,73.71540932642496,14.795451778196378,20.276501488254734,200.710433726\r\n1,499200,1852.126241,3.710188784054487,76.8277500000001,12.444889039499762,24.106281626763213,161.984296553\r\n1,595200,2207.505519,3.708846638104838,81.27483206106882,11.045887324727252,27.15942967555191,135.907845573\r\n1,691200,2564.760195,3.7105905598958326,83.05864285714296,9.715941483029598,30.87709004052738,116.976887038\r\n1,806400,2991.56379,3.7097765252976194,86.78386458333344,8.703463091138994,34.469037997694315,100.288955014\r\n1,902400,3348.774907,3.7109651008421984,89.89308139534897,8.05359713283005,37.250435433014935,89.590845122\r\n1,998400,3705.258998,3.7111969130608973,95.0526153846155,7.69648276717365,38.97884385313421,80.97076273\r\n1,1094400,4060.583912,3.710328866959064,101.08476056338033,7.468719464725786,40.1675282378563,73.885711586\r\n1,1209600,4489.405004,3.71147900462963,105.32706250000011,7.038921983990194,42.62016267296903,66.829187266\r\n1,1305600,4845.587285,3.7113873200061276,113.30298305084753,7.015272677202419,42.76384023887084,61.916045706\r\n1,1401600,5201.921243,3.711416411957763,115.34581818181825,6.652599984918333,45.09515087035295,57.675259405\r\n1,1497600,5558.540698,3.7116324105235043,119.17476923076936,6.432368462925908,46.63911928072886,53.974247271\r\n1,1612800,5986.11222,3.7116271205357143,124.31772916666678,6.230842959981342,48.14757841383605,50.120308678\r\n1,1708800,6342.360627,3.7115874455758426,129.7934444444445,6.139878745114137,48.860899775704475,47.304998888\r\n1,1804800,6698.821008,3.7116694414893616,145.66669767441874,6.524087141323194,45.983444656926366,44.787774045\r\n4,710400,6464.263397,9.099469871903153,152.6540227272728,7.086496652264445,42.33403538039306,46.421945034\r\n4,844800,7681.474843,9.092654880445076,180.1137297297298,7.036976062868695,42.63194834255297,39.069626027\r\n4,960000,8729.558284,9.093289879166667,206.47451515151522,7.098483934435456,42.26254546335873,34.379467748\r\n4,1075200,9781.864423,9.097716167224704,232.48527586206907,7.133003030864568,42.05802222456619,30.681525978\r\n4,1209600,11005.13573,9.09816115244709,251.99411538461555,6.873015754901042,43.648961489150466,27.274508948\r\n4,1324800,12051.580766,9.096905771437198,288.82983333333345,7.193621445029092,41.70361233107489,24.906088689\r\n4,1440000,13108.450581,9.103090681249999,326.09418181818194,7.4673235185770315,40.17503718081412,22.899284731\r\n4,1555200,14140.271493,9.092252760416667,360.2103000000001,7.647194331094932,39.230074065222,21.229804731\r\n4,1670400,15207.583515,9.104156797772989,398.5712631578948,7.867939905918854,38.1294218800931,19.740359211\r\n4,1766400,16071.141587,9.098245916553442,434.20972222222235,8.11121911641973,36.9858088770778,18.680418013\r\n4,1881600,17119.379137,9.098309490327381,535.9547500000001,9.39922656175602,31.9175198117527,17.537350983\r\n4,1996800,18157.608038,9.093353384415064,564.0822000000002,9.32783709297566,32.16179667480636,16.536308171\r\n4,2112000,19215.987702,9.098479025568182,610.8611333333336,9.545099846005611,31.429739325937238,15.625646035\r\n4,2227200,20263.424519,9.098161152568247,711.4038571428573,10.542397093967272,28.456526283919857,14.819145255\r\n4,2342400,21312.872975,9.09873333973702,843.6278461538463,11.886868464313752,25.23793385117764,14.090180307\r\n4,2419200,22000.586682,9.094157854662699,871.3066153846155,11.892106617391944,25.226817220193485,13.648589839\r\n7,844800,7841.907152,9.282560549242424,248.85547222222235,9.523936484604198,31.499580082769487,38.270954621\r\n7,960000,8909.74429,9.280983635416668,285.75612500000005,9.625471328722737,31.167304930283226,33.684217018\r\n7,1075200,9982.364489,9.28419316313244,312.7365862068967,9.403191828129478,31.90406039601951,30.067450509\r\n7,1190400,6322.844437,5.311529264952957,246.59846666666675,11.70347860921576,25.633404393439804,47.459656856\r\n7,1305600,12122.191692,9.284766920955883,379.3442608695653,9.393081897891442,31.93839926673523,24.761365511\r\n7,1420800,8738.712496,6.150557781531532,311.1966666666668,10.687370682527494,28.07051508847375,34.342818633\r\n7,1555200,7838.423954,5.0401388593107,307.4861666666668,11.7726555319983,25.48278076977572,38.286781027\r\n7,1670400,15515.101365,9.288255127514368,499.594388888889,9.666852184947267,31.033887170339153,19.349401034\r\n7,1785600,16434.754027,9.204051314404122,559.075705882353,10.213012825830818,29.37428994911649,18.26767416\r\n7,1900800,17647.058824,9.284016637205387,624.3641875000001,10.62210295129148,28.24299494889802,17.012671713\r\n7,2035200,18898.828273,9.28598087313286,686.6534666666668,10.909090824145732,27.500000214132633,15.887330879\r\n7,2150400,19961.407945,9.282648783947172,748.4467142857145,11.258848368038842,26.645709240709532,15.042952495\r\n7,2265600,21031.968592,9.28317822740113,853.6775384615386,12.188933050964083,24.61249058844174,14.278146609\r\n7,2380800,22117.369508,9.289889746303762,1007.1453076923077,13.674306742741715,21.93895497914285,13.577292808\r\n7,2496000,23173.180905,9.284126965144232,1132.9444166666667,14.682051744795206,20.43311147614979,12.959198641\r\n7,2592000,24090.580583,9.294205471836419,1193.7486666666668,14.88319629021612,20.156960517762794,12.467612912\r\n7,2688000,24968.789014,9.288984008184524,1335.2152727272728,16.061921489239154,18.677715502531125,12.029462078\r\n7,2764800,25665.155274,9.282825258246527,1427.7973636363636,16.7082673831169,17.955183091164745,11.702127913\r\n7,2841600,26387.545079,9.286157474310247,1579.2610000000002,17.976126520399283,16.68880109736435,11.382619162\r\n"
  },
  {
    "path": "results/sm8350/third/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 2943.7344333045185, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1310.904, 1328.04, 1328.04, 1294.07, 1293.768, 1310.904, 1311.21, 1294.07, 1311.21, 1293.768, 1310.904, 1293.768, 1310.904, 1294.07, 1293.768, 1310.904, 1293.768, 1310.904, 1310.904, 1310.904, 1293.768, 1293.466, 1310.904, 1293.768, 1293.768, 1310.598, 1293.768, 1310.598, 1293.768], \"power_mean\": 1303.8340689655172, \"energy_millijoules\": 6519.170344827586, \"energy_joules\": 6.519170344827586}, \"cpus\": {\"1\": {\"freqs\": {\"300000\": {\"active\": {\"elapsed_sec\": 269.826358126, \"elapsed_ns\": 269826358126, \"power_samples\": [47.42600000000016, 81.37700000000018, 81.37700000000018, 81.37700000000018, 64.24500000000012, 81.37700000000018, 64.24500000000012, 81.37700000000018, 81.37700000000018, 81.37700000000018, 64.24500000000012, 94.22600000000011, 64.24500000000012, 81.37700000000018, 81.05600000000004, 81.37700000000018, 81.05600000000004, 81.05600000000004, 64.24500000000012, 63.92800000000011, 80.73500000000013, 81.05600000000004, 63.92800000000011, 63.92800000000011, 81.05600000000004, 81.37700000000018, 81.37700000000018, 81.05600000000004, 81.05600000000004, 81.05600000000004, 81.05600000000004, 63.92800000000011, 93.90200000000004, 63.92800000000011, 81.05600000000004, 63.92800000000011, 81.05600000000004, 81.05600000000004, 63.92800000000011, 81.05600000000004, 81.05600000000004, 63.92800000000011, 81.05600000000004, 81.05600000000004, 63.92800000000011, 93.90200000000004, 63.92800000000011, 80.73500000000013, 81.05600000000004, 63.611000000000104, 80.73500000000013, 63.611000000000104, 81.05600000000004, 63.92800000000011, 81.05600000000004, 80.73500000000013, 63.92800000000011, 81.05600000000004, 80.73500000000013, 81.05600000000004, 81.05600000000004, 81.05600000000004, 81.05600000000004, 63.611000000000104, 63.611000000000104, 80.73500000000013, 80.73500000000013, 63.611000000000104, 80.73500000000013, 63.92800000000011, 93.5780000000002, 63.611000000000104, 80.73500000000013, 80.73500000000013, 63.611000000000104, 80.41400000000021, 80.41400000000021, 80.73500000000013, 63.294000000000096, 80.73500000000013, 80.73500000000013, 63.611000000000104, 80.73500000000013, 80.73500000000013, 63.611000000000104, 80.73500000000013, 80.73500000000013, 80.73500000000013, 63.611000000000104, 80.73500000000013, 80.73500000000013, 63.611000000000104, 80.73500000000013, 80.73500000000013, 80.73500000000013, 80.73500000000013, 63.294000000000096, 80.41400000000021, 80.73500000000013, 63.611000000000104, 80.41400000000021, 63.611000000000104, 63.294000000000096, 80.41400000000021, 63.294000000000096, 80.09300000000007, 80.41400000000021, 80.41400000000021, 80.41400000000021, 63.611000000000104, 80.73500000000013, 63.294000000000096, 80.41400000000021, 80.73500000000013, 63.294000000000096, 80.41400000000021, 63.611000000000104, 80.41400000000021, 80.41400000000021, 63.294000000000096, 80.73500000000013, 80.41400000000021, 80.41400000000021, 80.41400000000021, 63.294000000000096, 80.41400000000021, 63.294000000000096, 80.41400000000021, 63.294000000000096, 63.294000000000096, 62.97700000000009, 80.09300000000007, 62.97700000000009, 80.41400000000021, 80.09300000000007, 62.97700000000009, 80.09300000000007, 80.41400000000021, 80.41400000000021, 80.41400000000021, 80.41400000000021, 63.294000000000096, 62.97700000000009, 80.41400000000021, 63.294000000000096, 62.97700000000009, 80.09300000000007, 63.294000000000096, 80.41400000000021, 63.294000000000096, 80.41400000000021, 80.41400000000021, 80.41400000000021, 62.97700000000009, 80.09300000000007, 80.41400000000021, 63.294000000000096, 62.97700000000009, 62.97700000000009, 79.77200000000016, 62.97700000000009, 80.09300000000007, 62.97700000000009, 80.09300000000007, 62.97700000000009, 80.09300000000007, 62.97700000000009, 80.09300000000007, 62.97700000000009, 92.93000000000006, 62.97700000000009, 80.09300000000007, 62.97700000000009, 80.09300000000007, 62.97700000000009, 62.97700000000009, 80.09300000000007, 62.66000000000008, 80.09300000000007, 80.09300000000007, 62.97700000000009, 80.09300000000007, 62.97700000000009, 80.09300000000007, 80.09300000000007, 62.66000000000008, 79.77200000000016, 79.45100000000002, 62.66000000000008, 79.77200000000016, 80.09300000000007, 62.97700000000009, 62.66000000000008, 80.09300000000007, 79.77200000000016, 62.66000000000008, 79.77200000000016, 62.66000000000008, 80.09300000000007, 62.66000000000008, 79.77200000000016, 79.77200000000016, 62.66000000000008, 79.77200000000016, 62.66000000000008, 62.66000000000008, 172.85900000000015, 62.66000000000008, 79.77200000000016, 79.77200000000016, 62.66000000000008, 79.77200000000016, 79.77200000000016, 62.66000000000008, 79.45100000000002, 62.66000000000008, 79.45100000000002, 79.45100000000002, 62.343000000000075, 62.66000000000008, 62.66000000000008, 79.77200000000016, 62.66000000000008, 79.77200000000016, 62.66000000000008, 79.77200000000016, 62.66000000000008, 79.77200000000016, 79.77200000000016, 62.66000000000008, 79.77200000000016, 79.77200000000016, 62.66000000000008, 79.77200000000016, 62.343000000000075, 62.343000000000075, 79.77200000000016, 79.77200000000016, 62.66000000000008, 62.66000000000008, 79.45100000000002, 79.45100000000002, 62.02600000000007, 79.13000000000011, 62.343000000000075, 79.45100000000002, 79.45100000000002, 62.66000000000008, 79.45100000000002, 62.343000000000075, 79.45100000000002, 79.45100000000002, 62.343000000000075, 62.343000000000075, 79.45100000000002, 79.45100000000002, 45.23500000000013, 79.45100000000002, 62.343000000000075, 79.45100000000002], \"power_mean\": 73.99177307692318, \"energy_millijoules\": 19964.9306606316, \"energy_joules\": 19.964930660631598, \"coremark_score\": 1111.889434, \"coremarks_per_mhz\": 3.7062981133333333, \"ulpmark_cm_score\": 15.026348205233855}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1310.598, 1310.904, 1310.904, 1328.04], \"power_mean\": 1315.1115, \"energy_millijoules\": 6575.5575, \"energy_joules\": 6.5755574999999995}}, \"403200\": {\"active\": {\"elapsed_sec\": 200.710433726, \"elapsed_ns\": 200710433726, \"power_samples\": [62.343000000000075, 79.13000000000011, 79.13000000000011, 62.02600000000007, 79.13000000000011, 79.13000000000011, 79.13000000000011, 79.45100000000002, 79.45100000000002, 79.13000000000011, 79.45100000000002, 62.343000000000075, 79.13000000000011, 62.02600000000007, 79.13000000000011, 79.13000000000011, 62.02600000000007, 79.45100000000002, 79.13000000000011, 79.13000000000011, 62.02600000000007, 79.13000000000011, 79.13000000000011, 79.13000000000011, 79.13000000000011, 79.13000000000011, 62.02600000000007, 79.13000000000011, 62.02600000000007, 61.70900000000006, 79.13000000000011, 78.8090000000002, 62.02600000000007, 78.8090000000002, 79.13000000000011, 62.02600000000007, 79.13000000000011, 91.95800000000008, 79.13000000000011, 79.13000000000011, 62.02600000000007, 79.13000000000011, 79.13000000000011, 78.8090000000002, 62.02600000000007, 62.02600000000007, 78.8090000000002, 62.02600000000007, 79.13000000000011, 79.13000000000011, 79.13000000000011, 78.8090000000002, 62.02600000000007, 79.13000000000011, 79.13000000000011, 79.13000000000011, 78.8090000000002, 78.48800000000006, 61.70900000000006, 78.48800000000006, 61.39200000000005, 78.8090000000002, 79.13000000000011, 61.70900000000006, 78.8090000000002, 78.8090000000002, 78.8090000000002, 61.70900000000006, 78.8090000000002, 91.63400000000001, 78.8090000000002, 61.70900000000006, 78.8090000000002, 61.70900000000006, 78.8090000000002, 78.8090000000002, 61.70900000000006, 78.8090000000002, 78.48800000000006, 61.70900000000006, 61.70900000000006, 78.8090000000002, 78.8090000000002, 78.8090000000002, 61.70900000000006, 78.48800000000006, 78.16700000000014, 78.48800000000006, 61.39200000000005, 91.31000000000017, 61.70900000000006, 78.48800000000006, 61.70900000000006, 61.70900000000006, 78.48800000000006, 61.70900000000006, 91.63400000000001, 61.39200000000005, 78.48800000000006, 78.48800000000006, 78.48800000000006, 78.48800000000006, 78.48800000000006, 61.39200000000005, 61.39200000000005, 91.31000000000017, 61.39200000000005, 78.48800000000006, 61.39200000000005, 61.39200000000005, 91.31000000000017, 61.39200000000005, 61.39200000000005, 61.075000000000045, 78.16700000000014, 78.16700000000014, 78.16700000000014, 78.48800000000006, 61.39200000000005, 78.48800000000006, 78.48800000000006, 61.39200000000005, 78.48800000000006, 61.39200000000005, 78.48800000000006, 78.48800000000006, 78.48800000000006, 78.48800000000006, 61.39200000000005, 78.16700000000014, 61.39200000000005, 78.48800000000006, 78.48800000000006, 78.16700000000014, 61.075000000000045, 78.16700000000014, 78.48800000000006, 61.075000000000045, 78.16700000000014, 61.075000000000045, 78.16700000000014, 78.16700000000014, 78.16700000000014, 78.16700000000014, 60.75800000000004, 78.16700000000014, 78.16700000000014, 78.16700000000014, 78.16700000000014, 61.075000000000045, 78.16700000000014, 78.16700000000014, 78.16700000000014, 61.075000000000045, 78.16700000000014, 78.16700000000014, 78.16700000000014, 78.16700000000014, 61.075000000000045, 78.16700000000014, 78.16700000000014, 61.075000000000045, 90.9860000000001, 61.075000000000045, 78.16700000000014, 78.16700000000014, 78.16700000000014, 77.846, 60.75800000000004, 77.846, 77.846, 77.846, 60.75800000000004, 90.9860000000001, 61.075000000000045, 78.16700000000014, 78.16700000000014, 78.16700000000014, 78.16700000000014, 77.846, 77.846, 61.075000000000045, 77.846, 60.75800000000004, 78.16700000000014, 61.075000000000045, 77.846, 77.846, 77.846, 60.75800000000004, 77.846, 77.846, 77.846], \"power_mean\": 73.71540932642496, \"energy_millijoules\": 14795.451778196379, \"energy_joules\": 14.795451778196378, \"coremark_score\": 1494.783207, \"coremarks_per_mhz\": 3.7072996205357143, \"ulpmark_cm_score\": 20.276501488254734}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1291.654, 1309.068, 1309.068, 1291.956], \"power_mean\": 1300.4365, \"energy_millijoules\": 6502.1825, \"energy_joules\": 6.5021825}}, \"499200\": {\"active\": {\"elapsed_sec\": 161.984296553, \"elapsed_ns\": 161984296553, \"power_samples\": [61.075000000000045, 60.75800000000004, 77.846, 90.33800000000019, 90.66200000000003, 77.846, 77.846, 77.846, 77.846, 77.846, 90.66200000000003, 77.846, 77.52500000000009, 60.44100000000003, 90.33800000000019, 77.52500000000009, 77.52500000000009, 77.52500000000009, 77.52500000000009, 77.846, 90.33800000000019, 77.52500000000009, 90.33800000000019, 90.33800000000019, 90.01400000000012, 77.20400000000018, 90.33800000000019, 77.52500000000009, 77.52500000000009, 77.52500000000009, 77.52500000000009, 77.52500000000009, 77.52500000000009, 90.33800000000019, 77.52500000000009, 77.52500000000009, 90.33800000000019, 77.52500000000009, 77.52500000000009, 77.52500000000009, 77.52500000000009, 77.52500000000009, 77.52500000000009, 77.52500000000009, 77.52500000000009, 77.52500000000009, 60.44100000000003, 77.52500000000009, 77.52500000000009, 77.52500000000009, 77.52500000000009, 60.44100000000003, 77.20400000000018, 77.20400000000018, 77.20400000000018, 90.01400000000012, 77.20400000000018, 60.124000000000024, 77.52500000000009, 77.52500000000009, 77.20400000000018, 60.44100000000003, 90.33800000000019, 60.44100000000003, 90.01400000000012, 77.20400000000018, 77.52500000000009, 90.01400000000012, 77.20400000000018, 60.124000000000024, 90.01400000000012, 60.124000000000024, 77.20400000000018, 77.20400000000018, 77.20400000000018, 77.20400000000018, 77.20400000000018, 60.124000000000024, 77.20400000000018, 60.124000000000024, 76.88300000000004, 76.88300000000004, 89.69000000000005, 77.20400000000018, 76.88300000000004, 77.20400000000018, 77.20400000000018, 77.20400000000018, 77.20400000000018, 77.20400000000018, 60.124000000000024, 76.88300000000004, 77.20400000000018, 77.20400000000018, 77.20400000000018, 77.20400000000018, 77.20400000000018, 77.20400000000018, 77.20400000000018, 76.88300000000004, 76.88300000000004, 76.88300000000004, 76.88300000000004, 89.69000000000005, 59.807000000000016, 76.88300000000004, 77.20400000000018, 76.88300000000004, 59.807000000000016, 76.88300000000004, 76.56200000000013, 89.69000000000005, 59.49000000000001, 76.88300000000004, 89.69000000000005, 76.88300000000004, 76.88300000000004, 76.88300000000004, 76.88300000000004, 59.807000000000016, 89.69000000000005, 76.88300000000004, 59.807000000000016, 76.88300000000004, 76.88300000000004, 76.88300000000004, 76.88300000000004, 76.88300000000004, 89.69000000000005, 59.807000000000016, 89.69000000000005, 76.88300000000004, 76.88300000000004, 76.88300000000004, 76.56200000000013, 76.88300000000004, 59.173, 76.56200000000013, 76.56200000000013, 76.56200000000013, 76.56200000000013, 76.88300000000004, 76.88300000000004, 76.56200000000013, 76.56200000000013, 89.69000000000005, 76.88300000000004, 76.56200000000013, 76.88300000000004, 76.56200000000013, 76.88300000000004, 59.49000000000001, 76.56200000000013, 76.56200000000013, 59.49000000000001, 89.36600000000021], \"power_mean\": 76.8277500000001, \"energy_millijoules\": 12444.889039499762, \"energy_joules\": 12.444889039499762, \"coremark_score\": 1852.126241, \"coremarks_per_mhz\": 3.710188784054487, \"ulpmark_cm_score\": 24.106281626763213}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1273.354, 1307.232, 1290.446, 1307.232], \"power_mean\": 1294.566, \"energy_millijoules\": 6472.83, \"energy_joules\": 6.47283}}, \"595200\": {\"active\": {\"elapsed_sec\": 135.907845573, \"elapsed_ns\": 135907845573, \"power_samples\": [76.56200000000013, 76.24100000000021, 76.56200000000013, 89.04200000000014, 76.24100000000021, 76.56200000000013, 76.56200000000013, 89.36600000000021, 76.56200000000013, 89.36600000000021, 89.36600000000021, 76.56200000000013, 89.36600000000021, 76.56200000000013, 89.36600000000021, 76.24100000000021, 89.36600000000021, 76.56200000000013, 76.56200000000013, 89.36600000000021, 76.24100000000021, 76.24100000000021, 76.24100000000021, 89.04200000000014, 89.04200000000014, 76.56200000000013, 89.04200000000014, 76.24100000000021, 76.24100000000021, 75.92000000000007, 89.04200000000014, 75.92000000000007, 75.92000000000007, 75.92000000000007, 89.04200000000014, 76.24100000000021, 89.04200000000014, 89.04200000000014, 76.24100000000021, 89.04200000000014, 76.24100000000021, 89.04200000000014, 75.92000000000007, 88.71800000000007, 58.855999999999995, 105.78200000000015, 76.24100000000021, 76.24100000000021, 76.24100000000021, 89.04200000000014, 76.24100000000021, 76.24100000000021, 89.04200000000014, 89.04200000000014, 75.92000000000007, 76.24100000000021, 88.71800000000007, 88.71800000000007, 75.59900000000016, 75.92000000000007, 88.71800000000007, 75.92000000000007, 88.71800000000007, 75.92000000000007, 75.92000000000007, 88.71800000000007, 75.92000000000007, 88.71800000000007, 75.92000000000007, 75.92000000000007, 89.04200000000014, 88.71800000000007, 75.92000000000007, 88.71800000000007, 75.92000000000007, 88.71800000000007, 75.92000000000007, 75.92000000000007, 88.71800000000007, 75.92000000000007, 75.92000000000007, 75.92000000000007, 75.92000000000007, 88.71800000000007, 75.92000000000007, 75.59900000000016, 75.59900000000016, 75.27800000000002, 105.45400000000018, 75.59900000000016, 88.71800000000007, 75.92000000000007, 75.92000000000007, 75.59900000000016, 75.92000000000007, 88.71800000000007, 88.394, 75.59900000000016, 75.59900000000016, 88.394, 75.92000000000007, 88.71800000000007, 88.394, 75.59900000000016, 88.394, 88.394, 75.59900000000016, 88.394, 75.59900000000016, 75.92000000000007, 88.394, 75.59900000000016, 75.59900000000016, 75.27800000000002, 75.27800000000002, 88.07000000000016, 88.07000000000016, 75.27800000000002, 88.394, 88.394, 75.59900000000016, 75.59900000000016, 88.394, 75.59900000000016, 88.394, 75.59900000000016, 88.394, 75.59900000000016, 75.59900000000016, 88.394, 75.27800000000002], \"power_mean\": 81.27483206106882, \"energy_millijoules\": 11045.887324727251, \"energy_joules\": 11.045887324727252, \"coremark_score\": 2207.505519, \"coremarks_per_mhz\": 3.708846638104838, \"ulpmark_cm_score\": 27.15942967555191}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1272.162, 1306.314, 1306.314, 1306.314], \"power_mean\": 1297.776, \"energy_millijoules\": 6488.88, \"energy_joules\": 6.48888}}, \"691200\": {\"active\": {\"elapsed_sec\": 116.976887038, \"elapsed_ns\": 116976887038, \"power_samples\": [-5.133999999999787, 75.27800000000002, 88.07000000000016, 88.07000000000016, 75.27800000000002, 74.95700000000011, 88.07000000000016, 75.27800000000002, 105.45400000000018, 181.53200000000015, 88.07000000000016, 75.27800000000002, 88.07000000000016, 75.27800000000002, 88.07000000000016, 88.07000000000016, 75.27800000000002, 75.27800000000002, 88.07000000000016, 75.27800000000002, 88.07000000000016, 88.07000000000016, 75.27800000000002, 88.07000000000016, 88.07000000000016, 88.07000000000016, 88.07000000000016, 87.7460000000001, 75.27800000000002, 87.7460000000001, 87.7460000000001, 74.95700000000011, 87.7460000000001, 74.95700000000011, 74.95700000000011, 105.1260000000002, 58.22200000000021, 87.7460000000001, 87.7460000000001, 88.07000000000016, 75.27800000000002, 104.798, 74.95700000000011, 87.7460000000001, 87.7460000000001, 75.27800000000002, 88.07000000000016, 74.95700000000011, 74.95700000000011, 87.7460000000001, 74.95700000000011, 87.7460000000001, 74.95700000000011, 74.95700000000011, 104.798, 74.95700000000011, 87.7460000000001, 87.7460000000001, 74.6360000000002, 87.7460000000001, 87.42200000000003, 87.7460000000001, 87.42200000000003, 74.95700000000011, 74.95700000000011, 87.7460000000001, 74.95700000000011, 87.7460000000001, 87.7460000000001, 87.7460000000001, 74.95700000000011, 87.7460000000001, 87.42200000000003, 74.6360000000002, 87.7460000000001, 87.42200000000003, 87.42200000000003, 74.95700000000011, 87.42200000000003, 74.6360000000002, 74.6360000000002, 87.42200000000003, 74.6360000000002, 74.6360000000002, 104.47000000000003, 74.6360000000002, 87.42200000000003, 87.09800000000018, 74.31500000000005, 87.09800000000018, 87.09800000000018, 74.31500000000005, 87.42200000000003, 74.6360000000002, 74.6360000000002, 87.42200000000003, 74.6360000000002, 87.42200000000003, 74.6360000000002, 87.42200000000003, 87.42200000000003, 87.42200000000003, 87.42200000000003, 74.6360000000002, 87.42200000000003, 74.31500000000005, 87.09800000000018, 87.09800000000018, 74.31500000000005, 87.42200000000003, 74.6360000000002, 87.42200000000003], \"power_mean\": 83.05864285714296, \"energy_millijoules\": 9715.941483029597, \"energy_joules\": 9.715941483029598, \"coremark_score\": 2564.760195, \"coremarks_per_mhz\": 3.7105905598958326, \"ulpmark_cm_score\": 30.87709004052738}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1305.09, 1305.396, 1288.332, 1288.03], \"power_mean\": 1296.712, \"energy_millijoules\": 6483.5599999999995, \"energy_joules\": 6.48356}}, \"806400\": {\"active\": {\"elapsed_sec\": 100.288955014, \"elapsed_ns\": 100288955014, \"power_samples\": [57.58800000000019, 104.14200000000005, 57.58800000000019, 87.09800000000018, 87.09800000000018, 87.09800000000018, 74.31500000000005, 87.09800000000018, 104.14200000000005, 74.31500000000005, 87.09800000000018, 87.09800000000018, 104.14200000000005, 87.09800000000018, 87.09800000000018, 74.31500000000005, 104.14200000000005, 74.31500000000005, 87.09800000000018, 87.09800000000018, 87.09800000000018, 74.31500000000005, 104.14200000000005, 74.31500000000005, 86.77400000000011, 86.77400000000011, 86.77400000000011, 103.81400000000008, 86.77400000000011, 87.09800000000018, 87.09800000000018, 87.09800000000018, 74.31500000000005, 104.14200000000005, 73.99400000000014, 87.09800000000018, 86.77400000000011, 86.77400000000011, 86.77400000000011, 86.77400000000011, 86.77400000000011, 87.09800000000018, 104.14200000000005, 86.77400000000011, 86.77400000000011, 86.77400000000011, 86.77400000000011, 86.77400000000011, 86.77400000000011, 86.77400000000011, 73.99400000000014, 86.77400000000011, 86.45000000000005, 86.45000000000005, 86.45000000000005, 86.45000000000005, 86.45000000000005, 86.77400000000011, 86.77400000000011, 103.81400000000008, 86.77400000000011, 86.77400000000011, 86.77400000000011, 86.77400000000011, 86.77400000000011, 86.77400000000011, 73.99400000000014, 86.45000000000005, 86.45000000000005, 86.77400000000011, 86.77400000000011, 86.45000000000005, 103.81400000000008, 86.45000000000005, 73.673, 103.4860000000001, 73.673, 103.4860000000001, 86.77400000000011, 86.45000000000005, 86.45000000000005, 73.673, 86.45000000000005, 86.1260000000002, 86.45000000000005, 103.4860000000001, 86.45000000000005, 86.45000000000005, 86.45000000000005, 86.45000000000005, 86.45000000000005, 103.4860000000001, 86.45000000000005, 86.45000000000005, 73.673, 86.45000000000005], \"power_mean\": 86.78386458333344, \"energy_millijoules\": 8703.463091138994, \"energy_joules\": 8.703463091138994, \"coremark_score\": 2991.56379, \"coremarks_per_mhz\": 3.7097765252976194, \"ulpmark_cm_score\": 34.469037997694315}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1270.076, 1304.172, 1303.866, 1286.822], \"power_mean\": 1291.234, \"energy_millijoules\": 6456.17, \"energy_joules\": 6.45617}}, \"902400\": {\"active\": {\"elapsed_sec\": 89.590845122, \"elapsed_ns\": 89590845122, \"power_samples\": [10.094000000000051, 86.45000000000005, 103.4860000000001, 86.45000000000005, 86.45000000000005, 73.673, 86.1260000000002, 103.15800000000013, 86.1260000000002, 86.1260000000002, 86.1260000000002, 86.45000000000005, 103.4860000000001, 86.45000000000005, 103.15800000000013, 86.1260000000002, 103.15800000000013, 73.35200000000009, 103.4860000000001, 86.45000000000005, 86.45000000000005, 86.1260000000002, 86.1260000000002, 103.15800000000013, 73.35200000000009, 103.15800000000013, 86.1260000000002, 86.1260000000002, 86.1260000000002, 103.15800000000013, 86.1260000000002, 103.15800000000013, 86.1260000000002, 86.1260000000002, 85.80200000000013, 85.80200000000013, 85.80200000000013, 86.1260000000002, 102.83000000000015, 73.03100000000018, 103.15800000000013, 86.1260000000002, 86.1260000000002, 102.83000000000015, 86.1260000000002, 103.15800000000013, 103.15800000000013, 85.80200000000013, 85.80200000000013, 86.1260000000002, 86.1260000000002, 102.83000000000015, 85.80200000000013, 85.80200000000013, 85.80200000000013, 86.1260000000002, 102.83000000000015, 85.80200000000013, 85.80200000000013, 102.83000000000015, 73.03100000000018, 102.83000000000015, 102.50200000000018, 85.80200000000013, 85.47800000000007, 85.47800000000007, 102.50200000000018, 85.80200000000013, 85.80200000000013, 85.80200000000013, 85.80200000000013, 102.83000000000015, 119.85800000000017, 85.80200000000013, 85.80200000000013, 85.80200000000013, 102.83000000000015, 85.80200000000013, 102.50200000000018, 85.80200000000013, 102.50200000000018, 102.50200000000018, 85.80200000000013, 85.47800000000007, 85.47800000000007, 85.80200000000013], \"power_mean\": 89.89308139534897, \"energy_millijoules\": 8053.59713283005, \"energy_joules\": 8.05359713283005, \"coremark_score\": 3348.774907, \"coremarks_per_mhz\": 3.7109651008421984, \"ulpmark_cm_score\": 37.250435433014935}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1286.52, 1286.52, 1303.56, 1286.52], \"power_mean\": 1290.78, \"energy_millijoules\": 6453.9, \"energy_joules\": 6.4539}}, \"998400\": {\"active\": {\"elapsed_sec\": 80.97076273, \"elapsed_ns\": 80970762730, \"power_samples\": [85.80200000000013, 85.47800000000007, 85.47800000000007, 102.83000000000015, 85.47800000000007, 102.50200000000018, 85.47800000000007, 102.50200000000018, 102.50200000000018, 85.47800000000007, 85.47800000000007, 102.50200000000018, 85.47800000000007, 119.52600000000007, 85.47800000000007, 102.50200000000018, 102.50200000000018, 85.47800000000007, 85.47800000000007, 102.50200000000018, 102.50200000000018, 85.47800000000007, 85.47800000000007, 102.50200000000018, 85.47800000000007, 102.50200000000018, 102.1740000000002, 85.154, 102.1740000000002, 102.1740000000002, 102.1740000000002, 85.154, 102.1740000000002, 85.154, 102.50200000000018, 85.47800000000007, 85.154, 102.50200000000018, 85.47800000000007, 102.1740000000002, 102.1740000000002, 102.1740000000002, 85.154, 102.1740000000002, 102.1740000000002, 102.1740000000002, 102.1740000000002, 85.154, 102.1740000000002, 85.154, 102.1740000000002, 85.154, 84.83000000000015, 102.1740000000002, 85.154, 84.83000000000015, 101.846, 101.846, 84.83000000000015, 101.846, 102.1740000000002, 102.1740000000002, 102.1740000000002, 101.846, 85.154, 84.83000000000015, 102.1740000000002, 85.154, 102.1740000000002, 85.154, 102.1740000000002, 101.846, 84.83000000000015, 101.846, 102.1740000000002, 101.846, 102.1740000000002, 84.83000000000015], \"power_mean\": 95.0526153846155, \"energy_millijoules\": 7696.48276717365, \"energy_joules\": 7.69648276717365, \"coremark_score\": 3705.258998, \"coremarks_per_mhz\": 3.7111969130608973, \"ulpmark_cm_score\": 38.97884385313421}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1268.884, 1285.916, 1302.642, 1285.614], \"power_mean\": 1285.7640000000001, \"energy_millijoules\": 6428.820000000001, \"energy_joules\": 6.428820000000001}}, \"1094400\": {\"active\": {\"elapsed_sec\": 73.885711586, \"elapsed_ns\": 73885711586, \"power_samples\": [85.154, 101.846, 101.846, 101.846, 101.846, 101.846, 101.846, 101.846, 101.846, 84.83000000000015, 101.846, 101.846, 101.846, 101.846, 101.846, 101.51800000000003, 101.846, 101.51800000000003, 118.86200000000008, 84.83000000000015, 101.846, 118.86200000000008, 84.83000000000015, 101.51800000000003, 101.51800000000003, 101.51800000000003, 101.51800000000003, 101.51800000000003, 101.51800000000003, 84.50600000000009, 101.19000000000005, 101.51800000000003, 101.846, 101.51800000000003, 118.5300000000002, 101.51800000000003, 84.50600000000009, 101.51800000000003, 118.5300000000002, 84.50600000000009, 101.51800000000003, 101.51800000000003, 101.51800000000003, 101.51800000000003, 101.51800000000003, 101.51800000000003, 101.51800000000003, 101.51800000000003, 101.51800000000003, 101.51800000000003, 118.5300000000002, 101.51800000000003, 84.50600000000009, 118.5300000000002, 101.51800000000003, 101.19000000000005, 101.19000000000005, 101.19000000000005, 101.19000000000005, 101.19000000000005, 84.50600000000009, 101.19000000000005, 101.19000000000005, 118.19800000000009, 84.18200000000002, 118.19800000000009, 101.51800000000003, 101.51800000000003, 101.19000000000005, 101.51800000000003, 101.19000000000005], \"power_mean\": 101.08476056338033, \"energy_millijoules\": 7468.719464725786, \"energy_joules\": 7.468719464725786, \"coremark_score\": 4060.583912, \"coremarks_per_mhz\": 3.710328866959064, \"ulpmark_cm_score\": 40.1675282378563}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1285.312, 1285.01, 1267.99, 1301.724], \"power_mean\": 1285.009, \"energy_millijoules\": 6425.045, \"energy_joules\": 6.425045}}, \"1209600\": {\"active\": {\"elapsed_sec\": 66.829187266, \"elapsed_ns\": 66829187266, \"power_samples\": [25.274000000000115, 101.19000000000005, 101.19000000000005, 101.19000000000005, 84.18200000000002, 100.86200000000008, 100.86200000000008, 117.86600000000021, 101.19000000000005, 100.86200000000008, 118.19800000000009, 101.19000000000005, 118.19800000000009, 101.19000000000005, 101.19000000000005, 118.19800000000009, 101.19000000000005, 118.19800000000009, 101.19000000000005, 118.19800000000009, 101.19000000000005, 117.86600000000021, 84.18200000000002, 100.86200000000008, 117.86600000000021, 100.86200000000008, 101.19000000000005, 101.19000000000005, 117.86600000000021, 101.19000000000005, 100.86200000000008, 117.86600000000021, 117.86600000000021, 83.85800000000017, 117.86600000000021, 117.5340000000001, 100.86200000000008, 100.5340000000001, 100.5340000000001, 100.86200000000008, 117.86600000000021, 100.86200000000008, 117.86600000000021, 100.86200000000008, 117.86600000000021, 100.86200000000008, 100.86200000000008, 117.86600000000021, 117.86600000000021, 100.86200000000008, 117.86600000000021, 100.86200000000008, 100.86200000000008, 117.86600000000021, 100.86200000000008, 100.86200000000008, 117.86600000000021, 100.86200000000008, 117.86600000000021, 100.86200000000008, 117.86600000000021, 100.5340000000001, 117.5340000000001, 100.20600000000013], \"power_mean\": 105.32706250000011, \"energy_millijoules\": 7038.921983990194, \"energy_joules\": 7.038921983990194, \"coremark_score\": 4489.405004, \"coremarks_per_mhz\": 3.71147900462963, \"ulpmark_cm_score\": 42.62016267296903}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1284.708, 1284.708, 1284.708, 1301.724], \"power_mean\": 1288.962, \"energy_millijoules\": 6444.8099999999995, \"energy_joules\": 6.4448099999999995}}, \"1305600\": {\"active\": {\"elapsed_sec\": 61.916045706, \"elapsed_ns\": 61916045706, \"power_samples\": [54.41800000000012, 117.5340000000001, 117.5340000000001, 117.5340000000001, 100.5340000000001, 117.5340000000001, 117.5340000000001, 117.5340000000001, 100.5340000000001, 117.5340000000001, 117.5340000000001, 100.5340000000001, 117.5340000000001, 100.5340000000001, 100.5340000000001, 117.5340000000001, 100.5340000000001, 117.5340000000001, 117.5340000000001, 117.202, 117.202, 117.202, 117.202, 100.20600000000013, 117.5340000000001, 117.5340000000001, 100.5340000000001, 130.2840000000001, 193.6840000000002, 117.5340000000001, 117.202, 100.20600000000013, 117.202, 117.202, 117.202, 117.202, 117.202, 117.202, 117.202, 117.202, 117.202, 100.20600000000013, 117.202, 117.202, 100.20600000000013, 100.20600000000013, 99.87800000000016, 117.202, 117.202, 116.87000000000012, 100.20600000000013, 129.94900000000007, 100.20600000000013, 117.202, 117.202, 100.20600000000013, 129.94900000000007, 100.20600000000013, 117.202], \"power_mean\": 113.30298305084753, \"energy_millijoules\": 7015.272677202419, \"energy_joules\": 7.015272677202419, \"coremark_score\": 4845.587285, \"coremarks_per_mhz\": 3.7113873200061276, \"ulpmark_cm_score\": 42.76384023887084}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1267.096, 1301.112, 1284.104, 1283.802], \"power_mean\": 1284.0285, \"energy_millijoules\": 6420.1425, \"energy_joules\": 6.4201425}}, \"1401600\": {\"active\": {\"elapsed_sec\": 57.675259405, \"elapsed_ns\": 57675259405, \"power_samples\": [7.0340000000001055, 117.202, 116.87000000000012, 117.202, 117.202, 116.87000000000012, 116.87000000000012, 116.87000000000012, 99.87800000000016, 116.87000000000012, 116.53800000000001, 116.53800000000001, 116.53800000000001, 116.87000000000012, 129.61400000000003, 116.87000000000012, 116.87000000000012, 116.87000000000012, 116.87000000000012, 116.87000000000012, 116.87000000000012, 99.87800000000016, 116.87000000000012, 129.61400000000003, 116.87000000000012, 116.87000000000012, 116.87000000000012, 116.87000000000012, 116.53800000000001, 116.53800000000001, 129.279, 99.55000000000018, 129.279, 116.87000000000012, 116.87000000000012, 116.87000000000012, 116.87000000000012, 116.53800000000001, 116.53800000000001, 116.53800000000001, 116.20600000000013, 116.53800000000001, 129.279, 116.53800000000001, 116.53800000000001, 116.53800000000001, 129.279, 116.53800000000001, 116.53800000000001, 116.53800000000001, 129.279, 116.53800000000001, 99.55000000000018, 129.279, 116.53800000000001], \"power_mean\": 115.34581818181825, \"energy_millijoules\": 6652.599984918333, \"energy_joules\": 6.652599984918333, \"coremark_score\": 5201.921243, \"coremarks_per_mhz\": 3.711416411957763, \"ulpmark_cm_score\": 45.09515087035295}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1266.202, 1300.5, 1283.5, 1283.5], \"power_mean\": 1283.4255, \"energy_millijoules\": 6417.1275000000005, \"energy_joules\": 6.4171275}}, \"1497600\": {\"active\": {\"elapsed_sec\": 53.974247271, \"elapsed_ns\": 53974247271, \"power_samples\": [-10.569999999999936, 116.53800000000001, 129.279, 116.20600000000013, 116.20600000000013, 128.9440000000002, 116.20600000000013, 128.9440000000002, 116.20600000000013, 116.53800000000001, 128.9440000000002, 128.9440000000002, 128.9440000000002, 116.20600000000013, 116.20600000000013, 128.9440000000002, 116.20600000000013, 128.9440000000002, 116.20600000000013, 116.20600000000013, 116.53800000000001, 128.9440000000002, 116.20600000000013, 128.9440000000002, 116.20600000000013, 128.9440000000002, 116.20600000000013, 128.9440000000002, 128.9440000000002, 116.20600000000013, 116.20600000000013, 128.60900000000015, 115.87400000000002, 115.54200000000014, 128.60900000000015, 115.54200000000014, 115.87400000000002, 115.87400000000002, 128.9440000000002, 116.20600000000013, 128.9440000000002, 128.9440000000002, 128.9440000000002, 116.20600000000013, 116.20600000000013, 116.20600000000013, 145.58900000000017, 115.87400000000002, 115.87400000000002, 115.87400000000002, 128.9440000000002, 115.87400000000002], \"power_mean\": 119.17476923076936, \"energy_millijoules\": 6432.368462925908, \"energy_joules\": 6.432368462925908, \"coremark_score\": 5558.540698, \"coremarks_per_mhz\": 3.7116324105235043, \"ulpmark_cm_score\": 46.63911928072886}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1282.896, 1282.896, 1282.896, 1299.888], \"power_mean\": 1287.144, \"energy_millijoules\": 6435.72, \"energy_joules\": 6.43572}}, \"1612800\": {\"active\": {\"elapsed_sec\": 50.120308678, \"elapsed_ns\": 50120308678, \"power_samples\": [-11.475999999999885, 115.87400000000002, 128.60900000000015, 128.27400000000011, 115.54200000000014, 128.27400000000011, 128.60900000000015, 128.60900000000015, 115.87400000000002, 145.58900000000017, 115.87400000000002, 145.58900000000017, 128.60900000000015, 128.27400000000011, 128.27400000000011, 128.60900000000015, 115.87400000000002, 128.60900000000015, 128.60900000000015, 128.60900000000015, 115.54200000000014, 128.27400000000011, 115.87400000000002, 128.27400000000011, 128.27400000000011, 128.27400000000011, 128.27400000000011, 128.27400000000011, 128.60900000000015, 145.25, 145.25, 115.21000000000004, 128.27400000000011, 128.27400000000011, 128.27400000000011, 115.54200000000014, 128.27400000000011, 128.27400000000011, 128.27400000000011, 115.54200000000014, 128.27400000000011, 128.27400000000011, 128.27400000000011, 128.27400000000011, 145.25, 115.54200000000014, 128.27400000000011, 128.27400000000011], \"power_mean\": 124.31772916666678, \"energy_millijoules\": 6230.842959981343, \"energy_joules\": 6.230842959981342, \"coremark_score\": 5986.11222, \"coremarks_per_mhz\": 3.7116271205357143, \"ulpmark_cm_score\": 48.14757841383605}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1265.308, 1299.276, 1299.582, 1282.594], \"power_mean\": 1286.69, \"energy_millijoules\": 6433.450000000001, \"energy_joules\": 6.433450000000001}}, \"1708800\": {\"active\": {\"elapsed_sec\": 47.304998888, \"elapsed_ns\": 47304998888, \"power_samples\": [-11.475999999999885, 145.25, 128.27400000000011, 115.21000000000004, 144.91100000000006, 127.93900000000008, 127.93900000000008, 127.93900000000008, 128.27400000000011, 145.25, 128.27400000000011, 127.93900000000008, 127.93900000000008, 127.93900000000008, 144.91100000000006, 127.93900000000008, 127.93900000000008, 144.91100000000006, 144.91100000000006, 127.93900000000008, 127.93900000000008, 127.93900000000008, 127.93900000000008, 144.91100000000006, 127.93900000000008, 127.93900000000008, 127.93900000000008, 127.93900000000008, 144.91100000000006, 127.93900000000008, 144.91100000000006, 127.93900000000008, 144.57200000000012, 127.60400000000004, 144.57200000000012, 127.269, 127.60400000000004, 144.91100000000006, 144.91100000000006, 127.60400000000004, 127.93900000000008, 127.60400000000004, 127.60400000000004, 127.60400000000004, 144.57200000000012], \"power_mean\": 129.7934444444445, \"energy_millijoules\": 6139.878745114137, \"energy_joules\": 6.139878745114137, \"coremark_score\": 6342.360627, \"coremarks_per_mhz\": 3.7115874455758426, \"ulpmark_cm_score\": 48.860899775704475}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1281.99, 1281.99, 1282.292, 1298.97], \"power_mean\": 1286.3105, \"energy_millijoules\": 6431.5525, \"energy_joules\": 6.4315525}}, \"1804800\": {\"active\": {\"elapsed_sec\": 44.787774045, \"elapsed_ns\": 44787774045, \"power_samples\": [22.174000000000206, 144.57200000000012, 127.60400000000004, 144.57200000000012, 144.57200000000012, 161.5400000000002, 127.60400000000004, 144.23300000000017, 144.23300000000017, 144.23300000000017, 144.23300000000017, 161.19700000000012, 144.23300000000017, 161.5400000000002, 173.57400000000007, 144.23300000000017, 144.23300000000017, 144.57200000000012, 161.5400000000002, 127.269, 161.19700000000012, 144.23300000000017, 144.57200000000012, 161.19700000000012, 144.23300000000017, 161.19700000000012, 144.23300000000017, 161.19700000000012, 144.23300000000017, 161.19700000000012, 144.23300000000017, 144.23300000000017, 144.23300000000017, 144.23300000000017, 144.23300000000017, 144.23300000000017, 161.19700000000012, 126.9340000000002, 160.85400000000004, 143.894, 160.85400000000004, 160.85400000000004, 144.23300000000017], \"power_mean\": 145.66669767441874, \"energy_millijoules\": 6524.0871413231935, \"energy_joules\": 6.524087141323194, \"coremark_score\": 6698.821008, \"coremarks_per_mhz\": 3.7116694414893616, \"ulpmark_cm_score\": 45.983444656926366}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1281.688, 1281.688, 1298.664, 1281.688], \"power_mean\": 1285.932, \"energy_millijoules\": 6429.66, \"energy_joules\": 6.42966}}}}, \"4\": {\"freqs\": {\"710400\": {\"active\": {\"elapsed_sec\": 46.421945034, \"elapsed_ns\": 46421945034, \"power_samples\": [68.53700000000003, 144.23300000000017, 160.85400000000004, 144.23300000000017, 160.85400000000004, 143.894, 161.19700000000012, 160.85400000000004, 144.23300000000017, 160.85400000000004, 161.19700000000012, 160.85400000000004, 143.894, 143.894, 143.55500000000006, 173.57400000000007, 143.894, 160.85400000000004, 143.894, 160.85400000000004, 160.85400000000004, 160.85400000000004, 143.894, 161.19700000000012, 160.85400000000004, 143.894, 160.85400000000004, 160.85400000000004, 143.55500000000006, 160.85400000000004, 161.19700000000012, 160.85400000000004, 160.85400000000004, 173.22800000000007, 143.894, 173.22800000000007, 143.894, 160.5110000000002, 160.85400000000004, 143.55500000000006, 143.55500000000006, 143.21600000000012, 160.5110000000002, 143.55500000000006], \"power_mean\": 152.6540227272728, \"energy_millijoules\": 7086.4966522644445, \"energy_joules\": 7.086496652264445, \"coremark_score\": 6464.263397, \"coremarks_per_mhz\": 9.099469871903153, \"ulpmark_cm_score\": 42.33403538039306}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1264.116, 1315.02, 1281.084, 1298.358], \"power_mean\": 1289.6444999999999, \"energy_millijoules\": 6448.2225, \"energy_joules\": 6.4482225}}, \"844800\": {\"active\": {\"elapsed_sec\": 39.069626027, \"elapsed_ns\": 39069626027, \"power_samples\": [114.54600000000005, 173.22800000000007, 172.88200000000006, 172.88200000000006, 190.1840000000002, 173.22800000000007, 190.1840000000002, 173.22800000000007, 173.22800000000007, 173.22800000000007, 190.1840000000002, 173.22800000000007, 172.88200000000006, 190.1840000000002, 190.1840000000002, 173.22800000000007, 172.88200000000006, 189.48400000000015, 172.88200000000006, 189.83400000000006, 172.53600000000006, 189.83400000000006, 189.83400000000006, 172.88200000000006, 189.83400000000006, 172.88200000000006, 206.78600000000006, 190.1840000000002, 189.83400000000006, 189.83400000000006, 173.22800000000007, 189.83400000000006, 189.48400000000015, 189.83400000000006, 172.88200000000006, 172.88200000000006, 189.83400000000006], \"power_mean\": 180.1137297297298, \"energy_millijoules\": 7036.976062868695, \"energy_joules\": 7.036976062868695, \"coremark_score\": 7681.474843, \"coremarks_per_mhz\": 9.092654880445076, \"ulpmark_cm_score\": 42.63194834255297}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1280.782, 1297.746, 1314.71, 1314.71], \"power_mean\": 1301.987, \"energy_millijoules\": 6509.935, \"energy_joules\": 6.5099350000000005}}, \"960000\": {\"active\": {\"elapsed_sec\": 34.379467748, \"elapsed_ns\": 34379467748, \"power_samples\": [189.83400000000006, 206.43200000000002, 206.43200000000002, 206.43200000000002, 206.43200000000002, 206.43200000000002, 189.48400000000015, 206.43200000000002, 219.14300000000003, 206.43200000000002, 219.14300000000003, 206.43200000000002, 219.14300000000003, 219.14300000000003, 206.43200000000002, 189.48400000000015, 206.43200000000002, 206.43200000000002, 206.43200000000002, 206.43200000000002, 206.43200000000002, 206.43200000000002, 206.43200000000002, 189.48400000000015, 219.14300000000003, 206.0780000000002, 206.0780000000002, 206.0780000000002, 206.0780000000002, 218.78600000000006, 188.7840000000001, 218.78600000000006, 206.0780000000002], \"power_mean\": 206.47451515151522, \"energy_millijoules\": 7098.483934435456, \"energy_joules\": 7.098483934435456, \"coremark_score\": 8729.558284, \"coremarks_per_mhz\": 9.093289879166667, \"ulpmark_cm_score\": 42.26254546335873}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1297.44, 1314.4, 1297.44, 1314.09], \"power_mean\": 1305.8425, \"energy_millijoules\": 6529.2125, \"energy_joules\": 6.5292125}}, \"1075200\": {\"active\": {\"elapsed_sec\": 30.681525978, \"elapsed_ns\": 30681525978, \"power_samples\": [113.88200000000006, 235.73000000000002, 235.73000000000002, 235.73000000000002, 235.73000000000002, 236.09100000000012, 235.73000000000002, 235.73000000000002, 252.6740000000002, 235.36900000000014, 235.73000000000002, 235.73000000000002, 235.36900000000014, 235.36900000000014, 218.4290000000001, 235.36900000000014, 252.3090000000002, 252.3090000000002, 218.07200000000012, 252.3090000000002, 252.3090000000002, 235.73000000000002, 252.3090000000002, 235.36900000000014, 218.4290000000001, 235.36900000000014, 218.4290000000001, 252.3090000000002, 218.4290000000001], \"power_mean\": 232.48527586206907, \"energy_millijoules\": 7133.003030864568, \"energy_joules\": 7.133003030864568, \"coremark_score\": 9781.864423, \"coremarks_per_mhz\": 9.097716167224704, \"ulpmark_cm_score\": 42.05802222456619}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1296.828, 1296.828, 1313.78, 1296.828], \"power_mean\": 1301.066, \"energy_millijoules\": 6505.33, \"energy_joules\": 6.50533}}, \"1209600\": {\"active\": {\"elapsed_sec\": 27.274508948, \"elapsed_ns\": 27274508948, \"power_samples\": [32.715000000000146, 265.0140000000001, 235.00800000000004, 264.6460000000002, 252.3090000000002, 251.9440000000002, 264.6460000000002, 251.9440000000002, 264.6460000000002, 264.278, 281.5820000000001, 265.0140000000001, 265.0140000000001, 264.6460000000002, 264.6460000000002, 251.9440000000002, 251.9440000000002, 264.6460000000002, 251.9440000000002, 251.9440000000002, 264.6460000000002, 251.57900000000018, 264.6460000000002, 264.6460000000002, 264.6460000000002, 281.21000000000004], \"power_mean\": 251.99411538461555, \"energy_millijoules\": 6873.015754901042, \"energy_joules\": 6.873015754901042, \"coremark_score\": 11005.13573, \"coremarks_per_mhz\": 9.09816115244709, \"ulpmark_cm_score\": 43.648961489150466}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1279.574, 1313.47, 1296.522, 1313.47], \"power_mean\": 1300.759, \"energy_millijoules\": 6503.795, \"energy_joules\": 6.503795}}, \"1324800\": {\"active\": {\"elapsed_sec\": 24.906088689, \"elapsed_ns\": 24906088689, \"power_samples\": [264.6460000000002, 280.8380000000002, 280.8380000000002, 281.21000000000004, 315.07400000000007, 280.8380000000002, 298.14200000000005, 298.14200000000005, 281.21000000000004, 281.21000000000004, 281.21000000000004, 314.6940000000002, 281.21000000000004, 280.8380000000002, 281.21000000000004, 298.14200000000005, 298.14200000000005, 280.8380000000002, 314.6940000000002, 281.21000000000004, 298.14200000000005, 281.21000000000004, 297.3900000000001, 280.8380000000002], \"power_mean\": 288.82983333333345, \"energy_millijoules\": 7193.621445029092, \"energy_joules\": 7.193621445029092, \"coremark_score\": 12051.580766, \"coremarks_per_mhz\": 9.096905771437198, \"ulpmark_cm_score\": 41.70361233107489}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1296.216, 1296.216, 1296.216, 1296.216], \"power_mean\": 1296.216, \"energy_millijoules\": 6481.08, \"energy_joules\": 6.4810799999999995}}, \"1440000\": {\"active\": {\"elapsed_sec\": 22.899284731, \"elapsed_ns\": 22899284731, \"power_samples\": [252.3090000000002, 314.6940000000002, 327.3900000000001, 327.3900000000001, 420.49400000000014, 314.6940000000002, 344.3180000000002, 327.3900000000001, 314.6940000000002, 327.3900000000001, 327.00700000000006, 314.3140000000001, 327.00700000000006, 327.00700000000006, 327.00700000000006, 314.3140000000001, 327.00700000000006, 343.93100000000004, 314.6940000000002, 327.00700000000006, 327.00700000000006, 327.00700000000006], \"power_mean\": 326.09418181818194, \"energy_millijoules\": 7467.323518577032, \"energy_joules\": 7.4673235185770315, \"coremark_score\": 13108.450581, \"coremarks_per_mhz\": 9.103090681249999, \"ulpmark_cm_score\": 40.17503718081412}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1296.216, 1295.91, 1312.54, 1312.85], \"power_mean\": 1304.379, \"energy_millijoules\": 6521.8949999999995, \"energy_joules\": 6.521895}}, \"1555200\": {\"active\": {\"elapsed_sec\": 21.229804731, \"elapsed_ns\": 21229804731, \"power_samples\": [252.3090000000002, 360.855, 373.548, 360.855, 373.154, 373.154, 360.46400000000017, 360.46400000000017, 360.855, 373.154, 360.855, 360.46400000000017, 360.46400000000017, 373.154, 360.855, 360.46400000000017, 372.7600000000002, 373.154, 360.46400000000017, 372.7600000000002], \"power_mean\": 360.2103000000001, \"energy_millijoules\": 7647.194331094932, \"energy_joules\": 7.647194331094932, \"coremark_score\": 14140.271493, \"coremarks_per_mhz\": 9.092252760416667, \"ulpmark_cm_score\": 39.230074065222}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1278.97, 1312.54, 1295.604, 1325.242], \"power_mean\": 1303.089, \"energy_millijoules\": 6515.445, \"energy_joules\": 6.515445}}, \"1670400\": {\"active\": {\"elapsed_sec\": 19.740359211, \"elapsed_ns\": 19740359211, \"power_samples\": [281.5820000000001, 406.5920000000001, 406.5920000000001, 406.5920000000001, 406.5920000000001, 406.5920000000001, 406.5920000000001, 389.67600000000016, 419.279, 389.67600000000016, 419.279, 406.5920000000001, 389.67600000000016, 406.5920000000001, 406.19000000000005, 406.19000000000005, 406.19000000000005, 405.788, 406.5920000000001], \"power_mean\": 398.5712631578948, \"energy_millijoules\": 7867.9399059188545, \"energy_joules\": 7.867939905918854, \"coremark_score\": 15207.583515, \"coremarks_per_mhz\": 9.104156797772989, \"ulpmark_cm_score\": 38.1294218800931}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1295.604, 1295.298, 1312.54, 1295.604], \"power_mean\": 1299.7615, \"energy_millijoules\": 6498.807500000001, \"energy_joules\": 6.498807500000001}}, \"1766400\": {\"active\": {\"elapsed_sec\": 18.680418013, \"elapsed_ns\": 18680418013, \"power_samples\": [327.77300000000014, 418.874, 452.2850000000001, 452.6980000000001, 435.78600000000006, 435.3770000000002, 435.78600000000006, 435.3770000000002, 452.6980000000001, 435.3770000000002, 452.6980000000001, 452.2850000000001, 435.3770000000002, 435.3770000000002, 452.2850000000001, 435.3770000000002, 434.9680000000001, 435.3770000000002], \"power_mean\": 434.20972222222235, \"energy_millijoules\": 8111.219116419729, \"energy_joules\": 8.11121911641973, \"coremark_score\": 16071.141587, \"coremarks_per_mhz\": 9.098245916553442, \"ulpmark_cm_score\": 36.9858088770778}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1295.298, 1294.992, 1311.92, 1312.23], \"power_mean\": 1303.6100000000001, \"energy_millijoules\": 6518.050000000001, \"energy_joules\": 6.5180500000000015}}, \"1881600\": {\"active\": {\"elapsed_sec\": 17.537350983, \"elapsed_ns\": 17537350983, \"power_samples\": [437.422, 527.94, 527.94, 527.509, 544.4090000000001, 544.844, 544.844, 544.4090000000001, 527.509, 557.0840000000001, 544.4090000000001, 544.4090000000001, 557.0840000000001, 544.4090000000001, 556.6460000000002, 544.4090000000001], \"power_mean\": 535.9547500000001, \"energy_millijoules\": 9399.22656175602, \"energy_joules\": 9.39922656175602, \"coremark_score\": 17119.379137, \"coremarks_per_mhz\": 9.098309490327381, \"ulpmark_cm_score\": 31.9175198117527}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1294.992, 1324.303, 1311.61, 1311.61], \"power_mean\": 1310.6287499999999, \"energy_millijoules\": 6553.143749999999, \"energy_joules\": 6.553143749999999}}, \"1996800\": {\"active\": {\"elapsed_sec\": 16.536308171, \"elapsed_ns\": 16536308171, \"power_samples\": [511.4630000000002, 556.6460000000002, 573.5420000000001, 556.6460000000002, 573.5420000000001, 556.6460000000002, 557.0840000000001, 590.4380000000001, 573.5420000000001, 573.5420000000001, 573.5420000000001, 543.9740000000002, 590.4380000000001, 556.6460000000002, 573.5420000000001], \"power_mean\": 564.0822000000002, \"energy_millijoules\": 9327.83709297566, \"energy_joules\": 9.32783709297566, \"coremark_score\": 18157.608038, \"coremarks_per_mhz\": 9.093353384415064, \"ulpmark_cm_score\": 32.16179667480636}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1294.38, 1311.61, 1311.61, 1294.686], \"power_mean\": 1303.0715, \"energy_millijoules\": 6515.3575, \"energy_joules\": 6.5153575}}, \"2112000\": {\"active\": {\"elapsed_sec\": 15.625646035, \"elapsed_ns\": 15625646035, \"power_samples\": [93.97400000000016, 636.4450000000002, 653.3370000000002, 636.4450000000002, 619.1000000000001, 652.8760000000002, 652.8760000000002, 652.8760000000002, 652.4150000000002, 665.5420000000001, 652.8760000000002, 652.4150000000002, 652.8760000000002, 652.8760000000002, 635.988], \"power_mean\": 610.8611333333336, \"energy_millijoules\": 9545.09984600561, \"energy_joules\": 9.545099846005611, \"coremark_score\": 19215.987702, \"coremarks_per_mhz\": 9.098479025568182, \"ulpmark_cm_score\": 31.429739325937238}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1294.38, 1311.3, 1311.3, 1294.38], \"power_mean\": 1302.8400000000001, \"energy_millijoules\": 6514.200000000001, \"energy_joules\": 6.514200000000001}}, \"2227200\": {\"active\": {\"elapsed_sec\": 14.819145255, \"elapsed_ns\": 14819145255, \"power_samples\": [233.2030000000002, 728.8720000000001, 757.94, 758.4259999999999, 728.393, 758.4259999999999, 744.7940000000001, 744.7940000000001, 744.7940000000001, 757.4540000000002, 744.3110000000001, 756.9680000000003, 756.9680000000003, 744.3110000000001], \"power_mean\": 711.4038571428573, \"energy_millijoules\": 10542.397093967273, \"energy_joules\": 10.542397093967272, \"coremark_score\": 20263.424519, \"coremarks_per_mhz\": 9.098161152568247, \"ulpmark_cm_score\": 28.456526283919857}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1294.074, 1310.99, 1310.99, 1310.99], \"power_mean\": 1306.761, \"energy_millijoules\": 6533.805, \"energy_joules\": 6.533805}}, \"2342400\": {\"active\": {\"elapsed_sec\": 14.090180307, \"elapsed_ns\": 14090180307, \"power_samples\": [452.6980000000001, 849.7860000000001, 866.6620000000003, 866.6620000000003, 883.538, 866.6620000000003, 883.538, 883.538, 883.0219999999999, 882.5060000000003, 899.8940000000002, 882.5060000000003, 866.1500000000001], \"power_mean\": 843.6278461538463, \"energy_millijoules\": 11886.868464313751, \"energy_joules\": 11.886868464313752, \"coremark_score\": 21312.872975, \"coremarks_per_mhz\": 9.09873333973702, \"ulpmark_cm_score\": 25.23793385117764}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1293.768, 1293.768, 1310.68, 1310.99], \"power_mean\": 1302.3015, \"energy_millijoules\": 6511.5075, \"energy_joules\": 6.5115075}}, \"2419200\": {\"active\": {\"elapsed_sec\": 13.648589839, \"elapsed_ns\": 13648589839, \"power_samples\": [684.7700000000002, 866.1500000000001, 882.5060000000003, 883.0219999999999, 883.0219999999999, 883.0219999999999, 899.3740000000003, 899.3740000000003, 865.6379999999999, 899.3740000000003, 882.5060000000003, 898.8540000000003, 899.3740000000003], \"power_mean\": 871.3066153846155, \"energy_millijoules\": 11892.106617391944, \"energy_joules\": 11.892106617391944, \"coremark_score\": 22000.586682, \"coremarks_per_mhz\": 9.094157854662699, \"ulpmark_cm_score\": 25.226817220193485}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1310.37, 1293.462, 1323.051, 1293.462], \"power_mean\": 1305.0862499999998, \"energy_millijoules\": 6525.43125, \"energy_joules\": 6.52543125}}}}, \"7\": {\"freqs\": {\"844800\": {\"active\": {\"elapsed_sec\": 38.270954621, \"elapsed_ns\": 38270954621, \"power_samples\": [-0.9219999999997981, 260.5980000000002, 260.9660000000001, 248.2940000000001, 247.9290000000001, 260.5980000000002, 248.6590000000001, 260.9660000000001, 247.9290000000001, 260.9660000000001, 248.2940000000001, 260.9660000000001, 260.5980000000002, 248.2940000000001, 260.9660000000001, 248.2940000000001, 260.9660000000001, 260.9660000000001, 260.9660000000001, 248.2940000000001, 248.2940000000001, 260.9660000000001, 260.5980000000002, 260.5980000000002, 260.5980000000002, 248.2940000000001, 277.8620000000001, 260.9660000000001, 248.2940000000001, 247.9290000000001, 260.5980000000002, 247.56400000000008, 247.9290000000001, 247.9290000000001, 277.8620000000001, 247.9290000000001], \"power_mean\": 248.85547222222235, \"energy_millijoules\": 9523.936484604197, \"energy_joules\": 9.523936484604198, \"coremark_score\": 7841.907152, \"coremarks_per_mhz\": 9.282560549242424, \"ulpmark_cm_score\": 31.499580082769487}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1310.06, 1293.156, 1322.738, 1293.462], \"power_mean\": 1304.854, \"energy_millijoules\": 6524.27, \"energy_joules\": 6.5242700000000005}}, \"960000\": {\"active\": {\"elapsed_sec\": 33.684217018, \"elapsed_ns\": 33684217018, \"power_samples\": [109.56600000000003, 294.38200000000006, 294.38200000000006, 294.38200000000006, 277.49, 294.38200000000006, 294.38200000000006, 294.38200000000006, 277.49, 294.75800000000004, 311.2740000000001, 294.38200000000006, 294.0060000000001, 294.0060000000001, 310.894, 277.11800000000017, 294.0060000000001, 294.38200000000006, 294.0060000000001, 260.23, 294.0060000000001, 294.0060000000001, 277.11800000000017, 294.0060000000001, 294.0060000000001, 294.0060000000001, 294.38200000000006, 294.0060000000001, 294.0060000000001, 293.6300000000001, 294.0060000000001, 277.11800000000017], \"power_mean\": 285.75612500000005, \"energy_millijoules\": 9625.471328722737, \"energy_joules\": 9.625471328722737, \"coremark_score\": 8909.74429, \"coremarks_per_mhz\": 9.280983635416668, \"ulpmark_cm_score\": 31.167304930283226}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1293.156, 1310.06, 1310.06, 1322.738], \"power_mean\": 1309.0035, \"energy_millijoules\": 6545.0175, \"energy_joules\": 6.5450175}}, \"1075200\": {\"active\": {\"elapsed_sec\": 30.067450509, \"elapsed_ns\": 30067450509, \"power_samples\": [311.2740000000001, 310.5140000000001, 293.6300000000001, 310.5140000000001, 310.5140000000001, 310.894, 323.5600000000002, 310.5140000000001, 310.5140000000001, 310.894, 310.894, 310.5140000000001, 322.7940000000001, 310.5140000000001, 310.134, 310.134, 323.17700000000013, 310.5140000000001, 310.894, 310.5140000000001, 323.17700000000013, 310.5140000000001, 310.5140000000001, 340.06100000000015, 310.5140000000001, 310.5140000000001, 310.5140000000001, 310.5140000000001, 310.134], \"power_mean\": 312.7365862068967, \"energy_millijoules\": 9403.191828129478, \"energy_joules\": 9.403191828129478, \"coremark_score\": 9982.364489, \"coremarks_per_mhz\": 9.28419316313244, \"ulpmark_cm_score\": 31.90406039601951}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1292.85, 1292.85, 1309.75, 1322.425], \"power_mean\": 1304.46875, \"energy_millijoules\": 6522.34375, \"energy_joules\": 6.52234375}}, \"1190400\": {\"active\": {\"elapsed_sec\": 47.459656856, \"elapsed_ns\": 47459656856, \"power_samples\": [155.3660000000002, 247.56400000000008, 247.56400000000008, 247.56400000000008, 247.56400000000008, 247.56400000000008, 247.19900000000007, 259.8620000000001, 230.31500000000005, 247.19900000000007, 259.8620000000001, 247.19900000000007, 247.19900000000007, 259.8620000000001, 230.31500000000005, 247.19900000000007, 247.19900000000007, 247.19900000000007, 246.83400000000006, 259.49400000000014, 246.83400000000006, 259.49400000000014, 246.83400000000006, 246.83400000000006, 246.83400000000006, 259.49400000000014, 259.49400000000014, 247.19900000000007, 229.95400000000018, 259.49400000000014, 246.83400000000006, 246.83400000000006, 246.83400000000006, 229.95400000000018, 246.83400000000006, 276.374, 229.95400000000018, 246.83400000000006, 246.83400000000006, 247.19900000000007, 259.8620000000001, 259.49400000000014, 246.83400000000006, 246.83400000000006, 246.83400000000006], \"power_mean\": 246.59846666666675, \"energy_millijoules\": 11703.47860921576, \"energy_joules\": 11.70347860921576, \"coremark_score\": 6322.844437, \"coremarks_per_mhz\": 5.311529264952957, \"ulpmark_cm_score\": 25.633404393439804}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1292.544, 1309.44, 1309.44, 1309.44], \"power_mean\": 1305.2160000000001, \"energy_millijoules\": 6526.080000000001, \"energy_joules\": 6.526080000000001}}, \"1305600\": {\"active\": {\"elapsed_sec\": 24.761365511, \"elapsed_ns\": 24761365511, \"power_samples\": [277.49, 368.82000000000016, 385.298, 368.82000000000016, 385.69600000000014, 402.5720000000001, 385.298, 385.298, 368.42600000000016, 402.1700000000001, 355.77200000000016, 402.5720000000001, 368.42600000000016, 402.1700000000001, 385.298, 402.1700000000001, 368.42600000000016, 402.1700000000001, 385.298, 385.298, 368.03200000000015, 368.03200000000015, 401.3660000000002], \"power_mean\": 379.3442608695653, \"energy_millijoules\": 9393.081897891441, \"energy_joules\": 9.393081897891442, \"coremark_score\": 12122.191692, \"coremarks_per_mhz\": 9.284766920955883, \"ulpmark_cm_score\": 31.93839926673523}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1275.044, 1321.486, 1308.82, 1309.13], \"power_mean\": 1303.6200000000001, \"energy_millijoules\": 6518.1, \"energy_joules\": 6.5181000000000004}}, \"1420800\": {\"active\": {\"elapsed_sec\": 34.342818633, \"elapsed_ns\": 34342818633, \"power_samples\": [247.56400000000008, 309.75400000000013, 309.75400000000013, 309.75400000000013, 322.028, 309.374, 309.374, 309.374, 292.5020000000002, 322.028, 309.75400000000013, 309.374, 309.374, 309.374, 309.374, 321.6450000000002, 321.6450000000002, 322.028, 308.99400000000014, 308.99400000000014, 308.99400000000014, 338.51300000000015, 308.99400000000014, 321.6450000000002, 308.99400000000014, 308.99400000000014, 321.6450000000002, 322.028, 308.99400000000014, 321.6450000000002, 308.99400000000014, 308.99400000000014, 308.99400000000014], \"power_mean\": 311.1966666666668, \"energy_millijoules\": 10687.370682527493, \"energy_joules\": 10.687370682527494, \"coremark_score\": 8738.712496, \"coremarks_per_mhz\": 6.150557781531532, \"ulpmark_cm_score\": 28.07051508847375}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1291.932, 1308.82, 1308.82, 1291.932], \"power_mean\": 1300.376, \"energy_millijoules\": 6501.88, \"energy_joules\": 6.50188}}, \"1555200\": {\"active\": {\"elapsed_sec\": 38.286781027, \"elapsed_ns\": 38286781027, \"power_samples\": [44.59100000000012, 309.374, 308.99400000000014, 308.61400000000003, 321.6450000000002, 321.26200000000017, 308.61400000000003, 308.61400000000003, 308.61400000000003, 338.1260000000002, 308.99400000000014, 308.99400000000014, 308.99400000000014, 321.6450000000002, 308.99400000000014, 321.6450000000002, 308.99400000000014, 308.61400000000003, 321.26200000000017, 321.6450000000002, 308.61400000000003, 321.6450000000002, 308.61400000000003, 308.61400000000003, 321.26200000000017, 321.26200000000017, 321.26200000000017, 308.99400000000014, 308.61400000000003, 321.26200000000017, 308.61400000000003, 321.26200000000017, 320.87900000000013, 308.23400000000015, 320.87900000000013, 321.26200000000017], \"power_mean\": 307.4861666666668, \"energy_millijoules\": 11772.6555319983, \"energy_joules\": 11.7726555319983, \"coremark_score\": 7838.423954, \"coremarks_per_mhz\": 5.0401388593107, \"ulpmark_cm_score\": 25.48278076977572}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1291.32, 1291.32, 1308.2, 1308.2], \"power_mean\": 1299.76, \"energy_millijoules\": 6498.8, \"energy_joules\": 6.4988}}, \"1670400\": {\"active\": {\"elapsed_sec\": 19.349401034, \"elapsed_ns\": 19349401034, \"power_samples\": [276.0020000000002, 493.6940000000002, 505.91200000000003, 505.91200000000003, 505.4850000000001, 522.3370000000002, 505.91200000000003, 522.768, 522.3370000000002, 505.4850000000001, 539.1890000000001, 505.4850000000001, 505.4850000000001, 522.3370000000002, 522.3370000000002, 505.058, 521.9060000000002, 505.058], \"power_mean\": 499.594388888889, \"energy_millijoules\": 9666.852184947267, \"energy_joules\": 9.666852184947267, \"coremark_score\": 15515.101365, \"coremarks_per_mhz\": 9.288255127514368, \"ulpmark_cm_score\": 31.033887170339153}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1291.014, 1307.89, 1291.014, 1307.89], \"power_mean\": 1299.452, \"energy_millijoules\": 6497.26, \"energy_joules\": 6.49726}}, \"1785600\": {\"active\": {\"elapsed_sec\": 18.26767416, \"elapsed_ns\": 18267674160, \"power_samples\": [356.163, 551.3900000000001, 568.238, 585.086, 660.902, 568.238, 568.238, 551.3900000000001, 551.3900000000001, 567.796, 567.796, 568.238, 567.796, 568.238, 584.6400000000001, 550.952, 567.796], \"power_mean\": 559.075705882353, \"energy_millijoules\": 10213.012825830818, \"energy_joules\": 10.213012825830818, \"coremark_score\": 16434.754027, \"coremarks_per_mhz\": 9.204051314404122, \"ulpmark_cm_score\": 29.37428994911649}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1290.708, 1320.234, 1320.234, 1290.708], \"power_mean\": 1305.471, \"energy_millijoules\": 6527.355, \"energy_joules\": 6.527354999999999}}, \"1900800\": {\"active\": {\"elapsed_sec\": 17.012671713, \"elapsed_ns\": 17012671713, \"power_samples\": [431.69600000000014, 614.1170000000002, 647.8050000000001, 630.5040000000001, 630.5040000000001, 630.5040000000001, 630.5040000000001, 647.344, 630.5040000000001, 647.344, 647.344, 613.6640000000002, 647.344, 646.883, 646.883, 646.883], \"power_mean\": 624.3641875000001, \"energy_millijoules\": 10622.10295129148, \"energy_joules\": 10.62210295129148, \"coremark_score\": 17647.058824, \"coremarks_per_mhz\": 9.284016637205387, \"ulpmark_cm_score\": 28.24299494889802}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1290.402, 1319.921, 1307.27, 1307.27], \"power_mean\": 1306.21575, \"energy_millijoules\": 6531.078750000001, \"energy_joules\": 6.531078750000001}}, \"2035200\": {\"active\": {\"elapsed_sec\": 15.887330879, \"elapsed_ns\": 15887330879, \"power_samples\": [569.5640000000001, 693.182, 693.182, 705.3340000000001, 693.182, 693.182, 705.8090000000002, 692.71, 693.182, 705.8090000000002, 705.3340000000001, 675.8780000000002, 692.71, 705.3340000000001, 675.4100000000001], \"power_mean\": 686.6534666666668, \"energy_millijoules\": 10909.090824145733, \"energy_joules\": 10.909090824145732, \"coremark_score\": 18898.828273, \"coremarks_per_mhz\": 9.28598087313286, \"ulpmark_cm_score\": 27.500000214132633}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1306.96, 1306.65, 1306.65, 1306.96], \"power_mean\": 1306.805, \"energy_millijoules\": 6534.025000000001, \"energy_joules\": 6.534025000000001}}, \"2150400\": {\"active\": {\"elapsed_sec\": 15.042952495, \"elapsed_ns\": 15042952495, \"power_samples\": [25.82900000000018, 767.9639999999999, 796.9160000000002, 784.2980000000002, 796.9160000000002, 813.7400000000002, 796.9160000000002, 813.7400000000002, 813.7400000000002, 830.0590000000002, 796.9160000000002, 813.7400000000002, 813.7400000000002, 813.7400000000002], \"power_mean\": 748.4467142857145, \"energy_millijoules\": 11258.848368038842, \"energy_joules\": 11.258848368038842, \"coremark_score\": 19961.407945, \"coremarks_per_mhz\": 9.282648783947172, \"ulpmark_cm_score\": 26.645709240709532}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1290.096, 1306.65, 1306.65, 1319.295], \"power_mean\": 1305.6727500000002, \"energy_millijoules\": 6528.36375, \"energy_joules\": 6.5283637500000005}}, \"2265600\": {\"active\": {\"elapsed_sec\": 14.278146609, \"elapsed_ns\": 14278146609, \"power_samples\": [210.93200000000002, 893.134, 905.7490000000003, 876.3140000000003, 905.2260000000001, 922.569, 905.2260000000001, 922.0419999999999, 904.703, 904.1800000000003, 921.5150000000003, 921.5150000000003, 904.703], \"power_mean\": 853.6775384615386, \"energy_millijoules\": 12188.933050964084, \"energy_joules\": 12.188933050964083, \"coremark_score\": 21031.968592, \"coremarks_per_mhz\": 9.28317822740113, \"ulpmark_cm_score\": 24.61249058844174}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1306.34, 1306.34, 1306.34, 1306.34], \"power_mean\": 1306.34, \"energy_millijoules\": 6531.7, \"energy_joules\": 6.5317}}, \"2380800\": {\"active\": {\"elapsed_sec\": 13.577292808, \"elapsed_ns\": 13577292808, \"power_samples\": [505.91200000000003, 1030.7930000000001, 1042.846, 1042.846, 1030.2400000000002, 1042.846, 1042.846, 1059.654, 1059.094, 1059.094, 1042.29, 1075.3340000000003, 1059.094], \"power_mean\": 1007.1453076923077, \"energy_millijoules\": 13674.306742741715, \"energy_joules\": 13.674306742741715, \"coremark_score\": 22117.369508, \"coremarks_per_mhz\": 9.289889746303762, \"ulpmark_cm_score\": 21.93895497914285}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1306.03, 1318.669, 1306.34, 1335.521], \"power_mean\": 1316.6399999999999, \"energy_millijoules\": 6583.199999999999, \"energy_joules\": 6.583199999999999}}, \"2496000\": {\"active\": {\"elapsed_sec\": 12.959198641, \"elapsed_ns\": 12959198641, \"power_samples\": [833.594, 1122.109, 1150.9340000000002, 1150.9340000000002, 1134.134, 1167.1480000000001, 1183.944, 1167.1480000000001, 1167.1480000000001, 1167.1480000000001, 1167.1480000000001, 1183.944], \"power_mean\": 1132.9444166666667, \"energy_millijoules\": 14682.051744795206, \"energy_joules\": 14.682051744795206, \"coremark_score\": 23173.180905, \"coremarks_per_mhz\": 9.284126965144232, \"ulpmark_cm_score\": 20.43311147614979}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1305.72, 1318.043, 1305.72, 1306.03], \"power_mean\": 1308.87825, \"energy_millijoules\": 6544.39125, \"energy_joules\": 6.544391249999999}}, \"2592000\": {\"active\": {\"elapsed_sec\": 12.467612912, \"elapsed_ns\": 12467612912, \"power_samples\": [58.58600000000001, 1258.9180000000001, 1287.6890000000003, 1287.6890000000003, 1304.4770000000003, 1287.074, 1303.8580000000002, 1304.4770000000003, 1321.2650000000003, 1303.8580000000002, 1287.074, 1320.0190000000002], \"power_mean\": 1193.7486666666668, \"energy_millijoules\": 14883.19629021612, \"energy_joules\": 14.88319629021612, \"coremark_score\": 24090.580583, \"coremarks_per_mhz\": 9.294205471836419, \"ulpmark_cm_score\": 20.156960517762794}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1318.043, 1305.41, 1318.356, 1318.043], \"power_mean\": 1314.963, \"energy_millijoules\": 6574.815, \"energy_joules\": 6.574814999999999}}, \"2688000\": {\"active\": {\"elapsed_sec\": 12.029462078, \"elapsed_ns\": 12029462078, \"power_samples\": [445.2640000000001, 1379.386, 1396.17, 1412.9540000000002, 1424.8940000000002, 1424.8940000000002, 1424.246, 1457.7980000000002, 1441.022, 1440.37, 1440.37], \"power_mean\": 1335.2152727272728, \"energy_millijoules\": 16061.921489239156, \"energy_joules\": 16.061921489239154, \"coremark_score\": 24968.789014, \"coremarks_per_mhz\": 9.288984008184524, \"ulpmark_cm_score\": 18.677715502531125}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1317.73, 1305.1, 1334.57, 1305.1], \"power_mean\": 1315.625, \"energy_millijoules\": 6578.125, \"energy_joules\": 6.578125}}, \"2764800\": {\"active\": {\"elapsed_sec\": 11.702127913, \"elapsed_ns\": 11702127913, \"power_samples\": [941.5129999999999, 1441.674, 1457.7980000000002, 1457.7980000000002, 1473.9140000000002, 1486.493, 1486.493, 1485.83, 1502.598, 1485.83, 1485.83], \"power_mean\": 1427.7973636363636, \"energy_millijoules\": 16708.2673831169, \"energy_joules\": 16.7082673831169, \"coremark_score\": 25665.155274, \"coremarks_per_mhz\": 9.282825258246527, \"ulpmark_cm_score\": 17.955183091164745}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1317.417, 1304.79, 1317.417, 1317.417], \"power_mean\": 1314.2602499999998, \"energy_millijoules\": 6571.301249999999, \"energy_joules\": 6.5713012499999985}}, \"2841600\": {\"active\": {\"elapsed_sec\": 11.382619162, \"elapsed_ns\": 11382619162, \"power_samples\": [1505.933, 1564.7960000000003, 1565.478, 1576.6840000000002, 1593.444, 1564.7960000000003, 1593.444, 1593.444, 1610.2040000000002, 1593.444, 1610.2040000000002], \"power_mean\": 1579.2610000000002, \"energy_millijoules\": 17976.126520399284, \"energy_joules\": 17.976126520399283, \"coremark_score\": 26387.545079, \"coremarks_per_mhz\": 9.286157474310247, \"ulpmark_cm_score\": 16.68880109736435}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [1304.48, 1317.104, 1317.104, 1317.104], \"power_mean\": 1313.948, \"energy_millijoules\": 6569.740000000001, \"energy_joules\": 6.56974}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/sm8350/third/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 cpu7 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 1293 mW\n\n\n===== CPU 1 =====\nFrequencies: 300 403 499 595 691 806 902 998 1094 1209 1305 1401 1497 1612 1708 1804\n\n 300:  1112     3.7 C/MHz     74 mW   20.0 J   15.0 I/mJ   269.8 s\n 403:  1495     3.7 C/MHz     74 mW   14.8 J   20.3 I/mJ   200.7 s\n 499:  1852     3.7 C/MHz     77 mW   12.4 J   24.1 I/mJ   162.0 s\n 595:  2208     3.7 C/MHz     81 mW   11.0 J   27.2 I/mJ   135.9 s\n 691:  2565     3.7 C/MHz     83 mW    9.7 J   30.9 I/mJ   117.0 s\n 806:  2992     3.7 C/MHz     87 mW    8.7 J   34.5 I/mJ   100.3 s\n 902:  3349     3.7 C/MHz     90 mW    8.1 J   37.3 I/mJ    89.6 s\n 998:  3705     3.7 C/MHz     95 mW    7.7 J   39.0 I/mJ    81.0 s\n1094:  4061     3.7 C/MHz    101 mW    7.5 J   40.2 I/mJ    73.9 s\n1209:  4489     3.7 C/MHz    105 mW    7.0 J   42.6 I/mJ    66.8 s\n1305:  4846     3.7 C/MHz    113 mW    7.0 J   42.8 I/mJ    61.9 s\n1401:  5202     3.7 C/MHz    115 mW    6.7 J   45.1 I/mJ    57.7 s\n1497:  5559     3.7 C/MHz    119 mW    6.4 J   46.6 I/mJ    54.0 s\n1612:  5986     3.7 C/MHz    124 mW    6.2 J   48.1 I/mJ    50.1 s\n1708:  6342     3.7 C/MHz    130 mW    6.1 J   48.9 I/mJ    47.3 s\n1804:  6699     3.7 C/MHz    146 mW    6.5 J   46.0 I/mJ    44.8 s\n\n\n===== CPU 4 =====\nFrequencies: 710 844 960 1075 1209 1324 1440 1555 1670 1766 1881 1996 2112 2227 2342 2419\n\n 710:  6464     9.1 C/MHz    153 mW    7.1 J   42.3 I/mJ    46.4 s\n 844:  7681     9.1 C/MHz    180 mW    7.0 J   42.6 I/mJ    39.1 s\n 960:  8730     9.1 C/MHz    206 mW    7.1 J   42.3 I/mJ    34.4 s\n1075:  9782     9.1 C/MHz    232 mW    7.1 J   42.1 I/mJ    30.7 s\n1209: 11005     9.1 C/MHz    252 mW    6.9 J   43.6 I/mJ    27.3 s\n1324: 12052     9.1 C/MHz    289 mW    7.2 J   41.7 I/mJ    24.9 s\n1440: 13108     9.1 C/MHz    326 mW    7.5 J   40.2 I/mJ    22.9 s\n1555: 14140     9.1 C/MHz    360 mW    7.6 J   39.2 I/mJ    21.2 s\n1670: 15208     9.1 C/MHz    399 mW    7.9 J   38.1 I/mJ    19.7 s\n1766: 16071     9.1 C/MHz    434 mW    8.1 J   37.0 I/mJ    18.7 s\n1881: 17119     9.1 C/MHz    536 mW    9.4 J   31.9 I/mJ    17.5 s\n1996: 18158     9.1 C/MHz    564 mW    9.3 J   32.2 I/mJ    16.5 s\n2112: 19216     9.1 C/MHz    611 mW    9.5 J   31.4 I/mJ    15.6 s\n2227: 20263     9.1 C/MHz    711 mW   10.5 J   28.5 I/mJ    14.8 s\n2342: 21313     9.1 C/MHz    844 mW   11.9 J   25.2 I/mJ    14.1 s\n2419: 22001     9.1 C/MHz    871 mW   11.9 J   25.2 I/mJ    13.6 s\n\n\n===== CPU 7 =====\nFrequencies: 844 960 1075 1190 1305 1420 1555 1670 1785 1900 2035 2150 2265 2380 2496 2592 2688 2764 2841\n\n 844:  7842     9.3 C/MHz    249 mW    9.5 J   31.5 I/mJ    38.3 s\n 960:  8910     9.3 C/MHz    286 mW    9.6 J   31.2 I/mJ    33.7 s\n1075:  9982     9.3 C/MHz    313 mW    9.4 J   31.9 I/mJ    30.1 s\n1190:  6323     5.3 C/MHz    247 mW   11.7 J   25.6 I/mJ    47.5 s\n1305: 12122     9.3 C/MHz    379 mW    9.4 J   31.9 I/mJ    24.8 s\n1420:  8739     6.2 C/MHz    311 mW   10.7 J   28.1 I/mJ    34.3 s\n1555:  7838     5.0 C/MHz    307 mW   11.8 J   25.5 I/mJ    38.3 s\n1670: 15515     9.3 C/MHz    500 mW    9.7 J   31.0 I/mJ    19.3 s\n1785: 16435     9.2 C/MHz    559 mW   10.2 J   29.4 I/mJ    18.3 s\n1900: 17647     9.3 C/MHz    624 mW   10.6 J   28.2 I/mJ    17.0 s\n2035: 18899     9.3 C/MHz    687 mW   10.9 J   27.5 I/mJ    15.9 s\n2150: 19961     9.3 C/MHz    748 mW   11.3 J   26.6 I/mJ    15.0 s\n2265: 21032     9.3 C/MHz    854 mW   12.2 J   24.6 I/mJ    14.3 s\n2380: 22117     9.3 C/MHz   1007 mW   13.7 J   21.9 I/mJ    13.6 s\n2496: 23173     9.3 C/MHz   1133 mW   14.7 J   20.4 I/mJ    13.0 s\n2592: 24091     9.3 C/MHz   1194 mW   14.9 J   20.2 I/mJ    12.5 s\n2688: 24969     9.3 C/MHz   1335 mW   16.1 J   18.7 I/mJ    12.0 s\n2764: 25665     9.3 C/MHz   1428 mW   16.7 J   18.0 I/mJ    11.7 s\n2841: 26388     9.3 C/MHz   1579 mW   18.0 J   16.7 I/mJ    11.4 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/sm8350/third/uptime.txt",
    "content": " 22:41:03 up 49 min,  load average: 1.79, 1.76, 1.74\n"
  },
  {
    "path": "results/sm8350/third/versions.txt",
    "content": "Kernel: Linux version 5.4.61-DynamIQ-R1 (nakixii@naki-PC) (Proton clang version 13.0.0 (https://github.com/llvm/llvm-project b4fd512c36ca344a3ff69350219e8b0a67e9472a), GNU ld (GNU Binutils) 2.36.1) #14 SMP PREEMPT Thu Aug 12 18:59:42 CST 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq/cmdline.txt",
    "content": "earlycon console=tty0 rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq/cpufreq_stats/0/time_in_state",
    "content": "600000 51612\n972000 5567\n1332000 4282\n1704000 3547\n2064000 3089\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq/cpufreq_stats/0/total_trans",
    "content": "27\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    600000    972000   1332000   1704000   2064000 \n   600000:         0         2         1         2         3 \n   972000:         4         0         1         0         0 \n  1332000:         0         2         0         1         0 \n  1704000:         2         1         1         0         2 \n  2064000:         2         0         0         3         0 \n"
  },
  {
    "path": "results/t8103/asahi-cpufreq/cpufreq_stats/4/time_in_state",
    "content": "600000 32182\n828000 4689\n1056000 3851\n1284000 3311\n1500000 2950\n1728000 2669\n1956000 2452\n2184000 2281\n2388000 2153\n2592000 2048\n2772000 1968\n2988000 1884\n3096000 1885\n3144000 1885\n3204000 1884\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq/cpufreq_stats/4/total_trans",
    "content": "15\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq/cpufreq_stats/4/trans_table",
    "content": "   From  :    To\n         :    600000    828000   1056000   1284000   1500000   1728000   1956000   2184000   2388000   2592000   2772000   2988000   3096000   3144000   3204000 \n   600000:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   828000:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1056000:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1284000:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1500000:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1728000:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1956000:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  2184000:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  2388000:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  2592000:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  2772000:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2988000:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  3096000:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  3144000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  3204000:         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/t8103/asahi-cpufreq/cpuinfo.txt",
    "content": "processor\t: 0\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x022\nCPU revision\t: 1\n\nprocessor\t: 1\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x022\nCPU revision\t: 1\n\nprocessor\t: 2\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x022\nCPU revision\t: 1\n\nprocessor\t: 3\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x022\nCPU revision\t: 1\n\nprocessor\t: 4\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x023\nCPU revision\t: 1\n\nprocessor\t: 5\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x023\nCPU revision\t: 1\n\nprocessor\t: 6\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x023\nCPU revision\t: 1\n\nprocessor\t: 7\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x023\nCPU revision\t: 1\n\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq/device.txt",
    "content": "Model: Apple MacBook Air (M1, 2020);\nCompatible: apple,j274;apple,t8103;apple,arm-platform;\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x611f0221]\n[    0.000000] Linux version 5.15.0-rc2-12214-g82f5b5e5541a (kdrag0n@pinwheel) (aarch64-linux-gnu-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37) #20 SMP PREEMPT Sat Oct 2 19:00:17 PDT 2021\n[    0.000000] Machine model: Apple MacBook Air (M1, 2020)\n[    0.000000] earlycon: s5l0 at MMIO32 0x0000000235200000 (options '')\n[    0.000000] printk: bootconsole [s5l0] enabled\n[    0.000000] Zone ranges:\n[    0.000000]   DMA      [mem 0x00000008019c4000-0x00000009d93e3fff]\n[    0.000000]   DMA32    empty\n[    0.000000]   Normal   empty\n[    0.000000] Movable zone start for each node\n[    0.000000] Early memory node ranges\n[    0.000000]   node   0: [mem 0x00000008019c4000-0x00000009d93e3fff]\n[    0.000000] Initmem setup node 0 [mem 0x00000008019c4000-0x00000009d93e3fff]\n[    0.000000] On node 0, zone DMA: 775 pages in unavailable ranges\n[    0.000000] percpu: Embedded 4 pages/cpu s34200 r0 d31336 u65536\n[    0.000000] pcpu-alloc: s34200 r0 d31336 u65536 alloc=4*16384\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: detected: Address authentication (IMP DEF algorithm)\n[    0.000000] CPU features: detected: Virtualization Host Extensions\n[    0.000000] CPU features: detected: Spectre-v4\n[    0.000000] alternatives: patching kernel code\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 481065\n[    0.000000] Kernel command line: earlycon console=tty0 rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 9, 8388608 bytes, linear)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 8, 4194304 bytes, linear)\n[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off\n[    0.000000] Memory: 7644992K/7727232K available (13056K kernel code, 1094K rwdata, 2960K rodata, 1280K init, 435K bss, 82240K reserved, 0K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tTrampoline variant of Tasks RCU enabled.\n[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] Root IRQ handler: aic_handle_irq\n[    0.000000] Root FIQ handler: aic_handle_fiq\n[    0.000000] irq_apple_aic: Initialized with 896 IRQs, 4 FIQs, 32 vIPIs\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] random: get_random_bytes called from start_kernel+0x474/0x654 with crng_init=0\n[    0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns\n[    0.000000] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns\n[    0.008064] Console: colour dummy device 80x25\n[    0.012470] printk: console [tty0] enabled\n[    0.016568] printk: bootconsole [s5l0] disabled\n[    0.021112] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000)\n[    0.021117] pid_max: default: 32768 minimum: 301\n[    0.021133] LSM: Security Framework initializing\n[    0.021146] Mount-cache hash table entries: 16384 (order: 3, 131072 bytes, linear)\n[    0.021151] Mountpoint-cache hash table entries: 16384 (order: 3, 131072 bytes, linear)\n[    0.021464] rcu: Hierarchical SRCU implementation.\n[    0.021559] smp: Bringing up secondary CPUs ...\n[    0.021623] Detected VIPT I-cache on CPU1\n[    0.021633] CPU1: Booted secondary processor 0x0000000001 [0x611f0221]\n[    0.021719] Detected VIPT I-cache on CPU2\n[    0.021727] CPU2: Booted secondary processor 0x0000000002 [0x611f0221]\n[    0.021802] Detected VIPT I-cache on CPU3\n[    0.021809] CPU3: Booted secondary processor 0x0000000003 [0x611f0221]\n[    0.021901] Detected VIPT I-cache on CPU4\n[    0.021928] CPU4: Booted secondary processor 0x0000010100 [0x611f0231]\n[    0.022061] Detected VIPT I-cache on CPU5\n[    0.022081] CPU5: Booted secondary processor 0x0000010101 [0x611f0231]\n[    0.022198] Detected VIPT I-cache on CPU6\n[    0.022218] CPU6: Booted secondary processor 0x0000010102 [0x611f0231]\n[    0.022341] Detected VIPT I-cache on CPU7\n[    0.022361] CPU7: Booted secondary processor 0x0000010103 [0x611f0231]\n[    0.022415] smp: Brought up 1 node, 8 CPUs\n[    0.022434] SMP: Total of 8 processors activated.\n[    0.022437] CPU features: detected: ARMv8.4 Translation Table Level\n[    0.022439] CPU features: detected: Data cache clean to the PoU not required for I/D coherence\n[    0.022442] CPU features: detected: Common not Private translations\n[    0.022444] CPU features: detected: CRC32 instructions\n[    0.022446] CPU features: detected: E0PD\n[    0.022449] CPU features: detected: Generic authentication (IMP DEF algorithm)\n[    0.022451] CPU features: detected: RCpc load-acquire (LDAPR)\n[    0.022453] CPU features: detected: LSE atomic instructions\n[    0.022455] CPU features: detected: Privileged Access Never\n[    0.022457] CPU features: detected: RAS Extension Support\n[    0.022459] CPU features: detected: Speculation barrier (SB)\n[    0.022461] CPU features: detected: Stage-2 Force Write-Back\n[    0.022463] CPU features: detected: TLB range maintenance instructions\n[    0.022465] CPU features: detected: Speculative Store Bypassing Safe (SSBS)\n[    0.040782] CPU: All CPU(s) started at EL2\n[    0.041143] devtmpfs: initialized\n[    0.041547] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.041553] futex hash table entries: 2048 (order: 3, 131072 bytes, linear)\n[    0.041578] pinctrl core: initialized pinctrl subsystem\n[    0.041656] NET: Registered PF_NETLINK/PF_ROUTE protocol family\n[    0.041859] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations\n[    0.041877] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations\n[    0.041896] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations\n[    0.041953] thermal_sys: Registered thermal governor 'step_wise'\n[    0.041954] thermal_sys: Registered thermal governor 'user_space'\n[    0.041980] cpuidle: using governor ladder\n[    0.041986] cpuidle: using governor menu\n[    0.041991] NET: Registered PF_QIPCRTR protocol family\n[    0.042016] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.042107] ASID allocator initialised with 256 entries\n[    0.042113] Serial: AMBA PL011 UART driver\n[    0.044049] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages\n[    0.044052] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages\n[    0.044055] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages\n[    0.044350] cryptd: max_cpu_qlen set to 1000\n[    0.051134] random: fast init done\n[    0.052226] random: crng init done\n[    0.212284] raid6: neonx8   gen() 10127 MB/s\n[    0.382299] raid6: neonx8   xor()  8544 MB/s\n[    0.552316] raid6: neonx4   gen() 10132 MB/s\n[    0.722336] raid6: neonx4   xor()  8818 MB/s\n[    0.892360] raid6: neonx2   gen()  9986 MB/s\n[    1.062399] raid6: neonx2   xor()  8552 MB/s\n[    1.232426] raid6: neonx1   gen()  8502 MB/s\n[    1.402445] raid6: neonx1   xor()  7074 MB/s\n[    1.572481] raid6: int64x8  gen()  4160 MB/s\n[    1.742510] raid6: int64x8  xor()  2386 MB/s\n[    1.912542] raid6: int64x4  gen()  4311 MB/s\n[    2.082572] raid6: int64x4  xor()  2573 MB/s\n[    2.252587] raid6: int64x2  gen()  3776 MB/s\n[    2.422602] raid6: int64x2  xor()  2189 MB/s\n[    2.592658] raid6: int64x1  gen()  2938 MB/s\n[    2.762675] raid6: int64x1  xor()  1671 MB/s\n[    2.762677] raid6: using algorithm neonx4 gen() 10132 MB/s\n[    2.762679] raid6: .... xor() 8818 MB/s, rmw enabled\n[    2.762682] raid6: using neon recovery algorithm\n[    2.762700] iommu: Default domain type: Translated \n[    2.762702] iommu: DMA domain TLB invalidation policy: strict mode \n[    2.762724] vgaarb: loaded\n[    2.762761] SCSI subsystem initialized\n[    2.762784] usbcore: registered new interface driver usbfs\n[    2.762790] usbcore: registered new interface driver hub\n[    2.762797] usbcore: registered new device driver usb\n[    2.762822] mc: Linux media interface: v0.10\n[    2.762827] videodev: Linux video capture interface: v2.00\n[    2.762869] Advanced Linux Sound Architecture Driver Initialized.\n[    2.762966] Bluetooth: Core ver 2.22\n[    2.762970] NET: Registered PF_BLUETOOTH protocol family\n[    2.762972] Bluetooth: HCI device and connection manager initialized\n[    2.762976] Bluetooth: HCI socket layer initialized\n[    2.762978] Bluetooth: L2CAP socket layer initialized\n[    2.762981] Bluetooth: SCO socket layer initialized\n[    2.763000] nfc: nfc_init: NFC Core ver 0.1\n[    2.763009] NET: Registered PF_NFC protocol family\n[    2.763058] clocksource: Switched to clocksource arch_sys_counter\n[    2.763086] VFS: Disk quotas dquot_6.6.0\n[    2.763096] VFS: Dquot-cache hash table entries: 2048 (order 0, 16384 bytes)\n[    2.763184] simple-framebuffer 9df4e4000.framebuffer: framebuffer at 0x9df4e4000, 0xfa0000 bytes\n[    2.763189] simple-framebuffer 9df4e4000.framebuffer: format=x2r10g10b10, mode=2560x1600x32, linelength=10240\n[    2.770403] Console: switching to colour frame buffer device 160x50\n[    2.777333] simple-framebuffer 9df4e4000.framebuffer: fb0: simplefb registered!\n[    2.778079] NET: Registered PF_INET protocol family\n[    2.778163] IP idents hash table entries: 131072 (order: 6, 1048576 bytes, linear)\n[    2.779734] tcp_listen_portaddr_hash hash table entries: 4096 (order: 2, 65536 bytes, linear)\n[    2.779834] TCP established hash table entries: 65536 (order: 5, 524288 bytes, linear)\n[    2.779983] TCP bind hash table entries: 65536 (order: 6, 1048576 bytes, linear)\n[    2.780158] TCP: Hash tables configured (established 65536 bind 65536)\n[    2.780240] UDP hash table entries: 4096 (order: 3, 131072 bytes, linear)\n[    2.780329] UDP-Lite hash table entries: 4096 (order: 3, 131072 bytes, linear)\n[    2.780445] NET: Registered PF_UNIX/PF_LOCAL protocol family\n[    2.780567] RPC: Registered named UNIX socket transport module.\n[    2.780631] RPC: Registered udp transport module.\n[    2.780682] RPC: Registered tcp transport module.\n[    2.780732] RPC: Registered tcp NFSv4.1 backchannel transport module.\n[    2.780900] PCI: CLS 0 bytes, default 64\n[    2.780998] Unpacking initramfs...\n[    2.958937] Freeing initrd memory: 13280K\n[    2.959595] Initialise system trusted keyrings\n[    2.959894] workingset: timestamp_bits=46 max_order=19 bucket_order=0\n[    2.960925] squashfs: version 4.0 (2009/01/31) Phillip Lougher\n[    2.961195] NFS: Registering the id_resolver key type\n[    2.961253] Key type id_resolver registered\n[    2.963469] Key type id_legacy registered\n[    2.965638] nfs4filelayout_init: NFSv4 File Layout Driver Registering...\n[    2.967856] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...\n[    2.970135] fuse: init (API version 7.34)\n[    2.972487] 9p: Installing v9fs 9p2000 file system support\n[    2.987757] NET: Registered PF_ALG protocol family\n[    2.990061] xor: measuring software checksum speed\n[    2.993283]    8regs           : 11180 MB/sec\n[    2.996255]    32regs          : 14262 MB/sec\n[    2.999054]    arm64_neon      : 17796 MB/sec\n[    3.001276] xor: using function: arm64_neon (17796 MB/sec)\n[    3.003513] Key type asymmetric registered\n[    3.005736] Asymmetric key parser 'x509' registered\n[    3.007993] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)\n[    3.010295] io scheduler mq-deadline registered\n[    3.012590] io scheduler kyber registered\n[    3.015179] apple-cluster-clk 210e20000.clock-controller: Initializing cluster (DVMR: 0)\n[    3.018261] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled\n[    3.020957] 235200000.serial: ttySAC0 at MMIO 0x235200000 (irq = 37, base_baud = 0) is a APPLE S5L\n[    3.023456] 235208000.serial: ttySAC2 at MMIO 0x235208000 (irq = 38, base_baud = 0) is a APPLE S5L\n[    3.027083] apple-dart 382f00000.iommu: DART [pagesize 4000, bypass support: 1, bypass forced: 0] initialized\n[    3.029517] apple-dart 382f80000.iommu: DART [pagesize 4000, bypass support: 1, bypass forced: 0] initialized\n[    3.031886] apple-dart 502f00000.iommu: DART [pagesize 4000, bypass support: 1, bypass forced: 0] initialized\n[    3.034405] apple-dart 502f80000.iommu: DART [pagesize 4000, bypass support: 1, bypass forced: 0] initialized\n[    3.036687] cacheinfo: Unable to detect cache hierarchy for CPU 0\n[    3.039435] loop: module loaded\n[    3.054838] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.\n[    3.057042] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    3.059338] libphy: Fixed MDIO Bus: probed\n[    3.061526] tun: Universal TUN/TAP device driver, 1.6\n[    3.063825] CAN device driver interface\n[    3.066026] usbcore: registered new interface driver rtl8150\n[    3.068164] usbcore: registered new interface driver r8152\n[    3.070268] usbcore: registered new interface driver lan78xx\n[    3.072660] usbcore: registered new interface driver asix\n[    3.074729] usbcore: registered new interface driver ax88179_178a\n[    3.076727] usbcore: registered new interface driver cdc_ether\n[    3.078731] usbcore: registered new interface driver dm9601\n[    3.080709] usbcore: registered new interface driver CoreChips\n[    3.082652] usbcore: registered new interface driver smsc75xx\n[    3.084618] usbcore: registered new interface driver smsc95xx\n[    3.086558] usbcore: registered new interface driver net1080\n[    3.088439] usbcore: registered new interface driver plusb\n[    3.090288] usbcore: registered new interface driver cdc_subset\n[    3.092089] usbcore: registered new interface driver MOSCHIP usb-ethernet driver\n[    3.093961] usbcore: registered new interface driver ipheth\n[    3.095741] usbcore: registered new interface driver cdc_ncm\n[    3.097558] dwc3 382280000.usb: Adding to iommu group 0\n[    3.133110] dwc3 502280000.usb: Adding to iommu group 1\n[    3.173179] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    3.174870] ehci-pci: EHCI PCI platform driver\n[    3.176543] ehci-platform: EHCI generic platform driver\n[    3.178263] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller\n[    3.179985] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1\n[    3.181798] xhci-hcd xhci-hcd.0.auto: hcc params 0x0238ffcd hci version 0x110 quirks 0x0000000000010010\n[    3.183581] xhci-hcd xhci-hcd.0.auto: irq 40, io mem 0x382280000\n[    3.185459] hub 1-0:1.0: USB hub found\n[    3.187222] hub 1-0:1.0: 1 port detected\n[    3.189014] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller\n[    3.190789] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2\n[    3.192548] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.1 Enhanced SuperSpeed\n[    3.194527] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.\n[    3.196395] hub 2-0:1.0: USB hub found\n[    3.198143] hub 2-0:1.0: 1 port detected\n[    3.199910] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller\n[    3.201611] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 3\n[    3.203452] xhci-hcd xhci-hcd.1.auto: hcc params 0x0238ffcd hci version 0x110 quirks 0x0000000000010010\n[    3.205183] xhci-hcd xhci-hcd.1.auto: irq 42, io mem 0x502280000\n[    3.207094] hub 3-0:1.0: USB hub found\n[    3.208860] hub 3-0:1.0: 1 port detected\n[    3.210682] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller\n[    3.212453] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 4\n[    3.214263] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.1 Enhanced SuperSpeed\n[    3.216075] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.\n[    3.217893] hub 4-0:1.0: USB hub found\n[    3.219580] hub 4-0:1.0: 1 port detected\n[    3.221317] usbcore: registered new interface driver cdc_acm\n[    3.223005] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters\n[    3.224874] usbcore: registered new interface driver uas\n[    3.226655] usbcore: registered new interface driver usb-storage\n[    3.228450] usbcore: registered new interface driver cp210x\n[    3.230233] usbserial: USB Serial support registered for cp210x\n[    3.232068] usbcore: registered new interface driver ftdi_sio\n[    3.233986] usbserial: USB Serial support registered for FTDI USB Serial Device\n[    3.235930] usbcore: registered new interface driver option\n[    3.237865] usbserial: USB Serial support registered for GSM modem (1-port)\n[    3.239916] udc-core: couldn't find an available UDC - added [g_serial] to list of pending drivers\n[    3.241994] udc-core: couldn't find an available UDC - added [g_cdc] to list of pending drivers\n[    3.244206] i2c_dev: i2c /dev entries driver\n[    3.246338] usbcore: registered new interface driver uvcvideo\n[    3.248495] gspca_main: v2.14.0 registered\n[    3.250725] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com\n[    3.252978] Bluetooth: HCI UART driver ver 2.3\n[    3.255415] Bluetooth: HCI UART protocol H4 registered\n[    3.257680] Bluetooth: HCI UART protocol LL registered\n[    3.259940] Bluetooth: HCI UART protocol QCA registered\n[    3.262165] usbcore: registered new interface driver btusb\n[    3.264602] usbcore: registered new interface driver usbhid\n[    3.266794] usbhid: USB HID core driver\n[    3.268994] apple-mcc 200200000.memory-controller: MCC performance driver initialized\n[    3.271306] GACT probability NOT on\n[    3.273805] Mirror/redirect action on\n[    3.276456] NET: Registered PF_INET6 protocol family\n[    3.278756] Segment Routing with IPv6\n[    3.280939] In-situ OAM (IOAM) with IPv6\n[    3.283130] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    3.285434] NET: Registered PF_PACKET protocol family\n[    3.287642] can: controller area network core\n[    3.289806] NET: Registered PF_CAN protocol family\n[    3.291924] can: raw protocol\n[    3.294082] can: broadcast manager protocol\n[    3.296197] can: netlink gateway - max_hops=1\n[    3.298313] Bluetooth: HIDP (Human Interface Emulation) ver 1.2\n[    3.300419] Bluetooth: HIDP socket layer initialized\n[    3.302494] 8021q: 802.1Q VLAN Support v1.8\n[    3.304621] 9pnet: Installing 9P2000 support\n[    3.306706] Key type dns_resolver registered\n[    3.308826] registered taskstats version 1\n[    3.310869] Loading compiled-in X.509 certificates\n[    3.313090] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=no\n[    3.315206] apple-cluster-clk 211e20000.clock-controller: Initializing cluster (DVMR: 1)\n[    3.317588] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    3.319739] apple-pmgr-pwrstate 23b700000.power-management:power-controller@418: PS 0x418: pwrstate = 0x0: 0xf0000f0\n[    3.319745] apple-pmgr-pwrstate 23b700000.power-management:power-controller@348: PS 0x348: pwrstate = 0x0: 0xf0\n[    3.319749] apple-pmgr-pwrstate 23b700000.power-management:power-controller@288: PS 0x288: pwrstate = 0x0: 0xf0\n[    3.319754] apple-pmgr-pwrstate 23b700000.power-management:power-controller@278: PS 0x278: pwrstate = 0x0: 0xf0\n[    3.320027] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    3.322142] ALSA device list:\n[    3.324208]   No soundcards found.\n[    3.326319] Freeing unused kernel memory: 1280K\n[    3.328394] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2\n[    3.330550] platform regulatory.0: Falling back to sysfs fallback for: regulatory.db\n[    3.353095] Run /init as init process\n[    3.355682]   with arguments:\n[    3.355683]     /init\n[    3.355684]   with environment:\n[    3.355684]     HOME=/\n[    3.355685]     TERM=linux\n[    3.493060] usb 3-1: new high-speed USB device number 2 using xhci-hcd\n[    3.674411] usb-storage 3-1:1.0: USB Mass Storage device detected\n[    3.677878] scsi host0: usb-storage 3-1:1.0\n[    4.714142] scsi 0:0:0:0: Direct-Access     SanDisk  Ultra Fit        1.00 PQ: 0 ANSI: 6\n[    4.722033] sd 0:0:0:0: [sda] 242614272 512-byte logical blocks: (124 GB/116 GiB)\n[    4.725696] sd 0:0:0:0: [sda] Write Protect is off\n[    4.728267] sd 0:0:0:0: [sda] Mode Sense: 43 00 00 00\n[    4.728609] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA\n[    4.780697]  sda: sda1\n[    4.858375] sd 0:0:0:0: [sda] Attached SCSI removable disk\n[   64.473114] cfg80211: failed to load regulatory.db\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq/post_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n 35:      68476        274        274        274        274        274        274        275   AIC-FIQ 896 Level     arch_timer\n 39:          0          0          0          0          0          0          0          0       AIC 781 Level     apple-dart fault handler, apple-dart fault handler\n 40:          0          0          0          0          0          0          0          0       AIC 777 Level     xhci-hcd:usb1\n 41:          0          0          0          0          0          0          0          0       AIC 861 Level     apple-dart fault handler, apple-dart fault handler\n 42:        138          0          0          0          0          0          0          0       AIC 857 Level     xhci-hcd:usb3\nIPI0:       117         15         10         10         27          9          9          9       Rescheduling interrupts\nIPI1:         3          0          0          0          4          1          1          1       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:        21          3          2          2          4          2          2          2       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n 35:        740        274        274        274        274        274        274        275   AIC-FIQ 896 Level     arch_timer\n 39:          0          0          0          0          0          0          0          0       AIC 781 Level     apple-dart fault handler, apple-dart fault handler\n 40:          0          0          0          0          0          0          0          0       AIC 777 Level     xhci-hcd:usb1\n 41:          0          0          0          0          0          0          0          0       AIC 861 Level     apple-dart fault handler, apple-dart fault handler\n 42:        138          0          0          0          0          0          0          0       AIC 857 Level     xhci-hcd:usb3\nIPI0:        44         10         10         10         10          9          9          9       Rescheduling interrupts\nIPI1:         1          0          0          0          2          1          1          1       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:        17          3          2          2          4          2          2          2       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:03 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    5 root      0:00 [kworker/0:0-eve]\n    6 root      0:00 [kworker/0:0H-ev]\n    8 root      0:00 [mm_percpu_wq]\n    9 root      0:00 [rcu_tasks_kthre]\n   10 root      0:00 [ksoftirqd/0]\n   11 root      0:00 [rcu_preempt]\n   12 root      0:00 [rcuog/0]\n   13 root      0:00 [rcuop/0]\n   14 root      0:00 [migration/0]\n   15 root      0:00 [cpuhp/0]\n   16 root      0:00 [cpuhp/1]\n   17 root      0:00 [migration/1]\n   18 root      0:00 [ksoftirqd/1]\n   19 root      0:00 [kworker/1:0-eve]\n   20 root      0:00 [kworker/1:0H]\n   21 root      0:00 [rcuop/1]\n   22 root      0:00 [cpuhp/2]\n   23 root      0:00 [migration/2]\n   24 root      0:00 [ksoftirqd/2]\n   25 root      0:00 [kworker/2:0-mm_]\n   26 root      0:00 [kworker/2:0H]\n   27 root      0:00 [rcuop/2]\n   28 root      0:00 [cpuhp/3]\n   29 root      0:00 [migration/3]\n   30 root      0:00 [ksoftirqd/3]\n   31 root      0:00 [kworker/3:0-mm_]\n   32 root      0:00 [kworker/3:0H]\n   33 root      0:00 [rcuop/3]\n   34 root      0:00 [cpuhp/4]\n   35 root      0:00 [migration/4]\n   36 root      0:00 [ksoftirqd/4]\n   37 root      0:00 [kworker/4:0-mm_]\n   38 root      0:00 [kworker/4:0H]\n   39 root      0:00 [rcuog/4]\n   40 root      0:00 [rcuop/4]\n   41 root      0:00 [cpuhp/5]\n   42 root      0:00 [migration/5]\n   43 root      0:00 [ksoftirqd/5]\n   44 root      0:00 [kworker/5:0-mm_]\n   45 root      0:00 [kworker/5:0H]\n   46 root      0:00 [rcuop/5]\n   47 root      0:00 [cpuhp/6]\n   48 root      0:00 [migration/6]\n   49 root      0:00 [ksoftirqd/6]\n   50 root      0:00 [kworker/6:0-mm_]\n   51 root      0:00 [kworker/6:0H]\n   52 root      0:00 [rcuop/6]\n   53 root      0:00 [cpuhp/7]\n   54 root      0:00 [migration/7]\n   55 root      0:00 [ksoftirqd/7]\n   56 root      0:00 [kworker/7:0-mm_]\n   57 root      0:00 [kworker/7:0H]\n   58 root      0:00 [rcuop/7]\n   59 root      0:00 [kdevtmpfs]\n   60 root      0:00 [netns]\n   61 root      0:00 [inet_frag_wq]\n   63 root      0:00 [oom_reaper]\n   64 root      0:00 [writeback]\n   65 root      0:00 [kcompactd0]\n   66 root      0:00 [khugepaged]\n   88 root      0:00 [cryptd]\n  110 root      0:00 [kblockd]\n  111 root      0:00 [blkcg_punt_bio]\n  112 root      0:00 [kworker/u16:1-e]\n  113 root      0:00 [md]\n  114 root      0:00 [kworker/1:1-eve]\n  115 root      0:00 [kworker/0:1H-kb]\n  116 root      0:00 [rpciod]\n  117 root      0:00 [kworker/u17:0]\n  118 root      0:00 [xprtiod]\n  119 root      0:00 [cfg80211]\n  120 root      0:00 [kworker/u16:2-e]\n  193 root      0:00 [kswapd0]\n  194 root      0:00 [nfsiod]\n  207 root      0:00 [kpcitest]\n  350 root      0:00 [nvme-wq]\n  352 root      0:00 [nvme-reset-wq]\n  354 root      0:00 [nvme-delete-wq]\n  398 root      0:00 [kworker/2:1]\n  399 root      0:00 [kworker/3:1]\n  400 root      0:00 [kworker/4:1-eve]\n  401 root      0:00 [kworker/5:1]\n  402 root      0:00 [kworker/6:1]\n  403 root      0:00 [kworker/7:1]\n  446 root      0:00 [uas]\n  497 root      0:00 [mld]\n  498 root      0:00 [ipv6_addrconf]\n  502 root      0:00 [dsa_ordered]\n  512 root      0:00 [kworker/0:3-eve]\n  524 root      0:00 [scsi_eh_0]\n  525 root      0:00 [scsi_tmf_0]\n  527 root      0:00 [usb-storage]\n  533 root      0:00 [kworker/u16:3-e]\n  624 root      0:00 ps -A\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,600000,4578.574886,7.630958143333334,0.0,0.0,0,76.445157703\r\n1,972000,7368.421053,7.580680095679012,0.0,0.0,0,47.502255522\r\n1,1332000,10101.301625,7.583559778528529,0.0,0.0,0,34.650215934\r\n1,1704000,12850.63886,7.541454730046948,0.0,0.0,0,27.237502847\r\n1,2064000,15627.790677,7.571604010174419,0.0,0.0,0,22.397044261\r\n4,600000,6541.444725,10.902407875,0.0,0.0,0,53.507529484\r\n4,828000,9024.339934,10.89896127294686,0.0,0.0,0,38.786422227\r\n4,1056000,11510.128913,10.899743288825759,0.0,0.0,0,30.410480264\r\n4,1284000,13996.640806,10.900810596573208,0.0,0.0,0,25.008751512\r\n4,1500000,16358.962374,10.905974916,0.0,0.0,0,21.396894052\r\n4,1728000,18837.459634,10.901307658564814,0.0,0.0,0,18.582608717\r\n4,1956000,21316.76716,10.8981427198364,0.0,0.0,0,16.421065091\r\n4,2184000,23803.04679,10.898830947802198,0.0,0.0,0,14.70504009\r\n4,2388000,26066.880167,10.91577896440536,0.0,0.0,0,13.429206048\r\n4,2592000,28294.260307,10.91599548881173,0.0,0.0,0,12.371965922\r\n4,2772000,30248.033878,10.911989133477633,0.0,0.0,0,11.573279172\r\n4,2988000,32600.596125,10.910507404618475,0.0,0.0,0,10.73726613\r\n4,3096000,32573.289902,10.521088469638244,0.0,0.0,0,10.746304464\r\n4,3144000,32564.19799,10.357569335241731,0.0,0.0,0,10.749745588\r\n4,3204000,32606.670393,10.176863418539327,0.0,0.0,0,10.735940797\r\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 676.660112031, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}, \"cpus\": {\"1\": {\"freqs\": {\"600000\": {\"active\": {\"elapsed_sec\": 76.445157703, \"elapsed_ns\": 76445157703, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 4578.574886, \"coremarks_per_mhz\": 7.630958143333334, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"972000\": {\"active\": {\"elapsed_sec\": 47.502255522, \"elapsed_ns\": 47502255522, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 7368.421053, \"coremarks_per_mhz\": 7.580680095679012, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1332000\": {\"active\": {\"elapsed_sec\": 34.650215934, \"elapsed_ns\": 34650215934, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 10101.301625, \"coremarks_per_mhz\": 7.583559778528529, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1704000\": {\"active\": {\"elapsed_sec\": 27.237502847, \"elapsed_ns\": 27237502847, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 12850.63886, \"coremarks_per_mhz\": 7.541454730046948, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2064000\": {\"active\": {\"elapsed_sec\": 22.397044261, \"elapsed_ns\": 22397044261, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 15627.790677, \"coremarks_per_mhz\": 7.571604010174419, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}}}, \"4\": {\"freqs\": {\"600000\": {\"active\": {\"elapsed_sec\": 53.507529484, \"elapsed_ns\": 53507529484, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 6541.444725, \"coremarks_per_mhz\": 10.902407875, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"828000\": {\"active\": {\"elapsed_sec\": 38.786422227, \"elapsed_ns\": 38786422227, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 9024.339934, \"coremarks_per_mhz\": 10.89896127294686, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1056000\": {\"active\": {\"elapsed_sec\": 30.410480264, \"elapsed_ns\": 30410480264, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 11510.128913, \"coremarks_per_mhz\": 10.899743288825759, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1284000\": {\"active\": {\"elapsed_sec\": 25.008751512, \"elapsed_ns\": 25008751512, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 13996.640806, \"coremarks_per_mhz\": 10.900810596573208, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1500000\": {\"active\": {\"elapsed_sec\": 21.396894052, \"elapsed_ns\": 21396894052, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 16358.962374, \"coremarks_per_mhz\": 10.905974916, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1728000\": {\"active\": {\"elapsed_sec\": 18.582608717, \"elapsed_ns\": 18582608717, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 18837.459634, \"coremarks_per_mhz\": 10.901307658564814, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1956000\": {\"active\": {\"elapsed_sec\": 16.421065091, \"elapsed_ns\": 16421065091, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 21316.76716, \"coremarks_per_mhz\": 10.8981427198364, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2184000\": {\"active\": {\"elapsed_sec\": 14.70504009, \"elapsed_ns\": 14705040090, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 23803.04679, \"coremarks_per_mhz\": 10.898830947802198, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2388000\": {\"active\": {\"elapsed_sec\": 13.429206048, \"elapsed_ns\": 13429206048, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 26066.880167, \"coremarks_per_mhz\": 10.91577896440536, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2592000\": {\"active\": {\"elapsed_sec\": 12.371965922, \"elapsed_ns\": 12371965922, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 28294.260307, \"coremarks_per_mhz\": 10.91599548881173, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2772000\": {\"active\": {\"elapsed_sec\": 11.573279172, \"elapsed_ns\": 11573279172, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 30248.033878, \"coremarks_per_mhz\": 10.911989133477633, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2988000\": {\"active\": {\"elapsed_sec\": 10.73726613, \"elapsed_ns\": 10737266130, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 32600.596125, \"coremarks_per_mhz\": 10.910507404618475, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"3096000\": {\"active\": {\"elapsed_sec\": 10.746304464, \"elapsed_ns\": 10746304464, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 32573.289902, \"coremarks_per_mhz\": 10.521088469638244, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"3144000\": {\"active\": {\"elapsed_sec\": 10.749745588, \"elapsed_ns\": 10749745588, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 32564.19799, \"coremarks_per_mhz\": 10.357569335241731, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"3204000\": {\"active\": {\"elapsed_sec\": 10.735940797, \"elapsed_ns\": 10735940797, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 32606.670393, \"coremarks_per_mhz\": 10.176863418539327, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/t8103/asahi-cpufreq/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 0 mW\n\n\n===== CPU 1 =====\nFrequencies: 600 972 1332 1704 2064\n\n 600:  4579     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    76.4 s\n 972:  7368     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    47.5 s\n1332: 10101     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    34.7 s\n1704: 12851     7.5 C/MHz      0 mW    0.0 J    0.0 I/mJ    27.2 s\n2064: 15628     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    22.4 s\n\n\n===== CPU 4 =====\nFrequencies: 600 828 1056 1284 1500 1728 1956 2184 2388 2592 2772 2988 3096 3144 3204\n\n 600:  6541     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    53.5 s\n 828:  9024     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    38.8 s\n1056: 11510     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    30.4 s\n1284: 13997     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    25.0 s\n1500: 16359     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    21.4 s\n1728: 18837     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    18.6 s\n1956: 21317     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    16.4 s\n2184: 23803     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    14.7 s\n2388: 26067     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    13.4 s\n2592: 28294     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    12.4 s\n2772: 30248     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    11.6 s\n2988: 32601     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    10.7 s\n3096: 32573     10.5 C/MHz      0 mW    0.0 J    0.0 I/mJ    10.7 s\n3144: 32564     10.4 C/MHz      0 mW    0.0 J    0.0 I/mJ    10.7 s\n3204: 32607     10.2 C/MHz      0 mW    0.0 J    0.0 I/mJ    10.7 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq/uptime.txt",
    "content": " 00:11:24 up 11 min,  load average: 0.59, 0.63, 0.40\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq/versions.txt",
    "content": "Kernel: Linux version 5.15.0-rc2-12214-g82f5b5e5541a (kdrag0n@pinwheel) (aarch64-linux-gnu-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37) #20 SMP PREEMPT Sat Oct 2 19:00:17 PDT 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-max2988/cmdline.txt",
    "content": "earlycon console=tty0 rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-max2988/cpufreq_stats/0/time_in_state",
    "content": "600000 51612\n972000 5567\n1332000 4282\n1704000 3547\n2064000 3089\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-max2988/cpufreq_stats/0/total_trans",
    "content": "27\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-max2988/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    600000    972000   1332000   1704000   2064000 \n   600000:         0         2         1         2         3 \n   972000:         4         0         1         0         0 \n  1332000:         0         2         0         1         0 \n  1704000:         2         1         1         0         2 \n  2064000:         2         0         0         3         0 \n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-max2988/cpufreq_stats/4/time_in_state",
    "content": "600000 32182\n828000 4689\n1056000 3851\n1284000 3311\n1500000 2950\n1728000 2669\n1956000 2452\n2184000 2281\n2388000 2153\n2592000 2048\n2772000 1968\n2988000 1884\n3096000 1885\n3144000 1885\n3204000 1884\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-max2988/cpufreq_stats/4/total_trans",
    "content": "15\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-max2988/cpufreq_stats/4/trans_table",
    "content": "   From  :    To\n         :    600000    828000   1056000   1284000   1500000   1728000   1956000   2184000   2388000   2592000   2772000   2988000   3096000   3144000   3204000 \n   600000:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   828000:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1056000:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1284000:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1500000:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1728000:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1956000:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  2184000:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  2388000:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  2592000:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  2772000:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2988000:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  3096000:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  3144000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  3204000:         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-max2988/cpuinfo.txt",
    "content": "processor\t: 0\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x022\nCPU revision\t: 1\n\nprocessor\t: 1\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x022\nCPU revision\t: 1\n\nprocessor\t: 2\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x022\nCPU revision\t: 1\n\nprocessor\t: 3\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x022\nCPU revision\t: 1\n\nprocessor\t: 4\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x023\nCPU revision\t: 1\n\nprocessor\t: 5\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x023\nCPU revision\t: 1\n\nprocessor\t: 6\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x023\nCPU revision\t: 1\n\nprocessor\t: 7\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x023\nCPU revision\t: 1\n\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-max2988/device.txt",
    "content": "Model: Apple MacBook Air (M1, 2020);\nCompatible: apple,j274;apple,t8103;apple,arm-platform;\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-max2988/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x611f0221]\n[    0.000000] Linux version 5.15.0-rc2-12214-g82f5b5e5541a (kdrag0n@pinwheel) (aarch64-linux-gnu-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37) #20 SMP PREEMPT Sat Oct 2 19:00:17 PDT 2021\n[    0.000000] Machine model: Apple MacBook Air (M1, 2020)\n[    0.000000] earlycon: s5l0 at MMIO32 0x0000000235200000 (options '')\n[    0.000000] printk: bootconsole [s5l0] enabled\n[    0.000000] Zone ranges:\n[    0.000000]   DMA      [mem 0x00000008019c4000-0x00000009d93e3fff]\n[    0.000000]   DMA32    empty\n[    0.000000]   Normal   empty\n[    0.000000] Movable zone start for each node\n[    0.000000] Early memory node ranges\n[    0.000000]   node   0: [mem 0x00000008019c4000-0x00000009d93e3fff]\n[    0.000000] Initmem setup node 0 [mem 0x00000008019c4000-0x00000009d93e3fff]\n[    0.000000] On node 0, zone DMA: 775 pages in unavailable ranges\n[    0.000000] percpu: Embedded 4 pages/cpu s34200 r0 d31336 u65536\n[    0.000000] pcpu-alloc: s34200 r0 d31336 u65536 alloc=4*16384\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: detected: Address authentication (IMP DEF algorithm)\n[    0.000000] CPU features: detected: Virtualization Host Extensions\n[    0.000000] CPU features: detected: Spectre-v4\n[    0.000000] alternatives: patching kernel code\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 481065\n[    0.000000] Kernel command line: earlycon console=tty0 rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 9, 8388608 bytes, linear)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 8, 4194304 bytes, linear)\n[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off\n[    0.000000] Memory: 7644992K/7727232K available (13056K kernel code, 1094K rwdata, 2960K rodata, 1280K init, 435K bss, 82240K reserved, 0K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tTrampoline variant of Tasks RCU enabled.\n[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] Root IRQ handler: aic_handle_irq\n[    0.000000] Root FIQ handler: aic_handle_fiq\n[    0.000000] irq_apple_aic: Initialized with 896 IRQs, 4 FIQs, 32 vIPIs\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] random: get_random_bytes called from start_kernel+0x474/0x654 with crng_init=0\n[    0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns\n[    0.000000] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns\n[    0.008064] Console: colour dummy device 80x25\n[    0.012470] printk: console [tty0] enabled\n[    0.016568] printk: bootconsole [s5l0] disabled\n[    0.021112] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000)\n[    0.021117] pid_max: default: 32768 minimum: 301\n[    0.021133] LSM: Security Framework initializing\n[    0.021146] Mount-cache hash table entries: 16384 (order: 3, 131072 bytes, linear)\n[    0.021151] Mountpoint-cache hash table entries: 16384 (order: 3, 131072 bytes, linear)\n[    0.021464] rcu: Hierarchical SRCU implementation.\n[    0.021559] smp: Bringing up secondary CPUs ...\n[    0.021623] Detected VIPT I-cache on CPU1\n[    0.021633] CPU1: Booted secondary processor 0x0000000001 [0x611f0221]\n[    0.021719] Detected VIPT I-cache on CPU2\n[    0.021727] CPU2: Booted secondary processor 0x0000000002 [0x611f0221]\n[    0.021802] Detected VIPT I-cache on CPU3\n[    0.021809] CPU3: Booted secondary processor 0x0000000003 [0x611f0221]\n[    0.021901] Detected VIPT I-cache on CPU4\n[    0.021928] CPU4: Booted secondary processor 0x0000010100 [0x611f0231]\n[    0.022061] Detected VIPT I-cache on CPU5\n[    0.022081] CPU5: Booted secondary processor 0x0000010101 [0x611f0231]\n[    0.022198] Detected VIPT I-cache on CPU6\n[    0.022218] CPU6: Booted secondary processor 0x0000010102 [0x611f0231]\n[    0.022341] Detected VIPT I-cache on CPU7\n[    0.022361] CPU7: Booted secondary processor 0x0000010103 [0x611f0231]\n[    0.022415] smp: Brought up 1 node, 8 CPUs\n[    0.022434] SMP: Total of 8 processors activated.\n[    0.022437] CPU features: detected: ARMv8.4 Translation Table Level\n[    0.022439] CPU features: detected: Data cache clean to the PoU not required for I/D coherence\n[    0.022442] CPU features: detected: Common not Private translations\n[    0.022444] CPU features: detected: CRC32 instructions\n[    0.022446] CPU features: detected: E0PD\n[    0.022449] CPU features: detected: Generic authentication (IMP DEF algorithm)\n[    0.022451] CPU features: detected: RCpc load-acquire (LDAPR)\n[    0.022453] CPU features: detected: LSE atomic instructions\n[    0.022455] CPU features: detected: Privileged Access Never\n[    0.022457] CPU features: detected: RAS Extension Support\n[    0.022459] CPU features: detected: Speculation barrier (SB)\n[    0.022461] CPU features: detected: Stage-2 Force Write-Back\n[    0.022463] CPU features: detected: TLB range maintenance instructions\n[    0.022465] CPU features: detected: Speculative Store Bypassing Safe (SSBS)\n[    0.040782] CPU: All CPU(s) started at EL2\n[    0.041143] devtmpfs: initialized\n[    0.041547] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.041553] futex hash table entries: 2048 (order: 3, 131072 bytes, linear)\n[    0.041578] pinctrl core: initialized pinctrl subsystem\n[    0.041656] NET: Registered PF_NETLINK/PF_ROUTE protocol family\n[    0.041859] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations\n[    0.041877] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations\n[    0.041896] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations\n[    0.041953] thermal_sys: Registered thermal governor 'step_wise'\n[    0.041954] thermal_sys: Registered thermal governor 'user_space'\n[    0.041980] cpuidle: using governor ladder\n[    0.041986] cpuidle: using governor menu\n[    0.041991] NET: Registered PF_QIPCRTR protocol family\n[    0.042016] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.042107] ASID allocator initialised with 256 entries\n[    0.042113] Serial: AMBA PL011 UART driver\n[    0.044049] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages\n[    0.044052] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages\n[    0.044055] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages\n[    0.044350] cryptd: max_cpu_qlen set to 1000\n[    0.051134] random: fast init done\n[    0.052226] random: crng init done\n[    0.212284] raid6: neonx8   gen() 10127 MB/s\n[    0.382299] raid6: neonx8   xor()  8544 MB/s\n[    0.552316] raid6: neonx4   gen() 10132 MB/s\n[    0.722336] raid6: neonx4   xor()  8818 MB/s\n[    0.892360] raid6: neonx2   gen()  9986 MB/s\n[    1.062399] raid6: neonx2   xor()  8552 MB/s\n[    1.232426] raid6: neonx1   gen()  8502 MB/s\n[    1.402445] raid6: neonx1   xor()  7074 MB/s\n[    1.572481] raid6: int64x8  gen()  4160 MB/s\n[    1.742510] raid6: int64x8  xor()  2386 MB/s\n[    1.912542] raid6: int64x4  gen()  4311 MB/s\n[    2.082572] raid6: int64x4  xor()  2573 MB/s\n[    2.252587] raid6: int64x2  gen()  3776 MB/s\n[    2.422602] raid6: int64x2  xor()  2189 MB/s\n[    2.592658] raid6: int64x1  gen()  2938 MB/s\n[    2.762675] raid6: int64x1  xor()  1671 MB/s\n[    2.762677] raid6: using algorithm neonx4 gen() 10132 MB/s\n[    2.762679] raid6: .... xor() 8818 MB/s, rmw enabled\n[    2.762682] raid6: using neon recovery algorithm\n[    2.762700] iommu: Default domain type: Translated \n[    2.762702] iommu: DMA domain TLB invalidation policy: strict mode \n[    2.762724] vgaarb: loaded\n[    2.762761] SCSI subsystem initialized\n[    2.762784] usbcore: registered new interface driver usbfs\n[    2.762790] usbcore: registered new interface driver hub\n[    2.762797] usbcore: registered new device driver usb\n[    2.762822] mc: Linux media interface: v0.10\n[    2.762827] videodev: Linux video capture interface: v2.00\n[    2.762869] Advanced Linux Sound Architecture Driver Initialized.\n[    2.762966] Bluetooth: Core ver 2.22\n[    2.762970] NET: Registered PF_BLUETOOTH protocol family\n[    2.762972] Bluetooth: HCI device and connection manager initialized\n[    2.762976] Bluetooth: HCI socket layer initialized\n[    2.762978] Bluetooth: L2CAP socket layer initialized\n[    2.762981] Bluetooth: SCO socket layer initialized\n[    2.763000] nfc: nfc_init: NFC Core ver 0.1\n[    2.763009] NET: Registered PF_NFC protocol family\n[    2.763058] clocksource: Switched to clocksource arch_sys_counter\n[    2.763086] VFS: Disk quotas dquot_6.6.0\n[    2.763096] VFS: Dquot-cache hash table entries: 2048 (order 0, 16384 bytes)\n[    2.763184] simple-framebuffer 9df4e4000.framebuffer: framebuffer at 0x9df4e4000, 0xfa0000 bytes\n[    2.763189] simple-framebuffer 9df4e4000.framebuffer: format=x2r10g10b10, mode=2560x1600x32, linelength=10240\n[    2.770403] Console: switching to colour frame buffer device 160x50\n[    2.777333] simple-framebuffer 9df4e4000.framebuffer: fb0: simplefb registered!\n[    2.778079] NET: Registered PF_INET protocol family\n[    2.778163] IP idents hash table entries: 131072 (order: 6, 1048576 bytes, linear)\n[    2.779734] tcp_listen_portaddr_hash hash table entries: 4096 (order: 2, 65536 bytes, linear)\n[    2.779834] TCP established hash table entries: 65536 (order: 5, 524288 bytes, linear)\n[    2.779983] TCP bind hash table entries: 65536 (order: 6, 1048576 bytes, linear)\n[    2.780158] TCP: Hash tables configured (established 65536 bind 65536)\n[    2.780240] UDP hash table entries: 4096 (order: 3, 131072 bytes, linear)\n[    2.780329] UDP-Lite hash table entries: 4096 (order: 3, 131072 bytes, linear)\n[    2.780445] NET: Registered PF_UNIX/PF_LOCAL protocol family\n[    2.780567] RPC: Registered named UNIX socket transport module.\n[    2.780631] RPC: Registered udp transport module.\n[    2.780682] RPC: Registered tcp transport module.\n[    2.780732] RPC: Registered tcp NFSv4.1 backchannel transport module.\n[    2.780900] PCI: CLS 0 bytes, default 64\n[    2.780998] Unpacking initramfs...\n[    2.958937] Freeing initrd memory: 13280K\n[    2.959595] Initialise system trusted keyrings\n[    2.959894] workingset: timestamp_bits=46 max_order=19 bucket_order=0\n[    2.960925] squashfs: version 4.0 (2009/01/31) Phillip Lougher\n[    2.961195] NFS: Registering the id_resolver key type\n[    2.961253] Key type id_resolver registered\n[    2.963469] Key type id_legacy registered\n[    2.965638] nfs4filelayout_init: NFSv4 File Layout Driver Registering...\n[    2.967856] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...\n[    2.970135] fuse: init (API version 7.34)\n[    2.972487] 9p: Installing v9fs 9p2000 file system support\n[    2.987757] NET: Registered PF_ALG protocol family\n[    2.990061] xor: measuring software checksum speed\n[    2.993283]    8regs           : 11180 MB/sec\n[    2.996255]    32regs          : 14262 MB/sec\n[    2.999054]    arm64_neon      : 17796 MB/sec\n[    3.001276] xor: using function: arm64_neon (17796 MB/sec)\n[    3.003513] Key type asymmetric registered\n[    3.005736] Asymmetric key parser 'x509' registered\n[    3.007993] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)\n[    3.010295] io scheduler mq-deadline registered\n[    3.012590] io scheduler kyber registered\n[    3.015179] apple-cluster-clk 210e20000.clock-controller: Initializing cluster (DVMR: 0)\n[    3.018261] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled\n[    3.020957] 235200000.serial: ttySAC0 at MMIO 0x235200000 (irq = 37, base_baud = 0) is a APPLE S5L\n[    3.023456] 235208000.serial: ttySAC2 at MMIO 0x235208000 (irq = 38, base_baud = 0) is a APPLE S5L\n[    3.027083] apple-dart 382f00000.iommu: DART [pagesize 4000, bypass support: 1, bypass forced: 0] initialized\n[    3.029517] apple-dart 382f80000.iommu: DART [pagesize 4000, bypass support: 1, bypass forced: 0] initialized\n[    3.031886] apple-dart 502f00000.iommu: DART [pagesize 4000, bypass support: 1, bypass forced: 0] initialized\n[    3.034405] apple-dart 502f80000.iommu: DART [pagesize 4000, bypass support: 1, bypass forced: 0] initialized\n[    3.036687] cacheinfo: Unable to detect cache hierarchy for CPU 0\n[    3.039435] loop: module loaded\n[    3.054838] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.\n[    3.057042] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    3.059338] libphy: Fixed MDIO Bus: probed\n[    3.061526] tun: Universal TUN/TAP device driver, 1.6\n[    3.063825] CAN device driver interface\n[    3.066026] usbcore: registered new interface driver rtl8150\n[    3.068164] usbcore: registered new interface driver r8152\n[    3.070268] usbcore: registered new interface driver lan78xx\n[    3.072660] usbcore: registered new interface driver asix\n[    3.074729] usbcore: registered new interface driver ax88179_178a\n[    3.076727] usbcore: registered new interface driver cdc_ether\n[    3.078731] usbcore: registered new interface driver dm9601\n[    3.080709] usbcore: registered new interface driver CoreChips\n[    3.082652] usbcore: registered new interface driver smsc75xx\n[    3.084618] usbcore: registered new interface driver smsc95xx\n[    3.086558] usbcore: registered new interface driver net1080\n[    3.088439] usbcore: registered new interface driver plusb\n[    3.090288] usbcore: registered new interface driver cdc_subset\n[    3.092089] usbcore: registered new interface driver MOSCHIP usb-ethernet driver\n[    3.093961] usbcore: registered new interface driver ipheth\n[    3.095741] usbcore: registered new interface driver cdc_ncm\n[    3.097558] dwc3 382280000.usb: Adding to iommu group 0\n[    3.133110] dwc3 502280000.usb: Adding to iommu group 1\n[    3.173179] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    3.174870] ehci-pci: EHCI PCI platform driver\n[    3.176543] ehci-platform: EHCI generic platform driver\n[    3.178263] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller\n[    3.179985] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1\n[    3.181798] xhci-hcd xhci-hcd.0.auto: hcc params 0x0238ffcd hci version 0x110 quirks 0x0000000000010010\n[    3.183581] xhci-hcd xhci-hcd.0.auto: irq 40, io mem 0x382280000\n[    3.185459] hub 1-0:1.0: USB hub found\n[    3.187222] hub 1-0:1.0: 1 port detected\n[    3.189014] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller\n[    3.190789] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2\n[    3.192548] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.1 Enhanced SuperSpeed\n[    3.194527] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.\n[    3.196395] hub 2-0:1.0: USB hub found\n[    3.198143] hub 2-0:1.0: 1 port detected\n[    3.199910] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller\n[    3.201611] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 3\n[    3.203452] xhci-hcd xhci-hcd.1.auto: hcc params 0x0238ffcd hci version 0x110 quirks 0x0000000000010010\n[    3.205183] xhci-hcd xhci-hcd.1.auto: irq 42, io mem 0x502280000\n[    3.207094] hub 3-0:1.0: USB hub found\n[    3.208860] hub 3-0:1.0: 1 port detected\n[    3.210682] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller\n[    3.212453] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 4\n[    3.214263] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.1 Enhanced SuperSpeed\n[    3.216075] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.\n[    3.217893] hub 4-0:1.0: USB hub found\n[    3.219580] hub 4-0:1.0: 1 port detected\n[    3.221317] usbcore: registered new interface driver cdc_acm\n[    3.223005] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters\n[    3.224874] usbcore: registered new interface driver uas\n[    3.226655] usbcore: registered new interface driver usb-storage\n[    3.228450] usbcore: registered new interface driver cp210x\n[    3.230233] usbserial: USB Serial support registered for cp210x\n[    3.232068] usbcore: registered new interface driver ftdi_sio\n[    3.233986] usbserial: USB Serial support registered for FTDI USB Serial Device\n[    3.235930] usbcore: registered new interface driver option\n[    3.237865] usbserial: USB Serial support registered for GSM modem (1-port)\n[    3.239916] udc-core: couldn't find an available UDC - added [g_serial] to list of pending drivers\n[    3.241994] udc-core: couldn't find an available UDC - added [g_cdc] to list of pending drivers\n[    3.244206] i2c_dev: i2c /dev entries driver\n[    3.246338] usbcore: registered new interface driver uvcvideo\n[    3.248495] gspca_main: v2.14.0 registered\n[    3.250725] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com\n[    3.252978] Bluetooth: HCI UART driver ver 2.3\n[    3.255415] Bluetooth: HCI UART protocol H4 registered\n[    3.257680] Bluetooth: HCI UART protocol LL registered\n[    3.259940] Bluetooth: HCI UART protocol QCA registered\n[    3.262165] usbcore: registered new interface driver btusb\n[    3.264602] usbcore: registered new interface driver usbhid\n[    3.266794] usbhid: USB HID core driver\n[    3.268994] apple-mcc 200200000.memory-controller: MCC performance driver initialized\n[    3.271306] GACT probability NOT on\n[    3.273805] Mirror/redirect action on\n[    3.276456] NET: Registered PF_INET6 protocol family\n[    3.278756] Segment Routing with IPv6\n[    3.280939] In-situ OAM (IOAM) with IPv6\n[    3.283130] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    3.285434] NET: Registered PF_PACKET protocol family\n[    3.287642] can: controller area network core\n[    3.289806] NET: Registered PF_CAN protocol family\n[    3.291924] can: raw protocol\n[    3.294082] can: broadcast manager protocol\n[    3.296197] can: netlink gateway - max_hops=1\n[    3.298313] Bluetooth: HIDP (Human Interface Emulation) ver 1.2\n[    3.300419] Bluetooth: HIDP socket layer initialized\n[    3.302494] 8021q: 802.1Q VLAN Support v1.8\n[    3.304621] 9pnet: Installing 9P2000 support\n[    3.306706] Key type dns_resolver registered\n[    3.308826] registered taskstats version 1\n[    3.310869] Loading compiled-in X.509 certificates\n[    3.313090] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=no\n[    3.315206] apple-cluster-clk 211e20000.clock-controller: Initializing cluster (DVMR: 1)\n[    3.317588] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    3.319739] apple-pmgr-pwrstate 23b700000.power-management:power-controller@418: PS 0x418: pwrstate = 0x0: 0xf0000f0\n[    3.319745] apple-pmgr-pwrstate 23b700000.power-management:power-controller@348: PS 0x348: pwrstate = 0x0: 0xf0\n[    3.319749] apple-pmgr-pwrstate 23b700000.power-management:power-controller@288: PS 0x288: pwrstate = 0x0: 0xf0\n[    3.319754] apple-pmgr-pwrstate 23b700000.power-management:power-controller@278: PS 0x278: pwrstate = 0x0: 0xf0\n[    3.320027] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    3.322142] ALSA device list:\n[    3.324208]   No soundcards found.\n[    3.326319] Freeing unused kernel memory: 1280K\n[    3.328394] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2\n[    3.330550] platform regulatory.0: Falling back to sysfs fallback for: regulatory.db\n[    3.353095] Run /init as init process\n[    3.355682]   with arguments:\n[    3.355683]     /init\n[    3.355684]   with environment:\n[    3.355684]     HOME=/\n[    3.355685]     TERM=linux\n[    3.493060] usb 3-1: new high-speed USB device number 2 using xhci-hcd\n[    3.674411] usb-storage 3-1:1.0: USB Mass Storage device detected\n[    3.677878] scsi host0: usb-storage 3-1:1.0\n[    4.714142] scsi 0:0:0:0: Direct-Access     SanDisk  Ultra Fit        1.00 PQ: 0 ANSI: 6\n[    4.722033] sd 0:0:0:0: [sda] 242614272 512-byte logical blocks: (124 GB/116 GiB)\n[    4.725696] sd 0:0:0:0: [sda] Write Protect is off\n[    4.728267] sd 0:0:0:0: [sda] Mode Sense: 43 00 00 00\n[    4.728609] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA\n[    4.780697]  sda: sda1\n[    4.858375] sd 0:0:0:0: [sda] Attached SCSI removable disk\n[   64.473114] cfg80211: failed to load regulatory.db\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-max2988/post_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n 35:      68476        274        274        274        274        274        274        275   AIC-FIQ 896 Level     arch_timer\n 39:          0          0          0          0          0          0          0          0       AIC 781 Level     apple-dart fault handler, apple-dart fault handler\n 40:          0          0          0          0          0          0          0          0       AIC 777 Level     xhci-hcd:usb1\n 41:          0          0          0          0          0          0          0          0       AIC 861 Level     apple-dart fault handler, apple-dart fault handler\n 42:        138          0          0          0          0          0          0          0       AIC 857 Level     xhci-hcd:usb3\nIPI0:       117         15         10         10         27          9          9          9       Rescheduling interrupts\nIPI1:         3          0          0          0          4          1          1          1       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:        21          3          2          2          4          2          2          2       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-max2988/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n 35:        740        274        274        274        274        274        274        275   AIC-FIQ 896 Level     arch_timer\n 39:          0          0          0          0          0          0          0          0       AIC 781 Level     apple-dart fault handler, apple-dart fault handler\n 40:          0          0          0          0          0          0          0          0       AIC 777 Level     xhci-hcd:usb1\n 41:          0          0          0          0          0          0          0          0       AIC 861 Level     apple-dart fault handler, apple-dart fault handler\n 42:        138          0          0          0          0          0          0          0       AIC 857 Level     xhci-hcd:usb3\nIPI0:        44         10         10         10         10          9          9          9       Rescheduling interrupts\nIPI1:         1          0          0          0          2          1          1          1       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:        17          3          2          2          4          2          2          2       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-max2988/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:03 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    5 root      0:00 [kworker/0:0-eve]\n    6 root      0:00 [kworker/0:0H-ev]\n    8 root      0:00 [mm_percpu_wq]\n    9 root      0:00 [rcu_tasks_kthre]\n   10 root      0:00 [ksoftirqd/0]\n   11 root      0:00 [rcu_preempt]\n   12 root      0:00 [rcuog/0]\n   13 root      0:00 [rcuop/0]\n   14 root      0:00 [migration/0]\n   15 root      0:00 [cpuhp/0]\n   16 root      0:00 [cpuhp/1]\n   17 root      0:00 [migration/1]\n   18 root      0:00 [ksoftirqd/1]\n   19 root      0:00 [kworker/1:0-eve]\n   20 root      0:00 [kworker/1:0H]\n   21 root      0:00 [rcuop/1]\n   22 root      0:00 [cpuhp/2]\n   23 root      0:00 [migration/2]\n   24 root      0:00 [ksoftirqd/2]\n   25 root      0:00 [kworker/2:0-mm_]\n   26 root      0:00 [kworker/2:0H]\n   27 root      0:00 [rcuop/2]\n   28 root      0:00 [cpuhp/3]\n   29 root      0:00 [migration/3]\n   30 root      0:00 [ksoftirqd/3]\n   31 root      0:00 [kworker/3:0-mm_]\n   32 root      0:00 [kworker/3:0H]\n   33 root      0:00 [rcuop/3]\n   34 root      0:00 [cpuhp/4]\n   35 root      0:00 [migration/4]\n   36 root      0:00 [ksoftirqd/4]\n   37 root      0:00 [kworker/4:0-mm_]\n   38 root      0:00 [kworker/4:0H]\n   39 root      0:00 [rcuog/4]\n   40 root      0:00 [rcuop/4]\n   41 root      0:00 [cpuhp/5]\n   42 root      0:00 [migration/5]\n   43 root      0:00 [ksoftirqd/5]\n   44 root      0:00 [kworker/5:0-mm_]\n   45 root      0:00 [kworker/5:0H]\n   46 root      0:00 [rcuop/5]\n   47 root      0:00 [cpuhp/6]\n   48 root      0:00 [migration/6]\n   49 root      0:00 [ksoftirqd/6]\n   50 root      0:00 [kworker/6:0-mm_]\n   51 root      0:00 [kworker/6:0H]\n   52 root      0:00 [rcuop/6]\n   53 root      0:00 [cpuhp/7]\n   54 root      0:00 [migration/7]\n   55 root      0:00 [ksoftirqd/7]\n   56 root      0:00 [kworker/7:0-mm_]\n   57 root      0:00 [kworker/7:0H]\n   58 root      0:00 [rcuop/7]\n   59 root      0:00 [kdevtmpfs]\n   60 root      0:00 [netns]\n   61 root      0:00 [inet_frag_wq]\n   63 root      0:00 [oom_reaper]\n   64 root      0:00 [writeback]\n   65 root      0:00 [kcompactd0]\n   66 root      0:00 [khugepaged]\n   88 root      0:00 [cryptd]\n  110 root      0:00 [kblockd]\n  111 root      0:00 [blkcg_punt_bio]\n  112 root      0:00 [kworker/u16:1-e]\n  113 root      0:00 [md]\n  114 root      0:00 [kworker/1:1-eve]\n  115 root      0:00 [kworker/0:1H-kb]\n  116 root      0:00 [rpciod]\n  117 root      0:00 [kworker/u17:0]\n  118 root      0:00 [xprtiod]\n  119 root      0:00 [cfg80211]\n  120 root      0:00 [kworker/u16:2-e]\n  193 root      0:00 [kswapd0]\n  194 root      0:00 [nfsiod]\n  207 root      0:00 [kpcitest]\n  350 root      0:00 [nvme-wq]\n  352 root      0:00 [nvme-reset-wq]\n  354 root      0:00 [nvme-delete-wq]\n  398 root      0:00 [kworker/2:1]\n  399 root      0:00 [kworker/3:1]\n  400 root      0:00 [kworker/4:1-eve]\n  401 root      0:00 [kworker/5:1]\n  402 root      0:00 [kworker/6:1]\n  403 root      0:00 [kworker/7:1]\n  446 root      0:00 [uas]\n  497 root      0:00 [mld]\n  498 root      0:00 [ipv6_addrconf]\n  502 root      0:00 [dsa_ordered]\n  512 root      0:00 [kworker/0:3-eve]\n  524 root      0:00 [scsi_eh_0]\n  525 root      0:00 [scsi_tmf_0]\n  527 root      0:00 [usb-storage]\n  533 root      0:00 [kworker/u16:3-e]\n  624 root      0:00 ps -A\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-max2988/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,600000,4578.574886,7.630958143333334,0.0,0.0,0,76.445157703\r\n1,972000,7368.421053,7.580680095679012,0.0,0.0,0,47.502255522\r\n1,1332000,10101.301625,7.583559778528529,0.0,0.0,0,34.650215934\r\n1,1704000,12850.63886,7.541454730046948,0.0,0.0,0,27.237502847\r\n1,2064000,15627.790677,7.571604010174419,0.0,0.0,0,22.397044261\r\n4,600000,6541.444725,10.902407875,0.0,0.0,0,53.507529484\r\n4,828000,9024.339934,10.89896127294686,0.0,0.0,0,38.786422227\r\n4,1056000,11510.128913,10.899743288825759,0.0,0.0,0,30.410480264\r\n4,1284000,13996.640806,10.900810596573208,0.0,0.0,0,25.008751512\r\n4,1500000,16358.962374,10.905974916,0.0,0.0,0,21.396894052\r\n4,1728000,18837.459634,10.901307658564814,0.0,0.0,0,18.582608717\r\n4,1956000,21316.76716,10.8981427198364,0.0,0.0,0,16.421065091\r\n4,2184000,23803.04679,10.898830947802198,0.0,0.0,0,14.70504009\r\n4,2388000,26066.880167,10.91577896440536,0.0,0.0,0,13.429206048\r\n4,2592000,28294.260307,10.91599548881173,0.0,0.0,0,12.371965922\r\n4,2772000,30248.033878,10.911989133477633,0.0,0.0,0,11.573279172\r\n4,2988000,32600.596125,10.910507404618475,0.0,0.0,0,10.73726613\r\n4,3096000,32573.289902,10.521088469638244,0.0,0.0,0,10.746304464\r\n4,3144000,32564.19799,10.357569335241731,0.0,0.0,0,10.749745588\r\n4,3204000,32606.670393,10.176863418539327,0.0,0.0,0,10.735940797\r\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-max2988/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 676.660112031, \"housekeeping\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}, \"cpus\": {\"1\": {\"freqs\": {\"600000\": {\"active\": {\"elapsed_sec\": 76.445157703, \"elapsed_ns\": 76445157703, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 4578.574886, \"coremarks_per_mhz\": 7.630958143333334, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"972000\": {\"active\": {\"elapsed_sec\": 47.502255522, \"elapsed_ns\": 47502255522, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 7368.421053, \"coremarks_per_mhz\": 7.580680095679012, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"1332000\": {\"active\": {\"elapsed_sec\": 34.650215934, \"elapsed_ns\": 34650215934, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 10101.301625, \"coremarks_per_mhz\": 7.583559778528529, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"1704000\": {\"active\": {\"elapsed_sec\": 27.237502847, \"elapsed_ns\": 27237502847, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 12850.63886, \"coremarks_per_mhz\": 7.541454730046948, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"2064000\": {\"active\": {\"elapsed_sec\": 22.397044261, \"elapsed_ns\": 22397044261, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 15627.790677, \"coremarks_per_mhz\": 7.571604010174419, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}}}, \"4\": {\"freqs\": {\"600000\": {\"active\": {\"elapsed_sec\": 53.507529484, \"elapsed_ns\": 53507529484, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 6541.444725, \"coremarks_per_mhz\": 10.902407875, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"828000\": {\"active\": {\"elapsed_sec\": 38.786422227, \"elapsed_ns\": 38786422227, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 9024.339934, \"coremarks_per_mhz\": 10.89896127294686, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"1056000\": {\"active\": {\"elapsed_sec\": 30.410480264, \"elapsed_ns\": 30410480264, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 11510.128913, \"coremarks_per_mhz\": 10.899743288825759, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"1284000\": {\"active\": {\"elapsed_sec\": 25.008751512, \"elapsed_ns\": 25008751512, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 13996.640806, \"coremarks_per_mhz\": 10.900810596573208, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"1500000\": {\"active\": {\"elapsed_sec\": 21.396894052, \"elapsed_ns\": 21396894052, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 16358.962374, \"coremarks_per_mhz\": 10.905974916, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"1728000\": {\"active\": {\"elapsed_sec\": 18.582608717, \"elapsed_ns\": 18582608717, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 18837.459634, \"coremarks_per_mhz\": 10.901307658564814, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"1956000\": {\"active\": {\"elapsed_sec\": 16.421065091, \"elapsed_ns\": 16421065091, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 21316.76716, \"coremarks_per_mhz\": 10.8981427198364, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"2184000\": {\"active\": {\"elapsed_sec\": 14.70504009, \"elapsed_ns\": 14705040090, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 23803.04679, \"coremarks_per_mhz\": 10.898830947802198, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"2388000\": {\"active\": {\"elapsed_sec\": 13.429206048, \"elapsed_ns\": 13429206048, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 26066.880167, \"coremarks_per_mhz\": 10.91577896440536, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"2592000\": {\"active\": {\"elapsed_sec\": 12.371965922, \"elapsed_ns\": 12371965922, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 28294.260307, \"coremarks_per_mhz\": 10.91599548881173, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"2772000\": {\"active\": {\"elapsed_sec\": 11.573279172, \"elapsed_ns\": 11573279172, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 30248.033878, \"coremarks_per_mhz\": 10.911989133477633, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"2988000\": {\"active\": {\"elapsed_sec\": 10.73726613, \"elapsed_ns\": 10737266130, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 32600.596125, \"coremarks_per_mhz\": 10.910507404618475, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/t8103/asahi-cpufreq-max2988/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 0 mW\n\n\n===== CPU 1 =====\nFrequencies: 600 972 1332 1704 2064\n\n 600:  4579     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    76.4 s\n 972:  7368     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    47.5 s\n1332: 10101     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    34.7 s\n1704: 12851     7.5 C/MHz      0 mW    0.0 J    0.0 I/mJ    27.2 s\n2064: 15628     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    22.4 s\n\n\n===== CPU 4 =====\nFrequencies: 600 828 1056 1284 1500 1728 1956 2184 2388 2592 2772 2988 3096 3144 3204\n\n 600:  6541     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    53.5 s\n 828:  9024     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    38.8 s\n1056: 11510     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    30.4 s\n1284: 13997     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    25.0 s\n1500: 16359     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    21.4 s\n1728: 18837     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    18.6 s\n1956: 21317     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    16.4 s\n2184: 23803     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    14.7 s\n2388: 26067     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    13.4 s\n2592: 28294     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    12.4 s\n2772: 30248     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    11.6 s\n2988: 32601     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    10.7 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-max2988/uptime.txt",
    "content": " 00:11:24 up 11 min,  load average: 0.59, 0.63, 0.40\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-max2988/versions.txt",
    "content": "Kernel: Linux version 5.15.0-rc2-12214-g82f5b5e5541a (kdrag0n@pinwheel) (aarch64-linux-gnu-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37) #20 SMP PREEMPT Sat Oct 2 19:00:17 PDT 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-single-pcore/cmdline.txt",
    "content": "earlycon console=tty0 rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-single-pcore/cpufreq_stats/0/time_in_state",
    "content": "600000 51525\n972000 5560\n1332000 4279\n1704000 3525\n2064000 3092\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-single-pcore/cpufreq_stats/0/total_trans",
    "content": "29\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-single-pcore/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    600000    972000   1332000   1704000   2064000 \n   600000:         0         1         2         2         3 \n   972000:         3         0         1         1         0 \n  1332000:         0         2         0         2         0 \n  1704000:         2         1         0         0         3 \n  2064000:         3         1         1         1         0 \n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-single-pcore/cpufreq_stats/4/time_in_state",
    "content": "600000 32234\n828000 4689\n1056000 3851\n1284000 3310\n1500000 2948\n1728000 2669\n1956000 2452\n2184000 2281\n2388000 2155\n2592000 2048\n2772000 1967\n2988000 1884\n3096000 1846\n3144000 1830\n3204000 1813\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-single-pcore/cpufreq_stats/4/total_trans",
    "content": "15\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-single-pcore/cpufreq_stats/4/trans_table",
    "content": "   From  :    To\n         :    600000    828000   1056000   1284000   1500000   1728000   1956000   2184000   2388000   2592000   2772000   2988000   3096000   3144000   3204000 \n   600000:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   828000:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1056000:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1284000:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1500000:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1728000:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1956000:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  2184000:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  2388000:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  2592000:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  2772000:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2988000:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  3096000:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  3144000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  3204000:         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-single-pcore/cpuinfo.txt",
    "content": "processor\t: 0\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x022\nCPU revision\t: 1\n\nprocessor\t: 1\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x022\nCPU revision\t: 1\n\nprocessor\t: 2\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x022\nCPU revision\t: 1\n\nprocessor\t: 3\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x022\nCPU revision\t: 1\n\nprocessor\t: 4\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x023\nCPU revision\t: 1\n\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-single-pcore/device.txt",
    "content": "Model: Apple MacBook Air (M1, 2020);\nCompatible: apple,j274;apple,t8103;apple,arm-platform;\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-single-pcore/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x611f0221]\n[    0.000000] Linux version 5.15.0-rc2-12215-g83b4bfbb1569-dirty (kdrag0n@pinwheel) (aarch64-linux-gnu-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37) #22 SMP PREEMPT Sat Oct 2 23:13:12 PDT 2021\n[    0.000000] Machine model: Apple MacBook Air (M1, 2020)\n[    0.000000] earlycon: s5l0 at MMIO32 0x0000000235200000 (options '')\n[    0.000000] printk: bootconsole [s5l0] enabled\n[    0.000000] Zone ranges:\n[    0.000000]   DMA      [mem 0x00000008019c4000-0x00000009d93e3fff]\n[    0.000000]   DMA32    empty\n[    0.000000]   Normal   empty\n[    0.000000] Movable zone start for each node\n[    0.000000] Early memory node ranges\n[    0.000000]   node   0: [mem 0x00000008019c4000-0x00000009d93e3fff]\n[    0.000000] Initmem setup node 0 [mem 0x00000008019c4000-0x00000009d93e3fff]\n[    0.000000] On node 0, zone DMA: 775 pages in unavailable ranges\n[    0.000000] percpu: Embedded 4 pages/cpu s34200 r0 d31336 u65536\n[    0.000000] pcpu-alloc: s34200 r0 d31336 u65536 alloc=4*16384\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: detected: Address authentication (IMP DEF algorithm)\n[    0.000000] CPU features: detected: Virtualization Host Extensions\n[    0.000000] CPU features: detected: Spectre-v4\n[    0.000000] alternatives: patching kernel code\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 481065\n[    0.000000] Kernel command line: earlycon console=tty0 rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 9, 8388608 bytes, linear)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 8, 4194304 bytes, linear)\n[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off\n[    0.000000] Memory: 7645440K/7727232K available (13184K kernel code, 1102K rwdata, 3088K rodata, 1344K init, 428K bss, 81792K reserved, 0K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=5, Nodes=1\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] rcu: \tRCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=5.\n[    0.000000] \tTrampoline variant of Tasks RCU enabled.\n[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.\n[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=5\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] Root IRQ handler: aic_handle_irq\n[    0.000000] Root FIQ handler: aic_handle_fiq\n[    0.000000] irq_apple_aic: Initialized with 896 IRQs, 4 FIQs, 32 vIPIs\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-4.\n[    0.000000] rcu: \tNote: kernel parameter 'rcu_nocbs=', 'nohz_full', or 'isolcpus=' contains nonexistent CPUs.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-4.\n[    0.000000] random: get_random_bytes called from start_kernel+0x474/0x654 with crng_init=0\n[    0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns\n[    0.000000] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns\n[    0.008062] Console: colour dummy device 80x25\n[    0.012470] printk: console [tty0] enabled\n[    0.016569] printk: bootconsole [s5l0] disabled\n[    0.021112] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000)\n[    0.021117] pid_max: default: 32768 minimum: 301\n[    0.021132] LSM: Security Framework initializing\n[    0.021144] Mount-cache hash table entries: 16384 (order: 3, 131072 bytes, linear)\n[    0.021149] Mountpoint-cache hash table entries: 16384 (order: 3, 131072 bytes, linear)\n[    0.021448] rcu: Hierarchical SRCU implementation.\n[    0.021532] smp: Bringing up secondary CPUs ...\n[    0.021594] Detected VIPT I-cache on CPU1\n[    0.021604] CPU1: Booted secondary processor 0x0000000001 [0x611f0221]\n[    0.021693] Detected VIPT I-cache on CPU2\n[    0.021701] CPU2: Booted secondary processor 0x0000000002 [0x611f0221]\n[    0.021776] Detected VIPT I-cache on CPU3\n[    0.021783] CPU3: Booted secondary processor 0x0000000003 [0x611f0221]\n[    0.021874] Detected VIPT I-cache on CPU4\n[    0.021902] CPU4: Booted secondary processor 0x0000010100 [0x611f0231]\n[    0.021967] smp: Brought up 1 node, 5 CPUs\n[    0.021979] SMP: Total of 5 processors activated.\n[    0.021982] CPU features: detected: ARMv8.4 Translation Table Level\n[    0.021984] CPU features: detected: Data cache clean to the PoU not required for I/D coherence\n[    0.021987] CPU features: detected: Common not Private translations\n[    0.021990] CPU features: detected: CRC32 instructions\n[    0.021992] CPU features: detected: E0PD\n[    0.021994] CPU features: detected: Generic authentication (IMP DEF algorithm)\n[    0.021996] CPU features: detected: RCpc load-acquire (LDAPR)\n[    0.021999] CPU features: detected: LSE atomic instructions\n[    0.022001] CPU features: detected: Privileged Access Never\n[    0.022003] CPU features: detected: RAS Extension Support\n[    0.022005] CPU features: detected: Speculation barrier (SB)\n[    0.022007] CPU features: detected: Stage-2 Force Write-Back\n[    0.022009] CPU features: detected: TLB range maintenance instructions\n[    0.022011] CPU features: detected: Speculative Store Bypassing Safe (SSBS)\n[    0.040389] CPU: All CPU(s) started at EL2\n[    0.040726] devtmpfs: initialized\n[    0.041115] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.041122] futex hash table entries: 2048 (order: 3, 131072 bytes, linear)\n[    0.041146] pinctrl core: initialized pinctrl subsystem\n[    0.041237] NET: Registered PF_NETLINK/PF_ROUTE protocol family\n[    0.041390] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations\n[    0.041408] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations\n[    0.041426] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations\n[    0.041493] thermal_sys: Registered thermal governor 'step_wise'\n[    0.041494] thermal_sys: Registered thermal governor 'user_space'\n[    0.041521] cpuidle: using governor ladder\n[    0.041527] cpuidle: using governor menu\n[    0.041532] NET: Registered PF_QIPCRTR protocol family\n[    0.041557] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.041601] ASID allocator initialised with 256 entries\n[    0.041607] Serial: AMBA PL011 UART driver\n[    0.043512] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages\n[    0.043516] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages\n[    0.043519] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages\n[    0.043810] cryptd: max_cpu_qlen set to 1000\n[    0.051135] random: fast init done\n[    0.052227] random: crng init done\n[    0.212286] raid6: neonx8   gen() 10137 MB/s\n[    0.382299] raid6: neonx8   xor()  8543 MB/s\n[    0.552312] raid6: neonx4   gen() 10133 MB/s\n[    0.722322] raid6: neonx4   xor()  8815 MB/s\n[    0.892347] raid6: neonx2   gen()  9987 MB/s\n[    1.062370] raid6: neonx2   xor()  8548 MB/s\n[    1.232392] raid6: neonx1   gen()  8502 MB/s\n[    1.402410] raid6: neonx1   xor()  7229 MB/s\n[    1.572437] raid6: int64x8  gen()  4161 MB/s\n[    1.742459] raid6: int64x8  xor()  2386 MB/s\n[    1.912492] raid6: int64x4  gen()  4311 MB/s\n[    2.082502] raid6: int64x4  xor()  2572 MB/s\n[    2.252516] raid6: int64x2  gen()  3800 MB/s\n[    2.422548] raid6: int64x2  xor()  2194 MB/s\n[    2.592583] raid6: int64x1  gen()  2938 MB/s\n[    2.762596] raid6: int64x1  xor()  1672 MB/s\n[    2.762598] raid6: using algorithm neonx8 gen() 10137 MB/s\n[    2.762601] raid6: .... xor() 8543 MB/s, rmw enabled\n[    2.762603] raid6: using neon recovery algorithm\n[    2.762623] iommu: Default domain type: Translated \n[    2.762625] iommu: DMA domain TLB invalidation policy: strict mode \n[    2.762646] vgaarb: loaded\n[    2.762686] SCSI subsystem initialized\n[    2.762709] usbcore: registered new interface driver usbfs\n[    2.762715] usbcore: registered new interface driver hub\n[    2.762721] usbcore: registered new device driver usb\n[    2.762745] mc: Linux media interface: v0.10\n[    2.762750] videodev: Linux video capture interface: v2.00\n[    2.762793] Advanced Linux Sound Architecture Driver Initialized.\n[    2.762886] Bluetooth: Core ver 2.22\n[    2.762891] NET: Registered PF_BLUETOOTH protocol family\n[    2.762893] Bluetooth: HCI device and connection manager initialized\n[    2.762896] Bluetooth: HCI socket layer initialized\n[    2.762899] Bluetooth: L2CAP socket layer initialized\n[    2.762903] Bluetooth: SCO socket layer initialized\n[    2.762925] nfc: nfc_init: NFC Core ver 0.1\n[    2.762935] NET: Registered PF_NFC protocol family\n[    2.762970] clocksource: Switched to clocksource arch_sys_counter\n[    2.762998] VFS: Disk quotas dquot_6.6.0\n[    2.763007] VFS: Dquot-cache hash table entries: 2048 (order 0, 16384 bytes)\n[    2.763096] simple-framebuffer 9df4e4000.framebuffer: framebuffer at 0x9df4e4000, 0xfa0000 bytes\n[    2.763101] simple-framebuffer 9df4e4000.framebuffer: format=x2r10g10b10, mode=2560x1600x32, linelength=10240\n[    2.770391] Console: switching to colour frame buffer device 160x50\n[    2.777339] simple-framebuffer 9df4e4000.framebuffer: fb0: simplefb registered!\n[    2.778090] NET: Registered PF_INET protocol family\n[    2.778172] IP idents hash table entries: 131072 (order: 6, 1048576 bytes, linear)\n[    2.779744] tcp_listen_portaddr_hash hash table entries: 4096 (order: 2, 65536 bytes, linear)\n[    2.779845] TCP established hash table entries: 65536 (order: 5, 524288 bytes, linear)\n[    2.779995] TCP bind hash table entries: 65536 (order: 6, 1048576 bytes, linear)\n[    2.780168] TCP: Hash tables configured (established 65536 bind 65536)\n[    2.780249] UDP hash table entries: 4096 (order: 3, 131072 bytes, linear)\n[    2.780339] UDP-Lite hash table entries: 4096 (order: 3, 131072 bytes, linear)\n[    2.780453] NET: Registered PF_UNIX/PF_LOCAL protocol family\n[    2.780572] RPC: Registered named UNIX socket transport module.\n[    2.780637] RPC: Registered udp transport module.\n[    2.780687] RPC: Registered tcp transport module.\n[    2.780738] RPC: Registered tcp NFSv4.1 backchannel transport module.\n[    2.780912] PCI: CLS 0 bytes, default 64\n[    2.781003] Unpacking initramfs...\n[    2.958723] Freeing initrd memory: 13280K\n[    2.959277] Initialise system trusted keyrings\n[    2.959527] workingset: timestamp_bits=46 max_order=19 bucket_order=0\n[    2.960562] squashfs: version 4.0 (2009/01/31) Phillip Lougher\n[    2.960827] NFS: Registering the id_resolver key type\n[    2.960885] Key type id_resolver registered\n[    2.963121] Key type id_legacy registered\n[    2.965308] nfs4filelayout_init: NFSv4 File Layout Driver Registering...\n[    2.967547] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...\n[    2.969847] fuse: init (API version 7.34)\n[    2.972217] 9p: Installing v9fs 9p2000 file system support\n[    2.987787] NET: Registered PF_ALG protocol family\n[    2.990108] xor: measuring software checksum speed\n[    2.993341]    8regs           : 11164 MB/sec\n[    2.996328]    32regs          : 14337 MB/sec\n[    2.999142]    arm64_neon      : 17796 MB/sec\n[    3.001380] xor: using function: arm64_neon (17796 MB/sec)\n[    3.003633] Key type asymmetric registered\n[    3.005871] Asymmetric key parser 'x509' registered\n[    3.008143] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)\n[    3.010461] io scheduler mq-deadline registered\n[    3.012774] io scheduler kyber registered\n[    3.015411] apple-cluster-clk 210e20000.clock-controller: Initializing cluster (DVMR: 0)\n[    3.018520] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled\n[    3.021239] 235200000.serial: ttySAC0 at MMIO 0x235200000 (irq = 37, base_baud = 0) is a APPLE S5L\n[    3.024724] 235208000.serial: ttySAC2 at MMIO 0x235208000 (irq = 38, base_baud = 0) is a APPLE S5L\n[    3.027314] apple-dart 382f00000.iommu: DART [pagesize 4000, bypass support: 1, bypass forced: 0] initialized\n[    3.029765] apple-dart 382f80000.iommu: DART [pagesize 4000, bypass support: 1, bypass forced: 0] initialized\n[    3.032192] apple-dart 502f00000.iommu: DART [pagesize 4000, bypass support: 1, bypass forced: 0] initialized\n[    3.034777] apple-dart 502f80000.iommu: DART [pagesize 4000, bypass support: 1, bypass forced: 0] initialized\n[    3.037050] cacheinfo: Unable to detect cache hierarchy for CPU 0\n[    3.040164] loop: module loaded\n[    3.055125] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.\n[    3.057348] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    3.059662] libphy: Fixed MDIO Bus: probed\n[    3.061866] tun: Universal TUN/TAP device driver, 1.6\n[    3.064187] CAN device driver interface\n[    3.066406] usbcore: registered new interface driver rtl8150\n[    3.068878] usbcore: registered new interface driver r8152\n[    3.070986] usbcore: registered new interface driver lan78xx\n[    3.073171] usbcore: registered new interface driver asix\n[    3.075202] usbcore: registered new interface driver ax88179_178a\n[    3.077232] usbcore: registered new interface driver cdc_ether\n[    3.079279] usbcore: registered new interface driver dm9601\n[    3.081304] usbcore: registered new interface driver CoreChips\n[    3.083269] usbcore: registered new interface driver smsc75xx\n[    3.085226] usbcore: registered new interface driver smsc95xx\n[    3.087145] usbcore: registered new interface driver net1080\n[    3.089063] usbcore: registered new interface driver plusb\n[    3.090941] usbcore: registered new interface driver cdc_subset\n[    3.092759] usbcore: registered new interface driver MOSCHIP usb-ethernet driver\n[    3.094676] usbcore: registered new interface driver ipheth\n[    3.096463] usbcore: registered new interface driver cdc_ncm\n[    3.098304] dwc3 382280000.usb: Adding to iommu group 0\n[    3.133033] dwc3 502280000.usb: Adding to iommu group 1\n[    3.173109] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    3.174825] ehci-pci: EHCI PCI platform driver\n[    3.176523] ehci-platform: EHCI generic platform driver\n[    3.178271] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller\n[    3.180018] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1\n[    3.181857] xhci-hcd xhci-hcd.0.auto: hcc params 0x0238ffcd hci version 0x110 quirks 0x0000000000010010\n[    3.183667] xhci-hcd xhci-hcd.0.auto: irq 40, io mem 0x382280000\n[    3.185603] hub 1-0:1.0: USB hub found\n[    3.187576] hub 1-0:1.0: 1 port detected\n[    3.189392] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller\n[    3.191195] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2\n[    3.192986] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.1 Enhanced SuperSpeed\n[    3.194768] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.\n[    3.196681] hub 2-0:1.0: USB hub found\n[    3.198451] hub 2-0:1.0: 1 port detected\n[    3.200236] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller\n[    3.201960] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 3\n[    3.203825] xhci-hcd xhci-hcd.1.auto: hcc params 0x0238ffcd hci version 0x110 quirks 0x0000000000010010\n[    3.205577] xhci-hcd xhci-hcd.1.auto: irq 42, io mem 0x502280000\n[    3.207534] hub 3-0:1.0: USB hub found\n[    3.209322] hub 3-0:1.0: 1 port detected\n[    3.211166] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller\n[    3.213010] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 4\n[    3.214799] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.1 Enhanced SuperSpeed\n[    3.216626] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.\n[    3.218466] hub 4-0:1.0: USB hub found\n[    3.220173] hub 4-0:1.0: 1 port detected\n[    3.221928] usbcore: registered new interface driver cdc_acm\n[    3.223664] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters\n[    3.225515] usbcore: registered new interface driver uas\n[    3.227329] usbcore: registered new interface driver usb-storage\n[    3.229155] usbcore: registered new interface driver cp210x\n[    3.230970] usbserial: USB Serial support registered for cp210x\n[    3.232844] usbcore: registered new interface driver ftdi_sio\n[    3.234735] usbserial: USB Serial support registered for FTDI USB Serial Device\n[    3.236689] usbcore: registered new interface driver option\n[    3.238645] usbserial: USB Serial support registered for GSM modem (1-port)\n[    3.240712] udc-core: couldn't find an available UDC - added [g_serial] to list of pending drivers\n[    3.242811] udc-core: couldn't find an available UDC - added [g_cdc] to list of pending drivers\n[    3.245048] i2c_dev: i2c /dev entries driver\n[    3.247200] usbcore: registered new interface driver uvcvideo\n[    3.249377] gspca_main: v2.14.0 registered\n[    3.251752] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com\n[    3.254046] Bluetooth: HCI UART driver ver 2.3\n[    3.256337] Bluetooth: HCI UART protocol H4 registered\n[    3.258641] Bluetooth: HCI UART protocol LL registered\n[    3.260935] Bluetooth: HCI UART protocol QCA registered\n[    3.263189] usbcore: registered new interface driver btusb\n[    3.265677] usbcore: registered new interface driver usbhid\n[    3.267889] usbhid: USB HID core driver\n[    3.270124] apple-mcc 200200000.memory-controller: MCC performance driver initialized\n[    3.272698] GACT probability NOT on\n[    3.274946] Mirror/redirect action on\n[    3.277658] NET: Registered PF_INET6 protocol family\n[    3.280003] Segment Routing with IPv6\n[    3.282212] In-situ OAM (IOAM) with IPv6\n[    3.284427] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    3.286772] NET: Registered PF_PACKET protocol family\n[    3.289005] can: controller area network core\n[    3.291192] NET: Registered PF_CAN protocol family\n[    3.293422] can: raw protocol\n[    3.295569] can: broadcast manager protocol\n[    3.297707] can: netlink gateway - max_hops=1\n[    3.299846] Bluetooth: HIDP (Human Interface Emulation) ver 1.2\n[    3.301978] Bluetooth: HIDP socket layer initialized\n[    3.304082] 8021q: 802.1Q VLAN Support v1.8\n[    3.306180] 9pnet: Installing 9P2000 support\n[    3.308289] Key type dns_resolver registered\n[    3.310437] registered taskstats version 1\n[    3.312507] Loading compiled-in X.509 certificates\n[    3.314754] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=no\n[    3.317077] apple-cluster-clk 211e20000.clock-controller: Initializing cluster (DVMR: 1)\n[    3.319486] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    3.321667] apple-pmgr-pwrstate 23b700000.power-management:power-controller@418: PS 0x418: pwrstate = 0x0: 0xf0000f0\n[    3.321673] apple-pmgr-pwrstate 23b700000.power-management:power-controller@348: PS 0x348: pwrstate = 0x0: 0xf0\n[    3.321678] apple-pmgr-pwrstate 23b700000.power-management:power-controller@288: PS 0x288: pwrstate = 0x0: 0xf0\n[    3.321682] apple-pmgr-pwrstate 23b700000.power-management:power-controller@278: PS 0x278: pwrstate = 0x0: 0xf0\n[    3.321997] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    3.324145] ALSA device list:\n[    3.326231]   No soundcards found.\n[    3.328368] Freeing unused kernel memory: 1344K\n[    3.330468] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2\n[    3.332650] platform regulatory.0: Falling back to sysfs fallback for: regulatory.db\n[    3.353007] Run /init as init process\n[    3.355624]   with arguments:\n[    3.355625]     /init\n[    3.355626]   with environment:\n[    3.355626]     HOME=/\n[    3.355627]     TERM=linux\n[    3.492980] usb 3-1: new high-speed USB device number 2 using xhci-hcd\n[    3.674333] usb-storage 3-1:1.0: USB Mass Storage device detected\n[    3.677837] scsi host0: usb-storage 3-1:1.0\n[    4.714080] scsi 0:0:0:0: Direct-Access     SanDisk  Ultra Fit        1.00 PQ: 0 ANSI: 6\n[    4.722069] sd 0:0:0:0: [sda] 242614272 512-byte logical blocks: (124 GB/116 GiB)\n[    4.726531] sd 0:0:0:0: [sda] Write Protect is off\n[    4.729857] sd 0:0:0:0: [sda] Mode Sense: 43 00 00 00\n[    4.730193] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA\n[    4.800684]  sda: sda1\n[    4.809372] sd 0:0:0:0: [sda] Attached SCSI removable disk\n[   64.473036] cfg80211: failed to load regulatory.db\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-single-pcore/post_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       \n 35:      68358        274        274        274        274   AIC-FIQ 896 Level     arch_timer\n 39:          0          0          0          0          0       AIC 781 Level     apple-dart fault handler, apple-dart fault handler\n 40:          0          0          0          0          0       AIC 777 Level     xhci-hcd:usb1\n 41:          0          0          0          0          0       AIC 861 Level     apple-dart fault handler, apple-dart fault handler\n 42:        138          0          0          0          0       AIC 857 Level     xhci-hcd:usb3\nIPI0:        97         15         10         10         27       Rescheduling interrupts\nIPI1:         3          0          0          0          4       Function call interrupts\nIPI2:         0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0       Timer broadcast interrupts\nIPI5:        23          3          2          2          4       IRQ work interrupts\nIPI6:         0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-single-pcore/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       \n 35:        740        274        274        274        274   AIC-FIQ 896 Level     arch_timer\n 39:          0          0          0          0          0       AIC 781 Level     apple-dart fault handler, apple-dart fault handler\n 40:          0          0          0          0          0       AIC 777 Level     xhci-hcd:usb1\n 41:          0          0          0          0          0       AIC 861 Level     apple-dart fault handler, apple-dart fault handler\n 42:        138          0          0          0          0       AIC 857 Level     xhci-hcd:usb3\nIPI0:        27         10         10         10         10       Rescheduling interrupts\nIPI1:         0          0          0          0          2       Function call interrupts\nIPI2:         0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0       Timer broadcast interrupts\nIPI5:        19          3          2          2          4       IRQ work interrupts\nIPI6:         0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-single-pcore/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:03 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    6 root      0:00 [kworker/0:0H-ev]\n    7 root      0:00 [kworker/u10:0-e]\n    8 root      0:00 [mm_percpu_wq]\n    9 root      0:00 [rcu_tasks_kthre]\n   10 root      0:00 [ksoftirqd/0]\n   11 root      0:00 [rcu_preempt]\n   12 root      0:00 [rcuog/0]\n   13 root      0:00 [rcuop/0]\n   14 root      0:00 [migration/0]\n   15 root      0:00 [cpuhp/0]\n   16 root      0:00 [cpuhp/1]\n   17 root      0:00 [migration/1]\n   18 root      0:00 [ksoftirqd/1]\n   19 root      0:00 [kworker/1:0-eve]\n   20 root      0:00 [kworker/1:0H]\n   21 root      0:00 [rcuop/1]\n   22 root      0:00 [cpuhp/2]\n   23 root      0:00 [migration/2]\n   24 root      0:00 [ksoftirqd/2]\n   25 root      0:00 [kworker/2:0-mm_]\n   26 root      0:00 [kworker/2:0H]\n   27 root      0:00 [rcuog/2]\n   28 root      0:00 [rcuop/2]\n   29 root      0:00 [cpuhp/3]\n   30 root      0:00 [migration/3]\n   31 root      0:00 [ksoftirqd/3]\n   32 root      0:00 [kworker/3:0-mm_]\n   33 root      0:00 [kworker/3:0H]\n   34 root      0:00 [rcuop/3]\n   35 root      0:00 [cpuhp/4]\n   36 root      0:00 [migration/4]\n   37 root      0:00 [ksoftirqd/4]\n   38 root      0:00 [kworker/4:0-mm_]\n   39 root      0:00 [kworker/4:0H]\n   40 root      0:00 [rcuog/4]\n   41 root      0:00 [rcuop/4]\n   42 root      0:00 [kdevtmpfs]\n   43 root      0:00 [netns]\n   44 root      0:00 [inet_frag_wq]\n   46 root      0:00 [oom_reaper]\n   47 root      0:00 [writeback]\n   48 root      0:00 [kcompactd0]\n   49 root      0:00 [khugepaged]\n   71 root      0:00 [cryptd]\n   93 root      0:00 [kblockd]\n   94 root      0:00 [blkcg_punt_bio]\n   96 root      0:00 [md]\n   97 root      0:00 [kworker/1:1-eve]\n   98 root      0:00 [kworker/0:1H-kb]\n   99 root      0:00 [rpciod]\n  100 root      0:00 [kworker/u11:0]\n  101 root      0:00 [xprtiod]\n  102 root      0:00 [cfg80211]\n  103 root      0:00 [kworker/u10:2-e]\n  173 root      0:00 [kswapd0]\n  174 root      0:00 [nfsiod]\n  187 root      0:00 [kpcitest]\n  330 root      0:00 [nvme-wq]\n  332 root      0:00 [nvme-reset-wq]\n  334 root      0:00 [nvme-delete-wq]\n  378 root      0:00 [kworker/2:1]\n  379 root      0:00 [kworker/3:1]\n  380 root      0:00 [kworker/4:1-eve]\n  423 root      0:00 [uas]\n  474 root      0:00 [mld]\n  475 root      0:00 [ipv6_addrconf]\n  477 root      0:00 [kworker/0:2-eve]\n  480 root      0:00 [dsa_ordered]\n  489 root      0:00 [kworker/0:3-eve]\n  500 root      0:00 [scsi_eh_0]\n  502 root      0:00 [scsi_tmf_0]\n  504 root      0:00 [usb-storage]\n  510 root      0:00 [kworker/u10:3-e]\n  601 root      0:00 ps -A\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-single-pcore/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,600000,4532.856736,7.554761226666666,0.0,0.0,0,77.21610387\r\n1,972000,7382.875947,7.5955513858024695,0.0,0.0,0,47.408984939\r\n1,1332000,10104.801224,7.586187105105106,0.0,0.0,0,34.638071975\r\n1,1704000,12928.964575,7.587420525234742,0.0,0.0,0,27.072955763\r\n1,2064000,15583.259127,7.550028646802326,0.0,0.0,0,22.460343136\r\n4,600000,6545.848997,10.909748328333334,0.0,0.0,0,53.472139609\r\n4,828000,9025.038034,10.899804388888889,0.0,0.0,0,38.78278006\r\n4,1056000,11512.779185,10.902253016098484,0.0,0.0,0,30.40300889\r\n4,1284000,14002.80056,10.905607912772586,0.0,0.0,0,24.99610022\r\n4,1500000,16373.502994,10.915668662666667,0.0,0.0,0,21.378293385\r\n4,1728000,18831.378457,10.897788458912036,0.0,0.0,0,18.5881003\r\n4,1956000,21321.96162,10.900798374233128,0.0,0.0,0,16.417326674\r\n4,2184000,23798.191337,10.89660775503663,0.0,0.0,0,14.70852484\r\n4,2388000,26037.791995,10.903597987855946,0.0,0.0,0,13.443932965\r\n4,2592000,28282.828283,10.911584985725309,0.0,0.0,0,12.377647547\r\n4,2772000,30250.648228,10.912932261183261,0.0,0.0,0,11.571696963\r\n4,2988000,32597.55984,10.90949124497992,0.0,0.0,0,10.73890563\r\n4,3096000,33790.307009,10.914181850452195,0.0,0.0,0,10.360802005\r\n4,3144000,34330.554193,10.919387465966922,0.0,0.0,0,10.197484964\r\n4,3204000,34923.169028,10.899865489388263,0.0,0.0,0,10.024071255\r\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-single-pcore/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 675.5006879470001, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}, \"cpus\": {\"1\": {\"freqs\": {\"600000\": {\"active\": {\"elapsed_sec\": 77.21610387, \"elapsed_ns\": 77216103870, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 4532.856736, \"coremarks_per_mhz\": 7.554761226666666, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"972000\": {\"active\": {\"elapsed_sec\": 47.408984939, \"elapsed_ns\": 47408984939, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 7382.875947, \"coremarks_per_mhz\": 7.5955513858024695, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1332000\": {\"active\": {\"elapsed_sec\": 34.638071975, \"elapsed_ns\": 34638071975, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 10104.801224, \"coremarks_per_mhz\": 7.586187105105106, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1704000\": {\"active\": {\"elapsed_sec\": 27.072955763, \"elapsed_ns\": 27072955763, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 12928.964575, \"coremarks_per_mhz\": 7.587420525234742, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2064000\": {\"active\": {\"elapsed_sec\": 22.460343136, \"elapsed_ns\": 22460343136, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 15583.259127, \"coremarks_per_mhz\": 7.550028646802326, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}}}, \"4\": {\"freqs\": {\"600000\": {\"active\": {\"elapsed_sec\": 53.472139609, \"elapsed_ns\": 53472139609, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 6545.848997, \"coremarks_per_mhz\": 10.909748328333334, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"828000\": {\"active\": {\"elapsed_sec\": 38.78278006, \"elapsed_ns\": 38782780060, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 9025.038034, \"coremarks_per_mhz\": 10.899804388888889, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1056000\": {\"active\": {\"elapsed_sec\": 30.40300889, \"elapsed_ns\": 30403008890, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 11512.779185, \"coremarks_per_mhz\": 10.902253016098484, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1284000\": {\"active\": {\"elapsed_sec\": 24.99610022, \"elapsed_ns\": 24996100220, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 14002.80056, \"coremarks_per_mhz\": 10.905607912772586, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1500000\": {\"active\": {\"elapsed_sec\": 21.378293385, \"elapsed_ns\": 21378293385, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 16373.502994, \"coremarks_per_mhz\": 10.915668662666667, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1728000\": {\"active\": {\"elapsed_sec\": 18.5881003, \"elapsed_ns\": 18588100300, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 18831.378457, \"coremarks_per_mhz\": 10.897788458912036, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1956000\": {\"active\": {\"elapsed_sec\": 16.417326674, \"elapsed_ns\": 16417326674, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 21321.96162, \"coremarks_per_mhz\": 10.900798374233128, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2184000\": {\"active\": {\"elapsed_sec\": 14.70852484, \"elapsed_ns\": 14708524840, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 23798.191337, \"coremarks_per_mhz\": 10.89660775503663, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2388000\": {\"active\": {\"elapsed_sec\": 13.443932965, \"elapsed_ns\": 13443932965, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 26037.791995, \"coremarks_per_mhz\": 10.903597987855946, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2592000\": {\"active\": {\"elapsed_sec\": 12.377647547, \"elapsed_ns\": 12377647547, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 28282.828283, \"coremarks_per_mhz\": 10.911584985725309, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2772000\": {\"active\": {\"elapsed_sec\": 11.571696963, \"elapsed_ns\": 11571696963, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 30250.648228, \"coremarks_per_mhz\": 10.912932261183261, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2988000\": {\"active\": {\"elapsed_sec\": 10.73890563, \"elapsed_ns\": 10738905630, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 32597.55984, \"coremarks_per_mhz\": 10.90949124497992, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"3096000\": {\"active\": {\"elapsed_sec\": 10.360802005, \"elapsed_ns\": 10360802005, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 33790.307009, \"coremarks_per_mhz\": 10.914181850452195, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"3144000\": {\"active\": {\"elapsed_sec\": 10.197484964, \"elapsed_ns\": 10197484964, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 34330.554193, \"coremarks_per_mhz\": 10.919387465966922, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"3204000\": {\"active\": {\"elapsed_sec\": 10.024071255, \"elapsed_ns\": 10024071255, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 34923.169028, \"coremarks_per_mhz\": 10.899865489388263, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 5}}"
  },
  {
    "path": "results/t8103/asahi-cpufreq-single-pcore/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 \nSampling power every 1000 ms\nBaseline power usage: 0 mW\n\n\n===== CPU 1 =====\nFrequencies: 600 972 1332 1704 2064\n\n 600:  4533     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    77.2 s\n 972:  7383     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    47.4 s\n1332: 10105     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    34.6 s\n1704: 12929     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    27.1 s\n2064: 15583     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    22.5 s\n\n\n===== CPU 4 =====\nFrequencies: 600 828 1056 1284 1500 1728 1956 2184 2388 2592 2772 2988 3096 3144 3204\n\n 600:  6546     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    53.5 s\n 828:  9025     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    38.8 s\n1056: 11513     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    30.4 s\n1284: 14003     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    25.0 s\n1500: 16374     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    21.4 s\n1728: 18831     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    18.6 s\n1956: 21322     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    16.4 s\n2184: 23798     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    14.7 s\n2388: 26038     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    13.4 s\n2592: 28283     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    12.4 s\n2772: 30251     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    11.6 s\n2988: 32598     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    10.7 s\n3096: 33790     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    10.4 s\n3144: 34331     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    10.2 s\n3204: 34923     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    10.0 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-single-pcore/uptime.txt",
    "content": " 00:11:23 up 11 min,  load average: 0.58, 0.63, 0.41\n"
  },
  {
    "path": "results/t8103/asahi-cpufreq-single-pcore/versions.txt",
    "content": "Kernel: Linux version 5.15.0-rc2-12215-g83b4bfbb1569-dirty (kdrag0n@pinwheel) (aarch64-linux-gnu-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37) #22 SMP PREEMPT Sat Oct 2 23:13:12 PDT 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq/cmdline.txt",
    "content": "earlycon console=tty0 rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq/cpufreq_stats/0/time_in_state",
    "content": "600003 51634\n972012 5557\n1332005 4295\n1704004 3535\n2064060 3092\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq/cpufreq_stats/0/total_trans",
    "content": "59\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    600003    972012   1332005   1704004   2064060 \n   600003:         0         5         0         5         3 \n   972012:         7         0         3         1         2 \n  1332005:         1         5         0         3         0 \n  1704004:         3         1         4         0         6 \n  2064060:         2         1         2         5         0 \n"
  },
  {
    "path": "results/t8103/corellium-cpufreq/cpufreq_stats/4/time_in_state",
    "content": "600003 32207\n828007 4684\n1056010 3849\n1284012 3307\n1500022 2951\n1728042 2667\n1956006 2452\n2184023 2280\n2388077 2154\n2592097 2049\n2772015 1969\n2988008 1884\n3096140 1884\n3144118 1885\n3204067 1885\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq/cpufreq_stats/4/total_trans",
    "content": "16\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq/cpufreq_stats/4/trans_table",
    "content": "   From  :    To\n         :    600003    828007   1056010   1284012   1500022   1728042   1956006   2184023   2388077   2592097   2772015   2988008   3096140   3144118   3204067 \n   600003:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   828007:         1         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1056010:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1284012:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1500022:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1728042:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1956006:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  2184023:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  2388077:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  2592097:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  2772015:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2988008:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  3096140:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  3144118:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  3204067:         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/t8103/corellium-cpufreq/cpuinfo.txt",
    "content": "processor\t: 0\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x022\nCPU revision\t: 1\n\nprocessor\t: 1\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x022\nCPU revision\t: 1\n\nprocessor\t: 2\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x022\nCPU revision\t: 1\n\nprocessor\t: 3\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x022\nCPU revision\t: 1\n\nprocessor\t: 4\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x023\nCPU revision\t: 1\n\nprocessor\t: 5\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x023\nCPU revision\t: 1\n\nprocessor\t: 6\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x023\nCPU revision\t: 1\n\nprocessor\t: 7\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x023\nCPU revision\t: 1\n\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq/device.txt",
    "content": "Model: Apple MacBook Air (M1, 2020);\nCompatible: apple,j274;apple,t8103;apple,arm-platform;\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x611f0221]\n[    0.000000] Linux version 5.15.0-rc2-12257-g9f0d1172e0ee-dirty (kdrag0n@pinwheel) (aarch64-linux-gnu-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37) #16 SMP PREEMPT Sun Sep 26 02:44:16 PDT 2021\n[    0.000000] Machine model: Apple MacBook Air (M1, 2020)\n[    0.000000] earlycon: s5l0 at MMIO32 0x0000000235200000 (options '')\n[    0.000000] printk: bootconsole [s5l0] enabled\n[    0.000000] Zone ranges:\n[    0.000000]   DMA      [mem 0x0000000801f44000-0x00000009d954bfff]\n[    0.000000]   DMA32    empty\n[    0.000000]   Normal   empty\n[    0.000000] Movable zone start for each node\n[    0.000000] Early memory node ranges\n[    0.000000]   node   0: [mem 0x0000000801f44000-0x00000009d954bfff]\n[    0.000000] Initmem setup node 0 [mem 0x0000000801f44000-0x00000009d954bfff]\n[    0.000000] On node 0, zone DMA: 685 pages in unavailable ranges\n[    0.000000] percpu: Embedded 4 pages/cpu s34200 r0 d31336 u65536\n[    0.000000] pcpu-alloc: s34200 r0 d31336 u65536 alloc=4*16384\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: detected: Address authentication (IMP DEF algorithm)\n[    0.000000] CPU features: detected: Virtualization Host Extensions\n[    0.000000] CPU features: detected: Spectre-v4\n[    0.000000] alternatives: patching kernel code\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 480804\n[    0.000000] Kernel command line: earlycon console=tty0 rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 9, 8388608 bytes, linear)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 8, 4194304 bytes, linear)\n[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off\n[    0.000000] Memory: 7640816K/7723040K available (13056K kernel code, 1094K rwdata, 2960K rodata, 1280K init, 435K bss, 82224K reserved, 0K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tTrampoline variant of Tasks RCU enabled.\n[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] Root IRQ handler: aic_handle_irq\n[    0.000000] Root FIQ handler: aic_handle_fiq\n[    0.000000] irq_apple_aic: Initialized with 896 IRQs, 4 FIQs, 32 vIPIs\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] random: get_random_bytes called from start_kernel+0x474/0x654 with crng_init=0\n[    0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns\n[    0.000000] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns\n[    0.008063] Console: colour dummy device 80x25\n[    0.012471] printk: console [tty0] enabled\n[    0.016569] printk: bootconsole [s5l0] disabled\n[    0.021113] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000)\n[    0.021118] pid_max: default: 32768 minimum: 301\n[    0.021134] LSM: Security Framework initializing\n[    0.021148] Mount-cache hash table entries: 16384 (order: 3, 131072 bytes, linear)\n[    0.021153] Mountpoint-cache hash table entries: 16384 (order: 3, 131072 bytes, linear)\n[    0.021437] rcu: Hierarchical SRCU implementation.\n[    0.021524] smp: Bringing up secondary CPUs ...\n[    0.021588] Detected VIPT I-cache on CPU1\n[    0.021599] CPU1: Booted secondary processor 0x0000000001 [0x611f0221]\n[    0.021683] Detected VIPT I-cache on CPU2\n[    0.021691] CPU2: Booted secondary processor 0x0000000002 [0x611f0221]\n[    0.021766] Detected VIPT I-cache on CPU3\n[    0.021774] CPU3: Booted secondary processor 0x0000000003 [0x611f0221]\n[    0.021869] Detected VIPT I-cache on CPU4\n[    0.021896] CPU4: Booted secondary processor 0x0000010100 [0x611f0231]\n[    0.022025] Detected VIPT I-cache on CPU5\n[    0.022046] CPU5: Booted secondary processor 0x0000010101 [0x611f0231]\n[    0.022165] Detected VIPT I-cache on CPU6\n[    0.022186] CPU6: Booted secondary processor 0x0000010102 [0x611f0231]\n[    0.022308] Detected VIPT I-cache on CPU7\n[    0.022328] CPU7: Booted secondary processor 0x0000010103 [0x611f0231]\n[    0.022382] smp: Brought up 1 node, 8 CPUs\n[    0.022401] SMP: Total of 8 processors activated.\n[    0.022404] CPU features: detected: ARMv8.4 Translation Table Level\n[    0.022407] CPU features: detected: Data cache clean to the PoU not required for I/D coherence\n[    0.022410] CPU features: detected: Common not Private translations\n[    0.022412] CPU features: detected: CRC32 instructions\n[    0.022414] CPU features: detected: E0PD\n[    0.022416] CPU features: detected: Generic authentication (IMP DEF algorithm)\n[    0.022418] CPU features: detected: RCpc load-acquire (LDAPR)\n[    0.022420] CPU features: detected: LSE atomic instructions\n[    0.022422] CPU features: detected: Privileged Access Never\n[    0.022424] CPU features: detected: RAS Extension Support\n[    0.022426] CPU features: detected: Speculation barrier (SB)\n[    0.022428] CPU features: detected: Stage-2 Force Write-Back\n[    0.022430] CPU features: detected: TLB range maintenance instructions\n[    0.022432] CPU features: detected: Speculative Store Bypassing Safe (SSBS)\n[    0.040783] CPU: All CPU(s) started at EL2\n[    0.041137] devtmpfs: initialized\n[    0.041456] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.041463] futex hash table entries: 2048 (order: 3, 131072 bytes, linear)\n[    0.041487] pinctrl core: initialized pinctrl subsystem\n[    0.041551] NET: Registered PF_NETLINK/PF_ROUTE protocol family\n[    0.041754] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations\n[    0.041773] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations\n[    0.041790] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations\n[    0.041850] thermal_sys: Registered thermal governor 'step_wise'\n[    0.041851] thermal_sys: Registered thermal governor 'user_space'\n[    0.041874] cpuidle: using governor ladder\n[    0.041879] cpuidle: using governor menu\n[    0.041884] NET: Registered PF_QIPCRTR protocol family\n[    0.041908] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.041998] ASID allocator initialised with 256 entries\n[    0.042004] Serial: AMBA PL011 UART driver\n[    0.043962] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages\n[    0.043966] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages\n[    0.043969] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages\n[    0.044261] cryptd: max_cpu_qlen set to 1000\n[    0.211154] raid6: neonx8   gen() 10131 MB/s\n[    0.381179] raid6: neonx8   xor()  8541 MB/s\n[    0.551202] raid6: neonx4   gen() 10123 MB/s\n[    0.721211] raid6: neonx4   xor()  8810 MB/s\n[    0.891236] raid6: neonx2   gen()  9970 MB/s\n[    1.061270] raid6: neonx2   xor()  8539 MB/s\n[    1.231289] raid6: neonx1   gen()  8487 MB/s\n[    1.401300] raid6: neonx1   xor()  7098 MB/s\n[    1.571331] raid6: int64x8  gen()  4158 MB/s\n[    1.741351] raid6: int64x8  xor()  2384 MB/s\n[    1.911368] raid6: int64x4  gen()  4304 MB/s\n[    2.081413] raid6: int64x4  xor()  2570 MB/s\n[    2.251428] raid6: int64x2  gen()  3772 MB/s\n[    2.421437] raid6: int64x2  xor()  2188 MB/s\n[    2.591478] raid6: int64x1  gen()  2933 MB/s\n[    2.761486] raid6: int64x1  xor()  1670 MB/s\n[    2.761488] raid6: using algorithm neonx8 gen() 10131 MB/s\n[    2.761490] raid6: .... xor() 8541 MB/s, rmw enabled\n[    2.761492] raid6: using neon recovery algorithm\n[    2.761511] iommu: Default domain type: Translated \n[    2.761513] iommu: DMA domain TLB invalidation policy: strict mode \n[    2.761534] vgaarb: loaded\n[    2.761572] SCSI subsystem initialized\n[    2.761595] usbcore: registered new interface driver usbfs\n[    2.761601] usbcore: registered new interface driver hub\n[    2.761608] usbcore: registered new device driver usb\n[    2.761633] mc: Linux media interface: v0.10\n[    2.761638] videodev: Linux video capture interface: v2.00\n[    2.761675] Advanced Linux Sound Architecture Driver Initialized.\n[    2.761771] Bluetooth: Core ver 2.22\n[    2.761775] NET: Registered PF_BLUETOOTH protocol family\n[    2.761777] Bluetooth: HCI device and connection manager initialized\n[    2.761781] Bluetooth: HCI socket layer initialized\n[    2.761783] Bluetooth: L2CAP socket layer initialized\n[    2.761786] Bluetooth: SCO socket layer initialized\n[    2.761806] nfc: nfc_init: NFC Core ver 0.1\n[    2.761816] NET: Registered PF_NFC protocol family\n[    2.761865] clocksource: Switched to clocksource arch_sys_counter\n[    2.761895] VFS: Disk quotas dquot_6.6.0\n[    2.761906] VFS: Dquot-cache hash table entries: 2048 (order 0, 16384 bytes)\n[    2.761999] simple-framebuffer 9df4ec000.framebuffer: framebuffer at 0x9df4ec000, 0xfa0000 bytes\n[    2.762003] simple-framebuffer 9df4ec000.framebuffer: format=x2r10g10b10, mode=2560x1600x32, linelength=10240\n[    2.769528] Console: switching to colour frame buffer device 160x50\n[    2.776734] simple-framebuffer 9df4ec000.framebuffer: fb0: simplefb registered!\n[    2.777488] NET: Registered PF_INET protocol family\n[    2.777571] IP idents hash table entries: 131072 (order: 6, 1048576 bytes, linear)\n[    2.779147] tcp_listen_portaddr_hash hash table entries: 4096 (order: 2, 65536 bytes, linear)\n[    2.779251] TCP established hash table entries: 65536 (order: 5, 524288 bytes, linear)\n[    2.779404] TCP bind hash table entries: 65536 (order: 6, 1048576 bytes, linear)\n[    2.779578] TCP: Hash tables configured (established 65536 bind 65536)\n[    2.779664] UDP hash table entries: 4096 (order: 3, 131072 bytes, linear)\n[    2.779756] UDP-Lite hash table entries: 4096 (order: 3, 131072 bytes, linear)\n[    2.779874] NET: Registered PF_UNIX/PF_LOCAL protocol family\n[    2.779994] RPC: Registered named UNIX socket transport module.\n[    2.780060] RPC: Registered udp transport module.\n[    2.780113] RPC: Registered tcp transport module.\n[    2.780165] RPC: Registered tcp NFSv4.1 backchannel transport module.\n[    2.780336] PCI: CLS 0 bytes, default 64\n[    2.780434] Unpacking initramfs...\n[    2.958442] Freeing initrd memory: 13280K\n[    2.959106] Initialise system trusted keyrings\n[    2.959408] workingset: timestamp_bits=46 max_order=19 bucket_order=0\n[    2.960455] squashfs: version 4.0 (2009/01/31) Phillip Lougher\n[    2.960731] NFS: Registering the id_resolver key type\n[    2.960790] Key type id_resolver registered\n[    2.963102] Key type id_legacy registered\n[    2.965368] nfs4filelayout_init: NFSv4 File Layout Driver Registering...\n[    2.967686] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...\n[    2.970067] fuse: init (API version 7.34)\n[    2.972537] 9p: Installing v9fs 9p2000 file system support\n[    2.988004] NET: Registered PF_ALG protocol family\n[    2.990411] xor: measuring software checksum speed\n[    2.993735]    8regs           : 11182 MB/sec\n[    2.996812]    32regs          : 14262 MB/sec\n[    2.999712]    arm64_neon      : 17796 MB/sec\n[    3.002041] xor: using function: arm64_neon (17796 MB/sec)\n[    3.004373] Key type asymmetric registered\n[    3.006694] Asymmetric key parser 'x509' registered\n[    3.009051] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)\n[    3.011457] io scheduler mq-deadline registered\n[    3.013869] io scheduler kyber registered\n[    3.017232] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled\n[    3.019981] clk-gate: 0x1c0 -> 1\n[    3.022371] clk-gate: 0x220 -> 1\n[    3.024707] clk-gate: 0x270 -> 1\n[    3.027932] 235200000.serial: ttySAC0 at MMIO 0x235200000 (irq = 37, base_baud = 0) is a APPLE S5L\n[    3.030342] clk-gate: 0x270 -> 0\n[    3.032636] clk-gate: 0x220 -> 0\n[    3.034860] clk-gate: 0x1c0 -> 0\n[    3.037247] apple-dart 382f00000.iommu: DART [pagesize 4000, bypass support: 1, bypass forced: 0] initialized\n[    3.039574] apple-dart 382f80000.iommu: DART [pagesize 4000, bypass support: 1, bypass forced: 0] initialized\n[    3.041842] apple-dart 502f00000.iommu: DART [pagesize 4000, bypass support: 1, bypass forced: 0] initialized\n[    3.044068] apple-dart 502f80000.iommu: DART [pagesize 4000, bypass support: 1, bypass forced: 0] initialized\n[    3.046429] cacheinfo: Unable to detect cache hierarchy for CPU 0\n[    3.049040] loop: module loaded\n[    3.063646] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.\n[    3.065720] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    3.067906] libphy: Fixed MDIO Bus: probed\n[    3.069997] tun: Universal TUN/TAP device driver, 1.6\n[    3.072191] CAN device driver interface\n[    3.074304] usbcore: registered new interface driver rtl8150\n[    3.076393] usbcore: registered new interface driver r8152\n[    3.078497] usbcore: registered new interface driver lan78xx\n[    3.080925] usbcore: registered new interface driver asix\n[    3.083010] usbcore: registered new interface driver ax88179_178a\n[    3.085025] usbcore: registered new interface driver cdc_ether\n[    3.087020] usbcore: registered new interface driver dm9601\n[    3.088989] usbcore: registered new interface driver CoreChips\n[    3.090919] usbcore: registered new interface driver smsc75xx\n[    3.092847] usbcore: registered new interface driver smsc95xx\n[    3.094714] usbcore: registered new interface driver net1080\n[    3.096530] usbcore: registered new interface driver plusb\n[    3.098359] usbcore: registered new interface driver cdc_subset\n[    3.100125] usbcore: registered new interface driver MOSCHIP usb-ethernet driver\n[    3.101968] usbcore: registered new interface driver ipheth\n[    3.103662] usbcore: registered new interface driver cdc_ncm\n[    3.105377] dwc3 382280000.usb: Adding to iommu group 0\n[    3.141911] dwc3 502280000.usb: Adding to iommu group 1\n[    3.181974] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    3.183623] ehci-pci: EHCI PCI platform driver\n[    3.185288] ehci-platform: EHCI generic platform driver\n[    3.187024] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller\n[    3.188756] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1\n[    3.190578] xhci-hcd xhci-hcd.0.auto: hcc params 0x0238ffcd hci version 0x110 quirks 0x0000000000010010\n[    3.192347] xhci-hcd xhci-hcd.0.auto: irq 54, io mem 0x382280000\n[    3.194172] hub 1-0:1.0: USB hub found\n[    3.195857] hub 1-0:1.0: 1 port detected\n[    3.197591] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller\n[    3.199295] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2\n[    3.200993] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.1 Enhanced SuperSpeed\n[    3.202971] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.\n[    3.204857] hub 2-0:1.0: USB hub found\n[    3.206616] hub 2-0:1.0: 1 port detected\n[    3.208386] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller\n[    3.210162] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 3\n[    3.212083] xhci-hcd xhci-hcd.1.auto: hcc params 0x0238ffcd hci version 0x110 quirks 0x0000000000010010\n[    3.213897] xhci-hcd xhci-hcd.1.auto: irq 56, io mem 0x502280000\n[    3.215894] hub 3-0:1.0: USB hub found\n[    3.217744] hub 3-0:1.0: 1 port detected\n[    3.219650] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller\n[    3.221503] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 4\n[    3.223394] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.1 Enhanced SuperSpeed\n[    3.225290] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.\n[    3.227191] hub 4-0:1.0: USB hub found\n[    3.228957] hub 4-0:1.0: 1 port detected\n[    3.230773] usbcore: registered new interface driver cdc_acm\n[    3.232564] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters\n[    3.234492] usbcore: registered new interface driver uas\n[    3.236357] usbcore: registered new interface driver usb-storage\n[    3.238238] usbcore: registered new interface driver cp210x\n[    3.240104] usbserial: USB Serial support registered for cp210x\n[    3.242059] usbcore: registered new interface driver ftdi_sio\n[    3.244034] usbserial: USB Serial support registered for FTDI USB Serial Device\n[    3.246071] usbcore: registered new interface driver option\n[    3.248095] usbserial: USB Serial support registered for GSM modem (1-port)\n[    3.250225] udc-core: couldn't find an available UDC - added [g_serial] to list of pending drivers\n[    3.252421] udc-core: couldn't find an available UDC - added [g_cdc] to list of pending drivers\n[    3.254703] i2c_dev: i2c /dev entries driver\n[    3.256930] usbcore: registered new interface driver uvcvideo\n[    3.259186] gspca_main: v2.14.0 registered\n[    3.261523] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com\n[    3.264055] Bluetooth: HCI UART driver ver 2.3\n[    3.266430] Bluetooth: HCI UART protocol H4 registered\n[    3.268793] Bluetooth: HCI UART protocol LL registered\n[    3.271154] Bluetooth: HCI UART protocol QCA registered\n[    3.273486] usbcore: registered new interface driver btusb\n[    3.276262] apple-m1-cpufreq 210e00000.cpufreq: registered cpufreq driver.\n[    3.278826] usbcore: registered new interface driver usbhid\n[    3.281185] usbhid: USB HID core driver\n[    3.283566] GACT probability NOT on\n[    3.285869] Mirror/redirect action on\n[    3.288661] NET: Registered PF_INET6 protocol family\n[    3.291388] Segment Routing with IPv6\n[    3.293685] In-situ OAM (IOAM) with IPv6\n[    3.295971] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    3.298377] NET: Registered PF_PACKET protocol family\n[    3.300726] can: controller area network core\n[    3.303033] NET: Registered PF_CAN protocol family\n[    3.305253] can: raw protocol\n[    3.307470] can: broadcast manager protocol\n[    3.309684] can: netlink gateway - max_hops=1\n[    3.311903] Bluetooth: HIDP (Human Interface Emulation) ver 1.2\n[    3.314110] Bluetooth: HIDP socket layer initialized\n[    3.316282] 8021q: 802.1Q VLAN Support v1.8\n[    3.318452] 9pnet: Installing 9P2000 support\n[    3.320636] Key type dns_resolver registered\n[    3.322887] registered taskstats version 1\n[    3.325032] Loading compiled-in X.509 certificates\n[    3.327313] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=no\n[    3.329514] clk-gate: 0x130 -> 1\n[    3.332404] clk-gate: 0x80 -> 1\n[    3.334627] clk-gate: 0x1c0 -> 1\n[    3.336689] clk-gate: 0x218 -> 1\n[    3.338683] clk-gate: 0x258 -> 1\n[    3.340625] keyboard@0 enforce active low on chipselect handle\n[    3.471946] input: Apple SPI Keyboard as /devices/platform/soc/23510c000.spi/spi_master/spi0/spi0.0/input/input0\n[    3.479506] spi-apple-mc 23510c000.spi: Apple SPI-MC at 24 MHz, 1 chip select GPIO.\n[    3.482229] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    3.484793] applespi spi0.0: Received corrupted packet (crc mismatch)\n[    3.487501] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    3.490863] ALSA device list:\n[    3.494558]   No soundcards found.\n[    3.497104] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2\n[    3.499954] Freeing unused kernel memory: 1280K\n[    3.502547] usb 3-1: new high-speed USB device number 2 using xhci-hcd\n[    3.505526] platform regulatory.0: Falling back to sysfs fallback for: regulatory.db\n[    3.508207] applespi spi0.0: Received corrupted packet (invalid message length 8 - num-fingers 0, tp-len 48)\n[    3.512284] applespi spi0.0: Received corrupted packet (invalid message length 8 - num-fingers 0, tp-len 48)\n[    3.515168] input: Apple SPI Touchpad as /devices/platform/soc/23510c000.spi/spi_master/spi0/spi0.0/input/input1\n[    3.520004] applespi spi0.0: Received corrupted packet (invalid message length 8 - num-fingers 0, tp-len 48)\n[    3.523426] applespi spi0.0: Received corrupted packet (invalid message length 8 - num-fingers 0, tp-len 48)\n[    3.526824] applespi spi0.0: modeswitch done.\n[    3.530910] random: fast init done\n[    3.533653] Run /init as init process\n[    3.536312]   with arguments:\n[    3.536312]     /init\n[    3.536313]   with environment:\n[    3.536314]     HOME=/\n[    3.536314]     TERM=linux\n[    3.683571] usb-storage 3-1:1.0: USB Mass Storage device detected\n[    3.686599] scsi host0: usb-storage 3-1:1.0\n[    4.712957] scsi 0:0:0:0: Direct-Access     SanDisk  Ultra Fit        1.00 PQ: 0 ANSI: 6\n[    4.721616] sd 0:0:0:0: [sda] 242614272 512-byte logical blocks: (124 GB/116 GiB)\n[    4.725704] sd 0:0:0:0: [sda] Write Protect is off\n[    4.729390] sd 0:0:0:0: [sda] Mode Sense: 43 00 00 00\n[    4.730114] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA\n[    4.784924]  sda: sda1 sda2\n[    4.812348] sd 0:0:0:0: [sda] Attached SCSI removable disk\n[    7.226454] random: crng init done\n[   64.471930] cfg80211: failed to load regulatory.db\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq/post_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n 35:      70415        275        275        274        274        274        274        274   AIC-FIQ 896 Level     arch_timer\n 52:      11749          0          0          0          0          0          0          0       AIC 617 Level     23510c000.spi\n 53:          0          0          0          0          0          0          0          0       AIC 781 Level     apple-dart fault handler, apple-dart fault handler\n 54:          0          0          0          0          0          0          0          0       AIC 777 Level     xhci-hcd:usb1\n 55:          0          0          0          0          0          0          0          0       AIC 861 Level     apple-dart fault handler, apple-dart fault handler\n 56:        103          0          0          0          0          0          0          0       AIC 857 Level     xhci-hcd:usb3\n 57:        642          0          0          0          0          0          0          0  23d1f0000.pinctrl  13 Level     spi0.0\nIPI0:       118         15         10         10         27          9          9          9       Rescheduling interrupts\nIPI1:         1          0          0          0          4          1          1          1       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:        52          2          2          3          4          2          2          2       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n 35:       2583        275        275        274        274        274        274        274   AIC-FIQ 896 Level     arch_timer\n 52:      11072          0          0          0          0          0          0          0       AIC 617 Level     23510c000.spi\n 53:          0          0          0          0          0          0          0          0       AIC 781 Level     apple-dart fault handler, apple-dart fault handler\n 54:          0          0          0          0          0          0          0          0       AIC 777 Level     xhci-hcd:usb1\n 55:          0          0          0          0          0          0          0          0       AIC 861 Level     apple-dart fault handler, apple-dart fault handler\n 56:        103          0          0          0          0          0          0          0       AIC 857 Level     xhci-hcd:usb3\n 57:        608          0          0          0          0          0          0          0  23d1f0000.pinctrl  13 Level     spi0.0\nIPI0:        45         10         10         10         10          9          9          9       Rescheduling interrupts\nIPI1:         0          0          0          0          2          1          1          1       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:        46          2          2          3          4          2          2          2       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:03 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    6 root      0:00 [kworker/0:0H-ev]\n    7 root      0:00 [kworker/u16:0-e]\n    8 root      0:00 [mm_percpu_wq]\n    9 root      0:00 [rcu_tasks_kthre]\n   10 root      0:00 [ksoftirqd/0]\n   11 root      0:00 [rcu_preempt]\n   12 root      0:00 [rcuog/0]\n   13 root      0:00 [rcuop/0]\n   14 root      0:00 [migration/0]\n   15 root      0:00 [cpuhp/0]\n   16 root      0:00 [cpuhp/1]\n   17 root      0:00 [migration/1]\n   18 root      0:00 [ksoftirqd/1]\n   19 root      0:00 [kworker/1:0-mm_]\n   20 root      0:00 [kworker/1:0H]\n   21 root      0:00 [rcuop/1]\n   22 root      0:00 [cpuhp/2]\n   23 root      0:00 [migration/2]\n   24 root      0:00 [ksoftirqd/2]\n   25 root      0:00 [kworker/2:0-mm_]\n   26 root      0:00 [kworker/2:0H]\n   27 root      0:00 [rcuop/2]\n   28 root      0:00 [cpuhp/3]\n   29 root      0:00 [migration/3]\n   30 root      0:00 [ksoftirqd/3]\n   31 root      0:00 [kworker/3:0-eve]\n   32 root      0:00 [kworker/3:0H]\n   33 root      0:00 [rcuop/3]\n   34 root      0:00 [cpuhp/4]\n   35 root      0:00 [migration/4]\n   36 root      0:00 [ksoftirqd/4]\n   37 root      0:00 [kworker/4:0-mm_]\n   38 root      0:00 [kworker/4:0H]\n   39 root      0:00 [rcuog/4]\n   40 root      0:00 [rcuop/4]\n   41 root      0:00 [cpuhp/5]\n   42 root      0:00 [migration/5]\n   43 root      0:00 [ksoftirqd/5]\n   44 root      0:00 [kworker/5:0-mm_]\n   45 root      0:00 [kworker/5:0H]\n   46 root      0:00 [rcuop/5]\n   47 root      0:00 [cpuhp/6]\n   48 root      0:00 [migration/6]\n   49 root      0:00 [ksoftirqd/6]\n   50 root      0:00 [kworker/6:0-mm_]\n   51 root      0:00 [kworker/6:0H]\n   52 root      0:00 [rcuop/6]\n   53 root      0:00 [cpuhp/7]\n   54 root      0:00 [migration/7]\n   55 root      0:00 [ksoftirqd/7]\n   56 root      0:00 [kworker/7:0-mm_]\n   57 root      0:00 [kworker/7:0H]\n   58 root      0:00 [rcuop/7]\n   59 root      0:00 [kdevtmpfs]\n   60 root      0:00 [netns]\n   61 root      0:00 [inet_frag_wq]\n   63 root      0:00 [oom_reaper]\n   64 root      0:00 [writeback]\n   65 root      0:00 [kcompactd0]\n   66 root      0:00 [khugepaged]\n   88 root      0:00 [cryptd]\n  110 root      0:00 [kblockd]\n  111 root      0:00 [blkcg_punt_bio]\n  112 root      0:00 [kworker/u16:1-e]\n  113 root      0:00 [md]\n  114 root      0:00 [kworker/3:1-mm_]\n  115 root      0:00 [kworker/0:1H-kb]\n  116 root      0:00 [rpciod]\n  117 root      0:00 [kworker/u17:0]\n  118 root      0:00 [xprtiod]\n  119 root      0:00 [cfg80211]\n  193 root      0:00 [kswapd0]\n  194 root      0:00 [nfsiod]\n  208 root      0:00 [kpcitest]\n  342 root      0:00 [nvme-wq]\n  344 root      0:00 [nvme-reset-wq]\n  346 root      0:00 [nvme-delete-wq]\n  391 root      0:00 [kworker/1:1-eve]\n  392 root      0:00 [kworker/2:1]\n  393 root      0:00 [kworker/4:1-eve]\n  394 root      0:00 [kworker/5:1]\n  395 root      0:00 [kworker/6:1]\n  396 root      0:00 [kworker/7:1]\n  439 root      0:00 [uas]\n  468 root      0:00 [kworker/0:2-eve]\n  494 root      0:00 [mld]\n  495 root      0:00 [ipv6_addrconf]\n  499 root      0:00 [dsa_ordered]\n  509 root      0:00 [spi0]\n  520 root      0:00 [kworker/0:3-eve]\n  534 root      0:00 [scsi_eh_0]\n  535 root      0:00 [scsi_tmf_0]\n  537 root      0:00 [usb-storage]\n  543 root      0:00 [kworker/u16:4-e]\n  635 root      0:00 ps -A\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,600003,4549.058345,7.581725999703335,0.0,0.0,0,76.942870662\r\n1,972012,7394.418271,7.607332287049954,0.0,0.0,0,47.335514397\r\n1,1332005,10127.607859,7.603280662610125,0.0,0.0,0,34.560059641\r\n1,1704004,12912.746726,7.577885219753005,0.0,0.0,0,27.106070388\r\n1,2064060,15665.562617,7.589683738360319,0.0,0.0,0,22.342971219\r\n4,600003,6546.338726,10.910509990783378,0.0,0.0,0,53.467219484\r\n4,828007,9036.922282,10.91406507674452,0.0,0.0,0,38.73220356\r\n4,1056010,11518.46245,10.907531604814348,0.0,0.0,0,30.389134181\r\n4,1284012,14016.820184,10.916424600393144,0.0,0.0,0,24.97139747\r\n4,1500022,16349.792124,10.899701553710546,0.0,0.0,0,21.408863427\r\n4,1728042,18846.588767,10.906325637339835,0.0,0.0,0,18.573413884\r\n4,1956006,21324.5598,10.902093245112743,0.0,0.0,0,16.415781217\r\n4,2184023,23825.73179,10.90910296732223,0.0,0.0,0,14.691074507\r\n4,2388077,26045.542491,10.906491914205446,0.0,0.0,0,13.440009006\r\n4,2592097,28255.429079,10.900606373526916,0.0,0.0,0,12.388484715\r\n4,2772015,30214.088398,10.899684308346096,0.0,0.0,0,11.586383047\r\n4,2988008,32600.596125,10.910478193164142,0.0,0.0,0,10.738331797\r\n4,3096140,32603.632976,10.530413022666934,0.0,0.0,0,10.736859881\r\n4,3144118,32570.258701,10.359108246255389,0.0,0.0,0,10.746945047\r\n4,3204067,32567.228064,10.164340528459611,0.0,0.0,0,10.748464838\r\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 676.578691072, \"housekeeping\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}, \"cpus\": {\"1\": {\"freqs\": {\"600003\": {\"active\": {\"elapsed_sec\": 76.942870662, \"elapsed_ns\": 76942870662, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 4549.058345, \"coremarks_per_mhz\": 7.581725999703335, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"972012\": {\"active\": {\"elapsed_sec\": 47.335514397, \"elapsed_ns\": 47335514397, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 7394.418271, \"coremarks_per_mhz\": 7.607332287049954, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1332005\": {\"active\": {\"elapsed_sec\": 34.560059641, \"elapsed_ns\": 34560059641, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 10127.607859, \"coremarks_per_mhz\": 7.603280662610125, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1704004\": {\"active\": {\"elapsed_sec\": 27.106070388, \"elapsed_ns\": 27106070388, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 12912.746726, \"coremarks_per_mhz\": 7.577885219753005, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2064060\": {\"active\": {\"elapsed_sec\": 22.342971219, \"elapsed_ns\": 22342971219, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 15665.562617, \"coremarks_per_mhz\": 7.589683738360319, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}}}, \"4\": {\"freqs\": {\"600003\": {\"active\": {\"elapsed_sec\": 53.467219484, \"elapsed_ns\": 53467219484, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 6546.338726, \"coremarks_per_mhz\": 10.910509990783378, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"828007\": {\"active\": {\"elapsed_sec\": 38.73220356, \"elapsed_ns\": 38732203560, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 9036.922282, \"coremarks_per_mhz\": 10.91406507674452, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1056010\": {\"active\": {\"elapsed_sec\": 30.389134181, \"elapsed_ns\": 30389134181, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 11518.46245, \"coremarks_per_mhz\": 10.907531604814348, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1284012\": {\"active\": {\"elapsed_sec\": 24.97139747, \"elapsed_ns\": 24971397470, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 14016.820184, \"coremarks_per_mhz\": 10.916424600393144, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1500022\": {\"active\": {\"elapsed_sec\": 21.408863427, \"elapsed_ns\": 21408863427, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 16349.792124, \"coremarks_per_mhz\": 10.899701553710546, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1728042\": {\"active\": {\"elapsed_sec\": 18.573413884, \"elapsed_ns\": 18573413884, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 18846.588767, \"coremarks_per_mhz\": 10.906325637339835, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1956006\": {\"active\": {\"elapsed_sec\": 16.415781217, \"elapsed_ns\": 16415781217, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 21324.5598, \"coremarks_per_mhz\": 10.902093245112743, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2184023\": {\"active\": {\"elapsed_sec\": 14.691074507, \"elapsed_ns\": 14691074507, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 23825.73179, \"coremarks_per_mhz\": 10.90910296732223, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2388077\": {\"active\": {\"elapsed_sec\": 13.440009006, \"elapsed_ns\": 13440009006, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 26045.542491, \"coremarks_per_mhz\": 10.906491914205446, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2592097\": {\"active\": {\"elapsed_sec\": 12.388484715, \"elapsed_ns\": 12388484715, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 28255.429079, \"coremarks_per_mhz\": 10.900606373526916, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2772015\": {\"active\": {\"elapsed_sec\": 11.586383047, \"elapsed_ns\": 11586383047, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 30214.088398, \"coremarks_per_mhz\": 10.899684308346096, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2988008\": {\"active\": {\"elapsed_sec\": 10.738331797, \"elapsed_ns\": 10738331797, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 32600.596125, \"coremarks_per_mhz\": 10.910478193164142, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"3096140\": {\"active\": {\"elapsed_sec\": 10.736859881, \"elapsed_ns\": 10736859881, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 32603.632976, \"coremarks_per_mhz\": 10.530413022666934, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"3144118\": {\"active\": {\"elapsed_sec\": 10.746945047, \"elapsed_ns\": 10746945047, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 32570.258701, \"coremarks_per_mhz\": 10.359108246255389, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"3204067\": {\"active\": {\"elapsed_sec\": 10.748464838, \"elapsed_ns\": 10748464838, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0, \"coremark_score\": 32567.228064, \"coremarks_per_mhz\": 10.164340528459611, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5.0, \"elapsed_ns\": 5000000000, \"power_samples\": [0.0], \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/t8103/corellium-cpufreq/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 0 mW\n\n\n===== CPU 1 =====\nFrequencies: 600 972 1332 1704 2064\n\n 600:  4549     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    76.9 s\n 972:  7394     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    47.3 s\n1332: 10128     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    34.6 s\n1704: 12913     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    27.1 s\n2064: 15666     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    22.3 s\n\n\n===== CPU 4 =====\nFrequencies: 600 828 1056 1284 1500 1728 1956 2184 2388 2592 2772 2988 3096 3144 3204\n\n 600:  6546     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    53.5 s\n 828:  9037     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    38.7 s\n1056: 11518     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    30.4 s\n1284: 14017     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    25.0 s\n1500: 16350     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    21.4 s\n1728: 18847     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    18.6 s\n1956: 21325     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    16.4 s\n2184: 23826     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    14.7 s\n2388: 26046     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    13.4 s\n2592: 28255     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    12.4 s\n2772: 30214     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    11.6 s\n2988: 32601     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    10.7 s\n3096: 32604     10.5 C/MHz      0 mW    0.0 J    0.0 I/mJ    10.7 s\n3144: 32570     10.4 C/MHz      0 mW    0.0 J    0.0 I/mJ    10.7 s\n3204: 32567     10.2 C/MHz      0 mW    0.0 J    0.0 I/mJ    10.7 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq/uptime.txt",
    "content": " 00:11:24 up 11 min,  load average: 0.58, 0.61, 0.39\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq/versions.txt",
    "content": "Kernel: Linux version 5.15.0-rc2-12257-g9f0d1172e0ee-dirty (kdrag0n@pinwheel) (aarch64-linux-gnu-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37) #16 SMP PREEMPT Sun Sep 26 02:44:16 PDT 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq-max2988/cmdline.txt",
    "content": "earlycon console=tty0 rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq-max2988/cpufreq_stats/0/time_in_state",
    "content": "600003 51634\n972012 5557\n1332005 4295\n1704004 3535\n2064060 3092\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq-max2988/cpufreq_stats/0/total_trans",
    "content": "59\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq-max2988/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    600003    972012   1332005   1704004   2064060 \n   600003:         0         5         0         5         3 \n   972012:         7         0         3         1         2 \n  1332005:         1         5         0         3         0 \n  1704004:         3         1         4         0         6 \n  2064060:         2         1         2         5         0 \n"
  },
  {
    "path": "results/t8103/corellium-cpufreq-max2988/cpufreq_stats/4/time_in_state",
    "content": "600003 32207\n828007 4684\n1056010 3849\n1284012 3307\n1500022 2951\n1728042 2667\n1956006 2452\n2184023 2280\n2388077 2154\n2592097 2049\n2772015 1969\n2988008 1884\n3096140 1884\n3144118 1885\n3204067 1885\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq-max2988/cpufreq_stats/4/total_trans",
    "content": "16\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq-max2988/cpufreq_stats/4/trans_table",
    "content": "   From  :    To\n         :    600003    828007   1056010   1284012   1500022   1728042   1956006   2184023   2388077   2592097   2772015   2988008   3096140   3144118   3204067 \n   600003:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   828007:         1         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1056010:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1284012:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1500022:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1728042:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1956006:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  2184023:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  2388077:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  2592097:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  2772015:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2988008:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  3096140:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  3144118:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  3204067:         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/t8103/corellium-cpufreq-max2988/cpuinfo.txt",
    "content": "processor\t: 0\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x022\nCPU revision\t: 1\n\nprocessor\t: 1\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x022\nCPU revision\t: 1\n\nprocessor\t: 2\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x022\nCPU revision\t: 1\n\nprocessor\t: 3\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x022\nCPU revision\t: 1\n\nprocessor\t: 4\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x023\nCPU revision\t: 1\n\nprocessor\t: 5\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x023\nCPU revision\t: 1\n\nprocessor\t: 6\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x023\nCPU revision\t: 1\n\nprocessor\t: 7\nBogoMIPS\t: 48.00\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint\nCPU implementer\t: 0x61\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0x023\nCPU revision\t: 1\n\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq-max2988/device.txt",
    "content": "Model: Apple MacBook Air (M1, 2020);\nCompatible: apple,j274;apple,t8103;apple,arm-platform;\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq-max2988/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x611f0221]\n[    0.000000] Linux version 5.15.0-rc2-12257-g9f0d1172e0ee-dirty (kdrag0n@pinwheel) (aarch64-linux-gnu-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37) #16 SMP PREEMPT Sun Sep 26 02:44:16 PDT 2021\n[    0.000000] Machine model: Apple MacBook Air (M1, 2020)\n[    0.000000] earlycon: s5l0 at MMIO32 0x0000000235200000 (options '')\n[    0.000000] printk: bootconsole [s5l0] enabled\n[    0.000000] Zone ranges:\n[    0.000000]   DMA      [mem 0x0000000801f44000-0x00000009d954bfff]\n[    0.000000]   DMA32    empty\n[    0.000000]   Normal   empty\n[    0.000000] Movable zone start for each node\n[    0.000000] Early memory node ranges\n[    0.000000]   node   0: [mem 0x0000000801f44000-0x00000009d954bfff]\n[    0.000000] Initmem setup node 0 [mem 0x0000000801f44000-0x00000009d954bfff]\n[    0.000000] On node 0, zone DMA: 685 pages in unavailable ranges\n[    0.000000] percpu: Embedded 4 pages/cpu s34200 r0 d31336 u65536\n[    0.000000] pcpu-alloc: s34200 r0 d31336 u65536 alloc=4*16384\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected VIPT I-cache on CPU0\n[    0.000000] CPU features: detected: Address authentication (IMP DEF algorithm)\n[    0.000000] CPU features: detected: Virtualization Host Extensions\n[    0.000000] CPU features: detected: Spectre-v4\n[    0.000000] alternatives: patching kernel code\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 480804\n[    0.000000] Kernel command line: earlycon console=tty0 rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7\n[    0.000000] Dentry cache hash table entries: 1048576 (order: 9, 8388608 bytes, linear)\n[    0.000000] Inode-cache hash table entries: 524288 (order: 8, 4194304 bytes, linear)\n[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off\n[    0.000000] Memory: 7640816K/7723040K available (13056K kernel code, 1094K rwdata, 2960K rodata, 1280K init, 435K bss, 82224K reserved, 0K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tTrampoline variant of Tasks RCU enabled.\n[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] Root IRQ handler: aic_handle_irq\n[    0.000000] Root FIQ handler: aic_handle_fiq\n[    0.000000] irq_apple_aic: Initialized with 896 IRQs, 4 FIQs, 32 vIPIs\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] random: get_random_bytes called from start_kernel+0x474/0x654 with crng_init=0\n[    0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns\n[    0.000000] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns\n[    0.008063] Console: colour dummy device 80x25\n[    0.012471] printk: console [tty0] enabled\n[    0.016569] printk: bootconsole [s5l0] disabled\n[    0.021113] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000)\n[    0.021118] pid_max: default: 32768 minimum: 301\n[    0.021134] LSM: Security Framework initializing\n[    0.021148] Mount-cache hash table entries: 16384 (order: 3, 131072 bytes, linear)\n[    0.021153] Mountpoint-cache hash table entries: 16384 (order: 3, 131072 bytes, linear)\n[    0.021437] rcu: Hierarchical SRCU implementation.\n[    0.021524] smp: Bringing up secondary CPUs ...\n[    0.021588] Detected VIPT I-cache on CPU1\n[    0.021599] CPU1: Booted secondary processor 0x0000000001 [0x611f0221]\n[    0.021683] Detected VIPT I-cache on CPU2\n[    0.021691] CPU2: Booted secondary processor 0x0000000002 [0x611f0221]\n[    0.021766] Detected VIPT I-cache on CPU3\n[    0.021774] CPU3: Booted secondary processor 0x0000000003 [0x611f0221]\n[    0.021869] Detected VIPT I-cache on CPU4\n[    0.021896] CPU4: Booted secondary processor 0x0000010100 [0x611f0231]\n[    0.022025] Detected VIPT I-cache on CPU5\n[    0.022046] CPU5: Booted secondary processor 0x0000010101 [0x611f0231]\n[    0.022165] Detected VIPT I-cache on CPU6\n[    0.022186] CPU6: Booted secondary processor 0x0000010102 [0x611f0231]\n[    0.022308] Detected VIPT I-cache on CPU7\n[    0.022328] CPU7: Booted secondary processor 0x0000010103 [0x611f0231]\n[    0.022382] smp: Brought up 1 node, 8 CPUs\n[    0.022401] SMP: Total of 8 processors activated.\n[    0.022404] CPU features: detected: ARMv8.4 Translation Table Level\n[    0.022407] CPU features: detected: Data cache clean to the PoU not required for I/D coherence\n[    0.022410] CPU features: detected: Common not Private translations\n[    0.022412] CPU features: detected: CRC32 instructions\n[    0.022414] CPU features: detected: E0PD\n[    0.022416] CPU features: detected: Generic authentication (IMP DEF algorithm)\n[    0.022418] CPU features: detected: RCpc load-acquire (LDAPR)\n[    0.022420] CPU features: detected: LSE atomic instructions\n[    0.022422] CPU features: detected: Privileged Access Never\n[    0.022424] CPU features: detected: RAS Extension Support\n[    0.022426] CPU features: detected: Speculation barrier (SB)\n[    0.022428] CPU features: detected: Stage-2 Force Write-Back\n[    0.022430] CPU features: detected: TLB range maintenance instructions\n[    0.022432] CPU features: detected: Speculative Store Bypassing Safe (SSBS)\n[    0.040783] CPU: All CPU(s) started at EL2\n[    0.041137] devtmpfs: initialized\n[    0.041456] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.041463] futex hash table entries: 2048 (order: 3, 131072 bytes, linear)\n[    0.041487] pinctrl core: initialized pinctrl subsystem\n[    0.041551] NET: Registered PF_NETLINK/PF_ROUTE protocol family\n[    0.041754] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations\n[    0.041773] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations\n[    0.041790] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations\n[    0.041850] thermal_sys: Registered thermal governor 'step_wise'\n[    0.041851] thermal_sys: Registered thermal governor 'user_space'\n[    0.041874] cpuidle: using governor ladder\n[    0.041879] cpuidle: using governor menu\n[    0.041884] NET: Registered PF_QIPCRTR protocol family\n[    0.041908] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.041998] ASID allocator initialised with 256 entries\n[    0.042004] Serial: AMBA PL011 UART driver\n[    0.043962] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages\n[    0.043966] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages\n[    0.043969] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages\n[    0.044261] cryptd: max_cpu_qlen set to 1000\n[    0.211154] raid6: neonx8   gen() 10131 MB/s\n[    0.381179] raid6: neonx8   xor()  8541 MB/s\n[    0.551202] raid6: neonx4   gen() 10123 MB/s\n[    0.721211] raid6: neonx4   xor()  8810 MB/s\n[    0.891236] raid6: neonx2   gen()  9970 MB/s\n[    1.061270] raid6: neonx2   xor()  8539 MB/s\n[    1.231289] raid6: neonx1   gen()  8487 MB/s\n[    1.401300] raid6: neonx1   xor()  7098 MB/s\n[    1.571331] raid6: int64x8  gen()  4158 MB/s\n[    1.741351] raid6: int64x8  xor()  2384 MB/s\n[    1.911368] raid6: int64x4  gen()  4304 MB/s\n[    2.081413] raid6: int64x4  xor()  2570 MB/s\n[    2.251428] raid6: int64x2  gen()  3772 MB/s\n[    2.421437] raid6: int64x2  xor()  2188 MB/s\n[    2.591478] raid6: int64x1  gen()  2933 MB/s\n[    2.761486] raid6: int64x1  xor()  1670 MB/s\n[    2.761488] raid6: using algorithm neonx8 gen() 10131 MB/s\n[    2.761490] raid6: .... xor() 8541 MB/s, rmw enabled\n[    2.761492] raid6: using neon recovery algorithm\n[    2.761511] iommu: Default domain type: Translated \n[    2.761513] iommu: DMA domain TLB invalidation policy: strict mode \n[    2.761534] vgaarb: loaded\n[    2.761572] SCSI subsystem initialized\n[    2.761595] usbcore: registered new interface driver usbfs\n[    2.761601] usbcore: registered new interface driver hub\n[    2.761608] usbcore: registered new device driver usb\n[    2.761633] mc: Linux media interface: v0.10\n[    2.761638] videodev: Linux video capture interface: v2.00\n[    2.761675] Advanced Linux Sound Architecture Driver Initialized.\n[    2.761771] Bluetooth: Core ver 2.22\n[    2.761775] NET: Registered PF_BLUETOOTH protocol family\n[    2.761777] Bluetooth: HCI device and connection manager initialized\n[    2.761781] Bluetooth: HCI socket layer initialized\n[    2.761783] Bluetooth: L2CAP socket layer initialized\n[    2.761786] Bluetooth: SCO socket layer initialized\n[    2.761806] nfc: nfc_init: NFC Core ver 0.1\n[    2.761816] NET: Registered PF_NFC protocol family\n[    2.761865] clocksource: Switched to clocksource arch_sys_counter\n[    2.761895] VFS: Disk quotas dquot_6.6.0\n[    2.761906] VFS: Dquot-cache hash table entries: 2048 (order 0, 16384 bytes)\n[    2.761999] simple-framebuffer 9df4ec000.framebuffer: framebuffer at 0x9df4ec000, 0xfa0000 bytes\n[    2.762003] simple-framebuffer 9df4ec000.framebuffer: format=x2r10g10b10, mode=2560x1600x32, linelength=10240\n[    2.769528] Console: switching to colour frame buffer device 160x50\n[    2.776734] simple-framebuffer 9df4ec000.framebuffer: fb0: simplefb registered!\n[    2.777488] NET: Registered PF_INET protocol family\n[    2.777571] IP idents hash table entries: 131072 (order: 6, 1048576 bytes, linear)\n[    2.779147] tcp_listen_portaddr_hash hash table entries: 4096 (order: 2, 65536 bytes, linear)\n[    2.779251] TCP established hash table entries: 65536 (order: 5, 524288 bytes, linear)\n[    2.779404] TCP bind hash table entries: 65536 (order: 6, 1048576 bytes, linear)\n[    2.779578] TCP: Hash tables configured (established 65536 bind 65536)\n[    2.779664] UDP hash table entries: 4096 (order: 3, 131072 bytes, linear)\n[    2.779756] UDP-Lite hash table entries: 4096 (order: 3, 131072 bytes, linear)\n[    2.779874] NET: Registered PF_UNIX/PF_LOCAL protocol family\n[    2.779994] RPC: Registered named UNIX socket transport module.\n[    2.780060] RPC: Registered udp transport module.\n[    2.780113] RPC: Registered tcp transport module.\n[    2.780165] RPC: Registered tcp NFSv4.1 backchannel transport module.\n[    2.780336] PCI: CLS 0 bytes, default 64\n[    2.780434] Unpacking initramfs...\n[    2.958442] Freeing initrd memory: 13280K\n[    2.959106] Initialise system trusted keyrings\n[    2.959408] workingset: timestamp_bits=46 max_order=19 bucket_order=0\n[    2.960455] squashfs: version 4.0 (2009/01/31) Phillip Lougher\n[    2.960731] NFS: Registering the id_resolver key type\n[    2.960790] Key type id_resolver registered\n[    2.963102] Key type id_legacy registered\n[    2.965368] nfs4filelayout_init: NFSv4 File Layout Driver Registering...\n[    2.967686] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...\n[    2.970067] fuse: init (API version 7.34)\n[    2.972537] 9p: Installing v9fs 9p2000 file system support\n[    2.988004] NET: Registered PF_ALG protocol family\n[    2.990411] xor: measuring software checksum speed\n[    2.993735]    8regs           : 11182 MB/sec\n[    2.996812]    32regs          : 14262 MB/sec\n[    2.999712]    arm64_neon      : 17796 MB/sec\n[    3.002041] xor: using function: arm64_neon (17796 MB/sec)\n[    3.004373] Key type asymmetric registered\n[    3.006694] Asymmetric key parser 'x509' registered\n[    3.009051] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)\n[    3.011457] io scheduler mq-deadline registered\n[    3.013869] io scheduler kyber registered\n[    3.017232] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled\n[    3.019981] clk-gate: 0x1c0 -> 1\n[    3.022371] clk-gate: 0x220 -> 1\n[    3.024707] clk-gate: 0x270 -> 1\n[    3.027932] 235200000.serial: ttySAC0 at MMIO 0x235200000 (irq = 37, base_baud = 0) is a APPLE S5L\n[    3.030342] clk-gate: 0x270 -> 0\n[    3.032636] clk-gate: 0x220 -> 0\n[    3.034860] clk-gate: 0x1c0 -> 0\n[    3.037247] apple-dart 382f00000.iommu: DART [pagesize 4000, bypass support: 1, bypass forced: 0] initialized\n[    3.039574] apple-dart 382f80000.iommu: DART [pagesize 4000, bypass support: 1, bypass forced: 0] initialized\n[    3.041842] apple-dart 502f00000.iommu: DART [pagesize 4000, bypass support: 1, bypass forced: 0] initialized\n[    3.044068] apple-dart 502f80000.iommu: DART [pagesize 4000, bypass support: 1, bypass forced: 0] initialized\n[    3.046429] cacheinfo: Unable to detect cache hierarchy for CPU 0\n[    3.049040] loop: module loaded\n[    3.063646] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.\n[    3.065720] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    3.067906] libphy: Fixed MDIO Bus: probed\n[    3.069997] tun: Universal TUN/TAP device driver, 1.6\n[    3.072191] CAN device driver interface\n[    3.074304] usbcore: registered new interface driver rtl8150\n[    3.076393] usbcore: registered new interface driver r8152\n[    3.078497] usbcore: registered new interface driver lan78xx\n[    3.080925] usbcore: registered new interface driver asix\n[    3.083010] usbcore: registered new interface driver ax88179_178a\n[    3.085025] usbcore: registered new interface driver cdc_ether\n[    3.087020] usbcore: registered new interface driver dm9601\n[    3.088989] usbcore: registered new interface driver CoreChips\n[    3.090919] usbcore: registered new interface driver smsc75xx\n[    3.092847] usbcore: registered new interface driver smsc95xx\n[    3.094714] usbcore: registered new interface driver net1080\n[    3.096530] usbcore: registered new interface driver plusb\n[    3.098359] usbcore: registered new interface driver cdc_subset\n[    3.100125] usbcore: registered new interface driver MOSCHIP usb-ethernet driver\n[    3.101968] usbcore: registered new interface driver ipheth\n[    3.103662] usbcore: registered new interface driver cdc_ncm\n[    3.105377] dwc3 382280000.usb: Adding to iommu group 0\n[    3.141911] dwc3 502280000.usb: Adding to iommu group 1\n[    3.181974] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    3.183623] ehci-pci: EHCI PCI platform driver\n[    3.185288] ehci-platform: EHCI generic platform driver\n[    3.187024] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller\n[    3.188756] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1\n[    3.190578] xhci-hcd xhci-hcd.0.auto: hcc params 0x0238ffcd hci version 0x110 quirks 0x0000000000010010\n[    3.192347] xhci-hcd xhci-hcd.0.auto: irq 54, io mem 0x382280000\n[    3.194172] hub 1-0:1.0: USB hub found\n[    3.195857] hub 1-0:1.0: 1 port detected\n[    3.197591] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller\n[    3.199295] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2\n[    3.200993] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.1 Enhanced SuperSpeed\n[    3.202971] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.\n[    3.204857] hub 2-0:1.0: USB hub found\n[    3.206616] hub 2-0:1.0: 1 port detected\n[    3.208386] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller\n[    3.210162] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 3\n[    3.212083] xhci-hcd xhci-hcd.1.auto: hcc params 0x0238ffcd hci version 0x110 quirks 0x0000000000010010\n[    3.213897] xhci-hcd xhci-hcd.1.auto: irq 56, io mem 0x502280000\n[    3.215894] hub 3-0:1.0: USB hub found\n[    3.217744] hub 3-0:1.0: 1 port detected\n[    3.219650] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller\n[    3.221503] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 4\n[    3.223394] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.1 Enhanced SuperSpeed\n[    3.225290] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.\n[    3.227191] hub 4-0:1.0: USB hub found\n[    3.228957] hub 4-0:1.0: 1 port detected\n[    3.230773] usbcore: registered new interface driver cdc_acm\n[    3.232564] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters\n[    3.234492] usbcore: registered new interface driver uas\n[    3.236357] usbcore: registered new interface driver usb-storage\n[    3.238238] usbcore: registered new interface driver cp210x\n[    3.240104] usbserial: USB Serial support registered for cp210x\n[    3.242059] usbcore: registered new interface driver ftdi_sio\n[    3.244034] usbserial: USB Serial support registered for FTDI USB Serial Device\n[    3.246071] usbcore: registered new interface driver option\n[    3.248095] usbserial: USB Serial support registered for GSM modem (1-port)\n[    3.250225] udc-core: couldn't find an available UDC - added [g_serial] to list of pending drivers\n[    3.252421] udc-core: couldn't find an available UDC - added [g_cdc] to list of pending drivers\n[    3.254703] i2c_dev: i2c /dev entries driver\n[    3.256930] usbcore: registered new interface driver uvcvideo\n[    3.259186] gspca_main: v2.14.0 registered\n[    3.261523] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com\n[    3.264055] Bluetooth: HCI UART driver ver 2.3\n[    3.266430] Bluetooth: HCI UART protocol H4 registered\n[    3.268793] Bluetooth: HCI UART protocol LL registered\n[    3.271154] Bluetooth: HCI UART protocol QCA registered\n[    3.273486] usbcore: registered new interface driver btusb\n[    3.276262] apple-m1-cpufreq 210e00000.cpufreq: registered cpufreq driver.\n[    3.278826] usbcore: registered new interface driver usbhid\n[    3.281185] usbhid: USB HID core driver\n[    3.283566] GACT probability NOT on\n[    3.285869] Mirror/redirect action on\n[    3.288661] NET: Registered PF_INET6 protocol family\n[    3.291388] Segment Routing with IPv6\n[    3.293685] In-situ OAM (IOAM) with IPv6\n[    3.295971] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    3.298377] NET: Registered PF_PACKET protocol family\n[    3.300726] can: controller area network core\n[    3.303033] NET: Registered PF_CAN protocol family\n[    3.305253] can: raw protocol\n[    3.307470] can: broadcast manager protocol\n[    3.309684] can: netlink gateway - max_hops=1\n[    3.311903] Bluetooth: HIDP (Human Interface Emulation) ver 1.2\n[    3.314110] Bluetooth: HIDP socket layer initialized\n[    3.316282] 8021q: 802.1Q VLAN Support v1.8\n[    3.318452] 9pnet: Installing 9P2000 support\n[    3.320636] Key type dns_resolver registered\n[    3.322887] registered taskstats version 1\n[    3.325032] Loading compiled-in X.509 certificates\n[    3.327313] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=no\n[    3.329514] clk-gate: 0x130 -> 1\n[    3.332404] clk-gate: 0x80 -> 1\n[    3.334627] clk-gate: 0x1c0 -> 1\n[    3.336689] clk-gate: 0x218 -> 1\n[    3.338683] clk-gate: 0x258 -> 1\n[    3.340625] keyboard@0 enforce active low on chipselect handle\n[    3.471946] input: Apple SPI Keyboard as /devices/platform/soc/23510c000.spi/spi_master/spi0/spi0.0/input/input0\n[    3.479506] spi-apple-mc 23510c000.spi: Apple SPI-MC at 24 MHz, 1 chip select GPIO.\n[    3.482229] cfg80211: Loading compiled-in X.509 certificates for regulatory database\n[    3.484793] applespi spi0.0: Received corrupted packet (crc mismatch)\n[    3.487501] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\n[    3.490863] ALSA device list:\n[    3.494558]   No soundcards found.\n[    3.497104] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2\n[    3.499954] Freeing unused kernel memory: 1280K\n[    3.502547] usb 3-1: new high-speed USB device number 2 using xhci-hcd\n[    3.505526] platform regulatory.0: Falling back to sysfs fallback for: regulatory.db\n[    3.508207] applespi spi0.0: Received corrupted packet (invalid message length 8 - num-fingers 0, tp-len 48)\n[    3.512284] applespi spi0.0: Received corrupted packet (invalid message length 8 - num-fingers 0, tp-len 48)\n[    3.515168] input: Apple SPI Touchpad as /devices/platform/soc/23510c000.spi/spi_master/spi0/spi0.0/input/input1\n[    3.520004] applespi spi0.0: Received corrupted packet (invalid message length 8 - num-fingers 0, tp-len 48)\n[    3.523426] applespi spi0.0: Received corrupted packet (invalid message length 8 - num-fingers 0, tp-len 48)\n[    3.526824] applespi spi0.0: modeswitch done.\n[    3.530910] random: fast init done\n[    3.533653] Run /init as init process\n[    3.536312]   with arguments:\n[    3.536312]     /init\n[    3.536313]   with environment:\n[    3.536314]     HOME=/\n[    3.536314]     TERM=linux\n[    3.683571] usb-storage 3-1:1.0: USB Mass Storage device detected\n[    3.686599] scsi host0: usb-storage 3-1:1.0\n[    4.712957] scsi 0:0:0:0: Direct-Access     SanDisk  Ultra Fit        1.00 PQ: 0 ANSI: 6\n[    4.721616] sd 0:0:0:0: [sda] 242614272 512-byte logical blocks: (124 GB/116 GiB)\n[    4.725704] sd 0:0:0:0: [sda] Write Protect is off\n[    4.729390] sd 0:0:0:0: [sda] Mode Sense: 43 00 00 00\n[    4.730114] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA\n[    4.784924]  sda: sda1 sda2\n[    4.812348] sd 0:0:0:0: [sda] Attached SCSI removable disk\n[    7.226454] random: crng init done\n[   64.471930] cfg80211: failed to load regulatory.db\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq-max2988/post_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n 35:      70415        275        275        274        274        274        274        274   AIC-FIQ 896 Level     arch_timer\n 52:      11749          0          0          0          0          0          0          0       AIC 617 Level     23510c000.spi\n 53:          0          0          0          0          0          0          0          0       AIC 781 Level     apple-dart fault handler, apple-dart fault handler\n 54:          0          0          0          0          0          0          0          0       AIC 777 Level     xhci-hcd:usb1\n 55:          0          0          0          0          0          0          0          0       AIC 861 Level     apple-dart fault handler, apple-dart fault handler\n 56:        103          0          0          0          0          0          0          0       AIC 857 Level     xhci-hcd:usb3\n 57:        642          0          0          0          0          0          0          0  23d1f0000.pinctrl  13 Level     spi0.0\nIPI0:       118         15         10         10         27          9          9          9       Rescheduling interrupts\nIPI1:         1          0          0          0          4          1          1          1       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:        52          2          2          3          4          2          2          2       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq-max2988/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n 35:       2583        275        275        274        274        274        274        274   AIC-FIQ 896 Level     arch_timer\n 52:      11072          0          0          0          0          0          0          0       AIC 617 Level     23510c000.spi\n 53:          0          0          0          0          0          0          0          0       AIC 781 Level     apple-dart fault handler, apple-dart fault handler\n 54:          0          0          0          0          0          0          0          0       AIC 777 Level     xhci-hcd:usb1\n 55:          0          0          0          0          0          0          0          0       AIC 861 Level     apple-dart fault handler, apple-dart fault handler\n 56:        103          0          0          0          0          0          0          0       AIC 857 Level     xhci-hcd:usb3\n 57:        608          0          0          0          0          0          0          0  23d1f0000.pinctrl  13 Level     spi0.0\nIPI0:        45         10         10         10         10          9          9          9       Rescheduling interrupts\nIPI1:         0          0          0          0          2          1          1          1       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:        46          2          2          3          4          2          2          2       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq-max2988/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:03 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    6 root      0:00 [kworker/0:0H-ev]\n    7 root      0:00 [kworker/u16:0-e]\n    8 root      0:00 [mm_percpu_wq]\n    9 root      0:00 [rcu_tasks_kthre]\n   10 root      0:00 [ksoftirqd/0]\n   11 root      0:00 [rcu_preempt]\n   12 root      0:00 [rcuog/0]\n   13 root      0:00 [rcuop/0]\n   14 root      0:00 [migration/0]\n   15 root      0:00 [cpuhp/0]\n   16 root      0:00 [cpuhp/1]\n   17 root      0:00 [migration/1]\n   18 root      0:00 [ksoftirqd/1]\n   19 root      0:00 [kworker/1:0-mm_]\n   20 root      0:00 [kworker/1:0H]\n   21 root      0:00 [rcuop/1]\n   22 root      0:00 [cpuhp/2]\n   23 root      0:00 [migration/2]\n   24 root      0:00 [ksoftirqd/2]\n   25 root      0:00 [kworker/2:0-mm_]\n   26 root      0:00 [kworker/2:0H]\n   27 root      0:00 [rcuop/2]\n   28 root      0:00 [cpuhp/3]\n   29 root      0:00 [migration/3]\n   30 root      0:00 [ksoftirqd/3]\n   31 root      0:00 [kworker/3:0-eve]\n   32 root      0:00 [kworker/3:0H]\n   33 root      0:00 [rcuop/3]\n   34 root      0:00 [cpuhp/4]\n   35 root      0:00 [migration/4]\n   36 root      0:00 [ksoftirqd/4]\n   37 root      0:00 [kworker/4:0-mm_]\n   38 root      0:00 [kworker/4:0H]\n   39 root      0:00 [rcuog/4]\n   40 root      0:00 [rcuop/4]\n   41 root      0:00 [cpuhp/5]\n   42 root      0:00 [migration/5]\n   43 root      0:00 [ksoftirqd/5]\n   44 root      0:00 [kworker/5:0-mm_]\n   45 root      0:00 [kworker/5:0H]\n   46 root      0:00 [rcuop/5]\n   47 root      0:00 [cpuhp/6]\n   48 root      0:00 [migration/6]\n   49 root      0:00 [ksoftirqd/6]\n   50 root      0:00 [kworker/6:0-mm_]\n   51 root      0:00 [kworker/6:0H]\n   52 root      0:00 [rcuop/6]\n   53 root      0:00 [cpuhp/7]\n   54 root      0:00 [migration/7]\n   55 root      0:00 [ksoftirqd/7]\n   56 root      0:00 [kworker/7:0-mm_]\n   57 root      0:00 [kworker/7:0H]\n   58 root      0:00 [rcuop/7]\n   59 root      0:00 [kdevtmpfs]\n   60 root      0:00 [netns]\n   61 root      0:00 [inet_frag_wq]\n   63 root      0:00 [oom_reaper]\n   64 root      0:00 [writeback]\n   65 root      0:00 [kcompactd0]\n   66 root      0:00 [khugepaged]\n   88 root      0:00 [cryptd]\n  110 root      0:00 [kblockd]\n  111 root      0:00 [blkcg_punt_bio]\n  112 root      0:00 [kworker/u16:1-e]\n  113 root      0:00 [md]\n  114 root      0:00 [kworker/3:1-mm_]\n  115 root      0:00 [kworker/0:1H-kb]\n  116 root      0:00 [rpciod]\n  117 root      0:00 [kworker/u17:0]\n  118 root      0:00 [xprtiod]\n  119 root      0:00 [cfg80211]\n  193 root      0:00 [kswapd0]\n  194 root      0:00 [nfsiod]\n  208 root      0:00 [kpcitest]\n  342 root      0:00 [nvme-wq]\n  344 root      0:00 [nvme-reset-wq]\n  346 root      0:00 [nvme-delete-wq]\n  391 root      0:00 [kworker/1:1-eve]\n  392 root      0:00 [kworker/2:1]\n  393 root      0:00 [kworker/4:1-eve]\n  394 root      0:00 [kworker/5:1]\n  395 root      0:00 [kworker/6:1]\n  396 root      0:00 [kworker/7:1]\n  439 root      0:00 [uas]\n  468 root      0:00 [kworker/0:2-eve]\n  494 root      0:00 [mld]\n  495 root      0:00 [ipv6_addrconf]\n  499 root      0:00 [dsa_ordered]\n  509 root      0:00 [spi0]\n  520 root      0:00 [kworker/0:3-eve]\n  534 root      0:00 [scsi_eh_0]\n  535 root      0:00 [scsi_tmf_0]\n  537 root      0:00 [usb-storage]\n  543 root      0:00 [kworker/u16:4-e]\n  635 root      0:00 ps -A\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq-max2988/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,600003,4549.058345,7.581725999703335,0.0,0.0,0,76.942870662\r\n1,972012,7394.418271,7.607332287049954,0.0,0.0,0,47.335514397\r\n1,1332005,10127.607859,7.603280662610125,0.0,0.0,0,34.560059641\r\n1,1704004,12912.746726,7.577885219753005,0.0,0.0,0,27.106070388\r\n1,2064060,15665.562617,7.589683738360319,0.0,0.0,0,22.342971219\r\n4,600003,6546.338726,10.910509990783378,0.0,0.0,0,53.467219484\r\n4,828007,9036.922282,10.91406507674452,0.0,0.0,0,38.73220356\r\n4,1056010,11518.46245,10.907531604814348,0.0,0.0,0,30.389134181\r\n4,1284012,14016.820184,10.916424600393144,0.0,0.0,0,24.97139747\r\n4,1500022,16349.792124,10.899701553710546,0.0,0.0,0,21.408863427\r\n4,1728042,18846.588767,10.906325637339835,0.0,0.0,0,18.573413884\r\n4,1956006,21324.5598,10.902093245112743,0.0,0.0,0,16.415781217\r\n4,2184023,23825.73179,10.90910296732223,0.0,0.0,0,14.691074507\r\n4,2388077,26045.542491,10.906491914205446,0.0,0.0,0,13.440009006\r\n4,2592097,28255.429079,10.900606373526916,0.0,0.0,0,12.388484715\r\n4,2772015,30214.088398,10.899684308346096,0.0,0.0,0,11.586383047\r\n4,2988008,32600.596125,10.910478193164142,0.0,0.0,0,10.738331797\r\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq-max2988/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 676.578691072, \"housekeeping\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}, \"cpus\": {\"1\": {\"freqs\": {\"600003\": {\"active\": {\"elapsed_sec\": 76.942870662, \"elapsed_ns\": 76942870662, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 4549.058345, \"coremarks_per_mhz\": 7.581725999703335, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"972012\": {\"active\": {\"elapsed_sec\": 47.335514397, \"elapsed_ns\": 47335514397, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 7394.418271, \"coremarks_per_mhz\": 7.607332287049954, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"1332005\": {\"active\": {\"elapsed_sec\": 34.560059641, \"elapsed_ns\": 34560059641, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 10127.607859, \"coremarks_per_mhz\": 7.603280662610125, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"1704004\": {\"active\": {\"elapsed_sec\": 27.106070388, \"elapsed_ns\": 27106070388, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 12912.746726, \"coremarks_per_mhz\": 7.577885219753005, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"2064060\": {\"active\": {\"elapsed_sec\": 22.342971219, \"elapsed_ns\": 22342971219, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 15665.562617, \"coremarks_per_mhz\": 7.589683738360319, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}}}, \"4\": {\"freqs\": {\"600003\": {\"active\": {\"elapsed_sec\": 53.467219484, \"elapsed_ns\": 53467219484, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 6546.338726, \"coremarks_per_mhz\": 10.910509990783378, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"828007\": {\"active\": {\"elapsed_sec\": 38.73220356, \"elapsed_ns\": 38732203560, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 9036.922282, \"coremarks_per_mhz\": 10.91406507674452, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"1056010\": {\"active\": {\"elapsed_sec\": 30.389134181, \"elapsed_ns\": 30389134181, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 11518.46245, \"coremarks_per_mhz\": 10.907531604814348, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"1284012\": {\"active\": {\"elapsed_sec\": 24.97139747, \"elapsed_ns\": 24971397470, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 14016.820184, \"coremarks_per_mhz\": 10.916424600393144, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"1500022\": {\"active\": {\"elapsed_sec\": 21.408863427, \"elapsed_ns\": 21408863427, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 16349.792124, \"coremarks_per_mhz\": 10.899701553710546, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"1728042\": {\"active\": {\"elapsed_sec\": 18.573413884, \"elapsed_ns\": 18573413884, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 18846.588767, \"coremarks_per_mhz\": 10.906325637339835, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"1956006\": {\"active\": {\"elapsed_sec\": 16.415781217, \"elapsed_ns\": 16415781217, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 21324.5598, \"coremarks_per_mhz\": 10.902093245112743, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"2184023\": {\"active\": {\"elapsed_sec\": 14.691074507, \"elapsed_ns\": 14691074507, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 23825.73179, \"coremarks_per_mhz\": 10.90910296732223, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"2388077\": {\"active\": {\"elapsed_sec\": 13.440009006, \"elapsed_ns\": 13440009006, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 26045.542491, \"coremarks_per_mhz\": 10.906491914205446, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"2592097\": {\"active\": {\"elapsed_sec\": 12.388484715, \"elapsed_ns\": 12388484715, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 28255.429079, \"coremarks_per_mhz\": 10.900606373526916, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"2772015\": {\"active\": {\"elapsed_sec\": 11.586383047, \"elapsed_ns\": 11586383047, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 30214.088398, \"coremarks_per_mhz\": 10.899684308346096, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}, \"2988008\": {\"active\": {\"elapsed_sec\": 10.738331797, \"elapsed_ns\": 10738331797, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0, \"coremark_score\": 32600.596125, \"coremarks_per_mhz\": 10.910478193164142, \"ulpmark_cm_score\": 0}, \"idle\": {\"elapsed_sec\": 5, \"elapsed_ns\": 5000000000, \"power_samples\": [0], \"power_mean\": 0, \"energy_millijoules\": 0, \"energy_joules\": 0}}}}}, \"meta\": {\"housekeeping_cpu\": 0, \"power_sample_interval\": 1000, \"cpu_count\": 8}}"
  },
  {
    "path": "results/t8103/corellium-cpufreq-max2988/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \nSampling power every 1000 ms\nBaseline power usage: 0 mW\n\n\n===== CPU 1 =====\nFrequencies: 600 972 1332 1704 2064\n\n 600:  4549     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    76.9 s\n 972:  7394     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    47.3 s\n1332: 10128     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    34.6 s\n1704: 12913     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    27.1 s\n2064: 15666     7.6 C/MHz      0 mW    0.0 J    0.0 I/mJ    22.3 s\n\n\n===== CPU 4 =====\nFrequencies: 600 828 1056 1284 1500 1728 1956 2184 2388 2592 2772 2988 3096 3144 3204\n\n 600:  6546     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    53.5 s\n 828:  9037     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    38.7 s\n1056: 11518     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    30.4 s\n1284: 14017     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    25.0 s\n1500: 16350     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    21.4 s\n1728: 18847     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    18.6 s\n1956: 21325     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    16.4 s\n2184: 23826     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    14.7 s\n2388: 26046     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    13.4 s\n2592: 28255     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    12.4 s\n2772: 30214     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    11.6 s\n2988: 32601     10.9 C/MHz      0 mW    0.0 J    0.0 I/mJ    10.7 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq-max2988/uptime.txt",
    "content": " 00:11:24 up 11 min,  load average: 0.58, 0.61, 0.39\n"
  },
  {
    "path": "results/t8103/corellium-cpufreq-max2988/versions.txt",
    "content": "Kernel: Linux version 5.15.0-rc2-12257-g9f0d1172e0ee-dirty (kdrag0n@pinwheel) (aarch64-linux-gnu-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37) #16 SMP PREEMPT Sun Sep 26 02:44:16 PDT 2021\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/zuma/main/cmdline.txt",
    "content": "console=ttynull stack_depot_disable=on cgroup_disable=pressure kasan.page_alloc.sample=10 kasan.stacktrace=off bootconfig ioremap_guard kvm-arm.mode=protected rcu_nocbs=0-8 isolcpus=1-8 nohz_full=1-8 loglevel=0 printk.devkmsg=on root=/dev/ram0 rw clocksource=arch_sys_counter clk_ignore_unused loop.max_part=7 loop.hw_queue_depth=31 coherent_pool=4M firmware_class.path=/vendor/firmware irqaffinity=0 swiotlb=noforce sysrq_always_enabled no_console_suspend softlockup_panic=1 kasan_multi_shot kvm-arm.protected_modules=exynos-pd,pkvm_s2mpu-v9 exynos_drm.load_sequential=1 g2d.load_sequential=1 samsung_iommu_v9.load_sequential=1 swiotlb=noforce disable_dma32=on printk.devkmsg=on cma_sysfs.experimental=Y cgroup_disable=memory rcupdate.rcu_expedited=1 rcu_nocbs=all stack_depot_disable=off page_pinner=on swiotlb=1024 cgroup.memory=nokmem sysctl.kernel.sched_pelt_multiplier=4 kasan=off at24.write_timeout=100 log_buf_len=1024K bootconfig console=null exynos_drm.panel_name=google-hk3.20800a tcpci_max77759.conf_sbu=0 arm64.nomte ufs_pixel_fips140.fips_first_lba=151942 ufs_pixel_fips140.fips_last_lba=152453 ufs_pixel_fips140.fips_lu=0 id_aa64mmfr1.vh=0  bootconfig\n"
  },
  {
    "path": "results/zuma/main/cpufreq_stats/0/time_in_state",
    "content": "324000 222206\n610000 21639\n820000 16308\n955000 14062\n1098000 12365\n1197000 11439\n1328000 10503\n1425000 9678\n1548000 9017\n1704000 8274\n"
  },
  {
    "path": "results/zuma/main/cpufreq_stats/0/total_trans",
    "content": "12\n"
  },
  {
    "path": "results/zuma/main/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    324000    610000    820000    955000   1098000   1197000   1328000   1425000   1548000   1704000 \n   324000:         0         1         0         0         0         0         0         0         0         1 \n   610000:         0         0         1         0         0         0         0         0         0         0 \n   820000:         0         0         0         1         0         0         0         0         0         0 \n   955000:         0         0         0         0         1         0         0         0         0         0 \n  1098000:         0         0         0         0         0         1         0         0         0         0 \n  1197000:         0         0         0         0         0         0         1         0         0         0 \n  1328000:         1         0         0         0         0         0         0         1         0         0 \n  1425000:         0         0         0         0         0         0         0         0         1         0 \n  1548000:         0         0         0         0         0         0         0         0         0         1 \n  1704000:         1         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/zuma/main/cpufreq_stats/4/time_in_state",
    "content": "402000 238409\n578000 12805\n697000 10755\n712000 10537\n910000 8435\n1065000 10445\n1221000 6493\n1328000 6032\n1418000 5701\n1572000 5219\n1836000 4587\n1945000 4370\n2130000 4065\n2245000 3900\n2367000 3737\n"
  },
  {
    "path": "results/zuma/main/cpufreq_stats/4/total_trans",
    "content": "16\n"
  },
  {
    "path": "results/zuma/main/cpufreq_stats/4/trans_table",
    "content": "   From  :    To\n         :    402000    578000    697000    712000    910000   1065000   1221000   1328000   1418000   1572000   1836000   1945000   2130000   2245000   2367000 \n   402000:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   578000:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n   697000:         0         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n   712000:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n   910000:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1065000:         1         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1221000:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  1328000:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  1418000:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  1572000:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  1836000:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  1945000:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2130000:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2245000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2367000:         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/zuma/main/cpufreq_stats/8/time_in_state",
    "content": "500000 124265\n880000 7169\n1164000 161907\n1298000 5122\n1557000 4409\n1745000 4018\n1885000 3784\n2049000 3549\n2147000 3421\n2294000 3254\n2363000 3183\n2556000 3001\n2687000 2895\n2850000 2779\n2914000 2733\n"
  },
  {
    "path": "results/zuma/main/cpufreq_stats/8/total_trans",
    "content": "16\n"
  },
  {
    "path": "results/zuma/main/cpufreq_stats/8/trans_table",
    "content": "   From  :    To\n         :    500000    880000   1164000   1298000   1557000   1745000   1885000   2049000   2147000   2294000   2363000   2556000   2687000   2850000   2914000 \n   500000:         0         1         0         0         0         0         0         0         0         0         0         0         0         0         0 \n   880000:         0         0         1         0         0         0         0         0         0         0         0         0         0         0         0 \n  1164000:         1         0         0         1         0         0         0         0         0         0         0         0         0         0         0 \n  1298000:         0         0         0         0         1         0         0         0         0         0         0         0         0         0         0 \n  1557000:         0         0         0         0         0         1         0         0         0         0         0         0         0         0         0 \n  1745000:         0         0         0         0         0         0         1         0         0         0         0         0         0         0         0 \n  1885000:         0         0         0         0         0         0         0         1         0         0         0         0         0         0         0 \n  2049000:         0         0         0         0         0         0         0         0         1         0         0         0         0         0         0 \n  2147000:         0         0         0         0         0         0         0         0         0         1         0         0         0         0         0 \n  2294000:         0         0         0         0         0         0         0         0         0         0         1         0         0         0         0 \n  2363000:         0         0         0         0         0         0         0         0         0         0         0         1         0         0         0 \n  2556000:         0         0         0         0         0         0         0         0         0         0         0         0         1         0         0 \n  2687000:         0         0         0         0         0         0         0         0         0         0         0         0         0         1         0 \n  2850000:         0         0         0         0         0         0         0         0         0         0         0         0         0         0         1 \n  2914000:         1         0         0         0         0         0         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/zuma/main/cpuinfo.txt",
    "content": "processor\t: 0\nBogoMIPS\t: 49.15\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bti\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x1\nCPU part\t: 0xd46\nCPU revision\t: 1\n\n"
  },
  {
    "path": "results/zuma/main/device.txt",
    "content": "Model: ZUMA HUSKY MP based on ZUMA;\nCompatible: google,ZUMA HUSKY;google,ZUMA;\n"
  },
  {
    "path": "results/zuma/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd461]\n[    0.000000] Linux version 5.15.110-Sultan (sultan@sultan-box) (aarch64-linux-gnu-gcc (GCC) 13.2.0, GNU ld (GNU Binutils) 2.41) #1 SMP PREEMPT Fri Oct 20 14:24:02 PDT 2023\n[    0.000000] Machine model: ZUMA HUSKY MP based on ZUMA\n[    0.000000] efi: UEFI not found.\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000009fe800000, size 24 MiB\n[    0.000000] OF: reserved mem: initialized node faprev, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: 0x00000009fe800000..0x00000009ffffffff (24576 KiB) map reusable faprev\n[    0.000000] OF: reserved mem: 0x00000009ee800000..0x00000009fe7fffff (262144 KiB) map non-reusable farawimg\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000009ed800000, size 16 MiB\n[    0.000000] OF: reserved mem: initialized node faceauth_dsp, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: 0x00000009ed800000..0x00000009ee7fffff (16384 KiB) map reusable faceauth_dsp\n[    0.000000] OF: reserved mem: 0x00000009e8d00000..0x00000009ed7fffff (76800 KiB) map non-reusable famodel\n[    0.000000] OF: reserved mem: 0x00000009dc500000..0x00000009e8cfffff (204800 KiB) map non-reusable gcma_camera\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000009d7c00000, size 72 MiB\n[    0.000000] OF: reserved mem: initialized node vstream, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: 0x00000009d7c00000..0x00000009dc3fffff (73728 KiB) map reusable vstream\n[    0.000000] OF: reserved mem: 0x00000000fe800000..0x00000000ffffffff (24576 KiB) map non-reusable tui\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000009d5c00000, size 32 MiB\n[    0.000000] OF: reserved mem: initialized node faceauth_tpu, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: 0x00000009d5c00000..0x00000009d7bfffff (32768 KiB) map reusable faceauth_tpu\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000009d2800000, size 52 MiB\n[    0.000000] OF: reserved mem: initialized node vscaler, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: 0x00000009d2800000..0x00000009d5bfffff (53248 KiB) map reusable vscaler\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000009b2800000, size 512 MiB\n[    0.000000] OF: reserved mem: initialized node vframe, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: 0x00000009b2800000..0x00000009d27fffff (524288 KiB) map reusable vframe\n[    0.000000] OF: reserved mem: 0x00000000fe5f0000..0x00000000fe7fffff (2112 KiB) map non-reusable mfc_fw\n[    0.000000] OF: reserved mem: 0x00000000197fd000..0x00000000197fffff (12 KiB) map non-reusable cp_aoc_rmem\n[    0.000000] OF: reserved mem: initialized node pkvm_guest_firmware, compatible id linux,pkvm-guest-firmware-memory\n[    0.000000] OF: reserved mem: 0x000000008b000000..0x000000008b06dfff (440 KiB) nomap non-reusable pkvm_guest_firmware\n[    0.000000] OF: reserved mem: 0x0000000090000000..0x0000000090039fff (232 KiB) map non-reusable ect_binary\n[    0.000000] OF: reserved mem: 0x0000000090200000..0x00000000905fefff (4092 KiB) nomap non-reusable gsa@0x90200000\n[    0.000000] OF: reserved mem: 0x00000000905ff000..0x00000000905fffff (4 KiB) nomap non-reusable gsa@0x905FF000\n[    0.000000] OF: reserved mem: 0x0000000091300000..0x00000000913fffff (1024 KiB) nomap non-reusable gxp_scratchpad@91300000\n[    0.000000] OF: reserved mem: 0x0000000091400000..0x0000000091cfffff (9216 KiB) nomap non-reusable gxp_secure_data@91400000\n[    0.000000] OF: reserved mem: 0x0000000091d00000..0x0000000091ffffff (3072 KiB) nomap non-reusable gxp_fw@91D00000\n[    0.000000] OF: reserved mem: 0x0000000092000000..0x00000000923fffff (4096 KiB) nomap non-reusable gxp_mcu_fw@0x92000000\n[    0.000000] OF: reserved mem: 0x0000000093000000..0x0000000093ffffff (16384 KiB) nomap non-reusable tpu_fw@0x93000000\n[    0.000000] OF: reserved mem: 0x0000000094000000..0x0000000096ffffff (49152 KiB) nomap non-reusable aoc@0x94000000\n[    0.000000] Reserved memory: created DMA memory pool at 0x0000000097000000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node xhci_dma@97000000, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: 0x0000000097000000..0x00000000973fffff (4096 KiB) nomap non-reusable xhci_dma@97000000\n[    0.000000] OF: reserved mem: 0x00000000c3000000..0x00000000c308ffff (576 KiB) map non-reusable seclog_mem\n[    0.000000] OF: reserved mem: 0x00000000d8100000..0x00000000d810ffff (64 KiB) nomap non-reusable header\n[    0.000000] OF: reserved mem: 0x00000000e8000000..0x00000000e9ffffff (32768 KiB) map non-reusable cp_rmem_1\n[    0.000000] OF: reserved mem: 0x00000000ea400000..0x00000000eaffffff (12288 KiB) map non-reusable cp_rmem\n[    0.000000] OF: reserved mem: 0x00000000f6200000..0x00000000f6200fff (4 KiB) map non-reusable cp_msi_rmem\n[    0.000000] OF: reserved mem: 0x00000000f8800000..0x00000000f97fffff (16384 KiB) nomap non-reusable abl@f8800000\n[    0.000000] OF: reserved mem: 0x00000000fd3f0000..0x00000000fd3fdfff (56 KiB) nomap non-reusable dss_log_reserved@fd3f0000\n[    0.000000] OF: reserved mem: 0x00000000fd3fe000..0x00000000fd3fefff (4 KiB) nomap non-reusable debug_kinfo_reserved@fd3fe000\n[    0.000000] OF: reserved mem: 0x00000000fd3ff000..0x00000000fd7fefff (4096 KiB) map non-reusable ramoops_mem@fd3ff000\n[    0.000000] OF: reserved mem: 0x00000000fd800000..0x00000000fd8fffff (1024 KiB) nomap non-reusable bldr_log_reserved@fd800000\n[    0.000000] kvm [0]: Reserved 64 MiB at 0xafbc00000\n[    0.000000] Zone ranges:\n[    0.000000]   Normal   [mem 0x0000000080000000-0x0000000affffffff]\n[    0.000000] Movable zone start for each node\n[    0.000000] Early memory node ranges\n[    0.000000]   node   0: [mem 0x0000000080000000-0x000000008affffff]\n[    0.000000]   node   0: [mem 0x000000008b000000-0x000000008b06dfff]\n[    0.000000]   node   0: [mem 0x000000008b06e000-0x00000000901fffff]\n[    0.000000]   node   0: [mem 0x0000000090200000-0x00000000905fffff]\n[    0.000000]   node   0: [mem 0x0000000090600000-0x00000000912fffff]\n[    0.000000]   node   0: [mem 0x0000000091300000-0x00000000923fffff]\n[    0.000000]   node   0: [mem 0x0000000092400000-0x0000000092ffffff]\n[    0.000000]   node   0: [mem 0x0000000093000000-0x00000000973fffff]\n[    0.000000]   node   0: [mem 0x0000000097400000-0x00000000b61fffff]\n[    0.000000]   node   0: [mem 0x00000000c0000000-0x00000000d80fffff]\n[    0.000000]   node   0: [mem 0x00000000d8100000-0x00000000d810ffff]\n[    0.000000]   node   0: [mem 0x00000000d8110000-0x00000000dfffffff]\n[    0.000000]   node   0: [mem 0x00000000e3800000-0x00000000f87fffff]\n[    0.000000]   node   0: [mem 0x00000000f8800000-0x00000000f97fffff]\n[    0.000000]   node   0: [mem 0x00000000f9800000-0x00000000fd3effff]\n[    0.000000]   node   0: [mem 0x00000000fd3f0000-0x00000000fd3fefff]\n[    0.000000]   node   0: [mem 0x00000000fd3ff000-0x00000000fd7fffff]\n[    0.000000]   node   0: [mem 0x00000000fd800000-0x00000000fd8fffff]\n[    0.000000]   node   0: [mem 0x00000000fd900000-0x00000000ffffffff]\n[    0.000000]   node   0: [mem 0x0000000880000000-0x0000000affffffff]\n[    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x0000000affffffff]\n[    0.000000] On node 0, zone Normal: 7680 pages in unavailable ranges\n[    0.000000] On node 0, zone Normal: 14336 pages in unavailable ranges\n[    0.000000] cma: Reserved 16 MiB at 0x0000000880000000\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.2\n[    0.000000] Load bootconfig: 3981 bytes 132 nodes\n[    0.000000] percpu: Embedded 30 pages/cpu s91864 r0 d31016 u122880\n[    0.000000] pcpu-alloc: s91864 r0 d31016 u122880 alloc=30*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] pcpu-alloc: [0] 8 \n[    0.000000] Detected PIPT I-cache on CPU0\n[    0.000000] CPU features: SYS_ID_AA64MMFR1_EL1[11:8]: forced to 0\n[    0.000000] CPU features: SYS_ID_AA64PFR1_EL1[11:8]: forced to 0\n[    0.000000] CPU features: detected: Address authentication (architected QARMA5 algorithm)\n[    0.000000] CPU features: detected: GIC system register CPU interface\n[    0.000000] CPU features: detected: Hardware dirty bit management\n[    0.000000] CPU features: detected: Spectre-v4\n[    0.000000] CPU features: kernel page table isolation disabled by kernel configuration\n[    0.000000] CPU features: detected: ARM erratum 2457168\n[    0.000000] CPU features: detected: ARM erratum 2658417\n[    0.000000] CPU features: detected: Qualcomm erratum 1009, or ARM erratum 1286807, 2441009\n[    0.000000] alternatives: patching kernel code\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 3042648\n[    0.000000] Kernel command line: console=ttynull stack_depot_disable=on cgroup_disable=pressure kasan.page_alloc.sample=10 kasan.stacktrace=off bootconfig ioremap_guard kvm-arm.mode=protected rcu_nocbs=0-8 isolcpus=1-8 nohz_full=1-8 loglevel=0 printk.devkmsg=on root=/dev/ram0 rw clocksource=arch_sys_counter clk_ignore_unused loop.max_part=7 loop.hw_queue_depth=31 coherent_pool=4M firmware_class.path=/vendor/firmware irqaffinity=0 swiotlb=noforce sysrq_always_enabled no_console_suspend softlockup_panic=1 kasan_multi_shot kvm-arm.protected_modules=exynos-pd,pkvm_s2mpu-v9 exynos_drm.load_sequential=1 g2d.load_sequential=1 samsung_iommu_v9.load_sequential=1 swiotlb=noforce disable_dma32=on printk.devkmsg=on cma_sysfs.experimental=Y cgroup_disable=memory rcupdate.rcu_expedited=1 rcu_nocbs=all stack_depot_disable=off page_pinner=on swiotlb=1024 cgroup.memory=nokmem sysctl.kernel.sched_pelt_multiplier=4 kasan=off at24.write_timeout=100 log_buf_len=1024K bootconfig console=null exynos_drm.panel\n[    0.000000] sysrq: sysrq always enabled.\n[    0.000000] Unknown kernel command line parameters \"kasan_multi_shot stack_depot_disable=off softlockup_panic=1 page_pinner=on kasan=off\", will be passed to user space.\n[    0.000000] printk: log_buf_len: 1048576 bytes\n[    0.000000] printk: early log buf free: 121432(92%)\n[    0.000000] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)\n[    0.000000] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)\n[    0.000000] mem auto-init: stack:all(zero), heap alloc:on, heap free:off\n[    0.000000] Memory: 10524588K/12363776K available (21312K kernel code, 3874K rwdata, 7052K rodata, 10944K init, 882K bss, 1097812K reserved, 741376K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=9, Nodes=1\n[    0.000000] trace event string verifier disabled\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU dyntick-idle grace-period acceleration is enabled.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTrampoline variant of Tasks RCU enabled.\n[    0.000000] \tTracing variant of Tasks RCU enabled.\n[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode\n[    0.000000] GICv3: 960 SPIs implemented\n[    0.000000] GICv3: 0 Extended SPIs implemented\n[    0.000000] GICv3: Distributor has no Range Selector support\n[    0.000000] Root IRQ handler: gic_handle_irq\n[    0.000000] GICv3: 16 PPIs implemented\n[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000010440000\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-8.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-8.\n[    0.000000] arch_timer: cp15 timer(s) running at 24.57MHz (phys).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x5ab00a189, max_idle_ns: 440795202599 ns\n[    0.000003] sched_clock: 56 bits at 24MHz, resolution 40ns, wraps every 4398046511099ns\n[    0.003266] random: crng init done\n[    0.003531] Calibrating delay loop (skipped), value calculated using timer frequency.. 49.15 BogoMIPS (lpj=245760)\n[    0.003565] pid_max: default: 32768 minimum: 301\n[    0.003622] LSM: Security Framework initializing\n[    0.003668] SELinux:  Initializing.\n[    0.003896] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)\n[    0.003955] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)\n[    0.006513] rcu: Hierarchical SRCU implementation.\n[    0.007952] EFI services will not be available.\n[    0.008334] smp: Bringing up secondary CPUs ...\n[    0.009871] Detected PIPT I-cache on CPU1\n[    0.009939] GICv3: CPU1: found redistributor 100 region 0:0x0000000010460000\n[    0.010027] CPU1: Booted secondary processor 0x0000000100 [0x411fd461]\n[    0.011333] Detected PIPT I-cache on CPU2\n[    0.011374] GICv3: CPU2: found redistributor 200 region 0:0x0000000010480000\n[    0.011433] CPU2: Booted secondary processor 0x0000000200 [0x411fd461]\n[    0.012535] Detected PIPT I-cache on CPU3\n[    0.012566] GICv3: CPU3: found redistributor 300 region 0:0x00000000104a0000\n[    0.012624] CPU3: Booted secondary processor 0x0000000300 [0x411fd461]\n[    0.013527] Detected PIPT I-cache on CPU4\n[    0.013536] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64MMFR1_EL1. Boot CPU: 0x00000011312122, CPU4: 0x00000010312122\n[    0.013545] CPU features: Unsupported CPU feature variation detected.\n[    0.013562] GICv3: CPU4: found redistributor 400 region 0:0x00000000104c0000\n[    0.013599] CPU4: Booted secondary processor 0x0000000400 [0x411fd4d0]\n[    0.014515] Detected PIPT I-cache on CPU5\n[    0.014523] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64MMFR1_EL1. Boot CPU: 0x00000011312122, CPU5: 0x00000010312122\n[    0.014547] GICv3: CPU5: found redistributor 500 region 0:0x00000000104e0000\n[    0.014589] CPU5: Booted secondary processor 0x0000000500 [0x411fd4d0]\n[    0.015601] Detected PIPT I-cache on CPU6\n[    0.015611] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64MMFR1_EL1. Boot CPU: 0x00000011312122, CPU6: 0x00000010312122\n[    0.015638] GICv3: CPU6: found redistributor 600 region 0:0x0000000010500000\n[    0.015679] CPU6: Booted secondary processor 0x0000000600 [0x411fd4d0]\n[    0.016575] Detected PIPT I-cache on CPU7\n[    0.016585] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64MMFR1_EL1. Boot CPU: 0x00000011312122, CPU7: 0x00000010312122\n[    0.016612] GICv3: CPU7: found redistributor 700 region 0:0x0000000010520000\n[    0.016655] CPU7: Booted secondary processor 0x0000000700 [0x411fd4d0]\n[    0.017941] Detected PIPT I-cache on CPU8\n[    0.017948] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64MMFR1_EL1. Boot CPU: 0x00000011312122, CPU8: 0x00000010312122\n[    0.017974] GICv3: CPU8: found redistributor 800 region 0:0x0000000010540000\n[    0.018011] CPU8: Booted secondary processor 0x0000000800 [0x411fd4e0]\n[    0.018090] smp: Brought up 1 node, 9 CPUs\n[    0.018110] SMP: Total of 9 processors activated.\n[    0.018118] CPU features: detected: Branch Target Identification\n[    0.018126] CPU features: detected: ARMv8.4 Translation Table Level\n[    0.018132] CPU features: detected: Data cache clean to the PoU not required for I/D coherence\n[    0.018139] CPU features: detected: Common not Private translations\n[    0.018143] CPU features: detected: CRC32 instructions\n[    0.018146] CPU features: detected: E0PD\n[    0.018150] CPU features: detected: Enhanced Privileged Access Never\n[    0.018156] CPU features: detected: Generic authentication (architected QARMA5 algorithm)\n[    0.018162] CPU features: detected: RCpc load-acquire (LDAPR)\n[    0.018167] CPU features: detected: LSE atomic instructions\n[    0.018172] CPU features: detected: Privileged Access Never\n[    0.018175] CPU features: detected: RAS Extension Support\n[    0.018178] CPU features: detected: Speculation barrier (SB)\n[    0.018180] CPU features: detected: Stage-2 Force Write-Back\n[    0.018183] CPU features: detected: TLB range maintenance instructions\n[    0.018191] CPU features: detected: Protected KVM\n[    0.018194] CPU features: detected: Speculative Store Bypassing Safe (SSBS)\n[    0.018197] CPU features: detected: Scalable Vector Extension\n[    0.037834] CPU features: detected CPU8: Activity Monitors Unit (AMU)\n[    0.037835] CPU features: detected CPU4: Activity Monitors Unit (AMU)\n[    0.037836] CPU features: detected CPU6: Activity Monitors Unit (AMU)\n[    0.037836] CPU features: detected CPU5: Activity Monitors Unit (AMU)\n[    0.037836] CPU features: detected CPU3: Activity Monitors Unit (AMU)\n[    0.037836] CPU features: detected CPU2: Activity Monitors Unit (AMU)\n[    0.037836] CPU features: detected CPU0: Activity Monitors Unit (AMU)\n[    0.037835] CPU features: detected CPU7: Activity Monitors Unit (AMU)\n[    0.037840] CPU features: detected CPU1: Activity Monitors Unit (AMU)\n[    0.037889] SVE: maximum available vector length 16 bytes per vector\n[    0.037898] SVE: default vector length 16 bytes per vector\n[    0.050179] CPU: All CPU(s) started at EL2\n[    0.092723] KASLR enabled\n[    0.092907] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.092994] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)\n[    0.114431] pinctrl core: initialized pinctrl subsystem\n[    0.115856] NET: Registered PF_NETLINK/PF_ROUTE protocol family\n[    0.119364] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations\n[    0.119831] thermal_sys: Registered thermal governor 'step_wise'\n[    0.119842] thermal_sys: Registered thermal governor 'user_space'\n[    0.119846] thermal_sys: Registered thermal governor 'power_allocator'\n[    0.125584] cpuidle: using governor teo\n[    0.126106] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.126373] ASID allocator initialised with 65536 entries\n[    0.127086] printk: console [ramoops-1] enabled\n[    0.127167] pstore: Registered ramoops as persistent store backend\n[    0.127175] ramoops: using 0x400000@0xfd3ff000, ecc: 0\n[    0.227727] iommu: Default domain type: Translated \n[    0.227738] iommu: DMA domain TLB invalidation policy: strict mode \n[    0.228266] SCSI subsystem initialized\n[    0.228384] usbcore: registered new interface driver usbfs\n[    0.228411] usbcore: registered new interface driver hub\n[    0.228441] usbcore: registered new device driver usb\n[    0.228563] mc: Linux media interface: v0.10\n[    0.228586] videodev: Linux video capture interface: v2.00\n[    0.228635] pps_core: LinuxPPS API ver. 1 registered\n[    0.228640] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>\n[    0.228654] PTP clock support registered\n[    0.228679] EDAC MC: Ver: 3.0.0\n[    0.229522] Advanced Linux Sound Architecture Driver Initialized.\n[    0.230702] clocksource: Switched to clocksource arch_sys_counter\n[    0.286820] VFS: Disk quotas dquot_6.6.0\n[    0.286922] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.287837] NET: Registered PF_INET protocol family\n[    0.288442] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)\n[    0.294484] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)\n[    0.294628] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)\n[    0.294869] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)\n[    0.295593] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)\n[    0.296236] TCP: Hash tables configured (established 131072 bind 65536)\n[    0.296453] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)\n[    0.296683] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)\n[    0.297003] NET: Registered PF_UNIX/PF_LOCAL protocol family\n[    0.297046] NET: Registered PF_XDP protocol family\n[    0.297066] PCI: CLS 0 bytes, default 64\n[    0.333873] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available\n[    0.334697] kvm [1]: IPA Size Limit: 40 bits\n[    0.461968] kvm [1]: GICv3: no GICV resource entry\n[    0.461990] kvm [1]: disabling GICv2 emulation\n[    0.462027] kvm [1]: GIC system register CPU interface enabled\n[    0.462341] kvm [1]: vgic interrupt IRQ9\n[    0.462987] kvm [1]: Protected nVHE mode initialized successfully\n[    0.465173] Initialise system trusted keyrings\n[    0.480851] workingset: timestamp_bits=62 max_order=22 bucket_order=0\n[    0.483899] fuse: init (API version 7.34)\n[    0.587854] Key type asymmetric registered\n[    0.587870] Asymmetric key parser 'x509' registered\n[    0.587983] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 240)\n[    0.588047] io scheduler mq-deadline registered\n[    0.588146] io scheduler bfq registered\n[    0.608554] printk: console [ttynull0] enabled\n[    0.609050] cacheinfo: Unable to detect cache hierarchy for CPU 0\n[    0.625289] brd: module loaded\n[    0.629147] loop: module loaded\n[    0.630764] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.\n[    0.630774] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    0.631217] MACsec IEEE 802.1AE\n[    0.631757] tun: Universal TUN/TAP device driver, 1.6\n[    0.632713] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver\n[    0.632730] ehci-pci: EHCI PCI platform driver\n[    0.632765] ehci-platform: EHCI generic platform driver\n[    0.640981] usbcore: registered new interface driver uas\n[    0.641014] usbcore: registered new interface driver usb-storage\n[    0.641353] usbcore: registered new interface driver xpad\n[    0.641468] usbcore: registered new interface driver uvcvideo\n[    0.641475] gspca_main: v2.14.0 registered\n[    0.641888] device-mapper: uevent: version 1.0.3\n[    0.642027] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com\n[    0.662170] sdhci: Secure Digital Host Controller Interface driver\n[    0.662180] sdhci: Copyright(c) Pierre Ossman\n[    0.662185] sdhci-pltfm: SDHCI platform and OF driver helper\n[    0.663213] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....\n[    0.663262] hid: raw HID events driver (C) Jiri Kosina\n[    0.663944] usbcore: registered new interface driver usbhid\n[    0.663954] usbhid: USB HID core driver\n[    0.664120] ashmem: initialized\n[    0.664210] gnss: GNSS driver registered with major 510\n[    0.666378] usbcore: registered new interface driver snd-usb-audio\n[    0.666902] GACT probability NOT on\n[    0.666933] Mirror/redirect action on\n[    0.666966] netem: version 1.3\n[    0.666989] u32 classifier\n[    0.666993]     input device check on\n[    0.666995]     Actions configured\n[    0.669338] xt_time: kernel timezone is -0000\n[    0.669439] ipip: IPv4 and MPLS over IPv4 tunneling driver\n[    0.669797] gre: GRE over IPv4 demultiplexor driver\n[    0.669807] ip_gre: GRE over IPv4 tunneling driver\n[    0.670524] IPv4 over IPsec tunneling driver\n[    0.670918] Initializing XFRM netlink socket\n[    0.670955] IPsec XFRM device driver\n[    0.671246] NET: Registered PF_INET6 protocol family\n[    0.681651] Segment Routing with IPv6\n[    0.681689] In-situ OAM (IOAM) with IPv6\n[    0.681785] mip6: Mobile IPv6\n[    0.682238] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    0.682884] ip6_gre: GRE over IPv6 tunneling driver\n[    0.683233] NET: Registered PF_PACKET protocol family\n[    0.683275] NET: Registered PF_KEY protocol family\n[    0.683427] NET: Registered PF_VSOCK protocol family\n[    0.741713] Freeing initrd memory: 30932K\n[    0.742587] loading exynos-pd from /lib/modules/ failed, fallback to the default path\n[    0.743031] Failed to load pkvm module exynos-pd: -2\n[    0.743042] kvm [1]: Clearing unused pKVM firmware memory\n[    0.744498] registered taskstats version 1\n[    0.744526] Loading compiled-in X.509 certificates\n[    0.745565] Key type .fscrypt registered\n[    0.745572] Key type fscrypt-provisioning registered\n[    0.745787] pstore: Invalid compression size for deflate: 0\n[    0.748255] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.751677] exynos-pmu-if 15460000.exynos-pmu: exynos_pmu_if probe\n[    0.751925] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.752513] gs-acpm-ipc 15110000.acpm_ipc: acpm_ipc probe\n[    0.753472] [ACPM] acpm framework SRAM dump to dram base: 0x87980000\n[    0.753645] gs-acpm-ipc 15110000.acpm_ipc: acpm_ipc probe done.\n[    0.754012] gs-acpm 15440000.acpm: acpm probe\n[    0.754023] gs-acpm 15440000.acpm: acpm probe done.\n[    0.755727] gs-chipid 10000000.chipid: CPU[ZUMA]B0 CPU_REV[0x1] Detected\n[    0.756229] ect_probe: Reserved memory for ect: addr=0x0000000090000000, size=3a000\n[    0.756255] exynos-ect exynos-ect: Exynos ect driver probe done!\n[    0.756692] ECT version: 1041\n[    0.757955] vclk initialize for cmucal\n[    0.760936] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.762721] cannot found vclk node f\n[    0.762899] zuma_cal_data_init: cal data init\n[    0.765592] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.767140] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.767462] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.767674] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.767882] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.768078] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.768277] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.768468] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.768668] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.768864] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.769057] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.769248] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.769436] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.769644] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.769829] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.770028] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.770218] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.770407] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.770600] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.771139] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.771578] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.771783] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.771985] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.772178] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.772381] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.772571] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.772884] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.773246] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.773440] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.773635] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.773908] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.774205] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.774402] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.774615] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.774855] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.775046] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.775330] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.775529] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.775725] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.775924] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.776114] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.776311] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.776500] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.776703] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.776897] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.777091] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.777636] gpio-keys gpio_keys: ignoring dependency for device, assuming no driver\n[    0.779444] gpio-keys gpio_keys: Unable to get irq number for GPIO 0, error -6\n[    0.782025] samsung-pinctrl 16140000.pinctrl: irq number not available\n[    0.782176] samsung-pinctrl 16280000.pinctrl: irq number not available\n[    0.782333] samsung-pinctrl 16290000.pinctrl: irq number not available\n[    0.782504] samsung-pinctrl 162a0000.pinctrl: irq number not available\n[    0.782661] samsung-pinctrl 162b0000.pinctrl: irq number not available\n[    0.786774] ZUMA: Clock setup completed\n[    0.787483] exynos-mct: osc-24576000 rtc-32768 incr_rtcclk:0x000002ee compen_val:0x00000000\n[    0.788098] clocksource: mct-frc: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 77769386669 ns\n[    0.790083] exynos-pd 15461a80.pd-g3d: on\n[    0.790554] exynos-pd 15461c80.pd-embedded_g3d: on\n[    0.790605] exynos-pd 15461a80.pd-g3d: has new subdomain pd-embedded_g3d\n[    0.791067] exynos-pd 15461d00.pd-dpub: on\n[    0.791156] exynos-pd 15461d80.pd-dpuf0: on\n[    0.791189] exynos-pd 15461d00.pd-dpub: has new subdomain pd-dpuf0\n[    0.791366] exynos-pd 15461e00.pd-dpuf1: on\n[    0.791399] exynos-pd 15461d00.pd-dpub: has new subdomain pd-dpuf1\n[    0.791565] exynos-pd 15461e80.pd-g2d: on\n[    0.791636] exynos-pd 15461f00.pd-gdc: on\n[    0.791706] exynos-pd 15461f80.pd-gse: on\n[    0.791779] exynos-pd 15462000.pd-mcsc: on\n[    0.791856] exynos-pd 15462080.pd-mfc: on\n[    0.791934] exynos-pd 15462100.pd-rgbp: on\n[    0.792014] exynos-pd 15462180.pd-tnr: on\n[    0.792086] exynos-pd 15462200.pd-yuvp: on\n[    0.792160] exynos-pd 15462300.pd-aur: on\n[    0.792228] exynos-pd 15462380.pd-bw: on\n[    0.792297] exynos-pd 15462400.pd-eh: on\n[    0.792364] exynos-pd 15462480.pd-ispfe: on\n[    0.792433] exynos-pd 15462500.pd-tpu: on\n[    0.792505] exynos-pd 15462a80.pd-hsi0: on\n[    1.057900] pkvm-s2mpu-v9 20a80000.s2mpu_s0_aur: registered with hypervisor [0/27]\n[    1.058444] pkvm-s2mpu-v9 1a670000.s2mpu_s0_bw: registered with hypervisor [1/27]\n[    1.058802] pkvm-s2mpu-v9 29c50000.s2mpu_s0_cpucl0: registered with hypervisor [2/27]\n[    1.059155] pkvm-s2mpu-v9 19870000.s2mpu_s0_dpuf0: registered with hypervisor [3/27]\n[    1.059469] pkvm-s2mpu-v9 19c70000.s2mpu_s0_dpuf1: registered with hypervisor [4/27]\n[    1.059835] pkvm-s2mpu-v9 16c70000.s2mpu_s0_eh: registered with hypervisor [5/27]\n[    1.060298] pkvm-s2mpu-v9 1a8a0000.s2mpu_s0_g2d: registered with hypervisor [6/27]\n[    1.060607] pkvm-s2mpu-v9 1ee70000.s2mpu_s0_g3d: registered with hypervisor [7/27]\n[    1.061071] pkvm-s2mpu-v9 1d4f0000.s2mpu_s0_gdc: registered with hypervisor [8/27]\n[    1.061518] pkvm-s2mpu-v9 1d8a0000.s2mpu_s0_gse: registered with hypervisor [9/27]\n[    1.061866] pkvm-s2mpu-v9 11070000.s2mpu_s0_hsi0: registered with hypervisor [10/27]\n[    1.062089] pkvm-s2mpu-v9 12090000.s2mpu_s0_hsi1: registered with hypervisor [11/27]\n[    1.062566] pkvm-s2mpu-v9 131f0000.s2mpu_s0_hsi2: registered with hypervisor [12/27]\n[    1.063192] pkvm-s2mpu-v9 1c140000.s2mpu_s0_ispfe: registered with hypervisor [13/27]\n[    1.063562] pkvm-s2mpu-v9 1c180000.s2mpu_s1_ispfe: registered with hypervisor [14/27]\n[    1.063925] pkvm-s2mpu-v9 1c1c0000.s2mpu_s2_ispfe: registered with hypervisor [15/27]\n[    1.064346] pkvm-s2mpu-v9 1d0d0000.s2mpu_s0_mcsc: registered with hypervisor [16/27]\n[    1.064772] pkvm-s2mpu-v9 1a4a0000.s2mpu_s0_mfc: registered with hypervisor [17/27]\n[    1.065165] pkvm-s2mpu-v9 101f0000.s2mpu_s0_misc: registered with hypervisor [18/27]\n[    1.065864] pkvm-s2mpu-v9 1c4d0000.s2mpu_s0_rgbp: registered with hypervisor [19/27]\n[    1.066230] pkvm-s2mpu-v9 1c510000.s2mpu_s1_rgbp: registered with hypervisor [20/27]\n[    1.066648] pkvm-s2mpu-v9 1ccb0000.s2mpu_s0_tnr: registered with hypervisor [21/27]\n[    1.067054] pkvm-s2mpu-v9 1ccf0000.s2mpu_s1_tnr: registered with hypervisor [22/27]\n[    1.067459] pkvm-s2mpu-v9 1cd30000.s2mpu_s2_tnr: registered with hypervisor [23/27]\n[    1.067837] pkvm-s2mpu-v9 1a370000.s2mpu_s0_tpu: registered with hypervisor [24/27]\n[    1.068156] pkvm-s2mpu-v9 1c8a0000.s2mpu_s0_yuvp: registered with hypervisor [25/27]\n[    1.068515] pkvm-s2mpu-v9 16470000.s2mpu_s0_gsa: registered with hypervisor [26/27]\n[    1.069409] List of devices successfully finalized for pkvm s2mpu\n[    1.071291] trusty trusty: trusty version: Project: ripcurrent, Build: 10588524, Built: 21:43:06 Jul 31 2023\n[    1.071324] trusty trusty: selected api version: 5 (requested 5)\n[    1.094113] sbb-mux: Initializing signal [0, '0']...\n[    1.094151] sbb-mux: Initializing signal [1, '1']...\n[    1.094166] sbb-mux: Initializing signal [2, 'kernel_test']...\n[    1.094180] sbb-mux: Initializing signal [3, 'userland_test']...\n[    1.094194] sbb-mux: Initializing signal [4, 'gp_region_0']...\n[    1.094207] sbb-mux: Initializing signal [5, 'gp_region_1']...\n[    1.094221] sbb-mux: Initializing signal [6, 'gp_region_2']...\n[    1.094235] sbb-mux: Initializing signal [7, 'gp_region_3']...\n[    1.094246] sbb-mux: Initializing signal [8, 'k_gp_region_0']...\n[    1.094259] sbb-mux: Initializing signal [9, 'k_gp_region_1']...\n[    1.094280] sbb-mux: Initializing signal [10, 'k_gp_region_2']...\n[    1.094293] sbb-mux: Initializing signal [11, 'k_gp_region_3']...\n[    1.094308] sbb-mux: Initializing signal [12, 'app_misc0']...\n[    1.094319] sbb-mux: Initializing signal [13, 'app_misc1']...\n[    1.094333] sbb-mux: Initializing signal [14, 'app_misc2']...\n[    1.094345] sbb-mux: Initializing signal [15, 'app_misc3']...\n[    1.094356] sbb-mux: Initializing signal [16, 'app_misc4']...\n[    1.094373] sbb-mux: Initializing signal [17, 'app_misc5']...\n[    1.094390] sbb-mux: Initializing signal [18, 'app_misc6']...\n[    1.094403] sbb-mux: Initializing signal [19, 'app_misc7']...\n[    1.094415] sbb-mux: Initializing signal [20, 'app_misc8']...\n[    1.094427] sbb-mux: Initializing signal [21, 'app_misc9']...\n[    1.094449] sbb-mux: Initializing signal [22, 'cam_misc0']...\n[    1.094460] sbb-mux: Initializing signal [23, 'cam_misc1']...\n[    1.094470] sbb-mux: Initializing signal [24, 'cam_misc2']...\n[    1.094483] sbb-mux: Initializing signal [25, 'cam_misc3']...\n[    1.094499] sbb-mux: Initializing signal [26, 'cam_misc4']...\n[    1.094511] sbb-mux: Initializing signal [27, 'cam_misc5']...\n[    1.094529] sbb-mux: Initializing signal [28, 'cam_misc6']...\n[    1.094539] sbb-mux: Initializing signal [29, 'cam_misc7']...\n[    1.094550] sbb-mux: Initializing signal [30, 'cam_misc8']...\n[    1.094561] sbb-mux: Initializing signal [31, 'cam_misc9']...\n[    1.094851] sbb-mux: Calling sbb_mux_drv_probe!\n[    1.094890] sbb-mux: Num GPIOs: 3.\n[    1.094915] sbb-mux: GPIO system id: 33.\n[    1.094969] Correctly initialized GPIO tracker #33 for GPIO C1_T0__XAPC_USI5_RXD_CLK_SCL!\n[    1.094990] sbb-mux: GPIO system id: 54.\n[    1.095015] Correctly initialized GPIO tracker #54 for GPIO C1_T1__XAPC_USI14_CTSN_CSN!\n[    1.095030] sbb-mux: GPIO system id: 0.\n[    1.095051] Correctly initialized GPIO tracker #0 for GPIO C1_T2__XAPC_GPIO0!\n[    1.095169] sbb-mux: Registered! :D\n[    1.096479] s5910_spmi_driver 0-05: 0 0 0x215 0xf\n[    1.096490] s5910_spmi_driver 0-05: 1 1000 0x20e 0x4\n[    1.096498] s5910_spmi_driver 0-05: 2 0 0x240 0x10\n[    1.103532] dma-pl330 10110000.pdma0: Loaded driver for PL330 DMAC-341330\n[    1.103542] dma-pl330 10110000.pdma0: \tDBUFF-32x4bytes Num_Chans-8 Num_Peri-32 Num_Events-32\n[    1.108250] dma-pl330 10130000.pdma1: Loaded driver for PL330 DMAC-341330\n[    1.108258] dma-pl330 10130000.pdma1: \tDBUFF-32x4bytes Num_Chans-8 Num_Peri-32 Num_Events-32\n[    1.108866] keydebug_parse_dt: DT:key_down_delay=6000 dbg_fn_delay=2000 keys_down num_keys=2\n[    1.108873] keydebug_parse_dt: DT:keys_down=116\n[    1.108877] keydebug_parse_dt: DT:keys_down=115\n[    1.109593] i2c_dev: i2c /dev entries driver\n[    1.109901] i2c-acpm acpm_mfd_bus@15510000: acpm mfd bus driver probe started\n[    1.111363] i2c-acpm acpm_mfd_bus@15510000: acpm mfd bus driver probe was succeeded\n[    1.111513] i2c-acpm acpm_mfd_bus@15500000: acpm mfd bus driver probe started\n[    1.111981] i2c-acpm acpm_mfd_bus@15500000: acpm mfd bus driver probe was succeeded\n[    1.121982] samsung-sysmmu-v9 1a640000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.123702] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 26 in pmmu0,stream_property is ignored. (max:26)\n[    1.123712] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 27 in pmmu0,stream_property is ignored. (max:26)\n[    1.123718] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 28 in pmmu0,stream_property is ignored. (max:26)\n[    1.123723] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 29 in pmmu0,stream_property is ignored. (max:26)\n[    1.123728] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 30 in pmmu0,stream_property is ignored. (max:26)\n[    1.123734] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 31 in pmmu0,stream_property is ignored. (max:26)\n[    1.123742] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 32 in pmmu0,stream_property is ignored. (max:26)\n[    1.123747] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 33 in pmmu0,stream_property is ignored. (max:26)\n[    1.123753] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 34 in pmmu0,stream_property is ignored. (max:26)\n[    1.123759] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 35 in pmmu0,stream_property is ignored. (max:26)\n[    1.123764] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 36 in pmmu0,stream_property is ignored. (max:26)\n[    1.123770] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 37 in pmmu0,stream_property is ignored. (max:26)\n[    1.123775] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 38 in pmmu0,stream_property is ignored. (max:26)\n[    1.123781] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 39 in pmmu0,stream_property is ignored. (max:26)\n[    1.123788] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 40 in pmmu0,stream_property is ignored. (max:26)\n[    1.123794] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 41 in pmmu0,stream_property is ignored. (max:26)\n[    1.123801] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 42 in pmmu0,stream_property is ignored. (max:26)\n[    1.123806] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 43 in pmmu0,stream_property is ignored. (max:26)\n[    1.123812] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 44 in pmmu0,stream_property is ignored. (max:26)\n[    1.123818] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 45 in pmmu0,stream_property is ignored. (max:26)\n[    1.123824] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 46 in pmmu0,stream_property is ignored. (max:26)\n[    1.123830] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 47 in pmmu0,stream_property is ignored. (max:26)\n[    1.123836] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 48 in pmmu0,stream_property is ignored. (max:26)\n[    1.123841] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 49 in pmmu0,stream_property is ignored. (max:26)\n[    1.123848] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 50 in pmmu0,stream_property is ignored. (max:26)\n[    1.123854] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 51 in pmmu0,stream_property is ignored. (max:26)\n[    1.123868] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 25 in pmmu1,stream_property is ignored. (max:25)\n[    1.123875] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 26 in pmmu1,stream_property is ignored. (max:25)\n[    1.123883] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 27 in pmmu1,stream_property is ignored. (max:25)\n[    1.123888] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 28 in pmmu1,stream_property is ignored. (max:25)\n[    1.123895] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 29 in pmmu1,stream_property is ignored. (max:25)\n[    1.123901] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 30 in pmmu1,stream_property is ignored. (max:25)\n[    1.123908] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 31 in pmmu1,stream_property is ignored. (max:25)\n[    1.123913] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 32 in pmmu1,stream_property is ignored. (max:25)\n[    1.123919] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 33 in pmmu1,stream_property is ignored. (max:25)\n[    1.123924] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 34 in pmmu1,stream_property is ignored. (max:25)\n[    1.123930] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 35 in pmmu1,stream_property is ignored. (max:25)\n[    1.123935] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 36 in pmmu1,stream_property is ignored. (max:25)\n[    1.123941] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 37 in pmmu1,stream_property is ignored. (max:25)\n[    1.123947] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 38 in pmmu1,stream_property is ignored. (max:25)\n[    1.123953] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 39 in pmmu1,stream_property is ignored. (max:25)\n[    1.123958] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 40 in pmmu1,stream_property is ignored. (max:25)\n[    1.123963] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 41 in pmmu1,stream_property is ignored. (max:25)\n[    1.123969] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 42 in pmmu1,stream_property is ignored. (max:25)\n[    1.123974] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 43 in pmmu1,stream_property is ignored. (max:25)\n[    1.123979] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 44 in pmmu1,stream_property is ignored. (max:25)\n[    1.123985] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 45 in pmmu1,stream_property is ignored. (max:25)\n[    1.123990] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 46 in pmmu1,stream_property is ignored. (max:25)\n[    1.123996] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 47 in pmmu1,stream_property is ignored. (max:25)\n[    1.124001] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 48 in pmmu1,stream_property is ignored. (max:25)\n[    1.124007] samsung-sysmmu-v9 1a870000.sysmmu: invalid index 49 in pmmu1,stream_property is ignored. (max:25)\n[    1.124049] samsung-sysmmu-v9 1a870000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.125709] samsung-sysmmu-v9 19840000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.127288] samsung-sysmmu-v9 19c40000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.129149] samsung-sysmmu-v9 1c110000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.130975] samsung-sysmmu-v9 1c150000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.132789] samsung-sysmmu-v9 1c190000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.134565] samsung-sysmmu-v9 1d870000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.136031] samsung-sysmmu-v9 1a340000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.137817] samsung-sysmmu-v9 1c870000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.139726] samsung-sysmmu-v9 1cc80000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.141761] samsung-sysmmu-v9 1ccc0000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.143544] samsung-sysmmu-v9 1cd00000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.145356] samsung-sysmmu-v9 1c4a0000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.147239] samsung-sysmmu-v9 1c4e0000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.147696] samsung-sysmmu-v9 101c0000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.149545] samsung-sysmmu-v9 1a470000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.151387] samsung-sysmmu-v9 1d0a0000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.151886] samsung-sysmmu-v9 11040000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.152348] samsung-sysmmu-v9 16440000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.154171] samsung-sysmmu-v9 1d4c0000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.154616] samsung-sysmmu-v9 16c40000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.156689] samsung-sysmmu-v9 20a50000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.157099] samsung-sysmmu-v9 19090000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.158893] trusty_ipc virtio0: vring0: va(id)  000000009730aa8d(ffffffc2) qsz 32 notifyid 1\n[    1.158968] trusty_ipc virtio0: vring1: va(id)  000000000db7aec2(ffffffc3) qsz 32 notifyid 2\n[    1.162140] trusty-virtio trusty:virtio: initializing done\n[    1.162553] samsung,dma-heap-chunk trusty:video_stream_dma_heap: assigned reserved memory node vstream\n[    1.162658] Registered vstream-secure dma-heap successfully\n[    1.162736] samsung,dma-heap-chunk trusty:video_frame_dma_heap: assigned reserved memory node vframe\n[    1.162791] Registered vframe-secure dma-heap successfully\n[    1.162848] samsung,dma-heap-chunk trusty:video_scaler_dma_heap: assigned reserved memory node vscaler\n[    1.162901] Registered vscaler-secure dma-heap successfully\n[    1.162962] samsung,dma-heap-chunk trusty:faceauth_dsp_dma_heap: assigned reserved memory node faceauth_dsp\n[    1.163020] Registered faceauth_dsp-secure dma-heap successfully\n[    1.163084] samsung,dma-heap-chunk trusty:faceauth_tpu_dma_heap: assigned reserved memory node faceauth_tpu\n[    1.163134] Registered faceauth_tpu-secure dma-heap successfully\n[    1.163478] samsung,dma-heap-cma trusty:faceauth_preview_heap: assigned reserved memory node faprev\n[    1.163534] Registered faprev-secure dma-heap successfully\n[    1.163934] Registered mfc_fw-secure dma-heap successfully\n[    1.164246] Registered system dma-heap successfully\n[    1.164300] Registered system-uncached dma-heap successfully\n[    1.164399] Registered video_system dma-heap successfully\n[    1.164433] Registered video_system-uncached dma-heap successfully\n[    1.165526] s3c2410-wdt 10060000.watchdog_cl0: watchdog cluster0 probe\n[    1.165541] s3c2410-wdt 10060000.watchdog_cl0: It is not a multistage watchdog.\n[    1.165596] s3c2410-wdt 10060000.watchdog_cl0: NONCPU_INT_EN reg val: 32c\n[    1.165614] s3c2410-wdt 10060000.watchdog_cl0: probe: mapped reg_base=0000000042d87ea8\n[    1.165927] s3c2410-wdt 10060000.watchdog_cl0: Watchdog cluster 0 stop done, WTCON = 15718\n[    1.165953] s3c2410-wdt 10060000.watchdog_cl0: NONCPU_OUT set true done, val = 33fff10, en= 1\n[    1.165973] s3c2410-wdt 10060000.watchdog_cl0: NONCPU_INT_EN set true done, val = 32c, mask = 0\n[    1.166040] s3c2410-wdt 10060000.watchdog_cl0: Watchdog cluster 0 stop done, WTCON = 15718\n[    1.166053] s3c2410-wdt 10060000.watchdog_cl0: watchdog cluster 0, inactive, reset disabled, irq disabled\n[    1.166064] s3c2410-wdt 10060000.watchdog_cl0: DBGACK enabled\n[    1.166072] s3c2410-wdt 10060000.watchdog_cl0: windowed watchdog disabled, wtmincnt=1ff5e\n[    1.166078] Multistage watchdog disabled\n[    1.166219] s3c2410-wdt 10070000.watchdog_cl1: watchdog cluster1 probe\n[    1.166243] s3c2410-wdt 10070000.watchdog_cl1: NONCPU_INT_EN reg val: 1\n[    1.166256] s3c2410-wdt 10070000.watchdog_cl1: probe: mapped reg_base=0000000033ffc7d0\n[    1.166332] s3c2410-wdt 10070000.watchdog_cl1: Watchdog cluster 1 stop done, WTCON = 15700\n[    1.166348] s3c2410-wdt 10070000.watchdog_cl1: NONCPU_OUT set true done, val = 2010, en= 1\n[    1.166362] s3c2410-wdt 10070000.watchdog_cl1: Watchdog cluster 1 stop done, WTCON = 15700\n[    1.166373] s3c2410-wdt 10070000.watchdog_cl1: watchdog cluster 1, inactive, reset disabled, irq disabled\n[    1.166379] s3c2410-wdt 10070000.watchdog_cl1: DBGACK enabled\n[    1.166387] s3c2410-wdt 10070000.watchdog_cl1: windowed watchdog disabled, wtmincnt=1ff5e\n[    1.166392] Multistage watchdog enabled\n[    1.166943] gsa 16490000.gsa-ns: linked to 16470000.s2mpu_s0_gsa\n[    1.167518] gsa 16490000.gsa-ns: Initialized\n[    1.168181] exynos-reboot exynos-reboot: register restart handler successfully\n[    1.169912] s2mpg15 0-002f: device found: rev.0x03\n[    1.190820] trusty_ipc virtio0: is online\n[    1.200128] gsa-gsc 16490000.gsa-ns:gsa_gsc@0: Initiliazed\n[    1.200481] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.200492] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.200500] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.200511] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.200518] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.200524] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.200531] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.200538] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.200544] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.200550] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.200556] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.200562] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.200568] exynos-dm 17000000.exynos-dm: dm_type: 0(dm_cpu_cl0), available = true\n[    1.200577] exynos-dm 17000000.exynos-dm: dm_type: 1(dm_cpu_cl1), available = true\n[    1.200584] exynos-dm 17000000.exynos-dm: dm_type: 2(dm_cpu_cl2), available = true\n[    1.200590] exynos-dm 17000000.exynos-dm: dm_type: 3(dm_mif), available = true\n[    1.200595] exynos-dm 17000000.exynos-dm: dm_type: 4(dm_int), available = true\n[    1.200602] exynos-dm 17000000.exynos-dm: dm_type: 5(dm_intcam), available = true\n[    1.200608] exynos-dm 17000000.exynos-dm: dm_type: 6(dm_cam), available = true\n[    1.200614] exynos-dm 17000000.exynos-dm: dm_type: 7(dm_tpu), available = true\n[    1.200619] exynos-dm 17000000.exynos-dm: dm_type: 8(dm_tnr), available = true\n[    1.200625] exynos-dm 17000000.exynos-dm: dm_type: 9(dm_disp), available = true\n[    1.200631] exynos-dm 17000000.exynos-dm: dm_type: 10(dm_mfc), available = true\n[    1.200638] exynos-dm 17000000.exynos-dm: dm_type: 11(dm_bw), available = true\n[    1.200643] exynos-dm 17000000.exynos-dm: dm_type: 12(dm_dsu), available = true\n[    1.200649] exynos-dm 17000000.exynos-dm: dm_type: 13(dm_bci), available = true\n[    1.201200] ACPM-FLEXPMU-DBG:  exynos_flexpmu_dbg_probe: FLEXPMU_DBG buffer with size 1024 found\n[    1.201574] google,slc-acpm slc-acpm: channel 10\n[    1.201681] google,slc-acpm slc-acpm: found valid acpm firmware 1.8.\n[    1.201693] google,slc-acpm slc-acpm: Asynchronous notification enabled\n[    1.201843] slc-pmon: Error when fetching number of events (0).\n[    1.202147] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: DMA mask not set\n[    1.202265] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Registering 0 sensor\n[    1.203597] thermal thermal_zone16: Failed to set trips: -11\n[    1.203704] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Registering 1 sensor\n[    1.204158] thermal thermal_zone17: Failed to set trips: -11\n[    1.204255] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Set sensor 1 hot trip(mdegC):59000, ret:0\n[    1.204264] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Registering 2 sensor\n[    1.204715] thermal thermal_zone18: Failed to set trips: -11\n[    1.204747] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Registering 3 sensor\n[    1.205205] thermal thermal_zone19: Failed to set trips: -11\n[    1.205233] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Registering 4 sensor\n[    1.205684] thermal thermal_zone20: Failed to set trips: -11\n[    1.205712] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Registering 5 sensor\n[    1.206163] thermal thermal_zone21: Failed to set trips: -11\n[    1.206187] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Registering 6 sensor\n[    1.206645] thermal thermal_zone22: Failed to set trips: -11\n[    1.206674] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Registering 7 sensor\n[    1.207126] thermal thermal_zone23: Failed to set trips: -11\n[    1.217536] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: probe done, now wait for sensors\n[    1.219204] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Applying NTC... disabling odpm [s2mpg15]\n[    1.235369] [ACPM_FW] : 25423800718 id:3, Locked, 2808\n[    1.235394] [ACPM_FW] : 25423802122 id:3, updt-rej, 1014380\n[    1.237713] s2mpg15 0-002f: OCP_CTRL1: 0xbb\n[    1.237788] s2mpg15 0-002f: OCP_CTRL2: 0xba\n[    1.237855] s2mpg15 0-002f: OCP_CTRL3: 0xbb\n[    1.237925] s2mpg15 0-002f: OCP_CTRL4: 0xbb\n[    1.237999] s2mpg15 0-002f: OCP_CTRL5: 0xbb\n[    1.238074] s2mpg15 0-002f: OCP_CTRL6: 0xbb\n[    1.238143] s2mpg15 0-002f: OCP_CTRL7: 0xbb\n[    1.238213] s2mpg15 0-002f: OCP_CTRL8: 0x0\n[    1.238284] s2mpg15 0-002f: B2S_OCP_WARN : 0x80\n[    1.238354] s2mpg15 0-002f: B2S_SOFT_OCP_WARN : 0x80\n[    1.241041] s2mpg14 1-001f: device found: rev.0x03\n[    1.260540] s2mpg14 1-001f: s2mpg14 S2MPG14_COMMON_IBIM1=0xfc\n[    1.261123] s2mpg14 1-001f: could not find current_node\n[    1.261134] s2mpg14-power-keys: probe of s2mpg14-power-keys failed with error -2\n[    1.261780] exynos-pm 154d0000.exynos-pm: initialized\n[    1.264936] exynos-bts exynos-bts: exynos_bts_debugfs_init failed\n[    1.264943] bts_probe successfully done.\n[    1.272204] [ACPM_FW] : 25460676560 id:3, Locked, 51a\n[    1.272230] [ACPM_FW] : 25460677943 id:3, updt-rej, 12b80\n[    1.272794] [ACPM_FW] : 25461273380 id:3, Locked, 51a\n[    1.272818] [ACPM_FW] : 25461274764 id:3, updt-rej, 12c80\n[    1.284921] s2mpg14 1-001f: BUCK_OCP_CTRL1: 0xbb\n[    1.284995] s2mpg14 1-001f: BUCK_OCP_CTRL2: 0xbb\n[    1.285062] s2mpg14 1-001f: BUCK_OCP_CTRL3: 0xbb\n[    1.285133] s2mpg14 1-001f: BUCK_OCP_CTRL4: 0xbb\n[    1.285206] s2mpg14 1-001f: BUCK_OCP_CTRL5: 0xbb\n[    1.285280] s2mpg14 1-001f: SMPL_WARN_CTRL : 0x68\n[    1.285350] s2mpg14 1-001f: B2M_OCP_WARN : 0x80\n[    1.285416] s2mpg14 1-001f: B3M_OCP_WARN : 0x80\n[    1.285485] s2mpg14 1-001f: B7M_OCP_WARN : 0x80\n[    1.285615] s2mpg14 1-001f: B2M_SOFT_OCP_WARN : 0x80\n[    1.285686] s2mpg14 1-001f: B3M_SOFT_OCP_WARN : 0x80\n[    1.285750] s2mpg14 1-001f: B7M_SOFT_OCP_WARN : 0x80\n[    1.290584] s2mpg14-rtc s2mpg14-rtc: WTSR: enable, COLDRST : disable, SMPL: enable\n[    1.293619] s2mpg14-rtc s2mpg14-rtc: 2023-10-22 02:05:59(0x01)AM\n[    1.295168] s2mpg14-rtc s2mpg14-rtc: 2151-138-150 00:132:172(0x81)AM\n[    1.296759] s2mpg14-rtc s2mpg14-rtc: 2023-10-22 02:05:59(0x01)AM\n[    1.296970] s2mpg14-rtc s2mpg14-rtc: registered as rtc0\n[    1.298481] s2mpg14-rtc s2mpg14-rtc: 2023-10-22 02:05:59(0x01)AM\n[    1.298536] s2mpg14-rtc s2mpg14-rtc: setting system clock to 2023-10-22T02:05:59 UTC (1697940359)\n[    1.299199] odpm: s2mpg15-odpm: init\n[    1.299419] odpm: Configuring S2MPG15...\n[    1.299505] odpm: S2MPG15: Applied new sampling frequency (type 0) in Hz: 125.000000\n[    1.299590] odpm: S2MPG15: Applied new sampling frequency (type 1) in Hz: 31.250000\n[    1.299594] odpm: S2MPG15: CH0=S1S_VDD_CAM\n[    1.299679] odpm: S2MPG15: CH1=S2S_VDD_G3D\n[    1.299756] odpm: S2MPG15: CH2=S4S_VDD2H_MEM\n[    1.299840] odpm: S2MPG15: CH3=S5S_VDDQ_MEM\n[    1.299917] odpm: S2MPG15: CH4=S8S_VDD_G3D_L2\n[    1.299997] odpm: S2MPG15: CH5=S9S_VDD_AOC\n[    1.300074] odpm: S2MPG15: CH6=L2S_PLL_MIPI_UFS\n[    1.300152] odpm: S2MPG15: CH7=L9S_GNSS_CORE\n[    1.300229] odpm: S2MPG15: CH8=L21S_VDD2L_MEM\n[    1.300311] odpm: S2MPG15: CH9=VSYS_PWR_DISPLAY\n[    1.300393] odpm: S2MPG15: CH10=VSYS_PWR_WLAN_BT\n[    1.300471] odpm: S2MPG15: CH11=VSYS_PWR_MMWAVE\n[    1.300710] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Set NTC channels (adc_ch_en : 0xff\n               )\n[    1.300834] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Re-enabled odpm [s2mpg15] :)\n[    1.300924] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Sensor 0 raw:0xb7e\n[    1.301011] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Sensor 1 raw:0xb75\n[    1.301097] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Sensor 2 raw:0xb7a\n[    1.301178] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Sensor 3 raw:0xb6b\n[    1.301261] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Sensor 4 raw:0xbc3\n[    1.301342] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Sensor 5 raw:0xb66\n[    1.301426] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Sensor 6 raw:0xba1\n[    1.301508] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Sensor 7 raw:0xb8c\n[    1.301752] odpm: Configuring S2MPG15...done\n[    1.302605] odpm: S2MPG15: Starting at timestamp (ms): 1291\n[    1.302928] odpm: s2mpg15-odpm: init completed\n[    1.302965] odpm: s2mpg14-odpm: init\n[    1.303107] odpm: Configuring S2MPG14...\n[    1.303191] odpm: S2MPG14: Applied new sampling frequency (type 0) in Hz: 125.000000\n[    1.303270] odpm: S2MPG14: Applied new sampling frequency (type 1) in Hz: 31.250000\n[    1.303274] odpm: S2MPG14: CH0=S1M_VDD_MIF\n[    1.303282] s2mpg14-meter s2mpg14-meter: CH0, BUCK1M\n[    1.303376] odpm: S2MPG14: CH1=S2M_VDD_CPUCL2\n[    1.303382] s2mpg14-meter s2mpg14-meter: CH1, BUCK2M\n[    1.303466] odpm: S2MPG14: CH2=S3M_VDD_CPUCL1\n[    1.303472] s2mpg14-meter s2mpg14-meter: CH2, BUCK3M\n[    1.303552] odpm: S2MPG14: CH3=S4M_VDD_CPUCL0\n[    1.303556] s2mpg14-meter s2mpg14-meter: CH3, BUCK4M\n[    1.303634] odpm: S2MPG14: CH4=S5M_VDD_INT\n[    1.303642] s2mpg14-meter s2mpg14-meter: CH4, BUCK5M\n[    1.303720] odpm: S2MPG14: CH5=S6M_LLDO1\n[    1.303730] s2mpg14-meter s2mpg14-meter: CH5, BUCK6M\n[    1.303808] odpm: S2MPG14: CH6=S7M_VDD_TPU\n[    1.303811] s2mpg14-meter s2mpg14-meter: CH6, BUCK7M\n[    1.303889] odpm: S2MPG14: CH7=S8M_LLDO2\n[    1.303893] s2mpg14-meter s2mpg14-meter: CH7, BUCK8M\n[    1.303972] odpm: S2MPG14: CH8=L22M_DISP\n[    1.303978] s2mpg14-meter s2mpg14-meter: CH8, LDO22M\n[    1.304057] odpm: S2MPG14: CH9=S9M_VDD_CPUCL0_M\n[    1.304060] s2mpg14-meter s2mpg14-meter: CH9, BUCK9M\n[    1.304139] odpm: S2MPG14: CH10=VSYS_PWR_MODEM\n[    1.304142] s2mpg14-meter s2mpg14-meter: CH10, invalid\n[    1.304230] odpm: S2MPG14: CH11=VSYS_PWR_RFFE\n[    1.304234] s2mpg14-meter s2mpg14-meter: CH11, invalid\n[    1.304693] odpm: Configuring S2MPG14...done\n[    1.304833] odpm: S2MPG14: Starting at timestamp (ms): 1294\n[    1.305086] odpm: s2mpg14-odpm: init completed\n[    1.305462] exynos-ufs 13200000.ufs: exynos_ufs_probe: start\n[    1.305470] exynos-ufs 13200000.ufs: ===============================\n[    1.305496] exynos-ufs 13200000.ufs: reg_hci    000000006f940109\n[    1.305516] exynos-ufs 13200000.ufs: reg_unipro 00000000dac5d488\n[    1.305531] exynos-ufs 13200000.ufs: reg_ufsp   00000000608e37a6\n[    1.305543] exynos-ufs 13200000.ufs: reg_phy    000000006459371e\n[    1.305552] exynos-ufs 13200000.ufs: reg_cport  000000000243ea15\n[    1.305557] exynos-ufs 13200000.ufs: \n[    1.305689] exynos-ufs 13200000.ufs: ufs-iocc: offset 0x710, mask 0x3, value 0x3\n[    1.305713] exynos-ufs 13200000.ufs: evt version : 0, board: 1\n[    1.305730] exynos-ufs 13200000.ufs: ===============================\n[    1.305747] exynos-ufs 13200000.ufs: exynos_ufs_init_dbg:\n[    1.305757] exynos-ufs 13200000.ufs: UNIP_COMP_AXI_AUX_FIELD = 0x00000040\n[    1.305764] exynos-ufs 13200000.ufs: __WSTRB = 0x0f000000\n[    1.309469] exynos-ufs 13200000.ufs: ufshcd_populate_vreg: Unable to find vdd-hba-supply regulator, assuming enabled\n[    1.309483] exynos-ufs 13200000.ufs: ufshcd_populate_vreg: unable to find vcc-max-microamp\n[    1.309491] exynos-ufs 13200000.ufs: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    1.309499] exynos-ufs 13200000.ufs: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled\n[    1.313313] exynos-ufs 13200000.ufs: configured KDN with MKE=1, DT=0, KE=0\n[    1.313418] exynos-ufs 13200000.ufs: enabled inline encryption support with wrapped keys\n[    1.317594] scsi host0: ufshcd\n[    1.318083] exynos-ufs 13200000.ufs: kdn: evicting keyslot 0\n[    1.319161] exynos-ufs 13200000.ufs: kdn: evicting keyslot 1\n[    1.320154] exynos-ufs 13200000.ufs: kdn: evicting keyslot 2\n[    1.321123] exynos-ufs 13200000.ufs: kdn: evicting keyslot 3\n[    1.322112] exynos-ufs 13200000.ufs: kdn: evicting keyslot 4\n[    1.323099] exynos-ufs 13200000.ufs: kdn: evicting keyslot 5\n[    1.324087] exynos-ufs 13200000.ufs: kdn: evicting keyslot 6\n[    1.325080] exynos-ufs 13200000.ufs: kdn: evicting keyslot 7\n[    1.326070] exynos-ufs 13200000.ufs: kdn: evicting keyslot 8\n[    1.327055] exynos-ufs 13200000.ufs: kdn: evicting keyslot 9\n[    1.328044] exynos-ufs 13200000.ufs: kdn: evicting keyslot 10\n[    1.329024] exynos-ufs 13200000.ufs: kdn: evicting keyslot 11\n[    1.330015] exynos-ufs 13200000.ufs: kdn: evicting keyslot 12\n[    1.331002] exynos-ufs 13200000.ufs: kdn: evicting keyslot 13\n[    1.331992] exynos-ufs 13200000.ufs: kdn: evicting keyslot 14\n[    1.333032] exynos-ufs 13200000.ufs: mclk: 178000000\n[    1.333066] exynos-ufs 13200000.ufs: kdn: restoring keys\n[    1.339002] exynos5-hsi2c 10880000.hsi2c: set usi mode - 0x4\n[    1.339037] exynos5-hsi2c 10880000.hsi2c: Trailing count: 0x20000\n[    1.339208] exynos5-hsi2c 10880000.hsi2c: exynos5_i2c_set_timing IPCLK = 200000000 OP_CLK = 950000 DIV = 12 TIMING FS1(FS+) = 0x1E0FF00 TIMING FS2(FS+) = 0x30003E0 TIMING FS3(FS+) = 0xC0000\n[    1.339840] exynos5-hsi2c 10890000.hsi2c: set usi mode - 0x4\n[    1.339855] exynos5-hsi2c 10890000.hsi2c: Trailing count: 0xffffff\n[    1.339953] exynos5-hsi2c 10890000.hsi2c: exynos5_i2c_set_timing IPCLK = 200000000 OP_CLK = 950000 DIV = 12 TIMING FS1(FS+) = 0x1E0FF00 TIMING FS2(FS+) = 0x30003E0 TIMING FS3(FS+) = 0xC0000\n[    1.340491] exynos5-hsi2c 108a0000.hsi2c: set usi mode - 0x4\n[    1.340509] exynos5-hsi2c 108a0000.hsi2c: Trailing count: 0xffffff\n[    1.340601] exynos5-hsi2c 108a0000.hsi2c: exynos5_i2c_set_timing IPCLK = 200000000 OP_CLK = 950000 DIV = 12 TIMING FS1(FS+) = 0x1E0FF00 TIMING FS2(FS+) = 0x30003E0 TIMING FS3(FS+) = 0xC0000\n[    1.341156] exynos5-hsi2c 108b0000.hsi2c: set usi mode - 0x4\n[    1.341171] exynos5-hsi2c 108b0000.hsi2c: Trailing count: 0xffffff\n[    1.341258] exynos5-hsi2c 108b0000.hsi2c: exynos5_i2c_set_timing IPCLK = 200000000 OP_CLK = 950000 DIV = 12 TIMING FS1(FS+) = 0x1E0FF00 TIMING FS2(FS+) = 0x30003E0 TIMING FS3(FS+) = 0xC0000\n[    1.341809] exynos5-hsi2c 10c80000.hsi2c: set usi mode - 0x4\n[    1.341824] exynos5-hsi2c 10c80000.hsi2c: Trailing count: 0xffffff\n[    1.341923] exynos5-hsi2c 10c80000.hsi2c: exynos5_i2c_set_timing IPCLK = 200000000 OP_CLK = 1000000 DIV = 11 TIMING FS1(FS+) = 0x1E0FF00 TIMING FS2(FS+) = 0x30003E0 TIMING FS3(FS+) = 0xB0000\n[    1.342897] exynos5-hsi2c 10c90000.hsi2c: set usi mode - 0x4\n[    1.342912] exynos5-hsi2c 10c90000.hsi2c: Trailing count: 0xffffff\n[    1.343004] exynos5-hsi2c 10c90000.hsi2c: exynos5_i2c_set_timing IPCLK = 200000000 OP_CLK = 400000 DIV = 31 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x1F0000\n[    1.343308] at24 7-0050: supply vcc not found, using dummy regulator\n[    1.344066] at24 7-0050: 1024 byte 24c08 EEPROM, writable, 1 bytes/write\n[    1.344867] exynos5-hsi2c 10cb0000.hsi2c: set usi mode - 0x4\n[    1.344881] exynos5-hsi2c 10cb0000.hsi2c: Trailing count: 0xffffff\n[    1.344967] exynos5-hsi2c 10cb0000.hsi2c: exynos5_i2c_set_timing IPCLK = 200000000 OP_CLK = 400000 DIV = 31 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x1F0000\n[    1.346267] max777x9-pmic 8-0066: MAXQ logbuffer register failed\n[    1.346277] max777x9-pmic 8-0066: MAXQ gbms_storage_register failed, ret:-517\n[    1.348876] max77729_pmic: max777x9_pmic_irq TOPSYS_INT:10\n[    1.349346] max77729_pmic: max777x9_pmic_irq TOPSYS_INT:0\n[    1.350969] max777x9-pmic 8-0066: Failed to initialize debug fs\n[    1.353758] exynos-ufs 13200000.ufs: PA_ActiveTxDataLanes(2), PA_ActiveRxDataLanes(2)\n[    1.353766] exynos-ufs 13200000.ufs: max_gear(4), PA_MaxRxHSGear(4)\n[    1.353788] exynos-ufs 13200000.ufs: UFS link start-up passes\n[    1.356082] max777x9-pmic 8-0066: probe_done pmic_id = 3b, rev_id= 2\n[    1.357270] exynos5-hsi2c 10980000.hsi2c: set usi mode - 0x4\n[    1.357285] exynos5-hsi2c 10980000.hsi2c: Trailing count: 0xffffff\n[    1.357369] exynos5-hsi2c 10980000.hsi2c: exynos5_i2c_set_timing IPCLK = 200000000 OP_CLK = 390000 DIV = 32 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x200000\n[    1.363748] exynos-ufs 13200000.ufs: UFS device initialized\n[    1.365999] exynos-ufs 13200000.ufs: PA_ActiveTxDataLanes(2),PA_ActiveRxDataLanes(2)\n[    1.366017] exynos-ufs 13200000.ufs: Power mode change(0): M(1)G(4)L(2)HS-series(2)\n[    1.366025] exynos-ufs 13200000.ufs: HS mode config passes\n[    1.366666] scsi 0:0:0:49488: Well-known LUN    KIOXIA   THGJFJT1E45BATPC 0300 PQ: 0 ANSI: 6\n[    1.367281] ufs_device_wlun 0:0:0:49488: Attached scsi generic sg0 type 30\n[    1.367659] scsi 0:0:0:49476: Well-known LUN    KIOXIA   THGJFJT1E45BATPC 0300 PQ: 0 ANSI: 6\n[    1.368099] scsi 0:0:0:49476: Attached scsi generic sg1 type 30\n[    1.368392] scsi 0:0:0:49456: Well-known LUN    KIOXIA   THGJFJT1E45BATPC 0300 PQ: 0 ANSI: 6\n[    1.368828] scsi 0:0:0:49456: Attached scsi generic sg2 type 30\n[    1.369328] scsi 0:0:0:0: Direct-Access     KIOXIA   THGJFJT1E45BATPC 0300 PQ: 0 ANSI: 6\n[    1.369726] scsi 0:0:0:0: Attached scsi generic sg3 type 0\n[    1.370407] scsi 0:0:0:1: Direct-Access     KIOXIA   THGJFJT1E45BATPC 0300 PQ: 0 ANSI: 6\n[    1.371018] scsi 0:0:0:1: Attached scsi generic sg4 type 0\n[    1.371541] sd 0:0:0:0: [sda] 62436352 4096-byte logical blocks: (256 GB/238 GiB)\n[    1.371616] scsi 0:0:0:2: Direct-Access     KIOXIA   THGJFJT1E45BATPC 0300 PQ: 0 ANSI: 6\n[    1.371681] sd 0:0:0:0: [sda] Write Protect is off\n[    1.371694] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.371900] sd 0:0:0:0: [sda] Disabling FUA\n[    1.371914] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA\n[    1.371995] sd 0:0:0:0: [sda] Optimal transfer size 524288 bytes\n[    1.372836] scsi 0:0:0:2: Attached scsi generic sg5 type 0\n[    1.373217] scsi 0:0:0:3: Direct-Access     KIOXIA   THGJFJT1E45BATPC 0300 PQ: 0 ANSI: 6\n[    1.373730] scsi 0:0:0:3: Attached scsi generic sg6 type 0\n[    1.375703] sd 0:0:0:1: [sdb] 8192 4096-byte logical blocks: (33.6 MB/32.0 MiB)\n[    1.375779] slg51002 9-0075: No init registers are overridden\n[    1.375896] sd 0:0:0:1: [sdb] Write Protect is off\n[    1.375903] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.376112] sd 0:0:0:1: [sdb] Disabling FUA\n[    1.376122] sd 0:0:0:1: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA\n[    1.376214] sd 0:0:0:1: [sdb] Optimal transfer size 524288 bytes\n[    1.376827] sd 0:0:0:2: [sdc] 8192 4096-byte logical blocks: (33.6 MB/32.0 MiB)\n[    1.376964]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21 sda22 sda23 sda24 sda25 sda26 sda27 sda28 sda29 sda30 sda31 sda32 sda33 sda34\n[    1.378928] sd 0:0:0:2: [sdc] Write Protect is off\n[    1.378936] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.379117] sd 0:0:0:2: [sdc] Disabling FUA\n[    1.379145] sd 0:0:0:2: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA\n[    1.379221] sd 0:0:0:2: [sdc] Optimal transfer size 524288 bytes\n[    1.381282]  sdb: sdb1 sdb2 sdb3 sdb4 sdb5 sdb6 sdb7 sdb8 sdb9 sdb10 sdb11 sdb12\n[    1.382382]  sdc: sdc1 sdc2 sdc3 sdc4 sdc5 sdc6 sdc7 sdc8 sdc9 sdc10 sdc11 sdc12\n[    1.383826] sd 0:0:0:1: [sdb] Attached SCSI disk\n[    1.384160] sd 0:0:0:2: [sdc] Attached SCSI disk\n[    1.384673] sd 0:0:0:0: [sda] Attached SCSI disk\n[    1.384791] sd 0:0:0:3: [sdd] 1024 4096-byte logical blocks: (4.19 MB/4.00 MiB)\n[    1.384870] sd 0:0:0:3: [sdd] Write Protect is off\n[    1.384877] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.385057] sd 0:0:0:3: [sdd] Disabling FUA\n[    1.385066] sd 0:0:0:3: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA\n[    1.385157] sd 0:0:0:3: [sdd] Optimal transfer size 524288 bytes\n[    1.385841] slg51002 9-0075: chip_id: 0xb13103\n[    1.386978] ldo1: Bringing 2850000uV into 2250000-2250000uV\n[    1.387388]  sdd: sdd1 sdd2 sdd3 sdd4\n[    1.388659] sd 0:0:0:3: [sdd] Attached SCSI disk\n[    1.389168] ldo1: supplied by regulator-dummy\n[    1.390142] ldo2: Bringing 2850000uV into 2950000-2950000uV\n[    1.391967] ldo2: supplied by regulator-dummy\n[    1.392926] ldo3: Bringing 1800000uV into 2250000-2250000uV\n[    1.394765] ldo3: supplied by regulator-dummy\n[    1.395729] ldo4: Bringing 2900000uV into 2950000-2950000uV\n[    1.397556] ldo4: supplied by regulator-dummy\n[    1.398518] ldo5: Bringing 2850000uV into 2900000-2900000uV\n[    1.400345] ldo5: supplied by regulator-dummy\n[    1.401371] ldo6: Bringing 1150000uV into 1100000-1100000uV\n[    1.403207] ldo6: supplied by regulator-dummy\n[    1.404176] ldo7: Bringing 1150000uV into 1060000-1060000uV\n[    1.406000] ldo7: supplied by regulator-dummy\n[    1.406969] ldo8: Bringing 1100000uV into 970000-970000uV\n[    1.408794] ldo8: supplied by regulator-dummy\n[    1.415171] exynos-uart 155d0000.serial: set usi mode - 0x1\n[    1.415228] exynos-uart 155d0000.serial: IRQ index 1 not found\n[    1.415238] exynos-uart 155d0000.serial: No explicit src-clk. Use default src-clk\n[    1.415299] 155d0000.serial: ttySAC18 at MMIO 0x155d0000 (irq = 177, base_baud = 0) is a S3C6400/10\n[    1.415787] exynos-uart 155d0000.serial: probe: logbuffer get failed\n[    1.416018] exynos-uart 10870000.uart: usi offset is not specified\n[    1.416028] exynos-uart 10870000.uart: no lookup for usi-phandle.\n[    1.416060] exynos-uart 10870000.uart: IRQ index 1 not found\n[    1.416068] exynos-uart 10870000.uart: No explicit src-clk. Use default src-clk\n[    1.416176] 10870000.uart: ttySAC0 at MMIO 0x10870000 (irq = 338, base_baud = 0) is a S3C6400/10\n[    1.418257] exynos_pd_dbg dbgdev-pd-aoc: ignoring dependency for device, assuming no driver\n[    1.419042] exynos_pd_dbg dbgdev-pd-hsi1: ignoring dependency for device, assuming no driver\n[    1.420187] gs101-devfreq 17000010.devfreq_mif: MIF clock info exist\n[    1.420898] gs101-devfreq 17000010.devfreq_mif: failed to update frequency from PM QoS (-11)\n[    1.420913] gs101-devfreq 17000010.devfreq_mif: failed to update frequency from PM QoS (-11)\n[    1.421221] gs101-devfreq 17000010.devfreq_mif: MIF cdev is initialized!!\n[    1.421235] gs101-devfreq 17000010.devfreq_mif: devfreq is initialized!!\n[    1.421489] gs101-devfreq 17000020.devfreq_int: Not registered UM monitor data\n[    1.421497] gs101-devfreq 17000020.devfreq_int: ALT-DVFS is not declared by device tree.\n[    1.421820] gs101-devfreq 17000020.devfreq_int: failed to update frequency from PM QoS (-517)\n[    1.421830] gs101-devfreq 17000020.devfreq_int: failed to update frequency from PM QoS (-517)\n[    1.422055] gs101-devfreq 17000020.devfreq_int: INT cdev is initialized!!\n[    1.422063] gs101-devfreq 17000020.devfreq_int: devfreq is initialized!!\n[    1.422312] gs101-devfreq 17000030.devfreq_intcam: Not registered UM monitor data\n[    1.422318] gs101-devfreq 17000030.devfreq_intcam: ALT-DVFS is not declared by device tree.\n[    1.422334] gs101-devfreq 17000030.devfreq_intcam: DT min freq is lower than ECT min freq!\n[    1.422339] gs101-devfreq 17000030.devfreq_intcam: Nudged 67000 KHz to the lower 111000 KHz freq.\n[    1.422531] gs101-devfreq 17000030.devfreq_intcam: failed to update frequency from PM QoS (-517)\n[    1.422541] gs101-devfreq 17000030.devfreq_intcam: failed to update frequency from PM QoS (-517)\n[    1.422660] gs101-devfreq 17000030.devfreq_intcam: INTCAM cdev is initialized!!\n[    1.422668] gs101-devfreq 17000030.devfreq_intcam: devfreq is initialized!!\n[    1.422934] gs101-devfreq 17000040.devfreq_disp: Not registered UM monitor data\n[    1.422940] gs101-devfreq 17000040.devfreq_disp: ALT-DVFS is not declared by device tree.\n[    1.423122] gs101-devfreq 17000040.devfreq_disp: failed to update frequency from PM QoS (-517)\n[    1.423131] gs101-devfreq 17000040.devfreq_disp: failed to update frequency from PM QoS (-517)\n[    1.423519] gs101-devfreq 17000040.devfreq_disp: DISP cdev is initialized!!\n[    1.423526] gs101-devfreq 17000040.devfreq_disp: devfreq is initialized!!\n[    1.423777] gs101-devfreq 17000050.devfreq_cam: Not registered UM monitor data\n[    1.423787] gs101-devfreq 17000050.devfreq_cam: ALT-DVFS is not declared by device tree.\n[    1.423801] gs101-devfreq 17000050.devfreq_cam: DT min freq is lower than ECT min freq!\n[    1.423805] gs101-devfreq 17000050.devfreq_cam: Nudged 67000 KHz to the lower 111000 KHz freq.\n[    1.424021] gs101-devfreq 17000050.devfreq_cam: failed to update frequency from PM QoS (-517)\n[    1.424031] gs101-devfreq 17000050.devfreq_cam: failed to update frequency from PM QoS (-517)\n[    1.424130] gs101-devfreq 17000050.devfreq_cam: CAM cdev is initialized!!\n[    1.424137] gs101-devfreq 17000050.devfreq_cam: devfreq is initialized!!\n[    1.424380] gs101-devfreq 17000060.devfreq_tnr: Not registered UM monitor data\n[    1.424387] gs101-devfreq 17000060.devfreq_tnr: ALT-DVFS is not declared by device tree.\n[    1.424401] gs101-devfreq 17000060.devfreq_tnr: DT min freq is lower than ECT min freq!\n[    1.424406] gs101-devfreq 17000060.devfreq_tnr: Nudged 67000 KHz to the lower 111000 KHz freq.\n[    1.424594] gs101-devfreq 17000060.devfreq_tnr: failed to update frequency from PM QoS (-517)\n[    1.424604] gs101-devfreq 17000060.devfreq_tnr: failed to update frequency from PM QoS (-517)\n[    1.424704] gs101-devfreq 17000060.devfreq_tnr: TNR cdev is initialized!!\n[    1.424712] gs101-devfreq 17000060.devfreq_tnr: devfreq is initialized!!\n[    1.424958] gs101-devfreq 17000070.devfreq_mfc: Not registered UM monitor data\n[    1.424966] gs101-devfreq 17000070.devfreq_mfc: ALT-DVFS is not declared by device tree.\n[    1.425153] gs101-devfreq 17000070.devfreq_mfc: failed to update frequency from PM QoS (-517)\n[    1.425164] gs101-devfreq 17000070.devfreq_mfc: failed to update frequency from PM QoS (-517)\n[    1.425264] gs101-devfreq 17000070.devfreq_mfc: MFC cdev is initialized!!\n[    1.425273] gs101-devfreq 17000070.devfreq_mfc: devfreq is initialized!!\n[    1.425523] gs101-devfreq 17000080.devfreq_bw: Not registered UM monitor data\n[    1.425529] gs101-devfreq 17000080.devfreq_bw: ALT-DVFS is not declared by device tree.\n[    1.425773] gs101-devfreq 17000080.devfreq_bw: failed to update frequency from PM QoS (-517)\n[    1.425783] gs101-devfreq 17000080.devfreq_bw: failed to update frequency from PM QoS (-517)\n[    1.425879] gs101-devfreq 17000080.devfreq_bw: BW cdev is initialized!!\n[    1.425886] gs101-devfreq 17000080.devfreq_bw: devfreq is initialized!!\n[    1.426134] gs101-devfreq 17000090.devfreq_dsu: Not registered UM monitor data\n[    1.426141] gs101-devfreq 17000090.devfreq_dsu: ALT-DVFS is not declared by device tree.\n[    1.426341] gs101-devfreq 17000090.devfreq_dsu: failed to update frequency from PM QoS (-517)\n[    1.426351] gs101-devfreq 17000090.devfreq_dsu: failed to update frequency from PM QoS (-517)\n[    1.427142] gs101-devfreq 17000090.devfreq_dsu: DSU cdev is initialized!!\n[    1.427153] gs101-devfreq 17000090.devfreq_dsu: devfreq is initialized!!\n[    1.427476] gs101-devfreq 170000a0.devfreq_bci: Not registered UM monitor data\n[    1.427486] gs101-devfreq 170000a0.devfreq_bci: ALT-DVFS is not declared by device tree.\n[    1.427771] gs101-devfreq 170000a0.devfreq_bci: failed to update frequency from PM QoS (-517)\n[    1.427786] gs101-devfreq 170000a0.devfreq_bci: failed to update frequency from PM QoS (-517)\n[    1.428321] gs101-devfreq 170000a0.devfreq_bci: BCI cdev is initialized!!\n[    1.428332] gs101-devfreq 170000a0.devfreq_bci: devfreq is initialized!!\n[    1.428983] cpu cpu0: EM: created perf domain\n[    1.428994] exynos_acme: Complete to initialize cpufreq-domain0\n[    1.429003] exynos_acme: CPUFREQ of domain0 cal-id : 0xb040002\n[    1.429013] exynos_acme: CPUFREQ of domain0 sibling cpus : 0-3\n[    1.429017] exynos_acme: CPUFREQ of domain0 boot freq = 1197000 kHz, resume freq = 1425000 kHz\n[    1.429024] exynos_acme: CPUFREQ of domain0 max freq : 1704000 kHz, min freq : 324000 kHz\n[    1.429031] exynos_acme: CPUFREQ of domain0 table size = 10\n[    1.429036] exynos_acme: CPUFREQ of domain0 : L0    324000 kHz\n[    1.429040] exynos_acme: CPUFREQ of domain0 : L1    610000 kHz\n[    1.429047] exynos_acme: CPUFREQ of domain0 : L2    820000 kHz\n[    1.429054] exynos_acme: CPUFREQ of domain0 : L3    955000 kHz\n[    1.429059] exynos_acme: CPUFREQ of domain0 : L4   1098000 kHz\n[    1.429066] exynos_acme: CPUFREQ of domain0 : L5   1197000 kHz\n[    1.429071] exynos_acme: CPUFREQ of domain0 : L6   1328000 kHz\n[    1.429077] exynos_acme: CPUFREQ of domain0 : L7   1425000 kHz\n[    1.429082] exynos_acme: CPUFREQ of domain0 : L8   1548000 kHz\n[    1.429087] exynos_acme: CPUFREQ of domain0 : L9   1704000 kHz\n[    1.429425] ------------[ cut here ]------------\n[    1.429437] WARNING: CPU: 0 PID: 1 at google-modules/soc/gs/drivers/thermal/samsung/gs_tmu_v3.c:744 register_get_cpu_power_table_ect_offset+0x58/0x70\n[    1.429499] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G S                5.15.110-Sultan #1\n[    1.429511] Hardware name: ZUMA HUSKY MP based on ZUMA (DT)\n[    1.429518] pstate: 60400005 (nZCv daif +PAN -UAO -TCO -DIT -SSBS BTYPE=--)\n[    1.429531] pc : register_get_cpu_power_table_ect_offset+0x58/0x70\n[    1.429538] lr : exynos_cpufreq_probe+0x660/0x11e4\n[    1.429558] sp : ffffff8002d0b960\n[    1.429563] x29: ffffff8002d0b960 x28: 0000000000000011 x27: ffffff8007098800\n[    1.429586] x26: ffffff800723dd80 x25: ffffff8007161c80 x24: 0000000000241e18\n[    1.429598] x23: 0000000000000000 x22: 0000000000000001 x21: ffffffee7cd398d8\n[    1.429609] x20: ffffff8003abd400 x19: ffffff8a7fe10108 x18: 0000000000000007\n[    1.429621] x17: 71657266206e696d x16: 202c7a486b203030 x15: ffffff8002d0b590\n[    1.429632] x14: ffffffffffffffff x13: 0000000000000038 x12: 0101010101010101\n[    1.429644] x11: 7f7f7f7fffffffff x10: 0fffffffffffffff x9 : 000000000000000a\n[    1.429655] x8 : 00000000fffffffc x7 : 0000000000000004 x6 : 00000000ffffffc8\n[    1.429667] x5 : ffffff8007098850 x4 : fffffffffffffff0 x3 : 0000000000000000\n[    1.429679] x2 : ffffffee7c377460 x1 : ffffffee7dd15870 x0 : ffffffee7c377460\n[    1.429695] Call trace:\n[    1.429702]  register_get_cpu_power_table_ect_offset+0x58/0x70\n[    1.429714]  exynos_cpufreq_probe+0x660/0x11e4\n[    1.429722]  platform_probe+0x68/0xc4\n[    1.429742]  really_probe.part.0+0x9c/0x304\n[    1.429752]  __driver_probe_device+0x98/0x16c\n[    1.429759]  driver_probe_device+0x44/0x180\n[    1.429765]  __driver_attach+0xb0/0x1b0\n[    1.429771]  bus_for_each_dev+0x74/0xd0\n[    1.429778]  driver_attach+0x24/0x30\n[    1.429784]  bus_add_driver+0x110/0x200\n[    1.429790]  driver_register+0x78/0x130\n[    1.429796]  __platform_driver_register+0x28/0x3c\n[    1.429803]  exynos_cpufreq_driver_init+0x20/0x2c\n[    1.429826]  do_one_initcall+0x54/0x2ac\n[    1.429840]  load_integrated_module+0x14c/0x1cc\n[    1.429861]  load_integrated_modules+0x30/0x50\n[    1.429876]  do_one_initcall+0x54/0x2ac\n[    1.429882]  kernel_init_freeable+0x230/0x29c\n[    1.429891]  kernel_init+0x24/0x130\n[    1.429905]  ret_from_fork+0x10/0x20\n[    1.429915] ---[ end trace 362f457c23263a85 ]---\n[    1.429925] get_cpu_power_table_ect_offset function is already set\n[    1.435034] cpu cpu4: EM: created perf domain\n[    1.435042] exynos_acme: Complete to initialize cpufreq-domain1\n[    1.435046] exynos_acme: CPUFREQ of domain1 cal-id : 0xb040003\n[    1.435051] exynos_acme: CPUFREQ of domain1 sibling cpus : 4-7\n[    1.435056] exynos_acme: CPUFREQ of domain1 boot freq = 1065000 kHz, resume freq = 1836000 kHz\n[    1.435061] exynos_acme: CPUFREQ of domain1 max freq : 2367000 kHz, min freq : 402000 kHz\n[    1.435065] exynos_acme: CPUFREQ of domain1 table size = 15\n[    1.435068] exynos_acme: CPUFREQ of domain1 : L0    402000 kHz\n[    1.435072] exynos_acme: CPUFREQ of domain1 : L1    578000 kHz\n[    1.435076] exynos_acme: CPUFREQ of domain1 : L2    697000 kHz\n[    1.435080] exynos_acme: CPUFREQ of domain1 : L3    712000 kHz\n[    1.435084] exynos_acme: CPUFREQ of domain1 : L4    910000 kHz\n[    1.435088] exynos_acme: CPUFREQ of domain1 : L5   1065000 kHz\n[    1.435091] exynos_acme: CPUFREQ of domain1 : L6   1221000 kHz\n[    1.435095] exynos_acme: CPUFREQ of domain1 : L7   1328000 kHz\n[    1.435099] exynos_acme: CPUFREQ of domain1 : L8   1418000 kHz\n[    1.435103] exynos_acme: CPUFREQ of domain1 : L9   1572000 kHz\n[    1.435107] exynos_acme: CPUFREQ of domain1 : L10  1836000 kHz\n[    1.435111] exynos_acme: CPUFREQ of domain1 : L11  1945000 kHz\n[    1.435115] exynos_acme: CPUFREQ of domain1 : L12  2130000 kHz\n[    1.435119] exynos_acme: CPUFREQ of domain1 : L13  2245000 kHz\n[    1.435122] exynos_acme: CPUFREQ of domain1 : L14  2367000 kHz\n[    1.435175] ------------[ cut here ]------------\n[    1.435178] WARNING: CPU: 0 PID: 1 at google-modules/soc/gs/drivers/thermal/samsung/gs_tmu_v3.c:744 register_get_cpu_power_table_ect_offset+0x58/0x70\n[    1.435192] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G S      W         5.15.110-Sultan #1\n[    1.435198] Hardware name: ZUMA HUSKY MP based on ZUMA (DT)\n[    1.435202] pstate: 60400005 (nZCv daif +PAN -UAO -TCO -DIT -SSBS BTYPE=--)\n[    1.435209] pc : register_get_cpu_power_table_ect_offset+0x58/0x70\n[    1.435216] lr : exynos_cpufreq_probe+0x660/0x11e4\n[    1.435224] sp : ffffff8002d0b960\n[    1.435227] x29: ffffff8002d0b960 x28: 0000000000000012 x27: ffffff8007099000\n[    1.435240] x26: ffffff800723dd80 x25: ffffff8007163a80 x24: 00000000002c76d0\n[    1.435252] x23: 0000000000000000 x22: 0000000000000002 x21: ffffffee7cd398d8\n[    1.435264] x20: ffffff8003abd400 x19: ffffff8a7fe10730 x18: 0000000000000007\n[    1.435276] x17: 71657266206e696d x16: 202c7a486b203030 x15: ffffff8002d0b590\n[    1.435287] x14: ffffffffffffffff x13: 0000000000000028 x12: 0101010101010101\n[    1.435300] x11: 7f7f7f7f7f7f7f7f x10: 0fffffffffffffff x9 : 000000000000000a\n[    1.435312] x8 : 00000000fffffff8 x7 : 0000000000000001 x6 : 00000000ffffffc9\n[    1.435323] x5 : ffffff8007099050 x4 : ffffffffffffff00 x3 : 0000000000000000\n[    1.435334] x2 : ffffffee7c377460 x1 : ffffffee7dd15870 x0 : ffffffee7c377460\n[    1.435345] Call trace:\n[    1.435348]  register_get_cpu_power_table_ect_offset+0x58/0x70\n[    1.435355]  exynos_cpufreq_probe+0x660/0x11e4\n[    1.435363]  platform_probe+0x68/0xc4\n[    1.435371]  really_probe.part.0+0x9c/0x304\n[    1.435378]  __driver_probe_device+0x98/0x16c\n[    1.435384]  driver_probe_device+0x44/0x180\n[    1.435392]  __driver_attach+0xb0/0x1b0\n[    1.435399]  bus_for_each_dev+0x74/0xd0\n[    1.435404]  driver_attach+0x24/0x30\n[    1.435411]  bus_add_driver+0x110/0x200\n[    1.435416]  driver_register+0x78/0x130\n[    1.435423]  __platform_driver_register+0x28/0x3c\n[    1.435430]  exynos_cpufreq_driver_init+0x20/0x2c\n[    1.435438]  do_one_initcall+0x54/0x2ac\n[    1.435444]  load_integrated_module+0x14c/0x1cc\n[    1.435453]  load_integrated_modules+0x30/0x50\n[    1.435460]  do_one_initcall+0x54/0x2ac\n[    1.435468]  kernel_init_freeable+0x230/0x29c\n[    1.435475]  kernel_init+0x24/0x130\n[    1.435485]  ret_from_fork+0x10/0x20\n[    1.435493] ---[ end trace 362f457c23263a86 ]---\n[    1.435497] get_cpu_power_table_ect_offset function is already set\n[    1.437908] cpu cpu8: EM: created perf domain\n[    1.437913] exynos_acme: Complete to initialize cpufreq-domain2\n[    1.437916] exynos_acme: CPUFREQ of domain2 cal-id : 0xb040004\n[    1.437921] exynos_acme: CPUFREQ of domain2 sibling cpus : 8\n[    1.437924] exynos_acme: CPUFREQ of domain2 boot freq = 1164000 kHz, resume freq = 1164000 kHz\n[    1.437928] exynos_acme: CPUFREQ of domain2 max freq : 2914000 kHz, min freq : 500000 kHz\n[    1.437933] exynos_acme: CPUFREQ of domain2 table size = 15\n[    1.437937] exynos_acme: CPUFREQ of domain2 : L0    500000 kHz\n[    1.437941] exynos_acme: CPUFREQ of domain2 : L1    880000 kHz\n[    1.437945] exynos_acme: CPUFREQ of domain2 : L2   1164000 kHz\n[    1.437949] exynos_acme: CPUFREQ of domain2 : L3   1298000 kHz\n[    1.437953] exynos_acme: CPUFREQ of domain2 : L4   1557000 kHz\n[    1.437957] exynos_acme: CPUFREQ of domain2 : L5   1745000 kHz\n[    1.437961] exynos_acme: CPUFREQ of domain2 : L6   1885000 kHz\n[    1.437966] exynos_acme: CPUFREQ of domain2 : L7   2049000 kHz\n[    1.437970] exynos_acme: CPUFREQ of domain2 : L8   2147000 kHz\n[    1.437973] exynos_acme: CPUFREQ of domain2 : L9   2294000 kHz\n[    1.437977] exynos_acme: CPUFREQ of domain2 : L10  2363000 kHz\n[    1.437981] exynos_acme: CPUFREQ of domain2 : L11  2556000 kHz\n[    1.437985] exynos_acme: CPUFREQ of domain2 : L12  2687000 kHz\n[    1.437990] exynos_acme: CPUFREQ of domain2 : L13  2850000 kHz\n[    1.437994] exynos_acme: CPUFREQ of domain2 : L14  2914000 kHz\n[    1.438144] exynos_acme: CPUFREQ domain0 registered\n[    1.438433] exynos_acme: CPUFREQ domain1 registered\n[    1.438534] exynos_acme: CPUFREQ domain2 registered\n[    1.438662] cpu_cooling 0: freq:1704000 KHz\n[    1.438669] cpu_cooling 0: freq:1548000 KHz\n[    1.438673] cpu_cooling 0: freq:1425000 KHz\n[    1.438676] cpu_cooling 0: freq:1328000 KHz\n[    1.438679] cpu_cooling 0: freq:1197000 KHz\n[    1.438683] cpu_cooling 0: freq:1098000 KHz\n[    1.438686] cpu_cooling 0: freq:955000 KHz\n[    1.438689] cpu_cooling 0: freq:820000 KHz\n[    1.438693] cpu_cooling 0: freq:610000 KHz\n[    1.438696] cpu_cooling 0: freq:324000 KHz\n[    1.438706] cpu_cooling 0: freq:1704000 power: 79, mV: 818, cap: 70\n[    1.438712] cpu_cooling 0: freq:1548000 power: 65, mV: 775, cap: 70\n[    1.438719] cpu_cooling 0: freq:1425000 power: 54, mV: 737, cap: 70\n[    1.438726] cpu_cooling 0: freq:1328000 power: 45, mV: 700, cap: 70\n[    1.438732] cpu_cooling 0: freq:1197000 power: 37, mV: 668, cap: 70\n[    1.438738] cpu_cooling 0: freq:1098000 power: 32, mV: 650, cap: 70\n[    1.438743] cpu_cooling 0: freq:955000 power: 25, mV: 618, cap: 70\n[    1.438749] cpu_cooling 0: freq:820000 power: 19, mV: 587, cap: 70\n[    1.438755] cpu_cooling 0: freq:610000 power: 12, mV: 543, cap: 70\n[    1.438760] cpu_cooling 0: freq:324000 power: 6, mV: 531, cap: 70\n[    1.438912] build_static_power_table: Failed to get param table from ECT\n[    1.439073] parse_ect_cooling_level: (LITTLE, 0)instance isn't valid\n[    1.439079] cpu cooling registered for cpu: 0, capacitance: 70, power_callback: true, static_power: false\n[    1.439108] exynos_acme: Skipping boot pm_qos domain0\n[    1.439251] cpu_cooling 4: freq:2367000 KHz\n[    1.439257] cpu_cooling 4: freq:2245000 KHz\n[    1.439260] cpu_cooling 4: freq:2130000 KHz\n[    1.439263] cpu_cooling 4: freq:1945000 KHz\n[    1.439267] cpu_cooling 4: freq:1836000 KHz\n[    1.439270] cpu_cooling 4: freq:1572000 KHz\n[    1.439273] cpu_cooling 4: freq:1418000 KHz\n[    1.439276] cpu_cooling 4: freq:1328000 KHz\n[    1.439279] cpu_cooling 4: freq:1221000 KHz\n[    1.439283] cpu_cooling 4: freq:1065000 KHz\n[    1.439286] cpu_cooling 4: freq:910000 KHz\n[    1.439289] cpu_cooling 4: freq:712000 KHz\n[    1.439292] cpu_cooling 4: freq:697000 KHz\n[    1.439295] cpu_cooling 4: freq:578000 KHz\n[    1.439299] cpu_cooling 4: freq:402000 KHz\n[    1.439307] cpu_cooling 4: freq:2367000 power: 1450, mV: 1093, cap: 513\n[    1.439312] cpu_cooling 4: freq:2245000 power: 1209, mV: 1025, cap: 513\n[    1.439318] cpu_cooling 4: freq:2130000 power: 998, mV: 956, cap: 513\n[    1.439324] cpu_cooling 4: freq:1945000 power: 774, mV: 881, cap: 513\n[    1.439331] cpu_cooling 4: freq:1836000 power: 650, mV: 831, cap: 513\n[    1.439337] cpu_cooling 4: freq:1572000 power: 453, mV: 750, cap: 513\n[    1.439343] cpu_cooling 4: freq:1418000 power: 356, mV: 700, cap: 513\n[    1.439348] cpu_cooling 4: freq:1328000 power: 315, mV: 681, cap: 513\n[    1.439354] cpu_cooling 4: freq:1221000 power: 264, mV: 650, cap: 513\n[    1.439359] cpu_cooling 4: freq:1065000 power: 208, mV: 618, cap: 513\n[    1.439365] cpu_cooling 4: freq:910000 power: 164, mV: 593, cap: 513\n[    1.439370] cpu_cooling 4: freq:712000 power: 112, mV: 556, cap: 513\n[    1.439376] cpu_cooling 4: freq:697000 power: 108, mV: 550, cap: 513\n[    1.439381] cpu_cooling 4: freq:578000 power: 85, mV: 537, cap: 513\n[    1.439388] cpu_cooling 4: freq:402000 power: 58, mV: 531, cap: 513\n[    1.439695] cpu cooling registered for cpu: 4, capacitance: 513, power_callback: true, static_power: true\n[    1.439729] exynos_acme: Skipping boot pm_qos domain1\n[    1.439834] cpu_cooling 8: freq:2914000 KHz\n[    1.439841] cpu_cooling 8: freq:2850000 KHz\n[    1.439845] cpu_cooling 8: freq:2687000 KHz\n[    1.439850] cpu_cooling 8: freq:2556000 KHz\n[    1.439855] cpu_cooling 8: freq:2363000 KHz\n[    1.439858] cpu_cooling 8: freq:2294000 KHz\n[    1.439862] cpu_cooling 8: freq:2147000 KHz\n[    1.439867] cpu_cooling 8: freq:2049000 KHz\n[    1.439870] cpu_cooling 8: freq:1885000 KHz\n[    1.439874] cpu_cooling 8: freq:1745000 KHz\n[    1.439877] cpu_cooling 8: freq:1557000 KHz\n[    1.439880] cpu_cooling 8: freq:1298000 KHz\n[    1.439883] cpu_cooling 8: freq:1164000 KHz\n[    1.439886] cpu_cooling 8: freq:880000 KHz\n[    1.439890] cpu_cooling 8: freq:500000 KHz\n[    1.439895] cpu_cooling 8: freq:2914000 power: 2947, mV: 1156, cap: 757\n[    1.439900] cpu_cooling 8: freq:2850000 power: 2639, mV: 1106, cap: 757\n[    1.439905] cpu_cooling 8: freq:2687000 power: 2137, mV: 1025, cap: 757\n[    1.439911] cpu_cooling 8: freq:2556000 power: 1790, mV: 962, cap: 757\n[    1.439916] cpu_cooling 8: freq:2363000 power: 1426, mV: 893, cap: 757\n[    1.439924] cpu_cooling 8: freq:2294000 power: 1329, mV: 875, cap: 757\n[    1.439929] cpu_cooling 8: freq:2147000 power: 1138, mV: 837, cap: 757\n[    1.439934] cpu_cooling 8: freq:2049000 power: 1007, mV: 806, cap: 757\n[    1.439939] cpu_cooling 8: freq:1885000 power: 841, mV: 768, cap: 757\n[    1.439944] cpu_cooling 8: freq:1745000 power: 694, mV: 725, cap: 757\n[    1.439951] cpu_cooling 8: freq:1557000 power: 556, mV: 687, cap: 757\n[    1.439956] cpu_cooling 8: freq:1298000 power: 406, mV: 643, cap: 757\n[    1.439961] cpu_cooling 8: freq:1164000 power: 344, mV: 625, cap: 757\n[    1.439966] cpu_cooling 8: freq:880000 power: 224, mV: 581, cap: 757\n[    1.439971] cpu_cooling 8: freq:500000 power: 106, mV: 531, cap: 757\n[    1.440231] cpu cooling registered for cpu: 8, capacitance: 757, power_callback: true, static_power: true\n[    1.440253] exynos_acme: Skipping boot pm_qos domain2\n[    1.440338] exynos_acme: Initialized Exynos cpufreq driver\n[    1.442849] clk: Not disabling unused clocks\n[    1.442885] exynos_pd: pd-dpub sync_state: children need sync\n[    1.442892] exynos_pd: pd-mfc sync_state: turn_off = 1\n[    1.443199] exynos_pd: pd-aur sync_state: turn_off = 1\n[    1.443757] exynos_pd: pd-ispfe sync_state: turn_off = 1\n[    1.444267] exynos_pd: pd-tpu sync_state: turn_off = 1\n[    1.444564] ALSA device list:\n[    1.444582]   No soundcards found.\n[    1.444829] Warning: unable to open an initial console.\n[    1.457392] Freeing unused kernel memory: 10944K\n[    1.471448] Failed to set sysctl parameter 'kernel.softlockup_panic=1': parameter not found\n[    1.471680] Run /init as init process\n[    1.471692]   with arguments:\n[    1.471698]     /init\n[    1.471703]     kasan_multi_shot\n[    1.471707]   with environment:\n[    1.471712]     HOME=/\n[    1.471715]     TERM=linux\n[    1.471720]     stack_depot_disable=off\n[    1.471725]     softlockup_panic=1\n[    1.471728]     page_pinner=on\n[    1.471731]     kasan=off\n[    1.654652] odpm: S2MPG14: Applied new sampling frequency (type 0) in Hz: 1000.000000\n[    1.654698] odpm: S2MPG14: meter reset\n[    2.595944] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    2.596521] cpu1 \n[    2.596674] cpu4 \n[    2.596789] cpu8 \n[    2.596874] \n               Offline CPUs: \n[    2.601449] cpu1 \n[    2.608975] psci: CPU1 killed (polled 0 ms)\n[    2.612380] cpu2 \n[    2.617716] psci: CPU2 killed (polled 0 ms)\n[    2.620319] cpu3 \n[    2.625590] psci: CPU3 killed (polled 0 ms)\n[    2.628188] cpu4 \n[    2.632032] psci: CPU4 killed (polled 0 ms)\n[    2.634679] cpu5 \n[    2.639748] psci: CPU5 killed (polled 0 ms)\n[    2.642363] cpu6 \n[    2.647438] psci: CPU6 killed (polled 0 ms)\n[    2.650211] cpu7 \n[    2.654245] psci: CPU7 killed (polled 0 ms)\n[    2.656995] cpu8 \n[    2.660478] psci: CPU8 killed (polled 0 ms)\n\n[   31.841718] S2MPG15_LDO5: disabling\n[   31.842004] S2MPG15_LDO7: disabling\n[   31.843388] S2MPG14_LDO8: disabling\n[   31.843582] S2MPG14_LDO9: disabling\n[   31.843839] S2MPG14_LDO14: disabling\n[   31.844089] S2MPG14_LDO19: disabling\n[   31.844274] S2MPG14_LDO22: disabling\n[   31.850801] slg51002 9-0075: No init registers are overridden\n[   32.693057] CPU features: detected CPU1: Activity Monitors Unit (AMU)\n[   32.693320] Detected PIPT I-cache on CPU1\n[   32.693433] GICv3: CPU1: found redistributor 100 region 0:0x0000000010460000\n[   32.693710] CPU1: Booted secondary processor 0x0000000100 [0x411fd461]\n[   32.699569] CPU features: detected CPU4: Activity Monitors Unit (AMU)\n[   32.699616] Detected PIPT I-cache on CPU4\n[   32.699625] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64MMFR1_EL1. Boot CPU: 0x00000011312122, CPU4: 0x00000010312122\n[   32.699658] GICv3: CPU4: found redistributor 400 region 0:0x00000000104c0000\n[   32.699767] CPU4: Booted secondary processor 0x0000000400 [0x411fd4d0]\n[   33.714920] \n               ===== CPU 1 =====\n               Frequencies: 324 610 820 955 1098 1197 1328 1425 1548 1704\n               \n                324: \n[  432.869622]  1534     4.7 C/MHz     37 mW   14.3 J   42.0 I/mJ   391.0 s\n                610: \n[  649.266605]  2881     4.7 C/MHz     46 mW    9.7 J   62.1 I/mJ   208.3 s\n                820: \n[  812.354559]  3872     4.7 C/MHz     62 mW    9.6 J   62.2 I/mJ   155.0 s\n                955: \n[  952.975574]  4529     4.7 C/MHz     76 mW   10.0 J   59.9 I/mJ   132.5 s\n               1098: \n[ 1076.632703]  5194     4.7 C/MHz     91 mW   10.5 J   57.0 I/mJ   115.5 s\n               1197: \n[ 1191.030646]  5646     4.7 C/MHz    103 mW   10.9 J   55.0 I/mJ   106.3 s\n               1328: \n[ 1294.840018]  6271     4.7 C/MHz    119 mW   11.4 J   52.8 I/mJ    95.7 s\n               1425: \n[ 1391.627327]  6768     4.7 C/MHz    142 mW   12.6 J   47.6 I/mJ    88.7 s\n               1548: \n[ 1481.805033]  7313     4.7 C/MHz    164 mW   13.5 J   44.5 I/mJ    82.1 s\n               1704: \n[ 1564.287754] psci: CPU1 killed (polled 0 ms)\n[ 1564.293394] CPU features: detected CPU8: Activity Monitors Unit (AMU)\n[ 1564.293436] Detected PIPT I-cache on CPU8\n[ 1564.293444] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64MMFR1_EL1. Boot CPU: 0x00000011312122, CPU8: 0x00000010312122\n[ 1564.293482] GICv3: CPU8: found redistributor 800 region 0:0x0000000010540000\n[ 1564.293601] CPU8: Booted secondary processor 0x0000000800 [0x411fd4e0]\n[ 1565.305589]  8071     4.7 C/MHz    200 mW   14.9 J   40.4 I/mJ    74.4 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 402 578 697 712 910 1065 1221 1328 1418 1572 1836 1945 2130 2245 2367\n               \n                402: \n[ 1745.952118]  3478     8.7 C/MHz     30 mW    5.1 J   116.5 I/mJ   172.5 s\n                578: \n[ 1874.008371]  5003     8.7 C/MHz     43 mW    5.1 J   117.0 I/mJ   119.9 s\n                697: \n[ 1981.560388]  6035     8.7 C/MHz     53 mW    5.3 J   113.4 I/mJ    99.4 s\n                712: \n[ 2086.937691]  6170     8.7 C/MHz     55 mW    5.4 J   111.4 I/mJ    97.2 s\n                910: \n[ 2171.289616]  7872     8.7 C/MHz     81 mW    6.2 J   96.7 I/mJ    76.2 s\n               1065: \n[ 2244.469927]  9225     8.7 C/MHz    105 mW    6.8 J   87.7 I/mJ    65.1 s\n               1221: \n[ 2309.405663] 10563     8.7 C/MHz    133 mW    7.6 J   79.2 I/mJ    56.8 s\n               1328: \n[ 2369.732439] 11496     8.7 C/MHz    159 mW    8.3 J   72.1 I/mJ    52.2 s\n               1418: \n[ 2426.747196] 12275     8.7 C/MHz    176 mW    8.6 J   69.6 I/mJ    48.9 s\n               1572: \n[ 2478.940425] 13617     8.7 C/MHz    228 mW   10.0 J   59.8 I/mJ    44.1 s\n               1836: \n[ 2524.816117] 15898     8.7 C/MHz    335 mW   12.7 J   47.4 I/mJ    37.7 s\n               1945: \n[ 2568.521910] 16867     8.7 C/MHz    406 mW   14.4 J   41.5 I/mJ    35.6 s\n               2130: \n[ 2609.178551] 18450     8.7 C/MHz    531 mW   17.3 J   34.7 I/mJ    32.5 s\n               2245: \n[ 2648.180487] 19439     8.7 C/MHz    646 mW   20.0 J   30.1 I/mJ    30.9 s\n               2367: \n[ 2685.564512] psci: CPU4 killed (polled 0 ms)\n[ 2686.578468] 20520     8.7 C/MHz    812 mW   23.8 J   25.3 I/mJ    29.2 s\n               \n               \n               ===== CPU 8 =====\n               Frequencies: 500 880 1164 1298 1557 1745 1885 2049 2147 2294 2363 2556 2687 2850 2914\n               \n                500: \n[ 2806.665647]  5360     10.7 C/MHz     72 mW    8.1 J   74.3 I/mJ   112.0 s\n                880: \n[ 2878.362669]  9441     10.7 C/MHz    135 mW    8.6 J   70.0 I/mJ    63.6 s\n               1164: \n[ 2934.576242] 12482     10.7 C/MHz    199 mW    9.6 J   62.8 I/mJ    48.1 s\n               1298: \n[ 2985.798163] 13928     10.7 C/MHz    233 mW   10.0 J   59.7 I/mJ    43.1 s\n               1557: \n[ 3029.893517] 16687     10.7 C/MHz    318 mW   11.4 J   52.4 I/mJ    36.0 s\n               1745: \n[ 3070.082582] 18724     10.7 C/MHz    400 mW   12.8 J   46.8 I/mJ    32.1 s\n               1885: \n[ 3107.931728] 20199     10.7 C/MHz    490 mW   14.6 J   41.2 I/mJ    29.7 s\n               2049: \n[ 3143.426535] 21939     10.7 C/MHz    610 mW   16.7 J   35.9 I/mJ    27.4 s\n               2147: \n[ 3177.639500] 23014     10.7 C/MHz    701 mW   18.3 J   32.8 I/mJ    26.1 s\n               2294: \n[ 3210.186503] 24588     10.7 C/MHz    818 mW   20.0 J   30.0 I/mJ    24.4 s\n               2363: \n[ 3242.022603] 25323     10.7 C/MHz    894 mW   21.2 J   28.3 I/mJ    23.7 s\n               2556: \n[ 3272.039392] 27432     10.7 C/MHz   1146 mW   25.1 J   23.9 I/mJ    21.9 s\n               2687: \n[ 3300.993060] 28832     10.7 C/MHz   1399 mW   29.1 J   20.6 I/mJ    20.8 s\n               2850: \n[ 3328.792857] 30528     10.7 C/MHz   1836 mW   36.1 J   16.6 I/mJ    19.7 s\n               2914: \n[ 3356.131330] psci: CPU8 killed (polled 0 ms)\n[ 3356.142591] 31273     10.7 C/MHz   2135 mW   41.0 J   14.6 I/mJ    19.2 s\n               \n               \n               Benchmark finished!\n[ 3356.182514] \n               real\t55m54.523s\n               user\t49m56.300s\n               sys\t0m0.756s\n"
  },
  {
    "path": "results/zuma/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n  9:          0     GICv3  25 Level     vgic\n 11:       1723     GICv3  30 Level     arch_timer\n 12:          0     GICv3  27 Level     kvm guest vtimer\n 61:         47     GICv3 407 Level     gsa-mb-irq\n 96:          0     GICv3 666 Level     10840000.pinctrl\n 97:          0     GICv3 681 Level     10c40000.pinctrl\n 98:          0     GICv3 445 Level     12040000.pinctrl\n 99:          0     GICv3 464 Level     13040000.pinctrl\n100:          0     GICv3 465 Level     13060000.pinctrl\n168:          0     GICv3 674 Level     10880000.hsi2c\n169:          0     GICv3 675 Level     10890000.hsi2c\n170:          0     GICv3 676 Level     108a0000.hsi2c\n171:          0     GICv3 677 Level     108b0000.hsi2c\n172:          0     GICv3 688 Level     10c80000.hsi2c\n173:          3     GICv3 689 Level     10c90000.hsi2c\n174:         89     GICv3 691 Level     10cb0000.hsi2c\n175:        342     GICv3 680 Level     10980000.hsi2c\n182:          0     GICv3 249 Level     30000000.pmu\n214:        218     GICv3 498 Level     ufshcd\n254:          0     GICv3 190 Level     20a80000.s2mpu_s0_aur\n255:          0     GICv3 200 Level     1a670000.s2mpu_s0_bw\n256:          0     GICv3 269 Level     29c50000.s2mpu_s0_cpucl0\n257:          0     GICv3 311 Level     19870000.s2mpu_s0_dpuf0\n258:          0     GICv3 338 Level     19c70000.s2mpu_s0_dpuf1\n259:          0     GICv3 365 Level     16c70000.s2mpu_s0_eh\n260:          0     GICv3 376 Level     1a8a0000.s2mpu_s0_g2d\n261:          0     GICv3 386 Level     1ee70000.s2mpu_s0_g3d\n262:          0     GICv3 405 Level     1d4f0000.s2mpu_s0_gdc\n263:          0     GICv3 419 Level     1d8a0000.s2mpu_s0_gse\n264:          0     GICv3 427 Level     11070000.s2mpu_s0_hsi0\n265:          0     GICv3 458 Level     12090000.s2mpu_s0_hsi1\n266:          0     GICv3 492 Level     131f0000.s2mpu_s0_hsi2\n267:          0     GICv3 522 Level     1c140000.s2mpu_s0_ispfe\n268:          0     GICv3 526 Level     1c180000.s2mpu_s1_ispfe\n269:          0     GICv3 530 Level     1c1c0000.s2mpu_s2_ispfe\n270:          0     GICv3 545 Level     1d0d0000.s2mpu_s0_mcsc\n271:          0     GICv3 552 Level     1a4a0000.s2mpu_s0_mfc\n272:          0     GICv3 865 Level     101f0000.s2mpu_s0_misc\n273:          0     GICv3 709 Level     1c4d0000.s2mpu_s0_rgbp\n274:          0     GICv3 713 Level     1c510000.s2mpu_s1_rgbp\n275:          0     GICv3 717 Level     1ccb0000.s2mpu_s0_tnr\n276:          0     GICv3 721 Level     1ccf0000.s2mpu_s1_tnr\n277:          0     GICv3 725 Level     1cd30000.s2mpu_s2_tnr\n278:          0     GICv3 767 Level     1a370000.s2mpu_s0_tpu\n279:          0     GICv3 774 Level     1c8a0000.s2mpu_s0_yuvp\n280:          0     GICv3 411 Level     16470000.s2mpu_s0_gsa\n281:          0     GICv3 198 Level     1a640000.sysmmu\n282:          0     GICv3 199 Level     1a640000.sysmmu\n283:          0     GICv3 374 Level     1a870000.sysmmu\n284:          0     GICv3 375 Level     1a870000.sysmmu\n285:          0     GICv3 309 Level     19840000.sysmmu\n286:          0     GICv3 310 Level     19840000.sysmmu\n287:          0     GICv3 336 Level     19c40000.sysmmu\n288:          0     GICv3 337 Level     19c40000.sysmmu\n289:          0     GICv3 520 Level     1c110000.sysmmu\n290:          0     GICv3 521 Level     1c110000.sysmmu\n291:          0     GICv3 524 Level     1c150000.sysmmu\n292:          0     GICv3 525 Level     1c150000.sysmmu\n293:          0     GICv3 528 Level     1c190000.sysmmu\n294:          0     GICv3 529 Level     1c190000.sysmmu\n295:          0     GICv3 417 Level     1d870000.sysmmu\n296:          0     GICv3 418 Level     1d870000.sysmmu\n297:          0     GICv3 765 Level     1a340000.sysmmu\n298:          0     GICv3 766 Level     1a340000.sysmmu\n299:          0     GICv3 772 Level     1c870000.sysmmu\n300:          0     GICv3 773 Level     1c870000.sysmmu\n301:          0     GICv3 715 Level     1cc80000.sysmmu\n302:          0     GICv3 716 Level     1cc80000.sysmmu\n303:          0     GICv3 719 Level     1ccc0000.sysmmu\n304:          0     GICv3 720 Level     1ccc0000.sysmmu\n305:          0     GICv3 723 Level     1cd00000.sysmmu\n306:          0     GICv3 724 Level     1cd00000.sysmmu\n307:          0     GICv3 707 Level     1c4a0000.sysmmu\n308:          0     GICv3 708 Level     1c4a0000.sysmmu\n309:          0     GICv3 711 Level     1c4e0000.sysmmu\n310:          0     GICv3 712 Level     1c4e0000.sysmmu\n311:          0     GICv3 867 Level     101c0000.sysmmu\n312:          0     GICv3 868 Level     101c0000.sysmmu\n313:          0     GICv3 550 Level     1a470000.sysmmu\n314:          0     GICv3 551 Level     1a470000.sysmmu\n315:          0     GICv3 543 Level     1d0a0000.sysmmu\n316:          0     GICv3 544 Level     1d0a0000.sysmmu\n317:          0     GICv3 425 Level     11040000.sysmmu\n318:          0     GICv3 426 Level     11040000.sysmmu\n319:          0     GICv3 409 Level     16440000.sysmmu\n320:          0     GICv3 410 Level     16440000.sysmmu\n321:          0     GICv3 403 Level     1d4c0000.sysmmu\n322:          0     GICv3 404 Level     1d4c0000.sysmmu\n323:          0     GICv3 363 Level     16c40000.sysmmu\n324:          0     GICv3 364 Level     16c40000.sysmmu\n325:          0     GICv3 188 Level     20a50000.sysmmu\n326:          0     GICv3 189 Level     20a50000.sysmmu\n327:          0     GICv3 164 Level     19090000.sysmmu\n328:          0     GICv3 165 Level     19090000.sysmmu\n329:     335201     GICv3 790 Level     exynos-mct\n330:          0     GICv3 791 Level     exynos-mct\n331:          0     GICv3 792 Level     exynos-mct\n332:          0     GICv3 793 Level     exynos-mct\n333:          0     GICv3 794 Level     exynos-mct\n334:          0     GICv3 795 Level     exynos-mct\n335:          0     GICv3 796 Level     exynos-mct\n336:          0     GICv3 797 Level     exynos-mct\n337:          0     GICv3 798 Level     exynos-mct\n340:          0     GICv3 840 Level     10110000.pdma0\n341:          0     GICv3 838 Level     10130000.pdma1\n342:          0     GICv3  23 Level     arm-pmu\n344:          0     GICv3 799 Level     10060000.watchdog_cl0\n345:          0     GICv3 800 Level     10070000.watchdog_cl1\n346:          3     GICv3 112 Level     15110000.acpm_ipc\n354:          0     GICv3  13 Edge      trusty\n355:          0      gpa6   1 Edge      16490000.gsa-ns:gsa_gsc@0\n398:          0   s2mpg15     Edge      PMIC_THERM_IRQ\n399:          0   s2mpg15     Edge      PMIC_THERM_IRQ\n400:          0   s2mpg15     Edge      PMIC_THERM_IRQ\n401:          0   s2mpg15     Edge      PMIC_THERM_IRQ\n402:          0   s2mpg15     Edge      PMIC_THERM_IRQ\n403:          0   s2mpg15     Edge      PMIC_THERM_IRQ\n404:          0   s2mpg15     Edge      PMIC_THERM_IRQ\n405:          0   s2mpg15     Edge      PMIC_THERM_IRQ\n406:          0   s2mpg15     Edge      PMIC_THERM_IRQ\n407:          0   s2mpg15     Edge      PMIC_THERM_IRQ\n408:          0   s2mpg15     Edge      PMIC_THERM_IRQ\n409:          0   s2mpg15     Edge      PMIC_THERM_IRQ\n410:          0   s2mpg15     Edge      PMIC_THERM_IRQ\n411:          0   s2mpg15     Edge      PMIC_THERM_IRQ\n412:          0   s2mpg15     Edge      PMIC_THERM_IRQ\n413:          0   s2mpg15     Edge      PMIC_THERM_IRQ\n414:          0     GICv3 106 Level     s2mpg14-irq\n425:          0   s2mpg14     Edge      rtc-alarm0\n436:          0   s2mpg14     Edge      BUCK_OCP_IRQ\n437:          0   s2mpg14     Edge      BUCK_OCP_IRQ\n438:          0   s2mpg14     Edge      BUCK_OCP_IRQ\n439:          0   s2mpg14     Edge      BUCK_OCP_IRQ\n440:          0   s2mpg14     Edge      BUCK_OCP_IRQ\n441:          0   s2mpg14     Edge      BUCK_OCP_IRQ\n442:          0   s2mpg14     Edge      BUCK_OCP_IRQ\n443:          0   s2mpg14     Edge      BUCK_OCP_IRQ\n444:          0   s2mpg14     Edge      BUCK_OCP_IRQ\n460:          3      gpa8   0 Level     max777x9_pmic\nIPI0:       424       Rescheduling interrupts\nIPI1:        14       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:         0       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/zuma/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       CPU8       \n  9:          0          0          0          0          0          0          0          0          0     GICv3  25 Level     vgic\n 11:        205         23         21         22         22         22         22         22         22     GICv3  30 Level     arch_timer\n 12:          0          0          0          0          0          0          0          0          0     GICv3  27 Level     kvm guest vtimer\n 61:         47          0          0          0          0          0          0          0          0     GICv3 407 Level     gsa-mb-irq\n 96:          0          0          0          0          0          0          0          0          0     GICv3 666 Level     10840000.pinctrl\n 97:          0          0          0          0          0          0          0          0          0     GICv3 681 Level     10c40000.pinctrl\n 98:          0          0          0          0          0          0          0          0          0     GICv3 445 Level     12040000.pinctrl\n 99:          0          0          0          0          0          0          0          0          0     GICv3 464 Level     13040000.pinctrl\n100:          0          0          0          0          0          0          0          0          0     GICv3 465 Level     13060000.pinctrl\n168:          0          0          0          0          0          0          0          0          0     GICv3 674 Level     10880000.hsi2c\n169:          0          0          0          0          0          0          0          0          0     GICv3 675 Level     10890000.hsi2c\n170:          0          0          0          0          0          0          0          0          0     GICv3 676 Level     108a0000.hsi2c\n171:          0          0          0          0          0          0          0          0          0     GICv3 677 Level     108b0000.hsi2c\n172:          0          0          0          0          0          0          0          0          0     GICv3 688 Level     10c80000.hsi2c\n173:          3          0          0          0          0          0          0          0          0     GICv3 689 Level     10c90000.hsi2c\n174:         89          0          0          0          0          0          0          0          0     GICv3 691 Level     10cb0000.hsi2c\n175:        287          0          0          0          0          0          0          0          0     GICv3 680 Level     10980000.hsi2c\n182:          0          0          0          0          0          0          0          0          0     GICv3 249 Level     30000000.pmu\n214:        218          0          0          0          0          0          0          0          0     GICv3 498 Level     ufshcd\n254:          0          0          0          0          0          0          0          0          0     GICv3 190 Level     20a80000.s2mpu_s0_aur\n255:          0          0          0          0          0          0          0          0          0     GICv3 200 Level     1a670000.s2mpu_s0_bw\n256:          0          0          0          0          0          0          0          0          0     GICv3 269 Level     29c50000.s2mpu_s0_cpucl0\n257:          0          0          0          0          0          0          0          0          0     GICv3 311 Level     19870000.s2mpu_s0_dpuf0\n258:          0          0          0          0          0          0          0          0          0     GICv3 338 Level     19c70000.s2mpu_s0_dpuf1\n259:          0          0          0          0          0          0          0          0          0     GICv3 365 Level     16c70000.s2mpu_s0_eh\n260:          0          0          0          0          0          0          0          0          0     GICv3 376 Level     1a8a0000.s2mpu_s0_g2d\n261:          0          0          0          0          0          0          0          0          0     GICv3 386 Level     1ee70000.s2mpu_s0_g3d\n262:          0          0          0          0          0          0          0          0          0     GICv3 405 Level     1d4f0000.s2mpu_s0_gdc\n263:          0          0          0          0          0          0          0          0          0     GICv3 419 Level     1d8a0000.s2mpu_s0_gse\n264:          0          0          0          0          0          0          0          0          0     GICv3 427 Level     11070000.s2mpu_s0_hsi0\n265:          0          0          0          0          0          0          0          0          0     GICv3 458 Level     12090000.s2mpu_s0_hsi1\n266:          0          0          0          0          0          0          0          0          0     GICv3 492 Level     131f0000.s2mpu_s0_hsi2\n267:          0          0          0          0          0          0          0          0          0     GICv3 522 Level     1c140000.s2mpu_s0_ispfe\n268:          0          0          0          0          0          0          0          0          0     GICv3 526 Level     1c180000.s2mpu_s1_ispfe\n269:          0          0          0          0          0          0          0          0          0     GICv3 530 Level     1c1c0000.s2mpu_s2_ispfe\n270:          0          0          0          0          0          0          0          0          0     GICv3 545 Level     1d0d0000.s2mpu_s0_mcsc\n271:          0          0          0          0          0          0          0          0          0     GICv3 552 Level     1a4a0000.s2mpu_s0_mfc\n272:          0          0          0          0          0          0          0          0          0     GICv3 865 Level     101f0000.s2mpu_s0_misc\n273:          0          0          0          0          0          0          0          0          0     GICv3 709 Level     1c4d0000.s2mpu_s0_rgbp\n274:          0          0          0          0          0          0          0          0          0     GICv3 713 Level     1c510000.s2mpu_s1_rgbp\n275:          0          0          0          0          0          0          0          0          0     GICv3 717 Level     1ccb0000.s2mpu_s0_tnr\n276:          0          0          0          0          0          0          0          0          0     GICv3 721 Level     1ccf0000.s2mpu_s1_tnr\n277:          0          0          0          0          0          0          0          0          0     GICv3 725 Level     1cd30000.s2mpu_s2_tnr\n278:          0          0          0          0          0          0          0          0          0     GICv3 767 Level     1a370000.s2mpu_s0_tpu\n279:          0          0          0          0          0          0          0          0          0     GICv3 774 Level     1c8a0000.s2mpu_s0_yuvp\n280:          0          0          0          0          0          0          0          0          0     GICv3 411 Level     16470000.s2mpu_s0_gsa\n281:          0          0          0          0          0          0          0          0          0     GICv3 198 Level     1a640000.sysmmu\n282:          0          0          0          0          0          0          0          0          0     GICv3 199 Level     1a640000.sysmmu\n283:          0          0          0          0          0          0          0          0          0     GICv3 374 Level     1a870000.sysmmu\n284:          0          0          0          0          0          0          0          0          0     GICv3 375 Level     1a870000.sysmmu\n285:          0          0          0          0          0          0          0          0          0     GICv3 309 Level     19840000.sysmmu\n286:          0          0          0          0          0          0          0          0          0     GICv3 310 Level     19840000.sysmmu\n287:          0          0          0          0          0          0          0          0          0     GICv3 336 Level     19c40000.sysmmu\n288:          0          0          0          0          0          0          0          0          0     GICv3 337 Level     19c40000.sysmmu\n289:          0          0          0          0          0          0          0          0          0     GICv3 520 Level     1c110000.sysmmu\n290:          0          0          0          0          0          0          0          0          0     GICv3 521 Level     1c110000.sysmmu\n291:          0          0          0          0          0          0          0          0          0     GICv3 524 Level     1c150000.sysmmu\n292:          0          0          0          0          0          0          0          0          0     GICv3 525 Level     1c150000.sysmmu\n293:          0          0          0          0          0          0          0          0          0     GICv3 528 Level     1c190000.sysmmu\n294:          0          0          0          0          0          0          0          0          0     GICv3 529 Level     1c190000.sysmmu\n295:          0          0          0          0          0          0          0          0          0     GICv3 417 Level     1d870000.sysmmu\n296:          0          0          0          0          0          0          0          0          0     GICv3 418 Level     1d870000.sysmmu\n297:          0          0          0          0          0          0          0          0          0     GICv3 765 Level     1a340000.sysmmu\n298:          0          0          0          0          0          0          0          0          0     GICv3 766 Level     1a340000.sysmmu\n299:          0          0          0          0          0          0          0          0          0     GICv3 772 Level     1c870000.sysmmu\n300:          0          0          0          0          0          0          0          0          0     GICv3 773 Level     1c870000.sysmmu\n301:          0          0          0          0          0          0          0          0          0     GICv3 715 Level     1cc80000.sysmmu\n302:          0          0          0          0          0          0          0          0          0     GICv3 716 Level     1cc80000.sysmmu\n303:          0          0          0          0          0          0          0          0          0     GICv3 719 Level     1ccc0000.sysmmu\n304:          0          0          0          0          0          0          0          0          0     GICv3 720 Level     1ccc0000.sysmmu\n305:          0          0          0          0          0          0          0          0          0     GICv3 723 Level     1cd00000.sysmmu\n306:          0          0          0          0          0          0          0          0          0     GICv3 724 Level     1cd00000.sysmmu\n307:          0          0          0          0          0          0          0          0          0     GICv3 707 Level     1c4a0000.sysmmu\n308:          0          0          0          0          0          0          0          0          0     GICv3 708 Level     1c4a0000.sysmmu\n309:          0          0          0          0          0          0          0          0          0     GICv3 711 Level     1c4e0000.sysmmu\n310:          0          0          0          0          0          0          0          0          0     GICv3 712 Level     1c4e0000.sysmmu\n311:          0          0          0          0          0          0          0          0          0     GICv3 867 Level     101c0000.sysmmu\n312:          0          0          0          0          0          0          0          0          0     GICv3 868 Level     101c0000.sysmmu\n313:          0          0          0          0          0          0          0          0          0     GICv3 550 Level     1a470000.sysmmu\n314:          0          0          0          0          0          0          0          0          0     GICv3 551 Level     1a470000.sysmmu\n315:          0          0          0          0          0          0          0          0          0     GICv3 543 Level     1d0a0000.sysmmu\n316:          0          0          0          0          0          0          0          0          0     GICv3 544 Level     1d0a0000.sysmmu\n317:          0          0          0          0          0          0          0          0          0     GICv3 425 Level     11040000.sysmmu\n318:          0          0          0          0          0          0          0          0          0     GICv3 426 Level     11040000.sysmmu\n319:          0          0          0          0          0          0          0          0          0     GICv3 409 Level     16440000.sysmmu\n320:          0          0          0          0          0          0          0          0          0     GICv3 410 Level     16440000.sysmmu\n321:          0          0          0          0          0          0          0          0          0     GICv3 403 Level     1d4c0000.sysmmu\n322:          0          0          0          0          0          0          0          0          0     GICv3 404 Level     1d4c0000.sysmmu\n323:          0          0          0          0          0          0          0          0          0     GICv3 363 Level     16c40000.sysmmu\n324:          0          0          0          0          0          0          0          0          0     GICv3 364 Level     16c40000.sysmmu\n325:          0          0          0          0          0          0          0          0          0     GICv3 188 Level     20a50000.sysmmu\n326:          0          0          0          0          0          0          0          0          0     GICv3 189 Level     20a50000.sysmmu\n327:          0          0          0          0          0          0          0          0          0     GICv3 164 Level     19090000.sysmmu\n328:          0          0          0          0          0          0          0          0          0     GICv3 165 Level     19090000.sysmmu\n329:          1          0          0          0          0          0          0          0          0     GICv3 790 Level     exynos-mct\n330:          0          2          0          0          0          0          0          0          0     GICv3 791 Level     exynos-mct\n331:          0          0          2          0          0          0          0          0          0     GICv3 792 Level     exynos-mct\n332:          0          0          0          2          0          0          0          0          0     GICv3 793 Level     exynos-mct\n333:          0          0          0          0          2          0          0          0          0     GICv3 794 Level     exynos-mct\n334:          0          0          0          0          0          2          0          0          0     GICv3 795 Level     exynos-mct\n335:          0          0          0          0          0          0          2          0          0     GICv3 796 Level     exynos-mct\n336:          0          0          0          0          0          0          0          2          0     GICv3 797 Level     exynos-mct\n337:          0          0          0          0          0          0          0          0          2     GICv3 798 Level     exynos-mct\n340:          0          0          0          0          0          0          0          0          0     GICv3 840 Level     10110000.pdma0\n341:          0          0          0          0          0          0          0          0          0     GICv3 838 Level     10130000.pdma1\n342:          0          0          0          0          0          0          0          0          0     GICv3  23 Level     arm-pmu\n344:          0          0          0          0          0          0          0          0          0     GICv3 799 Level     10060000.watchdog_cl0\n345:          0          0          0          0          0          0          0          0          0     GICv3 800 Level     10070000.watchdog_cl1\n346:          3          0          0          0          0          0          0          0          0     GICv3 112 Level     15110000.acpm_ipc\n354:          0          1          0          0          0          0          0          0          0     GICv3  13 Edge      trusty\n355:          0          0          0          0          0          0          0          0          0      gpa6   1 Edge      16490000.gsa-ns:gsa_gsc@0\n398:          0          0          0          0          0          0          0          0          0   s2mpg15     Edge      PMIC_THERM_IRQ\n399:          0          0          0          0          0          0          0          0          0   s2mpg15     Edge      PMIC_THERM_IRQ\n400:          0          0          0          0          0          0          0          0          0   s2mpg15     Edge      PMIC_THERM_IRQ\n401:          0          0          0          0          0          0          0          0          0   s2mpg15     Edge      PMIC_THERM_IRQ\n402:          0          0          0          0          0          0          0          0          0   s2mpg15     Edge      PMIC_THERM_IRQ\n403:          0          0          0          0          0          0          0          0          0   s2mpg15     Edge      PMIC_THERM_IRQ\n404:          0          0          0          0          0          0          0          0          0   s2mpg15     Edge      PMIC_THERM_IRQ\n405:          0          0          0          0          0          0          0          0          0   s2mpg15     Edge      PMIC_THERM_IRQ\n406:          0          0          0          0          0          0          0          0          0   s2mpg15     Edge      PMIC_THERM_IRQ\n407:          0          0          0          0          0          0          0          0          0   s2mpg15     Edge      PMIC_THERM_IRQ\n408:          0          0          0          0          0          0          0          0          0   s2mpg15     Edge      PMIC_THERM_IRQ\n409:          0          0          0          0          0          0          0          0          0   s2mpg15     Edge      PMIC_THERM_IRQ\n410:          0          0          0          0          0          0          0          0          0   s2mpg15     Edge      PMIC_THERM_IRQ\n411:          0          0          0          0          0          0          0          0          0   s2mpg15     Edge      PMIC_THERM_IRQ\n412:          0          0          0          0          0          0          0          0          0   s2mpg15     Edge      PMIC_THERM_IRQ\n413:          0          0          0          0          0          0          0          0          0   s2mpg15     Edge      PMIC_THERM_IRQ\n414:          0          0          0          0          0          0          0          0          0     GICv3 106 Level     s2mpg14-irq\n425:          0          0          0          0          0          0          0          0          0   s2mpg14     Edge      rtc-alarm0\n436:          0          0          0          0          0          0          0          0          0   s2mpg14     Edge      BUCK_OCP_IRQ\n437:          0          0          0          0          0          0          0          0          0   s2mpg14     Edge      BUCK_OCP_IRQ\n438:          0          0          0          0          0          0          0          0          0   s2mpg14     Edge      BUCK_OCP_IRQ\n439:          0          0          0          0          0          0          0          0          0   s2mpg14     Edge      BUCK_OCP_IRQ\n440:          0          0          0          0          0          0          0          0          0   s2mpg14     Edge      BUCK_OCP_IRQ\n441:          0          0          0          0          0          0          0          0          0   s2mpg14     Edge      BUCK_OCP_IRQ\n442:          0          0          0          0          0          0          0          0          0   s2mpg14     Edge      BUCK_OCP_IRQ\n443:          0          0          0          0          0          0          0          0          0   s2mpg14     Edge      BUCK_OCP_IRQ\n444:          0          0          0          0          0          0          0          0          0   s2mpg14     Edge      BUCK_OCP_IRQ\n460:          3          0          0          0          0          0          0          0          0      gpa8   0 Level     max777x9_pmic\nIPI0:       133         33         26         26         24         25         24         29         26       Rescheduling interrupts\nIPI1:         1          5          9         10         12          9         10          9          8       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         0          7          7          7          7          7          7          7          7       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/zuma/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:00 bash /init kasan_multi_shot\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [rcu_par_gp]\n    5 root      0:00 [slub_flushwq]\n    6 root      0:00 [netns]\n    8 root      0:00 [kworker/0:0H-ev]\n   10 root      0:00 [mm_percpu_wq]\n   11 root      0:00 [rcu_tasks_kthre]\n   12 root      0:00 [rcu_tasks_trace]\n   13 root      0:00 [ksoftirqd/0]\n   14 root      0:00 [rcu_preempt]\n   15 root      0:00 [rcuog/0]\n   16 root      0:00 [rcuop/0]\n   17 root      0:00 [migration/0]\n   18 root      0:00 [cpuhp/0]\n   19 root      0:00 [cpuhp/1]\n   20 root      0:00 [migration/1]\n   21 root      0:00 [ksoftirqd/1]\n   23 root      0:00 [kworker/1:0H]\n   24 root      0:00 [rcuop/1]\n   25 root      0:00 [cpuhp/2]\n   26 root      0:00 [migration/2]\n   27 root      0:00 [ksoftirqd/2]\n   29 root      0:00 [kworker/2:0H]\n   30 root      0:00 [rcuop/2]\n   31 root      0:00 [cpuhp/3]\n   32 root      0:00 [migration/3]\n   33 root      0:00 [ksoftirqd/3]\n   35 root      0:00 [kworker/3:0H]\n   36 root      0:00 [rcuog/3]\n   37 root      0:00 [rcuop/3]\n   38 root      0:00 [cpuhp/4]\n   39 root      0:00 [migration/4]\n   40 root      0:00 [ksoftirqd/4]\n   42 root      0:00 [kworker/4:0H]\n   43 root      0:00 [rcuop/4]\n   44 root      0:00 [cpuhp/5]\n   45 root      0:00 [migration/5]\n   46 root      0:00 [ksoftirqd/5]\n   48 root      0:00 [kworker/5:0H]\n   49 root      0:00 [rcuop/5]\n   50 root      0:00 [cpuhp/6]\n   51 root      0:00 [migration/6]\n   52 root      0:00 [ksoftirqd/6]\n   54 root      0:00 [kworker/6:0H]\n   55 root      0:00 [rcuog/6]\n   56 root      0:00 [rcuop/6]\n   57 root      0:00 [cpuhp/7]\n   58 root      0:00 [migration/7]\n   59 root      0:00 [ksoftirqd/7]\n   61 root      0:00 [kworker/7:0H]\n   62 root      0:00 [rcuop/7]\n   63 root      0:00 [cpuhp/8]\n   64 root      0:00 [migration/8]\n   65 root      0:00 [ksoftirqd/8]\n   67 root      0:00 [kworker/8:0H]\n   68 root      0:00 [rcuop/8]\n   69 root      0:00 [inet_frag_wq]\n   70 root      0:00 [kworker/4:1-rcu]\n   71 root      0:00 [kworker/1:1-eve]\n   72 root      0:00 [kworker/2:1-eve]\n   73 root      0:00 [kworker/3:1-eve]\n   74 root      0:00 [kworker/5:1-eve]\n   75 root      0:00 [kworker/6:1-eve]\n   77 root      0:00 [kworker/7:1-eve]\n   78 root      0:00 [kworker/8:1-eve]\n   79 root      0:00 [oom_reaper]\n   80 root      0:00 [writeback]\n   81 root      0:00 [kcompactd0]\n   82 root      0:00 [kblockd]\n   83 root      0:00 [blkcg_punt_bio]\n   84 root      0:00 [edac-poller]\n   85 root      0:00 [devfreq_wq]\n   86 root      0:00 [watchdogd]\n   88 root      0:00 [kworker/0:1H-kb]\n   90 root      0:00 [kswapd0]\n   91 root      0:00 [kworker/u19:0-t]\n   92 root      0:00 [erofs_worker/0]\n  102 root      0:00 [dmabuf-deferred]\n  105 root      0:00 [uas]\n  107 root      0:00 [dm_bufio_cache]\n  108 root      0:00 [mld]\n  109 root      0:00 [ipv6_addrconf]\n  112 root      0:00 [irq/346-1511000]\n  113 root      0:00 [acpm_log]\n  114 root      0:00 [trusty-nop-0]\n  115 root      0:00 [trusty-nop-1]\n  116 root      0:00 [trusty-nop-2]\n  117 root      0:00 [trusty-nop-3]\n  118 root      0:00 [trusty-nop-4]\n  119 root      0:00 [trusty-nop-5]\n  120 root      0:00 [trusty-nop-6]\n  121 root      0:00 [trusty-nop-7]\n  122 root      0:00 [trusty-nop-8]\n  123 root      0:00 [PT_resize]\n  124 root      0:00 [kdbgd]\n  125 root      0:00 [irq/281-1a64000]\n  126 root      0:00 [irq/282-1a64000]\n  127 root      0:00 [irq/283-1a87000]\n  128 root      0:00 [irq/284-1a87000]\n  129 root      0:00 [irq/285-1984000]\n  130 root      0:00 [irq/286-1984000]\n  131 root      0:00 [irq/287-19c4000]\n  132 root      0:00 [irq/288-19c4000]\n  133 root      0:00 [irq/289-1c11000]\n  134 root      0:00 [irq/290-1c11000]\n  135 root      0:00 [irq/291-1c15000]\n  136 root      0:00 [irq/292-1c15000]\n  137 root      0:00 [irq/293-1c19000]\n  138 root      0:00 [irq/294-1c19000]\n  139 root      0:00 [irq/295-1d87000]\n  140 root      0:00 [irq/296-1d87000]\n  141 root      0:00 [irq/297-1a34000]\n  142 root      0:00 [irq/298-1a34000]\n  143 root      0:00 [irq/299-1c87000]\n  144 root      0:00 [irq/300-1c87000]\n  145 root      0:00 [irq/301-1cc8000]\n  146 root      0:00 [irq/302-1cc8000]\n  147 root      0:00 [irq/303-1ccc000]\n  148 root      0:00 [irq/304-1ccc000]\n  149 root      0:00 [irq/305-1cd0000]\n  150 root      0:00 [irq/306-1cd0000]\n  151 root      0:00 [irq/307-1c4a000]\n  152 root      0:00 [irq/308-1c4a000]\n  153 root      0:00 [irq/309-1c4e000]\n  154 root      0:00 [irq/310-1c4e000]\n  155 root      0:00 [irq/311-101c000]\n  156 root      0:00 [irq/312-101c000]\n  157 root      0:00 [irq/313-1a47000]\n  158 root      0:00 [irq/314-1a47000]\n  159 root      0:00 [irq/315-1d0a000]\n  160 root      0:00 [irq/316-1d0a000]\n  161 root      0:00 [irq/317-1104000]\n  162 root      0:00 [irq/318-1104000]\n  163 root      0:00 [irq/319-1644000]\n  164 root      0:00 [irq/320-1644000]\n  165 root      0:00 [irq/321-1d4c000]\n  166 root      0:00 [irq/322-1d4c000]\n  167 root      0:00 [irq/323-16c4000]\n  168 root      0:00 [irq/324-16c4000]\n  169 root      0:00 [irq/325-20a5000]\n  170 root      0:00 [irq/326-20a5000]\n  171 root      0:00 [irq/327-1909000]\n  172 root      0:00 [irq/328-1909000]\n  173 root      0:00 [kworker/u19:1-t]\n  174 root      0:00 [spmic-init]\n  175 root      0:00 [irq/414-s2mpg14]\n  176 root      0:00 [wq_odpm]\n  177 root      0:00 [wq_odpm]\n  178 root      0:00 [scsi_eh_0]\n  179 root      0:00 [scsi_tmf_0]\n  180 root      0:00 [ufs_mgc_hibern8]\n  181 root      0:00 [ufs_eh_wq_0]\n  182 root      0:00 [ufs_clk_gating_]\n  183 root      0:00 [irq/460-max777x]\n  185 root      0:00 [slg51002wq]\n  186 root      0:06 [simpleinteracti]\n  188 root      0:00 [simpleinteracti]\n  191 root      0:00 [simpleinteracti]\n  193 root      0:00 [simpleinteracti]\n  195 root      0:00 [simpleinteracti]\n  198 root      0:00 [simpleinteracti]\n  200 root      0:00 [simpleinteracti]\n  202 root      0:00 [simpleinteracti]\n  205 root      0:00 [simpleinteracti]\n  207 root      0:00 [simpleinteracti]\n  214 root      0:00 [kworker/0:24-rc]\n  215 root      0:00 [kworker/0:25-rc]\n  228 root      0:00 [kworker/2:2]\n  229 root      0:00 [kworker/3:2]\n  230 root      0:00 [kworker/4:2-eve]\n  231 root      0:00 [kworker/5:2]\n  232 root      0:00 [kworker/6:2]\n  233 root      0:00 [kworker/7:2]\n  234 root      0:00 [kworker/8:2-rcu]\n  247 root      0:00 [kworker/1:0]\n  254 root      0:00 [kworker/u18:2-e]\n  271 root      0:00 [kworker/u18:0-e]\n  283 root      0:00 [kworker/u18:1-e]\n  285 root      0:00 [kworker/8:0]\n  329 root      0:00 ps -A\n"
  },
  {
    "path": "results/zuma/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,324000,1534.475836,4.736036530864197,36.54885302917935,14.291698,41.98241524555025,391.03\r\n1,610000,2881.027951,4.722996640983607,46.38932848075132,9.661691000000001,62.10093036508826,208.274\r\n1,820000,3872.116886,4.722093763414634,62.22095529399618,9.642256999999999,62.22609499000079,154.968\r\n1,955000,4528.746217,4.742142635602094,75.65348417723908,10.024011,59.85627908828113,132.499\r\n1,1098000,5193.770937,4.730210325136612,91.16619062456724,10.532977,56.96395235648952,115.536\r\n1,1197000,5646.42111,4.717143784461153,102.591113536707,10.902768,55.03189648720398,106.274\r\n1,1328000,6271.230729,4.722312295933735,118.76636568848758,11.364516,52.79591317395303,95.688\r\n1,1425000,6767.578786,4.749178095438596,142.14955284140248,12.604543,47.60188449513799,88.671\r\n1,1548000,7312.970772,4.724141325581395,164.1343667361289,13.468701999999999,44.54772256450548,82.059\r\n1,1704000,8070.699326,4.736325895539906,199.932270862753,14.865964,40.36065202364273,74.355\r\n4,402000,3477.99876,8.651738208955225,29.839472540211563,5.148055,116.54887136986686,172.525\r\n4,578000,5003.37728,8.656362076124568,42.75935530133742,5.128215,116.99977477543355,119.932\r\n4,697000,6035.306543,8.658976388809181,53.22190149556961,5.291694000000001,113.3852410967074,99.427\r\n4,712000,6170.300288,8.66615208988764,55.37856929863346,5.385732,111.40546911728991,97.253\r\n4,910000,7872.46605,8.651061593406594,81.43813871725241,6.207784999999999,96.6528318877023,76.227\r\n4,1065000,9224.524937,8.661525762441315,105.20085772257747,6.843947,87.66870929888849,65.056\r\n4,1221000,10563.19431,8.651264791154793,133.3461944659579,7.575664,79.20097829048385,56.812\r\n4,1328000,11495.794455,8.65647172816265,159.45184461556144,8.324343,72.07776037099865,52.206\r\n4,1418000,12275.461353,8.65688388787024,176.30456125997136,8.619530000000001,69.60936385162532,48.89\r\n4,1572000,13617.175798,8.66232557124682,227.82429550301765,10.041128,59.75424275041608,44.074\r\n4,1836000,15897.829946,8.658948772331154,335.4243066408837,12.662602999999999,47.38362246688142,37.751\r\n4,1945000,16866.724763,8.671837924421594,406.01978361669245,14.448214,41.527624106342834,35.585\r\n4,2130000,18450.184502,8.662058451643192,531.2172630025821,17.281560000000002,34.719087860123736,32.532\r\n4,2245000,19439.494573,8.659017627171492,646.2987336852674,19.955766,30.066498073789802,30.877\r\n4,2367000,20519.835841,8.669132167722855,812.1608327066384,23.758953,25.253638070667506,29.254\r\n8,500000,5360.110061,10.720220122,72.1132110862012,8.073723,74.3151579512946,111.959\r\n8,880000,9440.790509,10.728171032954545,134.82812696615076,8.571833,69.996697322498,63.576\r\n8,1164000,12482.316718,10.72363979209622,198.61407777084634,9.551351,62.81833847379286,48.09\r\n8,1298000,13927.899905,10.730277276579352,233.05828171040116,10.045045,59.73094197188763,43.101\r\n8,1557000,16687.061965,10.717445064226077,318.0297968146316,11.441758,52.439494000834486,35.977\r\n8,1745000,18724.254151,10.730231605157593,400.0114451443897,12.826767,46.77718087496249,32.066\r\n8,1885000,20199.299758,10.715808890185677,489.8378523851174,14.56092,41.206187521118174,29.726\r\n8,2049000,21938.644923,10.707000938506589,609.9452340067955,16.694811,35.93931072355356,27.371\r\n8,2147000,23014.076944,10.719178828132279,700.6580308895105,18.28227,32.818681706374534,26.093\r\n8,2294000,24588.148512,10.718460554489974,817.9129135276777,19.976705000000003,30.034983246736633,24.424\r\n8,2363000,25322.866548,10.716405648751588,893.7483555405634,21.196136,28.307046152185475,23.716\r\n8,2556000,27432.333577,10.732524873630673,1145.8206732745628,25.085452,23.918245523341575,21.893\r\n8,2687000,28832.292167,10.730291093040565,1399.2200086409678,29.147152,20.585201600485703,20.831\r\n8,2850000,30528.136766,10.711626935438597,1836.3470549372364,36.133801,16.604951137025413,19.677\r\n8,2914000,31272.803086,10.731915952642415,2135.2972719700124,41.01479,14.628869244484733,19.208\r\n"
  },
  {
    "path": "results/zuma/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 3353.5399363040924, \"cpus\": {\"1\": {\"freqs\": {\"324000\": {\"active\": {\"elapsed_sec\": 391.03, \"elapsed_ns\": 391030000000.0, \"power_mean\": 36.54885302917935, \"energy_millijoules\": 14291.698, \"energy_joules\": 14.291698, \"coremark_score\": 1534.475836, \"coremarks_per_mhz\": 4.736036530864197, \"ulpmark_cm_score\": 41.98241524555025}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 22.997405189620757, \"energy_millijoules\": 115.217, \"energy_joules\": 0.115217}}, \"610000\": {\"active\": {\"elapsed_sec\": 208.274, \"elapsed_ns\": 208274000000.0, \"power_mean\": 46.38932848075132, \"energy_millijoules\": 9661.691, \"energy_joules\": 9.661691000000001, \"coremark_score\": 2881.027951, \"coremarks_per_mhz\": 4.722996640983607, \"ulpmark_cm_score\": 62.10093036508826}, \"idle\": {\"elapsed_sec\": 5.011, \"elapsed_ns\": 5011000000.0, \"power_mean\": 20.37198164039114, \"energy_millijoules\": 102.084, \"energy_joules\": 0.10208400000000001}}, \"820000\": {\"active\": {\"elapsed_sec\": 154.968, \"elapsed_ns\": 154968000000.0, \"power_mean\": 62.22095529399618, \"energy_millijoules\": 9642.257, \"energy_joules\": 9.642256999999999, \"coremark_score\": 3872.116886, \"coremarks_per_mhz\": 4.722093763414634, \"ulpmark_cm_score\": 62.22609499000079}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 21.825748502994013, \"energy_millijoules\": 109.347, \"energy_joules\": 0.109347}}, \"955000\": {\"active\": {\"elapsed_sec\": 132.499, \"elapsed_ns\": 132499000000.0, \"power_mean\": 75.65348417723908, \"energy_millijoules\": 10024.011, \"energy_joules\": 10.024011, \"coremark_score\": 4528.746217, \"coremarks_per_mhz\": 4.742142635602094, \"ulpmark_cm_score\": 59.85627908828113}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 23.175848303393213, \"energy_millijoules\": 116.111, \"energy_joules\": 0.116111}}, \"1098000\": {\"active\": {\"elapsed_sec\": 115.536, \"elapsed_ns\": 115536000000.0, \"power_mean\": 91.16619062456724, \"energy_millijoules\": 10532.977, \"energy_joules\": 10.532977, \"coremark_score\": 5193.770937, \"coremarks_per_mhz\": 4.730210325136612, \"ulpmark_cm_score\": 56.96395235648952}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 25.12574850299401, \"energy_millijoules\": 125.88, \"energy_joules\": 0.12588}}, \"1197000\": {\"active\": {\"elapsed_sec\": 106.274, \"elapsed_ns\": 106274000000.0, \"power_mean\": 102.591113536707, \"energy_millijoules\": 10902.768, \"energy_joules\": 10.902768, \"coremark_score\": 5646.42111, \"coremarks_per_mhz\": 4.717143784461153, \"ulpmark_cm_score\": 55.03189648720398}, \"idle\": {\"elapsed_sec\": 5.012, \"elapsed_ns\": 5012000000.0, \"power_mean\": 26.26975259377494, \"energy_millijoules\": 131.664, \"energy_joules\": 0.13166399999999998}}, \"1328000\": {\"active\": {\"elapsed_sec\": 95.688, \"elapsed_ns\": 95688000000.0, \"power_mean\": 118.76636568848758, \"energy_millijoules\": 11364.516, \"energy_joules\": 11.364516, \"coremark_score\": 6271.230729, \"coremarks_per_mhz\": 4.722312295933735, \"ulpmark_cm_score\": 52.79591317395303}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 28.365868263473054, \"energy_millijoules\": 142.113, \"energy_joules\": 0.142113}}, \"1425000\": {\"active\": {\"elapsed_sec\": 88.671, \"elapsed_ns\": 88671000000.0, \"power_mean\": 142.14955284140248, \"energy_millijoules\": 12604.543, \"energy_joules\": 12.604543, \"coremark_score\": 6767.578786, \"coremarks_per_mhz\": 4.749178095438596, \"ulpmark_cm_score\": 47.60188449513799}, \"idle\": {\"elapsed_sec\": 5.005, \"elapsed_ns\": 5005000000.0, \"power_mean\": 31.478721278721277, \"energy_millijoules\": 157.551, \"energy_joules\": 0.157551}}, \"1548000\": {\"active\": {\"elapsed_sec\": 82.059, \"elapsed_ns\": 82059000000.0, \"power_mean\": 164.1343667361289, \"energy_millijoules\": 13468.702, \"energy_joules\": 13.468701999999999, \"coremark_score\": 7312.970772, \"coremarks_per_mhz\": 4.724141325581395, \"ulpmark_cm_score\": 44.54772256450548}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 35.332135728542916, \"energy_millijoules\": 177.014, \"energy_joules\": 0.177014}}, \"1704000\": {\"active\": {\"elapsed_sec\": 74.355, \"elapsed_ns\": 74355000000.0, \"power_mean\": 199.932270862753, \"energy_millijoules\": 14865.964, \"energy_joules\": 14.865964, \"coremark_score\": 8070.699326, \"coremarks_per_mhz\": 4.736325895539906, \"ulpmark_cm_score\": 40.36065202364273}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 40.17385229540918, \"energy_millijoules\": 201.271, \"energy_joules\": 0.20127099999999998}}}}, \"4\": {\"freqs\": {\"402000\": {\"active\": {\"elapsed_sec\": 172.525, \"elapsed_ns\": 172525000000.0, \"power_mean\": 29.839472540211563, \"energy_millijoules\": 5148.055, \"energy_joules\": 5.148055, \"coremark_score\": 3477.99876, \"coremarks_per_mhz\": 8.651738208955225, \"ulpmark_cm_score\": 116.54887136986686}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"578000\": {\"active\": {\"elapsed_sec\": 119.932, \"elapsed_ns\": 119932000000.0, \"power_mean\": 42.75935530133742, \"energy_millijoules\": 5128.215, \"energy_joules\": 5.128215, \"coremark_score\": 5003.37728, \"coremarks_per_mhz\": 8.656362076124568, \"ulpmark_cm_score\": 116.99977477543355}, \"idle\": {\"elapsed_sec\": 5.011, \"elapsed_ns\": 5011000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"697000\": {\"active\": {\"elapsed_sec\": 99.427, \"elapsed_ns\": 99427000000.0, \"power_mean\": 53.22190149556961, \"energy_millijoules\": 5291.694, \"energy_joules\": 5.291694000000001, \"coremark_score\": 6035.306543, \"coremarks_per_mhz\": 8.658976388809181, \"ulpmark_cm_score\": 113.3852410967074}, \"idle\": {\"elapsed_sec\": 5.011, \"elapsed_ns\": 5011000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"712000\": {\"active\": {\"elapsed_sec\": 97.253, \"elapsed_ns\": 97253000000.0, \"power_mean\": 55.37856929863346, \"energy_millijoules\": 5385.732, \"energy_joules\": 5.385732, \"coremark_score\": 6170.300288, \"coremarks_per_mhz\": 8.66615208988764, \"ulpmark_cm_score\": 111.40546911728991}, \"idle\": {\"elapsed_sec\": 5.011, \"elapsed_ns\": 5011000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"910000\": {\"active\": {\"elapsed_sec\": 76.227, \"elapsed_ns\": 76227000000.0, \"power_mean\": 81.43813871725241, \"energy_millijoules\": 6207.785, \"energy_joules\": 6.207784999999999, \"coremark_score\": 7872.46605, \"coremarks_per_mhz\": 8.651061593406594, \"ulpmark_cm_score\": 96.6528318877023}, \"idle\": {\"elapsed_sec\": 5.011, \"elapsed_ns\": 5011000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1065000\": {\"active\": {\"elapsed_sec\": 65.056, \"elapsed_ns\": 65056000000.0, \"power_mean\": 105.20085772257747, \"energy_millijoules\": 6843.947, \"energy_joules\": 6.843947, \"coremark_score\": 9224.524937, \"coremarks_per_mhz\": 8.661525762441315, \"ulpmark_cm_score\": 87.66870929888849}, \"idle\": {\"elapsed_sec\": 5.011, \"elapsed_ns\": 5011000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1221000\": {\"active\": {\"elapsed_sec\": 56.812, \"elapsed_ns\": 56812000000.0, \"power_mean\": 133.3461944659579, \"energy_millijoules\": 7575.664, \"energy_joules\": 7.575664, \"coremark_score\": 10563.19431, \"coremarks_per_mhz\": 8.651264791154793, \"ulpmark_cm_score\": 79.20097829048385}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1328000\": {\"active\": {\"elapsed_sec\": 52.206, \"elapsed_ns\": 52206000000.0, \"power_mean\": 159.45184461556144, \"energy_millijoules\": 8324.343, \"energy_joules\": 8.324343, \"coremark_score\": 11495.794455, \"coremarks_per_mhz\": 8.65647172816265, \"ulpmark_cm_score\": 72.07776037099865}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1418000\": {\"active\": {\"elapsed_sec\": 48.89, \"elapsed_ns\": 48890000000.0, \"power_mean\": 176.30456125997136, \"energy_millijoules\": 8619.53, \"energy_joules\": 8.619530000000001, \"coremark_score\": 12275.461353, \"coremarks_per_mhz\": 8.65688388787024, \"ulpmark_cm_score\": 69.60936385162532}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1572000\": {\"active\": {\"elapsed_sec\": 44.074, \"elapsed_ns\": 44074000000.0, \"power_mean\": 227.82429550301765, \"energy_millijoules\": 10041.128, \"energy_joules\": 10.041128, \"coremark_score\": 13617.175798, \"coremarks_per_mhz\": 8.66232557124682, \"ulpmark_cm_score\": 59.75424275041608}, \"idle\": {\"elapsed_sec\": 5.006, \"elapsed_ns\": 5006000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1836000\": {\"active\": {\"elapsed_sec\": 37.751, \"elapsed_ns\": 37751000000.0, \"power_mean\": 335.4243066408837, \"energy_millijoules\": 12662.603, \"energy_joules\": 12.662602999999999, \"coremark_score\": 15897.829946, \"coremarks_per_mhz\": 8.658948772331154, \"ulpmark_cm_score\": 47.38362246688142}, \"idle\": {\"elapsed_sec\": 5.011, \"elapsed_ns\": 5011000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1945000\": {\"active\": {\"elapsed_sec\": 35.585, \"elapsed_ns\": 35585000000.0, \"power_mean\": 406.01978361669245, \"energy_millijoules\": 14448.214, \"energy_joules\": 14.448214, \"coremark_score\": 16866.724763, \"coremarks_per_mhz\": 8.671837924421594, \"ulpmark_cm_score\": 41.527624106342834}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2130000\": {\"active\": {\"elapsed_sec\": 32.532, \"elapsed_ns\": 32532000000.0, \"power_mean\": 531.2172630025821, \"energy_millijoules\": 17281.56, \"energy_joules\": 17.281560000000002, \"coremark_score\": 18450.184502, \"coremarks_per_mhz\": 8.662058451643192, \"ulpmark_cm_score\": 34.719087860123736}, \"idle\": {\"elapsed_sec\": 5.011, \"elapsed_ns\": 5011000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2245000\": {\"active\": {\"elapsed_sec\": 30.877, \"elapsed_ns\": 30877000000.0, \"power_mean\": 646.2987336852674, \"energy_millijoules\": 19955.766, \"energy_joules\": 19.955766, \"coremark_score\": 19439.494573, \"coremarks_per_mhz\": 8.659017627171492, \"ulpmark_cm_score\": 30.066498073789802}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2367000\": {\"active\": {\"elapsed_sec\": 29.254, \"elapsed_ns\": 29254000000.0, \"power_mean\": 812.1608327066384, \"energy_millijoules\": 23758.953, \"energy_joules\": 23.758953, \"coremark_score\": 20519.835841, \"coremarks_per_mhz\": 8.669132167722855, \"ulpmark_cm_score\": 25.253638070667506}, \"idle\": {\"elapsed_sec\": 5.011, \"elapsed_ns\": 5011000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}}}, \"8\": {\"freqs\": {\"500000\": {\"active\": {\"elapsed_sec\": 111.959, \"elapsed_ns\": 111959000000.0, \"power_mean\": 72.1132110862012, \"energy_millijoules\": 8073.723, \"energy_joules\": 8.073723, \"coremark_score\": 5360.110061, \"coremarks_per_mhz\": 10.720220122, \"ulpmark_cm_score\": 74.3151579512946}, \"idle\": {\"elapsed_sec\": 5.016, \"elapsed_ns\": 5016000000.0, \"power_mean\": 0.8847687400318979, \"energy_millijoules\": 4.438, \"energy_joules\": 0.004438}}, \"880000\": {\"active\": {\"elapsed_sec\": 63.576, \"elapsed_ns\": 63576000000.0, \"power_mean\": 134.82812696615076, \"energy_millijoules\": 8571.833, \"energy_joules\": 8.571833, \"coremark_score\": 9440.790509, \"coremarks_per_mhz\": 10.728171032954545, \"ulpmark_cm_score\": 69.996697322498}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 0.8766467065868263, \"energy_millijoules\": 4.392, \"energy_joules\": 0.004392}}, \"1164000\": {\"active\": {\"elapsed_sec\": 48.09, \"elapsed_ns\": 48090000000.0, \"power_mean\": 198.61407777084634, \"energy_millijoules\": 9551.351, \"energy_joules\": 9.551351, \"coremark_score\": 12482.316718, \"coremarks_per_mhz\": 10.72363979209622, \"ulpmark_cm_score\": 62.81833847379286}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 0.8760479041916168, \"energy_millijoules\": 4.389, \"energy_joules\": 0.0043890000000000005}}, \"1298000\": {\"active\": {\"elapsed_sec\": 43.101, \"elapsed_ns\": 43101000000.0, \"power_mean\": 233.05828171040116, \"energy_millijoules\": 10045.045, \"energy_joules\": 10.045045, \"coremark_score\": 13927.899905, \"coremarks_per_mhz\": 10.730277276579352, \"ulpmark_cm_score\": 59.73094197188763}, \"idle\": {\"elapsed_sec\": 5.006, \"elapsed_ns\": 5006000000.0, \"power_mean\": 0.8751498202157411, \"energy_millijoules\": 4.381, \"energy_joules\": 0.004381}}, \"1557000\": {\"active\": {\"elapsed_sec\": 35.977, \"elapsed_ns\": 35977000000.0, \"power_mean\": 318.0297968146316, \"energy_millijoules\": 11441.758, \"energy_joules\": 11.441758, \"coremark_score\": 16687.061965, \"coremarks_per_mhz\": 10.717445064226077, \"ulpmark_cm_score\": 52.439494000834486}, \"idle\": {\"elapsed_sec\": 5.005, \"elapsed_ns\": 5005000000.0, \"power_mean\": 0.875924075924076, \"energy_millijoules\": 4.384, \"energy_joules\": 0.004384000000000001}}, \"1745000\": {\"active\": {\"elapsed_sec\": 32.066, \"elapsed_ns\": 32066000000.0, \"power_mean\": 400.0114451443897, \"energy_millijoules\": 12826.767, \"energy_joules\": 12.826767, \"coremark_score\": 18724.254151, \"coremarks_per_mhz\": 10.730231605157593, \"ulpmark_cm_score\": 46.77718087496249}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 0.8768463073852295, \"energy_millijoules\": 4.393, \"energy_joules\": 0.004393}}, \"1885000\": {\"active\": {\"elapsed_sec\": 29.726, \"elapsed_ns\": 29726000000.0, \"power_mean\": 489.8378523851174, \"energy_millijoules\": 14560.92, \"energy_joules\": 14.56092, \"coremark_score\": 20199.299758, \"coremarks_per_mhz\": 10.715808890185677, \"ulpmark_cm_score\": 41.206187521118174}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 0.8778199241365542, \"energy_millijoules\": 4.397, \"energy_joules\": 0.004397}}, \"2049000\": {\"active\": {\"elapsed_sec\": 27.371, \"elapsed_ns\": 27371000000.0, \"power_mean\": 609.9452340067955, \"energy_millijoules\": 16694.811, \"energy_joules\": 16.694811, \"coremark_score\": 21938.644923, \"coremarks_per_mhz\": 10.707000938506589, \"ulpmark_cm_score\": 35.93931072355356}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 0.8774451097804391, \"energy_millijoules\": 4.396, \"energy_joules\": 0.004396}}, \"2147000\": {\"active\": {\"elapsed_sec\": 26.093, \"elapsed_ns\": 26093000000.0, \"power_mean\": 700.6580308895105, \"energy_millijoules\": 18282.27, \"energy_joules\": 18.28227, \"coremark_score\": 23014.076944, \"coremarks_per_mhz\": 10.719178828132279, \"ulpmark_cm_score\": 32.818681706374534}, \"idle\": {\"elapsed_sec\": 5.006, \"elapsed_ns\": 5006000000.0, \"power_mean\": 0.8809428685577307, \"energy_millijoules\": 4.41, \"energy_joules\": 0.00441}}, \"2294000\": {\"active\": {\"elapsed_sec\": 24.424, \"elapsed_ns\": 24424000000.0, \"power_mean\": 817.9129135276777, \"energy_millijoules\": 19976.705, \"energy_joules\": 19.976705000000003, \"coremark_score\": 24588.148512, \"coremarks_per_mhz\": 10.718460554489974, \"ulpmark_cm_score\": 30.034983246736633}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 0.8822355289421158, \"energy_millijoules\": 4.42, \"energy_joules\": 0.00442}}, \"2363000\": {\"active\": {\"elapsed_sec\": 23.716, \"elapsed_ns\": 23716000000.0, \"power_mean\": 893.7483555405634, \"energy_millijoules\": 21196.136, \"energy_joules\": 21.196136, \"coremark_score\": 25322.866548, \"coremarks_per_mhz\": 10.716405648751588, \"ulpmark_cm_score\": 28.307046152185475}, \"idle\": {\"elapsed_sec\": 5.006, \"elapsed_ns\": 5006000000.0, \"power_mean\": 0.8789452656811826, \"energy_millijoules\": 4.4, \"energy_joules\": 0.0044}}, \"2556000\": {\"active\": {\"elapsed_sec\": 21.893, \"elapsed_ns\": 21893000000.0, \"power_mean\": 1145.8206732745628, \"energy_millijoules\": 25085.452, \"energy_joules\": 25.085452, \"coremark_score\": 27432.333577, \"coremarks_per_mhz\": 10.732524873630673, \"ulpmark_cm_score\": 23.918245523341575}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 0.8816367265469062, \"energy_millijoules\": 4.417, \"energy_joules\": 0.004417}}, \"2687000\": {\"active\": {\"elapsed_sec\": 20.831, \"elapsed_ns\": 20831000000.0, \"power_mean\": 1399.2200086409678, \"energy_millijoules\": 29147.152, \"energy_joules\": 29.147152, \"coremark_score\": 28832.292167, \"coremarks_per_mhz\": 10.730291093040565, \"ulpmark_cm_score\": 20.585201600485703}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 0.882435129740519, \"energy_millijoules\": 4.421, \"energy_joules\": 0.0044210000000000005}}, \"2850000\": {\"active\": {\"elapsed_sec\": 19.677, \"elapsed_ns\": 19677000000.0, \"power_mean\": 1836.3470549372364, \"energy_millijoules\": 36133.801, \"energy_joules\": 36.133801, \"coremark_score\": 30528.136766, \"coremarks_per_mhz\": 10.711626935438597, \"ulpmark_cm_score\": 16.604951137025413}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 0.8880239520958084, \"energy_millijoules\": 4.449, \"energy_joules\": 0.004449}}, \"2914000\": {\"active\": {\"elapsed_sec\": 19.208, \"elapsed_ns\": 19208000000.0, \"power_mean\": 2135.2972719700124, \"energy_millijoules\": 41014.79, \"energy_joules\": 41.01479, \"coremark_score\": 31272.803086, \"coremarks_per_mhz\": 10.731915952642415, \"ulpmark_cm_score\": 14.628869244484733}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 0.8904191616766467, \"energy_millijoules\": 4.461, \"energy_joules\": 0.0044610000000000006}}}}}, \"meta\": {\"cpu_count\": 9}}"
  },
  {
    "path": "results/zuma/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 cpu8 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 cpu8 \n\n===== CPU 1 =====\nFrequencies: 324 610 820 955 1098 1197 1328 1425 1548 1704\n\n 324:  1534     4.7 C/MHz     37 mW   14.3 J   42.0 I/mJ   391.0 s\n 610:  2881     4.7 C/MHz     46 mW    9.7 J   62.1 I/mJ   208.3 s\n 820:  3872     4.7 C/MHz     62 mW    9.6 J   62.2 I/mJ   155.0 s\n 955:  4529     4.7 C/MHz     76 mW   10.0 J   59.9 I/mJ   132.5 s\n1098:  5194     4.7 C/MHz     91 mW   10.5 J   57.0 I/mJ   115.5 s\n1197:  5646     4.7 C/MHz    103 mW   10.9 J   55.0 I/mJ   106.3 s\n1328:  6271     4.7 C/MHz    119 mW   11.4 J   52.8 I/mJ    95.7 s\n1425:  6768     4.7 C/MHz    142 mW   12.6 J   47.6 I/mJ    88.7 s\n1548:  7313     4.7 C/MHz    164 mW   13.5 J   44.5 I/mJ    82.1 s\n1704:  8071     4.7 C/MHz    200 mW   14.9 J   40.4 I/mJ    74.4 s\n\n\n===== CPU 4 =====\nFrequencies: 402 578 697 712 910 1065 1221 1328 1418 1572 1836 1945 2130 2245 2367\n\n 402:  3478     8.7 C/MHz     30 mW    5.1 J   116.5 I/mJ   172.5 s\n 578:  5003     8.7 C/MHz     43 mW    5.1 J   117.0 I/mJ   119.9 s\n 697:  6035     8.7 C/MHz     53 mW    5.3 J   113.4 I/mJ    99.4 s\n 712:  6170     8.7 C/MHz     55 mW    5.4 J   111.4 I/mJ    97.2 s\n 910:  7872     8.7 C/MHz     81 mW    6.2 J   96.7 I/mJ    76.2 s\n1065:  9225     8.7 C/MHz    105 mW    6.8 J   87.7 I/mJ    65.1 s\n1221: 10563     8.7 C/MHz    133 mW    7.6 J   79.2 I/mJ    56.8 s\n1328: 11496     8.7 C/MHz    159 mW    8.3 J   72.1 I/mJ    52.2 s\n1418: 12275     8.7 C/MHz    176 mW    8.6 J   69.6 I/mJ    48.9 s\n1572: 13617     8.7 C/MHz    228 mW   10.0 J   59.8 I/mJ    44.1 s\n1836: 15898     8.7 C/MHz    335 mW   12.7 J   47.4 I/mJ    37.7 s\n1945: 16867     8.7 C/MHz    406 mW   14.4 J   41.5 I/mJ    35.6 s\n2130: 18450     8.7 C/MHz    531 mW   17.3 J   34.7 I/mJ    32.5 s\n2245: 19439     8.7 C/MHz    646 mW   20.0 J   30.1 I/mJ    30.9 s\n2367: 20520     8.7 C/MHz    812 mW   23.8 J   25.3 I/mJ    29.2 s\n\n\n===== CPU 8 =====\nFrequencies: 500 880 1164 1298 1557 1745 1885 2049 2147 2294 2363 2556 2687 2850 2914\n\n 500:  5360     10.7 C/MHz     72 mW    8.1 J   74.3 I/mJ   112.0 s\n 880:  9441     10.7 C/MHz    135 mW    8.6 J   70.0 I/mJ    63.6 s\n1164: 12482     10.7 C/MHz    199 mW    9.6 J   62.8 I/mJ    48.1 s\n1298: 13928     10.7 C/MHz    233 mW   10.0 J   59.7 I/mJ    43.1 s\n1557: 16687     10.7 C/MHz    318 mW   11.4 J   52.4 I/mJ    36.0 s\n1745: 18724     10.7 C/MHz    400 mW   12.8 J   46.8 I/mJ    32.1 s\n1885: 20199     10.7 C/MHz    490 mW   14.6 J   41.2 I/mJ    29.7 s\n2049: 21939     10.7 C/MHz    610 mW   16.7 J   35.9 I/mJ    27.4 s\n2147: 23014     10.7 C/MHz    701 mW   18.3 J   32.8 I/mJ    26.1 s\n2294: 24588     10.7 C/MHz    818 mW   20.0 J   30.0 I/mJ    24.4 s\n2363: 25323     10.7 C/MHz    894 mW   21.2 J   28.3 I/mJ    23.7 s\n2556: 27432     10.7 C/MHz   1146 mW   25.1 J   23.9 I/mJ    21.9 s\n2687: 28832     10.7 C/MHz   1399 mW   29.1 J   20.6 I/mJ    20.8 s\n2850: 30528     10.7 C/MHz   1836 mW   36.1 J   16.6 I/mJ    19.7 s\n2914: 31273     10.7 C/MHz   2135 mW   41.0 J   14.6 I/mJ    19.2 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/zuma/main/uptime.txt",
    "content": " 03:01:54 up 55 min,  load average: 0.73, 0.78, 0.85\n"
  },
  {
    "path": "results/zuma/main/versions.txt",
    "content": "Kernel: Linux version 5.15.110-Sultan (sultan@sultan-box) (aarch64-linux-gnu-gcc (GCC) 13.2.0, GNU ld (GNU Binutils) 2.41) #1 SMP PREEMPT Fri Oct 20 14:24:02 PDT 2023\nPython: Python 3.8.5\n"
  },
  {
    "path": "results/zumapro/main/cmdline.txt",
    "content": "console=ttynull stack_depot_disable=on cgroup_disable=pressure kasan.page_alloc.sample=10 kasan.stacktrace=off kvm-arm.mode=protected bootconfig ioremap_guard rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on root=/dev/ram0 rw clocksource=arch_sys_counter clk_ignore_unused loop.max_part=7 loop.hw_queue_depth=31 coherent_pool=4M firmware_class.path=/vendor/firmware irqaffinity=0 sysrq_always_enabled no_console_suspend softlockup_panic=1 kasan_multi_shot kvm-arm.protected_modules=exynos-pd,pkvm_s2mpu-v9 dyndbg=\"func alloc_contig_dump_pages +p\" printk.devkmsg=on cma_sysfs.experimental=Y cgroup_disable=memory cgroup.memory=nokmem rcupdate.rcu_expedited=1 rcu_nocbs=all rcutree.enable_rcu_lazy swiotlb=noforce disable_dma32=on sysctl.kernel.sched_pelt_multiplier=4 kasan=off at24.write_timeout=100 log_buf_len=1024K bootconfig console=null exynos_drm.panel_name=google-cm4.22a8a00a tcpci_max77759.conf_sbu=0 arm64.nomte ufs_pixel_fips140.fips_first_lba=151942 ufs_pixel_fips140.fips_last_lba=152453 ufs_pixel_fips140.fips_lu=0 id_aa64mmfr1.vh=0  bootconfig\n"
  },
  {
    "path": "results/zumapro/main/cpufreq_stats/0/time_in_state",
    "content": "820000 205854\n955000 14220\n1098000 12497\n1197000 11511\n1328000 10546\n1425000 9792\n1548000 9082\n1696000 8367\n1849000 7717\n1950000 7401\n"
  },
  {
    "path": "results/zumapro/main/cpufreq_stats/0/total_trans",
    "content": "12\n"
  },
  {
    "path": "results/zumapro/main/cpufreq_stats/0/trans_table",
    "content": "   From  :    To\n         :    820000    955000   1098000   1197000   1328000   1425000   1548000   1696000   1849000   1950000 \n   820000:         0         1         0         0         0         0         0         0         0         1 \n   955000:         0         0         1         0         0         0         0         0         0         0 \n  1098000:         0         0         0         1         0         0         0         0         0         0 \n  1197000:         0         0         0         0         1         0         0         0         0         0 \n  1328000:         1         0         0         0         0         1         0         0         0         0 \n  1425000:         0         0         0         0         0         0         1         0         0         0 \n  1548000:         0         0         0         0         0         0         0         1         0         0 \n  1696000:         0         0         0         0         0         0         0         0         1         0 \n  1849000:         0         0         0         0         0         0         0         0         0         1 \n  1950000:         1         0         0         0         0         0         0         0         0         0 \n"
  },
  {
    "path": "results/zumapro/main/cpufreq_stats/4/time_in_state",
    "content": ""
  },
  {
    "path": "results/zumapro/main/cpufreq_stats/4/total_trans",
    "content": ""
  },
  {
    "path": "results/zumapro/main/cpufreq_stats/4/trans_table",
    "content": ""
  },
  {
    "path": "results/zumapro/main/cpufreq_stats/7/time_in_state",
    "content": ""
  },
  {
    "path": "results/zumapro/main/cpufreq_stats/7/total_trans",
    "content": ""
  },
  {
    "path": "results/zumapro/main/cpufreq_stats/7/trans_table",
    "content": ""
  },
  {
    "path": "results/zumapro/main/cpuinfo.txt",
    "content": "processor\t: 0\nBogoMIPS\t: 49.15\nFeatures\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm ssbs sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh bti ecv afp wfxt\nCPU implementer\t: 0x41\nCPU architecture: 8\nCPU variant\t: 0x0\nCPU part\t: 0xd80\nCPU revision\t: 1\n\n"
  },
  {
    "path": "results/zumapro/main/device.txt",
    "content": "Model: ZUMA PRO CAIMAN MP board based on ZUMA PRO;\nCompatible: google,ZUMA PRO CAIMAN;google,ZUMA PRO;\n"
  },
  {
    "path": "results/zumapro/main/kernel.log",
    "content": "[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd801]\n[    0.000000] Linux version 6.1.75-g7910ee17f109 (sultan@sultan-box) (aarch64-linux-gnu-gcc (GCC) 14.1.0, GNU ld (GNU Binutils) 2.42) #1 SMP PREEMPT Fri Sep 13 20:52:06 PDT 2024\n[    0.000000] Machine model: ZUMA PRO CAIMAN MP board based on ZUMA PRO\n[    0.000000] Stack Depot is disabled\n[    0.000000] efi: UEFI not found.\n[    0.000000] OF: reserved mem: 0x00000009ff000000..0x00000009ffffffff ( 16384 KB ) map non-reusable faceauth_tpu\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000009df000000, size 512 MiB\n[    0.000000] OF: reserved mem: initialized node vframe, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: 0x00000009df000000..0x00000009feffffff ( 524288 KB ) map reusable vframe\n[    0.000000] OF: reserved mem: 0x00000000fe800000..0x00000000ffffffff ( 24576 KB ) map non-reusable tui\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000009dbc00000, size 52 MiB\n[    0.000000] OF: reserved mem: initialized node vscaler, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: 0x00000009dbc00000..0x00000009deffffff ( 53248 KB ) map reusable vscaler\n[    0.000000] OF: reserved mem: 0x00000000fe600000..0x00000000fe7fffff ( 2048 KB ) map non-reusable dpado-rmem\n[    0.000000] OF: reserved mem: 0x00000009d7100000..0x00000009dbbfffff ( 76800 KB ) map non-reusable famodel\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000009d6400000, size 12 MiB\n[    0.000000] OF: reserved mem: initialized node faprev, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: 0x00000009d6400000..0x00000009d6ffffff ( 12288 KB ) map reusable faprev\n[    0.000000] OF: reserved mem: 0x00000009d4400000..0x00000009d63fffff ( 32768 KB ) map non-reusable faceauth_dsp\n[    0.000000] OF: reserved mem: 0x00000009c9800000..0x00000009d43fffff ( 176128 KB ) map non-reusable farawimg\n[    0.000000] OF: reserved mem: 0x00000000fe3f0000..0x00000000fe5fffff ( 2112 KB ) map non-reusable mfc_fw\n[    0.000000] Reserved memory: created CMA memory pool at 0x00000009c5000000, size 72 MiB\n[    0.000000] OF: reserved mem: initialized node vstream, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: 0x00000009c5000000..0x00000009c97fffff ( 73728 KB ) map reusable vstream\n[    0.000000] OF: reserved mem: 0x00000000197fd000..0x00000000197fffff ( 12 KB ) map non-reusable cp_aoc_rmem\n[    0.000000] OF: reserved mem: initialized node pkvm_guest_firmware, compatible id linux,pkvm-guest-firmware-memory\n[    0.000000] OF: reserved mem: 0x000000008b000000..0x000000008b094fff ( 596 KB ) nomap non-reusable pkvm_guest_firmware\n[    0.000000] OF: reserved mem: 0x0000000090000000..0x000000009005ffff ( 384 KB ) map non-reusable ect_binary\n[    0.000000] OF: reserved mem: 0x0000000090200000..0x00000000905fefff ( 4092 KB ) nomap non-reusable gsa@90200000\n[    0.000000] OF: reserved mem: 0x00000000905ff000..0x00000000905fffff ( 4 KB ) nomap non-reusable gsa@905FF000\n[    0.000000] OF: reserved mem: 0x0000000091300000..0x000000009135ffff ( 384 KB ) nomap non-reusable gxp_scratchpad@91300000\n[    0.000000] OF: reserved mem: 0x0000000091360000..0x000000009137ffff ( 128 KB ) nomap non-reusable iif_wait_table@91360000\n[    0.000000] OF: reserved mem: 0x0000000091380000..0x000000009139ffff ( 128 KB ) nomap non-reusable iif_signal_table@91380000\n[    0.000000] OF: reserved mem: 0x0000000091400000..0x0000000091cfffff ( 9216 KB ) nomap non-reusable gxp_secure_data@91400000\n[    0.000000] OF: reserved mem: 0x0000000091d00000..0x0000000091ffffff ( 3072 KB ) nomap non-reusable gxp_fw@91D00000\n[    0.000000] OF: reserved mem: 0x0000000092000000..0x00000000923fffff ( 4096 KB ) nomap non-reusable gxp_mcu_fw@92000000\n[    0.000000] OF: reserved mem: 0x0000000092e00000..0x0000000093ffffff ( 18432 KB ) nomap non-reusable tpu_fw@92e00000\n[    0.000000] OF: reserved mem: 0x0000000094000000..0x0000000096ffffff ( 49152 KB ) nomap non-reusable aoc@94000000\n[    0.000000] Reserved memory: created DMA memory pool at 0x0000000097000000, size 4 MiB\n[    0.000000] OF: reserved mem: initialized node xhci_dma@97000000, compatible id shared-dma-pool\n[    0.000000] OF: reserved mem: 0x0000000097000000..0x00000000973fffff ( 4096 KB ) nomap non-reusable xhci_dma@97000000\n[    0.000000] OF: reserved mem: 0x00000000b6200000..0x00000000bfffffff ( 161792 KB ) nomap non-reusable sec_dram\n[    0.000000] OF: reserved mem: 0x00000000c3000000..0x00000000c307ffff ( 512 KB ) map non-reusable seclog_mem\n[    0.000000] OF: reserved mem: 0x00000000d8100000..0x00000000d810ffff ( 64 KB ) nomap non-reusable header\n[    0.000000] OF: reserved mem: 0x00000000d8110000..0x00000000d880ffff ( 7168 KB ) nomap non-reusable log_kevents\n[    0.000000] OF: reserved mem: 0x00000000d8810000..0x00000000da00ffff ( 24576 KB ) nomap non-reusable log_s2d\n[    0.000000] OF: reserved mem: 0x00000000da010000..0x00000000daa0ffff ( 10240 KB ) nomap non-reusable log_array_reset\n[    0.000000] OF: reserved mem: 0x00000000dda10000..0x00000000dda1ffff ( 64 KB ) nomap non-reusable log_itmon\n[    0.000000] OF: reserved mem: 0x00000000dda20000..0x00000000de01ffff ( 6144 KB ) nomap non-reusable log_s2d_extract\n[    0.000000] OF: reserved mem: 0x00000000e0000000..0x00000000e37fffff ( 57344 KB ) nomap non-reusable sec_pt\n[    0.000000] OF: reserved mem: 0x00000000e8000000..0x00000000e9ffffff ( 32768 KB ) map non-reusable cp_rmem_1\n[    0.000000] OF: reserved mem: 0x00000000ea400000..0x00000000eaffffff ( 12288 KB ) map non-reusable cp_rmem\n[    0.000000] OF: reserved mem: 0x00000000f6200000..0x00000000f6200fff ( 4 KB ) map non-reusable cp_msi_rmem\n[    0.000000] OF: reserved mem: 0x00000000f8800000..0x00000000f97fffff ( 16384 KB ) nomap non-reusable abl@f8800000\n[    0.000000] OF: reserved mem: 0x00000000fd3f0000..0x00000000fd3fdfff ( 56 KB ) nomap non-reusable dss_log_reserved@fd3f0000\n[    0.000000] OF: reserved mem: 0x00000000fd3fe000..0x00000000fd3fefff ( 4 KB ) nomap non-reusable debug_kinfo_reserved@fd3fe000\n[    0.000000] OF: reserved mem: 0x00000000fd3ff000..0x00000000fd7fefff ( 4096 KB ) map non-reusable ramoops_mem@fd3ff000\n[    0.000000] OF: reserved mem: 0x00000000fd800000..0x00000000fd8fffff ( 1024 KB ) nomap non-reusable bldr_log_reserved@fd800000\n[    0.000000] kvm [0]: Reserved 86 MiB at 0xbf8800000\n[    0.000000] Zone ranges:\n[    0.000000]   DMA32    empty\n[    0.000000]   Normal   [mem 0x0000000080000000-0x0000000bffffffff]\n[    0.000000]   Device   empty\n[    0.000000] Movable zone start for each node\n[    0.000000] Early memory node ranges\n[    0.000000]   node   0: [mem 0x0000000080000000-0x000000008affffff]\n[    0.000000]   node   0: [mem 0x000000008b000000-0x000000008b094fff]\n[    0.000000]   node   0: [mem 0x000000008b095000-0x00000000901fffff]\n[    0.000000]   node   0: [mem 0x0000000090200000-0x00000000905fffff]\n[    0.000000]   node   0: [mem 0x0000000090600000-0x00000000912fffff]\n[    0.000000]   node   0: [mem 0x0000000091300000-0x000000009139ffff]\n[    0.000000]   node   0: [mem 0x00000000913a0000-0x00000000913fffff]\n[    0.000000]   node   0: [mem 0x0000000091400000-0x00000000923fffff]\n[    0.000000]   node   0: [mem 0x0000000092400000-0x0000000092dfffff]\n[    0.000000]   node   0: [mem 0x0000000092e00000-0x00000000973fffff]\n[    0.000000]   node   0: [mem 0x0000000097400000-0x00000000b61fffff]\n[    0.000000]   node   0: [mem 0x00000000b6200000-0x00000000bfffffff]\n[    0.000000]   node   0: [mem 0x00000000c0000000-0x00000000d80fffff]\n[    0.000000]   node   0: [mem 0x00000000d8100000-0x00000000daa0ffff]\n[    0.000000]   node   0: [mem 0x00000000daa10000-0x00000000dda0ffff]\n[    0.000000]   node   0: [mem 0x00000000dda10000-0x00000000de01ffff]\n[    0.000000]   node   0: [mem 0x00000000de020000-0x00000000dfffffff]\n[    0.000000]   node   0: [mem 0x00000000e0000000-0x00000000e37fffff]\n[    0.000000]   node   0: [mem 0x00000000e3800000-0x00000000f87fffff]\n[    0.000000]   node   0: [mem 0x00000000f8800000-0x00000000f97fffff]\n[    0.000000]   node   0: [mem 0x00000000f9800000-0x00000000fd3effff]\n[    0.000000]   node   0: [mem 0x00000000fd3f0000-0x00000000fd3fefff]\n[    0.000000]   node   0: [mem 0x00000000fd3ff000-0x00000000fd7fffff]\n[    0.000000]   node   0: [mem 0x00000000fd800000-0x00000000fd8fffff]\n[    0.000000]   node   0: [mem 0x00000000fd900000-0x00000000ffffffff]\n[    0.000000]   node   0: [mem 0x0000000880000000-0x0000000bffffffff]\n[    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x0000000bffffffff]\n[    0.000000] cma: Reserved 16 MiB at 0x00000000fc000000\n[    0.000000] psci: probing for conduit method from DT.\n[    0.000000] psci: PSCIv1.1 detected in firmware.\n[    0.000000] psci: Using standard PSCI v0.2 function IDs\n[    0.000000] psci: MIGRATE_INFO_TYPE not supported.\n[    0.000000] psci: SMC Calling Convention v1.2\n[    0.000000] Load bootconfig: 3981 bytes 131 nodes\n[    0.000000] percpu: Embedded 28 pages/cpu s83752 r0 d30936 u114688\n[    0.000000] pcpu-alloc: s83752 r0 d30936 u114688 alloc=28*4096\n[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 \n[    0.000000] Detected PIPT I-cache on CPU0\n[    0.000000] CPU features: SYS_ID_AA64MMFR1_EL1[11:8]: forced to 0\n[    0.000000] CPU features: SYS_ID_AA64PFR1_EL1[11:8]: forced to 0\n[    0.000000] CPU features: detected: Address authentication (architected QARMA3 algorithm)\n[    0.000000] CPU features: detected: GIC system register CPU interface\n[    0.000000] CPU features: detected: Hardware dirty bit management\n[    0.000000] CPU features: detected: Spectre-v4\n[    0.000000] alternatives: applying boot alternatives\n[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 4128768\n[    0.000000] Kernel command line: console=ttynull stack_depot_disable=on cgroup_disable=pressure kasan.page_alloc.sample=10 kasan.stacktrace=off kvm-arm.mode=protected bootconfig ioremap_guard rcu_nocbs=0-7 isolcpus=1-7 nohz_full=1-7 loglevel=0 printk.devkmsg=on root=/dev/ram0 rw clocksource=arch_sys_counter clk_ignore_unused loop.max_part=7 loop.hw_queue_depth=31 coherent_pool=4M firmware_class.path=/vendor/firmware irqaffinity=0 sysrq_always_enabled no_console_suspend softlockup_panic=1 kasan_multi_shot kvm-arm.protected_modules=exynos-pd,pkvm_s2mpu-v9 dyndbg=\"func alloc_contig_dump_pages +p\" printk.devkmsg=on cma_sysfs.experimental=Y cgroup_disable=memory cgroup.memory=nokmem rcupdate.rcu_expedited=1 rcu_nocbs=all rcutree.enable_rcu_lazy swiotlb=noforce disable_dma32=on sysctl.kernel.sched_pelt_multiplier=4 kasan=off at24.write_timeout=100 log_buf_len=1024K bootconfig console=null exynos_drm.panel_name=google-cm4.22a8a00a tcpci_max77759.conf_sbu=0 arm64.nomte ufs_pixel\n[    0.000000] cgroup: Disabling pressure control group feature\n[    0.000000] sysrq: sysrq always enabled.\n[    0.000000] cgroup: Disabling memory control group subsystem\n[    0.000000] random: crng init done\n[    0.000000] printk: log_buf_len: 1048576 bytes\n[    0.000000] printk: early log buf free: 120776(92%)\n[    0.000000] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)\n[    0.000000] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)\n[    0.000000] mem auto-init: stack:all(zero), heap alloc:on, heap free:off\n[    0.000000] Memory: 14823784K/16777216K available (26560K kernel code, 4106K rwdata, 23200K rodata, 11968K init, 1347K bss, 1273496K reserved, 679936K cma-reserved)\n[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1\n[    0.000000] trace event string verifier disabled\n[    0.000000] rcu: Preemptible hierarchical RCU implementation.\n[    0.000000] rcu: \tRCU event tracing is enabled.\n[    0.000000] rcu: \tRCU restricting CPUs from NR_CPUS=32 to nr_cpu_ids=8.\n[    0.000000] rcu: \tRCU priority boosting: priority 1 delay 500 ms.\n[    0.000000] \tAll grace periods are expedited (rcu_expedited).\n[    0.000000] \tTrampoline variant of Tasks RCU enabled.\n[    0.000000] \tTracing variant of Tasks RCU enabled.\n[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.\n[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8\n[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0\n[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode\n[    0.000000] GICv3: 960 SPIs implemented\n[    0.000000] GICv3: 0 Extended SPIs implemented\n[    0.000000] Root IRQ handler: gic_handle_irq\n[    0.000000] GICv3: GICv3 features: 16 PPIs\n[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000010440000\n[    0.000000] GICv3: GIC: PPI partition interrupt-partition-0[0] { /cpus/cpu@0[0] /cpus/cpu@100[1] /cpus/cpu@200[2] /cpus/cpu@300[3] /cpus/cpu@400[4] /cpus/cpu@500[5] /cpus/cpu@600[6] }\n[    0.000000] GICv3: GIC: PPI partition interrupt-partition-1[1] { /cpus/cpu@700[7] }\n[    0.000000] NO_HZ: Full dynticks CPUs: 1-7.\n[    0.000000] rcu: \tOffload RCU callbacks from CPUs: 0-7.\n[    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.\n[    0.000000] arch_timer: cp15 timer(s) running at 24.57MHz (phys).\n[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x5ab00a189, max_idle_ns: 440795202599 ns\n[    0.000002] sched_clock: 56 bits at 25MHz, resolution 40ns, wraps every 4398046511099ns\n[    0.001023] kfence: initialized - using 524288 bytes for 63 objects at 0x(____ptrval____)-0x(____ptrval____)\n[    0.001250] Calibrating delay loop (skipped), value calculated using timer frequency.. 49.15 BogoMIPS (lpj=245760)\n[    0.001267] pid_max: default: 32768 minimum: 301\n[    0.001401] LSM: Security Framework initializing\n[    0.001460] SELinux:  Initializing.\n[    0.001731] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)\n[    0.001794] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)\n[    0.003963] cacheinfo: Unable to detect cache hierarchy for CPU 0\n[    0.004765] cblist_init_generic: Setting adjustable number of callback queues.\n[    0.004772] cblist_init_generic: Setting shift to 3 and lim to 1.\n[    0.004887] cblist_init_generic: Setting adjustable number of callback queues.\n[    0.004890] cblist_init_generic: Setting shift to 3 and lim to 1.\n[    0.005064] rcu: Hierarchical SRCU implementation.\n[    0.005070] rcu: \tMax phase no-delay instances is 1000.\n[    0.007018] EFI services will not be available.\n[    0.007147] watchdog: Disabling watchdog on nohz_full cores by default\n[    0.007533] smp: Bringing up secondary CPUs ...\n[    0.009024] Detected PIPT I-cache on CPU1\n[    0.009144] cacheinfo: Unable to detect cache hierarchy for CPU 1\n[    0.009169] GICv3: CPU1: found redistributor 100 region 0:0x0000000010460000\n[    0.009237] CPU1: Booted secondary processor 0x0000000100 [0x410fd801]\n[    0.010597] Detected PIPT I-cache on CPU2\n[    0.010705] cacheinfo: Unable to detect cache hierarchy for CPU 2\n[    0.010729] GICv3: CPU2: found redistributor 200 region 0:0x0000000010480000\n[    0.010777] CPU2: Booted secondary processor 0x0000000200 [0x410fd801]\n[    0.011783] Detected PIPT I-cache on CPU3\n[    0.011858] cacheinfo: Unable to detect cache hierarchy for CPU 3\n[    0.011878] GICv3: CPU3: found redistributor 300 region 0:0x00000000104a0000\n[    0.011926] CPU3: Booted secondary processor 0x0000000300 [0x410fd801]\n[    0.012861] Detected PIPT I-cache on CPU4\n[    0.012871] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64MMFR1_EL1. Boot CPU: 0x1001111011312122, CPU4: 0x1001111010312122\n[    0.012881] CPU features: Unsupported CPU feature variation detected.\n[    0.012944] cacheinfo: Unable to detect cache hierarchy for CPU 4\n[    0.012962] GICv3: CPU4: found redistributor 400 region 0:0x00000000104c0000\n[    0.013002] CPU4: Booted secondary processor 0x0000000400 [0x410fd811]\n[    0.013886] Detected PIPT I-cache on CPU5\n[    0.013897] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64MMFR1_EL1. Boot CPU: 0x1001111011312122, CPU5: 0x1001111010312122\n[    0.013973] cacheinfo: Unable to detect cache hierarchy for CPU 5\n[    0.013993] GICv3: CPU5: found redistributor 500 region 0:0x00000000104e0000\n[    0.014032] CPU5: Booted secondary processor 0x0000000500 [0x410fd811]\n[    0.014912] Detected PIPT I-cache on CPU6\n[    0.014922] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64MMFR1_EL1. Boot CPU: 0x1001111011312122, CPU6: 0x1001111010312122\n[    0.014997] cacheinfo: Unable to detect cache hierarchy for CPU 6\n[    0.015022] GICv3: CPU6: found redistributor 600 region 0:0x0000000010500000\n[    0.015058] CPU6: Booted secondary processor 0x0000000600 [0x410fd811]\n[    0.016287] Detected PIPT I-cache on CPU7\n[    0.016294] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64MMFR1_EL1. Boot CPU: 0x1001111011312122, CPU7: 0x1001111010312122\n[    0.016361] cacheinfo: Unable to detect cache hierarchy for CPU 7\n[    0.016386] GICv3: CPU7: found redistributor 700 region 0:0x0000000010520000\n[    0.016421] CPU7: Booted secondary processor 0x0000000700 [0x410fd821]\n[    0.016503] smp: Brought up 1 node, 8 CPUs\n[    0.016515] SMP: Total of 8 processors activated.\n[    0.016521] CPU features: detected: Branch Target Identification\n[    0.016529] CPU features: detected: ARMv8.4 Translation Table Level\n[    0.016535] CPU features: detected: Data cache clean to the PoU not required for I/D coherence\n[    0.016540] CPU features: detected: Common not Private translations\n[    0.016544] CPU features: detected: CRC32 instructions\n[    0.016547] CPU features: detected: E0PD\n[    0.016549] CPU features: detected: Enhanced Counter Virtualization\n[    0.016552] CPU features: detected: Enhanced Privileged Access Never\n[    0.016555] CPU features: detected: Generic authentication (architected QARMA3 algorithm)\n[    0.016559] CPU features: detected: RCpc load-acquire (LDAPR)\n[    0.016564] CPU features: detected: LSE atomic instructions\n[    0.016567] CPU features: detected: Privileged Access Never\n[    0.016569] CPU features: detected: RAS Extension Support\n[    0.016571] CPU features: detected: Speculation barrier (SB)\n[    0.016573] CPU features: detected: Stage-2 Force Write-Back\n[    0.016575] CPU features: detected: TLB range maintenance instructions\n[    0.016577] CPU features: detected: WFx with timeout\n[    0.016581] CPU features: detected: Protected KVM\n[    0.016585] CPU features: detected: Speculative Store Bypassing Safe (SSBS)\n[    0.016587] CPU features: detected: Scalable Vector Extension\n[    0.016635] CPU features: detected CPU7: Activity Monitors Unit (AMU)\n[    0.016635] CPU features: detected CPU4: Activity Monitors Unit (AMU)\n[    0.016636] CPU features: detected CPU6: Activity Monitors Unit (AMU)\n[    0.016635] CPU features: detected CPU3: Activity Monitors Unit (AMU)\n[    0.016635] CPU features: detected CPU2: Activity Monitors Unit (AMU)\n[    0.016636] CPU features: detected CPU0: Activity Monitors Unit (AMU)\n[    0.016635] CPU features: detected CPU5: Activity Monitors Unit (AMU)\n[    0.016636] CPU features: detected CPU1: Activity Monitors Unit (AMU)\n[    0.016679] SVE: maximum available vector length 16 bytes per vector\n[    0.016688] SVE: default vector length 16 bytes per vector\n[    0.016707] CPU: All CPU(s) started at EL2\n[    0.016758] alternatives: applying system-wide alternatives\n[    0.076382] Registered cp15_barrier emulation handler\n[    0.076410] Registered setend emulation handler\n[    0.076635] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns\n[    0.076688] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)\n[    0.086801] pinctrl core: initialized pinctrl subsystem\n[    0.088536] NET: Registered PF_NETLINK/PF_ROUTE protocol family\n[    0.092163] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations\n[    0.092241] audit: initializing netlink subsys (disabled)\n[    0.093125] thermal_sys: Registered thermal governor 'step_wise'\n[    0.093131] thermal_sys: Registered thermal governor 'user_space'\n[    0.093135] thermal_sys: Registered thermal governor 'power_allocator'\n[    0.093177] cpuidle: using governor menu\n[    0.094250] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.\n[    0.094314] audit: type=2000 audit(0.080:1): state=initialized audit_enabled=0 res=1\n[    0.094428] ASID allocator initialised with 65536 entries\n[    0.094542] Serial: AMBA PL011 UART driver\n[    0.095458] printk: console [ramoops-1] enabled\n[    0.095526] pstore: Registered ramoops as persistent store backend\n[    0.095531] ramoops: using 0x400000@0xfd3ff000, ecc: 0\n[    0.108681] platform funnel0: Fixed dependency cycle(s) with /ete7/out-ports/port/endpoint\n[    0.108706] platform funnel0: Fixed dependency cycle(s) with /ete6/out-ports/port/endpoint\n[    0.108719] platform funnel0: Fixed dependency cycle(s) with /ete5/out-ports/port/endpoint\n[    0.108732] platform funnel0: Fixed dependency cycle(s) with /ete4/out-ports/port/endpoint\n[    0.108745] platform funnel0: Fixed dependency cycle(s) with /ete3/out-ports/port/endpoint\n[    0.108759] platform funnel0: Fixed dependency cycle(s) with /ete2/out-ports/port/endpoint\n[    0.108771] platform funnel0: Fixed dependency cycle(s) with /ete1/out-ports/port/endpoint\n[    0.108784] platform funnel0: Fixed dependency cycle(s) with /ete0/out-ports/port/endpoint\n[    0.109035] amba 2a007000.funnel: Fixed dependency cycle(s) with /funnel0/out-ports/port/endpoint\n[    0.109282] amba 2a004000.etf: Fixed dependency cycle(s) with /funnel@2a009000/in-ports/port@0/endpoint\n[    0.109331] amba 2a004000.etf: Fixed dependency cycle(s) with /funnel@2a007000/out-ports/port/endpoint\n[    0.109463] amba 2a00a000.etr: Fixed dependency cycle(s) with /funnel@2a009000/out-ports/port/endpoint\n[    0.144404] platform 10050000.mct: Fixed dependency cycle(s) with /mct@10050000/mct-map\n[    0.144694] platform 100d0000.mct-v3: Fixed dependency cycle(s) with /mct-v3@100D0000/mct-v3-map\n[    0.159353] platform gs-drm-connector: Fixed dependency cycle(s) with /drmdsim@19440000/ports/port@0/endpoint\n[    0.161041] KASLR enabled\n[    0.207310] iommu: Default domain type: Translated \n[    0.207322] iommu: DMA domain TLB invalidation policy: strict mode \n[    0.207912] SCSI subsystem initialized\n[    0.208039] usbcore: registered new interface driver usbfs\n[    0.208066] usbcore: registered new interface driver hub\n[    0.208091] usbcore: registered new device driver usb\n[    0.208247] mc: Linux media interface: v0.10\n[    0.208305] videodev: Linux video capture interface: v2.00\n[    0.208398] pps_core: LinuxPPS API ver. 1 registered\n[    0.208403] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>\n[    0.208416] PTP clock support registered\n[    0.208443] EDAC MC: Ver: 3.0.0\n[    0.209676] Advanced Linux Sound Architecture Driver Initialized.\n[    0.211730] clocksource: Switched to clocksource arch_sys_counter\n[    0.212114] VFS: Disk quotas dquot_6.6.0\n[    0.212155] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\n[    0.212915] NET: Registered PF_INET protocol family\n[    0.213470] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)\n[    0.234319] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)\n[    0.234464] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)\n[    0.234703] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)\n[    0.235603] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)\n[    0.239391] TCP: Hash tables configured (established 131072 bind 65536)\n[    0.239630] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)\n[    0.239909] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)\n[    0.240291] NET: Registered PF_UNIX/PF_LOCAL protocol family\n[    0.240360] NET: Registered PF_XDP protocol family\n[    0.240379] PCI: CLS 0 bytes, default 64\n[    0.301914] hw perfevents: enabled with armv8_pmuv3 PMU driver, 21 counters available\n[    0.303541] hw perfevents: enabled with armv9_cortex_x2 PMU driver, 32 counters available\n[    0.304411] kvm [1]: IPA Size Limit: 40 bits\n[    0.493386] kvm [1]: GICv3: no GICV resource entry\n[    0.493430] kvm [1]: disabling GICv2 emulation\n[    0.493459] kvm [1]: GIC system register CPU interface enabled\n[    0.493770] kvm [1]: vgic interrupt IRQ18\n[    0.494361] kvm [1]: Protected nVHE mode initialized successfully\n[    0.497589] Initialise system trusted keyrings\n[    0.511992] workingset: timestamp_bits=46 max_order=22 bucket_order=0\n[    0.518173] fuse: init (API version 7.37)\n[    0.605734] Key type asymmetric registered\n[    0.605754] Asymmetric key parser 'x509' registered\n[    0.605873] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 238)\n[    0.621914] io scheduler mq-deadline registered\n[    0.621926] io scheduler kyber registered\n[    0.622111] io scheduler bfq registered\n[    0.655594] printk: console [ttynull0] enabled\n[    0.656389] cacheinfo: Unable to detect cache hierarchy for CPU 0\n[    0.660905] brd: module loaded\n[    0.668493] loop: module loaded\n[    0.683163] Freeing initrd memory: 31280K\n[    0.685508] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.\n[    0.685517] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n[    0.685890] MACsec IEEE 802.1AE\n[    0.686467] tun: Universal TUN/TAP device driver, 1.6\n[    0.690590] usbcore: registered new interface driver uas\n[    0.690619] usbcore: registered new interface driver usb-storage\n[    0.690995] usbcore: registered new interface driver xpad\n[    0.691115] gspca_main: v2.14.0 registered\n[    0.691200] usbcore: registered new interface driver uvcvideo\n[    0.692231] device-mapper: uevent: version 1.0.3\n[    0.692420] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com\n[    0.694047] sdhci: Secure Digital Host Controller Interface driver\n[    0.694057] sdhci: Copyright(c) Pierre Ossman\n[    0.694064] sdhci-pltfm: SDHCI platform and OF driver helper\n[    0.695139] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....\n[    0.695192] hid: raw HID events driver (C) Jiri Kosina\n[    0.695882] usbcore: registered new interface driver usbhid\n[    0.695913] usbhid: USB HID core driver\n[    0.696078] ashmem: initialized\n[    0.696970] gnss: GNSS driver registered with major 503\n[    0.699008] usbcore: registered new interface driver snd-usb-audio\n[    0.699546] GACT probability NOT on\n[    0.699577] Mirror/redirect action on\n[    0.699621] netem: version 1.3\n[    0.699693] u32 classifier\n[    0.699697]     input device check on\n[    0.699699]     Actions configured\n[    0.771027] xt_time: kernel timezone is -0000\n[    0.771156] ipip: IPv4 and MPLS over IPv4 tunneling driver\n[    0.771993] gre: GRE over IPv4 demultiplexor driver\n[    0.772003] ip_gre: GRE over IPv4 tunneling driver\n[    0.772679] IPv4 over IPsec tunneling driver\n[    0.773083] Initializing XFRM netlink socket\n[    0.773110] IPsec XFRM device driver\n[    0.773495] NET: Registered PF_INET6 protocol family\n[    0.775517] Segment Routing with IPv6\n[    0.775554] In-situ OAM (IOAM) with IPv6\n[    0.775669] mip6: Mobile IPv6\n[    0.776117] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver\n[    0.776636] ip6_gre: GRE over IPv6 tunneling driver\n[    0.776912] NET: Registered PF_PACKET protocol family\n[    0.776928] NET: Registered PF_KEY protocol family\n[    0.777130] NET: Registered PF_VSOCK protocol family\n[    0.779300] wc-mbox 15200000.mbox: probe completed successfully\n[    0.779570] wc-mbox 15220000.mbox: probe completed successfully\n[    0.779710] wc-mbox 15240000.mbox: probe completed successfully\n[    0.782279] loading exynos-pd from /lib/modules/ failed, fallback to the default path\n[    0.782349] kworker/u16:1 (109) used greatest stack depth: 13648 bytes left\n[    0.782457] Failed to load pkvm module exynos-pd: -2\n[    0.782463] kvm [1]: Clearing unused pKVM firmware memory\n[    0.785110] registered taskstats version 1\n[    0.785153] Loading compiled-in X.509 certificates\n[    0.785224] page_owner is disabled\n[    0.785583] Key type .fscrypt registered\n[    0.785587] Key type fscrypt-provisioning registered\n[    0.785810] pstore: Invalid compression size for deflate: 0\n[    0.788288] load_integrated_module: Initializing module \"exynos_pmu_if\"\n[    0.789861] exynos-pmu-if 15460000.exynos-pmu: exynos_pmu_if probe\n[    0.790252] load_integrated_module: Initializing module \"gs_chipid\"\n[    0.791789] gs-chipid 10000000.chipid: CPU[ZUMAPRO] CPU_REV[0x1] Detected\n[    0.792239] load_integrated_module: Initializing module \"ect_parser\"\n[    0.792490] ect_probe: Reserved memory for ect: addr=0x0000000090000000, size=60000\n[    0.792513] exynos-ect exynos-ect: Exynos ect driver probe done!\n[    0.792890] load_integrated_module: Initializing module \"gs_acpm\"\n[    0.793129] gs-acpm-ipc 15110000.acpm_ipc: acpm_ipc probe\n[    0.794310] [ACPM] acpm framework SRAM dump to dram base: 0x87500000\n[    0.794479] gs-acpm-ipc 15110000.acpm_ipc: acpm_ipc probe done.\n[    0.794808] gs-acpm 15440000.acpm: acpm probe\n[    0.794860] gs-acpm 15440000.acpm: acpm probe done.\n[    0.794998] load_integrated_module: Initializing module \"cmupmucal\"\n[    0.795240] ECT version: 3020\n[    0.796617] vclk initialize for cmucal\n[    0.801328] cannot found vclk node f\n[    0.801551] zuma_cal_data_init: cal data init\n[    0.803423] cmu_top_base : 0x26040000\n[    0.804298] async_dvfs_enable : Enabling Async DVFS\n[    0.804368] load_integrated_module: Initializing module \"pinctrl_exynos_gs\"\n[    0.820248] input: gpio_keys as /devices/platform/gpio_keys/input/input0\n[    0.821872] samsung-pinctrl 16140000.pinctrl: irq number not available\n[    0.822250] samsung-pinctrl 16280000.pinctrl: irq number not available\n[    0.822609] samsung-pinctrl 16290000.pinctrl: irq number not available\n[    0.822952] samsung-pinctrl 162a0000.pinctrl: irq number not available\n[    0.823329] samsung-pinctrl 162b0000.pinctrl: irq number not available\n[    0.823963] load_integrated_module: Initializing module \"clk_exynos_gs\"\n[    0.838336] ZUMA: Clock setup completed\n[    0.839047] load_integrated_module: Initializing module \"exynos_mct_v3\"\n[    0.840067] exynos-mct: osc-24576000 rtc-32768 incr_rtcclk:0x000002ee compen_val:0x00000000\n[    0.840612] clocksource: mct-frc: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 77769386669 ns\n[    0.841078] load_integrated_module: Initializing module \"exynos_cpupm\"\n[    0.842825] load_integrated_module: Initializing module \"exynos_pm_qos\"\n[    0.843224] load_integrated_module: Initializing module \"exynos_pd\"\n[    0.843491] exynos-pd 15461a80.pd-g3d: on\n[    0.843844] exynos-pd 15461c80.pd-embedded_g3d: on\n[    0.843887] exynos-pd 15461a80.pd-g3d: has new subdomain pd-embedded_g3d\n[    0.844232] exynos-pd 15461d00.pd-dpub: on\n[    0.844439] exynos-pd 15461d80.pd-dpuf0: on\n[    0.844467] exynos-pd 15461d00.pd-dpub: has new subdomain pd-dpuf0\n[    0.844764] exynos-pd 15461e00.pd-dpuf1: on\n[    0.844790] exynos-pd 15461d00.pd-dpub: has new subdomain pd-dpuf1\n[    0.845075] exynos-pd 15461e80.pd-g2d: on\n[    0.845284] exynos-pd 15461f00.pd-gdc: on\n[    0.845487] exynos-pd 15461f80.pd-gse: on\n[    0.845678] exynos-pd 15462000.pd-mcsc: on\n[    0.845869] exynos-pd 15462080.pd-mfc: on\n[    0.846070] exynos-pd 15462100.pd-rgbp: on\n[    0.846260] exynos-pd 15462180.pd-tnr: on\n[    0.846455] exynos-pd 15462200.pd-yuvp: on\n[    0.846657] exynos-pd 15462300.pd-aur: on\n[    0.846846] exynos-pd 15462380.pd-bw: on\n[    0.847029] exynos-pd 15462400.pd-eh: on\n[    0.847213] exynos-pd 15462480.pd-ispfe: on\n[    0.847445] exynos-pd 15462500.pd-tpu: on\n[    0.847636] exynos-pd 15462a80.pd-hsi0: on\n[    0.848043] load_integrated_module: Initializing module \"pkvm_s2mpu_v9\"\n[    1.074970] pkvm-s2mpu-v9 20a80000.s2mpu_s0_aur: registered with hypervisor [0/27]\n[    1.075628] pkvm-s2mpu-v9 1a670000.s2mpu_s0_bw: registered with hypervisor [1/27]\n[    1.076104] pkvm-s2mpu-v9 29c50000.s2mpu_s0_cpucl0: registered with hypervisor [2/27]\n[    1.076528] pkvm-s2mpu-v9 19870000.s2mpu_s0_dpuf0: registered with hypervisor [3/27]\n[    1.077002] pkvm-s2mpu-v9 19c70000.s2mpu_s0_dpuf1: registered with hypervisor [4/27]\n[    1.077450] pkvm-s2mpu-v9 16c70000.s2mpu_s0_eh: registered with hypervisor [5/27]\n[    1.077974] pkvm-s2mpu-v9 1a8a0000.s2mpu_s0_g2d: registered with hypervisor [6/27]\n[    1.078393] pkvm-s2mpu-v9 1ee70000.s2mpu_s0_g3d: registered with hypervisor [7/27]\n[    1.078915] pkvm-s2mpu-v9 1d4f0000.s2mpu_s0_gdc: registered with hypervisor [8/27]\n[    1.079418] pkvm-s2mpu-v9 1d8a0000.s2mpu_s0_gse: registered with hypervisor [9/27]\n[    1.079890] pkvm-s2mpu-v9 11070000.s2mpu_s0_hsi0: registered with hypervisor [10/27]\n[    1.080352] pkvm-s2mpu-v9 12090000.s2mpu_s0_hsi1: registered with hypervisor [11/27]\n[    1.080981] pkvm-s2mpu-v9 131f0000.s2mpu_s0_hsi2: registered with hypervisor [12/27]\n[    1.081643] pkvm-s2mpu-v9 1c140000.s2mpu_s0_ispfe: registered with hypervisor [13/27]\n[    1.082152] pkvm-s2mpu-v9 1c180000.s2mpu_s1_ispfe: registered with hypervisor [14/27]\n[    1.082609] pkvm-s2mpu-v9 1c1c0000.s2mpu_s2_ispfe: registered with hypervisor [15/27]\n[    1.083094] pkvm-s2mpu-v9 1d0d0000.s2mpu_s0_mcsc: registered with hypervisor [16/27]\n[    1.083571] pkvm-s2mpu-v9 1a4a0000.s2mpu_s0_mfc: registered with hypervisor [17/27]\n[    1.084036] pkvm-s2mpu-v9 101f0000.s2mpu_s0_misc: registered with hypervisor [18/27]\n[    1.084823] pkvm-s2mpu-v9 1c4d0000.s2mpu_s0_rgbp: registered with hypervisor [19/27]\n[    1.085315] pkvm-s2mpu-v9 1c510000.s2mpu_s1_rgbp: registered with hypervisor [20/27]\n[    1.085817] pkvm-s2mpu-v9 1ccb0000.s2mpu_s0_tnr: registered with hypervisor [21/27]\n[    1.086331] pkvm-s2mpu-v9 1ccf0000.s2mpu_s1_tnr: registered with hypervisor [22/27]\n[    1.086845] pkvm-s2mpu-v9 1cd30000.s2mpu_s2_tnr: registered with hypervisor [23/27]\n[    1.087295] pkvm-s2mpu-v9 1a370000.s2mpu_s0_tpu: registered with hypervisor [24/27]\n[    1.087730] pkvm-s2mpu-v9 1c8a0000.s2mpu_s0_yuvp: registered with hypervisor [25/27]\n[    1.088173] pkvm-s2mpu-v9 16470000.s2mpu_s0_gsa: registered with hypervisor [26/27]\n[    1.088187] List of devices successfully finalized for pkvm s2mpu\n[    1.089268] load_integrated_module: Initializing module \"at24\"\n[    1.089366] load_integrated_module: Initializing module \"open_dice\"\n[    1.089683] load_integrated_module: Initializing module \"sg\"\n[    1.089797] load_integrated_module: Initializing module \"spidev\"\n[    1.089919] load_integrated_module: Initializing module \"i2c_dev\"\n[    1.089925] i2c_dev: i2c /dev entries driver\n[    1.090007] load_integrated_module: Initializing module \"arm_cmn\"\n[    1.098493] load_integrated_module: Initializing module \"sbb_mux\"\n[    1.098546] sbb-mux: Initializing signal [0, '0']...\n[    1.098573] sbb-mux: Initializing signal [1, '1']...\n[    1.098584] sbb-mux: Initializing signal [2, 'kernel_test']...\n[    1.098605] sbb-mux: Initializing signal [3, 'userland_test']...\n[    1.098616] sbb-mux: Initializing signal [4, 'gp_region_0']...\n[    1.098627] sbb-mux: Initializing signal [5, 'gp_region_1']...\n[    1.098640] sbb-mux: Initializing signal [6, 'gp_region_2']...\n[    1.098649] sbb-mux: Initializing signal [7, 'gp_region_3']...\n[    1.098663] sbb-mux: Initializing signal [8, 'k_gp_region_0']...\n[    1.098677] sbb-mux: Initializing signal [9, 'k_gp_region_1']...\n[    1.098691] sbb-mux: Initializing signal [10, 'k_gp_region_2']...\n[    1.098702] sbb-mux: Initializing signal [11, 'k_gp_region_3']...\n[    1.098712] sbb-mux: Initializing signal [12, 'app_misc0']...\n[    1.098728] sbb-mux: Initializing signal [13, 'app_misc1']...\n[    1.098744] sbb-mux: Initializing signal [14, 'app_misc2']...\n[    1.098753] sbb-mux: Initializing signal [15, 'app_misc3']...\n[    1.098766] sbb-mux: Initializing signal [16, 'app_misc4']...\n[    1.098777] sbb-mux: Initializing signal [17, 'app_misc5']...\n[    1.098789] sbb-mux: Initializing signal [18, 'app_misc6']...\n[    1.098799] sbb-mux: Initializing signal [19, 'app_misc7']...\n[    1.098812] sbb-mux: Initializing signal [20, 'app_misc8']...\n[    1.098821] sbb-mux: Initializing signal [21, 'app_misc9']...\n[    1.098831] sbb-mux: Initializing signal [22, 'cam_misc0']...\n[    1.098844] sbb-mux: Initializing signal [23, 'cam_misc1']...\n[    1.098855] sbb-mux: Initializing signal [24, 'cam_misc2']...\n[    1.098867] sbb-mux: Initializing signal [25, 'cam_misc3']...\n[    1.098876] sbb-mux: Initializing signal [26, 'cam_misc4']...\n[    1.098890] sbb-mux: Initializing signal [27, 'cam_misc5']...\n[    1.098901] sbb-mux: Initializing signal [28, 'cam_misc6']...\n[    1.098910] sbb-mux: Initializing signal [29, 'cam_misc7']...\n[    1.098922] sbb-mux: Initializing signal [30, 'cam_misc8']...\n[    1.098931] sbb-mux: Initializing signal [31, 'cam_misc9']...\n[    1.098940] sbb-mux: Initializing signal [32, 'ufs_active_idle']...\n[    1.098954] sbb-mux: Initializing signal [33, 'ufs_power_on']...\n[    1.098963] sbb-mux: Initializing signal [34, 'ufs_io_outstanding']...\n[    1.098975] sbb-mux: Initializing signal [35, 'cp2ap_wake_isr']...\n[    1.098985] sbb-mux: Initializing signal [36, 'pcie_link_state']...\n[    1.099418] sbb-mux: Calling sbb_mux_drv_probe!\n[    1.099463] sbb-mux: Num GPIOs: 3.\n[    1.099524] sbb-mux: GPIO system id: 18.\n[    1.099593] Correctly initialized GPIO tracker #18 for GPIO C1_T0__XAPC_USI2_CTSn_CSn!\n[    1.099633] sbb-mux: GPIO system id: 61.\n[    1.099654] Correctly initialized GPIO tracker #61 for GPIO C1_T1__XAPC_USI9_RTSn_DI!\n[    1.099667] sbb-mux: GPIO system id: 62.\n[    1.099684] Correctly initialized GPIO tracker #62 for GPIO C1_T2__XAPC_USI9_CTSn_CSn!\n[    1.099858] sbb-mux: Registered! :D\n[    1.099907] load_integrated_module: Initializing module \"pl330\"\n[    1.103952] dma-pl330 10110000.pdma0: Loaded driver for PL330 DMAC-341330\n[    1.103963] dma-pl330 10110000.pdma0: \tDBUFF-32x4bytes Num_Chans-8 Num_Peri-32 Num_Events-32\n[    1.105313] dma-pl330 10130000.pdma1: Loaded driver for PL330 DMAC-341330\n[    1.105322] dma-pl330 10130000.pdma1: \tDBUFF-32x4bytes Num_Chans-8 Num_Peri-32 Num_Events-32\n[    1.105553] load_integrated_module: Initializing module \"samsung_dma\"\n[    1.105619] load_integrated_module: Initializing module \"trusty_core\"\n[    1.106269] trusty trusty: trusty version: Project: ripcurrentpro, Build: 11923337, Built: 08:57:20 Jun  4 2024\n[    1.106309] trusty trusty: selected api version: 5 (requested 5)\n[    1.119017] load_integrated_module: Initializing module \"trusty_ipc\"\n[    1.119180] load_integrated_module: Initializing module \"gsa\"\n[    1.119496] gsa 16490000.gsa-ns: linked to 16470000.s2mpu_s0_gsa\n[    1.120238] load_integrated_module: Initializing module \"keydebug\"\n[    1.120357] keydebug_parse_dt: DT:key_down_delay=6000 dbg_fn_delay=2000 keys_down num_keys=2\n[    1.120365] keydebug_parse_dt: DT:keys_down=116\n[    1.120368] keydebug_parse_dt: DT:keys_down=115\n[    1.121004] load_integrated_module: Initializing module \"gs_perf_mon\"\n[    1.125433] load_integrated_module: Initializing module \"exynos_pd_dbg\"\n[    1.127874] load_integrated_module: Initializing module \"acpm_flexpmu_dbg\"\n[    1.128177] ACPM-FLEXPMU-DBG:  exynos_flexpmu_dbg_probe: FLEXPMU_DBG buffer with size 1024 found\n[    1.128390] load_integrated_module: Initializing module \"exynos_pm\"\n[    1.128659] exynos-pm 154d0000.exynos-pm: can't request region for resource [mem 0x10400204-0x10400303]\n[    1.128676] exynos-pm 154d0000.exynos-pm: drvinit: unable to map gic dist registers, ret=-16\n[    1.129021] load_integrated_module: Initializing module \"exynos_dm\"\n[    1.129270] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.129278] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.129286] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.129294] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.129300] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.129305] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.129310] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.129315] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.129319] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.129324] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.129329] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.129334] exynos-dm 17000000.exynos-dm: This doesn't need to send policy to ACPM\n[    1.129338] exynos-dm 17000000.exynos-dm: dm_type: 0(dm_cpu_cl0), available = true\n[    1.129345] exynos-dm 17000000.exynos-dm: dm_type: 1(dm_cpu_cl1), available = true\n[    1.129350] exynos-dm 17000000.exynos-dm: dm_type: 2(dm_cpu_cl2), available = true\n[    1.129354] exynos-dm 17000000.exynos-dm: dm_type: 3(dm_mif), available = true\n[    1.129359] exynos-dm 17000000.exynos-dm: dm_type: 4(dm_int), available = true\n[    1.129363] exynos-dm 17000000.exynos-dm: dm_type: 5(dm_intcam), available = true\n[    1.129367] exynos-dm 17000000.exynos-dm: dm_type: 6(dm_cam), available = true\n[    1.129371] exynos-dm 17000000.exynos-dm: dm_type: 7(dm_tpu), available = true\n[    1.129376] exynos-dm 17000000.exynos-dm: dm_type: 8(dm_tnr), available = true\n[    1.129380] exynos-dm 17000000.exynos-dm: dm_type: 9(dm_disp), available = true\n[    1.129384] exynos-dm 17000000.exynos-dm: dm_type: 10(dm_mfc), available = true\n[    1.129389] exynos-dm 17000000.exynos-dm: dm_type: 11(dm_bw), available = true\n[    1.129393] exynos-dm 17000000.exynos-dm: dm_type: 12(dm_dsu), available = true\n[    1.129397] exynos-dm 17000000.exynos-dm: dm_type: 13(dm_bci), available = true\n[    1.129599] load_integrated_module: Initializing module \"slc_pt\"\n[    1.130313] load_integrated_module: Initializing module \"slc_dummy\"\n[    1.130747] load_integrated_module: Initializing module \"slc_pmon\"\n[    1.130801] load_integrated_module: Initializing module \"slc_acpm\"\n[    1.131034] google,slc-acpm slc-acpm: channel 10\n[    1.131149] google,slc-acpm slc-acpm: found valid acpm firmware 1.8.\n[    1.131163] google,slc-acpm slc-acpm: Asynchronous notification enabled\n[    1.131328] slc-pmon: Error when fetching number of events (0).\n[    1.131470] load_integrated_module: Initializing module \"gsa_gsc\"\n[    1.132643] gsa-gsc 16490000.gsa-ns:gsa_gsc@0: Initiliazed\n[    1.132844] load_integrated_module: Initializing module \"s3c2410_wdt\"\n[    1.133630] s3c2410-wdt 10060000.watchdog_cl0: watchdog cluster0 probe\n[    1.133645] s3c2410-wdt 10060000.watchdog_cl0: It is not a multistage watchdog.\n[    1.133919] s3c2410-wdt 10060000.watchdog_cl0: NONCPU_INT_EN reg val: 32c\n[    1.133975] s3c2410-wdt 10060000.watchdog_cl0: probe: mapped reg_base=00000000f3c186f7\n[    1.134251] s3c2410-wdt 10060000.watchdog_cl0: Watchdog cluster 0 stop done, WTCON = 15718\n[    1.134322] s3c2410-wdt 10060000.watchdog_cl0: NONCPU_OUT set true done, val = 33fff10, en= 1\n[    1.134340] s3c2410-wdt 10060000.watchdog_cl0: NONCPU_INT_EN set true done, val = 32c, mask = 0\n[    1.134395] s3c2410-wdt 10060000.watchdog_cl0: Watchdog cluster 0 stop done, WTCON = 15718\n[    1.134423] (NULL device *): Add wdt start, wdt expire, wdt stop functions from s3c2410wdt_probe+0x8b4/0x9d8\n[    1.134469] s3c2410-wdt 10060000.watchdog_cl0: watchdog cluster 0, inactive, reset disabled, irq disabled\n[    1.134480] s3c2410-wdt 10060000.watchdog_cl0: DBGACK enabled\n[    1.134491] s3c2410-wdt 10060000.watchdog_cl0: windowed watchdog disabled, wtmincnt=1ff5e\n[    1.134500] Multistage watchdog disabled\n[    1.134791] s3c2410-wdt 10070000.watchdog_cl1: watchdog cluster1 probe\n[    1.134810] s3c2410-wdt 10070000.watchdog_cl1: NONCPU_INT_EN reg val: 1\n[    1.134852] s3c2410-wdt 10070000.watchdog_cl1: probe: mapped reg_base=000000006c6969b9\n[    1.134914] s3c2410-wdt 10070000.watchdog_cl1: Watchdog cluster 1 stop done, WTCON = 15700\n[    1.134929] s3c2410-wdt 10070000.watchdog_cl1: NONCPU_OUT set true done, val = 2010, en= 1\n[    1.134941] s3c2410-wdt 10070000.watchdog_cl1: Watchdog cluster 1 stop done, WTCON = 15700\n[    1.134951] s3c2410-wdt 10070000.watchdog_cl1: watchdog cluster 1, inactive, reset disabled, irq disabled\n[    1.134958] s3c2410-wdt 10070000.watchdog_cl1: DBGACK enabled\n[    1.134964] s3c2410-wdt 10070000.watchdog_cl1: windowed watchdog disabled, wtmincnt=1ff5e\n[    1.134969] Multistage watchdog enabled\n[    1.135413] load_integrated_module: Initializing module \"pmic_class\"\n[    1.135483] load_integrated_module: Initializing module \"s2mpg15_mfd\"\n[    1.135554] load_integrated_module: Initializing module \"s2mpg14_mfd\"\n[    1.135612] load_integrated_module: Initializing module \"s2mpg14_regulator\"\n[    1.135784] load_integrated_module: Initializing module \"s2mpg14_powermeter\"\n[    1.135932] load_integrated_module: Initializing module \"s2mpg15_regulator\"\n[    1.136082] load_integrated_module: Initializing module \"s2mpg15_powermeter\"\n[    1.136229] load_integrated_module: Initializing module \"slg51002_regulator\"\n[    1.136368] load_integrated_module: Initializing module \"exynos_tty\"\n[    1.136796] exynos-uart 155d0000.serial: set usi mode - 0x1\n[    1.136873] exynos-uart 155d0000.serial: error -ENXIO: IRQ index 1 not found\n[    1.136888] exynos-uart 155d0000.serial: No explicit src-clk. Use default src-clk\n[    1.136958] 155d0000.serial: ttySAC18 at MMIO 0x155d0000 (irq = 151, base_baud = 0) is a S3C6400/10\n[    1.137486] ------------[ cut here ]------------\n[    1.137494] WARNING: CPU: 0 PID: 1 at mm/vmalloc.c:3161 __vmalloc_node_range+0x78c/0x808\n[    1.137537] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G S                 6.1.75-g7910ee17f109 #1\n[    1.137547] Hardware name: ZUMA PRO CAIMAN MP board based on ZUMA PRO (DT)\n[    1.137560] pstate: 40400005 (nZcv daif +PAN -UAO -TCO -DIT -SSBS BTYPE=--)\n[    1.137568] pc : __vmalloc_node_range+0x78c/0x808\n[    1.137575] lr : vzalloc+0x68/0x80\n[    1.137582] sp : ffffffc00805b850\n[    1.137584] x29: ffffffc00805b900 x28: 0000000000000000 x27: 0000000000003840\n[    1.137606] x26: 00000000000c8000 x25: 0000000000000012 x24: ffffffd5671a9f98\n[    1.137615] x23: 0000000000000012 x22: ffffffd567318ad0 x21: ffffff80055d3810\n[    1.137627] x20: ffffffc00805ba0e x19: ffffff8005b19a00 x18: ffffffc0080510a8\n[    1.137636] x17: 61625f6573616220 x16: 0000000000000100 x15: 0000000000000000\n[    1.137646] x14: 0000000000000020 x13: ffffffc00805ba11 x12: ffffffffffffffff\n[    1.137657] x11: ffffffc00805b830 x10: ffffffc00805ba14 x9 : 0000000000000000\n[    1.137666] x8 : ffffffd56447df6c x7 : 00000000ffffffff x6 : 0000000000000000\n[    1.137675] x5 : 0068000000000703 x4 : 0000000000000dc0 x3 : fffffffdf0000000\n[    1.137688] x2 : ffffffc008000000 x1 : 0000000000000001 x0 : 0000000000000000\n[    1.137701] Call trace:\n[    1.137705]  __vmalloc_node_range+0x78c/0x808\n[    1.137712]  vzalloc+0x68/0x80\n[    1.137719]  logbuffer_register+0x4c/0x160\n[    1.137741]  exynos_serial_probe+0x894/0xd84\n[    1.137760]  platform_probe+0x6c/0xe4\n[    1.137782]  really_probe+0xc0/0x2f4\n[    1.137792]  __driver_probe_device+0x7c/0x120\n[    1.137797]  driver_probe_device+0x40/0x120\n[    1.137805]  __driver_attach+0xf8/0x1a0\n[    1.137811]  bus_for_each_dev+0x7c/0xdc\n[    1.137818]  driver_attach+0x28/0x3c\n[    1.137824]  bus_add_driver+0x158/0x21c\n[    1.137829]  driver_register+0x78/0x13c\n[    1.137837]  __platform_driver_register+0x2c/0x3c\n[    1.137846]  exynos_serial_modinit+0x58/0x74\n[    1.137865]  do_one_initcall+0x5c/0x2e0\n[    1.137882]  load_integrated_module+0x1c0/0x1e0\n[    1.137905]  load_integrated_modules+0x44/0x68\n[    1.137925]  do_one_initcall+0x5c/0x2e0\n[    1.137930]  kernel_init_freeable+0x26c/0x2dc\n[    1.137944]  kernel_init+0x28/0x140\n[    1.137955]  ret_from_fork+0x10/0x20\n[    1.137962] ---[ end trace 0000000000000000 ]---\n[    1.137977] exynos-uart 155d0000.serial: probe: logbuffer get failed\n[    1.138274] exynos-uart 10870000.uart: usi offset is not specified\n[    1.138281] exynos-uart 10870000.uart: no lookup for usi-phandle.\n[    1.138341] exynos-uart 10870000.uart: error -ENXIO: IRQ index 1 not found\n[    1.138348] exynos-uart 10870000.uart: No explicit src-clk. Use default src-clk\n[    1.138371] 10870000.uart: ttySAC0 at MMIO 0x10870000 (irq = 152, base_baud = 0) is a S3C6400/10\n[    1.138765] load_integrated_module: Initializing module \"samsung_iommu_group\"\n[    1.141903] load_integrated_module: Initializing module \"samsung_secure_iova\"\n[    1.141983] load_integrated_module: Initializing module \"iovad_best_fit_algo\"\n[    1.142054] load_integrated_module: Initializing module \"samsung_iommu_v9\"\n[    1.143907] samsung-sysmmu-v9 1a640000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.145478] samsung-sysmmu-v9 1a870000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.146923] samsung-sysmmu-v9 19840000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.148349] samsung-sysmmu-v9 19c40000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.149853] samsung-sysmmu-v9 1c110000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.151300] samsung-sysmmu-v9 1c150000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.152958] samsung-sysmmu-v9 1c190000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.154463] samsung-sysmmu-v9 1d870000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.155870] samsung-sysmmu-v9 1a340000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.157358] samsung-sysmmu-v9 1c870000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.158884] samsung-sysmmu-v9 1cc80000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.160417] samsung-sysmmu-v9 1ccc0000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.161912] samsung-sysmmu-v9 1cd00000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.163543] samsung-sysmmu-v9 1c4a0000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.165448] samsung-sysmmu-v9 1c4e0000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.167794] samsung-sysmmu-v9 101c0000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.169907] samsung-sysmmu-v9 1a470000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.172025] samsung-sysmmu-v9 1d0a0000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.172806] samsung-sysmmu-v9 11040000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.173625] samsung-sysmmu-v9 16440000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.175754] samsung-sysmmu-v9 1d4c0000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.176530] samsung-sysmmu-v9 16c40000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.178903] samsung-sysmmu-v9 20a50000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.179682] samsung-sysmmu-v9 19090000.sysmmu: initialized IOMMU. Ver 9.0.0, no gate clock\n[    1.180075] load_integrated_module: Initializing module \"bts\"\n[    1.180473] exynos-bts exynos-bts: failed to get address_to_resource\n[    1.180482] exynos-bts exynos-bts: failed to get address_to_resource\n[    1.180490] exynos-bts exynos-bts: failed to get address_to_resource\n[    1.180497] exynos-bts exynos-bts: failed to get address_to_resource\n[    1.183220] bts_probe successfully done.\n[    1.183565] load_integrated_module: Initializing module \"exynos_devfreq\"\n[    1.184432] gs101-devfreq 17000010.devfreq_mif: MIF clock info exist\n[    1.186174] gs101-devfreq 17000010.devfreq_mif: failed to update frequency from PM QoS (-517)\n[    1.186187] gs101-devfreq 17000010.devfreq_mif: failed to update frequency from PM QoS (-517)\n[    1.186359] gs101-devfreq 17000010.devfreq_mif: MIF cdev is initialized!!\n[    1.186370] gs101-devfreq 17000010.devfreq_mif: devfreq is initialized!!\n[    1.186590] gs101-devfreq 17000020.devfreq_int: Not registered UM monitor data\n[    1.186596] gs101-devfreq 17000020.devfreq_int: ALT-DVFS is not declared by device tree.\n[    1.187453] gs101-devfreq 17000020.devfreq_int: failed to update frequency from PM QoS (-517)\n[    1.187464] gs101-devfreq 17000020.devfreq_int: failed to update frequency from PM QoS (-517)\n[    1.187589] gs101-devfreq 17000020.devfreq_int: INT cdev is initialized!!\n[    1.187594] gs101-devfreq 17000020.devfreq_int: devfreq is initialized!!\n[    1.187804] gs101-devfreq 17000030.devfreq_intcam: Not registered UM monitor data\n[    1.187812] gs101-devfreq 17000030.devfreq_intcam: ALT-DVFS is not declared by device tree.\n[    1.188290] gs101-devfreq 17000030.devfreq_intcam: DT min freq is lower than ECT min freq!\n[    1.188294] gs101-devfreq 17000030.devfreq_intcam: Nudged 67000 KHz to the lower 111000 KHz freq.\n[    1.188550] gs101-devfreq 17000030.devfreq_intcam: failed to update frequency from PM QoS (-517)\n[    1.188557] gs101-devfreq 17000030.devfreq_intcam: failed to update frequency from PM QoS (-517)\n[    1.188628] gs101-devfreq 17000030.devfreq_intcam: INTCAM cdev is initialized!!\n[    1.188634] gs101-devfreq 17000030.devfreq_intcam: devfreq is initialized!!\n[    1.188851] gs101-devfreq 17000040.devfreq_disp: Not registered UM monitor data\n[    1.188856] gs101-devfreq 17000040.devfreq_disp: ALT-DVFS is not declared by device tree.\n[    1.189678] gs101-devfreq 17000040.devfreq_disp: failed to update frequency from PM QoS (-517)\n[    1.189687] gs101-devfreq 17000040.devfreq_disp: failed to update frequency from PM QoS (-517)\n[    1.190022] gs101-devfreq 17000040.devfreq_disp: DISP cdev is initialized!!\n[    1.190027] gs101-devfreq 17000040.devfreq_disp: devfreq is initialized!!\n[    1.190242] gs101-devfreq 17000050.devfreq_cam: Not registered UM monitor data\n[    1.190247] gs101-devfreq 17000050.devfreq_cam: ALT-DVFS is not declared by device tree.\n[    1.190704] gs101-devfreq 17000050.devfreq_cam: DT min freq is lower than ECT min freq!\n[    1.190709] gs101-devfreq 17000050.devfreq_cam: Nudged 67000 KHz to the lower 111000 KHz freq.\n[    1.190996] gs101-devfreq 17000050.devfreq_cam: failed to update frequency from PM QoS (-517)\n[    1.191005] gs101-devfreq 17000050.devfreq_cam: failed to update frequency from PM QoS (-517)\n[    1.191075] gs101-devfreq 17000050.devfreq_cam: CAM cdev is initialized!!\n[    1.191082] gs101-devfreq 17000050.devfreq_cam: devfreq is initialized!!\n[    1.191290] gs101-devfreq 17000060.devfreq_tnr: Not registered UM monitor data\n[    1.191295] gs101-devfreq 17000060.devfreq_tnr: ALT-DVFS is not declared by device tree.\n[    1.191764] gs101-devfreq 17000060.devfreq_tnr: DT min freq is lower than ECT min freq!\n[    1.191768] gs101-devfreq 17000060.devfreq_tnr: Nudged 67000 KHz to the lower 111000 KHz freq.\n[    1.192014] gs101-devfreq 17000060.devfreq_tnr: failed to update frequency from PM QoS (-517)\n[    1.192022] gs101-devfreq 17000060.devfreq_tnr: failed to update frequency from PM QoS (-517)\n[    1.192098] gs101-devfreq 17000060.devfreq_tnr: TNR cdev is initialized!!\n[    1.192106] gs101-devfreq 17000060.devfreq_tnr: devfreq is initialized!!\n[    1.192331] gs101-devfreq 17000070.devfreq_mfc: Not registered UM monitor data\n[    1.192338] gs101-devfreq 17000070.devfreq_mfc: ALT-DVFS is not declared by device tree.\n[    1.193117] gs101-devfreq 17000070.devfreq_mfc: failed to update frequency from PM QoS (-517)\n[    1.193128] gs101-devfreq 17000070.devfreq_mfc: failed to update frequency from PM QoS (-517)\n[    1.193201] gs101-devfreq 17000070.devfreq_mfc: MFC cdev is initialized!!\n[    1.193207] gs101-devfreq 17000070.devfreq_mfc: devfreq is initialized!!\n[    1.193421] gs101-devfreq 17000080.devfreq_bw: Not registered UM monitor data\n[    1.193427] gs101-devfreq 17000080.devfreq_bw: ALT-DVFS is not declared by device tree.\n[    1.194110] gs101-devfreq 17000080.devfreq_bw: failed to update frequency from PM QoS (-517)\n[    1.194119] gs101-devfreq 17000080.devfreq_bw: failed to update frequency from PM QoS (-517)\n[    1.194188] gs101-devfreq 17000080.devfreq_bw: BW cdev is initialized!!\n[    1.194193] gs101-devfreq 17000080.devfreq_bw: devfreq is initialized!!\n[    1.194412] gs101-devfreq 17000090.devfreq_dsu: Not registered UM monitor data\n[    1.194416] gs101-devfreq 17000090.devfreq_dsu: ALT-DVFS is not declared by device tree.\n[    1.195536] gs101-devfreq 17000090.devfreq_dsu: DT max freq is higher than ECT max freq!\n[    1.195806] gs101-devfreq 17000090.devfreq_dsu: failed to update frequency from PM QoS (-517)\n[    1.195817] gs101-devfreq 17000090.devfreq_dsu: failed to update frequency from PM QoS (-517)\n[    1.195904] gs101-devfreq 17000090.devfreq_dsu: DSU cdev is initialized!!\n[    1.195911] gs101-devfreq 17000090.devfreq_dsu: devfreq is initialized!!\n[    1.196126] gs101-devfreq 170000a0.devfreq_bci: Not registered UM monitor data\n[    1.196132] gs101-devfreq 170000a0.devfreq_bci: ALT-DVFS is not declared by device tree.\n[    1.197386] gs101-devfreq 170000a0.devfreq_bci: failed to update frequency from PM QoS (-517)\n[    1.197396] gs101-devfreq 170000a0.devfreq_bci: failed to update frequency from PM QoS (-517)\n[    1.197487] gs101-devfreq 170000a0.devfreq_bci: BCI cdev is initialized!!\n[    1.197493] gs101-devfreq 170000a0.devfreq_bci: devfreq is initialized!!\n[    1.197772] load_integrated_module: Initializing module \"s5910\"\n[    1.197849] load_integrated_module: Initializing module \"s2mpg1415_gpio\"\n[    1.198182] load_integrated_module: Initializing module \"slg51002_core\"\n[    1.198261] load_integrated_module: Initializing module \"samsung_dma_heap\"\n[    1.198680] samsung,dma-heap-chunk trusty:video_stream_dma_heap: assigned reserved memory node vstream\n[    1.198791] Registered vstream-secure dma-heap successfully\n[    1.198841] samsung,dma-heap-chunk trusty:video_frame_dma_heap: assigned reserved memory node vframe\n[    1.198881] Registered vframe-secure dma-heap successfully\n[    1.198924] samsung,dma-heap-chunk trusty:video_scaler_dma_heap: assigned reserved memory node vscaler\n[    1.198970] Registered vscaler-secure dma-heap successfully\n[    1.199304] samsung,dma-heap-cma trusty:faceauth_preview_heap: assigned reserved memory node faprev\n[    1.199346] Registered faprev-secure dma-heap successfully\n[    1.199703] Registered mfc_fw-secure dma-heap successfully\n[    1.200568] gcma: Reserved memory: created GCMA memory pool at 0x00000009d7100000, size 75 MiB for famodel\n[    1.200653] Registered famodel-secure dma-heap successfully\n[    1.201100] gcma: Reserved memory: created GCMA memory pool at 0x00000000fe800000, size 24 MiB for tui\n[    1.201166] Registered tui-secure dma-heap successfully\n[    1.201524] gcma: Reserved memory: created GCMA memory pool at 0x00000009d4400000, size 32 MiB for faceauth_dsp\n[    1.201588] Registered faceauth_dsp-secure dma-heap successfully\n[    1.201840] gcma: Reserved memory: created GCMA memory pool at 0x00000009ff000000, size 16 MiB for faceauth_tpu\n[    1.201886] Registered faceauth_tpu-secure dma-heap successfully\n[    1.203422] gcma: Reserved memory: created GCMA memory pool at 0x00000009c9800000, size 172 MiB for farawimg\n[    1.203504] Registered farawimg-secure dma-heap successfully\n[    1.203810] Registered system dma-heap successfully\n[    1.203839] Registered system-uncached dma-heap successfully\n[    1.203915] Registered video_system dma-heap successfully\n[    1.203952] Registered video_system-uncached dma-heap successfully\n[    1.204409] load_integrated_module: Initializing module \"ufs_exynos_gs\"\n[    1.205040] exynos-ufs 13200000.ufs: exynos_ufs_probe: start\n[    1.205046] exynos-ufs 13200000.ufs: ===============================\n[    1.205096] exynos-ufs 13200000.ufs: reg_hci    00000000d92b3fa5\n[    1.205119] exynos-ufs 13200000.ufs: reg_unipro 00000000eb359dfa\n[    1.205130] exynos-ufs 13200000.ufs: reg_ufsp   00000000a97d18e8\n[    1.205144] exynos-ufs 13200000.ufs: reg_phy    0000000064ae930d\n[    1.205154] exynos-ufs 13200000.ufs: reg_cport  000000009f04dba6\n[    1.205159] exynos-ufs 13200000.ufs: \n[    1.205510] exynos-ufs 13200000.ufs: ufs-iocc: offset 0x710, mask 0x3, value 0x3\n[    1.205530] exynos-ufs 13200000.ufs: evt version : 0, board: 1\n[    1.205548] exynos-ufs 13200000.ufs: ===============================\n[    1.205573] exynos-ufs 13200000.ufs: exynos_ufs_init_dbg:\n[    1.205579] exynos-ufs 13200000.ufs: UNIP_COMP_AXI_AUX_FIELD = 0x00000040\n[    1.205586] exynos-ufs 13200000.ufs: __WSTRB = 0x0f000000\n[    1.212204] exynos-ufs 13200000.ufs: ufshcd_populate_vreg: Unable to find vdd-hba-supply regulator, assuming enabled\n[    1.212388] exynos-ufs 13200000.ufs: ufshcd_populate_vreg: unable to find vcc-max-microamp\n[    1.212396] exynos-ufs 13200000.ufs: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled\n[    1.212401] exynos-ufs 13200000.ufs: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled\n[    1.216789] exynos-ufs 13200000.ufs: configured KDN with MKE=1, DT=0, KE=0\n[    1.216887] exynos-ufs 13200000.ufs: enabled inline encryption support with wrapped keys\n[    1.218762] scsi host0: ufshcd\n[    1.219350] exynos-ufs 13200000.ufs: kdn: evicting keyslot 0\n[    1.220553] exynos-ufs 13200000.ufs: kdn: evicting keyslot 1\n[    1.221560] exynos-ufs 13200000.ufs: kdn: evicting keyslot 2\n[    1.222596] exynos-ufs 13200000.ufs: kdn: evicting keyslot 3\n[    1.223609] exynos-ufs 13200000.ufs: kdn: evicting keyslot 4\n[    1.224611] exynos-ufs 13200000.ufs: kdn: evicting keyslot 5\n[    1.225602] exynos-ufs 13200000.ufs: kdn: evicting keyslot 6\n[    1.226611] exynos-ufs 13200000.ufs: kdn: evicting keyslot 7\n[    1.227599] exynos-ufs 13200000.ufs: kdn: evicting keyslot 8\n[    1.228601] exynos-ufs 13200000.ufs: kdn: evicting keyslot 9\n[    1.229603] exynos-ufs 13200000.ufs: kdn: evicting keyslot 10\n[    1.230597] exynos-ufs 13200000.ufs: kdn: evicting keyslot 11\n[    1.231606] exynos-ufs 13200000.ufs: kdn: evicting keyslot 12\n[    1.232834] exynos-ufs 13200000.ufs: kdn: evicting keyslot 13\n[    1.233786] exynos-ufs 13200000.ufs: kdn: evicting keyslot 14\n[    1.234791] exynos-ufs 13200000.ufs: mclk: 178000000\n[    1.234837] exynos-ufs 13200000.ufs: kdn: restoring keys\n[    1.240688] load_integrated_module: Initializing module \"spi_s3c64xx\"\n[    1.241172] s3c64xx-spi 10ce0000.spi: spi bus clock parent not specified, using clock at index 0 as parent\n[    1.241184] s3c64xx-spi 10ce0000.spi: number of chip select lines not specified, assuming 1 chip select line\n[    1.241331] s3c64xx-spi 10ce0000.spi: set usi mode - 0x2\n[    1.241512] s3c64xx-spi 10ce0000.spi: Not using idle state\n[    1.241517] s3c64xx-spi 10ce0000.spi: spi clkoff-time is empty(Default: 0ms)\n[    1.241524] s3c64xx-spi 10ce0000.spi: PORT 15 fifo_lvl_mask = 0x7f\n[    1.241783] ese@0 enforce active low on chipselect handle\n[    1.243615] s3c64xx-spi 111b0000.spi: spi bus clock parent not specified, using clock at index 0 as parent\n[    1.243621] s3c64xx-spi 111b0000.spi: number of chip select lines not specified, assuming 1 chip select line\n[    1.243828] s3c64xx-spi 111b0000.spi: set usi mode - 0x2\n[    1.243959] s3c64xx-spi 111b0000.spi: Couldn't get pinctrl.\n[    1.243965] s3c64xx-spi 111b0000.spi: spi clkoff-time is empty(Default: 0ms)\n[    1.243969] s3c64xx-spi 111b0000.spi: PORT 18 fifo_lvl_mask = 0x7f\n[    1.245456] s3c64xx-spi 111c0000.spi: spi bus clock parent not specified, using clock at index 0 as parent\n[    1.245473] s3c64xx-spi 111c0000.spi: set usi mode - 0x2\n[    1.245588] s3c64xx-spi 111c0000.spi: Not using idle state\n[    1.245592] s3c64xx-spi 111c0000.spi: spi clkoff-time is empty(Default: 0ms)\n[    1.245599] s3c64xx-spi 111c0000.spi: PORT 19 fifo_lvl_mask = 0x7f\n[    1.247612] s3c64xx-spi 111d0000.spi: spi bus clock parent not specified, using clock at index 0 as parent\n[    1.247623] s3c64xx-spi 111d0000.spi: number of chip select lines not specified, assuming 1 chip select line\n[    1.247639] s3c64xx-spi 111d0000.spi: set usi mode - 0x2\n[    1.247771] s3c64xx-spi 111d0000.spi: Default state not defined\n[    1.247777] s3c64xx-spi 111d0000.spi: Not using idle state\n[    1.247783] s3c64xx-spi 111d0000.spi: spi clkoff-time is empty(Default: 0ms)\n[    1.247789] s3c64xx-spi 111d0000.spi: PORT 20 fifo_lvl_mask = 0x7f\n[    1.248977] s3c64xx-spi 111e0000.spi: spi bus clock parent not specified, using clock at index 0 as parent\n[    1.248985] s3c64xx-spi 111e0000.spi: number of chip select lines not specified, assuming 1 chip select line\n[    1.249002] s3c64xx-spi 111e0000.spi: set usi mode - 0x2\n[    1.249107] s3c64xx-spi 111e0000.spi: Couldn't get pinctrl.\n[    1.249113] s3c64xx-spi 111e0000.spi: spi clkoff-time is empty(Default: 0ms)\n[    1.249120] s3c64xx-spi 111e0000.spi: PORT 21 fifo_lvl_mask = 0x7f\n[    1.249881] s3c64xx-spi 111f0000.spi: spi bus clock parent not specified, using clock at index 0 as parent\n[    1.249888] s3c64xx-spi 111f0000.spi: number of chip select lines not specified, assuming 1 chip select line\n[    1.249905] s3c64xx-spi 111f0000.spi: set usi mode - 0x2\n[    1.250019] s3c64xx-spi 111f0000.spi: Couldn't get pinctrl.\n[    1.250030] s3c64xx-spi 111f0000.spi: spi clkoff-time is empty(Default: 0ms)\n[    1.250037] s3c64xx-spi 111f0000.spi: PORT 22 fifo_lvl_mask = 0x7f\n[    1.251205] load_integrated_module: Initializing module \"spmi_bit_bang\"\n[    1.251848] s5910_spmi_driver 0-05: off: 0 0 0x215 0xf\n[    1.251856] s5910_spmi_driver 0-05: off: 1 1000 0x20e 0x4\n[    1.251863] s5910_spmi_driver 0-05: off: 2 0 0x240 0x10\n[    1.251868] s5910_spmi_driver 0-05: on: 0 0 0x211 0x47\n[    1.251874] s5910_spmi_driver 0-05: on: 1 0 0x236 0xe\n[    1.251879] s5910_spmi_driver 0-05: on: 2 0 0x215 0x7f\n[    1.251885] s5910_spmi_driver 0-05: on: 3 0 0x20e 0x0\n[    1.252104] load_integrated_module: Initializing module \"gvotable\"\n[    1.252162] load_integrated_module: Initializing module \"s2mpg14_key\"\n[    1.252535] load_integrated_module: Initializing module \"keycombo\"\n[    1.252843] load_integrated_module: Initializing module \"rtc_s2mpg14\"\n[    1.253017] load_integrated_module: Initializing module \"i2c_exynos5\"\n[    1.253496] exynos5-hsi2c 10880000.hsi2c: set usi mode - 0x4\n[    1.253531] exynos5-hsi2c 10880000.hsi2c: Trailing count: 0xffffff\n[    1.253708] exynos5-hsi2c 10880000.hsi2c: exynos5_i2c_set_timing IPCLK = 200000000 OP_CLK = 950000 DIV = 12 FSCK = 961538 TIMING FS1(FS+) = 0x1E0FF00 TIMING FS2(FS+) = 0x30003E0 TIMING FS3(FS+) = 0xC0000\n[    1.254274] exynos5-hsi2c 10890000.hsi2c: set usi mode - 0x4\n[    1.254289] exynos5-hsi2c 10890000.hsi2c: Trailing count: 0xffffff\n[    1.254383] exynos5-hsi2c 10890000.hsi2c: exynos5_i2c_set_timing IPCLK = 200000000 OP_CLK = 950000 DIV = 12 FSCK = 961538 TIMING FS1(FS+) = 0x1E0FF00 TIMING FS2(FS+) = 0x30003E0 TIMING FS3(FS+) = 0xC0000\n[    1.254826] exynos5-hsi2c 108a0000.hsi2c: set usi mode - 0x4\n[    1.254841] exynos5-hsi2c 108a0000.hsi2c: Trailing count: 0xffffff\n[    1.254937] exynos5-hsi2c 108a0000.hsi2c: exynos5_i2c_set_timing IPCLK = 200000000 OP_CLK = 950000 DIV = 12 FSCK = 961538 TIMING FS1(FS+) = 0x1E0FF00 TIMING FS2(FS+) = 0x30003E0 TIMING FS3(FS+) = 0xC0000\n[    1.255365] exynos5-hsi2c 108b0000.hsi2c: set usi mode - 0x4\n[    1.255380] exynos5-hsi2c 108b0000.hsi2c: Trailing count: 0xffffff\n[    1.255465] exynos5-hsi2c 108b0000.hsi2c: exynos5_i2c_set_timing IPCLK = 200000000 OP_CLK = 390000 DIV = 32 FSCL = 378787 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x200000\n[    1.255589] exynos-ufs 13200000.ufs: PA_ActiveTxDataLanes(2), PA_ActiveRxDataLanes(2)\n[    1.255596] exynos-ufs 13200000.ufs: max_gear(4), PA_MaxRxHSGear(4)\n[    1.255622] exynos-ufs 13200000.ufs: UFS link start-up passes\n[    1.257391] exynos5-hsi2c 108c0000.hsi2c: set usi mode - 0x4\n[    1.257408] exynos5-hsi2c 108c0000.hsi2c: Trailing count: 0x20000\n[    1.257492] exynos5-hsi2c 108c0000.hsi2c: exynos5_i2c_set_timing IPCLK = 200000000 OP_CLK = 950000 DIV = 12 FSCK = 961538 TIMING FS1(FS+) = 0x1E0FF00 TIMING FS2(FS+) = 0x30003E0 TIMING FS3(FS+) = 0xC0000\n[    1.258059] exynos5-hsi2c 108d0000.hsi2c: set usi mode - 0x4\n[    1.258073] exynos5-hsi2c 108d0000.hsi2c: Trailing count: 0xffffff\n[    1.258180] exynos5-hsi2c 108d0000.hsi2c: exynos5_i2c_set_timing IPCLK = 200000000 OP_CLK = 950000 DIV = 12 FSCK = 961538 TIMING FS1(FS+) = 0x1E0FF00 TIMING FS2(FS+) = 0x30003E0 TIMING FS3(FS+) = 0xC0000\n[    1.259037] i2c 6-0025: Fixed dependency cycle(s) with /hsi2c@108D0000/max77759tcpc@25/connector/ports/port@1/endpoint\n[    1.259094] i2c 6-0025: Fixed dependency cycle(s) with /hsi2c@108D0000/max77759tcpc@25/connector/ports/port@0/endpoint\n[    1.259744] exynos5-hsi2c 10c90000.hsi2c: set usi mode - 0x4\n[    1.259759] exynos5-hsi2c 10c90000.hsi2c: Trailing count: 0xffffff\n[    1.259903] exynos5-hsi2c 10c90000.hsi2c: exynos5_i2c_set_timing IPCLK = 200000000 OP_CLK = 950000 DIV = 12 FSCK = 961538 TIMING FS1(FS+) = 0x1E0FF00 TIMING FS2(FS+) = 0x30003E0 TIMING FS3(FS+) = 0xC0000\n[    1.261273] exynos5-hsi2c 10ca0000.hsi2c: set usi mode - 0x4\n[    1.261287] exynos5-hsi2c 10ca0000.hsi2c: Trailing count: 0xffffff\n[    1.261388] exynos5-hsi2c 10ca0000.hsi2c: exynos5_i2c_set_timing IPCLK = 200000000 OP_CLK = 400000 DIV = 31 FSCL = 390625 Timing FS1 = 0x1F0FF00 TIMING FS2 = 0x30003E0 TIMING FS3 = 0x1F0000\n[    1.261698] at24 10-0050: supply vcc not found, using dummy regulator\n[    1.263129] at24 10-0050: 1024 byte 24c08 EEPROM, writable, 1 bytes/write\n[    1.263928] load_integrated_module: Initializing module \"i2c_acpm\"\n[    1.264258] exynos-ufs 13200000.ufs: UFS device initialized\n[    1.264518] i2c-acpm acpm_mfd_bus@15510000: acpm mfd bus driver probe started\n[    1.266567] exynos-ufs 13200000.ufs: PA_ActiveTxDataLanes(2),PA_ActiveRxDataLanes(2)\n[    1.266584] exynos-ufs 13200000.ufs: Power mode change(0): M(1)G(4)L(2)HS-series(2)\n[    1.266590] exynos-ufs 13200000.ufs: HS mode config passes\n[    1.267216] scsi 0:0:0:49488: Well-known LUN    KIOXIA   THGJFLT2E46BATPB 0100 PQ: 0 ANSI: 6\n[    1.268316] ufs_device_wlun 0:0:0:49488: Attached scsi generic sg0 type 30\n[    1.268704] scsi 0:0:0:49476: Well-known LUN    KIOXIA   THGJFLT2E46BATPB 0100 PQ: 0 ANSI: 6\n[    1.269306] s2mpg15 i2c-s2mpg15: device found: rev.0x10\n[    1.269518] scsi 0:0:0:49476: Attached scsi generic sg1 type 30\n[    1.269725] scsi 0:0:0:49456: Well-known LUN    KIOXIA   THGJFLT2E46BATPB 0100 PQ: 0 ANSI: 6\n[    1.270355] scsi 0:0:0:49456: Attached scsi generic sg2 type 30\n[    1.270779] scsi 0:0:0:0: Direct-Access     KIOXIA   THGJFLT2E46BATPB 0100 PQ: 0 ANSI: 6\n[    1.271619] scsi 0:0:0:0: Attached scsi generic sg3 type 0\n[    1.272362] scsi 0:0:0:1: Direct-Access     KIOXIA   THGJFLT2E46BATPB 0100 PQ: 0 ANSI: 6\n[    1.272556] sd 0:0:0:0: [sda] 124867584 4096-byte logical blocks: (511 GB/476 GiB)\n[    1.272642] sd 0:0:0:0: [sda] Write Protect is off\n[    1.272673] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10\n[    1.272798] sd 0:0:0:0: [sda] Disabling FUA\n[    1.272808] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA\n[    1.272830] sd 0:0:0:0: [sda] Preferred minimum I/O size 4096 bytes\n[    1.272839] sd 0:0:0:0: [sda] Optimal transfer size 524288 bytes\n[    1.274419] scsi 0:0:0:1: Attached scsi generic sg4 type 0\n[    1.274970] scsi 0:0:0:2: Direct-Access     KIOXIA   THGJFLT2E46BATPB 0100 PQ: 0 ANSI: 6\n[    1.276179]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda18 sda19 sda20 sda21 sda22 sda23 sda24 sda25 sda26 sda27 sda28 sda29 sda30 sda31 sda32 sda33 sda34\n[    1.277952] sd 0:0:0:0: [sda] Attached SCSI disk\n[    1.278441] scsi 0:0:0:2: Attached scsi generic sg5 type 0\n[    1.278644] sd 0:0:0:1: [sdb] 16384 4096-byte logical blocks: (67.1 MB/64.0 MiB)\n[    1.278701] scsi 0:0:0:3: Direct-Access     KIOXIA   THGJFLT2E46BATPB 0100 PQ: 0 ANSI: 6\n[    1.278727] sd 0:0:0:1: [sdb] Write Protect is off\n[    1.278754] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10\n[    1.278843] sd 0:0:0:1: [sdb] Disabling FUA\n[    1.278852] sd 0:0:0:1: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA\n[    1.278862] sd 0:0:0:1: [sdb] Preferred minimum I/O size 4096 bytes\n[    1.278868] sd 0:0:0:1: [sdb] Optimal transfer size 524288 bytes\n[    1.280703] scsi 0:0:0:3: Attached scsi generic sg6 type 0\n[    1.281290]  sdb: sdb1 sdb2 sdb3 sdb4 sdb5 sdb6 sdb7 sdb8 sdb9 sdb10 sdb11 sdb12\n[    1.281873] sd 0:0:0:2: [sdc] 16384 4096-byte logical blocks: (67.1 MB/64.0 MiB)\n[    1.282055] sd 0:0:0:1: [sdb] Attached SCSI disk\n[    1.282192] sd 0:0:0:2: [sdc] Write Protect is off\n[    1.282220] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10\n[    1.282336] sd 0:0:0:2: [sdc] Disabling FUA\n[    1.282362] sd 0:0:0:2: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA\n[    1.282371] sd 0:0:0:2: [sdc] Preferred minimum I/O size 4096 bytes\n[    1.282378] sd 0:0:0:2: [sdc] Optimal transfer size 524288 bytes\n[    1.283064] sd 0:0:0:3: [sdd] 1024 4096-byte logical blocks: (4.19 MB/4.00 MiB)\n[    1.283147] sd 0:0:0:3: [sdd] Write Protect is off\n[    1.283174] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10\n[    1.283262] sd 0:0:0:3: [sdd] Disabling FUA\n[    1.283267] sd 0:0:0:3: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA\n[    1.283274] sd 0:0:0:3: [sdd] Preferred minimum I/O size 4096 bytes\n[    1.283279] sd 0:0:0:3: [sdd] Optimal transfer size 524288 bytes\n[    1.284833]  sdc: sdc1 sdc2 sdc3 sdc4 sdc5 sdc6 sdc7 sdc8 sdc9 sdc10 sdc11 sdc12\n[    1.285420] sd 0:0:0:2: [sdc] Attached SCSI disk\n[    1.285798]  sdd: sdd1 sdd2 sdd3 sdd4\n[    1.286020] sd 0:0:0:3: [sdd] Attached SCSI disk\n[    1.339671] S2MPG15_LDO22: Bringing 1800000uV into 1850000-1850000uV\n[    1.340034] s2mpg15 i2c-s2mpg15: LDO22S: ramp_delay not set\n[    1.340041] S2MPG15_LDO22: failed to get delay: -EINVAL\n[    1.342273] s2mpg15 i2c-s2mpg15: OCP_CTRL1: 0xbb\n[    1.342347] s2mpg15 i2c-s2mpg15: OCP_CTRL2: 0xba\n[    1.342422] s2mpg15 i2c-s2mpg15: OCP_CTRL3: 0xbb\n[    1.342489] s2mpg15 i2c-s2mpg15: OCP_CTRL4: 0xbb\n[    1.342559] s2mpg15 i2c-s2mpg15: OCP_CTRL5: 0xbb\n[    1.342629] s2mpg15 i2c-s2mpg15: OCP_CTRL6: 0xbb\n[    1.342700] s2mpg15 i2c-s2mpg15: OCP_CTRL7: 0xbb\n[    1.342769] s2mpg15 i2c-s2mpg15: OCP_CTRL8: 0x0\n[    1.342839] s2mpg15 i2c-s2mpg15: B2S_OCP_WARN : 0x80\n[    1.342908] s2mpg15 i2c-s2mpg15: B2S_SOFT_OCP_WARN : 0x12\n[    1.348510] i2c-acpm acpm_mfd_bus@15510000: acpm mfd bus driver probe was succeeded\n[    1.348739] i2c-acpm acpm_mfd_bus@15500000: acpm mfd bus driver probe started\n[    1.350197] s2mpg14 i2c-s2mpg14: device found: rev.0x10\n[    1.359068] slg51002 4-0075: No init registers are overridden\n[    1.360170] slg51002 4-0075: chip_id: 0xb13103\n[    1.361023] ldo1: Bringing 2850000uV into 2250000-2250000uV\n[    1.364337] ldo3: Bringing 1800000uV into 2850000-2850000uV\n[    1.366470] ldo4: Bringing 2900000uV into 2950000-2950000uV\n[    1.368628] ldo5: Bringing 2850000uV into 2900000-2900000uV\n[    1.381210] s2mpg14 i2c-s2mpg14: s2mpg14 S2MPG14_COMMON_IBIM1=0xfc\n[    1.404855] s2mpg14 i2c-s2mpg14: BUCK_OCP_CTRL1: 0xbb\n[    1.404929] s2mpg14 i2c-s2mpg14: BUCK_OCP_CTRL2: 0xbb\n[    1.404996] s2mpg14 i2c-s2mpg14: BUCK_OCP_CTRL3: 0xbb\n[    1.405065] s2mpg14 i2c-s2mpg14: BUCK_OCP_CTRL4: 0xbb\n[    1.405132] s2mpg14 i2c-s2mpg14: BUCK_OCP_CTRL5: 0xbb\n[    1.405203] s2mpg14 i2c-s2mpg14: SMPL_WARN_CTRL : 0x68\n[    1.405274] s2mpg14 i2c-s2mpg14: B2M_OCP_WARN : 0x80\n[    1.405342] s2mpg14 i2c-s2mpg14: B3M_OCP_WARN : 0x80\n[    1.405410] s2mpg14 i2c-s2mpg14: B7M_OCP_WARN : 0x80\n[    1.405540] s2mpg14 i2c-s2mpg14: B2M_SOFT_OCP_WARN : 0x0\n[    1.405607] s2mpg14 i2c-s2mpg14: B3M_SOFT_OCP_WARN : 0x0\n[    1.405676] s2mpg14 i2c-s2mpg14: B7M_SOFT_OCP_WARN : 0x0\n[    1.408471] s2mpg14-rtc s2mpg14-rtc: WTSR: enable, COLDRST : disable, SMPL: enable\n[    1.411527] s2mpg14-rtc s2mpg14-rtc: 2024-09-14 03:52:38(0x40)AM\n[    1.413037] s2mpg14-rtc s2mpg14-rtc: 2152-137-141 01:171:170(0xa0)AM\n[    1.414608] s2mpg14-rtc s2mpg14-rtc: 2024-09-14 03:52:38(0x40)AM\n[    1.414930] s2mpg14-rtc s2mpg14-rtc: registered as rtc0\n[    1.416431] s2mpg14-rtc s2mpg14-rtc: 2024-09-14 03:52:38(0x40)AM\n[    1.416490] s2mpg14-rtc s2mpg14-rtc: setting system clock to 2024-09-14T03:52:38 UTC (1726285958)\n[    1.418770] s2mpg14 i2c-s2mpg14: could not find current_node\n[    1.418779] s2mpg14-power-keys: probe of s2mpg14-power-keys failed with error -2\n[    1.419218] i2c-acpm acpm_mfd_bus@15500000: acpm mfd bus driver probe was succeeded\n[    1.420100] load_integrated_module: Initializing module \"s2mpg15_spmic_thermal\"\n[    1.420701] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: DMA mask not set\n[    1.420816] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Registering 0 sensor\n[    1.425010] thermal thermal_zone0: Failed to set trips: -11\n[    1.425046] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Registering 1 sensor\n[    1.428269] thermal thermal_zone1: Failed to set trips: -11\n[    1.428353] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Set sensor 1 hot trip(mdegC):65000, ret:0\n[    1.428364] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Registering 2 sensor\n[    1.431569] thermal thermal_zone2: Failed to set trips: -11\n[    1.431589] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Registering 3 sensor\n[    1.434980] thermal thermal_zone3: Failed to set trips: -11\n[    1.434996] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Registering 4 sensor\n[    1.438208] thermal thermal_zone4: Failed to set trips: -11\n[    1.438223] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Registering 5 sensor\n[    1.441434] thermal thermal_zone5: Failed to set trips: -11\n[    1.441452] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Registering 6 sensor\n[    1.444962] thermal thermal_zone6: Failed to set trips: -11\n[    1.444981] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Registering 7 sensor\n[    1.448218] thermal thermal_zone7: Failed to set trips: -11\n[    1.449596] ------------[ cut here ]------------\n[    1.449602] sysfs: (bin_)attrs not set by subsystem for group: spmic/\n[    1.449656] WARNING: CPU: 0 PID: 1 at fs/sysfs/group.c:122 internal_create_group+0x270/0x3b0\n[    1.449710] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G S      W          6.1.75-g7910ee17f109 #1\n[    1.449721] Hardware name: ZUMA PRO CAIMAN MP board based on ZUMA PRO (DT)\n[    1.449731] pstate: 60400005 (nZCv daif +PAN -UAO -TCO -DIT -SSBS BTYPE=--)\n[    1.449739] pc : internal_create_group+0x270/0x3b0\n[    1.449747] lr : internal_create_group+0x270/0x3b0\n[    1.449753] sp : ffffffc00805b920\n[    1.449757] x29: ffffffc00805b930 x28: ffffff800b592000 x27: ffffffd56735b160\n[    1.449778] x26: ffffffd56735ab48 x25: ffffffd56735b1b8 x24: ffffff800c083380\n[    1.449787] x23: 0000000000000000 x22: 0000000000000000 x21: 0000000000000000\n[    1.449796] x20: ffffffd56735b160 x19: 0000000000000000 x18: ffffffc0080510a8\n[    1.449805] x17: 0000000000000000 x16: 0000000000000100 x15: fffffffffff00000\n[    1.449815] x14: 0000000000000406 x13: 00000000ffffffea x12: ffffff8b684fffa8\n[    1.449845] x11: ffffff8b68240000 x10: ffffff8b78630000 x9 : 0000000000000001\n[    1.449854] x8 : 0000000000000001 x7 : 00000000000bffe8 x6 : c0000000ffff7fff\n[    1.449863] x5 : 00000000002bffa8 x4 : 0000000000000000 x3 : 0000000000000000\n[    1.449873] x2 : 0000000000000000 x1 : 0000000000000000 x0 : ffffff8004669300\n[    1.449887] Call trace:\n[    1.449894]  internal_create_group+0x270/0x3b0\n[    1.449902]  sysfs_create_group+0x1c/0x2c\n[    1.449908]  register_temp_residency_stats+0x150/0x294\n[    1.449933]  s2mpg15_spmic_thermal_probe+0x3f4/0x6b0\n[    1.449953]  platform_probe+0x6c/0xe4\n[    1.449972]  really_probe+0xc0/0x2f4\n[    1.449982]  __driver_probe_device+0x7c/0x120\n[    1.449990]  driver_probe_device+0x40/0x120\n[    1.449996]  __driver_attach+0xf8/0x1a0\n[    1.450001]  bus_for_each_dev+0x7c/0xdc\n[    1.450006]  driver_attach+0x28/0x3c\n[    1.450012]  bus_add_driver+0x158/0x21c\n[    1.450016]  driver_register+0x78/0x13c\n[    1.450022]  __platform_driver_register+0x2c/0x3c\n[    1.450030]  s2mpg15_spmic_thermal_driver_init+0x20/0x30\n[    1.450052]  do_one_initcall+0x5c/0x2e0\n[    1.450068]  load_integrated_module+0x1c0/0x1e0\n[    1.450089]  load_integrated_modules+0x44/0x68\n[    1.450109]  do_one_initcall+0x5c/0x2e0\n[    1.450114]  kernel_init_freeable+0x26c/0x2dc\n[    1.450127]  kernel_init+0x28/0x140\n[    1.450139]  ret_from_fork+0x10/0x20\n[    1.450149] ---[ end trace 0000000000000000 ]---\n[    1.450159] pixel_metrics: ERR:-22 failed to create temp_residency_all files\n[    1.450172] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Failed to register for temperature residency stats. ret: -12\n[    1.451753] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Applying NTC... disabling odpm [s2mpg15]\n[    1.542236] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Set NTC channels (adc_ch_en : 0x0)\n[    1.542375] s2mpg15-spmic-thermal s2mpg15-spmic-thermal: Re-enabled odpm [s2mpg15] :)\n[    1.542805] load_integrated_module: Initializing module \"exynos_acme\"\n[    1.546351] cpu cpu0: EM: Access to CPUFreq policy failed\n[    1.546591] cpu cpu0: EM: created perf domain\n[    1.546596] exynos_acme: Complete to initialize cpufreq-domain0\n[    1.546601] exynos_acme: CPUFREQ of domain0 cal-id : 0xb040002\n[    1.546611] exynos_acme: CPUFREQ of domain0 sibling cpus : 0-3\n[    1.546614] exynos_acme: CPUFREQ of domain0 boot freq = 1197000 kHz, resume freq = 1425000 kHz\n[    1.546618] exynos_acme: CPUFREQ of domain0 max freq : 1950000 kHz, min freq : 820000 kHz\n[    1.546622] exynos_acme: CPUFREQ of domain0 table size = 10\n[    1.546626] exynos_acme: CPUFREQ of domain0 : L0    820000 kHz\n[    1.546630] exynos_acme: CPUFREQ of domain0 : L1    955000 kHz\n[    1.546633] exynos_acme: CPUFREQ of domain0 : L2   1098000 kHz\n[    1.546637] exynos_acme: CPUFREQ of domain0 : L3   1197000 kHz\n[    1.546640] exynos_acme: CPUFREQ of domain0 : L4   1328000 kHz\n[    1.546643] exynos_acme: CPUFREQ of domain0 : L5   1425000 kHz\n[    1.546646] exynos_acme: CPUFREQ of domain0 : L6   1548000 kHz\n[    1.546650] exynos_acme: CPUFREQ of domain0 : L7   1696000 kHz\n[    1.546653] exynos_acme: CPUFREQ of domain0 : L8   1849000 kHz\n[    1.546656] exynos_acme: CPUFREQ of domain0 : L9   1950000 kHz\n[    1.552780] cpu cpu4: EM: Access to CPUFreq policy failed\n[    1.553173] cpu cpu4: EM: created perf domain\n[    1.553177] exynos_acme: Complete to initialize cpufreq-domain1\n[    1.553180] exynos_acme: CPUFREQ of domain1 cal-id : 0xb040003\n[    1.553187] exynos_acme: CPUFREQ of domain1 sibling cpus : 4-6\n[    1.553192] exynos_acme: CPUFREQ of domain1 boot freq = 1065000 kHz, resume freq = 1795000 kHz\n[    1.553196] exynos_acme: CPUFREQ of domain1 max freq : 2600000 kHz, min freq : 357000 kHz\n[    1.553200] exynos_acme: CPUFREQ of domain1 table size = 17\n[    1.553202] exynos_acme: CPUFREQ of domain1 : L0    357000 kHz\n[    1.553206] exynos_acme: CPUFREQ of domain1 : L1    578000 kHz\n[    1.553213] exynos_acme: CPUFREQ of domain1 : L2    648000 kHz\n[    1.553216] exynos_acme: CPUFREQ of domain1 : L3    787000 kHz\n[    1.553222] exynos_acme: CPUFREQ of domain1 : L4    910000 kHz\n[    1.553225] exynos_acme: CPUFREQ of domain1 : L5   1065000 kHz\n[    1.553228] exynos_acme: CPUFREQ of domain1 : L6   1221000 kHz\n[    1.553231] exynos_acme: CPUFREQ of domain1 : L7   1328000 kHz\n[    1.553235] exynos_acme: CPUFREQ of domain1 : L8   1418000 kHz\n[    1.553238] exynos_acme: CPUFREQ of domain1 : L9   1549000 kHz\n[    1.553241] exynos_acme: CPUFREQ of domain1 : L10  1795000 kHz\n[    1.553244] exynos_acme: CPUFREQ of domain1 : L11  1945000 kHz\n[    1.553248] exynos_acme: CPUFREQ of domain1 : L12  2130000 kHz\n[    1.553251] exynos_acme: CPUFREQ of domain1 : L13  2245000 kHz\n[    1.553254] exynos_acme: CPUFREQ of domain1 : L14  2367000 kHz\n[    1.553257] exynos_acme: CPUFREQ of domain1 : L15  2450000 kHz\n[    1.553261] exynos_acme: CPUFREQ of domain1 : L16  2600000 kHz\n[    1.555684] cpu cpu7: EM: Access to CPUFreq policy failed\n[    1.556088] cpu cpu7: EM: created perf domain\n[    1.556092] exynos_acme: Complete to initialize cpufreq-domain2\n[    1.556096] exynos_acme: CPUFREQ of domain2 cal-id : 0xb040004\n[    1.556102] exynos_acme: CPUFREQ of domain2 sibling cpus : 7\n[    1.556109] exynos_acme: CPUFREQ of domain2 boot freq = 1164000 kHz, resume freq = 1164000 kHz\n[    1.556115] exynos_acme: CPUFREQ of domain2 max freq : 3105000 kHz, min freq : 700000 kHz\n[    1.556118] exynos_acme: CPUFREQ of domain2 table size = 18\n[    1.556121] exynos_acme: CPUFREQ of domain2 : L0    700000 kHz\n[    1.556125] exynos_acme: CPUFREQ of domain2 : L1   1164000 kHz\n[    1.556128] exynos_acme: CPUFREQ of domain2 : L2   1396000 kHz\n[    1.556131] exynos_acme: CPUFREQ of domain2 : L3   1557000 kHz\n[    1.556134] exynos_acme: CPUFREQ of domain2 : L4   1745000 kHz\n[    1.556138] exynos_acme: CPUFREQ of domain2 : L5   1885000 kHz\n[    1.556142] exynos_acme: CPUFREQ of domain2 : L6   1999000 kHz\n[    1.556145] exynos_acme: CPUFREQ of domain2 : L7   2147000 kHz\n[    1.556149] exynos_acme: CPUFREQ of domain2 : L8   2294000 kHz\n[    1.556152] exynos_acme: CPUFREQ of domain2 : L9   2363000 kHz\n[    1.556155] exynos_acme: CPUFREQ of domain2 : L10  2499000 kHz\n[    1.556158] exynos_acme: CPUFREQ of domain2 : L11  2687000 kHz\n[    1.556161] exynos_acme: CPUFREQ of domain2 : L12  2802000 kHz\n[    1.556165] exynos_acme: CPUFREQ of domain2 : L13  2914000 kHz\n[    1.556168] exynos_acme: CPUFREQ of domain2 : L14  2943000 kHz\n[    1.556171] exynos_acme: CPUFREQ of domain2 : L15  2970000 kHz\n[    1.556174] exynos_acme: CPUFREQ of domain2 : L16  3015000 kHz\n[    1.556177] exynos_acme: CPUFREQ of domain2 : L17  3105000 kHz\n[    1.556344] exynos_acme: CPUFREQ domain0 registered\n[    1.556643] exynos_acme: CPUFREQ domain1 registered\n[    1.556708] exynos_acme: CPUFREQ domain2 registered\n[    1.557437] cpu_cooling 0: freq:1950000 KHz\n[    1.557443] cpu_cooling 0: freq:1849000 KHz\n[    1.557447] cpu_cooling 0: freq:1696000 KHz\n[    1.557449] cpu_cooling 0: freq:1548000 KHz\n[    1.557455] cpu_cooling 0: freq:1425000 KHz\n[    1.557459] cpu_cooling 0: freq:1328000 KHz\n[    1.557462] cpu_cooling 0: freq:1197000 KHz\n[    1.557465] cpu_cooling 0: freq:1098000 KHz\n[    1.557469] cpu_cooling 0: freq:955000 KHz\n[    1.557472] cpu_cooling 0: freq:820000 KHz\n[    1.557482] cpu_cooling 0: freq:1950000 power: 91, mV: 818, cap: 70\n[    1.557488] cpu_cooling 0: freq:1849000 power: 76, mV: 768, cap: 70\n[    1.557493] cpu_cooling 0: freq:1696000 power: 61, mV: 718, cap: 70\n[    1.557498] cpu_cooling 0: freq:1548000 power: 52, mV: 693, cap: 70\n[    1.557505] cpu_cooling 0: freq:1425000 power: 44, mV: 668, cap: 70\n[    1.557510] cpu_cooling 0: freq:1328000 power: 39, mV: 650, cap: 70\n[    1.557515] cpu_cooling 0: freq:1197000 power: 32, mV: 625, cap: 70\n[    1.557519] cpu_cooling 0: freq:1098000 power: 28, mV: 612, cap: 70\n[    1.557524] cpu_cooling 0: freq:955000 power: 23, mV: 593, cap: 70\n[    1.557531] cpu_cooling 0: freq:820000 power: 18, mV: 568, cap: 70\n[    1.557697] build_static_power_table: Failed to get param table from ECT\n[    1.560884] cpu cooling registered for cpu: 0, capacitance: 70, power_callback: true, static_power: false\n[    1.560930] exynos_acme: Skipping boot pm_qos domain0\n[    1.561140] cpu_cooling 4: freq:2600000 KHz\n[    1.561147] cpu_cooling 4: freq:2450000 KHz\n[    1.561153] cpu_cooling 4: freq:2367000 KHz\n[    1.561159] cpu_cooling 4: freq:2245000 KHz\n[    1.561164] cpu_cooling 4: freq:2130000 KHz\n[    1.561170] cpu_cooling 4: freq:1945000 KHz\n[    1.561175] cpu_cooling 4: freq:1795000 KHz\n[    1.561182] cpu_cooling 4: freq:1549000 KHz\n[    1.561186] cpu_cooling 4: freq:1418000 KHz\n[    1.561192] cpu_cooling 4: freq:1328000 KHz\n[    1.561197] cpu_cooling 4: freq:1221000 KHz\n[    1.561201] cpu_cooling 4: freq:1065000 KHz\n[    1.561205] cpu_cooling 4: freq:910000 KHz\n[    1.561210] cpu_cooling 4: freq:787000 KHz\n[    1.561215] cpu_cooling 4: freq:648000 KHz\n[    1.561219] cpu_cooling 4: freq:578000 KHz\n[    1.561222] cpu_cooling 4: freq:357000 KHz\n[    1.561229] cpu_cooling 4: freq:2600000 power: 1249, mV: 968, cap: 513\n[    1.561234] cpu_cooling 4: freq:2450000 power: 1045, mV: 912, cap: 513\n[    1.561239] cpu_cooling 4: freq:2367000 power: 955, mV: 887, cap: 513\n[    1.561244] cpu_cooling 4: freq:2245000 power: 832, mV: 850, cap: 513\n[    1.561248] cpu_cooling 4: freq:2130000 power: 743, mV: 825, cap: 513\n[    1.561253] cpu_cooling 4: freq:1945000 power: 599, mV: 775, cap: 513\n[    1.561259] cpu_cooling 4: freq:1795000 power: 492, mV: 731, cap: 513\n[    1.561265] cpu_cooling 4: freq:1549000 power: 362, mV: 675, cap: 513\n[    1.561271] cpu_cooling 4: freq:1418000 power: 300, mV: 643, cap: 513\n[    1.561277] cpu_cooling 4: freq:1328000 power: 271, mV: 631, cap: 513\n[    1.561282] cpu_cooling 4: freq:1221000 power: 234, mV: 612, cap: 513\n[    1.561286] cpu_cooling 4: freq:1065000 power: 188, mV: 587, cap: 513\n[    1.561291] cpu_cooling 4: freq:910000 power: 150, mV: 568, cap: 513\n[    1.561295] cpu_cooling 4: freq:787000 power: 124, mV: 556, cap: 513\n[    1.561300] cpu_cooling 4: freq:648000 power: 98, mV: 543, cap: 513\n[    1.561304] cpu_cooling 4: freq:578000 power: 85, mV: 537, cap: 513\n[    1.561309] cpu_cooling 4: freq:357000 power: 46, mV: 506, cap: 513\n[    1.564000] cpu cooling registered for cpu: 4, capacitance: 513, power_callback: true, static_power: true\n[    1.564016] exynos_acme: Skipping boot pm_qos domain1\n[    1.564171] cpu_cooling 7: freq:3105000 KHz\n[    1.564176] cpu_cooling 7: freq:3015000 KHz\n[    1.564180] cpu_cooling 7: freq:2970000 KHz\n[    1.564186] cpu_cooling 7: freq:2943000 KHz\n[    1.564190] cpu_cooling 7: freq:2914000 KHz\n[    1.564197] cpu_cooling 7: freq:2802000 KHz\n[    1.564203] cpu_cooling 7: freq:2687000 KHz\n[    1.564207] cpu_cooling 7: freq:2499000 KHz\n[    1.564212] cpu_cooling 7: freq:2363000 KHz\n[    1.564216] cpu_cooling 7: freq:2294000 KHz\n[    1.564220] cpu_cooling 7: freq:2147000 KHz\n[    1.564223] cpu_cooling 7: freq:1999000 KHz\n[    1.564227] cpu_cooling 7: freq:1885000 KHz\n[    1.564229] cpu_cooling 7: freq:1745000 KHz\n[    1.564232] cpu_cooling 7: freq:1557000 KHz\n[    1.564235] cpu_cooling 7: freq:1396000 KHz\n[    1.564238] cpu_cooling 7: freq:1164000 KHz\n[    1.564240] cpu_cooling 7: freq:700000 KHz\n[    1.564249] cpu_cooling 7: freq:3105000 power: 2681, mV: 1068, cap: 757\n[    1.564254] cpu_cooling 7: freq:3015000 power: 2397, mV: 1025, cap: 757\n[    1.564259] cpu_cooling 7: freq:2970000 power: 2329, mV: 1018, cap: 757\n[    1.564263] cpu_cooling 7: freq:2943000 power: 2281, mV: 1012, cap: 757\n[    1.564267] cpu_cooling 7: freq:2914000 power: 2205, mV: 1000, cap: 757\n[    1.564272] cpu_cooling 7: freq:2802000 power: 1914, mV: 950, cap: 757\n[    1.564276] cpu_cooling 7: freq:2687000 power: 1691, mV: 912, cap: 757\n[    1.564280] cpu_cooling 7: freq:2499000 power: 1386, mV: 856, cap: 757\n[    1.564285] cpu_cooling 7: freq:2363000 power: 1196, mV: 818, cap: 757\n[    1.564291] cpu_cooling 7: freq:2294000 power: 1111, mV: 800, cap: 757\n[    1.564296] cpu_cooling 7: freq:2147000 power: 958, mV: 768, cap: 757\n[    1.564302] cpu_cooling 7: freq:1999000 power: 821, mV: 737, cap: 757\n[    1.564307] cpu_cooling 7: freq:1885000 power: 735, mV: 718, cap: 757\n[    1.564311] cpu_cooling 7: freq:1745000 power: 634, mV: 693, cap: 757\n[    1.564315] cpu_cooling 7: freq:1557000 power: 516, mV: 662, cap: 757\n[    1.564319] cpu_cooling 7: freq:1396000 power: 420, mV: 631, cap: 757\n[    1.564324] cpu_cooling 7: freq:1164000 power: 317, mV: 600, cap: 757\n[    1.564329] cpu_cooling 7: freq:700000 power: 163, mV: 556, cap: 757\n[    1.566885] cpu cooling registered for cpu: 7, capacitance: 757, power_callback: true, static_power: true\n[    1.566899] exynos_acme: Skipping boot pm_qos domain2\n[    1.567000] exynos_acme: Initialized Exynos cpufreq driver\n[    1.567774] load_integrated_module: Initializing module \"gs_governor_utils\"\n[    1.567828] load_integrated_module: Initializing module \"gs_governor_memlat\"\n[    1.568662] load_integrated_module: Initializing module \"gs_governor_dsulat\"\n[    1.569601] load_integrated_module: Initializing module \"odpm\"\n[    1.569806] odpm: s2mpg15-odpm: init\n[    1.570044] odpm: Configuring S2MPG15...\n[    1.570133] odpm: S2MPG15: Applied new sampling frequency (type 0) in Hz: 125.000000\n[    1.570217] odpm: S2MPG15: Applied new sampling frequency (type 1) in Hz: 31.250000\n[    1.570225] odpm: S2MPG15: CH0=S1S_VDD_CAM\n[    1.570312] odpm: S2MPG15: CH1=S2S_VDD_G3D\n[    1.570392] odpm: S2MPG15: CH2=S4S_VDD2H_MEM\n[    1.570474] odpm: S2MPG15: CH3=S5S_VDDQ_MEM\n[    1.570554] odpm: S2MPG15: CH4=L22S_UDFPS\n[    1.570634] odpm: S2MPG15: CH5=S9S_VDD_AOC\n[    1.570713] odpm: S2MPG15: CH6=L2S_PLL_MIPI_UFS\n[    1.570794] odpm: S2MPG15: CH7=S3S_LLDO1\n[    1.570873] odpm: S2MPG15: CH8=L21S_VDD2L_MEM\n[    1.570953] odpm: S2MPG15: CH9=VSYS_PWR_MODEM\n[    1.571034] odpm: S2MPG15: CH10=VSYS_PWR_WLAN_BT\n[    1.571114] odpm: S2MPG15: CH11=VSYS_PWR_MMWAVE\n[    1.571596] odpm: Configuring S2MPG15...done\n[    1.571869] odpm: S2MPG15: Starting at timestamp (ms): 1559\n[    1.572469] odpm: s2mpg15-odpm: init completed\n[    1.572650] odpm: s2mpg14-odpm: init\n[    1.572781] odpm: Configuring S2MPG14...\n[    1.572865] odpm: S2MPG14: Applied new sampling frequency (type 0) in Hz: 125.000000\n[    1.572947] odpm: S2MPG14: Applied new sampling frequency (type 1) in Hz: 31.250000\n[    1.572951] odpm: S2MPG14: CH0=S1M_VDD_MIF\n[    1.572960] s2mpg14-meter s2mpg14-meter: CH0, BUCK1M\n[    1.573045] odpm: S2MPG14: CH1=S2M_VDD_CPUCL1\n[    1.573049] s2mpg14-meter s2mpg14-meter: CH1, BUCK2M\n[    1.573132] odpm: S2MPG14: CH2=S3M_VDD_CPUCL2\n[    1.573136] s2mpg14-meter s2mpg14-meter: CH2, BUCK3M\n[    1.573218] odpm: S2MPG14: CH3=S4M_VDD_CPUCL0\n[    1.573224] s2mpg14-meter s2mpg14-meter: CH3, BUCK4M\n[    1.573305] odpm: S2MPG14: CH4=S5M_VDD_INT\n[    1.573308] s2mpg14-meter s2mpg14-meter: CH4, BUCK5M\n[    1.573389] odpm: S2MPG14: CH5=S6M_LLDO1\n[    1.573393] s2mpg14-meter s2mpg14-meter: CH5, BUCK6M\n[    1.573474] odpm: S2MPG14: CH6=S7M_VDD_TPU\n[    1.573477] s2mpg14-meter s2mpg14-meter: CH6, BUCK7M\n[    1.573560] odpm: S2MPG14: CH7=S8M_LLDO2\n[    1.573563] s2mpg14-meter s2mpg14-meter: CH7, BUCK8M\n[    1.573644] odpm: S2MPG14: CH8=S9M_VDD_CPUCL1_M\n[    1.573647] s2mpg14-meter s2mpg14-meter: CH8, BUCK9M\n[    1.573728] odpm: S2MPG14: CH9=VSYS_PWR_DISPLAY\n[    1.573731] s2mpg14-meter s2mpg14-meter: CH9, invalid\n[    1.573814] odpm: S2MPG14: CH10=VSYS_PWR_CAMERA\n[    1.573818] s2mpg14-meter s2mpg14-meter: CH10, invalid\n[    1.573899] odpm: S2MPG14: CH11=VSYS_PWR_RFFE\n[    1.573902] s2mpg14-meter s2mpg14-meter: CH11, invalid\n[    1.574367] odpm: Configuring S2MPG14...done\n[    1.574509] odpm: S2MPG14: Starting at timestamp (ms): 1562\n[    1.574889] odpm: s2mpg14-odpm: init completed\n[    1.574997] load_integrated_module: Initializing module \"pixel_reboot\"\n[    1.575467] pixel-reboot pixel-reboot: register restart handler successfully\n[    1.575661] load_integrated_module: Initializing module \"trusty_virtio\"\n[    1.576817] trusty_ipc virtio0: vring0: va(id)  00000000839bdd62(ffffffc2) qsz 32 notifyid 1\n[    1.576860] trusty_ipc virtio0: vring1: va(id)  00000000d25cd270(ffffffc3) qsz 32 notifyid 2\n[    1.578190] trusty-virtio trusty:virtio: initializing done\n[    1.578280] trusty_ipc virtio0: is online\n[    1.578672] load_integrated_module: Initializing module \"gzvm\"\n[    1.579073] load_integrated_module: Initializing module \"arm_dsu_pmu\"\n[    1.586701] load_integrated_module: Initializing module \"pinctrl_slg51002\"\n[    1.588984] load_integrated_module: Initializing module \"rt6160_regulator\"\n[    1.589684] rt6160 4-0077: Failed to parse reg_defaults from device tree (-22), init from hw\n[    1.589720] rt6160 4-0077: No cache defaults, reading back from HW\n[    1.590458] rt6160 4-0077: VID = [0xa8]\n[    1.590520] PP3200_CAM_BB: Bringing 3450000uV into 3200000-3200000uV\n[    1.591358] slg51002 4-0075: Failed to create device link (0x180) with 4-0077\n[    1.591366] slg51002 4-0075: Failed to create device link (0x180) with 4-0077\n[    1.591375] slg51002 4-0075: Failed to create device link (0x180) with 4-0077\n[    1.591380] slg51002 4-0075: Failed to create device link (0x180) with 4-0077\n[    1.591386] slg51002 4-0075: Failed to create device link (0x180) with 4-0077\n[    1.591914] clk: Not disabling unused clocks\n[    1.592006] exynos_pd: pd-dpub sync_state: children need sync\n[    1.592013] exynos_pd: pd-mfc sync_state: turn_off = 1\n[    1.592281] exynos_pd: pd-aur sync_state: turn_off = 1\n[    1.592664] exynos_pd: pd-ispfe sync_state: turn_off = 1\n[    1.592972] exynos_pd: pd-tpu sync_state: turn_off = 1\n[    1.593267] ALSA device list:\n[    1.593282]   No soundcards found.\n[    1.593429] Warning: unable to open an initial console.\n[    1.601021] Freeing unused kernel memory: 11968K\n[    1.633482] Run /init as init process\n[    1.633525]   with arguments:\n[    1.633528]     /init\n[    1.633534]   with environment:\n[    1.633539]     HOME=/\n[    1.633546]     TERM=linux\n[    1.647443] mount (239) used greatest stack depth: 13064 bytes left\n[    1.792615] odpm: S2MPG14: Applied new sampling frequency (type 0) in Hz: 1000.000000\n[    1.792647] odpm: S2MPG14: meter reset\n[    2.536509] \n               \n               \n               \n                 __                _                     _     \n                / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n               | |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n               |  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n               |_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                                |_|                            \n               \n                          CPU benchmark • by kdrag0n\n               \n               ------------------------------------------------\n               \n               Frequency domains: \n[    2.537006] cpu1 \n[    2.537072] cpu4 \n[    2.537125] cpu7 \n[    2.537166] \n               Offline CPUs: \n[    2.540282] cpu1 \n[    2.545611] psci: CPU1 killed (polled 0 ms)\n[    2.547089] cpu2 \n[    2.550810] psci: CPU2 killed (polled 0 ms)\n[    2.551463] cpu3 \n[    2.555188] psci: CPU3 killed (polled 0 ms)\n[    2.555750] cpu4 \n[    2.559224] psci: CPU4 killed (polled 0 ms)\n[    2.559882] cpu5 \n[    2.563370] psci: CPU5 killed (polled 0 ms)\n[    2.563942] cpu6 \n[    2.567504] psci: CPU6 killed (polled 0 ms)\n[    2.568261] cpu7 \n[    2.570060] psci: CPU7 killed (polled 0 ms)\n\n[   31.843519] disp_vddd: disabling\n[   31.843785] S2MPG15_LDO5: disabling\n[   31.844028] S2MPG15_LDO7: disabling\n[   31.848188] slg51002 4-0075: No init registers are overridden\n[   31.852970] S2MPG14_LDO8: disabling\n[   31.853168] S2MPG14_LDO9: disabling\n[   31.853343] S2MPG14_LDO14: disabling\n[   31.853581] S2MPG14_LDO19: disabling\n[   32.593795] CPU features: detected CPU1: Activity Monitors Unit (AMU)\n[   32.593943] Detected PIPT I-cache on CPU1\n[   32.594029] cacheinfo: Unable to detect cache hierarchy for CPU 1\n[   32.594082] GICv3: CPU1: found redistributor 100 region 0:0x0000000010460000\n[   32.594319] CPU1: Booted secondary processor 0x0000000100 [0x410fd801]\n[   32.597485] CPU features: detected CPU4: Activity Monitors Unit (AMU)\n[   32.597533] Detected PIPT I-cache on CPU4\n[   32.597542] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64MMFR1_EL1. Boot CPU: 0x1001111011312122, CPU4: 0x1001111010312122\n[   32.597567] cacheinfo: Unable to detect cache hierarchy for CPU 4\n[   32.597588] GICv3: CPU4: found redistributor 400 region 0:0x00000000104c0000\n[   32.597678] CPU4: Booted secondary processor 0x0000000400 [0x410fd811]\n[   33.606141] \n               ===== CPU 1 =====\n               Frequencies: 820 955 1098 1197 1328 1425 1548 1696 1849 1950\n               \n                820: \n[  198.147415] coremark (254) used greatest stack depth: 12912 bytes left\n[  198.156449]  3836     4.7 C/MHz     56 mW    8.8 J   68.0 I/mJ   156.4 s\n                955: \n[  305.124441] kworker/dying (8) used greatest stack depth: 12400 bytes left\n[  340.364569]  4475     4.7 C/MHz     66 mW    8.9 J   67.6 I/mJ   134.1 s\n               1098: \n[  465.341205]  5135     4.7 C/MHz     77 mW    8.9 J   67.1 I/mJ   116.9 s\n               1197: \n[  580.454041]  5608     4.7 C/MHz     83 mW    8.9 J   67.3 I/mJ   107.0 s\n               1328: \n[  684.900725]  6230     4.7 C/MHz     96 mW    9.3 J   64.6 I/mJ    96.3 s\n               1425: \n[  782.826266]  6682     4.7 C/MHz    107 mW    9.6 J   62.4 I/mJ    89.8 s\n               1548: \n[  873.656158]  7255     4.7 C/MHz    122 mW   10.1 J   59.4 I/mJ    82.7 s\n               1696: \n[  957.332156]  7942     4.7 C/MHz    141 mW   10.6 J   56.4 I/mJ    75.6 s\n               1849: \n[ 1034.503083]  8690     4.7 C/MHz    176 mW   12.1 J   49.5 I/mJ    69.1 s\n               1950: \n[ 1108.302930] psci: CPU1 killed (polled 0 ms)\n[ 1108.308516] CPU features: detected CPU7: Activity Monitors Unit (AMU)\n[ 1108.308587] Detected PIPT I-cache on CPU7\n[ 1108.308603] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64MMFR1_EL1. Boot CPU: 0x1001111011312122, CPU7: 0x1001111010312122\n[ 1108.308644] cacheinfo: Unable to detect cache hierarchy for CPU 7\n[ 1108.308685] GICv3: CPU7: found redistributor 700 region 0:0x0000000010520000\n[ 1108.308828] CPU7: Booted secondary processor 0x0000000700 [0x410fd821]\n[ 1109.319378]  9138     4.7 C/MHz    204 mW   13.4 J   44.7 I/mJ    65.7 s\n               \n               \n               ===== CPU 4 =====\n               Frequencies: 357 578 648 787 910 1065 1221 1328 1418 1549 1795 1945 2130 2245 2367 2450 2600\n               \n                357: \n[ 1307.169544]  3163     8.9 C/MHz     35 mW    6.6 J   90.3 I/mJ   189.7 s\n                578: \n[ 1432.222494]  5131     8.9 C/MHz     56 mW    6.6 J   90.9 I/mJ   116.9 s\n                648: \n[ 1544.729540]  5748     8.9 C/MHz     64 mW    6.6 J   90.5 I/mJ   104.4 s\n                787: \n[ 1638.818657]  6980     8.9 C/MHz     78 mW    6.7 J   89.6 I/mJ    86.0 s\n                910: \n[ 1721.332070]  8066     8.9 C/MHz     93 mW    6.9 J   87.1 I/mJ    74.4 s\n               1065: \n[ 1792.911593]  9456     8.9 C/MHz    114 mW    7.2 J   83.2 I/mJ    63.5 s\n               1221: \n[ 1856.412791] 10835     8.9 C/MHz    141 mW    7.8 J   77.1 I/mJ    55.4 s\n               1328: \n[ 1915.443226] 11788     8.9 C/MHz    161 mW    8.2 J   73.3 I/mJ    50.9 s\n               1418: \n[ 1971.233397] 12589     8.9 C/MHz    176 mW    8.4 J   71.4 I/mJ    47.7 s\n               1549: \n[ 2023.010340] 13747     8.9 C/MHz    206 mW    9.0 J   66.9 I/mJ    43.7 s\n               1795: \n[ 2068.789001] 15935     8.9 C/MHz    452 mW   17.0 J   35.2 I/mJ    37.7 s\n               1945: \n[ 2111.681384] 17259     8.9 C/MHz    377 mW   13.1 J   45.7 I/mJ    34.8 s\n               2130: \n[ 2151.534496] 18910     8.9 C/MHz    470 mW   14.9 J   40.3 I/mJ    31.7 s\n               2245: \n[ 2189.757162] 19940     8.9 C/MHz    534 mW   16.1 J   37.3 I/mJ    30.1 s\n               2367: \n[ 2226.389341] 21050     8.9 C/MHz    620 mW   17.7 J   33.9 I/mJ    28.5 s\n               2450: \n[ 2262.096925] 21755     8.9 C/MHz    684 mW   18.9 J   31.8 I/mJ    27.6 s\n               2600: \n[ 2296.213422] psci: CPU4 killed (polled 0 ms)\n[ 2297.222946] 23094     8.9 C/MHz    862 mW   22.4 J   26.8 I/mJ    26.0 s\n               \n               \n               ===== CPU 7 =====\n               Frequencies: 700 1164 1396 1557 1745 1885 1999 2147 2294 2363 2499 2687 2802 2914 2943 2970 3015 3105\n               \n                700: \n[ 2385.606026]  7477     10.7 C/MHz    159 mW   12.7 J   47.1 I/mJ    80.3 s\n               1164: \n[ 2442.110326] 12404     10.7 C/MHz    285 mW   13.8 J   43.6 I/mJ    48.4 s\n               1396: \n[ 2490.550802] 14884     10.7 C/MHz    382 mW   15.4 J   39.0 I/mJ    40.3 s\n               1557: \n[ 2534.795345] 16613     10.7 C/MHz    468 mW   16.9 J   35.5 I/mJ    36.1 s\n               1745: \n[ 2575.148183] 18621     10.7 C/MHz    576 mW   18.6 J   32.3 I/mJ    32.2 s\n               1885: \n[ 2613.145203] 20088     10.7 C/MHz    673 mW   20.1 J   29.8 I/mJ    29.9 s\n               1999: \n[ 2649.494262] 21263     10.6 C/MHz    753 mW   21.3 J   28.2 I/mJ    28.2 s\n               2147: \n[ 2683.838669] 22889     10.7 C/MHz    889 mW   23.3 J   25.7 I/mJ    26.2 s\n               2294: \n[ 2716.506266] 24452     10.7 C/MHz   1053 mW   25.8 J   23.2 I/mJ    24.5 s\n               2363: \n[ 2748.475655] 25169     10.7 C/MHz   1151 mW   27.4 J   21.9 I/mJ    23.8 s\n               2499: \n[ 2779.126907] 26642     10.7 C/MHz   1371 mW   30.9 J   19.4 I/mJ    22.5 s\n               2687: \n[ 2808.193553] 28659     10.7 C/MHz   1722 mW   36.1 J   16.6 I/mJ    20.9 s\n               2802: \n[ 2836.417143] 29861     10.7 C/MHz   1993 mW   40.1 J   15.0 I/mJ    20.1 s\n               2914: \n[ 2863.876765] 31041     10.7 C/MHz   2392 mW   46.3 J   13.0 I/mJ    19.3 s\n               2943: \n[ 2891.142787] 31356     10.7 C/MHz   2468 mW   47.3 J   12.7 I/mJ    19.1 s\n               2970: \n[ 2918.206270] 31691     10.7 C/MHz   2505 mW   47.4 J   12.6 I/mJ    18.9 s\n               3015: \n[ 2944.996211] 32154     10.7 C/MHz   2656 mW   49.6 J   12.1 I/mJ    18.7 s\n               3105: \n[ 2971.261784] psci: CPU7 killed (polled 10 ms)\n[ 2971.269642] 33092     10.7 C/MHz   3028 mW   54.9 J   10.9 I/mJ    18.1 s\n               \n               \n               Benchmark finished!\n[ 2971.297984] \n               real\t49m29.500s\n               user\t42m50.856s\n               sys\t0m0.579s\n"
  },
  {
    "path": "results/zumapro/main/post_bench_interrupts.txt",
    "content": "           CPU0       \n 18:          0     GICv3  25 Level     vgic\n 20:          0     GICv3  27 Level     kvm guest vtimer\n 23:        476     GICv3  30 Level     arch_timer\n 25:          0  GICv3-23   0 Level     arm-pmu\n 26:          0  GICv3-23   1 Level     arm-pmu\n 27:          0     GICv3 109 Level     15200000.mbox\n 28:          0     GICv3 110 Level     15220000.mbox\n 29:          0     GICv3 111 Level     15240000.mbox\n 30:          3     GICv3 112 Level     15110000.acpm_ipc\n 31:          0     GICv3 666 Level     10840000.pinctrl\n 32:          0     GICv3 681 Level     10c40000.pinctrl\n 33:          0     GICv3 445 Level     12040000.pinctrl\n 34:          0     GICv3 464 Level     13040000.pinctrl\n 35:          0     GICv3 465 Level     13060000.pinctrl\n 96:          0      gpa4   1 Edge      gpio-keys: KEY_VOLUMEDOWN\n 97:          0      gpa6   2 Edge      gpio-keys: KEY_VOLUMEUP\n 98:          0      gpa4   0 Edge      gpio-keys: KEY_POWER\n107:     296865     GICv3 790 Level     exynos-mct\n108:          0     GICv3 791 Level     exynos-mct\n109:          0     GICv3 792 Level     exynos-mct\n110:          0     GICv3 793 Level     exynos-mct\n111:          0     GICv3 794 Level     exynos-mct\n112:          0     GICv3 795 Level     exynos-mct\n113:          0     GICv3 796 Level     exynos-mct\n114:          0     GICv3 797 Level     exynos-mct\n116:          0     GICv3 190 Level     20a80000.s2mpu_s0_aur\n117:          0     GICv3 200 Level     1a670000.s2mpu_s0_bw\n118:          0     GICv3 269 Level     29c50000.s2mpu_s0_cpucl0\n119:          0     GICv3 311 Level     19870000.s2mpu_s0_dpuf0\n120:          0     GICv3 338 Level     19c70000.s2mpu_s0_dpuf1\n121:          0     GICv3 365 Level     16c70000.s2mpu_s0_eh\n122:          0     GICv3 376 Level     1a8a0000.s2mpu_s0_g2d\n123:          0     GICv3 386 Level     1ee70000.s2mpu_s0_g3d\n124:          0     GICv3 405 Level     1d4f0000.s2mpu_s0_gdc\n125:          0     GICv3 419 Level     1d8a0000.s2mpu_s0_gse\n126:          0     GICv3 427 Level     11070000.s2mpu_s0_hsi0\n127:          0     GICv3 458 Level     12090000.s2mpu_s0_hsi1\n128:          0     GICv3 492 Level     131f0000.s2mpu_s0_hsi2\n129:          0     GICv3 522 Level     1c140000.s2mpu_s0_ispfe\n130:          0     GICv3 526 Level     1c180000.s2mpu_s1_ispfe\n131:          0     GICv3 530 Level     1c1c0000.s2mpu_s2_ispfe\n132:          0     GICv3 545 Level     1d0d0000.s2mpu_s0_mcsc\n133:          0     GICv3 552 Level     1a4a0000.s2mpu_s0_mfc\n134:          0     GICv3 865 Level     101f0000.s2mpu_s0_misc\n135:          0     GICv3 709 Level     1c4d0000.s2mpu_s0_rgbp\n136:          0     GICv3 713 Level     1c510000.s2mpu_s1_rgbp\n137:          0     GICv3 717 Level     1ccb0000.s2mpu_s0_tnr\n138:          0     GICv3 721 Level     1ccf0000.s2mpu_s1_tnr\n139:          0     GICv3 725 Level     1cd30000.s2mpu_s2_tnr\n140:          0     GICv3 767 Level     1a370000.s2mpu_s0_tpu\n141:          0     GICv3 774 Level     1c8a0000.s2mpu_s0_yuvp\n142:          0     GICv3 411 Level     16470000.s2mpu_s0_gsa\n143:          0     GICv3 249 Level     30000000.pmu\n144:          0     GICv3 840 Level     10110000.pdma0\n145:          0     GICv3 838 Level     10130000.pdma1\n146:          0     GICv3  13 Edge      trusty\n147:         47     GICv3 407 Level     gsa-mb-irq\n148:          0      gpa6   1 Edge      16490000.gsa-ns:gsa_gsc@0\n149:          0     GICv3 799 Level     10060000.watchdog_cl0\n150:          0     GICv3 800 Level     10070000.watchdog_cl1\n153:          0     GICv3 198 Level     1a640000.sysmmu\n154:          0     GICv3 199 Level     1a640000.sysmmu\n155:          0     GICv3 374 Level     1a870000.sysmmu\n156:          0     GICv3 375 Level     1a870000.sysmmu\n157:          0     GICv3 309 Level     19840000.sysmmu\n158:          0     GICv3 310 Level     19840000.sysmmu\n159:          0     GICv3 336 Level     19c40000.sysmmu\n160:          0     GICv3 337 Level     19c40000.sysmmu\n161:          0     GICv3 520 Level     1c110000.sysmmu\n162:          0     GICv3 521 Level     1c110000.sysmmu\n163:          0     GICv3 524 Level     1c150000.sysmmu\n164:          0     GICv3 525 Level     1c150000.sysmmu\n165:          0     GICv3 528 Level     1c190000.sysmmu\n166:          0     GICv3 529 Level     1c190000.sysmmu\n167:          0     GICv3 417 Level     1d870000.sysmmu\n168:          0     GICv3 418 Level     1d870000.sysmmu\n169:          0     GICv3 765 Level     1a340000.sysmmu\n170:          0     GICv3 766 Level     1a340000.sysmmu\n171:          0     GICv3 772 Level     1c870000.sysmmu\n172:          0     GICv3 773 Level     1c870000.sysmmu\n173:          0     GICv3 715 Level     1cc80000.sysmmu\n174:          0     GICv3 716 Level     1cc80000.sysmmu\n175:          0     GICv3 719 Level     1ccc0000.sysmmu\n176:          0     GICv3 720 Level     1ccc0000.sysmmu\n177:          0     GICv3 723 Level     1cd00000.sysmmu\n178:          0     GICv3 724 Level     1cd00000.sysmmu\n179:          0     GICv3 707 Level     1c4a0000.sysmmu\n180:          0     GICv3 708 Level     1c4a0000.sysmmu\n181:          0     GICv3 711 Level     1c4e0000.sysmmu\n182:          0     GICv3 712 Level     1c4e0000.sysmmu\n183:          0     GICv3 867 Level     101c0000.sysmmu\n184:          0     GICv3 868 Level     101c0000.sysmmu\n185:          0     GICv3 550 Level     1a470000.sysmmu\n186:          0     GICv3 551 Level     1a470000.sysmmu\n187:          0     GICv3 543 Level     1d0a0000.sysmmu\n188:          0     GICv3 544 Level     1d0a0000.sysmmu\n189:          0     GICv3 425 Level     11040000.sysmmu\n190:          0     GICv3 426 Level     11040000.sysmmu\n191:          0     GICv3 409 Level     16440000.sysmmu\n192:          0     GICv3 410 Level     16440000.sysmmu\n193:          0     GICv3 403 Level     1d4c0000.sysmmu\n194:          0     GICv3 404 Level     1d4c0000.sysmmu\n195:          0     GICv3 363 Level     16c40000.sysmmu\n196:          0     GICv3 364 Level     16c40000.sysmmu\n197:          0     GICv3 188 Level     20a50000.sysmmu\n198:          0     GICv3 189 Level     20a50000.sysmmu\n199:          0     GICv3 164 Level     19090000.sysmmu\n200:          0     GICv3 165 Level     19090000.sysmmu\n201:        171     GICv3 498 Level     ufshcd\n202:          0     GICv3 694 Level     spi-s3c64xx\n203:          0     GICv3 438 Level     spi-s3c64xx\n204:          0     GICv3 439 Level     spi-s3c64xx\n205:          0     GICv3 440 Level     spi-s3c64xx\n206:          0     GICv3 441 Level     spi-s3c64xx\n207:          0     GICv3 442 Level     spi-s3c64xx\n208:          0     GICv3 674 Level     10880000.hsi2c\n209:          0     GICv3 675 Level     10890000.hsi2c\n210:          0     GICv3 676 Level     108a0000.hsi2c\n211:        296     GICv3 677 Level     108b0000.hsi2c\n212:          0     GICv3 678 Level     108c0000.hsi2c\n213:          0     GICv3 679 Level     108d0000.hsi2c\n214:          0     GICv3 689 Level     10c90000.hsi2c\n215:          3     GICv3 690 Level     10ca0000.hsi2c\n258:          0   s2mpg15     Edge      PMIC_THERM_IRQ\n266:          0   s2mpg15     Edge      PMIC_THERM_IRQ\n274:          0     GICv3 106 Level     s2mpg14-irq\n285:          0   s2mpg14     Edge      rtc-alarm0\n296:          0   s2mpg14     Edge      BUCK_OCP_IRQ\n297:          0   s2mpg14     Edge      BUCK_OCP_IRQ\n298:          0   s2mpg14     Edge      BUCK_OCP_IRQ\n299:          0   s2mpg14     Edge      BUCK_OCP_IRQ\n300:          0   s2mpg14     Edge      BUCK_OCP_IRQ\n301:          0   s2mpg14     Edge      BUCK_OCP_IRQ\n302:          0   s2mpg14     Edge      BUCK_OCP_IRQ\n303:          0   s2mpg14     Edge      BUCK_OCP_IRQ\n304:          0   s2mpg14     Edge      BUCK_OCP_IRQ\n320:          0     GICv3 210 Level     arm_dsu_0\nIPI0:        64       Rescheduling interrupts\nIPI1:       294       Function call interrupts\nIPI2:         0       CPU stop interrupts\nIPI3:         0       CPU stop (for crash dump) interrupts\nIPI4:         0       Timer broadcast interrupts\nIPI5:        62       IRQ work interrupts\nIPI6:         0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/zumapro/main/pre_bench_interrupts.txt",
    "content": "           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       \n 18:          0          0          0          0          0          0          0          0     GICv3  25 Level     vgic\n 20:          0          0          0          0          0          0          0          0     GICv3  27 Level     kvm guest vtimer\n 23:        206         19         19         19         19         20         19         19     GICv3  30 Level     arch_timer\n 25:          0          0          0          0          0          0          0          0  GICv3-23   0 Level     arm-pmu\n 26:          0          0          0          0          0          0          0          0  GICv3-23   1 Level     arm-pmu\n 27:          0          0          0          0          0          0          0          0     GICv3 109 Level     15200000.mbox\n 28:          0          0          0          0          0          0          0          0     GICv3 110 Level     15220000.mbox\n 29:          0          0          0          0          0          0          0          0     GICv3 111 Level     15240000.mbox\n 30:          3          0          0          0          0          0          0          0     GICv3 112 Level     15110000.acpm_ipc\n 31:          0          0          0          0          0          0          0          0     GICv3 666 Level     10840000.pinctrl\n 32:          0          0          0          0          0          0          0          0     GICv3 681 Level     10c40000.pinctrl\n 33:          0          0          0          0          0          0          0          0     GICv3 445 Level     12040000.pinctrl\n 34:          0          0          0          0          0          0          0          0     GICv3 464 Level     13040000.pinctrl\n 35:          0          0          0          0          0          0          0          0     GICv3 465 Level     13060000.pinctrl\n 96:          0          0          0          0          0          0          0          0      gpa4   1 Edge      gpio-keys: KEY_VOLUMEDOWN\n 97:          0          0          0          0          0          0          0          0      gpa6   2 Edge      gpio-keys: KEY_VOLUMEUP\n 98:          0          0          0          0          0          0          0          0      gpa4   0 Edge      gpio-keys: KEY_POWER\n107:         12          0          0          0          0          0          0          0     GICv3 790 Level     exynos-mct\n108:          0          2          0          0          0          0          0          0     GICv3 791 Level     exynos-mct\n109:          0          0          2          0          0          0          0          0     GICv3 792 Level     exynos-mct\n110:          0          0          0          2          0          0          0          0     GICv3 793 Level     exynos-mct\n111:          0          0          0          0          2          0          0          0     GICv3 794 Level     exynos-mct\n112:          0          0          0          0          0          2          0          0     GICv3 795 Level     exynos-mct\n113:          0          0          0          0          0          0          2          0     GICv3 796 Level     exynos-mct\n114:          0          0          0          0          0          0          0          2     GICv3 797 Level     exynos-mct\n116:          0          0          0          0          0          0          0          0     GICv3 190 Level     20a80000.s2mpu_s0_aur\n117:          0          0          0          0          0          0          0          0     GICv3 200 Level     1a670000.s2mpu_s0_bw\n118:          0          0          0          0          0          0          0          0     GICv3 269 Level     29c50000.s2mpu_s0_cpucl0\n119:          0          0          0          0          0          0          0          0     GICv3 311 Level     19870000.s2mpu_s0_dpuf0\n120:          0          0          0          0          0          0          0          0     GICv3 338 Level     19c70000.s2mpu_s0_dpuf1\n121:          0          0          0          0          0          0          0          0     GICv3 365 Level     16c70000.s2mpu_s0_eh\n122:          0          0          0          0          0          0          0          0     GICv3 376 Level     1a8a0000.s2mpu_s0_g2d\n123:          0          0          0          0          0          0          0          0     GICv3 386 Level     1ee70000.s2mpu_s0_g3d\n124:          0          0          0          0          0          0          0          0     GICv3 405 Level     1d4f0000.s2mpu_s0_gdc\n125:          0          0          0          0          0          0          0          0     GICv3 419 Level     1d8a0000.s2mpu_s0_gse\n126:          0          0          0          0          0          0          0          0     GICv3 427 Level     11070000.s2mpu_s0_hsi0\n127:          0          0          0          0          0          0          0          0     GICv3 458 Level     12090000.s2mpu_s0_hsi1\n128:          0          0          0          0          0          0          0          0     GICv3 492 Level     131f0000.s2mpu_s0_hsi2\n129:          0          0          0          0          0          0          0          0     GICv3 522 Level     1c140000.s2mpu_s0_ispfe\n130:          0          0          0          0          0          0          0          0     GICv3 526 Level     1c180000.s2mpu_s1_ispfe\n131:          0          0          0          0          0          0          0          0     GICv3 530 Level     1c1c0000.s2mpu_s2_ispfe\n132:          0          0          0          0          0          0          0          0     GICv3 545 Level     1d0d0000.s2mpu_s0_mcsc\n133:          0          0          0          0          0          0          0          0     GICv3 552 Level     1a4a0000.s2mpu_s0_mfc\n134:          0          0          0          0          0          0          0          0     GICv3 865 Level     101f0000.s2mpu_s0_misc\n135:          0          0          0          0          0          0          0          0     GICv3 709 Level     1c4d0000.s2mpu_s0_rgbp\n136:          0          0          0          0          0          0          0          0     GICv3 713 Level     1c510000.s2mpu_s1_rgbp\n137:          0          0          0          0          0          0          0          0     GICv3 717 Level     1ccb0000.s2mpu_s0_tnr\n138:          0          0          0          0          0          0          0          0     GICv3 721 Level     1ccf0000.s2mpu_s1_tnr\n139:          0          0          0          0          0          0          0          0     GICv3 725 Level     1cd30000.s2mpu_s2_tnr\n140:          0          0          0          0          0          0          0          0     GICv3 767 Level     1a370000.s2mpu_s0_tpu\n141:          0          0          0          0          0          0          0          0     GICv3 774 Level     1c8a0000.s2mpu_s0_yuvp\n142:          0          0          0          0          0          0          0          0     GICv3 411 Level     16470000.s2mpu_s0_gsa\n143:          0          0          0          0          0          0          0          0     GICv3 249 Level     30000000.pmu\n144:          0          0          0          0          0          0          0          0     GICv3 840 Level     10110000.pdma0\n145:          0          0          0          0          0          0          0          0     GICv3 838 Level     10130000.pdma1\n146:          0          0          0          0          0          0          0          0     GICv3  13 Edge      trusty\n147:         47          0          0          0          0          0          0          0     GICv3 407 Level     gsa-mb-irq\n148:          0          0          0          0          0          0          0          0      gpa6   1 Edge      16490000.gsa-ns:gsa_gsc@0\n149:          0          0          0          0          0          0          0          0     GICv3 799 Level     10060000.watchdog_cl0\n150:          0          0          0          0          0          0          0          0     GICv3 800 Level     10070000.watchdog_cl1\n153:          0          0          0          0          0          0          0          0     GICv3 198 Level     1a640000.sysmmu\n154:          0          0          0          0          0          0          0          0     GICv3 199 Level     1a640000.sysmmu\n155:          0          0          0          0          0          0          0          0     GICv3 374 Level     1a870000.sysmmu\n156:          0          0          0          0          0          0          0          0     GICv3 375 Level     1a870000.sysmmu\n157:          0          0          0          0          0          0          0          0     GICv3 309 Level     19840000.sysmmu\n158:          0          0          0          0          0          0          0          0     GICv3 310 Level     19840000.sysmmu\n159:          0          0          0          0          0          0          0          0     GICv3 336 Level     19c40000.sysmmu\n160:          0          0          0          0          0          0          0          0     GICv3 337 Level     19c40000.sysmmu\n161:          0          0          0          0          0          0          0          0     GICv3 520 Level     1c110000.sysmmu\n162:          0          0          0          0          0          0          0          0     GICv3 521 Level     1c110000.sysmmu\n163:          0          0          0          0          0          0          0          0     GICv3 524 Level     1c150000.sysmmu\n164:          0          0          0          0          0          0          0          0     GICv3 525 Level     1c150000.sysmmu\n165:          0          0          0          0          0          0          0          0     GICv3 528 Level     1c190000.sysmmu\n166:          0          0          0          0          0          0          0          0     GICv3 529 Level     1c190000.sysmmu\n167:          0          0          0          0          0          0          0          0     GICv3 417 Level     1d870000.sysmmu\n168:          0          0          0          0          0          0          0          0     GICv3 418 Level     1d870000.sysmmu\n169:          0          0          0          0          0          0          0          0     GICv3 765 Level     1a340000.sysmmu\n170:          0          0          0          0          0          0          0          0     GICv3 766 Level     1a340000.sysmmu\n171:          0          0          0          0          0          0          0          0     GICv3 772 Level     1c870000.sysmmu\n172:          0          0          0          0          0          0          0          0     GICv3 773 Level     1c870000.sysmmu\n173:          0          0          0          0          0          0          0          0     GICv3 715 Level     1cc80000.sysmmu\n174:          0          0          0          0          0          0          0          0     GICv3 716 Level     1cc80000.sysmmu\n175:          0          0          0          0          0          0          0          0     GICv3 719 Level     1ccc0000.sysmmu\n176:          0          0          0          0          0          0          0          0     GICv3 720 Level     1ccc0000.sysmmu\n177:          0          0          0          0          0          0          0          0     GICv3 723 Level     1cd00000.sysmmu\n178:          0          0          0          0          0          0          0          0     GICv3 724 Level     1cd00000.sysmmu\n179:          0          0          0          0          0          0          0          0     GICv3 707 Level     1c4a0000.sysmmu\n180:          0          0          0          0          0          0          0          0     GICv3 708 Level     1c4a0000.sysmmu\n181:          0          0          0          0          0          0          0          0     GICv3 711 Level     1c4e0000.sysmmu\n182:          0          0          0          0          0          0          0          0     GICv3 712 Level     1c4e0000.sysmmu\n183:          0          0          0          0          0          0          0          0     GICv3 867 Level     101c0000.sysmmu\n184:          0          0          0          0          0          0          0          0     GICv3 868 Level     101c0000.sysmmu\n185:          0          0          0          0          0          0          0          0     GICv3 550 Level     1a470000.sysmmu\n186:          0          0          0          0          0          0          0          0     GICv3 551 Level     1a470000.sysmmu\n187:          0          0          0          0          0          0          0          0     GICv3 543 Level     1d0a0000.sysmmu\n188:          0          0          0          0          0          0          0          0     GICv3 544 Level     1d0a0000.sysmmu\n189:          0          0          0          0          0          0          0          0     GICv3 425 Level     11040000.sysmmu\n190:          0          0          0          0          0          0          0          0     GICv3 426 Level     11040000.sysmmu\n191:          0          0          0          0          0          0          0          0     GICv3 409 Level     16440000.sysmmu\n192:          0          0          0          0          0          0          0          0     GICv3 410 Level     16440000.sysmmu\n193:          0          0          0          0          0          0          0          0     GICv3 403 Level     1d4c0000.sysmmu\n194:          0          0          0          0          0          0          0          0     GICv3 404 Level     1d4c0000.sysmmu\n195:          0          0          0          0          0          0          0          0     GICv3 363 Level     16c40000.sysmmu\n196:          0          0          0          0          0          0          0          0     GICv3 364 Level     16c40000.sysmmu\n197:          0          0          0          0          0          0          0          0     GICv3 188 Level     20a50000.sysmmu\n198:          0          0          0          0          0          0          0          0     GICv3 189 Level     20a50000.sysmmu\n199:          0          0          0          0          0          0          0          0     GICv3 164 Level     19090000.sysmmu\n200:          0          0          0          0          0          0          0          0     GICv3 165 Level     19090000.sysmmu\n201:        171          0          0          0          0          0          0          0     GICv3 498 Level     ufshcd\n202:          0          0          0          0          0          0          0          0     GICv3 694 Level     spi-s3c64xx\n203:          0          0          0          0          0          0          0          0     GICv3 438 Level     spi-s3c64xx\n204:          0          0          0          0          0          0          0          0     GICv3 439 Level     spi-s3c64xx\n205:          0          0          0          0          0          0          0          0     GICv3 440 Level     spi-s3c64xx\n206:          0          0          0          0          0          0          0          0     GICv3 441 Level     spi-s3c64xx\n207:          0          0          0          0          0          0          0          0     GICv3 442 Level     spi-s3c64xx\n208:          0          0          0          0          0          0          0          0     GICv3 674 Level     10880000.hsi2c\n209:          0          0          0          0          0          0          0          0     GICv3 675 Level     10890000.hsi2c\n210:          0          0          0          0          0          0          0          0     GICv3 676 Level     108a0000.hsi2c\n211:        241          0          0          0          0          0          0          0     GICv3 677 Level     108b0000.hsi2c\n212:          0          0          0          0          0          0          0          0     GICv3 678 Level     108c0000.hsi2c\n213:          0          0          0          0          0          0          0          0     GICv3 679 Level     108d0000.hsi2c\n214:          0          0          0          0          0          0          0          0     GICv3 689 Level     10c90000.hsi2c\n215:          3          0          0          0          0          0          0          0     GICv3 690 Level     10ca0000.hsi2c\n258:          0          0          0          0          0          0          0          0   s2mpg15     Edge      PMIC_THERM_IRQ\n266:          0          0          0          0          0          0          0          0   s2mpg15     Edge      PMIC_THERM_IRQ\n274:          0          0          0          0          0          0          0          0     GICv3 106 Level     s2mpg14-irq\n285:          0          0          0          0          0          0          0          0   s2mpg14     Edge      rtc-alarm0\n296:          0          0          0          0          0          0          0          0   s2mpg14     Edge      BUCK_OCP_IRQ\n297:          0          0          0          0          0          0          0          0   s2mpg14     Edge      BUCK_OCP_IRQ\n298:          0          0          0          0          0          0          0          0   s2mpg14     Edge      BUCK_OCP_IRQ\n299:          0          0          0          0          0          0          0          0   s2mpg14     Edge      BUCK_OCP_IRQ\n300:          0          0          0          0          0          0          0          0   s2mpg14     Edge      BUCK_OCP_IRQ\n301:          0          0          0          0          0          0          0          0   s2mpg14     Edge      BUCK_OCP_IRQ\n302:          0          0          0          0          0          0          0          0   s2mpg14     Edge      BUCK_OCP_IRQ\n303:          0          0          0          0          0          0          0          0   s2mpg14     Edge      BUCK_OCP_IRQ\n304:          0          0          0          0          0          0          0          0   s2mpg14     Edge      BUCK_OCP_IRQ\n320:          0          0          0          0          0          0          0          0     GICv3 210 Level     arm_dsu_0\nIPI0:        43          1          0          0          1          0          0          0       Rescheduling interrupts\nIPI1:        70         29         30         30         32         33         33         34       Function call interrupts\nIPI2:         0          0          0          0          0          0          0          0       CPU stop interrupts\nIPI3:         0          0          0          0          0          0          0          0       CPU stop (for crash dump) interrupts\nIPI4:         0          0          0          0          0          0          0          0       Timer broadcast interrupts\nIPI5:         4          4          4          4          4          5          4          4       IRQ work interrupts\nIPI6:         0          0          0          0          0          0          0          0       CPU wake-up interrupts\nErr:          0\n"
  },
  {
    "path": "results/zumapro/main/processes.txt",
    "content": "PID   USER     TIME  COMMAND\n    1 root      0:01 bash /init\n    2 root      0:00 [kthreadd]\n    3 root      0:00 [rcu_gp]\n    4 root      0:00 [slub_flushwq]\n    5 root      0:00 [netns]\n    7 root      0:00 [kworker/0:0H-ev]\n    9 root      0:00 [mm_percpu_wq]\n   10 root      0:00 [kworker/u16:1-e]\n   11 root      0:00 [rcu_tasks_kthre]\n   12 root      0:00 [rcu_tasks_trace]\n   13 root      0:00 [ksoftirqd/0]\n   14 root      0:00 [rcu_preempt]\n   15 root      0:00 [rcuog/0]\n   16 root      0:00 [rcuop/0]\n   17 root      0:00 [rcub/0]\n   18 root      0:00 [rcu_exp_gp_kthr]\n   19 root      0:00 [rcu_exp_par_gp_]\n   20 root      0:00 [migration/0]\n   21 root      0:00 [idle_inject/0]\n   23 root      0:00 [cpuhp/0]\n   24 root      0:00 [cpuhp/1]\n   25 root      0:00 [idle_inject/1]\n   26 root      0:00 [migration/1]\n   27 root      0:00 [ksoftirqd/1]\n   28 root      0:00 [kworker/1:0-eve]\n   29 root      0:00 [kworker/1:0H]\n   30 root      0:00 [rcuop/1]\n   31 root      0:00 [cpuhp/2]\n   32 root      0:00 [idle_inject/2]\n   33 root      0:00 [migration/2]\n   34 root      0:00 [ksoftirqd/2]\n   35 root      0:00 [kworker/2:0-mm_]\n   36 root      0:00 [kworker/2:0H]\n   37 root      0:00 [rcuop/2]\n   38 root      0:00 [cpuhp/3]\n   39 root      0:00 [idle_inject/3]\n   40 root      0:00 [migration/3]\n   41 root      0:00 [ksoftirqd/3]\n   42 root      0:00 [kworker/3:0-mm_]\n   43 root      0:00 [kworker/3:0H]\n   44 root      0:00 [rcuop/3]\n   45 root      0:00 [cpuhp/4]\n   46 root      0:00 [idle_inject/4]\n   47 root      0:00 [migration/4]\n   48 root      0:00 [ksoftirqd/4]\n   49 root      0:00 [kworker/4:0-eve]\n   50 root      0:00 [kworker/4:0H-ev]\n   51 root      0:00 [rcuog/4]\n   52 root      0:00 [rcuop/4]\n   53 root      0:00 [cpuhp/5]\n   54 root      0:00 [idle_inject/5]\n   55 root      0:00 [migration/5]\n   56 root      0:00 [ksoftirqd/5]\n   57 root      0:00 [kworker/5:0-eve]\n   58 root      0:00 [kworker/5:0H]\n   59 root      0:00 [rcuop/5]\n   60 root      0:00 [cpuhp/6]\n   61 root      0:00 [idle_inject/6]\n   62 root      0:00 [migration/6]\n   63 root      0:00 [ksoftirqd/6]\n   65 root      0:00 [kworker/6:0H]\n   66 root      0:00 [rcuop/6]\n   67 root      0:00 [cpuhp/7]\n   68 root      0:00 [idle_inject/7]\n   69 root      0:00 [migration/7]\n   70 root      0:00 [ksoftirqd/7]\n   72 root      0:00 [kworker/7:0H-ev]\n   73 root      0:00 [rcuop/7]\n   74 root      0:00 [inet_frag_wq]\n   75 root      0:00 [kauditd]\n   76 root      0:00 [khungtaskd]\n   77 root      0:00 [oom_reaper]\n   78 root      0:00 [writeback]\n   79 root      0:00 [kcompactd0]\n   80 root      0:00 [khugepaged]\n   81 root      0:00 [kblockd]\n   82 root      0:00 [blkcg_punt_bio]\n   83 root      0:00 [edac-poller]\n   84 root      0:00 [devfreq_wq]\n   85 root      0:00 [watchdogd]\n   86 root      0:00 [kworker/5:1-eve]\n   87 root      0:00 [kworker/0:1H-kb]\n   88 root      0:00 [kworker/u16:2-e]\n   89 root      0:00 [kswapd0]\n   90 root      0:00 [kworker/u17:0-t]\n   91 root      0:00 [erofs_worker/0]\n   99 root      0:00 [kthrotld]\n  100 root      0:00 [dmabuf-deferred]\n  101 root      0:00 [nvme-wq]\n  102 root      0:00 [nvme-reset-wq]\n  103 root      0:00 [nvme-delete-wq]\n  104 root      0:00 [uas]\n  105 root      0:00 [dm_bufio_cache]\n  106 root      0:00 [hwrng]\n  107 root      0:00 [mld]\n  108 root      0:00 [ipv6_addrconf]\n  111 root      0:00 [irq/30-15110000]\n  112 root      0:00 [acpm_log]\n  115 root      0:00 [trusty-nop-0]\n  116 root      0:00 [trusty-nop-1]\n  117 root      0:00 [trusty-nop-2]\n  118 root      0:00 [trusty-nop-3]\n  119 root      0:00 [trusty-nop-4]\n  120 root      0:00 [trusty-nop-5]\n  121 root      0:00 [trusty-nop-6]\n  122 root      0:00 [trusty-nop-7]\n  123 root      0:00 [kdbgd]\n  124 root      0:00 [perf_mon_update]\n  125 root      0:00 [PT_resize]\n  127 root      0:00 [kworker/1:1-eve]\n  128 root      0:00 [kworker/3:1-eve]\n  129 root      0:00 [kworker/2:1-eve]\n  130 root      0:00 [kworker/6:1-eve]\n  132 root      0:00 [kworker/7:1-eve]\n  133 root      0:00 [irq/153-1a64000]\n  135 root      0:00 [irq/154-1a64000]\n  137 root      0:00 [irq/155-1a87000]\n  139 root      0:00 [irq/156-1a87000]\n  141 root      0:00 [irq/157-1984000]\n  143 root      0:00 [irq/158-1984000]\n  145 root      0:00 [irq/159-19c4000]\n  147 root      0:00 [irq/160-19c4000]\n  149 root      0:00 [irq/161-1c11000]\n  151 root      0:00 [irq/162-1c11000]\n  153 root      0:00 [irq/163-1c15000]\n  155 root      0:00 [irq/164-1c15000]\n  157 root      0:00 [irq/165-1c19000]\n  159 root      0:00 [irq/166-1c19000]\n  161 root      0:00 [irq/167-1d87000]\n  163 root      0:00 [irq/168-1d87000]\n  165 root      0:00 [irq/169-1a34000]\n  167 root      0:00 [irq/170-1a34000]\n  169 root      0:00 [irq/171-1c87000]\n  171 root      0:00 [irq/172-1c87000]\n  173 root      0:00 [irq/173-1cc8000]\n  175 root      0:00 [irq/174-1cc8000]\n  177 root      0:00 [irq/175-1ccc000]\n  178 root      0:00 [kworker/0:27-ev]\n  179 root      0:00 [irq/176-1ccc000]\n  181 root      0:00 [irq/177-1cd0000]\n  183 root      0:00 [irq/178-1cd0000]\n  184 root      0:00 [kworker/0:30-rc]\n  185 root      0:00 [irq/179-1c4a000]\n  187 root      0:00 [irq/180-1c4a000]\n  189 root      0:00 [irq/181-1c4e000]\n  191 root      0:00 [irq/182-1c4e000]\n  193 root      0:00 [irq/183-101c000]\n  195 root      0:00 [irq/184-101c000]\n  196 root      0:00 [irq/185-1a47000]\n  197 root      0:00 [irq/186-1a47000]\n  198 root      0:00 [irq/187-1d0a000]\n  199 root      0:00 [irq/188-1d0a000]\n  200 root      0:00 [irq/189-1104000]\n  201 root      0:00 [irq/190-1104000]\n  202 root      0:00 [irq/191-1644000]\n  203 root      0:00 [irq/192-1644000]\n  204 root      0:00 [irq/193-1d4c000]\n  205 root      0:00 [irq/194-1d4c000]\n  206 root      0:00 [irq/195-16c4000]\n  207 root      0:00 [irq/196-16c4000]\n  208 root      0:00 [irq/197-20a5000]\n  209 root      0:00 [irq/198-20a5000]\n  210 root      0:00 [irq/199-1909000]\n  211 root      0:00 [irq/200-1909000]\n  212 root      0:04 [simpleinteracti]\n  213 root      0:00 [simpleinteracti]\n  214 root      0:00 [simpleinteracti]\n  215 root      0:00 [simpleinteracti]\n  216 root      0:00 [simpleinteracti]\n  217 root      0:00 [simpleinteracti]\n  218 root      0:00 [simpleinteracti]\n  219 root      0:00 [simpleinteracti]\n  220 root      0:00 [simpleinteracti]\n  221 root      0:00 [simpleinteracti]\n  222 root      0:00 [scsi_eh_0]\n  223 root      0:00 [scsi_tmf_0]\n  224 root      0:00 [ufs_mgc_hibern8]\n  225 root      0:00 [ufs_eh_wq_0]\n  226 root      0:00 [ufs_clk_gating_]\n  227 root      0:00 [spi15]\n  228 root      0:00 [spi18]\n  229 root      0:00 [spi19]\n  230 root      0:00 [spi20]\n  231 root      0:00 [spi21]\n  232 root      0:00 [spi22]\n  233 root      0:00 [kworker/u16:3-e]\n  234 root      0:00 [slg51002wq]\n  235 root      0:00 [irq/274-s2mpg14]\n  236 root      0:00 [kworker/u17:1]\n  237 root      0:00 [wq_odpm]\n  238 root      0:00 [wq_odpm]\n  249 root      0:00 [kworker/6:2]\n  250 root      0:00 [kworker/7:2-eve]\n  253 root      0:00 [kworker/4:1H]\n  265 root      0:00 [kworker/7:1H]\n  283 root      0:00 [kworker/4:2]\n  302 root      0:00 [kworker/7:0]\n  346 root      0:00 ps -A\n"
  },
  {
    "path": "results/zumapro/main/results.csv",
    "content": "CPU,Frequency (kHz),CoreMarks (iter/s),CoreMarks/MHz,Power (mW),Energy (J),ULPMark-CM (iter/mJ),Time (s)\r\n1,820000,3836.071862,4.67813641707317,56.37257471631772,8.81808,68.04202275325241,156.425\r\n1,955000,4475.207351,4.686080995811518,66.15252783640472,8.870194,67.64226351757358,134.087\r\n1,1098000,5135.095812,4.676772142076502,76.51730334771,8.941505999999999,67.1027900669082,116.856\r\n1,1197000,5608.315262,4.685309324979115,83.33593465237342,8.916694999999999,67.28950580904696,106.997\r\n1,1328000,6229.753302,4.691079293674699,96.48072670646249,9.293505999999999,64.56121080677195,96.325\r\n1,1425000,6681.812107,4.688990952280702,107.13505327973812,9.621692,62.359094429545245,89.809\r\n1,1548000,7255.489987,4.687009035529716,122.03274129780314,10.093206,59.44592828086537,82.709\r\n1,1696000,7942.496327,4.683075664504717,140.79205876513797,10.637544,56.40399701284432,75.555\r\n1,1849000,8690.362388,4.700033741481882,175.52903440685822,12.121333,49.49950636617276,69.056\r\n1,1950000,9137.566057,4.685931311282051,204.40861197393264,13.42474,44.693603004601954,65.676\r\n4,357000,3162.522006,8.85860505882353,35.030258310362456,6.646395999999999,90.27448861006778,189.733\r\n4,578000,5131.450661,8.877942320069204,56.463060674733825,6.602507999999999,90.87455857683172,116.935\r\n4,648000,5748.447919,8.871061603395063,63.520227614549704,6.630686,90.4883748076745,104.387\r\n4,787000,6979.828296,8.86890507750953,77.86237219527516,6.693906,89.63376539796047,85.971\r\n4,910000,8066.142367,8.863892710989012,92.55198602056589,6.8854049999999996,87.14084356693616,74.395\r\n4,1065000,9456.413813,8.879261796244132,113.61950235585181,7.21018,83.21567561420103,63.459\r\n4,1221000,10835.018781,8.873889255528256,140.59622641509435,7.786922,77.05226789224292,55.385\r\n4,1328000,11787.819253,8.876369919427711,160.82724076292993,8.187554,73.28195942280198,50.909\r\n4,1418000,12589.173311,8.878119401269394,176.18636458988883,8.398804,71.43874294482882,47.67\r\n4,1549000,13746.964212,8.874734804389929,205.54183942274653,8.972929,66.86779757200799,43.655\r\n4,1795000,15935.408478,8.877664890250696,452.43712495353407,17.039687,35.21191439725389,37.662\r\n4,1945000,17258.737236,8.873386753727507,377.2041180192098,13.116896,45.742529330109804,34.774\r\n4,2130000,18910.145293,8.878002484976527,469.57440841919527,14.902883,40.26066634221043,31.737\r\n4,2245000,19939.516799,8.8817446766147,534.2412876648616,16.081197,37.31065541949396,30.101\r\n4,2367000,21050.415746,8.893289288550907,620.3709796219003,17.687397,33.92245902548577,28.511\r\n4,2450000,21754.894851,8.87954891877551,683.6341295443837,18.860782,31.812042575965304,27.589\r\n4,2600000,23093.799315,8.88223050576923,861.568966180601,22.393039,26.79404077311704,25.991\r\n7,700000,7476.728682,10.681040974285715,158.8411826268969,12.748911,47.06284324990582,80.262\r\n7,1164000,12403.613586,10.656025417525774,284.6044021907616,13.770584000000001,43.571136852293264,48.385\r\n7,1396000,14883.905537,10.661823450573067,381.95362563237774,15.401898,38.95623773121988,40.324\r\n7,1557000,16613.135452,10.66996496596018,468.03836253425226,16.909758,35.48247112702618,36.129\r\n7,1745000,18621.395984,10.671287096848136,575.715570998666,18.55704,32.33274272189961,32.233\r\n7,1885000,20087.716361,10.656613454111405,673.3314257028112,20.119143,29.822343824485962,29.88\r\n7,1999000,21263.023602,10.636830216108054,752.8770413404654,21.252966,28.231353684939787,28.229\r\n7,2147000,22889.40602,10.661111327433627,889.266577693041,23.321016,25.727867087780396,26.225\r\n7,2294000,24451.870568,10.659054301656495,1052.568350305499,25.840553,23.21931732652935,24.55\r\n7,2363000,25168.840975,10.65122343419382,1150.7202935010482,27.444679,21.862161331892423,23.85\r\n7,2499000,26641.800986,10.660984788315325,1370.6686934138115,30.883907,19.42759379504672,22.532\r\n7,2687000,28658.769583,10.665712535541497,1721.7664104645057,36.065841,16.636240369384428,20.947\r\n7,2802000,29861.145673,10.657082681299071,1992.9681157978512,40.066631,14.975054927877514,20.104\r\n7,2914000,31041.440323,10.65251898524365,2392.082312186547,46.265264,12.968692883715091,19.341\r\n7,2943000,31356.153645,10.654486457696228,2468.121794537003,47.257127999999994,12.696497341099528,19.147\r\n7,2970000,31690.69878,10.670268949494949,2504.5911322248617,47.449479,12.645028199361262,18.945\r\n7,3015000,32154.340836,10.664789663681592,2655.612179315516,49.582935,12.10093755038906,18.671\r\n7,3105000,33092.493519,10.657807896618358,3027.664884528468,54.930924,10.922809163013532,18.143\r\n"
  },
  {
    "path": "results/zumapro/main/results.json",
    "content": "{\"version\": 1, \"total_elapsed_sec\": 2968.728042602539, \"cpus\": {\"1\": {\"freqs\": {\"820000\": {\"active\": {\"elapsed_sec\": 156.425, \"elapsed_ns\": 156425000000.0, \"power_mean\": 56.37257471631772, \"energy_millijoules\": 8818.08, \"energy_joules\": 8.81808, \"coremark_score\": 3836.071862, \"coremarks_per_mhz\": 4.67813641707317, \"ulpmark_cm_score\": 68.04202275325241}, \"idle\": {\"elapsed_sec\": 5.011, \"elapsed_ns\": 5011000000.0, \"power_mean\": 19.79305527838755, \"energy_millijoules\": 99.183, \"energy_joules\": 0.09918300000000001}}, \"955000\": {\"active\": {\"elapsed_sec\": 134.087, \"elapsed_ns\": 134087000000.0, \"power_mean\": 66.15252783640472, \"energy_millijoules\": 8870.194, \"energy_joules\": 8.870194, \"coremark_score\": 4475.207351, \"coremarks_per_mhz\": 4.686080995811518, \"ulpmark_cm_score\": 67.64226351757358}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 20.911377245508984, \"energy_millijoules\": 104.766, \"energy_joules\": 0.10476600000000001}}, \"1098000\": {\"active\": {\"elapsed_sec\": 116.856, \"elapsed_ns\": 116856000000.0, \"power_mean\": 76.51730334771, \"energy_millijoules\": 8941.506, \"energy_joules\": 8.941505999999999, \"coremark_score\": 5135.095812, \"coremarks_per_mhz\": 4.676772142076502, \"ulpmark_cm_score\": 67.1027900669082}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 21.53453093812375, \"energy_millijoules\": 107.888, \"energy_joules\": 0.10788800000000001}}, \"1197000\": {\"active\": {\"elapsed_sec\": 106.997, \"elapsed_ns\": 106997000000.0, \"power_mean\": 83.33593465237342, \"energy_millijoules\": 8916.695, \"energy_joules\": 8.916694999999999, \"coremark_score\": 5608.315262, \"coremarks_per_mhz\": 4.685309324979115, \"ulpmark_cm_score\": 67.28950580904696}, \"idle\": {\"elapsed_sec\": 5.005, \"elapsed_ns\": 5005000000.0, \"power_mean\": 21.997202797202796, \"energy_millijoules\": 110.096, \"energy_joules\": 0.110096}}, \"1328000\": {\"active\": {\"elapsed_sec\": 96.325, \"elapsed_ns\": 96325000000.0, \"power_mean\": 96.48072670646249, \"energy_millijoules\": 9293.506, \"energy_joules\": 9.293505999999999, \"coremark_score\": 6229.753302, \"coremarks_per_mhz\": 4.691079293674699, \"ulpmark_cm_score\": 64.56121080677195}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 23.557684630738525, \"energy_millijoules\": 118.024, \"energy_joules\": 0.118024}}, \"1425000\": {\"active\": {\"elapsed_sec\": 89.809, \"elapsed_ns\": 89809000000.0, \"power_mean\": 107.13505327973812, \"energy_millijoules\": 9621.692, \"energy_joules\": 9.621692, \"coremark_score\": 6681.812107, \"coremarks_per_mhz\": 4.688990952280702, \"ulpmark_cm_score\": 62.359094429545245}, \"idle\": {\"elapsed_sec\": 5.006, \"elapsed_ns\": 5006000000.0, \"power_mean\": 24.749101078705554, \"energy_millijoules\": 123.894, \"energy_joules\": 0.123894}}, \"1548000\": {\"active\": {\"elapsed_sec\": 82.709, \"elapsed_ns\": 82709000000.0, \"power_mean\": 122.03274129780314, \"energy_millijoules\": 10093.206, \"energy_joules\": 10.093206, \"coremark_score\": 7255.489987, \"coremarks_per_mhz\": 4.687009035529716, \"ulpmark_cm_score\": 59.44592828086537}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 26.803393213572853, \"energy_millijoules\": 134.285, \"energy_joules\": 0.134285}}, \"1696000\": {\"active\": {\"elapsed_sec\": 75.555, \"elapsed_ns\": 75555000000.0, \"power_mean\": 140.79205876513797, \"energy_millijoules\": 10637.544, \"energy_joules\": 10.637544, \"coremark_score\": 7942.496327, \"coremarks_per_mhz\": 4.683075664504717, \"ulpmark_cm_score\": 56.40399701284432}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 28.26367265469062, \"energy_millijoules\": 141.601, \"energy_joules\": 0.141601}}, \"1849000\": {\"active\": {\"elapsed_sec\": 69.056, \"elapsed_ns\": 69056000000.0, \"power_mean\": 175.52903440685822, \"energy_millijoules\": 12121.333, \"energy_joules\": 12.121333, \"coremark_score\": 8690.362388, \"coremarks_per_mhz\": 4.700033741481882, \"ulpmark_cm_score\": 49.49950636617276}, \"idle\": {\"elapsed_sec\": 5.004, \"elapsed_ns\": 5004000000.0, \"power_mean\": 33.009192645883296, \"energy_millijoules\": 165.178, \"energy_joules\": 0.165178}}, \"1950000\": {\"active\": {\"elapsed_sec\": 65.676, \"elapsed_ns\": 65676000000.0, \"power_mean\": 204.40861197393264, \"energy_millijoules\": 13424.74, \"energy_joules\": 13.42474, \"coremark_score\": 9137.566057, \"coremarks_per_mhz\": 4.685931311282051, \"ulpmark_cm_score\": 44.693603004601954}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 38.704790419161675, \"energy_millijoules\": 193.911, \"energy_joules\": 0.193911}}}}, \"4\": {\"freqs\": {\"357000\": {\"active\": {\"elapsed_sec\": 189.733, \"elapsed_ns\": 189733000000.0, \"power_mean\": 35.030258310362456, \"energy_millijoules\": 6646.396, \"energy_joules\": 6.646395999999999, \"coremark_score\": 3162.522006, \"coremarks_per_mhz\": 8.85860505882353, \"ulpmark_cm_score\": 90.27448861006778}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 1.5303393213572853, \"energy_millijoules\": 7.667, \"energy_joules\": 0.007667}}, \"578000\": {\"active\": {\"elapsed_sec\": 116.935, \"elapsed_ns\": 116935000000.0, \"power_mean\": 56.463060674733825, \"energy_millijoules\": 6602.508, \"energy_joules\": 6.602507999999999, \"coremark_score\": 5131.450661, \"coremarks_per_mhz\": 8.877942320069204, \"ulpmark_cm_score\": 90.87455857683172}, \"idle\": {\"elapsed_sec\": 5.007, \"elapsed_ns\": 5007000000.0, \"power_mean\": 1.524066307169962, \"energy_millijoules\": 7.631, \"energy_joules\": 0.007631000000000001}}, \"648000\": {\"active\": {\"elapsed_sec\": 104.387, \"elapsed_ns\": 104387000000.0, \"power_mean\": 63.520227614549704, \"energy_millijoules\": 6630.686, \"energy_joules\": 6.630686, \"coremark_score\": 5748.447919, \"coremarks_per_mhz\": 8.871061603395063, \"ulpmark_cm_score\": 90.4883748076745}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 1.536127744510978, \"energy_millijoules\": 7.696, \"energy_joules\": 0.007696}}, \"787000\": {\"active\": {\"elapsed_sec\": 85.971, \"elapsed_ns\": 85971000000.0, \"power_mean\": 77.86237219527516, \"energy_millijoules\": 6693.906, \"energy_joules\": 6.693906, \"coremark_score\": 6979.828296, \"coremarks_per_mhz\": 8.86890507750953, \"ulpmark_cm_score\": 89.63376539796047}, \"idle\": {\"elapsed_sec\": 5.007, \"elapsed_ns\": 5007000000.0, \"power_mean\": 1.5340523267425603, \"energy_millijoules\": 7.681, \"energy_joules\": 0.007681}}, \"910000\": {\"active\": {\"elapsed_sec\": 74.395, \"elapsed_ns\": 74395000000.0, \"power_mean\": 92.55198602056589, \"energy_millijoules\": 6885.405, \"energy_joules\": 6.8854049999999996, \"coremark_score\": 8066.142367, \"coremarks_per_mhz\": 8.863892710989012, \"ulpmark_cm_score\": 87.14084356693616}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 1.524256338590537, \"energy_millijoules\": 7.635, \"energy_joules\": 0.007634999999999999}}, \"1065000\": {\"active\": {\"elapsed_sec\": 63.459, \"elapsed_ns\": 63459000000.0, \"power_mean\": 113.61950235585181, \"energy_millijoules\": 7210.18, \"energy_joules\": 7.21018, \"coremark_score\": 9456.413813, \"coremarks_per_mhz\": 8.879261796244132, \"ulpmark_cm_score\": 83.21567561420103}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 1.5417165668662676, \"energy_millijoules\": 7.724, \"energy_joules\": 0.007724}}, \"1221000\": {\"active\": {\"elapsed_sec\": 55.385, \"elapsed_ns\": 55385000000.0, \"power_mean\": 140.59622641509435, \"energy_millijoules\": 7786.922, \"energy_joules\": 7.786922, \"coremark_score\": 10835.018781, \"coremarks_per_mhz\": 8.873889255528256, \"ulpmark_cm_score\": 77.05226789224292}, \"idle\": {\"elapsed_sec\": 5.005, \"elapsed_ns\": 5005000000.0, \"power_mean\": 1.5302697302697303, \"energy_millijoules\": 7.659, \"energy_joules\": 0.007659}}, \"1328000\": {\"active\": {\"elapsed_sec\": 50.909, \"elapsed_ns\": 50909000000.0, \"power_mean\": 160.82724076292993, \"energy_millijoules\": 8187.554, \"energy_joules\": 8.187554, \"coremark_score\": 11787.819253, \"coremarks_per_mhz\": 8.876369919427711, \"ulpmark_cm_score\": 73.28195942280198}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 1.511377245508982, \"energy_millijoules\": 7.572, \"energy_joules\": 0.007572}}, \"1418000\": {\"active\": {\"elapsed_sec\": 47.67, \"elapsed_ns\": 47670000000.0, \"power_mean\": 176.18636458988883, \"energy_millijoules\": 8398.804, \"energy_joules\": 8.398804, \"coremark_score\": 12589.173311, \"coremarks_per_mhz\": 8.878119401269394, \"ulpmark_cm_score\": 71.43874294482882}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 1.512375249500998, \"energy_millijoules\": 7.577, \"energy_joules\": 0.0075769999999999995}}, \"1549000\": {\"active\": {\"elapsed_sec\": 43.655, \"elapsed_ns\": 43655000000.0, \"power_mean\": 205.54183942274653, \"energy_millijoules\": 8972.929, \"energy_joules\": 8.972929, \"coremark_score\": 13746.964212, \"coremarks_per_mhz\": 8.874734804389929, \"ulpmark_cm_score\": 66.86779757200799}, \"idle\": {\"elapsed_sec\": 5.011, \"elapsed_ns\": 5011000000.0, \"power_mean\": 1.5222510476950708, \"energy_millijoules\": 7.628, \"energy_joules\": 0.007628}}, \"1795000\": {\"active\": {\"elapsed_sec\": 37.662, \"elapsed_ns\": 37662000000.0, \"power_mean\": 452.43712495353407, \"energy_millijoules\": 17039.687, \"energy_joules\": 17.039687, \"coremark_score\": 15935.408478, \"coremarks_per_mhz\": 8.877664890250696, \"ulpmark_cm_score\": 35.21191439725389}, \"idle\": {\"elapsed_sec\": 5.005, \"elapsed_ns\": 5005000000.0, \"power_mean\": 1.5208791208791208, \"energy_millijoules\": 7.612, \"energy_joules\": 0.007612}}, \"1945000\": {\"active\": {\"elapsed_sec\": 34.774, \"elapsed_ns\": 34774000000.0, \"power_mean\": 377.2041180192098, \"energy_millijoules\": 13116.896, \"energy_joules\": 13.116896, \"coremark_score\": 17258.737236, \"coremarks_per_mhz\": 8.873386753727507, \"ulpmark_cm_score\": 45.742529330109804}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 1.5139720558882235, \"energy_millijoules\": 7.585, \"energy_joules\": 0.007585}}, \"2130000\": {\"active\": {\"elapsed_sec\": 31.737, \"elapsed_ns\": 31737000000.0, \"power_mean\": 469.57440841919527, \"energy_millijoules\": 14902.883, \"energy_joules\": 14.902883, \"coremark_score\": 18910.145293, \"coremarks_per_mhz\": 8.878002484976527, \"ulpmark_cm_score\": 40.26066634221043}, \"idle\": {\"elapsed_sec\": 5.006, \"elapsed_ns\": 5006000000.0, \"power_mean\": 1.5075908909308828, \"energy_millijoules\": 7.547, \"energy_joules\": 0.007547}}, \"2245000\": {\"active\": {\"elapsed_sec\": 30.101, \"elapsed_ns\": 30101000000.0, \"power_mean\": 534.2412876648616, \"energy_millijoules\": 16081.197, \"energy_joules\": 16.081197, \"coremark_score\": 19939.516799, \"coremarks_per_mhz\": 8.8817446766147, \"ulpmark_cm_score\": 37.31065541949396}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 1.513572854291417, \"energy_millijoules\": 7.583, \"energy_joules\": 0.007583}}, \"2367000\": {\"active\": {\"elapsed_sec\": 28.511, \"elapsed_ns\": 28511000000.0, \"power_mean\": 620.3709796219003, \"energy_millijoules\": 17687.397, \"energy_joules\": 17.687397, \"coremark_score\": 21050.415746, \"coremarks_per_mhz\": 8.893289288550907, \"ulpmark_cm_score\": 33.92245902548577}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 1.531936127744511, \"energy_millijoules\": 7.675, \"energy_joules\": 0.0076749999999999995}}, \"2450000\": {\"active\": {\"elapsed_sec\": 27.589, \"elapsed_ns\": 27589000000.0, \"power_mean\": 683.6341295443837, \"energy_millijoules\": 18860.782, \"energy_joules\": 18.860782, \"coremark_score\": 21754.894851, \"coremarks_per_mhz\": 8.87954891877551, \"ulpmark_cm_score\": 31.812042575965304}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 1.530938123752495, \"energy_millijoules\": 7.67, \"energy_joules\": 0.00767}}, \"2600000\": {\"active\": {\"elapsed_sec\": 25.991, \"elapsed_ns\": 25991000000.0, \"power_mean\": 861.568966180601, \"energy_millijoules\": 22393.039, \"energy_joules\": 22.393039, \"coremark_score\": 23093.799315, \"coremarks_per_mhz\": 8.88223050576923, \"ulpmark_cm_score\": 26.79404077311704}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 1.5398283090437213, \"energy_millijoules\": 7.713, \"energy_joules\": 0.007713}}}}, \"7\": {\"freqs\": {\"700000\": {\"active\": {\"elapsed_sec\": 80.262, \"elapsed_ns\": 80262000000.0, \"power_mean\": 158.8411826268969, \"energy_millijoules\": 12748.911, \"energy_joules\": 12.748911, \"coremark_score\": 7476.728682, \"coremarks_per_mhz\": 10.681040974285715, \"ulpmark_cm_score\": 47.06284324990582}, \"idle\": {\"elapsed_sec\": 5.011, \"elapsed_ns\": 5011000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1164000\": {\"active\": {\"elapsed_sec\": 48.385, \"elapsed_ns\": 48385000000.0, \"power_mean\": 284.6044021907616, \"energy_millijoules\": 13770.584, \"energy_joules\": 13.770584000000001, \"coremark_score\": 12403.613586, \"coremarks_per_mhz\": 10.656025417525774, \"ulpmark_cm_score\": 43.571136852293264}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1396000\": {\"active\": {\"elapsed_sec\": 40.324, \"elapsed_ns\": 40324000000.0, \"power_mean\": 381.95362563237774, \"energy_millijoules\": 15401.898, \"energy_joules\": 15.401898, \"coremark_score\": 14883.905537, \"coremarks_per_mhz\": 10.661823450573067, \"ulpmark_cm_score\": 38.95623773121988}, \"idle\": {\"elapsed_sec\": 5.006, \"elapsed_ns\": 5006000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1557000\": {\"active\": {\"elapsed_sec\": 36.129, \"elapsed_ns\": 36129000000.0, \"power_mean\": 468.03836253425226, \"energy_millijoules\": 16909.758, \"energy_joules\": 16.909758, \"coremark_score\": 16613.135452, \"coremarks_per_mhz\": 10.66996496596018, \"ulpmark_cm_score\": 35.48247112702618}, \"idle\": {\"elapsed_sec\": 5.006, \"elapsed_ns\": 5006000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1745000\": {\"active\": {\"elapsed_sec\": 32.233, \"elapsed_ns\": 32233000000.0, \"power_mean\": 575.715570998666, \"energy_millijoules\": 18557.04, \"energy_joules\": 18.55704, \"coremark_score\": 18621.395984, \"coremarks_per_mhz\": 10.671287096848136, \"ulpmark_cm_score\": 32.33274272189961}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1885000\": {\"active\": {\"elapsed_sec\": 29.88, \"elapsed_ns\": 29880000000.0, \"power_mean\": 673.3314257028112, \"energy_millijoules\": 20119.143, \"energy_joules\": 20.119143, \"coremark_score\": 20087.716361, \"coremarks_per_mhz\": 10.656613454111405, \"ulpmark_cm_score\": 29.822343824485962}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"1999000\": {\"active\": {\"elapsed_sec\": 28.229, \"elapsed_ns\": 28229000000.0, \"power_mean\": 752.8770413404654, \"energy_millijoules\": 21252.966, \"energy_joules\": 21.252966, \"coremark_score\": 21263.023602, \"coremarks_per_mhz\": 10.636830216108054, \"ulpmark_cm_score\": 28.231353684939787}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2147000\": {\"active\": {\"elapsed_sec\": 26.225, \"elapsed_ns\": 26225000000.0, \"power_mean\": 889.266577693041, \"energy_millijoules\": 23321.016, \"energy_joules\": 23.321016, \"coremark_score\": 22889.40602, \"coremarks_per_mhz\": 10.661111327433627, \"ulpmark_cm_score\": 25.727867087780396}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2294000\": {\"active\": {\"elapsed_sec\": 24.55, \"elapsed_ns\": 24550000000.0, \"power_mean\": 1052.568350305499, \"energy_millijoules\": 25840.553, \"energy_joules\": 25.840553, \"coremark_score\": 24451.870568, \"coremarks_per_mhz\": 10.659054301656495, \"ulpmark_cm_score\": 23.21931732652935}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2363000\": {\"active\": {\"elapsed_sec\": 23.85, \"elapsed_ns\": 23850000000.0, \"power_mean\": 1150.7202935010482, \"energy_millijoules\": 27444.679, \"energy_joules\": 27.444679, \"coremark_score\": 25168.840975, \"coremarks_per_mhz\": 10.65122343419382, \"ulpmark_cm_score\": 21.862161331892423}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2499000\": {\"active\": {\"elapsed_sec\": 22.532, \"elapsed_ns\": 22532000000.0, \"power_mean\": 1370.6686934138115, \"energy_millijoules\": 30883.907, \"energy_joules\": 30.883907, \"coremark_score\": 26641.800986, \"coremarks_per_mhz\": 10.660984788315325, \"ulpmark_cm_score\": 19.42759379504672}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2687000\": {\"active\": {\"elapsed_sec\": 20.947, \"elapsed_ns\": 20947000000.0, \"power_mean\": 1721.7664104645057, \"energy_millijoules\": 36065.841, \"energy_joules\": 36.065841, \"coremark_score\": 28658.769583, \"coremarks_per_mhz\": 10.665712535541497, \"ulpmark_cm_score\": 16.636240369384428}, \"idle\": {\"elapsed_sec\": 5.01, \"elapsed_ns\": 5010000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2802000\": {\"active\": {\"elapsed_sec\": 20.104, \"elapsed_ns\": 20104000000.0, \"power_mean\": 1992.9681157978512, \"energy_millijoules\": 40066.631, \"energy_joules\": 40.066631, \"coremark_score\": 29861.145673, \"coremarks_per_mhz\": 10.657082681299071, \"ulpmark_cm_score\": 14.975054927877514}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2914000\": {\"active\": {\"elapsed_sec\": 19.341, \"elapsed_ns\": 19341000000.0, \"power_mean\": 2392.082312186547, \"energy_millijoules\": 46265.264, \"energy_joules\": 46.265264, \"coremark_score\": 31041.440323, \"coremarks_per_mhz\": 10.65251898524365, \"ulpmark_cm_score\": 12.968692883715091}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2943000\": {\"active\": {\"elapsed_sec\": 19.147, \"elapsed_ns\": 19147000000.0, \"power_mean\": 2468.121794537003, \"energy_millijoules\": 47257.128, \"energy_joules\": 47.257127999999994, \"coremark_score\": 31356.153645, \"coremarks_per_mhz\": 10.654486457696228, \"ulpmark_cm_score\": 12.696497341099528}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"2970000\": {\"active\": {\"elapsed_sec\": 18.945, \"elapsed_ns\": 18945000000.0, \"power_mean\": 2504.5911322248617, \"energy_millijoules\": 47449.479, \"energy_joules\": 47.449479, \"coremark_score\": 31690.69878, \"coremarks_per_mhz\": 10.670268949494949, \"ulpmark_cm_score\": 12.645028199361262}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"3015000\": {\"active\": {\"elapsed_sec\": 18.671, \"elapsed_ns\": 18671000000.0, \"power_mean\": 2655.612179315516, \"energy_millijoules\": 49582.935, \"energy_joules\": 49.582935, \"coremark_score\": 32154.340836, \"coremarks_per_mhz\": 10.664789663681592, \"ulpmark_cm_score\": 12.10093755038906}, \"idle\": {\"elapsed_sec\": 5.008, \"elapsed_ns\": 5008000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}, \"3105000\": {\"active\": {\"elapsed_sec\": 18.143, \"elapsed_ns\": 18143000000.0, \"power_mean\": 3027.664884528468, \"energy_millijoules\": 54930.924, \"energy_joules\": 54.930924, \"coremark_score\": 33092.493519, \"coremarks_per_mhz\": 10.657807896618358, \"ulpmark_cm_score\": 10.922809163013532}, \"idle\": {\"elapsed_sec\": 5.009, \"elapsed_ns\": 5009000000.0, \"power_mean\": 0.0, \"energy_millijoules\": 0.0, \"energy_joules\": 0.0}}}}}, \"meta\": {\"cpu_count\": 8}}"
  },
  {
    "path": "results/zumapro/main/run.log",
    "content": "\n\n\n\n  __                _                     _     \n / _|_ __ ___  __ _| |__   ___ _ __   ___| |__  \n| |_| '__/ _ \\/ _` | '_ \\ / _ \\ '_ \\ / __| '_ \\ \n|  _| | |  __/ (_| | |_) |  __/ | | | (__| | | |\n|_| |_|  \\___|\\__, |_.__/ \\___|_| |_|\\___|_| |_|\n                 |_|                            \n\n           CPU benchmark • by kdrag0n\n\n------------------------------------------------\n\nFrequency domains: cpu1 cpu4 cpu7 \nOffline CPUs: cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 \n\n===== CPU 1 =====\nFrequencies: 820 955 1098 1197 1328 1425 1548 1696 1849 1950\n\n 820:  3836     4.7 C/MHz     56 mW    8.8 J   68.0 I/mJ   156.4 s\n 955:  4475     4.7 C/MHz     66 mW    8.9 J   67.6 I/mJ   134.1 s\n1098:  5135     4.7 C/MHz     77 mW    8.9 J   67.1 I/mJ   116.9 s\n1197:  5608     4.7 C/MHz     83 mW    8.9 J   67.3 I/mJ   107.0 s\n1328:  6230     4.7 C/MHz     96 mW    9.3 J   64.6 I/mJ    96.3 s\n1425:  6682     4.7 C/MHz    107 mW    9.6 J   62.4 I/mJ    89.8 s\n1548:  7255     4.7 C/MHz    122 mW   10.1 J   59.4 I/mJ    82.7 s\n1696:  7942     4.7 C/MHz    141 mW   10.6 J   56.4 I/mJ    75.6 s\n1849:  8690     4.7 C/MHz    176 mW   12.1 J   49.5 I/mJ    69.1 s\n1950:  9138     4.7 C/MHz    204 mW   13.4 J   44.7 I/mJ    65.7 s\n\n\n===== CPU 4 =====\nFrequencies: 357 578 648 787 910 1065 1221 1328 1418 1549 1795 1945 2130 2245 2367 2450 2600\n\n 357:  3163     8.9 C/MHz     35 mW    6.6 J   90.3 I/mJ   189.7 s\n 578:  5131     8.9 C/MHz     56 mW    6.6 J   90.9 I/mJ   116.9 s\n 648:  5748     8.9 C/MHz     64 mW    6.6 J   90.5 I/mJ   104.4 s\n 787:  6980     8.9 C/MHz     78 mW    6.7 J   89.6 I/mJ    86.0 s\n 910:  8066     8.9 C/MHz     93 mW    6.9 J   87.1 I/mJ    74.4 s\n1065:  9456     8.9 C/MHz    114 mW    7.2 J   83.2 I/mJ    63.5 s\n1221: 10835     8.9 C/MHz    141 mW    7.8 J   77.1 I/mJ    55.4 s\n1328: 11788     8.9 C/MHz    161 mW    8.2 J   73.3 I/mJ    50.9 s\n1418: 12589     8.9 C/MHz    176 mW    8.4 J   71.4 I/mJ    47.7 s\n1549: 13747     8.9 C/MHz    206 mW    9.0 J   66.9 I/mJ    43.7 s\n1795: 15935     8.9 C/MHz    452 mW   17.0 J   35.2 I/mJ    37.7 s\n1945: 17259     8.9 C/MHz    377 mW   13.1 J   45.7 I/mJ    34.8 s\n2130: 18910     8.9 C/MHz    470 mW   14.9 J   40.3 I/mJ    31.7 s\n2245: 19940     8.9 C/MHz    534 mW   16.1 J   37.3 I/mJ    30.1 s\n2367: 21050     8.9 C/MHz    620 mW   17.7 J   33.9 I/mJ    28.5 s\n2450: 21755     8.9 C/MHz    684 mW   18.9 J   31.8 I/mJ    27.6 s\n2600: 23094     8.9 C/MHz    862 mW   22.4 J   26.8 I/mJ    26.0 s\n\n\n===== CPU 7 =====\nFrequencies: 700 1164 1396 1557 1745 1885 1999 2147 2294 2363 2499 2687 2802 2914 2943 2970 3015 3105\n\n 700:  7477     10.7 C/MHz    159 mW   12.7 J   47.1 I/mJ    80.3 s\n1164: 12404     10.7 C/MHz    285 mW   13.8 J   43.6 I/mJ    48.4 s\n1396: 14884     10.7 C/MHz    382 mW   15.4 J   39.0 I/mJ    40.3 s\n1557: 16613     10.7 C/MHz    468 mW   16.9 J   35.5 I/mJ    36.1 s\n1745: 18621     10.7 C/MHz    576 mW   18.6 J   32.3 I/mJ    32.2 s\n1885: 20088     10.7 C/MHz    673 mW   20.1 J   29.8 I/mJ    29.9 s\n1999: 21263     10.6 C/MHz    753 mW   21.3 J   28.2 I/mJ    28.2 s\n2147: 22889     10.7 C/MHz    889 mW   23.3 J   25.7 I/mJ    26.2 s\n2294: 24452     10.7 C/MHz   1053 mW   25.8 J   23.2 I/mJ    24.5 s\n2363: 25169     10.7 C/MHz   1151 mW   27.4 J   21.9 I/mJ    23.8 s\n2499: 26642     10.7 C/MHz   1371 mW   30.9 J   19.4 I/mJ    22.5 s\n2687: 28659     10.7 C/MHz   1722 mW   36.1 J   16.6 I/mJ    20.9 s\n2802: 29861     10.7 C/MHz   1993 mW   40.1 J   15.0 I/mJ    20.1 s\n2914: 31041     10.7 C/MHz   2392 mW   46.3 J   13.0 I/mJ    19.3 s\n2943: 31356     10.7 C/MHz   2468 mW   47.3 J   12.7 I/mJ    19.1 s\n2970: 31691     10.7 C/MHz   2505 mW   47.4 J   12.6 I/mJ    18.9 s\n3015: 32154     10.7 C/MHz   2656 mW   49.6 J   12.1 I/mJ    18.7 s\n3105: 33092     10.7 C/MHz   3028 mW   54.9 J   10.9 I/mJ    18.1 s\n\n\nBenchmark finished!\n"
  },
  {
    "path": "results/zumapro/main/uptime.txt",
    "content": " 04:42:08 up 49 min,  load average: 1.78, 1.77, 1.76\n"
  },
  {
    "path": "results/zumapro/main/versions.txt",
    "content": "Kernel: Linux version 6.1.75-g7910ee17f109 (sultan@sultan-box) (aarch64-linux-gnu-gcc (GCC) 14.1.0, GNU ld (GNU Binutils) 2.42) #1 SMP PREEMPT Fri Sep 13 20:52:06 PDT 2024\nPython: Python 3.8.5\n"
  },
  {
    "path": "test-img.sh",
    "content": "#!/usr/bin/env bash\n\ncd \"$(dirname \"$0\")\"\n\n./pack-img.sh\n\nadb reboot bootloader\nfastboot boot bench.img\n"
  },
  {
    "path": "usb.sh",
    "content": "#!/bin/sh\n\n# DEPENDENCIES: dropbear dhcp\n\n# Mount USB and pty (SSH terminal) pseudo-filesystems\nmount -t configfs configfs /sys/kernel/config\nmkdir /dev/pts\nmount -t devpts devpts /dev/pts\n\n# For SSH shell\nhostname phone\n\n# USB (reference: Halium initrd)\nLOCAL_IP=10.15.19.82\ngadget=/sys/kernel/config/usb_gadget/g1\nstrings=$gadget/strings/0x409\nfunc_config=$gadget/configs/c.1/strings/0x409\nmkdir -p $strings\nmkdir -p $func_config\n# Generic \"Google Android\" (fastboot) VID:PID\necho -n 0x0b05 > $gadget/idVendor\necho -n 0x4daf > $gadget/idProduct\n# Product strings\necho -n \"Linux\" > $strings/manufacturer\necho -n \"Alpine GNU/Linux\" > $strings/product\necho -n \"ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null root@$LOCAL_IP\" > $strings/serialnumber\n# RNDIS\nmkdir $gadget/functions/rndis.usb0\necho -n rndis > $func_config/configuration\nln -s $gadget/functions/rndis.usb0 $gadget/configs/c.1/\necho -n \"$(ls -1 /sys/class/udc | head -1)\" > $gadget/UDC\n\n# Basic network and services\nip link set lo up\nifconfig usb0 $LOCAL_IP netmask 255.255.255.0\ndropbear -RBFE &\n\n# DHCP\nmkdir /tmp/usb\ntouch /tmp/usb/dhcpd4.leases\nINTERFACES=usb0 dhcpd -4 -f -cf /dhcpd.conf -pf /tmp/usb/dhcpd4.pid -lf /tmp/usb/dhcpd4.leases &\necho \"SSH server running at $LOCAL_IP\"\n\nset +v\n"
  }
]